diff --git a/python/datasources/chr.py b/python/datasources/chr.py index ebbd3356ba..86e9b1ed7a 100644 --- a/python/datasources/chr.py +++ b/python/datasources/chr.py @@ -1,5 +1,44 @@ from datasources.data_source import DataSource -from ingestion import gcs_to_bq_util, standardized_columns as std_col +from ingestion import dataset_utils, merge_utils, gcs_to_bq_util, standardized_columns as std_col +from ingestion.constants import COUNTY_LEVEL, CURRENT + +CHR = 'chr' +source_state_fips = 'State FIPS Code' +source_county_fips = '5-digit FIPS Code' +source_time_period = 'Release Year' + +source_cols = [source_time_period, source_state_fips, source_county_fips] + +prev_hosp_per_100k_col = std_col.generate_column_name(std_col.PREVENTABLE_HOSP_PREFIX, std_col.PER_100K_SUFFIX) + +source_race_to_id_map = { + 'raw value': std_col.Race.ALL.value, + '(AIAN)': std_col.Race.AIAN_NH.value, + '(Asian/Pacific Islander)': std_col.Race.API_NH.value, + '(Black)': std_col.Race.BLACK_NH.value, + '(Hispanic)': std_col.Race.HISP.value, + '(White)': std_col.Race.WHITE_NH.value, +} + +melt_map = { + prev_hosp_per_100k_col: { + f'Preventable Hospital Stays {source_race}': het_race_id + for source_race, het_race_id in source_race_to_id_map.items() + }, +} + +source_topic_cols = list(melt_map[prev_hosp_per_100k_col].keys()) +# NOTE: cols for numerator and denominator are all NULL + +source_dtypes = { + **{topic_col: 'float64' for topic_col in source_topic_cols}, + **{col: 'str' for col in source_cols}, +} + + +TIME_MAP = { + CURRENT: [prev_hosp_per_100k_col, std_col.POPULATION_PCT_COL, std_col.POPULATION_COL], +} class CHRData(DataSource): @@ -16,18 +55,44 @@ def upload_to_gcs(self, gcs_bucket, **attrs): def write_to_bq(self, dataset, gcs_bucket, **attrs): demographic = self.get_attr(attrs, "demographic") - geo_level = self.get_attr(attrs, "geographic") if demographic == std_col.RACE_COL: demographic = std_col.RACE_OR_HISPANIC_COL + use_cols = source_cols + source_topic_cols + df = gcs_to_bq_util.load_csv_as_df_from_data_dir( - 'chr', + CHR, "analytic_data2024.csv", + usecols=use_cols, + dtype=source_dtypes, + skiprows=[1], # skip weird sub header row ) - table_name = f"{demographic}_{geo_level}" + # drop national and state-level rows + df = df[~df[source_county_fips].str.endswith('000')] + + df = dataset_utils.melt_to_het_style_df(df, std_col.RACE_CATEGORY_ID_COL, source_cols, melt_map) + + df = df.rename( + columns={ + source_county_fips: std_col.COUNTY_FIPS_COL, + source_state_fips: std_col.STATE_FIPS_COL, + source_time_period: std_col.TIME_PERIOD_COL, + } + ) + + df = merge_utils.merge_state_ids(df) + df = merge_utils.merge_county_names(df) + df = merge_utils.merge_yearly_pop_numbers(df, std_col.RACE_COL, COUNTY_LEVEL) + std_col.add_race_columns_from_category_id(df) + + for table_type in [CURRENT]: + df = df.copy() + table_name = f"{demographic}_{COUNTY_LEVEL}_{table_type}" + time_cols = TIME_MAP[table_type] - print(table_name) - print(df) + df_for_bq, col_types = dataset_utils.generate_time_df_with_cols_and_types( + df, time_cols, table_type, demographic + ) - # gcs_to_bq_util.add_df_to_bq(df_for_bq, dataset, table_name, column_types=col_types) + gcs_to_bq_util.add_df_to_bq(df_for_bq, dataset, table_name, column_types=col_types) diff --git a/python/ingestion/dataset_utils.py b/python/ingestion/dataset_utils.py index 06eecb0861..ce6b4d528c 100644 --- a/python/ingestion/dataset_utils.py +++ b/python/ingestion/dataset_utils.py @@ -577,9 +577,14 @@ def generate_time_df_with_cols_and_types( DataFrame. """ df = df.copy() - mandatory_cols = [std_col.TIME_PERIOD_COL, std_col.STATE_NAME_COL, std_col.STATE_FIPS_COL] + str_cols_to_keep = [std_col.TIME_PERIOD_COL, std_col.STATE_NAME_COL, std_col.STATE_FIPS_COL, dem_col] - all_cols = mandatory_cols + [dem_col] + numerical_cols_to_keep + if std_col.COUNTY_NAME_COL in df.columns: + str_cols_to_keep.append(std_col.COUNTY_NAME_COL) + if std_col.COUNTY_FIPS_COL in df.columns: + str_cols_to_keep.append(std_col.COUNTY_FIPS_COL) + + all_cols = str_cols_to_keep + numerical_cols_to_keep df = df[all_cols] if table_type == CURRENT: diff --git a/python/tests/data/chr/analytic_data2024.csv b/python/tests/data/chr/analytic_data2024.csv deleted file mode 100644 index cbe0c02d2f..0000000000 --- a/python/tests/data/chr/analytic_data2024.csv +++ /dev/null @@ -1,3197 +0,0 @@ -State FIPS Code,County FIPS Code,5-digit FIPS Code,State Abbreviation,Name,Release Year,County Clustered (Yes=1/No=0),Premature Death raw value,Premature Death numerator,Premature Death denominator,Premature Death CI low,Premature Death CI high,Premature Death flag (0 = No Flag/1=Unreliable/2=Suppressed),Premature Death (AIAN),Premature Death CI low (AIAN),Premature Death CI high (AIAN),Premature Death flag (AIAN) (. = No Flag/1=Unreliable/2=Suppressed),Premature Death (Asian/Pacific Islander),Premature Death CI low (Asian/Pacific Islander),Premature Death CI high (Asian/Pacific Islander),Premature Death flag (Asian/Pacific Islander) (. = No Flag/1=Unreliable/2=Suppressed),Premature Death (Black),Premature Death CI low (Black),Premature Death CI high (Black),Premature Death flag (Black) (. = No Flag/1=Unreliable/2=Suppressed),Premature Death (Hispanic),Premature Death CI low (Hispanic),Premature Death CI high (Hispanic),Premature Death flag (Hispanic) (. = No Flag/1=Unreliable/2=Suppressed),Premature Death (White),Premature Death CI low (White),Premature Death CI high (White),Premature Death flag (White) (. = No Flag/1=Unreliable/2=Suppressed),Premature Death (NHOPI),Premature Death CI low (NHOPI),Premature Death CI high (NHOPI),Premature Death flag (NHOPI) (. = No Flag/1=Unreliable/2=Suppressed),Premature Death flag (Two or more races) (. = No Flag/1=Unreliable/2=Suppressed),Poor or Fair Health raw value,Poor or Fair Health numerator,Poor or Fair Health denominator,Poor or Fair Health CI low,Poor or Fair Health CI high,Poor Physical Health Days raw value,Poor Physical Health Days numerator,Poor Physical Health Days denominator,Poor Physical Health Days CI low,Poor Physical Health Days CI high,Poor Mental Health Days raw value,Poor Mental Health Days numerator,Poor Mental Health Days denominator,Poor Mental Health Days CI low,Poor Mental Health Days CI high,Low Birthweight raw value,Low Birthweight numerator,Low Birthweight denominator,Low Birthweight CI low,Low Birthweight CI high,LBW unreliable indicator (Unreliable = Numerator < 20 or relative standard error > 20%),Low Birthweight (AIAN),Low Birthweight CI low (AIAN),Low Birthweight CI high (AIAN),Low Birthweight (Asian/Pacific Islander),Low Birthweight CI low (Asian/Pacific Islander),Low Birthweight CI high (Asian/Pacific Islander),Low Birthweight (Black),Low Birthweight CI low (Black),Low Birthweight CI high (Black),Low Birthweight (Hispanic),Low Birthweight CI low (Hispanic),Low Birthweight CI high (Hispanic),Low Birthweight (White),Low Birthweight CI low (White),Low Birthweight CI high (White),Low Birthweight (NHOPI),Low Birthweight CI low (NHOPI),Low Birthweight CI high (NHOPI),Low Birthweight (Two or more races),Low Birthweight CI low (Two or more races),Low Birthweight CI high (Two or more races),Adult Smoking raw value,Adult Smoking numerator,Adult Smoking denominator,Adult Smoking CI low,Adult Smoking CI high,Adult Obesity raw value,Adult Obesity numerator,Adult Obesity denominator,Adult Obesity CI low,Adult Obesity CI high,Food Environment Index raw value,Food Environment Index numerator,Food Environment Index denominator,Food Environment Index CI low,Food Environment Index CI high,Physical Inactivity raw value,Physical Inactivity numerator,Physical Inactivity denominator,Physical Inactivity CI low,Physical Inactivity CI high,Access to Exercise Opportunities raw value,Access to Exercise Opportunities numerator,Access to Exercise Opportunities denominator,Access to Exercise Opportunities CI low,Access to Exercise Opportunities CI high,Excessive Drinking raw value,Excessive Drinking numerator,Excessive Drinking denominator,Excessive Drinking CI low,Excessive Drinking CI high,Alcohol-Impaired Driving Deaths raw value,Alcohol-Impaired Driving Deaths numerator,Alcohol-Impaired Driving Deaths denominator,Alcohol-Impaired Driving Deaths CI low,Alcohol-Impaired Driving Deaths CI high,Sexually Transmitted Infections raw value,Sexually Transmitted Infections numerator,Sexually Transmitted Infections denominator,Sexually Transmitted Infections CI low,Sexually Transmitted Infections CI high,Teen Births raw value,Teen Births numerator,Teen Births denominator,Teen Births CI low,Teen Births CI high,Teen Births (AIAN),Teen Births CI low (AIAN),Teen Births CI high (AIAN),Teen Births (Asian/Pacific Islander),Teen Births CI low (Asian/Pacific Islander),Teen Births CI high (Asian/Pacific Islander),Teen Births (Black),Teen Births CI low (Black),Teen Births CI high (Black),Teen Births (Hispanic),Teen Births CI low (Hispanic),Teen Births CI high (Hispanic),Teen Births (White),Teen Births CI low (White),Teen Births CI high (White),Teen Births (NHOPI),Teen Births CI low (NHOPI),Teen Births CI high (NHOPI),Teen Births (Two or more races),Teen Births CI low (Two or more races),Teen Births CI high (Two or more races),Uninsured raw value,Uninsured numerator,Uninsured denominator,Uninsured CI low,Uninsured CI high,Primary Care Physicians raw value,Primary Care Physicians numerator,Primary Care Physicians denominator,Primary Care Physicians CI low,Primary Care Physicians CI high,Ratio of population to primary care physicians.,Dentists raw value,Dentists numerator,Dentists denominator,Dentists CI low,Dentists CI high,Ratio of population to dentists.,Mental Health Providers raw value,Mental Health Providers numerator,Mental Health Providers denominator,Mental Health Providers CI low,Mental Health Providers CI high,Ratio of population to mental health providers.,Preventable Hospital Stays raw value,Preventable Hospital Stays numerator,Preventable Hospital Stays denominator,Preventable Hospital Stays CI low,Preventable Hospital Stays CI high,Preventable Hospital Stays (AIAN),Preventable Hospital Stays (Asian/Pacific Islander),Preventable Hospital Stays (Black),Preventable Hospital Stays (Hispanic),Preventable Hospital Stays (White),Mammography Screening raw value,Mammography Screening numerator,Mammography Screening denominator,Mammography Screening CI low,Mammography Screening CI high,Mammography Screening (AIAN),Mammography Screening (Asian/Pacific Islander),Mammography Screening (Black),Mammography Screening (Hispanic),Mammography Screening (White),Flu Vaccinations raw value,Flu Vaccinations numerator,Flu Vaccinations denominator,Flu Vaccinations CI low,Flu Vaccinations CI high,Flu Vaccinations (AIAN),Flu Vaccinations (Asian/Pacific Islander),Flu Vaccinations (Black),Flu Vaccinations (Hispanic),Flu Vaccinations (White),High School Completion raw value,High School Completion numerator,High School Completion denominator,High School Completion CI low,High School Completion CI high,Some College raw value,Some College numerator,Some College denominator,Some College CI low,Some College CI high,Unemployment raw value,Unemployment numerator,Unemployment denominator,Unemployment CI low,Unemployment CI high,Children in Poverty raw value,Children in Poverty numerator,Children in Poverty denominator,Children in Poverty CI low,Children in Poverty CI high,Children in Poverty (AIAN),Children in Poverty CI low (AIAN),Children in Poverty CI high (AIAN),Children in Poverty (Asian/Pacific Islander),Children in Poverty CI low (Asian/Pacific Islander),Children in Poverty CI high (Asian/Pacific Islander),Children in Poverty (Black),Children in Poverty CI low (Black),Children in Poverty CI high (Black),Children in Poverty (Hispanic),Children in Poverty CI low (Hispanic),Children in Poverty CI high (Hispanic),Children in Poverty (White),Children in Poverty CI low (White),Children in Poverty CI high (White),Income Inequality raw value,Income Inequality numerator,Income Inequality denominator,Income Inequality CI low,Income Inequality CI high,Children in Single-Parent Households raw value,Children in Single-Parent Households numerator,Children in Single-Parent Households denominator,Children in Single-Parent Households CI low,Children in Single-Parent Households CI high,Social Associations raw value,Social Associations numerator,Social Associations denominator,Social Associations CI low,Social Associations CI high,Injury Deaths raw value,Injury Deaths numerator,Injury Deaths denominator,Injury Deaths CI low,Injury Deaths CI high,Injury Deaths (AIAN),Injury Deaths CI low (AIAN),Injury Deaths CI high (AIAN),Injury Deaths (Asian/Pacific Islander),Injury Deaths CI low (Asian/Pacific Islander),Injury Deaths CI high (Asian/Pacific Islander),Injury Deaths (Black),Injury Deaths CI low (Black),Injury Deaths CI high (Black),Injury Deaths (Hispanic),Injury Deaths CI low (Hispanic),Injury Deaths CI high (Hispanic),Injury Deaths (White),Injury Deaths CI low (White),Injury Deaths CI high (White),Injury Deaths (NHOPI),Injury Deaths CI low (NHOPI),Injury Deaths CI high (NHOPI),Air Pollution - Particulate Matter raw value,Air Pollution - Particulate Matter numerator,Air Pollution - Particulate Matter denominator,Air Pollution - Particulate Matter CI low,Air Pollution - Particulate Matter CI high,Drinking Water Violations raw value,Drinking Water Violations numerator,Drinking Water Violations denominator,Drinking Water Violations CI low,Drinking Water Violations CI high,Severe Housing Problems raw value,Severe Housing Problems numerator,Severe Housing Problems denominator,Severe Housing Problems CI low,Severe Housing Problems CI high,Percentage of households with high housing costs,Percentage of households with high housing costs CI low,Percentage of households with high housing costs CI high,Percentage of households with overcrowding,Percentage of households with overcrowding CI low,Percentage of households with overcrowding CI high,Percentage of households with lack of kitchen or plumbing facilities,Percentage of households with lack of kitchen or plumbing facilities CI low,Percentage of households with lack of kitchen or plumbing facilities CI high,Driving Alone to Work raw value,Driving Alone to Work numerator,Driving Alone to Work denominator,Driving Alone to Work CI low,Driving Alone to Work CI high,Driving Alone to Work (AIAN),Driving Alone to Work CI low (AIAN),Driving Alone to Work CI high (AIAN),Driving Alone to Work (Asian/Pacific Islander),Driving Alone to Work CI low (Asian/Pacific Islander),Driving Alone to Work CI high (Asian/Pacific Islander),Driving Alone to Work (Black),Driving Alone to Work CI low (Black),Driving Alone to Work CI high (Black),Driving Alone to Work (Hispanic),Driving Alone to Work CI low (Hispanic),Driving Alone to Work CI high (Hispanic),Driving Alone to Work (White),Driving Alone to Work CI low (White),Driving Alone to Work CI high (White),Long Commute - Driving Alone raw value,Long Commute - Driving Alone numerator,Long Commute - Driving Alone denominator,Long Commute - Driving Alone CI low,Long Commute - Driving Alone CI high,Life Expectancy raw value,Life Expectancy numerator,Life Expectancy denominator,Life Expectancy CI low,Life Expectancy CI high,Life Expectancy (AIAN),Life Expectancy CI low (AIAN),Life Expectancy CI high (AIAN),Life Expectancy (Asian/Pacific Islander),Life Expectancy CI low (Asian/Pacific Islander),Life Expectancy CI high (Asian/Pacific Islander),Life Expectancy (Black),Life Expectancy CI low (Black),Life Expectancy CI high (Black),Life Expectancy (Hispanic),Life Expectancy CI low (Hispanic),Life Expectancy CI high (Hispanic),Life Expectancy (White),Life Expectancy CI low (White),Life Expectancy CI high (White),Life Expectancy (NHOPI),Life Expectancy CI low (NHOPI),Life Expectancy CI high (NHOPI),Premature Age-Adjusted Mortality raw value,Premature Age-Adjusted Mortality numerator,Premature Age-Adjusted Mortality denominator,Premature Age-Adjusted Mortality CI low,Premature Age-Adjusted Mortality CI high,Premature Age-Adjusted Mortality (AIAN),Premature Age-Adjusted Mortality CI low (AIAN),Premature Age-Adjusted Mortality CI high (AIAN),Premature Age-Adjusted Mortality (Asian/Pacific Islander),Premature Age-Adjusted Mortality CI low (Asian/Pacific Islander),Premature Age-Adjusted Mortality CI high (Asian/Pacific Islander),Premature Age-Adjusted Mortality (Black),Premature Age-Adjusted Mortality CI low (Black),Premature Age-Adjusted Mortality CI high (Black),Premature Age-Adjusted Mortality (Hispanic),Premature Age-Adjusted Mortality CI low (Hispanic),Premature Age-Adjusted Mortality CI high (Hispanic),Premature Age-Adjusted Mortality (White),Premature Age-Adjusted Mortality CI low (White),Premature Age-Adjusted Mortality CI high (White),Premature Age-Adjusted Mortality (NHOPI),Premature Age-Adjusted Mortality CI low (NHOPI),Premature Age-Adjusted Mortality CI high (NHOPI),Child Mortality raw value,Child Mortality numerator,Child Mortality denominator,Child Mortality CI low,Child Mortality CI high,Child Mortality (AIAN),Child Mortality CI low (AIAN),Child Mortality CI high (AIAN),Child Mortality (Asian/Pacific Islander),Child Mortality CI low (Asian/Pacific Islander),Child Mortality CI high (Asian/Pacific Islander),Child Mortality (Black),Child Mortality CI low (Black),Child Mortality CI high (Black),Child Mortality (Hispanic),Child Mortality CI low (Hispanic),Child Mortality CI high (Hispanic),Child Mortality (White),Child Mortality CI low (White),Child Mortality CI high (White),Child Mortality (NHOPI),Child Mortality CI low (NHOPI),Child Mortality CI high (NHOPI),Infant Mortality raw value,Infant Mortality numerator,Infant Mortality denominator,Infant Mortality CI low,Infant Mortality CI high,Infant Mortality (AIAN),Infant Mortality CI low (AIAN),Infant Mortality CI high (AIAN),Infant Mortality (Asian/Pacific Islander),Infant Mortality CI low (Asian/Pacific Islander),Infant Mortality CI high (Asian/Pacific Islander),Infant Mortality (Black),Infant Mortality CI low (Black),Infant Mortality CI high (Black),Infant Mortality (Hispanic),Infant Mortality CI low (Hispanic),Infant Mortality CI high (Hispanic),Infant Mortality (White),Infant Mortality CI low (White),Infant Mortality CI high (White),Infant Mortality (NHOPI),Infant Mortality CI low (NHOPI),Infant Mortality CI high (NHOPI),Infant Mortality (Two or more races),Infant Mortality CI low (Two or more races),Infant Mortality CI high (Two or more races),Frequent Physical Distress raw value,Frequent Physical Distress numerator,Frequent Physical Distress denominator,Frequent Physical Distress CI low,Frequent Physical Distress CI high,Frequent Mental Distress raw value,Frequent Mental Distress numerator,Frequent Mental Distress denominator,Frequent Mental Distress CI low,Frequent Mental Distress CI high,Diabetes Prevalence raw value,Diabetes Prevalence numerator,Diabetes Prevalence denominator,Diabetes Prevalence CI low,Diabetes Prevalence CI high,HIV Prevalence raw value,HIV Prevalence numerator,HIV Prevalence denominator,HIV Prevalence CI low,HIV Prevalence CI high,Food Insecurity raw value,Food Insecurity numerator,Food Insecurity denominator,Food Insecurity CI low,Food Insecurity CI high,Limited Access to Healthy Foods raw value,Limited Access to Healthy Foods numerator,Limited Access to Healthy Foods denominator,Limited Access to Healthy Foods CI low,Limited Access to Healthy Foods CI high,Drug Overdose Deaths raw value,Drug Overdose Deaths numerator,Drug Overdose Deaths denominator,Drug Overdose Deaths CI low,Drug Overdose Deaths CI high,Drug Overdose Deaths (AIAN),Drug Overdose Deaths CI low (AIAN),Drug Overdose Deaths CI high (AIAN),Drug Overdose Deaths (Asian/Pacific Islander),Drug Overdose Deaths CI low (Asian/Pacific Islander),Drug Overdose Deaths CI high (Asian/Pacific Islander),Drug Overdose Deaths (Black),Drug Overdose Deaths CI low (Black),Drug Overdose Deaths CI high (Black),Drug Overdose Deaths (Hispanic),Drug Overdose Deaths CI low (Hispanic),Drug Overdose Deaths CI high (Hispanic),Drug Overdose Deaths (White),Drug Overdose Deaths CI low (White),Drug Overdose Deaths CI high (White),Drug Overdose Deaths (NHOPI),Drug Overdose Deaths CI low (NHOPI),Drug Overdose Deaths CI high (NHOPI),Insufficient Sleep raw value,Insufficient Sleep numerator,Insufficient Sleep denominator,Insufficient Sleep CI low,Insufficient Sleep CI high,Uninsured Adults raw value,Uninsured Adults numerator,Uninsured Adults denominator,Uninsured Adults CI low,Uninsured Adults CI high,Uninsured Children raw value,Uninsured Children numerator,Uninsured Children denominator,Uninsured Children CI low,Uninsured Children CI high,Other Primary Care Providers raw value,Other Primary Care Providers numerator,Other Primary Care Providers denominator,Other Primary Care Providers CI low,Other Primary Care Providers CI high,Ratio of population to primary care providers other than physicians.,High School Graduation raw value,High School Graduation numerator,High School Graduation denominator,High School Graduation CI low,High School Graduation CI high,Disconnected Youth raw value,Disconnected Youth numerator,Disconnected Youth denominator,Disconnected Youth CI low,Disconnected Youth CI high,Reading Scores raw value,Reading Scores numerator,Reading Scores denominator,Reading Scores CI low,Reading Scores CI high,Reading Scores (AIAN),Reading Scores (Asian/Pacific Islander),Reading Scores (Black),Reading Scores (Hispanic),Reading Scores (White),Math Scores raw value,Math Scores numerator,Math Scores denominator,Math Scores CI low,Math Scores CI high,Math Scores (AIAN),Math Scores (Asian/Pacific Islander),Math Scores (Black),Math Scores (Hispanic),Math Scores (White),School Segregation raw value,School Segregation numerator,School Segregation denominator,School Segregation CI low,School Segregation CI high,School Funding Adequacy raw value,School Funding Adequacy numerator,School Funding Adequacy denominator,School Funding Adequacy CI low,School Funding Adequacy CI high,Gender Pay Gap raw value,Gender Pay Gap numerator,Gender Pay Gap denominator,Gender Pay Gap CI low,Gender Pay Gap CI high,Median Household Income raw value,Median Household Income numerator,Median Household Income denominator,Median Household Income CI low,Median Household Income CI high,Median Household Income (AIAN),Median Household Income CI low (AIAN),Median Household Income CI high (AIAN),Median household income (Asian),Median household income CI low (Asian),Median household income CI high (Asian),Median Household Income (Black),Median Household Income CI low (Black),Median Household Income CI high (Black),Median Household Income (Hispanic),Median Household Income CI low (Hispanic),Median Household Income CI high (Hispanic),Median Household Income (White),Median Household Income CI low (White),Median Household Income CI high (White),Living Wage raw value,Living Wage numerator,Living Wage denominator,Living Wage CI low,Living Wage CI high,Children Eligible for Free or Reduced Price Lunch raw value,Children Eligible for Free or Reduced Price Lunch numerator,Children Eligible for Free or Reduced Price Lunch denominator,Children Eligible for Free or Reduced Price Lunch CI low,Children Eligible for Free or Reduced Price Lunch CI high,Residential Segregation - Black/White raw value,Residential Segregation - Black/White numerator,Residential Segregation - Black/White denominator,Residential Segregation - Black/White CI low,Residential Segregation - Black/White CI high,Child Care Cost Burden raw value,Child Care Cost Burden numerator,Child Care Cost Burden denominator,Child Care Cost Burden CI low,Child Care Cost Burden CI high,Child Care Centers raw value,Child Care Centers numerator,Child Care Centers denominator,Child Care Centers CI low,Child Care Centers CI high,Homicides raw value,Homicides numerator,Homicides denominator,Homicides CI low,Homicides CI high,Homicides (AIAN),Homicides CI low (AIAN),Homicides CI high (AIAN),Homicides (Asian/Pacific Islander),Homicides CI low (Asian/Pacific Islander),Homicides CI high (Asian/Pacific Islander),Homicides (Black),Homicides CI low (Black),Homicides CI high (Black),Homicides (Hispanic),Homicides CI low (Hispanic),Homicides CI high (Hispanic),Homicides (White),Homicides CI low (White),Homicides CI high (White),Homicides (NHOPI),Homicides CI low (NHOPI),Homicides CI high (NHOPI),Suicides raw value,Suicides numerator,Suicides denominator,Suicides CI low,Suicides CI high,Crude suicide rate,Suicides (AIAN),Suicides CI low (AIAN),Suicides CI high (AIAN),Suicides (Asian/Pacific Islander),Suicides CI low (Asian/Pacific Islander),Suicides CI high (Asian/Pacific Islander),Suicides (Black),Suicides CI low (Black),Suicides CI high (Black),Suicides (Hispanic),Suicides CI low (Hispanic),Suicides CI high (Hispanic),Suicides (White),Suicides CI low (White),Suicides CI high (White),Suicides (NHOPI),Suicides CI low (NHOPI),Suicides CI high (NHOPI),Firearm Fatalities raw value,Firearm Fatalities numerator,Firearm Fatalities denominator,Firearm Fatalities CI low,Firearm Fatalities CI high,Firearm Fatalities (AIAN),Firearm Fatalities CI low (AIAN),Firearm Fatalities CI high (AIAN),Firearm Fatalities (Asian/Pacific Islander),Firearm Fatalities CI low (Asian/Pacific Islander),Firearm Fatalities CI high (Asian/Pacific Islander),Firearm Fatalities (Black),Firearm Fatalities CI low (Black),Firearm Fatalities CI high (Black),Firearm Fatalities (Hispanic),Firearm Fatalities CI low (Hispanic),Firearm Fatalities CI high (Hispanic),Firearm Fatalities (White),Firearm Fatalities CI low (White),Firearm Fatalities CI high (White),Firearm Fatalities (NHOPI),Firearm Fatalities CI low (NHOPI),Firearm Fatalities CI high (NHOPI),Motor Vehicle Crash Deaths raw value,Motor Vehicle Crash Deaths numerator,Motor Vehicle Crash Deaths denominator,Motor Vehicle Crash Deaths CI low,Motor Vehicle Crash Deaths CI high,Motor Vehicle Crash Deaths (AIAN),Motor Vehicle Crash Deaths CI low (AIAN),Motor Vehicle Crash Deaths CI high (AIAN),Motor Vehicle Crash Deaths (Asian/Pacific Islander),Motor Vehicle Crash Deaths CI low (Asian/Pacific Islander),Motor Vehicle Crash Deaths CI high (Asian/Pacific Islander),Motor Vehicle Crash Deaths (Black),Motor Vehicle Crash Deaths CI low (Black),Motor Vehicle Crash Deaths CI high (Black),Motor Vehicle Crash Deaths (Hispanic),Motor Vehicle Crash Deaths CI low (Hispanic),Motor Vehicle Crash Deaths CI high (Hispanic),Motor Vehicle Crash Deaths (White),Motor Vehicle Crash Deaths CI low (White),Motor Vehicle Crash Deaths CI high (White),Motor Vehicle Crash Deaths (NHOPI),Motor Vehicle Crash Deaths CI low (NHOPI),Motor Vehicle Crash Deaths CI high (NHOPI),Juvenile Arrests raw value,Juvenile Arrests numerator,Juvenile Arrests denominator,Juvenile Arrests CI low,Juvenile Arrests CI high,Number of juvenile delinquency cases formally processed by a juvenile court,Number of informally handled juvenile delinquency cases,Voter Turnout raw value,Voter Turnout numerator,Voter Turnout denominator,Voter Turnout CI low,Voter Turnout CI high,Census Participation raw value,Census Participation numerator,Census Participation denominator,Census Participation CI low,Census Participation CI high,Traffic Volume raw value,Traffic Volume numerator,Traffic Volume denominator,Traffic Volume CI low,Traffic Volume CI high,Homeownership raw value,Homeownership numerator,Homeownership denominator,Homeownership CI low,Homeownership CI high,Severe Housing Cost Burden raw value,Severe Housing Cost Burden numerator,Severe Housing Cost Burden denominator,Severe Housing Cost Burden CI low,Severe Housing Cost Burden CI high,Broadband Access raw value,Broadband Access numerator,Broadband Access denominator,Broadband Access CI low,Broadband Access CI high,Population raw value,Population numerator,Population denominator,Population CI low,Population CI high,% Below 18 Years of Age raw value,% Below 18 Years of Age numerator,% Below 18 Years of Age denominator,% Below 18 Years of Age CI low,% Below 18 Years of Age CI high,% 65 and Older raw value,% 65 and Older numerator,% 65 and Older denominator,% 65 and Older CI low,% 65 and Older CI high,% Non-Hispanic Black raw value,% Non-Hispanic Black numerator,% Non-Hispanic Black denominator,% Non-Hispanic Black CI low,% Non-Hispanic Black CI high,% American Indian or Alaska Native raw value,% American Indian or Alaska Native numerator,% American Indian or Alaska Native denominator,% American Indian or Alaska Native CI low,% American Indian or Alaska Native CI high,% Asian raw value,% Asian numerator,% Asian denominator,% Asian CI low,% Asian CI high,% Native Hawaiian or Other Pacific Islander raw value,% Native Hawaiian or Other Pacific Islander numerator,% Native Hawaiian or Other Pacific Islander denominator,% Native Hawaiian or Other Pacific Islander CI low,% Native Hawaiian or Other Pacific Islander CI high,% Hispanic raw value,% Hispanic numerator,% Hispanic denominator,% Hispanic CI low,% Hispanic CI high,% Non-Hispanic White raw value,% Non-Hispanic White numerator,% Non-Hispanic White denominator,% Non-Hispanic White CI low,% Non-Hispanic White CI high,% Not Proficient in English raw value,% Not Proficient in English numerator,% Not Proficient in English denominator,% Not Proficient in English CI low,% Not Proficient in English CI high,% Female raw value,% Female numerator,% Female denominator,% Female CI low,% Female CI high,% Rural raw value,% Rural numerator,% Rural denominator,% Rural CI low,% Rural CI high -statecode,countycode,fipscode,state,county,year,county_clustered,v001_rawvalue,v001_numerator,v001_denominator,v001_cilow,v001_cihigh,v001_flag,v001_race_aian,v001_race_aian_cilow,v001_race_aian_cihigh,v001_race_aian_flag,v001_race_asian,v001_race_asian_cilow,v001_race_asian_cihigh,v001_race_asian_flag,v001_race_black,v001_race_black_cilow,v001_race_black_cihigh,v001_race_black_flag,v001_race_hispanic,v001_race_hispanic_cilow,v001_race_hispanic_cihigh,v001_race_hispanic_flag,v001_race_white,v001_race_white_cilow,v001_race_white_cihigh,v001_race_white_flag,v001_race_nhopi,v001_race_nhopi_cilow,v001_race_nhopi_cihigh,v001_race_nhopi_flag,v001_race_tom_flag,v002_rawvalue,v002_numerator,v002_denominator,v002_cilow,v002_cihigh,v036_rawvalue,v036_numerator,v036_denominator,v036_cilow,v036_cihigh,v042_rawvalue,v042_numerator,v042_denominator,v042_cilow,v042_cihigh,v037_rawvalue,v037_numerator,v037_denominator,v037_cilow,v037_cihigh,v037_flag,v037_race_aian,v037_race_aian_cilow,v037_race_aian_cihigh,v037_race_asian,v037_race_asian_cilow,v037_race_asian_cihigh,v037_race_black,v037_race_black_cilow,v037_race_black_cihigh,v037_race_hispanic,v037_race_hispanic_cilow,v037_race_hispanic_cihigh,v037_race_white,v037_race_white_cilow,v037_race_white_cihigh,v037_race_nhopi,v037_race_nhopi_cilow,v037_race_nhopi_cihigh,v037_race_tom,v037_race_tom_cilow,v037_race_tom_cihigh,v009_rawvalue,v009_numerator,v009_denominator,v009_cilow,v009_cihigh,v011_rawvalue,v011_numerator,v011_denominator,v011_cilow,v011_cihigh,v133_rawvalue,v133_numerator,v133_denominator,v133_cilow,v133_cihigh,v070_rawvalue,v070_numerator,v070_denominator,v070_cilow,v070_cihigh,v132_rawvalue,v132_numerator,v132_denominator,v132_cilow,v132_cihigh,v049_rawvalue,v049_numerator,v049_denominator,v049_cilow,v049_cihigh,v134_rawvalue,v134_numerator,v134_denominator,v134_cilow,v134_cihigh,v045_rawvalue,v045_numerator,v045_denominator,v045_cilow,v045_cihigh,v014_rawvalue,v014_numerator,v014_denominator,v014_cilow,v014_cihigh,v014_race_aian,v014_race_aian_cilow,v014_race_aian_cihigh,v014_race_asian,v014_race_asian_cilow,v014_race_asian_cihigh,v014_race_black,v014_race_black_cilow,v014_race_black_cihigh,v014_race_hispanic,v014_race_hispanic_cilow,v014_race_hispanic_cihigh,v014_race_white,v014_race_white_cilow,v014_race_white_cihigh,v014_race_nhopi,v014_race_nhopi_cilow,v014_race_nhopi_cihigh,v014_race_tom,v014_race_tom_cilow,v014_race_tom_cihigh,v085_rawvalue,v085_numerator,v085_denominator,v085_cilow,v085_cihigh,v004_rawvalue,v004_numerator,v004_denominator,v004_cilow,v004_cihigh,v004_other_data_1,v088_rawvalue,v088_numerator,v088_denominator,v088_cilow,v088_cihigh,v088_other_data_1,v062_rawvalue,v062_numerator,v062_denominator,v062_cilow,v062_cihigh,v062_other_data_1,v005_rawvalue,v005_numerator,v005_denominator,v005_cilow,v005_cihigh,v005_race_aian,v005_race_asian,v005_race_black,v005_race_hispanic,v005_race_white,v050_rawvalue,v050_numerator,v050_denominator,v050_cilow,v050_cihigh,v050_race_aian,v050_race_asian,v050_race_black,v050_race_hispanic,v050_race_white,v155_rawvalue,v155_numerator,v155_denominator,v155_cilow,v155_cihigh,v155_race_aian,v155_race_asian,v155_race_black,v155_race_hispanic,v155_race_white,v168_rawvalue,v168_numerator,v168_denominator,v168_cilow,v168_cihigh,v069_rawvalue,v069_numerator,v069_denominator,v069_cilow,v069_cihigh,v023_rawvalue,v023_numerator,v023_denominator,v023_cilow,v023_cihigh,v024_rawvalue,v024_numerator,v024_denominator,v024_cilow,v024_cihigh,v024_race_aian,v024_race_aian_cilow,v024_race_aian_cihigh,v024_race_asian,v024_race_asian_cilow,v024_race_asian_cihigh,v024_race_black,v024_race_black_cilow,v024_race_black_cihigh,v024_race_hispanic,v024_race_hispanic_cilow,v024_race_hispanic_cihigh,v024_race_white,v024_race_white_cilow,v024_race_white_cihigh,v044_rawvalue,v044_numerator,v044_denominator,v044_cilow,v044_cihigh,v082_rawvalue,v082_numerator,v082_denominator,v082_cilow,v082_cihigh,v140_rawvalue,v140_numerator,v140_denominator,v140_cilow,v140_cihigh,v135_rawvalue,v135_numerator,v135_denominator,v135_cilow,v135_cihigh,v135_race_aian,v135_race_aian_cilow,v135_race_aian_cihigh,v135_race_asian,v135_race_asian_cilow,v135_race_asian_cihigh,v135_race_black,v135_race_black_cilow,v135_race_black_cihigh,v135_race_hispanic,v135_race_hispanic_cilow,v135_race_hispanic_cihigh,v135_race_white,v135_race_white_cilow,v135_race_white_cihigh,v135_race_nhopi,v135_race_nhopi_cilow,v135_race_nhopi_cihigh,v125_rawvalue,v125_numerator,v125_denominator,v125_cilow,v125_cihigh,v124_rawvalue,v124_numerator,v124_denominator,v124_cilow,v124_cihigh,v136_rawvalue,v136_numerator,v136_denominator,v136_cilow,v136_cihigh,v136_other_data_1,v136_other_data_1_cilow,v136_other_data_1_cihigh,v136_other_data_2,v136_other_data_2_cilow,v136_other_data_2_cihigh,v136_other_data_3,v136_other_data_3_cilow,v136_other_data_3_cihigh,v067_rawvalue,v067_numerator,v067_denominator,v067_cilow,v067_cihigh,v067_race_aian,v067_race_aian_cilow,v067_race_aian_cihigh,v067_race_asian,v067_race_asian_cilow,v067_race_asian_cihigh,v067_race_black,v067_race_black_cilow,v067_race_black_cihigh,v067_race_hispanic,v067_race_hispanic_cilow,v067_race_hispanic_cihigh,v067_race_white,v067_race_white_cilow,v067_race_white_cihigh,v137_rawvalue,v137_numerator,v137_denominator,v137_cilow,v137_cihigh,v147_rawvalue,v147_numerator,v147_denominator,v147_cilow,v147_cihigh,v147_race_aian,v147_race_aian_cilow,v147_race_aian_cihigh,v147_race_asian,v147_race_asian_cilow,v147_race_asian_cihigh,v147_race_black,v147_race_black_cilow,v147_race_black_cihigh,v147_race_hispanic,v147_race_hispanic_cilow,v147_race_hispanic_cihigh,v147_race_white,v147_race_white_cilow,v147_race_white_cihigh,v147_race_nhopi,v147_race_nhopi_cilow,v147_race_nhopi_cihigh,v127_rawvalue,v127_numerator,v127_denominator,v127_cilow,v127_cihigh,v127_race_aian,v127_race_aian_cilow,v127_race_aian_cihigh,v127_race_asian,v127_race_asian_cilow,v127_race_asian_cihigh,v127_race_black,v127_race_black_cilow,v127_race_black_cihigh,v127_race_hispanic,v127_race_hispanic_cilow,v127_race_hispanic_cihigh,v127_race_white,v127_race_white_cilow,v127_race_white_cihigh,v127_race_nhopi,v127_race_nhopi_cilow,v127_race_nhopi_cihigh,v128_rawvalue,v128_numerator,v128_denominator,v128_cilow,v128_cihigh,v128_race_aian,v128_race_aian_cilow,v128_race_aian_cihigh,v128_race_asian,v128_race_asian_cilow,v128_race_asian_cihigh,v128_race_black,v128_race_black_cilow,v128_race_black_cihigh,v128_race_hispanic,v128_race_hispanic_cilow,v128_race_hispanic_cihigh,v128_race_white,v128_race_white_cilow,v128_race_white_cihigh,v128_race_nhopi,v128_race_nhopi_cilow,v128_race_nhopi_cihigh,v129_rawvalue,v129_numerator,v129_denominator,v129_cilow,v129_cihigh,v129_race_aian,v129_race_aian_cilow,v129_race_aian_cihigh,v129_race_asian,v129_race_asian_cilow,v129_race_asian_cihigh,v129_race_black,v129_race_black_cilow,v129_race_black_cihigh,v129_race_hispanic,v129_race_hispanic_cilow,v129_race_hispanic_cihigh,v129_race_white,v129_race_white_cilow,v129_race_white_cihigh,v129_race_nhopi,v129_race_nhopi_cilow,v129_race_nhopi_cihigh,v129_race_tom,v129_race_tom_cilow,v129_race_tom_cihigh,v144_rawvalue,v144_numerator,v144_denominator,v144_cilow,v144_cihigh,v145_rawvalue,v145_numerator,v145_denominator,v145_cilow,v145_cihigh,v060_rawvalue,v060_numerator,v060_denominator,v060_cilow,v060_cihigh,v061_rawvalue,v061_numerator,v061_denominator,v061_cilow,v061_cihigh,v139_rawvalue,v139_numerator,v139_denominator,v139_cilow,v139_cihigh,v083_rawvalue,v083_numerator,v083_denominator,v083_cilow,v083_cihigh,v138_rawvalue,v138_numerator,v138_denominator,v138_cilow,v138_cihigh,v138_race_aian,v138_race_aian_cilow,v138_race_aian_cihigh,v138_race_asian,v138_race_asian_cilow,v138_race_asian_cihigh,v138_race_black,v138_race_black_cilow,v138_race_black_cihigh,v138_race_hispanic,v138_race_hispanic_cilow,v138_race_hispanic_cihigh,v138_race_white,v138_race_white_cilow,v138_race_white_cihigh,v138_race_nhopi,v138_race_nhopi_cilow,v138_race_nhopi_cihigh,v143_rawvalue,v143_numerator,v143_denominator,v143_cilow,v143_cihigh,v003_rawvalue,v003_numerator,v003_denominator,v003_cilow,v003_cihigh,v122_rawvalue,v122_numerator,v122_denominator,v122_cilow,v122_cihigh,v131_rawvalue,v131_numerator,v131_denominator,v131_cilow,v131_cihigh,v131_other_data_1,v021_rawvalue,v021_numerator,v021_denominator,v021_cilow,v021_cihigh,v149_rawvalue,v149_numerator,v149_denominator,v149_cilow,v149_cihigh,v159_rawvalue,v159_numerator,v159_denominator,v159_cilow,v159_cihigh,v159_race_aian,v159_race_asian,v159_race_black,v159_race_hispanic,v159_race_white,v160_rawvalue,v160_numerator,v160_denominator,v160_cilow,v160_cihigh,v160_race_aian,v160_race_asian,v160_race_black,v160_race_hispanic,v160_race_white,v167_rawvalue,v167_numerator,v167_denominator,v167_cilow,v167_cihigh,v169_rawvalue,v169_numerator,v169_denominator,v169_cilow,v169_cihigh,v151_rawvalue,v151_numerator,v151_denominator,v151_cilow,v151_cihigh,v063_rawvalue,v063_numerator,v063_denominator,v063_cilow,v063_cihigh,v063_race_aian,v063_race_aian_cilow,v063_race_aian_cihigh,v063_race_asian,v063_race_asian_cilow,v063_race_asian_cihigh,v063_race_black,v063_race_black_cilow,v063_race_black_cihigh,v063_race_hispanic,v063_race_hispanic_cilow,v063_race_hispanic_cihigh,v063_race_white,v063_race_white_cilow,v063_race_white_cihigh,v170_rawvalue,v170_numerator,v170_denominator,v170_cilow,v170_cihigh,v065_rawvalue,v065_numerator,v065_denominator,v065_cilow,v065_cihigh,v141_rawvalue,v141_numerator,v141_denominator,v141_cilow,v141_cihigh,v171_rawvalue,v171_numerator,v171_denominator,v171_cilow,v171_cihigh,v172_rawvalue,v172_numerator,v172_denominator,v172_cilow,v172_cihigh,v015_rawvalue,v015_numerator,v015_denominator,v015_cilow,v015_cihigh,v015_race_aian,v015_race_aian_cilow,v015_race_aian_cihigh,v015_race_asian,v015_race_asian_cilow,v015_race_asian_cihigh,v015_race_black,v015_race_black_cilow,v015_race_black_cihigh,v015_race_hispanic,v015_race_hispanic_cilow,v015_race_hispanic_cihigh,v015_race_white,v015_race_white_cilow,v015_race_white_cihigh,v015_race_nhopi,v015_race_nhopi_cilow,v015_race_nhopi_cihigh,v161_rawvalue,v161_numerator,v161_denominator,v161_cilow,v161_cihigh,v161_other_data_1,v161_race_aian,v161_race_aian_cilow,v161_race_aian_cihigh,v161_race_asian,v161_race_asian_cilow,v161_race_asian_cihigh,v161_race_black,v161_race_black_cilow,v161_race_black_cihigh,v161_race_hispanic,v161_race_hispanic_cilow,v161_race_hispanic_cihigh,v161_race_white,v161_race_white_cilow,v161_race_white_cihigh,v161_race_nhopi,v161_race_nhopi_cilow,v161_race_nhopi_cihigh,v148_rawvalue,v148_numerator,v148_denominator,v148_cilow,v148_cihigh,v148_race_aian,v148_race_aian_cilow,v148_race_aian_cihigh,v148_race_asian,v148_race_asian_cilow,v148_race_asian_cihigh,v148_race_black,v148_race_black_cilow,v148_race_black_cihigh,v148_race_hispanic,v148_race_hispanic_cilow,v148_race_hispanic_cihigh,v148_race_white,v148_race_white_cilow,v148_race_white_cihigh,v148_race_nhopi,v148_race_nhopi_cilow,v148_race_nhopi_cihigh,v039_rawvalue,v039_numerator,v039_denominator,v039_cilow,v039_cihigh,v039_race_aian,v039_race_aian_cilow,v039_race_aian_cihigh,v039_race_asian,v039_race_asian_cilow,v039_race_asian_cihigh,v039_race_black,v039_race_black_cilow,v039_race_black_cihigh,v039_race_hispanic,v039_race_hispanic_cilow,v039_race_hispanic_cihigh,v039_race_white,v039_race_white_cilow,v039_race_white_cihigh,v039_race_nhopi,v039_race_nhopi_cilow,v039_race_nhopi_cihigh,v158_rawvalue,v158_numerator,v158_denominator,v158_cilow,v158_cihigh,v158_other_data_1,v158_other_data_2,v177_rawvalue,v177_numerator,v177_denominator,v177_cilow,v177_cihigh,v178_rawvalue,v178_numerator,v178_denominator,v178_cilow,v178_cihigh,v156_rawvalue,v156_numerator,v156_denominator,v156_cilow,v156_cihigh,v153_rawvalue,v153_numerator,v153_denominator,v153_cilow,v153_cihigh,v154_rawvalue,v154_numerator,v154_denominator,v154_cilow,v154_cihigh,v166_rawvalue,v166_numerator,v166_denominator,v166_cilow,v166_cihigh,v051_rawvalue,v051_numerator,v051_denominator,v051_cilow,v051_cihigh,v052_rawvalue,v052_numerator,v052_denominator,v052_cilow,v052_cihigh,v053_rawvalue,v053_numerator,v053_denominator,v053_cilow,v053_cihigh,v054_rawvalue,v054_numerator,v054_denominator,v054_cilow,v054_cihigh,v055_rawvalue,v055_numerator,v055_denominator,v055_cilow,v055_cihigh,v081_rawvalue,v081_numerator,v081_denominator,v081_cilow,v081_cihigh,v080_rawvalue,v080_numerator,v080_denominator,v080_cilow,v080_cihigh,v056_rawvalue,v056_numerator,v056_denominator,v056_cilow,v056_cihigh,v126_rawvalue,v126_numerator,v126_denominator,v126_cilow,v126_cihigh,v059_rawvalue,v059_numerator,v059_denominator,v059_cilow,v059_cihigh,v057_rawvalue,v057_numerator,v057_denominator,v057_cilow,v057_cihigh,v058_rawvalue,v058_numerator,v058_denominator,v058_cilow,v058_cihigh -00,000,00000,US,United States,2024,,7971.509789,4535347,921750763,7960.516043,7982.503535,0,15998.93793,15815.01063,16182.86522,,3177.687035,3149.777395,3205.596676,,12979.37963,12940.04065,13018.71861,,6558.239232,6536.049239,6580.429224,,7717.246219,7702.963603,7731.528836,,11584.50659,11292.85671,11876.15646,,,0.142,,,0.137,0.157,3.346299949,,,3.296325539,3.396274359,4.817121948,,,4.755701435,4.87854246,0.083407868,2190533,26262906,0.083302119,0.083513617,0,0.081167039,0.07996248,0.082371598,0.087506058,0.087072807,0.087939309,0.141877222,0.14152519,0.142229254,0.075566929,0.075360153,0.075773706,0.069666089,0.069530198,0.06980198,0.083138748,0.08105183,0.085225666,0.09013414,0.089403803,0.090864477,0.15,,,0.138,0.163,0.34,,,0.321,0.357,7.7,0.061001965,0.104,,,0.229,,,0.221,0.24,0.841440441,278894829,331449281,,,0.181103881,,,0.178243489,0.183999898,0.263090697,50485,191892,0.261971522,0.264210981,495.5,1644416,331893745,,,16.58036919,1204536,72648322,16.55075906,16.60997933,28.14595112,27.72664036,28.56526189,2.484296634,2.434478251,2.534115018,24.93364493,24.83626179,25.03102808,25.39976391,25.3249275,25.47460031,11.30064474,11.26679165,11.33449783,23.85562211,23.05527446,24.65596976,16.78303886,16.62680053,16.9392772,0.102285496,27558913,269431290,,,0.000749427,248730,331893745,,,1334.353496,0.000734615,244838,333287557,,,1361.257472,0.003138977,1046182,333287557,,,318.5751208,2681,,,,,3956,1575,4427,2659,2527,0.43,,,,,0.28,0.34,0.39,0.29,0.45,0.46,,,,,0.36,0.48,0.34,0.33,0.48,0.891440466,202001294,226600992,0.890662331,0.892218602,0.67582978,59607181,88198512,0.674543286,0.677116275,0.03650136,6014764,164781913,,,0.163,11582950,,0.160617021,0.165382979,0.291141192,0.286459433,0.295822952,0.10691961,0.105065509,0.108773711,0.306175494,0.30355402,0.308796967,0.229546821,0.227527884,0.231565758,0.102069701,0.100993102,0.103146301,4.902842293,150934,30785,4.885497061,4.920187525,0.249315823,18206449,73025646,0.247587535,0.25104411,9.085618652,301546,331893745,,,80.005528,1314094,1642504003,79.86873532,80.14232068,135.3232028,133.253843,137.3925625,25.79551472,25.47268821,26.11834124,99.03297597,98.60321688,99.46273507,48.12483745,47.87796749,48.37170742,91.66156778,91.47261528,91.85052029,59.52420651,56.76279853,62.28561449,7.35,,,,,,,,,,0.167388914,20480740,122354220,,,0.135222002,,,0.033187658,,,0.009880738,,,0.716733282,112314702,156703623,0.715514514,0.71795205,0.691665494,,,0.595171418,,,0.69598902,,,0.688778183,,,0.743884245,,,0.364,,156703623,0.361617021,0.366382979,77.58533723,,,77.5754735,77.59520096,72.84369372,72.68868213,72.99870531,86.48023033,86.42200071,86.53845995,72.74897344,72.71828845,72.77965842,80.34141967,80.30927185,80.37356748,77.63384288,77.6217327,77.64595305,77.09955718,76.71385835,77.485256,390.0631011,4535347,921750763,389.6919504,390.4342519,659.9372643,653.9771836,665.897345,168.4699208,167.4521117,169.4877298,603.9495753,602.5991934,605.2999571,323.5284597,322.6163521,324.4405673,383.3474459,382.8854262,383.8094657,537.9308735,527.1308466,548.7309004,50.64591872,165609,326993772,50.40199246,50.88984498,82.87150121,79.44416743,86.29883499,28.03657494,27.24432293,28.82882695,99.63979155,98.71713476,100.5624483,43.10557623,42.65898655,43.5521659,43.49234046,43.1732163,43.81146463,77.48653246,70.84556345,84.12750146,5.671340479,150841,26597063,5.642719657,5.6999613,8.039979422,7.650973048,8.428985797,2.865865431,2.784364033,2.947366829,11.33038761,11.22381001,11.43696521,5.14077489,5.084637064,5.196912716,4.494249596,4.458808234,4.529690957,7.080443727,6.451586486,7.709300969,8.701598221,8.461646744,8.941549698,0.102808778,,,0.100825076,0.104826958,0.151973474,,,0.149428163,0.154554264,0.096,,,,,382.2,1071005,280202649,,,0.104,33844000,,,,0.061001965,18834084.4,308745538,,,27.19515668,269128,989617391,27.09240991,27.29790345,42.2179479,40.72936183,43.70653397,4.460051115,4.288115584,4.631986646,36.15187936,35.81779735,36.48596137,16.83446398,16.64725801,17.02166994,30.88032841,30.73864014,31.02201669,14.76307445,13.00536035,16.52078854,0.330131,,,,,0.121128647,23878505,197133424,,,0.05318895,4041291,75979898,,,0.001313898,437906,333287557,,,761.0938352,0.861605,,,,,0.069448414,1220306,17571402,0.068761772,0.070135056,3.053421,,,,,,,,,,3.002972,,,,,,,,,,0.24044071,,,,,634.0391,,,,,0.813749523,51123,62824,0.810307925,0.81719112,74755,,,74578.65957,74931.34043,55925,55359.04255,56490.95745,107637,107143.7234,108130.2766,50901,50685.34043,51116.65957,64936,64669.10638,65202.89362,81423,81252.61702,81593.38298,,,,,,0.507602879,21248958,41861382,,,62.69592257,,,,,0.270741247,,,,,6.863866828,,,,,6.275638002,143527,2287050336,6.243170628,6.308105375,11.49902823,10.98772233,12.01033414,1.516379172,1.449501625,1.583256718,26.20926035,26.02167808,26.39684262,5.625833353,5.553877497,5.69778921,2.808842131,2.78090169,2.836782573,6.592868552,5.80935586,7.376381245,13.94202751,236974,1642504003,13.88465502,13.9994,14.42760563,23.85828423,22.97727662,24.73929183,6.57914717,6.418039758,6.740254583,7.624270989,7.504181165,7.744360813,7.395239422,7.295005053,7.495473791,17.59364376,17.50967431,17.67761322,13.04931551,11.77457606,14.32405496,12.98328647,213251,1642504003,12.92818094,13.038392,16.21110683,15.49487076,16.92734291,2.711221337,2.606561612,2.815881062,28.77352735,28.54187767,29.00517704,7.479793144,7.382467248,7.57711904,12.55614442,12.48621061,12.62607822,9.5372118,8.431875374,10.64254823,12.03541504,275256,2287050336,11.99045271,12.08037736,27.92198415,27.12523176,28.71873655,4.390973409,4.277169591,4.504777226,15.75994459,15.61448521,15.90540398,10.51882064,10.42042944,10.61721183,12.45132282,12.39249574,12.51014991,10.61645745,9.622200489,11.61071441,,,,,,,,0.679095215,158528503,233440760,,,0.652,,,,,107.6166571,,,,,0.648163861,81497760,125736353,0.645121729,0.651205992,0.144915294,17679129,121996295,0.144231345,0.145599244,0.883466964,111083914,125736353,0.881458379,0.885475548,333287557,,,,,0.217382334,72450827,333287557,,,0.17340837,57794852,333287557,,,0.126228748,42070471,333287557,,,0.013148508,4382234,333287557,,,0.062870457,20953941,333287557,,,0.002636786,878808,333287557,,,0.191019271,63664346,333287557,,,0.588758752,196225966,333287557,,,0.040955371,12781871,312092668,0.040702803,0.041207939,0.504081237,168004004,333287557,,,0.200031371,66300254,331449281,, -01,000,01000,AL,Alabama,2024,,11415.73483,98140,13812804,11307.65285,11523.81682,0,6175.972793,4859.459549,7492.486037,,3449.493247,2971.108502,3927.877993,,14925.81561,14688.04449,15163.58673,,6491.438107,6116.959387,6865.916827,,10523.19363,10394.42315,10651.9641,,9382.044252,5807.633264,14341.45125,1,,0.178,,,0.164,0.193,3.934735403,,,3.608645276,4.26082553,5.869319841,,,5.451217682,6.287422,0.10480008,42773,408139,0.103860373,0.105739788,0,0.107995846,0.088392514,0.127599178,0.099014699,0.091574503,0.106454894,0.161593584,0.159525484,0.163661684,0.075912327,0.073158707,0.078665947,0.080064427,0.078970733,0.081158121,0.100323625,0.066825415,0.133821834,0.103991751,0.096730548,0.111252955,0.179,,,0.162,0.196,0.406,,,0.386,0.427,5.4,0.087605485,0.148,,,0.299,,,0.282,0.317,0.613337954,3081581,5024279,,,0.14477526,,,0.130217892,0.160659429,0.25126369,1193,4748,0.244100654,0.258477853,625.2,31507,5039877,,,24.92988074,27474,1102051,24.63508899,25.22467249,11.48124192,8.96694519,14.48202444,2.380277699,1.715494799,3.217443966,30.75798724,30.16185878,31.3541157,52.40181091,50.68163604,54.12198579,19.65523293,19.31429695,19.9961689,18.18181818,9.94016919,30.50600146,28.58397687,26.57925926,30.58869448,0.116933505,469887,4018412,0.112167548,0.121699463,0.000636524,3208,5039877,,,1571.033978,0.000496029,2517,5074296,,,2016.009535,0.001350926,6855,5074296,,,740.2328228,3280,,,,,5665,1757,4310,1938,3093,0.41,,,,,0.41,0.38,0.4,0.3,0.41,0.39,,,,,0.31,0.42,0.29,0.25,0.41,0.877153991,3007340,3428520,0.874973932,0.87933405,0.616041617,779337,1265072,0.609337321,0.622745912,0.025967658,59363,2286036,,,0.218,237861,,0.207276596,0.228723404,0.258600785,0.181512534,0.335689036,0.1378157,0.106720172,0.168911227,0.380694925,0.370923907,0.390465942,0.356095111,0.337239459,0.374950762,0.118610439,0.11397389,0.123246987,5.212687998,122347,23471,5.135473692,5.289902304,0.305875299,338752,1107484,0.299174264,0.312576335,11.69472985,5894,5039877,,,90.37969869,22258,24627212,89.19233465,91.56706272,44.86381661,34.39683094,57.51338814,28.95321712,23.41514956,34.49128467,95.25410519,92.88609117,97.62211921,44.40505271,40.50104859,48.30905682,95.04367224,93.53636118,96.5509833,,,,9.3,,,,,0.223880597,,,,,0.130812468,247040,1888505,0.128315497,0.133309439,0.11170151,0.109194487,0.114208533,0.016650737,0.015708136,0.017593338,0.008564976,0.007858062,0.00927189,0.82825024,1808631,2183677,0.825237837,0.831262644,0.775560538,0.732773792,0.818347285,0.719363942,0.691880639,0.746847245,0.823964734,0.818019229,0.829910238,0.733945758,0.713738615,0.754152901,0.838554892,0.834581504,0.84252828,0.352,,2183677,0.347704024,0.356295976,73.70786097,,,73.62680867,73.78891328,108.0446022,97.10899106,118.9802134,87.39704147,85.94506687,88.84901606,70.85467445,70.68696581,71.0223831,92.60411244,90.07678088,95.13144401,74.30245555,74.20632457,74.39858654,77.75312316,71.12531851,84.3809278,548.7561714,98140,13812804,545.1702669,552.342076,243.5485613,210.6375924,276.4595301,171.9443912,154.7711781,189.1176043,689.3030007,681.2647179,697.3412835,268.9877522,253.5226698,284.4528345,522.075178,517.8344085,526.3159474,481.4313182,331.3951674,676.108565,73.03384215,3575,4894991,70.63974264,75.42794165,70.85163667,39.6551232,116.8589999,38.85327339,25.817718,56.15379783,110.8950152,105.4337847,116.3562457,58.08478844,50.52855172,65.64102515,58.07807398,55.26287304,60.89327492,,,,7.730109852,3168,409826,7.460925908,7.999293795,,,,3.762345195,2.410605558,5.598071421,12.50505214,11.88189665,13.12820762,5.919976201,5.097450468,6.742501934,5.508197272,5.210254266,5.806140277,,,,7.394587791,5.433264973,9.833234163,0.123666507,,,0.111397381,0.137078479,0.195782686,,,0.178866244,0.213882291,0.133,,,0.121,0.145,339.7,14436,4249627,,,0.148,746550,,,,0.087605485,418731.0919,4779736,,,21.56130198,3205,14864594,20.81482394,22.30778002,15.59033399,8.301196248,26.65994594,,,,17.6752882,16.36212726,18.98844913,5.933404052,4.257913188,8.049332574,25.01981381,24.02316363,26.01646399,,,,0.392430096,,,0.374239477,0.410924275,0.146289079,427677,2923506,0.140331632,0.152246526,0.041140988,47300,1149705,0.036375031,0.045906946,0.001156022,5866,5074296,,,865.0351176,0.907580579,46685.945,51440,,,0.080182875,22221,277129,0.07467925,0.085686501,2.885602535,,,,,,3.348598508,2.481435951,2.399626723,3.20566497,2.72218766,,,,,,3.504733739,2.268950372,2.453290842,3.025516985,0.274931944,,,,,-7911.501,,,,,0.744823226,42408,56937,0.73471933,0.754927122,59703,,,58848.70213,60557.29787,58020,47612.34043,68427.65957,78324,71272.76596,85375.23404,40661,40004.48936,41317.51064,51086,48873.40426,53298.59575,69303,68691.76596,69914.23404,,,,,,0.491740798,363453,739115,,,57.39338222,,,,,0.266040689,,,,,5.509231686,,,,,12.13118413,4167,34349491,11.76284529,12.49952297,,,,2.622829105,1.396546035,4.485117648,31.80484355,30.646066,32.96362109,6.22374562,5.035381867,7.608206279,5.07629412,4.781743443,5.370844798,,,,16.23475175,4082,24627212,15.72239169,16.74711181,16.57516084,7.145219375,3.267249288,13.56385207,8.593274748,5.838713273,12.19746757,6.826074485,6.185834796,7.466314175,7.519123582,5.952960949,9.371071458,20.82157157,20.09865511,21.54448803,,,,23.22634003,5720,24627212,22.62441995,23.82826012,7.236099453,3.469990952,13.30744453,5.514898498,3.368643276,8.517313446,36.28727817,34.82570818,37.74884815,8.666579703,7.028012313,10.57249227,19.91225292,19.22232856,20.60217729,,,,20.58836913,7072,34349491,20.10851759,21.06822066,10.90999771,6.753460539,16.67709043,7.263219059,5.087069335,10.05535672,22.11172951,21.14553449,23.07792454,15.65763372,13.67252978,17.64273765,21.06595325,20.46591741,21.6659891,,,,12.26209677,,496000,,,4911,1171,0.626360004,2323282,3709180,,,,,,,,67.32870913,,,,,0.697199907,1347792,1933150,0.692533061,0.701866752,0.12266376,225974,1842223,0.120015003,0.125312517,0.837864108,1619717,1933150,0.833787211,0.841941005,5074296,,,,,0.219057383,1111562,5074296,,,0.180267962,914733,5074296,,,0.26430898,1341182,5074296,,,0.007158629,36325,5074296,,,0.015886933,80615,5074296,,,0.00109493,5556,5074296,,,0.049317777,250253,5074296,,,0.647117157,3283664,5074296,,,0.010474985,49612,4736236,0.009891111,0.011058859,0.513753238,2606936,5074296,,,0.422627605,2123399,5024279,, -01,001,01001,AL,Autauga County,2024,1,9407.948438,942,159452,8508.88015,10307.01673,0,,,,2,,,,2,13652.71296,11255.80966,16049.61625,,,,,2,8697.028881,7685.215443,9708.84232,,,,,2,,0.173,,,0.146,0.204,3.910265059,,,3.083456871,4.836686821,5.703204125,,,4.667053286,6.860925088,0.098713352,468,4741,0.09022271,0.107203993,0,,,,,,,0.161175423,0.139669842,0.182681004,0.063694268,0.025494101,0.101894434,0.08034084,0.071046813,0.089634867,,,,,,,0.169,,,0.136,0.211,0.389,,,0.318,0.463,6.7,0.13020998,0.133,,,0.291,,,0.243,0.351,0.54491965,32044,58805,,,0.152378215,,,0.121047352,0.187995334,0.290909091,16,55,0.220724209,0.362941414,577,341,59095,,,20.90888049,271,12961,18.41943738,23.3983236,,,,,,,25.4754216,19.89651563,32.13377794,,,,20.89944195,17.93547008,23.86341382,,,,,,,0.100185604,4912,49029,0.085887732,0.114483477,0.00043997,26,59095,,,2272.884615,0.00030121,18,59759,,,3319.944444,0.000368145,22,59759,,,2716.318182,3915,,,,,,,6203,,3633,0.4,,,,,,0.52,0.35,0.27,0.41,0.37,,,,,,0.38,0.29,0.18,0.38,0.904026077,36331,40188,0.888110748,0.919941407,0.641475015,9846,15349,0.57610536,0.706844669,0.022695883,608,26789,,,0.157,2151,,0.102191489,0.211808511,,,,,,,0.260671799,0.151669025,0.369674572,0.167207792,0.002530507,0.331885078,0.089715536,0.062209635,0.117221437,4.637675394,128241,27652,3.831335461,5.444015328,0.227025064,3125,13765,0.175395693,0.278654435,12.69142906,75,59095,,,68.03347814,192,282214,58.41008715,77.65686914,,,,,,,83.63138134,61.44919334,111.2120079,,,,67.86578939,56.66374162,79.06783715,,,,10,,,,,0,,,,,0.153756957,3315,21560,0.126804811,0.180709104,0.132084309,0.105921705,0.158246913,0.016001855,0.007151368,0.024852343,0.015769944,0.008066256,0.023473632,0.854278421,23092,27031,0.825070285,0.883486557,,,,,,,0.807256819,0.72458283,0.889930809,,,,0.808466913,0.757078875,0.859854952,0.429,,27031,0.375808306,0.482191694,75.26349707,,,74.52247599,76.00451816,,,,,,,71.91285165,70.08048227,73.74522104,,,,75.6193168,74.79178094,76.44685266,,,,472.2839228,942,159452,441.3326872,503.2351583,,,,,,,605.6928292,524.7729536,686.6127048,,,,455.7017924,420.9100278,490.493557,,,,58.56212753,34,58058,40.55597572,81.83470339,,,,,,,94.00705053,48.5748148,164.2113987,,,,55.54854185,34.81197544,84.10115992,,,,6.834686032,32,4682,4.674920186,9.648537394,,,,,,,,,,,,,,,,,,,,,,0.117,,,0.1,0.136,0.18,,,0.157,0.207,0.107,,,0.092,0.125,218,108,49531,,,0.133,7770,,,,0.13020998,7105.688803,54571,,,9.350764717,16,171109,5.344769973,15.18505607,,,,,,,,,,,,,11.19006322,6.117711693,18.77502468,,,,0.375,,,0.359,0.391,0.124074179,4389,35374,0.105010349,0.143138009,0.040412486,580,14352,0.027306103,0.053518869,0.000502016,30,59759,,,1991.966667,0.87,539.4,620,,,0.072425052,244,3369,0.024427333,0.120422771,3.12696818,,,,,,,2.605717333,,3.328546491,2.91727955,,,,,,,2.353697303,2.865180133,3.091920037,0.051539309,,,,,-3606.782,,,,,0.746165515,44270,59330,0.620166096,0.872164934,70148,,,61519.23404,78776.76596,,,,,,,50763,42914.65957,58611.34043,80917,47537.42553,114296.5745,75863,70772.95745,80953.04255,,,,,,0.279985972,2395,8554,,,29.38240388,,,,,0.19733991,,70148,,,5.726341169,19,3318,,,6.616163287,26,392977,4.32189752,9.694212151,,,,,,,23.30157415,13.80998962,36.82653307,,,,,,,,,,17.4574792,51,282214,12.91513922,23.07971332,18.07139263,,,,,,,,,,,,,21.21870488,15.41754345,28.4851209,,,,17.36271057,49,282214,12.84502886,22.95442416,,,,,,,23.1320842,12.3168606,39.55656848,,,,17.32743559,12.13592286,23.9884746,,,,18.06721513,71,392977,14.11064491,22.7893335,,,,,,,23.30157415,13.80998962,36.82653307,,,,17.53879168,13.05878241,23.06027202,,,,4.838709677,,6200,,,24,6,0.661820782,27770,41960,,,0.688,,,,,46.47384819,,,,,0.754527524,16832,22308,0.723689383,0.785365665,0.112793587,2406,21331,0.088548019,0.137039154,0.890667025,19869,22308,0.868937657,0.912396393,59759,,,,,0.232283003,13881,59759,,,0.164109172,9807,59759,,,0.210110611,12556,59759,,,0.004718955,282,59759,,,0.011780652,704,59759,,,0.001221573,73,59759,,,0.033819174,2021,59759,,,0.720510718,43057,59759,,,0.003664855,203,55391,0,0.007942039,0.512960391,30654,59759,,,0.406768132,23920,58805,, -01,003,01003,AL,Baldwin County,2024,1,8981.575353,3789,633571,8514.700923,9448.449784,0,,,,2,,,,2,14709.55299,12789.19225,16629.91374,,4784.741236,3448.420623,6467.580158,,8795.945234,8281.89469,9309.995779,,,,,2,,0.152,,,0.127,0.179,3.730942868,,,2.959283287,4.516049304,5.373666151,,,4.445590441,6.273711996,0.081243184,1341,16506,0.077075173,0.085411196,0,,,,0.122222222,0.074371643,0.170072801,0.138274336,0.122362798,0.154185874,0.075268817,0.062263965,0.08827367,0.073221423,0.068656489,0.077786357,,,,0.08115942,0.052343262,0.109975578,0.15,,,0.117,0.186,0.372,,,0.321,0.427,7.5,0.079367794,0.118,,,0.276,,,0.232,0.322,0.631293497,146313,231767,,,0.164225636,,,0.134603541,0.19745136,0.361445783,60,166,0.323103967,0.399623233,317.6,760,239294,,,20.20223706,941,46579,18.91143181,21.49304231,,,,,,,28.24963072,23.77329005,32.7259714,47.68392371,39.78507059,55.58277682,17.09109554,15.72352307,18.458668,,,,31.18355776,22.65802081,41.86247079,0.109970667,20432,185795,0.098055773,0.12188556,0.000626844,150,239294,,,1595.293333,0.000470712,116,246435,,,2124.439655,0.001103739,272,246435,,,906.0110294,2799,,,,,,,5376,,2680,0.44,,,,,0.42,0.47,0.38,0.24,0.44,0.42,,,,,0.3,0.41,0.31,0.26,0.43,0.915993103,152991,167022,0.907336883,0.924649323,0.656804185,35407,53908,0.617040481,0.696567888,0.023500472,2417,102849,,,0.161,8093,,0.127638298,0.194361702,,,,0.076767677,0,0.2912931,0.330143541,0.23407196,0.426215121,0.384340659,0.256628632,0.512052686,0.072606897,0.053895213,0.09131858,4.482449247,136894,30540,4.116585256,4.848313238,0.190512873,9398,49330,0.163099577,0.217926168,9.653397076,231,239294,,,77.50798466,870,1122465,72.35756177,82.65840755,,,,,,,74.32795144,58.15704432,93.60375361,36.15535385,21.76788484,56.46106367,83.01955512,77.17454023,88.86457001,,,,7.6,,,,,1,,,,,0.12427866,10445,84045,0.1084219,0.140135421,0.105647721,0.089747578,0.121547864,0.015229936,0.010082811,0.020377061,0.006365638,0.003429842,0.009301433,0.813469985,86118,105865,0.796749314,0.830190657,,,,,,,0.844833793,0.787001184,0.902666403,0.623041697,0.523603121,0.722480272,0.801379347,0.783598519,0.819160174,0.379,,105865,0.353837279,0.404162721,76.73831389,,,76.36055001,77.11607776,,,,85.73215729,79.80534515,91.65896944,71.06231575,69.69748149,72.42715002,89.80345644,82.70248019,96.9044327,76.87091914,76.46208449,77.27975378,,,,416.2189122,3789,633571,401.8716865,430.566138,,,,,,,687.7574479,621.2660076,754.2488881,193.3386235,144.8238961,252.8916797,409.2625357,393.75643,424.7686414,,,,54.03500529,115,212825,44.15897645,63.91103413,,,,,,,99.61061306,62.42544088,150.8116653,,,,51.39541652,40.93616237,63.71235149,,,,5.329249617,87,16325,4.268510477,6.573609714,,,,,,,,,,,,,4.712083699,3.587056436,6.078244658,,,,,,,0.11,,,0.093,0.127,0.173,,,0.15,0.198,0.098,,,0.083,0.114,174.3,356,204264,,,0.118,26830,,,,0.079367794,14465.9709,182265,,,25.72942188,178,691815,21.94955854,29.50928522,,,,,,,23.85821404,13.04350763,40.03002918,,,,27.61701625,23.32427942,31.90975308,,,,0.351,,,0.334,0.368,0.133762433,18101,135322,0.117081582,0.150443284,0.049369431,2615,52968,0.036263048,0.062475814,0.00083592,206,246435,,,1196.286408,0.886517139,2094.84,2363,,,0.082482759,897,10875,0.047954384,0.117011134,3.192380762,,,,,,,2.569883503,2.685681918,3.374600785,3.037911538,,,,,,,2.324328135,2.746378501,3.206115511,0.090945858,,,,,-537.1533,,,,,0.722548599,43785,60598,0.674748656,0.770348542,71704,,,65122.21277,78285.78723,58350,36546.93617,80153.06383,96071,43750.31915,148391.6809,38223,30352.02128,46093.97872,56507,41840.95745,71173.04255,76739,73433.80851,80044.19149,,,,,,0.369956076,12634,34150,,,39.54396112,,,,,0.201522928,,71704,,,6.231823847,75,12035,,,3.388202669,52,1534737,2.530471814,4.443177023,,,,,,,12.60977926,7.345661101,20.18947812,,,,2.742860725,1.910502994,3.814655291,,,,18.79012618,213,1122465,16.14263435,21.437618,18.9760928,,,,,,,,,,,,,21.26580702,18.1327196,24.39889443,,,,14.34343164,161,1122465,12.12780693,16.55905636,,,,,,,18.58198786,11.01286367,29.367552,,,,14.99708093,12.51281096,17.48135089,,,,15.8333317,243,1534737,13.84254265,17.82412076,,,,,,,18.54379302,12.0005651,27.3742966,14.07855836,6.75121596,25.89097007,16.30042945,14.08517586,18.51568305,,,,20.30567686,,22900,,,343,122,0.652909486,109679,167985,,,0.564,,,,,39.06806727,,,,,0.778705315,70708,90802,0.766062915,0.791347715,0.123018541,10795,87751,0.107944502,0.13809258,0.889209489,80742,90802,0.875233773,0.903185204,246435,,,,,0.208038631,51268,246435,,,0.219287033,54040,246435,,,0.082248869,20269,246435,,,0.008107615,1998,246435,,,0.011560858,2849,246435,,,0.00066549,164,246435,,,0.050362165,12411,246435,,,0.82978473,204488,246435,,,0.00786658,1741,221316,0.005193169,0.010539991,0.512390691,126271,246435,,,0.375864554,87113,231767,, -01,005,01005,AL,Barbour County,2024,1,13138.84836,579,68114,11474.73402,14802.96271,0,,,,2,,,,2,16275.94809,13700.04394,18851.85223,,,,,2,10224.96168,7940.574474,12509.34888,,,,,2,,0.273,,,0.237,0.31,5.023488318,,,4.104913534,6.102067237,6.01429402,,,4.888848591,7.293198787,0.122724909,236,1923,0.10805928,0.137390538,0,,,,,,,0.169201521,0.146544741,0.191858301,0.075117371,0.039719286,0.110515456,0.060897436,0.042133679,0.079661193,,,,,,,0.25,,,0.205,0.296,0.434,,,0.354,0.52,6,0.104331717,0.178,,,0.402,,,0.343,0.465,0.548546961,13836,25223,,,0.122771979,,,0.096255128,0.154481693,0.314285714,11,35,0.225243422,0.404343522,729,182,24964,,,36.61853944,175,4779,31.19306071,42.04401817,,,,,,,36.49345498,29.41887535,44.75598294,101.3513514,68.38133115,144.6853561,27.76294714,20.73469685,36.4074115,,,,,,,0.126776343,2150,16959,0.107712513,0.145840173,0.000400577,10,24964,,,2496.4,0.000323808,8,24706,,,3088.25,0.000283332,7,24706,,,3529.428571,3040,,,,,,,4814,,2448,0.42,,,,,,,0.39,,0.44,0.35,,,,,,,0.25,,0.38,0.764922207,13520,17675,0.74088238,0.788962033,0.404544752,2617,6469,0.343611772,0.465477732,0.040650407,335,8241,,,0.377,1871,,0.260234043,0.493765957,,,,,,,0.504480956,0.430636451,0.578325461,0.688109162,0.58020225,0.796016073,0.036930179,0.010726534,0.063133824,5.57679679,91716,16446,4.226254668,6.927338911,0.506604507,2608,5148,0.439497173,0.57371184,8.412113443,21,24964,,,85.21585336,106,124390,68.99313846,101.4385683,,,,,,,85.77050504,63.86177467,112.7723741,,,,90.03601441,67.03772657,118.3807312,,,,9.4,,,,,0,,,,,0.150751073,1405,9320,0.115783553,0.185718593,0.116836158,0.089985525,0.143686791,0.037553648,0.013415873,0.061691423,0.005364807,0.000475428,0.010254185,0.820525117,6844,8341,0.795286505,0.845763729,,,,,,,0.758073497,0.677644846,0.838502147,,,,0.84432651,0.806937658,0.881715362,0.367,,8341,0.304631478,0.429368522,72.37702423,,,71.20963459,73.54441387,,,,,,,69.78914534,68.08033843,71.49795224,,,,74.57976626,72.95466984,76.20486267,,,,628.2535957,579,68114,574.1258157,682.3813756,,,,,,,751.4771527,662.7253761,840.2289294,,,,540.0051662,468.8484572,611.1618753,,,,80.03913024,18,22489,47.4362612,126.4963327,,,,,,,101.5658062,52.48053414,177.4150237,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.158,,,0.137,0.181,0.205,,,0.179,0.234,0.156,,,0.135,0.179,513.7,110,21415,,,0.178,4500,,,,0.104331717,2864.635946,27457,,,,,,,,,,,,,,,,,,,,,,,,,,0.439,,,0.426,0.451,0.163114686,1967,12059,0.13690192,0.189327452,0.038976149,201,5157,0.025869766,0.052082532,0.00080952,20,24706,,,1235.3,0.8544098,383.63,449,,,,,,,,2.389161313,,,,,,,2.14283534,2.146840076,2.848986081,2.00862944,,,,,,,1.780238701,1.905975096,2.425860237,0.038889595,,,,,-23626.58,,,,,0.777443339,34611,44519,0.64190628,0.912980398,41151,,,35722.57447,46579.42553,,,,60063,29770.57447,90355.42553,25703,23455.85106,27950.14894,35265,10390.2766,60139.7234,61822,53537.57447,70106.42553,,,,,,0.565651191,4252,7517,,,19.07864539,,,,,0.254598916,,41151,,,5.303030303,7,1320,,,13.00581303,23,176844,8.244569811,19.51510534,,,,,,,21.34547654,12.6506822,33.73505552,,,,,,,,,,13.42681003,18,124390,7.674582052,21.80429829,14.47061661,,,,,,,,,,,,,20.14597139,10.05679633,36.04670771,,,,26.52946378,33,124390,18.26166217,37.2572307,,,,,,,25.22661913,14.11914723,41.60747191,,,,30.0120048,17.48309877,48.052127,,,,29.40444686,52,176844,21.96064735,38.56001998,,,,,,,35.57579423,24.00283897,50.78665836,,,,22.2098834,13.16298449,35.10119103,,,,,,2400,,,16,-888,0.540215717,10518,19470,,,0.545,,,,,34.40564928,,,,,0.649733807,5858,9016,0.613161566,0.686306047,0.107662697,895,8313,0.081728444,0.13359695,0.682231588,6151,9016,0.640310426,0.724152751,24706,,,,,0.203634745,5031,24706,,,0.206225209,5095,24706,,,0.471950134,11660,24706,,,0.007245204,179,24706,,,0.004695216,116,24706,,,0.002792844,69,24706,,,0.050999757,1260,24706,,,0.452724035,11185,24706,,,0.019806599,467,23578,0.007711872,0.031901327,0.471221566,11642,24706,,,0.659199937,16627,25223,, -01,007,01007,AL,Bibb County,2024,1,12675.43458,501,62383,10964.29014,14386.57903,0,,,,2,,,,2,14289.77842,10292.66639,18286.89045,,,,,2,12356.10073,10433.58641,14278.61505,,,,,2,,0.22,,,0.19,0.251,4.552794934,,,3.663534376,5.589494353,5.824583393,,,4.709603496,7.047293938,0.098285714,172,1750,0.084337561,0.112233868,0,,,,,,,0.165697674,0.12640634,0.204989009,,,,0.081804281,0.066951498,0.096657065,,,,,,,0.22,,,0.182,0.263,0.396,,,0.322,0.474,7.6,0.004458662,0.149,,,0.36,,,0.303,0.42,0.433903019,9673,22293,,,0.14785821,,,0.117649978,0.183572673,0.153846154,4,26,0.064169884,0.268836156,662.9,149,22477,,,31.92297948,126,3947,26.34888639,37.49707257,,,,,,,28.61230329,17.47713818,44.18938184,,,,31.57894737,25.57904876,38.56329967,,,,,,,0.113799283,1905,16740,0.095926943,0.131671624,0.000667349,15,22477,,,1498.466667,0.000227221,5,22005,,,4401,0.000499886,11,22005,,,2000.454546,4651,,,,,,,8207,,4150,0.36,,,,,,,0.31,,0.37,0.28,,,,,,,0.18,,0.29,0.788634223,12559,15925,0.755748821,0.821519624,0.389935116,2464,6319,0.313518829,0.466351404,0.02509741,219,8726,,,0.255,1084,,0.175170213,0.334829787,,,,,,,0.664359862,0.436058677,0.892661047,0.346420323,0.049654007,0.64318664,0.274287466,0.205679972,0.342894959,5.66923661,97063,17121,4.466919602,6.871553618,0.307133704,1438,4682,0.213258918,0.40100849,8.897984607,20,22477,,,99.93308053,112,112075,81.42521501,118.440946,,,,,,,88.41360728,54.7294164,135.1495905,,,,107.0123124,85.93967408,131.6878588,,,,9.8,,,,,0,,,,,0.122589532,890,7260,0.073358137,0.171820927,0.090909091,0.045528847,0.136289335,0.012396694,0.001153469,0.023639919,0.019972452,0.007078727,0.032866177,0.87983631,7095,8064,0.842536601,0.917136018,,,,,,,,,,,,,0.821586476,0.769187285,0.873985667,0.538,,8064,0.452047441,0.623952559,72.25136909,,,71.00891029,73.49382789,,,,,,,70.39062036,67.432284,73.34895673,,,,72.40800736,71.04341272,73.77260199,,,,618.3238587,501,62383,562.6031734,674.044544,,,,,,,729.3713667,588.2112442,870.5314893,,,,614.9544938,551.2713846,678.6376029,,,,100.8725475,20,19827,61.61557263,155.7894684,,,,,,,,,,,,,74.8401143,37.35991541,133.9096375,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.14,,,0.122,0.161,0.194,,,0.169,0.222,0.124,,,0.106,0.144,269.3,52,19312,,,0.149,3350,,,,0.004458662,102.1702428,22915,,,22.3857209,15,67007,12.52911805,36.9218423,,,,,,,,,,,,,30.23096457,16.92004138,49.86137868,,,,0.4,,,0.385,0.414,0.140821119,1739,12349,0.118182821,0.163459417,0.039496528,182,4608,0.026390145,0.052602911,0.001408771,31,22005,,,709.8387097,0.88,190.08,216,,,,,,,,2.688775131,,,,,,,2.213056213,,2.824307507,2.56336673,,,,,,,2.227899043,,2.664329915,0.089802217,,,,,-6970.646,,,,,0.808805816,37603,46492,0.554881594,1.062730038,54309,,,46470.19149,62147.80851,,,,,,,21563,2385.978723,40740.02128,,,,58896,51058.38298,66733.61702,,,,,,0.489921977,1507,3076,,,32.0713632,,,,,0.237014123,,54309,,,5.016722408,6,1196,,,9.535858005,15,157301,5.337147337,15.72794761,,,,,,,32.71180896,16.32961717,58.53046217,,,,,,,,,,17.05022054,18,112075,9.932381787,27.29905477,16.06067366,,,,,,,,,,,,,23.45790414,13.66509361,37.55837692,,,,20.52197189,23,112075,13.00916979,30.79303404,,,,,,,,,,,,,20.44055406,11.907376,32.72730716,,,,24.79323081,39,157301,17.6304108,33.89316271,,,,,,,29.73800815,14.26053081,54.68925578,,,,23.98451286,15.93753461,34.664299,,,,,,2000,,,62,-888,0.545635485,9595,17585,,,0.56,,,,,8.146790014,,,,,0.757344789,5465,7216,0.714727485,0.799962094,0.104042806,700,6728,0.065309558,0.142776055,0.797117517,5752,7216,0.740193612,0.854041421,22005,,,,,0.197455124,4345,22005,,,0.178050443,3918,22005,,,0.207361963,4563,22005,,,0.005725971,126,22005,,,0.00290843,64,22005,,,0.001317882,29,22005,,,0.031765508,699,22005,,,0.739968189,16283,22005,,,0.002891818,61,21094,0,0.008929516,0.464894342,10230,22005,,,1,22293,22293,, -01,009,01009,AL,Blount County,2024,1,11541.49507,1239,161231,10559.14698,12523.84316,0,,,,2,,,,2,16342.50413,8934.599082,27419.94501,1,4449.468475,2717.850938,6871.843186,1,12314.83931,11203.68679,13425.99184,,,,,2,,0.186,,,0.157,0.217,4.246335182,,,3.359155827,5.197039681,5.664850612,,,4.551959703,6.818790626,0.076043211,359,4721,0.068481935,0.083604488,0,,,,,,,,,,0.070044709,0.05073332,0.089356099,0.075457317,0.067205631,0.083709003,,,,,,,0.196,,,0.157,0.24,0.377,,,0.305,0.455,7.7,0.02512206,0.137,,,0.304,,,0.253,0.361,0.413552271,24455,59134,,,0.149461148,,,0.118217487,0.184051205,0.130952381,11,84,0.081955551,0.189254527,318.4,188,59041,,,25.12323104,316,12578,22.3531784,27.89328368,,,,,,,,,,26.39751553,19.65468418,34.70785786,25.32022639,22.21242279,28.42802999,,,,,,,0.128199779,6145,47933,0.112710417,0.143689141,0.000203249,12,59041,,,4920.083333,0.000168033,10,59512,,,5951.2,0.000268853,16,59512,,,3719.5,2499,,,,,,,,,2563,0.35,,,,,,,0.43,0.26,0.35,0.36,,,,,,,0.28,0.17,0.36,0.81755151,33370,40817,0.79926733,0.835835691,0.519759632,7352,14145,0.464898291,0.574620974,0.022251512,574,25796,,,0.158,2105,,0.100808511,0.215191489,0.253968254,0,0.581950061,,,,0.173076923,0,0.540962169,0.458036984,0.365515448,0.550558521,0.122379987,0.088403576,0.156356397,4.611946363,113500,24610,4.042343114,5.181549613,0.229694775,3108,13531,0.177496577,0.281892973,7.621822124,45,59041,,,97.72917319,284,290599,86.36282055,109.0955258,,,,,,,,,,39.26187672,19.5993874,70.2503427,105.1261911,92.46880395,117.7835782,,,,9.6,,,,,0,,,,,0.106578637,2260,21205,0.084945954,0.12821132,0.080260618,0.06093657,0.099584665,0.018108937,0.010181367,0.026036506,0.013440226,0.005535369,0.021345084,0.848946808,20716,24402,0.825398136,0.872495479,,,,,,,,,,0.735776278,0.259993075,1,0.778941107,0.736281677,0.821600536,0.606,,24402,0.558176876,0.653823124,73.37656812,,,72.64852529,74.10461095,,,,,,,,,,91.64899684,80.00720907,103.2907846,72.66850719,71.8814217,73.45559268,,,,573.1408529,1239,161231,539.7287221,606.5529837,,,,,,,858.5235596,550.0722441,1277.415004,212.1570346,134.4893609,318.3397201,601.7320808,565.3052785,638.158883,,,,61.53320229,36,58505,43.0970984,85.18788905,,,,,,,,,,,,,71.13448729,48.96570795,99.89926768,,,,7.221750212,34,4708,5.001271959,10.09167207,,,,,,,,,,,,,6.604013208,4.313960685,9.67640947,,,,,,,0.128,,,0.11,0.149,0.188,,,0.164,0.215,0.105,,,0.09,0.122,80.7,40,49567,,,0.137,8040,,,,0.02512206,1440.046734,57322,,,21.1735891,37,174746,14.90816074,29.18500346,,,,,,,,,,,,,23.78058447,16.65562901,32.92235275,,,,0.373,,,0.356,0.389,0.160972634,5541,34422,0.139525825,0.182419442,0.047434725,674,14209,0.033136852,0.061732597,0.00035287,21,59512,,,2833.904762,0.979196278,578.705,591,,,0.097330179,288,2959,0.041543104,0.153117254,2.901714404,,,,,,,,2.56462632,2.977789554,2.781496533,,,,,,,,2.527824192,2.838913694,0.104776332,,,,,-2788.999,,,,,0.876378695,42748,48778,0.77878229,0.973975101,60553,,,52695.12766,68410.87234,,,,143472,113845.617,173098.383,40125,892.8297872,79357.17021,62054,39814.85106,84293.14894,57282,53365.57447,61198.42553,,,,,,0.431638045,3921,9084,,,62.71640501,,,,,0.347100887,,60553,,,4.903374676,17,3467,,,5.911679508,24,405976,3.787724608,8.796110508,,,,,,,,,,,,,5.383152998,3.241009756,8.406460229,,,,22.21925155,64,290599,16.95562971,28.60058112,22.02347565,,,,,,,,,,,,,25.62854678,19.50963725,33.0589581,,,,18.23819077,53,290599,13.66165642,23.85600258,,,,,,,,,,,,,19.43842779,14.38065589,25.69863241,,,,30.54367746,124,405976,25.16758717,35.91976775,,,,,,,,,,,,,32.29891799,26.36977916,38.22805682,,,,6.774193548,,6200,,,32,10,0.641879944,27588,42980,,,0.667,,,,,14.44023405,,,,,0.792749468,17144,21626,0.767503816,0.817995121,0.092465252,1896,20505,0.071929864,0.113000641,0.827244983,17890,21626,0.802843772,0.851646194,59512,,,,,0.227046646,13512,59512,,,0.190902675,11361,59512,,,0.017273827,1028,59512,,,0.006334857,377,59512,,,0.004352063,259,59512,,,0.00131066,78,59512,,,0.100702379,5993,59512,,,0.85992741,51176,59512,,,0.021951964,1222,55667,0.016007279,0.02789665,0.502906977,29929,59512,,,0.90489397,53510,59134,, -01,011,01011,AL,Bullock County,2024,1,13837.89921,229,28217,11157.32671,16518.4717,0,,,,2,,,,2,16964.78195,13434.97286,20494.59103,,,,,2,7803.521697,3742.091974,14350.95424,1,,,,2,,0.307,,,0.267,0.347,5.152511842,,,4.192246944,6.202806531,5.973144781,,,4.763981477,7.269150969,0.151219512,124,820,0.126697802,0.175741222,0,,,,,,,0.187919463,0.156556407,0.219282519,0.072992701,0.029433783,0.116551619,,,,,,,,,,0.257,,,0.213,0.3,0.489,,,0.401,0.575,4.2,0.323391904,0.156,,,0.436,,,0.374,0.495,0.423481703,4386,10357,,,0.115288295,,,0.089206231,0.144998236,0.269230769,7,26,0.16570611,0.378587417,823.6,85,10320,,,37.4301676,67,1790,29.00786577,47.53498974,,,,,,,39.05053599,29.075689,51.34424301,61.13537118,33.42327632,102.5747647,,,,,,,,,,0.122146457,824,6746,0.101891138,0.142401776,0.000193798,2,10320,,,5160,0.00019604,2,10202,,,5101,0.00019604,2,10202,,,5101,2268,,,,,,,2091,,2343,0.51,,,,,,,0.47,,0.55,0.28,,,,,,,0.23,,0.34,0.733789827,5251,7156,0.681116973,0.786462681,0.32728647,866,2646,0.245341155,0.409231786,0.028107159,128,4554,,,0.39,825,,0.244638298,0.535361702,,,,,,,0.495126706,0.406309548,0.583943863,0.599415205,0.355756574,0.843073836,0.060869565,0,0.241037886,7.145819779,87865,12296,4.449430178,9.84220938,0.630464795,1370,2173,0.509144203,0.751785387,5.813953488,6,10320,,,108.1740225,55,50844,81.4914778,140.8033593,,,,,,,116.9690745,83.93902736,158.6817573,,,,120.7168725,64.27665049,206.4295284,,,,9.3,,,,,0,,,,,0.096209913,330,3430,0.059183458,0.133236367,0.097637795,0.05221701,0.143058581,0.010204082,0,0.026016232,0,0,0.009333932,0.886110356,3260,3679,0.816938159,0.955282553,,,,,,,0.859836901,0.751853837,0.967819965,,,,0.882559159,0.850630399,0.914487919,0.454,,3679,0.319124667,0.588875333,72.10011162,,,70.20400081,73.99622244,,,,,,,69.55490124,67.28013396,71.82966852,,,,78.09631955,74.62816721,81.56447189,,,,629.7157405,229,28217,544.920075,714.5114061,,,,,,,762.0366461,648.1448398,875.9284523,,,,374.430345,250.7618785,537.7444334,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.166,,,0.143,0.188,0.205,,,0.177,0.233,0.187,,,0.163,0.212,616.2,54,8763,,,0.156,1620,,,,0.323391904,3529.499239,10914,,,,,,,,,,,,,,,,,,,,,,,,,,0.46,,,0.446,0.474,0.16353544,766,4684,0.134939695,0.192131185,0.029547553,64,2166,0.018824149,0.040270957,0.00058812,6,10202,,,1700.333333,0.825,74.25,90,,,,,,,,2.110535605,,,,,,,2.125708194,,,1.96826778,,,,,,,1.943530458,,,0.009037154,,,,,-38452.98,,,,,0.671496529,27667,41202,0.54009426,0.802898799,35798,,,30563.78723,41032.21277,,,,,,,26383,20533.97872,32232.02128,65179,50088.78723,80269.21277,76146,42374.42553,109917.5745,,,,,,0.758142758,1094,1443,,,34.58410715,,,,,0.386697581,,35798,,,5.376344086,3,558,,,19.47094657,14,71902,10.64494767,32.66893984,,,,,,,22.17607806,11.07021827,39.67912931,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,27.53520573,14,50844,15.0537532,46.19939643,,,,,,,31.38194682,15.66575479,56.15097145,,,,,,,,,,55.6312759,40,71902,39.74379912,75.75400818,,,,,,,70.56024837,49.14779832,98.1322246,,,,,,,,,,6.666666667,,900,,,6,0,0.590653009,4613,7810,,,0.488,,,,,15.9680375,,,,,0.646666667,2231,3450,0.596799459,0.696533874,0.163387796,490,2999,0.094415881,0.232359711,0.610144928,2105,3450,0.51917229,0.701117565,10202,,,,,0.211037052,2153,10202,,,0.177808273,1814,10202,,,0.673397373,6870,10202,,,0.0093119,95,10202,,,0.00313664,32,10202,,,0.00754754,77,10202,,,0.093511076,954,10202,,,0.217506371,2219,10202,,,0.017612124,172,9766,0.002106498,0.03311775,0.445892962,4549,10202,,,1,10357,10357,, -01,013,01013,AL,Butler County,2024,1,12718.63319,449,52411,10883.61524,14553.65113,0,,,,2,,,,2,14501.23764,11734.42411,17268.05117,,,,,2,11991.70945,9333.812214,14649.60669,,,,,2,,0.234,,,0.204,0.267,4.627377057,,,3.703182941,5.635385688,6.080885157,,,4.922399116,7.304624761,0.131903834,203,1539,0.114997502,0.148810166,0,,,,,,,0.168878167,0.143374777,0.194381556,,,,0.085714286,0.064437167,0.106991405,,,,,,,0.211,,,0.176,0.252,0.42,,,0.34,0.504,7.2,0.069182869,0.138,,,0.365,,,0.311,0.424,0.427221668,8139,19051,,,0.128211314,,,0.10065477,0.159480212,0.283333333,17,60,0.216290068,0.352427548,1090.9,206,18884,,,34.83499214,133,3818,28.91466142,40.75532286,,,,,,,36.42544925,28.65092652,45.65961605,,,,33.41740227,25.03192745,43.71078495,,,,,,,0.119034521,1731,14542,0.10116218,0.136906861,0.000264774,5,18884,,,3776.8,0.000375335,7,18650,,,2664.285714,0.000857909,16,18650,,,1165.625,3396,,,,,,,3058,,3596,0.39,,,,,,,0.44,,0.38,0.29,,,,,,,0.23,,0.31,0.875923413,11620,13266,0.852614988,0.899231838,0.391718335,1769,4516,0.325607319,0.45782935,0.034189005,301,8804,,,0.33,1360,,0.223957447,0.436042553,,,,,,,0.482566248,0.404494286,0.56063821,0.279279279,0.072318955,0.486239604,0.135830073,0.06031366,0.211346485,4.87873345,95067,19486,4.007621284,5.749845616,0.392772792,1663,4234,0.320811426,0.464734158,9.002330015,17,18884,,,109.9228485,107,97341,89.09462852,130.7510686,,,,,,,117.4357557,87.43863369,154.4063309,,,,108.5296246,81.53079422,141.607618,,,,9.1,,,,,1,,,,,0.115037594,765,6650,0.08105516,0.149020028,0.098697318,0.065851557,0.131543079,0.011278196,0.002605702,0.019950689,0.009022556,2.37197E-05,0.018021393,0.860833108,6365,7394,0.825710227,0.895955989,,,,,,,0.859594919,0.795467448,0.92372239,,,,0.884028777,0.852197115,0.915860439,0.352,,7394,0.294870601,0.409129399,73.1898895,,,71.83740199,74.54237702,,,,,,,71.81979471,69.72599515,73.91359428,,,,73.62062356,71.71328265,75.52796447,,,,616.9263042,449,52411,556.1318175,677.7207909,,,,,,,737.3278353,636.2292616,838.426409,,,,562.1158577,480.9545844,643.277131,,,,74.23904974,14,18858,40.58717932,124.5605108,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.141,,,0.122,0.161,0.199,,,0.174,0.227,0.14,,,0.121,0.161,377.4,60,15900,,,0.138,2640,,,,0.069182869,1449.173566,20947,,,17.29026904,10,57836,8.291356069,31.79742037,,,,,,,,,,,,,,,,,,,0.409,,,0.396,0.423,0.150806529,1580,10477,0.126976741,0.174636316,0.039073468,167,4274,0.025967085,0.052179851,0.000965148,18,18650,,,1036.111111,0.8,164,205,,,,,,,,2.526134007,,,,,,,2.334512306,,2.990664659,2.118341767,,,,,,,1.891334405,,2.588469601,0.121255871,,,,,-15080.51,,,,,0.77769826,34774,44714,0.605749647,0.949646874,41852,,,36175.74468,47528.25532,53454,46632.7234,60275.2766,,,,33716,28655.74468,38776.25532,20000,3514.553192,36485.44681,53713,45394.02128,62031.97872,,,,,,0.710625214,2080,2927,,,23.85090978,,,,,0.341656313,,41852,,,4.599816007,5,1087,,,17.4554341,24,137493,11.18402599,25.97230229,,,,,,,34.36369884,21.2716712,52.52856398,,,,,,,,,,11.88373813,11,97341,5.698714351,21.85461754,11.30047976,,,,,,,,,,,,,24.151425,11.04356941,45.84692769,,,,24.6555922,24,97341,15.79730315,36.68556682,,,,,,,27.63194253,14.27782792,48.26744278,,,,20.09807862,9.637809905,36.96108217,,,,38.54741696,53,137493,28.87466048,50.42097047,,,,,,,36.00006546,22.56104936,54.50453173,,,,43.76244053,29.73445513,62.11729111,,,,16,,2000,,,32,0,0.629177719,9488,15080,,,0.558,,,,,22.23338025,,,,,0.707754873,5047,7131,0.681569251,0.733940495,0.115833583,774,6682,0.085569796,0.14609737,0.785163371,5599,7131,0.748289927,0.822036815,18650,,,,,0.223967828,4177,18650,,,0.21538874,4017,18650,,,0.441876676,8241,18650,,,0.004718499,88,18650,,,0.015013405,280,18650,,,0.000536193,10,18650,,,0.018284182,341,18650,,,0.50766756,9468,18650,,,0.000669381,12,17927,0,0.005734573,0.530080429,9886,18650,,,0.694346754,13228,19051,, -01,015,01015,AL,Calhoun County,2024,1,13197.25812,2735,318377,12445.45298,13949.06327,0,,,,2,,,,2,14644.88728,12952.37558,16337.39899,,5603.736448,3511.831798,8484.124326,1,13281.422,12387.21651,14175.62748,,,,,2,,0.208,,,0.176,0.241,4.499556522,,,3.634720275,5.521838648,5.696611047,,,4.688623297,6.871646633,0.09509434,882,9275,0.089124288,0.101064391,0,,,,,,,0.148292261,0.133808785,0.162775737,0.06405694,0.043812968,0.084300911,0.077960526,0.071221201,0.084699852,,,,0.090534979,0.054456009,0.12661395,0.208,,,0.168,0.251,0.389,,,0.321,0.46,5.9,0.15398073,0.156,,,0.341,,,0.284,0.398,0.666938621,77659,116441,,,0.135399058,,,0.107641858,0.166980345,0.104761905,11,105,0.06394022,0.154843903,545,632,115972,,,25.97987686,692,26636,24.04416767,27.91558605,,,,,,,21.55115073,18.23244283,24.86985862,39.45666235,30.18122029,50.68373345,26.22313949,23.75028317,28.69599581,,,,45.39722573,31.79565879,62.84889595,0.132170856,12105,91586,0.116681494,0.147660218,0.000586348,68,115972,,,1705.470588,0.000647736,75,115788,,,1543.84,0.001580475,183,115788,,,632.7213115,3491,,,,,,,3836,,3474,0.33,,,,,,0.35,0.38,0.37,0.32,0.34,,,,,,0.43,0.29,0.18,0.35,0.850717716,67148,78931,0.838451812,0.862983619,0.545473596,15618,28632,0.501525912,0.58942128,0.030320763,1399,46140,,,0.262,6257,,0.196468085,0.327531915,,,,,,,0.358317521,0.286354728,0.430280313,0.480541455,0.359573398,0.601509512,0.14519141,0.116796887,0.173585933,4.875970817,103590,21245,4.42520478,5.326736853,0.327191582,7991,24423,0.282097305,0.372285859,13.6239782,158,115972,,,97.0193217,555,572051,88.94756963,105.0910738,,,,,,,80.63912744,65.39290008,98.37289688,52.24660397,26.99658268,91.26430272,107.2603037,97.23797238,117.282635,,,,9.7,,,,,0,,,,,0.105676464,4710,44570,0.091257986,0.120094942,0.091768189,0.077699135,0.105837243,0.012115773,0.008020393,0.016211153,0.00762845,0.003507337,0.011749563,0.852222995,41672,48898,0.838962155,0.865483834,,,,,,,0.869379653,0.842398615,0.89636069,0.91927952,0.832668621,1,0.866199515,0.846999307,0.885399722,0.311,,48898,0.283184401,0.338815599,71.69407783,,,71.17255623,72.21559943,,,,,,,71.19673766,69.95946072,72.43401459,96.44264622,73.68667271,119.1986197,71.42968901,70.8254064,72.03397162,,,,645.4344721,2735,318377,619.9482948,670.9206495,,,,,,,698.3372957,638.0797325,758.594859,307.2114478,202.4542799,446.9765273,655.9395209,626.1612766,685.7177651,,,,65.59498243,73,111289,51.41599522,82.47584234,,,,,,,80.26853473,50.30386337,121.5275262,,,,60.14348517,43.34613397,81.29651995,,,,7.071681132,66,9333,5.469237675,8.996912294,,,,,,,12.46239794,8.346263488,17.89808227,,,,5.209181182,3.563076072,7.353809552,,,,,,,0.135,,,0.116,0.156,0.191,,,0.165,0.218,0.12,,,0.101,0.139,255.2,251,98341,,,0.156,18210,,,,0.15398073,18257.80311,118572,,,23.32048763,80,343046,18.49169633,29.02436553,,,,,,,19.28109076,10.54115174,32.35039405,,,,26.12799451,20.12173953,33.36486569,,,,0.381,,,0.366,0.396,0.165723754,11102,66991,0.144276945,0.187170562,0.042906333,1109,25847,0.02979995,0.056012716,0.000898193,104,115788,,,1113.346154,0.919712644,1120.21,1218,,,0.081869765,606,7402,0.043934288,0.119805242,2.945480411,,,,,,,2.536704979,2.638109971,3.180664485,2.786958409,,,,,,,2.385294342,2.58256557,2.999173063,0.189558926,,,,,-10277.2302,,,,,0.758625922,39994,52719,0.683994693,0.833257152,52772,,,47617.61702,57926.38298,,,,43860,27745.10638,59974.89362,38769,32695.97872,44842.02128,45458,15801.82979,75114.17021,59390,57098.76596,61681.23404,,,,,,0.511760221,8725,17049,,,46.05695224,,,,,0.227469112,,52772,,,5.509231686,37,6716,,,10.47013394,84,802282,8.351388881,12.96273826,,,,,,,23.18957777,16.49005672,31.70091621,,,,7.273860861,5.242359109,9.83214679,,,,21.95714444,128,572051,18.03052743,25.88376146,22.37562735,,,,,,,11.01625906,5.865693986,18.83813849,,,,25.23719823,20.27613925,30.19825721,,,,26.57105748,152,572051,22.34687067,30.79524429,,,,,,,28.26526116,19.57451503,39.49786938,,,,27.05884934,22.02495719,32.09274149,,,,21.6881346,174,802282,18.46555504,24.91071415,,,,,,,16.64892763,11.0630915,24.06233593,,,,24.41939004,20.38868213,28.45009794,,,,30.88495575,,11300,,,232,117,0.578563323,50983,88120,,,0.636,,,,,56.02274809,,,,,0.709149084,31694,44693,0.692517133,0.725781034,0.112961149,4844,42882,0.097758686,0.128163612,0.833419104,37248,44693,0.816334045,0.850504163,115788,,,,,0.211179051,24452,115788,,,0.186038277,21541,115788,,,0.220264622,25504,115788,,,0.005345977,619,115788,,,0.008826476,1022,115788,,,0.001131378,131,115788,,,0.043450099,5031,115788,,,0.702007117,81284,115788,,,0.005042906,553,109659,0.002711247,0.007374564,0.513585173,59467,115788,,,0.364940184,42494,116441,, -01,017,01017,AL,Chambers County,2024,1,12135.48151,767,92207,10734.19645,13536.76657,0,,,,2,,,,2,12313.3106,10265.97224,14360.64896,,,,,2,11998.44497,10055.11608,13941.77386,,,,,2,,0.22,,,0.19,0.252,4.504783494,,,3.605739489,5.504537548,5.81221167,,,4.690390737,7.012644058,0.134485349,358,2662,0.121524701,0.147445998,0,,,,,,,0.176958525,0.154250059,0.199666992,0.101769912,0.062350935,0.141188889,0.107941403,0.091053458,0.124829348,,,,,,,0.203,,,0.166,0.242,0.439,,,0.359,0.518,7.2,0.081029885,0.133,,,0.35,,,0.295,0.406,0.637524445,22168,34772,,,0.128128424,,,0.100163347,0.159152073,0.25,9,36,0.163218055,0.342798685,645.6,223,34541,,,30.47313553,190,6235,26.14005845,34.8062126,,,,,,,27.06552707,21.32455694,33.87654308,99.0990991,62.1048778,150.037227,28.6571143,22.92199242,35.39130303,,,,,,,0.126268823,3396,26895,0.107204993,0.145332653,0.000405315,14,34541,,,2467.214286,0.000205351,7,34088,,,4869.714286,0.000117343,4,34088,,,8522,3163,,,,,,,3615,,3123,0.3,,,,,,,0.28,,0.31,0.41,,,,,,,0.3,,0.44,0.834574597,20619,24706,0.810978638,0.858170557,0.518339184,4282,8261,0.446507681,0.590170687,0.025732756,410,15933,,,0.306,2097,,0.208297872,0.403702128,,,,,,,0.376603543,0.302974643,0.450232444,0.719191919,0.289419162,1,0.171437365,0.091708813,0.251165918,4.737707317,97123,20500,3.878691764,5.596722871,0.253272069,1819,7182,0.179784102,0.326760036,17.66017197,61,34541,,,94.64961783,159,167988,79.93746005,109.3617756,,,,,,,64.34813839,46.56906682,86.67652013,,,,122.1740494,99.64744052,144.7006582,,,,9.8,,,,,0,,,,,0.161266569,2190,13580,0.128522695,0.194010442,0.086940299,0.067291792,0.106588805,0.071428571,0.042686258,0.100170885,0.011045655,0.002735615,0.019355696,0.855525239,12542,14660,0.820431956,0.890618522,,,,,,,0.810689655,0.775811926,0.845567385,,,,0.852967545,0.784015926,0.921919165,0.311,,14660,0.261599868,0.360400132,72.46019745,,,71.48492257,73.43547233,,,,,,,72.03819355,70.57881228,73.49757483,,,,72.54722991,71.22425407,73.87020574,,,,581.3942609,767,92207,537.3464623,625.4420594,,,,,,,644.0246422,570.0882021,717.9610824,,,,562.8191603,504.7972132,620.8411075,,,,101.6393443,31,30500,69.05900321,144.2689361,,,,,,,,,,,,,111.474953,63.71756743,181.0283397,,,,9.370314843,25,2668,6.063973706,13.83243317,,,,,,,,,,,,,,,,,,,,,,0.137,,,0.119,0.156,0.195,,,0.169,0.221,0.134,,,0.115,0.153,359.6,106,29476,,,0.133,4630,,,,0.081029885,2772.437499,34215,,,14.90164912,15,100660,8.34033989,24.57800405,,,,,,,,,,,,,23.54432672,12.53636239,40.26151574,,,,0.434,,,0.421,0.448,0.156788336,3140,20027,0.131767059,0.181809612,0.03902034,282,7227,0.025913957,0.052126723,0.000264023,9,34088,,,3787.555556,0.865017241,250.855,290,,,0.174021649,209,1201,0.084354466,0.263688831,2.634106621,,,,,,,2.390015562,2.114966844,3.089914321,2.497681651,,,,,,,2.203305079,2.144872207,2.936481153,0.131663621,,,,,-26351.235,,,,,0.768525188,36279,47206,0.684507007,0.852543368,45563,,,39171.85106,51954.14894,,,,28274,16380.55319,40167.44681,43419,35494.40426,51343.59575,81152,68679.48936,93624.51064,53852,44738.29787,62965.70213,,,,,,0.664350243,2868,4317,,,31.21146322,,,,,0.334284397,,45563,,,5.836575876,12,2056,,,11.01909694,26,235954,7.198039964,16.1455301,,,,,,,17.094565,9.771020923,27.76050258,,,,7.651285033,3.669088576,14.07098559,,,,18.7018031,33,167988,12.61802801,26.69798679,19.6442603,,,,,,,,,,,,,30.65719485,20.02629752,44.9198936,,,,23.81122461,40,167988,17.01108796,32.42412968,,,,,,,19.45408835,10.35848272,33.26708356,,,,29.1920295,19.23773138,42.47287027,,,,27.54774236,65,235954,21.26076597,35.11185901,,,,,,,20.29979593,12.22180323,31.70064593,,,,33.66565415,24.46151584,45.19456933,,,,,,3000,,,37,-888,0.585257515,15284,26115,,,0.583,,,,,37.19702235,,,,,0.721753024,9486,13143,0.696171762,0.747334287,0.099761337,1254,12570,0.075538217,0.123984457,0.781632808,10273,13143,0.753359067,0.80990655,34088,,,,,0.207199014,7063,34088,,,0.207257686,7065,34088,,,0.392748181,13388,34088,,,0.004195025,143,34088,,,0.008771415,299,34088,,,0.000938747,32,34088,,,0.0359364,1225,34088,,,0.544502464,18561,34088,,,0.002705528,88,32526,0,0.0068561,0.523204647,17835,34088,,,0.507448522,17645,34772,, -01,019,01019,AL,Cherokee County,2024,1,12412.72881,702,70003,10839.28042,13986.17721,0,,,,2,,,,2,10547.34863,5057.863639,19396.94966,1,,,,2,12787.7719,11121.21387,14454.32992,,,,,2,,0.206,,,0.172,0.242,4.46306382,,,3.564728872,5.446453286,6.228824759,,,5.081088963,7.464023193,0.069070905,113,1636,0.056783213,0.081358596,0,,,,,,,,,,,,,0.071380921,0.058347298,0.084414543,,,,,,,0.222,,,0.176,0.269,0.378,,,0.301,0.46,7.2,0.050086523,0.147,,,0.328,,,0.272,0.388,0.382083217,9541,24971,,,0.143572902,,,0.112650871,0.179309173,0.111111111,4,36,0.043224685,0.205492743,276,69,24996,,,29.60203882,151,5101,24.8804385,34.32363914,,,,,,,43.1372549,21.53396222,77.18446476,,,,30.04096495,24.91609341,35.1658365,,,,,,,0.129840786,2471,19031,0.111968446,0.147713127,0.00044007,11,24996,,,2272.363636,0.00015809,4,25302,,,6325.5,0.000553316,14,25302,,,1807.285714,4153,,,,,,,,,4212,0.35,,,,,,,0.52,,0.35,0.43,,,,,,,0.38,,0.43,0.819251741,15175,18523,0.792415763,0.846087719,0.534362644,2838,5311,0.449928392,0.618796895,0.023426813,274,11696,,,0.227,1054,,0.147170213,0.306829787,,,,,,,0.516483517,0.079829785,0.953137248,0.508982036,0.417370899,0.600593173,0.133565911,0.08066175,0.186470072,4.520771583,96089,21255,3.955512487,5.08603068,0.292916401,1377,4701,0.209378301,0.376454501,9.201472236,23,24996,,,103.5748792,134,129375,86.03776593,121.1119925,,,,,,,,,,,,,109.805644,90.92968356,128.6816045,,,,9.5,,,,,0,,,,,0.074296262,805,10835,0.052065285,0.096527239,0.06088993,0.041075446,0.080704413,0.013382557,0.004435799,0.022329314,0.004153207,0,0.009121312,0.853755333,8605,10079,0.827030852,0.880479813,,,,,,,,,,,,,0.87432286,0.821012098,0.927633623,0.462,,10079,0.396241012,0.527758988,72.71162974,,,71.60114784,73.82211164,,,,,,,,,,,,,72.29057908,71.13810189,73.44305627,,,,626.9580811,702,70003,575.5379924,678.3781698,,,,,,,609.0844386,390.2518926,906.2693643,,,,644.7821334,590.4446255,699.1196413,,,,88.17523668,19,21548,53.08725248,137.6965545,,,,,,,,,,,,,89.90903321,52.3753251,143.9530718,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.138,,,0.117,0.16,0.201,,,0.174,0.23,0.111,,,0.095,0.13,133.3,29,21763,,,0.147,3660,,,,0.050086523,1301.698634,25989,,,20.64889141,16,77486,11.80262558,33.532506,,,,,,,,,,,,,22.59121202,12.91282963,36.68671298,,,,0.382,,,0.365,0.398,0.158089003,2270,14359,0.135450706,0.180727301,0.044602851,219,4910,0.030304979,0.058900724,0.000988064,25,25302,,,1012.08,0.92,235.52,256,,,,,,,,2.784754319,,,,,,,,,2.789467063,2.646747671,,,,,,,,,2.6638752,0.057141787,,,,,-1664.026,,,,,0.878338894,42386,48257,0.636184231,1.120493557,52613,,,46834.2766,58391.7234,28558,27360.55319,29755.44681,,,,56518,15585.57447,97450.42553,40883,38659.68085,43106.31915,46777,42273.17021,51280.82979,,,,,,0.535301669,2085,3895,,,47.52591275,,,,,0.220021668,,52613,,,5.509641873,6,1089,,,8.289170475,15,180959,4.639385791,13.67172612,,,,,,,,,,,,,7.850620803,4.18012494,13.42480067,,,,23.14907864,32,129375,15.12174673,33.91876375,24.73429952,,,,,,,,,,,,,25.18457561,16.45140093,36.90123842,,,,25.50724638,33,129375,17.55801474,35.82165741,,,,,,,,,,,,,27.0290816,18.48787181,38.15699849,,,,32.05145917,58,180959,24.33801672,41.43394346,,,,,,,,,,,,,34.42195275,26.07085086,44.59763238,,,,23.47826087,,2300,,,49,5,0.595113691,12301,20670,,,0.457,,,,,4.048076586,,,,,0.797439232,7972,9997,0.770071195,0.824807268,0.088241663,815,9236,0.06546135,0.111021976,0.77823347,7780,9997,0.750440379,0.806026561,25302,,,,,0.186388428,4716,25302,,,0.244328512,6182,25302,,,0.039878271,1009,25302,,,0.008102126,205,25302,,,0.004387005,111,25302,,,0.000711406,18,25302,,,0.020828393,527,25302,,,0.910362817,23034,25302,,,0.00949076,227,23918,0.001784994,0.017196527,0.496205834,12555,25302,,,1,24971,24971,, -01,021,01021,AL,Chilton County,2024,1,10953.15022,950,124868,9897.114211,12009.18623,0,,,,2,,,,2,11771.64474,8649.361783,15653.792,,7385.78707,4446.726288,11533.8214,1,11138.06066,9939.573768,12336.54754,,,,,2,,0.206,,,0.176,0.238,4.426500394,,,3.53383451,5.36202677,5.938820536,,,4.831055629,7.081564082,0.088280847,342,3874,0.079346968,0.097214725,0,,,,,,,0.153179191,0.115229026,0.191129356,0.071028037,0.049261197,0.092794878,0.082991803,0.07299929,0.092984317,,,,,,,0.217,,,0.176,0.258,0.423,,,0.347,0.498,7.1,0.043695515,0.154,,,0.341,,,0.288,0.398,0.313035944,14091,45014,,,0.151319513,,,0.119501604,0.18869825,0.229508197,14,61,0.16403564,0.299776734,331.3,150,45274,,,38.82084285,374,9634,34.88638198,42.75530372,,,,,,,28.3203125,18.96655775,40.67269281,61.40350877,47.1841421,78.56176149,36.8707483,32.48086093,41.26063567,,,,65.47619048,32.68547838,117.1549912,0.145032202,5382,37109,0.125968373,0.164096032,0.000220877,10,45274,,,4527.4,0.000261529,12,45884,,,3823.666667,0.000784587,36,45884,,,1274.555556,3581,,,,,,,3904,,3447,0.33,,,,,,,0.27,,0.33,0.37,,,,,,,0.26,,0.37,0.821621092,25149,30609,0.79580387,0.847438314,0.456641738,5129,11232,0.392999448,0.520284027,0.022698115,460,20266,,,0.221,2349,,0.150702128,0.291297872,,,,,,,0.21743487,0.080698612,0.354171128,0.298245614,0.145528963,0.450962265,0.141678861,0.100708757,0.182648966,4.086108668,106864,26153,3.40146904,4.770748297,0.194818556,2083,10692,0.139984513,0.249652599,15.46141273,70,45274,,,93.55925494,208,222319,80.84440736,106.2741025,,,,,,,81.326526,48.19925352,128.5309731,,,,101.1571251,86.37910351,115.9351467,,,,9.9,,,,,0,,,,,0.127187865,2180,17140,0.096188112,0.158187617,0.097373857,0.070875301,0.123872412,0.026546091,0.015005389,0.038086793,0.00495916,0.001168291,0.008750029,0.823256316,15250,18524,0.79686467,0.849647963,,,,,,,,,,,,,0.794306481,0.753720223,0.834892739,0.51,,18524,0.455308172,0.564691828,73.48785539,,,72.70001188,74.27569889,,,,,,,72.06289582,69.65828005,74.46751159,91.99441972,68.8954641,115.0933754,73.2671374,72.39597609,74.13829871,,,,574.1826886,950,124868,536.1195295,612.2458476,,,,,,,637.0691843,512.9283674,782.1797874,258.7394962,153.3454235,408.9199534,586.11567,543.8643755,628.3669645,,,,58.32289282,27,46294,38.43515387,84.85674698,,,,,,,,,,,,,65.59918896,41.11066247,99.31796042,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.136,,,0.116,0.156,0.197,,,0.171,0.226,0.115,,,0.098,0.132,169.4,64,37787,,,0.154,6890,,,,0.043695515,1907.003366,43643,,,20.13437833,27,134099,13.26868219,29.29446338,,,,,,,,,,,,,24.24875492,15.84009179,35.53004429,,,,0.408,,,0.392,0.423,0.182349173,4839,26537,0.157327896,0.207370449,0.054362476,605,11129,0.037681625,0.071043328,0.0003705,17,45884,,,2699.058824,0.89,494.84,556,,,,,,,,2.822341241,,,,,,,2.44112483,2.577644425,2.955913358,2.720820186,,,,,,,2.148215505,2.687054091,2.814001008,0.071198064,,,,,-3359.531,,,,,0.745321881,40348,54135,0.644247951,0.84639581,61823,,,56535.17021,67110.82979,88635,88475.34043,88794.65957,,,,33072,26848.85106,39295.14894,62073,40330.70213,83815.29787,64409,59731.21277,69086.78723,,,,,,0.549915836,4247,7723,,,41.88167244,,,,,0.231289326,,61823,,,4.05904059,11,2710,,,5.157912722,16,310203,2.948192781,8.376127116,,,,,,,,,,,,,,,,,,,16.19326166,36,222319,11.21430444,22.62846008,16.19294797,,,,,,,,,,,,,18.21083447,12.28677355,25.99709856,,,,16.19294797,36,222319,11.34134168,22.41786554,,,,,,,,,,,,,16.29753682,10.91471619,23.40598144,,,,25.78956361,80,310203,20.44952002,32.09734431,,,,,,,,,,,,,26.54760468,20.53191554,33.77506232,,,,8.367346939,,4900,,,41,0,0.595069337,19310,32450,,,0.606,,,,,17.53130088,,,,,0.750103361,12700,16931,0.719239447,0.780967275,0.085689212,1367,15953,0.062320169,0.109058255,0.811174768,13734,16931,0.776932273,0.845417263,45884,,,,,0.235703077,10815,45884,,,0.175398832,8048,45884,,,0.097245227,4462,45884,,,0.006320286,290,45884,,,0.004729317,217,45884,,,0.001721733,79,45884,,,0.08473542,3888,45884,,,0.796726528,36557,45884,,,0.021399449,908,42431,0.010883112,0.031915786,0.508347136,23325,45884,,,0.855444973,38507,45014,, -01,023,01023,AL,Choctaw County,2024,1,12336.87291,298,33564,9974.933536,14698.81229,0,,,,2,,,,2,16278.72693,12013.32353,20544.13034,,,,,2,9765.215663,6949.382044,12581.04928,,,,,2,,0.241,,,0.206,0.275,4.70800167,,,3.668543521,5.662560792,6.32286417,,,5.018448322,7.501585975,0.111794872,109,975,0.092015097,0.131574647,0,,,,,,,0.158291457,0.122430313,0.194152601,,,,0.081669692,0.058802639,0.104536744,,,,,,,0.223,,,0.182,0.264,0.447,,,0.359,0.527,6.2,0.130442755,0.157,,,0.371,,,0.311,0.425,0.251638374,3187,12665,,,0.11891855,,,0.09056143,0.148385969,0.428571429,9,21,0.316583454,0.532224752,367,46,12533,,,30.02879474,73,2431,23.53778154,37.75670102,,,,,,,31.0786106,21.5228413,43.42924323,,,,29.64118565,20.97586712,40.68484315,,,,,,,0.127406932,1191,9348,0.109534592,0.145279272,0.000398947,5,12533,,,2506.6,0.000482354,6,12439,,,2073.166667,8.03923E-05,1,12439,,,12439,2712,,,,,,,3932,,2233,0.44,,,,,,,0.41,,0.46,0.34,,,,,,,0.26,,0.37,0.823906319,7458,9052,0.784354768,0.86345787,0.507698541,1253,2468,0.393439767,0.621957315,0.038389949,165,4298,,,0.312,758,,0.196425532,0.427574468,,,,,,,0.47260274,0.354872088,0.590333392,,,,0.198501873,0.09133457,0.305669175,6.180199089,103061,16676,4.47877961,7.881618567,0.385985748,975,2526,0.281958673,0.490012823,21.54312615,27,12533,,,108.9599848,69,63326,84.77737194,137.8958344,,,,,,,118.2799802,80.36550795,167.8889904,,,,106.4127695,75.30400909,146.0598402,,,,9.3,,,,,0,,,,,0.095684803,510,5330,0.064006974,0.127362632,0.059980898,0.033988501,0.085973294,0.009193246,0,0.020378179,0.026266417,0.006049852,0.046482981,0.874375284,3849,4402,0.822569788,0.92618078,,,,,,,0.869642857,0.81714432,0.922141394,,,,0.919650655,0.840849554,0.998451756,0.514,,4402,0.425428172,0.602571828,73.84020172,,,72.09073983,75.5896636,,,,,,,70.85762291,68.11813367,73.59711215,,,,75.77925239,73.48672932,78.07177545,,,,585.1776721,298,33564,511.3783732,658.976971,,,,,,,698.1906271,568.0104848,828.3707694,,,,511.0153462,422.3026206,599.7280719,,,,90.64539521,10,11032,43.46799036,166.7001092,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.146,,,0.124,0.166,0.205,,,0.176,0.232,0.144,,,0.122,0.164,278.7,30,10764,,,0.157,2010,,,,0.130442755,1807.806134,13859,,,,,,,,,,,,,,,,,,,,,,,,,,0.431,,,0.417,0.445,0.155182397,1072,6908,0.13135261,0.179012185,0.051321929,132,2572,0.034641077,0.06800278,0.000482354,6,12439,,,2073.166667,0.925,87.875,95,,,,,,,,2.549412685,,,,,,,2.487373601,,2.6322231,2.128404244,,,,,,,2.180820508,,2.094062474,0.140588424,,,,,-22098.77,,,,,0.560308113,36443,65041,0.426673411,0.693942816,44458,,,38014.42553,50901.57447,,,,,,,32434,24316.38298,40551.61702,,,,51022,45921.23404,56122.76596,,,,,,0.757263355,808,1067,,,34.50530288,,,,,0.299068784,,44458,,,5.714285714,4,700,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,43.58077529,39,89489,30.99019152,59.57635449,,,,,,,56.56108597,35.01220369,86.45962814,,,,35.65132999,21.12923762,56.3444716,,,,15.45454546,,1100,,,17,0,0.732842415,7464,10185,,,0.512,,,,,1.620594824,,,,,0.819816373,4286,5228,0.784203453,0.855429294,0.106229373,515,4848,0.070001442,0.142457304,0.69338179,3625,5228,0.639564072,0.747199509,12439,,,,,0.197925878,2462,12439,,,0.245035775,3048,12439,,,0.407749819,5072,12439,,,0.002331377,29,12439,,,0.002813731,35,12439,,,0,0,12439,,,0.012460809,155,12439,,,0.564997186,7028,12439,,,0.003171159,38,11983,0,0.01130634,0.524399067,6523,12439,,,1,12665,12665,, -01,025,01025,AL,Clarke County,2024,1,14884.57609,593,63205,13026.29917,16742.85302,0,,,,2,,,,2,17168.02563,14404.54024,19931.51102,,,,,2,13651.43188,10997.21493,16305.64884,,,,,2,,0.237,,,0.204,0.272,4.635448032,,,3.73154716,5.63837378,5.831929322,,,4.732368183,7.004570512,0.130761523,261,1996,0.115970941,0.145552105,0,,,,,,,0.174219537,0.150627677,0.197811396,,,,0.088235294,0.070217561,0.106253027,,,,,,,0.215,,,0.177,0.256,0.434,,,0.355,0.513,5.5,0.183503436,0.163,,,0.383,,,0.327,0.442,0.530125179,12239,23087,,,0.122903427,,,0.095568574,0.153114267,0.341463415,14,41,0.260140378,0.422314709,725,165,22760,,,30.03400076,159,5294,25.36557242,34.70242909,,,,,,,37.72835584,30.52449288,46.12095855,,,,22.02989772,16.64114799,28.60765461,,,,,,,0.122732426,2165,17640,0.106051575,0.139413277,0.000395431,9,22760,,,2528.888889,0.000355319,8,22515,,,2814.375,0.000932712,21,22515,,,1072.142857,3623,,,,,,,5508,,3076,0.34,,,,,,,0.36,,0.33,0.26,,,,,,,0.22,,0.27,0.813924446,13035,16015,0.785419087,0.842429804,0.401471158,2074,5166,0.327952982,0.474989333,0.050038991,385,7694,,,0.33,1587,,0.220382979,0.439617021,,,,,,,0.409648406,0.314124925,0.505171886,,,,0.185007208,0.127556851,0.242457565,5.745419804,102234,17794,4.299292472,7.191547137,0.414037855,2100,5072,0.32803476,0.50004095,16.69595782,38,22760,,,95.17658656,112,117676,77.54963605,112.8035371,,,,,,,95.23083956,70.68216467,125.5499898,,,,101.0413781,77.46784519,129.5304866,,,,9.5,,,,,1,,,,,0.121715818,1135,9325,0.093306102,0.150125534,0.106773823,0.07722364,0.136324006,0.018766756,0.007220283,0.030313229,0.007506702,0.000380941,0.014632464,0.904600988,6960,7694,0.870960424,0.938241552,,,,,,,0.872555866,0.840938536,0.904173196,,,,0.915791599,0.865476098,0.9661071,0.364,,7694,0.298133158,0.429866842,70.97678415,,,69.75668384,72.19688447,,,,,,,68.40837962,66.7589956,70.05776363,,,,72.46978229,70.65873992,74.28082465,,,,689.6519307,593,63205,630.4229841,748.8808774,,,,,,,866.3024218,767.995416,964.6094276,,,,588.6254471,510.9873154,666.2635787,,,,121.4192562,27,22237,80.01605492,176.658643,,,,,,,128.8422603,70.43926262,216.1754199,,,,107.7058651,53.76637978,192.715544,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.144,,,0.125,0.165,0.197,,,0.171,0.225,0.143,,,0.122,0.165,201.8,39,19323,,,0.163,3810,,,,0.183503436,4740.444249,25833,,,,,,,,,,,,,,,,,,,,,,,,,,0.409,,,0.395,0.422,0.151838947,1961,12915,0.129200649,0.174477245,0.045045045,225,4995,0.030747173,0.059342917,0.000888297,20,22515,,,1125.75,0.925,244.2,264,,,0.225860621,269,1191,0.115958623,0.33576262,3.008578223,,,,,,,2.812642746,,3.331679066,2.777250911,,,,,,,2.597129164,,3.024510093,0.027992823,,,,,-14395.92,,,,,0.653540626,34554,52872,0.544050962,0.763030291,44906,,,38299.19149,51512.80851,,,,,,,34358,22135.70213,46580.29787,,,,58722,51088.12766,66355.87234,,,,,,0.695026962,2320,3338,,,18.59735522,,,,,0.332383201,,44906,,,6.968641115,10,1435,,,10.79505586,18,166743,6.39783426,17.0608423,,,,,,,17.54978063,9.344519056,30.01065936,,,,,,,,,,17.68116555,19,117676,10.47897928,27.94386437,16.14602808,,,,,,,,,,,,,25.46060958,13.5567023,43.53841779,,,,22.09456474,26,117676,14.43290324,32.37365655,,,,,,,20.9507847,10.45855624,37.48674104,,,,24.4454947,13.68195781,40.31912595,,,,28.18709031,47,166743,20.71081375,37.48285466,,,,,,,32.39959501,20.75903187,48.20802915,,,,26.33356614,16.69322201,39.51327887,,,,14.34782609,,2300,,,33,0,0.702970297,13135,18685,,,0.52,,,,,13.15915152,,,,,0.722520762,5916,8188,0.688335736,0.756705788,0.095418243,681,7137,0.065249596,0.12558689,0.707865169,5796,8188,0.667521117,0.748209221,22515,,,,,0.215767266,4858,22515,,,0.210037753,4729,22515,,,0.448678659,10102,22515,,,0.006351321,143,22515,,,0.004619143,104,22515,,,0.000310904,7,22515,,,0.015944926,359,22515,,,0.514856762,11592,22515,,,0.00097056,21,21637,0,0.006174334,0.524317122,11805,22515,,,1,23087,23087,, -01,027,01027,AL,Clay County,2024,1,13779.88195,322,36723,11383.57247,16176.19142,0,,,,2,,,,2,15740.40983,9864.431038,23831.16964,1,,,,2,13332.70859,10732.12159,15933.29558,,,,,2,,0.213,,,0.181,0.249,4.502996591,,,3.609952049,5.471926635,6.115181631,,,4.946300482,7.352043578,0.094196004,99,1051,0.076536111,0.111855897,0,,,,,,,0.134146342,0.081985353,0.18630733,,,,0.082825822,0.063972266,0.101679378,,,,,,,0.212,,,0.17,0.256,0.416,,,0.331,0.5,7.4,0.029746178,0.15,,,0.351,,,0.293,0.413,0.64393088,9167,14236,,,0.136978811,,,0.106655541,0.171298539,0.476190476,10,21,0.368895038,0.572895246,422.8,60,14190,,,33.43823761,85,2542,26.70927656,41.34689863,,,,,,,28.87139108,14.4124944,51.65889374,,,,31.96347032,24.56160822,40.89516351,,,,,,,0.132453921,1466,11068,0.113390091,0.151517751,0.000281889,4,14190,,,3547.5,0.000140865,2,14198,,,7099,0.000140865,2,14198,,,7099,2559,,,,,,,1040,,2530,0.37,,,,,,,0.55,,0.37,0.39,,,,,,,0.3,,0.4,0.83338307,8378,10053,0.802667945,0.864098195,0.471400395,1434,3042,0.377793366,0.565007423,0.022675367,139,6130,,,0.252,735,,0.160255319,0.343744681,,,,,,,0.628571429,0.472450868,0.784691989,0.092198582,0,0.398017697,0.133873273,0.051112546,0.216634,5.543084078,106078,19137,3.583338564,7.502829592,0.203092784,591,2910,0.135565953,0.270619614,11.27554616,16,14190,,,113.1305914,76,67179,89.13403873,141.5998049,,,,,,,,,,,,,122.0865705,94.42174476,155.3240519,,,,7.6,,,,,1,,,,,0.078564501,405,5155,0.048706319,0.108422682,0.059980334,0.034259686,0.085700983,0.011639185,0,0.026778544,0.008535403,0,0.02148669,0.833655332,4315,5176,0.779482845,0.88782782,,,,,,,,,,,,,0.713414634,0.670005064,0.756824205,0.398,,5176,0.311143776,0.484856224,71.80561071,,,70.22560953,73.3856119,,,,,,,70.42076308,65.85920238,74.98232379,,,,71.99425345,70.30919553,73.67931137,,,,624.9212028,322,36723,551.4408118,698.4015939,,,,,,,731.4957489,529.3871005,985.3199732,,,,623.8088099,542.5819975,705.0356223,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.14,,,0.119,0.162,0.2,,,0.173,0.227,0.119,,,0.103,0.139,172.7,21,12158,,,0.15,2130,,,,0.029746178,414.4237569,13932,,,,,,,,,,,,,,,,,,,,,,,,,,0.387,,,0.371,0.402,0.160731707,1318,8200,0.135710431,0.185752984,0.053713528,162,3016,0.035841187,0.071585868,0.000352162,5,14198,,,2839.6,0.825,89.925,109,,,,,,,,2.783569439,,,,,,,2.073237712,,2.984763085,2.529710142,,,,,,,2.03787649,,2.648678687,0.015845209,,,,,-6581.203,,,,,0.843955831,43565,51620,0.624132814,1.063778848,49599,,,43138.74468,56059.25532,,,,,,,33075,24616.61702,41533.38298,96250,10506.85106,181993.1489,51026,46400.6383,55651.3617,,,,,,0.531215772,970,1826,,,26.45433696,,,,,0.25000504,,49599,,,8.064516129,6,744,,,,,,,,,,,,,,,,,,,,,,,,,,29.34320915,18,67179,17.09350066,46.98132037,26.79408744,,,,,,,,,,,,,33.34264625,18.661626,54.9936244,,,,23.81696661,16,67179,13.61345428,38.67726164,,,,,,,,,,,,,24.04735479,12.80420365,41.12170906,,,,38.20601533,36,94226,26.75902343,52.89322956,,,,,,,,,,,,,36.99006553,24.57962991,53.4609437,,,,6.666666667,,1200,,,8,0,0.664111164,6930,10435,,,0.553,,,,,2.560766766,,,,,0.783409298,4297,5485,0.749657341,0.817161255,0.084810368,445,5247,0.052075369,0.117545367,0.746763902,4096,5485,0.694646436,0.798881367,14198,,,,,0.208691365,2963,14198,,,0.214114664,3040,14198,,,0.135582476,1925,14198,,,0.006198056,88,14198,,,0.002746866,39,14198,,,0,0,14198,,,0.03183547,452,14198,,,0.80349345,11408,14198,,,0.000445633,6,13464,0,0.00754783,0.509226652,7230,14198,,,1,14236,14236,, -01,029,01029,AL,Cleburne County,2024,1,12866.79067,354,41222,10748.33619,14985.24515,0,,,,2,,,,2,,,,2,,,,2,12915.56926,10703.80036,15127.33815,,,,,2,,0.198,,,0.164,0.233,4.430707102,,,3.484468197,5.458852829,6.065322307,,,4.903229175,7.277325968,0.079012346,96,1215,0.063843857,0.094180834,0,,,,,,,,,,,,,0.07733813,0.061637329,0.09303893,,,,,,,0.207,,,0.162,0.255,0.361,,,0.284,0.446,7.3,0.020248519,0.155,,,0.322,,,0.265,0.383,0.424282678,6388,15056,,,0.145689917,,,0.114740437,0.183374209,0.24137931,7,29,0.144907761,0.346292388,251.6,38,15103,,,30.44982699,88,2890,24.42165165,37.51503849,,,,,,,,,,,,,31.64801235,25.17060342,39.28352803,,,,,,,0.122548614,1481,12085,0.104676274,0.140420954,0.000264848,4,15103,,,3775.75,,0,15346,,,,0.000521309,8,15346,,,1918.25,2478,,,,,,,,,2353,0.3,,,,,,,,,0.3,0.36,,,,,,,0.28,,0.36,0.825493885,8775,10630,0.799502166,0.851485604,0.432364449,1547,3578,0.339454,0.525274899,0.024100309,148,6141,,,0.217,746,,0.14312766,0.29087234,,,,,,,,,,0.483660131,0.277043099,0.690277163,0.167857143,0.106472354,0.229241932,4.357547543,99217,22769,3.559851666,5.155243419,0.232443413,801,3446,0.130443911,0.334442915,8.607561412,13,15103,,,118.8774761,89,74867,95.46837477,146.2889636,,,,,,,,,,,,,118.2203512,94.02415367,146.7426273,,,,9.4,,,,,0,,,,,0.089974293,525,5835,0.063909628,0.116038958,0.063596103,0.03976821,0.087423996,0.014395887,0.003860194,0.02493158,0.017137961,0.002824012,0.031451909,0.85177901,4764,5593,0.80496757,0.898590449,,,,,,,,,,,,,0.799312419,0.720752013,0.877872826,0.57,,5593,0.476743596,0.663256404,72.03379426,,,70.56360221,73.50398632,,,,,,,,,,,,,71.95634844,70.4333296,73.47936727,,,,621.087414,354,41222,552.488604,689.686224,,,,,,,,,,,,,621.252067,550.1696541,692.3344798,,,,87.31278125,13,14889,46.49037874,149.3075151,,,,,,,,,,,,,90.09685412,46.55435925,157.3810725,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.136,,,0.115,0.158,0.199,,,0.171,0.23,0.11,,,0.093,0.128,86.9,11,12652,,,0.155,2330,,,,0.020248519,303.1608309,14972,,,,,,,,,,,,,,,,,,,,,,,,,,0.369,,,0.35,0.387,0.151188406,1304,8625,0.127358619,0.175018193,0.053665284,194,3615,0.035792943,0.071537624,0.000130327,2,15346,,,7673,0.975,164.775,169,,,,,,,,3.122187396,,,,,,,,,3.186303692,3.075677455,,,,,,,,,3.182095533,0.109138092,,,,,-223.2246,,,,,0.792134289,41008,51769,0.698222177,0.886046401,49248,,,43055.82979,55440.17021,,,,,,,40240,23932.08511,56547.91489,50913,22572.23404,79253.76596,53798,48486.34043,59109.65957,,,,,,0.458879619,1155,2517,,,45.94111787,,,,,0.251786875,,49248,,,8.092485549,7,865,,,9.541165358,10,104809,4.575359651,17.5465428,,,,,,,,,,,,,,,,,,,19.06098459,15,74867,10.42081764,31.98109329,20.03552967,,,,,,,,,,,,,20.39398596,11.1495819,34.21764309,,,,28.04974154,21,74867,17.36323211,42.87700954,,,,,,,,,,,,,30.2759436,18.74128627,46.27999587,,,,34.34819529,36,104809,24.05705371,47.55238051,,,,,,,,,,,,,35.03565393,24.26320884,48.95881466,,,,,,1600,,,5,-888,0.631454784,7227,11445,,,0.567,,,,,10.91429,,,,,0.780420066,4496,5761,0.742709294,0.818130838,0.066381555,357,5378,0.041604337,0.091158772,0.738587051,4255,5761,0.689743981,0.787430121,15346,,,,,0.228984752,3514,15346,,,0.19399192,2977,15346,,,0.028671967,440,15346,,,0.004431122,68,15346,,,0.002280725,35,15346,,,0.000847126,13,15346,,,0.026130588,401,15346,,,0.922716017,14160,15346,,,0.003721126,53,14243,0,0.010250433,0.501368435,7694,15346,,,1,15056,15056,, -01,031,01031,AL,Coffee County,2024,1,10533.99606,994,148426,9557.128996,11510.86312,0,,,,2,,,,2,15195.47926,12330.27706,18060.68146,,5447.127168,3279.526386,8506.363821,1,10404.00671,9211.101407,11596.91201,,,,,2,,0.194,,,0.164,0.226,4.317594649,,,3.484366399,5.22532057,5.803434183,,,4.775755666,6.857818814,0.083459788,385,4613,0.075478394,0.091441181,0,,,,0.134146342,0.060379564,0.207913119,0.14135514,0.118016165,0.164694115,0.065868264,0.047057345,0.084679182,0.068411867,0.059167622,0.077656113,,,,0.103174603,0.050060341,0.156288865,0.185,,,0.148,0.225,0.395,,,0.326,0.467,6.8,0.08991895,0.146,,,0.306,,,0.255,0.357,0.538576639,28795,53465,,,0.146150782,,,0.116189599,0.178737662,0.274509804,14,51,0.20156323,0.35030076,577.8,313,54174,,,27.87761901,318,11407,24.81355248,30.94168553,,,,,,,32.36714976,25.08409649,41.10513605,71.20253165,57.25524378,87.51999983,19.17584659,16.01064729,22.3410459,,,,45.87155963,28.01954033,70.84490345,0.124988768,5564,44516,0.109499406,0.14047813,0.000516853,28,54174,,,1934.785714,0.000346684,19,54805,,,2884.473684,0.001058298,58,54805,,,944.9137931,3752,,,,,,,4572,,3712,0.41,,,,,,0.45,0.43,0.33,0.41,0.34,,,,,,0.3,0.3,0.19,0.35,0.866205274,31665,36556,0.850688728,0.88172182,0.624215901,8558,13710,0.572981086,0.675450716,0.025373895,548,21597,,,0.226,2886,,0.165234043,0.286765957,0.471910112,0.084094856,0.859725369,,,,0.602387512,0.502856998,0.701918025,0.479024943,0.371241269,0.586808618,0.091197462,0.070555745,0.11183918,5.039742479,122118,24231,4.196184692,5.883300266,0.321451204,4058,12624,0.268918366,0.373984043,12.36755639,67,54174,,,73.23672158,193,263529,62.90420021,83.56924294,,,,,,,84.65325581,59.90568212,116.1932075,,,,81.35452555,68.29147361,94.4175775,,,,9.1,,,,,0,,,,,0.119298246,2380,19950,0.097938533,0.140657958,0.09616654,0.075448989,0.116884091,0.022305764,0.012732586,0.031878943,0.006015038,0.001990268,0.010039808,0.856058935,19406,22669,0.829797303,0.882320567,,,,,,,0.842995169,0.793661609,0.89232873,0.796640672,0.690525463,0.90275588,0.829410872,0.792174775,0.866646968,0.316,,22669,0.286863273,0.345136727,74.19940511,,,73.44284535,74.95596487,,,,,,,70.7690293,68.78874178,72.74931681,84.54018904,77.42393113,91.65644696,74.02034284,73.12780772,74.91287796,,,,523.2077305,994,148426,489.5969264,556.8185345,,,,,,,689.7676351,594.3204449,785.2148253,246.5830702,154.5322973,373.3297317,524.7350029,485.1691243,564.3008816,,,,63.95146997,35,54729,44.54454202,88.94101367,,,,,,,,,,,,,74.07187935,47.9354148,109.3447059,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.127,,,0.109,0.147,0.188,,,0.162,0.214,0.113,,,0.097,0.132,179.6,81,45111,,,0.146,7770,,,,0.08991895,4491.271716,49948,,,12.5198753,20,159746,7.647465092,19.33593198,,,,,,,,,,,,,14.48645516,8.280260805,23.52509561,,,,0.399,,,0.384,0.414,0.154356061,4890,31680,0.134100742,0.17461138,0.055122784,743,13479,0.039633422,0.070612145,0.000802847,44,54805,,,1245.568182,0.920036232,634.825,690,,,0.12138522,340,2801,0.055455668,0.187314772,3.020489127,,,,,,,2.49242194,2.566151825,3.321048733,2.87277299,,,,,,,2.281459131,2.629843822,3.133080572,0.076404482,,,,,-6093.076567,,,,,0.658448115,39391,59824,0.564146075,0.752750154,62429,,,56389.34043,68468.65957,,,,,,,37083,24382.91489,49783.08511,52742,14255.70213,91228.29787,70622,66837.82979,74406.17021,,,,,,0.463012878,4638,10017,,,42.18643936,,,,,0.167822647,,62429,,,4.98132005,16,3212,,,7.104485116,26,365966,4.640885551,10.40971677,,,,,,,22.3488658,12.2183329,37.49759929,,,,3.912011048,1.875961356,7.1943276,,,,14.97281065,42,263529,10.69679544,20.38871843,15.9375249,,,,,,,,,,,,,16.41287354,11.15175127,23.29676387,,,,22.76789272,60,263529,17.37430072,29.30679106,,,,,,,28.96032436,15.42015302,49.52303664,,,,24.0241552,17.45598794,32.25130701,,,,21.04020592,77,365966,16.60460148,26.29664737,,,,,,,19.15617068,9.898272926,33.46197508,,,,22.29846297,16.8886381,28.89024517,,,,20.34482759,,5800,,,72,46,0.572107358,22275,38935,,,0.587,,,,,36.98843751,,,,,0.694642243,14145,20363,0.672613479,0.716671008,0.108490566,2116,19504,0.08742442,0.129556713,0.848647056,17281,20363,0.832835152,0.86445896,54805,,,,,0.237076909,12993,54805,,,0.173980476,9535,54805,,,0.163725937,8973,54805,,,0.01437825,788,54805,,,0.018337743,1005,54805,,,0.00434267,238,54805,,,0.090539184,4962,54805,,,0.686415473,37619,54805,,,0.016649799,839,50391,0.011081059,0.022218538,0.502399416,27534,54805,,,0.475301599,25412,53465,, -01,033,01033,AL,Colbert County,2024,1,11291.07048,1238,153622,10283.60551,12298.53546,0,,,,2,,,,2,15243.12569,12188.16801,18298.08337,,,,,2,10899.41311,9786.861224,12011.96499,,,,,2,,0.187,,,0.158,0.219,4.235057537,,,3.343920371,5.243864748,5.848336339,,,4.695717282,7.072649925,0.103432598,455,4399,0.094433494,0.112431703,0,,,,,,,0.156558533,0.129810072,0.183306994,0.076142132,0.03910494,0.113179324,0.092647938,0.082823699,0.102472176,,,,0.111111111,0.046182322,0.1760399,0.193,,,0.153,0.237,0.393,,,0.313,0.48,6.8,0.088293033,0.149,,,0.313,,,0.258,0.373,0.688625998,39408,57227,,,0.146715057,,,0.114453424,0.183668887,0.310344828,18,58,0.242222913,0.379412489,516.8,297,57474,,,26.87725132,291,10827,23.78912946,29.96537317,,,,,,,23.19160685,16.71447031,31.34831517,43.04635762,28.11930996,63.07288756,26.48922687,22.89792252,30.08053122,,,,37.13527852,20.30220232,62.30668733,0.107281713,4884,45525,0.092983841,0.121579586,0.000661169,38,57474,,,1512.473684,0.000499716,29,58033,,,2001.137931,0.000568642,33,58033,,,1758.575758,3697,,,,,,,5473,,3486,0.34,,,,,,0.45,0.42,,0.33,0.43,,,,,,0.21,0.37,,0.44,0.863817803,35274,40835,0.84787443,0.879761176,0.555315315,7705,13875,0.488190279,0.622440351,0.030282694,722,23842,,,0.268,3223,,0.210808511,0.325191489,,,,,,,0.571358268,0.461650719,0.681065816,0.490753912,0.278988673,0.702519151,0.156261023,0.106895379,0.205626667,4.714694237,107165,22730,4.071739377,5.357649096,0.328012703,3925,11966,0.259832131,0.396193274,15.83324634,91,57474,,,80.39280719,223,277388,69.8411461,90.94446828,,,,,,,72.01854478,49.26063131,101.6686969,,,,87.48703896,75.01409741,99.95998051,,,,8.1,,,,,1,,,,,0.109199358,2380,21795,0.088470877,0.129927839,0.098225128,0.07842762,0.118022637,0.005001147,0.002279064,0.00772323,0.008947006,0.002693624,0.015200388,0.853740822,21510,25195,0.825891303,0.88159034,,,,,,,0.910675381,0.869699017,0.951651746,,,,0.849976948,0.823564451,0.876389445,0.232,,25195,0.202093854,0.261906146,73.54942602,,,72.79178067,74.30707138,,,,,,,69.74342461,67.69408314,71.79276608,,,,73.84145456,73.00565869,74.67725044,,,,570.2561012,1238,153622,536.6283748,603.8838276,,,,,,,734.8349462,638.7129261,830.9569663,,,,556.6109935,519.2367138,593.9852732,,,,74.17094451,38,51233,52.48777477,101.8054163,,,,,,,152.6896876,81.30082794,261.104016,,,,62.16552246,39.40760862,93.27880668,,,,8.779828906,39,4442,6.243316634,12.00231514,,,,,,,,,,,,,7.058823529,4.522721428,10.50296988,,,,,,,0.126,,,0.108,0.148,0.191,,,0.165,0.22,0.109,,,0.092,0.128,137.2,67,48822,,,0.149,8480,,,,0.088293033,4805.613205,54428,,,17.24896804,29,168126,11.55190461,24.77239537,,,,,,,,,,,,,18.41465193,11.79861495,27.39954239,,,,0.372,,,0.358,0.386,0.132027512,4415,33440,0.111772193,0.152282831,0.040569395,513,12645,0.027463012,0.053675778,0.001602537,93,58033,,,624.0107527,0.914035917,483.525,529,,,,,,,,3.015519633,,,,,,,2.612710623,2.666743829,3.151360029,2.896152953,,,,,,,2.507863088,2.929025671,2.992078436,0.066770427,,,,,-5102.991225,,,,,0.699939158,37964,54239,0.609274951,0.790603365,54593,,,47864.65957,61321.34043,95463,26459.08511,164466.9149,,,,32984,29478.6383,36489.3617,35234,12534.93617,57933.06383,63913,58534.61702,69291.38298,,,,,,0.413485182,3195,7727,,,25.88179164,,,,,0.291062957,,54593,,,7.228158391,23,3182,,,4.922815436,19,385958,2.963856473,7.687586103,,,,,,,16.16971735,7.754007982,29.73668592,,,,,,,,,,18.43937606,52,277388,13.59574028,24.44793748,18.74630482,,,,,,,,,,,,,22.12810139,16.07831235,29.70594328,,,,20.54883412,57,277388,15.5634863,26.62339806,,,,,,,22.50579524,10.79240361,41.38895875,,,,21.75603614,15.98551704,28.93091595,,,,24.09588608,93,385958,19.44848992,29.51908835,,,,,,,19.40366082,10.02615469,33.89429055,,,,26.54191964,21.04609157,33.03371652,,,,16.03773585,,5300,,,77,8,0.648285482,27886,43015,,,0.662,,,,,64.61249959,,,,,0.710048999,16520,23266,0.684822108,0.735275889,0.106978859,2353,21995,0.08232397,0.131633748,0.758918594,17657,23266,0.736043243,0.781793945,58033,,,,,0.210638775,12224,58033,,,0.206520428,11985,58033,,,0.155032482,8997,58033,,,0.006858167,398,58033,,,0.007512967,436,58033,,,0.000672031,39,58033,,,0.03522134,2044,58033,,,0.774593766,44952,58033,,,0.009147694,495,54112,0.002824869,0.015470519,0.517722675,30045,58033,,,0.402956646,23060,57227,, -01,035,01035,AL,Conecuh County,2024,1,17561.03564,370,31589,14534.86871,20587.20256,0,,,,2,,,,2,21316.38863,16570.59386,26062.18339,,,,,2,15369.65385,10991.73594,19747.57175,,,,,2,,0.245,,,0.214,0.28,4.802045747,,,3.858674185,5.798336971,6.107159828,,,4.929118308,7.343508091,0.14380531,130,904,0.120931127,0.166679492,0,,,,,,,0.190909091,0.154185791,0.227632391,,,,0.094763092,0.066095935,0.123430249,,,,,,,0.225,,,0.188,0.269,0.453,,,0.367,0.537,6.8,0.132889727,0.127,,,0.378,,,0.322,0.441,0.374062258,4338,11597,,,0.118530764,,,0.09223664,0.148540102,0.125,3,24,0.040232942,0.245512437,556.1,63,11328,,,29.32298405,68,2319,22.77044448,37.17386941,,,,,,,27.57078987,19.41238045,38.00270204,,,,30.23255814,19.74891072,44.29770242,,,,,,,0.11498754,969,8427,0.098306689,0.131668391,0.000441384,5,11328,,,2265.6,0.000178476,2,11206,,,5603,0.000713903,8,11206,,,1400.75,7136,,,,,,,9831,,6349,0.29,,,,,,,0.29,,0.3,0.39,,,,,,,0.32,,0.43,0.894297304,7496,8382,0.858319146,0.930275462,0.467908082,1181,2524,0.33891889,0.596897275,0.035360679,150,4242,,,0.439,972,,0.312702128,0.565297872,,,,,,,0.445112782,0.262442242,0.627783322,,,,0.210472279,0.074022227,0.346922332,5.047994435,87088,17252,3.396833779,6.699155092,0.52660473,1247,2368,0.326224907,0.726984552,7.062146893,8,11328,,,116.6822243,70,59992,90.95951812,147.4209709,,,,,,,113.411868,77.05786193,160.9790938,,,,126.3717991,89.42820634,173.4551677,,,,9.2,,,,,0,,,,,0.080697928,370,4585,0.047986105,0.113409751,0.069988675,0.036954742,0.103022608,0.00436205,0,0.016653838,0.0087241,0,0.020034388,0.875818777,3209,3664,0.83602226,0.915615294,,,,,,,0.877206447,0.538247135,1,,,,0.889460154,0.826021863,0.952898445,0.385,,3664,0.287625354,0.482374646,69.45270431,,,67.53606331,71.3693453,,,,,,,66.8494145,64.03934797,69.65948103,,,,70.89261405,68.04805525,73.73717285,,,,783.6504637,370,31589,695.6875625,871.6133649,,,,,,,927.9872599,785.0597054,1070.914814,,,,697.8015475,580.4823448,815.1207503,,,,140.291807,15,10692,78.52025938,231.3900007,,,,,,,181.78513,87.17303574,334.3093263,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.146,,,0.126,0.168,0.2,,,0.174,0.229,0.148,,,0.127,0.169,298.9,29,9701,,,0.127,1490,,,,0.132889727,1757.865313,13228,,,,,,,,,,,,,,,,,,,,,,,,,,0.433,,,0.418,0.446,0.14153058,884,6246,0.118892282,0.164168877,0.040487593,93,2297,0.02618972,0.054785465,0.00044619,5,11206,,,2241.2,0.925,142.45,154,,,,,,,,2.267557265,,,,,,,2.219608402,,3.072794665,2.333427736,,,,,,,2.140246582,,3.043288059,0.163232174,,,,,-20956.34,,,,,0.708752012,32587,45978,0.402535752,1.014968271,36106,,,30730,41482,,,,,,,36496,29343.48936,43648.51064,,,,51672,45284.42553,58059.57447,,,,,,0.708526107,1072,1513,,,19.12876132,,,,,0.413393896,,36106,,,3.937007874,2,508,,,18.81047273,16,85059,10.75181045,30.54702924,,,,,,,30.83485366,15.93281884,53.86228396,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,33.33777837,20,59992,20.36358112,51.48749484,,,,,,,40.2429209,20.08912112,72.00570174,,,,,,,,,,28.2157091,24,85059,18.07833722,41.98273856,,,,,,,30.83485366,15.93281884,53.86228396,,,,25.77561159,12.86709243,46.11968908,,,,,,1100,,,-888,0,0.666080662,6441,9670,,,0.474,,,,,11.00192316,,,,,0.746912194,3326,4453,0.704718485,0.789105903,0.099753695,405,4060,0.05502093,0.144486459,0.666741523,2969,4453,0.603595869,0.729887176,11206,,,,,0.201945386,2263,11206,,,0.246564341,2763,11206,,,0.444583259,4982,11206,,,0.006692843,75,11206,,,0.003747992,42,11206,,,0.00044619,5,11206,,,0.033374978,374,11206,,,0.494378012,5540,11206,,,0,0,11111,0,0.008578809,0.518293771,5808,11206,,,1,11597,11597,, -01,037,01037,AL,Coosa County,2024,1,13936.01292,269,28581,11031.63525,16840.39058,0,,,,2,,,,2,22840.75982,15519.18814,32420.63536,,,,,2,9734.985082,7176.07091,12293.89925,,,,,2,,0.202,,,0.175,0.231,4.34814927,,,3.492251879,5.333637287,5.876892692,,,4.755441391,7.096858992,0.118136439,71,601,0.092330987,0.143941891,0,,,,,,,0.206451613,0.142730101,0.270173124,,,,0.086046512,0.059540125,0.112552898,,,,,,,0.199,,,0.164,0.237,0.39,,,0.312,0.472,7.4,0.077172192,0.127,,,0.333,,,0.282,0.386,0.040531434,421,10387,,,0.133543229,,,0.105917135,0.165575017,0.318181818,7,22,0.204127461,0.433005911,851.7,89,10450,,,28.40236686,48,1690,20.94166321,37.65741786,,,,,,,20.44293015,10.56316032,35.70968492,,,,33.17073171,22.97169599,46.35277278,,,,,,,0.114128296,870,7623,0.096255956,0.132000636,,0,10450,,,,,0,10166,,,,0.000196734,2,10166,,,5083,2862,,,,,,,2734,,2721,0.33,,,,,,,0.43,,0.31,0.36,,,,,,,0.27,,0.38,0.834886321,6720,8049,0.799202877,0.870569766,0.409621672,877,2141,0.288285706,0.530957638,0.025342005,113,4459,,,0.312,520,,0.204765957,0.419234043,,,,,,,0.596153846,0.353184776,0.839122917,,,,0.068821689,0,0.141298474,3.954171473,102848,26010,3.172551153,4.735791792,0.349819059,580,1658,0.221266295,0.478371823,9.56937799,10,10450,,,105.1998798,56,53232,79.46685862,136.6107943,,,,,,,131.2417974,81.2407411,200.6170285,,,,100.2491909,69.82723456,139.4223566,,,,9.6,,,,,0,,,,,0.092154421,370,4015,0.055810123,0.128498719,0.053952321,0.023607467,0.084297176,0.02988792,0.005828084,0.053947756,0.01369863,0.000786124,0.026611137,0.786289276,3028,3851,0.724972331,0.84760622,,,,,,,,,,,,,0.688536953,0.543059566,0.83401434,0.405,,3851,0.31559859,0.49440141,73.06542735,,,71.03240323,75.09845146,,,,,,,69.09384703,64.06174556,74.1259485,,,,75.21548624,73.26246104,77.16851144,,,,612.6684021,269,28581,529.173089,696.1637152,,,,,,,828.7938094,639.6455647,1056.365745,,,,520.8904546,433.7344383,608.046471,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.13,,,0.113,0.148,0.19,,,0.165,0.216,0.12,,,0.104,0.138,205.2,19,9259,,,0.127,1320,,,,0.077172192,890.4899277,11539,,,,,,,,,,,,,,,,,,,,,,,,,,0.415,,,0.401,0.429,0.133868809,800,5976,0.111230511,0.156507106,0.044982699,78,1734,0.029493337,0.060472061,0.000393468,4,10166,,,2541.5,,,,,,,,,,,2.481397373,,,,,,,2.320856395,,2.775466747,2.3088048,,,,,,,2.180291959,,2.381167956,0.00542389,,,,,-14096.71,,,,,0.520596079,28891,55496,0.389850436,0.651341722,49485,,,42394.44681,56575.55319,,,,,,,34764,27646.04255,41881.95745,,,,66026,54985.65957,77066.34043,,,,,,0.634517767,500,788,,,52.99866831,,,,,0.250580984,,49485,,,4.301075269,2,465,,,17.44100246,13,74537,9.286599261,29.82464537,,,,,,,44.49586189,21.33749531,81.82947425,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,26.29996994,14,53232,14.3784383,44.12688068,,,,,,,,,,,,,,,,,,,37.56523606,28,74537,24.96182655,54.29222526,,,,,,,44.49586189,21.33749531,81.82947425,,,,36.79702353,21.80824822,58.15516133,,,,8.75,,800,,,7,0,0.617004505,5479,8880,,,0.376,,,,,7.286901491,,,,,0.812453113,3249,3999,0.772118872,0.852787354,0.025448701,95,3733,0.00178138,0.049116022,0.784696174,3138,3999,0.729829423,0.839562925,10166,,,,,0.165945308,1687,10166,,,0.259492426,2638,10166,,,0.283297265,2880,10166,,,0.008066103,82,10166,,,0.002065709,21,10166,,,0.002065709,21,10166,,,0.028034625,285,10166,,,0.665453472,6765,10166,,,0,0,9865,0,0.009662357,0.49695062,5052,10166,,,1,10387,10387,, -01,039,01039,AL,Covington County,2024,1,13973.73487,1026,100920,12588.63894,15358.8308,0,,,,2,,,,2,20152.0876,15788.71738,24515.45782,,,,,2,13550.13675,12020.81126,15079.46225,,,,,2,,0.206,,,0.174,0.239,4.474960374,,,3.597904134,5.402067274,5.809788739,,,4.692517481,6.921266945,0.0965471,288,2983,0.085948419,0.107145781,0,,,,,,,0.185542169,0.148140788,0.22294355,,,,0.084193149,0.073136598,0.0952497,,,,,,,0.218,,,0.175,0.264,0.402,,,0.325,0.482,6.9,0.05480485,0.159,,,0.317,,,0.262,0.374,0.582193239,21873,37570,,,0.134685166,,,0.105248344,0.167952087,0.195652174,9,46,0.122198462,0.27844662,474.4,178,37524,,,37.42658107,274,7321,32.99497707,41.85818507,,,,,,,26.50822669,17.75297545,38.07023532,58.13953488,27.88016684,106.9206747,37.96151846,32.93372314,42.98931379,,,,73.52941177,41.15385359,121.2755827,0.131951119,3844,29132,0.115270268,0.14863197,0.000479693,18,37524,,,2084.666667,0.000372321,14,37602,,,2685.857143,0.00079783,30,37602,,,1253.4,4800,,,,,,,6901,,4707,0.42,,,,,,,0.45,,0.42,0.34,,,,,,,0.26,,0.35,0.857564185,22680,26447,0.83682096,0.87830741,0.513529766,4270,8315,0.45619888,0.570860651,0.026333157,399,15152,,,0.25,2023,,0.168978723,0.331021277,,,,,,,0.444863337,0.33382048,0.555906193,0.22519084,0.003628109,0.44675357,0.250956633,0.19082986,0.311083405,5.784775435,103426,17879,4.918932341,6.650618529,0.335198249,2756,8222,0.266120133,0.404276365,12.25882102,46,37524,,,100.2257774,186,185581,85.82191274,114.6296421,,,,,,,90.8933518,56.26441735,138.9401434,,,,105.1333636,88.94365161,121.3230756,,,,9.1,,,,,0,,,,,0.125041681,1875,14995,0.103240566,0.146842795,0.092790618,0.073260527,0.112320708,0.021340447,0.013018785,0.029662109,0.016672224,0.006162116,0.027182333,0.874598071,13056,14928,0.851191926,0.898004216,,,,,,,0.894864048,0.805793547,0.98393455,,,,0.881032839,0.849728818,0.912336861,0.264,,14928,0.227605899,0.300394101,71.32917648,,,70.39771405,72.2606389,,,,,,,66.78465446,64.37500096,69.19430797,,,,71.57657545,70.54048185,72.61266905,,,,700.1020639,1026,100920,654.0403899,746.1637378,,,,,,,978.4533348,816.1812668,1140.725403,,,,682.7979092,633.3839613,732.2118571,,,,78.87768325,28,35498,52.41364769,114.0002139,,,,,,,,,,,,,90.3375009,58.46166744,133.355972,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.137,,,0.117,0.157,0.198,,,0.17,0.227,0.118,,,0.1,0.137,164,52,31715,,,0.159,5960,,,,0.05480485,2069.705147,37765,,,17.93673713,20,111503,10.95622502,27.70183574,,,,,,,,,,,,,17.31864135,9.899099922,28.12438854,,,,0.375,,,0.358,0.391,0.163585247,3433,20986,0.140946949,0.186223545,0.052023796,446,8573,0.035342945,0.068704647,0.001196745,45,37602,,,835.6,0.950188917,377.225,397,,,,,,,,2.934725219,,,,,,,2.453613763,,3.076250452,2.668121746,,,,,,,2.124031015,,2.811695541,0.084715404,,,,,-8223.349,,,,,0.748628299,37385,49938,0.65693493,0.840321668,46958,,,42529.23404,51386.76596,30536,25051.57447,36020.42553,,,,29645,20620.65957,38669.34043,46898,43196.04255,50599.95745,53916,49692.17021,58139.82979,,,,,,0.478388998,2922,6108,,,38.55225219,,,,,0.294795349,,46958,,,5.660377359,12,2120,,,6.133229068,16,260874,3.505670344,9.959979759,,,,,,,,,,,,,,,,,,,19.8489984,37,185581,13.74600841,27.73698575,19.93738583,,,,,,,,,,,,,22.57551016,15.33896387,32.04413464,,,,22.63162716,42,185581,16.31088621,30.59138531,,,,,,,,,,,,,22.06502693,15.28067258,30.83366351,,,,24.53291627,64,260874,18.89333492,31.32798639,,,,,,,,,,,,,27.24141434,20.73742676,35.13943973,,,,11.08108108,,3700,,,35,6,0.603427385,17430,28885,,,0.572,,,,,17.76794017,,,,,0.749753417,10642,14194,0.724351181,0.775155653,0.102540766,1352,13185,0.080947958,0.124133574,0.777300268,11033,14194,0.750850572,0.803749964,37602,,,,,0.219722355,8262,37602,,,0.224775278,8452,37602,,,0.124993351,4700,37602,,,0.007978299,300,37602,,,0.005372055,202,37602,,,0.000239349,9,37602,,,0.02143503,806,37602,,,0.823652997,30971,37602,,,0.00076282,27,35395,0,0.004187321,0.513802457,19320,37602,,,0.688155443,25854,37570,, -01,041,01041,AL,Crenshaw County,2024,1,13537.57683,375,37392,11307.93464,15767.21902,0,,,,2,,,,2,15718.79319,11177.59857,21488.10775,,,,,2,13530.35285,10864.90665,16195.79905,,,,,2,,0.215,,,0.184,0.248,4.421192249,,,3.503111684,5.395340949,5.955555856,,,4.764974822,7.162165642,0.100189036,106,1058,0.082096519,0.118281552,0,,,,,,,0.179856115,0.134707825,0.225004405,,,,0.075524476,0.056156037,0.094892914,,,,,,,0.209,,,0.169,0.249,0.382,,,0.3,0.463,6.6,0.135061835,0.133,,,0.358,,,0.3,0.418,0.148249204,1956,13194,,,0.137033018,,,0.107422167,0.170657956,0.315789474,6,19,0.192486042,0.440144871,825.5,108,13083,,,24.16488984,68,2814,18.7649825,30.63475592,,,,,,,24.86910995,14.97282875,38.83619577,,,,24.03058438,17.4606594,32.25993789,,,,,,,0.13647239,1426,10449,0.11740856,0.15553622,0.000229305,3,13083,,,4361,0.000230326,3,13025,,,4341.666667,0.000690979,9,13025,,,1447.222222,3895,,,,,,,6879,,3492,0.4,,,,,,,0.48,,0.38,0.31,,,,,,,0.28,,0.32,0.820725842,7508,9148,0.791762732,0.849688951,0.479561316,1443,3009,0.394657176,0.564465456,0.026267358,157,5977,,,0.283,841,,0.185297872,0.380702128,,,,,,,0.157894737,0.046242141,0.269547333,0.292517007,0,0.628037123,0.117461982,0.069025759,0.165898205,5.97095785,99303,16631,4.760925023,7.180990677,0.271854305,821,3020,0.184757193,0.358951416,11.46526026,15,13083,,,101.1270537,69,68231,78.68288396,127.9827587,,,,,,,99.89386277,57.09797374,162.2213748,,,,108.1440812,80.76717245,141.8165746,,,,9.1,,,,,0,,,,,0.099800399,500,5010,0.067894146,0.131706653,0.087640449,0.056699047,0.118581852,0.010778443,0.001121205,0.020435681,0.006986028,0,0.01436568,0.785686428,4029,5128,0.724087916,0.847284939,,,,,,,0.75,0.663031606,0.836968394,,,,0.760409058,0.677951334,0.842866782,0.464,,5128,0.389486652,0.538513348,70.94218674,,,69.44233745,72.44203604,,,,,,,69.55394724,66.45647849,72.651416,,,,70.7474378,68.96954376,72.52533183,,,,699.1352016,375,37392,623.4830353,774.7873679,,,,,,,797.8936008,636.4311844,987.8465704,,,,699.6654901,610.6533464,788.6776338,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.136,,,0.117,0.156,0.195,,,0.17,0.222,0.122,,,0.103,0.141,245.5,27,10998,,,0.133,1770,,,,0.135061835,1878.169873,13906,,,,,,,,,,,,,,,,,,,,,,,,,,0.407,,,0.391,0.422,0.168109764,1262,7507,0.143088488,0.193131041,0.057910062,179,3091,0.040037721,0.075782402,0.000998081,13,13025,,,1001.923077,0.875,144.375,165,,,0.190713101,115,603,0.064151783,0.317274419,2.79990848,,,,,,,2.60458411,,2.888942206,2.553168923,,,,,,,2.388412657,,2.641371346,0.029542978,,,,,-8255.205,,,,,0.775074247,36537,47140,0.682043742,0.868104752,49161,,,43143.97872,55178.02128,,,,175221,90599.04255,259842.9575,25502,22225.40426,28778.59575,51462,39008.55319,63915.44681,58327,51013.6383,65640.3617,,,,,,0.640888889,1442,2250,,,23.6618939,,,,,0.220154187,,49161,,,6.887052342,5,726,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,21.98414211,15,68231,12.30435745,36.25949916,,,,,,,,,,,,,22.87663256,11.41993255,40.93261483,,,,31.21520805,30,96107,21.06076979,44.56165045,,,,,,,,,,,,,33.9563587,21.5254186,50.95121046,,,,7.333333333,,1500,,,11,0,0.625129901,6617,10585,,,0.541,,,,,15.10054285,,,,,0.745815251,3609,4839,0.713259939,0.778370563,0.102104098,461,4515,0.067702676,0.136505519,0.651994214,3155,4839,0.610718369,0.693270059,13025,,,,,0.232015355,3022,13025,,,0.198234165,2582,13025,,,0.230019194,2996,13025,,,0.007754319,101,13025,,,0.014510557,189,13025,,,0.00084453,11,13025,,,0.028637236,373,13025,,,0.695201536,9055,13025,,,0.005281268,66,12497,0,0.014428132,0.510633397,6651,13025,,,1,13194,13194,, -01,043,01043,AL,Cullman County,2024,1,11749.94179,1873,238095,10926.49649,12573.38708,0,,,,2,,,,2,,,,2,9230.973589,6029.978423,13525.51508,,11927.36467,11064.99085,12789.73849,,,,,2,,0.182,,,0.15,0.213,4.263949112,,,3.369486674,5.268233362,5.528469227,,,4.423984743,6.803348167,0.086704364,598,6897,0.080063079,0.093345649,0,,,,0.196078431,0.087111998,0.305044865,,,,0.056034483,0.035107683,0.076961283,0.087291399,0.080283398,0.0942994,,,,0.152777778,0.069674417,0.235881138,0.189,,,0.149,0.231,0.377,,,0.303,0.457,7.5,0.028437443,0.144,,,0.3,,,0.245,0.357,0.486536317,42750,87866,,,0.157677892,,,0.124262356,0.194766136,0.245614035,28,114,0.197858353,0.295495754,235.8,211,89496,,,30.70660076,528,17195,28.08738755,33.32581397,,,,,,,,,,32.06562267,23.20605012,43.1921833,31.14601358,28.3241526,33.96787455,,,,,,,0.121435778,8786,72351,0.107137906,0.135733651,0.000480468,43,89496,,,2081.302326,0.000485303,44,90665,,,2060.568182,0.001599294,145,90665,,,625.2758621,3896,,,,,,,13632,,3851,0.47,,,,,,0.36,,0.27,0.47,0.47,,,,,,0.5,0.31,0.25,0.47,0.846131339,52054,61520,0.830934997,0.861327682,0.593229069,12669,21356,0.543434813,0.643023326,0.020642144,812,39337,,,0.183,3610,,0.135340426,0.230659575,,,,,,,0.057591623,0,0.259885511,0.34171155,0.207508612,0.475914488,0.145749705,0.116668605,0.174830805,4.424696389,110759,25032,3.973348867,4.87604391,0.195998575,3850,19643,0.158248575,0.233748574,9.721104854,87,89496,,,101.1849727,429,423976,91.60986996,110.7600755,,,,,,,,,,52.47415648,25.16339768,96.50184206,106.4103223,96.15994955,116.6606951,,,,9.4,,,,,0,,,,,0.108870332,3455,31735,0.093943565,0.1237971,0.0793727,0.06623058,0.092514819,0.019536789,0.012629752,0.026443826,0.01291949,0.007228598,0.018610381,0.851982106,32947,38671,0.835421386,0.868542825,,,,,,,,,,0.490727532,0.380335333,0.601119731,0.870612591,0.855019975,0.886205206,0.335,,38671,0.305046422,0.364953578,72.94814915,,,72.3637352,73.5325631,,,,,,,,,,92.63157301,67.00038676,118.2627593,72.70730639,72.10735916,73.30725361,,,,581.7433498,1873,238095,553.9501797,609.5365199,,,,,,,,,,369.9406484,241.6575138,542.0487634,596.1740846,567.044576,625.3035932,,,,51.48529077,43,83519,37.26016022,69.3503488,,,,,,,,,,,,,47.01327434,32.55805916,65.69633863,,,,5.036695928,35,6949,3.508243258,7.004824776,,,,,,,,,,,,,4.450095359,2.957056048,6.431626819,,,,,,,0.127,,,0.108,0.147,0.188,,,0.161,0.215,0.103,,,0.087,0.12,108.8,82,75375,,,0.144,12570,,,,0.028437443,2286.541018,80406,,,24.82746849,64,257779,19.12017602,31.70412299,,,,,,,,,,,,,26.25049749,20.1261059,33.65195307,,,,0.358,,,0.339,0.373,0.150447534,7900,52510,0.131383704,0.169511364,0.04791887,997,20806,0.034812487,0.061025253,0.001102962,100,90665,,,906.65,0.954983203,852.8,893,,,0.096505073,428,4435,0.050547079,0.142463068,3.119827164,,,,,,,,2.624649165,3.192453907,2.99585269,,,,,,,,2.723462714,3.041554518,0.048358912,,,,,204.133,,,,,0.687739248,36651,53292,0.631272704,0.744205792,61774,,,56606.51064,66941.48936,51563,41415.08511,61710.91489,,,,63594,27528.80851,99659.19149,52172,24508,79836,57943,55369.38298,60516.61702,,,,,,0.361850248,4678,12928,,,79.86740496,,,,,0.265694305,,61774,,,4.725897921,25,5290,,,3.908560087,23,588452,2.477691815,5.864759215,,,,,,,,,,,,,3.699791517,2.259928776,5.714027927,,,,21.58067114,92,423976,17.26175131,26.6519533,21.69934147,,,,,,,,,,,,,22.1709496,17.60693426,27.556466,,,,17.45381814,74,423976,13.70500128,21.91167035,,,,,,,,,,,,,18.76317278,14.70733227,23.59187277,,,,24.30104749,143,588452,20.31802236,28.28407263,,,,,,,,,,,,,25.34357189,21.09968685,29.58745693,,,,10.70588235,,8500,,,79,12,0.657827727,41851,63620,,,0.645,,,,,24.04586278,,,,,0.761984011,25640,33649,0.742708754,0.781259269,0.086512578,2796,32319,0.072140105,0.100885051,0.845195994,28440,33649,0.829245403,0.861146585,90665,,,,,0.221518778,20084,90665,,,0.191099101,17326,90665,,,0.012551701,1138,90665,,,0.006728065,610,90665,,,0.007025864,637,90665,,,0.000926488,84,90665,,,0.047989853,4351,90665,,,0.913946948,82863,90665,,,0.007808834,649,83111,0.004083351,0.011534317,0.500755529,45401,90665,,,0.755992079,66426,87866,, -01,045,01045,AL,Dale County,2024,1,11921.22441,1004,136668,10834.24285,13008.20598,0,,,,2,,,,2,13082.07835,10695.86305,15468.29364,,6522.871931,3728.384907,10592.73536,1,12405.44973,11039.04994,13771.84953,,,,,2,,0.206,,,0.176,0.238,4.274028571,,,3.430406194,5.249483287,5.987064553,,,4.939780716,7.126745514,0.087585034,412,4704,0.079506481,0.095663587,0,,,,,,,0.13122172,0.111313507,0.151129932,0.093506494,0.064424181,0.122588806,0.069565217,0.060445959,0.078684476,,,,0.104477612,0.052686705,0.156268519,0.203,,,0.165,0.247,0.389,,,0.317,0.468,6.5,0.087955021,0.161,,,0.345,,,0.291,0.406,0.444694482,21935,49326,,,0.151701998,,,0.120945469,0.189592517,0.255319149,12,47,0.17955074,0.335385166,620.2,306,49342,,,34.39927368,341,9913,30.74813647,38.0504109,,,,,,,42.28083786,34.34328908,50.21838664,33.91959799,22.35322881,49.35123423,31.4232902,26.91940903,35.92717138,,,,42.65402844,25.27948052,67.41175419,0.114615771,4564,39820,0.09793492,0.131296622,0.000283734,14,49342,,,3524.428571,0.000343129,17,49544,,,2914.352941,0.001332149,66,49544,,,750.6666667,3253,,,,,,,3687,,3258,0.42,,,,,,0.47,0.49,0.56,0.41,0.37,,,,,,0.45,0.34,0.15,0.38,0.856621249,28857,33687,0.840289526,0.872952971,0.592920354,7638,12882,0.541968384,0.643872324,0.026220787,552,21052,,,0.303,3433,,0.236276596,0.369723404,,,,,,,0.515393387,0.428917731,0.601869042,0.253617021,0.117356705,0.389877338,0.225422195,0.16549603,0.285348361,5.001845108,103013,20595,4.44162833,5.562061886,0.295310854,3363,11388,0.248000894,0.342620813,10.13335495,50,49342,,,83.04329242,204,245655,71.64747331,94.43911153,,,,,,,83.28706274,60.025989,112.5799135,,,,87.43090862,73.248675,101.6131423,,,,9.1,,,,,0,,,,,0.122133471,2370,19405,0.104075549,0.140191393,0.111843841,0.092250722,0.131436959,0.009018294,0.004038456,0.013998133,0.008245298,0.003992518,0.012498077,0.83281906,16464,19769,0.808289447,0.857348674,,,,,,,0.867148416,0.842179057,0.892117775,0.829249012,0.704130795,0.954367229,0.885348688,0.853932421,0.916764956,0.289,,19769,0.254405747,0.323594253,73.31226561,,,72.51140159,74.11312963,,,,,,,71.2861126,69.5904928,72.98173239,88.39509676,77.35666921,99.43352431,72.90047184,71.93968145,73.86126224,,,,580.537396,1004,136668,542.9330615,618.1417306,,,,,,,672.8122108,581.8845376,763.7398841,258.8869225,155.866839,404.2839984,599.6000759,553.8929439,645.307208,,,,64.86793294,32,49331,44.36961811,91.57416651,,,,,,,,,,,,,71.49909775,44.25906842,109.2939659,,,,7.735281478,36,4654,5.41769605,10.70889009,,,,,,,,,,,,,,,,,,,,,,0.132,,,0.114,0.152,0.194,,,0.168,0.222,0.123,,,0.105,0.142,333.9,137,41024,,,0.161,7970,,,,0.087955021,4419.827767,50251,,,12.88371431,19,147473,7.756837634,20.11951582,,,,,,,,,,,,,10.02596726,4.807841004,18.43811075,,,,0.375,,,0.361,0.388,0.145610353,4163,28590,0.122972055,0.168248651,0.037891689,445,11744,0.025976796,0.049806583,0.000787179,39,49544,,,1270.358974,0.942913044,433.74,460,,,0.108021878,237,2194,0.056023945,0.16001981,2.898242053,,,,,,,2.365442731,2.462377966,3.170344538,2.746068748,,,,,,,2.35672462,2.272214979,3.0211197,0.085282485,,,,,-7530.919667,,,,,0.727634396,36031,49518,0.660277726,0.794991066,50567,,,44441.55319,56692.44681,45598,17084.46809,74111.53192,,,,36777,31869.25532,41684.74468,59620,34495.06383,84744.93617,58898,54929.14894,62866.85106,,,,,,0.602953107,3716,6163,,,31.68927915,,,,,0.20719046,,50567,,,4.049844237,13,3210,,,6.387067929,22,344446,4.002741467,9.670097602,,,,,,,15.71293889,7.843842481,28.11478804,,,,4.244247983,2.03528188,7.805323154,,,,22.94617021,56,245655,17.23786928,29.93977468,22.79619792,,,,,,,,,,,,,30.23650989,22.21665016,40.20814823,,,,25.64572266,63,245655,19.70687745,32.81201982,,,,,,,23.79630364,12.29589734,41.56735355,,,,28.14556647,20.68030359,37.42763676,,,,23.8063441,82,344446,18.93389195,29.5499501,,,,,,,28.5689798,17.45067506,44.12247222,,,,23.34336391,17.58541633,30.38459677,,,,,,4800,,,36,-888,0.529310807,19738,37290,,,0.58,,,,,25.14589534,,,,,0.601494845,11669,19400,0.576389217,0.626600474,0.108302663,2001,18476,0.087451869,0.129153457,0.827164949,16047,19400,0.804563567,0.84976633,49544,,,,,0.232217827,11505,49544,,,0.181596157,8997,49544,,,0.20902632,10356,49544,,,0.009062651,449,49544,,,0.013583885,673,49544,,,0.001856935,92,49544,,,0.073348942,3634,49544,,,0.668819635,33136,49544,,,0.009088548,420,46212,0.00387514,0.014301957,0.509607622,25248,49544,,,0.504520942,24886,49326,, -01,047,01047,AL,Dallas County,2024,1,17680.34363,1046,102454,16059.67515,19301.01212,0,,,,2,,,,2,19738.69577,17735.49434,21741.89721,,,,,2,13067.9402,10305.39064,15830.48976,,,,,2,,0.266,,,0.229,0.305,4.865822246,,,3.925421019,5.943734413,6.157573283,,,5.022439138,7.396157731,0.1434375,459,3200,0.131292655,0.155582345,0,,,,,,,0.1588,0.144472812,0.173127188,,,,0.086261981,0.064268728,0.108255234,,,,,,,0.221,,,0.179,0.266,0.446,,,0.371,0.524,6.5,0.087671298,0.161,,,0.381,,,0.321,0.443,0.564661224,21718,38462,,,0.112020941,,,0.087436355,0.14121806,0.303571429,17,56,0.234106513,0.374290436,866.6,326,37619,,,32.89770167,292,8876,29.12432462,36.67107872,,,,,,,35.77561534,31.34082412,40.21040656,,,,25.57856273,18.43477816,34.5747861,,,,,,,0.107564359,3117,28978,0.092074998,0.123053721,0.000717722,27,37619,,,1393.296296,0.000353578,13,36767,,,2828.230769,0.000707156,26,36767,,,1414.115385,4280,,,,,,,5442,,3021,0.4,,,,,,,0.36,,0.45,0.35,,,,,,,0.28,,0.43,0.853101909,22167,25984,0.831508604,0.874695214,0.528275378,4512,8541,0.449485554,0.607065201,0.050476398,694,13749,,,0.468,3924,,0.334553192,0.601446809,,,,,,,0.478741111,0.403373805,0.554108416,,,,0.208902077,0.092973341,0.324830813,5.487253487,79856,14553,4.454800127,6.519706848,0.578935649,5200,8982,0.490513083,0.667358216,13.82280231,52,37619,,,123.6480965,233,188438,107.7712024,139.5249905,,,,,,,129.1033733,109.7527212,148.4540255,,,,118.16839,90.17493048,152.1061416,,,,9.5,,,,,0,,,,,0.167099286,2575,15410,0.130879744,0.203318829,0.132725431,0.103129379,0.162321482,0.012005191,0.004903878,0.019106505,0.028552888,0.006457327,0.050648448,0.86447871,12222,14138,0.828243775,0.900713645,,,,,,,0.825420714,0.779044629,0.8717968,,,,0.864870644,0.822797288,0.906944,0.318,,14138,0.271212229,0.364787771,69.27831464,,,68.26407253,70.29255675,,,,,,,67.85707283,66.63610236,69.0780433,,,,72.36196332,70.5378363,74.18609034,,,,777.0686584,1046,102454,726.1973696,827.9399473,,,,,,,854.6587735,790.3367226,918.9808243,,,,632.5710915,547.1066228,718.0355603,,,,64.38984186,25,38826,41.66971063,95.05210863,,,,,,,73.75372959,46.22106967,111.6640329,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.15,,,0.129,0.173,0.204,,,0.176,0.234,0.163,,,0.14,0.187,415.1,131,31556,,,0.161,6320,,,,0.087671298,3841.756279,43820,,,9.016075663,10,110913,4.323558732,16.58088415,,,,,,,,,,,,,,,,,,,0.446,,,0.428,0.461,0.137316159,2857,20806,0.11586935,0.158762967,0.033433945,288,8614,0.021519051,0.045348838,0.000843147,31,36767,,,1186.032258,0.797559367,302.275,379,,,0.174634146,358,2050,0.083281242,0.265987051,2.482947088,,,,,,,2.437447223,,2.820877669,2.2260336,,,,,,,2.177184772,,2.67011431,0.222758919,,,,,-30630.09,,,,,0.700847993,32150,45873,0.606142511,0.795553476,35258,,,30565.91489,39950.08511,22227,3215.595745,41238.40426,,,,30015,26819.42553,33210.57447,43456,7048.851064,79863.14894,61397,54836.65957,67957.34043,,,,,,0.811390677,4160,5127,,,53.71239694,,,,,0.392620115,,35258,,,7.509386733,18,2397,,,38.57895889,104,269577,31.1643217,45.99359608,,,,,,,53.46348074,43.03664301,63.89031846,,,,,,,,,,14.06111183,25,188438,8.913538722,21.09857168,13.26696314,,,,,,,,,,,,,35.13121389,18.70589181,60.07544568,,,,45.6383532,86,188438,36.50479163,56.36299493,,,,,,,52.8493341,41.19864865,66.77195424,,,,31.51157066,18.01158534,51.17281654,,,,34.86944361,94,269577,28.17805985,42.67136801,,,,,,,38.11258033,29.82074684,47.99648731,,,,28.57376112,17.68760849,43.67802914,,,,16.5,,4000,,,57,9,0.621897302,17864,28725,,,0.518,,,,,33.66969422,,,,,0.614112384,9060,14753,0.584336933,0.643887835,0.166279239,2289,13766,0.13062365,0.201934827,0.75923541,11201,14753,0.722855316,0.795615504,36767,,,,,0.233796611,8596,36767,,,0.204449642,7517,36767,,,0.703701689,25873,36767,,,0.003127805,115,36767,,,0.00560285,206,36767,,,0.00048957,18,36767,,,0.01218484,448,36767,,,0.267223325,9825,36767,,,0.002386105,86,36042,0,0.006042305,0.533032339,19598,36767,,,0.448624617,17255,38462,, -01,049,01049,AL,DeKalb County,2024,1,11919.92556,1551,199780,11017.91701,12821.93412,0,,,,2,,,,2,18872.51414,9421.09106,33768.14092,1,6093.737143,4564.627281,7970.758219,,13319.97847,12215.36242,14424.59451,,,,,2,,0.231,,,0.196,0.267,4.803953154,,,3.841121432,5.838657074,6.183952805,,,5.057271341,7.442260565,0.084940073,489,5757,0.077738306,0.09214184,0,,,,,,,,,,0.068467337,0.056061522,0.080873152,0.089876294,0.080969397,0.098783191,,,,,,,0.222,,,0.179,0.267,0.41,,,0.336,0.489,,,0.161,,,0.35,,,0.293,0.408,0.425888169,30497,71608,,,0.141800813,,,0.112034453,0.176719166,0.218390805,19,87,0.164160125,0.276485866,260.4,187,71813,,,32.40885011,520,16045,29.6232548,35.19444541,,,,,,,35.84229391,17.1877731,65.91525463,51.87530443,44.90860734,58.84200152,26.07042636,23.05944573,29.08140699,,,,,,,0.195298189,11514,58956,0.175042869,0.215553508,0.000403827,29,71813,,,2476.310345,0.000291675,21,71998,,,3428.476191,0.000500014,36,71998,,,1999.944444,3215,,,,,,,1060,,3257,0.29,,,,,,,0.3,,0.3,0.37,,,,,,,0.35,0.22,0.37,0.777265682,37608,48385,0.758074432,0.796456931,0.507935595,8833,17390,0.460152235,0.555718956,0.023438002,730,31146,,,0.237,3970,,0.175042553,0.298957447,0.40234375,0.084065416,0.720622084,,,,0.28761062,0,0.583290803,0.573604061,0.506581283,0.640626839,0.202468697,0.158910164,0.246027231,4.814564527,95468,19829,4.358141595,5.270987459,0.210440362,3608,17145,0.169598333,0.251282391,8.772784872,63,71813,,,102.7973161,368,357986,92.29430225,113.3003299,,,,,,,,,,36.85209412,22.51021648,56.91507049,119.7923599,107.0962072,132.4885127,,,,7.5,,,,,0,,,,,0.10677034,2815,26365,0.089736388,0.123804291,0.078329484,0.063428549,0.09323042,0.029584677,0.018696492,0.040472861,0.005879006,0.00121871,0.010539302,0.821327171,24878,30290,0.789947185,0.852707157,,,,,,,,,,0.792827298,0.703167837,0.882486759,0.841450374,0.819228551,0.863672198,0.314,,30290,0.279344246,0.348655754,72.61479017,,,71.96644239,73.26313794,,,,,,,,,,82.59286257,74.54748365,90.63824149,71.55104753,70.80749462,72.29460043,,,,594.726427,1551,199780,563.823361,625.629493,,,,,,,832.2022053,557.3388778,1195.181185,356.8935096,253.7861738,487.8851764,645.1060176,609.5675537,680.6444814,,,,67.52373261,51,75529,50.27585409,88.78123817,,,,,,,,,,,,,80.91093876,58.06308659,109.7648246,,,,7.612456747,44,5780,5.531222726,10.21936787,,,,,,,,,,,,,7.934540045,5.427219517,11.20120309,,,,,,,0.151,,,0.13,0.174,0.207,,,0.179,0.235,0.125,,,0.107,0.145,110.1,66,59934,,,0.161,11500,,,,,,71109,,,24.18784654,52,214984,18.06464072,31.7191427,,,,,,,,,,,,,29.84969799,22.22506078,39.24684025,,,,0.37,,,0.354,0.383,0.251447911,10550,41957,0.224043656,0.278852166,0.059454028,1065,17913,0.041581687,0.077326368,0.00095836,69,71998,,,1043.449275,0.932545235,773.08,829,,,0.106398627,434,4079,0.05658998,0.156207274,2.651262829,,,,,,,,2.049436172,2.889557726,2.723096127,,,,,,,,2.396787866,2.847875379,0.165051343,,,,,-4147.9035,,,,,0.739441922,32409,43829,0.677014399,0.801869445,50037,,,46043.12766,54030.87234,50476,46445.19149,54506.80851,69688,44540.42553,94835.57447,,,,36992,25831.31915,48152.68085,50266,46604.55319,53927.44681,,,,,,0.65990099,7998,12120,,,75.62700655,,,,,0.231348802,,50037,,,2.8510335,12,4209,,,3.799878404,19,500016,2.287775024,5.933980827,,,,,,,,,,,,,3.49958005,1.913252979,5.871700676,,,,23.5352894,84,357986,18.63311026,29.3319928,23.46460476,,,,,,,,,,,,,28.30123541,22.22255695,35.5296094,,,,17.59845357,63,357986,13.52313493,22.51606691,,,,,,,,,,,,,21.36647355,16.34365926,27.44612914,,,,24.19922563,121,500016,19.8873636,28.51108765,,,,,,,,,,16.12166483,8.330299472,28.16130404,26.74679039,21.67879913,31.81478164,,,,7.590361446,,8300,,,63,0,0.588532478,29356,49880,,,0.525,,,,,13.27817685,,,,,0.738575321,18974,25690,0.713778333,0.763372309,0.102346397,2447,23909,0.0838065,0.120886293,0.828571429,21286,25690,0.806266647,0.85087621,71998,,,,,0.236728798,17044,71998,,,0.180616128,13004,71998,,,0.014680963,1057,71998,,,0.021042251,1515,71998,,,0.005305703,382,71998,,,0.006041835,435,71998,,,0.159921109,11514,71998,,,0.787910775,56728,71998,,,0.046588723,3148,67570,0.038533769,0.054643676,0.500055557,36003,71998,,,0.882973969,63228,71608,, -01,051,01051,AL,Elmore County,2024,1,9600.17905,1491,236866,8843.722016,10356.63608,0,,,,2,,,,2,12300.07054,10481.27612,14118.86497,,,,,2,9236.377465,8358.418605,10114.33633,,,,,2,,0.169,,,0.143,0.199,3.80462872,,,2.984727845,4.754442231,5.309149368,,,4.286365669,6.433978344,0.092088999,596,6472,0.085044302,0.099133696,0,,,,,,,0.154004107,0.13549518,0.172513034,0.095081967,0.062161965,0.128001969,0.071856287,0.064318291,0.079394284,,,,0.106557377,0.051805218,0.161309536,0.168,,,0.134,0.206,0.388,,,0.317,0.462,7.9,0.049842456,0.116,,,0.301,,,0.251,0.359,0.514509474,45265,87977,,,0.153994567,,,0.122534086,0.189250051,0.333333333,18,54,0.262974395,0.403753224,556.5,497,89304,,,20.88772846,368,17618,18.75358615,23.02187077,,,,,,,26.14379085,21.30189303,30.98568867,29.33333333,18.38304383,44.41101918,17.76393332,15.3670109,20.16085574,,,,42.76985743,26.47521585,65.37827034,0.117523774,8243,70139,0.102034413,0.133013136,0.000223954,20,89304,,,4465.2,0.000133984,12,89563,,,7463.583333,0.000279133,25,89563,,,3582.52,3726,,,,,,,5928,,3473,0.43,,,,,,0.28,0.45,,0.43,0.34,,,,,,0.4,0.29,0.3,0.34,0.885463421,54054,61046,0.874199516,0.896727326,0.53985431,12821,23749,0.495153888,0.584554731,0.02194382,839,38234,,,0.15,2837,,0.098765957,0.201234043,,,,,,,0.209954523,0.131347199,0.288561846,0.203665988,0.071761072,0.335570904,0.106337862,0.070795472,0.141880252,3.924535709,129961,33115,3.624148892,4.224922526,0.250052477,4765,19056,0.200322417,0.299782537,10.07793604,90,89304,,,70.39292707,293,416235,62.3326256,78.45322854,,,,,,,67.22114618,51.17185101,86.71038095,,,,74.98988623,65.25588622,84.72388625,,,,10,,,,,0,,,,,0.110085585,3280,29795,0.09077521,0.12939596,0.092033294,0.073439512,0.110627075,0.013089445,0.005425221,0.020753668,0.006041282,0.001320873,0.010761691,0.859924882,33427,38872,0.841794473,0.878055291,,,,,,,0.803786933,0.702323732,0.905250134,,,,0.794880062,0.780162727,0.809597397,0.476,,38872,0.436735047,0.515264953,74.60136572,,,74.00898258,75.19374886,,,,,,,71.79420169,70.30745156,73.28095182,95.33640148,74.6058817,116.0669213,74.90553915,74.23419951,75.57687879,,,,488.4262538,1491,236866,462.8132349,514.0392726,,,,,,,645.5019191,574.6458972,716.357941,,,,471.5059322,442.6375656,500.3742988,,,,71.21282813,58,81446,54.07488604,92.05909406,,,,,,,117.2520386,73.48122833,177.5209955,,,,63.7441492,44.40013551,88.65268066,,,,7.439553627,48,6452,5.485339557,9.863768782,,,,,,,14.12239408,8.741984522,21.58757951,,,,5.561735261,3.599261813,8.210218398,,,,,,,0.116,,,0.099,0.135,0.178,,,0.155,0.205,0.106,,,0.09,0.123,280.3,212,75635,,,0.116,10140,,,,0.049842456,3952.656284,79303,,,11.08160414,28,252671,7.363645474,16.0160034,,,,,,,,,,,,,13.01095088,8.336361734,19.35926358,,,,0.378,,,0.362,0.393,0.146799835,7452,50763,0.126544515,0.167055154,0.042933635,874,20357,0.029827252,0.056040018,0.000424282,38,89563,,,2356.921053,0.894741936,832.11,930,,,0.140545334,634,4511,0.08846396,0.192626708,3.04220366,,,,,,,2.595922673,2.795577243,3.228623622,2.95007406,,,,,,,2.535474087,2.96947218,3.128870978,0.081731863,,,,,-7384.6785,,,,,0.792350414,44084,55637,0.722280367,0.862420462,71463,,,66884.10638,76041.89362,78359,74983.51064,81734.48936,63333,42579.6383,84086.3617,47751,43546.23404,51955.76596,54044,29698.29787,78389.70213,80159,76471.34043,83846.65957,,,,,,0.422036654,5711,13532,,,30.96924106,,,,,0.193708632,,71463,,,5.723630417,28,4892,,,8.800659877,51,579502,6.552669333,11.57124244,,,,,,,24.54831108,16.5626424,35.04424047,,,,4.482654486,2.698850828,7.000220257,,,,18.3349572,82,416235,14.49302282,22.88285637,19.70040962,,,,,,,,,,,,,21.98702185,17.10721539,27.82598335,,,,21.38215191,89,416235,17.17162376,26.31257785,,,,,,,21.64748775,13.03320174,33.80523365,,,,22.69430768,17.65752598,28.72109883,,,,17.4287578,101,579502,14.02967441,20.82784118,,,,,,,18.82037183,11.93050131,28.23979845,,,,17.69468876,13.91799519,22.18044559,,,,,,8400,,,92,-888,0.657479369,41030,62405,,,0.652,,,,,25.07376728,,,,,0.770942083,24812,32184,0.751067057,0.790817109,0.084429754,2631,31162,0.069162597,0.099696911,0.881214268,28361,32184,0.863596029,0.898832507,89563,,,,,0.214307247,19194,89563,,,0.167345891,14988,89563,,,0.218259773,19548,89563,,,0.00482342,432,89563,,,0.007346784,658,89563,,,0.001105367,99,89563,,,0.031798846,2848,89563,,,0.72186059,64652,89563,,,0.00749014,621,82909,0.003328315,0.011651965,0.512153456,45870,89563,,,0.712368005,62672,87977,, -01,053,01053,AL,Escambia County,2024,1,14205.12434,922,100937,12811.38412,15598.86457,0,16200.43735,9753.721567,25298.9897,1,,,,2,16960.99557,14315.32466,19606.66649,,,,,2,13029.76975,11287.78958,14771.74993,,,,,2,,0.255,,,0.224,0.29,4.976445211,,,4.058157519,6.038228763,6.364747022,,,5.234099805,7.644622561,0.09375,288,3072,0.083442458,0.104057542,0,0.095238095,0.039090143,0.151386048,,,,0.144329897,0.122214154,0.16644564,,,,0.06936737,0.057636089,0.08109865,,,,,,,0.244,,,0.204,0.286,0.458,,,0.378,0.54,6.6,0.056765488,0.171,,,0.39,,,0.336,0.447,0.386457001,14205,36757,,,0.13007324,,,0.102073821,0.163145564,0.306122449,15,49,0.231593858,0.381907846,607.6,223,36699,,,39.02185224,300,7688,34.60611397,43.43759051,37.26708075,19.25644444,65.09809021,,,,34.81481482,28.13391422,42.6045162,67.35751295,35.86503881,115.1833985,39.97144897,33.92707506,46.01582287,,,,55.31914894,29.45511698,94.59742944,0.13506484,3687,27298,0.1171925,0.15293718,0.000299736,11,36699,,,3336.272727,0.000436372,16,36666,,,2291.625,0.00084547,31,36666,,,1182.774194,4624,,,,,8271,,5336,,4519,0.28,,,,,0.45,,0.25,,0.29,0.31,,,,,0.19,,0.21,,0.33,0.822669966,20946,25461,0.800316697,0.845023235,0.342271801,3191,9323,0.290146501,0.394397101,0.031058956,442,14231,,,0.264,2153,,0.162723404,0.365276596,0.297709924,0.121603477,0.473816371,,,,0.468939394,0.357455109,0.580423679,0.190883191,0,0.412539102,0.183758803,0.126825524,0.240692081,5.126769082,84766,16534,4.291021841,5.962516323,0.393975759,3283,8333,0.321983949,0.46596757,13.89683643,51,36699,,,124.0424791,228,183808,107.9412479,140.1437103,193.3085502,102.9286616,330.5635081,,,,81.59722222,59.95456973,108.5070075,,,,147.445929,124.8101703,170.0816876,,,,9.3,,,,,1,,,,,0.115622583,1495,12930,0.087810026,0.14343514,0.108037536,0.079360097,0.136714974,0.012761021,0.003906266,0.021615775,0.003866976,0.000875199,0.006858753,0.914945417,11650,12733,0.90184043,0.928050405,0.933333333,0.845108293,1,,,,0.887624051,0.830329054,0.944919049,,,,0.908460314,0.883110247,0.933810381,0.28,,12733,0.236875327,0.323124673,70.79301835,,,69.86489225,71.72114444,,,,,,,68.85810536,67.12994181,70.58626891,,,,71.5338697,70.37247385,72.69526555,,,,700.1061758,922,100937,652.947897,747.2644546,876.112263,628.7132861,1188.545212,,,,827.7287901,732.0835239,923.3740563,,,,654.3815675,596.8672087,711.8959263,,,,97.65080074,35,35842,68.01736065,135.808625,,,,,,,130.8900524,73.2581687,215.8832362,,,,70.7392249,38.67379251,118.6883994,,,,9.765625,30,3072,6.588826179,13.94103691,,,,,,,,,,,,,,,,,,,,,,0.155,,,0.136,0.176,0.209,,,0.183,0.237,0.143,,,0.124,0.164,230.3,71,30836,,,0.171,6310,,,,0.056765488,2175.196723,38319,,,44.70272687,49,109613,33.07132343,59.09937562,,,,,,,,,,,,,57.62290359,40.77739612,79.09193722,,,,0.426,,,0.413,0.438,0.172685762,3328,19272,0.147664485,0.197707038,0.04646752,392,8436,0.032169648,0.060765393,0.000709104,26,36666,,,1410.230769,0.889913044,307.02,345,,,0.262699565,543,2067,0.103144439,0.42225469,2.881991581,,,,,,,2.677395637,,3.03911613,2.714771458,,,,,,,2.415322833,,2.950618814,0.171927368,,,,,-9384.266,,,,,0.764509195,35211,46057,0.694345241,0.83467315,47792,,,41685.61702,53898.38298,63451,43512.61702,83389.38298,,,,29818,26080.29787,33555.70213,,,,48125,40070.53192,56179.46809,,,,,,0.65392274,3284,5022,,,34.35874982,,,,,0.302351858,,47792,,,6.15530303,13,2112,,,13.88219416,36,259325,9.722918121,19.21880825,,,,,,,22.00004889,13.03862326,34.76956204,,,,10.89073391,6.344253837,17.43711999,,,,24.05743978,47,183808,17.48017257,32.29599001,25.57016017,,,,,,,,,,,,,34.52646622,24.30981852,47.59018566,,,,22.3058844,41,183808,16.00708776,30.26045089,,,,,,,20.83333333,10.76488734,36.39164071,,,,23.51898253,15.36338024,34.46075865,,,,24.29383978,63,259325,18.66805352,31.08237435,,,,,,,14.66669926,7.57849753,25.61977199,,,,28.18778188,20.48128546,37.84078149,,,,,,3700,,,59,-888,0.559226714,15910,28450,,,0.58,,,,,25.4911377,,,,,0.671479036,8744,13022,0.639493925,0.703464147,0.113058273,1329,11755,0.082317362,0.143799184,0.713331286,9289,13022,0.677550969,0.749111602,36666,,,,,0.226040474,8288,36666,,,0.188076147,6896,36666,,,0.304287351,11157,36666,,,0.037800687,1386,36666,,,0.003545519,130,36666,,,0.000790924,29,36666,,,0.026536846,973,36666,,,0.60492009,22180,36666,,,0.00358009,124,34636,0,0.00821967,0.49915453,18302,36666,,,0.652828033,23996,36757,, -01,055,01055,AL,Etowah County,2024,1,13500.29045,2607,284349,12693.07568,14307.50521,0,,,,2,,,,2,18029.96503,15720.41079,20339.51928,,6609.06365,4189.579422,9916.840495,1,13161.36866,12241.15346,14081.58387,,,,,2,,0.201,,,0.172,0.232,4.406157321,,,3.507127036,5.35400427,6.26141912,,,5.161188333,7.416505086,0.089403576,745,8333,0.083277311,0.095529841,0,,,,,,,0.144897959,0.126903553,0.162892365,0.065019506,0.047592772,0.08244624,0.079543519,0.072621958,0.08646508,,,,,,,0.194,,,0.158,0.235,0.393,,,0.325,0.464,6.3,0.133979196,0.15,,,0.324,,,0.274,0.376,0.538980626,55750,103436,,,0.140602358,,,0.110104032,0.172978308,0.16091954,14,87,0.109838593,0.218886464,469.2,484,103162,,,35.56934829,745,20945,33.01515451,38.12354207,,,,,,,40.13464526,33.81620839,46.45308214,67.44868035,54.37315599,82.71981892,31.44357662,28.59170763,34.29544561,,,,48.4375,32.91093122,68.75316485,0.131387845,10729,81659,0.115898483,0.146877206,0.000736705,76,103162,,,1357.394737,0.000504423,52,103088,,,1982.461539,0.001445367,149,103088,,,691.8657718,4350,,,,,,,6735,,4164,0.29,,,,,,0.25,0.32,,0.28,0.35,,,,,,0.38,0.25,0.15,0.36,0.861184075,62621,72715,0.847597393,0.874770756,0.540306868,13311,24636,0.499902711,0.580711025,0.030274482,1189,39274,,,0.253,5485,,0.187468085,0.318531915,,,,,,,0.365860937,0.278535623,0.453186251,0.50257732,0.420649243,0.584505396,0.176622688,0.142517324,0.210728052,4.728720734,103611,21911,4.397555451,5.059886017,0.331219424,7312,22076,0.280958774,0.381480073,14.92797736,154,103162,,,95.11613719,488,513057,86.67695496,103.5553194,,,,,,,91.62106532,71.81628963,115.1997342,55.79838185,28.83183813,97.46854389,100.44154,90.58594188,110.2971381,,,,8.4,,,,,1,,,,,0.105636528,4095,38765,0.091835316,0.119437739,0.093638878,0.079643667,0.107634089,0.012124339,0.007581747,0.016666931,0.005159293,0.002003165,0.008315422,0.880658813,38498,43715,0.865548707,0.895768919,,,,,,,0.887721142,0.869645299,0.905796985,0.81298518,0.734130603,0.891839757,0.886855913,0.861955313,0.911756513,0.285,,43715,0.254693045,0.315306955,71.22958904,,,70.68181941,71.77735867,,,,,,,68.13814081,66.66814575,69.60813586,88.12308805,73.77137916,102.4747969,71.38884688,70.76961073,72.00808302,,,,661.0604455,2607,284349,634.2949822,687.8259087,,,,,,,848.1437422,768.93685,927.3506344,267.0139411,163.0990521,412.381376,651.4508992,621.6495255,681.2522728,,,,82.43938129,80,97041,65.36930224,102.6029461,,,,,,,124.6808763,77.17942756,190.5879638,,,,79.8509449,59.98648741,104.1881619,,,,7.043094187,59,8377,5.36152962,9.085078353,,,,,,,13.81578947,8.552191437,21.1189018,,,,5.053908356,3.409850745,7.214768429,,,,,,,0.132,,,0.114,0.153,0.199,,,0.174,0.226,0.114,,,0.098,0.132,221.9,194,87410,,,0.15,15490,,,,0.133979196,13991.4474,104430,,,22.09219593,68,307801,17.15545458,28.00712251,,,,,,,,,,,,,24.00090951,18.17805448,31.09596212,,,,0.398,,,0.383,0.413,0.164640773,9847,59809,0.144385454,0.184896092,0.042134587,968,22974,0.029028204,0.05524097,0.001134953,117,103088,,,881.0940171,0.911589184,960.815,1054,,,0.056770488,257,4527,0.030993355,0.082547622,3.010232137,,,,,,,2.80314849,2.44393431,3.136245753,2.782795678,,,,,,,2.463753636,2.333553388,2.918468744,0.230687796,,,,,-9222.356667,,,,,0.772084547,36857,47737,0.693967844,0.850201249,55487,,,51540.78723,59433.21277,,,,108214,6644.297872,209783.7021,36149,32394.61702,39903.38298,51487,47497.89362,55476.10638,55335,52294.31915,58375.68085,,,,,,0.51426025,7501,14586,,,66.20564982,,,,,0.201975237,,55487,,,5.474452555,33,6028,,,6.957218671,50,718678,5.163781796,9.172225484,,,,,,,17.04907442,10.26465652,26.62424161,,,,5.377095723,3.627903904,7.676138492,,,,19.79111485,101,513057,15.78142921,23.80080049,19.68592184,,,,,,,,,,,,,23.3631306,18.63534795,28.92514543,,,,21.24520278,109,513057,17.2567569,25.23364865,,,,,,,22.59149556,13.38915204,35.70430276,,,,22.40425328,17.99245509,27.57036154,,,,21.56737788,155,718678,18.17200426,24.9627515,,,,,,,20.63835324,13.08294558,30.9676632,,,,22.58380204,18.64042905,26.52717502,,,,,,10000,,,112,-888,0.603388116,47728,79100,,,0.658,,,,,60.30887998,,,,,0.733520662,28454,38791,0.717963209,0.749078115,0.110857051,4121,37174,0.095558188,0.126155914,0.835399964,32406,38791,0.820612271,0.850187657,103088,,,,,0.214137436,22075,103088,,,0.199295747,20545,103088,,,0.151142713,15581,103088,,,0.007052227,727,103088,,,0.008614,888,103088,,,0.003356356,346,103088,,,0.047735915,4921,103088,,,0.771049977,79486,103088,,,0.009034444,880,97405,0.005400587,0.0126683,0.513221714,52907,103088,,,0.431696895,44653,103436,, -01,057,01057,AL,Fayette County,2024,1,14500.27605,416,44185,12291.21079,16709.34132,0,,,,2,,,,2,20447.32138,13232.42829,30184.27996,,,,,2,14324.89549,11931.41105,16718.37993,,,,,2,,0.22,,,0.187,0.256,4.683573405,,,3.755903674,5.735751335,6.14654227,,,4.994452441,7.406935288,0.100649351,124,1232,0.083848908,0.117449794,0,,,,,,,0.222222222,0.15431807,0.290126375,,,,0.081632653,0.064902938,0.098362369,,,,,,,0.227,,,0.187,0.273,0.377,,,0.3,0.458,7.1,0.004299896,0.173,,,0.35,,,0.294,0.409,0.35849519,5851,16321,,,0.136340059,,,0.108227589,0.168665315,0.272727273,6,22,0.159704728,0.392079091,353,57,16148,,,33.637221,107,3181,27.26362853,40.01081347,,,,,,,33.03303303,16.48997107,59.10522076,,,,34.53397698,27.87337643,42.30645489,,,,,,,0.12097997,1516,12531,0.103107629,0.13885231,0.000990835,16,16148,,,1009.25,0.000310212,5,16118,,,3223.6,0.000186127,3,16118,,,5372.666667,3932,,,,,,,4553,,3736,0.39,,,,,,,0.56,,0.37,0.4,,,,,,,0.45,,0.39,0.837416871,9570,11428,0.809409826,0.865423916,0.455628013,1607,3527,0.371006802,0.540249223,0.027309968,180,6591,,,0.275,926,,0.186829787,0.363170213,,,,,,,0.578358209,0.371974452,0.784741966,,,,0.308150354,0.234753891,0.381546816,5.627501397,100676,17890,4.816610228,6.438392567,0.279103609,959,3436,0.183560173,0.374647044,8.050532574,13,16148,,,102.9512697,84,81592,82.11796468,127.4606772,,,,,,,116.5624669,58.1875635,208.5624511,,,,104.7699427,81.9760276,131.9404034,,,,9,,,,,1,,,,,0.094783248,645,6805,0.069276965,0.120289531,0.082283173,0.056428192,0.108138154,0.007200588,0,0.014764391,0.008082292,0.001273548,0.014891037,0.878768441,5480,6236,0.838360126,0.919176757,,,,,,,,,,,,,0.853715776,0.781303903,0.926127648,0.431,,6236,0.359898927,0.502101073,71.28939324,,,69.82801874,72.75076774,,,,,,,68.05596835,63.60829993,72.50363677,,,,71.29798248,69.71468781,72.88127715,,,,668.9089952,416,44185,599.4449811,738.3730094,,,,,,,868.2069973,640.1473025,1151.116519,,,,663.5582502,589.065807,738.0506935,,,,85.97883598,13,15120,45.78010907,147.026428,,,,,,,,,,,,,91.50653024,45.6797302,163.7304593,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.145,,,0.125,0.167,0.206,,,0.179,0.235,0.122,,,0.105,0.141,94.6,13,13738,,,0.173,2840,,,,0.004299896,74.13450891,17241,,,41.07535274,20,48691,25.08989256,63.43755089,,,,,,,,,,,,,31.75378603,16.90755372,54.29994118,,,,0.41,,,0.394,0.425,0.1512992,1380,9121,0.127469412,0.175128987,0.041352333,148,3579,0.027054461,0.055650205,0.000620424,10,16118,,,1611.8,0.975,143.325,147,,,,,,,,2.893179563,,,,,,,2.023972488,,3.054313137,2.734799249,,,,,,,2.237218758,,2.847738453,0.106440136,,,,,-3383.665,,,,,0.647664733,34834,53784,0.499221346,0.796108121,49205,,,42950.87234,55459.12766,,,,,,,30568,13766.80851,47369.19149,,,,50268,41557.02128,58978.97872,,,,,,0.561427909,1211,2157,,,53.4617513,,,,,0.270216441,,49205,,,3.318584071,3,904,,,,,,,,,,,,,,,,,,,,,,,,,,22.37484072,18,81592,12.78915473,36.33533954,22.06098637,,,,,,,,,,,,,25.55566379,14.30331103,42.15018104,,,,18.38415531,15,81592,10.28947217,30.32186841,,,,,,,,,,,,,18.9167952,10.07239675,32.34829591,,,,23.49930808,27,114897,15.4861921,34.19025949,,,,,,,,,,,,,24.75324113,15.85986866,36.83086068,,,,5,,1600,,,8,0,0.679534884,8766,12900,,,0.584,,,,,4.573696889,,,,,0.758424223,4659,6143,0.724342529,0.792505917,0.102058319,595,5830,0.067084391,0.137032248,0.732866678,4502,6143,0.687983276,0.777750079,16118,,,,,0.211688795,3412,16118,,,0.220250651,3550,16118,,,0.110559623,1782,16118,,,0.004715225,76,16118,,,0.005397692,87,16118,,,0,0,16118,,,0.020349919,328,16118,,,0.842970592,13587,16118,,,0.000582487,9,15451,0,0.006639254,0.507693262,8183,16118,,,1,16321,16321,, -01,059,01059,AL,Franklin County,2024,1,12137.03885,689,88177,10801.74771,13472.33,0,,,,2,,,,2,19780.98114,11909.44283,30890.45236,1,6177.054448,4136.870309,8871.28057,,13138.09785,11482.80109,14793.39462,,,,,2,,0.23,,,0.196,0.265,4.685196088,,,3.687342682,5.713366633,5.883151318,,,4.6835871,7.175499343,0.097194389,291,2994,0.086583595,0.107805183,0,,,,,,,,,,0.072765073,0.056350677,0.089179469,0.106350026,0.092620872,0.12007918,,,,,,,0.218,,,0.178,0.262,0.391,,,0.311,0.478,7.2,0.057351047,0.146,,,0.363,,,0.306,0.426,0.570236353,18312,32113,,,0.140618638,,,0.109811137,0.176558813,0.157894737,6,38,0.081882013,0.250383101,315.5,101,32013,,,43.47826087,295,6785,38.51671253,48.43980921,,,,,,,,,,63.88526728,51.86514803,77.85567816,38.40624358,32.90149992,43.91098724,,,,,,,0.148463196,3927,26451,0.129399366,0.167527026,0.000406085,13,32013,,,2462.538462,0.000219216,7,31932,,,4561.714286,0.000156583,5,31932,,,6386.4,4590,,,,,,,1004,2080,4630,0.31,,,,,,,0.33,0.38,0.31,0.37,,,,,,,0.25,0.22,0.38,0.800992928,17102,21351,0.775632469,0.826353386,0.417316693,3210,7692,0.356506894,0.478126492,0.023480948,342,14565,,,0.243,1865,,0.161978723,0.324021277,,,,,,,0.077702703,0,0.290078172,0.332153914,0.227705655,0.436602174,0.24364233,0.170347202,0.316937458,4.649219467,96197,20691,3.945996828,5.352442107,0.300783224,2381,7916,0.212191769,0.389374679,7.809327461,25,32013,,,93.82528211,148,157740,78.70899638,108.9415679,,,,,,,,,,38.72693987,19.33234885,69.29319291,109.361695,90.63394273,128.0894473,,,,8.2,,,,,0,,,,,0.109396278,1205,11015,0.080369709,0.138422847,0.082086796,0.057136099,0.107037493,0.029051294,0.013897057,0.04420553,0.007262823,0,0.01533027,0.826456763,11077,13403,0.780761883,0.872151644,,,,,,,,,,0.614780601,0.442370149,0.787191052,0.8794926,0.829520355,0.929464846,0.357,,13403,0.302529255,0.411470745,72.36835647,,,71.41781159,73.31890134,,,,,,,,,,84.16331605,74.20705488,94.11957721,71.5764805,70.4623072,72.6906538,,,,615.7185812,689,88177,568.1086217,663.3285407,,,,,,,992.9883064,702.6976252,1362.954032,253.425645,164.0037153,374.1062448,651.0410805,596.0320567,706.0501043,,,,58.66823115,20,34090,35.83607975,90.60832474,,,,,,,,,,,,,72.56235828,41.47565739,117.8367238,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.147,,,0.126,0.169,0.199,,,0.173,0.228,0.126,,,0.108,0.145,87.4,23,26321,,,0.146,4660,,,,0.057351047,1818.257577,31704,,,18.97093232,18,94882,11.24337681,29.98225192,,,,,,,,,,,,,23.72313704,13.81960155,37.98304049,,,,0.375,,,0.359,0.39,0.18596284,3463,18622,0.159750074,0.212175606,0.061914609,509,8221,0.04165929,0.082169928,0.000657648,21,31932,,,1520.571429,0.954480089,431.425,452,,,,,,,,2.567992701,,,,,,,,2.170231658,2.804919701,2.52922847,,,,,,,,2.294438018,2.652104802,0.174689292,,,,,-4702.0775,,,,,0.742349116,32189,43361,0.631719266,0.852978965,49611,,,43648.78723,55573.21277,53750,37228.80851,70271.19149,,,,,,,42520,34762.21277,50277.78723,50474,45890.34043,55057.65957,,,,,,0.381649485,1851,4850,,,67.77783987,,,,,0.330833888,,49611,,,2.595155709,6,2312,,,4.975934571,11,221064,2.48396861,8.903321442,,,,,,,,,,,,,5.924170616,2.840870081,10.89476069,,,,13.2578134,19,157740,7.857420455,20.95306095,12.04513757,,,,,,,,,,,,,16.00922672,9.150656323,25.99798122,,,,12.67909218,20,157740,7.744718895,19.58182953,,,,,,,,,,,,,14.19197569,8.26734883,22.72272788,,,,30.30796511,67,221064,23.48825667,38.49004434,,,,,,,,,,,,,33.76777251,25.57538114,43.750066,,,,16,,3500,,,56,0,0.572899112,12578,21955,,,0.593,,,,,16.36952593,,,,,0.73236053,8231,11239,0.695488887,0.769232174,0.092814654,983,10591,0.059376816,0.126252492,0.621852478,6989,11239,0.583634462,0.660070494,31932,,,,,0.245302518,7833,31932,,,0.176124264,5624,31932,,,0.038362771,1225,31932,,,0.018163598,580,31932,,,0.003883252,124,31932,,,0.002223475,71,31932,,,0.192189653,6137,31932,,,0.745834899,23816,31932,,,0.04233321,1257,29693,0.028823688,0.055842732,0.500062633,15968,31932,,,0.690499175,22174,32113,, -01,061,01061,AL,Geneva County,2024,1,14207.65745,686,72410,12509.26095,15906.05396,0,,,,2,,,,2,23935.58193,17176.58684,32471.3196,,,,,2,14013.76718,12159.17734,15868.35703,,,,,2,,0.225,,,0.191,0.259,4.757153429,,,3.81924715,5.787091791,6.234242676,,,5.050746555,7.456263841,0.085828343,172,2004,0.073564222,0.098092465,0,,,,,,,0.205714286,0.145823826,0.265604746,,,,0.076735688,0.063861163,0.089610213,,,,,,,0.222,,,0.18,0.266,0.416,,,0.336,0.496,6.4,0.03863991,0.19,,,0.363,,,0.306,0.421,0.350838366,9353,26659,,,0.134521264,,,0.105110157,0.168406761,0.275,11,40,0.192155924,0.361346198,468.1,125,26701,,,33.38806787,183,5481,28.55055856,38.22557718,,,,,,,29.87421384,17.98622825,46.65228549,42.07920792,24.51268928,67.37288816,32.28103489,26.85560612,37.70646367,,,,60.77348066,30.33790258,108.7405443,0.137473864,2893,21044,0.119601524,0.155346205,0.000299614,8,26701,,,3337.625,7.46742E-05,2,26783,,,13391.5,0.000298697,8,26783,,,3347.875,3206,,,,,,,4355,,3164,0.37,,,,,,,0.46,,0.37,0.37,,,,,,,0.35,,0.37,0.834000632,15831,18982,0.806860458,0.861140807,0.497897121,3078,6182,0.426316367,0.569477874,0.023963788,270,11267,,,0.254,1468,,0.163446809,0.344553192,,,,,,,0.525386314,0.196544804,0.854227823,0.679738562,0.568954182,0.790522942,0.148711656,0.090114728,0.207308585,4.693217781,96394,20539,4.06947652,5.316959041,0.195749057,1142,5834,0.13229714,0.259200975,8.9884274,24,26701,,,96.88308936,128,132118,80.09895044,113.6672283,,,,,,,131.6547355,75.25205672,213.7990422,,,,99.82575868,81.17045391,118.4810634,,,,9,,,,,0,,,,,0.12346263,1305,10570,0.092986344,0.153938916,0.112763916,0.080989835,0.144537996,0.012109745,0.004500231,0.019719259,0.000946074,0,0.004104092,0.878611085,9337,10627,0.843816016,0.913406154,,,,,,,,,,,,,0.82375,0.752477502,0.895022498,0.4,,10627,0.351821969,0.448178031,71.06176695,,,69.93474051,72.18879338,,,,,,,64.74333548,60.79638241,68.69028855,,,,71.03999266,69.80995206,72.27003327,,,,671.5781127,686,72410,617.7319605,725.4242649,,,,,,,981.437194,769.2900921,1234.009924,,,,673.5756029,615.3398121,731.8113937,,,,79.02015014,20,25310,48.26756059,122.040213,,,,,,,,,,,,,86.38650338,50.32332166,138.3131603,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.147,,,0.127,0.169,0.207,,,0.18,0.236,0.126,,,0.108,0.146,172,39,22677,,,0.19,5050,,,,0.03863991,1035.163198,26790,,,16.37630223,13,79383,8.719691232,28.00397556,,,,,,,,,,,,,15.14715461,7.263649398,27.85615663,,,,0.393,,,0.377,0.408,0.172330256,2632,15273,0.147308979,0.197351533,0.046898141,285,6077,0.032600268,0.061196013,0.000336034,9,26783,,,2975.888889,0.956960784,244.025,255,,,,,,,,3.05403059,,,,,,,2.802342267,2.86089073,3.137033855,2.868606676,,,,,,,2.603056823,2.401372441,2.966963881,0.03568783,,,,,-5664.6145,,,,,0.846576905,41561,49093,0.702507404,0.990646407,51585,,,45554.87234,57615.12766,,,,78889,48789.59575,108988.4043,29041,19667.55319,38414.44681,38971,3606.404255,74335.59575,53198,47511.02128,58884.97872,,,,,,0.542219995,2164,3991,,,23.03387301,,,,,0.209809053,,51585,,,4.814305365,7,1454,,,5.390574042,10,185509,2.584989783,9.913457591,,,,,,,,,,,,,,,,,,,19.25135747,24,132118,12.20370923,28.88648853,18.16557926,,,,,,,,,,,,,22.17911905,13.89953583,33.57945278,,,,15.89488185,21,132118,9.839182386,24.29701535,,,,,,,,,,,,,16.33512415,9.681229836,25.81653865,,,,27.49192762,51,185509,20.46954587,36.14680764,,,,,,,,,,,,,29.04500039,21.18562259,38.86449571,,,,15.18518519,,2700,,,41,0,0.614800294,12545,20405,,,0.567,,,,,2.696455352,,,,,0.7573862,7870,10391,0.722125607,0.792646793,0.109418141,1070,9779,0.076223088,0.142613194,0.741314599,7703,10391,0.706648239,0.77598096,26783,,,,,0.21872083,5858,26783,,,0.211701452,5670,26783,,,0.089235709,2390,26783,,,0.012731957,341,26783,,,0.00466714,125,26783,,,0.000746742,20,26783,,,0.048986297,1312,26783,,,0.824776911,22090,26783,,,0.005710886,144,25215,0.00027451,0.011147263,0.508008812,13606,26783,,,0.994410893,26510,26659,, -01,063,01063,AL,Greene County,2024,1,15895.23601,220,21424,12456.84453,19333.62749,0,,,,2,,,,2,16782.48224,12861.51246,20703.45201,,,,,2,12170.6905,6480.380111,20812.25142,1,,,,2,,0.323,,,0.281,0.369,5.51040024,,,4.485153294,6.62294094,6.418519777,,,5.182011514,7.727997527,0.163884674,108,659,0.135621845,0.192147503,0,,,,,,,0.178571429,0.146849985,0.210292872,,,,,,,,,,,,,0.267,,,0.22,0.317,0.52,,,0.432,0.607,4,0.227564754,0.212,,,0.457,,,0.392,0.52,0.042690815,330,7730,,,0.094438469,,,0.072395401,0.119407129,0.380952381,16,42,0.30212788,0.457674376,1074.8,82,7629,,,50.98980204,85,1667,40.72884283,63.04967986,,,,,,,48.73026767,38.05874335,61.466602,,,,,,,,,,,,,0.112495486,623,5538,0.093431656,0.131559316,0.000393236,3,7629,,,2543,,0,7422,,,,0.000134735,1,7422,,,7422,4840,,,,,,,5609,,2533,0.35,,,,,,,0.32,,0.43,0.25,,,,,,,0.2,,0.37,0.818865847,4462,5449,0.748854074,0.88887762,0.545301069,969,1777,0.379464397,0.711137741,0.04379562,120,2740,,,0.465,745,,0.291042553,0.638957447,,,,,,,0.52351314,0.398860299,0.64816598,,,,0.068783069,0,0.256001569,5.426314257,74525,13734,3.921213236,6.931415277,0.659787736,1119,1696,0.483293959,0.836281512,7.864726701,6,7629,,,89.34554389,36,40293,62.57652053,123.6918931,,,,,,,71.8076803,45.51990958,107.7467777,,,,184.5280341,98.25340654,315.5485581,,,,9.3,,,,,0,,,,,0.132075472,420,3180,0.070726833,0.193424111,0.109562399,0.053417943,0.165706854,0.018553459,0,0.041922653,0.00754717,0,0.021849231,0.762211982,1654,2170,0.65211689,0.872307073,,,,,,,0.905008636,0.768057032,1,,,,,,,0.426,,2170,0.293203713,0.558796287,71.66523531,,,69.33351654,73.99695408,,,,,,,71.21989163,68.51139253,73.92839072,,,,,,,,,,707.7490469,220,21424,602.7478196,812.7502741,,,,,,,737.954419,617.5639131,858.344925,,,,626.6326029,422.7863858,894.5570046,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.178,,,0.154,0.203,0.22,,,0.19,0.249,0.203,,,0.178,0.231,479.7,31,6463,,,0.212,1670,,,,0.227564754,2058.323195,9045,,,,,,,,,,,,,,,,,,,,,,,,,,0.484,,,0.465,0.5,0.143962076,577,4008,0.11774931,0.170174842,0.031598513,51,1614,0.01849213,0.044704896,0.000269469,2,7422,,,3711,0.825,61.05,74,,,,,,,,2.467139733,,,,,,,2.450409655,,,2.569736548,,,,,,,2.543757171,,,,,,,,-46688.4,,,,,0.872001601,30500,34977,0.072458582,1.67154462,35449,,,30517.42553,40380.57447,,,,,,,26963,23869.89362,30056.10638,,,,63092,19995.82979,106188.1702,,,,,,0.853788687,800,937,,,28.89654284,,,,,0.37507405,,35449,,,1.85528757,1,539,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,45.45931391,26,57194,29.69553313,66.6084276,,,,,,,48.26890166,30.24986369,73.07969719,,,,,,,,,,13.75,,800,,,11,0,0.741459627,4775,6440,,,0.42,,,,,9.940035626,,,,,0.735376045,2112,2872,0.679758154,0.790993936,0.134630659,339,2518,0.065827781,0.203433537,0.560236769,1609,2872,0.478321392,0.642152145,7422,,,,,0.218404743,1621,7422,,,0.251010509,1863,7422,,,0.790083535,5864,7422,,,0.005119914,38,7422,,,0.003637834,27,7422,,,0,0,7422,,,0.021827001,162,7422,,,0.171112908,1270,7422,,,0.000418877,3,7162,0,0.012248186,0.535435193,3974,7422,,,1,7730,7730,, -01,065,01065,AL,Hale County,2024,1,15799.99979,395,40405,13401.26573,18198.73385,0,,,,2,,,,2,19512.95783,15961.48224,23064.43342,,,,,2,10765.6276,7869.005617,13662.24958,,,,,2,,0.262,,,0.226,0.301,4.85953715,,,3.874185394,5.884058962,6.010492722,,,4.780827481,7.227064298,0.122076023,167,1368,0.104727734,0.139424313,0,,,,,,,0.161640531,0.136581223,0.186699839,,,,0.058585859,0.037896824,0.079274893,,,,,,,0.229,,,0.187,0.271,0.461,,,0.373,0.544,6.6,0.069764913,0.164,,,0.395,,,0.334,0.453,0.50713561,7498,14785,,,0.115809842,,,0.090187146,0.145824498,0.47826087,11,23,0.376622098,0.570307191,1294.6,191,14754,,,32.93891909,103,3127,26.57760554,39.30023264,,,,,,,37.14859438,29.16963667,46.63665838,,,,24.03846154,15.55642485,35.48551125,,,,,,,0.124428823,1416,11380,0.106556482,0.142301163,0.000203335,3,14754,,,4918,0.000137033,2,14595,,,7297.5,0.000342583,5,14595,,,2919,5196,,,,,,,4729,,5524,0.34,,,,,,,0.32,,0.37,0.31,,,,,,,0.24,,0.37,0.805711423,8041,9980,0.759158278,0.852264567,0.500735944,1701,3397,0.404315396,0.597156491,0.038919644,232,5961,,,0.325,1120,,0.204659575,0.445340426,,,,,,,0.503759399,0.355868294,0.651650504,,,,0.107583774,0.038821651,0.176345897,6.538099377,90265,13806,4.83867417,8.237524584,0.491289199,1692,3444,0.360603661,0.621974737,6.777822963,10,14754,,,103.2426338,76,73613,81.34345276,129.2235515,,,,,,,106.0145593,77.32774705,141.8558214,,,,106.1207723,72.10391613,150.6299654,,,,9.4,,,,,0,,,,,0.154826958,850,5490,0.111643046,0.198010871,0.120303605,0.076756496,0.163850714,0.035519126,0.014013868,0.057024383,0.004371585,0,0.011107738,0.869354237,4658,5358,0.820373521,0.918334953,,,,,,,0.897928994,0.789811034,1,,,,0.881040892,0.76454499,0.997536794,0.514,,5358,0.413109623,0.614890378,70.21423874,,,68.65514241,71.77333507,,,,,,,67.37452577,65.24051722,69.50853432,,,,74.0078436,71.91468515,76.10100204,,,,726.2740843,395,40405,649.1309967,803.4171718,,,,,,,856.2678101,743.7959071,968.7397132,,,,568.1680096,465.2667473,671.0692718,,,,86.95070564,13,14951,46.29758873,148.6883548,,,,,,,131.2479493,67.8177306,229.2637542,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.151,,,0.13,0.174,0.205,,,0.178,0.233,0.157,,,0.135,0.179,531.2,65,12235,,,0.164,2440,,,,0.069764913,1099.495022,15760,,,,,,,,,,,,,,,,,,,,,,,,,,0.448,,,0.433,0.463,0.156935664,1266,8067,0.131914387,0.18195694,0.046370968,161,3472,0.030881606,0.061860329,0.000685166,10,14595,,,1459.5,0.925,161.875,175,,,,,,,,2.781441538,,,,,,,2.645002494,,3.074862687,2.586428052,,,,,,,2.410881309,,2.982631055,0.252461213,,,,,-14408.21,,,,,0.587586235,29129,49574,0.470071266,0.705101204,44702,,,38084.46809,51319.53192,,,,,,,23398,20376.38298,26419.61702,,,,63974,54039.3617,73908.6383,,,,,,0.691979522,1622,2344,,,25.95586185,,,,,0.297436356,,44702,,,5.107252298,5,979,,,17.36898478,18,103633,10.29396117,27.45048418,,,,,,,25.13362712,14.06710031,41.45409573,,,,,,,,,,13.77170021,12,73613,6.604065553,25.32664702,16.30146849,,,,,,,,,,,,,28.7504087,13.14651761,54.57723132,,,,36.6783041,27,73613,24.17123352,53.36500679,,,,,,,32.98230735,18.03173434,55.33870738,,,,44.50225935,23.69557884,76.10021881,,,,27.01842077,28,103633,17.95354439,39.04914066,,,,,,,31.83592768,19.16730813,49.71574466,,,,,,,,,,,,1500,,,18,-888,0.697879859,7900,11320,,,0.508,,,,,6.593941397,,,,,0.774939848,4187,5403,0.743238934,0.806640763,0.159368836,808,5070,0.109529304,0.209208368,0.70608921,3815,5403,0.660190376,0.751988044,14595,,,,,0.238643371,3483,14595,,,0.202603631,2957,14595,,,0.569099007,8306,14595,,,0.003288798,48,14595,,,0.003699897,54,14595,,,0.0004111,6,14595,,,0.016169921,236,14595,,,0.40020555,5841,14595,,,0.001669813,23,13774,,,0.524563207,7656,14595,,,1,14785,14785,, -01,067,01067,AL,Henry County,2024,1,11183.14921,377,47034,9260.020955,13106.27747,0,,,,2,,,,2,16204.56292,11389.50554,21019.6203,,,,,2,9635.417724,7597.241758,11673.59369,,,,,2,,0.202,,,0.172,0.236,4.234773561,,,3.351248691,5.22064341,5.629842913,,,4.534827028,6.818878038,0.113036304,137,1212,0.09520978,0.130862827,0,,,,,,,0.203821656,0.159264077,0.248379236,,,,0.084033613,0.065192791,0.102874436,,,,,,,0.195,,,0.157,0.238,0.383,,,0.307,0.467,7.3,0.080481034,0.127,,,0.326,,,0.271,0.386,0.185232707,3176,17146,,,0.134065572,,,0.105220852,0.167711379,0.307692308,4,13,0.157450571,0.460702037,756.1,132,17459,,,26.67457024,90,3374,21.44950449,32.78757552,,,,,,,29.06350915,19.15303566,42.28587992,,,,26.14678899,19.80332264,33.87619789,,,,,,,0.120491927,1597,13254,0.103811076,0.137172778,0.000343662,6,17459,,,2909.833333,0.000283206,5,17655,,,3531,0.000509771,9,17655,,,1961.666667,3304,,,,,,,3135,,3198,0.42,,,,,,,0.51,,0.4,0.36,,,,,,,0.28,,0.37,0.81530133,10241,12561,0.782841297,0.847761363,0.457656757,1832,4003,0.378688912,0.536624603,0.027080675,191,7053,,,0.226,796,,0.142595745,0.309404255,,,,,,,0.573829532,0.545513675,0.602145388,0.190476191,0,0.515173756,0.079019074,0.036006926,0.122031221,5.850461954,112715,19266,4.946668027,6.754255881,0.308152794,1081,3508,0.22378411,0.392521478,13.17372129,23,17459,,,97.39920921,84,86243,77.68942377,120.5868485,,,,,,,91.11617312,55.65612567,140.7215394,,,,105.0612858,80.73197665,134.4190232,,,,9.1,,,,,0,,,,,0.096872616,635,6555,0.071577613,0.12216762,0.091530692,0.063806633,0.119254751,0.007322655,0,0.014649156,0.000610221,0,0.004694827,0.876712329,6272,7154,0.849030488,0.904394169,,,,,,,0.779220779,0.691979211,0.866462348,,,,0.849372385,0.778459618,0.920285152,0.383,,7154,0.319896042,0.446103958,74.28570831,,,72.85428931,75.71712731,,,,,,,69.93553051,66.8523893,73.01867172,,,,75.5752394,73.96614735,77.18433144,,,,531.0165058,377,47034,472.4588821,589.5741295,,,,,,,705.5240653,569.963536,841.0845945,,,,483.3858845,417.1507201,549.621049,,,,70.80785324,11,15535,35.34702522,126.6948086,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.131,,,0.112,0.152,0.191,,,0.164,0.221,0.118,,,0.101,0.138,286.9,43,14986,,,0.127,2170,,,,0.080481034,1392.482845,17302,,,,,,,,,,,,,,,,,,,,,,,,,,0.393,,,0.378,0.406,0.145687885,1419,9740,0.123049587,0.168326183,0.052858684,196,3708,0.036177833,0.069539535,0.000226565,4,17655,,,4413.75,0.975,179.4,184,,,,,,,,2.815581462,,,,,,,2.629142429,,2.920503284,2.734985739,,,,,,,2.407483307,,2.872121409,0.06748602,,,,,-5646.676,,,,,0.796185011,41072,51586,0.754805425,0.837564598,56702,,,49319.53192,64084.46809,,,,162813,86467.12766,239158.8723,27938,17861.57447,38014.42553,31094,6880.553192,55307.44681,68424,64486.12766,72361.87234,,,,,,0.43488746,1082,2488,,,29.54784532,,,,,0.190875101,,56702,,,7.058823529,6,850,,,8.289949266,10,120628,3.9753529,15.24551186,,,,,,,,,,,,,,,,,,,24.7775051,23,86243,15.13474382,38.26684705,26.66883109,,,,,,,,,,,,,31.49955383,18.3496509,50.43383709,,,,25.5093167,22,86243,15.98655296,38.62141204,,,,,,,,,,,,,25.01459185,14.00047717,41.25776515,,,,19.06688331,23,120628,12.08676844,28.60968672,,,,,,,,,,,,,20.33809085,11.8476874,32.56325364,,,,,,1700,,,27,-888,0.687721894,9298,13520,,,0.507,,,,,22.45513171,,,,,0.81573437,5454,6686,0.781048185,0.850420555,0.07730908,493,6377,0.050403638,0.104214521,0.79015854,5283,6686,0.750270346,0.830046735,17655,,,,,0.202832059,3581,17655,,,0.236590201,4177,17655,,,0.24038516,4244,17655,,,0.005607477,99,17655,,,0.005890683,104,17655,,,0.000169924,3,17655,,,0.026961201,476,17655,,,0.703426791,12419,17655,,,0.003403635,56,16453,0,0.009718943,0.51396205,9074,17655,,,1,17146,17146,, -01,069,01069,AL,Houston County,2024,1,10816.14705,2079,295430,10110.43621,11521.85789,0,,,,2,,,,2,15582.00115,14005.45937,17158.54294,,6187.775466,3779.654008,9556.517348,1,9048.64907,8260.875903,9836.422237,,,,,2,,0.197,,,0.167,0.228,4.240030557,,,3.431802387,5.095162656,5.511785486,,,4.575143827,6.536162365,0.108061379,1000,9254,0.101735891,0.114386867,0,,,,0.068493151,0.027520294,0.109466007,0.16651446,0.153774637,0.179254283,0.057613169,0.03689681,0.078329527,0.077577868,0.070285198,0.084870538,,,,0.074074074,0.033744856,0.114403292,0.196,,,0.158,0.238,0.396,,,0.333,0.462,7.3,0.042421091,0.147,,,0.333,,,0.283,0.387,0.758204138,81281,107202,,,0.138883514,,,0.111208436,0.170908278,0.231707317,19,82,0.17540266,0.291509118,681.2,732,107458,,,32.47165533,716,22050,30.09315077,34.85015989,,,,,,,53.17951604,47.81840809,58.54062399,45.91368228,34.07801996,60.53146618,20.88509317,18.38925542,23.38093091,,,,28.31594635,17.04804943,44.21885778,0.12436318,10692,85974,0.111256797,0.137469563,0.000818925,88,107458,,,1221.113636,0.000638422,69,108079,,,1566.362319,0.001776478,192,108079,,,562.9114583,3448,,,,,,,6612,,2931,0.44,,,,,,0.35,0.47,0.53,0.44,0.42,,,,,,0.41,0.33,0.31,0.43,0.876150447,64829,73993,0.867669481,0.884631412,0.583862463,15724,26931,0.558532955,0.609191972,0.025916667,1244,48000,,,0.266,6377,,0.218340426,0.313659575,,,,0.052132701,0,0.39626462,0.462463968,0.433222946,0.49170499,0.386981402,0.311826509,0.462136295,0.12395196,0.104048572,0.143855348,5.189075442,115898,22335,4.911591582,5.466559302,0.331350997,8079,24382,0.306475897,0.356226096,11.07409407,119,107458,,,74.85992121,396,528988,67.48669015,82.23315227,,,,,,,62.74662911,50.45569958,77.12626002,,,,83.07051541,73.5095009,92.63152992,,,,8.1,,,,,0,,,,,0.127811989,5085,39785,0.118457754,0.137166225,0.115831202,0.106087955,0.125574449,0.014075657,0.010869176,0.017282138,0.004272967,0.002880278,0.005665657,0.857926991,38919,45364,0.850241038,0.865612943,,,,0.702811245,0.401083471,1,0.836939531,0.806314102,0.86756496,0.764841233,0.710992083,0.818690384,0.882838559,0.871821412,0.893855706,0.253,,45364,0.238407295,0.267592705,74.09318771,,,73.55625737,74.63011805,,,,,,,69.89123837,68.80602092,70.97645582,82.14282624,76.16422766,88.12142482,75.49465822,74.87840769,76.11090874,,,,532.2290745,2079,295430,508.3089675,556.1491815,,,,,,,741.3097473,684.1318454,798.4876491,299.8925821,192.146836,446.2163905,471.6365148,444.7642387,498.5087909,,,,74.26207934,79,106380,58.79398755,92.55270837,,,,,,,123.2762822,89.2156567,166.0523431,,,,51.82126678,35.21003657,73.55615169,,,,9.686793671,90,9291,7.789326029,11.906714,,,,,,,16.84017146,12.68632179,21.91979791,,,,5.312084993,3.5298419,7.677441841,,,,,,,0.128,,,0.109,0.148,0.189,,,0.163,0.215,0.117,,,0.101,0.137,418.1,377,90177,,,0.147,15600,,,,0.042421091,4307.734556,101547,,,12.50312578,40,319920,8.932416367,17.0257086,,,,,,,,,,,,,15.71211595,10.81549766,22.06565249,,,,0.404,,,0.39,0.418,0.158517947,9853,62157,0.140645606,0.176390287,0.038002475,952,25051,0.02847056,0.04753439,0.002017043,218,108079,,,495.7752294,0.894076246,914.64,1023,,,0.073272438,369,5036,0.052034942,0.094509935,2.972277798,,,,,,,2.486318215,2.700027819,3.40688838,2.770071872,,,,,,,2.246370293,2.615202168,3.204492032,0.173383237,,,,,-8717.0535,,,,,0.71677889,39387,54950,0.68593928,0.7476185,56842,,,53496.29787,60187.70213,,,,110625,81733.76596,139516.234,35137,32729,37545,51406,36033.40426,66778.59575,64729,62499.7234,66958.2766,,,,,,0.550575196,7849,14256,,,45.59263407,,,,,0.184317934,,56842,,,9.367321867,61,6512,,,8.952587908,66,737217,6.92393084,11.38988689,,,,,,,22.6570131,16.52618083,30.31686613,,,,3.68162908,2.181966722,5.818561192,,,,18.22912731,99,528988,14.71325842,22.3319125,18.7149803,,,,,,,,,,,,,23.97703715,19.01229927,29.84149824,,,,20.60538235,109,528988,16.73705249,24.47371221,,,,,,,24.40146688,16.99651575,33.93653344,,,,20.62440383,16.13732579,25.97302329,,,,17.22694946,127,737217,14.2308061,20.22309283,,,,,,,15.1046754,10.19106106,21.56286334,,,,17.79454055,14.25269752,21.94950003,,,,22.79279279,,11100,,,181,72,0.578427811,46173,79825,,,0.623,,,,,74.32011828,,,,,0.654646992,27196,41543,0.644951734,0.664342251,0.127212917,5066,39823,0.11660278,0.137823054,0.825939388,34312,41543,0.816060133,0.835818643,108079,,,,,0.225640504,24387,108079,,,0.188093894,20329,108079,,,0.272966996,29502,108079,,,0.005921594,640,108079,,,0.012213288,1320,108079,,,0.001082542,117,108079,,,0.038952988,4210,108079,,,0.650514901,70307,108079,,,0.005355365,538,100460,,,0.51970318,56169,108079,,,0.34316524,36788,107202,, -01,071,01071,AL,Jackson County,2024,1,13259.46486,1411,142687,12142.23466,14376.69507,0,,,,2,,,,2,11994.07289,7424.520161,18334.21449,1,,,,2,13863.07868,12657.29159,15068.86576,,,,,2,,0.208,,,0.173,0.245,4.497269611,,,3.584682444,5.558062998,6.101278778,,,4.939045864,7.388155649,0.089358452,351,3928,0.080437486,0.098279418,0,,,,,,,0.175925926,0.104114716,0.247737136,0.071428571,0.037701728,0.105155415,0.088370754,0.07893222,0.097809289,,,,,,,0.216,,,0.17,0.263,0.377,,,0.296,0.46,6.8,0.053704165,0.166,,,0.332,,,0.274,0.392,0.375777402,19758,52579,,,0.140006196,,,0.109750543,0.175594178,0.215384615,14,65,0.152573199,0.283527275,265.3,140,52773,,,29.15057915,302,10360,25.86282157,32.43833673,,,,,,,,,,56.39097744,38.04675568,80.50162668,28.52367688,25.02952646,32.0178273,,,,,,,0.138290746,5780,41796,0.120418405,0.156163086,0.000511625,27,52773,,,1954.555556,0.000321416,17,52891,,,3111.235294,0.000548297,29,52891,,,1823.827586,2484,,,,,,,5459,,2442,0.46,,,,,,,0.46,,0.46,0.39,,,,,,,0.33,,0.39,0.820347408,31028,37823,0.799458045,0.841236771,0.511845686,6395,12494,0.455831143,0.567860229,0.025145568,583,23185,,,0.209,2223,,0.137510638,0.280489362,,,,,,,,,,0.724444444,0.598427872,0.850461017,0.234187658,0.184043482,0.284331835,4.700622121,98981,21057,4.21145468,5.189789562,0.270479705,2932,10840,0.2260925,0.31486691,8.337596877,44,52773,,,94.36651183,245,259626,82.54995546,106.1830682,,,,,,,,,,,,,101.2320897,88.2613022,114.2028772,,,,8.6,,,,,0,,,,,0.104100172,2120,20365,0.086265915,0.121934429,0.075990911,0.05923425,0.092747572,0.024551927,0.014365035,0.03473882,0.00662902,0.001454526,0.011803515,0.852219947,17064,20023,0.845941428,0.858498467,,,,,,,,,,,,,0.833702116,0.818540234,0.848863998,0.403,,20023,0.364612587,0.441387413,71.51022546,,,70.7513341,72.26911683,,,,,,,71.71652572,67.26659618,76.16645527,,,,70.94368827,70.15090878,71.73646775,,,,675.3836031,1411,142687,637.6944131,713.0727931,,,,,,,728.286974,542.2574883,957.5628716,,,,706.9743705,666.2470169,747.7017242,,,,61.28875457,29,47317,41.04604083,88.02087503,,,,,,,,,,,,,59.89667823,38.37693193,89.12150938,,,,6.144393241,24,3906,3.936828688,9.142370096,,,,,,,,,,,,,6.658946149,4.221200648,9.991688736,,,,,,,0.14,,,0.119,0.163,0.201,,,0.173,0.231,0.116,,,0.098,0.135,101.8,46,45203,,,0.166,8730,,,,0.053704165,2858.511566,53227,,,,,,,,,,,,,,,,,,,,,,,,,,0.402,,,0.383,0.42,0.170604778,5278,30937,0.14677499,0.194434565,0.048477424,554,11428,0.032988062,0.063966786,0.000869713,46,52891,,,1149.804348,0.941410488,520.6,553,,,0.105557949,245,2321,0.053292162,0.157823737,3.058069377,,,,,,,2.59621433,2.670016945,3.072300841,2.727648275,,,,,,,2.414168622,2.683648401,2.693399988,0.107370985,,,,,-1940.8055,,,,,0.668948867,35467,53019,0.575091963,0.762805772,51965,,,45709.68085,58220.31915,46534,15865.06383,77202.93617,43385,27852.74468,58917.25532,36625,19502.10638,53747.89362,27763,11340.70213,44185.29787,47829,44345.08511,51312.91489,,,,,,0.538169438,4110,7637,,,53.9479856,,,,,0.222765323,,51965,,,4.062038405,11,2708,,,4.942570082,18,364183,2.929280274,7.811391599,,,,,,,,,,,,,4.929872563,2.817848127,8.005804185,,,,18.79309199,55,259626,13.90323291,24.84546426,21.18431898,,,,,,,,,,,,,19.78153164,14.5347254,26.30524354,,,,23.11016616,60,259626,17.63549142,29.74736483,,,,,,,,,,,,,24.65909878,18.6765606,31.94872266,,,,31.30294385,114,364183,25.55663681,37.04925089,,,,,,,,,,,,,32.96852276,26.72163547,39.21541006,,,,11.6,,5000,,,58,0,0.584398566,23636,40445,,,0.607,,,,,14.59761983,,,,,0.761151427,15733,20670,0.73624569,0.786057165,0.093364198,1815,19440,0.073617361,0.113111034,0.832027092,17198,20670,0.813109297,0.850944888,52891,,,,,0.204269157,10804,52891,,,0.210300429,11123,52891,,,0.033068008,1749,52891,,,0.015238888,806,52891,,,0.00616362,326,52891,,,0.001418011,75,52891,,,0.034826341,1842,52891,,,0.885859598,46854,52891,,,0.007159284,358,50005,0.00214712,0.012171448,0.506210887,26774,52891,,,0.753095342,39597,52579,, -01,073,01073,AL,Jefferson County,2024,1,12625.67617,13080,1852107,12310.09677,12941.25558,0,,,,2,3178.766162,2188.116361,4464.169544,,16301.95923,15753.1731,16850.74536,,8738.660246,7455.673651,10021.64684,,10016.60225,9620.590731,10412.61377,,,,,2,,0.185,,,0.16,0.211,3.909296001,,,3.237878736,4.711032838,5.810469551,,,5.038772729,6.667496141,0.114642099,6645,57963,0.112048445,0.117235754,0,,,,0.098817568,0.081819339,0.115815796,0.161100976,0.156563241,0.165638711,0.075226467,0.067971879,0.082481055,0.077966234,0.074681013,0.081251455,,,,0.099009901,0.078415474,0.119604328,0.164,,,0.133,0.199,0.393,,,0.35,0.441,6.9,0.125866386,0.127,,,0.295,,,0.255,0.337,0.797418489,538035,674721,,,0.147204023,,,0.123998637,0.173318755,0.129979036,62,477,0.109238642,0.152324044,873,5830,667820,,,21.89284463,3186,145527,21.13263147,22.65305778,,,,,,,30.31933457,29.0178989,31.62077025,58.31713413,52.73978798,63.89448028,9.549518623,8.792926457,10.30611079,,,,24.07825433,18.54318982,30.74739323,0.10341124,55170,533501,0.095070815,0.111751666,0.001111078,742,667820,,,900.0269542,0.000939272,625,665409,,,1064.6544,0.002461644,1638,665409,,,406.2326007,2957,,,,,,559,3772,1074,2558,0.45,,,,,,0.33,0.4,0.18,0.47,0.44,,,,,,0.49,0.32,0.28,0.48,0.910633925,416442,457310,0.905350042,0.915917807,0.694908084,126483,182014,0.67485823,0.714957938,0.025818924,8347,323290,,,0.214,31449,,0.181829787,0.246170213,0.306060606,0.028777468,0.583343744,0.157773513,0.090583829,0.224963196,0.348959459,0.322910882,0.375008035,0.351577314,0.300197261,0.402957367,0.069607281,0.055076384,0.084138177,5.457614131,135327,24796,5.21025567,5.704972593,0.359029171,54585,152035,0.338857547,0.379200795,13.91093408,929,667820,,,115.0222166,3796,3300232,111.3631131,118.6813202,,,,25.57152355,14.31218761,42.1763393,127.808601,121.9431186,133.6740834,69.37037065,55.99084216,84.98339066,113.2500055,108.0865158,118.4134953,,,,10.7,,,,,0,,,,,0.157505686,41550,263800,0.149017103,0.165994269,0.138766988,0.130903837,0.14663014,0.014006823,0.011476548,0.016537099,0.011732373,0.008895172,0.014569574,0.797251667,244136,306222,0.78778735,0.806715984,0.81626188,0.765873115,0.866650645,0.704731948,0.637008352,0.772455543,0.79519132,0.77612741,0.81425523,0.729498337,0.685932664,0.773064011,0.846567871,0.835850572,0.857285169,0.34,,306222,0.327390462,0.352609538,72.92252275,,,72.69229449,73.15275101,,,,84.05809658,81.50474171,86.61145144,70.10414254,69.72884684,70.47943823,92.14726901,82.75573723,101.5388008,74.95478364,74.65438014,75.25518715,,,,573.1508743,13080,1852107,562.9652519,583.3364966,,,,161.0590754,120.2866211,211.2075495,714.3509287,696.8930912,731.8087662,340.785499,287.5808682,393.9901299,482.5704628,469.5824416,495.558484,,,,85.985038,574,667558,78.95070356,93.01937245,,,,,,,121.8124409,109.564702,134.0601798,67.14413608,46.21893378,94.29533098,52.30087793,43.78790898,60.81384688,,,,9.399132909,555,59048,8.617149803,10.18111602,,,,,,,13.94849785,12.51554197,15.38145374,5.929257821,3.970917019,8.515403279,5.468268638,4.568850294,6.367686983,,,,,,,0.117,,,0.102,0.134,0.177,,,0.155,0.2,0.126,,,0.11,0.143,678.5,3790,558597,,,0.127,85570,,,,0.125866386,82878.73575,658466,,,40.77235352,808,1981735,37.96099539,43.58371165,,,,,,,35.52410281,31.53725856,39.51094706,14.59374658,7.540801815,25.49233834,49.01111363,44.61734996,53.4048773,,,,0.38,,,0.366,0.393,0.130383875,50333,386037,0.118468982,0.142298769,0.035984824,5558,154454,0.027644398,0.04432525,0.001962703,1306,665409,,,509.5015314,0.907802305,6538.9,7203,,,0.073514906,2683,36496,0.058302486,0.088727325,2.78853869,,,,,,3.445286906,2.379602624,2.305758851,3.455145043,2.600071796,,,,,,3.571736593,2.108575082,2.327324516,3.30688529,0.346181665,,,,,-16854.82033,,,,,0.794596577,47675,59999,0.760067151,0.829126002,61996,,,59888.25532,64103.74468,41976,31913.87234,52038.12766,80087,71822.82979,88351.17021,44423,42490.40426,46355.59575,49322,42949.91489,55694.08511,84059,80675.17021,87442.82979,,,,,,0.493557007,47839,96927,,,64.08473349,,,,,0.331634299,,61996,,,7.235105581,307,42432,,,24.71797269,1142,4620120,23.2843467,26.15159869,,,,,,,48.92269712,45.85180786,51.99358638,10.88986535,6.651812665,16.81851381,6.094763118,5.085164182,7.104362055,,,,14.06350712,470,3300232,12.76365208,15.36336217,14.24142303,,,,,,,7.783161885,6.295249085,9.271074684,10.04659635,5.191222938,17.54938199,19.82802,17.63684978,22.01919022,,,,33.75520267,1114,3300232,31.77297198,35.73743335,,,,,,,53.46379527,49.67017736,57.25741319,15.66427724,9.6964345,23.94451171,19.91680292,17.75142344,22.0821824,,,,16.68787824,771,4620120,15.5099197,17.86583678,,,,,,,19.31819322,17.38848249,21.24790395,19.60175762,13.72883006,27.13709496,15.06277171,13.47560364,16.64993977,,,,7.435508346,,65900,,,344,146,0.660125807,325848,493615,,,0.641,,,,,129.5102735,,,,,0.640932451,170356,265794,0.63248521,0.649379693,0.152369692,39049,256278,0.144333056,0.160406328,0.869635883,231144,265794,0.861823532,0.877448235,665409,,,,,0.225005974,149721,665409,,,0.170983561,113774,665409,,,0.433588966,288514,665409,,,0.002892958,1925,665409,,,0.01897179,12624,665409,,,0.000488421,325,665409,,,0.044004515,29281,665409,,,0.487880386,324640,665409,,,0.010323383,6512,630801,0.008503685,0.01214308,0.525240867,349500,665409,,,0.120709152,81445,674721,, -01,075,01075,AL,Lamar County,2024,1,11619.72235,340,37129,9542.746217,13696.69848,0,,,,2,,,,2,23490.0672,13921.70255,37124.43336,1,,,,2,10677.97961,8626.179619,12729.77959,,,,,2,,0.207,,,0.174,0.239,4.508710486,,,3.559298435,5.52043615,5.998327859,,,4.780162051,7.269886026,0.09141791,98,1072,0.074165237,0.108670584,0,,,,,,,0.177570094,0.105160095,0.249980092,,,,0.078663793,0.061342569,0.095985018,,,,,,,0.217,,,0.175,0.258,0.387,,,0.305,0.474,7.2,0.004162538,0.168,,,0.346,,,0.288,0.407,0.088391068,1235,13972,,,0.138115446,,,0.107521161,0.172816159,0.173913044,4,23,0.074750573,0.296760504,409.1,56,13689,,,38.69801085,107,2765,31.36549814,46.03052356,,,,,,,40.88050315,21.7671462,69.9069054,,,,39.20723826,31.56722253,48.13780048,,,,,,,0.119182747,1260,10572,0.101310407,0.137055087,,0,13689,,,,0.000218898,3,13705,,,4568.333333,0.000218898,3,13705,,,4568.333333,3265,,,,,,,2992,,3143,0.43,,,,,,,0.43,,0.43,0.38,,,,,,,0.25,,0.39,0.820699414,8120,9894,0.789665719,0.851733108,0.476038339,1490,3130,0.379104445,0.572972232,0.027078966,155,5724,,,0.225,663,,0.138021277,0.311978723,0.020833333,0,0.726103522,,,,0.717857143,0.448409572,0.987304713,,,,0.122097678,0.052219702,0.191975654,5.292790916,101611,19198,4.525841348,6.059740484,0.182088566,551,3026,0.105571405,0.258605727,8.766162612,12,13689,,,105.7235546,73,69048,82.87039005,132.9314972,,,,,,,,,,,,,112.929596,87.51888575,143.416595,,,,8.9,,,,,0,,,,,0.113676732,640,5630,0.075463328,0.151890135,0.084946237,0.052388058,0.117504416,0.019538188,0,0.039139931,0.011545293,0,0.025720699,0.86537725,4519,5222,0.813817991,0.916936509,,,,,,,,,,,,,0.854236343,0.789548988,0.918923699,0.395,,5222,0.324530682,0.465469319,73.10950146,,,71.60534876,74.61365416,,,,,,,,,,,,,73.49086451,71.97867018,75.00305884,,,,610.3088563,340,37129,540.9688445,679.6488682,,,,,,,900.8861418,640.618114,1231.541013,,,,594.4127033,521.8928446,666.932562,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.138,,,0.118,0.159,0.201,,,0.174,0.229,0.115,,,0.098,0.134,205.7,24,11667,,,0.168,2350,,,,0.004162538,60.62319601,14564,,,,,,,,,,,,,,,,,,,,,,,,,,0.396,,,0.379,0.411,0.146989836,1128,7674,0.123160049,0.170819623,0.048165138,147,3052,0.032675776,0.063654499,0.000802627,11,13705,,,1245.909091,0.925,139.675,151,,,,,,,,3.088662981,,,,,,,,,3.127506327,3.050683052,,,,,,,,,3.042825568,0.016076779,,,,,-3915.783,,,,,0.820969294,37538,45724,0.670115085,0.971823504,51523,,,44807.76596,58238.23404,,,,,,,26731,6211.170213,47250.82979,,,,53730,48738.85106,58721.14894,,,,,,0.501808318,1110,2212,,,19.53241818,,,,,0.258059507,,51523,,,6.157635468,5,812,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.48267872,10,69048,6.945007381,26.6341618,,,,,,,,,,,,,16.85516358,8.08270609,30.99724594,,,,32.00759922,31,96852,21.74761077,45.43223217,,,,,,,,,,,,,33.63322963,22.34903684,48.6093812,,,,15,,1400,,,21,0,0.670363467,7193,10730,,,0.557,,,,,6.11400856,,,,,0.746517028,3858,5168,0.707908622,0.785125434,0.068908942,336,4876,0.037062329,0.100755555,0.703366873,3635,5168,0.66215909,0.744574657,13705,,,,,0.217657789,2983,13705,,,0.225465159,3090,13705,,,0.100912076,1383,13705,,,0.00445093,61,13705,,,0.001240423,17,13705,,,0.000145932,2,13705,,,0.021160161,290,13705,,,0.855600146,11726,13705,,,0.000541,7,12939,0,0.007508502,0.505508938,6928,13705,,,1,13972,13972,, -01,077,01077,AL,Lauderdale County,2024,1,9455.793252,1720,255841,8742.951657,10168.63485,0,,,,2,,,,2,14549.15362,11771.4019,17326.90535,,,,,2,9074.316692,8314.167875,9834.465508,,,,,2,,0.178,,,0.149,0.208,4.094530924,,,3.230659827,5.031930405,5.842149817,,,4.728542911,6.977814092,0.093550894,602,6435,0.086435851,0.100665936,0,,,,,,,0.174540682,0.14758969,0.201491675,0.088757396,0.058438248,0.119076545,0.081938498,0.074438884,0.089438111,,,,,,,0.185,,,0.147,0.229,0.38,,,0.304,0.46,7.3,0.064706819,0.137,,,0.306,,,0.254,0.365,0.545412766,51031,93564,,,0.153311848,,,0.121721474,0.191572151,0.144736842,11,76,0.091703731,0.206906382,462.6,435,94043,,,17.37486496,386,22216,15.64152457,19.10820535,,,,,,,17.1096853,12.92447241,22.21834953,40.37267081,28.70891562,55.19077005,16.38189184,14.45960575,18.30417794,,,,18.34862385,9.481001695,32.05135329,0.127145503,9267,72885,0.110464652,0.143826354,0.000542305,51,94043,,,1843.980392,0.000584076,56,95878,,,1712.107143,0.001804376,173,95878,,,554.2080925,2400,,,,,,,3226,,2348,0.38,,,,,,0.2,0.36,,0.38,0.47,,,,,,0.4,0.36,0.29,0.47,0.887878694,57325,64564,0.874182015,0.901575373,0.555381062,12024,21650,0.510309463,0.600452662,0.026351965,1131,42919,,,0.188,3401,,0.128425532,0.247574468,0.753424658,0.373484677,1,,,,0.476805356,0.379824492,0.57378622,0.095559846,0,0.197257124,0.124823596,0.093797907,0.155849285,4.841128306,112929,23327,4.401167325,5.281089288,0.261082389,4747,18182,0.212871934,0.309292845,13.92979807,131,94043,,,79.77379506,371,465065,71.65616287,87.89142725,,,,,,,65.37514437,44.10833538,93.3270836,,,,84.52009389,75.42835404,93.61183374,,,,8,,,,,0,,,,,0.124496949,4795,38515,0.107111508,0.141882391,0.106377383,0.0899643,0.122790467,0.009476827,0.004853997,0.014099657,0.011294301,0.005994896,0.016593706,0.831440011,35717,42958,0.812884075,0.849995948,,,,,,,0.827021744,0.773053023,0.880990466,0.686250757,0.564745126,0.807756388,0.848164842,0.826339166,0.869990519,0.329,,42958,0.299165144,0.358834856,75.3650407,,,74.80824332,75.92183807,,,,,,,70.98753062,69.01523981,72.95982144,,,,75.5982425,75.00975788,76.18672713,,,,482.8126128,1720,255841,458.3379303,507.2872953,,,,,,,699.7717198,600.3908977,799.1525419,,,,471.3033195,445.3411504,497.2654886,,,,46.25017789,39,84324,32.88839772,63.22551571,,,,,,,,,,,,,39.72801589,25.95165897,58.21074808,,,,6.678055599,43,6439,4.832941949,8.995297066,,,,,,,,,,,,,6.037000974,4.101849266,8.569040994,,,,,,,0.122,,,0.104,0.143,0.185,,,0.16,0.214,0.108,,,0.092,0.127,123.4,100,81063,,,0.137,12740,,,,0.064706819,5998.904503,92709,,,12.49375312,35,280140,8.702356823,17.37578617,,,,,,,,,,,,,13.54153443,9.262399522,19.11660619,,,,0.403,,,0.384,0.42,0.15635209,8519,54486,0.134905282,0.177798899,0.04320033,838,19398,0.030093947,0.056306713,0.001209871,116,95878,,,826.5344828,0.961463415,906.66,943,,,0.036624848,181,4942,0.013223531,0.060026166,3.130774043,,,,,,,2.569234109,2.941420368,3.262844144,3.015394475,,,,,,,2.560568125,3.331649982,3.069390954,0.192259912,,,,,-2980.85849,,,,,0.734553404,40659,55352,0.665001129,0.804105679,59023,,,53220.44681,64825.55319,51397,46507.12766,56286.87234,,,,31670,21062.17021,42277.82979,58063,46697.38298,69428.61702,60539,55272.61702,65805.38298,,,,,,0.466023983,5946,12759,,,51.45467778,,,,,0.269217085,,59023,,,5.904681569,28,4742,,,6.307896101,41,649979,4.526655149,8.557373325,,,,,,,,,,,,,5.095578494,3.385974904,7.364529668,,,,13.25268082,63,465065,10.06331617,17.13216315,13.5464935,,,,,,,,,,,,,14.48412786,10.88092263,18.89864499,,,,14.19156462,66,465065,10.97575505,18.05514981,,,,,,,,,,,,,13.74724419,10.32735294,17.93717163,,,,21.53915742,140,649979,17.97119095,25.10712388,,,,,,,20.11823331,10.71211194,34.40279167,,,,22.74811828,18.76019731,26.73603924,,,,19.52941177,,8500,,,147,19,0.604444142,44339,73355,,,0.671,,,,,64.79091291,,,,,0.675131417,25815,38237,0.657994582,0.692268252,0.110481195,3995,36160,0.094855353,0.126107037,0.803854905,30737,38237,0.784876154,0.822833656,95878,,,,,0.191973133,18406,95878,,,0.207805753,19924,95878,,,0.099814347,9570,95878,,,0.005016792,481,95878,,,0.01062809,1019,95878,,,0.000813534,78,95878,,,0.03188427,3057,95878,,,0.835999917,80154,95878,,,0.009079552,814,89652,0.005184697,0.012974408,0.518210643,49685,95878,,,0.521632252,48806,93564,, -01,079,01079,AL,Lawrence County,2024,1,13336.11248,843,91171,11924.0166,14748.20837,0,,,,2,,,,2,22726.00044,16425.89871,29026.10218,,,,,2,13694.9633,12074.66348,15315.26311,,,,,2,,0.209,,,0.179,0.242,4.477922159,,,3.583072215,5.47147973,6.002357859,,,4.830077578,7.2250235,0.08444097,216,2558,0.073665764,0.095216176,0,,,,,,,0.147959184,0.098250851,0.197667517,0.081300813,0.03300187,0.129599756,0.07875895,0.0672244,0.0902935,,,,0.111111111,0.051839508,0.170382715,0.218,,,0.18,0.262,0.413,,,0.333,0.496,7.1,0.053540348,0.15,,,0.332,,,0.278,0.39,0.56493212,18684,33073,,,0.143979373,,,0.112747695,0.17871733,0.2,10,50,0.129217574,0.278985135,305.2,101,33090,,,33.79321036,218,6451,29.30723094,38.27918977,,,,,,,30.34901366,18.53796599,46.87159014,44.64285714,21.40798525,82.09980376,38.66548829,32.93672938,44.39424721,,,,29.41176471,15.19748801,51.37643394,0.149383503,3986,26683,0.130319673,0.168447332,0.000181324,6,33090,,,5515,9.03234E-05,3,33214,,,11071.33333,0.001294635,43,33214,,,772.4186047,4215,,,,,,,2821,,4400,0.38,,,,,,,0.51,,0.36,0.36,,,,,,,0.3,,0.37,0.826646222,19408,23478,0.792761873,0.860530571,0.507615513,3966,7813,0.435940277,0.579290749,0.024089028,355,14737,,,0.224,1587,,0.147744681,0.300255319,0.068259386,0,0.213095337,,,,0.195255475,0.048241952,0.342268997,,,,0.232718894,0.151390869,0.31404692,4.43356701,107514,24250,3.78103755,5.08609647,0.199944228,1434,7172,0.140253581,0.259634874,10.27500756,34,33090,,,101.2876265,167,164877,85.92539769,116.6498554,,,,,,,119.9246188,74.23522919,183.3175189,,,,113.4722509,94.8737593,132.0707425,,,,8.5,,,,,0,,,,,0.090836653,1140,12550,0.070070089,0.111603218,0.076329679,0.056059267,0.096600091,0.011155379,0.004021744,0.018289013,0.004780877,0,0.010213381,0.897376093,12312,13720,0.880895168,0.913857019,,,,,,,,,,,,,0.872503187,0.809439541,0.935566834,0.515,,13720,0.453433311,0.576566689,71.56507678,,,70.59902413,72.53112944,,,,,,,66.82450465,63.26987833,70.37913097,,,,70.71286039,69.63639509,71.7893257,,,,663.1404982,843,91171,615.5900544,710.690942,,,,,,,950.799384,763.5878498,1138.010918,,,,699.9404141,644.862132,755.0186963,,,,89.75509681,28,31196,59.64161,129.7211051,,,,,,,,,,,,,105.2031736,67.40565842,156.5339832,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.139,,,0.12,0.16,0.199,,,0.173,0.228,0.118,,,0.102,0.137,89,25,28093,,,0.15,4970,,,,0.053540348,1838.522022,34339,,,,,,,,,,,,,,,,,,,,,,,,,,0.387,,,0.371,0.402,0.185640395,3625,19527,0.160619119,0.210661672,0.053051456,399,7521,0.036370605,0.069732307,0.000421509,14,33214,,,2372.428571,0.92,301.76,328,,,,,,,,2.863666439,,,,,,,1.945394022,,2.907058003,2.740176195,,,,,,,2.279230376,,2.783071654,0.071940095,,,,,-2966.779,,,,,0.780004433,42231,54142,0.690662063,0.869346802,55516,,,48134.7234,62897.2766,103935,79084.10638,128785.8936,115446,74204.97872,156687.0213,39177,33211.21277,45142.78723,52308,43532.68085,61083.31915,55856,50078.46809,61633.53192,,,,,,0.554575987,2642,4764,,,69.22793649,,,,,0.295644499,,55516,,,4.697592484,8,1703,,,6.054420592,14,231236,3.310008077,10.15828899,,,,,,,,,,,,,,,,,,,25.02315592,36,164877,17.22478915,35.14181442,21.83445841,,,,,,,,,,,,,31.53741459,21.42814312,44.76484262,,,,23.04748388,38,164877,16.30977131,31.63447232,,,,,,,,,,,,,25.39239181,17.3683772,35.84648084,,,,33.29931326,77,231236,26.27929728,41.61842814,,,,,,,60.54001695,33.88378792,99.85155132,,,,34.49796971,26.38821332,44.3140853,,,,,,3400,,,72,-888,0.625722092,16031,25620,,,0.635,,,,,15.06361194,,,,,0.794372126,10191,12829,0.767158527,0.821585725,0.075602234,907,11997,0.052069522,0.099134946,0.698417648,8960,12829,0.654729208,0.742106087,33214,,,,,0.216535196,7192,33214,,,0.191515626,6361,33214,,,0.100560005,3340,33214,,,0.057716626,1917,33214,,,0.002649485,88,33214,,,0.000301078,10,33214,,,0.028481965,946,33214,,,0.763683989,25365,33214,,,0.005547054,174,31368,0.000243717,0.010850392,0.50978503,16932,33214,,,0.999939528,33071,33073,, -01,081,01081,AL,Lee County,2024,1,7740.279088,2123,484246,7264.981102,8215.577074,0,,,,2,1989.126275,1136.957534,3230.216452,1,11962.99058,10693.1393,13232.84185,,4434.308535,2810.971232,6653.640027,1,6821.648367,6291.063693,7352.233041,,,,,2,,0.174,,,0.148,0.203,4.010207905,,,3.195814092,4.796529174,5.250816944,,,4.273531537,6.162018745,0.096016962,1268,13206,0.090992095,0.101041829,0,,,,0.103846154,0.077625658,0.130066649,0.148589706,0.136701843,0.160477569,0.080037665,0.063717444,0.096357886,0.074692443,0.068919234,0.080465652,,,,0.107784431,0.060750557,0.154818305,0.159,,,0.127,0.193,0.389,,,0.325,0.45,6.9,0.110690195,0.134,,,0.3,,,0.253,0.348,0.614998766,107158,174241,,,0.162421428,,,0.130097133,0.195034159,0.284210526,27,95,0.231499015,0.338264978,493.7,875,177218,,,12.9735555,626,48252,11.95724148,13.98986953,,,,,,,24.45679636,21.37539723,27.53819549,43.60753221,34.97451599,53.72569933,8.402856971,7.418610136,9.387103807,,,,,,,0.117301162,17375,148123,0.1018118,0.132790524,0.000496564,88,177218,,,2013.840909,0.000342972,62,180773,,,2915.693548,0.001211464,219,180773,,,825.4474886,2325,,,,,,,3879,,1980,0.37,,,,,,0.27,0.34,,0.38,0.41,,,,,,0.35,0.31,0.22,0.44,0.917121139,98209,107084,0.906792043,0.927450234,0.774258255,35125,45366,0.728685047,0.819831464,0.023544661,1871,79466,,,0.13,4783,,0.079957447,0.180042553,,,,0.02970852,0,0.101340007,0.36195062,0.295409237,0.428492002,0.208277103,0.10605431,0.310499896,0.093231756,0.06088064,0.125582871,6.552235709,126314,19278,5.915574517,7.188896901,0.250472875,9137,36479,0.215155322,0.285790428,8.182013114,145,177218,,,63.77856848,532,834136,58.35887129,69.19826568,,,,40.97760866,22.40283997,68.75346443,83.281941,70.29585226,96.26802974,,,,61.98570954,55.48239238,68.4890267,,,,10.1,,,,,0,,,,,0.177836325,10800,60730,0.161638185,0.194034464,0.151965812,0.134320663,0.169610961,0.035731928,0.02711636,0.044347497,0.005269224,0.002994467,0.007543982,0.805571728,65033,80729,0.786996052,0.824147404,,,,0.747633136,0.685343792,0.80992248,0.791010862,0.749464859,0.832556866,0.772645254,0.667000474,0.878290035,0.790198913,0.770756091,0.809641736,0.269,,80729,0.243950371,0.294049629,77.15682684,,,76.70754914,77.60610454,,,,99.66388037,73.75166319,125.5760975,73.04243447,72.02351867,74.06135026,109.9110973,67.36381052,152.458384,77.8800387,77.3690286,78.3910488,,,,399.8954398,2123,484246,382.5555413,417.2353384,,,,123.3240325,73.08963752,194.9051395,544.0767967,501.7588972,586.3946961,169.7213213,108.743653,252.5318728,377.2784786,357.0349034,397.5220538,,,,60.26085999,104,172583,48.67909557,71.84262442,,,,,,,136.4190012,103.0494475,177.1514202,,,,36.71408903,26.22908347,49.99416885,,,,6.884551369,91,13218,5.54301131,8.452703504,,,,,,,12.31033496,8.909050447,16.5819404,,,,4.376641241,3.048490984,6.086848489,,,,,,,0.12,,,0.104,0.137,0.172,,,0.147,0.195,0.113,,,0.097,0.129,218.6,330,150952,,,0.134,23020,,,,0.110690195,15523.9678,140247,,,10.42094728,53,508591,7.806004615,13.63085563,,,,,,,,,,,,,13.68435151,10.05474677,18.19728652,,,,0.363,,,0.348,0.377,0.144046605,16072,111575,0.124982776,0.163110435,0.039400551,1517,38502,0.027485657,0.051315444,0.000746793,135,180773,,,1339.059259,0.9054781,1467.78,1621,,,,,,,,3.101688832,,,,,,,2.718169175,2.619136276,3.375346862,2.998968313,,,,,,3.63661703,2.516771738,2.720453407,3.255065406,0.096340932,,,,,-5115.897,,,,,0.785684981,45961,58498,0.725198771,0.84617119,59637,,,54835.29787,64438.70213,,,,82774,65694,99854,39638,37091.78723,42184.21277,44609,36751.12766,52466.87234,69287,65972.2766,72601.7234,,,,,,0.382145097,9139,23915,,,32.2337602,,,,,0.255395141,,59637,,,4.807692308,47,9776,,,8.694744896,100,1150120,6.990574897,10.3989149,,,,,,,26.19351312,20.38011668,33.14956727,,,,3.606067982,2.396205986,5.211772259,,,,12.75433664,110,834136,10.30050022,15.20817306,13.187298,,,,,,,8.090610431,4.795008498,12.78665255,,,,14.53175182,11.48674679,18.13628394,,,,16.66394928,139,834136,13.89365053,19.43424804,,,,,,,31.09895265,23.67396366,40.1153831,,,,13.32071122,10.47758439,16.69762686,,,,13.82464439,159,1150120,11.67576778,15.97352099,,,,,,,18.60119048,13.76126312,24.59176028,,,,13.39396679,10.81972925,15.96820433,,,,8.93081761,,15900,,,136,6,0.57748232,71449,123725,,,0.619,,,,,82.82140932,,,,,0.652441457,42517,65166,0.634811057,0.670071857,0.165570782,10173,61442,0.146345768,0.184795796,0.860233864,56058,65166,0.842317277,0.878150452,180773,,,,,0.205932302,37227,180773,,,0.136109928,24605,180773,,,0.227235262,41078,180773,,,0.003601202,651,180773,,,0.042296139,7646,180773,,,0.000918279,166,180773,,,0.040476177,7317,180773,,,0.670614528,121229,180773,,,0.013262199,2195,165508,0.009678473,0.016845925,0.506552417,91571,180773,,,0.263898853,45982,174241,, -01,083,01083,AL,Limestone County,2024,1,8328.605774,1592,289839,7707.925261,8949.286287,0,,,,2,,,,2,7996.832878,6233.041438,9760.624319,,5690.419635,3839.302232,8123.427859,,8888.095863,8137.444107,9638.747619,,,,,2,,0.171,,,0.142,0.201,3.862648152,,,3.045010849,4.757269633,5.50746686,,,4.456816203,6.619672654,0.087875565,661,7522,0.081477473,0.094273658,0,,,,,,,0.157543391,0.131452493,0.183634289,0.075875486,0.059688146,0.092062827,0.08090379,0.073689162,0.088118418,,,,0.086330935,0.039640669,0.133021202,0.168,,,0.132,0.207,0.366,,,0.295,0.442,7.7,0.064263674,0.119,,,0.293,,,0.241,0.351,0.491541952,50909,103570,,,0.15129531,,,0.119818261,0.187683065,0.282051282,33,117,0.234757834,0.330507751,296.7,319,107517,,,20.70236801,438,21157,18.76354109,22.64119493,,,,,,,15.03759399,10.83777506,20.32645857,44.49064449,36.06054152,52.92074746,18.86792453,16.64192196,21.0939271,,,,,,,0.113295508,9964,87947,0.098997635,0.12759338,0.000344132,37,107517,,,2905.864865,0.000297565,33,110900,,,3360.606061,0.000568079,63,110900,,,1760.31746,2746,,,,,,,5532,,2556,0.42,,,,,,0.46,0.39,0.36,0.43,0.44,,,,,,0.58,0.33,0.31,0.45,0.873267002,63807,73067,0.857656136,0.888877868,0.652250787,18445,28279,0.602417673,0.702083901,0.020957898,1013,48335,,,0.138,3275,,0.096297872,0.179702128,0.309278351,0,0.648541671,,,,0.317866435,0.172263075,0.463469796,0.423106061,0.329578922,0.516633199,0.098645541,0.061570654,0.135720427,4.444526344,150745,33917,4.002842599,4.886210089,0.179471554,4123,22973,0.137010585,0.221932522,8.277760726,89,107517,,,63.89763559,319,499236,56.88557729,70.90969388,,,,,,,41.4704227,27.55679472,59.93630727,61.14042991,36.81053277,95.47835491,70.27871057,61.8329447,78.72447644,,,,8.6,,,,,0,,,,,0.099312452,3250,32725,0.082052381,0.116572524,0.077148588,0.063782028,0.090515149,0.019251337,0.011124482,0.027378192,0.006722689,0.003107558,0.010337821,0.841255416,39804,47315,0.820365793,0.862145039,,,,,,,0.825830549,0.769788762,0.881872335,0.799076213,0.651597285,0.94655514,0.809125648,0.789003397,0.829247899,0.408,,47315,0.373570287,0.442429713,76.43837444,,,75.89534735,76.98140153,,,,84.52575408,78.15950597,90.8920022,77.32552647,75.48208075,79.16897218,,,,75.81285418,75.19789027,76.42781809,,,,427.1878433,1592,289839,405.636697,448.7389896,,,,,,,418.2670871,359.1184511,477.415723,267.1218978,174.4928922,391.3954712,448.2676221,423.2493858,473.2858584,,,,50.71611149,50,98588,37.64247549,66.86287039,,,,,,,,,,,,,51.31061983,35.73972674,71.36065116,,,,5.572923746,41,7357,3.999226297,7.560300335,,,,,,,,,,,,,4.808581469,3.141125063,7.045685978,,,,,,,0.114,,,0.097,0.133,0.176,,,0.15,0.202,0.105,,,0.09,0.122,144.7,132,91206,,,0.119,12080,,,,0.064263674,5319.875434,82782,,,4.859716193,15,308660,2.719946262,8.015362817,,,,,,,,,,,,,5.147983063,2.66003797,8.9924904,,,,0.388,,,0.372,0.404,0.139432333,8980,64404,0.120368504,0.158496163,0.044748969,1107,24738,0.031642586,0.057855352,0.000649234,72,110900,,,1540.277778,0.893512304,1198.2,1341,,,0.088330478,464,5253,0.035436548,0.141224408,2.879799087,,,,,,,2.618602011,2.44850081,3.07121377,2.756358833,,,,,,,2.391624446,2.500076562,2.903069833,0.079808708,,,,,-3144.2535,,,,,0.717714268,47489,66167,0.629813891,0.805614646,83159,,,78824.3617,87493.6383,53531,43970.48936,63091.51064,162847,77933.12766,247760.8723,53476,41364.51064,65587.48936,53764,27433.2766,80094.7234,84890,80333.74468,89446.25532,,,,,,0.394143341,8843,22436,,,40.7866843,,,,,0.191079739,,83159,,,3.134796238,17,5423,,,6.582296256,45,683652,4.801172057,8.807630271,,,,,,,10.88174804,5.218221156,20.01192209,,,,5.573750327,3.732828071,8.004835217,,,,14.69685617,79,499236,11.56000969,18.42263647,15.82417935,,,,,,,,,,,,,17.10448571,13.25574149,21.72209222,,,,18.62846429,93,499236,15.0355749,22.82112729,,,,,,,,,,,,,20.60804295,16.28980277,25.71977026,,,,18.86924927,129,683652,15.61301353,22.125485,,,,,,,16.32262207,9.135647663,26.92168283,,,,20.18082015,16.32070523,24.04093506,,,,8.703703704,,10800,,,41,53,0.669545115,49235,73535,,,0.592,,,,,29.34534519,,,,,0.776936638,29968,38572,0.752642332,0.801230944,0.078917066,2947,37343,0.065251593,0.092582539,0.877683294,33854,38572,0.861838155,0.893528432,110900,,,,,0.217366997,24106,110900,,,0.15896303,17629,110900,,,0.14012624,15540,110900,,,0.008845807,981,110900,,,0.020883679,2316,110900,,,0.001650135,183,110900,,,0.066844004,7413,110900,,,0.744481515,82563,110900,,,0.009867519,972,98505,0.00581909,0.013915949,0.496645627,55078,110900,,,0.510128416,52834,103570,, -01,085,01085,AL,Lowndes County,2024,1,19376.98863,302,26812,15991.2624,22762.71486,0,,,,2,,,,2,21997.64539,17908.6063,26086.68447,,,,,2,13658.82797,7467.40835,22917.19242,1,,,,2,,0.278,,,0.238,0.317,4.823804679,,,3.820028014,5.857014548,5.969687433,,,4.752283279,7.218906959,0.146285714,128,875,0.122869899,0.169701529,0,,,,,,,0.172463768,0.144275138,0.200652398,,,,,,,,,,,,,0.233,,,0.188,0.277,0.474,,,0.384,0.556,5.3,0.202040066,0.162,,,0.416,,,0.347,0.476,0.009116478,94,10311,,,0.106521094,,,0.081759896,0.133562497,0.236842105,9,38,0.153038699,0.327558833,963.4,96,9965,,,33.16062176,64,1930,25.53771945,42.34537368,,,,,,,37.62376238,28.49587021,48.74594812,,,,,,,,,,,,,0.108444794,827,7626,0.091763943,0.125125645,0.000100351,1,9965,,,9965,,0,9777,,,,0.000102281,1,9777,,,9777,3583,,,,,,,2930,,3159,0.44,,,,,,,0.46,,0.42,0.31,,,,,,,0.25,,0.35,0.83326226,5862,7035,0.799132539,0.867391981,0.477523325,1126,2358,0.359331147,0.595715503,0.05191101,182,3506,,,0.461,971,,0.315638298,0.606361702,,,,,,,0.497487437,0.416362482,0.578612393,,,,,,,6.48773842,85716,13212,5.669008747,7.306468092,0.533750559,1194,2237,0.418327599,0.649173519,6.021073758,6,9965,,,127.5768499,63,49382,98.03355432,163.2262105,,,,,,,146.2070517,109.1944194,191.7310964,,,,81.3140348,38.99324033,149.5394051,,,,9.4,,,,,0,,,,,0.1886121,795,4215,0.144200372,0.233023827,0.16960193,0.124996551,0.214207309,0.014946619,0.003389993,0.026503245,0.010676157,0,0.024233156,0.856946733,3121,3642,0.814627672,0.899265794,,,,,,,0.873179092,0.774889879,0.971468305,,,,0.791516246,0.653141514,0.929890977,0.624,,3642,0.520600963,0.727399037,68.41725499,,,66.35886303,70.47564695,,,,,,,66.37210368,64.05291615,68.69129121,,,,73.00929895,68.1558101,77.86278781,,,,846.2497943,302,26812,743.0511311,949.4484576,,,,,,,956.181003,825.260335,1087.101671,,,,605.5449733,449.4471509,798.335556,,,,147.0742725,14,9519,80.40687337,246.7656384,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.154,,,0.132,0.176,0.204,,,0.175,0.233,0.173,,,0.148,0.197,548.5,46,8386,,,0.162,1680,,,,0.202040066,2282.850702,11299,,,,,,,,,,,,,,,,,,,,,,,,,,0.463,,,0.448,0.478,0.135110791,750,5551,0.112472493,0.157749089,0.038763267,84,2167,0.024465395,0.05306114,0.000306843,3,9777,,,3259,0.825,63.525,77,,,,,,,,2.229613109,,,,,,,2.21903912,,,2.169597265,,,,,,,2.168840475,,,0.075445246,,,,,-38643.01,,,,,0.774555342,34185,44135,0.573613481,0.975497202,42268,,,36332,48204,,,,,,,26110,24159.53192,28060.46809,,,,81159,73622.82979,88695.17021,,,,,,0.96440678,1138,1180,,,31.5048798,,,,,0.338293745,,42268,,,1.560062403,1,641,,,47.00988632,33,70198,32.35944268,66.01935849,,,,,,,55.29881108,36.74565836,79.92217866,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,68.85099834,34,49382,47.68131786,96.21236907,,,,,,,75.91519991,50.0285951,110.4526302,,,,,,,,,,34.18900823,24,70198,21.90554269,50.87053419,,,,,,,39.49915077,24.12710745,61.00323479,,,,,,,,,,6.666666667,,900,,,6,0,0.89171559,6835,7665,,,0.504,,,,,9.523095089,,,,,0.774806298,3100,4001,0.733332867,0.81627973,0.192328918,697,3624,0.139432294,0.245225543,0.615096226,2461,4001,0.563131929,0.667060523,9777,,,,,0.217551396,2127,9777,,,0.205482254,2009,9777,,,0.723023422,7069,9777,,,0.003477549,34,9777,,,0.004909481,48,9777,,,0.000409124,4,9777,,,0.018001432,176,9777,,,0.243939859,2385,9777,,,0.000313644,3,9565,0,0.010059418,0.519893628,5083,9777,,,1,10311,10311,, -01,087,01087,AL,Macon County,2024,1,13985.93351,460,50194,11886.07382,16085.79319,0,,,,2,,,,2,15426.5435,12911.53828,17941.54871,,,,,2,11583.11888,7342.703758,17380.36558,1,,,,2,,0.249,,,0.211,0.289,4.487153413,,,3.585543008,5.529070561,5.732408438,,,4.582870193,6.965285105,0.129966887,157,1208,0.111003896,0.148929879,0,,,,,,,0.139751553,0.117886135,0.161616971,,,,0.094339623,0.054992055,0.13368719,,,,,,,0.201,,,0.159,0.245,0.479,,,0.395,0.566,5.8,0.22099887,0.129,,,0.376,,,0.316,0.438,0.353215237,6899,19532,,,0.115894391,,,0.089805463,0.145463301,0.277777778,15,54,0.206953866,0.35113285,920.9,174,18895,,,17.82846129,111,6226,14.51174408,21.1451785,,,,,,,17.5,14.20734591,21.3268947,,,,32.87671233,16.98787701,57.42900013,,,,,,,0.117173454,1499,12793,0.098109624,0.136237284,0.000317544,6,18895,,,3149.166667,0.000270037,5,18516,,,3703.2,0.004698639,87,18516,,,212.8275862,2803,,,,,,,2791,,2521,0.36,,,,,,,0.36,,0.36,0.3,,,,,,,0.28,,0.36,0.827188552,9827,11880,0.795608254,0.85876885,0.484796328,1690,3486,0.40196689,0.567625766,0.038031035,299,7862,,,0.465,1400,,0.317255319,0.612744681,,,,,,,0.375411184,0.282025453,0.468796916,,,,0.034274194,0,0.126356417,5.525898959,86519,15657,4.577607075,6.474190843,0.539955428,1696,3141,0.443816282,0.636094575,6.880127018,13,18895,,,109.7205927,101,92052,88.32208293,131.1191025,,,,,,,114.4601297,91.29788213,141.709429,,,,106.1148694,60.65381651,172.3238997,,,,9.7,,,,,0,,,,,0.137681159,1045,7590,0.108950219,0.1664121,0.122826087,0.093762979,0.151889195,0.012384717,0.003559915,0.021209518,0.0085639,0.002917203,0.014210597,0.767496685,5209,6787,0.739781135,0.795212234,,,,,,,0.706443408,0.649984987,0.76290183,,,,0.764122894,0.635266798,0.89297899,0.358,,6787,0.296329634,0.419670366,72.04865037,,,70.60895146,73.48834929,,,,,,,71.01574291,69.34779239,72.68369344,,,,73.4557363,70.20167536,76.70979723,,,,668.7759852,460,50194,601.0243374,736.527633,,,,,,,723.6920224,643.0110534,804.3729915,,,,563.7382797,426.9698678,730.3883291,,,,71.5734224,12,16766,36.98303178,125.0243651,,,,,,,80.66881784,40.26958322,144.3387981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.14,,,0.12,0.162,0.195,,,0.168,0.224,0.165,,,0.143,0.19,632.9,105,16591,,,0.129,2510,,,,0.22099887,4740.867764,21452,,,,,,,,,,,,,,,,,,,,,,,,,,0.46,,,0.442,0.478,0.144715281,1413,9764,0.119694004,0.169736557,0.029981262,96,3202,0.019257858,0.040704666,0.000972132,18,18516,,,1028.666667,0.925,126.725,137,,,0.085201794,190,2230,0.026906075,0.143497512,2.294061132,,,,,,,2.255069657,,,1.973541421,,,,,,,1.941014309,,,0.07837784,,,,,-31816.49,,,,,0.759429064,34371,45259,0.62656209,0.892296038,36601,,,31151.12766,42050.87234,,,,,,,36512,30608.17021,42415.82979,73370,26976.97872,119763.0213,71771,52155.51064,91386.48936,,,,,,0.965853659,1782,1845,,,57.18353317,,,,,0.416136171,,36601,,,8.888888889,8,900,,,41.5001537,54,130120,31.17619272,54.14869843,,,,,,,48.06675511,35.67607212,63.37002429,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,46.71272759,43,92052,33.80623258,62.92173751,,,,,,,53.14220309,37.78930137,72.64714104,,,,,,,,,,26.89824777,35,130120,18.73561513,37.40895125,,,,,,,28.84005307,19.4582627,41.17096902,,,,,,,,,,5,,1400,,,7,0,0.573692864,8723,15205,,,0.501,,,,,14.44192287,,,,,0.629504978,4489,7131,0.598252871,0.660757086,0.162421913,1014,6243,0.127767511,0.197076314,0.710839994,5069,7131,0.678399667,0.743280322,18516,,,,,0.167584792,3103,18516,,,0.21521927,3985,18516,,,0.78764312,14584,18516,,,0.003402463,63,18516,,,0.005778786,107,18516,,,0.000162022,3,18516,,,0.025491467,472,18516,,,0.166126593,3076,18516,,,0.003605966,66,18303,0,0.010490361,0.54352992,10064,18516,,,0.5390641,10529,19532,, -01,089,01089,AL,Madison County,2024,1,8957.288662,5542,1074441,8608.879581,9305.697743,0,,,,2,3062.313966,1843.713052,4782.182594,1,11670.78235,10878.98742,12462.57727,,5358.766709,4221.891465,6495.641953,,8647.991745,8217.158792,9078.824697,,,,,2,,0.144,,,0.121,0.17,3.4678392,,,2.722473087,4.228702485,5.100287967,,,4.201572989,6.003000002,0.101617394,3066,30172,0.098208066,0.105026721,0,,,,0.097468354,0.076785734,0.118150975,0.160650029,0.152895769,0.168404289,0.08275357,0.072420447,0.093086693,0.075470605,0.071530371,0.07941084,,,,0.103397341,0.080461407,0.126333275,0.138,,,0.108,0.172,0.419,,,0.361,0.477,7.5,0.093429074,0.112,,,0.251,,,0.208,0.295,0.78071276,303036,388153,,,0.139526854,,,0.113543835,0.168827064,0.322869955,72,223,0.289360571,0.356598456,602.2,2380,395211,,,16.10374804,1356,84204,15.24660522,16.96089086,,,,,,,22.36518448,20.5620222,24.16834677,36.01062064,31.21928262,40.80195867,10.79359462,9.835932602,11.75125664,,,,14.94220468,11.19273666,19.54477162,0.093297854,30223,323941,0.083765939,0.102829769,0.000855239,338,395211,,,1169.263314,0.000537708,217,403565,,,1859.746544,0.001860915,751,403565,,,537.3701731,2629,,,,,,1130,3434,2654,2486,0.49,,,,,,0.43,0.47,0.38,0.49,0.42,,,,,,0.45,0.3,0.31,0.44,0.922246123,246521,267305,0.915185101,0.929307145,0.75771317,78368,103427,0.728542494,0.786883845,0.021291867,4242,199231,,,0.139,11726,,0.103255319,0.174744681,0.098121086,0,0.302208954,0.031939605,0,0.068283319,0.273445805,0.235863416,0.311028195,0.245448323,0.182400605,0.308496042,0.068133901,0.05466494,0.081602863,4.978311362,158609,31860,4.739433537,5.217189188,0.258108108,21583,83620,0.232646573,0.283569643,10.24769047,405,395211,,,75.83441859,1422,1875138,71.89281781,79.77601936,,,,28.14522938,15.38725881,47.22291247,75.22249678,67.27327535,83.1717182,46.30105978,33.77231072,61.95446085,83.19185481,78.05096982,88.3327398,,,,7.4,,,,,0,,,,,0.113071292,17145,151630,0.104233103,0.121909481,0.098245614,0.090185287,0.106305941,0.013420827,0.010230852,0.016610802,0.004715426,0.003223387,0.006207464,0.801191043,153102,191093,0.793610269,0.808771817,0.63658147,0.534331453,0.738831486,0.743394219,0.656466198,0.83032224,0.83369922,0.814333114,0.853065326,0.754232709,0.701297356,0.807168062,0.825588037,0.814878807,0.836297268,0.269,,191093,0.253975891,0.284024109,76.65173326,,,76.35507023,76.94839629,,,,86.99953966,84.06362097,89.93545834,73.93794496,73.29102736,74.58486256,84.89465298,81.71243948,88.07686647,76.82709122,76.47147325,77.1827092,,,,418.4923835,5542,1074441,407.0796011,429.9051659,,,,153.5140208,114.992536,200.800119,525.1024509,498.1288412,552.0760607,224.7859181,179.7127039,269.8591323,413.160068,399.3458297,426.9743063,,,,61.89445909,228,368369,53.86030014,69.92861804,,,,,,,92.20839096,74.3329773,113.085406,47.60544606,26.64440678,78.51794367,53.02814831,43.11831861,62.937978,,,,6.772841576,202,29825,5.838832054,7.706851098,,,,,,,10.53864169,8.474312428,12.95377984,,,,5.803830528,4.666279745,6.941381312,,,,,,,0.101,,,0.086,0.117,0.164,,,0.142,0.187,0.102,,,0.088,0.118,258,864,334888,,,0.112,42710,,,,0.093429074,31281.08163,334811,,,26.92639161,309,1147573,23.92408537,29.92869785,,,,,,,25.41450703,19.84894084,32.05694249,,,,30.86068836,26.85484229,34.86653442,,,,0.387,,,0.373,0.402,0.112301252,26882,239374,0.09919487,0.125407635,0.04164082,3692,88663,0.030917416,0.052364224,0.001551175,626,403565,,,644.672524,0.925012742,3629.75,3924,,,0.05240441,1117,21315,0.035423129,0.069385691,3.164968022,,,,,,3.549159498,2.651486868,2.544186699,3.569443172,2.975704892,,,,,,3.894724063,2.446181805,2.519314946,3.340728966,0.129122187,,,,,-2102.7935,,,,,0.673370513,50591,75131,0.628657211,0.718083815,80426,,,76110.42553,84741.57447,95213,87966.3617,102459.6383,96833,72569.51064,121096.4894,52552,48531.91489,56572.08511,56138,48772.21277,63503.78723,91033,88111.46809,93954.53192,,,,,,0.320209189,17144,53540,,,47.66954136,,,,,0.197572924,,80426,,,6.691080067,148,22119,,,7.929772389,205,2585194,6.844247307,9.01529747,,,,,,,19.52470828,16.07416031,22.97525625,,,,4.188063182,3.264800712,5.291365879,,,,15.11381581,300,1875138,13.3537227,16.87390893,15.99882249,,,,,,,6.875902035,4.703111902,9.706722094,,,,19.47114078,16.97309221,21.96918935,,,,18.23865764,342,1875138,16.30563967,20.1716756,,,,,,,24.70971551,20.15370628,29.26572474,,,,17.69687567,15.32579798,20.06795337,,,,13.77072668,356,2585194,12.34022646,15.20122691,,,,,,,17.46112123,14.19801016,20.72423229,18.27624545,11.70993531,27.19360453,12.6838485,10.97643312,14.39126387,,,,12.17741936,,37200,,,188,265,0.698966445,194767,278650,,,0.741,,,,,82.54929331,,,,,0.680238643,108545,159569,0.669466359,0.691010926,0.105128635,16288,154934,0.095784613,0.114472658,0.901108611,143789,159569,0.891151222,0.911066001,403565,,,,,0.212025324,85566,403565,,,0.159989097,64566,403565,,,0.247142344,99738,403565,,,0.007416401,2993,403565,,,0.027071228,10925,403565,,,0.001015945,410,403565,,,0.055919121,22567,403565,,,0.636142877,256725,403565,,,0.010511515,3865,367692,0.008491633,0.012531397,0.506173727,204274,403565,,,0.171022767,66383,388153,, -01,091,01091,AL,Marengo County,2024,1,14936.97211,479,51736,12826.18997,17047.75426,0,,,,2,,,,2,17825.55257,14692.89725,20958.20789,,,,,2,11057.88705,8214.772016,13901.00208,,,,,2,,0.239,,,0.206,0.275,4.488450535,,,3.587485572,5.506195463,5.497213603,,,4.41138155,6.677293305,0.120580808,191,1584,0.104544088,0.136617528,0,,,,,,,0.15261959,0.128831851,0.176407329,,,,0.078125,0.057332959,0.098917041,,,,,,,0.208,,,0.17,0.249,0.472,,,0.392,0.552,6.2,0.132472255,0.154,,,0.366,,,0.31,0.424,0.475702531,9192,19323,,,0.117110501,,,0.092306994,0.146305541,0.21875,7,32,0.128580322,0.319266194,658,125,18996,,,25.94458438,103,3970,20.9340485,30.95512027,,,,,,,30.60778312,23.86026852,38.67109262,,,,18.29268293,12.05499331,26.61489326,,,,,,,0.111669952,1643,14713,0.094989101,0.128350803,0.000421141,8,18996,,,2374.5,0.000266738,5,18745,,,3749,0.000320085,6,18745,,,3124.166667,3688,,,,,,,6064,,2247,0.39,,,,,,,0.36,,0.41,0.31,,,,,,,0.22,,0.37,0.891051781,11581,12997,0.861425717,0.920677845,0.581791626,2390,4108,0.462843627,0.700739625,0.034161083,260,7611,,,0.341,1405,,0.213510638,0.468489362,,,,0.893333333,0.748469442,1,0.504061565,0.406626516,0.601496613,0.564315353,0.285238702,0.843392004,,,,6.287172486,96703,15381,5.085803137,7.488541834,0.492183908,2141,4350,0.358784405,0.625583411,14.21351864,27,18996,,,104.1743394,99,95033,84.66776262,126.8285204,,,,,,,112.9688206,85.10357592,147.0444481,,,,96.82371,69.48236597,131.3522956,,,,9.4,,,,,0,,,,,0.112,840,7500,0.081205909,0.142794091,0.10455192,0.073748395,0.135355445,0.0016,0,0.005270309,0.012666667,0,0.02846803,0.848222733,6276,7399,0.815704025,0.880741441,,,,,,,0.905626781,0.837737612,0.973515949,,,,0.800884956,0.73316567,0.868604241,0.392,,7399,0.309373842,0.474626158,70.68698569,,,69.30686249,72.06710888,,,,,,,67.98556413,66.0782995,69.89282877,,,,74.19010244,72.1521249,76.22807999,,,,684.0118616,479,51736,618.3854657,749.6382576,,,,,,,837.5477529,736.9171343,938.1783715,,,,497.6260749,413.0986079,582.1535418,,,,107.0835787,20,18677,65.40943184,165.3819024,,,,,,,136.4389436,74.59244008,228.9213636,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.142,,,0.123,0.163,0.195,,,0.171,0.222,0.149,,,0.128,0.171,193.7,31,16002,,,0.154,2990,,,,0.132472255,2785.494098,21027,,,,,,,,,,,,,,,,,,,,,,,,,,0.436,,,0.421,0.449,0.140306362,1493,10641,0.117668064,0.16294466,0.03873979,166,4285,0.025633407,0.051846173,0.000746866,14,18745,,,1338.928571,0.889872263,243.825,274,,,,,,,,2.745951239,,,,,,,2.532334929,,3.087638838,2.577754846,,,,,,,2.347580459,,2.927948222,0.151528257,,,,,-23708.95667,,,,,0.627542875,36555,58251,0.448116729,0.806969021,45587,,,40038.23404,51135.76596,,,,,,,29299,23015.08511,35582.91489,,,,69760,55431.14894,84088.85106,,,,,,0.649032992,2282,3516,,,28.84453496,,,,,0.2823612,,45587,,,5.485893417,7,1276,,,14.84406312,20,134734,9.06713939,22.92545156,,,,,,,23.23757516,13.28228201,37.73636622,,,,,,,,,,15.58681839,13,95033,8.053936511,27.22703494,13.67945871,,,,,,,,,,,,,24.93715989,10.76609565,49.13614625,,,,24.20211926,23,95033,15.34206753,36.31506203,,,,,,,24.64774268,12.73584831,43.0546462,,,,25.97709293,12.96767119,46.48019486,,,,26.71931361,36,134734,18.71387877,36.99079259,,,,,,,34.85636274,22.33312931,51.8635048,,,,18.23970286,9.10519395,32.63586674,,,,21.05263158,,1900,,,40,0,0.746319754,10900,14605,,,0.475,,,,,20.42912176,,,,,0.68274834,5038,7379,0.653242201,0.712254479,0.100970874,676,6695,0.063822973,0.138118775,0.771378236,5692,7379,0.728230242,0.814526229,18745,,,,,0.222566018,4172,18745,,,0.205974927,3861,18745,,,0.510696186,9573,18745,,,0.002827421,53,18745,,,0.003841024,72,18745,,,0.001813817,34,18745,,,0.032862097,616,18745,,,0.439263804,8234,18745,,,0,0,17943,0,0.005312331,0.525046679,9842,18745,,,0.677741552,13096,19323,, -01,093,01093,AL,Marion County,2024,1,12316.65322,737,80138,10892.04601,13741.26043,0,,,,2,,,,2,13462.66841,7168.303936,23021.573,1,,,,2,12658.05363,11136.03567,14180.0716,,,,,2,,0.21,,,0.176,0.248,4.594484512,,,3.653633379,5.702634042,6.131390363,,,4.924062794,7.478279448,0.105120073,232,2207,0.092323899,0.117916246,0,,,,,,,0.207317073,0.119573275,0.295060872,,,,0.101101101,0.087882311,0.114319891,,,,,,,0.22,,,0.177,0.269,0.392,,,0.308,0.475,7,0.010310084,0.177,,,0.333,,,0.273,0.396,0.312736444,9176,29341,,,0.145534858,,,0.113743637,0.180022847,0.333333333,10,30,0.236916088,0.429411676,246.2,72,29246,,,38.13485873,220,5769,33.09559749,43.17411996,,,,,,,50.92592593,25.42203874,91.12054867,,,,38.21656051,32.89333243,43.53978859,,,,,,,0.134193037,3049,22721,0.115129208,0.153256867,0.000239349,7,29246,,,4178,0.00020579,6,29156,,,4859.333333,0.000274386,8,29156,,,3644.5,3984,,,,,,,634,,4014,0.38,,,,,,,0.38,,0.37,0.35,,,,,,,0.29,,0.35,0.806206399,16757,20785,0.780612435,0.831800362,0.574332713,3701,6444,0.492686613,0.655978813,0.024913094,344,13808,,,0.23,1382,,0.150170213,0.309829787,0.90625,0.411241789,1,,,,0.084677419,0,0.234280534,0.175925926,0,0.474835093,0.208871421,0.15138324,0.266359601,4.801584819,92104,19182,4.166424659,5.436744979,0.17519909,1078,6153,0.104250191,0.246147989,8.89010463,26,29246,,,83.64023905,124,148254,68.91845326,98.36202484,,,,,,,,,,,,,87.59983805,71.86052063,103.3391555,,,,8.6,,,,,1,,,,,0.110356537,1300,11780,0.079800876,0.140912197,0.073521851,0.048408159,0.098635543,0.022495756,0.011036368,0.033955143,0.016977929,0,0.034443282,0.863903719,9547,11051,0.821594518,0.90621292,,,,,,,,,,,,,0.858956122,0.812764785,0.905147459,0.31,,11051,0.246391874,0.373608126,72.44937035,,,71.43409833,73.46464236,,,,,,,,,,,,,72.14316813,71.07652951,73.20980675,,,,635.7800284,737,80138,587.0959029,684.4641539,,,,,,,697.0959648,459.3906333,1014.23803,,,,648.1914665,596.9445482,699.4383848,,,,85.01829742,23,27053,53.89430761,127.5691897,,,,,,,,,,,,,87.85875659,54.38595508,134.3014423,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.141,,,0.119,0.165,0.203,,,0.174,0.233,0.114,,,0.096,0.134,156.3,39,24955,,,0.177,5220,,,,0.010310084,317.3031544,30776,,,11.27929798,10,88658,5.408861802,20.74303057,,,,,,,,,,,,,,,,,,,0.372,,,0.354,0.389,0.169037757,2816,16659,0.144016481,0.194059034,0.040595611,259,6380,0.027489228,0.053701994,0.000960351,28,29156,,,1041.285714,0.90287037,292.53,324,,,0.168627451,258,1530,0.07278343,0.264471472,3.061671918,,,,,,,,,3.042948491,2.837091567,,,,,,,,,2.864269225,0.046255211,,,,,-1688.6665,,,,,0.678206809,34145,50346,0.601734251,0.754679367,47742,,,41188.80851,54295.19149,8942,7109.489362,10774.51064,,,,27898,9750.425532,46045.57447,56850,30594.34043,83105.65957,50463,46485.80851,54440.19149,,,,,,0.476087427,2200,4621,,,43.76304368,,,,,0.278496921,,47742,,,6.147540984,9,1464,,,,,,,,,,,,,,,,,,,,,,,,,,21.92896973,31,148254,14.57164113,31.69346686,20.91005976,,,,,,,,,,,,,24.01020904,15.95460954,34.70143714,,,,20.23554171,30,148254,13.65283501,28.88749403,,,,,,,,,,,,,21.34785969,14.29699668,30.65908752,,,,24.46982056,51,208420,18.21938866,32.17329497,,,,,,,,,,,,,26.17828459,19.4300274,34.51280467,,,,,,2900,,,21,-888,0.590800171,13807,23370,,,0.571,,,,,6.475239392,,,,,0.728898167,8031,11018,0.700030846,0.757765487,0.058233122,615,10561,0.039013134,0.07745311,0.754583409,8314,11018,0.724381323,0.784785495,29156,,,,,0.209630951,6112,29156,,,0.214912882,6266,29156,,,0.039717382,1158,29156,,,0.005179037,151,29156,,,0.003464124,101,29156,,,0.000754562,22,29156,,,0.029256414,853,29156,,,0.910755934,26554,29156,,,0.002700951,75,27768,0,0.006634533,0.503875703,14691,29156,,,1,29341,29341,, -01,095,01095,AL,Marshall County,2024,1,12205.53695,2052,271047,11425.26602,12985.80789,0,,,,2,,,,2,14487.61686,9843.632761,20564.01569,,8809.647896,7119.092247,10780.77791,,12678.98132,11775.33699,13582.62564,,,,,2,,0.199,,,0.167,0.233,4.414542833,,,3.479506599,5.382348194,6.215226855,,,5.067971858,7.373412914,0.079996045,809,10113,0.074708608,0.085283481,0,,,,,,,0.093457944,0.061615555,0.125300333,0.081293706,0.072150485,0.090436928,0.077579269,0.070927414,0.084231124,,,,0.131578947,0.055579987,0.207577908,0.196,,,0.157,0.24,0.346,,,0.278,0.423,6.7,0.100314213,0.146,,,0.34,,,0.283,0.399,0.529525058,51688,97612,,,0.149779747,,,0.119344584,0.185717654,0.209302326,18,86,0.155082301,0.267846226,339,333,98228,,,44.07598347,949,21531,41.27168021,46.88028672,,,,,,,43.80952381,27.77148007,65.73579599,89.40739211,80.98596779,97.82881644,31.21748179,28.42472369,34.01023989,,,,28.88888889,15.38211665,49.40087982,0.146038777,11803,80821,0.131740905,0.160336649,0.000549741,54,98228,,,1819.037037,0.000362089,36,99423,,,2761.75,0.00281625,280,99423,,,355.0821429,2877,,,,,,,,,2898,0.35,,,,,,0.41,0.42,,0.36,0.44,,,,,,0.8,0.43,0.18,0.44,0.843664897,54834,64995,0.828957963,0.858371831,0.518441048,12145,23426,0.480224083,0.556658014,0.020521732,933,45464,,,0.218,5425,,0.163191489,0.272808511,0.411575563,0.001028925,0.822122201,0.115702479,0,0.722046388,0.349551857,0.09294546,0.606158253,0.405238164,0.332805457,0.47767087,0.18156228,0.15381098,0.20931358,4.745447696,113364,23889,4.423384154,5.067511238,0.265325128,6553,24698,0.222901867,0.307748389,9.060552999,89,98228,,,88.70068996,429,483649,80.30697102,97.09440891,,,,,,,140.8684123,82.06104135,225.5439743,40.74120903,27.2850271,58.51117214,97.78230761,87.92472436,107.6398909,,,,9.1,,,,,1,,,,,0.104371351,3665,35115,0.090464731,0.118277972,0.085303096,0.07286851,0.097737683,0.019080165,0.012940479,0.025219851,0.006692297,0.003214713,0.010169881,0.836930456,34202,40866,0.821365814,0.852495098,,,,0.527777778,0.275041918,0.780513638,0.681585678,0.428721985,0.93444937,0.780057595,0.728016963,0.832098228,0.856874707,0.845017265,0.868732149,0.343,,40866,0.313644836,0.372355164,72.59788319,,,72.03786123,73.15790515,,,,,,,71.11265414,65.983868,76.24144029,89.16946705,71.64166287,106.6972712,72.15343232,71.53370708,72.77315756,,,,596.9374649,2052,271047,570.0029773,623.8719526,,,,,,,757.0065601,563.6411066,995.3238234,379.7971271,295.5048347,480.6575718,622.3994565,592.3331712,652.4657419,,,,57.25495349,61,106541,43.79550273,73.546383,,,,,,,,,,96.43201543,64.58203418,138.4924598,40.22526146,26.72939412,58.1367026,,,,5.149434572,51,9904,3.83409227,6.77055547,,,,,,,,,,,,,4.828585225,3.257826174,6.893105649,,,,,,,0.134,,,0.114,0.154,0.195,,,0.168,0.223,0.113,,,0.096,0.132,157.9,127,80406,,,0.146,14200,,,,0.100314213,9331.127766,93019,,,23.63078441,69,291992,18.38616077,29.90627007,,,,,,,,,,,,,26.29197017,20.11127389,33.7731356,,,,0.379,,,0.362,0.394,0.192589155,10790,56026,0.172333836,0.212844474,0.043725943,1136,25980,0.03061956,0.056832326,0.001056094,105,99423,,,946.8857143,0.913031709,1180.55,1293,,,0.076169963,389,5107,0.044719799,0.107620127,2.754924662,,,,,,,2.354455161,2.18932441,3.0395942,2.762879144,,,,,,,2.187892938,2.4088079,2.964725915,0.168726107,,,,,-2554.72498,,,,,0.763366488,40063,52482,0.701758109,0.824974867,53388,,,49526.38298,57249.61702,,,,,,,43889,29978.3617,57799.6383,52010,44936.12766,59083.87234,59193,56680.14894,61705.85106,,,,,,0.455416279,8320,18269,,,52.83504774,,,,,0.209916086,,53388,,,3.660322108,25,6830,,,5.048023031,34,673531,3.495902696,7.05410621,,,,,,,,,,,,,5.354089971,3.585718083,7.689366304,,,,16.72113818,81,483649,13.19606076,20.89855375,16.74768272,,,,,,,,,,,,,18.42148196,14.24717281,23.43664179,,,,14.26654454,69,483649,11.10022321,18.05522519,,,,,,,,,,,,,16.03836792,12.29652472,20.56046384,,,,23.90387376,161,673531,20.211451,27.59629653,,,,,,,,,,14.53337486,7.945531274,24.3845335,25.6627071,21.39640958,29.92900462,,,,10.64220184,,10900,,,109,7,0.5907195,39655,67130,,,0.656,,,,,36.73332251,,,,,0.753771222,27083,35930,0.737512369,0.770030074,0.095142291,3263,34296,0.080852211,0.109432371,0.872891734,31363,35930,0.857837311,0.887946157,99423,,,,,0.254880661,25341,99423,,,0.173933597,17293,99423,,,0.026633676,2648,99423,,,0.011928829,1186,99423,,,0.007875441,783,99423,,,0.003882402,386,99423,,,0.160073625,15915,99423,,,0.783641612,77912,99423,,,0.034374416,3129,91027,0.027995928,0.040752905,0.504752422,50184,99423,,,0.536511904,52370,97612,, -01,097,01097,AL,Mobile County,2024,1,12207.10374,8586,1155670,11822.34739,12591.8601,0,11425.47603,7763.056632,16217.55121,,5904.395977,4290.143156,7926.376009,,15265.0867,14553.70925,15976.46415,,5716.952922,4306.791329,7441.400047,,10838.29808,10355.21331,11321.38286,,,,,2,,0.212,,,0.184,0.243,4.514272012,,,3.752256447,5.311534206,5.903315195,,,5.126208636,6.754210849,0.121471343,4544,37408,0.11816088,0.124781806,0,0.133561644,0.094542804,0.172580484,0.092039801,0.072057326,0.112022276,0.167031182,0.161251971,0.172810392,0.080792683,0.066046422,0.095538944,0.084758688,0.080729632,0.088787744,,,,0.148648649,0.119991689,0.177305609,0.189,,,0.157,0.227,0.406,,,0.36,0.455,6.9,0.097158345,0.14,,,0.349,,,0.306,0.395,0.585146417,242724,414809,,,0.151731878,,,0.126223475,0.179958985,0.331550802,124,374,0.305996693,0.357204506,734.7,3035,413073,,,28.41350627,2596,91365,27.32048514,29.50652739,26.94610778,17.75765482,39.2051721,7.504690432,4.289579012,12.18714709,37.97194085,35.98426821,39.95961349,29.79737783,23.95709178,35.63766389,21.40345513,20.06338687,22.74352339,,,,30.58387396,23.6535659,38.91018649,0.134238329,44598,332230,0.122323435,0.146153223,0.000711739,294,413073,,,1405.010204,0.000542037,223,411411,,,1844.892377,0.001242067,511,411411,,,805.109589,3376,,,,,,,4237,2159,3102,0.38,,,,,,0.34,0.34,0.44,0.4,0.38,,,,,0.5,0.38,0.3,0.29,0.4,0.881336916,246658,279868,0.874959872,0.88771396,0.578623953,62242,107569,0.554587732,0.602660174,0.032442073,6239,192312,,,0.272,25444,,0.224340426,0.319659575,0.06231454,0,0.196028366,0.354014599,0.208034397,0.4999948,0.404113565,0.375629256,0.432597873,0.199095023,0.113063218,0.285126827,0.123067395,0.104694229,0.141440561,5.225294091,114157,21847,4.941073694,5.509514487,0.355845671,34153,95977,0.328395525,0.383295818,11.11183738,459,413073,,,91.35287904,1888,2066711,87.2321191,95.47363899,82.02099738,45.9065296,135.2811618,46.93073024,28.66650926,72.48070655,91.65520416,84.77122345,98.53918487,40.19292605,26.01074252,59.33268762,97.79858971,92.12633648,103.470843,,,,8.3,,,,,0,,,,,0.148011805,23320,157555,0.139893229,0.156130382,0.131933594,0.123442009,0.140425179,0.018120656,0.014897345,0.021343967,0.007299038,0.005738227,0.00885985,0.843901121,146762,173909,0.836041966,0.851760275,0.810966811,0.681964237,0.939969385,0.739825219,0.664646755,0.815003682,0.845439949,0.823988891,0.866891008,0.785667432,0.724765331,0.846569533,0.857692068,0.846721347,0.86866279,0.367,,173909,0.350619729,0.383380271,73.04481265,,,72.76123571,73.3283896,75.15816546,71.45001339,78.86631753,83.47698024,80.21795283,86.73600766,70.4128856,69.9262351,70.8995361,98.29237552,88.47896131,108.1057897,74.05128681,73.69036614,74.41220748,,,,587.0030722,8586,1155670,574.0511657,599.9549786,564.0625344,438.016629,715.0836682,269.9748642,211.2387041,339.9886608,715.8708537,691.1585068,740.5832007,233.0567202,182.019232,293.9693407,541.1022082,525.0193259,557.1850906,,,,80.85936582,344,425430,72.31446196,89.40426968,,,,,,,113.3206399,97.49606775,129.145212,,,,61.18417883,50.54291168,71.82544599,,,,8.269018743,315,38094,7.35584215,9.182195336,,,,,,,11.32260236,9.69099197,12.95421276,,,,5.859479039,4.764467404,6.954490674,,,,,,,0.134,,,0.117,0.154,0.195,,,0.17,0.221,0.135,,,0.119,0.153,563.2,1939,344284,,,0.14,57880,,,,0.097158345,40125.61901,412992,,,21.06539231,261,1238999,18.50971881,23.6210658,,,,,,,15.64081538,12.19278291,19.76122929,,,,26.40070823,22.5859876,30.21542885,,,,0.405,,,0.391,0.419,0.173816277,41548,239034,0.157135426,0.190497128,0.035485652,3470,97786,0.025953737,0.045017567,0.001626111,669,411411,,,614.9641256,0.877560917,3637.49,4145,,,0.101208672,2152,21263,0.078775338,0.123642007,2.780952518,,,,,,3.029833294,2.50910155,2.663928765,3.078466909,2.65310274,,,,,,3.172963433,2.368024043,2.606122357,2.946811229,0.249448878,,,,,-10343.87,,,,,0.706640064,40376,57138,0.678358076,0.734922052,54315,,,51680.61702,56949.38298,51477,12614.19149,90339.80851,59792,50964.25532,68619.74468,38667,36127.93617,41206.06383,48576,38316.08511,58835.91489,69770,67494.25532,72045.74468,,,,,,0.666711288,39844,59762,,,56.92083628,,,,,0.266040689,,54315,,,6.652296715,179,26908,,,17.08698345,495,2896942,15.58169797,18.59226892,,,,,,,36.26494241,32.59930807,39.93057676,,,,6.567066163,5.32851034,7.805621986,,,,14.60379374,302,2066711,12.90846245,16.29912504,14.61258976,,,,,,,6.935327828,5.147533991,9.143365137,,,,20.55724483,17.86102559,23.25346407,,,,25.45106694,526,2066711,23.2760172,27.62611667,,,,,,,39.16543966,34.66543894,43.66544038,,,,19.26854876,16.75079172,21.7863058,,,,19.50332454,565,2896942,17.89512292,21.11152616,,,,,,,18.61471778,15.98848104,21.24095452,,,,21.22135269,18.99488488,23.44782051,,,,13.94366197,,42600,,,499,95,0.587459508,183164,311790,,,0.605,,,,,101.8342976,,,,,0.634904922,101334,159605,0.625081404,0.644728439,0.147668857,22320,151149,0.137589868,0.157747846,0.81285674,129736,159605,0.803099569,0.822613911,411411,,,,,0.230859165,94978,411411,,,0.174640445,71849,411411,,,0.364044714,149772,411411,,,0.009421236,3876,411411,,,0.021474876,8835,411411,,,0.000432657,178,411411,,,0.031899974,13124,411411,,,0.556562659,228976,411411,,,0.008944013,3465,387410,0.00716301,0.010725016,0.521412894,214515,411411,,,0.223963318,92902,414809,, -01,099,01099,AL,Monroe County,2024,1,15283.71137,504,55233,13196.41474,17371.008,0,,,,2,,,,2,20741.24087,16975.69426,24506.78748,,,,,2,11291.44309,8936.407935,13646.47825,,,,,2,,0.25,,,0.216,0.284,4.683037486,,,3.71921497,5.698638828,6.177146504,,,4.970205541,7.433109633,0.113948919,174,1527,0.098011389,0.12988645,0,,,,,,,0.127777778,0.103392312,0.152163244,,,,0.105834464,0.083624654,0.128044274,,,,,,,0.233,,,0.191,0.275,0.442,,,0.36,0.526,6.3,0.113296508,0.16,,,0.381,,,0.323,0.441,0.425652438,8416,19772,,,0.125131124,,,0.097558906,0.157635873,0.192307692,5,26,0.09558881,0.306287398,661.6,130,19648,,,33.05785124,148,4477,27.73186752,38.38383496,,,,,,,43.93305439,35.04272476,54.39211076,,,,25.54908113,19.35062455,33.10179803,,,,,,,0.12389908,1871,15101,0.106026739,0.14177142,0.000458062,9,19648,,,2183.111111,0.000206143,4,19404,,,4851,0.001185323,23,19404,,,843.6521739,2955,,,,,,,2586,,2998,0.34,,,,,,,0.32,,0.34,0.33,,,,,0.33,,0.26,,0.36,0.836944627,11472,13707,0.806903439,0.866985815,0.449377897,1842,4099,0.344951624,0.55380417,0.040958904,299,7300,,,0.319,1276,,0.201042553,0.436957447,,,,,,,0.387787056,0.287414847,0.488159266,,,,0.166915795,0.096612072,0.237219518,5.37883354,91026,16923,4.216795931,6.540871149,0.393505253,1648,4188,0.270739913,0.516270593,14.25081433,28,19648,,,98.80465738,102,103234,79.62974439,117.9795704,,,,,,,115.9132307,85.75324616,153.2434381,,,,84.28679029,61.93076319,112.0835629,,,,9.3,,,,,0,,,,,0.127329193,1025,8050,0.091160908,0.163497477,0.129155673,0.092496001,0.165815345,0.003478261,0,0.009237102,0.00173913,0,0.005884661,0.902893891,5616,6220,0.790939513,1,,,,,,,0.887962481,0.81820292,0.957722041,,,,0.87021894,0.827181029,0.91325685,0.316,,6220,0.256413618,0.375586382,71.52784228,,,70.12731827,72.9283663,,,,,,,68.96605924,66.5258504,71.40626808,,,,73.51026958,71.84744388,75.17309529,,,,666.9562408,504,55233,603.669054,730.2434276,,,,,,,819.2293238,707.8242601,930.6343875,,,,570.9464149,494.4651868,647.4276429,,,,78.26767545,15,19165,43.80582381,129.0906281,,,,,,,129.9929095,64.89199205,232.5932228,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.15,,,0.129,0.171,0.209,,,0.181,0.236,0.147,,,0.127,0.168,207.8,35,16839,,,0.16,3210,,,,0.113296508,2613.52384,23068,,,,,,,,,,,,,,,,,,,,,,,,,,0.408,,,0.393,0.42,0.156112459,1738,11133,0.132282671,0.179942246,0.035765379,150,4194,0.023850486,0.047680273,0.000669965,13,19404,,,1492.615385,0.925,179.45,194,,,,,,,,2.512728103,,,,,,,2.193798635,,2.825024478,2.54781772,,,,,,,2.418248018,,2.678455675,0.353602718,,,,,-13027.7,,,,,0.628406462,33413,53171,0.509643152,0.747169773,47498,,,42176.80851,52819.19149,,,,56111,55275.76596,56946.23404,28563,24579.85106,32546.14894,,,,58187,51881.6383,64492.3617,,,,,,0.634693878,1555,2450,,,40.27235082,,,,,0.31424481,,47498,,,8.797653959,9,1023,,,16.38930052,24,146437,10.50093409,24.38598004,,,,,,,26.72903441,15.27795265,43.40627731,,,,,,,,,,14.71361181,13,103234,7.602737927,25.70171877,12.59275045,,,,,,,,,,,,,,,,,,,21.31080846,22,103234,13.3553702,32.26482011,,,,,,,28.38691363,14.66793251,49.58622536,,,,,,,,,,36.19303865,53,146437,27.11106956,47.34138567,,,,,,,38.42298697,24.35687778,57.65334597,,,,35.25471532,23.4265023,50.95287948,,,,17.61904762,,2100,,,37,0,0.650884686,10668,16390,,,0.483,,,,,9.183078403,,,,,0.724171006,5285,7298,0.687165824,0.761176188,0.103703704,658,6345,0.067238434,0.140168974,0.605782406,4421,7298,0.563942429,0.647622383,19404,,,,,0.209235209,4060,19404,,,0.219490827,4259,19404,,,0.41151309,7985,19404,,,0.013863121,269,19404,,,0.005050505,98,19404,,,0.000412286,8,19404,,,0.018449804,358,19404,,,0.533652855,10355,19404,,,0.000781331,15,19198,0,0.00564805,0.521232736,10114,19404,,,0.783329962,15488,19772,, -01,101,01101,AL,Montgomery County,2024,1,11998.59564,4157,635892,11479.69047,12517.50081,0,,,,2,4284.957401,2496.145592,6860.63189,1,14252.22526,13537.13044,14967.32007,,8574.771661,6343.66328,11336.30288,,8498.572042,7738.706483,9258.437601,,,,,2,,0.216,,,0.184,0.253,4.050605914,,,3.268496504,4.939754814,5.741915997,,,4.80921875,6.761849397,0.131968721,2869,21740,0.127469581,0.136467861,0,,,,0.109656301,0.084880306,0.134432296,0.162220003,0.156117187,0.168322818,0.072617946,0.061678898,0.083556995,0.072384295,0.064862396,0.079906194,,,,0.106849315,0.075156714,0.138541916,0.176,,,0.14,0.216,0.382,,,0.326,0.443,6.7,0.10744318,0.141,,,0.348,,,0.296,0.404,0.764629576,175065,228954,,,0.145134113,,,0.117978406,0.177098281,0.317919075,55,173,0.279615216,0.356546505,1061.4,2414,227434,,,33.38844951,1676,50197,31.78993966,34.98695936,,,,,,,37.52997602,35.45108275,39.60886929,114.0350877,100.1736621,127.8965133,9.882747069,8.099577072,11.66591707,,,,43.2160804,31.27569167,58.21177669,0.122001487,21666,177588,0.108895104,0.13510787,0.000967314,220,227434,,,1033.790909,0.00079519,180,226361,,,1257.561111,0.002063076,467,226361,,,484.7130621,3612,,,,,,,4672,,2982,0.47,,,,,,0.33,0.45,0.45,0.49,0.34,,,,,,0.35,0.28,0.22,0.38,0.879676708,133220,151442,0.870255989,0.889097427,0.642927811,38991,60646,0.608609107,0.677246514,0.030760475,3297,107183,,,0.272,14312,,0.199319149,0.344680851,0.729166667,0.170984724,1,0.119524067,0.031228074,0.20782006,0.384817073,0.34867093,0.420963216,0.431323493,0.33708227,0.525564715,0.042945319,0.023764997,0.06212564,5.347850337,115059,21515,4.94445958,5.751241094,0.450009344,24080,53510,0.413262218,0.48675647,14.02604712,319,227434,,,79.57784836,900,1130968,74.37876226,84.77693445,,,,,,,87.65292439,80.54987967,94.7559691,53.30232107,33.40428084,80.70035467,76.53684353,67.60374623,85.46994084,,,,9,,,,,0,,,,,0.16958999,15180,89510,0.154737289,0.184442691,0.153482275,0.138826233,0.168138318,0.020109485,0.015610385,0.024608585,0.008267233,0.00496947,0.011564996,0.818916355,80271,98021,0.804570187,0.833262522,,,,0.785676672,0.730052848,0.841300496,0.848981313,0.829598528,0.868364098,0.768826201,0.678270611,0.859381792,0.871978188,0.856841937,0.887114438,0.209,,98021,0.192576453,0.225423547,73.71813352,,,73.32079543,74.11547162,,,,87.55015113,82.1751262,92.92517605,71.56524172,71.03300912,72.09747431,84.08863198,77.3912707,90.78599325,76.63345168,76.02613897,77.24076438,,,,544.6651953,4157,635892,527.5788018,561.7515887,,,,161.4306942,111.7954485,225.5832145,651.3095354,626.408667,676.2104037,295.6468217,216.4506312,394.3514291,430.0671334,404.5201937,455.6140731,,,,97.41943919,231,237119,84.8563713,109.9825071,,,,,,,116.8293307,99.66614275,133.9925187,126.8303932,79.48393216,192.0227395,37.62014935,22.97936457,58.1012695,,,,9.479536961,208,21942,8.191253213,10.76782071,,,,,,,11.66489926,9.885001354,13.44479716,,,,4.199916002,2.565417805,6.486429631,,,,,,,0.126,,,0.108,0.146,0.181,,,0.158,0.208,0.145,,,0.126,0.168,827,1559,188508,,,0.141,32260,,,,0.10744318,24643.49001,229363,,,11.93706074,81,678559,9.479749291,14.83667657,,,,,,,8.920540287,6.247836749,12.34978789,,,,19.39953811,13.98148071,26.22253985,,,,0.424,,,0.407,0.439,0.15690861,19856,126545,0.13784478,0.175972439,0.037667708,2013,53441,0.026944304,0.048391113,0.00168757,382,226361,,,592.5680628,0.858939039,1465.35,1706,,,0.08192156,1059,12927,0.054725423,0.109117696,2.534611282,,,,,,3.410934511,2.408094324,1.94859326,3.34489614,2.324077104,,,,,,3.550165645,2.169502286,2.141366649,2.970847988,0.2287079,,,,,-22227.36,,,,,0.791255263,41912,52969,0.757685691,0.824824834,56862,,,52598.85106,61125.14894,29167,11449.55319,46884.44681,104390,78115.2766,130664.7234,44847,42537.89362,47156.10638,43750,27675.61702,59824.38298,79471,75603.42553,83338.57447,,,,,,0.686860791,21088,30702,,,55.34604103,,,,,0.245981499,,56862,,,9.796289088,151,15414,,,24.11865875,382,1583836,21.6999836,26.5373339,,,,,,,37.26752357,33.33494816,41.20009897,,,,5.299587579,3.521537459,7.659379597,,,,10.93310008,125,1130968,8.979579825,12.88662033,11.05247894,,,,,,,6.983664243,5.093932621,9.344692216,,,,17.73432882,13.50019278,22.87599209,,,,33.06901698,374,1130968,29.71749899,36.42053498,,,,,,,45.10005169,40.00498512,50.19511827,,,,17.91287827,13.85381876,22.7895732,,,,15.27935973,242,1583836,13.35425862,17.20446084,,,,,,,19.01183811,16.20301852,21.8206577,19.44871727,9.708729587,34.79912748,10.22063319,7.678054213,13.33570926,,,,10.74561404,,22800,,,233,12,0.592016004,99139,167460,,,0.604,,,,,130.1357883,,,,,0.572318632,51349,89721,0.556742771,0.587894494,0.172702015,14856,86021,0.157038049,0.18836598,0.868124519,77889,89721,0.856169474,0.880079565,226361,,,,,0.237072641,53664,226361,,,0.16366777,37048,226361,,,0.605280945,137012,226361,,,0.003194013,723,226361,,,0.034833739,7885,226361,,,0.00085262,193,226361,,,0.040545854,9178,226361,,,0.303409156,68680,226361,,,0.014451695,3076,212847,0.011973667,0.016929724,0.5296142,119884,226361,,,0.123640557,28308,228954,, -01,103,01103,AL,Morgan County,2024,1,11904.57426,2497,336156,11185.69625,12623.45228,0,,,,2,,,,2,17884.67936,15438.39049,20330.96824,,8582.698248,6727.46536,10791.45449,,11445.56611,10621.90898,12269.22324,,,,,2,,0.192,,,0.164,0.222,4.060015563,,,3.221566965,4.935570191,5.500220925,,,4.477814613,6.53963116,0.091474859,926,10123,0.085858941,0.097090778,0,,,,0.12,0.056307539,0.183692461,0.161502966,0.142984531,0.180021402,0.077639752,0.065706883,0.08957262,0.077753094,0.071141605,0.084364584,,,,0.110204082,0.070992255,0.149415908,0.189,,,0.154,0.228,0.427,,,0.359,0.496,7.1,0.082711688,0.138,,,0.325,,,0.276,0.379,0.716182821,88392,123421,,,0.144540107,,,0.115897721,0.177198484,0.2,20,100,0.150146513,0.253960307,475.5,588,123668,,,31.68708021,802,25310,29.49401719,33.88014322,,,,,,,38.50354997,32.14808561,44.85901433,67.18192628,58.42293077,75.94092179,23.58739659,21.28158905,25.89320412,,,,36.66666667,25.23964619,51.49363252,0.138534345,13817,99737,0.123044984,0.154023707,0.000509429,63,123668,,,1962.984127,0.000523303,65,124211,,,1910.938462,0.001642367,204,124211,,,608.877451,3209,,,,,,,4066,,3155,0.4,,,,,,0.48,0.38,0.27,0.4,0.43,,,,,,0.36,0.33,0.23,0.44,0.852310484,72339,84874,0.839097894,0.865523073,0.579736151,17446,30093,0.537974241,0.621498062,0.020914173,1272,60820,,,0.172,4793,,0.118382979,0.225617021,,,,,,,0.33930729,0.250260485,0.428354094,0.293999104,0.218641971,0.369356238,0.103387817,0.070593538,0.136182097,4.76346631,124779,26195,4.36881582,5.158116801,0.255829757,7153,27960,0.216208333,0.295451181,11.15890934,138,123668,,,92.82409833,558,601137,85.12216578,100.5260309,,,,,,,102.1423708,80.73930544,127.4783014,34.65737336,20.54015592,54.7735916,101.4699855,92.17687864,110.7630923,,,,7.6,,,,,0,,,,,0.114572106,5315,46390,0.098513823,0.13063039,0.093555094,0.078642844,0.108467343,0.02037077,0.01422523,0.026516309,0.007329166,0.001829918,0.012828413,0.853007297,46291,54268,0.838862215,0.867152379,,,,,,,0.874738457,0.859379006,0.890097909,0.749316566,0.655603823,0.84302931,0.863196437,0.8480038,0.878389073,0.351,,54268,0.322753911,0.379246089,73.1509763,,,72.63087095,73.67108165,,,,,,,69.14864888,67.44200167,70.85529609,80.85723205,75.11601118,86.59845292,73.35344523,72.76998802,73.93690243,,,,562.0821529,2497,336156,538.9922133,585.1720925,,,,,,,780.5433385,701.5018047,859.5848724,419.1849432,319.1030007,540.7180356,553.8255794,527.8784386,579.7727201,,,,70.25025621,85,120996,56.11340954,86.8655297,,,,,,,120.7660015,74.75605834,184.6036617,72.29911175,39.52659717,121.3056245,63.11342384,46.6916584,83.43929338,,,,6.48443735,65,10024,5.004551849,8.264947707,,,,,,,16.99346405,11.10069491,24.89936215,,,,3.792068257,2.429649685,5.642296981,,,,,,,0.126,,,0.109,0.145,0.189,,,0.166,0.215,0.114,,,0.098,0.131,148.5,154,103682,,,0.138,16910,,,,0.082711688,9883.21956,119490,,,19.5468436,71,363230,15.26624702,24.65568348,,,,,,,38.75635174,22.96947029,61.25174461,,,,18.77367416,13.97823352,24.68391441,,,,0.383,,,0.367,0.397,0.174264685,12454,71466,0.152817877,0.195711494,0.05095627,1516,29751,0.036658398,0.065254143,0.000917793,114,124211,,,1089.570175,0.921786217,1310.78,1422,,,0.073348822,442,6026,0.041868031,0.104829612,2.884934089,,,,,,,2.57394548,2.222290619,3.183370578,2.747438759,,,,,,,2.401523734,2.278454489,2.986295143,0.200970305,,,,,-1647.685567,,,,,0.704413788,38909,55236,0.639672018,0.769155558,62260,,,57617.95745,66902.04255,,,,,,,40135,33555.59575,46714.40426,52374,37211.10638,67536.89362,66623,63519.17021,69726.82979,,,,,,0.405760802,7776,19164,,,58.83338399,,,,,0.255220045,,62260,,,6.359945873,47,7390,,,10.71793492,90,839714,8.618485357,13.17416165,,,,,,,27.43691874,18.37493509,39.40399201,,,,8.528959767,6.407217075,11.12844241,,,,22.28442059,140,601137,18.46825257,26.1005886,23.2892003,,,,,,,14.10851207,7.042918393,25.24402527,,,,25.63117116,20.88394863,30.37839368,,,,24.12095745,145,601137,20.19480994,28.04710497,,,,,,,36.66649206,24.36461769,52.99328996,,,,24.59207072,20.01708565,29.16705579,,,,17.14869587,144,839714,14.34774221,19.94964952,,,,,,,14.19150969,7.942880245,23.40673706,,,,18.79530023,15.41829403,22.17230643,,,,,,12800,,,121,-888,0.608127689,53722,88340,,,0.701,,,,,73.35577301,,,,,0.727481043,34922,48004,0.706288617,0.74867347,0.096521909,4443,46031,0.082681062,0.110362756,0.814911257,39119,48004,0.795476498,0.834346017,124211,,,,,0.228127944,28336,124211,,,0.184838702,22959,124211,,,0.130624502,16225,124211,,,0.011255042,1398,124211,,,0.007084719,880,124211,,,0.001537706,191,124211,,,0.091400923,11353,124211,,,0.740023025,91919,124211,,,0.024573167,2844,115736,0.015650654,0.03349568,0.504440025,62657,124211,,,0.38437543,47440,123421,, -01,105,01105,AL,Perry County,2024,1,17843.47794,253,23488,14457.8747,21229.08118,0,,,,2,,,,2,19591.07147,15454.92956,23727.21339,,,,,2,12842.17508,8048.122752,19443.20741,1,,,,2,,0.317,,,0.276,0.362,5.431351442,,,4.343485554,6.612462092,6.291980977,,,5.035723907,7.669861816,0.145862553,104,713,0.119953765,0.17177134,0,,,,,,,0.164874552,0.134085831,0.195663273,,,,0.068493151,0.027520294,0.109466007,,,,,,,0.265,,,0.215,0.317,0.525,,,0.438,0.612,3.7,0.278470743,0.2,,,0.456,,,0.39,0.523,0.55152156,4694,8511,,,0.106485287,,,0.082920951,0.136068607,0.625,5,8,0.470053641,0.740226608,789.9,66,8355,,,22.16378663,59,2662,16.87210129,28.58966993,,,,,,,34.20891875,25.84104959,44.42312646,,,,,,,,,,,,,0.125042532,735,5878,0.104787212,0.145297851,0.000359066,3,8355,,,2785,0.000248911,2,8035,,,4017.5,0.000622278,5,8035,,,1607,4687,,,,,,,5549,,3316,0.41,,,,,,,0.44,,0.36,0.27,,,,,,,0.24,,0.3,0.795822356,4229,5314,0.723595644,0.868049068,0.285903375,432,1511,0.169848057,0.401958693,0.052546221,162,3083,,,0.612,1016,,0.438042553,0.785957447,,,,,,,0.690896739,0.595367803,0.786425676,,,,0.082802548,0,0.278567269,3.65285236,57821,15829,2.67976295,4.625941769,0.585379464,1049,1792,0.440606737,0.730152192,8.378216637,7,8355,,,99.00099001,44,44444,71.9342709,132.9042082,,,,,,,96.91865517,64.90794445,139.1913557,,,,114.5737855,64.12607801,188.9720354,,,,9.4,,,,,0,,,,,0.122611465,385,3140,0.063651805,0.181571125,0.105090312,0.048390207,0.161790417,0,0,0.012901477,0.030254777,0,0.069455149,0.844619666,1821,2156,0.755945006,0.933294326,,,,,,,,,,,,,,,,0.344,,2156,0.210500011,0.477499989,69.03754268,,,66.95311015,71.12197522,,,,,,,67.69380124,65.20523033,70.18237214,,,,72.42025974,68.89022871,75.95029077,,,,834.6977798,253,23488,723.9404943,945.4550653,,,,,,,921.8389185,782.69516,1060.982677,,,,661.8407846,489.6334559,874.9886163,,,,150.408251,14,9308,82.22959042,252.3594878,,,,,,,184.729064,95.45220303,322.6844989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.176,,,0.151,0.203,0.221,,,0.191,0.253,0.194,,,0.169,0.222,419.4,30,7152,,,0.2,1740,,,,0.278470743,2949.283634,10591,,,,,,,,,,,,,,,,,,,,,,,,,,0.465,,,0.449,0.479,0.157919291,677,4287,0.130515036,0.185323546,0.038140644,64,1678,0.025034261,0.051247027,0.000746733,6,8035,,,1339.166667,0.975,92.625,95,,,,,,,,2.323915114,,,,,,,2.312584129,,,2.037406236,,,,,,,2.021885466,,,0.370463216,,,,,-60228.49,,,,,0.78080061,26605,34074,0.538228433,1.023372788,33585,,,28784.48936,38385.51064,,,,,,,30038,24432.04255,35643.95745,,,,45139,32952.44681,57325.55319,,,,,,0.834130782,1046,1254,,,52.07990245,,,,,0.395891023,,33585,,,7.130124777,4,561,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,22.500225,10,44444,10.78973246,41.37871488,,,,,,,,,,,,,,,,,,,36.12376315,23,63670,22.89936711,54.20338133,,,,,,,39.71684228,23.13652424,63.59051192,,,,,,,,,,,,800,,,6,-888,0.735583685,5230,7110,,,0.39,,,,,7.847464955,,,,,0.701463415,2157,3075,0.651333127,0.751593703,0.092809068,262,2823,0.024538092,0.161080045,0.657886179,2023,3075,0.577663793,0.738108565,8035,,,,,0.209209708,1681,8035,,,0.214810205,1726,8035,,,0.688736777,5534,8035,,,0.003733665,30,8035,,,0.005849409,47,8035,,,0.000622278,5,8035,,,0.015059116,121,8035,,,0.278033603,2234,8035,,,0,0,7962,0,0.010774584,0.531922838,4274,8035,,,1,8511,8511,, -01,107,01107,AL,Pickens County,2024,1,11735.26814,486,53667,9967.746425,13502.78985,0,,,,2,,,,2,15136.19305,12177.16953,18095.21656,,,,,2,10133.99956,7671.299074,12596.70004,,,,,2,,0.242,,,0.211,0.273,4.573190493,,,3.683431951,5.513392326,5.786738659,,,4.662043045,6.9900325,0.123836793,173,1397,0.106563497,0.141110089,0,,,,,,,0.153609831,0.125911067,0.181308595,,,,0.103139014,0.080091872,0.126186155,,,,,,,0.22,,,0.182,0.257,0.449,,,0.369,0.533,7.1,0.014966823,0.167,,,0.371,,,0.317,0.428,0.101971448,1950,19123,,,0.125840484,,,0.098085265,0.158040623,0.2,4,20,0.089212428,0.331567708,521.2,98,18801,,,32.00667966,115,3593,26.15678865,37.85657066,,,,,,,36.63663664,28.02412406,47.06129244,,,,26.08695652,19.0280051,34.90640029,,,,,,,0.119714608,1594,13315,0.103033757,0.136395459,0.000372321,7,18801,,,2685.857143,0.000213938,4,18697,,,4674.25,0.000481361,9,18697,,,2077.444444,3912,,,,,,,5337,,3234,0.39,,,,,,,0.36,,0.41,0.44,,,,,,,0.35,,0.47,0.849470277,11546,13592,0.825511515,0.873429038,0.470114455,2218,4718,0.393047567,0.547181343,0.032547845,250,7681,,,0.303,1046,,0.193382979,0.412617021,,,,,,,0.525331725,0.432549178,0.618114272,,,,0.213557289,0.136034534,0.291080044,5.232107908,98913,18905,4.477851629,5.986364187,0.462612983,1689,3651,0.3763234,0.548902566,10.63773204,20,18801,,,93.27034206,92,98638,75.18905976,114.3877948,,,,,,,94.34683938,66.42888178,130.0446902,,,,96.51048369,71.85839421,126.8934626,,,,9.3,,,,,0,,,,,0.108667529,840,7730,0.080552383,0.136782675,0.093342037,0.066760742,0.119923331,0.009573092,0.001971588,0.017174596,0.007761966,0,0.017962076,0.882229861,5903,6691,0.843627325,0.920832397,,,,,,,0.795400476,0.680495954,0.910304998,,,,0.813944379,0.750470432,0.877418326,0.613,,6691,0.535324397,0.690675603,72.20131681,,,70.96391931,73.43871431,,,,,,,69.98416024,68.02301923,71.94530125,,,,73.26931492,71.50983768,75.02879215,,,,625.2963126,486,53667,566.7323742,683.8602511,,,,,,,826.5467066,716.4360612,936.6573519,,,,531.1574544,459.137269,603.1776398,,,,88.29242451,15,16989,49.41659976,145.6249271,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.146,,,0.127,0.166,0.198,,,0.173,0.226,0.142,,,0.123,0.164,344.3,56,16264,,,0.167,3220,,,,0.014966823,295.5348946,19746,,,17.08700704,10,58524,8.193884041,31.42361432,,,,,,,,,,,,,,,,,,,0.42,,,0.407,0.432,0.145812209,1438,9862,0.1243654,0.167259017,0.047304731,172,3636,0.031815369,0.062794092,0.000374392,7,18697,,,2671,0.975,161.85,166,,,,,,,,2.855263083,,,,,,,2.588956375,,3.345798904,2.630204061,,,,,,,2.317246389,,3.092325024,0.299047167,,,,,-13956.22,,,,,0.84923887,40000,47101,0.747918021,0.950559718,45440,,,39235.91489,51644.08511,,,,,,,29007,25865.04255,32148.95745,53571,35819,71323,61516,53952.42553,69079.57447,,,,,,0.665386257,1559,2343,,,29.02406749,,,,,0.292605634,,45440,,,5.175983437,5,966,,,,,,,,,,,,,,,,,,,,,,,,,,8.704100129,10,98638,3.980068834,16.52309333,10.13808066,,,,,,,,,,,,,,,,,,,15.20712099,15,98638,8.511310177,25.08183344,,,,,,,,,,,,,,,,,,,30.75250669,43,139826,22.25574157,41.42342469,,,,,,,46.78446756,30.56116748,68.55008472,,,,22.61540508,13.17430686,36.20945433,,,,22.35294118,,1700,,,38,0,0.625760518,9668,15450,,,0.548,,,,,9.807551331,,,,,0.741634901,5253,7083,0.707185822,0.776083979,0.11071053,737,6657,0.079969514,0.141451547,0.747564591,5295,7083,0.711583921,0.783545262,18697,,,,,0.188318982,3521,18697,,,0.196448628,3673,18697,,,0.389634701,7285,18697,,,0.002941648,55,18697,,,0.003636947,68,18697,,,0.003476494,65,18697,,,0.060384019,1129,18697,,,0.532705782,9960,18697,,,0.017574106,316,17981,0.009758712,0.0253895,0.490987859,9180,18697,,,1,19123,19123,, -01,109,01109,AL,Pike County,2024,1,13153.67064,673,92415,11691.32985,14616.01144,0,,,,2,,,,2,17071.80918,14346.85043,19796.76794,,,,,2,11165.55383,9413.380644,12917.72701,,,,,2,,0.212,,,0.183,0.246,4.331745623,,,3.487295084,5.31133629,5.882695153,,,4.830911011,7.085803993,0.113914072,289,2537,0.101551112,0.126277031,0,,,,,,,0.161844485,0.140137987,0.183550983,,,,0.077901431,0.063090678,0.092712184,,,,,,,0.197,,,0.16,0.239,0.415,,,0.342,0.495,6.8,0.10493585,0.14,,,0.34,,,0.285,0.401,0.612954043,20233,33009,,,0.137801345,,,0.10932634,0.171501168,0.270833333,13,48,0.195582836,0.349309145,900.2,297,32991,,,14.73832848,167,11331,12.50297573,16.97368123,,,,,,,21.54566745,17.36884889,26.42384848,,,,10.45922536,8.054878011,13.35619729,,,,,,,0.120455694,3098,25719,0.101391864,0.139519524,0.000424358,14,32991,,,2356.5,0.000302902,10,33014,,,3301.4,0.000817835,27,33014,,,1222.740741,3056,,,,,,,2795,,3021,0.44,,,,,,,0.44,,0.44,0.33,,,,,,,0.27,,0.35,0.878989846,16881,19205,0.860095108,0.897884585,0.605843517,4313,7119,0.528546548,0.683140487,0.027365808,441,16115,,,0.368,2283,,0.284595745,0.451404255,,,,,,,0.526413003,0.436741784,0.616084223,0.45,0.220563761,0.679436239,0.109240811,0.060334349,0.158147273,6.30078949,104549,16593,5.543223767,7.058355212,0.44937833,2783,6193,0.383451486,0.515305175,9.396502076,31,32991,,,73.6377025,122,165676,60.57068761,86.7047174,,,,,,,73.89083432,54.09737753,98.56001817,,,,74.72465589,58.14024254,94.56883451,,,,9.2,,,,,0,,,,,0.160683761,1880,11700,0.120634212,0.20073331,0.157829182,0.115193306,0.200465058,0.007606838,0.001456159,0.013757516,0.002991453,0,0.006865525,0.843529765,11251,13338,0.80926478,0.87779475,,,,,,,0.844306884,0.787250547,0.901363222,,,,0.865118134,0.833082679,0.897153589,0.211,,13338,0.173115135,0.248884865,72.13856395,,,71.09391363,73.18321427,,,,,,,69.44380094,67.6739214,71.21368048,,,,73.30882457,72.01738011,74.60026903,,,,657.0650753,673,92415,605.0361268,709.0940238,,,,,,,798.0427771,701.1885486,894.8970056,,,,606.4291754,541.9281013,670.9302494,,,,55.43920168,18,32468,32.85678447,87.61783993,,,,,,,79.88380537,39.87770782,142.934194,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.134,,,0.115,0.155,0.193,,,0.168,0.22,0.135,,,0.115,0.157,404.5,115,28430,,,0.14,4660,,,,0.10493585,3452.284528,32899,,,,,,,,,,,,,,,,,,,,,,,,,,0.394,,,0.379,0.409,0.145022197,2842,19597,0.12119241,0.168851985,0.044296959,287,6479,0.028807598,0.059786321,0.001151027,38,33014,,,868.7894737,0.925,228.475,247,,,0.076113861,246,3232,0.027182466,0.125045257,2.771098576,,,,,,,2.457596766,,3.201003058,2.888447538,,,,,,,2.594531826,,3.240546201,0.052704033,,,,,-14121.495,,,,,1.032090571,38562,37363,0.899864431,1.164316711,45144,,,39281.87234,51006.12766,155714,89188.38298,222239.617,,,,33328,31035.57447,35620.42553,37619,18494.40426,56743.59575,55137,49180.74468,61093.25532,,,,,,0.703568638,2701,3839,,,26.92320336,,,,,0.232079568,,45144,,,7.415858528,13,1753,,,13.79262784,32,232008,9.434147233,19.47107517,,,,,,,28.80914518,18.64375976,42.5279814,,,,,,,,,,13.99949511,24,165676,8.77340905,21.19540383,14.48610541,,,,,,,,,,,,,22.20299281,13.36765207,34.6727236,,,,22.33274584,37,165676,15.72431406,30.78274834,,,,,,,24.09483728,13.48569752,39.74076987,,,,21.65932055,13.23007568,33.45106391,,,,24.13709872,56,232008,18.23290498,31.34403038,,,,,,,27.65677937,17.7202204,41.15109543,,,,20.80507952,13.7106785,30.2702984,,,,,,2700,,,38,-888,0.532858518,13841,25975,,,0.455,,,,,36.91523088,,,,,0.630293431,7561,11996,0.595750388,0.664836474,0.176155152,1971,11189,0.136722168,0.215588136,0.760086696,9118,11996,0.720338557,0.799834834,33014,,,,,0.190494942,6289,33014,,,0.158750833,5241,33014,,,0.377839704,12474,33014,,,0.006815291,225,33014,,,0.019900648,657,33014,,,0.000848125,28,33014,,,0.024807657,819,33014,,,0.554673775,18312,33014,,,0.008045206,252,31323,0.001808249,0.014282163,0.521051675,17202,33014,,,0.561755885,18543,33009,, -01,111,01111,AL,Randolph County,2024,1,12460.76755,523,61674,10685.19005,14236.34505,0,,,,2,,,,2,15437.48663,11367.82811,19507.14515,,,,,2,12184.99746,10082.38631,14287.60861,,,,,2,,0.208,,,0.176,0.24,4.338426248,,,3.481910484,5.288654152,5.90194675,,,4.78576503,7.095600583,0.093573844,166,1774,0.080021242,0.107126447,0,,,,,,,0.172077922,0.129923997,0.214231847,,,,0.07951988,0.064995886,0.094043874,,,,,,,0.203,,,0.164,0.243,0.401,,,0.327,0.483,6.4,0.131833282,0.145,,,0.345,,,0.289,0.404,0.40975099,9001,21967,,,0.134499988,,,0.105051418,0.168061963,0.53125,17,32,0.452445961,0.602523009,541.2,119,21989,,,31.26916003,153,4893,26.31435498,36.22396507,,,,,,,25.72898799,17.35924016,36.72973018,,,,33.25344518,27.0671416,39.43974876,,,,,,,0.125726019,2143,17045,0.107853679,0.14359836,0.000272864,6,21989,,,3664.833333,8.89719E-05,2,22479,,,11239.5,0.000311402,7,22479,,,3211.285714,2921,,,,,,,2106,,2833,0.3,,,,,,,0.28,,0.31,0.34,,,,,,,0.21,,0.35,0.820161394,12806,15614,0.791537834,0.848784953,0.490655165,2389,4869,0.415486406,0.565823925,0.024556335,238,9692,,,0.276,1275,,0.175914894,0.376085106,,,,,,,0.327349525,0.181017931,0.473681119,0.356321839,0.138694347,0.573949332,0.203428202,0.142848684,0.26400772,5.635394801,104700,18579,4.089892289,7.180897312,0.283553058,1312,4627,0.203503797,0.36360232,9.55022966,21,21989,,,101.7465008,115,113026,83.15019697,120.3428046,,,,,,,92.59687949,56.56057959,143.0083703,,,,107.809131,86.90937561,132.2183287,,,,9.5,,,,,0,,,,,0.123627961,1070,8655,0.091851647,0.155404275,0.091452481,0.0632704,0.119634562,0.024841132,0.01177834,0.037903924,0.019064125,0.00638593,0.031742319,0.84307001,7129,8456,0.808650162,0.877489857,,,,,,,0.862765957,0.82812446,0.897407455,,,,0.831619537,0.789530442,0.873708633,0.461,,8456,0.387358632,0.534641369,72.97142242,,,71.70577193,74.23707291,,,,,,,70.2141204,67.46033899,72.96790182,,,,73.18431937,71.70299843,74.6656403,,,,586.406014,523,61674,532.0057479,640.8062802,,,,,,,779.6707035,631.6448966,927.6965104,,,,562.5915484,501.5182983,623.6647985,,,,88.51206559,19,21466,53.29004549,138.2225546,,,,,,,,,,,,,88.65852827,47.20693235,151.6087835,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.134,,,0.115,0.155,0.199,,,0.172,0.227,0.12,,,0.103,0.14,101.5,19,18724,,,0.145,3190,,,,0.131833282,3020.695996,22913,,,,,,,,,,,,,,,,,,,,,,,,,,0.394,,,0.378,0.41,0.1556,1945,12500,0.131770213,0.179429787,0.0452072,216,4778,0.030909327,0.059505072,0.000845233,19,22479,,,1183.105263,0.8984,224.6,250,,,,,,,,2.760856056,,,,,,,2.394685738,,2.929302125,2.621643607,,,,,,,2.194410704,,2.822178371,0.089479896,,,,,-8927.821,,,,,0.755063877,38358,50801,0.660702372,0.849425382,49433,,,42454.44681,56411.55319,,,,,,,34423,27461.12766,41384.87234,,,,58569,53663.6383,63474.3617,,,,,,0.570450656,2000,3506,,,35.3629324,,,,,0.250844578,,49433,,,4.780876494,6,1255,,,,,,,,,,,,,,,,,,,,,,,,,,24.50710106,29,113026,15.85970364,36.17731563,25.65781325,,,,,,,,,,,,,24.45617431,14.93846662,37.7705777,,,,24.77306107,28,113026,16.46151917,35.80397072,,,,,,,,,,,,,25.78044436,16.15646723,39.03190258,,,,29.67658833,47,158374,21.80524087,39.46357126,,,,,,,,,,,,,32.66824144,23.23031319,44.65856148,,,,11.36363636,,2200,,,25,0,0.610363278,10837,17755,,,0.519,,,,,6.372819885,,,,,0.792416084,6917,8729,0.767136962,0.817695206,0.111470918,895,8029,0.080926824,0.142015012,0.798831481,6973,8729,0.770088171,0.827574792,22479,,,,,0.208817118,4694,22479,,,0.213666088,4803,22479,,,0.182748343,4108,22479,,,0.005160372,116,22479,,,0.005471774,123,22479,,,0.001112149,25,22479,,,0.031051203,698,22479,,,0.758841586,17058,22479,,,0.002434716,51,20947,0,0.008014288,0.510876818,11484,22479,,,1,21967,21967,, -01,113,01113,AL,Russell County,2024,1,13437.02668,1297,164770,12370.79306,14503.2603,0,,,,2,,,,2,12766.11856,11199.63695,14332.60017,,6650.101224,3873.929027,10647.45627,1,15577.44221,13828.26644,17326.61797,,,,,2,,0.229,,,0.198,0.261,4.538482548,,,3.643126193,5.498760997,5.836224038,,,4.707316573,7.010570194,0.108208955,609,5628,0.100092953,0.116324958,0,,,,,,,0.14261532,0.128516097,0.156714542,0.067484663,0.045249917,0.089719409,0.085552865,0.074539958,0.096565773,,,,0.086705202,0.044771705,0.1286387,0.202,,,0.165,0.24,0.438,,,0.36,0.516,6.8,0.066652777,0.157,,,0.345,,,0.292,0.404,0.547201054,32385,59183,,,0.13901765,,,0.108894575,0.174538955,0.151898734,12,79,0.099137753,0.212899677,688,404,58722,,,30.41988003,355,11670,27.25542163,33.58433844,,,,,,,26.03071948,22.00976363,30.05167534,45.82210243,31.73313799,64.03179528,32.5029656,27.06021072,37.94572048,,,,52.92479109,31.86418152,82.64861719,0.113180457,5518,48754,0.095308117,0.131052797,0.000170294,10,58722,,,5872.2,0.000273247,16,58555,,,3659.6875,0.000546495,32,58555,,,1829.84375,3205,,,,,,,3718,,3150,0.4,,,,,,0.32,0.39,0.29,0.4,0.35,,,,,,0.33,0.31,0.24,0.37,0.851911307,33964,39868,0.831427658,0.872394957,0.638753591,10229,16014,0.568213138,0.709294044,0.026024971,617,23708,,,0.305,4269,,0.209680851,0.400319149,,,,0.50877193,0.043833423,0.973710436,0.427835052,0.318468933,0.53720117,0.447447447,0.283335146,0.611559749,0.14487701,0.078093101,0.211660918,5.303648377,92310,17405,4.382574871,6.224721883,0.395874541,5604,14156,0.314315004,0.477434078,9.53645993,56,58722,,,123.9016242,359,289746,111.0846401,136.7186083,,,,,,,92.33255107,75.81216154,108.8529406,,,,172.2132423,149.8592451,194.5672394,,,,9.5,,,,,0,,,,,0.17535345,4155,23695,0.143994302,0.206712598,0.157849462,0.126435823,0.189263102,0.015615109,0.006068681,0.025161536,0.010761764,0.004756672,0.016766856,0.832046168,19608,23566,0.80610581,0.857986526,,,,,,,0.688583579,0.603930811,0.773236346,,,,0.862433205,0.807576444,0.917289966,0.34,,23566,0.294131528,0.385868472,71.54286791,,,70.79433313,72.29140269,,,,,,,72.25182778,71.07483448,73.42882108,77.30050396,73.55746169,81.04354623,69.95954035,68.85907171,71.06000899,,,,646.1020841,1297,164770,609.8253727,682.3787956,,,,,,,605.799682,553.1784169,658.4209472,319.9414602,189.6175861,505.6454422,739.5496257,682.1872098,796.9120416,,,,76.89664763,47,61121,56.50076433,102.2562398,,,,,,,102.6730395,68.76174593,147.4556114,,,,51.22076148,26.46651489,89.47236234,,,,9.071877181,52,5732,6.775311794,11.89655997,,,,,,,14.64435146,10.20032737,20.36674785,,,,,,,,,,,,,0.139,,,0.12,0.159,0.195,,,0.169,0.222,0.142,,,0.122,0.163,419.5,203,48391,,,0.157,9190,,,,0.066652777,3529.064555,52947,,,31.44294535,55,174920,23.68712953,40.92731533,,,,,,,,,,,,,52.96476582,38.17234449,71.59297685,,,,0.436,,,0.422,0.449,0.145217068,5081,34989,0.121387281,0.169046856,0.033564976,483,14390,0.021650082,0.045479869,0.000358637,21,58555,,,2788.333333,0.88943662,568.35,639,,,0.13529618,386,2853,0.055346123,0.215246236,2.72111565,,,,,,,2.547083058,2.595777057,3.044266316,2.528422728,,,,,,,2.329359466,2.464743546,2.90660152,0.058547772,,,,,-9305.399,,,,,0.73713848,35606,48303,0.623250907,0.851026054,45074,,,39301.23404,50846.76596,,,,,,,37574,25306.42553,49841.57447,45833,27391.12766,64274.87234,57505,51202.02128,63807.97872,,,,,,0.608067729,6105,10040,,,42.4485269,,,,,0.337910991,,45074,,,5.542957924,22,3969,,,18.40138575,75,407578,14.4738572,23.06629638,,,,,,,30.94008122,23.37180485,40.17826902,,,,10.07556675,6.066149365,15.73424556,,,,20.68550308,61,289746,15.70736974,26.74080954,21.05292222,,,,,,,,,,,,,37.45321326,27.42045933,49.95733792,,,,34.51298724,100,289746,27.74844174,41.27753274,,,,,,,36.93302043,27.23149373,48.96782686,,,,39.27670438,29.33372147,51.50617229,,,,31.40503168,128,407578,25.96438751,36.84567584,,,,,,,28.73007542,21.4569945,37.67567156,,,,38.18109506,29.8743554,48.08277027,,,,,,6000,,,42,-888,0.492586605,21329,43300,,,0.586,,,,,93.63011079,,,,,0.611669934,14351,23462,0.582031711,0.641308158,0.171934823,3862,22462,0.143939326,0.199930321,0.748572159,17563,23462,0.716381159,0.78076316,58555,,,,,0.24262659,14207,58555,,,0.155204509,9088,58555,,,0.4559474,26698,58555,,,0.006728717,394,58555,,,0.008094954,474,58555,,,0.002715396,159,58555,,,0.061668517,3611,58555,,,0.443702502,25981,58555,,,0.005904005,324,54878,0,0.012179589,0.523729827,30667,58555,,,0.403511143,23881,59183,, -01,115,01115,AL,St. Clair County,2024,1,10870.75525,1871,254445,10115.2942,11626.21631,0,,,,2,,,,2,12005.32106,9298.056464,14712.58566,,,,,2,11020.5361,10201.17825,11839.89394,,,,,2,,0.173,,,0.147,0.203,3.878696927,,,3.070985287,4.765096645,5.595211329,,,4.559075923,6.690168703,0.092333757,654,7083,0.085591725,0.099075789,0,,,,,,,0.181533646,0.151646488,0.211420805,0.071129707,0.038541523,0.103717892,0.083525916,0.076558654,0.090493178,,,,,,,0.182,,,0.147,0.224,0.392,,,0.322,0.462,7.8,0.02373814,0.13,,,0.303,,,0.254,0.357,0.492190158,44840,91103,,,0.14816503,,,0.118025128,0.183797152,0.20212766,19,94,0.150592483,0.257935215,284.6,264,92748,,,24.44177945,428,17511,22.12616097,26.75739794,,,,,,,15.96351197,10.60763777,23.07171947,22.91105121,13.34653163,36.68281242,25.58382712,22.9663159,28.20133833,,,,43.83561644,25.05584234,71.18629479,0.106048317,7976,75211,0.091750445,0.12034619,0.000183292,17,92748,,,5455.764706,0.000287442,27,93932,,,3478.962963,0.000244858,23,93932,,,4084,3045,,,,,,,6093,,2959,0.41,,,,,,0.31,0.4,,0.41,0.37,,,,,,0.35,0.34,,0.37,0.87286704,56320,64523,0.85539113,0.89034295,0.588579306,14090,23939,0.539319458,0.637839153,0.021983749,928,42213,,,0.172,3501,,0.129106383,0.214893617,,,,,,,0.226479147,0.124306831,0.328651462,0.518610422,0.25556999,0.781650854,0.116331096,0.085003156,0.147659036,3.791173987,125685,33152,3.416850996,4.165496977,0.203199922,4153,20438,0.164054705,0.242345138,8.194246776,76,92748,,,99.80261754,449,449888,90.57106315,109.0341719,,,,,,,62.32111532,41.07000769,90.6739508,,,,107.1640888,96.80350005,117.5246776,,,,10,,,,,0,,,,,0.102243247,3350,32765,0.085098354,0.119388141,0.082907175,0.067293268,0.098521082,0.016328399,0.009596207,0.023060591,0.007477491,0.001847896,0.013107086,0.850322018,35120,41302,0.830440333,0.870203704,,,,,,,0.76001128,0.747343576,0.772678985,,,,0.779930624,0.755708601,0.804152648,0.553,,41302,0.510305426,0.595694574,73.58727699,,,73.01946047,74.1550935,,,,,,,72.08080514,70.08770088,74.07390941,,,,73.38480291,72.78217046,73.98743536,,,,551.2649889,1871,254445,525.2940724,577.2359053,,,,,,,544.8835987,457.2521585,632.5150388,,,,566.2222678,537.8892499,594.5552857,,,,53.14577774,47,88436,39.04951849,70.67261787,,,,,,,118.4693757,56.81067049,217.8693999,,,,45.46143355,31.29355904,63.84475509,,,,6.046119235,43,7112,4.37560647,8.144082932,,,,,,,,,,,,,5.060398302,3.438295132,7.182831457,,,,,,,0.12,,,0.103,0.14,0.184,,,0.159,0.213,0.104,,,0.088,0.121,167.5,131,78227,,,0.13,11720,,,,0.02373814,1984.342324,83593,,,34.79866227,95,272999,28.15419583,42.53956008,,,,,,,,,,,,,39.68527849,31.99193559,48.67047113,,,,0.386,,,0.368,0.402,0.132473773,7223,54524,0.113409943,0.151537603,0.038433146,833,21674,0.026518252,0.050348039,0.000702636,66,93932,,,1423.212121,0.865469613,783.25,905,,,0.101282618,458,4522,0.047617324,0.154947913,3.045055498,,,,,,,2.686600402,2.67691854,3.118622969,2.886435354,,,,,,,2.600829358,2.801655216,2.936615828,0.034882525,,,,,-2112.2495,,,,,0.711468966,44888,63092,0.657967291,0.764970641,70361,,,63540.91489,77181.08511,198375,37078.31915,359671.6809,75417,17424.82979,133409.1702,55787,49834.31915,61739.68085,60714,37317.91489,84110.08511,75841,70015.80851,81666.19149,,,,,,0.466177845,6485,13911,,,28.06988798,,,,,0.298716619,,70361,,,3.72330002,19,5103,,,5.120155653,32,624981,3.502182676,7.228132068,,,,,,,,,,,,,4.308681431,2.731334424,6.46513769,,,,19.70684122,87,449888,15.69638903,24.42959469,19.33814638,,,,,,,,,,,,,22.03778585,17.4199552,27.5041541,,,,18.67131375,84,449888,14.89297108,23.11635691,,,,,,,,,,,,,19.55549066,15.38163393,24.51297688,,,,21.60065666,135,624981,17.95684316,25.24447016,,,,,,,20.06118662,10.36590787,35.04285579,,,,21.91807511,17.94647466,25.88967556,,,,,,9500,,,105,-888,0.653063924,44441,68050,,,0.682,,,,,25.77314317,,,,,0.817365093,27658,33838,0.793511234,0.841218951,0.073346693,2379,32435,0.058733884,0.087959503,0.893019682,30218,33838,0.876703811,0.909335553,93932,,,,,0.220446706,20707,93932,,,0.180694545,16973,93932,,,0.107066814,10057,93932,,,0.00388579,365,93932,,,0.008857471,832,93932,,,0.000979432,92,93932,,,0.026519184,2491,93932,,,0.83938381,78845,93932,,,0.001129839,98,86738,0,0.003010054,0.503438658,47289,93932,,,0.671108526,61140,91103,, -01,117,01117,AL,Shelby County,2024,1,6592.670274,2621,624275,6201.15789,6984.182657,0,,,,2,,,,2,8538.950889,7298.124606,9779.777171,,4258.010994,3117.399206,5679.589962,,6618.75538,6167.413781,7070.09698,,,,,2,,0.128,,,0.105,0.152,3.076180038,,,2.399855836,3.819203392,4.857196879,,,3.99060239,5.763957994,0.084229502,1355,16087,0.079937658,0.088521347,0,,,,0.083591331,0.053407107,0.113775556,0.149716281,0.135105953,0.164326609,0.081687133,0.069283202,0.094091064,0.070616239,0.065901671,0.075330807,,,,0.124463519,0.082076169,0.16685087,0.127,,,0.096,0.158,0.333,,,0.279,0.388,8.2,0.058197931,0.095,,,0.237,,,0.196,0.28,0.743390846,165794,223024,,,0.168420559,,,0.136877889,0.202273291,0.212389381,24,113,0.165119555,0.262850307,263.1,597,226902,,,10.0539719,516,51323,9.186473093,10.92147071,,,,,,,10.30662201,8.172510254,12.82748325,36.51960784,30.65567426,42.38354142,7.416630576,6.5384427,8.294818452,,,,10.73170732,5.357229627,19.20198879,0.079619858,14787,185720,0.070087943,0.089151773,0.000771258,175,226902,,,1296.582857,0.000508441,117,230115,,,1966.794872,0.001177672,271,230115,,,849.1328413,2801,,,,,,,3909,,2718,0.44,,,,,,0.58,0.44,0.18,0.44,0.41,,,,,,0.63,0.34,0.28,0.41,0.937928341,144108,153645,0.9318924,0.943964282,0.768884329,44217,57508,0.73573383,0.802034828,0.018319063,2223,121349,,,0.078,3939,,0.050595745,0.105404255,,,,0.047801147,0,0.13598903,0.063251202,0.031674965,0.094827439,0.222729076,0.13367117,0.311786981,0.052919914,0.040161225,0.065678604,4.017448227,165089,41093,3.808230876,4.226665579,0.168630758,8600,50999,0.147849277,0.189412238,9.695815815,220,226902,,,62.81131772,688,1095344,58.11778601,67.50484944,,,,,,,48.36993325,37.70673593,61.11250075,35.99881047,22.82015783,54.01589096,69.64745124,64.01791477,75.2769877,,,,10.6,,,,,0,,,,,0.095845459,7740,80755,0.086518425,0.105172493,0.085001251,0.076105828,0.093896674,0.008172869,0.005418434,0.010927303,0.005820073,0.003323613,0.008316533,0.790107474,89102,112772,0.77331061,0.806904337,,,,0.62208589,0.506045134,0.738126645,0.765597254,0.728158983,0.803035524,0.638224009,0.577331645,0.699116372,0.757038521,0.737041871,0.777035172,0.511,,112772,0.487682094,0.534317907,79.55788708,,,79.15145331,79.96432085,,,,92.59696971,84.44858088,100.7453585,76.15922613,74.9273998,77.39105246,95.74200405,84.20996324,107.2740449,79.47171231,79.02597548,79.91744914,,,,327.7012432,2621,624275,314.7501507,340.6523357,,,,,,,409.9196127,367.4340495,452.4051759,224.0804924,164.6459174,297.9795515,330.1692499,315.5384475,344.8000524,,,,43.61894843,98,224673,35.41197076,53.15752685,,,,,,,99.31719429,67.93288737,140.2062448,,,,37.25735359,28.36202379,48.05927163,,,,5.544480439,89,16052,4.452673071,6.822960279,,,,,,,14.72556894,10.13640409,20.6801737,,,,3.943217666,2.876210024,5.27633548,,,,,,,0.092,,,0.077,0.107,0.156,,,0.133,0.18,0.089,,,0.075,0.104,180.5,346,191694,,,0.095,20930,,,,0.058197931,11353.54332,195085,,,21.17015399,141,666032,17.67577076,24.66453721,,,,,,,,,,,,,25.46917153,21.09093507,29.84740799,,,,0.338,,,0.321,0.354,0.098380932,13204,134213,0.086466038,0.110295825,0.033415134,1811,54197,0.025074708,0.041755559,0.000677922,156,230115,,,1475.096154,0.943999141,2197.63,2328,,,0.040929559,509,12436,0.02386356,0.057995559,3.197249943,,,,,,3.435175126,2.766172226,2.555121058,3.406888707,2.947296544,,,,,,3.629626934,2.495561715,2.453975173,3.13346027,0.066304732,,,,,695.333,,,,,0.771458898,55238,71602,0.736699819,0.806217976,98263,,,91819.42553,104706.5745,136667,104052.3617,169281.6383,96094,66636.80851,125551.1915,70207,65786.57447,74627.42553,67752,55653.61702,79850.38298,96568,92482.38298,100653.617,,,,,,0.262522984,9423,35894,,,32.44273785,,,,,0.207087103,,98263,,,4.768560388,58,12163,,,3.763173583,57,1514679,2.850190923,4.875627866,,,,,,,11.71944664,7.429123863,17.58492415,,,,2.643869123,1.796380797,3.75276118,,,,13.72662104,150,1095344,11.49338976,15.95985231,13.69432799,,,,,,,7.028834651,3.508768933,12.57652676,,,,15.35233121,12.65058932,18.05407309,,,,13.32914591,146,1095344,11.1670151,15.49127672,,,,,,,17.27497616,11.17945373,25.50127261,,,,13.62152533,11.13190631,16.11114435,,,,11.75166487,178,1514679,10.02524881,13.47808094,,,,,,,9.171740847,5.435754901,14.49530472,,,,12.87820121,10.82409544,14.93230699,,,,7.137096774,,24800,,,171,6,0.717495787,114950,160210,,,0.756,,,,,46.50031516,,,,,0.809420359,67810,83776,0.799616883,0.819223836,0.098897595,8065,81549,0.088199445,0.109595746,0.927377769,77692,83776,0.920032815,0.934722724,230115,,,,,0.221832562,51047,230115,,,0.171940117,39566,230115,,,0.143045868,32917,230115,,,0.004254395,979,230115,,,0.02388371,5496,230115,,,0.000551898,127,230115,,,0.061212872,14086,230115,,,0.754705256,173669,230115,,,0.012832005,2720,211970,0.009888373,0.015775636,0.512378593,117906,230115,,,0.239673757,53453,223024,, -01,119,01119,AL,Sumter County,2024,1,16260.33312,304,33779,13391.59483,19129.07142,0,,,,2,,,,2,18805.82307,15169.12009,22442.52604,,,,,2,11277.33351,6789.69146,17610.95323,1,,,,2,,0.276,,,0.238,0.314,4.851560378,,,3.854037122,5.937050102,6.028917633,,,4.83687235,7.344466991,0.137044968,128,934,0.114989907,0.159100029,0,,,,,,,0.159317212,0.132263564,0.18637086,,,,0.0625,0.029603473,0.095396527,,,,,,,0.23,,,0.187,0.275,0.475,,,0.392,0.559,6.1,0.107446958,0.17,,,0.405,,,0.345,0.464,0.332523289,4105,12345,,,0.112302285,,,0.087025337,0.141865935,0.388888889,14,36,0.303559261,0.471308391,665.9,81,12164,,,21.31147541,78,3660,16.84583694,26.59768581,,,,,,,27.30236349,21.15895669,34.67303652,,,,,,,,,,,,,0.120266005,1067,8872,0.100010686,0.140521325,0.000575469,7,12164,,,1737.714286,0.000168734,2,11853,,,5926.5,0.000168734,2,11853,,,5926.5,3788,,,,,,,3695,,3491,0.44,,,,,,,0.44,,0.44,0.28,,,,,,,0.23,,0.36,0.888088115,6531,7354,0.842414665,0.933761566,0.566085848,1332,2353,0.446619874,0.685551822,0.035240374,162,4597,,,0.427,959,,0.273297872,0.580702128,,,,,,,0.62396466,0.55171647,0.69621285,,,,0.140877598,0,0.284323464,5.027220821,75720,15062,3.917511857,6.136929785,0.59009987,1359,2303,0.481017169,0.699182571,9.865175929,12,12164,,,120.5904107,75,62194,94.85200775,151.161124,,,,,,,140.3445232,107.6013412,179.9153448,,,,83.73051655,44.58297366,143.1817333,,,,9.4,,,,,0,,,,,0.117647059,630,5355,0.080006225,0.155287893,0.104236453,0.065835923,0.142636984,0.014939309,0.002128049,0.027750569,0.006349206,0,0.015712443,0.82229207,3401,4136,0.777854442,0.866729697,,,,,,,0.822361547,0.756449792,0.888273301,,,,0.805147059,0.744372044,0.865922074,0.44,,4136,0.342348742,0.537651258,71.33240161,,,69.33186739,73.33293583,,,,,,,68.62637349,66.27334971,70.97939728,,,,77.38487263,73.31510639,81.45463888,,,,731.8934163,304,33779,641.2184855,822.568347,,,,,,,833.2747305,722.1532862,944.3961747,,,,524.9450274,361.3480026,737.2179909,,,,109.9737755,13,11821,58.55640378,188.0585054,,,,,,,149.9596263,79.84718527,256.435528,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.154,,,0.132,0.177,0.204,,,0.177,0.232,0.182,,,0.158,0.208,354.8,37,10429,,,0.17,2120,,,,0.107446958,1478.792476,13763,,,,,,,,,,,,,,,,,,,,,,,,,,0.469,,,0.453,0.484,0.148654742,989,6653,0.122441976,0.174867508,0.037775891,89,2356,0.024669508,0.050882274,0.000168734,2,11853,,,5926.5,0.925,111.925,121,,,,,,,,2.164739669,,,,,,,2.147792241,,,1.813253853,,,,,,,1.798763035,,,0.357801411,,,,,-50922.41,,,,,0.573238322,28236,49257,0.377495907,0.768980736,35152,,,30089.3617,40214.6383,,,,,,,25828,22106.97872,29549.02128,,,,64667,48866.65957,80467.34043,,,,,,0.787297783,1314,1669,,,18.4147451,,,,,0.378243059,,35152,,,10.63829787,8,752,,,22.64056964,20,88337,13.82944812,34.96652354,,,,,,,30.17789072,18.16906157,47.12651457,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,30.5495707,19,62194,18.39283719,47.70693889,,,,,,,33.95432012,19.00397522,56.00248743,,,,,,,,,,48.67722472,43,88337,35.22794889,65.56790225,,,,,,,61.94409149,44.04830446,84.67961224,,,,,,,,,,,,1000,,,-888,0,0.633853904,6291,9925,,,0.438,,,,,6.442350472,,,,,0.692788662,3324,4798,0.657998851,0.727578473,0.122844319,520,4233,0.079214801,0.166473836,0.698624427,3352,4798,0.644164896,0.753083957,11853,,,,,0.192356366,2280,11853,,,0.197755842,2344,11853,,,0.693495318,8220,11853,,,0.001940437,23,11853,,,0.016620265,197,11853,,,0.000421834,5,11853,,,0.015270396,181,11853,,,0.2632245,3120,11853,,,0.004505675,52,11541,0,0.01422606,0.539019658,6389,11853,,,1,12345,12345,, -01,121,01121,AL,Talladega County,2024,1,14551.85023,2058,223891,13570.28166,15533.4188,0,,,,2,,,,2,16459.98685,14665.39789,18254.5758,,,,,2,14225.67201,12986.30505,15465.03897,,,,,2,,0.227,,,0.196,0.26,4.60900831,,,3.732874565,5.618543799,5.754563733,,,4.693804633,6.942208549,0.117560737,721,6133,0.109499659,0.125621816,0,,,,,,,0.161930537,0.146595755,0.177265319,0.085526316,0.041066284,0.129986347,0.091036024,0.081614223,0.100457824,,,,0.132352941,0.075398845,0.189307037,0.213,,,0.175,0.254,0.421,,,0.345,0.496,6.7,0.078416455,0.156,,,0.378,,,0.322,0.436,0.546312189,44879,82149,,,0.134404161,,,0.10557098,0.167353868,0.220338983,26,118,0.173889263,0.26958894,619.4,505,81524,,,26.71476075,474,17743,24.30974353,29.11977797,,,,,,,25.19949601,21.51810732,28.8808847,22.63374486,11.29868388,40.49802163,26.8856575,23.59857827,30.17273672,,,,58.25242718,37.32342926,86.67499416,0.114620536,7189,62720,0.099131174,0.130109897,0.000257593,21,81524,,,3882.095238,0.000359338,29,80704,,,2782.896552,0.000334556,27,80704,,,2989.037037,3432,,,,,,,3783,,3410,0.36,,,,,,,0.39,,0.35,0.33,,,,,,,0.24,,0.35,0.832125562,47769,57406,0.817547634,0.84670349,0.517075111,10402,20117,0.467415711,0.566734511,0.03088389,1123,36362,,,0.26,4192,,0.180170213,0.339829787,,,,,,,0.412514484,0.330982196,0.494046773,0.490998363,0.399312858,0.582683868,0.170658037,0.124345251,0.216970823,5.561820652,106431,19136,4.91845903,6.205182275,0.363371387,5984,16468,0.313224871,0.413517903,11.77567342,96,81524,,,106.3829787,427,401380,96.2924417,116.4735158,,,,,,,98.2295831,81.2782633,115.1809029,,,,117.5854194,104.1442864,131.0265524,,,,10,,,,,0,,,,,0.139571519,4430,31740,0.119420713,0.159722324,0.111897518,0.094714111,0.129080925,0.011940769,0.007084074,0.016797464,0.021266541,0.011419305,0.031113776,0.838815157,26166,31194,0.813939916,0.863690398,,,,,,,0.822164949,0.77426748,0.870062417,,,,0.856756879,0.827520773,0.885992984,0.349,,31194,0.313856113,0.384143887,71.0907077,,,70.42098854,71.76042686,,,,,,,69.1365268,67.95551109,70.31754252,,,,71.39222644,70.55564635,72.22880654,,,,677.6556673,2058,223891,646.754872,708.5564627,,,,,,,749.6584892,691.9576177,807.3593607,,,,673.5675479,634.8819803,712.2531154,,,,106.9833374,80,74778,84.83113294,133.150024,,,,,,,149.8407942,107.0484602,204.0406329,,,,88.54216522,62.34185548,122.0437115,,,,8.51621356,52,6106,6.360315624,11.16788106,,,,,,,13.0866426,8.764329936,18.79460173,,,,6.145251397,3.851196333,9.303984466,,,,,,,0.141,,,0.123,0.162,0.203,,,0.177,0.231,0.134,,,0.116,0.154,257.7,180,69851,,,0.156,12770,,,,0.078416455,6452.968499,82291,,,12.42302898,30,241487,8.381765487,17.73464634,,,,,,,,,,,,,19.34481126,12.9555237,27.78237584,,,,0.432,,,0.418,0.444,0.142642191,6636,46522,0.122386872,0.16289751,0.036022294,614,17045,0.02529889,0.046745698,0.000619548,50,80704,,,1614.08,0.930753425,679.45,730,,,0.130275229,497,3815,0.06572189,0.194828569,2.727234524,,,,,,,2.445419425,2.430638526,2.964398501,2.600405103,,,,,,,2.288708242,2.47813159,2.842127825,0.108072019,,,,,-11817.07567,,,,,0.73302918,38561,52605,0.656759189,0.809299171,55186,,,50439.10638,59932.89362,,,,33681,14369.34043,52992.65957,38196,33986.46809,42405.53192,49563,25473.46809,73652.53192,61355,54543.25532,68166.74468,,,,,,0.614853359,6499,10570,,,34.11922454,,,,,0.217518936,,55186,,,6.472491909,28,4326,,,17.78267789,100,562345,14.29727303,21.26808276,,,,,,,33.81510772,25.92584919,43.34944198,,,,9.669227116,6.696220864,13.51177572,,,,17.27192365,71,401380,13.3581045,21.97412177,17.68897304,,,,,,,,,,,,,24.74033589,18.68858385,32.12738402,,,,31.88997957,128,401380,26.36532247,37.41463667,,,,,,,41.11936037,30.89012905,53.65184572,,,,28.39647884,22.17788556,35.81829417,,,,31.29751309,176,562345,26.67360102,35.92142517,,,,,,,32.72429779,24.97208669,42.12265798,,,,32.42034974,26.46891959,38.3717799,,,,,,7900,,,55,-888,0.572715593,35663,62270,,,0.525,,,,,22.87600822,,,,,0.71927439,23275,32359,0.700477723,0.738071058,0.137672637,4097,29759,0.117728084,0.15761719,0.839426435,27163,32359,0.823286692,0.855566177,80704,,,,,0.203781721,16446,80704,,,0.194909794,15730,80704,,,0.323713818,26125,80704,,,0.003952716,319,80704,,,0.006232653,503,80704,,,0.000371729,30,80704,,,0.025376685,2048,80704,,,0.62345113,50315,80704,,,0.006290537,483,76782,0.003365447,0.009215627,0.511535983,41283,80704,,,0.586799596,48205,82149,, -01,123,01123,AL,Tallapoosa County,2024,1,12139.56728,981,110668,10841.04447,13438.0901,0,,,,2,,,,2,13762.3769,11345.63126,16179.12254,,,,,2,12025.71881,10379.95561,13671.482,,,,,2,,0.21,,,0.178,0.244,4.427662872,,,3.576336774,5.398275339,5.74626009,,,4.641744299,6.91487184,0.13319164,376,2823,0.120657324,0.145725957,0,,,,,,,0.232960326,0.206534461,0.25938619,,,,0.077514793,0.064765541,0.090264045,,,,,,,0.205,,,0.168,0.248,0.412,,,0.335,0.493,7.4,0.032664901,0.148,,,0.333,,,0.279,0.389,0.59967079,24773,41311,,,0.135062612,,,0.10637664,0.167232471,0.257142857,9,35,0.168809624,0.350986489,516.8,212,41023,,,30.73717114,236,7678,26.81556508,34.6587772,,,,,,,42.59718776,34.37062553,50.82374999,,,,24.83305509,20.37122793,29.29488225,,,,,,,0.130962316,4080,31154,0.113089976,0.148834657,0.000463155,19,41023,,,2159.105263,0.000317251,13,40977,,,3152.076923,0.000341655,14,40977,,,2926.928571,1987,,,,,,,2050,,1915,0.4,,,,,,,0.34,,0.41,0.41,,,,,,,0.31,,0.43,0.818790811,24201,29557,0.795987999,0.841593623,0.487807632,4321,8858,0.416087905,0.559527358,0.028534076,502,17593,,,0.261,2073,,0.169255319,0.352744681,,,,,,,0.541090909,0.424308396,0.657873422,0.578163772,0.391692865,0.764634679,0.096568728,0.04746862,0.145668837,5.459207952,103250,18913,4.455913574,6.46250233,0.400644468,3357,8379,0.322128557,0.47916038,13.16334739,54,41023,,,96.20080809,195,202701,82.69820549,109.7034107,,,,,,,74.00828893,52.87260665,100.7782841,,,,108.3851333,91.09742946,125.6728371,,,,9.7,,,,,1,,,,,0.128973105,2110,16360,0.103428441,0.15451777,0.088805503,0.068630168,0.108980839,0.030195599,0.018039933,0.042351265,0.016198044,0.00501138,0.027384708,0.838575513,12904,15388,0.808652636,0.868498391,,,,,,,0.830027464,0.705650896,0.954404033,,,,0.821257117,0.781088519,0.861425716,0.381,,15388,0.32951718,0.43248282,72.78075742,,,71.88131897,73.68019588,,,,,,,70.685574,69.06167602,72.30947199,,,,73.08081388,71.9512637,74.21036407,,,,587.1339267,981,110668,546.4419802,627.8258731,,,,,,,733.3907722,644.9979176,821.7836269,,,,559.6364005,511.2403446,608.0324564,,,,71.75580946,26,36234,46.87327708,105.1388864,,,,,,,85.8000858,41.14447616,157.7894126,,,,70.32678513,39.36136778,115.9933371,,,,9.230769231,27,2925,6.083135088,13.4302846,,,,,,,,,,,,,,,,,,,,,,0.134,,,0.115,0.155,0.191,,,0.164,0.219,0.123,,,0.106,0.143,216.1,76,35175,,,0.148,6130,,,,0.032664901,1359.382499,41616,,,16.45778988,20,121523,10.05284562,25.41772167,,,,,,,,,,,,,19.17407665,10.95964151,31.13749922,,,,0.387,,,0.372,0.402,0.160135252,3694,23068,0.137496954,0.18277355,0.049546899,421,8497,0.034057537,0.065036261,0.001122581,46,40977,,,890.8043478,0.925,346.875,375,,,0.119721578,258,2155,0.053476162,0.185966994,2.543644388,,,,,,,2.245845929,2.470209749,2.712501681,2.330366845,,,,,,,2.00607564,1.748803964,2.531974764,0.083490562,,,,,-7566.0185,,,,,0.824202851,37868,45945,0.720781906,0.927623797,55270,,,49393.57447,61146.42553,,,,,,,29006,22812.6383,35199.3617,,,,60323,55641.6383,65004.3617,,,,,,0.491128728,2602,5298,,,30.4376677,,,,,0.284639045,,55270,,,6.358626537,15,2359,,,8.090842573,23,284272,5.128900151,12.14023643,,,,,,,17.15016952,9.131742973,29.3273122,,,,5.111951743,2.45137956,9.401061263,,,,18.33200475,40,202701,12.6954462,25.61713918,19.7334991,,,,,,,,,,,,,23.65753853,15.9616419,33.77260727,,,,26.64022378,54,202701,20.01295602,34.75971327,,,,,,,18.50207223,8.872462804,34.02596959,,,,30.86464061,22.33689345,41.57446835,,,,22.16187314,63,284272,17.02979182,28.35466289,,,,,,,27.70412,17.14928693,42.3486903,,,,20.95900215,15.0405418,28.43325302,,,,22.43243243,,3700,,,83,0,0.661550583,20991,31730,,,0.566,,,,,19.30508991,,,,,0.754897189,12409,16438,0.727779737,0.782014642,0.08950858,1377,15384,0.067428912,0.111588249,0.798880642,13132,16438,0.765306585,0.8324547,40977,,,,,0.196232033,8041,40977,,,0.237865144,9747,40977,,,0.262317886,10749,40977,,,0.003904629,160,40977,,,0.005564097,228,40977,,,0.000610098,25,40977,,,0.025477707,1044,40977,,,0.691021793,28316,40977,,,0.010045358,392,39023,0.005612471,0.014478245,0.511555263,20962,40977,,,0.78407688,32391,41311,, -01,125,01125,AL,Tuscaloosa County,2024,1,10110.95099,3402,612994,9618.883363,10603.01862,0,,,,2,,,,2,13218.59283,12261.91622,14175.26943,,9384.189986,7161.125576,12079.31268,,8527.810232,7942.20148,9113.418983,,,,,2,,0.185,,,0.159,0.213,4.274406278,,,3.46467376,5.095687569,6.01598059,,,5.138241227,6.93509616,0.114969789,2036,17709,0.110271606,0.119667973,0,,,,0.104693141,0.068638493,0.140747789,0.172292049,0.163496156,0.181087943,0.074812968,0.061937675,0.08768826,0.075079684,0.069467885,0.080691483,,,,0.108527132,0.070572092,0.146482171,0.174,,,0.14,0.208,0.416,,,0.361,0.47,7.5,0.067321444,0.124,,,0.322,,,0.276,0.37,0.676438979,153576,227036,,,0.1649753,,,0.13407352,0.197522968,0.327777778,59,180,0.290394419,0.365361217,778.8,1768,227007,,,17.17271906,1160,67549,16.18447061,18.16096751,,,,,,,28.41383146,26.16448873,30.6631742,80.35714286,69.16410525,91.55018047,7.856124151,7.001996604,8.710251698,,,,22.48394004,13.91791326,34.36909072,0.099079544,18030,181975,0.08716465,0.110994438,0.000629937,143,227007,,,1587.461539,0.000447673,106,236780,,,2233.773585,0.001630205,386,236780,,,613.4196891,4030,,,,,,,5334,5051,3673,0.43,,,,,,0.43,0.38,0.46,0.45,0.43,,,,,,0.39,0.31,0.21,0.47,0.906402553,128672,141959,0.898615328,0.914189778,0.645344681,38822,60157,0.612070373,0.67861899,0.025291979,2616,103432,,,0.204,9540,,0.152765957,0.255234043,,,,0.159196291,0,0.340061299,0.367872436,0.321604058,0.414140815,0.267441861,0.184175313,0.350708408,0.081301169,0.059477596,0.103124742,5.498604935,126127,22938,5.042035769,5.955174101,0.316718054,14792,46704,0.282758117,0.350677991,9.603228094,218,227007,,,68.90120901,733,1063842,63.91315754,73.88926049,,,,,,,61.91588785,53.5811826,70.2505931,52.15123859,32.68290357,78.95760196,75.9447073,69.22712745,82.66228716,,,,7.9,,,,,1,,,,,0.154922037,11575,74715,0.14136327,0.168480804,0.139297386,0.126271488,0.152323284,0.015191059,0.010723777,0.019658342,0.005889045,0.003172863,0.008605227,0.818286489,88127,107697,0.800385561,0.836187417,,,,0.509129968,0.374003233,0.644256703,0.828103823,0.806613293,0.849594353,0.636658031,0.56418709,0.709128973,0.83893089,0.822238104,0.855623677,0.279,,107697,0.258157449,0.299842552,74.8553744,,,74.45404063,75.25670818,,,,86.16000339,79.23850425,93.08150252,72.21902279,71.46264994,72.97539565,93.81208975,76.62468768,110.9994918,76.0198339,75.53827254,76.50139525,,,,492.4624553,3402,612994,475.4608497,509.4640609,,,,,,,625.3230449,590.6745121,659.9715777,338.6701802,254.4194627,441.8911213,441.3730165,421.2630203,461.4830127,,,,76.47785536,169,220979,64.94734794,88.00836279,,,,,,,119.3902301,96.59382572,145.9483651,87.13720759,46.39689316,149.0072788,45.05729928,33.75100906,58.93605683,,,,9.881422925,175,17710,8.417370816,11.34547503,,,,,,,14.31000283,11.51916177,17.1008439,,,,6.281991624,4.719225451,8.196636388,,,,,,,0.122,,,0.105,0.14,0.183,,,0.16,0.208,0.124,,,0.107,0.142,293.9,566,192556,,,0.124,27830,,,,0.067321444,13104.52299,194656,,,19.62541723,127,647120,16.21212785,23.03870661,,,,,,,10.47733799,6.56609194,15.86281564,,,,26.10879175,21.04188678,31.17569673,,,,0.401,,,0.386,0.415,0.122365828,16578,135479,0.105684977,0.139046679,0.03445027,1682,48824,0.024918356,0.043982185,0.001119182,265,236780,,,893.509434,0.897276465,1746.1,1946,,,0.041185113,841,20420,0.023039325,0.059330901,2.855172772,,,,,,,2.539892169,2.196184148,3.273614045,2.626843342,,,,,,4.031223545,2.257983112,2.248786393,3.035856057,0.252998472,,,,,-8818.2745,,,,,0.804599961,45023,55957,0.74420155,0.864998371,60875,,,57472.10638,64277.89362,51136,23518.46809,78753.53192,55491,26926.23404,84055.76596,43897,40585.85106,47208.14894,59435,40899,77971,75292,71448.25532,79135.74468,,,,,,0.465336658,13995,30075,,,55.61999937,,,,,0.211449692,,60875,,,5.012150668,66,13168,,,8.209400782,121,1473920,6.746634824,9.672166739,,,,,,,19.74736118,15.9386691,24.19185157,,,,2.991958281,1.97171936,4.353142215,,,,12.51259853,135,1063842,10.34461406,14.680583,12.68985432,,,,,,,4.279001836,2.394924845,7.057562799,,,,16.63844703,13.44681166,19.83008239,,,,16.54381008,176,1063842,14.09961833,18.98800182,,,,,,,22.48831776,17.7474287,28.1065387,,,,14.84865968,12.02746201,18.13275491,,,,15.19756839,224,1473920,13.2073251,17.18781168,,,,,,,13.58958189,10.46563397,17.35359268,17.7999288,8.535757736,32.73470282,16.17873737,13.55437218,18.80310256,,,,15.64766839,,19300,,,192,110,0.562099489,90172,160420,,,0.521,,,,,132.1466016,,,,,0.622965909,52792,84743,0.608452924,0.637478894,0.148699525,12086,81278,0.133630549,0.163768502,0.861180275,72979,84743,0.849512375,0.872848174,236780,,,,,0.200561703,47489,236780,,,0.142043247,33633,236780,,,0.324909198,76932,236780,,,0.003365994,797,236780,,,0.017607061,4169,236780,,,0.000709519,168,236780,,,0.041473097,9820,236780,,,0.601402146,142400,236780,,,0.007403377,1619,218684,0.005311696,0.009495057,0.517890025,122626,236780,,,0.310902236,70586,227036,, -01,127,01127,AL,Walker County,2024,1,17481.3562,2008,176156,16304.3395,18658.37289,0,,,,2,,,,2,19926.9785,15199.52397,24654.43303,,,,,2,17785.1874,16513.95166,19056.42315,,,,,2,,0.208,,,0.175,0.244,4.549743369,,,3.615430948,5.544107746,6.235420534,,,5.114389686,7.370492152,0.110455468,599,5423,0.102112631,0.118798304,0,,,,,,,0.191044776,0.148946579,0.233142973,0.08496732,0.059458288,0.110476353,0.107049037,0.098083048,0.116015026,,,,,,,0.214,,,0.172,0.259,0.38,,,0.312,0.448,6.8,0.037186758,0.174,,,0.347,,,0.289,0.405,0.401977289,26266,65342,,,0.1387769,,,0.109789673,0.172470739,0.198113208,21,106,0.149789291,0.250388008,359.5,233,64818,,,38.45846964,482,12533,35.02506847,41.89187081,,,,,,,29.61500494,19.98111947,42.277261,116.5501166,86.50574298,153.6567988,36.98475438,33.3281116,40.64139715,,,,,,,0.124169459,6410,51623,0.108680098,0.139658821,0.000462834,30,64818,,,2160.6,0.00046628,30,64339,,,2144.633333,0.0011657,75,64339,,,857.8533333,4225,,,,,,,2072,,4281,0.39,,,,,,,0.47,,0.39,0.37,,,,,,,0.33,,0.37,0.826660189,37432,45281,0.810407421,0.842912956,0.551122523,8371,15189,0.49383141,0.608413635,0.027534418,704,25568,,,0.213,2996,,0.141510638,0.284489362,,,,,,,0.441354293,0.252277547,0.630431038,0.477139508,0.270297116,0.6839819,0.182233366,0.146126454,0.218340278,5.221809588,108269,20734,4.81903629,5.624582887,0.28278118,4063,14368,0.235566389,0.329995972,13.88503194,90,64818,,,120.281534,384,319251,108.250875,132.312193,,,,,,,77.59557188,43.42965254,127.9820955,,,,127.7436658,114.5841121,140.9032195,,,,9.7,,,,,0,,,,,0.119496855,3040,25440,0.099014788,0.139978922,0.096955128,0.07852846,0.115381797,0.019850629,0.010931329,0.028769929,0.008647799,0.004445587,0.012850011,0.839185891,21317,25402,0.818910876,0.859460906,,,,,,,0.734042553,0.602016596,0.86606851,,,,0.84498854,0.809098323,0.880878758,0.438,,25402,0.396331929,0.479668071,68.37513373,,,67.6793148,69.07095265,,,,,,,66.18615526,63.54715521,68.82515531,,,,68.15092739,67.4096676,68.89218718,,,,837.5579321,2008,176156,798.3953315,876.7205326,,,,,,,1010.54431,831.3791043,1189.709516,,,,848.9962594,807.4150749,890.5774439,,,,82.3138255,51,61958,61.28804971,108.2274789,,,,,,,,,,,,,89.47327472,65.50568235,119.34481,,,,9.065679926,49,5405,6.706839917,11.98530964,,,,,,,,,,,,,9.554831705,6.942555344,12.82691559,,,,,,,0.138,,,0.118,0.16,0.205,,,0.176,0.233,0.113,,,0.096,0.131,152.5,83,54435,,,0.174,11340,,,,0.037186758,2492.368061,67023,,,36.03471867,69,191482,28.03716201,45.60424275,,,,,,,,,,,,,38.29453802,29.55491598,48.80953229,,,,0.4,,,0.384,0.416,0.15657923,5826,37208,0.135132422,0.178026039,0.042997949,650,15117,0.029891566,0.056104332,0.000948103,61,64339,,,1054.737705,0.885299026,636.53,719,,,0.070234114,210,2990,0.025253886,0.115214341,2.937463464,,,,,,,2.564983156,,3.034158912,2.721670777,,,,,,,2.281264508,2.514899759,2.790175102,0.10126225,,,,,-4386.4065,,,,,0.745096599,40572,54452,0.665901451,0.824291746,51065,,,44726.2766,57403.7234,,,,,,,31955,19270.40426,44639.59575,36650,16513.82979,56786.17021,54618,50569.31915,58666.68085,,,,,,0.482755102,4731,9800,,,46.63492046,,,,,0.411593068,,51065,,,3.948407476,15,3799,,,8.89853886,40,449512,6.357246623,12.11728429,,,,,,,,,,,,,9.012301792,6.312105378,12.47682449,,,,23.2479862,73,319251,18.05297095,29.47236208,22.86602078,,,,,,,,,,,,,24.92898808,19.19835847,31.83376124,,,,23.80572026,76,319251,18.75619994,29.79640877,,,,,,,,,,,,,25.76046298,20.19209081,32.38991467,,,,33.36952073,150,449512,28.02928521,38.70975624,,,,,,,,,,,,,35.54852374,29.70151868,41.39552879,,,,8.225806452,,6200,,,51,0,0.634310134,31170,49140,,,0.57,,,,,14.72683376,,,,,0.774819969,19152,24718,0.755489631,0.794150308,0.094752249,2201,23229,0.073764534,0.115739965,0.8030585,19850,24718,0.784234494,0.821882506,64339,,,,,0.223612428,14387,64339,,,0.1994902,12835,64339,,,0.060896191,3918,64339,,,0.005626447,362,64339,,,0.005051369,325,64339,,,0.000948103,61,64339,,,0.032422015,2086,64339,,,0.881347239,56705,64339,,,0.005237652,321,61287,0.001198815,0.00927649,0.512457452,32971,64339,,,0.796853479,52068,65342,, -01,129,01129,AL,Washington County,2024,1,11206.69586,330,43557,9232.813551,13180.57817,0,25349.48277,14489.41968,41165.97187,1,,,,2,11273.12855,7549.791116,16190.09305,,,,,2,10012.16394,7806.442021,12217.88586,,,,,2,,0.23,,,0.199,0.264,4.781485898,,,3.903998635,5.774581746,5.845919194,,,4.751661995,7.052912464,0.113222486,143,1263,0.095747048,0.130697924,0,0.164705882,0.085852401,0.243559364,,,,0.163763066,0.120948872,0.206577261,,,,0.095571096,0.075898443,0.115243748,,,,,,,0.228,,,0.19,0.27,0.417,,,0.34,0.5,7.5,0.04481018,0.136,,,0.353,,,0.299,0.411,0.104432025,1607,15388,,,0.131376958,,,0.103581348,0.163774787,0.294117647,5,17,0.163936752,0.428688912,448.9,68,15147,,,28.36041359,96,3385,22.97202606,34.63291905,32.74559194,17.43564859,55.99595949,,,,31.47699758,20.56181987,46.12109453,,,,27.09483191,20.35447164,35.35287827,,,,,,,0.118073316,1385,11730,0.101392465,0.134754167,6.60197E-05,1,15147,,,15147,0.000132258,2,15122,,,7561,0.000330644,5,15122,,,3024.4,2280,,,,,,,2668,,1997,0.36,,,,,,,0.36,,0.35,0.23,,,,,,,0.21,,0.23,0.882666667,9268,10500,0.848329789,0.917003545,0.485790705,1453,2991,0.395567021,0.57601439,0.036405179,239,6565,,,0.256,820,,0.155914894,0.356085106,0.19,0,0.682807937,,,,0.488435374,0.269376934,0.707493814,0.318181818,0,0.915873267,0.139602521,0.071755963,0.207449079,8.827692721,131462,14892,6.303080303,11.35230514,0.263522013,838,3180,0.169058296,0.357985729,17.82531194,27,15147,,,98.31006247,79,80358,77.83300226,122.5236705,179.0656031,89.38890391,320.397827,,,,69.64161354,37.08122618,119.0892801,,,,105.0600753,79.14562658,136.7501289,,,,9.3,,,,,1,,,,,0.075471698,440,5830,0.045001058,0.105942338,0.0528,0.026032151,0.07956785,0.018867925,0.005289863,0.032445986,0.006003431,0,0.016167436,0.865300943,4773,5516,0.806969286,0.923632599,,,,,,,0.843446602,0.677852474,1,,,,0.879265845,0.82501693,0.933514759,0.551,,5516,0.450596252,0.651403748,73.72201133,,,72.24450662,75.19951604,,,,,,,72.63516572,69.58294356,75.68738787,,,,74.45378663,72.76996128,76.13761198,,,,527.7240931,330,43557,467.1139327,588.3342534,938.035824,656.9887589,1298.636975,,,,499.6707394,383.9607157,639.2959334,,,,509.53448,437.2675356,581.8014243,,,,98.17396427,15,15279,54.94722255,161.9230242,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.146,,,0.127,0.168,0.203,,,0.177,0.232,0.134,,,0.116,0.154,116.4,15,12890,,,0.136,2110,,,,0.04481018,787.8077808,17581,,,,,,,,,,,,,,,,,,,,,,,,,,0.42,,,0.406,0.432,0.146888063,1265,8612,0.124249765,0.169526361,0.040996052,135,3293,0.027889669,0.054102435,0.000661288,10,15122,,,1512.2,0.96,196.8,205,,,,,,,,2.913192653,,,,,,,2.752281212,,3.086108218,2.69839487,,,,,,,2.473083866,,2.872316358,0.128937463,,,,,-8159.074,,,,,0.630909493,39929,63288,0.442820254,0.818998732,53785,,,46098.70213,61471.29787,141004,58006.04255,224001.9575,,,,23209,9336.489362,37081.51064,,,,63464,49879.82979,77048.17021,,,,,,0.426248548,1101,2583,,,28.64759962,,,,,0.277512318,,53785,,,3.640776699,3,824,,,13.167366,15,113918,7.369674795,21.71756779,,,,,,,,,,,,,,,,,,,17.58556937,15,80358,9.363575056,30.0718592,18.66646756,,,,,,,,,,,,,21.89363837,10.92922539,39.17376668,,,,23.64419224,19,80358,14.23534827,36.92333504,,,,,,,,,,,,,28.6527478,16.03672544,47.25835012,,,,39.502098,45,113918,28.81310134,52.85691506,,,,,,,37.46300528,17.96496721,68.89580056,,,,39.15426782,26.22222766,56.23205984,,,,,,1600,,,15,-888,0.691816056,8876,12830,,,0.47,,,,,6.981382179,,,,,0.884126408,4868,5506,0.856437688,0.911815127,0.08213141,410,4992,0.04652629,0.117736531,0.71449328,3934,5506,0.664684117,0.764302443,15122,,,,,0.214191245,3239,15122,,,0.209496098,3168,15122,,,0.227483137,3440,15122,,,0.077040074,1165,15122,,,0.008332231,126,15122,,,0.001454834,22,15122,,,0.018317683,277,15122,,,0.654807565,9902,15122,,,6.85354E-05,1,14591,0,0.006398572,0.508596747,7691,15122,,,1,15388,15388,, -01,131,01131,AL,Wilcox County,2024,1,19389.89507,286,28385,16139.73049,22640.05965,0,,,,2,,,,2,22221.39673,18244.2425,26198.55097,,,,,2,14512.73446,8864.755236,22413.74132,1,,,,2,,0.298,,,0.26,0.34,5.201550019,,,4.18042776,6.323592759,6.267077811,,,4.992569133,7.595705271,0.13897937,128,921,0.116638082,0.161320658,0,,,,,,,0.156862745,0.130187034,0.183538457,,,,0.077319588,0.03973363,0.114905545,,,,,,,0.254,,,0.21,0.302,0.485,,,0.399,0.576,4.5,0.236829861,0.182,,,0.443,,,0.382,0.508,0.015943396,169,10600,,,0.1059171,,,0.082387229,0.135366274,0.315789474,6,19,0.192486042,0.440144871,794.6,83,10446,,,40.81632653,104,2548,32.97168113,48.66097194,,,,,,,44.5324097,35.80931625,54.73789203,,,,26.91511387,14.33116458,46.02566443,,,,,,,0.117210122,931,7943,0.099337782,0.135082463,9.57304E-05,1,10446,,,10446,9.94135E-05,1,10059,,,10059,9.94135E-05,1,10059,,,10059,3111,,,,,,,3341,,2453,0.36,,,,,,,0.4,,0.3,0.25,,,,,,,0.19,,0.31,0.777054746,5493,7069,0.727862653,0.82624684,0.424495171,967,2278,,,0.077927215,197,2528,,,0.456,1001,,0.283234043,0.628765957,,,,,,,0.610549944,0.499310024,0.721789864,,,,0.018348624,0,0.077619767,6.074610727,84267,13872,4.447013271,7.702208182,0.664572864,1587,2388,0.493369533,0.835776196,6.701129619,7,10446,,,133.6617594,70,52371,104.1958987,168.8735919,,,,,,,152.1863195,114.9599103,197.6265946,,,,99.39652112,54.34100303,166.770473,,,,9.3,,,,,1,,,,,0.126262626,500,3960,0.087660537,0.164864716,0.100917431,0.063555299,0.138279563,0.011111111,0,0.026374101,0.017676768,0.001759739,0.033593796,0.851921865,2704,3174,0.785426426,0.918417305,,,,,,,0.837854129,0.718904311,0.956803947,,,,0.899930507,0.817253535,0.98260748,0.446,,3174,0.309404176,0.582595824,68.86042277,,,66.8657036,70.85514194,,,,,,,66.44090346,64.15257492,68.72923199,,,,73.20902005,68.85405022,77.56398987,,,,803.2966917,286,28385,702.326527,904.2668564,,,,,,,974.1447755,841.8767349,1106.412816,,,,510.756093,359.6194249,704.0099944,,,,111.4309592,12,10769,57.57800268,194.6474608,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.166,,,0.144,0.19,0.214,,,0.187,0.245,0.18,,,0.156,0.206,239.7,21,8762,,,0.182,1940,,,,0.236829861,2763.804475,11670,,,,,,,,,,,,,,,,,,,,,,,,,,0.469,,,0.453,0.483,0.147125633,842,5723,0.123295846,0.170955421,0.041737649,98,2348,0.027439777,0.056035521,0.000894721,9,10059,,,1117.666667,0.875,98.875,113,,,,,,,,1.976705646,,,,,,,2.013432137,,,1.933907096,,,,,,,1.930440693,,,,,,,,-47862.75,,,,,0.680992152,32452,47654,0.508317702,0.853666602,33682,,,29355.70213,38008.29787,,,,,,,28542,21348.97872,35735.02128,,,,54984,46894.97872,63073.02128,,,,,,0.941807044,1230,1306,,,34.71887257,,,,,0.424529422,,33682,,,5.865102639,4,682,,,30.90733176,23,74416,19.59259707,46.37617299,,,,,,,40.19138756,24.87910236,61.43680523,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,53.46470375,28,52371,35.52690736,77.27138291,,,,,,,67.94032122,43.96739367,100.2933166,,,,,,,,,,45.68909912,34,74416,31.64102933,63.84593649,,,,,,,53.58851675,35.6091802,77.45032716,,,,,,,,,,,,1000,,,-888,0,0.737875,5903,8000,,,0.371,,,,,5.127726923,,,,,0.794635373,2844,3579,0.759421695,0.829849051,0.150015184,494,3293,0.099344308,0.200686059,0.721430567,2582,3579,0.662087172,0.780773962,10059,,,,,0.220797296,2221,10059,,,0.223680286,2250,10059,,,0.684958743,6890,10059,,,0.002485337,25,10059,,,0.003181231,32,10059,,,0.00029824,3,10059,,,0.015309673,154,10059,,,0.279948305,2816,10059,,,0.00490647,48,9783,,,0.53404911,5372,10059,,,1,10600,10600,, -01,133,01133,AL,Winston County,2024,1,11956.64161,545,64009,10238.4218,13674.86142,0,,,,2,,,,2,,,,2,,,,2,12369.78655,10552.11981,14187.45329,,,,,2,,0.214,,,0.18,0.252,4.621492112,,,3.605738555,5.709521871,6.154634182,,,4.879855066,7.502204289,0.102211596,171,1673,0.087695655,0.116727537,0,,,,,,,,,,,,,0.101532567,0.086573172,0.116491963,,,,,,,0.226,,,0.182,0.272,0.391,,,0.307,0.479,6.9,0.016945085,0.175,,,0.346,,,0.284,0.411,0.756966865,17819,23540,,,0.140178261,,,0.109888795,0.175964832,0.214285714,6,28,0.11834453,0.322712758,169.1,40,23652,,,38.50222128,182,4727,32.90843122,44.09601134,,,,,,,,,,,,,40.86425552,34.79234954,46.9361615,,,,,,,0.137266609,2529,18424,0.118202779,0.156330439,0.000380518,9,23652,,,2628,0.000168386,4,23755,,,5938.75,0.000210482,5,23755,,,4751,6652,,,,,,,,,6653,0.34,,,,,,,,,0.34,0.33,,,,,,,,,0.33,0.800388281,13605,16998,0.770179324,0.830597238,0.452942342,2286,5047,0.38261707,0.523267614,0.024437737,251,10271,,,0.252,1191,,0.175744681,0.328255319,,,,,,,,,,0.154121864,0,0.361588555,0.247865333,0.189664736,0.30606593,4.476530519,98421,21986,3.849416298,5.103644741,0.235318704,1126,4785,0.160123229,0.31051418,8.878741756,21,23652,,,99.00906314,117,118171,81.06841653,116.9497097,,,,,,,,,,,,,105.0030324,85.89443027,124.1116346,,,,8.8,,,,,1,,,,,0.104578564,1005,9610,0.074191021,0.134966107,0.081493165,0.056544215,0.106442116,0.012486993,0.000977788,0.023996198,0.012486993,0.000287906,0.02468608,0.73709694,7155,9707,0.681128152,0.793065729,,,,,,,,,,,,,0.781781782,0.731061451,0.832502112,0.457,,9707,0.396656034,0.517343967,73.17947824,,,71.94879744,74.41015904,,,,,,,,,,,,,72.73467626,71.46496621,74.00438631,,,,570.8576277,545,64009,518.7900333,622.9252222,,,,,,,,,,,,,588.4240783,533.7755864,643.0725701,,,,71.28938739,15,21041,39.90012895,117.5810031,,,,,,,,,,,,,74.62288791,40.79702722,125.204526,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.144,,,0.122,0.168,0.205,,,0.176,0.234,0.114,,,0.096,0.134,59,12,20333,,,0.175,4130,,,,0.016945085,414.8834686,24484,,,14.12648858,10,70789,6.774200365,25.97911546,,,,,,,,,,,,,15.1398162,7.260130348,27.84266104,,,,0.382,,,0.363,0.399,0.168558249,2302,13657,0.144728461,0.192388036,0.049591715,249,5021,0.034102353,0.065081077,0.000673542,16,23755,,,1484.6875,0.946280277,273.475,289,,,0.142857143,152,1064,0.046251277,0.239463009,2.762504747,,,,,,,,,2.771248828,2.691368045,,,,,,,,,2.658026094,0.106110692,,,,,-4104.257,,,,,0.994918287,41702,41915,0.844344735,1.145491839,51149,,,44412.31915,57885.68085,,,,59265,48439.12766,70090.87234,,,,60521,27036.57447,94005.42553,49372,43814.89362,54929.10638,,,,,,0.367165694,1447,3941,,,85.78199052,,,,,0.320886039,,51149,,,5.025125628,6,1194,,,7.838266417,13,165853,4.17354675,13.40367429,,,,,,,,,,,,,8.37332131,4.458440946,14.31863445,,,,18.46484426,23,118171,11.43002962,28.22547588,19.4633201,,,,,,,,,,,,,19.72671292,12.04958873,30.46630817,,,,24.54070796,29,118171,16.43529727,35.24455022,,,,,,,,,,,,,25.34555955,16.84194025,36.63139042,,,,34.97072709,58,165853,26.55473925,45.2077742,,,,,,,,,,,,,36.71379344,27.80666862,47.56697781,,,,,,2200,,,25,-888,0.606503628,11284,18605,,,0.512,,,,,6.609795497,,,,,0.782379435,7122,9103,0.76412489,0.800633981,0.069492537,582,8375,0.046553487,0.092431588,0.770405361,7013,9103,0.736967911,0.803842811,23755,,,,,0.201768049,4793,23755,,,0.222058514,5275,23755,,,0.010818775,257,23755,,,0.008924437,212,23755,,,0.003872869,92,23755,,,0.00210482,50,23755,,,0.034476952,819,23755,,,0.929572722,22082,23755,,,0.0092795,208,22415,0.00264744,0.015911561,0.500947169,11900,23755,,,1,23540,23540,, -02,000,02000,AK,Alaska,2024,,9414.775658,9838,2102133,9158.40666,9671.144655,0,22113.26132,21075.02508,23151.49756,,4176.665913,3496.958299,4856.373526,,8319.862537,7092.401888,9547.323187,,4979.060427,4287.711418,5670.409437,,7010.501325,6724.503527,7296.499123,,18811.77612,16091.17701,21532.37522,,,0.143,,,0.13,0.156,3.564454237,,,3.264263126,3.864645348,4.588410327,,,4.231652388,4.945168265,0.063686045,4440,69717,0.061873371,0.065498719,0,0.074293178,0.069787828,0.078798527,0.08643744,0.077926592,0.094948288,0.115133233,0.101105807,0.129160658,0.071338041,0.064549789,0.078126293,0.053724785,0.051364229,0.056085341,0.059182715,0.04915924,0.06920619,0.062162557,0.056445876,0.067879237,0.172,,,0.156,0.189,0.334,,,0.315,0.355,7,0.078687888,0.107,,,0.2,,,0.185,0.217,0.782301665,573733,733391,,,0.196105023,,,0.17890695,0.214524389,0.350140056,125,357,0.324217009,0.376069524,760.4,5571,732673,,,19.68134343,2998,152327,18.97682072,20.38586614,38.72592391,36.4759021,40.97594572,13.83048313,11.60224006,16.05872621,14.02351,10.88980424,17.77814047,19.1926885,16.82299806,21.56237894,11.31931375,10.54923148,12.08939602,40.9375,33.92711708,47.94788293,21.8212574,19.64715317,23.99536163,0.131842983,80538,610863,0.123502557,0.140183408,0.00096769,709,732673,,,1033.389281,0.00104828,769,733583,,,953.9440832,0.007227539,5302,733583,,,138.3596756,1866,,,,,3306,1945,2172,1324,1618,0.35,,,,,0.29,0.27,0.32,0.3,0.36,0.33,,,,,0.26,0.38,0.26,0.28,0.34,0.934778985,454182,485871,0.931722423,0.937835546,0.650756971,139398,214209,0.636115037,0.665398905,0.040361095,14401,356804,,,0.134,23113,,0.119702128,0.148297872,0.268715427,0.25298412,0.284446735,0.169883041,0.134363176,0.205402905,0.227528676,0.134199341,0.32085801,0.115441057,0.088158094,0.142724019,0.07431114,0.06455298,0.0840693,4.16214414,162282,38990,4.027899025,4.296389254,0.207275799,37052,178757,0.193967685,0.220583913,11.28743655,827,732673,,,104.5850511,3841,3672609,101.2775231,107.8925791,229.010884,216.2486312,241.7731369,30.64886195,23.98084688,38.59716926,78.48839611,63.5017995,95.9479941,50.55460272,42.02654975,59.08265568,89.15921859,85.21799959,93.1004376,63.6610915,43.82136615,89.40384141,7.55,,,,,0.64,,,,,0.194846674,49720,255175,0.188257732,0.201435616,0.110029748,0.104316776,0.115742721,0.064759479,0.060560087,0.068958871,0.042225923,0.03905375,0.045398097,0.659372712,231484,351067,0.649894681,0.668850743,0.453546246,0.429254532,0.477837961,0.575529822,0.544435255,0.606624389,0.614118896,0.557019355,0.671218437,0.645935961,0.61405686,0.677815062,0.693023563,0.682653372,0.703393753,0.175,,351067,0.166408048,0.183591952,77.06267884,,,76.81665469,77.308703,66.31191152,65.69375354,66.9300695,86.20402,84.65512675,87.75291324,77.32329783,75.76788185,78.8787138,84.45340953,82.38022659,86.52659247,79.27506772,78.97943647,79.57069897,67.88840232,65.45583233,70.32097231,412.0200662,9838,2102133,403.6746378,420.3654945,861.2040728,827.2699182,895.1382275,197.8504928,175.4768753,220.2241104,439.8763867,389.4435903,490.3091832,239.804473,209.7030111,269.905935,334.530472,325.338954,343.7219901,977.0333506,842.1139871,1111.952714,70.31457856,555,789310,64.46459079,76.16456632,150.5972784,130.7419507,170.452606,33.68061793,18.85078618,55.55105728,49.40101272,25.52622415,86.29362747,51.01650384,36.4469383,69.46999842,47.42733079,40.49868273,54.35597885,62.56256256,30.00118053,115.05478,5.915178571,424,71680,5.352136298,6.478220845,11.33803875,9.52959279,13.1464847,,,,,,,4.688063469,3.062398705,6.869099186,4.037019746,3.384402903,4.689636588,,,,7.037196611,5.206156793,9.30354712,0.112093401,,,0.099416588,0.126160218,0.141681586,,,0.127440314,0.157227537,0.08,,,0.07,0.09,124.3,749,602546,,,0.107,78260,,,,0.078687888,55886.57724,710231,,,25.1437567,552,2195376,23.04618556,27.24132783,46.7698064,39.33448323,54.20512957,,,,29.37391596,18.18291695,44.90115081,7.430340557,3.839365392,12.97930963,22.27550374,19.72049623,24.83051124,,,,0.318849013,,,0.294891809,0.343803521,0.151970593,66604,438269,0.141247189,0.162693998,0.083450036,15076,180659,0.071535142,0.095364929,0.001788482,1312,733583,,,559.1333842,0.782864723,7303.345,9329,,,0.111822126,4124,36880,0.097714872,0.12592938,,,,,,,,,,,,,,,,,,,,,0.244791894,,,,,6801.562,,,,,0.833633729,57815,69353,0.81335372,0.853913738,88072,,,85248.17021,90895.82979,56139,53804.87234,58473.12766,85546,81117.23404,89974.76596,71857,62811.21277,80902.78723,73411,67979,78843,95081,93410.53192,96751.46809,,,,,,,,,,,57.23968084,,,,,0.248973394,,,,,3.747397641,,,,,8.364165277,431,5152935,7.574505454,9.1538251,21.01687069,17.73972628,24.29401511,3.379208651,1.686888783,6.04633771,22.67375948,16.12325949,30.99577563,8.367907186,5.685586949,11.8775763,4.208009287,3.487404549,4.928614025,28.4612429,17.38486657,43.95608132,27.70350688,1018,3672609,25.96682203,29.44019173,27.71871441,57.92145572,51.44672449,64.39618695,6.721444832,3.841886477,10.91520531,10.02771031,5.612433336,16.53918318,14.46767783,9.895880923,20.42404433,23.25932263,21.21814623,25.30049904,,,,23.71611026,871,3672609,22.14107437,25.29114616,39.80383191,34.48321825,45.12444556,6.385179573,3.573736536,10.53138268,30.5691648,21.52351311,42.13556693,17.60049132,12.932179,23.40492227,21.17871571,19.2578489,23.09958251,30.86598376,17.64257664,50.12442386,10.4600582,539,5152935,9.57698686,11.34312954,18.35650732,15.29379236,21.41922228,3.993610224,2.126429249,6.829195109,7.557919828,4.024273998,12.92427308,3.779054858,2.066044457,6.340611916,10.34335107,9.21358273,11.47311942,,,,,,,,,,,0.67510398,359530,532555,,,,,,,,74.76318315,,,,,0.662684964,175198,264376,0.655449126,0.669920801,0.120954064,30878,255287,0.114878534,0.127029593,0.893670379,236265,264376,0.887490687,0.89985007,733583,,,,,0.240631258,176523,733583,,,0.138513297,101611,733583,,,0.032379431,23753,733583,,,0.157029266,115194,733583,,,0.067292999,49365,733583,,,0.016724761,12269,733583,,,0.077012417,56495,733583,,,0.587952556,431312,733583,,,0.015452809,10598,685830,0.013849624,0.017055994,0.473887754,347636,733583,,,0.351005126,257424,733391,, -02,013,02013,AK,Aleutians East Borough,2024,0,,,,,,2,,,,2,,,,2,,,,2,,,,2,,,,2,,,,2,,0.191,,,0.166,0.22,3.696286173,,,2.947110047,4.53802138,3.992769062,,,3.133006942,4.985210357,0.107526882,10,93,0.044566016,0.170487748,1,,,,,,,,,,,,,,,,,,,,,,0.186,,,0.156,0.223,0.313,,,0.245,0.387,7.4,0.145903332,0.093,,,0.288,,,0.239,0.34,0.273684211,936,3420,,,0.157183345,,,0.124442626,0.19454598,,,,,,147.1,5,3398,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.220598233,649,2942,0.183662062,0.257534403,,0,3398,,,,0.000294291,1,3398,,,3398,0.000882872,3,3398,,,1132.666667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.810093458,2167,2675,0.765108408,0.855078508,0.479094077,550,1148,0.377964878,0.580223275,0.019720625,48,2434,,,0.143,27,,0.078659575,0.207340426,0.239043825,0.155750111,0.322337538,,,,,,,,,,,,,4.54056638,137729,30333,3.404260426,5.676872334,0.261390887,109,417,0.1840288,0.338752974,0,0,3398,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,,,,0.126262626,125,990,0.089608624,0.162916629,0.078787879,0.03961091,0.117964848,0.029292929,0,0.058961648,0.035353535,0.011898771,0.058808299,0.204991087,460,2244,0.17082297,0.239159204,0.46653144,0.39630449,0.536758391,0.08801214,0.025933654,0.150090625,,,,0.026011561,0,0.060734975,0.222672065,0.176678715,0.268665415,0,,2244,0,0.126297872,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.113,,,0.099,0.13,0.129,,,0.112,0.149,0.126,,,0.108,0.146,,,,,,0.093,320,,,,0.145903332,458.2823644,3141,,,,,,,,,,,,,,,,,,,,,,,,,,0.339,,,0.327,0.35,0.228244838,619,2712,0.188925689,0.267563987,0.137096774,34,248,0.094203157,0.179990391,0.000882872,3,3398,,,1132.666667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.125347903,,,,,26955.54,,,,,1.005194805,48375,48125,0.439955245,1.570434365,85852,,,73422.38298,98281.61702,50673,46262.10638,55083.89362,113750,86088.38298,141411.617,,,,107857,41284.91489,174429.0851,98750,69385.74468,128114.2553,,,,,,,,,,,,,,,,0.191282673,,85852,,,,,122,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,100,,,0,0,,,,,,0.11,,,,,,,,,,0.588431591,529,899,0.534195364,0.642667817,0.099173554,72,726,0.041353234,0.156993873,0.57730812,519,899,0.523569423,0.631046818,3398,,,,,0.057092407,194,3398,,,0.099470277,338,3398,,,0.102118894,347,3398,,,0.139199529,473,3398,,,0.463802237,1576,3398,,,0.009711595,33,3398,,,0.173631548,590,3398,,,0.088875809,302,3398,,,0.145498636,480,3299,0.064103164,0.226894108,0.301648028,1025,3398,,,1,3420,3420,, -02,016,02016,AK,Aleutians West Census Area,2024,1,7193.465183,39,16162,4111.686892,11681.73679,1,35333.05213,18257.10363,61719.73143,1,,,,2,,,,2,,,,2,,,,2,,,,2,,0.153,,,0.133,0.174,3.145327401,,,2.532246266,3.910275561,3.81526938,,,3.07620049,4.729092659,0.073394495,16,218,0.038776094,0.108012897,1,,,,,,,,,,,,,,,,,,,,,,0.155,,,0.13,0.185,0.303,,,0.248,0.376,7.9,0.078084301,0.1,,,0.251,,,0.211,0.3,0.813646789,4257,5232,,,0.195738673,,,0.161500033,0.242652357,,,,,,217.4,11,5059,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.202139768,888,4393,0.171161044,0.233118491,0.000593003,3,5059,,,1686.333333,0.001171417,6,5122,,,853.6666667,0.001757126,9,5122,,,569.1111111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.895363895,3457,3861,0.863206848,0.927520942,0.504662005,866,1716,0.432504015,0.576819994,0.030747126,107,3480,,,0.079,38,,0.043255319,0.114744681,0.12195122,0.027000803,0.216901636,0.060498221,0,0.186649048,,,,0.159217877,0.019808123,0.298627631,0.070175439,0,0.394012673,2.532933586,166857,65875,2.015143529,3.050723644,0.104529617,90,861,0.065551006,0.143508228,0,0,5059,,,71.79008579,20,27859,43.85124945,110.873965,361.4853763,180.4521974,646.7971907,,,,,,,,,,,,,,,,,,,,,0,,,,,0.191570881,250,1305,0.150315641,0.232826121,0.032183908,0,0.06749509,0.118773946,0.079170487,0.158377406,0.049808429,0.032371935,0.067244924,0.485496631,1657,3413,0.419447017,0.551546244,0.358744395,0.105828524,0.611660266,0.475016223,0.353968822,0.596063624,,,,0.26450116,0.156601163,0.372401157,0.503703704,0.420043608,0.587363799,0.007,,3413,0,0.026722658,86.26592923,,,71.45550442,101.076354,,,,,,,,,,,,,,,,,,,221.7585992,39,16162,151.6827177,313.0569755,1067.061008,632.40798,1686.41643,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.096,,,0.084,0.11,0.122,,,0.107,0.141,0.109,,,0.094,0.126,,,,,,0.1,530,,,,0.078084301,434.226798,5561,,,,,,,,,,,,,,,,,,,,,,,,,,0.334,,,0.324,0.344,0.206533193,784,3796,0.171980001,0.241086384,0.1728,108,625,0.119182979,0.226417021,0.002733307,14,5122,,,365.8571429,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.208506987,,,,,11035.23,,,,,0.64596913,45785,70878,0.53838756,0.753550701,112218,,,103512.9787,120923.0213,74167,39666.23404,108667.766,95000,81646.97872,108353.0213,,,,101250,78886.93617,123613.0638,132500,104890.8085,160109.1915,,,,,,,,,,,,,,,,0.236405924,,112218,,,,,162,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,300,,,0,0,,,,,,0.171,,,,,,,,,,0.276573787,268,969,0.177272927,0.375874648,0.065466448,40,611,0,0.141202074,0.776057792,752,969,0.663385343,0.88873024,5122,,,,,0.096056228,492,5122,,,0.075556423,387,5122,,,0.08141351,417,5122,,,0.090003905,461,5122,,,0.385786802,1976,5122,,,0.03787583,194,5122,,,0.157555642,807,5122,,,0.230573995,1181,5122,,,0.100220044,501,4999,0.064745173,0.135694915,0.291292464,1492,5122,,,1,5232,5232,, -02,020,02020,AK,Anchorage Borough,2024,1,9238.415092,3864,827170,8845.533436,9631.296748,0,27115.64899,24807.30098,29423.997,,4781.68483,3869.7561,5693.61356,,9762.673449,8059.926189,11465.42071,,5731.824475,4709.637042,6754.011907,,6854.986008,6395.585778,7314.386239,,22292.21856,18915.112,25669.32512,,,0.135,,,0.117,0.156,3.420785295,,,2.828060899,4.076546471,4.598679403,,,3.947236746,5.287036133,0.068048196,1875,27554,0.065074691,0.071021702,0,0.084752981,0.073487398,0.096018564,0.090342679,0.079889035,0.100796323,0.121283255,0.103384801,0.139181709,0.076822491,0.067385074,0.086259908,0.055124224,0.051182767,0.05906568,0.057755776,0.047032226,0.068479326,0.063997375,0.055306981,0.072687768,0.149,,,0.123,0.177,0.329,,,0.29,0.37,8.5,0.045700243,0.091,,,0.205,,,0.176,0.236,0.921829238,268480,291247,,,0.199542569,,,0.172594004,0.227061308,0.292929293,29,99,0.241377037,0.345550494,870.1,2507,288121,,,16.02363867,949,59225,15.004146,17.04313134,21.83833116,18.14070399,25.53595833,17.82752902,14.75106126,20.90399678,15.69574404,11.72233239,20.58288009,19.28451649,16.06696665,22.50206633,7.896625987,6.796695993,8.996555981,43.85307346,35.90680604,51.79934089,22.76890866,19.3857399,26.15207743,0.114652438,28343,247208,0.105120524,0.124184353,0.001162706,335,288121,,,860.0626866,0.001333821,383,287145,,,749.7258486,0.007292483,2094,287145,,,137.1275072,1797,,,,,3242,2247,2459,1314,1545,0.37,,,,,0.42,0.28,0.32,0.3,0.39,0.38,,,,,0.37,0.4,0.26,0.29,0.39,0.941793883,181252,192454,,,0.704702954,62844,89178,,,0.033302058,5040,151342,,,0.127,8369,,0.100787234,0.153212766,0.2825,0.217680913,0.347319087,0.194080254,0.147580171,0.240580337,0.244656918,0.145229211,0.344084625,0.106960242,0.062763286,0.151157199,0.047063919,0.030399958,0.06372788,4.025027028,174980,43473,3.80011067,4.249943387,0.224171343,15501,69148,0.19636582,0.251976866,11.76589003,339,288121,,,93.02261388,1348,1449110,88.05669451,97.98853325,247.5497626,219.2524677,275.8470574,33.93857119,25.02362324,44.9976216,88.33463237,68.59529846,111.9851951,55.04183179,43.29389234,68.99541278,86.72554152,80.37301363,93.07806941,56.7831132,35.99562285,85.20255004,8.3,,,,,1,,,,,0.163550528,17495,106970,0.152700289,0.174400767,0.119545838,0.10894433,0.130147347,0.044872394,0.038112757,0.051632031,0.0094419,0.005778892,0.013104907,0.718433077,106757,148597,0.704308101,0.732558053,0.695695571,0.646751152,0.74463999,0.615833838,0.572819913,0.658847764,0.710036304,0.631736652,0.788335956,0.68466936,0.6436775,0.72566122,0.758383474,0.745347942,0.771419005,0.138,,148597,0.125790867,0.150209133,77.09380816,,,76.70375483,77.48386149,62.91347517,61.70245676,64.12449357,84.18820379,82.55825057,85.81815701,75.42594029,73.70946605,77.14241452,82.62237601,80.41643365,84.82831837,79.28188581,78.80451311,79.75925851,64.64485328,62.55403042,66.73567614,424.2765646,3864,827170,410.6604128,437.8927164,1141.226367,1059.69757,1222.755163,231.8058733,199.6478483,263.9638982,501.9728994,435.1153858,568.8304131,276.3880191,230.4287026,322.3473355,335.8401415,320.776515,350.903768,1173.453308,1001.816076,1345.09054,59.55142315,181,303939,50.8756352,68.2272111,120.8416264,83.68633916,168.8640606,36.06439133,18.00321421,64.5291581,61.65228113,29.5646652,113.3807401,57.03657781,36.15629767,85.58287141,46.58551114,35.63422474,59.84103795,,,,5.437070296,155,28508,4.581106945,6.293033647,14.16309013,9.749219559,19.89024432,,,,,,,,,,3.759952816,2.799531837,4.94364357,,,,7.714561234,4.942864949,11.47865561,0.103,,,0.09,0.117,0.145,,,0.128,0.163,0.078,,,0.068,0.089,,,,,,0.091,26740,,,,0.045700243,13336.51903,291826,,,30.46746122,263,863216,26.7852011,34.14972133,89.31561907,68.78391,114.0540516,,,,41.99266234,25.28232587,65.57674396,12.16471018,5.833451367,22.37133513,26.0378225,21.50927557,30.56636943,,,,0.309,,,0.298,0.32,0.131282766,23539,179300,0.119367873,0.14319766,0.073591733,5227,71027,0.06048535,0.086698116,0.002281078,655,287145,,,438.389313,0.8190399,2627.48,3208,,,0.100820304,1438,14263,0.076109226,0.125531382,,,,,,,,,,,,,,,,,,,,,0.094975307,,,,,2907.9805,,,,,0.85476463,58995,69019,0.819247603,0.890281657,99162,,,94326.93617,103997.0638,59146,50591.10638,67700.89362,88356,81472.76596,95239.23404,71951,62289.21277,81612.78723,71877,65917.17021,77836.82979,106126,102198.8511,110053.1489,,,,,,,,,,,47.82082981,,,,,0.26603941,,99162,,,4.402018004,89,20218,,,9.43305391,193,2045997,8.102201996,10.76390582,18.76933696,12.75285384,26.6415756,5.071456827,2.431960674,9.32658967,31.88804563,22.21119216,44.34855216,12.07805575,7.656451277,18.12301389,4.419277227,3.300527611,5.795294128,31.09111526,18.11172038,49.77988737,21.44892579,319,1449110,19.04244784,23.85540374,22.01351174,45.53503158,34.57665856,58.86458754,7.309831748,3.649041671,13.07930818,,,,15.26136374,8.890306776,24.43492174,21.42560987,18.24286813,24.60835162,,,,20.97839364,304,1449110,18.62013459,23.33665269,26.10218585,17.73516889,37.04996927,7.070535664,3.39059668,13.00296683,33.7750065,22.06295559,49.48821003,19.81505945,13.05824903,28.82987116,20.34900974,17.27188778,23.42613171,34.56363412,18.8962604,57.991905,8.651039078,177,2045997,7.376545322,9.925532833,27.24581171,19.87328202,36.45703971,,,,,,,,,,7.988693449,6.455677488,9.77613758,,,,22.72413793,,29000,,,397,262,,,,,,0.659,,,,,152.3047648,,,,,0.638042078,68356,107134,0.623837379,0.652246778,0.131941668,13861,105054,0.120261569,0.143621767,0.935697351,100245,107134,0.925859206,0.945535496,287145,,,,,0.235100733,67508,287145,,,0.128489091,36895,287145,,,0.051298125,14730,287145,,,0.095415208,27398,287145,,,0.102975848,29569,287145,,,0.033171394,9525,287145,,,0.099448014,28556,287145,,,0.550923749,158195,287145,,,0.020620115,5593,271240,,,0.487443626,139967,287145,,,0.042692285,12434,291247,, -02,050,02050,AK,Bethel Census Area,2024,1,17063.01758,291,54011,14780.80288,19345.23229,0,18325.35156,15727.72581,20922.97731,,,,,2,,,,2,,,,2,,,,2,,,,2,,0.3,,,0.261,0.342,5.930765998,,,4.924472617,7.033086224,6.485705906,,,5.433646679,7.63741171,0.075224293,218,2898,0.065621354,0.084827231,0,0.075347759,0.065178289,0.085517229,,,,,,,,,,,,,,,,0.078571429,0.034000137,0.12314272,0.354,,,0.299,0.407,0.431,,,0.363,0.497,2.3,0.398526505,0.205,,,0.35,,,0.295,0.403,0.917711347,17130,18666,,,0.18849642,,,0.152276367,0.225849671,0.5,4,8,0.315552499,0.64971552,2786,517,18557,,,53.49324196,281,5253,47.23860898,59.74787494,55.3443177,48.6427183,62.0459171,,,,,,,,,,,,,,,,64.35643564,34.26709154,110.0514649,0.159698424,2097,13131,0.139443104,0.179953743,0.000862208,16,18557,,,1159.8125,0.001588432,29,18257,,,629.5517241,0.029084735,531,18257,,,34.38229755,2547,,,,,2790,,,,,0.06,,,,,0.05,,,,0.18,0.02,,,,,0.02,0.1,,,0.09,0.827381541,8364,10109,0.811086833,0.84367625,0.314439388,1520,4834,0.192092968,0.436785807,0.088173653,589,6680,,,0.27,1693,,0.171106383,0.368893617,0.343072078,0.316649589,0.369494567,,,,,,,0.051813472,0,0.170472249,,,,5.670850825,136435,24059,4.70548846,6.63621319,0.234498835,1509,6435,0.189538563,0.279459106,2.694401035,5,18557,,,212.7148966,195,91672,182.8585495,242.5712437,228.2532688,194.2398704,262.2666671,,,,,,,,,,,,,,,,,,,,,1,,,,,0.576666667,2595,4500,0.530439946,0.622893387,0.101872492,0.072405009,0.131339975,0.322222222,0.286468034,0.35797641,0.326666667,0.30039654,0.352936793,0.197082557,1270,6444,0.160390894,0.233774221,0.15408595,0.118102895,0.190069005,,,,,,,,,,0.30918596,0.155067317,0.463304603,0.005,,6444,0,0.045650572,69.78755299,,,68.24533152,71.32977446,68.37324033,66.7290845,70.01739616,,,,,,,,,,,,,,,,585.3283978,291,54011,516.0056548,654.6511408,634.5813826,553.7807105,715.3820547,,,,,,,,,,,,,,,,178.3279136,51,28599,132.7768448,234.4682729,187.5713587,137.325809,250.1939068,,,,,,,,,,,,,,,,9.982788296,29,2905,6.685629996,14.3369492,10.05025126,6.565157795,14.72594669,,,,,,,,,,,,,,,,,,,0.198,,,0.173,0.224,0.214,,,0.186,0.242,0.159,,,0.138,0.181,,,,,,0.205,3800,,,,0.398526505,6780.131421,17013,,,18.05706031,10,55380,8.65906229,33.20757682,,,,,,,,,,,,,,,,,,,0.37,,,0.356,0.383,0.217332347,1763,8112,0.186353624,0.248311071,0.069441817,367,5285,0.049186497,0.089697136,0.001862299,34,18257,,,536.9705882,0.606785714,203.88,336,,,0.184343434,219,1188,0.143273819,0.225413049,,,,,,,,,,,,,,,,,,,,,0.23084882,,,,,-4229.031667,,,,,0.980137009,59806,61018,0.4827368,1.477537218,59011,,,52756.87234,65265.12766,51451,46534.91489,56367.08511,,,,107688,102402.5532,112973.4468,102279,92504.02128,112053.9787,146250,87223.61702,205276.383,,,,,,,,,,,10.44011373,,,,,0.378573486,,59011,,,0.525762355,1,1902,,,14.89191604,19,127586,8.965906263,23.25557159,16.18092174,9.4259832,25.90722318,,,,,,,,,,,,,,,,59.52133929,56,91672,44.58556756,77.85537728,61.08735492,64.46157085,47.52887368,85.4666909,,,,,,,,,,,,,,,,37.0887512,34,91672,25.68503838,51.8278123,40.90087475,27.79016001,58.0555269,,,,,,,,,,,,,,,,11.75677582,15,127586,6.58017818,19.3910138,13.32546496,7.285155695,22.35786595,,,,,,,,,,,,,,,,56.92307692,,2600,,,65,83,,,,,,0.156,,,,,,,,,,0.58992333,2693,4565,0.547600863,0.632245797,0.105776261,434,4103,0.074261199,0.137291324,0.771522454,3522,4565,0.744105265,0.798939642,18257,,,,,0.351262529,6413,18257,,,0.086925563,1587,18257,,,0.009694912,177,18257,,,0.848003506,15482,18257,,,0.010461741,191,18257,,,0.001971846,36,18257,,,0.022402366,409,18257,,,0.081393438,1486,18257,,,0.013278609,220,16568,0.005524817,0.021032402,0.47433861,8660,18257,,,0.726936676,13569,18666,, -02,060,02060,AK,Bristol Bay Borough,2024,1,17809.98451,22,2307,8143.859012,33808.89831,1,,,,2,,,,2,,,,2,,,,2,,,,2,,,,2,,0.144,,,0.124,0.166,3.656409202,,,2.898115088,4.512418372,4.4905076,,,3.599119738,5.483266713,,,,,,0,,,,,,,,,,,,,,,,,,,,,,0.187,,,0.153,0.221,0.356,,,0.285,0.429,7.7,0.116793633,0.093,,,0.204,,,0.168,0.245,0.058056872,49,844,,,0.195106117,,,0.157184169,0.2357127,1,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.172058824,117,680,0.143463079,0.200654568,0,0,838,,,-838,0.001156069,1,865,,,865,0,0,865,,,-865,665,,,,,7160,,,,,0.34,,,,,0.29,,,,0.34,0.34,,,,,0.28,,,,0.35,0.949685535,604,636,0.874895343,1,0.696245734,204,293,0.362821988,1,0.042654028,18,422,,,0.133,24,,0.079382979,0.186617021,0.1,0.026435783,0.173564217,,,,,,,,,,0.14893617,0,0.564205861,3.553355336,161500,45450,2.666586018,4.440124653,0.061349693,10,163,0,0.132097008,0,0,838,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,,,,0.157894737,45,285,0.072352057,0.243437417,0.09252669,0,0.211535587,0.077192983,0.008867174,0.145518791,0.066666667,0.008453427,0.124879906,0.678082192,297,438,0.582054187,0.774110197,0.704761905,0.380271359,1,,,,,,,,,,0.483660131,0.456292159,0.511028103,0.03,,438,0,0.136510086,,,,,,,,,,,,,,,,,,,,,,,,719.1876878,22,2307,426.2362035,1136.626607,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.11,,,0.096,0.126,0.154,,,0.134,0.176,0.086,,,0.073,0.101,,,,,,0.093,80,,,,0.116793633,116.4432518,997,,,,,,,,,,,,,,,,,,,,,,,,,,0.324,,,0.312,0.335,0.179841897,91,506,0.146480195,0.213203599,0.143646409,26,181,0.097178324,0.190114494,0.003468208,3,865,,,288.3333333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.027213012,,,,,32379.685,,,,,0.819839544,55795,68056,0.499649626,1.140029461,96382,,,81791.02128,110972.9787,64432,48563.74468,80300.25532,,,,,,,116250,100048.1277,132451.8723,105000,75255.65957,134744.3404,,,,,,,,,,,,,,,,0.194745907,,96382,,,,,67,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,100,,,0,0,,,,,,0.012,,,,,,,,,,0.507042254,144,284,0.429364275,0.584720232,0.029787234,7,235,0,0.208226199,0.778169014,221,284,0.713281301,0.843056727,865,,,,,0.213872832,185,865,,,0.186127168,161,865,,,0.006936416,6,865,,,0.310982659,269,865,,,0.021965318,19,865,,,0.003468208,3,865,,,0.112138728,97,865,,,0.387283237,335,865,,,0,0,788,0,0.060481694,0.465895954,403,865,,,1,844,844,, -02,063,02063,AK,Chugach Census Area,2024,0,,,,,,2,,,,2,,,,2,,,,2,,,,2,,,,2,,,,2,,0.128,,,0.111,0.145,3.46293722,,,2.734516473,4.289137669,4.433240396,,,3.567058885,5.408957982,,,,,,0,,,,,,,,,,,,,,,,,,,,,,0.154,,,0.128,0.181,0.314,,,0.281,0.347,,,0.084,,,0.188,,,0.163,0.214,0.797521825,5664,7102,,,0.204409298,,,0.167025177,0.245937075,,,,,,158.5,11,6941,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.149150191,860,5766,0.127703382,0.170596999,0.001584786,11,6941,,,631,0.000436427,3,6874,,,2291.333333,0.00203666,14,6874,,,491,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.945425036,4660,4929,0.91806267,0.972787401,0.749643706,1578,2105,0.609030222,0.890257189,0.028638914,97,3387,,,0.078,117,,0.043446809,0.112553192,0.067567568,0,0.434569476,0.081818182,0,0.413027071,,,,0.008403361,0,0.222874136,0.026919242,0,0.074497858,3.206996026,150081,46798,2.754808243,3.659183808,0.19380356,294,1517,0.075045526,0.312561593,0,0,6941,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.101731602,235,2310,0.049866425,0.153596779,0.049350649,0.009492185,0.089209114,0.049350649,0.009273275,0.089428024,0.017316017,0,0.039471454,0.656080114,2293,3495,0.580422688,0.731737541,,,,,,,,,,,,,0.762095307,0.68013609,0.844054525,0.069,,3495,0.018914912,0.119085088,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.101,,,0.09,0.114,0.146,,,0.131,0.161,0.073,,,0.065,0.081,,,,,,0.084,590,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.163212435,693,4246,0.13580818,0.190616691,0.112649465,179,1589,0.079287763,0.146011167,0.000290951,2,6874,,,3437,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.124567458,,,,,,,,,,0.705382201,51021,72331,0.520385573,0.89037883,91356,,,80074.97872,102637.0213,46176,35618.21277,56733.78723,63750,4079.021277,123420.9787,,,,78276,25340.51064,131211.4894,88630,73638.68085,103621.3192,,,,,,,,,,,,,,,,0.236897412,,91356,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,600,,,-888,5,,,,,,,,,,,3.646713834,,,,,0.626134301,1725,2755,0.570801115,0.681467487,0.061770245,164,2655,0.022118677,0.101421813,0.88892922,2449,2755,0.840176994,0.937681446,6874,,,,,0.223450684,1536,6874,,,0.165114926,1135,6874,,,0.012074484,83,6874,,,0.128164097,881,6874,,,0.070701193,486,6874,,,0.010619727,73,6874,,,0.062845505,432,6874,,,0.665114926,4572,6874,,,0.017455981,115,6588,0.004338269,0.030573692,0.461157987,3170,6874,,,1,7102,7102,, -02,066,02066,AK,Copper River Census Area,2024,0,,,,,,2,,,,2,,,,2,,,,2,,,,2,,,,2,,,,2,,0.158,,,0.139,0.182,3.972857757,,,3.158593582,4.866098675,4.807876634,,,3.886258437,5.777563264,,,,,,0,,,,,,,,,,,,,,,,,,,,,,0.194,,,0.164,0.226,0.349,,,0.307,0.394,,,0.124,,,0.223,,,0.192,0.255,0.524264425,1372,2617,,,0.18391891,,,0.149067048,0.222678865,,,,,,608.4,16,2630,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.160191847,334,2085,0.136362059,0.184021634,0.000380228,1,2630,,,2630,0.000772499,2,2589,,,1294.5,0.003862495,10,2589,,,258.9,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.924064768,1655,1791,0.900415972,0.947713564,0.689981096,365,529,0.522342174,0.857620019,0.09252669,130,1405,,,0.196,123,,0.116170213,0.275829787,0.242331288,0.113396928,0.371265649,,,,,,,,,,0.061032864,0,0.190109477,4.938327273,135804,27500,3.483356221,6.393298324,0.339595376,235,692,0.183946421,0.495244331,0,0,2630,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.201877934,215,1065,0.126427679,0.277328189,0.0933082,0.026586809,0.160029591,0.045070423,0.006391728,0.083749117,0.079812207,0.038698857,0.120925556,0.642342342,713,1110,0.544415135,0.74026955,0.717041801,0.553052393,0.881031209,,,,,,,,,,0.497830803,0.406005279,0.589656326,0.175,,1110,0.063050713,0.286949287,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.119,,,0.106,0.133,0.16,,,0.143,0.177,0.086,,,0.076,0.096,,,,,,0.124,330,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.17948718,259,1443,0.149699945,0.209274414,0.119225037,80,671,0.082288867,0.156161208,0.002317497,6,2589,,,431.5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.20606569,,,,,,,,,,0.74229249,53523,72105,0.562390389,0.922194591,63837,,,54358.70213,73315.29787,66528,46852.93617,86203.06383,,,,,,,104474,78625.82979,130322.1702,71765,57306.2766,86223.7234,,,,,,,,,,,,,,,,0.217977035,,63837,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,300,,,0,0,,,,,,,,,,,0.74140344,,,,,0.688073395,750,1090,0.606299824,0.769846965,0.06143001,61,993,0.006128898,0.116731122,0.775229358,845,1090,0.709869184,0.840589531,2589,,,,,0.244882194,634,2589,,,0.194669757,504,2589,,,0.00811124,21,2589,,,0.187331016,485,2589,,,0.029741213,77,2589,,,0.003862495,10,2589,,,0.069524913,180,2589,,,0.639629201,1656,2589,,,0,0,2426,0,0.019645332,0.459250676,1189,2589,,,1,2617,2617,, -02,068,02068,AK,Denali Borough,2024,0,,,,,,2,,,,2,,,,2,,,,2,,,,2,,,,2,,,,2,,0.142,,,0.119,0.168,3.535990599,,,2.727370223,4.3848831,4.608646318,,,3.640589715,5.623233074,0.072992701,10,137,0.029433783,0.116551619,1,,,,,,,,,,,,,0.092592593,0.037924556,0.147260629,,,,,,,0.169,,,0.131,0.209,0.276,,,0.214,0.345,4.5,0.330914479,0.139,,,0.203,,,0.162,0.245,0.720197653,1166,1619,,,0.199571651,,,0.161816719,0.243323177,0.166666667,1,6,0.011498194,0.426636125,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.135135135,180,1332,0.112496837,0.157773433,0.000627746,1,1593,,,1593,0,0,1585,,,-1585,,0,1585,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.966547192,1618,1674,0.924406063,1,0.358604092,298,831,0.035117141,0.682091042,0.063189569,63,997,,,0.112,31,,0.07506383,0.14893617,,,,,,,,,,,,,,,,5.400994828,163958,30357,2.078533964,8.723455692,0.058823529,16,272,0,0.120679494,0,0,1593,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,,,,,0.268965517,195,725,0.215640546,0.322290489,0.067586207,0,0.141004384,0.031724138,0,0.06800567,0.2,0.142758474,0.257241526,0.262778978,365,1389,0.191694888,0.333863067,,,,,,,,,,,,,0.287545788,0.215672824,0.359418751,0.253,,1389,0.119096526,0.386903474,84.68774092,,,76.58571126,92.78977058,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.108,,,0.092,0.126,0.15,,,0.128,0.173,0.083,,,0.07,0.097,,,,,,0.139,300,,,,0.330914479,604.2498381,1826,,,,,,,,,,,,,,,,,,,,,,,,,,0.308,,,0.292,0.324,0.14516129,153,1054,0.117757035,0.172565546,0.099315069,29,292,0.067144856,0.131485281,0.001892745,3,1585,,,528.3333333,0.825,67.65,82,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.044739342,,,,,1498.964,,,,,0.420014202,68611,163354,0,0.988613727,90897,,,79107.21277,102686.7872,100250,24778.68085,175721.3192,,,,,,,,,,87014,71989.31915,102038.6809,,,,,,,,,,,,,,,,0.425327569,,90897,,,20.83333333,1,48,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,200,,,0,0,,,,,,0.185,,,,,1.340736439,,,,,0.868571429,456,525,0.831607891,0.905534966,0.079766537,41,514,0,0.17949655,0.828571429,435,525,0.778283049,0.878859808,1585,,,,,0.176025237,279,1585,,,0.138170347,219,1585,,,0.034069401,54,1585,,,0.065615142,104,1585,,,0.055520505,88,1585,,,0.000630915,1,1585,,,0.052996845,84,1585,,,0.741955836,1176,1585,,,0.004418262,9,2037,0,0.031702648,0.45362776,719,1585,,,1,1619,1619,, -02,070,02070,AK,Dillingham Census Area,2024,1,19921.39419,105,14021,15150.90713,24691.88125,0,25172.86908,19065.68521,32614.37168,,,,,2,,,,2,,,,2,,,,2,,,,2,,0.238,,,0.202,0.274,4.809271914,,,3.89359187,5.823362895,6.063943718,,,5.020584918,7.221863591,0.064935065,40,616,0.045475809,0.084394321,0,0.069037657,0.046310181,0.091765133,,,,,,,,,,,,,,,,,,,0.291,,,0.24,0.341,0.407,,,0.337,0.479,4.6,0.314664343,0.14,,,0.28,,,0.232,0.331,0.465101915,2259,4857,,,0.207656283,,,0.169970396,0.250408463,0.5,1,2,0.104528646,0.771195053,733.4,35,4772,,,35.86321935,43,1199,25.95438967,48.30752111,43.62416107,31.02104305,59.63566428,,,,,,,,,,,,,,,,,,,0.178994918,634,3542,0.153973642,0.204016195,0.002514669,12,4772,,,397.6666667,0.001270379,6,4723,,,787.1666667,0.009527843,45,4723,,,104.9555556,3113,,,,,3706,,,,,0.22,,,,,0.18,,,,0.28,0.1,,,,,0.07,,,,0.14,0.881116471,2557,2902,0.828312107,0.933920836,0.477308294,610,1278,0.2975132,0.657103388,0.055855856,93,1665,,,0.268,384,,0.148851064,0.387148936,0.202859696,0.159018856,0.246700536,,,,,,,0.283783784,0.136689513,0.430878055,0.043010753,0,0.23167109,4.296845768,130912,30467,1.487969923,7.105721612,0.336748634,493,1464,0.273415493,0.400081775,0,0,4772,,,192.2054554,47,24453,141.2253391,255.5925095,218.5666628,154.6707791,299.9998212,,,,,,,,,,,,,,,,,,,,,0,,,,,0.402097902,575,1430,0.355819675,0.44837613,0.079242637,0.047342476,0.111142797,0.251748252,0.206323385,0.297173119,0.146853147,0.120796277,0.172910017,0.336288089,607,1805,0.18284452,0.489731658,0.325276939,0.237681109,0.412872768,,,,,,,,,,0.293357934,0,0.799645114,0.019,,1805,0,0.217932343,68.43699856,,,65.44776225,71.42623487,65.28249337,61.83769696,68.72728979,,,,,,,,,,,,,,,,759.1124985,105,14021,607.085198,911.1397989,957.4302578,759.1826493,1191.604833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.16,,,0.138,0.182,0.19,,,0.163,0.216,0.133,,,0.113,0.152,,,,,,0.14,690,,,,0.314664343,1525.178068,4847,,,,,,,,,,,,,,,,,,,,,,,,,,0.319,,,0.305,0.331,0.227826087,524,2300,0.192081406,0.263570768,0.089930822,117,1301,0.060143588,0.119718057,0.001058649,5,4723,,,944.6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.166213308,,,,,19324.095,,,,,0.931423189,59327,63695,0.286417677,1.576428701,69716,,,61517.3617,77914.6383,56544,38697.87234,74390.12766,,,,82500,34854.7234,130145.2766,130962,47013.23404,214910.766,114773,50701.85106,178844.1489,,,,,,,,,,,,,,,,0.251721269,,69716,,,2.155172414,1,464,,,,,,,,,,,,,,,,,,,,,,,,,,42.24937972,11,24453,21.09073813,75.5958108,44.98425551,52.79277218,24.14021715,100.2171263,,,,,,,,,,,,,,,,53.16321106,13,24453,28.30717086,90.91071001,63.26929714,31.58380517,113.2062494,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,50,,600,,,20,10,,,,,,0.165,,,,,,,,,,0.60765896,841,1384,0.441430192,0.773887727,0.091699605,116,1265,0.027365375,0.156033834,0.75650289,1047,1384,0.447728169,1,4723,,,,,0.311242854,1470,4723,,,0.120686005,570,4723,,,0.008257464,39,4723,,,0.725598137,3427,4723,,,0.011221681,53,4723,,,0.002329028,11,4723,,,0.035570612,168,4723,,,0.139953419,661,4723,,,0.016910936,75,4435,0.005017437,0.028804434,0.477239043,2254,4723,,,1,4857,4857,, -02,090,02090,AK,Fairbanks North Star Borough,2024,1,7962.403001,1106,277708,7334.136267,8590.669736,0,23149.31268,19284.71565,27013.90971,,4203.055807,2098.150315,7520.427842,1,5741.739902,3715.751325,8475.940756,,4341.854654,2809.819403,6409.433978,1,7028.005401,6305.498408,7750.512394,,,,,2,,0.133,,,0.114,0.152,3.594066971,,,2.971664734,4.276172572,4.635147673,,,3.953434194,5.350137467,0.060926389,634,10406,0.05633053,0.065522248,0,0.054521277,0.038293611,0.070748942,0.062189055,0.038581138,0.085796972,0.115732369,0.089069137,0.142395601,0.065359477,0.05055688,0.080162074,0.056286326,0.050699628,0.061873024,,,,0.055859803,0.040963152,0.070756453,0.16,,,0.131,0.189,0.339,,,0.295,0.382,8.2,0.077312017,0.086,,,0.22,,,0.187,0.253,0.746024777,71361,95655,,,0.220301176,,,0.191014504,0.251653605,0.325581395,14,43,0.245954344,0.405547825,918.5,878,95593,,,19.56198171,368,18812,17.56329369,21.56066974,24.5,18.12523487,32.3902993,,,,18.36969001,10.49986504,29.83122572,30.15681544,22.38296969,39.75800161,16.56652361,14.22925406,18.90379315,,,,22.11302211,16.12939007,29.58896339,0.123756466,9952,80416,0.108267105,0.139245828,0.000857803,82,95593,,,1165.768293,0.001415747,135,95356,,,706.3407407,0.008242795,786,95356,,,121.3180662,1161,,,,,1384,,411,,1146,0.35,,,,,0.37,0.26,0.35,0.32,0.35,0.34,,,,,0.36,0.35,0.3,0.26,0.34,0.946682967,58079,61350,0.936782539,0.956583395,0.716614568,21320,29751,0.671463668,0.761765468,0.036774265,1669,45385,,,0.084,1826,,0.050638298,0.117361702,0.107024988,0.005328897,0.208721079,0.016977929,0,0.118159447,0.254901961,0,0.56233542,0.125803859,0.031947494,0.219660223,0.039705092,0.023643809,0.055766374,3.787878788,161000,42504,3.486614216,4.08914336,0.171136542,3918,22894,0.136223637,0.206049448,9.310305148,89,95593,,,93.0630055,453,486767,84.49294191,101.6330691,231.5445383,184.9495533,286.3084073,,,,51.58406053,26.65423681,90.10697265,44.95729057,26.64453964,71.05190136,84.79375254,74.96639153,94.62111355,,,,15.5,,,,,0,,,,,0.194751381,7050,36200,0.169105934,0.220396829,0.11050951,0.092283759,0.128735261,0.054143646,0.040561721,0.067725572,0.057458564,0.042421211,0.072495917,0.72351818,34862,48184,0.696703763,0.750332598,0.752220249,0.656156282,0.848284216,0.692598187,0.571888913,0.813307462,0.578313253,0.438218185,0.718408321,0.709353861,0.636691188,0.782016533,0.74657575,0.717448651,0.77570285,0.164,,48184,0.138086818,0.189913182,78.64359636,,,77.90496657,79.38222616,65.59257315,63.34393379,67.84121251,96.11038874,71.77812188,120.4426556,81.00932122,75.86091687,86.15772556,90.26636239,72.4282273,108.1044975,79.79793451,78.93693462,80.6589344,,,,376.8075876,1106,277708,354.0721308,399.5430444,964.0907554,824.4913523,1103.690159,180.5701463,108.7150237,281.982651,346.4629302,236.9803878,489.1022824,233.3489615,152.431289,341.9102945,335.9912008,311.3896032,360.5927984,,,,65.88198275,67,101697,51.05763172,83.66778924,129.9685909,67.15666748,227.0289727,,,,,,,,,,56.66364461,39.46830463,78.80541279,,,,6.05496041,65,10735,4.673090613,7.717544091,,,,,,,,,,,,,4.558823529,3.097499409,6.470886103,,,,,,,0.105,,,0.091,0.119,0.145,,,0.126,0.164,0.08,,,0.068,0.091,,,,,,0.086,8370,,,,0.077312017,7544.183952,97581,,,18.049727,52,288093,13.48039946,23.66981556,72.42768548,41.39868025,117.6180236,,,,,,,,,,14.5694965,9.757420464,20.92422728,,,,0.329,,,0.315,0.342,0.144235907,8369,58023,0.125172077,0.163299736,0.07407725,1728,23327,0.05501342,0.093141079,0.002044968,195,95356,,,489.0051282,0.721796247,807.69,1119,,,0.083229556,401,4818,0.032670319,0.133788792,,,,,,,,,,,,,,,,,,,,,0.057055369,,,,,2459.2815,,,,,0.854323129,58129,68041,0.797719786,0.910926471,84166,,,75146.42553,93185.57447,55657,39727.97872,71586.02128,71318,69943.02128,72692.97872,58546,36405.74468,80686.25532,76066,62852.38298,89279.61702,86570,82571.3617,90568.6383,,,,,,,,,,,49.8451968,,,,,0.351234465,,84166,,,2.059873661,15,7282,,,8.442466772,58,687003,6.410718975,10.91384605,43.28919148,27.12910583,65.54035613,,,,,,,,,,4.182070627,2.554517386,6.458868897,,,,29.4034284,145,486767,24.41321364,34.39364317,29.78837925,47.67662886,26.68424725,78.63534887,,,,,,,,,,28.97400872,23.10757526,34.84044218,,,,26.91225987,131,486767,22.30364315,31.52087659,38.13674748,20.84971473,63.98698208,,,,,,,24.97627254,11.9770935,45.93225446,25.20094044,20.12961615,31.16135312,,,,11.35366221,78,687003,8.974598831,14.16988427,21.64459574,10.80490421,38.72816063,,,,,,,,,,11.29159069,8.482590452,14.7330765,,,,21.93548387,,9300,,,87,117,,,,,,0.512,,,,,42.73724885,,,,,0.599988834,21494,35824,0.578633562,0.621344106,0.119288395,4164,34907,0.099250596,0.139326193,0.894539973,32046,35824,0.873313056,0.915766891,95356,,,,,0.234227526,22335,95356,,,0.125634465,11980,95356,,,0.047694954,4548,95356,,,0.08339276,7952,95356,,,0.033998909,3242,95356,,,0.006334158,604,95356,,,0.086119384,8212,95356,,,0.683187214,65146,95356,,,0.00776078,694,89424,0.003705201,0.01181636,0.460296153,43892,95356,,,0.253609325,24259,95655,, -02,100,02100,AK,Haines Borough,2024,1,9117.058244,30,6710,4710.917034,15925.66598,1,,,,2,,,,2,,,,2,,,,2,10718.74305,4901.291866,20347.51314,1,,,,2,,0.158,,,0.136,0.183,3.872759729,,,3.040775253,4.741165435,5.249572441,,,4.21810017,6.319638389,,,,,,0,,,,,,,,,,,,,,,,,,,,,,0.197,,,0.158,0.239,0.323,,,0.252,0.4,6.8,0.100852938,0.141,,,0.225,,,0.181,0.273,0.957692308,1992,2080,,,0.176338164,,,0.140892768,0.215856305,1,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.110971787,177,1595,0.091907957,0.130035617,0.002897151,6,2071,,,345.1666667,0.001459144,3,2056,,,685.3333333,0.004377432,9,2056,,,228.4444444,487,,,,,,,,,,0.39,,,,,0.35,,,,0.4,0.42,,,,,0.51,,,,0.41,0.976760563,1387,1420,0.78444142,1,0.769444444,277,360,0.549285004,0.989603885,0.066162571,70,1058,,,0.167,58,,0.095510638,0.238489362,0.081632653,0,0.365215637,,,,,,,,,,,,,6.208975543,127700,20567,4.295891219,8.122059868,0.02866242,18,628,0.003979037,0.053345804,0,0,2071,,,81.86655751,10,12215,39.25819645,150.5555141,,,,,,,,,,,,,,,,,,,,,,,,0,,,,,0.366120219,335,915,0.151836109,0.580404328,0.079781421,0,0.175886882,0.114754098,0.019049685,0.210458511,0.174863388,0,0.363216672,0.527180784,417,791,0.409611738,0.64474983,,,,,,,,,,,,,0.526022305,0.383514712,0.668529898,0.096,,791,0,0.19963218,79.8509444,,,75.09573434,84.60615445,,,,,,,,,,,,,78.57264175,72.52157303,84.62371046,,,,317.381511,30,6710,201.1926527,476.2280994,,,,,,,,,,,,,346.8306462,205.5538219,548.1419487,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.12,,,0.103,0.138,0.166,,,0.142,0.191,0.088,,,0.074,0.104,,,,,,0.141,300,,,,0.100852938,252.9391674,2508,,,,,,,,,,,,,,,,,,,,,,,,,,0.32,,,0.306,0.336,0.122864117,151,1229,0.09903433,0.146693904,0.074742268,29,388,0.047338013,0.102146523,0.001459144,3,2056,,,685.3333333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.041716482,,,,,5020.291,,,,,0.482638889,44063,91296,0.318887229,0.646390548,70610,,,61178.17021,80041.82979,59167,35699.42553,82634.57447,,,,,,,119464,92811.57447,146116.4255,69830,50960.38298,88699.61702,,,,,,,,,,,,,,,,0.401642827,,70610,,,10.98901099,1,91,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,200,,,0,0,,,,,,0.36,,,,,1.406893127,,,,,0.697201018,548,786,0.617503857,0.776898179,0.137228261,101,736,0.021780651,0.252675871,0.815521629,641,786,0.738999763,0.892043494,2056,,,,,0.170719844,351,2056,,,0.261673152,538,2056,,,0.006809339,14,2056,,,0.105544747,217,2056,,,0.012645914,26,2056,,,0,0,2056,,,0.041828794,86,2056,,,0.757782101,1558,2056,,,0,0,2002,0,0.023805981,0.477140078,981,2056,,,1,2080,2080,, -02,105,02105,AK,Hoonah-Angoon Census Area,2024,1,12402.566,39,6068,6408.586837,21664.78684,1,24378.54836,10524.92685,48035.45884,1,,,,2,,,,2,,,,2,,,,2,,,,2,,0.177,,,0.152,0.203,4.178780843,,,3.337312481,5.095762732,5.409235882,,,4.370243605,6.541732661,,,,,,0,,,,,,,,,,,,,,,,,,,,,,0.214,,,0.176,0.254,0.386,,,0.307,0.467,5.2,0.311301741,0.116,,,0.227,,,0.185,0.272,0.378858351,896,2365,,,0.180038011,,,0.143706106,0.220669925,,,,,,428.8,10,2332,,,25.57544757,10,391,12.26442122,47.03415868,,,,,,,,,,,,,,,,,,,,,,0.165454546,273,1650,0.13924178,0.191667311,,0,2332,,,,0,0,2287,,,-2287,0.00218627,5,2287,,,457.4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.94015234,1728,1838,0.914310371,0.965994308,0.56122449,275,490,0.346670991,0.775777989,0.055955236,70,1251,,,0.281,106,,0.161851064,0.400148936,0.26,0.176904401,0.343095599,,,,,,,0.025,0,0.450071892,,,,5.001821862,123545,24700,3.268500253,6.735143471,0.196774194,61,310,0.120701191,0.272847197,0,0,2332,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.178807947,135,755,0.129905474,0.22771042,0.063576159,0.015697639,0.111454679,0.035761589,0,0.074081575,0.086092715,0.056092846,0.116092584,0.357586513,403,1127,0.278579987,0.436593039,0.418181818,0.350511154,0.485852482,,,,,,,,,,0.377880184,0.246031251,0.509729117,0.251,,1127,0.066734716,0.435265284,76.97113182,,,71.17615454,82.76610909,,,,,,,,,,,,,,,,,,,432.7997624,39,6068,285.2177706,629.7009314,781.6594026,446.7858866,1269.365899,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.126,,,0.109,0.144,0.169,,,0.147,0.192,0.1,,,0.085,0.116,,,,,,0.116,270,,,,0.311301741,669.2987423,2150,,,,,,,,,,,,,,,,,,,,,,,,,,0.333,,,0.321,0.345,0.184920635,233,1260,0.151558933,0.218282337,0.104878049,43,410,0.070324857,0.13943124,0.00218627,5,2287,,,457.4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.485762034,,,,,10934.579,,,,,0.785904638,43646,55536,0.510051321,1.061757956,64181,,,55890.61702,72471.38298,38125,29340.14894,46909.85106,,,,,,,63281,40466.3617,86095.6383,84167,73467.42553,94866.57447,,,,,,,,,,,,,,,,0.246225519,,64181,,,,,67,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,200,,,0,0,,,,,,0.29,,,,,0.041145862,,,,,0.745098039,646,867,0.709074571,0.781121508,0.081218274,64,788,0.026450892,0.135985656,0.607843137,527,867,0.554684292,0.661001983,2287,,,,,0.167031045,382,2287,,,0.263226935,602,2287,,,0.02055094,47,2287,,,0.381722781,873,2287,,,0.006121557,14,2287,,,0.001749016,4,2287,,,0.066899869,153,2287,,,0.457367731,1046,2287,,,0.005767524,13,2254,0,0.027440422,0.454744206,1040,2287,,,1,2365,2365,, -02,110,02110,AK,Juneau Borough,2024,1,7141.38169,356,91360,6060.317473,8222.445907,0,14627.5322,10496.96965,19843.89912,,,,,2,,,,2,,,,2,5815.386801,4459.307632,7171.465969,,,,,2,,0.122,,,0.104,0.143,3.127422605,,,2.514543884,3.792576271,4.670681518,,,3.914368676,5.445103499,0.054570259,120,2199,0.045076546,0.064063972,0,0.086419753,0.051090635,0.121748871,0.108333333,0.05272399,0.163942677,,,,0.071428571,0.032484167,0.110372976,0.045183291,0.033296736,0.057069846,,,,0.048780488,0.023858736,0.07370224,0.145,,,0.116,0.176,0.309,,,0.26,0.357,8.8,0.019616014,0.086,,,0.163,,,0.134,0.195,1,32255,32255,,,0.210296845,,,0.175644496,0.245859115,0.625,5,8,0.470053641,0.740226608,309.6,99,31973,,,7.820569574,53,6777,5.858143269,10.22949756,20.16607355,11.74748098,32.28783727,,,,,,,,,,2.883506344,1.382753373,5.302870831,,,,9.661835749,4.992411521,16.87728265,0.112630944,2989,26538,0.097141583,0.128120306,0.001282332,41,31973,,,779.8292683,0.001104624,35,31685,,,905.2857143,0.010162538,322,31685,,,98.40062112,1367,,,,,1926,,,1950,1317,0.36,,,,,0.31,0.26,0.27,0.22,0.38,0.41,,,,,0.43,0.38,0.13,0.31,0.42,0.954416699,21901,22947,0.941768202,0.967065197,0.723086562,6925,9577,0.659564648,0.786608475,0.027779375,483,17387,,,0.088,554,,0.052255319,0.123744681,0.083926031,0.006015088,0.161836974,0.065868264,0,0.18793464,,,,0.246395806,0.178683319,0.314108293,0.041118975,0,0.093820938,3.808885292,174127,45716,3.309511444,4.30825914,0.157510272,1035,6571,0.108208282,0.206812263,14.38713915,46,31973,,,91.87327738,147,160003,77.02122018,106.7253346,103.3947958,61.27830881,163.4083535,,,,,,,,,,85.78921201,68.80545665,105.6947086,,,,6.8,,,,,1,,,,,0.121118012,1560,12880,0.095105843,0.147130182,0.088949629,0.065609296,0.112289962,0.028726708,0.018344686,0.03910873,0.00931677,0.003104648,0.015528892,0.66951741,10960,16370,0.63852206,0.70051276,0.671150972,0.585294866,0.757007077,0.581934452,0.446998896,0.716870009,,,,0.519305019,0.346834079,0.691775959,0.670294664,0.631298595,0.709290733,0.082,,16370,0.059299079,0.104700921,80.35709434,,,79.07728576,81.63690291,70.5494912,67.36084849,73.73813391,90.85365899,81.98942917,99.71788881,,,,82.99854353,72.83188764,93.16519943,82.72091506,81.0457056,84.39612453,,,,310.4334948,356,91360,277.0106078,343.8563818,717.6768986,563.5307264,900.9776254,,,,,,,,,,242.2001137,206.0089658,278.3912615,,,,46.95938014,14,29813,25.6731301,78.78986054,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.095,,,0.082,0.11,0.144,,,0.125,0.164,0.072,,,0.061,0.084,,,,,,0.086,2760,,,,0.019616014,613.4908257,31275,,,27.14100798,26,95796,17.72940751,39.76786513,,,,,,,,,,,,,22.88741029,12.51276018,38.40118544,,,,0.285,,,0.273,0.297,0.1248621,2490,19942,0.10579827,0.14392593,0.07887527,547,6935,0.057428462,0.100322079,0.001325548,42,31685,,,754.4047619,0.8,258.4,323,,,0.168589744,263,1560,0.064803452,0.272376036,,,,,,,,,,,,,,,,,,,,,0.028949938,,,,,10780.55,,,,,0.939166629,62726,66789,0.827137688,1.051195571,102097,,,92404.23404,111789.766,54597,49159.04255,60034.95745,98750,45393.91489,152106.0851,,,,55483,29481.12766,81484.87234,105373,100398.5319,110347.4681,,,,,,,,,,,35.40604516,,,,,0.360686406,,102097,,,6.745362563,12,1779,,,5.327958016,12,225227,2.753033654,9.306870423,,,,,,,,,,,,,,,,,,,21.13974924,34,160003,14.55163067,29.68806761,21.24960157,,,,,,,,,,,,,18.32728335,10.86190964,28.96500907,,,,13.12475391,21,160003,8.124429532,20.06258054,,,,,,,,,,,,,14.62316114,8.184472282,24.11868048,,,,,,,,,,,,,,,,,,,,,,,,,,,20.66666667,,3000,,,37,25,,,,,,0.676,,,,,50.87796518,,,,,0.642621188,8365,13017,0.607372622,0.677869754,0.112255246,1439,12819,0.084250431,0.140260061,0.919797188,11973,13017,0.901980673,0.937613704,31685,,,,,0.203597917,6451,31685,,,0.160675399,5091,31685,,,0.01306612,414,31685,,,0.125043396,3962,31685,,,0.073252328,2321,31685,,,0.01262427,400,31685,,,0.074609437,2364,31685,,,0.629761717,19954,31685,,,0.009694699,295,30429,0.003900652,0.015488747,0.487707117,15453,31685,,,0.232491087,7499,32255,, -02,122,02122,AK,Kenai Peninsula Borough,2024,1,8331.828054,858,166782,7448.943272,9214.712836,0,12572.14229,9060.894335,16993.88411,,,,,2,,,,2,,,,2,7905.956592,6919.944929,8891.968255,,,,,2,,0.147,,,0.125,0.171,3.905533301,,,3.141711227,4.638000398,4.819101879,,,3.997028999,5.558161717,0.05503212,257,4670,0.04849157,0.06157267,0,0.06626506,0.039507831,0.093022289,,,,,,,0.075376884,0.038696743,0.112057026,0.050386487,0.043132325,0.05764065,,,,0.069478908,0.044653686,0.094304131,0.179,,,0.147,0.215,0.314,,,0.267,0.358,7.6,0.078682758,0.115,,,0.208,,,0.174,0.245,0.777224103,45700,58799,,,0.201084927,,,0.170034279,0.232049947,0.289473684,11,38,0.204200208,0.377354389,336.3,201,59767,,,15.28893496,177,11577,13.03652898,17.54134094,13.20422535,7.390304694,21.77836168,,,,,,,,,,16.12115291,13.37094705,18.87135877,,,,14.89028213,8.964922543,23.25302004,0.14340166,6772,47224,0.126720809,0.160082511,0.000803119,48,59767,,,1245.145833,0.000741473,45,60690,,,1348.666667,0.003657934,222,60690,,,273.3783784,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.942273983,39241,41645,0.934056955,0.95049101,0.598121938,8790,14696,0.548563958,0.647679918,0.045054633,1270,28188,,,0.127,1660,,0.079340426,0.174659575,0.342198582,0.217879804,0.466517359,0.035897436,0,0.333386312,,,,0.081176471,0,0.170696071,0.154378137,0.108223919,0.200532355,4.846959957,144769,29868,4.274772321,5.419147594,0.198605471,2592,13051,0.156543788,0.240667154,16.22969197,97,59767,,,93.20801657,275,295039,82.191533,104.2245001,80.40739748,47.6545197,127.0783537,,,,,,,,,,96.76638981,84.2057088,109.3270708,,,,,,,,,1,,,,,0.175160698,3815,21780,0.155622474,0.194698922,0.103489716,0.08750612,0.119473312,0.052112029,0.04000514,0.064218919,0.036960514,0.029060854,0.044860175,0.682061115,16718,24511,0.653879813,0.710242418,0.672546012,0.580700737,0.764391287,0.811934901,0.672862958,0.951006843,,,,0.696308725,0.59629018,0.79632727,0.696968053,0.663884655,0.730051452,0.199,,24511,0.17146654,0.22653346,78.75853533,,,77.88068093,79.63638973,72.09687273,69.23475002,74.95899544,,,,,,,98.87047571,60.77143548,136.969516,79.14521515,78.18878618,80.10164412,,,,373.752012,858,166782,346.7187736,400.7852504,586.8797767,464.638246,731.4273087,,,,,,,,,,358.2015067,328.9034399,387.4995734,,,,57.13889947,33,57754,39.33178927,80.24425887,,,,,,,,,,,,,58.16489748,37.26734733,86.5447569,,,,4.608294931,22,4774,2.887993899,6.977013906,,,,,,,,,,,,,,,,,,,,,,0.115,,,0.099,0.132,0.159,,,0.137,0.18,0.08,,,0.068,0.093,,,,,,0.115,6760,,,,0.078682758,4359.02478,55400,,,25.85882207,46,177889,18.93190777,34.49204488,,,,,,,,,,,,,22.59504039,15.4549909,31.89745529,,,,0.335,,,0.319,0.349,0.161656999,5518,34134,0.14021019,0.183103807,0.098246125,1350,13741,0.073224848,0.123267401,0.001598286,97,60690,,,625.6701031,0.79,525.35,665,,,0.098904981,280,2831,0.053802418,0.144007543,,,,,,,,,,,,,,,,,,,,,0.070214626,,,,,9118.519,,,,,0.787031268,55577,70616,0.709078709,0.864983826,76254,,,67662.17021,84845.82979,60243,46788.70213,73697.29787,58621,45583.7234,71658.2766,,,,67083,44061.04255,90104.95745,78706,74099.70213,83312.29787,,,,,,,,,,,56.33197891,,,,,0.234295906,,76254,,,2.324905551,8,3441,,,4.13018338,17,411604,2.405984021,6.612823689,,,,,,,,,,,,,4.85185174,2.773252485,7.879103256,,,,25.85152,74,295039,20.11402562,32.7167531,25.08142991,,,,,,,,,,,,,23.2263403,17.23903746,30.62103414,,,,21.01417101,62,295039,16.11144442,26.93921884,,,,,,,,,,,,,20.79628553,15.38520652,27.49379235,,,,11.41874229,47,411604,8.390062334,15.18450655,,,,,,,,,,,,,11.21990715,7.899850068,15.46516405,,,,16.2295082,,6100,,,49,50,,,,,,0.415,,,,,11.75332203,,,,,0.767553123,17808,23201,0.749010918,0.786095328,0.112864787,2510,22239,0.096744674,0.1289849,0.854876945,19834,23201,0.833971221,0.875782669,60690,,,,,0.219937387,13348,60690,,,0.199785797,12125,60690,,,0.007760751,471,60690,,,0.083621684,5075,60690,,,0.019410117,1178,60690,,,0.003361345,204,60690,,,0.046399736,2816,60690,,,0.787708024,47806,60690,,,0.003651334,204,55870,0.001498248,0.005804419,0.475745592,28873,60690,,,0.774009762,45511,58799,, -02,130,02130,AK,Ketchikan Gateway Borough,2024,1,7817.198071,189,38917,5976.063861,9658.33228,0,17795.14349,10546.52983,28123.99867,1,,,,2,,,,2,,,,2,6780.908727,4612.782754,8949.0347,,,,,2,,0.145,,,0.125,0.169,3.412272577,,,2.738537144,4.204668702,4.889863286,,,4.094743508,5.813096261,0.07660021,73,953,0.059714494,0.093485926,0,0.137096774,0.076557126,0.197636422,0.11627907,0.048528151,0.184029989,,,,,,,0.056420234,0.036473065,0.076367402,,,,,,,0.179,,,0.148,0.215,0.333,,,0.279,0.394,8.4,0.004009556,0.113,,,0.223,,,0.186,0.265,0.80907657,11285,13948,,,0.213057937,,,0.177354578,0.253827885,0.333333333,1,3,0.04092282,0.635504717,254.5,35,13754,,,10.91045899,29,2658,7.30690562,15.66923907,,,,,,,,,,,,,,,,,,,24.81389578,11.89922753,45.63363782,0.145762408,1627,11162,0.125507089,0.166017727,0.001236004,17,13754,,,809.0588235,0.000800524,11,13741,,,1249.181818,0.016374354,225,13741,,,61.07111111,1720,,,,,2638,,,,1649,0.4,,,,,0.39,0.4,,0.36,0.4,0.37,,,,,0.22,0.44,,0.05,0.39,0.947411085,9350,9869,0.934265543,0.960556628,0.655054104,2482,3789,0.596145434,0.713962774,0.03787209,257,6786,,,0.117,317,,0.066957447,0.167042553,0.172535211,0.04725052,0.297819902,0.071770335,0,0.26620926,,,,0.066666667,0,0.232199946,0.064733648,0.029069008,0.100398288,4.433180992,161022,36322,3.735642426,5.130719558,0.206801786,602,2911,0.146645574,0.266957999,14.54122437,20,13754,,,112.7558691,78,69176,89.12883544,140.7244276,243.4436207,152.564821,368.5765673,,,,,,,,,,100.3695424,72.92866317,134.7414259,,,,,,,,,1,,,,,0.174528302,925,5300,0.148151557,0.200905046,0.128326996,0.103232939,0.153421054,0.047169811,0.031863546,0.062476077,0.013018868,0.00443774,0.021599995,0.663151895,4654,7018,0.637249071,0.689054719,0.560490046,0.4598098,0.661170292,0.554495913,0.424585847,0.684405979,,,,,,,0.661160438,0.645439351,0.676881525,0.066,,7018,0.045709667,0.086290333,78.34690843,,,76.61171247,80.0821044,68.09526697,62.82681764,73.3637163,,,,,,,,,,78.75509792,76.81761439,80.69258146,,,,356.6099238,189,38917,302.9135555,410.3062922,673.2398517,474.0229859,927.9724524,,,,,,,,,,329.1626832,266.4864772,391.8388892,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.104,,,0.09,0.12,0.153,,,0.133,0.176,0.084,,,0.072,0.099,,,,,,0.113,1570,,,,0.004009556,54.03678461,13477,,,26.56876479,11,41402,13.26303166,47.53885927,,,,,,,,,,,,,,,,,,,0.308,,,0.295,0.319,0.163621163,1370,8373,0.138599887,0.18864244,0.09567586,281,2937,0.068271604,0.123080115,0.001528273,21,13741,,,654.3333333,0.825,134.475,163,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.033283171,,,,,12445.27,,,,,0.811160594,54278,66914,0.724426549,0.89789464,82648,,,72440.51064,92855.48936,55000,34726.80851,75273.19149,80329,46838.61702,113819.383,70577,52253.08511,88900.91489,52604,10456.25532,94751.74468,90878,83839.87234,97916.12766,,,,,,,,,,,,,,,,0.244773013,,82648,,,7.00280112,5,714,,,,,,,,,,,,,,,,,,,,,,,,,,23.57877817,18,69176,13.73550719,37.75190797,26.02058517,,,,,,,,,,,,,,,,,,,17.34705678,12,69176,8.963477375,30.30181717,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,37.85714286,,1400,,,13,40,,,,,,0.551,,,,,56.29493415,,,,,0.656609195,3656,5568,0.629539674,0.683678717,0.143093923,777,5430,0.115555552,0.170632294,0.894755747,4982,5568,0.886237078,0.903274416,13741,,,,,0.202823666,2787,13741,,,0.182010043,2501,13741,,,0.009970162,137,13741,,,0.143148243,1967,13741,,,0.08616549,1184,13741,,,0.003929845,54,13741,,,0.058001601,797,13741,,,0.620915508,8532,13741,,,0.007373622,97,13155,0.001626057,0.013121188,0.484389782,6656,13741,,,0.141453972,1973,13948,, -02,150,02150,AK,Kodiak Island Borough,2024,1,7250.495089,143,37219,5604.210438,8896.77974,0,26086.106,16147.71076,39875.38403,1,2976.868254,1427.524038,5474.566708,1,,,,2,,,,2,5192.806743,3616.980161,7221.937129,,,,,2,,0.137,,,0.118,0.159,3.215704366,,,2.53778649,3.991435824,4.331548055,,,3.487990118,5.249928201,0.039723662,46,1158,0.028474386,0.050972937,0,,,,0.072847682,0.031395155,0.114300209,,,,,,,0.036585366,0.021226454,0.051944278,,,,,,,0.163,,,0.134,0.197,0.3,,,0.24,0.363,7.6,0.114800812,0.097,,,0.215,,,0.178,0.255,0.992214335,12999,13101,,,0.190360695,,,0.153418675,0.230293005,0,0,1,0,0.662081041,250.3,32,12787,,,15.71946796,39,2481,11.17807839,21.48903018,32.25806452,16.66821266,56.3483469,,,,,,,,,,,,,,,,,,,0.19159137,2078,10846,0.165378604,0.217804136,0.00140768,18,12787,,,710.3888889,0.000550315,7,12720,,,1817.142857,0.00408805,52,12720,,,244.6153846,1481,,,,,2749,,,,1184,0.34,,,,,0.27,0.2,,,0.38,0.37,,,,,0.28,0.37,,0.27,0.39,0.912323373,7877,8634,0.878044481,0.946602264,0.678105365,2806,4138,0.58738999,0.76882074,0.04345646,260,5983,,,0.093,268,,0.053680851,0.132319149,0.263043478,0.11189223,0.414194726,0.228373702,0.102546741,0.354200664,,,,,,,,,,3.468840155,147894,42635,2.947213071,3.990467239,0.130185067,408,3134,0.063541871,0.196828263,13.29475248,17,12787,,,85.40491078,56,65570,64.51395178,110.9053805,285.1587816,178.7074902,431.7338223,,,,,,,,,,75.01875469,48.06593165,111.6219605,,,,,,,,,1,,,,,0.197399527,835,4230,0.141738716,0.253060339,0.093469001,0.054384309,0.132553694,0.096926714,0.055884978,0.13796845,0.021276596,0.006970314,0.035582877,0.608998549,4196,6890,0.552122302,0.665874796,0.474276527,0.311870197,0.636682858,0.458876914,0.346794162,0.570959666,,,,,,,0.656888122,0.57100965,0.742766594,0.032,,6890,0.003980993,0.060019007,78.13710554,,,76.49437394,79.77983714,,,,92.81022968,79.86814019,105.7523192,,,,,,,78.80989871,76.80715713,80.81264028,,,,336.9309467,143,37219,280.0067087,393.8551846,922.5258161,646.1257401,1277.164587,173.8315833,103.0236131,274.7288449,,,,,,,298.378291,228.7649248,382.507503,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.098,,,0.085,0.113,0.138,,,0.12,0.158,0.088,,,0.075,0.102,,,,,,0.097,1280,,,,0.114800812,1560.37263,13592,,,,,,,,,,,,,,,,,,,,,,,,,,0.321,,,0.309,0.333,0.218098627,1716,7868,0.184736925,0.25146033,0.123831022,384,3101,0.088086341,0.159575703,0.001100629,14,12720,,,908.5714286,0.825,139.425,169,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.100976804,,,,,12975.41,,,,,0.808380253,47093,58256,0.646698267,0.970062239,83222,,,72294.85106,94149.14894,63750,2285.829787,125214.1702,79955,47843.17021,112066.8298,,,,90899,73511.59575,108286.4043,100260,74477.3617,126042.6383,,,,,,,,,,,79.44111776,,,,,0.313823268,,83222,,,3.282275711,3,914,,,,,,,,,,,,,,,,,,,,,,,,,,22.9834981,16,65570,12.86368942,37.9077849,24.40140308,,,,,,,,,,,,,,,,,,,21.3512277,14,65570,11.67291486,35.82373208,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.461538462,,1300,,,6,5,,,,,,0.431,,,,,39.76817604,,,,,0.566251416,2500,4415,0.515173009,0.617329822,0.107549121,416,3868,0.063229321,0.151868921,0.901019253,3978,4415,0.869015779,0.933022727,12720,,,,,0.233569182,2971,12720,,,0.139622642,1776,12720,,,0.011949686,152,12720,,,0.12413522,1579,12720,,,0.242688679,3087,12720,,,0.008254717,105,12720,,,0.088522013,1126,12720,,,0.472720126,6013,12720,,,0.072192732,884,12245,0.050473921,0.093911543,0.463836478,5900,12720,,,0.272574613,3571,13101,, -02,158,02158,AK,Kusilvak Census Area,2024,1,24287.30472,158,24554,20027.053,28547.55644,0,25463.92722,20931.93241,29995.92202,,,,,2,,,,2,,,,2,,,,2,,,,2,,0.375,,,0.329,0.422,6.836834264,,,5.687599001,8.142321118,7.173925496,,,5.905524923,8.651609115,0.073809524,124,1680,0.061306709,0.086312338,0,0.073703935,0.060904799,0.086503071,,,,,,,,,,,,,,,,,,,0.428,,,0.375,0.486,0.488,,,0.405,0.574,,,0.259,,,0.408,,,0.349,0.472,0.999760994,8366,8368,,,0.175428485,,,0.139221266,0.216352157,1,2,2,,,3098.1,259,8360,,,79.03097697,199,2518,68.05035643,90.01159751,78.90365449,67.68407992,90.12322905,,,,,,,,,,,,,,,,,,,0.147577093,871,5902,0.124938795,0.17021539,,0,8360,,,,,0,8278,,,,0.001087219,9,8278,,,919.7777778,2200,,,,,2301,,,,,0.06,,,,,0.04,,,,0.2,0.03,,,,,0.01,0.09,,,0.07,0.814165844,3299,4052,0.783262794,0.845068894,0.236842105,486,2052,0.137033143,0.336651067,0.129103815,291,2254,,,0.333,1145,,0.212659575,0.453340426,0.393254951,0.355082826,0.431427075,,,,,,,,,,,,,4.78100797,85188,17818,3.323918695,6.238097244,0.288740569,995,3446,0.225925532,0.351555606,3.588516746,3,8360,,,255.3786108,106,41507,206.7616665,303.9955552,261.6555661,212.6607328,318.5562632,,,,,,,,,,,,,,,,,,,,,1,,,,,0.611428571,1070,1750,0.539982101,0.682875041,0.085337915,0.043660312,0.127015518,0.422857143,0.369011075,0.476703211,0.314285714,0.26741764,0.361153788,0.063386155,152,2398,0.02338211,0.103390201,0.043269231,0.028011709,0.058526752,,,,,,,,,,,,,0,,2398,0,0.359829787,65.18026254,,,62.72596406,67.63456103,64.41681658,61.88671627,66.9469169,,,,,,,,,,,,,,,,781.7475389,158,24554,651.5691968,911.925881,835.8780263,694.7828705,976.9731822,,,,,,,,,,,,,,,,276.0385107,41,14853,198.0900011,374.4774091,288.2909521,205.0030492,394.103222,,,,,,,,,,,,,,,,18.47437426,31,1678,12.55244099,26.22289959,18.71490955,12.62687088,26.71669707,,,,,,,,,,,,,,,,,,,0.233,,,0.204,0.265,0.246,,,0.216,0.281,0.196,,,0.172,0.224,,,,,,0.259,2170,,,,,,7459,,,,,,,,,,,,,,,,,,,,,,,,,,0.398,,,0.382,0.415,0.2254754,747,3313,0.18853923,0.26241157,0.049541284,135,2725,0.032860433,0.066222136,0.000483209,4,8278,,,2069.5,0.7890625,126.25,160,,,0.290909091,160,550,0.20935817,0.372460012,,,,,,,,,,,,,,,,,,,,,0.095319108,,,,,,,,,,0.917719089,45417,49489,0.239598923,1.595839255,41824,,,36669.61702,46978.38298,40953,37190.2766,44715.7234,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.310706771,,41824,,,,,1061,,,26.00780234,15,57675,14.55636954,42.89591482,28.53229856,15.96931091,47.05968742,,,,,,,,,,,,,,,,118.5179626,50,41507,86.44781517,158.5863587,120.4616089,119.0849565,85.82596204,160.9682663,,,,,,,,,,,,,,,,74.68619751,31,41507,50.74564767,106.0110957,79.28956549,53.49633688,113.190785,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.019,,,,,,,,,,0.709227468,1322,1864,0.664895317,0.753559619,0.098319851,158,1607,0.049627698,0.147012004,0.765021459,1426,1864,0.724358807,0.805684112,8278,,,,,0.42099541,3485,8278,,,0.068494806,567,8278,,,0.00398647,33,8278,,,0.921116212,7625,8278,,,0.004952887,41,8278,,,0.000362406,3,8278,,,0.01763711,146,8278,,,0.026938874,223,8278,,,0.00288224,21,7286,0,0.012316163,0.464242571,3843,8278,,,1,8368,8368,, -02,164,02164,AK,Lake and Peninsula Borough,2024,1,20680.18265,33,4331,12960.16037,31310.04506,1,34996.16118,21663.17535,53495.34985,1,,,,2,,,,2,,,,2,,,,2,,,,2,,0.209,,,0.18,0.239,4.575601812,,,3.63341086,5.523049802,5.62575673,,,4.485104819,6.737212229,0.058510638,11,188,0.024959885,0.092061391,1,,,,,,,,,,,,,,,,,,,,,,0.257,,,0.213,0.3,0.396,,,0.32,0.474,3.5,0.416042656,0.143,,,0.258,,,0.212,0.305,0.275067751,406,1476,,,0.199561608,,,0.159256791,0.241901657,0,0,1,0,0.662081041,635.6,9,1416,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.213055304,235,1103,0.18326807,0.242842538,0,0,1416,,,-1416,0,0,1381,,,-1381,0.002172339,3,1381,,,460.3333333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.907834101,591,651,0.851040902,0.964627301,0.470752089,169,359,0.317124271,0.624379907,0.05799373,37,638,,,0.27,107,,0.155617021,0.384382979,0.32631579,0.22738793,0.425243649,,,,,,,,,,,,,4.451316872,108167,24300,2.824430406,6.078203339,0.28627451,73,255,0.186788632,0.385760388,0,0,1416,,,233.5236118,18,7708,138.4008923,369.0679848,370.0478886,215.5665318,592.4825167,,,,,,,,,,,,,,,,,,,,,1,,,,,0.287671233,105,365,,,0.052054795,0,0.14808003,0.090410959,0.049360657,0.131461261,0.150684932,0.099630655,0.201739208,0.372670808,180,483,0.137959609,0.607382006,0.323404255,0.231787976,0.415020534,,,,,,,,,,0.179104478,0.143655242,0.214553714,0.022,,483,0,0.291466324,,,,,,,,,,,,,,,,,,,,,,,,768.1331694,33,4331,521.9092213,1090.30372,1301.102663,864.5732705,1880.45561,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.144,,,0.125,0.163,0.18,,,0.156,0.204,0.12,,,0.103,0.137,,,,,,0.143,140,,,,0.416042656,678.5655714,1631,,,,,,,,,,,,,,,,,,,,,,,,,,0.346,,,0.331,0.36,0.252659575,190,752,0.210957447,0.294361702,0.129032258,48,372,0.08733013,0.170734386,0.002172339,3,1381,,,460.3333333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.365693134,,,,,,,,,,,,,,,63038,,,54597.48936,71478.51064,48021,41062.70213,54979.29787,,,,,,,,,,106750,46860.97872,166639.0213,,,,,,,,,,,,,,,,0.234842476,,63038,,,12.98701299,1,77,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,200,,,0,0,,,,,,,,,,,,,,,,0.671779141,219,326,0.567363941,0.776194341,0.045627376,12,263,0,0.206620733,0.748466258,244,326,0.663632761,0.833299754,1381,,,,,0.29326575,405,1381,,,0.136133237,188,1381,,,0.010861694,15,1381,,,0.606806662,838,1381,,,0.028964519,40,1381,,,0.006517017,9,1381,,,0.031136857,43,1381,,,0.217233889,300,1381,,,0.006543075,6,917,0,0.057676653,0.473569877,654,1381,,,1,1476,1476,, -02,170,02170,AK,Matanuska-Susitna Borough,2024,1,8367.69255,1425,315996,7757.074669,8978.31043,0,17667.70118,14106.8625,21228.53986,,,,,2,,,,2,4658.737068,2845.677632,7195.041555,1,7727.631649,7068.150215,8387.113083,,,,,2,,0.153,,,0.131,0.178,4.140338449,,,3.447561208,4.912540448,5.109140202,,,4.38330747,5.873069591,0.058017312,563,9704,0.053365942,0.062668683,0,0.078899083,0.056265807,0.101532358,0.064864865,0.029374362,0.100355368,,,,0.060822898,0.041009568,0.080636228,0.05444521,0.049224128,0.059666293,,,,0.066591422,0.050174783,0.083008061,0.193,,,0.158,0.227,0.352,,,0.309,0.394,7.8,0.081874021,0.102,,,0.217,,,0.183,0.253,0.597136747,63942,107081,,,0.199178988,,,0.172390377,0.228173729,0.326086957,30,92,0.27291685,0.379570405,365.9,405,110686,,,13.52410011,328,24253,12.06048284,14.98771739,13.75137514,8.899164933,20.29974241,,,,,,,15.95092025,10.41967068,23.37179392,12.61956898,10.94817614,14.29096181,,,,15.57159134,11.17444279,21.12462194,0.140251632,13388,95457,0.125953759,0.154549504,0.000487867,54,110686,,,2049.740741,0.000511802,58,113325,,,1953.87931,0.003300243,374,113325,,,303.0080214,1642,,,,,3420,,,,1581,0.35,,,,,0.44,0.22,0.22,0.21,0.35,0.26,,,,,0.32,0.27,0.16,0.16,0.26,0.94222982,67246,71369,0.936824595,0.947635044,0.593852945,18027,30356,0.565675809,0.622030081,0.046113492,2303,49942,,,0.113,3186,,0.083212766,0.142787234,0.194708995,0.123677054,0.265740935,0.162661738,0.017999368,0.307324108,0.01369863,0,0.156893127,0.12505623,0.07726933,0.172843131,0.112687032,0.091792518,0.133581546,4.231918533,158333,37414,3.958552438,4.505284629,0.168442218,4775,28348,0.144616205,0.192268231,8.221455288,91,110686,,,94.96501386,516,543358,86.77103467,103.1589931,177.6046292,136.1684508,227.6811191,,,,,,,59.54674419,34.68817286,95.34010584,93.52585439,84.34884222,102.7028666,,,,6.6,,,,,1,,,,,0.196152041,6270,31965,0.182541867,0.209762216,0.126090404,0.114416954,0.137763855,0.0519318,0.044252039,0.059611562,0.034725481,0.029424451,0.040026511,0.725446234,33327,45940,0.712275991,0.738616477,0.723237598,0.639392016,0.80708318,0.787821123,0.593823134,0.981819112,,,,0.665225745,0.579767882,0.750683607,0.724749189,0.717263394,0.732234984,0.421,,45940,0.398487471,0.443512529,76.96753545,,,76.39905604,77.53601486,68.74551286,66.3509942,71.14003153,82.20756667,76.91690438,87.49822896,,,,80.58783666,76.77285706,84.40281627,77.44417808,76.83193177,78.0564244,,,,387.6065494,1425,315996,366.9617476,408.2513513,674.2476231,559.1610319,789.3342143,,,,,,,231.6160083,155.1168759,332.6392234,372.4022304,350.1780045,394.6264564,,,,41.52094412,52,125238,31.00982705,54.44919413,,,,,,,,,,,,,37.16885925,25.58533246,52.19889763,,,,3.862966352,38,9837,2.733664902,5.302223129,,,,,,,,,,,,,3.663997829,2.414597657,5.330924474,,,,,,,0.12,,,0.104,0.137,0.163,,,0.142,0.184,0.077,,,0.066,0.089,,,,,,0.102,10850,,,,0.081874021,7286.378539,88995,,,24.60390747,81,329216,19.53905399,30.58041048,56.50249553,29.19566395,98.69848879,,,,,,,,,,24.49027192,18.81899737,31.33369639,,,,0.325,,,0.311,0.338,0.163162245,10856,66535,0.145289905,0.181034586,0.090068674,2728,30288,0.071004844,0.109132504,0.001041253,118,113325,,,960.3813559,0.84,1051.68,1252,,,0.100429185,585,5825,0.073261425,0.127596944,,,,,,,,,,,,,,,,,,,,,0.026837345,,,,,7721.41,,,,,0.745035319,55900,75030,0.689373955,0.800696683,86313,,,80216.14894,92409.85106,68814,60655.87234,76972.12766,81146,55359.78723,106932.2128,115703,83661.46809,147744.5319,74712,61462.6383,87961.3617,87505,84309.42553,90700.57447,,,,,,,,,,,36.17557869,,,,,0.228308598,,86313,,,3.747397641,27,7205,,,6.410102321,48,748818,4.726303431,8.498865703,,,,,,,,,,,,,5.249450501,3.566746929,7.451175962,,,,26.74672062,143,543358,22.25639194,31.2370493,26.31782361,43.49224671,21.71117285,77.81964315,,,,,,,,,,27.56090012,22.50561543,32.61618481,,,,25.94974216,141,543358,21.66643162,30.2330527,51.56263428,30.55928494,81.49119215,,,,,,,,,,25.5496695,20.75312907,30.34620992,,,,14.28918642,107,748818,11.58166635,16.9967065,27.25709733,14.51325637,46.61046655,,,,,,,,,,14.05498037,11.19471341,17.42326282,,,,15.44117647,,13600,,,78,132,,,,,,0.383,,,,,19.86350147,,,,,0.764647493,30043,39290,0.753324344,0.775970642,0.124367732,4770,38354,0.112843088,0.135892376,0.907711886,35664,39290,0.90024941,0.915174363,113325,,,,,0.255574675,28963,113325,,,0.138186631,15660,113325,,,0.011744981,1331,113325,,,0.070143393,7949,113325,,,0.016827708,1907,113325,,,0.004915067,557,113325,,,0.057745423,6544,113325,,,0.773077432,87609,113325,,,0.007103572,722,101639,0.005075603,0.009131542,0.476629164,54014,113325,,,0.500901187,53637,107081,, -02,180,02180,AK,Nome Census Area,2024,1,18440.6166,196,29042,15298.15979,21583.07341,0,22975.59775,18885.22241,27065.97309,,,,,2,,,,2,,,,2,,,,2,,,,2,,0.248,,,0.214,0.286,5.099969423,,,4.145010717,6.130715561,5.84020523,,,4.816373114,6.946729617,0.075872534,100,1318,0.061576796,0.090168273,0,0.068731849,0.053303399,0.084160299,,,,,,,,,,0.104,0.050485467,0.157514533,,,,,,,0.309,,,0.259,0.361,0.408,,,0.343,0.478,5.9,0.15195473,0.16,,,0.3,,,0.249,0.353,0.4640653,4662,10046,,,0.205389581,,,0.167797238,0.248256084,0.7,7,10,0.586889454,0.784252101,2057.8,203,9865,,,53.93087733,142,2633,45.0603511,62.80140356,59.53446732,49.41637302,69.65256163,,,,,,,,,,,,,,,,,,,0.163796666,1189,7259,0.143541347,0.184051985,0.00131779,13,9865,,,758.8461539,0.001016777,10,9835,,,983.5,0.01098119,108,9835,,,91.06481482,5503,,,,,6313,,,,2684,0.38,,,,,0.37,,,,0.41,0.03,,,,,0.02,,,,0.07,0.882278936,4909,5564,0.86244118,0.902116692,0.404673591,1091,2696,0.333916618,0.475430563,0.06863219,284,4138,,,0.247,803,,0.161212766,0.332787234,0.283858998,0.246368179,0.321349818,,,,,,,0.081395349,0,0.416122414,0.012987013,0,0.131477868,5.364693446,142100,26488,4.797557611,5.931829281,0.292362769,980,3352,0.251165023,0.333560515,4.054738976,4,9865,,,225.3203774,112,49707,183.5904595,267.0502953,286.2775812,231.7783372,340.7768252,,,,,,,,,,,,,,,,,,,,,1,,,,,0.515315315,1430,2775,0.481756652,0.548873979,0.102490076,0.079237069,0.125743083,0.306306306,0.279570572,0.333042041,0.257657658,0.231424349,0.283890966,0.266230224,976,3666,0.239654733,0.292805715,0.198657718,0.169156652,0.228158784,,,,,,,,,,0.372262774,0.305568772,0.438956776,0,,3666,0,0.059574468,68.54469348,,,66.45056215,70.63882482,65.41783332,63.04105348,67.79461315,,,,,,,,,,,,,,,,732.1441177,196,29042,627.4299983,836.8582371,896.2389305,758.1455705,1034.33229,,,,,,,,,,,,,,,,175.4859611,26,14816,114.633256,257.1275924,203.1488065,130.1612735,302.2693211,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.163,,,0.141,0.187,0.188,,,0.162,0.216,0.138,,,0.118,0.158,,,,,,0.16,1610,,,,0.15195473,1442.3543,9492,,,,,,,,,,,,,,,,,,,,,,,,,,0.353,,,0.337,0.367,0.203820274,939,4607,0.175224529,0.232416018,0.09600863,267,2781,0.069795864,0.122221396,0.001525165,15,9835,,,655.6666667,0.799675325,123.15,154,,,0.182258065,113,620,0.120295182,0.244220947,,,,,,,,,,,,,,,,,,,,,0.32844115,,,,,14590.085,,,,,1.066292293,68167,63929,0.776055069,1.356529517,64480,,,55929.87234,73030.12766,56047,51074.91489,61019.08511,,,,128958,70250.93617,187665.0638,165078,127204.1277,202951.8723,117188,74177.61702,160198.383,,,,,,,,,,,,,,,,0.331947891,,64480,,,2.111932418,2,947,,,,,,,,,,,,,,,,,,,,,,,,,,83.05609843,42,49707,59.33649441,113.0988326,84.49514153,105.1251605,74.0178145,144.901186,,,,,,,,,,,,,,,,38.2239926,19,49707,23.0133405,59.69149933,48.61317417,28.81124796,76.82977359,,,,,,,,,,,,,,,,14.39470275,10,69470,6.902819485,26.47237087,,,,,,,,,,,,,,,,,,,67.85714286,,1400,,,44,51,,,,,,0.152,,,,,0.000331532,,,,,0.626346016,1745,2786,0.599508249,0.653183783,0.102340341,258,2521,0.076769258,0.127911425,0.827709979,2306,2786,0.814100024,0.841319933,9835,,,,,0.33726487,3317,9835,,,0.087442806,860,9835,,,0.008439248,83,9835,,,0.762480935,7499,9835,,,0.01667514,164,9835,,,0.001931876,19,9835,,,0.021555669,212,9835,,,0.129232334,1271,9835,,,0.002851815,26,9117,0,0.010899523,0.473614642,4658,9835,,,1,10046,10046,, -02,185,02185,AK,North Slope Borough,2024,1,9270.446854,111,29440,6999.307514,11541.58619,0,16597.44902,12753.93555,21235.34725,,,,,2,,,,2,,,,2,,,,2,,,,2,,0.181,,,0.155,0.21,3.994626021,,,3.206993761,4.881364349,5.043093823,,,4.104884922,6.052350654,0.065880039,67,1017,0.05063341,0.081126669,0,0.075197889,0.05642424,0.093971538,,,,,,,,,,,,,,,,,,,0.239,,,0.198,0.282,0.365,,,0.299,0.437,7.8,0.071061645,0.11,,,0.248,,,0.205,0.296,0.067264981,742,11031,,,0.218804138,,,0.1787186,0.262810081,0,0,2,0,0.510593623,792.9,87,10972,,,47.22085588,96,2033,38.24904487,57.66474717,48.54368932,37.84218732,61.33203109,,,,,,,,,,,,,,,,88.37209302,53.20577286,138.0039701,0.132763533,1165,8775,0.111316724,0.154210341,0.000364564,4,10972,,,2743,0.000647848,7,10805,,,1543.571429,0.001018047,11,10805,,,982.2727273,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.9067228,6892,7601,0.88747992,0.925965679,0.556166763,1921,3454,0.478557129,0.633776398,0.050185248,149,2969,,,0.149,406,,0.089425532,0.208574468,0.150135501,0.086884404,0.213386598,,,,,,,,,,,,,4.603228228,171682,37296,2.186303012,7.020153444,0.327309237,815,2490,0.223560697,0.431057777,2.734232592,3,10972,,,126.6280753,63,49752,97.30448986,162.0123157,213.3519531,160.7258892,277.7068931,,,,,,,,,,,,,,,,,,,,,0,,,,,0.444723618,885,1990,0.38692551,0.502521727,0.082578046,0.042429372,0.12272672,0.326633166,0.267987767,0.385278565,0.113065327,0.077404193,0.148726461,0.177864992,1133,6370,0.119976811,0.235753173,0.296354167,0.218681435,0.374026899,,,,,,,0.49009247,0.24146427,0.738720671,0.186347539,0.138415667,0.234279412,0.071,,6370,0.000339557,0.141660443,75.40314113,,,73.3620903,77.44419196,69.26339586,66.60997466,71.91681706,,,,,,,,,,,,,,,,400.1034368,111,29440,323.8979437,476.30893,721.72273,582.5233897,884.1591034,,,,,,,,,,,,,,,,110.9593718,13,11716,59.08119231,189.7439051,137.5171897,68.6480856,246.0562385,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.123,,,0.106,0.141,0.158,,,0.136,0.18,0.107,,,0.091,0.124,,,,,,0.11,1190,,,,0.071061645,670.1113157,9430,,,,,,,,,,,,,,,,,,,,,,,,,,0.323,,,0.31,0.335,0.15376,961,6250,0.125164255,0.182355745,0.082607048,218,2639,0.055202793,0.110011303,0.000555299,6,10805,,,1800.833333,0.775,98.425,127,,,0.19038817,103,541,0.102330246,0.278446095,,,,,,,,,,,,,,,,,,,,,0.120997866,,,,,27662.08,,,,,0.714078208,68333,95694,0.519813122,0.908343294,95795,,,81226.65957,110363.3404,69886,56052.80851,83719.19149,109565,48100.82979,171029.1702,191484,75860.68085,307107.3192,,,,167750,106005.8298,229494.1702,,,,,,,,,,,,,,,,0.203893731,,95795,,,,,735,,,,,,,,,,,,,,,,,,,,,,,,,,30.6993811,14,49752,16.78363732,51.50834505,28.13957228,46.81723793,24.19115001,81.78029288,,,,,,,,,,,,,,,,34.16948062,17,49752,19.90498165,54.70864853,50.42864347,26.85112879,86.23451615,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,40,,1100,,,18,26,,,,,,0.278,,,,,0.591809447,,,,,0.466789668,1012,2168,0.382078826,0.55150051,0.088220031,170,1927,0.028199915,0.148240148,0.643911439,1396,2168,0.577782457,0.710040421,10805,,,,,0.256362795,2770,10805,,,0.080981027,875,10805,,,0.014067561,152,10805,,,0.522628413,5647,10805,,,0.05830634,630,10805,,,0.018787598,203,10805,,,0.041092087,444,10805,,,0.313188339,3384,10805,,,0.014346646,148,10316,0,0.031142905,0.363905599,3932,10805,,,1,11031,11031,, -02,188,02188,AK,Northwest Arctic Borough,2024,1,15896.1703,120,22137,12512.70501,19279.6356,0,17794.43474,13779.86471,21809.00477,,,,,2,,,,2,,,,2,,,,2,,,,2,,0.256,,,0.223,0.294,5.145961587,,,4.150926032,6.202118008,5.845836367,,,4.723328438,7.063182512,0.081395349,91,1118,0.065366613,0.097424085,0,0.088082902,0.070200909,0.105964894,,,,,,,,,,,,,,,,,,,0.313,,,0.265,0.366,0.408,,,0.329,0.492,4.3,0.292195538,0.166,,,0.295,,,0.246,0.348,0.03118183,243,7793,,,0.199373668,,,0.159498106,0.245878898,0,0,3,0,0.420755624,2063.5,156,7560,,,60.80760095,128,2105,50.27322154,71.34198036,62.43213898,51.0213581,73.84291986,,,,,,,,,,,,,,,,100.9174312,50.37761805,180.5691607,0.16955893,938,5532,0.145729143,0.193388717,0.000793651,6,7560,,,1260,0.000404149,3,7423,,,2474.333333,0.010507881,78,7423,,,95.16666667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.860520095,3640,4230,0.841209915,0.879830274,0.379459981,787,2074,0.249827413,0.509092549,0.089702189,250,2787,,,0.244,665,,0.152255319,0.335744681,0.269453642,0.238348623,0.300558662,,,,,,,,,,0.208333333,0,0.568470396,4.864551084,157125,32300,4.02470637,5.704395797,0.284017279,789,2778,0.235112453,0.332922105,6.613756614,5,7560,,,220.0104767,84,38180,175.4889726,272.3879407,240.988051,188.558308,303.4845669,,,,,,,,,,,,,,,,,,,,,1,,,,,0.504178273,905,1795,0.459398051,0.548958495,0.071628428,0.040511053,0.102745802,0.364902507,0.319740861,0.410064153,0.200557103,0.162231245,0.238882961,0.14970297,378,2525,0.115716162,0.183689779,0.141525917,0.114414252,0.168637582,,,,,,,,,,0.122994652,0.037568293,0.208421012,0,,2525,0,0.152510638,70.74433361,,,68.19242829,73.29623893,68.41615284,65.71348661,71.11881907,,,,,,,,,,,,,,,,617.7205523,120,22137,503.603748,731.8373567,710.9594628,569.301984,852.6169415,,,,,,,,,,,,,,,,168.847615,20,11845,103.1365098,260.7714471,193.0894309,116.2524509,301.5330648,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.167,,,0.146,0.19,0.194,,,0.169,0.223,0.14,,,0.121,0.162,,,,,,0.166,1290,,,,0.292195538,2198.187031,7523,,,,,,,,,,,,,,,,,,,,,,,,,,0.351,,,0.336,0.366,0.214034058,729,3406,0.180672355,0.24739576,0.100403407,224,2231,0.070616173,0.130190641,0.001481881,11,7423,,,674.8181818,0.675,89.775,133,,,0.225469729,108,479,0.152778102,0.298161355,,,,,,,,,,,,,,,,,,,,,0.110260249,,,,,22363.64,,,,,0.884353742,65000,73500,0.575040345,1.193667138,69234,,,61751.44681,76716.55319,63179,58486.91489,67871.08511,,,,88125,59292.14894,116957.8511,171071,51027.25532,291114.7447,151250,128925.0638,173574.9362,,,,,,,,,,,,,,,,0.317632955,,69234,,,1.290322581,1,775,,,,,,,,,,,,,,,,,,,,,,,,,,77.35040859,30,38180,51.8027826,111.0880894,78.57517025,87.77475887,57.84411918,127.7076658,,,,,,,,,,,,,,,,41.90675747,16,38180,23.95333278,68.05394866,46.8587877,25.61813528,78.62108352,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,42.72727273,,1100,,,20,27,,,,,,0.15,,,,,,,,,,0.609797297,1083,1776,0.56608843,0.653506165,0.082758621,132,1595,0.04557957,0.119937671,0.846283784,1503,1776,0.82342868,0.869138888,7423,,,,,0.375724101,2789,7423,,,0.089316988,663,7423,,,0.011181463,83,7423,,,0.804122323,5969,7423,,,0.010642597,79,7423,,,0.002424896,18,7423,,,0.028694598,213,7423,,,0.090798868,674,7423,,,0.002906554,20,6881,0,0.012787085,0.465714671,3457,7423,,,1,7793,7793,, -02,195,02195,AK,Petersburg Census Area,2024,1,7345.994782,44,9215,4422.768732,11471.68082,1,,,,2,,,,2,,,,2,,,,2,6535.88974,3658.087873,10779.95618,1,,,,2,,0.142,,,0.121,0.166,3.544152514,,,2.81217214,4.39451086,4.935142786,,,4.005940672,5.967485431,,,,,,0,,,,,,,,,,,,,,,,,,,,,,0.174,,,0.142,0.211,0.307,,,0.242,0.378,8.5,0.006674929,0.107,,,0.203,,,0.164,0.245,0.189228958,643,3398,,,0.201724689,,,0.162670307,0.24441609,1,4,4,,,0,0,3356,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.190079515,502,2641,0.165058239,0.215100792,0.001489869,5,3356,,,671.2,0.000892857,3,3360,,,1120,0.004166667,14,3360,,,240,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.869530942,2206,2537,0.838669851,0.900392034,0.665137615,435,654,0.584135338,0.746139892,0.058091286,84,1446,,,0.095,63,,0.054489362,0.135510638,0.077922078,0,0.176376072,,,,,,,0.037735849,0,0.361717583,0.040247678,0.006538973,0.073956383,4.116668096,143964,34971,3.118264438,5.115071755,0.161716172,98,606,0.097174057,0.226258286,17.8784267,6,3356,,,60.90133983,10,16420,29.20455966,111.9997323,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.128630705,155,1205,0.083779465,0.173481946,0.094402673,0.049166569,0.139638778,0.018257261,0,0.043093913,0.029045643,0.009739578,0.048351708,0.58742515,981,1670,0.507143132,0.667707167,,,,,,,,,,,,,0.603112841,0.5140703,0.692155381,0.016,,1670,0,0.062376342,79.31931404,,,75.98305469,82.65557338,,,,,,,,,,,,,81.16379518,76.83197683,85.49561353,,,,339.1589607,44,9215,238.7992078,467.4859514,,,,,,,,,,,,,336.4723134,221.7373747,489.5495506,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.106,,,0.091,0.122,0.153,,,0.132,0.176,0.078,,,0.066,0.092,,,,,,0.107,360,,,,0.006674929,25.46485426,3815,,,,,,,,,,,,,,,,,,,,,,,,,,0.309,,,0.295,0.323,0.206718346,400,1935,0.175739623,0.23769707,0.145380435,107,736,0.101295328,0.189465541,0.001190476,4,3360,,,840,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.025092847,,,,,12081.49,,,,,1.356932153,57500,42375,0.420802461,2.293061846,76641,,,66594.3617,86687.6383,39306,31779.3617,46832.6383,46216,31615.48936,60816.51064,,,,90329,81597.76596,99060.23404,88333,77354.61702,99311.38298,,,,,,,,,,,,,,,,0.222348351,,76641,,,22.47191011,4,178,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,300,,,0,0,,,,,,0.436,,,,,,,,,,0.733652313,920,1254,0.666405436,0.800899189,0.10594947,130,1227,0.053812156,0.158086784,0.822966507,1032,1254,0.797870239,0.848062775,3360,,,,,0.207142857,696,3360,,,0.218154762,733,3360,,,0.01875,63,3360,,,0.108928571,366,3360,,,0.065476191,220,3360,,,0.009226191,31,3360,,,0.073511905,247,3360,,,0.649702381,2183,3360,,,0.067885927,219,3226,0.026969043,0.108802811,0.482440476,1621,3360,,,1,3398,3398,, -02,198,02198,AK,Prince of Wales-Hyder Census Area,2024,1,14941.23873,140,17104,10925.97625,18956.50121,0,21885.9577,15244.37144,30438.06911,,,,,2,,,,2,,,,2,11785.28116,6443.122876,19773.69923,1,,,,2,,0.198,,,0.172,0.227,4.578748308,,,3.679583729,5.489301701,5.426018862,,,4.344081041,6.476275648,0.061310782,29,473,0.039690824,0.08293074,0,0.069651741,0.03445951,0.104843973,,,,,,,,,,0.064705882,0.027724972,0.101686792,,,,,,,0.25,,,0.209,0.294,0.391,,,0.315,0.466,6.7,0.088410731,0.153,,,0.256,,,0.213,0.304,0.319659308,1839,5753,,,0.177256637,,,0.141169436,0.215472895,0.285714286,2,7,0.086061846,0.500925625,139.6,8,5729,,,22.46181492,25,1113,14.53610229,33.15806981,31.30755065,18.23780197,50.12642139,,,,,,,,,,,,,,,,,,,0.19477155,827,4246,0.168558784,0.220984316,0.001745505,10,5729,,,572.9,0.000530974,3,5650,,,1883.333333,0.008495575,48,5650,,,117.7083333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.924596483,3838,4151,0.908817168,0.940375798,0.567587752,760,1339,0.49423217,0.640943334,0.054957297,148,2693,,,0.218,259,,0.131021277,0.304978723,0.188081937,0.124682878,0.251480996,,,,,,,0.053191489,0,0.33921935,0.162921348,0.081776019,0.244066678,4.611192488,122773,26625,3.944477829,5.277907148,0.224276527,279,1244,0.162847236,0.285705818,8.727526619,5,5729,,,177.7404343,55,30944,133.8984196,231.3536064,238.2843527,160.7694521,340.1657299,,,,,,,,,,143.6162574,87.72454104,221.8036615,,,,,,,,,,,,,,0.197452229,465,2355,0.15983469,0.235069769,0.075608714,0.048324777,0.102892651,0.059447983,0.04013586,0.078760107,0.078556263,0.051136733,0.105975794,0.557121097,1463,2626,0.509104181,0.605138013,0.607361963,0.54404765,0.670676277,,,,,,,,,,0.566165414,0.505812545,0.626518282,0.139,,2626,0.090528198,0.187471802,72.01500403,,,69.10336215,74.92664591,66.1628599,61.85506283,70.47065698,,,,,,,,,,79.09341906,71.00334693,87.1834912,,,,589.1666831,140,17104,480.7327722,697.6005941,860.8701506,664.4014077,1097.249675,,,,,,,,,,440.4441839,311.6845184,604.5440541,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.139,,,0.121,0.158,0.18,,,0.156,0.205,0.109,,,0.093,0.126,,,,,,0.153,900,,,,0.088410731,491.4752531,5559,,,,,,,,,,,,,,,,,,,,,,,,,,0.335,,,0.323,0.346,0.217765043,684,3141,0.184403341,0.251126745,0.131962297,154,1167,0.092643148,0.171281445,0.001238938,7,5650,,,807.1428571,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.330767793,,,,,15970.653,,,,,0.834587764,48346,57928,0.737958442,0.931217086,58381,,,51229.68085,65532.31915,58456,48464.17021,68447.82979,189286,135645.1489,242926.8511,,,,57176,39513.3617,74838.6383,61910,55468.80851,68351.19149,,,,,,,,,,,,,,,,0.239975334,,58381,,,3.25732899,1,307,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,25.21085442,11,43632,12.58516769,45.10918251,,,,,,,,,,,,,,,,,,,0,,600,,,0,0,,,,,,0.285,,,,,0.024468953,,,,,0.72622108,1695,2334,0.695400597,0.757041562,0.081524147,184,2257,0.051246753,0.111801541,0.733076264,1711,2334,0.703511856,0.762640672,5650,,,,,0.215221239,1216,5650,,,0.210265487,1188,5650,,,0.006371681,36,5650,,,0.428318584,2420,5650,,,0.014336283,81,5650,,,0.005486726,31,5650,,,0.045840708,259,5650,,,0.434159292,2453,5650,,,0.003083621,17,5513,0,0.01484797,0.450088496,2543,5650,,,1,5753,5753,, -02,220,02220,AK,Sitka Borough,2024,1,7358.030326,98,23697,5425.230711,9755.680712,0,20507.09388,12526.2657,31671.54328,1,,,,2,,,,2,,,,2,5292.71205,3516.96872,7649.442544,,,,,2,,0.134,,,0.115,0.156,3.479364016,,,2.753730567,4.296099652,4.919966795,,,4.03113157,5.875317518,0.043936731,25,569,0.027096148,0.060777314,0,,,,,,,,,,,,,0.045845272,0.023902068,0.067788476,,,,,,,0.164,,,0.134,0.199,0.317,,,0.255,0.383,8.4,0.06247632,0.088,,,0.193,,,0.158,0.233,0.995388981,8419,8458,,,0.208490097,,,0.171400475,0.249905887,0,0,1,0,0.662081041,178.4,15,8407,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.149093546,1028,6895,0.127646738,0.170540355,0.002141073,18,8407,,,467.0555556,0.001312336,11,8382,,,762,0.028990694,243,8382,,,34.49382716,2204,,,,,5653,,,,1023,0.41,,,,,0.31,0.27,,,0.43,0.48,,,,,0.45,0.46,,,0.49,0.952231922,5781,6071,0.937320101,0.967143744,0.746898263,1806,2418,0.657125599,0.836670927,0.027599912,125,4529,,,0.098,155,,0.057489362,0.138510638,0.383647799,0.213704109,0.553591488,,,,,,,0.188481675,0.061889005,0.315074346,0.054658385,0,0.113997965,3.493467313,147061,42096,2.767126939,4.219807687,0.217699115,369,1695,0.1502005,0.28519773,11.89484953,10,8407,,,86.77094815,37,42641,61.09475521,119.602322,245.9822893,137.67442,405.7103784,,,,,,,,,,76.27474162,46.59059374,117.8001522,,,,,,,,,1,,,,,0.135854342,485,3570,0.110441896,0.161266787,0.095898161,0.070269112,0.12152721,0.020728291,0.011183024,0.030273559,0.028011205,0.016487651,0.039534758,0.62847297,2918,4643,0.579849554,0.677096386,0.620209059,0.444221309,0.796196809,0.641277641,0.507320148,0.775235134,,,,0.542105263,0.392355533,0.691854993,0.599526867,0.546147366,0.652906368,0.015,,4643,0,0.031765741,80.09636882,,,77.94871271,82.24402493,,,,,,,,,,,,,81.34834074,79.18387697,83.51280452,,,,325.9979174,98,23697,262.1408228,400.7067869,832.9108887,553.4632367,1203.788139,,,,,,,,,,277.8495828,209.3143306,361.6594236,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.103,,,0.089,0.119,0.146,,,0.126,0.167,0.081,,,0.069,0.095,,,,,,0.088,750,,,,0.06247632,554.8521988,8881,,,,,,,,,,,,,,,,,,,,,,,,,,0.289,,,0.276,0.301,0.16570771,864,5214,0.139494944,0.191920476,0.098863636,174,1760,0.069076402,0.12865087,0.001670246,14,8382,,,598.7142857,0.919117647,156.25,170,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.178103778,,,,,10840.49,,,,,0.829233562,52993,63906,0.700816317,0.957650806,90345,,,80298.3617,100391.6383,49375,27923.42553,70826.57447,89375,52892.78723,125857.2128,,,,101131,80559.93617,121702.0638,96639,89205.29787,104072.7021,,,,,,,,,,,,,,,,0.334229897,,90345,,,12.04819277,5,415,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,43.75,,800,,,15,20,,,,,,0.552,,,,,55.29095472,,,,,0.6449841,2231,3459,0.614613983,0.675354216,0.119083509,395,3317,0.086668275,0.151498743,0.872795606,3019,3459,0.840039111,0.9055521,8382,,,,,0.194225722,1628,8382,,,0.181340969,1520,8382,,,0.009902171,83,8382,,,0.15473634,1297,8382,,,0.084108805,705,8382,,,0.003579098,30,8382,,,0.077547125,650,8382,,,0.603197328,5056,8382,,,0.008928571,72,8064,0.00050664,0.017350503,0.484251969,4059,8382,,,0.093402696,790,8458,, -02,230,02230,AK,Skagway Municipality,2024,0,,,,,,2,,,,2,,,,2,,,,2,,,,2,,,,2,,,,2,,0.136,,,0.113,0.162,3.523140154,,,2.737540251,4.443331806,4.693477723,,,3.679820347,5.844639348,,,,,,0,,,,,,,,,,,,,,,,,,,,,,0.171,,,0.134,0.211,0.329,,,0.254,0.411,8.1,0.000599158,0.13,,,0.21,,,0.166,0.258,1,1240,1240,,,0.212721581,,,0.170000519,0.258903327,,,,,,0,0,1132,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.159663866,152,952,0.1334511,0.185876632,0,0,1132,,,-1132,0,0,1081,,,-1081,0.001850139,2,1081,,,540.5,,,,,,,,,,,0.3,,,,,0.38,,,,0.3,0.33,,,,,0.33,,,,0.32,0.926804124,899,970,0.859186566,0.994421682,0.461883408,206,446,0.215065674,0.708701143,0.067114094,50,745,,,0.097,15,,0.054106383,0.139893617,,,,,,,,,,,,,0.063583815,0,0.185693582,3.841547136,131500,34231,2.640322693,5.042771578,0.156097561,32,205,0.064762465,0.247432657,0,0,1132,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,,,,,0.073170732,30,410,0.029591991,0.116749472,0.029268293,0,0.11205426,0.029268293,0,0.070302562,0.034146342,0,0.085010902,0.362451108,278,767,0.296283146,0.42861907,,,,,,,,,,,,,0.395522388,0.31311155,0.477933226,0.008,,767,0,0.15353739,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.105,,,0.089,0.122,0.151,,,0.13,0.175,0.076,,,0.063,0.09,,,,,,0.13,170,,,,0.000599158,0.579984895,968,,,,,,,,,,,,,,,,,,,,,,,,,,0.302,,,0.287,0.318,0.169405815,134,791,0.139618581,0.19919305,0.108433735,18,166,0.072689054,0.144178416,0.005550416,6,1081,,,180.1666667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13361.75,,,,,1.101539112,62552,56786,0.473722788,1.729355436,73603,,,63587.34043,83618.65957,,,,,,,,,,,,,79271,66207.51064,92334.48936,,,,,,,,,,,,,,,,0.225058761,,73603,,,12.82051282,1,78,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,100,,,0,0,,,,,,0.365,,,,,23.37960899,,,,,0.656097561,269,410,0.546192347,0.766002775,0.034574468,13,376,0,0.138180415,0.890243902,365,410,0.825552439,0.954935366,1081,,,,,0.145235893,157,1081,,,0.198889917,215,1081,,,0.019426457,21,1081,,,0.061979649,67,1081,,,0.028677151,31,1081,,,0.003700278,4,1081,,,0.068455134,74,1081,,,0.775208141,838,1081,,,0.010620915,13,1224,0,0.050090529,0.474560592,513,1081,,,1,1240,1240,, -02,240,02240,AK,Southeast Fairbanks Census Area,2024,1,9875.756572,113,19747,7151.427836,12600.08531,0,,,,2,,,,2,,,,2,,,,2,8696.182427,5867.277766,12414.34114,,,,,2,,0.156,,,0.133,0.18,3.644946395,,,2.952424053,4.470255231,4.571265396,,,3.795550033,5.50048628,0.043539326,31,712,0.028549711,0.058528941,0,,,,,,,,,,,,,0.040856031,0.023742308,0.057969754,,,,,,,0.194,,,0.159,0.232,0.34,,,0.283,0.4,7.3,0.098880085,0.121,,,0.234,,,0.194,0.277,0.271151586,1846,6808,,,0.186561972,,,0.153533231,0.224854084,0.666666667,2,3,0.391498614,0.824051859,172.2,12,6970,,,26.43171806,36,1362,18.51245038,36.59263913,,,,,,,,,,,,,28.80184332,18.63903439,42.51720242,,,,,,,0.175824176,1024,5824,0.150802899,0.200845452,0.000573888,4,6970,,,1742.5,0.000569719,4,7021,,,1755.25,0.002136448,15,7021,,,468.0666667,1497,,,,,,,,,1857,0.24,,,,,0.27,,,,0.25,0.18,,,,,0.27,,,,0.16,0.937362153,4250,4534,0.911575768,0.963148537,0.590909091,1040,1760,0.485447875,0.696370307,0.05196802,169,3252,,,0.145,258,,0.084234043,0.205765957,0.273858921,0.112011535,0.435706307,,,,,,,0.418848168,0.083559032,0.754137304,0.123400366,0.043575061,0.203225671,4.953592019,121150,24457,4.072694348,5.834489689,0.156606852,288,1839,0.084612134,0.228601569,7.173601148,5,6970,,,103.9681164,36,34626,72.81799058,143.9356971,,,,,,,,,,,,,95.41226048,61.13243562,141.9658806,,,,,,,,,0,,,,,0.205689278,470,2285,0.15710922,0.254269336,0.058746164,0.025287814,0.092204514,0.065645514,0.032001654,0.099289375,0.105032823,0.070150373,0.139915272,0.646402878,1797,2780,0.586979547,0.705826208,,,,,,,,,,,,,0.620498615,0.548228179,0.692769051,0.126,,2780,0.07757215,0.17442785,75.38307316,,,73.22850915,77.53763717,,,,,,,,,,,,,75.81184611,73.39812055,78.22557166,,,,459.2701798,113,19747,370.5750343,547.9653252,,,,,,,,,,,,,422.5290124,331.1952969,531.2667969,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.116,,,0.1,0.133,0.155,,,0.135,0.178,0.085,,,0.072,0.099,,,,,,0.121,830,,,,0.098880085,695.0281156,7029,,,,,,,,,,,,,,,,,,,,,,,,,,0.318,,,0.304,0.331,0.201496259,808,4010,0.169326047,0.233666472,0.121500264,230,1893,0.085755583,0.157244945,0.000854579,6,7021,,,1170.166667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.307109954,,,,,9051.3675,,,,,0.836450406,58365,69777,0.628138246,1.044762567,74732,,,64077.70213,85386.29787,28917,15050.44681,42783.55319,,,,,,,66948,47294.38298,86601.61702,87031,70762.40426,103299.5957,,,,,,,,,,,,,,,,0.252649467,,74732,,,,,512,,,,,,,,,,,,,,,,,,,,,,,,,,32.33313697,10,34626,15.50499595,59.46179008,28.88003235,,,,,,,,,,,,,,,,,,,37.54404205,13,34626,19.99062118,64.20145532,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,700,,,0,0,,,,,,0.175,,,,,1.18111271,,,,,0.750114207,1642,2189,0.688981012,0.811247403,0.0915,183,2000,0.036829644,0.146170357,0.752398355,1647,2189,0.693478275,0.811318436,7021,,,,,0.258367754,1814,7021,,,0.153254522,1076,7021,,,0.018231021,128,7021,,,0.110240707,774,7021,,,0.029910269,210,7021,,,0.012391397,87,7021,,,0.072639225,510,7021,,,0.717276741,5036,7021,,,0.022014052,141,6405,0.003578201,0.040449903,0.430565447,3023,7021,,,1,6808,6808,, -02,275,02275,AK,Wrangell City,2024,1,7753.82458,35,6442,3870.681293,13873.734,1,,,,2,,,,2,,,,2,,,,2,10715.73504,3932.485903,23323.64391,1,,,,2,,0.174,,,0.15,0.202,4.039846062,,,3.241946827,4.989141988,5.549188228,,,4.522566657,6.719596966,,,,,,0,,,,,,,,,,,,,,,,,,,,,,0.219,,,0.18,0.261,0.336,,,0.262,0.418,7.6,0.05033756,0.129,,,0.244,,,0.201,0.296,0.999059709,2125,2127,,,0.175762623,,,0.139864988,0.218842213,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.209646302,326,1555,0.181050558,0.238242047,0.001459854,3,2055,,,685,0.000483092,1,2070,,,2070,0.027536232,57,2070,,,36.31578947,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.8710712,1358,1559,0.834859202,0.907283197,0.589805825,243,412,0.49454192,0.68506973,0.050790068,45,886,,,0.194,74,,0.124893617,0.263106383,0.406976744,0.227970207,0.585983281,0.735294118,0.464421885,1,,,,0.535714286,0.310318412,0.76111016,0.044444444,0,0.186721269,4.244471146,130700,30793,3.076955568,5.411986724,0.241525424,114,472,0.125913416,0.357137432,0,0,2055,,,124.0592176,15,12091,69.43500234,204.6168131,,,,,,,,,,,,,124.5640259,59.73329218,229.0776787,,,,,,,,,1,,,,,0.090909091,90,990,0.049062154,0.132756028,0.052525253,0.011856387,0.093194118,0.012121212,0,0.034073639,0.03030303,0.004946445,0.055659615,0.674185464,538,798,0.604084672,0.744286255,0.577464789,0.399393187,0.75553639,,,,,,,,,,0.716831683,0.592087924,0.841575442,0.024,,798,0,0.107148544,80.32860285,,,75.95919972,84.69800597,,,,,,,,,,,,,,,,,,,345.9661769,35,6442,225.9965931,506.920608,,,,,,,,,,,,,383.0919115,209.4399128,642.7631325,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.126,,,0.11,0.145,0.171,,,0.148,0.195,0.092,,,0.078,0.108,,,,,,0.129,280,,,,0.05033756,119.2496794,2369,,,,,,,,,,,,,,,,,,,,,,,,,,0.312,,,0.299,0.323,0.223376623,258,1155,0.188823432,0.257929815,0.170616114,72,422,0.122956539,0.218275688,0,0,2070,,,-2070,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.022189571,,,,,15407.44,,,,,0.855431627,53917,63029,0.671001595,1.039861659,67761,,,58429.25532,77092.74468,53667,44206.57447,63127.42553,,,,,,,,,,64808,54190.6383,75425.3617,,,,,,,,,,,,,,,,0.226192057,,67761,,,,,135,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,200,,,0,0,,,,,,0.323,,,,,,,,,,0.651939655,605,928,0.589931504,0.713947806,0.054626533,49,897,0.009672499,0.099580567,0.810344828,752,928,0.773074327,0.847615328,2070,,,,,0.187439614,388,2070,,,0.292753623,606,2070,,,0.005797101,12,2070,,,0.169565217,351,2070,,,0.035265701,73,2070,,,0.000966184,2,2070,,,0.040096618,83,2070,,,0.628502416,1301,2070,,,0.000500751,1,1997,0,0.023677722,0.469565217,972,2070,,,1,2127,2127,, -02,282,02282,AK,Yakutat Borough,2024,0,,,,,,2,,,,2,,,,2,,,,2,,,,2,,,,2,,,,2,,0.175,,,0.152,0.2,4.055071534,,,3.239495073,4.982604822,5.080561016,,,4.04108542,6.186773147,,,,,,0,,,,,,,,,,,,,,,,,,,,,,0.215,,,0.18,0.253,0.357,,,0.278,0.44,8.6,0.001119083,0.104,,,0.238,,,0.193,0.285,0.632930514,419,662,,,0.188901027,,,0.150441102,0.232232427,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.230909091,127,550,0.198738878,0.263079304,0,0,704,,,-704,0,0,700,,,-700,0.001428571,1,700,,,700,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.9395466,373,397,0.872768466,1,0.651515152,86,132,0.330893695,0.972136608,0.051282051,16,312,,,0.148,20,,0.084851064,0.211148936,0.068965517,0,0.493017496,,,,,,,,,,0.216216216,0,0.600105233,2.265749573,127317,56192,1.817369201,2.714129945,0.00952381,1,105,0,0.125180819,0,0,704,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,,,,0.131818182,29,220,0.050361726,0.213274638,0.054545455,0,0.21132052,0.081818182,0.006027933,0.15760843,0.063636364,0,0.130944884,0.440251572,140,318,0.282226704,0.598276441,,,,,,,,,,,,,,,,0,,318,0,0.388425532,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.123,,,0.108,0.14,0.163,,,0.142,0.186,0.1,,,0.086,0.117,,,,,,0.104,60,,,,0.001119083,0.740833079,662,,,,,,,,,,,,,,,,,,,,,,,,,,0.342,,,0.33,0.353,0.240384615,100,416,0.199873977,0.280895254,0.195804196,28,143,0.137421217,0.254187175,0,0,700,,,-700,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.258494185,,,,,,,,,,0.515821608,47143,91394,0.116241032,0.915402183,78552,,,68026.38298,89077.61702,57308,53138.97872,61477.02128,125667,54251.51064,197082.4894,,,,91750,26838.85106,156661.1489,106250,62900.04255,149599.9575,,,,,,,,,,,,,,,,0.263392403,,78552,,,,,56,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,,0,0,,,,,,0.209,,,,,,,,,,0.558441558,129,231,0.455268388,0.661614729,0.044776119,9,201,0,0.245099819,0.826839827,191,231,0.690491351,0.963188303,700,,,,,0.195714286,137,700,,,0.204285714,143,700,,,0.021428571,15,700,,,0.352857143,247,700,,,0.09,63,700,,,0.011428571,8,700,,,0.07,49,700,,,0.322857143,226,700,,,0.015355086,8,521,0,0.10875151,0.417142857,292,700,,,1,662,662,, -02,290,02290,AK,Yukon-Koyukuk Census Area,2024,1,18062.32719,123,14765,13693.42978,22431.22461,0,24222.23664,18392.95981,31312.8578,,,,,2,,,,2,,,,2,,,,2,,,,2,,0.251,,,0.217,0.285,5.195214736,,,4.257438598,6.227682736,5.952206736,,,4.886648429,7.085492121,0.051546392,25,485,0.031867874,0.07122491,0,0.051873199,0.02853883,0.075207568,,,,,,,,,,,,,,,,,,,0.298,,,0.25,0.343,0.374,,,0.303,0.447,2.5,0.432785969,0.181,,,0.295,,,0.248,0.345,0.194647202,1040,5343,,,0.182306035,,,0.145833337,0.221544113,0.166666667,1,6,0.011498194,0.426636125,1023.7,54,5275,,,26.11625948,31,1187,17.74473124,37.06994566,25.52719201,16.18204999,38.30332175,,,,,,,,,,,,,,,,,,,0.217367559,796,3662,0.189963303,0.244771814,0.000189574,1,5275,,,5275,0.000386175,2,5179,,,2589.5,0.001930875,10,5179,,,517.9,273,,,,,,,,,438,0.35,,,,,0.44,,,,0.3,0.38,,,,,0.47,,,,0.33,0.870182556,3003,3451,0.849130164,0.891234948,0.469494048,631,1344,0.358971017,0.580017079,0.0787135,186,2363,,,0.259,362,,0.145808511,0.372191489,0.285444234,0.233264324,0.337624145,,,,,,,,,,0.179723502,0,0.396231312,5.575362319,96175,17250,4.769954651,6.380769986,0.380330124,553,1454,0.296225045,0.464435203,0,0,5275,,,262.6170359,69,26274,204.3317293,332.3586667,340.9916709,260.8316092,438.0180665,,,,,,,,,,,,,,,,,,,,,1,,,,,0.501347709,930,1855,0.439923708,0.56277171,0.07995678,0.050588759,0.109324801,0.145552561,0.122075765,0.169029357,0.363881402,0.311151745,0.416611058,0.263181214,594,2257,0.228920667,0.297441762,0.235015773,0.195487986,0.27454356,,,,,,,,,,0.275766017,0.152456938,0.399075095,0.081,,2257,0.008065667,0.153934333,70.22507692,,,67.38863787,73.06151597,66.44563719,62.96975077,69.92152361,,,,,,,,,,,,,,,,742.2628923,123,14765,601.4385807,883.0872039,956.6001513,765.1566445,1181.393405,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.165,,,0.143,0.187,0.199,,,0.173,0.224,0.133,,,0.113,0.153,,,,,,0.181,980,,,,0.432785969,2418.407992,5588,,,,,,,,,,,,,,,,,,,,,,,,,,0.358,,,0.344,0.371,0.270645953,662,2446,0.232518293,0.308773612,0.112676056,144,1278,0.079314354,0.146037759,0.002896312,15,5179,,,345.2666667,0.671086667,503.315,750,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.276959978,,,,,,,,,,0.93585128,57188,61108,0.593507077,1.278195482,47798,,,41356.80851,54239.19149,40897,36689.85106,45104.14894,,,,,,,70179,29888.78723,110469.2128,64250,39297.82979,89202.17021,,,,,,,,,,,,,,,,0.300744801,,47798,,,,,431,,,29.46454879,11,37333,14.7085966,52.72021673,43.00066456,21.46577682,76.9400669,,,,,,,,,,,,,,,,41.58555193,10,26274,19.94188857,76.47731063,38.06043998,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,26.78595345,10,37333,12.84490584,49.26032208,,,,,,,,,,,,,,,,,,,0,,600,,,0,0,,,,,,0.019,,,,,0.307878938,,,,,0.723772859,1504,2078,0.681397142,0.766148575,0.082130966,148,1802,0.042524646,0.121737285,0.47786333,993,2078,0.424656938,0.531069722,5179,,,,,0.27457038,1422,5179,,,0.175323422,908,5179,,,0.007916586,41,5179,,,0.683529639,3540,5179,,,0.006564974,34,5179,,,0.001930875,10,5179,,,0.027804596,144,5179,,,0.219926627,1139,5179,,,0.00080564,4,4965,0,0.014913389,0.459741263,2381,5179,,,1,5343,5343,, -04,000,04000,AZ,Arizona,2024,,8865.491611,104430,20282384,8785.896248,8945.086974,0,22975.71771,22347.61826,23603.81716,,3325.336271,3076.839355,3573.833188,,12715.38487,12280.43213,13150.33762,,8285.826082,8156.908275,8414.743889,,7856.852506,7749.316329,7964.388682,,13961.14343,11791.55876,16130.72809,,,0.157,,,0.147,0.167,3.533106735,,,3.311137611,3.75507586,4.929905135,,,4.674641714,5.185168556,0.075365935,42164,559457,0.074674192,0.076057679,0,0.077993301,0.074804592,0.081182011,0.096504637,0.092373427,0.100635846,0.127992087,0.124232227,0.131751947,0.072179618,0.071140443,0.073218793,0.068943123,0.067899356,0.069986889,0.082467533,0.06872876,0.096206305,0.08341195,0.078606725,0.088217175,0.135,,,0.125,0.146,0.318,,,0.304,0.332,6.9,0.086799741,0.103,,,0.221,,,0.209,0.233,0.854700873,6112395,7151502,,,0.188073081,,,0.176359514,0.200375375,0.211564235,1105,5223,0.204789087,0.218410615,570.3,41498,7276316,,,18.65680809,30375,1628092,18.4469937,18.86662248,30.84524485,29.60885764,32.08163207,2.814483612,2.349919947,3.279047277,20.83732332,19.82635412,21.84829252,26.79188094,26.41060706,27.17315482,9.547426965,9.310989366,9.783864565,18.14516129,13.63120362,23.67549946,13.78120744,12.80076421,14.76165068,0.131320436,758331,5774661,0.127745968,0.134894904,0.000664485,4835,7276316,,,1504.92575,0.000662572,4876,7359197,,,1509.269278,0.001820171,13395,7359197,,,549.3988055,1962,,,,,4000,1425,2746,2077,1810,0.41,,,,,0.21,0.37,0.37,0.31,0.43,0.43,,,,,0.34,0.45,0.31,0.32,0.44,0.886977529,4327527,4878959,0.885464707,0.888490352,0.655867825,1231281,1877331,0.650161709,0.661573941,0.038208225,138129,3615164,,,0.16,250329,,0.151659575,0.168340426,0.384777803,0.369308816,0.400246789,0.097279369,0.081971598,0.112587139,0.255077343,0.232089643,0.278065042,0.232204144,0.225086305,0.239321983,0.095044942,0.089505006,0.100584878,4.401060459,140275,31873,4.350275654,4.451845263,0.25237777,401105,1589304,0.246907401,0.25784814,5.593489892,4070,7276316,,,95.87342231,34672,36164350,94.86425109,96.88259352,196.4145519,189.1157569,203.713347,30.34680915,27.27937546,33.41424283,109.1024272,104.0153046,114.1895499,68.02557783,66.51793951,69.53321615,105.8403092,104.3984528,107.2821655,62.71512747,45.38724872,84.47686513,4.8,,,,,0.8,,,,,0.171818433,454190,2643430,0.169307847,0.174329019,0.128533232,0.126079205,0.130987259,0.04407342,0.042533496,0.045613343,0.01171773,0.011039992,0.012395469,0.704569909,2285920,3244419,0.700832442,0.708307376,0.70996944,0.695713935,0.724224945,0.61034773,0.596570489,0.62412497,0.68176027,0.67046078,0.693059761,0.71541428,0.708920475,0.721908086,0.708997444,0.705017752,0.712977136,0.36,,3244419,0.355704024,0.364295976,77.49487695,,,77.42403573,77.56571816,66.50905015,66.13130372,66.88679658,85.85714577,85.33165275,86.38263879,73.42543776,73.05061828,73.80025724,77.51917802,77.37031166,77.66804437,78.47869338,78.38678708,78.57059968,73.31764139,71.23749867,75.39778411,410.8816618,104430,20282384,408.2835141,413.4798096,936.3037524,914.6573997,957.9501051,176.1419496,166.9699174,185.3139819,569.0118968,553.9520451,584.0717484,399.7531851,394.4918946,405.0144755,377.3878322,374.1151307,380.6605337,626.773749,549.8393358,703.7081621,55.29669913,4052,7327743,53.59406804,56.99933023,88.00823321,78.16335867,97.85310776,24.16119621,18.09839393,31.60343952,108.8062516,98.15654278,119.4559604,55.02651738,52.47946455,57.57357022,44.62370995,42.16071114,47.08670876,162.2418879,101.6761274,245.6361681,5.484344561,3108,566704,5.291529791,5.677159331,7.218818227,6.230617322,8.207019131,2.885345482,2.185332491,3.738299742,10.23902131,9.095513434,11.38252918,5.938744655,5.629634973,6.247854337,3.801659297,3.550904695,4.0524139,,,,13.298735,11.2633598,15.3341102,0.110055141,,,0.101472598,0.119267239,0.159420365,,,0.149026523,0.170393971,0.097,,,0.09,0.104,296.4,18230,6151427,,,0.103,751690,,,,0.086799741,554825.4209,6392017,,,32.70321291,7187,21976434,31.94712434,33.45930147,41.20095502,36.89063221,45.51127782,5.746045676,4.175085585,7.713798121,47.98689022,43.70283403,52.27094641,29.47942494,28.2100784,30.74877148,33.27186903,32.23135599,34.31238208,,,,0.335947652,,,0.322062853,0.350121904,0.149643042,628134,4197549,0.144877084,0.154408999,0.085677883,142227,1660020,0.079720437,0.09163533,0.001271199,9355,7359197,,,786.6592197,0.764556664,68050.895,89007,,,0.083939932,32219,383834,0.078875663,0.089004202,,,,,,,,,,,,,,,,,,,,,0.234063913,,,,,-2727.969,,,,,0.843511782,48577,57589,0.833171236,0.853852328,74355,,,73265.97872,75444.02128,46994,45666.68085,48321.31915,95989,92843.46809,99134.53192,58184,56326.46809,60041.53192,62953,61974.78723,63931.21277,78872,78227.40426,79516.59575,,,,,,0.325324708,321034,986811,,,49.80807447,,,,,0.306562927,,,,,5.041310741,,,,,6.221520669,3106,49923486,6.002718363,6.440322974,17.78907629,15.92803542,19.65011716,2.154679665,1.509111148,2.982984883,22.67693473,20.68522636,24.66864311,7.477606411,7.0504072,7.904805622,3.366111147,3.148121039,3.584101255,,,,18.61389349,7015,36164350,18.16705684,19.06073013,19.39755588,30.4927557,27.61858592,33.36692547,7.321935948,5.90974729,8.969866202,12.56204008,10.81752805,14.3065521,9.630759097,9.032300702,10.22921749,22.34962228,21.67118192,23.02806265,14.15922305,6.789897818,26.03931532,16.72088673,6047,36164350,16.29943738,17.14233608,17.36807325,15.19767135,19.53847514,3.874060742,2.856426568,5.136442497,27.29104292,24.74676195,29.83532389,12.04646788,11.41202736,12.6809084,18.91320307,18.30369566,19.52271048,17.50189604,9.043485078,30.57229019,14.16367439,7071,49923486,13.83353937,14.4938094,49.11001403,46.01783778,52.20219029,5.865516866,4.761910116,7.148186316,16.11974879,14.44050902,17.79898855,12.46479505,11.91323639,13.01635372,12.81400608,12.38868685,13.23932531,10.69621675,5.129251689,19.67072343,14.50052438,,762800,,,5951,5110,0.670767586,3387326,5049925,,,,,,,,183.848876,,,,,0.662746209,1815352,2739136,0.65934389,0.666148528,0.134215007,356649,2657296,0.131973065,0.136456948,0.891992219,2443288,2739136,0.889698979,0.89428546,7359197,,,,,0.215921656,1589010,7359197,,,0.187844679,1382386,7359197,,,0.047562254,350020,7359197,,,0.051596934,379712,7359197,,,0.039316246,289336,7359197,,,0.002916758,21465,7359197,,,0.324562585,2388520,7359197,,,0.529302314,3895240,7359197,,,0.042060988,284738,6769646,0.041108656,0.04301332,0.500076707,3680163,7359197,,,0.1071484,766272,7151502,, -04,001,04001,AZ,Apache County,2024,1,23967.68634,2007,195817,22583.80372,25351.56896,0,27410.64702,25703.89642,29117.39762,,,,,2,,,,2,10159.45254,6993.299664,14267.64861,,13627.31953,11054.05274,16200.58632,,,,,2,,0.281,,,0.244,0.32,5.32152214,,,4.463846266,6.219003951,6.482781533,,,5.581504247,7.43232881,0.081098974,490,6042,0.074215499,0.087982449,0,0.079948142,0.072134208,0.087762076,,,,,,,0.082262211,0.0549573,0.109567122,0.082313682,0.064347352,0.100280012,,,,,,,0.273,,,0.23,0.318,0.377,,,0.327,0.427,3,0.353413591,0.196,,,0.271,,,0.231,0.316,0.17524727,11570,66021,,,0.140730951,,,0.11673516,0.167327092,0.238410596,36,151,0.197174692,0.281423296,784.8,515,65623,,,26.02768023,504,19364,23.75532479,28.30003568,26.09267171,23.52594654,28.65939687,,,,,,,34.50862716,25.26465222,46.0296727,24.21840599,18.24461778,31.52358431,,,,,,,0.164542885,7102,43162,0.145479055,0.183606715,0.000411441,27,65623,,,2430.481482,0.000748869,49,65432,,,1335.346939,0.001146228,75,65432,,,872.4266667,3397,,,,,4081,4036,,,1818,0.24,,,,,0.23,0.23,,0.4,0.26,0.36,,,,,0.42,0.41,0.29,0.27,0.25,0.840099479,35469,42220,0.829228127,0.850970831,0.542358024,8662,15971,0.505578087,0.579137961,0.076787243,1435,18688,,,0.342,5761,,0.259787234,0.424212766,0.473390225,0.443894485,0.502885965,0.213017752,0,0.609054388,,,,0.364281813,0.249763176,0.47880045,0.153880866,0.072117219,0.235644514,7.778872861,86820,11161,7.129016233,8.428729489,0.406940786,7106,17462,0.362089591,0.45179198,3.04771193,20,65623,,,228.452222,806,352809,212.6803249,244.2241192,264.989179,245.1011372,284.8772207,,,,,,,81.25908819,48.92327929,126.896132,145.6995143,117.5983123,178.4917484,,,,2.5,,,,,0,,,,,0.279469891,6010,21505,0.26060992,0.298329862,0.063889599,0.050910247,0.07686895,0.133457336,0.118448433,0.148466238,0.13368984,0.121722156,0.145657523,0.803629724,14524,18073,0.783871661,0.823387787,0.816712462,0.797192892,0.836232031,,,,,,,0.603100775,0.472423935,0.733777616,0.742218449,0.685172625,0.799264274,0.453,,18073,0.419068692,0.486931308,66.09483352,,,65.31307016,66.87659688,64.01048024,63.11061914,64.91034134,,,,,,,75.02249595,72.01253803,78.03245388,72.89380089,71.09877238,74.68882941,,,,941.6850072,2007,195817,898.3756307,984.9943837,1056.427929,1002.165098,1110.69076,,,,,,,498.1812491,378.289909,644.0147888,635.1932752,556.4532624,713.9332881,,,,74.41369212,62,83318,57.05255105,95.39499493,81.43582538,60.63432095,107.0730709,,,,,,,,,,,,,,,,8.574992205,55,6414,6.459857651,11.16153102,8.062890546,5.760247217,10.97936847,,,,,,,,,,,,,,,,,,,0.18,,,0.158,0.205,0.227,,,0.2,0.255,0.154,,,0.136,0.175,230.9,124,53694,,,0.196,13010,,,,0.353413591,25275.43317,71518,,,26.74499128,56,209385,20.20287899,34.7305958,28.22392733,20.42579615,38.01744489,,,,,,,,,,,,,,,,0.38,,,0.367,0.392,0.201425536,5878,29182,0.17521277,0.227638302,0.088413403,1314,14862,0.063392127,0.11343468,0.001039247,68,65432,,,962.2352941,0.790075239,577.545,731,,,0.189017205,802,4243,0.146341459,0.23169295,,,,,,,,,,,,,,,,,,,,,0.599869866,,,,,-4544.9307,,,,,0.850444435,39993,47026,0.783502278,0.917386592,40632,,,35994.7234,45269.2766,29663,27762.57447,31563.42553,59615,37841.7234,81388.2766,,,,54405,35908.31915,72901.68085,61653,53169.59575,70136.40426,,,,,,0.518518519,4270,8235,,,67.24136244,,,,,0.490007876,,40632,,,3.551977267,15,4223,,,17.29008132,86,497395,13.82983328,21.35310978,21.78240754,17.24533718,27.14737899,,,,,,,,,,,,,,,,43.66258589,143,352809,36.35157972,50.97359206,40.53184584,43.46859352,35.04396084,51.8932262,,,,,,,,,,42.60067071,26.37048661,65.11965046,,,,21.25796111,75,352809,16.72073493,26.64703833,19.42735916,14.41936043,25.61255111,,,,,,,,,,29.76656745,17.92141809,46.48418232,,,,63.32994903,315,497395,56.33620179,70.32369628,74.99765632,66.08475063,83.91056202,,,,,,,46.42238178,25.98225468,76.56665905,29.85503721,19.67465764,43.43751169,,,,5.913978495,,9300,,,43,12,0.675345622,35172,52080,,,0.252,,,,,5.191565897,,,,,0.800464975,15838,19786,0.781803606,0.819126345,0.066108114,1152,17426,0.051574086,0.080642143,0.473365006,9366,19786,0.451216068,0.495513943,65432,,,,,0.260484167,17044,65432,,,0.167196479,10940,65432,,,0.006311896,413,65432,,,0.73357073,47999,65432,,,0.005180951,339,65432,,,0.000565473,37,65432,,,0.072258222,4728,65432,,,0.189066512,12371,65432,,,0.047657473,2953,61963,0.042038328,0.053276618,0.504753026,33027,65432,,,1,66021,66021,, -04,003,04003,AZ,Cochise County,2024,1,8989.754195,2254,341268,8366.670046,9612.838344,0,,,,2,,,,2,9372.088721,6323.308904,13379.23941,,8308.113606,7323.221192,9293.00602,,9221.055767,8356.119742,10085.99179,,,,,2,,0.17,,,0.145,0.195,3.98179503,,,3.294016827,4.714456688,4.80900534,,,4.047553447,5.625588805,0.080627822,750,9302,0.075094881,0.086160763,0,,,,0.10982659,0.063233225,0.156419955,0.139534884,0.100389473,0.178680295,0.075879513,0.068009273,0.083749752,0.081867058,0.073466742,0.090267374,,,,0.071729958,0.038877388,0.104582528,0.165,,,0.136,0.199,0.343,,,0.294,0.395,6.9,0.155534328,0.111,,,0.252,,,0.212,0.295,0.653375529,81964,125447,,,0.175802766,,,0.146679106,0.207681902,0.247933884,30,121,0.201597127,0.296216598,319.7,403,126050,,,25.63803299,659,25704,23.68054969,27.59551629,,,,,,,9.90990991,4.946991322,17.73156623,33.09101923,29.98842131,36.19361715,19.73011654,16.94651501,22.51371808,,,,,,,0.119402659,10938,91606,0.103913298,0.134892021,0.000579135,73,126050,,,1726.712329,0.000572961,72,125663,,,1745.319444,0.001376698,173,125663,,,726.3757225,1641,,,,,,,949,1603,1660,0.35,,,,,0.33,0.4,0.43,0.27,0.36,0.29,,,,,0.27,0.41,0.27,0.21,0.3,0.889129474,78431,88211,0.877684428,0.90057452,0.62891928,18855,29980,0.588683855,0.669154704,0.044101682,2153,48819,,,0.246,6311,,0.185234043,0.306765957,0.387878788,0.038191702,0.737565874,0.034920635,0,0.312422265,0.133495146,0.026548604,0.240441687,0.286632981,0.245383552,0.32788241,0.132451,0.095824926,0.169077074,4.812893082,116318,24168,4.420810659,5.204975505,0.278044902,7344,26413,0.239301759,0.316788046,7.933359778,100,126050,,,96.0459499,606,630948,88.39881388,103.6930859,,,,,,,40.61573454,19.47682343,74.6937819,64.42325635,53.93713829,74.90937442,121.5246131,109.902217,133.1470092,,,,5.1,,,,,1,,,,,0.123735638,6300,50915,0.107841456,0.139629819,0.097947389,0.083904192,0.111990587,0.022488461,0.017784764,0.027192158,0.00883826,0.004592648,0.013083871,0.768495348,35931,46755,0.74812508,0.788865617,,,,0.610948192,0.471042532,0.750853851,0.799062988,0.675888244,0.922237732,0.770579609,0.737459065,0.803700152,0.75812692,0.728365817,0.787888022,0.239,,46755,0.214523665,0.263476335,76.70546184,,,76.18214317,77.22878051,,,,87.49386628,83.16380733,91.82392523,75.98907003,72.92247336,79.05566671,77.78329214,76.81866524,78.74791905,76.43431824,75.74921077,77.1194257,,,,448.6982906,2254,341268,428.3990821,468.9974991,,,,,,,430.1489461,331.2671031,549.2906011,386.4601949,352.2446611,420.6757288,477.1903728,449.3113512,505.0693944,,,,55.35131563,67,121045,42.89650934,70.29421424,,,,,,,,,,71.88832233,52.02593532,96.8330984,37.43526818,22.18651245,59.16386304,,,,5.697710556,55,9653,4.292295346,7.416353463,,,,,,,,,,7.57069695,5.242927719,10.57929016,,,,,,,,,,0.118,,,0.101,0.134,0.155,,,0.136,0.176,0.097,,,0.084,0.112,200.3,215,107344,,,0.111,13820,,,,0.155534328,20428.81182,131346,,,29.51858353,112,379422,24.05166535,34.98550171,,,,,,,,,,28.78143819,20.46641611,39.34517348,32.30971027,25.03958167,41.03218994,,,,0.347,,,0.334,0.359,0.134975143,8824,65375,0.115911314,0.154038973,0.084077867,2315,27534,0.06024808,0.107907655,0.001066344,134,125663,,,937.7835821,0.821963549,1195.135,1454,,,0.067468374,432,6403,0.034999034,0.099937715,,,,,,,,,,,,,,,,,,,,,0.23635799,,,,,-7992.390971,,,,,0.789723491,43926,55622,0.722061457,0.857385524,55254,,,50859.78723,59648.21277,59375,18255.51064,100494.4894,,,,78625,50337.85106,106912.1489,49725,45121.08511,54328.91489,60758,57455.19149,64060.80851,,,,,,0.455682888,8231,18063,,,56.40799021,,,,,0.296648207,,55254,,,5.604253485,39,6959,,,3.170487293,28,883145,2.106765781,4.582236886,,,,,,,,,,4.473572371,2.445743644,7.50589429,2.877816149,1.573328868,4.828486499,,,,24.11860382,167,630948,20.23620075,28.0010069,26.46810831,,,,,,,,,,12.13245955,7.851488121,17.90990363,30.41179452,24.34729631,36.47629273,,,,20.60391665,130,630948,17.0620339,24.14579939,,,,,,,,,,9.774563033,6.125666613,14.7988059,28.06639873,22.75995867,34.23862629,,,,14.4936562,128,883145,11.98275836,17.00455403,,,,,,,,,,11.18393093,7.790017671,15.55414057,17.47245519,13.95637663,21.60496142,,,,22.23140496,,12100,,,140,129,0.640105904,60442,94425,,,0.604,,,,,43.77111732,,,,,0.702133655,34882,49680,0.688291295,0.715976015,0.101819095,4864,47771,0.08815742,0.115480771,0.850241546,42240,49680,0.838716965,0.861766127,125663,,,,,0.207801819,26113,125663,,,0.243890405,30648,125663,,,0.037433453,4704,125663,,,0.018732642,2354,125663,,,0.022027168,2768,125663,,,0.004416575,555,125663,,,0.35865768,45070,125663,,,0.545816987,68589,125663,,,0.037415911,4444,118773,0.032441013,0.042390809,0.491393648,61750,125663,,,0.367677186,46124,125447,, -04,005,04005,AZ,Coconino County,2024,1,10456.76219,1911,410272,9824.676306,11088.84807,0,21997.43789,20270.54587,23724.32992,,,,,2,,,,2,7347.128057,5908.672469,8785.583646,,5599.392492,4966.687621,6232.097364,,,,,2,,0.155,,,0.134,0.178,3.615590508,,,2.994415527,4.314046301,5.769565705,,,5.00472628,6.629311716,0.079524864,790,9934,0.074204376,0.084845352,0,0.06916192,0.060971804,0.077352037,0.12437811,0.078754638,0.170001581,0.151162791,0.075454838,0.226870743,0.091330245,0.076804641,0.105855848,0.081833867,0.073398952,0.090268783,,,,0.075697211,0.042973219,0.108421204,0.162,,,0.134,0.195,0.264,,,0.225,0.309,6.8,0.133173115,0.126,,,0.185,,,0.158,0.217,0.82794743,120136,145101,,,0.202183044,,,0.172655964,0.236172667,0.223175966,52,233,0.190335129,0.257405154,638.4,926,145052,,,11.16620541,581,52032,10.25823098,12.07417984,27.99602637,24.87949417,31.11255857,,,,,,,15.14481539,12.60875394,17.68087683,3.660215989,2.946373987,4.374057992,,,,12.01923077,7.341658405,18.56272711,0.143089936,15191,106164,0.126409085,0.159770787,0.000820395,119,145052,,,1218.92437,0.000832986,120,144060,,,1200.5,0.002478134,357,144060,,,403.5294118,1500,,,,,2841,,,1188,1161,0.33,,,,,0.2,0.32,0.31,0.29,0.36,0.4,,,,,0.29,0.29,0.29,0.38,0.42,0.914510972,79225,86631,0.906858018,0.922163926,0.726342148,26396,36341,0.686340297,0.766343999,0.043334999,3209,74051,,,0.198,5447,,0.142,0.254,0.293963255,0.24963239,0.338294119,,,,0.329608939,0.030989316,0.628228561,0.118038948,0.067101746,0.168976149,0.057805136,0.018905108,0.096705164,5.149675608,135730,26357,4.768937544,5.530413672,0.266902296,7627,28576,0.233653634,0.300150957,9.651711111,140,145052,,,118.6613101,848,714639,110.6746117,126.6480085,224.4352526,202.8156865,246.0548187,,,,,,,69.68776012,54.52638039,87.76020059,85.85739372,76.60786138,95.10692607,,,,4.8,,,,,1,,,,,0.231663776,11355,49015,0.213691345,0.249636208,0.148595213,0.130738801,0.166451626,0.065898194,0.05630219,0.075494199,0.041925941,0.03496466,0.048887222,0.674519912,44749,66342,0.655231524,0.6938083,0.736951518,0.693549782,0.780353255,0.5502998,0.454274987,0.646324613,0.473096447,0.301838624,0.644354269,0.624901884,0.569438656,0.680365112,0.688321949,0.661437042,0.715206857,0.162,,66342,0.143695993,0.180304007,76.71235403,,,76.14148724,77.28322081,67.36425967,66.30853564,68.41998371,84.80556128,78.73018061,90.88094195,85.21912055,70.87643855,99.56180255,78.99785981,77.35182567,80.64389395,81.39206807,80.65834577,82.12579037,,,,446.4695598,1911,410272,425.5672932,467.3718264,882.558888,822.7640013,942.3537747,,,,,,,327.4667439,274.961847,379.9716407,281.8585876,260.9667198,302.7504554,,,,48.66500066,74,152060,38.2124926,61.09445186,80.08658009,56.38834322,110.3888012,,,,,,,,,,32.13465953,19.89186073,49.1212406,,,,5.393214356,55,10198,4.062907136,7.020009804,5.723204995,3.5867021,8.665001141,,,,,,,,,,,,,,,,,,,0.116,,,0.102,0.132,0.174,,,0.154,0.197,0.095,,,0.083,0.11,143.2,179,124972,,,0.126,18240,,,,0.133173115,17901.26323,134421,,,24.82546768,107,431009,20.12152933,29.52940603,35.24531644,25.06286544,48.18150784,,,,,,,17.45311459,8.712531919,31.22844305,21.5332538,15.98239602,28.38891066,,,,0.299,,,0.288,0.31,0.160712498,12839,79888,0.140457178,0.180967817,0.094658796,2630,27784,0.070829009,0.118488584,0.001311953,189,144060,,,762.2222222,0.804427733,1096.435,1363,,,0.046475428,627,13491,0.032590414,0.060360442,,,,,,,,,,,,,,,,,,,,,0.220645115,,,,,-4757.914075,,,,,0.85630383,45635,53293,0.789403126,0.923204534,64016,,,58614.97872,69417.02128,50906,44053.74468,57758.25532,71089,27955.89362,114222.1064,,,,61073,51786.53192,70359.46809,74890,71257.14894,78522.85106,,,,,,0.343739185,4966,14447,,,59.37102551,,,,,0.311015996,,64016,,,7.97189569,59,7401,,,6.3339245,63,994644,4.867161497,8.103840901,14.41068104,10.14644935,19.86322556,,,,,,,,,,3.524876351,2.122205824,5.504531056,,,,29.40721212,212,714639,25.24774462,33.56667961,29.66532753,39.22298797,30.63347902,49.47446229,,,,,,,18.52888376,10.59085803,30.08974639,27.08375683,21.6996067,32.46790696,,,,16.93162562,121,714639,13.91471778,19.94853346,12.46862514,7.90403877,18.70905975,,,,,,,11.61462669,6.001447094,20.28841542,21.26980751,16.91650912,26.40143938,,,,21.01254318,209,994644,18.16374589,23.86134047,52.19003404,43.35331082,61.02675726,,,,,,,12.66045367,7.50338722,20.00897504,9.275990398,6.884818865,12.22923693,,,,18.39694657,,13100,,,103,138,0.665141612,73272,110160,,,0.455,,,,,85.68154165,,,,,0.590560268,30705,51993,0.576691268,0.604429268,0.162267938,8085,49825,0.144483596,0.180052279,0.822206836,42749,51993,0.806799137,0.837614534,144060,,,,,0.193377759,27858,144060,,,0.145994724,21032,144060,,,0.012231015,1762,144060,,,0.271060669,39049,144060,,,0.021858948,3149,144060,,,0.001818687,262,144060,,,0.150478967,21678,144060,,,0.53765792,77455,144060,,,0.021227289,2922,137653,0.017123553,0.025331025,0.504019159,72609,144060,,,0.324043253,47019,145101,, -04,007,04007,AZ,Gila County,2024,1,17835.33368,1453,141735,16303.28436,19367.383,0,41029.83696,36173.33878,45886.33515,,,,,2,,,,2,9927.986573,7708.154817,12147.81833,,14029.01226,12001.13991,16056.88461,,,,,2,,0.186,,,0.162,0.215,4.468376071,,,3.711415595,5.308427456,5.917687499,,,5.060453513,6.832724287,0.098129496,341,3475,0.088238261,0.108020732,0,0.095482546,0.077026143,0.113938949,,,,,,,0.104247104,0.082760308,0.125733901,0.101597444,0.08662903,0.116565858,,,,,,,0.204,,,0.171,0.24,0.366,,,0.317,0.417,6.7,0.110152652,0.14,,,0.255,,,0.218,0.297,0.86908695,46298,53272,,,0.17452482,,,0.145554455,0.204513929,0.152542373,18,118,0.109222413,0.201312386,307.9,165,53589,,,36.40854903,339,9311,32.53276478,40.28433328,49.34210526,40.51368246,58.17052807,,,,,,,35.5450237,28.58239658,43.6908688,29.29591334,24.03223148,34.55959521,,,,,,,0.160086904,5600,34981,0.138640096,0.181533713,0.000447853,24,53589,,,2232.875,0.000611995,33,53922,,,1634,0.000871629,47,53922,,,1147.276596,1876,,,,,6425,,,1793,1407,0.33,,,,,0.15,0.28,,0.38,0.34,0.35,,,,,0.2,,,0.35,0.36,0.871449096,34573,39673,0.856425085,0.886473107,0.484350394,4921,10160,0.417755372,0.550945416,0.041695247,851,20410,,,0.271,2715,,0.184021277,0.357978723,0.597650514,0.527050007,0.668251021,,,,,,,0.121113521,0.057174812,0.185052231,0.203595724,0.119267761,0.287923687,4.632673792,104893,22642,3.926354614,5.338992971,0.29320031,3027,10324,0.2227851,0.36361552,8.957062084,48,53589,,,166.3572224,448,269300,150.9523281,181.7621168,216.0945414,175.0372723,263.8884209,,,,,,,111.7493677,84.63787983,144.7842677,171.8140803,151.9013044,191.7268563,,,,4.6,,,,,1,,,,,0.15627081,3520,22525,0.133138952,0.179402669,0.097483564,0.078120958,0.116846169,0.039289678,0.030042983,0.048536373,0.028412875,0.018665982,0.038159768,0.733318867,13518,18434,0.691832202,0.774805533,0.728150134,0.652882942,0.803417327,,,,,,,0.752138903,0.673830892,0.830446913,0.735050598,0.687976048,0.782125148,0.238,,18434,0.200833934,0.275166066,70.7179949,,,69.73471034,71.70127946,56.75978709,54.91072179,58.60885238,,,,,,,76.56984371,74.58078364,78.55890378,73.44235955,72.05279147,74.83192762,,,,711.68996,1453,141735,667.8542105,755.5257095,1777.455988,1599.109771,1955.802205,,,,,,,475.6934043,397.689566,553.6972427,557.6134381,506.8893308,608.3375453,,,,90.73429973,42,46289,65.39330237,122.6464144,127.8291601,74.4651964,204.6668683,,,,,,,,,,117.4147409,73.583193,177.7673288,,,,8.587257618,31,3610,5.834624925,12.18892673,,,,,,,,,,,,,,,,,,,,,,0.132,,,0.115,0.15,0.19,,,0.167,0.215,0.098,,,0.086,0.112,121,56,46275,,,0.14,7430,,,,0.110152652,5903.851712,53597,,,33.35186215,54,161910,25.05494532,43.51694546,,,,,,,,,,45.32504533,24.77962405,76.04772443,31.09577499,21.12807044,44.13797045,,,,0.371,,,0.359,0.381,0.178140191,4544,25508,0.151927425,0.204352957,0.112925852,1127,9980,0.080755639,0.145096065,0.000834539,45,53922,,,1198.266667,0.738615242,397.375,538,,,0.144729942,276,1907,0.077227666,0.212232219,,,,,,,,,,,,,,,,,,,,,0.368552834,,,,,-345.6703333,,,,,0.730382898,41374,56647,0.670139253,0.790626542,51928,,,46006.29787,57849.70213,41538,33814.76596,49261.23404,80714,17506.68085,143921.3192,15046,6426.765957,23665.23404,56367,46574.14894,66159.85106,57139,51629.55319,62648.44681,,,,,,0.417842876,3138,7510,,,65.01233376,,,,,0.363407025,,51928,,,4.044117647,11,2720,,,8.244351954,31,376015,5.601637163,11.70219951,21.20060666,11.28843016,36.25368306,,,,,,,,,,,,,,,,46.23230611,119,269300,37.02238459,55.44222764,44.18863721,46.98302336,28.69845125,72.56146903,,,,,,,,,,54.60258056,41.56601421,70.43335067,,,,35.27664315,95,269300,28.5409109,43.12386692,,,,,,,,,,25.4866979,13.57059323,43.58302962,43.85464289,34.37503945,55.14062933,,,,30.05199261,113,376015,24.51096744,35.59301778,73.38671537,53.52877377,98.19719907,,,,,,,15.510653,7.742862092,27.7528427,24.40789446,18.4863009,31.62325833,,,,33.82978723,,4700,,,89,70,0.653484526,27662,42330,,,0.43,,,,,37.16074662,,,,,0.756273664,17178,22714,0.737962388,0.77458494,0.138999537,3001,21590,0.116369881,0.161629193,0.760412081,17272,22714,0.734536386,0.786287776,53922,,,,,0.189310486,10208,53922,,,0.307499722,16581,53922,,,0.006435221,347,53922,,,0.177979303,9597,53922,,,0.009346834,504,53922,,,0.001780349,96,53922,,,0.193056637,10410,53922,,,0.617836876,33315,53922,,,0.005716643,291,50904,0.001966764,0.009466522,0.501427989,27038,53922,,,0.443572609,23630,53272,, -04,009,04009,AZ,Graham County,2024,1,9980.753285,598,110267,8896.280443,11065.22613,0,20075.2504,15521.69668,24628.80413,,,,,2,,,,2,10445.29862,8454.818309,12435.77893,,7731.511845,6430.796942,9032.226748,,,,,2,,0.198,,,0.171,0.227,4.290049388,,,3.454819842,5.215691563,5.346720696,,,4.347297593,6.419819056,0.084201633,299,3551,0.075068056,0.093335211,0,0.061946903,0.042069696,0.08182411,,,,,,,0.103035879,0.084963177,0.12110858,0.080858086,0.068326324,0.093389848,,,,,,,0.193,,,0.16,0.228,0.363,,,0.296,0.436,6.6,0.157442695,0.123,,,0.256,,,0.212,0.302,0.564710767,21760,38533,,,0.186132948,,,0.148153704,0.228031492,0.236363636,13,55,0.167061629,0.310523499,373.9,146,39050,,,30.16759777,297,9845,26.73661469,33.59858084,47.61904762,36.67246916,60.80846072,,,,,,,36.59250586,30.17755674,43.00745497,21.28112364,17.11002341,25.45222388,,,,,,,0.13461474,4013,29811,0.11555091,0.153678569,0.000409731,16,39050,,,2440.625,0.00054153,21,38779,,,1846.619048,0.00054153,21,38779,,,1846.619048,1313,,,,,7816,,,541,858,0.33,,,,,0.22,,,0.4,0.33,0.24,,,,,0.08,,,0.25,0.25,0.846235941,20616,24362,0.821390838,0.871081045,0.481163915,5275,10963,0.429641855,0.532685975,0.035933718,579,16113,,,0.166,1698,,0.104042553,0.227957447,0.490034364,0.390938502,0.589130226,,,,,,,0.204357419,0.138362309,0.270352528,0.123253389,0.070139899,0.176366879,3.999637616,110370,27595,3.267283197,4.731992034,0.246262006,2487,10099,0.190512578,0.302011435,4.09731114,16,39050,,,95.51693349,184,192636,81.71539404,109.3184729,137.0801919,93.76274979,193.51633,,,,,,,85.78068219,64.62174926,111.6553488,96.74035906,78.26872747,118.2600723,,,,4.5,,,,,0,,,,,0.156828194,1780,11350,0.128886513,0.184769875,0.094214123,0.071214622,0.117213624,0.054185022,0.038637704,0.06973234,0.022907489,0.012732511,0.033082467,0.83042412,11513,13864,0.803127192,0.857721048,0.774420947,0.600251471,0.948590423,,,,,,,0.891685579,0.844112383,0.939258775,0.810736507,0.781259683,0.840213331,0.212,,13864,0.171664961,0.252335039,75.02293001,,,74.10670074,75.93915928,71.26122071,66.87944198,75.64299944,,,,,,,74.92714759,73.10478017,76.74951502,76.36273931,75.24578477,77.47969386,,,,501.9345365,598,110267,461.0133141,542.855759,861.0641974,693.9090174,1028.219377,,,,,,,508.6294006,431.828359,585.4304422,434.2674374,384.0069931,484.5278818,,,,62.80862861,29,46172,42.06392432,90.20366767,,,,,,,,,,79.6812749,42.42692302,136.2574068,51.10336818,25.51061727,91.43804187,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.131,,,0.114,0.149,0.178,,,0.153,0.202,0.109,,,0.093,0.127,97.4,31,31816,,,0.123,4680,,,,0.157442695,5860.017101,37220,,,29.03550872,34,117098,20.10793385,40.57421313,,,,,,,,,,33.14804427,17.64993751,56.68416523,33.51599551,20.47244078,51.76273675,,,,0.346,,,0.335,0.357,0.155350978,3105,19987,0.131521191,0.179180765,0.096086788,992,10324,0.068682533,0.123491043,0.001031486,40,38779,,,969.475,0.880848861,425.45,483,,,0.124024285,286,2306,0.053217537,0.194831032,,,,,,,,,,,,,,,,,,,,,0.25830651,,,,,-2315.6937,,,,,0.696848078,40282,57806,0.59474012,0.798956036,63797,,,57675.12766,69918.87234,38333,16130.78723,60535.21277,88870,34047.19149,143692.8085,,,,58192,52432.34043,63951.65957,70301,65912.74468,74689.25532,,,,,,0.26071741,1788,6858,,,55.46819995,,,,,0.256924307,,63797,,,2.690238278,7,2602,,,3.732722162,10,267901,1.789985366,6.864608957,,,,,,,,,,,,,,,,,,,15.88978449,30,192636,10.64163805,22.82038107,15.57341307,,,,,,,,,,,,,14.91643399,8.154953266,25.02724163,,,,14.01607176,27,192636,9.236679609,20.39264854,,,,,,,,,,20.27543397,10.79581467,34.67160959,11.20151526,5.591756059,20.04260498,,,,20.52997189,55,267901,15.46598444,26.72258035,60.86427267,37.17747896,93.99993275,,,,,,,15.77998197,8.627062981,26.47612841,15.37627953,9.518159375,23.50427661,,,,49.375,,4800,,,218,19,0.544777475,14995,27525,,,0.547,,,,,24.6944208,,,,,0.734231985,8824,12018,0.701006606,0.767457365,0.105185185,1207,11475,0.080415495,0.129954875,0.823431519,9896,12018,0.792941927,0.853921112,38779,,,,,0.268289538,10404,38779,,,0.145336393,5636,38779,,,0.013048299,506,38779,,,0.130225122,5050,38779,,,0.008226102,319,38779,,,0.002269269,88,38779,,,0.3352072,12999,38779,,,0.51398953,19932,38779,,,0.014948224,537,35924,0.008225227,0.021671222,0.472033833,18305,38779,,,0.524277892,20202,38533,, -04,011,04011,AZ,Greenlee County,2024,1,8066.29564,122,26584,6140.48374,9992.10754,0,,,,2,,,,2,,,,2,6455.309572,4323.222133,9270.901345,,9243.740565,6236.712942,13196.01443,,,,,2,,0.161,,,0.138,0.185,3.509221394,,,2.790069083,4.315301161,4.674250013,,,3.694086432,5.730323389,0.102844639,94,914,0.083151832,0.122537446,0,,,,,,,,,,0.130331754,0.098209813,0.162453694,0.077647059,0.052203803,0.103090314,,,,,,,0.149,,,0.122,0.179,0.311,,,0.243,0.385,7.4,0.14048794,0.096,,,0.231,,,0.188,0.275,0.710655652,6796,9563,,,0.203612148,,,0.16371842,0.248465447,0.4,2,5,0.149190828,0.619170557,404.1,38,9404,,,27.68334143,57,2059,20.96709245,35.8669798,,,,,,,,,,24.89626556,16.79740583,35.54096713,35.36067893,22.88356697,52.19933762,,,,,,,0.104867035,836,7972,0.085803205,0.123930864,0.000638026,6,9404,,,1567.333333,0.000215008,2,9302,,,4651,,0,9302,,,,1607,,,,,,,,1544,,0.33,,,,,,,,0.29,0.35,0.24,,,,,,,,0.3,0.22,0.859412368,5031,5854,0.821892963,0.896931772,0.531417625,1387,2610,0.420268707,0.642566542,0.02853546,136,4766,,,0.092,226,,0.057446809,0.126553192,0.564356436,0.149918969,0.978793902,,,,,,,0.115064345,0.0194557,0.21067299,0.116504854,0.037067844,0.195941864,3.760212787,112389,29889,1.847522431,5.672903143,0.227887215,590,2589,0.130682012,0.325092418,4.253509145,4,9404,,,86.89938747,41,47181,62.36050077,117.8888315,,,,,,,,,,75.3813409,43.91240896,120.6928291,102.7749229,64.40849702,155.6024684,,,,4.5,,,,,1,,,,,0.095599393,315,3295,0.057658805,0.133539981,0.037851038,0.006620353,0.069081723,0.053110774,0.024352266,0.081869281,0.003034901,0,0.011566241,0.822717365,3397,4129,0.760757425,0.884677305,,,,,,,,,,0.810578985,0.7936747,0.82748327,0.714968153,0.621652328,0.808283978,0.152,,4129,0.089087556,0.214912444,77.99388541,,,75.82804969,80.15972113,,,,,,,,,,78.30202238,75.45012793,81.15391684,77.65792462,74.15950569,81.15634355,,,,420.8369532,122,26584,345.04005,496.6338564,,,,,,,,,,384.4627661,281.4750652,512.8194527,453.5065497,347.7008712,581.3749295,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.11,,,0.095,0.124,0.156,,,0.135,0.177,0.096,,,0.082,0.11,,,,,,0.096,910,,,,0.14048794,1185.296752,8437,,,,,,,,,,,,,,,,,,,,,,,,,,0.336,,,0.323,0.349,0.110088365,598,5432,0.087450067,0.132726663,0.095039758,251,2641,0.060486566,0.129592949,0.00086003,8,9302,,,1162.75,0.953676471,97.275,102,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.085427539,,,,,-875.211,,,,,0.618256135,40991,66301,0.495155833,0.741356437,76338,,,67342.25532,85333.74468,,,,,,,78694,78110.17021,79277.82979,74383,61912.87234,86853.12766,72586,66682.17021,78489.82979,,,,,,0.109919571,205,1865,,,57.62471655,,,,,0.214716131,,76338,,,4.261363636,3,704,,,,,,,,,,,,,,,,,,,,,,,,,,28.44289505,13,47181,15.14464371,48.63821677,27.55346432,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,19.60104338,13,66323,10.43673008,33.51838113,,,,,,,,,,,,,,,,,,,28.18181818,,1100,,,23,8,0.548363095,3685,6720,,,0.385,,,,,35.01325413,,,,,0.562046005,1857,3304,0.49215924,0.63193277,0.039299969,128,3257,0,0.079833391,0.854116223,2822,3304,0.798634573,0.909597873,9302,,,,,0.268329392,2496,9302,,,0.145237583,1351,9302,,,0.016125564,150,9302,,,0.047624167,443,9302,,,0.009782842,91,9302,,,0.001182541,11,9302,,,0.487852075,4538,9302,,,0.440335412,4096,9302,,,0.008982376,79,8795,0,0.020983026,0.478499248,4451,9302,,,1,9563,9563,, -04,012,04012,AZ,La Paz County,2024,1,19074.99222,589,45681,16418.48956,21731.49487,0,30991.90117,23282.07001,40437.70831,,,,,2,,,,2,9819.172344,6948.630758,13477.58121,,24163.13001,18878.48928,29447.77074,,,,,2,,0.209,,,0.181,0.238,4.33564572,,,3.464221048,5.237591802,5.927644834,,,4.791501225,7.079828052,0.067087609,85,1267,0.053312046,0.080863171,0,0.08713693,0.051528609,0.12274525,,,,,,,0.081466395,0.05726992,0.10566287,0.047717842,0.028687098,0.066748587,,,,,,,0.197,,,0.164,0.234,0.353,,,0.278,0.432,4.9,0.264865963,0.15,,,0.291,,,0.242,0.345,0.417950112,6920,16557,,,0.136225479,,,0.107410297,0.169119255,0.144444444,13,90,0.095645881,0.200952223,323,53,16408,,,37.62449281,102,2711,30.32274818,44.92623743,38.75968992,23.67542555,59.86119749,,,,,,,37.98449612,28.10113934,50.21751829,41.66666667,28.11232503,59.48175749,,,,,,,0.204148116,1880,9209,0.17793535,0.230360882,0.000365675,6,16408,,,2734.666667,0.00060584,10,16506,,,1650.6,0.001029929,17,16506,,,970.9411765,2677,,,,,4785,,,1922,2370,0.24,,,,,0.11,,,0.24,0.26,0.23,,,,,0.05,,,0.17,0.25,0.826129815,10895,13188,0.791286122,0.860973508,0.41922941,1186,2829,0.325757244,0.512701576,0.047046935,419,8906,,,0.302,772,,0.185234043,0.418765957,0.404726736,0.204133526,0.605319945,,,,,,,0.275759822,0.166042871,0.385476774,0.163669065,0.046664287,0.280673842,5.291816028,87098,16459,4.071369217,6.512262838,0.353028065,956,2708,0.246281216,0.459774914,6.094588006,10,16408,,,174.7852426,176,100695,148.9623732,200.608112,248.6069439,166.495972,357.0410411,,,,,,,99.38240931,66.03888925,143.6352522,192.6984794,156.6872444,228.7097145,,,,3.3,,,,,1,,,,,0.155589124,1545,9930,0.11318437,0.197993878,0.096632817,0.061338378,0.131927255,0.055891239,0.031083788,0.08069869,0.011581068,0.003769989,0.019392146,0.766358595,4146,5410,0.727964566,0.804752624,0.850293542,0.73098318,0.969603904,,,,,,,0.837119589,0.767301372,0.906937805,0.668275418,0.501870052,0.834680784,0.132,,5410,0.078661717,0.185338283,73.97804022,,,71.81752688,76.13855356,61.22163815,57.16913239,65.27414392,,,,,,,80.81899434,75.6343316,86.00365709,71.35426704,67.92737428,74.78115979,,,,817.5187703,589,45681,737.8641596,897.173381,1297.520817,1037.849171,1602.427653,,,,,,,393.556872,301.737797,504.5221482,989.3743933,841.7694965,1136.97929,,,,104.5004877,15,14354,58.48812967,172.3576625,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.136,,,0.118,0.155,0.185,,,0.162,0.211,0.112,,,0.096,0.131,,,,,,0.15,2520,,,,0.264865963,5426.838717,20489,,,33.90060343,20,58996,20.70736929,52.3567325,,,,,,,,,,,,,45.11956685,25.25307906,74.41786395,,,,0.354,,,0.341,0.365,0.226186922,1515,6698,0.195208198,0.257165645,0.146535403,387,2641,0.106024765,0.187046042,0.000908761,15,16506,,,1100.4,0.833219178,121.65,146,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.086306464,,,,,-12901.61625,,,,,0.759720003,39940,52572,0.567903546,0.95153646,53925,,,49719.04255,58130.95745,63512,39324.76596,87699.23404,90625,9875.382979,171374.617,,,,48371,33868.19149,62873.80851,45348,39692,51004,,,,,,0.655040408,1540,2351,,,,,,,,0.306573945,,53925,,,5.305039788,4,754,,,13.45952226,19,141164,8.103511635,21.01871127,,,,,,,,,,,,,,,,,,,34.85136122,41,100695,23.15847643,50.3699205,40.71701673,,,,,,,,,,,,,47.27077036,23.59739825,84.58046571,,,,40.71701673,41,100695,29.21923419,55.23723081,,,,,,,,,,,,,43.79510896,28.34188538,64.6502202,,,,41.79535859,59,141164,31.81656345,53.91296744,67.00779727,33.45005097,119.8954588,,,,,,,,,,48.42073898,34.43187884,66.19274417,,,,8,,1500,,,5,7,0.458389674,7458,16270,,,0.254,,,,,23.66262165,,,,,0.683649422,6092,8911,0.648837259,0.718461586,0.106096976,884,8332,0.070760245,0.141433706,0.704298059,6276,8911,0.662147875,0.746448242,16506,,,,,0.15770023,2603,16506,,,0.417121047,6885,16506,,,0.009996365,165,16506,,,0.175209015,2892,16506,,,0.012056222,199,16506,,,0.003574458,59,16506,,,0.276384345,4562,16506,,,0.566157761,9345,16506,,,0.051335088,819,15954,0.024991431,0.077678746,0.488791954,8068,16506,,,0.434197016,7189,16557,, -04,013,04013,AZ,Maricopa County,2024,1,8012.17048,56102,12666358,7917.295056,8107.045905,0,16938.67961,15936.51707,17940.84215,,3363.281521,3079.58062,3646.982421,,13044.12576,12546.80952,13541.44201,,8177.917421,8015.237422,8340.597421,,7118.115328,6991.522172,7244.708483,,16109.92308,13285.8259,18934.02026,,,0.148,,,0.128,0.17,3.43264418,,,2.9511147,3.994924302,5.179279306,,,4.584779906,5.834503012,0.074903037,26960,359932,0.074043056,0.075763019,0,0.069025834,0.063262446,0.074789222,0.096897047,0.09231574,0.101478354,0.12930378,0.125140185,0.133467374,0.071131743,0.06983986,0.072423626,0.066907641,0.065632308,0.068182974,0.079143389,0.062997675,0.095289103,0.08192715,0.076128376,0.087725924,0.14,,,0.115,0.166,0.309,,,0.276,0.344,8.3,0.055091398,0.092,,,0.22,,,0.19,0.251,0.924483008,4086740,4420568,,,0.181215465,,,0.160975376,0.203032029,0.216498994,538,2485,0.206634176,0.226506106,634.5,28533,4496588,,,17.39699201,17714,1018222,17.14079627,17.65318776,26.94673199,24.62390479,29.26955919,2.969230365,2.421759839,3.516700891,22.68583162,21.48932822,23.88233502,27.23187245,26.74471362,27.71903129,7.378459842,7.118885995,7.638033688,15.59356137,10.5950684,22.13381565,12.80546075,11.64651033,13.96441118,0.127177141,474671,3732361,0.123602673,0.130751609,0.000699197,3144,4496588,,,1430.212468,0.000721077,3282,4551524,,,1386.814138,0.001946381,8859,4551524,,,513.7740151,2080,,,,,3923,1567,3031,2297,1951,0.42,,,,,0.21,0.37,0.37,0.29,0.44,0.47,,,,,0.38,0.48,0.32,0.34,0.48,0.891755364,2663865,2987215,,,0.679479456,834678,1228408,,,0.033397601,79509,2380680,,,0.14,139817,,0.128085106,0.151914894,0.266791569,0.232593824,0.300989314,0.093569631,0.075931172,0.111208089,0.26170962,0.235433126,0.287986114,0.229392776,0.220077452,0.2387081,0.074202507,0.067997981,0.080407034,4.174693699,152990,36647,4.111587111,4.237800288,0.241917537,247194,1021811,0.234098299,0.249736774,5.341828071,2402,4496588,,,87.49518604,19493,22278940,86.26689611,88.72347596,131.1195843,119.4978965,142.7412721,29.43439487,26.01705044,32.8517393,113.5806314,107.6625337,119.4987291,67.48055243,65.55723909,69.40386577,97.50130653,95.74444543,99.25816763,66.00810306,44.20666258,94.79864669,8.4,,,,,1,,,,,0.171763888,274270,1596785,0.168239065,0.175288711,0.131976648,0.128636058,0.135317238,0.04440172,0.042215473,0.046587967,0.008044289,0.007339418,0.00874916,0.688490348,1477649,2146216,0.684061245,0.69291945,0.664105921,0.638706455,0.689505387,0.59415323,0.578824295,0.609482164,0.675433661,0.658977999,0.691889324,0.702955585,0.695539629,0.710371542,0.700842021,0.695639763,0.706044279,0.376,,2146216,0.37053991,0.38146009,78.16054461,,,78.07140301,78.24968622,71.60683903,70.66952158,72.54415649,85.46169826,84.87311855,86.05027797,73.07923687,72.65008527,73.50838847,77.30589676,77.10691648,77.50487704,79.05825215,78.9452729,79.1712314,70.39833495,68.10716272,72.68950718,375.0448798,56102,12666358,371.8701919,378.2195677,709.3128959,671.6625927,746.9631991,177.7915128,167.2268234,188.3562021,581.2268309,563.6628725,598.7907893,398.1318359,391.0702764,405.1933954,344.4189927,340.4859799,348.3520054,735.4090141,629.2450945,841.5729337,52.29432806,2444,4673547,50.22103803,54.36761808,68.90241836,52.70489045,88.5080389,25.78981302,18.88138447,34.39999647,108.3629718,96.47133499,120.2546086,53.48571251,50.32490889,56.64651613,40.57454421,37.66872352,43.48036491,193.4028151,114.6227655,305.6598288,5.315424891,1936,364223,5.078646873,5.552202909,5.168986084,3.675654406,7.066174137,3.160634606,2.353300064,4.155650804,10.35766305,9.088849328,11.62647678,5.761403187,5.380521666,6.142284707,3.51926683,3.22049155,3.818042111,,,,14.11679537,11.55880291,16.67478783,0.105,,,0.092,0.119,0.165,,,0.148,0.183,0.095,,,0.085,0.106,328.6,12402,3774753,,,0.092,400830,,,,0.055091398,210290.3134,3817117,,,33.44865598,4536,13561083,32.47524056,34.4220714,62.43267603,52.16377781,72.70157426,5.487744038,3.777510489,7.706832951,49.75060088,44.7809711,54.72023067,30.2187079,28.57346714,31.86394866,33.7269187,32.39708797,35.05674942,,,,0.322,,,0.311,0.333,0.146016748,395912,2711415,0.14125079,0.150782705,0.080161108,86098,1074062,0.074203661,0.086118555,0.001412494,6429,4551524,,,707.9676466,0.760706906,46606.23,61267,,,0.078539549,18706,238173,0.072529814,0.084549284,,,,,,,,,,,,,,,,,,,,,0.188764715,,,,,-4670.097463,,,,,0.859187063,51217,59611,0.849124526,0.8692496,83668,,,82157.19149,85178.80851,62761,55954.02128,69567.97872,103677,99802.2766,107551.7234,58790,56644.12766,60935.87234,67262,65951.3617,68572.6383,88201,87258.53192,89143.46809,,,,,,0.289130601,185780,642547,,,46.10407304,,,,,0.275876082,,83668,,,5.420849944,1440,265641,,,6.19748188,1902,30689884,5.918955663,6.476008098,11.46579501,8.728294401,14.79004018,2.305617252,1.555590278,3.29141199,24.48319365,22.11904092,26.84734639,8.079117735,7.509937871,8.6482976,3.206867937,2.936634856,3.477101019,,,,15.66061864,3598,22278940,15.14128232,16.17995496,16.14978091,14.34815763,10.92248238,18.50807796,6.987534465,5.426093925,8.858364936,11.92032121,9.999191152,13.84145126,8.918697035,8.153935552,9.683458518,19.08290376,18.3024253,19.86338222,,,,14.85708027,3310,22278940,14.35093458,15.36322597,13.67504867,10.18197195,17.9801635,3.614750247,2.517805992,5.027242552,28.01388012,25.07476481,30.95299542,12.08628207,11.27231452,12.90024962,15.68986542,14.98510449,16.39462635,22.76141485,10.91498315,41.85905231,11.98440502,3678,30689884,11.59708791,12.37172214,26.81830019,22.34376656,31.29283381,5.76404313,4.53378557,7.225277977,16.81733933,14.8579527,18.77672596,12.0038571,11.31006721,12.69764699,11.33962729,10.83147093,11.84778365,,,,10.24882725,,490300,,,2503,2522,0.685608203,2068144,3016510,,,0.663,,,,,244.1575466,,,,,0.643059391,1071054,1665560,0.639185404,0.646933379,0.138429507,225058,1625795,0.135195443,0.141663571,0.910944667,1517233,1665560,0.908382566,0.913506769,4551524,,,,,0.223932907,1019236,4551524,,,0.162040231,737530,4551524,,,0.05930607,269933,4551524,,,0.029077294,132346,4551524,,,0.049458379,225111,4551524,,,0.003043816,13854,4551524,,,0.320919103,1460671,4551524,,,0.530016979,2412385,4551524,,,0.043568826,181743,4171400,,,0.501571122,2282913,4551524,,,0.023046586,101879,4420568,, -04,015,04015,AZ,Mohave County,2024,1,12223.16587,5776,559231,11621.84932,12824.48241,0,21995.60931,16994.58487,26996.63376,,4750.634596,2715.398143,7714.732956,1,17054.91049,10417.5824,26339.92602,1,9189.532315,8059.307175,10319.75746,,12480.51928,11747.5204,13213.51815,,,,,2,,0.179,,,0.155,0.206,4.310734994,,,3.556391841,5.140934911,5.841585496,,,4.987615284,6.755439105,0.072810011,896,12306,0.068219326,0.077400697,0,0.080357143,0.051289603,0.109424683,0.162162162,0.102776725,0.2215476,,,,0.077113548,0.067279493,0.086947603,0.068953407,0.063580122,0.074326692,,,,0.082251082,0.046820129,0.117682035,0.198,,,0.165,0.233,0.357,,,0.305,0.41,6,0.186976145,0.136,,,0.271,,,0.231,0.313,0.559294218,119279,213267,,,0.154785661,,,0.128326066,0.184307693,0.214285714,57,266,0.183714152,0.246197848,223.7,487,217692,,,24.19354839,819,33852,22.53658203,25.85051474,32.22836096,22.44823426,44.82184841,,,,,,,21.86501597,18.96911429,24.76091766,24.58468589,22.46135772,26.70801406,,,,24.19354839,15.94370084,35.20034269,0.142106791,20562,144694,0.12542594,0.158787642,0.000532863,116,217692,,,1876.655172,0.000443808,98,220816,,,2253.22449,0.000778929,172,220816,,,1283.813954,1997,,,,,3767,,,2289,1969,0.39,,,,,0.3,0.34,0.42,0.29,0.39,0.33,,,,,0.26,0.34,0.22,0.3,0.34,0.877752573,145491,165754,0.867901635,0.887603511,0.542141503,22597,41681,0.503562776,0.580720231,0.045251689,4066,89853,,,0.235,8183,,0.171851064,0.298148936,0.428329093,0.321122454,0.535535731,,,,0.082375479,0,0.215025097,0.319657258,0.259661412,0.379653105,0.230931706,0.193798077,0.268065335,4.280859197,103036,24069,4.068257007,4.493461386,0.307814001,10896,35398,0.265418294,0.350209708,5.32862944,116,217692,,,137.9921021,1468,1063829,130.9330356,145.0511686,169.4527135,119.3103484,233.5682443,,,,84.99787505,40.75978492,156.3141185,77.3130405,64.50611726,90.11996375,147.5959527,139.2553448,155.9365606,,,,5.1,,,,,1,,,,,0.150085716,13570,90415,0.137579125,0.162592307,0.111385444,0.100014726,0.122756162,0.033567439,0.027692425,0.039442453,0.015650058,0.011842108,0.019458008,0.773133046,57593,74493,0.7566997,0.789566393,0.678383128,0.559005174,0.797761083,0.883792049,0.806238297,0.961345801,,,,0.705783537,0.653436975,0.7581301,0.790012965,0.770070145,0.809955784,0.187,,74493,0.168773718,0.205226283,73.76983433,,,73.34352311,74.19614556,70.65755947,65.56930191,75.74581703,82.48747066,79.09431684,85.88062448,70.45000572,65.19227584,75.70773559,78.01802045,76.79179014,79.24425076,73.597152,73.09261937,74.10168462,,,,582.8240987,5776,559231,564.7317899,600.9164075,898.8389533,733.9672898,1063.710617,288.5815352,199.8511022,403.2637702,673.3358859,499.7628729,887.709423,423.4468256,384.9545101,461.939141,594.2000901,572.8239932,615.576187,,,,61.89935293,97,156706,50.19620536,75.51196121,,,,,,,,,,56.45762291,36.53639676,83.34258869,61.26762721,46.75365405,78.8635809,,,,5.86157058,73,12454,4.594535645,7.37004498,,,,,,,,,,7.032348805,4.295541345,10.86089237,5.089647195,3.698145443,6.832613798,,,,,,,0.13,,,0.114,0.148,0.182,,,0.16,0.206,0.101,,,0.087,0.115,153,295,192811,,,0.136,28830,,,,0.186976145,37430.00657,200186,,,26.11736743,169,647079,22.17967203,30.05506283,,,,,,,,,,19.6868009,12.33761331,29.80605314,27.15348406,22.5559047,31.75106341,,,,0.376,,,0.364,0.389,0.155136517,16989,109510,0.134881198,0.175391836,0.103755742,3840,37010,0.076351486,0.131159997,0.000896674,198,220816,,,1115.232323,0.758163729,1333.61,1759,,,0.164386968,1322,8042,0.112864703,0.215909234,,,,,,,,,,,,,,,,,,,,,0.097691092,,,,,-8895.349111,,,,,0.855995351,41241,48179,0.783689435,0.928301266,54842,,,50612.21277,59071.78723,48688,40195.06383,57180.93617,65598,49292.46809,81903.53192,60110,30611.10638,89608.89362,57653,51917.17021,63388.82979,52806,50334.85106,55277.14894,,,,,,0.380163257,7731,20336,,,61.05366739,,,,,0.301447796,,54842,,,6.110432174,55,9001,,,5.360238565,79,1473815,4.24375135,6.680456581,,,,,,,,,,5.253883833,2.797471868,8.984301362,5.294091177,4.039949296,6.814544757,,,,30.7049979,370,1063829,27.0686353,34.34136049,34.78002574,,,,,,,,,,12.92799656,8.19524084,19.39834242,33.98791024,29.36543688,38.61038361,,,,28.20002087,300,1063829,25.0088881,31.39115364,,,,,,,,,,12.70142808,8.051615863,19.05837847,30.91785543,27.10047746,34.7352334,,,,19.74467623,291,1473815,17.47606753,22.01328493,46.14522562,25.22802425,77.4238476,,,,,,,16.97408623,12.23342833,22.94403352,19.76460706,17.17627348,22.35294064,,,,32.69461078,,16700,,,300,246,0.620806643,104668,168600,,,0.588,,,,,43.2215608,,,,,0.725730017,69067,95169,0.712977574,0.738482461,0.128207948,11660,90946,0.116591577,0.139824318,0.854910738,81361,95169,0.840955939,0.868865536,220816,,,,,0.161510036,35664,220816,,,0.323676726,71473,220816,,,0.011824324,2611,220816,,,0.030129157,6653,220816,,,0.013961851,3083,220816,,,0.002794182,617,220816,,,0.181005905,39969,220816,,,0.753124774,166302,220816,,,0.01451195,2980,205348,0.010860522,0.018163379,0.493315702,108932,220816,,,0.239324415,51040,213267,, -04,017,04017,AZ,Navajo County,2024,1,19463.36607,2794,306731,18447.49476,20479.23738,0,28821.53464,26996.06473,30647.00455,,,,,2,,,,2,11238.04224,9117.944884,13358.13959,,10788.08875,9602.60033,11973.57717,,,,,2,,0.225,,,0.198,0.253,4.739003283,,,4.004400321,5.552531275,6.08324253,,,5.254354111,6.921218525,0.088809197,842,9481,0.083083049,0.094535346,0,0.098159509,0.08982015,0.106498869,,,,,,,0.094196804,0.077593285,0.110800323,0.073004543,0.063820085,0.082189,,,,0.102150538,0.05862725,0.145673825,0.219,,,0.185,0.253,0.382,,,0.333,0.429,4.6,0.260016112,0.167,,,0.259,,,0.222,0.296,0.59811464,63829,106717,,,0.162229164,,,0.135400475,0.189218558,0.188679245,40,212,0.154952892,0.224576125,613.1,663,108147,,,30.97175315,807,26056,28.83484875,33.10865755,37.58328966,34.29553801,40.87104131,,,,,,,36.57474601,30.18840481,42.96108721,18.55398611,15.63301374,21.47495849,,,,26.76056338,16.11160727,41.78993461,0.169764328,12678,74680,0.150700498,0.188828158,0.000628774,68,108147,,,1590.397059,0.000681086,74,108650,,,1468.243243,0.001021629,111,108650,,,978.8288288,2181,,,,,3487,1446,,2839,1407,0.29,,,,,0.22,0.19,0.21,0.31,0.33,0.35,,,,,0.4,0.35,0.31,0.31,0.32,0.856424565,60467,70604,0.844644767,0.868204364,0.508260763,12490,24574,0.47208305,0.544438476,0.051836344,2055,39644,,,0.335,9022,,0.264702128,0.405297872,0.467804273,0.433445113,0.502163434,,,,0.235109718,0,0.589287229,0.327665441,0.246601202,0.40872968,0.154520678,0.106780438,0.202260917,5.141754816,100619,19569,4.611452402,5.67205723,0.339100596,9388,27685,0.298156322,0.38004487,6.472671456,70,108147,,,176.7214449,973,550584,165.6172032,187.8256865,254.4209304,234.1807415,274.6611194,,,,,,,76.43471072,56.54681977,101.0507411,126.9123783,112.3554874,141.4692693,,,,4.7,,,,,1,,,,,0.235819256,8585,36405,0.216652548,0.254985964,0.10080748,0.08580035,0.11581461,0.088449389,0.07638163,0.100517147,0.075813762,0.066545211,0.085082313,0.759824672,25309,33309,0.735721273,0.783928071,0.739964355,0.703881688,0.776047023,,,,,,,0.840752004,0.784464038,0.897039971,0.753868212,0.72555813,0.782178294,0.319,,33309,0.286174522,0.351825478,68.75627535,,,68.13040465,69.38214605,62.89480976,61.97386319,63.81575633,,,,,,,74.38990826,72.58354606,76.19627046,74.81192988,73.93633776,75.687522,,,,772.2277824,2794,306731,741.3400041,803.1155608,1100.004236,1041.878535,1158.129937,,,,,,,479.4181231,406.2759913,552.560255,511.5176442,474.9510239,548.0842646,,,,92.05326392,116,126014,75.30127919,108.8052487,113.8465917,89.07794648,143.3709407,,,,,,,79.69397514,44.60411292,131.4430925,54.48460161,33.72682714,83.28550122,,,,8.265306122,81,9800,6.563846122,10.27302084,9.851265212,7.334914012,12.95259443,,,,,,,,,,,,,,,,,,,0.153,,,0.134,0.171,0.201,,,0.177,0.224,0.128,,,0.111,0.144,146.2,130,88946,,,0.167,17820,,,,0.260016112,27938.4712,107449,,,35.02595242,116,331183,28.65187946,41.40002538,30.17501509,21.83780804,40.6455473,,,,,,,38.28972559,21.43046875,63.15307944,39.67538323,29.88892838,51.64296482,,,,0.39,,,0.378,0.4,0.19402219,9828,50654,0.170192403,0.217851977,0.119288138,3023,25342,0.088309415,0.150266862,0.001150483,125,108650,,,869.2,0.768347518,1083.37,1410,,,0.184579854,1039,5629,0.133487904,0.235671805,,,,,,,,,,,,,,,,,,,,,0.378106693,,,,,-3877.088291,,,,,0.827899798,39692,47943,0.743263703,0.912535893,49948,,,45742.04255,54153.95745,34989,31984.06383,37993.93617,,,,47689,29291.21277,66086.78723,44335,31184.53192,57485.46809,60543,56480.02128,64605.97872,,,,,,0.457647702,7537,16469,,,78.04211379,,,,,0.398614559,,49948,,,3.422703936,24,7012,,,13.65610291,105,768887,11.04401251,16.26819331,23.91228972,18.96095858,29.76091446,,,,,,,,,,5.6116023,3.325791168,8.868750941,,,,43.3071273,216,550584,37.36375241,49.25050218,39.23107101,48.36388933,39.09037671,57.63740195,,,,,,,,,,41.3068322,32.37796258,51.93713991,,,,23.97454339,132,550584,19.88457972,28.06450706,19.69980845,14.47467827,26.19656902,,,,,,,,,,31.29346314,24.48520762,39.40893778,,,,37.19662317,286,768887,32.88563759,41.50760875,59.7807243,51.49553862,68.06590999,,,,,,,14.67434248,7.813469343,25.09357255,20.5758751,15.91338031,26.17755809,,,,20.36764706,,13600,,,196,81,0.649197392,51767,79740,,,0.336,,,,,27.12393346,,,,,0.723093305,27163,37565,0.711595198,0.734591412,0.08840768,3062,34635,0.076156448,0.100658913,0.687049115,25809,37565,0.670933395,0.703164835,108650,,,,,0.251596871,27336,108650,,,0.200193281,21751,108650,,,0.008366314,909,108650,,,0.434910262,47253,108650,,,0.0073815,802,108650,,,0.001757938,191,108650,,,0.122650713,13326,108650,,,0.429479982,46663,108650,,,0.024480158,2457,100367,0.021191707,0.027768609,0.49768983,54074,108650,,,0.642531181,68569,106717,, -04,019,04019,AZ,Pima County,2024,1,9302.699962,16046,2879934,9082.98322,9522.416704,0,22998.83604,20901.08964,25096.58243,,3393.163857,2657.819505,4128.50821,,12949.42758,11607.35703,14291.49812,,8785.016695,8459.934991,9110.098398,,8833.7793,8510.508165,9157.050436,,17969.53194,10976.25694,27752.48466,1,,0.166,,,0.142,0.189,3.785095055,,,3.200536641,4.421196694,5.246594428,,,4.576951356,5.944952567,0.07944008,5834,73439,0.077484216,0.081395943,0,0.077136259,0.065897323,0.088375195,0.094000945,0.081569385,0.106432505,0.120973044,0.109384687,0.132561401,0.077069381,0.07436385,0.079774912,0.074734575,0.071566484,0.077902666,0.11965812,0.078072334,0.161243905,0.105419893,0.090730575,0.120109211,0.151,,,0.124,0.178,0.329,,,0.289,0.369,7.6,0.089287254,0.109,,,0.235,,,0.201,0.268,0.855796204,892966,1043433,,,0.17736554,,,0.153588624,0.20207209,0.250353607,177,707,0.231587366,0.269459037,567.8,5973,1052030,,,16.56036047,3962,239246,16.04469432,17.07602661,29.42865346,25.40009628,33.45721064,1.78412132,0.975395728,2.993452418,16.41553351,13.63608473,19.19498228,22.78277048,21.93016189,23.63537907,8.246883247,7.6465714,8.847195094,28.57142857,14.2627542,51.12217796,13.59735974,10.97137591,16.22334356,0.121810742,99042,813081,0.112278827,0.131342657,0.000870698,916,1052030,,,1148.504367,0.000672279,711,1057597,,,1487.4782,0.002291043,2423,1057597,,,436.4824598,1701,,,,,4301,756,2107,1964,1586,0.47,,,,,0.12,0.41,0.38,0.35,0.49,0.47,,,,,0.17,0.45,0.28,0.35,0.49,0.894719987,631420,705718,0.890959364,0.898480611,0.67563078,172046,254645,0.660602279,0.690659282,0.037972538,18598,489775,,,0.179,36448,,0.148021277,0.209978723,0.442796379,0.386208539,0.499384219,0.14092827,0.098041312,0.183815228,0.255853451,0.193578584,0.318128319,0.241404915,0.225021009,0.257788822,0.111150902,0.094415632,0.127886172,4.661279755,128064,27474,4.541410951,4.78114856,0.27194434,57027,209701,0.25503006,0.28885862,6.169025598,649,1052030,,,104.8957878,5478,5222326,102.1179742,107.6736015,161.8616435,139.8113261,183.9119608,31.50678026,23.38493959,41.53776193,122.5114855,106.322429,138.7005419,78.27301181,74.37122648,82.17479714,121.8309711,117.6436284,126.0183139,,,,3.8,,,,,1,,,,,0.173577651,71330,410940,0.167161743,0.179993559,0.138146036,0.132419324,0.143872747,0.03579598,0.032315575,0.039276385,0.010597654,0.008997346,0.012197962,0.719876586,332015,461211,0.712032396,0.727720775,0.682503599,0.6459542,0.719052999,0.667932851,0.639911013,0.69595469,0.723191705,0.682027979,0.76435543,0.718970635,0.705772383,0.732168886,0.731230212,0.722346428,0.740113996,0.344,,461211,0.334694171,0.353305829,77.12531728,,,76.93868889,77.31194567,66.053001,64.79150904,67.31449296,86.8394362,85.27696702,88.40190538,73.17416831,72.10948785,74.23884878,76.96586743,76.6342512,77.29748365,77.72397689,77.46487886,77.98307492,,,,428.2409343,16046,2879934,421.174243,435.3076256,976.5649757,903.0274436,1050.102508,176.6788645,150.184773,203.1729561,607.1342071,561.0840601,653.184354,417.2771645,404.8587638,429.6955652,410.9240407,401.3033126,420.5447688,667.9856174,450.687091,953.591004,56.31999481,556,987216,51.63853519,61.00145443,102.0733652,69.81810626,144.0971358,,,,111.6071429,79.73377913,151.9772516,56.59971911,50.14080753,63.05863069,45.50537737,38.29474961,52.71600513,,,,5.027135866,377,74993,4.519670954,5.534600778,,,,,,,,,,5.737356566,4.972216336,6.502496796,3.592553616,2.919850305,4.373805122,,,,,,,0.114,,,0.099,0.13,0.17,,,0.15,0.19,0.091,,,0.079,0.103,310.8,2807,903152,,,0.109,112480,,,,0.089287254,87524.99177,980263,,,37.58917938,1188,3160484,35.45165688,39.72670188,50.40387722,35.84208399,68.90375944,,,,50.89104772,38.44255053,66.08625852,34.06263371,30.7654559,37.35981151,38.94386724,35.89066805,41.99706644,,,,0.34,,,0.327,0.352,0.136210399,82343,604528,0.125486995,0.146933803,0.084113549,18534,220345,0.068624188,0.099602911,0.001233929,1305,1057597,,,810.4191571,0.725263134,7993.125,11021,,,0.074782821,4287,57326,0.061898729,0.087666913,,,,,,,,,,,,,,,,,,,,,0.171331185,,,,,-3321.949346,,,,,0.84462938,45773,54193,0.82050687,0.868751891,64007,,,61659.76596,66354.23404,47400,43396.59575,51403.40426,67802,57956.7234,77647.2766,51149,46931.12766,55366.87234,56497,54557.25532,58436.74468,70745,69063.80851,72426.19149,,,,,,0.338693667,42650,125925,,,44.05451818,,,,,0.349508648,,64007,,,6.013283073,335,55710,,,6.732374457,488,7248557,6.135044324,7.329704591,16.82670735,11.35290879,24.02117102,,,,25.49203677,19.58878099,32.61538881,8.650936197,7.544859483,9.757012911,3.585905038,2.978746011,4.193064066,,,,20.3921662,1127,5222326,19.14996506,21.63436734,21.58042221,31.38921932,22.42491848,42.74320765,11.51733003,6.825899703,18.20234686,16.17354418,10.83167637,23.22790733,11.67050707,10.10600352,13.23501063,25.19069521,23.18603885,27.19535157,,,,19.09110998,997,5222326,17.9060518,20.27616816,20.33044797,13.2805236,29.78881676,6.301356052,3.021745158,11.58841813,37.31031602,28.91498245,47.38278247,14.68251839,12.99263154,16.37240523,21.39160041,19.6369876,23.14621321,,,,13.49234061,978,7248557,12.64672316,14.33795807,33.6534147,25.68110078,43.31861561,5.539373405,2.862275071,9.676170561,17.80396219,12.93638618,23.90098823,13.14206052,11.77877938,14.50534166,12.52390715,11.38922824,13.65858606,,,,18.62626263,,99000,,,943,901,0.682935696,520397,762000,,,0.664,,,,,144.635414,,,,,0.641439461,271377,423075,0.635390077,0.647488845,0.14278944,58451,409351,0.137028794,0.148550086,0.897396443,379666,423075,0.892896378,0.901896507,1057597,,,,,0.196086978,207381,1057597,,,0.212170609,224391,1057597,,,0.036092198,38171,1057597,,,0.043543996,46052,1057597,,,0.034235158,36207,1057597,,,0.002553903,2701,1057597,,,0.384792128,406955,1057597,,,0.501070824,529931,1057597,,,0.035020046,34626,988748,0.032875995,0.037164096,0.505152719,534248,1057597,,,0.088419669,92260,1043433,, -04,021,04021,AZ,Pinal County,2024,1,8590.584016,6688,1272411,8272.232561,8908.935471,0,21067.05001,18886.78787,23247.31214,,3237.934704,2052.572849,4858.491866,1,10958.88596,9222.716503,12695.05541,,7659.689429,7152.268004,8167.110854,,7735.119254,7303.013697,8167.22481,,,,,2,,0.172,,,0.146,0.198,3.866387003,,,3.191586033,4.544393204,4.873331935,,,4.120892737,5.629542752,0.068865687,2236,32469,0.066111273,0.071620101,0,0.072684642,0.0603649,0.085004384,0.092473118,0.066142134,0.118804103,0.135533708,0.117755058,0.153312357,0.066134008,0.061801693,0.070466324,0.064086337,0.06016845,0.068004223,,,,0.067991632,0.052034135,0.083949129,0.172,,,0.142,0.202,0.375,,,0.329,0.422,7.5,0.14213207,0.091,,,0.243,,,0.207,0.279,0.616939125,262362,425264,,,0.178636263,,,0.150805619,0.208485597,0.170807453,55,322,0.143973282,0.199325126,396.4,1782,449557,,,21.02473498,1904,90560,20.08034118,21.96912879,38.10131971,32.51958008,43.68305934,,,,13.56852103,10.5773278,17.14301005,25.70081484,24.1102459,27.29138378,15.35467128,14.0919066,16.61743596,,,,20.26825633,15.73909411,25.69484446,0.131955035,43867,332439,0.118848652,0.145061418,0.000177953,80,449557,,,5619.4625,0.000342559,159,464154,,,2919.207547,0.00087471,406,464154,,,1143.236453,1851,,,,,5586,1935,2501,1977,1623,0.4,,,,,0.17,0.36,0.33,0.31,0.42,0.41,,,,,0.22,0.39,0.3,0.29,0.42,0.884638743,268019,302970,0.878013539,0.891263947,0.546223719,62299,114054,0.524169865,0.568277572,0.038653429,7701,199232,,,0.146,14455,,0.10787234,0.18412766,0.364613703,0.301410502,0.427816904,0.053975201,0,0.119295434,0.193880314,0.104944759,0.282815869,0.16856951,0.145852755,0.191286265,0.128904106,0.105468997,0.152339215,3.681122377,129616,35211,3.462341331,3.899903422,0.215313518,20500,95210,0.196187751,0.234439284,3.358862169,151,449557,,,75.6645199,1718,2270549,72.08654926,79.24249054,139.1447105,116.0125939,162.2768271,,,,72.06633847,56.87362733,90.07055809,57.73407371,52.09723315,63.37091426,81.59534208,76.63383443,86.55684972,,,,11.3,,,,,1,,,,,0.144137164,21395,148435,0.133125203,0.155149126,0.103150501,0.093861648,0.112439354,0.039377505,0.033840526,0.044914484,0.009296999,0.003925231,0.014668766,0.727648878,121871,167486,0.713655978,0.741641778,0.761543074,0.69576758,0.827318568,0.688125272,0.653097002,0.723153542,0.641921397,0.552267664,0.731575131,0.712569025,0.676966603,0.748171446,0.626548426,0.60524835,0.647848502,0.544,,167486,0.521805012,0.566194988,79.41643129,,,79.08247432,79.75038825,68.14921312,66.56666629,69.73175995,87.52811484,83.86166372,91.19456596,74.97721832,73.43702083,76.5174158,79.00188199,78.3219881,79.68177587,80.55960333,80.12709932,80.99210733,,,,393.7991597,6688,1272411,383.754442,403.8438775,909.9715629,829.498753,990.4443729,180.0429511,134.8645252,235.500613,481.9900928,430.4873113,533.4928744,364.4494316,344.514058,384.3848052,365.0073374,352.2295741,377.7851007,,,,56.21524192,252,448277,49.27443625,63.15604758,80.51889958,47.72060291,127.2545751,,,,109.5818357,70.91558625,161.7644065,58.92875934,48.01500038,69.8425183,45.16951855,36.0798071,55.85280918,,,,5.815598378,185,31811,4.977558637,6.653638119,,,,,,,16.91176471,10.72060812,25.37595066,6.916996047,5.517266942,8.563711773,3.67278798,2.766846542,4.780638396,,,,,,,0.12,,,0.104,0.136,0.16,,,0.141,0.18,0.101,,,0.089,0.115,292.6,1113,380441,,,0.091,38480,,,,0.14213207,53408.96793,375770,,,23.47158359,327,1393174,20.92753978,26.01562741,33.27233405,20.32360603,51.3864214,,,,41.46612366,27.55393803,59.93009396,23.58381503,19.00692955,28.1607005,21.53688223,18.27039723,24.80336724,,,,0.37,,,0.358,0.38,0.151710573,35711,235389,0.135029722,0.168391424,0.087723089,8931,101809,0.06746777,0.107978409,0.000607557,282,464154,,,1645.93617,0.796459896,2760.53,3466,,,0.103761223,2138,20605,0.078302954,0.129219492,,,,,,,,,,,,,,,,,,,,,0.08207373,,,,,-3910.848624,,,,,0.781260694,45660,58444,0.755757583,0.806763805,76232,,,73335.48936,79128.51064,52804,45136.76596,60471.23404,82143,61549.29787,102736.7021,73966,66271.3617,81660.6383,68715,64636.53192,72793.46809,75064,73230.29787,76897.70213,,,,,,0.316485559,17708,55952,,,53.28100163,,,,,0.247546962,,76232,,,3.539211878,82,23169,,,5.620748703,174,3095673,4.785577298,6.455920108,31.85013066,23.14235369,42.75731379,,,,8.390434904,4.335460152,14.65640124,5.425133687,4.03936837,7.133048891,3.19990126,2.417171023,4.15533795,,,,16.91631905,392,2270549,15.18327754,18.64936056,17.26454703,10.60522448,5.479874244,18.52519291,,,,9.786492946,4.885382018,17.51073919,9.784086244,7.484050718,12.5680681,21.43823565,18.67128462,24.20518668,,,,15.59094298,354,2270549,13.96679041,17.21509555,30.03123248,20.26194645,42.87145171,,,,11.23111768,5.803282396,19.61850238,10.17151175,7.944035061,12.82997804,17.35569836,15.06745597,19.64394076,,,,14.76254113,457,3095673,13.40903854,16.11604373,44.87972956,34.40903131,57.53378783,,,,12.58565236,7.459055223,19.89075673,13.82877214,11.45155958,16.2059847,13.59958036,11.87178183,15.32737889,,,,17.31854839,,49600,,,453,406,0.567561597,184974,325910,,,0.566,,,,,54.16888882,,,,,0.796468414,120657,151490,0.785806738,0.807130089,0.098090349,14331,146100,0.090237506,0.105943192,0.90547891,137171,151490,0.897578578,0.913379241,464154,,,,,0.217068042,100753,464154,,,0.211175601,98018,464154,,,0.052835912,24524,464154,,,0.062143168,28844,464154,,,0.020835757,9671,464154,,,0.004205501,1952,464154,,,0.317295553,147274,464154,,,0.545693886,253286,464154,,,0.027744853,11376,410022,0.024666652,0.030823054,0.48165695,223563,464154,,,0.23032046,97947,425264,, -04,023,04023,AZ,Santa Cruz County,2024,1,7079.993119,562,129932,6169.70677,7990.279468,0,,,,2,,,,2,,,,2,7356.109529,6370.67687,8341.542188,,6038.341518,3036.639902,9040.043134,1,,,,2,,0.234,,,0.194,0.273,4.397699707,,,3.482268126,5.412250956,5.293261295,,,4.259458721,6.409414339,0.073754789,308,4176,0.065827332,0.081682247,0,,,,,,,,,,0.071631023,0.063517768,0.079744278,0.079166667,0.045007116,0.113326217,,,,,,,0.148,,,0.115,0.183,0.355,,,0.286,0.426,6.1,0.183241182,0.132,,,0.327,,,0.272,0.383,0.611361682,29143,47669,,,0.175666731,,,0.140160412,0.215234411,0.176470588,6,34,0.093514624,0.274869215,398.9,191,47883,,,27.38529925,345,12598,24.49552435,30.27507416,,,,,,,,,,28.00307351,24.97249981,31.03364721,20.2020202,11.04463243,33.89555717,,,,,,,0.179365868,6862,38257,0.155536081,0.203195655,0.000375916,18,47883,,,2660.166667,0.000225599,11,48759,,,4432.636364,0.00043069,21,48759,,,2321.857143,1617,,,,,,,,1304,1879,0.31,,,,,,0.27,,0.21,0.37,0.34,,,,,,,,0.26,0.38,0.779732674,23976,30749,0.759040841,0.800424507,0.57831656,6321,10930,0.503834251,0.652798869,0.075342828,1423,18887,,,0.272,3323,,0.181446809,0.362553192,,,,,,,,,,0.273074585,0.22261028,0.323538891,0.22265625,0.092315506,0.352996994,4.444416158,104746,23568,3.919085934,4.969746381,0.249662511,3144,12593,0.178449541,0.320875481,4.38569012,21,47883,,,67.97428093,159,233912,57.40848712,78.54007474,,,,,,,,,,59.66832641,48.80979896,70.52685386,115.8388427,83.12795352,157.1484703,,,,8.8,,,,,0,,,,,0.178504673,2865,16050,0.149116676,0.20789267,0.120755926,0.096869799,0.144642053,0.051090343,0.030942634,0.071238051,0.021495327,0.008211122,0.034779532,0.787709497,14664,18616,0.755858943,0.819560052,,,,,,,,,,0.787358728,0.741934105,0.832783351,0.727558505,0.647825583,0.807291427,0.221,,18616,0.180717791,0.26128221,79.60162793,,,78.70080805,80.5024478,,,,,,,,,,78.68904877,77.70591417,79.67218336,81.77203872,79.10284755,84.44122988,,,,336.697764,562,129932,307.3848807,366.0106473,,,,,,,,,,354.5256008,320.2745418,388.7766597,285.2686645,213.8847247,356.6526043,,,,56.24603103,31,55115,38.21644921,79.83675134,,,,,,,,,,55.14850705,36.64578243,79.7049475,,,,,,,5.464480874,23,4209,3.464012126,8.199404347,,,,,,,,,,5.883857764,3.729861099,8.828675594,,,,,,,,,,0.137,,,0.117,0.158,0.169,,,0.145,0.195,0.128,,,0.109,0.147,191.4,75,39189,,,0.132,6280,,,,0.183241182,8689.296825,47420,,,29.03908945,41,141189,20.83895195,39.39480382,,,,,,,,,,29.04716747,20.11600788,40.59050508,,,,,,,0.322,,,0.305,0.338,0.213497829,5555,26019,0.182519105,0.244476552,0.110421836,1424,12896,0.075868645,0.144975028,0.000328145,16,48759,,,3047.4375,0.886907217,688.24,776,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.343115975,,,,,-3414.180454,,,,,0.90000223,40357,44841,0.802901838,0.997102622,53467,,,47923,59011,,,,,,,,,,44582,39275.10638,49888.89362,66798,58146.59575,75449.40426,,,,,,0.715221114,7100,9927,,,,,,,,0.306562927,,53467,,,4.394224733,14,3186,,,4.596179656,15,326358,2.572446863,7.580699377,,,,,,,,,,4.794411929,2.55282243,8.198590413,,,,,,,8.851149296,22,233912,5.479000919,13.52992192,9.405246418,,,,,,,,,,,,,26.14363657,9.594253853,56.90369043,,,,6.840179213,16,233912,3.909753435,11.1080225,,,,,,,,,,,,,28.25337628,13.54859212,51.95896492,,,,12.86930304,42,326358,9.27506166,17.3955591,,,,,,,,,,9.588823857,6.263738098,14.04984864,30.25230422,16.93198502,49.89657518,,,,21.37931035,,5800,,,62,62,0.690902667,19556,28305,,,0.554,,,,,35.52077433,,,,,0.67203171,11190,16651,0.641820284,0.702243136,0.099741178,1580,15841,0.074804152,0.124678204,0.823794367,13717,16651,0.789794043,0.85779469,48759,,,,,0.253696753,12370,48759,,,0.195143461,9515,48759,,,0.005455403,266,48759,,,0.015156176,739,48759,,,0.009331611,455,48759,,,0.001558687,76,48759,,,0.82481183,40217,48759,,,0.155396952,7577,48759,,,0.216033642,9658,44706,0.19423161,0.237835674,0.510428844,24888,48759,,,0.597893809,28501,47669,, -04,025,04025,AZ,Yavapai County,2024,1,9711.915728,4450,621575,9153.870608,10269.96085,0,24803.24942,18527.99758,31078.50127,,,,,2,10727.93578,5543.280965,18739.54486,1,7191.334897,6143.453295,8239.216499,,10102.50995,9419.27393,10785.74598,,,,,2,,0.142,,,0.119,0.164,3.786674797,,,3.057739198,4.543224541,5.285814373,,,4.493986825,6.120580104,0.073478575,914,12439,0.068893237,0.078063914,0,0.052434457,0.025697409,0.079171505,,,,0.105769231,0.046661555,0.164876906,0.078703704,0.069106109,0.088301299,0.072307335,0.06683848,0.077776191,,,,0.080645161,0.041513315,0.119777008,0.166,,,0.132,0.202,0.274,,,0.233,0.316,7.2,0.129797653,0.108,,,0.193,,,0.16,0.229,0.83760568,197850,236209,,,0.150178151,,,0.126107329,0.17618519,0.163636364,45,275,0.134822931,0.194552321,197.3,478,242253,,,20.18687585,754,37351,18.74595704,21.62779466,23.28288708,14.2217923,35.95853074,,,,,,,26.18466048,23.04967437,29.31964659,18.10366207,16.40821026,19.79911388,,,,12.8314799,7.181681893,21.16357474,0.153157182,24316,158765,0.136476331,0.169838033,0.000553141,134,242253,,,1807.858209,0.000678335,167,246191,,,1474.197605,0.002132491,525,246191,,,468.9352381,1596,,,,,2282,,,1756,1583,0.41,,,,,0.35,0.35,0.3,0.37,0.41,0.39,,,,,0.3,0.37,0.31,0.3,0.39,0.921463613,169987,184475,0.914160669,0.928766557,0.594477797,25449,42809,0.557955861,0.630999732,0.0346363,3726,107575,,,0.187,6886,,0.138148936,0.235851064,0.387179487,0.175240831,0.599118143,0.390909091,0.107169614,0.674648568,0.126262626,0,0.378462139,0.210875332,0.160726907,0.261023756,0.142219913,0.112219921,0.172219904,4.245788121,118950,28016,4.039722975,4.451853267,0.220556802,8255,37428,0.185736968,0.255376637,7.719202652,187,242253,,,127.2777755,1499,1177739,120.8344832,133.7210677,165.3094961,108.9399996,240.5166378,92.83614421,47.96979041,162.166061,,,,61.12713874,49.54474698,72.70953049,139.39781,131.8605353,146.9350846,,,,4.8,,,,,1,,,,,0.160353598,16235,101245,0.148164603,0.172542593,0.137243168,0.125078672,0.149407664,0.020840535,0.016409838,0.025271232,0.007802855,0.005279983,0.010325726,0.73893286,68621,92865,0.719616699,0.75824902,0.639934534,0.511274518,0.76859455,0.566069906,0.424245947,0.707893866,,,,0.791484496,0.754655647,0.828313345,0.735833115,0.712377444,0.759288786,0.294,,92865,0.269063975,0.318936025,76.99002318,,,76.56678055,77.41326581,67.08719039,63.18763288,70.9867479,87.18344655,82.51766641,91.84922669,79.5275161,72.80942339,86.24560881,79.41284595,78.31391173,80.51178017,76.67293864,76.16943233,77.17644495,,,,409.4767708,4450,621575,394.394181,424.5593607,935.3007431,743.6029589,1126.998527,,,,410.9700318,265.9581358,606.6728382,317.391703,282.3262607,352.4571452,419.8665765,402.2010516,437.5321014,,,,66.22399082,112,169123,53.95913609,78.48884556,,,,,,,,,,49.87634822,31.95671742,74.21205261,75.73798352,60.23666593,94.01080757,,,,6.30084543,79,12538,4.988438663,7.852733384,,,,,,,,,,8.245382586,5.335976863,12.17181125,5.619266055,4.157163962,7.428967729,,,,,,,0.111,,,0.095,0.128,0.175,,,0.151,0.198,0.079,,,0.067,0.091,146.7,317,216117,,,0.108,25310,,,,0.129797653,27391.58817,211033,,,35.67556419,256,717578,31.30530758,40.0458208,100.6441224,48.26276868,185.0881244,,,,,,,19.47564154,12.05572907,29.7705869,37.56167102,32.54076901,42.58257304,,,,0.296,,,0.283,0.308,0.167798582,20334,121181,0.147543263,0.188053901,0.108866783,4301,39507,0.080271038,0.137462528,0.001246999,307,246191,,,801.9250814,0.791782505,1321.485,1669,,,0.068316025,671,9822,0.040374663,0.096257387,,,,,,,,,,,,,,,,,,,,,0.055369849,,,,,-3183.894377,,,,,0.863903407,45291,52426,0.812297794,0.915509019,64187,,,60007.25532,68366.74468,63003,57902.23404,68103.76596,73906,50216.80851,97595.19149,48687,41380.78723,55993.21277,60069,55499.6383,64638.3617,63453,61145.08511,65760.91489,,,,,,0.228141167,4454,19523,,,70.36854425,,,,,0.310187421,,64187,,,7.682319844,71,9242,,,2.95283583,48,1625556,2.177188041,3.915031914,,,,,,,,,,,,,2.837640923,1.997961084,3.911314222,,,,30.65014079,417,1177739,27.18464102,34.11564055,35.40682613,,,,,,,,,,13.71112421,8.487401987,20.95890982,34.5780677,30.25259578,38.90353962,,,,27.34052282,322,1177739,24.35421239,30.32683324,,,,,,,,,,10.28307007,6.094399029,16.25168401,31.50772417,27.92432753,35.0911208,,,,15.44087069,251,1625556,13.53061723,17.35112416,,,,,,,,,,11.69405023,7.770611455,16.90115852,15.64537158,13.49839716,17.792346,,,,43.25842697,,17800,,,476,294,0.75848537,143221,188825,,,0.638,,,,,44.53252198,,,,,0.73110135,77893,106542,0.719098688,0.743104011,0.135055551,13943,103239,0.123744098,0.146367004,0.891094592,94939,106542,0.880023242,0.902165941,246191,,,,,0.153031589,37675,246191,,,0.341657494,84113,246191,,,0.008127836,2001,246191,,,0.02184889,5379,246191,,,0.013956643,3436,246191,,,0.001750673,431,246191,,,0.157138157,38686,246191,,,0.788574725,194140,246191,,,0.014700097,3363,228774,0.011810774,0.01758942,0.50643606,124680,246191,,,0.319805765,75541,236209,, -04,027,04027,AZ,Yuma County,2024,1,9428.316493,3078,574588,8955.67158,9900.961406,0,26422.45159,19198.59377,35470.90798,,,,,2,13601.55341,8884.986264,19929.42716,,8598.331804,8064.849812,9131.813797,,10830.97791,9738.358528,11923.5973,,,,,2,,0.224,,,0.193,0.259,4.216720208,,,3.439236679,5.044455138,4.85523719,,,4.043209693,5.736538913,0.063917029,1325,20730,0.0605872,0.067246857,0,0.079365079,0.040827572,0.117902587,,,,0.077669903,0.041119512,0.114220294,0.063496951,0.059746062,0.06724784,0.066796549,0.058632744,0.074960354,,,,0.054545455,0.024536951,0.084553958,0.157,,,0.129,0.188,0.408,,,0.351,0.467,6.7,0.103040457,0.146,,,0.305,,,0.261,0.352,0.808226367,164782,203881,,,0.179126895,,,0.148274275,0.212368381,0.160839161,23,143,0.120972709,0.204873233,553.2,1145,206990,,,31.12990789,1531,49181,29.57054817,32.68926761,39.04555315,23.14086937,61.70880752,,,,16.61129568,7.965761954,30.54876419,33.80840253,32.01419144,35.60261362,18.82425552,15.4838902,22.16462083,,,,14.43569554,7.206247201,25.82944687,0.195410182,30773,157479,0.175154863,0.215665501,0.000425141,88,206990,,,2352.159091,0.00032236,67,207842,,,3102.119403,0.000851608,177,207842,,,1174.248588,2180,,,,,,,1701,1937,2196,0.39,,,,,0.19,0.33,0.43,0.34,0.42,0.37,,,,,0.29,0.39,0.26,0.28,0.4,0.761883732,100062,131335,0.751100074,0.772667391,0.558996419,28719,51376,0.526482575,0.591510262,0.125494809,12269,97765,,,0.181,9264,,0.116659575,0.245340426,0.264990329,0.188072108,0.34190855,0.139534884,0,0.488107349,0.121559633,0,0.323797133,0.268380817,0.240086601,0.296675032,0.137762712,0.098933818,0.176591606,4.358700563,106130,24349,4.065530963,4.651870163,0.30335042,15564,51307,0.271271512,0.335429328,4.444659162,92,206990,,,73.23321329,775,1058263,68.07720852,78.38921806,213.1989534,133.610649,322.7857776,,,,90.31157493,53.52436295,142.7312241,49.43189879,44.16196675,54.70183082,116.1185036,104.2865451,127.9504622,,,,7.9,,,,,1,,,,,0.202546064,15115,74625,0.185772283,0.219319844,0.123422006,0.109509768,0.137334245,0.085427136,0.073236811,0.097617461,0.008978225,0.005662684,0.012293765,0.782480315,60420,77216,0.763026619,0.801934011,0.556581986,0.45134673,0.661817242,0.842016807,0.778206601,0.905827013,0.748685594,0.605347305,0.892023883,0.790606502,0.764446532,0.816766471,0.790883408,0.77258358,0.809183235,0.237,,77216,0.216604987,0.257395013,78.55312025,,,78.05871244,79.04752806,67.35111505,61.27349019,73.42873991,88.94135711,84.75277886,93.12993536,73.22368612,69.00074624,77.44662601,77.93909074,77.30139656,78.57678492,78.15000555,77.21701638,79.08299472,,,,464.5108626,3078,574588,447.4256818,481.5960434,1247.937833,965.1550293,1587.682903,,,,524.2473251,391.5329776,687.4806192,437.6430862,415.6154949,459.6706775,515.8772835,481.8991555,549.8554115,,,,63.1868942,150,237391,53.07488511,73.29890328,,,,,,,,,,60.51516826,49.45475393,71.57558259,64.89841987,41.14003114,97.37949462,,,,5.942112325,124,20868,4.896222144,6.988002506,,,,,,,,,,5.671310566,4.571876758,6.955358957,5.639097744,3.490690382,8.619959918,,,,,,,0.135,,,0.116,0.155,0.164,,,0.142,0.188,0.13,,,0.113,0.148,185.4,315,169867,,,0.146,29710,,,,0.103040457,20170.27254,195751,,,25.52454506,163,638601,21.6060412,29.44304892,,,,,,,,,,20.49976003,16.37448021,25.34827074,33.64030108,25.90713098,42.95791347,,,,0.366,,,0.353,0.379,0.226243878,24159,106783,0.200031112,0.252456644,0.132500047,7060,53283,0.099138345,0.165861749,0.00092859,193,207842,,,1076.901554,0.833961729,2353.44,2822,,,0.107012013,1256,11737,0.075118483,0.138905543,,,,,,,,,,,,,,,,,,,,,0.148678278,,,,,-7917.137222,,,,,0.840543827,38022,45235,0.791688643,0.889399011,54209,,,50913.34043,57504.65957,40345,35495.6383,45194.3617,70750,52069.82979,89430.17021,44432,25310.97872,63553.02128,55738,53021.40426,58454.59575,58110,56047.53192,60172.46809,,,,,,0.650381762,23936,36803,,,55.50013985,,,,,0.30496781,,54209,,,5.041310741,72,14282,,,3.950498887,58,1468169,2.999779431,5.106935901,,,,,,,,,,4.151148644,2.951872486,5.674756851,2.218180205,1.063703628,4.079312374,,,,14.34069189,148,1058263,11.94138628,16.73999751,13.98518138,,,,,,,,,,6.124431493,4.334012232,8.406260723,33.3163696,26.20543815,41.76235779,,,,11.43383072,121,1058263,9.396529974,13.47113147,,,,,,,,,,7.166162842,5.301566721,9.474047316,19.14386141,14.64353708,24.59109086,,,,13.34996176,196,1468169,11.48096711,15.2189564,,,,,,,,,,11.70836797,9.520323766,13.89641218,16.41453352,12.88893932,20.60694368,,,,26.15384615,,23400,,,397,215,0.535343012,69881,130535,,,0.481,,,,,82.38117247,,,,,0.690631779,51575,74678,0.677608673,0.703654885,0.128888765,9243,71713,0.115213859,0.142563671,0.840555451,62771,74678,0.826988923,0.85412198,207842,,,,,0.249559762,51869,207842,,,0.204588101,42522,207842,,,0.017118773,3558,207842,,,0.024355039,5062,207842,,,0.015405933,3202,207842,,,0.002574071,535,207842,,,0.661257109,137437,207842,,,0.287973557,59853,207842,,,0.13919029,26490,190315,0.129686324,0.148694256,0.488914656,101617,207842,,,0.151004753,30787,203881,, -05,000,05000,AR,Arkansas,2024,,10823.13085,56311,8414668,10688.89369,10957.36801,0,4519.698195,3415.523005,5623.873385,,4283.595123,3657.928266,4909.26198,,15962.53137,15552.03054,16373.03221,,5545.135687,5213.676055,5876.595318,,10535.25999,10376.69555,10693.82443,,20981.40294,18026.8251,23935.98078,,,0.204,,,0.188,0.221,4.332923581,,,3.994233463,4.6716137,5.779193258,,,5.356730283,6.201656233,0.092968271,23789,255883,0.091843112,0.09409343,0,0.071913162,0.058724345,0.085101978,0.091653028,0.084026735,0.099279321,0.157122861,0.153862695,0.160383028,0.071901841,0.068903988,0.074899693,0.077336112,0.076039882,0.078632342,0.097965116,0.088031114,0.107899118,0.096296296,0.087762003,0.104830589,0.219,,,0.201,0.239,0.393,,,0.37,0.416,4.7,0.10015975,0.155,,,0.295,,,0.276,0.315,0.636042084,1915456,3011524,,,0.154174464,,,0.137067756,0.172988178,0.270768161,779,2877,0.261556421,0.280045071,592.8,17936,3025891,,,29.52651727,20085,680236,29.11816744,29.9348671,23.2772954,19.21283107,27.34175973,7.005417523,5.510205278,8.781351527,41.59616583,40.4587682,42.73356347,34.67963357,33.37223638,35.98703077,25.1211847,24.65221338,25.59015603,83.67829687,73.92894633,93.42764741,29.24947507,26.90707681,31.59187333,0.110558594,268334,2427075,0.105792637,0.115324552,0.000676495,2047,3025891,,,1478.207621,0.000489224,1490,3045637,,,2044.051678,0.002618828,7976,3045637,,,381.8501755,3015,,,,,3642,2764,4062,2115,2909,0.4,,,,,0.41,0.29,0.41,0.23,0.4,0.45,,,,,0.47,0.44,0.34,0.28,0.46,0.882050666,1792192,2031847,0.879569824,0.884531509,0.592743553,455182,767924,0.584550396,0.600936709,0.033168465,45420,1369373,,,0.212,144789,,0.198893617,0.225106383,0.25332651,0.192213828,0.314439192,0.23984102,0.198422597,0.281259443,0.412576999,0.39558677,0.429567227,0.291178572,0.272837318,0.309519826,0.154148408,0.147953184,0.160343632,4.80357522,113129,23551,4.730569361,4.876581079,0.284866789,198075,695325,0.276918715,0.292814863,11.80478742,3572,3025891,,,88.91276564,13419,15092321,87.40837676,90.41715452,31.05563272,21.75098336,42.99408605,28.58960627,22.32871969,36.06189815,102.2671071,98.15841529,106.3757989,35.23693905,31.86694138,38.60693673,95.88018238,94.0383099,97.72205485,53.62957288,35.6364617,77.50966471,8.9,,,,,0.266666667,,,,,0.131336258,153735,1170545,0.127976819,0.134695697,0.09971954,0.096750014,0.102689067,0.027764845,0.026207645,0.029322044,0.011742394,0.010729236,0.012755551,0.806668896,1051964,1304084,0.803768447,0.809569344,0.80351939,0.78359563,0.82344315,0.707161981,0.677664736,0.736659226,0.805149029,0.795042124,0.815255933,0.752311368,0.735486016,0.769136721,0.818468791,0.816347745,0.820589836,0.277,,1304084,0.27153991,0.28246009,74.30137425,,,74.19746136,74.40528715,110.8878525,98.74354027,123.0321648,85.23280162,83.6955161,86.77008713,70.23119839,69.94215341,70.52024337,87.50519162,85.82478652,89.18559672,74.40821851,74.28856913,74.52786789,65.66455494,63.20248433,68.12662555,527.4155129,56311,8414668,522.8833327,531.9476932,173.7577684,142.9479603,204.5675766,212.9835641,188.9783612,236.988767,724.9576956,710.7761218,739.1392693,265.1805409,249.9043673,280.4567146,521.3322434,516.1369996,526.5274871,1218.088482,1035.420584,1400.756381,71.58209903,2233,3119495,68.61305841,74.55113964,,,,42.30118443,26.50992707,64.04450159,120.753386,111.6165857,129.8901862,43.24368324,36.7430706,49.74429589,66.11418236,62.51185178,69.71651294,113.115774,69.09405342,174.6981387,7.769444808,2016,259478,7.430287802,8.108601815,,,,4.541326067,2.938906784,6.703893133,12.31145536,11.32960117,13.29330955,5.43881335,4.579800094,6.297826606,6.907100403,6.507367285,7.306833521,8.044554455,5.254970054,11.78713616,8.73655914,6.212547601,11.94316395,0.134814746,,,0.122233826,0.148471531,0.191016765,,,0.173722743,0.209595689,0.109,,,0.099,0.118,245.9,6225,2531470,,,0.155,467550,,,,0.10015975,292057.6165,2915918,,,17.31278853,1571,9074217,16.45666782,18.16890924,,,,,,,14.86916564,12.84842301,16.88990827,4.7874967,3.334666866,6.658248976,20.20642851,19.11386184,21.29899517,,,,0.3589844,,,0.338571129,0.379921491,0.132780761,230748,1737812,0.125631825,0.139929697,0.057505832,41608,723544,0.050356896,0.064654769,0.001177422,3586,3045637,,,849.3131623,0.884742745,31829.505,35976,,,0.093357195,15441,165397,0.086299791,0.100414599,2.906668478,,,,,,3.150786987,2.408835218,2.748397193,3.109757483,2.792944199,,,,,,3.027921259,2.263256734,2.631984679,3.011349288,0.285920762,,,,,-5740.662,,,,,0.80889717,41676,51522,0.795973236,0.821821104,55505,,,54349.25532,56660.74468,51043,44966.40426,57119.59575,85002,80421.91489,89582.08511,37395,36373.89362,38416.10638,54771,52380.87234,57161.12766,60932,60155.14894,61708.85106,,,,,,0.650639828,318645,489741,,,65.22492404,,,,,0.250802404,,,,,9.584664537,,,,,9.369016894,1973,21058773,8.955601589,9.782432199,,,,,,,33.0695671,31.09176679,35.04736741,4.493831447,3.522446499,5.650318365,5.187000916,4.825063155,5.548938676,,,,19.3459097,2934,15092321,18.62871102,20.06310837,19.44034983,12.32718859,6.899433874,20.33182291,11.9336312,7.992140106,17.13868503,8.612430278,7.381034191,9.843826365,5.923041408,4.449571001,7.728284219,23.37500205,22.44060968,24.30939442,16.78789059,7.676492589,31.86864568,20.78540471,3137,15092321,20.05803151,21.51277791,,,,8.456080727,5.234447248,12.92601764,37.85601737,35.35623017,40.35580456,5.956720649,4.652248247,7.513592574,19.64576648,18.81202843,20.47950452,,,,19.69250535,4147,21058773,19.09314222,20.29186849,,,,5.597718488,3.370192198,8.74153082,22.23112425,20.60950497,23.85274353,12.61966365,10.89212839,14.34719891,20.68226221,19.95953442,21.40498999,25.08669667,14.61392529,40.16623156,,,,,,,,0.549258835,1219069,2219480,,,,,,,,54.85222461,,,,,0.662251407,775956,1171694,0.657550335,0.666952479,0.112626379,126002,1118761,0.109580336,0.115672422,0.824181058,965688,1171694,0.819604375,0.82875774,3045637,,,,,0.228891033,697119,3045637,,,0.178076376,542356,3045637,,,0.15331374,466938,3045637,,,0.01092251,33266,3045637,,,0.018459521,56221,3045637,,,0.004716583,14365,3045637,,,0.085544009,260536,3045637,,,0.709675841,2161415,3045637,,,0.016914052,47991,2837345,0.015979475,0.017848628,0.505693883,1540160,3045637,,,0.44523869,1340847,3011524,, -05,001,05001,AR,Arkansas County,2024,1,15107.47964,473,47295,12904.89652,17310.06275,0,,,,2,,,,2,21750.61498,16484.63922,27016.59074,,,,,2,12355.66628,10091.222,14620.11056,,,,,2,,0.218,,,0.189,0.251,4.487358781,,,3.593320699,5.457443878,5.824936216,,,4.783988574,6.994619382,0.10924933,163,1492,0.093420124,0.125078536,0,,,,,,,0.192393736,0.15585129,0.228936182,,,,0.075388027,0.058158087,0.092617966,,,,,,,0.215,,,0.177,0.257,0.379,,,0.309,0.455,5.3,0.236586974,0.144,,,0.323,,,0.274,0.376,0.568313021,9746,17149,,,0.132646873,,,0.104118789,0.166055658,0.352941177,6,17,0.222343344,0.479798798,675.8,113,16722,,,45.75925386,157,3431,38.60136123,52.91714649,,,,,,,49.95004995,37.07388985,65.85291375,,,,42.75534442,34.38034591,52.5535771,,,,88.70967742,44.28355135,158.726117,0.088194973,1158,13130,0.073897101,0.102492846,0.000478412,8,16722,,,2090.25,0.000484496,8,16512,,,2064,0.001332364,22,16512,,,750.5454546,3285,,,,,,,1529,,3302,0.32,,,,,,,0.37,,0.32,0.43,,,,,,,0.28,,0.45,0.859702246,10221,11889,0.834325387,0.885079104,0.520998024,2109,4048,0.439362389,0.602633659,0.032748288,306,9344,,,0.266,993,,0.17187234,0.36012766,,,,,,,0.490845684,0.347529644,0.634161725,,,,0.028347144,0,0.058413624,5.526936891,107720,19490,4.158526321,6.895347461,0.209062822,812,3884,0.134158723,0.283966921,14.95036479,25,16722,,,113.3669999,99,87327,92.13910343,138.0202546,,,,,,,162.2097604,112.9850415,225.5945098,,,,103.0037214,78.97236258,132.0461222,,,,7.9,,,,,1,,,,,0.103169252,765,7415,0.074566222,0.131772281,0.086807929,0.057311617,0.116304241,0.0229265,0.008525974,0.037327027,0.010114633,0,0.023789334,0.883965661,6384,7222,0.8442154,0.923715921,,,,,,,0.79590985,0.711856574,0.879963125,,,,0.883887702,0.862214713,0.905560691,0.223,,7222,0.173456388,0.272543612,70.20854608,,,68.78063698,71.63645518,,,,,,,65.81502299,62.85893566,68.77111032,,,,71.92180284,70.3904249,73.45318078,,,,717.7523412,473,47295,648.4137053,787.0909772,,,,,,,940.7146841,774.2787461,1107.150622,,,,656.4188273,579.2432414,733.5944132,,,,74.78140819,13,17384,39.81795036,127.8784855,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.137,,,0.119,0.157,0.193,,,0.169,0.221,0.109,,,0.094,0.127,280.4,39,13910,,,0.144,2500,,,,0.236586974,4499.647653,19019,,,19.38322576,10,51591,9.295010169,35.64644229,,,,,,,,,,,,,,,,,,,0.356,,,0.342,0.368,0.10325212,962,9317,0.085379779,0.12112446,0.053212851,212,3984,0.035340511,0.071085192,0.000726744,12,16512,,,1376,0.883333333,180.2,204,,,,,,,,2.667889392,,,,,,,2.331047042,,2.95190009,2.629893823,,,,,,,2.128150714,,2.956990115,0.078742346,,,,,-7085.364,,,,,0.660383598,33949,51408,0.572066433,0.748700763,52145,,,44650.53192,59639.46809,59875,45329.29787,74420.70213,,,,24223,15397.6383,33048.3617,60455,43969.55319,76940.44681,67669,60497.42553,74840.57447,,,,,,0.83777938,2324,2774,,,40.33406412,,,,,0.223281235,,52145,,,11.02941177,12,1088,,,12.09931115,15,123974,6.771892601,19.95597373,,,,,,,36.20564808,18.07372907,64.78190545,,,,,,,,,,15.63339652,13,87327,8.078004112,27.30839757,14.88657574,,,,,,,,,,,,,17.78073779,8.526554898,32.69940986,,,,28.62803028,25,87327,18.52655175,42.26062008,,,,,,,50.98021041,25.44913736,91.21767861,,,,21.59755449,11.49978816,36.93247594,,,,35.4913127,44,123974,25.78804214,47.64543072,,,,,,,59.24560595,35.11270088,93.63359972,,,,29.10157614,18.83300567,42.95966719,,,,85.29411765,,1700,,,145,,0.462987491,6292,13590,,,0.507,,,,,35.79574933,,,,,0.662448544,4345,6559,0.621063575,0.703833513,0.117906067,723,6132,0.0778971,0.157915033,0.748589724,4910,6559,0.710670402,0.786509046,16512,,,,,0.230256783,3802,16512,,,0.206274225,3406,16512,,,0.243459302,4020,16512,,,0.004602713,76,16512,,,0.008357558,138,16512,,,0.00090843,15,16512,,,0.040515988,669,16512,,,0.684350775,11300,16512,,,0.002879139,46,15977,0,0.010007224,0.511264535,8442,16512,,,0.525803254,9017,17149,, -05,003,05003,AR,Ashley County,2024,1,14047.07195,458,52311,12004.98991,16089.15398,0,,,,2,,,,2,20913.81939,15768.86152,26058.77725,,,,,2,12703.72882,10334.87798,15072.57966,,,,,2,,0.26,,,0.226,0.298,5.262932784,,,4.298083939,6.351197848,6.385512628,,,5.266488936,7.612314736,0.106080207,164,1546,0.090729875,0.121430539,0,,,,,,,0.169712794,0.132117962,0.207307626,,,,0.083909181,0.066835571,0.100982791,,,,,,,0.257,,,0.213,0.304,0.42,,,0.345,0.502,6.1,0.09444408,0.175,,,0.378,,,0.323,0.438,0.285856678,5449,19062,,,0.122892092,,,0.096987999,0.154690409,0.363636364,8,22,0.250508545,0.473251594,519.4,97,18674,,,35.56536669,145,4077,29.77642252,41.35431086,,,,,,,37.47714808,26.89424851,50.84198315,33.89830509,17.5157489,59.21351709,35.48895899,28.53731393,43.62195575,,,,,,,0.114762037,1659,14456,0.098081186,0.131442888,0.000428403,8,18674,,,2334.25,0.000435872,8,18354,,,2294.25,0.000817261,15,18354,,,1223.6,5024,,,,,,,5257,,4884,0.36,,,,,,,0.43,,0.35,0.44,,,,,,,0.4,0.43,0.44,0.858720315,11354,13222,0.829222244,0.888218385,0.560549313,2245,4005,0.467016246,0.65408238,0.055022865,373,6779,,,0.288,1156,,0.189106383,0.386893617,,,,,,,0.458035714,0.284798612,0.631272817,0.244186047,0,0.492357738,0.27077748,0.171293483,0.370261477,5.109689319,88648,17349,4.343535888,5.87584275,0.292962357,1253,4277,0.208304775,0.377619939,15.52961337,29,18674,,,93.87850896,92,97999,75.67932812,115.1336575,,,,,,,121.956348,81.67608031,175.1496591,,,,91.23132375,69.7847338,117.190452,,,,8.2,,,,,0,,,,,0.110174984,850,7715,0.079134051,0.141215917,0.095800525,0.062613242,0.128987808,0.013609851,0.004675932,0.02254377,0.004536617,0.000268988,0.008804246,0.870957854,5683,6525,0.840738209,0.9011775,,,,,,,0.830779055,0.575441868,1,,,,0.902774368,0.86463031,0.940918425,0.244,,6525,0.197227403,0.290772597,71.88487067,,,70.46848331,73.30125802,,,,,,,67.50569755,64.32442846,70.68696665,,,,72.78615875,71.14315324,74.42916425,,,,636.0496609,458,52311,573.4081929,698.691129,,,,,,,899.6909899,745.6004369,1053.781543,,,,582.8533355,510.7344761,654.972195,,,,83.37675873,16,19190,47.65702165,135.3986326,,,,,,,,,,,,,84.37394533,40.46058637,155.1666895,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.159,,,0.138,0.183,0.207,,,0.18,0.236,0.133,,,0.114,0.153,146.3,23,15718,,,0.175,3380,,,,0.09444408,2063.886477,21853,,,19.07404196,11,57670,9.521693025,34.12872987,,,,,,,,,,,,,,,,,,,0.364,,,0.351,0.376,0.138816488,1438,10359,0.11736968,0.160263297,0.056494559,244,4319,0.038622219,0.074366899,0.001035197,19,18354,,,966,0.925,253.45,274,,,,,,,,2.620365274,,,,,,,2.141972032,2.680816507,2.781184746,2.702188379,,,,,,,2.224770541,3.035076581,2.826572435,0.053955132,,,,,-6713.943,,,,,0.706528359,37121,52540,0.620603997,0.792452722,47253,,,40444.82979,54061.17021,,,,,,,24792,17858.7234,31725.2766,40732,28269.02128,53194.97872,51730,45287.61702,58172.38298,,,,,,0.620336943,2062,3324,,,26.63027377,,,,,0.246397054,,47253,,,11.41352063,13,1139,,,11.48361073,16,139329,6.563875757,18.64866438,,,,,,,29.29115407,14.04624691,53.86747523,,,,,,,,,,15.51432194,15,97999,8.481824171,26.03039602,15.30627864,,,,,,,,,,,,,19.14969595,9.894927337,33.45066503,,,,23.46962724,23,97999,14.87773042,35.21596434,,,,,,,,,,,,,22.43393207,12.55610148,37.0013593,,,,27.27357549,38,139329,19.30040526,37.43511324,,,,,,,41.0076157,22.4192451,68.80381114,,,,23.17716838,14.52500803,35.09051146,,,,20.5,,2000,,,41,,0.526819541,7926,15045,,,0.526,,,,,14.66445541,,,,,0.743258271,5347,7194,0.713374808,0.773141733,0.128289474,858,6688,0.085414091,0.171164857,0.74617737,5368,7194,0.712044618,0.780310122,18354,,,,,0.223439032,4101,18354,,,0.218644437,4013,18354,,,0.233954451,4294,18354,,,0.008989866,165,18354,,,0.003432494,63,18354,,,0.001144165,21,18354,,,0.064781519,1189,18354,,,0.680887,12497,18354,,,0.012927416,231,17869,0.004849743,0.02100509,0.512585812,9408,18354,,,0.623124541,11878,19062,, -05,005,05005,AR,Baxter County,2024,1,11053.0727,975,107742,9787.760595,12318.38481,0,,,,2,,,,2,,,,2,,,,2,11460.29473,10122.7946,12797.79485,,,,,2,,0.207,,,0.175,0.242,4.681968232,,,3.800314524,5.673567508,5.877294619,,,4.863868699,6.966420631,0.065751144,158,2403,0.055841407,0.075660882,0,,,,,,,,,,,,,0.067084079,0.056714738,0.07745342,,,,,,,0.229,,,0.183,0.278,0.355,,,0.289,0.424,6.8,0.056192546,0.162,,,0.284,,,0.234,0.335,0.589545247,24541,41627,,,0.13209616,,,0.103704815,0.164962164,0.357142857,15,42,0.277350918,0.4357836,185.1,78,42144,,,26.32344386,181,6876,22.48849576,30.15839196,,,,,,,,,,,,,26.88941925,22.8353222,30.94351631,,,,,,,0.106873357,3130,29287,0.091383995,0.122362719,0.000854214,36,42144,,,1170.666667,0.000565571,24,42435,,,1768.125,0.002945682,125,42435,,,339.48,2963,,,,,,,,16667,2926,0.5,,,,,,0.33,,,0.5,0.45,,,,,,0.29,,0.29,0.45,0.896254143,28664,31982,0.877784399,0.914723887,0.608939943,4877,8009,0.531282717,0.686597169,0.035783249,593,16572,,,0.196,1446,,0.128085106,0.263914894,,,,,,,,,,0.235465116,0.058352847,0.412577386,0.167748061,0.105828861,0.229667262,3.969904361,90490,22794,3.61169123,4.328117492,0.188257731,1382,7341,0.121120186,0.255395275,10.44039484,44,42144,,,99.38268066,208,209292,85.8764205,112.8889408,,,,,,,,,,,,,104.3365512,90.08838613,118.5847163,,,,8,,,,,0,,,,,0.095327103,1785,18725,0.076024686,0.11462952,0.069389978,0.053445298,0.085334658,0.020560748,0.009540612,0.031580883,0.014686248,0.005559066,0.023813431,0.783792716,11858,15129,0.74590719,0.821678242,,,,,,,,,,,,,0.806620429,0.767398119,0.845842739,0.132,,15129,0.102165144,0.161834856,74.47399103,,,73.57388772,75.37409434,,,,,,,,,,,,,74.04217906,73.10607085,74.97828727,,,,535.8040607,975,107742,496.3720534,575.236068,,,,,,,,,,,,,553.8365756,512.5269535,595.1461976,,,,49.00009188,16,32653,28.00778628,79.57307934,,,,,,,,,,,,,50.76829351,28.41462849,83.73457954,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.14,,,0.12,0.163,0.198,,,0.172,0.227,0.098,,,0.084,0.113,121.7,45,36976,,,0.162,6730,,,,0.056192546,2332.721171,41513,,,15.83305626,20,126318,9.671242092,24.45287125,,,,,,,,,,,,,16.81831178,10.27306176,25.97451849,,,,0.325,,,0.308,0.342,0.125430263,2733,21789,0.105174944,0.145685582,0.056104357,443,7896,0.039423506,0.072785208,0.001790974,76,42435,,,558.3552632,0.905501223,370.35,409,,,0.139905549,237,1694,0.064771964,0.215039134,3.103747989,,,,,,,,,3.093250327,2.926859434,,,,,,,,,2.924110175,0.03006309,,,,,-1491.200767,,,,,0.861964561,34732,40294,0.791994964,0.931934157,48573,,,42638.19149,54507.80851,,,,,,,,,,42670,21905.91489,63434.08511,47949,45157.34043,50740.65957,,,,,,0.616099071,3184,5168,,,,,,,,0.239701069,,48573,,,10.3388857,18,1741,,,6.863253113,20,291407,4.192253304,10.59973779,,,,,,,,,,,,,7.262085017,4.435870192,11.21570132,,,,31.84409692,71,209292,23.92226568,41.5496389,33.9238958,,,,,,,,,,,,,33.06522393,24.7681217,43.250127,,,,32.49049175,68,209292,25.23013816,41.18944019,,,,,,,,,,,,,33.93470355,26.29892915,43.09587396,,,,18.53078341,54,291407,13.92089482,24.17865267,,,,,,,,,,,,,19.60762955,14.72985479,25.5837033,,,,10.27777778,,3600,,,37,,0.61432958,21007,34195,,,0.642,,,,,33.11652105,,,,,0.743494033,14142,19021,0.722251767,0.764736298,0.090567705,1640,18108,0.071403079,0.10973233,0.817464907,15549,19021,0.794375655,0.840554159,42435,,,,,0.177895605,7549,42435,,,0.308141864,13076,42435,,,0.004760222,202,42435,,,0.008837045,375,42435,,,0.0064805,275,42435,,,0.001107576,47,42435,,,0.028514198,1210,42435,,,0.93708024,39765,42435,,,0.00134855,54,40043,0,0.004754583,0.511723813,21715,42435,,,0.572801307,23844,41627,, -05,007,05007,AR,Benton County,2024,1,6733.295092,3205,813734,6401.836295,7064.753888,0,6051.109412,3524.994223,9688.412349,1,2986.755624,1932.87076,4409.040491,1,7862.468634,5181.416373,11439.47907,,4044.819452,3436.676535,4652.96237,,7534.483068,7105.403375,7963.56276,,29666.31112,21638.8109,39695.85836,,,0.166,,,0.138,0.194,3.768904746,,,3.043822292,4.598413226,5.280490689,,,4.457024034,6.18901517,0.072989611,1897,25990,0.069827146,0.076152077,0,0.071005917,0.043624781,0.098387053,0.101402373,0.087661704,0.115143043,0.131147541,0.099129465,0.163165617,0.07158722,0.06498249,0.078191951,0.066745166,0.062894214,0.070596119,0.1152,0.090169769,0.140230231,0.077669903,0.056567525,0.098772281,0.155,,,0.121,0.189,0.346,,,0.3,0.396,7.9,0.066890515,0.107,,,0.244,,,0.206,0.287,0.758645673,215708,284333,,,0.164942242,,,0.135552395,0.198345994,0.333333333,42,126,0.288390931,0.378430591,327.6,962,293692,,,20.87663244,1346,64474,19.76132658,21.99193831,25.44031311,16.61845716,37.27595312,5.422993492,2.600536169,9.973078114,,,,31.21452894,28.46467101,33.96438688,16.4301362,15.2041864,17.65608601,104.1292639,79.06971576,134.6112204,21.10091743,15.44852358,28.14566684,0.115286279,29174,253057,0.104562875,0.126009684,0.000595862,175,293692,,,1678.24,0.000439143,133,302863,,,2277.165414,0.002383916,722,302863,,,419.4778393,2221,,,,,7779,1391,980,1657,2180,0.41,,,,,0.29,0.17,0.37,0.21,0.43,0.5,,,,,0.52,0.4,0.35,0.27,0.51,0.901244584,169954,188577,0.893590838,0.908898331,0.653165099,54924,84089,0.628315999,0.678014199,0.023833534,3616,151719,,,0.099,7444,,0.068021277,0.129978723,0.316017316,0.105251099,0.526783534,0.160723514,0.108211646,0.213235382,0.073566085,0.013507461,0.133624708,0.205417739,0.166526948,0.244308531,0.087459122,0.068993349,0.105924896,3.867080009,156551,40483,3.654116031,4.080043987,0.193848996,14270,73614,0.171694908,0.216003084,8.342072648,245,293692,,,60.97756897,854,1400515,56.88781444,65.0673235,49.13522013,23.56224792,90.36141923,,,,39.0625,18.73198709,71.83732829,24.62067469,18.74239832,31.75887653,74.47022572,69.15813766,79.78231378,,,,9.4,,,,,1,,,,,0.111278346,11090,99660,0.101409423,0.12114727,0.071869622,0.064271203,0.079468042,0.041942605,0.035229027,0.048656183,0.004716035,0.00300151,0.006430559,0.771947036,109371,141682,0.758582405,0.785311667,0.764732344,0.740129106,0.789335581,0.677791262,0.59270406,0.762878464,0.776168929,0.720929144,0.831408714,0.739647726,0.704176166,0.775119287,0.786439622,0.769696499,0.803182745,0.237,,141682,0.222023211,0.251976789,78.50194846,,,78.16373309,78.84016383,82.30201771,77.2170877,87.38694772,88.9897616,81.90447153,96.07505167,,,,83.12072726,81.27284344,84.96861107,77.69407348,77.30391743,78.08422953,,,,351.6637718,3205,813734,339.3676077,363.9599359,245.6283114,161.870605,357.3762971,139.2982029,95.27986766,196.6474997,330.6060102,232.7771414,455.6968357,222.4298218,190.1286872,254.7309563,382.0336011,367.5298768,396.5373255,2055.183226,1342.513917,3011.319603,49.2830563,158,320597,41.59838739,56.96772521,,,,,,,,,,35.66004094,23.50019168,51.88348735,53.94166454,43.86111815,64.02221093,,,,5.919464133,152,25678,4.978405527,6.860522739,,,,,,,,,,4.759386568,3.136465738,6.924657579,6.750479965,5.483185684,8.017774247,,,,,,,0.112,,,0.095,0.13,0.165,,,0.143,0.19,0.093,,,0.08,0.108,130.2,313,240428,,,0.107,29770,,,,0.066890515,14805.47963,221339,,,12.99896589,112,861607,10.59152371,15.40640806,,,,,,,,,,,,,16.62215265,13.41200709,19.83229821,,,,0.311,,,0.297,0.324,0.140289228,24912,177576,0.124799867,0.15577859,0.060023767,4748,79102,0.046917384,0.07313015,0.000917907,278,302863,,,1089.435252,0.899913326,3322.48,3692,,,0.072202629,1126,15595,0.052331202,0.092074056,3.278587415,,,,,,3.586224548,3.26078595,2.967305972,3.390932261,3.082781116,,,,,,3.616230996,3.014189622,2.718615863,3.198488841,0.12607285,,,,,-1895.273,,,,,0.80747651,48212,59707,0.77138512,0.843567901,86374,,,81398.34043,91349.65957,66984,53115.06383,80852.93617,116121,105417.8511,126824.1489,79590,59813.65957,99366.34043,70922,65430.42553,76413.57447,85907,82751.93617,89062.06383,,,,,,0.383332391,20340,53061,,,49.17641382,,,,,0.176962975,,86374,,,7.788243962,148,19003,,,2.515093179,48,1908478,1.854431166,3.334648667,,,,,,,,,,3.717840678,1.921062531,6.494319464,2.229511687,1.514845022,3.164613874,,,,16.33198649,228,1400515,14.19503279,18.46894018,16.27972567,,,,,,,,,,,,,19.88647463,17.12765877,22.6452905,,,,11.42436889,160,1400515,9.654144593,13.19459319,,,,,,,,,,4.590295281,2.291458866,8.213306228,13.80904848,11.52157637,16.09652059,,,,11.26552153,215,1908478,9.759649235,12.77139383,,,,,,,,,,8.055321469,5.262003425,11.80291233,12.80171227,10.92103562,14.68238891,,,,8.849557522,,33900,,,300,,0.660635778,119912,181510,,,0.675,,,,,51.79608186,,,,,0.678420568,70667,104164,0.664899881,0.691941254,0.070660038,7178,101585,0.062636315,0.078683762,0.910756115,94868,104164,0.901674111,0.91983812,302863,,,,,0.251902676,76292,302863,,,0.139204855,42160,302863,,,0.019830749,6006,302863,,,0.019345381,5859,302863,,,0.047661814,14435,302863,,,0.008492289,2572,302863,,,0.179668695,54415,302863,,,0.707144815,214168,302863,,,0.037207319,9946,267313,,,0.49706633,150543,302863,,,0.240042485,68252,284333,, -05,009,05009,AR,Boone County,2024,1,10229.1462,734,102355,9039.425207,11418.8672,0,,,,2,,,,2,,,,2,,,,2,10413.93078,9172.496554,11655.36501,,,,,2,,0.199,,,0.169,0.232,4.59177562,,,3.701891653,5.606394781,5.895311231,,,4.848024836,7.026579389,0.070879888,203,2864,0.061481205,0.080278571,0,,,,,,,,,,,,,0.070391062,0.060715129,0.080066994,,,,,,,0.214,,,0.17,0.259,0.39,,,0.32,0.461,6.7,0.08832534,0.15,,,0.282,,,0.233,0.331,0.45112782,16860,37373,,,0.143425818,,,0.113600287,0.177322688,0.2,9,45,0.125379593,0.283736902,335.7,127,37830,,,27.15482302,201,7402,23.40073009,30.90891595,,,,,,,,,,,,,28.39488009,24.38882004,32.40094015,,,,,,,0.106927057,3203,29955,0.091437696,0.122416419,0.000607983,23,37830,,,1644.782609,0.000574653,22,38284,,,1740.181818,0.001488873,57,38284,,,671.6491228,2231,,,,,,,,,2228,0.42,,,,,,,,,0.42,0.42,,,,,,,,,0.42,0.906054836,23793,26260,0.885567487,0.926542186,0.597182123,5171,8659,0.52279467,0.671569576,0.02881228,458,15896,,,0.178,1501,,0.10412766,0.25187234,,,,,,,,,,0.414565826,0.091361083,0.737770569,0.112853505,0.068388617,0.157318392,4.117490607,97531,23687,3.642517292,4.592463921,0.179318449,1526,8510,0.114647704,0.243989194,13.21702353,50,37830,,,90.5469033,170,187748,76.93542758,104.158379,,,,,,,,,,,,,94.51419136,80.13617246,108.8922103,,,,7.9,,,,,0,,,,,0.111665005,1680,15045,0.084118037,0.139211973,0.071553463,0.052002196,0.091104731,0.016616816,0.00710432,0.026129313,0.030907278,0.01424548,0.047569076,0.80126183,12700,15850,0.765246148,0.837277512,,,,,,,,,,,,,0.802204971,0.765880347,0.838529595,0.217,,15850,0.177716973,0.256283027,74.85560368,,,73.94811136,75.76309599,,,,,,,,,,,,,74.50136776,73.57156649,75.43116903,,,,514.7615186,734,102355,475.0308072,554.4922299,,,,,,,,,,,,,527.5846713,486.2824407,568.8869019,,,,61.90950446,23,37151,39.24531517,92.89465397,,,,,,,,,,,,,68.01916366,43.11831501,102.0621426,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.135,,,0.116,0.156,0.188,,,0.162,0.215,0.098,,,0.084,0.114,88,28,31827,,,0.15,5610,,,,0.08832534,3259.470025,36903,,,16.83099028,19,112887,10.13335563,26.28367622,,,,,,,,,,,,,18.01169812,10.84421888,28.12749777,,,,0.358,,,0.338,0.374,0.128809768,2764,21458,0.108554449,0.149065087,0.054463784,485,8905,0.037782933,0.071144636,0.001332149,51,38284,,,750.6666667,0.936832947,403.775,431,,,0.12345679,200,1620,0.054361957,0.192551623,3.318050589,,,,,,,,2.975202014,3.337664442,3.168907078,,,,,,,,2.934135619,3.192769912,0.054103584,,,,,-2242.952933,,,,,0.821457769,38183,46482,0.744780112,0.898135426,53025,,,46850.70213,59199.29787,39028,9981.87234,68074.12766,,,,,,,62773,22943.89362,102602.1064,52460,48580.51064,56339.48936,,,,,,0.573026206,3433,5991,,,,,,,,0.219575672,,53025,,,8.368200837,18,2151,,,6.100490327,16,262274,3.486957325,9.906814094,,,,,,,,,,,,,6.104211092,3.41648061,10.0679679,,,,22.46935479,43,187748,15.97790777,30.71634768,22.90304025,,,,,,,,,,,,,23.99333834,17.06160906,32.79968336,,,,18.10938066,34,187748,12.54127255,25.30604432,,,,,,,,,,,,,18.78896575,12.93345949,26.38669358,,,,19.06403227,50,262274,14.14969221,25.1335499,,,,,,,,,,,,,19.9404229,14.75203464,26.36229656,,,,6.153846154,,3900,,,24,,0.593823734,17114,28820,,,0.632,,,,,30.48200832,,,,,0.701291853,10640,15172,0.670269785,0.732313922,0.078550685,1136,14462,0.055520765,0.101580604,0.858884788,13031,15172,0.826276,0.891493575,38284,,,,,0.225629506,8638,38284,,,0.209983283,8039,38284,,,0.005302476,203,38284,,,0.009769094,374,38284,,,0.007548846,289,38284,,,0.000835858,32,38284,,,0.032650716,1250,38284,,,0.926888517,35485,38284,,,0.002194525,78,35543,0,0.005916123,0.505720405,19361,38284,,,0.626735879,23423,37373,, -05,011,05011,AR,Bradley County,2024,1,14956.43167,231,29144,12153.75588,17759.10745,0,,,,2,,,,2,16539.72123,11584.21741,22897.94589,,,,,2,13485.66716,9945.285454,17026.04886,,,,,2,,0.252,,,0.221,0.286,4.878532456,,,3.920600755,5.878178758,5.89805113,,,4.705066275,7.113848603,0.118316269,104,879,0.096964184,0.139668353,0,,,,,,,0.218045113,0.16842254,0.267667686,,,,0.085308057,0.058655904,0.11196021,,,,,,,0.231,,,0.191,0.272,0.422,,,0.338,0.505,6.8,0.10207484,0.142,,,0.365,,,0.31,0.422,0.487150308,5137,10545,,,0.128630879,,,0.09989778,0.160472386,0.263157895,5,19,0.14192256,0.393259063,749.4,78,10408,,,34.7405453,79,2274,27.50441687,43.29708495,,,,,,,42.88164666,27.75074073,63.30176964,28.24858757,15.81052002,46.59174929,33.14917127,23.21727202,45.89242587,,,,,,,0.138335146,1145,8277,0.118079826,0.158590465,0.00057648,6,10408,,,1734.666667,0.000394672,4,10135,,,2533.75,0.000690676,7,10135,,,1447.857143,3562,,,,,,,5103,,3258,0.35,,,,,,,0.28,,0.37,0.46,,,,,,,0.32,0.21,0.5,0.858409571,6099,7105,0.829137892,0.887681249,0.403387221,1048,2598,0.322683061,0.484091381,0.049841192,204,4093,,,0.256,616,,0.155914894,0.356085106,,,,,,,0.362218371,0.253987885,0.470448856,0.16509434,0.053928587,0.276260092,0.060792952,0.013892448,0.107693456,5.702469294,89141,15632,4.679774303,6.725164284,0.356528538,912,2558,0.261560044,0.451497032,14.41199078,15,10408,,,106.4008512,57,53571,80.58696564,137.8546441,,,,,,,123.2876712,73.06808754,194.8476731,,,,108.8842764,74.47676447,153.7121102,,,,9.4,,,,,0,,,,,0.118063754,500,4235,0.081930459,0.15419705,0.092195122,0.052346239,0.132044005,0.023612751,0.006605957,0.040619544,0.008264463,0,0.020272169,0.850447033,3139,3691,0.807865892,0.893028175,,,,,,,0.797905759,0.736447714,0.859363804,,,,0.750357313,0.719805552,0.780909074,0.344,,3691,0.259328772,0.428671228,71.32285556,,,69.47404475,73.17166638,,,,,,,68.87185172,65.57038815,72.17331529,,,,72.85398115,70.53524499,75.1727173,,,,643.5349716,231,29144,555.9172786,731.1526646,,,,,,,777.7257651,611.7306501,974.8859811,,,,602.7526099,488.4854525,717.0197673,,,,97.59559933,11,11271,48.71937155,174.6254859,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.148,,,0.129,0.168,0.197,,,0.172,0.225,0.13,,,0.112,0.15,104.6,9,8603,,,0.142,1500,,,,0.10207484,1174.677259,11508,,,,,,,,,,,,,,,,,,,,,,,,,,0.377,,,0.365,0.389,0.16781768,972,5792,0.141604914,0.194030446,0.072441549,189,2609,0.048611761,0.096271336,0.000690676,7,10135,,,1447.857143,0.89636076,141.625,158,,,,,,,,2.709291368,,,,,,,2.57396019,2.504651289,3.004126019,2.580347877,,,,,,,2.371179108,2.580722801,2.726321443,0.029367349,,,,,-11654.195,,,,,0.67548909,35909,53160,0.549347255,0.801630924,44982,,,38359.70213,51604.29787,,,,,,,23856,17467.23404,30244.76596,66278,52418.59575,80137.40426,56469,47830.70213,65107.29787,,,,,,1,1892,1892,,,19.69440264,,,,,0.258836868,,44982,,,11.20448179,8,714,,,,,,,,,,,,,,,,,,,,,,,,,,23.62660494,13,53571,12.20821154,41.27092407,24.2668608,,,,,,,,,,,,,33.19826626,15.18036132,63.02065044,,,,22.4001792,12,53571,11.57449947,39.12860512,,,,,,,,,,,,,,,,,,,31.72043721,24,75661,20.32388265,47.19749619,,,,,,,,,,,,,26.3649873,13.16130667,47.17424504,,,,15,,1200,,,18,,0.476401565,3654,7670,,,0.456,,,,,25.97162647,,,,,0.6492891,2329,3587,0.612025557,0.686552642,0.123195085,401,3255,0.082516968,0.163873201,0.725954837,2604,3587,0.668824839,0.783084835,10135,,,,,0.241144549,2444,10135,,,0.1975333,2002,10135,,,0.269758263,2734,10135,,,0.017464233,177,10135,,,0.005624075,57,10135,,,0.000888012,9,10135,,,0.168524914,1708,10135,,,0.537937839,5452,10135,,,0.010601427,104,9810,0,0.023199779,0.515836211,5228,10135,,,0.499478426,5267,10545,, -05,013,05013,AR,Calhoun County,2024,1,15126.80342,147,13665,11161.98834,19091.6185,0,,,,2,,,,2,20633.02395,11548.14688,34031.03523,1,,,,2,14775.2707,10089.32778,19461.21363,,,,,2,,0.206,,,0.177,0.236,4.408337742,,,3.503399726,5.410352262,5.381817228,,,4.26185767,6.564567344,0.103448276,33,319,0.070028,0.136868552,0,,,,,,,,,,,,,0.093877551,0.057356157,0.130398945,,,,,,,0.212,,,0.173,0.253,0.419,,,0.337,0.503,5.7,0.246884483,0.121,,,0.303,,,0.253,0.359,0.074066259,351,4739,,,0.149252758,,,0.11834224,0.182628157,0.166666667,2,12,0.039062389,0.344663233,485.1,23,4741,,,30.10033445,27,897,19.83631007,43.79440629,,,,,,,,,,,,,36.39514731,22.52916982,55.63384876,,,,,,,0.117417919,422,3594,0.099545578,0.135290259,0.000210926,1,4741,,,4741,,0,4695,,,,,0,4695,,,,3326,,,,,,,,,3264,0.34,,,,,,,0.43,,0.34,0.34,,,,,,,0.23,,0.35,0.852975159,2953,3462,0.803843887,0.902106431,0.37488626,412,1099,0.264437168,0.485335352,0.031197302,74,2372,,,0.196,166,,0.116170213,0.275829787,,,,,,,0.190140845,0,0.392161584,0.441558442,0.152589603,0.73052728,0.059931507,0,0.129288619,4.916529708,98719,20079,2.379270901,7.453788515,0.176008969,157,892,0.093618996,0.258398941,12.6555579,6,4741,,,140.8065084,36,25567,98.61914741,194.9355595,,,,,,,,,,,,,151.8026566,100.8717628,219.3971046,,,,9.6,,,,,0,,,,,0.074074074,130,1755,0.037312172,0.110835977,0.063157895,0.01468346,0.11163233,0.002279202,0,0.022371872,0.007977208,0,0.017830631,0.847839318,1393,1643,0.774987651,0.920690986,,,,,,,,,,,,,0.924324324,0.840542378,1,0.257,,1643,0.166965652,0.347034348,70.83945776,,,68.12345916,73.55545635,,,,,,,,,,,,,70.88576592,67.8675207,73.90401113,,,,728.6045466,147,13665,601.1438624,856.0652309,,,,,,,897.6694868,601.1833437,1289.203122,,,,718.4963577,571.7571841,865.2355312,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.131,,,0.113,0.151,0.183,,,0.159,0.209,0.106,,,0.09,0.124,121.3,5,4123,,,0.121,580,,,,0.246884483,1325.275903,5368,,,,,,,,,,,,,,,,,,,,,,,,,,0.359,,,0.347,0.372,0.129329403,351,2714,0.107882595,0.150776212,0.084233261,78,926,0.058020495,0.110446027,0.001064963,5,4695,,,939,,,,,,,,,,,2.494602107,,,,,,,,,2.548269829,2.881162149,,,,,,,,,2.973543914,0.004759624,,,,,-3442.381,,,,,0.964217136,37159,38538,0.626876018,1.301558255,52535,,,44830.82979,60239.17021,,,,,,,,,,98000,6064.680851,189935.3192,63011,54912.44681,71109.55319,,,,,,0.711610487,380,534,,,23.29282198,,,,,0.22162368,,52535,,,21.50537634,4,186,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,38.95381191,14,35940,21.29641145,65.35787736,,,,,,,,,,,,,46.2374292,23.89155438,80.76748371,,,,0,,400,,,0,,0.522009569,2182,4180,,,0.401,,,,,4.857819171,,,,,0.864485981,1295,1498,0.818767038,0.910204925,0.044680851,63,1410,0,0.09714282,0.770360481,1154,1498,0.683169569,0.857551393,4695,,,,,0.182747604,858,4695,,,0.227476038,1068,4695,,,0.20170394,947,4695,,,0.008306709,39,4695,,,0.002768903,13,4695,,,0.000212993,1,4695,,,0.051757189,243,4695,,,0.717358892,3368,4695,,,0.011774967,54,4586,0,0.027274225,0.486900959,2286,4695,,,1,4739,4739,, -05,015,05015,AR,Carroll County,2024,1,10070.86453,579,77037,8644.491377,11497.23768,0,,,,2,,,,2,,,,2,5002.10395,3011.593337,7811.404939,1,11058.02829,9247.010252,12869.04632,,,,,2,,0.205,,,0.174,0.24,4.308041422,,,3.426788074,5.270435666,5.359791684,,,4.324648152,6.552765798,0.077922078,174,2233,0.066804101,0.089040055,0,,,,,,,,,,0.040229885,0.023372942,0.057086828,0.090410959,0.075700955,0.105120963,,,,,,,0.201,,,0.163,0.242,0.367,,,0.295,0.445,7.3,0.068550358,0.134,,,0.305,,,0.254,0.359,0.53970276,15252,28260,,,0.138875779,,,0.109321153,0.173316211,0.4,16,40,0.320030612,0.477026676,239.1,68,28435,,,37.59398496,215,5719,32.56876351,42.61920641,,,,,,,,,,36.28447025,26.93103319,47.83655056,35.6029106,29.64105722,41.56476399,146.6666667,73.21547156,262.4271802,,,,0.155397885,3351,21564,0.133951077,0.176844694,0.000668191,19,28435,,,1496.578947,0.000278338,8,28742,,,3592.75,0.000869807,25,28742,,,1149.68,1908,,,,,,,,1229,1844,0.36,,,,,,,,0.24,0.37,0.4,,,,,,0.33,,0.15,0.41,0.857879088,17312,20180,0.835523098,0.880235078,0.436961119,2686,6147,0.35489088,0.519031359,0.029477374,370,12552,,,0.212,1297,,0.13812766,0.28587234,,,,0.481481482,0,0.998007794,,,,0.272373541,0.147726675,0.397020407,0.115531335,0.057294552,0.173768118,4.54691298,102883,22627,3.746413192,5.347412768,0.147827481,922,6237,0.085952163,0.209702799,13.71549147,39,28435,,,110.4362231,156,141258,93.10595354,127.7664926,,,,,,,,,,,,,128.2641881,107.1673526,149.3610236,,,,8,,,,,1,,,,,0.142599278,1580,11080,0.110532242,0.174666314,0.082875458,0.058049489,0.107701427,0.050541516,0.031038101,0.070044932,0.017148014,0.006156343,0.028139686,0.745442095,8709,11683,0.703451327,0.787432863,,,,,,,,,,0.780896333,0.672775018,0.889017649,0.725679827,0.674095451,0.777264204,0.27,,11683,0.210211449,0.329788552,75.92686507,,,74.77569712,77.07803302,,,,,,,,,,89.52311397,72.23385732,106.8123706,74.94194314,73.58598381,76.29790247,,,,480.0973708,579,77037,436.7774152,523.4173264,,,,,,,,,,272.3767878,174.5169474,405.2750698,516.369324,465.2315363,567.5071117,,,,89.39879312,24,26846,57.27949361,133.0183178,,,,,,,,,,,,,115.7742402,70.71791366,178.8039242,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.13,,,0.112,0.15,0.179,,,0.154,0.205,0.102,,,0.088,0.12,252.7,61,24137,,,0.134,3780,,,,0.068550358,1881.433134,27446,,,21.15382355,18,85091,12.5370965,33.43216118,,,,,,,,,,,,,27.22652469,16.13616406,43.02964707,,,,0.301,,,0.287,0.315,0.188747497,2922,15481,0.160151752,0.217343242,0.074190014,474,6389,0.051551716,0.096828312,0.000243546,7,28742,,,4106,0.852919708,233.7,274,,,,,,,,2.790651059,,,,,,,,2.766720609,2.819574614,2.714756857,,,,,,,,2.778966473,2.681757782,0.07610961,,,,,-9081.733667,,,,,0.818835563,36665,44777,0.714039136,0.923631989,50433,,,44035.89362,56830.10638,8862,8604.638298,9119.361702,,,,,,,60802,40555.02128,81048.97872,56450,50318.59575,62581.40426,,,,,,0.700671488,2713,3872,,,85.15666025,,,,,0.230860746,,50433,,,8.108108108,12,1480,,,,,,,,,,,,,,,,,,,,,,,,,,23.24895427,36,141258,15.79653646,33.00003479,25.48528225,,,,,,,,,,,,,25.45558817,16.30987566,37.87589741,,,,19.11396169,27,141258,12.59622119,27.80981073,,,,,,,,,,,,,22.58172326,14.61370065,33.33507818,,,,25.93994141,51,196608,19.31399019,34.10623239,,,,,,,,,,,,,27.70332955,20.04903696,37.3162031,,,,8.275862069,,2900,,,24,,0.581133005,11797,20300,,,0.563,,,,,0.694676405,,,,,0.764462446,8682,11357,0.737335972,0.79158892,0.11692024,1268,10845,0.090121213,0.143719267,0.82107951,9325,11357,0.790630342,0.851528679,28742,,,,,0.216408044,6220,28742,,,0.238431564,6853,28742,,,0.006958458,200,28742,,,0.014369216,413,28742,,,0.02658131,764,28742,,,0.015656531,450,28742,,,0.159800988,4593,28742,,,0.762751374,21923,28742,,,0.043646512,1173,26875,0.031056664,0.05623636,0.495790133,14250,28742,,,0.821054494,23203,28260,, -05,017,05017,AR,Chicot County,2024,1,15425.01749,258,27118,12451.96864,18398.06633,0,,,,2,,,,2,18846.96875,14437.99868,23255.93882,,,,,2,12544.46475,7814.594432,17274.33506,,,,,2,,0.306,,,0.267,0.346,5.329190464,,,4.323393817,6.417962143,5.937941036,,,4.738093776,7.138178339,0.136191677,108,793,0.112318872,0.160064482,0,,,,,,,0.167346939,0.134294846,0.200399031,0.192307692,0.085186425,0.299428959,0.067510549,0.03556652,0.099454577,,,,,,,0.271,,,0.229,0.319,0.471,,,0.389,0.552,4.9,0.161058463,0.199,,,0.396,,,0.338,0.456,0.36226489,3698,10208,,,0.105706274,,,0.081437145,0.132257388,0.25,4,16,0.11917111,0.394165016,668.7,67,10019,,,39.91915109,79,1979,31.60436784,49.7511729,,,,,,,47.87714544,35.86326733,62.62448503,,,,31.15264798,19.02884671,48.11273817,,,,,,,0.105029374,733,6979,0.088348523,0.121710225,0.000598862,6,10019,,,1669.833333,0.000506432,5,9873,,,1974.6,0.005773321,57,9873,,,173.2105263,5359,,,,,,,6486,,5396,0.41,,,,,,,0.44,,0.39,0.3,,,,,,,0.23,,0.33,0.79646143,5627,7065,0.755721874,0.837200986,0.496704332,1055,2124,0.406456332,0.586952331,0.062269836,186,2987,,,0.373,783,,0.227638298,0.518361702,,,,,,,0.469026549,0.331857726,0.606195372,0.530434783,0.294976819,0.765892747,0.112929624,0.017237748,0.208621499,6.498737682,79798,12279,5.27447261,7.723002755,0.45328565,1014,2237,0.33108059,0.575490711,10.97913964,11,10019,,,95.82477755,49,51135,70.89169795,126.6854378,,,,,,,88.0733945,56.43028571,131.0462297,,,,125.779835,81.39807732,185.6758488,,,,8.9,,,,,1,,,,,0.113580247,460,4050,0.079601442,0.147559052,0.099344692,0.06297684,0.135712544,0.022962963,0.005097416,0.040828511,0.00345679,0,0.009687798,0.850496278,2742,3224,0.802979715,0.898012841,,,,,,,0.869992973,0.757526458,0.982459488,,,,0.874213837,0.829228799,0.919198874,0.277,,3224,0.199388391,0.354611609,70.97643842,,,68.98585788,72.96701897,,,,,,,68.56864727,65.88358059,71.25371395,,,,72.67167381,69.20423882,76.13910879,,,,690.2903401,258,27118,599.1562063,781.424474,,,,,,,806.3758868,666.0724594,946.6793142,,,,606.9365909,475.6701886,738.2029931,,,,102.2808633,10,9777,49.04764955,188.0981492,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.17,,,0.148,0.194,0.208,,,0.181,0.235,0.16,,,0.139,0.183,365.4,31,8483,,,0.199,2070,,,,0.161058463,1900.489861,11800,,,,,,,,,,,,,,,,,,,,,,,,,,0.405,,,0.39,0.418,0.129296236,632,4888,0.106657938,0.151934534,0.049726277,109,2192,0.031853937,0.067598618,0.002127013,21,9873,,,470.1428571,,,,,,,,,,,2.30628668,,,,,,,2.385960883,,,2.197991917,,,,,,,2.291524427,,,0.056575314,,,,,-33265.33,,,,,0.832776292,37375,44880,0.55220153,1.113351055,38217,,,32723.04255,43710.95745,,,,98250,32394,164106,27599,20669.29787,34528.70213,70382,53761.91489,87002.08511,58500,50988.85106,66011.14894,,,,,,1,1267,1267,,,57.84133844,,,,,0.304654997,,38217,,,18.27242525,11,602,,,20.51787107,15,73107,11.48369668,33.84110806,,,,,,,28.21236214,14.08350953,50.47970893,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,27.37850787,14,51135,14.96808502,45.93648406,,,,,,,,,,,,,,,,,,,19.150013,14,73107,10.4694903,32.13046784,,,,,,,,,,,,,,,,,,,11,,1000,,,11,,0.517728707,4103,7925,,,0.433,,,,,10.65277712,,,,,0.679391218,2723,4008,0.645609166,0.713173269,0.148709315,530,3564,0.103827441,0.19359119,0.746007984,2990,4008,0.704939346,0.787076622,9873,,,,,0.216246328,2135,9873,,,0.223842804,2210,9873,,,0.526587663,5199,9873,,,0.005773321,57,9873,,,0.007799048,77,9873,,,0.000506432,5,9873,,,0.064114251,633,9873,,,0.389040818,3841,9873,,,0.010666943,103,9656,0,0.021449473,0.490327155,4841,9873,,,1,10208,10208,, -05,019,05019,AR,Clark County,2024,1,9929.518982,401,60833,8432.473921,11426.56404,0,,,,2,,,,2,11976.86657,8569.476784,15384.25636,,,,,2,9586.876311,7804.530589,11369.22203,,,,,2,,0.212,,,0.183,0.242,4.56588175,,,3.646162162,5.536366879,5.699438123,,,4.600250993,6.817862981,0.090632603,149,1644,0.076754917,0.10451029,0,,,,,,,0.126436782,0.095205103,0.15766846,0.110169492,0.053675874,0.166663109,0.073786408,0.057820956,0.08975186,,,,,,,0.201,,,0.164,0.241,0.426,,,0.351,0.502,6.3,0.107064354,0.162,,,0.323,,,0.272,0.378,0.495477012,10626,21446,,,0.146604094,,,0.115858186,0.180173617,0.365853659,15,41,0.285340843,0.444798929,689.5,147,21321,,,17.04611792,146,8565,14.28105428,19.81118157,,,,,,,27.12264151,19.85718244,36.1778029,28.51711027,15.96081014,47.03463664,12.90109163,10.19777757,16.10114622,,,,,,,0.104166667,1560,14976,0.087485816,0.120847518,0.000469021,10,21321,,,2132.1,0.000517647,11,21250,,,1931.818182,0.003058824,65,21250,,,326.9230769,2215,,,,,,,3246,,2037,0.4,,,,,,,0.43,,0.4,0.34,,,,,,,0.27,,0.35,0.897295557,11148,12424,0.874428652,0.920162462,0.576072235,2552,4430,0.495749128,0.656395341,0.045124238,385,8532,,,0.24,999,,0.153021277,0.326978723,,,,,,,0.446192053,0.286620899,0.605763207,0.477973568,0.238127903,0.717819233,0.126712329,0.068725863,0.184698795,4.725895988,97051,20536,3.934030371,5.517761604,0.358226933,1487,4151,0.260717269,0.455736597,16.41574035,35,21321,,,66.30456502,73,110098,51.9721947,83.36803592,,,,,,,75.8955677,46.35898446,117.2145488,,,,67.7686829,50.45823567,89.10330256,,,,9.7,,,,,0,,,,,0.163167367,1360,8335,0.126048119,0.200286614,0.13737129,0.10085442,0.17388816,0.029274145,0.010831466,0.047716825,0.007078584,0.000246874,0.013910295,0.736524496,7201,9777,0.695795999,0.777252994,,,,,,,0.756321839,0.657812446,0.854831232,,,,0.748850575,0.736524236,0.761176913,0.251,,9777,0.20470025,0.29729975,73.97049444,,,72.80960923,75.13137965,,,,,,,72.08056392,69.53852147,74.62260636,,,,74.22819719,72.86130053,75.59509386,,,,557.6393806,401,60833,500.1901948,615.0885664,,,,,,,653.7639307,528.2668144,779.261047,,,,541.436859,473.5155034,609.3582145,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.135,,,0.117,0.154,0.187,,,0.162,0.213,0.118,,,0.101,0.136,141.6,26,18358,,,0.162,3500,,,,0.107064354,2461.944815,22995,,,,,,,,,,,,,,,,,,,,,,,,,,0.357,,,0.343,0.371,0.121884164,1330,10912,0.100437356,0.143330973,0.058450704,249,4260,0.039386874,0.077514534,0.000988235,21,21250,,,1011.904762,0.867759563,158.8,183,,,,,,,,2.369694938,,,,,,,2.117749365,,2.664619394,2.245922888,,,,,,,1.832247221,,2.590249952,0.038651618,,,,,-10185.566,,,,,0.790102704,38542,48781,0.663471993,0.916733415,50519,,,44183.85106,56854.14894,,,,,,,29879,20971.42553,38786.57447,40568,15140.42553,65995.57447,59846,51629.48936,68062.51064,,,,,,0.617760618,1600,2590,,,19.02710353,,,,,0.230467745,,50519,,,14.54545455,16,1100,,,,,,,,,,,,,,,,,,,,,,,,,,14.32702281,15,110098,7.83271669,24.03830983,13.62422569,,,,,,,,,,,,,18.17210675,9.389792731,31.74301343,,,,14.5325074,16,110098,8.306583638,23.59988156,,,,,,,,,,,,,17.27437015,9.197874576,29.53969905,,,,23.16781219,36,155388,16.22645083,32.07401761,,,,,,,35.05554956,18.66560374,59.94605738,,,,20.64390207,12.93742352,31.25511583,,,,,,1900,,,,,0.472558401,8395,17765,,,0.534,,,,,47.49890374,,,,,0.624010057,4964,7955,0.592538646,0.655481467,0.13747374,1047,7616,0.10283592,0.172111559,0.776869893,6180,7955,0.739884084,0.813855703,21250,,,,,0.199576471,4241,21250,,,0.166682353,3542,21250,,,0.232470588,4940,21250,,,0.006635294,141,21250,,,0.008047059,171,21250,,,0.004847059,103,21250,,,0.054023529,1148,21250,,,0.679717647,14444,21250,,,0.005345233,109,20392,0,0.011880668,0.519576471,11041,21250,,,0.529702509,11360,21446,, -05,021,05021,AR,Clay County,2024,1,11699.07851,346,39040,9638.321377,13759.83564,0,,,,2,,,,2,,,,2,,,,2,12150.25152,9973.571306,14326.93174,,,,,2,,0.226,,,0.192,0.265,4.846571219,,,3.925249772,5.858802805,6.292758264,,,5.204666468,7.46390643,0.080589255,93,1154,0.064883944,0.096294565,0,,,,,,,,,,,,,0.083029197,0.066693263,0.099365131,,,,,,,0.241,,,0.194,0.291,0.391,,,0.317,0.473,6.4,0.070996773,0.175,,,0.322,,,0.271,0.381,0.604796592,8801,14552,,,0.137088574,,,0.107966297,0.171108607,0.304347826,7,23,0.193028658,0.417911766,320.6,46,14350,,,41.52249135,120,2890,34.093175,48.9518077,,,,,,,,,,,,,41.92717911,34.2305725,49.62378572,,,,,,,0.110517886,1242,11238,0.093837035,0.127198737,6.96864E-05,1,14350,,,14350,0.00042061,6,14265,,,2377.5,0.000981423,14,14265,,,1018.928571,3282,,,,,,,,,3290,0.35,,,,,,,,,0.35,0.37,,,,,,,,,0.37,0.842970412,8718,10342,0.817024243,0.868916581,0.52214243,1745,3342,0.441853499,0.60243136,0.039845758,217,5446,,,0.281,845,,0.194021277,0.367978723,,,,,,,,,,,,,0.302451334,0.238671988,0.36623068,4.925322615,93128,18908,3.957138168,5.893507061,0.258954979,788,3043,0.181856637,0.33605332,15.33101045,22,14350,,,138.2747149,101,73043,111.3073721,165.2420577,,,,,,,,,,,,,145.7368368,117.3141766,174.159497,,,,8.4,,,,,0,,,,,0.108880309,705,6475,0.082137192,0.135623425,0.08770556,0.062222751,0.113188369,0.013127413,0.003644478,0.022610348,0.011583012,0.003011908,0.020154115,0.814497901,5045,6194,0.774320908,0.854674894,,,,,,,,,,,,,0.795001202,0.741528471,0.848473932,0.348,,6194,0.291419935,0.404580065,72.50992008,,,71.06757211,73.95226804,,,,,,,,,,,,,72.03733412,70.53996084,73.5347074,,,,598.7113406,346,39040,531.7886959,665.6339853,,,,,,,,,,,,,616.3604611,546.8842663,685.836656,,,,117.4053419,16,13628,67.10729714,190.6589199,,,,,,,,,,,,,127.6527844,72.96459593,207.3001244,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.147,,,0.127,0.169,0.205,,,0.177,0.234,0.11,,,0.094,0.127,106.5,13,12212,,,0.175,2570,,,,0.070996773,1141.841095,16083,,,23.10749607,10,43276,11.08094255,42.495508,,,,,,,,,,,,,24.4265859,11.71349739,44.92136115,,,,0.334,,,0.316,0.35,0.134116495,1096,8172,0.111478198,0.156754793,0.049859769,160,3209,0.034370408,0.065349131,0.00084122,12,14265,,,1188.75,0.969207317,158.95,164,,,,,,,,2.77976488,,,,,,,,,2.808786584,2.625811278,,,,,,,,,2.647112139,0.044196496,,,,,-3252.609667,,,,,0.769024771,34460,44810,0.69667436,0.841375183,46855,,,42181.97872,51528.02128,9048,2009.87234,16086.12766,,,,,,,95918,61301.65957,130534.3404,46420,41055.91489,51784.08511,,,,,,0.606507592,1398,2305,,,,,,,,0.248490022,,46855,,,11.4213198,9,788,,,,,,,,,,,,,,,,,,,,,,,,,,22.13267903,18,73043,12.6507384,35.94208412,24.6430185,,,,,,,,,,,,,23.22640145,13.27589527,37.71822081,,,,23.27396191,17,73043,13.55794049,37.26386761,,,,,,,,,,,,,24.52996263,14.28960719,39.27484642,,,,41.71841043,43,103072,30.19182049,56.19442507,,,,,,,,,,,,,43.8717313,31.75018948,59.09493415,,,,7.857142857,,1400,,,11,,0.450891692,5183,11495,,,0.562,,,,,11.09598971,,,,,0.73478476,4455,6063,0.707263343,0.762306177,0.100437445,574,5715,0.070681857,0.130193034,0.761504206,4617,6063,0.724546021,0.798462391,14265,,,,,0.215352261,3072,14265,,,0.214090431,3054,14265,,,0.009954434,142,14265,,,0.006589555,94,14265,,,0.002733964,39,14265,,,0.000280407,4,14265,,,0.024956187,356,14265,,,0.941675429,13433,14265,,,0,0,13780,0,0.00691721,0.504311251,7194,14265,,,1,14552,14552,, -05,023,05023,AR,Cleburne County,2024,1,10706.65271,529,65410,9068.564659,12344.74075,0,,,,2,,,,2,,,,2,,,,2,10924.71295,9229.973299,12619.45259,,,,,2,,0.207,,,0.174,0.242,4.493728038,,,3.614004651,5.494766307,5.922409622,,,4.841076531,7.118001108,0.083280356,131,1573,0.069625684,0.096935028,0,,,,,,,,,,,,,0.079561043,0.065670314,0.093451772,,,,,,,0.226,,,0.179,0.271,0.376,,,0.303,0.45,6.7,0.066200989,0.161,,,0.319,,,0.263,0.377,0.379385699,9375,24711,,,0.131116737,,,0.103309351,0.163045462,0.292682927,12,41,0.210744009,0.376863707,235.9,59,25015,,,35.1725654,160,4549,29.72251993,40.62261087,,,,,,,,,,47.61904762,22.83518427,87.57312401,34.49916726,28.88376746,40.11456707,,,,,,,0.111719906,2039,18251,0.095039055,0.128400757,0.000679592,17,25015,,,1471.470588,0.000435058,11,25284,,,2298.545455,0.001226072,31,25284,,,815.6129032,1776,,,,,,,,,1787,0.39,,,,,,,,,0.39,0.38,,,,,,,,,0.38,0.879056523,16361,18612,0.858130156,0.89998289,0.426271353,2171,5093,0.357453518,0.495089188,0.042399288,381,8986,,,0.203,929,,0.120787234,0.285212766,,,,,,,,,,0.315352697,0,0.746980996,0.192326139,0.139388162,0.245264116,4.145896269,97441,23503,3.601604752,4.690187786,0.193637328,913,4715,0.12656125,0.260713405,14.39136518,36,25015,,,113.7073397,142,124882,95.00480809,132.4098714,,,,,,,,,,,,,117.9255288,98.32099567,137.5300619,,,,8.7,,,,,0,,,,,0.0859375,935,10880,0.063491564,0.108383437,0.064215914,0.046618582,0.081813247,0.021047794,0.008770317,0.033325271,0.003676471,0,0.008904774,0.806286081,7542,9354,0.769467937,0.843104225,,,,,,,,,,,,,0.803483941,0.767171913,0.83979597,0.354,,9354,0.299790508,0.408209493,75.16925247,,,73.95937278,76.37913217,,,,,,,,,,,,,74.84567429,73.61284548,76.0785031,,,,500.8395866,529,65410,452.5607734,549.1183998,,,,,,,,,,,,,515.6809181,465.2595593,566.102277,,,,96.94149581,20,20631,59.21438411,149.7182779,,,,,,,,,,,,,100.8867414,60.74040867,157.5471437,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.136,,,0.116,0.158,0.194,,,0.166,0.222,0.102,,,0.086,0.119,110.3,24,21754,,,0.161,4010,,,,0.066200989,1719.239671,25970,,,,,,,,,,,,,,,,,,,,,,,,,,0.35,,,0.331,0.368,0.129563932,1753,13530,0.109308613,0.149819251,0.063041289,313,4965,0.043977459,0.082105119,0.000751463,19,25284,,,1330.736842,0.905889423,188.425,208,,,,,,,,3.220500425,,,,,,,,,3.222397681,2.910996747,,,,,,,,,2.931599771,0.052391673,,,,,-3942.8345,,,,,0.880517086,40119,45563,0.672154121,1.088880052,52662,,,46532.97872,58791.02128,53819,52795.51064,54842.48936,,,,82045,25443.29787,138646.7021,,,,54389,49936.40426,58841.59575,,,,,,0.597010277,1917,3211,,,76.98493994,,,,,0.22108921,,52662,,,9.450171821,11,1164,,,7.97207496,14,175613,4.358407565,13.37578717,,,,,,,,,,,,,8.435615167,4.611829309,14.15352887,,,,18.42707792,23,124882,11.09430464,28.77616477,18.41738601,,,,,,,,,,,,,19.5673349,11.78081383,30.55681729,,,,20.01889784,25,124882,12.95517516,29.5518423,,,,,,,,,,,,,21.20962747,13.7257526,31.30959413,,,,27.33282844,48,175613,20.15307,36.23936507,,,,,,,,,,,,,27.71702126,20.29234312,36.97062219,,,,,,2300,,,,,0.631159781,12680,20090,,,0.506,,,,,16.23444324,,,,,0.786749482,8360,10626,0.76217331,0.811325655,0.076930703,776,10087,0.055950441,0.097910965,0.812441182,8633,10626,0.780504023,0.844378341,25284,,,,,0.184859991,4674,25284,,,0.276103465,6981,25284,,,0.005537099,140,25284,,,0.008266097,209,25284,,,0.005181142,131,25284,,,0.000435058,11,25284,,,0.030533144,772,25284,,,0.934978643,23640,25284,,,0.003477168,83,23870,0,0.009658251,0.499802247,12637,25284,,,0.727125572,17968,24711,, -05,025,05025,AR,Cleveland County,2024,1,10924.69045,187,21365,8213.13946,13636.24144,0,,,,2,,,,2,16414.35286,8193.985805,29369.81137,1,,,,2,10332.13315,7429.393101,13234.87321,,,,,2,,0.216,,,0.186,0.249,4.584420713,,,3.671751322,5.593519421,5.791965572,,,4.675785017,6.975165821,0.101289134,55,543,0.075911708,0.126666561,0,,,,,,,0.216666667,0.112422971,0.320910363,,,,0.085653105,0.060271173,0.111035037,,,,,,,0.226,,,0.182,0.27,0.404,,,0.323,0.487,7.2,0.076178502,0.134,,,0.312,,,0.259,0.368,0.013509934,102,7550,,,0.133812723,,,0.103992407,0.167552762,0.083333333,1,12,0.004083139,0.26580258,532.3,40,7514,,,22.19692658,39,1757,15.78418468,30.34392935,,,,,,,,,,,,,21.9858156,14.93829502,31.20711029,,,,,,,0.094883091,560,5902,0.080585218,0.109180963,,0,7514,,,,,0,7467,,,,,0,7467,,,,4907,,,,,,,1639,,4946,0.38,,,,,,,0.31,,0.38,0.48,,,,,,,0.4,,0.49,0.918714207,4973,5413,0.876166827,0.961261586,0.624439462,1114,1784,0.481973438,0.766905486,0.038797284,120,3093,,,0.201,322,,0.122361702,0.279638298,,,,,,,0.76635514,0.410695762,1,,,,0.118060985,0.047463227,0.188658743,5.228567249,107217,20506,4.13133885,6.325795648,0.28488746,443,1555,0.15539608,0.414378839,6.654245409,5,7514,,,98.36809847,39,39647,69.9493341,134.4724289,,,,,,,,,,,,,104.8312217,73.01878696,145.7948524,,,,9.3,,,,,0,,,,,0.052050473,165,3170,0.027295036,0.07680591,0.046029173,0.017812714,0.074245632,0.007570978,0,0.020269935,0.004416404,0,0.009882458,0.87040887,2512,2886,0.827979348,0.912838393,,,,,,,,,,,,,0.686676428,0.568313295,0.80503956,0.478,,2886,0.378469622,0.577530378,73.36898714,,,71.38636188,75.3516124,,,,,,,,,,,,,73.6641635,71.58672184,75.74160517,,,,572.6738055,187,21365,484.2686499,661.0789611,,,,,,,816.382218,517.5162962,1224.974167,,,,548.5894291,455.4036809,641.7751773,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.139,,,0.119,0.159,0.194,,,0.168,0.222,0.109,,,0.093,0.127,124.6,8,6419,,,0.134,1020,,,,0.076178502,661.915003,8689,,,,,,,,,,,,,,,,,,,,,,,,,,0.368,,,0.351,0.383,0.107251108,460,4289,0.088187278,0.126314937,0.064591897,110,1703,0.043145088,0.086038705,0.000669613,5,7467,,,1493.4,,,,,,,,,,,2.798660979,,,,,,,2.354811713,,2.879333919,2.545757754,,,,,,,2.02992058,,2.667092829,0.098307113,,,,,-4689.138,,,,,0.771223725,42597,55233,0.607628286,0.934819164,55533,,,47445.17021,63620.82979,,,,,,,20344,12331.23404,28356.76596,,,,60817,47841.68085,73792.31915,,,,,,0.579655946,775,1337,,,10.94219902,,,,,0.275241748,,55533,,,11.20448179,4,357,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,32.02903966,18,56199,18.9824388,50.61969122,,,,,,,,,,,,,33.76382207,19.29894162,54.83033172,,,,13.33333333,,900,,,12,,0.577385726,3600,6235,,,0.529,,,,,1.836894928,,,,,0.835886214,2292,2742,0.787139927,0.884632502,0.047321079,121,2557,0.013299699,0.08134246,0.727935813,1996,2742,0.663120045,0.792751582,7467,,,,,0.217624213,1625,7467,,,0.217624213,1625,7467,,,0.10794161,806,7467,,,0.00669613,50,7467,,,0.001874916,14,7467,,,0.00053569,4,7467,,,0.029998661,224,7467,,,0.838355431,6260,7467,,,0,0,7248,0,0.011835987,0.506763091,3784,7467,,,1,7550,7550,, -05,027,05027,AR,Columbia County,2024,1,13215.18766,466,64017,11410.57239,15019.80293,0,,,,2,,,,2,20230.55337,16593.38857,23867.71817,,,,,2,9826.227474,7783.452921,11869.00203,,,,,2,,0.24,,,0.209,0.275,4.843201593,,,3.923699735,5.904671672,5.943626376,,,4.852752098,7.155286982,0.114361702,215,1880,0.099975517,0.128747887,0,,,,,,,0.172371638,0.146487721,0.198255556,,,,0.063559322,0.047996088,0.079122556,,,,,,,0.23,,,0.189,0.272,0.417,,,0.341,0.497,6.5,0.086118966,0.164,,,0.338,,,0.283,0.394,0.520415771,11866,22801,,,0.139370225,,,0.108891508,0.173435724,0.47826087,11,23,0.376622098,0.570307191,917.4,208,22672,,,18.89424296,149,7886,15.86040464,21.92808128,,,,,,,33.29791003,26.90810074,40.7482089,,,,10.98901099,8.156255767,14.48764103,,,,,,,0.100860565,1676,16617,0.084179713,0.117541416,0.000617502,14,22672,,,1619.428571,0.000450126,10,22216,,,2221.6,0.00207058,46,22216,,,482.9565217,2858,,,,,,,2623,,2860,0.36,,,,,,,0.36,,0.36,0.43,,,,,,,0.36,,0.45,0.883078441,12530,14189,0.855185416,0.910971467,0.572223288,2983,5213,0.479386975,0.665059601,0.043591486,385,8832,,,0.299,1378,,0.198914894,0.399085106,,,,,,,0.614099217,0.546755261,0.681443173,0.078534031,0,0.35128961,0.206499383,0.107831331,0.305167435,5.959487777,102384,17180,4.670182282,7.248793271,0.356492269,1683,4721,0.280690259,0.432294278,12.79110798,29,22672,,,83.1732748,97,116624,67.44792288,101.4643418,,,,,,,109.6651557,79.9905171,146.7406066,,,,73.72285987,54.89151152,96.93194567,,,,9.8,,,,,1,,,,,0.149024246,1260,8455,0.111030628,0.187017865,0.127139364,0.091122903,0.163155826,0.056771141,0.030437516,0.083104767,0.002247191,0,0.005233378,0.85060742,7772,9137,0.814576907,0.886637934,,,,,,,0.789118065,0.687265338,0.890970793,,,,0.863411052,0.806958634,0.91986347,0.221,,9137,0.158529132,0.283470868,72.26473302,,,70.98773004,73.54173601,,,,,,,66.47120679,64.3307352,68.61167837,,,,75.31558312,73.74848953,76.88267671,,,,616.5710349,466,64017,557.364881,675.7771888,,,,,,,943.5868007,819.7606172,1067.412984,,,,473.2660225,406.2460597,540.2859853,,,,67.16447394,17,25311,39.12578116,107.5368291,,,,,,,124.7790371,64.47514931,217.9638666,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.148,,,0.128,0.168,0.198,,,0.172,0.226,0.13,,,0.112,0.148,203.2,39,19191,,,0.164,3770,,,,0.086118966,2114.392853,24552,,,,,,,,,,,,,,,,,,,,,,,,,,0.365,,,0.351,0.379,0.120992589,1453,12009,0.09954578,0.142439397,0.051033058,247,4840,0.034352207,0.067713909,0.000900252,20,22216,,,1110.8,0.925,233.1,252,,,,,,,,2.889977985,,,,,,,2.545821761,,3.189232734,2.769316774,,,,,,,2.243878054,,3.270655609,0.127139671,,,,,-6309.1245,,,,,0.814084568,37697,46306,0.659812327,0.968356809,47278,,,40976.21277,53579.78723,,,,,,,30384,23134.97872,37633.02128,55764,36202.12766,75325.87234,54588,47466.46809,61709.53192,,,,,,0.628328612,2218,3530,,,41.97834088,,,,,0.246266763,,47278,,,11.71303075,16,1366,,,11.54040051,19,164639,6.948074979,18.02176494,,,,,,,22.42732684,11.94160699,38.35141192,,,,,,,,,,12.71145584,14,116624,6.768314877,21.73697661,12.00439018,,,,,,,,,,,,,16.85863,8.084368375,31.00362082,,,,21.43641103,25,116624,13.87251496,31.6443714,,,,,,,41.42905883,24.13395348,66.33193648,,,,,,,,,,24.90296953,41,164639,17.87080089,33.78369011,,,,,,,36.22875873,22.42617266,55.37950614,,,,19.47060451,11.72257582,30.40576081,,,,16.19047619,,2100,,,34,,0.466865348,8616,18455,,,0.51,,,,,30.03384586,,,,,0.723230258,5660,7826,0.685649176,0.760811341,0.11582959,851,7347,0.080212532,0.151446649,0.75632507,5919,7826,0.713451575,0.799198566,22216,,,,,0.211424199,4697,22216,,,0.176494418,3921,22216,,,0.348622614,7745,22216,,,0.00639179,142,22216,,,0.010622974,236,22216,,,0.000630176,14,22216,,,0.032229024,716,22216,,,0.590430321,13117,22216,,,0.006471581,138,21324,0,0.014092176,0.514404033,11428,22216,,,0.543748081,12398,22801,, -05,029,05029,AR,Conway County,2024,1,11427.9437,412,57291,9653.091524,13202.79587,0,,,,2,,,,2,12979.16291,7928.009893,20045.26444,1,,,,2,12031.37851,9987.10595,14075.65106,,,,,2,,0.228,,,0.195,0.267,4.671142369,,,3.714661708,5.711991612,5.922334123,,,4.763845525,7.168359804,0.086569064,136,1571,0.072663545,0.100474583,0,,,,,,,0.171597633,0.114753057,0.228442209,,,,0.072156863,0.057953961,0.086359764,,,,,,,0.227,,,0.181,0.277,0.406,,,0.324,0.493,6.1,0.097478411,0.177,,,0.322,,,0.267,0.384,0.456577359,9458,20715,,,0.13538881,,,0.104779145,0.170445418,0.333333333,9,27,0.231289482,0.434909506,536.6,112,20873,,,30.45325779,129,4236,25.1979885,35.70852708,,,,,,,30.8056872,16.40273102,52.67866331,,,,31.90184049,25.77050414,38.03317684,,,,,,,0.104039978,1728,16609,0.088550617,0.11952934,0.000574905,12,20873,,,1739.416667,0.000427635,9,21046,,,2338.444444,0.002660838,56,21046,,,375.8214286,1900,,,,,,,1452,,1845,0.35,,,,,,,0.42,,0.35,0.32,,,,,,,0.31,,0.33,0.89208037,12920,14483,0.870480095,0.913680646,0.525883838,2499,4752,0.44509107,0.606676607,0.037450957,315,8411,,,0.269,1239,,0.192744681,0.345255319,,,,,,,0.568452381,0.32538671,0.811518052,0.278637771,0,0.577363602,0.291405805,0.223324423,0.359487187,4.8140625,98592,20480,4.085306321,5.542818679,0.276282051,1293,4680,0.202095773,0.350468329,11.97719542,25,20873,,,86.07251131,90,104563,69.21246343,105.7977294,,,,,,,134.8958772,77.1046493,219.0624534,,,,82.4800575,64.29725119,104.2085907,,,,9.5,,,,,0,,,,,0.10188457,865,8490,0.072783008,0.130986132,0.079810539,0.053581512,0.106039566,0.016372203,0.005532264,0.027212141,0.005300353,0.001514539,0.009086167,0.789105673,6997,8867,0.753448439,0.824762907,,,,,,,,,,,,,0.778417015,0.748998894,0.807835137,0.415,,8867,0.349413949,0.480586051,74.09262445,,,72.78100374,75.40424516,,,,,,,73.95303034,69.72439512,78.18166557,,,,73.38154938,71.91577802,74.84732075,,,,526.9081691,412,57291,472.4948698,581.3214684,,,,,,,570.3547406,411.0615293,770.9539182,,,,548.8734788,487.5307858,610.2161719,,,,82.61249879,17,20578,48.12482491,132.2706134,,,,,,,,,,,,,94.8526622,53.08831499,156.4450416,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.144,,,0.123,0.168,0.199,,,0.171,0.23,0.118,,,0.1,0.137,159.6,28,17545,,,0.177,3670,,,,0.097478411,2073.658241,21273,,,,,,,,,,,,,,,,,,,,,,,,,,0.349,,,0.333,0.364,0.123389041,1484,12027,0.103133722,0.143644361,0.055417186,267,4818,0.037544845,0.073289526,0.00057018,12,21046,,,1753.833333,0.926377119,218.625,236,,,,,,,,2.892634864,,,,,,,2.914626213,,2.917048771,2.718455924,,,,,,,2.54263006,,2.784904389,0.077214439,,,,,-3116.711333,,,,,0.598228552,34446,57580,0.482284942,0.714172161,52405,,,45145.25532,59664.74468,46339,27139.34043,65538.65957,,,,35781,18867.80851,52694.19149,71797,38058.78723,105535.2128,51878,43991.53192,59764.46809,,,,,,0.88934789,3014,3389,,,31.31245158,,,,,0.222173457,,52405,,,9.532062392,11,1154,,,,,,,,,,,,,,,,,,,,,,,,,,19.29349989,18,104563,11.23917467,30.89076231,17.21450226,,,,,,,,,,,,,22.92400064,13.10304707,37.22714084,,,,9.563612368,10,104563,4.586123864,17.58782365,,,,,,,,,,,,,,,,,,,21.15766556,31,146519,14.37560725,30.0316174,,,,,,,,,,,,,21.00734417,13.59484551,31.01098407,,,,7.619047619,,2100,,,16,,0.54657017,8685,15890,,,0.614,,,,,23.07173041,,,,,0.681785799,5742,8422,0.64416871,0.719402889,0.085761972,668,7789,0.057315815,0.114208129,0.770600807,6490,8422,0.732425365,0.80877625,21046,,,,,0.223320346,4700,21046,,,0.200893281,4228,21046,,,0.111565143,2348,21046,,,0.009455479,199,21046,,,0.005844341,123,21046,,,0.000427635,9,21046,,,0.047609997,1002,21046,,,0.803288036,16906,21046,,,0.008557893,168,19631,0.000646679,0.016469108,0.501663024,10558,21046,,,0.693941588,14375,20715,, -05,031,05031,AR,Craighead County,2024,1,9884.395568,1688,315306,9230.655496,10538.13564,0,,,,2,,,,2,15252.72212,13234.13477,17271.30948,,4728.238256,2963.161742,7158.609542,1,9295.622832,8564.893203,10026.35246,,,,,2,,0.2,,,0.167,0.235,4.298908208,,,3.443634807,5.239961196,5.661851863,,,4.628958477,6.683468862,0.102852204,1071,10413,0.09701766,0.108686748,0,,,,,,,0.157654227,0.143716026,0.171592428,0.076923077,0.058064642,0.095781512,0.08423586,0.077559329,0.090912392,,,,0.132978723,0.084440586,0.181516861,0.197,,,0.156,0.242,0.427,,,0.36,0.497,6.6,0.091221759,0.154,,,0.305,,,0.253,0.361,0.577186216,64201,111231,,,0.143698432,,,0.114359011,0.178348169,0.25,23,92,0.196589092,0.305870283,802,900,112218,,,27.19589714,753,27688,25.25339291,29.13840137,,,,,,,37.76848782,33.19513168,42.34184396,39.11154032,31.06020859,48.61207348,21.47221746,19.30182114,23.64261379,,,,35.30895334,23.46254307,51.03126853,0.093448888,8680,92885,0.080342505,0.106555271,0.001229749,138,112218,,,813.173913,0.00079634,90,113017,,,1255.744444,0.004096729,463,113017,,,244.0971922,3457,,,,,,,3817,7349,3341,0.45,,,,,,0.2,0.46,,0.45,0.51,,,,,,0.55,0.36,0.38,0.52,0.901773783,64108,71091,0.888425766,0.915121799,0.618049313,19251,31148,0.575166714,0.660931912,0.027558919,1588,57622,,,0.228,6291,,0.169617021,0.286382979,,,,0.174447174,0,0.438888954,0.534639716,0.469749253,0.59953018,0.384647132,0.292186552,0.477107711,0.148864334,0.118943748,0.17878492,5.211904229,116460,22345,4.723395868,5.700412591,0.320697388,8866,27646,0.274136785,0.367257992,8.822114099,99,112218,,,71.21213222,392,550468,64.1624908,78.26177365,,,,,,,58.56094758,43.86616827,76.59916129,,,,79.52459807,70.9182158,88.13098035,,,,9,,,,,0,,,,,0.126051416,5320,42205,0.108695623,0.143407209,0.10646064,0.088175906,0.124745374,0.019665916,0.013315772,0.026016061,0.006515816,0.002503608,0.010528023,0.839784068,42158,50201,0.816627141,0.862940995,,,,,,,0.827773468,0.770662006,0.88488493,0.795628415,0.686519537,0.904737294,0.851308099,0.829059573,0.873556626,0.166,,50201,0.146205492,0.185794508,75.06404061,,,74.52334189,75.60473932,,,,,,,70.15970048,68.39130598,71.92809498,91.41144584,71.50908615,111.3138055,75.39389815,74.80243058,75.98536572,,,,488.7303995,1688,315306,464.9870498,512.4737493,,,,,,,745.1051442,647.9327482,842.2775403,225.3635977,141.2341668,341.2031952,474.7975397,449.0373186,500.5577608,,,,75.00259318,94,125329,60.60972991,91.78417902,,,,,,,139.4468608,100.5010317,188.4916457,,,,61.45022532,45.3085452,81.4740836,,,,8.273894437,87,10515,6.627050265,10.20581822,,,,,,,14.95972382,10.63782604,20.45043493,,,,6.757749376,4.947521876,9.013890658,,,,,,,0.129,,,0.108,0.15,0.185,,,0.159,0.212,0.105,,,0.089,0.122,200.5,185,92276,,,0.154,16900,,,,0.091221759,8797.700062,96443,,,10.45415852,35,334795,7.281704447,14.5392038,,,,,,,,,,,,,12.06311421,8.138932503,17.22084562,,,,0.358,,,0.342,0.374,0.114555297,7491,65392,0.097874446,0.131236148,0.046782814,1348,28814,0.033676431,0.059889197,0.002176664,246,113017,,,459.4186992,0.902660882,1248.38,1383,,,0.077834675,532,6835,0.040099572,0.115569777,2.881911122,,,,,,,2.41170335,2.488949293,3.091014759,2.782214027,,,,,,,2.193205749,2.561366892,3.05450588,0.207903582,,,,,-5692.914288,,,,,0.897006186,43355,48333,0.812812159,0.981200214,60580,,,55261.19149,65898.80851,68090,28998.42553,107181.5745,56500,32119.74468,80880.25532,30889,22668.91489,39109.08511,47500,31408.93617,63591.06383,62245,57636.31915,66853.68085,,,,,,0.695145532,13661,19652,,,43.43810801,,,,,0.252310994,,60580,,,8.797653959,66,7502,,,7.624987347,58,760657,5.789972574,9.85706432,,,,,,,23.01723004,15.2947822,33.26630602,,,,4.698013436,3.096020458,6.835362895,,,,15.54125413,85,550468,12.36042062,19.29079417,15.44140622,,,,,,,,,,,,,18.67298063,14.7121849,23.37201974,,,,17.43970585,96,550468,14.12621773,21.29686576,,,,,,,18.78370017,10.94219755,30.07452358,,,,18.42643126,14.51793204,23.06342643,,,,17.48488478,133,760657,14.51326647,20.45650309,,,,,,,13.97474681,8.140805003,22.3749234,,,,19.31405524,15.72096561,22.90714487,,,,11.37096774,,12400,,,141,,0.486464978,38511,79165,,,0.629,,,,,59.10242968,,,,,0.596892635,25279,42351,0.579293372,0.614491899,0.129182225,5224,40439,0.11024098,0.14812347,0.855210031,36219,42351,0.839442415,0.870977646,113017,,,,,0.248927153,28133,113017,,,0.142562623,16112,113017,,,0.176663688,19966,113017,,,0.005477052,619,113017,,,0.013440456,1519,113017,,,0.001008698,114,113017,,,0.057708132,6522,113017,,,0.729138094,82405,113017,,,0.009298059,963,103570,0.006085696,0.012510422,0.512232673,57891,113017,,,0.336686715,37450,111231,, -05,033,05033,AR,Crawford County,2024,1,10235.91549,1206,173533,9328.301881,11143.52909,0,,,,2,,,,2,,,,2,7666.909492,4745.937815,11719.68558,1,10975.15395,9942.692539,12007.61537,,,,,2,,0.217,,,0.183,0.254,4.696557721,,,3.802431235,5.70029827,5.937568737,,,4.899892889,7.046682776,0.084909378,431,5076,0.077240971,0.092577784,0,,,,,,,,,,0.042079208,0.022501404,0.061657012,0.088255733,0.079793733,0.096717733,,,,,,,0.218,,,0.173,0.264,0.394,,,0.323,0.464,6.1,0.131860385,0.159,,,0.31,,,0.257,0.366,0.649310695,39045,60133,,,0.136286019,,,0.106945932,0.168288367,0.375,18,48,0.301427395,0.447003411,289.8,175,60378,,,30.0511509,423,14076,27.18732246,32.91497933,,,,,,,58.82352941,31.321052,100.5900268,13.85681293,8.87832151,20.61783926,34.31645335,30.81975953,37.81314717,,,,,,,0.125072916,6218,49715,0.108392065,0.141753767,0.000347809,21,60378,,,2875.142857,0.000229226,14,61075,,,4362.5,0.000622186,38,61075,,,1607.236842,2998,,,,,,,1894,,2961,0.43,,,,,0.52,0.23,,0.22,0.43,0.44,,,,,0.55,0.34,0.15,0.27,0.45,0.854695447,35122,41093,0.833804725,0.875586169,0.537333245,8096,15067,0.483000042,0.591666448,0.032144078,846,26319,,,0.206,2954,,0.140468085,0.271531915,0.170542636,0,0.511760038,,,,0.637931035,0.303805782,0.972056287,0.276643991,0.170333101,0.382954881,0.286629002,0.234012471,0.339245533,4.037770684,104978,25999,3.649032612,4.426508755,0.295181137,4294,14547,0.224775711,0.365586563,6.128059889,37,60378,,,74.01593895,232,313446,64.49154541,83.54033249,,,,,,,,,,,,,83.24804864,72.1970408,94.29905647,,,,9.5,,,,,0,,,,,0.116559319,2805,24065,0.097076097,0.13604254,0.079612468,0.063068908,0.096156029,0.027633493,0.015543123,0.039723862,0.014336173,0.007351868,0.021320478,0.862486113,20961,24303,0.844166907,0.880805319,,,,,,,,,,0.833250373,0.741106871,0.925393875,0.811326335,0.771863872,0.850788797,0.272,,24303,0.238089618,0.305910382,74.42852884,,,73.71590258,75.1411551,,,,,,,,,,,,,73.55914397,72.79181503,74.32647291,,,,524.6789323,1206,173533,493.8285037,555.529361,,,,,,,,,,261.5453681,177.7073883,371.2427728,559.9658671,525.5550582,594.376676,,,,54.26753897,36,66338,38.00831713,75.12914844,,,,,,,,,,,,,55.0714946,36.59460822,79.59364306,,,,5.984555985,31,5180,4.06621544,8.494599518,,,,,,,,,,,,,5.66379701,3.665310795,8.360881671,,,,,,,0.143,,,0.122,0.166,0.195,,,0.167,0.223,0.11,,,0.094,0.127,107.4,54,50277,,,0.159,9630,,,,0.131860385,8168.487147,61948,,,17.10827399,32,187044,11.70204674,24.15177823,,,,,,,,,,,,,20.55498458,14.05959424,29.01750519,,,,0.357,,,0.341,0.372,0.151046096,5328,35274,0.128407798,0.173684394,0.064142246,974,15185,0.045078416,0.083206075,0.000261973,16,61075,,,3817.1875,0.934496815,733.58,785,,,0.106840621,303,2836,0.053814166,0.159867076,2.807443153,,,,,,,2.587175314,2.786906309,2.816201443,2.698177314,,,,,,,2.247412807,2.609747326,2.704426531,0.070236113,,,,,-2931.55242,,,,,0.710833224,37972,53419,0.634602076,0.787064372,54741,,,48464.23404,61017.76596,26678,23030.85106,30325.14894,63456,3397.787234,123514.2128,,,,58316,41077.53192,75554.46809,57319,54173.46809,60464.53192,,,,,,0.613456464,6510,10612,,,68.27693067,,,,,0.279223982,,54741,,,4.745583971,18,3793,,,2.971999195,13,437416,1.582464403,5.082209137,,,,,,,,,,,,,2.995030971,1.49510867,5.358937721,,,,24.50437345,73,313446,19.10236125,30.95980168,23.28949803,,,,,,,,,,,,,26.67931677,20.50111954,34.13443568,,,,15.31364254,48,313446,11.29107113,20.30366831,,,,,,,,,,,,,17.18423022,12.53429544,22.99385205,,,,13.94553469,61,437416,10.66722904,17.91362271,,,,,,,,,,,,,15.79198149,11.99151363,20.41479811,,,,8.75,,7200,,,63,,0.519146644,24091,46405,,,0.595,,,,,44.41042701,,,,,0.755400114,17171,22731,0.732349816,0.778450413,0.086212361,1904,22085,0.069142654,0.103282069,0.814966346,18525,22731,0.784824649,0.845108042,61075,,,,,0.239607041,14634,61075,,,0.17997544,10992,61075,,,0.015980352,976,61075,,,0.027327057,1669,61075,,,0.016815391,1027,61075,,,0.000802292,49,61075,,,0.091608678,5595,61075,,,0.82234957,50225,61075,,,0.013667346,778,56924,0.007508882,0.01982581,0.506524765,30936,61075,,,0.494088105,29711,60133,, -05,035,05035,AR,Crittenden County,2024,1,15288.72915,1106,134821,14017.37517,16560.08312,0,,,,2,,,,2,17773.95059,15964.93448,19582.96671,,,,,2,12698.41322,10840.72279,14556.10366,,,,,2,,0.256,,,0.222,0.293,5.005472461,,,4.081472893,5.969761351,5.936296434,,,4.868712588,7.05432147,0.143325143,700,4884,0.13349777,0.153152517,0,,,,,,,0.173503494,0.160565506,0.186441483,,,,0.080255682,0.066064251,0.094447113,,,,,,,0.241,,,0.201,0.285,0.438,,,0.365,0.513,6.7,0.106224431,0.142,,,0.353,,,0.3,0.408,0.788281461,37966,48163,,,0.140589405,,,0.111558863,0.174933282,0.283333333,17,60,0.216290068,0.352427548,1292,614,47525,,,49.1648011,571,11614,45.13213464,53.19746757,,,,,,,61.76668914,56.10980017,67.42357812,39.31203931,22.47022716,63.84028894,25.2737995,20.32311939,31.06579045,,,,,,,0.100609599,3895,38714,0.086311726,0.114907471,0.00027354,13,47525,,,3655.769231,0.00065872,31,47061,,,1518.096774,0.002422388,114,47061,,,412.8157895,2571,,,,,,,3218,,2375,0.41,,,,,,0.31,0.45,,0.4,0.4,,,,,,0.33,0.24,,0.48,0.85578307,26163,30572,0.839891307,0.871674832,0.55511579,6592,11875,0.498522383,0.611709196,0.040482886,835,20626,,,0.308,3841,,0.194808511,0.421191489,,,,,,,0.36342561,0.312058843,0.414792378,0.268656716,0.125242782,0.412070651,0.148357566,0.094473083,0.202242049,5.264041575,105344,20012,4.535736725,5.992346425,0.456843403,5928,12976,0.396149822,0.517536984,10.31036297,49,47525,,,108.6648792,261,240188,95.48155234,121.848206,,,,,,,102.1999892,84.83073785,119.5692406,,,,126.5628987,104.2861584,148.839639,,,,8.3,,,,,0,,,,,0.166929548,3175,19020,0.142777424,0.191081672,0.140425532,0.116933719,0.163917345,0.028128286,0.017895242,0.03836133,0.006309148,0.002109163,0.010509134,0.796891505,15843,19881,0.774459677,0.819323332,,,,,,,0.769862352,0.718952931,0.820771773,0.812265332,0.670521269,0.954009395,0.78742515,0.744360914,0.830489385,0.311,,19881,0.271572683,0.350427317,70.41116302,,,69.5600787,71.26224733,,,,,,,67.93537124,66.80886899,69.06187348,,,,72.66684179,71.3731174,73.96056618,,,,714.7002518,1106,134821,671.2574198,758.1430838,,,,,,,842.1794055,775.5831538,908.7756571,,,,615.9758115,555.5354895,676.4161334,,,,123.6552492,70,56609,96.39533309,156.2309683,,,,,,,162.1898475,122.8410066,210.1357597,,,,58.45560297,28.03173377,107.5019351,,,,9.801999608,50,5101,7.27523304,12.9227145,,,,,,,13.20810097,9.63407948,17.67347828,,,,,,,,,,,,,0.15,,,0.131,0.172,0.199,,,0.173,0.228,0.136,,,0.118,0.156,595.2,228,38307,,,0.142,6870,,,,0.106224431,5407.036,50902,,,18.86845195,27,143096,12.43442873,27.45260695,,,,,,,14.07027463,7.023830399,25.17560792,,,,27.82608696,15.90501296,45.18782191,,,,0.393,,,0.38,0.408,0.125494481,3331,26543,0.105239162,0.1457498,0.048675678,623,12799,0.033186316,0.06416504,0.001062451,50,47061,,,941.22,0.901185087,676.79,751,,,0.165252674,448,2711,0.099253798,0.231251551,2.428972798,,,,,,,2.209494011,2.681344314,2.935065804,2.475546845,,,,,,,2.248069579,2.462462415,3.036810069,0.163014941,,,,,-24487.78333,,,,,0.766702303,39443,51445,0.649922931,0.883481676,49644,,,43299.31915,55988.68085,,,,78286,51747.95745,104824.0426,38343,34196.61702,42489.38298,41165,36248.91489,46081.08511,70401,61632.82979,79169.17021,,,,,,0.887038851,8151,9189,,,48.97273375,,,,,0.307892192,,49644,,,8.837337752,32,3621,,,25.41476302,86,338386,20.32852992,31.38702558,,,,,,,41.87489325,32.99265309,52.4126732,,,,,,,,,,13.85219011,31,240188,9.346014498,19.77486271,12.90655653,,,,,,,,,,,,,25.19565297,15.78998157,38.14652138,,,,31.64188053,76,240188,24.93020296,39.60453185,,,,,,,40.7263115,30.50680201,53.27101818,,,,23.47537637,14.88137488,35.22459086,,,,19.20883252,65,338386,14.8249714,24.48323389,,,,,,,20.38646119,14.35395005,28.10005132,,,,19.24063622,12.67970051,27.99411553,,,,20,,5700,,,114,,0.471943483,16367,34680,,,0.558,,,,,75.63641343,,,,,0.5618443,10443,18587,0.54058529,0.58310331,0.145557233,2603,17883,0.118802062,0.172312404,0.840264701,15618,18587,0.816301578,0.864227825,47061,,,,,0.269118803,12665,47061,,,0.152121714,7159,47061,,,0.550647033,25914,47061,,,0.004568539,215,47061,,,0.00713967,336,47061,,,0.000573724,27,47061,,,0.031894775,1501,47061,,,0.393064321,18498,47061,,,0.004278219,190,44411,0.000738967,0.007817472,0.527464355,24823,47061,,,0.183751012,8850,48163,, -05,037,05037,AR,Cross County,2024,1,12814.38207,392,45183,10825.3435,14803.42065,0,,,,2,,,,2,13382.58956,9267.832303,18700.82754,,,,,2,13245.39084,10889.15409,15601.62759,,,,,2,,0.239,,,0.208,0.273,4.768132188,,,3.865515781,5.745616656,6.073094619,,,4.949272376,7.30697403,0.100280505,143,1426,0.084690074,0.115870936,0,,,,,,,0.132231405,0.097383873,0.167078937,,,,0.090643275,0.073075477,0.108211073,,,,,,,0.24,,,0.2,0.285,0.43,,,0.354,0.514,6,0.145514877,0.159,,,0.343,,,0.293,0.399,0.723044021,12171,16833,,,0.131391954,,,0.103153697,0.164305803,0.130434783,3,23,0.042432852,0.254040702,575.5,96,16681,,,32.50366032,111,3415,26.45684294,38.5504777,,,,,,,38.67403315,26.93788111,53.78621809,,,,31.25,24.45120039,39.35420314,,,,,,,0.119063696,1587,13329,0.101191355,0.136936036,0.000419639,7,16681,,,2383,0.000542136,9,16601,,,1844.555556,0.00090356,15,16601,,,1106.733333,4683,,,,,,,4387,,4650,0.27,,,,,,,0.23,,0.27,0.42,,,,,,,0.28,,0.44,0.834687878,9654,11566,0.809830101,0.859545656,0.502680312,2063,4104,0.417352522,0.588008102,0.036830037,257,6978,,,0.316,1206,,0.236170213,0.395829787,,,,,,,0.581691773,0.440970151,0.722413395,0.117647059,0,0.361415329,0.194277108,0.107715667,0.28083855,5.425417255,103696,19113,4.405893024,6.444941487,0.36516576,1476,4042,0.289115049,0.44121647,15.58659553,26,16681,,,113.5526268,94,82781,91.76208115,138.9596571,,,,,,,57.57052389,28.7389981,103.0095699,,,,137.1742113,109.0987211,170.2693652,,,,8.6,,,,,0,,,,,0.143835616,945,6570,0.100735546,0.186935687,0.079938509,0.050653978,0.10922304,0.058447489,0.025391744,0.091503234,0.008371385,0,0.017042937,0.83890972,5817,6934,0.81218342,0.865636021,,,,,,,0.754797441,0.608456316,0.901138567,,,,0.849858357,0.807672337,0.892044377,0.299,,6934,0.243945971,0.354054029,71.92738439,,,70.51806712,73.33670167,,,,,,,73.23345162,69.24323371,77.22366952,,,,71.37061055,69.77249549,72.96872561,,,,641.5581035,392,45183,574.9811061,708.1351008,,,,,,,637.7826397,504.938522,794.8674638,,,,669.0685938,589.4535456,748.683642,,,,82.93838863,14,16880,45.34318884,139.1565232,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.148,,,0.129,0.169,0.203,,,0.177,0.231,0.119,,,0.103,0.137,252,35,13886,,,0.159,2690,,,,0.145514877,2600.350851,17870,,,26.40022745,13,49242,14.05700924,45.14519296,,,,,,,,,,,,,31.06028519,15.50518246,55.57542994,,,,0.366,,,0.352,0.38,0.142525092,1349,9465,0.118695305,0.16635488,0.063735178,258,4048,0.043479859,0.083990497,0.000963797,16,16601,,,1037.5625,0.930090498,205.55,221,,,,,,,,2.913467472,,,,,,,2.465551792,,3.115772061,2.905110914,,,,,,,2.445036597,,3.099396265,0.050281373,,,,,-3759.3715,,,,,0.727192325,37822,52011,0.552980417,0.901404232,48299,,,41288.2766,55309.7234,,,,,,,32852,20571.31915,45132.68085,,,,59798,50236.29787,69359.70213,,,,,,0.699210111,2213,3165,,,59.1521043,,,,,0.241060892,,48299,,,11.52737752,12,1041,,,,,,,,,,,,,,,,,,,,,,,,,,23.31921626,20,82781,14.0396915,36.41584479,24.16013336,,,,,,,,,,,,,29.88653667,17.71265574,47.23361281,,,,14.49608002,12,82781,7.490336078,25.32173451,,,,,,,,,,,,,20.07427482,10.37267073,35.06571824,,,,28.18056054,33,117102,19.3982012,39.57598442,,,,,,,,,,,,,33.0122499,21.93640032,47.7118926,,,,21.76470588,,1700,,,37,,0.561877782,6942,12355,,,0.56,,,,,42.56464744,,,,,0.662400975,4348,6564,0.632269787,0.692532163,0.093860495,584,6222,0.061242379,0.126478611,0.789609994,5183,6564,0.76162378,0.817596208,16601,,,,,0.234805132,3898,16601,,,0.189145232,3140,16601,,,0.228962111,3801,16601,,,0.004638275,77,16601,,,0.008493464,141,16601,,,0.000662611,11,16601,,,0.022769713,378,16601,,,0.722004699,11986,16601,,,0.006215513,98,15767,0,0.015576854,0.51063189,8477,16601,,,0.550644567,9269,16833,, -05,039,05039,AR,Dallas County,2024,1,15938.09018,176,17902,12012.68366,19863.4967,0,,,,2,,,,2,22762.88736,16186.63813,31117.61637,,,,,2,12331.90615,7901.284962,18348.89884,1,,,,2,,0.238,,,0.208,0.272,4.708855781,,,3.805147026,5.72677625,5.945745691,,,4.80753517,7.198368861,0.117777778,53,450,0.087994637,0.147560918,0,,,,,,,0.150259067,0.099846243,0.200671892,,,,0.096774194,0.057436929,0.136111458,,,,,,,0.223,,,0.188,0.262,0.404,,,0.323,0.488,5.2,0.267926278,0.135,,,0.336,,,0.284,0.394,0.265504474,1721,6482,,,0.121048015,,,0.094014435,0.15184307,0.333333333,2,6,0.110000414,0.553214291,1014.6,64,6308,,,29.0275762,40,1378,20.73772601,39.52732,,,,,,,25,14.56342128,40.02742179,,,,34.7826087,21.24612102,53.71891809,,,,,,,0.102383655,451,4405,0.085702804,0.119064506,0.000158529,1,6308,,,6308,0.00032305,2,6191,,,3095.5,0.003553546,22,6191,,,281.4090909,2145,,,,,,,446,,1997,0.34,,,,,,,0.37,,0.33,0.35,,,,,,,0.32,,0.36,0.884393064,4131,4671,0.851819083,0.916967045,0.581263307,819,1409,0.411954792,0.750571823,0.040189989,110,2737,,,0.292,339,,0.182382979,0.401617021,,,,,,,0.28,0.114064658,0.445935342,,,,0.196125908,0.052083175,0.340168641,5.411694186,99310,18351,4.538330675,6.285057697,0.406109614,452,1113,0.230538057,0.58168117,19.02346227,12,6308,,,97.99965412,34,34694,67.86760934,136.9446939,,,,,,,,,,,,,136.3066354,88.21046752,201.2154828,,,,9.6,,,,,0,,,,,0.068561873,205,2990,0.034020493,0.103103253,0.062605753,0.025327062,0.099884444,0.001337793,0,0.013397761,0.005016722,0,0.018750415,0.857852503,2245,2617,0.780415149,0.935289857,,,,,,,0.907132244,0.818659901,0.995604586,,,,0.808445532,0.734606796,0.882284269,0.31,,2617,0.224660744,0.395339256,71.20601202,,,68.56750642,73.84451763,,,,,,,66.89859237,62.55187982,71.24530493,,,,73.4119349,69.96299594,76.86087386,,,,678.6620661,176,17902,566.8191172,790.505015,,,,,,,913.6343097,721.0259096,1141.886128,,,,560.8437302,429.995672,718.9763507,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.141,,,0.124,0.161,0.193,,,0.169,0.219,0.124,,,0.107,0.143,,,,,,0.135,900,,,,0.267926278,2174.489669,8116,,,,,,,,,,,,,,,,,,,,,,,,,,0.363,,,0.35,0.375,0.119901871,391,3261,0.098455062,0.141348679,0.056384743,68,1206,0.038512403,0.074257083,0.000807624,5,6191,,,1238.2,,,,,,,,,,,2.886707483,,,,,,,2.627120268,,3.206175378,3.013848862,,,,,,,2.871657873,,3.232067291,0.020855778,,,,,-23911.16,,,,,0.758642895,37700,49694,0.506135878,1.011149912,44476,,,37797.70213,51154.29787,,,,,,,32426,19124.21277,45727.78723,,,,57898,42289.48936,73506.51064,,,,,,0.824942792,721,874,,,41.85170895,,,,,0.261781635,,44476,,,11.94029851,4,335,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,28.13109088,14,49767,15.37952916,47.19919047,,,,,,,,,,,,,41.73781066,20.8353647,74.68047245,,,,,,700,,,-888,,0.474306177,2649,5585,,,0.434,,,,,7.434385577,,,,,0.71559633,1638,2289,0.663715752,0.767476909,0.068005477,149,2191,0.020989713,0.115021241,0.708169506,1621,2289,0.642021066,0.774317947,6191,,,,,0.198513972,1229,6191,,,0.257470522,1594,6191,,,0.400096915,2477,6191,,,0.009206913,57,6191,,,0.004684219,29,6191,,,0.002261347,14,6191,,,0.045873042,284,6191,,,0.520432886,3222,6191,,,0.001627075,10,6146,,,0.50605718,3133,6191,,,1,6482,6482,, -05,041,05041,AR,Desha County,2024,1,14146.14899,279,30869,11565.12309,16727.17489,0,,,,2,,,,2,13761.54894,10228.37708,17294.72079,,,,,2,16136.26462,11585.99276,20686.53647,,,,,2,,0.296,,,0.26,0.332,5.22186379,,,4.235565483,6.295780896,6.144307619,,,4.988241297,7.414902621,0.148268398,137,924,0.12535467,0.171182127,0,,,,,,,0.197802198,0.161200042,0.234404353,,,,0.098191215,0.068543301,0.127839128,,,,,,,0.268,,,0.224,0.312,0.451,,,0.37,0.533,5.5,0.166131515,0.171,,,0.409,,,0.349,0.468,0.604212374,6885,11395,,,0.107819318,,,0.08337806,0.135310753,0.333333333,3,9,0.150331965,0.513162068,604.1,67,11090,,,35.49659376,99,2789,28.84987983,43.21582924,,,,,,,37.11634547,27.7202621,48.67314899,,,,37.91982665,26.41254865,52.73729943,,,,,,,0.113828677,982,8627,0.095956337,0.131701018,0.000450857,5,11090,,,2218,0.000278526,3,10771,,,3590.333333,0.000742735,8,10771,,,1346.375,3951,,,,,,,3251,,4040,0.35,,,,,,,0.29,,0.38,0.41,,,,,,,0.29,,0.45,0.789754258,6074,7691,0.754503917,0.825004599,0.438372093,1131,2580,0.349762836,0.52698135,0.052726907,262,4969,,,0.407,1071,,0.27712766,0.53687234,,,,,,,0.620028409,0.539940561,0.700116257,0.349480969,0.050933871,0.648028067,0.116923077,0.006183585,0.227662569,4.655515656,73897,15873,3.239402726,6.071628585,0.506142506,1442,2849,0.38869424,0.623590773,17.13255185,19,11090,,,95.00853317,54,56837,71.37333422,123.9655267,,,,,,,86.37200045,54.75243921,129.6004089,,,,111.633841,74.17987663,161.3419821,,,,9.1,,,,,0,,,,,0.12055336,610,5060,0.079582042,0.161524678,0.10387535,0.066088089,0.14166261,0.017786561,0.000115553,0.03545757,0.001581028,0,0.00374993,0.852743978,3434,4027,0.831555213,0.873932743,,,,,,,0.835653105,0.766600214,0.904705996,,,,0.869622476,0.850798224,0.888446728,0.209,,4027,0.153088798,0.264911202,71.45859257,,,69.70504647,73.21213868,,,,,,,71.69380208,69.2704118,74.11719235,,,,70.17528453,67.26620015,73.08436891,,,,680.9675368,279,30869,594.5314868,767.4035867,,,,,,,712.6426511,584.0146938,841.2706084,,,,707.8490166,572.762959,842.9350741,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.166,,,0.145,0.188,0.212,,,0.185,0.24,0.154,,,0.133,0.176,229.5,21,9151,,,0.171,1980,,,,0.166131515,2161.038752,13008,,,,,,,,,,,,,,,,,,,,,,,,,,0.404,,,0.392,0.417,0.135243841,807,5967,0.112605543,0.157882139,0.067784517,190,2803,0.043954729,0.091614304,0.000928419,10,10771,,,1077.1,0.84787234,159.4,188,,,,,,,,2.503939476,,,,,,,2.368384275,,2.766860955,2.343093377,,,,,,,2.147013048,,2.618754421,0.053076394,,,,,-17494.85,,,,,0.959448734,39891,41577,0.748840917,1.170056551,41251,,,35024.2766,47477.7234,,,,,,,28466,24702.08511,32229.91489,,,,53966,43662,64270,,,,,,1,2166,2166,,,24.62827114,,,,,0.282247703,,41251,,,13.92405063,11,790,,,16.11343861,13,80678,8.579727424,27.55447076,,,,,,,31.80830197,16.43581379,55.56270224,,,,,,,,,,20.96015591,11,56837,10.05120947,38.54647298,19.35359009,,,,,,,,,,,,,,,,,,,26.39125922,15,56837,14.77098744,43.52836862,,,,,,,,,,,,,,,,,,,33.46637249,27,80678,22.05455035,48.69181493,,,,,,,39.76037746,22.25358144,65.57869605,,,,33.2769474,17.19468431,58.12813025,,,,34.61538462,,1300,,,45,,0.503506651,4164,8270,,,0.479,,,,,24.72505923,,,,,0.625027156,2877,4603,0.580539224,0.669515088,0.145517241,633,4350,0.096559976,0.194474507,0.721703237,3322,4603,0.672641605,0.770764869,10771,,,,,0.248073531,2672,10771,,,0.201838269,2174,10771,,,0.465880605,5018,10771,,,0.00492062,53,10771,,,0.010583976,114,10771,,,0.001671154,18,10771,,,0.073530777,792,10771,,,0.431807632,4651,10771,,,0.019965935,211,10568,0.004760662,0.035171208,0.529291616,5701,10771,,,0.621939447,7087,11395,, -05,043,05043,AR,Drew County,2024,1,12082.579,357,48913,10177.02303,13988.13496,0,,,,2,,,,2,16167.61353,11936.27965,20398.94742,,,,,2,11182.38465,8867.151401,13497.61789,,,,,2,,0.231,,,0.198,0.266,4.702993585,,,3.806639503,5.774918403,6.025839386,,,4.928127628,7.310800155,0.09915199,152,1533,0.08419096,0.114113019,0,,,,,,,0.153361345,0.120990085,0.185732604,,,,0.070600632,0.054302852,0.086898412,,,,,,,0.222,,,0.18,0.267,0.415,,,0.344,0.502,6.9,0.092006051,0.141,,,0.328,,,0.274,0.388,0.662190202,11489,17350,,,0.136695022,,,0.108875232,0.172537714,0.380952381,8,21,0.265693072,0.491053906,531.9,91,17110,,,28.8482239,134,4645,23.96369422,33.73275357,,,,,,,26.9761606,19.52278119,36.3367113,,,,31.05590062,24.80635039,38.40110205,,,,,,,0.096464229,1285,13321,0.079783378,0.113145081,0.000935126,16,17110,,,1069.375,0.000295666,5,16911,,,3382.2,0.006563775,111,16911,,,152.3513514,6916,,,,,,,8604,,6592,0.38,,,,,,,0.41,,0.37,0.41,,,,,,,0.35,,0.42,0.873647534,9528,10906,0.843349799,0.903945268,0.673789559,2491,3697,0.559752772,0.787826346,0.044056414,328,7445,,,0.273,976,,0.176489362,0.369510638,,,,,,,0.381818182,0.277153197,0.486483167,0.683377309,0.498359566,0.868395051,0.189376443,0.069196683,0.309556204,5.921161826,102744,17352,4.639850517,7.202473135,0.293919793,1136,3865,0.180117669,0.407721917,10.52016365,18,17110,,,90.92824431,82,90181,72.31793113,112.8659265,,,,,,,103.4085034,67.54986762,151.5174167,,,,90.61771073,68.07481327,118.2364558,,,,9.1,,,,,0,,,,,0.124219292,895,7205,0.088039142,0.160399442,0.091416309,0.056939382,0.125893236,0.024288688,0.004880934,0.043696443,0.0111034,0.002234656,0.019972145,0.844272844,5904,6993,0.799454891,0.889090798,,,,,,,0.87210172,0.771265783,0.972937658,,,,0.82405135,0.76333886,0.88476384,0.236,,6993,0.186299038,0.285700962,73.45652136,,,72.0361415,74.87690121,,,,,,,71.37796298,68.3697426,74.38618336,,,,73.76493524,72.04684034,75.48303014,,,,588.6530809,357,48913,524.4108994,652.8952623,,,,,,,737.1465978,592.1254759,882.1677197,,,,556.6278559,481.9959202,631.2597917,,,,93.3809393,17,18205,54.39783834,149.5119298,,,,,,,,,,,,,103.1991744,51.51665604,184.6518296,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.142,,,0.122,0.164,0.193,,,0.167,0.223,0.12,,,0.104,0.14,173.3,25,14424,,,0.141,2470,,,,0.092006051,1702.939995,18509,,,,,,,,,,,,,,,,,,,,,,,,,,0.369,,,0.352,0.383,0.114981504,1119,9732,0.093534696,0.136428313,0.048715912,184,3777,0.03322655,0.064205274,0.00076873,13,16911,,,1300.846154,0.853205128,166.375,195,,,,,,,,2.332681339,,,,,,,2.05656984,,2.61263111,2.633128304,,,,,,,2.309943893,,2.834332664,0.022578263,,,,,-7498.455,,,,,0.858832147,41035,47780,0.722883244,0.99478105,48635,,,41355,55915,,,,,,,27552,17331.40426,37772.59575,,,,57967,42263.17021,73670.82979,,,,,,0.732270105,2158,2947,,,38.43005888,,,,,0.239395497,,48635,,,13.19509896,14,1061,,,14.88911527,19,127610,8.964220018,23.25119785,,,,,,,36.5014741,19.43549766,62.41863237,,,,,,,,,,25.06268361,21,90181,15.08937274,39.13848503,23.28650159,,,,,,,,,,,,,29.37154545,16.78837603,47.69754968,,,,29.93978776,27,90181,19.73050879,43.56081929,,,,,,,39.77250129,19.07246031,73.14304595,,,,25.17158631,14.08834578,41.51670365,,,,18.8073035,24,127610,12.05019423,27.98377682,,,,,,,,,,,,,20.11477253,11.71759625,32.20569936,,,,21.17647059,,1700,,,36,,0.486478873,6908,14200,,,0.543,,,,,27.27006522,,,,,0.671054535,4639,6913,0.632244486,0.709864584,0.118950984,762,6406,0.080951802,0.156950165,0.762910459,5274,6913,0.713393681,0.812427236,16911,,,,,0.220684761,3732,16911,,,0.180355981,3050,16911,,,0.273372361,4623,16911,,,0.006208976,105,16911,,,0.008219502,139,16911,,,0.000709597,12,16911,,,0.041866241,708,16911,,,0.658269765,11132,16911,,,0.008648715,141,16303,0,0.018513963,0.508485601,8599,16911,,,0.540403458,9376,17350,, -05,045,05045,AR,Faulkner County,2024,1,8956.132925,1754,358708,8362.179836,9550.086013,0,,,,2,,,,2,12527.18772,10612.66547,14441.70997,,6466.327631,4261.350654,9408.167207,,8638.130266,7981.167765,9295.092768,,,,,2,,0.185,,,0.156,0.217,4.123344607,,,3.304721627,4.995296114,5.480500563,,,4.532823097,6.470725491,0.07960294,834,10477,0.074419838,0.084786042,0,,,,0.079268293,0.037920679,0.120615906,0.134615385,0.117953448,0.151277322,0.059581321,0.040963624,0.078199017,0.069415984,0.063778391,0.075053576,,,,0.084821429,0.048334461,0.121308397,0.187,,,0.148,0.229,0.368,,,0.304,0.433,6.7,0.119153986,0.136,,,0.273,,,0.227,0.324,0.635168181,78442,123498,,,0.162965899,,,0.130009239,0.196237868,0.2625,21,80,0.204923559,0.322403557,553.9,693,125106,,,17.74785802,580,32680,16.30345622,19.19225982,,,,,,,23.6238021,19.12649096,28.12111323,32.22159412,24.40432073,41.74681255,15.63892715,14.0787663,17.199088,,,,25.21008403,16.61360423,36.67934869,0.09543154,10031,105112,0.082325157,0.108537923,0.000591498,74,125106,,,1690.621622,0.000430815,55,127665,,,2321.181818,0.001817256,232,127665,,,550.2801724,2794,,,,,,,4782,,2716,0.39,,,,,,0.32,0.46,0.25,0.39,0.47,,,,,,0.68,0.41,0.23,0.48,0.930397709,71796,77167,0.918300559,0.942494859,0.676502699,22307,32974,0.633727292,0.719278106,0.029339582,1853,63157,,,0.146,4065,,0.101914894,0.190085106,,,,,,,0.244886829,0.138222133,0.351551524,0.35465995,0.241120093,0.468199807,0.098983873,0.077410606,0.120557141,4.646684268,119680,25756,4.339676836,4.9536917,0.195483642,5497,28120,0.158643584,0.232323699,9.19220501,115,125106,,,69.11500865,433,626492,62.60495617,75.62506114,,,,,,,69.92730199,52.3803477,91.46663271,45.10939027,23.30868021,78.79702672,72.65987173,65.18510945,80.13463402,,,,10.1,,,,,0,,,,,0.148259038,6685,45090,0.130781484,0.165736591,0.123036945,0.107592733,0.138481157,0.017520515,0.012144664,0.022896366,0.015302728,0.009262239,0.021343217,0.834417484,48488,58110,0.815014459,0.853820509,,,,,,,0.810434491,0.71731763,0.903551352,0.781221092,0.624698932,0.937743251,0.813673144,0.786726417,0.84061987,0.399,,58110,0.367095661,0.430904339,75.78980902,,,75.28285016,76.29676789,,,,,,,72.39056319,70.70008679,74.08103959,80.97706489,74.53085884,87.42327094,75.97697934,75.42836017,76.5255985,,,,447.1588548,1754,358708,425.8447807,468.472929,,,,,,,617.4455762,533.613555,701.2775973,299.6932229,193.9456522,442.4063169,438.1371183,415.1331481,461.1410885,,,,67.69708218,89,131468,54.36631587,83.30708491,,,,,,,113.2563909,70.10749102,173.1244242,,,,57.90687334,43.74222981,75.19689165,,,,7.384964969,78,10562,5.837508351,9.216770503,,,,,,,,,,,,,6.436955699,4.792736317,8.463407974,,,,,,,0.123,,,0.105,0.143,0.177,,,0.152,0.204,0.101,,,0.087,0.119,193.9,204,105218,,,0.136,16810,,,,0.119153986,13492.63988,113237,,,14.54903289,55,378032,10.96032266,18.93756613,,,,,,,,,,,,,15.63804904,11.49025023,20.79529007,,,,0.368,,,0.351,0.385,0.112338643,8633,76848,0.095657792,0.129019494,0.05317399,1584,29789,0.037684629,0.068663352,0.001041789,133,127665,,,959.8872181,0.88358965,1212.285,1372,,,0.065864471,520,7895,0.037298822,0.09443012,3.212602802,,,,,,3.807918812,2.675347895,2.787513191,3.371015742,2.996385853,,,,,,3.965108849,2.46152641,2.736233473,3.14015368,0.138932133,,,,,-1437.091667,,,,,0.818346499,43820,53547,0.754394499,0.8822985,63429,,,60114.2766,66743.7234,54500,12733.53192,96266.46809,,,,41393,34905.34043,47880.65957,45562,30785.14894,60338.85106,64268,61525.19149,67010.80851,,,,,,0.474275925,8859,18679,,,42.68547037,,,,,0.240978102,,63429,,,7.670182167,56,7301,,,5.170803118,45,870271,3.771619276,6.918941398,,,,,,,20.24720878,12.53334135,30.95000939,,,,3.302618977,2.093577129,4.955550036,,,,17.31584478,108,626492,13.9826724,20.64901715,17.23884742,,,,,,,,,,,,,19.41556022,15.689749,23.75972856,,,,16.44075264,103,626492,13.26563987,19.6158654,,,,,,,23.74889502,14.07510031,37.53349289,,,,16.21335981,12.87574802,20.15172586,,,,15.05278241,131,870271,12.47505371,17.63051111,,,,,,,12.53398639,6.673819868,21.43349845,,,,16.0823185,13.10383143,19.06080556,,,,9.701492537,,13400,,,130,,0.58594036,54428,92890,,,0.664,,,,,54.8171198,,,,,0.623069457,29531,47396,0.60473532,0.641403595,0.144778429,6642,45877,0.126512715,0.163044144,0.901995949,42751,47396,0.887407294,0.916584604,127665,,,,,0.222551208,28412,127665,,,0.141119336,18016,127665,,,0.12431755,15871,127665,,,0.006947871,887,127665,,,0.012908785,1648,127665,,,0.000885129,113,127665,,,0.047326989,6042,127665,,,0.78705205,100479,127665,,,0.006943853,815,117370,0.003079659,0.010808047,0.5145028,65684,127665,,,0.460566163,56879,123498,, -05,047,05047,AR,Franklin County,2024,1,12585.9638,374,48104,10568.54194,14603.38567,0,,,,2,,,,2,,,,2,,,,2,13460.60684,11280.34309,15640.87059,,,,,2,,0.243,,,0.207,0.28,5.066969846,,,4.045372218,6.137553145,6.404502832,,,5.199478218,7.734610712,0.077981651,102,1308,0.063449892,0.092513411,0,,,,,,,,,,,,,0.078175896,0.063161172,0.09319062,,,,,,,0.257,,,0.21,0.305,0.399,,,0.316,0.484,6.6,0.018894522,0.191,,,0.353,,,0.294,0.413,0.666783646,11400,17097,,,0.137208259,,,0.10697086,0.172829729,0.15625,5,32,0.074172521,0.258294933,227.1,39,17173,,,29.61579509,111,3748,24.10622162,35.12536856,,,,,,,,,,,,,29.49142341,23.94256307,35.94059895,,,,,,,0.102586521,1408,13725,0.087097159,0.118075883,0.000349386,6,17173,,,2862.166667,0.000173702,3,17271,,,5757,0.000115801,2,17271,,,8635.5,2973,,,,,,,,,2975,0.38,,,,,,,,,0.38,0.46,,,,,,,,,0.46,0.862453223,10371,12025,0.839866241,0.885040204,0.534443022,2087,3905,0.436479919,0.632406125,0.033422819,249,7450,,,0.223,836,,0.137212766,0.308787234,,,,,,,,,,0.035175879,0,0.235547497,0.25945608,0.171411159,0.347501001,5.160412148,95158,18440,4.490851277,5.829973018,0.15711693,606,3857,0.081586751,0.23264711,13.3931171,23,17173,,,94.9313443,84,88485,75.72095806,117.5314638,,,,,,,,,,,,,101.3033541,80.56956386,125.7441734,,,,8.9,,,,,1,,,,,0.145427286,970,6670,0.101329797,0.189524776,0.132409546,0.089372478,0.175446614,0.028335832,0.007290547,0.049381117,0.002248876,0,0.007305889,0.866646598,5758,6644,0.823851142,0.909442055,,,,,,,,,,,,,0.864750446,0.804387951,0.92511294,0.397,,6644,0.329137385,0.464862615,72.81375831,,,71.38510603,74.24241058,,,,,,,,,,,,,71.98143809,70.48793946,73.47493672,,,,579.6361856,374,48104,517.0522758,642.2200953,,,,,,,,,,,,,613.8646275,546.8408374,680.8884175,,,,79.39208348,14,17634,43.40439082,133.2064258,,,,,,,,,,,,,83.88720398,44.66640312,143.4496736,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.157,,,0.135,0.18,0.212,,,0.184,0.242,0.116,,,0.098,0.134,62,9,14506,,,0.191,3280,,,,0.018894522,342.46321,18125,,,,,,,,,,,,,,,,,,,,,,,,,,0.345,,,0.329,0.361,0.123092471,1218,9895,0.102837152,0.14334779,0.052268245,212,4056,0.035587394,0.068949096,0.000579005,10,17271,,,1727.1,0.886304348,203.85,230,,,0.265542677,252,949,0.119256775,0.411828578,3.194551473,,,,,,,,,3.197497698,3.067251386,,,,,,,,,3.071769809,0.021409193,,,,,-3078.4972,,,,,0.699069873,36978,52896,0.500280223,0.897859523,48248,,,41564.93617,54931.06383,,,,,,,,,,70038,10141.82979,129934.1702,47747,41410.65957,54083.34043,,,,,,0.566806859,1752,3091,,,,,,,,0.241315702,,48248,,,9.594882729,9,938,,,,,,,,,,,,,,,,,,,,,,,,,,26.86437321,23,88485,16.83575967,40.67298389,25.99310618,,,,,,,,,,,,,27.85366822,17.01374417,43.0177315,,,,23.73283607,21,88485,14.69099959,36.27816097,,,,,,,,,,,,,25.94354191,16.05946134,39.65745968,,,,20.19174077,25,123813,13.06703,29.80699256,,,,,,,,,,,,,22.01324317,14.24581031,32.49588942,,,,25.2631579,,1900,,,48,,0.522271062,7129,13650,,,0.59,,,,,3.98298518,,,,,0.736763609,4940,6705,0.697096175,0.776431044,0.109172403,682,6247,0.072970974,0.145373832,0.742431022,4978,6705,0.701111577,0.783750466,17271,,,,,0.222511725,3843,17271,,,0.202072839,3490,17271,,,0.007874472,136,17271,,,0.018354467,317,17271,,,0.011985409,207,17271,,,0.001910717,33,17271,,,0.040240866,695,17271,,,0.903364021,15602,17271,,,0.003320829,54,16261,0,0.010555928,0.500839558,8650,17271,,,1,17097,17097,, -05,049,05049,AR,Fulton County,2024,1,12838.09232,322,32701,10402.25751,15273.92712,0,,,,2,,,,2,,,,2,,,,2,13427.31641,10849.98258,16004.65025,,,,,2,,0.246,,,0.209,0.285,5.267298547,,,4.265993057,6.358797842,6.324284042,,,5.133048896,7.586512572,0.077473182,65,839,0.059383111,0.095563254,0,,,,,,,,,,,,,0.077403246,0.0588967,0.095909792,,,,,,,0.264,,,0.215,0.316,0.406,,,0.326,0.485,6.6,0.059338312,0.172,,,0.341,,,0.283,0.402,0.256231884,3094,12075,,,0.12612173,,,0.098540798,0.155338155,0.125,3,24,0.040232942,0.245512437,148.2,18,12145,,,29.004329,67,2310,22.47795659,36.83447257,,,,,,,,,,,,,30.82851638,23.74171414,39.36732717,,,,,,,0.098047915,884,9016,0.082558553,0.113537277,0.000411692,5,12145,,,2429,0.000161525,2,12382,,,6191,0.000646099,8,12382,,,1547.75,4670,,,,,,,,,4608,0.3,,,,,,,,,0.3,0.41,,,,,,,,,0.41,0.868741387,7565,8708,0.826705164,0.910777611,0.582373782,1315,2258,0.446687676,0.718059888,0.033884792,170,5017,,,0.248,642,,0.146723404,0.349276596,,,,,,,,,,,,,0.172802079,0.089627431,0.255976727,4.031972755,79321,19673,2.764933043,5.299012466,0.182101167,468,2570,0.100874009,0.263328326,7.410456978,9,12145,,,109.2504117,67,61327,84.66756849,138.744161,,,,,,,,,,,,,115.5291927,89.53353748,146.7179909,,,,7.8,,,,,0,,,,,0.153539382,770,5015,0.115135181,0.191943582,0.094282849,0.060761888,0.127803809,0.05663011,0.028450899,0.084809321,0.008973081,0.000503954,0.017442207,0.746676163,3145,4212,0.698206922,0.795145405,,,,,,,,,,,,,0.696006204,0.640780855,0.751231553,0.465,,4212,0.348489642,0.581510359,72.76862434,,,71.09745123,74.43979745,,,,,,,,,,,,,72.17697397,70.44963336,73.90431459,,,,626.9469981,322,32701,549.4865801,704.4074161,,,,,,,,,,,,,651.8794936,570.8028391,732.956148,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.161,,,0.137,0.186,0.214,,,0.186,0.245,0.117,,,0.1,0.136,106.1,11,10367,,,0.172,2080,,,,0.059338312,726.5976329,12245,,,,,,,,,,,,,,,,,,,,,,,,,,0.344,,,0.327,0.36,0.118531144,765,6454,0.097084335,0.139977952,0.048536495,131,2699,0.031855644,0.065217346,0.00234211,29,12382,,,426.9655172,0.941025641,110.1,117,,,,,,,,3.440610623,,,,,,,,,3.449164151,3.362274369,,,,,,,,,3.38393372,0.069258635,,,,,-4367.137,,,,,0.741511919,34900,47066,0.549009629,0.93401421,42588,,,38262.89362,46913.10638,,,,,,,,,,,,,39547,35011,44083,,,,,,0.769230769,1350,1755,,,,,,,,0.27338687,,42588,,,8.460236887,5,591,,,,,,,,,,,,,,,,,,,,,,,,,,27.22708461,16,61327,14.88530052,45.68242156,26.08965056,,,,,,,,,,,,,28.80042209,15.74545876,48.3222145,,,,24.4590474,15,61327,13.68954316,40.34147907,,,,,,,,,,,,,25.86474463,14.47630123,42.65996288,,,,29.18719499,25,85654,18.88841367,43.08605751,,,,,,,,,,,,,30.7779433,19.9178621,45.4343158,,,,,,1300,,,,,0.526646091,5119,9720,,,0.49,,,,,8.411667122,,,,,0.845188285,4040,4780,0.81154578,0.87883079,0.090593092,417,4603,0.055460602,0.125725581,0.614225941,2936,4780,0.551393477,0.677058406,12382,,,,,0.212889679,2636,12382,,,0.257955096,3194,12382,,,0.008480052,105,12382,,,0.010660636,132,12382,,,0.005168793,64,12382,,,0.000242287,3,12382,,,0.025197868,312,12382,,,0.929009853,11503,12382,,,0.001383963,16,11561,0,0.009447133,0.502503634,6222,12382,,,1,12075,12075,, -05,051,05051,AR,Garland County,2024,1,13217.53113,2322,268219,12338.65558,14096.40668,0,,,,2,,,,2,19886.91463,16499.11419,23274.71507,,8833.833275,6366.650012,11940.77631,,12786.88896,11805.66882,13768.10911,,,,,2,,0.197,,,0.167,0.229,4.290674907,,,3.484360027,5.159755722,5.559375202,,,4.625446261,6.552878077,0.092939879,674,7252,0.086257266,0.099622491,0,,,,,,,0.15625,0.132475085,0.180024915,0.077816493,0.05992284,0.095710145,0.084121355,0.07648533,0.091757381,,,,0.100371747,0.064461597,0.136281897,0.204,,,0.164,0.247,0.365,,,0.305,0.428,6.2,0.106540741,0.165,,,0.293,,,0.246,0.341,0.720553005,72185,100180,,,0.14048891,,,0.112576407,0.172913609,0.204301075,19,93,0.152395198,0.260427626,444.5,446,100330,,,34.73472413,656,18886,32.07664439,37.39280388,,,,,,,50.72783414,41.45626009,59.9994082,57.63688761,46.34005764,68.93371758,28.17005002,25.34878228,30.99131775,,,,57.57931845,42.59749677,76.12291257,0.122567602,9215,75183,0.105886751,0.139248453,0.00082727,83,100330,,,1208.795181,0.000609458,61,100089,,,1640.803279,0.002987341,299,100089,,,334.7458194,3005,,,,,,,3678,2426,2969,0.44,,,,,,0.42,0.45,0.36,0.44,0.52,,,,,0.56,0.54,0.37,0.39,0.53,0.906406441,66087,72911,0.894574925,0.918237957,0.623438058,13970,22408,0.573978196,0.67289792,0.038086677,1610,42272,,,0.23,4376,,0.150170213,0.309829787,,,,,,,0.564542046,0.455533891,0.673550201,0.292788879,0.198045587,0.387532171,0.189003436,0.145608648,0.232398225,4.575520948,104299,22795,4.168631501,4.982410394,0.367185117,7224,19674,0.309492918,0.424877317,11.26283265,113,100330,,,123.4624998,614,497317,113.6967194,133.2282801,,,,,,,115.2425974,85.257108,152.3568254,70.41072925,43.58535116,107.6302791,130.5930155,119.4747232,141.7113078,,,,8.9,,,,,0,,,,,0.142403129,5825,40905,0.12457233,0.160233929,0.113303549,0.096172105,0.130434994,0.026524875,0.016872401,0.036177348,0.01540154,0.009735844,0.021067236,0.8004624,32891,41090,0.777488848,0.823435951,,,,,,,0.811798653,0.715199523,0.908397784,0.790360634,0.698404401,0.882316867,0.799254708,0.778515914,0.819993501,0.238,,41090,0.208863273,0.267136727,72.97571777,,,72.3546188,73.59681673,,,,,,,67.44731199,65.29130488,69.60331909,80.22177976,76.24601314,84.19754638,73.27206145,72.5843234,73.9597995,,,,591.1019015,2322,268219,564.6222479,617.5815551,,,,,,,868.0725915,754.1127102,982.0324729,378.3418427,280.8126081,498.7965529,578.8406371,549.9902847,607.6909894,,,,84.35740179,74,87722,66.23870437,105.902993,,,,,,,146.0706982,81.75466095,240.921403,,,,81.66998791,60.6170392,107.6716975,,,,7.676767677,57,7425,5.81430887,9.94614295,,,,,,,,,,,,,7.424328955,5.279423661,10.14930209,,,,,,,0.127,,,0.11,0.146,0.188,,,0.162,0.215,0.099,,,0.084,0.114,251.1,217,86427,,,0.165,16460,,,,0.106540741,10230.46808,96024,,,29.38181333,88,299505,23.56507346,36.19921579,,,,,,,,,,,,,30.36009535,23.83920483,38.1143195,,,,0.335,,,0.32,0.349,0.146994241,8167,55560,0.125547432,0.168441049,0.056822574,1176,20696,0.040141723,0.073503426,0.00161856,162,100089,,,617.8333333,0.863940569,1003.035,1161,,,0.10428386,482,4622,0.051517834,0.157049886,2.947621973,,,,,,,2.401055558,2.811406221,3.056406702,2.922810592,,,,,,,2.417512024,2.815645795,3.021147885,0.11366669,,,,,-2295.159171,,,,,0.899603139,40349,44852,0.788813296,1.010392983,53239,,,48735.17021,57742.82979,,,,70357,57125.51064,83588.48936,31396,25685.19149,37106.80851,53578,41520.12766,65635.87234,57615,52503.51064,62726.48936,,,,,,0.669384482,10016,14963,,,52.81915293,,,,,0.287101561,,53239,,,9.607993851,50,5204,,,11.12763396,77,691971,8.781754706,13.9076332,,,,,,,44.03794038,28.76704474,64.52578605,,,,7.593041243,5.495121597,10.22777672,,,,28.90274953,149,497317,23.97316589,33.83233317,29.96076949,,,,,,,,,,,,,31.53558316,25.72662202,37.3445443,,,,28.95537454,144,497317,24.2259967,33.68475238,,,,,,,58.79724359,38.0504759,86.79633034,,,,26.85780885,21.81568625,31.89993144,,,,23.12235628,160,691971,19.53951006,26.70520251,,,,,,,,,,,,,24.89811198,20.78838539,29.00783858,,,,14.28571429,,9100,,,130,,0.577010444,44199,76600,,,0.587,,,,,61.99542323,,,,,0.68276261,29509,43220,0.66995916,0.69556606,0.135494014,5602,41345,0.116601684,0.154386343,0.822142527,35533,43220,0.80815192,0.836133133,100089,,,,,0.194776649,19495,100089,,,0.251496168,25172,100089,,,0.085324062,8540,100089,,,0.007773082,778,100089,,,0.008962024,897,100089,,,0.000969138,97,100089,,,0.066430877,6649,100089,,,0.808290621,80901,100089,,,0.013691839,1298,94801,0.008447808,0.018935869,0.515431266,51589,100089,,,0.337841885,33845,100180,, -05,053,05053,AR,Grant County,2024,1,10436.01945,371,50490,8730.780582,12141.25832,0,,,,2,,,,2,,,,2,,,,2,10721.51969,8926.640397,12516.39898,,,,,2,,0.188,,,0.159,0.219,4.275575578,,,3.426573157,5.23153387,5.653650221,,,4.595111336,6.807303281,0.097072419,126,1298,0.080966218,0.11317862,0,,,,,,,,,,,,,0.09375,0.077366793,0.110133208,,,,,,,0.204,,,0.164,0.247,0.393,,,0.316,0.471,6.5,0.124647593,0.145,,,0.292,,,0.241,0.345,0.351041319,6304,17958,,,0.149201378,,,0.117435556,0.184274831,0.096774194,3,31,0.029372466,0.199247034,237.7,43,18090,,,24.63804928,97,3937,19.97979822,30.05633069,,,,,,,,,,,,,26.04756512,20.99801381,31.94502633,,,,,,,0.083113009,1226,14751,0.070006626,0.096219392,0.000110558,2,18090,,,9045,0.000385463,7,18160,,,2594.285714,0.001156388,21,18160,,,864.7619048,3357,,,,,,,,,3400,0.39,,,,,,,0.54,,0.39,0.5,,,,,,,0.48,,0.5,0.926401777,11681,12609,0.906909645,0.945893908,0.520922868,2303,4421,0.425298275,0.616547462,0.030940009,262,8468,,,0.202,783,,0.149574468,0.254425532,,,,,,,0.405063291,0,0.903152095,0.331034483,0,0.727581534,0.18950101,0.126150314,0.252851705,4.523891158,124027,27416,3.378748228,5.669034089,0.289554532,1131,3906,0.20342785,0.375681213,10.50304035,19,18090,,,93.24571892,85,91157,74.48136841,115.2997755,,,,,,,,,,,,,98.74134526,78.64693033,122.4047536,,,,9.5,,,,,0,,,,,0.107801418,760,7050,0.071903822,0.143699015,0.080829757,0.04891818,0.112741333,0.019007092,0.00160817,0.036406014,0.009219858,4.625012E-6,0.018435091,0.811955816,6248,7695,0.785854248,0.838057383,,,,,,,,,,,,,0.717590572,0.64871991,0.786461234,0.506,,7695,0.428087163,0.583912837,73.81601755,,,72.52542852,75.10660658,,,,,,,,,,,,,73.51750679,72.18398587,74.85102772,,,,534.2676498,371,50490,477.5240593,591.0112403,,,,,,,,,,,,,549.0099215,489.2601446,608.7596985,,,,67.69334913,12,17727,34.9781413,118.2466579,,,,,,,,,,,,,69.66875673,34.77839234,124.6566503,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.127,,,0.109,0.146,0.186,,,0.161,0.212,0.094,,,0.079,0.109,156.4,24,15342,,,0.145,2600,,,,0.124647593,2225.333468,17853,,,,,,,,,,,,,,,,,,,,,,,,,,0.342,,,0.324,0.359,0.09511855,1023,10755,0.079629188,0.110607911,0.053032105,223,4205,0.036351254,0.069712956,0.000660793,12,18160,,,1513.333333,0.891290323,303.93,341,,,,,,,,3.192176989,,,,,,,,,3.221553997,3.028381881,,,,,,,,,3.093181331,0.028489748,,,,,-3172.35665,,,,,0.66294413,41851,63129,0.581824911,0.74406335,63512,,,54295.82979,72728.17021,,,,,,,23029,9525.851064,36532.14894,,,,68530,59040.97872,78019.02128,,,,,,0.393669065,1368,3475,,,18.31464695,,,,,0.240663182,,63512,,,3.868471954,4,1034,,,,,,,,,,,,,,,,,,,,,,,,,,19.95724862,19,91157,11.82793036,31.54105691,20.8431607,,,,,,,,,,,,,21.59120036,12.79631371,34.1234051,,,,19.74615224,18,91157,11.70282127,31.20743362,,,,,,,,,,,,,21.41378572,12.69116655,33.84301348,,,,25.12937703,32,127341,17.18847528,35.47518245,,,,,,,,,,,,,26.37287847,17.91909139,37.43419584,,,,,,2000,,,-888,,0.58739255,8200,13960,,,0.551,,,,,17.75080308,,,,,0.803092182,5506,6856,0.76848003,0.837704335,0.078383716,516,6583,0.046458825,0.110308606,0.834451575,5721,6856,0.794922628,0.873980522,18160,,,,,0.217400881,3948,18160,,,0.187444934,3404,18160,,,0.031167401,566,18160,,,0.005837004,106,18160,,,0.005286344,96,18160,,,0.000715859,13,18160,,,0.034030837,618,18160,,,0.910903084,16542,18160,,,0.000877706,15,17090,0,0.006473023,0.499229075,9066,18160,,,0.73772135,13248,17958,, -05,055,05055,AR,Greene County,2024,1,10097.94058,864,127853,9096.738232,11099.14293,0,,,,2,,,,2,,,,2,,,,2,10330.77261,9267.930983,11393.61424,,,,,2,,0.21,,,0.177,0.244,4.587278283,,,3.734293717,5.558785548,5.733550804,,,4.690414623,6.868870597,0.084232152,328,3894,0.075508673,0.092955632,0,,,,,,,,,,0.067073171,0.028787844,0.105358497,0.083597579,0.074386852,0.092808305,,,,,,,0.229,,,0.182,0.274,0.395,,,0.324,0.469,6.6,0.066507179,0.167,,,0.327,,,0.27,0.381,0.690528249,31582,45736,,,0.14857204,,,0.118155643,0.184069833,0.230769231,9,39,0.148393644,0.320454524,429.6,199,46317,,,41.32983023,409,9896,37.32431822,45.33534225,,,,,,,43.10344828,20.66977886,79.26877604,65.31531532,43.74269175,93.80368793,39.0090797,34.91051161,43.10764779,,,,89.28571429,49.97253651,147.2632076,0.092464865,3566,38566,0.078166993,0.106762738,0.000496578,23,46317,,,2013.782609,0.000322942,15,46448,,,3096.533333,0.002303651,107,46448,,,434.0934579,3516,,,,,,,,,3508,0.44,,,,,,,,,0.44,0.46,,,,,,,,,0.46,0.87917663,27207,30946,0.862633244,0.895720017,0.472257093,5643,11949,0.41705603,0.527458155,0.032575758,645,19800,,,0.226,2434,,0.161659575,0.290340426,,,,,,,,,,0.449484536,0.356196023,0.54277305,0.207123288,0.155418765,0.25882781,4.432914365,101926,22993,3.902653817,4.963174914,0.294213529,3249,11043,0.23498278,0.353444278,9.499751711,44,46317,,,90.0635717,205,227617,77.73455881,102.3925846,,,,,,,,,,,,,93.9885315,80.8967623,107.0803007,,,,8.7,,,,,0,,,,,0.128802957,2265,17585,0.102930642,0.154675272,0.103279632,0.079604408,0.126954856,0.026158658,0.014876065,0.037441251,0.007961331,0.002645774,0.013276888,0.823300573,16084,19536,0.796173181,0.850427966,,,,,,,,,,,,,0.808452082,0.779248491,0.837655674,0.303,,19536,0.262965248,0.343034752,74.07166099,,,73.28866331,74.85465868,,,,,,,,,,,,,73.72357673,72.91164952,74.53550394,,,,539.5393737,864,127853,502.6216931,576.4570543,,,,,,,,,,,,,550.1513212,511.8882055,588.4144369,,,,49.51005673,24,48475,31.72202755,73.66703991,,,,,,,,,,,,,56.49983521,36.20051051,84.06727622,,,,6.042296073,24,3972,3.871413105,8.990457602,,,,,,,,,,,,,6.184987349,3.876098643,9.364145175,,,,,,,0.139,,,0.119,0.161,0.193,,,0.166,0.22,0.109,,,0.093,0.126,101.5,39,38434,,,0.167,7620,,,,0.066507179,2799.287143,42090,,,12.38714943,17,137239,7.215971021,19.83302619,,,,,,,,,,,,,12.62516669,7.216373621,20.50247974,,,,0.33,,,0.313,0.346,0.113121512,3101,27413,0.094057682,0.132185342,0.044013332,515,11701,0.02971546,0.058311205,0.001205649,56,46448,,,829.4285714,0.910172414,475.11,522,,,,,,,,2.696635757,,,,,,,2.048606573,2.587419452,2.757013421,2.584036476,,,,,,,2.261416464,2.410653074,2.613357809,0.064801389,,,,,-1582.2358,,,,,0.831009832,39640,47701,0.709048219,0.952971445,54475,,,48919.08511,60030.91489,,,,,,,,,,39271,19983.17021,58558.82979,56060,52215.06383,59904.93617,,,,,,0.711274061,5432,7637,,,66.17810599,,,,,0.213731069,,54475,,,7.636122178,23,3012,,,5.372758849,17,316411,3.129830022,8.602307384,,,,,,,,,,,,,5.786446101,3.370818091,9.26466075,,,,26.39940619,60,227617,20.04617593,34.12735432,26.36006977,,,,,,,,,,,,,28.37401641,21.54558025,36.67999592,,,,19.33071783,44,227617,14.04572917,25.95058642,,,,,,,,,,,,,20.88634033,15.17604686,28.03893702,,,,21.17499076,67,316411,16.41032699,26.89148975,,,,,,,,,,,,,21.10350931,16.17993958,27.05374651,,,,13.8,,5000,,,69,,0.474156973,16100,33955,,,0.656,,,,,46.87376813,,,,,0.643763035,11421,17741,0.611558343,0.675967726,0.113938249,1930,16939,0.087950579,0.139925919,0.844484527,14982,17741,0.826100429,0.862868626,46448,,,,,0.237362212,11025,46448,,,0.166853255,7750,46448,,,0.023122632,1074,46448,,,0.005446951,253,46448,,,0.005231657,243,46448,,,0.004865656,226,46448,,,0.033650534,1563,46448,,,0.914420427,42473,46448,,,0.00185645,80,43093,0,0.004982893,0.505037892,23458,46448,,,0.451438692,20647,45736,, -05,057,05057,AR,Hempstead County,2024,1,10924.74094,397,57255,9281.300079,12568.1818,0,,,,2,,,,2,11559.63301,8409.247564,14710.01845,,,,,2,12489.11,9972.94591,15005.27408,,,,,2,,0.251,,,0.22,0.286,4.926864044,,,4.011238443,5.961570306,5.871679387,,,4.75987389,7.111853042,0.093906094,188,2002,0.081128252,0.106683936,0,,,,,,,0.144838213,0.117761281,0.171915144,0.054054054,0.032085263,0.076022845,0.068539326,0.051939129,0.085139523,,,,,,,0.228,,,0.19,0.27,0.448,,,0.368,0.531,5.8,0.161088828,0.159,,,0.358,,,0.306,0.415,0.604834289,12136,20065,,,0.124857545,,,0.097340214,0.157364305,0.275862069,8,29,0.177833165,0.378478493,888.6,175,19694,,,51.37900356,231,4496,44.75324267,58.00476444,,,,,,,52.95735901,41.79311957,66.18761245,73.76185458,57.50098431,93.19366579,39.47368421,31.04855669,49.48060497,,,,,,,0.118235069,1857,15706,0.101554218,0.134915921,0.000253884,5,19694,,,3938.8,0.000359842,7,19453,,,2779,0.001028119,20,19453,,,972.65,3120,,,,,,,3934,,2957,0.35,,,,,,,0.36,,0.35,0.38,,,,,,,0.3,0.22,0.4,0.838884294,11158,13301,0.811268142,0.866500447,0.552354824,2416,4374,0.461860669,0.642848979,0.032706285,306,9356,,,0.288,1371,,0.185531915,0.390468085,,,,,,,0.634047481,0.582108003,0.685986959,0.451555556,0.288061673,0.615049439,0.054589372,0.009301517,0.099877227,5.104170165,91186,17865,3.894814252,6.313526078,0.387730792,1953,5037,0.311526464,0.46393512,10.15537727,20,19694,,,69.7580151,74,106081,54.77504571,87.57479992,,,,,,,53.88784988,31.39165838,86.27966785,,,,94.34127081,70.8720662,123.094894,,,,9.7,,,,,1,,,,,0.135802469,1100,8100,0.091343611,0.180261327,0.091525424,0.05192732,0.131123528,0.029382716,0.014842036,0.043923396,0.042592593,0.010554355,0.074630831,0.864804616,6595,7626,0.816596669,0.913012562,,,,,,,0.863013699,0.77612008,0.949907317,,,,0.889029269,0.855355992,0.922702547,0.325,,7626,0.260681643,0.389318357,74.82269693,,,73.53509013,76.11030372,,,,,,,75.12364095,72.45005347,77.79722844,81.75663088,74.18274326,89.3305185,73.33434827,71.55440598,75.11429055,,,,537.3905715,397,57255,481.3274735,593.4536695,,,,,,,527.2318916,423.3142246,631.1495585,,,,597.7325489,518.8853213,676.5797765,,,,55.56505386,13,23396,29.586051,95.01793434,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.148,,,0.129,0.169,0.197,,,0.172,0.223,0.133,,,0.114,0.154,198.8,32,16093,,,0.159,3230,,,,0.161088828,3642.057316,22609,,,,,,,,,,,,,,,,,,,,,,,,,,0.377,,,0.366,0.389,0.144728346,1569,10841,0.122090048,0.167366644,0.061004315,311,5098,0.040748996,0.081259635,0.000565466,11,19453,,,1768.454546,0.866286307,208.775,241,,,,,,,,2.712630946,,,,,,,2.524333519,2.622692383,3.027864526,2.485232644,,,,,,,2.238253252,2.478164199,2.682898196,0.182801502,,,,,-9612.338333,,,,,0.813656768,36796,45223,0.679139201,0.948174334,46423,,,40043.76596,52802.23404,39712,22292.42553,57131.57447,,,,32550,21518,43582,62652,23176.76596,102127.234,57871,49756.95745,65985.04255,,,,,,0.894039735,2970,3322,,,34.42840016,,,,,0.250802404,,46423,,,6.517016655,9,1381,,,7.99259353,12,150139,4.129889708,13.96145242,,,,,,,,,,,,,,,,,,,9.092939939,10,106081,4.157871156,17.26123241,9.426758798,,,,,,,,,,,,,,,,,,,14.1401382,15,106081,7.914128009,23.32200759,,,,,,,,,,,,,19.21766628,9.593389764,34.38571344,,,,22.64568167,34,150139,15.68279287,31.6450703,,,,,,,,,,,,,24.5395762,14.98941066,37.89938516,,,,30,,2400,,,72,,0.450971353,6848,15185,,,0.502,,,,,30.84076438,,,,,0.676682529,4977,7355,0.635229363,0.718135695,0.1248136,837,6706,0.079314506,0.170312693,0.775254929,5702,7355,0.731834299,0.818675558,19453,,,,,0.249164653,4847,19453,,,0.19421169,3778,19453,,,0.295892664,5756,19453,,,0.008739012,170,19453,,,0.006168714,120,19453,,,0.00241608,47,19453,,,0.141571994,2754,19453,,,0.528247571,10276,19453,,,0.036535716,691,18913,0.024371683,0.048699749,0.508764715,9897,19453,,,0.558684276,11210,20065,, -05,059,05059,AR,Hot Spring County,2024,1,11669.35173,775,92822,10323.43547,13015.26798,0,,,,2,,,,2,15982.90626,11031.31663,20934.4959,,,,,2,11385.98618,9931.621158,12840.35119,,,,,2,,0.214,,,0.181,0.248,4.58931341,,,3.748256601,5.572211554,5.606480179,,,4.63275407,6.713431846,0.093231162,219,2349,0.081472893,0.104989432,0,,,,,,,0.211206897,0.15868412,0.263729673,0.074074074,0.029895629,0.118252519,0.078835979,0.066686549,0.090985408,,,,,,,0.228,,,0.185,0.273,0.355,,,0.29,0.422,6.1,0.112131075,0.167,,,0.3,,,0.25,0.354,0.174606538,5769,33040,,,0.143373301,,,0.113986374,0.176149648,0.28,14,50,0.206244449,0.356341939,458.5,152,33148,,,33.316675,200,6003,28.69921942,37.93413057,,,,,,,26.74591382,15.8513236,42.27007469,,,,34.06429636,28.78597895,39.34261377,,,,68.57142857,35.43185776,119.780486,0.089044705,2197,24673,0.074746832,0.103342577,0.000241342,8,33148,,,4143.5,0.00027106,9,33203,,,3689.222222,0.002319068,77,33203,,,431.2077922,2865,,,,,,,5602,,2695,0.36,,,,,,,0.39,,0.36,0.47,,,,,,,0.41,,0.48,0.88539672,21269,24022,0.862433699,0.908359741,0.485846868,4188,8620,0.416441,0.555252735,0.035118144,486,13839,,,0.209,1300,,0.130361702,0.287638298,,,,,,,0.39893617,0.182833998,0.615038342,0.824766355,0.725000474,0.924532236,0.261919011,0.194867268,0.328970754,4.824888159,105694,21906,4.023049582,5.626726735,0.268063473,1740,6491,0.1878344,0.348292546,11.16206106,37,33148,,,117.8704735,198,167981,101.4521615,134.2887854,,,,,,,107.74701,65.81467291,166.4065182,,,,124.1724842,105.6150805,142.729888,,,,9.7,,,,,0,,,,,0.107870555,1350,12515,0.079599542,0.136141569,0.063102894,0.043254776,0.082951012,0.025169796,0.011270663,0.039068929,0.021174591,0.004967017,0.037382164,0.813058473,10373,12758,0.785548694,0.840568252,,,,,,,0.830892144,0.638846931,1,,,,0.830924036,0.785487906,0.876360167,0.458,,12758,0.398616476,0.517383524,72.98199457,,,72.00372255,73.96026658,,,,,,,69.23677538,65.99394424,72.47960651,,,,73.10592466,72.04862228,74.16322704,,,,587.2878244,775,92822,543.4869392,631.0887095,,,,,,,810.6025826,649.7000503,971.5051149,,,,577.3465718,530.0616694,624.6314742,,,,79.13479293,24,30328,50.70315502,117.7462991,,,,,,,,,,,,,73.03974221,42.54834144,116.9437028,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.138,,,0.119,0.158,0.187,,,0.161,0.211,0.111,,,0.095,0.129,261.7,75,28654,,,0.167,5530,,,,0.112131075,3691.691394,32923,,,18.86680039,19,100706,11.3590463,29.46284588,,,,,,,,,,,,,18.08645325,10.12285059,29.83085413,,,,0.356,,,0.34,0.371,0.104367867,1902,18224,0.086495526,0.122240207,0.047527675,322,6775,0.032038314,0.063017037,0.000843297,28,33203,,,1185.821429,0.901790634,327.35,363,,,,,,,,2.877306853,,,,,,,2.454323411,2.717617677,2.997999984,2.734764951,,,,,,,1.907200584,2.687619003,2.906033469,0.185355646,,,,,-4564.54093,,,,,0.724447826,35227,48626,0.623912799,0.824982854,50654,,,44098.42553,57209.57447,103462,102494.5106,104429.4894,,,,34649,20591.80851,48706.19149,,,,53161,44240.31915,62081.68085,,,,,,0.61627451,3143,5100,,,64.00984582,,,,,0.229853516,,50654,,,8.6902545,14,1611,,,10.22229226,24,234781,6.549615537,15.2099606,,,,,,,,,,,,,9.807565246,5.904794952,15.31572802,,,,34.30832737,56,167981,25.69929149,44.87613692,33.3371036,,,,,,,,,,,,,38.6742727,28.5153557,51.27647476,,,,22.02630059,37,167981,15.50854833,30.36035393,,,,,,,,,,,,,23.82379058,16.39920123,33.45745957,,,,27.25944604,64,234781,20.99309507,34.80970403,,,,,,,,,,,,,28.90650809,21.83566556,37.53750517,,,,4.411764706,,3400,,,15,,0.477634081,12557,26290,,,0.597,,,,,24.80263442,,,,,0.786554622,9360,11900,0.766666506,0.806442738,0.097174425,1073,11042,0.066817675,0.127531175,0.755630252,8992,11900,0.715880925,0.795379579,33203,,,,,0.190856248,6337,33203,,,0.197512273,6558,33203,,,0.108815469,3613,33203,,,0.007017438,233,33203,,,0.004848959,161,33203,,,0.000783062,26,33203,,,0.0390025,1295,33203,,,0.820648737,27248,33203,,,0.000696181,22,31601,0,0.004458102,0.472005542,15672,33203,,,0.732082325,24188,33040,, -05,061,05061,AR,Howard County,2024,1,11763.95115,271,35901,9571.389292,13956.513,0,,,,2,,,,2,18117.62034,12471.3362,25443.87502,,,,,2,11585.96849,8821.128512,14350.80846,,,,,2,,0.235,,,0.207,0.265,4.673377952,,,3.759142925,5.684663298,5.933638412,,,4.823506084,7.148506172,0.097581318,117,1199,0.080784235,0.1143784,0,,,,,,,0.1328125,0.091239433,0.174385567,0.066371681,0.033916782,0.098826581,0.093979442,0.072063105,0.115895779,,,,,,,0.225,,,0.187,0.266,0.413,,,0.333,0.495,6,0.161200746,0.148,,,0.34,,,0.288,0.396,0.467344544,5975,12785,,,0.131388247,,,0.102670005,0.165171865,0.52631579,10,19,0.41920514,0.619812167,795.4,101,12698,,,34.83742535,105,3014,28.17384754,41.50100315,,,,,,,43.47826087,29.33460003,62.06792086,31.53153153,19.51851499,48.1992954,32.36245955,24.02004125,42.66586839,,,,,,,0.119785575,1229,10260,0.100721745,0.138849405,0.000472515,6,12698,,,2116.333333,0.000238911,3,12557,,,4185.666667,0.0015131,19,12557,,,660.8947368,3097,,,,,,,2608,,2960,0.34,,,,,,,0.44,,0.33,0.42,,,,,,,0.3,0.3,0.43,0.884185773,7520,8505,0.849004385,0.919367162,0.460787306,1510,3277,0.366804454,0.554770157,0.033339507,180,5399,,,0.229,721,,0.140829787,0.317170213,,,,,,,0.435309973,0.276506737,0.594113209,0.330110497,0.175187555,0.48503344,0.155070755,0.068627945,0.241513565,4.023873391,90006,22368,3.392870262,4.654876519,0.370269452,1223,3303,0.258027924,0.48251098,12.60040951,16,12698,,,83.55107249,55,65828,62.9421021,108.7532053,,,,,,,163.362293,102.3782793,247.3324748,,,,69.60612534,46.61631457,99.96600686,,,,9.6,,,,,1,,,,,0.118595825,625,5270,0.082249743,0.154941908,0.076097561,0.046684235,0.105510887,0.041745731,0.01521546,0.068276001,0.003605313,0,0.008456457,0.81589404,4312,5285,0.759041752,0.872746328,,,,,,,0.676923077,0.602397552,0.751448602,0.802116402,0.754945172,0.849287632,0.829105474,0.758491827,0.899719121,0.288,,5285,0.220873558,0.355126442,73.0672676,,,71.46186403,74.67267116,,,,,,,69.23771009,65.27507086,73.20034932,87.59463639,74.22648601,100.9627868,72.96235536,70.9843279,74.94038281,,,,584.5385101,271,35901,511.5559789,657.5210413,,,,,,,733.3636391,558.2703808,945.9856628,,,,591.5350547,502.924603,680.1455064,,,,94.11764706,14,14875,51.45499345,157.9134193,,,,,,,,,,,,,129.4833614,62.09230475,238.1245117,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.144,,,0.126,0.164,0.197,,,0.171,0.223,0.123,,,0.106,0.142,183.8,19,10335,,,0.148,1910,,,,0.161200746,2222.797091,13789,,,,,,,,,,,,,,,,,,,,,,,,,,0.356,,,0.344,0.369,0.147234892,1033,7016,0.122213615,0.172256168,0.062390158,213,3414,0.04094335,0.083836967,0.000557458,7,12557,,,1793.857143,0.966328829,214.525,222,,,,,,,,2.871763802,,,,,,,2.618826132,2.901928728,2.991192361,2.621412627,,,,,,,2.26907225,2.568898529,2.83490589,0.138109757,,,,,-10965.209,,,,,0.763998965,32486,42521,0.577765514,0.950232416,46449,,,41745,51153,,,,,,,32679,22834.91489,42523.08511,39428,17011.31915,61844.68085,51055,41067.93617,61042.06383,,,,,,0.770674079,2218,2878,,,41.87082271,,,,,0.250662016,,46449,,,9.944751381,9,905,,,11.89124912,11,92505,5.936068718,21.27672938,,,,,,,,,,,,,,,,,,,16.67527334,10,65828,7.996441727,30.66642138,15.19110409,,,,,,,,,,,,,,,,,,,21.26754573,14,65828,11.62716515,35.68332795,,,,,,,,,,,,,,,,,,,32.43067942,30,92505,21.88084322,46.29681141,,,,,,,63.25444099,32.68449269,110.4927787,,,,27.15362161,15.52064092,44.09578032,,,,8.75,,1600,,,14,,0.529463308,4834,9130,,,0.506,,,,,0.083475183,,,,,0.725880551,3792,5224,0.674889125,0.776871978,0.105007095,518,4933,0.068604844,0.141409346,0.762251149,3982,5224,0.71653202,0.807970277,12557,,,,,0.255236123,3205,12557,,,0.188022617,2361,12557,,,0.19933105,2503,12557,,,0.016325556,205,12557,,,0.007565501,95,12557,,,0.001194553,15,12557,,,0.138408856,1738,12557,,,0.627697699,7882,12557,,,0.027845341,332,11923,,,0.512940989,6441,12557,,,1,12785,12785,, -05,063,05063,AR,Independence County,2024,1,10446.14948,732,104463,9267.79318,11624.50577,0,,,,2,,,,2,,,,2,10626.89856,6491.185722,16412.38294,1,10419.04843,9183.58487,11654.51198,,,,,2,,0.211,,,0.18,0.246,4.631048679,,,3.729887755,5.681124762,5.706177016,,,4.593601978,6.894711602,0.091669247,296,3229,0.081716204,0.101622291,0,,,,,,,0.213333333,0.120618297,0.30604837,0.075718016,0.049223344,0.102212687,0.089038534,0.07824172,0.099835347,,,,,,,0.217,,,0.174,0.262,0.374,,,0.302,0.45,6.7,0.060958814,0.165,,,0.303,,,0.249,0.362,0.49014181,18595,37938,,,0.143495059,,,0.112239162,0.177949833,0.344262295,21,61,0.278595898,0.409672518,408.2,154,37723,,,33.7723742,300,8883,29.95067029,37.59407811,,,,,,,,,,52.84015852,37.74978394,71.9532985,32.82159873,28.73661847,36.90657899,,,,,,,0.11627217,3527,30334,0.099591319,0.132953021,0.000768762,29,37723,,,1300.793103,0.000448017,17,37945,,,2232.058824,0.001792068,68,37945,,,558.0147059,3293,,,,,,,8571,,3268,0.32,,,,,,,0.42,,0.32,0.48,,,,,,0.67,0.42,0.22,0.48,0.868489481,22044,25382,0.849744311,0.88723465,0.571476175,5145,9003,0.496419547,0.646532802,0.033576466,557,16589,,,0.2,1772,,0.134468085,0.265531915,,,,,,,,,,0.543001686,0.427937355,0.658066018,0.215291154,0.149553246,0.281029062,4.778127985,100054,20940,3.89782652,5.658429449,0.237306966,2136,9001,0.162696794,0.311917138,12.45924237,47,37723,,,82.76432857,156,188487,69.77648742,95.75216973,,,,,,,,,,,,,85.0288857,70.99386677,99.06390463,,,,8.6,,,,,0,,,,,0.134031414,1920,14325,0.106767594,0.161295233,0.091229306,0.067174542,0.11528407,0.034554974,0.021145663,0.047964285,0.012565445,0.004144681,0.020986209,0.827230401,13148,15894,0.804521333,0.84993947,,,,,,,,,,0.704612365,0.580700536,0.828524194,0.839613287,0.815230987,0.863995587,0.17,,15894,0.134136368,0.205863632,74.26033793,,,73.33544931,75.18522655,,,,,,,,,,89.59856325,55.03163748,124.165489,74.05360113,73.10132458,75.00587769,,,,530.9038101,732,104463,490.8579953,570.9496249,,,,,,,,,,398.5864896,232.1913186,638.1755816,544.5398725,502.0468119,587.032933,,,,64.06939208,26,40581,41.85225405,93.87650399,,,,,,,,,,,,,48.92517506,27.96496485,79.45141913,,,,7.272727273,24,3300,4.659773592,10.8212417,,,,,,,,,,,,,,,,,,,,,,0.139,,,0.119,0.16,0.195,,,0.169,0.222,0.105,,,0.089,0.122,175.1,55,31416,,,0.165,6240,,,,0.060958814,2233.957671,36647,,,10.59088302,12,113305,5.4724638,18.50014125,,,,,,,,,,,,,12.08264529,6.243279138,21.10594974,,,,0.341,,,0.325,0.358,0.140097296,2995,21378,0.118650488,0.161544105,0.061816251,582,9415,0.042752421,0.080880081,0.001528528,58,37945,,,654.2241379,0.898284424,397.94,443,,,,,,,,2.827279732,,,,,,,2.31131755,2.623844866,2.918424656,2.726219054,,,,,,,2.238546009,2.460647355,2.805176255,0.108134457,,,,,-3455.54925,,,,,0.809056392,37503,46354,0.71928393,0.898828855,57611,,,51804.87234,63417.12766,101071,99475.59575,102666.4043,83333,7225.425532,159440.5745,19194,11205.06383,27182.93617,30388,13163.82979,47612.17021,55251,51483.51064,59018.48936,,,,,,0.662534636,4543,6857,,,63.8821656,,,,,0.202096822,,57611,,,7.20033884,17,2361,,,3.806522095,10,262707,1.825375303,7.000329661,,,,,,,,,,,,,4.312426689,2.06797622,7.930706221,,,,20.9329122,39,188487,14.738702,28.85326206,20.69108214,,,,,,,,,,,,,20.79952135,14.31743345,29.21026115,,,,16.4467576,31,188487,11.17477385,23.34485959,,,,,,,,,,,,,18.09125228,12.20609194,25.82638754,,,,26.26500246,69,262707,20.43573965,33.2400416,,,,,,,,,,,,,25.0120748,18.99271704,32.33390678,,,,,,4300,,,,,0.520516499,14512,27880,,,0.627,,,,,33.24028367,,,,,0.694041756,10006,14417,0.664417342,0.723666171,0.125904275,1723,13685,0.092245552,0.159562998,0.680516057,9811,14417,0.648896297,0.712135818,37945,,,,,0.240848597,9139,37945,,,0.185294505,7031,37945,,,0.023534063,893,37945,,,0.009355646,355,37945,,,0.009092107,345,37945,,,0.003768613,143,37945,,,0.075872974,2879,37945,,,0.867149822,32904,37945,,,0.011314382,402,35530,0.004922372,0.017706393,0.50512584,19167,37945,,,0.71234646,27025,37938,, -05,065,05065,AR,Izard County,2024,1,11276.77346,299,36313,8882.100135,13671.44678,0,,,,2,,,,2,,,,2,,,,2,12188.7421,9559.622445,14817.86176,,,,,2,,0.225,,,0.189,0.266,4.909614282,,,3.964180039,5.980224737,6.050668046,,,4.926806583,7.271244561,0.082424242,68,825,0.06365799,0.101190495,0,,,,,,,,,,,,,0.075933076,0.057307369,0.094558783,,,,,,,0.24,,,0.193,0.293,0.376,,,0.302,0.458,7,0.003212163,0.178,,,0.315,,,0.265,0.375,0.520954556,7073,13577,,,0.137442211,,,0.108375255,0.171421923,0.583333333,7,12,0.453887422,0.688052708,251.6,35,13911,,,29.44997835,68,2309,22.86906053,37.33486494,,,,,,,,,,,,,30.18500487,23.14267015,38.69581396,,,,,,,0.100217189,969,9669,0.084727827,0.115706551,0.000287542,4,13911,,,3477.75,0.000213554,3,14048,,,4682.666667,0.00078303,11,14048,,,1277.090909,3100,,,,,,,,,3124,0.28,,,,,,,,,0.28,0.39,,,,,,,,,0.39,0.832472254,8701,10452,0.800720707,0.864223801,0.563706564,1752,3108,0.473855422,0.653557706,0.051754776,233,4502,,,0.291,718,,0.193297872,0.388702128,,,,,,,,,,0.2,0,0.545764277,0.237040528,0.15329797,0.320783086,5.037798592,90897,18043,3.931282434,6.14431475,0.194690266,462,2373,0.123699518,0.265681013,10.06397815,14,13911,,,106.6752397,73,68432,83.61635919,134.1280982,,,,,,,,,,,,,113.5987126,88.88399629,143.0587779,,,,8.1,,,,,0,,,,,0.099796334,490,4910,0.068067527,0.131525141,0.080859775,0.04729645,0.114423099,0.010183299,0,0.02048205,0.00814664,0,0.019203208,0.814202335,3348,4112,0.772119878,0.856284792,,,,,,,,,,,,,0.752329749,0.68175404,0.822905459,0.348,,4112,0.255600019,0.440399981,74.26158922,,,72.52645247,75.99672597,,,,,,,,,,,,,73.38008445,71.5271874,75.23298149,,,,518.5159247,299,36313,453.2551145,583.7767349,,,,,,,,,,,,,547.5836382,477.3540155,617.813261,,,,119.7494473,13,10856,63.76153732,204.7752019,,,,,,,,,,,,,122.1374046,63.11017922,213.3494661,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.147,,,0.125,0.172,0.197,,,0.171,0.227,0.108,,,0.092,0.126,139.8,17,12163,,,0.178,2430,,,,0.003212163,43.9937796,13696,,,,,,,,,,,,,,,,,,,,,,,,,,0.356,,,0.338,0.373,0.118980963,850,7144,0.097534155,0.140427772,0.049019608,130,2652,0.032338757,0.065700459,0.001281321,18,14048,,,780.4444444,0.952022059,129.475,136,,,,,,,,3.112610498,,,,,,,,,3.096439699,3.123282146,,,,,,,,,3.14613035,0.060585832,,,,,-5927.607667,,,,,0.74623948,36265,48597,0.62763665,0.86484231,43920,,,37825.53192,50014.46809,,,,,,,,,,29583,9502.829787,49663.17021,46204,38931.14894,53476.85106,,,,,,0.66791244,1251,1873,,,,,,,,0.265095628,,43920,,,9.118541033,6,658,,,,,,,,,,,,,,,,,,,,,,,,,,32.64169133,23,68432,19.93839307,50.41244486,33.61000701,,,,,,,,,,,,,35.49298371,21.68003653,54.81603469,,,,26.30348375,18,68432,15.5891115,41.57084444,,,,,,,,,,,,,28.39967814,16.83144914,44.8837353,,,,19.93494911,19,95310,12.00214161,31.13089243,,,,,,,,,,,,,20.3449601,12.05771275,32.1538082,,,,0,,1200,,,0,,0.520143241,5810,11170,,,0.401,,,,,0.432113591,,,,,0.77257732,3747,4850,0.751216343,0.793938297,0.098979139,446,4506,0.065362452,0.132595826,0.623092784,3022,4850,0.578691866,0.667493701,14048,,,,,0.178601936,2509,14048,,,0.254057517,3569,14048,,,0.025484055,358,14048,,,0.008826879,124,14048,,,0.0050541,71,14048,,,0.000213554,3,14048,,,0.029328018,412,14048,,,0.920344533,12929,14048,,,0,0,13193,0,0.007224979,0.471383827,6622,14048,,,1,13577,13577,, -05,067,05067,AR,Jackson County,2024,1,12867.98885,398,46319,10877.11072,14858.86698,0,,,,2,,,,2,13411.95321,9443.252788,18486.6108,,,,,2,13477.50386,11019.45995,15935.54777,,,,,2,,0.253,,,0.218,0.287,5.029842815,,,4.078379631,6.029656499,6.035859019,,,4.91676324,7.213911375,0.099127676,125,1261,0.082633615,0.115621738,0,,,,,,,0.134199134,0.090241537,0.178156732,,,,0.090521832,0.072169296,0.108874368,,,,,,,0.254,,,0.211,0.299,0.4,,,0.324,0.477,5.5,0.142693199,0.182,,,0.361,,,0.305,0.419,0.619576246,10381,16755,,,0.135422254,,,0.107556901,0.167036263,0.190476191,4,21,0.083840113,0.319045344,779.3,131,16811,,,54.05405405,166,3071,45.83105389,62.27705422,,,,,,,73.4557596,53.37306738,98.61092868,,,,48.74715262,39.51052499,57.98378025,,,,,,,0.096203181,1125,11694,0.080713819,0.111692543,0.000356909,6,16811,,,2801.833333,0.00030077,5,16624,,,3324.8,0.001082772,18,16624,,,923.5555556,6142,,,,,,,7513,,6008,0.33,,,,,,,0.4,,0.33,0.51,,,,,,,0.48,,0.52,0.862580699,10288,11927,0.841227429,0.883933969,0.462126034,2178,4713,0.385521438,0.538730631,0.049519318,273,5513,,,0.276,894,,0.173531915,0.378468085,,,,,,,0.365448505,0.078505969,0.652391041,0.864864865,0.375502586,1,0.23479006,0.146811729,0.322768391,4.668178468,82342,17639,3.891880109,5.444476827,0.302539003,989,3269,0.207119884,0.397958122,11.30212361,19,16811,,,90.35571619,76,84112,71.19002744,113.0936525,,,,,,,,,,,,,107.019884,83.26785767,135.4405126,,,,8.2,,,,,0,,,,,0.128205128,800,6240,0.08721333,0.169196926,0.104622871,0.06624285,0.143002892,0.005448718,0,0.011441031,0.020833333,0.007361539,0.034305128,0.829527897,4832,5825,0.786834092,0.872221703,,,,,,,,,,,,,0.86426532,0.799943266,0.928587373,0.3,,5825,0.237483699,0.362516301,71.80616176,,,70.42818511,73.18413841,,,,,,,71.87189514,68.70429496,75.03949532,,,,71.14787383,69.50097601,72.79477164,,,,642.32168,398,46319,576.3363535,708.3070065,,,,,,,684.4929375,518.4282664,886.8399945,,,,654.3431663,579.7767048,728.9096277,,,,74.35446803,11,14794,37.11748254,133.0406821,,,,,,,,,,,,,95.77626664,45.92844264,176.1359644,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.154,,,0.134,0.175,0.204,,,0.178,0.231,0.124,,,0.106,0.142,236.6,34,14368,,,0.182,3070,,,,0.142693199,2568.049495,17997,,,,,,,,,,,,,,,,,,,,,,,,,,0.369,,,0.355,0.384,0.118127251,984,8330,0.097871932,0.13838257,0.043404255,153,3525,0.029106383,0.057702128,0.001022618,17,16624,,,977.8823529,0.84137931,97.6,116,,,,,,,,2.980660443,,,,,,,2.879561303,,3.091106407,2.925133878,,,,,,,2.399858016,,3.154188466,0.102530143,,,,,-7002.569,,,,,0.793248856,37623,47429,0.666860871,0.919636842,43579,,,37162.82979,49995.17021,,,,,,,23482,14207.44681,32756.55319,40406,1426.425532,79385.57447,50299,44316.53192,56281.46809,,,,,,0.875,1855,2120,,,50.13963246,,,,,0.267169967,,43579,,,7.777777778,7,900,,,8.426658577,10,118671,4.040910329,15.49692515,,,,,,,,,,,,,,,,,,,15.28405497,14,84112,8.138115565,26.13619947,16.64447404,,,,,,,,,,,,,20.6142463,10.97621796,35.25098898,,,,13.07780103,11,84112,6.528391154,23.3997985,,,,,,,,,,,,,15.51012811,7.437709303,28.52367783,,,,27.8079733,33,118671,19.1417293,39.05273341,,,,,,,,,,,,,34.05657786,23.13979234,48.3405938,,,,,,1500,,,,,0.37753059,5091,13485,,,0.518,,,,,20.0321809,,,,,0.666285154,4075,6116,0.626721924,0.705848383,0.098528139,569,5775,0.059206761,0.137849516,0.759483322,4645,6116,0.720896629,0.798070016,16624,,,,,0.198929259,3307,16624,,,0.182386911,3032,16624,,,0.176672281,2937,16624,,,0.008000481,133,16624,,,0.005654476,94,16624,,,0.002466314,41,16624,,,0.034588547,575,16624,,,0.756797401,12581,16624,,,0.000502197,8,15930,0,0.00612181,0.498375842,8285,16624,,,0.645061176,10808,16755,, -05,069,05069,AR,Jefferson County,2024,1,15517.99196,1602,183559,14398.96068,16637.02324,0,,,,2,,,,2,17057.2062,15531.61619,18582.7962,,,,,2,14105.98929,12306.45309,15905.5255,,,,,2,,0.248,,,0.216,0.282,4.620761235,,,3.726590001,5.561744836,5.64385403,,,4.669363161,6.69118692,0.139161463,780,5605,0.130100203,0.148222723,0,,,,0.171428571,0.083138142,0.259719001,0.163315891,0.151292197,0.175339585,0.141791045,0.082726808,0.200855281,0.086515513,0.073056394,0.099974633,,,,,,,0.226,,,0.189,0.266,0.433,,,0.372,0.495,6.7,0.106063949,0.142,,,0.355,,,0.305,0.408,0.592358014,39842,67260,,,0.120172338,,,0.094987784,0.148914324,0.194444444,14,72,0.135863201,0.259061225,1267.8,835,65861,,,39.00068532,626,16051,35.94547478,42.05589585,,,,,,,40.46087889,36.73488376,44.18687401,,,,39.12937148,33.06621256,45.19253041,,,,,,,0.086990612,4105,47189,0.073884229,0.100096995,0.000728808,48,65861,,,1372.104167,0.000389129,25,64246,,,2569.84,0.002443732,157,64246,,,409.2101911,3648,,,,,,,4555,,2994,0.39,,,,,,,0.36,,0.41,0.44,,,,,,0.43,0.33,0.46,0.49,0.890841064,40715,45704,0.876521823,0.905160306,0.464730539,7761,16700,0.41945528,0.510005798,0.052077649,1336,25654,,,0.334,4493,,0.238680851,0.429319149,,,,,,,0.352404352,0.297016755,0.40779195,0.213903743,0.102434859,0.325372628,0.1231046,0.068888656,0.177320545,5.10030266,96054,18833,4.511812403,5.688792918,0.472617057,6783,14352,0.41376656,0.531467554,13.05780356,86,65861,,,125.2643226,420,335291,113.2842674,137.2443779,,,,,,,132.525261,116.1949491,148.8555729,,,,123.9331229,104.6691924,143.1970534,,,,9.7,,,,,0,,,,,0.151896358,4045,26630,0.12870488,0.175087835,0.120377504,0.101500835,0.139254173,0.022155464,0.011704051,0.032606877,0.017649268,0.006520509,0.028778027,0.850557651,21201,24926,0.826447877,0.874667424,,,,,,,0.846019844,0.808164835,0.883874853,,,,0.852615035,0.834137752,0.871092319,0.22,,24926,0.191905095,0.248094905,70.95150648,,,70.20318489,71.69982807,,,,,,,69.77285639,68.77086551,70.77484727,,,,71.86620859,70.66958053,73.06283665,,,,685.1102517,1602,183559,649.5832826,720.6372209,,,,,,,730.1527112,680.5729625,779.73246,,,,656.7248886,601.8945182,711.555259,,,,95.24817441,63,66143,73.19131245,121.863791,,,,,,,98.06897518,70.67949129,132.5607649,,,,103.2384264,62.1562767,161.2195912,,,,9.678534393,56,5786,7.311060868,12.56838196,,,,,,,10.02638522,7.095266925,13.76199708,,,,,,,,,,,,,0.143,,,0.125,0.162,0.193,,,0.169,0.218,0.136,,,0.117,0.154,519.4,290,55833,,,0.142,9660,,,,0.106063949,8213.061866,77435,,,17.67123426,35,198062,12.30866214,24.57640909,,,,,,,15.91188353,9.430390619,25.147636,,,,22.61420172,13.17360586,36.20752762,,,,0.406,,,0.391,0.419,0.107739718,3636,33748,0.089867378,0.125612058,0.037097345,524,14125,0.025182452,0.049012239,0.000918345,59,64246,,,1088.915254,0.812723097,619.295,762,,,0.130275677,534,4099,0.07013814,0.190413214,2.290235438,,,,,,,2.048844103,,3.040487563,2.166729967,,,,,,,1.923926806,,2.736011353,0.326112399,,,,,-12898.72633,,,,,0.869254924,39585,45539,0.798469062,0.940040787,45894,,,41186.42553,50601.57447,,,,,,,42390,39306.42553,45473.57447,62969,24818.70213,101119.2979,58610,51936.46809,65283.53192,,,,,,0.822718889,7583,9217,,,62.37076691,,,,,0.333050072,,45894,,,10.80019637,44,4074,,,34.39077992,164,476872,29.12726119,39.65429864,,,,,,,49.6875985,41.27458319,58.1006138,,,,14.63089503,9.641852018,21.28718412,,,,13.454164,45,335291,9.696577999,18.18612122,13.42117743,,,,,,,8.663626651,4.84896607,14.28933464,,,,21.36053326,13.82341087,31.53236084,,,,45.63200325,153,335291,38.40131078,52.86269571,,,,,,,60.76257026,49.70491075,71.82022977,,,,27.28087611,19.00212978,37.94109464,,,,22.4378869,107,476872,18.18634819,26.6894256,,,,,,,21.50657248,16.33084216,27.80223214,,,,24.38482505,17.78645872,32.62881446,,,,25.15625,,6400,,,161,,0.477472006,25158,52690,,,0.544,,,,,44.42394493,,,,,0.63312464,15371,24278,0.612591537,0.653657743,0.128701693,2964,23030,0.105606561,0.151796826,0.753109811,18284,24278,0.731785692,0.774433931,64246,,,,,0.213585282,13722,64246,,,0.189630483,12183,64246,,,0.56901597,36557,64246,,,0.004622856,297,64246,,,0.009603711,617,64246,,,0.001509822,97,64246,,,0.026803225,1722,64246,,,0.377112972,24228,64246,,,0.007052881,444,62953,0.00373339,0.010372372,0.501821125,32240,64246,,,0.305932203,20577,67260,, -05,071,05071,AR,Johnson County,2024,1,11861.19509,521,73363,10344.63322,13377.75696,0,,,,2,,,,2,,,,2,5946.144952,3579.96769,9285.641905,1,13266.79709,11428.67544,15104.91874,,,,,2,,0.249,,,0.214,0.289,5.114705949,,,4.106301695,6.191289861,6.394565204,,,5.199684567,7.629918592,0.075221239,170,2260,0.064347197,0.086095281,0,,,,,,,,,,0.068292683,0.043875757,0.092709609,0.0780964,0.06510593,0.09108687,,,,,,,0.243,,,0.197,0.292,0.386,,,0.307,0.468,5.8,0.133292776,0.17,,,0.365,,,0.307,0.428,0.508485766,13093,25749,,,0.135156562,,,0.105691193,0.169662473,0.16,4,25,0.067364287,0.277512739,344.4,89,25845,,,29.03946389,195,6715,24.96352785,33.11539992,,,,48.78048781,25.20558987,85.20969532,,,,22.14765101,15.24542387,31.10353642,31.51801029,26.42286941,36.61315118,,,,,,,0.133949852,2810,20978,0.116077512,0.151822193,0.000541691,14,25845,,,1846.071429,0.00026922,7,26001,,,3714.428571,0.002653744,69,26001,,,376.826087,2191,,,,,,,,,2211,0.32,,,,,,,,0.16,0.32,0.44,,,,,,,,0.15,0.45,0.80475776,13870,17235,0.776130897,0.833384624,0.404644269,2457,6072,0.345876947,0.46341159,0.041283041,417,10101,,,0.247,1532,,0.174319149,0.319680851,,,,0.259385666,0,0.518795968,,,,0.311061618,0.190119414,0.432003823,0.309367682,0.247596812,0.371138551,4.09987075,82473,20116,3.19524964,5.00449186,0.280443958,1794,6397,0.215594226,0.34529369,7.738440704,20,25845,,,89.99470619,119,132230,73.82509586,106.1643165,,,,,,,,,,,,,103.1414773,83.59819392,122.6847608,,,,8.8,,,,,0,,,,,0.134831461,1320,9790,0.104872969,0.164789953,0.098657025,0.070907259,0.12640679,0.03421859,0.020520426,0.047916755,0.01072523,0.002979379,0.018471081,0.830933063,8193,9860,0.798788446,0.86307768,,,,,,,,,,0.830345711,0.75892539,0.901766031,0.842171541,0.796901002,0.887442079,0.178,,9860,0.143756339,0.212243661,73.70908327,,,72.55221905,74.86594749,,,,,,,,,,89.46824062,75.71098478,103.2254965,72.4179777,71.12588314,73.71007226,,,,572.5645312,521,73363,521.1548509,623.9742114,,,,,,,,,,323.9156371,200.5088846,495.1394594,627.9877481,568.1177666,687.8577295,,,,61.65228113,18,29196,36.53904912,97.43718409,,,,,,,,,,,,,69.53757513,38.0168394,116.6722352,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.156,,,0.134,0.181,0.207,,,0.178,0.236,0.119,,,0.102,0.139,70.2,15,21377,,,0.17,4400,,,,0.133292776,3404.297488,25540,,,17.7358873,14,78936,9.696374628,29.75780521,,,,,,,,,,,,,22.71584105,12.41896169,38.11332142,,,,0.33,,,0.316,0.344,0.161694915,2385,14750,0.137865128,0.185524703,0.070437567,462,6559,0.048990758,0.091884375,0.000807661,21,26001,,,1238.142857,0.8875,276.9,312,,,,,,,,2.821157409,,,,,,2.584921622,,2.679597753,2.924062619,2.645955316,,,,,,2.638506521,,2.573495631,2.712800768,0.128611296,,,,,-4812.571,,,,,0.689762175,29786,43183,0.584254598,0.795269752,46660,,,41181.53192,52138.46809,,,,39309,14000.57447,64617.42553,,,,47850,33556.89362,62143.10638,42394,38145.14894,46642.85106,,,,,,0.753769927,3499,4642,,,42.94111137,,,,,0.249528504,,46660,,,6.715506716,11,1638,,,5.960541217,11,184547,2.9754807,10.66505471,,,,,,,,,,,,,,,,,,,23.7698355,30,132230,15.91903189,34.13744878,22.68774106,,,,,,,,,,,,,27.08692269,17.52922818,39.98564128,,,,18.90645088,25,132230,12.23525815,27.90965114,,,,,,,,,,,,,20.24271985,12.53056264,30.94314758,,,,16.2560215,30,184547,10.96786944,23.20648149,,,,,,,,,,,,,15.09951956,9.462788519,22.86085408,,,,12,,3000,,,36,,0.513961039,9498,18480,,,0.447,,,,,23.4996927,,,,,0.703808466,6967,9899,0.673882015,0.733734916,0.133179772,1272,9551,0.101759806,0.164599737,0.690069704,6831,9899,0.652633567,0.727505841,26001,,,,,0.243336795,6327,26001,,,0.177531633,4616,26001,,,0.017268567,449,26001,,,0.01307642,340,26001,,,0.034921734,908,26001,,,0.002461444,64,26001,,,0.147878928,3845,26001,,,0.767278182,19950,26001,,,0.035979841,871,24208,0.024021007,0.047938676,0.500826891,13022,26001,,,0.696454231,17933,25749,, -05,073,05073,AR,Lafayette County,2024,1,12004.10755,187,17184,9049.59742,14958.61767,0,,,,2,,,,2,14619.96168,10000.04296,20639.02369,,,,,2,11570.11232,7319.678787,15820.54586,,,,,2,,0.286,,,0.249,0.323,5.283909678,,,4.299232141,6.32273813,6.300206704,,,5.069318231,7.613241982,0.070539419,34,482,0.047680064,0.093398775,0,,,,,,,0.090909091,0.050865705,0.130952477,,,,0.052,0.024477245,0.079522755,,,,,,,0.27,,,0.223,0.316,0.433,,,0.344,0.52,6.1,0.113577026,0.166,,,0.396,,,0.338,0.456,0.110970197,700,6308,,,0.112103341,,,0.086081773,0.141348947,0.5,2,4,0.222237796,0.705426462,697.7,43,6163,,,48.78048781,58,1189,37.04106954,63.0600923,,,,,,,73.37526206,51.1085585,102.0472272,,,,32.30769231,19.99897075,49.38573959,,,,,,,0.133318594,603,4523,0.113063275,0.153573913,0.000324517,2,6163,,,3081.5,,0,6101,,,,0.00065563,4,6101,,,1525.25,3845,,,,,,,4214,,3311,0.34,,,,,,,0.41,,0.31,0.35,,,,,,,0.26,,0.39,0.810589278,3659,4514,0.768366678,0.852811877,0.481967213,588,1220,0.356053695,0.607880731,0.047865459,111,2319,,,0.359,397,,0.22912766,0.48887234,,,,,,,0.636636637,0.490951167,0.782322106,,,,0.186379928,0.065812545,0.306947312,5.885622331,95094,16157,3.837138715,7.934105947,0.293617021,345,1175,0.19007103,0.397163013,6.490345611,4,6163,,,69.85148966,23,32927,44.27985251,104.8115313,,,,,,,85.13536523,40.82571681,156.5669678,,,,61.64911379,31.85499671,107.6885952,,,,9.5,,,,,0,,,,,0.113793103,330,2900,0.078224,0.149362207,0.095152603,0.05441393,0.135891276,0.013448276,0.000282779,0.026613773,0.010344828,0,0.022169682,0.819282317,1895,2313,0.759949755,0.878614879,,,,,,,,,,,,,0.784053156,0.733181654,0.834924658,0.473,,2313,0.362069845,0.583930155,73.39466629,,,71.18085907,75.60847352,,,,,,,70.7391058,67.38815309,74.09005852,,,,73.91288404,70.76386392,77.06190416,,,,661.9613896,187,17184,556.5646036,767.3581757,,,,,,,843.9124666,654.0205701,1071.739001,,,,597.6241614,466.0866495,729.1616733,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.167,,,0.145,0.19,0.212,,,0.184,0.241,0.146,,,0.126,0.167,111.7,6,5373,,,0.166,1060,,,,0.113577026,868.2963665,7645,,,,,,,,,,,,,,,,,,,,,,,,,,0.391,,,0.377,0.404,0.15344224,526,3428,0.127229474,0.179655006,0.073170732,84,1148,0.050532434,0.09580903,0.000983445,6,6101,,,1016.833333,,,,,,,,,,,2.623571102,,,,,,,2.469417739,,2.949421922,2.469461395,,,,,,,2.21877796,,2.701061418,0.098692263,,,,,-16829.42,,,,,0.803367699,36546,45491,0.657333381,0.949402017,42437,,,36275.80851,48598.19149,,,,,,,23636,8569.617021,38702.38298,,,,49479,35985.38298,62972.61702,,,,,,0.816687737,646,791,,,26.10218933,,,,,0.274359639,,42437,,,15.56420234,4,257,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,30.3702129,10,32927,14.56369756,55.85190282,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,600,,,-888,,0.499813433,2679,5360,,,0.398,,,,,9.234409052,,,,,0.769532784,1960,2547,0.730233747,0.80883182,0.064400716,144,2236,0.022923112,0.105878319,0.667059285,1699,2547,0.606861749,0.727256822,6101,,,,,0.185215538,1130,6101,,,0.253073267,1544,6101,,,0.343222423,2094,6101,,,0.008195378,50,6101,,,0.00737584,45,6101,,,0.000163908,1,6101,,,0.041304704,252,6101,,,0.588100311,3588,6101,,,0.012411054,75,6043,0,0.027790936,0.513686281,3134,6101,,,1,6308,6308,, -05,075,05075,AR,Lawrence County,2024,1,13024.05473,392,44710,11017.73686,15030.3726,0,,,,2,,,,2,,,,2,,,,2,13272.66822,11194.48682,15350.84962,,,,,2,,0.221,,,0.187,0.257,4.732842125,,,3.785297572,5.7096612,6.310673133,,,5.140972906,7.513470439,0.094170404,126,1338,0.078520615,0.109820193,0,,,,,,,,,,,,,0.09453125,0.078503391,0.110559109,,,,,,,0.239,,,0.194,0.29,0.391,,,0.313,0.469,5.5,0.168136653,0.168,,,0.318,,,0.264,0.376,0.351134682,5694,16216,,,0.14203408,,,0.11127164,0.177294572,0.227272727,10,44,0.149994326,0.311342398,343.7,56,16292,,,38.07773109,145,3808,31.87985153,44.27561066,,,,,,,,,,,,,38.25746998,31.85109974,44.66384022,,,,,,,0.10513581,1347,12812,0.088454959,0.121816661,0.000306899,5,16292,,,3258.4,0.000308547,5,16205,,,3241,0.002159827,35,16205,,,463,3667,,,,,,,,,3663,0.37,,,,,,,,,0.36,0.25,,,,,,,,,0.25,0.822739726,9009,10950,0.795403339,0.850076113,0.578550256,2147,3711,0.498616156,0.658484356,0.0356673,244,6841,,,0.25,876,,0.158255319,0.341744681,,,,,,,0.430555556,0,0.961614703,0.074468085,0,0.461240578,0.26835364,0.206651148,0.330056131,4.241945522,88610,20889,3.452556233,5.03133481,0.303488053,1105,3641,0.226269515,0.38070659,7.979376381,13,16292,,,127.9442407,105,82067,103.4715251,152.4169563,,,,,,,,,,,,,133.679529,107.9871507,159.3719074,,,,8.6,,,,,0,,,,,0.08428246,555,6585,0.058350568,0.110214352,0.059770115,0.034241118,0.085299112,0.020501139,0.009216895,0.031785383,0.01063022,0.001572054,0.019688386,0.848067174,5353,6312,0.820776212,0.875358135,,,,,,,,,,,,,0.862455018,0.807457925,0.917452111,0.429,,6312,0.362971706,0.495028294,72.0542326,,,70.62972733,73.47873787,,,,,,,,,,,,,71.63965829,70.20445437,73.07486221,,,,652.8098869,392,44710,584.7801371,720.8396367,,,,,,,,,,,,,662.4029246,592.2087402,732.597109,,,,85.04951097,14,16461,46.49735907,142.6986278,,,,,,,,,,,,,84.97842855,45.24743425,145.3157009,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.147,,,0.127,0.169,0.204,,,0.176,0.234,0.108,,,0.092,0.125,94.7,13,13723,,,0.168,2730,,,,0.168136653,2928.099807,17415,,,20.36328093,10,49108,9.76498472,37.44879865,,,,,,,,,,,,,21.52528144,10.32220913,39.58575896,,,,0.353,,,0.334,0.369,0.12576087,1157,9200,0.104314061,0.147207678,0.054660681,207,3787,0.036788341,0.072533022,0.000802222,13,16205,,,1246.538462,0.901533019,191.125,212,,,,,,,,2.788560393,,,,,,,,,2.823010585,2.720102383,,,,,,,,,2.784567202,0.062941499,,,,,-4658.748333,,,,,0.778009879,35755,45957,0.68553286,0.870486898,47312,,,40938.7234,53685.2766,,,,,,,,,,41058,23292.89362,58823.10638,44333,40383.21277,48282.78723,,,,,,0.75072,2346,3125,,,60.79442695,,,,,0.246089787,,47312,,,14.52282158,14,964,,,,,,,,,,,,,,,,,,,,,,,,,,25.38629969,21,82067,15.28421076,39.64385162,25.58884814,,,,,,,,,,,,,26.65299575,16.04684453,41.62195443,,,,26.80736471,22,82067,16.80003274,40.58667234,,,,,,,,,,,,,26.99298183,16.70908119,41.26164006,,,,45.85528763,53,115581,34.34875709,59.97984524,,,,,,,,,,,,,48.2401449,36.13517884,63.09929727,,,,29.41176471,,1700,,,50,,0.457220921,5857,12810,,,0.573,,,,,31.5331135,,,,,0.672118258,4274,6359,0.647111267,0.697125249,0.072404372,424,5856,0.042978162,0.101830581,0.801069351,5094,6359,0.765710489,0.836428212,16205,,,,,0.221351435,3587,16205,,,0.191977785,3111,16205,,,0.011848195,192,16205,,,0.00666461,108,16205,,,0.003579142,58,16205,,,0.001172478,19,16205,,,0.017772293,288,16205,,,0.943227399,15285,16205,,,0.001829707,28,15303,0,0.007921211,0.50422709,8171,16205,,,0.596694623,9676,16216,, -05,077,05077,AR,Lee County,2024,1,17351.99237,256,23625,14146.04387,20557.94087,0,,,,2,,,,2,19833.7112,15265.78763,24401.63478,,,,,2,16512.96492,10989.1561,22036.77375,,,,,2,,0.307,,,0.271,0.346,5.322675156,,,4.314403364,6.389565226,5.98048328,,,4.737882172,7.220708201,0.134185304,84,626,0.107483914,0.160886693,0,,,,,,,0.153664303,0.119297137,0.188031468,,,,0.075675676,0.03756378,0.113787571,,,,,,,0.284,,,0.238,0.334,0.469,,,0.38,0.552,4.9,0.202868184,0.179,,,0.406,,,0.345,0.469,0.522209302,4491,8600,,,0.122331993,,,0.094346219,0.152750702,0.363636364,4,11,0.198476333,0.520352029,905,78,8619,,,46.98412698,74,1575,36.89264523,58.98426889,,,,,,,63.24972737,48.02816977,81.76493974,,,,25.36231884,13.86581572,42.55366145,,,,,,,0.086577571,447,5163,0.072279699,0.100875444,0.000116023,1,8619,,,8619,0.00047824,4,8364,,,2091,0.00035868,3,8364,,,2788,3400,,,,,,,3141,,3103,0.32,,,,,,,0.36,,0.29,0.34,,,,,,,0.3,,0.36,0.835136444,5172,6193,0.800969336,0.869303552,0.335440371,796,2373,0.251778861,0.419101881,0.045950156,118,2568,,,0.449,663,,0.278617021,0.619382979,,,,,,,0.585968379,0.509802967,0.662133792,0.130434783,0,0.560210481,0.171052632,0.085559478,0.256545786,6.580896997,82610,12553,4.630020961,8.531773032,0.505911637,813,1607,0.369334068,0.642489206,8.121591832,7,8619,,,129.1053228,57,44150,97.78311068,167.2709205,,,,,,,122.017924,81.71731871,175.2380925,,,,149.0148463,98.20172268,216.8087778,,,,8.7,,,,,1,,,,,0.1828125,585,3200,0.124150324,0.241474676,0.14812398,0.083242528,0.213005433,0.03125,0.005843094,0.056656906,0.01375,0,0.030366159,0.724741448,1822,2514,0.682075148,0.767407748,,,,,,,0.591588785,0.507783843,0.675393727,,,,0.865892291,0.60136262,1,0.293,,2514,0.209783189,0.376216811,69.28681589,,,67.25334823,71.32028355,,,,,,,67.67381943,65.00723131,70.34040755,,,,69.64921463,66.05781801,73.24061125,,,,807.5232451,256,23625,703.610058,911.4364322,,,,,,,927.5560045,771.5364329,1083.575576,,,,729.0450442,577.0016186,881.0884698,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.169,,,0.147,0.192,0.202,,,0.176,0.231,0.163,,,0.14,0.186,506.5,38,7502,,,0.179,1580,,,,0.202868184,2114.697946,10424,,,,,,,,,,,,,,,,,,,,,,,,,,0.408,,,0.395,0.421,0.10723933,397,3702,0.086984011,0.127494649,0.035087719,54,1539,0.023172826,0.047002613,0.00023912,2,8364,,,4182,0.775,49.6,64,,,,,,,,2.084555281,,,,,,,2.186987665,,,1.774858337,,,,,,,1.928731428,,,0.01514025,,,,,-37796.48,,,,,1.02262069,37070,36250,0.707901601,1.337339779,35213,,,30117,40309,,,,,,,20171,17615.25532,22726.74468,,,,52623,44651.93617,60594.06383,,,,,,1,636,636,,,55.00567158,,,,,0.330644932,,35213,,,8.213552361,4,487,,,20.59895421,13,63110,10.96807557,35.22483904,,,,,,,32.40249794,16.17521023,57.9770193,,,,,,,,,,33.56858513,15,44150,18.35225786,56.32238188,33.97508494,,,,,,,,,,,,,63.13883591,30.277526,116.1145673,,,,,,,,,,,,,,,,,,,,,,,,,,,23.76802409,15,63110,13.30278265,39.2017412,,,,,,,,,,,,,,,,,,,,,700,,,,,0.394186851,2848,7225,,,0.462,,,,,7.555141779,,,,,0.619102862,1601,2586,0.563809289,0.674396434,0.183646113,411,2238,0.096091661,0.271200565,0.747486466,1933,2586,0.680583866,0.814389066,8364,,,,,0.180535629,1510,8364,,,0.201578192,1686,8364,,,0.528335725,4419,8364,,,0.007532281,63,8364,,,0.006336681,53,8364,,,0.00023912,2,8364,,,0.035031086,293,8364,,,0.409851746,3428,8364,,,0.009654161,79,8183,0,0.024094585,0.43651363,3651,8364,,,1,8600,8600,, -05,079,05079,AR,Lincoln County,2024,1,11422.206,267,36339,9325.428021,13518.98398,0,,,,2,,,,2,9958.485244,6505.213189,14591.48822,,,,,2,12566.76477,9701.046958,15432.48259,,,,,2,,0.244,,,0.213,0.28,4.809301841,,,3.87430774,5.808417675,5.330412161,,,4.248556645,6.44960927,0.085333333,64,750,0.065338572,0.105328095,0,,,,,,,0.137931035,0.081803745,0.194058324,,,,0.071823204,0.050106001,0.093540408,,,,,,,0.242,,,0.202,0.286,0.415,,,0.337,0.494,6.3,0.175038212,0.128,,,0.349,,,0.295,0.407,0.379259717,4908,12941,,,0.154010404,,,0.12109357,0.190508801,0.272727273,3,11,0.11266692,0.445445377,337.5,44,13037,,,25.87446095,54,2087,19.43769141,33.76055889,,,,,,,32.49097473,19.2562108,51.34974778,,,,23.68987796,16.30702195,33.26939646,,,,,,,0.103443726,784,7579,0.084379896,0.122507556,7.67048E-05,1,13037,,,13037,0.000154847,2,12916,,,6458,0.001548467,20,12916,,,645.8,5748,,,,,,,5748,,5493,0.38,,,,,,,0.27,,0.4,0.41,,,,,,,0.3,,0.42,0.834815629,8354,10007,0.806294673,0.863336585,0.319422513,1416,4433,0.25959247,0.379252556,0.044743935,166,3710,,,0.27,537,,0.173489362,0.366510638,,,,,,,0.706959707,0.619278045,0.794641369,0.220472441,0,0.470205705,0.198451795,0.071812265,0.325091324,5.218595552,101366,19424,4.408430223,6.028760881,0.239937271,459,1913,0.147006893,0.33286765,3.835238168,5,13037,,,113.5778538,75,66034,89.33618697,142.3708233,,,,,,,91.07928958,53.97935931,143.9445442,,,,125.4111356,93.94154642,164.0408531,,,,9.2,,,,,0,,,,,0.088888889,320,3600,0.041207888,0.13656989,0.07254623,0.031700875,0.113391586,0.0125,0,0.031148106,0.003888889,0,0.01351767,0.869014085,3085,3550,0.80520344,0.932824729,,,,,,,,,,,,,0.842892768,0.755481094,0.930304442,0.417,,3550,0.324538583,0.509461417,73.16611141,,,71.55228619,74.77993662,,,,,,,74.19184287,70.65684326,77.72684247,,,,72.44423506,70.43646427,74.45200585,,,,589.8043165,267,36339,517.5708411,662.0377919,,,,,,,614.5345848,475.2810034,781.8386687,,,,599.219682,509.6293616,688.8100024,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.145,,,0.127,0.166,0.183,,,0.16,0.209,0.122,,,0.105,0.142,335.9,39,11610,,,0.128,1680,,,,0.175038212,2473.990088,14134,,,,,,,,,,,,,,,,,,,,,,,,,,0.385,,,0.371,0.399,0.123690863,685,5538,0.098669587,0.14871214,0.049394222,106,2146,0.031521881,0.067266562,0.000851657,11,12916,,,1174.181818,0.925,116.55,126,,,,,,,,2.384595735,,,,,,,,,2.460934538,2.408560148,,,,,,,,,2.589589825,0.00334822,,,,,-4226.271,,,,,0.777796791,40909,52596,0.585388599,0.970204983,48311,,,41135.85106,55486.14894,,,,,,,27500,16628.85106,38371.14894,,,,61130,50588.89362,71671.10638,,,,,,0.683615819,968,1416,,,53.21339293,,,,,0.316387572,,48311,,,9.057971015,5,552,,,10.68844259,10,93559,5.125523676,19.65642647,,,,,,,,,,,,,,,,,,,20.10343471,13,66034,10.70423231,34.37748561,19.686828,,,,,,,,,,,,,29.33236194,14.6426094,52.48369795,,,,18.17245661,12,66034,9.389973512,31.74362457,,,,,,,,,,,,,,,,,,,16.03266388,15,93559,8.973360268,26.4434409,,,,,,,,,,,,,,,,,,,11,,1000,,,11,,0.357307515,3875,10845,,,0.438,,,,,8.444731281,,,,,0.785968028,2655,3378,0.747578662,0.824357395,0.103437199,322,3113,0.056326267,0.15054813,0.576376554,1947,3378,0.509713717,0.643039391,12916,,,,,0.156240322,2018,12916,,,0.151362651,1955,12916,,,0.300402601,3880,12916,,,0.006271291,81,12916,,,0.004258284,55,12916,,,0.000309693,4,12916,,,0.047770208,617,12916,,,0.631619697,8158,12916,,,0.004251223,53,12467,0,0.01192792,0.359941158,4649,12916,,,1,12941,12941,, -05,081,05081,AR,Little River County,2024,1,12101.32598,305,33065,9771.338799,14431.31317,0,,,,2,,,,2,14425.32198,9335.307796,21294.6209,,,,,2,12550.69415,9699.308741,15402.07956,,,,,2,,0.207,,,0.179,0.236,4.456166892,,,3.50907025,5.530743135,5.610033751,,,4.445519248,6.882587461,0.099502488,100,1005,0.08099569,0.118009285,0,,,,,,,0.162436548,0.110928666,0.21394443,,,,0.081920904,0.061719718,0.10212209,,,,,,,0.209,,,0.173,0.248,0.406,,,0.324,0.495,8.1,0.009872798,0.127,,,0.311,,,0.261,0.369,0.531182438,6388,12026,,,0.13887167,,,0.107789154,0.176797586,0.444444444,8,18,0.323758094,0.554110027,694.9,83,11944,,,42.02037351,99,2356,34.1520861,51.15829701,,,,,,,32.05128205,19.57775575,49.50060561,,,,46.15384615,35.9104472,58.41064622,,,,,,,0.091541012,856,9351,0.07605165,0.107030373,0.000167448,2,11944,,,5972,0.000422976,5,11821,,,2364.2,8.45952E-05,1,11821,,,11821,3443,,,,,,,4312,,3397,0.39,,,,,,,0.36,,0.39,0.39,,,,,,,0.29,0.36,0.41,0.905763518,7622,8415,0.8753727,0.936154335,0.533952823,1494,2798,0.427597438,0.640308209,0.038616715,201,5205,,,0.242,613,,0.151446809,0.332553192,,,,,,,0.582309582,0.23677541,0.927843755,0.057803468,0,0.240543677,0.071143995,0.029557741,0.11273025,4.148765056,108847,26236,3.626642294,4.670887818,0.384673178,1024,2662,0.265336189,0.504010167,13.39584729,16,11944,,,93.33857339,57,61068,70.69372399,120.9309481,,,,,,,,,,,,,108.259281,79.82184768,143.5361004,,,,9.8,,,,,0,,,,,0.071833648,380,5290,0.04344827,0.100219027,0.037022901,0.017795011,0.056250791,0.018714556,0,0.03901858,0.017958412,0.003613031,0.032303793,0.864217252,4328,5008,0.824340069,0.904094436,,,,,,,,,,,,,0.87414734,0.825458074,0.922836605,0.491,,5008,0.397979853,0.584020148,72.10402599,,,70.47375953,73.73429245,,,,,,,70.67236123,67.06345064,74.28127182,,,,71.4917873,69.52193976,73.46163485,,,,619.2821528,305,33065,545.4135125,693.150793,,,,,,,717.6488717,547.6416928,923.7563527,,,,634.3203537,547.3566697,721.2840376,,,,134.9983125,16,11852,77.16319991,219.2288019,,,,,,,,,,,,,139.4346559,69.60527782,249.4871151,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.133,,,0.116,0.152,0.188,,,0.163,0.215,0.108,,,0.093,0.128,208.5,21,10073,,,0.127,1530,,,,0.009872798,130.0346208,13171,,,,,,,,,,,,,,,,,,,,,,,,,,0.367,,,0.352,0.381,0.109692742,739,6737,0.089437422,0.129948061,0.047601744,131,2752,0.032112383,0.063091106,0.001184333,14,11821,,,844.3571429,0.933181818,153.975,165,,,,,,,,2.838145454,,,,,,,2.699433483,,2.854597405,2.695056235,,,,,,,2.387171908,,2.731162903,0.033135538,,,,,-7641.9875,,,,,0.715161952,36961,51682,0.620890946,0.809432958,48883,,,41722.14894,56043.85106,,,,,,,42574,24787.44681,60360.55319,,,,62719,47758.65957,77679.34043,,,,,,0.700892857,1256,1792,,,42.32058066,,,,,0.312685392,,48883,,,6.915629322,5,723,,,,,,,,,,,,,,,,,,,,,,,,,,24.1104658,14,61068,12.8378076,41.2296308,22.92526364,,,,,,,,,,,,,27.97269727,13.96386969,50.05088227,,,,22.92526364,14,61068,12.53345496,38.46469693,,,,,,,,,,,,,29.32022193,15.61178333,50.13847246,,,,32.56154714,28,85991,21.6369116,47.06050161,,,,,,,,,,,,,30.40778439,18.30747258,47.48552201,,,,0,,1200,,,0,,0.54039666,5177,9580,,,0.493,,,,,14.5933583,,,,,0.838825518,3971,4734,0.790352245,0.88729879,0.067358657,305,4528,0.034496003,0.100221311,0.737853823,3493,4734,0.683438793,0.792268854,11821,,,,,0.218255647,2580,11821,,,0.215210219,2544,11821,,,0.191608155,2265,11821,,,0.017595804,208,11821,,,0.005244903,62,11821,,,0.001099738,13,11821,,,0.042889772,507,11821,,,0.719905253,8510,11821,,,0.001233698,14,11348,0,0.009812533,0.514677269,6084,11821,,,1,12026,12026,, -05,083,05083,AR,Logan County,2024,1,12590.19412,511,58511,10822.51406,14357.87419,0,,,,2,,,,2,,,,2,,,,2,13058.63434,11167.80049,14949.46818,,,,,2,,0.216,,,0.182,0.249,4.689203793,,,3.758340079,5.676794846,6.132510311,,,4.983416389,7.298144932,0.103624009,183,1766,0.089409364,0.117838654,0,,,,,,,,,,,,,0.103174603,0.088443357,0.117905849,,,,,,,0.229,,,0.184,0.275,0.399,,,0.323,0.477,6.3,0.08599977,0.17,,,0.318,,,0.264,0.374,0.644881927,13627,21131,,,0.147546748,,,0.115697613,0.184269901,0.5,12,24,0.403230354,0.586993217,353.5,75,21215,,,41.37760159,167,4036,35.1018875,47.65331567,,,,,,,,,,,,,43.62510555,36.75716206,50.49304903,,,,,,,0.095386273,1594,16711,0.0810884,0.109684145,0.000188546,4,21215,,,5303.75,0.00042347,9,21253,,,2361.444444,0.000141157,3,21253,,,7084.333333,3447,,,,,,,,,3412,0.4,,,,,,,,,0.4,0.35,,,,,,0.36,,,0.34,0.881516588,13392,15192,0.860976149,0.902057027,0.501913394,2492,4965,0.428307251,0.575519537,0.038178972,317,8303,,,0.277,1192,,0.194787234,0.359212766,0.1875,0,0.398127552,0.742424242,0.295950693,1,0.647058824,0.073324426,1,0.174672489,0,0.779805572,0.184818482,0.12204675,0.247590214,3.80261459,94244,24784,3.281828546,4.323400634,0.240707162,1062,4412,0.170413481,0.311000844,13.66957342,29,21215,,,105.9972106,114,107550,86.53921583,125.4552054,,,,,,,,,,,,,113.1058877,91.9688101,134.2429653,,,,9.1,,,,,1,,,,,0.089114833,745,8360,0.066107649,0.112122016,0.055555556,0.035710335,0.075400776,0.019736842,0.008065638,0.031408046,0.016148325,0.005929441,0.02636721,0.792302588,7164,9042,0.760016787,0.824588389,,,,,,,,,,,,,0.814044213,0.778938434,0.849149993,0.378,,9042,0.312706818,0.443293182,72.29694218,,,71.07887116,73.51501319,,,,,,,,,,,,,71.73305116,70.4644569,73.00164542,,,,614.2806128,511,58511,557.0644685,671.4967571,,,,,,,,,,,,,637.2562092,576.3318062,698.1806122,,,,69.15970953,14,20243,37.81025676,116.038241,,,,,,,,,,,,,68.77184939,35.53541813,120.1305808,,,,11.62147205,21,1807,7.193874369,17.76465453,,,,,,,,,,,,,,,,,,,,,,0.141,,,0.121,0.162,0.196,,,0.17,0.224,0.106,,,0.09,0.123,77.6,14,18041,,,0.17,3620,,,,0.08599977,1922.352861,22353,,,15.60281475,10,64091,7.482156147,28.69413185,,,,,,,,,,,,,17.23365388,8.264206901,31.69330308,,,,0.32,,,0.305,0.335,0.11307736,1393,12319,0.09401353,0.13214119,0.04751573,219,4609,0.032026368,0.063005092,0.000752835,16,21253,,,1328.3125,0.946072797,246.925,261,,,,,,,,2.876591208,,,,,,,,,2.843817232,2.887160163,,,,,,,,,2.836378661,0.060216874,,,,,-2101.35175,,,,,0.74690512,33787,45236,0.664529134,0.829281106,48510,,,42612.12766,54407.87234,,,,45699,5048.957447,86349.04255,46027,40125.55319,51928.44681,,,,51836,48537.95745,55134.04255,,,,,,0.885287486,3141,3548,,,61.28385795,,,,,0.240012369,,48510,,,6.405124099,8,1249,,,,,,,,,,,,,,,,,,,,,,,,,,32.19403021,35,107550,22.02069283,45.44836485,32.54300325,,,,,,,,,,,,,33.9271416,23.05184668,48.15686935,,,,19.52580195,21,107550,12.08677916,29.84726242,,,,,,,,,,,,,21.59294219,13.36637155,33.00710586,,,,21.18419659,32,151056,14.48997479,29.9057648,,,,,,,,,,,,,21.91989011,14.78925781,31.29200611,,,,3.333333333,,2100,,,7,,0.489437667,8225,16805,,,0.526,,,,,0.352787139,,,,,0.741106484,6229,8405,0.711019723,0.771193245,0.068410463,544,7952,0.047423899,0.089397026,0.772754313,6495,8405,0.738021462,0.807487164,21253,,,,,0.207688326,4414,21253,,,0.205335717,4364,21253,,,0.01359808,289,21253,,,0.012327671,262,21253,,,0.020185386,429,21253,,,0.000376417,8,21253,,,0.03472451,738,21253,,,0.903872395,19210,21253,,,0.003550533,71,19997,0,0.009630943,0.504493483,10722,21253,,,1,21131,21131,, -05,085,05085,AR,Lonoke County,2024,1,9423.934641,1200,209438,8646.471106,10201.39818,0,,,,2,,,,2,13544.441,10084.72597,17808.43854,,,,,2,9628.558073,8778.370976,10478.74517,,,,,2,,0.179,,,0.152,0.211,4.15827355,,,3.316741489,5.092804378,5.792715878,,,4.780696045,6.869692326,0.079257466,491,6195,0.072530416,0.085984515,0,,,,,,,0.161369193,0.125716681,0.197021705,0.075862069,0.045387483,0.106336655,0.072337194,0.065341186,0.079333202,,,,0.126213592,0.062078878,0.190348307,0.196,,,0.157,0.241,0.368,,,0.303,0.438,7.5,0.052967568,0.13,,,0.283,,,0.236,0.336,0.54891576,40628,74015,,,0.160435336,,,0.12881817,0.195068456,0.226415094,12,53,0.156183265,0.302365566,378.7,283,74722,,,23.70003537,402,16962,21.38321673,26.01685402,,,,,,,31.17101938,21.94727428,42.96514418,18.18181818,10.94664226,28.39316131,23.37587839,20.83832487,25.91343191,,,,22.68431002,11.72131401,39.62492448,0.088353037,5650,63948,0.075246654,0.10145942,0.000147212,11,74722,,,6792.909091,0.000292456,22,75225,,,3419.318182,0.00107677,81,75225,,,928.7037037,2701,,,,,,5575,2044,,2678,0.41,,,,,,0.38,0.46,0.23,0.41,0.46,,,,,,0.5,0.35,0.25,0.46,0.898685586,44715,49756,0.88698084,0.910390331,0.557736944,11534,20680,0.513940686,0.601533202,0.028324728,971,34281,,,0.153,2774,,0.108914894,0.197085106,,,,0.413461539,0,0.965654639,0.473794549,0.362405067,0.585184032,0.337715694,0.183809681,0.491621708,0.117448973,0.088194755,0.14670319,4.249578699,126085,29670,3.832277818,4.66687958,0.255057026,4741,18588,0.210002403,0.300111649,7.628275474,57,74722,,,79.51002288,293,368507,70.40577361,88.61427214,,,,,,,43.46692167,20.84407848,79.93721656,,,,88.16775978,77.80337615,98.5321434,,,,9.8,,,,,0,,,,,0.106355621,2895,27220,0.089457979,0.123253262,0.086440364,0.07082408,0.102056647,0.014878766,0.008377112,0.021380419,0.011204996,0.005981897,0.016428095,0.836131025,28691,34314,0.812325495,0.859936555,,,,,,,0.815111111,0.679131458,0.951090764,0.607105538,0.467061526,0.747149551,0.787561351,0.742942387,0.832180315,0.469,,34314,0.433195794,0.504804206,74.60708866,,,73.97531858,75.23885873,,,,,,,71.65625384,68.95064874,74.36185895,,,,74.29784,73.62401298,74.97166701,,,,481.8730363,1200,209438,454.1119275,509.6341452,,,,,,,652.4299761,525.9506439,800.1474483,,,,491.6388071,461.7282195,521.5493947,,,,65.05861413,53,81465,48.73336639,85.09826911,,,,,,,,,,,,,68.05498843,49.63977555,91.06292893,,,,7.90513834,50,6325,5.867346045,10.42193939,,,,,,,,,,,,,7.782101167,5.608654018,10.51914004,,,,,,,0.124,,,0.106,0.144,0.186,,,0.161,0.213,0.092,,,0.079,0.108,100.6,62,61620,,,0.13,9590,,,,0.052967568,3620.651096,68356,,,22.52739331,50,221952,16.72026553,29.69955966,,,,,,,,,,,,,25.30297679,18.65641764,33.54807628,,,,0.321,,,0.305,0.337,0.104554499,4729,45230,0.087873648,0.12123535,0.052176566,1026,19664,0.036687205,0.067665928,0.000877368,66,75225,,,1139.772727,0.88168906,918.72,1042,,,0.084556962,334,3950,0.042851395,0.126262529,2.999718133,,,,,,,2.484276919,2.684585953,3.066441645,3.05010692,,,,,,,2.332665235,2.731176936,3.14042969,0.071612829,,,,,-4586.6429,,,,,0.816271138,45712,56001,0.775307877,0.857234399,66160,,,59905.87234,72414.12766,,,,74821,11215.7234,138426.2766,37553,29143.46809,45962.53192,55015,48609.55319,61420.44681,72007,66166.31915,77847.68085,,,,,,0.433939932,5866,13518,,,50.28443426,,,,,0.231030834,,66160,,,8.445945946,40,4736,,,4.879191225,25,512380,3.1575553,7.202648756,,,,,,,,,,,,,5.004868372,3.136524363,7.577430862,,,,20.72219884,75,368507,16.24289598,26.05505393,20.35239493,,,,,,,,,,,,,23.25382578,18.127498,29.37980993,,,,15.46782015,57,368507,11.71517593,20.04035511,,,,,,,,,,,,,17.44326183,13.14065199,22.70480292,,,,19.9071002,102,512380,16.04375079,23.7704496,,,,,,,,,,,,,22.06691964,17.89478529,26.91977058,,,,6.666666667,,8700,,,58,,0.570455814,30662,53750,,,0.67,,,,,34.14783678,,,,,0.724276702,19977,27582,0.700132077,0.748421328,0.090943396,2410,26500,0.074891241,0.106995552,0.863679211,23822,27582,0.84754823,0.879810192,75225,,,,,0.244945165,18426,75225,,,0.148687272,11185,75225,,,0.06406115,4819,75225,,,0.008188767,616,75225,,,0.010568295,795,75225,,,0.000997009,75,75225,,,0.052229977,3929,75225,,,0.845290794,63587,75225,,,0.006394907,446,69743,0.002695601,0.010094213,0.504114324,37922,75225,,,0.519367696,38441,74015,, -05,087,05087,AR,Madison County,2024,1,8858.71803,301,46202,7293.113254,10424.32281,0,,,,2,,,,2,,,,2,,,,2,8842.938954,7194.712907,10491.165,,,,,2,,0.226,,,0.193,0.265,4.767484217,,,3.81091676,5.783852183,6.341323606,,,5.140115669,7.548863429,0.071287129,108,1515,0.05833038,0.084243878,0,,,,,,,,,,,,,0.066409266,0.052847577,0.079970956,,,,,,,0.237,,,0.195,0.284,0.386,,,0.309,0.465,6.5,0.109862309,0.153,,,0.325,,,0.271,0.384,0.487440228,8053,16521,,,0.141914137,,,0.112202611,0.176284302,0.272727273,6,22,0.159704728,0.392079091,153.3,26,16960,,,37.23554302,132,3545,30.88330449,43.58778154,,,,,,,,,,,,,39.56712885,32.39748343,46.73677426,,,,,,,0.126594341,1727,13642,0.107530511,0.145658171,0.000294811,5,16960,,,3392,0.000343132,6,17486,,,2914.333333,0.001315338,23,17486,,,760.2608696,2006,,,,,,,,,2062,0.33,,,,,,,,,0.33,0.36,,,,,,,,0.28,0.36,0.849665351,9902,11654,0.819181868,0.880148834,0.37778931,1456,3854,0.294800021,0.460778599,0.024862233,194,7803,,,0.236,953,,0.151404255,0.320595745,,,,,,,,,,0.309090909,0.061629027,0.556552791,0.317241379,0.240253471,0.394229288,4.273013545,99057,23182,3.824397868,4.721629222,0.251980578,986,3913,0.176096583,0.327864572,3.537735849,6,16960,,,90.36144578,75,83000,71.07500928,113.2688548,,,,,,,,,,,,,97.47644319,76.26931346,122.7554479,,,,8,,,,,0,,,,,0.110008271,665,6045,0.077255194,0.142761349,0.063324979,0.036268055,0.090381904,0.031430935,0.013801891,0.049059978,0.016542597,0.00299763,0.030087565,0.827601219,5703,6891,0.77242264,0.882779798,,,,,,,,,,,,,0.782327586,0.703112173,0.861542999,0.524,,6891,0.434884879,0.613115121,75.97024859,,,74.68283843,77.25765874,,,,,,,,,,,,,75.76445908,74.44212245,77.08679571,,,,464.190717,301,46202,408.20211,520.179324,,,,,,,,,,,,,474.506907,415.1252517,533.8885623,,,,65.06180872,11,16907,32.4786205,116.4135477,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.144,,,0.124,0.167,0.2,,,0.173,0.229,0.107,,,0.091,0.124,133.9,19,14187,,,0.153,2520,,,,0.109862309,1726.705913,15717,,,,,,,,,,,,,,,,,,,,,,,,,,0.336,,,0.319,0.351,0.151005334,1472,9748,0.125984058,0.176026611,0.067270059,275,4088,0.04582325,0.088716867,0.000514698,9,17486,,,1942.888889,0.875,160.125,183,,,,,,,,2.627357395,,,,,,,,,2.604440913,2.761806731,,,,,,,,,2.790426272,0.034525489,,,,,-1226.553,,,,,0.833990403,37020,44389,0.661987302,1.005993505,51233,,,44489.17021,57976.82979,23776,22832.34043,24719.65957,157000,146985.5319,167014.4681,,,,,,,52556,45421.3617,59690.6383,,,,,,0.597073942,1510,2529,,,,,,,,0.298342865,,51233,,,5.366726297,6,1118,,,10.44941179,12,114839,5.399363551,18.25301949,,,,,,,,,,,,,11.70560406,6.04845643,20.44733458,,,,27.38543823,22,83000,16.95201789,41.86155137,26.5060241,,,,,,,,,,,,,29.0754912,17.76006538,44.90473799,,,,25.30120482,21,83000,15.66184456,38.6755792,,,,,,,,,,,,,28.43062927,17.59900761,43.45923689,,,,25.25274515,29,114839,16.91215975,36.2671544,,,,,,,,,,,,,26.33760913,17.35665038,38.31983851,,,,4.705882353,,1700,,,8,,0.594260307,7351,12370,,,0.442,,,,,2.487015558,,,,,0.79792,4987,6250,0.759265206,0.836574794,0.068359715,393,5749,0.038283614,0.098435815,0.8312,5195,6250,0.7937943,0.8686057,17486,,,,,0.235216745,4113,17486,,,0.196728812,3440,17486,,,0.006290747,110,17486,,,0.01847192,323,17486,,,0.010351138,181,17486,,,0.009150177,160,17486,,,0.069998856,1224,17486,,,0.87224065,15252,17486,,,0.000255135,4,15678,0,0.006173191,0.497312135,8696,17486,,,1,16521,16521,, -05,089,05089,AR,Marion County,2024,1,12128.29541,432,44655,9890.210045,14366.38078,0,,,,2,,,,2,,,,2,,,,2,12889.25984,10475.13102,15303.38867,,,,,2,,0.214,,,0.181,0.253,4.838735459,,,3.917058625,5.887360063,6.432480275,,,5.292607683,7.668739252,0.087633885,90,1027,0.070340044,0.104927726,0,,,,,,,,,,,,,0.08875129,0.070845232,0.106657348,,,,,,,0.237,,,0.188,0.287,0.373,,,0.299,0.45,6.7,0.032087566,0.181,,,0.311,,,0.255,0.368,0.308510638,5191,16826,,,0.13049215,,,0.102531055,0.163147136,0.222222222,4,18,0.102162676,0.360013884,235.6,40,16978,,,29.24842651,79,2701,23.15625471,36.45226626,,,,,,,,,,,,,30.52805281,23.97108756,38.32517471,,,,,,,0.112730887,1361,12073,0.096050036,0.129411738,0.000294499,5,16978,,,3395.6,0.000173873,3,17254,,,5751.333333,0.000115915,2,17254,,,8627,2512,,,,,,,,,2508,0.43,,,,,,,,,0.44,0.34,,,,,,,,,0.34,0.877359223,11296,12875,0.854500996,0.90021745,0.554292929,1756,3168,0.470700592,0.637885267,0.037272006,235,6305,,,0.248,782,,0.149106383,0.346893617,,,,,,,,,,0.166666667,0,0.434371576,0.182227222,0.12495506,0.239499383,4.331708308,85300,19692,3.393385437,5.270031179,0.238431877,742,3112,0.166809457,0.310054296,8.245965367,14,16978,,,105.2480505,88,83612,84.41201415,129.6685419,,,,,,,,,,,,,112.40117,90.14902514,138.4813851,,,,7.9,,,,,0,,,,,0.138728324,960,6920,0.106243722,0.171212925,0.106227106,0.073440062,0.13901415,0.017196532,0.005807663,0.0285854,0.016618497,0.005235571,0.028001423,0.777300824,4527,5824,0.719163985,0.835437663,,,,,,,,,,,,,0.761863676,0.700916891,0.82281046,0.397,,5824,0.322639226,0.471360774,73.7322184,,,72.16840669,75.2960301,,,,,,,,,,,,,73.07943704,71.43368655,74.72518753,,,,554.6172023,432,44655,491.5505185,617.6838861,,,,,,,,,,,,,580.719794,513.709861,647.729727,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.146,,,0.125,0.169,0.205,,,0.177,0.235,0.103,,,0.088,0.12,108.2,16,14783,,,0.181,3030,,,,0.032087566,534.3542359,16653,,,,,,,,,,,,,,,,,,,,,,,,,,0.333,,,0.316,0.351,0.133780761,1196,8940,0.111142463,0.156419059,0.054998481,181,3291,0.03712614,0.072870821,0.000753449,13,17254,,,1327.230769,0.894244604,124.3,139,,,,,,,,2.802949757,,,,,,,,,2.807418923,2.850804486,,,,,,,,,2.847150129,0.032542971,,,,,-4328.8655,,,,,0.796672069,34903,43811,0.659154549,0.934189588,49313,,,43347.21277,55278.78723,35785,27019.21277,44550.78723,36528,22688.85106,50367.14894,,,,59091,10317.38298,107864.617,43269,37636.82979,48901.17021,,,,,,1,2041,2041,,,,,,,,0.23610407,,49313,,,9.641873278,7,726,,,,,,,,,,,,,,,,,,,,,,,,,,26.23469076,25,83612,15.79499761,40.96871937,29.90001435,,,,,,,,,,,,,28.04467936,16.88472898,43.79524077,,,,29.90001435,25,83612,19.34971278,44.1383195,,,,,,,,,,,,,31.93215057,20.66480419,47.13815342,,,,27.5572243,32,116122,18.84912102,38.90257839,,,,,,,,,,,,,28.44506432,19.32704114,40.37549825,,,,5.333333333,,1500,,,8,,0.555983698,7503,13495,,,0.46,,,,,7.677769568,,,,,0.821568628,5866,7140,0.804410121,0.838727134,0.102183406,702,6870,0.072352448,0.132014364,0.853221289,6092,7140,0.815889552,0.890553025,17254,,,,,0.186275646,3214,17254,,,0.29158456,5031,17254,,,0.006665121,115,17254,,,0.01170743,202,17254,,,0.006375333,110,17254,,,0.000811406,14,17254,,,0.027761679,479,17254,,,0.928248522,16016,17254,,,0.002780696,45,16183,0,0.008763455,0.501275067,8649,17254,,,1,16826,16826,, -05,091,05091,AR,Miller County,2024,1,13519.82934,983,119787,12263.70779,14775.95089,0,,,,2,,,,2,17430.40772,14682.37295,20178.44248,,,,,2,12760.27103,11251.61492,14268.92715,,,,,2,,0.235,,,0.204,0.268,4.719668693,,,3.80452397,5.665054862,5.630328249,,,4.567671353,6.73139093,0.101953439,381,3737,0.092251805,0.111655073,0,,,,,,,0.152191894,0.131943646,0.172440143,0.068181818,0.03094268,0.105420956,0.073192636,0.062375198,0.084010073,,,,0.197674419,0.113504404,0.281844433,0.23,,,0.19,0.273,0.381,,,0.31,0.457,6.3,0.122464158,0.156,,,0.32,,,0.271,0.373,0.616408451,26259,42600,,,0.139966678,,,0.110584701,0.173340494,0.285714286,18,63,0.220362237,0.352930756,869.9,371,42649,,,40.17649791,346,8612,35.94309017,44.40990565,,,,,,,60.45812993,51.11918439,69.79707547,40,21.86837222,67.11320321,29.74048115,25.08832552,34.39263679,,,,48.97959184,25.30846983,85.55748999,0.104887715,3573,34065,0.089398353,0.120377076,0.000679969,29,42649,,,1470.655172,0.000329009,14,42552,,,3039.428571,0.002679075,114,42552,,,373.2631579,3484,,,,,,,6832,,2871,0.38,,,,,,,0.39,,0.38,0.4,,,,,,,0.32,0.37,0.41,0.866818637,25097,28953,0.843027532,0.890609742,0.517618137,5685,10983,0.457055225,0.578181049,0.039010872,732,18764,,,0.283,2764,,0.194829787,0.371170213,,,,,,,0.394342195,0.298616179,0.490068211,0.166666667,0,0.352079256,0.161946134,0.107449823,0.216442445,5.480624829,99994,18245,4.431791716,6.529457942,0.413751869,4152,10035,0.344864609,0.482639128,11.72360431,50,42649,,,85.38763679,185,216659,73.08310193,97.69217166,,,,,,,68.06851004,47.92651281,93.8234747,,,,95.47735291,79.71769142,111.2370144,,,,9.8,,,,,0,,,,,0.130890052,2125,16235,0.108708985,0.15307112,0.098595147,0.076713205,0.120477089,0.038497074,0.026309173,0.050684976,0.006159532,0.001494654,0.01082441,0.838924071,13380,15949,0.803932936,0.873915205,,,,,,,0.85466761,0.768622741,0.940712478,,,,0.844782117,0.805787584,0.883776651,0.232,,15949,0.191541962,0.272458038,71.99372649,,,71.09344332,72.89400967,,,,,,,68.98457889,67.15915763,70.81000015,,,,72.3508939,71.28140219,73.42038561,,,,648.1584883,983,119787,606.1091873,690.2077894,,,,,,,803.4890929,705.2647622,901.7134237,,,,624.5540223,575.88039,673.2276546,,,,76.75290081,34,44298,53.15361503,107.2544857,,,,,,,107.7752117,58.92171113,180.8284921,,,,71.93155145,43.30749286,112.3300279,,,,9.74858902,38,3898,6.898681797,13.38070008,,,,,,,,,,,,,,,,,,,,,,0.145,,,0.126,0.166,0.198,,,0.173,0.226,0.121,,,0.104,0.14,360.4,128,35516,,,0.156,6700,,,,0.122464158,5322.537221,43462,,,20.91677448,27,129083,13.78428618,30.43280869,,,,,,,,,,,,,28.56098341,18.48316256,42.16164568,,,,0.375,,,0.361,0.39,0.126424487,3073,24307,0.104977678,0.147871295,0.053588891,548,10226,0.03690804,0.070269742,0.00072852,31,42552,,,1372.645161,0.829232506,367.35,443,,,0.178687196,441,2468,0.060155538,0.297218854,2.786626307,,,,,,,2.551730051,2.70618197,2.976265229,2.829906142,,,,,,,2.59803716,2.463399818,3.04687865,0.263736925,,,,,-3050.439,,,,,0.772836264,40611,52548,0.66770066,0.877971869,48652,,,42878.04255,54425.95745,,,,,,,29029,24527.55319,33530.44681,47062,25139.78723,68984.21277,56595,49556.87234,63633.12766,,,,,,0.816052467,5226,6404,,,51.8567954,,,,,0.314170024,,48652,,,6.931074317,18,2597,,,9.199813375,28,304354,6.113209176,13.2962918,,,,,,,14.43228634,7.20454534,25.82334687,,,,6.244776005,3.325080217,10.67875715,,,,19.60816976,43,216659,14.07116116,26.60069636,19.84685612,,,,,,,,,,,,,24.78363686,17.35815457,34.31100006,,,,20.30841091,44,216659,14.75612246,27.26309375,,,,,,,20.23658407,10.10202985,36.20883881,,,,20.99147475,14.26268866,29.79572282,,,,22.99953344,70,304354,17.92926464,29.05852686,,,,,,,18.36836443,10.04215576,30.81899436,,,,24.97910402,18.65558965,32.75677162,,,,14.7826087,,4600,,,68,,0.505010694,16529,32730,,,0.523,,,,,69.36152936,,,,,0.662989346,10517,15863,0.63971399,0.686264703,0.129017202,1935,14998,0.102327168,0.155707237,0.794175125,12598,15863,0.766239834,0.822110415,42552,,,,,0.236205114,10051,42552,,,0.172565332,7343,42552,,,0.254324121,10822,42552,,,0.008977251,382,42552,,,0.005875165,250,42552,,,0.000775522,33,42552,,,0.04105565,1747,42552,,,0.671625306,28579,42552,,,0.000947442,38,40108,0,0.004100167,0.501339538,21333,42552,,,0.399061033,17000,42600,, -05,093,05093,AR,Mississippi County,2024,1,18090.61921,1126,113136,16575.08704,19606.15137,0,,,,2,,,,2,24070.93186,21123.79613,27018.0676,,,,,2,14939.30658,13141.26839,16737.34478,,,,,2,,0.259,,,0.225,0.293,4.984046835,,,4.002691133,5.984876385,5.98047161,,,4.847568442,7.147899341,0.116359164,473,4065,0.106501727,0.1262166,0,,,,,,,0.161702128,0.145059029,0.178345227,,,,0.078639745,0.066478388,0.090801102,,,,,,,0.251,,,0.208,0.296,0.392,,,0.319,0.471,6.1,0.089944279,0.177,,,0.354,,,0.299,0.412,0.739879563,30102,40685,,,0.134002381,,,0.105253313,0.168114093,0.457142857,16,35,0.375136966,0.533789056,1101.8,437,39661,,,53.94276302,524,9714,49.32402196,58.56150409,,,,,,,71.85917531,63.7003024,80.01804821,42.5170068,27.51476505,62.76348928,39.7181294,34.0100713,45.42618751,,,,72.81553398,40.75430162,120.0981499,0.097727413,3165,32386,0.082238051,0.113216775,0.000352992,14,39661,,,2832.928571,0.000411353,16,38896,,,2431,0.001388318,54,38896,,,720.2962963,4226,,,,,,,4503,15767,4208,0.35,,,,,,,0.34,,0.35,0.39,,,,,,0.44,0.31,0.24,0.41,0.828236999,21723,26228,0.809641009,0.846832988,0.476464844,4879,10240,0.412683037,0.540246651,0.052454812,859,16376,,,0.304,2993,,0.219404255,0.388595745,,,,0.745098039,0.485477566,1,0.493920234,0.415058736,0.572781731,0.3625,0.169403317,0.555596683,0.159440843,0.107952026,0.21092966,5.931831342,112687,18997,5.117303326,6.746359358,0.41023442,4305,10494,0.354634946,0.465833894,11.85043242,47,39661,,,119.2485867,243,203776,104.2549779,134.2421955,,,,,,,157.6894348,128.7422561,186.6366135,,,,101.7811705,83.57020844,119.9921325,,,,8.5,,,,,0,,,,,0.124210526,2065,16625,0.101193656,0.147227397,0.086930091,0.066266137,0.107594046,0.040541353,0.026970575,0.054112132,0.005413534,0.001342938,0.00948413,0.831784901,13519,16253,0.809963514,0.853606288,,,,,,,0.782264779,0.739928242,0.824601317,0.773922187,0.647021454,0.900822921,0.880664997,0.846851874,0.914478119,0.266,,16253,0.224760008,0.307239993,68.28796648,,,67.34017448,69.23575848,,,,,,,64.58515057,62.91981517,66.25048597,86.15582362,59.26545394,113.0461933,70.18040335,69.00241346,71.35839323,,,,837.6162109,1126,113136,786.8396539,888.3927678,,,,,,,1037.643001,937.9497358,1137.336266,,,,752.480576,691.9145478,813.0466042,,,,123.5049402,57,46152,93.54143561,160.0149753,,,,,,,191.1030895,133.8462545,264.5672284,,,,88.57395926,54.1032754,136.7952963,,,,9.724857685,41,4216,6.978725775,13.19286754,,,,,,,11.15618661,6.991522755,16.8906006,,,,,,,,,,,,,0.15,,,0.13,0.172,0.201,,,0.175,0.23,0.13,,,0.111,0.151,250.6,81,32329,,,0.177,7260,,,,0.089944279,4180.610082,46480,,,20.7679144,25,120378,13.43989919,30.6575385,,,,,,,,,,,,,25.93473093,15.37056521,40.988056,,,,0.371,,,0.358,0.384,0.120611299,2707,22444,0.10035598,0.140866618,0.048425687,506,10449,0.032936325,0.063915048,0.000694159,27,38896,,,1440.592593,0.860619919,423.425,492,,,,,,,,2.563090046,,,,,,,2.213085801,2.850426735,2.923135244,2.535289536,,,,,,,2.19593905,2.435113729,2.920856336,0.334807676,,,,,-11031.6181,,,,,0.703886406,36386,51693,0.60519211,0.802580703,45168,,,39133.10638,51202.89362,,,,,,,31259,23921.80851,38596.19149,62958,46741.82979,79174.17021,61739,57767.76596,65710.23404,,,,,,0.845407951,6103,7219,,,56.6996676,,,,,0.257770988,,45168,,,11.77285319,34,2888,,,29.27511374,85,290349,23.38392108,36.1991315,,,,,,,75.97081941,60.05178016,94.81502084,,,,,,,,,,14.67946176,28,203776,9.673857795,21.35784615,13.74057789,,,,,,,,,,,,,18.6534364,11.39400356,28.80871964,,,,36.80511935,75,203776,28.94956114,46.13553581,,,,,,,80.22795806,60.92045215,103.71324,,,,12.72264631,7.120768561,20.98407029,,,,25.48656961,74,290349,20.01243891,31.99605423,,,,,,,26.29759134,17.3302784,38.26161472,,,,26.0743831,18.94568668,35.00364228,,,,12.76595745,,4700,,,60,,0.410715474,12342,30050,,,0.488,,,,,34.13496379,,,,,0.601599467,9027,15005,0.575382967,0.627815967,0.117163121,1652,14100,0.089339527,0.144986715,0.811596135,12178,15005,0.781149375,0.842042895,38896,,,,,0.258201358,10043,38896,,,0.158602427,6169,38896,,,0.356103455,13851,38896,,,0.005861785,228,38896,,,0.005501851,214,38896,,,0.00059132,23,38896,,,0.051496298,2003,38896,,,0.56933875,22145,38896,,,0.007987008,300,37561,0.003253891,0.012720125,0.50925545,19808,38896,,,0.456384417,18568,40685,, -05,095,05095,AR,Monroe County,2024,1,18305.11685,201,17800,14089.0755,22521.1582,0,,,,2,,,,2,25331.7977,18013.38451,34629.40137,,,,,2,14254.4686,9252.15899,19256.77822,,,,,2,,0.267,,,0.234,0.307,5.052584584,,,4.095819879,6.124778607,6.537260032,,,5.304023603,7.884486988,0.104575163,64,612,0.080330888,0.128819439,0,,,,,,,0.12371134,0.085881202,0.161541479,,,,0.087272727,0.053914765,0.12063069,,,,,,,0.259,,,0.216,0.307,0.43,,,0.349,0.519,5.7,0.149839698,0.171,,,0.379,,,0.322,0.441,0.662009119,4501,6799,,,0.114701406,,,0.08955214,0.144504723,0.222222222,4,18,0.102162676,0.360013884,1077.4,72,6683,,,62.78713629,82,1306,49.93647279,77.93539138,,,,,,,76.56967841,56.83149118,100.9475753,,,,35.33568905,21.58395687,54.57310584,,,,,,,0.110659899,545,4925,0.093979047,0.12734075,0.0004489,3,6683,,,2227.666667,0.000609385,4,6564,,,1641,0.000304692,2,6564,,,3282,2363,,,,,,,2416,,2285,0.36,,,,,,,0.38,,0.35,0.22,,,,,,,0.13,,0.25,0.801928317,3826,4771,0.75747991,0.846376724,0.452095808,604,1336,0.32628177,0.577909847,0.044209703,113,2556,,,0.366,538,,0.226595745,0.505404255,,,,,,,0.67027027,0.533790902,0.806749639,,,,0.025796662,0,0.093843577,6.227667759,87424,14038,4.989559759,7.465775759,0.430716724,631,1465,0.275648607,0.58578484,8.978003891,6,6683,,,141.3718965,48,33953,104.2364764,187.4386245,,,,,,,147.5905837,90.15216283,227.9416862,,,,141.7125416,92.57133709,207.6417075,,,,8.7,,,,,1,,,,,0.148377125,480,3235,0.09548934,0.20126491,0.059247649,0.026932202,0.091563096,0.061514683,0.024472088,0.098557279,0.034003091,0,0.069459293,0.836832896,1913,2286,0.753800978,0.919864814,,,,,,,0.817671809,0.662252698,0.97309092,,,,0.906294707,0.830111985,0.982477428,0.337,,2286,0.241569214,0.432430786,69.2712941,,,66.73523355,71.80735464,,,,,,,65.57098318,61.40794686,69.73401951,,,,71.22358274,67.9762997,74.47086578,,,,799.1874075,201,17800,672.8386122,925.5362028,,,,,,,1045.644784,821.0560569,1312.711272,,,,681.3932316,529.2480289,833.5384343,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.157,,,0.136,0.18,0.209,,,0.182,0.238,0.135,,,0.116,0.155,340.1,19,5587,,,0.171,1180,,,,0.149839698,1221.0437,8149,,,,,,,,,,,,,,,,,,,,,,,,,,0.385,,,0.371,0.397,0.130109384,452,3474,0.107471086,0.152747682,0.064,96,1500,0.041361702,0.086638298,0.000914077,6,6564,,,1094,,,,,,,,,,,2.246373761,,,,,,,2.124547192,,2.373612709,2.08348826,,,,,,,1.92044606,,2.274456246,0.034852202,,,,,-27798.335,,,,,0.717240272,35720,49802,0.523131434,0.91134911,33090,,,29062.76596,37117.23404,,,,,,,24717,20551.55319,28882.44681,,,,52409,39058.3617,65759.6383,,,,,,1,897,897,,,20.32529257,,,,,0.351858568,,33090,,,12.79317697,6,469,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,35.34297411,12,33953,18.26223046,61.73706314,,,,,,,,,,,,,,,,,,,39.15830259,19,48521,23.57585615,61.15054012,,,,,,,,,,,,,37.99825208,18.22163885,69.88013847,,,,16.66666667,,600,,,10,,0.518600368,2816,5430,,,0.404,,,,,20.46682676,,,,,0.635527247,1796,2826,0.573636765,0.69741773,0.107913669,285,2641,0.058924447,0.156902891,0.725760793,2051,2826,0.678936788,0.772584798,6564,,,,,0.227757465,1495,6564,,,0.241316271,1584,6564,,,0.396404631,2602,6564,,,0.008531383,56,6564,,,0.008074345,53,6564,,,0.000304692,2,6564,,,0.029555149,194,6564,,,0.537172456,3526,6564,,,0,0,6334,0,0.013543927,0.524070689,3440,6564,,,1,6799,6799,, -05,097,05097,AR,Montgomery County,2024,1,13286.85347,221,23407,10121.48266,16452.22429,0,,,,2,,,,2,,,,2,,,,2,14173.43073,10736.30632,17610.55514,,,,,2,,0.229,,,0.195,0.268,4.942580293,,,4.005581868,6.042669576,6.024559077,,,4.905767124,7.310094765,0.07337884,43,586,0.052266139,0.09449154,0,,,,,,,,,,,,,0.074349442,0.052181401,0.096517484,,,,,,,0.244,,,0.201,0.294,0.378,,,0.302,0.457,5.7,0.105365059,0.188,,,0.325,,,0.271,0.385,0.97241867,8250,8484,,,0.124302866,,,0.097323801,0.154754654,0.277777778,5,18,0.152183671,0.410166986,197.4,17,8611,,,31.4232902,51,1623,23.39670354,41.3158234,,,,,,,,,,,,,34.07407407,24.94650475,45.45003979,,,,,,,0.142969984,905,6330,0.122714665,0.163225303,0.000232261,2,8611,,,4305.5,0.000233754,2,8556,,,4278,0.000233754,2,8556,,,4278,2459,,,,,,,,,2490,0.28,,,,,,,,,0.28,0.29,,,,,,,,,0.29,0.867481058,5610,6467,0.837802961,0.897159154,0.485189574,819,1688,0.373726277,0.59665287,0.047818499,137,2865,,,0.309,469,,0.200574468,0.417425532,,,,,,,0.178571429,0,0.960410626,0.475524476,0.105989743,0.845059208,0.156892612,0.085966491,0.227818734,5.164719929,99488,19263,4.286082063,6.043357796,0.196592398,300,1526,0.093879081,0.299305716,4.645221229,4,8611,,,119.2458264,53,44446,89.32330678,155.9764769,,,,,,,,,,,,,129.4337274,96.66729857,169.7351132,,,,8.9,,,,,1,,,,,0.095816464,355,3705,0.056855454,0.134777475,0.059430122,0.02631409,0.092546154,0.013495277,0,0.02805297,0.025641026,0.009017057,0.042264995,0.801675978,2583,3222,0.727270111,0.876081844,,,,,,,,,,,,,0.791782343,0.717815064,0.865749622,0.493,,3222,0.402047911,0.583952089,72.6580691,,,70.50807514,74.80806307,,,,,,,,,,,,,71.79325097,69.53896593,74.04753601,,,,591.6725952,221,23407,500.789683,682.5555074,,,,,,,,,,,,,633.6709318,534.1750676,733.1667961,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.15,,,0.129,0.173,0.203,,,0.176,0.232,0.112,,,0.095,0.13,66.5,5,7520,,,0.188,1600,,,,0.105365059,999.5983169,9487,,,,,,,,,,,,,,,,,,,,,,,,,,0.338,,,0.32,0.354,0.163529904,782,4782,0.138508627,0.18855118,0.082216809,135,1642,0.056004043,0.108429575,0.000935016,8,8556,,,1069.5,,,,,,,,,,,2.873404619,,,,,,,,,2.839874308,2.738831714,,,,,,,,,2.710111662,0.061344315,,,,,-6264.095,,,,,0.63531944,31583,49712,0.413074006,0.857564874,46069,,,39296.57447,52841.42553,,,,,,,,,,,,,48073,44489,51657,,,,,,0.735042735,860,1170,,,,,,,,0.252729601,,46069,,,10.20408163,4,392,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,30.50004013,19,62295,18.36301656,47.62959077,,,,,,,,,,,,,33.61998797,20.24142896,52.50177579,,,,,,800,,,,,0.544725738,3873,7110,,,0.414,,,,,5.135261372,,,,,0.804402341,2887,3589,0.779096328,0.829708353,0.078607861,262,3333,0.045495604,0.111720117,0.754806353,2709,3589,0.705986568,0.803626138,8556,,,,,0.180458158,1544,8556,,,0.274076671,2345,8556,,,0.005025713,43,8556,,,0.016245909,139,8556,,,0.013557737,116,8556,,,0.000467508,4,8556,,,0.04943899,423,8556,,,0.895278167,7660,8556,,,0.012372902,101,8163,0,0.02657399,0.500935016,4286,8556,,,1,8484,8484,, -05,099,05099,AR,Nevada County,2024,1,13006.4708,185,22217,9813.24261,16199.69898,0,,,,2,,,,2,13566.48445,8502.043578,20539.8205,1,,,,2,12874.36439,8900.994523,16847.73426,,,,,2,,0.244,,,0.214,0.275,4.791555013,,,3.877968594,5.770735762,6.058610836,,,4.90282725,7.302806941,0.118506494,73,616,0.092982634,0.144030353,0,,,,,,,0.184466019,0.13149947,0.237432569,,,,0.087912088,0.0588218,0.117002376,,,,,,,0.241,,,0.201,0.284,0.401,,,0.322,0.488,4.3,0.273622814,0.176,,,0.348,,,0.294,0.403,0.479302046,3983,8310,,,0.123266234,,,0.096875469,0.157048021,0.266666667,4,15,0.129817183,0.413965161,769.5,63,8187,,,41.46341463,68,1640,32.19796387,52.56475802,,,,,,,44.7761194,28.68890458,66.62331641,,,,40.43715847,28.47149133,55.73729633,,,,,,,0.091068023,573,6292,0.075578661,0.106557385,0.00024429,2,8187,,,4093.5,,0,8181,,,,0.000855641,7,8181,,,1168.714286,3607,,,,,,,2088,,2717,0.37,,,,,,,0.33,,0.38,0.38,,,,,,,0.3,,0.4,0.896057981,5069,5657,0.858997277,0.933118686,0.408486384,645,1579,0.281308416,0.535664352,0.039209991,135,3443,,,0.316,567,,0.209957447,0.422042553,,,,,,,0.68175389,0.567331261,0.796176519,,,,0.419,0.330688273,0.507311728,4.167083482,69982,16794,3.321708788,5.012458176,0.455716586,849,1863,0.299509326,0.611923847,8.550140467,7,8187,,,82.54230293,34,41191,57.1629443,115.3445949,,,,,,,80.13462617,38.42766805,147.3704307,,,,89.03685352,56.44172746,133.598997,,,,9.7,,,,,1,,,,,0.139498433,445,3190,0.081781195,0.197215671,0.088431062,0.033165272,0.143696852,0.026645768,0.00046967,0.052821867,0.031347962,0.006277804,0.056418121,0.8177735,2549,3117,0.752136891,0.883410109,,,,,,,0.885466795,0.759870529,1,,,,0.777705346,0.715777149,0.839633543,0.382,,3117,0.280569329,0.483430671,73.11009615,,,70.85126562,75.36892669,,,,,,,72.2344174,68.3018318,76.167003,,,,73.13405664,70.37045664,75.89765665,,,,603.6970264,185,22217,508.8724116,698.5216412,,,,,,,633.1038574,468.373719,836.9968745,,,,610.3591747,491.246807,729.4715423,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.148,,,0.129,0.169,0.2,,,0.175,0.229,0.124,,,0.106,0.143,144.9,10,6900,,,0.176,1470,,,,0.273622814,2461.784453,8997,,,,,,,,,,,,,,,,,,,,,,,,,,0.383,,,0.371,0.396,0.109573756,491,4481,0.089318437,0.129829075,0.045789474,87,1900,0.029108623,0.062470325,0.000855641,7,8181,,,1168.714286,0.9328125,104.475,112,,,,,,,,2.482120081,,,,,,,2.400005896,,2.530056122,2.447615481,,,,,,,2.239922601,,2.551754207,0.040731895,,,,,-10278.114,,,,,0.886497787,36045,40660,0.758751974,1.014243599,44649,,,39381.42553,49916.57447,,,,,,,25125,15765.85106,34484.14894,,,,46189,42311.89362,50066.10638,,,,,,1,1308,1308,,,7.063488843,,,,,0.260767318,,44649,,,14.61377871,7,479,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,30.95602525,18,58147,18.34650245,48.92386584,,,,,,,,,,,,,30.03659003,14.99415752,53.74375652,,,,17.77777778,,900,,,16,,0.526332288,3358,6380,,,0.514,,,,,5.072634375,,,,,0.666772353,2103,3154,0.603245711,0.730298994,0.109289618,320,2928,0.056329565,0.16224967,0.676284084,2133,3154,0.583247185,0.769320983,8181,,,,,0.222099988,1817,8181,,,0.216232734,1769,8181,,,0.294096076,2406,8181,,,0.004889378,40,8181,,,0.005256081,43,8181,,,0.000733407,6,8181,,,0.047793668,391,8181,,,0.63072974,5160,8181,,,0.001021711,8,7830,,,0.508617528,4161,8181,,,1,8310,8310,, -05,101,05101,AR,Newton County,2024,1,11269.92455,183,20007,8252.827052,14287.02205,0,,,,2,,,,2,,,,2,,,,2,12045.80834,8785.592951,15306.02373,,,,,2,,0.2,,,0.168,0.236,4.390199928,,,3.493873732,5.392456703,5.969508865,,,4.814410463,7.184215093,0.059548255,29,487,0.03853011,0.080566399,0,,,,,,,,,,,,,0.060606061,0.03884816,0.082363961,,,,,,,0.216,,,0.173,0.262,0.399,,,0.322,0.48,6.8,0.113547135,0.135,,,0.293,,,0.24,0.35,0.584775087,4225,7225,,,0.135870268,,,0.106763393,0.16917437,0.117647059,2,17,0.02445786,0.265431552,138.8,10,7204,,,39.09026297,55,1407,29.44813573,50.88135037,,,,,,,,,,,,,41.18104118,30.84742574,53.8658158,,,,,,,0.09738041,513,5268,0.081891048,0.112869772,,0,7204,,,,,0,7078,,,,0.000423849,3,7078,,,2359.333333,2469,,,,,,,,,2480,0.37,,,,,,,,,0.37,0.3,,,,,,,,,0.31,0.849312452,4447,5236,0.814199363,0.884425541,0.627223511,811,1293,0.482425551,0.772021472,0.029962547,96,3204,,,0.294,379,,0.179617021,0.408382979,,,,,,,,,,,,,0.152260111,0.068608275,0.235911947,4.094563049,96472,23561,3.503141083,4.685985015,0.223011364,314,1408,0.096257835,0.349764892,6.940588562,5,7204,,,107.3523251,41,38192,77.03788194,145.6355508,,,,,,,,,,,,,112.2649453,80.20372282,152.8729918,,,,7.6,,,,,1,,,,,0.173622705,520,2995,0.118162294,0.229083116,0.121447903,0.063087511,0.179808294,0.006677796,0,0.020140011,0.045075125,0.019305999,0.070844252,0.756912029,2108,2785,0.69536222,0.818461838,,,,,,,,,,,,,0.602489019,0.465316053,0.739661985,0.622,,2785,0.499542946,0.744457055,74.34509733,,,72.20868962,76.48150504,,,,,,,,,,,,,73.59762631,71.37812398,75.81712863,,,,545.1959657,183,20007,453.5650922,636.8268392,,,,,,,,,,,,,572.6419497,474.6914733,670.5924261,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.133,,,0.114,0.155,0.192,,,0.164,0.221,0.097,,,0.082,0.114,80,5,6253,,,0.135,990,,,,0.113547135,945.8476323,8330,,,,,,,,,,,,,,,,,,,,,,,,,,0.336,,,0.319,0.353,0.115592088,450,3893,0.095336769,0.135847408,0.048596852,71,1461,0.031916,0.065277703,0.001130263,8,7078,,,884.75,0.925892857,103.7,112,,,,,,,,2.386003914,,,,,,,,,2.357357635,2.332356517,,,,,,,,,2.296878475,,,,,,-2252.7673,,,,,0.797811187,36085,45230,0.637790078,0.957832297,47996,,,42030.21277,53961.78723,43750,29750,57750,,,,,,,29315,8838.06383,49791.93617,51165,42238.3617,60091.6383,,,,,,0.880255942,963,1094,,,,,,,,0.242582715,,47996,,,22.03856749,8,363,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,26.18349393,10,38192,12.55600308,48.15237757,,,,,,,,,,,,,28.06623632,13.45885124,51.61480786,,,,29.60715013,16,54041,16.92304445,48.08015691,,,,,,,,,,,,,31.65621352,18.09426123,51.40770749,,,,,,700,,,-888,,0.643800322,3998,6210,,,0.344,,,,,2.811084326,,,,,0.74767642,2172,2905,0.693523346,0.801829494,0.121351767,316,2604,0.065053109,0.177650424,0.72908778,2118,2905,0.667470833,0.790704726,7078,,,,,0.186634643,1321,7078,,,0.272958463,1932,7078,,,0.004521051,32,7078,,,0.014552133,103,7078,,,0.005792597,41,7078,,,0.000141283,1,7078,,,0.026843741,190,7078,,,0.922153151,6527,7078,,,0,0,6921,0,0.012395208,0.487990958,3454,7078,,,1,7225,7225,, -05,103,05103,AR,Ouachita County,2024,1,13720.62362,612,62892,11936.23304,15505.01421,0,,,,2,,,,2,18187.69744,14874.44109,21500.95378,,,,,2,11326.70436,9177.307597,13476.10112,,,,,2,,0.254,,,0.223,0.288,4.817247513,,,3.909508324,5.843116218,6.148380266,,,5.047491083,7.328166245,0.112485939,200,1778,0.097799148,0.127172731,0,,,,,,,0.158536585,0.133537074,0.183536096,,,,0.068965517,0.051839477,0.086091557,,,,,,,0.241,,,0.2,0.285,0.4,,,0.328,0.474,5.6,0.181491471,0.16,,,0.372,,,0.319,0.428,0.389183223,8815,22650,,,0.123605876,,,0.097068654,0.152855391,0.433333333,13,30,0.341978933,0.519075952,851.8,190,22306,,,36.71328671,168,4576,31.16160325,42.26497018,,,,,,,44.56157163,35.96693949,54.59093581,,,,28.98550725,22.2230222,37.15811214,,,,58.47953216,28.04320875,107.5459418,0.095561752,1645,17214,0.08126388,0.109859624,0.000582803,13,22306,,,1715.846154,0.000453535,10,22049,,,2204.9,0.001723434,38,22049,,,580.2368421,2263,,,,,,,2499,,2128,0.35,,,,,,,0.34,,0.35,0.47,,,,,,,0.42,,0.48,0.881624881,13890,15755,0.856098713,0.907151049,0.582691528,2875,4934,0.482499969,0.682883087,0.039043082,377,9656,,,0.259,1250,,0.163680851,0.354319149,,,,,,,0.331588133,0.216760583,0.446415683,0.164705882,0,0.436289097,0.215256467,0.116944147,0.313568786,4.83909416,101500,20975,3.925884252,5.752304067,0.402728351,2037,5058,0.335704593,0.46975211,15.69084551,35,22306,,,96.27865794,112,116329,78.44760096,114.1097149,,,,,,,95.26696402,69.22112189,127.8914526,,,,103.3462255,79.92796333,131.4817382,,,,9.9,,,,,0,,,,,0.14918292,1415,9485,0.109505646,0.188860195,0.096259626,0.06319271,0.129326542,0.040590406,0.020612003,0.060568809,0.021613073,0.007332622,0.035893524,0.892270821,7446,8345,0.85817624,0.926365402,,,,,,,0.838361099,0.766135632,0.910586565,,,,0.872189078,0.832163874,0.912214281,0.258,,8345,0.204224348,0.311775652,71.53339432,,,70.32271786,72.74407078,,,,,,,68.77053851,66.67732357,70.86375346,,,,72.96007954,71.44790296,74.47225611,,,,669.3693589,612,62892,611.5678558,727.170862,,,,,,,822.6932291,718.8180896,926.5683686,,,,596.6617514,525.2000923,668.1234106,,,,102.1269038,23,22521,64.73969645,153.2404995,,,,,,,142.2186103,77.75223767,238.6186624,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.149,,,0.131,0.17,0.201,,,0.175,0.228,0.13,,,0.112,0.149,280.9,53,18866,,,0.16,3650,,,,0.181491471,4740.557218,26120,,,,,,,,,,,,,,,,,,,,,,,,,,0.377,,,0.364,0.389,0.113141933,1399,12365,0.094078103,0.132205763,0.052911094,269,5084,0.035038753,0.070783434,0.000544242,12,22049,,,1837.416667,0.93671875,239.8,256,,,,,,,,2.650347744,,,,,,,2.291925449,,2.976395156,2.594024375,,,,,,,2.247544756,,2.963912465,0.111742171,,,,,-7502.745,,,,,0.764812125,38958,50938,0.619272195,0.910352055,49275,,,44840.2766,53709.7234,,,,,,,34545,25226.3617,43863.6383,27083,7953.638298,46212.3617,60486,53051.10638,67920.89362,,,,,,0.839772727,2956,3520,,,20.59532521,,,,,0.236286149,,49275,,,9.584664537,12,1252,,,7.282216221,12,164785,3.762827386,12.72056622,,,,,,,,,,,,,,,,,,,13.21193489,16,116329,7.223087745,22.16738177,13.75409399,,,,,,,,,,,,,15.23211544,7.304391418,28.01240262,,,,13.75409399,16,116329,7.861653116,22.33578695,,,,,,,,,,,,,,,,,,,29.12886489,48,164785,21.4773255,38.62064884,,,,,,,30.53528352,18.65174446,47.15926884,,,,28.67288648,18.7300814,42.01242207,,,,6.666666667,,2400,,,16,,0.530085329,9629,18165,,,0.552,,,,,19.45057059,,,,,0.737557631,6239,8459,0.70569008,0.769425182,0.096631765,766,7927,0.065943845,0.127319684,0.815699255,6900,8459,0.785601438,0.845797073,22049,,,,,0.223003311,4917,22049,,,0.215882807,4760,22049,,,0.394621071,8701,22049,,,0.004671414,103,22049,,,0.005623838,124,22049,,,0.000498889,11,22049,,,0.028209896,622,22049,,,0.546147218,12042,22049,,,0.000982732,21,21369,0,0.006194823,0.516712776,11393,22049,,,0.56410596,12777,22650,, -05,105,05105,AR,Perry County,2024,1,10939.16043,219,28066,8504.540429,13373.78043,0,,,,2,,,,2,,,,2,,,,2,11115.3394,8598.447716,13632.23108,,,,,2,,0.205,,,0.174,0.239,4.58515355,,,3.634707211,5.587872855,5.797949381,,,4.648128669,7.017560069,0.082987552,60,723,0.06287899,0.103096114,0,,,,,,,,,,,,,0.084464555,0.063296832,0.105632278,,,,,,,0.216,,,0.171,0.26,0.377,,,0.297,0.461,6.9,0.053058966,0.16,,,0.303,,,0.249,0.359,0.477892005,4788,10019,,,0.143668199,,,0.112504974,0.179991779,0.230769231,3,13,0.089378268,0.394382228,291,29,9964,,,24.24242424,52,2145,18.10540196,31.7907141,,,,,,,,,,,,,25.3164557,18.53482741,33.76860413,,,,,,,0.097977244,775,7910,0.082487882,0.113466606,0.000200723,2,9964,,,4982,,0,10063,,,,,0,10063,,,,1882,,,,,,,,,1923,0.41,,,,,,,,,0.4,0.43,,,,,,,0.64,,0.43,0.910095078,6509,7152,0.887866592,0.932323565,0.583261803,1359,2330,0.46467014,0.701853466,0.036415228,154,4229,,,0.219,459,,0.135595745,0.302404255,,,,,,,0.225,0,0.72697842,0.174672489,0.021198718,0.32814626,0.18776824,0.104496643,0.271039838,4.434793337,107832,24315,3.480821356,5.388765319,0.219445707,483,2201,0.126632404,0.312259009,9.032517061,9,9964,,,108.8520002,56,51446,82.22563111,141.3533764,,,,,,,,,,,,,110.1788287,82.28681922,144.4848753,,,,9.4,,,,,0,,,,,0.098648649,365,3700,0.054616004,0.142681294,0.054545455,0.019274985,0.089815924,0.051351351,0.01934892,0.083353783,0.001081081,0,0.009733594,0.83782342,3141,3749,0.793335271,0.882311569,,,,,,,,,,,,,0.786078099,0.676885367,0.89527083,0.622,,3749,0.514191609,0.729808391,74.08768213,,,72.25659545,75.91876881,,,,,,,,,,,,,73.73063769,71.87489556,75.58637982,,,,534.4341373,219,28066,458.5864964,610.2817782,,,,,,,,,,,,,552.0434104,472.0034819,632.0833389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.137,,,0.117,0.157,0.193,,,0.165,0.22,0.101,,,0.085,0.118,130,11,8460,,,0.16,1610,,,,0.053058966,554.2008961,10445,,,,,,,,,,,,,,,,,,,,,,,,,,0.325,,,0.307,0.342,0.113325247,654,5771,0.094261417,0.132389077,0.058797327,132,2245,0.039733498,0.077861157,0.000794992,8,10063,,,1257.875,0.905652174,104.15,115,,,,,,,,2.968336799,,,,,,,,,3.010507752,2.672720778,,,,,,,,,2.695860188,0.037313482,,,,,-5597.4725,,,,,0.845681432,45304,53571,0.621238486,1.070124378,56640,,,49840.17021,63439.82979,,,,,,,,,,35884,29483.31915,42284.68085,59226,48260.7234,70191.2766,,,,,,0.598596043,938,1567,,,39.88117915,,,,,0.269862288,,56640,,,9.803921569,5,510,,,,,,,,,,,,,,,,,,,,,,,,,,21.82402482,11,51446,10.4654682,40.13515868,21.38164289,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,34.834952,25,71767,22.54334422,51.42326097,,,,,,,,,,,,,36.39065367,23.31617846,54.14640808,,,,,,1100,,,-888,,0.576573209,4627,8025,,,0.54,,,,,1.373352038,,,,,0.7581614,2903,3829,0.711409322,0.804913478,0.058024342,205,3533,0.023471622,0.092577062,0.776181771,2972,3829,0.738243813,0.814119728,10063,,,,,0.212461493,2138,10063,,,0.210672762,2120,10063,,,0.020868528,210,10063,,,0.010533638,106,10063,,,0.00377621,38,10063,,,9.93739E-05,1,10063,,,0.037463977,377,10063,,,0.908079102,9138,10063,,,0.002923977,28,9576,0,0.012308754,0.494683494,4978,10063,,,1,10019,10019,, -05,107,05107,AR,Phillips County,2024,1,19922.01433,496,46911,17296.57233,22547.45634,0,,,,2,,,,2,22821.15049,19271.93802,26370.36295,,,,,2,14711.71055,10986.39671,18437.02439,,,,,2,,0.307,,,0.268,0.348,5.377081109,,,4.409987807,6.437901853,6.225454763,,,5.064534143,7.408498372,0.134285714,235,1750,0.118310774,0.150260655,0,,,,,,,0.151444184,0.131812932,0.171075437,,,,0.080188679,0.054337578,0.106039781,,,,,,,0.262,,,0.218,0.308,0.431,,,0.358,0.505,4.4,0.189356577,0.209,,,0.401,,,0.345,0.462,0.228392081,3784,16568,,,0.103568831,,,0.080727731,0.128977866,0.318181818,7,22,0.204127461,0.433005911,1282.5,204,15906,,,63.81934217,260,4074,56.06184331,71.57684103,,,,,,,71.67004733,62.02230197,81.31779269,,,,43.65904366,31.46559848,59.01434385,,,,,,,0.088007896,1070,12158,0.073710024,0.102305768,0.000628694,10,15906,,,1590.6,0.000326712,5,15304,,,3060.8,0.000849451,13,15304,,,1177.230769,2727,,,,,,,2728,,2579,0.29,,,,,,,0.31,,0.27,0.32,,,,,,,0.26,,0.35,0.819962512,8749,10670,0.784115739,0.855809285,0.556393157,1919,3449,0.456796412,0.655989903,0.062756285,352,5609,,,0.533,2040,,0.388829787,0.677170213,,,,,,,0.587199458,0.53546701,0.638931906,0.057377049,0,0.232387553,0.171028037,0.081060234,0.260995841,6.203581047,85231,13739,5.065827956,7.341334137,0.578764747,2502,4323,0.485719873,0.671809621,11.94517792,19,15906,,,164.406083,144,87588,137.5530895,191.2590766,,,,,,,175.6721772,142.1292819,214.7501269,,,,152.9967405,112.0128431,204.0762114,,,,8.8,,,,,0,,,,,0.139550265,1055,7560,0.103523572,0.175576958,0.123225362,0.088836598,0.157614126,0.015079365,0.00291535,0.027243381,0.011111111,0,0.023645545,0.797431724,4409,5529,0.744575229,0.850288218,,,,,,,0.747732894,0.664919839,0.830545948,,,,0.901056338,0.862631676,0.939481,0.188,,5529,0.126814962,0.249185038,67.66500722,,,66.08322237,69.24679207,,,,,,,66.04088869,63.96118846,68.12058891,,,,70.61776163,68.25991898,72.97560428,,,,833.5756681,496,46911,753.7643153,913.387021,,,,,,,910.8792164,803.101149,1018.657284,,,,714.563593,594.5280785,834.5991074,,,,117.8399426,23,19518,74.70041519,176.8177728,,,,,,,148.8095238,90.89672311,229.8242404,,,,,,,,,,13.44086022,25,1860,8.698216047,19.84136113,,,,,,,16.21223287,10.16012002,24.54551539,,,,,,,,,,,,,0.17,,,0.148,0.194,0.211,,,0.185,0.241,0.161,,,0.14,0.183,332.4,43,12936,,,0.209,3540,,,,0.189356577,4119.831039,21757,,,,,,,,,,,,,,,,,,,,,,,,,,0.414,,,0.398,0.429,0.11029323,914,8287,0.091229401,0.12935706,0.041759328,169,4047,0.027461456,0.0560572,0.000849451,13,15304,,,1177.230769,0.820559846,212.525,259,,,,,,,,2.597764692,,,,,,,2.522559868,,3.07966343,2.292336859,,,,,,,2.168973563,,2.870228785,0.306833828,,,,,-28891.69333,,,,,0.914420298,42708,46705,0.638386149,1.190454446,36098,,,30996.04255,41199.95745,,,,,,,27216,17393.3617,37038.6383,,,,55761,41575.12766,69946.87234,,,,,,1,2936,2936,,,39.63881664,,,,,0.322538645,,36098,,,16.03849238,20,1247,,,49.96985945,63,126076,38.39821203,63.93315721,,,,,,,77.30464472,58.9915879,99.50640135,,,,,,,,,,22.23809099,18,87588,12.9545075,35.60533791,20.55076038,,,,,,,,,,,,,41.32338905,20.62848693,73.93895771,,,,74.21107914,65,87588,57.27454415,94.58811232,,,,,,,98.00658308,73.41365608,128.1950237,,,,36.58617708,18.26368778,65.46277694,,,,30.14055014,38,126076,21.32924716,41.37025994,,,,,,,28.3450364,17.7636834,42.91472575,,,,36.68630913,20.96939549,59.57626762,,,,,,2000,,,,,0.462541682,6242,13495,,,0.459,,,,,35.51942288,,,,,0.536893204,3318,6180,0.484396303,0.589390105,0.154693141,857,5540,0.115696085,0.193690197,0.761165049,4704,6180,0.712350021,0.809980077,15304,,,,,0.254704652,3898,15304,,,0.210402509,3220,15304,,,0.619445897,9480,15304,,,0.00490068,75,15304,,,0.004573968,70,15304,,,0.000326712,5,15304,,,0.024242028,371,15304,,,0.336121276,5144,15304,,,6.56728E-05,1,15227,0,0.006128793,0.528619969,8090,15304,,,0.480987446,7969,16568,, -05,109,05109,AR,Pike County,2024,1,11061.94698,236,28658,8734.654401,13389.23955,0,,,,2,,,,2,,,,2,,,,2,11229.68495,8688.798454,13770.57145,,,,,2,,0.211,,,0.179,0.246,4.511107312,,,3.571059879,5.48677033,5.611813292,,,4.476658624,6.748925712,0.08672799,66,761,0.066731974,0.106724005,0,,,,,,,,,,,,,0.087349398,0.065873355,0.10882544,,,,,,,0.223,,,0.177,0.27,0.372,,,0.295,0.454,6.2,0.09372835,0.172,,,0.306,,,0.255,0.364,0.35296431,3590,10171,,,0.143533214,,,0.112956961,0.178802593,0.166666667,1,6,0.011498194,0.426636125,298,30,10066,,,35.3200883,80,2265,28.00663337,43.95890727,,,,,,,,,,,,,36.598493,28.42016187,46.39731063,,,,,,,0.131535845,1044,7937,0.112472015,0.150599675,0.000397377,4,10066,,,2516.5,0.000294724,3,10179,,,3393,0.000392966,4,10179,,,2544.75,3494,,,,,,,,,3510,0.3,,,,,,,,,0.3,0.38,,,,,,,0.31,,0.38,0.886723679,6325,7133,0.863500054,0.909947303,0.576388889,1328,2304,0.472343804,0.680433974,0.037000735,151,4081,,,0.282,614,,0.177148936,0.386851064,,,,,,,0.592592593,0.273043077,0.912142108,0.090909091,0,0.253329927,0.151446398,0.090995317,0.21189748,4.907206469,95877,19538,3.867167533,5.947245406,0.155242851,342,2203,0.098404194,0.212081507,8.94098947,9,10066,,,100.3293833,53,52826,75.1535928,131.2333035,,,,,,,,,,,,,108.9300887,80.85001141,143.610742,,,,9.3,,,,,1,,,,,0.107947806,455,4215,0.07111139,0.144784221,0.076551558,0.04162057,0.111482545,0.028469751,0.010048441,0.046891061,0.009252669,0.003180426,0.015324912,0.796674584,3354,4210,0.733537696,0.859811473,,,,,,,,,,,,,0.804148385,0.728852332,0.879444438,0.437,,4210,0.358424913,0.515575087,73.61273016,,,71.89449285,75.33096746,,,,,,,,,,,,,73.33672534,71.51035812,75.16309257,,,,565.8551835,236,28658,489.0632003,642.6471668,,,,,,,,,,,,,582.4748446,499.4299787,665.5197105,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.138,,,0.119,0.159,0.19,,,0.164,0.22,0.105,,,0.09,0.123,81.7,7,8569,,,0.172,1760,,,,0.09372835,1058.286795,11291,,,,,,,,,,,,,,,,,,,,,,,,,,0.336,,,0.319,0.352,0.155644044,899,5776,0.130622768,0.180665321,0.069285084,157,2266,0.046646786,0.091923382,0.000294724,3,10179,,,3393,0.962106918,152.975,159,,,,,,,,2.836880151,,,,,,,,2.60653926,2.899983922,2.852394012,,,,,,,,2.880628348,2.879265541,0.06206284,,,,,-4565.822,,,,,0.822725358,39063,47480,0.544171084,1.101279632,41348,,,35468,47228,,,,,,,22042,3059.191489,41024.80851,47452,22597.53192,72306.46809,51107,46685.38298,55528.61702,,,,,,0.761927256,1613,2117,,,49.4413,,,,,0.281585566,,41348,,,11.47227534,6,523,,,,,,,,,,,,,,,,,,,,,,,,,,18.08424287,11,52826,8.672097383,33.25756651,20.82307954,,,,,,,,,,,,,20.5575174,9.400206006,39.02457158,,,,,,,,,,,,,,,,,,,,,,,,,,,25.50951908,19,74482,15.35839688,39.83627396,,,,,,,,,,,,,24.69097699,14.11302673,40.09659974,,,,,,1100,,,-888,,0.52452131,4246,8095,,,0.449,,,,,0.029019617,,,,,0.754429748,3023,4007,0.714596575,0.794262921,0.1003861,364,3626,0.063215434,0.137556767,0.766907911,3073,4007,0.726075908,0.807739914,10179,,,,,0.221927498,2259,10179,,,0.211710384,2155,10179,,,0.035956381,366,10179,,,0.013753807,140,10179,,,0.008252284,84,10179,,,0.001178898,12,10179,,,0.070635622,719,10179,,,0.858434031,8738,10179,,,0.013702864,133,9706,0.001326341,0.026079387,0.499754396,5087,10179,,,1,10171,10171,, -05,111,05111,AR,Poinsett County,2024,1,15839.25475,661,64065,13994.24439,17684.26511,0,,,,2,,,,2,19657.83311,13445.9433,27750.995,,,,,2,16070.89335,14030.89373,18110.89297,,,,,2,,0.244,,,0.209,0.282,5.035705004,,,4.07537437,6.020180583,6.280251635,,,5.088222204,7.424220212,0.100566572,213,2118,0.087757891,0.113375254,0,,,,,,,0.12565445,0.078646656,0.172662245,,,,0.098278734,0.084529923,0.112027545,,,,,,,0.256,,,0.208,0.304,0.451,,,0.367,0.528,5.9,0.103256579,0.183,,,0.36,,,0.301,0.418,0.428913564,9850,22965,,,0.133847083,,,0.103716879,0.166386941,0.277777778,10,36,0.190187864,0.368993994,662,150,22660,,,43.28502416,224,5175,37.61650359,48.95354472,,,,,,,39.63963964,24.84195112,60.01489079,,,,45.17208413,38.73194429,51.61222397,,,,,,,0.117874239,2167,18384,0.101193387,0.13455509,8.82613E-05,2,22660,,,11330,0.000133363,3,22495,,,7498.333333,0.002667259,60,22495,,,374.9166667,4090,,,,,,,1056,,4065,0.44,,,,,,,0.32,,0.44,0.46,,,,,,,0.27,,0.47,0.817931652,12781,15626,0.79568548,0.840177825,0.445636095,2410,5408,0.381322355,0.509949835,0.033833834,338,9990,,,0.276,1462,,0.174723404,0.377276596,0.78125,0.627492183,0.935007817,,,,0.522727273,0.343369562,0.702084984,0.376996805,0.139084146,0.614909465,0.279538905,0.227049784,0.332028026,5.086169654,87121,17129,4.161031335,6.011307972,0.318745441,1748,5484,0.251122902,0.386367981,10.15004413,23,22660,,,113.9465472,134,117599,94.6533216,133.2397727,,,,,,,,,,,,,125.4011355,103.5911348,147.2111363,,,,8.7,,,,,0,,,,,0.11709357,1120,9565,0.08959694,0.1445902,0.088173179,0.061733489,0.114612868,0.029168845,0.017151361,0.041186328,0.008886566,0.001305791,0.01646734,0.824445907,7514,9114,0.792053392,0.856838423,,,,,,,,,,,,,0.812953657,0.800496451,0.825410863,0.403,,9114,0.350102703,0.455897297,69.34975474,,,68.20051267,70.49899681,,,,,,,65.99439403,62.24972457,69.73906349,,,,69.17313691,67.91530888,70.43096493,,,,787.9491752,661,64065,724.8135255,851.084825,,,,,,,1088.825578,822.4871406,1413.930581,,,,786.8557509,719.5449088,854.1665929,,,,90.3231104,22,24357,56.60501241,136.7502746,,,,,,,,,,,,,103.8259876,63.41961058,160.3508171,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.156,,,0.134,0.179,0.209,,,0.18,0.239,0.12,,,0.101,0.138,95.7,18,18807,,,0.183,4250,,,,0.103256579,2538.35648,24583,,,24.47064243,17,69471,14.25505099,39.17986903,,,,,,,,,,,,,25.15765464,14.08054832,41.49372547,,,,0.339,,,0.324,0.354,0.141968673,1849,13024,0.119330375,0.164606971,0.060595259,340,5611,0.04033994,0.080850579,0.000711269,16,22495,,,1405.9375,0.848503521,240.975,284,,,,,,,,2.708863729,,,,,,,2.461083447,2.501396514,2.862367375,2.712761167,,,,,,,2.42615315,2.922142619,2.783036073,0.070672103,,,,,-7703.30775,,,,,0.782659588,37444,47842,0.661335282,0.903983893,47372,,,40974.89362,53769.10638,,,,,,,25417,7224.148936,43609.85106,28438,9703.021277,47172.97872,49297,44009.17021,54584.82979,,,,,,0.934335443,3543,3792,,,41.23365491,,,,,0.322658955,,47372,,,10.23890785,15,1465,,,6.640026077,11,165662,3.314677094,11.88084082,,,,,,,,,,,,,6.984264452,3.349226281,12.844311,,,,26.7179895,33,117599,18.1535776,37.9240534,28.06146311,,,,,,,,,,,,,29.58182471,19.81141227,42.48443477,,,,21.25868417,25,117599,13.75749951,31.3820115,,,,,,,,,,,,,24.6852629,15.97500059,36.44031765,,,,28.37102051,47,165662,20.84595874,37.72744283,,,,,,,,,,,,,29.3339107,21.14130266,39.65092561,,,,,,2500,,,,,0.419932998,7521,17910,,,0.575,,,,,24.3724168,,,,,0.636203479,5778,9082,0.601249419,0.67115754,0.10056926,848,8432,0.074160121,0.126978399,0.781656023,7099,9082,0.753527699,0.809784347,22495,,,,,0.239653256,5391,22495,,,0.1835519,4129,22495,,,0.083663036,1882,22495,,,0.004889976,110,22495,,,0.003645255,82,22495,,,0.000400089,9,22495,,,0.038141809,858,22495,,,0.849299844,19105,22495,,,0.001301781,28,21509,0,0.00663381,0.508646366,11442,22495,,,0.685042456,15732,22965,, -05,113,05113,AR,Polk County,2024,1,12577.05715,459,53073,10672.07548,14482.03883,0,,,,2,,,,2,,,,2,,,,2,13276.06928,11163.50758,15388.63098,,,,,2,,0.224,,,0.192,0.258,4.899764523,,,3.990311892,5.974251984,6.117964297,,,5.044080807,7.315859882,0.063241107,96,1518,0.050996811,0.075485403,0,,,,,,,,,,,,,0.063765942,0.05064915,0.076882733,,,,,,,0.242,,,0.198,0.289,0.355,,,0.285,0.431,5.3,0.169463209,0.178,,,0.32,,,0.269,0.375,0.587170283,11286,19221,,,0.136300319,,,0.107163952,0.169674343,0.260869565,6,23,0.151021274,0.378411613,217,42,19353,,,35.35937139,153,4327,29.75644533,40.96229745,,,,,,,,,,,,,40.13860814,33.46576402,46.81145227,,,,,,,0.138596609,2068,14921,0.119532779,0.157660439,0.000775074,15,19353,,,1290.2,0.000413715,8,19337,,,2417.125,0.001034287,20,19337,,,966.85,2273,,,,,,,,,2225,0.31,,,,,,,,,0.31,0.26,,,,,,,,0.12,0.26,0.880364013,11899,13516,0.859817395,0.900910632,0.595582635,2346,3939,0.506192321,0.68497295,0.036594663,288,7870,,,0.248,1036,,0.149106383,0.346893617,,,,,,,,,,0.505154639,0.397088715,0.613220563,0.236641221,0.165125323,0.30815712,4.160376513,92818,22310,3.624374577,4.696378448,0.214087118,924,4316,0.139639322,0.288534913,14.46804113,28,19353,,,106.8645341,106,99191,86.5205159,127.2085523,,,,,,,,,,,,,116.0546031,93.42078846,138.6884178,,,,8.7,,,,,1,,,,,0.163894023,1330,8115,0.128059443,0.199728604,0.111097319,0.079812412,0.142382225,0.03758472,0.021848289,0.05332115,0.027726433,0.014611944,0.040840921,0.78232384,5851,7479,0.727328838,0.837318843,,,,,,,,,,0.657393851,0.569911641,0.74487606,0.792718823,0.742644331,0.842793314,0.202,,7479,0.156723404,0.247276596,72.68694051,,,71.38879177,73.98508924,,,,,,,,,,,,,71.90653672,70.51332291,73.29975053,,,,594.9505417,459,53073,534.8227196,655.0783638,,,,,,,,,,,,,627.1702419,561.7207528,692.6197311,,,,71.4358608,14,19598,39.05464984,119.8572361,,,,,,,,,,,,,81.66855133,43.48506402,139.65571,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.147,,,0.127,0.169,0.202,,,0.176,0.23,0.108,,,0.092,0.125,92.1,15,16293,,,0.178,3460,,,,0.169463209,3501.448831,20662,,,,,,,,,,,,,,,,,,,,,,,,,,0.329,,,0.314,0.344,0.171978126,1824,10606,0.14576536,0.198190892,0.059094903,269,4552,0.040031074,0.078158733,0.001241144,24,19337,,,805.7083333,0.915392562,221.525,242,,,0.240170032,226,941,0.10543953,0.374900534,3.054854668,,,,,,,,3.177553382,3.034862566,2.915903282,,,,,,,,2.975150858,2.91402063,0.075122544,,,,,-3100.6605,,,,,0.698279829,31866,45635,0.600356156,0.796203502,45289,,,39173.08511,51404.91489,,,,,,,,,,38750,18732.97872,58767.02128,49960,42996.93617,56923.06383,,,,,,0.75152488,2341,3115,,,,,,,,0.257082294,,45289,,,7.887817704,9,1141,,,,,,,,,,,,,,,,,,,,,,,,,,35.39646388,32,99191,23.70556739,50.83522656,32.26099142,,,,,,,,,,,,,39.28068538,26.10173017,56.77152716,,,,27.22021151,27,99191,17.93829091,39.60397863,,,,,,,,,,,,,29.87544239,19.51563085,43.7744451,,,,35.10531595,49,139580,25.971106,46.41108941,,,,,,,,,,,,,35.90312684,26.08726692,48.19827198,,,,5.714285714,,2100,,,12,,0.571140262,8490,14865,,,0.533,,,,,16.45448416,,,,,0.798885577,6165,7717,0.760100398,0.837670756,0.095309111,703,7376,0.067025251,0.12359297,0.766100816,5912,7717,0.722946731,0.809254902,19337,,,,,0.219941046,4253,19337,,,0.234938201,4543,19337,,,0.006102291,118,19337,,,0.023323163,451,19337,,,0.009567151,185,19337,,,0.000620572,12,19337,,,0.067487201,1305,19337,,,0.871593319,16854,19337,,,0.008860206,162,18284,0.002131147,0.015589265,0.506541863,9795,19337,,,0.71208574,13687,19221,, -05,115,05115,AR,Pope County,2024,1,9027.141852,1031,178917,8192.531642,9861.752062,0,,,,2,,,,2,12821.09542,7831.458163,19801.14202,1,4515.331316,2862.332725,6775.213981,1,9602.26678,8644.634476,10559.89909,,,,,2,,0.214,,,0.182,0.249,4.54487191,,,3.641829164,5.475293821,5.797182807,,,4.759663376,6.842837992,0.075435573,394,5223,0.06827327,0.082597877,0,,,,,,,0.113095238,0.065203336,0.16098714,0.072483222,0.053864169,0.091102274,0.073264473,0.065348989,0.081179957,,,,0.163934426,0.071027861,0.256840992,0.216,,,0.172,0.263,0.383,,,0.316,0.452,6.6,0.093706147,0.154,,,0.301,,,0.251,0.358,0.736056547,46652,63381,,,0.143583574,,,0.114626855,0.175829474,0.285714286,14,49,0.211140168,0.362602718,354.3,226,63789,,,22.96211251,400,17420,20.71182549,25.21239954,,,,,,,22.95081967,12.54742668,38.50757561,30.07107709,22.65365061,39.14164023,22.55322139,20.08597718,25.0204656,,,,,,,0.125676476,6363,50630,0.108995625,0.142357328,0.000642744,41,63789,,,1555.829268,0.000468274,30,64065,,,2135.5,0.002356981,151,64065,,,424.2715232,2427,,,,,,,2712,863,2403,0.38,,,,,,0.2,0.29,0.18,0.38,0.43,,,,,0.23,0.56,0.29,0.24,0.44,0.852976292,35007,41041,0.831909071,0.874043513,0.55316415,8610,15565,0.499464135,0.606864165,0.03867124,1071,27695,,,0.185,2655,,0.123042553,0.246957447,,,,,,,0.089430894,0,0.521470071,0.337093863,0.227221814,0.446965911,0.184433164,0.140915195,0.227951133,4.445805085,104921,23600,4.113585328,4.778024842,0.253290154,3676,14513,0.204628889,0.301951418,13.32518146,85,63789,,,69.68096741,223,320030,60.5352493,78.82668552,,,,,,,,,,,,,80.14681098,69.40851349,90.88510847,,,,9.4,,,,,0,,,,,0.117647059,2690,22865,0.094858511,0.140435606,0.095496689,0.075510699,0.115482678,0.016181938,0.007774585,0.02458929,0.010059042,0.004632275,0.015485809,0.814330544,21798,26768,0.783722007,0.844939081,,,,,,,,,,0.687535735,0.60294178,0.772129689,0.839489384,0.809606445,0.869372323,0.226,,26768,0.195182087,0.256817913,75.68098707,,,74.99123623,76.3707379,,,,,,,71.84540947,67.76880606,75.92201287,88.50712953,75.20257106,101.811688,75.08982898,74.33864325,75.84101471,,,,470.5226733,1031,178917,440.7203179,500.3250286,,,,,,,561.3602163,366.6991308,822.5227815,273.2871511,175.1002343,406.6296182,495.5979325,462.6376609,528.558204,,,,50.91871918,35,68737,35.46675357,70.81561222,,,,,,,,,,,,,51.0155881,33.61959401,74.22500226,,,,4.883546206,26,5324,3.190094518,7.155526687,,,,,,,,,,,,,,,,,,,,,,0.139,,,0.119,0.161,0.196,,,0.17,0.224,0.11,,,0.094,0.127,110.2,59,53542,,,0.154,9760,,,,0.093706147,5786.729408,61754,,,14.04823226,27,192195,9.257873582,20.43944038,,,,,,,,,,,,,15.01426355,9.61992196,22.34003403,,,,0.343,,,0.327,0.359,0.151035761,5461,36157,0.128397463,0.173674059,0.065724288,995,15139,0.046660459,0.084788118,0.000889721,57,64065,,,1123.947368,0.921441504,661.595,718,,,0.056262559,252,4479,0.023506956,0.089018162,3.152561533,,,,,,,2.413920463,2.862072517,3.253446829,2.984423972,,,,,,,2.377138822,2.683884626,3.083661504,0.118138331,,,,,-4221.755,,,,,0.666762216,34891,52329,0.58447007,0.749054362,57881,,,52067.7234,63694.2766,,,,,,,55547,6680.446809,104413.5532,57776,47532.76596,68019.23404,51292,47537.61702,55046.38298,,,,,,0.585781897,5941,10142,,,43.16063759,,,,,0.201154092,,57881,,,8.446378295,33,3907,,,6.484808776,29,447199,4.342978213,9.313267122,,,,,,,,,,,,,6.946114183,4.5374324,10.17766666,,,,20.31013063,57,320030,15.30036992,26.43642673,17.81083024,,,,,,,,,,,,,24.39724324,18.32796,31.8331102,,,,16.24847671,52,320030,12.13513958,21.30771545,,,,,,,,,,,,,19.47492603,14.54480626,25.53877448,,,,13.41684574,60,447199,10.23846676,17.27014001,,,,,,,,,,,,,14.42654484,10.8376645,18.82351163,,,,4.626865672,,6700,,,31,,0.517298327,24432,47230,,,0.644,,,,,33.61550331,,,,,0.720148624,17056,23684,0.700618349,0.739678898,0.105944286,2415,22795,0.084507211,0.127381361,0.835162979,19780,23684,0.814098986,0.856226973,64065,,,,,0.228923749,14666,64065,,,0.165987669,10634,64065,,,0.03165535,2028,64065,,,0.011113713,712,64065,,,0.012783891,819,64065,,,0.001264341,81,64065,,,0.106469991,6821,64065,,,0.821665496,52640,64065,,,0.017869727,1065,59598,0.010930563,0.024808891,0.501287755,32115,64065,,,0.558858333,35421,63381,, -05,117,05117,AR,Prairie County,2024,1,11306.17698,191,21319,8700.368163,13911.98579,0,,,,2,,,,2,18615.42922,10177.22838,31233.52711,1,,,,2,11064.62741,8210.369666,13918.88516,,,,,2,,0.2,,,0.168,0.233,4.354986842,,,3.383104226,5.313875486,5.959825662,,,4.732734721,7.17433006,0.087719298,50,570,0.064495649,0.110942947,0,,,,,,,0.181818182,0.095668381,0.267967982,,,,0.065677966,0.043329732,0.0880262,,,,,,,0.214,,,0.169,0.259,0.367,,,0.286,0.445,7.7,0.021533284,0.137,,,0.302,,,0.245,0.357,0.324197054,2685,8282,,,0.136175964,,,0.1066242,0.170449023,0.3125,5,16,0.177519792,0.449075671,479.4,39,8135,,,31.38373752,44,1402,22.80347173,42.13120277,,,,,,,62.5,34.16933159,104.86438,,,,26.0557053,17.44991477,37.42033912,,,,,,,0.116469816,710,6096,0.098597476,0.134342157,0.000122926,1,8135,,,8135,0.000123931,1,8069,,,8069,0.000247862,2,8069,,,4034.5,3342,,,,,,,,,3618,0.39,,,,,,,0.39,,0.39,0.31,,,,,,,0.09,,0.32,0.855855856,5130,5994,0.818604956,0.893106756,0.638519375,1104,1729,0.520340595,0.756698156,0.029610829,105,3546,,,0.211,345,,0.121638298,0.300361702,,,,,,,0.042780749,0,0.174414684,,,,0.072826938,0.022086562,0.123567314,4.350707937,97408,22389,3.747026638,4.954389236,0.232826748,383,1645,0.122685624,0.342967872,13.5218193,11,8135,,,83.98172163,34,40485,58.15978359,117.3560383,,,,,,,,,,,,,87.16116099,58.8072693,124.427977,,,,8.9,,,,,0,,,,,0.074567244,280,3755,0.04887581,0.100258677,0.050203528,0.023973716,0.07643334,0.018641811,0.003354627,0.033928995,0.009054594,0.000215995,0.017893193,0.806214689,2854,3540,0.74565367,0.866775708,,,,,,,,,,,,,0.754385965,0.666098175,0.842673755,0.455,,3540,0.362938651,0.547061349,74.23828456,,,72.30754892,76.16902019,,,,,,,,,,,,,74.55354397,72.4244833,76.68260464,,,,593.818581,191,21319,502.3153575,685.3218045,,,,,,,937.4655275,594.2727277,1406.658583,,,,580.1731647,482.8842267,677.4621027,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.132,,,0.111,0.152,0.19,,,0.163,0.217,0.1,,,0.084,0.116,173.1,12,6932,,,0.137,1140,,,,0.021533284,187.6625733,8715,,,,,,,,,,,,,,,,,,,,,,,,,,0.346,,,0.329,0.361,0.132821324,588,4427,0.110183026,0.155459622,0.075385494,132,1751,0.050364217,0.100406771,0.000247862,2,8069,,,4034.5,,,,,,,,,,,2.985841063,,,,,,,,,3.103919625,2.818300868,,,,,,,,,2.953463453,0.02606031,,,,,-5555.8265,,,,,0.842120704,40186,47720,0.601629513,1.082611895,51017,,,43368.82979,58665.17021,,,,,,,39107,18656.2766,59557.7234,,,,50225,39629.08511,60820.91489,,,,,,0.693367786,805,1161,,,22.36322705,,,,,0.228218045,,51017,,,11.70960187,5,427,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.85714286,,700,,,9,,0.541860465,3495,6450,,,0.457,,,,,5.706648512,,,,,0.773083887,2562,3314,0.720776085,0.825391688,0.063843648,196,3070,0.02826231,0.099424986,0.714544357,2368,3314,0.653990536,0.775098179,8069,,,,,0.205229892,1656,8069,,,0.242904945,1960,8069,,,0.10422605,841,8069,,,0.004461519,36,8069,,,0.001858966,15,8069,,,0.000743587,6,8069,,,0.022803321,184,8069,,,0.853141653,6884,8069,,,0.006911558,54,7813,0,0.018258219,0.492378238,3973,8069,,,1,8282,8282,, -05,119,05119,AR,Pulaski County,2024,1,11672.02707,7045,1107596,11277.22807,12066.82606,0,,,,2,2966.763114,1859.254648,4491.715008,1,15397.28638,14677.22306,16117.3497,,7253.046156,6046.860856,8459.231457,,9893.951406,9376.462123,10411.44069,,,,,2,,0.193,,,0.168,0.221,4.00376443,,,3.341483151,4.771432839,5.806111848,,,5.018595095,6.626903616,0.115226797,4128,35825,0.111920395,0.118533199,0,,,,0.104672897,0.086329821,0.123015973,0.160483399,0.15468441,0.166282389,0.078215527,0.06925813,0.087172925,0.077932676,0.073599916,0.082265436,,,,0.105797101,0.082846903,0.1287473,0.189,,,0.154,0.225,0.39,,,0.347,0.436,6.7,0.128814554,0.134,,,0.262,,,0.225,0.299,0.831426245,331843,399125,,,0.145084627,,,0.120387175,0.174451698,0.286135693,97,339,0.258862636,0.313812805,987.6,3929,397821,,,27.62548238,2212,80071,26.47422248,28.77674229,,,,,,,35.39426523,33.5012637,37.28726677,41.76227627,36.80824311,46.71630944,15.6133829,14.2209332,17.0058326,,,,22.83907238,17.62671389,29.1102726,0.106563296,34239,321302,0.095839891,0.1172867,0.001178922,469,397821,,,848.2324094,0.000769144,307,399145,,,1300.14658,0.005085871,2030,399145,,,196.6231527,2526,,,,,,2463,3727,1092,2225,0.44,,,,,,0.39,0.46,0.22,0.44,0.51,,,,,0.44,0.51,0.37,0.34,0.54,0.920545791,249351,270873,0.914614848,0.926476734,0.699477967,76241,108997,0.672380845,0.726575089,0.034826579,6605,189654,,,0.246,22117,,0.191191489,0.300808511,0.636132316,0.380732887,0.891531744,0.148913044,0.020117555,0.277708533,0.40865728,0.369804991,0.447509569,0.324201876,0.268976782,0.379426969,0.085669413,0.062544855,0.10879397,5.14411608,125501,24397,4.800184844,5.488047315,0.370205232,33876,91506,0.339157854,0.401252611,15.58489874,620,397821,,,98.45898236,1939,1969348,94.07647646,102.8414883,,,,24.36647174,12.1636549,43.59834865,108.4692698,100.9574263,115.9811132,46.71015543,35.46897937,60.38370761,104.1750851,97.89475543,110.4554148,,,,10.3,,,,,0,,,,,0.159975255,25860,161650,0.148353366,0.171597145,0.137092961,0.126187168,0.147998754,0.021218682,0.016967321,0.025470044,0.012774513,0.009120117,0.016428909,0.794596534,148406,186769,0.779075939,0.810117128,0.757160648,0.624833168,0.889488127,0.666895134,0.626847811,0.706942456,0.799258706,0.77139899,0.827118422,0.749731086,0.697722035,0.801740138,0.8537506,0.84548909,0.86201211,0.208,,186769,0.194467282,0.221532718,74.32153747,,,74.01490585,74.6281691,,,,85.44792583,82.29092618,88.60492549,71.17485971,70.62494353,71.7247759,84.83601667,80.24662063,89.4254127,75.77561694,75.37367295,76.17756093,,,,519.8444548,7045,1107596,507.2588379,532.4300718,,,,152.7830232,110.1125645,206.518263,678.310046,654.0752983,702.5447937,286.3588915,239.158752,333.5590309,458.9079141,442.9580808,474.8577474,,,,90.34353128,360,398479,81.01094781,99.67611475,,,,,,,130.523223,113.6911397,147.3553062,55.37765151,35.10468071,83.09366743,60.50354564,48.83417001,74.12093099,,,,8.977201193,328,36537,8.005662486,9.9487399,,,,,,,12.79358411,11.02490001,14.56226821,7.860752386,5.223412874,11.36097584,5.593660518,4.461722697,6.925332341,,,,,,,0.119,,,0.104,0.135,0.17,,,0.149,0.192,0.11,,,0.097,0.124,602.9,2000,331716,,,0.134,53400,,,,0.128814554,49303.51295,382748,,,27.47921726,325,1182712,24.49164273,30.46679179,,,,,,,20.35511853,16.38867171,24.99157498,,,,37.39078499,32.51587687,42.26569311,,,,0.361,,,0.349,0.373,0.127709379,29625,231972,0.113411506,0.142007251,0.054501914,5098,93538,0.041395531,0.067608297,0.002137068,853,399145,,,467.9308324,0.793996117,3476.115,4378,,,0.111584281,2070,18551,0.080895873,0.14227269,2.744858875,,,,,,3.862774017,2.461669134,2.473317238,3.421674665,2.615195377,,,,,,3.745563471,2.265679971,2.447382689,3.315551747,0.15124803,,,,,-12719.133,,,,,0.844571923,46818,55434,0.81163572,0.877508127,57057,,,53526.61702,60587.38298,55938,15451.19149,96424.80851,68125,41713.25532,94536.74468,41738,39608.80851,43867.19149,43251,38530.31915,47971.68085,76139,73369.97872,78908.02128,,,,,,0.755102377,45877,60756,,,49.46877325,,,,,0.267890005,,57057,,,11.20218579,287,25620,,,17.82044684,491,2755262,16.24416485,19.39672884,,,,,,,37.33341673,33.58953494,41.07729852,11.07690873,6.669022646,17.2979651,5.72341526,4.552002007,7.104267444,,,,16.36494689,328,1969348,14.55128999,18.17860379,16.65525849,,,,,,,9.371151529,7.216928574,11.96675129,7.740740948,3.711986164,14.23549821,22.4042294,19.44923232,25.35922647,,,,27.11557328,534,1969348,24.81569827,29.41544828,,,,,,,42.6564544,37.9457533,47.3671555,12.88556012,7.365210964,20.92534235,19.51434896,16.79617315,22.23252477,,,,16.40497347,452,2755262,14.89258838,17.91735855,,,,,,,21.69638355,18.84229834,24.55046875,10.49391353,6.219358228,16.58490758,14.16894266,12.21979161,16.1180937,,,,10.07556675,,39700,,,400,,0.586611442,169956,289725,,,0.626,,,,,129.7580046,,,,,0.58148157,97554,167768,0.570943511,0.592019629,0.149139662,24061,161332,0.13781327,0.160466055,0.855705498,143560,167768,0.844851292,0.866559704,399145,,,,,0.229162335,91469,399145,,,0.170361648,67999,399145,,,0.382662942,152738,399145,,,0.004657455,1859,399145,,,0.024063937,9605,399145,,,0.000410878,164,399145,,,0.066078743,26375,399145,,,0.502368813,200518,399145,,,0.015188625,5668,373174,0.012483145,0.017894105,0.521888036,208309,399145,,,0.113616035,45347,399125,, -05,121,05121,AR,Randolph County,2024,1,11411.34903,380,50255,9622.669759,13200.0283,0,,,,2,,,,2,,,,2,,,,2,11777.46728,9838.997019,13715.93753,,,,,2,,0.237,,,0.2,0.276,4.949420611,,,4.038890392,5.953777318,5.829958942,,,4.725828983,6.968592851,0.08128655,139,1710,0.068333937,0.094239163,0,,,,,,,,,,,,,0.084224599,0.07015103,0.098298168,,,,,,,0.246,,,0.198,0.296,0.42,,,0.342,0.501,6.1,0.093797695,0.175,,,0.343,,,0.285,0.406,0.39152442,7271,18571,,,0.136086996,,,0.107418522,0.168829741,0.16,4,25,0.067364287,0.277512739,413.5,78,18865,,,40.50769646,150,3703,34.02511491,46.99027801,,,,,,,,,,,,,39.19239905,32.50632851,45.87846959,,,,,,,0.113415681,1717,15139,0.095543341,0.131288022,0.000530082,10,18865,,,1886.5,0.000265435,5,18837,,,3767.4,0.001008653,19,18837,,,991.4210526,3992,,,,,,,,,4039,0.45,,,,,,,,,0.45,0.4,,,,,,,,,0.41,0.873680919,11177,12793,0.850238761,0.897123078,0.539067778,2394,4441,0.447228787,0.630906769,0.033940397,246,7248,,,0.24,1084,,0.156595745,0.323404255,,,,0.326388889,0.070182687,0.582595091,0.288888889,0,0.943360218,0.677852349,0.008170891,1,0.283865857,0.211711368,0.356020346,4.515875811,89744,19873,3.540063323,5.4916883,0.150215566,662,4407,0.072728957,0.227702175,5.300821627,10,18865,,,94.94893735,86,90575,75.946894,117.2611652,,,,,,,,,,,,,99.36430786,79.14311657,123.1770095,,,,8.2,,,,,0,,,,,0.115147361,840,7295,0.086372292,0.143922431,0.079166667,0.052130803,0.10620253,0.026730637,0.01143426,0.042027015,0.015078821,0.001351373,0.02880627,0.835392129,5816,6962,0.778681532,0.892102726,,,,,,,,,,,,,0.837118754,0.796076452,0.878161056,0.306,,6962,0.246449367,0.365550634,73.36154664,,,72.03932961,74.68376368,,,,,,,,,,,,,72.91594921,71.5186376,74.31326082,,,,573.0783525,380,50255,512.5905879,633.5661171,,,,,,,,,,,,,582.9239724,519.7615268,646.0864179,,,,93.78419215,18,19193,55.582456,148.2194564,,,,,,,,,,,,,95.6480153,54.67110506,155.3263845,,,,12.14329083,20,1647,7.417437514,18.75432781,,,,,,,,,,,,,,,,,,,,,,0.151,,,0.13,0.175,0.204,,,0.176,0.233,0.114,,,0.097,0.131,103.2,16,15501,,,0.175,3220,,,,0.093797695,1685.450779,17969,,,,,,,,,,,,,,,,,,,,,,,,,,0.359,,,0.341,0.376,0.139303953,1473,10574,0.115474166,0.16313374,0.055078534,263,4775,0.037206194,0.072950875,0.001008653,19,18837,,,991.4210526,0.891532258,165.825,186,,,,,,,,2.556129308,,,,,,,,,2.609642657,2.539545905,,,,,,,,,2.560885029,0.060110649,,,,,-7155.214,,,,,0.863641823,35956,41633,0.636589869,1.090693776,45638,,,39031.19149,52244.80851,,,,,,,,,,25208,1524.765957,48891.23404,46341,39949.85106,52732.14894,,,,,,0.691452664,1804,2609,,,34.54318217,,,,,0.25511635,,45638,,,9.274873525,11,1186,,,,,,,,,,,,,,,,,,,,,,,,,,20.70252218,18,90575,12.05998208,33.1467435,19.8730334,,,,,,,,,,,,,22.38070065,13.03758289,35.8336698,,,,18.76897599,17,90575,10.93362017,30.05094873,,,,,,,,,,,,,20.35172571,11.85563021,32.58508436,,,,31.07767826,39,125492,22.09926728,42.48420925,,,,,,,,,,,,,31.68920597,22.31212546,43.67939614,,,,39.5,,2000,,,79,,0.506092125,6812,13460,,,0.594,,,,,29.63021994,,,,,0.734492351,5281,7190,0.700831095,0.768153606,0.078278452,542,6924,0.04891417,0.107642734,0.706119611,5077,7190,0.654645249,0.757593973,18837,,,,,0.244996549,4615,18837,,,0.194192281,3658,18837,,,0.011042098,208,18837,,,0.007697616,145,18837,,,0.004777831,90,18837,,,0.028666985,540,18837,,,0.026437331,498,18837,,,0.89775442,16911,18837,,,0.009381614,164,17481,0.001326008,0.017437221,0.502203111,9460,18837,,,0.614237252,11407,18571,, -05,123,05123,AR,St. Francis County,2024,1,13086.72975,536,67658,11434.70587,14738.75364,0,,,,2,,,,2,15952.38053,13491.96058,18412.80049,,,,,2,11349.51034,8770.060361,13928.96032,,,,,2,,0.297,,,0.26,0.335,5.24290624,,,4.340908693,6.241120953,5.479913548,,,4.499807641,6.53580596,0.126896552,276,2175,0.112907631,0.140885472,0,,,,,,,0.153633218,0.135040451,0.172225985,,,,0.073699422,0.054231884,0.09316696,,,,,,,0.264,,,0.221,0.309,0.484,,,0.416,0.55,4.9,0.192963379,0.185,,,0.411,,,0.355,0.469,0.725032482,16741,23090,,,0.120531458,,,0.097111266,0.146657318,0.166666667,8,48,0.097589559,0.247689072,1024.7,233,22739,,,64.64689567,303,4687,57.36771612,71.92607522,,,,,,,75.51642398,65.60479456,85.42805339,,,,51.56037992,40.62371498,64.53550405,,,,,,,0.122860224,1823,14838,0.103796394,0.141924054,0.000571705,13,22739,,,1749.153846,0.000445415,10,22451,,,2245.1,0.003741481,84,22451,,,267.2738095,3443,,,,,,,2830,,3831,0.34,,,,,,,0.38,,0.32,0.42,,,,,,,0.33,,0.46,0.842422009,13718,16284,0.810539296,0.874304723,0.421068249,2838,6740,0.353090005,0.489046494,0.048867229,371,7592,,,0.448,2089,,0.315744681,0.580255319,,,,,,,0.405529954,0.311083915,0.499975993,0.44198895,0.02647998,0.857497921,0.275837989,0.178182066,0.373493911,5.049024742,77139,15278,4.042066792,6.055982691,0.488529291,2385,4882,0.375011754,0.602046828,10.55455385,24,22739,,,107.4452272,133,123784,89.18452895,125.7059254,,,,,,,109.8068328,85.76004741,138.5063782,,,,120.2486498,91.53884363,155.1119971,,,,8.7,,,,,0,,,,,0.156736447,1460,9315,0.123396393,0.1900765,0.131403118,0.10070893,0.162097307,0.026838433,0.014195159,0.039481706,0.014492754,0.005919997,0.023065511,0.851216389,6648,7810,0.825213768,0.87721901,,,,,,,0.859789994,0.807772409,0.911807579,,,,0.816795935,0.773147697,0.860444173,0.281,,7810,0.222398585,0.339601415,72.50991738,,,71.29476587,73.72506888,,,,,,,70.59729805,68.8239979,72.3705982,,,,73.46578205,71.61469886,75.31686525,,,,613.7379062,536,67658,560.1007919,667.3750205,,,,,,,707.7064127,625.5047028,789.9081227,,,,569.3769472,490.1098319,648.6440624,,,,115.3914433,26,22532,75.37752182,169.0752001,,,,,,,143.6059453,87.71824216,221.7877354,,,,,,,,,,13.19841619,30,2273,8.90491598,18.84155979,,,,,,,15.21164021,9.642875025,22.82492916,,,,,,,,,,,,,0.166,,,0.145,0.188,0.199,,,0.174,0.226,0.161,,,0.14,0.181,431.3,83,19243,,,0.185,4360,,,,0.192963379,5452.759173,28258,,,16.57115239,12,72415,8.56255625,28.94646834,,,,,,,,,,,,,,,,,,,0.404,,,0.392,0.417,0.153331394,1581,10311,0.128310117,0.17835267,0.055438449,263,4744,0.036374619,0.074502278,0.001113536,25,22451,,,898.04,0.932125604,192.95,207,,,,,,,,2.298138253,,,,,,,2.047264158,,2.967611665,2.142305531,,,,,,,1.993970003,,2.590105389,0.46329817,,,,,-17614.3475,,,,,0.791519351,33357,42143,0.654600913,0.928437789,38062,,,32826.59575,43297.40426,13889,5590.276596,22187.7234,,,,30883,25860.87234,35905.12766,48882,45723.3617,52040.6383,50369,44822.61702,55915.38298,,,,,,1,3020,3020,,,48.68300347,,,,,0.305895644,,38062,,,6.954102921,10,1438,,,22.08768244,39,176569,15.70650142,30.19458901,,,,,,,34.66767781,23.71266596,48.94041718,,,,,,,,,,7.420486609,10,123784,3.393118996,14.08639503,8.078588509,,,,,,,,,,,,,,,,,,,28.27505978,35,123784,19.69461514,39.32376347,,,,,,,37.11780263,23.78207652,55.22834809,,,,22.41923978,11.19160372,40.11421281,,,,25.48578743,45,176569,18.58950823,34.10198874,,,,,,,22.75066356,14.08301932,34.77680595,,,,32.65004827,20.69732985,48.99110342,,,,3.636363636,,2200,,,8,,0.369438669,7108,19240,,,0.453,,,,,31.88072022,,,,,0.542458652,4395,8102,0.496268498,0.588648806,0.141108421,1049,7434,0.105959504,0.176257337,0.745001234,6036,8102,0.705658702,0.784343767,22451,,,,,0.212997194,4782,22451,,,0.17589417,3949,22451,,,0.518017015,11630,22451,,,0.008863748,199,22451,,,0.006993007,157,22451,,,0.000712663,16,22451,,,0.061511737,1381,22451,,,0.39062848,8770,22451,,,0.021859181,475,21730,0.003924109,0.039794253,0.444835419,9987,22451,,,0.62940667,14533,23090,, -05,125,05125,AR,Saline County,2024,1,9308.21264,2023,343686,8681.916595,9934.508685,0,,,,2,,,,2,9161.555692,7233.113428,11089.99796,,5144.526608,3360.575582,7537.923445,,9785.012109,9059.880824,10510.14339,,,,,2,,0.169,,,0.142,0.2,3.940232615,,,3.193131814,4.811987953,5.644405844,,,4.724853966,6.621421547,0.083049404,780,9392,0.077468324,0.088630484,0,,,,0.094890511,0.045815801,0.143965221,0.141071429,0.120684814,0.161458043,0.070351759,0.052585485,0.088118032,0.074481591,0.06836963,0.080593552,,,,0.090909091,0.04704376,0.134774422,0.174,,,0.139,0.215,0.35,,,0.292,0.412,7.7,0.076862536,0.113,,,0.246,,,0.204,0.293,0.56997472,70344,123416,,,0.149922282,,,0.119199951,0.183802239,0.266666667,20,75,0.207086829,0.328553804,348.2,436,125233,,,17.6133689,449,25492,15.98416541,19.24257239,,,,,,,20.47189452,15.58415463,26.40725238,28.25670498,21.51031304,36.44909069,15.92718999,14.14841967,17.70596031,,,,28.09917355,16.36880408,44.98949887,0.084028893,8527,101477,0.073305489,0.094752298,0.000391271,49,125233,,,2555.77551,0.000337634,43,127357,,,2961.790698,0.001538981,196,127357,,,649.7806122,4223,,,,,,,5150,,4166,0.37,,,,,,,0.48,,0.37,0.51,,,,,,0.52,0.33,0.3,0.51,0.919146912,79213,86181,0.910138636,0.928155188,0.691720529,22474,32490,0.647516439,0.73592462,0.027564957,1655,60040,,,0.119,3393,,0.08087234,0.15712766,,,,,,,0.048705722,0,0.102457269,0.173502722,0.090375067,0.256630377,0.136714174,0.107850672,0.165577676,3.928417589,131327,33430,3.467179518,4.38965566,0.196590192,5604,28506,0.155576752,0.237603631,7.585859957,95,125233,,,93.56904677,573,612382,85.90759688,101.2304967,,,,,,,63.40148994,43.36657218,89.50398653,43.87751904,23.98824796,73.61902129,102.7414719,93.94443908,111.5385047,,,,10.1,,,,,0,,,,,0.096784922,4365,45100,0.083002992,0.110566853,0.075830444,0.063664686,0.087996202,0.014523282,0.009571648,0.019474915,0.011308204,0.006738362,0.015878047,0.8124711,47441,58391,0.797112137,0.827830063,,,,,,,0.712013165,0.601424786,0.822601544,0.74028169,0.663477824,0.817085556,0.739466772,0.728822939,0.750110606,0.401,,58391,0.374491035,0.427508965,75.93794156,,,75.42169379,76.45418932,,,,,,,73.67459238,71.72903414,75.62015062,89.31260997,79.30702154,99.31819841,75.50221438,74.93049445,76.07393432,,,,448.9499077,2023,343686,428.5886342,469.3111812,,,,,,,489.9076994,404.2397343,575.5756646,236.3245627,155.7393759,343.8398311,464.7985251,442.2690429,487.3280072,,,,54.80202768,68,124083,42.55591882,69.4746284,,,,,,,80.32128514,40.09609615,143.7169661,,,,57.08315831,42.7592027,74.66617654,,,,6.189967983,58,9370,4.700302207,8.001969023,,,,,,,,,,,,,5.995538204,4.339000727,8.075950615,,,,,,,0.115,,,0.098,0.134,0.176,,,0.153,0.204,0.092,,,0.078,0.108,132.1,139,105263,,,0.113,13820,,,,0.076862536,8233.361081,107118,,,27.98422121,104,371638,22.60582704,33.36261537,,,,,,,,,,,,,31.90291098,25.90032524,38.87942988,,,,0.324,,,0.308,0.34,0.100019235,7280,72786,0.085721362,0.114317107,0.046906121,1413,30124,0.033799738,0.060012504,0.000588896,75,127357,,,1698.093333,0.911473966,1190.385,1306,,,0.088033473,526,5975,0.049395639,0.126671306,3.195947105,,,,,,3.537185136,2.812656975,3.061893927,3.254677649,3.100972003,,,,,,3.451735196,2.761625357,2.75659806,3.193081067,0.074966349,,,,,-696.806825,,,,,0.78633897,47384,60259,0.731480668,0.841197273,70330,,,63869.74468,76790.25532,83689,54126.95745,113251.0426,,,,67148,55304.59575,78991.40426,68048,55978.21277,80117.78723,75460,71561.44681,79358.55319,,,,,,0.4128464,8015,19414,,,42.55730551,,,,,0.217332575,,70330,,,7.608383577,53,6966,,,3.771161223,32,848545,2.579471485,5.323754436,,,,,,,,,,,,,3.790250353,2.497798866,5.514615268,,,,22.56723245,143,612382,18.77803639,26.3564285,23.3514375,,,,,,,,,,,,,24.86048011,20.47765822,29.24330199,,,,19.43231512,119,612382,15.94085461,22.92377564,,,,,,,,,,,,,21.17572321,17.18195878,25.16948765,,,,13.90615701,118,848545,11.3970326,16.41528142,,,,,,,19.4604952,10.36189409,33.27803946,,,,14.17834391,11.41317993,16.94350789,,,,16.76470588,,13600,,,228,,0.627924154,56959,90710,,,0.643,,,,,60.39935742,,,,,0.782234602,37911,48465,0.765764626,0.798704579,0.08904415,4193,47089,0.075109425,0.102978876,0.871598061,42242,48465,0.854255319,0.888940802,127357,,,,,0.227541478,28979,127357,,,0.187425897,23870,127357,,,0.09541682,12152,127357,,,0.006391482,814,127357,,,0.014204166,1809,127357,,,0.000628156,80,127357,,,0.058803207,7489,127357,,,0.811105789,103300,127357,,,0.008950631,1047,116975,0.006366035,0.011535226,0.50951263,64890,127357,,,0.367618461,45370,123416,, -05,127,05127,AR,Scott County,2024,1,14158.51861,237,27389,11333.04269,16983.99453,0,,,,2,,,,2,,,,2,,,,2,14764.9303,11596.07268,17933.78792,,,,,2,,0.227,,,0.195,0.264,4.807715412,,,3.782424023,5.892163353,6.023766085,,,4.776435442,7.317324304,0.086801427,73,841,0.067772946,0.105829908,0,,,,,,,,,,,,,0.087201125,0.066462982,0.107939268,,,,,,,0.238,,,0.195,0.286,0.395,,,0.315,0.48,5.3,0.208100978,0.157,,,0.33,,,0.275,0.389,0.460349736,4528,9836,,,0.140612651,,,0.11098582,0.1755534,0.142857143,2,14,0.031645086,0.307569357,142.5,14,9822,,,53.0191458,108,2037,43.01967722,63.01861438,,,,,,,,,,43.32129964,22.38474769,75.67359223,60.90373281,49.15717271,74.61118731,,,,,,,0.104583602,810,7745,0.087902751,0.121264453,0.000203625,2,9822,,,4911,0.000101989,1,9805,,,9805,0.000305966,3,9805,,,3268.333333,3010,,,,,,,,,3100,0.37,,,,,,,,,0.38,0.31,,,,,,0.21,,,0.31,0.83832682,5792,6909,0.806385833,0.870267807,0.569014085,1212,2130,0.447599222,0.690428947,0.028132388,119,4230,,,0.311,680,,0.200191489,0.421808511,,,,,,,,,,,,,0.332193732,0.237900359,0.426487105,3.731114537,82286,22054,2.634392772,4.827836303,0.296118622,679,2293,0.162187235,0.430050009,11.1993484,11,9822,,,113.6564049,58,51031,86.30407337,146.9272594,,,,,,,,,,,,,128.2709082,96.63120242,166.9622183,,,,8.6,,,,,0,,,,,0.133657351,550,4115,0.093849926,0.173464777,0.080914904,0.046355241,0.115474567,0.040097205,0.011720866,0.068473545,0.030376671,0.014984055,0.045769287,0.832715592,3370,4047,0.785056588,0.880374596,,,,,,,,,,,,,0.824313726,0.754373148,0.894254303,0.41,,4047,0.316568695,0.503431305,71.4708402,,,69.55473004,73.38695037,,,,,,,,,,,,,70.5847671,68.50332326,72.66621095,,,,635.2899733,237,27389,548.1149432,722.4650034,,,,,,,,,,,,,674.7460027,577.8533345,771.6386709,,,,136.2530414,14,10275,74.49080561,228.6094513,,,,,,,,,,,,,152.8273052,78.96809869,266.9585462,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.145,,,0.125,0.166,0.198,,,0.172,0.227,0.11,,,0.094,0.127,,,,,,0.157,1560,,,,0.208100978,2337.598283,11233,,,,,,,,,,,,,,,,,,,,,,,,,,0.352,,,0.336,0.366,0.128903413,710,5508,0.106265115,0.151541711,0.046075085,108,2344,0.030585724,0.061564447,0.000611933,6,9805,,,1634.166667,0.933510638,131.625,141,,,,,,,,2.700204709,,,,,,,,2.388104876,2.786563968,2.648165109,,,,,,,,2.400235671,2.69122637,0.042623517,,,,,-3408.9455,,,,,0.920306133,35233,38284,0.792305295,1.048306971,42599,,,36468.78723,48729.21277,,,,,,,,,,53320,25999.14894,80640.85106,44607,36255.85106,52958.14894,,,,,,0.728992521,1657,2273,,,,,,,,0.273316275,,42599,,,8.45665962,4,473,,,,,,,,,,,,,,,,,,,,,,,,,,23.45810233,11,51031,11.24907188,43.1402854,21.55552507,,,,,,,,,,,,,27.00467856,12.34825863,51.26329172,,,,,,,,,,,,,,,,,,,,,,,,,,,38.98581195,28,71821,25.90578891,56.34535295,,,,,,,,,,,,,46.36298909,30.80786955,67.00742792,,,,0,,1100,,,0,,0.457603093,3551,7760,,,0.447,,,,,4.689737524,,,,,0.742630095,2897,3901,0.696748231,0.788511959,0.102847664,372,3617,0.06273199,0.142963338,0.732376314,2857,3901,0.670083504,0.794669123,9805,,,,,0.229576747,2251,9805,,,0.214584396,2104,9805,,,0.008567058,84,9805,,,0.02763896,271,9805,,,0.030086691,295,9805,,,0.001121877,11,9805,,,0.085160632,835,9805,,,0.828046915,8119,9805,,,0.017605634,165,9372,0.00372704,0.031484228,0.490464049,4809,9805,,,1,9836,9836,, -05,129,05129,AR,Searcy County,2024,1,11985.2316,187,20970,8800.439221,15170.02397,0,,,,2,,,,2,,,,2,,,,2,12881.26594,9420.166856,16342.36501,,,,,2,,0.247,,,0.207,0.29,5.100844079,,,4.081554684,6.233677143,6.240145783,,,4.998105267,7.560610549,0.068222621,38,557,0.047283967,0.089161275,0,,,,,,,,,,,,,0.066413662,0.045153982,0.087673342,,,,,,,0.262,,,0.21,0.319,0.39,,,0.307,0.478,5.1,0.146403971,0.199,,,0.347,,,0.285,0.415,0.200051099,1566,7828,,,0.12542302,,,0.097635429,0.15745499,0.210526316,4,19,0.095274272,0.345173375,253.8,20,7880,,,33.53867214,49,1461,24.81209428,44.33990321,,,,,,,,,,,,,32.25806452,23.34532124,43.45140121,,,,,,,0.110407395,645,5842,0.092535054,0.128279735,0.000253807,2,7880,,,3940,0.000378884,3,7918,,,2639.333333,0.002147007,17,7918,,,465.7647059,2897,,,,,,,,,2933,0.37,,,,,,,,,0.37,0.18,,,,,,,,,0.18,0.81984653,4701,5734,0.777943649,0.861749411,0.479435236,781,1629,0.358108008,0.600762465,0.044869565,129,2875,,,0.309,483,,0.197,0.421,,,,,,,,,,,,,0.408856089,0.298884092,0.518828085,5.327735154,88190,16553,4.003829456,6.651640851,0.136477987,217,1590,0.063978535,0.20897744,5.076142132,4,7880,,,113.9269349,45,39499,83.09908805,152.4432024,,,,,,,,,,,,,117.5184477,85.04868328,158.2965778,,,,7.8,,,,,0,,,,,0.109737249,355,3235,0.071552082,0.147922416,0.079662605,0.041780845,0.117544366,0.004327666,0,0.014450861,0.027820711,0.008265104,0.047376318,0.809774965,2303,2844,0.753928537,0.865621393,,,,,,,,,,,,,0.776682135,0.708438253,0.844926017,0.432,,2844,0.326185279,0.537814721,73.6303198,,,71.39197088,75.86866872,,,,,,,,,,,,,72.69124839,70.33968208,75.0428147,,,,552.9850177,187,20970,462.4728352,643.4972002,,,,,,,,,,,,,584.3771916,487.1729046,681.5814787,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.157,,,0.134,0.183,0.209,,,0.179,0.241,0.118,,,0.1,0.138,73.6,5,6789,,,0.199,1570,,,,0.146403971,1199.780542,8195,,,,,,,,,,,,,,,,,,,,,,,,,,0.352,,,0.334,0.367,0.132216015,568,4296,0.109577717,0.154854313,0.051361386,83,1616,0.033489046,0.069233727,0.001010356,8,7918,,,989.75,,,,,,,,,,,3.364858531,,,,,,,,,3.402970947,3.251175159,,,,,,,,,3.251640428,0.043341563,,,,,-2533.8967,,,,,0.96961764,38520,39727,0.719697232,1.219538049,38070,,,32486.68085,43653.31915,,,,,,,,,,,,,43229,36495.89362,49962.10638,,,,,,1,994,994,,,,,,,,0.305831363,,38070,,,7.712082262,3,389,,,,,,,,,,,,,,,,,,,,,,,,,,23.13223798,12,39499,11.09280725,42.54100924,30.38051596,,,,,,,,,,,,,24.87042162,11.92633387,45.73759086,,,,27.8488063,11,39499,13.90202377,49.8292071,,,,,,,,,,,,,30.06285871,15.00727075,53.79075844,,,,30.72196621,17,55335,17.89667746,49.18884398,,,,,,,,,,,,,31.12053372,17.78807394,50.53779705,,,,,,700,,,,,0.635917722,4019,6320,,,0.434,,,,,7.293752457,,,,,0.733039349,2161,2948,0.69893825,0.767140447,0.100975976,269,2664,0.053247608,0.148704344,0.719810041,2122,2948,0.674987915,0.764632167,7918,,,,,0.20068199,1589,7918,,,0.255493812,2023,7918,,,0.004041425,32,7918,,,0.014271281,113,7918,,,0.003788836,30,7918,,,0.000631473,5,7918,,,0.033720637,267,7918,,,0.920181864,7286,7918,,,0.00253232,19,7503,0,0.014648165,0.488886082,3871,7918,,,1,7828,7828,, -05,131,05131,AR,Sebastian County,2024,1,10931.03443,2412,357470,10293.14756,11568.92129,0,,,,2,5907.009306,4013.526235,8384.528198,,14101.44658,11297.39988,16905.49329,,5591.825926,4428.777792,6754.874061,,12391.8168,11549.19996,13234.43364,,,,,2,,0.214,,,0.184,0.248,4.656778811,,,3.832437537,5.532377187,5.903569658,,,4.976653473,6.847310768,0.083369219,968,11611,0.078340917,0.088397521,0,0.082125604,0.044723002,0.119528206,0.068181818,0.04462972,0.091733917,0.144721234,0.120971308,0.16847116,0.076505017,0.065852856,0.087157178,0.079446162,0.073300625,0.085591699,,,,0.082397004,0.049414504,0.115379503,0.202,,,0.164,0.244,0.386,,,0.329,0.444,6.7,0.05492114,0.166,,,0.318,,,0.274,0.367,0.657430809,84019,127799,,,0.13526819,,,0.108650877,0.167689294,0.219178082,16,73,0.159827456,0.283080695,531.9,683,128400,,,31.42361111,905,28800,29.376281,33.47094122,33.07086614,20.47138738,50.55233187,,,,36.85503686,28.98882442,46.19810784,41.03273398,36.1108554,45.95461255,29.30993314,26.71736516,31.90250112,,,,24.375,17.33300781,33.32142742,0.131691204,13954,105960,0.116201843,0.147180566,0.001308411,168,128400,,,764.2857143,0.000790336,102,129059,,,1265.284314,0.003796713,490,129059,,,263.3857143,3222,,,,,882,2222,4618,1195,3214,0.47,,,,,0.49,0.26,0.46,0.25,0.48,0.49,,,,,0.58,0.44,0.34,0.3,0.5,0.850348771,73022,85873,0.836570087,0.864127455,0.581489303,18999,32673,0.54208282,0.620895786,0.030987851,1714,55312,,,0.198,5902,,0.133659575,0.262340426,0.163120567,0,0.509926519,0.3085554,0.166075891,0.451034909,0.316757832,0.209299892,0.424215772,0.380022637,0.316588085,0.44345719,0.117016819,0.084262146,0.149771492,4.400625853,109690,24926,4.016048727,4.785202978,0.258595705,7852,30364,0.22247256,0.294718851,9.968847352,128,128400,,,79.88406649,511,639677,72.95769492,86.81043806,,,,37.75657308,18.84794524,67.55693867,82.42858152,57.41452722,114.638203,36.93424649,25.72605595,51.366596,95.33040289,86.20230081,104.458505,,,,9.8,,,,,1,,,,,0.129841422,6755,52025,0.113687543,0.145995302,0.092978868,0.079377708,0.106580029,0.032099952,0.023393642,0.040806262,0.013935608,0.008042848,0.019828368,0.811794692,46183,56890,0.795916658,0.827672725,0.921403509,0.842625073,1,0.828289937,0.769040298,0.887539575,0.825534552,0.772082109,0.878986995,0.785425556,0.715268738,0.855582374,0.855290854,0.840428737,0.870152972,0.179,,56890,0.16089093,0.197109071,74.20177411,,,73.70551296,74.69803525,,,,79.97515839,77.32710816,82.62320862,70.72307723,68.61556935,72.83058511,90.04245044,80.60432282,99.48057807,72.95743933,72.35966004,73.55521863,,,,541.985298,2412,357470,519.557899,564.412697,,,,319.7185508,247.270304,406.7603879,669.5885241,570.0176588,769.1593894,267.7364022,214.2324021,321.2404023,601.7911329,573.8741757,629.7080901,,,,66.21876,89,134403,53.17910176,81.48788226,,,,,,,99.25558313,47.59691014,182.5345513,31.75611305,15.22829056,58.40062255,78.4570121,59.87096561,100.9897266,,,,5.93773857,70,11789,4.628758513,7.501975471,,,,,,,,,,,,,5.838641189,4.242365626,7.838103275,,,,,,,0.138,,,0.119,0.16,0.188,,,0.164,0.214,0.113,,,0.097,0.131,198.7,212,106704,,,0.166,21250,,,,0.05492114,6906.003836,125744,,,17.71677649,68,383817,13.75777018,22.46023578,,,,,,,,,,,,,23.24216815,17.778417,29.85553732,,,,0.355,,,0.342,0.368,0.161858107,12258,75733,0.140411298,0.183304915,0.059498298,1888,31732,0.042817447,0.076179149,0.001371466,177,129059,,,729.1468927,0.900579663,1390.495,1544,,,0.144451146,958,6632,0.091210025,0.197692267,3.0296078,,,,,,3.259355854,2.57825538,2.717138951,3.230922656,2.853530201,,,,,,3.024361838,2.450205428,2.492378447,3.114520762,0.147538228,,,,,-3983.5284,,,,,0.813534831,40536,49827,0.767521999,0.859547662,52679,,,48258.57447,57099.42553,42652,22562.29787,62741.70213,70109,55339.29787,84878.70213,38539,32230.06383,44847.93617,48247,39265.55319,57228.44681,56230,52443.44681,60016.55319,,,,,,0.657985768,13315,20236,,,54.46650204,,,,,0.290153572,,52679,,,7.974867086,66,8276,,,6.590337894,59,895250,5.016870553,8.501055723,,,,,,,18.63396124,9.302006314,33.34130389,,,,6.136881528,4.342822618,8.423349368,,,,18.71657009,120,639677,15.29296397,22.14017622,18.75946767,,,,,,,,,,,,,22.06353426,17.74168703,27.11982945,,,,16.57086311,106,639677,13.41623428,19.72549194,,,,,,,23.55102329,11.29363109,43.31117035,,,,19.33910321,15.44738877,23.91310061,,,,13.85087964,124,895250,11.41294205,16.28881724,,,,,,,,,,9.223532305,4.765933736,16.11165474,16.14968823,12.98434934,19.31502712,,,,16.35036496,,13700,,,224,,0.515078671,47140,91520,,,0.646,,,,,97.98227202,,,,,0.600979523,31168,51862,0.581859423,0.620099622,0.111602606,5601,50187,0.096396042,0.126809171,0.821160002,42587,51862,0.802070553,0.840249451,129059,,,,,0.235961847,30453,129059,,,0.171316995,22110,129059,,,0.065652144,8473,129059,,,0.026088843,3367,129059,,,0.047404675,6118,129059,,,0.002440744,315,129059,,,0.15778055,20363,129059,,,0.675853679,87225,129059,,,0.034169666,4102,120048,,,0.505768679,65274,129059,,,0.196746453,25144,127799,, -05,133,05133,AR,Sevier County,2024,1,11034.53428,307,46391,9219.853509,12849.21505,0,,,,2,,,,2,,,,2,6638.406211,4510.474946,9422.687722,,13824.58995,10887.95586,16761.22404,,,,,2,,0.265,,,0.232,0.3,5.19327596,,,4.213908222,6.261185429,6.036489318,,,4.919460918,7.238605301,0.069739953,118,1692,0.057603301,0.081876605,0,,,,,,,,,,0.062240664,0.044630243,0.079851085,0.07480315,0.056124065,0.093482235,,,,,,,0.231,,,0.193,0.272,0.425,,,0.349,0.502,5.9,0.133954016,0.168,,,0.37,,,0.317,0.425,0.375655029,5950,15839,,,0.136325454,,,0.107012377,0.170965681,0.45,9,20,0.336869521,0.553114298,367.5,58,15783,,,42.21105528,168,3980,35.82801419,48.59409637,,,,,,,,,,34.01015228,26.35740088,43.19169118,50.32953865,40.14481111,62.31139351,,,,,,,0.196088716,2617,13346,0.16987595,0.222301482,0.000443515,7,15783,,,2254.714286,0.000255005,4,15686,,,3921.5,0.000701262,11,15686,,,1426,2268,,,,,,,,,2518,0.33,,,,,,,0.31,0.14,0.34,0.41,,,,,,,0.26,0.22,0.42,0.735276136,7216,9814,0.699050993,0.77150128,0.343371943,1334,3885,0.284616222,0.402127665,0.03880103,211,5438,,,0.266,1160,,0.183787234,0.348212766,,,,,,,0.388297872,0.25564474,0.520951005,0.263631816,0.154689213,0.372574419,0.258433079,0.153457616,0.363408543,5.725938363,105718,18463,3.809289661,7.642587066,0.229522753,1034,4505,0.140621337,0.318424168,9.503896598,15,15783,,,75.22747355,63,83746,57.8068562,96.24861759,,,,,,,,,,45.41643376,24.18233822,77.6634849,95.52517619,69.676719,127.8202015,,,,9.5,,,,,0,,,,,0.146748682,835,5690,0.100280454,0.19321691,0.068388246,0.041448064,0.095328428,0.077328647,0.03888834,0.115768953,0.014938489,0,0.031949764,0.729163549,4873,6683,0.65638737,0.801939729,,,,,,,,,,0.736119061,0.517096982,0.955141141,0.749312137,0.685981079,0.812643195,0.301,,6683,0.23362025,0.368379751,73.27372182,,,71.90540977,74.64203387,,,,,,,,,,85.58452352,73.98045141,97.18859563,71.03544418,69.12135241,72.94953595,,,,563.4768112,307,46391,498.7138789,628.2397434,,,,,,,,,,337.4648769,236.356251,467.1936357,656.8826119,567.3147365,746.4504872,,,,67.60998696,14,20707,36.96300901,113.4380698,,,,,,,,,,,,,115.5268022,55.39959215,212.4579025,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.158,,,0.138,0.18,0.197,,,0.173,0.223,0.129,,,0.112,0.148,151,19,12586,,,0.168,2690,,,,0.133954016,2284.987598,17058,,,,,,,,,,,,,,,,,,,,,,,,,,0.339,,,0.326,0.351,0.242119383,2166,8946,0.207566192,0.276672575,0.10442287,484,4635,0.071061167,0.137784572,0.001466276,23,15686,,,682,0.939257028,233.875,249,,,,,,,,3.164105201,,,,,,,,3.140021957,3.303287212,2.94624865,,,,,,,,2.831707847,3.139469565,0.074301277,,,,,-6559.0735,,,,,0.687303925,32205,46857,0.491561078,0.883046772,49384,,,42158.80851,56609.19149,,,,,,,,,,55382,52313.91489,58450.08511,53721,49671.12766,57770.87234,,,,,,0.801320132,2428,3030,,,34.64754909,,,,,0.23576462,,49384,,,5.654281099,7,1238,,,,,,,,,,,,,,,,,,,,,,,,,,17.00146814,14,83746,9.294860837,28.52557465,16.71721635,,,,,,,,,,,,,26.33531893,13.60784359,46.00250229,,,,17.91130323,15,83746,10.02482045,29.54197081,,,,,,,,,,,,,29.7189437,16.24762307,49.8633377,,,,37.30520747,44,117946,27.10602086,50.08049979,,,,,,,,,,25.10922513,12.04084944,46.17675901,41.77358716,27.75824529,60.37446432,,,,3.636363636,,2200,,,8,,0.51555996,5202,10090,,,0.532,,,,,14.42376846,,,,,0.65000902,3603,5543,0.611717766,0.688300275,0.084242772,440,5223,0.050490334,0.117995211,0.77593361,4301,5543,0.724780928,0.827086292,15686,,,,,0.28228994,4428,15686,,,0.146372562,2296,15686,,,0.035828127,562,15686,,,0.039206936,615,15686,,,0.007012623,110,15686,,,0.014025245,220,15686,,,0.3485911,5468,15686,,,0.548833355,8609,15686,,,0.088161551,1301,14757,0.066152833,0.110170268,0.490947342,7701,15686,,,0.627880548,9945,15839,, -05,135,05135,AR,Sharp County,2024,1,11044.5935,435,46474,9203.651499,12885.53551,0,,,,2,,,,2,,,,2,,,,2,11611.97026,9637.513564,13586.42695,,,,,2,,0.244,,,0.207,0.285,5.204113814,,,4.176753046,6.334420214,6.335880954,,,5.194656781,7.595952978,0.100308642,130,1296,0.083952928,0.116664357,0,,,,,,,,,,,,,0.10375817,0.086674187,0.120842153,,,,,,,0.26,,,0.213,0.317,0.4,,,0.323,0.483,5.1,0.179947786,0.182,,,0.344,,,0.288,0.407,0.429332407,7415,17271,,,0.122721201,,,0.096110651,0.154096901,0.225806452,7,31,0.133616464,0.327772988,238.3,42,17622,,,38.77612845,128,3301,32.05850692,45.49374997,,,,,,,,,,,,,39.20243325,32.06831834,46.33654817,,,,,,,0.113562277,1498,13191,0.096881426,0.130243128,0.000226989,4,17622,,,4405.5,0.000280741,5,17810,,,3562,0.002133633,38,17810,,,468.6842105,2839,,,,,,,,,2832,0.33,,,,,,,,,0.33,0.33,,,,,,,,,0.33,0.845769566,10666,12611,0.819107463,0.87243167,0.523781903,1806,3448,0.429941889,0.617621916,0.041252996,241,5842,,,0.276,998,,0.178297872,0.373702128,,,,,,,0.246153846,0,0.863122689,0.669064748,0.560365909,0.777763587,0.212717142,0.130816501,0.294617783,4.0842177,83898,20542,3.374655857,4.793779543,0.233111849,842,3612,0.152637272,0.313586427,13.61933946,24,17622,,,115.7632927,101,87247,93.18629154,138.3402939,,,,,,,,,,,,,121.879155,99.05736305,148.383498,,,,8.2,,,,,0,,,,,0.138072454,1010,7315,0.103044217,0.173100691,0.104172462,0.074579458,0.133765465,0.022556391,0.008077069,0.037035713,0.016404648,0.002315182,0.030494114,0.77960103,4846,6216,0.727119251,0.832082808,,,,,,,,,,,,,0.847930703,0.781428243,0.914433163,0.319,,6216,0.254461298,0.383538702,73.6890875,,,72.39069313,74.98748187,,,,,,,,,,,,,73.04098627,71.68741548,74.39455706,,,,575.2060574,435,46474,514.3344421,636.0776727,,,,,,,,,,,,,599.4064042,535.1062822,663.7065261,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.158,,,0.135,0.182,0.21,,,0.182,0.241,0.115,,,0.098,0.133,79.8,12,15041,,,0.182,3140,,,,0.179947786,3106.618569,17264,,,20.95717116,11,52488,10.46174434,37.49816818,,,,,,,,,,,,,22.57428994,11.2690042,40.39164036,,,,0.353,,,0.335,0.368,0.138158584,1319,9547,0.115520286,0.160796882,0.051028378,196,3841,0.034347527,0.067709229,0.001179113,21,17810,,,848.0952381,0.945,212.625,225,,,,,,,,2.919545635,,,,,,,,,2.940700685,2.910175904,,,,,,,,,2.901215183,0.035531345,,,,,-2837.7725,,,,,0.719544019,31434,43686,0.625586293,0.813501744,45740,,,39447.74468,52032.25532,,,,,,,,,,13839,1696.531915,25981.46809,43483,40401.80851,46564.19149,,,,,,0.900525394,2571,2855,,,69.01000776,,,,,0.254547442,,45740,,,12.67281106,11,868,,,8.242935804,10,121316,3.952808118,15.15905243,,,,,,,,,,,,,,,,,,,28.32139609,23,87247,17.2994445,43.74009926,26.36193795,,,,,,,,,,,,,30.63466158,18.44406747,47.83981884,,,,27.50810916,24,87247,17.62496459,40.92988595,,,,,,,,,,,,,28.31535924,17.94950884,42.48694157,,,,35.44462396,43,121316,25.65145011,47.74367586,,,,,,,,,,,,,37.13133885,26.76100302,50.19078328,,,,70.58823529,,1700,,,120,,0.556528135,7566,13595,,,0.529,,,,,9.683822841,,,,,0.802347486,5537,6901,0.779658502,0.82503647,0.092491674,611,6606,0.063449865,0.121533483,0.670772352,4629,6901,0.631459876,0.710084828,17810,,,,,0.207467715,3695,17810,,,0.255699046,4554,17810,,,0.010050533,179,17810,,,0.011173498,199,17810,,,0.005053341,90,17810,,,0.001403706,25,17810,,,0.027231892,485,17810,,,0.925547445,16484,17810,,,0.000907716,15,16525,0,0.006431424,0.506737788,9025,17810,,,1,17271,17271,, -05,137,05137,AR,Stone County,2024,1,11000.87137,278,32935,8642.577419,13359.16532,0,,,,2,,,,2,,,,2,,,,2,11327.10052,8838.783967,13815.41707,,,,,2,,0.245,,,0.206,0.287,5.15853845,,,4.165353212,6.237298673,6.542292479,,,5.387071349,7.809333436,0.078362573,67,855,0.060348687,0.096376459,0,,,,,,,,,,,,,0.077018634,0.058600208,0.095437059,,,,,,,0.254,,,0.204,0.305,0.409,,,0.333,0.486,5.5,0.108406953,0.196,,,0.353,,,0.291,0.415,0.500040456,6180,12359,,,0.126704447,,,0.099541593,0.158202329,0.2,3,15,0.07369192,0.354373303,160.2,20,12481,,,40.32604033,94,2331,32.58754543,49.34886046,,,,,,,,,,,,,39.81481482,31.84671261,49.1709724,,,,,,,0.129764167,1161,8947,0.109508848,0.150019486,0.000480731,6,12481,,,2080.166667,0.000238569,3,12575,,,4191.666667,0.001510934,19,12575,,,661.8421053,2529,,,,,,,,,2540,0.29,,,,,,,,,0.29,0.46,,,,,,,,,0.46,0.861343612,7821,9080,0.822945651,0.899741574,0.551276685,1317,2389,0.420768265,0.681785104,0.0416122,191,4590,,,0.311,750,,0.206148936,0.415851064,,,,,,,,,,0.871212121,0.182967514,1,0.248618785,0.172047633,0.325189936,4.987354451,79668,15974,4.006793855,5.967915047,0.452914798,1111,2453,0.266054596,0.639775001,11.21704992,14,12481,,,100.5506344,63,62655,77.26586832,128.6479408,,,,,,,,,,,,,103.0109597,78.79522191,132.3218872,,,,8.1,,,,,0,,,,,0.152106886,740,4865,0.1011009,0.203112872,0.107438017,0.059582898,0.155293135,0.02672148,0.005019578,0.048423382,0.019527235,0.004927284,0.034127187,0.799014523,3081,3856,0.734179651,0.863849395,,,,,,,,,,,,,0.76799441,0.698725754,0.837263065,0.38,,3856,0.281494738,0.478505262,74.75349315,,,73.0158739,76.49111241,,,,,,,,,,,,,74.2991031,72.50030258,76.09790363,,,,511.3511989,278,32935,442.104834,580.5975638,,,,,,,,,,,,,522.2153263,450.3712425,594.0594102,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.159,,,0.135,0.184,0.217,,,0.187,0.248,0.117,,,0.099,0.135,111.2,12,10790,,,0.196,2430,,,,0.108406953,1343.595775,12394,,,,,,,,,,,,,,,,,,,,,,,,,,0.362,,,0.345,0.379,0.153363914,1003,6540,0.128342638,0.178385191,0.067803331,171,2522,0.045165033,0.090441629,0.000636183,8,12575,,,1571.875,0.925,91.575,99,,,,,,,,3.24181038,,,,,,,,,3.257297722,3.222497046,,,,,,,,,3.263928109,0.054094105,,,,,-4055.435,,,,,0.814696486,31875,39125,0.516623636,1.112769335,41063,,,35278.31915,46847.68085,28611,15212.70213,42009.29787,,,,,,,,,,37926,28821.82979,47030.17021,,,,,,1,1580,1580,,,,,,,,0.283539927,,41063,,,9.74025974,6,616,,,,,,,,,,,,,,,,,,,,,,,,,,42.53700432,23,62655,26.33107611,65.02232962,36.70896178,,,,,,,,,,,,,45.37195429,28.08595482,69.35585179,,,,30.32479451,19,62655,18.25750725,47.35592303,,,,,,,,,,,,,32.08538089,19.31749525,50.10529674,,,,23.95892755,21,87650,14.83095378,36.62376581,,,,,,,,,,,,,22.91862681,13.79851049,35.79027475,,,,,,1200,,,,,0.588503469,5938,10090,,,0.473,,,,,0.039008716,,,,,0.723102938,3421,4731,0.684854275,0.761351602,0.107721192,459,4261,0.059605832,0.155836553,0.592686536,2804,4731,0.529031676,0.656341396,12575,,,,,0.19554672,2459,12575,,,0.278409543,3501,12575,,,0.005168986,65,12575,,,0.010815109,136,12575,,,0.005168986,65,12575,,,0.000318092,4,12575,,,0.02139165,269,12575,,,0.940755467,11830,12575,,,0,0,11762,0,0.008103992,0.50361829,6333,12575,,,1,12359,12359,, -05,139,05139,AR,Union County,2024,1,15068.3716,919,106412,13594.23581,16542.50739,0,,,,2,,,,2,21172.2355,18154.67281,24189.7982,,,,,2,12609.1018,10871.8861,14346.3175,,,,,2,,0.23,,,0.2,0.263,4.569808684,,,3.729775056,5.506006699,6.079746459,,,5.064960979,7.197959978,0.099110157,323,3259,0.088851067,0.109369246,0,,,,,,,0.149758454,0.129912951,0.169603957,0.07253886,0.035944796,0.109132924,0.067164179,0.055409698,0.07891866,,,,,,,0.211,,,0.174,0.253,0.39,,,0.321,0.459,6.5,0.122015618,0.146,,,0.333,,,0.283,0.388,0.559993855,21870,39054,,,0.128546297,,,0.101286452,0.15931263,0.235294118,12,51,0.163289696,0.312600154,777.3,298,38340,,,39.42115769,316,8016,35.07463547,43.76767991,,,,,,,49.66571156,41.87189043,57.45953268,39.3258427,24.34331645,60.11372797,31.14355231,25.74820714,36.53889748,,,,66.66666667,33.2797598,119.2850819,0.105192245,3201,30430,0.090894372,0.119490117,0.000625978,24,38340,,,1597.5,0.000450307,17,37752,,,2220.705882,0.001880695,71,37752,,,531.7183099,3070,,,,,,,3428,,3024,0.31,,,,,,,0.27,,0.32,0.44,,,,,,0.5,0.35,0.5,0.46,0.872003926,23102,26493,0.854693749,0.889314103,0.535868626,4960,9256,0.468690819,0.603046432,0.047911051,711,14840,,,0.234,2071,,0.151787234,0.316212766,,,,,,,0.369768894,0.264881521,0.474656268,0.516566265,0.302342466,0.730790064,0.108503191,0.064343266,0.152663117,5.350644202,107976,20180,4.548123713,6.153164691,0.296516018,2749,9271,0.230071332,0.362960703,19.82263954,76,38340,,,116.6054402,226,193816,101.4027423,131.8081381,,,,,,,115.0802409,90.20453845,144.6961254,,,,125.1085125,104.8837111,145.3333138,,,,9.1,,,,,1,,,,,0.156417534,2480,15855,0.128384223,0.184450845,0.112366807,0.085502547,0.139231067,0.050772627,0.030826338,0.070718916,0.005045727,0.001048073,0.009043381,0.856266049,13672,15967,0.831756195,0.880775902,,,,,,,0.861272837,0.820721652,0.901824022,,,,0.861998292,0.834496644,0.88949994,0.218,,15967,0.181102285,0.254897715,70.77122916,,,69.78810707,71.75435125,,,,,,,66.29251479,64.52234129,68.0626883,,,,72.60324248,71.39525564,73.81122933,,,,666.9703157,919,106412,621.3545331,712.5860984,,,,,,,872.5669637,779.3551039,965.7788234,,,,590.7155613,536.8001651,644.6309574,,,,99.27529038,40,40292,70.92372293,135.1847686,,,,,,,142.1031263,87.96407487,217.2197235,,,,80.8023195,47.07032877,129.372341,,,,9.997059688,34,3401,6.92325445,13.96988888,,,,,,,17.66513057,11.19817745,26.50636935,,,,,,,,,,,,,0.139,,,0.122,0.16,0.195,,,0.17,0.221,0.117,,,0.102,0.135,341.7,109,31901,,,0.146,5730,,,,0.122015618,5080.608318,41639,,,23.4291615,27,115241,15.43996506,34.0881999,,,,,,,,,,,,,34.42340792,22.05572699,51.21930234,,,,0.376,,,0.362,0.389,0.125847812,2709,21526,0.106783982,0.144911642,0.057867152,541,9349,0.041186301,0.074548003,0.001112524,42,37752,,,898.8571429,0.907419355,478.21,527,,,,,,,,2.735673973,,,,,,,2.443048489,2.740608645,3.065008497,2.529256753,,,,,,,2.160732144,2.847843842,2.823896416,0.105654077,,,,,-5752.15714,,,,,0.621099324,36125,58163,0.526230779,0.71596787,50258,,,44003.87234,56512.12766,56471,18568.53192,94373.46809,61414,46562.08511,76265.91489,33736,28051.40426,39420.59575,,,,63121,55199.97872,71042.02128,,,,,,0.820371645,5960,7265,,,43.85107162,,,,,0.231664611,,50258,,,11.14206128,28,2513,,,14.97186385,41,273847,10.74406799,20.31102388,,,,,,,36.86738912,25.37781429,51.77552147,,,,,,,,,,16.39212081,30,193816,10.97806057,23.54181982,15.47859826,,,,,,,,,,,,,19.95783508,12.35421447,30.50767094,,,,26.82957031,52,193816,20.03760639,35.18341197,,,,,,,42.56392471,28.04989459,61.92827576,,,,21.27695791,13.76932531,31.40898713,,,,24.46621654,67,273847,18.96098176,31.07123015,,,,,,,18.99229136,11.06370961,30.40849829,,,,27.05530104,19.73432223,36.20212143,,,,,,4200,,,,,0.568927715,16607,29190,,,0.569,,,,,32.20589469,,,,,0.727443106,10868,14940,0.700042505,0.754843706,0.131764374,1870,14192,0.105872685,0.157656064,0.765394913,11435,14940,0.736135531,0.794654295,37752,,,,,0.237417885,8963,37752,,,0.194638695,7348,37752,,,0.325307269,12281,37752,,,0.004714982,178,37752,,,0.008794236,332,37752,,,0.000609239,23,37752,,,0.042805679,1616,37752,,,0.604974571,22839,37752,,,0.007917158,289,36503,0.002810095,0.01302422,0.510489511,19272,37752,,,0.521227019,20356,39054,, -05,141,05141,AR,Van Buren County,2024,1,10343.80312,372,43007,8390.714045,12296.8922,0,,,,2,,,,2,,,,2,,,,2,10825.09871,8737.233685,12912.96373,,,,,2,,0.23,,,0.194,0.269,4.912622989,,,3.934402046,5.965880298,6.413328305,,,5.215030901,7.656976265,0.069072165,67,970,0.053114118,0.085030212,0,,,,,,,,,,,,,0.069306931,0.052796223,0.085817639,,,,,,,0.246,,,0.198,0.296,0.399,,,0.318,0.478,6.3,0.067285463,0.179,,,0.334,,,0.276,0.394,0.422828564,6679,15796,,,0.124187529,,,0.095929846,0.154338656,0.227272727,5,22,0.117752454,0.350313422,172,27,15694,,,28.5899935,88,3078,22.93001081,35.22367162,,,,,,,,,,,,,28.64303616,22.71214629,35.64873791,,,,,,,0.125336576,1443,11513,0.107464236,0.143208917,0.000254875,4,15694,,,3923.5,0.000558937,9,16102,,,1789.111111,0.000807353,13,16102,,,1238.615385,2510,,,,,,,,,2527,0.4,,,,,,,,,0.4,0.34,,,,,,,,,0.33,0.844336817,9937,11769,0.801870723,0.886802911,0.399527984,1185,2966,0.311653994,0.487401974,0.042785235,255,5960,,,0.253,761,,0.163638298,0.342361702,,,,,,,,,,,,,0.195684524,0.120889988,0.27047906,4.660286329,88867,19069,3.882181044,5.438391613,0.26383943,815,3089,0.178809614,0.348869246,14.65528227,23,15694,,,120.8953584,99,81889,98.2577817,147.1857609,,,,,,,,,,,,,127.2548377,103.1951008,155.2401101,,,,8.6,,,,,1,,,,,0.10734072,775,7220,0.07650496,0.13817648,0.07966457,0.052583461,0.10674568,0.024930748,0.006988088,0.042873408,0.017313019,0.007891167,0.026734872,0.755219985,4051,5364,0.710039079,0.800400891,,,,,,,,,,,,,0.778664427,0.736324302,0.821004552,0.342,,5364,0.269858296,0.414141705,74.96849993,,,73.50035578,76.43664409,,,,,,,,,,,,,74.39970028,72.86542583,75.93397474,,,,517.8041276,372,43007,458.1759294,577.4323259,,,,,,,,,,,,,537.3091434,474.4676486,600.1506383,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.151,,,0.129,0.174,0.207,,,0.178,0.237,0.111,,,0.095,0.129,58.4,8,13695,,,0.179,2840,,,,0.067285463,1163.702077,17295,,,,,,,,,,,,,,,,,,,,,,,,,,0.339,,,0.321,0.354,0.145526285,1254,8617,0.122887987,0.168164583,0.068100358,209,3069,0.04665355,0.089547167,0.001304186,21,16102,,,766.7619048,0.911042945,148.5,163,,,,,,,,3.087492844,,,,,,,,,3.108817565,2.851535144,,,,,,,,,2.853518044,0.059363771,,,,,-4012.655333,,,,,0.684052922,34951,51094,0.539719882,0.828385962,47150,,,40323.95745,53976.04255,51450,50888.80851,52011.19149,,,,,,,120780,119463.4043,122096.5957,44208,38487.65957,49928.34043,,,,,,0.997256516,2181,2187,,,,,,,,0.246935313,,47150,,,11.52737752,8,694,,,,,,,,,,,,,,,,,,,,,,,,,,24.34761431,21,81889,14.18338257,38.98288909,25.64446995,,,,,,,,,,,,,25.97290971,15.13017704,41.58514449,,,,17.0963133,14,81889,9.346713571,28.68470872,,,,,,,,,,,,,18.3666776,10.04123355,30.81616415,,,,29.49136077,34,115288,20.42362465,41.21122068,,,,,,,,,,,,,30.70824377,21.13814203,43.12579145,,,,7.333333333,,1500,,,11,,0.592112249,7807,13185,,,0.44,,,,,7.834460325,,,,,0.791014196,5405,6833,0.752094199,0.829934193,0.101191397,654,6463,0.069134939,0.133247856,0.743011854,5077,6833,0.697410073,0.788613635,16102,,,,,0.19103217,3076,16102,,,0.26549497,4275,16102,,,0.008446156,136,16102,,,0.009750342,157,16102,,,0.005030431,81,16102,,,0.000434729,7,16102,,,0.036268787,584,16102,,,0.922618308,14856,16102,,,0.005063791,77,15206,0,0.01245466,0.496273755,7991,16102,,,1,15796,15796,, -05,143,05143,AR,Washington County,2024,1,7650.686336,2895,696914,7270.956998,8030.415673,0,,,,2,3878.310309,2334.996154,6056.461962,1,11117.16763,8744.35757,13935.46589,,5073.027307,4314.575505,5831.479108,,7945.257746,7471.048275,8419.467217,,21773.06968,17892.23489,25653.90447,,,0.195,,,0.167,0.228,4.034218326,,,3.284349836,4.809559776,5.725955219,,,4.866098823,6.566206401,0.077983896,1753,22479,0.074478482,0.08148931,0,0.067264574,0.034388793,0.100140355,0.083160083,0.058483345,0.107836821,0.137188209,0.114482336,0.159894082,0.074088146,0.067012643,0.081163649,0.071937265,0.06740705,0.07646748,0.097228533,0.084851064,0.109606001,0.070240296,0.048705738,0.091774854,0.179,,,0.143,0.218,0.334,,,0.286,0.383,7.5,0.053029343,0.134,,,0.27,,,0.229,0.313,0.817965519,201114,245871,,,0.163997597,,,0.133323243,0.195274008,0.208333333,25,120,0.162613014,0.257194098,675.4,1689,250057,,,22.23700747,1504,67635,21.11315709,23.36085784,12.59445844,6.039532363,23.16165748,,,,27.18446602,21.1916249,34.34593741,37.9678785,34.83713002,41.09862698,12.84212958,11.77465947,13.90959969,83.8650866,71.74715883,95.98301437,25.46201232,19.52157884,32.64115067,0.128397738,27246,212200,0.115291355,0.141504121,0.000799818,200,250057,,,1250.285,0.000628774,161,256054,,,1590.397516,0.004042116,1035,256054,,,247.3951691,2073,,,,,676,4187,369,1141,2063,0.44,,,,,0.53,0.29,0.44,0.22,0.45,0.49,,,,,0.53,0.4,0.38,0.28,0.5,0.870003703,131555,151212,0.860610784,0.879396623,0.654849508,45385,69306,0.625833136,0.68386588,0.023241417,3116,134071,,,0.144,8364,,0.103489362,0.184510638,0.006688963,0,0.092291955,0.345257022,0.241197256,0.449316787,0.222723174,0.123104664,0.322341684,0.268400204,0.213992052,0.322808357,0.087752907,0.066189015,0.109316799,4.572886458,124570,27241,4.278877623,4.866895293,0.211661479,12375,58466,0.185516478,0.237806479,7.918194652,198,250057,,,51.52249386,619,1201417,47.46360067,55.58138705,,,,,,,82.74922118,57.3062412,115.6337424,29.5468196,22.6009758,37.95412586,58.96316988,53.78964405,64.13669571,46.45688801,26.00156756,76.62357183,8,,,,,0,,,,,0.155171446,13825,89095,0.140678912,0.16966398,0.109286491,0.09754339,0.121029592,0.041809305,0.034147798,0.049470812,0.009989337,0.006499139,0.013479536,0.754956464,90172,119440,0.740980021,0.768932906,0.70166546,0.635290254,0.768040666,0.690169151,0.599536712,0.78080159,0.811409582,0.73701561,0.885803554,0.723565028,0.68053083,0.766599226,0.774911439,0.756340125,0.793482754,0.241,,119440,0.221313365,0.260686635,77.14534079,,,76.7820294,77.50865219,98.83626034,78.04544449,119.6270762,85.9977665,80.95507521,91.0404578,71.6870673,69.39092044,73.98321416,86.48934423,81.9799598,90.99872867,76.76269742,76.349551,77.17584384,63.55159583,61.36890339,65.73428826,401.9805899,2895,696914,387.1654663,416.7957136,,,,240.0604405,163.1094223,340.746633,518.974409,410.8769269,646.7969596,254.5295198,214.4717765,294.5872631,417.724944,400.5750633,434.8748246,1371.262152,1093.801968,1648.722337,50.04710316,136,271744,41.63575592,58.45845039,,,,,,,113.058225,58.41883464,197.4899665,47.71889234,32.8474898,67.01506655,44.79382224,34.9843468,56.50131171,105.8854672,54.71256604,184.9606022,6.619850606,148,22357,5.553319805,7.686381407,,,,,,,,,,5.403319182,3.590466356,7.809300645,6.172351033,4.878987355,7.703373431,9.863785815,6.105838884,15.0778444,,,,0.125,,,0.107,0.144,0.18,,,0.156,0.205,0.101,,,0.086,0.116,178.5,371,207873,,,0.134,32510,,,,0.053029343,10768.40346,203065,,,7.508942468,55,732460,5.656763096,9.773920757,,,,,,,,,,,,,9.54815779,7.063779697,12.62317096,,,,0.314,,,0.301,0.327,0.150328675,23029,153191,0.133647824,0.167009526,0.075795489,4695,61943,0.057923149,0.09366783,0.001034938,265,256054,,,966.2415094,0.899129188,2978.815,3313,,,0.05588004,995,17806,0.036270344,0.075489737,2.975105692,,,,,,2.576090544,2.76119186,2.723217925,3.286978665,2.85682783,,,,,,2.230635043,2.532044637,2.626228378,3.189728512,0.176078849,,,,,-1781.488039,,,,,0.8472326,44223,52197,0.784331548,0.910133651,62100,,,57381.70213,66818.29787,63967,49131.76596,78802.23404,67941,28907.80851,106974.1915,41000,25286.6383,56713.3617,57146,51777.14894,62514.85106,65326,62574.85106,68077.14894,,,,,,0.566808327,23607,41649,,,50.31601873,,,,,0.246135266,,62100,,,8.490566038,135,15900,,,3.262952259,54,1654943,2.451230162,4.257444903,,,,,,,17.87885289,8.573604906,32.87984703,3.918258014,1.955980283,7.010845921,2.643580534,1.796184715,3.75235155,,,,16.04279873,190,1201417,13.72105754,18.36453992,15.81465886,,,,,,,,,,8.282269995,3.039447118,18.02701497,18.22823746,15.30635358,21.15012134,,,,10.82055606,130,1201417,8.960465989,12.68064613,,,,,,,26.77180685,13.36438952,47.9021576,6.296863193,3.352814451,10.76782783,12.05259184,9.713558377,14.3916253,,,,13.41435929,222,1654943,11.64974611,15.17897247,,,,,,,23.24250876,12.37565703,39.74539784,12.11097932,8.387205244,16.92387968,13.98539379,11.84492526,16.12586232,,,,14.96183206,,26200,,,392,,0.57988435,94266,162560,,,0.648,,,,,72.3448497,,,,,0.545728879,51179,93781,0.533966513,0.557491245,0.119980552,10858,90498,0.107274881,0.132686223,0.86826756,81427,93781,0.856278335,0.880256784,256054,,,,,0.231076257,59168,256054,,,0.125735197,32195,256054,,,0.036625087,9378,256054,,,0.016562913,4241,256054,,,0.02661548,6815,256054,,,0.030825529,7893,256054,,,0.17593945,45050,256054,,,0.69403329,177710,256054,,,0.046069361,10671,231629,,,0.497055309,127273,256054,,,0.240012039,59012,245871,, -05,145,05145,AR,White County,2024,1,10968.94899,1450,218108,10130.47356,11807.42443,0,,,,2,,,,2,12259.49181,8631.813609,16898.09457,,,,,2,11346.86464,10431.82452,12261.90476,,,,,2,,0.213,,,0.179,0.248,4.745562072,,,3.830050877,5.719395158,6.230432371,,,5.204541641,7.327803819,0.082305845,514,6245,0.075489459,0.089122231,0,,,,,,,0.12539185,0.089050409,0.161733291,0.055882353,0.031466775,0.080297931,0.080710848,0.073446932,0.087974764,,,,,,,0.232,,,0.184,0.278,0.369,,,0.305,0.435,6.7,0.091191117,0.153,,,0.313,,,0.262,0.366,0.491356643,37747,76822,,,0.144029402,,,0.115057484,0.177591322,0.14084507,10,71,0.086478833,0.205348427,448.1,346,77207,,,25.61683257,543,21197,23.4621585,27.77150665,,,,,,,31.90428714,21.82250879,45.03933408,23.65308804,16.56633207,32.74584395,25.56416492,23.20738807,27.92094178,,,,30.62787136,18.70829952,47.30226325,0.114968825,7136,62069,0.099479463,0.130458187,0.000660562,51,77207,,,1513.862745,0.000347245,27,77755,,,2879.814815,0.002212076,172,77755,,,452.0639535,4667,,,,,,,6889,,4542,0.32,,,,,,,0.34,0.18,0.32,0.46,,,,,,0.55,0.35,0.21,0.46,0.863455564,43633,50533,0.847248232,0.879662896,0.525851747,9662,18374,0.47050994,0.581193554,0.035055996,1202,34288,,,0.192,3374,,0.128851064,0.255148936,,,,0.511627907,0.129259441,0.893996373,0.30974478,0.128774386,0.490715173,0.29227238,0.178216696,0.406328063,0.165708678,0.132272308,0.199145048,4.359772628,99708,22870,3.890995498,4.828549758,0.253834485,4518,17799,0.207327487,0.300341483,9.714145091,75,77207,,,89.44224732,351,392432,80.08506232,98.79943232,,,,,,,102.9983978,61.04337824,162.7818738,56.29679671,26.99650226,103.5318136,92.9800093,82.79243785,103.1675807,,,,9.3,,,,,0,,,,,0.117280747,3390,28905,0.099455646,0.135105849,0.102226898,0.084038123,0.120415674,0.016952084,0.010145921,0.023758248,0.005016433,0.002487787,0.007545079,0.844487756,26864,31811,0.827596036,0.861379475,,,,,,,0.847117795,0.743393967,0.950841622,0.756148981,0.620379437,0.891918525,0.85092483,0.827831397,0.874018262,0.313,,31811,0.278221571,0.34777843,73.75177123,,,73.11704439,74.38649807,,,,,,,73.37655505,69.96436205,76.78874805,87.4266186,75.37426488,99.47897232,73.33043963,72.65711235,74.00376691,,,,535.4190552,1450,218108,506.8225027,564.0156077,,,,,,,573.6561112,430.9481263,748.4967884,,,,553.5297857,522.8375316,584.2220398,,,,52.88970093,44,83192,38.42973767,71.00195485,,,,,,,,,,,,,54.18149336,38.1487715,74.68205149,,,,8.905852417,56,6288,6.727385207,11.56499014,,,,,,,,,,,,,8.067473414,5.861838533,10.83020651,,,,,,,0.14,,,0.119,0.161,0.194,,,0.166,0.221,0.107,,,0.092,0.124,134.2,87,64815,,,0.153,11820,,,,0.091191117,7028.646559,77076,,,17.8960241,42,234689,12.89788006,24.19022569,,,,,,,,,,,,,17.53138605,12.27876726,24.27082801,,,,0.361,,,0.343,0.377,0.1395978,6192,44356,0.119342481,0.159853119,0.05708302,1063,18622,0.040402169,0.073763871,0.00127323,99,77755,,,785.4040404,0.881697802,802.345,910,,,0.060177706,298,4952,0.030114462,0.090240951,2.930942504,,,,,,,2.833162784,2.588180383,2.984015361,2.794763267,,,,,,,2.54744053,2.357343483,2.876464354,0.073245429,,,,,-3004.882938,,,,,0.743291902,36538,49157,0.654498452,0.832085351,56866,,,51706.85106,62025.14894,16533,15600.06383,17465.93617,,,,34754,21159.10638,48348.89362,48617,43026.53192,54207.46809,54287,49969.04255,58604.95745,,,,,,0.551546392,6955,12610,,,51.50970032,,,,,0.204744487,,56866,,,7.961079169,36,4522,,,4.538391159,25,550856,2.937007466,6.699560629,,,,,,,,,,,,,3.719953625,2.204680276,5.879130496,,,,20.33883344,78,392432,15.97035882,25.53354287,19.87605496,,,,,,,,,,,,,21.97050109,17.12708345,27.7584064,,,,18.60194887,73,392432,14.58095847,23.38915791,,,,,,,,,,,,,18.59600186,14.3211874,23.74667922,,,,21.78427756,120,550856,17.88657576,25.68197937,,,,,,,,,,,,,22.52638584,18.2974184,26.75535327,,,,10.94117647,,8500,,,93,,0.524585987,30885,58875,,,0.609,,,,,29.36523595,,,,,0.663644574,19105,28788,0.641493296,0.685795853,0.098072396,2666,27184,0.082723874,0.113420918,0.832325969,23961,28788,0.811115569,0.85353637,77755,,,,,0.230454633,17919,77755,,,0.170239856,13237,77755,,,0.045334705,3525,77755,,,0.007485049,582,77755,,,0.008449617,657,77755,,,0.000874542,68,77755,,,0.049810302,3873,77755,,,0.869358884,67597,77755,,,0.005321782,387,72720,0.002238863,0.008404702,0.509369172,39606,77755,,,0.559136706,42954,76822,, -05,147,05147,AR,Woodruff County,2024,1,11401.12043,154,16779,8348.783396,14453.45747,0,,,,2,,,,2,13518.44128,7874.990214,21644.33404,1,,,,2,11401.39905,7625.94464,15176.85347,,,,,2,,0.249,,,0.213,0.286,4.976969065,,,3.984529524,5.982921578,5.966171454,,,4.810756339,7.183543893,0.105058366,54,514,0.078549742,0.13156699,0,,,,,,,0.120300752,0.065012669,0.175588835,,,,0.09039548,0.060524182,0.120266779,,,,,,,0.245,,,0.199,0.293,0.398,,,0.317,0.482,7.2,0.032273112,0.157,,,0.347,,,0.29,0.408,0.455256022,2854,6269,,,0.122467998,,,0.095050503,0.15282275,0.25,1,4,0.023230216,0.544021398,654,40,6116,,,50.75337034,64,1261,39.08627958,64.81092086,,,,,,,51.07526882,30.75064829,79.76035906,,,,48.95960832,34.97746199,66.66909053,,,,,,,0.101750547,465,4570,0.085069696,0.118431398,0.000327011,2,6116,,,3058,0.00049595,3,6049,,,2016.333333,0.000661266,4,6049,,,1512.25,5358,,,,,,,5149,,4947,0.36,,,,,,,0.41,,0.35,0.28,,,,,,,0.27,,0.29,0.844084796,3703,4387,0.81002214,0.878147452,0.41894061,522,1246,0.283236212,0.554645008,0.03492516,98,2806,,,0.322,414,,0.19093617,0.45306383,,,,,,,0.472684086,0.352172328,0.593195843,,,,0.165580183,0.072286868,0.258873497,5.480693013,96800,17662,4.319279601,6.642106425,0.391982183,528,1347,0.282857968,0.501106397,16.35055592,10,6116,,,116.4950726,37,31761,82.02328191,160.5731121,,,,,,,,,,,,,144.9341003,99.1348173,204.6037052,,,,8.6,,,,,0,,,,,0.103333333,310,3000,0.05606811,0.150598557,0.087628866,0.044124955,0.131132777,0.015,0,0.037367976,0.005,0,0.015724933,0.864761905,2270,2625,0.809996785,0.919527025,,,,,,,,,,,,,0.848101266,0.801845861,0.894356671,0.305,,2625,0.22430353,0.38569647,73.0368856,,,70.86441023,75.20936098,,,,,,,,,,,,,72.74550115,70.04523966,75.44576264,,,,595.2222549,154,16779,491.9151681,698.5293417,,,,,,,719.0504589,503.6141014,995.4689246,,,,578.4278074,457.9418948,698.91372,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.151,,,0.131,0.175,0.202,,,0.175,0.233,0.128,,,0.11,0.148,251.5,13,5169,,,0.157,1000,,,,0.032273112,234.3027944,7260,,,,,,,,,,,,,,,,,,,,,,,,,,0.363,,,0.348,0.376,0.119525547,393,3288,0.098078739,0.140972356,0.057462687,77,1340,0.037207367,0.077718006,0.001322533,8,6049,,,756.125,,,,,,,,,,,2.847651044,,,,,,,,,3.181569349,2.849700651,,,,,,,,,3.250020219,0.173885746,,,,,-13768.8685,,,,,0.74892807,38951,52009,0.605519014,0.892337126,41225,,,35044.74468,47405.25532,,,,,,,27399,21567.85106,33230.14894,,,,54602,47923.70213,61280.29787,,,,,,0.737179487,690,936,,,17.66646052,,,,,0.282425713,,41225,,,16.12903226,6,372,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,24.3670115,11,45143,12.16392435,43.59931443,,,,,,,,,,,,,31.8248361,15.26124593,58.52700669,,,,,,600,,,-888,,0.487401575,2476,5080,,,0.418,,,,,0.271249523,,,,,0.690784463,1814,2626,0.651367989,0.730200937,0.085943775,214,2490,0.045345949,0.126541601,0.619573496,1627,2626,0.551784679,0.687362313,6049,,,,,0.215903455,1306,6049,,,0.24566044,1486,6049,,,0.250123987,1513,6049,,,0.005951397,36,6049,,,0.003306332,20,6049,,,0.0009919,6,6049,,,0.021821789,132,6049,,,0.695652174,4208,6049,,,0.0028838,17,5895,,,0.513969251,3109,6049,,,1,6269,6269,, -05,149,05149,AR,Yell County,2024,1,10781.21098,419,57686,9222.444413,12339.97754,0,,,,2,,,,2,,,,2,7131.792317,4739.024202,10307.42558,,11976.70492,9989.161573,13964.24826,,,,,2,,0.246,,,0.21,0.285,4.68358889,,,3.771512415,5.705986999,5.774159645,,,4.646300571,6.958709786,0.077765608,142,1826,0.065482165,0.090049051,0,,,,,,,,,,0.068773234,0.047388573,0.090157896,0.077487765,0.062521499,0.092454032,,,,,,,0.236,,,0.189,0.284,0.373,,,0.3,0.449,6.9,0.077791138,0.147,,,0.367,,,0.31,0.428,0.71884716,14566,20263,,,0.132765083,,,0.104556631,0.165954248,0.290322581,9,31,0.195384033,0.388273114,362.2,73,20155,,,37.18918919,172,4625,31.63131697,42.74706141,,,,,,,,,,32.02614379,23.69311748,42.34026052,40.70369093,33.35941712,48.04796473,,,,,,,0.142301143,2340,16444,0.122045824,0.162556462,0.000595386,12,20155,,,1679.583333,0.000298077,6,20129,,,3354.833333,0.000546475,11,20129,,,1829.909091,5775,,,,,,,,,5901,0.26,,,,,,,,0.09,0.27,0.38,,,,,,0.25,0.14,0.12,0.39,0.77383272,10723,13857,0.741773397,0.805892043,0.39280634,1933,4921,0.321059651,0.46455303,0.038408261,305,7941,,,0.228,1065,,0.142212766,0.313787234,,,,,,,,,,0.141318977,0.045065311,0.237572643,0.168180289,0.112320366,0.224040213,3.792983319,92545,24399,3.296409207,4.289557431,0.248551325,1201,4832,0.147456219,0.349646431,11.41156041,23,20155,,,86.06421715,91,105735,69.29353903,105.6677873,,,,,,,,,,,,,102.9473443,81.7550514,127.9541493,,,,9.4,,,,,1,,,,,0.135343169,1055,7795,0.102665735,0.168020603,0.066190785,0.041225253,0.091156318,0.053880693,0.031948193,0.075813192,0.016035921,0.004663945,0.027407896,0.781285105,6955,8902,0.736829097,0.825741112,,,,,,,,,,0.726902174,0.52471081,0.929093538,0.732399558,0.661857987,0.802941128,0.315,,8902,0.255832025,0.374167975,74.07157493,,,72.86789695,75.27525292,,,,,,,,,,88.83127457,59.98942852,117.6731206,73.13038267,71.73092554,74.52983981,,,,555.7501151,419,57686,499.8515428,611.6486875,,,,,,,,,,334.7643943,227.4561642,475.171336,601.3254972,534.7143439,667.9366505,,,,49.22140684,11,22348,24.57114895,88.07069319,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.15,,,0.129,0.173,0.197,,,0.169,0.226,0.118,,,0.1,0.137,167,28,16766,,,0.147,3020,,,,0.077791138,1725.796387,22185,,,,,,,,,,,,,,,,,,,,,,,,,,0.346,,,0.332,0.359,0.172230782,2012,11682,0.146018016,0.198443548,0.071271271,356,4995,0.048632973,0.093909569,0.001092951,22,20129,,,914.9545455,0.918010753,256.125,279,,,,,,,,3.03019342,,,,,,,,2.94714773,3.095631957,2.983277694,,,,,,,,2.673957784,3.200382011,0.058575738,,,,,-8289.78025,,,,,0.709059651,32582,45951,0.583808108,0.834311193,50275,,,43394.14894,57155.85106,,,,104583,27379.25532,181786.7447,,,,57940,41773.87234,74106.12766,55803,47223.08511,64382.91489,,,,,,0.797766749,3215,4030,,,64.35358582,,,,,0.231586276,,50275,,,8.778930567,11,1253,,,8.053691275,12,149000,4.161459805,14.06817789,,,,,,,,,,,,,9.853275766,4.918719761,17.6302321,,,,20.56161839,20,105735,12.37943745,32.10951413,18.91521256,,,,,,,,,,,,,23.34584132,13.06649017,38.50541494,,,,17.0236913,18,105735,10.08931837,26.90477162,,,,,,,,,,,,,21.60623276,12.5864268,34.59367168,,,,26.17449664,39,149000,18.61262583,35.78139857,,,,,,,,,,,,,32.24708433,22.58546142,44.64355729,,,,9.583333333,,2400,,,23,,0.455626901,6741,14795,,,0.491,,,,,13.74608121,,,,,0.685201909,5311,7751,0.652759682,0.717644137,0.067662814,480,7094,0.0412578,0.094067827,0.7760289,6015,7751,0.73129201,0.820765789,20129,,,,,0.236623777,4763,20129,,,0.182572408,3675,20129,,,0.017785285,358,20129,,,0.013165085,265,20129,,,0.016344578,329,20129,,,0.00114263,23,20129,,,0.214218292,4312,20129,,,0.733320085,14761,20129,,,0.058361274,1114,19088,0.041417683,0.075304865,0.49311938,9926,20129,,,0.807037457,16353,20263,, -06,000,06000,CA,California,2024,,6373.194549,420722,110760992,6345.303249,6401.085849,0,12297.4521,11680.4517,12914.4525,,3192.912336,3142.398297,3243.426375,,12573.77053,12402.85383,12744.68723,,6543.819949,6499.85457,6587.785329,,6412.627828,6363.750749,6461.504908,,12043.7776,11427.46381,12660.09138,,,0.158,,,0.147,0.17,3.116359838,,,2.887505472,3.345214203,4.650925968,,,4.367475718,4.934376218,0.070535468,220151,3121139,0.070251402,0.070819534,0,0.079255757,0.07388755,0.084623963,0.079175483,0.078389403,0.079961562,0.120529425,0.118907165,0.122151684,0.067557287,0.067149854,0.067964721,0.05810761,0.05760922,0.058606,0.068783512,0.064243112,0.073323913,0.077975448,0.076071178,0.079879718,0.088,,,0.08,0.098,0.278,,,0.264,0.294,8.6,0.032343807,0.105,,,0.199,,,0.186,0.212,0.942298064,37256791,39538223,,,0.172456769,,,0.159929285,0.185748574,0.266562419,5114,19185,0.263014883,0.270120484,488.2,191542,39237836,,,12.69178569,110982,8744396,12.61711459,12.76645678,16.78070072,15.40187292,18.15952852,1.528000611,1.454047291,1.601953931,15.9462014,15.58136776,16.31103503,18.60085448,18.47452626,18.72718269,5.395497919,5.300514715,5.490481124,10.85276417,9.681811157,12.02371718,7.803772407,7.519695089,8.087849724,0.080664606,2640001,32728121,0.079473117,0.081856096,0.000810952,31820,39237836,,,1233.118668,0.00092907,36261,39029342,,,1076.344888,0.004498231,175563,39029342,,,222.3096097,2153,,,,,3491,1557,4216,2614,1959,0.36,,,,,0.26,0.32,0.28,0.26,0.4,0.42,,,,,0.27,0.48,0.26,0.32,0.44,0.844065228,22656988,26842698,0.842975343,0.845155113,0.675810767,7592909,11235259,0.673483733,0.678137801,0.042129548,811077,19251975,,,0.153,1275904,,0.149425532,0.156574468,0.213418679,0.197080676,0.229756682,0.097853831,0.094407422,0.101300241,0.257645038,0.248980476,0.266309599,0.203665768,0.200961633,0.206369902,0.080825454,0.078438703,0.083212206,5.16133557,187661,36359,5.126387789,5.196283352,0.224394738,1964709,8755593,0.22187891,0.226910567,6.014602844,23600,39237836,,,58.88946776,116137,197211835,58.55077307,59.22816246,111.3016126,104.0419965,118.5612286,26.33097967,25.74444119,26.91751814,102.5472628,100.661566,104.4329596,44.65537566,44.18615445,45.12459688,80.82592306,80.16763085,81.48421526,62.56804958,56.83776819,68.29833098,7.1,,,,,0.620689655,,,,,0.2573079,3371535,13103115,0.255798438,0.258817361,0.186518353,0.185278704,0.187758002,0.082098036,0.081334068,0.082862003,0.013041555,0.01271169,0.013371421,0.684397484,12561068,18353469,0.683085208,0.685709759,0.670713361,0.660505253,0.680921469,0.62877107,0.625979517,0.631562623,0.681435327,0.675023527,0.687847127,0.718129186,0.716236143,0.720022228,0.678825114,0.677142805,0.680507423,0.416,,18353469,0.413617021,0.418382979,79.92973798,,,79.90017154,79.95930442,75.4266512,74.88745988,75.96584252,86.29808892,86.20675585,86.38942198,73.27144784,73.13905037,73.40384532,80.21166525,80.14968612,80.27364437,79.32133642,79.27744966,79.36522317,75.22835343,74.64095674,75.81575013,318.537389,420722,110760992,317.5555863,319.5191917,546.2380351,526.1431034,566.3329669,170.5302745,168.7467125,172.3138365,592.0538351,586.4039351,597.7037351,326.4204663,324.6201844,328.2207483,325.8238178,324.2639886,327.3836471,561.4874177,539.9220129,583.0528226,37.74744571,14924,39536450,37.14182458,38.35306684,50.89723573,39.96527725,63.89681858,23.75635581,22.37910582,25.1336058,81.33107536,77.38269681,85.27945391,37.92199409,37.07780379,38.76618438,34.4747909,33.32455946,35.62502233,60.50883711,48.39925929,74.72792158,4.176554759,13342,3194499,4.105684538,4.247424979,4.795204795,3.535605477,6.357745872,2.455625479,2.31357351,2.597677448,9.267065115,8.793808261,9.740321969,4.693145643,4.583107398,4.803183888,3.304676754,3.184044696,3.425308811,5.18386522,3.992207885,6.619680156,8.769663937,8.110028263,9.429299612,0.094532167,,,0.085938265,0.103887792,0.146009905,,,0.134565013,0.158250204,0.108,,,0.098,0.118,411.4,136091,33081756,,,0.105,4104060,,,,0.032343807,1204934.767,37253956,,,22.01778716,26007,118118137,21.75018808,22.28538624,52.89278055,46.41341493,59.37214617,4.569837035,4.256091192,4.883582877,44.73880275,43.12896667,46.34863882,15.7657055,15.40634548,16.12506552,31.71554485,31.17940246,32.25168725,20.40913513,16.41135477,25.08629204,0.311248925,,,0.292940834,0.330166928,0.098323256,2367542,24079166,0.095940277,0.100706235,0.033854553,308107,9100903,0.031471574,0.036237531,0.000865144,33766,39029342,,,1155.876977,0.877344857,373333.925,425527,,,0.066231847,138053,2084390,0.064280866,0.068182828,2.900987435,,,,,,3.559348299,2.444532137,2.638686803,3.304617685,2.745055491,,,,,,3.550541816,2.213491015,2.471012742,3.128598172,0.286864334,,,,,-2399.595,,,,,0.860237001,58583,68101,0.854940108,0.865533894,91517,,,90959.38298,92074.61702,75076,72627.48936,77524.51064,118815,118094.1489,119535.8511,64513,63463.29787,65562.70213,74517,74085.68085,74948.31915,104752,104222.9787,105281.0213,,,,,,0.578126737,3395939,5874039,,,57.98881193,,,,,0.300238903,,,,,8.100317859,,,,,5.212500844,14366,275606670,5.127262642,5.297739046,10.07917852,8.236997564,11.92135948,1.546506603,1.425357366,1.667655841,24.32275582,23.54705302,25.09845862,6.109868839,5.962707622,6.257030056,2.80352655,2.700434512,2.906618589,8.237280756,6.570377732,10.19831408,10.4114655,21493,197211835,10.270146,10.55278499,10.89843315,14.30345106,11.6286445,16.97825762,6.192834834,5.912295964,6.473373705,8.356925005,7.817986084,8.895863927,6.176509995,5.997050597,6.355969393,15.71032538,15.42290498,15.99774577,10.43119427,8.218594657,13.05619511,8.210967663,16193,197211835,8.084497886,8.337437441,12.20250238,9.9175918,14.8561088,2.333124781,2.158529709,2.507719852,23.73904597,22.83176571,24.64632622,6.875290206,6.691176431,7.059403981,9.76113318,9.532366118,9.989900243,11.06552842,8.787626826,13.75344147,10.43262124,28753,275606670,10.31203218,10.55321031,20.85951729,18.2093588,23.50967577,4.886565594,4.671214709,5.101916478,17.75425941,17.09152389,18.41699494,10.91324806,10.71657066,11.10992545,11.07496602,10.87006506,11.27986698,12.25785827,10.10896097,14.40675557,,,,,,,,0.678989025,17500881,25774910,,,,,,,,485.1779041,,,,,0.556282669,7407361,13315822,0.553206785,0.559358553,0.19748616,2558323,12954442,0.196488824,0.198483495,0.914519885,12177584,13315822,0.913027891,0.916011878,39029342,,,,,0.217939288,8506027,39029342,,,0.157721004,6155747,39029342,,,0.055794228,2177612,39029342,,,0.017237493,672768,39029342,,,0.162639867,6347727,39029342,,,0.005221405,203788,39029342,,,0.403085965,15732180,39029342,,,0.347299629,13554876,39029342,,,0.089146132,3307125,37097796,0.088477279,0.089814984,0.499478726,19494326,39029342,,,0.057633673,2278733,39538223,, -06,001,06001,CA,Alameda County,2024,1,4981.213394,14338,4685632,4860.61365,5101.813139,0,9825.733284,6987.056891,13432.10086,,2477.473805,2324.523212,2630.424398,,12835.35058,12191.10057,13479.60058,,5201.280001,4950.317715,5452.242286,,4657.204671,4437.174743,4877.234598,,11184.84156,9185.705094,13183.97802,,,0.129,,,0.109,0.149,2.985221752,,,2.375765254,3.637647511,5.07077976,,,4.283067765,5.884150248,0.07304157,9186,125764,0.071603457,0.074479683,0,0.104938272,0.057743704,0.152132839,0.079866093,0.077267904,0.082464282,0.119438384,0.113247295,0.125629472,0.064375893,0.061751057,0.067000729,0.055789544,0.053188695,0.058390393,0.077838828,0.061948008,0.093729648,0.068619892,0.060676355,0.07656343,0.092,,,0.073,0.114,0.248,,,0.205,0.294,9,0.011173993,0.081,,,0.182,,,0.151,0.217,0.995939021,1675521,1682353,,,0.158462439,,,0.130978987,0.187786967,0.259009009,115,444,0.235210819,0.283284467,451.8,7448,1648556,,,7.38614936,2409,326151,7.091194364,7.681104356,,,,0.769543191,0.602120152,0.96911229,12.76322135,11.50770862,14.01873407,15.52000313,14.75689527,16.28311099,2.357012453,2.005779789,2.708245116,9.698275862,6.391224904,14.1104822,3.828311489,3.057919245,4.733766442,0.050130357,69452,1385428,0.045364399,0.054896314,0.001120374,1847,1648556,,,892.5587439,0.00103929,1693,1628997,,,962.1955109,0.007509529,12233,1628997,,,133.1641462,2102,,,,,3291,1455,4133,2374,1886,0.37,,,,,0.28,0.37,0.29,0.28,0.42,0.46,,,,,0.35,0.51,0.27,0.34,0.51,0.89212891,1065102,1193888,,,0.78648858,413192,525363,,,0.03294792,27202,825606,,,0.103,32186,,0.08512766,0.12087234,0.098204857,0.039383844,0.157025871,0.048141335,0.040975028,0.055307643,0.233135363,0.202884691,0.263386036,0.136758379,0.123779527,0.149737232,0.050687154,0.040671236,0.060703071,5.40802198,249975,46223,5.279307027,5.536736934,0.189962279,63050,331908,0.180666864,0.199257693,6.751363011,1113,1648556,,,47.8576484,3978,8312151,46.37042902,49.34486778,67.47638327,36.88996663,113.2139055,19.50012287,17.81593783,21.18430791,120.004601,112.6108688,127.3983331,42.40345814,39.44275927,45.36415702,59.01015203,56.01983656,62.00046751,62.4693231,45.02239337,84.44037716,9.4,,,,,0,,,,,0.233183583,133655,573175,0.22852664,0.237840525,0.163226586,0.158514189,0.167938984,0.078928774,0.07569199,0.082165558,0.010424391,0.009218258,0.011630523,0.546995324,452544,827327,0.541566898,0.55242375,0.615898464,0.570861095,0.660935832,0.547805317,0.536994357,0.558616277,0.621813142,0.604414731,0.639211553,0.67033623,0.656146891,0.684525569,0.577131898,0.568302799,0.585960998,0.471,,827327,0.461320295,0.480679705,82.20373313,,,82.05200122,82.35546503,77.67660918,74.15028488,81.20293348,88.68237396,88.30902406,89.05572385,73.07343679,72.59079706,73.55607651,82.70372794,82.25784439,83.14961149,81.37023387,81.14532351,81.59514423,76.82686442,74.70215982,78.95156902,253.2260759,14338,4685632,249.0154814,257.4366705,456.9902471,351.1638535,584.6890432,131.2438734,125.9090391,136.5787077,596.6951041,576.5215834,616.8686248,255.370673,244.9352768,265.8060693,250.2911055,243.152262,257.429949,498.663139,431.2737131,566.0525649,33.42892366,503,1504685,30.50750047,36.35034685,,,,24.55527057,19.96641432,29.14412681,86.16783414,70.48688834,101.8487799,28.37751555,23.53642199,33.21860911,28.85358203,23.28856459,35.34758732,107.2253382,57.09297667,183.3585939,3.54593384,456,128598,3.220468851,3.87139883,,,,2.446672051,1.97415964,2.919184462,8.536809253,6.890306841,10.45816808,3.686474151,3.0427764,4.330171902,2.801485439,2.240826739,3.459811727,,,,9.870918755,7.019188178,13.49387089,0.087,,,0.074,0.101,0.139,,,0.12,0.158,0.094,,,0.08,0.11,423.9,5986,1412105,,,0.081,134800,,,,0.011173993,16875.75733,1510271,,,18.10442278,902,4982208,16.92291255,19.28593301,,,,3.093414307,2.295991723,4.078281117,54.26481228,47.79200772,60.73761685,16.28244006,13.91032216,18.65455797,24.24515197,21.74753006,26.74277389,,,,0.299,,,0.289,0.309,0.058081057,61348,1056248,0.053315099,0.062847014,0.027409608,9457,345025,0.021452161,0.033367055,0.000712709,1161,1628997,,,1403.098191,0.865710789,13793.37,15933,,,0.045383571,3575,78773,0.037523847,0.053243294,3.067639399,,,,,,3.628747076,2.252624891,2.501986597,3.55128025,2.994174285,,,,,,3.687282445,2.077646258,2.359669215,3.451954797,0.221724161,,,,,136.5831177,,,,,0.847572491,78542,92667,0.829303627,0.865841355,121190,,,117435.617,124944.383,95370,86276.55319,104463.4468,158717,155634.617,161799.383,67235,63610.48936,70859.51064,93205,90365.68085,96044.31915,141364,138818.9787,143909.0213,,,,,,0.407150934,87136,214014,,,51.47207365,,,,,0.314167836,,121190,,,8.335548349,784,94055,,,6.518325894,756,11598070,6.053670221,6.982981567,,,,0.971916069,0.676975153,1.351699975,33.44029781,30.1672374,36.71335822,7.616975391,6.555998246,8.677952537,2.307907056,1.838235088,2.860998034,,,,8.631541317,768,8312151,8.011293054,9.251789579,9.239485664,,,,5.33895986,4.475872067,6.202047654,10.00652489,7.981596139,12.3887587,6.135025765,4.961867279,7.308184252,13.36748144,11.96575286,14.76921002,,,,7.952213573,661,8312151,7.345975263,8.558451882,,,,1.628165599,1.178311517,2.193128377,33.0842724,29.20209339,36.96645142,7.856478285,6.582073018,9.130883553,6.232355629,5.260549229,7.204162029,,,,6.518325894,756,11598070,6.053670221,6.982981567,,,,3.332283664,2.736062467,3.928504861,14.26007712,12.12270623,16.39744801,7.924731973,6.842533184,9.006930762,6.172956223,5.360924901,6.984987545,19.10057514,11.32021136,30.18714348,,,,,,,,0.705890441,770070,1090920,,,0.73,,,,,683.0164453,,,,,0.541893557,317451,585818,0.537166306,0.546620809,0.175674802,100548,572353,0.170619565,0.18073004,0.928489736,543926,585818,0.925366519,0.931612952,1628997,,,,,0.195054994,317744,1628997,,,0.157387644,256384,1628997,,,0.098753405,160869,1628997,,,0.011262759,18347,1628997,,,0.344670985,561468,1628997,,,0.009345014,15223,1628997,,,0.222215265,361988,1628997,,,0.287613176,468521,1628997,,,0.073510201,115693,1573836,,,0.503169128,819661,1628997,,,0.004905629,8253,1682353,, -06,003,06003,CA,Alpine County,2024,1,29863.77098,45,3213,17979.94096,46635.97767,1,,,,2,,,,2,,,,2,,,,2,,,,2,,,,2,,0.145,,,0.128,0.165,3.616754674,,,3.168884978,4.149398101,5.541763701,,,4.97193687,6.169111477,,,,,,0,,,,,,,,,,,,,,,,,,,,,,0.131,,,0.108,0.155,0.291,,,0.257,0.324,7,0.167851385,0.101,,,0.169,,,0.145,0.193,0.777408638,936,1204,,,0.178342201,,,0.160538885,0.196662883,0.5,4,8,0.315552499,0.64971552,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.075112108,67,892,0.062005725,0.088218491,0,0,1235,,,-1235,0,0,1190,,,-1190,0.003361345,4,1190,,,297.5,921,,,,,,,,,,0.33,,,,,,,,,0.39,0.35,,,,,0.2,,,,0.43,0.93258427,996,1068,0.859784372,1,0.572727273,189,330,0.363803057,0.781651488,0.053892216,27,501,,,0.266,50,,0.164723404,0.367276596,0.426229508,0.227195568,0.625263448,,,,,,,0.166666667,0,0.35234418,,,,4.506639175,163929,36375,2.656629213,6.356649138,0.266666667,92,345,0.151743714,0.381589619,0,0,1235,,,315.5680224,18,5704,187.0256098,498.733525,,,,,,,,,,,,,,,,,,,3.6,,,,,1,,,,,0.101265823,40,395,0.046605213,0.155926433,0.051150895,0,0.155394562,0.030379747,0,0.084683278,0,0,0.055456368,0.622257053,397,638,0.420406768,0.824107339,,,,,,,,,,,,,0.661448141,0.469120195,0.853776086,0.523,,638,0.293493663,0.752506337,,,,,,,,,,,,,,,,,,,,,,,,1020.988072,45,3213,693.7118596,1449.21107,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.107,,,0.096,0.119,0.163,,,0.147,0.179,0.088,,,0.079,0.096,,,,,,0.101,140,,,,0.167851385,197.2253776,1175,,,,,,,,,,,,,,,,,,,,,,,,,,0.322,,,0.31,0.335,0.082728592,57,689,0.067239231,0.098217954,0.057522124,13,226,0.042032762,0.073011486,0,0,1190,,,-1190,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.063229123,,,,,,,,,,0.897566188,78958,87969,0.153809299,1.641323077,71646,,,60870.17021,82421.82979,56875,43180.02128,70569.97872,,,,,,,153250,79608.80851,226891.1915,106406,81816.04255,130995.9575,,,,,,0.62295082,38,61,,,,,,,,0.280825168,,71646,,,19.8019802,2,101,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.837288136,741,885,,,0.283,,,,,4.203841192,,,,,0.827586207,360,435,0.756450652,0.898721761,0.106976744,46,430,0,0.236902173,0.855172414,372,435,0.752948809,0.957396019,1190,,,,,0.161344538,192,1190,,,0.255462185,304,1190,,,0.005042017,6,1190,,,0.23697479,282,1190,,,0.018487395,22,1190,,,0.000840336,1,1190,,,0.131932773,157,1190,,,0.621008403,739,1190,,,0.017391304,24,1380,0,0.060366819,0.446218487,531,1190,,,1,1204,1204,, -06,005,06005,CA,Amador County,2024,1,7465.09387,666,107898,6457.021059,8473.166682,0,,,,2,,,,2,,,,2,3966.003671,2590.725272,5811.114284,,8427.977111,7142.919752,9713.03447,,,,,2,,0.15,,,0.126,0.176,3.6366345,,,2.860674436,4.523064187,5.505525309,,,4.423045658,6.646128095,0.059424327,128,2154,0.049440151,0.069408503,0,,,,,,,,,,0.05730659,0.032921135,0.081692046,0.058675079,0.047104954,0.070245204,,,,,,,0.133,,,0.106,0.167,0.296,,,0.225,0.375,8.9,0.000956321,0.091,,,0.182,,,0.146,0.223,0.616247468,24942,40474,,,0.175099084,,,0.139693964,0.214751862,0.434782609,30,69,0.377022489,0.490436839,157.5,65,41259,,,10.38310061,58,5586,7.884323609,13.4225653,,,,,,,,,,8.914100486,4.449886845,15.9497881,10.33934252,7.352283269,14.1342216,,,,,,,0.056159908,1461,26015,0.047819482,0.064500333,0.000460506,19,41259,,,2171.526316,0.000627837,26,41412,,,1592.769231,0.002921858,121,41412,,,342.2479339,1514,,,,,,,,1078,1567,0.38,,,,,0.38,0.29,,0.26,0.38,0.43,,,,,0.23,0.49,0.55,0.35,0.44,0.904955958,28869,31901,0.890039089,0.919872826,0.577340213,5483,9497,0.504816957,0.649863469,0.044181185,634,14350,,,0.12,746,,0.075914894,0.164085106,0.169230769,0,0.549487341,,,,,,,0.026214341,0.000192184,0.052236498,0.05752754,0.020992926,0.094062153,4.29581348,143347,33369,3.511956006,5.079670953,0.18140219,1110,6119,0.120606954,0.242197425,7.028769481,29,41259,,,106.4775518,212,199103,92.14425159,120.8108521,,,,,,,,,,71.76052488,44.42089593,109.6935851,117.990639,100.8010957,135.1801822,,,,6.4,,,,,1,,,,,0.181205793,2690,14845,0.152417033,0.209994554,0.157719715,0.126535614,0.188903816,0.025261031,0.014362592,0.03615947,0.011451667,0.00404081,0.018862525,0.753546557,11686,15508,0.713234403,0.79385871,,,,,,,,,,0.662666667,0.563009043,0.76232429,0.730980472,0.695046575,0.766914369,0.438,,15508,0.38038807,0.49561193,78.81676949,,,77.92778407,79.7057549,,,,,,,,,,83.69852597,80.43763721,86.95941474,77.87487849,76.83114345,78.91861353,,,,359.1213412,666,107898,328.126192,390.1164904,,,,,,,,,,227.7075031,164.7930491,306.7205124,391.9928873,353.6573001,430.3284745,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.108,,,0.093,0.126,0.162,,,0.14,0.188,0.087,,,0.074,0.103,483,178,36854,,,0.091,3660,,,,0.000956321,36.42720931,38091,,,25.59994715,31,121094,17.39392206,36.33708153,,,,,,,,,,,,,26.92137881,17.4220969,39.74126584,,,,0.338,,,0.323,0.352,0.064967895,1285,19779,0.054244491,0.0756913,0.030030488,197,6560,0.020498573,0.039562403,0.00060369,25,41412,,,1656.48,0.888833819,304.87,343,,,,,,,,2.707644594,,,,,,,,2.520027025,2.760220366,2.486090305,,,,,,,,2.270355975,2.544946209,0.014523684,,,,,37.75488,,,,,0.746399917,50329,67429,0.63040239,0.862397444,74356,,,66654.21277,82057.78723,,,,,,,129444,34952.93617,223935.0638,78125,56117,100133,73077,65229.85106,80924.14894,,,,,,0.40932771,1650,4031,,,58.87219564,,,,,0.259683146,,74356,,,8.507853403,13,1528,,,6.947313766,19,273487,4.182736717,10.84909103,,,,,,,,,,,,,8.013047126,4.667895241,12.82966469,,,,28.86247183,64,199103,21.68237714,37.65926492,32.14416659,,,,,,,,,,,,,32.18741027,23.29418841,43.35623041,,,,21.59686193,43,199103,15.62975606,29.09083128,,,,,,,,,,,,,25.42339735,18.07852081,34.7546211,,,,22.30453367,61,273487,17.06120092,28.6511066,,,,,,,,,,25.40069598,12.18062104,46.71278428,23.09642995,17.08686603,30.53470526,,,,,,,,,,,0.69364018,22304,32155,,,0.598,,,,,52.34185723,,,,,0.790092093,12440,15745,0.757117192,0.823066993,0.15966829,2426,15194,0.127134259,0.192202322,0.859002858,13525,15745,0.827221925,0.890783791,41412,,,,,0.153192311,6344,41412,,,0.279266879,11565,41412,,,0.026514054,1098,41412,,,0.021587946,894,41412,,,0.020259828,839,41412,,,0.003839467,159,41412,,,0.159567275,6608,41412,,,0.752994301,31183,41412,,,0.010522004,411,39061,0.006257025,0.014786983,0.454892302,18838,41412,,,0.692296289,28020,40474,, -06,007,06007,CA,Butte County,2024,1,8799.847648,3331,592972,8343.248235,9256.44706,0,18686.5928,13523.57986,25170.71786,,6559.683739,5005.72975,8443.613256,,18213.00601,13474.08211,24078.55982,,6483.332253,5516.194021,7450.470486,,9022.155587,8467.327739,9576.983435,,,,,2,,0.167,,,0.141,0.194,3.766700303,,,2.967459312,4.657143484,5.757498354,,,4.66564065,6.865123607,0.062374636,964,15455,0.058561869,0.066187403,0,0.065502183,0.033457546,0.097546821,0.078970719,0.06322495,0.094716488,0.105058366,0.06756951,0.142547222,0.066687345,0.058075547,0.075299143,0.058490954,0.053827573,0.063154335,,,,0.055873926,0.038834775,0.072913076,0.146,,,0.115,0.182,0.31,,,0.239,0.385,7.5,0.064508674,0.126,,,0.2,,,0.159,0.243,0.821860588,173932,211632,,,0.169404792,,,0.132391041,0.208526733,0.273170732,56,205,0.237788943,0.309363214,494.5,1030,208309,,,11.86393028,633,53355,10.93969445,12.78816611,20.54794521,12.17801459,32.47461218,6.555227794,4.004103437,10.12401767,,,,15.51503519,13.33176255,17.69830782,9.715222539,8.650751537,10.77969354,,,,23.16213495,18.02152352,29.31316418,0.074878394,12592,168166,0.065346479,0.084410309,0.000585668,122,208309,,,1707.45082,0.000810408,168,207303,,,1233.946429,0.008547874,1772,207303,,,116.988149,3527,,,,,8225,2474,8158,2767,3482,0.41,,,,,0.39,0.28,0.29,0.33,0.42,0.38,,,,,0.27,0.36,0.24,0.36,0.38,0.903098154,125518,138986,0.895702077,0.91049423,0.712729489,37424,52508,0.681716066,0.743742912,0.044575877,4100,91978,,,0.187,7632,,0.138148936,0.235851064,0.179245283,0.041872003,0.316618563,0.375555556,0.285878776,0.465232335,0.477810651,0.344142148,0.611479153,0.228197674,0.181632743,0.274762606,0.122728236,0.098730087,0.146726385,5.280849097,137075,25957,4.904122149,5.657576045,0.219372289,9408,42886,0.192971733,0.245772846,8.064941985,168,208309,,,107.3775265,1182,1100789,101.255986,113.499067,151.6742504,99.07865602,222.2379191,35.58985502,21.42741761,55.5779672,212.0708431,149.3174446,292.311722,54.65428537,44.1500699,65.15850084,125.3753561,117.5135746,133.2371376,,,,7.1,,,,,0,,,,,0.208869814,17520,83880,0.195836392,0.221903236,0.175407642,0.162042801,0.188772483,0.0345732,0.028550835,0.040595564,0.009835479,0.007386002,0.012284957,0.735493341,67647,91975,0.721116021,0.749870661,0.757097792,0.71915862,0.795036963,0.639599555,0.576531615,0.702667496,0.594313454,0.411502979,0.777123928,0.75270697,0.723271857,0.782142084,0.741176097,0.720231971,0.762120223,0.244,,91975,0.224494479,0.263505522,76.55300125,,,76.1647755,76.94122699,73.4784132,68.44467377,78.51215263,81.36655781,78.678875,84.05424061,68.79838854,65.57997122,72.01680587,81.20668045,79.72511054,82.68825036,76.18889491,75.74212615,76.63566367,,,,445.1790356,3331,592972,429.139904,461.2181673,710.1945893,546.9363726,906.9026355,342.1747383,272.540269,424.1770701,826.5926634,653.387199,1031.625053,312.7259181,274.9127271,350.5391091,458.967078,440.1032305,477.8309256,,,,39.66276972,82,206743,31.54497781,49.2319552,,,,,,,,,,35.14663959,20.8301261,55.54684318,38.47539212,28.27027094,51.16411502,,,,3.822534152,61,15958,2.923935741,4.910205033,,,,,,,,,,,,,2.943773918,1.986151901,4.202420312,,,,,,,0.118,,,0.1,0.137,0.177,,,0.152,0.203,0.098,,,0.083,0.115,134,239,178346,,,0.126,27550,,,,0.064508674,14191.90827,220000,,,38.26695968,245,640239,33.47517839,43.05874098,99.24573243,47.59218635,182.5164355,,,,153.7426732,87.87722162,249.6684693,10.50880112,5.430050888,18.3567607,44.84244907,38.6430818,51.04181634,,,,0.337,,,0.323,0.352,0.090020066,11350,126083,0.076913683,0.103126449,0.031463255,1397,44401,0.02312283,0.039803681,0.001336208,277,207303,,,748.3862816,0.871603406,1791.145,2055,,,0.07975073,1011,12677,0.053468824,0.106032635,2.728592212,,,,,,2.58000852,2.369481248,2.556201522,2.855717401,2.549332175,,,,,,2.567327931,2.102542388,2.381886312,2.674689699,0.084686977,,,,,-1987.262455,,,,,0.805774926,48975,60780,0.748717011,0.862832841,63353,,,59124.40426,67581.59575,66524,48534.89362,84513.10638,58259,43214.06383,73303.93617,30007,21539.08511,38474.91489,57216,48572.93617,65859.06383,69181,66019.97872,72342.02128,,,,,,0.619816779,17997,29036,,,68.40996123,,,,,0.363566051,,63353,,,10.2049494,120,11759,,,3.927719656,61,1553064,3.004394317,5.045320213,,,,,,,,,,,,,3.4272057,2.42529473,4.704107589,,,,19.0860839,219,1100789,16.43905082,21.73311697,19.8948209,,,,,,,,,,11.29172281,6.577844652,18.07914207,21.31533467,18.01034126,24.62032809,,,,12.89983821,142,1100789,10.77807867,15.02159774,,,,,,,,,,7.882829621,4.411959899,13.00152868,14.11595616,11.47798509,16.75392724,,,,17.77132172,276,1553064,15.67469431,19.86794913,,,,13.53454693,6.490341336,24.89051369,,,,16.02625253,11.55031317,21.66283771,18.6692521,16.12595077,21.21255344,,,,,,,,,,,0.597296348,102066,170880,,,0.535,,,,,156.6605188,,,,,0.581187964,48424,83319,0.567575276,0.594800653,0.181826128,14561,80082,0.167033707,0.19661855,0.897670399,74793,83319,0.886146581,0.909194218,207303,,,,,0.200281713,41519,207303,,,0.185269871,38407,207303,,,0.017187402,3563,207303,,,0.026868883,5570,207303,,,0.055310343,11466,207303,,,0.003140331,651,207303,,,0.19101026,39597,207303,,,0.68110447,141195,207303,,,0.025343231,5128,202342,0.021427363,0.029259099,0.502062199,104079,207303,,,0.210166705,44478,211632,, -06,009,06009,CA,Calaveras County,2024,1,8756.535863,795,122863,7661.993891,9851.077834,0,,,,2,,,,2,,,,2,5321.321031,3334.843559,8056.54399,1,9383.798114,8079.772458,10687.82377,,,,,2,,0.164,,,0.139,0.191,3.958963276,,,3.125400941,4.832579002,5.80725382,,,4.708315468,6.914465752,0.065201192,175,2684,0.055861089,0.074541295,0,,,,,,,,,,0.063781321,0.040922216,0.086640426,0.063765182,0.052991931,0.074538434,,,,,,,0.147,,,0.117,0.182,0.306,,,0.235,0.384,7.9,0.059895028,0.112,,,0.196,,,0.158,0.24,0.761105714,34472,45292,,,0.157457109,,,0.124972135,0.193821694,0.352941177,24,68,0.291210144,0.414240464,26,12,46221,,,12.52019386,93,7428,10.10541232,15.33808334,,,,,,,,,,11.38406231,6.85394917,17.77762347,11.38147567,8.642431648,14.71319658,,,,,,,0.068993654,2283,33090,0.058270249,0.079717058,0.000389433,18,46221,,,2567.833333,0.000493954,23,46563,,,2024.478261,0.002276486,106,46563,,,439.2735849,1865,,,,,,,,887,1889,0.37,,,,,0.29,0.31,0.29,0.36,0.37,0.39,,,,,0.29,0.42,0.23,0.31,0.4,0.925533717,32775,35412,0.910309666,0.940757768,0.597075638,5431,9096,0.523686125,0.67046515,0.036423246,811,22266,,,0.162,1267,,0.107191489,0.216808511,,,,0.162162162,0,0.605661014,,,,0.223945409,0.113398995,0.334491824,0.118178249,0.068915592,0.167440906,4.441097623,147440,33199,3.785905983,5.096289264,0.182926829,1395,7626,0.122870782,0.242982877,8.870426862,41,46221,,,97.95129426,225,229706,85.15232515,110.7502634,,,,,,,,,,46.98144233,25.68519171,78.82687715,105.127842,90.2959974,119.9596866,,,,5.5,,,,,1,,,,,0.181014151,3070,16960,0.151725314,0.210302988,0.166617078,0.136379351,0.196854806,0.018573113,0.009658194,0.027488032,0.003832547,0,0.00919227,0.731809098,12451,17014,0.699536136,0.764082061,,,,,,,,,,0.789005659,0.657777811,0.920233507,0.644706144,0.580962194,0.708450094,0.563,,17014,0.490750144,0.635249856,78.62031857,,,77.66957517,79.57106197,,,,,,,,,,83.7236001,80.39377936,87.05342085,77.83127696,76.76126867,78.90128525,,,,392.6184686,795,122863,360.2034965,425.0334408,,,,,,,,,,255.5319854,189.6607649,336.8870664,418.0151579,380.0033243,456.0269916,,,,37.67351552,13,34507,20.05956035,64.42285889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.118,,,0.101,0.137,0.176,,,0.153,0.202,0.093,,,0.078,0.108,125.5,51,40636,,,0.112,5100,,,,0.059895028,2729.895571,45578,,,23.83807446,33,138434,16.4090336,33.47751945,,,,,,,,,,,,,27.34431967,18.44909766,39.0357166,,,,0.324,,,0.309,0.339,0.078350352,1972,25169,0.065243969,0.091456735,0.041063091,343,8353,0.027956708,0.054169474,0.000279192,13,46563,,,3581.769231,0.924299754,376.19,407,,,,,,,,2.687896643,,,,,,,,2.560735915,2.739321237,2.361358548,,,,,,,,2.212713913,2.421056553,0.018079351,,,,,266.622675,,,,,0.750264598,49621,66138,0.472792855,1.027736341,73175,,,63293.97872,83056.02128,,,,,,,81525,80637.34043,82412.65957,66619,57898.48936,75339.51064,78407,74165.29787,82648.70213,,,,,,0.471723347,2469,5234,,,85.02412992,,,,,0.285562009,,73175,,,10.84150749,21,1937,,,5.004613628,16,319705,2.860569104,8.127178992,,,,,,,,,,,,,3.888629647,1.864749065,7.151328372,,,,22.97732217,58,229706,16.75981646,30.74546487,25.24966697,,,,,,,,,,,,,25.46119336,18.0178558,34.94747716,,,,18.71958068,43,229706,13.54745336,25.21515233,,,,,,,,,,,,,20.69874609,14.64766466,28.41064619,,,,24.71027979,79,319705,19.56336121,30.7963814,,,,,,,,,,,,,26.4426816,20.53377693,33.52239973,,,,,,,,,,,0.726795987,27164,37375,,,0.51,,,,,23.49160927,,,,,0.820676823,14114,17198,0.792508467,0.848845179,0.186507463,3124,16750,0.156331911,0.216683014,0.854750552,14700,17198,0.823307279,0.886193826,46563,,,,,0.172991431,8055,46563,,,0.289478771,13479,46563,,,0.008461654,394,46563,,,0.02089642,973,46563,,,0.021905805,1020,46563,,,0.002706011,126,46563,,,0.149431952,6958,46563,,,0.775358117,36103,46563,,,0.005798028,254,43808,0.001621156,0.0099749,0.498872495,23229,46563,,,0.819747417,37128,45292,, -06,011,06011,CA,Colusa County,2024,1,6260.597177,230,60908,5065.401489,7455.792865,0,,,,2,,,,2,,,,2,4734.52579,3478.751469,6295.915616,,9132.167506,6174.766491,12089.56852,,,,,2,,0.22,,,0.189,0.254,4.256431171,,,3.364504385,5.197130035,5.499333302,,,4.324300978,6.686535832,0.060240964,120,1992,0.049792183,0.070689745,0,,,,,,,,,,0.062032885,0.049107818,0.074957952,0.071428571,0.047944212,0.094912931,,,,,,,0.144,,,0.117,0.175,0.334,,,0.255,0.417,6.9,0.123562542,0.124,,,0.26,,,0.213,0.312,0.767846513,16769,21839,,,0.16994572,,,0.133862389,0.208213468,0.222222222,10,45,0.146097053,0.305418946,260.1,57,21917,,,17.81609195,93,5220,14.37988558,21.82591629,,,,,,,,,,18.45680595,14.44131394,23.2432925,11.14206128,5.757265653,19.46293876,,,,,,,0.116033293,2119,18262,0.099352442,0.132714144,0.00027376,6,21917,,,3652.833333,0.000365063,8,21914,,,2739.25,0.002281646,50,21914,,,438.28,3265,,,,,8028,4565,,2521,3407,0.33,,,,,,,0.21,0.28,0.37,0.41,,,,,0.19,0.42,0.15,0.39,0.41,0.732758006,10274,14021,0.700994642,0.764521369,0.510479574,2874,5630,0.434978938,0.585980209,0.116035613,1186,10221,,,0.137,785,,0.089340426,0.184659575,,,,,,,,,,0.133692344,0.087917776,0.179466911,0.229875519,0.116294669,0.343456369,4.749092869,132191,27835,3.87187242,5.626313317,0.171718912,997,5806,0.124463994,0.218973829,5.018935073,11,21917,,,63.62144319,69,108454,49.50128032,80.51700822,,,,,,,,,,47.32029736,32.15184622,67.16738487,89.33647365,61.49511782,125.461624,,,,7,,,,,1,,,,,0.165075034,1210,7330,0.132484057,0.197666011,0.103234687,0.073046959,0.133422415,0.059345157,0.038344949,0.080345365,0.008867667,0,0.018693473,0.80289121,7609,9477,0.763547208,0.842235213,,,,,,,,,,0.766422051,0.729710351,0.803133751,0.736050157,0.681441669,0.790658644,0.339,,9477,0.272649981,0.405350019,79.50742427,,,78.26831096,80.74653758,,,,,,,,,,83.35918007,80.79154396,85.92681618,76.5232493,74.25861022,78.78788837,,,,321.5402906,230,60908,278.9696094,364.1109717,,,,,,,,,,217.3567354,169.7574136,274.1659462,432.4147633,349.6174292,515.2120974,,,,54.40273568,14,25734,29.74248184,91.27854637,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.133,,,0.115,0.153,0.17,,,0.146,0.196,0.119,,,0.102,0.139,111.7,20,17901,,,0.124,2700,,,,0.123562542,2646.586078,21419,,,15.37941005,10,65022,7.375024909,28.28328265,,,,,,,,,,,,,,,,,,,0.338,,,0.324,0.352,0.140530664,1769,12588,0.119083856,0.161977473,0.06306457,377,5978,0.042809251,0.083319889,0.000410696,9,21914,,,2434.888889,0.938461539,341.6,364,,,,,,,,2.792946675,,,,,,,,2.756972615,,2.633056216,,,,,,,,2.520677479,,0.107506061,,,,,-8466.005,,,,,0.745752473,39504,52972,0.619125493,0.872379453,72963,,,65979.68085,79946.31915,104625,43440.82979,165809.1702,,,,,,,77093,68826.44681,85359.55319,68333,58173.17021,78492.82979,,,,,,0.714373089,3504,4905,,,38.78166641,,,,,0.269300879,,72963,,,9.791122715,15,1532,,,,,,,,,,,,,,,,,,,,,,,,,,9.155436906,10,108454,4.390387865,16.83717444,9.220499013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,25.07853541,38,151524,17.74706426,34.42224923,,,,,,,,,,26.43899752,16.93996459,39.33913257,,,,,,,,,,,,,,0.628830964,7961,12660,,,0.568,,,,,121.7675749,,,,,0.630516685,4686,7432,0.59045093,0.670582439,0.12419128,883,7110,0.079541777,0.168840783,0.80287944,5967,7432,0.764775886,0.840982995,21914,,,,,0.263621429,5777,21914,,,0.160992973,3528,21914,,,0.01058684,232,21914,,,0.028703112,629,21914,,,0.016701652,366,21914,,,0.00638861,140,21914,,,0.61732226,13528,21914,,,0.325773478,7139,21914,,,0.146349862,2975,20328,0.124202546,0.168497179,0.488637401,10708,21914,,,0.427034205,9326,21839,, -06,013,06013,CA,Contra Costa County,2024,1,5388.307189,10669,3229981,5232.226507,5544.387871,0,4088.965526,2423.380116,6462.328391,1,2697.188106,2448.420266,2945.955946,,12233.3977,11435.22019,13031.57521,,5072.796741,4790.373181,5355.2203,,5113.391369,4863.20868,5363.574059,,9094.5665,6812.45439,11895.9169,,,0.135,,,0.115,0.158,3.07495856,,,2.418373282,3.742245643,4.640710623,,,3.829158984,5.449331493,0.07158263,5974,83456,0.069833578,0.073331683,0,0.138613861,0.07122352,0.206004203,0.088693485,0.084056823,0.093330147,0.121730382,0.114047445,0.12941332,0.064992771,0.062123537,0.067862005,0.054128039,0.051448722,0.056807355,0.066780822,0.046533511,0.087028133,0.082904517,0.073766698,0.092042336,0.096,,,0.076,0.119,0.243,,,0.196,0.293,9,0.028674706,0.075,,,0.175,,,0.143,0.209,0.973871435,1135463,1165927,,,0.167826533,,,0.137974739,0.201224246,0.292682927,120,410,0.267977839,0.317686792,423.9,4923,1161413,,,7.754407905,1947,251083,7.409961435,8.098854375,,,,0.802152875,0.545023961,1.138591976,12.23776224,10.78606263,13.68946184,14.69517743,13.89386912,15.49648575,2.573209626,2.227635326,2.918783926,11.35371179,6.045373355,19.41519294,5.031091012,4.040379205,6.191190412,0.052153772,50641,970994,0.047387815,0.05691973,0.001014282,1178,1161413,,,985.9193548,0.00093434,1081,1156966,,,1070.273821,0.004019997,4651,1156966,,,248.7563965,2096,,,,,,1486,3961,2117,1993,0.4,,,,,0.25,0.37,0.32,0.31,0.43,0.48,,,,,0.39,0.49,0.3,0.36,0.52,0.897171871,725350,808485,0.893261869,0.901081873,0.719450354,219482,305069,,,0.035209084,19417,551477,,,0.1,24751,,0.08093617,0.11906383,0.166851441,0.066556903,0.26714598,0.08091744,0.065963322,0.095871557,0.160638048,0.128074499,0.193201598,0.145501142,0.131356802,0.159645483,0.0448123,0.035416622,0.054207978,4.744894483,236756,49897,4.572629579,4.917159386,0.192270966,49534,257626,0.179835869,0.204706064,5.450257574,633,1161413,,,52.45513993,3024,5764926,50.58552043,54.32475942,69.29570367,34.5921656,123.9891553,22.70304611,19.78788714,25.61820507,107.7195707,98.64236761,116.7967738,39.71060399,36.52778477,42.89342321,60.70239121,57.61598939,63.78879303,59.08855898,33.77421691,95.95611787,7.8,,,,,1,,,,,0.203150891,80915,398300,0.196141294,0.210160488,0.158050165,0.151897369,0.164202962,0.05003766,0.04634954,0.05372578,0.010042681,0.008726358,0.011359005,0.62048811,345234,556391,0.612184271,0.62879195,0.696095076,0.502503823,0.88968633,0.552741173,0.538809406,0.566672941,0.635426794,0.609196765,0.661656823,0.704329079,0.687386835,0.721271323,0.621185438,0.608738387,0.633632489,0.513,,556391,0.500966547,0.525033453,81.55897218,,,81.38651313,81.73143124,82.17593338,78.89197142,85.45989535,87.61163586,87.06170755,88.16156416,73.94582656,73.3060806,74.58557251,83.06382295,82.561274,83.5663719,81.35704794,81.11850481,81.59559108,77.61668028,74.46693437,80.7664262,259.2144497,10669,3229981,254.1486161,264.2802833,263.927874,181.6758043,370.6528624,142.0393656,133.43054,150.6481913,550.2894004,524.9476976,575.6311033,241.602418,230.4276972,252.7771388,251.4976248,244.0629511,258.9322986,513.4645701,413.4096424,630.4207113,33.4680253,381,1138400,30.1073723,36.8286783,,,,14.87816437,9.804804067,21.64694802,69.30079696,53.59723135,88.16760549,38.71438646,32.65848742,44.7702855,29.88292596,24.22069863,35.54515328,,,,3.56221449,301,84498,3.159782136,3.964646845,,,,1.824433373,1.191780452,2.673217605,6.691343964,4.91654786,8.898068955,4.247551515,3.490715063,5.004387966,2.823041738,2.235028729,3.518352314,,,,5.945639864,3.680444786,9.088542111,0.093,,,0.079,0.107,0.139,,,0.12,0.159,0.091,,,0.078,0.106,278.2,2738,984143,,,0.075,87070,,,,0.028674706,30080.48362,1049025,,,19.12166106,663,3467272,17.66611846,20.57720367,,,,4.125641656,2.695006104,6.045020919,39.77540157,32.65867924,46.89212389,16.41037311,13.78416645,19.03657976,22.92219296,20.45647617,25.38790976,,,,0.317,,,0.306,0.329,0.060955066,43494,713542,0.05499762,0.066912513,0.03001401,8141,271240,0.022865074,0.037162946,0.000607624,703,1156966,,,1645.755334,0.896405352,11857.65,13228,,,0.049784053,2997,60200,0.040436192,0.059131915,2.983580883,,,,,,3.554528354,2.290598441,2.48902267,3.389642364,2.840646065,,,,,,3.586187969,2.004403377,2.302938427,3.277786973,0.19790424,,,,,-289.9653647,,,,,0.82184085,74753,90958,0.795688582,0.847993117,119667,,,115997.2128,123336.7872,89563,67605.04255,111520.9575,144236,139966.8936,148505.1064,82271,76878.31915,87663.68085,96027,91427.85106,100626.1489,133672,129904.5106,137439.4894,,,,,,0.357076003,59897,167743,,,56.17509014,,,,,0.296506138,,119667,,,8.549267095,550,64333,,,5.780636314,464,8026798,5.254652078,6.306620549,,,,1.002438073,0.548042222,1.681920752,33.09435028,28.83575922,37.35294134,5.529819189,4.519128925,6.540509454,2.340300495,1.858536405,2.90877983,,,,9.199566563,556,5764926,8.418025426,9.981107701,9.644529696,,,,5.448261276,4.092901553,7.108799136,8.552826173,6.18972271,11.52060073,5.78829739,4.623486368,7.15731936,11.93557969,10.54369905,13.32746034,,,,8.083364817,466,5764926,7.349433714,8.81729592,,,,1.851321356,1.114616393,2.891067625,32.05702567,27.10518846,37.00886287,5.976512307,4.805821663,7.34614829,6.740171298,5.711716916,7.768625681,,,,8.633579667,693,8026798,7.990773026,9.276386307,,,,4.654176766,3.591995369,5.932130347,17.83100769,14.70509422,20.95692117,9.424735314,8.10527237,10.74419826,7.627646056,6.707525697,8.547766416,,,,,,,,,,,0.751078523,581316,773975,,,0.753,,,,,376.8631255,,,,,0.671635617,274388,408537,0.664726149,0.678545085,0.170129789,68097,400265,0.163518833,0.176740745,0.946866502,386830,408537,0.943309896,0.950423107,1156966,,,,,0.216721148,250739,1156966,,,0.173547883,200789,1156966,,,0.085804596,99273,1156966,,,0.010936363,12653,1156966,,,0.202413036,234185,1156966,,,0.00634418,7340,1156966,,,0.269504895,311808,1156966,,,0.398086893,460573,1156966,,,0.059230655,65143,1099819,,,0.507431506,587081,1156966,,,0.010001484,11661,1165927,, -06,015,06015,CA,Del Norte County,2024,1,10703.71059,579,77955,9368.366547,12039.05464,0,24385.78549,17499.66069,33082.07157,,,,,2,,,,2,4240.932745,2553.318549,6622.741815,1,11431.84571,9540.829717,13322.86171,,,,,2,,0.205,,,0.177,0.236,4.350281998,,,3.450758266,5.315109112,5.799220601,,,4.641058884,7.033903041,0.066119939,129,1951,0.0550934,0.077146477,0,0.06779661,0.03076021,0.10483301,,,,,,,0.058823529,0.034976662,0.082670397,0.059633028,0.045574659,0.073691396,,,,0.092485549,0.049314089,0.135657009,0.174,,,0.141,0.209,0.327,,,0.25,0.408,6.5,0.144451166,0.134,,,0.234,,,0.19,0.28,0.839346862,23286,27743,,,0.172862371,,,0.137175808,0.213763407,0.27027027,10,37,0.184074024,0.36059786,242,68,28100,,,26.54508612,131,4935,21.99934643,31.09082581,,,,,,,,,,24.37166794,16.67020283,34.40552329,24.23263328,18.49205208,31.19220251,,,,67.38544474,43.60830687,99.47420943,0.084209991,1657,19677,0.071103608,0.097316374,0.000604982,17,28100,,,1652.941177,0.000849273,23,27082,,,1177.478261,0.005058711,137,27082,,,197.6788321,1451,,,,,,,,2692,1389,0.26,,,,,0.23,0.26,,0.18,0.27,0.3,,,,,0.26,0.26,,0.27,0.31,0.831994713,16367,19672,0.807381652,0.856607774,0.49898084,3672,7359,0.437059629,0.560902051,0.051158817,479,9363,,,0.225,1243,,0.140404255,0.309595745,0.125714286,0.018475994,0.232952577,0.287804878,0.097648318,0.477961439,,,,0.285137862,0.176466539,0.393809184,0.151926606,0.076125612,0.227727599,4.99543025,122433,24509,3.912079833,6.078780667,0.223450181,1294,5791,0.130458811,0.316441552,3.914590747,11,28100,,,114.2421935,159,139178,96.48460273,131.9997842,227.1604938,144.000267,340.8522755,,,,,,,,,,135.5437389,110.9829337,160.1045442,,,,6.1,,,,,1,,,,,0.185619582,1820,9805,0.150457121,0.220782043,0.149557061,0.115738739,0.183375383,0.039775625,0.022568837,0.056982412,0.008159103,0.002017331,0.014300874,0.720932653,6926,9607,0.672126539,0.769738768,0.768,0.589673762,0.946326238,,,,,,,0.729166667,0.589264186,0.869069147,0.739796629,0.6785629,0.801030358,0.165,,9607,0.112574468,0.217425532,74.61469689,,,73.56080158,75.6685922,65.8136592,61.25438818,70.37293021,,,,,,,86.60007423,79.20121941,93.99892905,73.77604897,72.40656781,75.14553013,,,,535.5432071,579,77955,489.3984442,581.6879701,1088.098568,834.238933,1394.893258,,,,,,,187.7887584,120.3198009,279.4147871,573.2175874,513.7776074,632.6575675,,,,43.2169096,11,25453,21.57372556,77.32698901,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.135,,,0.117,0.154,0.181,,,0.157,0.206,0.111,,,0.095,0.129,183.4,44,23991,,,0.134,3700,,,,0.144451166,4132.747869,28610,,,29.80448259,25,83880,19.28788966,43.99729578,,,,,,,,,,,,,36.86886328,22.19746413,57.57529703,,,,0.35,,,0.337,0.361,0.103850808,1459,14049,0.087169957,0.120531659,0.035999321,212,5889,0.024084427,0.047914214,0.000775423,21,27082,,,1289.619048,0.838739496,199.62,238,,,,,,,,2.461057535,,,,,,,,2.421864152,2.567855016,2.154773244,,,,,,,,2.081822306,2.277585032,0.03775925,,,,,-1551.175,,,,,0.951782099,46545,48903,0.74806099,1.155503208,57297,,,51189.42553,63404.57447,57014,28342,85686,152083,36253.55319,267912.4468,,,,60786,42899.3617,78672.6383,62698,54139.53192,71256.46809,,,,,,0.666905444,2793,4188,,,54.48724847,,,,,0.332268705,,57297,,,8.365508366,13,1554,,,10.3107665,20,193972,6.298084046,15.92414261,,,,,,,,,,,,,9.936160171,5.134158953,17.35647221,,,,22.06710103,31,139178,14.77868389,31.69203805,22.2736352,,,,,,,,,,,,,28.35411811,17.55164601,43.34228147,,,,17.24410467,24,139178,11.04862324,25.65786086,,,,,,,,,,,,,20.85288291,12.35874,32.95654522,,,,20.10599468,39,193972,14.2973277,27.48555661,93.18328435,49.6161744,159.3462542,,,,,,,,,,17.3882803,10.76361956,26.57983352,,,,,,,,,,,0.558410531,11453,20510,,,0.597,,,,,37.23091809,,,,,0.681217209,6492,9530,0.640980753,0.721453665,0.141901371,1315,9267,0.107561656,0.176241085,0.895697796,8536,9530,0.868493908,0.922901685,27082,,,,,0.20895798,5659,27082,,,0.20533934,5561,27082,,,0.028875268,782,27082,,,0.099106418,2684,27082,,,0.03507865,950,27082,,,0.002067794,56,27082,,,0.207665608,5624,27082,,,0.613100953,16604,27082,,,0.016374494,425,25955,0.008120405,0.024628583,0.464293627,12574,27082,,,0.436975093,12123,27743,, -06,017,06017,CA,El Dorado County,2024,1,5834.34852,2178,529393,5396.999752,6271.697288,0,,,,2,2624.560835,1500.163288,4262.122367,1,9483.682257,4336.543425,18002.98304,1,5142.754442,4105.408449,6180.100434,,6151.4469,5626.683279,6676.210522,,,,,2,,0.126,,,0.106,0.151,3.200223705,,,2.458121643,4.026125482,5.424733266,,,4.375242496,6.518183793,0.066411936,730,10992,0.061756949,0.071066923,0,,,,0.088183422,0.064842835,0.111524008,0.144578313,0.068919638,0.220236988,0.077432501,0.065608713,0.08925629,0.061266874,0.055911598,0.066622151,,,,0.057894737,0.034412821,0.081376653,0.112,,,0.086,0.143,0.281,,,0.217,0.355,8.7,0.042585672,0.08,,,0.166,,,0.131,0.205,0.8708633,166496,191185,,,0.183460247,,,0.148017412,0.226030331,0.333333333,44,132,0.28947401,0.377346194,185.8,359,193221,,,6.359555366,238,37424,5.551587022,7.167523709,,,,,,,,,,12.91190316,10.45868302,15.76764371,4.937588877,4.071991382,5.803186371,,,,,,,0.048232768,7279,150914,0.041083832,0.055381705,0.000755612,146,193221,,,1323.431507,0.000794203,153,192646,,,1259.124183,0.004251321,819,192646,,,235.2210012,1883,,,,,,1140,,1843,1896,0.47,,,,,0.22,0.38,0.52,0.33,0.48,0.45,,,,,0.34,0.46,0.4,0.37,0.46,0.947301885,133382,140802,0.940468159,0.954135611,0.727090553,30841,42417,0.691263745,0.762917361,0.03374312,3151,93382,,,0.065,2384,,0.038787234,0.091212766,0.02,0,0.543247813,0.010678057,0,0.058695378,0.100775194,0,0.448981286,0.174389766,0.117743791,0.231035741,0.081405062,0.059962662,0.102847463,4.979813204,201543,40472,4.563608601,5.396017808,0.157627614,5932,37633,0.129975252,0.185279976,6.106996652,118,193221,,,75.52255558,724,958654,70.02127918,81.02383198,,,,28.91844997,15.39785668,49.45143017,116.6452817,55.93594653,214.5148261,50.54094606,38.922687,64.5396598,84.33871946,77.71595895,90.96147997,,,,7,,,,,0,,,,,0.176176793,12875,73080,0.160883201,0.191470384,0.15119895,0.137307241,0.165090658,0.02545156,0.019865282,0.031037838,0.004584018,0.002348421,0.006819614,0.707025671,60894,86127,0.689597384,0.724453959,,,,0.640953357,0.548749697,0.733157017,,,,0.675317401,0.620004947,0.730629855,0.652720608,0.629151808,0.676289408,0.392,,86127,0.367436818,0.416563183,81.12715389,,,80.70610826,81.54819953,,,,86.09225305,83.83183949,88.35266662,78.95561505,73.28455329,84.62667681,84.01113136,82.23103073,85.79123199,80.64559473,80.17073649,81.12045297,,,,266.8416955,2178,529393,254.3602503,279.3231407,,,,130.2609975,94.64784017,174.8693091,349.9125209,207.3803362,553.0126394,228.5892479,193.5210409,263.6574549,280.9198769,266.2532631,295.5864907,,,,40.73295356,68,166941,31.63073227,51.63872455,,,,,,,,,,46.46300383,26.55762125,75.45300731,39.62892912,28.79444056,53.19998764,,,,2.90328434,32,11022,1.98584434,4.098571228,,,,,,,,,,,,,2.825947335,1.771006149,4.278518226,,,,,,,0.096,,,0.082,0.113,0.155,,,0.133,0.178,0.077,,,0.065,0.091,135.5,227,167553,,,0.08,15280,,,,0.042585672,7710.476672,181058,,,20.72578236,120,578989,17.01746937,24.43409534,,,,,,,,,,18.01523574,9.84909702,30.22650443,22.31996916,18.14056956,27.17376158,,,,0.316,,,0.301,0.331,0.05559945,6263,112645,0.047259024,0.063939875,0.028341185,1143,40330,0.02000076,0.036681611,0.000576186,111,192646,,,1735.54955,0.938593063,1921.3,2047,,,0.063928491,565,8838,0.030458068,0.097398913,3.075291219,,,,,,3.522420462,,2.649289376,3.200626294,2.875828658,,,,,,3.393364837,,2.436908284,3.004890949,0.082682684,,,,,-477.5575308,,,,,0.790009049,68967,87299,0.728857014,0.851161085,104859,,,100046.5745,109671.4255,87375,53278.14894,121471.8511,132054,112351.5319,151756.4681,63641,16323.38298,110958.617,74739,61748.19149,87729.80851,100278,95553.74468,105002.2553,,,,,,0.282032446,9214,32670,,,64.82509091,,,,,0.255209376,,104859,,,10.37942567,90,8671,,,2.55883245,34,1328731,1.772065857,3.575711871,,,,,,,,,,,,,2.528710591,1.651837713,3.705146907,,,,17.52259496,176,958654,14.76154119,20.28364872,18.35907429,,,,,,,,,,,,,20.70947386,17.21624438,24.20270333,,,,9.805414675,94,958654,7.923773165,11.99934426,,,,,,,,,,,,,11.64226304,9.312307665,14.37810014,,,,13.09520136,174,1328731,11.14942184,15.04098088,,,,,,,,,,13.79611639,8.839432091,20.52752762,13.71339205,11.4498352,15.97694891,,,,,,,,,,,0.798014564,116159,145560,,,0.547,,,,,90.8272081,,,,,0.761204948,57235,75190,0.748456039,0.773953856,0.159635445,11753,73624,0.145621348,0.173649542,0.917914616,69018,75190,0.908408654,0.927420578,192646,,,,,0.19323007,37225,192646,,,0.23598206,45461,192646,,,0.009203409,1773,192646,,,0.013620838,2624,192646,,,0.055698016,10730,192646,,,0.002460472,474,192646,,,0.140672529,27100,192646,,,0.753184598,145098,192646,,,0.012442809,2279,183158,0.009914947,0.014970671,0.49934076,96196,192646,,,0.366723331,70112,191185,, -06,019,06019,CA,Fresno County,2024,1,8530.041421,12629,2858733,8330.392454,8729.690388,0,12965.88306,9997.484477,15934.28164,,6994.305147,6454.217184,7534.393111,,16875.95208,15554.34521,18197.55895,,8282.909765,8017.556007,8548.263523,,8208.235641,7808.773704,8607.697577,,12603.92304,6711.058189,21553.09225,1,,0.214,,,0.185,0.246,4.135842172,,,3.323149359,4.991758779,5.187777358,,,4.258723787,6.191791456,0.074885635,7481,99899,0.073253438,0.076517831,0,0.094623656,0.068019834,0.121227478,0.084005776,0.078994902,0.089016649,0.13766064,0.127694054,0.147627227,0.071439163,0.069390111,0.073488215,0.063444274,0.059909403,0.066979145,0.107142857,0.049860661,0.164425053,0.084180791,0.071245363,0.097116219,0.139,,,0.112,0.166,0.368,,,0.307,0.432,7.4,0.053493111,0.136,,,0.251,,,0.209,0.295,0.840302026,847574,1008654,,,0.152342222,,,0.122427213,0.186394837,0.283870968,220,775,0.265996786,0.301936764,637.3,6460,1013581,,,22.31150522,5631,252381,21.72874195,22.8942685,24.40884821,16.69563411,34.45801074,9.222717914,7.989908997,10.45552683,32.24919835,28.88017778,35.61821892,26.73467755,25.93973429,27.52962081,10.5006054,9.582935649,11.41827516,,,,14.85068604,11.97174895,18.2130481,0.07586317,65596,864662,0.068714234,0.083012106,0.000675822,685,1013581,,,1479.680292,0.000640274,650,1015190,,,1561.830769,0.004806982,4880,1015190,,,208.0307377,2779,,,,,5791,2256,5097,3157,2466,0.38,,,,,0.34,0.26,0.32,0.32,0.44,0.41,,,,,0.4,0.43,0.3,0.35,0.45,0.782548463,488617,624392,0.776541929,0.788554997,0.580256754,164526,283540,0.566139661,0.594373846,0.063793214,28910,453183,,,0.251,69172,,0.224787234,0.277212766,0.330951773,0.243808543,0.418095004,0.241468742,0.210104979,0.272832504,0.445383121,0.395656876,0.495109366,0.311550821,0.297272997,0.325828645,0.121583453,0.102744904,0.140422002,5.134249869,136684,26622,4.979320365,5.289179372,0.279426882,78828,282106,0.267513077,0.291340687,5.209253133,528,1013581,,,67.63713279,3380,4997255,65.35688045,69.91738513,118.8011269,82.74933778,165.2236087,46.0136814,40.19214749,51.83521531,118.7771568,104.738594,132.8157196,55.22738743,52.41936117,58.0354137,90.52466322,85.5788955,95.47043094,,,,11.7,,,,,1,,,,,0.259662362,80520,310095,0.251674877,0.267649847,0.177497464,0.169933656,0.185061272,0.096438188,0.090325155,0.102551221,0.010529031,0.009082465,0.011975598,0.758866713,312282,411511,0.751077692,0.766655735,0.806272669,0.744430327,0.868115011,0.743175728,0.728995506,0.757355949,0.748589937,0.706441543,0.790738331,0.751950229,0.742139279,0.76176118,0.778740584,0.768351023,0.789130146,0.257,,411511,0.247542846,0.266457154,76.63794056,,,76.45494264,76.82093848,74.76268871,71.99841529,77.52696212,79.12803377,78.51605679,79.74001075,68.9989333,68.1184939,69.8793727,77.32883437,77.02587362,77.63179512,76.69252249,76.37358223,77.01146274,,,,423.9114798,12629,2858733,416.4220992,431.4008604,639.9188544,526.3089451,753.5287637,350.2169865,328.9613727,371.4726003,792.4391513,744.6739364,840.2043662,414.003328,402.7909511,425.2157049,410.5447357,397.9401403,423.1493312,566.6537197,346.1268133,875.1507117,51.78601245,642,1239717,47.78010392,55.79192099,,,,46.35169984,34.91844374,60.33310858,112.8607513,86.72530015,144.3979278,49.80956269,44.92211241,54.69701297,50.13696507,40.76743585,59.5064943,,,,6.078187595,616,101346,5.598189167,6.558186023,,,,4.947589099,3.766334057,6.382029464,12.81512605,9.802556,16.46156553,6.149041042,5.529146856,6.768935229,5.43506939,4.385424122,6.484714657,,,,,,,0.128,,,0.111,0.145,0.166,,,0.144,0.191,0.126,,,0.108,0.144,270.6,2196,811613,,,0.136,136560,,,,0.053493111,49772.66525,930450,,,16.7241837,504,3013600,15.26407317,18.18429423,,,,6.891733992,4.319013001,10.43416809,29.40606913,21.1023029,39.89265319,13.22652506,11.46262102,14.9904291,24.71656164,21.35754265,28.07558063,,,,0.327,,,0.315,0.338,0.098793651,58047,587558,0.089261736,0.108325566,0.029832591,8682,291024,0.023875144,0.035790038,0.000985037,1000,1015190,,,1015.19,0.876507342,11818.825,13484,,,0.088204927,5382,61017,0.074781388,0.101628465,2.865603231,,,,,,3.126467654,2.41435237,2.728270324,3.388168912,2.716984117,,,,,,3.031417761,2.266345081,2.576762055,3.218771489,0.160239741,,,,,-17310.74829,,,,,0.883067663,47532,53826,0.850422579,0.915712746,68693,,,65813.17021,71572.82979,61845,54270.70213,69419.29787,82821,77974.02128,87667.97872,46165,40382.70213,51947.29787,56913,55206.78723,58619.21277,81014,78448.7234,83579.2766,,,,,,0.734428875,150165,204465,,,45.87234103,,,,,0.330761504,,68693,,,5.380855343,404,75081,,,8.098352841,563,6952031,7.429395277,8.767310405,,,,4.326744585,2.939813026,6.141468567,41.73042148,34.69091913,48.76992383,8.389897918,7.458928422,9.320867413,3.876839759,3.064480951,4.838471474,,,,10.83039679,523,4997255,9.888836349,11.77195724,10.46574569,,,,7.298024368,5.083341373,10.14978523,9.623544573,5.957125769,14.71061015,7.51118618,6.424382457,8.597989903,16.07767399,13.94728301,18.20806497,,,,11.70642683,585,4997255,10.75778451,12.65506914,,,,6.710328538,4.673989693,9.332442592,41.03210871,33.19742623,50.15962511,9.848760208,8.662951329,11.03456909,12.66079206,10.8111798,14.51040432,,,,16.59946568,1154,6952031,15.64172645,17.55720491,24.22832776,11.61842491,44.55675738,15.07381985,12.23088102,17.91675867,19.16508246,14.69375883,24.56877077,17.23693771,15.90253422,18.5713412,16.05409285,14.30327655,17.80490915,,,,,,,,,,,0.604552571,364917,603615,,,0.662,,,,,228.6494504,,,,,0.541762743,172455,318322,0.533814898,0.549710589,0.186823713,57339,306915,0.179301039,0.194346388,0.853318338,271630,318322,0.846465423,0.860171253,1015190,,,,,0.276480265,280680,1015190,,,0.128998513,130958,1015190,,,0.046385406,47090,1015190,,,0.032080694,32568,1015190,,,0.119070322,120879,1015190,,,0.002990573,3036,1015190,,,0.549854707,558207,1015190,,,0.266738246,270790,1015190,,,0.102020548,95429,935390,,,0.497474364,505031,1015190,,,0.112650126,113625,1008654,, -06,021,06021,CA,Glenn County,2024,1,9264.629412,424,79673,7951.357865,10577.90096,0,,,,2,,,,2,,,,2,6501.962071,5038.931298,8257.261994,,11560.46728,9267.064325,13853.87023,,,,,2,,0.212,,,0.182,0.244,4.338596546,,,3.483129615,5.26595507,5.617292454,,,4.545324366,6.753139261,0.056110684,146,2602,0.047267967,0.064953401,0,,,,,,,,,,0.053970702,0.041673185,0.066268218,0.056867892,0.043441702,0.070294081,,,,,,,0.157,,,0.128,0.191,0.318,,,0.249,0.396,7.6,0.087453033,0.11,,,0.253,,,0.209,0.301,0.815229796,23574,28917,,,0.171798436,,,0.139491085,0.20999561,0.264705882,9,34,0.174780223,0.359592316,197.9,57,28805,,,18.11487482,123,6790,14.91348284,21.3162668,,,,,,,,,,23.16910786,18.5575056,28.57900894,11.85921959,8.057764338,16.83321557,,,,,,,0.11599983,2734,23569,0.099318979,0.132680681,0.000173581,5,28805,,,5761,0.000882177,25,28339,,,1133.56,0.001834927,52,28339,,,544.9807692,3808,,,,,,7818,,3164,3876,0.37,,,,,0.36,0.26,,0.3,0.39,0.31,,,,,0.08,0.3,0.31,0.34,0.3,0.778078484,14375,18475,0.752242284,0.803914685,0.462707571,3288,7106,0.386959072,0.53845607,0.053339554,686,12861,,,0.192,1433,,0.133617021,0.250382979,0.178707224,0,0.367934261,0.814241486,0.33496119,1,,,,0.183085282,0.112524258,0.253646307,0.21011396,0.096419975,0.323807945,4.321710072,118981,27531,3.720548405,4.92287174,0.209713607,1589,7577,0.136891326,0.282535888,6.943239021,20,28805,,,95.3241728,135,141622,79.24394368,111.4044019,,,,,,,,,,44.57873099,29.37766462,64.85971312,137.5612358,111.6788606,167.6430852,,,,7.8,,,,,0,,,,,0.217816936,2225,10215,0.170766269,0.264867603,0.186138614,0.142121834,0.230155394,0.039647577,0.021515251,0.057779904,0.014194812,0.003030744,0.025358879,0.760273973,9213,12118,0.717598454,0.802949492,,,,,,,,,,0.782496481,0.732556168,0.832436794,0.76627794,0.716226687,0.816329193,0.305,,12118,0.247093127,0.362906873,76.24486845,,,75.13544932,77.35428759,,,,,,,,,,83.31530269,79.31348929,87.31711609,74.15675078,72.48484134,75.82866021,,,,442.5956405,424,79673,398.7896984,486.4015826,,,,,,,,,,327.4713919,263.3256703,402.5179373,508.0599561,443.8316141,572.288298,,,,78.38644518,26,33169,51.20462847,114.854304,,,,,,,,,,,,,123.5381321,69.14335474,203.7573618,,,,7.668711656,20,2608,4.684248307,11.84370318,,,,,,,,,,,,,,,,,,,,,,0.135,,,0.118,0.154,0.177,,,0.156,0.202,0.113,,,0.097,0.131,81.2,19,23409,,,0.11,3160,,,,0.087453033,2459.354197,28122,,,33.92566769,29,85481,22.7205521,48.72291789,,,,,,,,,,,,,53.96527452,34.20935485,80.97440848,,,,0.337,,,0.324,0.349,0.146671658,2351,16029,0.12403336,0.169309956,0.052711415,417,7911,0.036030563,0.069392266,0.000635167,18,28339,,,1574.388889,0.892724868,337.45,378,,,0.097532989,170,1743,0.034492901,0.160573077,2.484883714,,,,,,,,2.290963205,2.874945454,2.256390449,,,,,,,,2.052383699,2.582141631,0.140905992,,,,,-6490.545,,,,,0.923066957,42750,46313,0.794469977,1.051663938,63247,,,55860.95745,70633.04255,,,,68451,12565.38298,124336.617,,,,54606,47747.78723,61464.21277,70584,60870.97872,80297.02128,,,,,,0.738119484,4349,5892,,,,,,,,0.30632283,,63247,,,5.253104107,11,2094,,,8.092087961,16,197724,4.625327453,13.14104388,,,,,,,,,,,,,,,,,,,18.91913345,29,141622,12.57162678,27.34341543,20.47704453,,,,,,,,,,,,,26.82991178,16.15335954,41.89823073,,,,15.53430964,22,141622,9.735269148,23.51913148,,,,,,,,,,,,,26.67003551,16.05710358,41.64856413,,,,17.70144242,35,197724,12.32970322,24.61842132,,,,,,,,,,,,,25.91551542,16.92887508,37.9722346,,,,,,,,,,,0.64683653,11297,17465,,,0.641,,,,,85.23409082,,,,,0.606241018,5906,9742,0.563724452,0.648757585,0.188195871,1741,9251,0.14720507,0.229186672,0.858550606,8364,9742,0.827933848,0.889167363,28339,,,,,0.266734888,7559,28339,,,0.172236141,4881,28339,,,0.00779844,221,28339,,,0.034581319,980,28339,,,0.029994001,850,28339,,,0.002434807,69,28339,,,0.446028441,12640,28339,,,0.485373514,13755,28339,,,0.080118918,2129,26573,0.061606986,0.098630849,0.489431526,13870,28339,,,0.412110523,11917,28917,, -06,023,06023,CA,Humboldt County,2024,1,9031.755684,2279,378960,8464.048894,9599.462473,0,22506.2904,18605.4911,26407.0897,,3863.604191,2289.816706,6106.160322,1,10965.18972,6787.625262,16761.45727,1,6337.665764,4939.523544,7735.807984,,8532.914152,7882.825078,9183.003225,,,,,2,,0.174,,,0.146,0.204,4.066904445,,,3.226069229,4.971495714,6.238212428,,,5.153607275,7.342442806,0.062359851,584,9365,0.057462369,0.067257332,0,0.055793991,0.038778497,0.072809486,0.056790124,0.034249333,0.079330914,,,,0.061674009,0.049845716,0.073502302,0.063313401,0.05698349,0.069643313,,,,0.063917526,0.042147836,0.085687215,0.156,,,0.121,0.19,0.332,,,0.264,0.408,7.4,0.045402601,0.139,,,0.2,,,0.161,0.242,0.889493856,121383,136463,,,0.189621536,,,0.152044059,0.231567292,0.422764228,52,123,0.379907826,0.464654847,350.7,478,136310,,,10.8909296,338,31035,9.729848185,12.05201101,22.90448343,16.82935291,30.45810738,,,,,,,15.47355892,12.45834441,18.9981015,8.040201005,6.761994029,9.318407982,,,,10.47339757,6.777830686,15.46080088,0.074047555,7963,107539,0.063324151,0.084770959,0.000608906,83,136310,,,1642.289157,0.000822161,111,135010,,,1216.306306,0.005888453,795,135010,,,169.8238994,1891,,,,,4161,,1533,1544,1808,0.3,,,,,0.21,0.28,0.21,0.25,0.3,0.38,,,,,0.23,0.45,0.29,0.34,0.38,0.912650088,85435,93612,0.901505304,0.923794871,0.68227153,24353,35694,0.643652329,0.720890732,0.039868952,2373,59520,,,0.205,5012,,0.144234043,0.265765957,0.38028169,0.266252346,0.494311034,0.530179445,0.416070139,0.644288752,,,,0.216024535,0.155297664,0.276751406,0.15443164,0.121844272,0.187019008,5.108753428,121103,23705,4.63370449,5.583802365,0.243377743,6211,25520,0.206361008,0.280394478,8.656738317,118,136310,,,105.1513886,715,679972,97.44380821,112.858969,233.2050237,185.7464997,289.0927139,,,,166.8056714,91.19421275,279.871573,56.61150057,41.59600126,75.28129453,105.8784515,96.86428209,114.892621,,,,6.8,,,,,0,,,,,0.246674058,13350,54120,0.228384449,0.264963667,0.208545078,0.190143614,0.226946543,0.041297118,0.033594611,0.048999624,0.01395048,0.009516464,0.018384497,0.694121076,40486,58327,0.676881836,0.711360316,0.643813605,0.555781598,0.731845612,0.685435842,0.576281256,0.794590427,,,,0.626652565,0.57215359,0.681151539,0.721267856,0.696233861,0.74630185,0.183,,58327,0.162021665,0.203978335,76.4417762,,,75.94964549,76.93390691,65.60781887,63.28932593,67.92631182,91.17937534,78.93698697,103.4217637,74.54761404,68.05437135,81.04085673,82.49694757,79.17204093,85.82185421,76.75152722,76.20015663,77.30289782,,,,448.9990677,2279,378960,429.4179142,468.5802212,1015.14244,874.2131572,1156.071723,297.981367,198.0064543,430.6660412,727.8165921,483.6288398,1051.897619,300.0775237,241.7172275,358.43782,428.7908348,407.2439024,450.3377671,,,,43.79984298,53,121005,32.809088,57.29127303,125.3418414,62.57019562,224.2711772,,,,,,,,,,34.6212436,22.40504341,51.10778521,,,,5.413846955,52,9605,4.043319854,7.099540004,,,,,,,,,,,,,4.25170068,2.751476505,6.276348928,,,,,,,0.124,,,0.105,0.142,0.183,,,0.158,0.21,0.101,,,0.086,0.118,198.9,235,118141,,,0.139,19050,,,,0.045402601,6112.234391,134623,,,33.42796397,136,406845,27.80977241,39.04615552,103.3834587,64.78986312,156.5237988,,,,,,,,,,31.22544773,25.20296633,38.25328305,,,,0.348,,,0.331,0.362,0.087550484,7197,82204,0.074444101,0.100656867,0.032231467,860,26682,0.022699552,0.041763382,0.001318421,178,135010,,,758.4831461,0.901291001,1071.635,1189,,,0.113054255,821,7262,0.057539004,0.168569506,2.761261517,,,,,,2.467942528,,2.55938964,2.956367291,2.555613493,,,,,,2.488770767,,2.389703389,2.73199624,0.143850818,,,,,-5287.681856,,,,,0.823129621,45538,55323,0.749496284,0.896762957,57660,,,54068.85106,61251.14894,47670,31659.95745,63680.04255,39348,27312.76596,51383.23404,36588,17847.06383,55328.93617,57688,51717.44681,63658.55319,59011,55979.85106,62042.14894,,,,,,0.59281369,10427,17589,,,71.87623354,,,,,0.427610128,,57660,,,9.268645909,64,6905,,,8.08530522,77,952345,6.38079644,10.10524427,32.02497948,18.30504284,52.00656031,,,,,,,,,,6.815606603,5.025290277,9.036505551,,,,20.0272974,143,679972,16.63274813,23.42184666,21.03027772,,,,,,,,,,,,,21.84287166,17.74474204,25.94100128,,,,14.55942304,99,679972,11.83318061,17.72557513,42.14548622,23.5885087,69.51257023,,,,,,,,,,14.38348776,11.25419332,18.11362237,,,,18.48069765,176,952345,15.75034905,21.21104624,44.03434679,27.5960907,66.66853023,,,,,,,14.08128421,8.048670598,22.86712337,17.74897553,14.63744293,20.86050813,,,,,,,,,,,0.64381371,68843,106930,,,0.608,,,,,158.2009618,,,,,0.568217268,30965,54495,0.549405739,0.587028796,0.207471253,10880,52441,0.189071192,0.225871315,0.88775117,48378,54495,0.873260138,0.902242202,135010,,,,,0.185164062,24999,135010,,,0.199896304,26988,135010,,,0.012858307,1736,135010,,,0.064187838,8666,135010,,,0.031138434,4204,135010,,,0.003733057,504,135010,,,0.13225687,17856,135010,,,0.720568847,97284,135010,,,0.017226742,2232,129566,0.011934279,0.022519204,0.504207096,68073,135010,,,0.315345552,43033,136463,, -06,025,06025,CA,Imperial County,2024,1,8014.929036,2325,509948,7573.239189,8456.618882,0,27390.5529,18050.54695,39851.81641,,,,,2,7352.94405,5276.599599,9975.09887,,7479.646384,7016.036686,7943.256082,,12306.55035,10387.85635,14225.24436,,,,,2,,0.266,,,0.228,0.31,4.507621601,,,3.587756491,5.529452428,5.54684535,,,4.462827173,6.715615933,0.060454919,1103,18245,0.05699665,0.063913188,0,,,,,,,,,,0.056394343,0.052901565,0.059887121,0.063687151,0.047688589,0.079685713,,,,,,,0.142,,,0.112,0.175,0.38,,,0.305,0.459,6.4,0.076487356,0.17,,,0.3,,,0.247,0.355,0.811120633,145760,179702,,,0.161264648,,,0.126154264,0.196959855,0.306818182,54,176,0.268727075,0.345367705,470.4,846,179851,,,23.27900121,1074,46136,21.88674786,24.67125457,,,,,,,,,,24.69135803,23.18488556,26.19783049,8.228980322,5.216467634,12.34751088,,,,,,,0.079111885,11541,145882,0.068388481,0.089835289,0.000250207,45,179851,,,3996.688889,0.000324543,58,178713,,,3081.258621,0.001964043,351,178713,,,509.1538462,2059,,,,,1301,860,4643,2026,1970,0.27,,,,,,0.27,0.29,0.26,0.29,0.34,,,,,0.23,0.42,0.23,0.33,0.35,0.712706781,78541,110201,0.694530654,0.730882908,0.568386113,27569,48504,0.529111077,0.607661148,0.146677333,10268,70004,,,0.275,13642,,0.224957447,0.325042553,0.376411543,0.24258265,0.510240437,0.076422764,0,0.20661679,0.056140351,0,0.192557778,0.289358491,0.26125434,0.317462641,0.179327977,0.091986822,0.266669131,5.582167406,114507,20513,5.004851073,6.159483739,0.332522367,16948,50968,0.298148295,0.366896439,4.614931249,83,179851,,,59.38255389,538,905990,54.36463306,64.40047472,175.9014952,90.89086937,307.2645126,,,,62.83944522,34.35490945,105.4339114,49.21189552,44.25731877,54.16647226,140.7233401,116.2484728,165.1982074,,,,10.8,,,,,1,,,,,0.264256063,12095,45770,0.23934431,0.289167816,0.178931061,0.15718941,0.200672712,0.099082368,0.08403138,0.114133356,0.008520865,0.004026322,0.013015409,0.795820342,47220,59335,0.780591215,0.81104947,0.784660767,0.625046456,0.944275078,0.806006494,0.708542076,0.903470911,,,,0.797498601,0.780617108,0.814380094,0.792873367,0.726586453,0.859160282,0.24,,59335,0.215149519,0.264850481,77.44819982,,,77.00595462,77.89044502,,,,89.82870936,85.40472328,94.25269543,74.94292571,71.98657064,77.89928078,78.07232948,77.57932026,78.5653387,73.34236834,71.97014984,74.71458685,,,,434.666298,2325,509948,416.736648,452.595948,1146.268244,826.1293257,1549.421668,,,,513.5531949,385.7969658,670.0755201,405.9118853,386.6066145,425.2171561,616.4545979,553.739934,679.1692619,,,,34.86611852,79,226581,27.60383437,43.45358665,,,,,,,,,,35.75621989,28.07632322,44.88865972,,,,,,,3.605705499,68,18859,2.799971406,4.571090893,,,,,,,,,,3.762662808,2.903943718,4.795822623,,,,,,,,,,0.146,,,0.125,0.169,0.17,,,0.146,0.194,0.149,,,0.129,0.171,274.9,394,143322,,,0.17,30630,,,,0.076487356,13349.1852,174528,,,20.87439709,113,541333,17.02554882,24.72324536,,,,,,,,,,16.2223544,12.75991082,20.33486172,59.50210177,40.4287913,84.45848385,,,,0.347,,,0.33,0.362,0.105511827,10161,96302,0.090022466,0.121001189,0.029435438,1536,52182,0.021095012,0.037775863,0.000951246,170,178713,,,1051.252941,0.827113766,2457.355,2971,,,0.063922783,702,10982,0.036501354,0.091344212,2.626692977,,,,,,,,2.596160849,3.172019418,2.486429675,,,,,,,,2.464469644,3.048672758,0.191858556,,,,,-11029.84063,,,,,0.793508495,42221,53208,0.732710307,0.854306683,55523,,,49681.12766,61364.87234,59583,35927.17021,83238.82979,110288,85177.3617,135398.6383,55070,14405.65957,95734.34043,51501,48006.3617,54995.6383,68125,57346.78723,78903.21277,,,,,,0.760673917,28399,37334,,,59.29554084,,,,,0.349566846,,55523,,,4.575023233,64,13989,,,4.577511475,58,1267064,3.475896378,5.917495071,,,,,,,,,,4.390041145,3.225637109,5.837824066,,,,,,,6.951886492,61,905990,5.292098097,8.967427072,6.732966148,,,,,,,,,,4.577437213,3.150897156,6.42842372,20.52278432,11.95527815,32.85896577,,,,6.622589653,60,905990,5.05373359,8.524585636,,,,,,,,,,5.323714291,3.820389289,7.222219569,16.62086694,9.302573057,27.4135924,,,,12.07515958,153,1267064,10.16177075,13.98854841,,,,,,,,,,11.48883108,9.458441577,13.51922059,18.20333121,11.66321778,27.08511392,,,,,,,,,,,0.548745225,56743,103405,,,0.591,,,,,185.9803823,,,,,0.576769309,27122,47024,0.551806182,0.601732437,0.181610659,8274,45559,0.159607644,0.203613674,0.874128105,41105,47024,0.860156175,0.888100034,178713,,,,,0.281093149,50235,178713,,,0.13755015,24582,178713,,,0.022634056,4045,178713,,,0.025896269,4628,178713,,,0.021061702,3764,178713,,,0.002137505,382,178713,,,0.860670461,153813,178713,,,0.091190904,16297,178713,,,0.197727669,32857,166173,0.18443789,0.211017448,0.487205743,87070,178713,,,0.184054713,33075,179702,, -06,027,06027,CA,Inyo County,2024,1,10103.51508,339,49365,8313.882856,11893.1473,0,23359.31032,16079.47439,32805.15658,,,,,2,,,,2,7915.736179,4960.74972,11984.5197,1,8512.897227,6369.458693,10656.33576,,,,,2,,0.152,,,0.129,0.176,3.636861751,,,2.849449636,4.497769399,5.381968747,,,4.295815683,6.504085164,0.082278481,104,1264,0.06712958,0.097427382,0,0.104651163,0.058904437,0.150397888,,,,,,,0.089673913,0.060481922,0.118865904,0.071428571,0.050359579,0.092497564,,,,,,,0.131,,,0.104,0.16,0.294,,,0.224,0.371,7.9,0.077716449,0.102,,,0.183,,,0.147,0.222,0.871161128,16566,19016,,,0.171025992,,,0.135211545,0.209606069,0.236842105,9,38,0.153038699,0.327558833,289.9,55,18970,,,24,75,3125,18.87752246,30.08420782,23.45415778,11.70823106,41.96596698,,,,,,,21.06847254,13.999847,30.44980884,20.37351443,13.05369512,30.31417453,,,,119.0476191,57.08796067,218.93281,0.079163663,1098,13870,0.067248769,0.091078556,0.000685293,13,18970,,,1459.230769,0.000801368,15,18718,,,1247.866667,0.005075329,95,18718,,,197.031579,1083,,,,,,,,,1056,0.34,,,,,0.2,,,0.26,0.36,0.34,,,,,0.21,0.61,,0.27,0.35,0.930626668,12905,13867,0.915403606,0.94584973,0.676464185,3107,4593,0.586701002,0.766227367,0.03704152,306,8261,,,0.135,503,,0.083765957,0.186234043,0.219626168,0.118809877,0.32044246,0.67816092,0.126910863,1,,,,0.148452306,0.045665543,0.251239069,0.017041582,0,0.043877273,4.974529432,128706,25873,3.80071065,6.148348215,0.292600313,1123,3838,0.199422979,0.385777647,5.271481286,10,18970,,,94.43492775,86,91068,75.53575267,116.6263675,134.2975207,71.50777367,229.6528504,,,,,,,,,,109.7655336,83.96193576,140.9984199,,,,5.2,,,,,1,,,,,0.150219987,1195,7955,0.120437942,0.180002033,0.126994257,0.099043269,0.154945244,0.019484601,0.008921566,0.030047636,0.018856065,0.007031109,0.030681022,0.653446998,5289,8094,0.606237657,0.700656339,0.818998716,0.737963019,0.900034414,,,,,,,0.61136108,0.508706352,0.714015808,0.619741697,0.553039523,0.686443872,0.2,,8094,0.145425105,0.254574895,77.03428131,,,75.53244425,78.53611838,67.12572727,62.2548444,71.99661014,,,,,,,83.87105299,76.51714235,91.22496363,78.05203544,76.26601466,79.83805623,,,,463.041859,339,49365,408.4528297,517.6308884,957.4846295,721.3084585,1246.297855,,,,,,,314.3542337,217.6994452,439.2785331,421.9239923,357.0988392,486.7491454,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.109,,,0.094,0.125,0.163,,,0.141,0.187,0.091,,,0.077,0.106,148.6,24,16156,,,0.102,1920,,,,0.077716449,1441.329271,18546,,,45.40913632,25,55055,29.38639878,67.03284297,,,,,,,,,,,,,45.21613312,25.30712646,74.57713532,,,,0.33,,,0.317,0.343,0.093108942,935,10042,0.077619581,0.108598304,0.044593921,179,4014,0.030296049,0.058891794,0.001175339,22,18718,,,850.8181818,0.86675,173.35,200,,,,,,,,,,,,,,,,,,2.649221781,,,,,,,,2.385373064,3.057723401,0.034913032,,,,,2320.993,,,,,0.892136682,56342,63154,0.675519407,1.108753957,64332,,,55724.68085,72939.31915,38708,30317.53192,47098.46809,48036,22304.59575,73767.40426,,,,64111,51924.44681,76297.55319,67697,55996.57447,79397.42553,,,,,,0.625335893,1629,2605,,,79.33221164,,,,,0.351924392,,64332,,,12.87001287,10,777,,,,,,,,,,,,,,,,,,,,,,,,,,12.83768208,13,91068,6.408524642,22.97015938,14.27504722,,,,,,,,,,,,,17.54591097,7.575078987,34.57243934,,,,,,,,,,,,,,,,,,,,,,,,,,,11.76729007,15,127472,6.586062926,19.40835546,,,,,,,,,,,,,,,,,,,,,,,,,,0.698379971,9484,13580,,,0.535,,,,,60.32799861,,,,,0.659701873,5178,7849,0.616903997,0.702499749,0.152247267,1128,7409,0.117830296,0.186664238,0.825328067,6478,7849,0.78758194,0.863074195,18718,,,,,0.201730954,3776,18718,,,0.247248638,4628,18718,,,0.009189016,172,18718,,,0.138369484,2590,18718,,,0.017950636,336,18718,,,0.001495886,28,18718,,,0.24751576,4633,18718,,,0.592157282,11084,18718,,,0.009329609,167,17900,0.002727075,0.015932143,0.494337002,9253,18718,,,0.420856121,8003,19016,, -06,029,06029,CA,Kern County,2024,1,10111.12566,13011,2599469,9882.443029,10339.80829,0,10790.8355,7800.990642,13780.68035,,5167.258134,4407.804901,5926.711367,,18315.55238,16947.61584,19683.48891,,8677.142094,8385.793468,8968.490719,,11567.40054,11130.05406,12004.74701,,20729.18998,12075.51706,33189.44123,1,,0.232,,,0.199,0.266,4.277881936,,,3.45168321,5.136101505,5.465147507,,,4.540344828,6.46556175,0.075699689,6816,90040,0.073971895,0.077427483,0,0.084057971,0.054778045,0.113337897,0.100853789,0.091212889,0.110494688,0.145112457,0.134960401,0.155264513,0.070850746,0.068648949,0.073052543,0.065758339,0.062757146,0.068759532,,,,0.109022556,0.093731723,0.12431339,0.161,,,0.131,0.192,0.366,,,0.305,0.43,7.3,0.078299012,0.13,,,0.275,,,0.23,0.323,0.854608545,777040,909235,,,0.169074109,,,0.137572063,0.203450034,0.308724832,276,894,0.292217151,0.325334661,650.7,5971,917673,,,25.53830529,5884,230399,24.88575826,26.19085231,21.68473728,14.16519034,31.77316437,3.779825183,2.585397627,5.335985363,32.49793445,29.11253283,35.88333608,26.23195943,25.42255602,27.04136285,24.56904301,23.19597592,25.94211009,,,,22.87524195,18.94291073,26.80757317,0.089918414,70029,778806,0.081577988,0.098258839,0.000478384,439,917673,,,2090.371298,0.000526139,482,916108,,,1900.639004,0.002416746,2214,916108,,,413.7795845,2700,,,,,2602,2113,4463,2749,2576,0.33,,,,,0.21,0.26,0.32,0.29,0.35,0.35,,,,,0.24,0.39,0.22,0.33,0.36,0.765501487,423578,553334,0.759436139,0.771566835,0.513853757,131841,256573,0.499325618,0.528381896,0.06933496,27161,391736,,,0.236,60314,,0.212170213,0.259829787,0.325210872,0.20204968,0.448372064,0.143631943,0.090127449,0.197136437,0.398415872,0.347688931,0.449142814,0.290036112,0.273375659,0.306696565,0.166086196,0.14325104,0.188921351,4.957697457,129619,26145,4.771191313,5.1442036,0.258613483,67442,260783,0.242328447,0.27489852,4.228085604,388,917673,,,92.34617841,4164,4509120,89.54126384,95.15109298,131.6944688,92.23718692,182.3206559,41.89476036,33.6883347,51.49577319,155.5818165,139.6423285,171.5213045,63.81258491,60.65904707,66.96612276,137.5671564,131.5812515,143.5530612,183.4525775,87.97264165,337.3758217,12.9,,,,,1,,,,,0.240079692,65675,273555,0.23165168,0.248507703,0.162721068,0.155137,0.170305137,0.091974192,0.086208026,0.097740358,0.010692548,0.008676295,0.012708802,0.791078037,278306,351806,0.780656179,0.801499896,0.665370658,0.575900545,0.754840772,0.726009399,0.688043905,0.763974894,0.784564361,0.745214821,0.823913901,0.78923646,0.776780405,0.801692515,0.805428148,0.799214534,0.811641762,0.242,,351806,0.232031285,0.251968715,74.92474167,,,74.72675349,75.12272985,76.50805564,73.35215708,79.66395419,82.23393541,81.23837399,83.22949683,68.15553208,67.25412056,69.05694359,77.27748055,76.91699483,77.63796628,73.34574988,73.0288904,73.66260936,,,,496.4782929,13011,2599469,487.8505663,505.1060196,557.0265309,450.524534,663.5285277,255.0348742,229.0675575,281.002191,832.7684229,783.076633,882.4602128,416.3930869,404.1109006,428.6752733,572.0512393,557.2280387,586.8744399,895.2148692,599.5394478,1285.677881,55.42289334,632,1140323,51.10186886,59.74391782,,,,37.4251497,20.94657219,61.72709299,124.9388886,97.20991283,158.1181598,52.74689066,47.55820117,57.93558015,48.75421193,40.17282727,57.33559659,,,,5.801670443,530,91353,5.307733861,6.295607025,,,,,,,11.74250367,8.870161078,15.24861774,6.205657337,5.541116829,6.870197844,4.145158767,3.356036482,4.934281053,,,,,,,0.139,,,0.12,0.158,0.174,,,0.152,0.199,0.13,,,0.112,0.149,288.5,2112,732126,,,0.13,117710,,,,0.078299012,65742.27768,839631,,,41.00414933,1115,2719237,38.59731363,43.41098502,92.91953169,52.00635652,153.2566368,8.417379593,4.201925565,15.06101721,70.33733787,56.55121965,84.1234561,21.34382306,19.00888283,23.67876328,73.99050072,68.27585773,79.70514371,,,,0.348,,,0.335,0.36,0.116411743,60849,522705,0.105688339,0.127135147,0.037801415,10171,269064,0.0282695,0.04733333,0.000782659,717,916108,,,1277.695955,0.847108353,11328.38,13373,,,0.114799447,6308,54948,0.095146252,0.134452641,2.674792797,,,,,,3.278417649,2.303497038,2.57712491,3.00670173,2.449810036,,,,,,3.095715182,1.971332609,2.362641655,2.780892999,0.199938497,,,,,-10488.2164,,,,,0.766745016,42733,55733,0.733200222,0.800289811,65981,,,63875.6383,68086.3617,53229,38690.44681,67767.55319,92568,85321.3617,99814.6383,48461,44302.70213,52619.29787,55719,54074.74468,57363.25532,76932,74020,79844,,,,,,0.712631909,138505,194357,,,52.39496655,,,,,0.332595747,,65981,,,3.642880226,248,68078,,,11.47212179,720,6276084,10.63414195,12.31010163,,,,,,,39.65022402,32.83421682,46.46623123,12.67372957,11.47581381,13.87164533,6.633271248,5.530522869,7.736019627,,,,13.38473548,580,4509120,12.27741875,14.49205221,12.86282024,,,,8.778579093,5.28527807,13.70883868,9.373477361,5.94198058,14.06481838,8.055680111,6.877155758,9.234204464,20.09685797,17.78406327,22.40965267,,,,15.41320701,695,4509120,14.26728073,16.55913329,,,,,,,40.38325838,32.67246757,49.36643923,13.99576719,12.51889391,15.47264048,15.79750982,13.76904844,17.82597121,,,,18.94493445,1189,6276084,17.86807692,20.02179199,,,,11.21495327,7.719857799,15.74996407,24.40013786,19.34779182,30.3680837,17.09479802,15.70354523,18.48605081,22.47676804,20.44684543,24.50669065,,,,,,,,,,,0.576261845,305292,529780,,,0.608,,,,,204.0876989,,,,,0.596301248,165473,277499,0.587575626,0.60502687,0.180549803,48385,267987,0.172150981,0.188948624,0.879786954,244140,277499,0.873571543,0.886002365,916108,,,,,0.28419575,260354,916108,,,0.117730661,107854,916108,,,0.051288713,46986,916108,,,0.027999974,25651,916108,,,0.05753361,52707,916108,,,0.002775874,2543,916108,,,0.567516057,519906,916108,,,0.30439315,278857,916108,,,0.099658083,83768,840554,0.095457254,0.103858912,0.489014396,447990,916108,,,0.133528736,121409,909235,, -06,031,06031,CA,Kings County,2024,1,7902.97859,1767,438679,7431.936733,8374.020447,0,24570.43577,16050.2244,36001.38126,,5051.104828,3165.500504,7647.433412,1,7939.554666,5984.836092,9894.27324,,7449.270972,6830.024266,8068.517678,,8268.733552,7390.938813,9146.528292,,,,,2,,0.226,,,0.196,0.258,4.301581056,,,3.417423784,5.258840214,5.249152866,,,4.165322336,6.406224765,0.06613551,1021,15438,0.062215205,0.070055815,0,,,,0.060041408,0.038854758,0.081228058,0.109118087,0.085491474,0.132744699,0.068230936,0.063217508,0.073244363,0.053268142,0.046207374,0.06032891,,,,0.089673913,0.060481922,0.118865904,0.151,,,0.124,0.181,0.351,,,0.28,0.429,7.6,0.068228259,0.121,,,0.258,,,0.214,0.306,0.657496426,100259,152486,,,0.181745312,,,0.14611951,0.223704961,0.365217391,42,115,0.318817534,0.411270388,671.3,1030,153443,,,26.35947338,921,34940,24.65706799,28.06187877,32.8358209,16.39152348,58.75235377,,,,29.8013245,20.87248131,41.25759478,30.62153439,28.4152212,32.82784757,14.64524385,11.81688789,17.47359981,,,,22.84011917,14.4786763,34.27139314,0.076158257,9230,121195,0.066626343,0.085690172,0.000371473,57,153443,,,2691.982456,0.000634066,97,152981,,,1577.123711,0.00235977,361,152981,,,423.7700831,2624,,,,,,2192,2676,2757,2528,0.33,,,,,0.24,0.26,0.31,0.3,0.36,0.34,,,,,0.32,0.33,0.25,0.3,0.37,0.744857179,70824,95084,0.731005154,0.758709204,0.500555544,23877,47701,0.470932982,0.530178106,0.069958192,3949,56448,,,0.213,8579,,0.161765957,0.264234043,0.44,0.129470111,0.75052989,0.094397544,0.013212774,0.175582315,0.245468669,0.136425525,0.354511813,0.280642927,0.249451801,0.311834054,0.092036019,0.054924395,0.129147644,3.947166368,125437,31779,3.532913525,4.361419211,0.24684285,10125,41018,0.209222534,0.284463165,3.649563682,56,153443,,,62.71842975,477,760542,57.08993768,68.34692182,163.0354232,81.38669582,291.715407,,,,65.77970166,44.69411586,93.3690358,55.48323766,48.37421435,62.59226098,74.99315372,63.97604366,86.01026377,,,,12.3,,,,,1,,,,,0.205939686,8980,43605,0.183271259,0.228608113,0.130922117,0.112473019,0.149371215,0.083705997,0.069914048,0.097497946,0.005503956,0.002579763,0.008428149,0.783136766,44555,56893,0.763027869,0.803245663,0.743421053,0.52844607,0.958396035,0.815407518,0.725005723,0.905809313,0.849646226,0.766247749,0.933044704,0.776676566,0.748910481,0.804442651,0.79154332,0.765435669,0.817650971,0.302,,56893,0.273528639,0.330471361,77.32867649,,,76.82485058,77.83250241,,,,85.28253184,81.66047928,88.90458441,75.37085467,73.25949497,77.48221437,78.17686628,77.34562878,79.00810377,76.55089022,75.76307893,77.33870151,,,,421.9857993,1767,438679,402.1900871,441.7815115,935.0619867,654.9059199,1294.519931,240.1001752,174.4571548,322.3232784,434.8297386,350.9209161,518.738561,395.133378,366.5840197,423.6827363,454.5156465,421.3373741,487.693919,,,,45.40320259,82,180604,36.11051442,56.35734598,,,,,,,,,,36.14052092,26.25975782,48.51696246,58.99553686,37.39810967,88.52227183,,,,4.529794564,71,15674,3.537807136,5.713719479,,,,,,,,,,4.503582395,3.272309863,6.045849159,,,,,,,,,,0.134,,,0.117,0.153,0.169,,,0.147,0.192,0.128,,,0.111,0.148,147.1,182,123721,,,0.121,18370,,,,0.068228259,10437.69547,152982,,,16.55502914,76,459075,13.04348001,20.72108761,,,,,,,,,,12.48746376,8.541415966,17.62857291,23.39363693,16.10310325,32.85336391,,,,0.352,,,0.339,0.363,0.096880925,7818,80697,0.082583053,0.111178797,0.03632842,1538,42336,0.025605016,0.047051825,0.000915146,140,152981,,,1092.721429,0.889135034,1428.84,1607,,,0.098876667,845,8546,0.065074879,0.132678456,2.729839456,,,,,,3.469496204,2.559656646,2.616242758,3.152312149,2.519242106,,,,,,3.255051496,2.494409019,2.397125737,2.919103612,0.116982992,,,,,-3791.177031,,,,,0.901807428,46352,51399,0.815593564,0.988021292,63683,,,58183.08511,69182.91489,56797,23498.44681,90095.55319,91250,82415.10638,100084.8936,63972,47873.78723,80070.21277,56821,53095.21277,60546.78723,83939,79902.23404,87975.76596,,,,,,0.708661962,20486,28908,,,36.31533949,,,,,0.30819842,,63683,,,3.621588199,41,11321,,,6.689959031,71,1061292,5.224913507,8.438473022,,,,,,,,,,8.04998527,5.914826389,10.70477387,4.16116798,2.274949256,6.981732806,,,,13.18836713,98,760542,10.67017657,16.12209491,12.88554741,,,,,,,,,,9.843426239,6.965794258,13.51087158,16.33673013,11.67119952,22.24598965,,,,8.546536549,65,760542,6.596036475,10.89326241,,,,,,,,,,7.824559157,5.386066493,10.9885902,8.426197047,5.146940063,13.01357793,,,,14.98173924,159,1061292,12.653006,17.31047248,,,,,,,,,,16.78507567,13.62693578,20.45563093,13.37518279,9.75595011,17.89704691,,,,,,,,,,,0.47051062,43861,93220,,,0.65,,,,,94.59169094,,,,,0.548791118,23924,43594,0.525474903,0.572107334,0.146432864,6213,42429,0.127718897,0.165146831,0.867022985,37797,43594,0.85270838,0.88133759,152981,,,,,0.266725933,40804,152981,,,0.109091979,16689,152981,,,0.06247181,9557,152981,,,0.032651114,4995,152981,,,0.044554553,6816,152981,,,0.003680196,563,152981,,,0.572888136,87641,152981,,,0.292382714,44729,152981,,,0.102410107,14477,141363,0.091898177,0.112922037,0.447807244,68506,152981,,,0.109137888,16642,152486,, -06,033,06033,CA,Lake County,2024,1,11808.00143,1485,179783,10842.60652,12773.39635,0,27262.45959,18766.22276,38286.62935,,,,,2,25163.33033,16122.62055,37441.04091,1,7029.674015,5550.694663,8508.653367,,12238.5615,11010.69668,13466.42631,,,,,2,,0.191,,,0.164,0.22,4.311721495,,,3.44156923,5.282235579,6.078908659,,,4.936704368,7.281394992,0.071612265,362,5055,0.064504159,0.078720371,0,,,,,,,0.153846154,0.073774876,0.233917432,0.069726903,0.057693982,0.081759824,0.072979042,0.063116663,0.082841421,,,,0.059322034,0.029183052,0.089461015,0.163,,,0.132,0.196,0.337,,,0.264,0.42,7.8,0.018896756,0.134,,,0.236,,,0.193,0.282,0.683464636,46587,68163,,,0.164020155,,,0.130610997,0.202996933,0.316455696,25,79,0.258672483,0.374830816,350.5,241,68766,,,24.91736588,294,11799,22.06907371,27.76565805,33.07888041,17.61311066,56.56589292,,,,,,,35.36299766,29.72250978,41.00348553,15.71678044,12.7738236,19.13461625,,,,40,25.35656876,60.01963982,0.082536775,4326,52413,0.070621882,0.094451669,0.00042172,29,68766,,,2371.241379,0.000439941,30,68191,,,2273.033333,0.003798155,259,68191,,,263.2857143,2027,,,,,2103,,,1909,2051,0.3,,,,,0.31,0.3,0.27,0.22,0.3,0.28,,,,,0.25,0.27,0.17,0.21,0.29,0.866339769,42403,48945,0.850537942,0.882141596,0.556773431,8483,15236,0.494151543,0.61939532,0.049561865,1414,28530,,,0.228,3304,,0.155319149,0.300680851,0.506151142,0.357734604,0.65456768,,,,0.46875,0.229060798,0.708439202,0.2,0.13220751,0.26779249,0.175268343,0.117215133,0.233321553,4.955201308,121229,24465,4.295511951,5.614890665,0.232043055,3363,14493,0.173180505,0.290905606,5.52598668,38,68766,,,172.5622895,563,326259,158.307928,186.816651,168.654379,92.2049184,282.9733902,,,,295.3439889,172.0487573,472.8743366,102.4249806,80.4256398,128.5851837,195.4266592,177.1244792,213.7288393,,,,3.1,,,,,0,,,,,0.20246962,5165,25510,0.178124723,0.226814516,0.160742812,0.137250385,0.184235238,0.038024304,0.025955575,0.050093033,0.010584085,0.004909787,0.016258382,0.690289146,16783,24313,0.655006173,0.725572119,0.495107632,0.296466479,0.693748785,,,,,,,0.741662639,0.637786541,0.845538737,0.667850928,0.630371916,0.70532994,0.424,,24313,0.366363434,0.481636566,74.6344655,,,73.89258704,75.37634395,64.63940371,59.1175193,70.16128812,,,,,,,81.47690215,79.17756345,83.77624084,74.02214258,73.13469982,74.90958533,,,,561.2677165,1485,179783,529.5439814,592.9914515,1037.645501,772.5952314,1364.312203,,,,1115.703462,789.5381728,1531.390171,314.2894075,257.4137536,371.1650614,591.0848826,552.0313717,630.1383934,,,,47.65660948,29,60852,31.91637931,68.44284073,,,,,,,,,,48.4304143,24.17628833,86.65538904,32.29244034,15.48548034,59.38694753,,,,5.318101241,27,5077,3.504662228,7.737558094,,,,,,,,,,,,,,,,,,,,,,0.132,,,0.114,0.151,0.184,,,0.16,0.21,0.105,,,0.09,0.122,243.1,141,57991,,,0.134,9070,,,,0.018896756,1221.958701,64665,,,80.95895887,160,197631,68.41423822,93.50367951,,,,,,,,,,35.30294338,20.17868244,57.32976832,94.79521993,78.30825746,111.2821824,,,,0.324,,,0.311,0.336,0.101813554,3840,37716,0.085132703,0.118494405,0.034287941,528,15399,0.023564537,0.045011345,0.000777229,53,68191,,,1286.622642,0.784044415,582.545,743,,,0.122410546,325,2655,0.053795552,0.19102554,2.558923544,,,,,,,,2.378692074,2.716735594,2.313450755,,,,,,,,2.174028552,2.494805514,0.045322095,,,,,-2806.652926,,,,,0.835556459,45227,54128,0.732989561,0.938123357,51848,,,47180.93617,56515.06383,28777,19398.78723,38155.21277,,,,56667,29723.85106,83610.14894,52917,44077.34043,61756.65957,58073,54379.38298,61766.61702,,,,,,0.712685438,7062,9909,,,61.71835632,,,,,0.402908502,,51848,,,6.955177743,27,3882,,,9.671052342,44,454966,7.027001437,12.98293637,,,,,,,,,,11.25526951,5.618589988,20.13878618,7.914122276,5.121602657,11.68280568,,,,27.30189585,90,326259,21.58101571,34.07400162,27.58544592,,,,,,,,,,16.54410595,8.258758084,29.60197551,28.94413698,21.8046851,37.67477278,,,,17.77728737,58,326259,13.49903962,22.98126634,,,,,,,,,,13.8412136,6.637399923,25.45448461,20.07808143,14.64509037,26.86605265,,,,27.03498723,123,454966,22.25716833,31.81280613,,,,,,,,,,23.53374534,14.9183758,35.31217298,27.85771041,22.34269836,34.32147837,,,,,,,,,,,0.599251248,28812,48080,,,0.49,,,,,42.90440903,,,,,0.695435497,18420,26487,0.6719056,0.718965393,0.170620188,4366,25589,0.148561213,0.192679164,0.834862385,22113,26487,0.817349652,0.852375118,68191,,,,,0.217814668,14853,68191,,,0.239474417,16330,68191,,,0.01737766,1185,68191,,,0.046839026,3194,68191,,,0.015324603,1045,68191,,,0.003226232,220,68191,,,0.247466675,16875,68191,,,0.657931399,44865,68191,,,0.030970074,1988,64191,0.024094832,0.037845316,0.498570193,33998,68191,,,0.40787524,27802,68163,, -06,035,06035,CA,Lassen County,2024,1,9558.323156,517,88107,8368.30291,10748.3434,0,,,,2,,,,2,,,,2,5164.036196,3273.555972,7748.589812,1,11257.33631,9650.043692,12864.62892,,,,,2,,0.194,,,0.167,0.225,4.159649606,,,3.341647905,5.127252224,5.605525257,,,4.520866343,6.866252169,0.083410138,181,2170,0.071776297,0.09504398,0,,,,,,,,,,0.101351351,0.073279289,0.129423414,0.073414113,0.059766401,0.087061825,,,,0.086956522,0.035456909,0.138456134,0.17,,,0.138,0.205,0.321,,,0.245,0.404,7.7,0.093014497,0.104,,,0.222,,,0.181,0.27,0.454842652,14887,32730,,,0.198634643,,,0.158513093,0.243485918,0.326923077,17,52,0.254998049,0.399152589,99.5,33,33159,,,24.95659722,115,4608,20.39525643,29.51793802,,,,,,,,,,29.86725664,19.68271032,43.45529032,20.27679434,15.58124551,25.94282822,,,,61.06870229,34.9060399,99.17174656,0.058958242,1210,20523,0.048234838,0.069681646,0.00027142,9,33159,,,3684.333333,0.001136972,34,29904,,,879.5294118,0.003176833,95,29904,,,314.7789474,2813,,,,,2553,,,,2897,0.3,,,,,0.3,0.33,0.27,0.22,0.31,0.25,,,,,0.03,0.24,0.13,0.25,0.25,0.804750674,19108,23744,0.786444152,0.823057196,0.397355663,4508,11345,0.353886193,0.440825134,0.04459097,399,8948,,,0.17,907,,0.112808511,0.227191489,0.439252336,0.151111651,0.727393022,0.105504587,0,0.444259115,,,,0.102543068,0.034601824,0.170484312,0.152415242,0.097150623,0.20767986,4.234047179,116847,27597,3.617620561,4.850473797,0.211676152,1153,5447,0.150408795,0.272943509,5.428390482,18,33159,,,115.5972848,180,155713,98.70970348,132.484866,,,,,,,,,,62.46506888,37.60805196,97.54694274,147.8511962,124.11081,171.5915824,,,,6,,,,,0,,,,,0.146128681,1340,9170,0.120281889,0.171975472,0.12,0.095573599,0.144426401,0.018538713,0.01082194,0.026255487,0.013086151,0.003555577,0.022616724,0.787742732,7018,8909,0.752646477,0.822838988,,,,,,,,,,0.612512614,0.474289433,0.750735794,0.756782292,0.727228465,0.786336118,0.174,,8909,0.13331452,0.21468548,76.4929093,,,75.39206849,77.59375011,,,,,,,93.96756723,65.22357821,122.7115563,85.81035729,79.62862655,91.99208803,74.71697763,73.46531154,75.96864373,,,,477.4557061,517,88107,435.2325289,519.6788833,,,,,,,,,,240.5940055,158.5529656,350.0516463,555.7414674,500.5736266,610.9093082,,,,49.42135826,12,24281,25.53673699,86.32916704,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.128,,,0.111,0.148,0.171,,,0.149,0.196,0.105,,,0.088,0.122,96.8,28,28913,,,0.104,3410,,,,0.093014497,3245.740862,34895,,,30.93399326,29,93748,20.71698078,44.42637436,,,,,,,,,,,,,38.12997348,24.17113236,57.21368186,,,,0.35,,,0.336,0.361,0.072850833,1072,14715,0.05855296,0.087148705,0.024851876,151,6076,0.016511451,0.033192302,0.00093633,28,29904,,,1068,0.874669604,198.55,227,,,,,,,,2.646993525,,,,,,,,2.534608282,2.760535389,2.517565657,,,,,,,,2.207165683,2.623218852,0.04415384,,,,,-771.4490556,,,,,0.835399289,50276,60182,0.750183142,0.920615436,60308,,,51567.23404,69048.76596,40000,17129.3617,62870.6383,72500,36115.48936,108884.5106,,,,51638,18668.29787,84607.70213,61993,56975.6383,67010.3617,,,,,,0.509324928,1939,3807,,,43.53133459,,,,,0.315679512,,60308,,,6.802721088,11,1617,,,5.965272934,13,217928,3.176256604,10.20079839,,,,,,,,,,,,,,,,,,,25.86436655,45,155713,18.71817032,34.839132,28.89932119,,,,,,,,,,,,,33.63776055,23.29512703,47.00539877,,,,16.05517844,25,155713,10.39006496,23.70061055,,,,,,,,,,,,,22.82266787,14.46761368,34.24520763,,,,20.6490217,45,217928,15.06153812,27.63001565,,,,,,,,,,,,,24.67864874,17.18958307,34.32202631,,,,,,,,,,,0.489765066,11987,24475,,,0.506,,,,,26.41032451,,,,,0.686946779,6131,8925,0.664269756,0.709623801,0.145737327,1265,8680,0.115007964,0.17646669,0.858711485,7664,8925,0.828190682,0.889232288,29904,,,,,0.182517389,5458,29904,,,0.175461477,5247,29904,,,0.070993847,2123,29904,,,0.043606207,1304,29904,,,0.018291867,547,29904,,,0.009262975,277,29904,,,0.202715356,6062,29904,,,0.64158641,19186,29904,,,0.023074391,701,30380,0.014071062,0.03207772,0.389446228,11646,29904,,,0.72517568,23735,32730,, -06,037,06037,CA,Los Angeles County,2024,1,6316.786939,105949,28005378,6261.990728,6371.58315,0,9473.684045,8019.284049,10928.08404,,3345.155976,3240.679215,3449.632737,,12647.35472,12360.36739,12934.34205,,6536.058391,6457.831772,6614.285009,,5647.642668,5542.347481,5752.937855,,14850.44325,13069.8848,16631.00171,,,0.182,,,0.158,0.21,3.544690129,,,2.941055594,4.168471029,5.07321263,,,4.396397785,5.747695934,0.073860239,55214,747547,0.07326734,0.074453138,0,0.087473002,0.069275556,0.105670449,0.077191452,0.075597976,0.078784928,0.120903118,0.118118635,0.123687601,0.070851611,0.070065901,0.071637321,0.060585854,0.059378404,0.061793305,0.066991474,0.054898808,0.07908414,0.082425647,0.077688064,0.08716323,0.11,,,0.091,0.131,0.285,,,0.252,0.318,8.3,0.014529509,0.113,,,0.218,,,0.189,0.249,0.979745275,9811178,10014009,,,0.158534197,,,0.138113169,0.181439277,0.190998902,696,3644,0.18296366,0.199157902,580.4,57048,9829544,,,12.0586626,25852,2143853,11.91166572,12.20565949,12.84348865,9.294896419,17.30009493,0.949135534,0.825662712,1.072608357,15.96531432,15.34134312,16.58928553,16.63699207,16.41532958,16.85865457,2.23280897,2.081632002,2.383985937,10.66447908,7.964743068,13.98504548,5.012172419,4.45866073,5.565684108,0.101106885,834424,8252890,0.097532417,0.104681353,0.000753952,7411,9829544,,,1326.345163,0.000969331,9423,9721138,,,1031.639393,0.004459046,43347,9721138,,,224.2632247,2462,,,,,1337,1557,4815,2983,2095,0.31,,,,,0.27,0.31,0.23,0.21,0.36,0.39,,,,,0.3,0.48,0.22,0.28,0.42,0.802500416,5544997,6909650,,,0.662542321,1964703,2965400,,,0.049133313,244922,4984846,,,0.181,351449,,0.170276596,0.191723404,0.214351468,0.179644817,0.24905812,0.100125966,0.092734835,0.107517097,0.271027062,0.255013079,0.287041046,0.223520927,0.218805407,0.228236448,0.075226306,0.070468355,0.079984258,5.307195027,170759,32175,5.238258434,5.376131621,0.25407852,530706,2088748,0.249582921,0.258574119,5.940255214,5839,9829544,,,48.56958732,24324,50080722,47.95920353,49.1799711,86.042979,68.33054525,106.9435666,25.70095594,24.54893226,26.85297961,94.8268763,91.80265183,97.85110078,40.28038461,39.48376735,41.07700188,64.10425818,62.72679091,65.48172545,59.34928382,45.99487977,75.37149253,13.4,,,,,1,,,,,0.318704698,1062085,3332505,0.316316729,0.321092667,0.225839673,0.223541801,0.228137545,0.112289404,0.11077779,0.113801017,0.017600874,0.016899429,0.018302319,0.679765018,3220537,4737721,0.677877212,0.681652824,0.637385282,0.623419139,0.651351425,0.676753275,0.672361888,0.681144663,0.68964091,0.68104335,0.69823847,0.698312343,0.695348894,0.701275791,0.666407034,0.662952525,0.669861543,0.491,,4737721,0.487847616,0.494152385,80.05585261,,,79.99618432,80.11552091,78.36142643,76.878722,79.84413086,85.78426155,85.6197491,85.94877401,73.18674618,72.97002272,73.40346965,80.27268743,80.16569978,80.37967508,79.83620876,79.73768749,79.93473004,72.50736129,71.07933758,73.935385,321.0348498,105949,28005378,319.0699396,322.9997599,451.2884054,399.2901456,503.2866652,180.394381,176.8152326,183.9735294,609.5981913,600.105201,619.0911816,331.2470189,328.1205499,334.3734879,302.4327672,298.9382625,305.9272719,676.5204295,615.6980205,737.3428385,34.69596895,3298,9505427,33.51181064,35.88012725,,,,22.31855204,19.48896449,25.14813959,77.18793749,70.48877642,83.88709856,33.45847741,31.96535253,34.95160228,30.36524793,27.69020778,33.04028807,69.14604633,37.80278696,116.0153165,3.980754321,3091,776486,3.8404174,4.121091243,,,,2.279661605,2.00414449,2.555178719,9.071621918,8.273259335,9.869984502,4.113439896,3.920878038,4.306001755,2.912146976,2.642176918,3.182117033,,,,7.654414551,6.16159483,9.147234272,0.112,,,0.098,0.128,0.15,,,0.132,0.17,0.117,,,0.104,0.132,602.4,50466,8376899,,,0.113,1132600,,,,0.014529509,142659.5047,9818605,,,18.81811693,5610,29811697,18.32567979,19.31055407,53.67878614,36.2168516,76.62980496,4.242012896,3.637233268,4.846792524,40.26474173,37.70830801,42.82117546,14.68767863,14.06450075,15.3108565,28.62837258,27.43125253,29.82549263,18.0780066,9.341169811,31.5786394,0.34,,,0.329,0.351,0.123373928,768094,6225740,0.11979946,0.126948396,0.035467354,75771,2136359,0.031892886,0.039041822,0.000867903,8437,9721138,,,1152.203153,0.863778072,79656.75,92219,,,0.070649995,35422,501373,0.066967204,0.074332787,2.903033417,,,,,,3.690919982,2.502697569,2.71087038,3.443235225,2.74335872,,,,,,3.654479224,2.27507411,2.54466588,3.241368639,0.459733564,,,,,-2271.866507,,,,,0.926695768,54347,58646,0.91667763,0.936713906,82455,,,81690.06383,83219.93617,76939,73217.97872,80660.02128,97209,95405.08511,99012.91489,59034,57684.04255,60383.95745,70932,70245.70213,71618.29787,105286,104232.7234,106339.2766,,,,,,0.672234,889416,1323075,,,58.70865623,,,,,0.365047602,,82455,,,6.157438982,3512,570367,,,6.27939658,4420,70388929,6.094272527,6.464520632,,,,1.57197525,1.330647106,1.813303394,24.92769723,23.62283631,26.23255816,6.716415469,6.441863768,6.99096717,2.602070573,2.368799335,2.835341811,10.57398054,6.15973333,16.92996717,8.260609986,4375,50080722,8.012296959,8.508923013,8.735896419,,,,6.803564261,6.213389863,7.39373866,7.870601822,6.990386603,8.750817042,5.414999704,5.121050738,5.708948669,13.0412677,12.44148035,13.64105505,12.258605,6.701893426,20.56785621,7.943176219,3978,50080722,7.696334888,8.19001755,,,,2.244801068,1.904333541,2.585268594,23.47448487,21.96979729,24.97917245,7.254734309,6.916658834,7.592809784,7.989917756,7.503612457,8.476223056,12.40134289,6.779929557,20.80734613,8.91759555,6277,70388929,8.696984237,9.138206862,14.96501927,9.141022549,23.11225852,4.51340133,4.104482512,4.922320149,17.33559544,16.24743601,18.42375486,9.103240801,8.7836065,9.422875101,8.671754023,8.245905511,9.097602535,11.1959794,6.635446956,17.69447433,,,,,,,,0.669692116,4264365,6367650,,,0.632,,,,,734.4664573,,,,,0.461528718,1552164,3363093,0.458113209,0.464944227,0.238953272,778683,3258725,0.236578448,0.241328095,0.902090427,3033814,3363093,0.899775538,0.904405316,9721138,,,,,0.204068804,1983781,9721138,,,0.152190618,1479466,9721138,,,0.079087243,768818,9721138,,,0.015160674,147379,9721138,,,0.157907953,1535045,9721138,,,0.003728987,36250,9721138,,,0.490335185,4766616,9721138,,,0.251999509,2449722,9721138,,,0.124915887,1173967,9398060,,,0.503527262,4894858,9721138,,,0.008909519,89220,10014009,, -06,039,06039,CA,Madera County,2024,1,8372.168295,2033,447702,7865.929712,8878.406877,0,24147.10447,16045.57556,34899.28916,,6029.54013,3732.380373,9216.792579,1,8695.562521,6153.497574,11935.33894,,7903.605037,7278.497238,8528.712836,,9073.292629,8024.947706,10121.63755,,,,,2,,0.234,,,0.202,0.268,4.452064812,,,3.548020714,5.387658629,5.652777661,,,4.548377728,6.770480312,0.063761098,948,14868,0.059833735,0.067688461,0,0.131578947,0.069526056,0.193631839,0.097058824,0.065591207,0.12852644,0.147959184,0.098250851,0.197667517,0.060936202,0.056431075,0.065441329,0.061538462,0.052829333,0.07024759,,,,0.060344828,0.029702881,0.090986775,0.157,,,0.126,0.189,0.359,,,0.282,0.44,7.7,0.054188904,0.124,,,0.258,,,0.21,0.308,0.743406611,116161,156255,,,0.165964703,,,0.130741672,0.204576766,0.279761905,47,168,0.240560071,0.319835499,543.9,867,159410,,,23.26771956,909,39067,21.75510613,24.78033298,,,,,,,,,,27.40937224,25.47960775,29.33913672,10.93097519,8.778470664,13.45150558,,,,23.60248447,14.21023747,36.8582032,0.107154472,13839,129150,0.092856599,0.121452344,0.000470485,75,159410,,,2125.466667,0.000480481,77,160256,,,2081.246753,0.001878245,301,160256,,,532.4119601,2697,,,,,1675,869,5571,2604,2664,0.37,,,,,0.28,0.29,0.4,0.33,0.39,0.34,,,,,0.43,0.28,0.28,0.3,0.36,0.720531072,71365,99045,0.704552962,0.736509181,0.499190553,20968,42004,0.464844947,0.53353616,0.061279493,3888,63447,,,0.313,13297,,0.262957447,0.363042553,0.478682171,0.025548377,0.931815965,0.327710843,0.137668347,0.51775334,0.128671329,0.033081927,0.224260731,0.33207357,0.297449266,0.366697875,0.12578125,0.085095541,0.16646696,4.460724487,137426,30808,4.080081418,4.841367556,0.239462617,10249,42800,0.202386362,0.276538872,4.516655166,72,159410,,,71.35072111,563,789060,65.45685534,77.24458688,212.2391227,125.7863552,335.4293157,67.02821278,33.46024232,119.9319878,87.41953429,54.78535672,132.3542255,50.95174418,44.46478816,57.43870021,103.2681094,90.92722856,115.6089901,,,,10,,,,,1,,,,,0.244716727,10885,44480,0.223070413,0.266363041,0.150466652,0.132370186,0.168563117,0.10892536,0.094267853,0.123582867,0.004046763,0.000316539,0.007776987,0.733112675,42305,57706,0.703754149,0.762471201,0.746559633,0.634404103,0.858715163,0.716589862,0.638797092,0.794382632,,,,0.719931502,0.694765842,0.745097162,0.746800887,0.713759607,0.779842168,0.428,,57706,0.390853038,0.465146962,77.36588705,,,76.88816436,77.84360974,,,,82.2558061,78.24391448,86.26769773,75.36383392,72.89244935,77.83521848,78.29239769,77.48116125,79.10363413,76.54858291,75.72908377,77.36808204,,,,405.0189064,2033,447702,387.0405111,422.9973018,896.0689785,651.0850915,1202.930779,302.9975239,212.2157407,419.4762906,493.50897,390.715699,615.0594244,390.0147373,363.4897898,416.5396848,423.8008284,393.3990664,454.2025905,,,,45.81889424,87,189878,36.69905599,56.51743677,,,,,,,,,,43.83515155,33.60815934,56.19468596,49.45598417,29.31075058,78.16177675,,,,5.418060201,81,14950,4.302721873,6.734154126,,,,,,,,,,5.300676293,4.025025743,6.852353294,,,,,,,,,,0.142,,,0.122,0.161,0.177,,,0.153,0.201,0.125,,,0.106,0.143,184.2,237,128636,,,0.124,19340,,,,0.054188904,8175.208987,150865,,,18.33516685,87,474498,14.68571702,22.61636057,,,,,,,,,,10.98173136,7.46155366,15.58769107,31.80062952,23.52628079,42.0421187,,,,0.353,,,0.34,0.366,0.139568146,12100,86696,0.120504316,0.158631976,0.04264574,1902,44600,0.029539357,0.055752123,0.000892322,143,160256,,,1120.671329,0.852882231,1651.18,1936,,,0.082733813,782,9452,0.05459231,0.110875316,2.611821459,,,,,,3.066421119,2.107738963,2.557875083,2.850882334,2.444961685,,,,,,3.06430804,2.024233039,2.411679252,2.583410569,0.227634779,,,,,-5012.195714,,,,,0.855147717,42984,50265,0.734902566,0.975392869,71273,,,65396.57447,77149.42553,68393,60669.76596,76116.23404,79213,49747.46809,108678.5319,33842,28861.57447,38822.42553,65382,58209.23404,72554.76596,80646,76814.17021,84477.82979,,,,,,0.795593252,25420,31951,,,61.39394518,,,,,0.281312699,,71273,,,4.625100062,52,11243,,,6.552871204,72,1098755,5.127218142,8.252256786,,,,,,,28.26775215,13.55548591,51.98540265,6.543768463,4.716172726,8.845273962,4.06938574,2.277604307,6.711832925,,,,12.39176218,94,789060,9.977073922,15.21433802,11.91290903,,,,,,,,,,8.125356386,5.39924031,11.74340229,20.24436042,14.8214162,27.00313982,,,,10.89904443,86,789060,8.717828713,13.46023121,,,,,,,,,,7.954491708,5.600696247,10.96421901,14.97195637,10.64652458,20.46715724,,,,19.29456521,212,1098755,16.6972591,21.89187132,83.500334,40.04165578,153.5600872,,,,,,,15.73620511,12.66721569,18.80519454,23.60243729,18.90458472,29.1135192,,,,,,,,,,,0.575597215,53732,93350,,,0.609,,,,,135.8065393,,,,,0.654832752,28719,43857,0.632426049,0.677239455,0.173433751,7300,42091,0.154421229,0.192446272,0.889458923,39009,43857,0.8750553,0.903862547,160256,,,,,0.270604533,43366,160256,,,0.145467252,23312,160256,,,0.029677516,4756,160256,,,0.045277556,7256,160256,,,0.029596396,4743,160256,,,0.002951528,473,160256,,,0.608395318,97499,160256,,,0.310266074,49722,160256,,,0.124030955,18159,146407,0.113638255,0.134423655,0.508892023,81553,160256,,,0.386074046,60326,156255,, -06,041,06041,CA,Marin County,2024,1,3856.25572,2003,697971,3558.585046,4153.926393,0,,,,2,2917.737427,1922.807349,4245.154768,,6559.857814,4686.458596,8932.664485,,3771.753436,3136.797429,4406.709442,,3877.148172,3490.799097,4263.497247,,,,,2,,0.108,,,0.089,0.13,2.84893162,,,2.19242237,3.584755222,4.429669554,,,3.5757938,5.324675756,0.055613577,852,15320,0.051984535,0.059242619,0,,,,0.06127451,0.047838368,0.074710652,0.085714286,0.050660042,0.120768529,0.059862188,0.053039083,0.066685292,0.050692448,0.045777862,0.055607034,,,,0.072687225,0.048805246,0.096569204,0.089,,,0.066,0.116,0.229,,,0.175,0.287,9.3,0.011658245,0.069,,,0.133,,,0.103,0.165,0.975053465,255777,262321,,,0.170531189,,,0.137673622,0.206452126,0.278688525,17,61,0.212239415,0.347366908,229.8,598,260206,,,4.657440499,245,52604,4.0742367,5.240644298,,,,,,,,,,16.69624133,14.4217221,18.97076056,0.373599004,0.193044057,0.652602274,,,,,,,0.048176163,9471,196591,0.042218716,0.05413361,0.001491126,388,260206,,,670.6340206,0.001246006,319,256018,,,802.5642633,0.009061863,2320,256018,,,110.3525862,1124,,,,,,1096,1462,1429,1055,0.44,,,,,,0.37,0.26,0.35,0.45,0.52,,,,,0.33,0.53,0.29,0.37,0.53,0.93418422,178957,191565,0.928102253,0.940266186,0.794741161,41650,52407,0.760807104,0.828675217,0.026544841,3495,131664,,,0.081,3863,,0.060744681,0.101255319,0.324786325,0,0.914896529,0.11654915,0.047022057,0.186076242,0.192586624,0.080713962,0.304459285,0.155952469,0.116398794,0.195506144,0.025210982,0.015832573,0.03458939,,,,,,0.162882741,8272,50785,0.141551303,0.184214179,8.80071943,229,260206,,,62.22122846,807,1296985,57.92825815,66.51419878,,,,36.12412249,24.37279375,51.56943104,103.1271801,71.41857013,144.1098975,41.49984202,33.28408683,51.12896606,68.62240522,63.27228589,73.97252454,,,,6.4,,,,,0,,,,,0.21835081,22905,104900,0.205561457,0.231140163,0.179002549,0.16669553,0.191309568,0.044709247,0.038241917,0.051176577,0.011868446,0.009355332,0.01438156,0.556328839,70345,126445,0.542486787,0.57017089,0.642307692,0.561240663,0.723374721,0.639776152,0.60308544,0.676466863,0.754326047,0.698663556,0.809988539,0.600632359,0.56090303,0.640361689,0.571928004,0.556873917,0.586982091,0.429,,126445,0.406741142,0.451258858,84.70387948,,,84.3471194,85.06063956,,,,90.70525164,88.31944212,93.09106115,78.63298237,76.21839335,81.04757139,88.30290428,86.07823414,90.52757442,84.47395147,84.06411707,84.88378588,,,,186.1431294,2003,697971,177.185428,195.1008308,,,,128.4052004,100.6491796,161.4502614,369.6257009,295.2438816,457.0479032,176.372201,150.8209619,201.92344,185.5147296,174.7065304,196.3229288,,,,21.76558905,49,225126,16.1023026,28.77526301,,,,,,,,,,26.76390887,15.29788641,43.46291124,18.243875,11.68919496,27.14543986,,,,1.365054602,21,15384,0.844990314,2.086630963,,,,,,,,,,,,,,,,,,,,,,0.083,,,0.069,0.098,0.133,,,0.113,0.155,0.071,,,0.059,0.083,340.6,773,226982,,,0.069,18160,,,,0.011658245,2942.646034,252409,,,20.99530633,163,776364,17.77212688,24.21848577,,,,,,,,,,8.585298846,4.285750252,15.36147114,24.25117655,20.1296029,28.37275019,,,,0.277,,,0.262,0.291,0.055416515,8082,145841,0.04707609,0.063756941,0.029779631,1600,53728,0.021439205,0.038120056,0.000796819,204,256018,,,1254.990196,0.914897075,2533.35,2769,,,0.039604737,505,12751,0.020448189,0.058761285,3.304376358,,,,,,3.468499882,,2.496625377,3.655052091,3.166285731,,,,,,3.452404364,,2.325181888,3.531710837,0.162818264,,,,,1838.333289,,,,,0.768738166,91353,118835,0.711527184,0.825949148,135960,,,124347.7447,147572.2553,59333,1479.042553,117186.9575,157595,130827,184363,72155,42128.2766,102181.7234,88640,76203.23404,101076.766,151003,145381.5532,156624.4468,,,,,,0.279375755,8557,30629,,,61.67055018,,,,,0.29719035,,135960,,,14.38542731,169,11748,,,1.924285417,35,1818857,1.340335299,2.676215193,,,,,,,,,,,,,1.234352652,0.705539193,2.004511374,,,,13.82985988,195,1296985,11.72683209,15.93288766,15.03486933,,,,,,,,,,12.67245358,7.941759191,19.18624701,15.1451776,12.39184714,17.89850805,,,,5.165826899,67,1296985,4.003444891,6.560417555,,,,,,,,,,,,,5.320407999,3.936067127,7.03386153,,,,5.168080833,94,1818857,4.17633538,6.324422081,,,,,,,,,,7.440803336,4.663111836,11.26546567,4.705969484,3.59969377,6.045014675,,,,,,,,,,,0.84034837,155830,185435,,,0.745,,,,,352.6617561,,,,,0.64067728,66444,103709,0.627439999,0.653914561,0.187683342,19002,101245,0.175472811,0.199893874,0.947738383,98289,103709,0.940777306,0.954699461,256018,,,,,0.188666422,48302,256018,,,0.244771852,62666,256018,,,0.024306885,6223,256018,,,0.009936801,2544,256018,,,0.07098329,18173,256018,,,0.002566226,657,256018,,,0.171085627,43801,256018,,,0.697134577,178479,256018,,,0.042665596,10628,249100,0.038128957,0.047202235,0.508565804,130202,256018,,,0.060128621,15773,262321,, -06,043,06043,CA,Mariposa County,2024,1,10003.50228,309,45308,8041.096278,11965.90828,0,,,,2,,,,2,,,,2,8101.328493,4186.07465,14151.39052,1,9911.005611,7710.176846,12111.83438,,,,,2,,0.156,,,0.131,0.183,3.793266755,,,2.979363722,4.69050403,5.557167069,,,4.477723606,6.705154938,0.06969697,69,990,0.053834981,0.085558959,0,,,,,,,,,,0.095808383,0.051167803,0.140448963,0.058583106,0.041593425,0.075572788,,,,,,,0.137,,,0.107,0.171,0.3,,,0.225,0.375,8,0.026113539,0.123,,,0.186,,,0.146,0.226,0.447551223,7667,17131,,,0.160327454,,,0.12619915,0.196426129,0.588235294,10,17,0.484229774,0.675652841,157.5,27,17147,,,19.63048499,51,2598,14.61618547,25.81046242,,,,,,,,,,22.03389831,11.73212287,37.67863715,20.36199095,14.26128813,28.18957833,,,,,,,0.073969883,894,12086,0.062054989,0.085884776,0.000233277,4,17147,,,4286.75,0.00052879,9,17020,,,1891.111111,0.003349001,57,17020,,,298.5964912,2473,,,,,,,,4074,2350,0.36,,,,,0.21,,,0.32,0.36,0.27,,,,,0.19,0.39,,0.25,0.27,0.918555082,12282,13371,0.891784134,0.94532603,0.730589849,2663,3645,0.594809592,0.866370106,0.044712659,326,7291,,,0.213,625,,0.145085106,0.280914894,,,,,,,,,,0.267584098,0.125551475,0.409616721,0.328519856,0.206095022,0.450944689,4.482704574,122983,27435,3.479793999,5.48561515,0.345768567,1001,2895,0.226295986,0.465241147,8.747885928,15,17147,,,110.9185442,96,86550,89.84437691,135.4505269,,,,,,,,,,,,,122.7872711,97.93993618,152.0189966,,,,7.1,,,,,0,,,,,0.209050351,1640,7845,0.16383771,0.254262991,0.177777778,0.1337542,0.221801356,0.023581899,0.009886237,0.037277562,0.022307202,0.008765817,0.035848587,0.584134615,4131,7072,0.513330401,0.65493883,,,,,,,,,,0.525052929,0.357853992,0.692251865,0.635780993,0.551796563,0.719765422,0.395,,7072,0.308258265,0.481741735,78.51231157,,,76.81883525,80.20578789,,,,,,,,,,85.88060552,75.33120633,96.4300047,78.02518329,76.23592676,79.81443983,,,,428.1284646,309,45308,371.6279525,484.6289767,,,,,,,,,,359.5325163,225.3171138,544.3365503,437.8359119,372.6401307,503.0316932,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.113,,,0.096,0.131,0.169,,,0.145,0.193,0.091,,,0.075,0.106,139.2,21,15084,,,0.123,2110,,,,0.026113539,476.5981967,18251,,,33.00330033,17,51510,19.22563865,52.84148091,,,,,,,,,,,,,37.11401425,20.77243204,61.21392239,,,,0.323,,,0.307,0.337,0.084845193,781,9205,0.069355831,0.100334555,0.040991736,124,3025,0.026693863,0.055289608,0.000763807,13,17020,,,1309.230769,0.875,123.375,141,,,,,,,,2.804805702,,,,,,,,,2.837467756,2.53544899,,,,,,,,,2.64481291,0.039935976,,,,,585.4258,,,,,0.776269378,45116,58119,0.569823986,0.982714771,66513,,,59216.31915,73809.68085,,,,43750,15263.87234,72236.12766,,,,76167,30669.97872,121664.0213,60739,54463.42553,67014.57447,,,,,,0.62358643,1158,1857,,,,,,,,0.294092884,,66513,,,7.00280112,5,714,,,,,,,,,,,,,,,,,,,,,,,,,,29.61739546,24,86550,18.09107459,45.74166517,27.72963605,,,,,,,,,,,,,36.95815661,21.90374589,58.40982106,,,,18.48642403,16,86550,10.56658862,30.02079445,,,,,,,,,,,,,21.9262984,12.27198277,36.16409477,,,,28.80871834,35,121491,20.06632788,40.06595334,,,,,,,,,,,,,29.00051787,19.27063351,41.91382283,,,,,,,,,,,0.730892286,10280,14065,,,0.508,,,,,11.27077788,,,,,0.737659603,5604,7597,0.706051028,0.769268178,0.145648313,1066,7319,0.108833243,0.182463382,0.834276688,6338,7597,0.786571663,0.881981714,17020,,,,,0.175264395,2983,17020,,,0.301410106,5130,17020,,,0.011809636,201,17020,,,0.037015276,630,17020,,,0.018448884,314,17020,,,0.002056404,35,17020,,,0.147649824,2513,17020,,,0.766451234,13045,17020,,,0.023953545,396,16532,0.007980931,0.039926158,0.495828437,8439,17020,,,1,17131,17131,, -06,045,06045,CA,Mendocino County,2024,1,9611.560939,1479,241145,8820.312824,10402.80905,0,20675.15267,15487.10811,27043.60874,,,,,2,,,,2,6432.591692,5251.541186,7613.642199,,9668.203693,8632.385384,10704.022,,,,,2,,0.179,,,0.152,0.209,3.994444038,,,3.177660516,4.956853552,5.683166421,,,4.616401032,6.858761116,0.068832173,445,6465,0.062660804,0.075003542,0,0.086486487,0.057845576,0.115127397,0.123966942,0.065248222,0.182685662,,,,0.054589567,0.045635733,0.063543401,0.073333333,0.064229731,0.082436936,,,,0.094240838,0.05280603,0.135675645,0.151,,,0.122,0.186,0.315,,,0.245,0.394,7.5,0.05922134,0.128,,,0.214,,,0.174,0.26,0.666946867,61093,91601,,,0.173392301,,,0.138274906,0.212854675,0.315789474,42,133,0.271824862,0.360181364,407.4,372,91305,,,19.13652275,328,17140,17.06551285,21.20753266,37.67820774,26.5289354,51.93444617,,,,,,,24.35247748,20.72356771,27.98138725,11.36512084,9.10299589,14.01883456,,,,31.25,19.58420863,47.31287555,0.097411593,6680,68575,0.0854967,0.109326487,0.000777614,71,91305,,,1285.985916,0.000801934,72,89783,,,1246.986111,0.00662709,595,89783,,,150.8957983,1594,,,,,4001,,1014,1704,1530,0.33,,,,,0.25,0.29,0.26,0.29,0.33,0.3,,,,,0.21,0.26,0.16,0.26,0.31,0.867716342,56543,65163,0.852922897,0.882509788,0.584481264,12135,20762,0.537790697,0.63117183,0.041147836,1530,37183,,,0.226,4140,,0.165234043,0.286765957,0.317528736,0.197042174,0.438015297,0.064864865,0,0.477740268,,,,0.245574699,0.189357854,0.301791544,0.145841104,0.098932945,0.192749263,5.209877046,127965,24562,4.738991708,5.680762383,0.28726188,5489,19108,0.234032226,0.340491534,7.338042824,67,91305,,,132.123828,581,439739,121.3802448,142.8674112,208.3453904,145.92255,288.4378407,,,,,,,74.95859845,59.95720321,92.57325929,150.7343423,136.4034307,165.0652538,,,,6,,,,,0,,,,,0.236792039,8090,34165,0.212990591,0.260593486,0.188020214,0.165740156,0.210300272,0.05444168,0.042413673,0.066469688,0.015805649,0.008405625,0.023205673,0.725088896,26713,36841,0.699306123,0.750871668,0.704996035,0.660916958,0.749075112,0.649275362,0.502939973,0.795610751,,,,0.715981644,0.652815781,0.779147507,0.738166715,0.719075849,0.75725758,0.249,,36841,0.217318928,0.280681073,77.24767509,,,76.58109546,77.91425473,67.80947969,64.32495534,71.29400404,80.6221156,75.30319914,85.94103206,,,,86.57117161,82.46889288,90.67345033,76.95001615,76.13297157,77.76706074,,,,424.6798943,1479,241145,400.7923373,448.5674512,845.4621986,676.2606279,1044.138937,,,,,,,282.2064149,236.8431037,327.5697261,438.004241,407.6275841,468.3808979,,,,56.22028575,46,81821,41.16031509,74.98998266,,,,,,,,,,58.68052645,36.32417074,89.69941804,41.66088043,23.31727853,68.71328669,,,,5.869074492,39,6645,4.173485702,8.023218039,,,,,,,,,,,,,,,,,,,,,,0.122,,,0.105,0.141,0.174,,,0.151,0.2,0.1,,,0.085,0.116,223.8,174,77759,,,0.128,11710,,,,0.05922134,5202.06175,87841,,,59.06517994,156,264115,49.79634169,68.33401819,106.4447455,53.13683344,190.4590528,,,,,,,27.16225876,16.35345413,42.4172317,67.78774112,55.34388996,80.23159228,,,,0.323,,,0.309,0.336,0.114458315,5703,49826,0.098968953,0.129947677,0.054041734,1067,19744,0.037360883,0.070722585,0.001113797,100,89783,,,897.83,0.854063808,816.485,956,,,0.12254902,525,4284,0.065238341,0.179859698,2.475187327,,,,,,,,2.328098571,2.698299632,2.370012146,,,,,,,,2.187500069,2.631072128,0.125915998,,,,,-4149.636667,,,,,0.902546305,48631,53882,0.789387712,1.015704898,63621,,,57542.02128,69699.97872,56371,43838.91489,68903.08511,81250,29898,132602,91151,90374.14894,91927.85106,59142,54715.61702,63568.38298,62870,59232.38298,66507.61702,,,,,,0.731468422,9335,12762,,,82.94031167,,,,,0.339321922,,63621,,,8.464566929,43,5080,,,6.666493229,41,615016,4.783990639,9.043850821,,,,,,,,,,7.590132827,3.92193239,13.25843457,5.037770686,3.077201212,7.780428236,,,,21.59222995,105,439739,17.17777549,26.0066844,23.87780024,,,,,,,,,,9.650398236,4.627741062,17.74742595,25.7882069,20.02555172,32.6926971,,,,16.14594112,71,439739,12.61011397,20.36590776,,,,,,,,,,9.587727709,4.786159128,17.15509327,19.86146627,15.00313818,25.79176601,,,,21.78805104,134,615016,18.09893721,25.47716488,41.30353971,19.80665275,75.95868011,,,,,,,22.13788741,15.41984972,30.78844236,20.40297128,16.20290427,25.35903038,,,,,,,,,,,0.69460694,43340,62395,,,0.543,,,,,65.9165629,,,,,0.608964899,21044,34557,0.58769209,0.630237708,0.19024405,6283,33026,0.167867177,0.212620923,0.856034957,29582,34557,0.836591769,0.875478145,89783,,,,,0.208469309,18717,89783,,,0.246238152,22108,89783,,,0.007362196,661,89783,,,0.066103828,5935,89783,,,0.024336456,2185,89783,,,0.00262856,236,89783,,,0.279551808,25099,89783,,,0.621977435,55843,89783,,,0.04429183,3818,86201,0.035133178,0.053450481,0.504015237,45252,89783,,,0.484645364,44394,91601,, -06,047,06047,CA,Merced County,2024,1,8467.9057,3411,804034,8094.912325,8840.899076,0,11483.9553,5732.749109,20547.96823,1,6567.933513,5322.507943,7813.359083,,19832.42494,16256.37626,23408.47363,,7230.659237,6792.873353,7668.445122,,10245.20352,9386.62911,11103.77793,,,,,2,,0.236,,,0.204,0.273,4.291519837,,,3.407920393,5.238902373,5.178066345,,,4.091711338,6.311337647,0.063746036,1749,27437,0.060855282,0.066636791,0,,,,0.074771383,0.062814757,0.086728008,0.134416544,0.108721902,0.160111186,0.060768311,0.057392234,0.064144388,0.052705131,0.046517141,0.058893121,,,,0.078175896,0.048146448,0.108205344,0.152,,,0.125,0.184,0.33,,,0.258,0.408,7.1,0.077115432,0.138,,,0.272,,,0.226,0.324,0.783038528,220192,281202,,,0.173831106,,,0.137707621,0.213714048,0.274305556,79,288,0.24460767,0.304580615,383.6,1099,286461,,,20.61203542,1727,83786,19.63989102,21.58417983,,,,3.778520564,2.468255082,5.536408092,21.54398564,15.8848343,28.56419936,24.65075216,23.37039465,25.93110967,13.27433628,11.39667059,15.15200198,,,,12.99376299,8.408878299,19.18135743,0.097294282,23891,245554,0.086570877,0.108017686,0.000418905,120,286461,,,2387.175,0.000465495,135,290014,,,2148.251852,0.002399884,696,290014,,,416.6867816,3367,,,,,11478,3045,4745,3111,3420,0.33,,,,,,0.27,0.3,0.29,0.38,0.38,,,,,0.37,0.41,0.29,0.34,0.41,0.71441458,120381,168503,0.702206965,0.726622195,0.49015115,37649,76811,0.465552088,0.514750213,0.076770036,8875,115605,,,0.26,21234,,0.22187234,0.29812766,0.468926554,0.124453846,0.813399262,0.230360934,0.150428488,0.31029338,0.590100111,0.462183577,0.718016645,0.277547257,0.255014556,0.300079958,0.172131774,0.123419351,0.220844197,4.382611516,121635,27754,4.076032119,4.689190912,0.270587949,22238,82184,0.24494026,0.296235638,3.70032919,106,286461,,,67.36979547,937,1390831,63.05607991,71.68351103,,,,39.83587619,28.45933399,54.24515692,135.8300184,102.6045362,176.3865771,52.34990963,47.48045277,57.21936649,102.8492236,92.46709475,113.2313524,,,,9.6,,,,,1,,,,,0.218990222,17805,81305,0.20609794,0.231882504,0.142883825,0.131149263,0.154618387,0.085357604,0.076748534,0.093966675,0.007072136,0.004380875,0.009763397,0.772760173,82207,106381,0.759497252,0.786023094,0.607216495,0.280191775,0.934241215,0.77852349,0.733083572,0.823963408,0.690191388,0.661433996,0.71894878,0.760251482,0.734251267,0.786251696,0.786575069,0.76135016,0.811799979,0.339,,106381,0.318021665,0.359978335,76.88504746,,,76.52013484,77.24996007,,,,80.18674151,78.68995222,81.68353081,67.37759292,65.15348308,69.60170277,79.84919495,79.15423056,80.54415933,74.72943029,74.0809495,75.37791109,,,,428.1487933,3411,804034,413.6209202,442.6766664,565.3728669,349.9747155,864.232484,330.1544778,282.0538536,378.2551021,877.5828848,761.9572322,993.2085375,360.1437622,341.2357267,379.0517977,506.2817985,478.2354096,534.3281874,,,,42.57800317,157,368735,35.91773778,49.23826857,,,,,,,153.1393568,83.7227114,256.9418193,40.78738717,33.0589787,48.51579564,40.16386858,25.99193806,59.28979307,,,,4.332286364,120,27699,3.557141982,5.107430747,,,,,,,,,,4.522769807,3.622553209,5.578819847,,,,,,,,,,0.138,,,0.12,0.16,0.17,,,0.147,0.196,0.132,,,0.113,0.153,174.7,399,228328,,,0.138,38590,,,,0.077115432,19725.58766,255793,,,18.141009,153,843393,15.26644624,21.01557175,,,,,,,,,,11.7259661,8.969434936,15.062494,35.10068354,27.65534633,43.93373959,,,,0.343,,,0.33,0.355,0.124509536,20531,164895,0.109020175,0.139998898,0.043601026,3706,84998,0.031686132,0.05551592,0.000675829,196,290014,,,1479.663265,0.912615937,4191.645,4593,,,0.101967346,2011,19722,0.077487115,0.126447578,2.675983771,,,,,,2.854879351,,2.597659073,3.054831258,2.46297682,,,,,,2.697740829,,2.388991261,2.791511396,0.103499615,,,,,-14248.36132,,,,,0.872900979,44861,51393,0.819697161,0.926104797,65253,,,60646.70213,69859.29787,75819,58907,92731,78786,70428.89362,87143.10638,45095,38115.25532,52074.74468,62163,58574.23404,65751.76596,70561,66736.31915,74385.68085,,,,,,0.74878499,44218,59053,,,46.24481201,,,,,0.325272401,,65253,,,5.388907435,113,20969,,,7.832120824,151,1927958,6.582877676,9.081363973,,,,,,,31.2418641,18.51590867,49.37561445,8.946629056,7.22714231,10.6661158,4.034132604,2.497191664,6.166600213,,,,9.04891748,119,1390831,7.39597493,10.70186003,8.556035924,,,,,,,,,,5.622891694,4.069314599,7.573998211,14.59345681,10.86578714,19.1877006,,,,9.922125693,138,1390831,8.266655931,11.57759546,,,,,,,38.8085767,22.18245477,63.02269719,9.314510947,7.374386033,11.6086598,10.36676524,7.336140084,14.22919524,,,,20.07305138,387,1927958,18.07312511,22.07297765,,,,8.584243621,4.435603944,14.99494606,34.71318233,21.20371359,53.6116947,19.01158675,16.50502562,21.51814787,23.62849097,19.45269277,27.80428916,,,,,,,,,,,0.595123554,90554,152160,,,0.648,,,,,165.6834453,,,,,0.533542774,44156,82760,0.518027035,0.549058514,0.169047589,13360,79031,0.154982228,0.183112949,0.891674722,73795,82760,0.881686469,0.901662975,290014,,,,,0.285899991,82915,290014,,,0.117297786,34018,290014,,,0.029291689,8495,290014,,,0.02629873,7627,290014,,,0.079834077,23153,290014,,,0.004217038,1223,290014,,,0.63199018,183286,290014,,,0.24023323,69671,290014,,,0.136965671,35832,261613,0.128915373,0.145015969,0.492027971,142695,290014,,,0.167989559,47239,281202,, -06,049,06049,CA,Modoc County,2024,1,11360.04095,179,23174,8534.687671,14185.39423,0,,,,2,,,,2,,,,2,,,,2,11936.03737,8382.915954,15489.15878,,,,,2,,0.188,,,0.158,0.218,4.163006929,,,3.423456744,4.965855427,5.825900662,,,4.786327007,6.911148729,0.084664537,53,626,0.062856839,0.106472234,0,,,,,,,,,,,,,0.07918552,0.054011424,0.104359617,,,,,,,0.169,,,0.134,0.207,0.331,,,0.256,0.416,6.2,0.171759603,0.136,,,0.222,,,0.179,0.269,0.546206897,4752,8700,,,0.154163973,,,0.122144512,0.19176916,0.117647059,2,17,0.02445786,0.265431552,334.8,29,8661,,,23.94366197,34,1420,16.58168196,33.45886767,,,,,,,,,,,,,25.61247216,16.23611029,38.43128385,,,,,,,0.089707583,543,6053,0.075409711,0.104005455,0.00046184,4,8661,,,2165.25,0.00070497,6,8511,,,1418.5,0.00399483,34,8511,,,250.3235294,1726,,,,,,,,,1763,0.35,,,,,0.35,,,,0.35,0.16,,,,,0.11,,,0.1,0.16,0.8828137,5748,6511,0.830517687,0.935109713,0.584543569,1127,1928,0.4706428,0.698444337,0.05476865,174,3177,,,0.28,425,,0.177531915,0.382468085,0.153846154,0,0.323585382,,,,,,,0.199488491,0.050492163,0.348484819,0.224316682,0.074588441,0.374044924,3.772007525,96239,25514,2.563618999,4.980396052,0.211656442,345,1630,0.11682009,0.306492793,0,0,8661,,,138.9489989,61,43901,106.2849743,178.485802,,,,,,,,,,,,,147.7585035,109.6692093,194.8011663,,,,5.8,,,,,0,,,,,0.123783032,445,3595,0.082658226,0.164907838,0.105635797,0.062736751,0.148534844,0.033379694,0.01248926,0.054270128,0.002781641,0,0.012413472,0.745603015,2374,3184,0.690362945,0.800843086,,,,,,,,,,,,,0.770952381,0.681195869,0.860708893,0.236,,3184,0.165209086,0.306790914,75.79924418,,,73.65017093,77.94831743,,,,,,,,,,,,,75.51925335,72.88918984,78.14931686,,,,501.482584,179,23174,415.6540681,587.3110999,,,,,,,,,,,,,503.0925961,401.837263,604.3479293,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.13,,,0.111,0.15,0.184,,,0.159,0.211,0.102,,,0.087,0.119,,,,,,0.136,1190,,,,0.171759603,1663.663517,9686,,,,,,,,,,,,,,,,,,,,,,,,,,0.335,,,0.32,0.349,0.105310129,472,4482,0.0862463,0.124373959,0.046959663,78,1661,0.031470301,0.062449025,0.00070497,6,8511,,,1418.5,0.875,57.75,66,,,,,,,,2.616484834,,,,,,,,,2.550975754,2.354169193,,,,,,,,,2.301942942,0.010717266,,,,,-3343.223,,,,,0.626847989,36507,58239,0.462786177,0.7909098,51166,,,44746.25532,57585.74468,31771,5422.404255,58119.59575,,,,,,,41108,38560.59575,43655.40426,58105,50114.87234,66095.12766,,,,,,0.60212766,566,940,,,65.60046525,,,,,0.372083024,,51166,,,17.46724891,8,458,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,19.46124779,12,61661,10.05591072,33.99488339,,,,,,,,,,,,,,,,,,,,,,,,,,0.638676471,4343,6800,,,0.484,,,,,18.00116632,,,,,0.751395827,2557,3403,0.708840776,0.793950878,0.1196875,383,3200,0.067117128,0.172257872,0.792535998,2697,3403,0.744921588,0.840150407,8511,,,,,0.18258724,1554,8511,,,0.304077077,2588,8511,,,0.008459641,72,8511,,,0.055105158,469,8511,,,0.014451886,123,8511,,,0.00399483,34,8511,,,0.160145694,1363,8511,,,0.753142991,6410,8511,,,0.025507106,210,8233,0,0.052340262,0.503231113,4283,8511,,,1,8700,8700,, -06,051,06051,CA,Mono County,2024,1,4788.617268,111,39721,3475.190141,6102.044394,0,,,,2,,,,2,,,,2,,,,2,4057.571807,2737.626659,5792.436053,,,,,2,,0.148,,,0.124,0.174,3.519739246,,,2.72424254,4.414417757,5.242809005,,,4.173680653,6.397740368,0.083705357,75,896,0.065571246,0.101839468,0,,,,,,,,,,0.082901554,0.055394016,0.110409093,0.075555556,0.051136806,0.099974305,,,,,,,0.124,,,0.095,0.156,0.296,,,0.226,0.377,7.4,0.172374672,0.08,,,0.18,,,0.141,0.223,0.733080712,9673,13195,,,0.194086851,,,0.156340607,0.237172626,0.533333333,16,30,0.451827448,0.606698561,294.4,39,13247,,,11.0974106,27,2433,7.313263515,16.14614979,,,,,,,,,,21.44082333,13.87537037,31.65088482,,,,,,,,,,0.106121308,1139,10733,0.089440457,0.122802159,0.000830377,11,13247,,,1204.272727,0.000462321,6,12978,,,2163,0.002465711,32,12978,,,405.5625,1360,,,,,1932,,,,1190,0.42,,,,,0.22,0.42,,0.31,0.44,0.4,,,,,0.12,0.48,,0.28,0.42,0.871624429,8392,9628,0.834881988,0.90836687,0.706560527,2574,3643,0.58124578,0.831875274,0.037374553,324,8669,,,0.106,231,,0.06787234,0.14412766,0.06779661,0,0.503560926,,,,,,,0.315118397,0.149649366,0.480587428,0.038314176,0,0.08562661,3.112706742,132869,42686,2.01553406,4.209879425,0.098844161,248,2509,0.006247499,0.191440823,3.774439496,5,13247,,,63.70057897,45,70643,46.46363941,85.23638647,,,,,,,,,,,,,75.64623498,52.69037435,105.2056008,,,,8.5,,,,,0,,,,,0.163618864,850,5195,0.097407665,0.229830064,0.090541322,0.045041719,0.136040924,0.041385948,0.008762066,0.074009831,0.054860443,0.003243711,0.106477175,0.61,4514,7400,0.561719802,0.658280199,,,,,,,,,,0.485446009,0.324241765,0.646650254,0.666923077,0.600964684,0.73288147,0.168,,7400,0.106514069,0.229485931,98.90293793,,,90.05496184,107.750914,,,,,,,,,,,,,98.950324,89.60226117,108.2983868,,,,209.0114992,111,39721,168.1631565,249.8598419,,,,,,,,,,,,,192.8118826,149.1206961,245.30399,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.106,,,0.09,0.123,0.158,,,0.134,0.181,0.087,,,0.074,0.103,60.1,7,11650,,,0.08,1070,,,,0.172374672,2448.065085,14202,,,,,,,,,,,,,,,,,,,,,,,,,,0.319,,,0.302,0.335,0.118550006,1004,8469,0.098294687,0.138805325,0.061609388,147,2386,0.041354069,0.081864707,0.001078749,14,12978,,,927,0.95625,107.1,112,,,,,,,,2.537874285,,,,,,,,2.171702957,3.195504621,2.283151162,,,,,,,,2.028741446,2.746181914,0.048245383,,,,,3846.5315,,,,,0.981976305,54537,55538,0.783256623,1.180695986,79105,,,67412.91489,90797.08511,70288,46142.46809,94433.53192,,,,,,,71731,30872.44681,112589.5532,90283,63699.68085,116866.3192,,,,,,0.474543081,727,1532,,,,,,,,0.343277922,,79105,,,16.43835616,12,730,,,,,,,,,,,,,,,,,,,,,,,,,,14.69370977,12,70643,7.335046977,26.2911056,16.98682106,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.14888413,10,98533,4.866784424,18.66415926,,,,,,,,,,,,,,,,,,,,,,,,,,0.661561119,6738,10185,,,0.223,,,,,56.79974135,,,,,0.683902796,3743,5473,0.633081047,0.734724544,0.139191291,716,5144,0.086008487,0.192374095,0.897131372,4910,5473,0.84392375,0.950338994,12978,,,,,0.169209431,2196,12978,,,0.184620126,2396,12978,,,0.008013561,104,12978,,,0.030127909,391,12978,,,0.021806134,283,12978,,,0.003698567,48,12978,,,0.273462783,3549,12978,,,0.652026506,8462,12978,,,0.039558708,502,12690,0.011262777,0.067854638,0.462783172,6006,12978,,,0.466085639,6150,13195,, -06,053,06053,CA,Monterey County,2024,1,5768.449118,3911,1226075,5514.943536,6021.954701,0,,,,2,3336.168199,2600.418584,4071.917814,,6666.981406,5148.798413,8185.164399,,5807.689415,5484.342353,6131.036477,,5717.970044,5219.732615,6216.207473,,6420.817791,3317.730248,11215.87652,1,,0.201,,,0.17,0.234,3.832882939,,,3.060548196,4.725506066,5.25100633,,,4.33219951,6.285411908,0.063471663,2568,40459,0.061095923,0.065847403,0,,,,0.07896735,0.064401881,0.093532819,0.088082902,0.059808989,0.116356814,0.062416217,0.059705054,0.06512738,0.052419955,0.047089193,0.057750718,,,,0.074074074,0.055062698,0.09308545,0.124,,,0.1,0.151,0.275,,,0.218,0.34,8.3,0.05080918,0.098,,,0.235,,,0.192,0.281,0.895347751,393089,439035,,,0.163161461,,,0.131804696,0.200100749,0.384615385,90,234,0.353068084,0.415913697,503.3,2201,437325,,,22.03089857,2390,108484,21.147637,22.91416013,,,,,,,10.25364274,6.173362744,16.01233328,29.03935785,27.83756824,30.24114745,4.39111565,3.512325721,5.422992105,,,,4.384591294,2.397096861,7.356599161,0.119706126,42966,358929,0.108982722,0.13042953,0.000647116,283,437325,,,1545.318021,0.000736962,319,432858,,,1356.92163,0.004571938,1979,432858,,,218.725619,2064,,,,,,1919,2667,2619,1786,0.36,,,,,0.45,0.36,0.37,0.28,0.41,0.45,,,,,0.33,0.5,0.32,0.37,0.49,0.73363624,205223,279734,0.725678203,0.741594278,0.514054522,60606,117898,0.495497482,0.532611561,0.059376347,13091,220475,,,0.164,17671,,0.130638298,0.197361702,0.186646434,0,0.388962714,0.076993795,0.036097319,0.11789027,0.303321033,0.15762233,0.449019737,0.214184828,0.194709411,0.233660244,0.036883703,0.022179644,0.051587763,4.200172584,170359,40560,4.007596376,4.392748792,0.191638867,21600,112712,0.173320228,0.209957507,5.510775739,241,437325,,,59.70237058,1299,2175793,56.45566378,62.94907739,,,,38.55204928,28.4252378,51.11442424,85.72731418,62.98920596,113.9991543,45.73381529,42.04970476,49.41792582,91.38151231,83.95087017,98.81215445,,,,5.5,,,,,1,,,,,0.293972892,37630,128005,0.281376752,0.306569031,0.176350181,0.165640756,0.187059606,0.135893129,0.126470576,0.145315683,0.006601305,0.004337981,0.008864628,0.69147241,131052,189526,0.680693832,0.702250989,0.648375451,0.513289492,0.78346141,0.654370935,0.606659413,0.702082456,0.630691824,0.555346596,0.706037051,0.698619122,0.684792684,0.71244556,0.677517699,0.656758151,0.698277248,0.307,,189526,0.292407295,0.321592705,81.29845523,,,80.99800027,81.59891019,,,,84.94715479,83.83895976,86.05534981,78.52448351,76.79208073,80.25688628,81.65380383,81.08798145,82.2196262,81.01951668,80.5492025,81.48983087,79.39523235,74.69892875,84.09153596,282.5938967,3911,1226075,273.589486,291.5983073,,,,202.401865,173.8339202,230.9698098,380.6093444,318.5340491,442.6846397,278.9190931,265.380679,292.4575072,292.8628487,276.9792284,308.746469,375.1379167,245.052542,549.6639658,40.58562672,204,502641,35.01616473,46.15508871,,,,,,,,,,45.41385674,38.64646362,52.18124986,29.16893889,18.49060511,43.76773014,,,,4.515111057,186,41195,3.866225607,5.163996508,,,,,,,,,,5.188861673,4.387340081,5.990383266,,,,,,,,,,0.121,,,0.105,0.139,0.157,,,0.137,0.18,0.113,,,0.098,0.132,212.9,761,357414,,,0.098,43040,,,,0.05080918,21088.70573,415057,,,19.96480052,260,1302292,17.53799836,22.39160268,,,,,,,43.23923652,23.63929297,72.54809167,14.49816464,11.82497433,17.17135494,31.33872112,25.6841934,36.99324883,,,,0.311,,,0.298,0.324,0.154962011,38425,247964,0.139472649,0.170451372,0.044532329,5191,116567,0.033808925,0.055255733,0.000637623,276,432858,,,1568.326087,0.861182302,4690.86,5447,,,0.075543184,1954,25866,0.059117666,0.091968702,2.547813625,,,,,,3.079976787,2.311432095,2.421012648,3.303457178,2.420091482,,,,,,3.009310311,2.146403605,2.306331099,3.075278295,0.278380896,,,,,-8644.799737,,,,,0.906668348,50321,55501,0.865484317,0.94785238,91450,,,88258,94642,83889,69578.02128,98199.97872,106127,93624.70213,118629.2979,78108,71420.17021,84795.82979,76870,72423.3617,81316.6383,110880,107785.7021,113974.2979,,,,,,0.737069984,56178,76218,,,57.90612463,,,,,0.273799891,,91450,,,4.666710796,141,30214,,,8.440279114,257,3044923,7.408358428,9.4721998,,,,,,,,,,11.7274279,10.14502301,13.30983278,3.329519184,2.246412612,4.753095664,,,,9.626320771,212,2175793,8.312179136,10.94046241,9.743573952,,,,7.802672058,3.741684539,14.34939172,,,,4.772977155,3.624321664,6.170179789,17.46326788,14.10748164,20.81905412,,,,9.00820988,196,2175793,7.747060497,10.26935926,,,,,,,,,,8.961355699,7.330555361,10.59215604,11.16710391,8.721600805,14.08578209,,,,11.13328646,339,3044923,9.948119306,12.31845361,,,,7.992874923,4.369779098,13.41068597,14.24907381,7.113086307,25.49552905,11.7274279,10.14502301,13.30983278,10.65446139,8.630147932,13.01092093,,,,,,,,,,,0.69230087,163923,236780,,,0.636,,,,,239.5647675,,,,,0.521932001,68359,130973,0.511461764,0.532402238,0.187402215,23956,127832,0.176486649,0.198317782,0.918028907,120237,130973,0.913080926,0.922976888,432858,,,,,0.254071774,109977,432858,,,0.152015211,65801,432858,,,0.022494675,9737,432858,,,0.02611711,11305,432858,,,0.06814475,29497,432858,,,0.005680847,2459,432858,,,0.608247971,263285,432858,,,0.281281621,121755,432858,,,0.168978495,69012,408407,0.161928464,0.176028525,0.490578897,212351,432858,,,0.142533056,62577,439035,, -06,055,06055,CA,Napa County,2024,1,4952.536034,1324,374302,4515.128659,5389.943409,0,,,,2,5106.209885,3304.469807,7537.773082,,6398.074906,3852.059044,9991.386509,1,3911.526937,3312.444533,4510.60934,,5622.85704,4898.5578,6347.156279,,,,,2,,0.145,,,0.119,0.168,3.309943101,,,2.565049633,4.079108605,4.8897809,,,3.879916765,5.93362068,0.060318187,527,8737,0.055326016,0.065310358,0,,,,0.071672355,0.05078739,0.09255732,,,,0.063182898,0.055833662,0.070532134,0.055048572,0.047378736,0.062718408,,,,0.066326531,0.03148725,0.101165812,0.107,,,0.082,0.133,0.28,,,0.215,0.352,8.9,0.02629963,0.078,,,0.183,,,0.146,0.225,0.94966635,131072,138019,,,0.179487099,,,0.142605869,0.220209513,0.256097561,21,82,0.199324169,0.315382086,356.8,486,136207,,,7.963746626,239,30011,6.954088012,8.973405241,,,,,,,,,,13.03237942,11.1984656,14.86629323,3.608699893,2.540857756,4.974117443,,,,,,,0.079108839,8419,106423,0.069576924,0.088640754,0.000983797,134,136207,,,1016.470149,0.001012658,136,134300,,,987.5,0.006723753,903,134300,,,148.7264673,1590,,,,,,1497,3207,1505,1531,0.42,,,,,,0.29,0.35,0.27,0.46,0.45,,,,,0.29,0.4,0.34,0.3,0.48,0.843971415,82905,98232,0.834270089,0.85367274,0.662658339,22704,34262,0.627628436,0.697688242,0.032069971,2277,71001,,,0.093,2354,,0.064404255,0.121595745,0.510144928,0.188364355,0.8319255,0.0454316,0.001261419,0.089601781,0.19279661,0.060308002,0.325285218,0.123582048,0.0908445,0.156319595,0.044334975,0.024934245,0.063735705,4.446447368,202758,45600,4.152139406,4.740755331,0.199093534,5447,27359,0.167946895,0.230240173,7.708854905,105,136207,,,62.0014892,428,690306,56.1274572,67.87552119,,,,23.93366954,13.08475985,40.15663069,,,,27.9357561,21.64982727,35.47742275,92.87682457,82.87107951,102.8825696,,,,5.9,,,,,1,,,,,0.224089925,10865,48485,0.210161946,0.238017903,0.164386401,0.150343388,0.178429414,0.058987316,0.050391479,0.067583152,0.016190574,0.011744912,0.020636237,0.727468389,48672,66906,0.713301652,0.741635125,,,,0.714899494,0.664625287,0.765173701,0.718164794,0.617043802,0.819285786,0.716705769,0.690883912,0.742527625,0.761053472,0.740815568,0.781291375,0.361,,66906,0.338741142,0.383258858,81.35300252,,,80.90300611,81.80299894,,,,84.89702433,82.35967773,87.43437092,79.33355265,76.16192976,82.50517554,84.48677104,83.11893675,85.85460534,80.39923302,79.77329792,81.02516813,,,,251.2007935,1324,374302,236.9601024,265.4414845,,,,201.6654591,156.9077644,255.2205453,317.9015368,220.1560557,444.2355336,207.5585529,181.066205,234.0509007,276.9444047,256.2192827,297.6695268,,,,28.22876592,35,123987,19.66236977,39.25937991,,,,,,,,,,15.60914696,7.485192689,28.70577701,38.2573765,21.86739624,62.12758261,,,,3.20548248,29,9047,2.146761925,4.603607543,,,,,,,,,,,,,,,,,,,,,,0.099,,,0.084,0.114,0.148,,,0.126,0.171,0.089,,,0.075,0.104,242.2,286,118097,,,0.078,10870,,,,0.02629963,3589.478696,136484,,,14.14924033,58,409916,10.7441114,18.29117423,,,,,,,,,,,,,21.43683992,15.63617814,28.68417842,,,,0.313,,,0.3,0.326,0.089365281,7120,79673,0.077450387,0.101280174,0.051654133,1463,28323,0.03735626,0.065952005,0.000826508,111,134300,,,1209.90991,0.909092476,1582.73,1741,,,0.023600439,172,7288,0.008988142,0.038212737,2.787234226,,,,,,3.484166231,2.633541335,2.506735478,3.153307842,2.66106926,,,,,,3.395855961,2.568639141,2.314056725,3.093606917,0.174825904,,,,,2787.383667,,,,,0.99488132,68027,68377,0.941210672,1.048551968,98580,,,91230.89362,105929.1064,114167,9342.148936,218991.8511,133500,105656.0851,161343.9149,141250,53469.40426,229030.5957,85268,75877.87234,94658.12766,113214,108066.766,118361.234,,,,,,0.503343689,9559,18991,,,69.19131446,,,,,0.28969365,,98580,,,9.156409487,61,6662,,,1.436003479,14,974928,0.785076465,2.409369833,,,,,,,,,,,,,,,,,,,11.02705055,86,690306,8.730219761,13.74299511,12.45824316,,,,,,,,,,4.846272581,2.504139761,8.465462905,15.52742257,11.4872727,20.5280761,,,,7.098301333,49,690306,5.251362403,9.384330803,,,,,,,,,,,,,10.94319081,7.78167843,14.95970208,,,,8.616020875,84,974928,6.872475684,10.66722012,,,,,,,,,,6.242920974,3.864466478,9.542967865,11.62355444,8.848388193,14.99353836,,,,,,,,,,,0.749883074,72150,96215,,,0.695,,,,,196.6823067,,,,,0.651712788,32076,49218,0.636862367,0.66656321,0.17724389,8521,48075,0.161863907,0.192623873,0.926023,45577,49218,0.918495624,0.933550375,134300,,,,,0.192099777,25799,134300,,,0.213328369,28650,134300,,,0.019932986,2677,134300,,,0.012851824,1726,134300,,,0.093924051,12614,134300,,,0.004333582,582,134300,,,0.359679821,48305,134300,,,0.499731943,67114,134300,,,0.074891448,9814,131043,0.066947904,0.082834991,0.49893522,67007,134300,,,0.147255088,20324,138019,, -06,057,06057,CA,Nevada County,2024,1,7627.235166,1360,269706,6892.776357,8361.693975,0,,,,2,,,,2,,,,2,5309.317415,3676.856652,7419.238921,,7999.733314,7144.506908,8854.959719,,,,,2,,0.13,,,0.109,0.155,3.413376642,,,2.631120058,4.273757009,5.492076676,,,4.42075614,6.609237326,0.055345912,308,5565,0.049338289,0.061353535,0,,,,,,,,,,0.057242991,0.04168046,0.072805522,0.05278521,0.04594983,0.059620591,,,,0.05106383,0.022919084,0.079208576,0.12,,,0.091,0.155,0.275,,,0.211,0.347,8,0.086130407,0.091,,,0.164,,,0.129,0.203,0.806780059,82486,102241,,,0.176089422,,,0.141092206,0.215054765,0.378048781,31,82,0.32296771,0.432309492,175.9,182,103487,,,8.023027928,131,16328,6.649116526,9.396939329,,,,,,,,,,17.40391588,12.83227369,23.07506751,5.888607181,4.607472454,7.415726183,,,,,,,0.063178956,4705,74471,0.053647041,0.072710871,0.000724729,75,103487,,,1379.826667,0.000860274,88,102293,,,1162.420455,0.010724097,1097,102293,,,93.24794895,1695,,,,,,,,1538,1711,0.43,,,,,0.46,0.35,,0.3,0.43,0.43,,,,,0.11,0.4,0.33,0.33,0.43,0.950776514,75118,79007,0.942290738,0.959262289,0.717457852,15703,21887,0.666009676,0.768906027,0.034328389,1664,48473,,,0.118,1968,,0.073914894,0.162085106,0.104651163,0,0.58287639,,,,,,,0.193349332,0.10089994,0.285798724,0.084911718,0.057314164,0.112509271,5.017045455,162472,32384,4.528333283,5.505757627,0.153695037,2660,17307,0.114077459,0.193312614,9.469788476,98,103487,,,95.35032785,479,502358,86.8112592,103.8893965,,,,,,,,,,67.31396867,46.33583872,94.53383908,98.7231802,89.28147224,108.1648882,,,,6.3,,,,,1,,,,,0.198215813,8110,40915,0.179097425,0.217334202,0.180507639,0.16112254,0.199892739,0.017353049,0.012344761,0.022361337,0.007698888,0.003899438,0.011498338,0.673608917,29853,44318,0.653717215,0.693500619,,,,0.816826411,0.651320916,0.982331906,,,,0.675364701,0.601290785,0.749438617,0.631298271,0.60363513,0.658961413,0.302,,44318,0.269088139,0.334911861,79.97786885,,,79.35096236,80.60477535,,,,,,,,,,83.08360769,80.52487487,85.64234052,79.58883967,78.88673711,80.29094224,,,,314.0146385,1360,269706,294.3452843,333.6839927,,,,,,,,,,222.013009,170.6008919,284.0510812,324.0276541,301.9018179,346.1534902,,,,50.68964597,38,74966,35.87101039,69.57549945,,,,,,,,,,,,,50.20350349,33.35986348,72.55804053,,,,4.774535809,27,5655,3.146449183,6.946698929,,,,,,,,,,,,,,,,,,,,,,0.101,,,0.084,0.119,0.164,,,0.14,0.191,0.078,,,0.065,0.093,140.1,128,91337,,,0.091,9320,,,,0.086130407,8506.583519,98764,,,31.69907016,96,302848,25.6763486,38.70999016,,,,,,,,,,36.73891988,18.33993643,65.73607599,30.89533911,24.46013092,38.50481074,,,,0.304,,,0.286,0.32,0.072771398,4138,56863,0.060856504,0.084686292,0.03402279,630,18517,0.023299386,0.044746194,0.000928705,95,102293,,,1076.768421,0.896881029,836.79,933,,,0.070323106,259,3683,0.027193749,0.113452463,2.977734607,,,,,,,,2.589483758,3.062252156,2.804696127,,,,,,,,2.591422467,2.859840701,0.139613694,,,,,1495.495188,,,,,0.797052884,54469,68338,0.719843109,0.874262659,80069,,,71247.21277,88890.78723,,,,59529,44599.6383,74458.3617,,,,86205,66195.12766,106214.8723,79563,74478.91489,84647.08511,,,,,,0.394373838,5089,12904,,,79.16318819,,,,,0.287414605,,80069,,,9.006873667,38,4219,,,2.85574762,20,700342,1.744364837,4.410470585,,,,,,,,,,,,,2.859762303,1.665916927,4.578756477,,,,20.79816473,116,502358,16.60821606,24.98811341,23.09110236,,,,,,,,,,,,,22.47594768,17.64027163,27.31162374,,,,13.33710223,67,502358,10.33607103,16.93764838,,,,,,,,,,,,,14.33836665,10.96771436,18.4182318,,,,14.13595072,99,700342,11.48900321,17.21001279,,,,,,,,,,,,,14.29881152,11.42138278,17.68070187,,,,,,,,,,,0.812574512,64750,79685,,,0.613,,,,,79.11506656,,,,,0.748521067,31000,41415,0.73052713,0.766515004,0.214935661,8669,40333,0.190996713,0.238874609,0.902957866,37396,41415,0.888077307,0.917838424,102293,,,,,0.167460139,17130,102293,,,0.2947318,30149,102293,,,0.005533125,566,102293,,,0.013109401,1341,102293,,,0.01734234,1774,102293,,,0.002160461,221,102293,,,0.103975834,10636,102293,,,0.836010284,85518,102293,,,0.01177214,1155,98113,0.007785803,0.015758478,0.504599533,51617,102293,,,0.48204732,49285,102241,, -06,059,06059,CA,Orange County,2024,1,4990.332026,27169,8874231,4902.206943,5078.457109,0,7233.569093,4681.184519,10678.17493,1,2857.631593,2720.016146,2995.24704,,8306.529449,7414.39594,9198.662957,,5927.452169,5768.06845,6086.835888,,5309.680859,5155.684155,5463.677563,,11106.06454,8739.956931,13472.17216,,,0.144,,,0.124,0.167,3.089147177,,,2.491954883,3.769468363,4.472292949,,,3.76661844,5.231990174,0.064586491,15427,238858,0.063600759,0.065572223,0,0.048780488,0.019292673,0.078268302,0.068706231,0.066649649,0.070762812,0.099099099,0.088401506,0.109796692,0.067358534,0.065776741,0.068940327,0.05441101,0.052732905,0.056089116,0.060559006,0.042136986,0.078981027,0.071523472,0.064007436,0.079039508,0.097,,,0.077,0.12,0.253,,,0.213,0.297,9,0.011212586,0.084,,,0.17,,,0.142,0.203,0.991155288,3158801,3186989,,,0.164961885,,,0.138560997,0.19344515,0.281045752,258,918,0.264639567,0.297622448,373.2,11822,3167809,,,8.538256702,6012,704125,8.322424723,8.754088681,,,,0.60525818,0.479932095,0.753296198,8.77032706,7.103993077,10.71007044,16.23290189,15.78833978,16.67746401,2.448153292,2.237730389,2.658576195,8.843967151,4.835079139,14.83867411,2.437337374,1.913834072,3.059853875,0.078632856,208473,2651220,0.073866898,0.083398813,0.000996272,3156,3167809,,,1003.741762,0.001235091,3892,3151184,,,809.6567318,0.003818247,12032,3151184,,,261.900266,1602,,,,,,1499,3429,2315,1471,0.38,,,,,0.28,0.34,0.33,0.25,0.42,0.47,,,,,0.42,0.57,0.3,0.32,0.46,0.868289107,1908219,2197677,,,0.733939746,634841,864977,,,0.031630882,50321,1590882,,,0.11,70338,,0.093319149,0.126680851,0.13871586,0.088870066,0.188561654,0.099809792,0.088748383,0.1108712,0.124202305,0.085272034,0.163132576,0.159504558,0.150931714,0.168077401,0.05264426,0.047131797,0.058156723,4.742627705,212612,44830,4.656260149,4.828995261,0.184800903,125390,678514,0.177692954,0.191908853,6.572365948,2082,3167809,,,48.0464005,7633,15886726,46.96852327,49.12427773,57.69600615,34.19430983,91.18456397,24.67377908,23.00318963,26.34436852,67.25356104,57.3734607,77.13366138,37.23238645,35.60669014,38.85808276,70.33788063,68.26657834,72.40918293,66.88366701,45.12612927,95.48059347,9.4,,,,,0,,,,,0.261730769,272200,1040000,0.257011811,0.266449727,0.189104315,0.18474111,0.193467519,0.088341346,0.0854814,0.091201293,0.0135,0.01243403,0.01456597,0.713778172,1115833,1563277,0.710176576,0.717379769,0.706879285,0.693929473,0.719829097,0.685419633,0.675537942,0.695301324,0.756098823,0.728735992,0.783461654,0.737145371,0.730416646,0.743874096,0.72079445,0.713856431,0.727732468,0.409,,1563277,0.40353991,0.41446009,81.77746801,,,81.6768417,81.87809433,79.05923872,76.56995258,81.54852485,86.29983617,86.0430142,86.55665814,77.87020155,76.95902822,78.78137488,81.08596323,80.84020002,81.33172644,80.86487263,80.72052154,81.00922371,74.09801517,72.10816614,76.0878642,248.9073025,27169,8874231,245.877713,251.936892,339.2959194,263.4765576,430.1384258,156.309715,151.3444944,161.2749356,390.6252278,361.2167493,420.0337064,297.358828,290.7307341,303.9869219,263.5901117,258.8178026,268.3624208,571.6139042,483.3193393,659.908469,29.38389274,902,3069709,27.46627459,31.3015109,,,,22.233264,18.4403558,26.02617219,44.53747829,27.20464879,68.78452301,31.57227781,28.61545751,34.52909811,29.78945728,26.1684284,33.41048616,,,,3.127137692,768,245592,2.905969603,3.348305781,,,,1.77213932,1.436353738,2.107924902,7.372654156,4.620403107,11.16228699,4.045079493,3.649649046,4.44050994,2.5257081,2.158760937,2.892655263,,,,11.13051069,8.287396298,14.63456599,0.095,,,0.082,0.11,0.14,,,0.121,0.161,0.095,,,0.082,0.11,268.3,7229,2694102,,,0.084,267330,,,,0.011212586,33752.48474,3010232,,,20.9560986,1993,9510358,20.03604558,21.87615162,,,,4.866700589,3.917561165,5.815840013,34.24934771,25.80129585,44.58023375,17.29677145,15.8628835,18.73065939,32.83730404,30.99766398,34.67694409,,,,0.321,,,0.31,0.332,0.094108412,186179,1978346,0.088150965,0.100065859,0.03541739,25111,709002,0.029459943,0.041374836,0.000929809,2930,3151184,,,1075.48942,0.913836684,35408.43,38747,,,0.046719944,7980,170805,0.041064732,0.052375155,3.098798989,,,,,,3.818702252,2.821892267,2.6549843,3.48317742,2.982585308,,,,,,3.784495736,2.596930412,2.526687621,3.319465703,0.239553863,,,,,-625.0222519,,,,,0.819742767,63353,77284,0.802312653,0.837172881,106047,,,104504.0213,107589.9787,87453,81463.38298,93442.61702,113015,110459.2553,115570.7447,91130,85236.89362,97023.10638,88088,86509.2766,89666.7234,120890,119419.7021,122360.2979,,,,,,0.46483919,208644,448852,,,49.24169194,,,,,0.28693881,,106047,,,6.473060967,1178,181985,,,2.217820172,493,22229034,2.022044402,2.413595942,,,,1.010667488,0.742600455,1.343973505,7.360498115,4.850614638,10.70913832,3.571568836,3.146332418,3.996805254,1.435526845,1.186834507,1.684219182,,,,9.913799475,1685,15886726,9.431150698,10.39644825,10.6063389,,,,6.3435854,5.505221622,7.181949178,8.899685568,5.702196471,13.24202668,5.200832864,4.579207242,5.822458485,15.11921869,14.1581653,16.08027208,,,,4.909759254,780,15886726,4.565195995,5.254322514,,,,1.678288076,1.271118999,2.174416866,11.33486984,7.647589081,16.18123149,3.972686395,3.441653867,4.503718924,7.256074819,6.590802087,7.921347552,,,,7.103322619,1579,22229034,6.752952915,7.453692323,,,,4.451237659,3.844848147,5.057627171,12.81271894,9.414303947,17.03819999,8.039324686,7.401339312,8.677310061,7.659881522,7.085410969,8.234352075,,,,,,,,,,,0.726720761,1522113,2094495,,,0.738,,,,,720.2828371,,,,,0.565475867,602959,1066286,0.560431577,0.570520157,0.200990745,208711,1038411,0.196750854,0.205230635,0.936069685,998118,1066286,0.933918408,0.938220962,3151184,,,,,0.207705104,654517,3151184,,,0.163854285,516335,3151184,,,0.017541661,55277,3151184,,,0.010529693,33181,3151184,,,0.233142844,734676,3151184,,,0.003857598,12156,3151184,,,0.340241319,1072163,3151184,,,0.380028269,1197539,3151184,,,0.088332123,265062,3000743,,,0.503471711,1586532,3151184,,,0.002498283,7962,3186989,, -06,061,06061,CA,Placer County,2024,1,4832.150277,3764,1108234,4577.104688,5087.195865,0,9327.198932,5331.300091,15146.78672,1,2206.080266,1662.680994,2749.479539,,5899.13332,3436.462549,9445.083903,1,4140.307254,3562.717104,4717.897404,,5200.47917,4874.903124,5526.055217,,,,,2,,0.118,,,0.099,0.14,3.191430201,,,2.502226795,3.953165934,4.766963246,,,3.883755226,5.696078809,0.05823402,1505,25844,0.055378822,0.061089217,0,,,,0.079559364,0.068845948,0.090272779,0.112600536,0.08052075,0.144680322,0.064197531,0.057306421,0.071088641,0.050594516,0.047248698,0.053940334,,,,0.067713445,0.052286457,0.083140433,0.102,,,0.077,0.128,0.263,,,0.208,0.325,8.9,0.05106532,0.069,,,0.154,,,0.122,0.191,0.946236958,382979,404739,,,0.185753742,,,0.151876383,0.223794175,0.302013423,45,149,0.260427311,0.344200826,207.1,854,412300,,,5.3381631,448,83924,4.843842279,5.832483921,,,,,,,,,,10.55209001,9.014801893,12.08937813,3.955301256,3.415166618,4.495435893,,,,5.758807588,3.988141664,8.047356385,0.038649083,12880,333255,0.033883125,0.04341504,0.001219985,503,412300,,,819.6819086,0.001053206,440,417772,,,949.4818182,0.003772393,1576,417772,,,265.0837564,1529,,,,,3001,1404,1881,1466,1521,0.46,,,,,0.4,0.37,0.47,0.32,0.47,0.46,,,,,0.25,0.5,0.38,0.37,0.47,0.949476326,272419,286915,0.944880138,0.954072513,0.80106644,79022,98646,0.776339357,0.825793522,0.030605243,5932,193823,,,0.055,4904,,0.038319149,0.071680851,0.0625,0,0.266769985,0.02422693,0.008823685,0.039630174,0.053685897,0,0.112077614,0.112772926,0.084825242,0.140720609,0.062340061,0.048054446,0.076625676,4.622859674,208699,45145,4.318455801,4.927263548,0.149468909,13312,89062,0.133201929,0.165735889,7.349017706,303,412300,,,55.4470032,1105,1992894,52.17771648,58.71628993,,,,21.24933596,14.71578287,29.69381713,32.32346978,16.13575965,57.8356161,38.66522132,31.50432212,45.82612053,64.4334888,60.25848215,68.60849544,,,,7.2,,,,,1,,,,,0.159592355,23255,145715,0.149883749,0.169300961,0.13994017,0.130784561,0.149095778,0.019284219,0.016291076,0.022277363,0.008166627,0.006255053,0.010078201,0.716822804,134286,187335,0.70325506,0.730390548,0.74,0.596465887,0.883534113,0.666490486,0.637192276,0.695788696,0.725328947,0.669082985,0.78157491,0.737423348,0.705423605,0.769423091,0.722946858,0.707362616,0.738531101,0.39,,187335,0.373793993,0.406206007,81.7700603,,,81.50008892,82.04003169,79.0275062,74.49371441,83.56129798,87.92083779,86.5625983,89.27907727,79.88289974,77.32789568,82.4379038,84.67021224,83.52463317,85.81579131,81.18405702,80.86989977,81.49821427,,,,242.4747495,3764,1108234,234.3176104,250.6318887,377.97217,246.9039703,553.8168035,131.6255875,110.6767678,152.5744071,236.9255522,176.4066356,311.5133459,204.6441794,182.2302211,227.0581377,257.8095112,247.9042083,267.7148141,,,,27.25601368,106,388905,22.06723105,32.44479631,,,,,,,,,,26.24212736,16.24429044,40.11387926,28.15634758,21.82078263,35.75756613,,,,3.019861396,78,25829,2.387075117,3.768923692,,,,,,,,,,,,,2.570540411,1.860312842,3.462501065,,,,,,,0.092,,,0.078,0.107,0.149,,,0.128,0.172,0.076,,,0.064,0.089,115.4,404,350157,,,0.069,27790,,,,0.05106532,17792.79155,348432,,,17.13938689,208,1213579,14.81011768,19.4686561,,,,,,,,,,11.14820988,6.809616215,17.21750598,20.09465517,17.09153711,23.09777323,,,,0.313,,,0.298,0.327,0.045956925,11098,241487,0.038807989,0.053105861,0.021193467,2045,96492,0.01523602,0.027150914,0.000763574,319,417772,,,1309.630094,0.899459146,4656.5,5177,,,0.060535908,1229,20302,0.043556902,0.077514914,3.231680466,,,,,,3.664318195,2.662058455,2.840447193,3.29836036,3.061742309,,,,,,3.580830998,2.562767073,2.634186481,3.127301611,0.06817266,,,,,1925.778664,,,,,0.781015008,73638,94285,0.747490902,0.814539113,106114,,,100060.0426,112167.9575,88825,45652.57447,131997.4255,139016,124649.0213,153382.9787,122929,91238.95745,154619.0426,87450,81297.14894,93602.85106,110648,107383.3192,113912.6809,,,,,,0.238386254,16149,67743,,,52.43923345,,,,,0.25773225,,106114,,,10.25024062,213,20780,,,1.818964965,50,2748816,1.350070857,2.398078542,,,,,,,,,,2.53868963,1.217400356,4.668740618,1.822316083,1.276327781,2.52285359,,,,12.2972588,276,1992894,10.78312804,13.81138956,13.84920623,,,,6.446311638,3.091256996,11.85499662,,,,8.567787192,5.369386619,12.97173277,13.71887208,11.80413583,15.63360833,,,,7.376207666,147,1992894,6.183784131,8.568631201,,,,,,,,,,4.833152666,2.642329537,8.109208924,8.661550953,7.130818886,10.19228302,,,,8.003445847,220,2748816,6.945845118,9.061046577,,,,,,,,,,7.61606889,5.138529698,10.87241191,8.858480958,7.545990052,10.17097186,,,,,,,,,,,0.808195961,235084,290875,,,0.669,,,,,156.1882757,,,,,0.738161889,112597,152537,0.728912407,0.747411371,0.153633325,22933,149271,0.143287902,0.163978747,0.927132433,141422,152537,0.921138297,0.93312657,417772,,,,,0.215856975,90179,417772,,,0.206560038,86295,417772,,,0.019170744,8009,417772,,,0.010608657,4432,417772,,,0.097481401,40725,417772,,,0.00312132,1304,417772,,,0.154931398,64726,417772,,,0.683619295,285597,417772,,,0.017479873,6748,386044,0.015222841,0.019736905,0.507736277,212118,417772,,,0.145812487,59016,404739,, -06,063,06063,CA,Plumas County,2024,1,9578.759472,357,51224,7708.401179,11449.11777,0,,,,2,,,,2,,,,2,,,,2,10831.43558,8519.481862,13143.3893,,,,,2,,0.147,,,0.125,0.173,3.662516654,,,2.875234708,4.537077118,5.668006993,,,4.62319956,6.847710048,0.087301587,99,1134,0.070872091,0.103731084,0,,,,,,,,,,0.061797753,0.02642404,0.097171466,0.087216249,0.068101174,0.106331323,,,,,,,0.139,,,0.109,0.174,0.295,,,0.222,0.376,8.2,0.010710775,0.121,,,0.179,,,0.141,0.223,0.912481051,18058,19790,,,0.163907228,,,0.129789744,0.202137851,0.461538462,12,26,0.365081961,0.550230255,190.8,38,19915,,,14.42458451,46,3189,10.56060878,19.24037432,,,,,,,,,,26.97095436,14.36089728,46.12115336,10.0797984,6.458317033,14.99794103,,,,,,,0.060130719,828,13770,0.050598804,0.069662634,0.000753201,15,19915,,,1327.666667,0.000826831,16,19351,,,1209.4375,0.002790554,54,19351,,,358.3518519,1952,,,,,,,,,1986,0.33,,,,,,,,0.17,0.33,0.27,,,,,0.14,0.43,0.21,0.25,0.27,0.940995012,14337,15236,0.92190628,0.960083743,0.732914573,2917,3980,0.618599166,0.84722998,0.064889607,482,7428,,,0.18,575,,0.114468085,0.245531915,,,,,,,,,,0.158536585,0.046825748,0.270247423,0.116298458,0.057675961,0.174920954,4.217656059,137833,32680,3.439344012,4.995968106,0.338610378,1155,3411,0.205509446,0.471711311,11.04694954,22,19915,,,115.5037539,110,95235,93.91856626,137.0889415,,,,,,,,,,,,,129.1171928,104.0595589,154.1748268,,,,12.2,,,,,1,,,,,0.150060024,1250,8330,0.11327622,0.186843828,0.131995134,0.098852424,0.165137844,0.023409364,0.008499523,0.038319204,0.004801921,0,0.010044179,0.768428184,5671,7380,0.727299361,0.809557008,,,,,,,,,,,,,0.77541806,0.719124386,0.831711735,0.26,,7380,0.187632346,0.332367654,77.46738179,,,75.96079901,78.97396457,,,,,,,,,,87.33893643,78.71848726,95.9593856,76.27346857,74.54213065,78.0048065,,,,410.2826801,357,51224,358.9337886,461.6315717,,,,,,,,,,,,,449.9917694,389.4288418,510.554697,,,,74.73333786,11,14719,37.306613,133.7185849,,,,,,,,,,,,,95.45628102,45.7749971,175.5474995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.111,,,0.095,0.129,0.173,,,0.149,0.2,0.087,,,0.073,0.102,131.3,23,17511,,,0.121,2370,,,,0.010710775,214.2904793,20007,,,31.2017889,18,57689,18.49215757,49.31227837,,,,,,,,,,,,,35.68429891,20.78741912,57.13401935,,,,0.328,,,0.313,0.343,0.069279149,716,10335,0.056172766,0.082385532,0.034128746,123,3604,0.023405342,0.04485215,0.000516769,10,19351,,,1935.1,0.825,96.525,117,,,,,,,,2.731330603,,,,,,,,2.359094524,2.801216297,2.611946045,,,,,,,,2.333052798,2.707972942,0.05781483,,,,,2191.089,,,,,0.664195303,50795,76476,0.576197826,0.75219278,66725,,,58198.70213,75251.29787,,,,,,,,,,64977,52404.40426,77549.59575,68619,58927.42553,78310.57447,,,,,,0.528274529,1093,2069,,,74.36130351,,,,,0.285320345,,66725,,,11.68224299,10,856,,,,,,,,,,,,,,,,,,,,,,,,,,18.47892198,19,95235,10.34251236,30.47817162,19.9506484,,,,,,,,,,,,,20.7345287,11.33575979,34.78901595,,,,12.60040951,12,95235,6.510815466,22.01037964,,,,,,,,,,,,,15.19025798,7.849027961,26.53432372,,,,22.68070855,30,132271,15.30257881,32.37812173,,,,,,,,,,,,,23.6473274,15.44721936,34.64881362,,,,,,,,,,,0.728802589,11260,15450,,,0.4,,,,,0.032134359,,,,,0.743213228,6023,8104,0.712842774,0.773583682,0.129440327,1013,7826,0.096158987,0.162721668,0.843534057,6836,8104,0.806815604,0.88025251,19351,,,,,0.168983515,3270,19351,,,0.319776756,6188,19351,,,0.009198491,178,19351,,,0.032246396,624,19351,,,0.011472275,222,19351,,,0.001912046,37,19351,,,0.104594078,2024,19351,,,0.819337502,15855,19351,,,0.005966333,112,18772,0,0.013405206,0.497958762,9636,19351,,,1,19790,19790,, -06,065,06065,CA,Riverside County,2024,1,7346.296214,29912,6946648,7227.008205,7465.584223,0,12545.52437,10336.24742,14754.80132,,3710.065435,3395.939504,4024.191366,,11368.72651,10740.32492,11997.1281,,6750.844331,6594.296192,6907.392471,,8068.6551,7830.246983,8307.063217,,10513.44969,8058.11013,12968.78925,,,0.182,,,0.156,0.209,3.810927108,,,3.101870163,4.581144729,4.846766217,,,4.068613184,5.651036031,0.070503374,14065,199494,0.069380011,0.071626736,0,0.072222222,0.053314151,0.091130294,0.083307621,0.078550538,0.088064704,0.123499472,0.117180058,0.129818885,0.065625053,0.064208056,0.067042051,0.060290287,0.058107465,0.062473109,0.057416268,0.039206695,0.075625841,0.083946078,0.076178313,0.091713844,0.124,,,0.101,0.15,0.362,,,0.313,0.415,8.3,0.069654697,0.085,,,0.222,,,0.187,0.26,0.895576228,2165669,2418185,,,0.171566894,,,0.142938578,0.204558758,0.297352342,438,1473,0.284498471,0.310287323,487.8,11991,2458395,,,13.52408574,8263,610984,13.23248064,13.81569083,18.38235294,13.64373667,24.23484069,1.236842105,0.908785057,1.644737798,12.63788038,11.47790736,13.79785341,16.95107328,16.53680636,17.3653402,6.513546509,6.077957404,6.949135613,13.4529148,8.327566294,20.56420931,10.33009344,8.965042115,11.69514477,0.092027506,190143,2066154,0.086070059,0.097984953,0.00046209,1136,2458395,,,2164.080106,0.000576822,1427,2473902,,,1733.638402,0.002696954,6672,2473902,,,370.7886691,2175,,,,,1916,1394,3532,2509,1970,0.34,,,,,0.15,0.31,0.3,0.23,0.39,0.38,,,,,0.23,0.36,0.25,0.24,0.42,0.83122271,1324969,1594000,,,0.576792839,378488,656194,,,0.041679686,48019,1152096,,,0.133,77331,,0.11512766,0.15087234,0.228828476,0.164066593,0.29359036,0.10865968,0.087077024,0.130242336,0.189667197,0.162784654,0.216549739,0.173736377,0.164981551,0.182491203,0.085805459,0.076343366,0.095267551,4.510797857,159998,35470,4.403862651,4.617733064,0.217651692,129888,596770,0.208281619,0.227021764,4.230402356,1040,2458395,,,65.52147537,8054,12292153,64.09049417,66.95245656,116.7983511,90.69848979,148.0697409,26.71410369,23.15969951,30.26850788,86.04231504,79.46792885,92.61670122,46.68692307,44.98150645,48.39233969,96.6573333,93.67046644,99.64420016,67.47092003,43.66362197,99.60038782,12.7,,,,,1,,,,,0.244766877,180250,736415,0.239839945,0.249693809,0.18309898,0.17839942,0.187798541,0.070653096,0.067720072,0.073586121,0.008609276,0.007570595,0.009647957,0.759391504,796162,1048421,0.753909773,0.764873235,0.731740005,0.688165059,0.77531495,0.665462579,0.643924952,0.687000207,0.72430576,0.6930713,0.75554022,0.77707373,0.768992696,0.785154764,0.729490258,0.720291513,0.738689004,0.483,,1048421,0.474574898,0.491425102,78.53049595,,,78.4116089,78.64938301,76.08129713,73.85534523,78.30724904,85.00175831,84.4417516,85.56176501,74.388417,73.87741048,74.89942352,79.50529423,79.28385172,79.72673675,77.72137449,77.52504427,77.91770472,73.68352692,71.53396586,75.83308798,370.5878834,29912,6946648,366.3108724,374.8648944,573.5676532,495.0942837,652.0410227,198.3842183,187.0078119,209.7606247,525.2596441,505.1803304,545.3389578,344.837023,338.1328856,351.5411605,402.0613626,394.7332472,409.389478,562.7232389,465.9920884,659.4543894,39.28592954,1069,2721076,36.9308572,41.64100188,,,,18.99863617,12.62445576,27.45831899,75.61837925,61.73705143,89.49970706,37.94022294,35.00991666,40.87052922,35.99463781,31.17197395,40.81730167,,,,4.288639804,867,202162,4.00316611,4.574113498,,,,1.730103806,1.096737403,2.596005182,8.497781135,6.833219538,10.44521573,4.439530532,4.058677106,4.820383959,3.885575065,3.325655671,4.445494459,,,,7.745779543,5.508006453,10.58873562,0.113,,,0.098,0.13,0.154,,,0.133,0.175,0.111,,,0.096,0.129,496.1,10117,2039400,,,0.085,205890,,,,0.069654697,152518.7795,2189641,,,26.75876896,1985,7418129,25.58159148,27.93594644,48.65483686,28.34323546,77.90110709,5.417161568,3.569943608,7.881685669,38.91937454,33.24938006,44.58936902,17.06008045,15.74039742,18.37976348,42.44777844,39.87040601,45.02515086,,,,0.355,,,0.343,0.366,0.116014054,170646,1470908,0.108865118,0.12316299,0.03508758,22031,627886,0.027938643,0.042236516,0.000666154,1648,2473902,,,1501.154126,0.90360252,28896.305,31979,,,0.0827231,11805,142705,0.074569841,0.090876359,2.854718527,,,,,,3.566832249,2.58040341,2.704267942,3.24310678,2.660877171,,,,,,3.429981967,2.323669883,2.5088384,3.047313931,0.129700983,,,,,-2768.401536,,,,,0.811806503,48214,59391,0.793920347,0.829692658,86350,,,84431.70213,88268.29787,86250,75686.25532,96813.74468,106946,102384.9787,111507.0213,80223,76061.12766,84384.87234,76613,75421.51064,77804.48936,91943,90114.06383,93771.93617,,,,,,0.675647211,284838,421578,,,42.42254316,,,,,0.270781702,,86350,,,3.795936819,571,150424,,,4.553744751,776,17040920,4.233343728,4.874145774,,,,1.169586434,0.622755518,2.000028423,15.18765775,12.8343058,17.5410097,4.873761878,4.403140371,5.344383385,2.884974864,2.45129062,3.318659108,,,,11.54068028,1453,12292153,10.93963863,12.14172194,11.82054926,,,,8.513930394,6.637026424,10.75683886,7.781017019,5.908452445,10.05876885,6.670614939,6.007920775,7.333309104,17.79106418,16.48001101,19.10211736,,,,8.631522891,1061,12292153,8.112142193,9.15090359,20.61147372,10.65024924,36.00409661,3.200768184,2.090848046,4.689866994,15.03779062,12.28931946,17.78626179,6.437898041,5.804604713,7.071191369,11.70075101,10.6615362,12.73996582,,,,12.72231781,2168,17040920,12.18677687,13.25785874,27.10260801,16.98506015,41.03367424,4.768313924,3.571794337,6.237072015,18.41503502,15.82367499,21.00639505,12.0661095,11.3256126,12.80660641,13.98364287,13.02884204,14.93844371,21.73182923,10.84845085,38.88424544,,,,,,,,0.627122418,997156,1590050,,,0.654,,,,,232.3512847,,,,,0.68511659,513821,749976,0.680469953,0.689763227,0.186738145,136618,731602,0.18186164,0.191614649,0.917318688,687967,749976,0.913241943,0.921395432,2473902,,,,,0.239925834,593553,2473902,,,0.15318028,378953,2473902,,,0.062949139,155730,2473902,,,0.019957541,49373,2473902,,,0.078022492,193020,2473902,,,0.004828405,11945,2473902,,,0.520314871,1287208,2473902,,,0.313116688,774620,2473902,,,0.074549818,170207,2283131,,,0.49718178,1229979,2473902,,,0.054734853,132359,2418185,, -06,067,06067,CA,Sacramento County,2024,1,7324.567722,18985,4426224,7174.148277,7474.987166,0,10645.58667,8088.873804,13202.29954,,4327.207604,4054.600685,4599.814523,,13792.59736,13115.3372,14469.85752,,6284.647485,6002.725262,6566.569709,,7349.989464,7113.789481,7586.189446,,10956.15883,9234.764601,12677.55305,,,0.163,,,0.142,0.187,3.596091987,,,2.919089865,4.330896783,5.28604917,,,4.493937333,6.138286068,0.071046891,9347,131561,0.069658659,0.072435122,0,0.069047619,0.044799977,0.093295261,0.081637999,0.078092033,0.085183965,0.119111816,0.113458069,0.124765563,0.066572434,0.064000237,0.069144632,0.05345645,0.05145037,0.055462531,0.096198157,0.082327367,0.110068947,0.081665216,0.075200648,0.088129784,0.127,,,0.103,0.153,0.317,,,0.272,0.37,8.3,0.042269675,0.101,,,0.198,,,0.167,0.235,0.9865828,1563788,1585055,,,0.16567731,,,0.137338782,0.197106298,0.251190476,211,840,0.233997371,0.268666984,481.1,7645,1588921,,,12.52866033,4131,329724,12.14659898,12.91072169,12.31884058,7.176178601,19.72365711,4.530281354,3.942231939,5.11833077,19.96719272,18.4943013,21.44008413,17.88614885,17.08981344,18.68248426,6.979241231,6.476719119,7.481763344,15.46961326,11.68557961,20.08857956,15.05262299,13.51675082,16.58849517,0.059990793,80928,1349007,0.055224836,0.064756751,0.000890541,1415,1588921,,,1122.912368,0.000823145,1304,1584169,,,1214.853528,0.004386527,6949,1584169,,,227.9707872,2527,,,,,3974,2024,3570,2538,2463,0.36,,,,,0.25,0.31,0.31,0.28,0.39,0.42,,,,,0.32,0.44,0.31,0.37,0.43,0.883760462,951947,1077155,,,0.679456165,314294,462567,,,0.039181118,28536,728310,,,0.154,54525,,0.131361702,0.176638298,0.168440367,0.09200214,0.244878594,0.198712121,0.179517236,0.217907006,0.270128768,0.235266051,0.304991484,0.205023917,0.188242983,0.221804851,0.096255714,0.085366837,0.107144592,4.553339557,160956,35349,4.442986615,4.663692499,0.249103633,90805,364527,0.236475006,0.26173226,7.036221436,1118,1588921,,,68.72357002,5341,7771715,66.88046325,70.56667679,89.70678696,62.48406398,124.7604249,33.39625837,30.22487252,36.56764421,113.7301781,106.1333865,121.3269698,48.91404847,45.72187553,52.10622142,85.38417858,82.27113963,88.49721753,47.04301075,33.90446431,63.5884843,8.4,,,,,0,,,,,0.211973992,116060,547520,0.206390059,0.217557924,0.166326352,0.161110349,0.171542354,0.052509497,0.049704996,0.055313998,0.009177747,0.007974774,0.01038072,0.698715709,508032,727094,0.693689137,0.703742282,0.714309652,0.669757574,0.758861729,0.6739428,0.663992323,0.683893278,0.673357568,0.64937698,0.697338156,0.701020746,0.686630736,0.715410756,0.712073206,0.704847032,0.71929938,0.393,,727094,0.383847997,0.402152003,78.42732168,,,78.28116968,78.57347368,76.2727878,73.79389857,78.75167704,83.44446996,83.04598009,83.84295983,72.61386133,72.08462114,73.14310153,80.44446435,80.03521723,80.85371147,77.89138819,77.68808894,78.09468745,78.79459197,76.24496487,81.34421907,361.7675239,18985,4426224,356.5149494,367.0200984,478.0146345,394.7736946,561.2555744,228.9462711,218.7496445,239.1428978,623.9904546,601.296115,646.6847941,308.0920151,296.2918895,319.8921408,371.5368155,363.898246,379.175385,476.1728969,419.6137105,532.7320834,46.76762555,748,1599397,43.41603781,50.11921329,,,,27.30926314,21.16430383,34.68179884,91.84132353,76.89239023,106.7902568,42.07678726,36.5039471,47.64962741,42.03504623,36.40307128,47.66702117,75.74433374,40.33066766,129.5251175,4.908899262,652,132820,4.532094491,5.285704033,,,,3.167990279,2.483198669,3.983272151,9.595880793,7.900027184,11.2917344,5.718390011,4.939377072,6.497402949,3.795918367,3.2503911,4.341445635,,,,7.431756467,5.550391196,9.74575986,0.108,,,0.094,0.124,0.161,,,0.141,0.183,0.106,,,0.092,0.122,349.8,4644,1327613,,,0.101,159180,,,,0.042269675,59971.70689,1418788,,,23.57384112,1108,4700125,22.18575458,24.96192766,,,,4.343199635,3.007792005,6.06918616,47.72277011,41.38767019,54.05787003,16.2408113,13.88772287,18.59389972,31.26983789,28.82996601,33.70970977,,,,0.337,,,0.328,0.347,0.073416879,72129,982458,0.067459432,0.079374326,0.025808113,9925,384569,0.019850666,0.031765559,0.000861651,1365,1584169,,,1160.56337,0.869685417,13435.77,15449,,,0.069452173,5492,79076,0.060060158,0.078844188,2.816695552,,,,,,3.101358454,2.282247744,2.558051722,3.085085538,2.653576835,,,,,,2.998154679,2.105691711,2.409019653,2.896402905,0.127554091,,,,,-3204.976618,,,,,0.878442328,57545,65508,0.859166217,0.897718438,83985,,,81949.93617,86020.06383,73017,57553.85106,88480.14894,93760,90732.42553,96787.57447,61476,58068.34043,64883.65957,73735,71682.06383,75787.93617,90847,89489.89362,92204.10638,,,,,,0.545251043,132749,243464,,,46.54483469,,,,,0.297755552,,83985,,,7.001580675,691,98692,,,6.405556055,691,10787510,5.927945536,6.883166575,,,,3.62114542,2.782587567,4.633018023,23.94217395,20.98607217,26.89827573,6.000462667,5.046527158,6.954398177,3.881537979,3.322200337,4.44087562,,,,12.27302157,986,7771715,11.49350356,13.05253959,12.6870324,,,,6.574373859,5.258650477,8.119298233,7.766056851,5.897092563,10.03942937,7.939583737,6.601924937,9.277242536,16.76224739,15.38901951,18.13547528,,,,9.920590243,771,7771715,9.220318835,10.62086165,,,,4.233328525,3.180206678,5.523575437,24.04052546,20.54780094,27.53324998,7.591980916,6.334367501,8.849594331,10.22246567,9.145321879,11.29960946,,,,11.93046403,1287,10787510,11.27864935,12.5822787,,,,5.747849873,4.621271298,6.874428448,21.47194965,18.67249568,24.27140363,10.50080967,9.238871605,11.76274773,13.05036012,12.02474746,14.07597279,11.42558679,6.246474616,19.17019319,,,,,,,,0.680924467,718440,1055095,,,0.728,,,,,371.7900521,,,,,0.582886411,328664,563856,0.576260338,0.589512484,0.174898259,96310,550663,0.169490358,0.18030616,0.92613717,522208,563856,0.922968516,0.929305823,1584169,,,,,0.226714448,359154,1584169,,,0.153853535,243730,1584169,,,0.096627948,153075,1584169,,,0.015987562,25327,1584169,,,0.182599836,289269,1584169,,,0.013370417,21181,1584169,,,0.244781333,387775,1584169,,,0.414499337,656637,1584169,,,0.062511967,92721,1483252,,,0.506545703,802454,1584169,,,0.023992227,38029,1585055,, -06,069,06069,CA,San Benito County,2024,1,6337.5516,623,183457,5639.208547,7035.894652,0,,,,2,,,,2,,,,2,6708.350212,5777.085208,7639.615216,,6579.045903,5158.154927,7999.93688,,,,,2,,0.175,,,0.147,0.205,3.597220279,,,2.791933924,4.437141626,5.04070526,,,3.990743937,6.153969254,0.069294456,385,5556,0.062616704,0.075972209,0,,,,0.125786164,0.07424161,0.177330717,,,,0.068463445,0.05975143,0.07717546,0.063729347,0.050300036,0.077158658,,,,,,,0.11,,,0.087,0.136,0.31,,,0.237,0.389,9.1,0.026969637,0.071,,,0.213,,,0.171,0.259,0.836409226,53705,64209,,,0.192587774,,,0.152532198,0.236680351,0.283018868,15,53,0.211467291,0.356871404,219,146,66677,,,12.37527537,191,15434,10.62020611,14.13034462,,,,,,,,,,11.89331001,9.89441789,13.89220214,4.789272031,2.6805192,7.899175885,,,,,,,0.0773563,4464,57707,0.066632896,0.088079704,0.000269958,18,66677,,,3704.277778,0.000517912,35,67579,,,1930.828571,0.001228192,83,67579,,,814.2048193,1911,,,,,,1955,,2091,1795,0.4,,,,,,0.3,0.58,0.38,0.42,0.45,,,,,,0.54,0.3,0.41,0.48,0.836903073,35401,42300,0.818031131,0.855775016,0.580713608,10400,17909,0.532055108,0.629372108,0.05,1624,32480,,,0.083,1385,,0.049638298,0.116361702,,,,0.143576826,0,0.452002681,,,,0.129168099,0.089393884,0.168942314,0.06127377,0.023419426,0.099128114,3.768548949,189200,50205,3.326897145,4.210200754,0.191714251,3156,16462,0.153052431,0.230376071,3.599442087,24,66677,,,63.73122545,201,315387,54.92052752,72.54192338,,,,,,,,,,50.99837117,41.40294285,62.15067952,92.47992212,74.82177957,113.0519091,,,,4.9,,,,,1,,,,,0.222675367,4095,18390,0.191490004,0.253860731,0.146954384,0.122692141,0.171216627,0.076943991,0.056505172,0.097382811,0.004893964,0,0.009964275,0.7534028,23137,30710,0.728364276,0.778441325,,,,0.573216521,0.425675464,0.720757577,,,,0.74583481,0.699080577,0.792589043,0.683499518,0.627826446,0.739172589,0.509,,30710,0.466941945,0.551058056,80.42276207,,,79.64753703,81.19798712,,,,92.67210187,79.49734425,105.8468595,,,,80.49862168,79.23974208,81.75750128,79.86046916,78.62919532,81.091743,,,,301.3584543,623,183457,277.3357139,325.3811947,,,,,,,,,,316.797752,281.9264053,351.6690988,303.5297856,263.0881534,343.9714178,,,,37.54223501,27,71919,24.74056944,54.6219809,,,,,,,,,,32.60640236,18.99443096,52.20600882,,,,,,,3.713330858,20,5386,2.268198958,5.734938341,,,,,,,,,,,,,,,,,,,,,,0.11,,,0.094,0.127,0.151,,,0.129,0.174,0.104,,,0.089,0.122,109.6,60,54764,,,0.071,4520,,,,0.026969637,1490.584864,55269,,,17.56742792,34,193540,12.16595452,24.54871969,,,,,,,,,,19.36255114,12.27419649,29.05333364,16.29938714,7.816189686,29.97515328,,,,0.325,,,0.311,0.339,0.09215201,3761,40813,0.077854138,0.106449883,0.043747189,778,17784,0.030640806,0.056853572,0.000384735,26,67579,,,2599.192308,0.870045147,770.86,886,,,,,,,,2.945999103,,,,,,,,2.847322902,3.378207503,2.69517086,,,,,,,,2.594990724,3.057382653,0.066700007,,,,,-4947.0244,,,,,0.692204661,49096,70927,0.615529639,0.768879684,106560,,,97771.57447,115348.4255,,,,176823,146823.6809,206822.3192,63351,18194.74468,108507.2553,93169,83827.7234,102510.2766,118575,106954.4043,130195.5957,,,,,,0.530279368,6112,11526,,,53.05796929,,,,,0.222250375,,106560,,,4.352030948,18,4136,,,3.459465443,15,433593,1.936236547,5.70586215,,,,,,,,,,,,,,,,,,,9.655652901,30,315387,6.466542287,13.86712821,9.512123201,,,,,,,,,,5.566743022,2.77889806,9.960440959,14.18153404,7.93729695,23.39028375,,,,8.560910881,27,315387,5.641694214,12.45567587,,,,,,,,,,,,,16.5490387,9.640424891,26.49661408,,,,18.45048237,80,433593,14.63008503,22.96322242,,,,,,,,,,15.27615469,10.91350887,20.80178691,24.91763338,17.45200408,34.49650772,,,,,,,,,,,0.7265625,28830,39680,,,0.663,,,,,120.1605535,,,,,0.659228289,13087,19852,0.631219979,0.6872366,0.152963573,2973,19436,0.130630205,0.175296941,0.930737457,18477,19852,0.915564348,0.945910566,67579,,,,,0.250018497,16896,67579,,,0.134953166,9120,67579,,,0.012030365,813,67579,,,0.031577857,2134,67579,,,0.054336406,3672,67579,,,0.005889404,398,67579,,,0.624483937,42202,67579,,,0.293641516,19844,67579,,,0.090644046,5503,60710,0.07791288,0.103375211,0.493703665,33364,67579,,,0.227351306,14598,64209,, -06,071,06071,CA,San Bernardino County,2024,1,8917.350238,30274,6263067,8779.856153,9054.844323,0,12986.39746,10324.38874,15648.40617,,3955.202573,3623.491348,4286.913797,,14796.97919,14155.75952,15438.19887,,8135.446687,7958.547092,8312.346282,,9969.384285,9671.001218,10267.76735,,18354.69244,14897.91611,21811.46877,,,0.209,,,0.18,0.239,4.104825998,,,3.393573262,4.909091968,5.223002283,,,4.457128522,6.092432758,0.078009381,15434,197848,0.076827627,0.079191135,0,0.114785992,0.087228284,0.1423437,0.075827423,0.071838593,0.079816254,0.132004823,0.126719484,0.137290162,0.071855974,0.070361062,0.073350886,0.068243347,0.065745594,0.070741099,0.057184751,0.039757965,0.074611537,0.096003475,0.087493755,0.104513195,0.125,,,0.102,0.151,0.381,,,0.335,0.435,7.9,0.085285614,0.097,,,0.262,,,0.223,0.306,0.859424088,1874966,2181654,,,0.16664947,,,0.139832947,0.199595838,0.22337963,386,1728,0.211504334,0.235445336,579.5,12719,2194710,,,17.27904258,9223,533768,16.92639603,17.63168913,12.39925605,7.573787716,19.14964532,1.893387708,1.414072502,2.482926076,23.13344165,21.6654549,24.60142839,18.57027005,18.12129158,19.01924852,12.73686477,12.01104927,13.46268027,13.739546,8.709693571,20.61606505,18.93459564,16.73241502,21.13677626,0.095020203,179481,1888872,0.089062756,0.100977649,0.000588688,1292,2194710,,,1698.691951,0.000769948,1689,2193656,,,1298.789817,0.002964913,6504,2193656,,,337.2779828,2687,,,,,3389,1831,4372,2674,2538,0.27,,,,,0.2,0.26,0.26,0.23,0.29,0.28,,,,,0.16,0.37,0.2,0.23,0.31,0.813940962,1130354,1388742,,,0.573538192,356380,621371,,,0.040992888,41341,1008492,,,0.182,99605,,0.161744681,0.202255319,0.188669616,0.127148184,0.250191047,0.131407294,0.109815804,0.152998784,0.323267192,0.288691004,0.357843379,0.199561097,0.190909983,0.208212211,0.107534016,0.094209283,0.120858749,4.433628319,147294,33222,4.337552244,4.529704393,0.243962389,137566,563882,0.233814944,0.254109834,4.228349076,928,2194710,,,63.80252979,6950,10892985,62.30249419,65.3025654,82.01466615,56.79754049,114.6072754,27.89784182,24.25252383,31.54315982,94.129147,87.7329986,100.5252954,46.60172853,44.86531357,48.33814348,99.65069772,96.05037622,103.2510192,62.30714455,38.56910451,95.24308906,15.6,,,,,1,,,,,0.253073787,161990,640090,0.246943039,0.259204534,0.176596552,0.171278636,0.181914468,0.087940758,0.084157695,0.091723822,0.011443703,0.01024148,0.012645927,0.762789508,721830,946303,0.757363213,0.768215804,0.724459293,0.680810343,0.768108244,0.717601648,0.702727857,0.732475438,0.752674308,0.729317306,0.776031309,0.765920205,0.759781388,0.772059023,0.7744627,0.769858489,0.779066912,0.443,,946303,0.434574898,0.451425102,76.07008169,,,75.94521492,76.19494846,74.15232433,72.08669348,76.21795518,84.71851829,84.14767518,85.2893614,70.91535398,70.45591006,71.3747979,77.4535768,77.24596686,77.66118674,74.61466349,74.3917971,74.83752988,67.32341921,65.17193595,69.47490248,449.2893794,30274,6263067,444.1658109,454.4129479,622.7090874,528.080299,717.3378758,206.0851746,194.5264212,217.643928,687.3836623,665.2505937,709.5167308,406.4684124,399.0685628,413.868262,505.0833363,495.4198126,514.7468599,883.1522153,752.1651643,1014.139266,49.881566,1257,2519969,47.12398352,52.63914849,,,,33.14247031,24.35184058,44.07245955,90.61254078,77.18719886,104.0378827,46.63889635,43.32084236,49.95695034,49.98986989,43.48669926,56.49304053,,,,5.740448655,1161,202249,5.410242018,6.070655292,,,,2.690942402,1.977203262,3.578382935,11.35531136,9.723392178,12.98723053,5.975153678,5.530918702,6.419388653,4.493296292,3.847545933,5.139046651,,,,7.036247335,4.843428907,9.881507307,0.122,,,0.106,0.14,0.161,,,0.141,0.184,0.123,,,0.107,0.141,281.5,5051,1794414,,,0.097,210470,,,,0.085285614,173574.1344,2035210,,,20.24686859,1329,6563978,19.15831091,21.33542627,,,,4.591936559,2.910893878,6.890159459,29.76296997,25.12205305,34.40388689,13.86615918,12.65195034,15.08036802,35.43348505,32.62844088,38.23852921,,,,0.369,,,0.357,0.381,0.11906948,158476,1330954,0.110729054,0.127409905,0.039422241,23161,587511,0.032273304,0.046571177,0.000854738,1875,2193656,,,1169.949867,0.876062879,24702.345,28197,,,0.087634895,11239,128248,0.078615018,0.096654772,2.769315074,,,,,,3.671157456,2.392623951,2.681836757,3.083639041,2.558269655,,,,,,3.526557381,2.122423397,2.461994994,2.903183151,0.15555153,,,,,-2353.081741,,,,,0.838006341,47313,56459,0.819875703,0.856136979,78779,,,76981.04255,80576.95745,72539,66835.34043,78242.65957,96709,92126.53192,101291.4681,59470,55322.42553,63617.57447,75340,74164,76516,83624,81911.82979,85336.17021,,,,,,0.675963716,267151,395215,,,43.14534729,,,,,0.279655746,,78779,,,4.223363029,631,149407,,,7.024503447,1065,15161214,6.602615714,7.446391179,,,,2.462101869,1.622540646,3.582228954,25.09174676,22.29852047,27.88497304,6.223956289,5.683247145,6.764665433,4.456260382,3.819248247,5.093272517,,,,10.86891062,1174,10892985,10.23704329,11.50077796,10.77757841,,,,5.621010473,4.067953151,7.571464219,7.431278669,5.684339352,9.545788336,6.391224465,5.7236704,7.05877853,20.05879656,18.4316071,21.68598603,,,,11.09888612,1209,10892985,10.47324928,11.72452296,,,,3.223750611,2.105860929,4.723541573,25.22932666,21.91794454,28.54070878,7.730463821,7.023242605,8.437685037,16.01589535,14.57252851,17.45926219,,,,15.18348069,2302,15161214,14.56321929,15.80374209,,,,6.7479829,5.298617962,8.47147459,22.74445432,20.08508635,25.40382229,13.47504878,12.67944723,14.27065033,18.41762935,17.12260095,19.71265774,,,,,,,,,,,0.607719957,841130,1384075,,,0.641,,,,,317.3201966,,,,,0.610831788,403105,659928,0.604463811,0.617199764,0.189858963,122366,644510,0.184363365,0.19535456,0.905830636,597783,659928,0.902423439,0.909237833,2193656,,,,,0.254252262,557742,2193656,,,0.124686368,273519,2193656,,,0.079603639,174623,2193656,,,0.021716258,47638,2193656,,,0.089019883,195279,2193656,,,0.005066428,11114,2193656,,,0.562349338,1233601,2193656,,,0.246891491,541595,2193656,,,0.075472801,153635,2035634,,,0.497805946,1092015,2193656,,,0.053814675,117405,2181654,, -06,073,06073,CA,San Diego County,2024,1,5434.681795,31043,9351822,5347.707216,5521.656375,0,11050.39732,9162.290438,12938.50421,,3039.356587,2852.903296,3225.809877,,9995.089233,9410.502554,10579.67591,,5507.848396,5359.834199,5655.862593,,5406.03702,5271.697577,5540.376463,,12988.9669,10975.37112,15002.56268,,,0.146,,,0.126,0.169,3.446682666,,,2.858256498,4.126143382,4.761360808,,,4.093099122,5.489663427,0.068068699,18695,274649,0.067126738,0.069010659,0,0.069489685,0.053066892,0.085912478,0.085965166,0.082662515,0.089267817,0.100799444,0.0952988,0.106300087,0.062917738,0.061475697,0.064359779,0.053786358,0.052305448,0.055267267,0.062730627,0.048295738,0.077165517,0.071619455,0.065777372,0.077461538,0.106,,,0.086,0.131,0.239,,,0.202,0.28,8.7,0.027630608,0.09,,,0.174,,,0.146,0.206,0.973020347,3209638,3298634,,,0.206003216,,,0.177370082,0.237688551,0.246108228,332,1349,0.232591805,0.25981372,552,18138,3286069,,,10.45616819,7249,693275,10.21546071,10.69687567,16.03281134,11.60302506,21.59609165,1.300438898,1.050502589,1.550375208,9.606083853,8.496637771,10.71552994,16.30560333,15.85729623,16.75391042,3.531476296,3.288422763,3.77452983,10.36070606,6.82777058,15.07428336,5.774678579,4.997329735,6.552027423,0.074010344,202025,2729686,0.069244387,0.078776302,0.000843865,2773,3286069,,,1185.02308,0.000986812,3233,3276208,,,1013.364677,0.004991747,16354,3276208,,,200.3306836,1965,,,,,3552,1388,3563,2363,1809,0.35,,,,,0.22,0.3,0.27,0.23,0.39,0.42,,,,,0.38,0.4,0.27,0.28,0.46,0.887121393,2002783,2257620,,,0.740633255,730651,986522,,,0.03444306,54749,1589551,,,0.126,84001,,0.109319149,0.142680851,0.136896483,0.072223093,0.201569874,0.078800739,0.067101933,0.090499545,0.258628505,0.224981765,0.292275244,0.164466252,0.155400325,0.17353218,0.087073191,0.078012955,0.096133428,4.646180556,187334,40320,4.552251972,4.740109139,0.21212535,147579,695716,0.204790613,0.219460087,6.421045937,2110,3286069,,,59.50880146,9901,16637875,58.33661218,60.68099073,119.29992,95.29253885,147.5161986,26.1543547,23.91280054,28.39590886,81.33590067,75.01951506,87.65228628,41.87950293,40.19871315,43.5602927,80.61007445,78.57086788,82.64928102,59.06010068,42.56532572,79.83209885,13.8,,,,,1,,,,,0.252254125,285225,1130705,0.248312144,0.256196105,0.195438573,0.191223902,0.199653244,0.068262721,0.065909133,0.07061631,0.009038609,0.008263843,0.009813375,0.694105933,1126502,1622954,0.689992144,0.698219721,0.698071867,0.658124993,0.738018741,0.673708105,0.662514869,0.684901342,0.667888844,0.648282031,0.687495657,0.719762188,0.711076722,0.728447654,0.690692804,0.685457037,0.695928572,0.376,,1622954,0.37053991,0.38146009,80.81436764,,,80.71637262,80.91236265,76.00997999,74.25260455,77.76735543,86.36631445,86.00315099,86.72947791,75.56151972,75.03585036,76.08718909,81.06740817,80.8474484,81.28736794,80.50510206,80.37353022,80.63667389,73.94627647,72.16451497,75.72803796,280.2963834,31043,9351822,277.1216489,283.4711179,497.1175759,431.7949217,562.4402302,168.3601259,161.4839269,175.236325,482.1575119,462.1891411,502.1258827,284.4840711,278.178041,290.7901012,281.1537366,276.651646,285.6558271,620.3165188,547.5701891,693.0628484,33.3224965,1067,3202041,31.32304261,35.32195038,,,,20.23264428,15.61512771,25.78816603,78.9563535,64.26771087,93.64499613,33.68315335,30.70375846,36.66254823,29.76247076,26.46521311,33.05972841,,,,3.621873555,1018,281070,3.399381008,3.844366101,,,,2.534194265,1.986403767,3.186368818,9.773094247,7.986856601,11.55933189,4.361247712,3.973500493,4.74899493,2.738843242,2.402677729,3.075008754,,,,10.26180766,8.111533115,12.80720038,0.102,,,0.089,0.118,0.151,,,0.132,0.173,0.098,,,0.085,0.112,485.3,13524,2786614,,,0.09,297010,,,,0.027630608,85525.38024,3095313,,,22.32639197,2223,9956826,21.39827035,23.25451358,73.24103388,49.7637291,103.9598013,4.316122794,3.223486946,5.660020812,38.1943259,32.59896112,43.78969069,16.12436698,14.78043843,17.46829553,29.85384067,28.24269843,31.46498291,25.90673575,12.93254915,46.35430644,0.35,,,0.338,0.361,0.088538356,180091,2034045,0.082580909,0.094495803,0.033466477,24415,729536,0.027509031,0.039423924,0.001045416,3425,3276208,,,956.5570803,0.866435213,27863.69,32159,,,0.0534257,9054,169469,0.047465364,0.059386037,3.086290833,,,,,,3.680444332,2.66899221,2.74213891,3.485050193,2.930545158,,,,,,3.684829431,2.47102375,2.569658199,3.317104036,0.189727385,,,,,-2870.64197,,,,,0.862562686,59340,68795,0.849378066,0.875747307,98365,,,96146.44681,100583.5532,74055,66721.38298,81388.61702,117968,115689.8723,120246.1277,65957,62191.89362,69722.10638,77438,75923.61702,78952.38298,107854,106334.8511,109373.1489,,,,,,0.487466344,230108,472049,,,51.11901764,,,,,0.295664108,,98365,,,6.255765537,1241,198377,,,2.893983245,673,23255145,2.675335728,3.112630763,12.95091603,6.895817343,22.14646083,1.302651547,0.912361129,1.803418827,12.75557852,10.64261395,14.86854308,3.261903958,2.863872509,3.659935408,1.904588678,1.640626154,2.168551202,,,,11.81535826,2066,16637875,11.29781332,12.3329032,12.41745115,13.20458963,6.332113983,24.28371046,5.707713348,4.685398563,6.730028133,9.078370204,7.115993049,11.41468756,7.03684131,6.31901941,7.754663211,16.43343413,15.53151537,17.33535289,,,,6.725618506,1119,16637875,6.331548612,7.1196884,,,,1.850308076,1.302787643,2.55040595,13.02395898,10.49641335,15.55150461,4.547920863,3.99403652,5.101805205,9.198384307,8.509537998,9.887230617,,,,8.256237491,1920,23255145,7.88693041,8.625544571,18.92826189,11.39605013,29.55882562,4.45072612,3.664161539,5.2372907,12.48224469,10.39204163,14.57244775,8.711053594,8.060598759,9.361508429,8.437327843,7.881751001,8.992904685,13.00546229,6.924860933,22.23973661,,,,,,,,0.697644029,1602143,2296505,,,0.717,,,,,440.1112104,,,,,0.542412395,623317,1149157,0.5377305,0.547094289,0.207457043,232789,1122107,0.203074288,0.211839798,0.936651824,1076360,1149157,0.934249796,0.939053852,3276208,,,,,0.207442873,679626,3276208,,,0.154761847,507032,3276208,,,0.046844706,153473,3276208,,,0.013522035,44301,3276208,,,0.131392146,430468,3276208,,,0.005951087,19497,3276208,,,0.350050729,1146839,3276208,,,0.433817084,1421275,3276208,,,0.060371443,187078,3098783,,,0.493165269,1615712,3276208,,,0.043946373,144963,3298634,, -06,075,06075,CA,San Francisco County,2024,1,5367.607178,7969,2376432,5192.478205,5542.73615,0,15650.75805,10128.34541,23103.60628,1,2621.91021,2414.270337,2829.550083,,19250.13334,17679.7223,20820.54438,,6712.828809,6204.612032,7221.045585,,4394.918256,4155.749067,4634.087445,,20553.71213,14934.3587,27592.39918,,,0.128,,,0.107,0.151,2.842870929,,,2.226134308,3.516173779,4.822193014,,,4.006896876,5.643731362,0.071024154,4102,57755,0.068929238,0.073119069,0,,,,0.080403161,0.076370011,0.084436311,0.143993303,0.129914759,0.158071846,0.067411475,0.062629636,0.072193314,0.056649582,0.053611468,0.059687696,0.039215686,0.015390909,0.063040463,0.069779643,0.058341595,0.081217691,0.089,,,0.068,0.113,0.187,,,0.148,0.228,8.7,0.003025444,0.101,,,0.174,,,0.141,0.211,1,873965,873965,,,0.173062524,,,0.143226647,0.205868051,0.073333333,11,150,0.043252413,0.111818858,791.2,6450,815201,,,5.92972116,662,111641,5.478009451,6.381432869,,,,0.749179777,0.501737455,1.07594713,13.28394431,10.73085241,15.83703621,17.09063576,15.47897951,18.702292,1.152553226,0.80723411,1.595619481,,,,3.1838684,2.03996456,4.737343804,0.044141699,29310,663998,0.039375742,0.048907657,0.001640086,1337,815201,,,609.724009,0.001752765,1417,808437,,,570.5271701,0.010922311,8830,808437,,,91.55571914,2223,,,,,1579,1654,6868,3075,1830,0.33,,,,,0.17,0.32,0.27,0.31,0.35,0.45,,,,,0.31,0.44,0.28,0.39,0.49,0.887884494,604066,680343,0.883675905,0.892093082,0.883044198,286524,324473,0.869012877,0.897075519,0.025498487,14600,572583,,,0.079,8572,,0.050404255,0.107595745,0.349315069,0.232330951,0.466299186,0.082110974,0.06672624,0.097495709,0.287855613,0.22561282,0.350098407,0.139968477,0.113936403,0.166000552,0.022470839,0.012989748,0.03195193,,,,,,0.211404959,24301,114950,0.194048869,0.228761049,9.433256338,769,815201,,,77.53362715,3358,4331024,74.91118554,80.15606876,263.1264203,164.8999267,398.3765625,30.92800181,28.15535861,33.70064501,265.0184779,243.4127796,286.6241762,73.37951069,66.86223036,79.89679103,72.96918402,68.93525806,77.00310997,119.94003,73.26248627,185.2376486,7.7,,,,,0,,,,,0.234467333,84910,362140,0.226834513,0.242100154,0.15537375,0.148620228,0.162127273,0.066507428,0.062459232,0.070555624,0.040191639,0.037111426,0.043271851,0.286938543,139890,487526,0.279703573,0.294173513,0.355974843,0.279331897,0.432617789,0.314405056,0.302748976,0.326061135,0.391299861,0.369542446,0.413057275,0.388471639,0.374207393,0.402735886,0.30129045,0.293126297,0.309454603,0.49,,487526,0.471388341,0.508611659,82.89468804,,,82.67572508,83.11365099,,,,87.5702185,87.22233366,87.91810333,68.75487694,67.75785561,69.75189828,82.62730738,81.90607351,83.34854125,82.81627908,82.50749133,83.12506683,70.54294912,65.32427461,75.76162364,268.5593301,7969,2376432,262.4997272,274.6189329,677.4946985,479.4355711,929.914406,140.9271767,133.8670237,147.9873297,864.6853703,816.0403084,913.3304323,294.9681188,277.2315499,312.7046876,244.2344664,235.1938671,253.2750657,835.7935028,662.7322676,1040.217362,31.46915165,165,524323,26.66740619,36.27089711,,,,17.77723288,11.90569186,25.53107181,106.4431361,72.80702628,150.2659484,43.14941911,32.32187589,56.44050259,19.12350598,12.90254918,27.29999388,,,,2.901905529,173,59616,2.469475057,3.334336001,,,,2.082990736,1.474048218,2.859067528,8.634868421,5.345119648,13.19931363,4.936661699,3.697898373,6.457275049,1.710132535,1.221743756,2.328715133,,,,,,,0.081,,,0.069,0.096,0.131,,,0.113,0.152,0.091,,,0.077,0.106,1589.6,11620,731004,,,0.101,87690,,,,0.003025444,2436.193206,805235,,,58.6340719,1503,2563356,55.6697413,61.59840249,264.2276423,140.6900913,451.8373154,8.031762364,6.306660962,10.08314215,229.636216,203.5195204,255.7529117,60.10590813,52.45348349,67.75833278,50.96733827,46.56111535,55.37356119,,,,0.294,,,0.283,0.306,0.048566783,26706,549882,0.042609337,0.05452423,0.024952274,2967,118907,0.018994827,0.03090972,0.001484346,1200,808437,,,673.6975,0.867020178,3609.405,4163,,,0.021498371,528,24560,0.013743215,0.029253527,3.014964547,,,,,,3.244483742,2.220147107,,3.609051637,2.97437134,,,,,,3.402223792,,,3.394035069,0.189740163,,,,,-1505.725,,,,,0.828135158,96809,116900,0.802884726,0.85338559,135366,,,131459.1064,139272.8936,55617,43358.95745,67875.04255,114960,110622.9787,119297.0213,50144,44096,56192,97137,91349.93617,102924.0638,176815,172626.9149,181003.0851,,,,,,0.505350117,28384,56167,,,61.37990283,,,,,0.328590636,,135366,,,11.1462885,426,38219,,,4.912039062,298,6066727,4.354327367,5.469750756,,,,1.396024123,0.941891614,1.992911241,40.78569564,33.63564795,47.93574334,8.186788032,6.450257817,10.24698602,1.890307122,1.383942392,2.521404799,,,,8.634401749,421,4331024,7.775076736,9.493726761,9.720564929,,,,5.680749706,4.498149622,6.863349789,11.74062209,7.669364142,17.20273161,6.63115651,4.799000846,8.932124302,10.84546976,9.352052524,12.33888699,,,,5.195076268,225,4331024,4.516252969,5.873899567,,,,1.488167451,0.943370508,2.23298186,39.43181506,31.54036224,48.69797081,6.931124213,5.074454047,9.245148396,3.250814881,2.455630625,4.221453521,,,,4.582372011,278,6066727,4.043700488,5.121043533,,,,3.676196858,2.910479672,4.581638149,15.66170713,11.54770648,20.76515146,4.308835806,3.078295472,5.867411409,3.944988775,3.195453574,4.817506504,,,,,,,,,,,0.679597653,443553,652670,,,0.648,,,,,794.0138597,,,,,0.385534389,139117,360842,0.37810613,0.392962648,0.165690136,58141,350902,0.1588696,0.172510671,0.915810798,330463,360842,0.910687345,0.920934251,808437,,,,,0.136930893,110700,808437,,,0.182384032,147446,808437,,,0.051371968,41531,808437,,,0.008034021,6495,808437,,,0.372693234,301299,808437,,,0.004592813,3713,808437,,,0.158530597,128162,808437,,,0.37885698,306282,808437,,,0.108444992,88324,814459,0.104324357,0.112565628,0.486126934,393003,808437,,,0,0,873965,, -06,077,06077,CA,San Joaquin County,2024,1,8627.497214,10385,2196462,8398.12529,8856.869137,0,7403.762731,4958.416099,10633.03829,,5699.666498,5240.756023,6158.576974,,16894.23214,15634.99067,18153.4736,,7553.557129,7226.271418,7880.842841,,9231.412719,8772.578588,9690.24685,,14627.86764,11019.71179,19040.1804,,,0.194,,,0.167,0.222,3.696136467,,,2.982574605,4.499360486,4.732214545,,,3.872663943,5.671194917,0.075542517,5253,69537,0.07357831,0.077506724,0,0.057142857,0.022752161,0.091533554,0.090260631,0.084889641,0.095631621,0.132551449,0.122664803,0.142438096,0.066245964,0.063604979,0.068886949,0.062231609,0.058258881,0.066204336,0.10430839,0.075780106,0.132836674,0.075702629,0.064664012,0.086741246,0.131,,,0.107,0.158,0.333,,,0.273,0.399,8.1,0.045353213,0.108,,,0.249,,,0.209,0.295,0.893431105,696191,779233,,,0.164942872,,,0.133992376,0.200325322,0.283557047,169,596,0.263119733,0.304242142,535.5,4227,789410,,,16.72068548,3214,192217,16.14260645,17.2987645,,,,5.959018679,5.065851485,6.852185872,19.79745679,17.39099594,22.20391764,21.48150341,20.57911911,22.38388771,8.286715115,7.374475666,9.198954564,,,,14.65002713,12.17871491,17.12133935,0.076813637,51777,674060,0.069664701,0.083962573,0.000585247,462,789410,,,1708.679654,0.0006026,478,793229,,,1659.474895,0.002948707,2339,793229,,,339.1316802,2181,,,,,4605,1610,3887,2265,2049,0.32,,,,,0.44,0.28,0.27,0.25,0.37,0.41,,,,,0.35,0.44,0.27,0.32,0.45,0.802320727,397854,495879,0.795649037,0.808992418,0.526821296,112499,213543,0.511112431,0.542530161,0.052456608,18067,344418,,,0.16,32521,,0.132595745,0.187404255,0.098669114,0.047120164,0.150218064,0.153941454,0.130242073,0.177640836,0.274721903,0.227438016,0.322005789,0.189718199,0.175287507,0.204148891,0.109462887,0.090296779,0.128628996,4.542298035,157377,34647,4.407916092,4.676679977,0.225585173,46665,206862,0.211085742,0.240084604,4.459026362,352,789410,,,72.06081084,2751,3817609,69.36797474,74.75364694,61.05006105,29.27587727,112.2732359,41.0487548,35.97044492,46.12706468,145.3032745,130.955539,159.65101,53.96623912,50.37810774,57.5543705,95.57706498,89.93138701,101.2227429,86.42295394,52.78938547,133.473243,9.8,,,,,1,,,,,0.241550911,55820,231090,0.232397761,0.25070406,0.170966188,0.163025912,0.178906464,0.07890865,0.073434556,0.084382744,0.011727033,0.009456661,0.013997404,0.760661191,247437,325292,0.751699363,0.769623018,0.746207701,0.713846013,0.778569389,0.728212887,0.708111961,0.748313812,0.739205328,0.703251547,0.77515911,0.778340348,0.760744016,0.795936679,0.798681186,0.785196066,0.812166306,0.419,,325292,0.404023211,0.433976789,76.62344677,,,76.41260464,76.83428891,77.30977384,74.38701339,80.23253429,81.62140269,81.01548504,82.22732035,69.43256154,68.58160773,70.28351535,78.60983449,78.18216239,79.03750659,75.54593615,75.19018486,75.90168745,72.66640885,69.47217096,75.86064675,431.6638327,10385,2196462,423.2550969,440.0725686,466.2836761,347.1788238,613.0769213,286.1167715,269.5153686,302.7181744,752.1693067,710.8024325,793.536181,374.1900496,360.2480183,388.1320809,472.3430154,457.4681787,487.2178521,576.5014244,462.3710003,710.2658788,50.8870615,463,909858,46.25181378,55.52230922,,,,42.60661163,32.18457655,55.32822917,109.2896175,84.52458225,139.04319,45.37421294,39.36464681,51.38377908,46.5544062,37.02610082,57.78629321,,,,5.371621135,373,69439,4.826482416,5.916759854,,,,3.19368777,2.211721622,4.462858547,11.29698023,8.437125179,14.81448658,5.412439739,4.628245584,6.196633893,4.648969142,3.617175486,5.883567989,,,,13.77165704,9.357172803,19.54776788,0.117,,,0.101,0.133,0.156,,,0.136,0.178,0.118,,,0.101,0.136,234.7,1507,642218,,,0.108,83690,,,,0.045353213,31080.82907,685306,,,21.3405762,495,2319525,19.46056856,23.22058383,,,,6.55735985,4.243577551,9.679956695,41.8100732,32.53073256,52.91332353,15.33574101,12.8896514,17.78183062,32.5852427,28.29876524,36.87172016,,,,0.347,,,0.337,0.357,0.097231339,45475,467699,0.087699424,0.106763254,0.032868136,7129,216897,0.025719199,0.040017072,0.00045132,358,793229,,,2215.723464,0.827326581,8086.29,9774,,,0.093383449,4323,46293,0.079238555,0.107528343,2.649964424,,,,,,3.022280463,2.189684984,2.470436223,3.0583999,2.495588017,,,,,,2.895766645,1.985479654,2.329318325,2.861700946,0.134165406,,,,,-8275.090146,,,,,0.840282253,50848,60513,0.810877276,0.869687231,84738,,,81108.7234,88367.2766,76648,64616.34043,88679.65957,100838,94340.80851,107335.1915,65217,58301.59575,72132.40426,73634,71074.68085,76193.31915,91141,88790.19149,93491.80851,,,,,,0.59046287,89079,150863,,,49.82574893,,,,,0.276817957,,84738,,,5.64822336,299,52937,,,9.550113843,504,5277424,8.716337917,10.38388977,,,,4.238375951,2.952184144,5.894554943,43.08372425,36.42859689,49.73885161,9.237189286,7.969593372,10.5047852,5.01618024,3.989517007,6.226402306,,,,11.02057685,420,3817609,9.954911805,12.0862419,11.00165051,,,,8.737908089,6.564185485,11.40107464,7.470852452,4.497941205,11.66666153,7.522798084,6.067806756,8.977789412,17.37344941,14.93495678,19.81194204,,,,12.02323234,459,3817609,10.92328735,13.12317734,,,,7.032256798,5.089279114,9.472403758,37.61658375,30.31637403,44.91679347,9.625738853,8.110349271,11.14112844,12.41373324,10.37907973,14.44838674,,,,16.78849378,886,5277424,15.68301364,17.89397392,,,,10.17210228,8.113667157,12.59375479,31.3092903,25.63598227,36.98259832,15.03307276,13.41598054,16.65016499,18.90243529,16.79480423,21.01006636,,,,,,,,,,,0.616818114,288492,467710,,,0.662,,,,,243.4436321,,,,,0.599735493,142391,237423,0.590194952,0.609276034,0.174144605,40218,230946,0.166126108,0.182163102,0.896488546,212847,237423,0.890639846,0.902337245,793229,,,,,0.261208302,207198,793229,,,0.134729063,106871,793229,,,0.0702584,55731,793229,,,0.020884259,16566,793229,,,0.195020606,154696,793229,,,0.008901591,7061,793229,,,0.430839014,341754,793229,,,0.272860675,216441,793229,,,0.092539135,67320,727476,,,0.498467656,395399,793229,,,0.077513401,60401,779233,, -06,079,06079,CA,San Luis Obispo County,2024,1,5707.287157,2936,776512,5374.489118,6040.085195,0,,,,2,3730.064836,2516.659081,5324.899487,,4600.43106,3166.725062,6460.71563,,5221.171123,4598.224908,5844.117337,,5988.87726,5554.626605,6423.127915,,,,,2,,0.141,,,0.12,0.166,3.419231976,,,2.640886317,4.205318517,5.102969647,,,4.111572173,6.091181731,0.062042948,1069,17230,0.058440887,0.06564501,0,,,,0.090712743,0.064551988,0.116873498,,,,0.068435282,0.062002259,0.074868306,0.055671922,0.050953377,0.060390466,,,,0.08097166,0.056915651,0.105027669,0.117,,,0.093,0.146,0.305,,,0.239,0.373,8.7,0.040541898,0.084,,,0.182,,,0.146,0.222,0.8719868,246270,282424,,,0.19600306,,,0.156977422,0.235393916,0.374193548,58,155,0.334768285,0.413302729,344,974,283159,,,7.380374174,544,73709,6.760169547,8.000578801,,,,,,,,,,18.3542512,16.53028015,20.17822226,2.516265047,2.048151761,2.984378332,,,,6.687785991,4.026484042,10.44380626,0.065322067,13729,210174,0.056981641,0.073662492,0.000829922,235,283159,,,1204.931915,0.000911306,257,282013,,,1097.326848,0.007215979,2035,282013,,,138.5813268,1332,,,,,1401,1108,2530,1632,1277,0.45,,,,,0.33,0.42,0.37,0.41,0.46,0.49,,,,,0.41,0.52,0.36,0.43,0.5,0.920507368,174461,189527,0.914476118,0.926538618,0.708687122,45154,63715,0.679352062,0.738022183,0.030283594,4155,137203,,,0.107,5048,,0.074829787,0.139170213,0.27571116,0,0.590462165,0.079470199,0,0.167689998,0.09223301,0,0.392400923,0.171216014,0.133828935,0.208603093,0.064523993,0.044915349,0.084132638,4.679276996,169825,36293,4.416110408,4.942443584,0.182728949,8919,48810,0.15657416,0.208883738,8.581750889,243,283159,,,69.35351507,982,1415934,65.01572225,73.69130788,,,,29.0917554,16.28243466,47.98242639,44.01760704,21.97343084,78.75965792,37.34575743,30.71875045,43.97276441,83.44310876,77.68592913,89.20028838,,,,7,,,,,1,,,,,0.202456586,21510,106245,0.190506853,0.21440632,0.176397752,0.164972922,0.187822582,0.030872041,0.025605096,0.036138986,0.005835569,0.003820384,0.007850754,0.699934981,90426,129192,0.690095734,0.709774227,0.776672694,0.369757453,1,0.616083009,0.538901996,0.693264022,0.781203008,0.609862554,0.952543461,0.739819195,0.714694809,0.76494358,0.68290128,0.664902324,0.700900236,0.241,,129192,0.225975891,0.256024109,81.22903064,,,80.8919538,81.56610749,,,,85.84907485,83.45415593,88.24399376,81.97666209,77.69924081,86.25408338,83.48844962,82.30475721,84.67214203,80.83345375,80.43319881,81.2337087,,,,274.5415057,2936,776512,263.7296735,285.3533379,,,,198.388189,150.6444694,256.4627389,286.6767038,209.8833775,382.386549,243.8439999,219.6528745,268.0351252,285.1717471,271.8229776,298.5205165,,,,25.59529047,64,250046,19.7114925,32.68461451,,,,,,,,,,31.79650239,21.12854492,45.95479894,23.84513668,16.4138949,33.48743742,,,,3.657978967,64,17496,2.817089537,4.671157477,,,,,,,,,,5.318236404,3.613483613,7.548812061,3.150929524,2.125918918,4.49814782,,,,,,,0.102,,,0.087,0.119,0.156,,,0.134,0.181,0.089,,,0.075,0.104,158,393,248771,,,0.084,23710,,,,0.040541898,10931.59584,269637,,,29.69880462,252,848519,26.0319409,33.36566835,,,,,,,,,,19.71937808,14.02240551,26.95703899,34.30644667,29.52786278,39.08503055,,,,0.317,,,0.302,0.331,0.076719856,12342,160871,0.065996452,0.087443261,0.031353072,1635,52148,0.023012647,0.039693498,0.000936127,264,282013,,,1068.231061,0.902421558,2444.66,2709,,,0.017346144,334,19255,0.00788477,0.026807518,3.054314624,,,,,,3.487909051,2.647630786,2.607721187,3.366367293,2.908190467,,,,,,3.41407099,2.682770529,2.494661198,3.226178197,0.089443754,,,,,-3053.047556,,,,,0.779700893,56671,72683,0.735437889,0.823963897,88578,,,83115.02128,94040.97872,,,,84810,78242.51064,91377.48936,98750,10913.40426,186586.5957,77161,67895.97872,86426.02128,92837,89193.42553,96480.57447,,,,,,0.501890359,16461,32798,,,65.69691634,,,,,0.29526519,,88578,,,9.672092475,123,12717,,,1.767478596,35,1980222,1.231113603,2.458134864,,,,,,,,,,2.431664696,1.213878255,4.350919835,1.620117738,1.015319161,2.452877726,,,,16.36243472,256,1415934,14.23861757,18.48625186,18.07993875,,,,,,,,,,5.535708605,3.098294084,9.1303095,19.94679645,17.0611227,22.8324702,,,,9.675592224,137,1415934,8.055374627,11.29580982,,,,,,,,,,,,,12.6146955,10.376217,14.853174,,,,9.544384418,189,1980222,8.183650869,10.90511797,,,,,,,,,,8.842417075,6.317152397,12.04086235,10.16255672,8.466971938,11.85814151,,,,,,,,,,,0.724967659,159714,220305,,,0.675,,,,,224.2339981,,,,,0.620088993,67031,108099,0.60798048,0.632197505,0.194544832,20456,105148,0.182296453,0.206793211,0.913782736,98779,108099,0.903262395,0.924303077,282013,,,,,0.169995709,47941,282013,,,0.223397503,63001,282013,,,0.015995717,4511,282013,,,0.014548975,4103,282013,,,0.042427122,11965,282013,,,0.001914805,540,282013,,,0.241013712,67969,282013,,,0.671472592,189364,282013,,,0.030040958,8090,269299,0.025895585,0.034186332,0.494764426,139530,282013,,,0.19087967,53909,282424,, -06,081,06081,CA,San Mateo County,2024,1,3815.771056,5274,2095284,3655.986594,3975.555517,0,,,,2,2538.573257,2300.018788,2777.127727,,10057.5554,8176.087037,11939.02376,,4671.048579,4302.458379,5039.638778,,3773.950523,3507.894429,4040.006617,,8801.363756,6762.874032,10839.85348,,,0.117,,,0.099,0.138,2.647290271,,,2.042835519,3.351840919,4.188606982,,,3.389231755,5.030167316,0.06702857,3803,56737,0.064970847,0.069086294,0,,,,0.07836699,0.074470292,0.082263687,0.095041322,0.073708006,0.116374639,0.061969383,0.058105697,0.06583307,0.053581061,0.050164097,0.056998024,0.043156597,0.029170721,0.057142473,0.058986815,0.046822171,0.071151459,0.081,,,0.063,0.102,0.21,,,0.167,0.26,9.4,0.009193269,0.066,,,0.165,,,0.134,0.202,0.994547657,760274,764442,,,0.166521597,,,0.135722927,0.200230155,0.194968554,31,159,0.155738243,0.236920379,317.7,2344,737888,,,6.944093185,961,138391,6.505047294,7.383139077,,,,0.998775694,0.678619627,1.417682373,9.932459277,6.427763944,14.66226925,13.96279338,12.91099125,15.01459552,1.163772448,0.866505028,1.530145845,7.196969697,4.333045896,11.23895969,1.747353274,1.017897674,2.79768186,0.047169286,28821,611012,0.042403329,0.051935244,0.001089596,804,737888,,,917.7711443,0.001160206,846,729181,,,861.9160757,0.004673737,3408,729181,,,213.961561,1468,,,,,6314,1314,2350,1784,1330,0.43,,,,,,0.37,0.37,0.31,0.47,0.51,,,,,,0.49,0.38,0.36,0.54,0.905811612,496219,547817,0.901774842,0.909848383,0.798003258,174888,219157,0.782152448,0.813854068,0.024182858,10964,453379,,,0.072,9978,,0.05412766,0.08987234,0.136036625,0.031185458,0.240887793,0.03791282,0.025814439,0.050011202,0.041597338,0,0.087385323,0.124624367,0.104313744,0.14493499,0.026236054,0.01769577,0.034776339,,,,,,0.153293429,22998,150026,0.139456231,0.167130628,6.342425951,468,737888,,,41.8537202,1592,3803724,39.79774152,43.90969887,,,,23.01779047,20.23058453,25.8049964,98.97761941,79.05980694,122.3873592,37.837773,33.85654636,41.81899964,56.57264084,52.7192119,60.42606979,47.89272031,30.68576959,71.26057151,7,,,,,0,,,,,0.232732106,61290,263350,0.225205003,0.240259208,0.17184717,0.164285502,0.179408839,0.075887602,0.070958889,0.080816315,0.009853807,0.00792721,0.011780404,0.590479746,232489,393729,0.583239525,0.597719968,0.6,0.464280937,0.735719063,0.583966497,0.569948855,0.597984138,0.63733393,0.588938834,0.685729027,0.643672467,0.627342341,0.660002593,0.609694491,0.601379031,0.618009951,0.398,,393729,0.38483957,0.41116043,84.46998106,,,84.25021288,84.68974924,,,,88.67259614,88.11813359,89.22705869,76.03783554,74.51981222,77.55585885,86.02172063,85.26543685,86.77800442,83.29798363,83.0050363,83.59093096,79.77663221,77.1807109,82.37255353,193.9767149,5274,2095284,188.6036584,199.3497714,,,,137.8233212,129.6998245,145.9468179,489.0243958,432.1310693,545.9177224,210.4370337,197.4514233,223.4226441,200.9130395,192.4788365,209.3472426,410.0523838,336.9860988,483.1186689,27.01758681,181,669934,23.08151204,30.95366157,,,,25.164317,18.13622627,34.01484622,,,,32.58330542,25.44783186,41.09940621,21.8414794,15.93132495,29.22561787,,,,3.054011393,178,58284,2.605352042,3.502670743,,,,2.652807103,1.962561299,3.507151675,,,,4.363729705,3.388606863,5.532067199,1.82930315,1.251242,2.582430234,,,,,,,0.079,,,0.068,0.092,0.124,,,0.107,0.143,0.088,,,0.075,0.104,261,1657,634808,,,0.066,50050,,,,0.009193269,6604.912912,718451,,,15.86551698,359,2262769,14.22431106,17.50672291,,,,3.334314298,2.113669244,5.003108581,66.81602012,46.27203629,93.36869099,16.63558277,13.37697305,20.44795554,21.71323207,18.60108765,24.82537649,,,,0.289,,,0.278,0.301,0.054570339,25279,463237,0.048612892,0.060527786,0.02610813,4053,155239,0.020150683,0.032065577,0.000618502,451,729181,,,1616.809313,0.889315742,5965.53,6708,,,0.046494443,1573,33832,0.034378054,0.058610833,3.204949859,,,,,,3.511056189,2.700856213,2.601893797,3.660083723,3.168701726,,,,,,3.639306352,2.344649465,2.471074454,3.606852016,0.18551386,,,,,3264.566544,,,,,0.882313369,89186,101082,0.849215822,0.915410917,143795,,,136685.383,150904.617,104634,82122,127146,171078,165417.234,176738.766,97411,82803.34043,112018.6596,99162,94169.65957,104154.3404,166608,162192.3404,171023.6596,,,,,,0.30352329,25784,84949,,,59.09266889,,,,,0.283473,,143795,,,9.733643403,406,41711,,,2.118621823,113,5333656,1.727987598,2.509256049,,,,0.639694584,0.306758418,1.176421116,9.008271231,4.496896542,16.11828557,4.234762938,3.190202989,5.512126049,1.205671091,0.78024676,1.779808371,,,,7.990891227,330,3803724,7.104308281,8.877474173,8.675708332,,,,5.790372646,4.459292507,7.394176599,,,,5.627163951,4.176589547,7.418714149,10.9029292,9.218390507,12.58746789,,,,4.232694065,161,3803724,3.578871338,4.886516792,,,,1.844937404,1.142045331,2.820182801,11.64442581,5.583954792,21.41451366,4.68883066,3.393329998,6.315824129,5.465955637,4.334162878,6.802854935,,,,5.380924454,287,5333656,4.758377636,6.003471272,,,,3.390381296,2.539628244,4.434702211,13.10293997,7.489462332,21.27835361,6.621629321,5.296448747,8.177658344,5.83544808,4.795677332,6.875218829,,,,,,,,,,,0.740233591,374251,505585,,,0.761,,,,,642.1980102,,,,,0.595362492,157368,264323,0.588125047,0.602599937,0.181859617,47082,258892,0.174083222,0.189636013,0.944310559,249603,264323,0.940743733,0.947877386,729181,,,,,0.192679184,140498,729181,,,0.183160285,133557,729181,,,0.021964368,16016,729181,,,0.009049879,6599,729181,,,0.328469886,239514,729181,,,0.014346232,10461,729181,,,0.237658414,173296,729181,,,0.367087184,267673,729181,,,0.065707876,46949,714511,0.062294816,0.069120936,0.501376202,365594,729181,,,0.017051653,13035,764442,, -06,083,06083,CA,Santa Barbara County,2024,1,5775.069639,3940,1244294,5518.938941,6031.200336,0,5955.725104,2723.336763,11305.82142,1,2773.054085,2010.313174,3535.794995,,8700.332723,6743.853583,10656.81186,,5746.202587,5384.600305,6107.80487,,5933.164071,5510.242007,6356.086135,,,,,2,,0.172,,,0.144,0.201,3.629773346,,,2.868633835,4.470822635,5.052660897,,,4.085683333,6.062838871,0.068242291,2616,38334,0.065717984,0.070766599,0,,,,0.08671875,0.071301395,0.102136105,0.128440367,0.092175882,0.164704852,0.069427383,0.066291246,0.072563519,0.05821952,0.053637118,0.062801921,,,,0.076163611,0.056638017,0.095689204,0.12,,,0.096,0.149,0.301,,,0.238,0.37,8.7,0.028816911,0.089,,,0.221,,,0.179,0.266,0.926095813,415103,448229,,,0.174490215,,,0.140663382,0.211838571,0.319371728,61,191,0.283008461,0.356018796,317.4,1417,446475,,,17.76119518,2304,129721,17.03594638,18.48644398,,,,,,,,,,31.40860611,30.07629455,32.74091766,2.672010688,2.193927316,3.15009406,,,,4.029692471,2.426138105,6.29286396,0.100760562,36194,359208,0.091228647,0.110292477,0.000766,342,446475,,,1305.482456,0.00091475,406,443837,,,1093.194581,0.006585751,2923,443837,,,151.8429696,1413,,,,,741,1216,3613,1785,1225,0.46,,,,,0.29,0.4,0.43,0.41,0.47,0.49,,,,,0.39,0.51,0.39,0.44,0.51,0.821152898,228191,277891,0.814859711,0.827446085,0.641754141,70858,110413,0.621324917,0.662183365,0.034995105,7829,223717,,,0.161,15293,,0.126446809,0.195553192,0.324617347,0.171323005,0.477911689,0.069287142,0.022860696,0.115713588,0.090219224,0,0.196438597,0.195901447,0.17697889,0.214824005,0.047507755,0.033441569,0.061573941,4.84521649,186880,38570,4.606843596,5.083589383,0.233114466,22793,97776,0.207293806,0.258935126,7.637605689,341,446475,,,63.4738044,1417,2232417,60.16884845,66.77876035,106.8604403,51.24373473,196.5201543,35.85544419,25.94876275,48.29704802,95.80234464,67.79544093,131.496203,43.99382536,39.9469496,48.04070112,87.04658532,81.18776898,92.90540167,,,,6.8,,,,,1,,,,,0.278605623,41320,148310,0.266694135,0.290517112,0.186102781,0.175493466,0.196712096,0.103398287,0.095655888,0.111140687,0.014294383,0.011310795,0.017277972,0.665794126,136332,204766,0.656885886,0.674702366,0.624397479,0.549222546,0.699572411,0.614493961,0.571686994,0.657300928,0.721527321,0.629233319,0.813821323,0.665257393,0.6477238,0.682790987,0.688086582,0.675061475,0.701111688,0.216,,204766,0.204509693,0.227490307,80.9857988,,,80.71150092,81.26009668,82.25656755,77.14161352,87.37152158,86.36937556,84.88222142,87.85652969,75.90412339,74.06193,77.74631678,81.66229189,81.099635,82.22494877,80.66912524,80.28116947,81.057081,,,,278.5711226,3940,1244294,269.5811794,287.5610658,300.4983775,183.5522157,464.0953722,161.7646549,131.5432807,191.9860292,501.8698064,413.4348971,590.3047156,269.0413595,254.2784198,283.8042992,288.8596339,275.4705907,302.2486772,,,,40.0424324,191,476994,34.36358971,45.72127509,,,,,,,,,,46.66946684,38.93865874,54.40027493,28.01820426,19.72740148,38.61940385,,,,4.58990742,176,38345,3.911791932,5.268022907,,,,,,,,,,5.09446829,4.208428809,5.980507771,3.764842166,2.677170817,5.146663179,,,,,,,0.113,,,0.096,0.132,0.154,,,0.133,0.178,0.104,,,0.088,0.123,162.7,611,375561,,,0.089,39990,,,,0.028816911,12215.34464,423895,,,22.05211775,295,1337740,19.53562684,24.56860866,,,,,,,50.73352218,26.21475123,88.62125332,15.25570162,12.34277363,18.64930412,30.5801944,26.07504,35.08534881,,,,0.298,,,0.286,0.311,0.123059196,32147,261232,0.109952813,0.136165579,0.045067286,4655,103290,0.034343882,0.055790691,0.000887713,394,443837,,,1126.489848,0.907822325,4302.17,4739,,,0.052914659,1702,32165,0.035652681,0.070176636,2.724552313,,,,,,,2.928567026,2.482551669,3.537624163,2.578195598,,,,,,3.355681236,2.629105029,2.353938386,3.297637047,0.199517496,,,,,-627.1225833,,,,,0.897104574,54500,60751,0.848611297,0.945597852,89334,,,84969.57447,93698.42553,71912,45153.53192,98670.46809,106943,96314.91489,117571.0851,74434,55954,92914,78142,73644.12766,82639.87234,105367,102136.8723,108597.1277,,,,,,0.615956496,41343,67120,,,53.00284684,,,,,0.343374303,,89334,,,6.480267948,178,27468,,,3.777987524,118,3123356,3.096315317,4.45965973,,,,,,,,,,5.094993715,3.993661753,6.406189662,2.396742174,1.649807031,3.365917111,,,,11.68821953,270,2232417,10.24717168,13.12926738,12.0945146,,,,8.866936809,4.426342908,15.86539925,,,,6.626552957,5.00562689,8.605130203,15.34305852,12.86646042,17.81965662,,,,7.122325265,159,2232417,6.015244481,8.229406048,,,,,,,,,,5.523453845,4.183410002,7.156275119,9.649031863,7.797399935,11.8079713,,,,9.060766688,283,3123356,8.005097609,10.11643577,,,,,,,,,,9.492043086,7.896728565,11.08735761,9.514340144,7.885047498,11.14363279,,,,,,,,,,,0.705605354,200339,283925,,,0.699,,,,,310.2455974,,,,,0.52804799,78168,148032,0.519883823,0.536212157,0.203078568,29249,144028,0.191670327,0.214486809,0.916281615,135639,148032,0.910368947,0.922194282,443837,,,,,0.219461199,97405,443837,,,0.16692164,74086,443837,,,0.016871059,7488,443837,,,0.021724192,9642,443837,,,0.060952557,27053,443837,,,0.002728479,1211,443837,,,0.474536823,210617,443837,,,0.422916521,187706,443837,,,0.102389641,42843,418431,0.096788879,0.107990403,0.498227953,221132,443837,,,0.055694745,24964,448229,, -06,085,06085,CA,Santa Clara County,2024,1,3918.105221,12658,5363454,3818.456636,4017.753805,0,12227.77394,7663.080825,18512.99669,1,2297.186761,2175.109511,2419.264012,,8195.556525,7214.88738,9176.225669,,5576.595115,5343.475709,5809.714521,,4349.009045,4137.794366,4560.223724,,10948.55417,7919.007456,13978.10088,,,0.117,,,0.099,0.137,2.475062813,,,1.946050658,3.075742518,4.004821902,,,3.318434837,4.765481608,0.071601425,10415,145458,0.070276426,0.072926423,0,0.09929078,0.04992872,0.148652841,0.079191963,0.076952147,0.081431779,0.092022264,0.081108847,0.10293568,0.067073764,0.064655443,0.069492086,0.055916109,0.053284181,0.058548037,0.07,0.047635378,0.092364622,0.070318888,0.060186056,0.08045172,0.074,,,0.058,0.093,0.185,,,0.152,0.223,9.3,0.009662712,0.07,,,0.166,,,0.136,0.2,0.993760132,1924177,1936259,,,0.149231867,,,0.123743777,0.176525501,0.234693878,138,588,0.214131913,0.25574581,268,5054,1885508,,,6.634621723,2617,394446,6.380424749,6.888818697,,,,0.672000506,0.536770136,0.830939032,5.465055176,4.081564603,7.166692774,15.73609557,15.0755165,16.39667464,1.227071076,1.004723264,1.449418888,9.75243811,5.192762559,16.67696618,1.64876788,1.160884745,2.272609338,0.044367414,70819,1596194,0.040792946,0.047941882,0.001069738,2017,1885508,,,934.8081309,0.001278498,2392,1870945,,,782.1676421,0.004356087,8150,1870945,,,229.5638037,1893,,,,,6437,1378,3464,3145,1817,0.37,,,,,0.27,0.33,0.28,0.27,0.43,0.51,,,,,0.41,0.53,0.32,0.34,0.53,0.89283177,1197649,1341405,0.890194526,0.895469014,0.815023911,474815,582578,0.805462116,0.824585706,0.026485892,27568,1040856,,,0.069,25899,,0.053510638,0.084489362,0.133283415,0.077312989,0.18925384,0.042074672,0.034610801,0.049538543,0.106821412,0.064896856,0.148745967,0.112511558,0.100766499,0.124256617,0.027849701,0.021935165,0.033764237,,,,,,0.158875414,64376,405198,0.150905365,0.166845463,6.024901512,1136,1885508,,,43.72569608,4196,9596188,42.40264972,45.04874244,89.04719501,51.87327259,142.5731854,20.91292655,19.43673167,22.38912143,82.28750462,70.49328636,94.08172288,47.01634834,44.27982952,49.75286716,67.65760585,64.67140344,70.64380827,57.96765405,35.40814905,89.52634022,9.2,,,,,1,,,,,0.224274573,142485,635315,0.21953126,0.229017885,0.15157868,0.14736301,0.15579435,0.080841787,0.077691627,0.083991948,0.010349197,0.009186246,0.011512148,0.637684829,622015,975427,0.632968265,0.642401394,0.662731453,0.609605869,0.715857036,0.615579789,0.608261686,0.622897892,0.670915335,0.649877889,0.69195278,0.701613056,0.691961885,0.711264227,0.649219127,0.641588127,0.656850127,0.404,,975427,0.396186882,0.411813118,84.14830582,,,84.00286027,84.29375137,78.15320132,72.59333855,83.71306409,89.24368132,88.90044456,89.58691809,78.2585388,77.21336553,79.30371206,82.10823781,81.73093727,82.48553836,82.39586184,82.17906897,82.61265471,77.75369705,74.24673001,81.26066409,202.7665083,12658,5363454,199.1883719,206.3446447,491.1302053,368.9521259,640.8183827,126.3163322,121.769113,130.8635514,413.6846421,380.2545557,447.1147285,277.0444396,267.4812076,286.6076715,226.1704689,219.6619039,232.6790338,517.789702,419.3933319,616.1860722,27.62923107,504,1824155,25.21705168,30.04141045,,,,21.04318061,17.49340771,24.59295351,57.15324864,35.81763664,86.53070529,30.99568805,26.61132268,35.38005341,28.12289706,22.91446364,33.33133048,,,,3.057552756,458,149793,2.777527443,3.337578069,,,,2.551469294,2.13616883,2.966769759,7.749077491,4.796801101,11.84528809,3.800845157,3.213729975,4.387960339,2.825500958,2.263110439,3.485244993,,,,13.66653651,9.519243422,19.00684396,0.076,,,0.065,0.088,0.119,,,0.102,0.136,0.09,,,0.077,0.104,218.7,3514,1606833,,,0.07,135030,,,,0.009662712,17215.49423,1781642,,,14.66663986,839,5720465,13.67419653,15.6590832,,,,3.656830536,2.908385847,4.5390909,44.83777546,34.29734543,57.59599835,18.94202478,16.68258594,21.20146361,23.10519744,20.82081149,25.38958338,,,,0.287,,,0.275,0.298,0.052679859,63228,1200231,0.047913902,0.057445817,0.021574693,8976,416043,0.016808736,0.02634065,0.001101048,2060,1870945,,,908.2257282,0.891718515,17800.485,19962,,,0.035159402,3399,96674,0.028867086,0.041451717,3.242525267,,,,,,3.78023904,2.806614191,2.575330802,3.588033937,3.23576742,,,,,,3.930826831,2.712013674,2.477549853,3.52286052,0.20505189,,,,,1090.703624,,,,,0.734432125,85778,116795,0.71887778,0.749986469,150502,,,147304.0426,153699.9575,92722,83875.19149,101568.8085,189054,185017.234,193090.766,91650,85257.65957,98042.34043,98317,95328.74468,101305.2553,160922,158011.1915,163832.8085,,,,,,0.327998766,78681,239882,,,50.23919273,,,,,0.254096291,,150502,,,7.892602937,876,110990,,,2.4565207,330,13433634,2.191475753,2.721565648,,,,1.130050583,0.855889276,1.464111604,9.419507171,6.355301933,13.44693219,4.510384575,3.798008567,5.222760582,1.96930762,1.566248792,2.444430009,,,,7.863848897,794,9596188,7.309918968,8.417778826,8.274118848,,,,4.41405145,3.738563109,5.089539792,7.95940101,4.717245479,12.5792851,6.286888771,5.248463341,7.3253142,12.70079962,11.42024862,13.98135061,,,,4.147480229,398,9596188,3.740007207,4.55495325,,,,1.627465101,1.241927324,2.094870187,9.240842765,5.720227318,14.12560978,4.436286836,3.595697646,5.276876027,6.827517021,5.878896916,7.776137125,,,,6.922921973,930,13433634,6.477979327,7.36786462,,,,3.588406236,3.065626932,4.111185541,10.98942503,7.654537189,15.28362995,10.9245029,9.815830234,12.03317556,7.516991282,6.684215764,8.3497668,,,,,,,,,,,0.725393076,850741,1172800,,,0.749,,,,,626.35805,,,,,0.55593125,361551,650352,0.550268003,0.561594496,0.155928599,99426,637638,0.151342173,0.160515025,0.946465914,615536,650352,0.944167848,0.94876398,1870945,,,,,0.203191435,380160,1870945,,,0.151162648,282817,1870945,,,0.024234277,45341,1870945,,,0.011751815,21987,1870945,,,0.414258035,775054,1870945,,,0.005025803,9403,1870945,,,0.247198074,462494,1870945,,,0.282875766,529245,1870945,,,0.086904224,157502,1812363,0.084366628,0.08944182,0.489458536,915750,1870945,,,0.013188835,25537,1936259,, -06,087,06087,CA,Santa Cruz County,2024,1,5285.423344,2489,758287,4956.556824,5614.289863,0,,,,2,3719.981817,2167.026494,5956.051249,1,10141.69726,6194.81216,15663.02888,1,5718.001701,5165.67376,6270.329641,,5017.952935,4560.817286,5475.088584,,,,,2,,0.144,,,0.121,0.17,3.378792451,,,2.62814133,4.121654994,5.165104562,,,4.189692893,6.146090011,0.059932108,1024,17086,0.056372967,0.06349125,0,,,,0.048986487,0.031599404,0.066373569,0.159574468,0.085541789,0.233607147,0.062694186,0.057689235,0.067699136,0.051637471,0.046284334,0.056990609,,,,0.052469136,0.028190057,0.076748215,0.112,,,0.087,0.141,0.252,,,0.197,0.315,8.4,0.054188617,0.09,,,0.175,,,0.141,0.216,0.976999273,264631,270861,,,0.172133834,,,0.139691465,0.208387671,0.307692308,32,104,0.257579737,0.358489253,318.5,853,267792,,,7.810815951,616,78865,7.193990735,8.427641168,,,,,,,,,,16.92450495,15.50617138,18.34283852,1.496962893,1.118003489,1.963067673,,,,,,,0.07744373,16316,210682,0.067911816,0.086975645,0.001023182,274,267792,,,977.3430657,0.000904036,239,264370,,,1106.150628,0.009505617,2513,264370,,,105.200955,1564,,,,,,948,3965,2131,1394,0.46,,,,,,0.43,0.4,0.41,0.48,0.5,,,,,0.46,0.56,0.4,0.45,0.51,0.887101698,159830,180171,0.879067154,0.895136242,0.730269389,47033,64405,0.701509866,0.759028913,0.047609465,6388,134175,,,0.12,5592,,0.084255319,0.155744681,0.059662776,0.012816372,0.106509179,0.076229508,0,0.169740471,0.015267176,0,0.152638549,0.148709936,0.119856313,0.177563558,0.067004071,0.042745112,0.09126303,5.27683921,214894,40724,4.898179224,5.655499197,0.205308992,10279,50066,0.175991115,0.234626869,7.543167832,202,267792,,,72.51583667,987,1361082,67.99175582,77.03991751,,,,36.16295341,22.92421037,54.26218596,135.1047062,80.07161135,213.5236829,46.14455753,39.96197858,52.32713648,91.12914709,84.39741153,97.86088265,,,,6.5,,,,,1,,,,,0.255518047,24600,96275,0.240343144,0.270692951,0.195828748,0.181160966,0.210496531,0.068449753,0.059973778,0.076925729,0.012308491,0.008645242,0.015971741,0.642179656,83143,129470,0.627048642,0.657310669,0.538865546,0.381145508,0.696585584,0.556431952,0.511843407,0.601020497,0.68006993,0.529283834,0.830856027,0.673261504,0.648878515,0.697644492,0.60587644,0.582670987,0.629081893,0.374,,129470,0.354026999,0.393973001,82.08472057,,,81.71328781,82.45615333,,,,86.18239443,83.90396711,88.46082174,75.42520482,71.76473057,79.08567906,82.21534906,81.29758886,83.13310926,82.08700174,81.62843213,82.54557135,,,,252.0778833,2489,758287,241.5494419,262.6063247,,,,168.6668149,127.7465985,218.5274223,505.448071,364.282511,683.2189567,264.9843742,243.6223717,286.3463766,244.9260223,231.6304575,258.2215872,,,,27.14609251,70,257864,21.16171087,34.2974548,,,,,,,,,,28.078714,19.66598608,38.87277573,27.32773765,18.15908321,39.49618968,,,,3.915115751,69,17624,3.046193745,4.954829556,,,,,,,,,,4.933504934,3.611945668,6.580604216,,,,,,,,,,0.102,,,0.087,0.119,0.153,,,0.132,0.177,0.088,,,0.074,0.103,219.8,513,233349,,,0.09,24550,,,,0.054188617,14218.11781,262382,,,24.29309558,197,810930,20.90070525,27.68548592,,,,,,,,,,14.81551076,10.63186631,20.09891325,29.86167722,24.86121691,34.86213754,,,,0.301,,,0.288,0.314,0.089847489,14457,160906,0.077932595,0.101762382,0.040507241,2137,52756,0.029783837,0.051230645,0.000972122,257,264370,,,1028.677043,0.854735459,2439.415,2854,,,0.025123206,469,18668,0.014299551,0.03594686,2.728576905,,,,,,3.226590778,2.745118646,2.3167879,3.317578705,2.621941286,,,,,,3.205829383,2.395987048,2.231811615,3.175352959,0.271824862,,,,,-291.2986545,,,,,0.800012024,66537,83170,0.73755247,0.862471577,99256,,,92352.51064,106159.4894,96250,80285.23404,112214.766,96705,66767.6383,126642.3617,89255,59006.65957,119503.3404,86530,82798.25532,90261.74468,115325,111478.8723,119171.1277,,,,,,0.503168401,19057,37874,,,72.77920085,,,,,0.302722254,,99256,,,10.01912046,131,13075,,,3.246241559,62,1909901,2.488874789,4.161535173,,,,,,,,,,5.253821382,3.638424037,7.341688778,2.3862559,1.558781579,3.496417779,,,,12.66678423,188,1361082,10.77378249,14.55978598,13.81254032,,,,,,,,,,6.628673137,4.154154164,10.03589079,16.07076387,13.28486279,18.85666495,,,,6.098089608,83,1361082,4.857094334,7.55949956,,,,,,,,,,4.528204244,2.803029797,6.921841197,7.766688672,5.926801671,9.997267861,,,,8.90098492,170,1909901,7.562943135,10.23902671,,,,,,,,,,10.66216692,8.295802283,13.49365464,7.43410492,5.903752387,9.239913634,,,,,,,,,,,0.745448931,144837,194295,,,0.7,,,,,323.5086698,,,,,0.599583364,57852,96487,0.58705058,0.612116147,0.201917341,18956,93880,0.186881775,0.216952907,0.925409641,89290,96487,0.917020377,0.933798905,264370,,,,,0.180534857,47728,264370,,,0.191470288,50619,264370,,,0.010201611,2697,264370,,,0.019480274,5150,264370,,,0.053372168,14110,264370,,,0.0021712,574,264370,,,0.345179105,91255,264370,,,0.559643681,147953,264370,,,0.062648571,16050,256191,0.056917949,0.068379192,0.501074252,132469,264370,,,0.132931651,36006,270861,, -06,089,06089,CA,Shasta County,2024,1,9990.446988,3405,494593,9450.022113,10530.87186,0,15497.51278,11086.32649,19908.69907,,4877.553629,3266.574216,7004.980628,,12609.44735,7473.157646,19928.36308,1,7919.592946,6403.505686,9435.680206,,9877.485017,9271.515144,10483.45489,,,,,2,,0.16,,,0.136,0.187,3.874097127,,,3.102463039,4.797294886,5.562111909,,,4.570312256,6.692031044,0.067797877,907,13378,0.06353774,0.072058014,0,0.084880637,0.056746825,0.113014449,0.081936685,0.058739011,0.105134359,0.136986301,0.081212909,0.192759693,0.069417158,0.056668998,0.082165317,0.062749004,0.058005267,0.067492741,,,,0.088803089,0.064306177,0.113300001,0.148,,,0.117,0.182,0.309,,,0.242,0.384,7.5,0.069163622,0.124,,,0.204,,,0.165,0.245,0.796700612,145123,182155,,,0.178833688,,,0.143371936,0.217743535,0.308139535,53,172,0.269604374,0.347124647,289.9,528,182139,,,16.94481563,596,35173,15.58440571,18.30522554,27.13567839,17.88258305,39.48098738,,,,27.5,13.72790092,49.20509628,16.22861175,13.08255156,19.90295167,16.91867593,15.28892112,18.54843074,,,,16.03814478,11.29233401,22.10646994,0.074192805,10623,143181,0.06466089,0.08372472,0.000779624,142,182139,,,1282.669014,0.000795888,144,180930,,,1256.458333,0.00504615,913,180930,,,198.1708653,1915,,,,,1812,1773,2740,3598,1836,0.37,,,,,0.22,0.32,0.33,0.37,0.38,0.35,,,,,0.16,0.36,0.26,0.32,0.35,0.918957504,118438,128883,0.911659211,0.926255797,0.673178482,30083,44688,0.641113049,0.705243915,0.045820002,3351,73134,,,0.158,5971,,0.107957447,0.208042553,0.073365231,0,0.15376176,0.255481411,0.122836448,0.388126374,0.206741573,0,0.476065537,0.176535958,0.120202686,0.23286923,0.124772278,0.104433767,0.145110789,4.858604417,134870,27759,4.551637377,5.165571457,0.238217148,9305,39061,0.210004106,0.266430189,8.070759146,147,182139,,,112.4048082,1013,901207,105.4827342,119.3268822,146.106268,98.57728545,208.5757824,73.0513551,44.62166552,112.8218931,114.4879267,57.15196053,204.8505257,55.28780956,41.41436329,72.31781616,120.3600972,112.3017089,128.4184855,,,,6.6,,,,,0,,,,,0.213282518,15110,70845,0.198697698,0.227867339,0.178295129,0.164575002,0.192015256,0.030771402,0.025471053,0.036071751,0.017714729,0.011930724,0.023498735,0.78602767,58405,74304,0.771329054,0.800726286,0.71026616,0.70243188,0.718100439,0.79030977,0.697781173,0.882838367,,,,0.786471664,0.715010376,0.857932952,0.796217797,0.779777099,0.812658495,0.155,,74304,0.137651653,0.172348347,74.88270481,,,74.47095582,75.29445379,69.42513644,66.60998888,72.24028401,82.62606514,79.75935866,85.49277162,73.44680912,68.88601361,78.00760463,78.0458146,76.42633209,79.66529711,74.92968404,74.47486687,75.38450121,,,,485.0421389,3405,494593,467.4616707,502.6226071,723.8774153,577.5542715,870.200559,258.2662544,186.9085689,347.8829497,567.5065981,395.2891391,789.2642987,352.4637255,299.9474431,404.9800079,486.43388,466.8809623,505.9867977,,,,46.83950444,80,170796,37.14081395,58.2958178,,,,,,,,,,47.53199269,25.30878425,81.28115509,43.01147816,32.02487062,56.55215047,,,,5.922351393,81,13677,4.703201871,7.360942033,,,,,,,,,,,,,4.540185471,3.335957512,6.037484191,,,,,,,0.118,,,0.101,0.136,0.178,,,0.155,0.203,0.092,,,0.078,0.107,133,205,154112,,,0.124,22620,,,,0.069163622,12257.38461,177223,,,29.74617826,161,541246,25.15129683,34.3410597,,,,,,,,,,16.91732503,8.112514923,31.11156306,31.51413668,26.17821942,36.85005393,,,,0.336,,,0.321,0.351,0.089573647,9305,103881,0.076467264,0.10268003,0.035133629,1450,41271,0.024410225,0.045857033,0.001337534,242,180930,,,747.6446281,0.862147291,1527.725,1772,,,0.095460123,778,8150,0.067006302,0.123913943,2.985156432,,,,,,3.052723821,2.503421527,2.881127937,3.061810941,2.76088453,,,,,,2.893553185,2.374940515,2.62836796,2.84015538,0.048066353,,,,,1508.125139,,,,,0.799739819,50410,63033,0.740362134,0.859117504,66312,,,61336.34043,71287.65957,39455,20191,58719,67000,27783.31915,106216.6809,82551,78809.7234,86292.2766,63853,55008.57447,72697.42553,69464,66086.12766,72841.87234,,,,,,0.542211743,14258,26296,,,59.98796725,,,,,0.310290747,,66312,,,7.794457275,81,10392,,,5.633261952,71,1260371,4.399624321,7.105593441,,,,,,,,,,,,,5.394880259,4.05280009,7.039148488,,,,26.10169974,250,901207,22.68317486,29.52022463,27.74057459,,,,,,,,,,9.752920109,4.676904285,17.93596733,27.12127703,23.20687914,31.03567491,,,,17.86493003,161,901207,15.10534073,20.62451934,,,,,,,,,,,,,18.3981012,15.24750006,21.54870235,,,,18.08991162,228,1260371,15.74176564,20.4380576,,,,,,,,,,13.00618942,7.576584628,20.82416918,18.78217572,16.09730705,21.46704438,,,,,,,,,,,0.683208352,92930,136020,,,0.657,,,,,113.4447845,,,,,0.650526671,46257,71107,0.634763364,0.666289978,0.171510491,11844,69057,0.157197146,0.185823837,0.885158986,62941,71107,0.873716625,0.896601346,180930,,,,,0.21462444,38832,180930,,,0.21622727,39122,180930,,,0.011197701,2026,180930,,,0.032426905,5867,180930,,,0.035240148,6376,180930,,,0.002404245,435,180930,,,0.117299508,21223,180930,,,0.773376444,139927,180930,,,0.009584311,1646,171739,0.007018416,0.012150206,0.505703863,91497,180930,,,0.337915512,61553,182155,, -06,091,06091,CA,Sierra County,2024,1,4721.504202,48,8104,2514.002136,8073.915979,1,,,,2,,,,2,,,,2,,,,2,5486.774353,2738.977988,9817.354921,1,,,,2,,0.144,,,0.121,0.166,3.577951357,,,2.891662854,4.319146578,5.482309685,,,4.403397778,6.596462344,0.100558659,18,179,0.056500564,0.144616754,1,,,,,,,,,,,,,0.112781955,0.059021214,0.166542696,,,,,,,0.133,,,0.105,0.163,0.298,,,0.225,0.377,6.4,0.248214636,0.087,,,0.178,,,0.14,0.215,0.070457355,228,3236,,,0.16205796,,,0.126859294,0.198609299,0.125,1,8,0.007330353,0.353459145,0,0,3283,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.067164179,153,2278,0.056440775,0.077887583,,0,3283,,,,0.000621697,2,3217,,,1608.5,0.002486789,8,3217,,,402.125,1644,,,,,,,,,1774,0.41,,,,,,,,,0.41,0.17,,,,,,,,,0.18,0.935526901,2104,2249,0.919060236,0.951993566,0.33970276,160,471,0.116686541,0.562718979,0.041666667,55,1320,,,0.136,71,,0.084765957,0.187234043,,,,,,,,,,,,,0.274096386,0.088540044,0.459652728,4.568628851,127981,28013,1.111733819,8.025523883,0.480295567,195,406,0.093605125,0.866986008,0,0,3283,,,125.0493616,19,15194,75.28788446,195.2800683,,,,,,,,,,,,,135.5445702,78.95970714,217.0199874,,,,5.1,,,,,0,,,,,0.204,255,1250,0.119036596,0.288963405,0.190983607,0.08154038,0.300426833,0.012,0,0.044021282,0.0032,0,0.020717834,0.816611842,993,1216,0.679622988,0.953600696,,,,,,,,,,,,,,,,0.493,,1216,0.294750348,0.691249652,81.6881069,,,78.62358495,84.75262886,,,,,,,,,,,,,80.39367281,77.02038659,83.76695904,,,,281.2794924,48,8104,195.9214726,391.1916831,,,,,,,,,,,,,309.3521389,208.7185891,441.6194137,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.108,,,0.091,0.123,0.167,,,0.144,0.19,0.086,,,0.071,0.1,,,,,,0.087,270,,,,0.248214636,804.2154217,3240,,,,,,,,,,,,,,,,,,,,,,,,,,0.325,,,0.309,0.341,0.074739282,129,1726,0.060441409,0.089037154,0.046471601,27,581,0.032173728,0.060769473,0.001554243,5,3217,,,643.4,,,,,,,,,,,2.74086402,,,,,,,,,,2.667814929,,,,,,,,,,0.025895582,,,,,2285.006,,,,,0.874438416,56250,64327,0.131033888,1.617842944,63939,,,54337.97872,73540.02128,,,,,,,,,,63611,4890.829787,122331.1702,60425,47689.17021,73160.82979,,,,,,0.418604651,162,387,,,,,,,,0.297752545,,63939,,,9.708737864,1,103,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.793018481,1931,2435,,,0.44,,,,,0.614559263,,,,,0.828193833,940,1135,0.763302756,0.893084909,0.214821764,229,1066,0.100389034,0.329254493,0.770044053,874,1135,0.673876712,0.866211393,3217,,,,,0.165682313,533,3217,,,0.317687286,1022,3217,,,0.003730183,12,3217,,,0.026111284,84,3217,,,0.009947156,32,3217,,,0.001865092,6,3217,,,0.131178116,422,3217,,,0.812247436,2613,3217,,,0.007887517,23,2916,0,0.028022867,0.493316755,1587,3217,,,0.987639061,3196,3236,, -06,093,06093,CA,Siskiyou County,2024,1,11921.75491,992,117574,10605.21445,13238.29538,0,14666.1069,8958.439111,22650.61262,1,,,,2,,,,2,8888.174273,6320.360782,12150.42683,,12031.61506,10442.76346,13620.46666,,,,,2,,0.175,,,0.149,0.204,4.077070728,,,3.222795444,4.981963897,6.029028839,,,4.881417093,7.219055726,0.083897158,248,2956,0.073902922,0.093891394,0,,,,0.151898734,0.072750094,0.231047375,,,,0.103825137,0.078308846,0.129341427,0.071834625,0.060329399,0.083339852,,,,0.12437811,0.078754638,0.170001581,0.16,,,0.13,0.197,0.328,,,0.255,0.407,6.8,0.113828909,0.137,,,0.206,,,0.166,0.251,0.762296942,33599,44076,,,0.161235396,,,0.12785841,0.197126508,0.352941177,24,68,0.291210144,0.414240464,224.4,99,44118,,,17.87723465,143,7999,14.94709451,20.8073748,,,,,,,,,,27.14932127,19.56684275,36.69799533,15.56117487,12.33904388,19.36722913,,,,19.31649331,10.28521916,33.03179186,0.074491393,2380,31950,0.063767989,0.085214797,0.000747994,33,44118,,,1336.909091,0.000664224,29,43660,,,1505.517241,0.005245076,229,43660,,,190.6550218,1274,,,,,2318,,,,1253,0.37,,,,,0.36,0.18,0.31,0.37,0.38,0.26,,,,,0.3,0.27,0.24,0.24,0.25,0.905551752,29099,32134,0.893155054,0.91794845,0.618690765,5614,9074,0.557792236,0.679589294,0.057118807,950,16632,,,0.177,1512,,0.116234043,0.237765957,0.206128134,0.120874881,0.291381387,0.56741573,0.482693169,0.652138292,0.361111111,0.323894098,0.398328125,0.210230179,0.13213763,0.288322728,0.195400114,0.132584544,0.258215684,4.951664097,109204,22054,4.438003219,5.465324976,0.254944062,2256,8849,0.200387018,0.309501105,10.87991296,48,44118,,,124.0393814,271,218479,109.271064,138.8076988,,,,,,,,,,72.89135717,45.12089894,111.4221824,136.335141,118.4809624,154.1893196,,,,5.8,,,,,0,,,,,0.171919771,3300,19195,0.153681635,0.190157906,0.142253893,0.123368324,0.161139462,0.033342016,0.024064277,0.042619756,0.008856473,0.004527358,0.013185588,0.754914236,12059,15974,0.729650756,0.780177715,0.765333333,0.634618431,0.896048236,,,,,,,0.731106472,0.651941201,0.810271743,0.766479895,0.733237949,0.79972184,0.242,,15974,0.204700483,0.279299517,74.25327814,,,73.29166877,75.21488751,74.05696245,68.3404133,79.7735116,,,,,,,78.0254268,74.59990209,81.4509515,74.06654279,72.93640762,75.19667796,,,,534.32956,992,117574,495.8126758,572.8464443,673.1069395,468.8436461,936.1288104,,,,,,,405.7284294,313.7903379,516.1860421,537.3427352,492.5301806,582.1552897,,,,77.40337479,30,38758,52.22373193,110.4981304,,,,,,,,,,118.5677022,56.85782187,218.0502258,68.40237698,39.09786864,111.0811748,,,,7.255936676,22,3032,4.547256884,10.98557533,,,,,,,,,,,,,,,,,,,,,,0.125,,,0.108,0.145,0.183,,,0.16,0.21,0.099,,,0.084,0.116,155.6,59,37923,,,0.137,6050,,,,0.113828909,5110.918022,44900,,,25.20969886,33,130902,17.35319672,35.40379006,,,,,,,,,,,,,29.66387758,19.86636437,42.60227638,,,,0.33,,,0.316,0.346,0.090263648,2085,23099,0.075965775,0.10456152,0.034705756,322,9278,0.023982351,0.04542916,0.000939075,41,43660,,,1064.878049,0.866522277,350.075,404,,,,,,,,2.74286095,,,,,,,,2.736965373,2.849694382,2.566561338,,,,,,,,2.489916693,2.645091028,0.128310646,,,,,-3961.209455,,,,,0.777846953,43729,56218,0.663171621,0.892522285,51593,,,46269.42553,56916.57447,44779,32213.55319,57344.44681,53000,15147.57447,90852.42553,39919,8898.574468,70939.42553,49028,35655.91489,62400.08511,55424,51867.40426,58980.59575,,,,,,0.629759439,3953,6277,,,54.16388146,,,,,0.390072297,,51593,,,12.49442213,28,2241,,,7.198104935,22,305636,4.51101404,10.89801738,,,,,,,,,,,,,6.919337819,3.954999418,11.23657112,,,,22.93887461,54,218479,16.6009773,30.89851356,24.71633429,,,,,,,,,,,,,26.09191188,18.17397263,36.28753322,,,,18.76610567,41,218479,13.46688143,25.45834134,,,,,,,,,,,,,21.30236578,14.83787829,29.62643403,,,,26.82930021,82,305636,21.33813866,33.30223571,,,,,,,,,,,,,28.97472712,22.45501554,36.79687922,,,,,,,,,,,0.692900369,23472,33875,,,0.566,,,,,51.33869419,,,,,0.679028133,12744,18768,0.656260605,0.701795661,0.157024793,2831,18029,0.135040162,0.179009425,0.840739557,15779,18768,0.823130132,0.858348982,43660,,,,,0.198946404,8686,43660,,,0.277989006,12137,43660,,,0.013353184,583,43660,,,0.051282639,2239,43660,,,0.01843793,805,43660,,,0.004237288,185,43660,,,0.140975722,6155,43660,,,0.73822721,32231,43660,,,0.013436434,563,41901,0.00850297,0.018369897,0.501442968,21893,43660,,,0.70913876,31256,44076,, -06,095,06095,CA,Solano County,2024,1,6743.548974,5349,1259770,6472.657183,7014.440765,0,,,,2,4107.315337,3552.105033,4662.525642,,10934.37404,9978.929068,11889.81901,,5268.261291,4821.277782,5715.244799,,6781.006379,6320.575509,7241.43725,,12383.14354,9130.352505,16418.25179,,,0.158,,,0.136,0.183,3.665730628,,,2.886592491,4.526549267,5.166664417,,,4.189359,6.18459914,0.071207869,2512,35277,0.068524172,0.073891566,0,,,,0.088689992,0.080742675,0.096637308,0.118128356,0.108012749,0.128243963,0.061316574,0.057095712,0.065537437,0.056091677,0.051569971,0.060613383,0.068322981,0.040765201,0.095880762,0.072207085,0.06139616,0.083018009,0.114,,,0.091,0.139,0.299,,,0.236,0.364,8.7,0.037806112,0.083,,,0.206,,,0.167,0.248,0.967842802,438908,453491,,,0.173531957,,,0.139678483,0.210862085,0.286407767,59,206,0.251154907,0.322298985,523.8,2366,451716,,,12.53710185,1132,90292,11.80675357,13.26745013,,,,2.617359,1.778368455,3.715132177,13.61867704,11.51500491,15.72234918,18.0576029,16.65528508,19.45992073,7.37496089,6.249646634,8.500275147,,,,12.37345332,10.05653229,15.06423544,0.057238793,21138,369295,0.050089857,0.064387729,0.000839023,379,451716,,,1191.862797,0.000976051,438,448747,,,1024.53653,0.004532621,2034,448747,,,220.6229105,2268,,,,,,1557,2728,2200,2384,0.32,,,,,,0.24,0.32,0.29,0.35,0.37,,,,,0.34,0.38,0.27,0.33,0.4,0.888786912,277929,312706,0.882868485,0.894705338,0.645867243,80156,124106,,,0.04205187,8506,202274,,,0.117,11210,,0.088404255,0.145595745,0.162303665,0.002640707,0.321966623,0.058194134,0.031550012,0.084838257,0.237342334,0.190355346,0.284329323,0.135710223,0.109770355,0.16165009,0.064360214,0.048208052,0.080512375,4.021231614,178792,44462,3.849523759,4.192939468,0.243040512,24009,98786,0.22254054,0.263540484,5.180245995,234,451716,,,66.38783182,1486,2238362,63.01235483,69.76330881,,,,32.19631048,26.20667091,38.18595004,102.5594126,91.21539812,113.9034271,44.01164516,38.76185684,49.26143347,84.67400508,78.39678167,90.95122849,83.95865037,47.98962299,136.3435882,9,,,,,1,,,,,0.202923474,30680,151190,0.192741459,0.213105488,0.151908855,0.14254423,0.16127348,0.05555923,0.049714817,0.061403644,0.007077188,0.005353632,0.008800743,0.740568759,155338,209755,0.73018412,0.750953398,0.750266809,0.652299721,0.848233897,0.707175926,0.675928327,0.738423524,0.717460501,0.663617748,0.771303255,0.754064338,0.736011945,0.77211673,0.753416481,0.738727854,0.768105107,0.446,,209755,0.430283176,0.461716824,79.43888802,,,79.16533127,79.71244476,81.34671589,75.91870671,86.77472507,86.03633264,85.1577747,86.91489057,74.91046428,74.13403844,75.68689013,82.84548376,82.04812647,83.64284104,78.3863284,77.99011829,78.78253851,74.5967076,71.59942604,77.59398917,330.6675952,5349,1259770,321.4691503,339.8660401,,,,198.86963,181.3979547,216.3413052,496.5345733,466.14865,526.9204966,253.8153249,235.7653574,271.8652924,351.6377927,336.7146784,366.560907,601.4336802,476.8995037,748.5362764,40.80964491,177,433721,34.79746104,46.82182878,,,,35.45191342,21.01105072,56.02930744,71.33767786,50.22830866,98.32959191,33.38859047,25.28819237,43.25879169,33.24348607,23.40648209,45.82176653,,,,4.723878079,168,35564,4.009546071,5.438210087,,,,,,,7.703777336,5.234342937,10.93489699,5.294021828,4.08581428,6.747665403,3.469545104,2.430026736,4.803312885,,,,,,,0.104,,,0.09,0.12,0.153,,,0.132,0.175,0.102,,,0.087,0.119,349.4,1332,381273,,,0.083,37290,,,,0.037806112,15626.92956,413344,,,20.57500071,277,1346294,18.15198602,22.99801539,,,,6.225099602,3.314603361,10.64510991,30.51954068,23.05413305,39.63216215,13.05601296,9.658910262,17.26074153,27.46312461,22.81311747,32.11313175,,,,0.353,,,0.342,0.364,0.067737645,18283,269909,0.059397219,0.07607807,0.030359059,3169,104384,0.022018633,0.038699484,0.000922569,414,448747,,,1083.929952,0.863825928,4024.565,4659,,,0.066728026,1450,21730,0.049549093,0.083906959,2.758440382,,,,,,3.062246599,2.359712492,2.550370908,3.110891271,2.5761869,,,,,,2.96822214,2.094648235,2.352446453,2.96231101,0.096482722,,,,,-1575.106286,,,,,0.853413341,60018,70327,0.819400496,0.887426185,92711,,,88733.80851,96688.19149,96250,68239.2766,124260.7234,116445,111227.4681,121662.5319,75332,67263.23404,83400.76596,88782,84733.31915,92830.68085,103547,100044.0213,107049.9787,,,,,,0.451769616,27712,61341,,,43.70553475,,,,,0.270701427,,92711,,,5.342000075,143,26769,,,7.801812139,243,3114661,6.820858635,8.782765644,,,,2.527161724,1.30582134,4.41444295,29.762114,24.5858313,34.9383967,6.887240437,5.229770415,8.903355362,2.743561846,1.876594272,3.873090724,,,,12.52741491,289,2238362,11.04928923,14.00554058,12.91122705,,,,8.819859669,5.860732698,12.74715291,7.410506177,4.697625235,11.11939779,6.337059104,4.3621399,8.899587075,19.0732086,16.04699347,22.09942373,,,,11.74966337,263,2238362,10.32961342,13.16971332,,,,3.190625363,1.592748685,5.708910115,32.66223331,26.26043558,39.06403104,7.498280286,5.489683574,10.00165512,10.90223241,8.766682309,13.40069457,,,,10.81979708,337,3114661,9.664588952,11.97500521,,,,5.475517068,3.576789539,8.022901157,17.57605158,13.82467952,22.03173285,9.499641982,7.532625284,11.82312676,11.91734677,9.936147096,13.89854644,,,,,,,,,,,0.657522915,205877,313110,,,0.707,,,,,327.261055,,,,,0.630323834,97692,154987,0.621749445,0.638898223,0.170546017,25806,151314,0.160833294,0.18025874,0.928677889,143933,154987,0.923028081,0.934327698,448747,,,,,0.216505069,97156,448747,,,0.176458004,79185,448747,,,0.132319548,59378,448747,,,0.013083096,5871,448747,,,0.174004506,78084,448747,,,0.010943806,4911,448747,,,0.291025901,130597,448747,,,0.344082523,154406,448747,,,0.048897655,20775,424867,,,0.500337607,224525,448747,,,0.044563178,20209,453491,, -06,097,06097,CA,Sonoma County,2024,1,5764.361748,5300,1349541,5512.115876,6016.60762,0,10495.54738,7268.471665,14666.47546,,2288.274208,1675.86195,2900.686466,,8736.649202,6432.075354,11041.22305,,4905.440427,4491.194633,5319.686221,,6109.120227,5750.861178,6467.379277,,12364.79632,7067.549459,20079.65457,1,,0.14,,,0.117,0.165,3.35174334,,,2.602018816,4.11526909,5.053640283,,,4.119460929,5.988653565,0.059033989,1881,31863,0.05644607,0.061621909,0,0.113636364,0.071698205,0.155574523,0.078800558,0.064855415,0.092745701,0.087557604,0.060965,0.114150208,0.061039386,0.056797787,0.065280985,0.052418187,0.048701319,0.056135055,,,,0.056561086,0.041332987,0.071789185,0.11,,,0.084,0.138,0.286,,,0.228,0.35,8.8,0.025819329,0.083,,,0.167,,,0.134,0.205,0.933762629,456482,488863,,,0.208393078,,,0.170254194,0.251805429,0.341708543,68,199,0.306450994,0.377018018,332.2,1614,485887,,,8.569699573,878,102454,8.002841402,9.136557743,,,,,,,7.647058824,4.071736759,13.07670348,15.17999477,14.00207054,16.35791899,2.667438639,2.20712308,3.127754197,,,,5.35372849,3.557513701,7.737628287,0.076804041,29283,381269,0.068463616,0.085144467,0.001016697,494,485887,,,983.5769231,0.000980006,473,482650,,,1020.401691,0.005575469,2691,482650,,,179.3571163,1526,,,,,1376,958,2993,1394,1512,0.41,,,,,0.23,0.37,0.38,0.33,0.43,0.46,,,,,0.16,0.41,0.29,0.29,0.48,0.892377364,316661,354851,0.886547611,0.898207117,0.685566346,85135,124182,0.664818441,0.706314251,0.031287634,7768,248277,,,0.094,8295,,0.065404255,0.122595745,0.172,0.046875653,0.297124347,0.118141244,0.061110421,0.175172068,0.188405797,0.038121229,0.338690365,0.143202875,0.120317355,0.166088394,0.056897173,0.042990042,0.070804305,4.36234048,186983,42863,4.189662219,4.535018742,0.212334472,19883,93640,0.191715182,0.232953763,7.120997269,346,485887,,,63.69733098,1576,2474201,60.55248631,66.84217565,85.86639189,48.05876772,141.6235553,28.21139741,19.03411136,40.27352398,85.02550765,58.88263575,118.8146246,37.3653047,32.77006954,41.96053986,75.31509178,70.99575905,79.6344245,,,,5.7,,,,,1,,,,,0.219702583,41515,188960,0.210693592,0.228711573,0.171954281,0.162566294,0.181342268,0.050275191,0.045458531,0.05509185,0.010663633,0.007708927,0.013618338,0.721253852,174617,242102,0.711863088,0.730644616,0.724356583,0.660509525,0.788203642,0.724497394,0.68023867,0.768756118,0.688700999,0.630541852,0.746860147,0.713732072,0.692490658,0.734973486,0.72677552,0.714534457,0.739016583,0.32,,242102,0.307732866,0.332267134,81.14083213,,,80.88693639,81.39472787,79.32391792,74.04757369,84.60026215,87.47214685,85.98015076,88.96414294,78.1042516,75.58359155,80.62491165,84.32426191,83.41009286,85.23843096,80.66542265,80.34630911,80.98453618,,,,272.5721534,5300,1349541,264.7046313,280.4396755,477.1442189,357.4137622,624.1163862,133.6904748,108.6116338,158.7693159,397.1676625,320.6522412,473.6830839,231.3897491,214.6752489,248.1042492,283.1433542,272.9959434,293.2907649,473.7157216,303.5186014,704.8514438,32.92792288,141,428208,27.49278143,38.36306433,,,,,,,,,,31.06438361,23.58848887,40.15791941,32.45750423,24.88498238,41.60905558,,,,3.208193232,104,32417,2.591598344,3.82478812,,,,,,,,,,3.52603526,2.551809202,4.749546356,3.20034137,2.334350956,4.282308548,,,,,,,0.1,,,0.084,0.116,0.154,,,0.131,0.177,0.084,,,0.071,0.099,332.9,1406,422316,,,0.083,41080,,,,0.025819329,12493.40541,483878,,,27.55023326,405,1470042,24.86702835,30.23343817,,,,,,,49.79459729,25.72959504,86.9811405,14.46447134,11.01102576,18.65811417,32.56389298,28.86659666,36.2611893,,,,0.294,,,0.281,0.307,0.090014596,25963,288431,0.079291192,0.100738001,0.038916779,3814,98004,0.029384864,0.048448694,0.000861908,416,482650,,,1160.216346,0.853843991,4099.305,4801,,,0.055671829,1330,23890,0.040967543,0.070376116,2.971439214,,,,,,3.242468842,2.789319324,2.635700482,3.308505962,2.756443069,,,,,,3.084635883,2.382889998,2.432008254,3.060388385,0.141964548,,,,,-2831.882214,,,,,0.889264383,64469,72497,0.850347851,0.928180916,96312,,,91973.78723,100650.2128,78148,58484.85106,97811.14894,105133,89779.46809,120486.5319,86453,68523.46809,104382.5319,85582,82435.2766,88728.7234,104579,101851.6809,107306.3192,,,,,,0.4065447,25866,63624,,,54.34153291,,,,,0.292756874,,96312,,,7.936172907,188,23689,,,2.270495316,79,3479417,1.797572523,2.829714609,,,,,,,,,,2.961117357,1.967640979,4.279639034,1.82168525,1.301438651,2.480618269,,,,13.86415289,370,2474201,12.39010596,15.33819983,14.95432263,,,,7.99502469,3.655834392,15.17704727,,,,6.801779073,4.979757148,9.072620105,16.74198129,14.61862552,18.86533705,,,,7.355910049,182,2474201,6.287207643,8.424612456,,,,,,,,,,4.707439962,3.219885449,6.645500655,8.83404758,7.354750085,10.31334508,,,,9.081981263,316,3479417,8.080614594,10.08334793,,,,7.474247819,3.731117582,13.37349395,,,,9.094860452,7.27471441,11.23207867,9.153968382,7.888452935,10.41948383,,,,,,,,,,,0.751514557,268317,357035,,,0.69,,,,,246.0021512,,,,,0.616499607,116921,189653,0.609114249,0.623884965,0.183140619,33879,184989,0.173552621,0.192728618,0.934301066,177193,189653,0.92940579,0.939196341,482650,,,,,0.186775096,90147,482650,,,0.218804517,105606,482650,,,0.016859008,8137,482650,,,0.022683104,10948,482650,,,0.049897441,24083,482650,,,0.004350979,2100,482650,,,0.288600435,139293,482650,,,0.60637522,292667,482650,,,0.05461786,25428,465562,0.05048766,0.058748059,0.50732622,244861,482650,,,0.136322446,66643,488863,, -06,099,06099,CA,Stanislaus County,2024,1,8878.296334,7739,1563260,8605.112249,9151.480419,0,16228.7789,9912.959763,25064.03278,1,5879.785422,4924.567922,6835.002923,,15794.28522,13586.36556,18002.20487,,7495.6633,7135.34525,7855.98135,,10171.88097,9684.928541,10658.83341,,7282.942624,4981.527364,10281.34196,,,0.201,,,0.174,0.231,4.173758396,,,3.372406745,5.142161823,5.48706025,,,4.520410231,6.616942576,0.065778502,3392,51567,0.06363888,0.067918124,0,0.095238095,0.043982262,0.146493929,0.092262986,0.081452462,0.10307351,0.089409722,0.072932511,0.105886934,0.062252249,0.059471926,0.065032572,0.061281684,0.05757183,0.064991538,0.057692308,0.029350684,0.086033931,0.079096045,0.064067914,0.094124176,0.144,,,0.117,0.175,0.348,,,0.285,0.422,8.2,0.033693721,0.11,,,0.235,,,0.195,0.282,0.936608076,517830,552878,,,0.176977156,,,0.143719561,0.21757132,0.312796209,132,422,0.288595415,0.337179208,434.4,2402,552999,,,18.71759851,2549,136182,17.9909552,19.44424182,,,,5.750903713,4.00571515,7.998114914,18.50193972,14.18533109,23.71865171,22.05536173,21.04401289,23.06671058,12.5062269,11.38389014,13.62856365,12.64222503,6.062438301,23.24950195,20.47629646,16.50678495,25.11235989,0.086366188,41085,475707,0.078025762,0.094706613,0.000654612,362,552999,,,1527.621547,0.000707451,390,551275,,,1413.525641,0.002610313,1439,551275,,,383.0958999,2950,,,,,516,2617,2957,3022,2913,0.35,,,,,0.37,0.27,0.32,0.27,0.39,0.4,,,,,0.33,0.44,0.28,0.34,0.42,0.803296406,281704,350685,0.796234918,0.810357893,0.542201148,81874,151003,0.524067411,0.560334885,0.054239793,13141,242276,,,0.185,26509,,0.155212766,0.214787234,0.115186615,0.049135547,0.181237683,0.199631166,0.151886074,0.247376259,0.194717887,0.124761491,0.264674284,0.213190184,0.195372535,0.231007833,0.120333681,0.097737003,0.142930359,4.329264918,140818,32527,4.165356361,4.493173476,0.227129551,33602,147942,0.207754263,0.246504839,5.55154711,307,552999,,,65.7107115,1808,2751454,62.68175506,68.73966794,100.8863587,55.15551111,169.2701673,40.76096036,31.17890491,52.3591588,111.8915057,89.1209597,138.706356,44.83768985,41.21658039,48.4587993,91.00078246,85.37734063,96.6242243,60.59381943,31.30971071,105.8452083,10.6,,,,,1,,,,,0.232403832,40630,174825,0.221020572,0.243787092,0.167576151,0.156790192,0.178362111,0.071156871,0.064440644,0.077873098,0.008723009,0.006507267,0.01093875,0.796322526,182717,229451,0.788264872,0.804380181,0.794323144,0.762738853,0.825907435,0.791290599,0.756409584,0.826171614,0.751386498,0.684415445,0.818357552,0.792044108,0.77295433,0.811133886,0.816476733,0.807059942,0.825893524,0.373,,229451,0.359156145,0.386843855,75.9651287,,,75.72675552,76.20350187,70.49734403,65.7688876,75.22580047,80.70525561,79.58456797,81.82594326,69.72481608,68.2664115,71.18322065,78.77136212,78.28962286,79.25310138,74.48930289,74.12587187,74.85273392,77.49535435,75.0415028,79.94920591,449.853611,7739,1563260,439.6704758,460.0367462,638.0120434,480.6379856,830.4603719,284.3157362,250.9686048,317.6628675,774.7735954,694.2897591,855.2574317,369.2505196,353.9121073,384.5889319,511.4614215,495.4294987,527.4933443,421.0891065,319.7506129,544.3553174,44.55577434,291,653114,39.43643907,49.6751096,,,,,,,66.97515831,33.43375772,119.8370587,41.01660413,34.70036934,47.33283892,45.89667166,36.55644279,56.89582993,,,,4.903369151,256,52209,4.30270643,5.504031872,,,,,,,,,,4.779753103,3.985142904,5.574363303,4.829459704,3.829461189,6.01068065,,,,,,,0.127,,,0.11,0.145,0.167,,,0.145,0.193,0.116,,,0.1,0.135,189.7,851,448541,,,0.11,60680,,,,0.033693721,17333.83564,514453,,,22.79681207,377,1653740,20.49558479,25.09803936,,,,11.01188182,5.280625361,20.25124274,55.30606376,35.79116839,81.64266022,12.97539541,10.4816047,15.46918612,34.47278189,29.95829503,38.98726876,,,,0.328,,,0.317,0.34,0.109324212,35988,329186,0.097409318,0.121239106,0.036634523,5653,154308,0.027102608,0.046166438,0.000778196,429,551275,,,1285.02331,0.862035679,6934.215,8044,,,0.076235671,2474,32452,0.058489806,0.093981536,2.696782368,,,,,,3.057682829,2.515701177,2.536368262,3.044297296,2.513749293,,,,,,2.910103025,2.113611504,2.367422566,2.842374816,0.09881775,,,,,-5667.661845,,,,,0.850621777,50481,59346,0.820200923,0.881042632,75249,,,72174.95745,78323.04255,68816,44214.12766,93417.87234,74854,67176.04255,82531.95745,66096,49524.76596,82667.23404,67929,65778.3617,70079.6383,81938,79051.02128,84824.97872,,,,,,0.66243308,70777,106844,,,47.76360896,,,,,0.287990538,,75249,,,4.331124803,168,38789,,,3.836715646,147,3831402,3.216479579,4.456951713,,,,,,,12.73685654,6.781839683,21.78041259,3.330291667,2.541363385,4.286745517,3.881582464,2.969103021,4.98605506,,,,11.10297973,302,2751454,9.83403604,12.37192343,10.97601486,,,,8.952150425,4.894223941,15.02018727,,,,6.677525783,5.278307031,8.333854382,16.1660282,13.73777496,18.59428144,,,,7.595983796,209,2751454,6.566150432,8.625817161,,,,,,,,,,4.491381496,3.419047692,5.793554895,11.39771232,9.407550041,13.38787459,,,,16.41696695,629,3831402,15.13397576,17.69995813,,,,9.690814561,5.919401294,14.96667712,25.47371309,16.64027513,37.32489182,15.76338056,13.93002685,17.59673427,17.62620234,15.55045286,19.70195182,,,,,,,,,,,0.625266159,214954,343780,,,0.693,,,,,206.0629972,,,,,0.60518245,106359,175747,0.594476183,0.615888717,0.178076155,30305,170180,0.167825663,0.188326647,0.896817584,157613,175747,0.889013326,0.904621843,551275,,,,,0.264646501,145893,551275,,,0.138315723,76250,551275,,,0.027389234,15099,551275,,,0.021441205,11820,551275,,,0.065751213,36247,551275,,,0.009590495,5287,551275,,,0.503211646,277408,551275,,,0.370076641,204014,551275,,,0.090565062,46571,514227,,,0.500205886,275751,551275,,,0.081705186,45173,552878,, -06,101,06101,CA,Sutter County,2024,1,8068.668322,1259,272059,7430.171922,8707.164723,0,,,,2,6188.028177,4660.576989,7715.479366,,11205.14415,6746.22875,17498.2206,1,6332.823549,5333.634622,7332.012476,,10456.10909,9286.063823,11626.15435,,,,,2,,0.187,,,0.16,0.218,3.851730982,,,3.080080653,4.719054688,5.404615485,,,4.389717872,6.523390426,0.069540556,613,8815,0.064230333,0.074850778,0,,,,0.097912167,0.082282573,0.113541761,0.079710145,0.034520842,0.124899448,0.073331244,0.064286434,0.082376054,0.052581262,0.04477189,0.060390634,,,,0.103942652,0.068131461,0.139753844,0.144,,,0.115,0.176,0.316,,,0.246,0.392,7.5,0.081368429,0.117,,,0.237,,,0.194,0.286,0.819939177,81693,99633,,,0.161426797,,,0.128512218,0.199286348,0.289719626,31,107,0.240200895,0.340313379,213,211,99063,,,15.63389534,357,22835,14.01212571,17.25566497,,,,,,,,,,18.27028101,15.63035115,20.91021086,14.07022436,11.45267064,16.68777809,,,,18.36734694,10.88565386,29.0283268,0.08705942,7210,82817,0.075144527,0.098974314,0.000757094,75,99063,,,1320.84,0.000852766,84,98503,,,1172.654762,0.004050638,399,98503,,,246.8746867,2913,,,,,3924,2529,,2309,3143,0.35,,,,,0.35,0.27,0.43,0.27,0.39,0.46,,,,,0.42,0.48,0.32,0.41,0.47,0.795540578,51699,64986,0.780064951,0.811016205,0.59503405,15553,26138,0.554386684,0.635681417,0.065531309,3036,46329,,,0.18,4365,,0.132340426,0.227659575,0.055016181,0,0.124539206,0.10860077,0.051056166,0.166145374,0.513846154,0.022029395,1,0.246958749,0.189111399,0.304806099,0.126533742,0.080565044,0.17250244,4.309561271,142431,33050,3.827711823,4.791410719,0.251823949,6351,25220,0.214046978,0.289600921,5.854860039,58,99063,,,72.65258071,353,485874,65.07344359,80.23171783,,,,50.96523177,36.57353024,69.1400917,105.8201058,52.82501556,189.3413998,47.10953936,36.92635871,59.23317298,101.2322729,87.8551191,114.6094266,,,,8.5,,,,,1,,,,,0.192419825,6270,32585,0.172813818,0.212025833,0.129992242,0.11446683,0.145517654,0.063219273,0.051091576,0.075346969,0.012122142,0.007034391,0.017209893,0.765317116,31965,41767,0.748613987,0.782020246,,,,0.745486656,0.673154947,0.817818366,,,,0.777075578,0.754584744,0.799566412,0.802665014,0.772267177,0.833062851,0.358,,41767,0.326611548,0.389388453,77.54548747,,,76.9616423,78.12933265,,,,83.28921541,81.318305,85.26012582,78.41529378,72.1213381,84.70924945,81.06941457,79.47513271,82.66369642,74.69704668,73.82904762,75.56504575,,,,392.5905985,1259,272059,370.3211383,414.8600587,,,,276.4283138,230.6159571,322.2406706,480.5175483,319.3004212,694.4816461,301.5062968,261.1370443,341.8755492,490.5273605,454.5934435,526.4612775,,,,48.45802895,53,109373,36.29838894,63.38429496,,,,,,,,,,41.78854994,25.52553194,64.53902612,59.47392609,37.27199284,90.04423883,,,,5.267286787,47,8923,3.87020421,7.0043748,,,,,,,,,,6.616257089,4.095567418,10.11365178,,,,,,,,,,0.119,,,0.102,0.137,0.167,,,0.144,0.192,0.11,,,0.094,0.128,152.4,124,81376,,,0.117,11550,,,,0.081368429,7708.600816,94737,,,20.17652752,59,292419,15.35930758,26.02625047,,,,,,,,,,14.82532589,8.105143622,24.87437773,30.99693905,22.14466771,42.20903326,,,,0.341,,,0.33,0.352,0.107736717,6233,57854,0.092247355,0.123226078,0.041397154,1088,26282,0.02948226,0.053312048,0.00102535,101,98503,,,975.2772277,0.851943277,1216.575,1428,,,0.097457627,529,5428,0.060505741,0.134409513,2.766643056,,,,,,3.058416947,2.598555289,2.534347447,2.910440807,2.528529305,,,,,,2.800190357,2.054889122,2.34285549,2.625992527,0.121923374,,,,,-5085.199755,,,,,0.842471962,47400,56263,0.77767677,0.907267154,66071,,,58706.40426,73435.59575,67500,61406.7234,73593.2766,83182,70437.82979,95926.17021,71332,39297.61702,103366.383,61155,55149.89362,67160.10638,80291,74525.38298,86056.61702,,,,,,0.621348609,14209,22868,,,38.29946785,,,,,0.33635029,,66071,,,6.948733786,45,6476,,,5.007452267,34,678988,3.467806262,6.997412634,,,,,,,,,,7.490882192,4.28168641,12.16472338,4.220724406,2.247357986,7.217567278,,,,11.02865588,55,485874,8.261220054,14.42575343,11.31980719,,,,,,,,,,,,,17.00411852,11.90947557,23.5408675,,,,9.467475107,46,485874,6.931381677,12.62828505,,,,,,,,,,6.453361556,3.094637706,11.86796167,13.80440084,9.31377128,19.70664056,,,,18.26247297,124,678988,15.04803674,21.47690921,,,,16.99341729,10.23114729,26.53732611,,,,15.44994452,10.63503091,21.69746634,22.07763536,17.14414772,27.98866351,,,,,,,,,,,0.686533044,42644,62115,,,0.696,,,,,156.6941547,,,,,0.595623619,19680,33041,0.573558623,0.617688616,0.143468884,4590,31993,0.125657072,0.161280695,0.87476166,28903,33041,0.860150427,0.889372892,98503,,,,,0.249769043,24603,98503,,,0.164553364,16209,98503,,,0.021268388,2095,98503,,,0.023826686,2347,98503,,,0.182055369,17933,98503,,,0.004416109,435,98503,,,0.332548247,32757,98503,,,0.423012497,41668,98503,,,0.096400086,8944,92780,0.085560814,0.107239358,0.499761429,49228,98503,,,0.150652896,15010,99633,, -06,103,06103,CA,Tehama County,2024,1,10873.84486,1215,178422,9921.069789,11826.61992,0,15742.0634,8997.9494,25564.12472,1,,,,2,,,,2,7634.268242,6112.250844,9156.285639,,12006.09443,10719.03007,13293.15878,,,,,2,,0.193,,,0.166,0.226,4.347928698,,,3.407205437,5.301842919,5.99007005,,,4.821304342,7.185669045,0.063226052,332,5251,0.056643406,0.069808698,0,,,,,,,,,,0.061394892,0.050967523,0.071822261,0.062045061,0.05324212,0.070848001,,,,,,,0.16,,,0.127,0.196,0.342,,,0.266,0.427,7,0.099667804,0.134,,,0.23,,,0.187,0.278,0.583967552,38442,65829,,,0.164060653,,,0.12973579,0.203917902,0.367816092,32,87,0.314105881,0.420955112,305.4,200,65498,,,22.75730436,310,13622,20.22394942,25.29065931,,,,,,,,,,31.37632339,26.55946009,36.19318669,16.86157193,13.89371277,19.8294311,,,,26.21722846,14.33320277,43.98805454,0.076517812,3965,51818,0.065794408,0.087241217,0.000534368,35,65498,,,1871.371429,0.000628401,41,65245,,,1591.341463,0.002099778,137,65245,,,476.2408759,2729,,,,,2970,,,3064,2700,0.36,,,,,0.24,0.29,,0.26,0.37,0.28,,,,,0.22,0.16,0.11,0.29,0.28,0.870826479,39175,44986,0.855192685,0.886460274,0.604075878,9426,15604,0.544240604,0.663911152,0.048494269,1248,25735,,,0.193,2922,,0.127468085,0.258531915,,,,0.037783375,0,0.261778014,0.176724138,0,0.602224286,0.309350238,0.228184869,0.390515607,0.180846854,0.123862182,0.237831526,4.659942135,117575,25231,4.012969846,5.306914423,0.26214908,4062,15495,0.2016953,0.322602861,4.580292528,30,65498,,,107.4576208,347,322918,96.15111125,118.7641304,,,,,,,,,,60.4695281,45.0235355,79.50626201,129.888139,114.7011246,145.0751535,,,,5.4,,,,,0,,,,,0.224249797,5530,24660,0.19129164,0.257207954,0.176652893,0.148273522,0.205032263,0.041565288,0.027945456,0.05518512,0.021695053,0.010230474,0.033159631,0.80269692,19882,24769,0.768967243,0.836426596,,,,,,,,,,0.779091769,0.72924599,0.828937549,0.788416825,0.75100207,0.82583158,0.324,,24769,0.280957705,0.367042296,75.0302498,,,74.28738265,75.77311696,,,,,,,,,,81.29991922,78.85658566,83.74325278,73.95457959,73.02174499,74.88741419,,,,509.3784433,1215,178422,478.6852752,540.0716113,772.6895883,521.3304205,1103.062433,,,,,,,333.094369,274.4974154,391.6913226,550.5376614,512.1851168,588.890206,,,,51.90414047,35,67432,36.15313561,72.18609469,,,,,,,,,,37.02469547,17.75478061,68.08973321,65.91957812,41.78735788,98.91173338,,,,5.661445556,30,5299,3.819753542,8.082065559,,,,,,,,,,,,,,,,,,,,,,0.13,,,0.112,0.151,0.182,,,0.157,0.209,0.107,,,0.091,0.125,82.5,45,54559,,,0.134,8750,,,,0.099667804,6325.217844,63463,,,16.91648383,33,195076,11.64452909,23.75703278,,,,,,,,,,,,,19.27480475,12.47363735,28.45341411,,,,0.339,,,0.324,0.352,0.093623093,3412,36444,0.078133731,0.109112455,0.037447388,605,16156,0.025532494,0.049362282,0.000705035,46,65245,,,1418.369565,0.863018135,666.25,772,,,,,,,,2.623942785,,,,,,,,2.405563632,2.82423198,2.475853203,,,,,,,,2.343205865,2.601484956,0.098792949,,,,,-5223.252562,,,,,0.873248794,44692,51179,0.794884544,0.951613043,58900,,,53195.14894,64604.85106,,,,59357,18886.87234,99827.12766,56046,30903.19149,81188.80851,55893,41573.68085,70212.31915,61336,57093.10638,65578.89362,,,,,,0.660462595,7310,11068,,,71.86335801,,,,,0.328285229,,58900,,,9.188763455,35,3809,,,6.229115777,28,449502,4.139202196,9.002806649,,,,,,,,,,,,,5.933387833,3.516501668,9.377310813,,,,21.55863899,73,322918,16.67344983,27.42787472,22.60635827,,,,,,,,,,,,,26.14511177,19.58448283,34.19844993,,,,20.74830143,67,322918,16.07964862,26.34960938,,,,,,,,,,15.41380128,8.207200013,26.35806962,24.49847462,18.35103861,32.04460799,,,,21.5794368,97,449502,17.49946954,26.32508285,,,,,,,,,,16.45677066,9.908050968,25.69928593,24.7224493,19.44577467,30.98980428,,,,,,,,,,,0.61853606,28731,46450,,,0.628,,,,,50.34526261,,,,,0.670917435,16520,24623,0.643630979,0.69820389,0.162908226,3836,23547,0.139053567,0.186762885,0.832392479,20496,24623,0.80275262,0.862032337,65245,,,,,0.237029657,15465,65245,,,0.204184229,13322,65245,,,0.008276496,540,65245,,,0.034117557,2226,65245,,,0.016108514,1051,65245,,,0.002728178,178,65245,,,0.28399111,18529,65245,,,0.644217948,42032,65245,,,0.035016933,2161,61713,0.025568645,0.044465221,0.500222239,32637,65245,,,0.570326148,37544,65829,, -06,105,06105,CA,Trinity County,2024,1,15509.46535,315,36267,12257.75101,18761.1797,0,,,,2,,,,2,,,,2,,,,2,16376.97427,12469.00233,20284.94622,,,,,2,,0.191,,,0.164,0.218,4.352963151,,,3.440551819,5.394082677,6.124920602,,,4.933538114,7.412744031,0.063576159,48,755,0.046171482,0.080980836,0,,,,,,,,,,,,,0.063793103,0.043904016,0.083682191,,,,,,,0.18,,,0.143,0.217,0.33,,,0.252,0.418,6.9,0.076658139,0.147,,,0.226,,,0.181,0.273,0.890640516,14350,16112,,,0.148854465,,,0.116358138,0.186021434,0.428571429,18,42,0.352427288,0.501089641,74.7,12,16060,,,25.74257426,52,2020,19.22578574,33.75796126,,,,,,,,,,36.42384106,18.18265022,65.17231296,24.30555556,16.92971,33.80314401,,,,,,,0.066862274,752,11247,0.054947381,0.078777168,0.0001868,3,16060,,,5353.333333,0.000316837,5,15781,,,3156.2,0.003231734,51,15781,,,309.4313726,1598,,,,,3188,,,1175,1557,0.36,,,,,0.24,0.36,,0.36,0.37,0.31,,,,,0.19,0.32,0.18,0.26,0.32,0.95252131,11957,12553,0.92715392,0.9778887,0.484239802,1567,3236,0.364587412,0.603892193,0.045931759,210,4572,,,0.244,650,,0.147489362,0.340510638,,,,0.492146597,0.200042113,0.784251081,,,,,,,0.319192964,0.193625038,0.444760891,4.985801903,103241,20707,3.827306532,6.144297273,0.367166474,955,2601,0.182123522,0.552209427,5.603985056,9,16060,,,176.2783983,116,65805,144.1990031,208.3577936,,,,,,,,,,,,,188.4222898,151.6748014,225.1697782,,,,5.3,,,,,0,,,,,0.214588634,1265,5895,0.159289264,0.269888005,0.160621762,0.110300767,0.210942757,0.04495335,0.01967731,0.070229391,0.018659881,0.00489197,0.032427793,0.636591963,3295,5176,0.574416314,0.698767612,,,,,,,,,,,,,0.637810465,0.588751222,0.686869709,0.355,,5176,0.252955353,0.457044647,73.92734849,,,71.51997213,76.33472485,,,,,,,,,,,,,73.04275785,70.29356252,75.79195318,,,,554.9236894,315,36267,480.3447389,629.50264,,,,,,,,,,,,,573.0694804,486.963407,659.1755537,,,,169.1710618,17,10049,98.54837765,270.8592578,,,,,,,,,,,,,192.0175559,104.9777846,322.1728312,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.135,,,0.117,0.154,0.192,,,0.166,0.22,0.107,,,0.091,0.125,92.3,13,14089,,,0.147,2320,,,,0.076658139,1056.809104,13786,,,32.05049185,13,40561,17.06553707,54.80731717,,,,,,,,,,,,,36.49080128,18.85532951,63.7420862,,,,0.344,,,0.328,0.356,0.078380298,662,8446,0.064082426,0.092678171,0.033424284,98,2932,0.02150939,0.045339177,0.00095051,15,15781,,,1052.066667,0.841869919,103.55,123,,,,,,,,2.796335683,,,,,,,,,2.828196873,2.50596446,,,,,,,,,2.715495689,0.084121222,,,,,-2208.701,,,,,1.294102695,61092,47208,0.982669158,1.605536231,49485,,,42106.10638,56863.89362,142741,40538.61702,244943.383,,,,,,,43631,37858.23404,49403.76596,48824,42226.7234,55421.2766,,,,,,0.650627615,933,1434,,,,,,,,0.384722643,,49485,,,8.26446281,5,605,,,,,,,,,,,,,,,,,,,,,,,,,,37.63316685,27,65805,22.987316,58.12137397,41.03031685,,,,,,,,,,,,,41.66375748,24.27067409,66.70771175,,,,31.91246866,21,65805,19.75432108,48.78159826,,,,,,,,,,,,,35.44577729,21.3406734,55.35297198,,,,46.91455006,43,91656,33.9522925,63.19359105,,,,,,,,,,,,,42.69342121,29.2022685,60.27037221,,,,,,,,,,,0.610038986,6259,10260,,,0.302,,,,,11.74335134,,,,,0.708188948,3883,5483,0.645967362,0.770410534,0.132492726,683,5155,0.083593809,0.181391642,0.783512676,4296,5483,0.731649046,0.835376305,15781,,,,,0.173753248,2742,15781,,,0.30593752,4828,15781,,,0.004752551,75,15781,,,0.051327546,810,15781,,,0.026550916,419,15781,,,0.002281224,36,15781,,,0.077181421,1218,15781,,,0.805082061,12705,15781,,,0.02847254,436,15313,0.008687709,0.04825737,0.484570053,7647,15781,,,1,16112,16112,, -06,107,06107,CA,Tulare County,2024,1,8610.608967,5927,1345407,8320.251369,8900.966566,0,15039.78857,10792.81194,20403.17144,,6480.977466,5191.484596,7770.470336,,14811.24066,11420.64852,18201.8328,,7893.384405,7543.12783,8243.64098,,9781.504984,9169.980254,10393.02971,,,,,2,,0.243,,,0.209,0.283,4.592916655,,,3.689267372,5.610591214,5.302862502,,,4.311670953,6.41072572,0.071087092,3420,48110,0.068790831,0.073383353,0,0.076219512,0.047502674,0.104936351,0.089149965,0.074467269,0.103832662,0.13618677,0.106534913,0.165838628,0.069457458,0.066717979,0.072196938,0.068333049,0.063765313,0.072900785,,,,0.081836327,0.057833062,0.105839593,0.147,,,0.119,0.18,0.355,,,0.29,0.428,7.5,0.049164119,0.136,,,0.282,,,0.234,0.337,0.721079564,341155,473117,,,0.15850881,,,0.127281995,0.195716477,0.369346734,147,398,0.34513275,0.39348905,611.9,2919,477054,,,25.10251792,3275,130465,24.24277679,25.96225905,48.58757062,35.16306578,65.44713877,8.471704507,5.482440477,12.50590705,22.79202279,15.58972672,32.17553567,25.56478008,24.57484077,26.55471938,24.27974489,22.25425233,26.30523744,,,,19.83394834,14.35392676,26.71619825,0.103191297,42731,414095,0.093659382,0.112723212,0.00046326,221,477054,,,2158.615385,0.000571675,273,477544,,,1749.245421,0.003224834,1540,477544,,,310.0935065,2324,,,,,1357,1147,5522,2673,2040,0.35,,,,,0.26,0.25,0.32,0.31,0.38,0.4,,,,,0.26,0.42,0.3,0.36,0.43,0.7349374,206452,280911,0.726362886,0.743511914,0.513646284,65663,127837,0.492413911,0.534878657,0.081665213,16943,207469,,,0.243,33866,,0.207255319,0.278744681,0.286855037,0.149515806,0.424194267,0.161687171,0.09593789,0.227436451,0.323216995,0.212826268,0.433607723,0.274669786,0.257090665,0.292248906,0.150776716,0.117811212,0.18374222,4.436694708,124995,28173,4.21259716,4.660792256,0.249098686,35583,142847,0.229022276,0.269175096,4.59067527,219,477054,,,63.61315008,1490,2342283,60.38309566,66.8432045,117.0166903,70.4516916,182.736057,30.85150144,19.76713911,45.90458864,132.1809863,93.99360274,180.6957596,50.2058962,46.6642747,53.7475177,95.49573292,87.95437278,103.0370931,,,,12.9,,,,,1,,,,,0.260706965,36250,139045,0.246369576,0.275044355,0.17290585,0.160900404,0.184911295,0.102161171,0.093569419,0.110752923,0.008450502,0.006107437,0.010793566,0.776297259,143320,184620,0.768613331,0.783981187,0.714898596,0.696013412,0.73378378,0.808779315,0.756238605,0.861320024,0.79609446,0.669669366,0.922519553,0.768647203,0.755982005,0.781312401,0.798803395,0.792723032,0.804883758,0.276,,184620,0.261504906,0.290495094,76.18562066,,,75.91734968,76.45389165,72.11218374,68.47927437,75.74509312,80.40323597,78.87029144,81.9361805,72.04293108,69.27772693,74.80813524,77.69324512,77.26967966,78.11681059,74.70585796,74.24307626,75.16863967,,,,440.9895167,5927,1345407,429.6554426,452.3235908,706.5698,552.8473526,889.8077263,344.7096884,293.6021427,395.817234,668.7793907,550.057366,787.5014154,394.715488,379.8429099,409.5880661,502.8991811,482.3372807,523.4610816,,,,47.21849561,296,626873,41.83923777,52.59775346,,,,,,,,,,48.07052008,41.87141637,54.26962379,50.27932961,37.77137986,65.60361862,,,,5.704787507,278,48731,5.034172688,6.375402325,,,,,,,,,,6.275652846,5.428866679,7.122439014,4.433455538,3.311116651,5.813887095,,,,,,,0.145,,,0.125,0.168,0.174,,,0.15,0.2,0.136,,,0.117,0.157,143.2,539,376413,,,0.136,63940,,,,0.049164119,21739.34093,442179,,,14.44831858,204,1411929,12.46561269,16.43102447,,,,,,,,,,8.892564959,7.082878352,11.0236722,24.37106918,19.6705982,29.85620624,,,,0.352,,,0.339,0.365,0.140085059,38406,274162,0.125787187,0.154382932,0.033034114,4865,147272,0.024693688,0.041374539,0.000931851,445,477544,,,1073.132584,0.888065259,5593.035,6298,,,0.088101315,2727,30953,0.070777084,0.105425546,2.659397716,,,,,,2.994938954,,2.587653095,3.018818443,2.509049881,,,,,,2.975109816,,2.433496152,2.87317971,0.127646253,,,,,-16094.84432,,,,,0.856461249,42722,49882,0.799960537,0.91296196,64313,,,61956.23404,66669.76596,65464,52323.06383,78604.93617,78235,68222.91489,88247.08511,56552,41790.6383,71313.3617,57741,55281.76596,60200.23404,74935,70944.70213,78925.29787,,,,,,0.753467936,77510,102871,,,58.68506883,,,,,0.31615692,,64313,,,3.494579275,127,36342,,,7.99979648,261,3262583,7.029253537,8.970339423,,,,,,,29.26757884,15.12298507,51.12457025,8.375603467,7.145158545,9.606048389,7.098921838,5.478798003,9.048158629,,,,8.955495634,198,2342283,7.693316321,10.21767495,8.453291084,,,,,,,,,,6.237744116,4.996177328,7.694234322,14.6012779,11.66298218,18.05470623,,,,9.734092763,228,2342283,8.470566922,10.99761861,,,,,,,,,,8.844562025,7.358068749,10.3310553,12.71209432,10.11030586,15.77906088,,,,17.77732551,580,3262583,16.33052552,19.22412551,,,,9.248554913,4.435041569,17.00842177,24.38964903,11.69578473,44.85343295,16.98647669,15.23418752,18.73876587,20.64148042,17.69864475,23.58431609,,,,,,,,,,,0.562583783,146885,261090,,,0.631,,,,,150.8655787,,,,,0.583479065,82078,140670,0.56933046,0.597627669,0.16855307,22874,135708,0.156948406,0.180157734,0.856067392,120423,140670,0.846213989,0.865920795,477544,,,,,0.295870119,141291,477544,,,0.118194344,56443,477544,,,0.013326521,6364,477544,,,0.028231954,13482,477544,,,0.041550098,19842,477544,,,0.002525422,1206,477544,,,0.669934079,319923,477544,,,0.260131004,124224,477544,,,0.127036693,55661,438149,0.119963778,0.134109608,0.498123733,237876,477544,,,0.200561383,94889,473117,, -06,109,06109,CA,Tuolumne County,2024,1,9065.952145,1008,146668,8029.554372,10102.34992,0,,,,2,,,,2,,,,2,6244.621021,4149.505318,9025.216044,,9961.721668,8690.16515,11233.27819,,,,,2,,0.146,,,0.122,0.171,3.613394657,,,2.848855421,4.535786559,5.611704302,,,4.556455809,6.807676264,0.065944568,207,3139,0.057262239,0.074626898,0,,,,,,,,,,0.075431035,0.051401699,0.09946037,0.06588824,0.055958569,0.075817911,,,,,,,0.132,,,0.104,0.164,0.295,,,0.226,0.371,7.9,0.06160719,0.11,,,0.178,,,0.141,0.22,0.743635383,41361,55620,,,0.179847394,,,0.144208996,0.21981872,0.381818182,21,55,0.313739426,0.448396478,186.3,104,55810,,,11.13716295,95,8530,9.010629902,13.61460418,,,,,,,,,,13.29955668,8.232635202,20.32978514,10.22229434,7.855091643,13.07875504,,,,,,,0.060636793,2272,37469,0.051104878,0.070168708,0.000627128,35,55810,,,1594.571429,0.001210321,66,54531,,,826.2272727,0.002420642,132,54531,,,413.1136364,1774,,,,,,,,287,1807,0.37,,,,,0.33,0.25,,0.33,0.38,0.4,,,,,0.35,0.48,0.18,0.39,0.41,0.924592424,38905,42078,0.909849594,0.939335253,0.650494583,8286,12738,0.585077045,0.715912122,0.04462444,887,19877,,,0.151,1386,,0.100957447,0.201042553,0.083333333,0,0.736288673,0.095238095,0,0.370741663,,,,0.161184211,0.072216879,0.250151542,0.095012626,0.056685372,0.13333988,4.415743996,134402,30437,3.945390821,4.886097171,0.22069114,2050,9289,0.158242473,0.283139808,7.704712417,43,55810,,,94.66720275,259,273590,83.13782858,106.1965769,,,,,,,,,,45.20157076,25.83660325,73.40451902,106.381509,92.66270571,120.1003122,,,,6.8,,,,,1,,,,,0.187486375,4300,22935,0.159883781,0.215088968,0.156095406,0.128460964,0.183729848,0.024634838,0.01607826,0.033191416,0.01351646,0.005629078,0.021403842,0.759159942,15146,19951,0.748823016,0.769496868,,,,,,,,,,0.742698598,0.645244085,0.840153112,0.760877911,0.744538324,0.777217499,0.309,,19951,0.265941216,0.352058784,77.01294897,,,76.19247174,77.8334262,,,,,,,,,,80.92101501,78.11598871,83.72604131,76.30867125,75.34469632,77.27264618,,,,417.4184824,1008,146668,387.9391459,446.897819,,,,,,,,,,313.8504453,240.6273368,402.3421065,441.1353054,406.2844457,475.9861651,,,,61.447708,25,40685,39.76571672,90.70893867,,,,,,,,,,,,,69.03216899,42.16664223,106.6145862,,,,7.253232419,23,3171,4.597927164,10.88340993,,,,,,,,,,,,,,,,,,,,,,0.108,,,0.092,0.124,0.164,,,0.142,0.189,0.087,,,0.073,0.102,113.9,56,49176,,,0.11,6060,,,,0.06160719,3410.882076,55365,,,23.66461776,39,164803,16.82785659,32.3503115,,,,,,,,,,,,,26.11226739,18.08350425,36.48927638,,,,0.316,,,0.301,0.331,0.071178571,1993,28000,0.059263678,0.083093465,0.030885312,307,9940,0.021353397,0.040417227,0.00091691,50,54531,,,1090.62,0.843,341.415,405,,,,,,,,2.809137998,,,,,,,,2.791920587,2.845253983,2.662556302,,,,,,,,2.618690904,2.689110129,0.029549713,,,,,-1405.734024,,,,,0.759917421,47852,62970,0.644050675,0.875784167,70108,,,63202.12766,77013.87234,59671,43591.85106,75750.14894,89630,12249.91489,167010.0851,,,,63849,41247.6383,86450.3617,71386,64864.97872,77907.02128,,,,,,0.456777494,2679,5865,,,63.63590566,,,,,0.306584127,,70108,,,9.673518742,24,2481,,,3.148755061,12,381103,1.627007688,5.500241417,,,,,,,,,,,,,3.291574228,1.578437785,6.0533222,,,,19.03015307,62,273590,14.12454641,25.0888844,22.66164699,,,,,,,,,,,,,21.88363634,15.83729613,29.47711454,,,,14.98592785,41,273590,10.75416056,20.33010328,,,,,,,,,,,,,17.49998849,12.3840334,24.02010146,,,,13.90700152,53,381103,10.41729846,18.1907004,,,,,,,,,,,,,16.12871372,11.9321112,21.32301488,,,,,,,,,,,0.684787749,30408,44405,,,0.557,,,,,42.68533098,,,,,0.744207437,16991,22831,0.720735236,0.767679638,0.165879123,3686,22221,0.139503442,0.192254805,0.864789103,19744,22831,0.84188893,0.887689275,54531,,,,,0.172122279,9386,54531,,,0.281142836,15331,54531,,,0.015880875,866,54531,,,0.023252829,1268,54531,,,0.016064257,876,54531,,,0.002952449,161,54531,,,0.136161083,7425,54531,,,0.788010489,42971,54531,,,0.006044478,318,52610,0.00262523,0.009463727,0.485320277,26465,54531,,,0.47837109,26607,55620,, -06,111,06111,CA,Ventura County,2024,1,5245.691743,7624,2353058,5067.028321,5424.355165,0,5306.911663,2133.653729,10934.2663,1,2696.417351,2282.194342,3110.640359,,7302.684879,5523.820877,9081.548882,,5445.670548,5178.053149,5713.287947,,5340.862534,5057.355356,5624.369713,,10498.55032,5424.754149,18338.85462,1,,0.157,,,0.132,0.185,3.615250838,,,2.880930187,4.452326441,4.857673369,,,4.014933679,5.817638565,0.062046374,3864,62276,0.060151656,0.063941092,0,,,,0.08968254,0.080573753,0.098791327,0.095558546,0.074419438,0.116697655,0.060893645,0.058376309,0.063410982,0.054741635,0.051604946,0.057878325,,,,0.067024129,0.0523723,0.081675957,0.108,,,0.084,0.136,0.27,,,0.217,0.33,8.9,0.023098155,0.08,,,0.191,,,0.154,0.234,0.977728085,825049,843843,,,0.177035169,,,0.145398089,0.214151067,0.38697318,101,261,0.357223351,0.416492608,370.5,3111,839784,,,11.78683191,2275,193012,11.30247839,12.27118543,,,,,,,4.723837209,2.515244365,8.077905494,18.98859366,18.15969085,19.81749646,2.520341646,2.132228834,2.908454459,,,,2.810116419,1.739506354,4.295561453,0.096027194,66838,696032,0.087686769,0.10436762,0.000813304,683,839784,,,1229.551977,0.000978856,815,832605,,,1021.601227,0.004804199,4000,832605,,,208.15125,2007,,,,,1121,1547,2753,2339,1935,0.39,,,,,0.17,0.37,0.36,0.31,0.41,0.47,,,,,0.41,0.47,0.34,0.38,0.49,0.853698257,491708,575974,0.848653128,0.858743386,0.657063529,143412,218262,0.641416033,0.672711025,0.036795192,15220,413641,,,0.125,21960,,0.098787234,0.151212766,0.31834404,0.218081353,0.418606727,0.035824525,0.020523947,0.051125104,0.053543914,0.003506982,0.103580846,0.175249066,0.160548268,0.189949864,0.056931998,0.044635746,0.06922825,4.35326952,194195,44609,4.21096186,4.495577179,0.187266897,35097,187417,0.173188084,0.201345709,6.394501443,537,839784,,,58.45428811,2474,4232367,56.15087094,60.75770528,,,,28.36192364,22.77695359,34.90178756,57.21356627,41.4057416,77.0662983,43.52948877,40.50927146,46.54970608,78.9853824,74.97477952,82.99598529,,,,7.9,,,,,1,,,,,0.229200412,62260,271640,0.22252427,0.235876555,0.175409927,0.168312375,0.18250748,0.061828155,0.057423467,0.066232843,0.011228096,0.008642869,0.013813324,0.740663473,298220,402639,0.732847683,0.748479262,0.519760941,0.455823417,0.583698465,0.69317994,0.665905038,0.720454842,0.789948454,0.738630637,0.841266271,0.745240396,0.732108097,0.758372695,0.718171053,0.703631607,0.732710499,0.32,,402639,0.310320295,0.329679705,81.32913137,,,81.13750162,81.52076113,82.98982747,78.96675405,87.01290089,87.5516993,86.64419851,88.45920009,78.28143971,76.68943967,79.87343975,81.92686757,81.52941982,82.32431532,80.7838683,80.52255858,81.04517802,,,,257.5991181,7624,2353058,251.6194872,263.578749,218.9249168,127.5318317,350.5199994,152.3871163,136.5365975,168.2376351,357.1131819,304.3706391,409.8557247,259.7545308,249.3359231,270.1731385,267.5432746,258.7560331,276.3305161,468.1973705,299.9828897,696.6405748,31.4505936,266,845771,27.67100875,35.23017845,,,,,,,,,,38.17368822,32.67278088,43.67459555,23.78504458,18.23585729,30.49135371,,,,3.98744113,254,63700,3.497060286,4.477821975,,,,,,,,,,4.800361439,4.078746444,5.521976434,2.903600465,2.215753046,3.73750936,,,,,,,0.104,,,0.088,0.121,0.145,,,0.125,0.169,0.096,,,0.081,0.112,168.4,1198,711271,,,0.08,67210,,,,0.023098155,19017.12704,823318,,,23.34620804,590,2527177,21.46235762,25.23005846,,,,6.377178205,3.295181037,11.13964694,28.64824364,15.25398319,48.98936912,17.25898285,14.80487034,19.71309535,32.12890223,28.80533297,35.45247149,,,,0.306,,,0.293,0.32,0.116964678,59710,510496,0.107432763,0.126496592,0.041208932,8065,195710,0.031677017,0.050740847,0.000619742,516,832605,,,1613.575581,0.873408345,9043.27,10354,,,0.060091458,2707,45048,0.049521797,0.070661119,2.80777066,,,,,,3.589648934,2.764238892,2.480112869,3.335366998,2.647797976,,,,,,3.569676214,2.583630901,2.316722379,3.165979356,0.211456978,,,,,-4421.184211,,,,,0.854638368,57865,67707,0.831879836,0.877396901,101981,,,98497.08511,105464.9149,92306,80150.42553,104461.5745,137372,129192.4255,145551.5745,98402,83594.17021,113209.8298,84254,81719.70213,86788.29787,111661,108902.7021,114419.2979,,,,,,0.538031755,81564,151597,,,49.14857716,,,,,0.273550956,,101981,,,6.324592369,301,47592,,,3.286900387,195,5932641,2.825555929,3.748244846,,,,,,,,,,5.088229907,4.213546029,5.962913784,1.986710779,1.488182704,2.598666615,,,,10.17659977,463,4232367,9.227578196,11.12562134,10.93950501,,,,4.424899245,2.476582517,7.298198386,,,,4.421009585,3.500154922,5.509897036,15.36222926,13.59786585,17.12659267,,,,6.757448019,286,4232367,5.974278514,7.540617524,,,,,,,,,,5.182081997,4.192613791,6.334826516,9.541858277,8.147890353,10.9358262,,,,8.663932303,514,5932641,7.914918946,9.412945659,,,,4.820626773,2.984043951,7.368840096,13.49826933,7.37962945,22.64780231,9.863337973,8.645527469,11.08114848,8.059298444,6.982004844,9.136592044,,,,,,,,,,,0.741908881,422825,569915,,,0.746,,,,,333.4348163,,,,,0.640569847,176575,275653,0.63352777,0.647611924,0.18923851,50813,268513,0.181392269,0.197084751,0.919170116,253372,275653,0.914744482,0.923595751,832605,,,,,0.216102474,179928,832605,,,0.175031377,145732,832605,,,0.018052978,15031,832605,,,0.019171156,15962,832605,,,0.08191039,68199,832605,,,0.002920953,2432,832605,,,0.444628605,370200,832605,,,0.429967392,357993,832605,,,0.088647508,70594,796345,0.084435322,0.092859695,0.501652044,417678,832605,,,0.033668585,28411,843843,, -06,113,06113,CA,Yolo County,2024,1,5138.885425,1846,621967,4799.60439,5478.16646,0,,,,2,2221.117588,1626.137231,2962.659602,,8123.475342,5902.52962,10905.38648,,5393.044623,4773.160316,6012.92893,,5530.186069,5015.850361,6044.521776,,,,,2,,0.162,,,0.139,0.188,3.647916653,,,2.918643849,4.488981298,5.075725932,,,4.165190899,6.083657569,0.060536138,892,14735,0.056685539,0.064386738,0,,,,0.076086957,0.063972113,0.0882018,0.088669951,0.061018423,0.116321479,0.059903879,0.053810132,0.065997626,0.054324128,0.048336092,0.060312164,,,,0.053619303,0.030758306,0.0764803,0.114,,,0.09,0.141,0.278,,,0.22,0.342,8.5,0.028844907,0.096,,,0.203,,,0.166,0.247,0.957195603,207140,216403,,,0.17854824,,,0.145170563,0.21629433,0.313432836,42,134,0.269609234,0.357719949,409.2,888,216986,,,5.755270485,463,80448,5.231029085,6.279511886,35.46099291,17.00492445,65.21402852,,,,9.296920395,5.313993291,15.09761627,12.38212068,11.03175981,13.73248154,2.743531863,2.172080013,3.419259287,,,,2.977371973,1.666412492,4.910722285,0.066403464,12009,180849,0.056871549,0.075935379,0.001235103,268,216986,,,809.6492537,0.0006213,138,222115,,,1609.528986,0.004326588,961,222115,,,231.1290323,1809,,,,,,610,1446,2151,1827,0.35,,,,,0.31,0.27,0.26,0.29,0.39,0.44,,,,,0.38,0.43,0.27,0.35,0.47,0.878785063,113474,129126,0.870377922,0.887192204,0.718997694,39913,55512,0.68931485,0.748680539,0.040446304,4408,108984,,,0.145,6213,,0.111638298,0.178361702,0.081300813,0,0.256548315,0.145996519,0.089950659,0.202042379,0.229400749,0.117020792,0.341780707,0.192295934,0.153347188,0.23124468,0.072695652,0.050036204,0.0953551,5.840880862,173994,29789,5.394916783,6.286844941,0.209746527,9301,44344,0.179349379,0.240143675,6.728544699,146,216986,,,48.68984206,534,1096738,44.56009161,52.8195925,,,,12.51713283,7.645789916,19.33169645,69.48762023,41.83608662,108.5135266,44.36696027,37.40464882,51.32927172,63.53455264,56.56233868,70.5067666,,,,7.7,,,,,1,,,,,0.229511492,17125,74615,0.213892524,0.245130461,0.180755027,0.166436956,0.195073098,0.058098238,0.048928582,0.067267894,0.011994907,0.00830684,0.015682975,0.657754755,66155,100577,0.643214071,0.672295439,0.763953488,0.638587456,0.889319521,0.627759575,0.591407691,0.664111458,0.756227758,0.700088494,0.812367022,0.74237375,0.710456781,0.77429072,0.690612095,0.67313445,0.70808974,0.311,,100577,0.288773054,0.333226946,80.64389132,,,80.25460511,81.03317753,,,,87.5857117,85.87330451,89.29811888,76.39443121,74.01771739,78.77114503,80.83496012,79.94900041,81.72091983,79.87221032,79.36563523,80.37878541,,,,280.5602889,1846,621967,267.4983433,293.6222345,,,,141.6622194,114.4774933,173.3586795,450.4920132,351.8379999,568.2343767,280.0874867,254.0970397,306.0779336,302.8912492,284.3428577,321.4396406,,,,24.13055903,57,236215,18.27624976,31.26393811,,,,,,,,,,32.28023408,21.93285293,45.81921559,19.22522349,10.98887635,31.22055849,,,,3.746795504,57,15213,2.837786325,4.854408164,,,,,,,,,,5.015883632,3.384195623,7.160485771,,,,,,,,,,0.108,,,0.094,0.124,0.155,,,0.135,0.178,0.101,,,0.087,0.117,170.3,317,186195,,,0.096,20850,,,,0.028844907,5793.470715,200849,,,13.99848451,92,657214,11.28475425,17.16789858,,,,,,,,,,11.33417395,7.262019115,16.86435241,19.80264483,15.07469075,25.54396904,,,,0.326,,,0.313,0.339,0.076612343,10469,136649,0.064697449,0.088527236,0.037513352,1756,46810,0.026789948,0.048236756,0.00068433,152,222115,,,1461.282895,0.907877907,2030.015,2236,,,0.046602713,821,17617,0.026194433,0.067010993,2.903701358,,,,,,,2.285929627,2.522252995,3.310709108,2.665875811,,,,,,3.226715722,2.134309762,2.250270364,3.045718093,0.12809865,,,,,-1685.5006,,,,,0.867328042,59013,68040,0.814888544,0.919767541,82359,,,75972.61702,88745.38298,57993,43951.29787,72034.70213,77050,68325.91489,85774.08511,41900,23390.21277,60409.78723,68958,66438,71478,99621,94389.17021,104852.8298,,,,,,0.540068516,16080,29774,,,46.76446557,,,,,0.363445404,,82359,,,9.560229446,110,11506,,,2.556444995,39,1525556,1.817882299,3.494744465,,,,,,,,,,3.286750493,1.878661893,5.337476884,2.267441943,1.296038985,3.68218366,,,,9.367954003,98,1096738,7.561147923,11.47637655,8.935588992,,,,,,,,,,7.203245224,4.56623957,10.8084046,12.58057751,9.645456641,16.1277326,,,,5.288409812,58,1096738,4.015711289,6.836496022,,,,,,,,,,5.688071829,3.474422045,8.78476561,6.771707805,4.689604509,9.462782912,,,,10.81572882,165,1525556,9.165402263,12.46605538,,,,5.468315668,2.825558501,9.552046995,,,,13.14700197,10.12479351,16.78842801,11.33720971,8.989702213,14.11013886,,,,,,,,,,,0.655929347,97294,148330,,,0.716,,,,,187.0338777,,,,,0.521791688,39712,76107,0.509939397,0.533643979,0.204857947,15063,73529,0.189694398,0.220021497,0.909995138,69257,76107,0.899959505,0.920030772,222115,,,,,0.195362763,43393,222115,,,0.134641965,29906,222115,,,0.026778921,5948,222115,,,0.01792765,3982,222115,,,0.160358373,35618,222115,,,0.005663733,1258,222115,,,0.322927312,71727,222115,,,0.43991626,97712,222115,,,0.062994725,12980,206049,0.056178806,0.069810643,0.513715868,114104,222115,,,0.080479476,17416,216403,, -06,115,06115,CA,Yuba County,2024,1,9598.692727,1241,230622,8850.359437,10347.02602,0,,,,2,8125.756371,5750.268828,11153.23548,,9355.943342,5994.529436,13920.90208,1,8014.822895,6666.097972,9363.547818,,10431.60601,9353.459421,11509.75259,,,,,2,,0.189,,,0.163,0.22,4.110964938,,,3.267490458,5.037075159,5.659164353,,,4.583547654,6.829662488,0.067804819,560,8259,0.062382613,0.073227025,0,,,,0.094637224,0.071851976,0.117422472,0.11372549,0.074758307,0.152692674,0.062235882,0.052955065,0.071516699,0.062648065,0.054942108,0.070354023,,,,0.071428571,0.046797967,0.096059176,0.153,,,0.125,0.187,0.339,,,0.266,0.418,7.1,0.108820405,0.122,,,0.229,,,0.187,0.277,0.841299418,68629,81575,,,0.180682452,,,0.144447787,0.221612155,0.229885058,20,87,0.175314547,0.287831285,399.2,333,83421,,,22.00034829,379,17227,19.7853876,24.21530898,,,,11.70117012,6.23038028,20.00935726,16.77852349,8.045954188,30.85630208,22.48115147,19.0404048,25.92189815,20.58472554,17.15024066,24.01921042,,,,24.91103203,16.55319987,36.00337717,0.071415632,5125,71763,0.060692228,0.082139036,0.000203786,17,83421,,,4907.117647,0.000296525,25,84310,,,3372.4,0.002538252,214,84310,,,393.9719626,3939,,,,,7656,2332,1297,3959,3904,0.3,,,,,0.28,0.19,0.33,0.23,0.32,0.38,,,,,0.4,0.38,0.26,0.41,0.37,0.826627907,42654,51600,0.810604855,0.842650959,0.618147368,14681,23750,0.571528421,0.664766316,0.055070262,1740,31596,,,0.19,4235,,0.134,0.246,0.265306122,0.058562391,0.472049854,0.217545639,0.108070242,0.327021036,0.135746606,0,0.383904609,0.259411282,0.195827591,0.322994973,0.151682803,0.10413792,0.199227686,4.442369186,122254,27520,3.89976778,4.984970592,0.227176221,5029,22137,0.18233799,0.272014452,3.59621678,30,83421,,,91.61358197,364,397321,82.20194334,101.0252206,,,,58.93186004,33.68464992,95.70164861,137.3154823,83.87586396,212.0726255,67.8635856,53.72823981,84.57827606,110.0575686,95.95597945,124.1591577,,,,8.7,,,,,0,,,,,0.194439191,5140,26435,0.172649861,0.21622852,0.149507437,0.127972933,0.171041941,0.046150936,0.03447603,0.057825842,0.014185739,0.007775179,0.020596298,0.793728682,26528,33422,0.762659101,0.824798262,,,,0.611566485,0.550014947,0.673118022,0.764423077,0.655033605,0.873812549,0.778450363,0.742568499,0.814332227,0.807519834,0.770487463,0.844552206,0.475,,33422,0.427310648,0.522689352,75.60819924,,,74.93914961,76.27724888,,,,77.59178857,74.5486031,80.63497404,75.06820793,71.93230126,78.20411459,84.17528928,80.75969999,87.59087856,74.30636778,73.4716967,75.14103886,,,,487.4135159,1241,230622,459.6727708,515.154261,,,,403.8571329,306.6656529,522.0789955,468.9215194,336.5061783,636.1449899,342.6011197,291.6120041,393.5902352,543.3870462,505.6325537,581.1415388,,,,64.80000836,62,95679,49.68179484,83.07068623,,,,,,,,,,72.58259631,47.83238832,105.6038669,65.00487537,42.46334279,95.24720375,,,,7.10523092,58,8163,5.395299728,9.185158611,,,,,,,,,,9.292929293,5.890920015,13.94395673,5.938548929,3.764530606,8.910739193,,,,,,,0.127,,,0.11,0.147,0.176,,,0.153,0.2,0.108,,,0.092,0.126,154.3,103,66765,,,0.122,9800,,,,0.108820405,7851.936327,72155,,,22.70391209,55,242249,17.10369371,29.55226233,,,,,,,,,,16.62625563,8.5910289,29.04272262,28.92319719,20.36460001,39.86681739,,,,0.346,,,0.335,0.359,0.090838683,4457,49065,0.075349322,0.106328045,0.030616118,726,23713,0.021084203,0.040148033,0.000806547,68,84310,,,1239.852941,0.790376283,693.16,877,,,0.089863914,383,4262,0.04878479,0.130943037,2.693549939,,,,,,2.686155753,2.772165973,2.432033291,2.899146205,2.617696474,,,,,,2.603137908,2.310314419,2.477139765,2.76086635,0.060821632,,,,,-1301.1805,,,,,0.806246006,46676,57893,0.745100489,0.867391522,63626,,,58728.97872,68523.02128,70938,48834.68085,93041.31915,63015,47040.70213,78989.29787,51893,37427.12766,66358.87234,69681,56534.10638,82827.89362,66641,62537.51064,70744.48936,,,,,,0.628069941,9411,14984,,,45.55630969,,,,,0.313409612,,63626,,,4.553585949,28,6149,,,7.677009914,42,547088,5.532913486,10.37708719,,,,,,,,,,7.602057624,3.928094106,13.27926479,7.425057544,4.653244032,11.24162635,,,,18.75967123,71,397321,14.56761875,23.78235337,17.8696822,,,,,,,,,,,,,23.46876926,17.3040178,31.1161832,,,,15.60451121,62,397321,11.96388927,20.00427913,,,,,,,,,,10.30839275,5.326496958,18.00668761,19.28359108,13.83823789,26.16036872,,,,21.38595619,117,547088,17.51077679,25.26113559,,,,,,,,,,22.80617287,15.9731631,31.57335637,20.25015694,15.45300308,26.06596604,,,,,,,,,,,0.56884307,29796,52380,,,0.617,,,,,173.93339,,,,,0.614067545,16928,27567,0.586689162,0.641445927,0.164373233,4360,26525,0.141841067,0.186905399,0.887002576,24452,27567,0.868946713,0.905058438,84310,,,,,0.269398648,22713,84310,,,0.132439806,11166,84310,,,0.042106512,3550,84310,,,0.029355948,2475,84310,,,0.083525086,7042,84310,,,0.006559127,553,84310,,,0.311528882,26265,84310,,,0.502241727,42344,84310,,,0.043727693,3308,75650,0.035012731,0.052442656,0.489775827,41293,84310,,,0.295127184,24075,81575,, -08,000,08000,CO,Colorado,2024,,6993.794037,64432,16404410,6915.606241,7071.981833,0,15180.28252,13779.63231,16580.93273,,3453.764607,3161.33642,3746.192795,,11912.63682,11412.60323,12412.67042,,8408.639987,8232.829426,8584.450549,,6346.99386,6254.855177,6439.132544,,10961.88841,8552.627862,13371.14895,,,0.128,,,0.12,0.135,3.10928037,,,2.942362118,3.276198623,4.796625967,,,4.594616242,4.998635693,0.093505819,41381,442550,0.092648037,0.0943636,0,0.090622537,0.079453893,0.101791182,0.116321112,0.111597941,0.121044283,0.143934751,0.13921073,0.148658771,0.095243683,0.093634433,0.096852933,0.085510475,0.084425978,0.086594972,0.111486487,0.093558837,0.129414136,0.109021532,0.103199007,0.114844056,0.121,,,0.114,0.13,0.251,,,0.24,0.262,8.5,0.050443867,0.092,,,0.165,,,0.156,0.173,0.900761278,5200738,5773714,,,0.214127847,,,0.204273528,0.224323532,0.346503606,1105,3189,0.338002356,0.35501222,460.2,26747,5812069,,,13.85249122,17137,1237106,13.64508749,14.05989494,19.21936173,16.25973102,22.17899244,3.619741513,3.051711438,4.187771589,18.76750144,17.57090798,19.9640949,26.16885266,25.65501741,26.68268791,7.185570919,6.987581449,7.383560389,38.20682629,30.05209256,47.8925876,10.84504419,9.916458995,11.77362938,0.093114804,452402,4858540,0.089540336,0.096689272,0.000828621,4816,5812069,,,1206.824959,0.000861312,5030,5839926,,,1161.019086,0.004565298,26661,5839926,,,219.0437718,1606,,,,,1678,1232,2703,1853,1551,0.42,,,,,0.29,0.32,0.33,0.27,0.43,0.47,,,,,0.34,0.48,0.33,0.34,0.48,0.925407506,3685676,3982760,0.924000629,0.926814384,0.737731435,1267008,1717438,0.731991914,0.743470956,0.030336234,97095,3200628,,,0.111,133767,,0.102659575,0.119340426,0.29799938,0.239500339,0.35649842,0.102729082,0.084359419,0.121098745,0.241918034,0.219661653,0.264174416,0.180656018,0.171462154,0.189849881,0.065985465,0.061977196,0.069993733,4.388471962,168412,38376,4.332519569,4.444424355,0.215121594,266367,1238216,0.209338839,0.220904349,8.599347324,4998,5812069,,,88.50035155,25383,28681242,87.41159798,89.58910513,142.8796497,125.6113899,160.1479095,37.88721574,33.97885033,41.79558115,109.8598103,103.8294977,115.8901228,77.54293427,75.36259111,79.72327744,94.29541112,92.92896569,95.66185655,71.77507178,48.06889203,103.0809757,4.45,,,,,0.53125,,,,,0.158755965,339325,2137400,0.15624893,0.161263001,0.133073059,0.130711389,0.135434728,0.025385983,0.024296464,0.026475502,0.008524375,0.007842539,0.009206212,0.685927589,2062480,3006848,0.683139542,0.688715637,0.685014636,0.668965288,0.701063984,0.61946702,0.605119608,0.633814431,0.675864399,0.658322789,0.69340601,0.704767047,0.697388326,0.712145768,0.686670144,0.683743655,0.689596634,0.36,,3006848,0.35623218,0.36376782,79.02061652,,,78.94406545,79.09716759,74.68960413,73.14297626,76.23623199,85.37934987,84.81449273,85.94420701,73.79045757,73.36455799,74.21635715,77.30374,77.10417168,77.50330831,79.60308428,79.51531038,79.69085818,75.21113085,72.82443731,77.59782439,326.8163474,64432,16404410,324.231628,329.4010669,633.2670922,586.7280477,679.8061366,173.3575776,162.5851883,184.1299668,539.1240173,521.772148,556.4758866,400.6058895,393.4027665,407.8090125,303.5964696,300.6708992,306.52204,450.7022296,365.8835517,535.5209074,49.60900831,2784,5611884,47.7661922,51.45182443,77.6490264,50.72292204,113.7738146,40.83093755,32.00493714,51.33877383,106.1968758,93.23827958,119.1554721,56.02434482,52.53266259,59.51602704,42.06475673,39.79289673,44.33661673,116.5130812,58.16291036,208.4740866,4.761341126,2132,447773,4.55922928,4.963452972,,,,3.335594754,2.539209273,4.302674206,10.05308404,8.706143274,11.40002481,5.869319253,5.448414817,6.29022369,3.814747292,3.577832501,4.051662083,,,,5.092592593,3.836437683,6.628709257,0.091476128,,,0.08510046,0.098278147,0.145758859,,,0.137329141,0.154613282,0.065,,,0.06,0.07,271.9,13442,4943951,,,0.092,533650,,,,0.050443867,253692.0957,5029196,,,25.65235114,4458,17378524,24.89931952,26.40538277,60.07298419,46.55573762,76.29056642,7.505215272,5.453300906,10.07540119,41.28276289,36.5476166,46.01790918,28.37072298,26.68257076,30.05887521,24.66540443,23.76565637,25.5651525,,,,0.27032592,,,0.259609957,0.281316144,0.109363408,396402,3624631,0.104597451,0.114129366,0.047342117,61429,1297555,0.042576159,0.052108074,0.001438203,8399,5839926,,,695.312061,0.816756614,55813.88,68336,,,0.065327582,19719,301848,0.060538945,0.070116219,3.144153798,,,,,,3.436179974,2.734058019,2.749007295,3.420480627,3.031961716,,,,,,3.555852335,2.555939953,2.59028765,3.335249564,0.185081646,,,,,-161.1875,,,,,0.817374193,56492,69114,0.809275534,0.825472853,89096,,,87628.08511,90563.91489,59896,56188.08511,63603.91489,101163,97378.82979,104947.1702,61343,58595.42553,64090.57447,69500,68182.21277,70817.78723,94469,93793.42553,95144.57447,,,,,,0.383381723,313612,818015,,,65.20457716,,,,,0.313737201,,,,,12.28246824,,,,,4.748179997,1884,39678361,4.533771103,4.962588891,10.57181788,6.9668946,15.38143998,2.399938066,1.630641479,3.406520516,23.29175046,20.92481329,25.65868763,7.454974913,6.878295107,8.031654719,2.886805178,2.683951097,3.089659259,,,,21.71601493,6453,28681242,21.17754116,22.2544887,22.49902567,32.09665966,24.5514014,41.22950208,10.71753822,8.598385948,12.83669049,15.34176426,13.14283711,17.54069141,16.20841498,15.18232126,17.23450869,23.85067641,23.16660973,24.53474308,,,,15.68969712,4500,28681242,15.23127626,16.14811798,21.18747657,15.06636705,28.96397796,4.722783126,3.444830419,6.3194554,28.26197472,25.20338198,31.32056746,13.35736489,12.45243667,14.26229311,16.37567077,15.80623262,16.94510893,,,,11.30087001,4484,39678361,10.97009313,11.6316469,14.8788548,10.5291632,20.42239069,6.115971201,4.842071995,7.622324933,14.65126239,12.77400774,16.52851704,13.35392702,12.58210681,14.12574724,10.90158562,10.50738269,11.29578855,,,,8.413709955,,580600,,,4885,,0.789600323,3279980,4153975,,,,,,,,164.6290324,,,,,0.661772556,1507547,2278044,0.658161931,0.66538318,0.144728553,323013,2231854,0.142221309,0.147235797,0.918060845,2091383,2278044,0.915758142,0.920363548,5839926,,,,,0.208149042,1215575,5839926,,,0.156515339,914038,5839926,,,0.041291962,241142,5839926,,,0.016751582,97828,5839926,,,0.037547222,219273,5839926,,,0.002226569,13003,5839926,,,0.225168093,1314965,5839926,,,0.66471356,3881878,5839926,,,0.025246988,137687,5453601,0.024451792,0.026042185,0.49236617,2875382,5839926,,,0.139732935,806778,5773714,, -08,001,08001,CO,Adams County,2024,1,7653.056354,5791,1497509,7387.197806,7918.914903,0,9886.182342,6670.165711,14113.14002,,4129.01274,3140.49723,5117.52825,,13281.10443,11314.97367,15247.23519,,7821.100218,7401.764821,8240.435615,,7391.794526,7007.183285,7776.405768,,,,,2,,0.162,,,0.139,0.187,3.773242125,,,3.148644618,4.413554428,4.970614789,,,4.293509376,5.647547565,0.091741046,4060,44255,0.089051608,0.094430485,0,0.103448276,0.061553743,0.145342809,0.110749186,0.097480733,0.124017638,0.151836158,0.133144324,0.170527993,0.087690527,0.08384033,0.091540723,0.086826513,0.082719633,0.090933393,0.139240506,0.062898032,0.215582981,0.1,0.080922761,0.119077239,0.153,,,0.125,0.182,0.313,,,0.274,0.354,8.5,0.047352981,0.09,,,0.232,,,0.198,0.267,0.929389959,482885,519572,,,0.222330097,,,0.193422027,0.254006773,0.370860927,112,302,0.34295921,0.398649701,558.5,2916,522140,,,18.59904386,2237,120275,17.82829357,19.36979415,19.20236337,10.22444977,32.83662617,5.640423032,3.613925465,8.392502372,22.05679625,17.48966766,27.45159222,23.76494523,22.60480531,24.92508515,10.24646224,9.25704059,11.23588388,,,,13.68301026,10.08877161,18.14168648,0.132001261,60712,459935,0.121277857,0.142724665,0.000519018,271,522140,,,1926.715867,0.000707009,373,527575,,,1414.410188,0.003997536,2109,527575,,,250.1541015,2015,,,,,,1664,1879,1463,2137,0.38,,,,,0.21,0.31,0.27,0.27,0.42,0.44,,,,,0.36,0.49,0.34,0.32,0.48,0.848145765,287345,338792,0.84232382,0.85396771,0.59550465,96810,162568,0.577946381,0.613062919,0.033650285,9495,282167,,,0.142,18220,,0.108638298,0.175361702,0.518776824,0.190276207,0.847277441,0.177302016,0.091633622,0.26297041,0.261734146,0.168448253,0.355020038,0.164474341,0.144360098,0.184588584,0.089393002,0.073902756,0.104883248,3.761369229,152847,40636,3.619336474,3.903401985,0.242400987,32218,132912,0.222573491,0.262228483,4.385796913,229,522140,,,85.06575505,2190,2574479,81.50297694,88.62853316,125.7778366,75.72647401,196.4176723,36.73042692,26.11892417,50.21170275,129.363007,104.9650031,153.7610108,69.66455519,64.62124184,74.70786854,100.4551005,94.92364071,105.9865602,,,,9.1,,,,,1,,,,,0.175862275,29420,167290,0.166768611,0.184955939,0.131540107,0.123228304,0.139851909,0.048508578,0.043067658,0.053949498,0.005618985,0.004163315,0.007074655,0.729466607,198110,271582,0.719302511,0.739630702,0.77502653,0.54898088,1,0.596437721,0.552698468,0.640176974,0.74411495,0.666569381,0.821660518,0.703447158,0.683416246,0.723478069,0.750091162,0.737527271,0.762655054,0.485,,271582,0.468793993,0.501206007,77.54844894,,,77.28499386,77.81190401,77.98064322,72.16336381,83.79792264,83.79574233,82.24900587,85.34247879,72.35348357,70.70245071,74.00451642,78.63994669,78.0397296,79.24016378,77.41290537,77.07380324,77.75200749,,,,373.0911252,5791,1497509,363.4167729,382.7654776,503.867956,370.2232218,670.0375651,196.9942044,161.6502904,232.3381185,631.2058898,558.2607585,704.1510212,375.2146391,357.4785405,392.9507377,367.9037447,355.1631886,380.6443008,,,,49.20304684,289,587362,43.53022497,54.87586872,,,,60.98133033,32.46999011,104.2799321,106.0659629,65.65650277,162.1330912,47.2754337,39.65884095,54.89202646,47.37295435,38.50239968,57.67487212,,,,5.494382775,246,44773,4.807777035,6.180988515,,,,,,,,,,6.324187585,5.237038416,7.411336755,4.05398197,3.194076699,5.074162958,,,,,,,0.113,,,0.098,0.129,0.149,,,0.13,0.169,0.085,,,0.073,0.099,290.4,1249,430096,,,0.09,46440,,,,0.047352981,20911.21857,441603,,,28.15105897,439,1559444,25.51764856,30.78446938,,,,,,,62.23743582,42.57036003,87.86068943,25.79085481,21.86740805,29.71430157,29.53509378,25.6585741,33.41161347,,,,0.298,,,0.287,0.308,0.161961385,53502,330338,0.147663513,0.176259257,0.058223065,7951,136561,0.046308172,0.070137959,0.002373122,1252,527575,,,421.3857828,0.794929589,5080.395,6391,,,0.087556191,2571,29364,0.069826752,0.105285631,2.82621435,,,,,,3.290210457,2.413567099,2.561617426,3.247431649,2.685074427,,,,,,3.363277258,2.190803679,2.416996108,3.0986243,0.130620284,,,,,-2938.251686,,,,,0.846270878,51174,60470,0.817351218,0.875190538,89849,,,85526.2766,94171.7234,86069,72669.51064,99468.48936,97713,86619.04255,108806.9575,60034,52435.87234,67632.12766,75887,72736.70213,79037.29787,94634,92022.25532,97245.74468,,,,,,0.503647281,40598,80608,,,55.23398578,,,,,0.357221561,,89849,,,6.757530638,236,34924,,,6.032542621,215,3564003,5.226167277,6.838917966,,,,,,,27.33517331,18.57292405,38.80009656,7.627701593,6.202246884,9.053156303,3.509409463,2.690644112,4.498904548,,,,21.19409267,539,2574479,19.37988288,23.00830246,20.93627487,,,,10.76765328,5.563803574,18.80892333,12.93394752,6.456580003,23.14240484,15.0663661,12.6325531,17.5001791,26.18384985,23.326873,29.04082671,,,,14.41068271,371,2574479,12.94427858,15.87708683,,,,,,,17.9670843,10.05604069,29.63397321,11.4048385,9.364253981,13.44542303,17.44287459,15.13791779,19.74783138,,,,11.41974347,407,3564003,10.31027436,12.52921258,,,,,,,13.22669677,7.402881773,21.81542486,12.82840723,10.97980724,14.67700721,10.81124528,9.277987743,12.34450282,,,,4.919093851,,61800,,,304,,0.715875416,236740,330700,,,0.695,,,,,180.6126447,,,,,0.683324964,123826,181211,0.674792908,0.69185702,0.148105182,26427,178434,0.139008019,0.157202345,0.911026373,165088,181211,0.904651758,0.917400988,527575,,,,,0.24545894,129498,527575,,,0.113288158,59768,527575,,,0.035014927,18473,527575,,,0.02433019,12836,527575,,,0.04696773,24779,527575,,,0.002714306,1432,527575,,,0.42396247,223672,527575,,,0.467954319,246881,527575,,,0.054973881,26720,486049,0.05112325,0.058824513,0.490652514,258856,527575,,,0.040410184,20996,519572,, -08,003,08003,CO,Alamosa County,2024,1,13037.65317,265,46195,10921.03421,15154.27214,0,,,,2,,,,2,,,,2,16009.88902,12671.48339,19348.29464,,10569.90338,7753.5361,13386.27066,,,,,2,,0.197,,,0.17,0.228,4.298224282,,,3.439024175,5.230029094,5.186198051,,,4.173665765,6.290367452,0.107142857,147,1372,0.090776515,0.123509199,0,,,,,,,,,,0.109874826,0.08701535,0.132734302,0.1,0.075152465,0.124847535,,,,,,,0.171,,,0.139,0.208,0.304,,,0.233,0.381,7,0.125746328,0.121,,,0.248,,,0.204,0.299,0.816438691,13370,16376,,,0.179807322,,,0.14331807,0.22086289,0.352941177,6,17,0.222343344,0.479798798,616.4,102,16547,,,17.52144552,96,5479,14.19242712,21.39668388,,,,,,,,,,23.29749104,17.98051173,29.69456481,10.89324619,7.049534574,16.08058026,,,,,,,0.134226664,1773,13209,0.115162834,0.153290493,0.000725207,12,16547,,,1378.916667,0.00144648,24,16592,,,691.3333333,0.014223722,236,16592,,,70.30508475,2015,,,,,,,,1528,2088,0.29,,,,,,,,0.23,0.32,0.38,,,,,,,,0.36,0.39,0.898133986,8808,9807,0.869723346,0.926544626,0.635744481,2707,4258,0.542410962,0.729078,0.036277025,297,8187,,,0.212,846,,0.128595745,0.295404255,,,,0.294444444,0,0.689263141,,,,0.199299168,0.083615099,0.314983236,0.045769764,0,0.091677027,5.193809741,114108,21970,3.752358414,6.635261067,0.24707081,970,3926,0.155417412,0.338724208,10.27376564,17,16547,,,120.4467479,99,82194,97.89317329,146.6395938,,,,,,,,,,144.9200352,109.4710372,188.19072,102.5062785,73.23198822,139.5844574,,,,4.3,,,,,1,,,,,0.17948718,1120,6240,0.13555701,0.223417349,0.105092967,0.074336877,0.135849056,0.052884615,0.024245801,0.08152343,0.022435897,0.00875075,0.036121045,0.79101153,6037,7632,0.748902146,0.833120915,,,,,,,,,,0.835491607,0.772711722,0.898271492,0.758901323,0.707502148,0.810300497,0.131,,7632,0.094295165,0.167704835,72.98168996,,,71.43357106,74.52980887,,,,,,,,,,71.01358435,68.636599,73.3905697,74.46403655,72.36524414,76.56282895,,,,549.1650425,265,46195,480.4240306,617.9060544,,,,,,,,,,658.4773208,544.4008786,772.5537629,468.9897645,380.4484473,557.5310817,,,,87.44406152,17,19441,50.93938825,140.0064133,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.132,,,0.114,0.153,0.169,,,0.147,0.194,0.107,,,0.091,0.126,197.2,27,13692,,,0.121,1970,,,,0.125746328,1942.152036,15445,,,49.01960784,24,48960,31.40778769,72.93729084,,,,,,,,,,64.00955876,35.82566413,105.5740329,,,,,,,0.304,,,0.291,0.316,0.162930387,1519,9323,0.136717621,0.189143153,0.066178266,271,4095,0.045922947,0.086433585,0.00204918,34,16592,,,488,0.726870748,106.85,147,,,,,,,,2.957987264,,,,,,,,2.900899348,3.129502591,2.931426265,,,,,,,,2.864730033,3.041995674,0.078823043,,,,,-2235.1365,,,,,0.925606132,42987,46442,0.5979422,1.253270065,53942,,,46937.23404,60946.76596,,,,,,,93342,48427.61702,138256.383,50092,43125.3617,57058.6383,59322,51424.80851,67219.19149,,,,,,0.559777968,1311,2342,,,,,,,,0.297133959,,53942,,,6.910167818,7,1013,,,11.27063393,13,115344,6.001137893,19.27312727,,,,,,,,,,18.5587291,8.899631973,34.13016358,,,,,,,30.01249902,23,82194,18.57820992,45.87729284,27.9825778,,,,,,,,,,35.78231245,18.48924299,62.5044988,,,,,,,18.24950726,15,82194,10.21411068,30.09978693,,,,,,,,,,28.46643549,14.21034203,50.93431632,,,,,,,17.33943682,20,115344,10.59137847,26.77935385,,,,,,,,,,24.12634783,12.84626411,41.25678956,,,,,,,6.111111111,,1800,,,11,,0.679251849,7808,11495,,,0.543,,,,,65.59526668,,,,,0.572090867,3702,6471,0.53437356,0.609808174,0.098026835,621,6335,0.061992563,0.134061107,0.889661567,5757,6471,0.858992095,0.920331039,16592,,,,,0.242285439,4020,16592,,,0.148264224,2460,16592,,,0.012355352,205,16592,,,0.057497589,954,16592,,,0.016272903,270,16592,,,0.003013501,50,16592,,,0.489934908,8129,16592,,,0.453893443,7531,16592,,,0.023494481,364,15493,0.010617844,0.036371119,0.503977821,8362,16592,,,0.33042257,5411,16376,, -08,005,08005,CO,Arapahoe County,2024,1,6557.36704,6559,1867804,6330.664873,6784.069208,0,15245.57084,10358.62572,21639.87087,,3779.602781,3110.702614,4448.502948,,10231.73159,9377.064184,11086.399,,6945.499733,6444.367691,7446.631775,,5795.020613,5516.767777,6073.27345,,11112.15777,6219.39035,18327.81436,1,,0.123,,,0.104,0.145,3.149105305,,,2.576939277,3.762986051,4.707218851,,,4.067005102,5.389251098,0.098888029,5238,52969,0.096345848,0.10143021,0,0.075,0.038495822,0.111504178,0.118015964,0.10733951,0.128692417,0.140589569,0.132212965,0.148966174,0.094692605,0.08996793,0.09941728,0.084356073,0.080917523,0.087794622,0.121405751,0.085223323,0.157588179,0.12625139,0.110899122,0.141603659,0.129,,,0.102,0.158,0.252,,,0.218,0.289,8.9,0.021031484,0.083,,,0.171,,,0.142,0.2,0.976542965,639704,655070,,,0.197487532,,,0.172072615,0.226155967,0.393939394,91,231,0.362406793,0.42516199,562.8,3686,654900,,,12.74099892,1740,136567,12.14233247,13.33966538,,,,3.880070547,2.670862031,5.449061643,15.5966176,13.65936246,17.53387274,25.21547998,23.66876448,26.76219549,5.082389043,4.523776841,5.641001244,39.26701571,21.97745061,64.76497087,10.39861352,8.294341389,12.87419111,0.0981968,55154,561668,0.089856374,0.106537225,0.000829134,543,654900,,,1206.077348,0.001184798,777,655808,,,844.02574,0.00461873,3029,655808,,,216.5097392,1827,,,,,,1144,2699,2105,1770,0.48,,,,,0.19,0.36,0.37,0.28,0.5,0.53,,,,,0.35,0.52,0.35,0.32,0.55,0.921887394,414924,450081,0.917070365,0.926704422,0.727698348,144395,198427,0.711436379,0.743960316,0.030811795,11571,375538,,,0.1,14397,,0.076170213,0.123829787,0.190135243,0.060499351,0.319771135,0.119995371,0.078906059,0.161084684,0.201039861,0.16700198,0.235077743,0.152538841,0.129648109,0.175429573,0.046897205,0.03821333,0.055581081,4.05154971,176210,43492,3.903054024,4.200045396,0.230738836,34453,149316,0.212157993,0.249319679,8.031760574,526,654900,,,77.86813532,2541,3263209,74.84043063,80.89584002,119.5583374,69.64713742,191.42448,39.92657406,31.75478923,49.55940594,81.55596093,72.05388355,91.05803831,62.29373894,56.2117175,68.37576038,88.36326546,84.17626679,92.55026414,,,,6,,,,,0,,,,,0.163214684,39480,241890,0.155819017,0.170610352,0.135879866,0.128697022,0.14306271,0.028566704,0.025372415,0.031760993,0.007730787,0.006049782,0.009411792,0.696704392,243347,349283,0.689330063,0.70407872,0.716157205,0.662523995,0.769790415,0.61676182,0.585485475,0.648038165,0.655508584,0.63221376,0.678803408,0.697652355,0.679944195,0.715360516,0.71772229,0.708253418,0.727191162,0.41,,349283,0.398265191,0.421734809,79.66582022,,,79.43213189,79.89950855,76.06033709,69.83950604,82.28116814,85.57631906,84.26232075,86.89031737,75.78514436,74.93028702,76.64000169,79.50091054,78.74934906,80.25247202,80.22379465,79.94913039,80.4984589,73.99449367,68.67390227,79.31508507,301.9316686,6559,1867804,294.505612,309.3577251,604.386291,450.0052916,794.6563553,186.3431917,162.3706588,210.3157247,440.577144,412.1399676,469.0143203,311.0147897,289.9062678,332.1233117,283.6944243,274.7788368,292.6100119,452.9618818,268.4539184,715.8750569,49.19692806,326,662643,43.85638702,54.5374691,,,,39.51202647,22.5845371,64.16505556,93.68290938,73.30110688,117.9781199,57.15057618,46.47035266,67.83079971,32.66116653,26.25957789,39.06275517,,,,5.160346025,275,53291,4.5504321,5.770259949,,,,,,,10.69277108,8.35114293,13.48747577,6.178039876,4.954968637,7.611517919,3.128741937,2.484672718,3.888740553,,,,,,,0.091,,,0.078,0.106,0.142,,,0.123,0.162,0.074,,,0.063,0.085,296.8,1635,550851,,,0.083,54070,,,,0.021031484,12030.07198,572003,,,21.07730954,415,1968942,19.04940645,23.10521263,,,,9.54729891,4.933228665,16.67720984,21.77731277,15.94372999,29.04788344,22.97591064,18.49877003,28.20932694,21.94435637,19.24561007,24.64310267,,,,0.292,,,0.279,0.304,0.1152948,47694,413670,0.105762885,0.124826715,0.052369173,8151,155645,0.041645769,0.063092578,0.001566007,1027,655808,,,638.5666991,0.83857413,7539.62,8991,,,0.068605428,2260,32942,0.053625026,0.083585829,3.106546128,,,,,,3.459206912,2.724007038,2.60278335,3.518517623,3.021048461,,,,,,3.618463708,2.478418178,2.47292362,3.492562524,0.136534413,,,,,-2166.744429,,,,,0.832613391,57825,69450,0.810968941,0.854257841,93525,,,90291.29787,96758.70213,70700,65973.3617,75426.6383,101379,92135.42553,110622.5745,66248,60972.08511,71523.91489,79137,74486.61702,83787.38298,101984,100107.4043,103860.5957,,,,,,0.407103086,42114,103448,,,49.89658671,,,,,0.359165998,,93525,,,8.141147465,317,38938,,,5.274339588,239,4531373,4.605649001,5.943030174,,,,,,,19.69898278,15.91878327,24.10656599,6.08972877,4.574791677,7.94577507,2.688703724,2.107514519,3.380641266,,,,18.68378711,613,3263209,17.18635856,20.18121567,18.78518967,,,,10.61523038,6.570994916,16.22650725,13.56345646,9.930154818,18.09175017,14.82495676,11.89004883,18.26476136,21.23915302,19.14370067,23.33460536,,,,13.85139597,452,3263209,12.57442684,15.1283651,,,,,,,25.07197386,20.08162326,30.92618712,10.51110235,8.162282262,13.32532683,14.04722864,12.37782149,15.7166358,,,,9.20250882,417,4531373,8.319237181,10.08578046,,,,5.753988233,3.288901439,9.344116402,12.1546915,9.229566849,15.71275734,9.69845693,7.757513682,11.97751541,9.134226351,7.997379403,10.2710733,,,,5.795454546,,70400,,,408,,0.778400667,350183,449875,,,0.74,,,,,215.2165334,,,,,0.649289534,162810,250751,0.640431386,0.658147682,0.152836341,37733,246885,0.14564498,0.160027702,0.936127872,234735,250751,0.931875416,0.940380328,655808,,,,,0.221836269,145482,655808,,,0.146004623,95751,655808,,,0.109381099,71733,655808,,,0.012329828,8086,655808,,,0.068805199,45123,655808,,,0.003531521,2316,655808,,,0.209866302,137632,655808,,,0.572865839,375690,655808,,,0.040334673,24856,616244,0.037510976,0.043158369,0.499579145,327628,655808,,,0.020635963,13518,655070,, -08,007,08007,CO,Archuleta County,2024,1,7628.817717,177,38430,5485.653838,9771.981595,0,,,,2,,,,2,,,,2,7917.108231,4525.311419,12856.88776,1,7675.090702,5007.843663,10342.33774,,,,,2,,0.132,,,0.111,0.157,3.397384112,,,2.660522988,4.237153189,4.70068937,,,3.776421857,5.736426824,0.082368082,64,777,0.063036861,0.101699304,0,,,,,,,,,,0.098265896,0.05390772,0.142624072,0.070610687,0.048676351,0.092545023,,,,,,,0.144,,,0.112,0.18,0.246,,,0.186,0.313,7.6,0.107082226,0.103,,,0.172,,,0.137,0.211,0.904409013,12082,13359,,,0.176599558,,,0.141329591,0.21429251,0.333333333,3,9,0.150331965,0.513162068,72.5,10,13790,,,19.08223535,42,2201,13.75279679,25.7936387,,,,,,,,,,24.60202605,14.33158679,39.39022694,17.22846442,10.92136857,25.85115573,,,,,,,0.119931754,1195,9964,0.103250903,0.136612605,0.000870196,12,13790,,,1149.166667,0.000571306,8,14003,,,1750.375,0.002356638,33,14003,,,424.3333333,690,,,,,,,,,672,0.4,,,,,,,,0.2,0.41,0.35,,,,,,,,0.27,0.35,0.945185754,9846,10417,0.920674547,0.969696961,0.551759834,1599,2898,0.452980715,0.650538953,0.031523141,220,6979,,,0.17,399,,0.104468085,0.235531915,0.141791045,0,0.344421269,,,,,,,0.133597884,0.024679002,0.242516765,0.05539972,0.008185058,0.102614381,3.840969342,123153,32063,2.751701298,4.930237385,0.209731544,500,2384,0.106698366,0.312764722,10.15228426,14,13790,,,94.07337723,65,69095,72.60384649,119.9042417,,,,,,,,,,,,,101.8964053,76.54771577,132.9527057,,,,4,,,,,0,,,,,0.179598954,1030,5735,0.143352958,0.21584495,0.143181421,0.108760509,0.177602334,0.034873583,0.015427785,0.054319382,0.00505667,0.001280479,0.00883286,0.667634005,3911,5858,0.627809216,0.707458793,,,,,,,,,,0.718276137,0.583869161,0.852683113,0.626026074,0.576761576,0.675290573,0.185,,5858,0.120825273,0.249174728,80.93817887,,,78.94519723,82.93116051,,,,,,,,,,77.49000102,73.75603582,81.22396622,81.60248276,79.17806352,84.02690201,,,,287.8340454,177,38430,235.8248955,339.8431953,,,,,,,,,,398.0843471,274.0229475,559.0584295,271.229817,211.1691426,331.2904914,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.103,,,0.088,0.119,0.152,,,0.13,0.175,0.077,,,0.065,0.09,132,16,12121,,,0.103,1360,,,,0.107082226,1293.981622,12084,,,,,,,,,,,,,,,,,,,,,,,,,,0.278,,,0.264,0.293,0.134385273,1022,7605,0.114129954,0.154640592,0.073909532,183,2476,0.051271234,0.096547829,0.001071199,15,14003,,,933.5333333,0.925,96.2,104,,,,,,,,2.884501324,,,,,,,,2.470564507,3.393165241,2.649992958,,,,,,,,2.341274083,3.011088308,0.018154538,,,,,-668.8965,,,,,0.854061004,47824,55996,0.623284778,1.084837231,66025,,,57101.93617,74948.06383,,,,,,,,,,66750,40990,92510,64971,53164.53192,76777.46809,,,,,,0.449939686,746,1658,,,,,,,,0.352684589,,66025,,,10.06711409,6,596,,,,,,,,,,,,,,,,,,,,,,,,,,30.54267554,20,69095,17.45777806,49.59939157,28.94565453,,,,,,,,,,,,,37.20446011,20.34002455,62.42276229,,,,24.60380635,17,69095,14.33262388,39.39307738,,,,,,,,,,,,,32.07849797,18.6869072,51.36078275,,,,16.96694627,16,94301,9.698075793,27.55325776,,,,,,,,,,,,,19.34610176,10.57669386,32.45947147,,,,4.166666667,,1200,,,5,,0.832407829,9144,10985,,,0.434,,,,,16.87502144,,,,,0.757929592,4349,5738,0.675855806,0.840003378,0.125551049,712,5671,0.092394733,0.158707365,0.895085396,5136,5738,0.863535196,0.926635595,14003,,,,,0.170177819,2383,14003,,,0.282582304,3957,14003,,,0.006212954,87,14003,,,0.038063272,533,14003,,,0.011211883,157,14003,,,0.001571092,22,14003,,,0.184103406,2578,14003,,,0.763979147,10698,14003,,,0.003322516,43,12942,0,0.011145178,0.496893523,6958,14003,,,0.578411558,7727,13359,, -08,009,08009,CO,Baca County,2024,1,13029.86461,81,9351,8912.417745,18394.28107,0,,,,2,,,,2,,,,2,,,,2,13819.0357,9027.052918,20248.08911,,,,,2,,0.176,,,0.149,0.208,4.207816742,,,3.333240822,5.232237991,5.544455574,,,4.449113076,6.823915243,0.077490775,21,271,0.045657466,0.109324084,1,,,,,,,,,,,,,0.068965517,0.036358508,0.101572526,,,,,,,0.197,,,0.158,0.239,0.288,,,0.216,0.366,6.9,0.102930804,0.135,,,0.217,,,0.176,0.266,0.533941814,1872,3506,,,0.168371581,,,0.133551088,0.207292363,0.153846154,2,13,0.034991468,0.324991408,142.3,5,3514,,,16.39344262,11,671,8.183547492,29.33239719,,,,,,,,,,,,,18.86792453,9.0479032,34.69878499,,,,,,,0.126388357,330,2611,0.107324527,0.145452187,0.000569152,2,3514,,,1757,0.000582751,2,3432,,,1716,0.000291375,1,3432,,,3432,3536,,,,,,,,,3633,0.21,,,,,,,,,0.22,0.09,,,,,,,,0.23,0.09,0.858226837,2149,2504,0.819674911,0.896778764,0.612456747,531,867,0.507218973,0.717694522,0.017458778,36,2062,,,0.264,202,,0.160340426,0.367659575,,,,,,,,,,,,,0.31826087,0.213275435,0.423246305,6.077382433,97700,16076,3.806462459,8.348302408,0.110682111,86,777,0.052294084,0.169070137,19.92031873,7,3514,,,168.5677361,30,17797,113.7319437,240.6409249,,,,,,,,,,,,,181.2202161,119.4252643,263.6659,,,,4.7,,,,,1,,,,,0.124277457,215,1730,0.083393028,0.165161885,0.099357101,0.058784438,0.139929765,0.025433526,0.002224032,0.04864302,0.004624278,0,0.014189564,0.8126703,1193,1468,0.762511823,0.862828777,,,,,,,,,,,,,0.834384858,0.763647194,0.905122522,0.102,,1468,0.061454333,0.142545667,72.42887797,,,69.31222643,75.54552951,,,,,,,,,,,,,71.78267641,68.16429689,75.40105592,,,,615.5722119,81,9351,476.0835041,783.1587847,,,,,,,,,,,,,633.0168407,476.8749153,823.9584289,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.13,,,0.112,0.151,0.18,,,0.154,0.207,0.091,,,0.077,0.107,,,,,,0.135,480,,,,0.102930804,389.9018855,3788,,,,,,,,,,,,,,,,,,,,,,,,,,0.313,,,0.298,0.33,0.152921901,280,1831,0.127900624,0.177943177,0.065270936,53,812,0.043824127,0.086717745,0.001748252,6,3432,,,572,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.077970548,,,,,-5038.704467,,,,,0.759755258,37500,49358,0.533176308,0.986334207,47147,,,40127.93617,54166.06383,18750,15940.46809,21559.53192,,,,,,,35500,11545.10638,59454.89362,46349,39584.91489,53113.08511,,,,,,0.6,384,640,,,,,,,,0.197722018,,47147,,,29.23976608,5,171,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,40.03202562,10,24980,19.19691231,73.62032042,,,,,,,,,,,,,47.51496722,22.78527367,87.38171644,,,,16.66666667,,300,,,5,,0.818014706,2225,2720,,,0.495,,,,,23.29554975,,,,,0.737074401,1169,1586,0.679699798,0.794449005,0.132585752,201,1516,0.079967928,0.185203576,0.807061791,1280,1586,0.744084413,0.870039169,3432,,,,,0.225815851,775,3432,,,0.247086247,848,3432,,,0.010198135,35,3432,,,0.024184149,83,3432,,,0.004079254,14,3432,,,0,0,3432,,,0.127331002,437,3432,,,0.815559441,2799,3432,,,0.002103365,7,3328,0,0.020414936,0.498834499,1712,3432,,,1,3506,3506,, -08,011,08011,CO,Bent County,2024,1,12076.0908,122,15271,8846.533713,15305.64788,0,,,,2,,,,2,,,,2,13510.00083,8564.181623,20271.63459,1,12985.56657,8628.814682,18767.75922,,,,,2,,0.214,,,0.186,0.247,4.37648141,,,3.552308733,5.295239767,5.114652746,,,4.096948259,6.226577645,0.097014925,26,268,0.061578636,0.132451215,0,,,,,,,,,,,,,0.096551724,0.048478447,0.144625002,,,,,,,0.212,,,0.175,0.253,0.329,,,0.257,0.409,6.8,0.051260799,0.166,,,0.258,,,0.212,0.308,0.824778761,4660,5650,,,0.183558379,,,0.14801523,0.224476909,0.142857143,1,7,0.008995928,0.386311364,312.6,18,5759,,,30.12746234,26,863,19.68025865,44.14371273,,,,,,,,,,30.97345133,16.93347406,51.96818832,28.16901409,13.50813717,51.80381984,,,,,,,0.070142769,226,3222,0.055844896,0.084440641,,0,5759,,,,0.00018522,1,5399,,,5399,0.000740878,4,5399,,,1349.75,2728,,,,,,,,,3643,0.28,,,,,,,,0.33,0.27,0.38,,,,,,,,0.36,0.38,0.833997655,3557,4265,0.782303808,0.885691503,0.315619968,588,1863,0.223427674,0.407812262,0.035512965,63,1774,,,0.291,252,,0.186148936,0.395851064,,,,,,,,,,0.483695652,0.321700604,0.6456907,0.398328691,0.233731628,0.562925754,4.272519481,82246,19250,2.752015567,5.793023394,0.150053591,140,933,0.046248233,0.253858949,5.209237715,3,5759,,,115.7407407,33,28512,79.67060035,162.543032,,,,,,,,,,129.296412,66.80934284,225.8548114,117.9391682,71.00708358,184.1766206,,,,4.6,,,,,1,,,,,0.130319149,245,1880,0.069790762,0.190847536,0.096514745,0.046685939,0.146343552,0.006382979,0,0.019886271,0.029255319,0,0.066090932,0.807048985,1351,1674,0.738851977,0.875245992,,,,,,,,,,,,,0.801041667,0.682246273,0.91983706,0.196,,1674,0.107717151,0.284282849,73.89705682,,,71.48812233,76.30599132,,,,,,,,,,73.12874011,68.37853935,77.87894087,73.22834365,70.07789381,76.37879349,,,,597.7440075,122,15271,487.9492913,707.5387238,,,,,,,,,,709.5330379,499.5767383,977.9978288,605.1868225,468.0514447,769.946023,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.139,,,0.121,0.16,0.166,,,0.144,0.19,0.115,,,0.099,0.133,155.6,8,5142,,,0.166,970,,,,0.051260799,333.1439351,6499,,,,,,,,,,,,,,,,,,,,,,,,,,0.329,,,0.315,0.342,0.089193825,208,2332,0.070129995,0.108257655,0.019027484,18,946,0.010687059,0.02736791,0.000370439,2,5399,,,2699.5,0.533259259,287.96,540,,,,,,,,3.101427599,,,,,,,,2.931267029,3.182309495,3.090565411,,,,,,,,2.87437074,3.204236746,0.045381166,,,,,-3641.96595,,,,,1.085858722,40167,36991,0.649628216,1.522089229,42958,,,36659.78723,49256.21277,46688,28558.29787,64817.70213,,,,,,,45270,23924.46809,66615.53192,50033,32444.23404,67621.76596,,,,,,0.563527653,377,669,,,,,,,,0.356185111,,42958,,,14.1509434,3,212,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,24.87376564,10,40203,11.92793746,45.74374062,,,,,,,,,,,,,,,,,,,22.5,,400,,,9,,0.485897436,2274,4680,,,0.577,,,,,21.00836387,,,,,0.616150443,1114,1808,0.546674198,0.685626687,0.131801693,218,1654,0.063790684,0.199812702,0.813606195,1471,1808,0.768526315,0.858686075,5399,,,,,0.161140952,870,5399,,,0.196517874,1061,5399,,,0.059270235,320,5399,,,0.036673458,198,5399,,,0.015743656,85,5399,,,0.001296536,7,5399,,,0.334135951,1804,5399,,,0.566586405,3059,5399,,,0.013310836,71,5334,0,0.036897608,0.368031117,1987,5399,,,1,5650,5650,, -08,013,08013,CO,Boulder County,2024,1,4481.405435,2526,925754,4212.543705,4750.267165,0,,,,2,1484.884392,994.4503816,2132.541678,,12674.83,8352.792836,18441.21219,,5759.57598,5000.096683,6519.055278,,4392.443724,4079.993013,4704.894434,,,,,2,,0.103,,,0.085,0.122,3.129142841,,,2.476071933,3.817355383,5.025046541,,,4.274226701,5.799429003,0.082073676,1466,17862,0.078048389,0.086098963,0,,,,0.086529884,0.07007164,0.102988128,0.170212766,0.108179313,0.232246219,0.086540705,0.078124154,0.094957255,0.078675838,0.073782637,0.08356904,,,,0.090634441,0.059706005,0.121562877,0.11,,,0.084,0.137,0.174,,,0.144,0.206,8.8,0.026040509,0.085,,,0.12,,,0.097,0.146,0.947000526,313228,330758,,,0.217088223,,,0.187546964,0.250165752,0.291338583,37,127,0.246060136,0.337509154,355.9,1173,329543,,,5.275319353,484,91748,4.805336356,5.74530235,,,,,,,,,,21.23374381,19.0671901,23.40029753,1.466841658,1.186762496,1.793137862,,,,,,,0.071261807,19321,271127,0.062921382,0.079602233,0.00119863,395,329543,,,834.286076,0.001111559,364,327468,,,899.6373626,0.008846666,2897,327468,,,113.0369348,1488,,,,,,1344,1364,3134,1368,0.46,,,,,,0.37,0.41,0.29,0.47,0.56,,,,,0.35,0.54,0.47,0.35,0.57,0.95729521,208519,217821,0.953147687,0.961442733,0.847662335,72921,86026,0.823477592,0.871847077,0.025212041,5089,201848,,,0.086,4802,,0.060978723,0.111021277,0.368932039,0.32119288,0.416671198,0.086624204,0.016971959,0.156276449,,,,0.093900131,0.062961524,0.124838738,0.055294055,0.042906326,0.067681785,5.259704372,201757,38359,4.951341217,5.568067527,0.189768727,11266,59367,0.165934847,0.213602606,9.498001778,313,329543,,,68.9548649,1125,1631502,64.92542464,72.98430517,,,,28.0512062,17.57954158,42.4698633,120.1239173,72.32244525,187.5883769,45.69681045,36.91416623,54.47945467,76.52809126,71.70706748,81.34911505,,,,7.8,,,,,1,,,,,0.18505869,23570,127365,0.175676962,0.194440417,0.17014593,0.160469221,0.179822639,0.014132611,0.011293725,0.016971498,0.010992031,0.008108196,0.013875865,0.575530288,100826,175188,0.564446361,0.586614214,0.643375681,0.474219706,0.812531655,0.618883529,0.566952192,0.670814866,0.546160878,0.451339455,0.6409823,0.685737545,0.648859946,0.722615144,0.629555506,0.616641451,0.642469561,0.302,,175188,0.284816096,0.319183904,82.21512423,,,81.90132257,82.52892588,,,,90.27467891,87.1345744,93.41478341,74.15297708,69.69082266,78.61513151,80.86017159,79.63487756,82.08546563,82.2093423,81.86770174,82.55098285,,,,221.5720376,2526,925754,212.6345645,230.5095107,,,,92.46305217,66.91596933,124.5471245,564.6861258,419.1209267,744.4682593,291.9470881,257.9134598,325.9807164,217.7270736,207.887362,227.5667852,,,,30.60219804,92,300632,24.66969077,37.53087928,,,,,,,,,,36.18981558,23.18749771,53.84757693,26.10798855,19.55667499,34.14989184,,,,3.48773842,64,18350,2.685983572,4.453764099,,,,,,,,,,5.305651672,3.363328036,7.961082559,2.99850075,2.100113062,4.151188946,,,,,,,0.088,,,0.075,0.103,0.147,,,0.128,0.168,0.063,,,0.054,0.074,165.8,480,289554,,,0.085,27960,,,,0.026040509,7670.674572,294567,,,14.95559105,147,982910,12.53789899,17.37328312,,,,,,,,,,16.0276258,10.04442776,24.26601807,15.24710831,12.47241771,18.0217989,,,,0.238,,,0.225,0.252,0.081917717,17283,210980,0.072385802,0.091449632,0.037116222,2361,63611,0.028775797,0.045456648,0.001441362,472,327468,,,693.7881356,0.910640131,4438.46,4874,,,0.049872439,1212,24302,0.026319774,0.073425103,3.360225777,,,,,,,,2.700427968,3.600689796,3.297308361,,,,,,4.035491822,,2.519700708,3.557876453,0.134832832,,,,,3052.968,,,,,0.794765126,67439,84854,0.755917463,0.833612789,96584,,,91479.65957,101688.3404,,,,108385,99812.23404,116957.766,59179,35518.40426,82839.59575,75536,69035.23404,82036.76596,103630,100233.0638,107026.9362,,,,,,0.263150382,11061,42033,,,54.67270631,,,,,0.372225213,,96584,,,17.81895937,250,14030,,,1.891689763,43,2273100,1.369025261,2.548093696,,,,,,,,,,,,,1.811965541,1.239383089,2.557954703,,,,18.21927452,324,1631502,16.18539371,20.25315533,19.85900109,,,,,,,,,,10.37145271,6.574611344,15.5622714,19.7794225,17.40451359,22.15433142,,,,11.0940716,181,1631502,9.477824536,12.71031866,,,,,,,,,,7.030278531,4.01841162,11.41673189,12.80738717,10.83515017,14.77962418,,,,7.962694118,181,2273100,6.802643829,9.122744408,,,,,,,,,,10.74242817,7.43944379,15.01146662,7.474357856,6.199261535,8.749454178,,,,6.2,,30000,,,186,,0.836184024,206111,246490,,,0.749,,,,,160.035183,,,,,0.62273034,83066,133390,0.612989944,0.632470736,0.184770703,24122,130551,0.173452627,0.196088778,0.940827648,125497,133390,0.934410458,0.947244839,327468,,,,,0.172887122,56615,327468,,,0.165906287,54329,327468,,,0.010547596,3454,327468,,,0.008962708,2935,327468,,,0.051461517,16852,327468,,,0.000821454,269,327468,,,0.140563353,46030,327468,,,0.769128587,251865,327468,,,0.013247701,4177,315300,0.010958828,0.015536573,0.494469689,161923,327468,,,0.094026448,31100,330758,, -08,014,08014,CO,Broomfield County,2024,1,4831.205864,552,205366,4194.576983,5467.834746,0,,,,2,,,,2,,,,2,5595.605592,3959.78355,7680.405857,,4727.665324,4009.031092,5446.299556,,,,,2,,0.094,,,0.078,0.113,2.715022448,,,2.092402874,3.41470318,4.600520164,,,3.744344553,5.443841037,0.087619878,402,4588,0.079438366,0.09580139,0,,,,0.11971831,0.08889052,0.1505461,,,,0.096654275,0.07626711,0.11704144,0.080296679,0.070731835,0.089861522,,,,0.105769231,0.046661555,0.164876906,0.098,,,0.073,0.126,0.258,,,0.206,0.312,8.8,0.050412052,0.071,,,0.121,,,0.095,0.15,0.996923575,73884,74112,,,0.209768897,,,0.172901462,0.249845706,0.578947368,11,19,0.480028377,0.663345881,256.2,193,75325,,,5.815490352,88,15132,4.664193317,7.164846765,,,,,,,,,,16.0895418,11.77956678,21.46119402,3.12195122,2.135412323,4.407263618,,,,,,,0.050220264,3249,64695,0.043071328,0.057369201,0.001168271,88,75325,,,855.9659091,0.000959,73,76121,,,1042.753425,0.002469752,188,76121,,,404.8989362,1337,,,,,,,,1315,1325,0.49,,,,,,0.31,,0.22,0.51,0.6,,,,,,0.44,0.32,0.49,0.61,0.96260983,50177,52126,0.95581892,0.96940074,0.873169421,19497,22329,0.832737315,0.913601527,0.02602108,1106,42504,,,0.055,841,,0.03712766,0.07287234,,,,0.023320896,0,0.087479983,0.080536913,0,0.437288693,0.183368128,0.118132604,0.248603652,0.029963967,0.016236235,0.043691699,3.620159908,213260,58909,3.363379219,3.876940596,0.149547398,2379,15908,0.116622925,0.18247187,6.505144374,49,75325,,,59.61184814,212,355634,51.5872974,67.63639887,,,,,,,,,,45.98003153,28.46236422,70.28536244,65.3558571,55.72746091,74.9842533,,,,8.8,,,,,1,,,,,0.113602941,3090,27200,0.096662902,0.130542981,0.100873119,0.083908024,0.117838214,0.011580882,0.00617008,0.016991685,0.008272059,0.004560631,0.011983487,0.642733189,26667,41490,0.618806856,0.666659521,,,,0.559928444,0.489668244,0.630188644,,,,0.750617284,0.696817492,0.804417076,0.672645602,0.644351459,0.700939745,0.428,,41490,0.394447355,0.461552645,82.04618232,,,81.31593395,82.7764307,,,,86.46252977,82.57465444,90.35040511,,,,82.66168838,78.8303197,86.49305706,81.93263515,81.1495751,82.71569519,,,,225.533825,552,205366,206.3153182,244.7523319,,,,,,,,,,246.4883624,184.0892988,323.2366936,227.7812742,206.1876501,249.3748983,,,,44.89045281,31,69057,30.50088475,63.7184145,,,,,,,,,,,,,37.81353725,22.41069867,59.76169125,,,,4.681847202,22,4699,2.934088715,7.088372928,,,,,,,,,,,,,,,,,,,,,,0.078,,,0.066,0.092,0.129,,,0.11,0.151,0.06,,,0.05,0.071,18.5,12,64694,,,0.071,5190,,,,0.050412052,2817.479182,55889,,,14.2184877,31,218026,9.660772559,20.18200834,,,,,,,,,,,,,15.13711196,9.79594074,22.34536332,,,,0.262,,,0.248,0.276,0.058153897,2825,48578,0.048621982,0.067685812,0.027259347,463,16985,0.018918921,0.035599772,0.000893315,68,76121,,,1119.426471,,,,,,,,,,,3.571602078,,,,,,3.426510824,,2.867854048,3.768052338,3.442566272,,,,,,3.435246925,,2.707070361,3.645968423,0.037039689,,,,,,,,,,0.762902125,70409,92291,0.717789193,0.808015056,114746,,,103772.383,125719.617,101136,93085.10638,109186.8936,153693,116093.1702,191292.8298,160673,127243.383,194102.617,93173,82550.87234,103795.1277,117631,113452.4468,121809.5532,,,,,,0.195142457,2089,10705,,,56.16147283,,,,,0.329588831,,114746,,,12.87318543,47,3651,,,3.078640801,15,487228,1.723091886,5.077749816,,,,,,,,,,,,,2.681108907,1.285695934,4.930654738,,,,15.75368177,58,355634,11.93168473,20.41072199,16.30890185,,,,,,,,,,,,,17.37340748,12.71951781,23.17369092,,,,10.40395463,37,355634,7.325344193,14.34048098,,,,,,,,,,,,,11.44650605,7.777345511,16.24740164,,,,4.310097121,21,487228,2.66801805,6.588441291,,,,,,,,,,,,,3.485441579,1.855850848,5.960211249,,,,3.076923077,,7800,,,24,,0.913815403,46632,51030,,,0.757,,,,,118.7732371,,,,,0.639371491,19247,30103,0.625639201,0.653103782,0.108273611,3218,29721,0.091855889,0.124691334,0.949573132,28585,30103,0.937284443,0.961861821,76121,,,,,0.202086152,15383,76121,,,0.157091998,11958,76121,,,0.013964609,1063,76121,,,0.008762365,667,76121,,,0.075616453,5756,76121,,,0.001615849,123,76121,,,0.138871008,10571,76121,,,0.744078507,56640,76121,,,0.012890952,908,70437,0.008728739,0.017053166,0.494883147,37671,76121,,,0.003953476,293,74112,, -08,015,08015,CO,Chaffee County,2024,1,6169.696171,234,55209,4746.973414,7592.418927,0,,,,2,,,,2,,,,2,,,,2,6334.537276,4678.251624,7990.822927,,,,,2,,0.132,,,0.11,0.159,3.445168285,,,2.701114201,4.350322358,5.081860109,,,4.120192294,6.194671237,0.089048106,87,977,0.071188625,0.106907588,0,,,,,,,,,,0.095238095,0.039090143,0.151386048,0.087061669,0.067846795,0.106276542,,,,,,,0.153,,,0.116,0.192,0.247,,,0.19,0.313,8.5,0.029234847,0.097,,,0.165,,,0.13,0.206,0.998613678,19449,19476,,,0.186530325,,,0.151165331,0.227181625,0.2,5,25,0.10034726,0.316172705,109.6,22,20074,,,6.095374686,17,2789,3.550780376,9.759285341,,,,,,,,,,,,,4.780530204,2.386423454,8.553689054,,,,,,,0.101851852,1397,13716,0.08636249,0.117341214,0.000946498,19,20074,,,1056.526316,0.000642832,13,20223,,,1555.615385,0.002966919,60,20223,,,337.05,1034,,,,,,,,,1069,0.39,,,,,,,,0.25,0.39,0.43,,,,,,,,0.35,0.43,0.930431979,14431,15510,0.910942974,0.949920984,0.617229662,3088,5003,0.51055915,0.723900175,0.027073791,266,9825,,,0.112,330,,0.070297872,0.153702128,,,,,,,,,,0.425427873,0.123186012,0.727669734,0.051116839,0.006204159,0.096029518,4.535898701,137914,30405,3.657206679,5.414590723,0.364412568,1067,2928,0.236433224,0.492391913,16.43917505,33,20074,,,88.3322085,89,100756,70.93801674,108.7003835,,,,,,,,,,,,,93.27923138,73.96462921,116.0940779,,,,3.9,,,,,0,,,,,0.171098266,1480,8650,0.123845122,0.21835141,0.128295255,0.090173058,0.166417452,0.029479769,0.001139485,0.057820052,0.017919075,0.001721559,0.034116592,0.649670482,5619,8649,0.576883429,0.722457536,,,,,,,,,,,,,0.664055238,0.592015815,0.736094661,0.209,,8649,0.141958207,0.276041794,81.83767845,,,80.45986939,83.21548751,,,,,,,,,,83.38735901,77.75231501,89.022403,81.57115497,80.04270502,83.09960491,,,,266.7441243,234,55209,227.7267327,305.7615158,,,,,,,,,,,,,272.3844045,229.3385257,315.4302834,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.103,,,0.087,0.121,0.154,,,0.131,0.178,0.073,,,0.061,0.086,99.9,18,18015,,,0.097,1890,,,,0.029234847,520.6433905,17809,,,19.64282791,12,61091,10.14973582,34.31206732,,,,,,,,,,,,,23.09379932,11.9329031,40.34021987,,,,0.281,,,0.263,0.296,0.113851289,1228,10786,0.094787459,0.132915119,0.058995138,182,3085,0.041122797,0.076867478,0.001137319,23,20223,,,879.2608696,0.875,148.75,170,,,,,,,,2.954680904,,,,,,,,2.455607471,3.050532419,2.594055749,,,,,,,,,2.692782438,0.023037141,,,,,3413.2175,,,,,0.867051103,49017,56533,0.705741877,1.028360329,75151,,,64949.46809,85352.53192,,,,,,,,,,61700,41258.80851,82141.19149,66484,60839.91489,72128.08511,,,,,,0.265563779,610,2297,,,,,,,,0.348059241,,75151,,,13.40482574,10,746,,,,,,,,,,,,,,,,,,,,,,,,,,35.4754446,38,100756,24.41966374,49.82071385,37.71487554,,,,,,,,,,,,,34.25481304,22.57413764,49.83895452,,,,19.8499345,20,100756,12.12485568,30.6566139,,,,,,,,,,,,,19.82183667,11.54695032,31.73668068,,,,10.83251488,15,138472,6.062876345,17.86658593,,,,,,,,,,,,,11.88535724,6.497835402,19.94160989,,,,11.33333333,,1500,,,17,,0.826634529,13718,16595,,,0.582,,,,,31.29321284,,,,,0.695896757,6309,9066,0.651155853,0.740637662,0.173053152,1540,8899,0.127686669,0.218419635,0.83366424,7558,9066,0.79482033,0.872508151,20223,,,,,0.147159175,2976,20223,,,0.25995154,5257,20223,,,0.017158681,347,20223,,,0.017801513,360,20223,,,0.010334767,209,20223,,,0.000939524,19,20223,,,0.102803738,2079,20223,,,0.844879593,17086,20223,,,0.015853594,298,18797,0.007787413,0.023919774,0.468872076,9482,20223,,,0.435664408,8485,19476,, -08,017,08017,CO,Cheyenne County,2024,1,9018.49225,31,4844,4659.986547,15753.49103,1,,,,2,,,,2,,,,2,,,,2,11084.93666,5315.657994,20385.59318,1,,,,2,,0.138,,,0.116,0.163,3.589591808,,,2.909670792,4.330811976,5.106176506,,,4.163314207,6.091492675,,,,,,0,,,,,,,,,,,,,,,,,,,,,,0.159,,,0.125,0.196,0.264,,,0.198,0.339,8.1,0.089192835,0.086,,,0.18,,,0.142,0.221,0.518878719,907,1748,,,0.184520021,,,0.147156488,0.226448162,0.153846154,2,13,0.034991468,0.324991408,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.097767514,127,1299,0.082278152,0.113256875,0,0,1707,,,-1707,0,0,1732,,,-1732,,0,1732,,,,,,,,,,,,,,0.23,,,,,,,,,0.23,0.28,,,,,,,,,0.29,0.929795918,1139,1225,0.885604214,0.973987623,0.785377359,333,424,0.668348976,0.902405741,0.019029496,20,1051,,,0.205,86,,0.125170213,0.284829787,,,,,,,,,,,,,0.133738602,0.05140266,0.216074544,3.791104,118472,31250,2.606547933,4.975660067,0.087264151,37,424,0,0.189620055,0,0,1707,,,,,,,,,,,,,,,,,,,,,,,,,,4.8,,,,,0,,,,,0.054658385,44,805,0.024938952,0.084377818,0.054707379,0,0.113657947,0.004968944,0,0.038482237,0,0,0.025118317,0.748291572,657,878,0.682277938,0.814305205,,,,,,,,,,,,,0.794569067,0.703556758,0.885581377,0.146,,878,0.051533602,0.240466398,77.51073168,,,72.916011,82.10545237,,,,,,,,,,,,,,,,,,,439.2513978,31,4844,286.9335965,643.6050704,,,,,,,,,,,,,495.3947194,310.4612332,750.0335586,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.108,,,0.092,0.125,0.161,,,0.137,0.186,0.077,,,0.065,0.091,,,,,,0.086,150,,,,0.089192835,163.7580455,1836,,,,,,,,,,,,,,,,,,,,,,,,,,0.294,,,0.279,0.308,0.115299335,104,902,0.093852526,0.136746143,0.055825243,23,412,0.035569924,0.076080562,0.001154734,2,1732,,,866,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.043440107,,,,,5626.156,,,,,0.863082464,46250,53587,0.6403933,1.085771628,62891,,,53484.19149,72297.80851,,,,,,,,,,,,,69808,52274.04255,87341.95745,,,,,,0.303135889,87,287,,,,,,,,0.268925601,,62891,,,10.81081081,2,185,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,200,,,-888,,0.838376384,1136,1355,,,0.511,,,,,15.95273445,,,,,0.789189189,584,740,0.72590241,0.852475969,0.081991215,56,683,0,0.173847405,0.877027027,649,740,0.847757643,0.906296411,1732,,,,,0.245381062,425,1732,,,0.223441109,387,1732,,,0.010969977,19,1732,,,0.017898383,31,1732,,,0.021362587,37,1732,,,0.000577367,1,1732,,,0.129907621,225,1732,,,0.808891455,1401,1732,,,0.021144279,34,1608,0,0.061345623,0.484988453,840,1732,,,1,1748,1748,, -08,019,08019,CO,Clear Creek County,2024,1,4787.411873,118,26828,3104.404431,6470.419316,0,,,,2,,,,2,,,,2,,,,2,4688.7106,2933.849117,6443.572084,,,,,2,,0.102,,,0.082,0.124,2.98345386,,,2.234838539,3.754918493,4.597824594,,,3.609071956,5.579162342,0.095360825,37,388,0.066135261,0.124586389,0,,,,,,,,,,,,,0.078864353,0.049193598,0.108535109,,,,,,,0.116,,,0.085,0.151,0.237,,,0.174,0.307,8.8,0.028015883,0.084,,,0.137,,,0.104,0.175,0.731935724,6878,9397,,,0.201102678,,,0.161041313,0.246261676,0.4,4,10,0.227273625,0.556899967,201.1,19,9446,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.082538818,606,7342,0.069432435,0.095645201,0.00021173,2,9446,,,4723,0.000427579,4,9355,,,2338.75,0.000427579,4,9355,,,2338.75,419,,,,,,,,,436,0.39,,,,,,,,,0.38,0.43,,,,,,,,,0.43,0.966243622,7385,7643,0.94941359,0.983073653,0.723829787,1701,2350,0.60257805,0.845081525,0.029368814,181,6163,,,0.104,131,,0.064680851,0.143319149,,,,,,,,,,,,,0.037142857,0,0.084128576,4.200084226,179520,42742,3.446113167,4.954055285,0.144665461,160,1106,0.046183016,0.243147907,3.175947491,3,9446,,,87.66254096,42,47911,63.17944884,118.494289,,,,,,,,,,,,,87.76507425,61.79471172,120.9725939,,,,4.3,,,,,1,,,,,0.108447489,475,4380,0.06764644,0.149248537,0.097334878,0.059887531,0.134782226,0.014611872,0,0.032712203,0.005707763,0,0.014147728,0.616791045,3306,5360,0.543183454,0.690398635,,,,,,,,,,,,,0.577537058,0.479254606,0.67581951,0.507,,5360,0.406398495,0.607601505,82.77619748,,,80.5795576,84.97283735,,,,,,,,,,,,,82.44177878,80.24146686,84.6420907,,,,245.5139918,118,26828,196.1646051,294.8633784,,,,,,,,,,,,,251.2025345,199.0109429,303.394126,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.085,,,0.071,0.101,0.138,,,0.117,0.161,0.063,,,0.052,0.075,233.8,20,8556,,,0.084,790,,,,0.028015883,254.608341,9088,,,,,,,,,,,,,,,,,,,,,,,,,,0.264,,,0.246,0.281,0.089220564,538,6030,0.073731202,0.104709926,0.053584359,74,1381,0.036903508,0.07026521,0.000213789,2,9355,,,4677.5,,,,,,,,,,,2.907854173,,,,,,,,,3.001565207,2.787351477,,,,,,,,,2.791316422,0.041462809,,,,,5043.427,,,,,0.970914331,66028,68006,0.781579979,1.160248683,90350,,,77502.17021,103197.8298,53750,41843.44681,65656.55319,,,,,,,70186,38333.91489,102038.0851,91798,67796.6383,115799.3617,,,,,,0.189655172,132,696,,,39.61431472,,,,,0.261427781,,90350,,,31.14186851,9,289,,,,,,,,,,,,,,,,,,,,,,,,,,32.83072771,17,47911,17.94886434,55.0843825,35.48245706,,,,,,,,,,,,,26.29245604,12.60825465,48.35276278,,,,31.30805034,15,47911,17.52287811,51.63786786,,,,,,,,,,,,,30.83637744,16.41907228,52.73114455,,,,,,,,,,,,,,,,,,,,,,,,,,,10,,700,,,7,,0.82991128,6548,7890,,,0.596,,,,,121.7434485,,,,,0.80017433,3672,4589,0.755775242,0.844573418,0.115182097,525,4558,0.071559022,0.158805173,0.904990194,4153,4589,0.868627809,0.941352579,9355,,,,,0.135435596,1267,9355,,,0.230037413,2152,9355,,,0.00929984,87,9355,,,0.01475147,138,9355,,,0.014216996,133,9355,,,0.000855158,8,9355,,,0.084981293,795,9355,,,0.863067878,8074,9355,,,0.009088918,83,9132,0,0.01955778,0.474826296,4442,9355,,,1,9397,9397,, -08,021,08021,CO,Conejos County,2024,1,12726.32219,157,22040,9713.836485,15738.8079,0,,,,2,,,,2,,,,2,15120.5608,10802.35032,20589.9122,,10101.34023,6598.53081,14800.80388,,,,,2,,0.193,,,0.163,0.221,4.072102566,,,3.206432979,4.961800251,5.172108257,,,4.142791883,6.282643606,0.117117117,78,666,0.092695147,0.141539087,0,,,,,,,,,,0.142307692,0.099840911,0.184774473,0.103351955,0.071817531,0.13488638,,,,,,,0.163,,,0.13,0.196,0.304,,,0.233,0.383,8.1,0.032568024,0.113,,,0.235,,,0.191,0.279,0.063664388,475,7461,,,0.16591627,,,0.132357647,0.204405209,0.6,3,5,0.381076261,0.751373291,354.7,27,7612,,,16.24015748,33,2032,11.17897715,22.80721913,,,,,,,,,,23.78686965,15.39360785,35.11411199,,,,,,,,,,0.110833333,665,6000,0.094152482,0.127514184,0.000131372,1,7612,,,7612,0.000263887,2,7579,,,3789.5,0.000527774,4,7579,,,1894.75,1285,,,,,,,,1510,521,0.22,,,,,,,,0.2,0.23,0.27,,,,,,,,0.27,0.27,0.8977501,4469,4978,0.872716867,0.922783334,0.570170288,971,1703,0.480142034,0.660198542,0.031981869,127,3971,,,0.23,436,,0.141829787,0.318170213,,,,,,,,,,0.164585698,0.097482816,0.23168858,0.196447231,0.117954146,0.274940316,4.680631569,96641,20647,3.707735308,5.65352783,0.125259875,241,1924,0.075473113,0.175046638,3.94114556,3,7612,,,156.1570494,63,40344,119.9953644,199.792701,,,,,,,,,,187.8069922,133.5491307,256.7383409,125.5252961,79.57227003,188.3495765,,,,3.9,,,,,1,,,,,0.169254658,545,3220,0.129555299,0.208954018,0.104792332,0.068164104,0.141420561,0.049378882,0.030247272,0.068510492,0.017080745,0.000028281,0.03413321,0.668363883,1969,2946,0.626922628,0.709805139,,,,,,,,,,0.667364017,0.587674355,0.747053679,0.555061179,0.438695647,0.671426711,0.412,,2946,0.32691064,0.49708936,72.70405698,,,70.55821068,74.84990328,,,,,,,,,,70.83659327,67.74589345,73.92729308,74.87502696,71.85488508,77.89516885,,,,550.9562066,157,22040,457.5305044,644.3819088,,,,,,,,,,636.2290527,503.7085325,792.9312308,462.2797111,346.2792259,604.673244,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.127,,,0.109,0.145,0.163,,,0.14,0.187,0.109,,,0.093,0.127,,,,,,0.113,860,,,,0.032568024,268.8816083,8256,,,,,,,,,,,,,,,,,,,,,,,,,,0.307,,,0.293,0.321,0.138047954,570,4129,0.115409656,0.160686251,0.051750381,102,1971,0.03506953,0.068431232,0.000791661,6,7579,,,1263.166667,0.886881188,89.575,101,,,,,,,,3.392976487,,,,,,,,3.229656762,3.519852845,3.237726217,,,,,,,,2.937318791,3.577582171,0.101520927,,,,,-551.0416667,,,,,0.788405797,34000,43125,0.640032259,0.936779335,49141,,,42144.57447,56137.42553,,,,,,,,,,36260,34025.95745,38494.04255,54250,45089.82979,63410.17021,,,,,,0.560735391,854,1523,,,,,,,,0.274536538,,49141,,,7.889546351,4,507,,,,,,,,,,,,,,,,,,,,,,,,,,33.96055054,14,40344,17.54791203,59.32224736,34.70156653,,,,,,,,,,,,,,,,,,,37.18024985,15,40344,20.8095036,61.32316793,,,,,,,,,,,,,,,,,,,17.66690811,10,56603,8.471969147,32.49007304,,,,,,,,,,,,,,,,,,,5,,1000,,,5,,0.72946128,4333,5940,,,0.431,,,,,27.64687279,,,,,0.789763525,2438,3087,0.76289164,0.816635409,0.115112994,326,2832,0.076618043,0.153607946,0.770327179,2378,3087,0.720605011,0.820049346,7579,,,,,0.253067687,1918,7579,,,0.201081937,1524,7579,,,0.007520781,57,7579,,,0.046444122,352,7579,,,0.011083256,84,7579,,,0.002111097,16,7579,,,0.50112152,3798,7579,,,0.459955139,3486,7579,,,0.012849478,91,7082,0.000514955,0.025184,0.490961868,3721,7579,,,1,7461,7461,, -08,023,08023,CO,Costilla County,2024,1,16383.94785,77,10217,11132.09767,23255.70616,0,,,,2,,,,2,,,,2,17483.09508,10822.31141,26724.76798,1,14291.27367,6169.957605,28159.50638,1,,,,2,,0.215,,,0.185,0.248,4.282692952,,,3.395893953,5.23029235,5.098584192,,,4.048312135,6.245542018,0.190476191,44,231,0.139837176,0.241115205,0,,,,,,,,,,0.197080292,0.130468143,0.263692441,0.173913044,0.084477431,0.263348656,,,,,,,0.171,,,0.139,0.205,0.317,,,0.246,0.393,1.6,0.579652656,0.152,,,0.262,,,0.214,0.315,0.425835953,1490,3499,,,0.146301011,,,0.115756063,0.181730154,0.307692308,4,13,0.157450571,0.460702037,469,17,3625,,,20.37845706,14,687,11.14109211,34.19158824,,,,,,,,,,20.91254753,10.43946838,37.41832417,,,,,,,,,,0.135638298,357,2632,0.115382979,0.155893617,,0,3625,,,,0,0,3603,,,-3603,0.000277547,1,3603,,,3603,814,,,,,,,,890,765,0.21,,,,,,,,0.24,0.2,0.31,,,,,,,,0.31,0.32,0.883454337,2312,2617,0.839311115,0.927597559,0.656534954,432,658,0.5193033,0.793766609,0.041456583,74,1785,,,0.347,227,,0.212361702,0.481638298,,,,,,,,,,0.316159251,0.142888345,0.489430157,0.086734694,0,0.275004588,6.068444091,76250,12565,5.005438386,7.131449796,0.375594295,237,631,0.205026307,0.546162283,8.275862069,3,3625,,,183.8524978,35,19037,128.0600011,255.6943183,,,,,,,,,,147.4031041,85.86774013,236.0066489,261.9818154,152.6140618,419.458265,,,,3.8,,,,,0,,,,,0.179012346,290,1620,0.113780784,0.244243908,0.102180685,0.056952402,0.147408969,0.051851852,0.011541201,0.092162503,0.024691358,0.0052271,0.044155616,0.653675819,738,1129,0.539824627,0.767527012,,,,,,,,,,0.692883895,0.499623781,0.88614401,,,,0.378,,1129,0.247593136,0.508406864,73.40660418,,,69.21165796,77.60155041,,,,,,,,,,72.0313128,66.85101147,77.21161413,,,,,,,566.8468971,77,10217,428.1900544,736.0978455,,,,,,,,,,565.4184524,393.8346691,786.3601936,572.4231367,344.6361215,893.9096353,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.135,,,0.117,0.154,0.164,,,0.142,0.187,0.121,,,0.103,0.139,222,7,3153,,,0.152,530,,,,0.579652656,2042.695959,3524,,,,,,,,,,,,,,,,,,,,,,,,,,0.309,,,0.293,0.323,0.162493613,318,1957,0.136280847,0.188706379,0.056396149,41,727,0.038523808,0.074268489,0.000277547,1,3603,,,3603,,,,,,,,,,,2.503467066,,,,,,,,2.509982081,,2.214468673,,,,,,,,2.394008866,,0.013351886,,,,,-12420.125,,,,,0.678947368,32250,47500,0.304132962,1.053761775,36970,,,31527.2766,42412.7234,,,,,,,,,,38333,27457.08511,49208.91489,31912,23216.51064,40607.48936,,,,,,0.807359307,373,462,,,,,,,,0.367595348,,36970,,,28.57142857,3,105,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,400,,,-888,,0.693377483,2094,3020,,,0.277,,,,,14.4264475,,,,,0.762745098,1167,1530,0.72748463,0.798005566,0.124547429,172,1381,0.065007918,0.184086941,0.82875817,1268,1530,0.775042978,0.882473362,3603,,,,,0.183180683,660,3603,,,0.281709686,1015,3603,,,0.021093533,76,3603,,,0.061060228,220,3603,,,0.014709964,53,3603,,,0.003330558,12,3603,,,0.580072162,2090,3603,,,0.351651402,1267,3603,,,0.035629454,120,3368,0.009546553,0.061712355,0.476824868,1718,3603,,,1,3499,3499,, -08,025,08025,CO,Crowley County,2024,1,13005.51165,111,16754,8058.839658,17952.18364,0,,,,2,,,,2,,,,2,13859.9944,5572.436592,28556.88569,1,14615.24369,8927.370541,22572.05852,1,,,,2,,0.224,,,0.192,0.258,4.462761676,,,3.59084322,5.461755913,5.044027877,,,3.976790304,6.249850235,0.117948718,23,195,0.072676445,0.163220991,0,,,,,,,,,,,,,0.111111111,0.056236269,0.165985953,,,,,,,0.222,,,0.181,0.265,0.327,,,0.25,0.411,7.4,0.005715182,0.161,,,0.266,,,0.219,0.32,0.020938872,124,5922,,,0.202295567,,,0.161065202,0.249316839,0.571428571,4,7,0.387251166,0.710103252,232.9,14,6012,,,16.44245142,11,669,8.208012507,29.42008746,,,,,,,,,,,,,,,,,,,,,,0.062012481,159,2564,0.045331629,0.078693332,,0,6012,,,,0.000178126,1,5614,,,5614,,0,5614,,,,2270,,,,,,,,,2616,0.33,,,,,,,,,0.32,0.27,,,,,,,,0.29,0.27,0.810307802,3396,4191,0.795956188,0.824659417,0.335217637,593,1769,0.234421442,0.436013832,0.037956204,52,1370,,,0.314,209,,0.200808511,0.427191489,,,,,,,,,,0.296577947,0.17494323,0.418212664,0.143236074,0.047081028,0.239391121,5.62497338,79239,14087,3.888936524,7.361010236,0.290476191,244,840,0.193299883,0.387652498,6.653359947,4,6012,,,118.8979855,35,29437,82.81680335,165.3583156,,,,,,,,,,127.3479784,65.80255873,222.4512899,140.0203666,87.75001828,211.9925177,,,,4.6,,,,,0,,,,,0.13028169,185,1420,0.075475877,0.185087504,0.119101124,0.05395204,0.184250208,0.020422535,0,0.048249213,0.01056338,0,0.026608619,0.774728781,1214,1567,0.678558981,0.870898582,,,,,,,,,,,,,0.711711712,0.54824609,0.875177333,0.397,,1567,0.214869636,0.579130364,72.45568248,,,68.91718276,75.9941822,,,,,,,,,,71.92379724,63.19043556,80.65715892,71.42470481,67.27602273,75.57338689,,,,586.0318564,111,16754,468.9873082,703.0764046,,,,,,,,,,532.2261726,325.0975731,821.9801574,664.1935985,516.7822649,840.5795083,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.142,,,0.122,0.163,0.164,,,0.142,0.188,0.116,,,0.099,0.135,396.4,22,5550,,,0.161,970,,,,0.005715182,33.27950186,5823,,,,,,,,,,,,,,,,,,,,,,,,,,0.324,,,0.313,0.336,0.08200213,154,1878,0.059363832,0.104640428,0.006849315,5,730,0.003274847,0.010423783,0.000712505,4,5614,,,1403.5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.012400011,,,,,-4254.905,,,,,0.916827778,47422,51724,0.591361924,1.242293633,49785,,,44298.19149,55271.80851,32411,29749.21277,35072.78723,,,,,,,42188,26697.44681,57678.55319,40463,28975.85106,51950.14894,,,,,,0.70471464,284,403,,,,,,,,0.390298283,,49785,,,6.097560976,1,164,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,400,,,0,,0.366492147,1750,4775,,,0.587,,,,,1.352843562,,,,,0.711787072,936,1315,0.637953905,0.785620239,0.134417808,157,1168,0.06141998,0.207415637,0.796958175,1048,1315,0.731103947,0.862812402,5614,,,,,0.121660135,683,5614,,,0.133950837,752,5614,,,0.101531885,570,5614,,,0.037228358,209,5614,,,0.014784467,83,5614,,,0.000356252,2,5614,,,0.332027075,1864,5614,,,0.520306377,2921,5614,,,0.011588519,65,5609,0,0.028978444,0.27039544,1518,5614,,,1,5922,5922,, -08,027,08027,CO,Custer County,2024,1,6608.793469,83,13797,3698.891537,10900.19979,1,,,,2,,,,2,,,,2,,,,2,6801.879702,3621.714473,11631.42144,1,,,,2,,0.118,,,0.098,0.139,3.280578351,,,2.536429138,4.136619184,4.918950357,,,3.892350166,6.001440668,0.138339921,35,253,0.095795996,0.180883846,0,,,,,,,,,,,,,0.138528139,0.093978967,0.18307731,,,,,,,0.138,,,0.105,0.173,0.244,,,0.179,0.316,8.5,0.063059971,0.083,,,0.159,,,0.125,0.196,0.939838435,4421,4704,,,0.163874185,,,0.128730639,0.203880862,0.4,4,10,0.227273625,0.556899967,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.094466524,309,3271,0.078977162,0.109955886,0.000198216,1,5045,,,5045,,0,5335,,,,0.000937207,5,5335,,,1067,302,,,,,,,,,308,0.32,,,,,,,,,0.32,0.33,,,,,,,,,0.33,0.969368894,3671,3787,0.944981413,0.993756374,0.638266069,427,669,0.475612213,0.800919925,0.029424492,68,2311,,,0.185,143,,0.11112766,0.25887234,,,,,,,,,,,,,0.070626003,0,0.143669235,4.215843614,119262,28289,3.263044633,5.168642595,0.033175356,28,844,0,0.076990793,29.73240833,15,5045,,,135.3287693,34,25124,93.71910677,189.1083908,,,,,,,,,,,,,146.5884861,100.9047689,205.8647356,,,,3.7,,,,,0,,,,,0.119047619,275,2310,0.058533208,0.17956203,0.089052997,0.045269539,0.132836456,0.021645022,0,0.064204564,0.012554113,0,0.027152342,0.641202563,1301,2029,0.537152902,0.745252224,,,,,,,,,,,,,0.575957728,0.466980083,0.684935373,0.569,,2029,0.360108433,0.777891567,80.94054201,,,77.9400772,83.94100682,,,,,,,,,,,,,80.58921792,77.40129674,83.77713911,,,,287.983956,83,13797,209.2495833,386.6050192,,,,,,,,,,,,,292.501579,206.9915261,401.4812702,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.098,,,0.083,0.114,0.153,,,0.131,0.177,0.07,,,0.059,0.084,,,,,,0.083,390,,,,0.063059971,268.3201776,4255,,,,,,,,,,,,,,,,,,,,,,,,,,0.285,,,0.269,0.302,0.103755323,268,2583,0.084691494,0.122819153,0.06504065,48,738,0.045976821,0.08410448,0.001686973,9,5335,,,592.7777778,,,,,,,,,,,3.204295876,,,,,,,,,3.203190582,3.32164652,,,,,,,,,3.360131099,,,,,,-492.4072,,,,,0.776607244,48138,61985,0.500332086,1.052882401,67766,,,59798.51064,75733.48936,,,,,,,,,,,,,66500,54327.74468,78672.25532,,,,,,0.415512465,150,361,,,,,,,,0.251040345,,67766,,,95.23809524,4,42,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,300,,,-888,,0.871702638,3635,4170,,,0.401,,,,,0.146161688,,,,,0.869784503,1897,2181,0.842456309,0.897112696,0.094078319,197,2094,0.04614069,0.142015948,0.809261807,1765,2181,0.747086131,0.871437482,5335,,,,,0.146954077,784,5335,,,0.338894096,1808,5335,,,0.009372071,50,5335,,,0.012746017,68,5335,,,0.006185567,33,5335,,,0.000187441,1,5335,,,0.056232427,300,5335,,,0.901030928,4807,5335,,,0.00062435,3,4805,0,0.013801729,0.497094658,2652,5335,,,1,4704,4704,, -08,029,08029,CO,Delta County,2024,1,9694.484652,562,83745,8263.176651,11125.79265,0,,,,2,,,,2,,,,2,8777.80961,5832.790739,12686.37886,,10051.53828,8389.526252,11713.55031,,,,,2,,0.163,,,0.136,0.191,3.850146957,,,3.06265211,4.724266233,5.042922788,,,4.088562308,6.088399416,0.101175268,198,1957,0.08781438,0.114536157,0,,,,,,,,,,0.091152815,0.061942776,0.120362854,0.102,0.086683882,0.117316118,,,,,,,0.182,,,0.144,0.222,0.273,,,0.216,0.337,7.7,0.035130034,0.132,,,0.204,,,0.164,0.246,0.603250417,18819,31196,,,0.164802999,,,0.133145192,0.198231865,0.37037037,10,27,0.269507269,0.468143558,259,82,31661,,,21.96866485,129,5872,18.177568,25.7597617,,,,,,,,,,23.66040362,16.38551732,33.06304252,21.23598187,17.05423721,26.13270303,,,,,,,0.118802661,2679,22550,0.10212181,0.135483512,0.000631692,20,31661,,,1583.05,0.000474654,15,31602,,,2106.8,0.002151763,68,31602,,,464.7352941,1027,,,,,,,,1484,998,0.39,,,,,,,,0.33,0.39,0.33,,,,,,0.42,,0.24,0.33,0.900039303,20610,22899,0.881657003,0.918421603,0.501638321,3215,6409,0.43648215,0.566794493,0.036139136,480,13282,,,0.202,1207,,0.136468085,0.267531915,,,,,,,,,,0.245104659,0.114210975,0.375998343,0.227576336,0.169850275,0.285302397,4.600866158,111548,24245,3.828726866,5.37300545,0.258075094,1574,6099,0.182677639,0.333472549,13.26553173,42,31661,,,135.1255703,210,155411,116.8494518,153.4016887,,,,,,,,,,50.15883632,25.91780266,87.61739278,153.1600165,131.551606,174.768427,,,,3.7,,,,,1,,,,,0.196334012,2410,12275,0.165880442,0.226787582,0.171663921,0.14075324,0.202574602,0.014663951,0.00578372,0.023544182,0.016700611,0.005278987,0.028122235,0.722727652,8659,11981,0.705404311,0.740050993,,,,,,,,,,0.770491803,0.613000198,0.927983409,0.699577039,0.683907265,0.715246813,0.346,,11981,0.291987276,0.400012724,76.22305647,,,75.14141403,77.30469892,,,,,,,,,,78.2806293,74.95738561,81.60387299,75.86347237,74.65263615,77.07430859,,,,422.1611515,562,83745,381.6161747,462.7061283,,,,,,,,,,390.2588218,292.3306376,510.4681475,435.3215331,388.907568,481.7354982,,,,63.06339726,17,26957,36.73675286,100.9706081,,,,,,,,,,,,,73.70360621,40.29444736,123.6621275,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.121,,,0.103,0.14,0.169,,,0.146,0.195,0.085,,,0.071,0.099,105.6,29,27454,,,0.132,4100,,,,0.035130034,1087.34482,30952,,,34.08243689,32,93890,23.31236161,48.11423163,,,,,,,,,,,,,34.18219108,22.32894208,50.08482979,,,,0.299,,,0.284,0.314,0.140509847,2326,16554,0.119063038,0.161956655,0.060191734,383,6363,0.042319393,0.078064074,0.000854376,27,31602,,,1170.444444,0.84,310.8,370,,,,,,,,3.154494788,,,,,,,,2.776794352,3.26138433,2.982201044,,,,,,,,2.689822112,3.070068907,0.052812003,,,,,-3.693359,,,,,0.79481465,42796,53844,0.695878447,0.893750852,53910,,,47278.17021,60541.82979,,,,,,,,,,39788,18578.29787,60997.70213,57217,51571.7234,62862.2766,,,,,,0.42562661,1817,4269,,,,,,,,0.340363569,,53910,,,7.112375533,10,1406,,,,,,,,,,,,,,,,,,,,,,,,,,29.04508358,52,155411,20.93314148,39.26051525,33.45966502,,,,,,,,,,,,,34.78932309,24.49489401,47.95249922,,,,30.88584463,48,155411,22.77278367,40.95014908,,,,,,,,,,,,,36.50445989,26.72585262,48.69183388,,,,15.28966974,33,215832,10.52470513,21.47238096,,,,,,,,,,,,,15.9883057,10.62411302,23.1075533,,,,8.620689655,,2900,,,25,,0.804736186,19370,24070,,,0.655,,,,,22.73689055,,,,,0.760662154,9328,12263,0.731317639,0.79000667,0.142760487,1688,11824,0.114797656,0.170723318,0.771100057,9456,12263,0.73507383,0.807126285,31602,,,,,0.191348649,6047,31602,,,0.279286121,8826,31602,,,0.005885703,186,31602,,,0.015283843,483,31602,,,0.009714575,307,31602,,,0.000980951,31,31602,,,0.157869755,4989,31602,,,0.804442757,25422,31602,,,0.012551599,374,29797,0.003307894,0.021795305,0.497120435,15710,31602,,,0.737466342,23006,31196,, -08,031,08031,CO,Denver County,2024,1,7613.596405,8078,2073516,7387.170527,7840.022282,0,25813.51995,19869.14981,31757.89009,,3959.915705,3131.852936,4787.978474,,14109.32159,13062.95832,15155.68486,,9230.984072,8782.433873,9679.534272,,5770.246479,5496.20925,6044.283709,,20917.2571,12593.55518,32664.88803,1,,0.14,,,0.118,0.164,3.29460065,,,2.693421975,3.882072208,5.172078673,,,4.455225126,5.85072326,0.097944525,6409,65435,0.095667029,0.100222022,0,0.086053413,0.056111084,0.115995741,0.117813051,0.105945625,0.129680478,0.145403377,0.136764254,0.154042501,0.097193553,0.093345862,0.101041243,0.084481904,0.081348093,0.087615715,0.132,0.09004025,0.17395975,0.10911271,0.094150109,0.124075311,0.126,,,0.098,0.156,0.22,,,0.189,0.253,8.2,0.042579407,0.105,,,0.169,,,0.142,0.2,0.99129307,709292,715522,,,0.249231811,,,0.219881912,0.279690092,0.352941177,102,289,0.324070978,0.381793918,932.7,6636,711463,,,21.22844116,2570,121064,20.40769735,22.04918496,25.76489533,14.72686385,41.84057584,5.905511811,3.98442402,8.430485314,24.53893047,21.84182369,27.23603726,30.19505504,28.80204805,31.58806202,7.717517708,6.832315925,8.602719492,64.74820144,38.3738877,102.3300729,13.51950355,10.34134897,17.36636789,0.109044073,67179,616072,0.100703647,0.117384498,0.001304355,928,711463,,,766.6627155,0.000828599,591,713252,,,1206.856176,0.007413929,5288,713252,,,134.8812405,1767,,,,,,1226,3230,2006,1507,0.46,,,,,0.2,0.28,0.35,0.25,0.51,0.51,,,,,0.31,0.49,0.33,0.31,0.56,0.90548504,470337,519431,0.900951504,0.910018577,0.803315753,227397,283073,0.788552209,0.818079296,0.030907858,13494,436588,,,0.167,21182,,0.132446809,0.201553192,0.300829876,0.196182883,0.405476868,0.16252113,0.088262518,0.236779742,0.347908232,0.295823809,0.399992655,0.199687673,0.175358555,0.224016791,0.05754157,0.045032848,0.070050293,4.885022906,173814,35581,4.681557367,5.088488444,0.262062198,34718,132480,0.244066027,0.280058369,10.65410288,758,711463,,,94.34473935,3392,3595325,91.16972393,97.51975477,199.2803764,139.5735257,275.8880404,54.5635989,42.98990995,68.29448044,135.8208909,123.0717946,148.5699872,89.92626804,84.20477287,95.64776321,94.08660129,89.80378952,98.36941305,,,,10,,,,,0,,,,,0.178797936,51450,287755,0.171744409,0.185851463,0.148828461,0.141966372,0.155690551,0.030790082,0.027288217,0.034291947,0.008409932,0.006496606,0.010323258,0.600966472,245990,409324,0.592197194,0.609735749,0.656988521,0.582837198,0.731139844,0.607020274,0.575684775,0.638355773,0.647357238,0.623598368,0.671116107,0.697410918,0.678188771,0.716633064,0.643391367,0.634579643,0.652203091,0.368,,409324,0.356696539,0.379303461,78.0509182,,,77.82411471,78.27772169,64.45419481,60.95918649,67.94920314,84.57836114,83.12620905,86.03051323,71.91986781,71.14270384,72.69703177,76.61595749,76.12134471,77.11057026,79.86312031,79.58393112,80.14230949,,,,369.9873467,8078,2073516,361.8117643,378.1629291,1183.713463,976.1456548,1391.281271,206.0816506,173.8121594,238.3511417,643.0674158,608.0830732,678.0517585,434.9476196,416.7033549,453.1918842,299.8109094,290.2294563,309.3923626,988.4598146,611.8722045,1510.965826,62.9300702,382,607023,56.61929651,69.24084388,,,,,,,120.4208391,94.87792476,150.7246371,68.95675686,59.15156494,78.76194877,37.53353691,29.80704611,46.65075933,,,,4.858287491,325,66896,4.330088458,5.386486524,,,,,,,9.655816851,7.403059412,12.37832143,6.145515493,5.1382444,7.152786585,2.766874719,2.213142631,3.417067769,,,,,,,0.095,,,0.081,0.11,0.147,,,0.127,0.167,0.075,,,0.064,0.086,871.2,5358,615040,,,0.105,73930,,,,0.042579407,25554.37189,600158,,,38.54269961,838,2174212,35.9330861,41.15231312,129.8460397,70.98803818,217.8595912,13.01297749,6.496031476,23.28381128,55.82405086,45.29557414,66.35252759,41.14405801,36.14283154,46.14528448,36.00710451,32.60767817,39.40653085,,,,0.275,,,0.264,0.287,0.12537504,60884,485615,0.114651636,0.136098444,0.050194578,6849,136449,0.039471174,0.060917982,0.00154083,1099,713252,,,649.0009099,0.729609762,5739.84,7867,,,0.084580812,2390,28257,0.065654298,0.103507326,3.072303837,,,,,,,2.597484781,2.845171523,3.813595932,2.953863267,,,,,,3.040183138,2.548472589,2.644024042,3.799410992,0.202813846,,,,,-5382.865,,,,,0.888770586,64275,72319,0.862151171,0.915390001,87619,,,83625.12766,91612.87234,49927,41940.44681,57913.55319,89761,79859.7234,99662.2766,53432,45765.95745,61098.04255,66402,63074.17021,69729.82979,101524,99316.17021,103731.8298,,,,,,0.59545987,53380,89645,,,54.89370203,,,,,0.373720312,,87619,,,10.49452997,424,40402,,,7.745029602,385,4970930,6.971372016,8.518687189,,,,,,,34.24826185,28.82139843,39.67512526,9.303930197,7.745948931,10.86191146,2.94902391,2.338392553,3.67031553,,,,19.9353344,752,3595325,18.45997029,21.41069851,20.91605071,,,,13.5334975,7.735563161,21.97755207,14.38052438,10.56626841,19.12304886,15.75307981,13.28198358,18.22417604,23.36891974,21.18861552,25.54922396,,,,14.57448214,524,3595325,13.32657129,15.82239299,,,,,,,37.07038077,30.40983775,43.73092378,14.21384637,11.93915721,16.48853554,11.97650372,10.44847991,13.50452754,,,,10.17918176,506,4970930,9.292242905,11.06612062,,,,5.254308533,2.519645175,9.662860468,18.57912244,14.79816732,23.03161759,13.37864415,11.51039385,15.24689445,7.630599367,6.591087263,8.670111472,,,,8.775862069,,58000,,,509,,0.751159176,393829,524295,,,0.674,,,,,415.6875435,,,,,0.493810456,159483,322964,0.485101589,0.502519322,0.164229958,52009,316684,0.156794836,0.17166508,0.913185371,294926,322964,0.90746008,0.918910661,713252,,,,,0.17994762,128348,713252,,,0.124781985,89001,713252,,,0.089868658,64099,713252,,,0.017711833,12633,713252,,,0.042360905,30214,713252,,,0.002358213,1682,713252,,,0.287851979,205311,713252,,,0.549156539,391687,713252,,,0.042028662,28213,671280,0.038807206,0.045250117,0.493832474,352227,713252,,,0.000145348,104,715522,, -08,033,08033,CO,Dolores County,2024,1,12880.59705,38,5836,6429.947638,23046.94611,1,,,,2,,,,2,,,,2,,,,2,12028.01898,5192.844872,23699.99239,1,,,,2,,0.133,,,0.11,0.158,3.533645102,,,2.762627693,4.377970336,5.075308675,,,4.047104209,6.188346629,0.178571429,20,112,0.107640124,0.249502733,1,,,,,,,,,,,,,0.1875,0.109421264,0.265578736,,,,,,,0.163,,,0.125,0.203,0.26,,,0.193,0.334,5,0.373097128,0.092,,,0.175,,,0.136,0.217,0.193895099,451,2326,,,0.181060266,,,0.143355463,0.221090567,0.333333333,1,3,0.04092282,0.635504717,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.078542971,138,1757,0.065436588,0.091649354,0.000417188,1,2397,,,2397,0.000814664,2,2455,,,1227.5,,0,2455,,,,2295,,,,,,,,,2360,0.29,,,,,,,,,0.29,0.28,,,,,,,,,0.28,0.952805454,1817,1907,0.923822763,0.981788144,0.70945946,315,444,0.552395489,0.86652343,0.029616725,34,1148,,,0.163,68,,0.099851064,0.226148936,,,,,,,,,,,,,0.182242991,0,0.400941453,4.353484044,112272,25789,0.894475528,7.81249256,0.230769231,78,338,0.08226408,0.379274382,0,0,2397,,,140.3311816,15,10689,78.54229706,231.4549431,,,,,,,,,,,,,139.3504127,74.19822587,238.2934497,,,,3.6,,,,,0,,,,,0.031182796,29,930,0.009105743,0.053259849,0.012903226,0,0.06014722,0,0,0.030748113,0.020430108,0,0.042735047,0.706615532,737,1043,0.574085776,0.839145288,,,,,,,,,,,,,,,,0.293,,1043,0.164313633,0.421686367,74.63828355,,,69.41766176,79.85890534,,,,,,,,,,,,,75.08257744,69.40973564,80.75541924,,,,438.6740772,38,5836,291.4957385,634.0061801,,,,,,,,,,,,,405.9101519,257.3122169,609.0645279,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.106,,,0.09,0.123,0.16,,,0.137,0.184,0.073,,,0.061,0.087,,,,,,0.092,210,,,,0.373097128,770.072472,2064,,,,,,,,,,,,,,,,,,,,,,,,,,0.285,,,0.269,0.301,0.089071856,119,1336,0.072391005,0.105752707,0.042410714,19,448,0.026921353,0.057900076,0.000407332,1,2455,,,2455,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1087.788,,,,,1.098222425,57828,52656,0.52809022,1.66835463,56695,,,48051.93617,65338.06383,,,,,,,,,,111130,110878.5957,111381.4043,54954,35865.14894,74042.85106,,,,,,0.462450593,117,253,,,,,,,,0.524843461,,56695,,,57.14285714,2,35,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,200,,,-888,,0.905625,1449,1600,,,0.414,,,,,13.91061018,,,,,0.860759494,1020,1185,0.80252277,0.918996217,0.05877193,67,1140,0,0.132630871,0.664978903,788,1185,0.572809731,0.757148075,2455,,,,,0.17107943,420,2455,,,0.245213849,602,2455,,,0.016293279,40,2455,,,0.03095723,76,2455,,,0.005295316,13,2455,,,0.000814664,2,2455,,,0.083910387,206,2455,,,0.845213849,2075,2455,,,0.073730684,167,2265,0.014897522,0.132563847,0.454175153,1115,2455,,,1,2326,2326,, -08,035,08035,CO,Douglas County,2024,1,3973.264533,2273,1030726,3727.82925,4218.699816,0,,,,2,2471.106224,1773.30849,3352.33462,,4778.687311,2877.081927,7462.512183,1,4016.599933,3252.738105,4780.461762,,4111.540608,3825.23247,4397.848745,,,,,2,,0.087,,,0.072,0.105,2.661698618,,,2.101013798,3.258324264,4.099132306,,,3.447066556,4.819477627,0.088064516,2184,24800,0.084537457,0.091591576,0,,,,0.112962963,0.099613367,0.126312559,0.155807365,0.117973258,0.193641473,0.092697692,0.081641185,0.103754199,0.082320471,0.078395798,0.086245145,,,,0.110476191,0.083660465,0.137291916,0.089,,,0.066,0.114,0.23,,,0.19,0.271,9.5,0.019500937,0.056,,,0.12,,,0.096,0.148,0.915388655,327689,357978,,,0.194080601,,,0.16378145,0.225130369,0.316326531,31,98,0.264739756,0.368431723,198.4,732,368990,,,2.846796784,250,87818,2.493904199,3.19968937,,,,,,,10.06404392,5.023934462,18.00735454,6.577655606,5.097592747,8.353390107,2.173722756,1.824689274,2.522756237,,,,3.117913832,1.556451351,5.578809102,0.043315353,14069,324804,0.037357907,0.0492728,0.000699206,258,368990,,,1430.193798,0.000712789,268,375988,,,1402.940299,0.00179261,674,375988,,,557.8456973,1394,,,,,,,4367,1257,1360,0.51,,,,,,0.46,0.39,0.24,0.52,0.54,,,,,,0.54,0.39,0.4,0.54,0.978927495,237990,243113,0.975939647,0.981915343,0.870635188,82679,94964,0.84621572,0.895054657,0.025038371,5204,207841,,,0.024,2053,,0.014468085,0.033531915,,,,0.009058772,0,0.030596396,0.081877729,0,0.205630709,0.02254589,0.005912308,0.039179472,0.02158207,0.015595659,0.027568482,3.350973461,235111,70162,3.224530218,3.477416705,0.110684465,9743,88025,0.097515071,0.123853858,6.260332258,231,368990,,,56.6809307,997,1758969,53.16252866,60.19933275,,,,18.33734238,10.68217769,29.35986152,58.16433363,32.554136,95.93322297,33.37494901,25.07228889,43.54706881,63.15489104,59.03563122,67.27415087,,,,6.2,,,,,1,,,,,0.113507285,13790,121490,0.104703834,0.122310735,0.098582235,0.089544021,0.107620448,0.012758252,0.009701991,0.015814513,0.0047329,0.003073142,0.006392658,0.672141478,131200,195197,0.661287783,0.682995172,0.752317881,0.601028968,0.903606794,0.542797252,0.496864756,0.588729748,0.712483968,0.621681427,0.803286508,0.658858642,0.621051646,0.696665637,0.614396297,0.597488356,0.631304238,0.41,,195197,0.393234259,0.426765741,82.75907838,,,82.44794624,83.07021052,,,,87.64849931,85.00061043,90.29638819,82.66583083,78.52599905,86.80566261,84.59811556,82.73636159,86.45986953,82.4793078,82.14540767,82.81320793,,,,189.0760214,2273,1030726,181.1649451,196.9870977,,,,121.3412415,91.90267133,157.2116527,210.7845313,146.8191492,293.1502574,191.5820153,159.9102328,223.2537978,193.2699736,184.5145222,202.025425,,,,30.31821277,118,389205,24.84781805,35.78860749,,,,,,,,,,31.97588105,17.48151172,53.65009506,31.37338669,25.35288999,38.39307974,,,,3.246086206,79,24337,2.569957019,4.045591945,,,,,,,,,,,,,3.223033949,2.459514447,4.148683574,,,,,,,0.076,,,0.064,0.09,0.122,,,0.104,0.143,0.056,,,0.047,0.066,87.8,272,309797,,,0.056,19600,,,,0.019500937,5566.835097,285465,,,11.28695321,122,1080894,9.284082658,13.28982376,,,,,,,,,,9.821542572,4.709811423,18.06216648,12.03913061,9.736328879,14.34193235,,,,0.247,,,0.233,0.26,0.051573501,12101,234636,0.044424565,0.058722437,0.023370531,2222,95077,0.017413084,0.029327978,0.001148973,432,375988,,,870.3425926,0.91,4550.91,5001,,,0.035304086,750,21244,0.021184943,0.049423228,,,,,,,,,,,,,,,,,,,,,0.068137564,,,,,2710.163,,,,,0.671890722,70781,105346,0.649808302,0.693973142,140768,,,135782.8085,145753.1915,99044,54720.59575,143367.4043,148429,132241.4255,164616.5745,95052,74581.02128,115522.9787,112633,104686.9575,120579.0426,141092,139086.7234,143097.2766,,,,,,0.11350896,7006,61722,,,52.89462752,,,,,0.272853205,,140768,,,10.78770609,212,19652,,,1.161831511,28,2409988,0.772028602,1.679170018,,,,,,,,,,,,,1.014077937,0.619425149,1.566161127,,,,15.38878066,274,1758969,13.52994742,17.2476139,15.57730693,,,,,,,,,,10.92319591,6.576477489,17.05792349,16.59325935,14.45063942,18.73587927,,,,8.698277229,153,1758969,7.319977721,10.07657674,,,,,,,,,,6.798600724,3.393836986,12.16457466,9.231944206,7.657010502,10.80687791,,,,4.979277905,120,2409988,4.088372048,5.870183763,,,,,,,,,,,,,5.47602086,4.443237368,6.508804351,,,,7.28285078,,44900,,,327,,0.947162867,231605,244525,,,0.784,,,,,107.0237507,,,,,0.779936501,102929,131971,0.770373745,0.789499258,0.105174667,13762,130849,0.096328383,0.114020951,0.973069841,128417,131971,0.968956976,0.977182707,375988,,,,,0.231158973,86913,375988,,,0.140108195,52679,375988,,,0.017013841,6397,375988,,,0.005641138,2121,375988,,,0.062472739,23489,375988,,,0.001196847,450,375988,,,0.100239901,37689,375988,,,0.792121025,297828,375988,,,0.008184445,2787,340524,0.006351073,0.010017817,0.495260487,186212,375988,,,0.090145205,32270,357978,, -08,037,08037,CO,Eagle County,2024,1,4150.964198,321,159266,3512.750583,4789.177812,0,,,,2,,,,2,,,,2,4015.956713,3041.646396,5203.137731,,4403.47311,3544.661745,5262.284474,,,,,2,,0.121,,,0.1,0.145,3.034047433,,,2.35927211,3.782651435,4.458377563,,,3.585751459,5.390852202,0.088752869,348,3921,0.079851293,0.097654446,0,,,,,,,,,,0.095025154,0.081436124,0.108614183,0.081745236,0.069719648,0.093770824,,,,,,,0.121,,,0.091,0.155,0.212,,,0.162,0.269,8.8,0.047114713,0.074,,,0.154,,,0.123,0.19,0.905205362,50448,55731,,,0.21702817,,,0.177418287,0.261602274,0.473684211,9,19,0.359759274,0.575810986,314,175,55727,,,12.54773595,138,10998,10.45419289,14.64127902,,,,,,,,,,24.67170712,20.3291611,29.01425314,1.813894431,0.869832885,3.335816442,,,,,,,0.142080729,6797,47839,0.123016899,0.161144559,0.000789563,44,55727,,,1266.522727,0.000669259,37,55285,,,1494.189189,0.002695125,149,55285,,,371.0402685,808,,,,,,,,522,771,0.45,,,,,,,,0.21,0.47,0.54,,,,,,0.59,,0.28,0.56,0.923963306,36965,40007,0.899847573,0.94807904,0.720233664,12576,17461,0.648256577,0.79221075,0.026183428,911,34793,,,0.075,820,,0.047595745,0.102404255,,,,0.038095238,0,0.801029587,,,,0.1639865,0.086698332,0.241274667,0.041050903,0.001697912,0.080403895,4.483395615,190764,42549,3.91872697,5.048064259,0.182685635,2106,11528,0.118268566,0.247102704,8.792865218,49,55727,,,64.23563227,177,275548,54.77227053,73.69899401,,,,,,,,,,47.87214455,34.04177457,65.44279753,72.61809925,60.32253257,84.91366593,,,,4,,,,,1,,,,,0.22984195,4290,18665,0.190157387,0.269526513,0.197888468,0.16030767,0.235469266,0.042057327,0.02669021,0.057424443,0.00750067,0,0.016853817,0.687722873,21600,31408,0.653549544,0.721896203,,,,,,,,,,0.663043478,0.571843333,0.754243624,0.706898174,0.674056066,0.739740282,0.284,,31408,0.241139493,0.326860507,88.90852338,,,86.85235807,90.96468869,,,,,,,,,,85.2650355,80.99737124,89.53269976,89.10865801,86.80128012,91.41603589,,,,169.7039291,321,159266,150.7479488,188.6599095,,,,,,,,,,213.3774966,164.326673,272.4782996,170.994215,147.9084167,194.0800134,,,,31.00715102,16,51601,17.72326593,50.35367066,,,,,,,,,,,,,38.17959682,18.3086007,70.21363791,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.092,,,0.078,0.108,0.141,,,0.121,0.163,0.07,,,0.059,0.083,154.4,74,47925,,,0.074,4100,,,,0.047114713,2459.246663,52197,,,9.047972349,15,165783,5.06408144,14.92325442,,,,,,,,,,,,,10.80613789,5.583689133,18.8761482,,,,0.255,,,0.241,0.27,0.159791123,5814,36385,0.137152825,0.182429421,0.08731998,1055,12082,0.063490193,0.111149767,0.001248078,69,55285,,,801.2318841,0.84,472.92,563,,,,,,,,2.983420248,,,,,,,,2.61324166,3.384650057,2.851656734,,,,,,,,2.305011347,3.47033641,0.135092694,,,,,-125.3945,,,,,0.805602565,54267,67362,0.70971294,0.901492191,105813,,,93712.23404,117913.766,,,,176818,161394.1702,192241.8298,154718,31327.3617,278108.6383,61380,52714.29787,70045.70213,109572,95675.65957,123468.3404,,,,,,0.285106383,1876,6580,,,77.79665632,,,,,0.347197414,,105813,,,20.27263195,58,2861,,,,,,,,,,,,,,,,,,,,,,,,,,20.01112081,59,275548,15.0751148,26.04722435,21.41187742,,,,,,,,,,14.89787739,7.144111281,27.39772694,22.65790443,16.32982455,30.62690455,,,,10.52448212,29,275548,7.048410853,15.1149119,,,,,,,,,,,,,10.83852228,6.620450983,16.7392186,,,,6.263996116,24,383142,4.013460507,9.320329693,,,,,,,,,,,,,5.84565142,3.271766725,9.641513038,,,,8.275862069,,5800,,,48,,0.769372937,29140,37875,,,0.413,,,,,67.56131655,,,,,0.685819558,13774,20084,0.659260313,0.712378803,0.187278971,3654,19511,0.153467375,0.221090567,0.950258913,19085,20084,0.931824766,0.968693059,55285,,,,,0.201248078,11126,55285,,,0.146983811,8126,55285,,,0.009188749,508,55285,,,0.013511803,747,55285,,,0.015555757,860,55285,,,0.001193814,66,55285,,,0.29512526,16316,55285,,,0.663941395,36706,55285,,,0.052848448,2796,52906,0.036569024,0.069127872,0.470000904,25984,55285,,,0.185103443,10316,55731,, -08,039,08039,CO,Elbert County,2024,1,5748.653595,281,76742,4610.369211,6886.93798,0,,,,2,,,,2,,,,2,,,,2,6204.847963,4890.97657,7518.719356,,,,,2,,0.113,,,0.094,0.135,3.19201124,,,2.456941093,3.94069049,4.486983128,,,3.540366534,5.431719844,0.089477001,142,1587,0.075433714,0.103520288,0,,,,,,,,,,0.134751773,0.078390069,0.191113478,0.08230153,0.067764531,0.096838529,,,,,,,0.133,,,0.102,0.168,0.23,,,0.173,0.291,9.1,0.070130408,0.051,,,0.147,,,0.116,0.182,0.313866933,8180,26062,,,0.19577351,,,0.156746694,0.236806534,0.291666667,7,24,0.183021186,0.403882272,118,32,27128,,,7.082852907,43,6071,5.125895769,9.540556385,,,,,,,,,,,,,6.498621505,4.473352023,9.126480754,,,,,,,0.081852764,1829,22345,0.06993787,0.093767657,0.000110587,3,27128,,,9042.666667,0.00014389,4,27799,,,6949.75,0.001151121,32,27799,,,868.71875,1870,,,,,,,,,1824,0.39,,,,,,0.27,,,0.39,0.37,,,,,,0.41,0.17,0.16,0.38,0.96715712,18405,19030,0.958743619,0.975570621,0.735127479,4152,5648,0.653797905,0.816457052,0.024224262,388,16017,,,0.071,405,,0.045978723,0.096021277,,,,,,,,,,0.03271028,0,0.121527346,0.032122905,0.013589004,0.050656806,3.528725976,205820,58327,3.004520682,4.05293127,0.143190801,797,5566,0.084359487,0.202022116,5.529342377,15,27128,,,75.88621576,101,133094,61.0863328,90.68609871,,,,,,,,,,,,,81.37672283,65.8386283,99.47882374,,,,5.6,,,,,0,,,,,0.125921724,1110,8815,0.099617751,0.152225697,0.114613181,0.088030751,0.14119561,0.01020987,0.003333513,0.017086226,0.00453772,0,0.009132622,0.734211097,10149,13823,0.70577599,0.762646205,,,,,,,,,,,,,0.544712286,0.492187797,0.597236776,0.732,,13823,0.666598195,0.797401805,81.58287255,,,80.24181744,82.92392767,,,,,,,,,,82.81723353,77.32181572,88.31265133,81.07760023,79.6411071,82.51409336,,,,256.1887315,281,76742,223.2489964,289.1284666,,,,,,,,,,,,,264.5378132,228.3565665,300.7190599,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.095,,,0.08,0.111,0.149,,,0.127,0.172,0.066,,,0.056,0.078,102.9,24,23327,,,0.051,1320,,,,0.070130408,1619.030588,23086,,,23.40766293,19,81170,14.09294218,36.55396522,,,,,,,,,,,,,25.43234995,15.0728224,40.19407747,,,,0.273,,,0.256,0.289,0.089615245,1486,16582,0.075317373,0.103913118,0.060576132,368,6075,0.042703791,0.078448472,0.000179863,5,27799,,,5559.8,0.868082524,178.825,206,,,,,,,,3.099506789,,,,,,,,2.69983557,3.148211532,2.980636881,,,,,,,,2.646067564,3.048404712,0.036449681,,,,,1204.05775,,,,,0.771808953,69567,90135,0.624913925,0.918703982,120394,,,106426.1702,134361.8298,187750,94875.78723,280624.2128,214200,147408.6809,280991.3192,,,,110833,78529.34043,143136.6596,124530,116281.3192,132778.6809,,,,,,0.221059309,697,3153,,,,,,,,0.234579796,,120394,,,9.865470852,11,1115,,,,,,,,,,,,,,,,,,,,,,,,,,21.79517601,28,133094,13.96458052,32.42949427,21.03776278,,,,,,,,,,,,,24.00801119,15.21901966,36.0238046,,,,12.02157873,16,133094,6.871370951,19.52229071,,,,,,,,,,,,,12.84895624,7.191463267,21.1923993,,,,13.65672457,25,183060,8.837912077,20.1600195,,,,,,,,,,,,,14.25905605,9.03901838,21.39558521,,,,5,,3000,,,15,,0.933743237,18983,20330,,,0.736,,,,,2.744150868,,,,,0.933466471,8881,9514,0.918989252,0.947943689,0.094325401,876,9287,0.072531285,0.116119517,0.943241539,8974,9514,0.923980346,0.962502731,27799,,,,,0.209288104,5818,27799,,,0.190546423,5297,27799,,,0.012230656,340,27799,,,0.009460772,263,27799,,,0.011259398,313,27799,,,0.002158351,60,27799,,,0.092413396,2569,27799,,,0.858304256,23860,27799,,,0.005763461,146,25332,0.00048611,0.011040812,0.488434836,13578,27799,,,1,26062,26062,, -08,041,08041,CO,El Paso County,2024,1,8997.415179,9358,2075864,8749.96902,9244.861339,0,16361.64735,12571.42312,20151.87158,,3346.857847,2516.771196,4176.944497,,13847.93578,12605.89917,15089.97238,,9578.643272,8991.045574,10166.24097,,8569.982541,8273.215102,8866.74998,,12144.68332,7698.68744,18222.98796,1,,0.135,,,0.116,0.155,3.666218512,,,3.097548746,4.285436431,5.020259382,,,4.385251193,5.661765191,0.095974748,6142,63996,0.093692576,0.098256921,0,0.119760479,0.084939576,0.154581382,0.132214061,0.117007194,0.147420928,0.15467795,0.143811627,0.165544274,0.099392276,0.094651909,0.104132643,0.085520374,0.082735943,0.088304804,0.084337349,0.054444676,0.114230023,0.105463347,0.094268794,0.116657901,0.137,,,0.11,0.167,0.281,,,0.247,0.315,8.2,0.064522553,0.096,,,0.172,,,0.144,0.201,0.893357704,652504,730395,,,0.180161083,,,0.157009905,0.205158897,0.393782383,152,386,0.36962868,0.417768381,485.6,3583,737867,,,16.9345724,2697,159260,16.29544147,17.57370332,18.16118048,10.38068383,29.49261929,4.446326487,2.752346175,6.796682349,22.25412778,19.29313887,25.2151167,30.99493198,29.21278428,32.77707968,11.08510125,10.41650524,11.75369725,36.4806867,21.25134436,58.40911334,17.96743403,15.42592582,20.50894223,0.076815203,48038,625371,0.069666266,0.083964139,0.00063155,466,737867,,,1583.405579,0.001035693,767,740567,,,965.5371578,0.004352071,3223,740567,,,229.7756748,1575,,,,,,1023,2175,1564,1554,0.35,,,,,0.46,0.26,0.26,0.23,0.37,0.42,,,,,0.32,0.38,0.29,0.34,0.44,0.948012379,453969,478864,0.944799748,0.951225011,0.759219565,162577,214137,0.741352245,0.777086885,0.032552798,11679,358771,,,0.103,17269,,0.079170213,0.126829787,0.201487911,0.098602455,0.304373366,0.069293478,0.005755729,0.132831228,0.124422478,0.090675846,0.15816911,0.189017928,0.161029725,0.217006131,0.084231692,0.072251487,0.096211898,4.033137235,154937,38416,3.885860067,4.180414402,0.220814063,37861,171461,0.200295195,0.24133293,8.578781813,633,737867,,,107.5376951,3871,3599668,104.1499931,110.9253972,220.7406073,163.3051165,291.8307892,42.52986542,31.02157567,56.90830608,130.4311629,115.2077199,145.6546058,94.03849163,86.52010787,101.5568754,112.7001289,108.5106685,116.8895892,,,,5,,,,,1,,,,,0.160571581,42195,262780,0.153044908,0.168098254,0.135015094,0.127689775,0.142340412,0.027285182,0.023916665,0.030653698,0.006678591,0.005192543,0.008164638,0.721131227,266083,368980,0.71342894,0.728833513,0.677295025,0.617418772,0.737171278,0.733924612,0.682753359,0.785095865,0.712074024,0.67650293,0.747645118,0.69856805,0.675975441,0.72116066,0.730751748,0.721438614,0.740064882,0.283,,368980,0.271204857,0.294795143,76.91961339,,,76.69822466,77.14100212,70.30267894,67.47227023,73.13308764,84.63824765,83.21701346,86.05948185,71.99467194,71.02223333,72.96711055,75.80214359,75.19033365,76.41395354,77.36945553,77.11150079,77.62741028,72.82117997,68.7306372,76.91172275,406.298403,9358,2075864,397.8900367,414.7067693,814.1885737,656.8776139,971.4995336,175.2405223,144.6122222,205.8688224,622.0675629,576.6100603,667.5250656,448.6779905,423.067363,474.2886179,387.6662753,378.0849289,397.2476216,481.1837205,335.1620919,669.2100726,59.13321646,454,767758,53.69370811,64.5727248,,,,,,,117.4679139,88.24551223,153.2701466,62.69430052,51.52331606,73.86528497,53.37263703,46.60595481,60.13931926,,,,5.706463223,371,65014,5.125784198,6.287142249,,,,,,,9.778812573,7.04770797,13.2181138,6.748263315,5.438635152,8.057891477,4.85825904,4.174605804,5.541912277,,,,7.251381216,4.488719263,11.08450647,0.103,,,0.089,0.118,0.156,,,0.137,0.176,0.074,,,0.064,0.085,167.8,1032,614859,,,0.096,69510,,,,0.064522553,40149.99727,622263,,,36.76975002,804,2186580,34.22808259,39.31141745,97.61225409,51.97441426,166.9199273,,,,56.03530992,43.922738,70.45598939,31.88299447,26.31588319,37.45010575,37.50660895,34.3973423,40.61587559,,,,0.312,,,0.299,0.324,0.091322053,41353,452826,0.081790138,0.100853968,0.040571315,7340,180916,0.032230889,0.04891174,0.001570418,1163,740567,,,636.7730009,0.73985643,7704.125,10413,,,0.066593468,2608,39163,0.054572475,0.078614462,3.246061105,,,,,,3.419819982,2.978833617,2.996357527,3.381330806,3.146246805,,,,,,3.53747479,2.722170993,2.879811919,3.30135809,0.077241879,,,,,-957.7575533,,,,,0.822223689,49821,60593,0.792425377,0.852022002,82248,,,79275.23404,85220.76596,63794,53330.34043,74257.65957,91099,81788.70213,100409.2979,63782,58380.97872,69183.02128,69080,65407.82979,72752.17021,87372,85469.19149,89274.80851,,,,,,0.33569538,36146,107675,,,45.43443654,,,,,0.360349188,,82248,,,7.400752909,346,46752,,,7.093309055,352,4962423,6.352282755,7.834335355,,,,,,,21.36759271,16.45565007,27.28593886,12.70766931,10.332877,15.08246162,4.709001271,3.981603541,5.436399,,,,26.98599242,989,3599668,25.27325927,28.69872557,27.47475601,43.36552556,20.79545511,79.75074549,11.63982896,6.197718696,19.90446201,19.92572788,14.47806438,26.74935963,20.9350134,17.12357126,24.74645555,29.43981969,27.2908073,31.58883208,,,,21.47420262,773,3599668,19.96035079,22.98805445,,,,11.34129744,5.860213886,19.81096425,32.83905165,25.64757179,41.42199528,22.37521515,18.70784055,26.04258974,20.99952042,19.19109514,22.80794569,,,,13.62237762,676,4962423,12.59545992,14.64929531,,,,12.5419808,7.433172689,19.82173683,15.35795726,11.24395494,20.48536277,15.13367891,12.542097,17.72526081,13.42504089,12.19685149,14.65323029,,,,13.18954248,,76500,,,1009,,0.72874881,378851,519865,,,0.724,,,,,140.8708815,,,,,0.662536952,183106,276371,0.654862372,0.670211532,0.143418627,38898,271220,0.135631557,0.151205697,0.936429654,258802,276371,0.932620337,0.940238972,740567,,,,,0.22954439,169993,740567,,,0.1404802,104035,740567,,,0.059457146,44032,740567,,,0.014140517,10472,740567,,,0.033872695,25085,740567,,,0.00413737,3064,740567,,,0.189284697,140178,740567,,,0.670274263,496383,740567,,,0.011262456,7707,684309,0.009552401,0.012972511,0.490413427,363184,740567,,,0.102504809,74869,730395,, -08,043,08043,CO,Fremont County,2024,1,9328.08818,893,132133,8293.898471,10362.27789,0,,,,2,,,,2,,,,2,7629.239954,5450.440876,10388.85944,,10069.80776,8821.879338,11317.73619,,,,,2,,0.166,,,0.141,0.194,3.890754448,,,3.079451398,4.790742881,5.064783867,,,4.102113648,6.129354711,0.087222647,228,2614,0.076405809,0.098039486,0,,,,,,,,,,0.120879121,0.082209075,0.159549167,0.083180147,0.071576929,0.094783366,,,,0.149253731,0.063927749,0.234579713,0.189,,,0.152,0.229,0.291,,,0.229,0.36,6.8,0.133919669,0.126,,,0.209,,,0.169,0.252,0.804491306,39371,48939,,,0.178660943,,,0.14266205,0.220295628,0.333333333,12,36,0.245918362,0.420584515,243.7,121,49661,,,24.2506812,178,7340,20.68805701,27.81330539,,,,,,,,,,25.66452796,17.05389244,37.09238858,22.90076336,19.03763493,26.76389179,,,,,,,0.08929438,2760,30909,0.076187997,0.102400763,0.00046314,23,49661,,,2159.173913,0.000342597,17,49621,,,2918.882353,0.00386933,192,49621,,,258.4427083,1743,,,,,,,,,1742,0.36,,,,,,,,0.29,0.36,0.33,,,,,0.42,0.46,,0.33,0.33,0.898386164,34180,38046,0.883614463,0.913157865,0.4346572,5877,13521,0.389268084,0.480046316,0.047119327,678,14389,,,0.202,1551,,0.135276596,0.268723404,,,,,,,,,,0.51897617,0.323100828,0.714851511,0.140580913,0.09901203,0.182149796,4.622423778,108553,23484,4.075318129,5.169529427,0.229322831,1805,7871,0.168047975,0.290597687,8.860071283,44,49661,,,115.3780707,278,240947,101.8150337,128.9411077,,,,,,,,,,70.70613914,44.82162697,106.0939251,128.3872665,112.2777276,144.4968054,,,,4.5,,,,,1,,,,,0.135530086,2365,17450,0.113006998,0.158053174,0.110852488,0.0889244,0.132780576,0.019770774,0.010192605,0.029348942,0.008882522,0.002391703,0.01537334,0.746953233,12442,16657,0.717049852,0.776856614,,,,,,,,,,0.735458854,0.63048563,0.840432078,0.759458414,0.7265998,0.792317027,0.278,,16657,0.23170025,0.32429975,75.95569749,,,75.1499018,76.76149317,,,,,,,70.56658949,61.13257715,80.00060183,77.71507425,75.06763213,80.36251637,75.37986193,74.45445333,76.30527054,,,,446.3533235,893,132133,414.7073688,477.9992782,,,,,,,,,,377.5728694,289.482954,484.0313784,470.4284931,433.3809187,507.4760675,,,,64.12872384,22,34306,40.18912981,97.09165856,,,,,,,,,,,,,56.0203167,31.354146,92.3969931,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.12,,,0.102,0.138,0.164,,,0.142,0.188,0.085,,,0.072,0.1,328.5,145,44136,,,0.126,6200,,,,0.133919669,6270.654585,46824,,,29.58030365,43,145367,21.40741242,39.84447489,,,,,,,,,,,,,31.42046694,22.00650877,43.4991704,,,,0.321,,,0.308,0.335,0.105251783,2435,23135,0.088570932,0.121932634,0.042524674,349,8207,0.029418291,0.055631057,0.001108402,55,49621,,,902.2,0.851538462,276.75,325,,,,,,,,2.972495811,,,,,,,,2.760772822,3.018952822,2.765526236,,,,,,,,2.416388578,2.857842173,0.02118789,,,,,288.834,,,,,0.820206573,46217,56348,0.758608253,0.881804894,57275,,,49924.70213,64625.29787,39223,25464.87234,52981.12766,,,,54063,35696.19149,72429.80851,32866,19361.65957,46370.34043,58521,53649,63393,,,,,,0.453774728,2248,4954,,,66.02285655,,,,,0.32930598,,57275,,,9.733606557,19,1952,,,5.0733396,17,335085,2.955407276,8.122908162,,,,,,,,,,,,,4.914079215,2.61654022,8.403225117,,,,36.88102307,96,240947,29.50005791,45.54776347,39.842787,,,,,,,,,,,,,40.85873264,31.91100918,51.53773162,,,,31.54220638,76,240947,24.85167106,39.47977479,,,,,,,,,,,,,37.35858985,29.17736862,47.12277775,,,,13.7278601,46,335085,10.05051895,18.31104159,,,,,,,,,,,,,15.49824983,11.12181166,21.0251259,,,,6.756756757,,3700,,,25,,0.647258453,25557,39485,,,0.655,,,,,26.5359153,,,,,0.753860949,13326,17677,0.733888766,0.773833133,0.129527031,2221,17147,0.104904581,0.154149481,0.822707473,14543,17677,0.798266882,0.847148064,49621,,,,,0.157231817,7802,49621,,,0.22754479,11291,49621,,,0.038310393,1901,49621,,,0.018580843,922,49621,,,0.009491949,471,49621,,,0.000906874,45,49621,,,0.139074182,6901,49621,,,0.784808851,38943,49621,,,0.007007411,330,47093,0.003354213,0.010660609,0.420265613,20854,49621,,,0.494534012,24202,48939,, -08,045,08045,CO,Garfield County,2024,1,5809.988212,559,173976,5112.065289,6507.911135,0,,,,2,,,,2,,,,2,5331.996808,4193.95373,6683.70417,,5816.401088,4946.985371,6685.816804,,,,,2,,0.133,,,0.112,0.158,3.505129531,,,2.784608792,4.273758105,5.180222636,,,4.277306403,6.089016997,0.088054988,474,5383,0.080484826,0.09562515,0,,,,,,,,,,0.086655113,0.075177471,0.098132754,0.08698727,0.076600449,0.097374091,,,,,,,0.14,,,0.109,0.171,0.25,,,0.199,0.308,8.8,0.039831115,0.078,,,0.174,,,0.141,0.21,0.833022615,51385,61685,,,0.225052903,,,0.18469719,0.26849411,0.385964912,22,57,0.319362654,0.451025242,334.6,208,62161,,,19.41383704,259,13341,17.04945545,21.77821863,,,,,,,,,,34.37106352,29.49653789,39.24558915,8.324084351,6.352153295,10.71474659,,,,,,,0.156505619,8189,52324,0.138633278,0.174377959,0.000756101,47,62161,,,1322.574468,0.000770824,48,62271,,,1297.3125,0.002810297,175,62271,,,355.8342857,1384,,,,,,,,621,1365,0.39,,,,,,0.33,,0.21,0.4,0.42,,,,,,0.47,,0.26,0.43,0.89299724,36879,41298,0.877001912,0.908992567,0.63800905,10998,17238,0.58700841,0.68900969,0.030029447,928,30903,,,0.103,1513,,0.063680851,0.142319149,,,,0.106508876,0,0.617990829,,,,0.105247642,0.05829374,0.152201543,0.062609634,0.020988176,0.104231093,3.76769191,145772,38690,3.372670111,4.162713709,0.196113307,2977,15180,0.144720635,0.247505979,10.29584466,64,62161,,,91.21787472,275,301476,80.43661089,101.9991386,,,,,,,,,,49.97160704,36.30944618,67.08455001,110.164115,95.73724191,124.5909881,,,,3.5,,,,,1,,,,,0.13435256,2900,21585,0.111996529,0.15670859,0.100748013,0.081953697,0.11954233,0.03659949,0.023851284,0.049347697,0.003242993,0,0.008288477,0.658401541,21880,33232,0.633893562,0.682909519,,,,,,,,,,0.635455324,0.566149794,0.704760854,0.706560957,0.671258909,0.741863005,0.415,,33232,0.37114089,0.45885911,80.15800542,,,79.43250098,80.88350986,,,,,,,,,,82.06832796,79.53624811,84.6004078,79.91723158,79.08991884,80.74454432,,,,267.4591052,559,173976,244.7138376,290.2043729,,,,,,,,,,232.2089828,182.333996,291.5171135,273.4015788,246.6501846,300.152973,,,,43.81525073,29,66187,29.34376107,62.92600879,,,,,,,,,,47.80441166,26.1351167,80.20767985,40.98000761,22.4041515,68.75748945,,,,4.42804428,24,5420,2.837131523,6.588578892,,,,,,,,,,,,,,,,,,,,,,0.104,,,0.089,0.121,0.154,,,0.133,0.177,0.074,,,0.062,0.086,153.6,79,51430,,,0.078,4770,,,,0.039831115,2246.036769,56389,,,17.52579578,32,182588,11.98763134,24.74119443,,,,,,,,,,,,,20.41282906,13.21010668,30.13336248,,,,0.265,,,0.252,0.279,0.179707975,6720,37394,0.155878187,0.203537762,0.100294042,1569,15644,0.074081277,0.126506808,0.001011707,63,62271,,,988.4285714,0.834325277,828.485,993,,,0.105567387,347,3287,0.038329867,0.172804906,2.957771382,,,,,,,,2.62019968,3.274522171,2.750267793,,,,,,,,2.465865835,3.013256528,0.037470192,,,,,-1010.277033,,,,,0.775637827,46636,60126,0.719120503,0.832155152,86566,,,75855.70213,97276.29787,,,,103324,81215.91489,125432.0851,41213,40469.51064,41956.48936,67444,60796.68085,74091.31915,90006,85813.14894,94198.85106,,,,,,0.392553622,3880,9884,,,73.23420074,,,,,0.328061826,,86566,,,8.088235294,33,4080,,,2.867671308,12,418458,1.481767611,5.009244667,,,,,,,,,,,,,,,,,,,22.80840379,73,301476,17.78026971,28.81704605,24.21419947,,,,,,,,,,,,,26.56309183,20.0654741,34.49438422,,,,14.59485996,44,301476,10.60464759,19.59291827,,,,,,,,,,,,,18.19675114,12.8121921,25.08182447,,,,14.81630176,62,418458,11.3595736,18.99383018,,,,,,,,,,13.22970068,7.561917028,21.48420506,15.86104316,11.56915372,21.22332366,,,,10,,6900,,,69,,0.798140496,30904,38720,,,0.66,,,,,62.03445644,,,,,0.699106744,15653,22390,0.6795054,0.718708088,0.126458702,2785,22023,0.103044016,0.149873389,0.898124163,20109,22390,0.876792643,0.919455682,62271,,,,,0.239758475,14930,62271,,,0.150230444,9355,62271,,,0.007274654,453,62271,,,0.017359606,1081,62271,,,0.010004657,623,62271,,,0.00194312,121,62271,,,0.305487306,19023,62271,,,0.659616836,41075,62271,,,0.062175088,3588,57708,0.04781827,0.076531907,0.484736073,30185,62271,,,0.321163978,19811,61685,, -08,047,08047,CO,Gilpin County,2024,1,6698.575005,75,17486,4375.73159,9814.964412,0,,,,2,,,,2,,,,2,,,,2,7263.536718,4604.459206,10898.87144,1,,,,2,,0.106,,,0.086,0.127,2.990162199,,,2.313123142,3.763442113,4.710877529,,,3.739611157,5.722812441,0.125448029,35,279,0.086581236,0.164314821,0,,,,,,,,,,,,,0.127659575,0.084992601,0.170326548,,,,,,,0.122,,,0.091,0.157,0.253,,,0.192,0.322,,,0.086,,,0.137,,,0.107,0.171,0.54665978,3175,5808,,,0.20212854,,,0.163837727,0.246736976,0,0,1,0,0.662081041,85.1,5,5873,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.061723194,293,4747,0.050999789,0.072446598,0.000340542,2,5873,,,2936.5,,0,5891,,,,0.000679002,4,5891,,,1472.75,1411,,,,,,,,,1484,0.31,,,,,,,,,0.3,0.44,,,,,,,,,0.44,0.944396737,4399,4658,0.886447904,1,0.708887334,1013,1429,0.595933654,0.821841013,0.027445998,108,3935,,,0.084,67,,0.050638298,0.117361702,,,,,,,,,,,,,0.175029172,0,0.446615828,4.656828676,195652,42014,2.672283929,6.641373423,0.368672397,386,1047,0.112689558,0.624655237,5.108121914,3,5873,,,82.00754469,25,30485,53.07095899,121.0593134,,,,,,,,,,,,,90.47385683,57.96830721,134.6179274,,,,4.4,,,,,0,,,,,0.167832168,480,2860,0.105580012,0.230084324,0.139823009,0.075222239,0.204423779,0.008391608,0,0.027538985,0.022727273,0,0.051377391,0.725330335,2580,3557,0.640061395,0.810599274,,,,,,,,,,,,,0.747862141,0.681772315,0.813951966,0.537,,3557,0.39801901,0.675980991,80.8364465,,,77.53510604,84.13778695,,,,,,,,,,,,,79.54353844,76.19727576,82.88980113,,,,279.1697248,75,17486,212.5169292,360.1086051,,,,,,,,,,,,,298.1734181,223.9970487,389.0516313,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.088,,,0.074,0.105,0.143,,,0.121,0.167,0.064,,,0.053,0.076,168.8,9,5331,,,0.086,500,,,,,,5441,,,,,,,,,,,,,,,,,,,,,,,,,,0.269,,,0.252,0.286,0.066343455,260,3919,0.054428561,0.078258349,0.04214123,37,878,0.029034847,0.055247613,0.000169751,1,5891,,,5891,,,,,,,,,,,3.376442742,,,,,,,,,,3.477851878,,,,,,,,,,0.014977984,,,,,2095.608,,,,,0.5864906,57028,97236,0.444334707,0.728646493,89805,,,76706.95745,102903.0426,108720,88218.04255,129221.9575,,,,,,,103368,43475.40426,163260.5957,97489,77427.89362,117550.1064,,,,,,0.2402746,105,437,,,,,,,,0.276588163,,89805,,,27.52293578,3,109,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,500,,,-888,,0.841407035,4186,4975,,,0.544,,,,,6.632531581,,,,,0.786189976,2243,2853,0.711119722,0.861260229,0.178834808,485,2712,0.093712685,0.263956932,0.89870312,2564,2853,0.832579824,0.964826415,5891,,,,,0.137328128,809,5891,,,0.205567815,1211,5891,,,0.012731285,75,5891,,,0.016465795,97,5891,,,0.017314548,102,5891,,,0.002546257,15,5891,,,0.077915464,459,5891,,,0.852317094,5021,5891,,,0,0,5654,0,0.015172839,0.474622305,2796,5891,,,1,5808,5808,, -08,049,08049,CO,Grand County,2024,1,5722.499594,159,44854,4334.911042,7110.088147,0,,,,2,,,,2,,,,2,,,,2,5588.401719,4123.882891,7052.920546,,,,,2,,0.121,,,0.098,0.145,3.278904785,,,2.536231868,4.075922653,4.731707248,,,3.794726217,5.73547606,0.13064133,110,842,0.107877789,0.153404871,0,,,,,,,,,,0.157894737,0.099925005,0.215864469,0.123839009,0.098437443,0.149240576,,,,,,,0.143,,,0.105,0.183,0.223,,,0.168,0.286,9.1,0.002609285,0.083,,,0.161,,,0.125,0.203,0.741490106,11654,15717,,,0.218409889,,,0.176441809,0.262141465,0.181818182,4,22,0.079048597,0.307478905,214.4,34,15860,,,10.00384763,26,2599,6.534845408,14.65795463,,,,,,,,,,,,,7.052896725,3.85588427,11.83356228,,,,,,,0.108375554,1369,12632,0.091694703,0.125056405,0.000567465,9,15860,,,1762.222222,0.000380493,6,15769,,,2628.166667,0.001775636,28,15769,,,563.1785714,1312,,,,,,,,,1322,0.3,,,,,,,,,0.3,0.38,,,,,,,,0.27,0.38,0.946630146,11405,12048,0.92627386,0.966986432,0.630150036,2646,4199,0.516896609,0.743403462,0.026779953,249,9298,,,0.087,209,,0.053638298,0.120361702,,,,,,,,,,0.289940828,0.051922021,0.527959636,0.009667025,0,0.028762881,4.034134901,142764,35389,3.524488392,4.54378141,0.114061331,305,2674,0.027053181,0.201069482,12.61034048,20,15860,,,88.19694762,69,78234,68.62248966,111.6188819,,,,,,,,,,,,,92.65114637,71.1956848,118.541064,,,,4,,,,,0,,,,,0.135391924,855,6315,0.098579071,0.172204777,0.103885805,0.067458695,0.140312915,0.022169438,0.008244388,0.036094488,0.013460016,0.003715944,0.023204088,0.626031164,5464,8728,0.586817073,0.665245255,,,,,,,,,,0.671118531,0.523786101,0.818450961,0.623726947,0.568489387,0.678964508,0.323,,8728,0.253422734,0.392577266,84.75685979,,,82.39539419,87.11832538,,,,,,,,,,,,,84.95705084,82.51519122,87.39891046,,,,240.4785781,159,44854,199.6216709,281.3354853,,,,,,,,,,,,,234.6848903,191.2035725,278.1662081,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.098,,,0.081,0.115,0.15,,,0.126,0.176,0.068,,,0.057,0.081,155.4,22,14155,,,0.083,1300,,,,0.002609285,38.72962012,14843,,,,,,,,,,,,,,,,,,,,,,,,,,0.259,,,0.244,0.275,0.117391304,1188,10120,0.098327475,0.136455134,0.073490814,196,2667,0.050852516,0.096129112,0.00057074,9,15769,,,1752.111111,0.880291971,120.6,137,,,,,,,,3.045777276,,,,,,,,,3.124588995,2.86284429,,,,,,,,,3.02327942,0.018357576,,,,,1769.02206,,,,,0.788097369,44905,56979,0.686353257,0.889841481,88059,,,76232.2766,99885.7234,,,,,,,,,,53859,19595.34043,88122.65957,80961,65475.21277,96446.78723,,,,,,0.280524122,471,1679,,,66.15975196,,,,,0.27760933,,88059,,,32.92894281,19,577,,,,,,,,,,,,,,,,,,,,,,,,,,25.36291654,18,78234,14.77483353,40.60848632,23.00789938,,,,,,,,,,,,,28.82997693,16.47882282,46.81807634,,,,17.89503285,14,78234,9.783380981,30.0248244,,,,,,,,,,,,,19.11849052,10.17979101,32.69320105,,,,14.83445673,16,107857,8.479173771,24.09022836,,,,,,,,,,,,,11.68770454,5.834459993,20.91253189,,,,3.846153846,,1300,,,5,,0.7896,9870,12500,,,0.331,,,,,27.45443241,,,,,0.726995832,4535,6238,0.723763374,0.73022829,0.125351414,758,6047,0.088431452,0.162271376,0.911029176,5683,6238,0.864663373,0.957394979,15769,,,,,0.153275414,2417,15769,,,0.21034942,3317,15769,,,0.010209906,161,15769,,,0.009322088,147,15769,,,0.011097723,175,15769,,,0.001204896,19,15769,,,0.101781977,1605,15769,,,0.858646712,13540,15769,,,0.007298302,110,15072,0,0.014835649,0.463631175,7311,15769,,,0.683209264,10738,15717,, -08,051,08051,CO,Gunnison County,2024,1,4274.403916,128,50023,3177.639408,5371.168424,0,,,,2,,,,2,,,,2,,,,2,4047.572245,2866.508175,5228.636316,,,,,2,,0.111,,,0.091,0.132,3.149275586,,,2.443598792,3.929976323,4.894086501,,,3.951037658,5.886721349,0.1,93,930,0.08071872,0.11928128,0,,,,,,,,,,0.116438356,0.064409281,0.168467431,0.095926413,0.075002893,0.116849932,,,,,,,0.125,,,0.094,0.159,0.24,,,0.184,0.301,8.7,0.030766867,0.087,,,0.145,,,0.114,0.179,0.838160539,14180,16918,,,0.241713484,,,0.198633744,0.286404551,0.333333333,9,27,0.231289482,0.434909506,225.7,39,17281,,,6.601411336,29,4393,4.421068777,9.480727849,,,,,,,,,,24.34456929,12.96245785,41.6299549,4.332520986,2.476410088,7.035742648,,,,,,,0.083083726,1165,14022,0.068785853,0.097381598,0.000868005,15,17281,,,1152.066667,0.000463312,8,17267,,,2158.375,0.002953611,51,17267,,,338.5686275,1032,,,,,,,,,1050,0.4,,,,,,,,,0.4,0.42,,,,,,,,0.44,0.42,0.98321492,11071,11260,0.972879823,0.993550018,0.79071695,3816,4826,0.704450357,0.876983543,0.0246676,282,11432,,,0.093,249,,0.057255319,0.128744681,,,,,,,,,,0.284210526,0,0.653895043,0.03003876,0,0.071429116,4.470586468,148799,33284,3.148652756,5.79252018,0.162335217,431,2655,0.077569399,0.247101035,12.73074475,22,17281,,,78.59363623,68,86521,61.0310338,99.63616134,,,,,,,,,,,,,77.22418981,58.63956499,99.83017302,,,,3.7,,,,,0,,,,,0.199267399,1360,6825,0.153866494,0.244668304,0.164827079,0.119401148,0.210253009,0.024029304,0.008664453,0.039394155,0.014652015,0.001232624,0.028071405,0.529547276,5287,9984,0.470938495,0.588156056,,,,,,,,,,,,,0.510619271,0.44677445,0.574464092,0.191,,9984,0.136464138,0.245535862,82.88400936,,,81.31432623,84.45369248,,,,,,,,,,80.96038267,74.83806291,87.08270243,82.89799937,81.26932872,84.52667001,,,,211.7030846,128,50023,173.9500928,249.4560763,,,,,,,,,,,,,205.9097703,166.7075204,245.1120202,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.093,,,0.078,0.108,0.145,,,0.125,0.169,0.068,,,0.057,0.081,58.6,9,15347,,,0.087,1470,,,,0.030766867,471.4714695,15324,,,,,,,,,,,,,,,,,,,,,,,,,,0.279,,,0.262,0.296,0.091393552,1029,11259,0.074712701,0.108074403,0.050853242,149,2930,0.034172391,0.067534093,0.000984537,17,17267,,,1015.705882,0.975,155.025,159,,,,,,,,2.907240822,,,,,,,,2.140362295,3.127706384,2.455009506,,,,,,,,1.646704652,2.675284094,0.08392802,,,,,3193.591,,,,,0.687749736,46300,67321,0.605575523,0.76992395,88855,,,82057.55319,95652.44681,,,,,,,,,,58542,51601.57447,65482.42553,78835,67232.2766,90437.7234,,,,,,0.259547935,333,1283,,,,,,,,0.258522312,,88855,,,23.21981424,15,646,,,,,,,,,,,,,,,,,,,,,,,,,,25.89192234,24,86521,16.22632988,39.20068158,27.73893043,,,,,,,,,,,,,25.94817676,15.84982048,40.07485449,,,,16.18104275,14,86521,8.846326645,27.14904026,,,,,,,,,,,,,18.64032168,10.19083732,31.27529242,,,,12.60546573,15,118996,7.055183479,20.79079874,,,,,,,,,,,,,11.59353081,5.990546547,20.25156517,,,,7.857142857,,1400,,,11,,0.807068157,11190,13865,,,0.394,,,,,22.15344752,,,,,0.631266916,4898,7759,0.584223367,0.678310465,0.16613461,1249,7518,0.112955672,0.219313548,0.930918933,7223,7759,0.914468292,0.947369574,17267,,,,,0.157236347,2715,17267,,,0.14640644,2528,17267,,,0.006196792,107,17267,,,0.029941507,517,17267,,,0.009382058,162,17267,,,0.000405398,7,17267,,,0.104013436,1796,17267,,,0.857184224,14801,17267,,,0.006568944,108,16441,0,0.015495345,0.459199629,7929,17267,,,0.572762738,9690,16918,, -08,053,08053,CO,Hinsdale County,2024,0,,,,,,2,,,,2,,,,2,,,,2,,,,2,,,,2,,,,2,,0.106,,,0.086,0.131,3.084275216,,,2.359266453,3.914761839,4.750574956,,,3.719936444,5.79661801,,,,,,0,,,,,,,,,,,,,,,,,,,,,,0.124,,,0.091,0.162,0.243,,,0.179,0.315,8.5,0.04090743,0.093,,,0.139,,,0.106,0.179,0.365482234,288,788,,,0.182363496,,,0.145245896,0.222852576,0,0,2,0,0.510593623,0,0,781,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.147874307,80,541,0.126427498,0.169321115,0,0,781,,,-781,0,0,775,,,-775,0.002580645,2,775,,,387.5,,,,,,,,,,,0.22,,,,,,,,,0.22,0.09,,,,,,,,,0.09,0.984752224,775,787,0.966967932,1,0.92631579,176,190,0.741912875,1,0.025114155,11,438,,,0.162,16,,0.098851064,0.225148936,,,,,,,,,,,,,,,,5.038991394,142286,28237,2.463625916,7.614356873,0.118811881,12,101,0,0.32632195,0,0,781,,,,,,,,,,,,,,,,,,,,,,,,,,3.3,,,,,0,,,,,0.253333333,95,375,0.086394378,0.420272289,0.24,0.043144523,0.436855477,0.010666667,0,0.076963322,0,0,0.053920653,0.544117647,222,408,0.407597431,0.680637863,,,,,,,,,,,,,0.649315069,0.437397321,0.861232816,0.059,,408,0,0.329976745,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.09,,,0.076,0.108,0.146,,,0.124,0.17,0.064,,,0.052,0.076,,,,,,0.093,80,,,,0.04090743,34.48496335,843,,,,,,,,,,,,,,,,,,,,,,,,,,0.284,,,0.266,0.3,0.156028369,66,423,0.131007092,0.181049645,0.12295082,15,122,0.083631671,0.162269969,0.002580645,2,775,,,387.5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.78780693,41196,52292,0.489102581,1.08651128,70675,,,59919.42553,81430.57447,,,,,,,,,,,,,56563,38414.23404,74711.76596,,,,,,0.363636364,28,77,,,,,,,,0.272430138,,70675,,,57.14285714,2,35,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,100,,,0,,0.95037594,632,665,,,0.215,,,,,0.006305299,,,,,0.778242678,372,478,0.692979574,0.863505782,0.18574514,86,463,0.024866988,0.346623293,0.910041841,435,478,0.84340147,0.976682212,775,,,,,0.132903226,103,775,,,0.343225807,266,775,,,0.012903226,10,775,,,0.012903226,10,775,,,0.007741936,6,775,,,0,0,775,,,0.064516129,50,775,,,0.882580645,684,775,,,0,0,888,0,0.0697719,0.48516129,376,775,,,1,788,788,, -08,055,08055,CO,Huerfano County,2024,1,12797.34443,182,18023,9269.831798,16324.85706,0,,,,2,,,,2,,,,2,15698.84348,10345.63677,22840.99304,,12340.22765,6966.686891,17713.7684,1,,,,2,,0.16,,,0.136,0.185,3.793989837,,,3.043566794,4.586214532,5.14337531,,,4.186476066,6.129116632,0.080267559,24,299,0.049469648,0.111065469,0,,,,,,,,,,0.096491228,0.042289423,0.150693033,0.073170732,0.033313905,0.113027558,,,,,,,0.155,,,0.125,0.187,0.288,,,0.221,0.356,6.5,0.119722984,0.148,,,0.201,,,0.164,0.243,0.438416422,2990,6820,,,0.15817276,,,0.126812865,0.193200857,0.157894737,3,19,0.054083319,0.295484356,260.1,18,6920,,,20.01906578,21,1049,12.39211724,30.60126858,,,,,,,,,,25.69593148,13.27746276,44.88562109,,,,,,,,,,0.087124464,406,4660,0.072826591,0.101422336,0.000722543,5,6920,,,1384,0.000282406,2,7082,,,3541,0.001553234,11,7082,,,643.8181818,1649,,,,,,,,,2072,0.27,,,,,,,,0.21,0.29,0.23,,,,,,,,0.22,0.23,0.929097249,4796,5162,0.896381022,0.961813476,0.591476092,569,962,0.44648108,0.736471103,0.060728745,150,2470,,,0.294,328,,0.180808511,0.407191489,,,,,,,,,,0.393939394,0.212558019,0.575320769,0.422997947,0.258127586,0.587868308,5.832315878,104136,17855,3.685931564,7.978700192,0.395412844,431,1090,0.185944468,0.604881221,8.670520231,6,6920,,,160.5792532,55,34251,120.9702694,209.0159703,,,,,,,,,,216.788068,140.2938072,320.0219537,136.9668918,91.72887705,196.7073038,,,,3.9,,,,,1,,,,,0.137479542,420,3055,0.082922732,0.192036352,0.128382838,0.073718733,0.183046944,0.001309329,0,0.015414067,0.008183306,0,0.025475505,0.722177742,1804,2498,0.630731903,0.813623582,,,,,,,,,,,,,0.699178082,0.555759086,0.842597079,0.355,,2498,0.243355476,0.466644524,73.73216386,,,71.32682842,76.1374993,,,,,,,,,,70.95393011,67.17153393,74.73632629,74.34351189,70.73333128,77.95369251,,,,578.7134606,182,18023,473.5642516,683.8626697,,,,,,,,,,725.5196304,534.9409021,961.9337719,526.5013366,393.8356529,659.1670204,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.115,,,0.099,0.131,0.16,,,0.139,0.182,0.088,,,0.075,0.102,194.3,12,6175,,,0.148,1010,,,,0.119722984,803.4609458,6711,,,,,,,,,,,,,,,,,,,,,,,,,,0.292,,,0.279,0.305,0.102228412,367,3590,0.084356072,0.120100753,0.038461539,44,1144,0.025355156,0.051567921,0.001694437,12,7082,,,590.1666667,,,,,,,,,,,2.968333666,,,,,,,,2.893890479,,2.798454096,,,,,,,,2.745410706,,0.176864402,,,,,-2378.1765,,,,,0.820813855,46353,56472,0.708853871,0.932773839,47968,,,42297.70213,53638.29787,,,,,,,,,,38438,9353.744681,67522.25532,50354,42704.6383,58003.3617,,,,,,0.695410292,500,719,,,,,,,,0.301346731,,47968,,,19.8019802,6,303,,,,,,,,,,,,,,,,,,,,,,,,,,27.2345506,10,34251,11.7579459,53.6629218,29.19622785,,,,,,,,,,,,,,,,,,,40.87471899,14,34251,22.34658923,68.58083303,,,,,,,,,,,,,,,,,,,33.74103754,16,47420,19.28591829,54.79333108,,,,,,,,,,,,,34.13901407,16.37098422,62.78286236,,,,40,,500,,,20,,0.780513729,4406,5645,,,0.413,,,,,25.23219718,,,,,0.775460549,2231,2877,0.730330547,0.820590551,0.138181818,380,2750,0.079315311,0.197048325,0.749739312,2157,2877,0.680980772,0.818497852,7082,,,,,0.159841853,1132,7082,,,0.311776334,2208,7082,,,0.010025417,71,7082,,,0.054363174,385,7082,,,0.01016662,72,7082,,,0.003106467,22,7082,,,0.323496188,2291,7082,,,0.626235527,4435,7082,,,0.006696089,44,6571,0,0.022643992,0.493928269,3498,7082,,,1,6820,6820,, -08,057,08057,CO,Jackson County,2024,0,,,,,,2,,,,2,,,,2,,,,2,,,,2,,,,2,,,,2,,0.157,,,0.129,0.188,3.796449008,,,3.068860807,4.619384594,5.307916662,,,4.229381301,6.454527405,,,,,,0,,,,,,,,,,,,,,,,,,,,,,0.173,,,0.135,0.215,0.28,,,0.212,0.356,7.6,0.082349973,0.112,,,0.194,,,0.154,0.24,0.783901378,1081,1379,,,0.174547488,,,0.139064927,0.215430936,0.4,4,10,0.227273625,0.556899967,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.182358771,184,1009,0.156146005,0.208571537,0.000733676,1,1363,,,1363,0,0,1302,,,-1302,0.004608295,6,1302,,,217,,,,,,,,,,,0.28,,,,,,,,,0.28,0.18,,,,,,,,,0.19,0.856877323,922,1076,0.786822089,0.926932558,0.661478599,170,257,0.473978071,0.848979128,0.021276596,21,987,,,0.191,44,,0.118319149,0.263680851,,,,,,,,,,0.594936709,0.026653297,1,0.427777778,0.091145295,0.764410261,4.701902439,96389,20500,2.515617478,6.8881874,0.27027027,70,259,0,0.551409685,0,0,1363,,,,,,,,,,,,,,,,,,,,,,,,,,3.6,,,,,0,,,,,0.141732284,90,635,0.036476859,0.246987708,0.125198098,0.019075878,0.231320318,0.015748032,0,0.061661858,0,0,0.031842906,0.521212121,344,660,0.415870488,0.626553755,,,,,,,,,,,,,0.501785714,0.33781925,0.665752178,0.102,,660,0,0.254072509,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.118,,,0.1,0.138,0.17,,,0.145,0.195,0.082,,,0.07,0.098,,,,,,0.112,150,,,,0.082349973,114.7958625,1394,,,,,,,,,,,,,,,,,,,,,,,,,,0.285,,,0.268,0.302,0.194373402,152,782,0.163394678,0.225352125,0.138075314,33,239,0.092798718,0.18335191,0.000768049,1,1302,,,1302,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-1505.527,,,,,0.70665523,36250,51298,0.438912053,0.974398408,62439,,,52927.34043,71950.65957,,,,,,,,,,27050,12175.44681,41924.55319,39453,18942.70213,59963.29787,,,,,,0.36627907,63,172,,,,,,,,0.398757187,,62439,,,50,1,20,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,100,,,0,,0.785650224,876,1115,,,0.334,,,,,31.57020584,,,,,0.768992248,496,645,0.696366481,0.841618015,0.146086957,84,575,0.022557989,0.269615924,0.812403101,524,645,0.730989567,0.893816635,1302,,,,,0.177419355,231,1302,,,0.26344086,343,1302,,,0.003072197,4,1302,,,0.029953917,39,1302,,,0.002304148,3,1302,,,0,0,1302,,,0.139016897,181,1302,,,0.832565284,1084,1302,,,0.002153625,3,1393,0,0.04535405,0.471582181,614,1302,,,1,1379,1379,, -08,059,08059,CO,Jefferson County,2024,1,6324.69527,6387,1630688,6085.221376,6564.169165,0,13450.88604,9369.034966,18706.92635,,3159.996543,2321.846601,4202.125505,,15319.84311,11695.14452,18944.54169,,8854.781265,8180.351888,9529.210643,,5726.514606,5466.262386,5986.766826,,,,,2,,0.107,,,0.089,0.128,3.037772726,,,2.460905138,3.659083908,4.73845375,,,4.072586951,5.429579698,0.088391397,3514,39755,0.085600978,0.091181816,0,0.098901099,0.055529327,0.142272871,0.114569536,0.098504585,0.130634487,0.161100197,0.129162745,0.193037648,0.096042977,0.089432336,0.102653618,0.082825651,0.079619911,0.08603139,,,,0.101298701,0.079986892,0.122610511,0.125,,,0.096,0.156,0.241,,,0.209,0.276,8.8,0.034688414,0.082,,,0.137,,,0.113,0.165,0.991283389,577829,582910,,,0.230710806,,,0.202783183,0.260198185,0.337777778,76,225,0.304638319,0.371003433,261.1,1513,579581,,,8.19867574,894,109042,7.661234458,8.736117021,25.07836991,14.33445526,40.72570156,,,,14.1955836,8.413202508,22.43514217,19.07815005,17.38544059,20.7708595,4.289471909,3.818010295,4.760933524,,,,7.029876977,4.504174826,10.45989971,0.069736263,33290,477370,0.062587327,0.076885199,0.000883397,512,579581,,,1131.994141,0.001037937,598,576143,,,963.4498328,0.004438134,2557,576143,,,225.3199061,1455,,,,,,726,1684,1515,1434,0.45,,,,,0.26,0.32,0.45,0.31,0.46,0.52,,,,,0.41,0.49,0.37,0.39,0.53,0.952283628,404432,424697,0.948740008,0.955827249,0.784843399,134665,171582,0.767134325,0.802552472,0.027826087,9552,343275,,,0.068,7043,,0.045361702,0.090638298,0.017921147,0,0.115302896,0.058044807,0.015187387,0.100902226,0.31280389,0.138844139,0.48676364,0.165872259,0.136696057,0.195048462,0.037076083,0.02846823,0.045683935,3.933237434,185932,47272,3.816324935,4.050149934,0.204821681,22582,110252,0.186497376,0.223145986,7.677960458,445,579581,,,87.18912801,2529,2900591,83.7909667,90.58728932,107.396966,61.38664555,174.4059444,29.26680793,18.93993497,43.2035819,112.0818485,79.70115096,153.2195766,79.99010067,71.74989542,88.23030592,91.53585997,87.58681126,95.48490868,,,,8.5,,,,,1,,,,,0.133512369,30575,229005,0.126275335,0.140749403,0.118412077,0.111944305,0.124879848,0.01473767,0.012078311,0.017397028,0.007467086,0.005936317,0.008997855,0.694250454,220294,317312,0.68624824,0.702252668,0.658823529,0.556123712,0.761523347,0.6439642,0.601890929,0.686037471,0.715548341,0.64044333,0.790653351,0.708312247,0.686872084,0.72975241,0.657374514,0.647334087,0.667414942,0.426,,317312,0.412732136,0.439267864,79.51603678,,,79.28930706,79.7427665,73.02389389,69.58678114,76.46100665,84.38847277,82.92230047,85.85464507,69.92699829,67.38995866,72.46403792,76.68596469,76.00783433,77.36409504,80.05327352,79.80662465,80.29992239,,,,296.3986067,6387,1630688,288.8209718,303.9762415,556.1316271,417.7831945,725.631138,170.1392468,138.1272647,207.3452457,634.1465205,521.3407183,746.9523227,411.4873053,385.476933,437.4976776,276.755167,268.6356597,284.8746743,,,,42.71516007,213,498652,36.97864277,48.45167737,,,,,,,163.8672675,84.67260834,286.2431387,55.51003146,42.65543231,71.02144387,36.10733566,29.72618558,42.48848574,,,,3.928589189,158,40218,3.316007311,4.541171067,,,,,,,,,,4.832810867,3.402744849,6.661393174,3.362568031,2.726816153,4.102047836,,,,,,,0.088,,,0.075,0.103,0.135,,,0.118,0.156,0.066,,,0.056,0.077,181.2,912,503379,,,0.082,47380,,,,0.034688414,18542.44876,534543,,,24.34490719,425,1745745,22.03034033,26.65947404,,,,,,,,,,35.35848768,28.67335157,43.1343564,22.85203786,20.30402412,25.40005161,,,,0.262,,,0.249,0.276,0.080737967,29649,367225,0.072397542,0.089078393,0.035401135,4098,115759,0.02706071,0.043741561,0.001294817,746,576143,,,772.3096515,0.86,5439.5,6325,,,0.063789585,1688,26462,0.049410565,0.078168605,3.315907776,,,,,,3.533000042,3.038371415,2.835468161,3.489545558,3.249564271,,,,,,3.695587172,2.804830553,2.664612291,3.462748602,0.117489786,,,,,2163.999,,,,,0.797636595,63314,79377,0.773341453,0.821931737,102413,,,98777.76596,106048.234,59573,46726.3617,72419.6383,98184,84794.04255,111573.9575,63684,47127.06383,80240.93617,76216,72281.70213,80150.29787,108651,106595.6809,110706.3192,,,,,,0.297046509,21000,70696,,,61.50420258,,,,,0.325691074,,102413,,,12.21706929,353,28894,,,3.095628675,125,4037952,2.552941041,3.638316309,,,,,,,25.62678854,13.24173559,44.76484229,5.272778403,3.629538036,7.404941276,2.318764715,1.817541389,2.915498502,,,,19.35549545,600,2900591,17.76113916,20.94985175,20.68543962,,,,,,,,,,13.88760402,10.64754637,17.80328159,20.9902415,19.0904201,22.8900629,,,,13.54896295,393,2900591,12.2093916,14.88853431,,,,,,,34.48672261,17.81979282,60.24136409,11.04835645,8.200303109,14.56588061,14.36900128,12.80437669,15.93362586,,,,8.642995261,349,4037952,7.73620336,9.549787162,,,,,,,,,,9.586869823,7.315791644,12.34020181,8.544489154,7.523394425,9.565583883,,,,6.379310345,,52200,,,333,,0.840225777,377358,449115,,,0.785,,,,,152.3508109,,,,,0.705779202,168238,238372,0.698560119,0.712998286,0.12533154,29439,234889,0.118445167,0.132217912,0.937589146,223495,238372,0.93222466,0.942953633,576143,,,,,0.182584879,105195,576143,,,0.180146248,103790,576143,,,0.013316139,7672,576143,,,0.01229903,7086,576143,,,0.033137607,19092,576143,,,0.001293082,745,576143,,,0.159956816,92158,576143,,,0.768534895,442786,576143,,,0.011188687,6181,552433,0.009545949,0.012831425,0.495793579,285648,576143,,,0.071484449,41669,582910,, -08,061,08061,CO,Kiowa County,2024,0,,,,,,2,,,,2,,,,2,,,,2,,,,2,,,,2,,,,2,,0.147,,,0.124,0.171,3.843029027,,,3.044029039,4.706685648,5.470971681,,,4.437537927,6.594610556,0.095238095,12,126,0.043982262,0.146493929,1,,,,,,,,,,,,,0.087719298,0.03578964,0.139648956,,,,,,,0.176,,,0.14,0.214,0.282,,,0.214,0.36,5.2,0.356277921,0.091,,,0.192,,,0.152,0.235,0.584370678,845,1446,,,0.175264814,,,0.140042934,0.214108512,0,0,4,0,0.360186253,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.081726355,89,1089,0.068619972,0.094832737,0,0,1452,,,-1452,0,0,1424,,,-1424,,0,1424,,,,3640,,,,,,,,,3732,0.21,,,,,,,,,0.21,0.3,,,,,,,,,0.29,0.911827957,848,930,0.859226584,0.96442933,0.703571429,197,280,0.557662299,0.849480559,0.017817372,16,898,,,0.203,68,,0.124361702,0.281638298,,,,,,,,,,,,,0.150326797,0.06857017,0.232083425,4.006474501,90346,22550,2.34473192,5.668217082,0.101538462,33,325,0.001277334,0.201799589,0,0,1452,,,,,,,,,,,,,,,,,,,,,,,,,,4.9,,,,,1,,,,,0.12195122,75,615,0.050279926,0.193622513,0.127659575,0.038513967,0.216805182,0,0,0.046497146,0.024390244,0,0.06450395,0.780448718,487,624,0.707512783,0.853384653,,,,,,,,,,,,,0.79584121,0.676545012,0.915137407,0.225,,624,0.135162966,0.314837034,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.118,,,0.101,0.135,0.174,,,0.15,0.2,0.081,,,0.068,0.095,0,0,1201,,,0.091,130,,,,0.356277921,498.0765335,1398,,,,,,,,,,,,,,,,,,,,,,,,,,0.306,,,0.288,0.322,0.093791281,71,757,0.075918941,0.111663622,0.054131054,19,351,0.033875735,0.074386373,0.002808989,4,1424,,,356,,,,,,,,,,,3.56260274,,,,,,,,,,3.704663184,,,,,,,,,,0.051074122,,,,,-4159.25,,,,,0.68864,34432,50000,0.506736944,0.870543056,55573,,,47074.10638,64071.89362,,,,,,,,,,58281,25070.61702,91491.38298,44632,31749.61702,57514.38298,,,,,,0.505836576,130,257,,,,,,,,0.287711659,,55573,,,19.35483871,3,155,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,100,,,0,,0.86,903,1050,,,0.523,,,,,22.09485186,,,,,0.738656987,407,551,0.670454556,0.806859419,0.20703125,106,512,0.076622635,0.337439865,0.833030853,459,551,0.756216558,0.909845148,1424,,,,,0.237359551,338,1424,,,0.255617978,364,1424,,,0.00491573,7,1424,,,0.010533708,15,1424,,,0.007022472,10,1424,,,0.002106742,3,1424,,,0.094101124,134,1424,,,0.867275281,1235,1424,,,0.026960784,33,1224,0,0.094149875,0.495786517,706,1424,,,1,1446,1446,, -08,063,08063,CO,Kit Carson County,2024,1,9760.100701,100,19197,6864.251853,12655.94955,0,,,,2,,,,2,,,,2,,,,2,10087.54275,7026.34313,14029.33002,,,,,2,,0.164,,,0.139,0.192,3.988719282,,,3.158123708,4.907881908,5.406609199,,,4.348445637,6.55194813,0.064,40,625,0.04481137,0.08318863,0,,,,,,,,,,,,,0.065022422,0.042139008,0.087905835,,,,,,,0.184,,,0.147,0.224,0.305,,,0.23,0.382,7.8,0.093387238,0.1,,,0.206,,,0.166,0.25,0.702836179,4981,7087,,,0.17721113,,,0.140320938,0.215786369,0.235294118,4,17,0.110052656,0.376271045,143.9,10,6950,,,26.875,43,1600,19.44957076,36.20044863,,,,,,,,,,35.98484849,21.66522948,56.19479843,22.31237323,13.98304551,33.7812012,,,,,,,0.134991769,738,5467,0.115927939,0.154055599,0.000431655,3,6950,,,2316.666667,0.000143658,1,6961,,,6961,0.00172389,12,6961,,,580.0833333,2428,,,,,,,,,2332,0.28,,,,,,,,0.32,0.28,0.29,,,,,,,,0.23,0.29,0.877448937,4210,4798,0.845843155,0.909054719,0.635294118,1134,1785,0.533739611,0.736848625,0.019436346,80,4116,,,0.168,291,,0.100085106,0.235914894,,,,,,,,,,0.039399625,0,0.081806448,0.111584327,0.044992449,0.178176205,3.831867979,109829,28662,2.79621807,4.867517888,0.175041414,317,1811,0.082484057,0.26759877,11.51079137,8,6950,,,149.3420497,53,35489,111.8674432,195.3430779,,,,,,,,,,,,,170.1603852,125.0274507,226.2772396,,,,5.1,,,,,1,,,,,0.105960265,320,3020,0.067299548,0.144620981,0.099137931,0.058064816,0.140211046,0.012582782,0,0.026471215,0.009602649,0,0.020556069,0.792102207,2728,3444,0.739198778,0.845005636,,,,,,,,,,0.79144385,0.689861638,0.893026062,0.79819955,0.754050299,0.8423488,0.159,,3444,0.097514069,0.220485931,76.19199082,,,73.88920405,78.49477759,,,,,,,,,,,,,75.71996643,73.2044575,78.23547535,,,,413.6699943,100,19197,326.5991726,500.7408159,,,,,,,,,,,,,441.8235292,345.6997007,556.4036135,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.123,,,0.105,0.142,0.175,,,0.151,0.2,0.086,,,0.072,0.101,105,6,5715,,,0.1,710,,,,0.093387238,772.312454,8270,,,,,,,,,,,,,,,,,,,,,,,,,,0.298,,,0.283,0.311,0.15917603,595,3738,0.134154753,0.184197307,0.082411504,149,1808,0.056198739,0.10862427,0.001292918,9,6961,,,773.4444444,,,,,,,,,,,2.532535604,,,,,,,,,2.698042259,,,,,,,,,,,0.098780961,,,,,-2473.43284,,,,,0.807186021,41943,51962,0.596360607,1.018011434,56720,,,53003.74468,60436.25532,,,,,,,,,,55000,37136,72864,59444,51696.93617,67191.06383,,,,,,0.537681159,742,1380,,,,,,,,0.322813822,,56720,,,12.7388535,6,471,,,,,,,,,,,,,,,,,,,,,,,,,,47.47248239,16,35489,25.95364787,79.65075893,45.08439235,,,,,,,,,,,,,55.45567645,29.52781213,94.83089564,,,,30.99551974,11,35489,15.47285178,55.45954666,,,,,,,,,,,,,36.20433728,17.36138697,66.58106528,,,,29.15905291,15,51442,16.32010057,48.09342341,,,,,,,,,,,,,35.27514614,19.28525065,59.18570128,,,,5.555555556,,900,,,5,,0.757534247,3871,5110,,,0.58,,,,,21.91197994,,,,,0.672708963,2004,2979,0.616903178,0.728514747,0.098053097,277,2825,0.059335443,0.136770752,0.883517959,2632,2979,0.856631454,0.910404464,6961,,,,,0.251113346,1748,6961,,,0.212756788,1481,6961,,,0.007182876,50,6961,,,0.017669875,123,6961,,,0.007182876,50,6961,,,0.002154863,15,6961,,,0.191351817,1332,6961,,,0.769716995,5358,6961,,,0.012017037,79,6574,0,0.025945538,0.492888953,3431,6961,,,1,7087,7087,, -08,065,08065,CO,Lake County,2024,1,7122.239793,89,22429,5111.042242,9662.122496,0,,,,2,,,,2,,,,2,6256.916122,3331.544318,10699.51713,1,8695.537108,5627.293134,12836.32812,1,,,,2,,0.13,,,0.109,0.154,3.333674556,,,2.574849025,4.202652288,4.532436299,,,3.590542492,5.60979675,0.156140351,89,570,0.12634069,0.185940012,0,,,,,,,,,,0.148698885,0.106180634,0.191217135,0.163822526,0.121442784,0.206202267,,,,,,,0.13,,,0.099,0.163,0.237,,,0.177,0.307,6.7,0.228574096,0.085,,,0.166,,,0.131,0.204,0.90922539,6761,7436,,,0.211054624,,,0.169178745,0.25654722,0.333333333,1,3,0.04092282,0.635504717,351,26,7407,,,29.43237561,42,1427,21.21226751,39.78402157,,,,,,,,,,45.34606205,32.08957237,62.24101303,,,,,,,,,,0.15245478,944,6192,0.129816483,0.175093078,0.000405022,3,7407,,,2469,0.000409445,3,7327,,,2442.333333,0.000682408,5,7327,,,1465.4,836,,,,,,,,,910,0.29,,,,,,,,0.22,0.3,0.46,,,,,,,,0.42,0.47,0.942759666,4974,5276,0.893105181,0.992414152,0.647462801,1697,2621,0.527736859,0.767188742,0.025853154,125,4835,,,0.166,239,,0.101659575,0.230340426,,,,,,,,,,0.144427002,0,0.310230642,,,,3.645777934,145328,39862,1.772600007,5.518955861,0.08582996,106,1235,0.009714229,0.16194569,6.75037127,5,7407,,,99.68560693,39,39123,70.88621141,136.2735063,,,,,,,,,,,,,126.5662574,85.3937224,180.6812024,,,,3.6,,,,,0,,,,,0.11908397,390,3275,0.046934002,0.191233937,0.110062893,0.03607319,0.184052596,0.00610687,0,0.019910265,0.05648855,0,0.113232048,0.651480638,2860,4390,0.563235864,0.739725412,,,,,,,,,,,,,0.611719867,0.51134031,0.712099423,0.465,,4390,0.327260532,0.602739468,82.173499,,,79.05523158,85.29176642,,,,,,,,,,79.8185298,74.88136176,84.75569783,81.58914792,77.56049817,85.61779767,,,,321.9461419,89,22429,256.7968513,398.5912304,,,,,,,,,,354.442692,224.6862623,531.8380678,350.7380163,264.2238738,456.5337385,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.098,,,0.084,0.115,0.141,,,0.12,0.164,0.075,,,0.063,0.089,111.1,7,6303,,,0.085,630,,,,0.228574096,1670.876645,7310,,,51.01823902,12,23521,26.36186858,89.11859635,,,,,,,,,,,,,69.9790063,33.55765358,128.6938841,,,,0.282,,,0.267,0.297,0.174893617,822,4700,0.146297872,0.203489362,0.08370607,131,1565,0.059876283,0.107535858,0.001637778,12,7327,,,610.5833333,0.725,55.1,76,,,,,,,,2.387317008,,,,,,,,2.290580015,,2.334018829,,,,,,,,2.210720614,,0.024791399,,,,,-5276.115,,,,,0.725821379,43918,60508,0.476113041,0.975529717,71326,,,63178.59575,79473.40426,114215,91587.42553,136842.5745,,,,,,,,,,78731,66531.34043,90930.65957,,,,,,0.476663357,480,1007,,,,,,,,0.428483302,,71326,,,10.20408163,3,294,,,,,,,,,,,,,,,,,,,,,,,,,,29.92669831,12,39123,15.46356172,52.27591932,30.67249444,,,,,,,,,,,,,40.54520065,18.53984755,76.96742044,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.85714286,,700,,,9,,0.661268781,3961,5990,,,0.516,,,,,27.64291071,,,,,0.774057103,2196,2837,0.71878486,0.829329345,0.087238645,242,2774,0.031405647,0.143071643,0.870637998,2470,2837,0.798643946,0.94263205,7327,,,,,0.199945407,1465,7327,,,0.153405214,1124,7327,,,0.009144261,67,7327,,,0.029343524,215,7327,,,0.010782039,79,7327,,,0.000818889,6,7327,,,0.349119694,2558,7327,,,0.607069742,4448,7327,,,0.047249647,335,7090,0.012343297,0.082155998,0.459806196,3369,7327,,,0.389725659,2898,7436,, -08,067,08067,CO,La Plata County,2024,1,6254.117408,568,158251,5416.741915,7091.492901,0,14101.90617,9822.494343,19612.33776,,,,,2,,,,2,7488.733608,5325.221665,10237.34537,,5560.313936,4585.785231,6534.842641,,,,,2,,0.119,,,0.1,0.141,3.351303054,,,2.661701295,4.131018215,4.8568558,,,4.032250931,5.751659142,0.084969325,277,3260,0.075397469,0.094541182,0,0.061371841,0.033106935,0.089636748,,,,,,,0.083832335,0.059564532,0.108100139,0.088339223,0.07664931,0.100029136,,,,,,,0.135,,,0.103,0.17,0.215,,,0.169,0.267,8.5,0.041778011,0.091,,,0.155,,,0.124,0.19,0.744059815,41398,55638,,,0.192626114,,,0.157313215,0.230959163,0.454545455,20,44,0.382118893,0.522929607,296.9,167,56250,,,8.293937132,100,12057,6.668325454,9.91954881,19.34916447,12.12601836,29.29486754,,,,,,,15.03759399,10.14580151,21.46710045,4.535147392,3.209340213,6.224844125,,,,,,,0.110234571,4737,42972,0.095936699,0.124532444,0.001315556,74,56250,,,760.1351351,0.000989277,56,56607,,,1010.839286,0.005282032,299,56607,,,189.3210702,1407,,,,,1142,,,1371,1420,0.42,,,,,0.25,,,0.21,0.43,0.47,,,,,0.15,,,0.45,0.48,0.958354998,38707,40389,0.949503253,0.967206742,0.75046478,10899,14523,0.695565036,0.805364524,0.029982821,925,30851,,,0.132,1284,,0.09387234,0.17012766,0.533692722,0.414419177,0.652966268,0.608108108,0.00443829,1,,,,0.31255687,0.235446453,0.389667287,0.086177866,0.048708996,0.123646737,4.715439445,154143,32689,4.235809811,5.195069079,0.204361555,2071,10134,0.159441162,0.249281948,9.6,54,56250,,,79.37807457,223,280934,68.95959846,89.79655067,114.4601297,67.83632698,180.8963517,,,,,,,85.55500359,58.13047408,121.4384984,73.10804552,61.81507207,84.40101896,,,,4.5,,,,,1,,,,,0.137342068,2935,21370,0.117135067,0.15754907,0.11633956,0.09882947,0.133849651,0.022227422,0.011844165,0.032610679,0.00982686,0.004495749,0.015157972,0.677039149,19473,28762,0.648001429,0.706076869,0.725,0.632885256,0.817114744,,,,,,,0.626353314,0.537445698,0.715260931,0.702637372,0.66943653,0.735838214,0.283,,28762,0.250918167,0.315081833,81.11240439,,,80.28260441,81.94220438,75.29185229,69.34169097,81.24201361,,,,,,,79.02269244,76.59571311,81.44967176,81.80562112,80.8631613,82.74808095,,,,260.0670993,568,158251,237.0329472,283.1012515,588.2620998,425.7281985,792.385188,,,,,,,348.5500837,268.4260361,445.0906755,228.7314284,204.6798191,252.7830376,,,,59.72854407,29,48553,40.00114336,85.78015249,,,,,,,,,,,,,54.950087,32.56690411,86.84482788,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.099,,,0.084,0.116,0.151,,,0.129,0.173,0.067,,,0.057,0.079,131.8,65,49305,,,0.091,5060,,,,0.041778011,2144.632431,51334,,,13.60664951,23,169035,8.625448598,20.41665507,,,,,,,,,,,,,13.59352344,8.056383504,21.48362756,,,,0.268,,,0.253,0.283,0.122485958,4056,33114,0.104613617,0.140358298,0.07040216,730,10369,0.051338331,0.08946599,0.001713569,97,56607,,,583.5773196,0.816666667,519.4,636,,,0.048969943,145,2961,0.016118098,0.081821787,3.030512827,,,,,,,,2.789482074,3.148367671,2.659329393,,,,,,,,2.382592345,2.828486801,0.067390028,,,,,2332.921333,,,,,0.82803214,52248,63099,0.753296445,0.902767835,79358,,,73294.51064,85421.48936,63627,46813.89362,80440.10638,,,,,,,50647,38340.10638,62953.89362,85701,81137.59575,90264.40426,,,,,,0.228981132,1517,6625,,,,,,,,0.33307291,,79358,,,17.03445606,44,2583,,,4.600697773,18,391245,2.726665077,7.271085961,,,,,,,,,,,,,,,,,,,22.63195348,67,280934,17.35178896,29.01314296,23.84901792,,,,,,,,,,26.32762481,12.62511944,48.41743939,21.3358324,15.56250256,28.5490224,,,,22.42519595,63,280934,17.2321363,28.69156716,,,,,,,,,,30.35822708,15.15471758,54.31925405,19.52575129,14.13088302,26.30105885,,,,12.52412171,49,391245,9.26541419,16.55755309,,,,,,,,,,,,,13.02142676,9.302698183,17.73148743,,,,4.4,,5000,,,22,,0.791017964,35667,45090,,,0.6,,,,,55.96302074,,,,,0.706711912,16036,22691,0.686056422,0.727367402,0.118935341,2623,22054,0.099749893,0.138120788,0.852276233,19339,22691,0.833351008,0.871201457,56607,,,,,0.172787818,9781,56607,,,0.208295794,11791,56607,,,0.005635346,319,56607,,,0.076580635,4335,56607,,,0.008868161,502,56607,,,0.000971611,55,56607,,,0.130831876,7406,56607,,,0.78297737,44322,56607,,,0.003495392,187,53499,0.000359337,0.006631448,0.49257159,27883,56607,,,0.656457817,36524,55638,, -08,069,08069,CO,Larimer County,2024,1,5578.965722,3252,1012136,5286.789965,5871.141479,0,12282.23324,6874.272706,20257.6759,1,3585.786384,2273.080975,5380.440181,1,5657.445834,3624.832296,8417.830953,1,6463.768869,5622.185085,7305.352653,,5574.774807,5242.009753,5907.539861,,,,,2,,0.109,,,0.09,0.132,3.232134921,,,2.598890694,3.939617981,5.514023182,,,4.717676806,6.351372612,0.091795288,2034,22158,0.087993457,0.09559712,0,0.12987013,0.054784404,0.204955856,0.14796748,0.119904761,0.176030198,0.146464647,0.097215281,0.195714012,0.093034703,0.084102667,0.10196674,0.087683053,0.083361782,0.092004323,,,,0.105032823,0.076922616,0.13314303,0.125,,,0.095,0.158,0.248,,,0.212,0.288,8.5,0.047174614,0.09,,,0.149,,,0.122,0.179,0.919003749,329983,359066,,,0.233274434,,,0.202782369,0.265082747,0.321212121,53,165,0.281996962,0.360720261,326.6,1184,362533,,,6.61179328,588,88932,6.077368392,7.146218169,,,,,,,,,,20.19278126,17.85657456,22.52898795,4.064011909,3.581920137,4.546103682,,,,3.179650239,1.524765881,5.847489998,0.077899781,23050,295893,0.069559356,0.086240207,0.000830269,301,362533,,,1204.428571,0.000847924,311,366778,,,1179.350482,0.004929412,1808,366778,,,202.8639381,1293,,,,,,,882,422,1292,0.44,,,,,,0.44,,0.26,0.45,0.55,,,,,0.33,0.5,0.42,0.39,0.56,0.963267457,230350,239134,0.958576008,0.967958905,0.82134868,80778,98348,0.796539279,0.846158082,0.027149472,5723,210796,,,0.09,5903,,0.063787234,0.116212766,0.086283186,0,0.215398204,0.066082803,0.002234298,0.129931308,0.228368794,0.07534211,0.381395479,0.168022085,0.095792918,0.240251251,0.064774335,0.051039104,0.078509567,4.445301543,164814,37076,4.226007815,4.66459527,0.162043558,10930,67451,0.139412368,0.184674747,8.881950057,322,362533,,,71.80077933,1274,1774354,67.85801775,75.7435409,187.8051834,105.1131355,309.7560895,32.17025489,17.12930584,55.01211561,,,,54.84296474,44.86256351,64.82336596,76.38779744,71.90000796,80.87558693,,,,6,,,,,1,,,,,0.160785483,21575,134185,0.150921584,0.170649381,0.145757222,0.135898973,0.155615471,0.011923837,0.009060881,0.014786792,0.011066811,0.008354346,0.013779276,0.690442812,131006,189742,0.679422113,0.701463511,0.559073359,0.47156181,0.646584908,0.601876353,0.521413307,0.682339399,0.616784631,0.5437358,0.689833462,0.690763359,0.662280831,0.719245887,0.691086482,0.678749635,0.703423328,0.294,,189742,0.277663121,0.310336879,80.98072663,,,80.67758386,81.28386941,,,,85.63257498,82.95329303,88.31185694,77.96188154,74.59210045,81.33166263,79.5451578,78.36749555,80.72282004,80.98968537,80.66085224,81.3185185,,,,261.9882254,3252,1012136,252.5617166,271.4147343,505.349878,320.3484732,758.2729414,180.2083718,126.2157282,249.4843469,359.9876376,244.5941343,510.9737165,320.1603773,283.3029597,357.017795,259.0199751,248.8323356,269.2076146,,,,34.95249221,114,326157,28.53623458,41.36874983,,,,,,,,,,37.49714696,23.76997463,56.26413136,34.74591526,27.67492756,43.07278968,,,,3.851432113,87,22589,3.084839238,4.750727282,,,,,,,,,,5.162241888,3.195509092,7.891035087,3.723624328,2.861335173,4.764133063,,,,,,,0.092,,,0.078,0.108,0.153,,,0.13,0.176,0.067,,,0.057,0.078,100.4,317,315782,,,0.09,32050,,,,0.047174614,14134.92966,299630,,,17.40966422,188,1079860,14.9209929,19.89833553,,,,,,,,,,18.28056091,11.71270031,27.20002559,17.4358835,14.68203738,20.18972962,,,,0.259,,,0.244,0.275,0.089460978,20381,227820,0.078737574,0.100184382,0.041613191,2983,71684,0.030889787,0.052336596,0.00135777,498,366778,,,736.502008,0.838041526,2986.78,3564,,,0.042075055,953,22650,0.025841264,0.058308846,3.405222225,,,,,,3.65794784,3.053847756,2.79377438,3.55834218,3.31563311,,,,,,3.87635982,3.04213646,2.591003329,3.492960176,0.061010909,,,,,2443.9797,,,,,0.770755869,55553,72076,0.736794599,0.804717139,88338,,,81900.38298,94775.61702,78676,52323.82979,105028.1702,81918,70864.55319,92971.44681,70735,52744.70213,88725.29787,75199,69638.31915,80759.68085,89410,86656.46809,92163.53192,,,,,,0.272673476,12441,45626,,,62.59568295,,,,,0.352645521,,88338,,,12.34786719,209,16926,,,1.6748886,41,2447924,1.201928976,2.272175507,,,,,,,,,,3.485012703,1.671199052,6.409062442,1.487325016,1.003491943,2.123248942,,,,21.39213844,394,1774354,19.22005187,23.564225,22.20526456,,,,,,,,,,13.64189109,8.740617032,20.2980526,22.83405714,20.36692598,25.30118829,,,,12.39887869,220,1774354,10.76045152,14.03730586,,,,,,,,,,7.091762681,3.969205738,11.69678406,13.52057152,11.63250188,15.40864115,,,,9.681673124,237,2447924,8.449044314,10.91430193,,,,,,,,,,11.15204065,7.627987549,15.74335393,9.717190106,8.356783491,11.07759672,,,,7.784615385,,32500,,,253,,0.823576057,224338,272395,,,0.694,,,,,113.4308869,,,,,0.645309739,96055,148851,0.636201943,0.654417536,0.157111356,22800,145120,0.146501505,0.167721207,0.920497679,137017,148851,0.913068808,0.92792655,366778,,,,,0.180864174,66337,366778,,,0.174666965,64064,366778,,,0.011074819,4062,366778,,,0.011598297,4254,366778,,,0.024816101,9102,366778,,,0.00114238,419,366778,,,0.127363146,46714,366778,,,0.808930743,296698,366778,,,0.009757733,3347,343010,0.007502008,0.012013458,0.499135717,183072,366778,,,0.102440777,36783,359066,, -08,071,08071,CO,Las Animas County,2024,1,12296.87262,317,39177,10010.42514,14583.3201,0,,,,2,,,,2,,,,2,15935.88248,12087.85009,19783.91486,,10937.59024,7590.503322,14284.67715,,,,,2,,0.184,,,0.157,0.213,4.2062523,,,3.380982922,5.095973785,5.33035995,,,4.338340145,6.394690801,0.119952494,101,842,0.098006375,0.141898613,0,,,,,,,,,,0.161202186,0.123529235,0.198875137,0.090024331,0.062353003,0.117695659,,,,,,,0.174,,,0.141,0.208,0.31,,,0.243,0.384,6.2,0.126236127,0.157,,,0.244,,,0.199,0.288,0.772655445,11246,14555,,,0.166296039,,,0.132831476,0.205683992,0.352941177,6,17,0.222343344,0.479798798,382.7,56,14633,,,25.98314607,74,2848,20.40235823,32.6194605,,,,,,,,,,27.486911,19.81014773,37.15431857,24.23698384,15.97232507,35.263539,,,,,,,0.109451759,1114,10178,0.092770908,0.12613261,0.00054671,8,14633,,,1829.125,0.000628185,9,14327,,,1591.888889,0.001954352,28,14327,,,511.6785714,2634,,,,,,,,2971,2452,0.28,,,,,,,,0.24,0.29,0.29,,,,,,,,0.27,0.31,0.88498915,9380,10599,0.858981909,0.910996391,0.572366365,1831,3199,0.492881596,0.651851133,0.046427396,282,6074,,,0.238,611,,0.146255319,0.329744681,0.530120482,0.135560686,0.924680278,,,,,,,0.373234201,0.24584073,0.500627671,0.091251176,0.019465218,0.163037134,5.134612302,96084,18713,3.961922923,6.30730168,0.321170658,845,2631,0.239106316,0.403234999,7.517255518,11,14633,,,161.8257261,117,72300,132.5025705,191.1488817,,,,,,,,,,196.4237334,149.1527759,253.9232246,149.7315159,113.6974176,193.5627059,,,,4.2,,,,,0,,,,,0.154814815,1045,6750,0.124213293,0.185416337,0.140929535,0.110297296,0.171561775,0.01037037,0.001206506,0.019534235,0.01037037,0.00318251,0.01755823,0.704366123,4017,5703,0.664471878,0.744260368,,,,,,,,,,0.737922705,0.66522004,0.81062537,0.687190375,0.62559555,0.7487852,0.148,,5703,0.111430787,0.184569214,74.81583258,,,73.10035043,76.53131474,,,,,,,,,,71.5803771,68.92473219,74.23602202,76.12772576,73.59318106,78.66227047,,,,536.5908753,317,39177,469.5759457,603.6058049,,,,,,,,,,700.0223619,575.324741,824.7199827,458.9791222,374.493061,543.4651835,,,,90.87154069,11,12105,45.3627457,162.5942876,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.128,,,0.111,0.147,0.166,,,0.144,0.19,0.101,,,0.086,0.117,186.8,24,12851,,,0.157,2290,,,,0.126236127,1957.543614,15507,,,61.98489405,27,43559,40.84843576,90.18476651,,,,,,,,,,90.8987615,51.95649616,147.6138939,42.70766603,20.47998589,78.54091839,,,,0.307,,,0.295,0.319,0.130417755,999,7660,0.108970946,0.151864563,0.046746447,125,2674,0.032448575,0.06104432,0.000209395,3,14327,,,4775.666667,,,,,,,,,,,3.178077276,,,,,,,,3.144977412,3.327827504,3.066140703,,,,,,,,2.996331767,3.359364629,0.131114283,,,,,-1481.5516,,,,,0.892999621,40068,44869,0.773385242,1.012614,49097,,,42519.97872,55674.02128,29936,6830.638298,53041.3617,,,,,,,43045,27776.06383,58313.93617,51909,47364.65957,56453.34043,,,,,,0.592948718,925,1560,,,,,,,,0.322850683,,49097,,,10.17441861,7,688,,,10.9495227,11,100461,5.465962281,19.59172068,,,,,,,,,,,,,,,,,,,38.48814934,26,72300,24.39818513,57.75112151,35.96127248,,,,,,,,,,41.54614417,19.92299101,76.40483834,38.61090244,19.95081672,67.44547627,,,,33.19502075,24,72300,21.26867615,49.3915596,,,,,,,,,,44.02600921,23.4419957,75.28581658,28.39735646,14.17585803,50.81071487,,,,23.88986771,24,100461,15.30668902,35.54622948,,,,,,,,,,36.17770489,20.2483868,59.66962248,,,,,,,16.92307692,,1300,,,22,,0.700483942,7961,11365,,,0.507,,,,,40.54092052,,,,,0.706982356,4688,6631,0.670285093,0.743679618,0.151872176,941,6196,0.115523574,0.188220778,0.830040718,5504,6631,0.802854121,0.857227315,14327,,,,,0.181405737,2599,14327,,,0.26097578,3739,14327,,,0.015495219,222,14327,,,0.040343408,578,14327,,,0.014657639,210,14327,,,0.001046974,15,14327,,,0.405039436,5803,14327,,,0.538772946,7719,14327,,,0.016356499,225,13756,0.003530092,0.029182906,0.482375934,6911,14327,,,0.428169014,6232,14555,, -08,073,08073,CO,Lincoln County,2024,1,6451.306162,69,15611,4251.451411,9386.311758,0,,,,2,,,,2,,,,2,,,,2,6897.258792,4505.518436,10106.08219,,,,,2,,0.175,,,0.149,0.202,4.079471655,,,3.208452109,4.99798136,5.389123659,,,4.280712485,6.523198808,0.086614173,33,381,0.058370889,0.114857458,0,,,,,,,,,,,,,0.077399381,0.048256638,0.106542124,,,,,,,0.197,,,0.161,0.236,0.296,,,0.226,0.375,7.8,0.076808286,0.105,,,0.22,,,0.176,0.266,0.720881057,4091,5675,,,0.200876459,,,0.159293093,0.244945465,0.2,4,20,0.089212428,0.331567708,193.4,11,5688,,,10.40582726,10,961,4.989998643,19.13668683,,,,,,,,,,,,,,,,,,,,,,0.092189161,347,3764,0.075508309,0.108870012,0.001054852,6,5688,,,948,0.000907441,5,5510,,,1102,0.00199637,11,5510,,,500.9090909,2622,,,,,,,,,2716,0.29,,,,,,,,,0.28,0.41,,,,,,,,,0.41,0.887461337,3730,4203,0.840457522,0.934465152,0.380266075,686,1804,0.309943817,0.450588334,0.028584392,63,2204,,,0.181,199,,0.109510638,0.252489362,,,,,,,,,,0.14516129,0,0.753315383,0.085784314,0.034183625,0.137385003,6.28101572,129860,20675,4.651694414,7.910337026,0.15625,150,960,0.069861761,0.242638239,10.54852321,6,5688,,,109.8317095,31,28225,74.62531791,155.8973446,,,,,,,,,,,,,124.9132547,82.31862194,181.7422274,,,,4.7,,,,,0,,,,,0.122112211,185,1515,,,0.112591606,0.092777248,0.132405964,0.002640264,0,0.02791916,0.035643564,0.014312932,0.056974197,0.769017981,1668,2169,0.722372995,0.815662966,,,,,,,,,,,,,0.777153558,0.722838828,0.831468288,0.183,,2169,0.126772305,0.239227695,78.41805179,,,76.1634348,80.67266879,,,,,,,,,,,,,77.6548208,75.27253815,80.03710344,,,,349.4250953,69,15611,269.6789115,445.370968,,,,,,,,,,,,,386.5817905,293.5477612,499.7466095,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.125,,,0.107,0.144,0.167,,,0.144,0.191,0.09,,,0.075,0.105,265.6,13,4895,,,0.105,590,,,,0.076808286,419.9109019,5467,,,,,,,,,,,,,,,,,,,,,,,,,,0.317,,,0.304,0.33,0.110903659,297,2678,0.089456851,0.132350468,0.045454546,52,1144,0.028773694,0.062135397,0.002540835,14,5510,,,393.5714286,,,,,,,,,,,3.117516598,,,,,,,,,3.157082694,2.971614186,,,,,,,,,2.886414641,0.075685139,,,,,-3250.791,,,,,0.946510541,44539,47056,0.712309459,1.180711623,54345,,,46707.55319,61982.44681,,,,,,,,,,,,,58500,47450.12766,69549.87234,,,,,,0.409090909,288,704,,,,,,,,0.296752231,,54345,,,12.90322581,4,310,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,22,,500,,,11,,0.613657407,2651,4320,,,0.534,,,,,17.00101044,,,,,0.711758585,1368,1922,0.664905734,0.758611436,0.12231405,222,1815,0.068729071,0.175899028,0.773673257,1487,1922,0.713781959,0.833564555,5510,,,,,0.202540835,1116,5510,,,0.184573503,1017,5510,,,0.049001815,270,5510,,,0.018874773,104,5510,,,0.013611615,75,5510,,,0.005263158,29,5510,,,0.15353902,846,5510,,,0.75154265,4141,5510,,,0.011069418,59,5330,0,0.027572238,0.424863884,2341,5510,,,1,5675,5675,, -08,075,08075,CO,Logan County,2024,1,10403.04088,379,60560,8803.512517,12002.56924,0,,,,2,,,,2,,,,2,10784.58856,6836.504035,16182.17803,1,10860.60223,9022.249873,12698.95458,,,,,2,,0.167,,,0.142,0.195,3.950480456,,,3.15955822,4.868632516,5.297995074,,,4.344122382,6.400214269,0.081619111,123,1507,0.067795968,0.095442254,0,,,,,,,,,,0.090277778,0.057179556,0.123375999,0.076521739,0.061157435,0.091886044,,,,,,,0.187,,,0.152,0.225,0.305,,,0.243,0.373,7.9,0.079147722,0.103,,,0.209,,,0.17,0.252,0.776755853,16722,21528,,,0.204048205,,,0.166882641,0.246569525,0.346153846,9,26,0.242307924,0.448466838,325.8,70,21487,,,16.49776102,70,4243,12.86081407,20.84392855,,,,,,,,,,28.13599062,18.02726009,41.86412379,14.61038961,10.65691844,19.54985081,,,,,,,0.112054566,1610,14368,0.095373715,0.128735417,0.000651557,14,21487,,,1534.785714,0.00062431,13,20823,,,1601.769231,0.003457715,72,20823,,,289.2083333,1747,,,,,,,,,1754,0.46,,,,,,,,0.39,0.46,0.4,,,,,,,,0.37,0.4,0.91071666,13699,15042,0.88614583,0.93528749,0.556492969,3364,6045,0.48434278,0.628643159,0.027695934,282,10182,,,0.177,650,,0.118617021,0.235382979,,,,,,,,,,0.263397948,0.070116457,0.456679438,0.139526412,0.069294507,0.209758316,4.261049025,109428,25681,3.505179959,5.01691809,0.226794024,926,4083,0.141553904,0.312034144,9.773351329,21,21487,,,100.6459641,110,109294,81.83738044,119.4545478,,,,,,,,,,59.49805279,29.70121358,106.4584515,116.6903255,94.62799314,142.3523012,,,,5,,,,,1,,,,,0.123493976,1025,8300,0.088828184,0.158159768,0.083694978,0.058752158,0.108637798,0.036144578,0.009730568,0.062558589,0.009036145,0.000917254,0.017155035,0.754689188,7685,10183,0.724218442,0.785159934,,,,,,,,,,0.632903622,0.504061917,0.761745326,0.791184501,0.766691473,0.815677529,0.142,,10183,0.105821077,0.178178923,75.37424189,,,74.08490406,76.66357971,,,,,,,,,,74.91580525,70.57100512,79.26060538,75.0397546,73.62149965,76.45800955,,,,494.9187057,379,60560,442.9533175,546.8840939,,,,,,,,,,502.4512441,353.7720449,692.5628542,517.8195522,457.7950187,577.8440857,,,,80.06405124,15,18735,44.8112417,132.0534768,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.122,,,0.106,0.141,0.163,,,0.141,0.186,0.089,,,0.076,0.104,160.4,30,18706,,,0.103,2230,,,,0.079147722,1797.365609,22709,,,22.77212692,15,65870,12.74538657,37.55916027,,,,,,,,,,,,,28.2093131,15.42229397,47.33043406,,,,0.318,,,0.303,0.332,0.132079022,1404,10630,0.110632213,0.15352583,0.055991893,221,3947,0.039311042,0.072672744,0.000960476,20,20823,,,1041.15,0.862853107,152.725,177,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.059993261,,,,,2436.40725,,,,,0.792489177,39905,50354,0.647783074,0.93719528,58976,,,50785.70213,67166.29787,,,,,,,36364,35937.44681,36790.55319,56328,16419.06383,96236.93617,54032,47936.34043,60127.65957,,,,,,0.450155763,1156,2568,,,,,,,,0.284776858,,58976,,,6.451612903,9,1395,,,,,,,,,,,,,,,,,,,,,,,,,,23.9438574,26,109294,15.34128123,35.62656186,23.78904606,,,,,,,,,,,,,27.8459237,17.23706566,42.56545233,,,,21.04415613,23,109294,13.3401898,31.57656678,,,,,,,,,,,,,22.85686789,13.76132758,35.69383054,,,,16.96585296,26,153249,11.08265843,24.8589055,,,,,,,,,,,,,20.44693594,13.10073767,30.42341992,,,,22.77777778,,1800,,,41,,0.597729852,10532,17620,,,0.683,,,,,56.99876758,,,,,0.7154665,5713,7985,0.676685342,0.754247657,0.091791347,681,7419,0.06484986,0.118732833,0.855729493,6833,7985,0.817887148,0.893571838,20823,,,,,0.179897229,3746,20823,,,0.195793113,4077,20823,,,0.03520146,733,20823,,,0.018345099,382,20823,,,0.009940931,207,20823,,,0.001584786,33,20823,,,0.173558085,3614,20823,,,0.758776353,15800,20823,,,0.011870468,239,20134,0.004864815,0.018876121,0.440714594,9177,20823,,,0.429672984,9250,21528,, -08,077,08077,CO,Mesa County,2024,1,8374.725937,2308,429097,7837.649412,8911.802462,0,17057.52204,9325.506024,28619.62356,1,,,,2,,,,2,8354.227852,7039.417169,9669.038535,,8465.223394,7850.717472,9079.729316,,,,,2,,0.142,,,0.12,0.167,3.876490233,,,3.186992012,4.685059596,5.350784073,,,4.54707515,6.232757335,0.084033613,930,11067,0.078864603,0.089202624,0,,,,,,,,,,0.090511587,0.078752499,0.102270676,0.082351497,0.076382457,0.088320537,,,,0.115740741,0.073076686,0.158404796,0.164,,,0.129,0.202,0.289,,,0.244,0.34,7.6,0.088438589,0.111,,,0.196,,,0.162,0.235,0.653738207,101789,155703,,,0.192915799,,,0.161852504,0.227813048,0.363636364,28,77,0.30618159,0.420502352,351.5,553,157335,,,19.68183929,678,34448,18.20032139,21.1633572,,,,,,,,,,36.25335026,31.82096342,40.6857371,15.70473516,14.15986695,17.24960336,,,,14.92537313,8.15984038,25.04224,0.110348222,13452,121905,0.097241839,0.123454605,0.001169479,184,157335,,,855.0815217,0.000743841,118,158636,,,1344.372881,0.003719206,590,158636,,,268.8745763,1257,,,,,,,4568,1860,1187,0.41,,,,,,0.39,,0.3,0.41,0.45,,,,,0.21,0.56,0.33,0.37,0.46,0.922769835,101011,109465,0.913348693,0.932190978,0.641962944,25640,39940,0.603208672,0.680717217,0.033981214,2612,76866,,,0.133,4218,,0.087723404,0.178276596,0.491935484,0.1482506,0.835620368,,,,0.328703704,0,0.745281113,0.262128116,0.191243653,0.333012579,0.102532041,0.07395553,0.131108553,4.324479784,127810,29555,4.012456249,4.636503318,0.257904564,8426,32671,0.217166188,0.29864294,8.643976229,136,157335,,,111.27361,859,771971,103.8322611,118.7149589,194.5903872,93.31365433,357.8586504,,,,,,,68.72314143,54.40875825,85.64953909,121.1163181,112.4883051,129.7443311,,,,5,,,,,0,,,,,0.16334728,9760,59750,0.147466754,0.179227807,0.135169384,0.120265334,0.150073435,0.023179916,0.016641041,0.029718792,0.015313808,0.010693857,0.019933759,0.742329768,53931,72651,0.72372733,0.760932207,,,,,,,,,,0.701235052,0.66036935,0.742100754,0.749108143,0.730183798,0.768032489,0.119,,72651,0.103928719,0.134071281,76.99411216,,,76.54881092,77.4394134,,,,,,,,,,76.84357821,75.47928024,78.20787618,76.87699412,76.38441432,77.36957393,,,,395.0327199,2308,429097,377.7689801,412.2964596,627.2912906,383.1658169,968.8005219,,,,,,,401.4085918,349.4430708,453.3741127,398.9076951,379.8318142,417.9835759,,,,48.90892889,73,149257,38.33679286,61.49563517,,,,,,,,,,44.41417701,24.85827772,73.25443067,53.1265437,40.23752539,68.83159949,,,,4.387119417,50,11397,3.256204592,5.783870024,,,,,,,,,,,,,4.387525199,3.089222645,6.047625536,,,,,,,0.114,,,0.097,0.132,0.172,,,0.15,0.198,0.078,,,0.066,0.091,136.1,183,134508,,,0.111,17110,,,,0.088438589,12975.97504,146723,,,22.90494661,107,467148,18.56490927,27.24498396,,,,,,,,,,,,,24.91617298,20.13480402,30.49108551,,,,0.311,,,0.295,0.324,0.131400783,11781,89657,0.113528443,0.149273123,0.053235077,1806,33925,0.038937205,0.06753295,0.001676795,266,158636,,,596.3759399,0.786616314,1301.85,1655,,,0.052237058,446,8538,0.029968865,0.074505251,2.950175048,,,,,,,,2.612723335,3.047232817,2.8015261,,,,,,,,2.432566691,2.906659406,0.049594413,,,,,61.655,,,,,0.80418393,47360,58892,0.740905866,0.867461993,69578,,,64785.82979,74370.17021,53750,22071.87234,85428.12766,,,,116518,39452.46809,193583.5319,58509,49775.38298,67242.61702,69396,66965.3617,71826.6383,,,,,,0.450933258,9567,21216,,,69.14517138,,,,,0.307812814,,69578,,,10.26743076,86,8376,,,5.13746454,55,1070567,3.870241374,6.687116264,,,,,,,,,,10.13729702,5.794341141,16.46233525,3.913560949,2.710254725,5.46880916,,,,30.78376128,244,771971,26.77032001,34.79720255,31.60740494,,,,,,,,,,19.7036606,11.86289081,30.76970676,32.38683199,27.77903069,36.99463328,,,,20.72616718,160,771971,17.5146143,23.93772005,,,,,,,,,,16.52835047,9.951146689,25.81106666,21.27935311,17.66285142,24.8958548,,,,13.82445003,148,1070567,11.59717896,16.05172111,,,,,,,,,,11.40445914,6.759005265,18.02396221,14.73340593,12.18097357,17.28583828,,,,20.32894737,,15200,,,309,,0.775881849,90623,116800,,,0.721,,,,,81.7173217,,,,,0.71820026,45317,63098,0.705297824,0.731102696,0.140946267,8651,61378,0.125009003,0.156883532,0.899632318,56765,63098,0.888894994,0.910369642,158636,,,,,0.20254545,32131,158636,,,0.211099624,33488,158636,,,0.007116922,1129,158636,,,0.015847601,2514,158636,,,0.011195441,1776,158636,,,0.001418341,225,158636,,,0.155248493,24628,158636,,,0.801829345,127199,158636,,,0.010329978,1528,147919,0.007145105,0.013514851,0.502704304,79747,158636,,,0.126715606,19730,155703,, -08,079,08079,CO,Mineral County,2024,0,,,,,,2,,,,2,,,,2,,,,2,,,,2,,,,2,,,,2,,0.101,,,0.083,0.124,2.921099112,,,2.310312433,3.5766974,4.608853795,,,3.639644695,5.612730814,,,,,,0,,,,,,,,,,,,,,,,,,,,,,0.111,,,0.082,0.145,0.233,,,0.172,0.302,8.3,0.034362837,0.105,,,0.133,,,0.103,0.169,1,865,865,,,0.183891059,,,0.147011642,0.223191702,0.333333333,4,12,0.175768434,0.488588466,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.099697885,66,662,0.083017034,0.116378736,0.001082251,1,924,,,924,0,0,931,,,-931,0,0,931,,,-931,,,,,,,,,,,0.36,,,,,,,,,0.37,0.55,,,,,,,,,0.55,0.97810219,670,685,0.956844045,0.999360335,0.742857143,156,210,0.534474028,0.951240258,0.028199566,13,461,,,0.109,13,,0.064914894,0.153085106,,,,,,,,,,,,,0.109589041,0,0.337670899,3.984555556,107583,27000,0,9.053175475,0.063157895,6,95,0,0.271740434,0,0,924,,,,,,,,,,,,,,,,,,,,,,,,,,3.4,,,,,0,,,,,0.139240506,55,395,0.031434765,0.247046248,0.141772152,0.00057178,0.282972524,0,0,0.07239429,0,0,0.051190494,0.670702179,277,413,0.545192452,0.796211906,,,,,,,,,,,,,0.644329897,0.495983857,0.792675937,0.151,,413,0,0.363529775,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.086,,,0.072,0.102,0.14,,,0.118,0.163,0.063,,,0.052,0.075,,,,,,0.105,80,,,,0.034362837,24.46633981,712,,,,,,,,,,,,,,,,,,,,,,,,,,0.267,,,0.25,0.284,0.105166052,57,542,0.084910733,0.125421371,0.068181818,9,132,0.050309478,0.086054159,0.002148228,2,931,,,465.5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.589430894,36250,61500,0.326827858,0.852033931,69794,,,59435.19149,80152.80851,,,,,,,,,,,,,58661,48348.65957,68973.34043,,,,,,0.397435897,31,78,,,,,,,,0.232183282,,69794,,,83.33333333,2,24,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,,0,,1,756,725,,,0.277,,,,,0.244762309,,,,,0.736842105,308,418,0.646749321,0.826934889,0.128712871,52,404,0,0.292207817,0.90430622,378,418,0.823996508,0.984615933,931,,,,,0.128893663,120,931,,,0.306122449,285,931,,,0.004296455,4,931,,,0.005370569,5,931,,,0.006444683,6,931,,,0,0,931,,,0.064446831,60,931,,,0.904403867,842,931,,,0,0,763,0,0.081202421,0.486573577,453,931,,,1,865,865,, -08,081,08081,CO,Moffat County,2024,1,10818.49368,225,37193,8731.788115,12905.19924,0,,,,2,,,,2,,,,2,,,,2,11718.73584,9193.86982,14243.60186,,,,,2,,0.163,,,0.138,0.189,4.026070355,,,3.183792876,4.973553068,5.34079634,,,4.297819751,6.443146506,0.095147479,100,1051,0.077407943,0.112887015,0,,,,,,,,,,0.108225108,0.06816227,0.148287947,0.094147583,0.073731232,0.114563933,,,,,,,0.193,,,0.154,0.234,0.288,,,0.222,0.367,6.6,0.146987338,0.128,,,0.216,,,0.174,0.264,0.800857659,10645,13292,,,0.193010939,,,0.155342281,0.236693911,0.285714286,2,7,0.086061846,0.500925625,295.8,39,13185,,,21.6542421,61,2817,16.5637794,27.81577988,,,,,,,,,,18.58108108,9.275608728,33.24668668,20.90261283,15.18787048,28.06078208,,,,,,,0.112581564,1225,10881,0.095900713,0.129262415,0.000227531,3,13185,,,4395,0.000607119,8,13177,,,1647.125,0.002049025,27,13177,,,488.037037,2243,,,,,,,,,2287,0.34,,,,,,,,0.38,0.33,0.34,,,,,,,,0.26,0.34,0.913057961,8223,9006,0.888486586,0.937629337,0.499030202,1801,3609,0.420123554,0.577936851,0.031611298,216,6833,,,0.131,419,,0.079765957,0.182234043,,,,,,,,,,0.176395939,0.051294692,0.301497186,0.145743766,0.07981962,0.211667912,4.917288847,126453,25716,3.925353937,5.909223757,0.3441247,1148,3336,0.213451605,0.474797796,6.067500948,8,13185,,,136.5063476,90,65931,109.7672235,167.7894766,,,,,,,,,,,,,154.0626902,122.3480143,191.485857,,,,4.7,,,,,0,,,,,0.17816092,930,5220,0.131366629,0.224955211,0.150390625,0.104275508,0.196505742,0.022796935,0.006965675,0.038628195,0.017241379,0.000705689,0.03377707,0.73721544,4469,6062,0.686455901,0.78797498,,,,,,,,,,,,,0.795151185,0.716267115,0.874035255,0.306,,6062,0.234045485,0.377954515,74.57718312,,,72.93078679,76.22357946,,,,,,,,,,82.31394169,75.63535098,88.99253239,73.52217219,71.65547186,75.38887251,,,,488.2748386,225,37193,421.310901,555.2387761,,,,,,,,,,,,,514.0446104,437.7612387,590.327982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.121,,,0.104,0.139,0.173,,,0.15,0.199,0.086,,,0.073,0.101,101,11,10892,,,0.128,1700,,,,0.146987338,2027.690324,13795,,,45.44077552,18,39612,26.93108346,71.81601602,,,,,,,,,,,,,47.74181228,26.72072992,78.74285901,,,,0.302,,,0.287,0.317,0.133463797,1023,7665,0.112016988,0.154910605,0.063779294,215,3371,0.043523975,0.084034613,0.000986568,13,13177,,,1013.615385,0.825,97.35,118,,,,,,,,3.072195432,,,,,,,,2.590422212,3.271628984,2.723468316,,,,,,,,2.325952685,2.879712879,0.01692283,,,,,994.0537,,,,,0.859430905,50923,59252,0.614735669,1.104126142,69088,,,58969.87234,79206.12766,23158,4925.829787,41390.17021,,,,,,,47734,42047.02128,53420.97872,69722,59599.10638,79844.89362,,,,,,0.427272727,893,2090,,,,,,,,0.277269569,,69088,,,3.476245655,3,863,,,,,,,,,,,,,,,,,,,,,,,,,,30.86295004,20,65931,18.58151203,48.19631955,30.3347439,,,,,,,,,,,,,31.9355293,18.25391433,51.86129882,,,,18.20084634,12,65931,9.404642898,31.79321571,,,,,,,,,,,,,,,,,,,22.83179491,21,91977,14.1332409,34.90082383,,,,,,,,,,,,,27.13262427,16.57331179,41.90413759,,,,,,1500,,,-888,,0.76038961,7026,9240,,,0.575,,,,,38.06573469,,,,,0.668401774,3467,5187,0.61265186,0.724151688,0.149536477,742,4962,0.102050803,0.197022152,0.846732215,4392,5187,0.806656105,0.886808326,13177,,,,,0.245655309,3237,13177,,,0.170600288,2248,13177,,,0.008575548,113,13177,,,0.014798513,195,13177,,,0.008347879,110,13177,,,0.001062457,14,13177,,,0.16999317,2240,13177,,,0.786294301,10361,13177,,,0.023416754,291,12427,0.008364805,0.038468703,0.485011763,6391,13177,,,0.273999398,3642,13292,, -08,083,08083,CO,Montezuma County,2024,1,12185.77072,479,71874,10478.87443,13892.66702,0,34605.24357,27224.04369,41986.44346,,,,,2,,,,2,9026.498881,5896.408754,13225.91226,,8551.928625,6753.987347,10349.8699,,,,,2,,0.152,,,0.128,0.18,3.843407632,,,3.077895261,4.801918377,5.205823632,,,4.268319692,6.330661269,0.087422448,155,1773,0.0742748,0.100570096,0,0.079889807,0.051998532,0.107781082,,,,,,,0.109433962,0.071846564,0.14702136,0.081553398,0.064839204,0.098267592,,,,0.169491525,0.073755346,0.265227705,0.178,,,0.141,0.221,0.271,,,0.212,0.348,7.6,0.073100421,0.117,,,0.189,,,0.152,0.235,0.678246741,17532,25849,,,0.185371675,,,0.150827482,0.230367127,0.296296296,8,27,0.194109996,0.401266591,294.2,77,26175,,,21.65925353,112,5171,17.64790364,25.67060342,40.98360656,29.27928939,55.80803992,,,,,,,18.94736842,11.22941135,29.94501081,14.40536013,10.42523056,19.40392557,,,,,,,0.131466989,2503,19039,0.113594648,0.149339329,0.001031519,27,26175,,,969.4444444,0.000680067,18,26468,,,1470.444444,0.002077981,55,26468,,,481.2363636,694,,,,,516,,,,606,0.31,,,,,0.25,,,0.3,0.32,0.38,,,,,0.46,0.33,,0.38,0.38,0.913073639,17111,18740,0.891678662,0.934468617,0.5845,3507,6000,0.500998255,0.668001745,0.037601297,464,12340,,,0.229,1248,,0.140829787,0.317170213,0.211132438,0.093980436,0.328284439,,,,,,,0.17432784,0.058330408,0.290325273,0.105175846,0.03059773,0.179753962,4.060251169,110248,27153,3.534303633,4.586198705,0.318548387,1738,5456,0.222684527,0.414412247,8.787010506,23,26175,,,123.6037356,162,131064,104.5697314,142.6377398,201.2072435,137.6256056,284.0445931,,,,,,,84.11439558,45.98612279,141.1296631,118.5172644,96.56755984,140.4669689,,,,4.2,,,,,0,,,,,0.123574145,1300,10520,0.094782232,0.152366057,0.097082736,0.072517623,0.121647848,0.015114068,0.00163372,0.028594417,0.0128327,0.003571283,0.022094116,0.753002514,8088,10741,0.704021309,0.801983718,0.723562152,0.428985826,1,,,,,,,,,,0.754086504,0.705213635,0.802959373,0.21,,10741,0.161763072,0.258236929,75.13321716,,,73.85480076,76.41163357,60.26664302,56.76099291,63.77229314,,,,,,,76.87013513,73.30191405,80.43835621,77.93374463,76.49627473,79.37121453,,,,486.5855456,479,71874,437.7096076,535.4614837,1243.003827,1003.879445,1482.128209,,,,,,,449.5279836,322.5890421,609.8354687,370.2873158,321.7775579,418.7970737,,,,85.17887564,21,24654,52.72706654,130.2049596,,,,,,,,,,,,,70.78643732,33.94484814,130.1787785,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.115,,,0.099,0.135,0.168,,,0.145,0.195,0.082,,,0.07,0.098,121,27,22309,,,0.117,3030,,,,0.073100421,1866.61925,25535,,,34.27874971,27,78766,22.58991206,49.87378113,,,,,,,,,,,,,33.48076618,20.15760835,52.28436373,,,,0.294,,,0.28,0.307,0.155997693,2164,13872,0.132167906,0.17982748,0.066800879,365,5464,0.047737049,0.085864708,0.001246789,33,26468,,,802.0606061,0.732213439,185.25,253,,,,,,,,2.837573764,,,,,,,,2.9828669,3.102804922,2.658271288,,,,,,,,2.760272867,2.928173807,0.104714523,,,,,-1757.279333,,,,,0.844835165,42284,50050,0.704675357,0.984994973,58345,,,52024.14894,64665.85106,45028,34310.55319,55745.44681,40809,34819.38298,46798.61702,,,,68474,53491.02128,83456.97872,65053,58825.08511,71280.91489,,,,,,0.541269841,2046,3780,,,71.64453031,,,,,0.301002657,,58345,,,10.27146002,14,1363,,,,,,,,,,,,,,,,,,,,,,,,,,34.83770559,46,131064,25.00013901,47.26128138,35.09735702,52.48449621,25.16835599,96.5208572,,,,,,,,,,31.93710767,20.86237906,46.79526242,,,,22.12659464,29,131064,14.8185277,31.7774808,,,,,,,,,,,,,26.45474651,17.12011709,39.05242452,,,,17.91229489,33,184231,12.32999961,25.15552175,,,,,,,,,,,,,16.56252353,10.37964532,25.07585966,,,,27.77777778,,2700,,,75,,0.772874595,15500,20055,,,0.632,,,,,34.1168973,,,,,0.735361217,7736,10520,0.700700498,0.770021936,0.102742409,1049,10210,0.074466682,0.131018137,0.802186312,8439,10520,0.766185416,0.838187207,26468,,,,,0.20791144,5503,26468,,,0.24486172,6481,26468,,,0.00513828,136,26468,,,0.140622639,3722,26468,,,0.007518513,199,26468,,,0.001246789,33,26468,,,0.132046245,3495,26468,,,0.714787668,18919,26468,,,0.007527877,187,24841,0.001780215,0.013275539,0.501360133,13270,26468,,,0.666215328,17221,25849,, -08,085,08085,CO,Montrose County,2024,1,7829.056063,596,115790,6743.549921,8914.562205,0,,,,2,,,,2,,,,2,9251.426332,7109.050011,11836.59311,,7649.203607,6344.588582,8953.818632,,,,,2,,0.149,,,0.126,0.177,3.654734678,,,2.866792741,4.505890533,4.85236533,,,3.901989671,5.826533054,0.092366678,265,2869,0.081771612,0.102961745,0,,,,,,,,,,0.091928251,0.072967383,0.11088912,0.090861067,0.0779136,0.103808534,,,,,,,0.159,,,0.126,0.197,0.259,,,0.199,0.321,7.9,0.076567636,0.101,,,0.193,,,0.155,0.232,0.670915439,28634,42679,,,0.179786277,,,0.144521483,0.217424593,0.3125,10,32,0.219087806,0.407096383,278,120,43168,,,23.01454806,193,8386,19.76756616,26.26152996,,,,,,,,,,32.76955603,26.449261,40.14492002,17.73323053,14.29548666,21.74823304,,,,,,,0.133878417,4290,32044,0.117197566,0.150559268,0.000857116,37,43168,,,1166.702703,0.00107279,47,43811,,,932.1489362,0.002898815,127,43811,,,344.9685039,1278,,,,,,,,,1340,0.36,,,,,,0.29,,0.31,0.36,0.41,,,,,,0.22,,0.32,0.41,0.893042609,27687,31003,0.878891408,0.90719381,0.565884769,5235,9251,0.499380457,0.632389082,0.033578224,713,21234,,,0.154,1337,,0.094425532,0.213574468,,,,,,,,,,0.212653196,0.122566749,0.302739644,0.119608971,0.074971243,0.164246698,4.478768976,119189,26612,4.065108011,4.892429942,0.250994205,2209,8801,0.180046689,0.321941722,8.339510749,36,43168,,,141.1515339,301,213246,125.2052892,157.0977787,,,,,,,,,,96.89267446,70.12170894,130.5137966,158.389378,138.9866792,177.7920768,,,,4.2,,,,,1,,,,,0.134114956,2345,17485,0.111043979,0.157185932,0.114952463,0.092673146,0.137231781,0.014583929,0.006766541,0.022401317,0.006863026,0.002991666,0.010734385,0.742471443,13585,18297,0.713879449,0.771063438,,,,,,,,,,0.804652466,0.728783664,0.880521269,0.745107104,0.706661788,0.783552421,0.157,,18297,0.127404018,0.186595982,78.69906101,,,77.7844031,79.61371892,,,,,,,,,,76.56682921,74.36698876,78.76666965,78.88405297,77.82166829,79.94643766,,,,345.3243786,596,115790,314.274951,376.3738062,,,,,,,,,,422.5722261,341.4813729,517.1213848,336.1242955,300.8480763,371.4005147,,,,65.71630776,26,39564,42.92807405,96.28961703,,,,,,,,,,74.80550569,35.87214764,137.5699884,65.53348351,37.45804814,106.4222715,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.111,,,0.094,0.128,0.158,,,0.135,0.182,0.079,,,0.066,0.092,83.9,31,36963,,,0.101,4270,,,,0.076567636,3160.405758,41276,,,17.02153999,22,129248,10.66730849,25.7708161,,,,,,,,,,,,,15.33977604,8.585556203,25.30062778,,,,0.284,,,0.271,0.297,0.157225434,3672,23355,0.135778625,0.178672242,0.072006119,659,9152,0.0517508,0.092261438,0.001278218,56,43811,,,782.3392857,0.785135135,348.6,444,,,,,,,,2.953359161,,,,,,,,2.677716813,3.152970427,2.91165756,,,,,,,,2.577141108,3.102564486,0.042244568,,,,,-3160.8985,,,,,0.779549003,42936,55078,0.679544129,0.879553878,65736,,,56994.04255,74477.95745,,,,88047,58850.74468,117243.2553,,,,54261,42097.08511,66424.91489,64443,58654.74468,70231.25532,,,,,,0.515801927,3052,5917,,,,,,,,0.317436412,,65736,,,5.437245129,12,2207,,,,,,,,,,,,,,,,,,,,,,,,,,35.68618295,79,213246,27.65630162,45.32019088,37.04641588,,,,,,,,,,20.80667024,9.977607126,38.26420737,39.15402302,29.24209716,51.34529201,,,,25.32286655,54,213246,19.02331672,33.04084784,,,,,,,,,,,,,29.07929987,21.36637577,38.66930423,,,,17.24936837,51,295663,12.84328774,22.67973381,,,,,,,,,,21.23419686,11.30631553,36.31112332,16.93857538,11.98674407,23.24951811,,,,11.19047619,,4200,,,47,,0.781253919,24922,31900,,,0.682,,,,,50.16598892,,,,,0.760532801,12961,17042,0.733652454,0.787413149,0.1274108,2114,16592,0.103044134,0.151777467,0.838164535,14284,17042,0.818713592,0.857615478,43811,,,,,0.199995435,8762,43811,,,0.260185798,11399,43811,,,0.005204173,228,43811,,,0.01828308,801,43811,,,0.008719271,382,43811,,,0.001962977,86,43811,,,0.211887426,9283,43811,,,0.751477939,32923,43811,,,0.03967514,1617,40756,0.028443407,0.050906873,0.503458036,22057,43811,,,0.425642588,18166,42679,, -08,087,08087,CO,Morgan County,2024,1,9573.281319,456,80861,8290.584616,10855.97802,0,,,,2,,,,2,,,,2,8051.694367,6264.698817,10189.93454,,10817.68167,8942.09457,12693.26878,,,,,2,,0.18,,,0.15,0.207,3.97884787,,,3.166504074,4.848689101,4.882372426,,,3.950851862,5.905191387,0.082624958,243,2941,0.072674624,0.092575291,0,,,,,,,0.083743842,0.045637879,0.121849806,0.082434515,0.067472441,0.097396589,0.074870274,0.060825779,0.088914769,,,,,,,0.169,,,0.137,0.202,0.285,,,0.223,0.352,8.3,0.05310309,0.097,,,0.228,,,0.185,0.27,0.760365498,22135,29111,,,0.192856776,,,0.155748038,0.234807552,0.487804878,20,41,0.415212826,0.555335322,444.7,129,29008,,,30.20667727,190,6290,25.91148878,34.50186575,,,,,,,,,,35.35198279,28.89066758,41.813298,23.83531961,18.43423446,30.32437069,,,,,,,0.172894237,4095,23685,0.151447428,0.194341045,0.000551572,16,29008,,,1813,0.000684018,20,29239,,,1461.95,0.001983652,58,29239,,,504.1206897,1903,,,,,,,,2119,1822,0.35,,,,,,,,0.2,0.37,0.34,,,,,,,,0.25,0.35,0.826598168,15607,18881,0.789986303,0.863210032,0.525895876,3889,7395,0.451735782,0.600055969,0.032276844,499,15460,,,0.144,1091,,0.089191489,0.198808511,0.184331797,0,0.526534985,,,,0.208762887,0,0.518774413,0.183337901,0.115867171,0.25080863,0.123780488,0.06629937,0.181261605,4.082799356,114053,27935,3.535384028,4.630214683,0.229693742,1725,7510,0.171804498,0.287582985,11.0314396,32,29008,,,104.3354873,150,143767,87.63833183,121.0326427,,,,,,,,,,64.72122285,44.82132828,90.44142176,135.1824359,110.1462984,160.2185734,,,,6.2,,,,,1,,,,,0.164289001,1785,10865,0.12802303,0.200554973,0.113057177,0.082822312,0.143292042,0.057063967,0.033636621,0.080491312,0.011044639,0.001436561,0.020652717,0.763323353,10198,13360,0.74105206,0.785594647,,,,,,,,,,0.800182482,0.741893119,0.858471845,0.772674343,0.720261944,0.825086743,0.201,,13360,0.164025415,0.237974585,75.58763909,,,74.50619976,76.66907841,,,,,,,,,,76.84076923,74.62181141,79.05972705,74.50734518,73.1044203,75.91027007,,,,474.042678,456,80861,429.352864,518.732492,,,,,,,,,,420.9106495,338.4618677,517.3706485,528.909345,468.5111974,589.3074927,,,,79.49854762,26,32705,51.93109071,116.4837917,,,,,,,,,,82.44023083,43.89595086,140.9753055,67.64984441,32.44072992,124.4104725,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.123,,,0.105,0.141,0.161,,,0.139,0.184,0.091,,,0.077,0.107,101.8,24,23584,,,0.097,2800,,,,0.05310309,1495.329916,28159,,,13.79040877,12,87017,7.125705447,24.08906886,,,,,,,,,,,,,22.12878956,11.04661202,39.59451712,,,,0.294,,,0.282,0.305,0.208391865,3412,16373,0.178604631,0.238179099,0.093999216,719,7649,0.06778645,0.120211982,0.000820822,24,29239,,,1218.291667,0.81631579,294.69,361,,,,,,,,2.911009723,,,,,,,,2.656076719,3.221099009,2.728355847,,,,,,,,2.514393727,2.959081527,0.093868852,,,,,-1078.712133,,,,,0.760202199,41206,54204,0.714880718,0.805523681,65599,,,56236.2766,74961.7234,92813,68145.59575,117480.4043,180703,58967.34043,302438.6596,52821,9981,95661,71957,63781,80133,69583,62890.40426,76275.59575,,,,,,0.419144183,2439,5819,,,73.41764041,,,,,0.311193768,,65599,,,4.314477469,9,2086,,,,,,,,,,,,,,,,,,,,,,,,,,21.63600437,28,143767,14.25826321,31.47925043,19.47595763,,,,,,,,,,,,,32.25056862,20.21125965,48.82774846,,,,13.9113983,20,143767,8.497443492,21.4850264,,,,,,,,,,,,,20.5187626,11.95293535,32.8525266,,,,29.44097085,59,200401,22.41183109,37.97670738,,,,,,,,,,30.26592744,18.96749559,45.82297787,29.15401897,20.19000565,40.73981933,,,,10,,3200,,,32,,0.729124668,13744,18850,,,0.642,,,,,57.47801298,,,,,0.645879323,7022,10872,0.611678338,0.680080308,0.131303429,1367,10411,0.09848358,0.164123278,0.902041943,9807,10872,0.885314983,0.918768902,29239,,,,,0.261226444,7638,29239,,,0.1602996,4687,29239,,,0.035671535,1043,29239,,,0.02517186,736,29239,,,0.008926434,261,29239,,,0.004104108,120,29239,,,0.384281268,11236,29239,,,0.554909539,16225,29239,,,0.068495182,1848,26980,0.049460437,0.087529927,0.479872773,14031,29239,,,0.345917351,10070,29111,, -08,089,08089,CO,Otero County,2024,1,15437.52844,442,50152,13303.39561,17571.66127,0,,,,2,,,,2,,,,2,17462.48209,14103.20365,20821.76053,,13616.86038,10747.5987,16486.12206,,,,,2,,0.208,,,0.178,0.24,4.401457793,,,3.532099335,5.341326372,5.470325652,,,4.399103391,6.563441839,0.083161512,121,1455,0.068973153,0.097349871,0,,,,,,,,,,0.097383721,0.075229493,0.119537949,0.071428571,0.052349787,0.090507356,,,,,,,0.19,,,0.155,0.229,0.335,,,0.264,0.413,7.1,0.046192712,0.153,,,0.257,,,0.209,0.307,0.682450508,12755,18690,,,0.163944848,,,0.130480657,0.201654119,0.230769231,3,13,0.089378268,0.394382228,355,66,18594,,,25.950783,116,4470,21.22822236,30.67334363,,,,,,,,,,30.41307308,23.5697139,38.62352775,20.12072435,14.37454046,27.39871578,,,,,,,0.108329254,1549,14299,0.092839892,0.123818616,0.00069915,13,18594,,,1430.307692,0.000327815,6,18303,,,3050.5,0.004370868,80,18303,,,228.7875,1569,,,,,,,,394,1845,0.27,,,,,,,,0.29,0.26,0.38,,,,,,,,0.37,0.39,0.88038921,11129,12641,0.855053858,0.905724562,0.596332352,2634,4417,0.511070506,0.681594199,0.04157633,326,7841,,,0.327,1370,,0.245978723,0.408021277,0.810218978,0.304604023,1,,,,,,,0.614993647,0.553723352,0.676263942,0.091868405,0.030589203,0.153147606,4.557556514,96169,21101,3.453996784,5.661116244,0.281102733,1193,4244,0.182103442,0.380102024,11.2939658,21,18594,,,118.6963008,109,91831,96.41297519,140.9796264,,,,,,,,,,136.1557828,101.9900245,178.0951162,101.8578879,75.60088767,134.2869269,,,,4.8,,,,,1,,,,,0.152706186,1185,7760,0.117411184,0.188001187,0.126302083,0.092562727,0.16004144,0.015463918,0.005517702,0.025410133,0.015463918,0.002097586,0.028830249,0.756860515,5323,7033,0.700605236,0.813115794,,,,,,,,,,0.739672365,0.610217476,0.869127253,0.801294821,0.745641883,0.856947759,0.228,,7033,0.174343277,0.281656723,70.91304599,,,69.49532239,72.33076959,,,,,,,,,,69.28546431,67.02872403,71.5422046,72.39503794,70.53224216,74.25783373,,,,690.9942539,442,50152,621.9072877,760.0812201,,,,,,,,,,770.2633092,654.1221476,886.4044709,625.6722262,537.1606869,714.1837656,,,,100.9183571,20,19818,61.64355427,155.8602175,,,,,,,,,,,,,120.7292044,57.89434621,222.0253054,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.139,,,0.12,0.159,0.177,,,0.153,0.202,0.108,,,0.092,0.126,102.7,16,15572,,,0.153,2860,,,,0.046192712,869.8549552,18831,,,38.13120767,21,55073,23.60381854,58.28760143,,,,,,,,,,,,,,,,,,,0.301,,,0.288,0.313,0.133564356,1349,10100,0.112117548,0.155011165,0.048480786,217,4476,0.032991425,0.063970148,0.001092717,20,18303,,,915.15,0.892040816,218.55,245,,,,,,,,2.976164869,,,,,,,,2.787841636,3.215612971,2.749446523,,,,,,,,2.525032353,3.05426876,0.172993966,,,,,-5974.762667,,,,,0.879042735,38568,43875,0.635662724,1.122422746,46607,,,39733.29787,53480.70213,27518,17047.19149,37988.80851,,,,,,,44315,24209.80851,64420.19149,51180,41686.21277,60673.78723,,,,,,0.677554981,2095,3092,,,34.08668882,,,,,0.338425558,,46607,,,9.208103131,10,1086,,,,,,,,,,,,,,,,,,,,,,,,,,28.03481116,25,91831,17.77166542,42.0659817,27.22392221,,,,,,,,,,29.32747259,14.64016865,52.47494954,28.19712127,14.56986402,49.2546963,,,,23.95705154,22,91831,15.01375665,36.27126394,,,,,,,,,,28.25874737,14.10666487,50.56270491,20.37157758,9.768963283,37.46405647,,,,26.46552865,34,128469,18.32814795,36.98292358,,,,,,,,,,35.06958544,21.11418134,54.76550181,21.70641352,12.14891487,35.8014281,,,,7.5,,2000,,,15,,0.708284024,9576,13520,,,0.614,,,,,54.92599973,,,,,0.695549118,5282,7594,0.662655119,0.728443117,0.126973326,933,7348,0.091532962,0.16241369,0.792862786,6021,7594,0.757134069,0.828591504,18303,,,,,0.231929192,4245,18303,,,0.210293395,3849,18303,,,0.010763263,197,18303,,,0.041851063,766,18303,,,0.009397367,172,18303,,,0.002294706,42,18303,,,0.433371578,7932,18303,,,0.525542261,9619,18303,,,0.017744052,311,17527,0.006636092,0.028852012,0.503742556,9220,18303,,,0.583092563,10898,18690,, -08,091,08091,CO,Ouray County,2024,1,3249.388995,34,13601,1402.855533,6402.591696,1,,,,2,,,,2,,,,2,,,,2,3708.438904,1601.040701,7307.103019,1,,,,2,,0.099,,,0.081,0.118,2.961653319,,,2.259439789,3.677906088,4.706145837,,,3.666717723,5.654502125,0.09039548,16,177,0.048151085,0.132639876,1,,,,,,,,,,,,,0.081761006,0.039170923,0.12435109,,,,,,,0.113,,,0.084,0.146,0.233,,,0.174,0.299,9.1,0.010584334,0.077,,,0.13,,,0.102,0.162,0.599917932,2924,4874,,,0.179816275,,,0.143434907,0.218559723,0.2,2,10,0.05050879,0.392851974,178.7,9,5035,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.080260919,283,3526,0.065963047,0.094558791,0.000794439,4,5035,,,1258.75,0.001176471,6,5100,,,850,0.002352941,12,5100,,,425,,,,,,,,,,,0.36,,,,,,,,,0.36,0.49,,,,,,,,,0.49,0.974610778,4069,4175,0.957297927,0.99192363,0.840770791,829,986,0.726505872,0.95503571,0.030543435,77,2521,,,0.081,57,,0.050021277,0.111978723,,,,,,,,,,,,,0.021141649,0,0.066481188,4.299427785,137500,31981,2.835394939,5.763460631,0.098412698,62,630,0.025810482,0.171014915,9.930486594,5,5035,,,101.5640869,25,24615,65.72692199,149.9286277,,,,,,,,,,,,,112.6075402,72.87366266,166.2309432,,,,3.6,,,,,1,,,,,0.199115044,450,2260,0.14971518,0.248514908,0.192035398,0.134490636,0.249580161,0.012831858,0,0.02762104,0,0,0.008947011,0.62298108,1350,2167,0.527959966,0.718002194,,,,,,,,,,,,,0.612709832,0.517703901,0.707715764,0.409,,2167,0.299421839,0.518578162,87.48299256,,,84.10360843,90.86237669,,,,,,,,,,,,,87.01340058,83.38437642,90.64242474,,,,135.3624415,34,13601,83.79148478,206.9158708,,,,,,,,,,,,,149.35755,91.23147173,230.6706223,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.086,,,0.072,0.101,0.142,,,0.12,0.164,0.062,,,0.052,0.073,,,,,,0.077,370,,,,0.010584334,46.9521042,4436,,,,,,,,,,,,,,,,,,,,,,,,,,0.265,,,0.247,0.283,0.087447109,248,2836,0.070766258,0.10412796,0.052845529,39,738,0.034973188,0.070717869,0.000588235,3,5100,,,1700,,,,,,,,,,,3.187649131,,,,,,,,,3.431379337,3.159380638,,,,,,,,,3.39952173,0.082416791,,,,,4039.672,,,,,0.862380612,55439,64286,0.631173776,1.093587447,90837,,,77911.7234,103762.2766,,,,,,,,,,,,,79828,63783.40426,95872.59575,,,,,,0.18129771,95,524,,,25.98784195,,,,,0.268249722,,90837,,,15.87301587,3,189,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,400,,,0,,0.974545455,4020,4125,,,0.505,,,,,27.03815381,,,,,0.76550308,1864,2435,0.718149416,0.812856744,0.146433041,351,2397,0.093180306,0.199685777,0.877207392,2136,2435,0.847872667,0.906542117,5100,,,,,0.14,714,5100,,,0.31745098,1619,5100,,,0.002156863,11,5100,,,0.009019608,46,5100,,,0.009607843,49,5100,,,0.001764706,9,5100,,,0.074313726,379,5100,,,0.889019608,4534,5100,,,0.001878522,9,4791,0,0.014644462,0.493529412,2517,5100,,,1,4874,4874,, -08,093,08093,CO,Park County,2024,1,6495.236431,228,52365,4862.901503,8127.57136,0,,,,2,,,,2,,,,2,,,,2,7021.677137,5176.809474,8866.5448,,,,,2,,0.114,,,0.096,0.135,3.272773396,,,2.548279437,4.062982048,4.840422935,,,3.916873417,5.832461233,0.121516165,109,897,0.10013439,0.142897941,0,,,,,,,,,,0.176470588,0.095426315,0.257514862,0.113874346,0.091349076,0.136399615,,,,,,,0.141,,,0.11,0.178,0.246,,,0.188,0.311,8.3,0.108694157,0.066,,,0.151,,,0.12,0.187,0.5213341,9066,17390,,,0.204653427,,,0.164287827,0.246332462,0.32,8,25,0.213480444,0.427129614,90.3,16,17720,,,5.972377753,16,2679,3.413729919,9.6987673,,,,,,,,,,,,,4.995458674,2.493714972,8.938255456,,,,,,,0.084144289,1150,13667,0.071037906,0.097250672,0.0001693,3,17720,,,5906.666667,0.000167233,3,17939,,,5979.666667,0.0010034,18,17939,,,996.6111111,1986,,,,,,,,,2042,0.37,,,,,,,,0.36,0.37,0.4,,,,,,,,0.39,0.4,0.975599436,13834,14180,0.96530875,0.985890121,0.736498367,2932,3981,0.627900968,0.845095767,0.02577984,300,11637,,,0.106,271,,0.06787234,0.14412766,,,,,,,,,,,,,0.117448043,0.038782973,0.196113112,4.396635207,160719,36555,3.471846379,5.321424036,0.152490422,398,2610,0.078323582,0.226657261,7.900677201,14,17720,,,98.93347539,91,91981,79.655063,121.4683847,,,,,,,,,,,,,104.0888552,83.14248051,128.7074813,,,,4.1,,,,,1,,,,,0.118110236,825,6985,0.084454746,0.151765727,0.102656138,0.069284658,0.136027618,0.01059413,0,0.026935788,0.005726557,0,0.01281123,0.677039627,5809,8580,0.648251062,0.705828192,,,,,,,,,,,,,0.551232753,0.468446829,0.634018676,0.646,,8580,0.548051168,0.743948832,85.35794826,,,82.39693175,88.31896477,,,,,,,,,,,,,84.1983805,81.34958551,87.04717548,,,,264.6675925,228,52365,223.6927211,305.6424639,,,,,,,,,,,,,282.8829061,237.2056543,328.5601579,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.095,,,0.081,0.112,0.151,,,0.13,0.174,0.067,,,0.056,0.079,156.7,25,15956,,,0.066,1150,,,,0.108694157,1761.497512,16206,,,21.61383285,12,55520,11.16818283,37.7550163,,,,,,,,,,,,,22.35045514,11.15726668,39.99113807,,,,0.274,,,0.258,0.291,0.09209336,1018,11054,0.075412509,0.108774211,0.052268603,144,2755,0.035587752,0.068949454,0.000167233,3,17939,,,5979.666667,,,,,,,,,,,3.148458699,,,,,,,,,3.18963898,2.976494276,,,,,,,,,2.986325955,0.015354025,,,,,3300.1415,,,,,0.817689428,57217,69974,0.59995549,1.035423365,88020,,,75848.93617,100191.0638,108036,23410.46809,192661.5319,,,,,,,182541,85410.78723,279671.2128,82026,77011.02128,87040.97872,,,,,,0.232244318,327,1408,,,,,,,,0.399500114,,88020,,,22.72727273,14,616,,,,,,,,,,,,,,,,,,,,,,,,,,42.8429062,39,91981,29.10967616,60.81208553,42.40006088,,,,,,,,,,,,,47.63142122,32.13671988,67.9968155,,,,33.7026125,31,91981,22.89929005,47.83816821,,,,,,,,,,,,,36.73724299,24.78646358,52.44469869,,,,15.12052651,19,125657,9.103544701,23.61257516,,,,,,,,,,,,,16.09816302,9.540791654,25.44203791,,,,,,1400,,,-888,,0.796823339,12291,15425,,,0.339,,,,,6.811222838,,,,,0.892689906,6863,7688,0.819615512,0.965764301,0.107056937,801,7482,0.075538643,0.13857523,0.893210198,6867,7688,0.872473032,0.913947363,17939,,,,,0.144322426,2589,17939,,,0.239422487,4295,17939,,,0.010256982,184,17939,,,0.014437817,259,17939,,,0.010034004,180,17939,,,0.000947656,17,17939,,,0.071408663,1281,17939,,,0.878031105,15751,17939,,,0.002294253,39,16999,0,0.008252031,0.464128435,8326,17939,,,1,17390,17390,, -08,095,08095,CO,Phillips County,2024,1,7949.769475,56,11605,4982.078205,12036.04652,1,,,,2,,,,2,,,,2,,,,2,8176.874406,4846.133996,12922.98682,1,,,,2,,0.166,,,0.138,0.195,3.812963332,,,2.954298515,4.717506007,5.069812898,,,3.98594281,6.193560342,0.057534247,21,365,0.033644825,0.081423669,1,,,,,,,,,,0.06993007,0.02812992,0.11173022,0.050691244,0.021503776,0.079878712,,,,,,,0.174,,,0.137,0.215,0.286,,,0.216,0.364,8.6,0.016336494,0.1,,,0.203,,,0.162,0.249,0.789845475,3578,4530,,,0.166502357,,,0.129948094,0.206677793,0,0,3,0,0.420755624,310.3,14,4512,,,26.37362637,24,910,16.89808006,39.24186549,,,,,,,,,,47.94520548,26.21208999,80.44390795,,,,,,,,,,0.162146567,562,3466,0.140699758,0.183593375,0.000886525,4,4512,,,1128,,0,4449,,,,0.000899078,4,4449,,,1112.25,2672,,,,,,,,,2794,0.43,,,,,,,,0.25,0.45,0.22,,,,,,,,0.08,0.22,0.891099123,2643,2966,0.823731733,0.958466514,0.543909348,576,1059,0.459855966,0.627962731,0.020996295,51,2429,,,0.136,145,,0.083574468,0.188425532,,,,,,,,,,0.240700219,0.041413471,0.439986967,0.077160494,0.038070937,0.116250051,4.514209153,128032,28362,3.23087903,5.797539276,0.111111111,127,1143,0.015925349,0.206296873,22.16312057,10,4512,,,128.9015744,28,21722,85.6541601,186.2986647,,,,,,,,,,,,,164.2435671,108.2375457,238.9657671,,,,5,,,,,1,,,,,0.089337176,155,1735,0.028205698,0.150468654,0.050955414,0.021922046,0.079988782,0.042651297,0,0.101305552,0.002305476,0,0.011515275,0.776642336,1596,2055,0.690501151,0.86278352,,,,,,,,,,,,,0.760104303,0.663854033,0.856354572,0.218,,2055,0.138759239,0.297240761,77.65129402,,,74.90678388,80.39580416,,,,,,,,,,,,,77.30519756,74.36604436,80.24435076,,,,363.5772295,56,11605,268.9764359,480.6683788,,,,,,,,,,,,,395.150724,280.9907932,540.184048,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.12,,,0.103,0.141,0.166,,,0.142,0.191,0.087,,,0.073,0.103,133.3,5,3750,,,0.1,450,,,,0.016336494,72.56670597,4442,,,,,,,,,,,,,,,,,,,,,,,,,,0.29,,,0.277,0.304,0.184824078,436,2359,0.157419823,0.212228333,0.114139693,134,1174,0.079586502,0.148692885,0.000899078,4,4449,,,1112.25,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.172465442,,,,,-2688.3925,,,,,0.777519077,45750,58841,0.674254014,0.88078414,68571,,,61864.10638,75277.89362,,,,,,,,,,44659,31357.21277,57960.78723,66579,57095.93617,76062.06383,,,,,,0.433879781,397,915,,,,,,,,0.24320777,,68571,,,7.653061225,3,392,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,600,,,0,,0.92037037,2485,2700,,,0.697,,,,,11.5886023,,,,,0.749431818,1319,1760,0.684370841,0.814492796,0.088200935,151,1712,0.029390755,0.147011114,0.75,1320,1760,0.677374091,0.822625909,4449,,,,,0.241177793,1073,4449,,,0.224994381,1001,4449,,,0.007192628,32,4449,,,0.013935716,62,4449,,,0.00584401,26,4449,,,0.001123848,5,4449,,,0.240728254,1071,4449,,,0.729377388,3245,4449,,,0.051238874,213,4157,0.016362703,0.086115045,0.499887615,2224,4449,,,1,4530,4530,, -08,097,08097,CO,Pitkin County,2024,1,2771.454704,89,48935,1988.843745,3759.791248,0,,,,2,,,,2,,,,2,,,,2,3302.041052,2336.720776,4532.309331,,,,,2,,0.089,,,0.073,0.109,2.605867604,,,2.002001704,3.331010089,4.219466357,,,3.385482131,5.201214813,0.104144527,98,941,0.084628183,0.123660871,0,,,,,,,,,,0.100529101,0.057658001,0.143400201,0.104519774,0.081984301,0.127055247,,,,,,,0.098,,,0.072,0.13,0.197,,,0.148,0.255,8.9,0.019727076,0.083,,,0.122,,,0.095,0.154,0.976610209,16952,17358,,,0.209371292,,,0.169066002,0.252792939,0.076923077,1,13,0.003657611,0.250631766,213.3,37,17348,,,5.609573672,15,2674,3.139635801,9.252138695,,,,,,,,,,31.94103194,17.00725428,54.62013739,,,,,,,,,,0.080225658,1095,13649,0.067119275,0.093332041,0.000864653,15,17348,,,1156.533333,0.000651813,11,16876,,,1534.181818,0.004266414,72,16876,,,234.3888889,660,,,,,,,,,648,0.51,,,,,,,,0.5,0.51,0.55,,,,,,0.65,,0.42,0.55,0.981702348,13252,13499,0.972131355,0.991273342,0.811805707,3727,4591,0.691243216,0.932368197,0.032930742,349,10598,,,0.043,106,,0.026319149,0.059680851,,,,,,,,,,,,,0.039337474,0,0.091186929,4.581679628,205021,44748,2.804187524,6.359171732,0.167342425,454,2713,0.057719974,0.276964877,16.7166244,29,17348,,,84.41288028,75,88849,66.39608516,105.8122764,,,,,,,,,,,,,97.96393868,76.92276238,122.984754,,,,3.7,,,,,0,,,,,0.14949495,1110,7425,0.099086344,0.199903555,0.117006803,0.071128894,0.162884712,0.026936027,0.003216221,0.050655833,0.008754209,0,0.019606479,0.487298817,5026,10314,0.423915904,0.55068173,,,,,,,,,,0.399179487,0.330286339,0.468072635,0.603648692,0.54892343,0.658373954,0.259,,10314,0.149473673,0.368526327,92.72493381,,,89.42050726,96.02936037,,,,,,,,,,,,,91.97579603,88.61443256,95.33715949,,,,123.2586955,89,48935,97.43088386,153.8324303,,,,,,,,,,,,,139.9265945,109.6801135,175.9366848,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.077,,,0.065,0.091,0.129,,,0.11,0.15,0.058,,,0.048,0.068,147.7,23,15575,,,0.083,1450,,,,0.019727076,338.2798993,17148,,,18.86472109,10,53009,9.046367025,34.69289374,,,,,,,,,,,,,22.30698878,10.69706818,41.02334659,,,,0.263,,,0.248,0.279,0.086094514,951,11046,0.070605152,0.101583876,0.055898367,154,2755,0.038026026,0.073770707,0.000829581,14,16876,,,1205.428571,0.975,127.725,131,,,,,,,,3.242983404,,,,,,,,,3.282193731,3.145916219,,,,,,,,,3.204701694,0.180693027,,,,,11000.01,,,,,0.8696798,59400,68301,0.627955124,1.111404475,111291,,,94692.3617,127889.6383,,,,,,,,,,68415,30016.87234,106813.1277,99932,88822.55319,111041.4468,,,,,,0.364475202,316,867,,,89.96054079,,,,,0.313143021,,111291,,,18.64573111,19,1019,,,,,,,,,,,,,,,,,,,,,,,,,,19.35998108,20,88849,11.47395176,30.59711669,22.51010141,,,,,,,,,,,,,23.09670745,13.68857263,36.50275536,,,,14.63156592,13,88849,7.790692626,25.02042332,,,,,,,,,,,,,17.20988112,9.163536883,29.42942085,,,,,,,,,,,,,,,,,,,,,,,,,,,12.30769231,,1300,,,16,,0.850729278,11957,14055,,,0.408,,,,,60.72546562,,,,,0.650973626,5282,8114,0.596105057,0.705842195,0.175852678,1356,7711,0.117919037,0.233786319,0.939240818,7621,8114,0.915240246,0.963241391,16876,,,,,0.146717232,2476,16876,,,0.232104764,3917,16876,,,0.00948092,160,16876,,,0.006162598,104,16876,,,0.02299123,388,16876,,,0.001185115,20,16876,,,0.112763688,1903,16876,,,0.83876511,14155,16876,,,0.003753481,62,16518,0,0.010882327,0.477719839,8062,16876,,,0.329646273,5722,17358,, -08,099,08099,CO,Prowers County,2024,1,11033.28072,244,33582,8889.3226,13177.23884,0,,,,2,,,,2,,,,2,10435.70943,7488.845258,14157.2182,,11656.55961,8597.067636,14716.05158,,,,,2,,0.194,,,0.167,0.225,4.314232569,,,3.496470788,5.321541485,5.326347984,,,4.318468416,6.522195263,0.098450319,108,1097,0.080820163,0.116080475,0,,,,,,,,,,0.107421875,0.080599911,0.134243839,0.092691622,0.068693772,0.116689473,,,,,,,0.185,,,0.153,0.225,0.294,,,0.228,0.372,6.9,0.126221692,0.125,,,0.234,,,0.194,0.283,0.67355613,8082,11999,,,0.175086899,,,0.14085098,0.216484115,0.25,3,12,0.099776571,0.4182543,633.5,76,11996,,,27.12815716,87,3207,21.7285418,33.46248163,,,,,,,,,,33.24468085,24.67484291,43.8289672,22.5660864,15.718106,31.38396349,,,,,,,0.153189246,1453,9485,0.132933927,0.173444565,0.000333445,4,11996,,,2999,0.000506158,6,11854,,,1975.666667,0.00278387,33,11854,,,359.2121212,2745,,,,,,,,1459,3011,0.27,,,,,,,,0.31,0.26,0.33,,,,,,,,0.34,0.32,0.854832295,6448,7543,0.822483522,0.887181068,0.528935185,1371,2592,0.448748788,0.609121582,0.028281838,173,6117,,,0.241,733,,0.14687234,0.33512766,,,,,,,,,,0.246600742,0.143768395,0.349433088,0.145554681,0.06569733,0.225412032,4.445687254,100557,22619,3.722863423,5.168511085,0.227550692,707,3107,0.121427397,0.333673987,10.83694565,13,11996,,,94.20241952,57,60508,71.3479926,122.050161,,,,,,,,,,80.64173847,48.55159443,125.9320639,100.3181519,69.87526843,139.5182647,,,,5.4,,,,,1,,,,,0.131632653,645,4900,0.095668342,0.167596965,0.092132505,0.057892301,0.126372709,0.039387755,0.020511949,0.058263561,0.016326531,0.003965672,0.028687389,0.866243228,4637,5353,0.827123627,0.905362829,,,,,,,,,,0.896441848,0.855388229,0.937495468,0.847951236,0.78987114,0.906031332,0.119,,5353,0.079357231,0.158642769,74.13653708,,,72.51982413,75.75325002,,,,,,,,,,74.39641923,71.58485844,77.20798002,73.68145673,71.53487813,75.82803533,,,,559.1207481,244,33582,484.472163,633.7693333,,,,,,,,,,544.258142,422.6377433,689.9768817,582.1123913,484.2598223,679.9649602,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.133,,,0.116,0.154,0.174,,,0.152,0.2,0.099,,,0.084,0.116,102.1,10,9791,,,0.125,1490,,,,0.126221692,1584.208459,12551,,,,,,,,,,,,,,,,,,,,,,,,,,0.298,,,0.285,0.309,0.191653787,1240,6470,0.163058042,0.220249531,0.071630537,228,3183,0.050183729,0.093077346,0.001349755,16,11854,,,740.875,0.931952663,157.5,169,,,,,,,,2.918795463,,,,,,,,2.852759389,3.015192503,2.869478064,,,,,,,,2.83131445,2.998856425,0.055318887,,,,,-7282.43075,,,,,0.956194515,41037,42917,0.77935982,1.13302921,48832,,,41677.10638,55986.89362,,,,98529,60756.40426,136301.5957,,,,49899,44022.57447,55775.42553,49179,42276.70213,56081.29787,,,,,,0.611035112,1340,2193,,,,,,,,0.307687582,,48832,,,7.444168735,6,806,,,,,,,,,,,,,,,,,,,,,,,,,,19.73366437,11,60508,9.463059107,36.29091138,18.17941429,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.77588168,15,84384,9.949026039,29.31861357,,,,,,,,,,,,,,,,,,,12.85714286,,1400,,,18,,0.67,5561,8300,,,0.535,,,,,68.99245257,,,,,0.710006656,3200,4507,0.666581686,0.753431626,0.114162506,503,4406,0.071987563,0.156337448,0.824273353,3715,4507,0.78012059,0.868426116,11854,,,,,0.259659187,3078,11854,,,0.182807491,2167,11854,,,0.009195208,109,11854,,,0.020668129,245,11854,,,0.006748777,80,11854,,,0.000421799,5,11854,,,0.404251729,4792,11854,,,0.557870761,6613,11854,,,0.029169649,326,11176,0.011091234,0.047248065,0.496288173,5883,11854,,,0.374781232,4497,11999,, -08,101,08101,CO,Pueblo County,2024,1,12295.77946,3405,468424,11676.96424,12914.59467,0,14381.50165,7862.500779,24129.71607,1,,,,2,15879.43762,11180.58953,21887.71303,,13703.32597,12738.65164,14668.0003,,11247.63353,10382.91886,12112.3482,,,,,2,,0.175,,,0.15,0.202,3.788799592,,,3.07080261,4.510942874,5.181363833,,,4.380215964,5.990864472,0.108143217,1332,12317,0.102658543,0.113627891,0,,,,0.109375,0.055304852,0.163445148,0.171122995,0.117142793,0.225103196,0.11153527,0.10358643,0.11948411,0.099107651,0.09103782,0.107177483,,,,0.108695652,0.068469244,0.14892206,0.168,,,0.137,0.202,0.361,,,0.312,0.413,6.1,0.171478002,0.14,,,0.219,,,0.185,0.258,0.782828463,131642,168162,,,0.16408483,,,0.136513412,0.193687868,0.385620915,59,153,0.346241996,0.424565777,575.4,976,169622,,,23.4775641,879,37440,21.92548208,25.02964613,,,,,,,15.22070015,7.298917346,27.9914095,27.96929246,25.67716092,30.261424,16.29952943,14.23304476,18.3660141,,,,15.7946693,9.028018217,25.6495534,0.089052501,11926,133921,0.078329097,0.099775905,0.000666187,113,169622,,,1501.079646,0.000701883,119,169544,,,1424.739496,0.0058156,986,169544,,,171.9513185,2335,,,,,,,3260,2276,2373,0.4,,,,,,0.25,0.4,0.35,0.42,0.47,,,,,0.23,0.6,0.34,0.46,0.48,0.900357038,104400,115954,0.890356701,0.910357375,0.597878158,25585,42793,0.566803399,0.628952916,0.044265383,3384,76448,,,0.181,6588,,0.121425532,0.240574468,0.463510848,0.249931282,0.677090414,0.083333333,0,0.337949143,0.361370717,0.171974636,0.550766797,0.261974054,0.222341703,0.301606405,0.150846262,0.117787193,0.183905331,5.030322948,114797,22821,4.655515869,5.405130028,0.33579296,12469,37133,0.293202321,0.378383599,7.723054792,131,169622,,,125.672162,1058,841873,118.0994346,133.2448894,,,,,,,153.5705145,98.39552633,228.5007525,121.6301181,110.3036284,132.9566079,131.7956409,121.0041908,142.587091,,,,4.7,,,,,1,,,,,0.169005444,11020,65205,0.155517353,0.182493536,0.142401121,0.130045097,0.154757145,0.024614677,0.018360714,0.03086864,0.012038954,0.008152973,0.015924935,0.805654975,56275,69850,0.791138733,0.820171217,0.746494672,0.608102494,0.88488685,0.560202788,0.468053315,0.652352261,0.766250821,0.668042303,0.864459338,0.809853575,0.781443362,0.838263787,0.814904797,0.793421928,0.836387666,0.24,,69850,0.221426519,0.258573481,73.57087834,,,73.1164886,74.02526807,,,,,,,69.32375788,66.0115669,72.63594886,71.99696902,71.29599717,72.69794087,74.58381759,73.95067781,75.21695737,,,,560.5615801,3405,468424,540.6537731,580.4693871,604.0069846,378.5279615,914.4738334,,,,721.890641,561.6740078,913.5988082,624.7235706,591.1130816,658.3340596,520.1752663,494.1033743,546.2471582,,,,64.24517864,108,168106,52.12846805,76.36188922,,,,,,,,,,67.46463547,51.72474917,86.48661793,62.27122917,44.68690917,84.47795381,,,,6.340288925,79,12460,5.019666449,7.901891747,,,,,,,,,,6.514657981,4.654167173,8.871115141,6.923652695,4.87489045,9.543343215,,,,,,,0.123,,,0.107,0.142,0.165,,,0.145,0.189,0.104,,,0.09,0.119,178.5,256,143425,,,0.14,23520,,,,0.171478002,27275.80536,159063,,,39.57713505,201,507869,34.10568554,45.04858455,,,,,,,,,,46.72367257,37.70018487,55.74716028,33.73056181,27.05289691,41.55699554,,,,0.339,,,0.326,0.351,0.108249489,10533,97303,0.093951616,0.122547361,0.03963281,1537,38781,0.028909406,0.050356214,0.001403765,238,169544,,,712.3697479,0.839747504,1430.09,1703,,,0.1400258,1194,8527,0.105994366,0.174057235,2.951189445,,,,,,,2.680101044,2.812676224,3.202477795,2.732179655,,,,,,,2.333188498,2.605474809,2.964616306,0.088202587,,,,,-127.9214,,,,,0.830848675,46982,56547,0.79152246,0.87017489,58314,,,53162,63466,34142,24980.6383,43303.3617,74250,57220.04255,91279.95745,52308,42172,62444,56043,53395.51064,58690.48936,63480,60764.59575,66195.40426,,,,,,0.627213841,15299,24392,,,50.9818926,,,,,0.326130946,,58314,,,6.492124308,61,9396,,,9.396994841,110,1170587,7.640896967,11.15309272,,,,,,,,,,12.68002164,9.765161749,16.19210455,6.420989722,4.565951383,8.777704326,,,,29.83627027,253,841873,26.05100292,33.62153763,30.05203873,,,,,,,,,,24.6822603,19.79589451,30.40923502,33.62663291,27.91532011,39.33794571,,,,26.48855588,223,841873,23.01189827,29.96521348,,,,,,,,,,23.61216741,18.8866861,29.16083466,28.9812404,23.92080636,34.04167443,,,,17.34172684,203,1170587,14.95611164,19.72734205,,,,,,,,,,17.63315509,14.16087146,21.69911466,17.94584307,14.57679903,21.31488711,,,,8.361581921,,17700,,,148,,0.694818429,88301,127085,,,0.572,,,,,98.98621954,,,,,0.668668952,44861,67090,0.6566005,0.680737404,0.156751682,10184,64969,0.143200608,0.170302755,0.840915189,56417,67090,0.828749677,0.853080701,169544,,,,,0.217595433,36892,169544,,,0.194450998,32968,169544,,,0.019180862,3252,169544,,,0.033955787,5757,169544,,,0.012232813,2074,169544,,,0.002070259,351,169544,,,0.439189827,74462,169544,,,0.506240268,85830,169544,,,0.011221882,1783,158886,0.008262053,0.014181712,0.503285283,85329,169544,,,0.131462518,22107,168162,, -08,103,08103,CO,Rio Blanco County,2024,1,5968.856089,75,17825,4027.162138,8520.913209,0,,,,2,,,,2,,,,2,,,,2,6290.206703,4145.285853,9151.920504,,,,,2,,0.151,,,0.126,0.178,3.854121901,,,3.067041262,4.708525865,5.262159433,,,4.214474461,6.350835979,0.088036117,39,443,0.061650123,0.114422112,0,,,,,,,,,,,,,0.098958333,0.069091507,0.12882516,,,,,,,0.176,,,0.138,0.216,0.272,,,0.204,0.344,8.4,0.020724952,0.108,,,0.193,,,0.152,0.235,0.888037984,5798,6529,,,0.18995063,,,0.152097979,0.23145655,0.285714286,2,7,0.086061846,0.500925625,123.5,8,6476,,,11.09057301,18,1623,6.572976451,17.5278868,,,,,,,,,,,,,10.97178683,5.99837796,18.40879398,,,,,,,0.102842479,521,5066,0.087353118,0.118331841,0.001235331,8,6476,,,809.5,0.000761151,5,6569,,,1313.8,0.002435683,16,6569,,,410.5625,2714,,,,,,,,,2794,0.43,,,,,,,,,0.42,0.21,,,,,,,,,0.21,0.922403868,4006,4343,0.894519918,0.950287819,0.582840237,985,1690,0.46808802,0.697592454,0.037389771,106,2835,,,0.119,182,,0.072531915,0.165468085,,,,,,,,,,,,,0.162025317,0.030758725,0.293291908,3.346221335,110606,33054,2.555256569,4.137186101,0.184143223,288,1564,0.067650716,0.300635729,9.264978382,6,6476,,,90.9147909,29,31898,60.88706232,130.5688051,,,,,,,,,,,,,96.7082016,63.17300806,141.6999222,,,,7.9,,,,,1,,,,,0.153081511,385,2515,0.098919319,0.207243703,0.114,0.062554893,0.165445107,0.03499006,0.005890572,0.064089547,0.0055666,0,0.013497351,0.799088359,2279,2852,0.75759338,0.840583338,,,,,,,,,,,,,0.736899963,0.682900712,0.790899215,0.189,,2852,0.12371769,0.25428231,78.85484058,,,76.80725801,80.90242315,,,,,,,,,,,,,78.3112181,76.1297749,80.4926613,,,,317.6445861,75,17825,246.6634501,402.6902017,,,,,,,,,,,,,337.5104871,258.7673551,432.6732123,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.116,,,0.099,0.134,0.17,,,0.147,0.195,0.081,,,0.069,0.095,,,,,,0.108,700,,,,0.020724952,138.1525279,6666,,,,,,,,,,,,,,,,,,,,,,,,,,0.294,,,0.279,0.308,0.117762238,421,3575,0.097506919,0.138017557,0.066795119,104,1557,0.04534831,0.088241927,0.001217841,8,6569,,,821.125,,,,,,,,,,,2.96310377,,,,,,,,,3.006544943,2.970119723,,,,,,,,,3.015461395,0.022666298,,,,,1922.4355,,,,,0.707307604,40081,56667,0.422362316,0.992252893,71630,,,61140.12766,82119.87234,,,,,,,,,,88750,32478.34043,145021.6596,67925,57619.80851,78230.19149,,,,,,0.358910891,435,1212,,,,,,,,0.245176602,,71630,,,9.111617312,4,439,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,700,,,-888,,0.777871444,3691,4745,,,0.437,,,,,10.47560837,,,,,0.786311182,1976,2513,0.74317406,0.829448304,0.101931772,248,2433,0.050318023,0.15354552,0.914046956,2297,2513,0.864310475,0.963783436,6569,,,,,0.234586695,1541,6569,,,0.183437357,1205,6569,,,0.014309636,94,6569,,,0.018267621,120,6569,,,0.007002588,46,6569,,,0.001522302,10,6569,,,0.119652915,786,6569,,,0.825544223,5423,6569,,,0.008530184,52,6096,0,0.024686268,0.480438423,3156,6569,,,1,6529,6529,, -08,105,08105,CO,Rio Grande County,2024,1,11336.98191,221,31066,8987.34625,13686.61757,0,,,,2,,,,2,,,,2,12913.02617,9644.065583,16933.71583,,8956.762472,5862.263835,12051.26111,,,,,2,,0.164,,,0.138,0.192,3.758122137,,,3.021413415,4.620599708,5.072074335,,,4.115601606,6.119771338,0.141498216,119,841,0.117942075,0.165054358,0,,,,,,,,,,0.15,0.115007001,0.184992999,0.135416667,0.101192731,0.169640602,,,,,,,0.148,,,0.119,0.181,0.268,,,0.205,0.338,7.7,0.050717374,0.122,,,0.2,,,0.161,0.244,0.835947656,9646,11539,,,0.170004441,,,0.135951134,0.2084868,0,0,9,0,0.215915826,412,47,11408,,,22.15839147,54,2437,16.64606564,28.91189429,,,,,,,,,,25.38787024,17.7813522,35.14751374,16.04278075,8.979022602,26.46012714,,,,,,,0.144874297,1262,8711,0.124618978,0.165129616,0.000964236,11,11408,,,1037.090909,0.000441501,5,11325,,,2265,0.000529801,6,11325,,,1887.5,2853,,,,,,,,2515,3224,0.29,,,,,,,,0.29,0.3,0.28,,,,,,,,0.24,0.29,0.900889768,7290,8092,0.871957853,0.929821682,0.693693694,2079,2997,0.554431351,0.832956037,0.042312051,224,5294,,,0.206,487,,0.124978723,0.287021277,,,,,,,,,,0.163043478,0.042456708,0.283630248,0.030051814,0,0.086697271,4.456480208,116635,26172,3.832850203,5.080110213,0.288445553,694,2406,0.179283396,0.397607709,14.02524544,16,11408,,,148.6146987,84,56522,118.540904,183.9951095,,,,,,,,,,160.0896502,114.3703932,217.996666,142.6533524,102.8119888,192.8258908,,,,4.1,,,,,0,,,,,0.154171067,730,4735,0.098757011,0.209585122,0.106160733,0.057406358,0.154915109,0.041182682,0.017667042,0.064698323,0.03062302,0.004116804,0.057129237,0.776307877,3873,4989,0.719159431,0.833456324,,,,,,,,,,0.711992446,0.624196529,0.799788363,0.725687718,0.661441183,0.789934253,0.226,,4989,0.155450145,0.296549855,74.32182878,,,72.58282457,76.060833,,,,,,,,,,72.84090431,70.27204837,75.40976025,76.09660136,73.73747675,78.45572597,,,,514.2956571,221,31066,440.73079,587.8605242,,,,,,,,,,588.0781847,471.0265184,725.3922682,430.2397374,340.1578936,520.3215811,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.115,,,0.099,0.134,0.154,,,0.133,0.177,0.092,,,0.078,0.107,133.7,13,9723,,,0.122,1400,,,,0.050717374,607.6955763,11982,,,50.04268347,17,33971,29.15170725,80.12318394,,,,,,,,,,,,,,,,,,,0.306,,,0.292,0.319,0.172451878,1093,6338,0.145047622,0.199856133,0.072250893,182,2519,0.051995574,0.092506212,0.000971302,11,11325,,,1029.545455,0.784756098,128.7,164,,,,,,,,2.542030578,,,,,,,,2.41373738,2.918610044,2.577234488,,,,,,,,2.439322736,2.877775511,0.091325126,,,,,-1816.415667,,,,,0.891685185,48151,54000,0.638179454,1.145190916,56877,,,49056.06383,64697.93617,113656,40662.97872,186649.0213,,,,,,,58239,46711.34043,69766.65957,58464,42726.80851,74201.19149,,,,,,0.536172695,919,1714,,,,,,,,0.224414087,,56877,,,11.23595506,7,623,,,,,,,,,,,,,,,,,,,,,,,,,,33.4664567,19,56522,19.49544431,53.58303913,33.61522947,,,,,,,,,,,,,30.78393371,14.07637474,58.43749521,,,,21.23067124,12,56522,10.97019764,37.08571007,,,,,,,,,,,,,,,,,,,22.62898522,18,79544,13.41137079,35.76355258,,,,,,,,,,28.40828386,13.62287633,52.24384547,,,,,,,13.33333333,,1200,,,16,,0.770782396,6305,8180,,,0.496,,,,,35.24267194,,,,,0.724930213,3376,4657,0.665725232,0.784135193,0.072110051,325,4507,0.039000845,0.105219257,0.775177153,3610,4657,0.727158958,0.823195347,11325,,,,,0.211567329,2396,11325,,,0.218719647,2477,11325,,,0.007328918,83,11325,,,0.037527594,425,11325,,,0.006092715,69,11325,,,0.000529801,6,11325,,,0.444856512,5038,11325,,,0.518057395,5867,11325,,,0.015940293,173,10853,0,0.032260537,0.50004415,5663,11325,,,1,11539,11539,, -08,107,08107,CO,Routt County,2024,1,4211.549233,175,72323,3272.892808,5150.205658,0,,,,2,,,,2,,,,2,,,,2,4424.220698,3447.431035,5401.01036,,,,,2,,0.103,,,0.084,0.126,2.963114501,,,2.238117822,3.770984627,4.700799683,,,3.756834265,5.679436769,0.095833333,138,1440,0.080629351,0.111037316,0,,,,,,,,,,0.111607143,0.070370758,0.152843528,0.091854419,0.075190355,0.108518484,,,,,,,0.119,,,0.088,0.158,0.209,,,0.157,0.269,8.9,0.024610716,0.079,,,0.134,,,0.104,0.169,0.754319546,18729,24829,,,0.229453298,,,0.187380886,0.27534251,0.588235294,10,17,0.484229774,0.675652841,211.2,53,25091,,,6.424457244,29,4514,4.302559844,9.226592255,,,,,,,,,,25.36231884,13.86581572,42.55366145,3.956739647,2.214557144,6.526040325,,,,,,,0.10225997,2095,20487,0.087962097,0.116557842,0.001315213,33,25091,,,760.3333333,0.001079698,27,25007,,,926.1851852,0.003439037,86,25007,,,290.7790698,623,,,,,,,,,611,0.44,,,,,,,,0.33,0.44,0.58,,,,,,,,0.65,0.58,0.96964038,18173,18742,0.956996876,0.982283884,0.773933583,5570,7197,0.688096109,0.859771058,0.025308366,396,15647,,,0.06,253,,0.038553192,0.081446809,,,,,,,,,,0.139084507,0,0.281911063,0.038944319,0.016979084,0.060909554,4.086067686,190280,46568,3.458367291,4.713768081,0.184914286,809,4375,0.118505533,0.251323038,14.74632338,37,25091,,,74.66088241,95,127242,60.40511236,91.26905709,,,,,,,,,,,,,79.82246081,64.26806619,98.00429367,,,,4.2,,,,,0,,,,,0.162871287,1645,10100,0.13094317,0.194799404,0.148222334,0.115236228,0.181208439,0.02029703,0.008648297,0.031945762,0.00039604,0,0.003354637,0.679526524,9300,13686,0.644921232,0.714131815,,,,,,,,,,0.63836478,0.565681693,0.711047867,0.673355184,0.641865834,0.704844534,0.271,,13686,0.228605744,0.313394256,84.02163761,,,82.74132448,85.30195073,,,,,,,,,,85.24346477,78.2108904,92.27603914,83.69549512,82.39933625,84.99165399,,,,178.3540909,175,72323,150.4739258,206.234256,,,,,,,,,,,,,189.078688,159.0313139,219.1260621,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.088,,,0.073,0.105,0.143,,,0.121,0.168,0.063,,,0.053,0.076,126.7,28,22108,,,0.079,1980,,,,0.024610716,578.5733315,23509,,,13.10804965,10,76289,6.285819314,24.10617001,,,,,,,,,,,,,14.63850219,7.019730792,26.92072672,,,,0.264,,,0.247,0.28,0.111909333,1807,16147,0.094036993,0.129781673,0.067529051,308,4561,0.048465221,0.08659288,0.001319631,33,25007,,,757.7878788,0.924850746,247.86,268,,,,,,,,3.451850995,,,,,,,,2.742718044,3.606129999,3.344492528,,,,,,,,2.53941296,3.547356897,0.026500179,,,,,5086.993,,,,,0.888533103,61602,69330,0.770763263,1.006302943,104407,,,93223.68085,115590.3192,72963,16156.3617,129769.6383,,,,,,,53511,49420.61702,57601.38298,103456,93048.34043,113863.6596,,,,,,0.085015291,278,3270,,,,,,,,0.324183244,,104407,,,25.12077295,26,1035,,,,,,,,,,,,,,,,,,,,,,,,,,15.55332623,22,127242,9.500375724,24.02085091,17.28988856,,,,,,,,,,,,,16.97851454,10.37091777,26.22193866,,,,14.93217648,19,127242,8.990145679,23.31844326,,,,,,,,,,,,,16.66622808,10.03415802,26.02637963,,,,12.49857971,22,176020,7.83279336,18.92299988,,,,,,,,,,,,,13.30343229,8.235034262,20.33570941,,,,4.090909091,,2200,,,9,,0.830511811,16876,20320,,,0.449,,,,,45.83634564,,,,,0.764957681,7863,10279,0.743772832,0.78614253,0.171779141,1736,10106,0.136028791,0.207529491,0.919058274,9447,10279,0.887602535,0.950514013,25007,,,,,0.170472268,4263,25007,,,0.187707442,4694,25007,,,0.010796977,270,25007,,,0.006918063,173,25007,,,0.009477346,237,25007,,,0.00099972,25,25007,,,0.075818771,1896,25007,,,0.887711441,22199,25007,,,0.009700619,232,23916,0.002161323,0.017239915,0.478266086,11960,25007,,,0.417817874,10374,24829,, -08,109,08109,CO,Saguache County,2024,1,10630.92197,107,18711,6937.092702,14324.75124,0,,,,2,,,,2,,,,2,13757.8076,8153.748708,21743.26736,1,8630.71045,4830.543122,14235.04437,1,,,,2,,0.18,,,0.154,0.21,4.037613096,,,3.16467104,4.928646951,5.258467264,,,4.197016183,6.339062062,0.133640553,58,434,0.10162733,0.165653776,0,,,,,,,,,,0.142222222,0.096583241,0.187861203,0.12849162,0.079468298,0.177514943,,,,,,,0.176,,,0.141,0.215,0.285,,,0.215,0.36,6.7,0.157275841,0.121,,,0.228,,,0.185,0.277,0.252826633,1610,6368,,,0.168001583,,,0.132053022,0.207026146,0.307692308,4,13,0.157450571,0.460702037,231.8,15,6471,,,26.74591382,36,1346,18.73250923,37.02761849,,,,,,,,,,41.86046512,27.58631028,60.90477899,,,,,,,,,,0.147565071,703,4764,0.126118263,0.16901188,0.000309071,2,6471,,,3235.5,,0,6623,,,,0.001207912,8,6623,,,827.875,1233,,,,,,,,,1231,0.25,,,,,,,,0.2,0.27,0.27,,,,,,,,0.25,0.27,0.884513365,4335,4901,0.846086147,0.922940582,0.438366156,601,1371,0.306367055,0.570365257,0.034256777,115,3357,,,0.297,365,,0.185,0.409,0.733333333,0.31344928,1,,,,,,,0.28343949,0.134568569,0.432310412,0.083809524,0,0.183271541,4.889480168,99232,20295,3.445574624,6.333385712,0.271103896,334,1232,0.128748616,0.413459176,13.90820584,9,6471,,,130.5560501,44,33702,94.86222586,175.2654035,,,,,,,,,,124.0694789,69.44074552,204.6337376,136.2810418,89.81006527,198.2817608,,,,3.9,,,,,0,,,,,0.174688057,490,2805,0.127010976,0.222365138,0.120938628,0.078263671,0.163613585,0.035650624,0.01185471,0.059446538,0.023172906,0.002596674,0.043749137,0.622556391,1656,2660,0.556242976,0.688869806,,,,,,,,,,0.842696629,0.733943118,0.95145014,0.595104895,0.503237846,0.686971945,0.296,,2660,0.199761877,0.392238123,78.63404292,,,75.40062998,81.86745585,,,,,,,,,,77.607234,71.14766889,84.06679911,79.42432173,75.74005382,83.10858964,,,,372.6732902,107,18711,288.019988,457.3265924,,,,,,,,,,445.1123926,306.3948902,625.1032903,337.8642357,241.3751634,460.0751943,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.125,,,0.107,0.146,0.169,,,0.146,0.195,0.096,,,0.081,0.112,229.9,13,5654,,,0.121,770,,,,0.157275841,960.6408354,6108,,,,,,,,,,,,,,,,,,,,,,,,,,0.301,,,0.288,0.314,0.175217269,625,3567,0.147813014,0.202621525,0.066562255,85,1277,0.046306936,0.086817574,0.000150989,1,6623,,,6623,,,,,,,,,,,2.821933824,,,,,,,,3.017332052,2.567615934,2.914715414,,,,,,,,3.220733851,2.526583648,0.382450765,,,,,-8451.189,,,,,0.853454162,41250,48333,0.389911736,1.316996587,45048,,,38150.46809,51945.53192,,,,,,,,,,51771,46891.85106,56650.14894,53519,41728.02128,65309.97872,,,,,,0.822374877,838,1019,,,56.14655012,,,,,0.31433138,,45048,,,18.40490798,6,326,,,,,,,,,,,,,,,,,,,,,,,,,,38.83820368,11,33702,18.62442829,71.42483936,32.63901252,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,21.57869751,10,46342,10.34782421,39.68399301,,,,,,,,,,,,,,,,,,,,,700,,,-888,,0.673088381,3389,5035,,,0.387,,,,,2.905528558,,,,,0.727775969,2235,3071,0.682776251,0.772775686,0.15959253,470,2945,0.097007158,0.222177902,0.791598828,2431,3071,0.729797778,0.853399878,6623,,,,,0.186773366,1237,6623,,,0.263173788,1743,6623,,,0.010569228,70,6623,,,0.037596256,249,6623,,,0.010569228,70,6623,,,0.000452967,3,6623,,,0.347576627,2302,6623,,,0.594292617,3936,6623,,,0.024560833,151,6148,0.00540161,0.043720055,0.493733957,3270,6623,,,1,6368,6368,, -08,111,08111,CO,San Juan County,2024,0,,,,,,2,,,,2,,,,2,,,,2,,,,2,,,,2,,,,2,,0.127,,,0.106,0.152,3.341878349,,,2.600647025,4.176199943,4.890876372,,,3.906428565,5.963737031,,,,,,0,,,,,,,,,,,,,,,,,,,,,,0.141,,,0.106,0.181,0.252,,,0.191,0.322,5.7,0.290066302,0.1,,,0.164,,,0.128,0.202,0.988652482,697,705,,,0.18949178,,,0.153404053,0.23007316,0.2,1,5,0.015594715,0.47750127,545.7,4,733,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.196363636,108,550,0.166576402,0.22615087,0,0,733,,,-733,0,0,803,,,-803,0.00124533,1,803,,,803,,,,,,,,,,,0.29,,,,,,,,,0.28,0.53,,,,,,,,,0.54,0.956521739,528,552,0.921004166,0.992039312,0.888297872,167,188,0.718124081,1,0.02631579,15,570,,,0.235,20,,0.144446809,0.325553192,,,,,,,,,,,,,,,,4.95959016,112300,22643,0,10.48475272,0.279069767,24,86,0.056145321,0.501994214,0,0,733,,,,,,,,,,,,,,,,,,,,,,,,,,3.4,,,,,0,,,,,0.152542373,45,295,0.02432886,0.280755886,0.118644068,0,0.305039207,0.013559322,0,0.108459381,0.013559322,0,0.063366791,0.629032258,234,372,0.452551799,0.805512717,,,,,,,,,,,,,0.693290735,0.494327195,0.892254275,0.098,,372,0,0.208017769,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.1,,,0.084,0.117,0.15,,,0.128,0.175,0.075,,,0.063,0.089,,,,,,0.1,70,,,,0.290066302,202.7563451,699,,,,,,,,,,,,,,,,,,,,,,,,,,0.288,,,0.27,0.304,0.204347826,94,460,0.168603145,0.240092507,0.152173913,14,92,0.100939871,0.203407956,0,0,803,,,-803,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.080238903,,,,,,,,,,0.848427471,44808,52813,0.366912912,1.32994203,62732,,,53730.29787,71733.70213,,,,,,,,,,,,,72500,54453.70213,90546.29787,,,,,,0.662790698,57,86,,,,,,,,0.323232162,,62732,,,142.8571429,1,7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,,0,,1,562,500,,,0.328,,,,,3.028700862,,,,,0.548961424,185,337,0.41107911,0.686843739,0.148484849,49,330,0,0.341552477,0.786350148,265,337,0.700326432,0.872373865,803,,,,,0.109589041,88,803,,,0.231631382,186,803,,,0.00249066,2,803,,,0.00996264,8,803,,,0.00747198,6,803,,,0,0,803,,,0.143212951,115,803,,,0.818181818,657,803,,,0.051928783,35,674,0,0.173074533,0.429638854,345,803,,,1,705,705,, -08,113,08113,CO,San Miguel County,2024,1,4466.106239,48,23311,2831.128249,6701.352197,1,,,,2,,,,2,,,,2,,,,2,4428.199531,2624.431687,6998.464371,1,,,,2,,0.109,,,0.09,0.129,3.056371369,,,2.366965224,3.813062654,4.497579484,,,3.566042199,5.458688024,0.097686375,38,389,0.068182639,0.127190112,0,,,,,,,,,,0.126582279,0.05325932,0.199905237,0.091525424,0.058619633,0.124431214,,,,,,,0.119,,,0.09,0.154,0.248,,,0.187,0.316,8.7,0.020006181,0.092,,,0.144,,,0.114,0.18,0.78666997,6350,8072,,,0.210252197,,,0.168545817,0.255253209,0.5,3,6,0.280972677,0.671334317,136.2,11,8074,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.121280096,811,6687,0.102216266,0.140343926,0.00086698,7,8074,,,1153.428571,0.000624766,5,8003,,,1600.6,0.002998875,24,8003,,,333.4583333,214,,,,,,,,,218,0.42,,,,,,,,,0.42,0.39,,,,,,,,,0.39,0.981852913,6168,6282,0.970168256,0.993537571,0.77597528,2009,2589,0.688911995,0.863038565,0.031356388,175,5581,,,0.084,107,,0.051829787,0.116170213,,,,,,,,,,0.054794521,0,0.203158404,0.071644803,0.011480486,0.13180912,5.511055767,163750,29713,4.227180471,6.794931063,0.166026134,216,1301,0.095621193,0.236431074,11.14689126,9,8074,,,74.0448218,30,40516,49.95773033,105.7035872,,,,,,,,,,,,,78.08433108,51.4580662,113.6086021,,,,3.8,,,,,0,,,,,0.220527046,795,3605,0.176658343,0.264395748,0.179443976,0.136056908,0.222831045,0.023300971,0.007017148,0.039584794,0.033287101,0.016224642,0.050349561,0.480498264,2353,4897,0.430076265,0.530920264,,,,,,,,,,,,,0.513754359,0.467647908,0.559860809,0.221,,4897,0.165765761,0.276234239,88.25214858,,,82.58906861,93.91522855,,,,,,,,,,,,,88.07092169,82.4730437,93.66879967,,,,162.4387284,48,23311,117.5577132,218.8039012,,,,,,,,,,,,,157.0987799,108.795472,219.5297985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.089,,,0.076,0.105,0.141,,,0.121,0.163,0.067,,,0.056,0.079,70,5,7142,,,0.092,740,,,,0.020006181,147.2254874,7359,,,,,,,,,,,,,,,,,,,,,,,,,,0.26,,,0.243,0.276,0.12991389,694,5342,0.107275592,0.152552188,0.087943262,124,1410,0.062921986,0.112964539,0.000749719,6,8003,,,1333.833333,,,,,,,,,,,3.652435298,,,,,,,,,3.696474414,3.307613277,,,,,,,,,3.322370844,0.040639749,,,,,5814.958,,,,,1.028594499,58598,56969,0.937773092,1.119415906,94387,,,80089.12766,108684.8723,,,,,,,,,,,,,74982,68563.44681,81400.55319,,,,,,0.208372093,224,1075,,,,,,,,0.26399822,,94387,,,53.94190871,13,241,,,,,,,,,,,,,,,,,,,,,,,,,,29.7142967,10,40516,13.58726858,56.40699097,24.68160727,,,,,,,,,,,,,33.70742804,15.41318251,63.98719811,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,700,,,-888,,0.822861711,5147,6255,,,0.372,,,,,6.542619606,,,,,0.610649351,2351,3850,0.56764446,0.653654242,0.216567407,800,3694,0.170105879,0.263028935,0.878181818,3381,3850,0.846206619,0.910157018,8003,,,,,0.160314882,1283,8003,,,0.179432713,1436,8003,,,0.006247657,50,8003,,,0.015869049,127,8003,,,0.011870549,95,8003,,,0.000749719,6,8003,,,0.116706235,934,8003,,,0.843808572,6753,8003,,,0.02941551,231,7853,0.009519129,0.049311891,0.459702612,3679,8003,,,0.431739346,3485,8072,, -08,115,08115,CO,Sedgwick County,2024,1,10489.08322,47,5940,5995.417352,17033.61401,1,,,,2,,,,2,,,,2,,,,2,11138.72151,5755.539944,19457.10485,1,,,,2,,0.164,,,0.137,0.193,3.994396204,,,3.096859332,4.874787445,5.291705922,,,4.160469332,6.363970039,0.098484849,13,132,0.047652482,0.149317215,1,,,,,,,,,,,,,0.117647059,0.055120045,0.180174073,,,,,,,0.177,,,0.14,0.218,0.285,,,0.217,0.36,7.6,0.05030234,0.131,,,0.204,,,0.16,0.249,0.611480865,1470,2404,,,0.163945363,,,0.129505383,0.200823076,0.25,2,8,0.070127692,0.458326521,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.126153846,205,1625,0.107090016,0.145217676,0.000428082,1,2336,,,2336,0.00043573,1,2295,,,2295,,0,2295,,,,2127,,,,,,,,,1980,0.3,,,,,,,,,0.3,0.11,,,,,,,,,0.11,0.913271246,1569,1718,0.881660657,0.944881835,0.788679245,418,530,0.662339738,0.915018752,0.026266417,28,1066,,,0.206,88,,0.129744681,0.282255319,,,,,,,,,,0.338709677,0,0.680832566,0.16112532,0.0274037,0.29484694,6.029810008,112667,18685,4.51191542,7.547704596,0.229755179,122,531,0.063479182,0.396031175,12.84246575,3,2336,,,113.1320164,13,11491,60.23803404,193.4591934,,,,,,,,,,,,,141.8904169,75.55067115,242.6369343,,,,4.7,,,,,0,,,,,0.130890052,125,955,0.080994816,0.180785289,0.093517535,0.038235165,0.148799904,0.014659686,0,0.048128459,0.02513089,0.000304627,0.049957154,0.691148776,734,1062,0.607790135,0.774507417,,,,,,,,,,,,,0.730434783,0.644681065,0.8161885,0.264,,1062,0.182020683,0.345979317,76.32551236,,,72.28438493,80.3666398,,,,,,,,,,,,,75.62757567,70.88545127,80.36970006,,,,493.1338683,47,5940,343.4858078,685.8298354,,,,,,,,,,,,,513.1304962,340.9714882,741.6164362,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.122,,,0.103,0.142,0.172,,,0.148,0.199,0.086,,,0.072,0.101,,,,,,0.131,320,,,,0.05030234,119.6692678,2379,,,,,,,,,,,,,,,,,,,,,,,,,,0.317,,,0.302,0.332,0.142737196,170,1191,0.118907408,0.166566983,0.076754386,35,456,0.05054162,0.102967152,0.002178649,5,2295,,,459,0.910526316,121.1,133,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.040867826,,,,,-1412.0605,,,,,0.598134847,34891,58333,0.380412229,0.815857464,46980,,,40099.14894,53860.85106,,,,,,,,,,29038,18243.10638,39832.89362,52788,43492,62084,,,,,,0.493112948,179,363,,,,,,,,0.289676458,,46980,,,11.32075472,3,265,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,200,,,-888,,0.88440367,1446,1635,,,0.574,,,,,19.21687675,,,,,0.683508103,717,1049,0.636789363,0.730226843,0.146639511,144,982,0.073161601,0.220117422,0.85128694,893,1049,0.809476301,0.893097578,2295,,,,,0.187799564,431,2295,,,0.315904139,725,2295,,,0.007407407,17,2295,,,0.016993464,39,2295,,,0.013943355,32,2295,,,0.002178649,5,2295,,,0.177342048,407,2295,,,0.785185185,1802,2295,,,0.014993185,33,2201,0,0.041030633,0.505882353,1161,2295,,,1,2404,2404,, -08,117,08117,CO,Summit County,2024,1,3949.162576,171,88752,3068.750139,4829.575013,0,,,,2,,,,2,,,,2,5121.032714,3083.196222,7997.126936,1,3750.645159,2792.660337,4708.62998,,,,,2,,0.11,,,0.089,0.134,2.96563944,,,2.283548383,3.753651785,4.407406744,,,3.535930032,5.369365628,0.136065574,249,1830,0.1203567,0.151774447,0,,,,,,,,,,0.13015873,0.103883747,0.156433714,0.133273703,0.113350994,0.153196412,,,,,,,0.123,,,0.092,0.162,0.213,,,0.161,0.27,9.2,0.014729137,0.07,,,0.143,,,0.112,0.179,0.999871196,31051,31055,,,0.225015313,,,0.183879418,0.269054207,0.277777778,5,18,0.152183671,0.410166986,300.6,93,30941,,,12.58811682,50,3972,9.343142935,16.59586271,,,,,,,,,,37.59398496,26.85769402,51.19233737,,,,,,,,,,0.12174046,3184,26154,0.102676631,0.14080429,0.000807989,25,30941,,,1237.64,0.001046949,32,30565,,,955.15625,0.003827908,117,30565,,,261.2393162,266,,,,,,,,,273,0.48,,,,,,0.45,,,0.48,0.6,,,,,,0.67,,0.36,0.59,0.942328482,22663,24050,0.923334446,0.961322519,0.703895396,7752,11013,0.612707729,0.795083063,0.022410266,482,21508,,,0.068,316,,0.044170213,0.091829787,,,,,,,,,,0.110174984,0.002728704,0.217621263,0.044284633,0.001928288,0.086640978,3.501206549,175561,50143,2.919482959,4.08293014,0.158963023,791,4976,0.052814445,0.2651116,8.079893992,25,30941,,,51.88908708,80,154175,41.14481893,64.5804605,,,,,,,,,,44.32034747,21.25332933,81.50669699,53.32908823,41.32931088,67.72605693,,,,3.8,,,,,1,,,,,0.161929371,1880,11610,0.120074628,0.203784114,0.111168831,0.077528277,0.144809386,0.062015504,0.03076011,0.093270898,0.000861326,0,0.004492116,0.636987771,11876,18644,0.593376861,0.680598681,,,,,,,,,,0.600642055,0.517728494,0.683555615,0.663391934,0.616554497,0.710229371,0.186,,18644,0.138564356,0.233435644,93.00184788,,,88.52215399,97.48154176,,,,,,,,,,92.94945071,63.04260542,122.856296,92.84465212,88.38675561,97.30254863,,,,153.3276281,171,88752,129.117859,177.5373973,,,,,,,,,,179.9978942,104.8554065,288.1940653,150.4349147,124.0313668,176.8384626,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.089,,,0.075,0.106,0.139,,,0.118,0.162,0.064,,,0.053,0.076,160,44,27492,,,0.07,2160,,,,0.014729137,412.3274529,27994,,,11.8812309,11,92583,5.931067655,21.25880401,,,,,,,,,,,,,13.3278245,6.391209895,24.51034378,,,,0.259,,,0.244,0.276,0.131560433,2805,21321,0.108922136,0.154198731,0.079493771,402,5057,0.055663984,0.103323558,0.001046949,32,30565,,,955.15625,0.9,200.7,223,,,,,,,,3.11516803,,,,,,,,2.518540013,3.428033927,2.958720786,,,,,,,,2.259675859,3.373469101,0.0521012,,,,,2896.266,,,,,0.922575951,51989,56352,0.804880511,1.040271391,96984,,,82906.55319,111061.4468,194130,137477.0638,250782.9362,,,,,,,61111,29441.21277,92780.78723,104016,95082.21277,112949.7872,,,,,,0.27050809,953,3523,,,,,,,,0.366431576,,96984,,,21.27659575,27,1269,,,,,,,,,,,,,,,,,,,,,,,,,,16.92910449,27,154175,10.73160005,25.40196885,17.51256689,,,,,,,,,,,,,16.44291997,9.745116473,25.98690253,,,,9.729203827,15,154175,5.445361526,16.04684214,,,,,,,,,,,,,10.34743503,5.50957336,17.69442904,,,,5.586436133,12,214806,2.886593069,9.758379677,,,,,,,,,,,,,,,,,,,6.818181818,,2200,,,15,,0.774800839,18479,23850,,,0.333,,,,,69.69818691,,,,,0.69787234,8200,11750,0.678669065,0.717075616,0.121261884,1403,11570,0.085634979,0.156888789,0.942638298,11076,11750,0.904052625,0.981223971,30565,,,,,0.15403239,4708,30565,,,0.159038116,4861,30565,,,0.012759693,390,30565,,,0.009586128,293,30565,,,0.017111075,523,30565,,,0.002093898,64,30565,,,0.151251431,4623,30565,,,0.803369868,24555,30565,,,0.027865949,834,29929,0.013860788,0.041871111,0.455684607,13928,30565,,,0.161004669,5000,31055,, -08,119,08119,CO,Teller County,2024,1,7674.268076,407,70718,6214.666281,9133.869871,0,,,,2,,,,2,,,,2,,,,2,7642.053919,6094.436804,9189.671033,,,,,2,,0.114,,,0.095,0.136,3.185594923,,,2.458930316,3.93160134,4.761304116,,,3.789925471,5.689577117,0.13050571,160,1226,0.111649302,0.149362117,0,,,,,,,,,,0.152173913,0.092244501,0.212103326,0.128712871,0.108059687,0.149366056,,,,,,,0.139,,,0.107,0.176,0.26,,,0.199,0.326,8.7,0.032231296,0.088,,,0.156,,,0.122,0.194,0.855362202,21136,24710,,,0.183479454,,,0.147439967,0.22313842,0.25,4,16,0.11917111,0.394165016,136.4,34,24926,,,9.696668324,39,4022,6.895279087,13.25566481,,,,,,,,,,,,,9.471432936,6.435379157,13.44394302,,,,,,,0.081245335,1524,18758,0.068138952,0.094351718,0.000361069,9,24926,,,2769.555556,0.000482761,12,24857,,,2071.416667,0.002172426,54,24857,,,460.3148148,1183,,,,,,,,,1187,0.33,,,,,,,,,0.33,0.38,,,,,,0.33,,0.2,0.38,0.970451252,18753,19324,0.959181201,0.981721304,0.733138402,3761,5130,0.637063803,0.829213,0.029889684,401,13416,,,0.117,472,,0.071723404,0.162276596,,,,,,,,,,,,,0.075606277,0.023108915,0.128103639,3.600819759,135290,37572,3.170191154,4.031448365,0.087418498,362,4141,0.034579682,0.140257314,10.83206291,27,24926,,,92.37728156,116,125572,75.56633163,109.1882315,,,,,,,,,,,,,97.05655585,78.6662455,115.4468662,,,,4.4,,,,,1,,,,,0.13623327,1425,10460,0.108044021,0.164422518,0.11073501,0.082732238,0.138737781,0.024856597,0.011900341,0.037812852,0.006692161,0.001696279,0.011688042,0.760778736,8558,11249,0.715859399,0.805698073,,,,,,,,,,,,,0.695069821,0.631307297,0.758832344,0.534,,11249,0.459286871,0.608713129,79.37063024,,,78.05248748,80.68877299,,,,,,,,,,81.89461712,77.34549992,86.44373431,79.20018369,77.81849057,80.58187681,,,,335.7755804,407,70718,296.9105825,374.6405783,,,,,,,,,,,,,340.0729626,298.2199704,381.9259548,,,,53.85609651,10,18568,25.82609164,99.04327899,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.097,,,0.082,0.113,0.153,,,0.131,0.178,0.068,,,0.057,0.08,85.8,19,22146,,,0.088,2180,,,,0.032231296,752.6007599,23350,,,26.37026489,20,75843,16.10764288,40.72673537,,,,,,,,,,,,,28.73910939,17.30282122,44.87967929,,,,0.289,,,0.273,0.304,0.092271025,1355,14685,0.076781663,0.107760387,0.043043276,185,4298,0.029936893,0.056149659,0.000724142,18,24857,,,1380.944444,0.748139535,160.85,215,,,,,,,,3.019371221,,,,,,,,,3.055385265,2.839257798,,,,,,,,,2.8097564,0.031778816,,,,,3666.6565,,,,,0.718309032,48919,68103,0.567149427,0.869468636,81466,,,70428.04255,92503.95745,,,,,,,38265,18618.53192,57911.46809,55497,22346.19149,88647.80851,71324,61970.80851,80677.19149,,,,,,0.287238979,619,2155,,,,,,,,0.388431984,,81466,,,28.60411899,25,874,,,,,,,,,,,,,,,,,,,,,,,,,,43.91311521,57,125572,32.14991946,58.57394185,45.3922849,,,,,,,,,,,,,47.88205179,34.6524783,64.49680953,,,,34.24330265,43,125572,24.78204792,46.12550394,,,,,,,,,,,,,37.18989523,26.68811091,50.45229223,,,,11.56069364,20,173000,7.061572015,17.8545537,,,,,,,,,,,,,10.4923537,5.997286713,17.03892506,,,,8.095238095,,2100,,,17,,0.8287182,16939,20440,,,0.429,,,,,29.37792983,,,,,0.800271739,8835,11040,0.770808953,0.829734526,0.126584638,1358,10728,0.096572484,0.156596792,0.905163044,9993,11040,0.882947934,0.927378153,24857,,,,,0.163897494,4074,24857,,,0.258880798,6435,24857,,,0.009936839,247,24857,,,0.014563302,362,24857,,,0.011264433,280,24857,,,0.001689665,42,24857,,,0.087299352,2170,24857,,,0.857907229,21325,24857,,,0.000503778,12,23820,0,0.005221645,0.492014322,12230,24857,,,0.600809389,14846,24710,, -08,121,08121,CO,Washington County,2024,1,11085.12922,92,13250,7721.198663,15416.73131,0,,,,2,,,,2,,,,2,,,,2,10266.4618,7022.252268,14493.18082,,,,,2,,0.152,,,0.129,0.179,3.841307177,,,2.987375881,4.760566678,5.264128957,,,4.249584121,6.411111519,0.067055394,23,343,0.040585402,0.093525385,1,,,,,,,,,,,,,0.07063197,0.040014137,0.101249804,,,,,,,0.172,,,0.138,0.209,0.28,,,0.215,0.354,7.5,0.139602758,0.09,,,0.196,,,0.157,0.24,0.420801329,2027,4817,,,0.188713737,,,0.151600171,0.232461404,0.333333333,7,21,0.216500607,0.449294301,,,,,,14.04212638,14,997,7.67696116,23.56030203,,,,,,,,,,,,,,,,,,,,,,0.101148168,370,3658,0.085658807,0.11663753,0.000617157,3,4861,,,1620.333333,0.000415628,2,4812,,,2406,0.000623441,3,4812,,,1604,2841,,,,,,,,,2890,0.33,,,,,,,,,0.32,0.12,,,,,,,,,0.12,0.905341246,3051,3370,0.883500013,0.92718248,0.677721088,797,1176,0.572962581,0.782479596,0.023222061,64,2756,,,0.17,184,,0.103276596,0.236723404,,,,,,,,,,0.081967213,0,0.222766058,0.11492891,0.052570531,0.177287289,3.918015065,112353,28676,3.163789428,4.672240702,0.188555347,201,1066,0.09565325,0.281457444,14.40032915,7,4861,,,142.9096403,35,24491,99.54180067,198.7527148,,,,,,,,,,,,,156.9410758,108.0310152,220.4036204,,,,5.2,,,,,1,,,,,0.149038462,310,2080,0.114751934,0.183324989,0.113310243,0.073499621,0.153120864,0.030769231,0.014200291,0.047338171,0.014423077,0.001969888,0.026876266,0.711615487,1599,2247,0.662013049,0.761217926,,,,,,,,,,,,,0.643686007,0.588814324,0.69855769,0.263,,2247,0.210223611,0.315776389,75.12293957,,,72.32215416,77.92372497,,,,,,,,,,,,,75.71310422,73.00220418,78.42400427,,,,507.0580711,92,13250,401.4426499,631.945647,,,,,,,,,,,,,502.9122606,390.5310487,637.5611251,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.116,,,0.099,0.134,0.169,,,0.145,0.193,0.081,,,0.068,0.095,,,,,,0.09,430,,,,0.139602758,672.0476779,4814,,,,,,,,,,,,,,,,,,,,,,,,,,0.303,,,0.287,0.318,0.116873065,302,2584,0.096617746,0.137128384,0.063492064,72,1134,0.042045255,0.084938872,0.000831255,4,4812,,,1203,,,,,,,,,,,2.94867965,,,,,,,,,2.987247607,2.987410891,,,,,,,,,3.081081867,0.072005752,,,,,-669.12142,,,,,0.745581641,39571,53074,0.641513217,0.849650064,61492,,,55716.85106,67267.14894,,,,,,,,,,47356,33653.87234,61058.12766,59880,53266.04255,66493.95745,,,,,,0.422826087,389,920,,,,,,,,0.290395499,,61492,,,28.16901409,6,213,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,40.86040335,14,34263,22.33876274,68.55681383,,,,,,,,,,,,,40.50769646,20.93091787,70.75879371,,,,,,500,,,-888,,0.809690444,3008,3715,,,0.586,,,,,48.51863003,,,,,0.702463054,1426,2030,0.660030677,0.744895432,0.126623377,234,1848,0.082041738,0.171205015,0.856650246,1739,2030,0.825847258,0.887453235,4812,,,,,0.22755611,1095,4812,,,0.222360765,1070,4812,,,0.013715711,66,4812,,,0.005195345,25,4812,,,0.006857855,33,4812,,,0.001454697,7,4812,,,0.113674148,547,4812,,,0.847880299,4080,4812,,,0.013695652,63,4600,0,0.030660782,0.471113882,2267,4812,,,1,4817,4817,, -08,123,08123,CO,Weld County,2024,1,6640.042852,3388,952007,6332.669175,6947.416529,0,8615.668347,4451.841558,15049.83873,1,6700.590361,4552.726059,9510.95316,,7277.761604,4796.090755,10588.76104,,7432.874152,6852.438256,8013.310047,,6238.92742,5864.704619,6613.150222,,,,,2,,0.145,,,0.124,0.169,3.569355782,,,2.911487731,4.267123267,4.724099386,,,4.0477083,5.436806516,0.084479626,2604,30824,0.081374913,0.08758434,0,,,,0.103053435,0.081798523,0.124308348,0.067241379,0.046859463,0.087623296,0.086126507,0.080968943,0.09128407,0.082370524,0.078285087,0.08645596,,,,0.104651163,0.072303343,0.136998983,0.144,,,0.116,0.177,0.287,,,0.248,0.331,8.4,0.059144194,0.087,,,0.184,,,0.155,0.219,0.814040933,267804,328981,,,0.190804179,,,0.162834327,0.219920219,0.320284698,90,281,0.290525875,0.350246177,420.8,1431,340036,,,18.34964827,1479,80601,17.41445854,19.284838,,,,19.06274821,12.21386247,28.3638583,14.40144014,8.231667375,23.38703654,31.91287879,29.94568803,33.88006955,8.830419896,7.956252925,9.704586866,,,,8.700380642,4.973019279,14.12887308,0.102770144,29991,291826,0.093238229,0.112302059,0.00057641,196,340036,,,1734.877551,0.00048547,170,350176,,,2059.858824,0.002849995,998,350176,,,350.8777555,1741,,,,,,,,2864,1633,0.42,,,,,0.55,0.43,0.33,0.26,0.44,0.49,,,,,0.18,0.44,0.3,0.31,0.52,0.883371064,190423,215564,0.875157808,0.89158432,0.65066388,63510,97608,0.628226473,0.673101288,0.032326122,5470,169213,,,0.097,8454,,0.067212766,0.126787234,0.144230769,0,0.295647059,0.151742994,0.026350516,0.277135472,0.409058232,0.28809723,0.530019233,0.181676879,0.153796965,0.209556794,0.063313795,0.051052595,0.075574995,3.971759354,155407,39128,3.786196747,4.157321961,0.190415102,16179,84967,0.168513416,0.212316789,6.264042631,213,340036,,,78.14774995,1264,1617449,73.83951864,82.45598125,149.1167699,79.39839976,254.9942179,37.30229782,17.88790173,68.60025381,86.88985433,50.61654214,139.1190739,63.52951854,56.43445519,70.62458188,86.45939265,80.83565144,92.08313386,,,,9,,,,,1,,,,,0.15659758,15980,102045,0.145857645,0.167337514,0.125906915,0.115192556,0.136621273,0.031309716,0.026704545,0.035914887,0.007496693,0.00538899,0.009604395,0.752207276,124983,166155,0.737466358,0.766948195,0.766164748,0.57146178,0.960867716,0.671347249,0.590173495,0.752521002,0.682471264,0.598752361,0.766190168,0.745184401,0.715782482,0.774586319,0.725287666,0.70713978,0.743435551,0.425,,166155,0.410070681,0.439929319,79.25934606,,,78.9260398,79.59265231,83.50392306,72.20676072,94.8010854,79.48451186,76.51958949,82.44943423,78.28933896,74.02105001,82.55762791,78.01222321,77.25168013,78.77276629,79.66260038,79.27661795,80.04858282,,,,323.5547342,3388,952007,312.5373215,334.5721469,322.8117841,194.3537815,504.1105882,312.6041762,231.2662905,413.2792991,333.8403715,220.0029084,485.7202133,371.488125,345.699815,397.276435,309.9738909,297.2406794,322.7071025,,,,48.18792231,182,377688,41.18694647,55.18889814,,,,,,,,,,51.0378822,40.2120462,63.88152023,43.82739797,35.24240356,53.87131292,,,,4.471918979,136,30412,3.720329757,5.223508202,,,,,,,,,,5.129589633,3.885101095,6.645978348,3.746181776,2.891224006,4.774816196,,,,,,,0.108,,,0.094,0.125,0.155,,,0.135,0.176,0.078,,,0.067,0.09,88.1,245,277974,,,0.087,28140,,,,0.059144194,14953.13081,252825,,,19.82952616,198,998511,17.06744897,22.59160336,,,,,,,,,,20.17676166,15.43362393,25.91789444,19.73345847,16.30137835,23.16553858,,,,0.29,,,0.277,0.301,0.126582771,26042,205731,0.113476388,0.139689154,0.04807383,4334,90153,0.037350426,0.058797234,0.000808165,283,350176,,,1237.371025,0.857474967,2568.995,2996,,,0.05892686,1107,18786,0.041177988,0.076675733,2.996350414,,,,,,2.958256066,2.856995966,2.678071385,3.291286529,2.957801871,,,,,,3.119473935,2.926334012,2.611208925,3.261589069,0.149323579,,,,,241.1922,,,,,0.765592323,51617,67421,0.736935623,0.794249023,90770,,,85901.57447,95638.42553,71705,34419.7234,108990.2766,71875,45532.3617,98217.6383,53051,35786.31915,70315.68085,68933,65264.40426,72601.59575,96838,94552.7234,99123.2766,,,,,,0.370356205,21304,57523,,,67.55772484,,,,,0.292717858,,90770,,,6.158071948,139,22572,,,3.139853155,69,2197555,2.44299317,3.973685123,,,,,,,,,,3.673201394,2.353489443,5.465432511,2.926225671,2.108966076,3.955407023,,,,17.83252732,282,1617449,15.72690719,19.93814746,17.43486193,,,,,,,,,,11.38643937,8.553843699,14.85683345,19.86835735,17.14682274,22.58989196,,,,12.42697606,201,1617449,10.7089747,14.14497742,,,,,,,,,,7.0129988,4.856705538,9.799962892,15.33035486,12.96228047,17.69842926,,,,15.74477089,346,2197555,14.0857404,17.40380138,,,,,,,,,,17.75380674,14.52294357,20.9846699,15.46719283,13.43253641,17.50184925,,,,10.1038961,,38500,,,389,,0.770459579,166974,216720,,,0.687,,,,,72.58714568,,,,,0.751592577,86836,115536,0.740796426,0.762388728,0.131882496,14932,113222,0.122252638,0.141512355,0.911776416,105343,115536,0.903286899,0.920265933,350176,,,,,0.252475898,88411,350176,,,0.129620534,45390,350176,,,0.013833044,4844,350176,,,0.016897217,5917,350176,,,0.020652472,7232,350176,,,0.001993283,698,350176,,,0.309889884,108516,350176,,,0.633638513,221885,350176,,,0.039098689,12070,308706,0.034454738,0.043742641,0.490559033,171782,350176,,,0.200136178,65841,328981,, -08,125,08125,CO,Yuma County,2024,1,6777.490523,122,27485,4946.167736,8608.813311,0,,,,2,,,,2,,,,2,,,,2,7633.315651,5211.925292,10054.70601,,,,,2,,0.161,,,0.135,0.189,3.7641885,,,2.993356223,4.616391133,5.113874798,,,4.145267977,6.143730307,0.06197479,59,952,0.046658542,0.077291038,0,,,,,,,,,,0.04859335,0.027280614,0.069906086,0.071038251,0.049549314,0.092527189,,,,,,,0.167,,,0.13,0.205,0.291,,,0.226,0.364,8.3,0.057969093,0.093,,,0.201,,,0.161,0.242,0.703744493,7029,9988,,,0.182119902,,,0.146896683,0.222564237,0.071428571,1,14,0.003307818,0.237195967,221.3,22,9941,,,21.37335152,47,2199,15.70433477,28.42202653,,,,,,,,,,38.2585752,25.62236826,54.94569583,13.22556943,7.83831064,20.90210159,,,,,,,0.16529449,1305,7895,0.142656192,0.187932788,0.000804748,8,9941,,,1242.625,0.000606122,6,9899,,,1649.833333,0.000909183,9,9899,,,1099.888889,2119,,,,,,,,,1978,0.33,,,,,,,,0.35,0.33,0.07,,,,,,,,,0.07,0.848334834,5655,6666,0.812510974,0.884158693,0.615287162,1457,2368,0.506696489,0.723877836,0.020209311,112,5542,,,0.169,457,,0.103468085,0.234531915,,,,,,,,,,0.417021277,0.209050849,0.624991704,0.066796368,0.021633035,0.111959702,4.161293607,122625,29468,3.529335293,4.79325192,0.153061225,405,2646,0.073793318,0.232329131,13.07715522,13,9941,,,93.80863039,47,50102,68.92705315,124.7455917,,,,,,,,,,,,,120.1463601,87.29852919,161.2908806,,,,5.1,,,,,0,,,,,0.125304136,515,4110,0.079950055,0.170658218,0.083128382,0.046317198,0.119939565,0.032846715,0.00048768,0.065205751,0.010705596,0,0.024063424,0.772363006,3566,4617,0.725929364,0.818796648,,,,,,,,,,0.787234043,0.676911038,0.897557047,0.781838015,0.732144079,0.831531951,0.182,,4617,0.129425743,0.234574257,78.99965845,,,77.22140862,80.77790828,,,,,,,,,,85.54871997,65.94057817,105.1568618,78.25842456,76.18498833,80.3318608,,,,344.4773262,122,27485,280.8428047,408.1118477,,,,,,,,,,,,,367.4599642,291.5633521,443.3565763,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.117,,,0.1,0.135,0.165,,,0.142,0.189,0.084,,,0.072,0.098,124.8,10,8014,,,0.093,930,,,,0.057969093,582.1835992,10043,,,,,,,,,,,,,,,,,,,,,,,,,,0.303,,,0.289,0.317,0.19456067,1023,5258,0.165964925,0.223156414,0.106897797,296,2769,0.074727584,0.13906801,0.000909183,9,9899,,,1099.888889,0.859444444,116.025,135,,,,,,,,3.236106964,,,,,,,,2.913205054,,3.133699559,,,,,,,,2.805984803,,0.060561066,,,,,-3646.238,,,,,0.837908787,45325,54093,0.706713476,0.969104097,56075,,,48084.87234,64065.12766,,,,,,,,,,38190,27846.68085,48533.31915,69633,59659.04255,79606.95745,,,,,,0.555617045,1004,1807,,,,,,,,0.303718235,,56075,,,9.655172414,7,725,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,27.00743415,19,70351,16.26023961,42.1754539,,,,,,,,,,,,,30.73553989,17.5680167,49.91259119,,,,,,1200,,,-888,,0.765718678,4981,6505,,,0.641,,,,,23.95421499,,,,,0.70806982,2799,3953,0.656593551,0.759546089,0.133121188,502,3771,0.084439092,0.181803284,0.874272704,3456,3953,0.837073521,0.911471888,9899,,,,,0.27497727,2722,9899,,,0.187190625,1853,9899,,,0.004949995,49,9899,,,0.012425498,123,9899,,,0.005758157,57,9899,,,0.002828569,28,9899,,,0.276391555,2736,9899,,,0.699464592,6924,9899,,,0.07445429,689,9254,0.045701924,0.103206656,0.48994848,4850,9899,,,1,9988,9988,, -09,000,09000,CT,Connecticut,2024,,6480.380156,40972,9897530,6382.702071,6578.05824,0,6140.420011,4277.027523,8539.837791,,2554.623882,2285.283853,2823.96391,,10227.29584,9860.167279,10594.42441,,6556.603171,6334.28377,6778.922572,,6187.69075,6066.086453,6309.295047,,,,,2,,0.118,,,0.108,0.128,2.867001009,,,2.647312241,3.086689777,4.385786843,,,4.128478126,4.64309556,0.078947046,19311,244607,0.077878405,0.080015687,0,0.088785047,0.050675874,0.126894219,0.089022714,0.084506846,0.093538582,0.125988701,0.122239236,0.129738166,0.084152588,0.081982351,0.086322826,0.064017306,0.062690843,0.065343768,,,,0.086922008,0.079143386,0.094700631,0.115,,,0.104,0.126,0.306,,,0.29,0.322,8.3,0.042683858,0.105,,,0.223,,,0.211,0.237,0.934733041,3370595,3605944,,,0.169663431,,,0.157356047,0.182724681,0.315455187,447,1417,0.30242904,0.328537453,409.1,14750,3605597,,,7.952857296,6590,828633,7.760841679,8.144872914,6.200676437,3.095355337,11.09472295,0.995145631,0.714133686,1.350027417,12.05614658,11.34816494,12.76412822,22.5127129,21.81328594,23.21213985,2.404219651,2.266807052,2.54163225,,,,9.509713229,8.347041987,10.67238447,0.060154899,172986,2875676,0.056580431,0.063729367,0.000827325,2983,3605597,,,1208.715052,0.000868095,3130,3605597,,,1151.947923,0.004577328,16504,3605597,,,218.4680684,2651,,,,,2657,1580,4075,3906,2488,0.47,,,,,0.45,0.38,0.36,0.35,0.48,0.54,,,,,0.36,0.49,0.35,0.37,0.56,0.912695623,2300714,2520790,0.910632972,0.914758275,0.705629177,631198,894518,0.697637271,0.713621082,0.041641655,80471,1932464,,,0.129,93263,,0.120659575,0.137340426,0.201239867,0.090794045,0.311685688,0.094692652,0.076075252,0.113310052,0.229148327,0.213879145,0.244417509,0.271192216,0.256041549,0.286342883,0.059053662,0.05464013,0.063467195,5.102605863,169182,33156,5.01867497,5.186536756,0.249056426,184567,741065,0.240763351,0.2573495,8.905598712,3211,3605597,,,79.59756135,14239,17888739,78.29013845,80.90498425,53.33333333,33.01417393,81.52566536,19.00074613,16.09267649,21.90881577,92.06419577,87.69672432,96.43166721,57.6559177,54.94759397,60.36424143,89.44943111,87.74172415,91.15713808,,,,7.4,,,,,0.875,,,,,0.172465688,238940,1385435,0.169493919,0.175437457,0.154776847,0.151740179,0.157813515,0.018427425,0.017325758,0.019529093,0.007549975,0.006877045,0.008222906,0.722251171,1298747,1798193,0.718576059,0.725926283,,,,,,,,,,,,,,,,0.345,,1791786,0.340234043,0.349765957,79.57109681,,,79.47916916,79.66302446,96.98828654,86.17220121,107.8043719,90.23879045,89.14316529,91.33441561,75.5277151,75.19814318,75.85728702,81.60571822,81.19442337,82.01701307,79.74276939,79.63459566,79.85094312,,,,313.208405,40972,9897530,310.0328449,316.383965,268.4003337,205.3049881,344.7714571,131.0811825,120.9226505,141.2397145,486.1073746,473.340654,498.8740951,309.9937031,300.9253774,319.0620289,303.9338167,300.1365484,307.731085,,,,35.68415783,1184,3317999,33.65154028,37.71677539,,,,23.10522698,16.5067129,31.46276129,75.8490368,67.10408902,84.59398457,41.40256937,37.02093329,45.78420546,27.28722646,24.87111243,29.70334049,,,,4.671657929,1145,245095,4.401060065,4.942255792,,,,3.780443475,2.823416009,4.957548654,10.22067364,9.079214853,11.36213242,5.604015399,5.012663707,6.195367091,3.192785213,2.888157403,3.497413024,,,,,,,0.083047969,,,0.075083205,0.091773794,0.133290292,,,0.122659081,0.144690977,0.093,,,0.084,0.101,342.5,10638,3106314,,,0.105,380310,,,,0.042683858,152556.2469,3574097,,,38.56303523,4137,10727890,37.387909,39.73816146,,,,5.532777893,3.705388189,7.945991968,50.03074714,45.89799973,54.16349455,36.68295339,33.9237388,39.44216799,40.41672933,38.92762879,41.90582986,,,,0.330091212,,,0.313515451,0.347100234,0.073181392,157719,2155179,0.068415435,0.07794735,0.022565107,17169,760865,0.017799149,0.027331064,0.001502109,5416,3605597,,,665.730613,0.897079431,36874.45,41105,,,0.045968592,9162,199310,0.041009397,0.050927786,3.180754633,,,,,,3.685819335,2.692430674,2.687559173,3.495431748,3.036665912,,,,,,3.749307914,2.45646308,2.518153617,3.376096835,0.219127332,,,,,7667.292,,,,,0.828322795,64060,77337,0.815436847,0.841208743,83628,,,82334.04255,84921.95745,43750,36145.91489,51354.08511,108485,104570.9575,112399.0426,54325,52661.68085,55988.31915,50912,49657.3617,52166.6383,95246,94396.46809,96095.53192,,,,,,0.399280437,197542,494745,,,61.31503921,,,,,0.397986819,,,,,8.730309879,,,,,3.272659164,820,25056077,3.048658182,3.496660146,,,,1.093126839,0.582044004,1.869280186,15.74522745,14.21174963,17.27870527,4.763324433,4.098153718,5.428495148,1.183059264,1.017851878,1.34826665,,,,10.37100898,2023,17888739,9.902771858,10.8392461,11.30879041,,,,4.131434465,2.877695481,5.745825223,7.594594362,6.338795695,8.85039303,5.013185269,4.170196588,5.85617395,12.61699294,11.96682493,13.26716096,,,,5.763402328,1031,17888739,5.411594356,6.1152103,,,,,,,16.39573258,14.55262746,18.2388377,4.106452495,3.383662667,4.829242323,4.990158017,4.586808346,5.393507687,,,,8.133755336,2038,25056077,7.780616821,8.486893851,,,,2.270340358,1.496168602,3.303226023,11.46874592,10.15998296,12.77750888,8.53529708,7.644892551,9.42570161,8.065221277,7.633866758,8.496575796,,,,,,,,,,,0.697242351,1823857,2615815,,,,,,,,217.1217346,,,,,0.661500475,932588,1409807,0.656460245,0.666540705,0.163430936,224711,1374960,0.160154977,0.166706895,0.900729674,1269855,1409807,0.897510309,0.90394904,3626205,,,,,0.201596435,731030,3626205,,,0.18292347,663318,3626205,,,0.107293162,389067,3626205,,,0.007365552,26709,3626205,,,0.05172653,187571,3626205,,,0.00114555,4154,3626205,,,0.181726902,658979,3626205,,,0.638607304,2315721,3626205,,,0.039874303,136711,3428549,0.038504718,0.041243887,0.510161726,1849951,3626205,,,0.137492707,495791,3605944,, -09,001,09001,CT,Fairfield County,2024,1,4999.015197,8281,2638117,4833.078013,5164.95238,0,,,,2,2629.796698,2132.582879,3127.010517,,8645.768392,8014.119526,9277.417257,,5186.467888,4840.375668,5532.560107,,4500.313948,4288.649455,4711.978441,,,,,2,,0.112,,,0.095,0.132,2.87202474,,,2.358526174,3.458067313,4.483278237,,,3.810220178,5.189609816,0.073961969,5107,69049,0.072009896,0.075914042,0,,,,0.08248977,0.074576386,0.090403153,0.130520118,0.12320717,0.137833066,0.077372058,0.07379363,0.080950486,0.056738848,0.054272648,0.059205047,,,,0.074972437,0.05783363,0.092111243,0.113,,,0.09,0.14,0.249,,,0.213,0.288,8.5,0.030183379,0.095,,,0.197,,,0.167,0.231,0.975046453,933528,957419,,,0.177016447,,,0.153586015,0.20222207,0.326086957,75,230,0.293152742,0.35920663,354.4,3401,959768,,,6.825773982,1557,228106,6.486724045,7.16482392,,,,,,,9.855697709,8.669053542,11.04234188,22.06196789,20.77844863,23.34548715,0.88109073,0.720748577,1.041432882,,,,5.308880309,3.654388927,7.455641774,0.073735935,57892,785126,0.067778489,0.079693382,0.000915846,879,959768,,,1091.886234,0.000940852,903,959768,,,1062.866002,0.003535229,3393,959768,,,282.8670793,2437,,,,,,1869,3818,3196,2222,0.49,,,,,,0.41,0.36,0.37,0.51,0.54,,,,,,0.51,0.33,0.37,0.57,0.904780497,597888,660810,0.901415178,0.908145815,0.732572095,169693,231640,0.722562212,0.742581977,0.041409957,20184,487419,,,0.113,23561,,0.09393617,0.13206383,0.054511278,0,0.141273777,0.104166667,0.067382199,0.140951135,0.211791014,0.178327339,0.24525469,0.262695175,0.23752384,0.287866511,0.040298659,0.03374098,0.046856338,5.932396217,225787,38060,5.734958737,6.129833696,0.201259862,42397,210658,0.187548787,0.214970937,9.127205741,876,959768,,,59.03862831,2798,4739270,56.85102549,61.22623113,,,,20.95696102,15.87259762,27.15217379,75.77293126,68.34718399,83.19867852,42.5581226,38.4634943,46.65275091,66.23946659,63.26956161,69.20937157,,,,8,,,,,1,,,,,0.204639638,70615,345070,0.19839744,0.210881837,0.18147829,0.17490847,0.18804811,0.02647289,0.023692058,0.029253721,0.00931695,0.007597351,0.01103655,0.652525079,311768,477787,0.645174449,0.65987571,,,,,,,,,,,,,,,,0.374,,475201,0.36381991,0.38418009,81.63525432,,,81.45653321,81.81397542,,,,91.86098767,89.58025566,94.14171967,77.50646973,76.87539299,78.13754648,84.18382444,83.39235887,84.97529001,81.93017525,81.71819181,82.1421587,,,,246.257647,8281,2638117,240.767167,251.7481271,,,,130.8244423,113.0662416,148.582643,416.9792198,395.0155587,438.9428809,247.7502737,233.7484386,261.7521088,228.2411061,221.5903475,234.8918646,,,,29.03895884,274,943560,25.60051582,32.47740185,,,,19.9894601,9.978666462,35.76666578,64.50949412,50.19223694,81.6408935,34.77893881,27.9303437,42.79847692,20.46722003,16.47555358,24.45888647,,,,3.827640202,264,68972,3.365913261,4.289367142,,,,,,,9.153038809,7.199445656,11.47341341,4.568165596,3.700228799,5.578512063,2.51285993,2.007183262,3.107190218,,,,,,,0.088,,,0.076,0.102,0.135,,,0.119,0.154,0.076,,,0.066,0.087,328.7,2684,816470,,,0.095,90860,,,,0.030183379,27672.99691,916829,,,24.1080208,686,2845526,22.30394172,25.91209988,,,,,,,35.56842398,29.03909925,42.0977487,22.32821128,18.53345241,26.12297014,24.70154245,22.35030107,27.05278383,,,,0.316,,,0.303,0.329,0.091771905,52998,577497,0.084622969,0.098920842,0.025182697,5517,219079,0.020416739,0.029948654,0.001261763,1211,959768,,,792.5417011,0.905056682,9819.865,10850,,,0.045429214,2364,52037,0.028133914,0.062724513,3.290688928,,,,,,3.87482708,2.657342284,2.777015541,3.672313878,3.143734059,,,,,,3.846037051,2.363844629,2.622539865,3.552311306,0.203643115,,,,,13115.18421,,,,,0.795224017,66169,83208,0.769105117,0.821342917,100703,,,97786.23404,103619.766,71528,48091.40426,94964.59575,136581,130791.5532,142370.4468,62128,58564.25532,65691.74468,56937,53386.3617,60487.6383,124242,121077.4043,127406.5957,,,,,,0.349723995,49480,141483,,,58.44985252,,,,,0.410097018,,100703,,,9.740638488,501,51434,,,2.880193018,191,6631500,2.471722251,3.288663785,,,,,,,13.24214004,10.73848351,16.15428785,3.657794648,2.706056617,4.835798507,0.981935095,0.701508828,1.3371169,,,,7.906859297,406,4739270,7.11370269,8.700015904,8.566720191,,,,4.497329923,2.323835998,7.855930306,5.629785626,3.825166194,7.991031313,3.383950156,2.343483855,4.728731161,9.908225248,8.743407737,11.07304276,,,,4.47326276,212,4739270,3.871101862,5.075423657,,,,,,,15.15458625,12.01664439,18.8611944,2.461192632,1.57693256,3.662059546,3.570206729,2.880712202,4.259701256,,,,5.63974968,374,6631500,5.068165633,6.211333726,,,,,,,7.644946827,5.774910675,9.927599351,6.569100593,5.268610767,8.09331566,5.326997888,4.618222336,6.03577344,,,,,,,,,,,0.740990087,472396,637520,,,0.683,,,,,297.2553429,,,,,0.662425101,233377,352307,0.656024522,0.66882568,0.193215566,66687,345143,0.185322045,0.201109086,0.919337396,323889,352307,0.915350753,0.923324039,959768,,,,,0.219511382,210680,959768,,,0.165251394,158603,959768,,,0.113594119,109024,959768,,,0.006688075,6419,959768,,,0.059602946,57205,959768,,,0.001170074,1123,959768,,,0.213267165,204687,959768,,,0.597598586,573556,959768,,,0.060188605,54596,907082,0.056586275,0.063790935,0.509806537,489296,959768,,,0.055481456,53119,957419,, -09,003,09003,CT,Hartford County,2024,1,6945.824951,10670,2470826,6744.430138,7147.219764,0,,,,2,2635.538271,2153.687664,3117.388878,,10043.45525,9402.155065,10684.75544,,8028.525033,7555.623969,8501.426098,,6388.023299,6129.927816,6646.118782,,,,,2,,0.133,,,0.113,0.154,3.268095742,,,2.703613024,3.913067265,4.958169572,,,4.271756892,5.764970704,0.085559646,5438,63558,0.083385028,0.087734265,0,,,,0.096624629,0.088738586,0.104510673,0.12817734,0.121673906,0.134680774,0.091806634,0.087415422,0.096197846,0.065730356,0.062928314,0.068532398,,,,0.084405145,0.068956798,0.099853492,0.132,,,0.107,0.159,0.334,,,0.294,0.381,8.2,0.036661013,0.107,,,0.243,,,0.211,0.28,0.960106637,863614,899498,,,0.157531278,,,0.137040297,0.182261393,0.338150289,117,346,0.311634702,0.364734625,509.4,4569,896854,,,9.757439029,1916,196363,9.320526835,10.19435122,,,,1.454942257,0.831625212,2.362735073,12.94623959,11.62169471,14.27078448,24.4477113,23.0724509,25.8229717,2.40394167,2.101060472,2.706822867,,,,10.99952176,8.558284482,13.92059877,0.055458964,39968,720677,0.050693007,0.060224922,0.000948872,851,896854,,,1053.882491,0.001075983,965,896854,,,929.3823834,0.005960836,5346,896854,,,167.761691,2739,,,,,,1354,3564,4761,2520,0.46,,,,,,0.35,0.38,0.37,0.48,0.55,,,,,0.49,0.5,0.35,0.39,0.58,0.906288208,567795,626506,0.902677607,0.909898809,0.719125115,170081,236511,0.708884659,0.72936557,0.042617435,20621,483863,,,0.138,25537,,0.115361702,0.160638298,0.162162162,0,0.328669431,0.083026126,0.04961447,0.116437782,0.221505451,0.193347528,0.249663373,0.301978073,0.276783769,0.327172378,0.050827924,0.041535938,0.06011991,5.127904339,158242,30859,4.966985482,5.288823196,0.280481879,53107,189342,0.264209878,0.296753881,9.756326002,875,896854,,,83.92513466,3748,4465885,81.23825431,86.61201501,,,,18.28529634,13.48213406,24.24365012,86.86747531,79.40106936,94.33388127,75.25029682,69.37413139,81.12646225,94.44278198,90.76118447,98.1243795,,,,7.7,,,,,1,,,,,0.163648188,57875,353655,0.157224597,0.170071779,0.146173257,0.140249299,0.152097215,0.016838444,0.014847002,0.018829887,0.007606283,0.006393966,0.0088186,0.741453871,333133,449297,0.735324698,0.747583045,,,,,,,,,,,,,,,,0.285,,444943,0.275847997,0.294152003,78.83827093,,,78.65511973,79.02142213,94.77030925,68.42104181,121.1195767,88.29794598,86.63446313,89.96142883,75.74742038,75.16751089,76.32732987,79.20880273,78.51449472,79.90311074,79.27636237,79.05308729,79.49963746,,,,333.5945668,10670,2470826,327.01247,340.1766636,,,,138.356935,118.4417496,158.2721205,473.5407529,451.4610556,495.6204503,375.2541984,356.5149925,393.9934043,315.1935626,307.1271546,323.2599706,,,,41.28730218,345,835608,36.93054827,45.64405609,,,,28.48394218,16.28103406,46.25613757,78.71268248,63.83068299,96.02279741,48.93009113,39.86811144,57.99207083,29.87971499,24.46544896,35.29398103,,,,5.415388468,346,63892,4.844767616,5.98600932,,,,4.567157982,2.862213592,6.914732071,10.50461418,8.514196186,12.49503217,6.986634265,5.709680536,8.263587994,3.258722844,2.648529126,3.967378135,,,,,,,0.096,,,0.083,0.11,0.156,,,0.138,0.177,0.099,,,0.087,0.113,398.5,3060,767869,,,0.107,95800,,,,0.036661013,32775.45895,894014,,,42.79632534,1146,2677800,40.31850255,45.27414813,,,,6.191145424,2.968894878,11.38573687,47.18100399,40.10928175,54.25272623,50.0883394,43.95251782,56.22416097,44.04881037,40.78329549,47.31432525,,,,0.354,,,0.341,0.366,0.067766779,36385,536915,0.060617843,0.074915715,0.020764621,4023,193743,0.015998664,0.025530579,0.001957955,1756,896854,,,510.7369021,0.888445241,11405.86,12838,,,0.04741209,2280,48089,0.029470384,0.065353796,3.090408039,,,,,,3.671395255,2.679367118,2.528519463,3.471515763,2.948612813,,,,,,3.821260304,2.50574523,2.34222636,3.358936209,0.21110974,,,,,9950.724793,,,,,0.827202495,58355,70545,0.803830441,0.850574549,79958,,,77764.46809,82151.53192,32120,21531.23404,42708.76596,109747,103587,115907,54494,50765.82979,58222.17021,45031,41995.08511,48066.91489,93373,91571.46809,95174.53192,,,,,,0.427273077,55475,129835,,,59.62980037,,,,,0.429888191,,79958,,,7.353868135,350,47594,,,4.189241803,262,6254115,3.681969846,4.69651376,,,,,,,16.10991289,13.38221125,18.83761452,6.608643932,5.206859762,8.271703349,1.265593162,0.933148491,1.677992922,,,,10.22472997,499,4465885,9.298444254,11.15101569,11.17359717,,,,,,,6.29077806,4.429288303,8.671008898,6.178754051,4.453102445,8.351880517,13.17957763,11.7907034,14.56845187,,,,6.090618097,272,4465885,5.366794082,6.814442112,,,,,,,14.19949116,11.34204921,17.55789071,6.091690695,4.535663844,8.009448257,4.931347793,4.090079078,5.772616509,,,,8.010725738,501,6254115,7.309255788,8.712195689,,,,,,,12.50321597,10.10017523,14.90625672,9.652098375,7.856470571,11.44772618,7.224427636,6.368998112,8.079857159,,,,,,,,,398,177,0.687704799,449336,653385,,,0.703,,,,,231.6002127,,,,,0.642586081,230459,358643,0.636585859,0.648586304,0.153800965,53671,348964,0.147032338,0.160569592,0.893303369,320377,358643,0.888552367,0.89805437,896854,,,,,0.208051701,186592,896854,,,0.176742257,158512,896854,,,0.136925297,122802,896854,,,0.00646259,5796,896854,,,0.062779449,56304,896854,,,0.001274455,1143,896854,,,0.19446755,174409,896854,,,0.586014,525569,896854,,,0.040843274,34737,850495,0.038013942,0.043672605,0.511155662,458432,896854,,,0.057810023,52000,899498,, -09,005,09005,CT,Litchfield County,2024,1,7151.920051,2489,494295,6662.638149,7641.201954,0,,,,2,,,,2,8834.807302,5916.809107,12688.257,,5240.193587,3958.385921,6804.827245,,7491.067221,6936.321225,8045.813217,,,,,2,,0.108,,,0.09,0.13,2.997568791,,,2.363134318,3.707546003,4.735835964,,,3.94667116,5.596433417,0.063496871,629,9906,0.058694699,0.068299042,0,,,,0.07826087,0.04354976,0.112971979,0.098290598,0.060145615,0.136435582,0.053019146,0.041101427,0.064936865,0.063770678,0.05838894,0.069152416,,,,,,,0.127,,,0.098,0.16,0.269,,,0.226,0.314,8.4,0.033720153,0.1,,,0.179,,,0.147,0.217,0.811146631,150213,185186,,,0.172707896,,,0.147069218,0.201421103,0.333333333,33,99,0.282314542,0.384507375,190.8,353,185000,,,4.575033389,161,35191,3.86832963,5.281737148,,,,,,,,,,14.09921671,10.59176553,18.39641942,3.239515118,2.614706797,3.968624879,,,,,,,0.052551649,7509,142888,0.045402713,0.059700585,0.000551351,102,185000,,,1813.72549,0.000643243,119,185000,,,1554.621849,0.003037838,562,185000,,,329.1814947,2447,,,,,,,,1815,2481,0.45,,,,,,0.38,0.4,0.31,0.45,0.54,,,,,,0.51,0.5,0.46,0.54,0.938662748,127752,136100,0.930644584,0.946680912,0.68970417,29609,42930,0.662238721,0.717169618,0.038521805,4081,105940,,,0.101,3255,,0.072404255,0.129595745,,,,0.206330598,0.068009786,0.34465141,0.225080386,0.079656804,0.370503968,0.235744261,0.169869022,0.301619499,0.072536425,0.055013424,0.090059426,4.171171171,157883,37851,3.903756482,4.43858586,0.215025686,7576,35233,0.18175503,0.248296342,9.081081081,168,185000,,,89.95508852,817,908231,83.78671338,96.12346366,,,,,,,144.2096683,91.41655926,216.3853088,36.94126339,23.6689645,54.96567171,96.23135832,89.40756275,103.0551539,,,,5,,,,,0,,,,,0.141455274,10595,74900,0.128408523,0.154502024,0.130341016,0.117736282,0.142945751,0.011014686,0.007675412,0.01435396,0.007009346,0.004544137,0.009474554,0.771730747,73042,94647,0.758990976,0.784470517,,,,,,,,,,,,,,,,0.416,,94762,0.395639821,0.436360179,78.99641991,,,78.57549607,79.41734375,,,,91.51117665,84.25319472,98.76915858,76.14708873,73.24170147,79.05247599,84.92165266,81.27592594,88.56737937,78.639438,78.18067919,79.0981968,,,,328.9531617,2489,494295,314.6170595,343.2892638,,,,,,,460.9591774,345.2900556,602.9459535,225.3412474,175.6645573,284.7051096,339.8471563,324.1001925,355.59412,,,,41.58032973,60,144299,31.73017204,53.52212656,,,,,,,,,,,,,42.33513552,31.21458694,56.13024773,,,,3.548256286,35,9864,2.471490511,4.934765548,,,,,,,,,,,,,2.982477942,1.910929894,4.437690766,,,,,,,0.089,,,0.075,0.106,0.145,,,0.124,0.167,0.074,,,0.063,0.087,163.6,267,163244,,,0.1,18480,,,,0.033720153,6404.367406,189927,,,40.92171108,223,544943,35.55068298,46.29273918,,,,,,,,,,,,,43.34450423,37.41097371,49.27803476,,,,0.33,,,0.313,0.347,0.061167009,6754,110419,0.051635094,0.070698924,0.024725434,851,34418,0.017576498,0.031874371,0.000745946,138,185000,,,1340.57971,0.911074681,1500.54,1647,,,,,,,,3.346772512,,,,,,3.525386251,2.980266659,2.977968728,3.421668731,3.212485445,,,,,,3.508057277,2.722312731,2.893220501,3.274294121,0.083952483,,,,,16076.81805,,,,,0.831853834,54726,65788,0.793999087,0.86970858,84689,,,79588.23404,89789.76596,40192,16922.21277,63461.78723,93277,81587.29787,104966.7021,78647,62297.38298,94996.61702,65430,42294.85106,88565.14894,87015,83522.74468,90507.25532,,,,,,0.367459562,7724,21020,,,51.78028203,,,,,0.370520375,,84689,,,9.056306602,69,7619,,,1.490891828,19,1274405,0.897614272,2.328212269,,,,,,,,,,,,,1.516117669,0.883194413,2.427451256,,,,13.88724304,137,908231,11.38884451,16.38564157,15.08426821,,,,,,,,,,,,,14.45155917,11.68120513,17.22191322,,,,6.606248851,60,908231,5.041263836,8.503551784,,,,,,,,,,,,,7.431479242,5.65718632,9.586066778,,,,10.98551873,140,1274405,9.165764985,12.80527248,,,,,,,,,,,,,11.593841,9.600820636,13.58686135,,,,,,,,,,,0.752871994,107544,142845,,,0.681,,,,,55.72781744,,,,,0.755272698,57082,75578,0.743308917,0.76723648,0.142793129,10516,73645,0.128088059,0.1574982,0.906665961,68524,75578,0.897671671,0.915660252,185000,,,,,0.176562162,32664,185000,,,0.227940541,42169,185000,,,0.019902703,3682,185000,,,0.003821622,707,185000,,,0.021881081,4048,185000,,,0.000891892,165,185000,,,0.081302703,15041,185000,,,0.860794595,159247,185000,,,0.016387522,2904,177208,0.011829992,0.020945052,0.501183784,92719,185000,,,0.454812999,84225,185186,, -09,007,09007,CT,Middlesex County,2024,1,5772.114081,1914,444237,5328.241687,6215.986475,0,,,,2,,,,2,11880.76298,9220.436581,14541.08937,,3999.844896,2830.528307,5490.099626,,5815.274421,5308.253568,6322.295273,,,,,2,,0.104,,,0.086,0.124,3.043532102,,,2.432900825,3.725800151,4.921620729,,,4.151794476,5.723826735,0.070775747,635,8972,0.065469176,0.076082317,0,,,,0.078571429,0.052838182,0.104304676,0.101532567,0.075622134,0.127443,0.085279188,0.067836887,0.102721488,0.064374543,0.058556259,0.070192827,,,,0.108247423,0.064526816,0.151968029,0.123,,,0.094,0.155,0.31,,,0.264,0.358,8.4,0.057770321,0.088,,,0.182,,,0.149,0.217,0.958744558,157469,164245,,,0.181884219,,,0.155453187,0.211211217,0.292307692,19,65,0.228029463,0.358136737,267.1,440,164759,,,3.122173266,107,34271,2.530582777,3.713763755,,,,,,,8.662696264,4.951479401,14.06767601,11.59511125,8.164028382,15.98233348,1.898047722,1.404186154,2.509319747,,,,,,,0.042295641,5332,126065,0.036338194,0.048253088,0.000782962,129,164759,,,1277.20155,0.000782962,129,164759,,,1277.20155,0.004843438,798,164759,,,206.4649123,2516,,,,,,1673,5547,1701,2443,0.48,,,,,,0.47,0.36,0.26,0.49,0.57,,,,,,0.45,0.36,0.39,0.58,0.951744789,115696,121562,0.945132059,0.958357518,0.770403006,29726,38585,0.741602363,0.79920365,0.036191379,3438,94995,,,0.079,2151,,0.052787234,0.105212766,,,,0.067906977,0,0.167364564,0.159775396,0.071222917,0.248327874,0.134710234,0.059840032,0.209580437,0.04716669,0.03429948,0.060033901,4.415800956,170026,38504,4.144339997,4.687261915,0.192304962,5418,28174,0.162776485,0.22183344,10.01462743,165,164759,,,84.17756312,686,814944,77.8782911,90.47683514,,,,,,,104.6337818,75.41082644,141.4344763,48.04138951,31.38223063,70.3917666,90.07030201,82.92834741,97.21225661,,,,7.7,,,,,1,,,,,0.138419538,9380,67765,0.125737194,0.151101882,0.128659763,0.115085591,0.142233935,0.007599793,0.004811739,0.010387848,0.004500849,0.002117593,0.006884104,0.752285773,66317,88154,0.737604987,0.766966558,,,,,,,,,,,,,,,,0.419,,86609,0.393724694,0.444275306,80.54525321,,,80.12308961,80.96741681,,,,98.84498515,87.08965023,110.6003201,73.7739304,71.55849296,75.98936783,84.2682226,81.37434245,87.16210275,80.4772291,80.01708418,80.93737401,,,,284.2348187,1914,444237,270.4124969,298.0571405,,,,,,,534.7746047,447.5314283,622.0177811,210.3305641,157.5520257,275.1175565,284.1024551,268.9354588,299.2694513,,,,28.75215641,37,128686,20.24417152,39.63106021,,,,,,,,,,,,,28.12587893,18.53513144,40.92167718,,,,3.881126636,35,9018,2.703346907,5.397707626,,,,,,,,,,,,,3.331884688,2.11212908,4.999462972,,,,,,,0.088,,,0.074,0.102,0.146,,,0.126,0.168,0.076,,,0.064,0.088,211.3,309,146242,,,0.088,14430,,,,0.057770321,9571.155645,165676,,,35.3890339,173,488852,30.11550019,40.66256761,,,,,,,48.91769598,25.27648734,85.44937038,33.01815999,16.4825465,59.07860878,36.78649022,30.87970348,42.69327696,,,,0.302,,,0.287,0.318,0.048815863,4813,98595,0.040475437,0.057156288,0.02001508,584,29178,0.014057633,0.025972527,0.001238172,204,164759,,,807.6421569,0.948395619,1471.91,1552,,,,,,,,3.341316777,,,,,,3.576261175,2.70237739,2.939298903,3.462989244,3.17468159,,,,,,3.511766242,2.401050709,2.618703437,3.341532441,0.11305384,,,,,15304.60079,,,,,0.862463339,64401,74671,0.815234623,0.909692055,94735,,,90255,99215,27348,17452.68085,37243.31915,69234,55142.25532,83325.74468,53076,47100.68085,59051.31915,63076,55776.93617,70375.06383,95908,92618.29787,99197.70213,,,,,,0.27176781,5047,18571,,,63.46597853,,,,,0.362833166,,94735,,,11.76650367,77,6544,,,1.750798364,20,1142336,1.069433125,2.703966075,,,,,,,,,,,,,,,,,,,12.45815624,118,814944,10.08079939,14.83551309,14.47952252,,,,,,,,,,,,,13.55472718,10.80033656,16.3091178,,,,5.39914399,44,814944,3.923026289,7.2480988,,,,,,,,,,,,,5.749168213,4.088220616,7.859302208,,,,10.06709059,115,1142336,8.227118958,11.90706223,,,,,,,19.67060675,9.819496016,35.19614906,,,,9.958906407,8.057349994,12.17424665,,,,,,,,,,,0.767162909,99198,129305,,,0.714,,,,,102.465498,,,,,0.745175254,51470,69071,0.731886996,0.758463513,0.127278093,8625,67765,0.113236587,0.141319599,0.903577478,62411,69071,0.892730932,0.914424024,164759,,,,,0.168197185,27712,164759,,,0.216649773,35695,164759,,,0.051432699,8474,164759,,,0.003089361,509,164759,,,0.033108965,5455,164759,,,0.000758684,125,164759,,,0.071437676,11770,164759,,,0.823578682,135692,164759,,,0.014757005,2339,158501,0.010326726,0.019187284,0.509574591,83957,164759,,,0.291978447,47956,164245,, -09,009,09009,CT,New Haven County,2024,1,7362.118013,10891,2370591,7149.359944,7574.876081,0,,,,2,2558.609823,1907.346291,3209.873355,,11779.44555,11061.78368,12497.10742,,7375.737675,6921.953252,7829.522098,,6694.184372,6430.590819,6957.777924,,,,,2,,0.13,,,0.11,0.151,3.189822955,,,2.621616161,3.857186927,4.693671167,,,4.014815926,5.445485766,0.082848231,4967,59953,0.080641686,0.085054776,0,,,,0.090997725,0.08083547,0.10115998,0.123424092,0.116788375,0.130059808,0.086676177,0.082510464,0.09084189,0.065695495,0.062808055,0.068582936,,,,0.090668432,0.076190283,0.10514658,0.148,,,0.119,0.179,0.314,,,0.274,0.364,8,0.048752355,0.11,,,0.241,,,0.206,0.279,0.957320183,827924,864835,,,0.157321033,,,0.135887113,0.182781,0.271356784,108,398,0.246195361,0.296962167,511.3,4416,863700,,,10.05557288,2032,202077,9.618351851,10.4927939,,,,,,,14.20147249,12.82174841,15.58119657,24.11224871,22.76306371,25.46143371,2.844694786,2.523322442,3.16606713,,,,12.84796574,10.24804065,15.90665582,0.059823406,41058,686320,0.053865959,0.065780853,0.000854463,738,863700,,,1170.325203,0.00077689,671,863700,,,1287.183309,0.00500521,4323,863700,,,199.7918112,2892,,,,,,1443,4755,4389,2652,0.44,,,,,,0.31,0.32,0.3,0.46,0.53,,,,,0.24,0.47,0.36,0.34,0.56,0.904331028,544892,602536,0.900400942,0.908261114,0.666216384,144996,217641,0.655120979,0.677311789,0.043063394,20372,473070,,,0.155,26492,,0.128787234,0.181212766,0.243107769,0,0.573724851,0.106812933,0.061762383,0.151863483,0.250719277,0.217883058,0.283555496,0.272489921,0.242895267,0.302084576,0.069613622,0.057785228,0.081442017,5.135373251,151550,29511,4.939459358,5.331287144,0.289356448,50857,175759,0.2710252,0.307687696,7.873104087,680,863700,,,91.01169184,3903,4288460,88.15637713,93.86700656,,,,16.4724745,11.11390937,23.5154816,107.4777655,98.87775319,116.0777779,64.70614757,59.20245262,70.20984252,103.161641,99.28683027,107.0364517,,,,7.9,,,,,1,,,,,0.186422851,62035,332765,0.179364761,0.193480941,0.167853123,0.160688261,0.175017985,0.019908945,0.017086611,0.022731279,0.007152195,0.005704712,0.008599677,0.731101817,310458,424644,0.723817926,0.738385708,,,,,,,,,,,,,,,,0.338,,423971,0.326509693,0.349490307,78.54543879,,,78.35483062,78.73604696,,,,90.71705336,88.09995695,93.33414976,73.71255758,73.12396003,74.30115513,80.59650463,79.80594308,81.38706618,79.06823401,78.84095825,79.29550976,,,,351.0739518,10891,2370591,344.1704529,357.9774508,,,,121.8863431,100.7538777,143.0188084,562.4955364,537.171546,587.8195268,344.041584,325.3941615,362.6890066,330.8095801,322.4617484,339.1574118,,,,40.18543614,317,788843,35.76163978,44.60923249,,,,,,,84.43521286,67.88591114,100.9845146,47.20260215,38.38144276,56.02376154,24.53458433,19.75371685,30.12303283,,,,5.551492587,334,60164,4.956114835,6.146870339,,,,,,,11.15241636,9.019222145,13.28561057,5.607149115,4.541808785,6.847288768,3.731859019,3.028026348,4.43569169,,,,,,,0.094,,,0.081,0.108,0.14,,,0.123,0.16,0.092,,,0.081,0.106,449.4,3348,745020,,,0.11,94880,,,,0.048752355,42047.78498,862477,,,48.28032936,1241,2570405,45.59411662,50.96654211,,,,,,,61.91366287,53.53966354,70.28766221,42.59863566,36.90443809,48.29283322,51.43624848,47.88077591,54.99172105,,,,0.364,,,0.352,0.376,0.072794887,37584,516300,0.065645951,0.079943823,0.021700766,3898,179625,0.016934808,0.026466723,0.00185018,1598,863700,,,540.4881101,0.878361196,7723.43,8793,,,0.04824481,2368,49083,0.029910059,0.06657956,3.048213859,,,,,,,2.702842234,2.697327793,3.384105226,2.907543638,,,,,,3.622309111,2.463817176,2.541938437,3.283149818,0.220042384,,,,,10441.81456,,,,,0.840035226,56279,66996,0.817523166,0.862547286,75094,,,72081.91489,78106.08511,,,,96369,79339.04255,113398.9575,50652,47538.6383,53765.3617,48229,45087.04255,51370.95745,87804,86457.61702,89150.38298,,,,,,0.468755679,54168,115557,,,59.80254985,,,,,0.451913602,,75094,,,8.404313157,371,44144,,,4.379825823,263,6004805,3.850485428,4.909166218,,,,,,,19.29337059,16.19544456,22.39129662,5.535521531,4.244052617,7.096288779,1.150336085,0.832503929,1.549495158,,,,10.37754706,485,4288460,9.421743585,11.33335054,11.3094211,,,,,,,9.338488915,6.93120647,12.31163344,5.978176606,4.343752274,8.025423059,12.3244206,10.97934631,13.66949489,,,,6.832289447,293,4288460,6.049962088,7.614616805,,,,,,,21.3164235,17.48643976,25.14640724,5.849143283,4.312696519,7.755115403,4.697775793,3.870905261,5.524646324,,,,8.992798267,540,6004805,8.234300962,9.751295573,,,,,,,13.07805658,10.52747865,15.6286345,10.53534743,8.634427037,12.43626782,8.373376622,7.445725812,9.301027432,,,,,,,,,560,291,0.656978718,417983,636220,,,0.671,,,,,262.0207421,,,,,0.619635258,211844,341885,0.613033827,0.626236688,0.175172704,58195,332215,0.167489187,0.182856222,0.886210275,302982,341885,0.881042296,0.891378255,863700,,,,,0.199712863,172492,863700,,,0.18085099,156201,863700,,,0.134066227,115793,863700,,,0.006813709,5885,863700,,,0.044400834,38349,863700,,,0.00115202,995,863700,,,0.201679982,174191,863700,,,0.599606345,517880,863700,,,0.039847381,32772,822438,0.036779431,0.04291533,0.515569063,445297,863700,,,0.051547405,44580,864835,, -09,011,09011,CT,New London County,2024,1,7306.314893,3505,734569,6928.454592,7684.175193,0,10777.6958,6160.384378,17502.30275,1,2959.57667,2024.348252,4178.039202,,11824.64733,9873.592841,13775.70182,,5449.828057,4567.917991,6331.738122,,7655.888189,7191.8785,8119.897878,,,,,2,,0.118,,,0.099,0.14,3.156688583,,,2.57733151,3.860633071,4.974899116,,,4.250728266,5.810320217,0.074916539,1324,17673,0.071035212,0.078797867,0,0.164179105,0.075476939,0.25288127,0.078877005,0.059560023,0.098193988,0.118733509,0.099930987,0.137536032,0.086359176,0.076401675,0.096316676,0.06594422,0.061485765,0.070402675,,,,0.092391304,0.071470324,0.113312285,0.147,,,0.117,0.179,0.31,,,0.265,0.361,7.8,0.076796184,0.109,,,0.195,,,0.163,0.232,0.887490458,238340,268555,,,0.182413483,,,0.155304354,0.213431119,0.356060606,47,132,0.312683789,0.399271557,320.7,862,268805,,,7.976482819,445,55789,7.235364583,8.717601056,,,,,,,12.2591944,8.835349017,16.57086946,18.8101025,16.046744,21.57346101,4.73034295,4.023399824,5.437286076,,,,12.79441698,9.296442965,17.17590761,0.050626459,10627,209910,0.043477523,0.057775395,0.000598947,161,268805,,,1669.596273,0.000788676,212,268805,,,1267.948113,0.004341437,1167,268805,,,230.3384747,2839,,,,,3092,689,5358,3880,2764,0.49,,,,,0.5,0.38,0.45,0.38,0.5,0.52,,,,,0.25,0.39,0.33,0.31,0.54,0.931178349,178776,191989,0.925307616,0.937049081,0.69161496,44697,64627,0.670584564,0.712645355,0.042266034,5709,135073,,,0.122,6212,,0.089829787,0.154170213,0.053497942,0,0.223138527,0.075290551,0.012869793,0.137711308,0.270857814,0.169767957,0.371947672,0.243721574,0.197344499,0.290098649,0.085205582,0.065663083,0.104748081,4.321366981,150349,34792,4.069310007,4.573423955,0.250081208,13088,52335,0.223168098,0.276994317,8.92840535,240,268805,,,93.27051371,1245,1334827,88.0894878,98.45153962,112.96244,58.36934114,197.3226494,26.55008231,14.85987952,43.79032315,116.7580616,93.76631089,143.6808417,43.88793946,33.9429292,55.83621981,105.7260086,99.3521795,112.0998377,,,,6.5,,,,,1,,,,,0.134744332,14770,109615,0.12552178,0.143966885,0.121035212,0.111436796,0.130633628,0.012270219,0.008954069,0.015586368,0.008347398,0.005360602,0.011334193,0.769073421,102266,132973,0.758568944,0.779577898,,,,,,,,,,,,,,,,0.3,,135206,0.283234259,0.316765741,78.64219973,,,78.3068193,78.97758015,85.03629238,73.28837597,96.78420879,89.78090525,86.28586104,93.27594946,73.98012056,72.34169249,75.61854863,82.2788781,80.23445345,84.32330274,78.26047818,77.87429296,78.6466634,,,,352.2472853,3505,734569,339.8172971,364.6772735,414.42899,270.7187755,607.2344916,147.2825,111.2556177,191.258577,536.684114,468.540802,604.827426,288.1109739,245.9115223,330.3104254,364.0600801,349.5900952,378.530065,,,,32.22646179,75,232728,25.34815652,40.39614892,,,,,,,68.13845735,32.67503881,125.3090491,,,,36.21999891,27.13126465,47.37665035,,,,4.064811156,72,17713,3.180464387,5.118956927,,,,,,,,,,,,,3.412117177,2.448594197,4.628922234,,,,,,,0.093,,,0.08,0.108,0.152,,,0.132,0.174,0.087,,,0.075,0.1,246.4,575,233404,,,0.109,29440,,,,0.076796184,21046.37825,274055,,,47.30854432,378,799010,42.53929797,52.07779068,,,,,,,81.16348959,57.14658689,111.8731791,40.96902526,28.99212063,56.23318806,49.35221027,43.71078274,54.99363781,,,,0.344,,,0.327,0.359,0.060396927,9574,158518,0.050865012,0.069928841,0.021783602,1182,54261,0.015826155,0.027741048,0.001112331,299,268805,,,899.0133779,0.915036585,2626.155,2870,,,,,,,,3.269445843,,,,,,3.497340073,2.793842693,2.716568716,3.492948479,3.157371173,,,,,,3.597236786,2.484589501,2.497064824,3.412397337,0.138161519,,,,,10777.46763,,,,,0.75410451,52270,69314,0.720473617,0.787735403,78552,,,74274.55319,82829.44681,54079,18303.34043,89854.65957,91521,77917.76596,105124.234,44477,38587.46809,50366.53192,54801,47791.46809,61810.53192,83329,80577.85106,86080.14894,,,,,,0.405618107,14122,34816,,,52.69188292,,,,,0.362931561,,78552,,,8.025068786,105,13084,,,2.184929211,41,1876491,1.567942925,2.964103189,,,,,,,11.19058499,5.782338561,19.54769991,,,,1.70155806,1.090220356,2.531783516,,,,12.59752317,179,1334827,10.6615884,14.53345794,13.40997747,,,,,,,13.17602466,6.024917491,25.01219907,,,,14.41543292,11.97521833,16.8556475,,,,5.768537796,77,1334827,4.552439818,7.209682491,,,,,,,14.43077165,7.203789215,25.82063668,,,,6.101500969,4.667164779,7.837633249,,,,9.006171626,169,1876491,7.648318058,10.36402519,,,,,,,11.19058499,5.782338561,19.54769991,5.815446796,3.004926221,10.15841522,9.64216234,8.021617485,11.2627072,,,,,,,,,,,0.677393372,139604,206090,,,0.698,,,,,90.95186837,,,,,0.683069734,74846,109573,0.671985353,0.694154115,0.134354628,14427,107380,0.123202391,0.145506866,0.905195623,99185,109573,0.897225975,0.913165271,268805,,,,,0.191279924,51417,268805,,,0.192864716,51843,268805,,,0.057093432,15347,268805,,,0.013109875,3524,268805,,,0.043328807,11647,268805,,,0.001510389,406,268805,,,0.120079612,32278,268805,,,0.740867915,199149,268805,,,0.023270677,5935,255042,0.019176462,0.027364892,0.495876193,133294,268805,,,0.296777197,79701,268555,, -09,013,09013,CT,Tolland County,2024,1,5631.92838,1511,419913,5184.768059,6079.088701,0,,,,2,2176.493461,1267.887647,3484.776871,1,7350.247833,4843.859637,10694.2247,,2846.486659,1762.020106,4351.157227,1,6126.690926,5601.310439,6652.071414,,,,,2,,0.107,,,0.089,0.126,3.07242026,,,2.43027524,3.74472755,4.700356799,,,3.93857688,5.495248344,0.074790537,607,8116,0.069067476,0.080513599,0,,,,0.08373591,0.061949961,0.105521859,0.101851852,0.068918039,0.134785665,0.101123596,0.077448688,0.124798503,0.0696875,0.063449319,0.075925681,,,,0.087591241,0.040252048,0.134930434,0.134,,,0.103,0.166,0.291,,,0.245,0.337,8.2,0.065472527,0.096,,,0.196,,,0.163,0.233,0.759293134,113733,149788,,,0.175229603,,,0.149256384,0.205371913,0.324324324,24,74,0.264641776,0.384391945,200.3,301,150293,,,2.259887006,112,49560,1.841350075,2.678423936,,,,,,,,,,7.929997266,5.310843625,11.38879886,1.611035594,1.240693716,2.057256487,,,,,,,0.042500985,4746,111668,0.035352049,0.049649921,0.000485718,73,150293,,,2058.808219,0.000485718,73,150293,,,2058.808219,0.002881039,433,150293,,,347.0969977,2400,,,,,,,,3157,2412,0.46,,,,,,0.34,0.38,0.35,0.46,0.56,,,,,,0.53,0.41,0.5,0.57,0.946832251,94616,99929,0.93684537,0.956819131,0.759910247,25400,33425,0.733311428,0.786509066,0.037559061,3283,87409,,,0.094,2374,,0.072553192,0.115446809,,,,0.04475043,0,0.141552605,0.216965742,0,0.46927096,0.102040816,0.046272152,0.157809481,0.066095218,0.046521869,0.085668568,4.850869756,165924,34205,4.550956029,5.150783483,0.211957727,5736,27062,0.174457424,0.24945803,6.587133133,99,150293,,,66.57860254,502,753996,60.75436756,72.40283751,,,,,,,69.66213863,41.28619831,110.0962122,,,,74.76114448,68.0164697,81.50581926,,,,7.1,,,,,1,,,,,0.138118591,7745,56075,0.123542072,0.152695111,0.126544602,0.11118388,0.141905324,0.011502452,0.006714654,0.016290251,0.002942488,0.001216126,0.004668849,0.757323011,56931,75174,0.736505202,0.77814082,,,,,,,,,,,,,,,,0.451,,75555,0.423492332,0.478507668,80.69501827,,,80.23751952,81.15251702,,,,85.1218711,82.01807999,88.22566221,78.30767617,74.66500448,81.95034786,87.09217173,81.78316869,92.40117476,80.26056367,79.76228675,80.75884059,,,,285.7952677,1511,419913,270.560798,301.0297375,,,,148.5684674,86.54660717,237.8725083,397.796057,293.3034099,527.4198595,147.1804957,94.30132076,218.9929111,301.4062385,284.2823049,318.5301722,,,,26.01475615,36,138383,18.22041538,36.01538808,,,,,,,,,,,,,26.8272602,17.96663719,38.52842065,,,,2.850768468,23,8068,1.807142667,4.277552416,,,,,,,,,,,,,,,,,,,,,,0.089,,,0.075,0.103,0.148,,,0.127,0.171,0.079,,,0.067,0.091,121.8,162,133008,,,0.096,14410,,,,0.065472527,9997.065676,152691,,,29.00707241,131,451614,24.03972743,33.97441739,,,,,,,,,,,,,31.91693087,26.20626735,37.62759438,,,,0.338,,,0.322,0.354,0.049640288,4278,86180,0.041299862,0.057980713,0.019811495,536,27055,0.013854048,0.025768942,0.000858323,129,150293,,,1165.062016,0.930674449,1435.1,1542,,,,,,,,3.351959446,,,,,,3.644167298,2.889314563,2.95044163,3.416331484,3.166800718,,,,,,3.659275909,2.586592324,2.757105448,3.232114278,0.086036158,,,,,13524.67907,,,,,0.822117685,61866,75252,0.762333432,0.881901937,86430,,,78041.91489,94818.08511,30114,11127.61702,49100.38298,91719,68918.65957,114519.3404,55611,25204.19149,86017.80851,60138,42817.31915,77458.68085,92476,87779.14894,97172.85106,,,,,,0.254788419,4576,17960,,,57.04553167,,,,,0.397697559,,86430,,,7.82778865,48,6132,,,1.041140181,11,1056534,0.519733427,1.862887376,,,,,,,,,,,,,,,,,,,14.90573504,113,753996,12.02176725,17.78970282,14.98681691,,,,,,,,,,,,,16.93888155,13.52461383,20.35314927,,,,5.835574725,44,753996,4.240137528,7.83398669,,,,,,,,,,,,,6.494082465,4.660265698,8.809956152,,,,7.950525019,84,1056534,6.341650126,9.843290966,,,,,,,,,,,,,8.770331991,6.932583493,10.94577124,,,,,,,,,,,0.674133467,80714,119730,,,0.74,,,,,39.43043977,,,,,0.733678959,41323,56323,0.718280541,0.749077377,0.13020577,7144,54867,0.114324211,0.14608733,0.912362623,51387,56323,0.901152094,0.923573151,150293,,,,,0.170493636,25624,150293,,,0.168989906,25398,150293,,,0.036435496,5476,150293,,,0.002967537,446,150293,,,0.0516724,7766,150293,,,0.000785133,118,150293,,,0.065864678,9899,150293,,,0.826958009,124286,150293,,,0.008035397,1175,146228,0.00408368,0.011987114,0.49736182,74750,150293,,,0.502850696,75321,149788,, -09,015,09015,CT,Windham County,2024,1,7986.544965,1711,324982,7392.090568,8580.999362,0,,,,2,,,,2,11751.20853,6577.062206,19381.83139,1,8050.018319,6362.066496,9737.970142,,8006.764618,7346.409145,8667.120092,,,,,2,,0.136,,,0.113,0.164,3.557915534,,,2.860939263,4.334155038,5.173817899,,,4.342502378,6.058720985,0.081842818,604,7380,0.075588547,0.088097089,0,,,,0.095890411,0.048128932,0.14365189,0.128787879,0.071644153,0.185931605,0.082362082,0.067342214,0.097381951,0.079531333,0.072465558,0.086597109,,,,0.108433735,0.061133745,0.155733725,0.168,,,0.133,0.206,0.353,,,0.299,0.409,8.1,0.025678379,0.119,,,0.227,,,0.187,0.27,0.7367761,85774,116418,,,0.185709123,,,0.155694153,0.220479067,0.328767123,24,73,0.268737498,0.389055928,211.3,246,116418,,,9.532189471,260,27276,8.373513331,10.69086561,,,,,,,,,,22.75654788,18.42433768,27.08875807,6.81539593,5.682370228,7.948421633,,,,11.91765981,5.949252836,21.32398539,0.06293135,5854,93022,0.053399435,0.072463265,0.000429487,50,116418,,,2328.36,0.000498205,58,116418,,,2007.206897,0.004071535,474,116418,,,245.6075949,2695,,,,,,,7156,4767,2622,0.45,,,,,,0.43,0.35,0.41,0.45,0.52,,,,,,0.46,0.45,0.32,0.52,0.900943976,73299,81358,0.890296268,0.911591684,0.582873212,16996,29159,0.552865999,0.612880426,0.043017235,2783,64695,,,0.167,3680,,0.122914894,0.211085106,,,,,,,0.291208791,0,0.584334042,0.291479821,0.216779741,0.3661799,0.109996307,0.078665202,0.141327412,4.367610116,130395,29855,4.022371108,4.712849123,0.283885877,6388,22502,0.235770539,0.332001214,8.074352763,94,116418,,,92.6043428,540,583126,84.79363223,100.4150534,,,,,,,133.6183859,74.78519627,220.3832075,61.04243837,44.35352917,81.94662433,99.05335089,90.13599556,107.9707062,,,,6.5,,,,,1,,,,,0.129743365,5915,45590,0.114572612,0.144914117,0.118397692,0.103730226,0.133065158,0.010309278,0.006404883,0.014213674,0.005703005,0.002191814,0.009214196,0.80753643,44832,55517,0.79069742,0.82437544,,,,,,,,,,,,,,,,0.391,,55539,0.365306892,0.416693108,77.44996181,,,76.93525882,77.96466481,,,,,,,75.98836236,68.7996358,83.17708892,79.00053126,76.77420614,81.22685638,77.33878054,76.78533593,77.89222515,,,,389.0056576,1711,324982,369.5603256,408.4509897,,,,,,,511.7466829,350.0343523,722.4336252,361.9469985,294.0560662,429.8379308,392.7351002,371.5514101,413.9187902,,,,37.77433612,40,105892,26.98653953,51.43792446,,,,,,,,,,45.7310102,21.92979694,84.10095597,31.59557662,20.24388212,47.01171353,,,,4.862236629,36,7404,3.405450759,6.731384993,,,,,,,,,,,,,4.038630378,2.560145222,6.059928515,,,,,,,0.106,,,0.09,0.123,0.16,,,0.138,0.184,0.095,,,0.081,0.111,188,190,101057,,,0.119,13860,,,,0.025678379,3041.039107,118428,,,45.46234346,159,349740,38.39576268,52.52892423,,,,,,,,,,40.80799837,24.18540611,64.49423081,47.22029843,39.25470906,55.1858878,,,,0.346,,,0.33,0.36,0.075372765,5333,70755,0.063457872,0.087287659,0.024589467,578,23506,0.01744053,0.031738403,0.000678589,79,116418,,,1473.64557,0.880148075,891.59,1013,,,,,,,,3.093229956,,,,,,,2.960120402,2.631495453,3.247329521,2.917659107,,,,,,,2.985316276,2.4364832,3.070068611,0.219171058,,,,,10881.35436,,,,,0.824125448,48719,59116,0.762344855,0.885906042,71581,,,66241.93617,76920.06383,,,,,,,43429,33888.74468,52969.25532,43767,38862.82979,48671.17021,76443,72148.87234,80737.12766,,,,,,0.448300329,6950,15503,,,59.07835824,,,,,0.398276079,,71581,,,9.15455035,51,5571,,,1.593350092,13,815891,0.848391818,2.724677183,,,,,,,,,,,,,,,,,,,13.81227724,86,583126,10.93530996,17.2142186,14.74809904,,,,,,,,,,,,,14.86600618,11.54403548,18.84620512,,,,4.973196187,29,583126,3.330627538,7.142339295,,,,,,,,,,,,,6.060226109,4.058628537,8.703495588,,,,14.09502005,115,815891,11.51885995,16.67118014,,,,,,,,,,,,,14.87232112,11.95734618,17.78729606,,,,,,,,,,,0.629210758,57082,90720,,,0.675,,,,,53.22289159,,,,,0.693281927,32187,46427,0.675341964,0.711221889,0.121073342,5446,44981,0.105181806,0.136964879,0.885260732,41100,46427,0.871470834,0.899050629,116418,,,,,0.193518185,22529,116418,,,0.178786786,20814,116418,,,0.020434984,2379,116418,,,0.007713584,898,116418,,,0.014559604,1695,116418,,,0.000936281,109,116418,,,0.127445928,14837,116418,,,0.815569757,94947,116418,,,0.020196316,2253,111555,0.013514715,0.026877916,0.500481025,58265,116418,,,0.505841021,58889,116418,, -10,000,10000,DE,Delaware,2024,,8590.161112,14693,2731528,8372.515245,8807.806979,0,3713.089075,1853.560688,6643.742016,1,2374.099099,1866.473938,2881.72426,,11628.13712,11102.82786,12153.44638,,5658.677689,5131.912971,6185.442407,,8420.926764,8137.172952,8704.680575,,,,,2,,0.14,,,0.125,0.157,3.270503673,,,2.927315066,3.613692279,4.397229691,,,3.982354647,4.812104735,0.090552394,6762,74675,0.0884941,0.092610687,0,0.18,0.104699259,0.255300741,0.081661553,0.073415672,0.089907434,0.137375603,0.132543109,0.142208096,0.072739187,0.068132179,0.077346196,0.071208453,0.068564433,0.073852472,,,,0.101761252,0.088654269,0.114868236,0.143,,,0.126,0.162,0.338,,,0.315,0.361,7.8,0.062950079,0.099,,,0.262,,,0.242,0.283,0.791823409,783864,989948,,,0.15575436,,,0.137719333,0.175670004,0.228013029,140,614,0.207932679,0.248599165,486.4,4880,1003384,,,16.01911382,3406,212621,15.48112626,16.55710139,,,,2.143335566,1.225101467,3.480642679,22.57430031,21.32334523,23.82525538,32.62191004,30.56470825,34.67911183,8.672076826,8.120612548,9.223541103,,,,20.11609287,17.33508848,22.89709727,0.068693301,53437,777907,0.061544365,0.075842238,0.000737504,740,1003384,,,1355.924324,0.000458564,467,1018396,,,2180.719486,0.003241372,3301,1018396,,,308.5113602,2922,,,,,,1864,4412,3480,2664,0.51,,,,,0.53,0.49,0.49,0.37,0.52,0.55,,,,,0.51,0.54,0.42,0.41,0.57,0.91241126,639020,700364,0.90875872,0.916063801,0.644322578,158379,245807,0.628381011,0.660264146,0.045159134,22430,496688,,,0.143,29390,,0.127510638,0.158489362,0.462686567,0.196865133,0.728508001,0.123189232,0.083201452,0.163177013,0.268922084,0.241291895,0.296552274,0.247762056,0.219609036,0.275915076,0.085041501,0.073207545,0.096875457,4.397825392,151272,34397,4.297573695,4.498077089,0.288507597,59507,206258,0.272468828,0.304546366,10.15563334,1019,1003384,,,93.49963939,4575,4893067,90.79025604,96.20902274,,,,22.04773334,16.0199168,29.59805293,101.2379612,95.23055376,107.2453686,48.6057545,42.32401616,54.88749284,105.5411777,101.8705718,109.2117836,,,,7.6,,,,,0.333333333,,,,,0.141230068,52390,370955,0.134724372,0.147735765,0.124850504,0.118330187,0.131370821,0.016241862,0.014308395,0.018175329,0.005566713,0.004212094,0.006921332,0.751553166,352389,468881,0.744182595,0.758923737,0.686098655,0.583367092,0.788830218,0.647034135,0.612815805,0.681252466,0.715279246,0.696625239,0.733933252,0.724182485,0.698337473,0.750027496,0.786846511,0.777238923,0.796454099,0.342,,468881,0.332320295,0.351679705,77.37631079,,,77.19256131,77.56006026,89.19958273,84.06578203,94.33338342,90.61571771,88.53625933,92.69517609,74.5463688,74.10422385,74.98851374,85.83341621,84.08087296,87.58595946,77.41718257,77.19046298,77.64390217,,,,393.6276939,14693,2731528,386.8175034,400.4378844,225.0031338,145.6101647,332.1490114,121.1408115,101.7675198,140.5141033,519.8521464,502.8437813,536.8605116,257.6777479,235.5639451,279.7915508,390.2226278,381.5978218,398.8474338,,,,54.33315005,501,922089,49.57539485,59.09090526,,,,,,,107.5858667,94.32869035,120.8430431,37.07111697,28.00312336,48.13992891,36.58752837,30.97064584,42.2044109,,,,6.633808446,498,75070,6.051163039,7.216453852,,,,,,,12.22881703,10.67842485,13.7792092,5.785756828,4.492866566,7.33482542,4.169356574,3.512970647,4.825742501,,,,,,,0.100492296,,,0.08717587,0.115585284,0.13704851,,,0.12005848,0.156016581,0.099,,,0.087,0.111,410.2,3515,856843,,,0.099,99530,,,,0.062950079,56525.01603,897934,,,46.96424408,1392,2963957,44.4970473,49.43144087,,,,,,,43.97544071,38.90533107,49.04555034,24.34157747,19.01097396,30.70358785,56.4350602,52.97503218,59.89508822,,,,0.339300064,,,0.317272644,0.362045809,0.080810546,46364,573737,0.07247012,0.089150971,0.035863425,7695,214564,0.026331511,0.04539534,0.001550477,1579,1018396,,,644.9626346,0.812443481,9092.055,11191,,,0.050997435,2605,51081,0.040336061,0.06165881,3.03928644,,,,,,3.837522397,2.643412239,2.716080749,3.394232134,2.956555968,,,,,,4.018002545,2.497739322,2.646320021,3.347472892,0.127301984,,,,,-179.0356,,,,,0.837422832,53446,63822,0.807968263,0.866877402,81933,,,79762.10638,84103.89362,53632,37632.68085,69631.31915,115246,100535.8723,129956.1277,58385,55289.51064,61480.48936,66548,60373.70213,72722.29787,87027,85105.12766,88948.87234,,,,,,,,,,,44.10311428,,,,,0.27516489,,,,,7.182320442,,,,,7.156461151,486,6791066,6.520198757,7.792723544,,,,,,,24.78902385,22.25627815,27.32176956,3.407408325,2.135404656,5.158857153,2.068483445,1.656770444,2.551466688,,,,12.06079528,597,4893067,11.05889976,13.0626908,12.20093655,,,,5.498432306,2.744797597,9.838214219,6.617131728,5.168034779,8.346611289,4.149882877,2.498500581,6.480556168,15.84760869,14.34089192,17.35432547,,,,12.34399611,604,4893067,11.35954675,13.32844546,,,,,,,27.18856336,24.07535261,30.30177411,2.958611143,1.617500243,4.964046772,9.504022927,8.402532999,10.60551285,,,,12.9287508,878,6791066,12.07355536,13.78394625,,,,8.056453769,5.048936684,12.19756783,17.17717685,15.06885084,19.28550287,10.06734278,7.769762617,12.8316548,12.5535547,11.48276095,13.62434846,,,,25.74946467,,93400,,,2405,,0.697419658,504346,723160,,,,,,,,111.4746039,,,,,0.719596401,279923,389000,0.712980251,0.726212551,0.129066709,49066,380160,0.12338917,0.134744248,0.903424165,351432,389000,0.899146987,0.907701342,1018396,,,,,0.204367456,208127,1018396,,,0.208017314,211844,1018396,,,0.224679791,228813,1018396,,,0.007046375,7176,1018396,,,0.043686346,44490,1018396,,,0.001151811,1173,1018396,,,0.10339691,105299,1018396,,,0.599941477,610978,1018396,,,0.021225037,19944,939645,0.019516636,0.022933439,0.514412861,523876,1018396,,,0.17387883,172131,989948,, -10,001,10001,DE,Kent County,2024,1,9515.884356,2920,508349,8992.638586,10039.13013,0,,,,2,3299.586279,1508.780956,6263.642562,1,11660.25389,10511.0002,12809.50758,,5647.968651,4368.138545,7185.600941,,9492.477896,8810.560125,10174.39567,,,,,2,,0.164,,,0.141,0.19,3.758720896,,,3.023966377,4.519835001,5.281649914,,,4.348176898,6.199219083,0.094561852,1405,14858,0.089856813,0.099266892,0,,,,0.073619632,0.045270565,0.101968699,0.134364427,0.123973112,0.144755743,0.08484456,0.070945294,0.098743825,0.074634267,0.068899011,0.080369523,,,,0.110953058,0.087735829,0.134170288,0.18,,,0.149,0.217,0.413,,,0.354,0.472,7.8,0.064975289,0.112,,,0.294,,,0.252,0.343,0.654876795,119090,181851,,,0.136930129,,,0.113153724,0.164188876,0.282258065,35,124,0.236373303,0.329241795,574,1057,184149,,,16.18280317,699,43194,14.9831071,17.38249924,,,,,,,16.64174738,14.60313333,18.68036144,21.62547529,17.41148372,26.55129157,13.49446123,11.87882262,15.11009984,,,,29.14717524,23.14706441,36.2272775,0.076712831,11311,147446,0.067180916,0.086244745,0.000505026,93,184149,,,1980.096774,0.000406535,76,186946,,,2459.81579,0.002305479,431,186946,,,433.74942,3167,,,,,,1103,3867,349,3031,0.48,,,,,,0.49,0.51,0.39,0.48,0.52,,,,,,0.45,0.44,0.45,0.54,0.888821034,109157,122811,0.878896116,0.898745952,0.623056602,28774,46182,0.585056031,0.661057173,0.052474679,4207,80172,,,0.145,6087,,0.096148936,0.193851064,,,,0.194050992,0,0.38979941,0.310763278,0.244625704,0.376900853,0.221701954,0.163452733,0.279951175,0.092218454,0.069926772,0.114510135,4.04975923,128673,31773,3.799622935,4.299895524,0.295592797,12294,41591,0.259142468,0.332043125,9.611781764,177,184149,,,86.28776749,780,903952,80.23215603,92.34337896,,,,,,,81.41621589,69.86971746,92.96271432,45.67690222,31.03523896,64.83471666,100.3981051,91.98438763,108.8118226,,,,7.6,,,,,0,,,,,0.150817236,10150,67300,0.134429525,0.167204947,0.133833233,0.118656632,0.149009835,0.017830609,0.012866933,0.022794286,0.003120357,0.001235067,0.005005646,0.799390917,65885,82419,0.77969554,0.819086295,0.75862069,0.012123272,1,0.771442987,0.676611181,0.866274793,0.740538551,0.701726519,0.779350584,0.83050557,0.785634877,0.875376263,0.814668209,0.794879622,0.834456795,0.337,,82419,0.312903619,0.361096381,75.95627761,,,75.52769069,76.38486453,,,,92.78014989,84.83296285,100.7273369,74.34199181,73.40587796,75.27810566,85.70509586,81.90352699,89.50666472,75.72086594,75.19081441,76.25091747,,,,452.5618997,2920,508349,435.3536142,469.7701851,,,,142.3686391,86.96246339,219.8768163,519.6963776,482.9269198,556.4658354,266.6146435,211.4088308,331.8250025,460.1904015,438.2547028,482.1261003,,,,57.75833485,108,186986,46.86505006,68.65161964,,,,,,,101.6072418,76.5444799,132.2557916,,,,48.63299008,35.60546107,64.8695935,,,,6.925300881,103,14873,5.587855344,8.262746418,,,,,,,13.88212372,10.51418494,17.98590146,,,,3.897211058,2.665689479,5.501699194,,,,,,,0.115,,,0.099,0.132,0.166,,,0.144,0.188,0.11,,,0.096,0.125,322,497,154353,,,0.112,20210,,,,0.064975289,10546.13916,162310,,,41.56200212,228,548578,36.16708089,46.95692335,,,,,,,31.73135955,23.23134328,42.32518691,,,,52.91992573,45.03400793,60.80584353,,,,0.381,,,0.368,0.393,0.090757128,9610,105887,0.077650745,0.103863511,0.042125759,1839,43655,0.030210865,0.054040652,0.00118216,221,186946,,,845.9095023,0.809003459,1871.225,2313,,,0.065312625,656,10044,0.039070714,0.091554535,3.291416652,,,,,,3.839975203,2.955225005,3.088451685,3.550666459,3.170536112,,,,,,3.651223229,2.785080289,3.000057707,3.473689746,0.061456825,,,,,-363.396775,,,,,0.843439435,46848,55544,0.803232864,0.883646007,71866,,,66704.46809,77027.53192,,,,70303,46967.68085,93638.31915,55603,47753.46809,63452.53192,72668,65716.85106,79619.14894,75632,72568.68085,78695.31915,,,,,,,,,,,28.6570751,,,,,0.27516489,,71866,,,7.182320442,78,10860,,,6.068775193,76,1252312,4.781504599,7.595977118,,,,,,,15.3207828,11.33439946,20.25488736,,,,2.883355177,1.806983338,4.365434389,,,,14.13513768,123,903952,11.57633229,16.69394308,13.60691718,,,,,,,7.821470934,4.635499374,12.36129612,,,,18.41953215,14.81147902,22.6407322,,,,12.50066375,113,903952,10.19577524,14.80555226,,,,,,,19.18183097,13.99135913,25.66679902,,,,11.74676184,9.046437987,15.00035263,,,,16.21001795,203,1252312,13.98008632,18.43994958,,,,,,,18.44747317,14.04307129,23.79589633,13.04603075,6.741074459,22.78879025,16.64482307,13.74992422,19.53972192,,,,25.37234043,,18800,,,477,,0.651384731,87025,133600,,,0.681,,,,,69.62395346,,,,,0.703777018,48353,68705,0.687900079,0.719653956,0.133210129,8938,67097,0.118564359,0.147855899,0.891536278,61253,68705,0.87984587,0.903226687,186946,,,,,0.227316979,42496,186946,,,0.183972912,34393,186946,,,0.273704706,51168,186946,,,0.007996962,1495,186946,,,0.023873204,4463,186946,,,0.001326586,248,186946,,,0.081472725,15231,186946,,,0.579584479,108351,186946,,,0.016595211,2845,171435,0.012751031,0.020439391,0.516726755,96600,186946,,,0.264716719,48139,181851,, -10,003,10003,DE,New Castle County,2024,1,8385.752381,7826,1578887,8109.461373,8662.04339,0,,,,2,2159.836667,1644.539636,2675.133698,,11641.2408,10993.05864,12289.42296,,5624.628602,4963.546846,6285.710359,,8088.592995,7720.419206,8456.766784,,,,,2,,0.134,,,0.114,0.157,3.116059453,,,2.468852671,3.818174976,4.697612769,,,3.845323294,5.595335846,0.092174352,4020,43613,0.089459448,0.094889255,0,,,,0.08251634,0.07361667,0.091416009,0.137422543,0.131446055,0.143399031,0.075728155,0.069390781,0.082065529,0.068611701,0.065044927,0.072178476,,,,0.102459016,0.083433634,0.121484399,0.138,,,0.112,0.167,0.346,,,0.291,0.404,8.3,0.06022437,0.093,,,0.245,,,0.206,0.284,0.930368535,530979,570719,,,0.159947923,,,0.134182161,0.188538088,0.207920792,63,303,0.179406113,0.237693718,511.3,2923,571708,,,12.74766014,1678,131632,12.13771529,13.357605,,,,2.104240855,1.120419633,3.598315947,22.52812315,20.92750125,24.12874505,23.5238396,21.34306631,25.70461289,5.567630333,5.003355524,6.131905142,,,,12.6002291,9.745016269,16.03058084,0.059349986,27189,458113,0.054584028,0.064115943,0.000865827,495,571708,,,1154.965657,0.000580371,334,575494,,,1723.035928,0.003987878,2295,575494,,,250.7599129,3466,,,,,,2095,4878,4582,3141,0.51,,,,,,0.49,0.49,0.38,0.51,0.55,,,,,0.55,0.57,0.41,0.4,0.59,0.924966428,365753,395423,0.920689774,0.929243083,0.675107716,103413,153180,0.654603189,0.695612244,0.043593894,13277,304561,,,0.134,15976,,0.107787234,0.160212766,0.340425532,0,0.722994525,0.109010459,0.068553601,0.149467316,0.248729185,0.215074144,0.282384226,0.192541155,0.156023408,0.229058902,0.056407038,0.044772817,0.068041258,4.533189619,161921,35719,4.370962337,4.695416901,0.291255807,35297,121189,0.271641323,0.310870292,10.45988512,598,571708,,,96.04712712,2700,2811120,92.42420859,99.67004566,,,,22.05801257,15.44916083,30.53758715,107.1829572,99.54752075,114.8183937,52.9641236,44.65269721,61.27554998,109.8515894,104.6795344,115.0236444,,,,8.6,,,,,0,,,,,0.139497684,29215,209430,0.131135052,0.147860316,0.125892684,0.117239309,0.134546059,0.013345748,0.010915998,0.015775498,0.006756434,0.004579044,0.008933824,0.724512564,205863,284140,0.716299411,0.732725717,,,,0.620837084,0.581124807,0.660549361,0.694682964,0.675262098,0.714103831,0.695368023,0.663144946,0.727591099,0.780100138,0.766957009,0.793243267,0.327,,284140,0.314966547,0.339033453,77.44181088,,,77.19879439,77.68482736,,,,90.89139516,88.44298871,93.33980161,74.81796863,74.25428853,75.38164874,84.57198959,82.59004598,86.55393321,77.48302372,77.17866525,77.78738219,,,,393.981449,7826,1578887,384.9363729,403.026525,,,,114.6648119,93.30604461,136.0235792,516.1230944,495.1222757,537.1239132,264.5449828,235.8798652,293.2101004,389.9047608,378.1124949,401.6970266,,,,55.34237137,302,545694,49.10056396,61.58417877,,,,,,,111.1684599,94.35786746,127.9790524,40.12080821,28.10012083,55.54411003,31.82868009,25.1592508,39.72363322,,,,6.933587112,306,44133,6.156708197,7.710466026,,,,,,,12.02937041,10.129436,13.92930482,6.048387097,4.300994493,8.268344272,4.256171449,3.399678584,5.262821908,,,,,,,0.096,,,0.083,0.11,0.143,,,0.125,0.162,0.101,,,0.087,0.115,444,2160,486526,,,0.093,52830,,,,0.06022437,32429.55862,538479,,,49.40921707,836,1691992,46.0598642,52.75856993,,,,,,,48.42581189,41.84466909,55.00695469,30.33060358,22.84916148,39.47944962,60.39322701,55.42212383,65.3643302,,,,0.339,,,0.326,0.351,0.0697988,23708,339662,0.063841353,0.075756247,0.030613064,3815,124620,0.024655617,0.036570511,0.001899238,1093,575494,,,526.5269899,0.817604566,5121.475,6264,,,0.03741052,1202,32130,0.024950712,0.049870328,2.932031009,,,,,,3.833829581,2.521148854,2.59551287,3.350606069,2.826392694,,,,,,4.117871057,2.380466563,2.443508546,3.281733565,0.132855987,,,,,452.7775,,,,,0.823757887,57051,69257,0.797338329,0.850177446,85427,,,80809.97872,90044.02128,60938,15846.08511,106029.9149,124737,110146.0213,139327.9787,61267,57277.89362,65256.10638,69213,62431.04255,75994.95745,97723,95598.57447,99847.42553,,,,,,,,,,,45.07244201,,,,,0.309398668,,85427,,,9.395424837,299,31824,,,9.172240926,360,3924886,8.224738622,10.11974323,,,,,,,29.54279448,26.1307758,32.95481317,4.229560648,2.463874942,6.771936322,2.107942818,1.548837096,2.80311708,,,,11.34018813,329,2811120,10.08801541,12.59236085,11.70352031,,,,,,,6.427191536,4.705511992,8.572972823,4.582607775,2.505354314,7.68883717,15.46745351,13.48318933,17.45171768,,,,13.33987877,375,2811120,11.98969675,14.69006079,,,,,,,31.71596092,27.56250184,35.86942,4.074163354,2.105179657,7.11674347,8.24045391,6.823892098,9.657015722,,,,10.70094775,420,3924886,9.67752829,11.72436721,,,,8.497848703,5.116260036,13.2704434,13.84818491,11.51213541,16.18423441,6.7175375,4.426899541,9.773664378,10.71911348,9.360124329,12.07810263,,,,25.46617916,,54700,,,1393,,0.700988241,287633,410325,,,0.687,,,,,156.4667463,,,,,0.681577957,150245,220437,0.671830662,0.691325251,0.133168984,28738,215801,0.125314532,0.141023437,0.916379737,202004,220437,0.911006402,0.921753071,575494,,,,,0.210335816,121047,575494,,,0.171539582,98720,575494,,,0.259783768,149504,575494,,,0.005096491,2933,575494,,,0.063126636,36329,575494,,,0.000806264,464,575494,,,0.113276594,65190,575494,,,0.5378944,309555,575494,,,0.020662391,11138,539047,0.018214156,0.023110626,0.51376209,295667,575494,,,0.060942425,34781,570719,, -10,005,10005,DE,Sussex County,2024,1,8596.144534,3947,644292,8111.301718,9080.987349,0,,,,2,,,,2,11595.98573,10122.56418,13069.40728,,5846.380756,4681.838792,7010.922721,,8598.259982,8010.741366,9185.778599,,,,,2,,0.146,,,0.124,0.174,3.497882502,,,2.804957233,4.29587788,4.574966536,,,3.736662529,5.49513568,0.082510491,1337,16204,0.078274061,0.086746922,0,,,,0.079497908,0.045201601,0.113794215,0.141925585,0.128529485,0.155321685,0.062988158,0.055429973,0.070546343,0.073711168,0.068306941,0.079115395,,,,0.082191781,0.054014453,0.110369109,0.15,,,0.119,0.186,0.35,,,0.296,0.409,8,0.068727679,0.102,,,0.262,,,0.221,0.308,0.5636369,133795,237378,,,0.146230216,,,0.122365371,0.173012943,0.224598931,42,187,0.187828389,0.263066319,363.2,899,247527,,,27.22582352,1029,37795,25.56229823,28.88934882,,,,,,,37.41605373,32.62196438,42.21014307,66.85410809,60.52033813,73.18787805,13.68098432,12.15307332,15.20889532,,,,27.34177215,20.53998075,35.67508172,0.086667672,14937,172348,0.077135758,0.096199587,0.000614074,152,247527,,,1628.467105,0.000222695,57,255956,,,4490.45614,0.002242573,574,255956,,,445.9163763,2086,,,,,,1191,3540,989,2008,0.52,,,,,,0.51,0.45,0.34,0.53,0.55,,,,,0.42,0.48,0.42,0.41,0.57,0.901059683,164110,182130,0.893672538,0.908446828,0.563935838,26192,46445,0.532908396,0.59496328,0.044178465,4946,111955,,,0.168,7327,,0.121531915,0.214468085,0.535483871,0.092022082,0.97894566,0.215588723,0,0.487666903,0.302160494,0.237368871,0.366952117,0.386410959,0.325985407,0.44683651,0.139248622,0.105501932,0.172995311,4.268949458,142997,33497,4.059823523,4.478075393,0.274069644,11916,43478,0.235308898,0.312830391,9.534313428,236,247527,,,92.95455414,1095,1177995,87.44876361,98.46034466,,,,,,,104.5375129,87.40345555,121.6715702,38.81286782,28.08906489,52.28067824,101.0331086,94.41756129,107.648656,,,,7.6,,,,,1,,,,,0.138232953,13025,94225,0.126439681,0.150026226,0.116135938,0.104424069,0.127847807,0.021544176,0.017070146,0.026018207,0.004722738,0.003001826,0.00644365,0.788110084,80641,102322,0.774052683,0.802167485,0.713930348,0.633623328,0.794237369,0.776986951,0.683062759,0.870911143,0.788086165,0.743136857,0.833035474,0.745533669,0.690916865,0.800150473,0.786180109,0.770623422,0.801736796,0.387,,102322,0.367421832,0.406578168,77.83226926,,,77.4447926,78.21974592,,,,87.38778915,83.05993727,91.71564102,73.70792797,72.56080355,74.85505239,90.80872814,84.42823184,97.18922445,77.84687144,77.39349481,78.30024807,,,,372.8429956,3947,644292,358.7999936,386.8859975,,,,,,,537.8734738,489.9424699,585.8044777,237.9265346,193.969946,281.8831233,372.8961694,356.2529082,389.5394305,,,,48.04417953,91,189409,38.6821764,58.98760614,,,,,,,100.3042562,67.67486048,143.1905627,44.74050507,26.51605881,70.70928681,36.84145892,26.19787877,50.36348715,,,,5.540338645,89,16064,4.449346871,6.817863446,,,,,,,10.62215478,7.05834471,15.35197115,5.49594347,3.402075631,8.401133404,4.225038915,2.989888998,5.799196011,,,,,,,0.108,,,0.093,0.126,0.149,,,0.129,0.171,0.095,,,0.082,0.109,349.6,755,215964,,,0.102,23830,,,,0.068727679,13549.31826,197145,,,45.34225802,328,723387,40.43518756,50.24932847,,,,,,,42.3242034,29.48035843,58.86272129,,,,51.72650984,45.68918292,57.76383675,,,,0.319,,,0.305,0.332,0.101772397,13046,128188,0.089857503,0.11368729,0.044092549,2041,46289,0.032177655,0.056007443,0.001035334,265,255956,,,965.8716981,0.80311974,2099.355,2614,,,0.083866622,747,8907,0.055419952,0.112313292,3.092352734,,,,,,3.588397611,2.747321239,2.796676685,3.363649143,3.107391386,,,,,,3.618225003,2.680157675,2.861151998,3.392345364,0.077753648,,,,,-2630.7742,,,,,0.841318053,47643,56629,0.800571397,0.882064708,81188,,,77710.04255,84665.95745,58071,45186.23404,70955.76596,111467,101636.0213,121297.9787,48503,43793.04255,53212.95745,53799,47756.95745,59841.04255,79177,76045.76596,82308.23404,,,,,,,,,,,43.91942615,,,,,0.243570478,,81188,,,6.493506494,75,11550,,,3.098146813,50,1613868,2.29950428,4.084520337,,,,,,,16.3291966,11.09489685,23.17799114,,,,1.483535232,0.879237,2.344625256,,,,11.91002903,145,1177995,9.748467456,14.07159059,12.30905055,,,,,,,,,,,,,14.68587127,11.79039231,17.58135024,,,,9.847240438,116,1177995,8.055225528,11.63925535,,,,,,,17.54475741,11.24125712,26.1052083,,,,10.37393526,8.362855986,12.72271069,,,,15.80054874,255,1613868,13.86119001,17.73990748,,,,,,,32.13164493,24.57816237,41.27444213,17.13491106,11.1930928,25.10661479,13.35181708,11.29574215,15.40789202,,,,26.88442211,,19900,,,535,,0.721689402,129352,179235,,,0.563,,,,,34.52887847,,,,,0.814406457,81325,99858,0.805052322,0.823760592,0.117106373,11390,97262,0.106353062,0.127859683,0.883003866,88175,99858,0.87403668,0.891971051,255956,,,,,0.174186188,44584,255956,,,0.307595837,78731,255956,,,0.109944678,28141,255956,,,0.01073622,2748,255956,,,0.014447796,3698,255956,,,0.001801091,461,255956,,,0.097196393,24878,255956,,,0.754317148,193072,255956,,,0.026012053,5961,229163,0.022605709,0.029418396,0.514186032,131609,255956,,,0.375818315,89211,237378,, -11,000,11000,DC,District of Columbia,2024,,8975.956019,9658,1978094,8733.656347,9218.255692,0,,,,2,2201.158292,1633.742111,2901.952797,,16371.52868,15861.40826,16881.64911,,5224.92529,4671.468798,5778.381782,,2385.544977,2176.706977,2594.382976,,,,,2,,0.128,,,0.107,0.151,2.729887794,,,2.075319183,3.449778185,4.807052238,,,3.906363496,5.763069366,0.099303329,6286,63301,0.096973511,0.101633146,0,,,,0.074229692,0.064615397,0.083843986,0.141300954,0.137279673,0.145322235,0.073516859,0.068232988,0.078800729,0.056578183,0.053426543,0.059729823,,,,0.08989547,0.075096052,0.104694889,0.113,,,0.089,0.14,0.245,,,0.196,0.301,8.5,0.016061023,0.103,,,0.161,,,0.13,0.198,1,689545,689545,,,0.241945087,,,0.208061442,0.280704247,0.25308642,41,162,0.213183569,0.294359554,1037.5,6952,670050,,,17.59853618,2366,134443,16.88940718,18.30766518,,,,,,,26.12311308,24.89353403,27.35269213,35.17808908,32.26445973,38.09171842,0.663397067,0.440822533,0.958793469,,,,7.407407407,5.03297395,10.51422354,0.037267749,20443,548544,0.031310302,0.043225196,0.001287964,863,670050,,,776.419467,0.001290557,867,671803,,,774.8592849,0.00688297,4624,671803,,,145.2861159,3273,,,,,,1649,4745,2529,1139,0.35,,,,,,0.31,0.31,0.31,0.41,0.41,,,,,,0.44,0.31,0.33,0.57,0.926996921,449219,484596,0.921962599,0.932031243,0.847269559,220751,260544,0.832154416,0.862384702,0.046791606,18174,388403,,,0.2,24651,,0.154723404,0.245276596,0.358064516,0,0.757459811,0.130193906,0.044402774,0.215985038,0.332040807,0.304835154,0.35924646,0.153849799,0.117936825,0.189762773,0.015460823,0.007463155,0.02345849,6.578872379,226254,34391,6.31632018,6.841424579,0.44834766,55340,123431,0.424236568,0.472458752,29.62465488,1985,670050,,,105.1637254,3665,3485042,101.7589769,108.568474,,,,18.65075136,12.39328883,26.95552858,195.4300911,188.4771563,202.3830259,44.24261225,37.66872564,50.81649885,31.87516024,28.80466607,34.94565442,,,,8.9,,,,,1,,,,,0.19404797,55945,288305,0.185627553,0.202468387,0.162711383,0.155124804,0.170297962,0.036281022,0.032159307,0.040402737,0.007110525,0.00491302,0.009308031,0.296924775,108961,366965,0.287955505,0.305894044,0.355787844,0.278153738,0.433421949,0.383409859,0.36141376,0.405405957,0.516470378,0.505407533,0.527533223,0.424428778,0.406347954,0.442509601,0.380731395,0.372546282,0.388916507,0.495,,366965,0.473290031,0.516709969,77.06606748,,,76.81883841,77.31329655,,,,90.31781903,87.55198231,93.08365575,70.03181175,69.68798654,70.37563696,84.67987769,83.24985081,86.10990457,87.71427835,87.18061739,88.24793931,,,,467.4786557,9658,1978094,458.0201489,476.9371625,,,,147.2417158,118.5498447,180.7801991,777.6734426,760.0580481,795.2888371,245.9333853,222.8885949,268.9781757,143.2606216,134.2567717,152.2644716,,,,66.4846614,395,594122,59.92805694,73.04126586,,,,,,,103.6458766,92.14500371,115.1467495,40.4606287,28.77146228,55.31101138,19.40780323,13.09436334,27.70584589,,,,6.695361071,434,64821,6.065441344,7.325280799,,,,,,,11.1173984,9.925097125,12.30969967,4.277617367,3.055992561,5.824900755,1.811335145,1.281808554,2.486199005,,,,,,,0.081,,,0.069,0.093,0.136,,,0.118,0.155,0.084,,,0.073,0.096,2381.8,13622,571917,,,0.103,68900,,,,0.016061023,9664.286887,601723,,,56.73616248,1185,2088615,53.50575837,59.96656659,,,,,,,114.9044904,107.983869,121.8251118,13.05202706,8.868219147,18.52631057,11.10881274,8.897703609,13.70267947,,,,0.317,,,0.304,0.331,0.041212209,17589,426791,0.034063273,0.048361145,0.024257116,3062,126231,0.013533712,0.03498052,0.002256614,1516,671803,,,443.1418206,0.748465663,3280.525,4383,,,0.068394475,1842,26932,0.051098936,0.085690014,2.923146748,,,,,,,2.690941213,2.898236546,3.974167332,2.832881684,,,,,,,2.561080394,2.80010491,4.060038395,0.33536048,,,,,-4930.805,,,,,0.869392097,89084,102467,0.84311919,0.895665004,99897,,,97076.74468,102717.2553,60390,38452.29787,82327.70213,123660,112240.766,135079.234,57076,54701.3617,59450.6383,94203,84986.82979,103419.1702,164829,160602.7872,169055.2128,,,,,,,,,,,66.46698387,,,,,0.412234602,,99897,,,8.310442758,357,42958,,,22.32124404,1080,4838440,20.98998494,23.65250314,,,,,,,46.48697815,43.6256451,49.34831119,7.980164651,5.775284727,10.74922942,0.893871228,0.51092464,1.451590873,,,,6.380514047,229,3485042,5.52759129,7.233436804,6.570939461,,,,,,,6.132948519,4.937867579,7.529901755,5.18675091,2.902985111,8.55475685,8.251941794,6.612696577,9.891187011,,,,20.6023342,718,3485042,19.09534453,22.10932388,,,,,,,42.75636919,39.5042021,46.00853627,7.119500821,4.730856592,10.28966095,1.616855954,1.000859319,2.471536077,,,,6.035003018,292,4838440,5.342786215,6.727219821,,,,,,,10.40684817,9.05302369,11.76067264,5.938727182,4.062084996,8.383710828,1.564274649,1.039449144,2.260812403,,,,15.44662309,,45900,,,577,132,0.652158515,344356,528025,,,0.613,,,,,573.1945759,,,,,0.414411704,130865,315785,0.404773488,0.424049921,0.167582607,51138,305151,0.159368789,0.175796425,0.890263945,281132,315785,0.883027564,0.897500327,671803,,,,,0.185284972,124475,671803,,,0.129889268,87260,671803,,,0.433570556,291274,671803,,,0.006978236,4688,671803,,,0.046680351,31360,671803,,,0.001677575,1127,671803,,,0.117461518,78911,671803,,,0.375333245,252150,671803,,,0.021152027,13306,629065,0.018702337,0.023601718,0.524143238,352121,671803,,,0,0,689545,, -11,001,11001,DC,District of Columbia,2024,1,8975.956019,9658,1978094,8733.656347,9218.255692,0,,,,2,2201.158292,1633.742111,2901.952797,,16371.52868,15861.40826,16881.64911,,5224.92529,4671.468798,5778.381782,,2385.544977,2176.706977,2594.382976,,,,,2,,0.128,,,0.107,0.151,2.729887794,,,2.075319183,3.449778185,4.807052238,,,3.906363496,5.763069366,0.099303329,6286,63301,0.096973511,0.101633146,0,,,,0.074229692,0.064615397,0.083843986,0.141300954,0.137279673,0.145322235,0.073516859,0.068232988,0.078800729,0.056578183,0.053426543,0.059729823,,,,0.08989547,0.075096052,0.104694889,0.113,,,0.089,0.14,0.245,,,0.196,0.301,8.5,0.016061023,0.103,,,0.161,,,0.13,0.198,1,689545,689545,,,0.241945087,,,0.208061442,0.280704247,0.25308642,41,162,0.213183569,0.294359554,1037.5,6952,670050,,,17.59853618,2366,134443,16.88940718,18.30766518,,,,,,,26.12311308,24.89353403,27.35269213,35.17808908,32.26445973,38.09171842,0.663397067,0.440822533,0.958793469,,,,7.407407407,5.03297395,10.51422354,0.037267749,20443,548544,0.031310302,0.043225196,0.001287964,863,670050,,,776.419467,0.001290557,867,671803,,,774.8592849,0.00688297,4624,671803,,,145.2861159,3273,,,,,,1649,4745,2529,1139,0.35,,,,,,0.31,0.31,0.31,0.41,0.41,,,,,,0.44,0.31,0.33,0.57,0.926996921,449219,484596,0.921962599,0.932031243,0.847269559,220751,260544,0.832154416,0.862384702,0.046791606,18174,388403,,,0.2,24651,,0.154723404,0.245276596,0.358064516,0,0.757459811,0.130193906,0.044402774,0.215985038,0.332040807,0.304835154,0.35924646,0.153849799,0.117936825,0.189762773,0.015460823,0.007463155,0.02345849,6.578872379,226254,34391,6.31632018,6.841424579,0.44834766,55340,123431,0.424236568,0.472458752,29.62465488,1985,670050,,,105.1637254,3665,3485042,101.7589769,108.568474,,,,18.65075136,12.39328883,26.95552858,195.4300911,188.4771563,202.3830259,44.24261225,37.66872564,50.81649885,31.87516024,28.80466607,34.94565442,,,,8.9,,,,,1,,,,,0.19404797,55945,288305,0.185627553,0.202468387,0.162711383,0.155124804,0.170297962,0.036281022,0.032159307,0.040402737,0.007110525,0.00491302,0.009308031,0.296924775,108961,366965,0.287955505,0.305894044,0.355787844,0.278153738,0.433421949,0.383409859,0.36141376,0.405405957,0.516470378,0.505407533,0.527533223,0.424428778,0.406347954,0.442509601,0.380731395,0.372546282,0.388916507,0.495,,366965,0.473290031,0.516709969,77.06606748,,,76.81883841,77.31329655,,,,90.31781903,87.55198231,93.08365575,70.03181175,69.68798654,70.37563696,84.67987769,83.24985081,86.10990457,87.71427835,87.18061739,88.24793931,,,,467.4786557,9658,1978094,458.0201489,476.9371625,,,,147.2417158,118.5498447,180.7801991,777.6734426,760.0580481,795.2888371,245.9333853,222.8885949,268.9781757,143.2606216,134.2567717,152.2644716,,,,66.4846614,395,594122,59.92805694,73.04126586,,,,,,,103.6458766,92.14500371,115.1467495,40.4606287,28.77146228,55.31101138,19.40780323,13.09436334,27.70584589,,,,6.695361071,434,64821,6.065441344,7.325280799,,,,,,,11.1173984,9.925097125,12.30969967,4.277617367,3.055992561,5.824900755,1.811335145,1.281808554,2.486199005,,,,,,,0.081,,,0.069,0.093,0.136,,,0.118,0.155,0.084,,,0.073,0.096,2381.8,13622,571917,,,0.103,68900,,,,0.016061023,9664.286887,601723,,,56.73616248,1185,2088615,53.50575837,59.96656659,,,,,,,114.9044904,107.983869,121.8251118,13.05202706,8.868219147,18.52631057,11.10881274,8.897703609,13.70267947,,,,0.317,,,0.304,0.331,0.041212209,17589,426791,0.034063273,0.048361145,0.024257116,3062,126231,0.013533712,0.03498052,0.002256614,1516,671803,,,443.1418206,0.748465663,3280.525,4383,,,0.068394475,1842,26932,0.051098936,0.085690014,2.923146748,,,,,,,2.690941213,2.898236546,3.974167332,2.832881684,,,,,,,2.561080394,2.80010491,4.060038395,0.33536048,,,,,-4930.805,,,,,0.869392097,89084,102467,0.84311919,0.895665004,99897,,,97076.74468,102717.2553,60390,38452.29787,82327.70213,123660,112240.766,135079.234,57076,54701.3617,59450.6383,94203,84986.82979,103419.1702,164829,160602.7872,169055.2128,,,,,,,,,,,66.46698387,,,,,0.412234602,,99897,,,8.310442758,357,42958,,,22.32124404,1080,4838440,20.98998494,23.65250314,,,,,,,46.48697815,43.6256451,49.34831119,7.980164651,5.775284727,10.74922942,0.893871228,0.51092464,1.451590873,,,,6.380514047,229,3485042,5.52759129,7.233436804,6.570939461,,,,,,,6.132948519,4.937867579,7.529901755,5.18675091,2.902985111,8.55475685,8.251941794,6.612696577,9.891187011,,,,20.6023342,718,3485042,19.09534453,22.10932388,,,,,,,42.75636919,39.5042021,46.00853627,7.119500821,4.730856592,10.28966095,1.616855954,1.000859319,2.471536077,,,,6.035003018,292,4838440,5.342786215,6.727219821,,,,,,,10.40684817,9.05302369,11.76067264,5.938727182,4.062084996,8.383710828,1.564274649,1.039449144,2.260812403,,,,15.44662309,,45900,,,577,132,0.652158515,344356,528025,,,0.613,,,,,573.1945759,,,,,0.414411704,130865,315785,0.404773488,0.424049921,0.167582607,51138,305151,0.159368789,0.175796425,0.890263945,281132,315785,0.883027564,0.897500327,671803,,,,,0.185284972,124475,671803,,,0.129889268,87260,671803,,,0.433570556,291274,671803,,,0.006978236,4688,671803,,,0.046680351,31360,671803,,,0.001677575,1127,671803,,,0.117461518,78911,671803,,,0.375333245,252150,671803,,,0.021152027,13306,629065,0.018702337,0.023601718,0.524143238,352121,671803,,,0,0,689545,, -12,000,12000,FL,Florida,2024,,8299.130246,314112,58854563,8253.285658,8344.974835,0,6986.441173,6019.631302,7953.251044,,3464.697995,3297.83359,3631.562399,,11683.82024,11552.91521,11814.72526,,5467.507867,5398.382706,5536.633029,,9144.04284,9074.603885,9213.481794,,6157.193465,4627.504833,7686.882098,,,0.133,,,0.121,0.146,2.969398091,,,2.67236025,3.266435931,4.183708979,,,3.837070788,4.530347169,0.088121351,135706,1539990,0.087673632,0.088569071,0,0.076968621,0.064256842,0.089680399,0.091398972,0.088817632,0.093980313,0.141274771,0.140091666,0.142457876,0.073081206,0.072343879,0.073818533,0.071683484,0.071059214,0.072307754,0.069679849,0.054366731,0.084992967,0.089311934,0.085334517,0.09328935,0.155,,,0.139,0.173,0.283,,,0.264,0.303,7.2,0.075920856,0.106,,,0.258,,,0.24,0.277,0.8747155,18839786,21538187,,,0.171809654,,,0.154837825,0.190223071,0.216289922,3569,16501,0.212481328,0.220120087,479.3,104400,21781128,,,15.99510888,66425,4152832,15.87346858,16.11674918,10.51022358,8.546087003,12.47436016,2.23704413,1.970698254,2.503390006,23.82080129,23.48785322,24.15374936,18.06712958,17.83487135,18.29938781,11.99281891,11.83194767,12.15369015,12.68255188,8.730085155,17.81101817,13.03793358,12.40806503,13.66780212,0.150982866,2534999,16789978,0.148599887,0.153365845,0.000730128,15903,21781128,,,1369.623845,0.000639654,14229,22244823,,,1563.344086,0.002057468,45768,22244823,,,486.0344127,3035,,,,,4726,1936,5133,3916,2741,0.44,,,,,0.36,0.38,0.38,0.31,0.46,0.43,,,,,0.33,0.4,0.26,0.26,0.46,0.892754274,13908975,15579847,0.891502688,0.894005861,0.646436606,3505265,5422442,0.642699441,0.65017377,0.029107877,313268,10762310,,,0.173,729819,,0.167042553,0.178957447,0.287449087,0.232205045,0.34269313,0.096495569,0.085832177,0.107158961,0.293088971,0.284512772,0.301665169,0.203408263,0.198836204,0.207980322,0.11099977,0.107407569,0.114591971,4.616597539,134680,29173,4.581344357,4.65185072,0.278943005,1179019,4226738,0.274694384,0.283191626,7.081818719,15425,21781128,,,91.03628884,97660,107275902,90.4653202,91.60725748,59.8013267,50.59239222,69.01026118,29.83824155,27.90591038,31.77057272,77.76202243,76.42361876,79.10042609,49.37486131,48.55441235,50.19531027,120.2861727,119.3872186,121.1851268,40.31677466,26.79020397,58.26896464,7.8,,,,,0.462686567,,,,,0.187961265,1490780,7931315,0.186232718,0.189689812,0.161189876,0.15968487,0.162694882,0.029721427,0.029133378,0.030309476,0.008365574,0.008003553,0.008727594,0.741001886,7334018,9897435,0.739435756,0.742568016,0.633766336,0.612496224,0.655036447,0.691775878,0.680994662,0.702557094,0.75297124,0.747830308,0.758112172,0.725291971,0.721607042,0.7289769,0.75328521,0.751168438,0.755401983,0.428,,9897435,0.424847616,0.431152385,78.46886173,,,78.42775171,78.50997176,93.61948403,90.50782185,96.73114621,88.30672456,87.86845122,88.74499791,74.50787674,74.39481634,74.62093714,81.89645324,81.80938341,81.98352307,77.69256935,77.63630107,77.74883762,86.90394172,82.77665868,91.03122477,386.8693732,314112,58854563,385.4354254,388.303321,276.2208106,251.1161776,301.3254436,173.3294259,167.766883,178.8919689,536.1699898,531.6554093,540.6845702,260.6660631,258.263233,263.0688932,422.7842337,420.7022994,424.8661679,262.6123208,216.6481549,308.5764868,53.45852617,10115,18921210,52.41671237,54.50033998,44.59087869,26.42738073,70.47281261,30.11509796,25.37404832,34.8561476,94.82353671,91.71515606,97.93191737,43.91628562,42.23912836,45.59344289,43.76889819,42.30793909,45.22985728,,,,6.026372439,9283,1540396,5.903778821,6.148966058,,,,3.249187703,2.739307003,3.759068403,10.69376352,10.3432146,11.04431243,4.993717788,4.791252437,5.196183139,4.22851718,4.072308569,4.384725791,,,,16.96868126,15.12098041,18.81638211,0.090185949,,,0.080044061,0.101471116,0.129305807,,,0.116410242,0.143398066,0.095,,,0.085,0.105,624.7,117244,18767370,,,0.106,2314370,,,,0.075920856,1427411.542,18801310,,,31.27453324,20326,64992177,30.84458028,31.70448621,27.44220367,20.01653166,36.7198276,4.591932082,3.672952946,5.670998766,20.40034388,19.51937625,21.2813115,15.40200777,14.81624823,15.98776732,44.36379836,43.66031871,45.06727802,,,,0.342706064,,,0.321813069,0.364227005,0.178018024,2240017,12583091,0.174443556,0.181592492,0.072966197,322564,4420732,0.068200239,0.077732154,0.0015832,35218,22244823,,,631.6322051,0.90108016,185578.36,205951,,,0.069781819,70549,1010994,0.066820212,0.072743425,3.206029358,,,,,,3.731380252,2.84487371,3.116117764,3.469219502,3.288920204,,,,,,3.99119205,2.919994529,3.215294932,3.533854754,0.217832776,,,,,-4079.558,,,,,0.843330981,45410,53846,0.836425518,0.850236444,69287,,,68559,70015,62507,57625.46809,67388.53192,87205,84919.7234,89490.2766,51249,50510.2766,51987.7234,62425,61786.3617,63063.6383,74121,73700.40426,74541.59575,,,,,,0.538178287,1524242,2832225,,,56.69836585,,,,,0.249680294,,,,,5.70098424,,,,,6.267564967,9286,148159613,6.140085401,6.395044533,2.923883342,1.45959203,5.231634959,1.742423917,1.365782206,2.190836478,20.97787453,20.38643662,21.56931244,4.039785459,3.838408569,4.241162348,3.393756502,3.265861635,3.521651369,,,,14.13829728,16720,107275902,13.91409991,14.36249464,15.58597941,8.708334099,5.390596061,13.31161372,6.346859388,5.472624208,7.221094567,6.023448308,5.648351378,6.398545238,7.704128415,7.382325387,8.025931444,20.15751276,19.77267563,20.54234988,14.79595193,7.095234064,27.2102824,13.68247642,14678,107275902,13.46112244,13.90383041,5.168015888,2.825402377,8.671052511,3.159726452,2.562325297,3.854598312,22.53467615,21.81418441,23.25516789,6.505004009,6.207205577,6.802802441,15.46314155,15.14082801,15.78545509,,,,15.40028321,22817,148159613,15.20045559,15.60011082,16.48006975,12.63517498,21.12670565,6.325237507,5.563667254,7.086807759,17.67471655,17.13183555,18.21759755,12.84317305,12.48411336,13.20223273,16.63379804,16.35065331,16.91694277,13.6007449,7.241823851,23.257688,15.99060257,,1936700,,,16053,14916,0.723517535,11067456,15296735,,,,,,,,144.9403965,,,,,0.668697367,5585924,8353441,0.665016935,0.672377799,0.172098194,1395758,8110242,0.170638239,0.173558148,0.887935882,7417320,8353441,0.885201734,0.89067003,22244823,,,,,0.1931395,4296354,22244823,,,0.215519629,4794196,22244823,,,0.154157262,3429201,22244823,,,0.005484962,122012,22244823,,,0.03134635,697294,22244823,,,0.001262361,28081,22244823,,,0.270850885,6025030,22244823,,,0.523388925,11642694,22244823,,,0.062895386,1291240,20529964,0.062040986,0.063749785,0.507956256,11299397,22244823,,,0.084658054,1823381,21538187,, -12,001,12001,FL,Alachua County,2024,1,7877.132405,3215,770836,7460.526067,8293.738742,0,,,,2,2392.687325,1589.923351,3458.099372,,12692.10542,11613.9089,13770.30195,,4932.106894,3869.840424,5994.373364,,7126.474409,6601.525575,7651.423242,,,,,2,,0.153,,,0.136,0.169,3.617880246,,,3.361447969,3.895622395,5.279492275,,,5.025471143,5.517818051,0.105894793,2003,18915,0.101509642,0.110279943,0,,,,0.072712418,0.058165303,0.087259534,0.175873344,0.166084585,0.185662102,0.081922447,0.069360613,0.094484281,0.07231405,0.067154281,0.077473818,,,,0.108823529,0.0757211,0.141925959,0.164,,,0.138,0.19,0.319,,,0.306,0.332,7.8,0.072112684,0.111,,,0.245,,,0.222,0.267,0.861635807,239938,278468,,,0.17565634,,,0.169550857,0.181801859,0.293286219,83,283,0.263397907,0.323590536,928.2,2592,279238,,,9.327765976,764,81906,8.666331186,9.989200765,,,,,,,26.30054455,23.88122695,28.71986215,5.611472344,4.312009423,7.179510759,4.923693884,4.27453504,5.572852729,,,,8.327299059,5.278793279,12.49503725,0.124237101,27725,223162,0.109939229,0.138534974,0.00155423,434,279238,,,643.40553,0.00191177,543,284030,,,523.0755065,0.006745766,1916,284030,,,148.2411274,2798,,,,,,3389,5020,2642,2415,0.47,,,,,,0.47,0.43,0.43,0.47,0.44,,,,,,0.45,0.32,0.36,0.46,0.936365462,158566,169342,0.929681755,0.943049168,0.772287154,56231,72811,0.740446009,0.8041283,0.028056211,3969,141466,,,0.15,7360,,0.095191489,0.204808511,,,,0.040850354,0,0.097158397,0.381795566,0.321737789,0.441853343,0.127606039,0.083663276,0.171548802,0.070378013,0.041416466,0.09933956,5.888433369,127832,21709,5.404967763,6.371898975,0.298430279,14658,49117,0.26136141,0.335499147,9.167806674,256,279238,,,73.13482242,992,1356399,68.58363787,77.68600697,,,,17.02417433,9.307274523,28.56367178,66.35651142,56.66250363,76.05051921,40.80713703,30.98657001,52.75268746,88.61735052,82.1843873,95.05031375,,,,7.1,,,,,0,,,,,0.204549912,20860,101980,0.191521863,0.21757796,0.189093305,0.173872989,0.204313621,0.01951363,0.014377197,0.024650063,0.009707786,0.006965417,0.012450155,0.708768003,92468,130463,0.692096165,0.725439842,,,,0.701722465,0.661597119,0.74184781,0.735150104,0.687437184,0.782863024,0.671927847,0.623485584,0.72037011,0.74847574,0.728627692,0.768323787,0.246,,130463,0.228287237,0.263712763,77.88281609,,,77.50487273,78.26075945,,,,93.05195917,87.68444533,98.41947302,72.94369367,72.08131982,73.80606752,85.50569637,83.32776381,87.68362893,78.35195594,77.89472702,78.80918486,,,,379.0753689,3215,770836,365.4103439,392.7403939,,,,128.313831,95.23699861,169.1657898,602.8108208,562.8888443,642.7327973,230.9680678,192.2344612,269.7016745,352.4386957,336.0332129,368.8441784,,,,69.35774726,175,252315,59.08155962,79.6339349,,,,,,,101.5681507,78.55280039,129.219591,53.25877105,30.44198939,86.48890752,57.3456704,45.02868542,71.9922378,,,,9.091859128,174,19138,7.740925087,10.44279317,,,,,,,13.81780962,10.97333538,17.17427571,,,,5.744230575,4.350624142,7.442316981,,,,,,,0.109,,,0.099,0.119,0.159,,,0.149,0.17,0.105,,,0.099,0.111,425.4,1033,242834,,,0.111,30710,,,,0.072112684,17836.06281,247336,,,14.39904137,118,819499,11.80098453,16.9970982,,,,,,,14.03123475,8.894599217,21.0537414,,,,16.57627208,13.18360111,20.57552435,,,,0.329,,,0.315,0.342,0.143233809,24826,173325,0.126552958,0.15991466,0.063312121,3323,52486,0.04663127,0.079992972,0.00340457,967,284030,,,293.7228542,0.87480168,1874.7,2143,,,0.033589165,744,22150,0.020255822,0.046922508,3.251949402,,,,,,,2.672968496,3.300074051,3.652701468,3.253164471,,,,,,4.220200522,2.672974222,3.343589697,3.61994974,0.078953536,,,,,-2142.381,,,,,0.839042418,45633,54387,0.776658921,0.901425916,58783,,,53698.91489,63867.08511,40726,29240.04255,52211.95745,73516,47072.08511,99959.91489,41144,37191.82979,45096.17021,48494,46124.12766,50863.87234,66775,63908.2766,69641.7234,,,,,,0.481658851,14483,30069,,,41.64036659,,,,,0.279689706,,58783,,,6.697064691,94,14036,,,4.947179549,93,1879859,3.993012387,6.060629176,,,,,,,14.10080747,10.56247241,18.44420335,,,,3.049936169,2.124392292,4.241722898,,,,12.9104144,175,1356399,10.90421857,14.91661022,12.90180839,,,,,,,4.68298885,2.493494334,8.008053556,,,,17.52698414,14.52602444,20.52794383,,,,10.91124367,148,1356399,9.153322207,12.66916513,,,,,,,16.22048057,11.78582601,21.77523807,,,,11.91289486,9.671463885,14.51800309,,,,13.1924788,248,1879859,11.55054125,14.83441635,,,,,,,15.6971253,11.94937907,20.24814797,16.24848653,11.04005827,23.06342964,13.07115501,10.97933455,15.16297547,,,,23.20574163,,20900,,,252,233,0.689791279,142604,206735,,,0.631,,,,,105.8122323,,,,,0.545374182,59226,108597,0.533214929,0.557533434,0.201638932,20866,103482,0.187587638,0.215690227,0.873771835,94889,108597,0.862753857,0.884789814,284030,,,,,0.175678626,49898,284030,,,0.155339225,44121,284030,,,0.197257332,56027,284030,,,0.003996057,1135,284030,,,0.063025033,17901,284030,,,0.00084146,239,284030,,,0.114209767,32439,284030,,,0.597796008,169792,284030,,,0.010725784,2855,266181,0.008484786,0.012966782,0.517135514,146882,284030,,,0.232414497,64720,278468,, -12,003,12003,FL,Baker County,2024,1,10333.95027,541,82447,9074.956947,11592.94359,0,,,,2,,,,2,10973.48249,7643.432623,15261.45774,,,,,2,10394.50409,9003.044299,11785.96387,,,,,2,,0.176,,,0.158,0.197,4.053128692,,,3.714305843,4.381727622,5.31841069,,,5.045378421,5.585523968,0.098217986,237,2413,0.086343257,0.110092715,0,,,,,,,0.162068966,0.119654779,0.204483152,,,,0.089826303,0.077341478,0.102311127,,,,,,,0.248,,,0.218,0.279,0.38,,,0.365,0.394,7,0.170749249,0.099,,,0.294,,,0.268,0.321,0.491524824,13890,28259,,,0.192424734,,,0.184002799,0.201394595,0.310344828,9,29,0.211895015,0.410210813,417.9,120,28715,,,38.43648209,236,6140,33.53255842,43.34040575,,,,,,,42.46575343,28.85341915,60.27674727,,,,38.87346291,33.4311781,44.31574772,,,,,,,0.130401374,2885,22124,0.112529034,0.148273715,0.000383075,11,28715,,,2610.454546,0.000467575,13,27803,,,2138.692308,0.001402726,39,27803,,,712.8974359,4050,,,,,,,4763,,4026,0.36,,,,,,,0.33,,0.36,0.35,,,,,,,0.17,0.33,0.36,0.850640038,16015,18827,0.822621812,0.878658265,0.463311817,3517,7591,0.361303863,0.56531977,0.027512056,348,12649,,,0.179,1202,,0.108702128,0.249297872,,,,,,,,,,,,,0.227086982,0.167435237,0.286738727,3.993672383,135066,33820,3.322314351,4.665030416,0.250152253,1643,6568,0.16146211,0.338842397,7.313250914,21,28715,,,89.50315343,129,144129,74.05773945,104.9485674,,,,,,,64.41064262,34.29595447,110.1441605,,,,96.76861932,78.84682022,114.6904184,,,,8,,,,,0,,,,,0.087202718,770,8830,0.057862677,0.116542759,0.068062827,0.040191277,0.095934377,0.021517554,0.00429411,0.038740998,0.002265006,0,0.007710128,0.774929279,8766,11312,0.707224231,0.842634326,,,,,,,,,,,,,0.805790297,0.760070501,0.851510094,0.522,,11312,0.436785601,0.6072144,74.4423423,,,73.38227011,75.50241449,,,,,,,74.08830141,70.37820191,77.79840092,,,,74.13539908,73.0113862,75.25941196,,,,547.4317936,541,82447,500.4397786,594.4238085,,,,,,,556.0726716,427.301509,711.4585057,,,,562.1771669,509.6771662,614.6771676,,,,66.70001668,20,29985,40.742103,103.0127661,,,,,,,,,,,,,54.10129427,28.80666066,92.51486087,,,,8.396305626,20,2382,5.128681606,12.96741306,,,,,,,,,,,,,,,,,,,,,,0.123,,,0.113,0.134,0.175,,,0.163,0.185,0.104,,,0.097,0.11,544,130,23898,,,0.099,2770,,,,0.170749249,4629.865893,27115,,,30.86031706,27,87491,20.3371434,44.9001411,,,,,,,,,,,,,35.77510339,23.15176063,52.81110988,,,,0.377,,,0.362,0.391,0.154081102,2371,15388,0.130251315,0.177910889,0.077380952,546,7056,0.054742655,0.10001925,0.001150955,32,27803,,,868.84375,0.86,294.98,343,,,,,,,,3.467045561,,,,,,,2.963103354,,3.52068438,3.537930279,,,,,,,3.104574989,,3.593243088,0.004180348,,,,,-2015.604,,,,,0.84966724,40982,48233,0.736772435,0.962562046,67375,,,57781.12766,76968.87234,,,,105625,56260.40426,154989.5957,60127,38882.74468,81371.25532,114688,51044.59575,178331.4043,70443,59362.14894,81523.85106,,,,,,0.507751158,2522,4967,,,24.22748995,,,,,0.213283859,,67375,,,6.380510441,11,1724,,,6.015459732,12,199486,3.108275823,10.50779756,,,,,,,,,,,,,,,,,,,13.79314738,20,144129,8.304375752,21.53970822,13.8764579,,,,,,,,,,,,,15.26908494,8.894804659,24.44728412,,,,15.95792658,23,144129,10.11595657,23.94472514,,,,,,,,,,,,,17.28011059,10.55514048,26.68772931,,,,23.56055062,47,199486,17.3114064,31.33053765,,,,,,,,,,,,,23.63375149,16.72464916,32.43917041,,,,21.25,,3200,,,47,21,0.645796968,14059,21770,,,0.553,,,,,23.19620632,,,,,0.798089738,7186,9004,0.738741308,0.857438168,0.10430839,920,8820,0.064041003,0.144575777,0.859062639,7735,9004,0.825409083,0.892716195,27803,,,,,0.246016617,6840,27803,,,0.151350574,4208,27803,,,0.124986512,3475,27803,,,0.005323167,148,27803,,,0.009315542,259,27803,,,0.000863216,24,27803,,,0.037837643,1052,27803,,,0.803114772,22329,27803,,,0.003497833,92,26302,0,0.010152289,0.485235406,13491,27803,,,0.614954528,17378,28259,, -12,005,12005,FL,Bay County,2024,1,11434.40546,3541,485352,10850.32303,12018.48789,0,,,,2,5585.278343,3126.03789,9212.067244,1,13707.30335,11854.08354,15560.52316,,7949.727337,6283.929567,9921.619498,,11616.08099,10933.12992,12299.03207,,,,,2,,0.158,,,0.141,0.177,3.971652882,,,3.62689169,4.329413013,5.535663681,,,5.243969679,5.810509496,0.085076428,1269,14916,0.080599018,0.089553839,0,,,,0.084142395,0.053189716,0.115095074,0.135754432,0.121795125,0.149713738,0.074004975,0.061209753,0.086800197,0.075069417,0.069926308,0.080212526,,,,0.079395085,0.056356188,0.102433982,0.208,,,0.179,0.238,0.311,,,0.298,0.324,7.2,0.103361531,0.121,,,0.272,,,0.246,0.296,0.686335723,120257,175216,,,0.182019122,,,0.174851213,0.189287827,0.124260355,21,169,0.089972954,0.163372157,457.7,820,179168,,,27.78453307,914,32896,25.98323296,29.58583319,,,,,,,35.27106466,29.83959781,40.70253151,38.76707976,31.88785904,45.64630048,25.20299951,23.13031055,27.27568847,,,,29.56225128,22.07850324,38.76695949,0.158707573,22865,144070,0.142026722,0.175388424,0.000574879,103,179168,,,1739.495146,0.000588763,109,185134,,,1698.477064,0.002792572,517,185134,,,358.0928433,2872,,,,,,1451,4225,4521,2771,0.37,,,,,,0.32,0.36,0.31,0.37,0.38,,,,,,0.4,0.3,0.26,0.39,0.903649556,116944,129413,0.89497697,0.912322142,0.650999425,30582,46977,0.614100536,0.687898315,0.026838695,2361,87970,,,0.178,6700,,0.118425532,0.237574468,,,,0.027777778,0,0.158746394,0.265628801,0.185206075,0.346051526,0.280840544,0.191156028,0.37052506,0.103967338,0.080941337,0.126993338,3.830814389,122678,32024,3.514413973,4.147214805,0.270730995,10196,37661,0.241416612,0.300045378,8.483657796,152,179168,,,100.8897762,902,894045,94.30562253,107.47393,,,,,,,68.38409406,52.99673361,86.84538216,60.48716691,42.5885476,83.37359186,113.5750006,105.5735572,121.576444,,,,8.4,,,,,0,,,,,0.155572177,11440,73535,0.142074645,0.169069709,0.130617301,0.116882078,0.144352524,0.026314,0.019412816,0.033215185,0.006595499,0.003863829,0.009327168,0.78075719,67085,85923,0.762594837,0.798919542,,,,0.908371041,0.809066676,1,0.741067804,0.695323489,0.786812118,0.670053796,0.610037579,0.730070012,0.797592802,0.775941859,0.819243746,0.337,,85923,0.312465732,0.361534268,74.54737508,,,74.09215559,75.00259457,,,,82.11163955,78.35220658,85.87107251,72.45862474,70.93885387,73.9783956,82.12879668,78.98029489,85.27729847,74.2587378,73.74797541,74.76950019,,,,535.8706634,3541,485352,517.2001725,554.5411542,,,,267.6530713,191.2152782,364.4675162,661.4041579,593.7010793,729.1072365,314.988356,253.925072,386.3052565,547.0615195,525.7160143,568.4070247,,,,81.09948616,131,161530,67.21152395,94.98744837,,,,,,,146.9372762,100.5049881,207.4315919,65.23157208,32.56336576,116.7173013,72.2925066,57.14422652,90.22431999,,,,8.339352551,127,15229,6.888956712,9.78974839,,,,,,,19.91150443,14.52358796,26.64315951,,,,6.165228113,4.758192899,7.858089331,,,,,,,0.116,,,0.106,0.127,0.167,,,0.156,0.179,0.102,,,0.095,0.108,333.9,510,152740,,,0.121,22000,,,,0.103361531,17452.80118,168852,,,37.50987728,197,525195,32.2718398,42.74791476,,,,,,,21.05189292,10.87782027,36.77342032,35.46679762,18.88457601,60.64930408,42.51923996,36.12752935,48.91095056,,,,0.35,,,0.334,0.364,0.185784442,19899,107108,0.164337633,0.20723125,0.082992916,3210,38678,0.061546107,0.104439724,0.001690667,313,185134,,,591.4824281,0.91,1585.22,1742,,,0.0558895,437,7819,0.03324437,0.07853463,3.200399297,,,,,,3.801582521,2.7045979,2.968262518,3.3566949,3.351181478,,,,,,4.052983443,2.77429583,3.194105697,3.500599542,0.077244323,,,,,-3815.772,,,,,0.783235632,41553,53053,0.73659008,0.829881185,65521,,,60761,70281,66186,51920.29787,80451.70213,54919,28046.14894,81791.85106,45756,42985.78723,48526.21277,65842,62553.48936,69130.51064,70736,67697.70213,73774.29787,,,,,,0.45760965,11988,26197,,,47.77133053,,,,,0.244486501,,65521,,,5.265677358,55,10445,,,5.636468427,71,1259654,4.402128605,7.109637973,,,,,,,10.14419245,5.545924409,17.02023123,,,,5.710174389,4.30168481,7.432576854,,,,21.92687799,213,894045,18.85958937,24.99416662,23.82430415,,,,,,,,,,,,,26.35041349,22.47426258,30.22656439,,,,17.89619091,160,894045,15.1231474,20.66923442,,,,,,,12.24789744,6.328667336,21.394612,,,,20.69001949,17.27488811,24.10515086,,,,18.57652975,234,1259654,16.1963337,20.9567258,,,,,,,17.3900442,11.14212945,25.87500731,,,,19.93369968,17.1140616,22.75333777,,,,43.12101911,,15700,,,405,272,0.680024855,93024,136795,,,0.473,,,,,78.80223249,,,,,0.685717347,51208,74678,0.668728619,0.702706074,0.129758684,9496,73182,0.115735412,0.143781955,0.904469857,67544,74678,0.89683253,0.912107184,185134,,,,,0.208097918,38526,185134,,,0.184871499,34226,185134,,,0.112140396,20761,185134,,,0.00835611,1547,185134,,,0.024452559,4527,185134,,,0.001685266,312,185134,,,0.079423553,14704,185134,,,0.747112902,138316,185134,,,0.018127047,3099,170960,0.014220872,0.022033223,0.502976223,93118,185134,,,0.142093188,24897,175216,, -12,007,12007,FL,Bradford County,2024,1,10763.47061,558,78523,9372.335291,12154.60592,0,,,,2,,,,2,10187.16368,7054.906991,14235.54016,,,,,2,11569.88086,9857.612784,13282.14894,,,,,2,,0.218,,,0.197,0.241,4.401124173,,,4.074599902,4.732361363,5.627095564,,,5.374447701,5.880007921,0.11510442,237,2059,0.101319003,0.128889837,0,,,,,,,0.198412698,0.158208601,0.238616796,,,,0.096485623,0.081857192,0.111114054,,,,,,,0.261,,,0.234,0.288,0.383,,,0.37,0.395,8,0.003741817,0.131,,,0.325,,,0.3,0.35,0.479631135,13575,28303,,,0.174496691,,,0.167280919,0.18200132,0.222222222,10,45,0.146097053,0.305418946,420.5,120,28540,,,33.19587629,161,4850,28.06812124,38.32363134,,,,,,,28.25552826,17.91158113,42.39716572,,,,35.52447552,29.3459921,41.70295895,,,,,,,0.15326464,2960,19313,0.133009321,0.17351996,0.000140154,4,28540,,,7135,0.000256288,7,27313,,,3901.857143,0.001208216,33,27313,,,827.6666667,4390,,,,,,,4941,,4198,0.4,,,,,,,0.52,,0.39,0.34,,,,,,0.36,0.3,,0.34,0.821331083,16549,20149,0.796864392,0.845797775,0.403764115,3218,7970,0.328242789,0.479285442,0.031331828,347,11075,,,0.228,1256,,0.145787234,0.310212766,,,,,,,0.250517598,0.0613899,0.439645297,0.328813559,0.031571881,0.626055238,0.199840553,0.131701401,0.267979705,5.026244168,103420,20576,3.652434514,6.400053822,0.292838875,1603,5474,0.184653306,0.401024443,10.86194814,31,28540,,,116.3421458,163,140104,98.48141034,134.2028813,,,,,,,72.45326764,44.25633816,111.8981956,,,,135.1457223,112.5971613,157.6942834,,,,7.8,,,,,0,,,,,0.189914163,1770,9320,0.148240981,0.231587345,0.150900164,0.11078794,0.191012387,0.018776824,0.006376841,0.031176807,0.029506438,0.005893155,0.05311972,0.749434815,7956,10616,0.70350637,0.795363261,,,,,,,,,,,,,0.722679201,0.661038075,0.784320327,0.49,,10616,0.40770094,0.572299061,74.594635,,,73.49841247,75.69085753,,,,,,,75.02337202,72.00839918,78.03834485,,,,73.93568009,72.68314926,75.18821092,,,,543.0054874,558,78523,496.38572,589.6252549,,,,,,,473.9321721,370.8227363,596.8391353,,,,575.2490446,519.5288005,630.9692887,,,,79.21287418,19,23986,47.69132479,123.7007153,,,,,,,,,,,,,75.46293609,40.18083526,129.043919,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.141,,,0.13,0.153,0.182,,,0.171,0.192,0.123,,,0.116,0.13,305.4,75,24562,,,0.131,3670,,,,0.003741817,106.7166266,28520,,,25.78104859,22,85334,16.15684589,39.03281739,,,,,,,,,,,,,30.77820255,18.53048851,48.06397585,,,,0.4,,,0.387,0.411,0.180381117,2499,13854,0.154168351,0.206593883,0.085669236,489,5708,0.05945647,0.111882002,0.000878702,24,27313,,,1138.041667,0.875,157.5,180,,,,,,,,3.061570748,,,,,,,2.7906766,,3.110819445,3.257176821,,,,,,,2.846736334,,3.375649664,0.016563518,,,,,-3802.727,,,,,0.909049997,42419,46663,0.823908493,0.994191501,57664,,,50298.21277,65029.78723,,,,,,,42379,36066.48936,48691.51064,,,,56825,48737.17021,64912.82979,,,,,,0.60830136,1744,2867,,,34.97880339,,,,,0.235901082,,57664,,,7.806955287,11,1409,,,7.733633055,15,193958,4.328455714,12.75545163,,,,,,,,,,,,,,,,,,,16.58855514,24,140104,10.39595919,25.11527184,17.1301319,,,,,,,,,,,,,22.54342116,13.95473301,34.46001393,,,,14.98886541,21,140104,9.278343933,22.91207299,,,,,,,,,,,,,16.64838609,9.698298407,26.65567888,,,,33.5124099,65,193958,25.86417045,42.71431744,,,,,,,,,,,,,37.26961401,27.91749839,48.74957276,,,,27.6,,2500,,,37,32,0.61907357,13632,22020,,,0.536,,,,,34.83117422,,,,,0.680269108,6168,9067,0.629632705,0.730905511,0.172987436,1487,8596,0.124907572,0.2210673,0.833682585,7559,9067,0.7988446,0.868520571,27313,,,,,0.207190715,5659,27313,,,0.191740197,5237,27313,,,0.175996778,4807,27313,,,0.006883169,188,27313,,,0.006663494,182,27313,,,0.000732252,20,27313,,,0.04854831,1326,27313,,,0.74265002,20284,27313,,,0.000530002,14,26415,0,0.005468085,0.468604694,12799,27313,,,0.707486839,20024,28303,, -12,009,12009,FL,Brevard County,2024,1,10384.99468,11094,1628351,10062.40031,10707.58904,0,9887.075357,5108.796113,17270.73091,1,3681.869499,2616.371024,4747.367974,,14421.41582,13286.39722,15556.43441,,6875.908953,6111.067007,7640.7509,,10634.82519,10250.3729,11019.27749,,,,,2,,0.14,,,0.123,0.158,3.390568783,,,3.118906269,3.690456493,5.024456695,,,4.771992384,5.295981661,0.082584782,2988,36181,0.079748504,0.08542106,0,,,,0.08047105,0.063768933,0.097173167,0.146135487,0.136754475,0.1555165,0.070750145,0.063753285,0.077747006,0.071124235,0.067852157,0.074396314,,,,0.061497326,0.044280577,0.078714075,0.168,,,0.142,0.195,0.33,,,0.317,0.343,7.5,0.120568884,0.099,,,0.237,,,0.214,0.261,0.842154458,510861,606612,,,0.188708121,,,0.182013466,0.19525448,0.2,87,435,0.176379396,0.224570538,314.3,1938,616628,,,13.92498897,1484,106571,13.21649856,14.63347939,,,,,,,23.31588607,20.84836463,25.78340752,16.74982181,14.79484456,18.70479906,11.69766951,10.87462266,12.52071636,,,,12.96296296,10.10526558,16.37792386,0.135954928,63248,465213,0.124040035,0.147869822,0.000723289,446,616628,,,1382.573991,0.000600926,379,630693,,,1664.097625,0.001915353,1208,630693,,,522.0968543,2673,,,,,,1486,4173,2821,2577,0.41,,,,,,0.35,0.4,0.38,0.42,0.38,,,,,0.28,0.35,0.27,0.28,0.39,0.926839118,422292,455626,0.922393875,0.931284361,0.703235171,95448,135727,0.678989817,0.727480525,0.028481632,8446,296542,,,0.134,14880,,0.092297872,0.175702128,0.244186047,0,0.632665616,0.055654497,0,0.113878158,0.192451141,0.136943868,0.247958415,0.202965035,0.159589627,0.246340443,0.108978281,0.0916169,0.126339661,4.359321497,137493,31540,4.19241495,4.526228043,0.232256187,25544,109982,0.209185489,0.255326886,7.103148089,438,616628,,,122.6336192,3695,3013040,118.6794214,126.5878171,,,,32.60557686,21.10061018,48.13226348,106.6892857,95.03598525,118.3425861,67.74350615,58.87195149,76.61506081,138.2911677,133.4008181,143.1815174,,,,6.7,,,,,1,,,,,0.147602805,34835,236005,0.139568971,0.155636639,0.133063133,0.124867778,0.141258488,0.014575962,0.012085468,0.017066457,0.005487172,0.004017684,0.00695666,0.777421952,209502,269483,0.766480988,0.788362917,,,,0.783636624,0.755513366,0.811759882,0.812914459,0.773884202,0.851944717,0.742679168,0.71643444,0.768923896,0.778992549,0.765405643,0.792579456,0.345,,269483,0.329602564,0.360397436,76.25316286,,,76.00345946,76.50286626,83.08436158,75.18705802,90.98166514,88.21601912,85.65241341,90.77962483,72.91692669,72.07137106,73.76248233,82.00228293,81.06622752,82.93833833,75.88336153,75.59695799,76.16976507,,,,460.0867659,11094,1628351,450.5422332,469.6312986,359.0065624,222.2307205,548.7796663,189.9732465,154.6598361,225.2866569,597.7589009,562.4350938,633.0827079,290.6943146,267.0500395,314.3385897,478.2128923,466.7942936,489.6314911,,,,51.25839356,250,487725,44.90433727,57.61244986,,,,,,,114.2230548,89.84367844,143.1795883,56.12817635,40.78281886,75.34945694,38.78011674,31.75307954,45.80715394,,,,5.938898403,215,36202,5.145040565,6.732756242,,,,,,,9.679821296,7.229353537,12.69379779,7.224563516,5.059995468,10.00184116,4.790668611,3.915073594,5.666263628,,,,,,,0.102,,,0.093,0.113,0.157,,,0.146,0.167,0.096,,,0.089,0.102,326.5,1760,539122,,,0.099,59500,,,,0.120568884,65514.23787,543376,,,55.6094074,1016,1827029,52.18994775,59.02886706,,,,,,,40.29403757,31.63948611,50.58547427,33.0935672,25.69844984,41.95398201,63.79259275,59.51653789,68.0686476,,,,0.346,,,0.332,0.36,0.158034202,55882,353607,0.14373633,0.172332074,0.068956999,8095,117392,0.052276148,0.08563785,0.001282716,809,630693,,,779.5957973,0.91,5010.46,5506,,,0.072524986,1923,26515,0.053341694,0.091708278,3.348473114,,,,,,3.789132934,2.877623048,3.184999288,3.483999669,3.292477088,,,,,,3.94324391,2.796781767,3.117785618,3.437861899,0.076477049,,,,,-2603.231,,,,,0.777244849,46508,59837,0.741488163,0.813001534,74899,,,71952.44681,77845.55319,80377,55402.19149,105351.8085,87914,82044.7234,93783.2766,52910,49416.55319,56403.44681,65236,59615.74468,70856.25532,73524,72082.29787,74965.70213,,,,,,0.482481309,34977,72494,,,48.47215557,,,,,0.240510554,,74899,,,4.267114045,117,27419,,,5.985205725,249,4160258,5.241783603,6.728627848,,,,,,,24.24841905,19.51931561,28.97752249,3.615141115,2.066365507,5.870762681,4.051279475,3.341058869,4.761500081,,,,19.14654902,662,3013040,17.54871975,20.74437829,21.97116534,,,,,,,8.942590033,5.787172761,13.20102697,10.10075214,6.995064489,14.1147887,22.75098663,20.67083153,24.83114174,,,,16.82685925,507,3013040,15.36213742,18.29158108,,,,,,,26.83798801,21.31323643,33.35716862,6.955806435,4.409384604,10.43712492,17.96164581,16.19920008,19.72409153,,,,15.69614192,653,4160258,14.49223643,16.90004742,,,,,,,18.72650184,14.80252261,23.37152181,13.33083286,10.14804763,17.19580313,16.10788719,14.69171372,17.52406067,,,,16.55769231,,52000,,,321,540,0.768408609,360764,469495,,,0.706,,,,,87.67475615,,,,,0.766685587,189103,246650,0.759689411,0.773681762,0.136682277,33010,241509,0.128481017,0.144883536,0.911968376,224937,246650,0.906221502,0.91771525,630693,,,,,0.178976142,112879,630693,,,0.24658907,155522,630693,,,0.101756322,64177,630693,,,0.004969137,3134,630693,,,0.027707617,17475,630693,,,0.001336625,843,630693,,,0.120610186,76068,630693,,,0.721936029,455320,630693,,,0.012943797,7554,583600,0.010915612,0.014971983,0.506639522,319534,630693,,,0.038804046,23539,606612,, -12,011,12011,FL,Broward County,2024,1,7279.008318,23716,5398533,7138.34521,7419.671427,0,10756.39047,6020.27009,17741.03029,1,3910.675719,3362.501371,4458.850066,,9647.129729,9353.789548,9940.469911,,4529.681525,4335.566739,4723.796311,,8377.635963,8106.231645,8649.040281,,,,,2,,0.162,,,0.147,0.178,3.307882344,,,3.091214959,3.529756177,4.481347488,,,4.290482961,4.682930149,0.095985073,14404,150065,0.094494662,0.097475484,0,,,,0.095547611,0.088202809,0.102892413,0.137456857,0.134580446,0.140333269,0.073595987,0.071284896,0.075907077,0.064677271,0.062205428,0.067149114,,,,0.099030471,0.083623689,0.114437253,0.158,,,0.138,0.177,0.306,,,0.296,0.316,8.8,0.02378799,0.086,,,0.269,,,0.248,0.291,0.981184185,1907790,1944375,,,0.164808439,,,0.160110453,0.169418639,0.126530612,155,1225,0.113672424,0.140025671,524.9,10136,1930983,,,10.70656517,4086,381635,10.37827563,11.03485472,16.02564103,8.969429629,26.43185777,1.839221396,1.178423853,2.736615648,16.99693412,16.29817588,17.69569237,10.58003386,10.01163382,11.1484339,3.796776284,3.412489503,4.181063065,,,,6.55379574,5.001236587,8.436034233,0.149999681,234865,1565770,0.141659255,0.158340106,0.000757127,1462,1930983,,,1320.781806,0.000851042,1657,1947026,,,1175.030779,0.002427805,4727,1947026,,,411.8946478,3413,,,,,5797,2584,5016,3405,3002,0.37,,,,,0.23,0.32,0.29,0.31,0.39,0.37,,,,,0.3,0.35,0.18,0.25,0.42,0.899989515,1244672,1382985,0.896860599,0.903118432,0.685179094,354117,516824,0.672439664,0.697918523,0.028614862,30475,1065006,,,0.189,74305,,0.163978723,0.214021277,0.241038319,0.029995911,0.452080727,0.0780162,0.04772564,0.10830676,0.249312021,0.23057113,0.268052913,0.157771374,0.144078671,0.171464076,0.080653101,0.069975046,0.091331155,4.817722292,142012,29477,4.697526421,4.937918163,0.310861609,125700,404360,0.296442491,0.325280726,5.991766888,1157,1930983,,,77.97303815,7586,9729004,76.21837357,79.72770272,95.51098376,56.60586215,150.9485316,29.71580138,24.11136891,35.32023385,62.96483501,60.00967568,65.91999433,43.18702275,40.83844598,45.53559952,126.7035246,122.9212265,130.4858227,,,,8.9,,,,,1,,,,,0.240289954,169390,704940,0.233905068,0.24667484,0.20639021,0.200428164,0.212352255,0.041124067,0.038636819,0.043611316,0.009114251,0.007672911,0.01055559,0.738447703,712732,965176,0.734899671,0.741995735,0.745194948,0.641844259,0.848545637,0.658329524,0.61760828,0.699050768,0.750781995,0.736342838,0.765221151,0.72846916,0.716059466,0.740878853,0.743335562,0.735937373,0.750733751,0.454,,965176,0.445408048,0.462591952,79.72312835,,,79.58359041,79.86266629,86.96769838,75.74258801,98.19280875,88.16804851,86.80908293,89.52701408,77.18103746,76.88010473,77.48197019,84.46085908,84.14874598,84.77297219,78.27627287,78.0530254,78.49952035,,,,340.1755245,23716,5398533,335.6972379,344.6538112,399.8532909,286.941625,542.446139,177.8348871,161.3772004,194.2925737,439.1603492,429.1857842,449.1349143,211.3404261,204.8159972,217.8648549,395.2040016,386.9696865,403.4383167,,,,46.37772712,834,1798277,43.2301056,49.52534865,,,,41.72417113,27.25561385,61.13557801,73.54412807,66.84507251,80.24318362,33.58093004,28.93844233,38.22341775,28.26524821,23.34930322,33.1811932,,,,5.102378463,771,151106,4.742213426,5.4625435,,,,3.499284237,2.192982801,5.297958388,8.242056176,7.485555675,8.998556678,3.484534815,2.960721638,4.008347991,2.395363812,1.933367746,2.934482499,,,,,,,0.104,,,0.096,0.112,0.15,,,0.142,0.159,0.107,,,0.102,0.112,1236.3,20350,1646089,,,0.086,166470,,,,0.02378799,41582.97706,1748066,,,32.76350399,1914,5841866,31.29567505,34.23133293,,,,,,,16.40005602,14.45815933,18.34195271,15.92314285,14.09987257,17.74641313,65.69188705,62.13991021,69.2438639,,,,0.378,,,0.366,0.389,0.176320546,206617,1171826,0.165597142,0.18704395,0.074430631,30802,413835,0.061324248,0.087537014,0.001544407,3007,1947026,,,647.4978384,0.89,16826.34,18906,,,0.067136219,5967,88879,0.055792332,0.078480106,3.250629889,,,,,,3.790402191,2.981212117,3.275157851,3.610290328,3.306353176,,,,,,3.954720134,3.053031795,3.335575099,3.60929315,0.164567374,,,,,-6723.055,,,,,0.872802198,47655,54600,0.850960723,0.894643672,70834,,,68677.40426,72990.59575,73400,44048.85106,102751.1489,87590,80220.6383,94959.3617,56918,55135.53192,58700.46809,69494,67622.17021,71365.82979,79060,77176.25532,80943.74468,,,,,,0.498385482,127952,256733,,,53.70012697,,,,,0.275051529,,70834,,,5.624789184,617,109693,,,6.420362642,869,13535061,5.993482707,6.847242577,,,,,,,14.9401597,13.71578796,16.16453144,2.61748534,2.121523297,3.113447384,3.436477031,2.915268781,3.957685281,,,,11.03238163,1179,9729004,10.38536801,11.67939524,12.1184039,,,,8.140532388,5.492383018,11.62111616,4.87840386,4.050186537,5.706621184,6.375758832,5.483241913,7.268275751,19.41686565,17.90332464,20.93040666,,,,11.6558694,1134,9729004,10.97745631,12.33428249,,,,4.402340945,2.516318227,7.149125887,16.71600838,15.19336515,18.23865161,4.986954128,4.188875253,5.785033003,14.34268616,13.07013088,15.61524143,,,,13.60171188,1841,13535061,12.98038127,14.22304249,,,,5.176024654,3.381151151,7.58407538,15.74985367,14.49274177,17.00696557,11.30166568,10.27109557,12.33223578,14.93941512,13.85268587,16.02614436,,,,9.929691725,,184900,,,1189,647,0.737027944,957672,1299370,,,0.62,,,,,247.8886122,,,,,0.628231755,466131,741973,0.62189819,0.63456532,0.222924895,161094,722638,0.216784077,0.229065712,0.897504357,665924,741973,0.892870422,0.902138291,1947026,,,,,0.205489809,400094,1947026,,,0.181311909,353019,1947026,,,0.286229871,557297,1947026,,,0.004457568,8679,1947026,,,0.040074966,78027,1947026,,,0.001267574,2468,1947026,,,0.325402434,633567,1947026,,,0.33011629,642745,1947026,,,0.074452624,136524,1833703,0.071604993,0.077300255,0.508319355,989711,1947026,,,7.81742E-05,152,1944375,, -12,013,12013,FL,Calhoun County,2024,1,9216.513221,293,38298,7455.97607,10977.05037,0,,,,2,,,,2,5882.611893,3292.453221,9702.473717,1,,,,2,10277.31403,8129.669287,12424.95878,,,,,2,,0.215,,,0.193,0.239,4.365077097,,,4.060685803,4.67818385,5.50101647,,,5.240524702,5.753888529,0.083333333,76,912,0.065395345,0.101271322,0,,,,,,,0.170731707,0.089288707,0.252174708,,,,0.071519796,0.053469902,0.089569689,,,,,,,0.256,,,0.225,0.284,0.371,,,0.358,0.384,5.8,0.204800709,0.137,,,0.31,,,0.285,0.336,0.360199297,4916,13648,,,0.182965123,,,0.174869281,0.191052424,0.16,4,25,0.067364287,0.277512739,344.5,47,13641,,,32.38392509,83,2563,25.79361557,40.14474748,,,,,,,,,,,,,34.62321792,26.88628348,43.8931788,,,,,,,0.166805411,1603,9610,0.144167113,0.189443709,0.000293234,4,13641,,,3410.25,0.000594177,8,13464,,,1683,0.000816994,11,13464,,,1224,3147,,,,,,,,,3016,0.33,,,,,,,,,0.35,0.2,,,,,,,0.13,,0.2,0.793051961,7967,10046,0.758237362,0.82786656,0.308270677,1148,3724,0.240268489,0.376272865,0.032664875,158,4837,,,0.301,807,,0.199723404,0.402276596,,,,,,,0.15503876,0,0.557205396,0.654205608,0.252916385,1,0.219319862,0.130015185,0.308624539,5.30838964,94277,17760,3.998837866,6.617941414,0.299477222,802,2678,0.202159099,0.396795345,8.063924932,11,13641,,,88.86506616,63,70894,68.28635681,113.6970227,,,,,,,,,,,,,104.0202931,78.78395416,134.770355,,,,8.3,,,,,0,,,,,0.107538803,485,4510,0.074720917,0.140356688,0.079774011,0.045390265,0.114157758,0.018847007,0.001758879,0.035935135,0.013303769,0,0.0287682,0.80789826,3621,4482,0.738416819,0.877379701,,,,,,,,,,,,,0.793956044,0.720076816,0.867835272,0.461,,4482,0.356807679,0.565192321,74.31157637,,,72.94028115,75.68287158,,,,,,,77.18867287,73.8127623,80.56458344,,,,73.22537034,71.66740407,74.78333662,,,,533.0680542,293,38298,470.0724942,596.0636142,,,,,,,431.3109836,273.4141653,647.1782472,,,,583.6517276,510.0648475,657.2386078,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.137,,,0.127,0.149,0.183,,,0.172,0.193,0.116,,,0.109,0.123,229.2,27,11778,,,0.137,1900,,,,0.204800709,2995.210365,14625,,,,,,,,,,,,,,,,,,,,,,,,,,0.393,,,0.38,0.406,0.198963432,1382,6946,0.170367688,0.227559177,0.084199212,235,2791,0.059177935,0.109220488,0.000891266,12,13464,,,1122,0.925,133.2,144,,,,,,,,3.313653838,,,,,,,,,3.386908615,3.581669211,,,,,,,,,3.641160407,0.093522491,,,,,-4837.192,,,,,0.950142799,34932,36765,0.79896651,1.101319088,46766,,,39749.31915,53782.68085,16235,15989.55319,16480.44681,,,,30250,8182.425532,52317.57447,,,,43212,31935.74468,54488.25532,,,,,,0.57489301,1209,2103,,,64.56863243,,,,,0.284694009,,46766,,,6.837606838,4,585,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,27.05980216,27,99779,17.83258013,39.37059145,,,,,,,,,,,,,29.82829278,18.90857892,44.75708473,,,,,,1400,,,-888,13,0.581899242,6526,11215,,,0.447,,,,,9.696881347,,,,,0.76573741,3406,4448,0.719868278,0.811606543,0.09535334,394,4132,0.055251223,0.135455456,0.790017986,3514,4448,0.738486237,0.841549734,13464,,,,,0.202762923,2730,13464,,,0.19325609,2602,13464,,,0.119875223,1614,13464,,,0.015894237,214,13464,,,0.009135472,123,13464,,,0.001856803,25,13464,,,0.064096851,863,13464,,,0.771390374,10386,13464,,,0.006525038,86,13180,0,0.014940059,0.458481878,6173,13464,,,1,13648,13648,, -12,015,12015,FL,Charlotte County,2024,1,8914.948654,3490,468259,8280.761839,9549.135468,0,,,,2,,,,2,9020.053849,6290.759392,11749.34831,,5337.432954,3973.468487,6701.397421,,9660.007088,8902.727703,10417.28647,,,,,2,,0.147,,,0.129,0.166,3.53331738,,,3.252971287,3.856658087,5.44288252,,,5.151409201,5.721747406,0.088299918,643,7282,0.08178308,0.094816755,0,,,,0.084507042,0.038757595,0.13025649,0.126666667,0.100053189,0.153280145,0.075977654,0.058618493,0.093336815,0.086097517,0.078695504,0.093499529,,,,0.108910891,0.048154551,0.169667232,0.197,,,0.166,0.226,0.3,,,0.286,0.313,7,0.138042227,0.114,,,0.256,,,0.231,0.281,0.822068323,153601,186847,,,0.194742349,,,0.187484608,0.202097524,0.303030303,40,132,0.25874439,0.347964301,168.3,328,194843,,,16.30338472,368,22572,14.63763428,17.96913517,,,,,,,14.95726496,9.93899394,21.61741236,16.43598616,12.44845541,21.29472647,17.05160018,15.01007935,19.09312101,,,,15.90909091,8.697648041,26.69275128,0.15963306,18289,114569,0.142952209,0.176313911,0.000621013,121,194843,,,1610.272727,0.00053291,108,202661,,,1876.490741,0.001194112,242,202661,,,837.4421488,2706,,,,,,,4097,3648,2689,0.56,,,,,,0.46,0.47,0.41,0.56,0.49,,,,,,0.46,0.34,0.32,0.5,0.919405559,145016,157728,0.912541132,0.926269986,0.576135899,16890,29316,0.530341648,0.621930149,0.034282439,2632,76774,,,0.144,3348,,0.085617021,0.202382979,,,,0.142857143,0,0.666791174,0.184137931,0.061467305,0.306808557,0.363583138,0.277879182,0.449287094,0.147850189,0.109483528,0.186216851,4.029249564,115438,28650,3.802566606,4.255932522,0.272970801,6114,22398,0.230186027,0.315755575,5.850864542,114,194843,,,78.4774113,742,945495,72.83065835,84.12416425,,,,,,,38.6286818,23.59540239,59.65886606,41.2167175,27.80874622,58.83942708,86.06569808,79.60153044,92.52986572,,,,7.7,,,,,1,,,,,0.144880311,11560,79790,0.132457771,0.157302851,0.128068167,0.115899996,0.140236339,0.013723524,0.01061939,0.016827659,0.013222208,0.008221251,0.018223165,0.747082416,49548,66322,0.728009912,0.76615492,,,,0.813684211,0.67936215,0.948006271,0.711730668,0.618397736,0.805063601,0.728640363,0.653719381,0.803561345,0.740900363,0.722881358,0.758919368,0.331,,66322,0.303158894,0.358841106,79.63256916,,,79.10713915,80.15799917,,,,92.52124068,85.2836503,99.75883105,80.08753361,77.625493,82.54957422,83.32444006,81.54804726,85.10083286,78.96186308,78.36146338,79.56226278,,,,386.3696876,3490,468259,369.2903216,403.4490536,,,,,,,330.0904119,266.2637446,393.9170793,245.7003625,201.4020798,289.9986453,414.9269496,394.4426522,435.411247,,,,51.99948001,52,100001,38.83569884,68.19039984,,,,,,,129.9775493,64.88432432,232.5657393,,,,47.71889234,32.8474898,67.01506655,,,,6.053935058,44,7268,4.398798481,8.127125245,,,,,,,,,,,,,4.686373468,3.06129474,6.866622942,,,,,,,0.11,,,0.099,0.121,0.164,,,0.152,0.176,0.086,,,0.08,0.092,194.4,348,179005,,,0.114,21040,,,,0.138042227,22083.71941,159978,,,18.1515185,105,578464,14.67956113,21.62347588,,,,,,,,,,,,,20.30149796,16.48173737,24.74102338,,,,0.344,,,0.33,0.36,0.181000262,16597,91696,0.159553453,0.20244707,0.076671632,1853,24168,0.056416313,0.096926951,0.00110036,223,202661,,,908.793722,0.91,1247.61,1371,,,0.130762489,746,5705,0.072103322,0.189421656,3.372511497,,,,,,,3.078011475,3.221661917,3.423931798,3.457284746,,,,,,,3.022109966,3.342801619,3.515111328,0.038392466,,,,,-1582.803,,,,,0.808489955,42415,52462,0.74259177,0.87438814,65040,,,61450.04255,68629.95745,,,,57206,31163.61702,83248.38298,39692,27134.89362,52249.10638,50595,43396.02128,57793.97872,63661,61555.6383,65766.3617,,,,,,0.483536585,7930,16400,,,48.97249932,,,,,0.293219557,,65040,,,6.116774792,33,5395,,,1.696123971,22,1297075,1.062951863,2.567952076,,,,,,,,,,,,,1.745896683,1.051143853,2.726433939,,,,19.31171975,203,945495,15.98815021,22.63528929,21.47023517,,,,,,,,,,,,,22.1255403,17.94987891,26.30120169,,,,14.48976462,137,945495,12.06339411,16.91613513,,,,,,,,,,,,,15.92404987,13.14354072,18.70455901,,,,15.57350192,202,1297075,13.42583629,17.72116755,,,,,,,15.40918387,7.692209071,27.57128641,12.3856904,6.399866966,21.63530856,16.08062735,13.69808826,18.46316644,,,,24.31192661,,10900,,,103,162,0.739723414,116340,157275,,,0.645,,,,,52.01799189,,,,,0.824213721,69787,84671,0.817114099,0.831313344,0.135858353,11195,82402,0.123220403,0.148496303,0.897414699,75985,84671,0.887800534,0.907028864,202661,,,,,0.117402954,23793,202661,,,0.405707068,82221,202661,,,0.054465339,11038,202661,,,0.004105378,832,202661,,,0.01529648,3100,202661,,,0.000769758,156,202661,,,0.083943137,17012,202661,,,0.828181051,167840,202661,,,0.013204163,2437,184563,0.009839839,0.016568487,0.507423727,102835,202661,,,0.064999706,12145,186847,, -12,017,12017,FL,Citrus County,2024,1,13946.22702,3962,383112,13101.67566,14790.77838,0,,,,2,4515.271513,1949.373755,8896.884905,1,20507.28531,14583.22737,26431.34324,,10129.98822,7490.6035,12769.37294,,14450.72817,13516.65267,15384.80368,,,,,2,,0.163,,,0.146,0.182,3.847971253,,,3.49283964,4.1878323,5.428684786,,,5.127737545,5.72188399,0.078605605,575,7315,0.072438257,0.084772953,0,,,,,,,0.152610442,0.107943103,0.19727778,0.044526902,0.027113559,0.061940245,0.07830841,0.071631234,0.084985586,,,,0.122137405,0.066063856,0.178210953,0.234,,,0.2,0.265,0.316,,,0.302,0.329,6.4,0.156636624,0.133,,,0.271,,,0.244,0.297,0.774003367,119075,153843,,,0.216046447,,,0.207056425,0.225011098,0.25,41,164,0.210369166,0.291043154,214.4,339,158083,,,22.12076999,470,21247,20.12087413,24.12066586,,,,,,,19.71830986,12.20594459,30.14153121,17.41176471,12.25948921,23.99982407,22.92246639,20.63864606,25.20628671,,,,28.90932983,18.11732309,43.76907278,0.158796561,15829,99681,0.140924221,0.176668902,0.000461783,73,158083,,,2165.520548,0.000307637,50,162529,,,3250.58,0.000990592,161,162529,,,1009.496894,2673,,,,,,,2641,2609,2680,0.44,,,,,,0.49,0.55,0.41,0.44,0.42,,,,,,0.53,0.36,0.34,0.42,0.90432373,111939,123782,0.894899859,0.913747602,0.511356212,13306,26021,0.465582353,0.557130072,0.041352316,2039,49308,,,0.259,5981,,0.195851064,0.322148936,0.935897436,0.219874454,1,,,,0.258064516,0.104294456,0.411834577,0.187683285,0.107558496,0.267808073,0.234633368,0.189107598,0.280159137,4.393132386,102606,23356,3.975091695,4.811173076,0.279945633,6385,22808,0.22971562,0.330175647,6.95836997,110,158083,,,145.6929763,1099,754326,137.0791553,154.3067972,,,,81.57937673,39.1204821,150.0273784,78.06759736,45.47725234,124.9937859,99.06107331,72.52515593,132.1335897,153.4493503,143.9950179,162.9036828,,,,7.8,,,,,0,,,,,0.120241411,7770,64620,0.105041258,0.135441565,0.107467838,0.093415098,0.121520578,0.009439802,0.005769895,0.013109709,0.008279171,0.003524588,0.013033753,0.775624755,37586,48459,0.750460453,0.800789057,,,,,,,,,,0.751097695,0.650465581,0.851729808,0.758688784,0.736986608,0.780390959,0.375,,48459,0.343702135,0.406297865,73.15783677,,,72.58459724,73.73107631,,,,87.23584508,82.47819247,91.99349769,69.06703721,65.1348319,72.99924252,76.54644781,74.38628947,78.70660615,72.74532017,72.12691822,73.36372213,,,,592.4094475,3962,383112,569.141068,615.6778269,,,,206.6423437,118.113954,335.57422,756.884845,608.7395792,905.0301108,402.3185104,329.5632348,475.0737859,615.8359019,589.9410315,641.7307723,,,,82.96739988,82,98834,65.9864353,102.9844195,,,,,,,260.4783329,130.0298453,466.0676892,,,,76.95366107,58.7237504,99.05461582,,,,8.45492977,62,7333,6.482346173,10.83883839,,,,,,,,,,,,,6.997455471,5.084361857,9.39375736,,,,,,,0.12,,,0.109,0.132,0.174,,,0.162,0.186,0.092,,,0.086,0.098,171.3,243,141852,,,0.133,20220,,,,0.156636624,22122.73028,141236,,,45.36082474,209,460750,39.21098398,51.5106655,,,,,,,,,,40.90258368,21.13496185,71.44858221,47.83091771,41.06519537,54.59664004,,,,0.38,,,0.364,0.395,0.184514864,14120,76525,0.161876567,0.207153162,0.075604756,1844,24390,0.054157948,0.097051565,0.001390521,226,162529,,,719.1548673,0.88,937.2,1065,,,0.068312285,357,5226,0.033256176,0.103368393,3.332730264,,,,,,,3.048769263,3.262354073,3.341484273,3.34693315,,,,,,,2.865700609,3.283233852,3.368314299,0.017244616,,,,,-792.1943,,,,,0.867013185,41034,47328,0.795795693,0.938230676,52534,,,48008.7234,57059.2766,65911,36994.74468,94827.25532,,,,28542,9801.06383,47282.93617,47643,37518.91489,57767.08511,52995,50640.61702,55349.38298,,,,,,0.705818622,11075,15691,,,48.45498341,,,,,0.276563749,,52534,,,6.884681584,36,5229,,,3.753591176,39,1039005,2.669170263,5.131282705,,,,,,,,,,,,,3.511517228,2.401875184,4.957214586,,,,26.09047295,228,754326,21.93801783,30.24292807,30.2256584,,,,,,,,,,,,,29.16963261,24.31466797,34.02459725,,,,23.99493057,181,754326,20.49921345,27.4906477,,,,,,,,,,,,,26.23195416,22.32297221,30.1409361,,,,24.35021968,253,1039005,21.3496847,27.35075466,,,,,,,,,,21.05331347,11.21000274,36.00180721,24.47088568,21.25904993,27.68272143,,,,11.13207547,,10600,,,65,53,0.754995747,93208,123455,,,0.666,,,,,22.63233801,,,,,0.853592101,57661,67551,0.839458429,0.867725773,0.116781083,7655,65550,0.102036362,0.131525804,0.880357064,59469,67551,0.86640843,0.894305698,162529,,,,,0.146293892,23777,162529,,,0.364261147,59203,162529,,,0.029791606,4842,162529,,,0.005088323,827,162529,,,0.016446296,2673,162529,,,0.000701413,114,162529,,,0.069821386,11348,162529,,,0.863076743,140275,162529,,,0.007680604,1151,149858,0.004950698,0.01041051,0.512000935,83215,162529,,,0.24974162,38421,153843,, -12,019,12019,FL,Clay County,2024,1,9343.950884,3486,622705,8874.610066,9813.291703,0,,,,2,4660.352896,2762.020484,7365.366775,1,9929.406428,8552.682091,11306.13076,,5401.564112,4275.323162,6527.805062,,10050.51516,9468.479233,10632.55109,,,,,2,,0.15,,,0.135,0.166,3.713507804,,,3.456700786,3.996190251,5.276558994,,,5.01569594,5.540705049,0.084200996,1302,15463,0.079824083,0.088577909,0,,,,0.073059361,0.048687824,0.097430897,0.128303495,0.114770499,0.141836492,0.072955975,0.060172818,0.085739132,0.076491491,0.071454015,0.081528967,,,,0.076677316,0.047199582,0.106155051,0.196,,,0.168,0.223,0.352,,,0.339,0.366,8.1,0.085847233,0.088,,,0.252,,,0.229,0.276,0.790840569,172597,218245,,,0.180671578,,,0.173991339,0.187235345,0.277310924,33,119,0.230425089,0.325448491,366.1,814,222361,,,14.10445798,697,49417,13.05733888,15.15157709,,,,,,,13.43817012,10.85940935,16.4449169,12.68531255,10.10378064,15.72535348,15.19489099,13.83976369,16.55001829,,,,10.94276094,7.148174754,16.03368017,0.111412224,20679,185608,0.09949733,0.123327117,0.000535166,119,222361,,,1868.579832,0.000534007,121,226589,,,1872.636364,0.001363703,309,226589,,,733.2977346,2583,,,,,,938,3837,3918,2537,0.4,,,,,,0.36,0.39,0.35,0.4,0.35,,,,,,0.27,0.28,0.26,0.36,0.925243742,140452,151800,0.9164484,0.934039084,0.687830499,38502,55976,0.644575249,0.731085749,0.026366963,2983,113134,,,0.118,5922,,0.078680851,0.157319149,,,,0.009487666,0,0.099747371,0.230229704,0.142146642,0.318312765,0.098480334,0.056666396,0.140294272,0.132658978,0.099754273,0.165563683,3.721201916,141428,38006,3.361894699,4.080509133,0.203537712,10241,50315,0.169310657,0.237764768,7.015618746,156,222361,,,90.41069539,987,1091685,84.77019928,96.05119151,,,,,,,64.37178632,51.19679198,79.90235988,41.01221641,30.134234,54.53755353,105.9376313,98.71735903,113.1579036,,,,8.5,,,,,0,,,,,0.11544586,8700,75360,0.099328399,0.131563321,0.096897407,0.081690179,0.112104635,0.017316879,0.011563691,0.023070067,0.004113588,0.002455602,0.005771574,0.754760503,78203,103613,0.740762568,0.768758438,,,,0.696755408,0.642303121,0.751207695,0.672033898,0.644091524,0.699976273,0.583629893,0.51572591,0.651533876,0.669770883,0.656667953,0.682873812,0.58,,103613,0.547544215,0.612455785,75.71701443,,,75.33926726,76.09476161,,,,83.65705543,80.82892041,86.48519044,75.79174662,74.52732701,77.05616623,80.76137842,79.25171455,82.27104229,74.93941639,74.49876403,75.38006874,,,,436.320624,3486,622705,421.2144628,451.4267853,,,,190.4467803,137.8272792,256.5305632,427.6667819,381.6032639,473.7302999,241.5828283,202.4515163,280.7141404,473.2186424,454.7840154,491.6532695,,,,49.38848081,110,222724,40.15882733,58.61813429,,,,,,,92.53751074,61.49050385,133.7424679,46.7461351,25.55654705,78.43207159,40.60345129,30.83190289,52.48937642,,,,5.266579974,81,15380,4.182424707,6.545878035,,,,,,,,,,,,,4.547141797,3.364000534,6.011562601,,,,,,,0.106,,,0.097,0.116,0.166,,,0.155,0.176,0.096,,,0.091,0.102,231,433,187449,,,0.088,18960,,,,0.085847233,16385.2321,190865,,,33.16334606,220,663383,28.78103628,37.54565584,,,,,,,17.5826384,9.612592028,29.5006796,,,,40.6213579,34.86041163,46.38230417,,,,0.388,,,0.374,0.402,0.13084425,17589,134427,0.115354888,0.146333612,0.063518883,3421,53858,0.046838032,0.080199734,0.00133281,302,226589,,,750.294702,0.93,2924.85,3145,,,0.060662252,687,11325,0.037886844,0.08343766,3.429177407,,,,,,3.49899636,3.173337054,3.38263532,3.492548253,3.486310593,,,,,,3.895651689,3.208239393,3.476524869,3.543094795,0.085472469,,,,,-3203.936,,,,,0.786609027,46218,58756,0.742593251,0.830624803,84364,,,77840.59575,90887.40426,87083,27748.02128,146417.9787,101127,86359.68085,115894.3192,73266,61833.65957,84698.34043,77054,59041.06383,95066.93617,83783,79463.85106,88102.14894,,,,,,0.528719471,20306,38406,,,41.34087953,,,,,0.214344981,,84364,,,7.215255111,84,11642,,,4.255423837,64,1503963,3.277194888,5.434081238,,,,,,,11.15324559,6.714982427,17.41717457,,,,3.593231458,2.555138827,4.91206569,,,,17.70884007,196,1091685,15.16895939,20.24872074,17.95389696,,,,,,,,,,,,,21.91326886,18.52896046,25.29757726,,,,13.92343029,152,1091685,11.70992522,16.13693537,,,,,,,18.84052283,12.07147847,28.03320453,,,,15.37184493,12.6214729,18.12221696,,,,17.68660532,266,1503963,15.56111204,19.81209861,,,,,,,18.78441363,12.84852502,26.5179873,14.92120953,9.458766883,22.38914054,18.24255971,15.70153287,20.78358655,,,,8.43373494,,24900,,,100,110,0.774795254,124405,160565,,,0.679,,,,,57.99372233,,,,,0.765833584,61040,79704,0.749052871,0.782614297,0.101662897,7911,77816,0.087232728,0.116093066,0.93884874,74830,79704,0.927922925,0.949774556,226589,,,,,0.225703807,51142,226589,,,0.172651806,39121,226589,,,0.127287732,28842,226589,,,0.00550777,1248,226589,,,0.032777408,7427,226589,,,0.001941842,440,226589,,,0.114458337,25935,226589,,,0.692769729,156974,226589,,,0.014425688,3002,208101,0.010407375,0.018444,0.504428723,114298,226589,,,0.144255309,31483,218245,, -12,021,12021,FL,Collier County,2024,1,6356.905019,4038,964417,6016.999206,6696.810832,0,30035.5151,16420.6956,50394.49071,1,4759.231928,2282.236699,8752.396964,1,7674.122568,6424.174895,8924.070241,,5134.157383,4667.767142,5600.547623,,7144.092756,6606.511573,7681.673939,,,,,2,,0.145,,,0.127,0.164,3.067945605,,,2.801826563,3.337085423,4.34586519,,,4.132105487,4.5609628,0.072257268,1638,22669,0.068886767,0.075627769,0,,,,0.089020772,0.05861605,0.119425493,0.114451988,0.103232221,0.125671755,0.067372997,0.062697697,0.072048296,0.062484379,0.057181255,0.067787503,,,,,,,0.152,,,0.13,0.176,0.272,,,0.261,0.284,8.3,0.070185355,0.086,,,0.249,,,0.226,0.273,0.913552024,343269,375752,,,0.189380833,,,0.182714855,0.195992076,0.282178218,57,202,0.246548299,0.318511723,289.7,1118,385980,,,17.2339094,1074,62319,16.20319644,18.26462236,54.34782609,26.06189509,99.94758719,,,,15.86792755,12.89666851,19.31863243,28.58570358,26.60605228,30.56535488,6.003430532,5.055240903,6.95162016,,,,,,,0.174942487,44790,256027,0.159453125,0.190431848,0.000821286,317,385980,,,1217.602524,0.000701016,279,397994,,,1426.501792,0.001163334,463,397994,,,859.5982721,2419,,,,,14157,550,4827,3130,2306,0.55,,,,,0.25,0.45,0.36,0.36,0.56,0.54,,,,,0.2,0.5,0.27,0.29,0.56,0.895418026,261240,291752,0.88813831,0.902697743,0.546422293,39473,72239,0.5123371,0.580507486,0.027741711,5256,189462,,,0.166,10486,,0.126680851,0.205319149,0.205607477,0,0.426991579,0.042699725,0,0.16703723,0.149469476,0.092606216,0.206332735,0.226819897,0.192949193,0.260690602,0.08813487,0.056677922,0.119591817,4.870562442,173280,35577,4.659074446,5.082050438,0.252588319,15980,63265,0.222648957,0.282527681,7.254261879,280,385980,,,89.70234798,1718,1915223,85.46056639,93.94412956,,,,53.27461287,29.81739641,87.86837218,43.21826797,32.55791403,56.25451629,49.2238971,43.33051407,55.11728014,114.4703609,108.3998705,120.5408513,,,,7.7,,,,,1,,,,,0.198479473,29370,147975,0.185507527,0.211451419,0.161883839,0.149972548,0.17379513,0.036762967,0.031937393,0.041588541,0.016286535,0.01114176,0.02143131,0.740498067,117423,158573,0.724654455,0.756341679,0.5352,0.330997588,0.739402412,0.733992095,0.609343218,0.858640971,0.809238666,0.762346076,0.856131255,0.731546053,0.709911916,0.75318019,0.748995961,0.735170886,0.762821037,0.35,,158573,0.325756778,0.374243222,84.69535949,,,84.32366235,85.06705663,,,,91.81911554,85.68570998,97.9525211,83.56762026,81.35356028,85.78168024,84.55254493,83.61022869,85.49486117,84.09759109,83.59319087,84.60199132,,,,267.8779638,4038,964417,258.3016589,277.4542688,1139.987248,714.4239389,1725.954393,172.0612903,116.9072989,244.2272673,334.2860069,293.5932718,374.978742,239.5190719,221.8251817,257.212962,293.5519878,279.0927955,308.0111801,,,,40.52642428,116,286233,33.15136758,47.90148098,,,,,,,81.87862313,52.98752775,120.8689998,39.78310839,29.88629544,51.90832675,26.68089648,17.86861511,38.31821794,,,,4.631897742,104,22453,3.741675656,5.522119828,,,,,,,8.512087164,5.508574003,12.56551982,4.317868627,3.172607457,5.741849917,3.32963374,2.194249616,4.84444228,,,,,,,0.098,,,0.088,0.108,0.144,,,0.135,0.153,0.094,,,0.087,0.1,294,1005,341890,,,0.086,32210,,,,0.070185355,22565.99521,321520,,,25.26087872,294,1163855,22.37331976,28.14843767,,,,,,,13.0127004,6.240095638,23.93081933,12.26872702,8.804250327,16.64391353,32.83430728,28.65398508,37.01462948,,,,0.316,,,0.303,0.328,0.196470143,37893,192869,0.177406313,0.215533973,0.112744362,7509,66602,0.087723085,0.137765639,0.001301527,518,397994,,,768.3281853,0.93,3473.55,3735,,,0.058258989,862,14796,0.034157004,0.082360974,3.252822607,,,,,,4.260967001,2.934682008,3.071334521,3.664380457,3.394596508,,,,,,4.423311137,2.971788563,3.236038448,3.80522894,0.157075572,,,,,-2472.314,,,,,0.918758927,48889,53212,0.857006538,0.980511315,81821,,,77825.93617,85816.06383,67368,51310.29787,83425.70213,115500,83438.21277,147561.7872,58969,50827.55319,67110.44681,62435,59210.82979,65659.17021,93651,90433.97872,96868.02128,,,,,,0.641682592,30555,47617,,,59.23453578,,,,,0.247027047,,81821,,,5.807781178,93,16013,,,1.971441397,52,2637664,1.472366731,2.585283104,,,,,,,,,,2.436139315,1.443810552,3.8501504,1.510074918,0.977240867,2.229168468,,,,14.15212177,287,1915223,12.30905823,15.99518532,14.98520016,,,,,,,,,,8.071815184,5.766623109,10.99152129,19.93052837,16.67175585,23.18930089,,,,9.293956892,178,1915223,7.928598311,10.65931547,,,,,,,,,,5.326466477,3.567218196,7.64969436,11.39675628,9.481319256,13.31219331,,,,10.69127834,282,2637664,9.443431877,11.93912481,,,,,,,13.69370603,8.773815839,20.37514912,12.99274301,10.52416355,15.86636301,9.00004651,7.554913934,10.44517909,,,,16.89320388,,30900,,,248,274,0.77646883,207818,267645,,,0.565,,,,,74.94308701,,,,,0.748634926,117362,156768,0.7370164,0.760253451,0.179412862,27422,152843,0.167765252,0.191060471,0.905669524,141980,156768,0.899373707,0.911965342,397994,,,,,0.162140635,64531,397994,,,0.33581662,133653,397994,,,0.064679367,25742,397994,,,0.004944798,1968,397994,,,0.016651005,6627,397994,,,0.001035192,412,397994,,,0.289682759,115292,397994,,,0.617795746,245879,397994,,,0.074217506,27041,364348,0.068033102,0.080401911,0.506502611,201585,397994,,,0.116228257,43673,375752,, -12,023,12023,FL,Columbia County,2024,1,12299.70138,1529,197282,11314.76899,13284.63377,0,,,,2,,,,2,14388.61542,11946.60977,16830.62108,,8889.439068,5570.964136,13458.71758,1,12135.27463,10994.59902,13275.95025,,,,,2,,0.19,,,0.171,0.211,4.227759562,,,3.916754923,4.569001185,5.36459887,,,5.118280928,5.630314275,0.106740536,578,5415,0.09851602,0.114965051,0,,,,,,,0.173717372,0.151438921,0.195995822,0.080110497,0.052145529,0.108075466,0.089304531,0.080232254,0.098376808,,,,0.168831169,0.085158881,0.252503457,0.236,,,0.209,0.266,0.343,,,0.331,0.355,7.8,0.044498683,0.123,,,0.299,,,0.275,0.325,0.625025108,43563,69698,,,0.180971026,,,0.174102458,0.188526247,0.256410256,30,117,0.209181649,0.305423113,589.6,415,70385,,,29.50298812,390,13219,26.57486205,32.4311142,,,,,,,39.11696359,31.48808822,46.74583897,18.38529177,11.65469787,27.58696474,29.4520548,25.85818931,33.04592028,,,,,,,0.146078108,7522,51493,0.128205767,0.163950448,0.000511473,36,70385,,,1955.138889,0.0006258,45,71908,,,1597.955556,0.002850865,205,71908,,,350.7707317,3498,,,,,,,3848,,3438,0.41,,,,,,0.31,0.51,0.24,0.41,0.37,,,,,,0.46,0.32,0.33,0.38,0.85778227,41587,48482,0.838308601,0.877255938,0.497116424,8275,16646,0.446953407,0.547279442,0.032132589,950,29565,,,0.262,4022,,0.194085106,0.329914894,0.766666667,0.35706843,1,0.01,0,0.476761414,0.266467066,0.148323248,0.384610884,0.244219653,0.128541105,0.359898201,0.145704891,0.095172068,0.196237715,4.867039303,110584,22721,4.171155944,5.562922662,0.271815771,4202,15459,0.214253932,0.32937761,7.245862045,51,70385,,,107.0905197,380,354840,96.32300929,117.8580301,,,,,,,87.39212535,66.01507231,113.4859439,,,,122.1321454,108.5799779,135.6843129,,,,8,,,,,1,,,,,0.13548899,3415,25205,0.113011584,0.157966397,0.095459132,0.076345784,0.11457248,0.028565761,0.018603386,0.038528135,0.018250347,0.007920713,0.028579981,0.776169265,20910,26940,0.751475682,0.800862848,,,,,,,0.772190162,0.721048469,0.823331855,0.711934156,0.552332286,0.871536027,0.801835798,0.772104608,0.831566988,0.308,,26940,0.271527968,0.344472032,73.18814223,,,72.46242925,73.91385521,,,,,,,71.79477022,69.90373981,73.68580064,80.3342599,76.04319143,84.62532837,73.06219293,72.24255847,73.88182739,,,,573.3753652,1529,197282,542.8874818,603.8632485,,,,,,,622.0357767,543.0581823,701.013371,328.5335971,237.7613932,442.5325993,587.8057633,552.0177396,623.593787,,,,108.6461805,74,68111,85.31061979,136.3953304,,,,,,,169.4415795,107.4114265,254.2455643,,,,94.39687142,68.03296189,127.5971474,,,,11.64695177,64,5495,8.969572074,14.8728974,,,,,,,,,,,,,9.295120062,6.510187818,12.86836419,,,,,,,0.131,,,0.12,0.142,0.176,,,0.165,0.186,0.11,,,0.104,0.117,528.6,315,59589,,,0.123,8490,,,,0.044498683,3005.040539,67531,,,23.28559786,50,214725,17.28301955,30.69915784,,,,,,,,,,,,,28.59240872,20.77528794,38.38397414,,,,0.375,,,0.363,0.388,0.174455169,6380,36571,0.150625382,0.198284957,0.07886981,1231,15608,0.056231513,0.101508108,0.001627079,117,71908,,,614.5982906,0.96,523.2,545,,,0.164705882,532,3230,0.100903213,0.228508552,3.198667626,,,,,,,2.897080309,3.214587387,3.332181726,3.33776398,,,,,,,2.989740542,3.320869381,3.491498163,0.078070056,,,,,-3544.353,,,,,0.884023349,42556,48139,0.786949848,0.98109685,54060,,,48809.10638,59310.89362,,,,36304,1497.021277,71110.97872,40631,32171.42553,49090.57447,68210,44782.93617,91637.06383,58576,54281.87234,62870.12766,,,,,,0.576136249,5717,9923,,,36.46320757,,,,,0.235035146,,54060,,,5.727091634,23,4016,,,9.137297025,45,492487,6.66480715,12.22642232,,,,,,,24.76668656,15.52115061,37.49706108,,,,5.621467259,3.433738244,8.681900253,,,,22.15965903,82,354840,17.45929091,27.73611768,23.10900688,,,,,,,,,,,,,29.13440526,22.66830631,36.8714545,,,,19.16356668,68,354840,14.88125937,24.29438709,,,,,,,21.84803134,11.94452204,36.65728417,,,,19.96390839,14.86444108,26.24885261,,,,24.77222749,122,492487,20.37639418,29.1680608,,,,,,,24.76668656,15.52115061,37.49706108,,,,26.98304284,21.85635134,32.95091363,,,,18.5915493,,7100,,,102,30,0.606943424,33042,54440,,,0.533,,,,,36.01491629,,,,,0.714258649,18850,26391,0.685212022,0.743305275,0.098613861,2490,25250,0.078771869,0.118455854,0.845022925,22301,26391,0.821103812,0.868942037,71908,,,,,0.218292819,15697,71908,,,0.203871614,14660,71908,,,0.173207432,12455,71908,,,0.006619569,476,71908,,,0.011584247,833,71908,,,0.002002559,144,71908,,,0.072175558,5190,71908,,,0.718445792,51662,71908,,,0.006894562,454,65849,0.002864829,0.010924295,0.487984647,35090,71908,,,0.636517547,44364,69698,, -12,027,12027,FL,DeSoto County,2024,1,10331.15262,691,98698,9150.31282,11511.99242,0,,,,2,,,,2,13391.59457,9730.353113,17977.59065,,7203.417725,5571.122746,9164.513541,,11798.45817,9944.099209,13652.81714,,,,,2,,0.25,,,0.228,0.272,4.714209896,,,4.403297159,5.046967166,4.81124389,,,4.593048326,5.026853191,0.087324982,237,2714,0.076703662,0.097946301,0,,,,,,,0.176656151,0.13467238,0.218639923,0.064171123,0.049831832,0.078510414,0.085036795,0.069403587,0.100670003,,,,,,,0.247,,,0.223,0.27,0.416,,,0.404,0.427,7.1,0.070438976,0.142,,,0.383,,,0.356,0.407,0.631592889,21459,33976,,,0.162163702,,,0.156407504,0.168350219,0.409090909,27,66,0.34858225,0.467838904,311,107,34408,,,36.54100529,221,6048,31.72329783,41.35871276,,,,,,,29.28870293,18.13016874,44.77089363,41.97434901,34.05794112,49.8907569,34.44316877,27.6963751,42.33650202,,,,,,,0.240367666,5727,23826,0.21296341,0.267771921,0.000261567,9,34408,,,3823.111111,0.000198233,7,35312,,,5044.571429,0.00252039,89,35312,,,396.7640449,3413,,,,,,,,927,3659,0.44,,,,,,,0.42,0.2,0.46,0.37,,,,,,,0.22,0.2,0.39,0.731436336,18302,25022,0.701612844,0.761259828,0.287271526,2609,9082,0.231180733,0.34336232,0.032751407,454,13862,,,0.326,1989,,0.229489362,0.422510638,,,,,,,0.417134832,0.167348345,0.666921318,0.532612613,0.460645373,0.604579853,0.271077047,0.156425211,0.385728884,4.144933367,82422,19885,3.358322904,4.93154383,0.351534733,2176,6190,0.276378683,0.426690784,8.718902581,30,34408,,,96.07081174,178,185280,81.95722066,110.1844028,,,,,,,131.2692377,87.9130687,188.5245222,54.38569656,37.19977619,76.77637635,114.8230636,93.92739813,135.7187291,,,,7.5,,,,,1,,,,,0.127214171,1580,12420,0.096942365,0.157485977,0.091014015,0.06602643,0.116001599,0.044605475,0.025635,0.06357595,0.00805153,4.38675E-05,0.016059192,0.70004962,8465,12092,0.669650072,0.730449167,,,,,,,,,,0.712527964,0.61911219,0.805943739,0.734160557,0.606059287,0.862261826,0.336,,12092,0.27140633,0.40059367,78.12885408,,,76.93507533,79.32263283,,,,,,,72.17550063,69.24520126,75.10580001,89.26153673,79.95741646,98.565657,77.02259061,75.46551283,78.5796684,,,,512.8137396,691,98698,472.5481056,553.0793735,,,,,,,628.5851424,500.6645572,779.2258581,338.9247526,269.9516735,420.1482238,578.7442315,519.7280631,637.7603998,,,,57.87967459,18,31099,34.30316338,91.47483928,,,,,,,,,,,,,,,,,,,7.440476191,20,2688,4.544836155,11.49121202,,,,,,,,,,,,,,,,,,,,,,0.155,,,0.143,0.166,0.172,,,0.163,0.18,0.138,,,0.131,0.145,466.5,140,30013,,,0.142,4820,,,,0.070438976,2455.643591,34862,,,20.733983,23,110929,13.14356664,31.11115479,,,,,,,,,,,,,29.91524015,17.72966724,47.27897668,,,,0.357,,,0.346,0.367,0.28877934,5155,17851,0.253034659,0.324524021,0.097905427,617,6302,0.069309682,0.126501172,0.001132759,40,35312,,,882.8,0.82,282.08,344,,,,,,,,2.617861254,,,,,,,2.468239991,2.549276581,2.804481364,2.686451184,,,,,,,2.460565895,2.675560368,2.734613506,0.013368414,,,,,-6168.037,,,,,0.927899687,34336,37004,0.816755655,1.039043718,47097,,,40990.61702,53203.38298,,,,,,,22848,13405.44681,32290.55319,40264,31842.55319,48685.44681,49331,45503.93617,53158.06383,,,,,,0.64651774,2952,4566,,,56.43960298,,,,,0.27730004,,47097,,,7.220216607,12,1662,,,7.406310176,19,256538,4.459082539,11.56587078,,,,,,,,,,,,,,,,,,,14.71718928,29,185280,9.698720468,21.41273771,15.65198618,,,,,,,,,,,,,18.75879807,10.72227392,30.46311282,,,,16.19170985,30,185280,10.92447864,23.1146726,,,,,,,,,,,,,17.81737194,10.55970382,28.15912919,,,,27.28640591,70,256538,21.27109204,34.47473233,,,,,,,38.96483424,20.13369844,68.0637239,18.5272103,10.36953896,30.55781585,29.97345209,21.60222784,40.51539977,,,,53.33333333,,3300,,,99,77,0.479416777,12659,26405,,,0.471,,,,,42.5989615,,,,,0.711831443,8784,12340,0.678361105,0.74530178,0.104712939,1222,11670,0.076928358,0.132497521,0.757698541,9350,12340,0.727012044,0.788385039,35312,,,,,0.177899864,6282,35312,,,0.23130947,8168,35312,,,0.113785682,4018,35312,,,0.011469189,405,35312,,,0.007051427,249,35312,,,0.0022372,79,35312,,,0.321477118,11352,35312,,,0.544234255,19218,35312,,,0.058032425,1890,32568,0.041261959,0.07480289,0.438038061,15468,35312,,,0.489580881,16634,33976,, -12,029,12029,FL,Dixie County,2024,1,11905.96112,447,45708,9983.698645,13828.2236,0,,,,2,,,,2,9160.100202,5428.855916,14476.90748,1,,,,2,12808.75295,10543.89765,15073.60826,,,,,2,,0.205,,,0.183,0.228,4.526330054,,,4.197977585,4.872461014,5.570850769,,,5.286725289,5.856553588,0.112226277,123,1096,0.093538863,0.130913692,0,,,,,,,0.149425287,0.074510987,0.224339588,,,,0.109341826,0.08941311,0.129270542,,,,,,,0.267,,,0.235,0.298,0.385,,,0.37,0.399,7.7,0.030058909,0.136,,,0.321,,,0.295,0.348,0.346977743,5815,16759,,,0.189405795,,,0.179946931,0.198261554,0.318181818,7,22,0.204127461,0.433005911,473.6,81,17102,,,44.16635996,120,2717,36.26399549,52.06872442,,,,,,,48.07692308,23.05475335,88.41517328,54.64480874,26.20430982,100.4937489,42.99149127,34.82324595,52.4999691,,,,,,,0.169413433,1912,11286,0.147966624,0.190860241,0.000233891,4,17102,,,4275.5,5.83976E-05,1,17124,,,17124,0.000175193,3,17124,,,5708,3539,,,,,,,,,3396,0.29,,,,,,,,,0.3,0.28,,,,,,,0.21,,0.28,0.807652368,10111,12519,0.771948064,0.843356673,0.300074092,1215,4049,0.228474043,0.371674142,0.032638414,191,5852,,,0.305,929,,0.197765957,0.412234043,,,,,,,,,,,,,0.278253774,0.177798647,0.378708901,4.095904096,86100,21021,3.464141401,4.727666791,0.209045226,624,2985,0.118353141,0.299737311,7.01672319,12,17102,,,136.323763,115,84358,111.4077404,161.2397857,,,,,,,,,,,,,150.2608301,121.655371,178.8662892,,,,7.2,,,,,0,,,,,0.129109864,805,6235,0.07468371,0.183536017,0.042132556,0.017574008,0.066691103,0.049719326,0.02515048,0.074288173,0.046511628,0.003237946,0.089785309,0.759027128,4057,5345,0.709313058,0.808741198,,,,,,,,,,,,,0.754652606,0.686275805,0.823029406,0.238,,5345,0.166015896,0.309984104,74.11195231,,,72.60207475,75.62182988,,,,,,,,,,,,,73.14871977,71.46967731,74.82776223,,,,610.1237982,447,45708,548.5877577,671.6598386,,,,,,,580.7042378,363.9242542,879.1931948,,,,639.6168246,570.182784,709.0508651,,,,81.43322476,11,13508,40.6511724,145.7065333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.138,,,0.127,0.151,0.179,,,0.169,0.191,0.112,,,0.105,0.119,288.7,43,14893,,,0.136,2260,,,,0.030058909,493.6274069,16422,,,23.53633422,12,50985,12.16156734,41.11323928,,,,,,,,,,,,,25.83493823,12.89670808,46.22584084,,,,0.385,,,0.371,0.398,0.204612006,1677,8196,0.176016261,0.233207751,0.077209302,249,3225,0.053379515,0.10103909,0.000408783,7,17124,,,2446.285714,0.825,108.075,131,,,,,,,,3.311194868,,,,,,,,,3.381463349,3.271784093,,,,,,,,,3.36525911,0.032413342,,,,,-3616.343,,,,,0.863502538,34022,39400,0.628560811,1.098444265,40587,,,34832.10638,46341.89362,,,,,,,,,,80156,37089.61702,123222.383,46033,39832.48936,52233.51064,,,,,,0.725555031,1536,2117,,,33.37945693,,,,,0.44314682,,40587,,,1.490312966,1,671,,,8.557174763,10,116861,4.103497913,15.73694906,,,,,,,,,,,,,,,,,,,17.188162,21,84358,10.34839633,26.8414441,24.89390455,,,,,,,,,,,,,19.92362879,11.80800512,31.48792308,,,,24.89390455,21,84358,15.40971927,38.05297747,,,,,,,,,,,,,28.35110002,17.31758844,43.78597457,,,,25.67152429,30,116861,17.32046964,36.64769717,,,,,,,,,,,,,30.64664419,20.67716214,43.74999019,,,,23.33333333,,1500,,,14,21,0.6085693,8167,13420,,,0.305,,,,,10.38072696,,,,,0.830142764,5117,6164,0.787477175,0.872808354,0.064928246,371,5714,0.035076849,0.094779644,0.724042829,4463,6164,0.669375019,0.77871064,17124,,,,,0.180506891,3091,17124,,,0.250175193,4284,17124,,,0.088530717,1516,17124,,,0.007474889,128,17124,,,0.005255781,90,17124,,,0.000291988,5,17124,,,0.046718057,800,17124,,,0.833683719,14276,17124,,,0.006586715,106,16093,0,0.015246251,0.451238029,7727,17124,,,1,16759,16759,, -12,031,12031,FL,Duval County,2024,1,11281.36473,17104,2759491,11042.53052,11520.19894,0,7012.79301,3362.906833,12896.77603,1,3663.267607,3083.968072,4242.567142,,14322.66382,13831.90156,14813.42607,,6731.101907,6178.491509,7283.712304,,11282.81177,10948.84341,11616.78012,,,,,2,,0.164,,,0.148,0.181,3.691962914,,,3.424092622,3.954360928,5.003925537,,,4.793258806,5.215092838,0.102177554,9211,90147,0.100200342,0.104154767,0,0.11,0.048673608,0.171326392,0.087261301,0.078661322,0.095861279,0.150395695,0.146453779,0.15433761,0.073222788,0.068596767,0.077848809,0.074487569,0.071909907,0.07706523,0.112,0.056713823,0.167286177,0.093070309,0.080263376,0.105877241,0.185,,,0.161,0.208,0.346,,,0.335,0.357,7.6,0.097460094,0.106,,,0.278,,,0.257,0.3,0.892256373,888301,995567,,,0.18589295,,,0.180609618,0.190884359,0.278313253,231,830,0.261036379,0.295786466,779.6,7795,999935,,,23.566329,4476,189932,22.87592553,24.25673248,,,,7.539827314,5.780742367,9.665718336,31.95817218,30.63203571,33.28430865,34.89241505,32.53276577,37.25206434,14.49183407,13.65131732,15.33235082,,,,21.50537634,18.36366076,24.64709193,0.135781218,112169,826101,0.125057814,0.146504622,0.000810053,810,999935,,,1234.487654,0.000792889,806,1016536,,,1261.210918,0.002503601,2545,1016536,,,399.4247544,3387,,,,,,2018,4781,3589,2977,0.45,,,,,,0.4,0.45,0.34,0.46,0.42,,,,,0.47,0.37,0.32,0.32,0.44,0.90722653,619809,683191,0.902660245,0.911792815,0.664916858,193417,290889,0.646675066,0.683158651,0.030266365,15509,512417,,,0.203,45053,,0.167255319,0.238744681,0.196601942,0.004164757,0.389039127,0.119529856,0.078107525,0.160952188,0.330139477,0.303711383,0.356567571,0.232934531,0.1963341,0.269534961,0.114252075,0.099083307,0.129420844,4.449708506,126701,28474,4.314769858,4.584647154,0.334216111,74331,222404,0.315955361,0.352476862,8.610559686,861,999935,,,114.8044076,5525,4812533,111.7771562,117.831659,,,,26.7447784,20.55142206,34.21818954,101.2918215,96.06729593,106.516347,58.14285799,51.50785017,64.77786581,144.6711719,139.957669,149.3846748,,,,8.6,,,,,0,,,,,0.16308949,60295,369705,0.15611689,0.17006209,0.14310371,0.135783354,0.150424066,0.021300767,0.018675973,0.023925561,0.006843294,0.00561592,0.008070668,0.747365302,365712,489335,0.737748065,0.756982539,0.665900383,0.56611809,0.765682676,0.760092399,0.722001649,0.79818315,0.759043819,0.743310426,0.774777212,0.715040664,0.686446903,0.743634424,0.791629092,0.78231559,0.800942593,0.353,,489335,0.340790867,0.365209133,74.34138291,,,74.15311022,74.5296556,,,,87.4791298,85.89110801,89.06715158,71.60603778,71.23720994,71.97486563,81.32913035,80.49584366,82.16241703,74.16492876,73.91739696,74.41246056,,,,522.0144175,17104,2759491,513.9646234,530.0642116,263.1020053,168.5744193,391.4749286,187.6634301,166.2083468,209.1185135,654.7482318,637.4609956,672.0354681,291.8909288,271.1138895,312.6679681,529.2008648,518.2605988,540.1411308,,,,76.70421977,736,959530,71.16260387,82.24583568,,,,,,,120.1285259,108.5286428,131.7284089,67.11460007,53.8985349,82.59029055,50.1361389,43.09910488,57.17317292,,,,8.044226695,729,90624,7.460275424,8.628177966,,,,,,,12.97158754,11.72355717,14.21961791,7.904794997,6.364447837,9.705336598,4.465827782,3.815220747,5.116434817,,,,12.5,8.008985862,18.59900916,0.111,,,0.102,0.121,0.16,,,0.15,0.168,0.113,,,0.107,0.119,777.4,6495,835449,,,0.106,104030,,,,0.097460094,84231.15283,864263,,,49.61671006,1451,2924418,47.06371291,52.16970721,,,,,,,27.3652234,23.88852842,30.84191838,22.77790606,17.85424228,28.63979712,73.90329112,69.55756031,78.24902194,,,,0.362,,,0.349,0.373,0.15886541,96373,606633,0.145759027,0.171971793,0.074266911,17017,229133,0.058777549,0.089756272,0.0022557,2293,1016536,,,443.321413,0.9,7254,8060,,,0.095005452,4531,47692,0.077161252,0.112849652,3.057575198,,,,,,3.509004474,2.767572675,2.85679699,3.40519483,3.259959225,,,,,,3.954952367,2.940019216,3.139622818,3.605301196,0.151838793,,,,,-7911.301,,,,,0.842889068,46015,54592,0.819691823,0.866086313,70203,,,67312.44681,73093.55319,66696,49275.23404,84116.76596,93011,83875.85106,102146.1489,47536,45399.65957,49672.34043,60478,56048.04255,64907.95745,76071,74038.31915,78103.68085,,,,,,0.504640059,65635,130063,,,48.4304832,,,,,0.235673689,,70203,,,6.268629198,408,65086,,,13.81581341,919,6651798,12.92255981,14.70906701,,,,,,,33.73631755,31.16636709,36.30626802,6.822375017,4.994835968,9.100092208,5.259293157,4.499361495,6.019224818,,,,16.12413994,797,4812533,14.97857632,17.26970357,16.5609254,,,,6.41264503,3.589108744,10.57668277,7.307943838,5.878769297,8.73711838,9.769334785,7.125819829,13.07213857,22.79817401,20.90805369,24.68829432,,,,21.83881129,1051,4812533,20.51847759,23.15914499,,,,,,,36.75686596,33.60963291,39.904099,11.82566603,9.024229006,15.22197631,17.7091266,16.06001004,19.35824315,,,,16.53688221,1100,6651798,15.55961492,17.5141495,,,,4.965227888,2.838056751,8.063219019,17.1229648,15.29206155,18.95386806,12.75487503,10.20225365,15.7521669,18.35035982,16.93086719,19.76985245,,,,13.83516484,,91000,,,698,561,0.710314858,492820,693805,,,0.663,,,,,136.3286322,,,,,0.575767673,228080,396132,0.568021206,0.58351414,0.159112481,61019,383496,0.151966401,0.166258561,0.891967829,353337,396132,0.885185038,0.89875062,1016536,,,,,0.222105267,225778,1016536,,,0.154425421,156979,1016536,,,0.296959478,301870,1016536,,,0.004904893,4986,1016536,,,0.051538755,52391,1016536,,,0.00130443,1326,1016536,,,0.117819733,119768,1016536,,,0.504021501,512356,1016536,,,0.027333047,25458,931400,0.024829815,0.029836279,0.514140178,522642,1016536,,,0.026507508,26390,995567,, -12,033,12033,FL,Escambia County,2024,1,12140.21382,6362,896194,11698.05779,12582.36984,0,10097.69314,5040.732033,18067.5623,1,6160.922356,4362.36105,7959.483662,,15775.23314,14747.35715,16803.10912,,6839.949029,5511.3169,8168.581159,,11774.80268,11223.1689,12326.43646,,,,,2,,0.162,,,0.145,0.18,3.717609226,,,3.44427344,3.98755274,4.985158895,,,4.734196497,5.225894762,0.107478913,2867,26675,0.103762065,0.11119576,0,,,,0.089779006,0.068955799,0.110602212,0.166026038,0.157904875,0.174147202,0.064371258,0.053626293,0.075116222,0.082781235,0.078363094,0.087199377,,,,0.104368932,0.083493155,0.12524471,0.197,,,0.173,0.223,0.354,,,0.34,0.366,7.1,0.123076234,0.116,,,0.253,,,0.231,0.275,0.789726783,254217,321905,,,0.169484018,,,0.163076034,0.175618776,0.20952381,66,315,0.181542364,0.238696276,651.4,2100,322390,,,26.23583031,1796,68456,25.02244784,27.44921279,,,,,,,46.78767233,43.69457865,49.88076601,22.26720648,18.29959514,26.23481781,18.34322691,16.9705455,19.71590832,,,,26.90707351,21.81982402,32.82434783,0.143124749,35681,249300,0.128826877,0.157422622,0.000763051,246,322390,,,1310.528455,0.000707958,230,324878,,,1412.513044,0.002363964,768,324878,,,423.0182292,3265,,,,,4208,1797,4486,2147,3063,0.37,,,,,0.21,0.22,0.38,0.35,0.38,0.34,,,,,0.24,0.29,0.24,0.27,0.35,0.90765579,198075,218227,0.900742692,0.914568887,0.661179896,54950,83109,0.631692569,0.690667224,0.030340433,4523,149075,,,0.25,16452,,0.195191489,0.304808511,0.108108108,0,0.681955156,0.011382114,0,0.091801752,0.382782047,0.335190415,0.430373679,0.232493516,0.172411831,0.292575202,0.162071821,0.135013509,0.189130132,4.357759406,119651,27457,4.113427037,4.602091774,0.340978432,22687,66535,0.309906234,0.372050631,8.933279568,288,322390,,,109.2257097,1739,1592116,104.0920018,114.3594176,,,,36.68874428,22.08902073,57.29401891,96.96553291,86.80680244,107.1242634,69.34667031,53.63270979,88.22596764,123.6018764,116.7769832,130.4267696,,,,9,,,,,0,,,,,0.13333879,16290,122170,0.122886096,0.143791484,0.116377521,0.105351755,0.127403288,0.016084145,0.012173669,0.019994621,0.00777605,0.005643995,0.009908105,0.712417585,104055,146059,0.696675899,0.728159271,,,,0.670085139,0.607306738,0.732863541,0.674602599,0.64512251,0.704082687,0.610320808,0.559301765,0.661339852,0.771165894,0.753465227,0.788866561,0.288,,146059,0.271619729,0.304380271,73.05719961,,,72.73927957,73.37511965,80.70390883,75.25503512,86.15278255,82.05803243,79.90149488,84.21456999,69.86074889,69.16941822,70.55207957,83.7329715,80.93019925,86.53574376,73.26380433,72.87637494,73.65123372,,,,565.9247329,6362,896194,551.2459246,580.6035411,358.5970759,232.0651201,529.3600238,283.9112067,226.7426202,341.0797931,737.2935734,700.3011865,774.2859602,287.6154716,237.7687842,337.462159,555.0679524,537.2815813,572.8543235,,,,71.73231943,223,310878,62.31735869,81.14728018,,,,,,,112.1616923,90.17800061,134.145384,57.41187278,32.13298937,94.69215322,55.82761404,45.00493635,68.4676127,,,,7.938274353,214,26958,6.874681797,9.001866909,,,,,,,12.26621326,9.87396694,14.65845958,,,,5.328947368,4.231953421,6.623395012,,,,,,,0.115,,,0.106,0.124,0.164,,,0.154,0.174,0.102,,,0.097,0.108,470.6,1288,273668,,,0.116,36990,,,,0.123076234,36629.82568,297619,,,46.7255755,450,963070,42.40835259,51.04279842,,,,,,,35.32255919,27.87601133,44.14713841,25.37856357,14.20418938,41.85808116,56.25879044,50.33078747,62.18679341,,,,0.365,,,0.352,0.378,0.17237895,31560,183085,0.154506609,0.19025129,0.06514968,4518,69348,0.048468829,0.081830531,0.00235473,765,324878,,,424.6771242,0.87,2344.65,2695,,,0.101099968,1875,18546,0.071652521,0.130547415,3.105545291,,,,,,3.61922541,2.702477368,3.109578717,3.414732149,3.088976902,,,,,,3.707121934,2.697425289,3.156592939,3.375040458,0.093161716,,,,,-7608.473,,,,,0.830621715,43140,51937,0.7828323,0.87841113,61634,,,58319.2766,64948.7234,103472,34317.95745,172626.0426,66419,58029.7234,74808.2766,41498,38848.12766,44147.87234,59961,51575.29787,68346.70213,69248,67104.51064,71391.48936,,,,,,0.53109075,20635,38854,,,37.6127094,,,,,0.253155726,,61634,,,5.175874089,98,18934,,,8.790491483,195,2218306,7.55667115,10.02431182,,,,,,,21.53505029,17.47351638,25.5965842,,,,5.118338798,4.011960571,6.435542599,,,,19.06792765,312,1592116,16.86359129,21.27226401,19.59656206,,,,,,,7.834796332,5.117949084,11.47979191,17.07561533,9.557092276,28.16363071,23.02348083,20.02735286,26.0196088,,,,19.03127662,303,1592116,16.8883728,21.17418043,,,,,,,23.82581666,19.05757792,29.42468975,13.65919264,7.272944807,23.3576354,18.83457164,16.17040611,21.49873717,,,,18.52765128,411,2218306,16.73640406,20.3188985,,,,,,,21.33565168,17.29296489,25.37833846,15.35367183,9.378421631,23.71250089,19.00095636,16.7386736,21.26323912,,,,34.84536083,,29100,,,692,322,0.698317451,170372,243975,,,0.634,,,,,108.9653492,,,,,0.631364739,79891,126537,0.620214283,0.642515196,0.135760538,16668,122775,0.125073248,0.146447827,0.87861258,111177,126537,0.868375183,0.888849976,324878,,,,,0.206973079,67241,324878,,,0.180480057,58634,324878,,,0.22305604,72466,324878,,,0.008960287,2911,324878,,,0.034046627,11061,324878,,,0.00188994,614,324878,,,0.064901286,21085,324878,,,0.635721717,206532,324878,,,0.012844576,3887,302618,0.010323284,0.015365869,0.505746773,164306,324878,,,0.07626163,24549,321905,, -12,035,12035,FL,Flagler County,2024,1,8956.115779,2033,307709,8216.482969,9695.748588,0,,,,2,3305.586865,1511.524806,6275.033543,1,11789.38632,9287.333484,14291.43915,,6242.99542,4455.985759,8030.005081,,9303.348834,8400.101023,10206.59665,,,,,2,,0.15,,,0.134,0.168,3.553875624,,,3.262999711,3.837376152,5.284845652,,,5.006113582,5.571922251,0.084509496,485,5739,0.077313058,0.091705935,0,,,,0.14893617,0.090169962,0.207702379,0.141882674,0.116622165,0.167143183,0.081855389,0.062008919,0.101701859,0.071626734,0.063600102,0.079653366,,,,,,,0.194,,,0.165,0.222,0.326,,,0.313,0.34,6.9,0.179052301,0.1,,,0.233,,,0.212,0.256,0.850474094,98126,115378,,,0.193743499,,,0.186420836,0.201221832,0.254901961,26,102,0.20421193,0.307670037,267.9,324,120932,,,13.3583909,263,19688,11.7439121,14.97286969,,,,,,,18.8143415,14.09323285,24.60962191,12.7925117,9.18012726,17.3544866,12.31748103,10.35281155,14.28215052,,,,12.5,6.239954963,22.36595286,0.134194077,11142,83029,0.117513226,0.150874928,0.000529223,64,120932,,,1889.5625,0.000339371,43,126705,,,2946.627907,0.000765558,97,126705,,,1306.237113,2314,,,,,,974,4109,3815,2080,0.49,,,,,,0.43,0.51,0.43,0.5,0.41,,,,,,0.37,0.33,0.33,0.42,0.922522185,83789,90826,0.911343635,0.933700735,0.616188108,13627,22115,0.563700459,0.668675756,0.033707197,1701,50464,,,0.165,3266,,0.116148936,0.213851064,,,,0.317251462,0.092620304,0.54188262,0.098378983,0,0.208632146,0.192423735,0.092058964,0.292788505,0.151609118,0.109671669,0.193546568,3.924502525,132138,33670,3.610659906,4.238345143,0.220247656,4251,19301,0.176472912,0.2640224,6.284523534,76,120932,,,94.79395745,547,577041,86.84988744,102.7380275,,,,,,,86.65210911,64.31486558,114.2400032,38.25554705,24.51105084,56.92122162,107.4566045,97.65791048,117.2552985,,,,7.4,,,,,1,,,,,0.137942779,6075,44040,0.121214634,0.154670925,0.128731128,0.111802564,0.145659692,0.007947321,0.004657866,0.011236776,0.005222525,0.002485864,0.007959186,0.713059551,33563,47069,0.689430252,0.73668885,,,,,,,0.688659794,0.594156406,0.783163182,0.596502877,0.51997643,0.673029325,0.673920157,0.645888013,0.701952301,0.424,,47069,0.389922571,0.458077429,77.96171115,,,77.36257014,78.56085216,,,,87.4499725,83.52819863,91.37174637,76.01795417,73.99431624,78.0415921,83.08754238,80.9995616,85.17552315,77.37468927,76.67250237,78.07687617,,,,388.7281107,2033,307709,368.4078179,409.0484034,,,,181.3140948,109.1629293,283.1444188,486.0431831,413.9920915,558.0942747,269.5013996,218.3790184,320.6237807,404.3178365,379.8079108,428.8277623,,,,50.22836384,43,85609,36.35051596,67.65727647,,,,,,,109.0611651,56.35349549,190.5079074,,,,42.56500416,26.98256137,63.86840547,,,,5.495479525,31,5641,3.733911714,7.800394523,,,,,,,,,,,,,,,,,,,,,,0.109,,,0.099,0.119,0.163,,,0.152,0.174,0.095,,,0.09,0.101,243.6,262,107556,,,0.1,11410,,,,0.179052301,17134.58897,95696,,,30.46853841,108,354464,24.72213892,36.21493791,,,,,,,,,,,,,37.59155823,30.55256358,45.76637331,,,,0.362,,,0.348,0.376,0.154141032,9771,63390,0.133885713,0.174396351,0.072360503,1503,20771,0.050913694,0.093807311,0.000812912,103,126705,,,1230.145631,0.91,1036.49,1139,,,0.04758556,203,4266,0.015985565,0.079185555,3.334439818,,,,,,3.549221386,2.921855649,3.361740779,3.41017636,3.439568576,,,,,,4.040894624,2.844703943,3.463309108,3.548243014,0.011012183,,,,,-2543.756,,,,,0.874748576,46534,53197,0.793556189,0.955940964,73336,,,66393.19149,80278.80851,,,,59479,31893.6383,87064.3617,61786,45915.3617,77656.6383,64433,54560.31915,74305.68085,71288,66299.23404,76276.76596,,,,,,0.514203031,6752,13131,,,29.22442991,,,,,0.248731864,,73336,,,4.71475719,20,4242,,,2.908656795,23,790743,1.843838901,4.36441333,,,,,,,,,,,,,2.371398227,1.296465478,3.978803278,,,,22.45788687,135,577041,18.2054618,26.71031194,23.39521802,,,,,,,23.38809249,11.6752515,41.84775792,,,,25.54073438,20.12729139,30.95417737,,,,15.07691828,87,577041,12.07599348,18.597323,,,,,,,,,,,,,17.21166393,13.51485814,21.60766791,,,,15.42852735,122,790743,12.69073421,18.16632049,,,,,,,22.49606319,13.33259277,35.55347848,,,,15.58347407,12.56247953,19.11174757,,,,17.01030928,,9700,,,56,109,0.795960044,71716,90100,,,0.705,,,,,50.19575017,,,,,0.792445688,37680,47549,0.77264738,0.812243995,0.133237206,6191,46466,0.117153159,0.149321252,0.821216009,39048,47549,0.803287554,0.839144464,126705,,,,,0.16007261,20282,126705,,,0.313799771,39760,126705,,,0.097139024,12308,126705,,,0.004419715,560,126705,,,0.025429146,3222,126705,,,0.00104179,132,126705,,,0.117856438,14933,126705,,,0.737539955,93450,126705,,,0.023481638,2660,113280,0.016831153,0.030132124,0.51463636,65207,126705,,,0.076531054,8830,115378,, -12,037,12037,FL,Franklin County,2024,1,9891.367448,286,33500,7863.220104,11919.51479,0,,,,2,,,,2,11811.62477,7567.930864,17574.76139,1,,,,2,10352.98602,7949.499431,12756.47261,,,,,2,,0.197,,,0.174,0.222,4.230867046,,,3.837872317,4.599257,5.065230699,,,4.780153462,5.363053798,0.093655589,62,662,0.071461335,0.115849843,0,,,,,,,,,,,,,0.094812165,0.070526413,0.119097916,,,,,,,0.234,,,0.201,0.267,0.384,,,0.369,0.399,8,0.00674057,0.13,,,0.293,,,0.265,0.32,0.67552807,8411,12451,,,0.18165501,,,0.173739751,0.189440656,0.375,3,8,0.179126284,0.556186502,334.1,42,12572,,,48.96907217,76,1552,38.5820592,61.29209598,,,,,,,,,,,,,51.5970516,39.64859115,66.01504282,,,,,,,0.184927087,1433,7749,0.1610973,0.208756875,0.000318167,4,12572,,,3143,0.000240038,3,12498,,,4166,0.000880141,11,12498,,,1136.181818,2031,,,,,,,,,2018,0.4,,,,,,,0.33,,0.4,0.32,,,,,,,0.2,,0.33,0.8036892,7799,9704,0.764847205,0.842531196,0.325065274,996,3064,0.235135826,0.414994722,0.027564767,133,4825,,,0.273,501,,0.176489362,0.369510638,,,,,,,0.355140187,0.105084083,0.605196291,0.337931035,0.032836869,0.6430252,0.520918786,0.391680132,0.65015744,5.375739503,111767,20791,4.393084934,6.358394072,0.301242236,582,1932,0.149707014,0.452777458,12.72669424,16,12572,,,104.3720283,63,60361,80.20233229,133.5371635,,,,,,,155.3800337,80.28713076,271.4176492,,,,107.4589128,80.01021879,141.2886249,,,,7.6,,,,,1,,,,,0.162046908,760,4690,0.119227116,0.204866701,0.123243243,0.083089526,0.163396961,0.029850746,0.00490248,0.054799012,0.011727079,0,0.030672849,0.749757046,3086,4116,0.696289542,0.80322455,,,,,,,,,,,,,0.755064457,0.690221089,0.819907825,0.239,,4116,0.168409911,0.309590089,74.79030158,,,73.19365603,76.38694712,,,,,,,,,,,,,74.64546991,72.85598451,76.43495532,,,,511.583307,286,33500,446.310867,576.8557471,,,,,,,797.8272751,552.518581,1114.883649,,,,521.9058126,446.2436874,597.5679379,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.136,,,0.123,0.15,0.174,,,0.162,0.186,0.112,,,0.104,0.12,150.9,17,11264,,,0.13,1590,,,,0.00674057,77.84683879,11549,,,27.10173993,10,36898,12.99633773,49.84106467,,,,,,,,,,,,,,,,,,,0.358,,,0.343,0.372,0.205797593,1214,5899,0.176010359,0.235584827,0.119441572,231,1934,0.08607987,0.152803274,0.000720115,9,12498,,,1388.666667,0.725,56.55,78,,,,,,,,2.96359472,,,,,,,,,2.970032658,2.928771491,,,,,,,,,2.943809567,0.001714228,,,,,-5512.209,,,,,0.634588764,35299,55625,0.519089691,0.750087837,52180,,,46403.65957,57956.34043,,,,,,,,,,,,,57492,52572.34043,62411.65957,,,,,,0.552504039,684,1238,,,59.59614355,,,,,0.261230357,,52180,,,11.90476191,6,504,,,,,,,,,,,,,,,,,,,,,,,,,,13.20054699,10,60361,5.699059244,26.01034,16.56698862,,,,,,,,,,,,,,,,,,,16.56698862,10,60361,7.944514995,30.46728192,,,,,,,,,,,,,,,,,,,21.42270569,18,84023,12.69645309,33.85711087,,,,,,,,,,,,,19.70025307,10.48955506,33.68803273,,,,48.88888889,,900,,,18,26,0.698521163,6849,9805,,,0.334,,,,,16.92078656,,,,,0.806553245,3840,4761,0.764389281,0.84871721,0.118365534,533,4503,0.078370884,0.158360184,0.844150389,4019,4761,0.801768323,0.886532455,12498,,,,,0.149863978,1873,12498,,,0.269483117,3368,12498,,,0.100576092,1257,12498,,,0.009521523,119,12498,,,0.005440871,68,12498,,,0.001360218,17,12498,,,0.056409025,705,12498,,,0.811889902,10147,12498,,,0.01386306,164,11830,0.00078116,0.02694496,0.458473356,5730,12498,,,1,12451,12451,, -12,039,12039,FL,Gadsden County,2024,1,11884.53686,936,124387,10699.99997,13069.07374,0,,,,2,,,,2,13724.94318,12063.40465,15386.48171,,8276.902025,5797.040422,11458.72123,,10456.39103,8232.730236,12680.05183,,,,,2,,0.227,,,0.205,0.251,4.405886991,,,4.069321565,4.741049115,5.264859185,,,5.022931629,5.495352824,0.129375525,462,3571,0.118367672,0.140383379,0,,,,,,,0.165817508,0.150129223,0.181505793,0.081163859,0.060217919,0.102109799,0.067510549,0.049067655,0.085953442,,,,,,,0.23,,,0.203,0.258,0.43,,,0.416,0.443,7.9,0.026949631,0.124,,,0.347,,,0.32,0.375,0.537101264,23539,43826,,,0.161461524,,,0.155671454,0.167457946,0.367647059,25,68,0.306387384,0.428100651,960.8,420,43714,,,32.70976917,299,9141,29.00212578,36.41741257,,,,,,,34.25718712,29.49746901,39.01690524,43.35856848,33.31791452,55.47444411,21.12676056,14.79692337,29.24834184,,,,,,,0.165985411,5279,31804,0.145730092,0.18624073,0.00022876,10,43714,,,4371.4,0.000207359,9,43403,,,4822.555556,0.001566712,68,43403,,,638.2794118,3807,,,,,,,5508,,2888,0.39,,,,,,,0.41,0.28,0.39,0.32,,,,,,,0.26,0.27,0.36,0.803055583,24547,30567,0.78097556,0.825135606,0.442072003,4617,10444,0.384760252,0.499383754,0.038134044,730,19143,,,0.347,3218,,0.249297872,0.444702128,,,,,,,0.468356674,0.396591824,0.540121525,0.576357466,0.477804909,0.674910023,0.099733333,0.035305564,0.164161103,4.528334064,92935,20523,3.697078496,5.359589633,0.453029518,4374,9655,0.391246554,0.514812483,10.29418493,45,43714,,,86.04864617,195,226616,73.97098595,98.12630639,,,,,,,82.02719765,66.10826812,97.94612717,49.1581664,25.40074191,85.86942382,107.1215491,84.80913918,133.5054119,,,,9.2,,,,,0,,,,,0.145333719,2515,17305,0.118971866,0.171695571,0.118670695,0.089461085,0.147880305,0.028893383,0.018039839,0.039746928,0.004622941,0.000363587,0.008882295,0.819759185,13276,16195,0.785185128,0.854333242,,,,,,,0.819606414,0.744471139,0.894741689,0.790026247,0.643263281,0.936789212,0.763302752,0.696307957,0.830297547,0.551,,16195,0.493400392,0.608599608,74.05440553,,,73.15287408,74.95593697,,,,,,,72.26862319,71.0211288,73.51611758,105.7699588,69.31040969,142.2295079,75.21881426,73.67051994,76.76710858,,,,551.7278694,936,124387,514.4236348,589.032104,,,,,,,649.8421418,594.4685924,705.2156911,463.0746326,332.3103514,628.2130278,472.7206285,412.1908158,533.2504412,,,,72.33526227,31,42856,49.14830124,102.6741308,,,,,,,92.82896264,59.47726795,138.1221381,,,,,,,,,,10.087241,37,3668,7.102348573,13.90393297,,,,,,,12.98701299,8.697606421,18.65151699,,,,,,,,,,,,,0.138,,,0.127,0.149,0.174,,,0.164,0.185,0.143,,,0.136,0.151,710.9,264,37135,,,0.124,5480,,,,0.026949631,1250.166409,46389,,,11.8825705,16,134651,6.791915733,19.29655004,,,,,,,,,,,,,,,,,,,0.396,,,0.383,0.409,0.199115428,4592,23062,0.172902662,0.225328194,0.079825518,732,9170,0.054804241,0.104846795,0.000414718,18,43403,,,2411.277778,0.83,273.07,329,,,0.210719916,401,1903,0.106601934,0.314837898,2.848825152,,,,,,,2.843981283,2.893856337,,3.181852398,,,,,,,3.129730741,3.316762014,,0.050073693,,,,,-25018.73,,,,,0.809889191,37787,46657,0.701953181,0.917825202,45628,,,39788.51064,51467.48936,,,,,,,37361,33786.53192,40935.46809,43569,36223.46809,50914.53192,63403,56120.61702,70685.38298,,,,,,0.882553192,4148,4700,,,44.4245443,,,,,0.288528973,,45628,,,8.158508159,21,2574,,,12.86645871,41,318658,9.233192912,17.45480407,,,,,,,20.00525853,13.93439556,27.82247183,,,,,,,,,,16.05119466,35,226616,11.04890384,22.54184507,15.4446288,,,,,,,,,,,,,29.33037155,17.65879966,45.80300839,,,,21.62248032,49,226616,15.99642997,28.58606568,,,,,,,22.51726994,14.96256235,32.54372447,,,,27.11937951,16.56522155,41.88368214,,,,25.41910136,81,318658,20.18643561,31.59362206,,,,,,,27.43578312,20.22898066,36.37586805,,,,26.86469787,17.85139663,38.82696826,,,,16.66666667,,4500,,,39,36,0.689653171,23762,34455,,,0.55,,,,,25.43796532,,,,,0.738306579,11728,15885,0.70559245,0.771020708,0.130805429,1918,14663,0.102169784,0.159441073,0.712559018,11319,15885,0.679723532,0.745394504,43403,,,,,0.21685137,9412,43403,,,0.201322489,8738,43403,,,0.541160749,23488,43403,,,0.006819805,296,43403,,,0.006958044,302,43403,,,0.001774071,77,43403,,,0.116766122,5068,43403,,,0.321705873,13963,43403,,,0.024813655,1022,41187,,,0.520493975,22591,43403,,,0.805115685,35285,43826,, -12,041,12041,FL,Gilchrist County,2024,1,10216.90742,366,50770,8463.152311,11970.66253,0,,,,2,,,,2,,,,2,16437.34111,9575.356929,26317.77542,1,9570.772471,7761.662079,11379.88286,,,,,2,,0.191,,,0.17,0.215,4.26992998,,,3.933395449,4.635082192,5.152256597,,,4.862522873,5.425779764,0.086545455,119,1375,0.071683692,0.101407217,0,,,,,,,0.205882353,0.109775667,0.301989039,,,,0.086648983,0.070253457,0.10304451,,,,,,,0.245,,,0.212,0.278,0.36,,,0.344,0.375,8.4,0.000730409,0.114,,,0.291,,,0.264,0.319,0.394872369,7054,17864,,,0.193166354,,,0.184659593,0.201652541,0.433333333,13,30,0.341978933,0.519075952,419.4,77,18360,,,28.21670429,100,3544,22.68623025,33.74717833,,,,,,,,,,40.625,21.63110153,69.46998724,25.79769179,20.32564694,32.28965817,,,,,,,0.161133245,2184,13554,0.140877926,0.181388564,0.00043573,8,18360,,,2295,0.000263269,5,18992,,,3798.4,0.001316344,25,18992,,,759.68,4401,,,,,,,,,4444,0.38,,,,,,,0.27,,0.39,0.32,,,,,,,0.13,0.16,0.32,0.859868166,11088,12895,0.836498816,0.883237516,0.435378894,1873,4302,0.351650365,0.519107423,0.030237581,224,7408,,,0.204,782,,0.126553192,0.281446809,,,,,,,,,,0.188498403,0.066491132,0.310505673,0.117010129,0.055525922,0.178494337,4.917596035,111118,22596,3.47199585,6.363196219,0.249063131,864,3469,0.173297327,0.324828935,7.625272331,14,18360,,,119.7917801,110,91826,97.40525186,142.1783084,,,,,,,,,,,,,129.471199,104.3448635,154.5975346,,,,7.5,,,,,0,,,,,0.110447761,740,6700,0.080245894,0.140649628,0.078801843,0.052734421,0.104869266,0.02880597,0.009780642,0.047831299,0.006716418,0,0.01568468,0.847620335,6269,7396,0.787738871,0.9075018,,,,,,,,,,,,,0.770723104,0.712334474,0.829111734,0.476,,7396,0.39488241,0.55711759,75.64300764,,,74.22155492,77.06446036,,,,,,,,,,,,,76.02156049,74.5436595,77.49946148,,,,506.7171661,366,50770,450.50874,562.9255922,,,,,,,,,,768.591832,487.2212909,1153.265123,490.7344602,432.4957743,548.973146,,,,80.08695155,14,17481,43.78428166,134.3722963,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.133,,,0.121,0.146,0.176,,,0.164,0.189,0.104,,,0.097,0.111,184.6,29,15709,,,0.114,2020,,,,0.000730409,12.37239709,16939,,,,,,,,,,,,,,,,,,,,,,,,,,0.365,,,0.349,0.38,0.187506318,1855,9893,0.161293552,0.213719084,0.090790843,349,3844,0.063386588,0.118195098,0.000895114,17,18992,,,1117.176471,0.875,164.5,188,,,,,,,,3.295205474,,,,,,,,,3.357264932,3.591849876,,,,,,,,3.635647723,3.67611612,0.021578878,,,,,-1945.884,,,,,0.675571209,37403,55365,0.509144102,0.841998317,58178,,,50652.55319,65703.44681,,,,,,,63295,13077.29787,113512.7021,40900,34047.74468,47752.25532,57588,52344.25532,62831.74468,,,,,,0.519010043,1447,2788,,,65.68872971,,,,,0.228849393,,58178,,,3.285870756,3,913,,,,,,,,,,,,,,,,,,,,,,,,,,20.43420086,22,91826,12.30272377,31.91053587,23.95835602,,,,,,,,,,,,,22.79610236,13.510415,36.02766972,,,,21.78032366,20,91826,13.30398753,33.6379434,,,,,,,,,,,,,25.38650961,15.50673959,39.20740512,,,,32.47859186,41,126237,23.30719826,44.06087721,,,,,,,,,,,,,32.14252916,22.38844926,44.70247715,,,,18.23529412,,1700,,,7,24,0.700289226,9685,13830,,,0.582,,,,,7.192211346,,,,,0.827124563,5684,6872,0.796357293,0.857891834,0.084648716,547,6462,0.055802256,0.113495175,0.779685681,5358,6872,0.733167332,0.82620403,18992,,,,,0.206192081,3916,18992,,,0.210404381,3996,18992,,,0.035699242,678,18992,,,0.00884583,168,18992,,,0.005949874,113,18992,,,0.001632266,31,18992,,,0.065395956,1242,18992,,,0.872262005,16566,18992,,,0.017393335,298,17133,0.008560295,0.026226374,0.484572452,9203,18992,,,1,17864,17864,, -12,043,12043,FL,Glades County,2024,1,10939.79471,234,34447,8350.061327,13529.5281,0,34456.8547,19695.06965,55955.77331,1,,,,2,12738.32012,5121.465353,26245.80796,1,,,,2,12877.95452,8670.600018,17085.30902,,,,,2,,0.227,,,0.208,0.249,4.543265351,,,4.225087276,4.83765862,5.214976683,,,5.01981699,5.413049067,0.08714597,40,459,0.061342741,0.112949198,0,,,,,,,,,,0.0875,0.043715888,0.131284112,0.088372093,0.050431578,0.126312608,,,,,,,0.247,,,0.224,0.271,0.401,,,0.388,0.413,5.7,0.239213764,0.127,,,0.331,,,0.306,0.355,0.105145967,1275,12126,,,0.181540501,,,0.175131883,0.188225211,0.340909091,15,44,0.262598167,0.41884339,318.8,39,12234,,,13.98601399,28,2002,9.293604723,20.21368429,,,,,,,,,,19.60784314,10.97436096,32.34015539,,,,,,,,,,0.260817308,1953,7488,0.231030074,0.290604542,,0,12234,,,,0.000401477,5,12454,,,2490.8,8.02955E-05,1,12454,,,12454,3867,,,,,,,,,3859,0.38,,,,,,,,0.22,0.41,0.35,,,,,,,0.09,0.19,0.37,0.731110879,6996,9569,0.688444486,0.773777272,0.329830509,973,2950,0.230862336,0.428798681,0.032170543,166,5160,,,0.267,435,,0.17406383,0.35993617,0.247058824,0.059082482,0.435035165,,,,0.213114754,0,0.568439598,0.261205564,0.0404097,0.482001428,0.444067797,0.272366856,0.615768737,5.428810334,94141,17341,3.115200301,7.742420366,0.267197271,470,1759,0.124483567,0.409910976,5.721759032,7,12234,,,107.7952186,73,67721,84.49424392,135.5363036,,,,,,,,,,,,,125.6250462,93.53609833,165.1737354,,,,7.2,,,,,0,,,,,0.177983539,865,4860,0.109592381,0.246374697,0.077812829,0.040104052,0.115521605,0.067901235,0.023523534,0.112278935,0.033950617,0,0.075406973,0.727883212,2493,3425,0.636591053,0.819175371,,,,,,,,,,,,,0.656976744,0.507612642,0.806340846,0.479,,3425,0.348560481,0.609439519,80.61502332,,,77.9826497,83.24739694,,,,,,,75.78527679,68.04238195,83.52817163,92.01693137,76.39758133,107.6362814,79.15306252,75.58825441,82.71787064,,,,456.9461734,234,34447,391.2323747,522.6599721,1423.108079,880.9263305,2175.371869,,,,473.6337397,285.1584512,739.6377546,,,,517.9168302,418.2908596,617.5428008,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.143,,,0.132,0.154,0.176,,,0.167,0.185,0.129,,,0.122,0.136,784.5,87,11090,,,0.127,1540,,,,0.239213764,3082.030141,12884,,,32.30375469,13,40243,17.20038887,55.24040434,,,,,,,,,,,,,41.68924834,19.99161503,76.66801202,,,,0.369,,,0.357,0.38,0.292884153,1704,5818,0.255947982,0.329820323,0.149438202,266,1780,0.106544585,0.192331819,0.000562068,7,12454,,,1779.142857,0.775,50.375,65,,,,,,,,3.145605085,,,,,,,,2.98102554,3.254425114,3.399309641,,,,,,,,3.324852454,3.592473264,0.208481995,,,,,-3284.972,,,,,0.859304127,31069,36156,0.674028838,1.044579415,50559,,,43014.48936,58103.51064,,,,56563,55988.70213,57137.29787,,,,37134,8203.446809,66064.55319,37090,30035.19149,44144.80851,,,,,,0.499705362,848,1697,,,53.04352809,,,,,0.310350284,,50559,,,4.291845494,2,466,,,,,,,,,,,,,,,,,,,,,,,,,,16.52232957,10,67721,7.555061181,31.36452815,14.7664683,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,35.65398853,34,95361,24.69142352,49.82287528,,,,,,,,,,,,,34.92168811,21.33107434,53.93371497,,,,18,,1000,,,6,12,0.473381951,5193,10970,,,0.345,,,,,11.30765147,,,,,0.784343325,3637,4637,0.726848872,0.841837778,0.109421792,475,4341,0.063167842,0.155675742,0.751347854,3484,4637,0.705697724,0.796997985,12454,,,,,0.133531396,1663,12454,,,0.277501204,3456,12454,,,0.142845672,1779,12454,,,0.0444837,554,12454,,,0.008350731,104,12454,,,0.00160591,20,12454,,,0.225068251,2803,12454,,,0.567849687,7072,12454,,,0.057307825,665,11604,0.026007357,0.088608293,0.426609925,5313,12454,,,0.826900874,10027,12126,, -12,045,12045,FL,Gulf County,2024,1,12161.02324,330,37223,9789.832619,14532.21386,0,,,,2,,,,2,17158.07634,9603.245078,28299.63761,1,,,,2,12174.14836,9480.214685,14868.08203,,,,,2,,0.167,,,0.144,0.19,3.921069469,,,3.558610533,4.294322071,5.091210935,,,4.791909754,5.38869019,0.075123153,61,812,0.056992772,0.093253533,0,,,,,,,0.162790698,0.08476482,0.240816575,,,,0.06505295,0.04625189,0.083854011,,,,,,,0.214,,,0.179,0.246,0.326,,,0.31,0.34,8.4,0.01889889,0.105,,,0.254,,,0.226,0.282,0.597378805,8478,14192,,,0.198230992,,,0.190004183,0.206510716,0.047619048,1,21,0.001947624,0.173567494,341.2,49,14363,,,27.90897381,65,2329,21.53955678,35.57227815,,,,,,,50.72463768,27.73163144,85.10732291,,,,24.29596908,17.65348833,32.61620446,,,,,,,0.154121517,1593,10336,0.132674709,0.175568326,0.000487363,7,14363,,,2051.857143,0.000391798,6,15314,,,2552.333333,0.001305995,20,15314,,,765.7,3283,,,,,,,5195,,3061,0.4,,,,,,,0.36,,0.4,0.34,,,,,,,0.23,,0.35,0.857239114,10178,11873,0.830792785,0.883685443,0.400533075,1653,4127,0.326572936,0.474493214,0.026877761,146,5432,,,0.257,637,,0.178361702,0.335638298,,,,,,,0.508982036,0.281375034,0.736589038,,,,0.110403397,0.040761889,0.180044905,4.075817827,108645,26656,3.151035878,5.000599776,0.207235373,464,2239,0.094979946,0.3194908,11.83596742,17,14363,,,106.9591118,79,73860,84.6805361,133.3029667,,,,,,,,,,,,,117.6891982,91.56922096,148.9432126,,,,7.7,,,,,1,,,,,0.154368109,910,5895,0.107396202,0.201340015,0.120204604,0.079888564,0.160520643,0.022052587,0.006210663,0.037894511,0.013570823,0,0.029887181,0.723462593,3694,5106,0.674780378,0.772144808,,,,,,,,,,,,,0.761712439,0.721802765,0.801622114,0.36,,5106,0.276714979,0.443285021,73.93521195,,,72.2767444,75.5936795,,,,,,,,,,,,,73.79991857,71.92912423,75.6707129,,,,548.4654627,330,37223,480.2892915,616.6416339,,,,,,,781.7963405,550.4567723,1077.603273,,,,542.3374587,467.0612292,617.6136882,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.117,,,0.106,0.13,0.169,,,0.155,0.182,0.097,,,0.09,0.105,207.8,26,12514,,,0.105,1600,,,,0.01889889,299.7930976,15863,,,26.48305085,11,41536,13.22024357,47.38549334,,,,,,,,,,,,,29.26629401,14.03432555,53.82175669,,,,0.337,,,0.32,0.352,0.175691469,1353,7701,0.149478703,0.201904235,0.093420574,257,2751,0.06482483,0.122016319,0.001371294,21,15314,,,729.2380952,0.875,116.375,133,,,,,,,,3.044496947,,,,,,,,,3.210901343,3.174040868,,,,,,,,,3.283919362,0.032762205,,,,,-3771.365,,,,,0.849511099,44048,51851,0.72302073,0.976001468,55909,,,49279.55319,62538.44681,,,,,,,,,,68304,25996.59575,110611.4043,57087,49737.89362,64436.10638,,,,,,0.500518135,966,1930,,,25.39665042,,,,,0.248886584,,55909,,,3.610108303,2,554,,,,,,,,,,,,,,,,,,,,,,,,,,18.02403142,15,73860,9.597037629,30.82164265,20.30869212,,,,,,,,,,,,,22.85546245,12.16957117,39.08353685,,,,,,,,,,,,,,,,,,,,,,,,,,,20.80948913,22,105721,13.04119605,31.50581662,,,,,,,,,,,,,23.10732746,13.9121206,36.08495418,,,,32.72727273,,1100,,,21,15,0.654348697,8163,12475,,,0.373,,,,,11.17464869,,,,,0.785764873,4438,5648,0.765916485,0.805613261,0.144347178,775,5369,0.098000043,0.190694313,0.833038244,4705,5648,0.792236198,0.873840289,15314,,,,,0.1666449,2552,15314,,,0.23566671,3609,15314,,,0.139153716,2131,15314,,,0.007966567,122,15314,,,0.00711767,109,15314,,,0.000261199,4,15314,,,0.044795612,686,15314,,,0.778307431,11919,15314,,,0.005267901,76,14427,0,0.013906877,0.448870315,6874,15314,,,1,14192,14192,, -12,047,12047,FL,Hamilton County,2024,1,12623.78809,329,39819,10498.97727,14748.59891,0,,,,2,,,,2,16207.83533,12061.02125,20354.6494,,,,,2,11188.149,8473.606925,13902.69107,,,,,2,,0.251,,,0.23,0.274,4.74388599,,,4.458783343,5.047671626,5.082075626,,,4.88078472,5.299521954,0.123595506,143,1157,0.104630934,0.142560077,0,,,,,,,0.20212766,0.16153554,0.242719779,0.095890411,0.056893326,0.134887496,0.080979284,0.057775521,0.104183048,,,,,,,0.294,,,0.267,0.319,0.387,,,0.376,0.399,6.6,0.095122897,0.153,,,0.35,,,0.327,0.372,0.250571265,3509,14004,,,0.162408019,,,0.155645227,0.169514547,0.264705882,9,34,0.174780223,0.359592316,821.8,115,13993,,,51.91873589,115,2215,42.4294996,61.40797218,,,,,,,43.25699746,29.95672823,60.44731819,71.21661721,45.62983043,105.9646813,53.73134328,40.36463878,70.10774766,,,,,,,0.151341436,1320,8722,0.131086116,0.171596755,7.14643E-05,1,13993,,,13993,0.00022698,3,13217,,,4405.666667,0.00015132,2,13217,,,6608.5,4745,,,,,,,5926,,4557,0.37,,,,,,,0.39,,0.37,0.33,,,,,,,0.25,,0.35,0.770766453,7683,9968,0.743477473,0.798055433,0.246065058,938,3812,0.182252971,0.309877145,0.040209374,169,4203,,,0.351,927,,0.218744681,0.483255319,0.688172043,0.203187539,1,,,,0.291037261,0.150777899,0.431296622,0.366733467,0.17061718,0.562849754,0.329877474,0.170185645,0.489569303,3.911823051,78878,20164,3.115824268,4.707821834,0.295816364,799,2701,0.180447686,0.411185043,7.861073394,11,13993,,,128.7866062,92,71436,103.8201814,157.9453399,,,,,,,125.7807078,84.23731409,180.6420777,,,,146.288882,110.7977707,189.5342147,,,,8.1,,,,,0,,,,,0.161915621,710,4385,0.1075385,0.216292743,0.110623557,0.065572241,0.155674872,0.043329533,0.011694069,0.074964996,0.019384265,0.003527809,0.03524072,0.744983278,2673,3588,0.690220329,0.799746226,,,,,,,,,,,,,0.760860215,0.685350588,0.836369843,0.332,,3588,0.248553202,0.415446798,72.69377884,,,71.13775714,74.24980055,,,,,,,69.87268108,66.97701168,72.76835047,,,,73.41190836,71.44259135,75.38122538,,,,611.8365164,329,39819,542.1047163,681.5683164,,,,,,,762.1133479,617.1589712,907.0677246,,,,573.0525876,485.3888559,660.7163194,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.153,,,0.143,0.164,0.179,,,0.17,0.188,0.134,,,0.128,0.141,1182.8,143,12090,,,0.153,2140,,,,0.095122897,1407.723747,14799,,,27.94466955,12,42942,14.43941854,48.81371396,,,,,,,,,,,,,,,,,,,0.421,,,0.408,0.432,0.186489981,1154,6188,0.159085725,0.213894236,0.067018072,178,2656,0.046762753,0.087273391,0.00022698,3,13217,,,4405.666667,0.825,66,80,,,,,,,,2.862148466,,,,,,,2.399197329,2.863140312,3.419428465,3.177814934,,,,,,,2.781403483,3.360902016,3.514219966,0.001374385,,,,,-11662.47,,,,,0.86921809,33750,38828,0.726852502,1.011583678,45484,,,39810.12766,51157.87234,,,,,,,32333,25595.12766,39070.87234,47045,25592.23404,68497.76596,50441,42742.78723,58139.21277,,,,,,0.76416819,1254,1641,,,21.02935494,,,,,0.216449741,,45484,,,6.389776358,4,626,,,18.98253607,19,100092,11.42872674,29.64358148,,,,,,,49.11892921,28.07571208,79.76606372,,,,,,,,,,22.43220062,16,71436,12.26389282,37.63742096,22.39767064,,,,,,,,,,,,,27.76965238,12.69805337,52.71545032,,,,26.59723389,19,71436,16.01327225,41.53487537,,,,,,,,,,,,,25.66471615,12.30722897,47.19832677,,,,27.97426368,28,100092,18.58869506,40.43059979,,,,,,,,,,,,,34.77751542,20.93833611,54.3093983,,,,31.66666667,,1200,,,23,15,0.516157592,5830,11295,,,0.435,,,,,15.16376451,,,,,0.751860465,3233,4300,0.719584336,0.784136595,0.117880139,476,4038,0.072302,0.163458277,0.738604651,3176,4300,0.691549083,0.785660219,13217,,,,,0.207081789,2737,13217,,,0.202693501,2679,13217,,,0.29204812,3860,13217,,,0.013013543,172,13217,,,0.009079216,120,13217,,,0.000605281,8,13217,,,0.117046228,1547,13217,,,0.554361807,7327,13217,,,0.015991306,206,12882,0.002957813,0.029024799,0.457743815,6050,13217,,,1,14004,14004,, -12,049,12049,FL,Hardee County,2024,1,11016.47197,451,73021,9551.408148,12481.5358,0,,,,2,,,,2,13636.68856,7943.873612,21833.65939,1,10070.89577,8071.674583,12070.11696,,11987.45141,9548.081297,14426.82152,,,,,2,,0.257,,,0.235,0.277,4.640363794,,,4.376095491,4.920149831,4.833247803,,,4.620243238,5.03062805,0.084278768,208,2468,0.073318423,0.095239113,0,,,,,,,0.138888889,0.082403233,0.195374545,0.077592458,0.06347212,0.091712797,0.087443946,0.068905715,0.105982177,,,,,,,0.243,,,0.22,0.263,0.406,,,0.394,0.417,6.5,0.130227069,0.143,,,0.382,,,0.357,0.403,0.309472105,7838,25327,,,0.163614239,,,0.156772853,0.170357452,0.24137931,14,58,0.173787737,0.313284967,554.6,141,25425,,,38.22165361,239,6253,33.37584125,43.06746596,,,,,,,,,,38.48195329,32.21827883,44.74562775,42.92284108,34.23693906,53.14139794,,,,,,,0.211238346,4169,19736,0.18621707,0.236259623,0.000157326,4,25425,,,6356.25,0.000584909,15,25645,,,1709.666667,0.000233964,6,25645,,,4274.166667,3132,,,,,,,,2111,3078,0.33,,,,,,,0.33,0.23,0.35,0.32,,,,,,0.36,0.15,0.23,0.34,0.779386044,12923,16581,0.743475192,0.815296897,0.307039738,2063,6719,0.241976339,0.372103137,0.03859729,339,8783,,,0.299,1894,,0.208446809,0.389553192,,,,,,,0.881918819,0.477399279,1,0.470293108,0.377145963,0.563440253,0.239572193,0.130149116,0.348995269,6.011188464,96708,16088,4.419320821,7.603056106,0.335699954,2175,6479,0.236604937,0.43479497,9.046214356,23,25425,,,104.6025105,140,133840,87.27508013,121.9299408,,,,,,,,,,74.78287472,54.33735126,100.3925188,137.655062,110.1062813,170.0028818,,,,7.5,,,,,0,,,,,0.152690864,1220,7990,0.112784372,0.192597355,0.065061809,0.039606638,0.090516979,0.093241552,0.059432453,0.127050651,0,0,0.005694062,0.7044658,6231,8845,0.654269406,0.754662194,,,,,,,,,,0.604330176,0.504094033,0.704566319,0.816691958,0.75249231,0.880891605,0.379,,8845,0.301580692,0.456419308,75.58626157,,,74.26123163,76.91129151,,,,,,,72.47943794,67.56619702,77.39267886,75.57710792,73.13860242,78.01561342,75.05331252,73.12375892,76.98286611,,,,526.5060443,451,73021,476.5333049,576.4787837,,,,,,,652.0802733,448.862056,915.7631446,502.9318149,416.4342172,589.4294126,549.8872866,477.8492438,621.9253295,,,,75.55599356,23,30441,47.89601865,113.371088,,,,,,,,,,78.36551917,42.84315856,131.4840253,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.153,,,0.142,0.163,0.176,,,0.167,0.184,0.14,,,0.133,0.146,298,62,20807,,,0.143,3670,,,,0.130227069,3611.326845,27731,,,23.99474641,19,79184,14.44640478,37.47076881,,,,,,,,,,,,,35.25710566,18.77292387,60.29072445,,,,0.37,,,0.359,0.381,0.269822309,3614,13394,0.235269117,0.3043755,0.089119327,593,6654,0.062906561,0.115332093,0.000662897,17,25645,,,1508.529412,0.88,308.88,351,,,,,,,,3.207809622,,,,,,,3.125117259,3.097899087,3.42911207,3.355590006,,,,,,,3.270948718,3.249044941,3.612498472,0.016447044,,,,,-2777.75,,,,,0.960839997,38571,40143,0.754257743,1.167422251,48572,,,41496.93617,55647.06383,55909,32452.14894,79365.85106,66853,26946.44681,106759.5532,43547,16099.85106,70994.14894,47956,31290.6383,64621.3617,44077,33703.89362,54450.10638,,,,,,0.593402145,2932,4941,,,43.83311108,,,,,0.218623899,,48572,,,8.177570094,14,1712,,,,,,,,,,,,,,,,,,,,,,,,,,10.44179363,14,133840,5.559815342,17.85578512,10.46025105,,,,,,,,,,,,,14.88206846,6.425020862,29.32360764,,,,11.20741184,15,133840,6.272703327,18.48492145,,,,,,,,,,,,,,,,,,,33.38597365,63,188702,25.65469884,42.71516321,,,,,,,,,,35.10938389,23.51330541,50.4229318,37.37174696,25.72499102,52.4838274,,,,36.875,,3200,,,47,71,0.457412399,8485,18550,,,0.451,,,,,37.0921627,,,,,0.666051434,5413,8127,0.62777243,0.704330437,0.134043673,1019,7602,0.088063386,0.18002396,0.740863787,6021,8127,0.697190874,0.784536701,25645,,,,,0.252134919,6466,25645,,,0.163813609,4201,25645,,,0.070813024,1816,25645,,,0.01251706,321,25645,,,0.012205108,313,25645,,,0.002222656,57,25645,,,0.442503412,11348,25645,,,0.457906025,11743,25645,,,0.070941565,1696,23907,0.049615099,0.092268032,0.463755118,11893,25645,,,0.613455996,15537,25327,, -12,051,12051,FL,Hendry County,2024,1,10571.40193,656,117537,9442.20483,11700.59903,0,28511.2922,14232.73434,51014.57737,1,,,,2,20989.92645,15896.62077,26083.23213,,7519.44101,6258.771112,8780.110908,,11570.33061,9361.167151,13779.49407,,,,,2,,0.263,,,0.24,0.287,4.675185122,,,4.365773652,4.970076983,5.181471703,,,4.978448224,5.408165221,0.086648087,342,3947,0.077871593,0.095424581,0,,,,,,,0.155251142,0.121335485,0.189166798,0.081953291,0.070874912,0.09303167,0.070422535,0.055055861,0.08578921,,,,,,,0.241,,,0.219,0.262,0.371,,,0.36,0.381,7.1,0.07249657,0.142,,,0.382,,,0.355,0.406,0.569146117,22549,39619,,,0.16743012,,,0.16108645,0.174726579,0.227272727,15,66,0.164472242,0.294638018,533.3,215,40313,,,31.61972568,302,9551,28.05348461,35.18596676,,,,,,,43.20432043,31.85545529,57.28266083,33.2247557,28.66540726,37.78410414,22.97090352,16.75513466,30.73687621,,,,,,,0.250221644,8467,33838,0.224008878,0.27643441,0.000272865,11,40313,,,3664.818182,0.000387044,16,41339,,,2583.6875,0.000411234,17,41339,,,2431.705882,3190,,,,,5018,,6778,2875,2801,0.37,,,,,0.14,,0.28,0.35,0.39,0.29,,,,,0.39,,0.19,0.21,0.32,0.695101945,17796,25602,0.658326131,0.731877759,0.356977068,3845,10771,0.284875192,0.429078945,0.047364006,734,15497,,,0.275,2796,,0.183255319,0.366744681,,,,,,,0.072580645,0,0.18863623,0.397750673,0.313076483,0.482424864,0.152153987,0.02655444,0.277753535,4.25294905,101671,23906,3.639765394,4.866132707,0.373776328,3780,10113,0.284527048,0.463025607,8.682062858,35,40313,,,100.4583412,208,207051,86.8058971,114.1107853,,,,,,,116.7699632,76.27801678,171.0950511,69.35117151,54.90597558,86.43225195,152.6670471,124.0802425,185.8666519,,,,7.5,,,,,1,,,,,0.227484472,2930,12880,0.176514708,0.278454236,0.163210171,0.114890522,0.21152982,0.072593168,0.044648452,0.100537883,0.013198758,0.004188327,0.022209189,0.691385559,12400,17935,0.640801363,0.741969755,,,,,,,0.832134293,0.753253556,0.911015029,0.691847495,0.628691689,0.755003302,0.80707856,0.728082189,0.886074931,0.353,,17935,0.284574892,0.421425109,75.41713524,,,74.40330234,76.43096814,,,,,,,66.37708295,63.22097086,69.53319505,79.54841676,77.72621836,81.37061516,74.26553309,72.58285884,75.94820734,,,,502.9756643,656,117537,463.9687907,541.982538,1174.124057,683.9705308,1879.886354,,,,840.3872172,682.5673312,998.2071033,361.8185653,312.339738,411.2973926,577.890126,506.69019,649.090062,,,,78.09930944,38,48656,55.26771959,107.1974041,,,,,,,181.6530427,87.10969475,334.0664131,65.83711897,40.21502267,101.6800905,,,,,,,6.979062812,28,4012,4.637536554,10.08668892,,,,,,,,,,,,,,,,,,,,,,0.156,,,0.145,0.167,0.173,,,0.164,0.182,0.152,,,0.144,0.159,476.8,156,32720,,,0.142,5590,,,,0.07249657,2837.515746,39140,,,26.36877937,33,125148,18.15105441,37.03157004,,,,,,,,,,15.74149602,7.858098094,28.16588462,46.96795742,27.83618824,74.22962182,,,,0.356,,,0.345,0.366,0.308526473,7255,23515,0.27516477,0.341888175,0.119856062,1299,10838,0.08649436,0.153217764,0.000580566,24,41339,,,1722.458333,0.87,498.51,573,,,0.169567158,380,2241,0.069977443,0.269156872,2.938462638,,,,,,,2.7552389,2.901433848,3.137958538,2.977682097,,,,,,,2.860174443,2.914028977,3.247709053,0.061039999,,,,,,,,,,0.773932092,31797,41085,0.690341721,0.857522463,55308,,,49024.08511,61591.91489,34638,3055.191489,66220.80851,,,,31690,17288.46809,46091.53192,47798,40408.38298,55187.61702,61651,53852.70213,69449.29787,,,,,,0.622104382,8916,14332,,,73.26508209,,,,,0.309430824,,55308,,,4.542278127,13,2862,,,9.108106215,26,285460,5.949717374,13.34548591,,,,,,,31.90097936,15.29775958,58.66703685,,,,,,,,,,15.40210633,33,207051,10.53502933,21.74317857,15.93810221,,,,,,,,,,8.741227485,4.191758347,16.07542857,21.91396542,12.76569241,35.08638148,,,,18.83593897,39,207051,13.39419394,25.74934865,,,,,,,,,,10.53435517,5.443255036,18.40139848,29.2997363,17.64035524,45.75516766,,,,34.68086597,99,285460,28.18689654,42.22270993,,,,,,,31.90097936,15.29775958,58.66703685,32.3586896,24.01724313,42.66089819,36.22870192,24.93817141,50.87856718,,,,27.30769231,,5200,,,82,60,0.534158927,12940,24225,,,0.432,,,,,38.27896787,,,,,0.697494168,9269,13289,0.653479022,0.741509314,0.139567559,1788,12811,0.100062103,0.179073015,0.806004967,10711,13289,0.763598603,0.84841133,41339,,,,,0.251094608,10380,41339,,,0.134618641,5565,41339,,,0.099954039,4132,41339,,,0.018989332,785,41339,,,0.01141779,472,41339,,,0.002419023,100,41339,,,0.584218293,24151,41339,,,0.2867752,11855,41339,,,0.135859917,5051,37178,0.109322776,0.162397058,0.45148649,18664,41339,,,0.360004039,14263,39619,, -12,053,12053,FL,Hernando County,2024,1,10836.08691,4096,519515,10259.53858,11412.63524,0,,,,2,,,,2,11793.46205,9202.320878,14384.60321,,6263.565925,5218.421813,7308.710037,,12084.45138,11359.83678,12809.06597,,,,,2,,0.165,,,0.147,0.183,3.916050386,,,3.647442503,4.207537409,5.267039558,,,5.004080392,5.516994219,0.088548662,989,11169,0.083279923,0.0938174,0,,,,0.076023392,0.036298555,0.115748229,0.130081301,0.105811028,0.154351574,0.086119554,0.073743618,0.098495491,0.086172345,0.080016865,0.092327825,,,,0.07860262,0.043746397,0.113458843,0.215,,,0.186,0.243,0.359,,,0.346,0.373,7,0.123389857,0.12,,,0.272,,,0.247,0.295,0.80072488,155753,194515,,,0.180963863,,,0.173939689,0.187945208,0.238095238,40,168,0.199062346,0.278735948,265.2,532,200638,,,17.02344258,602,35363,15.66354809,18.38333708,,,,,,,19.16666667,14.03240892,25.56564738,13.96942541,11.31003755,16.62881327,18.10245218,16.37731634,19.82758801,,,,13.74045802,8.143466245,21.71584753,0.157124756,22941,146005,0.140443905,0.173805607,0.000558219,112,200638,,,1791.410714,0.000372168,77,206896,,,2686.961039,0.000990836,205,206896,,,1009.248781,3422,,,,,,,6292,4502,3264,0.41,,,,,,0.4,0.44,0.42,0.41,0.38,,,,,,0.37,0.28,0.29,0.39,0.89358856,131597,147268,0.885190389,0.901986731,0.62046767,26216,42252,0.581578537,0.659356804,0.035798374,2752,76875,,,0.163,6094,,0.110574468,0.215425532,,,,0.041420118,0,0.252710907,0.281717318,0.177805853,0.385628783,0.178923826,0.122432415,0.235415237,0.144058451,0.111705824,0.176411077,4.029298156,110572,27442,3.800741063,4.25785525,0.217759161,7850,36049,0.188407768,0.247110554,6.03076187,121,200638,,,127.321873,1236,970768,120.2236465,134.4200995,,,,,,,72.42972359,50.99720963,99.8348331,57.74676305,45.99497443,71.58580111,147.567561,138.8269879,156.3081342,,,,7.9,,,,,0,,,,,0.135445183,10390,76710,0.123377022,0.147513344,0.121151672,0.1086705,0.133632845,0.014470082,0.011087399,0.017852765,0.008147569,0.005713555,0.010581583,0.759785488,58796,77385,0.736477989,0.783092987,,,,0.630567686,0.506589626,0.754545746,0.559057528,0.439536371,0.678578684,0.769582444,0.706440716,0.832724173,0.731342249,0.702078296,0.760606203,0.432,,77385,0.403829402,0.460170598,74.98285737,,,74.55736652,75.40834821,,,,92.39220427,83.91566634,100.8687422,74.30248247,72.27353165,76.33143329,80.44090262,79.29479407,81.58701117,73.90831386,73.40204299,74.41458472,,,,504.2795256,4096,519515,486.9095516,521.6494997,,,,,,,530.8778701,452.1399586,609.6157815,311.9744924,276.1963152,347.7526697,550.5488385,529.2633342,571.8343428,,,,51.86787607,82,158094,41.2520611,64.38171033,,,,,,,,,,50.65554231,29.50872011,81.10443032,52.17693779,39.19692153,68.07958567,,,,6.560028756,73,11128,5.14201536,8.248251275,,,,,,,,,,,,,5.319807002,3.849970705,7.165745121,,,,,,,0.119,,,0.109,0.13,0.17,,,0.158,0.181,0.101,,,0.095,0.107,259.5,454,174982,,,0.12,23140,,,,0.123389857,21319.05266,172778,,,39.43709446,234,593350,34.38405077,44.49013816,,,,,,,,,,13.06691349,6.751864876,22.8252682,46.3719521,40.06993203,52.67397218,,,,0.349,,,0.334,0.362,0.187965999,20521,109174,0.166519191,0.209412808,0.067828557,2627,38730,0.048764727,0.086892387,0.001019836,211,206896,,,980.549763,0.91,1529.71,1681,,,0.048218291,387,8026,0.028094003,0.068342578,3.280386025,,,,,,3.558249297,2.840784312,3.232322493,3.345924577,3.386654557,,,,,,3.86166002,2.921173106,3.275585055,3.479390215,0.021203413,,,,,-1550.24,,,,,0.816509726,40841,50019,0.756236162,0.876783291,60582,,,56202.08511,64961.91489,74402,49100.7234,99703.2766,67500,29107.82979,105892.1702,54779,44022.23404,65535.76596,62342,53290.25532,71393.74468,59031,57187.76596,60874.23404,,,,,,0.58078304,13588,23396,,,36.1899409,,,,,0.221270344,,60582,,,6.281260905,54,8597,,,3.828708104,51,1332042,2.850724665,5.034044075,,,,,,,,,,5.32441671,2.553264771,9.791791902,2.914013296,1.966072534,4.159935172,,,,17.5402542,184,970768,14.77977525,20.30073315,18.95406524,,,,,,,,,,9.704225295,5.305390271,16.28204111,19.91391015,16.45899418,23.36882611,,,,15.03963872,146,970768,12.60004758,17.47922986,,,,,,,,,,11.13190613,6.362846187,18.07751814,16.4413173,13.52380452,19.35883008,,,,19.96934031,266,1332042,17.56951863,22.36916198,,,,,,,18.79074339,10.00527946,32.13274348,13.84348345,9.043022999,20.28391072,21.66083216,18.81781961,24.50384472,,,,19.42528736,,17400,,,123,215,0.717607142,108922,151785,,,0.706,,,,,47.57860258,,,,,0.801462694,63451,79169,0.786919151,0.816006237,0.121186463,9303,76766,0.109023505,0.133349421,0.898697723,71149,79169,0.887168902,0.910226543,206896,,,,,0.184411492,38154,206896,,,0.264408205,54705,206896,,,0.056255317,11639,206896,,,0.005597015,1158,206896,,,0.015645542,3237,206896,,,0.001044003,216,206896,,,0.170708955,35319,206896,,,0.735485461,152169,206896,,,0.013597047,2556,187982,0.010576525,0.016617568,0.513982871,106341,206896,,,0.200580932,39016,194515,, -12,055,12055,FL,Highlands County,2024,1,12847.8158,2269,256075,11912.97454,13782.65705,0,,,,2,,,,2,14868.93169,12105.99981,17631.86357,,9784.974344,8316.606403,11253.34229,,14267.40098,12887.08513,15647.71683,,,,,2,,0.192,,,0.175,0.211,4.121653445,,,3.832150435,4.411962383,4.974891534,,,4.751841679,5.198865256,0.094409106,564,5974,0.086994358,0.101823855,0,,,,0.127906977,0.057318247,0.198495707,0.149325626,0.127643282,0.171007971,0.071986607,0.060019476,0.083953738,0.087296196,0.077099728,0.097492664,,,,0.133333333,0.06310211,0.203564556,0.212,,,0.186,0.236,0.391,,,0.379,0.403,6.2,0.177081509,0.133,,,0.296,,,0.273,0.317,0.703086877,71177,101235,,,0.175614916,,,0.169775333,0.181769201,0.264705882,36,136,0.220972578,0.309804904,343.7,355,103296,,,26.03843769,420,16130,23.5481682,28.52870719,,,,,,,32.0256205,25.3943253,39.85865691,27.19970792,22.83226561,31.56715024,24.79452055,21.18231464,28.40672646,,,,,,,0.191327274,12482,65239,0.171071954,0.211582593,0.000580855,60,103296,,,1721.6,0.000473404,50,105618,,,2112.36,0.000861596,91,105618,,,1160.637363,3229,,,,,,4187,6503,2266,3084,0.32,,,,,,0.18,0.3,0.24,0.33,0.37,,,,,,0.2,0.21,0.25,0.38,0.862126078,68189,79094,0.848920515,0.87533164,0.495359266,9500,19178,0.444640223,0.546078308,0.04168278,1509,36202,,,0.242,4148,,0.150255319,0.333744681,,,,0.025423729,0,0.424118376,0.370416667,0.242741378,0.498091956,0.283976007,0.217084761,0.350867253,0.162040112,0.108946185,0.215134038,4.342349847,99049,22810,3.929054793,4.7556449,0.262194409,4483,17098,0.208009059,0.316379759,11.90752788,123,103296,,,120.3135398,631,524463,110.9259112,129.7011683,,,,,,,106.8735528,80.28670211,139.4468035,78.94235393,63.22958935,97.37510193,138.786298,126.3832014,151.1893945,,,,7.5,,,,,1,,,,,0.115168539,4920,42720,0.101758363,0.128578715,0.094030386,0.080844077,0.107216696,0.022003745,0.015012264,0.028995227,0.00585206,0.002726846,0.008977274,0.772069423,26780,34686,0.739543291,0.804595555,,,,,,,0.78024911,0.688388235,0.872109986,0.733700105,0.673278652,0.794121559,0.783664459,0.745218382,0.822110537,0.233,,34686,0.200174522,0.265825478,75.52998937,,,74.83389835,76.22608038,,,,,,,71.22347217,69.25509001,73.19185432,79.39461368,77.75197343,81.03725392,74.63472918,73.67347963,75.59597873,,,,554.7063832,2269,256075,527.5219868,581.8907797,,,,,,,694.7028736,603.0719448,786.3338024,406.707245,357.4859799,455.9285101,600.0539147,562.2054537,637.9023758,,,,76.95070025,60,77972,58.72149098,99.05080466,,,,,,,119.1387967,65.1342888,199.8946568,67.24195898,39.85184647,106.271285,77.19799857,50.8739675,112.3190349,,,,6.478405316,39,6020,4.606779483,8.856193333,,,,,,,,,,,,,,,,,,,,,,0.129,,,0.119,0.14,0.17,,,0.16,0.179,0.115,,,0.109,0.122,307.3,280,91130,,,0.133,13430,,,,0.177081509,17493.17397,98786,,,33.84405167,107,316156,27.43126885,40.25683449,,,,,,,,,,27.98521203,16.84892576,43.70237517,37.14459377,29.31393253,46.42436902,,,,0.383,,,0.372,0.396,0.2291982,11054,48229,0.202985434,0.255410966,0.08561663,1528,17847,0.060595354,0.110637907,0.001060425,112,105618,,,943.0178571,0.84,796.32,948,,,0.158651333,607,3826,0.094916531,0.222386135,3.014246043,,,,,,,2.798927511,2.848659565,3.214127505,3.24294411,,,,,,,2.906677667,3.10382643,3.425020381,0.030673006,,,,,-3295.849,,,,,0.875619599,39923,45594,0.801920058,0.949319141,51954,,,47935.10638,55972.89362,,,,56840,15274.89362,98405.10638,36216,23907.91489,48524.08511,44905,38729.51064,51080.48936,56465,52032.65957,60897.34043,,,,,,0.662527571,8110,12241,,,50.32050514,,,,,0.281787735,,51954,,,7.528786537,34,4516,,,6.070045567,44,724871,4.410504401,8.148752851,,,,,,,24.37940084,14.2018994,39.03378242,,,,3.515934422,2.048161367,5.629351603,,,,24.02604229,129,524463,19.15441567,28.89766892,24.59658737,,,,,,,,,,15.17428771,8.673416538,24.64209258,29.75399405,22.35127567,37.15671244,,,,19.63913565,103,524463,15.84633664,23.43193466,,,,,,,31.66623785,18.099991,51.42398638,9.073833786,4.351255997,16.6871034,21.35173815,16.76570687,26.80515197,,,,27.86702738,202,724871,24.02402166,31.71003309,,,,,,,32.98389526,20.9089602,49.49203782,22.27412017,15.33247943,31.28114615,29.78203275,24.91763407,34.64643143,,,,32.73809524,,8400,,,131,144,0.643597335,52170,81060,,,0.596,,,,,32.08529313,,,,,0.783842453,35026,44685,0.769346538,0.798338367,0.100354908,4298,42828,0.08627328,0.114436536,0.825467159,36886,44685,0.804078298,0.846856021,105618,,,,,0.165511561,17481,105618,,,0.362362476,38272,105618,,,0.096943703,10239,105618,,,0.007640743,807,105618,,,0.015811699,1670,105618,,,0.001344468,142,105618,,,0.225832718,23852,105618,,,0.643375182,67952,105618,,,0.036095193,3540,98074,0.028186885,0.044003501,0.510102445,53876,105618,,,0.198765249,20122,101235,, -12,057,12057,FL,Hillsborough County,2024,1,7641.667384,18584,4186851,7480.602232,7802.732535,0,6148.33704,3441.177568,10140.74694,1,3304.881895,2778.841671,3830.922118,,11633.81904,11148.87038,12118.76771,,6104.994546,5842.223759,6367.765333,,7581.349697,7348.096056,7814.603339,,,,,2,,0.153,,,0.138,0.169,3.332653252,,,3.086487234,3.571151833,4.868190562,,,4.668357575,5.092002631,0.089978408,10793,119951,0.088359027,0.091597789,0,,,,0.093242535,0.085711667,0.100773404,0.141691424,0.137389508,0.14599334,0.077428579,0.07480503,0.080052127,0.072377858,0.070045276,0.074710441,,,,0.091039427,0.075943623,0.106135231,0.162,,,0.141,0.182,0.295,,,0.284,0.305,7.9,0.082191373,0.1,,,0.256,,,0.235,0.277,0.907345855,1324509,1459762,,,0.179007378,,,0.173625604,0.184017888,0.251872659,269,1068,0.236651935,0.267315284,600.5,8877,1478194,,,16.69109787,5215,312442,16.23808158,17.14411416,,,,1.096491228,0.583835399,1.875033394,28.09616998,26.72288657,29.46945338,21.44251333,20.56541998,22.31960668,9.657143316,9.111420723,10.20286591,,,,7.563180225,6.015221681,9.387900861,0.136685402,169282,1238479,0.128344977,0.145025828,0.000835479,1235,1478194,,,1196.918219,0.000637018,964,1513301,,,1569.814315,0.002236832,3385,1513301,,,447.0608567,3571,,,,,1560,2143,5960,4217,3152,0.4,,,,,,0.38,0.36,0.33,0.41,0.41,,,,,0.34,0.44,0.27,0.29,0.45,0.893064405,901937,1009935,0.889247559,0.896881251,0.675572016,286933,424726,0.663111395,0.688032636,0.027690143,22276,804474,,,0.164,52185,,0.133021277,0.194978723,0.488033299,0.046647054,0.929419544,0.109277876,0.075544392,0.14301136,0.286502271,0.26130484,0.311699703,0.231114833,0.215523903,0.246705762,0.084079377,0.074386579,0.093772176,4.700781969,143073,30436,4.589956198,4.81160774,0.283060773,90490,319684,0.269044692,0.297076853,6.832662019,1010,1478194,,,80.15275915,5846,7293573,78.09807466,82.20744364,,,,23.45208327,18.41492955,29.44194294,74.10797224,69.17781082,79.03813366,57.92426159,54.71181913,61.13670406,103.2800918,99.90252048,106.657663,,,,7.8,,,,,1,,,,,0.181971403,98250,539920,0.175659937,0.18828287,0.15496685,0.149217918,0.160715782,0.029717366,0.027311853,0.032122878,0.008019707,0.006846517,0.009192897,0.716087578,518229,723695,0.708731618,0.723443539,0.539889416,0.520139962,0.559638869,0.646109672,0.612178936,0.680040408,0.710569422,0.693652344,0.727486501,0.713923055,0.70085823,0.72698788,0.750975154,0.742186329,0.759763979,0.47,,723695,0.459210605,0.480789395,77.90400847,,,77.75315195,78.05486498,89.03121317,78.28456735,99.77785898,88.67228598,87.04562498,90.29894697,73.78211299,73.37020175,74.19402422,80.31697055,80.00368162,80.63025948,77.65020147,77.44854775,77.8518552,,,,370.177352,18584,4186851,364.7563629,375.5983411,230.1440179,147.4576148,342.4360558,160.3611761,142.8116239,177.9107282,540.7039866,523.3875777,558.0203954,287.2474665,277.7172144,296.7777185,381.7694636,374.1321809,389.4067462,,,,55.12074479,799,1449545,51.29868251,58.94280706,,,,45.36176004,29.63180769,66.46548857,102.3774315,90.36424553,114.3906174,53.95461947,47.58915404,60.32008491,38.02826216,32.84769417,43.20883016,,,,6.986384442,841,120377,6.514201218,7.458567667,,,,4.72027972,3.110694079,6.867759169,12.7513873,11.36290291,14.1398717,7.123273631,6.28591153,7.960635732,3.707288942,3.165691936,4.248885948,,,,21.70658683,14.53724187,31.17427952,0.107,,,0.099,0.115,0.151,,,0.142,0.159,0.105,,,0.1,0.111,598.4,7464,1247244,,,0.1,144770,,,,0.082191373,101031.773,1229226,,,29.40568811,1308,4448119,27.81207261,30.99930362,,,,,,,21.42692168,18.04272579,24.81111756,21.74967919,19.24639632,24.25296207,40.21459886,37.49826112,42.93093659,,,,0.33,,,0.318,0.341,0.166688806,153092,918430,0.155965402,0.17741221,0.053798656,18070,335882,0.044266741,0.06333057,0.002024052,3063,1513301,,,494.0584394,0.89,13770.08,15472,,,0.066865319,5206,77858,0.056782641,0.076947997,3.120708712,,,,,,3.80945782,2.746609769,2.955563829,3.470749462,3.129577408,,,,,,4.064176334,2.693464637,2.983683532,3.466282911,0.135571089,,,,,-5035.415,,,,,0.831889771,48119,57843,0.812108055,0.851671486,74091,,,71761.6383,76420.3617,49107,40454.40426,57759.59575,98629,91082.10638,106175.8936,51860,49892.85106,53827.14894,59859,58239.76596,61478.23404,83783,81739.59575,85826.40426,,,,,,0.551230789,123522,224084,,,46.69803248,,,,,0.24490154,,74091,,,4.514279746,389,86171,,,5.769118865,578,10018861,5.298789993,6.239447737,,,,,,,18.52023913,16.41391872,20.62655954,4.172369192,3.428928863,4.915809521,3.047182324,2.55624771,3.538116939,,,,13.33066669,1024,7293573,12.5022166,14.15911678,14.03975802,,,,4.26354455,2.386273519,7.032068355,6.894480916,5.483385276,8.557868701,8.806570329,7.50769401,10.10544665,18.5186942,17.11290677,19.92448162,,,,12.44931668,908,7293573,11.63955231,13.25908105,,,,,,,21.34446205,18.69857512,23.99034898,7.002853083,5.885880244,8.119825922,14.11762947,12.86887486,15.36638408,,,,14.47270304,1450,10018861,13.7277623,15.21764377,,,,6.830697626,4.574625404,9.810021208,15.02820751,13.1308257,16.92558932,15.58604029,14.14915318,17.0229274,14.53588325,13.46363549,15.60813101,,,,16.43975494,,146900,,,1085,1330,0.701208296,712063,1015480,,,0.643,,,,,150.9012266,,,,,0.604555601,338533,559970,0.598392512,0.610718691,0.166808434,90797,544319,0.160996926,0.172619942,0.919572477,514933,559970,0.915254386,0.923890569,1513301,,,,,0.215043802,325426,1513301,,,0.151397508,229110,1513301,,,0.163060753,246760,1513301,,,0.005554083,8405,1513301,,,0.047520619,71913,1513301,,,0.001436595,2174,1513301,,,0.305421063,462194,1513301,,,0.460143752,696336,1513301,,,0.064525805,89271,1383493,0.061671554,0.067380057,0.50653373,766538,1513301,,,0.03672311,53607,1459762,, -12,059,12059,FL,Holmes County,2024,1,12379.33021,537,53701,10691.52866,14067.13176,0,,,,2,,,,2,,,,2,,,,2,13296.07599,11375.44309,15216.70889,,,,,2,,0.22,,,0.196,0.246,4.819070142,,,4.488980729,5.176564827,6.067962509,,,5.754223406,6.37193788,0.079715303,112,1405,0.065552479,0.093878127,0,,,,,,,,,,,,,0.079277865,0.064442043,0.094113687,,,,,,,0.271,,,0.236,0.304,0.365,,,0.35,0.379,5.9,0.186505035,0.142,,,0.315,,,0.286,0.342,0.112094846,2203,19653,,,0.177305451,,,0.16913019,0.1858336,0.205882353,7,34,0.119526223,0.303561189,409.4,81,19784,,,33.29439252,114,3424,27.18251362,39.40627143,,,,,,,103.7037037,56.69577982,173.9971935,,,,30.56478405,24.63952982,37.48499435,,,,,,,0.167557306,2383,14222,0.146110497,0.189004114,0.000353821,7,19784,,,2826.285714,0.000407104,8,19651,,,2456.375,0.000712432,14,19651,,,1403.642857,2635,,,,,,,,,2535,0.33,,,,,,,,,0.34,0.29,,,,,,,0.27,,0.29,0.827063408,11674,14115,0.793912465,0.86021435,0.379711307,1894,4988,0.310398405,0.449024209,0.030703625,216,7035,,,0.28,1093,,0.177531915,0.382468085,,,,,,,0.891891892,0.873355073,0.910428711,,,,0.203692494,0.116332742,0.291052246,4.271286418,83273,19496,3.597530048,4.945042788,0.246609744,982,3982,0.156140843,0.337078645,12.63647392,25,19784,,,111.1904519,109,98030,90.31622895,132.0646749,,,,,,,,,,,,,114.752159,93.05627064,139.9879024,,,,8.6,,,,,0,,,,,0.109320252,780,7135,0.077060115,0.14158039,0.083190883,0.054753013,0.111628754,0.021583742,0.010157655,0.033009829,0.009810792,0,0.020629633,0.85570158,6446,7533,0.820379174,0.891023986,,,,,,,,,,,,,0.804473902,0.73238126,0.876566545,0.526,,7533,0.432197167,0.619802833,71.66926205,,,70.47315728,72.86536682,,,,,,,,,,,,,70.83004914,69.53393967,72.12615861,,,,688.7442323,537,53701,627.9065189,749.5819458,,,,,,,,,,,,,726.1939941,659.4643647,792.9236235,,,,57.29017474,10,17455,27.47286563,105.3586711,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.149,,,0.136,0.162,0.187,,,0.174,0.199,0.117,,,0.109,0.124,129.7,22,16968,,,0.142,2790,,,,0.186505035,3716.485833,19927,,,18.64564794,11,58995,9.30784027,33.36221462,,,,,,,,,,,,,21.66932608,10.81724951,38.77241005,,,,0.376,,,0.36,0.39,0.200762016,2055,10236,0.173357761,0.228166272,0.08394944,352,4193,0.058928163,0.108970716,0.000661544,13,19651,,,1511.615385,0.91,198.38,218,,,,,,,,3.172174139,,,,,,,,,3.163690476,3.130142036,,,,,,,,,3.151842504,0.025713768,,,,,-1426.299,,,,,0.915714971,38167,41680,0.75930406,1.072125883,50118,,,44234.42553,56001.57447,,,,,,,,,,56964,1989.87234,111938.1277,45936,41251.06383,50620.93617,,,,,,0.577535101,1851,3205,,,61.65033012,,,,,0.275130692,,50118,,,5.257623554,5,951,,,,,,,,,,,,,,,,,,,,,,,,,,21.85284628,25,98030,13.85282998,32.78999906,25.50239723,,,,,,,,,,,,,25.06400858,15.70748073,37.94721019,,,,17.34163011,17,98030,10.1021386,27.76562972,,,,,,,,,,,,,18.92819118,10.81909672,30.73819661,,,,32.88488099,45,136841,23.98645785,44.00255808,,,,,,,,,,,,,32.12525468,22.73374221,44.09442197,,,,24.73684211,,1900,,,28,19,0.58825819,9068,15415,,,0.503,,,,,5.466928082,,,,,0.765171877,5409,7069,0.725669982,0.804673773,0.09449887,627,6635,0.062007684,0.126990055,0.758947517,5365,7069,0.723070022,0.794825013,19651,,,,,0.204467966,4018,19651,,,0.202788662,3985,19651,,,0.066815938,1313,19651,,,0.011653351,229,19651,,,0.007836751,154,19651,,,0.001831968,36,19651,,,0.034349397,675,19651,,,0.855478093,16811,19651,,,0.007438551,138,18552,0.000275893,0.014601209,0.467304463,9183,19651,,,1,19653,19653,, -12,061,12061,FL,Indian River County,2024,1,8762.33635,2663,407295,8135.573268,9389.099433,0,,,,2,,,,2,14824.64588,12464.00997,17185.28179,,5525.140485,4420.515902,6629.765069,,8671.487964,7903.873881,9439.102047,,,,,2,,0.147,,,0.129,0.167,3.417774925,,,3.121672076,3.714687424,4.496233933,,,4.256505554,4.73683768,0.086122216,754,8755,0.080245568,0.091998864,0,,,,,,,0.163911846,0.144870223,0.182953469,0.068983676,0.057585236,0.080382115,0.071625344,0.064535548,0.07871514,,,,0.085470086,0.034809621,0.13613055,0.195,,,0.163,0.225,0.323,,,0.311,0.337,7.4,0.133789949,0.1,,,0.242,,,0.217,0.266,0.810617819,129527,159788,,,0.184693496,,,0.178046002,0.191935611,0.20610687,27,131,0.162451948,0.252708857,311,509,163662,,,18.26369777,438,23982,16.55325823,19.97413732,,,,,,,35.87716631,29.40375501,42.35057761,23.06273063,19.01965569,27.10580557,12.59481895,10.73405336,14.45558454,,,,21.17647059,12.55051857,33.46795326,0.169558086,18091,106695,0.151685746,0.187430427,0.000629346,103,163662,,,1588.951456,0.000734978,123,167352,,,1360.585366,0.001661169,278,167352,,,601.9856115,2221,,,,,,,3549,2093,2129,0.47,,,,,,0.39,0.37,0.32,0.48,0.49,,,,,,0.47,0.27,0.34,0.5,0.914362623,115153,125938,0.904521306,0.92420394,0.624298483,18021,28866,0.571557811,0.677039154,0.033894065,2303,67947,,,0.165,3975,,0.111382979,0.218617021,,,,0.063432836,0,0.268469868,0.479355783,0.381706455,0.577005111,0.165893072,0.093851345,0.2379348,0.098307443,0.061454858,0.135160028,4.620617087,136128,29461,4.254907392,4.986326782,0.31958679,7858,24588,0.266992881,0.3721807,8.798621549,144,163662,,,103.7725326,828,797899,96.7040968,110.8409684,,,,,,,84.70928053,64.79588752,108.8126146,40.0421908,28.73496745,54.32175323,118.852596,110.1162477,127.5889444,,,,7.1,,,,,0,,,,,0.135170604,8240,60960,0.122506392,0.147834816,0.12236602,0.109915133,0.134816907,0.011646982,0.006715398,0.016578565,0.004429134,0.002280368,0.0065779,0.764672695,47438,62037,0.739984082,0.789361309,,,,,,,0.847316807,0.74670512,0.947928495,0.763009581,0.697721288,0.828297874,0.780068402,0.755526719,0.804610085,0.257,,62037,0.230760169,0.283239831,78.97626578,,,78.4620109,79.49052066,,,,91.74242856,80.78526056,102.6995966,71.45442082,69.76000421,73.14883744,85.31476601,82.9604579,87.66907412,79.0773859,78.46941293,79.68535888,,,,383.9372894,2663,407295,366.2511151,401.6234638,,,,,,,635.0708003,558.6893602,711.4522404,271.4383782,230.622207,312.2545493,383.2350482,361.920074,404.5500224,,,,51.99322295,58,111553,39.48063403,67.21329749,,,,,,,136.7540069,88.49998276,201.8758914,,,,39.21953133,25.12869375,58.3555538,,,,6.391964388,56,8761,4.828421206,8.300497433,,,,,,,14.95581237,9.372727989,22.64327967,,,,4.508036064,2.857708161,6.764267522,,,,,,,0.104,,,0.094,0.115,0.155,,,0.145,0.167,0.09,,,0.084,0.097,284.2,416,146390,,,0.1,15820,,,,0.133789949,18466.75901,138028,,,27.36045653,133,486103,22.7104497,32.01046336,,,,,,,31.90883191,17.44485533,53.537598,,,,30.54754409,24.86463273,36.23045545,,,,0.348,,,0.335,0.363,0.194252229,15945,82084,0.171613932,0.216890527,0.089220334,2315,25947,0.065390547,0.113050121,0.001493857,250,167352,,,669.408,0.95,1242.6,1308,,,0.068462972,404,5901,0.028306567,0.108619378,3.213159974,,,,,,,2.712261593,3.059493539,3.462063444,3.259688148,,,,,,,2.787520481,3.147839345,3.462091285,0.070974783,,,,,-2601.014,,,,,0.835547369,44909,53748,0.765693267,0.905401472,69462,,,63547.44681,75376.55319,78556,44324.51064,112787.4894,61944,36054.12766,87833.87234,37975,26831,49119,57026,47433.31915,66618.68085,70802,67631.44681,73972.55319,,,,,,0.503742946,8748,17366,,,56.48290476,,,,,0.205162535,,69462,,,7.744586692,49,6327,,,4.647428742,51,1097381,3.460315956,6.110510513,,,,,,,18.2368973,10.80834113,28.82216013,,,,3.269453856,2.154590692,4.756883707,,,,18.24161511,160,797899,14.9281508,21.55507943,20.05266331,,,,,,,,,,,,,23.83676767,19.06500889,28.60852645,,,,16.16745979,129,797899,13.37746749,18.9574521,,,,,,,20.83015095,11.65847736,34.35616624,,,,17.55207114,14.19477391,20.90936838,,,,14.03341228,154,1097381,11.81695689,16.24986767,,,,,,,,,,10.11056626,5.52754066,16.96381221,15.25745133,12.59333741,17.92156525,,,,21.55172414,,11600,,,177,73,0.78093407,97484,124830,,,0.685,,,,,60.28407024,,,,,0.801764661,52704,65735,0.791965524,0.811563799,0.141114133,8975,63601,0.127221271,0.155006996,0.869126036,57132,65735,0.851230556,0.887021517,167352,,,,,0.147640901,24708,167352,,,0.351642048,58848,167352,,,0.085908743,14377,167352,,,0.00481022,805,167352,,,0.017729098,2967,167352,,,0.000657297,110,167352,,,0.137369138,22989,167352,,,0.741072709,124020,167352,,,0.017431418,2698,154778,0.01237057,0.022492266,0.51685071,86496,167352,,,0.072427216,11573,159788,, -12,063,12063,FL,Jackson County,2024,1,13342.62603,1111,127409,12092.63976,14592.6123,0,,,,2,,,,2,13780.89133,11391.24499,16170.53766,,,,,2,13835.39593,12225.27818,15445.51368,,,,,2,,0.207,,,0.188,0.227,4.180422634,,,3.876061767,4.492360477,5.564058741,,,5.33240089,5.811218143,0.093859649,321,3420,0.084085472,0.103633827,0,,,,,,,0.144977169,0.121661779,0.168292559,0.082901554,0.04400002,0.121803089,0.073509637,0.062680375,0.084338899,,,,0.12345679,0.051816437,0.195097143,0.245,,,0.216,0.27,0.35,,,0.338,0.361,7.6,0.054333389,0.126,,,0.31,,,0.287,0.331,0.260931127,12347,47319,,,0.176984253,,,0.170697377,0.183477184,0.16091954,14,87,0.109838593,0.218886464,601.8,287,47694,,,31.55933388,271,8587,27.80183159,35.31683617,,,,,,,25.01096972,18.94306422,32.40461229,57.60368664,37.27806877,85.03440483,31.19777159,26.48012933,35.91541384,,,,55.86592179,34.12435638,86.2803852,0.140669887,4456,31677,0.122797546,0.158542227,0.000314505,15,47694,,,3179.6,0.00029039,14,48211,,,3443.642857,0.001472693,71,48211,,,679.028169,4090,,,,,,,5428,,3926,0.42,,,,,,,0.47,,0.41,0.32,,,,,,0.31,0.28,0.31,0.32,0.842313651,29358,34854,0.823470123,0.86115718,0.406121155,5122,12612,0.359415547,0.452826762,0.03242722,538,16591,,,0.265,2328,,0.167297872,0.362702128,,,,,,,0.417462483,0.274004137,0.560920829,0.333333333,0.153523498,0.513143169,0.275663635,0.205193149,0.34613412,4.451611316,90479,20325,3.72022277,5.182999862,0.349547511,3090,8840,0.289659232,0.409435791,10.90283893,52,47694,,,115.2735319,273,236828,101.5992557,128.947808,,,,,,,95.3427491,72.5793181,122.9851998,84.10428932,40.33127583,154.6707825,128.4898887,110.6374115,146.3423658,,,,8.9,,,,,1,,,,,0.125748503,2205,17535,0.101985163,0.149511843,0.103113984,0.078243631,0.127984336,0.025948104,0.016239033,0.035657175,0.003421728,0.000671429,0.006172028,0.841148266,13508,16059,0.810324382,0.87197215,,,,,,,0.884519128,0.844443955,0.924594301,0.537296037,0.411309576,0.663282499,0.855268022,0.763323409,0.947212636,0.46,,16059,0.405503199,0.514496801,72.13646824,,,71.2525955,73.02034098,,,,,,,71.57775594,69.81622859,73.3392833,83.98328099,75.25685089,92.7097111,71.6559155,70.55938582,72.75244518,,,,632.3446947,1111,127409,593.3076095,671.3817798,,,,,,,686.9790781,605.8865424,768.0716138,,,,647.830814,599.2622533,696.3993747,,,,111.1504067,44,39586,80.76205567,149.214233,,,,,,,106.6925315,53.26052733,190.9024104,,,,119.4497076,79.99734384,171.5497052,,,,9.088243917,31,3411,6.175020809,12.90003679,,,,,,,,,,,,,,,,,,,,,,0.134,,,0.124,0.145,0.178,,,0.168,0.187,0.128,,,0.122,0.134,912.7,377,41306,,,0.126,6060,,,,0.054333389,2702.868787,49746,,,22.11237366,31,140193,15.02428508,31.38674934,,,,,,,,,,,,,27.22273643,17.61711967,40.18612914,,,,0.397,,,0.385,0.408,0.16900488,3879,22952,0.145175093,0.192834667,0.068022747,622,9144,0.047767428,0.088278066,0.001659372,80,48211,,,602.6375,0.84,359.52,428,,,,,,,,3.326007028,,,,,,,3.021749498,3.184017642,3.521271271,3.441575738,,,,,,,3.129676479,3.356956698,3.641704042,0.041298379,,,,,-5620.391,,,,,0.850992366,36231,42575,0.708389033,0.9935957,50625,,,45045.25532,56204.74468,,,,,,,29693,24929.42553,34456.57447,46949,27629,66269,52455,46939.59575,57970.40426,,,,,,0.5431935,3276,6031,,,43.25002577,,,,,0.294281482,,50625,,,4.874086109,12,2462,,,9.590716187,32,333656,6.560042772,13.53922965,,,,,,,16.0047557,8.749948872,26.85326054,,,,6.866999945,3.843407741,11.32607211,,,,18.80428162,47,236828,13.66321981,25.24387037,19.84562636,,,,,,,,,,,,,23.3302621,16.25038238,32.44674691,,,,19.42337899,46,236828,14.22035461,25.90806565,,,,,,,19.39174558,10.01999791,33.87347702,,,,19.37033498,13.06908367,27.65235763,,,,35.66547582,119,333656,29.25735616,42.07359548,,,,,,,42.29828292,29.7818947,58.30261122,,,,35.70839971,28.22600817,44.5656989,,,,18.25,,4000,,,48,25,0.591296321,22419,37915,,,0.556,,,,,14.07556554,,,,,0.740402844,12498,16880,0.713112708,0.767692979,0.109005653,1697,15568,0.085235156,0.13277615,0.786670616,13279,16880,0.756718536,0.816622697,48211,,,,,0.186202319,8977,48211,,,0.210263218,10137,48211,,,0.253386157,12216,48211,,,0.009022837,435,48211,,,0.007114559,343,48211,,,0.002364606,114,48211,,,0.0556512,2683,48211,,,0.655223912,31589,48211,,,0.011553926,523,45266,0.007059199,0.016048652,0.456140715,21991,48211,,,0.88249963,41759,47319,, -12,065,12065,FL,Jefferson County,2024,1,10467.25786,296,39008,8329.040978,12605.47474,0,,,,2,,,,2,13207.55756,9146.972851,17268.14227,,,,,2,8670.975178,6253.372898,11088.57746,,,,,2,,0.188,,,0.167,0.208,3.969264769,,,3.667295856,4.280550617,5.061176464,,,4.78093305,5.31223703,0.114124294,101,885,0.093175458,0.135073129,0,,,,,,,0.173441734,0.134808913,0.212074556,,,,0.077092511,0.052555971,0.101629051,,,,,,,0.228,,,0.196,0.258,0.354,,,0.341,0.368,8,0.058029069,0.108,,,0.279,,,0.252,0.303,0.482288077,6998,14510,,,0.177258138,,,0.170228308,0.184369696,0.05,1,20,0.002072424,0.180379928,522.2,76,14555,,,20.23919043,44,2174,14.70582675,27.17016848,,,,,,,34.94926719,23.74633143,49.60769504,,,,,,,,,,,,,0.168193515,1634,9715,0.146746707,0.189640324,0.00027482,4,14555,,,3638.75,0.000265922,4,15042,,,3760.5,0.000664805,10,15042,,,1504.2,2883,,,,,,,4783,,2523,0.42,,,,,,,0.47,,0.41,0.29,,,,,,,0.2,,0.31,0.851468687,9218,10826,0.826790499,0.876146874,0.450563204,1440,3196,0.366338638,0.53478777,0.032055749,184,5740,,,0.245,609,,0.156829787,0.333170213,,,,,,,0.583538084,0.454172151,0.712904016,,,,0.17057903,0.073680681,0.267477378,5.310813292,115712,21788,3.980408926,6.641217657,0.377822581,937,2480,0.267355265,0.488289896,10.30573686,15,14555,,,98.91885867,71,71776,77.25644931,124.7726804,,,,,,,50.91865745,26.31041333,88.94464738,,,,128.9787646,97.42917265,167.4896541,,,,8.4,,,,,0,,,,,0.103631532,585,5645,0.066335558,0.140927507,0.09156845,0.054450913,0.128685986,0.011514615,0,0.025028943,0.001771479,0,0.007454018,0.805087601,4779,5936,0.756730422,0.85344478,,,,,,,0.700707786,0.553516955,0.847898617,,,,0.80420631,0.704299871,0.904112748,0.562,,5936,0.472884879,0.651115121,75.38839308,,,73.73228226,77.04450391,,,,,,,72.65483433,69.68706178,75.62260688,,,,76.65047769,74.6969715,78.60398387,,,,476.074598,296,39008,416.10496,536.044236,,,,,,,580.8480395,462.0626668,699.6334123,,,,435.4209982,363.8016588,507.0403376,,,,103.2476065,11,10654,51.54083318,184.738488,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.124,,,0.113,0.135,0.168,,,0.157,0.179,0.112,,,0.106,0.119,700.8,90,12842,,,0.108,1550,,,,0.058029069,856.5670919,14761,,,32.2997416,14,43344,17.6585693,54.19347804,,,,,,,,,,,,,45.42357484,23.47102396,79.34584393,,,,0.371,,,0.357,0.385,0.187304182,1375,7341,0.162282905,0.212325459,0.111156023,275,2474,0.07898581,0.143326235,0.000199442,3,15042,,,5014,,,,,,,,,,,2.81142707,,,,,,,2.704351461,,,2.949197814,,,,,,,2.925975883,,,,,,,,-19959.21,,,,,0.821160832,42500,51756,0.625779662,1.016542002,56900,,,49130.29787,64669.70213,,,,,,,35756,21511.74468,50000.25532,68523,32225.46809,104820.5319,67870,51111.70213,84628.29787,,,,,,0.74132948,513,692,,,23.41613144,,,,,0.244551845,,56900,,,11.70568562,7,598,,,,,,,,,,,,,,,,,,,,,,,,,,18.20765667,15,71776,9.694810341,31.13564742,20.89835042,,,,,,,,,,,,,28.75544389,13.78935306,52.88228512,,,,15.32545698,11,71776,7.650412906,27.42147586,,,,,,,,,,,,,23.03192224,11.04470196,42.35652504,,,,22.05226387,22,99763,13.82003636,33.38739251,,,,,,,,,,,,,25.01375757,14.00001023,41.25638913,,,,,,1200,,,8,-888,0.727280551,8451,11620,,,0.519,,,,,13.63818143,,,,,0.749411125,4136,5519,0.712834873,0.785987378,0.096780565,490,5063,0.055591097,0.137970033,0.752129009,4151,5519,0.712317834,0.791940184,15042,,,,,0.168461641,2534,15042,,,0.243784071,3667,15042,,,0.308934982,4647,15042,,,0.005717325,86,15042,,,0.007911182,119,15042,,,0.000332403,5,15042,,,0.049129105,739,15042,,,0.614147055,9238,15042,,,0.005696978,79,13867,0,0.013820174,0.473540753,7123,15042,,,1,14510,14510,, -12,067,12067,FL,Lafayette County,2024,1,9943.475232,168,23396,7579.245417,12307.70505,0,,,,2,,,,2,,,,2,,,,2,11408.65638,8503.760897,14313.55186,,,,,2,,0.233,,,0.21,0.257,4.640171837,,,4.294387897,4.995579873,5.505804367,,,5.256263338,5.787249588,0.095444686,44,461,0.068622198,0.122267173,0,,,,,,,,,,,,,0.101449275,0.06958953,0.133309021,,,,,,,0.271,,,0.241,0.301,0.373,,,0.358,0.386,8.1,0.045584283,0.109,,,0.319,,,0.294,0.345,0.515681984,4242,8226,,,0.182954821,,,0.174828424,0.190544005,0.125,1,8,0.007330353,0.353459145,310.2,26,8382,,,18.73935264,33,1761,12.89930811,26.31701832,,,,,,,,,,,,,20.36021926,13.2999712,29.83243859,,,,,,,0.207905276,1194,5743,0.179309531,0.236501021,0.000119303,1,8382,,,8382,,0,7786,,,,0.000256871,2,7786,,,3893,3102,,,,,,,27273,,2822,0.4,,,,,,,,,0.41,0.3,,,,,,,,,0.31,0.785129604,4604,5864,0.732601876,0.837657333,0.253694581,618,2436,0.173206029,0.334183134,0.031004989,87,2806,,,0.288,425,,0.19387234,0.38212766,,,,,,,0.297752809,0,0.769894267,0.01497006,0,0.127816984,0.34351145,0.17197207,0.515050831,5.202737092,92000,17683,3.035461597,7.370012587,0.150205761,219,1458,0.060112922,0.240298601,17.89549034,15,8382,,,98.89566507,42,42469,71.27529665,133.6782095,,,,,,,,,,,,,108.9432505,74.99152082,152.9968283,,,,7.7,,,,,0,,,,,0.149028078,345,2315,0.067204658,0.230851498,0.110917031,0.032778935,0.189055126,0.051835853,0.002418957,0.10125275,0.021598272,0,0.053238878,0.861091914,2492,2894,0.748887977,0.973295852,,,,,,,,,,,,,0.845323741,0.689237168,1,0.432,,2894,0.304154802,0.559845198,74.6485783,,,72.71561363,76.58154298,,,,,,,,,,,,,73.61667966,71.48063939,75.75271993,,,,551.9816529,168,23396,466.2964329,637.6668728,,,,,,,,,,,,,608.7318953,506.3593068,711.1044837,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.151,,,0.139,0.164,0.18,,,0.169,0.19,0.124,,,0.117,0.132,204.7,15,7328,,,0.109,910,,,,0.045584283,404.3325869,8870,,,,,,,,,,,,,,,,,,,,,,,,,,0.378,,,0.364,0.391,0.24262059,1011,4167,0.20687591,0.278365271,0.116557083,195,1673,0.078429424,0.154684743,0.000513743,4,7786,,,1946.5,0.975,78,80,,,,,,,,3.292166074,,,,,,,,2.945185303,3.517650955,3.469694166,,,,,,,,3.195387894,3.663072275,0.002992886,,,,,-6058.729,,,,,0.644809857,28469,44151,0.551008226,0.738611488,50775,,,43070.82979,58479.17021,,,,,,,,,,40434,22173.23404,58694.76596,58508,52543.40426,64472.59575,,,,,,0.583845479,665,1139,,,28.38452732,,,,,0.310999508,,50775,,,9.771986971,3,307,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,28.45235904,17,59749,16.57454764,45.55498304,,,,,,,,,,,,,28.20145238,14.57210197,49.26226187,,,,,,900,,,-888,9,0.558473282,3658,6550,,,0.438,,,,,7.609401854,,,,,0.805088063,2057,2555,0.744649793,0.865526333,0.136205396,313,2298,0.060173135,0.212237657,0.859882583,2197,2555,0.819976364,0.899788803,7786,,,,,0.193424095,1506,7786,,,0.190983817,1487,7786,,,0.109427177,852,7786,,,0.008990496,70,7786,,,0.004495248,35,7786,,,0.001027485,8,7786,,,0.141150784,1099,7786,,,0.72193681,5621,7786,,,0.019779091,154,7786,0,0.040953217,0.45479065,3541,7786,,,1,8226,8226,, -12,069,12069,FL,Lake County,2024,1,9211.76715,6304,997600,8827.6842,9595.850101,0,,,,2,3703.98415,2348.00822,5557.794864,1,12104.19352,10865.86798,13342.51907,,6308.771463,5587.837962,7029.704963,,9739.552943,9236.163468,10242.94242,,,,,2,,0.158,,,0.14,0.176,3.639098824,,,3.357840449,3.919292577,4.909763032,,,4.683163352,5.143313606,0.085414314,2042,23907,0.081871315,0.088957313,0,,,,0.100346021,0.075850878,0.124841164,0.145657501,0.134249014,0.157065987,0.082144895,0.074723563,0.089566226,0.070330927,0.066093824,0.07456803,,,,0.081433225,0.050838745,0.112027704,0.188,,,0.164,0.214,0.355,,,0.342,0.367,7.5,0.118439736,0.1,,,0.262,,,0.238,0.285,0.848526915,325797,383956,,,0.177022722,,,0.170921877,0.182755966,0.278745645,80,287,0.249005837,0.309023569,228.6,905,395804,,,17.97297919,1172,65209,16.94398639,19.00197199,,,,,,,26.50727651,23.25377442,29.76077859,16.79751689,14.81577716,18.77925662,17.2763357,15.89966517,18.65300624,,,,12.55230126,8.272045622,18.26293931,0.146247064,42094,287828,0.131949192,0.160544937,0.000586149,232,395804,,,1706.051724,0.000480325,197,410139,,,2081.923858,0.001121571,460,410139,,,891.6065217,2978,,,,,,1375,4961,3352,2877,0.49,,,,,0.71,0.4,0.43,0.39,0.5,0.48,,,,,0.62,0.46,0.33,0.33,0.49,0.904444112,259665,287099,0.897170209,0.911718015,0.62649897,53498,85392,0.592431382,0.660566557,0.030277697,5179,171050,,,0.142,10749,,0.095531915,0.188468085,,,,0.190476191,0.035895392,0.345056989,0.214726493,0.145061151,0.284391835,0.178159076,0.130504334,0.225813819,0.115690626,0.091857252,0.139524,3.95796093,123995,31328,3.775973957,4.139947902,0.23157981,16966,73262,0.200823472,0.262336147,7.326858748,290,395804,,,122.2210996,2250,1840926,117.1708714,127.2713278,,,,34.74980143,18.9980398,58.30426212,80.35603907,67.74612017,92.96595796,47.52495874,39.81589934,55.23401814,150.7332379,143.9554449,157.5110308,,,,8.1,,,,,1,,,,,0.139473971,19170,137445,0.127617396,0.151330547,0.120780746,0.108964225,0.132597266,0.018480119,0.014201772,0.022758467,0.006329805,0.003720246,0.008939364,0.767840899,123240,160502,0.754186771,0.781495027,,,,0.696666667,0.618411825,0.774921508,0.743354072,0.697695957,0.789012188,0.643124275,0.601549282,0.684699267,0.747902442,0.728030378,0.767774505,0.488,,160502,0.462893761,0.513106239,77.42930178,,,77.11562592,77.74297765,,,,90.5736887,86.31113726,94.83624014,73.85928667,72.89346937,74.82510397,81.08723822,80.20089943,81.973577,76.95829994,76.57052916,77.34607072,,,,417.4341583,6304,997600,405.9765747,428.891742,,,,180.7357948,135.7742916,235.8210072,531.4987634,491.4383084,571.5592184,277.2981811,253.1456057,301.4507565,442.3930257,427.7244669,457.0615845,,,,53.28522683,166,311531,45.1791849,61.39126877,,,,,,,83.00058325,58.44007037,114.4053707,46.84789628,32.98524237,64.57365394,50.27772457,40.10348218,62.24724416,,,,6.139183446,143,23293,5.132950197,7.145416694,,,,,,,11.22649453,8.020372282,15.28729918,6.501422186,4.446967963,9.178068281,4.397981255,3.364107178,5.64939091,,,,,,,0.109,,,0.1,0.119,0.163,,,0.153,0.173,0.106,,,0.099,0.112,312.8,1073,342996,,,0.1,37650,,,,0.118439736,35182.76059,297052,,,30.48100252,347,1138414,27.27384286,33.68816218,,,,,,,22.94668175,15.24790338,33.16434409,17.2899525,11.97379473,24.16097561,36.47711548,32.21207262,40.74215834,,,,0.355,,,0.342,0.368,0.17279341,36791,212919,0.154921069,0.19066575,0.073970407,5814,78599,0.056098066,0.091842747,0.001221537,501,410139,,,818.6407186,0.91,2905.63,3193,,,0.086500158,1368,15815,0.058929289,0.114071027,3.252614816,,,,,,3.504440113,2.899391823,3.103535415,3.422758721,3.351126213,,,,,,3.581254091,2.94256645,3.171799649,3.54125697,0.052683397,,,,,-2289.887,,,,,0.808842018,43104,53291,0.761400122,0.856283915,67637,,,63630.02128,71643.97872,78910,61122.25532,96697.74468,73764,63610.12766,83917.87234,55115,51168.78723,59061.21277,64029,56739.46809,71318.53192,67487,65216.02128,69757.97872,,,,,,0.433195111,19849,45820,,,41.29007413,,,,,0.165456777,,67637,,,5.001945201,90,17993,,,4.715855706,118,2502197,3.864961481,5.566749931,,,,,,,14.25445355,10.03645078,19.64788654,3.467715568,1.89583237,5.818237489,3.521096273,2.693359649,4.522995467,,,,18.28761283,372,1840926,16.25805815,20.31716751,20.2072218,,,,,,,5.97317633,2.981788103,10.68766242,5.969239204,3.537749463,9.433971436,23.81033222,20.84098483,26.77967961,,,,16.62206955,306,1840926,14.75963743,18.48450167,,,,,,,16.48329007,11.2745582,23.26948741,6.184754905,3.723626468,9.658260903,19.59532092,17.15155291,22.03908893,,,,18.144055,454,2502197,16.47503132,19.81307869,,,,,,,20.03328608,14.96181625,26.27098939,11.14622861,8.130135634,14.91453084,19.62578251,17.53964181,21.7119232,,,,18.6969697,,33000,,,187,430,0.769449805,211314,274630,,,0.631,,,,,60.34097356,,,,,0.764037785,117522,153817,0.751906009,0.776169562,0.12117778,18285,150894,0.110951691,0.13140387,0.90163636,138687,153817,0.892623256,0.910649464,410139,,,,,0.188345902,77248,410139,,,0.268043273,109935,410139,,,0.111237897,45623,410139,,,0.006156449,2525,410139,,,0.024491697,10045,410139,,,0.001845716,757,410139,,,0.186761074,76598,410139,,,0.656414045,269221,410139,,,0.022714265,8374,368667,0.01795758,0.027470951,0.512826139,210330,410139,,,0.179317422,68850,383956,, -12,071,12071,FL,Lee County,2024,1,8203.677483,10811,2031480,7940.387857,8466.96711,0,,,,2,2570.751434,1708.245658,3715.451588,,11681.25617,10709.9948,12652.51754,,5929.984208,5528.700339,6331.268077,,8934.092349,8561.003042,9307.181657,,,,,2,,0.152,,,0.135,0.17,3.328353146,,,3.064026864,3.614281049,4.382047111,,,4.162624458,4.607807318,0.08456351,4113,48638,0.082090796,0.087036224,0,,,,0.08643617,0.066351516,0.106520824,0.141091658,0.132815638,0.149367678,0.074828401,0.070960211,0.078696592,0.075488998,0.072067642,0.078910354,,,,0.068965517,0.042342006,0.095589029,0.173,,,0.15,0.196,0.279,,,0.268,0.29,7.5,0.119953757,0.1,,,0.238,,,0.215,0.26,0.850874449,647364,760822,,,0.195103441,,,0.189186915,0.201625234,0.248106061,131,528,0.226337579,0.270338959,400.8,3158,787976,,,18.18904905,2424,133267,17.46494703,18.91315107,,,,,,,25.05040631,22.62558959,27.47522302,26.35130793,24.87863707,27.82397878,11.66747691,10.82908601,12.5058678,,,,9.210526316,6.415469053,12.80961247,0.164099779,90652,552420,0.152184886,0.176014673,0.000664995,524,787976,,,1503.770992,0.000530122,436,822453,,,1886.360092,0.001369075,1126,822453,,,730.4200711,2400,,,,,,1061,3395,3193,2309,0.53,,,,,,0.47,0.45,0.38,0.54,0.51,,,,,0.38,0.51,0.32,0.29,0.53,0.901075711,525629,583335,0.896088457,0.906062965,0.575725862,94069,163392,0.55547934,0.595972384,0.031142624,11692,375434,,,0.16,21777,,0.125446809,0.194553192,0.47845805,0.172733954,0.784182146,0.087336245,0,0.187445213,0.279098289,0.221625088,0.33657149,0.229838209,0.203637898,0.25603852,0.103230092,0.08874135,0.117718833,4.32318355,131615,30444,4.154180721,4.492186379,0.239802999,31795,132588,0.219026435,0.260579563,5.90119496,465,787976,,,102.1296571,3925,3843154,98.93453013,105.324784,,,,35.71539489,22.64049666,53.59062843,85.57016754,75.28674608,95.85358899,56.3377023,51.33400855,61.34139606,122.5703197,118.2673034,126.8733359,,,,7.4,,,,,0,,,,,0.171988301,49690,288915,0.163000087,0.180976515,0.150129331,0.141095917,0.159162745,0.023570947,0.020391836,0.026750057,0.008410778,0.006539936,0.010281621,0.748230167,244149,326302,0.737068509,0.759391825,0.441176471,0.37342366,0.508929282,0.69396181,0.614263482,0.773660138,0.768647572,0.737168563,0.800126582,0.727041928,0.707308602,0.746775253,0.752597732,0.738554209,0.766641254,0.436,,326302,0.420014493,0.451985507,81.17163646,,,80.91774065,81.42553227,,,,92.985016,89.35520782,96.61482417,78.1148922,76.9218415,79.3079429,82.45326347,81.79692023,83.10960671,80.60428627,80.28167384,80.9268987,,,,348.2179407,10811,2031480,340.7444286,355.6914528,,,,131.1081128,100.7470737,167.7442298,490.9984797,458.8098441,523.1871154,264.7282241,250.1999346,279.2565135,376.0056226,365.7503563,386.260889,,,,54.36828238,325,597775,48.45729539,60.27926937,,,,,,,104.6385335,82.84331235,130.4108336,47.76070522,38.62520878,56.89620166,47.59480221,39.3814444,55.80816001,,,,5.925307741,284,47930,5.236167179,6.614448302,,,,,,,12.85609934,10.31096761,15.83907396,5.303617186,4.259240101,6.52655732,4.101014462,3.317965597,5.013277515,,,,,,,0.106,,,0.097,0.116,0.151,,,0.142,0.16,0.096,,,0.09,0.102,336.6,2332,692797,,,0.1,74870,,,,0.119953757,74221.86687,618754,,,35.66989597,838,2349320,33.25479159,38.08500035,,,,,,,27.88725132,20.8894649,36.47721134,19.17488974,15.48959458,22.86018491,43.64823936,40.34805528,46.94842344,,,,0.321,,,0.308,0.333,0.191575616,80147,418357,0.177277744,0.205873488,0.081913513,11553,141039,0.065232662,0.098594364,0.001394609,1147,822453,,,717.0470793,0.85,6074.1,7146,,,0.069794669,2325,33312,0.056071157,0.083518181,3.17784193,,,,,,3.564077974,2.82878866,3.011622272,3.485157069,3.198467748,,,,,,3.758566906,2.811269606,3.063772881,3.472788651,0.10433014,,,,,-2607.007,,,,,0.866205837,45112,52080,0.837534205,0.894877469,71607,,,67672.70213,75541.29787,47813,12915.46809,82710.53192,89861,72603.46809,107118.5319,52101,48810.10638,55391.89362,57593,55255.29787,59930.70213,74601,72999.6383,76202.3617,,,,,,0.485590615,47230,97263,,,59.46887464,,,,,0.252670828,,71607,,,4.277009609,146,34136,,,5.087829608,268,5267472,4.478683838,5.696975378,,,,,,,24.14558616,19.48248098,28.80869135,5.729052285,4.430848622,7.288759204,2.699010088,2.183660337,3.299399872,,,,14.7242941,629,3843154,13.45028565,15.99830255,16.36676542,,,,,,,5.040790411,2.881247261,8.185927822,7.958809242,6.129252915,10.16322172,19.2716322,17.30202802,21.24123637,,,,13.16626916,506,3843154,12.01905753,14.3134808,,,,,,,23.48354222,18.40734839,29.52702865,7.288039517,5.600329673,9.324568477,14.27431057,12.80586484,15.7427563,,,,14.69395566,774,5267472,13.65875553,15.72915578,,,,,,,18.75385333,14.87063934,23.34079384,15.4510804,13.18118982,17.72097099,14.14849499,12.90583692,15.39115306,,,,13.54066986,,62700,,,393,456,0.695645801,393899,566235,,,0.607,,,,,80.9688571,,,,,0.73275563,228142,311348,0.724444005,0.741067256,0.16008578,48522,303100,0.151572456,0.168599104,0.900574277,280392,311348,0.895708292,0.905440262,822453,,,,,0.168937313,138943,822453,,,0.292871447,240873,822453,,,0.080825287,66475,822453,,,0.005094516,4190,822453,,,0.018393756,15128,822453,,,0.001127116,927,822453,,,0.243204171,200024,822453,,,0.641742446,527803,822453,,,0.057046371,42130,738522,0.053125397,0.060967345,0.507484318,417382,822453,,,0.039279884,29885,760822,, -12,073,12073,FL,Leon County,2024,1,8095.462321,3507,834492,7696.958982,8493.965659,0,,,,2,3178.293452,1851.473059,5088.755702,1,11365.89282,10563.76223,12168.0234,,3831.676815,2902.074601,4964.381749,,7034.346727,6535.748883,7532.944571,,,,,2,,0.151,,,0.135,0.168,3.470744113,,,3.201559324,3.753013374,5.4341266,,,5.180122147,5.706029834,0.105692646,2163,20465,0.101480378,0.109904914,0,,,,0.085889571,0.066652151,0.10512699,0.15287057,0.145364926,0.160376214,0.071277347,0.05788089,0.084673803,0.066754938,0.061616162,0.071893713,,,,0.125,0.085696552,0.164303448,0.176,,,0.152,0.202,0.35,,,0.337,0.362,7.6,0.093984582,0.106,,,0.239,,,0.218,0.26,0.831436218,242944,292198,,,0.191543436,,,0.184985582,0.198142763,0.318435754,57,179,0.280812173,0.356368466,1103.4,3231,292817,,,9.375287233,918,97917,8.768803282,9.981771184,,,,,,,17.32609992,15.95113389,18.70106595,8.306709265,6.410942841,10.58758285,4.323177944,3.741220467,4.905135421,,,,9.090909091,5.990966374,13.22679544,0.112671502,26484,235055,0.099565119,0.125777885,0.000884512,259,292817,,,1130.567568,0.000544778,162,297369,,,1835.611111,0.002824773,840,297369,,,354.0107143,3355,,,,,,2446,5427,1466,2815,0.42,,,,,,0.34,0.39,0.45,0.43,0.4,,,,,,0.37,0.28,0.36,0.43,0.932852744,163308,175063,0.925972545,0.939732944,0.772792013,56971,73721,0.743630188,0.801953838,0.029649309,4743,159970,,,0.164,8747,,0.112765957,0.215234043,,,,0.037121645,0,0.088246687,0.33786348,0.288496921,0.387230039,0.128962536,0.068619965,0.189305108,0.088230328,0.06600489,0.110455766,5.364443509,127486,23765,5.046775652,5.682111367,0.35407837,19048,53796,0.322189426,0.385967315,13.14814372,385,292817,,,63.0183395,923,1464653,58.95276263,67.08391636,,,,,,,54.64397599,47.88374552,61.40420647,33.59017945,23.12193395,47.17310065,76.18731335,70.20944377,82.16518292,,,,7.7,,,,,0,,,,,0.198232215,23100,116530,0.185944147,0.210520282,0.179856747,0.166953093,0.192760402,0.021239166,0.016640019,0.025838313,0.009997426,0.005819448,0.014175403,0.753619742,110917,147179,0.741072242,0.766167242,,,,0.64825046,0.603877482,0.692623439,0.76687595,0.745467284,0.788284616,0.715793146,0.674406273,0.757180018,0.785890222,0.769990002,0.801790442,0.223,,147179,0.208023211,0.237976789,77.51467799,,,77.1559251,77.87343088,,,,95.37239874,85.52796957,105.2168279,74.1645186,73.44728705,74.88175015,89.68301681,85.52925384,93.83677979,78.25495642,77.81848306,78.69142977,,,,386.5863353,3507,834492,373.2824801,399.8901906,,,,111.2432633,74.50135931,159.7638824,550.5077338,519.8874823,581.1279854,187.3095055,147.0782492,235.1499314,349.7315463,333.5505916,365.9125011,,,,62.46403054,178,284964,53.28755156,71.64050953,,,,,,,93.58162397,76.05852619,113.9322694,,,,45.99713631,35.26574066,58.96625285,,,,8.13751926,169,20768,6.910631741,9.36440678,,,,,,,11.61621803,9.383652799,13.84878326,,,,4.383151593,3.145425259,5.946240065,,,,,,,0.106,,,0.097,0.116,0.158,,,0.147,0.168,0.104,,,0.097,0.111,519.1,1318,253901,,,0.106,30970,,,,0.093984582,25891.53057,275487,,,13.26742711,117,881859,10.86334193,15.67151228,,,,,,,11.12858179,7.561331402,15.79613354,,,,16.53962465,13.1348494,20.55724327,,,,0.364,,,0.35,0.377,0.130731014,23735,181556,0.114050163,0.147411865,0.054899949,3103,56521,0.040602076,0.069197821,0.001876457,558,297369,,,532.9193548,0.94236757,2330.475,2473,,,0.034629962,868,25065,0.02289431,0.046365614,3.34281986,,,,,,4.048446189,2.936753573,3.189670196,3.754799647,3.355554877,,,,,,4.173893171,2.96740878,3.248043562,3.737026096,0.165796375,,,,,-5435.867,,,,,0.836210656,46015,55028,0.803370657,0.869050656,61560,,,58427.57447,64692.42553,75341,3382.191489,147299.8085,87050,79401.82979,94698.17021,40880,37497.3617,44262.6383,67117,58684.82979,75549.17021,75237,72407.21277,78066.78723,,,,,,0.45170983,15785,34945,,,46.82211677,,,,,0.260331384,,61560,,,7.356414929,109,14817,,,6.082167135,124,2038747,5.011625459,7.152708811,,,,,,,14.44102255,11.64150236,17.7106322,,,,2.092805458,1.340899946,3.113928631,,,,12.67982004,187,1464653,10.78729541,14.57234467,12.76752924,,,,,,,3.285775673,1.796364136,5.51297326,,,,18.03026413,15.05204949,21.00847877,,,,13.17718258,193,1464653,11.31809444,15.03627072,,,,,,,13.93312535,10.73020431,17.79229002,,,,14.28512125,11.6966278,16.87361471,,,,11.03619037,225,2038747,9.594128158,12.47825257,,,,,,,11.77257273,9.259875258,14.75702186,,,,12.03363138,10.02586475,14.04139802,,,,23.67346939,,24500,,,359,221,0.710626976,162929,229275,,,0.614,,,,,87.59178497,,,,,0.521215949,61897,118755,0.51187204,0.530559858,0.193755354,22166,114402,0.17948767,0.208023038,0.904484022,107412,118755,0.896147828,0.912820216,297369,,,,,0.182621591,54306,297369,,,0.149030329,44317,297369,,,0.317292657,94353,297369,,,0.003537692,1052,297369,,,0.037091963,11030,297369,,,0.00077345,230,297369,,,0.073336494,21808,297369,,,0.547572208,162831,297369,,,0.008503651,2377,279527,0.006653291,0.010354011,0.527048885,156728,297369,,,0.134374636,39264,292198,, -12,075,12075,FL,Levy County,2024,1,11537.0166,975,114671,10285.97984,12788.05336,0,,,,2,,,,2,14928.48349,10712.93749,20252.17352,,6509.929983,3919.403107,10166.06207,1,12022.04306,10551.94079,13492.14533,,,,,2,,0.196,,,0.176,0.218,4.355803197,,,4.035838426,4.675757762,5.42345386,,,5.168070953,5.679027013,0.096106629,274,2851,0.085287489,0.106925769,0,,,,,,,0.163212435,0.126344684,0.200080187,0.058441558,0.032243733,0.084639384,0.08925144,0.077010519,0.10149236,,,,,,,0.246,,,0.215,0.275,0.369,,,0.354,0.382,7.6,0.042103085,0.134,,,0.307,,,0.282,0.331,0.489409297,21003,42915,,,0.19398999,,,0.185688973,0.201732436,0.447058824,38,85,0.396068476,0.496251904,518.6,229,44158,,,24.14178063,173,7166,20.54426807,27.73929319,,,,,,,39.44315545,27.31553177,55.11785626,26.73267327,17.61700013,38.89463608,21.20491478,17.18700007,25.2228295,,,,,,,0.180809199,5881,32526,0.15936239,0.202256007,0.00011323,5,44158,,,8831.6,0.000220946,10,45260,,,4526,0.000463986,21,45260,,,2155.238095,3555,,,,,,,6484,6870,3441,0.36,,,,,,,0.43,0.3,0.36,0.33,,,,,,0.2,0.26,0.27,0.33,0.876426393,27880,31811,0.857576727,0.89527606,0.446558973,4036,9038,0.383201144,0.509916802,0.034809571,595,17093,,,0.254,2172,,0.167021277,0.340978723,,,,,,,0.596938776,0.393370758,0.800506793,0.223805532,0.109292451,0.338318614,0.211604683,0.152409518,0.270799848,4.505551094,95369,21167,4.068575694,4.942526493,0.270234987,2277,8426,0.205001581,0.335468393,7.699624077,34,44158,,,132.0574163,276,209000,116.4775285,147.6373041,,,,,,,101.5391193,61.13318279,158.5659126,97.11880868,57.55876109,153.4895882,144.5112918,126.1898814,162.8327023,,,,7.6,,,,,0,,,,,0.126988804,2155,16970,0.101619757,0.152357851,0.100389805,0.077653119,0.123126491,0.025633471,0.014238565,0.037028377,0.003830289,0.001254145,0.006406433,0.78833284,13311,16885,0.760318423,0.816347257,,,,,,,,,,0.744774477,0.581988489,0.907560466,0.745910321,0.685775094,0.806045548,0.526,,16885,0.461891672,0.590108328,74.19670876,,,73.28736482,75.10605269,,,,,,,71.84456775,68.60807828,75.08105722,80.58655452,77.24943884,83.92367021,73.64551838,72.61188654,74.67915022,,,,540.711855,975,114671,502.2074852,579.2162247,,,,,,,671.6816501,530.0806543,839.4868169,274.1193694,183.5820439,393.6811399,564.3373,520.0847187,608.5898812,,,,58.63628749,21,35814,36.29678613,89.63179409,,,,,,,,,,,,,52.30125523,27.84821569,89.43673929,,,,8.403361345,24,2856,5.384192176,12.50353557,,,,,,,,,,,,,,,,,,,,,,0.133,,,0.122,0.145,0.18,,,0.169,0.19,0.114,,,0.108,0.121,262.7,100,38062,,,0.134,5690,,,,0.042103085,1717.847985,40801,,,31.28054741,40,127875,22.34728168,42.59522734,,,,,,,,,,,,,34.73876449,24.1968223,48.31321202,,,,0.348,,,0.334,0.361,0.216963915,5231,24110,0.18955966,0.244368171,0.07918321,698,8815,0.055353423,0.103012998,0.000817499,37,45260,,,1223.243243,0.94,284.82,303,,,,,,,,2.954123636,,,,,,,2.581737094,2.905791221,3.009601189,3.121058555,,,,,,,2.624789253,3.102608988,3.204325032,0.05082204,,,,,-5301.744,,,,,0.855730734,37831,44209,0.755062626,0.956398841,55147,,,49881.80851,60412.19149,23550,10995.2766,36104.7234,,,,37179,27784.10638,46573.89362,51299,40619.68085,61978.31915,52542,46878.85106,58205.14894,,,,,,0.671835097,3683,5482,,,42.07273722,,,,,0.257620542,,55147,,,4.732607667,10,2113,,,5.540300492,16,288793,3.166760432,8.997100898,,,,,,,,,,,,,,,,,,,18.46223729,41,209000,12.85962473,25.67650282,19.61722488,,,,,,,,,,,,,21.25426514,14.34016343,30.34178507,,,,17.70334928,37,209000,12.46479166,24.401735,,,,,,,,,,,,,18.74414246,12.73573539,26.60581401,,,,40.85971613,118,288793,33.48729029,48.23214197,,,,,,,61.7641382,35.30354161,100.3010909,,,,41.02671538,33.15376219,50.20630927,,,,33.78378378,,3700,,,55,70,0.718342644,23145,32220,,,0.533,,,,,16.12773627,,,,,0.796222608,14207,17843,0.775487814,0.816957403,0.09512761,1599,16809,0.074114302,0.116140919,0.764221263,13636,17843,0.731300279,0.797142248,45260,,,,,0.19317278,8743,45260,,,0.255722492,11574,45260,,,0.089858595,4067,45260,,,0.007733098,350,45260,,,0.009566947,433,45260,,,0.00101635,46,45260,,,0.098453381,4456,45260,,,0.77894388,35255,45260,,,0.021220159,872,41093,0.011854698,0.030585621,0.505258506,22868,45260,,,1,42915,42915,, -12,077,12077,FL,Liberty County,2024,1,11001.65733,158,23071,8347.332823,13655.98184,0,,,,2,,,,2,8975.128819,5319.230152,14184.57295,1,,,,2,12817.85619,9356.464232,16279.24814,,,,,2,,0.21,,,0.187,0.232,4.383582969,,,4.046243688,4.714914815,5.173491446,,,4.899015507,5.421664915,0.084942085,44,518,0.060932926,0.108951244,0,,,,,,,,,,,,,0.078886311,0.053437067,0.104335555,,,,,,,0.252,,,0.222,0.282,0.397,,,0.382,0.41,6.7,0.100695501,0.144,,,0.312,,,0.285,0.337,0.231502383,1846,7974,,,0.18915603,,,0.181400484,0.197595404,0.4,4,10,0.227273625,0.556899967,455.7,36,7900,,,36.84210526,49,1330,27.25599229,48.70721699,,,,,,,,,,,,,35.53299492,24.7500329,49.41779428,,,,,,,0.159966323,760,4751,0.138519514,0.181413131,,0,7900,,,,0.000263054,2,7603,,,3801.5,0.004998027,38,7603,,,200.0789474,4524,,,,,,,12213,,3916,0.26,,,,,,,,,0.28,0.19,,,,,,,0.04,,0.2,0.810369833,4470,5516,0.77695431,0.843785357,0.323912068,722,2229,0.252205686,0.395618451,0.031558935,83,2630,,,0.284,360,,0.179148936,0.388851064,,,,,,,,,,0.122807018,0,0.262215205,0.298701299,0.211114106,0.386288491,4.926428717,96893,19668,3.408015134,6.4448423,0.370344828,537,1450,0.23610472,0.504584935,8.860759494,7,7900,,,108.9140063,45,41317,79.44262359,145.7355096,,,,,,,,,,,,,122.3615785,85.70054525,169.4000017,,,,8,,,,,1,,,,,0.105367793,265,2515,0.059078227,0.15165736,0.079968013,0.033047917,0.126888109,0.011530815,0,0.028406495,0.013916501,0,0.037182106,0.798555377,1990,2492,0.748144113,0.848966641,,,,,,,,,,,,,0.767682927,0.632771358,0.902594495,0.534,,2492,0.411409698,0.656590302,73.73860462,,,71.60846638,75.86874287,,,,,,,,,,,,,72.68288086,70.18420009,75.18156163,,,,545.3390988,158,23071,458.5021901,632.1760075,,,,,,,537.0125925,336.5429327,813.0435186,,,,598.994266,492.3205213,705.6680106,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.138,,,0.126,0.149,0.171,,,0.16,0.182,0.12,,,0.112,0.127,157.3,11,6992,,,0.144,1150,,,,0.100695501,842.3178694,8365,,,,,,,,,,,,,,,,,,,,,,,,,,0.394,,,0.38,0.407,0.182730924,637,3486,0.155326668,0.210135179,0.098348348,131,1332,0.070944093,0.125752604,0.000789162,6,7603,,,1267.166667,0.825,70.95,86,,,,,,,,3.370035462,,,,,,,,,3.340582553,3.49979457,,,,,,,,,3.444805595,0.049396483,,,,,-4325.438,,,,,0.876903896,42201,48125,0.630541411,1.123266381,49514,,,42511.61702,56516.38298,,,,,,,,,,66042,29569.31915,102514.6809,52904,42751.31915,63056.68085,,,,,,0.513824885,669,1302,,,80.47599535,,,,,0.37155148,,49514,,,,,236,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,27.65773552,16,57850,15.80878557,44.91442973,,,,,,,,,,,,,33.92787902,18.54868718,56.92521598,,,,,,700,,,9,-888,0.53188947,3561,6695,,,0.314,,,,,9.20303707,,,,,0.806293421,1973,2447,0.748786532,0.863800309,0.108293941,252,2327,0.054208362,0.162379519,0.753984471,1845,2447,0.682665942,0.825302999,7603,,,,,0.172826516,1314,7603,,,0.168749178,1283,7603,,,0.174536367,1327,7603,,,0.013415757,102,7603,,,0.005261081,40,7603,,,0.000526108,4,7603,,,0.074707352,568,7603,,,0.718795212,5465,7603,,,0.006015239,45,7481,0,0.019404104,0.398658424,3031,7603,,,1,7974,7974,, -12,079,12079,FL,Madison County,2024,1,11545.18109,444,50787,9693.2153,13397.14689,0,,,,2,,,,2,13665.67014,10467.62762,16863.71265,,,,,2,10929.68221,8375.326157,13484.03827,,,,,2,,0.25,,,0.229,0.273,4.838207683,,,4.524452745,5.163994751,5.597952694,,,5.360658939,5.845639427,0.1367713,183,1338,0.118359832,0.155182769,0,,,,,,,0.197486535,0.164424972,0.230548098,,,,0.092753623,0.071108524,0.114398723,,,,,,,0.273,,,0.244,0.301,0.399,,,0.387,0.41,6.8,0.115819234,0.136,,,0.353,,,0.328,0.377,0.464993322,8355,17968,,,0.175169767,,,0.169002641,0.181277498,0.142857143,4,28,0.058576657,0.253079972,568.7,104,18288,,,25.2991453,74,2925,19.86527051,31.76076017,,,,,,,30.35019455,21.58195525,41.48971507,,,,23.79182156,16.27358834,33.58695322,,,,,,,0.165621987,2061,12444,0.144175178,0.187068795,0.000109361,2,18288,,,9144,0.000219804,4,18198,,,4549.5,0.000769315,14,18198,,,1299.857143,3104,,,,,,,3316,,3121,0.42,,,,,,,0.5,,0.4,0.33,,,,,,,0.29,,0.34,0.801736086,10991,13709,0.773200209,0.830271963,0.429096103,2103,4901,0.342009598,0.516182607,0.032814096,257,7832,,,0.323,1036,,0.216957447,0.429042553,,,,,,,0.474226804,0.351282725,0.597170883,0.888392857,0.630474812,1,0.109311741,0.02984951,0.188773972,5.193749655,94064,18111,4.11713714,6.27036217,0.377293935,1213,3215,0.285389558,0.469198311,10.93613298,20,18288,,,91.92568079,85,92466,73.42696884,113.6675279,,,,,,,72.83957811,47.13793441,107.5255862,,,,110.9987909,83.84729378,144.1411627,,,,8.3,,,,,1,,,,,0.180696662,1245,6890,0.13688699,0.224506334,0.158013544,0.110076363,0.205950725,0.031204644,0.014528153,0.047881136,0.003628447,0,0.010163524,0.802657807,4832,6020,0.763878613,0.841437002,,,,,,,0.817424728,0.706969164,0.927880292,,,,0.880799605,0.743750198,1,0.37,,6020,0.290374985,0.449625015,73.01072883,,,71.69350371,74.32795395,,,,,,,71.38770418,69.15708101,73.61832736,,,,73.24338516,71.44379448,75.04297584,,,,577.3268994,444,50787,520.0230802,634.6307186,,,,,,,677.5334488,573.0630577,782.0038398,,,,550.9579748,476.2387446,625.6772051,,,,79.24453543,12,15143,40.94680782,138.4242558,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.153,,,0.143,0.165,0.182,,,0.172,0.191,0.145,,,0.138,0.152,674.6,107,15862,,,0.136,2450,,,,0.115819234,2226.508951,19224,,,18.02191465,10,55488,8.642208579,33.14294269,,,,,,,,,,,,,,,,,,,0.403,,,0.391,0.414,0.196319018,1824,9291,0.168914763,0.223723274,0.076689906,253,3299,0.054051608,0.099328204,0.000934169,17,18198,,,1070.470588,0.875,147.875,169,,,,,,,,3.091962892,,,,,,,2.744585288,,3.455498527,3.244553737,,,,,,,2.915179054,,3.513250276,0.156905107,,,,,-10500.43,,,,,0.837297964,36677,43804,0.636175632,1.038420295,46141,,,39421,52861,38654,37134.85106,40173.14894,,,,28159,24041.21277,32276.78723,,,,55477,45755.6383,65198.3617,,,,,,0.538818565,1277,2370,,,41.67997422,,,,,0.381287792,,46141,,,11.93317422,10,838,,,10.84447474,14,129098,5.928775253,18.19518592,,,,,,,24.82159479,12.82568023,43.35833085,,,,,,,,,,16.14364014,15,92466,8.825878289,27.08628503,16.22217896,,,,,,,,,,,,,31.30339867,16.66774142,53.52976508,,,,16.22217896,15,92466,9.079430421,26.75601721,,,,,,,,,,,,,,,,,,,20.91434414,27,129098,13.78268457,30.42927268,,,,,,,,,,,,,24.13538531,14.05975136,38.64308992,,,,21.875,,1600,,,25,10,0.637444784,9380,14715,,,0.448,,,,,3.389984314,,,,,0.709397878,4748,6693,0.679911305,0.738884452,0.133753734,806,6026,0.085966634,0.181540833,0.692813387,4637,6693,0.647797918,0.737828856,18198,,,,,0.180514342,3285,18198,,,0.223760853,4072,18198,,,0.353225629,6428,18198,,,0.008737224,159,18198,,,0.005055501,92,18198,,,0.00049456,9,18198,,,0.068414111,1245,18198,,,0.55126937,10032,18198,,,0.008929093,153,17135,0.000810181,0.017048004,0.477415101,8688,18198,,,1,17968,17968,, -12,081,12081,FL,Manatee County,2024,1,8597.291558,6069,1067721,8226.968477,8967.61464,0,,,,2,2553.947834,1459.801857,4147.451276,1,12628.80563,11316.19943,13941.41183,,7526.188741,6789.951562,8262.42592,,8534.539443,8065.763342,9003.315544,,,,,2,,0.148,,,0.131,0.167,3.445437322,,,3.173365097,3.743935072,4.717566702,,,4.471305191,4.963645181,0.081442085,2006,24631,0.078026283,0.084857888,0,,,,0.09469697,0.069722048,0.119671892,0.144535519,0.133143419,0.15592762,0.071710975,0.065806375,0.077615574,0.068217419,0.063844216,0.072590621,,,,0.086142322,0.052487445,0.119797199,0.177,,,0.15,0.204,0.311,,,0.298,0.323,8.2,0.061415377,0.095,,,0.238,,,0.215,0.262,0.888636762,355197,399710,,,0.186600342,,,0.179802698,0.193429416,0.221183801,71,321,0.193318285,0.250083562,391.6,1616,412703,,,21.38070103,1442,67444,20.27714247,22.48425958,,,,,,,34.68066919,30.64714775,38.71419064,37.04665905,34.32733881,39.76597928,11.2730426,10.17240411,12.37368109,,,,15.19628535,10.64329144,21.03806437,0.164681073,48339,293531,0.150383201,0.178978945,0.000620301,256,412703,,,1612.121094,0.000589572,253,429125,,,1696.146245,0.001253714,538,429125,,,797.6301115,2355,,,,,,385,4420,2592,2223,0.48,,,,,,0.46,0.4,0.34,0.48,0.48,,,,,0.5,0.46,0.31,0.3,0.49,0.907023021,278047,306549,0.901157002,0.91288904,0.623943495,52561,84240,0.59492525,0.65296174,0.028552137,5328,186606,,,0.14,10004,,0.094723404,0.185276596,0.144144144,0,0.36057141,0.206714944,0.102250673,0.311179215,0.274598654,0.201235794,0.347961513,0.245052414,0.207754539,0.282350289,0.072936109,0.053564767,0.092307451,4.309910629,140335,32561,4.107899019,4.51192224,0.246174365,17535,71230,0.217276021,0.275072708,6.954153471,287,412703,,,97.87801461,1965,2007601,93.55028672,102.2057425,,,,31.83482275,17.40439383,53.4134232,88.67174425,74.528376,102.8151125,57.68521712,49.56776496,65.80266929,112.0052602,106.5015013,117.5090191,,,,8,,,,,0,,,,,0.163989491,24655,150345,0.152933647,0.175045335,0.138987163,0.12814956,0.149824766,0.023678872,0.019345454,0.02801229,0.009710998,0.007009319,0.012412677,0.728865657,125913,172752,0.715518306,0.742213008,,,,0.669401398,0.579029599,0.759773197,0.753890754,0.726856319,0.780925189,0.689491255,0.6489441,0.730038409,0.703893359,0.68570602,0.722080698,0.407,,172752,0.38706257,0.42693743,80.03319371,,,79.69702062,80.36936681,,,,92.11245023,87.84109966,96.3838008,73.81325648,72.67995146,74.94656151,83.12848346,81.61044892,84.64651801,80.12302834,79.72318937,80.52286732,,,,370.9460481,6069,1067721,360.3238593,381.5682369,,,,128.9435791,93.31710754,173.6861548,591.4371615,544.7747564,638.0995666,325.6249163,298.2510153,352.9988174,370.5264455,357.4934996,383.5593913,,,,52.72391186,168,318641,44.75114516,60.69667856,,,,,,,95.17607574,67.35225579,130.6366,60.69209563,46.20163522,78.28838144,40.47927461,31.24104955,51.59415842,,,,5.632992065,137,24321,4.689724443,6.576259686,,,,,,,11.0314396,7.881022185,15.02168973,7.910721853,5.975674274,10.27273033,2.735016019,1.905038869,3.803745204,,,,,,,0.108,,,0.098,0.119,0.155,,,0.144,0.166,0.096,,,0.089,0.102,328.8,1191,362232,,,0.095,37540,,,,0.061415377,19826.91052,322833,,,33.32857987,409,1227175,30.09851514,36.5586446,,,,,,,26.88430149,17.8644231,38.85530095,16.38727962,11.34866751,22.89958072,39.65272078,35.45627126,43.8491703,,,,0.35,,,0.335,0.363,0.191052601,42347,221651,0.17318026,0.208924941,0.086805785,6560,75571,0.065358977,0.108252594,0.001169822,502,429125,,,854.8306773,0.85,3023.45,3557,,,0.080786993,1277,15807,0.057319846,0.10425414,3.046073941,,,,,,3.519450671,2.533281176,2.653192051,3.55010348,3.147931897,,,,,,3.715404179,2.720800269,2.834545913,3.536057444,0.110625928,,,,,-3147.884,,,,,0.825821547,46943,56844,0.786928212,0.864714881,72176,,,67300.42553,77051.57447,51023,14399,87647,80075,50999.08511,109150.9149,50498,45172.04255,55823.95745,60274,53351.44681,67196.55319,75122,72986.85106,77257.14894,,,,,,0.480251632,24124,50232,,,56.32409294,,,,,0.245386278,,72176,,,5.754511425,103,17899,,,5.387974187,148,2746858,4.519912237,6.256036137,,,,,,,28.25378751,21.85147721,35.94574521,6.593841352,4.448837071,9.413118534,2.56349127,1.902672631,3.379643658,,,,15.07634053,351,2007601,13.32335121,16.82932985,17.48355375,,,,,,,6.154590644,2.95136544,11.31851132,6.364024681,3.831558584,9.938212865,17.9860212,15.58905833,20.38298407,,,,14.69415486,295,2007601,13.01732239,16.37098734,,,,,,,24.66366396,17.7753996,33.33810875,9.21774088,6.263007713,13.0838474,15.06544669,13.04693534,17.08395805,,,,15.69065456,431,2746858,14.20930178,17.17200734,,,,,,,18.83585834,13.6861635,25.28626065,18.02316636,14.33435907,22.37150167,15.48348727,13.73717711,17.22979743,,,,22.41982507,,34300,,,265,504,0.729712095,216958,297320,,,0.599,,,,,95.85791867,,,,,0.74857104,121011,161656,0.738371107,0.758770972,0.14364833,22721,158171,0.132729184,0.154567476,0.899150047,145353,161656,0.889440341,0.908859753,429125,,,,,0.171218177,73474,429125,,,0.289244393,124122,429125,,,0.083208855,35707,429125,,,0.005783863,2482,429125,,,0.025237402,10830,429125,,,0.001057967,454,429125,,,0.172809787,74157,429125,,,0.700089717,300426,429125,,,0.030478659,11806,387353,0.02647832,0.034478998,0.514435188,220757,429125,,,0.046914013,18752,399710,, -12,083,12083,FL,Marion County,2024,1,12220.823,8027,974051,11771.98395,12669.66206,0,,,,2,4420.518107,2802.229283,6632.947615,1,13617.89501,12415.04144,14820.74859,,8914.715567,7986.842088,9842.589047,,13200.55131,12605.22777,13795.87485,,,,,2,,0.178,,,0.16,0.198,3.94781779,,,3.686030925,4.227807106,5.171332868,,,4.937819955,5.406854296,0.089776475,2205,24561,0.086201374,0.093351576,0,,,,0.072639225,0.047607487,0.097670963,0.135310673,0.125446103,0.145175244,0.074167623,0.066384833,0.081950414,0.080976602,0.076573318,0.085379887,,,,0.070866142,0.045099838,0.096632445,0.208,,,0.181,0.236,0.382,,,0.369,0.394,7.2,0.118759551,0.114,,,0.279,,,0.254,0.303,0.686548304,258079,375908,,,0.175260569,,,0.168829251,0.181954732,0.286334056,132,461,0.263039922,0.309929591,372.1,1436,385915,,,26.63846435,1675,62879,25.36273705,27.91419166,,,,,,,36.06077247,32.50001015,39.62153479,21.73913044,19.33074456,24.14751631,26.72157,24.99012981,28.4530102,,,,24.07221665,17.74895227,31.91626689,0.164636126,43621,264954,0.149146764,0.180125487,0.000580439,224,385915,,,1722.834821,0.000416231,165,396415,,,2402.515152,0.001152832,457,396415,,,867.428884,3162,,,,,,3137,5165,4195,2969,0.47,,,,,,0.44,0.46,0.4,0.48,0.41,,,,,0.21,0.37,0.28,0.3,0.42,0.892427043,251585,281911,0.884631736,0.900222349,0.521744087,41187,78941,0.491439824,0.55204835,0.034448573,5108,148279,,,0.232,16645,,0.168851064,0.295148936,,,,0.158759124,0,0.329168988,0.323603422,0.263297709,0.383909136,0.284495401,0.234903221,0.33408758,0.150722492,0.125206513,0.176238471,4.387180317,108416,24712,4.18554649,4.588814145,0.317164816,22284,70260,0.280934481,0.353395152,6.581760232,254,385915,,,161.634328,2973,1839337,155.8241128,167.4445432,,,,47.18613357,26.40972076,77.82635148,109.3318177,95.83279372,122.8308417,84.00762178,72.90658808,95.10865549,192.2259293,184.6219261,199.8299325,,,,8.1,,,,,1,,,,,0.142871834,20840,145865,0.132566083,0.153177584,0.118899672,0.108819196,0.128980148,0.023377781,0.018699913,0.028055649,0.009735029,0.007298174,0.012171884,0.785224142,109739,139755,0.76620091,0.804247375,,,,0.756286267,0.643280794,0.86929174,0.798179152,0.747905327,0.848452977,0.764643749,0.716567223,0.812720274,0.775778127,0.759289253,0.792267,0.372,,139755,0.349741142,0.394258858,74.35814339,,,74.03260504,74.68368174,,,,82.68366081,80.49608116,84.87124045,72.80402321,71.89106373,73.7169827,77.6904739,76.7871863,78.59376149,73.66106322,73.25188039,74.07024606,,,,541.6436461,8027,974051,528.1618745,555.1254177,,,,210.548658,155.2419595,279.1569742,613.4288912,572.5439975,654.313785,394.3595114,363.71316,425.0058627,577.632667,560.3313284,594.9340055,,,,77.6492435,235,302643,67.72129835,87.57718865,,,,,,,105.5946298,79.76504852,137.12341,82.59027576,62.04435705,107.7623945,70.45161917,57.63073267,83.27250568,,,,7.895807896,194,24570,6.784711395,9.006904397,,,,,,,8.919091102,6.428096354,12.05602013,10.78960275,7.839741873,14.48453808,6.151788699,4.959209948,7.544622735,,,,,,,0.12,,,0.111,0.13,0.169,,,0.158,0.179,0.101,,,0.095,0.107,335.4,1124,335145,,,0.114,42130,,,,0.118759551,39344.8016,331298,,,44.35527957,499,1125007,40.46347414,48.247085,,,,,,,29.76738912,21.45371577,40.2368625,22.87558092,16.18812254,31.39852207,53.44190387,48.29391236,58.58989539,,,,0.377,,,0.363,0.39,0.199286026,38798,194685,0.179030707,0.219541345,0.071069089,5239,73717,0.052005259,0.090132918,0.00132437,525,396415,,,755.0761905,0.87,2596.08,2984,,,0.112193247,1751,15607,0.082871811,0.141514682,2.897735853,,,,,,3.764001471,2.532887252,2.824677778,3.072269676,2.912743985,,,,,,3.958851779,2.51890454,2.848350225,3.091353855,0.055842645,,,,,-2989.747,,,,,0.830221359,39306,47344,0.777154428,0.883288289,54517,,,51114.10638,57919.89362,54938,36726.08511,73149.91489,64097,54921.34043,73272.65957,46007,38830.65957,53183.34043,49681,44345.51064,55016.48936,57807,55976.87234,59637.12766,,,,,,0.627020948,26760,42678,,,49.45455106,,,,,0.274006273,,54517,,,3.961921532,72,18173,,,7.66310464,194,2531611,6.584754094,8.741455185,,,,,,,22.08257622,17.2144515,27.90000657,4.318050314,2.416779982,7.121967324,5.809916456,4.687879021,6.93195389,,,,20.97334793,417,1839337,18.72667075,23.22002511,22.67121251,,,,,,,7.71197494,4.570605109,12.18824524,13.71393365,9.605070532,18.98586479,25.68418993,22.50544213,28.86293772,,,,20.33341362,374,1839337,18.27263867,22.39418856,,,,,,,23.86210308,17.97620166,31.0598071,10.31002631,6.794372303,15.00054698,22.47203328,19.8721282,25.07193836,,,,24.41133334,618,2531611,22.48667638,26.3359903,,,,,,,28.39188371,22.83042731,34.89844532,24.18108176,19.28777783,29.93782462,24.19858407,21.90867952,26.48848862,,,,24.03174603,,31500,,,341,416,0.719671814,204376,283985,,,0.654,,,,,44.53421251,,,,,0.764671346,118521,154996,0.752037374,0.777305319,0.130731256,19517,149291,0.12017622,0.141286292,0.883293762,136907,154996,0.87212963,0.894457895,396415,,,,,0.185545451,73553,396415,,,0.289814967,114887,396415,,,0.124495794,49352,396415,,,0.005693528,2257,396415,,,0.018705145,7415,396415,,,0.000956069,379,396415,,,0.164393376,65168,396415,,,0.671763178,266297,396415,,,0.020633489,7436,360385,0.016353744,0.024913234,0.516945625,204925,396415,,,0.293452121,110311,375908,, -12,085,12085,FL,Martin County,2024,1,7385.33212,2176,404763,6817.100569,7953.563671,0,,,,2,,,,2,8925.70733,6688.37279,11163.04187,,5923.931583,4819.756571,7028.106596,,7884.742508,7155.290964,8614.194053,,,,,2,,0.134,,,0.118,0.152,3.320728578,,,2.993949362,3.629791143,4.671819834,,,4.417123599,4.951708859,0.070990459,625,8804,0.065625997,0.07635492,0,,,,,,,0.12836767,0.102267948,0.154467393,0.063325432,0.054541119,0.072109745,0.068944478,0.061862681,0.076026276,,,,,,,0.171,,,0.144,0.2,0.287,,,0.274,0.3,7.8,0.102407589,0.095,,,0.217,,,0.194,0.242,0.966995096,153202,158431,,,0.208778038,,,0.20124506,0.216458872,0.253968254,32,126,0.208533648,0.301124766,201.3,322,159942,,,14.82695384,380,25629,13.33616474,16.31774294,,,,,,,16.95873375,11.44198645,24.20964692,44.78854479,39.43616548,50.1409241,4.70304492,3.717561845,5.869612906,,,,,,,0.156950209,16713,106486,0.140269358,0.173631061,0.000694002,111,159942,,,1440.918919,0.000802439,130,162006,,,1246.2,0.002376455,385,162006,,,420.7948052,2486,,,,,,,3654,4391,2445,0.49,,,,,,0.36,0.41,0.37,0.5,0.48,,,,,,0.48,0.26,0.37,0.49,0.924073117,114452,123856,0.915730036,0.932416199,0.632327967,18617,29442,0.58577189,0.678884044,0.026964166,2052,76101,,,0.154,3861,,0.107531915,0.200468085,,,,0.012765957,0,0.213007285,0.486790607,0.351578333,0.622002881,0.301578734,0.232355704,0.370801765,0.108651631,0.073544812,0.143758449,4.646036417,151563,32622,4.258131363,5.033941472,0.235201943,6004,25527,0.198451807,0.27195208,9.003263683,144,159942,,,98.2752079,790,803865,91.42211693,105.1282989,,,,,,,63.01349943,41.16250991,92.32937661,44.93748403,33.45890849,59.08449249,111.7291647,103.4462338,120.0120955,,,,7.4,,,,,1,,,,,0.148219516,9615,64870,0.133273431,0.163165601,0.134118749,0.120260144,0.147977354,0.012563589,0.008563216,0.016563962,0.007861878,0.003689871,0.012033885,0.757791941,49818,65741,0.738109439,0.777474443,,,,0.793187348,0.70661203,0.879762666,0.766991794,0.676010479,0.85797311,0.740050984,0.666380221,0.813721748,0.771371889,0.744656882,0.798086895,0.398,,65741,0.368141362,0.427858638,80.68237981,,,80.18256746,81.18219216,,,,92.85481711,82.9841744,102.7254598,76.61315698,74.387491,78.83882296,82.3468294,80.43578985,84.25786895,80.33317312,79.72966737,80.93667888,,,,325.2759977,2176,404763,309.2713014,341.2806939,,,,,,,441.3625072,361.8454525,520.8795619,278.3873755,235.0924514,321.6822995,338.5364948,319.0430044,358.0299851,,,,44.4521921,51,114730,33.09757678,58.44642323,,,,,,,,,,54.11580783,32.0724574,85.5263071,41.76984814,27.75576074,60.36906039,,,,4.790145985,42,8768,3.452315891,6.47488581,,,,,,,,,,,,,,,,,,,,,,0.1,,,0.09,0.109,0.15,,,0.14,0.161,0.085,,,0.079,0.091,265.1,377,142226,,,0.095,14970,,,,0.102407589,14984.07357,146318,,,30.43289237,147,483030,25.51316956,35.35261518,,,,,,,,,,,,,36.28311501,30.18506218,42.38116784,,,,0.345,,,0.331,0.36,0.176196726,14230,80762,0.155941407,0.196452045,0.098717996,2672,27067,0.07369672,0.123739273,0.001888819,306,162006,,,529.4313726,0.94,1410.94,1501,,,0.047390841,267,5634,0.014893487,0.079888196,3.191424565,,,,,,3.626472642,2.856386064,2.811165605,3.468029054,3.312468955,,,,,,3.87893848,2.964855286,2.961341748,3.552867739,0.130259871,,,,,-1533.699,,,,,0.769680917,49980,64936,0.679663644,0.859698189,80678,,,74355.95745,87000.04255,,,,112790,81113.06383,144466.9362,34970,23891.53192,46048.46809,57758,45026.93617,70489.06383,80897,78031.46809,83762.53192,,,,,,0.449293343,8329,18538,,,65.94124153,,,,,0.232541709,,80678,,,8.605851979,55,6391,,,3.575102628,40,1118849,2.554105732,4.868275072,,,,,,,19.07933535,9.524335462,34.13820119,,,,2.973086704,1.942118944,4.356260873,,,,16.84691722,168,803865,13.87640372,19.81743072,20.89903155,,,,,,,,,,,,,18.6503913,14.96509121,22.33569138,,,,14.0570867,113,803865,11.46522292,16.64895048,,,,,,,,,,,,,15.82430229,12.86121205,19.26552024,,,,12.33410407,138,1118849,10.27620469,14.39200345,,,,,,,,,,19.99561387,13.5860495,28.38217778,11.89234682,9.606711344,14.17798229,,,,15.36585366,,12300,,,92,97,0.773775374,98726,127590,,,0.673,,,,,72.16583115,,,,,0.804088484,53652,66724,0.793240353,0.814936615,0.145215131,9440,65007,0.13060322,0.159827041,0.903917631,60313,66724,0.891273601,0.916561661,162006,,,,,0.157568238,25527,162006,,,0.326919991,52963,162006,,,0.050387023,8163,162006,,,0.010598373,1717,162006,,,0.01612286,2612,162006,,,0.001925855,312,162006,,,0.147050109,23823,162006,,,0.770971446,124902,162006,,,0.023489604,3596,153089,0.01734457,0.029634639,0.503567769,81581,162006,,,0.073224306,11601,158431,, -12,086,12086,FL,Miami-Dade County,2024,1,6147.542162,29130,7459657,6040.157383,6254.926941,0,,,,2,3277.449996,2674.333579,3880.566413,,12801.73297,12404.83553,13198.63041,,4750.444802,4636.109888,4864.779716,,6781.667234,6485.989786,7077.344683,,,,,2,,0.197,,,0.171,0.224,3.506674998,,,3.210860683,3.811490139,4.459802352,,,4.202821576,4.690935125,0.082161246,17361,211304,0.080990349,0.083332144,0,,,,0.085900068,0.075739698,0.096060439,0.139564491,0.136066532,0.14306245,0.07063581,0.069281495,0.071990124,0.063092964,0.060426427,0.065759502,,,,0.09400545,0.072892576,0.115118323,0.149,,,0.125,0.171,0.301,,,0.288,0.314,8.5,0.018187064,0.104,,,0.332,,,0.3,0.366,0.982615081,2654797,2701767,,,0.152358043,,,0.146708414,0.158082356,0.108371188,167,1541,0.097358739,0.119968312,528.8,14080,2662777,,,11.99327023,6380,531965,11.69897492,12.28756555,,,,,,,19.19717243,18.33418936,20.06015551,11.59622368,11.23649307,11.95595428,5.892704778,5.343341507,6.442068049,,,,2.873563218,1.571003751,4.821350805,0.1669612,360433,2158783,0.159812264,0.174110136,0.000828083,2205,2662777,,,1207.608617,0.000783892,2096,2673837,,,1275.685592,0.002152712,5756,2673837,,,464.5304031,3919,,,,,,1754,6005,4456,2322,0.28,,,,,,0.3,0.24,0.25,0.34,0.29,,,,,0.36,0.32,0.18,0.21,0.43,0.826683559,1586271,1918837,0.822783136,0.830583981,0.636809763,469232,736848,0.627067351,0.646552174,0.026318611,36086,1371121,,,0.173,89891,,0.146787234,0.199212766,0.136424731,0.024366433,0.24848303,0.062290454,0.032539774,0.092041133,0.334367307,0.311131121,0.357603492,0.177089795,0.16725845,0.186921139,0.107973157,0.094737852,0.121208463,5.430484951,134600,24786,5.300874232,5.56009567,0.307740055,166087,539699,0.294972708,0.320507402,5.389110692,1435,2662777,,,54.3513546,7392,13600397,53.1123142,55.59039499,,,,33.79536424,26.34514438,42.69840961,83.41055208,79.50140364,87.31970052,42.24021469,40.92524614,43.55518324,87.21207801,82.89942404,91.52473198,,,,7.7,,,,,1,,,,,0.292202394,263625,902200,0.286373764,0.298031025,0.242786882,0.236806263,0.2487675,0.062990468,0.060500424,0.065480512,0.009831523,0.008627743,0.011035303,0.726713389,958955,1319578,0.721973924,0.731452853,0.590365143,0.51841428,0.662316006,0.649340483,0.62304441,0.675636556,0.745650601,0.728932394,0.762368808,0.740227671,0.73503823,0.745417112,0.702933854,0.690939179,0.714928528,0.543,,1319578,0.534574898,0.551425102,80.18692971,,,80.07686845,80.29699096,104.1042734,81.71660977,126.4919369,87.23020867,85.79986001,88.66055733,73.37161951,73.05607597,73.68716306,81.97386482,81.84488103,82.10284861,78.52539861,78.25139821,78.79939902,,,,307.8824703,29130,7459657,304.2672142,311.4977265,,,,180.8323722,158.9334451,202.7312993,589.1787885,575.7814903,602.5760868,246.3203666,242.4676317,250.1731015,360.4180886,349.4931841,371.342993,,,,43.74306138,1067,2439244,41.11834104,46.36778171,,,,,,,88.11751977,79.42751954,96.80752001,35.87168845,32.89795535,38.84542154,26.3222923,21.36970924,32.0784432,,,,4.690777763,1004,214037,4.400620081,4.980935444,,,,,,,10.35333622,9.347472403,11.35920003,3.593249927,3.276380731,3.910119124,2.2743124,1.788890976,2.850870287,,,,,,,0.117,,,0.105,0.13,0.15,,,0.139,0.161,0.13,,,0.121,0.139,1189.5,27147,2282280,,,0.104,278950,,,,0.018187064,45402.82397,2496435,,,12.78592114,1034,8087020,12.00657961,13.56526268,,,,,,,17.47796963,15.14167386,19.81426539,8.658279704,7.886905694,9.429653714,30.16596852,26.88628706,33.44564997,,,,0.375,,,0.36,0.389,0.198887423,325527,1636740,0.189355508,0.208419338,0.069817061,38416,550238,0.059093657,0.080540465,0.002140744,5724,2673837,,,467.1273585,0.9,22853.7,25393,,,0.075140625,9618,128000,0.066136756,0.084144494,3.309531739,,,,,,3.82463539,2.946708557,3.366007713,3.792765043,3.40063518,,,,,,4.041802904,3.078939481,3.449013052,3.794602934,0.330951753,,,,,-3644.204,,,,,0.8680038,41113,47365,0.848882887,0.887124713,66952,,,65264.85106,68639.14894,77658,61451.3617,93864.6383,87246,76964.6383,97527.3617,47359,45466.91489,49251.08511,62704,61675.74468,63732.25532,94760,91276.08511,98243.91489,,,,,,0.73091665,240848,329515,,,70.98807819,,,,,0.233689808,,66952,,,7.216488107,1104,152983,,,8.065679146,1533,19006459,7.661916688,8.469441604,,,,,,,30.76060292,28.76853942,32.75266642,3.840211267,3.503601908,4.176820626,4.175697751,3.384485072,4.96691043,,,,8.444700289,1266,13600397,7.969412529,8.919988048,9.308551802,,,,5.240168711,2.61587334,9.376109308,6.034739412,4.949045849,7.120432976,7.267197887,6.739454345,7.79494143,18.11660526,16.17369408,20.05951645,,,,11.13202798,1514,13600397,10.57128039,11.69277558,,,,,,,32.66794064,30.22151205,35.11436923,6.2870148,5.779703485,6.794326114,12.99021404,11.3257882,14.65463988,,,,12.15902447,2311,19006459,11.66328348,12.65476546,,,,6.533363135,3.933511395,10.20265584,18.90635311,17.34460985,20.46809636,11.07516929,10.50352771,11.64681088,10.30265613,9.059850216,11.54546205,,,,5.841217606,,243100,,,536,884,0.716330221,1156816,1614920,,,0.615,,,,,309.072611,,,,,0.518685183,494141,952680,0.511996628,0.525373738,0.252118265,232359,921627,0.246636993,0.257599537,0.845472772,805465,952680,0.840301437,0.850644106,2673837,,,,,0.197810487,528913,2673837,,,0.171937556,459733,2673837,,,0.146790923,392495,2673837,,,0.00348862,9328,2673837,,,0.017213465,46026,2673837,,,0.000534812,1430,2673837,,,0.691172648,1848083,2673837,,,0.137537554,367753,2673837,,,0.205610583,522116,2539344,0.202049797,0.209171369,0.508537357,1359746,2673837,,,0.00863546,23331,2701767,, -12,087,12087,FL,Monroe County,2024,1,8014.113185,1282,208650,7253.897659,8774.328712,0,,,,2,,,,2,10037.92115,7203.385521,13617.57348,,4818.656648,3708.169847,5929.143448,,9225.537275,8144.317338,10306.75721,,,,,2,,0.136,,,0.12,0.153,3.233924357,,,2.947406036,3.516972475,4.461897614,,,4.244460169,4.688189241,0.063898408,317,4961,0.057092627,0.070704189,0,,,,,,,0.095854922,0.075087926,0.116621919,0.056532663,0.045187841,0.067877486,0.057620042,0.048287432,0.066952652,,,,,,,0.163,,,0.138,0.189,0.304,,,0.292,0.317,8,0.090901394,0.093,,,0.229,,,0.206,0.252,0.797005092,66051,82874,,,0.246901536,,,0.239108146,0.255214214,0.147727273,13,88,0.098074418,0.205042533,265.3,218,82170,,,11.36032625,117,10299,9.301811681,13.41884081,,,,,,,18.33740831,10.26330823,30.24476635,18.38235294,14.32994593,23.22499707,5.257009346,3.464402284,7.648672595,,,,,,,0.186581284,11538,61839,0.166325965,0.206836603,0.000657174,54,82170,,,1521.666667,0.000624174,51,81708,,,1602.117647,0.002411025,197,81708,,,414.7614213,2207,,,,,,,3280,2752,2105,0.37,,,,,,0.25,0.2,0.3,0.38,0.4,,,,,,0.36,0.19,0.24,0.42,0.92228189,59252,64245,0.912715799,0.93184798,0.612807982,12038,19644,0.56542957,0.660186394,0.018574155,915,49262,,,0.144,1795,,0.096340426,0.191659575,,,,0.05511811,0,0.794016254,0.443971631,0.267916464,0.620026799,0.194869584,0.133908289,0.255830879,0.053069373,0.028166457,0.077972289,4.526604649,164954,36441,4.15473135,4.898477947,0.236019031,3026,12821,0.188541909,0.283496153,11.31799927,93,82170,,,113.7736767,435,382338,103.0818174,124.465536,,,,,,,61.43512451,34.38477282,101.3278951,59.15992901,44.8071525,76.64854996,142.0443146,127.2471571,156.8414721,,,,7,,,,,0,,,,,0.248361031,8145,32795,0.228463392,0.26825867,0.207651959,0.185239583,0.230064336,0.048940387,0.037996999,0.059883775,0.009910047,0.006031469,0.013788625,0.676256144,29031,42929,0.655444877,0.697067411,,,,,,,0.719709025,0.677908656,0.761509394,0.708017848,0.656361395,0.7596743,0.656937017,0.625095131,0.688778903,0.226,,42929,0.202621291,0.24937871,80.64823612,,,79.8405454,81.45592683,,,,,,,75.50286765,72.50503425,78.50070104,86.39531339,84.02632322,88.76430356,79.21903769,78.23857121,80.19950416,,,,380.5532041,1282,208650,357.5723016,403.5341066,,,,,,,496.4423139,386.2617525,628.2795213,237.2481494,199.025779,275.4705198,426.1878476,395.4124186,456.9632766,,,,44.74882291,23,51398,28.36691513,67.14520584,,,,,,,,,,,,,,,,,,,4.031445273,20,4961,2.462511507,6.226240255,,,,,,,,,,,,,,,,,,,,,,0.098,,,0.089,0.107,0.147,,,0.137,0.157,0.092,,,0.086,0.098,727.9,531,72953,,,0.093,7640,,,,0.090901394,6643.982856,73090,,,39.94824098,92,230298,32.20392047,48.99297128,,,,,,,,,,,,,50.3555099,39.60780289,63.1210677,,,,0.344,,,0.33,0.358,0.206201961,10114,49049,0.181180685,0.231223238,0.113556404,1517,13359,0.081386191,0.145726617,0.001028051,84,81708,,,972.7142857,0.91,555.1,610,,,,,,,,3.309144608,,,,,,,3.031755776,3.169248226,3.557142566,3.289218869,,,,,,,2.884720584,3.125586785,3.560875163,0.092339006,,,,,287.0098,,,,,0.816167405,46999,57585,0.770797495,0.861537314,79459,,,74395.17021,84522.82979,40208,37661.78723,42754.21277,79191,53732.44681,104649.5532,59316,45095.57447,73536.42553,65459,58687.76596,72230.23404,89261,83117.68085,95404.31915,,,,,,0.291888223,2580,8839,,,53.87275706,,,,,0.219584943,,79459,,,8.736008736,32,3663,,,4.453541215,24,538897,2.85346789,6.626516309,,,,,,,,,,,,,3.935347857,2.151491293,6.60284501,,,,25.29109818,120,382338,20.39060847,30.19158788,31.38584185,,,,,,,,,,11.38452168,5.683112203,20.37005401,31.82905096,24.7900874,38.86801452,,,,19.35460247,74,382338,15.19752581,24.29793102,,,,,,,,,,,,,25.68032807,19.77698182,32.79320563,,,,18.18529329,98,538897,14.76370013,22.16204772,,,,,,,,,,18.16887974,11.64114408,27.03385286,18.83345046,14.59566542,23.91781634,,,,11.63265306,,4900,,,19,38,0.841506789,48029,57075,,,0.47,,,,,111.1845287,,,,,0.622048389,21391,34388,0.60784715,0.636249628,0.217332369,7215,33198,0.195106443,0.239558296,0.874520182,30073,34388,0.858144596,0.890895767,81708,,,,,0.155468253,12703,81708,,,0.243415577,19889,81708,,,0.06486513,5300,81708,,,0.005054585,413,81708,,,0.014735399,1204,81708,,,0.00170118,139,81708,,,0.26293631,21484,81708,,,0.639056151,52216,81708,,,0.06147384,4815,78326,0.050499136,0.072448544,0.479598081,39187,81708,,,0.131126771,10867,82874,, -12,089,12089,FL,Nassau County,2024,1,9348.599562,1568,249943,8578.667795,10118.53133,0,,,,2,,,,2,12938.18796,9421.392079,16454.98385,,6424.142396,3742.299683,10285.67429,1,9344.394743,8510.542889,10178.2466,,,,,2,,0.133,,,0.115,0.153,3.274924371,,,2.991013695,3.623792344,5.403259058,,,5.047602086,5.732679309,0.08180415,477,5831,0.074769543,0.088838758,0,,,,,,,0.168115942,0.128653644,0.20757824,0.078873239,0.050833987,0.106912492,0.075574365,0.068219903,0.082928828,,,,,,,0.178,,,0.146,0.213,0.305,,,0.29,0.32,7.5,0.121279659,0.097,,,0.215,,,0.191,0.24,0.823114043,74370,90352,,,0.203894473,,,0.195821604,0.212710799,0.278481013,22,79,0.220437656,0.338300691,267.5,252,94189,,,19.45403201,310,15935,17.28839906,21.61966495,,,,,,,13.27014218,7.254910215,22.26504372,21.22015915,13.59615637,31.57391476,20.21055867,17.76793526,22.65318209,,,,,,,0.111851709,8122,72614,0.097553837,0.126149581,0.00038221,36,94189,,,2616.361111,0.000296224,29,97899,,,3375.827586,0.001378972,135,97899,,,725.1777778,2536,,,,,,,5844,,2431,0.49,,,,,,0.4,0.51,0.36,0.49,0.49,,,,,,0.52,0.42,0.39,0.49,0.91833606,62299,67839,0.905815268,0.930856852,0.623876269,12908,20690,0.565085909,0.682666629,0.025476995,1139,44707,,,0.102,1877,,0.062680851,0.141319149,,,,,,,0.259305211,0.044417636,0.474192786,0.160589604,0,0.321668574,0.122230114,0.086211823,0.158248404,3.902814345,152682,39121,3.533819024,4.271809667,0.20622938,3688,17883,0.157642345,0.254816415,9.449086411,89,94189,,,99.66552161,441,442480,90.36340626,108.967637,,,,,,,108.6323957,72.18543804,157.004058,,,,105.0551932,94.78542665,115.3249597,,,,8.4,,,,,0,,,,,0.116355489,3895,33475,0.096647597,0.136063381,0.102611321,0.084218235,0.121004407,0.014339059,0.007070909,0.021607209,0.00403286,0.001120978,0.006944742,0.813076867,33563,41279,0.788584424,0.83756931,,,,,,,0.8611198,0.78075949,0.94148011,0.696337506,0.584646522,0.808028489,0.750325857,0.712402943,0.788248772,0.54,,41279,0.496043892,0.583956108,76.92012742,,,76.29642026,77.54383459,,,,,,,73.15704799,70.63883476,75.67526122,80.43907452,77.03257618,83.84557286,76.8591305,76.19240188,77.52585913,,,,421.0383742,1568,249943,397.8939031,444.1828454,,,,,,,543.4152554,433.4753098,653.3552011,238.7222059,159.8760079,342.8449085,424.6750662,399.6742818,449.6758507,,,,63.40415621,49,77282,46.90674381,83.82365699,,,,,,,,,,,,,63.61323155,45.44622526,86.62316629,,,,5.16973979,30,5803,3.488001727,7.380125003,,,,,,,,,,,,,5.055611729,3.271725348,7.463080222,,,,,,,0.101,,,0.09,0.112,0.162,,,0.149,0.175,0.087,,,0.081,0.094,177.2,144,81248,,,0.097,8570,,,,0.121279659,8891.496936,73314,,,30.66510421,84,273927,24.45968807,37.96548561,,,,,,,,,,,,,32.63195813,25.75263105,40.78434874,,,,0.317,,,0.302,0.333,0.126050887,6807,54002,0.108178547,0.143923227,0.073270779,1429,19503,0.05301546,0.093526098,0.000888671,87,97899,,,1125.275862,0.94,883.6,940,,,,,,,,3.567806816,,,,,,,3.325857773,3.537766664,3.602798704,3.633744278,,,,,,,3.370966392,3.268443901,3.682424166,0.037209357,,,,,-117.4854,,,,,0.72647003,45910,63196,0.656042484,0.796897575,90808,,,86190.97872,95425.02128,100972,69166.38298,132777.617,98630,57727.3617,139532.6383,57076,32524.17021,81627.82979,74196,57117.19149,91274.80851,86694,81426.42553,91961.57447,,,,,,0.378970339,4689,12373,,,45.96897477,,,,,0.214683728,,90808,,,5.429864253,24,4420,,,5.818341407,35,601546,4.052687974,8.091904421,,,,,,,,,,,,,5.754744307,3.882701818,8.215255327,,,,19.04415763,86,442480,15.02935139,23.80192949,19.43590671,,,,,,,,,,,,,19.55171969,15.18267537,24.78646353,,,,16.04592298,71,442480,12.53199897,20.23974849,,,,,,,,,,,,,17.50919886,13.56938862,22.23606363,,,,21.61098237,130,601546,17.89598163,25.32598311,,,,,,,,,,,,,23.59445166,19.42466914,27.76423418,,,,8.313253012,,8300,,,34,35,0.869727891,58811,67620,,,0.63,,,,,30.42224761,,,,,0.826480625,30031,36336,0.803396824,0.849564427,0.110019203,3896,35412,0.089825488,0.130212917,0.926739322,33674,36336,0.90883288,0.944645764,97899,,,,,0.191758854,18773,97899,,,0.239542794,23451,97899,,,0.060971001,5969,97899,,,0.004811081,471,97899,,,0.011981736,1173,97899,,,0.001092963,107,97899,,,0.055404039,5424,97899,,,0.850876924,83300,97899,,,0.004464952,389,87123,0.001539213,0.00739069,0.505347348,49473,97899,,,0.437699221,39547,90352,, -12,091,12091,FL,Okaloosa County,2024,1,8863.53006,3125,594895,8407.553612,9319.506508,0,,,,2,3924.618949,2459.537801,5941.920253,1,11909.93033,10254.67833,13565.18232,,7224.530913,5911.830491,8537.231335,,8832.784935,8299.459421,9366.110449,,,,,2,,0.143,,,0.126,0.161,3.34506745,,,3.082916286,3.624942459,4.645522626,,,4.399161819,4.913768782,0.084695076,1586,18726,0.080707165,0.088682988,0,,,,0.084033613,0.061740852,0.106326375,0.134466019,0.119733711,0.149198328,0.07751938,0.067449244,0.087589516,0.077130614,0.072472396,0.081788833,,,,0.10906298,0.085117268,0.133008692,0.179,,,0.152,0.208,0.316,,,0.302,0.33,7.5,0.111042411,0.104,,,0.228,,,0.206,0.251,0.774987244,164040,211668,,,0.193251551,,,0.185802087,0.201064117,0.219251337,41,187,0.182568943,0.257734406,486.3,1037,213255,,,20.73391032,769,37089,19.26844982,22.19937083,,,,,,,27.04626335,22.08135863,32.01116806,30.68516183,25.70769859,35.66262508,18.92483782,17.19161061,20.65806503,,,,15.05916099,10.85331866,20.35561089,0.139192929,24442,175598,0.123703568,0.154682291,0.000698694,149,213255,,,1431.241611,0.000822239,178,216482,,,1216.191011,0.002064837,447,216482,,,484.2997763,2802,,,,,,2145,3411,4373,2739,0.41,,,,,,0.34,0.41,0.36,0.41,0.34,,,,,0.42,0.27,0.26,0.29,0.35,0.930221568,135817,146005,0.922874687,0.937568448,0.698352597,42052,60216,0.665733772,0.730971422,0.024379621,2519,103324,,,0.126,5934,,0.080723404,0.171276596,,,,0.095631641,0.002339829,0.188923453,0.235347569,0.141728235,0.328966904,0.221483302,0.14969297,0.293273634,0.113047999,0.085888465,0.140207533,4.040461933,141699,35070,3.842843917,4.23807995,0.237944848,11226,47179,0.203157991,0.272731705,9.097090338,194,213255,,,94.07364677,985,1047052,88.19867295,99.9486206,,,,40.64024009,21.63921624,69.49604826,89.7533263,72.2637796,110.1971959,54.70673284,41.32487807,71.04124302,104.7439861,97.48559814,112.002374,,,,9.1,,,,,0,,,,,0.139521676,11055,79235,0.125833234,0.153210118,0.12137589,0.10847038,0.134281401,0.018552407,0.013653768,0.023451047,0.006562756,0.004162165,0.008963347,0.771216265,80643,104566,0.759265436,0.783167095,,,,0.706837607,0.663727763,0.74994745,0.794374045,0.724191873,0.864556218,0.684970306,0.636379821,0.733560791,0.808991919,0.79386203,0.824121808,0.349,,104566,0.326205466,0.371794534,76.49088827,,,76.10548633,76.87629022,,,,85.43251952,82.59930017,88.26573887,73.39024566,71.9982875,74.78220381,82.11850415,79.42797644,84.80903186,76.30131621,75.87164862,76.7309838,,,,424.6255827,3125,594895,409.058734,440.1924314,,,,217.186929,162.6879135,284.0858506,540.5741662,479.777646,601.3706863,299.9963247,248.2121566,351.7804928,434.2267921,416.2393968,452.2141874,,,,59.41683834,122,205329,48.87331668,69.96036001,,,,,,,108.0205239,69.2107879,160.7259771,81.55775308,52.25559131,121.3514718,47.11174602,36.12030553,60.3951322,,,,5.693199789,108,18970,4.619456115,6.766943463,,,,,,,10.2739726,6.359750971,15.70485848,,,,4.803967147,3.683174065,6.158469075,,,,,,,0.102,,,0.092,0.112,0.157,,,0.146,0.167,0.091,,,0.085,0.097,260.3,465,178647,,,0.104,21660,,,,0.111042411,20078.91084,180822,,,32.50561782,207,636813,28.07739645,36.93383919,,,,,,,33.83331454,20.94335495,51.71781523,,,,36.98464813,31.44120614,42.52809012,,,,0.354,,,0.339,0.369,0.16315707,20827,127650,0.14409324,0.1822209,0.077569269,3869,49878,0.05731395,0.097824588,0.00156595,339,216482,,,638.5899705,0.92,1978.92,2151,,,0.047948744,464,9677,0.024277042,0.071620447,3.425692605,,,,,,3.627025275,2.993957643,3.255206626,3.528020155,3.517297022,,,,,,3.887768458,3.006058277,3.35555982,3.629989458,0.053579169,,,,,-1024.977,,,,,0.751074386,42993,57242,0.708820526,0.793328246,76663,,,71676.61702,81649.38298,55658,48874.85106,62441.14894,63087,58262.65957,67911.34043,49446,43631.53192,55260.46809,59801,53857.85106,65744.14894,79948,76995.48936,82900.51064,,,,,,0.406972068,13157,32329,,,37.7441301,,,,,0.221149707,,76663,,,4.049493813,54,13335,,,5.943799304,86,1446886,4.754272226,7.340543787,,,,,,,23.62323094,16.26114521,33.17579927,,,,3.863547057,2.772548072,5.24133784,,,,20.00269885,213,1047052,17.23986595,22.76553175,20.3428292,,,,,,,11.64840834,5.814843476,20.84222015,12.55379166,6.684365344,21.46736607,22.31093762,18.89192668,25.72994856,,,,16.71359207,175,1047052,14.23727161,19.18991252,,,,,,,24.65750723,15.95703858,36.3993448,13.67668321,7.477169978,22.94715048,17.02089774,14.09494802,19.94684745,,,,16.17266322,234,1446886,14.10047269,18.24485376,,,,,,,12.8853987,7.636703901,20.36448517,11.67763878,6.674779551,18.96375378,18.28117388,15.70865076,20.85369699,,,,23.86138614,,20200,,,267,215,0.750285291,116373,155105,,,0.605,,,,,84.84425151,,,,,0.672366621,56031,83334,0.656338663,0.688394579,0.133502994,10859,81339,0.119712562,0.147293425,0.904252766,75355,83334,0.893293908,0.915211624,216482,,,,,0.222364908,48138,216482,,,0.167362645,36231,216482,,,0.097888046,21191,216482,,,0.007691171,1665,216482,,,0.032626269,7063,216482,,,0.002457479,532,216482,,,0.105412921,22820,216482,,,0.718013507,155437,216482,,,0.018246412,3626,198724,0.013551806,0.022941018,0.490354856,106153,216482,,,0.106411928,22524,211668,, -12,093,12093,FL,Okeechobee County,2024,1,12221.79106,895,113115,11015.55248,13428.02965,0,,,,2,,,,2,11358.88874,7200.561086,17043.91028,1,8623.989571,6728.681064,10519.29808,,14465.45798,12686.78567,16244.13028,,,,,2,,0.206,,,0.186,0.226,4.18809633,,,3.90582464,4.505159,5.457388378,,,5.207897613,5.6980859,0.072266158,265,3667,0.063885467,0.080646848,0,,,,,,,0.154929578,0.106335886,0.203523269,0.064341085,0.050951591,0.07773058,0.069664032,0.058572921,0.080755142,,,,,,,0.237,,,0.21,0.263,0.339,,,0.328,0.35,5.3,0.272912796,0.128,,,0.328,,,0.304,0.353,0.694152961,27519,39644,,,0.166758709,,,0.160777935,0.173402382,0.3875,31,80,0.33204048,0.441934162,422.2,170,40266,,,42.16303038,315,7471,37.50681982,46.81924095,,,,,,,24.87562189,13.92269674,41.02855534,43.25613079,35.73294338,50.7793182,42.5,35.76559415,49.23440586,,,,85.27131783,42.56713463,152.573942,0.205307263,6027,29356,0.182668965,0.22794556,0.000422192,17,40266,,,2368.588235,0.000445412,18,40412,,,2245.111111,0.000816589,33,40412,,,1224.606061,4750,,,,,13380,,1300,1502,4909,0.41,,,,,0.55,,0.32,0.34,0.41,0.32,,,,,0.41,0.45,0.15,0.26,0.33,0.798991253,22653,28352,0.776296872,0.821685634,0.463493621,4723,10190,0.396911386,0.530075856,0.030659577,542,17678,,,0.258,2164,,0.166255319,0.349744681,,,,0.6328125,0.145853571,1,0.685908319,0.490842798,0.88097384,0.330220977,0.244456866,0.415985088,0.263118627,0.176205329,0.350031926,4.26392392,103123,24185,3.773799613,4.754048227,0.262073098,2187,8345,0.199876046,0.32427015,7.202105995,29,40266,,,115.4551096,240,207873,100.8480229,130.0621964,,,,,,,85.41168432,47.80427134,140.8735843,64.60186792,44.99756802,89.84555976,141.6376079,121.1719484,162.1032673,,,,7.2,,,,,0,,,,,0.136986301,2000,14600,0.109669448,0.164303155,0.091352859,0.067684752,0.115020966,0.038013699,0.022306597,0.0537208,0.012328767,0.002522642,0.022134892,0.73215824,11049,15091,0.694816072,0.769500408,,,,,,,,,,0.564252932,0.470669654,0.65783621,0.776936137,0.73835476,0.815517514,0.37,,15091,0.316794963,0.423205037,73.92309242,,,72.9820765,74.86410834,,,,,,,72.32427263,68.50604678,76.14249849,77.77360117,75.00980135,80.53740099,72.36673566,71.14538334,73.58808798,,,,590.8376507,895,113115,550.3512852,631.3240162,,,,,,,561.0698992,417.7533928,737.7032997,413.4146336,334.0018062,492.827461,676.7612026,621.2498627,732.2725425,,,,64.10585158,25,38998,41.48592709,94.63288296,,,,,,,,,,,,,69.41478001,36.96044688,118.7013879,,,,5.734571273,21,3662,3.549790001,8.765901348,,,,,,,,,,,,,,,,,,,,,,0.131,,,0.121,0.141,0.173,,,0.164,0.183,0.114,,,0.108,0.121,316.9,108,34082,,,0.128,5080,,,,0.272912796,10915.42019,39996,,,32.06901252,40,124731,22.91057271,43.66889303,,,,,,,,,,,,,43.96400124,30.4463489,61.43528511,,,,0.351,,,0.339,0.362,0.24720591,5220,21116,0.217418676,0.276993144,0.099313874,854,8599,0.070718129,0.127909618,0.001039295,42,40412,,,962.1904762,0.85,371.45,437,,,0.224840452,458,2037,0.107109487,0.342571417,3.125195071,,,,,,,2.959931683,3.015756982,3.289873647,3.328390125,,,,,,,3.019469526,3.342420167,3.413039223,0.015553779,,,,,-9246.418,,,,,0.88593365,40271,45456,0.74760592,1.02426138,50176,,,45026.38298,55325.61702,,,,93542,4003.957447,183080.0426,39522,22870.93617,56173.06383,47781,39970.78723,55591.21277,51911,46776.87234,57045.12766,,,,,,0.615024207,3938,6403,,,54.47400835,,,,,0.336933992,,50176,,,4.214075011,10,2373,,,6.952749117,20,287656,4.246919788,10.73795711,,,,,,,,,,,,,7.207247164,3.837555574,12.32461215,,,,17.85082718,38,207873,12.5024999,24.71306918,18.28039236,,,,,,,,,,,,,25.31912723,16.82437617,36.59318836,,,,13.95082575,29,207873,9.343086951,20.03571288,,,,,,,,,,,,,19.2442402,12.45385758,28.4082948,,,,35.4590205,102,287656,28.57752674,42.34051425,,,,,,,,,,30.85633024,19.56026649,46.29964568,37.69944671,29.2750955,47.79303179,,,,29.48717949,,3900,,,74,41,0.529505476,15954,30130,,,0.482,,,,,31.76076703,,,,,0.744084724,11101,14919,0.717670656,0.770498792,0.12761595,1805,14144,0.097212883,0.158019017,0.805482941,12017,14919,0.768942083,0.842023799,40412,,,,,0.217509651,8790,40412,,,0.206052658,8327,40412,,,0.076957339,3110,40412,,,0.015911116,643,40412,,,0.009353657,378,40412,,,0.001534198,62,40412,,,0.275066812,11116,40412,,,0.616673265,24921,40412,,,0.041262978,1546,37467,0.030201647,0.052324309,0.467583886,18896,40412,,,0.364468772,14449,39644,, -12,095,12095,FL,Orange County,2024,1,6829.050921,14894,4012928,6675.350059,6982.751784,0,5177.185548,2897.631451,8538.98024,1,3182.590282,2761.1481,3604.032463,,10141.32408,9727.150139,10555.49801,,5412.270531,5177.035248,5647.505813,,6784.061725,6539.179087,7028.944363,,,,,2,,0.165,,,0.149,0.182,3.537658227,,,3.313297911,3.782315594,4.583601935,,,4.385335886,4.782181987,0.088735163,10249,115501,0.087095202,0.090375123,0,,,,0.094867807,0.087317845,0.102417769,0.132408041,0.128616189,0.136199893,0.077128919,0.074584229,0.07967361,0.062804271,0.060267053,0.065341488,,,,0.097370291,0.081879377,0.112861206,0.159,,,0.138,0.179,0.304,,,0.294,0.314,8,0.071800616,0.102,,,0.257,,,0.236,0.277,0.916240765,1310140,1429908,,,0.162407119,,,0.157790566,0.167488422,0.21012931,195,928,0.193949315,0.226713678,746.2,10617,1422746,,,13.667856,4344,317826,13.26140185,14.07431014,,,,1.14768952,0.690984063,1.792259352,22.27447627,21.17018387,23.37876867,18.5682786,17.77029117,19.36626602,5.644807143,5.199394441,6.090219846,,,,6.455266138,4.889155534,8.363546025,0.149908088,180795,1206039,0.140376173,0.159440002,0.000925675,1317,1422746,,,1080.29309,0.000521778,758,1452726,,,1916.525066,0.00288561,4192,1452726,,,346.5472328,3865,,,,,,2459,6480,3982,3344,0.35,,,,,,0.36,0.33,0.29,0.37,0.4,,,,,0.33,0.39,0.28,0.27,0.44,0.894416213,864032,966029,0.889937092,0.898895335,0.697133072,306970,440332,0.681586052,0.712680093,0.028785204,22810,792421,,,0.163,49216,,0.130829787,0.195170213,0.54107425,0.302229524,0.779918975,0.100632767,0.05933345,0.141932083,0.278841932,0.250334047,0.307349817,0.214472484,0.199032108,0.229912859,0.084315652,0.072310243,0.096321061,4.433994688,141910,32005,4.289561384,4.578427993,0.266569743,81959,307458,0.251475018,0.281664468,7.23952132,1030,1422746,,,68.91874121,4790,6950214,66.96698463,70.87049778,,,,31.25366254,25.66167279,36.84565229,69.48648846,65.13372477,73.83925216,52.94193223,49.94020029,55.94366417,89.3057218,85.77011711,92.84132648,,,,6.5,,,,,1,,,,,0.200907974,94040,468075,0.193111989,0.20870396,0.170967321,0.163995315,0.177939326,0.034631202,0.031162884,0.03809952,0.007477434,0.005097385,0.009857484,0.724572647,520091,717790,0.718185114,0.730960179,0.68960539,0.567873889,0.811336891,0.727332537,0.692825484,0.761839591,0.756108177,0.741327532,0.770888821,0.74330434,0.728530454,0.758078225,0.781296997,0.772743051,0.789850943,0.455,,717790,0.441156145,0.468843855,79.29779489,,,79.13278361,79.46280618,98.08346944,77.9930208,118.1739181,88.19598733,86.94343644,89.44853822,75.994574,75.58900887,76.40013912,82.00628422,81.65253182,82.36003661,78.61609574,78.38553504,78.84665644,,,,333.9545044,14894,4012928,328.5382131,339.3707957,279.7441709,185.88797,404.3082151,167.6523089,151.9817408,183.3228769,468.6472599,453.7700655,483.5244543,259.7753441,250.8499419,268.7007462,349.4496081,341.0712411,357.8279752,,,,52.37162966,722,1378609,48.551452,56.19180733,,,,15.93523919,7.641566587,29.30547223,94.66875248,84.04414717,105.2933578,44.85450564,39.05757334,50.65143793,37.09718061,31.33086494,42.86349629,,,,6.256111174,723,115567,5.800083309,6.712139039,,,,,,,10.59335803,9.443402828,11.74331323,5.117384556,4.426885804,5.807883307,3.984614959,3.333794516,4.635435402,,,,,,,0.106,,,0.098,0.115,0.149,,,0.14,0.158,0.109,,,0.104,0.115,776.1,9353,1205169,,,0.102,143600,,,,0.071800616,82280.34693,1145956,,,25.04386823,1057,4220594,23.53406626,26.5536702,,,,4.708259143,2.350346,8.424376161,14.38934767,11.84635785,16.93233749,20.47409054,18.09285958,22.85532151,38.07729084,35.09917017,41.05541151,,,,0.353,,,0.341,0.364,0.179016896,162238,906272,0.167102002,0.190931789,0.065009961,20494,315244,0.051903578,0.078116344,0.001848938,2686,1452726,,,540.8510797,0.904017941,14512.2,16053,,,0.04564024,3575,78330,0.037316951,0.053963529,3.152390922,,,,,,3.786241414,2.815774152,3.012603276,3.635211226,3.29552377,,,,,,4.120963233,2.9576158,3.168221212,3.725180002,0.153470511,,,,,-4576.551,,,,,0.830954792,45125,54305,0.804266705,0.85764288,72129,,,69923.55319,74334.44681,51508,42283.48936,60732.51064,93009,83636.74468,102381.2553,54759,52274.74468,57243.25532,61744,59383.65957,64104.34043,91521,89192.82979,93849.17021,,,,,,0.442218741,95414,215762,,,52.7937176,,,,,0.241262183,,72129,,,4.173112206,348,83391,,,7.537130575,720,9552707,6.986581722,8.087679428,,,,2.666372096,1.457730437,4.473719308,21.30710835,19.24964562,23.36457109,5.587367029,4.74744531,6.427288748,3.047978305,2.495678345,3.600278265,,,,9.768785153,708,6950214,9.04014479,10.49742552,10.1867367,,,,6.796644014,4.516320588,9.823042967,6.435968893,5.194657533,7.884496704,6.696966224,5.614313489,7.77961896,13.77078787,12.42064927,15.12092647,,,,11.38094453,791,6950214,10.58781132,12.17407774,,,,4.167155005,2.381889142,6.767198656,21.6479867,19.21844888,24.07752452,7.575791139,6.440294092,8.711288185,10.78518713,9.556509642,12.01386462,,,,12.23736895,1169,9552707,11.5358541,12.9388838,,,,5.523199342,3.698973283,7.93223557,16.91122435,15.07824637,18.74420232,12.22647373,10.98400399,13.46894347,11.07171606,10.01908412,12.12434801,,,,14.52135493,,135800,,,940,1032,0.689063797,647403,939540,,,0.629,,,,,168.0228036,,,,,0.569673449,279925,491378,0.560220553,0.579126345,0.18036836,86169,477739,0.173726827,0.187009893,0.920265051,452198,491378,0.915829572,0.924700529,1452726,,,,,0.211143051,306733,1452726,,,0.13182183,191501,1452726,,,0.200866509,291804,1452726,,,0.006170469,8964,1452726,,,0.058818387,85447,1452726,,,0.002076785,3017,1452726,,,0.333588027,484612,1452726,,,0.385943392,560670,1452726,,,0.072368367,97361,1345353,0.06834469,0.076392045,0.5066654,736046,1452726,,,0.023477035,33570,1429908,, -12,097,12097,FL,Osceola County,2024,1,7240.356641,4658,1101706,6947.403889,7533.309392,0,,,,2,4302.567185,3021.753669,5583.380701,,9598.190657,8489.538414,10706.8429,,6101.872176,5745.377765,6458.366587,,8899.607099,8284.826904,9514.387294,,,,,2,,0.188,,,0.17,0.208,3.774046639,,,3.529366575,4.032359258,4.23500153,,,4.020455134,4.42579514,0.082427793,2617,31749,0.079402635,0.085452951,0,,,,0.11789925,0.097205944,0.138592555,0.121351351,0.11082967,0.131873033,0.077189063,0.073373712,0.081004414,0.070403023,0.064775868,0.076030177,,,,0.120805369,0.083802656,0.157808083,0.17,,,0.15,0.19,0.354,,,0.341,0.365,7,0.148817392,0.108,,,0.326,,,0.301,0.352,0.734575048,285497,388656,,,0.163227069,,,0.157668084,0.16888392,0.22611465,71,314,0.197881682,0.255349086,460.7,1858,403282,,,15.62482474,1393,89153,14.80429247,16.44535701,,,,,,,15.94408649,13.3577842,18.53038879,17.17463222,16.09712893,18.25213552,12.45356078,10.87136166,14.03575989,,,,12.6165661,7.997820646,18.93104383,0.152697651,52486,343725,0.138399778,0.166995523,0.000411623,166,403282,,,2429.409639,0.000295827,125,422545,,,3380.36,0.001782059,753,422545,,,561.1487384,4022,,,,,17647,1628,4529,4936,3771,0.36,,,,,,0.3,0.36,0.31,0.38,0.37,,,,,0.42,0.44,0.27,0.25,0.42,0.876978475,229664,261881,0.86666851,0.88728844,0.618192185,70477,114005,0.587698261,0.648686108,0.033876149,6686,197366,,,0.184,18157,,0.141106383,0.226893617,,,,0.135072194,0.054085725,0.216058663,0.204613842,0.123886403,0.28534128,0.216680637,0.19058539,0.242775885,0.097222222,0.06934221,0.125102234,4.005591136,118209,29511,3.74432264,4.266859631,0.246282999,23323,94700,0.212459737,0.280106261,4.240209085,171,403282,,,68.34638884,1288,1884518,64.6137694,72.07900827,,,,38.98407501,23.81248579,60.20774205,61.93464265,50.56524957,73.30403573,51.17863928,46.84185405,55.51542451,106.6942308,98.22023271,115.1682289,,,,8.3,,,,,1,,,,,0.208682962,22880,109640,0.190746512,0.226619413,0.183266932,0.165620067,0.200913798,0.033929223,0.027114858,0.040743588,0.005198833,0.002511855,0.00788581,0.734728356,137428,187046,0.720995524,0.748461187,,,,0.683557184,0.608107911,0.759006456,0.73220533,0.670220624,0.794190037,0.676527177,0.644327622,0.708726732,0.723943004,0.697758389,0.750127619,0.623,,187046,0.594404255,0.651595745,78.09896842,,,77.80511817,78.39281868,,,,86.33446048,82.83277006,89.8361509,75.89230282,74.91497469,76.86963096,79.74034989,79.30069693,80.18000285,76.05628687,75.55681541,76.55575834,,,,373.3481906,4658,1101706,362.5355763,384.1608049,,,,242.2249058,194.0932724,290.3565392,426.9260592,389.5665114,464.2856071,317.5540329,303.3509592,331.7571066,460.0892503,439.2064722,480.9720283,,,,42.46678317,174,409732,36.15676206,48.77680427,,,,,,,77.81722679,53.22692552,109.8547057,39.43295412,31.70409511,47.16181313,42.88254367,30.77325371,58.17501262,,,,4.747601977,147,30963,3.980113778,5.515090175,,,,,,,7.99314873,5.311389282,11.55232542,4.822081809,3.862289853,5.948020097,3.301540719,2.175736137,4.803568409,,,,,,,0.117,,,0.108,0.126,0.151,,,0.142,0.16,0.124,,,0.118,0.13,466.7,1567,335750,,,0.108,40960,,,,0.148817392,39985.00096,268685,,,24.13367825,281,1164348,21.31187694,26.95547955,,,,,,,15.62025426,9.257552636,24.68673603,20.68150935,17.19274675,24.17027195,35.18004332,28.91159924,41.4484874,,,,0.354,,,0.341,0.365,0.187562483,46716,249069,0.168498653,0.206626313,0.063901514,6369,99669,0.047220663,0.080582365,0.001001077,423,422545,,,998.9243499,0.9,4522.5,5025,,,0.071095933,1603,22547,0.044917539,0.097274327,3.060702622,,,,,,3.474169951,3.022987595,2.911332017,3.392976848,3.043024312,,,,,,3.687821181,2.938720405,2.904888289,3.359729442,0.070610653,,,,,-5628.481,,,,,0.855317593,37421,43751,0.804140373,0.906494813,63782,,,59421.14894,68142.85106,160522,51971.3617,269072.6383,86962,82204.38298,91719.61702,59452,52482.97872,66421.02128,56944,53719.82979,60168.17021,75852,72842.29787,78861.70213,,,,,,0.514584588,36747,71411,,,36.86434657,,,,,0.266250666,,63782,,,4.094864358,96,23444,,,4.637405945,118,2544526,3.800666617,5.474145274,,,,,,,12.53801851,8.518975271,17.79671646,3.606301507,2.676666489,4.754458951,4.516400178,3.16323116,6.252601571,,,,11.04042864,213,1884518,9.545851605,12.53500568,11.30262486,,,,,,,8.658779648,4.846253239,14.28134024,5.929034896,4.535241898,7.616093363,19.76931387,16.18999916,23.34862859,,,,9.392322069,177,1884518,8.00862056,10.77602358,,,,,,,16.29859017,10.99659035,23.26725091,4.113423344,2.97690487,5.54075425,18.04516547,14.56020122,21.53012973,,,,13.71571758,349,2544526,12.27671395,15.15472122,,,,,,,13.75137514,9.523227037,19.21616842,12.11717306,10.28484708,13.94949905,17.31286735,14.42427984,20.20145486,,,,19.74477958,,43100,,,215,636,0.710314714,172436,242760,,,0.567,,,,,89.13778838,,,,,0.657227272,78747,119817,0.641261422,0.673193121,0.204047808,23884,117051,0.187571586,0.220524031,0.902092358,108086,119817,0.891653856,0.91253086,422545,,,,,0.238301246,100693,422545,,,0.134127726,56675,422545,,,0.104637376,44214,422545,,,0.008978925,3794,422545,,,0.031475938,13300,422545,,,0.002506242,1059,422545,,,0.567766747,239907,422545,,,0.279982014,118305,422545,,,0.100197536,37079,370059,0.091389191,0.109005882,0.502656522,212395,422545,,,0.063055761,24507,388656,, -12,099,12099,FL,Palm Beach County,2024,1,7500.494806,17941,3937426,7327.65213,7673.337481,0,,,,2,2880.505659,2295.925605,3465.085713,,10189.25715,9762.520277,10615.99403,,5555.510848,5277.278199,5833.743496,,7849.553895,7584.01173,8115.096059,,,,,2,,0.148,,,0.132,0.167,3.281698205,,,3.031634776,3.548969998,4.794221962,,,4.578486991,5.023817721,0.086337788,8973,103929,0.084630209,0.088045368,0,,,,0.100202722,0.090187286,0.110218159,0.13131963,0.127467404,0.135171857,0.070185856,0.067457632,0.07291408,0.063246449,0.0607409,0.065751998,,,,0.073781291,0.055183341,0.092379242,0.163,,,0.141,0.187,0.275,,,0.264,0.284,8.6,0.041301448,0.089,,,0.242,,,0.222,0.264,0.953042204,1422121,1492191,,,0.176548372,,,0.171490603,0.181491391,0.126361656,116,918,0.111512946,0.142063461,398.6,5971,1497987,,,14.01847468,3926,280059,13.57996247,14.45698688,,,,1.818622696,1.017869318,2.99954157,18.69865219,17.69597035,19.70133402,26.82083235,25.68657609,27.9550886,3.396715031,3.056529532,3.73690053,,,,4.903417533,3.375287009,6.886221288,0.164947329,182919,1108954,0.155415414,0.174479244,0.000803745,1204,1497987,,,1244.175249,0.000794217,1206,1518477,,,1259.10199,0.00274288,4165,1518477,,,364.5803121,2573,,,,,,1177,4701,2869,2291,0.5,,,,,0.44,0.45,0.38,0.34,0.52,0.51,,,,,0.33,0.43,0.24,0.27,0.54,0.889790372,978256,1099423,0.886182254,0.89339849,0.651290898,226532,347820,0.637676546,0.66490525,0.029041711,22159,763006,,,0.157,43300,,0.127212766,0.186787234,0.070221066,0,0.160119343,0.128157651,0.084046359,0.172268944,0.261639807,0.236206757,0.287072858,0.20226295,0.18552234,0.21900356,0.062214524,0.051905016,0.072524031,4.942808392,156430,31648,4.791678641,5.093938144,0.270445113,75918,280715,0.256138522,0.284751705,6.829164739,1023,1497987,,,94.73891366,7067,7459448,92.53006009,96.94776723,,,,23.97551677,17.85134702,31.52337678,70.95923396,66.53674412,75.3817238,56.42919957,52.88894043,59.96945871,125.1957354,121.7299892,128.6614816,,,,6.7,,,,,1,,,,,0.211766266,119775,565600,0.205735971,0.217796561,0.185449781,0.179173103,0.191726458,0.03071075,0.028251067,0.033170433,0.008079915,0.006684725,0.009475106,0.729426648,497601,682181,0.723491068,0.735362228,0.696744717,0.592621681,0.800867754,0.683017184,0.653554934,0.712479433,0.772993055,0.758306794,0.787679317,0.703760067,0.693646141,0.713873993,0.740557673,0.73598828,0.745127067,0.382,,682181,0.372320295,0.391679705,81.00846647,,,80.84265952,81.17427342,96.66776451,83.17751921,110.1580098,95.39022769,92.17497419,98.6054812,77.12284132,76.67800323,77.56767942,84.07196406,83.60992641,84.53400171,80.75585456,80.52703157,80.98467756,,,,327.8719252,17941,3937426,322.7274605,333.0163899,,,,144.2152982,125.305129,163.1254675,456.8785749,442.4890932,471.2680567,244.8827554,235.3299116,254.4355992,340.4130751,332.8990667,347.9270835,,,,44.91669023,567,1262337,41.21949581,48.61388465,,,,,,,80.87368272,71.08075282,90.66661261,43.45552252,36.96115556,49.94988947,26.23018492,21.57563698,30.88473287,,,,4.578940745,473,103299,4.166282502,4.991598988,,,,,,,7.683561313,6.675083842,8.692038785,4.129615675,3.438094595,4.821136754,2.682579656,2.177847834,3.269205362,,,,,,,0.102,,,0.093,0.113,0.149,,,0.139,0.158,0.1,,,0.094,0.106,627.6,8153,1299023,,,0.089,132230,,,,0.041301448,54523.44554,1320134,,,35.20378326,1585,4502357,33.47065471,36.93691181,,,,,,,14.55874572,11.98581865,17.13167279,19.79546571,17.11807256,22.47285885,51.72013309,48.83905265,54.60121352,,,,0.353,,,0.341,0.365,0.189406504,157261,830283,0.17749161,0.201321397,0.094910362,27815,293066,0.079421,0.110399723,0.001571311,2386,1518477,,,636.4111484,0.910682052,13278.655,14581,,,0.063314964,4205,66414,0.052536209,0.074093719,3.170377736,,,,,,3.747762612,2.849777807,3.012399221,3.613611184,3.358739198,,,,,,4.107317185,2.958606977,3.239025331,3.838058689,0.172126489,,,,,-5437.318,,,,,0.840288264,48972,58280,0.817561498,0.863015029,76713,,,73997.59575,79428.40426,62552,37583.14894,87520.85106,85375,74134.48936,96615.51064,59166,57122.59575,61209.40426,67873,65286.2766,70459.7234,84674,83084.55319,86263.44681,,,,,,0.629454117,120210,190975,,,56.84139239,,,,,0.280500046,,76713,,,5.77500268,431,74632,,,6.459393416,667,10326047,5.96918034,6.949606491,,,,,,,22.56575803,20.43779477,24.69372129,4.999303516,4.0934194,5.905187632,1.957745795,1.591884869,2.32360672,,,,12.95474763,1095,7459448,12.13454568,13.77494959,14.67937038,,,,4.429724315,2.025552031,8.408996586,5.762114232,4.561920101,7.181313571,7.639524036,6.328234586,8.950813486,18.49130418,17.04636633,19.93624204,,,,12.44059882,928,7459448,11.6401688,13.24102884,,,,,,,24.10748494,21.52974954,26.68522035,6.244214706,5.066549019,7.421880393,11.96264857,10.89133733,13.0339598,,,,13.22868277,1366,10326047,12.52715103,13.93021451,,,,6.903979454,4.217130011,10.66263632,14.41701207,12.71611986,16.11790429,14.74153601,13.18596707,16.29710494,12.72534767,11.79258167,13.65811366,,,,13.06216424,,130300,,,922,780,0.739181521,773158,1045965,,,0.634,,,,,186.7690572,,,,,0.695351377,409975,589594,0.688674453,0.702028302,0.196959209,112963,573535,0.19055911,0.203359308,0.892229229,526053,589594,0.887992136,0.896466322,1518477,,,,,0.185625466,281868,1518477,,,0.251993939,382647,1518477,,,0.188165511,285725,1518477,,,0.006320148,9597,1518477,,,0.03119639,47371,1518477,,,0.001215033,1845,1518477,,,0.241734317,367068,1518477,,,0.523222281,794501,1518477,,,0.074849939,106381,1421257,0.071636978,0.0780629,0.511711406,777022,1518477,,,0.00848819,12666,1492191,, -12,101,12101,FL,Pasco County,2024,1,9800.657076,10304,1535366,9495.22101,10106.09314,0,9092.067,4157.471992,17259.5753,1,2819.066191,1902.012121,4024.392276,,9760.519186,8556.440953,10964.59742,,6433.434015,5849.336967,7017.531064,,11003.65907,10612.01191,11395.30622,,,,,2,,0.158,,,0.14,0.176,3.647112797,,,3.349486332,3.955475399,5.437293026,,,5.167526044,5.691780251,0.081895604,2981,36400,0.079078638,0.084712571,0,,,,0.080948487,0.065661668,0.096235307,0.137179036,0.124532492,0.14982558,0.073568753,0.067650757,0.07948675,0.077879176,0.074503968,0.081254383,,,,0.081749049,0.05833453,0.105163569,0.215,,,0.185,0.244,0.316,,,0.303,0.328,7.3,0.120717253,0.11,,,0.259,,,0.234,0.284,0.848751804,476906,561891,,,0.197909325,,,0.191027335,0.205078552,0.171206226,88,514,0.150001491,0.193459954,283.5,1656,584067,,,15.70425831,1678,106850,14.95284735,16.45566926,,,,,,,18.61336665,15.62462848,21.60210481,18.00520241,16.32851456,19.68189025,15.37469251,14.43345207,16.31593294,,,,12.60716087,9.357277796,16.62096991,0.143588792,65016,452793,0.131673899,0.155503686,0.00051364,300,584067,,,1946.89,0.0003548,216,608794,,,2818.490741,0.001059472,645,608794,,,943.8666667,3374,,,,,,2299,4081,4117,3329,0.42,,,,,,0.38,0.42,0.36,0.43,0.43,,,,,0.38,0.47,0.3,0.32,0.43,0.907071923,373671,411953,0.901857312,0.912286534,0.63124556,85304,135136,0.610123424,0.652367696,0.030494017,7872,258149,,,0.14,16765,,0.107829787,0.172170213,0.14375,0,0.454015196,0.067157585,0.018278053,0.116037116,0.224001059,0.158048655,0.289953462,0.207056535,0.172236872,0.241876197,0.154525875,0.133231609,0.175820141,4.55819982,126604,27775,4.386519923,4.729879717,0.241304765,27682,114718,0.220857277,0.261752252,5.239124963,306,584067,,,116.414939,3229,2773699,112.399521,120.4303571,,,,26.26153866,16.04123007,40.55881653,70.01022273,57.10164754,82.91879793,57.42326164,50.49631305,64.35021024,138.9407026,133.7915077,144.0898975,,,,8.3,,,,,0,,,,,0.14055899,29445,209485,0.132811376,0.148306604,0.124900288,0.117624643,0.132175933,0.016349619,0.013871945,0.018827294,0.005680598,0.003854769,0.007506427,0.725357477,176177,242883,0.715511287,0.735203667,,,,0.628434675,0.583807152,0.673062197,0.609935131,0.548407954,0.671462309,0.615840142,0.585798076,0.645882208,0.691770105,0.679301393,0.704238817,0.512,,242883,0.494529337,0.529470664,76.42472879,,,76.17262967,76.6768279,,,,86.94487759,84.6319934,89.25776179,76.86280272,75.63688942,78.08871602,80.66626334,79.91071444,81.42181224,75.35750865,75.05876119,75.65625611,,,,469.1859246,10304,1535366,459.5151475,478.8567018,406.8634678,251.8548992,621.9340298,140.5603741,111.2829719,175.1801651,440.3952525,400.1592858,480.6312193,304.4853673,283.6601849,325.3105498,520.4047619,508.3120568,532.497467,,,,45.6881554,229,501224,39.77060515,51.60570565,,,,,,,75.30930608,50.04248697,108.8429154,43.05000689,31.95254489,56.75606718,43.37369677,36.02974001,50.71765353,,,,5.222880125,187,35804,4.474287876,5.971472374,,,,,,,9.679821296,6.323180646,14.18318097,6.186160265,4.476954857,8.33271728,4.045935674,3.288336869,4.925781509,,,,,,,0.111,,,0.102,0.122,0.166,,,0.155,0.176,0.099,,,0.093,0.105,264.1,1323,501024,,,0.11,60440,,,,0.120717253,56096.94521,464697,,,46.00726048,786,1708426,42.7908522,49.22366877,,,,,,,26.16760838,17.24461881,38.07249634,25.756862,20.29347771,32.2385536,54.61241561,50.4677973,58.75703391,,,,0.348,,,0.333,0.36,0.174141548,58184,334119,0.159843676,0.188439421,0.060334235,7513,124523,0.047227853,0.073440618,0.001135031,691,608794,,,881.0332851,0.91,4946.76,5436,,,0.061930992,1619,26142,0.046279112,0.077582872,3.21712778,,,,,,3.758077359,2.894232601,3.0652068,3.298756241,3.214202835,,,,,,3.900082968,2.842585599,3.056573385,3.295433638,0.043244492,,,,,-1619.617,,,,,0.840716372,47788,56842,0.808642824,0.872789919,65933,,,62613.51064,69252.48936,62500,36532.68085,88467.31915,95400,81819.40426,108980.5957,63134,55329.74468,70938.25532,67849,62783.97872,72914.02128,61388,59797.3617,62978.6383,,,,,,0.512664391,41594,81133,,,39.71446271,,,,,0.273717258,,65933,,,4.468594716,125,27973,,,3.276976387,124,3783976,2.7001853,3.853767474,,,,,,,12.20651546,7.973701164,17.88537335,2.321905688,1.269407446,3.895763206,3.017529692,2.40689986,3.735907086,,,,18.03442546,541,2773699,16.43181752,19.6370334,19.50463983,,,,,,,,,,11.01924648,8.15209921,14.56802823,20.71866407,18.65082156,22.78650658,,,,13.80827552,383,2773699,12.42535848,15.19119256,,,,,,,11.77163037,7.087290458,18.382859,6.960395351,4.760905267,9.826001444,16.14434335,14.38911034,17.89957635,,,,19.05403206,721,3783976,17.66319795,20.44486616,,,,,,,20.65718001,15.00953862,27.73129999,12.10707966,9.490017783,15.22283498,21.37416865,19.6567079,23.0916294,,,,18.37686567,,53600,,,694,291,0.736171043,301970,410190,,,0.66,,,,,69.42454711,,,,,0.74564541,166566,223385,0.736569147,0.754721674,0.135496507,29540,218013,0.127064818,0.143928196,0.880564944,196705,223385,0.873175328,0.88795456,608794,,,,,0.20104666,122396,608794,,,0.220511372,134246,608794,,,0.06517147,39676,608794,,,0.005328568,3244,608794,,,0.034868938,21228,608794,,,0.001092324,665,608794,,,0.188661518,114856,608794,,,0.68772524,418683,608794,,,0.02300811,12451,541157,0.020605767,0.025410454,0.509589451,310235,608794,,,0.072448215,40708,561891,, -12,103,12103,FL,Pinellas County,2024,1,9063.548985,17023,2566238,8827.542077,9299.555893,0,9719.579427,4444.410632,18450.78935,1,3888.79691,3137.488068,4640.105751,,13474.50132,12657.31782,14291.68483,,6012.934819,5446.391425,6579.478212,,9116.505599,8836.17589,9396.835308,,,,,2,,0.141,,,0.124,0.158,3.271662106,,,2.99949348,3.578637158,4.903045203,,,4.631426235,5.147400893,0.083894082,4613,54986,0.081576856,0.086211309,0,,,,0.085217391,0.073806614,0.096628168,0.150321461,0.143245214,0.157397709,0.067798758,0.062251789,0.073345727,0.067435141,0.064752617,0.070117666,,,,0.094040968,0.076584083,0.111497854,0.187,,,0.159,0.215,0.275,,,0.263,0.287,8.1,0.051209154,0.106,,,0.231,,,0.209,0.254,0.98379013,943560,959107,,,0.202678465,,,0.195269182,0.210109043,0.213483146,133,623,0.193655084,0.233892303,430.6,4119,956615,,,15.11395602,2262,149663,14.49109963,15.73681241,,,,4.1411297,2.679920796,6.113124349,37.5396929,35.03507552,40.04431027,17.76323962,16.08230973,19.44416951,9.018787275,8.396147739,9.641426811,,,,18.82845188,15.54080313,22.11610063,0.143381913,100743,702620,0.133849999,0.152913828,0.000913638,874,956615,,,1094.525172,0.000804792,774,961739,,,1242.556848,0.002672243,2570,961739,,,374.2175097,3106,,,,,,1863,5360,3074,2966,0.41,,,,,0.31,0.35,0.38,0.33,0.42,0.45,,,,,0.15,0.4,0.28,0.34,0.46,0.925054665,689582,745450,0.921536449,0.928572881,0.708102178,158144,223335,0.689970116,0.726234241,0.026455379,13501,510331,,,0.159,22711,,0.117297872,0.200702128,0.218283582,0.021893311,0.414673853,0.103114552,0.064682094,0.14154701,0.311521984,0.263638774,0.359405194,0.221813478,0.192221201,0.251405754,0.079594368,0.068882,0.090306736,4.731878983,135133,28558,4.605857144,4.857900822,0.301669751,45474,150741,0.284301105,0.319038398,7.578806521,725,956615,,,118.203748,5738,4854330,115.1452581,121.2622379,,,,38.14039185,29.43594921,48.61306034,98.24074111,89.61228627,106.8691959,55.61633659,49.03092128,62.20175189,135.6831605,131.8644991,139.5018219,,,,7.7,,,,,1,,,,,0.171643597,70930,413240,0.16565805,0.177629144,0.151680492,0.145496972,0.157864011,0.019383409,0.017343455,0.021423363,0.009631207,0.008029124,0.01123329,0.725204046,329912,454923,0.718089185,0.732318907,0.533479693,0.430971956,0.63598743,0.722497145,0.692789459,0.752204831,0.740005029,0.717273362,0.762736696,0.73772215,0.71468028,0.760764019,0.734175026,0.72527657,0.743073482,0.332,,454923,0.32181991,0.34218009,77.94776518,,,77.75053164,78.14499873,93.7922252,74.3968446,113.1876058,86.28762704,84.80905183,87.76620224,72.75684371,72.11004542,73.403642,82.86085232,82.05475497,83.66694966,77.88530216,77.6602609,78.11034343,,,,421.6050228,17023,2566238,414.5545581,428.6554875,295.7043708,172.258693,473.451343,202.3366319,177.0388676,227.6343961,623.4311542,595.4987888,651.3635196,267.6939036,248.8022026,286.5856047,429.0698949,420.726862,437.4129277,,,,46.24090779,315,681215,41.134363,51.34745259,,,,38.21607368,18.32609277,70.28072015,99.08060341,80.64814661,117.5130602,40.77038298,29.84904447,54.38197746,33.94493774,28.17587493,39.71400055,,,,5.985684091,337,56301,5.346604552,6.62476363,,,,,,,11.51250496,9.41744283,13.60756709,7.525510204,5.728767045,9.707359868,3.854737269,3.199610971,4.509863568,,,,19.84877127,12.28670225,30.34095533,0.103,,,0.093,0.113,0.159,,,0.148,0.17,0.091,,,0.085,0.097,578.5,4927,851758,,,0.106,102010,,,,0.051209154,46935.3407,916542,,,49.47715472,1439,2908413,46.92074541,52.03356404,,,,,,,39.91910608,32.80624718,47.03196498,24.90717925,19.59107649,31.22136486,57.34307603,54.13055228,60.55559979,,,,0.337,,,0.323,0.351,0.163111596,90264,553388,0.151196703,0.17502649,0.072525848,11378,156882,0.057036486,0.088015209,0.001723961,1658,961739,,,580.0597105,0.92,6944.16,7548,,,0.076243608,2624,34416,0.059824811,0.092662404,3.109120131,,,,,,3.43795338,2.628984457,2.921265974,3.327407918,3.27877907,,,,,,3.756325265,2.783145118,3.130243793,3.474451217,0.115896812,,,,,-1441.523,,,,,0.872099663,50403,57795,0.851349665,0.89284966,66427,,,64527.76596,68326.23404,48994,35929.31915,62058.68085,81427,70399.76596,92454.23404,48481,45982.44681,50979.55319,58085,54368.74468,61801.25532,69741,68466.10638,71015.89362,,,,,,0.485971125,46384,95446,,,59.76805265,,,,,0.280955033,,66427,,,8.108645906,326,40204,,,5.025952392,340,6764887,4.491714137,5.560190647,,,,,,,21.53608995,18.11234714,24.95983277,2.541828023,1.480708493,4.069712895,3.316988175,2.81238968,3.821586669,,,,17.40324178,945,4854330,16.18964304,18.61684051,19.46715613,,,,7.10244904,3.545516971,12.70824323,5.846463882,3.884932791,8.44976812,8.589503459,6.241146362,11.53100747,20.94763283,19.33086287,22.56440279,,,,13.43130772,652,4854330,12.40032693,14.46228851,,,,,,,23.27792661,19.0778292,27.47802401,5.074483265,3.283938012,7.490938332,13.87605106,12.65486701,15.0972351,,,,13.77702244,932,6764887,12.89251095,14.66153393,,,,10.62699256,6.877229266,15.68753739,20.11924193,16.81003815,23.42844571,10.46635068,8.159033823,13.22360444,13.68757169,12.66254023,14.71260314,,,,21.77053824,,70600,,,954,583,0.724503268,559715,772550,,,0.664,,,,,165.4819133,,,,,0.690420237,289090,418716,0.683402296,0.697438178,0.161093881,65552,406918,0.154842962,0.167344801,0.878915542,368016,418716,0.872793582,0.885037502,961739,,,,,0.152370862,146541,961739,,,0.266421555,256228,961739,,,0.102696262,98767,961739,,,0.004159133,4000,961739,,,0.037389562,35959,961739,,,0.001336121,1285,961739,,,0.108631344,104475,961739,,,0.727970894,700118,961739,,,0.022876193,21073,921176,,,0.516441571,496682,961739,,,0.001904897,1827,959107,, -12,105,12105,FL,Polk County,2024,1,9497.262417,12420,2024437,9239.518954,9755.005879,0,4759.926881,2054.998577,9378.953512,1,3594.370925,2577.878316,4610.863533,,12951.43797,12183.84422,13719.03173,,6588.519356,6182.592899,6994.445814,,10111.66519,9739.99216,10483.33823,,,,,2,,0.184,,,0.166,0.201,3.806743969,,,3.535189198,4.078738194,4.859046544,,,4.642070362,5.060633781,0.088585703,5071,57244,0.086257983,0.090913424,0,,,,0.09908999,0.080468539,0.117711441,0.141943507,0.135496752,0.148390262,0.076322781,0.072451201,0.080194361,0.073712633,0.070531802,0.076893463,,,,0.082758621,0.064450453,0.101066789,0.196,,,0.174,0.218,0.363,,,0.352,0.374,7.1,0.134411927,0.112,,,0.282,,,0.26,0.302,0.705578681,511577,725046,,,0.173030816,,,0.167714143,0.178570001,0.234421365,158,674,0.215238688,0.254033588,494.6,3727,753520,,,21.87648487,3407,155738,21.14189058,22.61107915,,,,,,,29.07801418,27.03603135,31.11999702,23.31601393,22.02447288,24.60755498,18.76025605,17.72805565,19.79245645,,,,19.90260428,16.08333017,24.35574714,0.169225297,99429,587554,0.157310403,0.18114019,0.000460505,347,753520,,,2171.527378,0.000354329,279,787404,,,2822.236559,0.001198876,944,787404,,,834.1144068,3997,,,,,,1034,6173,4167,3826,0.44,,,,,,0.36,0.4,0.36,0.45,0.43,,,,,,0.42,0.29,0.28,0.45,0.869117035,442982,509692,0.864316771,0.8739173,0.55029731,103189,187515,0.531633635,0.568960984,0.034804122,11775,338322,,,0.242,40670,,0.211021277,0.272978723,0.554240631,0.34408728,0.764393982,0.150566893,0.077071853,0.224061934,0.34437779,0.305920009,0.382835571,0.251899484,0.228958097,0.274840871,0.144223648,0.125268939,0.163178356,4.124736421,113455,27506,3.995889205,4.253583637,0.267751443,43063,160832,0.249310364,0.286192521,7.352160527,554,753520,,,85.80888559,3104,3617341,82.7901333,88.82763787,,,,25.6495368,14.9418004,41.06739313,79.21947181,71.65206701,86.7868766,50.40834102,45.76116354,55.0555185,106.7683843,102.2966428,111.2401257,,,,7.7,,,,,1,,,,,0.162030887,39030,240880,0.15411311,0.169948664,0.131399822,0.123579629,0.139220016,0.032152939,0.028810262,0.035495617,0.006663069,0.005100231,0.008225907,0.794535394,250722,315558,0.789199117,0.799871672,0.748079877,0.554453738,0.941706016,0.754909788,0.688440154,0.821379421,0.802574802,0.771421036,0.833728568,0.772704859,0.76647778,0.778931937,0.78933323,0.777042428,0.801624033,0.433,,315558,0.417975891,0.448024109,76.49322787,,,76.27342487,76.71303087,93.11461063,78.89390554,107.3353157,90.311796,86.7797027,93.84388931,72.98553263,72.37165889,73.59940637,79.91677942,79.36463009,80.46892874,75.95508331,75.66605881,76.24410781,,,,461.9252055,12420,2024437,453.3916263,470.4587846,264.6856616,161.6768785,408.7855371,202.7407969,163.8994975,241.5820963,597.8578198,571.3972074,624.3184322,315.0864222,299.0101491,331.1626952,493.9306101,482.2390616,505.6221586,,,,61.91310084,443,715519,56.14760366,67.67859802,,,,,,,113.9955031,95.44055302,132.5504531,55.24817959,46.06344431,64.43291488,49.54223643,41.5604368,57.52403606,,,,7.583926389,422,55644,6.860334059,8.307518719,,,,,,,15.12252892,12.8220066,17.42305124,6.53398873,5.307337204,7.760640256,5.023776653,4.163475021,5.884078285,,,,,,,0.122,,,0.113,0.132,0.161,,,0.152,0.17,0.113,,,0.108,0.119,437.2,2783,636617,,,0.112,80140,,,,0.134411927,80928.74896,602095,,,26.94739949,599,2222849,24.78935933,29.10543964,,,,,,,24.76715814,19.66869859,30.78331616,14.74834125,11.78045116,18.23655234,34.68066642,31.39501398,37.96631886,,,,0.347,,,0.336,0.358,0.209658582,89220,425549,0.194169221,0.225147944,0.066735583,11362,170254,0.052437711,0.081033456,0.000949957,748,787404,,,1052.679144,0.85,6635.95,7807,,,0.100205992,3843,38351,0.083751433,0.116660552,3.086902641,,,,,,3.49798314,2.8249734,2.939877861,3.362592187,3.160851655,,,,,,3.767681897,2.8610941,3.04650079,3.427433887,0.070252215,,,,,-4301.387,,,,,0.833816037,39442,47303,0.805755289,0.861876786,61941,,,59821.34043,64060.65957,50327,36331.76596,64322.23404,63259,55358.23404,71159.76596,48108,45124.51064,51091.48936,58007,55041.38298,60972.61702,65067,63108.19149,67025.80851,,,,,,0.551371944,60786,110245,,,40.61224484,,,,,0.233641691,,61941,,,4.350818544,177,40682,,,5.310543131,262,4933582,4.667493688,5.953592573,,,,,,,13.55763378,11.00674244,16.52241302,4.955579213,3.762979062,6.406235293,3.47003033,2.820269424,4.224637417,,,,13.72646256,527,3617341,12.5101174,14.94280773,14.56871221,,,,,,,6.24145663,4.296331556,8.765325657,6.984109941,5.275721593,9.069447688,18.7635042,16.80282354,20.72418486,,,,12.05305223,436,3617341,10.92166866,13.18443579,,,,,,,15.05358134,11.93655378,18.73548505,6.13375831,4.620786189,7.983929551,14.43079532,12.78680035,16.07479028,,,,19.58009414,966,4933582,18.3453349,20.81485338,,,,,,,21.99656909,18.57746395,25.41567423,15.29394274,13.05342176,17.53446373,21.38099496,19.68424024,23.07774968,,,,25.88548602,,75100,,,1295,649,0.667469106,343256,514265,,,0.61,,,,,72.36852744,,,,,0.697855345,184335,264145,0.688451935,0.707258755,0.144911774,36907,254686,0.136684723,0.153138825,0.849381968,224360,264145,0.841280722,0.857483215,787404,,,,,0.218158658,171779,787404,,,0.196392195,154640,787404,,,0.148458733,116897,787404,,,0.007520917,5922,787404,,,0.020166268,15879,787404,,,0.001403346,1105,787404,,,0.289358449,227842,787404,,,0.521850283,410907,787404,,,0.04927063,34249,695120,0.045685568,0.052855691,0.505925802,398368,787404,,,0.108846887,78919,725046,, -12,107,12107,FL,Putnam County,2024,1,15221.12446,1929,201613,14112.48033,16329.76858,0,,,,2,,,,2,21472.09797,18272.29719,24671.89876,,8309.072892,6167.154056,10954.47674,,14932.25462,13599.78104,16264.7282,,,,,2,,0.229,,,0.207,0.253,4.7114036,,,4.393168736,5.069146076,5.729117043,,,5.467278281,5.981731535,0.109150666,631,5781,0.101112261,0.117189072,0,,,,,,,0.16291699,0.142756687,0.183077293,0.089041096,0.070180793,0.107901399,0.093632959,0.083941365,0.103324552,,,,,,,0.271,,,0.24,0.3,0.366,,,0.353,0.379,6.9,0.067026615,0.154,,,0.33,,,0.304,0.354,0.526670395,38616,73321,,,0.180905104,,,0.17407197,0.187851427,0.387096774,60,155,0.348028398,0.425724357,512.4,380,74167,,,36.29591762,497,13693,33.10485257,39.48698267,,,,,,,49.91150443,41.67302284,58.14998601,34.2126958,27.25022123,42.41178392,32.7991988,28.82756991,36.77082769,,,,,,,0.180864863,9900,54737,0.160609544,0.201120182,0.000377526,28,74167,,,2648.821429,0.000294389,22,74731,,,3396.863636,0.000776117,58,74731,,,1288.465517,4876,,,,,,,6610,7097,4549,0.46,,,,,,0.41,0.53,0.42,0.45,0.35,,,,,,0.43,0.27,0.27,0.35,0.82448344,43414,52656,0.808581358,0.840385521,0.398351823,6284,15775,0.348898911,0.447804734,0.040522353,1114,27491,,,0.37,5674,,0.279446809,0.460553192,,,,,,,0.423320659,0.289679709,0.556961609,0.450765864,0.356577459,0.54495427,0.31123155,0.251546227,0.370916873,4.810150787,88045,18304,4.157198807,5.463102767,0.356077578,5563,15623,0.291145371,0.421009785,9.707821538,72,74167,,,144.6932342,537,371130,132.4550453,156.9314231,,,,,,,138.0085872,109.5987392,171.5320728,83.3984884,57.04450433,117.7337818,157.9467678,142.7867822,173.1067533,,,,7.8,,,,,1,,,,,0.148725688,4435,29820,0.124480866,0.172970509,0.116298957,0.094431578,0.138166335,0.025150905,0.014790121,0.03551169,0.00989269,0.004148977,0.015636402,0.784540117,20045,25550,0.764460635,0.8046196,,,,,,,0.748587571,0.64766094,0.849514201,0.786236297,0.671648402,0.900824192,0.768962848,0.720653358,0.817272339,0.486,,25550,0.428437374,0.543562626,71.50023516,,,70.76418585,72.23628446,,,,,,,67.10213185,65.19350484,69.01075886,82.19555987,77.62598004,86.7651397,71.53388045,70.66744624,72.40031466,,,,665.9497612,1929,201613,632.6058933,699.2936291,,,,,,,873.5430487,772.6943904,974.3917069,370.1324618,286.2604191,470.8992436,665.9981159,626.8982058,705.098026,,,,99.77298032,69,69157,77.62933406,126.2690922,,,,,,,200.9980593,134.6115549,288.6667413,,,,81.03112102,55.42522679,114.3917654,,,,9.337713989,54,5783,7.014778138,12.18369123,,,,,,,16.00609756,9.908026665,24.46702038,,,,5.822416303,3.55648314,8.992249753,,,,,,,0.149,,,0.137,0.161,0.186,,,0.176,0.197,0.121,,,0.114,0.128,403.2,254,62993,,,0.154,11270,,,,0.067026615,4984.367205,74364,,,29.08238368,65,223503,22.44516974,37.06788536,,,,,,,,,,,,,32.77572579,24.47847971,42.98100378,,,,0.397,,,0.384,0.41,0.223900197,8866,39598,0.196495942,0.251304452,0.070137883,1114,15883,0.049882564,0.090393202,0.000722592,54,74731,,,1383.907407,0.93,608.22,654,,,0.177728846,565,3179,0.09808778,0.257369912,2.861264137,,,,,,,2.588877329,2.730772824,3.06614653,2.966488742,,,,,,,2.629566902,2.887569139,3.14978319,0.119914668,,,,,-15240.36,,,,,0.85142739,37072,43541,0.757271916,0.945582865,46459,,,42846.40426,50071.59575,49036,40807.57447,57264.42553,,,,24545,17578.3617,31511.6383,50034,32302.25532,67765.74468,47253,44134.87234,50371.12766,,,,,,0.684859155,7002,10224,,,41.68177808,,,,,0.289976108,,46459,,,5.27198658,22,4173,,,9.700638302,50,515430,7.200000725,12.78908225,,,,,,,25.69750367,15.9071598,39.28136409,,,,6.531074307,4.184582543,9.717720871,,,,21.75736736,88,371130,17.11354963,27.27304839,23.71136798,,,,,,,,,,,,,27.63042961,21.36937226,35.15268113,,,,23.71136798,88,371130,19.01721048,29.21306853,,,,,,,27.2609555,15.5819915,44.27008382,,,,24.61999977,19.00119605,31.38021075,,,,44.42892342,229,515430,38.67446946,50.18337739,,,,,,,40.38179148,27.79696717,56.71104903,40.08857667,24.8154608,61.27964786,46.80603254,39.81093655,53.80112852,,,,29.86111111,,7200,,,127,88,0.648706973,36373,56070,,,0.524,,,,,30.95955093,,,,,0.729870392,21737,29782,0.705310609,0.754430174,0.126207364,3541,28057,0.103576898,0.148837829,0.824189108,24546,29782,0.804322124,0.844056091,74731,,,,,0.210113608,15702,74731,,,0.242041455,18088,74731,,,0.153109152,11442,74731,,,0.008175991,611,74731,,,0.007105485,531,74731,,,0.001378277,103,74731,,,0.109486023,8182,74731,,,0.708568064,52952,74731,,,0.029959421,2082,69494,0.022758177,0.037160665,0.503512599,37628,74731,,,0.726790415,53289,73321,, -12,109,12109,FL,St. Johns County,2024,1,5706.129015,2929,768142,5346.806739,6065.451291,0,,,,2,2541.777445,1353.38944,4346.516841,1,11767.55942,9377.791058,14157.32778,,3530.221857,2608.559717,4451.883996,,5720.736077,5324.327066,6117.145089,,,,,2,,0.115,,,0.099,0.132,2.999389803,,,2.70767628,3.317833626,4.901246004,,,4.592044267,5.220404245,0.070234539,1105,15733,0.066241419,0.074227659,0,,,,0.091794159,0.07068887,0.112899447,0.136234626,0.115554165,0.156915088,0.06152513,0.047661059,0.075389201,0.064549755,0.060236918,0.068862593,,,,0.048507463,0.022786001,0.074228925,0.148,,,0.121,0.175,0.246,,,0.233,0.259,8.7,0.054761879,0.075,,,0.182,,,0.161,0.203,0.845515224,231185,273425,,,0.22915713,,,0.221158235,0.237126195,0.207650273,38,183,0.170795917,0.24658604,217.8,637,292466,,,6.019289481,347,57648,5.385949997,6.652628965,,,,,,,16.26764886,12.18558531,21.27848525,4.291845494,2.777456111,6.335610592,5.560955761,4.866030726,6.255880797,,,,9.095043202,5.55548867,14.04655657,0.096723301,22561,233253,0.085999896,0.107446705,0.000950538,278,292466,,,1052.035971,0.000495371,152,306841,,,2018.69079,0.001368787,420,306841,,,730.5738095,2388,,,,,,1666,4535,2268,2326,0.55,,,,,,0.5,0.58,0.43,0.56,0.49,,,,,,0.5,0.36,0.4,0.5,0.950075194,188893,198819,0.942141644,0.958008744,0.744939593,46923,62989,0.70607287,0.783806315,0.023330409,3484,149333,,,0.061,3933,,0.040744681,0.081255319,,,,0.075975359,0,0.161992134,0.165371809,0.081044596,0.249699022,0.153242321,0.093198696,0.213285945,0.0508284,0.033268187,0.068388613,4.256926621,194052,45585,4.023698702,4.49015454,0.153162039,9162,59819,0.124951734,0.181372344,5.881025487,172,292466,,,70.91847674,946,1333926,66.39918995,75.43776353,,,,,,,74.92903356,55.96058618,98.2594587,29.64485464,20.00125894,42.31987331,78.13194946,72.88550675,83.37839216,,,,8.4,,,,,0,,,,,0.12415758,11330,91255,0.108546646,0.139768515,0.110452556,0.096694084,0.124211028,0.012437675,0.007641121,0.017234229,0.003725823,0.001754544,0.005697103,0.702675546,90213,128385,0.683532047,0.721819046,,,,0.52530253,0.41594727,0.634657791,0.706204936,0.656236374,0.756173497,0.623848764,0.565357796,0.682339732,0.652034428,0.631207758,0.672861097,0.432,,128385,0.402790279,0.461209721,81.12558557,,,80.76854904,81.4826221,,,,93.20006193,85.75687243,100.6432514,75.00407312,73.02317784,76.9849684,87.59570251,85.34849157,89.84291345,80.94931953,80.56712634,81.33151273,,,,264.6372491,2929,768142,254.2939089,274.9805894,,,,120.4377385,80.65904367,172.9686825,465.5383686,402.4341017,528.6426356,156.4223498,125.5558919,187.2888077,268.5521538,257.0614756,280.0428319,,,,37.23165382,97,260531,30.19236313,45.41946023,,,,,,,122.3359732,73.6542474,191.0427762,43.97010033,21.94971566,78.67465529,32.39817355,24.95054143,41.37174434,,,,4.941161173,76,15381,3.893073004,6.184600024,,,,,,,19.68134958,12.18306559,30.08503349,,,,3.428571429,2.471012713,4.634432553,,,,,,,0.089,,,0.079,0.099,0.15,,,0.139,0.162,0.08,,,0.074,0.086,155.1,387,249498,,,0.075,19880,,,,0.054761879,10406.89269,190039,,,16.15116534,135,835853,13.4266262,18.87570447,,,,,,,,,,,,,18.11164726,14.91082568,21.31246885,,,,0.31,,,0.294,0.325,0.111469549,18832,168943,0.097171677,0.125767421,0.060547685,4086,67484,0.045058324,0.076037047,0.000883194,271,306841,,,1132.254613,0.95046639,3209.725,3377,,,0.040834777,542,13273,0.022340024,0.059329531,3.69633086,,,,,,4.098348527,2.988121709,3.632855364,3.73277501,3.749571618,,,,,,4.425305768,3.135357375,3.664822695,3.762306822,0.040180043,,,,,493.752,,,,,0.704933333,58157,82500,0.660889824,0.748976843,103757,,,98269,109245,148400,120410.7234,176389.2766,130139,111706.6596,148571.3404,92905,81527.46809,104282.5319,85185,66177.17021,104192.8298,100441,95493.93617,105388.0638,,,,,,0.150324642,7293,48515,,,44.26817411,,,,,0.215609549,,103757,,,5.970380709,77,12897,,,2.895882445,52,1795653,2.162783522,3.797564548,,,,,,,13.86577926,7.382943482,23.71090482,,,,2.303496504,1.595238292,3.21890548,,,,15.96854211,236,1333926,13.81737064,18.11971358,17.69213585,,,,,,,,,,9.792670269,4.695966031,18.00906928,17.57707713,15.04880266,20.10535161,,,,11.46990163,153,1333926,9.652419918,13.28738334,,,,,,,,,,,,,12.28835825,10.20771541,14.36900109,,,,13.75544161,247,1795653,12.03997554,15.47090768,,,,,,,22.39856649,13.86506569,34.23858818,7.630325968,3.659037889,14.03244113,14.29522831,12.36634507,16.22411155,,,,7.878787879,,29700,,,148,86,0.910962684,176622,193885,,,0.707,,,,,46.33780721,,,,,0.823675237,84061,102056,0.812089368,0.835261106,0.114216101,11485,100555,0.102134333,0.126297868,0.926383554,94543,102056,0.916251028,0.93651608,306841,,,,,0.213146222,65402,306841,,,0.212435757,65184,306841,,,0.051837923,15906,306841,,,0.003470853,1065,306841,,,0.039551429,12136,306841,,,0.000974446,299,306841,,,0.086960348,26683,306841,,,0.798957766,245153,306841,,,0.010368408,2755,265711,0.007342564,0.013394252,0.508458778,156016,306841,,,0.147930877,40448,273425,, -12,111,12111,FL,St. Lucie County,2024,1,8471.619003,5258,897200,8092.694838,8850.543168,0,,,,2,3740.136548,2137.811198,6073.747435,1,10471.85385,9587.123296,11356.5844,,5183.691101,4560.994815,5806.387387,,9198.446975,8635.330404,9761.563545,,,,,2,,0.174,,,0.158,0.192,3.726737124,,,3.491726176,3.997114623,5.304692663,,,5.098215301,5.516131178,0.090364409,2021,22365,0.086606865,0.094121952,0,,,,0.118686869,0.086832065,0.150541673,0.127507163,0.119259037,0.13575529,0.071984773,0.065320886,0.078648659,0.076199436,0.070882846,0.081516026,,,,0.056140351,0.029414908,0.082865794,0.192,,,0.17,0.215,0.352,,,0.341,0.363,7.3,0.152181965,0.095,,,0.291,,,0.269,0.313,0.836665391,275452,329226,,,0.182588873,,,0.176848036,0.18785512,0.305936073,67,219,0.271919832,0.340342054,342.6,1177,343579,,,15.94717293,966,60575,14.94151284,16.95283301,,,,,,,20.69917203,18.56092541,22.83741866,18.07019576,16.06506993,20.07532159,11.41924959,10.02851661,12.80998258,,,,13.84451544,9.043697133,20.28542283,0.155256107,39692,255655,0.139766745,0.170745469,0.000337623,116,343579,,,2961.887931,0.000412597,148,358704,,,2423.675676,0.001820443,653,358704,,,549.3169985,3318,,,,,,2850,4406,3852,3040,0.45,,,,,,0.41,0.45,0.38,0.46,0.41,,,,,0.45,0.36,0.23,0.29,0.44,0.885807664,216828,244780,0.876309527,0.895305801,0.588221356,44686,75968,0.553741755,0.622700957,0.034108148,5306,155564,,,0.191,13058,,0.148106383,0.233893617,0.176470588,0,0.402938361,0.053017945,0,0.133407386,0.306953313,0.253733399,0.360173227,0.196900838,0.152924335,0.240877341,0.127147625,0.091790115,0.162505134,4.122045098,121015,29358,3.826827187,4.41726301,0.291333902,19115,65612,0.255681279,0.326986526,5.297180561,182,343579,,,83.10539175,1366,1643696,78.69822054,87.51256297,,,,32.10272873,15.39450625,59.03806113,60.15996535,51.82221954,68.49771116,41.0543986,34.12893451,47.97986269,110.0552785,103.2644719,116.8460852,,,,7.4,,,,,1,,,,,0.171609365,20340,118525,0.156600483,0.186618248,0.147772235,0.134069485,0.161474984,0.023834634,0.018873421,0.028795848,0.007087112,0.002915204,0.011259021,0.798155759,113995,142823,0.779835139,0.81647638,,,,0.643597182,0.524013512,0.763180852,0.802399331,0.762618072,0.842180591,0.76333437,0.73573349,0.790935249,0.761033662,0.728072885,0.793994439,0.441,,142823,0.414922982,0.467077018,78.73182529,,,78.39214868,79.0715019,,,,86.65099549,83.35378953,89.94820144,76.44618456,75.63651572,77.25585339,83.07108644,82.13470927,84.00746362,78.0534969,77.59614004,78.51085376,,,,394.5523797,5258,897200,382.8597703,406.2449891,,,,181.5922523,130.8757228,245.4599716,470.6302548,441.5545509,499.7059587,231.4931973,210.4142567,252.5721378,431.6032498,414.7722512,448.4342484,,,,47.36530491,136,287130,39.40468379,55.32592604,,,,,,,74.713384,56.73300487,96.58437427,38.06343087,25.86225456,54.0280018,38.8174227,28.09236128,52.28681364,,,,4.968715495,108,21736,4.031610347,5.905820643,,,,,,,8.83218842,6.635011772,11.52409002,3.697541135,2.258554185,5.710552395,2.957329954,1.965124277,4.274165182,,,,,,,0.114,,,0.105,0.123,0.163,,,0.154,0.173,0.104,,,0.098,0.109,597.1,1770,296455,,,0.095,30850,,,,0.152181965,42274.47589,277789,,,25.76650394,260,1009062,22.63448129,28.89852659,,,,,,,12.53912448,8.190972417,18.37272262,9.20413314,5.541489405,14.37339404,38.58080335,33.41163768,43.74996901,,,,0.37,,,0.357,0.381,0.184388633,34954,189567,0.165324803,0.203452463,0.074287687,5165,69527,0.056415346,0.092160027,0.001062157,381,358704,,,941.480315,0.95,3158.75,3325,,,0.082369146,1196,14520,0.04653688,0.118201413,2.996086031,,,,,,3.38478888,2.750507151,2.967131723,3.234493946,3.122668498,,,,,,3.570685072,2.855329404,3.13442726,3.356318849,0.03157827,,,,,-4812.7,,,,,0.810273671,40444,49914,0.753222138,0.867325204,64038,,,58247.3617,69828.6383,64432,27971.23404,100892.766,62286,36728.55319,87843.44681,55839,51540.10638,60137.89362,61365,54294.70213,68435.29787,71063,68174.82979,73951.17021,,,,,,0.578657548,26061,45037,,,41.92190923,,,,,0.278959368,,64038,,,4.903482093,79,16111,,,6.003292472,135,2248766,4.990597418,7.015987527,,,,,,,15.36204329,11.95258663,19.44164897,5.018786229,3.14524661,7.598502665,3.064895629,2.179440404,4.189813219,,,,13.50348416,256,1643696,11.71793277,15.28903555,15.57465614,,,,,,,5.453167126,3.231892442,8.618355061,6.468513688,4.004111924,9.887810294,19.50194235,16.41160667,22.59227803,,,,13.56698562,223,1643696,11.78630102,15.34767023,,,,,,,18.34878943,14.03537002,23.56978764,6.690346438,4.192804494,10.12926491,15.16123262,12.64075304,17.68171219,,,,14.71918377,331,2248766,13.13346633,16.3049012,,,,,,,14.24885174,10.9733521,18.19546557,12.31883893,9.254290942,16.07341261,16.11034882,13.9049655,18.31573213,,,,22.96416938,,30700,,,414,291,0.726236976,172169,237070,,,0.657,,,,,89.88762544,,,,,0.770900722,97475,126443,0.758096309,0.783705135,0.15456255,18986,122837,0.141233385,0.167891716,0.909445363,114993,126443,0.898960147,0.919930579,358704,,,,,0.19480686,69878,358704,,,0.246883224,88558,358704,,,0.213309581,76515,358704,,,0.006124827,2197,358704,,,0.020707882,7428,358704,,,0.001229426,441,358704,,,0.219214171,78633,358704,,,0.525901579,188643,358704,,,0.03072229,9777,318238,0.024732947,0.036711632,0.507660913,182100,358704,,,0.035376914,11647,329226,, -12,113,12113,FL,Santa Rosa County,2024,1,7930.948501,2820,532225,7473.873082,8388.023921,0,,,,2,2771.418758,1196.50191,5460.799787,1,7631.051562,5744.32117,9517.781953,,3712.277485,2663.994416,5036.123584,,8527.63785,7995.119331,9060.156369,,,,,2,,0.141,,,0.124,0.159,3.694957622,,,3.383504186,4.029684933,5.459822555,,,5.156408465,5.763305314,0.0803663,1097,13650,0.075805572,0.084927028,0,,,,0.075949367,0.046739977,0.105158758,0.153374233,0.125714103,0.181034363,0.081050228,0.062977362,0.099123094,0.076030588,0.071160182,0.080900994,,,,0.079178886,0.050519214,0.107838557,0.203,,,0.171,0.233,0.306,,,0.292,0.32,7.9,0.0951178,0.093,,,0.26,,,0.234,0.288,0.642856383,120857,188000,,,0.185859727,,,0.178536125,0.193701711,0.14953271,16,107,0.104293285,0.200953515,252.6,490,193998,,,16.24249667,598,36817,14.94065471,17.54433863,,,,,,,14.46570229,9.828742874,20.53290971,11.02687802,7.5423764,15.56666164,17.35605903,15.83625243,18.87586563,,,,13.93728223,9.261222825,20.14325333,0.119299818,18899,158416,0.105001946,0.133597691,0.000577326,112,193998,,,1732.125,0.000297577,59,198268,,,3360.474576,0.001049085,208,198268,,,953.2115385,3083,,,,,,2305,5707,709,3026,0.42,,,,,,0.43,0.43,0.4,0.42,0.34,,,,,0.31,0.3,0.27,0.26,0.34,0.926253754,123377,133200,0.916392406,0.936115102,0.677314123,34881,51499,0.635962911,0.718665334,0.026842033,2349,87512,,,0.118,4961,,0.083446809,0.152553192,0.13559322,0,0.513064927,0.044472681,0,0.164113842,0.137872819,0.061344027,0.214401612,0.088741322,0.033786364,0.14369628,0.089736894,0.068723546,0.110750241,3.730760348,145384,38969,3.4692917,3.992228996,0.177556473,7310,41170,0.150253163,0.204859783,6.804193858,132,193998,,,81.75265533,753,921071,75.91335987,87.5919508,,,,,,,47.50761002,31.30781435,69.12107833,36.62064672,22.3688424,56.55761875,90.01091001,83.2404787,96.78134133,,,,9.4,,,,,0,,,,,0.125808661,8265,65695,0.111548262,0.140069061,0.103126925,0.089453345,0.116800506,0.019712307,0.012945331,0.026479283,0.005327651,0.003094843,0.007560458,0.790413018,66254,83822,0.772262494,0.808563542,,,,0.752391073,0.59598883,0.908793317,0.809682805,0.740400901,0.878964708,0.649536647,0.557827519,0.741245775,0.715514083,0.69095721,0.740070955,0.517,,83822,0.486552842,0.547447158,76.76086993,,,76.3670245,77.15471536,,,,84.62122052,81.75128139,87.49115965,76.27657823,74.40582693,78.14732954,84.58056052,81.73041126,87.43070978,76.12395107,75.68927583,76.55862631,,,,399.9345474,2820,532225,384.595934,415.2731608,,,,139.8976857,85.45314089,216.0606293,399.7570348,329.3371189,470.1769508,198.63219,148.7891407,259.8157951,424.4561598,407.1378313,441.7744884,,,,53.7294387,96,178673,43.52101785,65.61284078,,,,,,,,,,,,,58.04870358,46.09904972,72.14923833,,,,5.310126116,72,13559,4.154846647,6.68722502,,,,,,,,,,,,,5.098452883,3.87146903,6.590932643,,,,,,,0.106,,,0.095,0.116,0.168,,,0.156,0.18,0.091,,,0.085,0.098,155.6,256,164495,,,0.093,17130,,,,0.0951178,14398.17158,151372,,,28.54877082,162,567450,24.15248441,32.94505723,,,,,,,,,,,,,31.9711741,26.82026603,37.12208217,,,,0.348,,,0.333,0.364,0.139574917,16135,115601,0.121702577,0.157447258,0.067002384,3007,44879,0.050321533,0.083683235,0.000857425,170,198268,,,1166.282353,0.9,1964.7,2183,,,0.059764598,523,8751,0.03431646,0.085212737,3.390706285,,,,,,3.36034964,2.974322675,3.320528956,3.418287402,3.472757078,,,,,,3.546158187,2.966675767,3.415914707,3.496522655,0.029076033,,,,,1044.865,,,,,0.760231412,46124,60671,0.705284356,0.815178468,82537,,,75961.17021,89112.82979,61103,37400.70213,84805.29787,77833,26371.38298,129294.617,79516,59653.87234,99378.12766,77663,66334.31915,88991.68085,86351,82625.21277,90076.78723,,,,,,0.420758852,12287,29202,,,40.13471142,,,,,0.188860753,,82537,,,4.625984252,47,10160,,,3.893189937,49,1258608,2.880203348,5.147003562,,,,,,,,,,,,,3.774925397,2.684340979,5.160447287,,,,19.63187032,186,921071,16.73273599,22.53100465,20.19388299,,,,,,,,,,,,,21.69119649,18.31224652,25.07014646,,,,15.09112761,139,921071,12.58230265,17.59995258,,,,,,,,,,,,,16.8356194,13.90753689,19.76370191,,,,13.74534406,173,1258608,11.69706731,15.79362081,,,,,,,19.22140496,10.75807444,31.70278438,,,,14.131772,11.83944661,16.42409739,,,,17.51295337,,19300,,,174,164,0.779756436,106928,137130,,,0.705,,,,,52.21178869,,,,,0.783585524,54478,69524,0.765668533,0.801502515,0.099281342,6714,67626,0.085736466,0.112826217,0.918704332,63872,69524,0.9075884,0.929820265,198268,,,,,0.216852947,42995,198268,,,0.168473985,33403,198268,,,0.061134424,12121,198268,,,0.008564166,1698,198268,,,0.023559021,4671,198268,,,0.00190651,378,198268,,,0.065789739,13044,198268,,,0.808239353,160248,198268,,,0.007051981,1261,178815,0.004900215,0.009203747,0.487552202,96666,198268,,,0.199026596,37417,188000,, -12,115,12115,FL,Sarasota County,2024,1,8495.297058,6587,1078643,8099.249211,8891.344905,0,,,,2,3687.493944,2282.61687,5636.726198,1,12947.63054,11049.3639,14845.89718,,6080.331738,5183.324681,6977.338794,,8764.298661,8298.171555,9230.425766,,,,,2,,0.126,,,0.11,0.144,3.270803069,,,2.965556934,3.588587227,5.150156754,,,4.86545791,5.45948018,0.075027437,1504,20046,0.071380597,0.078674277,0,,,,0.078156313,0.054604927,0.101707699,0.149835346,0.133446795,0.166223896,0.064238411,0.055493959,0.072982863,0.067687405,0.063589164,0.071785645,,,,0.075376884,0.038696743,0.112057026,0.159,,,0.129,0.189,0.266,,,0.252,0.279,8.1,0.071106927,0.094,,,0.205,,,0.181,0.228,0.889918573,386230,434006,,,0.216861637,,,0.208951147,0.224250041,0.286738351,80,279,0.256594099,0.317361865,238.4,1066,447057,,,12.66841258,803,63386,11.79217778,13.54464738,,,,,,,34.90136571,29.51016432,40.29256709,15.79492491,13.50643979,18.08341003,9.875163033,8.935185622,10.81514045,,,,11.00917431,7.053785713,16.38077871,0.147650046,41236,279282,0.134543663,0.160756429,0.000789609,353,447057,,,1266.450425,0.00072466,335,462286,,,1379.958209,0.002050679,948,462286,,,487.6434599,2155,,,,,,648,4610,3105,2092,0.53,,,,,,0.48,0.42,0.34,0.53,0.52,,,,,0.35,0.5,0.35,0.38,0.52,0.941083751,331956,352738,0.935949045,0.946218456,0.654401497,48268,73759,0.621411397,0.687391597,0.028720267,5629,195994,,,0.115,7147,,0.07687234,0.15312766,0.046296296,0,0.181631948,0.147887324,0.03204511,0.263729538,0.281500708,0.181982001,0.381019415,0.147895755,0.103997619,0.191793891,0.108084804,0.085670897,0.130498712,4.197295671,146515,34907,4.028901801,4.365689542,0.239185834,14642,61216,0.209612474,0.268759194,8.38819211,375,447057,,,103.958295,2256,2170101,99.66840981,108.2481802,,,,,,,105.1938116,85.49633931,128.0696912,50.51428352,40.85209249,60.17647454,112.8685777,107.9537375,117.783418,,,,6.8,,,,,0,,,,,0.153886804,29120,189230,0.144580865,0.163192744,0.137862885,0.129422801,0.146302969,0.014241928,0.011484448,0.016999408,0.014004122,0.010892165,0.017116079,0.749853121,134013,178719,0.739964678,0.759741565,,,,0.639510342,0.614990934,0.66402975,0.799703135,0.744568232,0.854838037,0.710532829,0.677673753,0.743391905,0.774758052,0.765224252,0.784291852,0.338,,178719,0.320857453,0.355142547,80.28235463,,,79.95090402,80.61380523,,,,89.84753593,85.8931123,93.80195956,73.79152086,72.32551761,75.2575241,84.72332753,83.2903966,86.15625846,80.0380851,79.66064239,80.41552781,,,,355.0509233,6587,1078643,344.3206076,365.7812391,,,,169.6449867,125.0828212,224.9246403,588.3761329,526.3373556,650.4149103,244.2372428,216.8024405,271.6720451,365.109929,352.5958561,377.6240019,,,,46.72846019,128,273923,38.63316748,54.8237529,,,,,,,90.84389194,54.69395728,141.8639903,50.13838193,32.44691719,74.01414243,40.75511069,32.0564799,51.08688416,,,,5.106382979,102,19975,4.115392757,6.097373201,,,,,,,12.45937161,7.898172826,18.69517492,8.294266138,5.257853241,12.44547165,3.36169045,2.486997101,4.444333054,,,,,,,0.096,,,0.086,0.106,0.156,,,0.145,0.168,0.079,,,0.073,0.085,264.1,1068,404362,,,0.094,40210,,,,0.071106927,26981.3812,379448,,,32.54638048,431,1324264,29.47368067,35.61908029,,,,,,,42.09861601,26.97337763,62.63940359,20.81053167,13.7142715,30.27823099,33.98786697,30.52932519,37.44640875,,,,0.352,,,0.336,0.367,0.159977467,34646,216568,0.144488105,0.175466828,0.105903696,7005,66145,0.08088242,0.130924973,0.001509888,698,462286,,,662.3008596,0.91,3113.11,3421,,,0.047955414,740,15431,0.030552148,0.065358681,3.46463755,,,,,,3.749013186,2.93904545,3.177251293,3.650624695,3.532423559,,,,,,3.946503506,2.925962927,3.252420456,3.727334298,0.091736213,,,,,882.7568,,,,,0.800365186,46025,57505,0.769405027,0.831325344,78309,,,74769.08511,81848.91489,112266,33429.91489,191102.0851,67750,54903.3617,80596.6383,56326,48246.51064,64405.48936,70559,64985.21277,76132.78723,78955,77135.59575,80774.40426,,,,,,0.464096078,20365,43881,,,60.61211917,,,,,0.257901391,,78309,,,7.116714111,105,14754,,,3.045292196,91,2988219,2.451879313,3.738943997,,,,,,,22.9226361,15.46580632,32.72348836,3.569083174,1.711514111,6.563671031,2.017004966,1.497059963,2.659169594,,,,18.67145814,445,2170101,16.58908024,20.75383605,20.50595802,,,,,,,11.96171091,5.736105326,21.99801224,5.130973351,2.56136341,9.180728646,21.9941709,19.34326694,24.64507485,,,,12.67222125,275,2170101,11.17446041,14.16998209,,,,,,,26.56409385,17.19088092,39.21384276,,,,13.48183406,11.78320963,15.18045849,,,,13.08471702,391,2988219,11.78774076,14.38169328,,,,,,,19.86628462,12.97731669,29.1087099,12.13488279,8.403759096,16.95728239,13.19121247,11.76144007,14.62098488,,,,17.61744966,,29800,,,330,195,0.778140458,270575,347720,,,0.661,,,,,87.14081858,,,,,0.760179588,151538,199345,0.753107467,0.767251709,0.147020735,28496,193823,0.137962173,0.156079298,0.903097645,180028,199345,0.896936256,0.909259034,462286,,,,,0.137341386,63491,462286,,,0.377186417,174368,462286,,,0.042203311,19510,462286,,,0.003480529,1609,462286,,,0.020699307,9569,462286,,,0.000679233,314,462286,,,0.103011988,47621,462286,,,0.817928728,378117,462286,,,0.017730304,7531,424753,0.015164394,0.020296215,0.520491644,240616,462286,,,0.024105658,10462,434006,, -12,117,12117,FL,Seminole County,2024,1,6785.147695,5322,1321866,6507.742132,7062.553258,0,,,,2,2935.62748,2116.250529,3755.00443,,11704.24023,10671.66267,12736.81779,,5214.961252,4709.816712,5720.105792,,6819.852674,6452.10679,7187.598558,,,,,2,,0.124,,,0.112,0.138,2.995867469,,,2.772231569,3.236772126,4.445021663,,,4.239931128,4.674293381,0.077624165,2521,32477,0.07471398,0.08053435,0,,,,0.099387659,0.086660946,0.112114372,0.132198202,0.123015872,0.141380531,0.071018213,0.065452237,0.076584189,0.060450003,0.056792591,0.064107415,,,,0.073937153,0.051887131,0.095987176,0.143,,,0.122,0.165,0.301,,,0.288,0.313,8.5,0.061275098,0.084,,,0.23,,,0.21,0.251,0.935551421,440510,470856,,,0.204167165,,,0.197887561,0.211009558,0.154228856,31,201,0.120932405,0.190657417,402.5,1892,470093,,,9.227436522,886,96018,8.619833009,9.835040036,,,,,,,19.60159363,17.15207978,22.05110747,12.39462643,11.0408044,13.74844846,5.809583782,5.136269116,6.482898448,,,,5.945639864,3.680444786,9.088542111,0.12438976,48870,392878,0.112474866,0.136304653,0.00079346,373,470093,,,1260.302949,0.000637046,305,478772,,,1569.744262,0.002103298,1007,478772,,,475.4438928,3334,,,,,,1615,6627,4174,2906,0.37,,,,,,0.34,0.36,0.36,0.37,0.44,,,,,,0.43,0.29,0.31,0.46,0.938579948,313527,334044,0.933740579,0.943419316,0.768125204,103362,134564,0.744119612,0.792130797,0.026618247,7022,263804,,,0.119,11450,,0.086829787,0.151170213,0.70886076,0.423224385,0.994497134,0.038766845,0.009013262,0.068520429,0.23802936,0.187212079,0.288846641,0.127975616,0.102274909,0.153676324,0.074608905,0.06083987,0.08837794,4.206759829,151721,36066,4.015454189,4.398065469,0.230165891,22449,97534,0.208075903,0.252255878,7.338973352,345,470093,,,77.3039584,1814,2346581,73.74650547,80.86141133,,,,29.17436546,20.08229078,40.97165602,70.74650527,60.71319184,80.7798187,48.71365505,42.7462323,54.68107779,95.4261294,90.27620347,100.5760553,,,,6.9,,,,,1,,,,,0.159521604,28410,178095,0.149939678,0.169103529,0.136510478,0.126219135,0.14680182,0.024677841,0.020956674,0.028399007,0.005306157,0.00381091,0.006801404,0.732373688,178582,243840,0.722901075,0.7418463,,,,0.643279888,0.57922129,0.707338487,0.722764051,0.690726918,0.754801185,0.707172561,0.677683003,0.73666212,0.726203776,0.716858256,0.735549297,0.421,,243840,0.403287237,0.438712763,79.52346406,,,79.25174171,79.79518641,,,,87.20721816,85.31549919,89.09893713,75.17039092,74.21906999,76.12171185,83.07421134,82.32283059,83.82559208,79.10615691,78.77502556,79.43728826,,,,321.1267585,5322,1321866,312.2579048,329.9956122,,,,153.3591499,124.8411974,181.8771024,521.4502454,486.2473987,556.6530921,235.4678455,218.0129292,252.9227617,329.3139241,317.8654379,340.7624104,,,,45.36564478,196,432045,39.01445451,51.71683505,,,,51.01094417,25.46447954,91.27266979,112.2470125,86.62987451,143.0680317,39.6384286,29.0203116,52.87210895,31.92183315,24.83709158,40.39912289,,,,5.438477226,176,32362,4.634993562,6.241960891,,,,,,,11.51893792,8.768749244,14.85859066,4.545454546,3.183580482,6.292825062,3.971119134,3.07126325,5.052237211,,,,,,,0.093,,,0.085,0.101,0.145,,,0.136,0.154,0.093,,,0.088,0.098,332,1337,402699,,,0.084,39280,,,,0.061275098,25902.08705,422718,,,26.12828281,370,1416090,23.46592711,28.7906385,,,,,,,21.88449848,15.32763369,30.29737051,17.90853064,13.59869814,23.1509287,32.91623244,28.99717574,36.83528914,,,,0.343,,,0.33,0.356,0.145231111,42876,295226,0.130933239,0.159528983,0.064593092,6633,102689,0.04910373,0.080082454,0.001142506,547,478772,,,875.2687386,0.96,4991.04,5199,,,0.03035016,683,22504,0.019341737,0.041358583,3.382031318,,,,,,3.871625738,2.908852702,3.191838778,3.610046772,3.45007625,,,,,,4.092261514,2.957308119,3.236212534,3.688520582,0.065140505,,,,,-1461.901,,,,,0.828335193,50492,60956,0.792299168,0.864371217,80296,,,76331.91489,84260.08511,79776,61773.78723,97778.21277,98805,91603.6383,106006.3617,59926,55288.7234,64563.2766,65042,61903.61702,68180.38298,87838,85532.46809,90143.53192,,,,,,0.495937884,33086,66714,,,41.41849458,,,,,0.255268008,,80296,,,5.436361373,131,24097,,,4.029276539,131,3251204,3.339279068,4.719274009,,,,,,,17.57412224,13.56333652,22.39966145,2.969251282,1.838013342,4.538815995,1.952367374,1.381611353,2.679776758,,,,12.46621432,316,2346581,11.0644281,13.86800055,13.46640069,,,,,,,5.125358974,2.86862451,8.453500188,6.158869573,4.212662228,8.694486199,16.04253208,13.96596388,18.11910029,,,,10.82425878,254,2346581,9.493076957,12.15544061,,,,,,,18.14962701,13.42719398,23.99476942,5.328056021,3.540454532,7.700524422,12.29904625,10.45019042,14.14790207,,,,10.73448483,349,3251204,9.608261379,11.86070827,,,,,,,16.22226668,12.37929848,20.88127286,9.614718437,7.466205078,12.18894663,10.84077673,9.378009431,12.30354404,,,,15.32188841,,46600,,,200,514,0.753833259,260815,345985,,,0.72,,,,,130.5062382,,,,,0.656754975,120506,183487,0.64528275,0.668227199,0.152360956,27430,180033,0.141915914,0.162805998,0.930262089,170691,183487,0.923384292,0.937139886,478772,,,,,0.204370765,97847,478772,,,0.167449224,80170,478772,,,0.119743845,57330,478772,,,0.005104726,2444,478772,,,0.055019926,26342,478772,,,0.00135764,650,478772,,,0.238119606,114005,478772,,,0.563612743,269842,478772,,,0.030229373,13531,447611,0.027041759,0.033416988,0.512078818,245169,478772,,,0.032445164,15277,470856,, -12,119,12119,FL,Sumter County,2024,1,10079.71194,2367,299030,9031.968719,11127.45516,0,,,,2,,,,2,12979.65478,9626.490684,16332.81887,,5744.486558,3752.48934,8417.003779,,11220.24234,9857.800966,12582.68372,,,,,2,,0.135,,,0.118,0.153,3.23835239,,,2.953648229,3.539639721,4.313738875,,,4.08177848,4.550141036,0.0856974,290,3384,0.07626614,0.095128659,0,,,,,,,0.155241936,0.123371652,0.187112219,0.08,0.056220103,0.103779897,0.07196468,0.061321683,0.082607676,,,,,,,0.175,,,0.149,0.202,0.339,,,0.325,0.354,8.1,0.059882169,0.103,,,0.213,,,0.191,0.236,0.890583575,115555,129752,,,0.210060391,,,0.203278768,0.217101767,0.158730159,20,126,0.116390632,0.205896367,126.1,171,135638,,,32.95496155,270,8193,29.02403437,36.88588873,,,,,,,44.67680608,32.82683666,59.41068093,33.75843961,24.6236375,45.17144824,31.66572981,26.89151209,36.43994754,,,,,,,0.124182345,6132,49379,0.107501494,0.140863196,0.000434981,59,135638,,,2298.949153,0.000351797,51,144970,,,2842.54902,0.000586328,85,144970,,,1705.529412,2932,,,,,,,9544,,2867,0.55,,,,,,0.46,0.54,0.46,0.55,0.48,,,,,,0.54,0.3,0.41,0.49,0.925245139,109834,118708,0.915819155,0.934671124,0.416597563,6531,15677,0.370913189,0.462281937,0.040620147,1517,37346,,,0.275,2773,,0.198744681,0.351255319,,,,,,,0.617821782,0.517693026,0.717950538,0.226666667,0.120046835,0.333286498,0.332867133,0.25697287,0.408761396,3.6396459,120465,33098,3.312873739,3.966418061,0.328968381,3090,9393,0.242335325,0.415601436,4.792167387,65,135638,,,138.1250993,913,660995,129.1654031,147.0847955,,,,,,,97.23971801,70.65452796,130.5397827,63.96479378,41.39464192,94.42465382,147.9434614,137.8905887,157.9963341,,,,8,,,,,1,,,,,0.11527719,6810,59075,0.098697092,0.131857288,0.108047945,0.091025797,0.125070094,0.00880237,0.004752666,0.012852074,0.009394837,0.001260003,0.017529671,0.724487966,20198,27879,0.701894601,0.747081331,,,,,,,0.847800518,0.737691372,0.957909663,0.774675012,0.693941114,0.85540891,0.780387917,0.752055761,0.808720073,0.383,,27879,0.336000313,0.429999687,78.84675021,,,78.04430787,79.64919255,,,,,,,73.04825746,70.46103107,75.63548385,82.46070173,79.89845395,85.02294951,78.07115431,77.06857316,79.07373546,,,,388.0785882,2367,299030,362.6685592,413.4886172,,,,,,,554.3421063,465.8735754,642.8106372,243.5514106,186.2975309,312.8519758,422.983775,389.1383122,456.8292377,,,,89.75789627,37,41222,63.19784233,123.7194366,,,,,,,242.8998505,129.3339404,415.366142,,,,71.92066016,43.30093559,112.3130198,,,,9.289781241,31,3337,6.311955643,13.18610294,,,,,,,,,,,,,,,,,,,,,,0.097,,,0.087,0.106,0.148,,,0.138,0.158,0.09,,,0.084,0.097,218.7,282,128916,,,0.103,13130,,,,0.059882169,5594.192184,93420,,,20.38931305,83,407076,16.23997403,25.27562121,,,,,,,,,,,,,21.37715072,16.7856612,26.83705513,,,,0.337,,,0.322,0.352,0.137713456,5500,39938,0.117458137,0.157968775,0.067913087,672,9895,0.048849258,0.086976917,0.000889839,129,144970,,,1123.79845,0.91,515.06,566,,,0.110492108,238,2154,0.045143714,0.175840501,3.428790364,,,,,,,2.652904113,3.26329981,3.600921593,3.35624752,,,,,,,2.63413828,3.144328099,3.519689362,0.067054954,,,,,-1954.723,,,,,0.799119756,41579,52031,0.685284378,0.912955133,77851,,,70151.59575,85550.40426,,,,121029,67448.91489,174609.0851,27454,2942.680851,51965.31915,64545,52855.29787,76234.70213,71235,67004.02128,75465.97872,,,,,,0.113442549,1011,8912,,,57.19341233,,,,,0.208680685,,77851,,,5.954912803,14,2351,,,2.987115575,27,903882,1.968527986,4.346096332,,,,,,,20.56929479,10.95228318,35.17412053,,,,1.560796943,0.806486556,2.726398155,,,,14.23478555,109,660995,10.18155099,18.28802011,16.49029115,,,,,,,,,,,,,18.79403386,12.69893736,24.88913036,,,,12.55682721,83,660995,10.00144278,15.56607657,,,,,,,22.09993591,10.59777829,40.64256899,,,,12.80279955,10.01740215,16.12300717,,,,15.59938134,141,903882,13.02451974,18.17424293,,,,,,,26.89830857,15.66925598,43.0667977,,,,14.69750455,11.9875597,17.4074494,,,,25.90909091,,4400,,,26,88,0.78280926,92485,118145,,,0.71,,,,,26.61508331,,,,,0.871596299,56048,64305,0.859422099,0.883770499,0.113792276,7116,62535,0.098101088,0.129483465,0.892123474,57368,64305,0.874419239,0.909827709,144970,,,,,0.071152652,10315,144970,,,0.574546458,83292,144970,,,0.066124026,9586,144970,,,0.004207767,610,144970,,,0.011574809,1678,144970,,,0.000848451,123,144970,,,0.064551287,9358,144970,,,0.84501621,122502,144970,,,0.009051661,1172,129479,0.006375882,0.011727439,0.502352211,72826,144970,,,0.215773167,27997,129752,, -12,121,12121,FL,Suwannee County,2024,1,11050.02031,990,120967,9912.574112,12187.46651,0,,,,2,,,,2,10820.1507,8144.842256,13495.45914,,5729.502721,3632.013242,8597.06724,1,12091.19296,10653.72167,13528.66424,,,,,2,,0.184,,,0.164,0.206,4.213503533,,,3.902973225,4.564084749,5.442850844,,,5.171157328,5.728460517,0.092822967,291,3135,0.0826649,0.102981033,0,,,,,,,0.162352941,0.127292109,0.197413773,0.064935065,0.042465451,0.087404679,0.087116002,0.075280546,0.098951458,,,,,,,0.243,,,0.214,0.273,0.356,,,0.342,0.37,7.6,0.053752075,0.128,,,0.292,,,0.266,0.317,0.394649676,17157,43474,,,0.1800154,,,0.172042923,0.187498877,0.317647059,27,85,0.262069005,0.37375981,463.1,206,44485,,,33.47230494,281,8395,29.55859595,37.38601394,,,,,,,34.09090909,23.87685362,47.19618796,54.22222222,41.47570361,69.65071281,30.29277374,25.85496483,34.73058264,,,,,,,0.16653826,5404,32449,0.146282941,0.186793579,0.000134877,6,44485,,,7414.166667,0.000176169,8,45411,,,5676.375,0.000748717,34,45411,,,1335.617647,3752,,,,,,,6051,2417,3545,0.37,,,,,,,0.35,0.24,0.38,0.31,,,,,,0.36,0.27,0.19,0.31,0.843101343,26239,31122,0.818047434,0.868155252,0.43793236,4558,10408,0.364008235,0.511856485,0.032399749,568,17531,,,0.29,2674,,0.203021277,0.376978723,,,,,,,0.14631579,0,0.306187468,0.401697313,0.198934702,0.604459923,0.173012219,0.106114759,0.239909679,4.307141893,95709,22221,3.587292304,5.026991482,0.301471378,2807,9311,0.210705561,0.392237195,7.643025739,34,44485,,,102.6407484,228,222134,89.31755112,115.9639456,,,,,,,36.62198784,17.56166665,67.34913954,,,,122.6355272,105.8476632,139.4233913,,,,8,,,,,0,,,,,0.13630363,2065,15150,0.102936722,0.169670539,0.094603598,0.06732401,0.121883185,0.037623762,0.017212254,0.058035271,0.00660066,0.000013563,0.013187757,0.82123037,13910,16938,0.781320401,0.861140338,,,,,,,0.78343949,0.652204334,0.914674647,0.601683938,0.463565576,0.7398023,0.809186584,0.762450186,0.855922982,0.395,,16938,0.327862984,0.462137016,73.83345873,,,72.97542951,74.69148795,,,,,,,73.63296716,71.21380995,76.05212436,79.6665401,75.86326766,83.46981255,73.02273247,71.99462726,74.05083769,,,,557.9840997,990,120967,520.6024406,595.3657587,,,,,,,659.9314244,535.2751191,784.5877297,342.092437,239.5973372,473.6001294,583.1580508,538.9211279,627.3949738,,,,70.43621879,29,41172,47.17224118,101.1581595,,,,,,,,,,,,,79.24501117,49.6624266,119.9778992,,,,7.969397514,25,3137,5.157373876,11.76440284,,,,,,,,,,,,,,,,,,,,,,0.126,,,0.116,0.138,0.175,,,0.164,0.186,0.106,,,0.1,0.113,490.8,186,37895,,,0.128,5570,,,,0.053752075,2233.452466,41551,,,17.19587598,23,133753,10.90071029,25.80225707,,,,,,,,,,,,,21.89555819,13.72182974,33.15013823,,,,0.377,,,0.363,0.391,0.200421759,4657,23236,0.173017504,0.227826015,0.082350507,796,9666,0.05732923,0.107371784,0.000682654,31,45411,,,1464.870968,0.94,351.56,374,,,,,,,,3.199366362,,,,,,,2.838521228,2.982265165,3.365901389,3.284894373,,,,,,,2.851011824,3.061036428,3.475683155,0.036408352,,,,,-3984.203,,,,,0.910808499,38325,42078,0.718051513,1.103565484,51295,,,45714.06383,56875.93617,,,,,,,42164,27029.70213,57298.29787,42107,32181.89362,52032.10638,52585,46022.2766,59147.7234,,,,,,0.589017735,3454,5864,,,50.14452714,,,,,0.354303538,,51295,,,6.25,14,2240,,,4.843584511,15,309688,2.710917482,7.988756061,,,,,,,,,,,,,4.716435061,2.354427389,8.439005138,,,,23.04050231,53,222134,16.98824756,30.54836336,23.85947221,,,,,,,,,,,,,30.57963613,22.30499643,40.91795908,,,,20.70822116,46,222134,15.16102056,27.62186505,,,,,,,,,,,,,27.51821586,20.14679258,36.70544365,,,,29.06150707,90,309688,23.36888356,35.72152611,,,,,,,,,,,,,33.01504543,26.05495755,41.26314213,,,,25.90909091,,4400,,,67,47,0.629130565,21057,33470,,,0.552,,,,,16.52747656,,,,,0.752345823,11626,15453,0.725563648,0.779127997,0.122746479,1743,14200,0.092303944,0.153189014,0.829612373,12820,15453,0.784696673,0.874528073,45411,,,,,0.207835106,9438,45411,,,0.2205633,10016,45411,,,0.116271388,5280,45411,,,0.008213869,373,45411,,,0.007421109,337,45411,,,0.000968928,44,45411,,,0.110105481,5000,45411,,,0.744599326,33813,45411,,,0.011843559,493,41626,0.005900956,0.017786163,0.482878598,21928,45411,,,0.846620969,36806,43474,, -12,123,12123,FL,Taylor County,2024,1,11568.85846,499,59233,9936.159233,13201.55768,0,,,,2,,,,2,12197.81396,8673.838138,16674.81323,,,,,2,12448.30714,10444.2025,14452.41177,,,,,2,,0.208,,,0.187,0.228,4.38997373,,,4.098775639,4.686928235,5.345038126,,,5.097785105,5.577336196,0.099680511,156,1565,0.084838172,0.11452285,0,,,,,,,0.15060241,0.112129193,0.189075627,,,,0.078699743,0.063263697,0.09413579,,,,,,,0.26,,,0.231,0.287,0.373,,,0.361,0.384,6.5,0.147476266,0.134,,,0.323,,,0.298,0.347,0.640163333,13953,21796,,,0.172672461,,,0.166054172,0.179232817,0.363636364,12,33,0.27296452,0.452301555,403.4,88,21815,,,37.12099745,131,3529,30.7641753,43.4778196,,,,,,,31.43712575,19.46007632,48.05498613,,,,42.36610711,34.30078534,50.43142889,,,,,,,0.152079664,2245,14762,0.131824345,0.172334983,0.0004584,10,21815,,,2181.5,0.000328901,7,21283,,,3040.428571,0.000469859,10,21283,,,2128.3,2129,,,,,,,,,2186,0.36,,,,,,,0.38,,0.36,0.3,,,,,,,0.32,,0.3,0.832649972,13200,15853,0.804772964,0.860526979,0.347849755,1917,5511,0.279041192,0.416658318,0.033395176,270,8085,,,0.274,1180,,0.176297872,0.371702128,,,,,,,0.173371648,0,0.357760385,0.191780822,0,0.685038724,0.27949677,0.138780287,0.420213252,4.085620915,93765,22950,3.223504684,4.947737146,0.330945559,1386,4188,0.196455884,0.465435234,12.37680495,27,21815,,,111.5824419,121,108440,91.70047953,131.4644043,,,,,,,76.12884808,43.51421446,123.6284798,,,,133.5911855,108.0383426,159.1440285,,,,7.9,,,,,0,,,,,0.108089261,775,7170,0.066867663,0.149310859,0.070771408,0.035944705,0.105598111,0.041143654,0.013065912,0.069221396,0.006276151,0,0.014562762,0.78583346,5181,6593,0.731239647,0.840427272,,,,,,,,,,,,,0.775129342,0.705560863,0.844697822,0.207,,6593,0.145756983,0.268243017,73.53483951,,,72.29737349,74.77230553,,,,,,,73.56328511,70.17734814,76.94922208,,,,72.73148782,71.29076465,74.17221099,,,,589.8347669,499,59233,534.9186351,644.7508987,,,,,,,636.9119772,507.2968346,789.5482226,,,,622.5971131,556.0129757,689.1812505,,,,64.23982869,12,18680,33.1936569,112.2140527,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.135,,,0.124,0.146,0.177,,,0.167,0.187,0.115,,,0.109,0.121,656.2,123,18745,,,0.134,2920,,,,0.147476266,3328.539322,22570,,,16.92724363,11,64984,8.450019031,30.28751464,,,,,,,,,,,,,,,,,,,0.41,,,0.397,0.422,0.182876064,1933,10570,0.155471809,0.21028032,0.075660893,332,4388,0.053022596,0.098299191,0.001409576,30,21283,,,709.4333333,0.875,113.75,130,,,,,,,,3.149908457,,,,,,,2.910015495,,3.234187295,3.337150249,,,,,,,3.101229678,,3.444450083,0.023971756,,,,,-5463.936,,,,,0.878606032,40263,45826,0.651598273,1.10561379,48482,,,41676.21277,55287.78723,,,,,,,34881,17771.21277,51990.78723,,,,46484,39716.34043,53251.65957,,,,,,0.659883721,1816,2752,,,55.303502,,,,,0.249680294,,48482,,,7.567567568,7,925,,,11.10327351,17,153108,6.468065986,17.77741648,,,,,,,,,,,,,11.71107868,6.235656173,20.02630121,,,,17.34481695,21,108440,10.44271284,27.0860802,19.36554777,,,,,,,,,,,,,20.226564,11.56122897,32.84667275,,,,19.36554777,21,108440,11.98757929,29.60229688,,,,,,,,,,,,,22.90134609,13.57278911,36.19400019,,,,24.81908196,38,153108,17.56345955,34.06612909,,,,,,,,,,,,,28.8272706,19.71783175,40.69550482,,,,18.42105263,,1900,,,23,12,0.588266047,10127,17215,,,0.386,,,,,21.3003886,,,,,0.774146015,5779,7465,0.727265756,0.821026273,0.086606244,602,6951,0.049620235,0.123592253,0.797186872,5951,7465,0.735196268,0.859177476,21283,,,,,0.206596814,4397,21283,,,0.219705869,4676,21283,,,0.182070197,3875,21283,,,0.010007988,213,21283,,,0.008927313,190,21283,,,0.000610816,13,21283,,,0.041817413,890,21283,,,0.736174412,15668,21283,,,0.01009313,207,20509,0.002088957,0.018097303,0.4694357,9991,21283,,,0.700357864,15265,21796,, -12,125,12125,FL,Union County,2024,1,17760.75004,552,43874,15452.14237,20069.35771,0,,,,2,,,,2,15017.16167,11764.78508,18269.53826,,16228.86381,9453.911219,25983.98307,1,18493.31503,15672.04736,21314.5827,,,,,2,,0.212,,,0.19,0.237,4.356816911,,,4.032109473,4.69315956,5.27038714,,,5.022568899,5.52091554,0.090390105,95,1051,0.07305435,0.107725859,0,,,,,,,0.148148148,0.08822159,0.208074707,,,,0.083529412,0.06492887,0.102129953,,,,,,,0.264,,,0.232,0.293,0.359,,,0.346,0.373,6.2,0.194967706,0.122,,,0.317,,,0.293,0.345,0.053260668,860,16147,,,0.190382806,,,0.182147737,0.199038284,0.318181818,7,22,0.204127461,0.433005911,428.5,70,16335,,,28.47113885,73,2564,22.31682797,35.7981826,,,,,,,,,,,,,30.12048193,22.98510088,38.77103083,,,,,,,0.10137893,919,9065,0.085889568,0.116868292,0.000306091,5,16335,,,3267,0.000258732,4,15460,,,3865,0.000582148,9,15460,,,1717.777778,3331,,,,,,,4924,,3332,0.37,,,,,,,0.33,,0.37,0.34,,,,,,,0.23,,0.34,0.779309723,8648,11097,0.737050465,0.821568981,0.320102136,1379,4308,0.238190139,0.402014132,0.029216468,132,4518,,,0.188,636,,0.120085106,0.255914894,,,,,,,0.323432343,0.13910206,0.507762626,0.051886793,0,0.268350157,0.210227273,0.11210151,0.308353036,3.321604735,111111,33451,2.886946254,3.756263216,0.241828087,799,3304,0.128214905,0.355441269,4.285277013,7,16335,,,107.4976364,83,77211,85.6212673,133.2594939,,,,,,,64.02421279,31.96065635,114.557002,,,,128.8996824,100.2916469,163.1307979,,,,7.7,,,,,0,,,,,0.127182045,510,4010,0.082023257,0.172340833,0.078282828,0.044094764,0.112470893,0.044638404,0.011124312,0.078152496,0.009975062,0,0.026300632,0.880710059,3721,4225,0.816818743,0.944601375,,,,,,,,,,,,,0.846872985,0.774306137,0.919439833,0.515,,4225,0.407527924,0.622472076,67.43611423,,,66.0089676,68.86326086,,,,,,,67.35425375,65.41146377,69.29704372,,,,67.46829997,65.73871962,69.19788032,,,,971.0302381,552,43874,887.7214223,1054.339054,,,,,,,1128.7414,919.5329997,1337.9498,1119.410644,743.8402437,1617.860055,965.7358466,866.4173715,1065.054322,,,,87.78988953,12,13669,45.36231699,153.3512697,,,,,,,,,,,,,97.52291789,46.7660298,179.3481182,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.136,,,0.125,0.147,0.168,,,0.158,0.178,0.122,,,0.115,0.129,1683.5,235,13959,,,0.122,1970,,,,0.194967706,3028.823319,15535,,,,,,,,,,,,,,,,,,,,,,,,,,0.401,,,0.387,0.414,0.133206634,771,5788,0.109376847,0.157036422,0.046586581,159,3413,0.031097219,0.062075942,0.000646831,10,15460,,,1546,0.925,135.975,147,,,,,,,,3.432279767,,,,,,,3.077353894,,3.505304026,3.532251406,,,,,,,3.326271501,,3.59117106,0.008210215,,,,,-3419.167,,,,,0.840710088,42054,50022,0.644160086,1.037260089,60749,,,53859.80851,67638.19149,,,,,,,,,,,,,67316,56821.3617,77810.6383,,,,,,0.433882552,1027,2367,,,17.58370536,,,,,0.163508864,,60749,,,3.636363636,3,825,,,,,,,,,,,,,,,,,,,,,,,,,,22.56597432,17,77211,12.8984041,36.64572853,22.01758817,,,,,,,,,,,,,27.444482,14.61303081,46.93090004,,,,,,,,,,,,,,,,,,,,,,,,,,,25.09596884,27,107587,16.5384016,36.51331708,,,,,,,,,,,,,30.82779327,19.54217649,46.25682621,,,,19.28571429,,1400,,,21,6,0.510420924,6245,12235,,,0.535,,,,,11.70064548,,,,,0.697361993,2855,4094,0.645376172,0.749347815,0.064886515,243,3745,0.028114246,0.101658785,0.881289692,3608,4094,0.841167335,0.92141205,15460,,,,,0.224191462,3466,15460,,,0.158538163,2451,15460,,,0.197089263,3047,15460,,,0.005950841,92,15460,,,0.00698577,108,15460,,,0.000452781,7,15460,,,0.058926261,911,15460,,,0.712807245,11020,15460,,,0.003340378,49,14669,0,0.010598089,0.387839586,5996,15460,,,1,16147,16147,, -12,127,12127,FL,Volusia County,2024,1,10895.90516,11281,1497081,10562.10846,11229.70185,0,,,,2,4372.330942,2801.434936,6505.681861,1,13101.70427,12098.37544,14105.0331,,6281.190065,5689.57869,6872.80144,,12129.94419,11681.18598,12578.70239,,,,,2,,0.162,,,0.144,0.18,3.669976989,,,3.387381746,3.977574659,5.225330609,,,4.983558469,5.47218363,0.088087273,3028,34375,0.085091093,0.091083453,0,,,,0.100299401,0.077518756,0.123080046,0.142882531,0.133738717,0.152026344,0.077559779,0.071069155,0.084050404,0.076487252,0.072877655,0.080096849,,,,0.074554295,0.053827827,0.095280763,0.2,,,0.174,0.225,0.351,,,0.338,0.363,7.3,0.108403559,0.113,,,0.259,,,0.237,0.281,0.81680014,452134,553543,,,0.201370199,,,0.194113843,0.208523303,0.233024691,151,648,0.213461032,0.253041992,340.2,1920,564412,,,17.96891378,1800,100173,17.13879232,18.79903524,,,,,,,24.04455964,21.78756954,26.30154974,18.75314458,16.93788706,20.5684021,15.93250379,14.86950026,16.99550731,,,,21.24226943,16.81770475,26.47420575,0.159466592,65687,411917,0.146360209,0.172572975,0.000675039,381,564412,,,1481.396326,0.000493791,286,579192,,,2025.146853,0.001671294,968,579192,,,598.338843,2795,,,,,,472,4517,3174,2706,0.48,,,,,,0.47,0.43,0.4,0.49,0.42,,,,,0.18,0.4,0.28,0.29,0.43,0.915784654,380014,414960,0.910984534,0.920584774,0.633844774,79152,124876,0.610247767,0.657441781,0.031492778,8379,266061,,,0.174,17064,,0.125148936,0.222851064,0.073033708,0,0.344508261,0.18902439,0.077547367,0.300501413,0.33117752,0.267353776,0.395001264,0.159559712,0.129020434,0.19009899,0.107726781,0.089340964,0.126112597,4.190264853,117076,27940,4.04265968,4.337870027,0.294037801,28594,97246,0.267963883,0.32011172,7.529960384,425,564412,,,126.9606856,3511,2765423,122.7610664,131.1603048,,,,23.01098775,11.89011315,40.19556472,92.48418763,81.39070451,103.5776708,59.51864596,52.09596769,66.94132424,151.0246675,145.5728637,156.4764714,,,,7.5,,,,,1,,,,,0.159584364,35170,220385,0.150680203,0.168488525,0.148172173,0.139565166,0.15677918,0.010799283,0.008876457,0.01272211,0.007305397,0.005836162,0.008774633,0.76341862,184545,241735,0.756242016,0.770595223,,,,0.682009973,0.624974991,0.739044955,0.72304684,0.681177102,0.764916578,0.648068255,0.612936747,0.683199763,0.764179358,0.754398903,0.773959813,0.376,,241735,0.360975891,0.391024109,75.29581861,,,75.04558234,75.54605488,,,,86.01069503,83.3977835,88.62360657,72.34269113,71.57865107,73.1067312,80.55845139,79.86189678,81.25500601,74.39521383,74.0805274,74.70990026,,,,499.0065869,11281,1497081,488.725631,509.2875429,,,,178.8771375,136.1695649,230.7384747,657.9340926,619.3696435,696.4985417,298.4921471,277.1373865,319.8469077,536.6877849,523.6500383,549.7255315,,,,51.11676562,226,442125,44.45230175,57.78122949,,,,,,,69.09085447,50.58318901,92.1575177,38.84578224,27.62314859,53.10346312,52.5098914,43.44834463,61.57143817,,,,6.156449683,211,34273,5.325747833,6.987151534,,,,,,,7.767341041,5.621263225,10.46255741,5.18386522,3.545759973,7.318070967,5.876498744,4.842157419,6.910840069,,,,,,,0.113,,,0.103,0.123,0.165,,,0.155,0.175,0.102,,,0.096,0.108,387.9,1919,494733,,,0.113,61990,,,,0.108403559,53615.64166,494593,,,51.45328738,864,1679193,48.02235367,54.8842211,,,,,,,32.42283933,24.55674188,42.00754906,23.76690038,18.22194624,30.46809366,62.11227687,57.606475,66.61807875,,,,0.358,,,0.344,0.371,0.188703875,59270,314090,0.172023024,0.205384726,0.068736746,7066,102798,0.053247384,0.084226108,0.001217213,705,579192,,,821.5489362,0.92,4365.4,4745,,,0.047017209,1183,25161,0.033309377,0.060725042,3.179771751,,,,,,3.539752845,2.767859945,2.981515672,3.357182617,3.208241943,,,,,,3.693602696,2.738184374,3.027209115,3.40113296,0.11302554,,,,,-4853.033,,,,,0.818043076,42881,52419,0.779469322,0.85661683,64601,,,61971.38298,67230.61702,47304,31197.44681,63410.55319,68058,46761.31915,89354.68085,51598,47481.40426,55714.59575,60124,55272.25532,64975.74468,65126,63208.89362,67043.10638,,,,,,0.616534993,38629,62655,,,53.07690533,,,,,0.247287194,,64601,,,5.674876847,144,25375,,,5.639086898,215,3812674,4.885305131,6.392868666,,,,,,,18.38133464,14.40803212,23.11176863,3.819695807,2.364451907,5.83881079,4.233252975,3.459537339,5.006968611,,,,20.33694635,620,2765423,18.60004102,22.07385169,22.41971662,,,,,,,9.040010268,5.730591049,13.56445401,8.964032521,6.343482924,12.30383499,25.17968576,22.7753831,27.58398842,,,,17.24871747,477,2765423,15.70077901,18.79665592,,,,,,,19.05104989,14.35185799,24.79756007,9.397680942,6.68266983,12.84693922,19.26230495,17.31528499,21.20932491,,,,20.43185439,779,3812674,18.99704197,21.86666681,,,,,,,21.15112479,16.87096548,26.18653171,14.36933184,11.37633534,17.90847484,22.27059174,20.49595225,24.04523123,,,,19.19463087,,44700,,,454,404,0.705183843,307439,435970,,,0.652,,,,,80.64057373,,,,,0.721115041,167784,232673,0.71289106,0.729339023,0.158563724,35840,226029,0.149658739,0.16746871,0.874983346,203585,232673,0.867135919,0.882830772,579192,,,,,0.17323271,100335,579192,,,0.254551168,147434,579192,,,0.106146148,61479,579192,,,0.005150278,2983,579192,,,0.020495794,11871,579192,,,0.000985856,571,579192,,,0.166908383,96672,579192,,,0.685007735,396751,579192,,,0.012677617,6762,533381,0.010848606,0.014506628,0.509620299,295168,579192,,,0.085370062,47256,553543,, -12,129,12129,FL,Wakulla County,2024,1,9183.473929,604,96898,7958.577253,10408.37061,0,,,,2,,,,2,7474.035854,5144.78238,10496.32516,,,,,2,9936.86878,8507.394736,11366.34282,,,,,2,,0.155,,,0.137,0.174,3.674810397,,,3.349329472,4.005813211,5.092969139,,,4.795486685,5.366988205,0.076219512,175,2296,0.065365568,0.087073457,0,,,,,,,0.111607143,0.070370758,0.152843528,,,,0.069636457,0.058347609,0.080925305,,,,,,,0.211,,,0.181,0.241,0.33,,,0.315,0.344,9.1,0.032366197,0.069,,,0.26,,,0.234,0.285,0.712326739,24051,33764,,,0.198284334,,,0.18958194,0.207222674,0.545454546,18,33,0.46962891,0.613835555,383.4,133,34690,,,19.69057665,126,6399,16.25239171,23.12876159,,,,,,,23.1884058,13.25417747,37.65651826,,,,21.03786816,17.01382018,25.06191615,,,,,,,0.127035956,3307,26032,0.109163615,0.144908296,0.000317094,11,34690,,,3153.636364,0.000113707,4,35178,,,8794.5,0.000767525,27,35178,,,1302.888889,3021,,,,,,,4588,,2855,0.37,,,,,,,0.42,,0.36,0.32,,,,,,,0.23,0.36,0.33,0.884222661,21476,24288,0.858195102,0.910250221,0.496361632,4502,9070,0.421842318,0.570880945,0.025139141,402,15991,,,0.156,1107,,0.1,0.212,,,,,,,0.032528856,0,0.123613119,,,,0.074494233,0.024621285,0.124367182,4.118819309,126283,30660,3.36264624,4.874992377,0.170815945,1187,6949,0.105016102,0.236615787,6.34188527,22,34690,,,93.82713098,157,167329,79.15021926,108.5040427,,,,,,,67.41573034,37.73207251,111.1919949,,,,106.2066888,88.67602404,123.7373535,,,,8.3,,,,,0,,,,,0.095782074,1090,11380,0.069291277,0.122272871,0.069530558,0.046219591,0.092841525,0.025483304,0.010639245,0.040327363,0.005184534,0,0.011377677,0.832680693,12546,15067,0.796134335,0.869227051,,,,,,,,,,,,,0.800920245,0.708938498,0.892901993,0.567,,15067,0.482161272,0.651838728,74.93771581,,,73.96773622,75.9076954,,,,,,,75.55418211,73.29989189,77.80847232,,,,74.18969335,73.09979906,75.27958763,,,,461.0904351,604,96898,422.9237372,499.2571329,,,,,,,459.8576634,350.9198428,591.9279673,,,,490.6461257,446.861466,534.4307854,,,,71.46337502,22,30785,44.78571666,108.1964086,,,,,,,,,,,,,69.63788301,40.56663309,111.4969966,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.11,,,0.1,0.12,0.167,,,0.155,0.178,0.094,,,0.088,0.1,363,108,29750,,,0.069,2300,,,,0.032366197,996.1020926,30776,,,18.49184412,19,102748,11.13329813,28.87730522,,,,,,,,,,,,,19.7280002,11.27625668,32.03703636,,,,0.367,,,0.352,0.381,0.145527723,2748,18883,0.124080915,0.166974532,0.08072882,607,7519,0.056899033,0.104558608,0.00045483,16,35178,,,2198.625,0.96,342.72,357,,,,,,,,3.3302402,,,,,,,3.086998521,,3.410090034,3.342546926,,,,,,,2.871261618,,3.421027242,0.015677657,,,,,-1365.502,,,,,0.926681716,51315,55375,0.817392878,1.035970553,63482,,,55615.78723,71348.21277,85921,56295.80851,115546.1915,,,,44949,1335.723404,88562.2766,94453,26803.80851,162102.1915,72320,65937.19149,78702.80851,,,,,,0.428373839,2168,5061,,,21.56525517,,,,,0.21968432,,63482,,,4.430379747,7,1580,,,5.200275615,12,230757,2.687058295,9.083834964,,,,,,,,,,,,,,,,,,,19.59298647,35,167329,13.48691035,27.51583759,20.91687633,,,,,,,,,,,,,24.16667965,16.42008633,34.30267272,,,,17.92875114,30,167329,12.09645311,25.59440706,,,,,,,,,,,,,21.09068997,14.01461032,30.48191921,,,,27.73480328,64,230757,21.35917807,35.41672461,,,,,,,35.2417262,17.59254275,63.05718295,,,,28.9864584,21.71284643,37.91500127,,,,15.58823529,,3400,,,22,31,0.719046689,18404,25595,,,0.635,,,,,12.38227865,,,,,0.811850486,9687,11932,0.77542694,0.848274032,0.090272374,1044,11565,0.056771123,0.123773624,0.876718069,10461,11932,0.843108618,0.91032752,35178,,,,,0.206577975,7267,35178,,,0.166552959,5859,35178,,,0.132923987,4676,35178,,,0.007533117,265,35178,,,0.00696458,245,35178,,,0.001193928,42,35178,,,0.04514185,1588,35178,,,0.785519359,27633,35178,,,0.00718999,231,32128,0.002331885,0.012048095,0.464466428,16339,35178,,,0.70015401,23640,33764,, -12,131,12131,FL,Walton County,2024,1,8760.332908,1225,213509,7965.949644,9554.716171,0,,,,2,,,,2,8434.035432,5558.082494,12271.07875,,5629.313563,3642.994926,8309.977301,1,9301.639915,8376.776089,10226.50374,,,,,2,,0.144,,,0.125,0.165,3.634574605,,,3.298135728,4.008991632,5.336650051,,,5.027649654,5.665519401,0.078194208,459,5870,0.071325991,0.085062425,0,,,,,,,0.114478115,0.078267264,0.150688965,0.073800738,0.055828864,0.091772612,0.077326343,0.069588749,0.085063938,,,,,,,0.191,,,0.158,0.224,0.295,,,0.28,0.31,7.5,0.100732111,0.11,,,0.246,,,0.218,0.273,0.752645907,56678,75305,,,0.200584117,,,0.192466611,0.209128989,0.28030303,37,132,0.235880425,0.325803012,329.7,264,80069,,,25.49302549,318,12474,22.69105284,28.29499814,,,,,,,27.02702703,16.73015571,41.31368177,51.86533212,39.28229605,67.1975536,23.08787632,20.08437982,26.09137282,,,,23.98523985,12.77113006,41.01549062,0.153736984,9641,62711,0.134673154,0.172800814,0.000449612,36,80069,,,2224.138889,0.000516182,43,83304,,,1937.302326,0.000840296,70,83304,,,1190.057143,2755,,,,,,,4390,,2673,0.41,,,,,,0.3,0.35,0.35,0.41,0.37,,,,,,0.31,0.25,0.15,0.37,0.918974959,51855,56427,0.905308702,0.932641215,0.616526551,11587,18794,0.555995681,0.677057421,0.025525354,894,35024,,,0.179,2967,,0.130148936,0.227851064,,,,,,,0.277039848,0.042995438,0.511084259,0.377088306,0.247368648,0.506807963,0.152680254,0.102406188,0.202954319,4.134831782,144409,34925,3.531225712,4.738437853,0.21101154,3273,15511,0.157479437,0.264543643,10.74073612,86,80069,,,92.56785386,343,370539,82.77139303,102.3643147,,,,,,,69.22626338,36.86006971,118.3790187,45.86199708,22.8941437,82.05978117,100.8083934,89.65805777,111.9587291,,,,8.8,,,,,1,,,,,0.141959141,4065,28635,0.120673116,0.163245166,0.114431359,0.095431211,0.133431506,0.023572551,0.012007157,0.035137945,0.008555963,0.003647326,0.0134646,0.721855481,24385,33781,0.696064307,0.747646655,,,,,,,0.85980663,0.779496099,0.940117161,0.546070461,0.449357947,0.642782975,0.736452463,0.706462217,0.766442709,0.39,,33781,0.347605744,0.432394256,77.58518555,,,76.89370749,78.27666362,,,,,,,75.41824987,72.40559061,78.43090913,80.2872144,76.69675823,83.87767057,77.12886052,76.36278417,77.89493687,,,,396.6960582,1225,213509,372.6390305,420.7530858,,,,,,,483.664446,369.086926,622.5720156,293.7999999,203.4650408,410.5560516,410.8950466,384.0216652,437.7684279,,,,42.01428486,28,66644,27.91818717,60.72233951,,,,,,,,,,,,,44.69404015,28.33218755,67.06300479,,,,5.086826873,29,5701,3.406727791,7.305531914,,,,,,,,,,,,,5.115658363,3.242888576,7.675999309,,,,,,,0.107,,,0.096,0.119,0.162,,,0.149,0.174,0.094,,,0.087,0.101,152.3,104,68291,,,0.11,8050,,,,0.100732111,5544.597583,55043,,,32.93065497,76,230788,25.94561064,41.21762525,,,,,,,,,,,,,37.66070286,29.51997922,47.35267968,,,,0.365,,,0.347,0.381,0.166634176,7693,46167,0.143995878,0.189272474,0.119134621,2054,17241,0.086964408,0.151304834,0.000876309,73,83304,,,1141.150685,0.91,602.42,662,,,,,,,,3.382544533,,,,,,,2.848068621,3.064349608,3.474121578,3.419259344,,,,,,,2.796414358,3.036169215,3.516639245,0.032632651,,,,,793.9277,,,,,0.901136141,50524,56067,0.784377029,1.017895253,78814,,,69296.38298,88331.61702,63828,58021.87234,69634.12766,,,,63869,17124.48936,110613.5106,66667,23676.87234,109657.1277,74985,68075.55319,81894.44681,,,,,,0.417969809,4624,11063,,,66.97990992,,,,,0.18702261,,78814,,,5.138986218,22,4281,,,4.000512066,20,499936,2.4436167,6.178466424,,,,,,,,,,,,,3.329322293,1.820171478,5.586037089,,,,14.43733004,59,370539,10.78248862,18.93263755,15.92275037,,,,,,,,,,,,,16.39292369,12.08684786,21.73463854,,,,12.41434775,46,370539,9.088862821,16.55900019,,,,,,,,,,,,,13.80497107,9.990726017,18.59520544,,,,20.60263714,103,499936,16.62376235,24.58151193,,,,,,,,,,,,,22.35402111,18.0643245,27.3556605,,,,17.10144928,,6900,,,83,35,0.795540996,43711,54945,,,0.342,,,,,34.27840547,,,,,0.777428472,24482,31491,0.764336078,0.790520866,0.122398543,3764,30752,0.099005048,0.145792039,0.895144645,28189,31491,0.87631676,0.913972529,83304,,,,,0.203411601,16945,83304,,,0.20466004,17049,83304,,,0.048797177,4065,83304,,,0.008306924,692,83304,,,0.013516758,1126,83304,,,0.001752617,146,83304,,,0.070620859,5883,83304,,,0.837018631,69727,83304,,,0.01168344,844,72239,0.006713537,0.016653343,0.493325651,41096,83304,,,0.561476662,42282,75305,, -12,133,12133,FL,Washington County,2024,1,11937.70207,626,71416,10414.72334,13460.68079,0,,,,2,,,,2,14039.54481,9402.503501,20163.12826,,,,,2,11761.72134,10110.431,13413.01167,,,,,2,,0.223,,,0.2,0.247,4.836161994,,,4.501785476,5.187859699,5.647698381,,,5.373097998,5.914741931,0.099778271,180,1804,0.085948004,0.113608537,0,,,,,,,0.141509434,0.09459045,0.188428418,,,,0.090034364,0.075326784,0.104741944,,,,,,,0.28,,,0.249,0.31,0.368,,,0.354,0.381,5.6,0.217164215,0.143,,,0.311,,,0.285,0.336,0.613160597,15524,25318,,,0.173307685,,,0.1660319,0.181152549,0.086956522,4,46,0.032361555,0.166916509,507.2,129,25436,,,34.67314488,157,4528,29.24939717,40.09689258,,,,,,,42.78074866,27.4104329,63.65436291,,,,34.82880756,28.54455438,41.11306073,,,,,,,0.173972156,3199,18388,0.152525347,0.195418964,0.000314515,8,25436,,,3179.5,0.000314787,8,25414,,,3176.75,0.000275439,7,25414,,,3630.571429,3475,,,,,,,7129,,3180,0.3,,,,,,,0.38,,0.3,0.29,,,,,,0.5,0.3,,0.29,0.830663741,15143,18230,0.800079579,0.861247903,0.398777579,2675,6708,0.341181783,0.456373375,0.031955079,313,9795,,,0.273,1357,,0.18006383,0.36593617,0.396226415,0.22894799,0.56350484,,,,0.198675497,0,0.425950768,0.169491525,0,0.420311159,0.363192182,0.269374867,0.457009498,4.081649684,92931,22768,3.567380269,4.595919099,0.359847726,1796,4991,0.257963588,0.461731864,10.22173298,26,25436,,,106.8985177,135,126288,88.865813,124.9312224,,,,,,,87.69525898,50.12541767,142.4116065,,,,117.8290761,96.29334483,139.3648074,,,,8.6,,,,,1,,,,,0.118428334,1070,9035,0.089173109,0.147683559,0.09249859,0.066389333,0.118607847,0.022136137,0.008357026,0.035915248,0.010514665,0.001969185,0.019060146,0.832884097,7107,8533,0.793255807,0.872512387,,,,,,,0.920952381,0.763208817,1,,,,0.836308006,0.810598792,0.862017221,0.573,,8533,0.493517746,0.652482254,71.75220692,,,70.66618208,72.83823176,,,,,,,69.77894824,66.34359531,73.21430116,,,,71.66990179,70.4861259,72.85367767,,,,636.0463204,626,71416,584.4067475,687.6858933,,,,,,,593.5889844,458.1194464,756.577888,,,,659.0251966,600.6688356,717.3815575,,,,85.46239655,19,22232,51.4539455,133.4601186,,,,,,,,,,,,,66.08988224,32.99183109,118.2530552,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.151,,,0.138,0.163,0.188,,,0.177,0.199,0.124,,,0.117,0.132,680.2,149,21906,,,0.143,3570,,,,0.217164215,5406.520284,24896,,,23.42499447,18,76841,13.88313632,37.02159039,,,,,,,,,,,,,30.38487508,18.00800267,48.02120234,,,,0.398,,,0.384,0.41,0.204272363,2754,13482,0.176868108,0.231676619,0.092599768,478,5162,0.066387002,0.118812534,0.00098371,25,25414,,,1016.56,0.88,218.24,248,,,,,,,,3.36712326,,,,,,,3.047364065,,3.417657844,3.497349982,,,,,,,3.305034445,,3.567202619,0.011679167,,,,,-6311.762,,,,,0.737392412,35897,48681,0.620720734,0.85406409,49233,,,44422.95745,54043.04255,21865,6467.382979,37262.61702,,,,29943,17955.42553,41930.57447,51094,36049.06383,66138.93617,48857,41599.6383,56114.3617,,,,,,0.585203153,1930,3298,,,24.71308619,,,,,0.354112079,,49233,,,5.060728745,5,988,,,8.544866244,15,175544,4.782496772,14.09345741,,,,,,,,,,,,,,,,,,,19.34884453,26,126288,12.52155199,28.56271143,20.58786266,,,,,,,,,,,,,24.08680354,15.26896726,36.14203183,,,,17.42049918,22,126288,10.91733409,26.37484511,,,,,,,,,,,,,18.44281191,10.93037919,29.147594,,,,23.92562548,42,175544,17.24348638,32.34049513,,,,,,,38.99395594,18.69911755,71.71127332,,,,22.09912193,14.91018476,31.54787067,,,,9.583333333,,2400,,,13,10,0.623362832,12327,19775,,,0.54,,,,,16.43415615,,,,,0.783507422,7126,9095,0.748470058,0.818544786,0.098992706,855,8637,0.069511819,0.128473592,0.830566245,7554,9095,0.802719171,0.85841332,25414,,,,,0.201188321,5113,25414,,,0.181514126,4613,25414,,,0.12933816,3287,25414,,,0.014440859,367,25414,,,0.007987723,203,25414,,,0.004485717,114,25414,,,0.046903282,1192,25414,,,0.772015425,19620,25414,,,0.009296315,223,23988,0.001218428,0.017374202,0.467340836,11877,25414,,,1,25318,25318,, -13,000,13000,GA,Georgia,2024,,8920.930413,160570,30324566,8857.292335,8984.568491,0,4221.521025,2954.672293,5488.369757,,3355.206357,3169.076753,3541.335961,,11518.71628,11390.58075,11646.8518,,5267.230137,5114.838227,5419.622048,,8567.280791,8479.12195,8655.439632,,8460.759388,6318.899796,11095.16029,,,0.176,,,0.164,0.19,3.551562041,,,3.29321723,3.809906853,4.824043258,,,4.510471157,5.137615359,0.101159526,89397,883723,0.100530827,0.101788225,0,0.088541667,0.068449919,0.108633414,0.097500748,0.094597029,0.100404467,0.148200225,0.146933568,0.149466882,0.075195619,0.07376615,0.076625088,0.073636319,0.072811623,0.074461015,0.096103896,0.075285826,0.116921966,0.096531264,0.092159261,0.100903267,0.156,,,0.143,0.17,0.342,,,0.325,0.36,6.4,0.100236852,0.107,,,0.231,,,0.218,0.245,0.741336557,7941129,10711908,,,0.166052684,,,0.151852484,0.181296941,0.198474237,1587,7996,0.193036584,0.203964588,629.1,67941,10799566,,,19.56192422,49342,2522349,19.38931688,19.73453157,8.028196593,5.761172483,10.89115519,2.731515598,2.410417777,3.052613419,23.17930874,22.86110019,23.49751729,30.53067544,29.93281203,31.12853884,14.72799431,14.5044886,14.95150003,17.69911504,11.76093341,25.58014914,22.00797331,20.93725098,23.07869565,0.147685578,1311686,8881612,0.14411111,0.151260046,0.000659378,7121,10799566,,,1516.579975,0.000538813,5880,10912876,,,1855.931293,0.001789721,19531,10912876,,,558.7464032,3076,,,,,3662,1691,4066,2466,2855,0.41,,,,,0.39,0.32,0.39,0.27,0.43,0.43,,,,,0.34,0.47,0.31,0.3,0.46,0.887039821,6349981,7158620,0.885226356,0.888853285,0.652573762,1889419,2895334,0.647404952,0.657742571,0.030413091,159191,5234292,,,0.172,426470,,0.163659575,0.180340426,0.278135937,0.214345749,0.341926124,0.101740473,0.090212745,0.113268201,0.276920546,0.270303168,0.283537925,0.263834387,0.254118798,0.273549976,0.103543168,0.099885003,0.107201332,4.848714018,142334,29355,4.798512906,4.89891513,0.305688461,766556,2507638,0.300968487,0.310408434,8.907765368,9620,10799566,,,72.88624245,38685,53075860,72.15991855,73.61256634,30.4008808,21.40502565,41.90360961,26.40924876,24.30133197,28.51716554,72.29941303,71.01355778,73.58526829,34.7341373,33.14053058,36.32774403,86.66689417,85.56806919,87.76571916,48.90960355,28.49164644,78.30901322,9.4,,,,,0.213836478,,,,,0.152405904,583755,3830265,0.150191243,0.154620565,0.130329859,0.128253258,0.13240646,0.021880993,0.021040196,0.022721789,0.007650907,0.007192057,0.008109757,0.741699478,3716507,5010799,0.739014497,0.744384458,0.53407193,0.503883894,0.564259965,0.651927747,0.640616401,0.663239093,0.741731929,0.736995805,0.746468054,0.648837408,0.642484577,0.655190239,0.771181447,0.767383215,0.77497968,0.422,,5010799,0.418847616,0.425152385,76.14894885,,,76.0935924,76.2043053,129.2898024,107.5797948,150.99981,86.09211858,85.61608545,86.56815171,73.70021889,73.59346756,73.80697021,85.680003,85.12385166,86.23615433,76.31074476,76.23846399,76.38302553,77.47655268,75.06354909,79.88955627,441.8479639,160570,30324566,439.6407106,444.0552171,159.7312411,129.3181376,190.1443446,172.6747656,165.7716949,179.5778363,551.9113775,547.3900023,556.4327527,243.7476898,236.9145471,250.5808324,433.0252599,430.0973585,435.9531613,385.9009664,303.0152599,484.4633247,59.5295516,6677,11216278,58.10165094,60.95745226,,,,32.75345972,27.52919977,37.97771967,89.79479396,86.7777874,92.81180052,43.13153005,39.96999563,46.29306448,47.38005211,45.44326396,49.31684026,,,,7.016356889,6243,889778,6.842308072,7.190405706,,,,3.140891415,2.592458235,3.689324595,11.12692033,10.75257266,11.501268,5.02745098,4.638249126,5.416652835,5.041819246,4.819344971,5.264293521,,,,5.857988166,4.761083719,7.1318904,0.108645783,,,0.098935267,0.119183324,0.150222859,,,0.13758898,0.163796489,0.113,,,0.104,0.122,657.1,59422,9043595,,,0.107,1156660,,,,0.100236852,971059.8425,9687653,,,18.1280509,5824,32127006,17.66246856,18.59363324,14.88618832,7.431131577,26.6355029,3.265568063,2.390806248,4.35581017,13.92802919,13.20435465,14.65170372,6.177244707,5.318973903,7.03551551,24.8431223,24.08387563,25.60236896,,,,0.358165828,,,0.341244872,0.375447626,0.180063845,1157416,6427809,0.175297887,0.184829802,0.065780873,169768,2580811,0.061014915,0.07054683,0.001360045,14842,10912876,,,735.2699097,0.845761336,109483.805,129450,,,0.078752952,47447,602479,0.074556388,0.082949517,2.983253513,,,,,,3.703455796,2.607701951,2.756130273,3.367335223,2.884971463,,,,,,3.924733743,2.469593487,2.711074376,3.261460944,0.252753427,,,,,-6771.898,,,,,0.812815667,47314,58210,0.80594747,0.819683864,72742,,,71986.59575,73497.40426,51024,45257.19149,56790.80851,98644,94992.08511,102295.9149,55010,54358.25532,55661.74468,63786,62239.44681,65332.55319,82329,81702.2766,82955.7234,,,,,,,,,,,56.50145827,,,,,0.241904919,,,,,10.15625,,,,,8.505308705,6260,73601091,8.294611398,8.716006013,,,,2.713789248,2.164624586,3.359855748,19.77501559,19.20229847,20.34773271,4.497148488,4.006701538,4.987595437,3.216700341,3.037730115,3.395670567,,,,14.35141288,7769,53075860,14.02748832,14.67533743,14.63753955,,,,8.25034041,7.057120998,9.443559823,8.119011123,7.686340813,8.551681433,6.819388452,6.038304972,7.600471932,19.77435863,19.24532716,20.30339011,,,,17.13585046,9095,53075860,16.78367395,17.48802697,,,,5.868721946,4.875040443,6.862403449,23.94304152,23.2030711,24.68301193,6.85166544,6.143881067,7.559449813,16.44270224,15.96408482,16.92131967,,,,15.10303699,11116,73601091,14.82226997,15.38380401,,,,6.041411778,5.175499882,6.907323674,17.22757908,16.69302226,17.7621359,10.35875689,9.6144068,11.10310698,15.92020427,15.52205144,16.31835709,,,,,,,,,,,0.668235697,4999960,7482330,,,,,,,,104.1227656,,,,,0.650166857,2565877,3946490,0.645669785,0.654663929,0.139003831,530193,3814233,0.136989951,0.141017711,0.877748835,3464027,3946490,0.874036912,0.881460758,10912876,,,,,0.230014801,2510123,10912876,,,0.150741839,1645027,10912876,,,0.320931256,3502283,10912876,,,0.00553438,60396,10912876,,,0.04773847,520964,10912876,,,0.001369392,14944,10912876,,,0.104513971,1140548,10912876,,,0.504027353,5500388,10912876,,,0.026783613,270167,10087026,0.026086287,0.027480939,0.511526384,5582224,10912876,,,0.259330271,2777922,10711908,, -13,001,13001,GA,Appling County,2024,1,13263.28092,417,51140,11283.39314,15243.1687,0,,,,2,,,,2,16968.76326,12066.44948,23196.85799,,,,,2,13467.93371,10982.78997,15953.07744,,,,,2,,0.238,,,0.206,0.273,4.839345666,,,3.95469672,5.864929339,5.895599249,,,4.820367123,7.079457779,0.105369128,157,1490,0.089779291,0.120958964,0,,,,,,,0.180212014,0.135429807,0.224994222,0.084070797,0.047891894,0.120249699,0.085287847,0.067413077,0.103162616,,,,,,,0.235,,,0.197,0.28,0.39,,,0.312,0.47,5.4,0.232049083,0.141,,,0.333,,,0.28,0.389,0.383702017,7077,18444,,,0.145829831,,,0.115579855,0.180292504,0.291666667,7,24,0.183021186,0.403882272,443.5,82,18488,,,42.17022371,164,3889,35.71605888,48.62438854,,,,,,,45.34005038,31.75561388,62.76974117,31.03448276,18.39300135,49.04786253,40.63018242,32.98554605,49.5151784,,,,144.9275362,69.4983869,266.5268992,0.200288481,2916,14559,0.176458694,0.224118269,0.000432713,8,18488,,,2311,0.000108531,2,18428,,,9214,0.000922509,17,18428,,,1084,2899,,,,,,,2557,,2522,0.3,,,,,,,0.26,,0.31,0.3,,,,,,,0.28,,0.3,0.784336074,9634,12283,0.746923639,0.821748509,0.515736274,2245,4353,0.4236745,0.607798048,0.035844211,335,9346,,,0.29,1286,,0.193489362,0.386510638,,,,,,,0.6073903,0.426498791,0.78828181,0.601036269,0.393879043,0.808193496,0.281786942,0.17240668,0.391167203,5.531573825,96620,17467,4.107156549,6.955991101,0.393143366,1766,4492,0.2675647,0.518722033,14.06317611,26,18488,,,96.50102465,89,92227,77.49824687,118.7528147,,,,,,,63.57646515,31.73714234,113.7558578,,,,113.6256036,88.90503691,143.0926428,,,,9.1,,,,,0,,,,,0.12481203,830,6650,0.087555759,0.162068301,0.103554869,0.06396113,0.143148608,0.019548872,0.005571928,0.033525817,0.009022556,0.000942695,0.017102418,0.798471161,5745,7195,0.742955704,0.853986617,,,,,,,,,,,,,0.819588639,0.689453029,0.949724248,0.247,,7195,0.180767765,0.313232235,72.2457017,,,70.80897849,73.68242491,,,,,,,68.74678049,65.2618335,72.23172748,,,,72.06441291,70.32016898,73.80865683,,,,625.5822139,417,51140,562.410178,688.7542498,,,,,,,817.2198488,656.2946438,1005.659345,,,,616.1438199,541.8473121,690.4403278,,,,91.19002989,18,19739,54.04499104,144.1195616,,,,,,,,,,,,,112.185019,59.73379782,191.8397991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.154,,,0.135,0.177,0.196,,,0.172,0.225,0.138,,,0.119,0.158,242.1,37,15283,,,0.141,2610,,,,0.232049083,4231.647077,18236,,,18.11627022,10,55199,8.687455744,33.31646595,,,,,,,,,,,,,,,,,,,0.376,,,0.363,0.388,0.24862259,2527,10164,0.217643866,0.279601313,0.090117545,414,4594,0.062713289,0.1175218,0.001627958,30,18428,,,614.2666667,0.87,214.89,247,,,,,,,,2.801534749,,,,,,,2.433114087,2.785914756,2.988568634,2.809729529,,,,,,,2.487230355,2.873392947,2.946576226,0.025516296,,,,,-3534.123,,,,,0.716876396,32415,45217,0.584216475,0.849536317,51217,,,44970.02128,57463.97872,,,,,,,27043,20776.95745,33309.04255,26544,18074.89362,35013.10638,53119,43884.95745,62353.04255,,,,,,,,,,,34.41570369,,,,,0.229298866,,51217,,,5.420054201,6,1107,,,,,,,,,,,,,,,,,,,,,,,,,,12.1957228,11,92227,5.848323123,22.42836844,11.92709293,,,,,,,,,,,,,18.10547164,8.682277405,33.29660698,,,,11.92709293,11,92227,5.95396182,21.34086386,,,,,,,,,,,,,15.78133384,7.56776299,29.02243481,,,,29.43249502,38,129109,20.82818521,40.39839897,,,,,,,,,,,,,31.46633103,20.90914845,45.47760939,,,,,,1800,,,,,0.628323917,8341,13275,,,0.446,,,,,16.33014454,,,,,0.724238026,4990,6890,0.684489522,0.76398653,0.109750202,681,6205,0.068562806,0.150937597,0.692162554,4769,6890,0.649533705,0.734791403,18428,,,,,0.245604515,4526,18428,,,0.186184068,3431,18428,,,0.18558715,3420,18428,,,0.005752116,106,18428,,,0.008845236,163,18428,,,0.002333406,43,18428,,,0.106848274,1969,18428,,,0.679943564,12530,18428,,,0.030413414,526,17295,0.015361583,0.045465246,0.499023226,9196,18428,,,0.709715897,13090,18444,, -13,003,13003,GA,Atkinson County,2024,1,14144.6461,204,23579,11348.81196,16940.48023,0,,,,2,,,,2,12856.60471,6845.60054,21985.18561,1,10718.42685,6453.193138,16738.15124,1,15951.44152,12053.01845,19849.86459,,,,,2,,0.285,,,0.251,0.323,5.269495633,,,4.309507503,6.361758148,5.795217392,,,4.641351394,6.976702022,0.074468085,70,940,0.057684956,0.091251214,0,,,,,,,,,,0.069306931,0.040709545,0.097904316,0.068965517,0.047227511,0.090703523,,,,,,,0.252,,,0.21,0.295,0.397,,,0.318,0.479,6.2,0.149505742,0.145,,,0.374,,,0.319,0.432,,,8286,,,0.142427025,,,0.112478662,0.176521744,0.2,2,10,0.05050879,0.392851974,536.3,45,8391,,,47.10500491,96,2038,38.15520521,57.52327331,,,,,,,27.93296089,13.39494049,51.36970962,41.42857143,27.74536448,59.4983392,56.70665213,42.35124013,74.36322982,,,,,,,0.262793328,1859,7074,0.233006094,0.292580562,,0,8391,,,,0.000122205,1,8183,,,8183,,0,8183,,,,4945,,,,,,,,,4551,0.36,,,,,,,0.57,,0.32,0.28,,,,,,,0.15,0.16,0.3,0.704279444,3851,5468,0.651109511,0.757449377,0.325296443,823,2530,0.252949424,0.397643461,0.027434842,120,4374,,,0.302,606,,0.187617021,0.416382979,,,,,,,0.681451613,0.362730356,1,0.666218035,0.522019499,0.810416571,0.189274448,0.093661469,0.284887427,3.977488461,91347,22966,2.77096165,5.184015272,0.298959319,632,2114,0.185949719,0.411968918,5.958765344,5,8391,,,105.7997499,44,41588,76.87426026,142.031226,,,,,,,,,,,,,129.4610107,87.34680025,184.8136426,,,,8.9,,,,,0,,,,,0.152284264,450,2955,0.096577376,0.207991152,0.088365746,0.04791401,0.128817481,0.030456853,0.003548711,0.057364994,0.033840948,0.003538054,0.064143842,0.828555209,2919,3523,0.760686207,0.89642421,,,,,,,,,,,,,0.824759751,0.758341728,0.891177775,0.374,,3523,0.29010358,0.45789642,70.15409504,,,68.24841883,72.05977125,,,,,,,,,,,,,68.3109087,65.86391782,70.75789959,,,,713.8586673,204,23579,614.1027929,813.6145417,,,,,,,674.8383648,448.4251925,975.32933,474.8109292,290.0268508,733.3069706,813.0095428,676.9004383,949.1186473,,,,137.0007377,13,9489,72.94712289,234.2754339,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.173,,,0.152,0.197,0.201,,,0.176,0.229,0.159,,,0.137,0.18,320.9,22,6855,,,0.145,1200,,,,0.149505742,1252.110592,8375,,,,,,,,,,,,,,,,,,,,,,,,,,0.381,,,0.367,0.393,0.322490521,1616,5011,0.283171372,0.36180967,0.118535469,259,2185,0.08040781,0.156663129,0.000488818,4,8183,,,2045.75,0.925,111.925,121,,,,,,,,3.052052219,,,,,,,2.851358968,2.973686451,3.215321367,3.050434394,,,,,,,2.854499913,2.984693336,3.196384943,0.014196656,,,,,-11524.36,,,,,1.303375885,43087,33058,0.848563977,1.758187792,46060,,,39785.61702,52334.38298,,,,,,,35938,20901.40426,50974.59575,30248,28010.38298,32485.61702,47379,36433.97872,58324.02128,,,,,,,,,,,23.35887482,,,,,0.254971776,,46060,,,9.746588694,5,513,,,17.16472991,10,58259,8.23115518,31.56654945,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,29.18004085,17,58259,16.99844911,46.72007212,,,,,,,,,,,,,,,,,,,,,900,,,,,0.604985618,3155,5215,,,0.345,,,,,16.3795161,,,,,0.668952008,2049,3063,0.60424179,0.733662225,0.076256499,220,2885,0.035170548,0.11734245,0.737185766,2258,3063,0.686456005,0.787915526,8183,,,,,0.24893071,2037,8183,,,0.144079189,1179,8183,,,0.148356349,1214,8183,,,0.01845289,151,8183,,,0.011609434,95,8183,,,0.014053526,115,8183,,,0.286203104,2342,8183,,,0.535744837,4384,8183,,,0.12124339,940,7753,0.081486824,0.160999956,0.491262373,4020,8183,,,1,8286,8286,, -13,005,13005,GA,Bacon County,2024,1,15264.60628,288,31126,12720.98659,17808.22597,0,,,,2,,,,2,19084.15367,12966.75652,27088.43279,,,,,2,15248.92387,12117.62655,18380.2212,,,,,2,,0.223,,,0.192,0.257,4.711877899,,,3.747883649,5.697576315,5.999587387,,,4.811272728,7.198968257,0.1,99,990,0.081312133,0.118687867,0,,,,,,,0.158102767,0.113145998,0.203059535,0.118055556,0.065352153,0.170758958,0.068100358,0.047197858,0.089002859,,,,,,,0.226,,,0.188,0.271,0.372,,,0.294,0.451,7.5,0.013038943,0.153,,,0.312,,,0.261,0.37,0.543447038,6054,11140,,,0.149561287,,,0.11896079,0.183107678,0.285714286,4,14,0.142392906,0.436004848,496.4,55,11079,,,38.25136612,98,2562,31.05430799,46.61616327,,,,,,,50.66666667,30.50464311,79.12227619,57.92682927,34.87573526,90.45991943,30.66439523,23.03603746,40.0103841,,,,,,,0.188001356,1664,8851,0.164171569,0.211831143,0.000451304,5,11079,,,2215.8,0.000268073,3,11191,,,3730.333333,8.93575E-05,1,11191,,,11191,4841,,,,,,,4959,,4929,0.23,,,,,,,0.18,,0.23,0.26,,,,,,,0.11,,0.27,0.846668487,6201,7324,0.805420614,0.88791636,0.530800443,1439,2711,0.429511738,0.632089148,0.029309285,143,4879,,,0.316,888,,0.212340426,0.419659575,,,,,,,0.200357782,0,0.509060161,0.592165899,0.38885578,0.795476017,0.238885596,0.15768348,0.320087712,5.050306682,93865,18586,3.670432864,6.430180501,0.366573034,1044,2848,0.230385534,0.502760533,8.123476848,9,11079,,,80.66973809,45,55783,58.84106052,107.9424565,,,,,,,112.4353497,53.91712049,206.7726112,,,,78.59511237,53.75899868,110.952848,,,,8.9,,,,,0,,,,,0.168224299,630,3745,0.108940537,0.227508061,0.129427793,0.074641111,0.184214475,0.028037383,0.000364873,0.055709894,0.014686248,0,0.034405347,0.867315452,3654,4213,0.824341725,0.910289179,,,,,,,,,,,,,0.841906722,0.759622001,0.924191442,0.357,,4213,0.260909504,0.453090496,70.34998224,,,68.64969977,72.05026471,,,,,,,67.33792268,62.71958757,71.95625779,,,,70.3470702,68.30862189,72.38551851,,,,744.8076984,288,31126,655.5843288,834.0310681,,,,,,,1061.102077,792.4817844,1391.494201,,,,719.296847,619.3225639,819.2711301,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.148,,,0.129,0.17,0.194,,,0.17,0.22,0.129,,,0.111,0.149,493.9,45,9111,,,0.153,1710,,,,0.013038943,144.6801093,11096,,,33.05387782,11,33279,16.50037672,59.14251784,,,,,,,,,,,,,,,,,,,0.394,,,0.38,0.408,0.237885463,1458,6129,0.206906739,0.268864186,0.077191757,221,2863,0.05217048,0.102213034,0.000893575,10,11191,,,1119.1,0.975,142.35,146,,,,,,,,2.785161018,,,,,,,2.363024392,2.590780506,3.052910832,2.711847407,,,,,,,2.379454867,2.617627289,2.920454586,0.003805139,,,,,-8169.26,,,,,0.79630968,35259,44278,0.581719973,1.010899386,46044,,,39213.19149,52874.80851,,,,,,,30445,24877.17021,36012.82979,35536,2349.446809,68722.55319,51517,39099.29787,63934.70213,,,,,,,,,,,28.43161765,,,,,0.255060377,,46044,,,8.053691275,6,745,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.92660847,10,55783,8.596505559,32.96767123,,,,,,,,,,,,,,,,,,,28.04190991,22,78454,17.57371565,42.4557886,,,,,,,,,,,,,26.14925998,14.63554231,43.12922768,,,,,,1100,,,,,0.579515829,4668,8055,,,0.521,,,,,12.65153253,,,,,0.719877206,2814,3909,0.651104406,0.788650007,0.094430308,334,3537,0.044004057,0.144856559,0.777436685,3039,3909,0.711416552,0.843456817,11191,,,,,0.254400858,2847,11191,,,0.172638728,1932,11191,,,0.165400769,1851,11191,,,0.004735949,53,11191,,,0.009293182,104,11191,,,0.002233938,25,11191,,,0.088821374,994,11191,,,0.716379233,8017,11191,,,0.007722753,80,10359,0,0.021768265,0.508176213,5687,11191,,,1,11140,11140,, -13,007,13007,GA,Baker County,2024,1,14137.14191,57,7955,9234.850457,20714.18841,0,,,,2,,,,2,13914.51247,6362.601144,26414.07897,1,,,,2,14645.44574,8196.944807,24155.43555,1,,,,2,,0.249,,,0.217,0.283,4.800668982,,,3.892539361,5.822286131,5.665603854,,,4.563344609,6.90010868,0.128048781,21,164,0.076907928,0.179189633,1,,,,,,,0.183333333,0.085424116,0.281242551,,,,,,,,,,,,,0.23,,,0.192,0.273,0.417,,,0.335,0.503,4.9,0.280434201,0.143,,,0.337,,,0.284,0.395,,,2876,,,0.118649455,,,0.092582884,0.148107818,0.222222222,2,9,0.058854756,0.422872156,390.2,11,2819,,,19.7693575,12,607,10.2151155,34.53308904,,,,,,,,,,,,,,,,,,,,,,0.174963751,362,2069,0.149942474,0.199985027,,0,2819,,,,0,0,2788,,,-2788,0.00035868,1,2788,,,2788,4520,,,,,,,,,5382,0.5,,,,,,,,,0.56,0.37,,,,,,,0.31,,0.41,0.856934307,1761,2055,0.793073609,0.920795004,0.670542636,346,516,0.480553245,0.860532026,0.040214477,45,1119,,,0.39,205,,0.233914894,0.546085106,,,,,,,0.317164179,0.201370881,0.432957477,,,,0.173913044,0,0.389251102,6.118226903,99929,16333,0.614935092,11.62151871,0.38517179,213,553,0.193018243,0.577325337,0,0,2819,,,119.0476191,18,15120,70.55516389,188.1465626,,,,,,,,,,,,,193.2633904,105.6588939,324.2631298,,,,9.4,,,,,0,,,,,0.113793103,165,1450,0.054608937,0.17297727,0.095238095,0.030003017,0.160473173,0.02,0,0.052072835,0.002758621,0,0.01600184,0.889142857,778,875,0.79876946,0.979516254,,,,,,,,,,,,,,,,0.33,,875,0.179995322,0.480004678,74.53755366,,,70.51714026,78.55796706,,,,,,,,,,,,,,,,,,,542.8910946,57,7955,397.4645133,724.1406412,,,,,,,470.6885857,269.0391958,764.3687744,,,,632.0913093,412.903029,926.1602208,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.153,,,0.134,0.174,0.191,,,0.167,0.218,0.158,,,0.137,0.179,286.6,7,2442,,,0.143,420,,,,0.280434201,967.7784287,3451,,,,,,,,,,,,,,,,,,,,,,,,,,0.403,,,0.389,0.416,0.209916291,326,1553,0.177746078,0.242086504,0.069981584,38,543,0.046151797,0.093811371,0.00107604,3,2788,,,929.3333333,,,,,,,,,,,2.447604845,,,,,,,,,,2.28323319,,,,,,,,,,0.006356268,,,,,-34427.55,,,,,0.607456263,32604,53673,0.272036839,0.942875687,50129,,,44281.17021,55976.82979,,,,,,,26458,10556.38298,42359.61702,,,,54922,34863.2766,74980.7234,,,,,,,,,,,8.937230745,,,,,0.234275569,,50129,,,30.6122449,3,98,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,200,,,,,0.625754527,1555,2485,,,0.39,,,,,0.227317894,,,,,0.74840474,821,1097,0.689162101,0.80764738,0.065591398,61,930,0,0.135387151,0.577939836,634,1097,0.51281075,0.643068922,2788,,,,,0.191893831,535,2788,,,0.262912482,733,2788,,,0.399569584,1114,2788,,,0.007532281,21,2788,,,0.017216643,48,2788,,,0.00071736,2,2788,,,0.069225251,193,2788,,,0.492109039,1372,2788,,,0.008589835,24,2794,0,0.031190884,0.503586801,1404,2788,,,1,2876,2876,, -13,009,13009,GA,Baldwin County,2024,1,11901.82102,883,124892,10671.54718,13132.09486,0,,,,2,,,,2,13603.91072,11689.63845,15518.18299,,,,,2,11478.34562,9699.302333,13257.3889,,,,,2,,0.206,,,0.178,0.236,4.171098349,,,3.333721176,5.042879136,5.234126835,,,4.231183949,6.259306628,0.114867321,316,2751,0.102951795,0.126782847,0,,,,,,,0.148629149,0.129901388,0.167356909,,,,0.078813559,0.063439473,0.094187645,,,,,,,0.197,,,0.16,0.236,0.411,,,0.334,0.49,6.9,0.128798019,0.123,,,0.282,,,0.233,0.333,0.432110322,18926,43799,,,0.153895422,,,0.120679413,0.189913353,0.211538462,11,52,0.141393244,0.288630683,724.1,317,43781,,,13.92373307,222,15944,12.09211351,15.75535263,,,,,,,23.16602317,19.12098815,27.21105818,,,,8.294834103,6.567098274,10.33783822,,,,,,,0.163895875,5018,30617,0.142449066,0.185342683,0.000433978,19,43781,,,2304.263158,0.000412513,18,43635,,,2424.166667,0.002039647,89,43635,,,490.2808989,2808,,,,,,,2720,,2811,0.44,,,,,,0.57,0.37,,0.46,0.38,,,,,,0.3,0.23,,0.41,0.854716507,23803,27849,0.828915797,0.880517217,0.584539148,5898,10090,0.498919332,0.670158963,0.039822012,707,17754,,,0.293,2284,,0.194106383,0.391893617,,,,,,,0.294907525,0.211382413,0.378432636,0.556390977,0.311366891,0.801415064,0.123797704,0.068203021,0.179392387,5.735734932,107155,18682,4.646354224,6.82511564,0.466947786,3765,8063,0.362697944,0.571197628,7.994335442,35,43781,,,75.61555085,169,223499,64.21505242,87.01604929,,,,,,,77.64222886,60.85911331,97.62344602,,,,78.65399084,63.40621774,96.46213751,,,,9.9,,,,,0,,,,,0.20239521,3380,16700,0.16955514,0.235235279,0.179495074,0.14667098,0.212319168,0.017005988,0.006517423,0.027494554,0.01257485,0.003799699,0.021350001,0.836325883,13694,16374,0.80775043,0.864901335,,,,,,,0.853752054,0.797015731,0.910488377,,,,0.852361738,0.804185049,0.900538426,0.331,,16374,0.279613784,0.382386216,73.1355514,,,72.25474904,74.01635376,,,,,,,71.60287117,70.18102319,73.02471914,,,,73.5013946,72.28666482,74.71612438,,,,577.9982396,883,124892,537.439443,618.5570362,,,,,,,694.1429667,626.8289504,761.456983,,,,539.2895464,483.0871019,595.4919909,,,,62.8634292,28,44541,41.77229217,90.85515804,,,,,,,89.36106836,52.96103252,141.2290139,,,,47.46985664,22.76364139,87.29875649,,,,9.21006022,26,2823,6.016317115,13.49487215,,,,,,,13.88888889,8.483694157,21.45026243,,,,,,,,,,,,,0.132,,,0.114,0.151,0.175,,,0.152,0.199,0.135,,,0.116,0.155,348,133,38221,,,0.123,5410,,,,0.128798019,5888.645411,45720,,,11.21327652,15,133770,6.275985746,18.49459436,,,,,,,,,,,,,17.15731831,8.865436738,29.97038225,,,,0.389,,,0.375,0.403,0.199860603,4588,22956,0.172456348,0.227264858,0.058954394,477,8091,0.041082053,0.076826734,0.001237539,54,43635,,,808.0555556,0.85,207.4,244,,,,,,,,2.498972732,,,,,,,2.224112357,,2.980009762,2.420133542,,,,,,,2.17901054,,2.906278784,0.00843594,,,,,-10743.84,,,,,0.722414282,38241,52935,0.640297134,0.80453143,49883,,,43877.89362,55888.10638,,,,170587,13257.97872,327916.0213,37310,24924.46809,49695.53192,67783,35639,99927,67988,56535.40426,79440.59575,,,,,,,,,,,30.81521951,,,,,0.300843975,,49883,,,17.56097561,36,2050,,,13.6898205,43,314102,9.907390979,18.44009838,,,,,,,25.78296808,17.85545491,36.02911359,,,,,,,,,,11.9702612,27,223499,7.669572216,17.81079982,12.08059097,,,,,,,,,,,,,19.50066521,11.55733009,30.81945828,,,,20.58174757,46,223499,15.06842599,27.453167,,,,,,,25.52621223,16.35512583,37.98098041,,,,17.09869366,10.4443263,26.40754557,,,,20.3755468,64,314102,15.69165384,26.01911838,,,,,,,21.99135512,14.72795567,31.5832543,,,,20.62431,14.28293422,28.82040599,,,,,,3500,,,,,0.505988356,18251,36070,,,0.481,,,,,33.06582727,,,,,0.629155365,9974,15853,0.602727921,0.655582809,0.165635508,2463,14870,0.133129335,0.19814168,0.843310414,13369,15853,0.820136757,0.866484072,43635,,,,,0.181666094,7927,43635,,,0.174859631,7630,43635,,,0.415377564,18125,43635,,,0.003666781,160,43635,,,0.016844276,735,43635,,,0.000893778,39,43635,,,0.028944655,1263,43635,,,0.521760055,22767,43635,,,0.004721051,197,41728,0.000921819,0.008520283,0.49343417,21531,43635,,,0.487636704,21358,43799,, -13,011,13011,GA,Banks County,2024,1,11668.60022,351,53148,9754.919827,13582.28061,0,,,,2,,,,2,,,,2,,,,2,11210.98373,9218.262861,13203.70459,,,,,2,,0.189,,,0.157,0.223,4.395905307,,,3.465092639,5.417980961,5.773244479,,,4.643485128,7.034234774,0.081471748,124,1522,0.067728211,0.095215285,0,,,,,,,,,,,,,0.085669782,0.07036106,0.100978504,,,,,,,0.206,,,0.161,0.252,0.332,,,0.256,0.412,8.2,0.008716862,0.119,,,0.278,,,0.224,0.334,0.309786526,5587,18035,,,0.164496378,,,0.130727786,0.203266043,0.076923077,2,26,0.014260974,0.189644139,140.1,26,18562,,,22.97622228,86,3743,18.37801209,28.3754476,,,,,,,,,,29.25531915,14.60414991,52.34584711,21.92134107,17.0227791,27.79052326,,,,,,,0.212508229,3228,15190,0.189869931,0.235146527,0.000161621,3,18562,,,6187.333333,5.17384E-05,1,19328,,,19328,,0,19328,,,,4561,,,,,,,,,4682,0.4,,,,,,,,,0.41,0.46,,,,,,,,,0.46,0.794001701,10272,12937,0.761952214,0.826051187,0.583066362,2548,4370,0.497315194,0.668817529,0.022391484,244,10897,,,0.163,658,,0.101042553,0.224957447,,,,,,,0.206521739,0,0.743085732,0.151187905,0,0.348786739,0.145535431,0.093943179,0.197127682,4.688176369,116534,24857,3.466989603,5.909363135,0.231682668,917,3958,0.14820771,0.315157627,7.003555651,13,18562,,,96.02194787,91,94770,77.31088266,117.8936741,,,,,,,,,,,,,100.4088941,79.97512363,124.4719312,,,,9.4,,,,,1,,,,,0.110230548,765,6940,0.079218252,0.141242843,0.079353417,0.053557596,0.105149237,0.025216138,0.010020323,0.040411953,0.009942363,0,0.020422095,0.825141209,6866,8321,0.786181228,0.86410119,,,,,,,,,,,,,0.758883854,0.708004729,0.809762979,0.519,,8321,0.44247521,0.59552479,74.01884676,,,72.59680428,75.44088923,,,,,,,,,,,,,74.07334182,72.60231534,75.5443683,,,,500.2527396,351,53148,445.3223884,555.1830908,,,,,,,,,,,,,500.4855994,442.4662546,558.5049442,,,,120.2843084,22,18290,75.38153566,182.1118884,,,,,,,,,,,,,113.4467801,66.08693006,181.6392847,,,,15.4155496,23,1492,9.772136084,23.13089336,,,,,,,,,,,,,,,,,,,,,,0.133,,,0.112,0.154,0.18,,,0.154,0.206,0.109,,,0.092,0.126,164.3,26,15820,,,0.119,2150,,,,0.008716862,160.3466724,18395,,,34.99685028,20,57148,21.37698535,54.04979685,,,,,,,,,,,,,36.26181027,21.49104692,57.30929364,,,,0.343,,,0.328,0.36,0.248694112,2809,11295,0.218906878,0.278481347,0.110354886,454,4114,0.080567652,0.14014212,0.000620861,12,19328,,,1610.666667,0.875,172.375,197,,,,,,,,2.938394041,,,,,,,,2.671375208,3.051059628,2.974826568,,,,,,,,2.898961914,3.023601087,0.097899481,,,,,184.8115,,,,,0.685786499,39072,56974,0.618539629,0.753033369,66928,,,58002.55319,75853.44681,,,,40709,21161.42553,60256.57447,,,,79167,33272.02128,125061.9787,73954,64011.02128,83896.97872,,,,,,,,,,,25.72923077,,,,,0.175472149,,66928,,,8.342022941,8,959,,,,,,,,,,,,,,,,,,,,,,,,,,17.72532979,16,94770,9.920732526,29.2352359,16.88297985,,,,,,,,,,,,,19.01143409,10.39372793,31.89795598,,,,13.71742113,13,94770,7.303949025,23.45720789,,,,,,,,,,,,,13.30720283,6.642907705,23.81026168,,,,25.82370008,34,131662,17.883663,36.08603249,,,,,,,,,,,,,26.95441226,18.31421539,38.25963664,,,,,,1700,,,,,0.627746077,8801,14020,,,0.628,,,,,8.323360554,,,,,0.747562622,4984,6667,0.704645831,0.790479413,0.099005135,617,6232,0.065976397,0.132033873,0.8380081,5587,6667,0.79599861,0.880017589,19328,,,,,0.211610099,4090,19328,,,0.180101407,3481,19328,,,0.031198262,603,19328,,,0.007760762,150,19328,,,0.012882864,249,19328,,,0.001448676,28,19328,,,0.081953642,1584,19328,,,0.853890729,16504,19328,,,0.011219233,196,17470,0.003430826,0.01900764,0.487996689,9432,19328,,,0.955808151,17238,18035,, -13,013,13013,GA,Barrow County,2024,1,8976.371066,1308,243324,8299.672154,9653.069979,0,,,,2,10656.49855,7240.573743,15126.04906,,10803.74656,8590.053689,13017.43943,,4866.209484,3587.958729,6451.887788,,9334.843389,8492.563666,10177.12311,,,,,2,,0.165,,,0.14,0.189,3.683332342,,,2.970469863,4.487037776,5.440155881,,,4.474117087,6.469539563,0.081355062,634,7793,0.075285325,0.087424799,0,,,,0.075418994,0.048064581,0.102773408,0.122285714,0.10057788,0.143993548,0.069785276,0.055956276,0.083614276,0.077136625,0.069772679,0.084500571,,,,0.106918239,0.058886422,0.154950056,0.169,,,0.136,0.203,0.387,,,0.319,0.459,7.8,0.113112721,0.09,,,0.251,,,0.209,0.295,0.672798036,56182,83505,,,0.173280094,,,0.140538737,0.21210957,0.126582279,10,79,0.076670962,0.18678458,401.6,348,86658,,,16.95280125,315,18581,15.08064425,18.82495824,,,,,,,13.72273047,9.758202846,18.7594243,22.39502333,17.5227265,28.20282552,15.82022472,13.48293588,18.15751356,,,,30.21148036,18.45395708,46.65918112,0.170567051,12835,75249,0.15269471,0.188439391,0.000219253,19,86658,,,4560.947368,0.000190372,17,89299,,,5252.882353,0.000358347,32,89299,,,2790.59375,3754,,,,,,,4756,2014,3708,0.41,,,,,,0.29,0.37,0.38,0.42,0.45,,,,,,0.39,0.33,0.31,0.46,0.876036321,48818,55726,0.86264634,0.889426301,0.583268243,14188,24325,0.544234022,0.622302463,0.02519897,1086,43097,,,0.118,2580,,0.073914894,0.162085106,,,,0.041159963,0,0.131017712,0.186198921,0.106684564,0.265713278,0.140442133,0.078079174,0.202805091,0.116079384,0.082352522,0.149806247,3.529739932,127173,36029,3.199859623,3.859620241,0.268088276,5758,21478,0.225073196,0.311103356,6.115996215,53,86658,,,79.20916034,329,415356,70.64995329,87.76836738,,,,,,,65.74494827,45.53028789,91.87197543,37.09053996,22.33092798,57.92147263,93.47489432,82.28351394,104.6662747,,,,10.4,,,,,1,,,,,0.127612761,3480,27270,0.108178558,0.147046965,0.102621305,0.083472568,0.121770042,0.021268794,0.014390545,0.028147043,0.00770077,0.003994552,0.011406989,0.7916687,32441,40978,0.775063437,0.808273964,,,,0.748551564,0.58829378,0.908809349,0.831237425,0.748125374,0.914349475,0.746686861,0.658207859,0.835165863,0.764031382,0.733569439,0.794493325,0.58,,40978,0.541890962,0.618109038,75.5168074,,,74.9120912,76.1215236,,,,75.54359664,71.76552505,79.32166823,73.63904924,71.85221621,75.42588226,81.7489245,78.14445388,85.35339512,75.07762736,74.3721746,75.78308012,,,,471.3920133,1308,243324,445.5468355,497.2371911,,,,491.0740575,350.8305063,668.7034868,491.9809973,415.5459528,568.4160418,256.7736773,192.3411045,335.8662921,496.539342,465.5946928,527.4839913,,,,44.76896019,42,93815,32.26552868,60.51462856,,,,,,,,,,,,,50.90130413,34.08940224,73.10276348,,,,4.815200416,37,7684,3.390345467,6.637119488,,,,,,,,,,,,,4.670169294,2.992265588,6.948841719,,,,,,,0.115,,,0.099,0.131,0.164,,,0.143,0.186,0.107,,,0.092,0.122,193.6,138,71269,,,0.09,7390,,,,0.113112721,7846.29013,69367,,,19.57054398,50,255486,14.52563496,25.80132245,,,,,,,,,,,,,23.10095696,16.50366233,31.45694673,,,,0.367,,,0.352,0.38,0.211488055,11296,53412,0.187658268,0.235317842,0.072923936,1672,22928,0.053860106,0.091987766,0.000436735,39,89299,,,2289.717949,0.91,814.45,895,,,0.101818989,459,4508,0.062867257,0.14077072,3.100280576,,,,,,2.997069546,2.796194956,2.969088244,3.220173467,2.921606023,,,,,,2.988736223,2.675963185,2.911374585,2.981859697,0.012264604,,,,,-2479.507,,,,,0.871845537,46329,53139,0.806588988,0.937102086,77583,,,70815.34043,84350.65957,108548,19356.68085,197739.3192,93250,70313.82979,116186.1702,69072,62192.34043,75951.65957,63489,57171.7234,69806.2766,78232,73579.23404,82884.76596,,,,,,,,,,,27.96493966,,,,,0.193431551,,77583,,,5.353516707,29,5417,,,5.106964491,29,567852,3.42021427,7.334452892,,,,,,,,,,,,,4.777206189,2.876190194,7.460199228,,,,17.28717303,72,415356,13.47619946,21.84130313,17.33452749,,,,,,,,,,,,,21.46586382,16.38071551,27.63082178,,,,13.7231676,57,415356,10.39379312,17.77995536,,,,,,,,,,,,,15.69541136,11.44834075,21.00169528,,,,18.84293795,107,567852,15.27257144,22.41330446,,,,,,,20.30339067,11.10005261,34.06563959,,,,20.11455238,15.94958906,25.03430159,,,,,,9000,,,,,0.665105674,37921,57015,,,0.714,,,,,23.87463213,,,,,0.787568187,22667,28781,0.769157718,0.805978656,0.098912039,2782,28126,0.080382918,0.117441159,0.925575901,26639,28781,0.911615283,0.939536518,89299,,,,,0.248311851,22174,89299,,,0.129195176,11537,89299,,,0.141099005,12600,89299,,,0.00685338,612,89299,,,0.04254247,3799,89299,,,0.001422188,127,89299,,,0.150908745,13476,89299,,,0.642414809,57367,89299,,,0.026293802,2077,78992,0.021537945,0.031049659,0.504036999,45010,89299,,,0.329656907,27528,83505,, -13,015,13015,GA,Bartow County,2024,1,10411.90019,2043,310097,9746.842749,11076.95762,0,,,,2,,,,2,12516.68829,10254.91396,14778.46263,,4502.097339,3216.364344,6130.578764,,10926.32041,10138.79744,11713.84338,,,,,2,,0.17,,,0.143,0.201,3.951644998,,,3.136417169,4.865916822,5.583318163,,,4.579281126,6.652375176,0.074514991,676,9072,0.069111044,0.079918938,0,,,,,,,0.129707113,0.10840897,0.151005256,0.045646661,0.033752802,0.057540521,0.07244836,0.066186628,0.078710092,,,,,,,0.174,,,0.138,0.214,0.338,,,0.271,0.409,7.4,0.116931547,0.104,,,0.252,,,0.207,0.3,0.575568636,62680,108901,,,0.167126426,,,0.134247656,0.204639812,0.136,17,125,0.095177619,0.182759064,366.3,406,110843,,,22.73203875,542,23843,20.8182464,24.64583111,,,,,,,21.3884993,16.36050721,27.47442213,26.38371093,21.26899477,32.35727932,22.26163537,19.97465496,24.54861579,,,,26.78571429,16.58077932,40.94480961,0.17076864,16014,93776,0.1528963,0.188640981,0.000369893,41,110843,,,2703.487805,0.000327968,37,112816,,,3049.081081,0.001276415,144,112816,,,783.4444444,3454,,,,,,,5773,882,3332,0.39,,,,,,0.37,0.32,0.17,0.4,0.45,,,,,,0.39,0.33,0.3,0.46,0.878740674,64308,73182,0.865820941,0.891660407,0.570972094,16082,28166,0.526223754,0.615720434,0.028729261,1503,52316,,,0.134,3431,,0.085148936,0.182851064,,,,0.362282878,0,0.752600062,0.184210526,0.082894284,0.285526768,0.158504476,0.078755365,0.238253587,0.096090547,0.070073128,0.122107966,4.103021807,131707,32100,3.668157418,4.537886195,0.227789637,5869,25765,0.182217138,0.273362136,6.766327147,75,110843,,,85.45440053,461,539469,77.65358442,93.25521665,,,,,,,75.2342521,54.66532275,100.9984719,34.34412816,20.00672028,54.98827616,95.5967555,86.18107678,105.0124342,,,,10.2,,,,,0,,,,,0.130325815,4940,37905,0.11065193,0.149999699,0.107539842,0.089545909,0.125533775,0.021896847,0.014415831,0.029377864,0.005935892,0.001939091,0.009932694,0.774652832,39718,51272,0.75624066,0.793065004,,,,,,,0.8300269,0.764469399,0.895584401,0.664938556,0.61781144,0.712065673,0.780207068,0.756261934,0.804152202,0.437,,51272,0.405140189,0.468859811,74.19421372,,,73.66175755,74.72666989,,,,,,,71.50325604,69.81273912,73.19377295,87.45104964,79.92901792,94.97308136,73.72446289,73.12495752,74.32396827,,,,529.5182853,2043,310097,505.9656839,553.0708867,,,,,,,623.8115275,541.9565041,705.6665509,227.12851,163.6942521,307.0117635,551.1838492,524.2774677,578.0902308,,,,61.14636135,69,112844,47.57551891,77.38463374,,,,,,,114.9073081,64.31274807,189.5221302,,,,59.57700328,43.6178542,79.46737345,,,,6.297646669,57,9051,4.769776087,8.159331721,,,,,,,,,,,,,4.9871543,3.432927546,7.003818841,,,,,,,0.12,,,0.102,0.139,0.172,,,0.148,0.198,0.105,,,0.09,0.123,249.2,231,92709,,,0.104,11260,,,,0.116931547,11711.5129,100157,,,31.40176887,103,328007,25.33731674,37.46622099,,,,,,,,,,,,,37.11774707,29.95881236,45.47174782,,,,0.355,,,0.34,0.37,0.210470588,14312,68000,0.186640801,0.234300376,0.06940249,1884,27146,0.050338661,0.08846632,0.001152319,130,112816,,,867.8153846,0.931891253,1182.57,1269,,,0.096310411,556,5773,0.050375713,0.142245108,3.052181758,,,,,,,2.684025285,2.930374122,3.146784127,2.98037436,,,,,,,2.582294437,2.902809602,3.069202144,0.045435707,,,,,-2047.40575,,,,,0.788369604,44196,56060,0.727299684,0.849439524,80017,,,74183.46809,85850.53192,63949,42089.93617,85808.06383,118134,56843.78723,179424.2128,59172,49108.68085,69235.31915,73337,71941.76596,74732.23404,77929,72498.19149,83359.80851,,,,,,,,,,,35.16698073,,,,,0.187547646,,80017,,,7.280513919,51,7005,,,4.691544363,35,746023,3.267832547,6.524802502,,,,,,,13.69010579,6.834051484,24.49538085,,,,3.474351469,2.122224138,5.365854057,,,,17.14428509,92,539469,13.76826872,21.09751806,17.05380661,,,,,,,,,,,,,20.54771159,16.29305738,25.57340573,,,,15.38549945,83,539469,12.25446443,19.07264139,,,,,,,17.09869366,8.19948823,31.44510643,,,,17.13982233,13.38634344,21.61955367,,,,17.69382445,132,746023,14.67532696,20.71232195,,,,,,,24.89110143,15.20413141,38.44228737,,,,18.41406279,14.90854029,21.91958528,,,,8.952380952,,10500,,,33,61,0.647926563,50467,77890,,,0.641,,,,,41.58676545,,,,,0.727939837,27974,38429,0.703734095,0.75214558,0.097929851,3652,37292,0.081170555,0.114689147,0.815477894,31338,38429,0.789425027,0.841530762,112816,,,,,0.230596724,26015,112816,,,0.150359878,16963,112816,,,0.110285775,12442,112816,,,0.006390938,721,112816,,,0.012232308,1380,112816,,,0.001471423,166,112816,,,0.10361119,11689,112816,,,0.751161183,84743,112816,,,0.014108248,1448,102635,0.009000426,0.019216069,0.503696284,56825,112816,,,0.394312265,42941,108901,, -13,017,13017,GA,Ben Hill County,2024,1,15634.57732,502,46909,13536.79014,17732.36451,0,,,,2,,,,2,17177.75324,13631.34136,20724.16513,,,,,2,15724.98456,12784.7666,18665.20251,,,,,2,,0.243,,,0.212,0.274,4.767529697,,,3.877630241,5.673825649,5.607764263,,,4.548584726,6.661277689,0.136423841,206,1510,0.119111211,0.153736471,0,,,,,,,0.191111111,0.161449715,0.220772507,,,,0.094202899,0.072406782,0.115999015,,,,,,,0.235,,,0.198,0.273,0.438,,,0.362,0.51,6.4,0.131624408,0.143,,,0.332,,,0.281,0.382,0.544143306,9356,17194,,,0.132325023,,,0.105409241,0.160597235,0.272727273,3,11,0.11266692,0.445445377,711,122,17158,,,44.14893617,166,3760,37.43275705,50.86511529,,,,,,,46.08294931,35.92391976,58.22303412,,,,50.3995083,40.08422463,62.55907876,,,,,,,0.166271664,2245,13502,0.144824855,0.187718472,0.000466255,8,17158,,,2144.75,0.000527272,9,17069,,,1896.555556,0.000351514,6,17069,,,2844.833333,4535,,,,,,,1393,,4940,0.34,,,,,,,0.35,,0.35,0.28,,,,,,,0.19,0.25,0.29,0.837419579,9632,11502,0.800495281,0.874343878,0.367722918,1497,4071,0.281418548,0.454027289,0.043276109,242,5592,,,0.364,1502,,0.255574468,0.472425532,,,,,,,0.718505124,0.61561819,0.821392058,0.390143737,0.129184334,0.65110314,0.120624663,0.056828557,0.18442077,5.566223569,80816,14519,3.974503987,7.157943152,0.457418577,1896,4145,0.371306608,0.543530545,8.159459144,14,17158,,,98.51047416,83,84255,78.46304278,122.1185542,,,,,,,81.94034743,53.02747246,120.960117,,,,120.9895214,91.39418426,157.1149574,,,,9.2,,,,,0,,,,,0.15279879,1010,6610,0.107724931,0.197872648,0.13972154,0.094688574,0.184754506,0.023449319,0,0.048513139,0,0,0.005608237,0.842372165,5980,7099,0.811324685,0.873419645,,,,,,,0.861055777,0.758661156,0.963450397,,,,0.885930686,0.805203889,0.966657484,0.16,,7099,0.108283322,0.211716678,69.6022173,,,68.26459494,70.93983967,,,,,,,68.59483734,66.22132276,70.96835193,,,,69.67486345,67.8724057,71.47732121,,,,798.5578151,502,46909,725.0488951,872.066735,,,,,,,909.1147345,776.450186,1041.779283,,,,780.4346075,683.8837163,876.9854988,,,,66.29467985,12,18101,34.25542848,115.8034642,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.153,,,0.133,0.172,0.194,,,0.169,0.218,0.146,,,0.126,0.165,345,49,14201,,,0.143,2470,,,,0.131624408,2321.064814,17634,,,23.77555873,12,50472,12.28517814,41.53111636,,,,,,,,,,,,,,,,,,,0.413,,,0.401,0.424,0.211782095,2006,9472,0.181994861,0.241569329,0.060920897,258,4235,0.040665578,0.081176216,0.000995958,17,17069,,,1004.058824,0.85,181.05,213,,,,,,,,2.650901659,,,,,,,2.444758477,2.770031134,2.84009718,2.409430337,,,,,,,2.189586134,2.357244192,2.638065046,0.004703661,,,,,-8667.576,,,,,0.870475287,36721,42185,0.702596922,1.038353653,41141,,,35882.95745,46399.04255,,,,,,,28447,24095.68085,32798.31915,58843,17181.38298,100504.617,53095,42838.65957,63351.34043,,,,,,,,,,,30.45921634,,,,,0.28545733,,41141,,,11.61665053,12,1033,,,9.251394017,11,118901,4.618262561,16.5532994,,,,,,,,,,,,,,,,,,,21.02230808,18,84255,12.24626915,33.6587517,21.36371729,,,,,,,,,,,,,32.18517074,17.59593234,54.0012476,,,,21.36371729,18,84255,12.66149283,33.76388377,,,,,,,,,,,,,28.08685319,14.95506642,48.02937435,,,,24.39003877,29,118901,16.33439175,35.02816414,,,,,,,30.41647169,16.19549015,52.01309293,,,,24.32276307,13.90256066,39.49864339,,,,,,1700,,,,,0.533333333,6560,12300,,,0.461,,,,,44.26961089,,,,,0.578585462,4123,7126,0.52422237,0.632948554,0.124301007,778,6259,0.077527483,0.171074531,0.654925625,4667,7126,0.59543048,0.714420769,17069,,,,,0.244771223,4178,17069,,,0.185423868,3165,17069,,,0.365047747,6231,17069,,,0.008260589,141,17069,,,0.008846447,151,17069,,,0.0004101,7,17069,,,0.067607944,1154,17069,,,0.539164567,9203,17069,,,0.007681348,124,16143,0,0.017675637,0.529556506,9039,17069,,,0.343899035,5913,17194,, -13,019,13019,GA,Berrien County,2024,1,13269.32742,456,52812,11386.52871,15152.12612,0,,,,2,,,,2,17064.97558,11339.55234,24663.64105,,,,,2,13752.33979,11584.33042,15920.34915,,,,,2,,0.217,,,0.185,0.25,4.733379084,,,3.785363588,5.738336144,5.815519519,,,4.709192142,6.986247301,0.119244392,202,1694,0.103811545,0.134677239,0,,,,,,,0.221674877,0.164534011,0.278815742,0.089552239,0.041205252,0.137899226,0.105820106,0.089244375,0.122395837,,,,,,,0.228,,,0.187,0.272,0.379,,,0.305,0.455,6.6,0.103960932,0.151,,,0.308,,,0.257,0.361,0.265748899,4826,18160,,,0.151540179,,,0.120089181,0.186769982,0.222222222,4,18,0.102162676,0.360013884,655.8,119,18147,,,36.25592417,153,4220,30.51093339,42.00091495,,,,,,,38.68471954,23.62963169,59.7454118,55.39358601,33.35055733,86.50394627,35.41209652,28.88276848,41.94142457,,,,,,,0.178629359,2643,14796,0.155991061,0.201267657,0.000220422,4,18147,,,4536.75,0.000109806,2,18214,,,9107,0.000329417,6,18214,,,3035.666667,3671,,,,,,,2242,,3633,0.35,,,,,,,0.32,,0.36,0.29,,,,,,,0.22,,0.3,0.812997668,10108,12433,0.781022834,0.844972501,0.468736043,2099,4478,0.390122766,0.54734932,0.031780751,247,7772,,,0.317,1319,,0.237170213,0.396829787,,,,,,,0.130952381,0,0.325210299,0.390663391,0.198333905,0.582992877,0.29503501,0.216864602,0.373205418,5.921793472,97603,16482,4.848715531,6.994871413,0.296882164,1295,4362,0.204668548,0.38909578,6.061607979,11,18147,,,96.44616836,92,95390,77.74922399,118.2826638,,,,,,,,,,,,,107.3100096,85.47182362,133.0269022,,,,9.2,,,,,0,,,,,0.107577808,795,7390,0.072160669,0.142994946,0.089171975,0.056090247,0.122253702,0.0135318,0.001069781,0.025993818,0.01082544,0,0.021782124,0.852206495,6141,7206,0.814212747,0.890200242,,,,,,,,,,,,,0.844763271,0.772501622,0.91702492,0.245,,7206,0.195313322,0.294686678,71.99613887,,,70.6554478,73.33682995,,,,,,,68.20864841,64.07115921,72.34613761,,,,71.67562727,70.17002667,73.18122788,,,,656.3587197,456,52812,593.5147681,719.2026712,,,,,,,882.7238515,671.9702947,1138.649455,,,,667.0730494,597.1951514,736.9509474,,,,100.3965664,20,19921,61.32483101,155.0543542,,,,,,,,,,,,,95.32888465,52.11718832,159.9456702,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.146,,,0.126,0.168,0.191,,,0.167,0.218,0.128,,,0.111,0.146,349.6,53,15159,,,0.151,2750,,,,0.103960932,2004.99053,19286,,,29.84969799,17,56952,17.38854908,47.79225807,,,,,,,,,,,,,37.0475298,21.58155135,59.31668406,,,,0.384,,,0.368,0.399,0.221949145,2348,10579,0.192161911,0.251736379,0.071621622,318,4440,0.048983324,0.09425992,0.000439223,8,18214,,,2276.75,0.9,189.9,211,,,,,,,,3.216769132,,,,,,,2.685724299,,3.333960364,3.113778266,,,,,,,2.663489384,,3.241947789,0.009564126,,,,,-1790.478,,,,,0.780562958,37492,48032,0.634985172,0.926140744,48725,,,42147.97872,55302.02128,,,,,,,41788,29015.23404,54560.76596,73452,23483.31915,123420.6809,49484,39232.42553,59735.57447,,,,,,,,,,,25.67078782,,,,,0.241026167,,48725,,,9.482758621,11,1160,,,,,,,,,,,,,,,,,,,,,,,,,,19.12038384,19,95390,11.33195125,30.21844975,19.91823042,,,,,,,,,,,,,22.18008945,12.67783755,36.01907567,,,,17.82157459,17,95390,10.38172394,28.53406732,,,,,,,,,,,,,20.68626691,11.8239889,33.59320146,,,,17.99829016,24,133346,11.53184412,26.78002909,,,,,,,,,,,,,16.58909728,9.831750408,26.21792569,,,,,,1900,,,,,0.540712291,7743,14320,,,0.506,,,,,2.493208021,,,,,0.690535952,4677,6773,0.641752409,0.739319494,0.105306526,639,6068,0.064695036,0.145918016,0.754170973,5108,6773,0.710912236,0.79742971,18214,,,,,0.232019326,4226,18214,,,0.17568903,3200,18214,,,0.108872296,1983,18214,,,0.005819699,106,18214,,,0.011255079,205,18214,,,0.001098056,20,18214,,,0.059514659,1084,18214,,,0.799000769,14553,18214,,,0.005572174,95,17049,0,0.012532417,0.504831448,9195,18214,,,0.733259912,13316,18160,, -13,021,13021,GA,Bibb County,2024,1,13851.55251,3502,432601,13192.74405,14510.36097,0,,,,2,4232.666253,2419.33448,6873.584817,1,16375.94497,15420.56333,17331.32661,,3353.541865,1916.838933,5445.94189,1,11640.0502,10646.36505,12633.73534,,,,,2,,0.214,,,0.183,0.248,4.273143219,,,3.424936138,5.151695846,5.279442287,,,4.272838468,6.259288955,0.13563651,2018,14878,0.130134514,0.141138507,0,,,,0.090252708,0.056507921,0.123997495,0.169374052,0.161723596,0.177024508,0.093959732,0.073007872,0.114911591,0.075029036,0.067159516,0.082898556,,,,0.114285714,0.074446036,0.154125393,0.198,,,0.16,0.24,0.393,,,0.329,0.462,6.5,0.130602222,0.14,,,0.301,,,0.255,0.356,0.721607159,113542,157346,,,0.13845844,,,0.109774529,0.171243766,0.17032967,31,182,0.134572226,0.209087418,938.4,1471,156762,,,32.16528577,1219,37898,30.35960225,33.97096928,,,,,,,41.32053545,38.70665093,43.93441996,42.49839021,32.86825191,54.06837247,15.60118354,13.2830471,17.91931998,,,,20.73170732,12.0769835,33.19347173,0.15711398,19043,121205,0.140433129,0.173794832,0.001397022,219,156762,,,715.8082192,0.000640217,100,156197,,,1561.97,0.002163934,338,156197,,,462.1213018,3179,,,,,,,4827,,2434,0.47,,,,,,0.34,0.45,0.57,0.48,0.42,,,,,,0.46,0.32,0.23,0.46,0.865433284,89253,103131,0.853128745,0.877737823,0.578836373,23330,40305,0.541158088,0.616514658,0.037337613,2443,65430,,,0.312,11574,,0.226212766,0.397787234,,,,0.039617486,0,0.169360026,0.485906916,0.441980241,0.529833591,0.456173421,0.339663129,0.572683714,0.170072661,0.11220577,0.227939553,6.490378353,109616,16889,5.865308716,7.11544799,0.49584722,18746,37806,0.450697705,0.540996735,12.63061201,198,156762,,,95.4964449,734,768615,88.58776223,102.4051276,,,,,,,88.65269074,79.70363284,97.60174864,,,,118.6376214,106.0269258,131.248317,,,,9.2,,,,,0,,,,,0.197919354,11510,58155,0.180541592,0.215297115,0.182915921,0.165178104,0.200653738,0.016679563,0.011516229,0.021842897,0.015819792,0.011149835,0.020489749,0.806585072,51469,63811,0.789277399,0.823892744,,,,0.83297062,0.772888114,0.893053126,0.824498213,0.794196903,0.854799522,0.731516057,0.648362143,0.814669971,0.856456027,0.83851839,0.874393664,0.226,,63811,0.203613947,0.248386053,71.37937351,,,70.92065542,71.83809159,,,,88.18730417,78.18476303,98.18984531,69.20512974,68.56931718,69.8409423,88.13662946,80.73475477,95.53850415,73.21070287,72.50582147,73.91558426,,,,671.9133749,3502,432601,648.7891584,695.0375914,,,,270.6442853,179.8411621,391.1563468,789.0579182,754.4674061,823.6484304,173.2004609,104.2779917,270.4739745,587.5450837,553.3691603,621.7210072,,,,88.09418936,148,168002,73.90124575,102.287133,,,,,,,116.2691773,95.72124554,136.8171091,,,,47.31541356,29.28898674,72.32663573,,,,9.90818416,150,15139,8.322544456,11.49382386,,,,,,,13.5881104,11.23409038,15.94213043,,,,,,,,,,,,,0.134,,,0.116,0.155,0.177,,,0.153,0.203,0.14,,,0.121,0.161,1008.4,1311,130006,,,0.14,21930,,,,0.130602222,20314.78375,155547,,,13.61696977,63,462658,10.46365345,17.42201957,,,,,,,8.155719878,5.048519148,12.46688418,,,,22.92485937,16.30181605,31.33903743,,,,0.401,,,0.387,0.414,0.198713175,17079,85948,0.176074878,0.221351473,0.057838538,2145,37086,0.041157686,0.074519389,0.002938597,459,156197,,,340.298475,0.822369326,1195.725,1454,,,0.136915282,1162,8487,0.091216753,0.182613812,2.584713168,,,,,,3.80409754,2.39131927,2.549188602,3.320263521,2.389121785,,,,,,3.892447774,2.168771397,2.39246284,3.216138495,0.19666846,,,,,-19358.19,,,,,0.804052877,41543,51667,0.739199229,0.868906525,48539,,,43726.57447,53351.42553,,,,56758,41651.10638,71864.89362,36148,33240.76596,39055.23404,52349,35951.7234,68746.2766,71943,65275.42553,78610.57447,,,,,,,,,,,51.72324171,,,,,0.309174066,,48539,,,17.2733483,177,10247,,,20.74233371,223,1075096,18.01987528,23.46479214,,,,,,,33.51847494,28.84964854,38.18730135,,,,4.667444574,2.810106532,7.288792869,,,,14.46182864,110,768615,11.67557044,17.24808684,14.31145632,,,,,,,9.872658613,6.986480826,13.55099529,,,,20.90906206,15.83631941,27.09011512,,,,30.96478731,238,768615,27.03077519,34.89879944,,,,,,,41.62208557,35.49021081,47.75396033,,,,19.19137993,14.45757378,24.98021891,,,,20.27725896,218,1075096,17.58549439,22.96902353,,,,,,,19.80637156,16.21741615,23.39532697,,,,23.33722287,18.88120692,28.52854477,,,,24.8951049,,14300,,,294,62,0.621970396,70802,113835,,,0.513,,,,,96.62970469,,,,,0.526479489,31315,59480,0.509018714,0.543940264,0.192678296,10858,56353,0.172411069,0.212945522,0.838416274,49869,59480,0.825982218,0.850850331,156197,,,,,0.241816424,37771,156197,,,0.16609794,25944,156197,,,0.564140156,88117,156197,,,0.003457173,540,156197,,,0.021946644,3428,156197,,,0.001261228,197,156197,,,0.041428453,6471,156197,,,0.354635492,55393,156197,,,0.010249652,1501,146444,0.006847421,0.013651883,0.5277118,82427,156197,,,0.140855185,22163,157346,, -13,023,13023,GA,Bleckley County,2024,1,10945.94843,256,35309,8788.415645,13103.48122,0,,,,2,,,,2,17862.41727,12370.24322,24960.93774,,,,,2,9810.963629,7410.618995,12211.30826,,,,,2,,0.196,,,0.169,0.221,4.307415719,,,3.522219032,5.165482225,5.488688558,,,4.515887202,6.515532891,0.10237069,95,928,0.082866927,0.121874453,0,,,,,,,0.16722408,0.124924704,0.209523457,,,,0.069846678,0.049226749,0.090466607,,,,,,,0.197,,,0.161,0.234,0.365,,,0.295,0.441,6.1,0.183848906,0.134,,,0.28,,,0.234,0.327,0.749105937,9426,12583,,,0.146360974,,,0.116223423,0.180375894,0.333333333,4,12,0.175768434,0.488588466,706,89,12607,,,16.53593386,78,4717,13.07096952,20.63759382,,,,,,,17.24863273,12.37791665,23.39971795,,,,14.88238118,10.11185597,21.12435214,,,,,,,0.139675225,1273,9114,0.120611395,0.158739055,0.000237963,3,12607,,,4202.333333,0.000163172,2,12257,,,6128.5,0.000163172,2,12257,,,6128.5,2616,,,,,,,,,2492,0.46,,,,,,,,,0.5,0.28,,,,,,,0.04,,0.29,0.879278616,7167,8151,0.841278155,0.917279077,0.680126405,1937,2848,0.576015281,0.784237528,0.043114826,196,4546,,,0.259,626,,0.158914894,0.359085106,,,,,,,0.625879044,0.518948414,0.732809673,,,,0.071143617,0.02378185,0.118505385,5.319449902,108304,20360,4.073355963,6.56554384,0.440414508,1020,2316,0.32934374,0.551485276,12.69136194,16,12607,,,73.31950143,47,64103,53.87241185,97.4993937,,,,,,,,,,,,,87.30815182,61.78444455,119.8372597,,,,9.5,,,,,0,,,,,0.131764706,560,4250,0.088450368,0.175079044,0.115853659,0.068559379,0.163147938,0.020941177,0.002185439,0.039696914,0.000941177,0,0.008405889,0.840822083,4173,4963,0.791766698,0.889877469,,,,,,,,,,,,,0.769529086,0.701115433,0.837942739,0.429,,4963,0.329812536,0.528187464,73.82199834,,,72.19324169,75.45075498,,,,,,,67.48567203,63.96095787,71.01038619,,,,74.9357619,73.08860799,76.7829158,,,,575.6918611,256,35309,502.0005665,649.3831558,,,,,,,840.0826586,645.5425811,1074.830653,,,,531.5405749,450.9261518,612.154998,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.134,,,0.116,0.152,0.182,,,0.159,0.205,0.121,,,0.105,0.138,413.3,45,10888,,,0.134,1690,,,,0.183848906,2401.618258,13063,,,,,,,,,,,,,,,,,,,,,,,,,,0.37,,,0.356,0.384,0.167875648,1134,6755,0.141662882,0.194088414,0.061793215,153,2476,0.042729385,0.080857045,0.00081586,10,12257,,,1225.7,0.925,157.25,170,,,,,,,,3.197998896,,,,,,,2.60429348,,3.424579038,2.963576501,,,,,,,2.6006892,,3.145539226,0.007483194,,,,,-3370.71,,,,,0.909320011,41134,45236,0.624435568,1.194204454,56070,,,48041.74468,64098.25532,,,,63438,42551.19149,84324.80851,29422,23718.34043,35125.65957,,,,71389,50926.3617,91851.6383,,,,,,,,,,,50.27025531,,,,,0.20945247,,56070,,,14.51612903,9,620,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,21.27278427,19,89316,12.80760576,33.22008775,,,,,,,,,,,,,26.2003013,14.97573599,42.54764786,,,,,,1000,,,,,0.557771261,5706,10230,,,0.557,,,,,20.49844493,,,,,0.748993606,3163,4223,0.710246097,0.787741116,0.106382979,425,3995,0.056341633,0.156424324,0.727208146,3071,4223,0.674863344,0.779552948,12257,,,,,0.201027984,2464,12257,,,0.183568573,2250,12257,,,0.244350167,2995,12257,,,0.002365995,29,12257,,,0.012237905,150,12257,,,0.000244758,3,12257,,,0.03434772,421,12257,,,0.693236518,8497,12257,,,0.005089059,60,11790,0,0.016195929,0.520110957,6375,12257,,,0.51053008,6424,12583,, -13,025,13025,GA,Brantley County,2024,1,13963.52371,482,52615,12093.43461,15833.61281,0,,,,2,,,,2,,,,2,,,,2,14665.83571,12648.49923,16683.17219,,,,,2,,0.211,,,0.181,0.244,4.616632414,,,3.700852243,5.653077978,5.863710648,,,4.763263247,7.095588676,0.105336105,152,1443,0.089496605,0.121175606,0,,,,,,,,,,,,,0.100979653,0.084768187,0.11719112,,,,,,,0.231,,,0.189,0.275,0.403,,,0.325,0.487,7.9,0.026510214,0.128,,,0.316,,,0.265,0.37,0.172853893,3115,18021,,,0.150267145,,,0.118292016,0.187966292,0.25,4,16,0.11917111,0.394165016,215.5,39,18101,,,39.13364509,159,4063,33.05078523,45.21650495,,,,,,,,,,,,,40.10989011,33.60363459,46.61614563,,,,,,,0.221729192,3298,14874,0.196707915,0.246750469,0.000165737,3,18101,,,6033.666667,5.49964E-05,1,18183,,,18183,0.000164989,3,18183,,,6061,4391,,,,,,,,,4354,0.29,,,,,,,,,0.3,0.33,,,,,,,0.19,,0.33,0.795819425,10013,12582,0.745811953,0.845826896,0.429787234,1919,4465,0.308295299,0.55127917,0.034524612,256,7415,,,0.24,989,,0.143489362,0.336510638,,,,,,,,,,,,,0.214986376,0.106470784,0.323501969,5.378349282,89926,16720,4.489814744,6.26688382,0.251529239,1028,4087,0.124878371,0.378180107,7.734379316,14,18101,,,93.57720119,88,94040,75.05165171,115.2897291,,,,,,,,,,,,,98.58958894,78.74986198,121.9075535,,,,8.2,,,,,0,,,,,0.128603104,870,6765,0.081515965,0.175690244,0.111526946,0.063910732,0.15914316,0.014634146,0,0.030602661,0.003695492,0,0.010387807,0.864967225,5938,6865,0.812553396,0.917381054,,,,,,,,,,,,,0.850544662,0.735862519,0.965226805,0.583,,6865,0.463043587,0.702956413,72.11387118,,,70.7230627,73.50467965,,,,,,,,,,,,,71.41836707,69.97585619,72.86087795,,,,690.0508386,482,52615,625.4561965,754.6454808,,,,,,,,,,,,,716.5364893,647.8963131,785.1766654,,,,67.7860048,13,19178,36.09319267,115.9161326,,,,,,,,,,,,,76.24633431,40.59796182,130.3835538,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.146,,,0.126,0.168,0.197,,,0.172,0.225,0.118,,,0.101,0.137,144.9,22,15184,,,0.128,2310,,,,0.026510214,488.0795523,18411,,,23.04474225,13,56412,12.2703547,39.40721109,,,,,,,,,,,,,25.20747693,13.42191982,43.10555324,,,,0.371,,,0.356,0.386,0.26905913,2894,10756,0.235697428,0.302420832,0.100598527,437,4344,0.070811293,0.130385761,0.000164989,3,18183,,,6061,0.94,205.86,219,,,,,,,,3.080794649,,,,,,,,,3.142460499,3.261868055,,,,,,,,,3.306918989,0.010867486,,,,,119.5352,,,,,0.818198546,35572,43476,0.57389487,1.062502223,50370,,,43043.53192,57696.46809,,,,,,,52904,2198.978723,103609.0213,68750,13304.04255,124195.9575,40068,31840.76596,48295.23404,,,,,,,,,,,49.45066732,,,,,0.233154656,,50370,,,11.01928375,12,1089,,,,,,,,,,,,,,,,,,,,,,,,,,17.94548787,18,94040,10.453908,28.73246449,19.14079115,,,,,,,,,,,,,18.05509645,10.32004764,29.32034549,,,,18.07741387,17,94040,10.53075975,28.94369079,,,,,,,,,,,,,17.39816275,9.737619621,28.69562363,,,,23.69124952,31,130850,16.09705463,33.6278376,,,,,,,,,,,,,25.78391417,17.51891872,36.59820802,,,,,,1800,,,,,0.544917341,7746,14215,,,0.423,,,,,5.997613958,,,,,0.756354339,5029,6649,0.72023446,0.792474218,0.129270697,787,6088,0.076681669,0.181859724,0.724469845,4817,6649,0.672680547,0.776259143,18183,,,,,0.230765,4196,18183,,,0.177033493,3219,18183,,,0.035307705,642,18183,,,0.0061596,112,18183,,,0.003794753,69,18183,,,0.000274982,5,18183,,,0.030962987,563,18183,,,0.906891052,16490,18183,,,0.001526897,26,17028,0,0.008060577,0.503162295,9149,18183,,,0.99323012,17899,18021,, -13,027,13027,GA,Brooks County,2024,1,10507.97153,328,43342,8618.857644,12397.08541,0,,,,2,,,,2,14779.80061,11150.35909,18409.24214,,,,,2,8947.105113,6461.051549,11433.15868,,,,,2,,0.236,,,0.204,0.272,4.681447964,,,3.810066628,5.657312752,5.737679912,,,4.68026627,6.872479159,0.127045236,132,1039,0.106795314,0.147295158,0,,,,,,,0.183760684,0.148671909,0.218849458,,,,0.082774049,0.057230127,0.108317971,,,,,,,0.224,,,0.186,0.266,0.391,,,0.315,0.469,7.6,0.046672929,0.13,,,0.331,,,0.28,0.387,0.4272744,6965,16301,,,0.13097093,,,0.103470919,0.162213914,0.210526316,4,19,0.095274272,0.345173375,516.3,84,16270,,,32.45856354,94,2896,26.22982334,39.72106137,,,,,,,44.02515723,32.57005368,58.20359263,35.14376997,17.54364335,62.88191218,21.73913044,14.66730002,31.03396043,,,,,,,0.172739541,2176,12597,0.148909754,0.196569328,0.000184388,3,16270,,,5423.333333,6.15271E-05,1,16253,,,16253,0.000369163,6,16253,,,2708.833333,3790,,,,,,,3924,,3111,0.42,,,,,,,0.4,,0.43,0.38,,,,,,,0.31,,0.4,0.825253763,9431,11428,0.7793248,0.871182725,0.487345041,1887,3872,0.383137771,0.591552311,0.031040143,208,6701,,,0.354,1184,,0.230085106,0.477914894,,,,,,,0.464092141,0.281995645,0.646188637,0.690340909,0.163861718,1,0.225716282,0.118137099,0.333295466,5.483877147,85883,15661,4.102380118,6.865374176,0.451355207,1582,3505,0.333659403,0.569051011,9.21942225,15,16270,,,89.53238514,70,78184,69.79488656,113.1187824,,,,,,,111.0946526,74.95509562,158.5945245,,,,88.53776476,62.95900586,121.0340391,,,,9,,,,,0,,,,,0.161971831,1035,6390,0.117888064,0.206055598,0.136209814,0.093565961,0.178853667,0.035211268,0.013477866,0.056944669,0.005477308,0,0.013750322,0.835914737,5451,6521,0.796501741,0.875327734,,,,,,,0.663884674,0.59504876,0.732720587,,,,0.813203685,0.721184051,0.905223319,0.366,,6521,0.298483438,0.433516562,73.85016037,,,72.52237092,75.17794983,,,,,,,69.76882809,67.46566701,72.07198916,,,,75.40863321,73.66896894,77.14829747,,,,520.6148748,328,43342,459.5757431,581.6540065,,,,,,,732.0954602,606.7318981,857.4590223,,,,448.1114665,373.1569125,523.0660205,,,,67.72773451,10,14765,32.47808125,124.5537152,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.15,,,0.131,0.173,0.191,,,0.166,0.217,0.147,,,0.127,0.168,456.4,63,13802,,,0.13,2110,,,,0.046672929,758.1083892,16243,,,,,,,,,,,,,,,,,,,,,,,,,,0.382,,,0.369,0.393,0.212605223,1970,9266,0.1816265,0.243583947,0.064018291,224,3499,0.042571482,0.0854651,0.000369163,6,16253,,,2708.833333,0.875,126,144,,,,,,,,2.589974164,,,,,,,2.277486974,,3.045842249,2.473553321,,,,,,,2.21632616,,2.872891924,0.0330402,,,,,-11479.26,,,,,0.795794297,35081,44083,0.626831262,0.964757333,43353,,,37907.89362,48798.10638,,,,,,,24329,15501.25532,33156.74468,35625,31125.93617,40124.06383,54643,41428.19149,67857.80851,,,,,,,,,,,33.32101348,,,,,0.270892441,,43353,,,14.27115189,14,981,,,,,,,,,,,,,,,,,,,,,,,,,,12.80674226,10,78184,5.85605806,24.31118603,12.79034074,,,,,,,,,,,,,,,,,,,16.62744296,13,78184,8.853413091,28.43343385,,,,,,,,,,,,,,,,,,,21.91200504,24,109529,14.03943509,32.6033266,,,,,,,,,,,,,25.81103099,14.75323437,41.91549726,,,,,,1300,,,,,0.60093102,7100,11815,,,0.443,,,,,13.85156263,,,,,0.682894074,4068,5957,0.631665334,0.734122815,0.171613918,873,5087,0.118704404,0.224523431,0.656034917,3908,5957,0.591496292,0.720573542,16253,,,,,0.2106688,3424,16253,,,0.209684366,3408,16253,,,0.333661478,5423,16253,,,0.005722021,93,16253,,,0.014889559,242,16253,,,0.002830247,46,16253,,,0.082384791,1339,16253,,,0.54513013,8860,16253,,,0.006373155,98,15377,0,0.016351714,0.509198302,8276,16253,,,1,16301,16301,, -13,029,13029,GA,Bryan County,2024,1,8848.763249,575,122266,7904.117853,9793.408644,0,,,,2,,,,2,11506.45863,8737.336452,14874.76604,,,,,2,9129.137071,8005.076797,10253.19735,,,,,2,,0.14,,,0.117,0.165,3.524903736,,,2.767574519,4.387718266,4.893835397,,,3.909548147,5.928535911,0.079824775,328,4109,0.071537875,0.088111675,0,,,,0.12745098,0.062733367,0.192168594,0.120385233,0.094832055,0.14593841,0.064189189,0.036267918,0.092110461,0.072081218,0.062756336,0.081406101,,,,,,,0.139,,,0.109,0.172,0.339,,,0.269,0.414,8,0.096445856,0.089,,,0.214,,,0.173,0.259,0.581317895,26007,44738,,,0.188069608,,,0.150359103,0.231882517,0.206896552,6,29,0.113372568,0.31356155,428.2,201,46938,,,15.1470732,155,10233,12.76245449,17.5316919,,,,,,,19.97649824,13.83430575,27.91515399,9.00090009,4.316281455,16.55297574,15.49804394,12.50499135,18.49109652,,,,,,,0.128556826,5408,42067,0.110684486,0.146429166,0.000553922,26,46938,,,1805.307692,0.00026957,13,48225,,,3709.615385,0.001016071,49,48225,,,984.1836735,2630,,,,,,,773,,2779,0.46,,,,,,0.21,0.43,0.25,0.47,0.37,,,,,,0.25,0.27,0.12,0.38,0.923701759,26041,28192,0.906309922,0.941093597,0.732634241,9851,13446,0.657226813,0.808041668,0.025955335,523,20150,,,0.096,1326,,0.05906383,0.13293617,,,,,,,0.053358443,0,0.126881127,0.12358643,0.005391455,0.241781404,0.083611655,0.036807204,0.130416106,3.447656877,158837,46071,2.882787722,4.012526033,0.206458967,2717,13160,0.143025898,0.269892035,7.243597938,34,46938,,,78.02892997,158,202489,65.86193918,90.19592075,,,,,,,98.49539789,65.96391379,141.4558212,,,,84.19640351,69.3166048,99.07620223,,,,9.1,,,,,0,,,,,0.108848575,1470,13505,0.082900611,0.134796538,0.098649662,0.072973798,0.124325527,0.012217697,0.002004371,0.022431023,0.001851166,0,0.005471334,0.828318009,17837,21534,0.795637798,0.86099822,,,,,,,0.662764521,0.529863795,0.795665246,,,,0.758451396,0.690420437,0.826482354,0.649,,21534,0.580824316,0.717175684,75.42555723,,,74.55170009,76.29941436,,,,,,,73.3974556,70.82057394,75.97433725,83.29918184,77.75637825,88.84198543,75.02163521,74.03744518,76.00582523,,,,463.993184,575,122266,425.9427483,502.0436197,,,,,,,508.8297657,408.6320839,626.1588111,,,,486.0667582,441.5241154,530.609401,,,,30.48199657,16,52490,17.42309479,49.50085273,,,,,,,,,,,,,33.6917764,17.40903251,58.85275303,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.102,,,0.087,0.119,0.153,,,0.133,0.177,0.095,,,0.08,0.111,179.6,67,37309,,,0.089,3840,,,,0.096445856,2915.847567,30233,,,14.92302859,19,127320,8.984638049,23.30415769,,,,,,,,,,,,,19.78282851,11.72455794,31.26539793,,,,0.342,,,0.326,0.358,0.157009875,4436,28253,0.134371577,0.179648173,0.073336571,1057,14413,0.051889763,0.09478338,0.000808709,39,48225,,,1236.538462,0.93,651,700,,,,,,,,3.394330363,,,,,,3.520684002,2.893559358,3.035562579,3.53747395,3.218566844,,,,,,3.863993041,2.567936615,2.930835744,3.36683032,0.021924139,,,,,74.29785,,,,,0.721470768,48485,67203,0.62179496,0.821146576,93057,,,84428.23404,101685.766,98750,45390.34043,152109.6596,167656,43160.85106,292151.1489,72500,52933.3617,92066.6383,85594,61301.91489,109886.0851,94266,83187.53192,105344.4681,,,,,,,,,,,31.29436018,,,,,0.161266751,,93057,,,8.957133717,28,3126,,,4.747020332,13,273856,2.527588401,8.117549339,,,,,,,,,,,,,,,,,,,19.80715251,39,202489,14.0848217,27.07702952,19.2603055,,,,,,,,,,,,,24.48320619,17.05345018,34.05021304,,,,18.27259752,37,202489,12.86559495,25.18636871,,,,,,,,,,,,,19.16666096,12.73610702,27.7011616,,,,23.00479084,63,273856,17.67751293,29.4331208,,,,,,,37.73395049,21.11940565,62.23641294,,,,22.652451,16.5228532,30.31076168,,,,,,4900,,,,,0.810020877,21340,26345,,,0.647,,,,,32.06026048,,,,,0.76027532,11598,15255,0.73130205,0.789248589,0.090064188,1347,14956,0.062954584,0.117173792,0.891314323,13597,15255,0.865621815,0.917006832,48225,,,,,0.289165371,13945,48225,,,0.110772421,5342,48225,,,0.150067392,7237,48225,,,0.00503888,243,48225,,,0.024033178,1159,48225,,,0.00155521,75,48225,,,0.086407465,4167,48225,,,0.706376361,34065,48225,,,0.015237913,636,41738,0.006818809,0.023657017,0.502871954,24251,48225,,,0.467812598,20929,44738,, -13,031,13031,GA,Bulloch County,2024,1,8843.340456,1081,231898,8094.521814,9592.159097,0,,,,2,,,,2,11948.48316,10334.85936,13562.10696,,,,,2,7767.932804,6905.422089,8630.443519,,,,,2,,0.187,,,0.159,0.216,4.048195106,,,3.252218554,4.929301206,5.143534781,,,4.171481092,6.148657661,0.103825137,627,6039,0.096131686,0.111518588,0,,,,,,,0.141644325,0.127197938,0.156090713,0.073298429,0.047162276,0.099434583,0.081184336,0.071632818,0.090735855,,,,0.091603053,0.042204614,0.141001493,0.182,,,0.145,0.219,0.363,,,0.298,0.432,7.3,0.08438024,0.126,,,0.259,,,0.213,0.306,0.556776286,45154,81099,,,0.169399244,,,0.13587941,0.206937543,0.303797468,24,79,0.245858854,0.362695293,917,756,82442,,,12.6163118,381,30199,11.34945946,13.88316414,,,,,,,20.30401737,17.39385484,23.2141799,31.83520599,22.0468056,44.48650945,7.167325428,5.962722981,8.371927875,,,,37.54940712,22.60719598,58.63805054,0.180120316,11737,65162,0.158673507,0.201567124,0.000557968,46,82442,,,1792.217391,0.000361189,30,83059,,,2768.633333,0.001228043,102,83059,,,814.3039216,3754,,,,,,,5401,,3567,0.44,,,,,,0.36,0.41,,0.45,0.48,,,,,,0.35,0.37,0.44,0.5,0.887050935,39951,45038,0.872071115,0.902030755,0.638599374,12438,19477,0.578773875,0.698424872,0.033934059,1303,38398,,,0.229,3689,,0.158702128,0.299297872,,,,0.525229358,0.063885372,0.986573344,0.409966499,0.319965676,0.499967322,0.169877408,0.02320896,0.316545856,0.154659699,0.10054542,0.208773978,4.852962493,107134,22076,4.329060768,5.376864218,0.317940954,5040,15852,0.252900975,0.382980932,6.428762039,53,82442,,,57.77954957,229,396334,50.29591656,65.26318258,,,,,,,43.32793179,32.15882611,57.12247651,59.53798524,28.55077814,109.4924747,67.42523379,57.25958316,77.59088443,,,,9.2,,,,,1,,,,,0.166636868,4660,27965,0.144369672,0.188904063,0.150985712,0.128820433,0.173150991,0.019488647,0.011191759,0.027785534,0.004112283,0.000618823,0.007605743,0.797820927,27899,34969,0.7594022,0.836239654,,,,,,,0.72827025,0.680389746,0.776150754,0.669547872,0.456140532,0.882955213,0.842306711,0.807789133,0.876824288,0.3,,34969,0.264374667,0.335625333,75.79244008,,,75.12858202,76.45629814,,,,,,,72.58967008,71.30257015,73.87677002,93.01206473,72.21989808,113.8042314,76.55455359,75.78189531,77.32721188,,,,464.2017813,1081,231898,435.8132946,492.5902681,,,,,,,621.2066332,555.9634335,686.4498329,,,,425.9746155,393.2604987,458.6887323,,,,51.31580415,46,89641,37.56961815,68.44809151,,,,,,,76.81296044,48.13827336,116.2957452,,,,38.8681592,23.74168141,60.02871949,,,,6.771263419,41,6055,4.859175536,9.185983413,,,,,,,9.581881533,6.004914143,14.50708379,,,,,,,,,,,,,0.129,,,0.11,0.147,0.176,,,0.152,0.201,0.122,,,0.105,0.14,375.7,266,70798,,,0.126,10010,,,,0.08438024,5924.927327,70217,,,7.822503283,19,242889,4.709657977,12.21580787,,,,,,,,,,,,,10.44161506,5.968285196,16.95652868,,,,0.382,,,0.368,0.395,0.214683996,10588,49319,0.187279741,0.242088251,0.077326343,1298,16786,0.054688046,0.099964641,0.001216003,101,83059,,,822.3663366,0.831767677,658.76,792,,,,,,,,2.97360408,,,,,,,2.574214879,2.85529414,3.269547406,2.894325836,,,,,,,2.407764017,2.859327593,3.244020016,0.120689751,,,,,-7042.736,,,,,0.838986032,40544,48325,0.740392142,0.937579923,49471,,,44523.93617,54418.06383,35972,10973.3617,60970.6383,47941,39873.42553,56008.57447,39878,35269.31915,44486.68085,31304,20389.95745,42218.04255,63027,55940.02128,70113.97872,,,,,,,,,,,37.91860047,,,,,0.303349437,,49471,,,14.84271156,67,4514,,,5.51767772,30,543707,3.722753987,7.876828033,,,,,,,8.220460093,4.377048786,14.05723712,,,,4.643576483,2.65420518,7.540877287,,,,10.53414474,42,396334,7.417010044,14.5199309,10.59712263,,,,,,,,,,,,,12.54992341,8.404880672,18.02378345,,,,13.37255951,53,396334,10.01696472,17.49163709,,,,,,,13.86493817,7.925010142,22.51579095,,,,14.3627717,10.05950872,19.88413013,,,,15.8173428,86,543707,12.65183256,19.53428968,,,,,,,16.44092019,10.73975491,24.08975736,,,,16.54274122,12.52931065,21.43304003,,,,,,6200,,,,,0.49807947,30084,60400,,,0.52,,,,,30.23508701,,,,,0.517547412,15337,29634,0.48915573,0.545939094,0.160640994,4501,28019,0.136151883,0.185130104,0.840014848,24893,29634,0.81616104,0.863868656,83059,,,,,0.196462755,16318,83059,,,0.124622257,10351,83059,,,0.289360575,24034,83059,,,0.005405796,449,83059,,,0.014110452,1172,83059,,,0.001613311,134,83059,,,0.046027523,3823,83059,,,0.6271566,52091,83059,,,0.006772459,510,75305,0.002365069,0.011179848,0.510420304,42395,83059,,,0.451435899,36611,81099,, -13,033,13033,GA,Burke County,2024,1,12116.56115,470,65062,10443.87872,13789.24358,0,,,,2,,,,2,14922.54622,12102.11258,17742.97987,,,,,2,10524.92837,8409.716357,12640.14039,,,,,2,,0.203,,,0.175,0.235,4.231073894,,,3.307166756,5.17355126,5.203163597,,,4.083344173,6.355905083,0.118018967,224,1898,0.103504086,0.132533849,0,,,,,,,0.154150198,0.13190253,0.176397865,,,,0.080474934,0.061109218,0.099840651,,,,,,,0.198,,,0.161,0.24,0.398,,,0.316,0.487,8,0.076075248,0.1,,,0.294,,,0.243,0.35,0.419743048,10324,24596,,,0.142633582,,,0.111350287,0.180586247,0.285714286,14,49,0.211140168,0.362602718,691.1,168,24310,,,28.54982038,151,5289,23.99605157,33.10358919,,,,,,,30.78556263,24.65797365,37.97387777,60.43956044,30.17121081,108.1430688,21.32701422,15.55607052,28.53722298,,,,,,,0.14060413,2737,19466,0.12273179,0.158476471,0.000329083,8,24310,,,3038.75,0.000123011,3,24388,,,8129.333333,0.000451042,11,24388,,,2217.090909,2488,,,,,,,413,,2877,0.37,,,,,,,0.31,,0.4,0.31,,,,,,,0.23,,0.35,0.846701745,13195,15584,0.820721747,0.872681743,0.53126782,2795,5261,0.435583915,0.626951725,0.051890454,468,9019,,,0.295,1742,,0.186574468,0.403425532,,,,,,,0.349185668,0.227226129,0.471145207,0.139931741,0,0.379086788,0.105194805,0.05225774,0.158131871,6.249324585,113344,18137,4.493810008,8.004839163,0.365533103,2225,6087,0.24694412,0.484122087,7.404360346,18,24310,,,98.87475281,113,114286,80.64409832,117.1054073,,,,,,,98.04845857,73.22727859,128.5775087,,,,108.1814515,82.35273319,139.5461905,,,,9.8,,,,,0,,,,,0.115021999,915,7955,0.083023911,0.147020086,0.088295165,0.060136865,0.116453466,0.023255814,0.003320444,0.043191184,0.010056568,0.000952476,0.01916066,0.808199263,8339,10318,0.7682886,0.848109927,,,,,,,0.844592982,0.74446597,0.944719993,,,,0.844854439,0.815202385,0.874506493,0.455,,10318,0.386991107,0.523008894,73.3593178,,,72.1178415,74.6007941,,,,,,,71.10104634,69.15568388,73.04640881,,,,74.42296047,72.81566063,76.03026031,,,,568.1442917,470,65062,513.9647659,622.3238174,,,,,,,667.4863876,577.5940859,757.3786894,,,,527.4480591,455.0493873,599.8467308,,,,113.2679764,29,25603,75.85734147,162.6717082,,,,,,,159.247744,98.57686346,243.4270929,,,,,,,,,,13.58411703,26,1914,8.873596246,19.90387883,,,,,,,,,,,,,,,,,,,,,,0.132,,,0.114,0.152,0.176,,,0.151,0.203,0.135,,,0.116,0.156,513,103,20078,,,0.1,2420,,,,0.076075248,1773.770484,23316,,,23.07437158,16,69341,13.18899706,37.47133384,,,,,,,,,,,,,,,,,,,0.397,,,0.384,0.41,0.177140355,2427,13701,0.152119078,0.202161631,0.055784104,339,6077,0.037911764,0.073656444,0.000369034,9,24388,,,2709.777778,0.88,281.6,320,,,,,,,,2.643552294,,,,,,,2.521180638,,2.890247988,2.697866471,,,,,,,2.595964003,,2.932318789,0.007289429,,,,,-6193.469,,,,,0.664058595,34543,52018,0.548935797,0.779181393,49431,,,42278.48936,56583.51064,,,,,,,36055,29622.14894,42487.85106,28314,6557.404255,50070.59575,73011,59065.80851,86956.19149,,,,,,,,,,,24.26758346,,,,,0.237583703,,49431,,,14.97395833,23,1536,,,12.52199175,20,159719,7.648757872,19.33920066,,,,,,,22.80348759,13.28387186,36.51059264,,,,,,,,,,9.602990135,12,114286,4.793778076,17.18240197,10.49997375,,,,,,,,,,,,,14.09644057,6.445790253,26.75943516,,,,19.24995188,22,114286,12.06384235,29.14465848,,,,,,,22.62656736,11.69147753,39.52405967,,,,18.33583923,8.792747618,33.72026118,,,,31.93107896,51,159719,23.77478562,41.98347183,,,,,,,36.21730382,23.86743143,52.69427558,,,,31.56192054,20.22231803,46.96163595,,,,,,2300,,,,,0.646731235,10684,16520,,,0.442,,,,,16.58402338,,,,,0.725793784,6469,8913,0.674155378,0.77743219,0.123592814,1032,8350,0.084055054,0.163130575,0.828901604,7388,8913,0.794776717,0.863026492,24388,,,,,0.245120551,5978,24388,,,0.175537149,4281,24388,,,0.451492537,11011,24388,,,0.005945547,145,24388,,,0.006232573,152,24388,,,0.001558143,38,24388,,,0.036862391,899,24388,,,0.483639495,11795,24388,,,0.002800508,64,22853,0,0.009070846,0.522347056,12739,24388,,,0.751870223,18493,24596,, -13,035,13035,GA,Butts County,2024,1,11197.68777,556,71353,9847.489635,12547.88591,0,,,,2,,,,2,11128.83675,8672.963267,13584.71023,,,,,2,11881.15048,10149.74614,13612.55481,,,,,2,,0.204,,,0.176,0.233,4.306052896,,,3.47813599,5.209499929,5.487139082,,,4.394322474,6.657603686,0.109178744,226,2070,0.095743819,0.122613669,0,,,,,,,0.164092664,0.132198234,0.195987094,0.15942029,0.073044352,0.245796228,0.089185393,0.074381943,0.103988843,,,,,,,0.209,,,0.173,0.249,0.391,,,0.315,0.469,7.4,0.085464165,0.122,,,0.286,,,0.238,0.337,0.630966423,16048,25434,,,0.162790121,,,0.130110868,0.198753568,0.205128205,8,39,0.124539557,0.295665403,508.1,131,25781,,,28.20905314,129,4573,23.3410626,33.07704367,,,,,,,33.11793215,23.76599989,44.92821451,,,,25.87064677,20.44967271,32.28773799,,,,,,,0.167455968,3147,18793,0.147200649,0.187711287,0.000271518,7,25781,,,3683,0.000150099,4,26649,,,6662.25,0.000637923,17,26649,,,1567.588235,3276,,,,,,,1621,,3347,0.35,,,,,,,0.38,,0.34,0.39,,,,,,,0.29,,0.4,0.837245696,14980,17892,0.810792958,0.863698435,0.402389318,2863,7115,0.335151945,0.469626692,0.027696922,314,11337,,,0.191,1018,,0.112361702,0.269638298,,,,,,,0.567327409,0.427981819,0.706673,,,,0.220389805,0.132813181,0.307966429,3.548948732,117818,33198,2.738449363,4.359448101,0.376074909,1968,5233,0.257559352,0.494590467,8.145533532,21,25781,,,121.3875156,151,124395,102.0258988,140.7491324,,,,,,,88.51831758,60.14390217,125.6446861,,,,142.5751261,116.740219,168.4100333,,,,9.9,,,,,0,,,,,0.110911271,925,8340,0.074110441,0.147712101,0.094521373,0.060487541,0.128555205,0.022661871,0.005625077,0.039698664,0.001199041,0,0.005973402,0.859351621,8615,10025,0.820534625,0.898168617,,,,,,,0.940786567,0.842861797,1,,,,0.810633214,0.748819459,0.872446969,0.519,,10025,0.4423362,0.5956638,73.21503974,,,72.18995509,74.24012439,,,,,,,73.85402759,71.65661548,76.05143971,,,,72.47504895,71.24968089,73.70041701,,,,608.1289073,556,71353,556.2308494,660.0269652,,,,,,,592.8886774,491.0056997,694.7716551,,,,645.6726931,581.2015124,710.1438738,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.134,,,0.116,0.153,0.178,,,0.155,0.203,0.122,,,0.105,0.14,608,134,22040,,,0.122,3040,,,,0.085464165,2021.654818,23655,,,27.57968559,21,76143,17.07226007,42.15847909,,,,,,,,,,,,,41.89609768,25.93434479,64.04263573,,,,0.392,,,0.38,0.405,0.201962507,2758,13656,0.174558252,0.229366763,0.077794282,419,5386,0.055155984,0.100432579,0.000637923,17,26649,,,1567.588235,0.89,215.38,242,,,0.263975155,255,966,0.123619181,0.40433113,2.596509986,,,,,,,2.111334941,,2.778212033,2.749614098,,,,,,,2.403861211,,2.887424412,0.007672647,,,,,-3278.356,,,,,0.813241362,37845,46536,0.618529244,1.007953479,62231,,,53751.17021,70710.82979,,,,,,,44197,39855.21277,48538.78723,75083,8493.042553,141672.9575,72235,62227.68085,82242.31915,,,,,,,,,,,26.47265619,,,,,0.241149909,,62231,,,12.35741445,13,1052,,,9.312883793,16,171805,5.323117752,15.12353983,,,,,,,,,,,,,,,,,,,24.66903987,32,124395,16.76141573,35.01573295,25.72450661,,,,,,,,,,,,,31.07320126,20.29804671,45.52943936,,,,20.90116162,26,124395,13.6533327,30.62504448,,,,,,,,,,,,,23.15322561,13.93975429,36.15662983,,,,26.19248567,45,171805,19.10497878,35.04760659,,,,,,,,,,,,,31.62860984,22.15228949,43.7873279,,,,,,2000,,,,,0.615799111,11771,19115,,,0.618,,,,,26.80683504,,,,,0.741482966,6290,8483,0.702776497,0.780189435,0.083141716,687,8263,0.048529058,0.117754374,0.813273606,6899,8483,0.76590535,0.860641862,26649,,,,,0.203459792,5422,26649,,,0.150136966,4001,26649,,,0.279635258,7452,26649,,,0.003752486,100,26649,,,0.007917746,211,26649,,,0.000450298,12,26649,,,0.040414275,1077,26649,,,0.650718601,17341,26649,,,0.006717457,164,24414,0,0.014569407,0.460617659,12275,26649,,,0.776008493,19737,25434,, -13,037,13037,GA,Calhoun County,2024,1,8495.084447,116,16617,6347.935416,10642.23348,0,,,,2,,,,2,9154.308509,6445.478001,12618.00842,,,,,2,7670.819768,4862.641722,11509.99599,1,,,,2,,0.273,,,0.239,0.312,4.847929216,,,3.933000166,5.918126733,5.49212224,,,4.374167119,6.767031263,0.112565445,43,382,0.080870128,0.144260762,0,,,,,,,0.123404255,0.081352233,0.165456278,,,,0.090163934,0.039339312,0.140988556,,,,,,,0.245,,,0.206,0.291,0.459,,,0.375,0.545,7.4,0.063109281,0.13,,,0.353,,,0.299,0.415,,,5573,,,0.141157618,,,0.111082413,0.175814913,0.125,1,8,0.007330353,0.353459145,726.1,40,5509,,,31.45235893,34,1081,21.78167288,43.95151905,,,,,,,41.90751445,28.06612014,60.18618127,,,,,,,,,,,,,0.17300813,532,3075,0.149178343,0.196837917,0.000181521,1,5509,,,5509,0.000365698,2,5469,,,2734.5,0.000365698,2,5469,,,2734.5,3300,,,,,,,4140,,2390,0.38,,,,,,,0.37,,0.39,0.28,,,,,,,0.15,,0.36,0.761870845,3209,4212,0.719530417,0.804211273,0.368137255,751,2040,0.28369489,0.45257962,0.031978072,70,2189,,,0.383,322,,0.229297872,0.536702128,,,,,,,0.488333333,0.391322449,0.585344218,,,,0.22406639,0.080820942,0.367311838,5.459397313,90222,16526,4.060365543,6.858429084,0.455319149,428,940,0.311648461,0.598989837,12.70648031,7,5509,,,68.32378969,21,30736,42.29350268,104.4401703,,,,,,,53.94907208,25.87067704,99.21426436,,,,110.2093979,55.01613433,197.1950557,,,,9.3,,,,,0,,,,,0.136231884,235,1725,0.081185661,0.191278107,0.124260355,0.064345278,0.184175433,0.013333333,0,0.039701357,0.008695652,0,0.031336389,0.787801779,1240,1574,0.721128467,0.854475091,,,,,,,0.829756795,0.712215052,0.947298539,,,,0.810954064,0.716949198,0.904958929,0.299,,1574,0.191646875,0.406353125,76.26453733,,,74.05539673,78.47367794,,,,,,,76.22693399,72.96147557,79.49239241,,,,75.93613549,72.76361409,79.10865689,,,,527.5722098,116,16617,430.3712194,624.7732001,,,,,,,574.6184226,447.0874313,727.2163901,,,,497.8304161,357.2517017,675.3631726,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.157,,,0.137,0.18,0.183,,,0.159,0.208,0.172,,,0.15,0.198,653.1,32,4900,,,0.13,730,,,,0.063109281,422.4535272,6694,,,,,,,,,,,,,,,,,,,,,,,,,,0.433,,,0.418,0.447,0.2125,476,2240,0.180329787,0.244670213,0.066217733,59,891,0.043579435,0.088856031,0.001097093,6,5469,,,911.5,,,,,,,,,,,2.446742195,,,,,,,2.380438795,,,2.47080373,,,,,,,2.344324992,,,0.331489707,,,,,-29800.74,,,,,1.248730551,45987,36827,0.739170123,1.758290979,39681,,,33637.76596,45724.23404,,,,,,,35972,17761.2766,54182.7234,38924,38078.04255,39769.95745,75972,61768.25532,90175.74468,,,,,,,,,,,20.28665915,,,,,0.295960283,,39681,,,13.15789474,3,228,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,500,,,,,0.439679359,2194,4990,,,0.37,,,,,0.18961648,,,,,0.654642619,980,1497,0.588862267,0.72042297,0.142961342,196,1371,0.065445813,0.220476871,0.746158985,1117,1497,0.687249365,0.805068604,5469,,,,,0.155055769,848,5469,,,0.164746754,901,5469,,,0.604863778,3308,5469,,,0.005302615,29,5469,,,0.011702322,64,5469,,,0.003656976,20,5469,,,0.05558603,304,5469,,,0.313402816,1714,5469,,,0.021924935,118,5382,0.004213546,0.039636324,0.370634485,2027,5469,,,1,5573,5573,, -13,039,13039,GA,Camden County,2024,1,9016.540314,768,156755,8118.767381,9914.313246,0,,,,2,,,,2,10577.31313,8291.80864,12862.81763,,,,,2,9120.634847,8037.453135,10203.81656,,,,,2,,0.174,,,0.15,0.199,3.945322836,,,3.194688473,4.793226997,5.009534025,,,4.124146714,6.019333001,0.090005733,471,5233,0.082251566,0.097759899,0,,,,,,,0.144895719,0.122037931,0.167753507,0.090558767,0.065868547,0.115248987,0.075569657,0.066771535,0.084367779,,,,0.081871345,0.040777597,0.122965093,0.176,,,0.144,0.209,0.364,,,0.298,0.435,6.6,0.178078853,0.115,,,0.255,,,0.211,0.301,0.615523664,33711,54768,,,0.173882701,,,0.141662819,0.211083459,0.205882353,7,34,0.119526223,0.303561189,393.4,219,55664,,,22.5520982,237,10509,19.68086246,25.42333395,,,,,,,25.3385758,19.24064294,32.75598504,27.45995423,17.59411082,40.85823523,20.16679303,16.73937488,23.59421117,,,,27.29044834,14.91994206,45.78873513,0.136907769,6233,45527,0.119035429,0.154780109,0.000269474,15,55664,,,3710.933333,0.000315718,18,57013,,,3167.388889,0.001385649,79,57013,,,721.6835443,2905,,,,,,,3408,2842,2833,0.47,,,,,,0.5,0.52,0.47,0.46,0.41,,,,,,0.38,0.34,0.22,0.42,0.925424397,32872,35521,0.910462301,0.940386493,0.619212075,9682,15636,0.557559883,0.680864266,0.029822161,654,21930,,,0.167,2256,,0.120531915,0.213468085,,,,,,,0.535944899,0.416736102,0.655153696,0.22589053,0.077517435,0.374263625,0.150102197,0.107336136,0.192868259,4.642581715,128827,27749,4.077592402,5.207571028,0.306797583,4062,13240,0.258064272,0.355530895,8.084219603,45,55664,,,68.27216368,186,272439,58.46048615,78.0838412,,,,,,,75.89678038,53.70907894,104.1742608,,,,73.49325607,61.27536749,85.71114464,,,,8.1,,,,,0,,,,,0.138769309,2740,19745,0.112220817,0.165317801,0.119376278,0.093652494,0.145100063,0.011901747,0.005181818,0.018621676,0.010635604,0.003334997,0.017936211,0.770118089,19695,25574,0.746635518,0.79360066,,,,,,,0.756156156,0.687998949,0.824313364,0.580797482,0.461825924,0.699769039,0.782196279,0.761345853,0.803046705,0.358,,25574,0.314027747,0.401972254,76.72917742,,,75.9148353,77.54351955,,,,,,,74.97021031,73.00005212,76.9403685,84.86359983,78.28213638,91.44506328,76.46123611,75.52228084,77.40019137,,,,429.3134435,768,156755,397.8306553,460.7962317,,,,,,,498.2643666,418.1208119,578.4079213,,,,437.160934,399.8053905,474.5164776,,,,54.79827385,32,58396,37.48197875,77.35881238,,,,,,,,,,,,,48.80958837,28.92765546,77.14019271,,,,4.731264194,25,5284,3.061824725,6.984279277,,,,,,,,,,,,,,,,,,,,,,0.122,,,0.105,0.138,0.168,,,0.146,0.191,0.113,,,0.098,0.13,224.7,103,45830,,,0.115,6220,,,,0.178078853,8995.297109,50513,,,21.12021627,35,165718,14.71100448,29.37310815,,,,,,,,,,,,,26.14470221,17.63972079,37.32318808,,,,0.38,,,0.365,0.394,0.165956918,5339,32171,0.142127131,0.189786705,0.069297678,964,13911,0.04785087,0.090744487,0.000859453,49,57013,,,1163.530612,0.92,537.28,584,,,,,,,,3.299986631,,,,,,,2.794491782,3.165153773,3.499157458,3.259655879,,,,,,,2.74470693,3.071460113,3.474832093,0.009587017,,,,,-2321.563,,,,,0.774637785,43200,55768,0.70693596,0.842339611,67628,,,59249.44681,76006.55319,,,,51827,33425.6383,70228.3617,45900,39751.91489,52048.08511,74623,55728.3617,93517.6383,76586,69035.53192,84136.46809,,,,,,,,,,,22.66324503,,,,,0.308733069,,67628,,,8.362557324,31,3707,,,2.648662823,10,377549,1.270136776,4.870985234,,,,,,,,,,,,,,,,,,,18.05160635,50,272439,13.26364136,24.00480964,18.35273217,,,,,,,,,,,,,21.54001959,15.3170596,29.44591587,,,,15.41629502,42,272439,11.11070946,20.83835236,,,,,,,19.97283694,9.57775165,36.73075825,,,,15.86185383,10.70192617,22.64378263,,,,12.71358155,48,377549,9.373991409,16.85636465,,,,,,,17.17082105,8.872413801,29.99396882,,,,12.93897371,8.960615433,18.08091886,,,,5.2,,5000,,,16,10,0.594503702,23688,39845,,,0.615,,,,,32.7790423,,,,,0.649889408,13222,20345,0.625687856,0.674090959,0.13875816,2742,19761,0.110464563,0.167051757,0.897714426,18264,20345,0.876930464,0.918498388,57013,,,,,0.239752337,13669,57013,,,0.151000649,8609,57013,,,0.178538228,10179,57013,,,0.007261502,414,57013,,,0.01741708,993,57013,,,0.00247312,141,57013,,,0.079736201,4546,57013,,,0.688509638,39254,57013,,,0.003559273,183,51415,0,0.007831709,0.483205585,27549,57013,,,0.295811423,16201,54768,, -13,043,13043,GA,Candler County,2024,1,15408.49414,333,30432,12814.33716,18002.65112,0,,,,2,,,,2,18538.97044,13244.51228,25244.8159,,,,,2,15276.74483,11851.57963,18701.91004,,,,,2,,0.25,,,0.218,0.284,4.961723946,,,3.995483591,5.978082321,5.95854645,,,4.757007732,7.152661037,0.10403397,98,942,0.084537142,0.123530799,0,,,,,,,0.143442623,0.099460266,0.18742498,0.08988764,0.047868848,0.131906433,0.085714286,0.060927192,0.110501379,,,,,,,0.239,,,0.199,0.282,0.412,,,0.33,0.498,7.4,0.003869192,0.162,,,0.341,,,0.286,0.399,0.57927329,6361,10981,,,0.135665664,,,0.106199961,0.168728713,0.176470588,3,17,0.062472405,0.322105398,715.8,79,11037,,,35.74363188,87,2434,28.62918387,44.08963787,,,,,,,46.08294931,31.09197238,65.78627557,48.61111111,30.09104395,74.30724707,25.30674847,17.42000121,35.5400838,,,,,,,0.20721032,1799,8682,0.182189044,0.232231597,0.000181209,2,11037,,,5518.5,9.09091E-05,1,11000,,,11000,0.000909091,10,11000,,,1100,4747,,,,,,,3936,,4834,0.28,,,,,,,0.09,,0.32,0.31,,,,,,,0.28,,0.32,0.775075157,5672,7318,0.732239227,0.817911087,0.458242239,1048,2287,0.334524622,0.581959855,0.024141895,147,6089,,,0.309,864,,0.187468085,0.430531915,,,,,,,0.392686805,0.121263029,0.66411058,,,,0.280866426,0.169824386,0.391908466,5.398840486,99641,18456,4.364398352,6.433282619,0.246079164,659,2678,0.123331533,0.368826794,7.248346471,8,11037,,,93.65015241,51,54458,69.7286897,123.1326552,,,,,,,89.55892231,46.27640204,156.4414139,,,,108.2120957,75.79042148,149.8111533,,,,9.1,,,,,0,,,,,0.172029703,695,4040,0.11836967,0.225689737,0.117721519,0.073739495,0.161703543,0.054207921,0.01612402,0.092291822,0.003712871,0,0.012093946,0.832467826,3687,4429,0.718350944,0.946584707,,,,,,,0.822529224,0.700087461,0.944970987,,,,0.830713965,0.608836115,1,0.268,,4429,0.194842165,0.341157835,69.63847531,,,67.96546464,71.31148599,,,,,,,66.68586407,63.25224836,70.11947979,,,,69.97614523,67.77333738,72.17895308,,,,804.0920078,333,30432,713.1535053,895.0305103,,,,,,,918.5937934,734.756464,1134.455862,,,,801.2847025,687.7003951,914.8690099,,,,83.38892595,10,11992,39.98823129,153.3552038,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.159,,,0.139,0.182,0.198,,,0.173,0.226,0.15,,,0.129,0.172,308.7,28,9070,,,0.162,1760,,,,0.003869192,42.55336859,10998,,,,,,,,,,,,,,,,,,,,,,,,,,0.397,,,0.383,0.409,0.257463938,1535,5962,0.224102236,0.29082564,0.09880869,282,2854,0.066638477,0.130978902,0.000727273,8,11000,,,1375,0.221452223,234.075,1057,,,,,,,,2.829821469,,,,,,,2.493462074,2.454197578,3.141242968,2.505757398,,,,,,,2.234871747,2.305851576,2.786746927,0.00395666,,,,,-9510.863,,,,,0.780072797,35576,45606,0.574789588,0.985356007,44493,,,38278.19149,50707.80851,,,,,,,46500,17582.55319,75417.44681,,,,52034,40932.89362,63135.10638,,,,,,,,,,,25.13169698,,,,,0.263951633,,44493,,,7.716049383,5,648,,,,,,,,,,,,,,,,,,,,,,,,,,19.39823178,12,54458,9.683527412,34.708795,22.03532998,,,,,,,,,,,,,28.17889406,12.88518473,53.4923185,,,,22.03532998,12,54458,11.38597655,38.49128695,,,,,,,,,,,,,,,,,,,40.65360506,31,76254,27.62215225,57.70454731,,,,,,,64.3121282,33.23101511,112.3403454,,,,31.99112779,17.90519138,52.76450024,,,,,,1200,,,,,0.583794466,4431,7590,,,0.52,,,,,6.480400783,,,,,0.609066537,2499,4103,0.553591307,0.664541766,0.115538914,432,3739,0.064445533,0.166632295,0.784304168,3218,4103,0.731147515,0.837460821,11000,,,,,0.258454546,2843,11000,,,0.184636364,2031,11000,,,0.245727273,2703,11000,,,0.005,55,11000,,,0.011727273,129,11000,,,0.001454546,16,11000,,,0.128636364,1415,11000,,,0.602363636,6626,11000,,,0.030228918,309,10222,0.00879236,0.051665477,0.514363636,5658,11000,,,1,10981,10981,, -13,045,13045,GA,Carroll County,2024,1,11179.08324,2230,343721,10521.37309,11836.79339,0,,,,2,,,,2,14650.96149,12843.40408,16458.51889,,5453.129152,3877.707904,7454.607066,,11031.8009,10258.98525,11804.61655,,,,,2,,0.182,,,0.155,0.209,3.978192579,,,3.164626409,4.834838788,5.35479286,,,4.312957792,6.404984031,0.085053158,952,11193,0.079885117,0.0902212,0,,,,0.172131148,0.105144744,0.239117551,0.131750466,0.117447131,0.1460538,0.066144474,0.051773616,0.080515331,0.071975292,0.066105309,0.077845276,,,,0.116040956,0.079368163,0.152713748,0.179,,,0.142,0.215,0.354,,,0.285,0.424,6.4,0.194697907,0.117,,,0.264,,,0.219,0.31,0.637400544,75945,119148,,,0.167388233,,,0.13301325,0.205337208,0.214876033,26,121,0.16915961,0.263495228,534.6,652,121968,,,22.78758509,790,34668,21.19852314,24.37664705,,,,,,,17.03916796,14.3479796,19.73035631,33.93739704,27.38325289,40.49154118,23.64687336,21.56369144,25.73005528,,,,32.20035778,22.55273472,44.57886806,0.161585305,16292,100826,0.144904454,0.178266156,0.00050833,62,121968,,,1967.225807,0.000345127,43,124592,,,2897.488372,0.001886156,235,124592,,,530.1787234,3666,,,,,,,4883,,3404,0.36,,,,,,0.2,0.38,0.23,0.37,0.4,,,,,,0.36,0.28,0.26,0.41,0.845300978,64652,76484,0.828759197,0.861842759,0.551412102,17123,31053,0.508186892,0.594637312,0.030653214,1756,57286,,,0.172,4958,,0.117191489,0.226808511,0.433242507,0.139222748,0.727262266,,,,0.317647059,0.25180857,0.383485548,0.427090301,0.307510491,0.546670111,0.151100572,0.094462062,0.207739082,4.6658065,124759,26739,4.17888397,5.15272903,0.328076937,9279,28283,0.282897984,0.37325589,10.00262364,122,121968,,,92.40633434,554,599526,84.7114352,100.1012335,,,,,,,78.98894155,63.59696847,96.98091672,29.95874911,15.95177216,51.23037337,106.6840276,96.8159557,116.5520994,,,,9.7,,,,,0,,,,,0.140656476,5935,42195,0.12029257,0.161020382,0.112790977,0.092266567,0.133315386,0.017063633,0.010610331,0.023516935,0.012323735,0.00634965,0.01829782,0.771325797,42028,54488,0.747107542,0.795544051,,,,,,,0.762372059,0.682243258,0.842500859,0.532146653,0.455990109,0.608303196,0.80654924,0.782056434,0.831042047,0.412,,54488,0.376674802,0.447325198,73.40333102,,,72.90156019,73.90510185,,,,,,,70.77427463,69.46597821,72.08257105,94.7682789,74.3735005,115.1630573,73.39060699,72.81935825,73.96185573,,,,567.4924362,2230,343721,543.4116579,591.5732146,,,,,,,686.6066939,621.8958301,751.3175577,277.7974697,193.4961161,386.3490324,568.8871289,540.9939996,596.7802581,,,,63.32549303,84,132648,50.5108933,78.40126935,,,,,,,111.6110355,76.34186569,157.5614805,,,,55.70895703,40.78595821,74.30794181,,,,7.013127135,78,11122,5.543585974,8.752700059,,,,,,,11.6713352,7.553072758,17.22919314,,,,6.144803633,4.498768556,8.196306934,,,,,,,0.126,,,0.108,0.143,0.172,,,0.148,0.195,0.113,,,0.095,0.13,274.3,279,101712,,,0.117,13830,,,,0.194697907,21519.37554,110527,,,31.90380453,116,363593,26.09790451,37.70970454,,,,,,,21.32620564,11.93611541,35.17433302,,,,38.17544964,30.95771796,46.5708111,,,,0.389,,,0.375,0.403,0.200187284,14537,72617,0.177548986,0.222825582,0.065862208,1954,29668,0.047989868,0.083734549,0.001155772,144,124592,,,865.2222222,0.923868313,1347,1458,,,0.082297365,662,8044,0.045815141,0.118779588,3.153378475,,,,,,,2.584621001,2.849875093,3.419352159,3.120524247,,,,,,,2.61196414,2.960211566,3.343513628,0.057688221,,,,,-4381.0775,,,,,0.793358774,41787,52671,0.741452408,0.845265141,69924,,,63958.21277,75889.78723,,,,55332,28192.25532,82471.74468,52301,39783.21277,64818.78723,50809,37092.57447,64525.42553,72086,67774,76398,,,,,,,,,,,36.38692437,,,,,0.167953778,,69924,,,7.431428185,55,7401,,,3.974313889,33,830332,2.735734811,5.581414334,,,,,,,10.73754287,6.255014413,17.1918463,,,,2.732291761,1.561740821,4.437070641,,,,20.19360478,120,599526,16.5078085,23.87940107,20.01581249,,,,,,,,,,,,,24.95629544,20.10339867,29.80919221,,,,14.84506093,89,599526,11.92180292,18.26812488,,,,,,,11.28413451,6.008326381,19.29621367,,,,17.58266824,13.80617633,22.07342986,,,,20.47373822,170,830332,17.3960207,23.55145573,,,,,,,25.89642693,18.58372307,35.13142725,,,,21.34602938,17.60390544,25.08815333,,,,17.19298246,,11400,,,146,50,0.625419059,54474,87100,,,0.635,,,,,27.02348725,,,,,0.682365802,29339,42996,0.663511772,0.701219831,0.140742527,5838,41480,0.117936147,0.163548906,0.876755977,37697,42996,0.864901226,0.888610728,124592,,,,,0.235279954,29314,124592,,,0.141638307,17647,124592,,,0.197131437,24561,124592,,,0.006132015,764,124592,,,0.011509567,1434,124592,,,0.00113972,142,124592,,,0.078656736,9800,124592,,,0.686665276,85553,124592,,,0.020610314,2320,112565,0.013500377,0.027720251,0.510634712,63621,124592,,,0.543827844,64796,119148,, -13,047,13047,GA,Catoosa County,2024,1,8725.657001,1088,188386,7897.954687,9553.359315,0,,,,2,,,,2,7657.217556,3501.367459,14535.7841,1,,,,2,9083.585164,8189.919717,9977.250612,,,,,2,,0.155,,,0.128,0.184,3.782595444,,,2.957014773,4.639296503,5.291906371,,,4.305058114,6.334804845,0.086327783,394,4564,0.078179731,0.094475834,0,,,,,,,0.148148148,0.08822159,0.208074707,0.066666667,0.028605083,0.104728251,0.085257985,0.076678214,0.093837757,,,,0.097087379,0.0399077,0.154267057,0.175,,,0.136,0.215,0.363,,,0.294,0.437,7.7,0.096568853,0.104,,,0.234,,,0.192,0.281,0.80504479,54640,67872,,,0.171677915,,,0.137634286,0.211839036,0.090909091,3,33,0.027235464,0.18917707,233.9,160,68397,,,21.21023082,306,14427,18.83371476,23.58674687,,,,,,,24.77876106,13.54677925,41.57455066,21.30681818,11.92526439,35.14235635,20.95329495,18.41607713,23.49051276,,,,25.12562814,12.04871532,46.20692473,0.134296521,7492,55787,0.11761567,0.150977372,0.0005702,39,68397,,,1753.769231,0.000247,17,68826,,,4048.588235,0.001423881,98,68826,,,702.3061225,2672,,,,,,,,,2721,0.45,,,,,,0.35,0.7,,0.45,0.47,,,,,,0.34,0.5,0.38,0.47,0.894613928,42521,47530,0.876240751,0.912987106,0.597244733,10318,17276,0.542056239,0.652433226,0.026864956,896,33352,,,0.14,2084,,0.088765957,0.191234043,,,,,,,0.081081081,0,0.401700222,,,,0.135634921,0.083590334,0.187679508,3.742167862,122077,32622,3.269422479,4.214913246,0.21701821,3313,15266,0.167068439,0.266967982,6.579235931,45,68397,,,72.20152511,244,337943,63.14195627,81.26109395,,,,,,,,,,,,,75.98659754,66.20861905,85.76457602,,,,9.4,,,,,0,,,,,0.11888668,2990,25150,0.090852825,0.146920535,0.089185954,0.06702678,0.111345128,0.026043738,0.008689022,0.043398453,0.005168986,0.001367145,0.008970828,0.847019436,27324,32259,0.821732563,0.87230631,,,,,,,,,,,,,0.759552083,0.725320056,0.793784109,0.327,,32259,0.28922772,0.36477228,76.22914275,,,75.54401924,76.91426625,,,,,,,82.29489694,73.3488253,91.24096858,,,,75.75690206,75.03879198,76.47501215,,,,431.3439996,1088,188386,404.5908563,458.0971428,,,,,,,332.3433021,205.7257421,508.0220406,,,,447.7687383,419.2772078,476.2602688,,,,41.68217343,28,67175,27.69750154,60.24234603,,,,,,,,,,,,,41.42931124,26.54454144,61.64353115,,,,6.050129646,28,4628,4.020267212,8.744121855,,,,,,,,,,,,,5.760921748,3.691131266,8.57179491,,,,,,,0.115,,,0.098,0.133,0.17,,,0.146,0.195,0.093,,,0.078,0.109,84.4,49,58053,,,0.104,7030,,,,0.096568853,6174.805591,63942,,,23.53252636,48,203973,17.35102726,31.20071587,,,,,,,,,,,,,25.56751729,18.78605002,33.99937786,,,,0.348,,,0.329,0.365,0.162862994,6601,40531,0.141416185,0.184309802,0.061071074,983,16096,0.043198733,0.078943414,0.000784587,54,68826,,,1274.555556,0.88,722.48,821,,,,,,,,3.061792311,,,,,,,2.577301836,2.581212999,3.098278301,2.710923996,,,,,,,2.168326783,2.018808197,2.742217591,0.033606101,,,,,870.8262,,,,,0.799744577,44461,55594,0.713383247,0.886105907,66918,,,60312.38298,73523.61702,,,,59279,4599.170213,113958.8298,,,,58013,24740.65957,91285.34043,70209,65563.38298,74854.61702,,,,,,,,,,,37.75857527,,,,,0.224259542,,66918,,,7.332205302,26,3546,,,2.338480116,11,470391,1.167360848,4.184186881,,,,,,,,,,,,,,,,,,,21.07855366,70,337943,16.33558956,26.76901804,20.71355229,,,,,,,,,,,,,21.72996999,16.66024339,27.85684083,,,,15.09130238,51,337943,11.23646587,19.84227558,,,,,,,,,,,,,14.41125126,10.47123723,19.34643216,,,,10.62945507,50,470391,7.889386433,14.01361137,,,,,,,,,,,,,10.80030241,7.907178775,14.40608989,,,,,,6500,,,,,0.637266595,32593,51145,,,0.687,,,,,50.27430865,,,,,0.749097963,19308,25775,0.718093795,0.780102131,0.093610287,2366,25275,0.070059373,0.1171612,0.88186227,22730,25775,0.865124479,0.898600061,68826,,,,,0.219379304,15099,68826,,,0.188620579,12982,68826,,,0.031921076,2197,68826,,,0.004881876,336,68826,,,0.015459274,1064,68826,,,0.001699939,117,68826,,,0.039069538,2689,68826,,,0.890651789,61300,68826,,,0.006988131,451,64538,0.002528061,0.011448201,0.51124575,35187,68826,,,0.237225955,16101,67872,, -13,049,13049,GA,Charlton County,2024,1,11449.98565,285,36800,9326.602516,13573.36878,0,,,,2,,,,2,10232.28017,6412.515504,15491.79514,1,,,,2,13795.10114,10812.47666,16777.72562,,,,,2,,0.235,,,0.202,0.269,4.760178622,,,3.831756217,5.838307534,5.451498668,,,4.324580434,6.671944894,0.081528662,64,785,0.062385697,0.100671627,0,,,,,,,0.132275132,0.083974225,0.18057604,,,,0.065573771,0.044867233,0.086280308,,,,,,,0.228,,,0.188,0.271,0.424,,,0.343,0.509,7.8,0.031613533,0.13,,,0.324,,,0.274,0.382,0.542898227,6796,12518,,,0.156510184,,,0.123857229,0.193804943,0.1,1,10,0.005279615,0.302965499,321.2,41,12766,,,35.98580841,71,1973,28.10521493,45.39120076,,,,,,,34.35114504,20.35866561,54.28961883,,,,31.08003108,22.20402987,42.32218101,,,,,,,0.183702645,1542,8394,0.159872858,0.207532432,0.000234999,3,12766,,,4255.333333,,0,12781,,,,0.000234723,3,12781,,,4260.333333,4339,,,,,,,2515,,4261,0.39,,,,,,,0.47,,0.37,0.34,,,,,,,0.3,,0.34,0.840924239,7570,9002,0.802019566,0.879828913,0.353462604,1276,3610,0.276208858,0.43071635,0.031126872,158,5076,,,0.282,634,,0.171191489,0.392808511,,,,,,,0.627560521,0.461490023,0.79363102,0.126126126,0,0.572946073,0.292921687,0.159635999,0.426207374,5.183456324,90612,17481,3.716287737,6.650624911,0.244880174,562,2295,0.144967086,0.344793263,3.133322889,4,12766,,,98.05273399,64,65271,75.51255312,125.2111523,,,,,,,73.5525901,40.21188545,123.4087481,,,,123.0382925,91.02440615,162.6631478,,,,8,,,,,0,,,,,0.151633987,580,3825,0.09216986,0.211098114,0.13368984,0.074514298,0.192865381,0.026143791,0,0.052942005,0.013071895,0,0.026713221,0.951421085,4720,4961,0.939743601,0.963098568,,,,,,,,,,,,,0.904840484,0.834774497,0.974906471,0.408,,4961,0.310625354,0.505374646,74.04844402,,,72.26572493,75.83116312,,,,,,,74.26349258,70.32472714,78.20225801,,,,72.21186743,70.04357038,74.38016447,,,,616.0087651,285,36800,542.6903963,689.327134,,,,,,,569.9682376,432.800779,736.8161183,,,,703.9335697,605.8104054,802.0567341,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.15,,,0.13,0.172,0.181,,,0.157,0.208,0.144,,,0.124,0.166,522.6,58,11098,,,0.13,1620,,,,0.031613533,384.7683063,12171,,,,,,,,,,,,,,,,,,,,,,,,,,0.398,,,0.384,0.412,0.224267101,1377,6140,0.192096888,0.256437314,0.07479813,176,2353,0.050968343,0.098627917,0.000625929,8,12781,,,1597.625,0.975,90.675,93,,,,,,,,2.750315602,,,,,,,2.455846755,,2.891067371,2.64579086,,,,,,,2.300341212,,2.744627338,0.048396455,,,,,-8856.314,,,,,0.943790729,30559,32379,0.287390991,1.600190466,48147,,,40872.95745,55421.04255,,,,,,,36027,31537.46809,40516.53192,,,,52436,41836.51064,63035.48936,,,,,,,,,,,33.44893955,,,,,0.243919663,,48147,,,6,3,500,,,12.12348319,11,90733,6.051999126,21.69226027,,,,,,,,,,,,,,,,,,,24.43443169,17,65271,13.96638893,39.67998625,26.04525747,,,,,,,,,,,,,39.18599023,21.4233455,65.74743312,,,,22.98110953,15,65271,12.86235255,37.90384531,,,,,,,,,,,,,25.10985562,12.04115178,46.1779185,,,,11.02134835,10,90733,5.28516493,20.26865203,,,,,,,,,,,,,,,,,,,,,1000,,,,,0.467349028,4566,9770,,,0.447,,,,,12.25474808,,,,,0.739302498,2989,4043,0.669093974,0.809511022,0.111866179,428,3826,0.047707019,0.176025338,0.766015335,3097,4043,0.703579785,0.828450885,12781,,,,,0.178781003,2285,12781,,,0.163602222,2091,12781,,,0.289648697,3702,12781,,,0.01650888,211,12781,,,0.008450043,108,12781,,,0.001408341,18,12781,,,0.06454894,825,12781,,,0.600578984,7676,12781,,,0.016622118,199,11972,0.002323939,0.030920298,0.402081214,5139,12781,,,1,12518,12518,, -13,051,13051,GA,Chatham County,2024,1,9563.77176,4548,818483,9162.52947,9965.01405,0,,,,2,4091.146047,2696.091024,5952.402706,,12314.11836,11603.62508,13024.61164,,6719.130904,5429.944083,8008.317726,,8186.757239,7638.911398,8734.603079,,,,,2,,0.167,,,0.142,0.194,3.664078753,,,2.92428205,4.498290298,5.117356794,,,4.243943149,6.069855774,0.108912046,2801,25718,0.105104583,0.112719509,0,,,,0.099236641,0.078334721,0.120138561,0.152633531,0.145845767,0.159421295,0.076741041,0.067148524,0.086333559,0.074135091,0.069080069,0.079190112,,,,0.086206897,0.064427759,0.107986034,0.162,,,0.131,0.197,0.331,,,0.274,0.393,7.5,0.108062932,0.105,,,0.251,,,0.209,0.299,0.84331727,249024,295291,,,0.166622048,,,0.134747842,0.202611842,0.239766082,41,171,0.201068141,0.280012045,898.7,2663,296329,,,18.51120762,1266,68391,17.49150397,19.53091126,,,,,,,23.07761923,21.44224799,24.71299048,37.58262512,32.36086827,42.80438197,9.334065417,8.148191729,10.51993911,,,,20.26114363,14.77861719,27.11100428,0.141632409,32661,230604,0.127334537,0.155930281,0.000928023,275,296329,,,1077.56,0.000717353,216,301107,,,1394.013889,0.002025858,610,301107,,,493.6180328,3004,,,,,,2706,4558,3433,2518,0.46,,,,,,0.41,0.42,0.31,0.48,0.43,,,,,,0.48,0.28,0.3,0.47,0.914242944,185051,202409,0.906292621,0.922193267,0.693356652,58676,84626,0.662870809,0.723842494,0.030285802,4368,144226,,,0.209,12598,,0.154191489,0.263808511,0.024691358,0,0.381224439,0.048351648,0,0.13101904,0.319075105,0.281883935,0.356266275,0.225169746,0.147262756,0.303076736,0.068156533,0.051779278,0.084533787,4.652809388,130837,28120,4.392264266,4.913354511,0.395793966,24297,61388,0.366839628,0.424748305,11.13627083,330,296329,,,76.98028343,1120,1454918,72.47184061,81.48872624,,,,26.01826009,12.98822169,46.55385428,75.67694996,68.62972998,82.72416995,48.4506113,35.59968679,64.42904185,88.21648959,81.23863913,95.19434004,,,,9,,,,,0,,,,,0.174342405,19155,109870,0.161885155,0.186799655,0.152773919,0.14077715,0.164770688,0.01715664,0.012218537,0.022094742,0.011741149,0.007960275,0.015522023,0.748836073,107282,143265,0.732823426,0.76484872,,,,0.811919672,0.716119238,0.907720105,0.740031976,0.714896387,0.765167565,0.667929813,0.608863884,0.726995742,0.821529021,0.806420102,0.836637939,0.277,,143265,0.25889093,0.295109071,76.30267235,,,75.95501333,76.65033137,,,,84.78618847,81.92320464,87.64917231,73.23031647,72.66099926,73.79963368,84.09266444,80.87681482,87.30851406,77.66823928,77.19599439,78.14048417,,,,455.7703486,4548,818483,442.0570004,469.4836968,,,,223.1728537,169.4645044,288.5026654,592.3821551,566.7670014,617.9973088,277.6834897,226.8840941,328.4828852,397.896031,380.0951861,415.6968759,,,,64.98212991,182,280077,55.54120987,74.42304996,,,,,,,84.70574125,69.08758739,100.3238951,72.58474269,44.33664653,112.1012481,47.03527646,34.55975198,62.54694655,,,,7.287572971,191,26209,6.254044835,8.321101107,,,,,,,11.32862063,9.342625867,13.31461539,7.46799431,4.622806182,11.41562259,4.023203593,2.911612389,5.419228837,,,,,,,0.112,,,0.096,0.13,0.159,,,0.137,0.183,0.116,,,0.099,0.134,738.9,1865,252418,,,0.105,30880,,,,0.108062932,28650.50907,265128,,,20.68046736,181,875222,17.66761997,23.69331474,,,,,,,15.26855695,11.47020991,19.92215479,,,,29.08779707,23.9048805,34.27071364,,,,0.374,,,0.361,0.387,0.171923776,29520,171704,0.154051435,0.189796116,0.056485729,3485,61697,0.042187856,0.070783601,0.001946152,586,301107,,,513.834471,0.9,2033.1,2259,,,0.074976153,1179,15725,0.044848127,0.105104178,2.698117689,,,,,,3.053488469,2.458247858,2.727700014,3.243429883,2.624103203,,,,,,3.336706629,2.376760452,2.736801973,3.09415835,0.145364967,,,,,-9632.471,,,,,0.827089444,44839,54213,0.778137169,0.876041718,64029,,,59228.48936,68829.51064,61563,21568.2766,101557.7234,74792,59494.46809,90089.53192,48739,44782.06383,52695.93617,63024,54323.74468,71724.25532,80327,76989.6383,83664.3617,,,,,,,,,,,47.60638641,,,,,0.234378172,,64029,,,17.14317623,307,17908,,,13.93432453,283,2030956,12.31083768,15.55781137,,,,,,,29.15394513,25.44219075,32.86569952,,,,3.880243434,2.745891194,5.325937275,,,,14.89083058,229,1454918,12.91616686,16.8654943,15.73971867,,,,,,,7.847326318,5.745229139,10.46723361,11.04780202,5.708560519,19.29828681,21.68985075,18.23218162,25.14751988,,,,19.52000044,284,1454918,17.24973455,21.79026633,,,,,,,27.84501771,23.57027709,32.11975832,,,,16.09160722,13.11139986,19.07181458,,,,12.35871186,251,2030956,10.82976491,13.88765881,,,,,,,13.53136694,11.00264312,16.06009076,12.02998474,6.876175708,19.53594153,12.25340032,10.06098882,14.44581181,,,,23.24561404,,22800,,,368,162,0.610129187,133420,218675,,,0.588,,,,,119.8085823,,,,,0.568506513,66733,117383,0.556792745,0.580220281,0.17073364,19388,113557,0.159092576,0.182374705,0.904969203,106228,117383,0.893285743,0.916652664,301107,,,,,0.203714959,61340,301107,,,0.17027834,51272,301107,,,0.402371914,121157,301107,,,0.003732892,1124,301107,,,0.031905602,9607,301107,,,0.001683787,507,301107,,,0.070224206,21145,301107,,,0.471134846,141862,301107,,,0.015136353,4220,278799,0.0118925,0.018380205,0.518988267,156271,301107,,,0.030166852,8908,295291,, -13,053,13053,GA,Chattahoochee County,2024,1,9858.146213,81,29809,7540.700726,12663.20122,0,,,,2,,,,2,12895.62538,6866.377401,22051.91214,1,,,,2,10889.42116,7779.562128,14828.30092,,,,,2,,0.204,,,0.178,0.231,4.246250539,,,3.43216805,5.160525941,5.16989747,,,4.152080471,6.314281923,0.06479313,83,1281,0.051312822,0.078273439,0,,,,,,,0.068181818,0.03094268,0.105420956,0.059360731,0.028064273,0.090657188,0.066838046,0.049288873,0.084387219,,,,,,,0.19,,,0.156,0.227,0.376,,,0.296,0.46,3.6,0.393412884,0.149,,,0.287,,,0.239,0.339,0.545007841,5213,9565,,,0.211728489,,,0.169316843,0.260768915,0.272727273,3,11,0.11266692,0.445445377,1293.1,117,9048,,,41.62812211,45,1081,30.36383792,55.70170259,,,,,,,,,,,,,45.28301887,29.01368463,67.37754263,,,,,,,0.11811525,742,6282,0.094285463,0.141945037,0.001657825,15,9048,,,603.2,0.008164191,72,8819,,,122.4861111,0.000113392,1,8819,,,8819,907,,,,,,,,,,0.45,,,,,,,0.31,,0.47,0.26,,,,,,,0.25,,0.25,0.959532374,4268,4448,0.929208221,0.989856528,0.772557561,2483,3214,0.673794129,0.871320993,0.045573599,87,1909,,,0.159,314,,0.098234043,0.219765957,,,,0.418181818,0,0.981974656,,,,0.235682819,0.108092288,0.363273351,0.184,0.079168309,0.288831691,4.503708523,103833,23055,2.445692394,6.561724652,0.228944821,473,2066,0.135356747,0.322532895,0,0,9048,,,58.21512429,30,51533,39.2774999,83.10570973,,,,,,,,,,,,,68.31534363,41.72878667,105.5075075,,,,9.8,,,,,0,,,,,0.17254902,440,2550,0.118508938,0.226589101,0.145638945,0.088602825,0.202675065,0.027058824,0,0.059404722,0.003921569,0,0.01585284,0.553942997,3168,5719,0.482027012,0.625858982,,,,,,,0.870633894,0.764665734,0.976602054,0.765770424,0.635282591,0.896258257,0.696232968,0.65677759,0.735688346,0.104,,5719,0.059898795,0.148101205,77.04103734,,,73.2914455,80.79062918,,,,,,,76.83521205,67.51869962,86.15172447,,,,74.0295568,70.16026022,77.89885338,,,,557.0212067,81,29809,435.0381838,702.606459,,,,,,,591.4653664,370.6681962,895.4856727,,,,658.2170576,481.8976127,877.9693145,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.133,,,0.116,0.151,0.168,,,0.146,0.194,0.141,,,0.122,0.162,148.8,11,7391,,,0.149,1420,,,,0.393412884,4432.582966,11267,,,,,,,,,,,,,,,,,,,,,,,,,,0.386,,,0.372,0.4,0.149218932,640,4289,0.11585723,0.182580634,0.052139695,106,2033,0.030692887,0.073586504,0.000113392,1,8819,,,8819,0.925,86.025,93,,,,,,,,3.063807389,,,,,,,,,3.088198978,2.992882642,,,,,,,,,3.196156904,0.022739514,,,,,-15687.54,,,,,1.120141222,32679,29174,0.524823912,1.715458532,57507,,,49462.06383,65551.93617,,,,67063,36265.38298,97860.61702,57396,29661.70213,85130.29787,54432,46151.14894,62712.85106,46865,36546.70213,57183.29787,,,,,,,,,,,19.55782204,,,,,0.204218617,,57507,,,16.4556962,13,790,,,,,,,,,,,,,,,,,,,,,,,,,,22.30551189,11,51533,8.185729741,48.54970884,21.34554557,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,700,,,,,0.194229589,1582,8145,,,0.444,,,,,7.535372795,,,,,0.312161497,634,2031,0.264280849,0.360042145,0.103852596,186,1791,0.040853829,0.166851364,0.817331364,1660,2031,0.745423775,0.889238953,8819,,,,,0.22735004,2005,8819,,,0.05442794,480,8819,,,0.172241751,1519,8819,,,0.014514117,128,8819,,,0.036852251,325,8819,,,0.012699853,112,8819,,,0.183807688,1621,8819,,,0.559587255,4935,8819,,,0.007072464,61,8625,0,0.018816301,0.360131534,3176,8819,,,0.400836383,3834,9565,, -13,055,13055,GA,Chattooga County,2024,1,13404.7825,582,69022,11745.68821,15063.87679,0,,,,2,,,,2,11320.35372,6027.611584,19358.14962,1,,,,2,14370.98733,12462.81897,16279.15569,,,,,2,,0.237,,,0.205,0.274,4.889997776,,,3.94447873,5.944886898,5.752054118,,,4.62585399,6.976360139,0.09164149,182,1986,0.078952088,0.104330893,0,,,,,,,0.144144144,0.078801998,0.209486291,,,,0.088807786,0.075056741,0.10255883,,,,,,,0.246,,,0.204,0.293,0.376,,,0.299,0.457,5.4,0.210529504,0.155,,,0.323,,,0.271,0.377,0.670739035,16745,24965,,,0.151931388,,,0.120250116,0.187890523,0.272727273,9,33,0.181168814,0.368649754,204.6,51,24932,,,50.71442946,252,4969,44.45280028,56.97605865,,,,,,,,,,43.47826087,23.7699698,72.94913392,53.15293549,46.12913794,60.17673304,,,,78.2122905,42.75938702,131.2269336,0.18179443,3479,19137,0.160347621,0.203241238,8.02182E-05,2,24932,,,12466,0.000360924,9,24936,,,2770.666667,0.000401027,10,24936,,,2493.6,3326,,,,,,,4550,,3277,0.41,,,,,,,0.36,,0.41,0.39,,,,,,,0.38,,0.39,0.731928931,12647,17279,0.697326017,0.766531845,0.391747725,2497,6374,0.331153193,0.452342257,0.041991342,388,9240,,,0.243,1305,,0.163170213,0.322829787,,,,,,,0.239543726,0,0.531815555,0.649484536,0.577191635,0.721777437,0.259027443,0.191583099,0.326471788,4.140606436,80158,19359,3.471327312,4.80988556,0.36863948,2043,5542,0.27094927,0.46632969,10.42836515,26,24932,,,104.7339757,130,124124,86.72985214,122.7380993,,,,,,,,,,,,,116.3882477,95.4764331,137.3000624,,,,9.3,,,,,0,,,,,0.146622735,1335,9105,0.113241693,0.180003777,0.091973244,0.062705997,0.121240491,0.05601318,0.037611593,0.074414766,0.003294893,0,0.008389273,0.858655254,7624,8879,0.807693534,0.909616974,,,,,,,,,,,,,0.868411353,0.817223928,0.919598777,0.377,,8879,0.315191669,0.438808331,71.79338998,,,70.64120665,72.94557331,,,,,,,73.40918035,68.62998613,78.18837457,,,,71.04292969,69.78068233,72.30517705,,,,640.8622658,582,69022,586.3706185,695.353913,,,,,,,573.4557853,413.2964896,775.1456298,,,,677.5929085,616.0379728,739.1478443,,,,78.00632262,19,24357,46.96490194,121.8165356,,,,,,,,,,,,,83.96746261,47.99465995,136.3578987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.157,,,0.135,0.179,0.2,,,0.172,0.227,0.129,,,0.11,0.148,271,57,21033,,,0.155,3870,,,,0.210529504,5476.925041,26015,,,28.16372512,21,74564,17.43378974,43.05124555,,,,,,,,,,,,,30.98499674,18.65499211,48.38691059,,,,0.379,,,0.363,0.394,0.22630814,3114,13760,0.197712395,0.254903884,0.070063694,396,5652,0.048616886,0.091510503,0.000521335,13,24936,,,1918.153846,0.876298701,202.425,231,,,,,,,,3.044904381,,,,,,,,2.86554575,3.098456986,2.950082019,,,,,,,,2.719848593,3.030678811,0.069286308,,,,,-3489.7735,,,,,0.77800882,34048,43763,0.663439988,0.892577652,50714,,,47514.85106,53913.14894,,,,,,,29300,17764,40836,35179,28692.53192,41665.46809,45561,40951.12766,50170.87234,,,,,,,,,,,43.46120077,,,,,0.231573136,,50714,,,5.405405405,8,1480,,,6.326565825,11,173870,3.158198865,11.31997384,,,,,,,,,,,,,,,,,,,21.32681642,28,124124,13.93138455,31.24872739,22.55808707,,,,,,,,,,,,,25.98177602,16.81403552,38.35422677,,,,20.94679514,26,124124,13.68314203,30.69190816,,,,,,,,,,,,,24.45131255,15.82360026,36.09496078,,,,25.3062633,44,173870,18.38756965,33.9724773,,,,,,,,,,,,,27.89789371,19.93066428,37.98901309,,,,12.72727273,,2200,,,17,11,0.540177372,10050,18605,,,0.517,,,,,22.72582333,,,,,0.676495911,6286,9292,0.641562098,0.711429723,0.093180809,839,9004,0.066659246,0.119702372,0.776904864,7219,9292,0.74081848,0.812991249,24936,,,,,0.21928136,5468,24936,,,0.188963747,4712,24936,,,0.094481874,2356,24936,,,0.006095605,152,24936,,,0.005895091,147,24936,,,0.003569137,89,24936,,,0.059512352,1484,24936,,,0.818334937,20406,24936,,,0.018898581,442,23388,0.009493963,0.028303198,0.486204684,12124,24936,,,0.590346485,14738,24965,, -13,057,13057,GA,Cherokee County,2024,1,5498.238723,2646,755125,5176.575171,5819.902276,0,,,,2,2981.165549,1488.187101,5334.12865,1,6640.6176,5366.099776,7915.135424,,4888.918796,3973.119356,5804.718236,,5508.130197,5143.311339,5872.949055,,,,,2,,0.13,,,0.108,0.156,3.325246211,,,2.617106762,4.104671514,4.628814402,,,3.802231781,5.510143954,0.070412709,1312,18633,0.066739164,0.074086253,0,,,,0.092165899,0.064951447,0.11938035,0.126139818,0.108201769,0.144077866,0.072336562,0.063503522,0.081169602,0.063661886,0.059493471,0.067830301,,,,0.08203125,0.04841574,0.11564676,0.132,,,0.103,0.167,0.308,,,0.255,0.362,8.5,0.070521352,0.077,,,0.19,,,0.155,0.228,0.827844873,220720,266620,,,0.171999525,,,0.14173698,0.205926965,0.177083333,17,96,0.127354517,0.232176767,268.7,738,274615,,,8.9367703,545,60984,8.186464307,9.687076294,,,,,,,7.197121152,5.040775173,9.963849358,24.73293079,21.41137271,28.05448888,6.271082837,5.532568851,7.009596823,,,,6.568144499,3.393856108,11.47322663,0.126197334,29314,232287,0.11428244,0.138112227,0.000411485,113,274615,,,2430.221239,0.000508394,143,281278,,,1966.979021,0.001166106,328,281278,,,857.5548781,2652,,,,,,,2217,2745,2657,0.41,,,,,,0.31,0.32,0.4,0.42,0.47,,,,,,0.46,0.39,0.28,0.48,0.921744253,168976,183322,0.911737405,0.931751101,0.723217269,49787,68841,0.68724634,0.759188198,0.023540945,3362,142815,,,0.066,4125,,0.038595745,0.093404255,0.294314381,0,0.596662611,0.080679406,0,0.182571694,0.125148751,0.057337148,0.192960353,0.290394563,0.22307006,0.357719067,0.036204686,0.0227662,0.049643172,3.903719531,179048,45866,3.634759981,4.172679081,0.189694584,11950,62996,0.163387308,0.21600186,6.955191814,191,274615,,,58.2904742,758,1300384,54.14075169,62.44019671,,,,,,,41.81338028,29.58963649,57.39213129,23.20773028,15.97513367,32.59228186,67.33142462,62.27804776,72.38480149,,,,10.4,,,,,0,,,,,0.122275091,11050,90370,0.10810447,0.136445713,0.107723125,0.094257117,0.121189133,0.011895541,0.008085446,0.015705635,0.007081996,0.003213752,0.01095024,0.714975811,99461,139111,0.698022136,0.731929485,,,,0.528324389,0.414605076,0.642043702,0.694270016,0.63662606,0.751913971,0.503638453,0.444421542,0.562855364,0.631609995,0.607351358,0.655868631,0.562,,139111,0.53446654,0.58953346,79.60061926,,,79.27898534,79.92225319,,,,88.10374281,82.81829121,93.38919441,78.79462096,77.16735449,80.42188742,83.92683193,81.74859753,86.10506632,79.39926411,79.05168096,79.74684726,,,,276.4057748,2646,755125,265.591234,287.2203156,,,,132.9068831,84.25156297,199.4255812,315.0719514,267.6298415,362.5140613,202.4743351,166.7786334,238.1700369,283.6245648,271.4792445,295.7698851,,,,33.80687188,93,275092,27.28650878,41.41570203,,,,,,,60.4763677,32.20111877,103.4164306,52.36317275,33.19375976,78.57046921,26.91608909,20.10222275,35.29686984,,,,4.175478553,77,18441,3.295222377,5.218631772,,,,,,,,,,,,,3.103004617,2.226769687,4.209576142,,,,,,,0.099,,,0.084,0.117,0.144,,,0.124,0.166,0.086,,,0.073,0.101,195.1,452,231656,,,0.077,20280,,,,0.070521352,15115.96962,214346,,,17.90494602,143,798662,14.97026388,20.83962816,,,,,,,,,,,,,21.69158771,18.01880688,25.36436855,,,,0.299,,,0.283,0.313,0.149883627,25244,168424,0.134394265,0.165372989,0.067247636,4522,67244,0.050566784,0.083928487,0.000732372,206,281278,,,1365.427185,0.91,2922.92,3212,,,0.08552056,1173,13716,0.054506317,0.116534803,3.198650654,,,,,,3.72160349,2.755931054,2.565801071,3.408565528,3.302949156,,,,,,4.031534044,2.792597761,2.863904354,3.471535545,0.053602642,,,,,562.9248,,,,,0.776201084,56450,72726,0.732270589,0.820131578,99932,,,94801.44681,105062.5532,55750,24049.23404,87450.76596,96831,78040.02128,115621.9787,91531,78516.3617,104545.6383,66243,59257.29787,73228.70213,106121,101905.5106,110336.4894,,,,,,,,,,,47.67435379,,,,,0.208932074,,99932,,,9.197717355,137,14895,,,2.41848442,43,1777973,1.750269167,3.257682643,,,,,,,,,,,,,2.080127964,1.393094344,2.987410738,,,,14.72502324,198,1300384,12.63351145,16.81653503,15.22627162,,,,,,,,,,6.879220567,3.298853655,12.65113155,16.54829758,14.03089417,19.06570098,,,,11.38125354,148,1300384,9.547608313,13.21489876,,,,,,,12.10387324,6.042209911,21.65717266,,,,12.93316221,10.71840998,15.14791444,,,,8.380329735,149,1777973,7.034704745,9.725954725,,,,,,,8.286377196,3.973639954,15.23894269,6.831498463,3.637485216,11.68207043,8.894340259,7.328819004,10.45986151,,,,12.35955056,,26700,,,152,178,0.806874843,144830,179495,,,0.653,,,,,51.20284095,,,,,0.774537996,75148,97023,0.75930096,0.789775032,0.111077377,10610,95519,0.098319807,0.123834948,0.945548994,91740,97023,0.935224785,0.955873203,281278,,,,,0.224599862,63175,281278,,,0.161395488,45397,281278,,,0.076017321,21382,281278,,,0.005841196,1643,281278,,,0.025558344,7189,281278,,,0.001215879,342,281278,,,0.115014328,32351,281278,,,0.762103684,214363,281278,,,0.026822521,6806,253742,0.021606334,0.032038707,0.503857394,141724,281278,,,0.182979521,48786,266620,, -13,059,13059,GA,Clarke County,2024,1,7588.451441,1308,367371,7034.713626,8142.189255,0,,,,2,,,,2,11634.549,10400.49055,12868.60746,,4259.757112,3118.677584,5681.919038,,6645.029165,5903.497731,7386.560599,,,,,2,,0.185,,,0.159,0.211,4.062652504,,,3.3253495,4.889513091,5.649931143,,,4.720717922,6.653473131,0.099479222,936,9409,0.093431422,0.105527022,0,,,,0.103773585,0.070254296,0.137292873,0.155952015,0.143480286,0.168423743,0.072335025,0.059545693,0.085124357,0.0635,0.055942697,0.071057303,,,,0.100478469,0.05971931,0.141237628,0.163,,,0.133,0.197,0.357,,,0.292,0.421,5.7,0.218288718,0.135,,,0.241,,,0.199,0.282,0.746601798,96066,128671,,,0.18651736,,,0.149721446,0.224518883,0.261538462,17,65,0.197408603,0.328537813,950.2,1223,128711,,,9.457370648,465,49168,8.597763526,10.31697777,,,,,,,24.07673861,21.09810649,27.05537073,24.01574803,19.75415205,28.27734402,2.453235204,1.919505458,3.08944373,,,,12.33616037,7.051181537,20.03315158,0.160590823,16352,101824,0.141526994,0.179654653,0.000815781,105,128711,,,1225.819048,0.000515881,67,129875,,,1938.432836,0.003372474,438,129875,,,296.5182648,2636,,,,,,,4695,,2143,0.48,,,,,,0.51,0.38,0.31,0.5,0.53,,,,,,0.57,0.37,0.34,0.56,0.898669215,65841,73265,,,0.762036509,26717,35060,,,0.033062134,1914,57891,,,0.249,5268,,0.171553192,0.326446809,,,,0.253521127,0.024666906,0.482375348,0.369874785,0.291263245,0.448486326,0.277406849,0.202874673,0.351939025,0.091540315,0.047958435,0.135122195,5.71142812,108500,18997,5.249149042,6.173707198,0.352472603,7655,21718,0.293370912,0.411574295,10.79938778,139,128711,,,53.03247183,339,639231,47.38702798,58.67791568,,,,,,,75.21816094,62.43456716,88.00175472,24.23585766,14.11828021,38.80395589,52.14695238,44.61207669,59.68182807,,,,9.9,,,,,1,,,,,0.238739187,12005,50285,0.217699564,0.259778809,0.226766948,0.20448208,0.249051817,0.018395148,0.011897729,0.024892566,0.009147857,0.005651109,0.012644606,0.717996915,44691,62244,0.691315875,0.744677956,,,,0.669618529,0.592768787,0.746468271,0.771767645,0.721188055,0.822347236,0.637418122,0.573253986,0.701582258,0.780995995,0.755892814,0.806099177,0.202,,62244,0.178957692,0.225042308,78.16476467,,,77.60194222,78.72758712,,,,93.68860922,82.11227162,105.2649468,73.65082332,72.60275427,74.69889237,85.61549565,81.75444687,89.47654442,79.25663735,78.52605964,79.98721506,,,,380.2633882,1308,367371,359.0961581,401.4306182,,,,,,,564.3740485,518.1719715,610.5761254,173.0872902,125.2641301,233.1474439,337.3635422,309.9745487,364.7525357,,,,36.90066501,46,124659,27.01592457,49.22031599,,,,,,,63.62456417,41.17446326,93.9224078,,,,27.58214883,15.43751932,45.49255994,,,,5.780346821,55,9515,4.354548289,7.52391592,,,,,,,9.549388242,6.531774489,13.48088692,,,,,,,,,,,,,0.125,,,0.108,0.141,0.171,,,0.148,0.194,0.131,,,0.113,0.149,419.4,474,113012,,,0.135,17330,,,,0.218288718,25477.34947,116714,,,16.63041755,64,384837,12.80744797,21.23667194,,,,,,,19.77196336,12.23915695,30.22354628,,,,19.7438935,14.22966178,26.6880083,,,,0.353,,,0.34,0.367,0.185976776,15071,81037,0.162146989,0.209806563,0.064790277,1418,21886,0.046917937,0.082662617,0.001901829,247,129875,,,525.8097166,0.336956522,744,2208,,,0.033244237,398,11972,0.012311559,0.054176914,2.545295877,,,,,,,1.942485052,2.688139151,3.701083939,2.744121981,,,,,,,2.231728532,2.9306878,3.608124288,0.080157726,,,,,-8815.752,,,,,0.940999268,43732,46474,0.864355629,1.017642908,49832,,,43523.06383,56140.93617,88304,61057.02128,115550.9787,45443,34824.44681,56061.55319,38587,35412.87234,41761.12766,55088,40296.85106,69879.14894,54101,50456.23404,57745.76596,,,,,,,,,,,32.98883998,,,,,0.30115187,,49832,,,11.74996083,75,6383,,,5.406318635,48,887850,3.98619258,7.167994164,,,,,,,17.16948737,12.37425629,23.2081591,,,,,,,,,,13.59767902,79,639231,10.63934638,17.12402632,12.35859963,,,,,,,7.737119931,4.119690506,13.23071072,,,,19.0162062,14.15881456,25.00279926,,,,13.76654136,88,639231,11.04116873,16.96076399,,,,,,,23.18755337,16.63978864,31.4565344,,,,11.336294,8.098814632,15.43681489,,,,10.13684744,90,887850,8.151222406,12.45990649,,,,,,,17.98708201,13.06944132,24.14681804,,,,6.919964505,4.792276584,9.66995679,,,,32.71604938,,8100,,,182,83,0.526168512,51333,97560,,,0.597,,,,,82.13976502,,,,,0.412104395,21980,53336,0.396109757,0.428099032,0.242644917,12495,51495,0.220101192,0.265188642,0.898342583,47914,53336,0.883862622,0.912822544,129875,,,,,0.164881617,21414,129875,,,0.12480462,16209,129875,,,0.269151107,34956,129875,,,0.004612127,599,129875,,,0.040338787,5239,129875,,,0.001532243,199,129875,,,0.113586141,14752,129875,,,0.555580366,72156,129875,,,0.022910974,2809,122605,,,0.523264678,67959,129875,,,0.059244119,7623,128671,, -13,061,13061,GA,Clay County,2024,1,14989.21523,89,7608,10113.16057,21398.03677,0,,,,2,,,,2,15930.7416,10098.72362,23903.93432,1,,,,2,17142.58175,6892.206955,35320.27021,1,,,,2,,0.252,,,0.217,0.291,4.691969165,,,3.736602438,5.726707941,5.671868553,,,4.507568108,6.924439004,0.118644068,21,177,0.071004467,0.166283669,1,,,,,,,0.14516129,0.083158287,0.207164294,,,,,,,,,,,,,0.222,,,0.182,0.267,0.436,,,0.351,0.525,7,0.011143389,0.174,,,0.34,,,0.287,0.399,0.258426966,736,2848,,,0.110103973,,,0.086440993,0.13820681,0.2,1,5,0.015594715,0.47750127,867.5,25,2882,,,21.35231317,12,562,11.0330518,37.29819404,,,,,,,27.5862069,14.25419565,48.18755184,,,,,,,,,,,,,0.185071575,362,1956,0.158858809,0.211284341,0.000346981,1,2882,,,2882,0,0,2845,,,-2845,,0,2845,,,,3316,,,,,,,5101,,2622,0.39,,,,,,,0.3,,0.43,0.36,,,,,,,0.27,,0.39,0.83221129,1607,1931,0.756419331,0.908003248,0.590834697,361,611,0.393899226,0.787770169,0.067388688,56,831,,,0.386,219,,0.233489362,0.538510638,,,,,,,0.438669439,0.221860028,0.65547885,,,,0.062111801,0,0.242763317,5.06516322,81306,16052,3.273893017,6.856433422,0.644817073,423,656,0.392949008,0.896685138,10.40943789,3,2882,,,138.5905343,20,14431,84.65469881,214.0418398,,,,,,,,,,,,,248.7086283,132.4268699,425.2993288,,,,9,,,,,0,,,,,0.136882129,180,1315,0.070341204,0.203423055,0.122779923,0.048919687,0.196640159,0.010646388,0,0.033810891,0.00608365,0,0.021133571,0.732970027,807,1101,0.584025776,0.881914279,,,,,,,,,,,,,,,,0.244,,1101,0.140765852,0.347234148,71.3316222,,,67.68493285,74.97831155,,,,,,,70.43236732,65.92994849,74.93478614,,,,,,,,,,716.3432897,89,7608,555.1562103,909.7306561,,,,,,,785.4578872,568.4397676,1058.006619,,,,707.8437936,426.1682032,1105.385766,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.15,,,0.13,0.174,0.191,,,0.165,0.22,0.162,,,0.14,0.185,444.5,11,2474,,,0.174,500,,,,0.011143389,35.4694066,3183,,,,,,,,,,,,,,,,,,,,,,,,,,0.425,,,0.409,0.44,0.225142046,317,1408,0.190588854,0.259695237,0.080895009,47,581,0.055873732,0.105916285,0.001405975,4,2845,,,711.25,,,,,,,,,,,2.264794604,,,,,,,2.158552301,,,2.038842778,,,,,,,2.061868746,,,,,,,,-38149.95,,,,,0.66098444,30671,46402,0.493225935,0.828742946,37961,,,32278.78723,43643.21277,,,,,,,30236,15746.29787,44725.70213,,,,52216,26326.12766,78105.87234,,,,,,,,,,,,,,,,0.309370143,,37961,,,103.8961039,8,77,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,200,,,-888,0,0.614132762,1434,2335,,,0.325,,,,,18.95371744,,,,,0.683289589,781,1143,0.598474364,0.768104814,0.132338309,133,1005,0.041129565,0.223547052,0.797900263,912,1143,0.695163958,0.900636567,2845,,,,,0.201405975,573,2845,,,0.300175747,854,2845,,,0.582776801,1658,2845,,,0.003514939,10,2845,,,0.016520211,47,2845,,,0.000702988,2,2845,,,0.021441125,61,2845,,,0.36344464,1034,2845,,,0.00410601,11,2679,0,0.029658359,0.525834798,1496,2845,,,1,2848,2848,, -13,063,13063,GA,Clayton County,2024,1,10537.61449,4382,854052,10115.1542,10960.07478,0,,,,2,5366.280512,4029.93135,6702.629673,,10802.05033,10288.15129,11315.94938,,6847.810268,5932.695194,7762.925342,,17571.29422,15543.69817,19598.89027,,,,,2,,0.231,,,0.2,0.266,4.292349393,,,3.536252673,5.087765849,5.412411092,,,4.573410632,6.249196414,0.132098284,3387,25640,0.1279537,0.136242868,0,,,,0.103567319,0.083308394,0.123826244,0.150328649,0.145055687,0.155601612,0.084226003,0.076336962,0.092115044,0.092686003,0.078413821,0.106958184,,,,0.120622568,0.092466212,0.148778925,0.187,,,0.152,0.225,0.437,,,0.386,0.489,7.2,0.160225391,0.094,,,0.331,,,0.286,0.379,0.742966112,221103,297595,,,0.142985908,,,0.117327942,0.172942347,0.189300412,46,243,0.157811527,0.222671827,813.2,2416,297100,,,23.00814093,1724,74930,21.92204304,24.09423882,,,,6.528189911,4.091181861,9.883757978,21.36955077,20.12080162,22.61829991,31.07575645,28.09662518,34.05488772,31.21212121,25.18429471,37.23994772,,,,21.8384967,15.80462835,29.41631174,0.16699305,41955,251238,0.150312199,0.183673902,0.00025244,75,297100,,,3961.333333,0.000232665,69,296564,,,4298.028986,0.000789037,234,296564,,,1267.367521,2976,,,,,,633,3883,1774,2381,0.38,,,,,,0.28,0.38,0.22,0.4,0.4,,,,,,0.46,0.29,0.28,0.48,0.854714856,158612,185573,0.84504481,0.864384903,0.541069378,45709,84479,0.508483514,0.573655243,0.039218342,5501,140266,,,0.197,15353,,0.127893617,0.266106383,0.142857143,0,0.750039695,0.065381139,0,0.134608748,0.253234351,0.221620633,0.284848069,0.215914171,0.170970869,0.260857473,0.377444415,0.26291367,0.49197516,3.95460263,103749,26235,3.682665391,4.226539869,0.433532271,35231,81265,0.397047922,0.47001662,4.577583305,136,297100,,,72.07726683,1050,1456770,67.71753545,76.43699821,,,,33.08200201,21.19626291,49.22339669,71.17264003,66.00603357,76.33924649,44.63484083,35.75067775,55.05691126,155.9384043,134.7461338,177.1306749,,,,8.7,,,,,0,,,,,0.203563129,19710,96825,0.185782343,0.221343916,0.171361009,0.155163236,0.187558782,0.033410793,0.026172301,0.040649284,0.008727085,0.0054316,0.01202257,0.737989938,99453,134762,0.724321358,0.751658518,,,,0.700881286,0.659391537,0.742371034,0.734302628,0.709348974,0.759256282,0.684280825,0.626346786,0.742214863,0.834770115,0.813181574,0.856358655,0.526,,134762,0.49846654,0.55353346,74.39925058,,,74.03656304,74.76193812,,,,83.23069688,80.9881924,85.47320136,74.13498408,73.67903396,74.59093421,82.55366966,79.85724701,85.25009231,68.79169789,67.59970978,69.983686,,,,496.5832213,4382,854052,481.7116933,511.4547494,,,,270.9297881,224.6883334,317.1712427,492.1037114,474.3216305,509.8857923,320.6702589,279.0570119,362.283506,824.0644661,762.3279151,885.8010171,,,,80.27535856,285,355028,70.95535893,89.5953582,,,,,,,94.4050634,82.20428774,106.6058391,49.17060755,34.05207512,68.71099555,72.20651062,37.3101577,126.1302428,,,,9.432515337,246,26080,8.253780721,10.61124995,,,,,,,10.84525939,9.319116669,12.37140211,5.648535565,3.72242053,8.218322687,,,,,,,,,,0.133,,,0.115,0.152,0.17,,,0.147,0.193,0.16,,,0.141,0.181,1049,2519,240127,,,0.094,27530,,,,0.160225391,41566.31183,259424,,,14.17230346,125,882002,11.68778912,16.65681781,,,,,,,12.97478087,10.30384886,16.12646794,,,,49.4836769,35.01759489,67.92021268,,,,0.436,,,0.42,0.449,0.217878557,38300,175786,0.195240259,0.240516855,0.050658243,4025,79454,0.035168881,0.066147604,0.000411378,122,296564,,,2430.852459,0.736569718,3444.2,4676,,,0.090516507,1593,17599,0.064068271,0.116964742,2.506928267,,,,,,3.148573922,2.454776828,2.543764637,2.420248564,2.548906464,,,,,,3.455744953,2.453794702,2.69660529,2.500898045,0.070683242,,,,,-18151.28,,,,,0.876168535,39552,45142,0.823760986,0.928576084,57625,,,53682.3617,61567.6383,61172,32060.34043,90283.65957,68860,55192.42553,82527.57447,54306,52301.91489,56310.08511,59836,53226.80851,66445.19149,61319,53110.82979,69527.17021,,,,,,,,,,,33.85292156,,,,,0.36232538,,57625,,,12.40223981,268,21609,,,16.06815684,323,2010187,14.31580676,17.82050692,,,,,,,20.22514951,17.86871923,22.58157979,9.358143644,6.056097148,13.81446608,,,,,,,10.90663365,158,1456770,9.164631602,12.64863569,10.84591253,,,,,,,8.86230232,7.117156482,10.9058256,5.330964522,2.556404701,9.80383356,29.73249954,20.82427714,41.16231201,,,,22.30963021,325,1456770,19.88409958,24.73516084,,,,,,,25.38393197,22.29841249,28.46945145,11.80001539,7.480197541,17.70581684,25.48993148,17.65251854,35.61962432,,,,16.96359592,341,2010187,15.16308069,18.76411116,,,,,,,17.65233897,15.45088376,19.85379418,13.47572685,9.438233414,18.65608616,26.57574086,19.90705357,34.76172338,,,,12.96875,,32000,,,162,253,0.592656679,112344,189560,,,0.588,,,,,108.8393111,,,,,0.529154742,55466,104820,0.513981444,0.544328039,0.19012285,19345,101750,0.172547982,0.207697719,0.865187941,90689,104820,0.849973064,0.880402819,296564,,,,,0.267180103,79236,296564,,,0.108738755,32248,296564,,,0.711971109,211145,296564,,,0.005732321,1700,296564,,,0.051708906,15335,296564,,,0.001584818,470,296564,,,0.135684035,40239,296564,,,0.080016455,23730,296564,,,0.043725897,12030,275123,0.039338149,0.048113645,0.531757058,157700,296564,,,0.005248744,1562,297595,, -13,065,13065,GA,Clinch County,2024,1,14012.93758,196,18644,11059.49263,16966.38253,0,,,,2,,,,2,18855.87933,12721.9826,26917.9402,,,,,2,11999.69683,8780.220182,15219.17348,,,,,2,,0.282,,,0.246,0.32,5.398191116,,,4.411460767,6.470221359,6.17283471,,,4.972711973,7.511181471,0.12191358,79,648,0.096721546,0.147105615,0,,,,,,,0.156950673,0.109207451,0.204693895,,,,0.112328767,0.079933527,0.144724008,,,,,,,0.274,,,0.227,0.324,0.421,,,0.338,0.509,7,0.051487875,0.156,,,0.37,,,0.314,0.427,0.001037191,7,6749,,,0.132747445,,,0.104152299,0.166250428,0.384615385,5,13,0.234541684,0.524881883,743.5,50,6725,,,42.95302013,64,1490,33.07905943,54.85004779,,,,,,,43.80952381,27.77148007,65.73579599,,,,34.56221198,23.31897929,49.33970668,,,,,,,0.188834154,1035,5481,0.165004367,0.212663942,0.000148699,1,6725,,,6725,0.000150105,1,6662,,,6662,0.000150105,1,6662,,,6662,4747,,,,,,,,,4946,0.26,,,,,,,0.28,,0.26,0.36,,,,,,,0.42,,0.35,0.739747284,3337,4511,0.643455053,0.836039516,0.461065574,900,1952,0.294681895,0.627449253,0.027713626,84,3031,,,0.273,453,,0.162191489,0.383808511,,,,,,,0.564213564,0.350369709,0.77805742,,,,0.388402626,0.219308345,0.557496906,8.021136403,93735,11686,1.385054898,14.65721791,0.301426873,507,1682,0.147148408,0.455705338,17.84386617,12,6725,,,90.09009009,30,33300,60.78340547,128.6092054,,,,,,,,,,,,,83.48794063,49.48024481,131.94694,,,,8.3,,,,,0,,,,,0.144654088,345,2385,0.08096601,0.208342166,0.110096154,0.046924718,0.173267589,0.044025157,0.005747683,0.082302631,0.018448637,0,0.047611813,0.782245223,1965,2512,0.552836871,1,,,,,,,,,,,,,0.928317536,0.828427098,1,0.348,,2512,0.234226803,0.461773197,69.82977076,,,67.91416828,71.74537323,,,,,,,65.97704264,62.15663192,69.79745336,,,,71.19565246,69.01713188,73.37417304,,,,790.3313969,196,18644,675.9330276,904.7297662,,,,,,,1041.9524,784.9411432,1356.244269,,,,731.0338507,602.2809556,859.7867458,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.177,,,0.154,0.201,0.214,,,0.186,0.243,0.162,,,0.141,0.185,451.8,25,5533,,,0.156,1050,,,,0.051487875,350.0145722,6798,,,,,,,,,,,,,,,,,,,,,,,,,,0.395,,,0.381,0.408,0.233627859,899,3848,0.201457646,0.265798071,0.084883721,146,1720,0.058670955,0.111096487,0.000750525,5,6662,,,1332.4,0.875,77,88,,,,,,,,2.826291023,,,,,,,2.586191189,,2.99049506,2.676706057,,,,,,,2.389014452,,2.895252694,0.005162105,,,,,-7471.887,,,,,0.978673389,34555,35308,0.754167181,1.203179596,45595,,,38699.85106,52490.14894,,,,,,,,,,,,,61927,41590.65957,82263.34043,,,,,,,,,,,3.706922197,,,,,0.257572102,,45595,,,6.741573034,3,445,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,29.77329761,14,47022,16.27733886,49.95453431,,,,,,,,,,,,,32.79979008,15.72877426,60.31998177,,,,,,600,,,,,0.586284545,2864,4885,,,0.425,,,,,18.9079463,,,,,0.727463312,1735,2385,0.649558989,0.805367636,0.091954023,184,2001,0.034738113,0.149169933,0.661215933,1577,2385,0.582597412,0.739834453,6662,,,,,0.251125788,1673,6662,,,0.166016211,1106,6662,,,0.267187031,1780,6662,,,0.01035725,69,6662,,,0.004653257,31,6662,,,0.001200841,8,6662,,,0.057640348,384,6662,,,0.642149505,4278,6662,,,0.042031524,264,6281,,,0.515911138,3437,6662,,,1,6749,6749,, -13,067,13067,GA,Cobb County,2024,1,6003.77632,7541,2179875,5807.815443,6199.737198,0,,,,2,2775.647043,2212.687908,3338.606178,,7561.836046,7144.251682,7979.42041,,5107.836568,4627.208163,5588.464973,,5819.433878,5542.224356,6096.643401,,,,,2,,0.129,,,0.11,0.151,3.042448589,,,2.456785267,3.678271355,4.529694549,,,3.834659017,5.232130388,0.088068675,5581,63371,0.085862182,0.090275168,0,,,,0.099227125,0.089974764,0.108479487,0.129752111,0.124922486,0.134581735,0.074031064,0.069659185,0.078402944,0.062942036,0.059949963,0.06593411,,,,0.097809077,0.081522513,0.11409564,0.119,,,0.094,0.147,0.298,,,0.255,0.345,8.5,0.080151024,0.071,,,0.205,,,0.175,0.241,0.910027945,697217,766149,,,0.161313276,,,0.133846308,0.19241728,0.199386503,65,326,0.172054411,0.227992442,556.3,4266,766802,,,11.2572372,1991,176864,10.76275318,11.75172122,,,,,,,12.58352529,11.62421817,13.54283241,27.58274825,25.76031231,29.40518418,4.913369537,4.419350481,5.407388594,,,,8.494572912,6.381384611,11.08357502,0.132772129,86716,653119,0.123240214,0.142304044,0.000779862,598,766802,,,1282.277592,0.000721548,557,771952,,,1385.910233,0.002375795,1834,771952,,,420.9116685,2753,,,,,,1602,4126,2649,2537,0.42,,,,,,0.35,0.4,0.24,0.43,0.49,,,,,,0.5,0.36,0.34,0.51,0.930318422,483533,519750,0.925726893,0.934909952,0.774191783,169764,219279,0.754375614,0.794007952,0.025805211,11139,431657,,,0.097,16420,,0.067212766,0.126787234,0.465116279,0.130570047,0.799662511,0.017502416,0.004241528,0.030763304,0.119511604,0.098674192,0.140349015,0.217013939,0.184297666,0.249730212,0.046990968,0.037355556,0.05662638,4.167268241,182418,43774,4.009586057,4.324950426,0.232067173,40573,174833,0.215176744,0.248957601,7.772541021,596,766802,,,60.06565144,2284,3802506,57.60225555,62.52904734,,,,20.04055827,14.44347166,27.0890129,51.52439837,47.18259284,55.86620391,40.07019192,34.5579347,45.58244914,76.3266451,72.44190768,80.21138253,,,,8.6,,,,,0,,,,,0.131087662,37145,283360,0.123616463,0.138558861,0.114086292,0.106981472,0.121191113,0.016957228,0.014263092,0.019651363,0.005293619,0.003687439,0.0068998,0.702134555,281636,401114,0.694112531,0.71015658,0.591152815,0.497783484,0.684522146,0.606496918,0.573695636,0.639298201,0.693624409,0.677887483,0.709361334,0.63130454,0.604796263,0.657812817,0.734973959,0.726494988,0.743452931,0.506,,401114,0.491603179,0.520396821,79.50143633,,,79.29569835,79.7071743,,,,87.47155989,85.54957819,89.39354159,77.48002219,77.00807017,77.95197421,84.84832554,83.23620405,86.46044702,79.53905549,79.27846571,79.79964528,,,,296.5158488,7541,2179875,289.7325756,303.299122,,,,150.9051214,129.3335111,172.4767317,364.750359,349.2825544,380.2181637,232.2182432,210.8201553,253.6163311,294.5041796,285.4952252,303.513134,,,,46.0441077,360,781859,41.28770209,50.8005133,,,,35.32142497,19.31055171,59.26334928,75.21072354,63.8712606,86.55018647,43.68554009,33.98995774,55.28684691,32.12801779,25.95321157,38.30282402,,,,5.623403327,361,64196,5.043304879,6.203501776,,,,,,,9.414611056,8.035396161,10.79382595,4.769356882,3.672985956,6.090362263,3.95834134,3.193888495,4.722794184,,,,,,,0.094,,,0.081,0.109,0.136,,,0.118,0.156,0.094,,,0.082,0.109,564.9,3653,646711,,,0.071,53950,,,,0.080151024,55150.1561,688078,,,19.60795445,449,2289887,17.79425555,21.42165336,,,,,,,15.5621472,12.64814533,18.94635583,8.44506808,5.516598851,12.37398142,27.39159647,24.38094933,30.4022436,,,,0.347,,,0.335,0.359,0.159921339,76930,481049,0.148006445,0.171836232,0.060287727,10904,180866,0.047181344,0.07339411,0.001371847,1059,771952,,,728.9442871,0.87,8329.38,9574,,,0.038266689,1624,42439,0.028089526,0.048443851,3.215153165,,,,,,3.866996301,2.926119877,2.784901502,3.655386262,2.993116965,,,,,,3.993368718,2.57524395,2.647552998,3.443866344,0.163608333,,,,,-4459.649,,,,,0.833581817,59266,71098,0.800542751,0.866620882,96798,,,94007.53192,99588.46809,65028,17691.31915,112364.6809,116587,107532.8723,125641.1277,79907,76872.2766,82941.7234,72861,69366.3617,76355.6383,106594,103898.8511,109289.1489,,,,,,,,,,,46.82706114,,,,,0.215696605,,96798,,,13.6015368,616,45289,,,4.497362996,238,5291990,3.925982338,5.068743654,,,,,,,10.01326585,8.383415175,11.64311653,4.013030885,2.666629879,5.799946963,2.160346007,1.644555475,2.78668895,,,,12.26194957,475,3802506,11.14293094,13.38096821,12.49176201,,,,7.70915255,4.104799054,13.18288564,6.832590695,5.346081415,8.60451719,12.72647735,8.760321422,17.87270585,15.87425641,14.09803612,17.65047671,,,,11.01904902,419,3802506,9.963950106,12.07414793,,,,4.771561494,2.288149205,8.775071474,13.90492082,11.64939313,16.16044851,6.513873564,4.483850839,9.147900316,11.73464267,10.21143711,13.25784824,,,,9.826171251,520,5291990,8.981595266,10.67074724,,,,3.827165219,1.910507088,6.847855748,12.77554609,10.9345635,14.61652867,10.74918987,8.454919718,13.47420258,8.9343123,7.813269258,10.05535534,,,,10.013947,,71700,,,566,152,0.752752473,393746,523075,,,0.688,,,,,137.7770971,,,,,0.664959766,193617,291171,0.65581657,0.674102962,0.118069539,33832,286543,0.110547543,0.125591535,0.953865598,277738,291171,0.949080353,0.958650843,771952,,,,,0.221952919,171337,771952,,,0.138691266,107063,771952,,,0.282342685,217955,771952,,,0.005164829,3987,771952,,,0.058757539,45358,771952,,,0.000786318,607,771952,,,0.138024126,106548,771952,,,0.495897413,382809,771952,,,0.037506582,27067,721660,0.034628062,0.040385102,0.51195152,395202,771952,,,5.22092E-05,40,766149,, -13,069,13069,GA,Coffee County,2024,1,12082.82645,912,122827,10983.42601,13182.22689,0,,,,2,,,,2,14546.09732,12207.90861,16884.28602,,6396.674231,4215.448625,9306.825168,,12138.81102,10691.70406,13585.91797,,,,,2,,0.241,,,0.208,0.273,4.890931001,,,4.015590454,5.893820598,5.761580221,,,4.724758945,6.896747886,0.108397708,435,4013,0.098778991,0.118016424,0,,,,,,,0.160909091,0.139194356,0.182623826,0.095599393,0.073149134,0.118049652,0.086166744,0.074296945,0.098036543,,,,,,,0.225,,,0.185,0.265,0.425,,,0.354,0.501,7.7,0.028242211,0.136,,,0.334,,,0.284,0.386,0.546157059,23535,43092,,,0.152940633,,,0.122527247,0.187901193,0.264150943,14,53,0.19279112,0.338831847,493.2,214,43386,,,42.75460314,411,9613,38.62110221,46.88810407,,,,,,,46.45799012,38.78955173,54.1264285,47.47413268,37.52633184,59.24986613,39.16053656,33.45540824,44.86566489,,,,,,,0.216759643,7266,33521,0.192929856,0.24058943,0.000530125,23,43386,,,1886.347826,0.000370611,16,43172,,,2698.25,0.000324284,14,43172,,,3083.714286,5529,,,,,,,8315,12180,5051,0.38,,,,,,,0.34,0.19,0.39,0.38,,,,,,0.52,0.29,0.32,0.39,0.782812555,22372,28579,0.753336327,0.812288782,0.429402477,5167,12033,0.369831765,0.488973188,0.035334185,664,18792,,,0.259,2686,,0.158914894,0.359085106,,,,,,,0.311831551,0.181351739,0.442311363,0.441464673,0.328161227,0.554768118,0.205398823,0.130525577,0.280272069,5.285474767,94573,17893,4.098655037,6.472294496,0.37847388,3963,10471,0.307220063,0.449727698,9.219563915,40,43386,,,89.358471,193,215984,76.75143056,101.9655114,,,,,,,80.4241141,59.49820236,106.3249439,38.28044252,18.35696014,70.39909674,108.1831686,89.86578802,126.5005493,,,,7.2,,,,,0,,,,,0.141267701,2095,14830,0.110378267,0.172157134,0.108741259,0.076626371,0.140856147,0.028320971,0.015024344,0.041617598,0.009440324,0.003486216,0.015394432,0.851952925,14985,17589,0.81778338,0.88612247,,,,,,,0.766305381,0.700138286,0.832472476,0.707528958,0.520142388,0.894915528,0.901103753,0.860106651,0.942100855,0.136,,17589,0.101570287,0.170429713,72.35617011,,,71.53410095,73.17823926,,,,,,,70.55655985,68.84546672,72.26765298,87.09617928,76.37583885,97.8165197,72.15424753,71.1367991,73.17169596,,,,635.046284,912,122827,593.057126,677.0354419,,,,,,,745.9624356,655.4765737,836.4482974,264.9068179,171.433725,391.0547208,645.7566425,592.3610755,699.1522095,,,,59.89048597,28,46752,39.79679298,86.55842733,,,,,,,,,,,,,52.65698363,27.20863183,91.9811534,,,,9.058882738,36,3974,6.3447301,12.54131215,,,,,,,,,,,,,,,,,,,,,,0.152,,,0.132,0.172,0.188,,,0.165,0.213,0.146,,,0.126,0.166,334.6,120,35861,,,0.136,5860,,,,0.028242211,1196.227096,42356,,,13.85926685,18,129877,8.213879887,21.90361671,,,,,,,,,,,,,18.9061445,10.33616513,31.72129794,,,,0.381,,,0.368,0.392,0.275469283,6457,23440,0.243299071,0.307639496,0.082279675,872,10598,0.057258399,0.107300952,0.002084685,90,43172,,,479.6888889,0.89,423.64,476,,,,,,,,2.995671123,,,,,,,2.607285242,2.947813902,3.322027456,2.991215431,,,,,,,2.77651278,2.920176318,3.23539296,0.036126516,,,,,-9339.436,,,,,0.952767675,38246,40142,0.814440645,1.091094705,48792,,,43187.23404,54396.76596,,,,51551,50497.7234,52604.2766,37568,27994.38298,47141.61702,33388,25481.2766,41294.7234,57303,49123.42553,65482.57447,,,,,,,,,,,26.75005177,,,,,0.240695196,,48792,,,5.561348627,16,2877,,,10.26136695,31,302104,6.972100991,14.56519129,,,,,,,18.86191896,10.78121642,30.6305747,,,,7.463629161,3.974068189,12.76303317,,,,18.567065,40,215984,13.20299826,25.38178907,18.51989036,,,,,,,,,,,,,26.10867627,17.73957881,37.0591819,,,,19.44588488,42,215984,14.01488339,26.28518723,,,,,,,24.61962677,13.77941821,40.60633032,,,,20.99076406,13.71186399,30.75633282,,,,21.5157694,65,302104,16.60541659,27.42361432,,,,,,,27.11400851,17.18795553,40.68432562,,,,21.24263684,14.95677673,29.28017668,,,,,,4000,,,,,0.49164647,15214,30945,,,0.463,,,,,32.6222874,,,,,0.661071572,9846,14894,0.625275751,0.696867394,0.107630641,1450,13472,0.079643084,0.135618199,0.801732241,11941,14894,0.760176845,0.843287637,43172,,,,,0.243537478,10514,43172,,,0.144514963,6239,43172,,,0.281293431,12144,43172,,,0.006254054,270,43172,,,0.008524043,368,43172,,,0.001783563,77,43172,,,0.127652182,5511,43172,,,0.565806541,24427,43172,,,0.034400358,1382,40174,0.021279787,0.04752093,0.484295377,20908,43172,,,0.66912652,28834,43092,, -13,071,13071,GA,Colquitt County,2024,1,12331.94188,967,127787,11207.20385,13456.67991,0,,,,2,,,,2,17883.6134,15101.90416,20665.32263,,9588.131632,7474.418988,12114.0275,,11210.15982,9728.097085,12692.22255,,,,,2,,0.246,,,0.216,0.282,4.750310986,,,3.849492184,5.685949982,5.733361533,,,4.677887176,6.827597272,0.109508042,463,4228,0.100095074,0.11892101,0,,,,0.217391304,0.098192864,0.336589745,0.178033658,0.155719157,0.200348159,0.081494058,0.065870232,0.097117883,0.083150985,0.070493408,0.095808562,,,,,,,0.222,,,0.185,0.264,0.418,,,0.347,0.492,6.6,0.127413139,0.136,,,0.352,,,0.301,0.411,0.519630485,23850,45898,,,0.133997294,,,0.106478757,0.166734611,0.280701754,16,57,0.211839682,0.351834237,395.1,181,45812,,,39.60197005,394,9949,35.69153793,43.51240217,,,,,,,58.75251509,49.22222531,68.28280487,45.36932883,37.28533933,53.45331834,24.84608619,20.26493276,29.42723962,,,,84.41558442,44.94774345,144.3532203,0.234150943,8687,37100,0.210321156,0.257980731,0.000371082,17,45812,,,2694.823529,0.000262226,12,45762,,,3813.5,0.000852236,39,45762,,,1173.384615,5900,,,,,,,9166,1572,5081,0.47,,,,,,0.45,0.41,0.34,0.48,0.29,,,,,,0.2,0.23,0.24,0.3,0.776940846,23208,29871,0.753150167,0.800731524,0.393676953,4682,11893,0.340851408,0.446502498,0.028390737,624,21979,,,0.314,3608,,0.231787234,0.396212766,,,,,,,0.678899083,0.625234446,0.732563719,0.486366331,0.389071401,0.583661261,0.1490316,0.104778128,0.193285073,5.888688395,104430,17734,5.030731865,6.746644925,0.420517168,4960,11795,0.345383512,0.495650824,8.949620187,41,45812,,,96.33025514,220,228381,83.60086957,109.0596407,,,,,,,79.735733,57.46650289,107.7795474,63.83587576,42.75188786,91.67896594,117.0363529,98.11648136,135.9562245,,,,9.4,,,,,0,,,,,0.140560983,2230,15865,0.1115938,0.169528166,0.112426036,0.085112482,0.139739589,0.034982666,0.019730669,0.050234663,0.006303183,0.001861148,0.010745218,0.811067401,15463,19065,0.795146201,0.826988601,,,,,,,0.832920792,0.739360699,0.926480885,0.519199212,0.481577925,0.5568205,0.87233598,0.832243718,0.912428242,0.291,,19065,0.251160758,0.330839242,72.50874886,,,71.67481188,73.34268585,,,,,,,68.18236883,66.41252781,69.95220984,87.26911734,70.78919275,103.7490419,73.26095555,72.18776587,74.33414523,,,,625.4722875,967,127787,585.0177342,665.9268407,,,,,,,875.1623957,770.8099166,979.5148748,442.9831138,348.4343201,555.2831691,587.0739624,536.6727809,637.4751438,,,,81.76296527,42,51368,58.9275536,110.5197765,,,,,,,121.3776362,69.37780651,197.1096768,,,,82.19553404,48.71428275,129.9043804,,,,7.831039393,33,4214,5.390527189,10.99769086,,,,,,,,,,,,,,,,,,,,,,0.153,,,0.133,0.175,0.189,,,0.166,0.216,0.142,,,0.124,0.163,535.8,202,37703,,,0.136,6220,,,,0.127413139,5797.042978,45498,,,11.68275479,16,136954,6.677703794,18.97206186,,,,,,,,,,,,,14.68134802,7.328876032,26.26898701,,,,0.408,,,0.396,0.421,0.292272114,7583,25945,0.261293391,0.323250838,0.101159025,1187,11734,0.071371791,0.130946259,0.001289279,59,45762,,,775.6271186,0.84,483.84,576,,,,,,,,2.772828979,,,,,,,2.386746583,2.623127578,3.165804867,2.717220303,,,,,,,2.217375027,2.647507891,3.10591042,0.056912228,,,,,-8202.08,,,,,0.882935701,36897,41789,0.747405103,1.018466299,49214,,,42968.21277,55459.78723,,,,,,,29290,20009.48936,38570.51064,41284,36602.6383,45965.3617,59707,54083.17021,65330.82979,,,,,,,,,,,43.09109768,,,,,0.238631284,,49214,,,10.65246338,32,3004,,,9.689528745,31,319933,6.583564677,13.75351261,,,,,,,29.96540358,18.77915889,45.36798113,,,,,,,,,,19.00285609,44,228381,13.6955872,25.68634101,19.26605103,,,,,,,,,,,,,24.81477991,16.61884756,35.63816326,,,,18.82818623,43,228381,13.62605174,25.36144329,,,,,,,22.781638,11.77160479,39.79493687,,,,19.10797599,12.24284076,28.43115364,,,,26.56806269,85,319933,21.22162484,32.85182095,,,,,,,14.98270179,7.479310751,26.80819215,31.77982934,19.41194538,49.08136892,30.50278762,22.91463285,39.79952122,,,,,,4800,,,,,0.526448445,16083,30550,,,0.496,,,,,26.14527021,,,,,0.647802165,10714,16539,0.612376054,0.683228275,0.132854344,2034,15310,0.10251,0.163198687,0.767216881,12689,16539,0.735916058,0.798517705,45762,,,,,0.254425069,11643,45762,,,0.160832132,7360,45762,,,0.232113981,10622,45762,,,0.013832437,633,45762,,,0.0109698,502,45762,,,0.001660767,76,45762,,,0.207770639,9508,45762,,,0.536383899,24546,45762,,,0.059614397,2554,42842,0.045836323,0.073392472,0.502163367,22980,45762,,,0.581310733,26681,45898,, -13,073,13073,GA,Columbia County,2024,1,6479.933142,1705,451471,6020.716032,6939.150252,0,,,,2,4015.799801,2339.351371,6429.684498,1,7701.664684,6422.041752,8981.287616,,4011.709407,2878.871933,5442.336798,,6745.344997,6177.214816,7313.475178,,,,,2,,0.13,,,0.109,0.152,3.184968494,,,2.512969151,3.908020375,4.753854662,,,3.936295975,5.637379719,0.079325731,960,12102,0.074510828,0.084140634,0,,,,0.091617934,0.066653489,0.116582379,0.135236313,0.120736941,0.149735685,0.080530071,0.063501847,0.097558296,0.062983145,0.057623008,0.068343283,,,,0.076470588,0.048222491,0.104718685,0.129,,,0.101,0.159,0.344,,,0.288,0.406,8.7,0.059153059,0.073,,,0.202,,,0.165,0.241,0.721210179,112516,156010,,,0.164788847,,,0.134366862,0.199843845,0.206349206,13,63,0.142983259,0.27579642,317.6,507,159639,,,9.239160684,332,35934,8.245313641,10.23300773,,,,,,,10.27667984,8.12328896,12.82576154,7.719523963,4.946044662,11.48603975,9.146065381,7.884776148,10.40735461,,,,11.92411924,7.472782045,18.05325983,0.105783772,14480,136883,0.093868878,0.117698665,0.001052374,168,159639,,,950.2321429,0.00057875,94,162419,,,1727.861702,0.001323737,215,162419,,,755.4372093,2199,,,,,,750,2705,,2157,0.46,,,,,,0.45,0.46,0.33,0.47,0.45,,,,,,0.53,0.33,0.36,0.47,0.93200752,97666,104791,0.917234987,0.946780052,0.724605483,31637,43661,0.677797708,0.771413259,0.028162335,2138,75917,,,0.084,3313,,0.056595745,0.111404255,,,,0.226442659,0.007435582,0.445449736,0.175709308,0.077583853,0.273834764,0.12749004,0.048279712,0.206700368,0.06594709,0.04370415,0.08819003,4.004664157,169145,42237,3.546666043,4.462662271,0.2239947,8790,39242,0.185201716,0.262787683,7.203753469,115,159639,,,59.54510606,466,782600,54.13869346,64.95151865,,,,30.08604609,14.42742853,55.32930995,35.37443843,26.25559004,46.63678706,23.35483176,12.4354643,39.93747358,73.38751842,66.0662788,80.70875804,,,,10.3,,,,,0,,,,,0.077744377,3750,48235,0.064818803,0.09066995,0.064926931,0.052560255,0.077293607,0.007670779,0.002690754,0.012650803,0.007774438,0.003623571,0.011925305,0.827181364,62142,75125,0.803303742,0.851058987,,,,0.692949204,0.552183264,0.833715144,0.763350374,0.684832597,0.84186815,0.623039807,0.54990788,0.696171734,0.776414831,0.749107395,0.803722268,0.364,,75125,0.334476057,0.393523943,79.00164369,,,78.54948891,79.45379846,,,,90.00247625,84.91889335,95.08605915,79.51192784,77.92630406,81.09755163,82.02929124,79.67427086,84.38431163,78.33346667,77.81525117,78.85168217,,,,318.1262524,1705,451471,302.7364196,333.5160851,,,,158.936368,110.7050038,221.0420134,353.896208,314.0843908,393.7080253,215.0238318,157.9914238,285.9361128,334.9463666,316.0171552,353.875578,,,,42.80153391,74,172891,33.60841006,53.73340631,,,,,,,74.14043434,47.50317523,110.3150894,,,,40.18841826,29.08455757,54.13353566,,,,6.291390729,76,12080,4.956900321,7.874613656,,,,,,,17.04822211,11.87471135,23.70995001,,,,4.618072891,3.251549497,6.36540516,,,,,,,0.095,,,0.081,0.11,0.147,,,0.128,0.17,0.092,,,0.079,0.107,193.9,256,132011,,,0.073,11250,,,,0.059153059,7338.114384,124053,,,17.20051182,82,476730,13.6800775,21.35037047,,,,,,,12.47745551,6.228700833,22.32561453,,,,21.16047854,16.39908022,26.87305975,,,,0.351,,,0.336,0.366,0.126449264,12226,96687,0.110959902,0.141938626,0.058685223,2471,42106,0.043195861,0.074174585,0.000812713,132,162419,,,1230.44697,0.92,1907.16,2073,,,0.038204161,314,8219,0.01433479,0.062073532,3.294115689,,,,,,3.607087434,2.864384827,3.100634797,3.432236274,3.322115482,,,,,,3.972175635,2.889734977,3.17423005,3.43923111,0.047439921,,,,,250.6846,,,,,0.792844728,54738,69040,0.716742683,0.868946772,94224,,,87061.95745,101386.0426,45417,7919.638298,82914.3617,91042,65765.74468,116318.2553,78796,70721.2766,86870.7234,77092,67230.04255,86953.95745,97908,91633.61702,104182.383,,,,,,,,,,,27.64496787,,,,,0.159269401,,94224,,,9.300867384,89,9569,,,3.16543494,34,1074102,2.192155716,4.423378049,,,,,,,8.967143332,5.22369144,14.35726514,,,,2.058028162,1.15186274,3.394404478,,,,16.21797919,128,782600,13.37475604,19.06120235,16.35573729,,,,,,,,,,,,,20.10453672,16.25186118,23.95721225,,,,12.77791976,100,782600,10.27344748,15.28239203,,,,,,,8.489865223,4.386837248,14.83008599,,,,15.59009459,12.39926488,19.35141806,,,,10.33421407,111,1074102,8.411688894,12.25673924,,,,,,,10.02210137,6.033959714,15.65075275,,,,11.25055395,8.947899435,13.96490392,,,,12.2754491,,16700,,,115,90,0.727214476,80579,110805,,,0.722,,,,,45.55651213,,,,,0.789136168,39501,50056,0.773724874,0.804547461,0.097645571,4786,49014,0.080019587,0.115271555,0.897474828,44924,50056,0.88656529,0.908384367,162419,,,,,0.246153467,39980,162419,,,0.151509368,24608,162419,,,0.196627242,31936,162419,,,0.004765452,774,162419,,,0.046472396,7548,162419,,,0.00213645,347,162419,,,0.076610495,12443,162419,,,0.64565722,104867,162419,,,0.014346667,2115,147421,0.009805919,0.018887415,0.509903398,82818,162419,,,0.149471188,23319,156010,, -13,075,13075,GA,Cook County,2024,1,12148.8687,337,48225,10231.56455,14066.17285,0,,,,2,,,,2,17686.8223,13239.32309,22134.32151,,,,,2,11012.19141,8661.535508,13362.84731,,,,,2,,0.226,,,0.195,0.257,4.650486194,,,3.706687096,5.661875891,5.958831073,,,4.819285739,7.170420145,0.127310062,186,1461,0.110218084,0.144402039,0,,,,,,,0.198257081,0.161783227,0.234730934,0.108695652,0.056763583,0.160627721,0.092682927,0.072834387,0.112531466,,,,,,,0.215,,,0.175,0.256,0.384,,,0.306,0.467,8.1,0.007765396,0.128,,,0.307,,,0.257,0.36,0.685123919,11804,17229,,,0.145228393,,,0.113611503,0.180119413,0.103448276,3,29,0.031854594,0.210504629,743.1,128,17225,,,31.01156781,126,4063,25.59661693,36.42651869,,,,,,,35.22818255,25.59685137,47.29219078,30.42596349,17.0291808,50.18299974,28.59736723,21.97500218,36.58845542,,,,,,,0.183031594,2578,14085,0.160393296,0.205669892,0.000522496,9,17225,,,1913.888889,0.00028729,5,17404,,,3480.8,0.000459664,8,17404,,,2175.5,3560,,,,,,,4316,,3355,0.4,,,,,,,0.39,,0.4,0.33,,,,,,,0.38,,0.32,0.819465547,9169,11189,0.785282856,0.853648237,0.601686508,2426,4032,0.503263434,0.700109582,0.03101058,255,8223,,,0.288,1233,,0.176,0.4,,,,,,,0.404040404,0.280854365,0.527226444,0.30952381,0.045620107,0.573427512,0.177186655,0.079966579,0.27440673,6.182015105,105595,17081,4.87255433,7.491475879,0.260349586,1132,4348,0.166483499,0.354215673,6.966618287,12,17225,,,96.25978545,83,86225,76.67038179,119.3284869,,,,,,,105.3474358,68.17530592,155.513597,,,,101.440087,76.62675153,131.7283906,,,,9.1,,,,,0,,,,,0.158870968,985,6200,0.115359008,0.202382927,0.134177215,0.086803414,0.181551017,0.020967742,0.006128908,0.035806576,0.018387097,0,0.039445402,0.821697379,6332,7706,0.777732435,0.865662323,,,,,,,0.811214953,0.479287059,1,,,,0.815028902,0.772860684,0.857197119,0.335,,7706,0.270991399,0.399008601,72.90947125,,,71.49666397,74.32227853,,,,,,,69.5090308,66.50832779,72.50973382,,,,73.36367146,71.62192064,75.10542227,,,,563.9145976,337,48225,501.6905017,626.1386934,,,,,,,711.1283345,572.1828782,850.0737907,,,,540.3417429,466.5711656,614.1123201,,,,79.36088038,15,18901,44.41768231,130.8937034,,,,,,,,,,,,,104.7319813,52.28182774,187.3944446,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.146,,,0.126,0.167,0.189,,,0.163,0.216,0.133,,,0.115,0.155,520.5,74,14216,,,0.128,2190,,,,0.007765396,133.6579868,17212,,,,,,,,,,,,,,,,,,,,,,,,,,0.41,,,0.396,0.424,0.230364905,2279,9893,0.20057767,0.260152139,0.072805625,321,4409,0.050167327,0.095443923,0.000804413,14,17404,,,1243.142857,0.96,202.56,211,,,,,,,,2.39297297,,,,,,,2.184537923,1.8378219,2.655897206,2.484271508,,,,,,,2.233944955,2.137617904,2.755268434,0.005383408,,,,,-7214.479,,,,,0.816002774,37652,46142,0.696667995,0.935337554,44476,,,38188.51064,50763.48936,,,,,,,28190,19641.06383,36738.93617,57099,34734.74468,79463.25532,51685,44034.44681,59335.55319,,,,,,,,,,,21.81828843,,,,,0.264052523,,44476,,,10.18675722,12,1178,,,10.78694945,13,120516,5.743596279,18.44601208,,,,,,,33.3414161,16.64391479,59.65700325,,,,,,,,,,14.46042978,13,86225,7.471915079,25.25946072,15.07683387,,,,,,,,,,,,,15.57115317,7.120122759,29.55889904,,,,26.67439838,23,86225,16.90928041,40.02469457,,,,,,,,,,,,,23.54859161,12.53863326,40.26880884,,,,27.3822563,33,120516,18.8486853,38.45486846,,,,,,,,,,,,,34.84950178,22.96604127,50.70419542,,,,,,1800,,,,,0.56122856,7035,12535,,,0.529,,,,,42.00619621,,,,,0.634565075,3881,6116,0.590990431,0.678139719,0.160485021,900,5608,0.113249511,0.207720532,0.73381295,4488,6116,0.688393011,0.779232889,17404,,,,,0.250632039,4362,17404,,,0.167949897,2923,17404,,,0.273787635,4765,17404,,,0.010399908,181,17404,,,0.007756838,135,17404,,,0.000632039,11,17404,,,0.07446564,1296,17404,,,0.621925994,10824,17404,,,0.020337302,328,16128,0.004103161,0.036571443,0.521259481,9072,17404,,,0.591734866,10195,17229,, -13,077,13077,GA,Coweta County,2024,1,7963.570918,2033,424486,7442.73034,8484.411496,0,,,,2,,,,2,11911.7979,10457.30942,13366.28638,,4562.372205,3244.292638,6236.912996,,7702.906423,7079.966375,8325.84647,,,,,2,,0.144,,,0.12,0.172,3.534355327,,,2.790073119,4.372406726,4.853103561,,,3.91495566,5.850033646,0.091052217,1041,11433,0.085778817,0.096325617,0,,,,0.115830116,0.076855235,0.154804997,0.160587002,0.14585184,0.175322164,0.074034335,0.05722455,0.090844119,0.06987188,0.064129366,0.075614393,,,,0.074257426,0.038100171,0.110414681,0.14,,,0.109,0.176,0.333,,,0.269,0.401,8,0.117294952,0.08,,,0.222,,,0.182,0.267,0.636174551,92982,146158,,,0.178150689,,,0.143929436,0.216464472,0.299065421,32,107,0.249608911,0.349380972,311.4,467,149956,,,15.0922785,525,34786,13.80126368,16.38329333,,,,,,,24.23900789,20.61652212,27.86149366,15.0332466,11.22754762,19.71410285,12.17649173,10.72674011,13.62624336,,,,26.1627907,17.24144393,38.06548687,0.118836249,15113,127175,0.105729866,0.131942632,0.000453466,68,149956,,,2205.235294,0.000385919,59,152882,,,2591.220339,0.000981149,150,152882,,,1019.213333,2785,,,,,,,4341,3081,2600,0.43,,,,,,0.36,0.44,0.29,0.43,0.42,,,,,,0.44,0.33,0.36,0.44,0.907735099,91054,100309,0.896063899,0.919406298,0.699496215,26520,37913,0.654519606,0.744472824,0.026632546,2071,77762,,,0.101,3451,,0.059297872,0.142702128,,,,0.184313726,0,0.390086171,0.127974375,0.073016274,0.182932476,0.268087661,0.157065319,0.379110003,0.069549386,0.045222199,0.093876572,4.056316553,164942,40663,3.759065877,4.353567229,0.218097515,7573,34723,0.183745942,0.252449087,7.602229988,114,149956,,,64.60858305,477,738292,58.8104644,70.40670171,,,,,,,52.49107652,40.91936929,66.31931734,,,,75.06871675,67.61826237,82.51917113,,,,9.8,,,,,1,,,,,0.109217588,5800,53105,0.094786111,0.123649065,0.090244134,0.075794806,0.104693463,0.017983241,0.01166016,0.024306322,0.004613502,0.001531923,0.00769508,0.780714167,56277,72084,0.765166088,0.796262246,,,,0.706630944,0.61261271,0.800649179,0.809601874,0.771406356,0.847797391,0.626538577,0.493351223,0.759725931,0.733211799,0.707797175,0.758626423,0.479,,72084,0.449093854,0.508906146,76.94091743,,,76.48494235,77.39689252,,,,85.56852838,80.91460526,90.22245149,72.92655374,71.78380532,74.06930216,86.11295836,80.85177624,91.37414048,77.17389426,76.64469272,77.70309581,,,,387.6340807,2033,424486,370.3398964,404.928265,,,,,,,572.5423352,521.5642382,623.5204321,230.8706794,173.43716,301.2361565,373.9426037,353.980104,393.9051034,,,,52.62684996,82,155814,41.85569555,65.32379705,,,,,,,77.0267668,49.3525029,114.6097233,,,,46.90010278,34.46043145,62.36719422,,,,5.306447334,60,11307,4.049378345,6.830449581,,,,,,,8.550662676,5.222966903,13.205805,,,,4.648074369,3.237554104,6.464346264,,,,,,,0.104,,,0.088,0.122,0.154,,,0.133,0.178,0.095,,,0.08,0.111,241.9,305,126065,,,0.08,11640,,,,0.117294952,14933.64138,127317,,,15.57930534,70,449314,12.14483281,19.68351506,,,,,,,,,,,,,20.3469149,15.66960379,25.98255608,,,,0.334,,,0.319,0.349,0.141732113,13084,92315,0.125051262,0.158412964,0.061834328,2270,36711,0.045153477,0.078515179,0.001203543,184,152882,,,830.8804348,0.89,1604.67,1803,,,0.075701167,610,8058,0.04021424,0.111188093,3.188167703,,,,,,3.414193946,2.674985059,2.978016497,3.418282535,2.929887509,,,,,,3.591995189,2.433907758,2.724283472,3.143879788,0.048514975,,,,,-580.8633,,,,,0.771534556,50750,65778,0.711485568,0.831583543,87618,,,78899.87234,96336.12766,,,,96985,64698.02128,129271.9787,61942,48723.61702,75160.38298,69841,52803.89362,86878.10638,98210,94225.65957,102194.3404,,,,,,,,,,,35.36949459,,,,,0.171277591,,87618,,,10.5112279,88,8372,,,4.227103598,43,1017245,3.059175834,5.693880807,,,,,,,12.59866673,7.986473982,18.90418599,,,,2.501587813,1.482599481,3.953587245,,,,15.51487329,121,738292,12.68467761,18.34506896,16.38917935,,,,,,,,,,,,,19.02943169,15.30711448,22.75174891,,,,15.98283606,118,738292,13.09901099,18.86666113,,,,,,,15.74732296,9.747841105,24.0714559,,,,17.90100169,14.44841869,21.92993645,,,,14.05757708,143,1017245,11.75349193,16.36166224,,,,,,,14.24197109,9.303328357,20.86778745,,,,15.00952688,12.17871378,17.84033998,,,,9.6,,15000,,,79,65,0.728021613,76799,105490,,,0.706,,,,,38.34306917,,,,,0.761817746,41273,54177,0.745870547,0.777764944,0.09959994,5278,52992,0.085751388,0.113448491,0.898850066,48697,54177,0.881836985,0.915863146,152882,,,,,0.227207912,34736,152882,,,0.152568648,23325,152882,,,0.190107403,29064,152882,,,0.004487121,686,152882,,,0.024823066,3795,152882,,,0.001445559,221,152882,,,0.07995055,12223,152882,,,0.681983491,104263,152882,,,0.014815454,2062,139179,0.010164387,0.01946652,0.512244738,78313,152882,,,0.448925136,65614,146158,, -13,079,13079,GA,Crawford County,2024,1,13512.39981,308,34103,10612.54403,16412.25559,0,,,,2,,,,2,7303.931299,4397.443767,11405.99348,1,,,,2,16345.57004,12381.1987,20309.94138,,,,,2,,0.194,,,0.167,0.224,4.204955639,,,3.3292719,5.1121541,5.386123996,,,4.30323526,6.495993544,0.112570357,60,533,0.085737219,0.139403494,0,,,,,,,0.186440678,0.11616905,0.256712306,,,,0.088709677,0.059816289,0.117603066,,,,,,,0.202,,,0.163,0.24,0.386,,,0.31,0.468,6.6,0.164456563,0.119,,,0.278,,,0.228,0.328,0.02506183,304,12130,,,0.150208859,,,0.118791435,0.185706911,0.333333333,5,15,0.193378406,0.471634149,172.8,21,12153,,,12.60869565,29,2300,8.444241364,18.10819019,,,,,,,,,,,,,10.32179721,6.012827243,16.52619722,,,,,,,0.176145833,1691,9600,0.153507536,0.198784131,0.000164568,2,12153,,,6076.5,,0,12140,,,,,0,12140,,,,2604,,,,,,,,,2263,0.46,,,,,,,0.51,,0.43,0.37,,,,,,,0.37,,0.37,0.809970675,6905,8525,0.772375726,0.847565623,0.562580094,1317,2341,0.422911811,0.702248377,0.031279091,168,5371,,,0.233,559,,0.136489362,0.329510638,,,,,,,0.501879699,0.348009542,0.655749857,0.4,0,0.897738498,0.088113542,0.026665391,0.149561694,5.246542393,113425,21619,3.886890295,6.606194491,0.356069834,877,2463,0.225381889,0.486757779,9.051263063,11,12153,,,105.8614681,65,61401,81.70164611,134.9291312,,,,,,,,,,,,,122.7980084,92.50826536,159.8384871,,,,9.8,,,,,0,,,,,0.091803279,420,4575,0.059763737,0.12384282,0.083333333,0.049512195,0.117154472,0.012677596,0,0.026093701,0.000874317,0,0.00681292,0.822254335,3983,4844,0.770599977,0.873908693,,,,,,,,,,,,,0.602427921,0.406199913,0.79865593,0.608,,4844,0.478215138,0.737784862,72.14512144,,,70.15618208,74.1340608,,,,,,,76.1577296,73.35752453,78.95793467,,,,70.14267432,67.57932966,72.70601898,,,,620.8691062,308,34103,543.5564426,698.1817699,,,,,,,460.5356717,334.6259241,618.2476436,,,,702.6245873,604.4802214,800.7689533,,,,100.8341736,11,10909,50.33605617,180.4201899,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.132,,,0.114,0.151,0.179,,,0.154,0.204,0.121,,,0.104,0.139,190.5,20,10499,,,0.119,1440,,,,0.164456563,2077.086385,12630,,,,,,,,,,,,,,,,,,,,,,,,,,0.379,,,0.365,0.392,0.20723593,1495,7214,0.177448696,0.237023164,0.084819659,214,2523,0.058606893,0.111032425,0.000329489,4,12140,,,3035,0.725,89.175,123,,,,,,,,2.886313112,,,,,,,2.574183858,,3.00283847,2.840143392,,,,,,,2.499885108,,2.967843491,0.007727144,,,,,-5235.352,,,,,0.845055684,45224,53516,0.645152831,1.044958537,60295,,,52676.61702,67913.38298,,,,,,,26058,16328.29787,35787.70213,103778,61057.14894,146498.8511,69600,55563.06383,83636.93617,,,,,,,,,,,60.72718022,,,,,0.194775686,,60295,,,8.291873964,5,603,,,,,,,,,,,,,,,,,,,,,,,,,,22.37555319,14,61401,11.56177485,39.08558844,22.80093158,,,,,,,,,,,,,30.52087447,15.77058121,53.3138255,,,,19.54365564,12,61401,10.09849206,34.13883332,,,,,,,,,,,,,22.32691063,10.70662148,41.05998357,,,,24.38712824,21,86111,15.09601675,37.27831605,,,,,,,,,,,,,30.16016636,18.15839034,47.09883577,,,,,,1100,,,,,0.626488706,6102,9740,,,0.54,,,,,2.468535485,,,,,0.808171745,3501,4332,0.77251746,0.84382603,0.079049467,326,4124,0.041904788,0.116194145,0.768698061,3330,4332,0.712327044,0.825069078,12140,,,,,0.200906096,2439,12140,,,0.202883031,2463,12140,,,0.202883031,2463,12140,,,0.008072488,98,12140,,,0.009472817,115,12140,,,0.000658979,8,12140,,,0.0407743,495,12140,,,0.72306425,8778,12140,,,0.001813785,21,11578,0,0.010789953,0.50140033,6087,12140,,,1,12130,12130,, -13,081,13081,GA,Crisp County,2024,1,15516.99744,577,59219,13577.77746,17456.21743,0,,,,2,,,,2,20149.61908,16994.58423,23304.65393,,,,,2,13101.66885,10298.36213,15904.97557,,,,,2,,0.241,,,0.21,0.275,4.777679946,,,3.849370557,5.754541925,5.858196169,,,4.715365951,7.087549506,0.146546884,261,1781,0.130122003,0.162971765,0,,,,,,,0.18655303,0.163057249,0.210048812,,,,0.089527027,0.066528193,0.112525862,,,,,,,0.23,,,0.192,0.271,0.43,,,0.349,0.515,6.7,0.034997787,0.177,,,0.334,,,0.281,0.393,0.4604531,9268,20128,,,0.127041583,,,0.099180323,0.158761289,0.222222222,6,27,0.123749407,0.332441015,1116.8,222,19879,,,38.55066358,183,4747,32.96515935,44.1361678,,,,,,,50.54151625,41.71642782,59.36660467,,,,21.70460561,15.57559972,29.44474831,,,,,,,0.158963908,2418,15211,0.137517099,0.180410716,0.000704261,14,19879,,,1419.928571,0.000507408,10,19708,,,1970.8,0.000761112,15,19708,,,1313.866667,5511,,,,,,,3846,,5965,0.43,,,,,,,0.34,,0.46,0.33,,,,,,,0.24,,0.35,0.821682161,11225,13661,0.773622887,0.869741435,0.46475306,2202,4738,0.377516745,0.551989375,0.042200143,412,9763,,,0.375,1719,,0.235595745,0.514404255,,,,,,,0.662376987,0.590442449,0.734311525,0.383673469,0,0.920254379,0.033766234,0,0.093906548,5.693295292,95784,16824,4.496338404,6.890252181,0.532714225,2524,4738,0.416267206,0.649161244,9.55782484,19,19879,,,97.60814435,107,109622,79.11331882,116.1029699,,,,,,,78.48969306,55.54397828,107.7332361,,,,127.1983188,98.96788437,160.9776133,,,,9.6,,,,,0,,,,,0.182193396,1545,8480,0.131072255,0.233314538,0.155166163,0.107600299,0.202732027,0.021698113,0.0037074,0.039688826,0.015212264,0.003467349,0.02695718,0.803487673,6681,8315,0.746482375,0.860492971,,,,,,,0.791194561,0.7002341,0.882155023,,,,0.855647383,0.817950123,0.893344642,0.195,,8315,0.124965151,0.265034849,70.67594958,,,69.37053411,71.98136504,,,,,,,66.74946112,64.88178063,68.61714162,,,,72.64184606,70.68997353,74.5937186,,,,733.7431537,577,59219,669.8174184,797.6688891,,,,,,,970.7910385,854.7265808,1086.855496,,,,616.5510336,535.497517,697.6045503,,,,61.73928382,14,22676,33.75344098,103.5880275,,,,,,,,,,,,,,,,,,,12.20806794,23,1884,7.738867854,18.31809602,,,,,,,,,,,,,,,,,,,,,,0.151,,,0.132,0.173,0.193,,,0.168,0.221,0.148,,,0.129,0.17,788.3,131,16618,,,0.177,3630,,,,0.034997787,820.3131265,23439,,,,,,,,,,,,,,,,,,,,,,,,,,0.413,,,0.399,0.425,0.200481526,2165,10799,0.171885781,0.229077271,0.060111636,280,4658,0.039856317,0.080366955,0.002587782,51,19708,,,386.4313726,0.86,230.48,268,,,,,,,,2.470611773,,,,,,,2.279733835,,2.892611246,2.596460799,,,,,,,2.304920894,,3.028248461,0.003181411,,,,,-14841.02,,,,,0.881507994,37435,42467,0.656026138,1.106989851,43884,,,37595.31915,50172.68085,,,,,,,31767,23274.06383,40259.93617,59511,7178.404255,111843.5957,62202,49232.6383,75171.3617,,,,,,,,,,,22.51352116,,,,,0.26761462,,43884,,,10.15625,13,1280,,,13.52883575,21,155224,8.374562557,20.68026255,,,,,,,23.4281196,13.39119462,38.04579846,,,,,,,,,,22.47106084,23,109622,14.08249419,34.02145615,20.98118991,,,,,,,,,,,,,38.56460982,22.85583188,60.94870973,,,,25.54231815,28,109622,16.97268491,36.91576138,,,,,,,20.65518239,9.904962813,37.98561582,,,,33.18217011,19.66585699,52.44213448,,,,19.97113848,31,155224,13.56941966,28.34743693,,,,,,,20.49960465,11.20732462,34.39485331,,,,21.99195353,12.81112336,35.211248,,,,,,2200,,,,,0.475258646,8039,16915,,,0.488,,,,,38.38119904,,,,,0.539806314,4292,7951,0.466928734,0.612683894,0.163818425,1227,7490,0.113349115,0.214287735,0.680417558,5410,7951,0.62726203,0.733573085,19708,,,,,0.238380353,4698,19708,,,0.198701035,3916,19708,,,0.44088695,8689,19708,,,0.004211488,83,19708,,,0.01055409,208,19708,,,0.00126852,25,19708,,,0.044093769,869,19708,,,0.486249239,9583,19708,,,0.004629143,88,19010,0,0.027383432,0.523087071,10309,19708,,,0.456925676,9197,20128,, -13,083,13083,GA,Dade County,2024,1,11074.83976,341,44596,9254.993838,12894.68569,0,,,,2,,,,2,,,,2,,,,2,11428.38137,9515.224141,13341.5386,,,,,2,,0.173,,,0.144,0.204,4.250431411,,,3.38166362,5.188888656,5.712899166,,,4.565843474,6.861068296,0.077735125,81,1042,0.06147744,0.093992809,0,,,,,,,,,,,,,0.076844262,0.060134342,0.093554182,,,,,,,0.19,,,0.15,0.235,0.352,,,0.276,0.428,,,0.114,,,0.262,,,0.21,0.315,0.696634053,11321,16251,,,0.169749889,,,0.134364009,0.207606938,0.344827586,10,29,0.246908102,0.441557488,189.9,31,16326,,,19.08775409,77,4034,15.06375703,23.85641758,,,,,,,,,,,,,19.86935221,15.57440036,24.98272732,,,,,,,0.160712813,1948,12121,0.140457493,0.180968132,0.00030626,5,16326,,,3265.2,0.000310926,5,16081,,,3216.2,0.000373111,6,16081,,,2680.166667,2398,,,,,,,,,2423,0.46,,,,,,,,,0.46,0.38,,,,,,,,,0.39,0.864441296,9763,11294,0.833284345,0.895598248,0.559904787,2117,3781,0.459298971,0.660510604,0.026164964,210,8026,,,0.142,429,,0.083617021,0.200382979,,,,,,,,,,,,,0.047838413,0.012990281,0.082686544,3.820628587,109163,28572,3.339669317,4.301587858,0.115969582,366,3156,0.05820766,0.173731504,9.187798604,15,16326,,,77.76817677,63,81010,59.75920232,99.49928069,,,,,,,,,,,,,80.66862387,61.70510535,103.6222221,,,,8.7,,,,,0,,,,,0.1226645,755,6155,0.085703468,0.159625532,0.078977365,0.047206607,0.110748123,0.027619821,0.00967615,0.045563493,0.017871649,0,0.035786346,0.791281755,5482,6928,0.746571568,0.835991943,,,,,,,,,,,,,0.753314394,0.596844263,0.909784525,0.464,,6928,0.383171694,0.544828306,73.89473835,,,72.51898773,75.27048896,,,,,,,,,,,,,73.35952403,71.94999681,74.76905126,,,,549.9842832,341,44596,487.2972996,612.6712667,,,,,,,,,,,,,569.57643,503.9830773,635.1697827,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.127,,,0.108,0.148,0.182,,,0.156,0.207,0.101,,,0.086,0.118,113.2,16,14138,,,0.114,1850,,,,,,16633,,,32.99037094,16,48499,18.85684747,53.57429555,,,,,,,,,,,,,33.21376378,18.58949146,54.78105237,,,,0.349,,,0.331,0.367,0.190322581,1711,8990,0.162918325,0.217726836,0.077531165,255,3289,0.053701377,0.101360952,0.000746222,12,16081,,,1340.083333,0.825,129.525,157,,,,,,,,3.128239237,,,,,,,,,3.134812546,3.147411987,,,,,,,,,3.153745083,0.014071359,,,,,1372.58,,,,,0.724187302,39453,54479,0.566016197,0.882358407,59708,,,51781.02128,67634.97872,,,,,,,,,,86026,63519.95745,108532.0426,57917,48016.91489,67817.08511,,,,,,,,,,,,,,,,0.196690561,,59708,,,4.728132388,4,846,,,,,,,,,,,,,,,,,,,,,,,,,,17.57146899,14,81010,9.356067196,30.04774712,17.28181706,,,,,,,,,,,,,18.81103068,10.01608159,32.16743536,,,,14.81298605,12,81010,7.65408605,25.87530558,,,,,,,,,,,,,15.86923748,8.199866578,27.72036426,,,,17.61633387,20,113531,10.76051438,27.20699888,,,,,,,,,,,,,17.91303692,10.78481839,27.97342608,,,,,,1300,,,,,0.574275782,7434,12945,,,0.524,,,,,26.71572699,,,,,0.763747119,4639,6074,0.718656526,0.808837712,0.080823293,483,5976,0.049674888,0.111971699,0.841126111,5109,6074,0.801384789,0.880867434,16081,,,,,0.191157266,3074,16081,,,0.211554008,3402,16081,,,0.013991667,225,16081,,,0.007213482,116,16081,,,0.00982526,158,16081,,,0.000870593,14,16081,,,0.029164853,469,16081,,,0.92376096,14855,16081,,,0.007087126,109,15380,0,0.01620087,0.503140352,8091,16081,,,0.945849486,15371,16251,, -13,085,13085,GA,Dawson County,2024,1,8469.601741,425,75476,7173.870832,9765.33265,0,,,,2,,,,2,,,,2,,,,2,8713.843903,7339.63683,10088.05098,,,,,2,,0.139,,,0.113,0.17,3.562097469,,,2.742623571,4.417192956,4.851401237,,,3.817714204,5.93513724,0.066826923,139,2080,0.056094909,0.077558937,0,,,,,,,,,,0.060773481,0.025967088,0.095579873,0.070351759,0.058507577,0.082195941,,,,,,,0.147,,,0.108,0.19,0.325,,,0.25,0.402,8.8,0.002594399,0.097,,,0.214,,,0.168,0.262,0.892305396,23912,26798,,,0.178920159,,,0.142315909,0.218014727,0.269230769,7,26,0.16570611,0.378587417,263.2,75,28497,,,18.05197382,91,5041,14.53432325,22.16382363,,,,,,,,,,,,,17.78478163,14.0803791,22.16514434,,,,,,,0.152851109,3474,22728,0.133787279,0.171914939,0.000666737,19,28497,,,1499.842105,0.00046453,14,30138,,,2152.714286,0.001061783,32,30138,,,941.8125,2306,,,,,,,,,2340,0.43,,,,,,,,,0.43,0.45,,,,,,,,0.33,0.46,0.879973441,17229,19579,0.85612569,0.903821192,0.701464036,4408,6284,0.605255848,0.797672223,0.024577344,330,13427,,,0.111,651,,0.066914894,0.155085106,,,,,,,,,,,,,0.170645447,0.081914648,0.259376245,3.754788018,160566,42763,3.204229965,4.30534607,0.214010636,1167,5453,0.101856876,0.326164397,10.87833807,31,28497,,,97.57584998,128,131180,80.6716964,114.4800036,,,,,,,,,,,,,102.9064806,84.72010144,121.0928598,,,,9.1,,,,,0,,,,,0.111869748,1065,9520,0.075916614,0.147822882,0.080705505,0.043688523,0.117722488,0.037815126,0.013176712,0.06245354,0.011029412,0.000123168,0.021935656,0.743248298,9935,13367,0.705251921,0.781244675,,,,,,,,,,0.534653465,0.395541482,0.673765449,0.740052791,0.686693019,0.793412564,0.522,,13367,0.451048834,0.592951166,77.28216235,,,76.20027557,78.36404914,,,,,,,,,,,,,77.01255309,75.90280666,78.12229951,,,,395.4376811,425,75476,354.7842587,436.0911035,,,,,,,,,,,,,410.3603912,366.8457279,453.8750544,,,,63.15523557,15,23751,35.34750593,104.1649567,,,,,,,,,,,,,58.9217323,30.44571889,102.9244086,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.105,,,0.087,0.126,0.157,,,0.131,0.182,0.09,,,0.075,0.106,167.5,41,24483,,,0.097,2550,,,,0.002594399,57.9329264,22330,,,22.0269708,18,81718,13.05457889,34.81211027,,,,,,,,,,,,,24.34241666,14.42685886,38.47151297,,,,0.323,,,0.304,0.342,0.175126605,2974,16982,0.150105328,0.200147881,0.089223639,539,6041,0.063010873,0.115436404,0.000995421,30,30138,,,1004.6,0.975,243.75,250,,,,,,,,3.122336717,,,,,,,,2.749447755,3.171606717,3.280896177,,,,,,,,2.817235586,3.324281374,0.024462791,,,,,3136.463,,,,,0.698200864,47190,67588,0.57590792,0.820493809,84551,,,77889.38298,91212.61702,,,,32847,27393.55319,38300.44681,,,,80865,64104.31915,97625.68085,84592,75814.29787,93369.70213,,,,,,,,,,,76.21979531,,,,,0.177490509,,84551,,,13.87818042,18,1297,,,,,,,,,,,,,,,,,,,,,,,,,,28.46612341,37,131180,19.71361798,39.77855423,28.20551913,,,,,,,,,,,,,30.22990284,20.80887415,42.45402294,,,,22.10702851,29,131180,14.80542395,31.74938058,,,,,,,,,,,,,24.26250356,16.24897942,34.84500229,,,,17.40634265,31,178096,11.82676533,24.70691397,,,,,,,,,,,,,17.16759249,11.40774053,24.81195106,,,,29.09090909,,2200,,,53,11,0.80244511,16081,20040,,,0.63,,,,,19.43319416,,,,,0.801991685,8295,10343,0.773819258,0.830164112,0.071806651,719,10013,0.042424164,0.101189138,0.914918302,9463,10343,0.893168215,0.93666839,30138,,,,,0.198121972,5971,30138,,,0.202136837,6092,30138,,,0.014732232,444,30138,,,0.005773442,174,30138,,,0.011679607,352,30138,,,0.000663614,20,30138,,,0.067920897,2047,30138,,,0.886986529,26732,30138,,,0.009875879,257,26023,0.003209023,0.016542735,0.498938218,15037,30138,,,0.694007015,18598,26798,, -13,087,13087,GA,Decatur County,2024,1,13352.36715,620,76049,11827.68515,14877.04914,0,,,,2,,,,2,15882.6925,13382.95047,18382.43453,,,,,2,11805.31503,9735.156782,13875.47329,,,,,2,,0.226,,,0.195,0.258,4.610775422,,,3.72425877,5.573685018,5.7112181,,,4.602232505,6.8563725,0.13367917,335,2506,0.120355104,0.147003236,0,,,,,,,0.178343949,0.157173237,0.199514661,0.072727273,0.033102527,0.112352019,0.091856061,0.074435771,0.10927635,,,,,,,0.21,,,0.173,0.248,0.382,,,0.304,0.461,7.5,0.059520509,0.127,,,0.315,,,0.264,0.369,0.551196922,16187,29367,,,0.144298076,,,0.113254832,0.177696316,0.279069767,12,43,0.199251669,0.361901334,802.4,233,29038,,,37.03099511,227,6130,32.2136415,41.84834871,,,,,,,50.25125628,41.92712392,58.57538864,,,,30.6122449,24.19770926,38.20546705,,,,,,,0.170551223,3849,22568,0.149104415,0.191998032,0.000344376,10,29038,,,2903.8,0.000310538,9,28982,,,3220.222222,0.000655579,19,28982,,,1525.368421,3962,,,,,,,5730,,3327,0.38,,,,,,,0.37,,0.39,0.36,,,,,,,0.25,0.25,0.38,0.823144785,15862,19270,0.796580744,0.849708825,0.499194198,3717,7446,0.417077294,0.581311102,0.032394485,383,11823,,,0.324,2248,,0.209617021,0.438382979,,,,,,,0.465487929,0.354490173,0.576485686,0.781560284,0.591348466,0.971772101,0.270653301,0.17481431,0.366492292,5.869979657,100993,17205,5.003899878,6.736059437,0.412572561,2914,7063,0.305465142,0.519679981,9.986913699,29,29038,,,91.72276056,124,135190,75.57834433,107.8671768,,,,,,,98.75149891,74.59582102,128.2370354,,,,97.03665,74.89083784,123.6811761,,,,9.3,,,,,1,,,,,0.195663397,1895,9685,0.155910833,0.235415961,0.125410734,0.092426885,0.158394582,0.066081569,0.039159682,0.093003457,0.014971606,0,0.03016504,0.822142726,8963,10902,0.780193954,0.864091498,,,,,,,0.814137555,0.748265289,0.88000982,,,,0.793128132,0.743840782,0.842415482,0.233,,10902,0.182379227,0.283620773,71.85958129,,,70.78332416,72.93583842,,,,,,,69.91394853,68.19361444,71.63428263,88.38882739,63.80590791,112.9717469,72.81698917,71.34778568,74.28619266,,,,653.9793929,620,76049,600.5715093,707.3872765,,,,,,,785.0135761,691.4420682,878.5850841,,,,598.1769446,528.4252905,667.9285986,,,,54.93939498,16,29123,31.40261118,89.21813549,,,,,,,74.87832273,35.90706624,137.7039015,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.141,,,0.123,0.162,0.183,,,0.159,0.209,0.139,,,0.12,0.159,628.5,151,24026,,,0.127,3690,,,,0.059520509,1657.170004,27842,,,15.87320969,13,81899,8.45181564,27.14367198,,,,,,,,,,,,,27.31087221,13.63348901,48.86669442,,,,0.41,,,0.397,0.422,0.215194658,3416,15874,0.186598913,0.243790403,0.066355405,469,7068,0.044908596,0.087802213,0.000793596,23,28982,,,1260.086957,0.89,335.53,377,,,,,,,,2.88760613,,,,,,,2.716910474,2.663825521,3.220305238,2.967786748,,,,,,,2.814917948,2.951855283,3.21872702,0.023736694,,,,,-13276.01,,,,,0.805336184,36915,45838,0.700535609,0.910136759,46455,,,40235.42553,52674.57447,,,,,,,34914,28462.08511,41365.91489,57800,4240.170213,111359.8298,58101,45347.29787,70854.70213,,,,,,,,,,,36.98376916,,,,,0.252803789,,46455,,,7.110208228,14,1969,,,10.57160678,20,189186,6.457412063,16.32698926,,,,,,,21.51190747,12.53147884,34.44264776,,,,,,,,,,17.14121905,23,135190,10.74231072,25.95201163,17.01309268,,,,,,,,,,,,,22.11786214,12.37919954,36.48005003,,,,22.93069014,31,135190,15.58029143,32.54828427,,,,,,,28.21471397,16.12714688,45.81892784,,,,22.39307308,12.53323301,36.93396861,,,,29.07191864,55,189186,21.90094773,37.84109817,,,,,,,34.16597069,22.51558997,49.70969358,,,,26.43460607,17.10708326,39.02269326,,,,,,2500,,,,,0.594275492,11627,19565,,,0.465,,,,,39.27263733,,,,,0.606410879,6243,10295,0.561586144,0.651235614,0.161262707,1507,9345,0.123530142,0.198995273,0.667799903,6875,10295,0.622859572,0.712740234,28982,,,,,0.242736871,7035,28982,,,0.172796908,5008,28982,,,0.417327997,12095,28982,,,0.007832448,227,28982,,,0.006831827,198,28982,,,0.001414671,41,28982,,,0.071665172,2077,28982,,,0.488889656,14169,28982,,,0.004497033,122,27129,0,0.009770836,0.513767166,14890,28982,,,0.528143835,15510,29367,, -13,089,13089,GA,DeKalb County,2024,1,7985.907688,9147,2166439,7756.518957,8215.296418,0,,,,2,3770.952008,3189.420573,4352.483443,,10665.5737,10291.98147,11039.16593,,6975.041475,6252.070203,7698.012747,,4700.720483,4385.596043,5015.844924,,,,,2,,0.155,,,0.132,0.181,3.26111887,,,2.64631907,3.952302662,4.813310905,,,4.084967398,5.604588138,0.105433757,7709,73117,0.103207666,0.107659848,0,,,,0.103574848,0.096030095,0.111119602,0.135937632,0.132373984,0.13950128,0.077839047,0.073144676,0.082533419,0.062338132,0.058660546,0.066015717,,,,0.099300699,0.083799899,0.1148015,0.132,,,0.105,0.161,0.329,,,0.282,0.377,8.1,0.087224734,0.087,,,0.225,,,0.186,0.264,0.884759191,676294,764382,,,0.149232773,,,0.123053369,0.177622379,0.23699422,123,519,0.215073156,0.259454947,851,6448,757718,,,21.36365117,3279,153485,20.63240965,22.09489269,,,,12.44988394,10.2035187,14.69624918,20.84208375,19.8887151,21.79545241,62.44033915,58.77031493,66.11036338,3.730576036,3.081747254,4.379404818,,,,16.70582093,12.86551776,21.33296038,0.141730859,89292,630011,0.131007454,0.152454263,0.001061081,804,757718,,,942.4353234,0.00062269,475,762820,,,1605.936842,0.003779398,2883,762820,,,264.5924384,2678,,,,,,1056,3670,1179,1921,0.38,,,,,,0.27,0.34,0.24,0.41,0.47,,,,,,0.49,0.31,0.34,0.57,0.911171369,476149,522568,0.906458127,0.915884611,0.735424883,172855,235041,0.717068149,0.753781617,0.031337183,12704,405397,,,0.192,32033,,0.140765957,0.243234043,0.405405405,0.238668065,0.572142746,0.216716765,0.167370014,0.266063516,0.25517642,0.230748253,0.279604587,0.326933489,0.284122218,0.369744759,0.024756271,0.01674972,0.032762822,4.915338216,159719,32494,4.724079929,5.106596503,0.355612836,61393,172640,0.331659271,0.379566401,7.324624729,555,757718,,,67.25022335,2548,3788835,64.63896351,69.8614832,,,,31.62659263,24.95921232,39.52781436,76.24641226,72.44933201,80.04349251,59.87469523,51.44914014,68.30025031,64.58132924,59.85413473,69.30852376,,,,9.6,,,,,0,,,,,0.176920367,50210,283800,0.166851115,0.186989618,0.155681431,0.14680027,0.164562593,0.024400987,0.020972674,0.0278293,0.006395349,0.004632023,0.008158674,0.649831899,246053,378641,0.63937749,0.660286308,0.377127892,0.307540799,0.446714985,0.641902176,0.608928146,0.674876207,0.685792484,0.66939387,0.702191098,0.58601716,0.551158908,0.620875412,0.655821457,0.637932071,0.673710843,0.504,,378641,0.487793993,0.520206007,78.87445975,,,78.63265462,79.11626489,,,,88.9777661,86.73532447,91.22020772,76.36508817,76.00335001,76.72682633,83.30102205,81.60953383,84.99251027,81.87267729,81.51602738,82.2293272,,,,368.8406791,9147,2166439,361.168587,376.5127712,,,,199.686526,175.2123477,224.1607043,468.3135681,456.5209573,480.1061789,300.9983966,270.4433636,331.5534295,249.4232775,238.3718741,260.4746809,,,,68.18473868,520,762634,62.32414544,74.04533192,,,,30.5150948,17.07906692,50.33000828,98.34766143,88.7335958,107.9617271,54.62192524,41.68228333,70.30924513,24.00701005,17.15095995,32.69073387,,,,6.962552757,518,74398,6.362955427,7.562150087,,,,3.049245312,1.862558254,4.709312075,10.55757176,9.501594656,11.61354886,4.930886751,3.771737658,6.333930314,2.746432623,2.010733859,3.663356243,,,,,,,0.102,,,0.088,0.117,0.149,,,0.128,0.169,0.118,,,0.102,0.135,1442.9,9140,633432,,,0.087,65790,,,,0.087224734,60350.18269,691893,,,15.88399245,362,2279024,14.24769799,17.5202869,,,,,,,16.07267473,13.82250027,18.32284919,7.220961419,3.947766802,12.11554628,21.93434022,18.388477,25.48020345,,,,0.398,,,0.384,0.411,0.174405905,81281,466045,0.160108033,0.188703777,0.052135935,8941,171494,0.040221041,0.064050828,0.001583598,1208,762820,,,631.4735099,0.751382621,5361.115,7135,,,0.077160666,2773,35938,0.05825436,0.096066971,2.776304752,,,,,,2.892265691,2.531622924,2.552527765,3.913800461,2.559619942,,,,,,2.982717584,2.264385482,2.376009054,3.691074218,0.339757521,,,,,-3822.616,,,,,0.90078595,55701,61836,0.862937231,0.938634669,76736,,,73310.46809,80161.53192,39040,30831.82979,47248.17021,89323,77179.34043,101466.6596,59697,57971.7234,61422.2766,55948,51249.95745,60646.04255,119797,115321.766,124272.234,,,,,,,,,,,72.39182937,,,,,0.27208872,,76736,,,16.24080111,832,51229,,,14.66557827,772,5264027,13.63103988,15.70011667,,,,3.876142344,2.06388255,6.628321457,23.72165086,21.9254141,25.51788762,11.73054279,8.786981517,15.34383879,2.202262242,1.525130622,3.077440744,,,,10.79701146,416,3788835,9.742276341,11.85174659,10.9796283,,,,6.949293439,3.972121643,11.28521717,8.664222163,7.35895215,9.969492175,11.67207774,7.930610531,16.56758266,15.20187457,12.89975796,17.50399117,,,,20.8243431,789,3788835,19.37126526,22.27742095,,,,5.750289568,3.143736816,9.648008807,29.4845713,27.12334573,31.84579687,15.43162248,11.45364765,20.34467043,10.89866226,8.9567188,12.84060571,,,,12.55692648,661,5264027,11.59964712,13.51420583,,,,9.243108666,6.280243893,13.11985494,16.64056105,15.13612023,18.14500186,12.61586678,9.555134295,16.34531872,6.542014306,5.266142989,7.817885622,,,,9.394409938,,64400,,,470,135,0.70989011,370804,522340,,,0.632,,,,,225.5717316,,,,,0.578530538,164725,284730,0.570605732,0.586455343,0.1703788,47313,277693,0.160951573,0.179806026,0.907761739,258467,284730,0.901530317,0.913993161,762820,,,,,0.222325057,169594,762820,,,0.140377809,107083,762820,,,0.533404997,406892,762820,,,0.00483076,3685,762820,,,0.065639338,50071,762820,,,0.001223093,933,762820,,,0.086300831,65832,762820,,,0.292847592,223390,762820,,,0.03945077,28045,710886,0.036435926,0.042465614,0.52605595,401286,762820,,,0.001579053,1207,764382,, -13,091,13091,GA,Dodge County,2024,1,13199.26342,519,55882,11364.19655,15034.3303,0,,,,2,,,,2,18025.15681,13761.35013,22288.96349,,,,,2,11696.09962,9721.504847,13670.69439,,,,,2,,0.22,,,0.191,0.251,4.529446184,,,3.691620699,5.438343301,5.740598036,,,4.709232751,6.834193692,0.094744634,128,1351,0.079127862,0.110361405,0,,,,,,,0.13225058,0.100268007,0.164233153,,,,0.078883495,0.060478199,0.097288792,,,,,,,0.222,,,0.186,0.263,0.376,,,0.304,0.452,7.8,0.001543107,0.143,,,0.304,,,0.258,0.356,0.516235885,10286,19925,,,0.145773624,,,0.115204994,0.17984484,0.32,8,25,0.213480444,0.427129614,475.7,94,19759,,,28.1205165,98,3485,22.82959457,34.26990252,,,,,,,33.55079217,23.49856237,46.44843848,,,,26.46775746,19.93913714,34.45142444,,,,,,,0.150731159,2144,14224,0.13047584,0.170986478,0.000303659,6,19759,,,3293.166667,0.0004545,9,19802,,,2200.222222,0.000404,8,19802,,,2475.25,2894,,,,,,,4700,,2757,0.38,,,,,,,0.31,,0.4,0.33,,,,,,,0.25,,0.34,0.865935744,12479,14411,0.835152157,0.89671933,0.510192196,2628,5151,0.42990603,0.590478362,0.037407569,258,6897,,,0.333,1211,,0.229340426,0.436659575,,,,,,,0.40356564,0.307226477,0.499904803,0.092827004,0,0.213222437,0.166743436,0.091306184,0.242180689,5.826440177,102557,17602,4.565640839,7.087239516,0.426886793,1629,3816,0.326383781,0.527389804,11.13416671,22,19759,,,99.75452563,102,102251,80.39527273,119.1137785,,,,,,,62.9535138,37.90212771,98.30970999,,,,124.1991427,98.779264,154.163884,,,,9.6,,,,,0,,,,,0.145418327,1095,7530,0.101428803,0.189407851,0.124324324,0.077416975,0.171231674,0.02124834,0.004809461,0.037687219,0.00185923,0,0.00440754,0.832677165,6345,7620,0.787576954,0.877777377,,,,,,,0.84891407,0.733803444,0.964024695,,,,0.869692533,0.796823619,0.942561447,0.376,,7620,0.306811494,0.445188506,72.0464707,,,70.72722732,73.36571407,,,,,,,69.07131638,66.14503601,71.99759674,,,,72.75321262,71.32955127,74.17687397,,,,667.1865222,519,55882,607.3599316,727.0131128,,,,,,,794.8725577,669.5897047,920.1554107,,,,639.5498215,568.7918815,710.3077614,,,,90.99698573,16,17583,52.01263979,147.7734038,,,,,,,180.8972504,86.74726296,332.6764841,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.141,,,0.123,0.161,0.185,,,0.162,0.209,0.138,,,0.121,0.158,461,79,17137,,,0.143,2870,,,,0.001543107,33.63356408,21796,,,29.59747435,18,60816,17.54133909,46.77676971,,,,,,,,,,,,,38.38182237,21.48201462,63.30497907,,,,0.382,,,0.369,0.395,0.184661768,1960,10614,0.158449002,0.210874533,0.052742616,200,3792,0.036061765,0.069423467,0.000908999,18,19802,,,1100.111111,0.91,210.21,231,,,,,,,,2.907689726,,,,,,,2.487903441,,3.195041851,2.694844488,,,,,,,2.377340092,,2.894926179,0.012464204,,,,,-8483.672,,,,,0.787941177,34827,44200,0.622693939,0.953188414,43783,,,37916.10638,49649.89362,,,,,,,35217,17745,52689,53629,7371.808511,99886.19149,50425,43230.78723,57619.21277,,,,,,,,,,,20.66543274,,,,,0.268231962,,43783,,,9.137055838,9,985,,,9.742790335,14,143696,5.326474137,16.34674669,,,,,,,,,,,,,,,,,,,13.49085252,16,102251,7.550727742,22.2511096,15.64776873,,,,,,,,,,,,,13.44068451,6.445330655,24.71789735,,,,18.58172536,19,102251,11.18741251,29.01766591,,,,,,,,,,,,,16.66086061,8.317041587,29.81088183,,,,25.74880303,37,143696,18.12953358,35.49133319,,,,,,,,,,,,,31.13425305,20.8510979,44.71398082,,,,,,1600,,,,,0.488498789,8070,16520,,,0.467,,,,,25.29536906,,,,,0.692947942,4579,6608,0.642346888,0.743548996,0.157379155,980,6227,0.107009515,0.207748795,0.684170702,4521,6608,0.627872553,0.740468852,19802,,,,,0.189071811,3744,19802,,,0.194121806,3844,19802,,,0.296182204,5865,19802,,,0.006059994,120,19802,,,0.005958994,118,19802,,,0.002171498,43,19802,,,0.043126957,854,19802,,,0.637056863,12615,19802,,,0.005621224,107,19035,0,0.012477818,0.472982527,9366,19802,,,0.68782936,13705,19925,, -13,093,13093,GA,Dooly County,2024,1,12582.31465,284,34097,10240.99601,14923.63329,0,,,,2,,,,2,13812.73068,10273.76681,17351.69455,,,,,2,13354.37444,9293.872827,17414.87605,,,,,2,,0.24,,,0.209,0.273,4.536667991,,,3.615501756,5.51489538,5.273146439,,,4.158818734,6.394761287,0.146478873,104,710,0.120470001,0.172487746,0,,,,,,,0.196531792,0.154660267,0.238403317,,,,0.111553785,0.072606523,0.150501047,,,,,,,0.221,,,0.183,0.261,0.411,,,0.329,0.496,5.3,0.251720408,0.138,,,0.326,,,0.273,0.381,0.313526053,3514,11208,,,0.1346817,,,0.105547292,0.167535064,0.285714286,6,21,0.169385198,0.406827936,652.3,71,10885,,,35.17994339,87,2473,28.17769249,43.3943302,,,,,,,43.9481268,33.6168347,56.45320743,30.12048193,14.44394186,55.39263868,22.85714286,13.06483208,37.118568,,,,,,,0.158292187,1090,6886,0.136845379,0.179738996,9.18695E-05,1,10885,,,10885,0.000378358,4,10572,,,2643,,0,10572,,,,3831,,,,,,,2292,,3311,0.42,,,,,,,0.4,,0.43,0.32,,,,,,,0.25,,0.34,0.828210822,7087,8557,0.779600327,0.876821317,0.45796309,1340,2926,0.358773943,0.557152236,0.039606035,189,4772,,,0.323,536,,0.196702128,0.449297872,,,,,,,0.634375,0.537299958,0.731450042,0.524590164,0.123370452,0.925809876,0.117431193,0.01587595,0.218986435,5.373719904,118066,21971,4.041431796,6.706008011,0.257550796,469,1821,0.172978049,0.342123543,6.430868167,7,10885,,,72.42803427,47,64892,53.21739531,96.31393136,,,,,,,75.95898215,48.66835313,113.0209444,,,,83.80397158,53.12452919,125.7471047,,,,9.6,,,,,0,,,,,0.134538153,670,4980,0.088815836,0.180260469,0.082793522,0.047258971,0.118328073,0.050803213,0.017141626,0.0844648,0.003012048,0,0.011156894,0.817016914,3188,3902,0.748280969,0.88575286,,,,,,,0.731382979,0.630960008,0.83180595,,,,0.847786537,0.775978308,0.919594766,0.368,,3902,0.266073674,0.469926326,74.4098309,,,72.59911053,76.22055127,,,,,,,73.30254698,70.44069727,76.1643967,,,,74.18231045,71.39819634,76.96642456,,,,567.5203677,284,34097,496.8947882,638.1459472,,,,,,,620.9713718,514.6931118,727.2496318,,,,578.7047253,463.7907281,693.6187225,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.143,,,0.125,0.163,0.177,,,0.154,0.201,0.149,,,0.128,0.17,586.8,57,9713,,,0.138,1600,,,,0.251720408,3755.165048,14918,,,,,,,,,,,,,,,,,,,,,,,,,,0.416,,,0.403,0.429,0.190448902,997,5235,0.163044646,0.217853157,0.058756418,103,1753,0.039692588,0.077820247,0.000851305,9,10572,,,1174.666667,0.875,85.75,98,,,,,,,,2.339536145,,,,,,,2.243298703,,,1.94860002,,,,,,,1.83708478,,,0.003600049,,,,,-19770.99,,,,,0.786684001,36912,46921,0.498825111,1.074542891,46191,,,39627.08511,52754.91489,,,,,,,34688,19833.70213,49542.29787,58409,11403.55319,105414.4468,81019,46976.95745,115061.0426,,,,,,,,,,,17.72225603,,,,,0.254248663,,46191,,,20.3562341,8,393,,,10.78865034,10,92690,5.173577189,19.8407121,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20.03328608,13,64892,10.66688111,34.25752931,,,,,,,,,,,,,,,,,,,21.57730068,20,92690,13.17997582,33.32439088,,,,,,,26.66844456,13.77997446,46.58440573,,,,,,,,,,,,900,,,,,0.379390019,4105,10820,,,0.366,,,,,12.6264516,,,,,0.702667019,2661,3787,0.64044302,0.764891017,0.108613218,401,3692,0.058455236,0.1587712,0.645365725,2444,3787,0.573896495,0.716834955,10572,,,,,0.159383277,1685,10572,,,0.230325388,2435,10572,,,0.472947408,5000,10572,,,0.005107832,54,10572,,,0.009364359,99,10572,,,0.000945895,10,10572,,,0.08210367,868,10572,,,0.421963678,4461,10572,,,0.007957069,86,10808,0,0.019539055,0.456015891,4821,10572,,,1,11208,11208,, -13,095,13095,GA,Dougherty County,2024,1,14358.75507,1927,242118,13436.35981,15281.15033,0,,,,2,,,,2,15507.52535,14383.4388,16631.6119,,,,,2,12348.48641,10542.30741,14154.6654,,,,,2,,0.244,,,0.209,0.281,4.497664632,,,3.581542511,5.42466377,5.652040044,,,4.649434706,6.662462654,0.147352173,1241,8422,0.139781899,0.154922446,0,,,,0.15625,0.067292414,0.245207586,0.16890166,0.159623255,0.178180066,0.068862275,0.041705357,0.096019194,0.084457478,0.071258139,0.097656817,,,,,,,0.21,,,0.168,0.256,0.416,,,0.345,0.488,5.2,0.245028,0.146,,,0.35,,,0.294,0.409,0.753188017,64616,85790,,,0.134932185,,,0.105920252,0.16664536,0.028169014,2,71,0.004367941,0.080671535,1330.7,1129,84844,,,31.05393994,787,25343,28.88431126,33.22356863,,,,,,,32.78852402,30.27937752,35.29767052,30.50108933,20.26775235,44.08256639,25.62704471,20.70926074,31.36101247,,,,,,,0.164817086,10619,64429,0.145753256,0.183880915,0.000777898,66,84844,,,1285.515152,0.000711135,59,82966,,,1406.20339,0.001687438,140,82966,,,592.6142857,3946,,,,,,,4785,,3387,0.48,,,,,,0.25,0.48,,0.48,0.38,,,,,,0.27,0.28,0.18,0.44,0.838939303,46317,55209,0.821278516,0.856600091,0.596692172,12555,21041,0.542312487,0.651071858,0.043196129,1571,36369,,,0.413,8106,,0.312914894,0.513085106,,,,,,,0.446202324,0.39689751,0.495507138,0.573818898,0.479831799,0.667805996,0.096679688,0.039966245,0.15339313,5.228943612,87909,16812,4.559550569,5.898336655,0.540878328,10949,20243,0.484075013,0.597681644,11.66847391,99,84844,,,88.63193204,390,440022,79.83534946,97.42851462,,,,,,,76.18481921,66.46476893,85.90486948,,,,138.7469649,116.3933016,161.1006282,,,,10.8,,,,,0,,,,,0.219512195,7515,34235,0.197080925,0.241943465,0.203143713,0.179235298,0.227052128,0.017087776,0.010867146,0.023308406,0.01139185,0.006071761,0.01671194,0.793272004,26128,32937,0.76582104,0.820722968,,,,,,,0.808942183,0.770682928,0.847201439,0.698548813,0.570931683,0.826165942,0.877491208,0.85851107,0.896471346,0.158,,32937,0.130492332,0.185507668,71.41195487,,,70.77256578,72.05134396,,,,,,,70.4403686,69.66215968,71.21857752,92.95993323,69.55745541,116.3624111,72.7864966,71.55808581,74.01490739,,,,663.7907507,1927,242118,632.7474888,694.8340126,,,,,,,707.9255166,669.1766106,746.6744226,,,,610.0510926,551.2465661,668.855619,,,,91.52988605,89,97236,73.50601438,112.6354009,,,,,,,107.1022157,84.92539607,133.2979784,,,,,,,,,,10.77136901,93,8634,8.693884958,13.19565474,,,,,,,12.68002505,10.06977019,15.76011337,,,,,,,,,,,,,0.145,,,0.125,0.168,0.187,,,0.161,0.215,0.161,,,0.139,0.185,1115,786,70493,,,0.146,12650,,,,0.245028,23171.07279,94565,,,23.52696151,61,259277,17.99626136,30.22136631,,,,,,,18.54164508,12.84062823,25.91009052,,,,40.47599773,26.19393159,59.75055727,,,,0.431,,,0.414,0.448,0.209939082,9615,45799,0.183726316,0.236151848,0.056564529,1115,19712,0.038692189,0.07443687,0.002314201,192,82966,,,432.1145833,0.86,705.2,820,,,0.154656957,807,5218,0.101135737,0.208178176,2.512048252,,,,,,,2.448857152,2.790514092,3.130922825,2.561977233,,,,,,,2.497558304,2.841869221,3.086641722,0.089627188,,,,,-24191.65,,,,,0.801643118,37957,47349,0.74072319,0.862563047,42629,,,38730.44681,46527.55319,10000,4665.702128,15334.29787,66875,37351.08511,96398.91489,39354,34939.53192,43768.46809,32054,14170.93617,49937.06383,65418,59395.02128,71440.97872,,,,,,,,,,,43.41634292,,,,,0.352037346,,42629,,,25.68247126,143,5568,,,18.18559283,113,621371,14.83250976,21.5386759,,,,,,,24.85243865,20.16524168,29.53963561,,,,,,,,,,10.61619965,46,440022,7.713746915,14.25175251,10.45402275,,,,,,,5.241795075,2.933792912,8.645543829,,,,25.2114808,15.98191616,37.82959992,,,,25.68053416,113,440022,20.94552413,30.41554418,,,,,,,26.79381353,21.34112292,33.21496315,,,,26.24942579,17.44255281,37.93772881,,,,16.89811723,105,621371,13.66590596,20.1303285,,,,,,,15.64783174,12.15115363,19.83735532,,,,20.73344564,14.18166147,29.26943895,,,,27.82051282,,7800,,,193,24,0.531952395,35311,66380,,,0.578,,,,,64.88816903,,,,,0.465673746,15852,34041,0.442657614,0.488689879,0.223908103,7290,32558,0.198224457,0.249591748,0.791398608,26940,34041,0.774425515,0.8083717,82966,,,,,0.240327363,19939,82966,,,0.173179375,14368,82966,,,0.70947135,58862,82966,,,0.003652098,303,82966,,,0.008919316,740,82966,,,0.002133404,177,82966,,,0.033097896,2746,82966,,,0.233083432,19338,82966,,,0.007004615,557,79519,0.00371144,0.01029779,0.542113637,44977,82966,,,0.143501574,12311,85790,, -13,097,13097,GA,Douglas County,2024,1,8416.094229,2040,420980,7887.219385,8944.969073,0,,,,2,,,,2,8586.871064,7817.340841,9356.401288,,4599.716944,3542.342533,5873.735849,,9881.123836,8874.914967,10887.33271,,,,,2,,0.183,,,0.155,0.212,3.894007226,,,3.11698211,4.758194835,5.100501472,,,4.134487255,6.123746987,0.108938548,1287,11814,0.103320283,0.114556812,0,,,,0.086294416,0.047082556,0.125506276,0.137879293,0.129153872,0.146604714,0.071263036,0.059125956,0.083400116,0.077910709,0.06893675,0.086884668,,,,0.114361702,0.082193214,0.14653019,0.156,,,0.124,0.19,0.358,,,0.288,0.429,7.7,0.149959136,0.078,,,0.267,,,0.22,0.317,0.764970153,110337,144237,,,0.148893872,,,0.116912736,0.184636004,0.106382979,10,94,0.063129143,0.159871384,541.8,790,145814,,,15.90945491,596,37462,14.63216865,17.18674118,,,,,,,13.31073334,11.71411018,14.90735649,22.18731592,18.09638999,26.27824186,16.66827247,14.18443251,19.15211244,,,,27.28613569,19.21195765,37.61034376,0.145656622,18151,124615,0.128975771,0.162337474,0.000432057,63,145814,,,2314.507937,0.000441228,65,147316,,,2266.4,0.001445872,213,147316,,,691.6244132,3954,,,,,,,4883,2615,3537,0.37,,,,,,0.29,0.42,0.18,0.36,0.39,,,,,,0.44,0.31,0.36,0.42,0.903093552,84805,93905,0.891407191,0.914779913,0.644289266,24358,37806,0.596393669,0.692184863,0.032477814,2441,75159,,,0.144,5239,,0.090382979,0.197617021,,,,0.07232267,0,0.257693735,0.172459398,0.131018072,0.213900724,0.221619731,0.116918564,0.326320897,0.111220044,0.067512415,0.154927673,4.024746321,139220,34591,3.646400259,4.403092383,0.323837715,11925,36824,0.276412211,0.371263218,5.829344233,85,145814,,,65.94840942,481,729358,60.05471169,71.84210716,,,,,,,49.62297943,42.24963904,56.99631982,29.20715841,18.30397068,44.21998883,101.2728827,89.32489679,113.2208687,,,,10.1,,,,,1,,,,,0.147519582,7345,49790,0.128713575,0.16632559,0.121756895,0.104324039,0.139189751,0.027415144,0.018098789,0.036731498,0.002912231,0.000639261,0.005185201,0.768968949,53318,69337,0.742904329,0.795033568,,,,0.582635187,0.413729175,0.751541198,0.708056172,0.661216605,0.754895739,0.565983802,0.486730068,0.645237536,0.764325482,0.729666004,0.79898496,0.543,,69337,0.504464943,0.581535058,76.05406249,,,75.58868898,76.51943601,,,,88.8831803,79.81391952,97.95244108,75.45516082,74.73453454,76.1757871,84.86121273,81.06428092,88.65814453,74.89473219,74.14817236,75.64129202,,,,428.4618019,2040,420980,409.6087258,447.3148781,,,,,,,417.978684,389.4817675,446.4756005,252.229117,196.2493084,319.2120906,496.4968747,464.2765563,528.7171931,,,,51.97662261,86,165459,41.57458902,64.19070609,,,,,,,75.12177945,57.85292394,95.92883527,,,,31.35849479,17.14398091,52.61422583,,,,6.876310273,82,11925,5.468933624,8.535314141,,,,,,,8.740964868,6.528170651,11.4626125,,,,5.437737901,3.321511578,8.398145161,,,,,,,0.116,,,0.1,0.134,0.162,,,0.139,0.186,0.126,,,0.107,0.145,595.1,718,120649,,,0.078,11230,,,,0.149959136,19855.03951,132403,,,18.17582842,80,440145,14.41230154,22.62139181,,,,,,,7.378678387,4.21755224,11.98251142,,,,38.07009974,29.05149676,49.00376476,,,,0.377,,,0.363,0.391,0.181757844,16157,88893,0.160311035,0.203204652,0.059904175,2263,37777,0.043223323,0.076585026,0.000753482,111,147316,,,1327.171171,0.88,1902.56,2162,,,0.095095095,855,8991,0.054494005,0.135696186,2.987298483,,,,,,3.602441581,2.893346315,2.880003479,3.23239843,2.819160764,,,,,,3.303577164,2.716384397,2.776547659,3.052053725,0.09426987,,,,,-11108.84,,,,,0.845155953,48015,56812,0.782155668,0.908156238,79242,,,74652.38298,83831.61702,,,,76867,56212.53192,97521.46809,72508,66294.38298,78721.61702,68494,59611.44681,77376.55319,79932,73782.7234,86081.2766,,,,,,,,,,,31.65033814,,,,,0.263484011,,79242,,,12.56398325,108,8596,,,6.816060218,69,1012315,5.303301695,8.626160444,,,,,,,10.95629492,8.182685093,14.36772312,,,,3.301159723,1.757728521,5.645083664,,,,14.41489778,100,729358,11.52122294,17.30857262,13.71068803,,,,,,,8.09196591,5.236693679,11.94533797,,,,24.54239901,18.81651659,31.46224791,,,,15.35597059,112,729358,12.51200504,18.19993615,,,,,,,14.25947685,10.58365857,18.79934254,,,,22.01584407,16.80040838,28.33875537,,,,14.81752221,150,1012315,12.44622479,17.18881963,,,,,,,15.38095248,12.05621147,19.33923853,13.79514214,7.541932578,23.14590444,15.49005716,11.84866635,19.89762645,,,,0,,16100,,,0,0,0.676857521,69097,102085,,,0.671,,,,,55.10406163,,,,,0.65876721,33302,50552,0.635319221,0.682215199,0.127805678,6235,48785,0.108949312,0.146662044,0.916442475,46328,50552,0.901593916,0.931291034,147316,,,,,0.251276168,37017,147316,,,0.123625404,18212,147316,,,0.516766678,76128,147316,,,0.005797062,854,147316,,,0.017330093,2553,147316,,,0.001846371,272,147316,,,0.116192403,17117,147316,,,0.322300361,47480,147316,,,0.019492533,2655,136206,0.014551307,0.02443376,0.522163241,76923,147316,,,0.154759181,22322,144237,, -13,099,13099,GA,Early County,2024,1,15375.52869,287,28097,12635.46053,18115.59685,0,,,,2,,,,2,16301.43129,12590.1076,20012.75498,,,,,2,16061.65576,11304.02161,20819.28991,,,,,2,,0.244,,,0.213,0.279,4.759262521,,,3.899793061,5.762856882,5.864016251,,,4.769375038,7.077525827,0.168057211,141,839,0.14275547,0.193358952,0,,,,,,,0.195612431,0.16236996,0.228854903,,,,0.116104869,0.077678794,0.154530944,,,,,,,0.227,,,0.189,0.267,0.427,,,0.346,0.514,7.8,0.026057291,0.131,,,0.332,,,0.281,0.388,0.602634973,6541,10854,,,0.125972899,,,0.099420935,0.157958278,0.105263158,2,19,0.021173544,0.243494433,772.2,82,10619,,,35.66878981,84,2355,28.45082367,44.16038886,,,,,,,47.06734251,36.32558127,59.99119176,,,,20.5811138,11.98925723,32.95235692,,,,,,,0.143014571,1168,8167,0.122759252,0.16326989,0.000470854,5,10619,,,2123.8,0.000378286,4,10574,,,2643.5,0.000851144,9,10574,,,1174.888889,4032,,,,,,,3990,,3295,0.35,,,,,,,0.33,,0.36,0.34,,,,,,,0.23,,0.37,0.797782317,5468,6854,0.751480923,0.844083711,0.428641732,871,2032,0.330820063,0.526463402,0.035932203,159,4425,,,0.358,909,,0.216212766,0.499787234,,,,,,,0.518700184,0.407134594,0.630265774,,,,0.110718492,0.027399258,0.194037727,4.552192832,93106,20453,3.607828092,5.496557573,0.438837921,1148,2616,0.315928386,0.561747455,13.18391562,14,10619,,,101.1889704,52,51389,75.57276304,132.6958722,,,,,,,79.74481659,49.36329834,121.8984231,,,,136.6963577,92.87854299,194.0295683,,,,9.3,,,,,0,,,,,0.20977354,880,4195,0.159647276,0.259899804,0.163995068,0.114581408,0.213408728,0.046483909,0.023424361,0.069543458,0.015494637,0,0.033460396,0.772748815,3261,4220,0.713897967,0.831599663,,,,,,,0.815393867,0.726518761,0.904268972,,,,0.900869565,0.850143266,0.951595864,0.254,,4220,0.18246101,0.32553899,70.12541858,,,68.34718985,71.90364732,,,,,,,69.10274195,66.71647177,71.48901213,,,,70.01385155,67.08500953,72.94269356,,,,772.2391138,287,28097,678.133196,866.3450315,,,,,,,869.0983441,724.2295685,1013.96712,,,,734.1415686,595.8916658,872.3914715,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.15,,,0.131,0.171,0.194,,,0.17,0.221,0.152,,,0.132,0.174,306.3,27,8815,,,0.131,1420,,,,0.026057291,286.8386563,11008,,,,,,,,,,,,,,,,,,,,,,,,,,0.416,,,0.402,0.43,0.180090656,1033,5736,0.15387789,0.206303422,0.056964495,146,2563,0.037900665,0.076028325,0.000756573,8,10574,,,1321.75,0.825,110.55,134,,,,,,,,2.635441987,,,,,,,2.446189832,,3.096762039,2.761673245,,,,,,,2.670306905,,2.976522462,0.002917863,,,,,-24346.85,,,,,0.863465018,34359,39792,0.656236092,1.070693944,43417,,,37270.10638,49563.89362,,,,,,,39807,34525.12766,45088.87234,53250,38033.48936,68466.51064,59450,52784.80851,66115.19149,,,,,,,,,,,34.04548299,,,,,0.270493125,,43417,,,11.8694362,8,674,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,19.45941739,10,51389,9.331547016,35.78656141,,,,,,,,,,,,,,,,,,,35.95978037,26,72303,23.49012242,52.68940996,,,,,,,35.44455653,18.87273357,60.61127115,,,,40.14699978,21.37658655,68.65259232,,,,,,1000,,,,,0.680708661,5187,7620,,,0.411,,,,,10.6704072,,,,,0.675796813,2714,4016,0.639419321,0.712174305,0.136509636,510,3736,0.088628836,0.184390436,0.573456175,2303,4016,0.510117863,0.636794488,10574,,,,,0.24257613,2565,10574,,,0.200208058,2117,10574,,,0.520143749,5500,10574,,,0.005390581,57,10574,,,0.008038585,85,10574,,,0.000756573,8,10574,,,0.022035181,233,10574,,,0.43105731,4558,10574,,,0.000594413,6,10094,0,0.011238265,0.531870626,5624,10574,,,1,10854,10854,, -13,101,13101,GA,Echols County,2024,1,7791.132225,56,11101,5177.150782,11260.35532,0,,,,2,,,,2,,,,2,,,,2,9755.354098,5873.36043,15234.19384,1,,,,2,,0.228,,,0.198,0.261,4.608757134,,,3.710102994,5.556376787,5.528390818,,,4.394525425,6.667385136,0.070422535,15,213,0.036061607,0.104783464,1,,,,,,,,,,,,,,,,,,,,,,0.211,,,0.174,0.251,0.384,,,0.301,0.467,5.8,0.183088008,0.148,,,0.319,,,0.268,0.373,0.002163917,8,3697,,,0.157285485,,,0.123929162,0.194496503,0.5,2,4,0.222237796,0.705426462,135.2,5,3699,,,16.12903226,15,930,9.027296917,26.60238588,,,,,,,,,,,,,,,,,,,,,,0.219458438,697,3176,0.190862694,0.248054183,,0,3699,,,,0,0,3686,,,-3686,,0,3686,,,,,,,,,,,,,,0.35,,,,,,,,,0.36,0.29,,,,,,,,,0.35,0.823866138,1871,2271,0.751238649,0.896493627,0.310728745,307,988,0.203271481,0.418186009,0.025093433,47,1873,,,0.302,282,,0.179276596,0.424723404,,,,,,,,,,0.250793651,0,0.507301224,0.10940919,0,0.232822332,4.938180334,108877,22048,2.346407376,7.529953292,0.187782805,166,884,0.014625836,0.360939775,0,0,3699,,,55.99959273,11,19643,27.95479493,100.1987401,,,,,,,,,,,,,83.65400703,40.11534797,153.8426974,,,,8.2,,,,,1,,,,,0.080267559,120,1495,0.028178382,0.132356736,0.055147059,0.001694809,0.108599308,0.030100334,0,0.070915561,0,0,0.015779455,0.842188322,1601,1901,0.769347625,0.915029019,,,,,,,,,,,,,,,,0.34,,1901,0.226501648,0.453498352,76.40520784,,,73.69669916,79.11371651,,,,,,,,,,,,,74.20367588,70.87494714,77.53240462,,,,434.6401204,56,11101,326.5150355,567.1110756,,,,,,,,,,,,,520.0430087,376.357704,700.4945199,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.147,,,0.128,0.168,0.182,,,0.158,0.208,0.132,,,0.114,0.152,,,,,,0.148,550,,,,0.183088008,738.5770247,4034,,,,,,,,,,,,,,,,,,,,,,,,,,0.367,,,0.354,0.379,0.273546643,607,2219,0.235418983,0.311674302,0.095712861,96,1003,0.065925627,0.125500096,0,0,3686,,,-3686,,,,,,,,,,,2.791925035,,,,,,,,2.573695731,3.165608907,2.541230349,,,,,,,,2.268424388,2.927898127,0.010308262,,,,,-7882.359,,,,,1.044619355,40479,38750,0.776586437,1.312652272,47195,,,40311.76596,54078.23404,,,,,,,24507,16534.74468,32479.25532,50938,8372.042553,93503.95745,61729,58091.38298,65366.61702,,,,,,,,,,,12.89213834,,,,,0.24883992,,47195,,,,,277,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,500,,,,,0.501217391,1441,2875,,,0.4,,,,,4.910149519,,,,,0.762836186,936,1227,0.65550168,0.870170692,0.066727605,73,1094,0.001297033,0.132158177,0.59005705,724,1227,0.496543803,0.683570296,3686,,,,,0.258817146,954,3686,,,0.138361367,510,3686,,,0.071079761,262,3686,,,0.034997287,129,3686,,,0.008952794,33,3686,,,0.002712968,10,3686,,,0.306294086,1129,3686,,,0.579218665,2135,3686,,,0.024134923,83,3439,0,0.059628947,0.486706457,1794,3686,,,1,3697,3697,, -13,103,13103,GA,Effingham County,2024,1,8916.302223,1007,188126,8128.199812,9704.404634,0,,,,2,,,,2,9217.838854,7102.031578,11333.64613,,,,,2,9316.201442,8391.384709,10241.01818,,,,,2,,0.15,,,0.125,0.175,3.649719291,,,2.84475967,4.482238944,4.951370273,,,3.932869453,5.975831489,0.088369545,484,5477,0.08085253,0.095886561,0,,,,,,,0.153395785,0.129225929,0.177565641,0.092753623,0.06214283,0.123364417,0.075397797,0.067300933,0.083494661,,,,,,,0.159,,,0.124,0.197,0.375,,,0.296,0.456,8.5,0.065348165,0.078,,,0.231,,,0.187,0.278,0.580879742,37623,64769,,,0.176136323,,,0.138713125,0.216902562,0.305555556,11,36,0.217782567,0.394911006,439,293,66741,,,18.15875559,272,14979,16.00072447,20.31678671,,,,,,,22.46220302,16.7758476,29.45619082,19.2513369,11.40956233,30.42541205,17.38185769,14.92317973,19.84053564,,,,,,,0.132456367,7703,58155,0.115775516,0.149137218,0.000224749,15,66741,,,4449.4,0.000159326,11,69041,,,6276.454546,0.000521429,36,69041,,,1917.805556,2275,,,,,,,2169,,2140,0.43,,,,,,,0.45,0.25,0.44,0.37,,,,,,0.31,0.28,0.13,0.38,0.901407791,38482,42691,0.883080627,0.919734955,0.633151581,11612,18340,0.576393344,0.689909819,0.025535958,860,33678,,,0.101,1812,,0.061680851,0.140319149,,,,,,,0.18852459,0.097589115,0.279460065,0.135670732,0.044731987,0.226609476,0.041955759,0.017787673,0.066123844,3.83370623,142219,37097,3.376385371,4.291027088,0.181707529,3135,17253,0.135003861,0.228411197,6.143150387,41,66741,,,72.10619047,230,318974,62.78728933,81.42509162,,,,,,,53.3167459,34.16104513,79.33109165,,,,80.61902447,69.41775947,91.82028947,,,,9.1,,,,,0,,,,,0.093449382,2040,21830,0.074567764,0.112330999,0.076905312,0.057687744,0.09612288,0.013742556,0.006800991,0.020684121,0.00618415,0.001438317,0.010929983,0.872918635,26789,30689,0.857144572,0.888692698,,,,,,,0.92350921,0.809473334,1,,,,0.791162344,0.75099006,0.831334628,0.524,,30689,0.480498399,0.567501601,75.55195461,,,74.83660727,76.26730196,,,,,,,74.25685254,72.39423731,76.11946778,82.89212253,75.98781318,89.79643188,75.21972958,74.41648521,76.02297394,,,,473.5567752,1007,188126,443.9542139,503.1593365,,,,,,,524.3872614,437.3639736,611.4105492,,,,485.6044992,452.1399308,519.0690677,,,,55.09938047,41,74411,39.54026672,74.74853122,,,,,,,89.17424648,42.76251735,163.9946143,,,,51.99725157,34.55179605,75.15050594,,,,7.769145394,42,5406,5.599316636,10.5016276,,,,,,,,,,,,,6.683168317,4.404250033,9.723659021,,,,,,,0.11,,,0.094,0.127,0.16,,,0.136,0.185,0.1,,,0.084,0.117,163.7,89,54356,,,0.078,4950,,,,0.065348165,3414.441621,52250,,,15.75187244,31,196802,10.70263309,22.35852558,,,,,,,,,,,,,18.54280076,12.32155644,26.7995099,,,,0.36,,,0.344,0.375,0.16092578,6522,40528,0.139478971,0.182372588,0.068767287,1268,18439,0.048511968,0.089022606,0.000564882,39,69041,,,1770.282051,0.91,787.15,865,,,0.09394387,318,3385,0.038301627,0.149586113,3.280355084,,,,,,,2.775239013,3.397113493,3.363988684,3.123531625,,,,,,,2.677572927,3.169428348,3.211581698,0.01850511,,,,,-411.4238,,,,,0.70592711,46390,65715,0.648458151,0.763396068,88111,,,80702.31915,95519.68085,,,,103182,76271.02128,130092.9787,57044,53530.29787,60557.70213,66706,35593.82979,97818.17021,84995,79539.17021,90450.82979,,,,,,,,,,,32.71225197,,,,,0.170319256,,88111,,,8.920187793,38,4260,,,5.289885739,23,434792,3.353333787,7.937425917,,,,,,,16.43142345,7.879506229,30.21797276,,,,3.841641622,2.045512369,6.569324172,,,,17.8636015,57,318974,13.4939726,23.19737242,17.86979503,,,,,,,,,,,,,20.25107827,14.98185919,26.77299944,,,,16.30226915,52,318974,12.17531435,21.37825708,,,,,,,22.21531079,10.65310503,40.85474751,,,,16.60994977,11.91958672,22.53327239,,,,15.40966715,67,434792,11.94228038,19.56973257,,,,,,,,,,,,,16.54861007,12.5006422,21.48974666,,,,,,7000,,,,,0.705396045,31570,44755,,,0.656,,,,,12.30040171,,,,,0.77028922,17578,22820,0.739734155,0.800844285,0.079635642,1766,22176,0.059322201,0.099949084,0.810736196,18501,22820,0.78733701,0.834135383,69041,,,,,0.262510682,18124,69041,,,0.125273388,8649,69041,,,0.151851798,10484,69041,,,0.004794253,331,69041,,,0.012441882,859,69041,,,0.00153532,106,69041,,,0.064671717,4465,69041,,,0.745672861,51482,69041,,,0.007100088,434,61126,0.002455308,0.011744868,0.502266769,34677,69041,,,0.742114283,48066,64769,, -13,105,13105,GA,Elbert County,2024,1,12231.10597,487,52857,10446.55346,14015.65849,0,,,,2,,,,2,14871.57841,11185.61678,18557.54003,,,,,2,11876.89444,9645.148653,14108.64023,,,,,2,,0.228,,,0.198,0.262,4.70959536,,,3.83851063,5.709549429,5.946321523,,,4.840270469,7.139211337,0.111111111,172,1548,0.09545539,0.126766832,0,,,,,,,0.16856492,0.133544482,0.203585359,,,,0.094179894,0.075557297,0.112802491,,,,,,,0.228,,,0.188,0.271,0.38,,,0.303,0.464,6.7,0.104005724,0.146,,,0.323,,,0.272,0.376,0.490146153,9625,19637,,,0.140915319,,,0.111235346,0.174960444,0.260869565,6,23,0.151021274,0.378411613,490.3,96,19579,,,24.49192288,94,3838,19.79196675,29.97191082,,,,,,,21.09704641,13.65289607,31.14340228,25.64102564,12.79990762,45.87887765,26.57342657,20.12645378,34.42895637,,,,,,,0.180455636,2709,15012,0.157817338,0.203093933,0.000408601,8,19579,,,2447.375,0.000252347,5,19814,,,3962.8,0.000353286,7,19814,,,2830.571429,3359,,,,,,,3328,,3390,0.36,,,,,,,0.35,,0.36,0.3,,,,,,,0.26,,0.31,0.817039006,11374,13921,0.775973952,0.858104059,0.469077919,2101,4479,0.379668784,0.558487054,0.037093496,292,7872,,,0.263,1135,,0.158148936,0.367851064,,,,,,,0.65192582,0.597754208,0.706097432,0.1075,0,0.291137644,0.15826087,0.085083636,0.231438104,4.921893604,103345,20997,3.771170828,6.072616379,0.339423753,1449,4269,0.254055738,0.424791768,11.74728025,23,19579,,,80.96577639,78,96337,64.00008637,101.0489532,,,,,,,84.47807243,53.55185131,126.758587,,,,85.34103591,63.73676755,111.9134145,,,,9.5,,,,,0,,,,,0.180636777,1390,7695,0.137998776,0.223274778,0.147712418,0.10549193,0.189932907,0.038986355,0.01524586,0.06272685,0.005068226,0,0.01033112,0.790047393,6668,8440,0.724993921,0.855100866,,,,,,,0.782639885,0.625582385,0.939697386,,,,0.811860068,0.754657771,0.869062365,0.331,,8440,0.263630785,0.398369215,72.61503431,,,71.3687823,73.86128632,,,,,,,69.98177106,67.62154034,72.34200177,,,,72.8587891,71.30403278,74.41354542,,,,637.4827472,487,52857,576.4922661,698.4732284,,,,,,,766.3673432,638.440638,894.2940483,,,,625.9136729,551.2433073,700.5840384,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.148,,,0.13,0.17,0.192,,,0.169,0.218,0.134,,,0.116,0.153,235.9,39,16529,,,0.146,2840,,,,0.104005724,2097.379428,20166,,,20.65120121,12,58108,10.67077702,36.07349255,,,,,,,,,,,,,,,,,,,0.38,,,0.367,0.393,0.220421692,2394,10861,0.190634458,0.250208926,0.077877326,339,4353,0.054047539,0.101707113,0.000302816,6,19814,,,3302.333333,0.875,165.375,189,,,,,,,,2.602793335,,,,,,,2.124954994,2.588889409,3.020561843,2.632622794,,,,,,,2.237862757,2.686515605,2.935294326,0.003411689,,,,,-7406.352,,,,,0.816847642,38516,47152,0.685927143,0.947768141,49220,,,43335.23404,55104.76596,,,,,,,37143,26977.21277,47308.78723,51250,33260.89362,69239.10638,51966,44918.34043,59013.65957,,,,,,,,,,,40.78138158,,,,,0.238602194,,49220,,,7.079646018,8,1130,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,24.47272404,33,134844,16.84589717,34.36880341,,,,,,,26.13969051,12.53499764,48.07182152,,,,25.7391223,16.13057091,38.96934048,,,,,,1700,,,,,0.620081136,9171,14790,,,0.564,,,,,27.43737486,,,,,0.703289724,5537,7873,0.669213352,0.737366097,0.148643175,1101,7407,0.106082304,0.191204047,0.736313985,5797,7873,0.692612901,0.780015068,19814,,,,,0.220803472,4375,19814,,,0.212930251,4219,19814,,,0.273745836,5424,19814,,,0.004340365,86,19814,,,0.012516403,248,19814,,,0.000656102,13,19814,,,0.066064399,1309,19814,,,0.632835369,12539,19814,,,0.02115146,392,18533,0.011436521,0.030866398,0.520995256,10323,19814,,,0.709731629,13937,19637,, -13,107,13107,GA,Emanuel County,2024,1,12658.99615,573,63406,11064.2345,14253.7578,0,,,,2,,,,2,14678.97467,11784.1659,17573.78344,,,,,2,12391.13005,10249.97497,14532.28513,,,,,2,,0.238,,,0.207,0.274,4.762716218,,,3.870224079,5.754391646,5.607522933,,,4.489328888,6.805412501,0.108511697,218,2009,0.094910968,0.122112427,0,,,,,,,0.165789474,0.139349222,0.192229725,,,,0.073543458,0.057732168,0.089354747,,,,,,,0.236,,,0.196,0.28,0.413,,,0.331,0.502,5.8,0.147094836,0.164,,,0.327,,,0.274,0.384,0.450193254,10250,22768,,,0.146940192,,,0.11526398,0.183667963,0.27027027,10,37,0.184074024,0.36059786,717.6,163,22716,,,37.75053512,194,5139,32.43828741,43.06278284,,,,,,,37.79069767,29.8719783,47.16450099,44.32132964,25.3334694,71.9750626,34.40278315,27.62825982,42.335585,,,,,,,0.183075952,3189,17419,0.160437654,0.205714249,0.000396197,9,22716,,,2524,0.000130839,3,22929,,,7643,0.001003097,23,22929,,,996.9130435,4445,,,,,,,7108,23077,3544,0.4,,,,,,,0.34,,0.41,0.3,,,,,,,0.22,,0.32,0.791331107,12086,15273,0.761659987,0.821002228,0.460032626,2820,6130,0.378501822,0.541563431,0.04072502,355,8717,,,0.28,1565,,0.175148936,0.384851064,,,,,,,0.300989166,0.176793448,0.425184885,0.346846847,0.147876477,0.545817216,0.255631033,0.169494224,0.341767842,4.779896197,90254,18882,3.351868462,6.207923933,0.288775689,1644,5693,0.192425645,0.385125734,7.923930269,18,22716,,,76.98365646,87,113011,61.66075297,94.95905583,,,,,,,77.51737681,52.30064862,110.6608754,,,,83.94669385,63.41243038,109.0117645,,,,9.3,,,,,0,,,,,0.152870091,1265,8275,0.113613003,0.192127178,0.11229611,0.079914885,0.144677336,0.029003021,0.010501115,0.047504928,0.021148036,0.006756081,0.035539992,0.774619289,6867,8865,0.680652791,0.868585788,,,,,,,0.728008635,0.665070356,0.790946914,,,,0.81880109,0.750167233,0.887434947,0.398,,8865,0.329243734,0.466756266,70.86292556,,,69.79160134,71.93424978,,,,,,,69.56600147,67.72173629,71.41026664,,,,70.87933032,69.44745132,72.31120932,,,,705.7693554,573,63406,645.7987699,765.7399408,,,,,,,812.3844371,694.3295449,930.4393292,,,,686.0060592,612.2865655,759.7255529,,,,52.08750701,13,24958,27.73440376,89.07122333,,,,,,,,,,,,,78.56076675,37.67294129,144.4760472,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.15,,,0.131,0.172,0.192,,,0.168,0.22,0.14,,,0.12,0.161,326.5,61,18686,,,0.164,3740,,,,0.147094836,3324.049092,22598,,,,,,,,,,,,,,,,,,,,,,,,,,0.377,,,0.365,0.388,0.234143896,2802,11967,0.203165172,0.265122619,0.073341502,419,5713,0.050703204,0.0959798,0.001090322,25,22929,,,917.16,0.89,230.51,259,,,,,,,,2.852226171,,,,,,,2.503634298,,3.173452293,2.600440018,,,,,,,2.27002793,,2.878836367,0.02474264,,,,,-9082.359,,,,,1.001982065,41453,41371,0.84425829,1.15970584,46975,,,42811.93617,51138.06383,,,,,,,42753,35137,50369,43594,15342.59575,71845.40426,51808,47911.82979,55704.17021,,,,,,,,,,,32.44889559,,,,,0.250005322,,46975,,,9.410288582,15,1594,,,9.472447807,15,158354,5.301657131,15.62336213,,,,,,,18.49249205,8.867868733,34.00835129,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.15791383,16,113011,8.092471046,22.99156507,,,,,,,,,,,,,,,,,,,21.4708817,34,158354,14.86920974,30.00340509,,,,,,,22.19099046,11.46640859,38.76319448,,,,23.44216179,14.69107799,35.49171467,,,,,,2300,,,,,0.57494705,9501,16525,,,0.501,,,,,21.39788323,,,,,0.565436847,4705,8321,0.527501738,0.603371956,0.097420453,744,7637,0.060938232,0.133902674,0.809277731,6734,8321,0.783554814,0.835000648,22929,,,,,0.24671813,5657,22929,,,0.163548345,3750,22929,,,0.344062105,7889,22929,,,0.004841031,111,22929,,,0.00754503,173,22929,,,0.000697806,16,22929,,,0.049587858,1137,22929,,,0.584063849,13392,22929,,,0.012569177,268,21322,0.003568197,0.021570157,0.494177679,11331,22929,,,0.681526704,15517,22768,, -13,109,13109,GA,Evans County,2024,1,13439.99787,238,29734,10872.23192,16007.76382,0,,,,2,,,,2,17530.11258,12634.16322,23695.61961,,,,,2,11943.41707,8582.257711,15304.57643,,,,,2,,0.244,,,0.212,0.278,4.749138428,,,3.84132097,5.728860892,5.767285507,,,4.676161853,6.958882266,0.116004297,108,931,0.095433868,0.136574725,0,,,,,,,0.155797101,0.113010811,0.198583392,0.076923077,0.036747697,0.117098457,0.108225108,0.079896404,0.136553813,,,,,,,0.23,,,0.191,0.273,0.418,,,0.34,0.505,8.1,0,0.131,,,0.33,,,0.278,0.386,0.729534064,7860,10774,,,0.136884335,,,0.107479709,0.171432322,0.315789474,6,19,0.192486042,0.440144871,965.1,103,10672,,,40.79207921,103,2525,32.91412774,48.67003068,,,,,,,44.47632712,30.21950643,63.13059613,49.58677686,31.77118358,73.78119338,36.07843137,26.4139462,48.12357154,,,,,,,0.182035642,1522,8361,0.160588833,0.20348245,0.000374813,4,10672,,,2668,0.000280505,3,10695,,,3565,0.000187003,2,10695,,,5347.5,3400,,,,,,,,,3442,0.38,,,,,,,0.28,,0.41,0.45,,,,,,,0.35,,0.48,0.790250896,5512,6975,0.758430678,0.822071114,0.440029985,1174,2668,0.351864547,0.528195423,0.029108911,147,5050,,,0.307,804,,0.183085106,0.430914894,,,,,,,0.465384615,0.297300589,0.633468642,0.480633803,0.302028445,0.65923916,0.084786054,0.018332321,0.151239787,5.089052123,101150,19876,3.303149833,6.874954414,0.321876119,899,2793,0.208098881,0.435653357,12.1814093,13,10672,,,95.39842873,51,53460,71.03039626,125.4313157,,,,,,,81.45873802,43.37334727,139.2969229,,,,103.5438725,70.35303777,146.9722619,,,,9,,,,,0,,,,,0.179775281,720,4005,0.129678889,0.229871673,0.141131105,0.094499813,0.187762398,0.047191011,0.01726716,0.077114863,0.003745318,0,0.012588979,0.770764899,3285,4262,0.70512755,0.836402248,,,,,,,0.682382134,0.553910565,0.810853703,,,,0.855077574,0.786560447,0.923594701,0.366,,4262,0.285656149,0.446343851,71.40825435,,,69.57784924,73.23865946,,,,,,,68.94742494,65.41271052,72.48213936,,,,72.17474908,69.7871928,74.56230536,,,,652.8110905,238,29734,567.1706048,738.4515763,,,,,,,818.021797,647.6355602,1019.499232,,,,604.3439372,499.3304967,709.3573777,,,,106.1831251,13,12243,56.53804207,181.5763777,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.153,,,0.133,0.174,0.192,,,0.167,0.219,0.145,,,0.126,0.167,509.9,45,8825,,,0.131,1410,,,,0,0,11000,,,,,,,,,,,,,,,,,,,,,,,,,,0.397,,,0.383,0.41,0.229177534,1318,5751,0.1993903,0.258964768,0.079868709,219,2742,0.054847432,0.104889986,0.000748013,8,10695,,,1336.875,0.875,106.75,122,,,,,,,,2.234898822,,,,,,,1.957677711,2.298590369,2.65673699,2.492040625,,,,,,,2.117662289,2.541779512,2.866243507,0.008519644,,,,,-18216.78,,,,,0.8165186,40256,49302,0.684961142,0.948076058,45163,,,39254.40426,51071.59575,,,,146023,134052.1064,157993.8936,40774,16647.53192,64900.46809,,,,65345,54224.82979,76465.17021,,,,,,,,,,,31.87017308,,,,,0.26003587,,45163,,,11.5942029,8,690,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.70557426,10,53460,8.970049937,34.40021706,,,,,,,,,,,,,,,,,,,32.03545257,24,74917,20.52571894,47.66621407,,,,,,,,,,,,,23.76030603,11.3939903,43.69604876,,,,,,1200,,,,,0.570067114,4247,7450,,,0.461,,,,,12.28640597,,,,,0.62187021,2434,3914,0.579702376,0.664038043,0.147758716,534,3614,0.089885563,0.205631869,0.761369443,2980,3914,0.700244355,0.822494531,10695,,,,,0.249462366,2668,10695,,,0.170079476,1819,10695,,,0.296493689,3171,10695,,,0.006825619,73,10695,,,0.013090229,140,10695,,,0.004394577,47,10695,,,0.124824684,1335,10695,,,0.551098644,5894,10695,,,0.033916741,343,10113,0.009158537,0.058674945,0.509490416,5449,10695,,,1,10774,10774,, -13,111,13111,GA,Fannin County,2024,1,12237.65034,581,69169,10402.72968,14072.57101,0,,,,2,,,,2,,,,2,,,,2,12756.01342,10800.22622,14711.80061,,,,,2,,0.171,,,0.141,0.204,4.127501229,,,3.267129449,5.012349899,5.297791176,,,4.283147395,6.430028947,0.078216374,107,1368,0.06398731,0.092445439,0,,,,,,,,,,,,,0.081469649,0.06631665,0.096622647,,,,,,,0.191,,,0.15,0.237,0.329,,,0.259,0.405,8.2,0.004166368,0.124,,,0.25,,,0.202,0.303,0.856352937,21682,25319,,,0.140973925,,,0.112037497,0.173497867,0.130434783,3,23,0.042432852,0.254040702,100.7,26,25817,,,27.54885802,117,4247,22.55694808,32.54076795,,,,,,,,,,,,,27.59154203,22.36348694,32.81959712,,,,,,,0.182800515,3265,17861,0.161353707,0.204247324,0.000619747,16,25817,,,1613.5625,0.000271982,7,25737,,,3676.714286,0.00093251,24,25737,,,1072.375,2029,,,,,,,,,2028,0.41,,,,,,,,,0.41,0.42,,,,,,,,,0.42,0.878134757,17438,19858,0.850595392,0.905674121,0.501195912,2305,4599,0.395939653,0.606452172,0.026610879,318,11950,,,0.181,696,,0.099978723,0.262021277,,,,,,,,,,,,,0.201561193,0.116120955,0.287001432,4.151178595,106897,25751,3.474698486,4.827658704,0.342949515,1379,4021,0.210077995,0.475821036,14.33164194,37,25817,,,117.8627554,153,129812,99.1866229,136.5388878,,,,,,,,,,,,,124.8734942,105.0864638,144.6605245,,,,7.9,,,,,0,,,,,0.115883669,1295,11175,0.085346041,0.146421297,0.096435101,0.06444357,0.128426631,0.015212528,0.006179775,0.024245281,0.008501119,0,0.01899554,0.775821234,7534,9711,0.732709197,0.818933271,,,,,,,,,,,,,0.75725307,0.715411033,0.799095106,0.319,,9711,0.250460876,0.387539125,74.84349674,,,73.54382662,76.14316685,,,,,,,,,,,,,74.20151991,72.8414208,75.56161902,,,,514.9184524,581,69169,463.6475634,566.1893414,,,,,,,,,,,,,534.1111634,480.3159119,587.9064149,,,,64.66562483,12,18557,33.41367198,112.9578329,,,,,,,,,,,,,71.77892092,37.08921587,125.3833296,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.126,,,0.107,0.147,0.179,,,0.153,0.206,0.104,,,0.088,0.121,195.3,45,23047,,,0.124,3130,,,,0.004166368,98.66793639,23682,,,21.64888063,17,78526,12.61127075,34.66195504,,,,,,,,,,,,,22.98881662,13.39183284,36.80732237,,,,0.341,,,0.322,0.358,0.207245643,2866,13829,0.181032877,0.233458409,0.101670981,432,4249,0.073075237,0.130266726,0.001204492,31,25737,,,830.2258065,0.925,175.75,190,,,,,,,,3.298835367,,,,,,,,,3.334274271,3.019155168,,,,,,,,,2.997039742,0.023854395,,,,,1742.789,,,,,0.713822873,36794,51545,0.618907335,0.808738412,60604,,,53080.93617,68127.06383,,,,,,,,,,87589,7598.361702,167579.6383,55083,48520.2766,61645.7234,,,,,,,,,,,,,,,,0.193782589,,60604,,,9.287925697,9,969,,,,,,,,,,,,,,,,,,,,,,,,,,20.04606822,29,129812,12.56276423,30.34998819,22.33999938,,,,,,,,,,,,,21.32869503,13.36657962,32.29190059,,,,23.11034419,30,129812,15.59245218,32.99145333,,,,,,,,,,,,,24.48499886,16.51992591,34.95385834,,,,22.34449627,40,179015,15.96323573,30.42686198,,,,,,,,,,,,,23.63270057,16.88354777,32.1810306,,,,,,1800,,,,,0.695387497,14850,21355,,,0.398,,,,,15.67551946,,,,,0.777699303,8809,11327,0.737715321,0.817683284,0.115226721,1235,10718,0.082661774,0.147791669,0.863423678,9780,11327,0.823379555,0.903467801,25737,,,,,0.15176594,3906,25737,,,0.314799705,8102,25737,,,0.009091969,234,25737,,,0.005089948,131,25737,,,0.007265804,187,25737,,,0.000621673,16,25737,,,0.031083654,800,25737,,,0.933752963,24032,25737,,,0.002088367,51,24421,0,0.00710704,0.506352722,13032,25737,,,1,25319,25319,, -13,113,13113,GA,Fayette County,2024,1,6607.523843,1287,324120,5978.209727,7236.83796,0,,,,2,2403.057034,1313.773642,4031.921376,1,9539.632728,8046.499027,11032.76643,,3949.194723,2412.270734,6099.21095,1,5912.098363,5130.726151,6693.470576,,,,,2,,0.123,,,0.104,0.145,3.036129287,,,2.401119239,3.774564453,4.58552506,,,3.753518051,5.511699075,0.100798722,631,6260,0.093340679,0.108256765,0,,,,0.10738255,0.078681232,0.136083869,0.132222222,0.116573593,0.147870852,0.095867769,0.072407625,0.119327912,0.082788671,0.073260252,0.092317091,,,,0.120967742,0.063571637,0.178363847,0.113,,,0.088,0.141,0.293,,,0.235,0.354,9,0.058885187,0.059,,,0.193,,,0.158,0.232,0.811592865,96737,119194,,,0.157334636,,,0.127295974,0.191131828,0.049180328,3,61,0.013259107,0.111888756,361.6,436,120574,,,5.738369266,177,30845,4.892977662,6.583760869,,,,,,,7.936507937,6.150684639,10.07908453,12.07883026,8.547699188,16.57913825,3.603933785,2.743481377,4.648812007,,,,9.199632015,4.411581137,16.91845082,0.093502115,9041,96693,0.082778711,0.104225519,0.001119644,135,120574,,,893.1407407,0.001057117,129,122030,,,945.9689923,0.002532164,309,122030,,,394.9190939,2247,,,,,,1807,2454,,2208,0.48,,,,,,0.38,0.49,0.53,0.48,0.46,,,,,,0.47,0.38,0.38,0.48,0.953071913,77703,81529,0.944134806,0.96200902,0.783727484,19188,24483,0.731336386,0.836118583,0.026060108,1553,59593,,,0.078,2120,,0.052978723,0.103021277,,,,0.025396825,0,0.088109114,0.077067942,0.035630691,0.118505192,0.139855322,0.084356087,0.195354557,0.036971047,0.021582222,0.052359872,3.815096468,196157,51416,3.411203741,4.218989195,0.209248427,5688,27183,0.164429921,0.254066934,13.18692255,159,120574,,,58.59672968,338,576824,52.34973552,64.84372383,,,,,,,65.72438163,53.04805846,80.51680779,43.52307869,26.20373649,67.96667867,63.05676255,54.72424187,71.38928324,,,,9.9,,,,,0,,,,,0.11645011,4750,40790,0.101592054,0.131308167,0.103278284,0.087845627,0.118710942,0.010909537,0.005370817,0.016448256,0.004780584,0.001436555,0.008124612,0.739135257,39985,54097,0.718473383,0.759797131,,,,0.572750643,0.471816119,0.673685167,0.732646784,0.689533203,0.775760364,0.675249013,0.609674312,0.740823715,0.76170938,0.725927372,0.797491388,0.52,,54097,0.482967867,0.557032133,79.58964537,,,79.02677525,80.1525155,,,,86.66088844,83.13422776,90.18754911,76.57197118,75.31044663,77.83349573,88.69566946,83.63111868,93.76022025,80.03769417,79.3579661,80.71742223,,,,292.6492798,1287,324120,275.3004708,309.9980888,,,,152.2102951,100.3075436,221.4579881,376.1567011,336.8303253,415.483077,148.4095112,101.5119958,209.5099484,280.5103637,258.7359563,302.284771,,,,43.84263865,52,118606,32.74377957,57.49378762,,,,,,,73.78093769,46.23812084,111.7052263,,,,29.97460047,18.04666756,46.80905165,,,,6.456820016,40,6195,4.612846883,8.792356249,,,,,,,,,,,,,,,,,,,,,,0.09,,,0.077,0.104,0.137,,,0.119,0.157,0.095,,,0.081,0.109,237.1,244,102912,,,0.059,6970,,,,0.058885187,6275.217743,106567,,,15.10763477,53,350816,11.31665515,19.76115825,,,,,,,,,,,,,19.61750647,14.07786134,26.61336266,,,,0.352,,,0.338,0.366,0.110094396,7616,69177,0.095796523,0.124392268,0.054605872,1594,29191,0.040307999,0.068903744,0.001999508,244,122030,,,500.1229508,0.9,1576.8,1752,,,,,,,,3.49041225,,,,,,3.694006041,3.239467171,3.244165888,3.687109925,3.381669457,,,,,,4.053254039,3.092144216,3.03932017,3.545564197,0.126621207,,,,,842.2813,,,,,0.697052604,58344,83701,0.634165744,0.759939464,109358,,,101012.8085,117703.1915,,,,103086,70173.48936,135998.5106,104158,93823.02128,114492.9787,80174,62978.42553,97369.57447,107459,103450.8298,111467.1702,,,,,,,,,,,44.56288473,,,,,0.190923389,,109358,,,25.54744526,133,5206,,,4.504701783,36,799165,3.155037748,6.23640606,,,,,,,14.1337577,9.31423538,20.5638754,,,,,,,,,,13.1142918,79,576824,10.22323383,16.56911874,13.69568534,,,,,,,9.560446913,4.94002243,16.70017676,,,,15.63943192,11.57013783,20.6761584,,,,12.82886981,74,576824,10.07342209,16.10547125,,,,,,,17.66784452,11.43369742,26.08122382,,,,12.61135251,9.16342804,16.9301521,,,,9.509925985,76,799165,7.492740032,11.90309047,,,,,,,15.18070271,10.16675486,21.80202136,,,,7.745128212,5.48091369,10.63079359,,,,17.80487805,,12300,,,161,58,0.87137497,71993,82620,,,0.746,,,,,39.08472142,,,,,0.816662003,35025,42888,0.799817522,0.833506485,0.113970415,4823,42318,0.098031403,0.129909426,0.937022011,40187,42888,0.922485482,0.95155854,122030,,,,,0.223617143,27288,122030,,,0.200762108,24499,122030,,,0.266188642,32483,122030,,,0.004744735,579,122030,,,0.052716545,6433,122030,,,0.001327542,162,122030,,,0.082520692,10070,122030,,,0.574399738,70094,122030,,,0.014631623,1669,114068,0.010887062,0.018376184,0.512669016,62561,122030,,,0.181317852,21612,119194,, -13,115,13115,GA,Floyd County,2024,1,11104.84149,2000,274691,10374.6602,11835.02278,0,,,,2,,,,2,14115.70778,11995.15334,16236.26221,,5984.049342,4469.174271,7847.284574,,11274.43499,10387.59885,12161.27114,,,,,2,,0.199,,,0.17,0.232,4.415774396,,,3.536023215,5.300541464,5.537811802,,,4.571795459,6.553044197,0.092018302,724,7868,0.085631263,0.098405341,0,,,,,,,0.156301146,0.135940325,0.176661966,0.07464694,0.061288359,0.088005521,0.079701121,0.072053624,0.087348618,,,,0.157608696,0.104959204,0.210258188,0.189,,,0.152,0.229,0.39,,,0.323,0.459,6.5,0.146048429,0.134,,,0.29,,,0.242,0.34,0.779457113,76842,98584,,,0.147569684,,,0.117370602,0.18068642,0.091954023,8,87,0.04956461,0.146888225,424.2,419,98771,,,24.62298395,658,26723,22.74157239,26.5043955,,,,,,,29.00410678,23.65629215,34.35192141,39.31670282,32.91715689,45.71624875,20.35383506,18.27141044,22.43625968,,,,48.21150855,32.75738099,68.43238803,0.184138292,14423,78327,0.165074462,0.203202122,0.001346549,133,98771,,,742.6390977,0.000382129,38,99443,,,2616.921053,0.001669298,166,99443,,,599.0542169,4766,,,,,,5510,6825,2907,4641,0.41,,,,,,0.38,0.42,0.22,0.41,0.45,,,,,,0.46,0.32,0.29,0.47,0.841531723,55138,65521,0.827659834,0.855403612,0.523513645,12891,24624,0.479449763,0.567577528,0.031279967,1370,43798,,,0.178,3876,,0.106510638,0.249489362,,,,0.042253521,0,0.686755118,0.520376176,0.42435948,0.616392871,0.289236605,0.196427081,0.38204613,0.161664824,0.12346863,0.199861018,5.054849861,121372,24011,4.561497001,5.54820272,0.298426723,6620,22183,0.2577444,0.339109047,10.22567353,101,98771,,,87.50277262,430,491413,79.23204615,95.77349908,,,,,,,71.92316913,53.55152356,94.56568472,33.32164153,20.06180492,52.03587087,101.5638525,90.95364431,112.1740607,,,,9.9,,,,,0,,,,,0.14410058,5215,36190,0.126842426,0.161358735,0.11178879,0.096373332,0.127204248,0.030118817,0.020476107,0.039761527,0.014921249,0.007916927,0.021925571,0.799793674,34112,42651,0.78355969,0.816027659,,,,,,,0.73973418,0.66747837,0.81198999,0.6474287,0.543063136,0.751794263,0.830145108,0.816380556,0.843909661,0.285,,42651,0.254182087,0.315817913,73.24582445,,,72.70618021,73.78546869,,,,,,,70.60316806,69.12274749,72.08358863,94.79331978,76.48221243,113.1044271,73.06733254,72.43855375,73.69611132,,,,572.5586953,2000,274691,546.5592041,598.5581866,,,,,,,744.0674426,662.5721816,825.5627035,269.4895627,196.5675363,360.5982377,581.2910932,550.8751138,611.7070726,,,,70.61532062,73,103377,55.35113896,88.78816389,,,,,,,81.84741304,44.74674233,137.3260516,52.92965649,25.38182764,97.3395228,67.86123992,48.90841275,91.72868233,,,,7.528230866,60,7970,5.744833243,9.690325396,,,,,,,,,,,,,6.730573119,4.633016841,9.452227059,,,,,,,0.133,,,0.114,0.153,0.18,,,0.156,0.205,0.119,,,0.101,0.136,299.4,249,83174,,,0.134,13180,,,,0.146048429,14066.94652,96317,,,25.01073096,74,295873,19.63880322,31.39868237,,,,,,,,,,,,,31.3008639,24.15734594,39.89552052,,,,0.357,,,0.344,0.371,0.226723374,12794,56430,0.201702098,0.251744651,0.07807208,1798,23030,0.056625271,0.099518888,0.002936356,292,99443,,,340.5582192,0.935951743,1047.33,1119,,,0.113408724,702,6190,0.064230479,0.162586969,2.910701383,,,,,,,2.534477272,2.748195925,3.097692642,3.072396578,,,,,,,2.668421092,3.034644811,3.191588448,0.179776109,,,,,-4750.7864,,,,,0.774226889,37454,48376,0.701026622,0.847427157,56651,,,50556.53192,62745.46809,,,,64167,10298.57447,118035.4255,31015,24368.87234,37661.12766,47829,39293.17021,56364.82979,67220,64212.68085,70227.31915,,,,,,,,,,,49.39876547,,,,,0.26490265,,56651,,,12.09607742,70,5787,,,6.574362616,45,684477,4.795385205,8.797014435,,,,,,,23.33438169,14.79199635,35.01302961,,,,3.916734351,2.358129938,6.116465863,,,,18.46996084,90,491413,14.77358459,22.81025138,18.3145338,,,,,,,13.72171531,6.580095849,25.23472301,,,,22.75382466,17.77092584,28.70085372,,,,17.09356488,84,491413,13.6344968,21.16299646,,,,,,,31.0256808,19.44362898,46.97325359,,,,16.4464193,12.45635737,21.30824381,,,,17.38553669,119,684477,14.2618268,20.50924659,,,,,,,14.20353668,7.765205674,23.83112109,12.85561855,6.164768787,23.64194022,19.58367175,15.84435992,23.94002318,,,,25.97826087,,9200,,,207,32,0.589664449,41648,70630,,,0.624,,,,,51.14064787,,,,,0.6310979,22717,35996,0.608892733,0.653303067,0.117162287,4066,34704,0.101302062,0.133022512,0.852539171,30688,35996,0.838392991,0.866685351,99443,,,,,0.223565259,22232,99443,,,0.170167835,16922,99443,,,0.143278059,14248,99443,,,0.009040355,899,99443,,,0.016160011,1607,99443,,,0.002916244,290,99443,,,0.123025251,12234,99443,,,0.696539726,69266,99443,,,0.032666724,3035,92908,0.02486703,0.040466419,0.510282272,50744,99443,,,0.387294084,38181,98584,, -13,117,13117,GA,Forsyth County,2024,1,4345.233026,1829,717728,4035.569029,4654.897023,0,,,,2,2264.21045,1680.540638,2985.079207,,5030.142158,3483.519671,7029.119482,,3135.88303,2375.087183,4062.900195,,5071.466394,4648.671052,5494.261735,,,,,2,,0.106,,,0.088,0.127,2.707700691,,,2.079103041,3.370887531,3.829159185,,,3.044033593,4.640006408,0.069155946,1102,15935,0.065216517,0.073095375,0,,,,0.092889561,0.08299301,0.102786113,0.115284974,0.092756308,0.13781364,0.063904804,0.053840921,0.073968687,0.058652917,0.053879556,0.063426277,,,,0.05952381,0.023745428,0.095302191,0.1,,,0.076,0.129,0.255,,,0.203,0.315,8.7,0.080651791,0.063,,,0.184,,,0.147,0.224,0.894577031,224792,251283,,,0.170191729,,,0.1375854,0.205882706,0.222222222,16,72,0.162337634,0.286560057,141.4,368,260206,,,4.279441118,268,62625,3.767080513,4.791801722,,,,,,,5.061155631,2.615172969,8.840820349,13.42945999,10.8652351,16.41681844,3.318913228,2.778696574,3.859129881,,,,6.702412869,3.214067491,12.3259759,0.097178272,22203,228477,0.087646357,0.106710187,0.00039584,103,260206,,,2526.271845,0.000389168,104,267237,,,2569.586539,0.000864401,231,267237,,,1156.87013,2401,,,,,,1402,1841,,2443,0.41,,,,,,0.32,0.43,0.26,0.42,0.48,,,,,,0.49,0.39,0.33,0.49,0.939101193,155826,165931,0.932741882,0.945460503,0.836914396,53986,64506,0.805850809,0.867977982,0.023270271,3032,130295,,,0.04,2701,,0.024510638,0.055489362,0.383259912,0,0.767556834,0.027183895,0.012617434,0.041750357,0.04398723,0.003548811,0.084425648,0.162914399,0.104523312,0.221305486,0.037592049,0.028258283,0.046925815,3.667171991,229807,62666,3.490725242,3.84361874,0.117379395,7842,66809,0.099373017,0.135385773,5.841525561,152,260206,,,41.56132878,507,1219884,37.94355409,45.17910347,,,,11.54685925,7.236355219,17.48208368,24.42698368,12.62177891,42.66902465,16.93322383,10.34325303,26.15199084,53.98313295,49.01188923,58.95437668,,,,10.4,,,,,0,,,,,0.093314243,7495,80320,0.084152391,0.102476095,0.082419304,0.073621002,0.091217607,0.012699203,0.008525796,0.01687261,0.00435757,0.002666917,0.006048222,0.657160696,84202,128130,0.642534932,0.67178646,,,,0.331326628,0.294706672,0.367946584,0.716099376,0.652844294,0.779354459,0.576005852,0.537925765,0.614085939,0.657286528,0.638570495,0.676002562,0.493,,128130,0.470267832,0.515732168,81.3023423,,,80.93969461,81.66499,,,,89.44320136,86.24011873,92.64628399,82.45978332,79.34222729,85.57733935,86.10516482,83.94884076,88.26148889,80.3125842,79.893632,80.73153641,,,,229.4766671,1829,717728,218.7928263,240.1605079,,,,105.8211318,83.64721337,132.0695616,239.7068663,185.389273,304.9659073,139.7572372,108.7394725,176.8717283,260.1018404,246.7594885,273.4441924,,,,24.15375591,70,289810,18.82903768,30.51681751,,,,,,,,,,,,,24.18202882,17.50065416,32.57303412,,,,3.749602796,59,15735,2.854371378,4.836714418,,,,,,,,,,,,,3.991596639,2.824691349,5.478778248,,,,,,,0.08,,,0.068,0.095,0.123,,,0.106,0.145,0.081,,,0.068,0.095,91.3,196,214608,,,0.063,15410,,,,0.080651791,14155.27647,175511,,,11.38612878,86,755305,9.107433321,14.06177642,,,,,,,,,,,,,16.50320634,13.1636037,20.4320924,,,,0.306,,,0.291,0.322,0.115962961,18547,159939,0.102856578,0.129069344,0.055619577,4006,72025,0.042513194,0.06872596,0.000740915,198,267237,,,1349.681818,0.96,3720,3875,,,0.023738267,349,14702,0.008580178,0.038896356,3.69442898,,,,,,4.232560893,3.37753513,3.033639702,3.630884136,3.725683031,,,,,,4.674409144,3.215942146,2.956563839,3.587539175,0.109874717,,,,,818.8252,,,,,0.655670783,69547,106070,0.620173402,0.691168165,130909,,,123615.8936,138202.1064,91386,46149.91489,136622.0851,174524,164827.6596,184220.3404,102266,89458.68085,115073.3192,102837,91565.51064,114108.4894,128509,125120.4043,131897.5957,,,,,,,,,,,46.9018788,,,,,0.159492472,,130909,,,11.1861545,159,14214,,,1.14919517,19,1653331,0.691890563,1.794610612,,,,,,,,,,,,,1.033090758,0.53381307,1.804601649,,,,11.99138672,144,1219884,9.98794456,13.99482889,11.80440107,,,,,,,,,,,,,15.04163189,12.35457474,17.72868905,,,,7.623675694,93,1219884,6.153290208,9.339517776,,,,,,,,,,,,,10.01011737,7.984461645,12.39320644,,,,6.834687065,113,1653331,5.574498646,8.094875484,,,,,,,,,,7.541335948,3.89671833,13.17319624,7.920362477,6.384930027,9.713621474,,,,,,29700,,,,,0.859083812,129305,150515,,,0.746,,,,,36.08189081,,,,,0.848361721,71824,84662,0.836363196,0.860360245,0.086406593,7214,83489,0.07628885,0.096524335,0.968167537,81967,84662,0.962809996,0.973525077,267237,,,,,0.253995517,67877,267237,,,0.128664818,34384,267237,,,0.045098546,12052,267237,,,0.0045353,1212,267237,,,0.199309976,53263,267237,,,0.000759625,203,267237,,,0.096891523,25893,267237,,,0.639365058,170862,267237,,,0.02455204,5870,239084,0.021093671,0.02801041,0.498220681,133143,267237,,,0.077386851,19446,251283,, -13,119,13119,GA,Franklin County,2024,1,11936.07987,531,64970,10365.51759,13506.64214,0,,,,2,,,,2,16403.16893,10899.78663,23707.14619,,,,,2,12218.62149,10451.00868,13986.2343,,,,,2,,0.19,,,0.161,0.222,4.255611081,,,3.38217917,5.241492753,5.570495328,,,4.471092716,6.744957589,0.079301746,159,2005,0.067474083,0.091129408,0,,,,,,,0.125,0.08244299,0.16755701,,,,0.072025724,0.059175737,0.08487571,,,,0.268292683,0.132668462,0.403916904,0.199,,,0.16,0.242,0.377,,,0.297,0.46,,,0.14,,,0.272,,,0.226,0.325,0.417904713,9789,23424,,,0.16287578,,,0.128967766,0.201921037,0.092592593,5,54,0.040020409,0.165606243,281.7,67,23785,,,31.53403821,170,5391,26.79367957,36.27439685,,,,,,,29.7029703,18.38660677,45.40414531,36.03603604,18.62034567,62.94770285,30.35413154,25.05397605,35.65428702,,,,85.27131783,42.56713463,152.573942,0.17944016,3327,18541,0.157993351,0.200886968,0.000336346,8,23785,,,2973.125,0.000207228,5,24128,,,4825.6,0.000787467,19,24128,,,1269.894737,4395,,,,,,,2629,,4471,0.39,,,,,,,0.41,,0.4,0.47,,,,,,0.58,0.35,,0.48,0.808798646,12906,15957,0.777787385,0.839809908,0.595911349,3119,5234,0.513741563,0.678081135,0.031631632,316,9990,,,0.202,1043,,0.122170213,0.281829787,,,,,,,0.566893424,0.401249579,0.732537269,0.361522199,0,0.760185449,0.23551032,0.149309199,0.32171144,4.967229394,100040,20140,4.002317498,5.932141291,0.356918239,1816,5088,0.243333011,0.470503467,14.29472357,34,23785,,,118.4742576,138,116481,98.70726844,138.2412468,,,,,,,103.8225578,51.82784679,185.7672347,,,,126.5796518,104.1180847,149.0412189,,,,9.4,,,,,1,,,,,0.121661721,1025,8425,0.092128884,0.151194559,0.096188748,0.069093217,0.123284279,0.013412463,0,0.02714007,0.015430267,0.003675978,0.027184556,0.785942152,7391,9404,0.748066333,0.823817972,,,,,,,,,,,,,0.818725845,0.762108971,0.875342718,0.384,,9404,0.315751473,0.452248527,72.69427335,,,71.57989385,73.80865285,,,,,,,67.6984018,63.88026702,71.51653657,,,,72.44110964,71.22092323,73.66129604,,,,602.3474805,531,64970,548.1893093,656.5056517,,,,,,,906.8844554,690.3624659,1169.814874,,,,606.202025,547.0336547,665.3703953,,,,72.77085741,17,23361,42.39170613,116.5131921,,,,,,,,,,,,,68.70097899,35.49879836,120.0067845,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.132,,,0.114,0.153,0.181,,,0.157,0.208,0.113,,,0.097,0.131,273.6,55,20101,,,0.14,3250,,,,,,22084,,,38.22305275,27,70638,25.18923261,55.61253496,,,,,,,,,,,,,42.97009282,27.80797843,63.43233362,,,,0.381,,,0.363,0.397,0.220384444,2958,13422,0.192980188,0.247788699,0.074651811,402,5385,0.052013513,0.097290109,0.001077586,26,24128,,,928,0.9,232.2,258,,,,,,,,2.648171334,,,,,,,2.172853485,2.660019078,2.707912289,2.664867447,,,,,,,2.001188797,2.739835981,2.727047684,0.016420312,,,,,-2943.614,,,,,0.783970991,36105,46054,0.683257415,0.884684566,49940,,,43040.08511,56839.91489,,,,,,,,,,65208,53536.17021,76879.82979,52541,46320.23404,58761.76596,,,,,,,,,,,43.53574171,,,,,0.235162195,,49940,,,12.28501229,15,1221,,,9.31029346,15,161112,5.210900574,15.3559132,,,,,,,,,,,,,7.480270786,3.587080597,13.7564843,,,,22.42090201,29,116481,14.77551571,32.62123529,24.89676428,,,,,,,,,,,,,26.42063107,17.25883339,38.71234606,,,,25.75527339,30,116481,17.3769748,36.76725423,,,,,,,,,,,,,25.93845324,16.7859993,38.2902738,,,,23.58607677,38,161112,16.69091169,32.37373313,,,,,,,,,,,,,24.68489359,16.99194493,34.66676835,,,,,,2000,,,,,0.611995452,10765,17590,,,0.544,,,,,17.64851633,,,,,0.739313737,6313,8539,0.706164423,0.772463051,0.108841812,858,7883,0.07741817,0.140265453,0.783815435,6693,8539,0.752488014,0.815142856,24128,,,,,0.217548077,5249,24128,,,0.191893236,4630,24128,,,0.090475796,2183,24128,,,0.00501492,121,24128,,,0.018318966,442,24128,,,0.00066313,16,24128,,,0.05615882,1355,24128,,,0.813328913,19624,24128,,,0.017459605,389,22280,0.008800997,0.026118213,0.506962865,12232,24128,,,1,23424,23424,, -13,121,13121,GA,Fulton County,2024,1,7626.785371,12543,3055308,7440.2164,7813.354342,0,,,,2,2084.100525,1709.92673,2458.274319,,12376.05991,12022.00654,12730.11327,,4494.042429,3978.689652,5009.395206,,4398.019011,4165.628898,4630.409124,,,,,2,,0.145,,,0.123,0.168,3.222924364,,,2.614996088,3.855205405,4.402881142,,,3.744526367,5.112001095,0.1119073,9870,88198,0.109826716,0.113987883,0,,,,0.098638997,0.091854799,0.105423196,0.150244037,0.146883746,0.153604328,0.081894484,0.076009482,0.087779487,0.063461683,0.060534441,0.066388925,,,,0.101273885,0.086350455,0.116197316,0.126,,,0.1,0.154,0.29,,,0.249,0.331,8,0.08957599,0.093,,,0.216,,,0.183,0.25,0.937252862,999777,1066710,,,0.176659558,,,0.148138849,0.206756108,0.149709302,103,688,0.1318684,0.168491513,968.1,10313,1065334,,,14.24597005,3482,244420,13.77278206,14.71915804,,,,0.669754981,0.346072172,1.169927167,23.13759268,22.27123154,24.00395381,22.68699043,20.72183014,24.65215071,1.758297764,1.464932323,2.051663205,,,,9.312105738,7.139538072,11.93769929,0.105746438,94261,891387,0.097406012,0.114086863,0.001122653,1196,1065334,,,890.7474916,0.000760259,817,1074634,,,1315.341493,0.003223423,3464,1074634,,,310.2292148,2881,,,,,,1561,4422,2010,1940,0.39,,,,,,0.33,0.34,0.24,0.43,0.5,,,,,,0.53,0.33,0.39,0.59,0.93602307,683909,730654,0.931774241,0.940271899,0.806574524,269900,334625,0.789876728,0.82327232,0.031756947,18288,575874,,,0.174,38021,,0.13587234,0.21212766,0.100443132,0,0.22667673,0.03749297,0.020579355,0.054406585,0.278355556,0.255505002,0.301206111,0.213979726,0.177902809,0.250056643,0.032957556,0.025465311,0.0404498,5.760140073,189163,32840,5.52902138,5.991258766,0.358629995,80270,223824,0.336676469,0.380583521,9.734036462,1037,1065334,,,70.77862146,3750,5298210,68.51323376,73.04400915,,,,17.73674179,13.85254249,22.37248634,96.61773069,92.61117375,100.6242876,34.04808317,28.21748529,39.87868106,62.1840869,58.80372143,65.56445237,,,,9.5,,,,,1,,,,,0.177722402,75955,427380,0.169588369,0.185856434,0.158800686,0.15082973,0.166771642,0.021000047,0.018240589,0.023759505,0.007335392,0.005652984,0.009017801,0.615523325,339639,551789,0.608149602,0.622897049,0.590544872,0.503334262,0.677755481,0.627135768,0.602593478,0.651678058,0.727950235,0.719308022,0.736592448,0.631067256,0.613579809,0.648554703,0.727707384,0.72072717,0.734687598,0.402,,551789,0.389732866,0.414267134,78.07800062,,,77.8917637,78.26423754,,,,88.56990077,87.15091417,89.98888737,73.18355616,72.8927132,73.47439912,85.67955561,83.99088361,87.3682276,81.76878387,81.51301878,82.02454895,,,,370.7426651,12543,3055308,364.1925273,377.292803,,,,105.4773872,90.69902254,120.2557518,592.5016766,579.8390058,605.1643475,200.5759054,178.3001541,222.8516568,222.9750414,215.2421353,230.7079474,,,,61.72284122,638,1033653,56.93332508,66.51235737,,,,28.41532878,17.80773526,43.02114925,96.4460834,87.78170939,105.1104574,35.06214304,24.8120592,48.1255307,30.004706,24.27559893,36.67919715,,,,6.691723453,600,89663,6.15627406,7.227172847,,,,2.668801708,1.630173417,4.121747785,10.26035075,9.316528194,11.20417331,3.555344869,2.398776253,5.07547587,3.303882991,2.653289336,4.065712317,,,,,,,0.095,,,0.082,0.109,0.138,,,0.119,0.157,0.107,,,0.093,0.121,1802.3,16384,909076,,,0.093,98130,,,,0.08957599,82461.9543,920581,,,20.05193545,643,3206673,18.50202401,21.60184688,,,,,,,24.87332829,22.2599616,27.48669498,8.184469323,4.927585179,12.78106268,21.11828462,18.58038821,23.65618104,,,,0.36,,,0.348,0.373,0.1236941,83436,674535,0.112970696,0.134417505,0.05210485,11881,228021,0.040189956,0.064019744,0.002277985,2448,1074634,,,438.9844771,0.864124637,9234.9,10687,,,0.070332548,4029,57285,0.053078548,0.087586548,2.95232338,,,,,,4.043992019,2.530327715,2.677428942,3.833695109,2.848657602,,,,,,4.249076542,2.39067095,2.608176213,3.733453775,0.343197094,,,,,-5839.3675,,,,,0.755942851,61852,81821,0.729997746,0.781887956,89798,,,86548.80851,93047.19149,69083,36844.87234,101321.1277,125216,118198.1277,132233.8723,55598,53306.76596,57889.23404,74566,68844.46809,80287.53192,128483,124645.2128,132320.7872,,,,,,,,,,,72.63309008,,,,,0.232510746,,89798,,,20.87594449,1235,59159,,,14.17054959,1039,7332108,13.30889146,15.03220772,,,,,,,29.31053305,27.43376764,31.18729847,6.724409419,4.709693688,9.309417066,1.959721197,1.484273697,2.539046118,,,,11.23260439,620,5298210,10.33656937,12.1286394,11.70206542,,,,7.598896651,4.817048636,11.402076,9.933205891,8.65811068,11.2083011,4.559550811,2.70227878,7.206056022,14.32315131,12.73845983,15.90784279,,,,18.89317336,1001,5298210,17.72274741,20.06359931,,,,2.997759175,1.54898591,5.236481992,32.39332153,30.07341416,34.71322889,8.317089019,5.688882732,11.7412481,9.758118252,8.419036585,11.09719992,,,,10.84272081,795,7332108,10.08899952,11.5964421,,,,2.961191732,1.692576932,4.808789853,17.73646984,16.27654087,19.19639881,6.724409419,4.709693688,9.309417066,5.982306812,5.093412494,6.87120113,,,,12.48358862,,91400,,,1129,12,0.696675032,524659,753090,,,0.612,,,,,384.017745,,,,,0.536865429,242049,450856,0.528674689,0.54505617,0.164530377,72229,439001,0.156772195,0.172288559,0.914265309,412202,450856,0.908345795,0.920184822,1074634,,,,,0.206174381,221562,1074634,,,0.127941234,137490,1074634,,,0.440363882,473230,1074634,,,0.002746982,2952,1074634,,,0.081165308,87223,1074634,,,0.000334067,359,1074634,,,0.073948898,79468,1074634,,,0.38261864,411175,1074634,,,0.017578878,17649,1003989,0.015788556,0.0193692,0.513005358,551293,1074634,,,0.006323181,6745,1066710,, -13,123,13123,GA,Gilmer County,2024,1,10831.73673,637,86118,9328.481311,12334.99214,0,,,,2,,,,2,,,,2,7522.934165,4656.814818,11499.604,1,11066.46756,9403.012754,12729.92237,,,,,2,,0.173,,,0.145,0.205,4.132225715,,,3.29222348,5.081367278,5.461482474,,,4.436203621,6.617730396,0.067740407,143,2111,0.057020173,0.078460642,0,,,,,,,,,,0.07079646,0.05149001,0.09010291,0.065373563,0.052388126,0.078359,,,,,,,0.178,,,0.141,0.221,0.353,,,0.279,0.434,7.3,0.070800721,0.131,,,0.256,,,0.211,0.308,0.795362485,24937,31353,,,0.152713137,,,0.12082441,0.190704165,0.125,5,40,0.056811768,0.214221075,159.2,51,32026,,,30.48146865,176,5774,25.97811944,34.98481787,,,,,,,,,,59.52380952,46.81925214,74.61361067,22.87959325,18.5954044,27.85508384,,,,,,,0.204441986,4805,23503,0.181803688,0.227080284,0.000437145,14,32026,,,2287.571429,0.00024686,8,32407,,,4050.875,0.000802296,26,32407,,,1246.423077,1682,,,,,,,,,1681,0.4,,,,,,,,0.19,0.4,0.42,,,,,,,,0.28,0.43,0.859731401,20165,23455,0.835554804,0.883907997,0.533729521,3323,6226,0.452696664,0.614762378,0.030693628,381,12413,,,0.207,1194,,0.129553192,0.284446809,0.138888889,0,0.3213504,,,,,,,0.30455154,0.127970267,0.481132812,0.202407271,0.131562507,0.273252035,4.437333941,116906,26346,3.737601934,5.137065948,0.252823192,1500,5933,0.159923825,0.34572256,6.244925998,20,32026,,,107.7373249,169,156863,91.49385132,123.9807985,,,,,,,,,,,,,118.1971199,99.76673426,136.6275055,,,,8.6,,,,,0,,,,,0.115895372,1440,12425,0.084485102,0.147305642,0.078685832,0.050277112,0.107094551,0.038229376,0.02038981,0.056068943,0.006036217,0.0013879,0.010684535,0.743512144,9827,13217,0.701551322,0.785472965,,,,,,,,,,0.569484241,0.528542972,0.610425509,0.776980198,0.715801491,0.838158905,0.402,,13217,0.336630763,0.467369237,75.40053186,,,74.28009285,76.52097086,,,,,,,,,,92.61917233,70.37247061,114.8658741,74.9878575,73.79599039,76.17972461,,,,467.7986525,637,86118,425.5955906,510.0017143,,,,,,,,,,266.977008,163.0764924,412.3243358,489.8132143,442.4775842,537.1488444,,,,84.76208823,22,25955,53.11994942,128.3308202,,,,,,,,,,183.9926403,95.07168213,321.3981148,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.123,,,0.106,0.144,0.17,,,0.146,0.196,0.104,,,0.089,0.123,201.2,56,27835,,,0.131,4060,,,,0.070800721,2003.093996,28292,,,28.30989903,27,95373,18.65640185,41.18941676,,,,,,,,,,,,,30.77415463,19.91541028,45.42872299,,,,0.334,,,0.318,0.35,0.238502008,4216,17677,0.209906264,0.267097753,0.103340976,631,6106,0.073553742,0.13312821,0.000586293,19,32407,,,1705.631579,0.94,237.82,253,,,,,,,,2.886539793,,,,,,,,2.445064111,3.055015946,2.809851534,,,,,,,,2.481147652,2.945690515,0.013267652,,,,,-1096.393,,,,,0.881954763,42736,48456,0.690576052,1.073333475,68294,,,63346.93617,73241.06383,23833,2189.595745,45476.40426,,,,,,,77500,59600.25532,95399.74468,69776,62868.93617,76683.06383,,,,,,,,,,,,,,,,0.171962398,,68294,,,5.663939585,9,1589,,,,,,,,,,,,,,,,,,,,,,,,,,28.51153746,53,156863,20.54860836,38.5393159,33.7874451,,,,,,,,,,,,,32.86134641,23.25464453,45.10476539,,,,27.41245546,43,156863,19.83852994,36.9243976,,,,,,,,,,,,,31.41948756,22.64440302,42.47001966,,,,27.77829219,60,215996,21.19776336,35.75616836,,,,,,,,,,,,,29.80900557,22.45622248,38.80051812,,,,,,2400,,,,,0.690267335,16525,23940,,,0.475,,,,,6.860835653,,,,,0.760879702,9791,12868,0.732081944,0.789677459,0.09252611,1134,12256,0.061226993,0.123825226,0.857009636,11028,12868,0.822062353,0.89195692,32407,,,,,0.181905144,5895,32407,,,0.270281112,8759,32407,,,0.007529238,244,32407,,,0.007529238,244,32407,,,0.007776098,252,32407,,,0.005523498,179,32407,,,0.129879347,4209,32407,,,0.838800259,27183,32407,,,0.02433488,729,29957,0.012005962,0.036663798,0.493936495,16007,32407,,,0.785092336,24615,31353,, -13,125,13125,GA,Glascock County,2024,1,11330.3417,67,8148,7528.929777,16375.49843,0,,,,2,,,,2,,,,2,,,,2,9344.101946,5923.359087,14020.74083,1,,,,2,,0.19,,,0.163,0.224,4.393526363,,,3.499120962,5.457827448,5.674421586,,,4.543241225,6.923695069,0.071428571,15,210,0.036595637,0.106261506,1,,,,,,,,,,,,,0.079787234,0.041053624,0.118520844,,,,,,,0.208,,,0.17,0.251,0.352,,,0.274,0.437,5.4,0.277291836,0.121,,,0.275,,,0.229,0.331,,,2884,,,0.159161626,,,0.125580191,0.197331901,0.333333333,1,3,0.04092282,0.635504717,274.1,8,2919,,,33.6906585,22,653,21.11375631,51.00806185,,,,,,,,,,,,,32.02846975,18.98210103,50.61879051,,,,,,,0.170411191,402,2359,0.147772893,0.193049489,0.000342583,1,2919,,,2919,0,0,2939,,,-2939,,0,2939,,,,4376,,,,,,,,,4394,0.42,,,,,,,,,0.43,0.39,,,,,,,,,0.38,0.821841973,1633,1987,0.749848763,0.893835182,0.629969419,412,654,0.457842642,0.802096196,0.030327215,38,1253,,,0.186,114,,0.11212766,0.25987234,,,,,,,0.068493151,0,0.321842636,,,,0.231060606,0.059958213,0.402162999,5.174290221,111537,21556,2.665156091,7.683424351,0.355305466,221,622,0.134885011,0.575725922,10.27749229,3,2919,,,133.949501,20,14931,81.81983514,206.8741404,,,,,,,,,,,,,123.133754,70.3815796,199.9615022,,,,9.4,,,,,1,,,,,0.116071429,130,1120,0.059063557,0.1730793,0.057657658,0.002717675,0.112597641,0.0625,0.018271229,0.106728771,0,0,0.021062755,0.942457232,1212,1286,0.888084254,0.99683021,,,,,,,,,,,,,,,,0.566,,1286,0.412016421,0.719983579,73.3835795,,,70.19312222,76.57403678,,,,,,,,,,,,,74.79152491,71.63026969,77.95278013,,,,606.6374666,67,8148,464.029594,779.2512043,,,,,,,,,,,,,543.9660034,403.7420526,717.1513611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.135,,,0.118,0.157,0.185,,,0.162,0.213,0.111,,,0.095,0.13,279,7,2509,,,0.121,350,,,,0.277291836,854.6134395,3082,,,,,,,,,,,,,,,,,,,,,,,,,,0.371,,,0.353,0.386,0.1995439,350,1754,0.169756666,0.229331134,0.087227414,56,642,0.061014648,0.11344018,0.000680504,2,2939,,,1469.5,,,,,,,,,,,2.975062198,,,,,,,,,3.027347309,3.007689554,,,,,,,,,2.925214125,0.044322757,,,,,1252.668,,,,,0.678485106,39861,58750,0.369728025,0.987242188,55539,,,48552.10638,62525.89362,,,,,,,,,,,,,60673,37035.04255,84310.95745,,,,,,,,,,,,,,,,0.211455014,,55539,,,17.39130435,2,115,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,300,,,,,0.673548387,1566,2325,,,0.482,,,,,0.407064753,,,,,0.709125475,746,1052,0.628302195,0.789948755,0.056737589,56,987,0,0.120507594,0.624524715,657,1052,0.518090511,0.730958918,2939,,,,,0.211636611,622,2939,,,0.182034706,535,2939,,,0.084382443,248,2939,,,0.006805036,20,2939,,,0.002722014,8,2939,,,0.000680504,2,2939,,,0.0190541,56,2939,,,0.869343314,2555,2939,,,0,0,2762,0,0.024157641,0.498128615,1464,2939,,,1,2884,2884,, -13,127,13127,GA,Glynn County,2024,1,10871.55412,1621,233622,10037.08219,11706.02606,0,,,,2,,,,2,13246.37599,11553.55106,14939.20092,,7612.78174,5331.898739,10539.29882,,10818.03316,9708.832573,11927.23374,,,,,2,,0.169,,,0.143,0.196,3.826050652,,,3.055416935,4.672580645,5.041665264,,,4.122501846,5.9973895,0.119264588,746,6255,0.11123264,0.127296537,0,,,,0.195876289,0.116895299,0.274857278,0.183535109,0.16683865,0.200231568,0.087009804,0.067671065,0.106348543,0.082876492,0.073172849,0.092580134,,,,0.122641509,0.060194676,0.185088343,0.17,,,0.134,0.208,0.354,,,0.288,0.425,7.1,0.123620511,0.115,,,0.264,,,0.215,0.31,0.734789761,62089,84499,,,0.167845746,,,0.136766236,0.203731041,0.278481013,22,79,0.220437656,0.338300691,624.3,529,84739,,,27.64559257,488,17652,25.19273651,30.09844863,,,,,,,35.36379019,30.56930773,40.15827264,53.34081976,43.15590851,65.20638609,17.21302489,14.52047696,19.90557281,,,,39.39962477,24.38898871,60.2265117,0.180370945,11738,65077,0.161307115,0.199434775,0.000519241,44,84739,,,1925.886364,0.00052892,45,85079,,,1890.644444,0.001516238,129,85079,,,659.5271318,3330,,,,,,,5380,,3034,0.41,,,,,,0.29,0.35,0.28,0.42,0.45,,,,,,0.4,0.3,0.28,0.46,0.8815002,53024,60152,0.863146307,0.899854092,0.552065361,10879,19706,0.495375889,0.608754833,0.02947326,1170,39697,,,0.209,3551,,0.13393617,0.28406383,,,,,,,0.412761506,0.321967656,0.503555357,0.681318681,0.623594663,0.7390427,0.093058118,0.054787091,0.131329145,4.599871364,128732,27986,4.151601248,5.048141481,0.350605272,6198,17678,0.291377196,0.409833348,12.27297938,104,84739,,,89.18094344,380,426100,80.21416714,98.14771975,,,,,,,58.61506137,45.23786689,74.70970739,57.90782437,33.73344167,92.71603643,109.7313614,97.25153297,122.2111898,,,,7.6,,,,,0,,,,,0.139075753,4755,34190,0.118450065,0.159701442,0.121431741,0.101177936,0.141685546,0.015062884,0.008705368,0.0214204,0.007750804,0.003799327,0.011702282,0.795743183,29386,36929,0.769138174,0.822348191,,,,,,,0.810391552,0.768111517,0.852671587,0.656706282,0.570970186,0.742442378,0.809659684,0.785422733,0.833896635,0.193,,36929,0.165006338,0.220993662,75.42394467,,,74.7605496,76.08733973,,,,,,,72.49610812,71.19662341,73.79559283,93.29967823,76.03129844,110.568058,75.53606595,74.68347397,76.38865793,,,,497.2370258,1621,233622,471.1775143,523.2965373,,,,,,,634.8174818,574.1095099,695.5254537,321.8582414,231.9671101,435.0588408,484.1730301,452.0004554,516.3456048,,,,75.69928768,61,80582,57.90395692,97.23890188,,,,,,,74.77474109,45.67435445,115.483523,,,,85.08295588,58.92242032,118.8949028,,,,8.490566038,54,6360,6.378374524,11.07834692,,,,,,,12.08178439,7.892222684,17.70261342,,,,7.257810035,4.60082898,10.8902786,,,,,,,0.117,,,0.099,0.135,0.166,,,0.143,0.191,0.11,,,0.093,0.126,486.1,352,72420,,,0.115,9730,,,,0.123620511,9843.406816,79626,,,26.60417294,68,255599,20.65918128,33.72712849,,,,,,,,,,,,,36.91353619,28.16891693,47.51503821,,,,0.347,,,0.334,0.36,0.216158072,10349,47877,0.191136795,0.241179348,0.08489011,1545,18200,0.062251812,0.107528408,0.001292916,110,85079,,,773.4454546,0.94,767.98,817,,,0.167065073,629,3765,0.093534569,0.240595577,2.957561316,,,,,,,2.517187291,2.821538754,3.382077466,2.851895281,,,,,,,2.359704985,2.721059895,3.290764464,0.069006824,,,,,-6672.09,,,,,0.753342365,42261,56098,0.653288716,0.853396015,63532,,,58612.34043,68451.65957,,,,116250,5947.87234,226552.1277,37301,25548.14894,49053.85106,36154,24619.19149,47688.80851,76544,69672.68085,83415.31915,,,,,,,,,,,51.27616186,,,,,0.236211673,,63532,,,15.94483947,74,4641,,,7.23685207,43,594181,5.237345727,9.747992247,,,,,,,16.82020495,10.98751631,24.64549741,,,,4.235314049,2.420847924,6.877884672,,,,19.60177319,82,426100,15.44396779,24.53454212,19.24430885,,,,,,,,,,,,,29.37662068,22.76647753,37.30726983,,,,17.83618869,76,426100,14.05288803,22.32464984,,,,,,,21.6424842,13.866748,32.20230095,,,,18.47329316,13.71123425,24.35473403,,,,13.12731306,78,594181,10.37659622,16.3834808,,,,,,,10.35089535,5.916431046,16.80920557,,,,15.0883063,11.42773584,19.54865089,,,,,,7400,,,,,0.653244126,41984,64270,,,0.579,,,,,75.36586304,,,,,0.668559325,22725,33991,0.648206387,0.688912262,0.130856515,4290,32784,0.11052415,0.151188881,0.837751169,28476,33991,0.808993148,0.866509191,85079,,,,,0.203305163,17297,85079,,,0.229257514,19505,85079,,,0.25485725,21683,85079,,,0.005900399,502,85079,,,0.017618919,1499,85079,,,0.002244972,191,85079,,,0.071004596,6041,85079,,,0.635809072,54094,85079,,,0.01622452,1299,80064,0.010996592,0.021452448,0.530365895,45123,85079,,,0.186380904,15749,84499,, -13,129,13129,GA,Gordon County,2024,1,10529.49502,1126,164269,9615.353609,11443.63644,0,,,,2,,,,2,14302.20856,9503.713721,20670.67348,,4122.566699,2871.518757,5733.492307,,11769.17372,10630.89843,12907.44901,,,,,2,,0.209,,,0.177,0.244,4.461481005,,,3.573388073,5.453499106,5.274618547,,,4.240606636,6.435308621,0.082511023,393,4763,0.074697044,0.090325001,0,,,,,,,0.145454546,0.091659122,0.199249969,0.065589354,0.050629279,0.080549428,0.084095603,0.074751621,0.093439586,,,,,,,0.204,,,0.163,0.246,0.372,,,0.296,0.453,7.1,0.104766823,0.125,,,0.295,,,0.243,0.351,0.628180175,36148,57544,,,0.157549583,,,0.12532711,0.195945348,0.166666667,7,42,0.092975613,0.254046475,245.5,143,58237,,,30.93012906,417,13482,27.96140539,33.89885274,,,,,,,,,,30.75103489,24.84087626,36.66119352,31.99208443,28.3162824,35.66788647,,,,45.45454546,24.20263109,77.72865706,0.217398444,10591,48717,0.194760146,0.240036742,0.000463623,27,58237,,,2156.925926,0.000220511,13,58954,,,4534.923077,0.000746345,44,58954,,,1339.863636,3084,,,,,,,6692,,2961,0.38,,,,,,,0.27,0.29,0.39,0.41,,,,,,0.46,0.45,0.27,0.42,0.778579101,30444,39102,0.750551268,0.806606934,0.459446913,6928,15079,0.399668722,0.519225104,0.028332238,819,28907,,,0.151,1994,,0.092617021,0.209382979,0.347736626,0.200525068,0.494948184,,,,0.05988024,0,0.269590784,0.240479116,0.123075052,0.357883179,0.159853772,0.110946555,0.208760989,4.56675474,117530,25736,3.897590026,5.235919455,0.240552111,3259,13548,0.178033593,0.303070629,10.81786493,63,58237,,,70.74967041,205,289754,61.06458262,80.4347582,,,,,,,,,,20.87377628,10.00978708,38.38761776,82.40125358,70.46235274,94.34015442,,,,9.7,,,,,0,,,,,0.144778675,2960,20445,0.118824874,0.170732475,0.10781133,0.085202865,0.130419795,0.036928344,0.022572588,0.051284101,0.007092199,0.000414349,0.013770048,0.812135848,21187,26088,0.780147748,0.844123948,,,,,,,,,,0.621028428,0.504153801,0.737903055,0.862689487,0.838394171,0.886984802,0.283,,26088,0.242753048,0.323246952,73.76936446,,,73.0705092,74.46821972,,,,,,,73.75382185,69.08768657,78.41995712,100.7246123,74.8660316,126.583193,72.6228956,71.81922784,73.42656336,,,,549.166489,1126,164269,516.2961408,582.0368372,,,,,,,622.6107657,452.3899355,835.8258923,247.0421362,170.0524394,346.9390084,602.0275961,563.5718096,640.4833827,,,,62.04689439,38,61244,43.90807531,85.16421024,,,,,,,,,,,,,72.75549304,49.08782563,103.8629902,,,,6.040408248,29,4801,4.045356204,8.675033834,,,,,,,,,,,,,6.680220738,4.234686912,10.02361106,,,,,,,0.14,,,0.12,0.163,0.18,,,0.155,0.208,0.119,,,0.101,0.139,167.7,82,48902,,,0.125,7170,,,,0.104766823,5781.661888,55186,,,12.57286547,22,174980,7.879347853,19.03546942,,,,,,,,,,,,,16.473231,10.32368616,24.9406697,,,,0.347,,,0.331,0.361,0.264969341,9377,35389,0.236373596,0.293565085,0.094675399,1330,14048,0.067271143,0.122079654,0.001102555,65,58954,,,906.9846154,0.979680851,690.675,705,,,0.15559633,424,2725,0.074249661,0.236942999,2.956158729,,,,,,,2.852743785,2.778068656,3.003900142,2.825554138,,,,,,,2.613835433,2.741079003,2.852053783,0.056737985,,,,,-1002.7715,,,,,0.795101929,40485,50918,0.714491598,0.875712259,63946,,,59155.02128,68736.97872,,,,51287,25504.3617,77069.6383,,,,54058,43264.29787,64851.70213,60085,54194.2766,65975.7234,,,,,,,,,,,64.86606035,,,,,0.234682388,,63946,,,7.651559741,26,3398,,,3.471946671,14,403232,1.898145553,5.825336561,,,,,,,,,,,,,,,,,,,18.40712505,53,289754,13.74732141,24.13849556,18.2913782,,,,,,,,,,,,,21.25806191,15.50577623,28.44495937,,,,15.18529511,44,289754,11.03365868,20.38554991,,,,,,,,,,,,,17.11064282,12.10850923,23.48569412,,,,17.60772955,71,403232,13.75178286,22.20975496,,,,,,,,,,,,,21.58324367,16.72671739,27.40995652,,,,4.827586207,,5800,,,13,15,0.594729028,24033,40410,,,0.612,,,,,41.95326362,,,,,0.715251764,14702,20555,0.68717094,0.743332587,0.100133033,1957,19544,0.076335183,0.123930884,0.774410119,15918,20555,0.747302486,0.801517753,58954,,,,,0.227431557,13408,58954,,,0.157054653,9259,58954,,,0.040234759,2372,58954,,,0.005868983,346,58954,,,0.016674017,983,58954,,,0.004342369,256,58954,,,0.172846626,10190,58954,,,0.752722462,44376,58954,,,0.040306432,2194,54433,0.028295663,0.0523172,0.503901347,29707,58954,,,0.599158905,34478,57544,, -13,131,13131,GA,Grady County,2024,1,10650.6259,509,69154,9214.749356,12086.50243,0,,,,2,,,,2,15414.55046,12069.16066,18759.94026,,,,,2,9392.307167,7568.403429,11216.21091,,,,,2,,0.215,,,0.185,0.246,4.376121658,,,3.53764655,5.34727275,5.497013743,,,4.435320728,6.639964578,0.095541401,195,2041,0.082788038,0.108294764,0,,,,,,,0.143333333,0.115294497,0.171372169,0.074003795,0.051653546,0.096354044,0.076396807,0.05881609,0.093977525,,,,,,,0.201,,,0.164,0.24,0.404,,,0.328,0.482,8,0.013810084,0.126,,,0.304,,,0.254,0.356,0.332329623,8719,26236,,,0.14470802,,,0.113676973,0.178731285,0.137931035,4,29,0.056115699,0.245903351,574.9,149,25918,,,35.37033794,202,5711,30.49258729,40.2480886,,,,,,,32.68318398,25.05800975,41.89836683,83.81171068,65.69500221,105.3806432,22.88984263,17.62796801,29.22981803,,,,,,,0.195180723,3969,20335,0.172542425,0.217819021,0.000462999,12,25918,,,2159.833333,0.000269148,7,26008,,,3715.428571,0.000346047,9,26008,,,2889.777778,3000,,,,,,,1768,,3087,0.52,,,,,,,0.51,,0.53,0.45,,,,,,,0.35,,0.47,0.809329941,14313,17685,0.774251648,0.844408234,0.544472574,3226,5925,0.453764813,0.635180335,0.029978978,328,10941,,,0.326,2041,,0.239021277,0.412978723,,,,,,,0.381520119,0.281667876,0.481372363,0.434492968,0.267692075,0.601293861,0.222493036,0.141728548,0.303257524,5.519806455,103811,18807,4.527518743,6.512094168,0.331871574,2119,6385,0.245982784,0.417760365,9.259973763,24,25918,,,88.27612773,110,124609,71.77920261,104.7730529,,,,,,,99.54776871,69.33866834,138.4468482,,,,94.65347086,73.50212379,119.9958285,,,,9.5,,,,,0,,,,,0.168952277,1540,9115,0.133898406,0.204006147,0.127607362,0.092366294,0.16284843,0.044322545,0.020515162,0.068129929,0.010970927,0.000215478,0.021726376,0.762358491,8081,10600,0.726632119,0.798084862,,,,,,,0.684711481,0.563409257,0.806013705,,,,0.787526678,0.720007954,0.855045401,0.403,,10600,0.331213384,0.474786616,74.75186968,,,73.60142042,75.90231894,,,,,,,70.78831946,68.52225303,73.0543859,,,,75.6384598,74.16347372,77.11344587,,,,543.7777038,509,69154,493.9107648,593.6446428,,,,,,,731.4199846,618.8876747,843.9522945,,,,495.7123205,435.4586472,555.9659939,,,,48.42254256,13,26847,25.78296454,82.80402249,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.137,,,0.118,0.157,0.183,,,0.158,0.208,0.129,,,0.111,0.148,325.2,70,21526,,,0.126,3280,,,,0.013810084,345.4040064,25011,,,,,,,,,,,,,,,,,,,,,,,,,,0.401,,,0.388,0.413,0.239054168,3407,14252,0.209266934,0.268841402,0.094360256,604,6401,0.064573022,0.12414749,0.000807444,21,26008,,,1238.476191,0.92,262.2,285,,,,,,,,2.567571141,,,,,,,2.17290478,2.483208101,2.877167336,2.720263928,,,,,,,2.481228513,2.620880186,2.982036666,0.101360595,,,,,-8927.037,,,,,0.869357648,40426,46501,0.768288342,0.970426955,48548,,,41831.57447,55264.42553,67019,23347.34043,110690.6596,,,,32376,23793.70213,40958.29787,48750,23813.31915,73686.68085,59158,50410.08511,67905.91489,,,,,,,,,,,29.99055489,,,,,0.241904919,,48548,,,11.49425287,14,1218,,,10.30797952,18,174622,6.10916195,16.29105168,,,,,,,24.29641628,12.55431283,42.44094968,,,,,,,,,,11.39681915,16,124609,6.378713161,18.79732001,12.84016403,,,,,,,,,,,,,16.96397447,9.032601947,29.00891298,,,,20.0627563,25,124609,12.98355805,29.61658604,,,,,,,,,,,,,20.8794421,11.68606525,34.4374645,,,,24.05195222,42,174622,17.33453158,32.51125218,,,,,,,32.39522171,18.51666826,52.60781048,,,,21.73247325,13.61962529,32.90322568,,,,,,2500,,,,,0.616052934,10707,17380,,,0.496,,,,,33.03085055,,,,,0.654820261,6412,9792,0.610329789,0.699310734,0.176764456,1663,9408,0.131931772,0.22159714,0.809946895,7931,9792,0.77958246,0.840311331,26008,,,,,0.243578899,6335,26008,,,0.195247616,5078,26008,,,0.284450938,7398,26008,,,0.012880652,335,26008,,,0.007766841,202,26008,,,0.002806829,73,26008,,,0.122731467,3192,26008,,,0.567979083,14772,26008,,,0.034131786,835,24464,0.019638258,0.048625313,0.513457398,13354,26008,,,0.60565635,15890,26236,, -13,133,13133,GA,Greene County,2024,1,9060.134495,300,50072,7191.296799,10928.97219,0,,,,2,,,,2,12598.10984,9222.24253,15973.97715,,,,,2,7904.315187,5202.037876,10606.5925,,,,,2,,0.178,,,0.153,0.206,3.880165581,,,3.072487649,4.729582204,4.949279357,,,3.920448776,5.992618641,0.128133705,138,1077,0.108171668,0.148095742,0,,,,,,,0.19630485,0.158891783,0.233717917,,,,0.092715232,0.066006435,0.119424029,,,,,,,0.167,,,0.135,0.203,0.373,,,0.292,0.454,7.9,0.100153643,0.093,,,0.256,,,0.21,0.305,0.690668781,13064,18915,,,0.135910178,,,0.105750098,0.167607168,0.157894737,3,19,0.054083319,0.295484356,537.5,105,19536,,,25.51203737,71,2783,19.92511285,32.17996375,,,,,,,28.31594635,20.03804892,38.86584867,49.64539007,27.14159672,83.2965288,14.98127341,8.563092185,24.32864944,,,,,,,0.1624972,2176,13391,0.14343337,0.181561029,0.000563063,11,19536,,,1776,0.000943443,19,20139,,,1059.947368,0.000446894,9,20139,,,2237.666667,2552,,,,,,,5673,,2430,0.5,,,,,,,0.25,,0.52,0.48,,,,,,0.27,0.27,,0.5,0.880607559,12465,14155,0.856798837,0.904416281,0.456490728,1600,3505,0.37987375,0.533107705,0.03178284,233,7331,,,0.239,819,,0.142489362,0.335510638,,,,,,,0.205,0.054604098,0.355395903,0.700450451,0.329562574,1,0.168656716,0.083708584,0.253604849,5.897430314,162486,27552,4.768546199,7.026314428,0.455,1547,3400,0.327966326,0.582033675,11.77313677,23,19536,,,80.71905406,74,91676,63.38181884,101.3353806,,,,,,,80.74826728,51.73693848,120.147021,,,,87.58362373,64.35315239,116.4676525,,,,9.9,,,,,1,,,,,0.137720489,1015,7370,0.104199119,0.171241858,0.1315427,0.099648276,0.163437123,0.003256445,0,0.009809871,0.008819539,0.000272296,0.017366781,0.808290869,5869,7261,0.765979812,0.850601926,,,,,,,0.921363636,0.872362566,0.970364707,,,,0.800967395,0.734745937,0.867188853,0.385,,7261,0.316689098,0.453310902,77.56188905,,,76.07356446,79.05021364,,,,,,,72.10446612,69.59220887,74.61672336,,,,79.36671007,77.29571236,81.43770779,,,,379.1004497,300,50072,327.7094445,430.4914548,,,,,,,627.8216948,517.0663565,738.5770331,,,,304.8655027,238.093889,371.6371165,,,,80.81896552,12,14848,41.76033883,141.1744683,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.118,,,0.102,0.136,0.164,,,0.141,0.188,0.116,,,0.099,0.134,210.8,36,17077,,,0.093,1720,,,,0.100153643,1601.857371,15994,,,,,,,,,,,,,,,,,,,,,,,,,,0.378,,,0.363,0.394,0.184900768,1854,10027,0.161070981,0.208730555,0.097789116,345,3528,0.07038486,0.125193371,0.001092408,22,20139,,,915.4090909,0.925,149.85,162,,,,,,,,3.041861384,,,,,,,2.283543874,3.240995096,3.936552668,3.198384065,,,,,,,2.589962601,3.222422251,3.986438767,0.198892388,,,,,-4731.711,,,,,0.763757036,45455,59515,0.595073865,0.932440207,74488,,,64897.70213,84078.29787,,,,,,,41985,29767.46809,54202.53192,,,,94877,87954.44681,101799.5532,,,,,,,,,,,45.98465989,,,,,0.157662979,,74488,,,8.018327606,7,873,,,,,,,,,,,,,,,,,,,,,,,,,,19.57104878,19,91676,10.95376744,32.2794687,20.72516253,,,,,,,,,,,,,34.46343182,17.80775813,60.20067977,,,,21.81596056,20,91676,13.32575547,33.6929817,,,,,,,,,,,,,26.08873898,14.26295637,43.77247102,,,,19.93795309,25,125389,12.90279199,29.43235188,,,,,,,31.45795523,16.75003628,53.79406151,,,,,,,,,,,,1400,,,,,0.803357143,11247,14000,,,0.583,,,,,6.711207769,,,,,0.792437968,6036,7617,0.761199758,0.823676177,0.111653117,824,7380,0.076649652,0.146656581,0.813312328,6195,7617,0.78073836,0.845886296,20139,,,,,0.171805949,3460,20139,,,0.309598292,6235,20139,,,0.295049407,5942,20139,,,0.009285466,187,20139,,,0.012513034,252,20139,,,0.001191718,24,20139,,,0.069566513,1401,20139,,,0.606931824,12223,20139,,,0.002639393,48,18186,0,0.008005374,0.504891008,10168,20139,,,1,18915,18915,, -13,135,13135,GA,Gwinnett County,2024,1,5949.071533,8398,2736565,5770.240169,6127.902897,0,,,,2,3571.152524,3178.467733,3963.837315,,7233.592336,6863.473946,7603.710727,,4994.709027,4656.296404,5333.12165,,6402.623274,6070.464768,6734.78178,,,,,2,,0.163,,,0.14,0.188,3.094844899,,,2.524170925,3.720099614,4.358205224,,,3.669708063,5.092184846,0.0911354,7029,77127,0.089104231,0.093166569,0,,,,0.092590491,0.086538768,0.098642214,0.129578485,0.12514935,0.134007621,0.072135438,0.068892805,0.075378071,0.070280716,0.066707871,0.073853561,,,,0.096456693,0.08163478,0.111278606,0.127,,,0.103,0.155,0.313,,,0.267,0.363,8.3,0.097083321,0.072,,,0.231,,,0.196,0.268,0.823338509,787986,957062,,,0.143551173,,,0.117441578,0.171611776,0.203389831,60,295,0.174561441,0.233570718,500.5,4828,964546,,,11.81306882,2888,244475,11.38222466,12.24391298,,,,1.500967729,1.062174098,2.060195478,8.383358837,7.734358215,9.032359458,26.81927414,25.55946804,28.07908023,5.225390449,4.684850751,5.765930146,,,,10.97377845,8.878442077,13.41487509,0.167687195,141584,844334,0.156963791,0.178410599,0.000659378,636,964546,,,1516.581761,0.000652072,636,975353,,,1533.573899,0.001462035,1426,975353,,,683.9782609,2608,,,,,,1808,3499,2238,2496,0.37,,,,,,0.3,0.34,0.27,0.39,0.45,,,,,,0.49,0.32,0.29,0.48,0.881918735,541230,613696,0.87665054,0.88718693,0.66610377,173558,260557,0.647897888,0.684309652,0.026910167,13493,501409,,,0.109,27003,,0.082787234,0.135212766,0.300955414,0.156346332,0.445564496,0.112581034,0.084482237,0.140679831,0.115595934,0.094944923,0.136246945,0.236833273,0.211845819,0.261820727,0.055623805,0.042828474,0.068419135,4.087555897,154481,37793,3.908801193,4.266310601,0.229223147,57833,252300,0.213239312,0.245206982,7.267667898,701,964546,,,47.42656024,2225,4691464,45.45589575,49.39722473,,,,30.33039685,25.87461251,34.78618119,45.77453793,42.11486053,49.43421534,32.34006413,28.84545185,35.83467641,65.58458146,61.68387823,69.4852847,,,,10.8,,,,,0,,,,,0.167976375,50340,299685,0.158689554,0.177263197,0.141097443,0.132208433,0.149986453,0.028129536,0.024494158,0.031764914,0.006006307,0.004426167,0.007586447,0.71907696,334360,464985,0.711730921,0.726422998,0.700866089,0.558643018,0.84308916,0.698843478,0.666213498,0.731473457,0.70130683,0.682912329,0.71970133,0.638423109,0.616720538,0.660125679,0.771907862,0.763650616,0.780165108,0.55,,464985,0.534975891,0.565024109,79.63436762,,,79.43578138,79.83295386,,,,84.60222992,83.87544849,85.32901136,77.51218658,77.09671373,77.92765943,84.26687506,83.09066664,85.44308347,78.7903669,78.49284607,79.08788774,,,,287.1581324,8398,2736565,280.9556659,293.3605989,,,,177.4326818,164.3690263,190.4963374,341.4125811,327.5540496,355.2711127,238.7505036,222.8403817,254.6606256,314.6052151,304.3309111,324.8795191,,,,42.32369818,466,1101038,38.48090757,46.1664888,,,,32.55122419,22.91906584,44.86757471,59.14421689,50.79992087,67.48851291,38.89158969,32.0461567,45.73702269,34.17401408,27.47590732,40.87212084,,,,6.306341162,489,77541,5.747383255,6.865299068,,,,3.777472528,2.600238275,5.304975878,9.521650419,8.233820067,10.80948077,5.577923167,4.629935301,6.525911034,5.066833953,4.097668122,6.035999783,,,,,,,0.099,,,0.085,0.114,0.139,,,0.12,0.159,0.111,,,0.096,0.127,422.6,3347,791939,,,0.072,68650,,,,0.097083321,78183.23692,805321,,,12.94214755,368,2843423,11.61982163,14.26447346,,,,4.13570631,2.314723427,6.821218619,10.87683346,8.72353849,13.40056303,6.902851199,4.99562764,9.298095264,22.2580311,19.29652283,25.21953936,,,,0.349,,,0.339,0.359,0.206853209,123426,596684,0.193746826,0.219959592,0.077559866,20256,261166,0.063261994,0.091857739,0.000995537,971,975353,,,1004.483007,0.812947747,12446.23,15310,,,0.06473905,3766,58172,0.051123443,0.078354657,3.224147086,,,,,,3.709696662,3.095130963,2.859450958,3.676061264,3.172438685,,,,,,3.92586254,2.937206424,2.807942529,3.677085364,0.133545629,,,,,-3390.67905,,,,,0.868575146,50730,58406,0.839975457,0.897174836,83918,,,81305.06383,86530.93617,51154,26910.76596,75397.23404,80134,74406.51064,85861.48936,76747,74467.68085,79026.31915,63883,60458.65957,67307.34043,101949,98139.80851,105758.1915,,,,,,,,,,,36.02623306,,,,,0.248802402,,83918,,,9.296126888,565,60778,,,5.204466233,338,6494422,4.649618371,5.759314094,,,,2.758139961,1.728511629,4.175857047,11.0268271,9.486994448,12.56665974,4.244879165,3.231398697,5.475584848,2.415483504,1.829463617,3.12953905,,,,11.74453645,540,4691464,10.73234381,12.75672909,11.51026631,,,,9.279943871,6.951314762,12.13839507,7.68632932,6.072297379,9.300361262,5.827744343,4.436349009,7.517365603,18.1011646,16.0196834,20.18264581,,,,11.40368977,535,4691464,10.43736174,12.37001779,,,,6.134237565,4.296344577,8.492370455,15.30895528,13.1925268,17.42538376,6.192778238,4.758700833,7.923253517,13.76913865,11.98184702,15.55643028,,,,9.100116993,591,6494422,8.366432556,9.833801429,,,,6.769979903,5.085817265,8.833355239,11.13877458,9.591145261,12.6864039,9.065335166,7.482430846,10.64823949,8.644888328,7.458572363,9.831204294,,,,8.241965974,,105800,,,664,208,0.735930082,413865,562370,,,0.691,,,,,89.63625505,,,,,0.666296612,211863,317971,0.656627736,0.675965488,0.158309921,49248,311086,0.149022975,0.167596867,0.922074655,293193,317971,0.915694249,0.92845506,975353,,,,,0.257411419,251067,975353,,,0.114527766,111705,975353,,,0.294105826,286857,975353,,,0.008434895,8227,975353,,,0.138245333,134838,975353,,,0.001010916,986,975353,,,0.222997212,217501,975353,,,0.319599161,311722,975353,,,0.081606075,73314,898389,0.077515534,0.085696616,0.50899418,496449,975353,,,0.004728011,4525,957062,, -13,137,13137,GA,Habersham County,2024,1,9404.389767,746,127472,8357.444306,10451.33523,0,,,,2,,,,2,19604.66467,9401.198734,36053.67633,1,4859.468214,3202.420174,7070.27112,,9962.727794,8732.65244,11192.80315,,,,,2,,0.183,,,0.153,0.216,4.040649123,,,3.224121315,4.979173566,5.362135315,,,4.367257724,6.473474497,0.083379655,300,3598,0.074346275,0.092413036,0,,,,,,,0.158536585,0.07948119,0.237591981,0.065392354,0.050023516,0.080761192,0.088358459,0.07697498,0.099741939,,,,,,,0.177,,,0.138,0.22,0.322,,,0.253,0.396,7.6,0.078664806,0.114,,,0.267,,,0.216,0.321,0.711064283,32731,46031,,,0.15671069,,,0.125513102,0.193046363,0.235294118,8,34,0.146684527,0.331775647,245.9,115,46774,,,24.79948373,269,10847,21.83586336,27.7631041,,,,,,,,,,38.29620946,31.09071398,46.67081293,21.13732442,17.80965455,24.4649943,,,,,,,0.210561386,7584,36018,0.189114578,0.232008195,0.000470347,22,46774,,,2126.090909,0.000442338,21,47475,,,2260.714286,0.00056872,27,47475,,,1758.333333,2749,,,,,,,,,2814,0.44,,,,,,0.22,0.21,0.15,0.46,0.44,,,,,,0.25,0.4,0.33,0.44,0.807116165,25270,31309,0.782591457,0.831640873,0.454090747,5084,11196,0.399054372,0.509127121,0.030779062,578,18779,,,0.158,1626,,0.098425532,0.217574468,,,,0.09540636,0,0.398257296,0.596685083,0.349648213,0.843721953,0.222025496,0.121616183,0.322434809,0.128875666,0.086855378,0.170895953,4.600668013,118458,25748,4.002174821,5.199161205,0.216565498,2212,10214,0.155325128,0.277805868,11.33108137,53,46774,,,81.98014941,187,228104,70.22998418,93.73031463,,,,,,,,,,27.88311399,13.37103696,51.27803938,97.32694411,82.69625782,111.9576304,,,,8.6,,,,,0,,,,,0.127785059,1950,15260,0.099185247,0.156384871,0.103471074,0.076390174,0.130551975,0.020969856,0.010562418,0.031377293,0.006225426,0.002181532,0.01026932,0.777299129,16059,20660,0.750515635,0.804082622,,,,,,,,,,0.571313131,0.446169595,0.696456667,0.784906222,0.7534848,0.816327645,0.358,,20660,0.314368057,0.401631944,75.38913056,,,74.57863164,76.19962948,,,,,,,,,,85.52784989,76.19814193,94.85755785,74.85204466,73.9422606,75.76182871,,,,447.8297768,746,127472,414.0456199,481.6139336,,,,,,,701.675249,462.4084105,1020.900648,201.101347,128.8494276,299.2228637,478.6233894,439.2112256,518.0355533,,,,58.69692819,27,45999,38.68164554,85.40094881,,,,,,,,,,,,,50.59363195,28.31687174,83.44650186,,,,6.155567991,22,3574,3.857661688,9.319603914,,,,,,,,,,,,,,,,,,,,,,0.126,,,0.107,0.147,0.173,,,0.148,0.202,0.106,,,0.091,0.124,126.4,50,39546,,,0.114,5220,,,,0.078664806,3385.811901,43041,,,24.6111083,34,138149,17.04390794,34.39155701,,,,,,,,,,,,,31.37687429,21.59839652,44.06479731,,,,0.351,,,0.335,0.367,0.25421163,6549,25762,0.225615885,0.282807374,0.10424782,1124,10782,0.075652076,0.132843565,0.000863612,41,47475,,,1157.926829,0.98,450.8,460,,,,,,,,3.143647557,,,,,,,,2.865365775,3.269502835,3.066850422,,,,,,,,2.765045608,3.184600258,0.07574863,,,,,-2437.275,,,,,0.806588021,37195,46114,0.732913143,0.880262899,62428,,,56537.2766,68318.7234,,,,58875,6551.93617,111198.0638,68068,23826.80851,112309.1915,59144,37512.51064,80775.48936,61397,54793.76596,68000.23404,,,,,,,,,,,50.776179,,,,,0.188120715,,62428,,,4.795278495,13,2711,,,3.793314915,12,316346,1.96006117,6.626157767,,,,,,,,,,,,,4.105899356,1.968938336,7.550895103,,,,17.10247099,41,228104,12.16152875,23.37964085,17.97425736,,,,,,,,,,,,,20.9227679,14.57347446,29.09850527,,,,11.83670606,27,228104,7.800463881,17.22178587,,,,,,,,,,,,,15.45780877,10.18679338,22.49030019,,,,21.81156076,69,316346,16.97069619,27.60392611,,,,,,,,,,,,,24.2248062,18.44104488,31.24823502,,,,,,4200,,,,,0.62131671,20432,32885,,,0.613,,,,,16.23196075,,,,,0.753171857,11754,15606,0.724277902,0.782065812,0.118196884,1783,15085,0.092323657,0.144070112,0.841599385,13134,15606,0.812981343,0.870217426,47475,,,,,0.219989468,10444,47475,,,0.18719326,8887,47475,,,0.03580832,1700,47475,,,0.010510795,499,47475,,,0.023085835,1096,47475,,,0.010194839,484,47475,,,0.170152712,8078,47475,,,0.752374934,35719,47475,,,0.045667421,1999,43773,0.033166339,0.058168503,0.517493418,24568,47475,,,0.593339271,27312,46031,, -13,139,13139,GA,Hall County,2024,1,7723.31129,2639,578371,7292.138243,8154.484338,0,,,,2,3830.456094,1836.852585,7044.345137,1,12225.16128,10251.87736,14198.44521,,5980.74939,5296.13202,6665.36676,,8152.16706,7552.951215,8751.382904,,,,,2,,0.179,,,0.152,0.206,3.777645294,,,3.013965398,4.60801993,4.851160766,,,3.931596761,5.847751755,0.06975715,1261,18077,0.066043633,0.073470667,0,,,,0.081355932,0.050158898,0.112552967,0.125204583,0.106648605,0.14376056,0.065920398,0.06049627,0.071344526,0.063232726,0.057905393,0.06856006,,,,0.08650519,0.054095023,0.118915358,0.16,,,0.128,0.192,0.387,,,0.325,0.453,7.9,0.073750799,0.102,,,0.264,,,0.22,0.309,0.66914284,135927,203136,,,0.167765505,,,0.135553067,0.204410614,0.185185185,25,135,0.142935484,0.230960636,420,871,207369,,,25.45551983,1235,48516,24.03579374,26.87524592,,,,,,,17.63942931,13.69770707,22.36217981,40.30353284,37.51412509,43.09294059,14.1480237,12.5978625,15.69818489,,,,25.54399243,16.83365197,37.16516788,0.208608502,35884,172016,0.191927651,0.225289353,0.000597968,124,207369,,,1672.330645,0.00051718,110,212692,,,1933.563636,0.001039061,221,212692,,,962.4072398,3131,,,,,,,4244,1802,3150,0.45,,,,,,0.24,0.36,0.2,0.47,0.48,,,,,,0.45,0.33,0.29,0.49,0.810508259,109618,135246,0.79996852,0.821047998,0.494487396,25520,51609,0.465571946,0.523402846,0.023887059,2560,107171,,,0.173,8581,,0.133680851,0.212319149,0.231023102,0,0.490603349,0.101135191,0,0.267506698,0.144539615,0.066572347,0.222506882,0.377951649,0.338856322,0.417046977,0.115799758,0.09128054,0.140318977,4.179973917,144230,34505,3.870106618,4.489841216,0.245388374,12305,50145,0.212072877,0.278703871,7.185259127,149,207369,,,67.94890399,693,1019884,62.88981976,73.00798822,,,,,,,68.01632392,50.64262068,89.42890477,31.3841419,25.331053,38.44769412,88.47578424,81.02707797,95.92449052,,,,9.3,,,,,0,,,,,0.16062848,10530,65555,0.145696313,0.175560647,0.117982287,0.104692064,0.131272511,0.050491953,0.041671532,0.059312375,0.007627183,0.004083929,0.011170437,0.748689596,72989,97489,0.731318481,0.76606071,,,,0.679012346,0.596892078,0.761132614,0.740303359,0.696272426,0.784334291,0.676733322,0.627377442,0.726089203,0.786491979,0.76486992,0.808114038,0.375,,97489,0.351560645,0.398439355,77.66565736,,,77.27350928,78.05780543,,,,83.42771097,80.0353684,86.82005354,72.62625217,71.11493854,74.1375658,85.81757267,82.7026065,88.93253883,77.23085856,76.74241527,77.71930184,,,,375.9119215,2639,578371,361.1935908,390.6302522,,,,190.0566312,126.2912512,274.6847489,584.9322011,514.388873,655.4755292,296.8668883,261.7966499,331.9371268,392.71282,373.9301736,411.4954664,,,,41.55718805,93,223788,33.54201419,50.91036294,,,,,,,77.39477288,41.20945699,132.3474187,49.51158881,36.50593708,65.64518364,29.99340145,20.23642201,42.81744556,,,,4.698988336,85,18089,3.753384986,5.810371846,,,,,,,,,,5.013159544,3.581474676,6.826500434,3.701875617,2.497639934,5.284657625,,,,,,,0.12,,,0.103,0.138,0.163,,,0.139,0.186,0.111,,,0.095,0.128,191.4,331,172915,,,0.102,20500,,,,0.073750799,13251.83853,179684,,,17.30268871,107,618401,14.02416916,20.58120825,,,,,,,,,,,,,24.89359342,20.06774975,30.52978248,,,,0.331,,,0.317,0.343,0.251793348,30924,122815,0.230346539,0.273240156,0.103917375,5393,51897,0.081279077,0.126555673,0.001800726,383,212692,,,555.3315927,0.87,2249.82,2586,,,0.069141572,799,11556,0.038398815,0.099884328,2.669036822,,,,,,2.94210656,2.317690719,2.352555288,3.144035259,2.68621586,,,,,,3.160778611,2.369234505,2.440606838,3.050972704,0.163568908,,,,,-6351.0935,,,,,0.817909126,40628,49673,0.764584173,0.871234078,76789,,,72287.55319,81290.44681,73497,72287.6383,74706.3617,71742,46774.34043,96709.65957,61661,45938.10638,77383.89362,66961,63417.51064,70504.48936,81829,77686.19149,85971.80851,,,,,,,,,,,46.00081033,,,,,0.271900923,,76789,,,9.029522613,115,12736,,,4.042392643,57,1410056,3.061668711,5.237388544,,,,,,,15.39853329,8.80159226,25.00625334,3.210011284,1.709195816,5.489217058,3.167980401,2.087719046,4.609245158,,,,16.03153652,164,1019884,13.53729779,18.52577524,16.08026011,,,,,,,,,,5.925748577,3.511974161,9.365237496,21.19457236,17.41915814,24.96998658,,,,12.74654765,130,1019884,10.55537313,14.93772217,,,,,,,13.3365341,6.395386488,24.52636105,5.399422262,3.086236351,8.768323479,16.65042434,13.4190945,19.88175418,,,,13.40372297,189,1410056,11.4927673,15.31467864,,,,,,,21.17298327,13.26899589,32.05615112,9.876957798,7.056243458,13.44961319,14.90124114,12.30958933,17.49289296,,,,10.71428571,,21000,,,204,21,0.702900183,90523,128785,,,0.631,,,,,55.6658546,,,,,0.699987029,48570,69387,0.684583004,0.715391055,0.124878164,8456,67714,0.109779945,0.139976383,0.920734432,63887,69387,0.910065935,0.931402928,212692,,,,,0.237065804,50422,212692,,,0.160922837,34227,212692,,,0.076693059,16312,212692,,,0.008613394,1832,212692,,,0.025478156,5419,212692,,,0.001796024,382,212692,,,0.298163542,63417,212692,,,0.585311154,124491,212692,,,0.081304619,15630,192240,0.073876993,0.088732245,0.49930886,106199,212692,,,0.259481333,52710,203136,, -13,141,13141,GA,Hancock County,2024,1,15299.32314,265,23068,12176.91877,18421.72751,0,,,,2,,,,2,16115.46611,12417.96801,19812.96421,,,,,2,14813.27165,9048.331161,22877.89663,1,,,,2,,0.286,,,0.249,0.325,5.082041146,,,4.129893495,6.14880379,5.561230137,,,4.434696244,6.821518253,0.16751269,66,394,0.130638658,0.204386722,0,,,,,,,0.183976261,0.142607415,0.225345108,,,,,,,,,,,,,0.251,,,0.209,0.298,0.436,,,0.355,0.521,4.8,0.297275945,0.139,,,0.366,,,0.312,0.425,0.001946194,17,8735,,,0.119970898,,,0.094262189,0.150874662,0.181818182,4,22,0.079048597,0.307478905,706.8,61,8630,,,29.20962199,34,1164,20.22851236,40.81751898,,,,,,,29.56705385,19.64709256,42.73262507,,,,,,,,,,,,,0.155537943,785,5047,0.132899646,0.178176241,0.000115875,1,8630,,,8630,0.000119232,1,8387,,,8387,0.000357696,3,8387,,,2795.666667,2762,,,,,,,2449,,1726,0.45,,,,,,,0.4,,0.49,0.38,,,,,,,0.28,,0.45,0.7509474,4954,6597,0.699652369,0.802242432,0.39673913,876,2208,0.27176397,0.521714291,0.049323787,124,2514,,,0.379,461,,0.224106383,0.533893617,,,,,,,0.56056338,0.387154432,0.733972329,,,,,,,5.556731638,86096,15494,3.677139705,7.436323572,0.7109375,819,1152,0.487220112,0.934654889,0,0,8630,,,110.6142622,47,42490,81.27519926,147.0935193,,,,,,,103.9814846,70.65037393,147.5934173,,,,132.3501607,72.35706444,222.0610808,,,,9.6,,,,,0,,,,,0.16286645,500,3070,0.102007167,0.223725733,0.159075687,0.089929853,0.22822152,0.004885994,0,0.021908498,0.006188925,0,0.015253859,0.855623722,2092,2445,0.778965318,0.932282126,,,,,,,0.727272727,0.279915525,1,,,,,,,0.536,,2445,0.365929762,0.706070238,71.07074695,,,69.03863201,73.10286188,,,,,,,69.86374046,67.53356462,72.19391629,,,,72.48803266,68.31499592,76.66106939,,,,733.3637453,265,23068,635.8366234,830.8908672,,,,,,,769.5600561,648.9500294,890.1700828,,,,742.2065474,549.0884897,981.2364167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.161,,,0.141,0.184,0.187,,,0.164,0.214,0.174,,,0.152,0.198,514.7,40,7772,,,0.139,1200,,,,0.297275945,2803.014882,9429,,,,,,,,,,,,,,,,,,,,,,,,,,0.442,,,0.426,0.456,0.18630491,721,3870,0.156517676,0.216092144,0.054936306,69,1256,0.034680987,0.075191625,0.000476929,4,8387,,,2096.75,0.875,54.25,62,,,,,,,,2.377971987,,,,,,,2.325983771,,,1.591671317,,,,,,,1.628480202,,,,,,,,-31238.59,,,,,0.715179577,34290,47946,0.402078456,1.028280698,38570,,,32792.46809,44347.53192,,,,,,,24790,18908.80851,30671.19149,,,,57304,35566.46809,79041.53192,,,,,,,,,,,33.14022814,,,,,0.304485351,,38570,,,11.73020528,4,341,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,53.61840452,32,59681,36.674949,75.69318892,,,,,,,64.10865229,42.24800582,93.27472325,,,,,,,,,,,,500,,,,,0.560565276,4165,7430,,,0.27,,,,,0.220023803,,,,,0.751526032,2093,2785,0.693392184,0.809659881,0.213378176,571,2676,0.123692453,0.3030639,0.542549372,1511,2785,0.467556509,0.617542235,8387,,,,,0.146774771,1231,8387,,,0.253845237,2129,8387,,,0.671276976,5630,8387,,,0.005961607,50,8387,,,0.010969357,92,8387,,,0.000357696,3,8387,,,0.03111959,261,8387,,,0.274949326,2306,8387,,,0.005228137,44,8416,0,0.018014259,0.444020508,3724,8387,,,1,8735,8735,, -13,143,13143,GA,Haralson County,2024,1,11673.26812,682,84697,10351.91908,12994.61716,0,,,,2,,,,2,20945.97107,11451.35729,35143.78032,1,,,,2,11643.35121,10283.31764,13003.38478,,,,,2,,0.172,,,0.14,0.204,4.214663441,,,3.299567375,5.199791172,5.679065125,,,4.53560444,6.859679975,0.087867795,218,2481,0.076727763,0.099007828,0,,,,,,,0.172413793,0.093037819,0.251789768,,,,0.083949543,0.072613658,0.095285429,,,,,,,0.187,,,0.144,0.231,0.338,,,0.261,0.419,7.7,0.061752013,0.12,,,0.255,,,0.204,0.307,0.402085631,12030,29919,,,0.171675663,,,0.135418192,0.212656372,0.2,9,45,0.125379593,0.283736902,274.8,84,30572,,,31.40275515,212,6751,27.17552499,35.6299853,,,,,,,,,,,,,31.54781466,27.08535053,36.01027878,,,,64.1025641,30.73967113,117.8868977,0.153714174,3942,25645,0.134650345,0.172778004,0.000425226,13,30572,,,2351.692308,0.000223378,7,31337,,,4476.714286,0.000606312,19,31337,,,1649.31579,3388,,,,,,,5668,,3341,0.32,,,,,,,0.31,,0.32,0.36,,,,,,,0.31,,0.37,0.84099008,17464,20766,0.81780553,0.86417463,0.543026332,4310,7937,0.461819049,0.624233615,0.030242555,394,13028,,,0.193,1442,,0.125085106,0.260914894,,,,,,,0.104438642,0,0.325620285,,,,0.185238553,0.122962456,0.247514649,4.772917373,126678,26541,3.21538007,6.330454676,0.187273235,1342,7166,0.120023263,0.254523206,8.831610624,27,30572,,,113.6849989,170,149536,96.5952858,130.7747121,,,,,,,147.1020889,70.54116941,270.5259789,,,,117.2488552,99.02391462,135.4737957,,,,9.5,,,,,1,,,,,0.126582279,1450,11455,0.094176752,0.158987805,0.112576957,0.074603207,0.150550707,0.011348756,0.000419932,0.02227758,0.011785247,0.003038799,0.020531694,0.792032509,10915,13781,0.752583641,0.831481376,,,,,,,0.801538462,0.412155281,1,,,,0.796750739,0.736588706,0.856912771,0.42,,13781,0.356986094,0.483013906,72.33053996,,,71.36330578,73.29777415,,,,,,,,,,,,,72.17444507,71.19045548,73.15843466,,,,628.1658996,682,84697,579.8385619,676.4932373,,,,,,,790.8860413,547.7115748,1105.18397,,,,639.0477481,588.226777,689.8687192,,,,63.28713373,20,31602,38.65742543,97.74184515,,,,,,,,,,,,,61.14448081,35.61891332,97.89823694,,,,8.006405124,20,2498,4.89052025,12.36524336,,,,,,,,,,,,,,,,,,,,,,0.124,,,0.104,0.145,0.179,,,0.152,0.207,0.101,,,0.084,0.117,130.2,33,25341,,,0.12,3550,,,,0.061752013,1777.222925,28780,,,29.75304969,27,90747,19.60744722,43.2891252,,,,,,,,,,,,,30.44177098,19.7003091,44.93805915,,,,0.357,,,0.339,0.376,0.188603926,3449,18287,0.16358265,0.213625203,0.06926463,535,7724,0.049009311,0.089519949,0.000638223,20,31337,,,1566.85,0.975,360.75,370,,,0.182437032,268,1469,0.078580652,0.286293412,3.147083692,,,,,,,,,3.222251018,3.10056311,,,,,,,,,3.176093556,0.020183558,,,,,819.1054,,,,,0.777723163,44303,56965,0.701069238,0.854377088,57912,,,50829.78723,64994.21277,,,,,,,44955,18332.3617,71577.6383,,,,69839,63338.23404,76339.76596,,,,,,,,,,,33.86022795,,,,,0.202790441,,57912,,,4.988913526,9,1804,,,8.67754252,18,207432,5.142861651,13.7142583,,,,,,,,,,,,,8.496176721,4.856299094,13.79725871,,,,24.18074866,35,149536,16.64491475,33.95876143,23.40573507,,,,,,,,,,,,,24.46785874,16.62472291,34.7301724,,,,23.40573507,35,149536,16.30295207,32.55171154,,,,,,,,,,,,,22.85983969,15.53215198,32.44771771,,,,28.92514173,60,207432,22.07293038,37.23239105,,,,,,,,,,,,,29.20560748,22.00166046,38.01511256,,,,,,3000,,,,,0.635504014,14248,22420,,,0.622,,,,,12.22857015,,,,,0.725455666,8239,11357,0.685928964,0.764982368,0.120358276,1290,10718,0.084570682,0.15614587,0.835784098,9492,11357,0.793718164,0.877850032,31337,,,,,0.2427801,7608,31337,,,0.15716246,4925,31337,,,0.046813671,1467,31337,,,0.00357405,112,31337,,,0.00852028,267,31337,,,0.000446756,14,31337,,,0.024443948,766,31337,,,0.89896927,28171,31337,,,0.00420926,119,28271,0,0.009913394,0.50783419,15914,31337,,,0.756609512,22637,29919,, -13,145,13145,GA,Harris County,2024,1,7994.891914,522,99484,6836.285909,9153.49792,0,,,,2,,,,2,13262.22582,9399.836819,17124.61483,,,,,2,7512.840406,6216.2099,8809.470913,,,,,2,,0.131,,,0.111,0.157,3.316673463,,,2.572216792,4.122155089,4.678327958,,,3.737387786,5.62580596,0.074274471,151,2033,0.062875956,0.085672987,0,,,,,,,0.136363636,0.099337035,0.173390238,,,,0.064202335,0.051968002,0.076436667,,,,,,,0.137,,,0.108,0.172,0.33,,,0.263,0.402,9.3,0.003354732,0.074,,,0.2,,,0.161,0.245,0.163464867,5667,34668,,,0.186021184,,,0.149948596,0.225135216,0.205882353,7,34,0.119526223,0.303561189,325.6,116,35626,,,10.55052076,78,7393,8.339748844,13.1675274,,,,,,,18.71440195,11.8633255,28.08079162,,,,9.248982612,6.864773166,12.19363053,,,,,,,0.098555176,2824,28654,0.085448793,0.111661559,0.000280694,10,35626,,,3562.6,0.000192965,7,36276,,,5182.285714,0.000330797,12,36276,,,3023,2271,,,,,,,2177,,2050,0.44,,,,,,0.25,0.45,,0.44,0.39,,,,,,0.6,0.34,0.39,0.4,0.93430538,22940,24553,0.919068636,0.949542124,0.697422154,5465,7836,0.611460283,0.783384026,0.02729868,459,16814,,,0.104,797,,0.064680851,0.143319149,,,,,,,0.165733483,0.037424873,0.294042093,,,,0.082397682,0.041749848,0.123045516,3.495489821,155392,44455,3.07665383,3.914325812,0.135879099,1007,7411,0.096301197,0.175457,9.824285634,35,35626,,,78.70782287,138,175332,65.57571542,91.83993033,,,,,,,74.00881057,45.81262021,113.1303286,,,,85.89140339,70.19295065,101.5898561,,,,9.8,,,,,0,,,,,0.101769912,1265,12430,0.070689958,0.132849865,0.093279022,0.062378798,0.124179247,0.00925181,0.000323772,0.018179849,0.001609011,0,0.005813187,0.814555947,12703,15595,0.775793056,0.853318839,,,,,,,0.7251693,0.578273983,0.872064618,,,,0.635034803,0.584363769,0.685705837,0.376,,15595,0.31853611,0.43346389,78.37607115,,,77.3220822,79.43006009,,,,,,,73.18305091,70.47523787,75.89086394,,,,78.91071736,77.71304414,80.10839058,,,,372.0917363,522,99484,337.6993533,406.4841194,,,,,,,604.0201823,491.7868941,716.2534706,,,,344.2713144,306.5681875,381.9744414,,,,44.68142147,15,33571,25.00785241,73.69520977,,,,,,,,,,,,,48.09040997,24.84901659,84.00426822,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.099,,,0.084,0.115,0.149,,,0.127,0.172,0.094,,,0.08,0.109,154.8,47,30366,,,0.074,2530,,,,0.003354732,107.4319261,32024,,,17.76663986,19,106942,10.69667779,27.74480894,,,,,,,,,,,,,22.10351814,13.0999457,34.93308807,,,,0.339,,,0.324,0.355,0.115082407,2402,20872,0.098401556,0.131763258,0.056269113,460,8175,0.039588262,0.072949964,0.000165399,6,36276,,,6046,0.92,408.48,444,,,,,,,,3.180856749,,,,,,,2.772919325,3.33112035,3.264804774,2.95447563,,,,,,,2.559837199,3.137828405,3.051995176,0.01046428,,,,,2415.322,,,,,0.839160305,54965,65500,0.702432642,0.975887969,90636,,,86531.31915,94740.68085,,,,,,,65128,48219.57447,82036.42553,75833,55328.65957,96337.34043,91928,81656.17021,102199.8298,,,,,,,,,,,27.22607486,,,,,0.165574386,,90636,,,6.470588235,11,1700,,,,,,,,,,,,,,,,,,,,,,,,,,15.12413238,27,175332,9.690316989,22.50351013,15.39935665,,,,,,,,,,,,,18.06683585,11.32238984,27.35340659,,,,14.25866356,25,175332,9.227455255,21.0486002,,,,,,,,,,,,,14.93763537,9.124295754,23.06996632,,,,17.32923483,42,242365,12.48938821,23.42409126,,,,,,,,,,,,,17.25346417,11.80135672,24.35674345,,,,,,3400,,,,,0.739996298,19991,27015,,,0.659,,,,,8.233892798,,,,,0.892330384,10890,12204,0.861700162,0.922960605,0.091266115,1069,11713,0.06354724,0.118984989,0.856358571,10451,12204,0.82848141,0.884235732,36276,,,,,0.214549565,7783,36276,,,0.194040137,7039,36276,,,0.159196163,5775,36276,,,0.005871651,213,36276,,,0.013700518,497,36276,,,0.001902084,69,36276,,,0.050942772,1848,36276,,,0.749834601,27201,36276,,,0.002229251,74,33195,0,0.006542165,0.493549454,17904,36276,,,0.971904927,33694,34668,, -13,147,13147,GA,Hart County,2024,1,9934.814616,501,71472,8489.256519,11380.37271,0,,,,2,,,,2,11489.30751,8244.925435,15586.54297,,,,,2,9691.348032,8005.126149,11377.56992,,,,,2,,0.194,,,0.166,0.224,4.237972652,,,3.420844822,5.11727605,5.429703667,,,4.420042608,6.514983516,0.096464949,161,1669,0.082300973,0.110628925,0,,,,,,,0.154727794,0.116785305,0.192670283,,,,0.080944351,0.065421271,0.096467431,,,,,,,0.202,,,0.162,0.242,0.359,,,0.284,0.436,,,0.125,,,0.277,,,0.229,0.325,0.510531206,13186,25828,,,0.144678355,,,0.114693419,0.177410614,0.214285714,6,28,0.11834453,0.322712758,268.8,71,26409,,,23.49605023,116,4937,19.22020538,27.77189509,,,,,,,24.41505595,15.64318703,36.32766795,,,,23.81661209,18.88509217,29.64183536,,,,,,,0.166792719,3308,19833,0.145345911,0.188239528,0.000416525,11,26409,,,2400.818182,0.000334461,9,26909,,,2989.888889,0.000222974,6,26909,,,4484.833333,3383,,,,,,,1291,,3268,0.42,,,,,,,0.42,,0.41,0.49,,,,,,,0.44,,0.49,0.828580415,15806,19076,0.801428065,0.855732765,0.567194005,3406,6005,0.472990181,0.661397829,0.030220461,366,12111,,,0.204,1082,,0.121787234,0.286212766,,,,0.312,0,0.924319339,0.24176858,0.064567253,0.418969906,,,,0.068728522,0.024699406,0.112757639,4.610911197,111478,24177,3.586850267,5.634972126,0.153846154,830,5395,0.080874985,0.226817323,13.25305767,35,26409,,,77.15047398,101,130913,62.10402617,92.19692179,,,,,,,48.97959184,25.30846983,85.55748999,,,,85.92031913,68.53341149,106.3752015,,,,9.4,,,,,1,,,,,0.150925024,1550,10270,0.108000994,0.193849054,0.131565783,0.088254367,0.174877199,0.019474197,0.007343854,0.03160454,0.008763389,0,0.019401081,0.796508456,8760,10998,0.75422363,0.838793282,,,,,,,0.631353337,0.517651118,0.745055557,,,,0.815505993,0.748359223,0.882652764,0.267,,10998,0.210294619,0.323705381,75.44340363,,,74.29270241,76.59410485,,,,,,,74.37274264,71.21148199,77.53400329,,,,75.46162198,74.16026912,76.76297484,,,,473.3787123,501,71472,428.4757609,518.2816638,,,,,,,554.2235157,446.7823761,679.7059426,,,,465.0213412,413.7988496,516.2438328,,,,54.65859401,13,23784,29.10339931,93.4678604,,,,,,,,,,,,,63.40752013,30.40637053,116.6086871,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.132,,,0.114,0.151,0.18,,,0.157,0.203,0.117,,,0.1,0.134,149.8,34,22699,,,0.125,3230,,,,,,25213,,,22.77904328,18,79020,13.50030471,36.00070902,,,,,,,,,,,,,25.41597479,14.22512815,41.91978527,,,,0.367,,,0.351,0.381,0.200178854,2910,14537,0.172774599,0.227583109,0.077157179,431,5586,0.054518881,0.099795477,0.000408785,11,26909,,,2446.272727,0.97,223.1,230,,,,,,,,3.007245913,,,,,,,2.404692139,,3.303446983,2.773918464,,,,,,,2.201547285,,3.000361033,0.02448807,,,,,-3551.946,,,,,0.81948862,39678,48418,0.728880138,0.910097102,56137,,,52488.65957,59785.34043,,,,233112,144300.766,321923.234,44583,34445.80851,54720.19149,53933,42192.06383,65673.93617,67765,63763.97872,71766.02128,,,,,,,,,,,42.94559755,,,,,0.267328144,,56137,,,7.228915663,9,1245,,,,,,,,,,,,,,,,,,,,,,,,,,12.49082261,16,130913,6.828848953,20.9574779,12.22185726,,,,,,,,,,,,,16.1066082,8.576090522,27.54279056,,,,12.98572334,17,130913,7.564662386,20.79140102,,,,,,,,,,,,,14.32005319,7.828906333,24.02661599,,,,23.62637363,43,182000,17.09852374,31.82457023,,,,,,,,,,,,,24.2445615,16.68884058,34.04837838,,,,,,2300,,,,,0.623414156,12727,20415,,,0.586,,,,,18.10117146,,,,,0.752671459,7748,10294,0.723374702,0.781968216,0.081494406,794,9743,0.048136704,0.114852109,0.829512337,8539,10294,0.783265411,0.875759264,26909,,,,,0.200044595,5383,26909,,,0.229105504,6165,26909,,,0.178676279,4808,26909,,,0.003158795,85,26909,,,0.013415586,361,26909,,,0.000334461,9,26909,,,0.042327846,1139,26909,,,0.746813334,20096,26909,,,0.006922365,172,24847,0.000504368,0.013340362,0.501282099,13489,26909,,,0.769126529,19865,25828,, -13,149,13149,GA,Heard County,2024,1,12784.47231,269,33000,10358.50526,15210.43936,0,,,,2,,,,2,5802.950094,2653.4783,11015.80687,1,,,,2,13952.10738,11177.44865,16726.76611,,,,,2,,0.199,,,0.169,0.231,4.39970065,,,3.510459775,5.379682497,5.900575496,,,4.730679186,7.127472864,0.090909091,72,792,0.070887398,0.110930784,0,,,,,,,0.226415094,0.113740807,0.339089381,,,,0.076258993,0.056526393,0.095991593,,,,,,,0.214,,,0.174,0.257,0.36,,,0.281,0.445,7.2,0.011195522,0.165,,,0.288,,,0.237,0.342,0.004381353,50,11412,,,0.157771301,,,0.123908466,0.19496033,0.190476191,4,21,0.083840113,0.319045344,250.8,29,11565,,,31.41361257,78,2483,24.83115715,39.20561017,,,,,,,,,,,,,29.59728287,22.63957621,38.01894804,,,,,,,0.174619932,1654,9472,0.153173124,0.196066741,0.000172936,2,11565,,,5782.5,,0,11725,,,,0.000341151,4,11725,,,2931.25,5006,,,,,,,1623,,4753,0.31,,,,,,,0.18,,0.33,0.39,,,,,,,0.38,,0.39,0.840723751,6598,7848,0.809828787,0.871618715,0.465637633,1267,2721,0.365601653,0.565673614,0.029831145,159,5330,,,0.212,562,,0.130978723,0.293021277,,,,,,,0.298387097,0.075066997,0.521707197,0.099236641,0,0.48980907,0.20326766,0.127105204,0.279430116,4.789380836,111310,23241,3.904081186,5.674680485,0.256586483,672,2619,0.167882653,0.345290314,5.188067445,6,11565,,,125.2750973,74,59070,98.36789613,157.2714127,,,,,,,,,,,,,138.0082805,107.3786798,174.6583117,,,,9.4,,,,,1,,,,,0.112903226,525,4650,0.07038127,0.155425182,0.094896851,0.051686598,0.138107105,0.01827957,0.00203077,0.03452837,0.00172043,0.000577485,0.002863376,0.861744966,3852,4470,0.83295209,0.890537843,,,,,,,,,,,,,0.78376876,0.697517434,0.870020087,0.584,,4470,0.489563663,0.678436337,72.93888697,,,71.12203032,74.75574362,,,,,,,,,,,,,72.15728735,70.14412872,74.17044598,,,,607.0701707,269,33000,530.3439459,683.7963954,,,,,,,416.164965,250.5584947,649.893144,,,,650.2604418,564.1517896,736.369094,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.137,,,0.119,0.157,0.187,,,0.163,0.212,0.115,,,0.099,0.133,174,17,9769,,,0.165,1880,,,,0.011195522,132.4878054,11834,,,,,,,,,,,,,,,,,,,,,,,,,,0.357,,,0.342,0.373,0.20979936,1443,6878,0.182395105,0.237203616,0.083241658,227,2727,0.057028892,0.109454424,0.000426439,5,11725,,,2345,0.925,128.575,139,,,,,,,,3.376677167,,,,,,,,,3.440638495,3.033036828,,,,,,,,,3.100869684,0.026530897,,,,,-682.457,,,,,0.64410699,35375,54921,0.520791922,0.767422058,56724,,,48713.61702,64734.38298,,,,,,,55385,3725.595745,107044.4043,,,,63295,50986.91489,75603.08511,,,,,,,,,,,30.76263215,,,,,0.207037586,,56724,,,3.210272873,2,623,,,,,,,,,,,,,,,,,,,,,,,,,,25.11148241,14,59070,13.37080679,42.9413997,23.70069409,,,,,,,,,,,,,25.25155308,12.60548432,45.18200366,,,,25.39360081,15,59070,14.21260561,41.8828828,,,,,,,,,,,,,26.00156009,13.84473567,44.46345964,,,,36.54258429,30,82096,24.65512817,52.16681129,,,,,,,,,,,,,41.74403708,27.95663678,59.9514005,,,,,,1200,,,,,0.601003345,5391,8970,,,0.623,,,,,3.671085955,,,,,0.713507378,3143,4405,0.658164975,0.768849781,0.104545455,437,4180,0.058558133,0.150532776,0.743246311,3274,4405,0.680663248,0.805829374,11725,,,,,0.23010661,2698,11725,,,0.175266525,2055,11725,,,0.095778252,1123,11725,,,0.006226013,73,11725,,,0.00554371,65,11725,,,0.000511727,6,11725,,,0.035906183,421,11725,,,0.83684435,9812,11725,,,0.024859589,270,10861,0.000847742,0.048871437,0.498848614,5849,11725,,,1,11412,11412,, -13,151,13151,GA,Henry County,2024,1,8497.711489,3421,687976,8087.497941,8907.925037,0,,,,2,4869.552368,3086.878487,7306.719481,1,8914.388569,8318.886545,9509.890593,,5075.16233,3923.739465,6226.585195,,8994.996163,8292.135299,9697.857027,,,,,2,,0.16,,,0.137,0.185,3.49942469,,,2.814514567,4.270392582,5.040848584,,,4.155723789,5.978238952,0.114809531,2173,18927,0.110267789,0.119351274,0,,,,0.110154905,0.084696738,0.135613072,0.145339652,0.138475561,0.152203744,0.094539939,0.081646012,0.107433867,0.068622126,0.061954617,0.075289634,,,,0.103515625,0.077128298,0.129902953,0.145,,,0.117,0.176,0.379,,,0.315,0.445,8.3,0.123556642,0.059,,,0.232,,,0.192,0.275,0.66023713,158927,240712,,,0.173233599,,,0.139742046,0.2095314,0.17037037,23,135,0.128811682,0.215980623,663,1626,245235,,,13.03567247,835,64055,12.1514811,13.91986384,,,,,,,13.17227146,11.9329845,14.41155842,19.59069442,15.96244704,23.2189418,10.82427319,9.413034106,12.23551228,,,,21.0989011,15.5566641,27.97408184,0.118809108,25025,210632,0.105702725,0.131915491,0.000485249,119,245235,,,2060.798319,0.000358345,89,248364,,,2790.606742,0.001763541,438,248364,,,567.0410959,2856,,,,,,2180,3113,,2794,0.42,,,,,,0.35,0.45,0.28,0.42,0.38,,,,,,0.45,0.32,0.3,0.41,0.924688302,144919,156722,0.916447313,0.93292929,0.6350079,39387,62026,0.595841572,0.674174228,0.03150761,3803,120701,,,0.117,7149,,0.075297872,0.158702128,,,,0.152608213,0.050636036,0.25458039,0.156137416,0.121717464,0.190557369,0.107981221,0.056307339,0.159655103,0.075114268,0.034772841,0.115455696,3.396038432,143503,42256,3.166227196,3.625849669,0.267444355,16209,60607,0.233658595,0.301230115,6.07580484,149,245235,,,67.06565626,788,1174968,62.3829907,71.74832182,,,,38.68771278,21.65321916,63.80949879,60.43255276,53.96105794,66.90404758,30.09921163,19.66180435,44.10231889,86.91621277,78.45116615,95.38125939,,,,10.2,,,,,0,,,,,0.118918228,9300,78205,0.105081027,0.132755429,0.10592101,0.091490321,0.120351699,0.011060674,0.007206165,0.014915183,0.00620165,0.001901166,0.010502133,0.771535516,89252,115681,0.751670377,0.791400655,,,,0.740561471,0.626150441,0.854972502,0.676777108,0.639949725,0.713604491,0.693218025,0.609573295,0.776862755,0.800160307,0.771988314,0.8283323,0.538,,115681,0.507459731,0.568540269,76.0188883,,,75.65385888,76.38391773,,,,82.91459853,80.20918262,85.62001444,75.53346827,74.96583447,76.10110207,84.90632127,81.00937274,88.8032698,75.3317414,74.7778886,75.88559421,,,,433.5778312,3421,687976,418.8344549,448.3212075,,,,210.4468667,156.6915151,276.6987646,440.1001301,417.9568648,462.2433954,257.9542721,205.1661907,310.7423535,473.9074466,450.1168964,497.6979968,,,,55.98199559,149,266157,46.99299699,64.97099419,,,,,,,74.63868093,60.66263682,90.8699159,54.51968161,30.51425193,89.92192371,31.72477,20.90682333,46.15787473,,,,7.1655622,133,18561,5.947749438,8.383374963,,,,,,,9.097640961,7.276938458,11.23551258,,,,5.247122546,3.565165196,7.447871615,,,,,,,0.107,,,0.092,0.122,0.155,,,0.134,0.177,0.112,,,0.097,0.13,526.7,1076,204276,,,0.059,13880,,,,0.123556642,25195.91745,203922,,,14.60493647,105,718935,11.81135659,17.39851635,,,,,,,11.09833696,7.892002507,15.17179197,,,,22.86346455,17.52928717,29.3099297,,,,0.412,,,0.397,0.425,0.143676789,21661,150762,0.126995938,0.16035764,0.058970924,3742,63455,0.042290073,0.075651775,0.001256221,312,248364,,,796.0384615,0.88,3239.28,3681,,,0.083987288,1295,15419,0.054061643,0.113912934,2.761177794,,,,,,3.319148006,2.614851882,2.685870874,2.975137017,2.645395534,,,,,,3.528310184,2.487891373,2.564579979,2.87999088,0.090345186,,,,,-6879.588,,,,,0.863954931,51528,59642,0.810307726,0.917602136,82379,,,77259.17021,87498.82979,50903,40367.85106,61438.14894,88941,76567.38298,101314.617,79788,75966.89362,83609.10638,75816,68474.04255,83157.95745,81968,76838.6383,87097.3617,,,,,,,,,,,37.37978955,,,,,0.253450515,,82379,,,14.04872216,188,13382,,,9.352885613,151,1614475,7.861076621,10.84469461,,,,,,,14.79569052,12.01803707,17.57334397,,,,4.927211646,3.391665782,6.919637069,,,,15.2934068,182,1174968,13.03092169,17.5558919,15.48978355,,,,,,,9.982489584,7.455400692,13.09070699,,,,23.31721974,18.85337436,27.78106513,,,,20.2558708,238,1174968,17.68240435,22.82933725,,,,,,,22.36906431,18.43181381,26.30631481,,,,20.81696948,16.88115991,25.39493738,,,,14.36999644,232,1614475,12.52086093,16.21913195,,,,,,,15.33865164,12.51049126,18.16681202,10.42843487,5.388524471,18.21637703,14.93094438,12.00447928,17.85740948,,,,8.754716981,,26500,,,188,44,0.742091898,122742,165400,,,0.694,,,,,63.20989453,,,,,0.72231005,59397,82232,0.706831274,0.737788825,0.111482623,8969,80452,0.096609101,0.126356145,0.900318611,74035,82232,0.887199588,0.913437634,248364,,,,,0.248023063,61600,248364,,,0.12542478,31151,248364,,,0.527495933,131011,248364,,,0.004541721,1128,248364,,,0.034517885,8573,248364,,,0.001199852,298,248364,,,0.081509398,20244,248364,,,0.330925577,82190,248364,,,0.013562661,3084,227389,0.010394627,0.016730696,0.524234591,130201,248364,,,0.188208315,45304,240712,, -13,153,13153,GA,Houston County,2024,1,9103.824444,2434,460159,8575.84176,9631.807127,0,,,,2,4942.917075,3284.5325,7143.891413,,11006.68919,9992.180351,12021.19804,,4494.346119,3195.919441,6143.919097,,8719.161097,8013.066516,9425.255678,,,,,2,,0.161,,,0.138,0.185,3.856380749,,,3.117451738,4.645797244,5.229193878,,,4.3524944,6.14710384,0.095036187,1300,13679,0.090121578,0.099950796,0,,,,0.093506494,0.064424181,0.122588806,0.130074732,0.120704571,0.139444893,0.090208173,0.074616955,0.105799391,0.071887427,0.065626187,0.078148668,,,,0.066825776,0.042914517,0.090737034,0.157,,,0.126,0.19,0.378,,,0.317,0.441,8,0.09995312,0.087,,,0.248,,,0.206,0.293,0.743670287,121689,163633,,,0.181164594,,,0.147033321,0.218923094,0.146666667,11,75,0.09308273,0.209354102,632.4,1055,166829,,,22.60778128,817,36138,21.05752684,24.15803573,,,,,,,26.78438938,24.02136816,29.5474106,38.18181818,31.51486502,44.84877134,16.10533122,14.19833228,18.01233015,,,,32.93622985,24.20030285,43.79820346,0.126940145,18050,142193,0.111450783,0.142429506,0.000527486,88,166829,,,1895.784091,0.000512878,87,169631,,,1949.781609,0.001809811,307,169631,,,552.5439739,3793,,,,,,1357,5336,1440,3473,0.47,,,,,,0.38,0.46,0.34,0.48,0.33,,,,,,0.33,0.28,0.23,0.35,0.92980259,100229,107796,0.919207934,0.940397247,0.713771806,32937,46145,0.66586527,0.761678343,0.031011477,2194,70748,,,0.156,6626,,0.103574468,0.208425532,,,,0.240802676,0.063533661,0.41807169,0.146622258,0.103030463,0.190214053,0.298921833,0.204517067,0.393326599,0.052811171,0.033043779,0.072578564,4.215479762,137686,32662,3.853333595,4.57762593,0.257625168,10744,41704,0.217397246,0.29785309,6.653519472,111,166829,,,62.48818898,496,793750,56.98881605,67.9875619,,,,48.78048781,25.20558987,85.20969532,47.76409237,39.2883512,56.23983353,22.46433786,11.60765118,39.24067739,77.94339476,69.65832957,86.22845995,,,,10.1,,,,,1,,,,,0.133873191,7770,58040,0.118171502,0.14957488,0.109265734,0.092937527,0.125593941,0.023432116,0.016426277,0.030437955,0.007150241,0.002874996,0.011425486,0.815686626,63657,78041,0.790804642,0.84056861,,,,0.791709845,0.655952566,0.927467123,0.825865165,0.810760615,0.840969715,0.761660344,0.686909454,0.836411233,0.825458319,0.797310548,0.85360609,0.269,,78041,0.243584663,0.294415337,75.35592895,,,74.9107893,75.80106861,,,,81.15475072,78.23892228,84.07057916,73.61306042,72.75156164,74.47455919,82.76089669,79.9272168,85.59457657,75.51187817,74.94020847,76.08354788,,,,460.8854312,2434,460159,442.2345359,479.5363264,,,,254.2917273,183.2711098,343.7285422,534.9366127,498.0977702,571.7754551,217.8114276,160.5969524,288.7863531,456.1785984,432.1308468,480.22635,,,,67.70632243,121,178713,55.6422868,79.77035806,,,,,,,104.1666667,80.56249245,132.5255405,,,,53.06767334,38.55905269,71.24087451,,,,8.108108108,111,13690,6.599716482,9.616499734,,,,,,,12.41098678,9.493421477,15.94243172,,,,6.033182504,4.310194034,8.215482197,,,,,,,0.112,,,0.097,0.128,0.161,,,0.138,0.184,0.108,,,0.093,0.125,332.5,455,136828,,,0.087,14100,,,,0.09995312,13983.44149,139900,,,14.02634478,68,484802,10.89200555,17.78173423,,,,,,,7.57011822,3.91159055,13.22347307,,,,19.37248348,14.42408639,25.47123808,,,,0.392,,,0.377,0.406,0.156607617,15683,100142,0.136352298,0.176862936,0.05849108,2577,44058,0.041810229,0.075171931,0.001291038,219,169631,,,774.5707763,0.89,1885.91,2119,,,0.052276746,473,9048,0.021868716,0.082684776,3.119536581,,,,,,3.737143811,2.701288695,2.975033789,3.460651061,2.963666751,,,,,,3.660297159,2.583886972,2.85033721,3.270831583,0.06544648,,,,,-2909.264,,,,,0.761269976,46828,61513,0.714091339,0.808448612,71237,,,66777.25532,75696.74468,95907,69303.42553,122510.5745,100663,44510.48936,156815.5106,59425,53500.91489,65349.08511,72420,50139.14894,94700.85106,85168,80782.12766,89553.87234,,,,,,,,,,,23.26419693,,,,,0.210662998,,71237,,,11.28114577,115,10194,,,5.018683189,55,1095905,3.780759005,6.532506009,,,,,,,9.225703965,6.310374682,13.0239413,,,,3.11640426,1.876278942,4.866651288,,,,17.06357618,133,793750,14.11807976,20.0090726,16.75590551,,,,,,,8.821669706,5.460752588,13.48485923,,,,22.08522728,17.62930252,26.54115205,,,,16.88188976,134,793750,14.02347838,19.74030114,,,,,,,14.87734025,10.52809141,20.42031184,,,,19.94433925,15.97459814,24.60126878,,,,11.67984451,128,1095905,9.656414684,13.70327434,,,,,,,11.24382671,7.995459942,15.37068125,,,,12.13757449,9.530606574,15.23761328,,,,35.26946108,,16700,,,450,139,0.666693398,74823,112230,,,0.684,,,,,45.72626655,,,,,0.669279126,40563,60607,0.652112275,0.686445977,0.104496281,6182,59160,0.087424628,0.121567934,0.906776445,54957,60607,0.895538723,0.918014167,169631,,,,,0.253049266,42925,169631,,,0.137056316,23249,169631,,,0.33735579,57226,169631,,,0.004256298,722,169631,,,0.032853665,5573,169631,,,0.001827496,310,169631,,,0.070252489,11917,169631,,,0.527639406,89504,169631,,,0.010410777,1602,153879,0.006134314,0.014687241,0.514793876,87325,169631,,,0.089774068,14690,163633,, -13,155,13155,GA,Irwin County,2024,1,12438.72494,206,26102,9784.403419,15093.04645,0,,,,2,,,,2,18219.52447,12760.73095,25223.50165,,,,,2,10321.1587,7408.23939,13234.07801,,,,,2,,0.218,,,0.186,0.249,4.619566132,,,3.727901366,5.603574697,5.621993974,,,4.543530484,6.798161179,0.126801153,88,694,0.102044352,0.151557953,0,,,,,,,0.222772277,0.165389033,0.280155522,,,,0.084821429,0.059021246,0.110621611,,,,,,,0.215,,,0.174,0.257,0.388,,,0.311,0.471,8,0.028233414,0.121,,,0.309,,,0.256,0.365,0.487792262,4715,9666,,,0.153499668,,,0.121804608,0.190050387,0,0,10,0,0.200587713,426.3,41,9618,,,29.79613173,57,1913,22.5672992,38.6043447,,,,,,,29.31034483,17.07435598,46.92870141,,,,28.93617021,20.03913905,40.43539753,,,,,,,0.162237969,1099,6774,0.14079116,0.183684777,0.000311915,3,9618,,,3206,0.000109577,1,9126,,,9126,0.000109577,1,9126,,,9126,3866,,,,,,,3542,,3384,0.44,,,,,,,0.23,,0.48,0.32,,,,,,,0.33,,0.31,0.817429928,5337,6529,0.7619354,0.872924456,0.528853755,1338,2530,0.407361682,0.650345828,0.039581566,140,3537,,,0.279,557,,0.169382979,0.388617021,,,,,,,0.419497784,0.237901232,0.601094337,0.133333333,0,0.416484116,0.277504105,0.137683904,0.417324306,3.994824116,83356,20866,2.85342458,5.136223651,0.385981757,804,2083,0.292943953,0.479019561,5.198585985,5,9618,,,101.6324716,48,47229,74.93576155,134.7499125,,,,,,,77.48334108,37.1562738,142.494623,,,,120.5124952,85.28181417,165.4128153,,,,9.2,,,,,0,,,,,0.110791367,385,3475,0.061892457,0.159690277,0.071856287,0.027829697,0.115882878,0.021582734,0,0.044699588,0.021582734,0,0.047390863,0.845265589,3294,3897,0.776284378,0.9142468,,,,,,,,,,,,,0.787346221,0.685954788,0.888737655,0.365,,3897,0.24565463,0.48434537,72.28431681,,,70.30437892,74.26425471,,,,,,,66.93698405,63.30839314,70.56557496,,,,74.14479383,71.8451966,76.44439105,,,,613.8379601,206,26102,527.5591893,700.1167309,,,,,,,882.7707667,685.506042,1119.122295,,,,548.6014099,451.9160457,645.2867741,,,,126.0744986,11,8725,62.93593544,225.5821033,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.142,,,0.122,0.163,0.182,,,0.157,0.207,0.131,,,0.113,0.151,967.2,80,8271,,,0.121,1170,,,,0.028233414,269.2903057,9538,,,,,,,,,,,,,,,,,,,,,,,,,,0.384,,,0.37,0.399,0.199509403,976,4892,0.170913658,0.228105148,0.067642605,134,1981,0.046195796,0.089089413,0.000657462,6,9126,,,1521,0.925,113.775,123,,,,,,,,2.927155503,,,,,,,2.655611949,,3.125227178,2.863969795,,,,,,,2.626154485,,3.077408356,0.006558575,,,,,-9234.994,,,,,0.812967164,34043,41875,0.527742279,1.09819205,49224,,,42272.85106,56175.14894,,,,,,,27143,16792.53192,37493.46809,81445,80559.7234,82330.2766,53972,43023.40426,64920.59575,,,,,,,,,,,63.341621,,,,,0.238582805,,49224,,,13.01518438,6,461,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,25.79822751,17,65896,15.02841822,41.30546136,,,,,,,,,,,,,31.69500351,17.32795336,53.17883028,,,,,,800,,,0,-888,0.568234492,4168,7335,,,0.482,,,,,0.615092214,,,,,0.720975883,2571,3566,0.683175597,0.75877617,0.110340669,366,3317,0.046345163,0.174336175,0.762759394,2720,3566,0.714028714,0.811490075,9126,,,,,0.22156476,2022,9126,,,0.190664037,1740,9126,,,0.245781284,2243,9126,,,0.003287311,30,9126,,,0.007999123,73,9126,,,0.000219154,2,9126,,,0.045474469,415,9126,,,0.68869165,6285,9126,,,0.002210922,20,9046,0,0.012381098,0.506026737,4618,9126,,,1,9666,9666,, -13,157,13157,GA,Jackson County,2024,1,9011.032938,1183,216322,8275.441327,9746.624548,0,,,,2,,,,2,9344.543776,6789.759813,12544.61386,,3946.847524,2443.160824,6033.175697,1,9523.203122,8669.784731,10376.62151,,,,,2,,0.162,,,0.135,0.192,3.940396638,,,3.125256623,4.892161128,5.280130757,,,4.286089497,6.396129306,0.075163399,483,6426,0.068716937,0.081609861,0,,,,,,,0.142180095,0.10885915,0.17550104,0.074120603,0.055921658,0.092319548,0.071223905,0.064012037,0.078435773,,,,,,,0.169,,,0.133,0.208,0.319,,,0.249,0.39,8,0.093541359,0.09,,,0.236,,,0.192,0.285,0.557616557,42327,75907,,,0.176404103,,,0.14188206,0.216298679,0.155844156,12,77,0.102038197,0.217812599,352.5,283,80286,,,14.88669238,247,16592,13.03014598,16.74323879,,,,,,,14.29706116,8.473344544,22.59552047,22.6044226,16.54927833,30.15113205,14.16157065,12.06933229,16.25380901,,,,,,,0.150764334,10326,68491,0.134083483,0.167445185,0.000560496,45,80286,,,1784.133333,0.000488467,41,83936,,,2047.219512,0.000583778,49,83936,,,1712.979592,3543,,,,,,,6533,,3512,0.44,,,,,,0.25,0.35,0.27,0.45,0.49,,,,,,0.51,0.37,0.37,0.5,0.878010803,45675,52021,0.862485811,0.893535795,0.599632301,12720,21213,0.552824377,0.646440225,0.020453708,944,46153,,,0.099,2038,,0.057297872,0.140702128,,,,,,,0.301482702,0.097126121,0.505839283,0.108927109,0.044888948,0.17296527,0.060713778,0.039127828,0.082299728,3.972654675,147747,37191,3.623575445,4.321733904,0.163906516,3177,19383,0.122328456,0.205484577,7.971501881,64,80286,,,75.66623027,278,367403,66.7714388,84.56102175,,,,,,,56.97572834,31.88888264,93.9727993,,,,85.04870818,74.52698353,95.57043282,,,,10.1,,,,,1,,,,,0.107334157,2605,24270,0.089587851,0.125080464,0.084647303,0.06790318,0.101391426,0.019571487,0.010367698,0.028775277,0.008034611,0.002368635,0.013700587,0.781119649,28464,36440,0.754456785,0.807782512,,,,0.829425557,0.755487854,0.90336326,0.756803908,0.740941606,0.77266621,0.724523685,0.636470002,0.812577367,0.741973375,0.717575709,0.766371042,0.522,,36440,0.479589004,0.564410997,75.45133565,,,74.8380984,76.06457291,,,,,,,74.17809689,71.97426758,76.38192621,88.82175509,81.74393853,95.89957164,74.89223497,74.21510705,75.56936289,,,,458.4682614,1183,216322,431.8933216,485.0432013,,,,,,,513.2082368,412.6800273,630.8200532,147.6183858,91.37810747,225.6503836,481.9370964,451.9121055,511.9620873,,,,49.8183453,41,82299,35.75050471,67.5842107,,,,,,,,,,,,,46.839164,31.36892324,67.26885266,,,,4.981520167,31,6223,3.384701266,7.07087024,,,,,,,,,,,,,5.165289256,3.342702861,7.624985888,,,,,,,0.117,,,0.1,0.136,0.165,,,0.141,0.189,0.1,,,0.086,0.117,158.9,105,66080,,,0.09,6680,,,,0.093541359,5657.849068,60485,,,20.91849631,48,229462,15.42364785,27.73489126,,,,,,,,,,,,,24.0809558,17.49725935,32.32755917,,,,0.34,,,0.324,0.355,0.184776076,8916,48253,0.162137778,0.207414374,0.073124675,1549,21183,0.054060846,0.092188505,0.000893538,75,83936,,,1119.146667,0.955967008,840.295,879,,,0.068382353,279,4080,0.023929706,0.112835,3.252153794,,,,,,3.190828055,3.043950583,2.95291954,3.341989588,3.216435028,,,,,,3.036042157,2.979301609,2.934600012,3.296759683,0.021740811,,,,,-171.1336667,,,,,0.670535687,44136,65822,0.585697017,0.755374358,82138,,,74598.25532,89677.74468,,,,100000,66239.14894,133760.8511,41324,20088.08511,62559.91489,86813,67182.02128,106443.9787,82907,77578.65957,88235.34043,,,,,,,,,,,33.74507962,,,,,0.182704717,,82138,,,7.299270073,34,4658,,,3.229856796,16,495378,1.84614223,5.245085086,,,,,,,,,,,,,3.248099862,1.729476379,5.554349685,,,,20.96509931,79,367403,16.54532852,26.20277699,21.50227407,,,,,,,,,,,,,23.66762375,18.41482398,29.95289261,,,,18.78046723,69,367403,14.61232449,23.76788325,,,,,,,,,,,,,21.34688691,16.40353403,27.31194148,,,,19.37914078,96,495378,15.69716625,23.66524775,,,,,,,,,,,,,22.23699136,17.85813003,27.36453135,,,,,,7800,,,,,0.736965666,37670,51115,,,0.694,,,,,28.60508387,,,,,0.798834499,20562,25740,0.779134337,0.818534661,0.096177806,2393,24881,0.077386978,0.114968635,0.912121212,23478,25740,0.894106369,0.930136055,83936,,,,,0.248367804,20847,83936,,,0.145694339,12229,83936,,,0.079334255,6659,83936,,,0.004646397,390,83936,,,0.024804613,2082,83936,,,0.00086971,73,83936,,,0.104293748,8754,83936,,,0.773291556,64907,83936,,,0.014694284,1062,72273,0.009353077,0.020035491,0.501608368,42103,83936,,,0.628189759,47684,75907,, -13,159,13159,GA,Jasper County,2024,1,11363.35647,305,41061,9354.73354,13371.9794,0,,,,2,,,,2,17544.81615,11837.41378,25046.31599,,,,,2,10348.33736,8164.480395,12532.19432,,,,,2,,0.191,,,0.163,0.221,4.206382912,,,3.390860608,5.145179839,5.45361676,,,4.383095117,6.585501373,0.089609152,94,1049,0.072324587,0.106893717,0,,,,,,,0.141242938,0.089934597,0.192551279,,,,0.078167116,0.058852225,0.097482007,,,,,,,0.198,,,0.16,0.238,0.385,,,0.305,0.466,8.3,0.011333792,0.116,,,0.285,,,0.233,0.34,0.581368248,8481,14588,,,0.153775193,,,0.122217289,0.191552566,0.2,3,15,0.07369192,0.354373303,340.4,52,15278,,,20.82644628,63,3025,16.00361316,26.64607183,,,,,,,23.67941712,12.60829233,40.49252444,51.54639175,24.71849843,94.7956497,16.34877384,11.45048021,22.63359423,,,,,,,0.168322384,2101,12482,0.146875576,0.189769193,0.000327268,5,15278,,,3055.6,0.000125384,2,15951,,,7975.5,0.000438844,7,15951,,,2278.714286,1706,,,,,,,738,,1451,0.42,,,,,,,0.44,,0.42,0.44,,,,,,,0.37,,0.45,0.896205248,9187,10251,0.869648957,0.92276154,0.464922711,1564,3364,0.369830678,0.560014745,0.02608575,188,7207,,,0.187,674,,0.11193617,0.26206383,,,,,,,0.111298482,0,0.231623035,0.12,0,0.34202065,0.144633237,0.057284296,0.231982177,3.739133333,112174,30000,2.852766196,4.625500471,0.303566251,1047,3449,0.216620377,0.390512125,5.236287472,8,15278,,,90.29784397,65,71984,69.68996962,115.0920146,,,,,,,103.3897053,56.524114,173.4703576,,,,87.09348652,63.99301801,115.8158739,,,,9.9,,,,,1,,,,,0.121126761,645,5325,0.086275053,0.155978468,0.102588687,0.066934428,0.138242945,0.02629108,0.00792257,0.044659589,0.000751174,0,0.006358288,0.836547581,5292,6326,0.796970643,0.87612452,,,,,,,,,,,,,0.692071835,0.566808035,0.817335635,0.604,,6326,0.505206921,0.702793079,74.06806166,,,72.53403013,75.60209319,,,,,,,69.65213668,65.53895369,73.76531967,,,,74.57842176,72.88244226,76.27440126,,,,550.9227519,305,41061,485.3032281,616.5422758,,,,,,,798.3240972,621.1437989,1010.330239,,,,507.5720238,436.11083,579.0332175,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.131,,,0.112,0.15,0.179,,,0.155,0.206,0.117,,,0.1,0.135,163.3,21,12858,,,0.116,1680,,,,0.011333792,157.5397019,13900,,,,,,,,,,,,,,,,,,,,,,,,,,0.373,,,0.357,0.386,0.202792553,1830,9024,0.175388298,0.230196809,0.081073678,296,3651,0.056052402,0.106094955,0.00031346,5,15951,,,3190.2,0.875,142.625,163,,,,,,,,2.774578193,,,,,,,2.563107694,,2.8187156,2.45216133,,,,,,,2.230838612,,2.524183782,0.003171229,,,,,-930.6748,,,,,0.747213988,39828,53302,0.636973972,0.857454004,63718,,,54618.59575,72817.40426,,,,,,,38767,26420.78723,51113.21277,53681,4219.893617,103142.1064,67383,57870.14894,76895.85106,,,,,,,,,,,39.1543294,,,,,0.184312125,,63718,,,12.64222503,10,791,,,,,,,,,,,,,,,,,,,,,,,,,,26.7677113,19,71984,15.86424216,42.30452411,26.39475439,,,,,,,,,,,,,30.54663934,17.46004372,49.60582854,,,,29.17314959,21,71984,18.0586394,44.59425808,,,,,,,,,,,,,31.50189938,18.35101727,50.43759254,,,,19.13914156,19,99273,11.52301347,29.88814035,,,,,,,,,,,,,17.56329542,9.351715111,30.03377005,,,,,,1400,,,,,0.72352106,7644,10565,,,0.597,,,,,0.828039234,,,,,0.824954792,4562,5530,0.786815767,0.863093817,0.105222586,546,5189,0.065895684,0.144549488,0.771790235,4268,5530,0.725498012,0.818082458,15951,,,,,0.228637703,3647,15951,,,0.174346436,2781,15951,,,0.169268384,2700,15951,,,0.005266128,84,15951,,,0.004325748,69,15951,,,0.00031346,5,15951,,,0.043759012,698,15951,,,0.763086954,12172,15951,,,0.007880165,111,14086,0,0.017229003,0.507115541,8089,15951,,,1,14588,14588,, -13,161,13161,GA,Jeff Davis County,2024,1,12441.16068,362,42270,10510.4267,14371.89466,0,,,,2,,,,2,15991.44528,10938.13673,22575.14932,,,,,2,12684.97315,10356.6152,15013.3311,,,,,2,,0.227,,,0.195,0.262,4.670141003,,,3.732748097,5.67888779,5.684838871,,,4.585277826,6.897207937,0.099105812,133,1342,0.083118838,0.115092786,0,,,,,,,0.195121951,0.140872263,0.24937164,0.075539568,0.044475017,0.10660412,0.082240763,0.063650607,0.100830919,,,,,,,0.225,,,0.185,0.269,0.415,,,0.333,0.501,5.9,0.180262361,0.146,,,0.318,,,0.267,0.373,0.570133297,8426,14779,,,0.146008024,,,0.115131271,0.182797947,0.238095238,5,21,0.124889996,0.363491167,625.3,93,14872,,,35.70469799,133,3725,29.63655767,41.77283831,,,,,,,25.38071066,14.20539109,41.86162246,47.23346829,32.8998413,65.69032034,35.37532356,28.13504464,43.91010403,,,,,,,0.193153035,2364,12239,0.169323248,0.216982823,6.72405E-05,1,14872,,,14872,6.71637E-05,1,14889,,,14889,0.000201491,3,14889,,,4963,2467,,,,,,,,,2607,0.33,,,,,,,0.29,,0.33,0.37,,,,,,,0.28,0.43,0.37,0.805804261,7830,9717,0.758848728,0.852759793,0.494268195,1854,3751,0.376071067,0.612465324,0.036109304,222,6148,,,0.286,1062,,0.185914894,0.386085106,,,,,,,0.311912226,0.006713105,0.617111346,0.356181151,0.102046997,0.610315304,0.314822912,0.198328633,0.431317191,4.77032509,85842,17995,3.460358412,6.080291769,0.321883945,1237,3843,0.197208243,0.446559647,8.068854223,12,14872,,,97.00481038,73,75254,76.03628634,121.9689853,,,,,,,90.55510278,43.42469163,166.5340582,,,,107.1690451,81.16878817,138.8499284,,,,9,,,,,1,,,,,0.121595331,625,5140,0.075282958,0.167907704,0.093,0.046071564,0.139928436,0.037937743,0.013102234,0.062773252,0.005836576,0,0.015097179,0.845405593,4867,5757,0.785786503,0.905024684,,,,,,,,,,,,,0.845172514,0.76144192,0.928903108,0.336,,5757,0.229177148,0.442822852,71.96464632,,,70.55946338,73.36982926,,,,,,,69.66991671,65.92966754,73.41016587,,,,71.64477298,70.03133001,73.25821594,,,,675.9794985,362,42270,604.1036825,747.8553145,,,,,,,914.1904542,707.0348311,1163.074407,,,,675.7444807,592.4633112,759.0256502,,,,75.37979821,13,17246,40.13656785,128.9017507,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.15,,,0.13,0.171,0.191,,,0.167,0.218,0.131,,,0.114,0.151,245.7,30,12211,,,0.146,2150,,,,0.180262361,2716.193253,15068,,,,,,,,,,,,,,,,,,,,,,,,,,0.375,,,0.362,0.389,0.244799624,2083,8509,0.212629411,0.276969837,0.07688391,302,3928,0.053054123,0.100713698,0.000604473,9,14889,,,1654.333333,0.925,160.025,173,,,,,,,,3.026344772,,,,,,,2.833565085,2.566445604,3.282062743,2.843398179,,,,,,,2.522806906,2.802516393,2.952461115,0.004864029,,,,,-6071.127,,,,,0.805113576,38102,47325,0.639901082,0.970326071,46143,,,39353.89362,52932.10638,,,,,,,37669,16531.97872,58806.02128,61234,43418.85106,79049.14894,41964,33793.95745,50134.04255,,,,,,,,,,,37.96864298,,,,,0.254513144,,46143,,,8.045977012,7,870,,,,,,,,,,,,,,,,,,,,,,,,,,18.12113325,13,75254,9.363453982,31.65397299,17.27482925,,,,,,,,,,,,,22.90554555,11.43436581,40.98434816,,,,14.61716321,11,75254,7.296835208,26.15414266,,,,,,,,,,,,,18.80158685,9.016091707,34.57678764,,,,36.17290649,38,105051,25.59810154,49.65014033,,,,,,,,,,,,,34.89698678,22.79587037,51.13217111,,,,,,1600,,,,,0.524636364,5771,11000,,,0.494,,,,,9.21591141,,,,,0.675302889,3623,5365,0.605274464,0.745331314,0.113076312,569,5032,0.065968167,0.160184456,0.720782852,3867,5365,0.652333453,0.78923225,14889,,,,,0.253341393,3772,14889,,,0.159849553,2380,14889,,,0.147222782,2192,14889,,,0.008932769,133,14889,,,0.007253677,108,14889,,,0.001141783,17,14889,,,0.135200484,2013,14889,,,0.691114245,10290,14889,,,0.012892136,180,13962,0,0.027486343,0.505205185,7522,14889,,,0.667298193,9862,14779,, -13,163,13163,GA,Jefferson County,2024,1,14242.94919,433,42742,12127.70473,16358.19366,0,,,,2,,,,2,17421.90434,14087.14866,20756.66003,,,,,2,11306.62152,8559.852758,14053.39027,,,,,2,,0.246,,,0.216,0.28,4.792013004,,,3.887926342,5.937126157,5.692610776,,,4.590584316,7.046274594,0.124807396,162,1298,0.106827354,0.142787438,0,,,,,,,0.165644172,0.137107981,0.194180363,,,,0.078095238,0.055142647,0.10104783,,,,,,,0.225,,,0.188,0.269,0.436,,,0.357,0.523,8.6,0.003239832,0.107,,,0.337,,,0.287,0.397,0.505570055,7942,15709,,,0.133934983,,,0.106007932,0.167820587,0.1,2,20,0.019826373,0.233896636,657,102,15524,,,30.15681544,100,3316,24.24607961,36.06755127,,,,,,,29.85856469,22.61458531,38.68523384,,,,25.61912895,17.28511872,36.57289957,,,,,,,0.189479017,2244,11843,0.166840719,0.212117315,0.000128833,2,15524,,,7762,0.000195899,3,15314,,,5104.666667,6.52997E-05,1,15314,,,15314,3043,,,,,,,2947,,3034,0.37,,,,,,,0.33,,0.4,0.27,,,,,,,0.19,,0.3,0.80436019,8486,10550,0.772367303,0.836353076,0.381938911,1438,3765,0.295986675,0.467891147,0.03983703,264,6627,,,0.338,1176,,0.224808511,0.451191489,,,,,,,0.396802326,0.297731821,0.49587283,0.306122449,0,0.656575334,0.149800797,0.062535407,0.237066186,5.846596569,105648,18070,4.472588836,7.220604302,0.404407714,1468,3630,0.300010035,0.508805393,10.95078588,17,15524,,,98.40608046,76,77231,77.53279885,123.1698838,,,,,,,79.60793094,54.45176583,112.3826457,,,,131.8816133,95.44337743,177.6436676,,,,9.8,,,,,0,,,,,0.150402865,840,5585,0.108157575,0.192648155,0.129401089,0.085631137,0.173171041,0.032945389,0.008111117,0.057779662,0.005371531,0,0.013664305,0.785888078,4845,6165,0.741540311,0.830235845,,,,,,,0.798272671,0.735900472,0.860644871,,,,0.86618999,0.81542171,0.91695827,0.513,,6165,0.432629649,0.593370351,70.17897444,,,68.80812865,71.54982022,,,,,,,68.02546131,66.01568999,70.03523264,,,,72.00728345,70.10537899,73.9091879,,,,739.9472612,433,42742,666.3489361,813.5455863,,,,,,,864.4638778,751.8643529,977.0634027,,,,640.6781143,539.3716222,741.9846064,,,,69.69965784,11,15782,34.79381807,124.7119409,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.15,,,0.131,0.172,0.189,,,0.167,0.219,0.152,,,0.132,0.176,370,48,12973,,,0.107,1690,,,,0.003239832,54.850363,16930,,,,,,,,,,,,,,,,,,,,,,,,,,0.41,,,0.398,0.422,0.233357024,1970,8442,0.20356979,0.263144258,0.081939799,294,3588,0.056918523,0.106961076,0.000587698,9,15314,,,1701.555556,0.9,184.5,205,,,,,,,,2.40585746,,,,,,,2.218250634,,2.77920143,2.403708414,,,,,,,2.26183135,,2.631916005,0.027060381,,,,,-16456.32,,,,,0.712121818,35636,50042,0.596413346,0.82783029,44459,,,37915.34043,51002.65957,,,,,,,38245,32675.97872,43814.02128,37931,26884.70213,48977.29787,56339,46448.44681,66229.55319,,,,,,,,,,,28.12567983,,,,,0.26415349,,44459,,,22.01257862,21,954,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.94816848,10,77231,6.209150077,23.81214285,,,,,,,,,,,,,,,,,,,31.1204269,34,109253,21.5518003,43.48767731,,,,,,,40.27597801,25.53151514,60.43374233,,,,21.72024327,10.4157009,39.9443007,,,,,,1400,,,,,0.657093723,7642,11630,,,0.514,,,,,15.43179796,,,,,0.670099554,3904,5826,0.64076501,0.699434097,0.13200431,735,5568,0.081694134,0.182314487,0.788019224,4591,5826,0.744849617,0.831188831,15314,,,,,0.229267337,3511,15314,,,0.187344913,2869,15314,,,0.512145749,7843,15314,,,0.003264986,50,15314,,,0.007444169,114,15314,,,0.000914196,14,15314,,,0.041922424,642,15314,,,0.423207523,6481,15314,,,0.018950239,278,14670,0.006132549,0.031767929,0.51201515,7841,15314,,,1,15709,15709,, -13,165,13165,GA,Jenkins County,2024,1,11374.3261,204,24248,9017.735457,13730.91674,0,,,,2,,,,2,11890.51196,8569.635144,16072.51791,,,,,2,12719.05183,8795.585097,16642.51856,,,,,2,,0.27,,,0.239,0.305,5.027328208,,,4.094620453,6.075277218,5.805548947,,,4.637219121,7.035520884,0.139356815,91,653,0.112793935,0.165919694,0,,,,,,,0.195402299,0.147297318,0.24350728,,,,0.105590062,0.072023415,0.13915671,,,,,,,0.256,,,0.216,0.297,0.433,,,0.348,0.52,7.6,0.005758648,0.148,,,0.358,,,0.306,0.411,0.61782338,5359,8674,,,0.135334241,,,0.10637817,0.168366978,0.5,6,12,0.355111295,0.623019394,439.9,38,8639,,,30.78744819,52,1689,22.9935389,40.37364224,,,,,,,39.89361702,26.91605588,56.95061888,,,,24.81751825,14.45711893,39.73525083,,,,,,,0.179396392,1064,5931,0.155566605,0.203226179,0.000347262,3,8639,,,2879.666667,,0,8689,,,,0.000115088,1,8689,,,8689,4413,,,,,,,7200,,3268,0.35,,,,,,,0.26,,0.38,0.28,,,,,,,0.16,,0.31,0.815498714,5388,6607,0.77162338,0.859374047,0.457841852,1048,2289,0.316142547,0.599541158,0.042418773,141,3324,,,0.348,585,,0.208595745,0.487404255,,,,,,,0.195294118,0,0.414894724,0.691394659,0.143839045,1,0.031654676,0,0.107603775,5.174466995,80820,15619,3.069570024,7.279363967,0.487985213,792,1623,0.264278678,0.711691747,10.41787244,9,8639,,,96.52731493,42,43511,69.56839818,130.4768881,,,,,,,83.42138924,46.6903183,137.5908952,,,,118.7539965,77.57405324,174.0021197,,,,9.1,,,,,0,,,,,0.199115044,675,3390,0.113535104,0.284694985,0.187241583,0.103975544,0.270507622,0.016224189,0,0.036043792,0.026548673,0,0.059769175,0.766002099,2190,2859,0.639299565,0.892704633,,,,,,,,,,,,,0.682926829,0.552594842,0.813258816,0.305,,2859,0.157563121,0.452436879,72.97305315,,,71.13940553,74.80670078,,,,,,,72.18288476,69.49884931,74.8669202,,,,72.18613474,69.37505983,74.99720966,,,,633.1487411,204,24248,543.2553135,723.0421687,,,,,,,707.5555598,561.901247,879.4269565,,,,639.461781,514.904346,764.019216,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.164,,,0.144,0.185,0.197,,,0.172,0.222,0.163,,,0.141,0.186,390.8,29,7420,,,0.148,1290,,,,0.005758648,48.02712188,8340,,,,,,,,,,,,,,,,,,,,,,,,,,0.427,,,0.416,0.437,0.221524872,953,4302,0.189354659,0.253695085,0.069848661,120,1718,0.046018874,0.093678449,0.000805616,7,8689,,,1241.285714,0.825,67.65,82,,,,,,,,2.929538854,,,,,,,2.61447944,,3.406591473,2.832648673,,,,,,,2.549672882,,3.187473654,0.004769898,,,,,-14028.39,,,,,0.978176925,33438,34184,0.052770722,1.903583128,41830,,,35542.51064,48117.48936,,,,,,,28444,11885.87234,45002.12766,28835,15472.44681,42197.55319,36472,29382.6383,43561.3617,,,,,,,,,,,1.052954459,,,,,0.280755439,,41830,,,8.048289738,4,497,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,52.18781088,32,61317,35.69642401,73.67361756,,,,,,,47.1809389,24.37907961,82.41560529,,,,61.33979015,36.93056066,95.78968062,,,,,,700,,,,,0.518379595,3455,6665,,,0.269,,,,,9.536386129,,,,,0.827722172,2729,3297,0.75648197,0.898962374,0.161609907,522,3230,0.07738976,0.245830055,0.666666667,2198,3297,0.591470603,0.741862731,8689,,,,,0.197260905,1714,8689,,,0.172286799,1497,8689,,,0.400851652,3483,8689,,,0.005639314,49,8689,,,0.013925653,121,8689,,,0.002301761,20,8689,,,0.070664058,614,8689,,,0.49971228,4342,8689,,,0.021687604,183,8438,0,0.04527931,0.46794798,4066,8689,,,1,8674,8674,, -13,167,13167,GA,Johnson County,2024,1,13202.83777,224,26096,10512.66202,15893.01352,0,,,,2,,,,2,13340.09321,9343.23728,18468.31203,,,,,2,13950.88845,10243.5401,17658.23681,,,,,2,,0.251,,,0.219,0.285,4.900228211,,,3.98391463,5.821607981,5.928471444,,,4.818121563,7.044288436,0.100141044,71,709,0.078044404,0.122237683,0,,,,,,,0.139097744,0.097511259,0.18068423,,,,0.075242718,0.049771274,0.100714163,,,,,,,0.25,,,0.209,0.294,0.424,,,0.349,0.501,6.9,0.110502315,0.131,,,0.338,,,0.287,0.394,,,9189,,,0.143873383,,,0.113751167,0.178095819,0.222222222,2,9,0.058854756,0.422872156,676.9,62,9160,,,31.00338219,55,1774,23.3559904,40.35516346,,,,,,,42.55319149,27.26463272,63.31577588,,,,26.36363636,17.65614103,37.86257949,,,,,,,0.180896753,1053,5821,0.158258455,0.203535051,0.000545852,5,9160,,,1832,0.000108202,1,9242,,,9242,0.000108202,1,9242,,,9242,3748,,,,,,,1082,,3548,0.46,,,,,,,0.34,,0.49,0.4,,,,,,,0.33,,0.4,0.762492474,5066,6644,0.706196981,0.818787968,0.38300443,951,2483,0.293703998,0.472304863,0.028971029,116,4004,,,0.327,529,,0.210234043,0.443765957,,,,,,,0.39261745,0.155646791,0.629588108,0.26984127,0,0.553687528,0.199356913,0.083664372,0.315049455,5.450898308,93750,17199,4.614679112,6.287117504,0.463663664,772,1665,0.332780298,0.59454703,14.19213974,13,9160,,,79.2227828,38,47966,56.06275621,108.739459,,,,,,,67.75485063,33.82297732,121.2321436,,,,91.12078566,60.04917192,132.5759591,,,,9.4,,,,,0,,,,,0.129124821,450,3485,0.076264995,0.181984646,0.074269006,0.031122289,0.117415723,0.048780488,0.018084528,0.079476448,0.025824964,0.00436693,0.047282999,0.768503937,2440,3175,0.687397664,0.84961021,,,,,,,,,,,,,0.79333838,0.689671147,0.897005613,0.483,,3175,0.385961256,0.580038744,72.64962951,,,70.68369592,74.61556311,,,,,,,72.05171725,68.46569959,75.63773491,,,,72.10807138,69.5959502,74.62019255,,,,627.707514,224,26096,541.7779547,713.6370733,,,,,,,646.4679533,505.821359,814.1193971,,,,646.022122,534.7516737,757.2925703,,,,140.0203666,11,7856,69.89766252,250.5351135,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.156,,,0.136,0.177,0.19,,,0.166,0.215,0.151,,,0.131,0.172,225.8,18,7972,,,0.131,1220,,,,0.110502315,1102.813101,9980,,,,,,,,,,,,,,,,,,,,,,,,,,0.407,,,0.395,0.419,0.21898855,918,4192,0.189201316,0.248775784,0.08434431,146,1731,0.059323033,0.109365586,0.000757412,7,9242,,,1320.285714,0.875,84,96,,,,,,,,2.872301942,,,,,,,2.334676426,,3.269076446,2.829454462,,,,,,,2.263407029,,3.216711534,0.004782082,,,,,-12156.36,,,,,0.693519751,31250,45060,0.47199313,0.915046373,42603,,,36727.76596,48478.23404,,,,,,,32146,27026.17021,37265.82979,97386,52580.04255,142191.9575,56027,46209.12766,65844.87234,,,,,,,,,,,38.06372985,,,,,0.275661338,,42603,,,10.54852321,5,474,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,25.01772089,12,47966,12.92702145,43.70092367,,,,,,,,,,,,,,,,,,,23.83541645,16,67127,13.62399996,38.70722302,,,,,,,,,,,,,24.06680946,11.54097061,44.25971948,,,,,,700,,,,,0.521960535,4100,7855,,,0.485,,,,,0.24314943,,,,,0.729787234,2401,3290,0.670133117,0.789441352,0.094193113,279,2962,0.044926696,0.14345953,0.766869301,2523,3290,0.718295744,0.815442858,9242,,,,,0.177450768,1640,9242,,,0.202337157,1870,9242,,,0.33650725,3110,9242,,,0.004328068,40,9242,,,0.004652673,43,9242,,,0.000324605,3,9242,,,0.030729279,284,9242,,,0.611664142,5653,9242,,,0.004903079,43,8770,0,0.016114588,0.42436702,3922,9242,,,1,9189,9189,, -13,169,13169,GA,Jones County,2024,1,8549.779591,488,79768,7316.081737,9783.477444,0,,,,2,,,,2,9004.604509,5465.809385,12543.39963,1,,,,2,8739.98319,7357.608761,10122.35762,,,,,2,,0.177,,,0.153,0.204,4.077088888,,,3.237762461,4.99774034,5.303533516,,,4.248326148,6.439559676,0.088256228,124,1405,0.073423296,0.103089159,0,,,,,,,0.161538462,0.116803307,0.206273616,,,,0.068139963,0.053152869,0.083127058,,,,,,,0.184,,,0.151,0.221,0.367,,,0.293,0.445,7.6,0.123576037,0.095,,,0.259,,,0.215,0.309,0.86428899,24500,28347,,,0.155700584,,,0.123856436,0.191119721,0.208333333,5,24,0.105577141,0.326751616,545.8,155,28400,,,10.08752411,68,6741,7.83335718,12.78834048,,,,,,,10.04464286,5.953091953,15.87486622,,,,10.07667032,7.377389137,13.44086609,,,,,,,0.132098496,3031,22945,0.114226156,0.149970837,0.000246479,7,28400,,,4057.142857,0.000105367,3,28472,,,9490.666667,0.000456589,13,28472,,,2190.153846,2802,,,,,,,1473,,2897,0.52,,,,,,,0.4,,0.53,0.46,,,,,,,0.29,,0.48,0.916188056,18026,19675,0.891731661,0.94064445,0.578992559,4046,6988,0.496216551,0.661768566,0.029279279,390,13320,,,0.16,1018,,0.100425532,0.219574468,,,,,,,0.117361111,0.018529055,0.216193167,,,,0.246146973,0.167071706,0.32522224,4.560855013,119914,26292,3.657447805,5.464262221,0.264301344,1691,6398,0.187995858,0.34060683,6.690140845,19,28400,,,72.7232043,104,143008,58.74625441,86.70015418,,,,,,,36.30676423,19.33182285,62.08567256,,,,87.85698068,70.55636977,108.1155748,,,,9.9,,,,,0,,,,,0.114979386,1255,10915,0.083004479,0.146954294,0.094632768,0.065934162,0.123331375,0.024736601,0.00462739,0.044845813,0.003664682,0,0.009092762,0.83852063,10588,12627,0.787633295,0.889407966,,,,,,,,,,,,,0.743004253,0.65502172,0.830986787,0.518,,12627,0.453858463,0.582141537,76.43985251,,,75.38293313,77.49677189,,,,,,,77.14412288,74.25525739,80.03298837,,,,75.84611667,74.68376124,77.00847211,,,,445.8435252,488,79768,404.1600241,487.5270263,,,,,,,409.6408238,324.7774064,494.5042412,,,,471.760359,421.3604249,522.160293,,,,41.54117769,12,28887,21.4649327,72.56407743,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.123,,,0.107,0.141,0.172,,,0.15,0.196,0.115,,,0.099,0.132,120.3,29,24097,,,0.095,2690,,,,0.123576037,3542.801396,28669,,,12.80230907,11,85922,6.390866562,22.90686729,,,,,,,,,,,,,18.13625272,9.053552014,32.45076587,,,,0.378,,,0.363,0.393,0.160411,2654,16545,0.137772702,0.183049298,0.061825174,418,6761,0.042761344,0.080889004,0.000807811,23,28472,,,1237.913044,0.87,327.99,377,,,,,,,,3.102896662,,,,,,,2.788666381,,3.211776228,2.876266996,,,,,,,2.543146045,,2.963947593,0.030425014,,,,,-1388.693,,,,,0.756871148,42739,56468,0.684153518,0.829588778,65515,,,56787.34043,74242.65957,,,,,,,61500,52596,70404,,,,69419,61238.23404,77599.76596,,,,,,,,,,,27.75446619,,,,,0.229062047,,65515,,,5.586592179,8,1432,,,,,,,,,,,,,,,,,,,,,,,,,,16.6213278,27,143008,10.75644697,24.53635868,18.88006265,,,,,,,,,,,,,18.30000534,11.01779865,28.57772519,,,,20.27858581,29,143008,13.58088718,29.12343186,,,,,,,,,,,,,21.7174559,13.61021399,32.88048922,,,,18.98813242,38,200125,13.43713262,26.06269528,,,,,,,,,,,,,23.19190954,15.9642434,32.57006365,,,,,,2900,,,,,0.68478609,14966,21855,,,0.634,,,,,7.059877575,,,,,0.827521028,8756,10581,0.796624063,0.858417994,0.10939051,1102,10074,0.076759964,0.142021056,0.864852093,9151,10581,0.838867866,0.890836321,28472,,,,,0.226081765,6437,28472,,,0.183724361,5231,28472,,,0.252318067,7184,28472,,,0.003652711,104,28472,,,0.006497612,185,28472,,,0.000175611,5,28472,,,0.023180669,660,28472,,,0.700512785,19945,28472,,,0.00174559,47,26925,0,0.006473117,0.513311323,14615,28472,,,0.834127068,23645,28347,, -13,171,13171,GA,Lamar County,2024,1,12310.67228,431,53492,10540.52473,14080.81983,0,,,,2,,,,2,12284.01193,9144.706431,15423.31743,,,,,2,12775.0568,10518.16883,15031.94478,,,,,2,,0.178,,,0.154,0.205,3.951980728,,,3.160045952,4.861167742,5.281180169,,,4.248358309,6.380097836,0.123718387,181,1463,0.106846142,0.140590632,0,,,,,,,0.177545692,0.139274883,0.215816501,,,,0.103896104,0.084993665,0.122798543,,,,,,,0.182,,,0.15,0.22,0.384,,,0.304,0.465,7.8,0.091172568,0.1,,,0.259,,,0.214,0.309,0.538540541,9963,18500,,,0.159669081,,,0.126089063,0.19761567,0.375,6,16,0.240765683,0.502616143,356.4,68,19080,,,14.1754607,90,6349,11.39874439,17.42404785,,,,,,,7.391438251,4.735833956,10.99787422,,,,21.34707398,16.20972826,27.59604334,,,,,,,0.145822066,2157,14792,0.126758236,0.164885896,0.000262055,5,19080,,,3816,0.000102738,2,19467,,,9733.5,0.000667797,13,19467,,,1497.461539,3060,,,,,,,6396,,2371,0.36,,,,,,,0.42,,0.35,0.4,,,,,,,0.34,,0.41,0.894393742,10976,12272,0.856220123,0.932567361,0.572391355,2463,4303,0.467894501,0.676888209,0.032773209,275,8391,,,0.192,784,,0.114553192,0.269446809,,,,,,,0.189473684,0.041644836,0.337302532,,,,0.126221498,0.047191224,0.205251773,4.842001561,130245,26899,3.57476178,6.109241343,0.186330561,717,3848,0.082065899,0.290595224,6.813417191,13,19080,,,81.03813002,77,95017,63.95402492,101.2837582,,,,,,,78.86152633,49.42209869,119.3972986,,,,88.75262224,66.86062122,115.5237373,,,,9.7,,,,,1,,,,,0.137387387,915,6660,0.090828767,0.183946007,0.124302789,0.073178689,0.175426888,0.004504505,0,0.015189005,0.018768769,0.003968611,0.033568927,0.853370221,6786,7952,0.812630172,0.894110271,,,,,,,0.938559322,0.828796582,1,,,,0.834129178,0.741870407,0.926387949,0.427,,7952,0.330034432,0.523965568,72.53303736,,,71.26046858,73.80560614,,,,,,,73.19833053,70.78211219,75.61454887,,,,71.85919848,70.28815486,73.43024211,,,,635.4253087,431,53492,572.2203228,698.6302946,,,,,,,657.1692339,529.9450022,784.3934655,,,,647.7451482,571.3143934,724.175903,,,,64.42021804,13,20180,34.30105298,110.1605348,,,,,,,,,,,,,87.15356458,41.79352184,160.2785083,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.122,,,0.106,0.14,0.174,,,0.152,0.198,0.115,,,0.099,0.133,283.2,46,16240,,,0.1,1850,,,,0.091172568,1670.007928,18317,,,,,,,,,,,,,,,,,,,,,,,,,,0.392,,,0.378,0.404,0.175740298,1911,10874,0.150719021,0.200761575,0.0647901,267,4121,0.04572627,0.083853929,0.000410952,8,19467,,,2433.375,0.875,159.25,182,,,,,,,,3.154963349,,,,,,,2.761682986,,3.438104802,3.007501422,,,,,,,2.555334658,,3.342198546,0.002941609,,,,,-4388.673,,,,,0.687451286,38808,56452,0.471366392,0.90353618,61542,,,52977.57447,70106.42553,,,,,,,43793,24648.14894,62937.85106,185559,63841.21277,307276.7872,77234,68039.2766,86428.7234,,,,,,,,,,,42.33246311,,,,,0.243849729,,61542,,,20.38505096,18,883,,,,,,,,,,,,,,,,,,,,,,,,,,16.07706646,15,95017,8.789481837,26.9745857,15.78664871,,,,,,,,,,,,,17.83466807,8.155145908,33.8557554,,,,17.8915352,17,95017,10.42247858,28.64608103,,,,,,,,,,,,,,,,,,,16.7062808,22,131687,10.46973724,25.2935099,,,,,,,,,,,,,16.33395947,8.929927636,27.40560852,,,,,,1500,,,,,0.611156187,9039,14790,,,0.633,,,,,21.63909177,,,,,0.760769008,5263,6918,0.721424778,0.800113238,0.081781009,540,6603,0.04189256,0.121669457,0.825383059,5710,6918,0.772583512,0.878182606,19467,,,,,0.213797709,4162,19467,,,0.172702522,3362,19467,,,0.265629013,5171,19467,,,0.003647198,71,19467,,,0.00708892,138,19467,,,0.000410952,8,19467,,,0.032927518,641,19467,,,0.671957672,13081,19467,,,0,0,17806,0,0.006156185,0.51641239,10053,19467,,,0.631081081,11675,18500,, -13,173,13173,GA,Lanier County,2024,1,10009.17776,189,29349,7949.637992,12068.71753,0,,,,2,,,,2,11260.07283,7137.920273,16895.63789,1,,,,2,10713.58243,8048.831893,13378.33297,,,,,2,,0.244,,,0.213,0.28,4.917429314,,,4.002233087,6.073063978,6.097454894,,,4.956407288,7.456001421,0.114250614,93,814,0.092396733,0.136104495,0,,,,,,,0.227272727,0.165359061,0.289186393,,,,0.081560284,0.058972105,0.104148462,,,,,,,0.243,,,0.203,0.29,0.416,,,0.336,0.506,7,0.00236589,0.178,,,0.336,,,0.284,0.397,0.453174041,4476,9877,,,0.143916088,,,0.113557718,0.180854765,0.142857143,1,7,0.008995928,0.386311364,504.7,50,9907,,,27.02702703,57,2109,20.47000634,35.01664837,,,,,,,37.94642857,22.10519301,60.75590807,,,,25.58139535,17.60905548,35.92579013,,,,,,,0.146344426,1205,8234,0.124897617,0.167791234,,0,9907,,,,9.83187E-05,1,10171,,,10171,0.000393275,4,10171,,,2542.75,5861,,,,,,,1033,,6635,0.29,,,,,,,0.25,,0.28,0.31,,,,,,,0.23,,0.33,0.868168671,5703,6569,0.825086862,0.911250481,0.564192754,1604,2843,0.453339404,0.675046104,0.034364261,130,3783,,,0.27,633,,0.171106383,0.368893617,,,,,,,0.755407654,0.452826195,1,,,,0.272284123,0.095082917,0.449485328,6.232804893,99862,16022,3.855889675,8.609720112,0.334068844,757,2266,0.231364795,0.436772893,8.075098415,8,9907,,,63.6672326,33,51832,43.8255934,89.41246579,,,,,,,,,,,,,74.13743941,48.42903683,108.628526,,,,8.6,,,,,0,,,,,0.17124183,655,3825,0.107147618,0.235336042,0.155873926,0.093148423,0.218599429,0.014379085,0,0.038041598,0.022222222,0.000515766,0.043928678,0.770166623,2912,3781,0.720239633,0.820093612,,,,,,,,,,,,,0.651452282,0.513949369,0.788955195,0.371,,3781,0.262941702,0.479058298,74.93022091,,,73.10096896,76.75947287,,,,,,,72.55718082,69.0253724,76.08898925,,,,74.67250213,72.40697218,76.93803207,,,,539.7649182,189,29349,460.6994714,618.8303651,,,,,,,630.7028433,458.2696514,846.6891287,,,,552.6485925,456.1951961,649.1019889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.157,,,0.138,0.181,0.199,,,0.174,0.228,0.148,,,0.129,0.171,218.3,18,8246,,,0.178,1760,,,,0.00236589,23.84343413,10078,,,,,,,,,,,,,,,,,,,,,,,,,,0.39,,,0.376,0.405,0.182047403,1083,5949,0.153451658,0.210643148,0.055140962,133,2412,0.036077132,0.074204792,9.83187E-05,1,10171,,,10171,0.875,80.5,92,,,,,,,,3.071281558,,,,,,,2.648212771,,3.344863865,3.049296461,,,,,,,2.695084268,,3.206557132,0.004282165,,,,,-8045.711,,,,,0.760004354,41896,55126,0.5191168,1.000891908,50671,,,43232.53192,58109.46809,,,,,,,33229,17941,48517,,,,46838,32579.44681,61096.55319,,,,,,,,,,,35.01990948,,,,,0.231769651,,50671,,,6.622516556,4,604,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,23.43437685,17,72543,13.6513881,37.52070746,,,,,,,,,,,,,28.44314419,15.5501316,47.72276289,,,,,,1100,,,,,0.444776119,3576,8040,,,0.441,,,,,2.316224527,,,,,0.673250564,2386,3544,0.60567982,0.740821309,0.099143207,324,3268,0.052707461,0.145578953,0.775959368,2750,3544,0.708335164,0.843583572,10171,,,,,0.234981811,2390,10171,,,0.15170583,1543,10171,,,0.218955855,2227,10171,,,0.009930194,101,10171,,,0.01337135,136,10171,,,0.000589913,6,10171,,,0.084259168,857,10171,,,0.65411464,6653,10171,,,0.017682992,165,9331,0,0.039427153,0.495624816,5041,10171,,,1,9877,9877,, -13,175,13175,GA,Laurens County,2024,1,14756.27621,1178,133371,13509.82237,16002.73006,0,,,,2,,,,2,18455.23054,16218.8632,20691.59788,,,,,2,12760.60883,11225.75646,14295.4612,,,,,2,,0.223,,,0.195,0.255,4.440042556,,,3.645911018,5.326371275,5.669749395,,,4.74646009,6.671674399,0.115267711,493,4277,0.105696956,0.124838467,0,,,,,,,0.14957265,0.133416129,0.165729171,0.117318436,0.070175707,0.164461164,0.085933749,0.07389775,0.097969749,,,,,,,0.206,,,0.17,0.246,0.406,,,0.347,0.468,6.8,0.097116143,0.141,,,0.316,,,0.269,0.367,0.523058301,25928,49570,,,0.128942796,,,0.103160775,0.158094415,0.129032258,8,62,0.07265865,0.198326005,884,438,49547,,,36.53473568,396,10839,32.93629417,40.13317719,,,,,,,51.19229928,44.6330705,57.75152806,36.7816092,21.02386771,59.73102896,23.60785727,19.56510626,27.65060828,,,,81.25,43.26220307,138.9399745,0.156140306,6094,39029,0.137076476,0.175204136,0.00084768,42,49547,,,1179.690476,0.000483286,24,49660,,,2069.166667,0.002335884,116,49660,,,428.1034483,2751,,,,,,,2864,,2707,0.52,,,,,,0.53,0.5,,0.53,0.4,,,,,,0.37,0.28,0.27,0.43,0.864925981,28687,33167,0.847625741,0.88222622,0.50929554,6109,11995,0.452846715,0.565744365,0.03838922,735,19146,,,0.307,3679,,0.235510638,0.378489362,,,,,,,0.59529321,0.525139999,0.665446421,0.300884956,0.044624149,0.557145763,0.153688174,0.095041068,0.21233528,6.59375,107188,16256,5.903504325,7.283995675,0.424861924,5154,12131,0.367932372,0.481791476,11.10057118,55,49547,,,91.114269,218,239260,79.01903653,103.2095015,,,,,,,83.24614987,65.36613259,104.507918,,,,97.39575384,80.904879,113.8866287,,,,9.7,,,,,0,,,,,0.157925408,2710,17160,0.1313664,0.184484416,0.138951757,0.113044982,0.164858532,0.0247669,0.013931293,0.035602507,0.009615385,0.003639779,0.01559099,0.871250722,16586,19037,0.849198569,0.893302876,,,,,,,0.883546326,0.845389571,0.921703081,,,,0.864762974,0.843777725,0.885748223,0.257,,19037,0.219624439,0.294375561,71.1580865,,,70.30850829,72.00766471,,,,,,,68.77423214,67.32093443,70.22752985,,,,72.37610089,71.30736049,73.44484129,,,,699.4625632,1178,133371,657.7642352,741.1608912,,,,,,,860.2680876,781.6147576,938.9214176,,,,631.6345683,580.8433451,682.4257915,,,,81.52173913,42,51520,58.75369902,110.1937088,,,,,,,114.5265473,74.11554285,169.0637762,,,,55.46091986,30.32100098,93.05399961,,,,10.21830005,44,4306,7.424632457,13.71759087,,,,,,,12.44813278,7.975753555,18.52183485,,,,,,,,,,,,,0.143,,,0.125,0.164,0.19,,,0.166,0.215,0.141,,,0.123,0.162,468.4,192,40989,,,0.141,6950,,,,0.097116143,4703.723264,48434,,,15.21385844,22,144605,9.534444087,23.03396452,,,,,,,,,,,,,19.34633568,11.05810243,31.4172371,,,,0.39,,,0.378,0.403,0.192842797,5281,27385,0.167821521,0.217864074,0.071463574,875,12244,0.051208255,0.091718893,0.001530407,76,49660,,,653.4210526,0.891360656,543.73,610,,,,,,,,2.831152619,,,,,,,2.550299162,2.805899357,3.170979529,2.889291497,,,,,,,2.658195626,2.806096558,3.149993137,0.16448453,,,,,-14534.7785,,,,,0.73321034,36563,49867,0.636191862,0.830228817,47918,,,42123.78723,53712.21277,,,,,,,28395,21200.78723,35589.21277,53112,4228.765957,101995.234,60299,56078.74468,64519.25532,,,,,,,,,,,42.31770529,,,,,0.245085354,,47918,,,11.96473552,38,3176,,,12.85473847,43,334507,9.303037967,17.31524835,,,,,,,25.95190787,17.75108577,36.63635058,,,,5.164382288,2.476522045,9.497482902,,,,14.94102506,37,239260,10.40697139,20.779349,15.46434841,,,,,,,,,,,,,19.9605179,13.03887299,29.24678348,,,,23.40550029,56,239260,17.68026339,30.39398897,,,,,,,29.24864725,19.10618746,42.856045,,,,21.07818553,14.11639166,30.27179044,,,,24.51368731,82,334507,19.49646299,30.42794953,,,,,,,24.32991363,16.41529056,34.73246454,,,,23.75615853,17.39249378,31.68738636,,,,,,4700,,,,,0.643061253,22729,35345,,,0.549,,,,,28.3253355,,,,,0.635827766,11326,17813,0.61106525,0.660590282,0.154812207,2638,17040,0.126407618,0.183216795,0.758266435,13507,17813,0.725579743,0.790953127,49660,,,,,0.24494563,12164,49660,,,0.183145389,9095,49660,,,0.370237616,18386,49660,,,0.003826017,190,49660,,,0.011478051,570,49660,,,0.000302054,15,49660,,,0.031856625,1582,49660,,,0.56955296,28284,49660,,,0.008315202,386,46421,0.001649443,0.014980961,0.524204591,26032,49660,,,0.579544079,28728,49570,, -13,177,13177,GA,Lee County,2024,1,9533.263868,492,89491,8316.240397,10750.28734,0,,,,2,,,,2,10413.21295,7907.763088,12918.66281,,,,,2,9863.262457,8341.808853,11384.71606,,,,,2,,0.148,,,0.125,0.174,3.530769788,,,2.769449035,4.394371772,5.121405187,,,4.12995314,6.185868798,0.102040816,220,2156,0.089263285,0.114818348,0,,,,,,,0.154529307,0.124671591,0.184387023,0.171875,0.079443418,0.264306582,0.077344285,0.06364604,0.091042529,,,,,,,0.149,,,0.118,0.184,0.348,,,0.28,0.426,8.4,0.068076937,0.084,,,0.221,,,0.179,0.266,0.530229473,17584,33163,,,0.174589841,,,0.141005895,0.213976386,0.25,5,20,0.13289271,0.377758007,344.2,115,33411,,,15.06666667,113,7500,12.28865523,17.84467811,,,,,,,21.59827214,15.43012227,29.4107165,,,,12.50248065,9.607249414,15.99610385,,,,,,,0.121105401,3370,27827,0.10442455,0.137786252,0.000508815,17,33411,,,1965.352941,0.000445871,15,33642,,,2242.8,0.000356697,12,33642,,,2803.5,4387,,,,,,,2538,,4500,0.5,,,,,,0.27,0.63,,0.49,0.39,,,,,,0.4,0.3,,0.4,0.919464034,19557,21270,0.893608047,0.945320021,0.722513089,6210,8595,0.62645405,0.818572129,0.028912131,434,15011,,,0.131,1116,,0.079765957,0.182234043,,,,0.302681992,0,0.697564193,0.222919042,0.080286746,0.365551338,,,,0.074375775,0.03705285,0.1116987,3.279089478,135410,41295,2.786583157,3.7715958,0.197287586,1702,8627,0.133845094,0.260730077,4.489539373,15,33411,,,81.7682883,125,152871,67.43367533,96.10290126,,,,,,,49.04647875,28.57138129,78.52816369,,,,94.42958919,76.01324238,112.845936,,,,9.9,,,,,1,,,,,0.100947867,1065,10550,0.070293699,0.131602036,0.089903846,0.059156499,0.120651193,0.010331754,0.001009973,0.019653534,0.003791469,0,0.009955779,0.825725078,12897,15619,0.783568648,0.867881509,,,,,,,0.691677175,0.565511359,0.817842991,,,,0.793293413,0.725721186,0.86086564,0.269,,15619,0.213063413,0.324936587,74.71582253,,,73.72527059,75.70637447,,,,,,,74.11470419,71.93195256,76.29745583,,,,74.26564319,73.07927521,75.45201117,,,,470.6693976,492,89491,428.4454498,512.8933454,,,,,,,508.2095114,412.9965248,603.422498,,,,480.5379554,430.1531255,530.9227852,,,,56.67006687,20,35292,34.61554909,87.52232206,,,,,,,,,,,,,50.53908356,26.11428196,88.28160819,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.106,,,0.091,0.123,0.158,,,0.137,0.183,0.101,,,0.087,0.117,221.5,61,27535,,,0.084,2740,,,,0.068076937,1926.441174,28298,,,11.74749298,11,93637,5.864306169,21.01950993,,,,,,,,,,,,,15.4726907,7.419756609,28.45482909,,,,0.358,,,0.342,0.371,0.147956276,2856,19303,0.125317978,0.170594574,0.062325789,559,8969,0.043261959,0.081389619,0.00062422,21,33642,,,1602,0.94,408.9,435,,,,,,,,3.292656362,,,,,,,2.953860727,,3.354063488,3.635479686,,,,,,,3.392732075,,3.663346463,0.004724649,,,,,-471.3379,,,,,0.678532794,47671,70256,0.552312436,0.804753153,84260,,,77057.44681,91462.55319,,,,128197,901.8510638,255492.1489,69907,49198.91489,90615.08511,97458,78448.97872,116467.0213,87724,79949.53192,95498.46809,,,,,,,,,,,21.04304398,,,,,0.178103489,,84260,,,8.670520231,18,2076,,,,,,,,,,,,,,,,,,,,,,,,,,27.31841868,42,152871,19.51667882,37.19993257,27.47414487,,,,,,,,,,,,,33.2196583,23.00557908,46.42114279,,,,24.85755964,38,152871,17.59068865,34.11894272,,,,,,,,,,,,,28.04839283,18.92413286,40.04082481,,,,19.86660991,42,211410,14.31810498,26.85388524,,,,,,,,,,,,,22.74871369,15.75414554,31.78904723,,,,,,3300,,,,,0.769521179,16714,21720,,,0.697,,,,,19.34424322,,,,,0.748178892,8833,11806,0.708610558,0.787747227,0.094088116,1087,11553,0.06725158,0.120924651,0.890140607,10509,11806,0.862512481,0.917768732,33642,,,,,0.255692289,8602,33642,,,0.141787052,4770,33642,,,0.246655966,8298,33642,,,0.00356697,120,33642,,,0.025593009,861,33642,,,0.000980917,33,33642,,,0.035818322,1205,33642,,,0.674959872,22707,33642,,,0.007245674,224,30915,0.000964353,0.013526994,0.497740919,16745,33642,,,0.623646835,20682,33163,, -13,179,13179,GA,Liberty County,2024,1,11702.76971,940,183433,10757.34064,12648.19878,0,,,,2,,,,2,13726.82753,12119.87012,15333.78493,,5908.019615,4159.791034,8143.426799,,12026.05236,10509.87478,13542.22993,,,,,2,,0.198,,,0.175,0.227,4.08506224,,,3.267172889,4.961693609,5.127923591,,,4.12063545,6.209406219,0.094993452,943,9927,0.089225525,0.100761379,0,,,,0.119047619,0.070076728,0.16801851,0.133103082,0.1222511,0.143955063,0.081677704,0.067116554,0.096238854,0.066816255,0.059088482,0.074544029,,,,0.070135747,0.046327664,0.09394383,0.181,,,0.15,0.216,0.383,,,0.309,0.459,6.6,0.17259928,0.114,,,0.284,,,0.238,0.333,0.675677332,44092,65256,,,0.169094518,,,0.134746577,0.208462396,0.32,24,75,0.26066561,0.37984152,869,571,65711,,,45.34106467,563,12417,41.5957045,49.08642484,,,,,,,37.65208813,32.77537289,42.52880336,50.86580087,41.10474481,62.24685808,57.22460658,49.29368074,65.15553242,,,,36.89064559,24.51356608,53.31725421,0.136492551,7604,55710,0.117428721,0.155556381,0.000395672,26,65711,,,2527.346154,0.001264148,86,68030,,,791.0465116,0.003939439,268,68030,,,253.8432836,2173,,,,,,,2517,431,1884,0.28,,,,,,0.32,0.25,0.21,0.31,0.26,,,,,,0.28,0.23,0.2,0.28,0.9219768,34812,37758,0.909428082,0.934525518,0.645944199,12988,20107,0.591598014,0.700290383,0.032762444,857,26158,,,0.194,3562,,0.11893617,0.26906383,0.432989691,0,0.970339213,0.217506631,0,0.535265658,0.188380788,0.135899356,0.24086222,0.186837294,0.113060264,0.260614325,0.224560193,0.158127507,0.290992879,3.768872494,101149,26838,3.421663688,4.1160813,0.35529816,6411,18044,0.300851514,0.409744806,7.000350018,46,65711,,,74.75250213,234,313033,65.17452322,84.33048105,,,,,,,75.73826057,60.96723292,90.50928822,45.33319901,26.8673268,71.64599876,91.06393025,73.88917394,108.2386866,,,,9,,,,,0,,,,,0.152359177,3665,24055,0.125836749,0.178881605,0.13187234,0.10718977,0.156554911,0.022656412,0.012667866,0.032644959,0.005404282,0.001194298,0.009614265,0.802544976,23777,29627,0.777827475,0.827262477,,,,,,,0.812149687,0.767766087,0.856533286,0.73033419,0.676946947,0.783721433,0.819528533,0.780999627,0.858057439,0.339,,29627,0.301853038,0.376146962,73.5944446,,,72.79385285,74.39503635,,,,,,,72.54060626,71.27438634,73.80682618,90.59377448,74.41422326,106.7733257,72.44222507,71.26544943,73.61900071,,,,566.7269381,940,183433,529.3762676,604.0776087,,,,,,,594.0477449,536.7751149,651.3203749,276.5339626,193.6809877,382.8395671,635.3894712,572.9163505,697.862592,,,,85.197568,66,77467,65.89179292,108.392196,,,,,,,133.5883657,97.065511,179.3361456,,,,58.53658537,32.76248247,96.5471956,,,,7.338158424,73,9948,5.751944805,9.226632507,,,,,,,11.59967629,8.394743246,15.62468784,,,,5.791505792,3.71072704,8.617301543,,,,,,,0.127,,,0.112,0.145,0.169,,,0.147,0.192,0.14,,,0.122,0.159,514.3,263,51142,,,0.114,7360,,,,0.17259928,10951.9421,63453,,,14.72521693,28,190150,9.784799714,21.28203836,,,,,,,,,,,,,22.41618449,12.81278627,36.40247923,,,,0.417,,,0.405,0.429,0.173895721,6547,37649,0.147682955,0.200108487,0.060538117,1134,18732,0.040282797,0.080793436,0.003116272,212,68030,,,320.8962264,0.92,583.28,634,,,0.07683519,269,3501,0.025576564,0.128093816,2.939077578,,,,,,,2.7620393,3.09006467,3.159776422,2.749814666,,,,,,,2.541528241,3.003555992,3.042986181,0.022768989,,,,,-9355.639,,,,,0.784033818,35425,45183,0.712130584,0.855937052,59807,,,55397.29787,64216.70213,42500,20400.25532,64599.74468,44323,23632.78723,65013.21277,53049,46585.17021,59512.82979,53315,49990.74468,56639.25532,60917,53749,68085,,,,,,,,,,,24.26580861,,,,,0.250923805,,59807,,,5.373042677,35,6514,,,10.04405689,44,438070,7.298027109,13.48367756,,,,,,,18.51690485,12.82349489,25.87551853,,,,,,,,,,20.78088327,66,313033,15.81937118,26.80582536,21.08403906,,,,,,,12.48007953,7.396486078,19.72390615,,,,32.87114582,22.76422405,45.93413153,,,,22.04240448,69,313033,17.15030638,27.89607361,,,,,,,26.99581565,18.9075374,37.37358796,,,,21.92279802,14.32069952,32.12197852,,,,16.43572945,72,438070,12.85994606,20.69808114,,,,,,,16.8830603,11.47122036,23.96415645,,,,20.05876037,13.89127467,28.03010708,,,,,,5400,,,,,0.496783184,21389,43055,,,0.546,,,,,36.52005026,,,,,0.481262242,11057,22975,0.454643359,0.507881124,0.144432701,3143,21761,0.118891231,0.16997417,0.916474429,21056,22975,0.894338012,0.938610845,68030,,,,,0.273805674,18627,68030,,,0.102278407,6958,68030,,,0.424401,28872,68030,,,0.00755549,514,68030,,,0.022210789,1511,68030,,,0.005262384,358,68030,,,0.128355137,8732,68030,,,0.378127297,25724,68030,,,0.010915737,645,59089,0.006482295,0.01534918,0.480229311,32670,68030,,,0.235135467,15344,65256,, -13,181,13181,GA,Lincoln County,2024,1,10950.7923,174,21327,8005.429867,13896.15472,0,,,,2,,,,2,13613.50506,8068.225874,21515.20712,1,,,,2,10475.91246,6851.258393,14100.56653,,,,,2,,0.211,,,0.181,0.245,4.458925465,,,3.519551092,5.541729269,5.727970431,,,4.525157979,7.090344567,0.088724584,48,541,0.064763622,0.112685546,0,,,,,,,0.123529412,0.07406584,0.172992983,,,,0.074074074,0.046675766,0.101472383,,,,,,,0.214,,,0.175,0.259,0.386,,,0.301,0.481,7.9,0.018860003,0.131,,,0.295,,,0.242,0.351,0.365149545,2808,7690,,,0.136755871,,,0.104535317,0.174439871,0.307692308,4,13,0.157450571,0.460702037,296.8,23,7749,,,13.86861314,19,1370,8.349811069,21.65755735,,,,,,,,,,,,,17.92114695,10.03032991,29.55820654,,,,,,,0.220799719,1259,5702,0.194586953,0.247012485,0.000258098,2,7749,,,3874.5,,0,7841,,,,0.000382604,3,7841,,,2613.666667,2295,,,,,,,795,,1434,0.43,,,,,,,0.49,,0.42,0.44,,,,,,,0.37,,0.44,0.872344162,4968,5695,0.831096851,0.913591472,0.482887368,776,1607,0.354143143,0.611631592,0.034747935,122,3511,,,0.247,363,,0.156446809,0.337553192,,,,,,,0.225641026,0.055650242,0.395631809,,,,0.367231638,0.241951201,0.492512076,4.826426373,108194,22417,3.69178142,5.961071326,0.275653924,411,1491,0.156076579,0.395231268,15.48586914,12,7749,,,86.0846668,34,39496,59.61613425,120.2946934,,,,,,,,,,,,,102.4784606,67.53395124,149.1007798,,,,9.4,,,,,0,,,,,0.145038168,475,3275,0.090966214,0.199110122,0.143974961,0.089558273,0.198391649,0.013435115,0,0.028673413,0.003053435,0,0.012600725,0.844086022,2669,3162,0.819649971,0.868522073,,,,,,,,,,,,,0.76372093,0.675139647,0.852302214,0.429,,3162,0.338313648,0.519686352,75.12237149,,,72.81458813,77.43015485,,,,,,,71.77551006,67.31878393,76.23223619,,,,75.70312111,72.90466612,78.5015761,,,,510.2214622,174,21327,424.1824156,596.2605088,,,,,,,618.467945,454.4269832,822.4312561,,,,486.655997,383.0207898,590.2912043,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.138,,,0.12,0.161,0.186,,,0.159,0.215,0.129,,,0.109,0.151,298.4,20,6703,,,0.131,1010,,,,0.018860003,150.8045833,7996,,,,,,,,,,,,,,,,,,,,,,,,,,0.377,,,0.363,0.391,0.254851531,1090,4277,0.222681319,0.287021744,0.121639785,181,1488,0.088278083,0.155001487,0.000127535,1,7841,,,7841,0.875,64.75,74,,,,,,,,3.107265238,,,,,,,2.728196329,,3.447024507,3.119485529,,,,,,,2.937559988,,3.267680756,0.004394096,,,,,-6842.01,,,,,0.705735809,35694,50577,0.415447081,0.996024537,69776,,,63131.06383,76420.93617,,,,,,,38057,34891.21277,41222.78723,,,,57303,44599.34043,70006.65957,,,,,,,,,,,22.15841811,,,,,0.168310021,,69776,,,8.928571429,3,336,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,29.09249595,16,54997,16.62887513,47.24439078,,,,,,,,,,,,,35.58329228,18.94660451,60.84851349,,,,,,600,,,,,0.744,4650,6250,,,0.517,,,,,0.17261317,,,,,0.75920398,2289,3015,0.703539514,0.814868446,0.126852187,351,2767,0.073509325,0.180195049,0.549917081,1658,3015,0.495223496,0.604610666,7841,,,,,0.190026782,1490,7841,,,0.256089785,2008,7841,,,0.259533223,2035,7841,,,0.005228925,41,7841,,,0.005483994,43,7841,,,0.000510139,4,7841,,,0.022446117,176,7841,,,0.690983293,5418,7841,,,0.000674673,5,7411,0,0.01321188,0.520086724,4078,7841,,,1,7690,7690,, -13,183,13183,GA,Long County,2024,1,8413.062535,248,54938,7016.154653,9809.970417,0,,,,2,,,,2,8969.903145,6436.957363,12168.68646,,,,,2,8257.859679,6407.943774,10107.77558,,,,,2,,0.215,,,0.187,0.245,4.435529258,,,3.569680197,5.371881677,5.579528043,,,4.499882299,6.75368542,0.094294294,157,1665,0.080256942,0.108331647,0,,,,,,,0.136,0.10130501,0.17069499,0.074380165,0.041320893,0.107439437,0.077494692,0.060420073,0.094569312,,,,,,,0.207,,,0.172,0.247,0.379,,,0.303,0.461,8,0.002600875,0.133,,,0.302,,,0.252,0.354,0.321313706,5195,16168,,,0.166188918,,,0.132507159,0.205098692,0.315789474,6,19,0.192486042,0.440144871,431.4,74,17152,,,20.29259085,86,4238,16.23145334,25.06118461,,,,,,,13.92301392,8.110668689,22.29209403,18.58108108,9.275608728,33.24668668,23.24455206,17.13869774,30.81890372,,,,,,,0.175084622,2638,15067,0.151254835,0.198914409,5.83022E-05,1,17152,,,17152,,0,18348,,,,0.000327011,6,18348,,,3058,1083,,,,,,,,,658,0.29,,,,,,,0.2,,0.31,0.24,,,,,,,0.2,,0.26,0.838240741,9053,10800,0.789143254,0.887338227,0.434223161,2261,5207,0.344697756,0.523748566,0.031039773,263,8473,,,0.203,1010,,0.126744681,0.279255319,,,,,,,0.254620123,0.071620975,0.437619272,0.155688623,0.009200946,0.3021763,0.047508151,0.017164036,0.077852266,4.437702233,111089,25033,3.084157109,5.791247357,0.259588299,1198,4615,0.164020712,0.355155887,3.498134328,6,17152,,,51.6365629,49,94894,38.2010135,68.26627457,,,,,,,48.36174586,24.9892198,84.47823741,,,,59.12895656,40.44416252,83.47244421,,,,8.9,,,,,0,,,,,0.114904247,690,6005,0.070446817,0.159361676,0.087226891,0.046577285,0.127876497,0.018318068,0.002808579,0.033827557,0.019150708,0,0.039737991,0.760779046,5664,7445,0.711487519,0.810070574,,,,,,,,,,,,,0.632222978,0.473488525,0.79095743,0.452,,7445,0.347088025,0.556911975,78.59333427,,,76.55266415,80.63400438,,,,,,,76.83379426,73.23814168,80.42944685,,,,78.21060793,75.80717397,80.61404189,,,,442.988657,248,54938,387.4727893,498.5045246,,,,,,,494.0236872,385.1157003,624.1692086,,,,443.9292122,373.3350864,514.523338,,,,44.67277195,10,22385,21.42233056,82.15481815,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.138,,,0.121,0.158,0.183,,,0.159,0.208,0.133,,,0.115,0.153,167.3,23,13749,,,0.133,2180,,,,0.002600875,37.61905921,14464,,,,,,,,,,,,,,,,,,,,,,,,,,0.385,,,0.374,0.397,0.218708198,2289,10466,0.186537985,0.250878411,0.077959776,376,4823,0.05174701,0.104172542,0.000327011,6,18348,,,3058,0.95,223.25,235,,,0.249286394,262,1051,0.080516907,0.418055881,2.981342658,,,,,,,2.696219667,3.025791341,3.138841704,2.877839021,,,,,,,2.609735273,2.671715632,3.065621085,0.00253215,,,,,-5323.066,,,,,0.681286432,33894,49750,0.572715735,0.78985713,71285,,,65399.04255,77170.95745,,,,,,,43990,28860.46809,59119.53192,35469,843.1276596,70094.87234,68095,59152.87234,77037.12766,,,,,,,,,,,10.05468679,,,,,0.164747142,,71285,,,4.892367906,5,1022,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.78594864,22,131062,10.51966464,25.41412796,,,,,,,,,,,,,17.27620668,9.198852449,29.54283957,,,,,,2200,,,,,0.420051987,5656,13465,,,0.455,,,,,10.61210362,,,,,0.608256715,3374,5547,0.547041725,0.669471705,0.082811925,450,5434,0.043327099,0.122296751,0.839913467,4659,5547,0.804578329,0.875248604,18348,,,,,0.275016351,5046,18348,,,0.102245476,1876,18348,,,0.27087421,4970,18348,,,0.009210813,169,18348,,,0.011881404,218,18348,,,0.004687159,86,18348,,,0.126607805,2323,18348,,,0.543982995,9981,18348,,,0.007841153,124,15814,0,0.017913902,0.4941138,9066,18348,,,0.802387432,12973,16168,, -13,185,13185,GA,Lowndes County,2024,1,10228.39494,1852,336948,9587.582907,10869.20698,0,,,,2,,,,2,13637.75288,12412.55663,14862.94912,,5696.612125,3921.285669,8000.161401,,8744.884928,7936.637962,9553.131893,,,,,2,,0.201,,,0.174,0.23,4.242551859,,,3.445143224,5.085454262,5.564615814,,,4.641999342,6.500295216,0.115310417,1315,11404,0.109448264,0.121172571,0,,,,0.094736842,0.053095363,0.136378321,0.170132325,0.159458875,0.180805775,0.093600764,0.075957368,0.111244161,0.072009292,0.064960008,0.079058575,,,,0.067961165,0.03359193,0.102330401,0.195,,,0.16,0.232,0.399,,,0.338,0.462,7.3,0.082677568,0.128,,,0.292,,,0.246,0.338,0.762048524,90113,118251,,,0.16185059,,,0.131556604,0.195965031,0.239130435,22,92,0.185900165,0.295207956,1080.7,1289,119276,,,24.86926551,837,33656,23.18443468,26.55409634,,,,,,,32.4994943,29.59808396,35.40090465,34.26222019,26.94940964,42.9479897,15.71020514,13.73082028,17.68959,,,,49.6124031,33.93484699,70.0379102,0.157298371,15201,96638,0.139426031,0.175170712,0.000561722,67,119276,,,1780.238806,0.00055955,67,119739,,,1787.149254,0.002137983,256,119739,,,467.7304688,3799,,,,,,1664,4644,2967,3498,0.46,,,,,,0.37,0.52,0.36,0.44,0.36,,,,,,0.35,0.28,0.24,0.39,0.896412012,62834,70095,0.885437565,0.90738646,0.615572873,19116,31054,0.570899915,0.660245832,0.032651043,1651,50565,,,0.193,5541,,0.115553192,0.270446809,,,,0.024886878,0,0.236949058,0.439993078,0.379937191,0.500048965,0.339953271,0.240858961,0.439047581,0.116984545,0.077918432,0.156050657,5.442823895,105237,19335,4.94962427,5.936023519,0.367433541,10477,28514,0.320981989,0.413885094,8.970790436,107,119276,,,62.88772241,369,586760,56.47106645,69.30437837,,,,,,,61.26853721,50.81636354,71.72071089,,,,72.36914051,62.91290615,81.82537487,,,,7.5,,,,,1,,,,,0.156940709,6710,42755,0.136243766,0.177637652,0.138494088,0.120113192,0.156874985,0.02105017,0.014800264,0.027300076,0.012279266,0.007023477,0.017535055,0.834637703,43725,52388,0.816106552,0.853168854,,,,0.898481215,0.749911953,1,0.805234589,0.766612479,0.8438567,0.77923468,0.677341152,0.881128208,0.876378897,0.862343414,0.89041438,0.169,,52388,0.144962607,0.193037394,74.39390594,,,73.86233496,74.92547692,,,,83.56237539,77.54615909,89.57859169,71.53274833,70.57698247,72.4885142,84.06943079,78.32330423,89.81555735,75.52601389,74.85664852,76.19537925,,,,530.2002607,1852,336948,505.5040024,554.896519,,,,,,,682.571796,634.4525746,730.6910174,273.341957,185.7225981,387.9870891,475.4466929,444.7315776,506.1618082,,,,70.0922384,94,134109,56.64166342,85.77514837,,,,,,,99.50248756,74.95889095,129.5161646,,,,51.45996912,34.96455235,73.04331851,,,,9.755676422,113,11583,7.956912217,11.55444063,,,,,,,14.96259352,11.70730792,18.84291023,,,,5.439879948,3.643172977,7.812575021,,,,,,,0.133,,,0.114,0.151,0.18,,,0.156,0.205,0.135,,,0.117,0.155,680.9,669,98258,,,0.128,15030,,,,0.082677568,9031.118776,109233,,,9.015354275,32,354950,6.166495651,12.7269903,,,,,,,,,,,,,13.93720752,9.104246676,20.42123821,,,,0.388,,,0.375,0.4,0.198465168,13629,68672,0.173443891,0.223486444,0.05905243,1730,29296,0.042371579,0.075733281,0.001661948,199,119739,,,601.7035176,0.911962264,966.68,1060,,,0.082896118,632,7624,0.047699674,0.118092561,3.014630283,,,,,,,2.563347109,3.159572262,3.497814484,2.890576878,,,,,,,2.424083227,3.048185079,3.407613909,0.164760308,,,,,-17521.219,,,,,0.743578334,36764,49442,0.686925424,0.800231245,52623,,,48520.70213,56725.29787,15096,3656.510638,26535.48936,65662,26391.70213,104932.2979,33727,30850.74468,36603.25532,51689,31226.3617,72151.6383,70368,66270.46809,74465.53192,,,,,,,,,,,51.69552318,,,,,0.285179484,,52623,,,14.33781914,114,7951,,,7.614340997,62,814253,5.837871581,9.761241515,,,,,,,16.80977388,12.47653817,22.16159124,,,,2.530533183,1.263233048,4.52782287,,,,13.59755778,76,586760,10.61980544,17.15146893,12.95248483,,,,,,,8.038299634,4.39461321,13.48690092,,,,18.49600025,13.89476464,24.13326819,,,,15.16804145,89,586760,12.18118279,18.6655802,,,,,,,21.35115691,15.63173033,28.47945123,,,,13.50890623,9.736031383,18.26011681,,,,13.38650272,109,814253,10.87340166,15.89960378,,,,,,,15.12879649,11.03504797,20.24352,,,,13.80290827,10.53307314,17.76707901,,,,,,11000,,,,,0.536174889,46355,86455,,,0.54,,,,,59.81307978,,,,,0.544190302,23792,43720,0.525894265,0.562486339,0.151234568,6125,40500,0.131863754,0.170605382,0.760635865,33255,43720,0.740166793,0.781104936,119739,,,,,0.24315386,29115,119739,,,0.131778284,15779,119739,,,0.371700114,44507,119739,,,0.005202983,623,119739,,,0.020845339,2496,119739,,,0.001803924,216,119739,,,0.066653304,7981,119739,,,0.51597224,61782,119739,,,0.008128976,897,110346,0.004343922,0.01191403,0.517567376,61973,119739,,,0.350796188,41482,118251,, -13,187,13187,GA,Lumpkin County,2024,1,9800.792701,517,94975,8452.075666,11149.50974,0,,,,2,,,,2,,,,2,,,,2,10512.64915,9040.817019,11984.48128,,,,,2,,0.159,,,0.132,0.19,3.952964308,,,3.086647353,4.904670977,5.291759156,,,4.205105919,6.454385443,0.065972222,133,2016,0.055136166,0.076808279,0,,,,,,,,,,,,,0.067627495,0.056039876,0.079215113,,,,,,,0.174,,,0.136,0.218,0.335,,,0.261,0.414,8.9,0.002574229,0.092,,,0.238,,,0.191,0.29,0.810738175,27150,33488,,,0.177428741,,,0.141153758,0.218358542,0.210526316,8,38,0.128437926,0.302220151,248,85,34278,,,8.741407112,103,11783,7.053226897,10.42958733,,,,,,,,,,,,,8.551114527,6.867247131,10.52288224,,,,,,,0.17013225,4271,25104,0.149876931,0.190387569,0.000320906,11,34278,,,3116.181818,0.000229912,8,34796,,,4349.5,0.001034602,36,34796,,,966.5555556,3020,,,,,,,,,3000,0.45,,,,,,,,,0.45,0.48,,,,,,,,0.27,0.48,0.875602468,18167,20748,0.848656741,0.902548195,0.569102176,3949,6939,0.483641906,0.654562446,0.0242708,451,18582,,,0.139,802,,0.081808511,0.196191489,,,,,,,,,,0.215291751,0,0.466320102,0.127348643,0.06944514,0.185252146,5.131475571,125403,24438,3.967484323,6.295466819,0.149521323,859,5745,0.090483253,0.208559393,4.375984597,15,34278,,,97.6760253,164,167902,82.72668163,112.625369,,,,,,,,,,,,,104.8038389,88.51332814,121.0943496,,,,8.5,,,,,0,,,,,0.152549515,1810,11865,0.116530302,0.188568729,0.134869825,0.10181262,0.16792703,0.013063633,0.000649489,0.025477776,0.005899705,0,0.013981862,0.784537306,11903,15172,0.735837931,0.83323668,,,,,,,,,,,,,0.760982719,0.71084957,0.811115868,0.426,,15172,0.360924608,0.491075392,75.88183415,,,74.83522832,76.92843999,,,,,,,,,,91.65437672,73.5619114,109.746842,75.195951,74.09633401,76.29556799,,,,437.439626,517,94975,396.4814993,478.3977527,,,,,,,,,,,,,465.1948437,420.7730244,509.616663,,,,52.69030498,17,32264,30.69404435,84.36228247,,,,,,,,,,,,,53.71915625,30.06620396,88.60157888,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.118,,,0.1,0.139,0.169,,,0.143,0.196,0.098,,,0.082,0.115,92.7,28,30220,,,0.092,3060,,,,0.002574229,77.1393356,29966,,,26.45139801,27,102074,17.43163796,38.48539535,,,,,,,,,,,,,29.29846454,19.30787275,42.62772768,,,,0.337,,,0.318,0.355,0.196511085,3785,19261,0.171489808,0.221532361,0.086218052,533,6182,0.062388265,0.11004784,0.000977124,34,34796,,,1023.411765,0.98,246.96,252,,,,,,,,3.175471057,,,,,,,,2.999957585,3.215423628,3.188710191,,,,,,,,2.924650327,3.229880984,0.009179841,,,,,1559.286,,,,,0.825275141,39293,47612,0.699651885,0.950898396,71486,,,63986.76596,78985.23404,237566,49084.29787,426047.7021,58906,58473.48936,59338.51064,,,,87865,38265.68085,137464.3192,67780,57815.57447,77744.42553,,,,,,,,,,,77.90758372,,,,,0.209929217,,71486,,,13.87874361,19,1369,,,4.333600572,10,230755,2.07812992,7.969645746,,,,,,,,,,,,,4.79209496,2.2979958,8.81283325,,,,30.26978953,53,167902,22.24110279,40.25240309,31.56603257,,,,,,,,,,,,,32.47466844,23.687246,43.4536614,,,,27.39693393,46,167902,20.05799896,36.54367054,,,,,,,,,,,,,29.66146383,21.63527525,39.6893723,,,,19.93456263,46,230755,14.59460528,26.58991299,,,,,,,,,,,,,20.60600833,14.9126704,27.75615799,,,,,,2400,,,,,0.585854395,15531,26510,,,0.641,,,,,11.45221987,,,,,0.76838428,8798,11450,0.741659757,0.795108802,0.142986919,1574,11008,0.10697756,0.178996277,0.888296943,10171,11450,0.859195096,0.91739879,34796,,,,,0.168295206,5856,34796,,,0.185797218,6465,34796,,,0.015892631,553,34796,,,0.007702035,268,34796,,,0.0102598,357,34796,,,0.001408208,49,34796,,,0.057190482,1990,34796,,,0.894384412,31121,34796,,,0.006677692,214,32047,0.000441451,0.012913933,0.501436947,17448,34796,,,0.80566173,26980,33488,, -13,189,13189,GA,McDuffie County,2024,1,14126.57128,487,59408,12215.77847,16037.36409,0,,,,2,,,,2,15880.22053,12899.04787,18861.39319,,,,,2,14517.8769,11534.8134,17500.94041,,,,,2,,0.213,,,0.184,0.242,4.337259307,,,3.487080592,5.277504344,5.481306938,,,4.363590147,6.655644406,0.127311146,241,1893,0.112295512,0.142326781,0,,,,,,,0.157051282,0.133741433,0.180361131,,,,0.093824228,0.074128876,0.11351958,,,,,,,0.208,,,0.171,0.247,0.394,,,0.314,0.474,8.6,0.001684955,0.104,,,0.304,,,0.255,0.357,0.509384246,11019,21632,,,0.138767846,,,0.10986707,0.172158333,0.137931035,4,29,0.056115699,0.245903351,799.7,173,21633,,,35.06674636,176,5019,29.88596566,40.24752707,,,,,,,41.36460554,33.54390856,50.46131085,,,,27.86377709,21.41129137,35.64987496,,,,,,,0.145819907,2489,17069,0.126756078,0.164883737,0.000508482,11,21633,,,1966.636364,0.000552664,12,21713,,,1809.416667,0.00069083,15,21713,,,1447.533333,3478,,,,,,,4271,,2766,0.34,,,,,,,0.26,,0.37,0.45,,,,,,,0.32,,0.48,0.855355321,12578,14705,0.829837568,0.880873075,0.423529412,2232,5270,0.345601117,0.501457707,0.044238316,372,8409,,,0.262,1385,,0.155957447,0.368042553,,,,,,,0.412420974,0.299272366,0.525569582,,,,0.158033363,0.070683289,0.245383437,4.555815704,108966,23918,3.454464849,5.657166558,0.519067012,2804,5402,0.413996757,0.624137267,11.55641844,25,21633,,,101.7398447,109,107136,82.63982158,120.8398678,,,,,,,91.08505067,65.0724956,124.0319867,,,,117.8229139,91.31113994,149.6309358,,,,9.8,,,,,1,,,,,0.115291262,950,8240,0.079364612,0.151217913,0.108557457,0.073966285,0.143148629,0.007281553,0,0.015728636,0.000485437,0,0.004289193,0.86623665,8192,9457,0.821395926,0.911077374,,,,,,,0.837,0.752093464,0.921906536,,,,0.868814487,0.711234494,1,0.342,,9457,0.276500588,0.407499412,71.86747762,,,70.54793034,73.18702489,,,,,,,70.0447909,68.11577596,71.97380585,,,,71.94632548,69.93740286,73.9552481,,,,633.4412095,487,59408,573.6939653,693.1884536,,,,,,,750.3849614,643.9025316,856.8673911,,,,593.2278402,515.4654606,670.9902198,,,,106.9244258,25,23381,69.19585068,157.8415453,,,,,,,,,,,,,163.5155851,93.46328517,265.5390659,,,,10.53185887,20,1899,6.43313301,16.26560184,,,,,,,,,,,,,,,,,,,,,,0.137,,,0.119,0.155,0.183,,,0.16,0.208,0.132,,,0.114,0.152,291.4,52,17843,,,0.104,2260,,,,0.001684955,36.85837941,21875,,,28.078057,18,64107,16.64083607,44.37543524,,,,,,,,,,,,,38.27920262,20.38206322,65.45860227,,,,0.38,,,0.367,0.393,0.182352447,2172,11911,0.156139681,0.208565213,0.063794379,345,5408,0.04353906,0.084049698,0.000875052,19,21713,,,1142.789474,0.83,193.39,233,,,,,,,,2.570982892,,,,,,,2.217085934,,3.075570882,2.627202661,,,,,,,2.344715922,,3.090883391,0.058956689,,,,,-13378.99,,,,,0.652925899,35448,54291,0.450589443,0.855262355,50593,,,43735.97872,57450.02128,,,,,,,41234,31912.97872,50555.02128,53929,173.7659575,107684.234,63688,57220.59575,70155.40426,,,,,,,,,,,36.98641572,,,,,0.296622062,,50593,,,14.84780995,20,1347,,,16.64824261,25,150166,10.77386482,24.57609026,,,,,,,32.52561392,19.86748998,50.23317272,,,,,,,,,,12.06034561,14,107136,6.421626102,20.62355829,13.06750299,,,,,,,,,,,,,14.82223872,6.777671386,28.13722614,,,,29.86857826,32,107136,20.43008542,42.16552053,,,,,,,38.71114653,22.55066941,61.98029561,,,,26.37826431,14.76371429,43.5069355,,,,21.30975054,32,150166,14.5758536,30.08300952,,,,,,,16.26280696,7.798648067,29.90788103,,,,27.46772542,17.21387728,41.58646639,,,,,,2200,,,,,0.661081252,10455,15815,,,0.593,,,,,26.6140274,,,,,0.658548466,5408,8212,0.610213273,0.706883658,0.144406174,1132,7839,0.094598274,0.194214074,0.746712129,6132,8212,0.702596646,0.790827611,21713,,,,,0.247547552,5375,21713,,,0.187445309,4070,21713,,,0.403997605,8772,21713,,,0.004329204,94,21713,,,0.006217473,135,21713,,,0.001059273,23,21713,,,0.035462626,770,21713,,,0.530281398,11514,21713,,,0.001277202,26,20357,0,0.007402441,0.527840464,11461,21713,,,0.59375,12844,21632,, -13,191,13191,GA,McIntosh County,2024,1,13083.76185,329,35154,10699.28165,15468.24206,0,,,,2,,,,2,15221.99376,10782.07642,19661.91111,,,,,2,12684.9615,9645.492346,15724.43066,,,,,2,,0.211,,,0.181,0.244,4.356096659,,,3.489061197,5.323610574,5.544582112,,,4.466573204,6.715988339,0.128987517,93,721,0.10452087,0.153454165,0,,,,,,,0.190677966,0.140557972,0.24079796,,,,0.103211009,0.074653457,0.131768561,,,,,,,0.206,,,0.168,0.248,0.387,,,0.311,0.467,7.5,0.059309804,0.128,,,0.297,,,0.248,0.351,0.539316629,5919,10975,,,0.134277954,,,0.10546032,0.165719293,0.444444444,12,27,0.348480628,0.533596575,467.5,52,11123,,,34.35468895,74,2154,26.97581998,43.12916597,,,,,,,24.27745665,15.02812831,37.11067137,,,,36.84661525,26.66607816,49.63214894,,,,,,,0.176016469,1368,7772,0.153378172,0.198654767,,0,11123,,,,0.000268336,3,11180,,,3726.666667,0.001878354,21,11180,,,532.3809524,3626,,,,,,,3837,,2884,0.42,,,,,,,0.35,,0.44,0.38,,,,,,,0.34,,0.39,0.825380824,7369,8928,0.786604064,0.864157585,0.374588816,911,2432,0.296035643,0.453141989,0.031053902,193,6215,,,0.308,522,,0.185276596,0.430723404,,,,0.162790698,0,0.931806933,0.701375246,0.431311396,0.971439096,,,,0.212962963,0.104482507,0.321443419,4.742994981,97331,20521,4.202536661,5.2834533,0.313173653,523,1670,0.198328515,0.428018791,5.394228176,6,11123,,,108.2916264,74,68334,85.03221858,135.9502202,,,,,,,84.16762647,50.67440934,131.4381748,,,,129.1473924,97.29149029,168.103083,,,,8.2,,,,,0,,,,,0.162332545,1030,6345,0.108693748,0.215971343,0.152610442,0.094795507,0.210425377,0.001576044,0,0.009745417,0.011820331,0,0.026470933,0.790440363,3572,4519,0.731562133,0.849318593,,,,,,,,,,,,,0.7075,0.625511973,0.789488027,0.554,,4519,0.423887398,0.684112602,76.77133624,,,74.6911545,78.85151799,,,,,,,75.64355682,72.03082704,79.25628661,,,,76.56180711,73.88241985,79.24119436,,,,587.6382876,329,35154,513.2085068,662.0680684,,,,,,,628.4127444,490.6729153,766.1525734,,,,590.9613868,497.34094,684.5818335,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.137,,,0.118,0.158,0.183,,,0.158,0.209,0.132,,,0.113,0.152,522.9,52,9945,,,0.128,1440,,,,0.059309804,850.0874172,14333,,,25.07019655,10,39888,12.02213372,46.10498406,,,,,,,,,,,,,,,,,,,0.385,,,0.372,0.399,0.20470896,1252,6116,0.176113215,0.233304705,0.07204611,125,1735,0.050599301,0.093492918,0.000268336,3,11180,,,3726.666667,0.975,78,80,,,,,,,,2.475971303,,,,,,,1.963943615,,2.777071748,2.564211899,,,,,,,2.122544454,,2.815131924,0.001735546,,,,,-14434.67,,,,,0.762609527,37512,49189,0.515161334,1.010057719,51411,,,43918.91489,58903.08511,,,,,,,39157,16710.53192,61603.46809,,,,54173,39692.82979,68653.17021,,,,,,,,,,,16.35787626,,,,,0.228433604,,51411,,,20.06688963,6,299,,,10.39176972,10,96230,4.983257504,19.1108345,,,,,,,,,,,,,,,,,,,24.59333688,18,68334,13.44540612,41.26344039,26.34120643,,,,,,,,,,,,,27.75569733,13.30993572,51.04371561,,,,26.34120643,18,68334,15.61146835,41.63046253,,,,,,,,,,,,,23.48134407,11.26021719,43.18302778,,,,27.01860127,26,96230,17.64944738,39.58851095,,,,,,,31.1779011,14.95101545,57.33727019,,,,26.75003762,15.28995779,43.4403852,,,,,,900,,,,,0.564348925,6696,11865,,,0.365,,,,,13.68920101,,,,,0.820100293,3925,4786,0.794830322,0.845370263,0.182231853,841,4615,0.121796521,0.242667185,0.789594651,3779,4786,0.730422458,0.848766845,11180,,,,,0.153756708,1719,11180,,,0.296422183,3314,11180,,,0.305187835,3412,11180,,,0.006797853,76,11180,,,0.006797853,76,11180,,,0.001610018,18,11180,,,0.02862254,320,11180,,,0.639177102,7146,11180,,,0.001009916,11,10892,0,0.010576489,0.516100179,5770,11180,,,1,10975,10975,, -13,193,13193,GA,Macon County,2024,1,12185.13633,306,35135,9919.395626,14450.87704,0,,,,2,,,,2,13074.41786,9980.047371,16168.78835,,,,,2,10764.66507,6953.746121,14575.58401,,,,,2,,0.275,,,0.237,0.311,4.940054484,,,4.018399798,5.909234298,5.4321471,,,4.323670815,6.544858985,0.128635347,115,894,0.106688737,0.150581957,0,,,,,,,0.16498994,0.132357281,0.197622599,,,,0.077181208,0.046879861,0.107482555,,,,,,,0.249,,,0.204,0.291,0.431,,,0.349,0.512,7.7,0.002222837,0.148,,,0.353,,,0.297,0.407,0.438006953,5292,12082,,,0.128791459,,,0.10093978,0.161016187,0.205882353,7,34,0.119526223,0.303561189,641.5,77,12004,,,42.00600086,98,2333,34.10250196,51.19186039,,,,,,,43.05283757,33.29706146,54.77376546,67.90123457,33.89605165,121.4940649,35.46099291,21.66049572,54.76662749,,,,,,,0.194979716,1538,7888,0.169958439,0.220000993,8.33056E-05,1,12004,,,12004,0.000169996,2,11765,,,5882.5,0.000169996,2,11765,,,5882.5,6124,,,,,,,7163,,3056,0.34,,,,,,,0.29,,0.37,0.36,,,,,,,0.29,,0.39,0.7260925,6264,8627,0.690234082,0.761950919,0.254252734,837,3292,0.190567017,0.31793845,0.041694242,189,4533,,,0.328,699,,0.186212766,0.469787234,,,,,,,0.446048632,0.373585548,0.518511717,,,,0.112877584,0.020688127,0.20506704,6.427906576,74583,11603,4.934987771,7.920825381,0.567131648,1301,2294,0.467601639,0.666661657,9.996667777,12,12004,,,99.81285091,64,64120,76.86805762,127.4587823,,,,,,,93.62078381,65.57084601,129.6106272,,,,113.7225171,72.8641625,169.210091,,,,9.7,,,,,1,,,,,0.158064516,735,4650,0.112144879,0.203984154,0.145957918,0.098666637,0.1932492,0.015053763,0,0.033288205,0.005376344,0,0.014496087,0.74440985,2630,3533,0.67500039,0.81381931,,,,,,,0.774448841,0.66163993,0.887257752,,,,0.802509908,0.688163894,0.916855921,0.348,,3533,0.26961485,0.42638515,72.56556244,,,70.94310198,74.1880229,,,,,,,71.8236029,69.60721627,74.03998952,,,,73.24887774,70.53669399,75.9610615,,,,619.0626347,306,35135,545.5826526,692.5426169,,,,,,,643.2879396,542.9409758,743.6349034,,,,585.2359375,468.5314366,701.9404383,,,,113.5288553,12,10570,58.66201617,198.3120629,,,,,,,159.5659805,76.51808993,293.4475194,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.159,,,0.139,0.18,0.189,,,0.164,0.214,0.171,,,0.148,0.194,575.2,60,10432,,,0.148,1820,,,,0.002222837,32.76461998,14740,,,,,,,,,,,,,,,,,,,,,,,,,,0.43,,,0.415,0.443,0.239358952,1389,5803,0.20718874,0.271529165,0.072661217,160,2202,0.04883143,0.096491004,0.000934977,11,11765,,,1069.545455,0.775,67.425,87,,,,,,,,2.441665688,,,,,,,2.423479104,,,2.06041256,,,,,,,2.051473456,,,0.00246654,,,,,-27654.61,,,,,0.913207356,36100,39531,0.687005649,1.139409064,40089,,,34424.65957,45753.34043,,,,,,,24131,18665.6383,29596.3617,,,,56623,51227.93617,62018.06383,,,,,,,,,,,6.198050816,,,,,0.29294819,,40089,,,12.30228471,7,569,,,16.44700774,15,91202,9.205265381,27.12683809,,,,,,,20.18126445,10.0744145,36.10985674,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.15533375,11,64120,8.563880797,30.69563087,,,,,,,,,,,,,,,,,,,25.2187452,23,91202,15.98652117,37.84050009,,,,,,,25.68524566,14.04236282,43.09547779,,,,,,,,,,,,900,,,,,0.444847328,4662,10480,,,0.42,,,,,11.00328207,,,,,0.622835634,2482,3985,0.554463356,0.691207912,0.159250586,544,3416,0.10282991,0.215671261,0.670012547,2670,3985,0.607521176,0.732503918,11765,,,,,0.183680408,2161,11765,,,0.192265193,2262,11765,,,0.587165321,6908,11765,,,0.00679983,80,11765,,,0.015469613,182,11765,,,0.001274968,15,11765,,,0.050998725,600,11765,,,0.333786655,3927,11765,,,0.010006961,115,11492,0,0.023165238,0.441818955,5198,11765,,,1,12082,12082,, -13,195,13195,GA,Madison County,2024,1,9262.658661,548,84933,8054.813987,10470.50334,0,,,,2,,,,2,12695.62346,8436.149588,18348.71069,,,,,2,9376.554217,7991.638242,10761.47019,,,,,2,,0.202,,,0.169,0.235,4.535416847,,,3.633890739,5.526210475,5.382089645,,,4.337892743,6.551023608,0.088871412,226,2543,0.077811446,0.099931377,0,,,,,,,0.156097561,0.106412787,0.205782335,0.105882353,0.068116865,0.143647841,0.078014184,0.066182913,0.089845455,,,,,,,0.208,,,0.165,0.251,0.371,,,0.295,0.449,7.5,0.015044009,0.15,,,0.29,,,0.239,0.344,0.191932271,5781,30120,,,0.155522624,,,0.122391734,0.191078746,0.166666667,5,30,0.080208315,0.272453563,440.3,136,30885,,,24.20168067,144,5950,20.2487395,28.15462185,,,,,,,30.85299456,17.9730063,49.39863306,39.02439024,25.00366318,58.06519934,21.88965825,17.77108266,26.67648209,,,,,,,0.193677773,4877,25181,0.172230964,0.215124581,0.000194269,6,30885,,,5147.5,3.17733E-05,1,31473,,,31473,0.000222413,7,31473,,,4496.142857,4048,,,,,,,3405,,4056,0.44,,,,,,0.27,0.39,,0.45,0.45,,,,,,,0.37,0.22,0.45,0.831122008,17289,20802,0.802290619,0.859953396,0.50977504,3807,7468,0.430522231,0.589027849,0.028823838,385,13357,,,0.147,1059,,0.082659575,0.211340426,,,,,,,0.564183835,0.232794238,0.895573432,0.525323911,0.223556692,0.827091129,0.226711783,0.164496978,0.288926589,4.474534969,110172,24622,3.543315623,5.405754314,0.314464514,2211,7031,0.206796906,0.422132122,9.06588959,28,30885,,,102.5477113,154,150174,86.35119239,118.7442303,,,,,,,72.32226803,34.68133866,133.0032259,,,,116.174641,96.99864835,135.3506336,,,,9.8,,,,,1,,,,,0.13559322,1440,10620,0.102637566,0.168548875,0.097676624,0.068924361,0.126428887,0.028154426,0.014201321,0.042107531,0.013182674,0.003097181,0.023268167,0.838888889,10872,12960,0.79164804,0.886129738,,,,,,,,,,,,,0.738993001,0.666447892,0.811538109,0.421,,12960,0.359145749,0.482854251,75.13120994,,,74.1688516,76.09356829,,,,,,,72.62289247,69.12739136,76.11839359,,,,74.84907724,73.78662894,75.91152554,,,,472.1001731,548,84933,430.8012067,513.3991396,,,,,,,553.1853087,410.5847986,729.3058657,,,,477.4990235,432.0665651,522.9314819,,,,72.30182726,22,30428,45.31117021,109.4658354,,,,,,,,,,,,,77.38528769,45.07978182,123.901342,,,,8.054772453,20,2483,4.920064271,12.43994277,,,,,,,,,,,,,,,,,,,,,,0.139,,,0.118,0.159,0.183,,,0.157,0.209,0.118,,,0.101,0.136,162.5,42,25846,,,0.15,4470,,,,0.015044009,423.0375382,28120,,,29.59812326,27,91222,19.50534973,43.06371538,,,,,,,,,,,,,32.81961519,21.02814672,48.83298589,,,,0.362,,,0.346,0.378,0.236975717,4294,18120,0.208379973,0.265571462,0.086106994,639,7421,0.062277206,0.109936781,0.000317733,10,31473,,,3147.3,0.95,301.15,317,,,,,,,,3.264031525,,,,,,,2.627909045,2.896442373,3.447408922,3.215898625,,,,,,,2.708404879,2.956324529,3.375985427,0.033657982,,,,,-2421.673,,,,,0.751966321,36617,48695,0.519529288,0.984403354,58789,,,50477.17021,67100.82979,,,,25184,16861.44681,33506.55319,41275,25624.78723,56925.21277,46089,36800.14894,55377.85106,61318,50477.82979,72158.17021,,,,,,,,,,,36.68434889,,,,,0.255268843,,58789,,,10.48951049,18,1716,,,,,,,,,,,,,,,,,,,,,,,,,,26.90197495,39,150174,18.94147303,37.08082879,25.96987495,,,,,,,,,,,,,30.98301637,21.45663951,43.29565987,,,,19.97682688,30,150174,13.47828121,28.51816253,,,,,,,,,,,,,22.24620785,14.66039115,32.36706444,,,,23.62140195,49,207439,17.4752432,31.22874609,,,,,,,,,,,,,26.6688792,19.45246349,35.68505861,,,,,,2900,,,,,0.66922043,14937,22320,,,0.622,,,,,9.26983222,,,,,0.721859781,7856,10883,0.67954886,0.764170703,0.131615461,1328,10090,0.092634241,0.170596681,0.852797942,9281,10883,0.826461646,0.879134237,31473,,,,,0.231595336,7289,31473,,,0.178692848,5624,31473,,,0.096813141,3047,31473,,,0.004448257,140,31473,,,0.022463699,707,31473,,,0.000476599,15,31473,,,0.070790837,2228,31473,,,0.790201125,24870,31473,,,0.008775317,250,28489,0.001624684,0.01592595,0.506942459,15955,31473,,,0.906573705,27306,30120,, -13,197,13197,GA,Marion County,2024,1,12271.40823,210,22227,9332.752758,15210.06369,0,,,,2,,,,2,13280.14675,8111.858643,20510.10957,1,,,,2,11754.97343,8415.515666,15094.43119,,,,,2,,0.224,,,0.195,0.255,4.653404443,,,3.736137141,5.633630925,5.602911595,,,4.461427642,6.834261096,0.087114338,48,551,0.063567462,0.110661213,0,,,,,,,0.107142857,0.06037214,0.153913575,,,,0.08681672,0.055523047,0.118110393,,,,,,,0.214,,,0.178,0.252,0.365,,,0.288,0.454,8.7,2.61523E-05,0.103,,,0.314,,,0.264,0.371,,,7498,,,0.134915789,,,0.10612782,0.171953116,0.5,4,8,0.315552499,0.64971552,403.2,30,7440,,,25.27075812,42,1662,18.21293967,34.15872369,,,,,,,23.48336595,12.13419786,41.02071438,,,,26.73796791,17.30340305,39.47051519,,,,,,,0.176143279,1013,5751,0.153504982,0.198781577,,0,7440,,,,0.000134246,1,7449,,,7449,,0,7449,,,,2993,,,,,,,,,1235,0.33,,,,,,,0.36,,0.33,0.28,,,,,,,0.23,,0.3,0.759042849,4092,5391,0.698766367,0.819319331,0.451168364,753,1669,0.341368629,0.5609681,0.035428219,115,3246,,,0.3,450,,0.179659575,0.420340426,,,,,,,0.234939759,0.101415363,0.368464155,0.170616114,0,0.527455263,0.073548387,0,0.150803398,3.942217256,84667,21477,2.779980576,5.104453936,0.2734375,420,1536,0.140977789,0.405897211,4.032258065,3,7440,,,77.82858255,32,41116,53.23469285,109.8707367,,,,,,,,,,,,,99.04258831,63.45845516,147.3675206,,,,9.4,,,,,1,,,,,0.087591241,300,3425,0.053750115,0.121432367,0.077039275,0.038443857,0.115634693,0.00729927,0,0.023697113,0.005839416,0,0.016434764,0.758018532,2127,2806,0.703816725,0.812220339,,,,,,,,,,,,,0.688186813,0.544471722,0.831901905,0.662,,2806,0.522432901,0.801567099,73.85264694,,,71.61160492,76.09368896,,,,,,,72.40591683,68.01834953,76.79348413,,,,73.93844369,71.46287542,76.41401196,,,,615.7193065,210,22227,524.4605476,706.9780653,,,,,,,700.8991762,533.5569275,904.1088711,,,,624.1633223,506.4875598,741.8390847,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.143,,,0.124,0.162,0.186,,,0.163,0.212,0.133,,,0.115,0.154,265.5,17,6403,,,0.103,780,,,,2.61523E-05,0.228623751,8742,,,,,,,,,,,,,,,,,,,,,,,,,,0.387,,,0.374,0.4,0.211882107,913,4309,0.182094873,0.241669341,0.071193144,108,1517,0.049746336,0.092639953,0.000536985,4,7449,,,1862.25,0.875,75.25,86,,,,,,,,2.916556077,,,,,,,2.613371881,,3.098924083,2.506415759,,,,,,,2.138283264,,2.722178139,0.001169622,,,,,-10280.05,,,,,0.733891915,35036,47740,0.46487469,1.00290914,47174,,,40468.29787,53879.70213,,,,,,,33934,24051.78723,43816.21277,67228,47685.19149,86770.80851,58750,49575.53192,67924.46809,,,,,,,,,,,56.22128441,,,,,0.248950693,,47174,,,11.29943503,4,354,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,22.25989281,13,58401,11.85245542,38.06509464,,,,,,,57.05157462,27.35844761,104.919877,,,,,,,,,,,,700,,,,,0.56625,3624,6400,,,0.368,,,,,0.374196877,,,,,0.769150418,2209,2872,0.720223535,0.8180773,0.069469836,190,2735,0.030127567,0.108812104,0.642409471,1845,2872,0.568936783,0.715882159,7449,,,,,0.203785743,1518,7449,,,0.217210364,1618,7449,,,0.282454021,2104,7449,,,0.01275339,95,7449,,,0.014901329,111,7449,,,0.007517788,56,7449,,,0.085917573,640,7449,,,0.588266882,4382,7449,,,0.015768909,113,7166,0,0.03466337,0.503960263,3754,7449,,,1,7498,7498,, -13,199,13199,GA,Meriwether County,2024,1,14652.07201,556,57722,12728.9316,16575.21241,0,,,,2,,,,2,17964.72653,14489.86681,21439.58625,,,,,2,13608.02639,11141.76639,16074.28639,,,,,2,,0.233,,,0.203,0.264,4.714523547,,,3.754936269,5.67998698,5.819390473,,,4.661988426,7.033532322,0.118059987,185,1567,0.102083089,0.134036885,0,,,,,,,0.165329053,0.136158525,0.194499581,,,,0.087006961,0.068191573,0.105822348,,,,,,,0.225,,,0.187,0.266,0.42,,,0.335,0.505,7.6,0.012189157,0.145,,,0.317,,,0.265,0.371,0.321690196,6631,20613,,,0.140426228,,,0.110169945,0.174256272,0.461538462,18,39,0.384668551,0.53358609,644.4,134,20793,,,27.20605631,115,4227,22.23357975,32.17853286,,,,,,,29.44214876,22.29919595,38.1457187,,,,24.56499488,18.11228804,32.56961934,,,,,,,0.165014431,2630,15938,0.144759112,0.18526975,0.000288559,6,20793,,,3465.5,0.000239866,5,20845,,,4169,0.001007436,21,20845,,,992.6190476,3807,,,,,,,7359,,2952,0.35,,,,,,,0.31,,0.36,0.37,,,,,,,0.33,,0.38,0.829255067,12234,14753,0.793694386,0.864815748,0.400292948,1913,4779,0.329221002,0.471364894,0.038038038,342,8991,,,0.268,1158,,0.158382979,0.377617021,,,,,,,0.458333333,0.345885165,0.570781502,0.629411765,0.256941415,1,0.183653846,0.099794558,0.267513134,5.129334787,94072,18340,3.839339373,6.419330202,0.463791513,2011,4336,0.358634502,0.568948524,9.137690569,19,20793,,,114.0240021,120,105241,93.6225195,134.4254846,,,,,,,99.64377351,71.18697268,135.686538,,,,132.1644862,104.6358684,164.7163837,,,,9.6,,,,,0,,,,,0.121744397,1005,8255,0.086522488,0.156966307,0.111263223,0.07720715,0.145319297,0.011992732,0.003406102,0.020579361,0.005935797,0,0.014188685,0.846223487,6543,7732,0.80259231,0.889854664,,,,,,,0.716901409,0.604998591,0.828804226,,,,0.835658387,0.763610474,0.907706301,0.636,,7732,0.556223581,0.715776419,71.10849764,,,69.82621667,72.39077861,,,,,,,68.79677035,66.63440648,70.95913422,,,,71.67436005,70.01196353,73.33675657,,,,686.6768515,556,57722,624.6610248,748.6926783,,,,,,,830.6864431,716.5652778,944.8076084,,,,641.4237534,563.5473481,719.3001588,,,,81.60350895,16,19607,46.64345618,132.5189861,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.148,,,0.129,0.168,0.193,,,0.169,0.22,0.139,,,0.12,0.16,603.8,107,17721,,,0.145,3000,,,,0.012189157,268.0639365,21992,,,19.01020214,12,63124,9.822848851,33.20699742,,,,,,,,,,,,,,,,,,,0.389,,,0.376,0.401,0.197201018,2325,11790,0.172179741,0.222222294,0.074908088,326,4352,0.051078301,0.098737876,0.000431758,9,20845,,,2316.111111,0.825,125.4,152,,,,,,,,2.659524392,,,,,,,2.409842452,,2.905356745,2.541719767,,,,,,,2.260531312,,2.793515536,0.011142896,,,,,-19756.28,,,,,0.660084522,35768,54187,0.605124038,0.715045007,53019,,,50488.2766,55549.7234,,,,,,,39299,31716.3617,46881.6383,60208,39261.61702,81154.38298,61863,53254.48936,70471.51064,,,,,,,,,,,25.02473114,,,,,0.283049473,,53019,,,8.389261745,10,1192,,,12.20297617,18,147505,7.232257063,19.28596337,,,,,,,19.43943732,9.704097069,34.78252309,,,,,,,,,,16.88774568,19,105241,9.837734189,27.03891677,18.05380033,,,,,,,,,,,,,25.4489816,13.91319505,42.69906683,,,,23.75500043,25,105241,15.37298377,35.06706673,,,,,,,24.91094338,11.94576563,45.81211181,,,,25.0945227,14.04521386,41.38959894,,,,32.54126979,48,147505,23.9933635,43.14500267,,,,,,,33.57720991,20.21567378,52.43497256,,,,34.64465337,23.20206809,49.75550126,,,,,,1800,,,,,0.658613382,10877,16515,,,0.555,,,,,2.367035223,,,,,0.669380706,5426,8106,0.630275874,0.708485537,0.114055145,848,7435,0.077300561,0.150809728,0.738218604,5984,8106,0.6931688,0.783268407,20845,,,,,0.210698009,4392,20845,,,0.21132166,4405,20845,,,0.358311346,7469,20845,,,0.00657232,137,20845,,,0.007052051,147,20845,,,0.000527705,11,20845,,,0.03151835,657,20845,,,0.580858719,12108,20845,,,0,0,19506,0,0.006596988,0.519261214,10824,20845,,,1,20613,20613,, -13,201,13201,GA,Miller County,2024,1,21443.03164,208,15328,16938.3109,25947.75238,0,,,,2,,,,2,26269.24425,18192.2153,36708.63581,,,,,2,19853.78872,14318.40266,25389.17478,,,,,2,,0.204,,,0.175,0.238,4.4213923,,,3.620395751,5.365643027,5.549055545,,,4.539288562,6.662049624,0.123255814,53,430,0.09218433,0.154327298,0,,,,,,,0.204968944,0.142612806,0.267325083,,,,0.0703125,0.038992565,0.101632435,,,,,,,0.204,,,0.167,0.245,0.385,,,0.311,0.462,8,0.001281492,0.133,,,0.295,,,0.247,0.347,0.446333333,2678,6000,,,0.139734639,,,0.113289079,0.169966695,0.6,3,5,0.381076261,0.751373291,658.9,39,5919,,,30.87478559,36,1166,21.62432026,42.7437174,,,,,,,37.12296984,21.21898481,60.28537726,,,,31.20124805,19.0585329,48.18779704,,,,,,,0.151971644,686,4514,0.131716325,0.172226963,0.000506842,3,5919,,,1973,0.000516618,3,5807,,,1935.666667,0.000344412,2,5807,,,2903.5,5096,,,,,,,8659,,3598,0.33,,,,,,,0.3,,0.34,0.31,,,,,,,0.21,,0.32,0.826866405,3367,4072,0.775165068,0.878567742,0.550330639,749,1361,0.433356054,0.667305225,0.026443981,76,2874,,,0.284,369,,0.177957447,0.390042553,,,,,,,0.508510638,0.276705457,0.740315819,,,,0.204272363,0.101518873,0.307025853,6.518465467,104667,16057,5.565252586,7.471678347,0.301503759,401,1330,0.173340719,0.4296668,13.51579659,8,5919,,,107.7024633,31,28783,73.17859841,152.8750495,,,,,,,,,,,,,109.0399294,67.49743488,166.6791149,,,,9.2,,,,,0,,,,,0.145299145,340,2340,0.082554284,0.208044006,0.08,0.028283083,0.131716917,0.064102564,0.019605417,0.108599711,0.004273504,0,0.0169996,0.876154492,2087,2382,0.821111224,0.93119776,,,,,,,,,,,,,0.813711911,0.575342089,1,0.349,,2382,0.254031496,0.443968504,67.73211304,,,64.91323555,70.55099053,,,,,,,,,,,,,69.26312054,65.64555833,72.88068276,,,,1015.286091,208,15328,868.0669171,1162.505265,,,,,,,1367.205154,1061.688299,1733.258313,,,,895.607317,726.2811611,1064.933473,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.137,,,0.119,0.157,0.183,,,0.16,0.207,0.128,,,0.111,0.147,361.7,18,4976,,,0.133,800,,,,0.001281492,7.849136064,6125,,,,,,,,,,,,,,,,,,,,,,,,,,0.386,,,0.37,0.4,0.1809375,579,3200,0.154724734,0.207150266,0.082489146,114,1382,0.05627638,0.108701912,0.003788531,22,5807,,,263.9545455,0.975,73.125,75,,,,,,,,2.674264796,,,,,,,2.400517972,,2.939013278,2.674391318,,,,,,,2.467730156,,2.838797988,0.008107657,,,,,-13910.62,,,,,0.746138178,41395,55479,0.619206831,0.873069526,45201,,,38142.61702,52259.38298,,,,,,,20818,3365.06383,38270.93617,,,,57466,46693.74468,68238.25532,,,,,,,,,,,34.13863413,,,,,0.259817261,,45201,,,11.29943503,4,354,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,51.77131869,21,40563,32.04726224,79.13796005,,,,,,,,,,,,,47.46431049,25.27274633,81.16541647,,,,,,500,,,,,0.646522235,2835,4385,,,0.542,,,,,11.09740606,,,,,0.667325168,1689,2531,0.614642224,0.720008112,0.127202407,296,2327,0.068593773,0.185811041,0.611615962,1548,2531,0.536962266,0.686269658,5807,,,,,0.225934217,1312,5807,,,0.23265025,1351,5807,,,0.277079387,1609,5807,,,0.004305149,25,5807,,,0.006888238,40,5807,,,0.00086103,5,5807,,,0.035302222,205,5807,,,0.660237644,3834,5807,,,0.005041412,28,5554,0,0.022502583,0.524883761,3048,5807,,,1,6000,6000,, -13,205,13205,GA,Mitchell County,2024,1,11623.90638,507,60248,10041.10634,13206.70642,0,,,,2,,,,2,13492.75688,11037.17933,15948.33444,,,,,2,10981.56494,8583.222995,13379.90688,,,,,2,,0.253,,,0.222,0.286,4.840981188,,,3.992470925,5.772702512,5.468660274,,,4.463105964,6.522898836,0.122891566,204,1660,0.107097654,0.138685478,0,,,,,,,0.160714286,0.136665995,0.184762577,,,,0.075928918,0.05506158,0.096796255,,,,,,,0.228,,,0.191,0.268,0.422,,,0.349,0.497,6.8,0.079440939,0.15,,,0.345,,,0.294,0.397,0.599172604,13035,21755,,,0.133541514,,,0.107107806,0.164327113,0.166666667,4,24,0.070875168,0.286798115,817.8,176,21521,,,37.43068392,162,4328,31.66665267,43.19471517,,,,,,,41.68640455,33.43371543,51.35881632,57.61316872,31.49765546,96.6651075,32.7510917,24.99253327,42.15714706,,,,,,,0.174310736,2687,15415,0.152863928,0.195757545,0.000464662,10,21521,,,2152.1,0.000142072,3,21116,,,7038.666667,0.004451601,94,21116,,,224.6382979,3929,,,,,,,3056,,4180,0.5,,,,,,,0.48,,0.51,0.36,,,,,,,0.34,,0.37,0.834513274,12259,14690,0.80648821,0.862538339,0.532727961,2816,5286,0.446929567,0.618526354,0.039684466,327,8240,,,0.328,1541,,0.204085106,0.451914894,,,,,,,0.610707804,0.534488339,0.686927269,0.551181102,0.400910552,0.701451653,0.277896996,0.167855463,0.387938528,6.162684545,86407,14021,4.566608838,7.758760251,0.536113937,2635,4915,0.42854329,0.643684584,9.757910878,21,21521,,,84.95478213,93,109470,68.56947358,104.0753476,,,,,,,75.19376856,53.4701201,102.792357,,,,106.2188108,79.56517813,138.9368197,,,,9.7,,,,,0,,,,,0.174563591,1400,8020,0.123180458,0.225946725,0.138510101,0.095319621,0.181700581,0.025561097,0.00668248,0.044439714,0.011845387,0,0.024675253,0.840458117,6311,7509,0.806072661,0.874843573,,,,,,,0.697134671,0.603140206,0.791129135,,,,0.896619718,0.854046537,0.9391929,0.394,,7509,0.311030923,0.476969078,72.79365395,,,71.62831432,73.95899358,,,,,,,70.82550537,69.08965764,72.5613531,,,,73.56200202,71.86325579,75.26074825,,,,634.3030801,507,60248,577.1767358,691.4294244,,,,,,,735.5116856,642.9135739,828.1097972,,,,589.4214496,510.6531776,668.1897215,,,,83.93956351,18,21444,49.74790515,132.6606989,,,,,,,118.1173905,62.89253581,201.9843351,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.154,,,0.136,0.174,0.188,,,0.165,0.212,0.159,,,0.139,0.18,581.3,106,18235,,,0.15,3280,,,,0.079440939,1866.70319,23498,,,,,,,,,,,,,,,,,,,,,,,,,,0.41,,,0.396,0.422,0.21882138,2395,10945,0.190225635,0.247417124,0.066425378,312,4697,0.046170059,0.086680697,0.000615647,13,21116,,,1624.307692,0.886111111,207.35,234,,,,,,,,2.765391025,,,,,,,2.450535366,,3.315617821,2.800438442,,,,,,,2.50781421,,3.370716413,0.179060922,,,,,-17591.665,,,,,0.69109438,34789,50339,0.480169788,0.902018973,45296,,,39156.25532,51435.74468,43947,24067,63827,,,,32500,20582.7234,44417.2766,32083,9130.148936,55035.85106,65377,56050.02128,74703.97872,,,,,,,,,,,52.01144632,,,,,0.259272342,,45296,,,12.25114855,16,1306,,,11.65025922,18,154503,6.904681968,18.41243229,,,,,,,19.11837002,10.4521908,32.07737631,,,,,,,,,,14.18998846,16,109470,7.942028825,23.40422803,14.6158765,,,,,,,,,,,,,20.31015084,9.739506777,37.35109053,,,,20.09683018,22,109470,12.59457648,30.42684241,,,,,,,21.20849882,10.5872062,37.94786279,,,,20.04128505,9.610575177,36.85663676,,,,26.53670155,41,154503,19.04319519,36.00003208,,,,,,,17.75277216,9.4526035,30.35778107,,,,39.52178639,26.26194003,57.11998524,,,,,,2000,,,,,0.535744172,8963,16730,,,0.517,,,,,20.260255,,,,,0.636042403,5040,7924,0.589904139,0.682180667,0.151785714,1122,7392,0.105780806,0.197790623,0.778016154,6165,7924,0.738284866,0.817747441,21116,,,,,0.225895056,4770,21116,,,0.184078424,3887,21116,,,0.4587043,9686,21116,,,0.006724759,142,21116,,,0.009755636,206,21116,,,0.000663004,14,21116,,,0.054792574,1157,21116,,,0.461261603,9740,21116,,,0.007257036,148,20394,0.00032407,0.014190003,0.49720591,10499,21116,,,0.757756838,16485,21755,, -13,207,13207,GA,Monroe County,2024,1,10302.29757,521,77675,8817.60939,11786.98575,0,,,,2,,,,2,15872.82566,11963.58916,19782.06217,,,,,2,9212.367033,7548.854426,10875.87964,,,,,2,,0.164,,,0.138,0.193,3.907948865,,,3.109838223,4.82259008,5.120194267,,,4.158245141,6.221896869,0.102932376,172,1671,0.08836248,0.117502271,0,,,,,,,0.170068027,0.135003389,0.205132665,,,,0.07712305,0.061730267,0.092515834,,,,,,,0.165,,,0.129,0.203,0.374,,,0.299,0.453,8.6,0.014294163,0.102,,,0.244,,,0.199,0.294,0.668204743,18681,27957,,,0.157528869,,,0.125093332,0.193342137,0.181818182,8,44,0.108031958,0.266865368,268.2,77,28712,,,15.39032079,83,5393,12.2583046,19.07861817,,,,,,,22.66782912,14.80737857,33.21362169,,,,12.63537906,9.347722988,16.70464121,,,,,,,0.136527378,3032,22208,0.119846527,0.153208229,0.00052243,15,28712,,,1914.133333,0.000169912,5,29427,,,5885.4,0.000373806,11,29427,,,2675.181818,2614,,,,,,,2853,,2380,0.44,,,,,,,0.41,,0.45,0.42,,,,,,0.46,0.41,,0.42,0.884295017,17517,19809,0.857937072,0.910652963,0.567709947,3664,6454,0.486929915,0.64848998,0.028135991,360,12795,,,0.148,881,,0.090808511,0.205191489,,,,0.666666667,0.562986439,0.770346895,0.318181818,0.144300996,0.492062641,0.268722467,0,0.659415625,0.133816909,0.067618266,0.200015551,4.232711949,144636,34171,3.212878933,5.252544964,0.187628866,1092,5820,0.112215963,0.263041769,10.44859292,30,28712,,,101.4643975,141,138965,84.7165038,118.2122912,,,,,,,64.55777921,39.43356871,99.70425404,,,,117.74484,96.5892825,138.9003975,,,,10,,,,,0,,,,,0.130712531,1330,10175,0.091772302,0.16965276,0.118126273,0.08020054,0.156052006,0.012776413,0.001056644,0.024496182,0.008353808,0.001569338,0.015138279,0.864699419,11018,12742,0.827258624,0.902140215,,,,,,,0.847295209,0.822129601,0.872460817,,,,0.847129008,0.789696138,0.904561878,0.4,,12742,0.336157959,0.463842041,75.73611456,,,74.50705769,76.96517143,,,,,,,70.10507165,67.54534631,72.66479699,,,,76.961454,75.51571568,78.40719231,,,,482.3847968,521,77675,438.2833027,526.486291,,,,,,,719.7096504,601.0708975,838.3484034,,,,437.9003922,389.2346763,486.5661081,,,,90.19607843,23,25500,57.17657662,135.3384035,,,,,,,,,,,,,89.7414325,51.29498263,145.7344641,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.114,,,0.098,0.132,0.165,,,0.141,0.188,0.108,,,0.093,0.125,219.7,54,24583,,,0.102,2840,,,,0.014294163,377.7089514,26424,,,18.97263198,16,84332,10.84449848,30.8103657,,,,,,,,,,,,,22.76200696,12.44420102,38.19077996,,,,0.368,,,0.351,0.383,0.159561436,2605,16326,0.138114627,0.181008244,0.074701517,463,6198,0.053254708,0.096148325,0.000305842,9,29427,,,3269.666667,0.91,283.92,312,,,,,,,,3.310524587,,,,,,,2.824998541,,3.466295408,3.005893184,,,,,,,2.564226087,,3.159591441,0.007541438,,,,,265.75,,,,,0.6785474,42359,62426,0.545495465,0.811599336,76428,,,65680.76596,87175.23404,,,,,,,57820,47734.04255,67905.95745,,,,77945,67017.85106,88872.14894,,,,,,,,,,,27.32153981,,,,,0.153660962,,76428,,,12.10287443,16,1322,,,6.722723841,13,193374,3.579567311,11.49606251,,,,,,,,,,,,,,,,,,,24.00663701,37,138965,16.5250643,33.71424394,26.62540928,,,,,,,,,,,,,29.60335348,19.97325828,42.26062782,,,,29.5038319,41,138965,21.17245916,40.02527943,,,,,,,,,,,,,35.62028773,24.94801161,49.31349266,,,,26.37376276,51,193374,19.63699869,34.67662735,,,,,,,43.58997889,26.24401479,68.07115163,,,,22.80176714,15.59639184,32.18929178,,,,,,2300,,,,,0.728257823,15592,21410,,,0.606,,,,,40.40857067,,,,,0.831967213,8526,10248,0.797081155,0.866853272,0.082172131,802,9760,0.050139194,0.114205069,0.870316159,8919,10248,0.843738266,0.896894053,29427,,,,,0.206680939,6082,29427,,,0.193291875,5688,29427,,,0.21463282,6316,29427,,,0.003772046,111,29427,,,0.01063649,313,29427,,,0.000339824,10,29427,,,0.028443266,837,29427,,,0.730281714,21490,29427,,,0.003602199,97,26928,0,0.008572473,0.494443878,14550,29427,,,0.818363916,22879,27957,, -13,209,13209,GA,Montgomery County,2024,1,10705.0282,206,24963,8449.659272,12960.39712,0,,,,2,,,,2,12493.4226,7919.758229,18746.26811,1,,,,2,10028.14585,7425.754803,12630.53689,,,,,2,,0.215,,,0.186,0.25,4.457947482,,,3.5649372,5.435684291,5.360698331,,,4.310045355,6.515657273,0.101978691,67,657,0.078838261,0.125119121,0,,,,,,,0.202898551,0.135800053,0.269997049,,,,0.07239819,0.048238599,0.096557781,,,,,,,0.213,,,0.174,0.255,0.395,,,0.316,0.477,8,0.040246122,0.116,,,0.313,,,0.26,0.369,,,8610,,,0.150820054,,,0.119277676,0.187410683,0.3125,5,16,0.177519792,0.449075671,785.9,68,8653,,,31.06441297,68,2189,24.12273219,39.38154553,,,,,,,26.11940299,14.27972067,43.82392,56.07476636,28.97465004,97.951332,30.70175439,22.12712407,41.49985291,,,,,,,0.162966462,1035,6351,0.141519654,0.184413271,,0,8653,,,,,0,8655,,,,0.000693241,6,8655,,,1442.5,3389,,,,,,,1121,,3184,0.35,,,,,,,0.55,,0.32,0.37,,,,,,,0.34,,0.37,0.83895786,4798,5719,0.803806247,0.874109473,0.471787577,995,2109,0.386261115,0.55731404,0.038341969,148,3860,,,0.289,495,,0.188914894,0.389085106,,,,,,,0.423180593,0.229303928,0.617057258,0.218604651,0.033696324,0.403512978,0.108956602,0.036410271,0.181502934,5.482807127,105237,19194,3.9145083,7.051105955,0.293619424,520,1771,0.201503291,0.385735557,8.08967988,7,8653,,,90.98777213,41,45061,65.29439619,123.4351869,,,,,,,,,,,,,124.4952894,87.65617284,171.6003571,,,,9.2,,,,,1,,,,,0.089869281,275,3060,0.053618109,0.126120453,0.077870216,0.041192225,0.114548207,0.019607843,0.001244014,0.037971672,0.004901961,0,0.016189354,0.824153166,2798,3395,0.792072765,0.856233568,,,,,,,,,,,,,0.639774859,0.52262844,0.756921279,0.339,,3395,0.263964544,0.414035456,73.16636242,,,71.51350552,74.81921932,,,,,,,71.54804478,67.64785442,75.44823514,,,,73.35064867,71.42750159,75.27379575,,,,606.603586,206,24963,519.8245595,693.3826126,,,,,,,722.6318293,542.8632708,942.877785,,,,585.3352648,483.6255946,687.0449351,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.141,,,0.121,0.162,0.183,,,0.158,0.209,0.132,,,0.113,0.152,216,16,7408,,,0.116,1010,,,,0.040246122,367.1653683,9123,,,,,,,,,,,,,,,,,,,,,,,,,,0.381,,,0.367,0.395,0.194774347,902,4631,0.166178602,0.223370092,0.079933848,145,1814,0.054912571,0.104955124,0.00023108,2,8655,,,4327.5,,,,,,,,,,,2.701374553,,,,,,,2.538808466,,2.812849148,2.661764789,,,,,,,2.476833072,,3.046959837,0.008707487,,,,,-8580.738,,,,,0.589995927,36211,61375,0.391331956,0.788659897,48356,,,41543.06383,55168.93617,,,,,,,30250,18995.19149,41504.80851,40542,29382.51064,51701.48936,72331,58470.40426,86191.59575,,,,,,,,,,,36.64505777,,,,,0.242865415,,48356,,,8.830022075,4,453,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,22.19213954,10,45061,10.64199351,40.81213476,,,,,,,,,,,,,33.64737551,16.13522442,61.87872154,,,,30.12430239,19,63072,18.13679789,47.04282974,,,,,,,,,,,,,35.99625639,20.14683145,59.37035078,,,,,,700,,,,,0.565763195,3966,7010,,,0.473,,,,,8.81534762,,,,,0.764666217,2268,2966,0.723587728,0.805744707,0.07422452,201,2708,0.033822448,0.114626592,0.78927849,2341,2966,0.73567884,0.84287814,8655,,,,,0.201155402,1741,8655,,,0.180127094,1559,8655,,,0.253379549,2193,8655,,,0.001155402,10,8655,,,0.00727903,63,8655,,,0.000462161,4,8655,,,0.078451762,679,8655,,,0.642980936,5565,8655,,,0.022605737,186,8228,0,0.049883487,0.488388215,4227,8655,,,0.987108014,8499,8610,, -13,211,13211,GA,Morgan County,2024,1,9908.635109,351,54385,8261.809457,11555.46076,0,,,,2,,,,2,13325.43399,9562.561494,18077.45586,,,,,2,9289.596004,7413.347132,11165.84488,,,,,2,,0.145,,,0.122,0.171,3.560143176,,,2.79480836,4.422775493,5.002098857,,,3.99808103,6.062334682,0.069735951,103,1477,0.056746306,0.082725597,0,,,,,,,0.130177515,0.094303414,0.166051616,,,,0.050695825,0.037139378,0.064252272,,,,,,,0.15,,,0.118,0.186,0.336,,,0.264,0.415,8.1,0.109814316,0.076,,,0.226,,,0.183,0.272,0.290690153,5842,20097,,,0.166666672,,,0.132522828,0.203870797,0.181818182,6,33,0.096932784,0.281792641,363.5,75,20635,,,16.40513552,69,4206,12.76417465,20.76174895,,,,,,,25.53626149,16.52572201,37.69655945,,,,12.92077525,9.14350957,17.73477352,,,,,,,0.145488143,2362,16235,0.127615803,0.163360483,0.000387691,8,20635,,,2579.375,0.000380391,8,21031,,,2628.875,0.000332842,7,21031,,,3004.428571,2653,,,,,,,1813,,2720,0.42,,,,,,,0.31,,0.43,0.45,,,,,,,0.35,,0.46,0.893729557,12842,14369,0.870450164,0.91700895,0.627743448,2946,4693,0.522939624,0.732547272,0.026898897,261,9703,,,0.156,714,,0.096425532,0.215574468,,,,,,,0.154368109,0.050793048,0.257943169,0.149193548,0,0.360369942,0.087937234,0.02609461,0.149779859,4.444985948,148667,33446,3.464331894,5.425640001,0.155237045,704,4535,0.061725751,0.24874834,10.66149746,22,20635,,,98.1283312,95,96812,79.39167982,119.9567963,,,,,,,96.2417593,58.78696687,148.6375916,,,,106.248849,83.57145972,133.1838522,,,,10,,,,,0,,,,,0.105823864,745,7040,0.071969132,0.139678596,0.083226267,0.053523222,0.112929312,0.0234375,0.004294453,0.042580547,0.001988636,0,0.004565326,0.823876579,7957,9658,0.781702961,0.866050197,,,,,,,0.922686451,0.838678421,1,,,,0.780615482,0.707967997,0.853262968,0.374,,9658,0.305741073,0.442258927,75.83938885,,,74.51379293,77.16498478,,,,,,,73.30830905,70.06151046,76.55510764,,,,76.25148966,74.75989684,77.74308248,,,,463.9153165,351,54385,412.0029949,515.8276381,,,,,,,617.9474177,492.8990614,765.0609512,,,,437.4044256,378.9497058,495.8591455,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.106,,,0.091,0.123,0.16,,,0.137,0.184,0.095,,,0.08,0.11,223.9,39,17417,,,0.076,1500,,,,0.109814316,1962.162194,17868,,,,,,,,,,,,,,,,,,,,,,,,,,0.345,,,0.33,0.359,0.17089097,1989,11639,0.147061183,0.194720757,0.083419582,403,4831,0.059589795,0.107249369,0.000380391,8,21031,,,2628.875,0.94,198.34,211,,,,,,,,3.12146656,,,,,,,2.532722566,,3.318394506,3.151431886,,,,,,,2.735861118,,3.349645507,0.004713529,,,,,-142.0645,,,,,0.738514174,45330,61380,0.55943434,0.917594008,74340,,,64547.14894,84132.85106,,,,,,,66000,15054.29787,116945.7021,46086,43487.3617,48684.6383,87932,79592.76596,96271.23404,,,,,,,,,,,20.82731599,,,,,0.201869788,,74340,,,10.64859632,11,1033,,,9.020657305,12,133028,4.661105263,15.75727294,,,,,,,,,,,,,,,,,,,12.7489434,14,96812,6.58756509,22.26983844,14.46101723,,,,,,,,,,,,,17.28735955,8.932630945,30.19753813,,,,17.55980664,17,96812,10.22923446,28.11495147,,,,,,,,,,,,,19.83311848,10.84295043,33.27660276,,,,33.8274649,45,133028,24.67398502,45.2638095,,,,,,,,,,,,,36.27770062,25.2687477,50.45349963,,,,,,1800,,,,,0.815818815,11707,14350,,,0.619,,,,,16.58811209,,,,,0.743376829,5640,7587,0.703484274,0.783269384,0.113642528,838,7374,0.076535856,0.1507492,0.83353104,6324,7587,0.782729442,0.884332637,21031,,,,,0.219390424,4614,21031,,,0.208834578,4392,21031,,,0.200038039,4207,21031,,,0.005753412,121,21031,,,0.00708478,149,21031,,,0.000570586,12,21031,,,0.034615568,728,21031,,,0.740383244,15571,21031,,,0.002916819,56,19199,0,0.009534262,0.513147259,10792,21031,,,0.765686421,15388,20097,, -13,213,13213,GA,Murray County,2024,1,11792.05042,842,112839,10581.59453,13002.50631,0,,,,2,,,,2,,,,2,,,,2,13729.50506,12217.48959,15241.52052,,,,,2,,0.201,,,0.169,0.235,4.501193941,,,3.566761614,5.475704209,5.534278829,,,4.381267894,6.695395085,0.090353698,281,3110,0.080277768,0.100429627,0,,,,,,,,,,0.051246537,0.03516245,0.067330625,0.102277611,0.089965878,0.114589344,,,,,,,0.21,,,0.168,0.251,0.356,,,0.282,0.434,7.6,0.065685938,0.121,,,0.287,,,0.236,0.343,0.680834563,27215,39973,,,0.164114746,,,0.130641274,0.202585189,0.09375,3,32,0.028265387,0.194075914,270.3,108,39951,,,34.52280405,327,9472,30.78093782,38.26467029,,,,,,,,,,22.20459952,16.77311585,28.83451943,39.43830296,34.68087384,44.19573208,,,,,,,0.200639035,6719,33488,0.178000737,0.223277333,0.000150184,6,39951,,,6658.5,9.88338E-05,4,40472,,,10118,0.000370627,15,40472,,,2698.133333,3461,,,,,,,,2726,3473,0.37,,,,,,,,0.26,0.38,0.41,,,,,,,,0.21,0.42,0.761503181,20588,27036,0.734027503,0.788978859,0.495754344,5021,10128,0.42475601,0.566752679,0.039763113,611,15366,,,0.191,1787,,0.11593617,0.26606383,0.038961039,0,0.279662428,,,,,,,0.111258865,0.019759401,0.20275833,0.19219805,0.131479609,0.25291649,3.977142857,107880,27125,3.428175562,4.526110152,0.244876729,2354,9613,0.182088577,0.307664882,3.253986133,13,39951,,,77.08402158,154,199782,64.90927093,89.25877224,,,,,,,,,,,,,91.22914434,76.58053023,105.8777585,,,,9.1,,,,,0,,,,,0.108471074,1575,14520,0.083498899,0.133443249,0.071905424,0.051468785,0.092342064,0.035055096,0.020217618,0.049892575,0.005165289,0.000615367,0.009715211,0.865793781,15341,17719,0.839456602,0.89213096,,,,,,,,,,0.834415584,0.718649097,0.950182071,0.797743646,0.741956603,0.853530688,0.414,,17719,0.367961616,0.460038384,73.10551534,,,72.17219958,74.03883109,,,,,,,,,,95.79569901,74.98624351,116.6051545,71.50099587,70.44311976,72.55887198,,,,593.0260274,842,112839,551.8166962,634.2353586,,,,,,,,,,,,,657.6931448,610.4129053,704.9733843,,,,77.39938081,33,42636,53.27817237,108.6975074,,,,,,,,,,,,,97.79632286,65.98276836,139.6103318,,,,6.772009029,21,3101,4.191980324,10.35173516,,,,,,,,,,,,,,,,,,,,,,0.14,,,0.118,0.161,0.184,,,0.158,0.211,0.112,,,0.095,0.13,116.7,39,33410,,,0.121,4840,,,,0.065685938,2603.002335,39628,,,18.32127183,22,120079,11.48184351,27.73862573,,,,,,,,,,,,,22.48362273,14.09036666,34.040475,,,,0.35,,,0.335,0.365,0.244663247,5914,24172,0.216067502,0.273258991,0.089697956,882,9833,0.06348519,0.115910722,0.000716545,29,40472,,,1395.586207,0.97,433.59,447,,,,,,,,2.835200524,,,,,,,,2.765225493,2.861203165,2.88560644,,,,,,,,2.835306699,2.923013839,0.027301305,,,,,-1778.68,,,,,0.679906028,37044,54484,0.584183233,0.775628822,62109,,,56052.65957,68165.34043,65714,21843.3617,109584.6383,,,,,,,71037,57403.97872,84670.02128,56781,52429.68085,61132.31915,,,,,,,,,,,,,,,,0.241623597,,62109,,,3.20256205,8,2498,,,,,,,,,,,,,,,,,,,,,,,,,,17.5669083,36,199782,12.16559467,24.54799357,18.01964141,,,,,,,,,,,,,21.4418763,14.84912266,29.96287296,,,,11.01200308,22,199782,6.901163705,16.67230501,,,,,,,,,,,,,12.85779887,7.959180153,19.65451139,,,,21.89031874,61,278662,16.74435932,28.11903019,,,,,,,,,,,,,24.92032055,18.87440743,32.28716577,,,,13,,4000,,,37,15,0.549607143,15389,28000,,,0.518,,,,,12.23287858,,,,,0.736523319,10944,14859,0.70793221,0.765114429,0.075212965,1086,14439,0.055883678,0.094542252,0.810485228,12043,14859,0.780699056,0.8402714,40472,,,,,0.234730184,9500,40472,,,0.158529354,6416,40472,,,0.010970548,444,40472,,,0.01077288,436,40472,,,0.007017197,284,40472,,,0.003063847,124,40472,,,0.166633722,6744,40472,,,0.801739474,32448,40472,,,0.022232847,837,37647,0.011274183,0.033191512,0.504027476,20399,40472,,,0.679583719,27165,39973,, -13,215,13215,GA,Muscogee County,2024,1,12703.45746,3937,564100,12151.56527,13255.34965,0,,,,2,4298.539913,2588.001827,6712.702543,1,15672.18418,14758.12728,16586.24109,,5904.261893,4651.88683,7390.06419,,11458.52188,10633.22502,12283.81875,,,,,2,,0.196,,,0.17,0.222,4.30008116,,,3.574176419,5.112221606,5.633117307,,,4.824726664,6.489777211,0.121454173,2372,19530,0.116872824,0.126035522,0,,,,0.102040816,0.073788632,0.130293001,0.168474094,0.160796079,0.176152108,0.083577713,0.071585583,0.095569842,0.077408257,0.071137048,0.083679466,,,,0.079295154,0.059001229,0.099589079,0.184,,,0.154,0.219,0.406,,,0.356,0.456,7,0.103872058,0.133,,,0.272,,,0.232,0.311,0.863426799,178662,206922,,,0.151932114,,,0.12527549,0.181334618,0.201754386,23,114,0.155047386,0.252001383,839.9,1727,205617,,,31.11017897,1335,42912,29.44132649,32.77903145,,,,,,,39.69583126,37.06858262,42.3230799,41.36253041,34.80836413,47.9166967,15.92109898,13.84534971,17.99684825,,,,36.8921185,28.53236178,46.93582026,0.136725513,22824,166933,0.121236151,0.152214874,0.001035907,213,205617,,,965.3380282,0.000582382,118,202616,,,1717.084746,0.003430134,695,202616,,,291.533813,2782,,,,,,1576,3394,1927,2424,0.42,,,,,,0.24,0.4,0.41,0.44,0.36,,,,,,0.3,0.26,0.26,0.42,0.88548914,119000,134389,0.875836266,0.895142014,0.649280423,38303,58993,0.613625252,0.684935594,0.041170858,3107,75466,,,0.256,12594,,0.184510638,0.327489362,,,,0.009622502,0,0.078912567,0.387178943,0.341002171,0.433355715,0.231709477,0.157992364,0.305426591,0.106917826,0.075672465,0.138163188,4.830001809,106801,22112,4.481794656,5.178208962,0.452711921,22895,50573,0.417597592,0.487826251,10.11589509,208,205617,,,96.34438961,950,986046,90.21777308,102.4710061,,,,37.10024486,17.79100948,68.22867123,89.20139669,80.55637531,97.84641807,41.41161855,28.32551643,58.4608493,124.4251405,113.3741876,135.4760935,,,,9.1,,,,,0,,,,,0.195112016,14370,73650,0.181585644,0.208638389,0.170049522,0.156072948,0.184026097,0.022946368,0.017578994,0.028313742,0.013441955,0.009582637,0.017301274,0.787107468,69330,88082,0.770897916,0.80331702,,,,0.834882856,0.815539845,0.854225867,0.797006503,0.775305379,0.818707628,0.702720124,0.606311845,0.799128402,0.851293907,0.835541404,0.867046411,0.176,,88082,0.154853162,0.197146838,72.28674284,,,71.87741653,72.69606915,,,,85.06844035,81.60160581,88.53527488,70.16035017,69.52066071,70.80003964,87.04606128,83.114936,90.97718657,72.88395609,72.28168699,73.48622519,,,,619.0925846,3937,564100,599.3420946,638.8430747,,,,201.986625,141.4689489,279.6346291,727.4878911,695.8881761,759.0876061,262.2116501,210.3014109,323.0520866,590.6743819,561.1157548,620.233009,,,,88.32215506,192,217386,75.82891416,100.815396,,,,,,,122.3621543,101.3276874,143.3966212,56.19920457,29.92370954,96.10235137,59.70403855,43.0294195,80.70251578,,,,10.67883285,213,19946,9.244697771,12.11296793,,,,,,,15.61831408,13.08485557,18.15177258,,,,6.277901786,4.579144641,8.40032652,,,,,,,0.126,,,0.11,0.143,0.174,,,0.153,0.196,0.142,,,0.125,0.159,690.7,1164,168524,,,0.133,27090,,,,0.103872058,19723.74576,189885,,,16.7272192,100,597828,13.44868424,20.00575416,,,,,,,9.690791953,6.386292961,14.09959351,,,,26.78753657,20.58427861,34.27289581,,,,0.421,,,0.407,0.433,0.174235812,20560,118001,0.153980492,0.194491131,0.048956379,2505,51168,0.035849996,0.062062762,0.002334465,473,202616,,,428.3636364,0.91,1799.07,1977,,,0.117240072,1237,10551,0.082773852,0.151706292,2.791578394,,,,,,3.937046668,2.539993662,2.639110991,3.410016788,2.461035406,,,,,,3.837044817,2.193094248,2.368770513,3.047531776,0.134582992,,,,,-15181.61,,,,,0.796952724,40694,51062,0.730994799,0.862910649,53740,,,49781.87234,57698.12766,74310,54434.76596,94185.23404,85406,72607.02128,98204.97872,43361,39680.48936,47041.51064,59719,47064.19149,72373.80851,69284,64895.74468,73672.25532,,,,,,,,,,,55.55098647,,,,,0.279251954,,53740,,,11.20797011,162,14454,,,19.57936869,271,1384110,17.24821928,21.91051811,,,,,,,35.20080101,30.60122968,39.80037235,,,,6.109547786,4.231039447,8.537480655,,,,13.06752448,133,986046,10.80307715,15.33197182,13.48821455,,,,,,,5.720145125,3.736588708,8.381337939,,,,21.20759657,16.91600959,26.25644763,,,,30.72878953,303,986046,27.26875678,34.18882228,,,,,,,43.40116856,37.37097912,49.431358,12.9411308,6.205775233,23.79920029,22.73888605,18.26119268,27.98215595,,,,13.14924392,182,1384110,11.23885778,15.05963006,,,,,,,13.61097639,10.90183412,16.78908909,,,,14.37540655,11.39880335,17.89143782,,,,29.88950276,,18100,,,484,57,0.562588622,80543,143165,,,0.586,,,,,101.055576,,,,,0.495078642,39535,79856,0.47808259,0.512074693,0.178797612,13749,76897,0.162655844,0.194939381,0.85710529,68445,79856,0.844195388,0.870015191,202616,,,,,0.246816638,50009,202616,,,0.148443361,30077,202616,,,0.474380108,96117,202616,,,0.00533028,1080,202616,,,0.029587989,5995,202616,,,0.002645398,536,202616,,,0.08340901,16900,202616,,,0.379999605,76994,202616,,,0.009453732,1800,190401,0.004461132,0.014446332,0.518113081,104978,202616,,,0.03756488,7773,206922,, -13,217,13217,GA,Newton County,2024,1,10248.36677,1929,323426,9587.465431,10909.26811,0,,,,2,,,,2,10877.60043,9880.0413,11875.15956,,6158.092164,4335.865187,8488.118868,,10434.23475,9400.85543,11467.61406,,,,,2,,0.187,,,0.161,0.214,3.910355586,,,3.113175734,4.858927005,5.250037722,,,4.20176933,6.402915671,0.103554377,976,9425,0.097403152,0.109705601,0,,,,0.111111111,0.046182322,0.1760399,0.130312938,0.120229514,0.140396362,0.069129917,0.051964567,0.086295266,0.078701156,0.069946191,0.087456121,,,,0.059574468,0.029311297,0.089837639,0.179,,,0.146,0.214,0.402,,,0.327,0.481,7.4,0.143655665,0.091,,,0.282,,,0.233,0.332,0.582790288,65554,112483,,,0.163213318,,,0.129849664,0.201846549,0.198019802,20,101,0.148499939,0.251689472,757.7,874,115355,,,18.62007816,567,30451,17.08741739,20.15273893,,,,,,,18.03502832,15.91113345,20.15892319,17.88553259,13.0458302,23.9322498,17.8420509,15.30503,20.3790718,,,,29.4426919,19.56445495,42.55288743,0.140186626,13566,96771,0.123505775,0.156867477,0.00023406,27,115355,,,4272.407407,0.000204045,24,117621,,,4900.875,0.001020226,120,117621,,,980.175,3561,,,,,,,3868,3507,3426,0.42,,,,,,,0.41,0.17,0.43,0.43,,,,,,0.6,0.36,0.23,0.46,0.896660236,65536,73089,0.883574031,0.909746442,0.619093706,17911,28931,0.563829133,0.674358278,0.034184415,1857,54323,,,0.185,5371,,0.119468085,0.250531915,,,,0.269340974,0,0.609053928,0.200985008,0.146930895,0.255039121,0.189747241,0,0.380982675,0.1120769,0.069091801,0.155061998,3.96823777,124436,31358,3.368060493,4.568415048,0.30792915,8901,28906,0.25925648,0.356601819,6.501668762,75,115355,,,82.79377004,462,558013,75.24401706,90.34352302,,,,,,,66.89066068,56.9515636,76.82975776,38.35939805,20.42476392,65.59573892,110.9212581,97.73910337,124.1034129,,,,10.2,,,,,0,,,,,0.175522706,6590,37545,0.148524428,0.202520984,0.156923491,0.130773946,0.183073037,0.014782261,0.009243759,0.020320764,0.007324544,0.003241502,0.011407586,0.76402568,40106,52493,0.733856735,0.794194625,,,,,,,0.726320653,0.669524837,0.783116469,0.539479488,0.415011847,0.66394713,0.767855035,0.741349975,0.794360094,0.52,,52493,0.47569005,0.56430995,74.22937895,,,73.69894411,74.75981378,,,,,,,73.83116817,73.00024605,74.66209029,92.94625052,67.83182207,118.060679,73.85130695,73.08382824,74.61878566,,,,515.1598561,1929,323426,491.7613232,538.558389,,,,,,,524.725699,489.3067565,560.1446415,368.9123406,266.9836901,496.9225018,534.6716781,499.8304593,569.5128969,,,,69.46105936,90,129569,55.85489441,85.37943473,,,,,,,76.61637089,56.68121296,101.2909055,,,,76.27432606,53.1278628,106.0791234,,,,7.830687831,74,9450,6.148774206,9.830711482,,,,,,,11.44666342,8.410577732,15.22163574,,,,6.073409031,3.850020343,9.113095562,,,,,,,0.121,,,0.104,0.138,0.171,,,0.148,0.196,0.125,,,0.107,0.146,476.7,454,95244,,,0.091,10110,,,,0.143655665,14359.53299,99958,,,17.33285546,59,340394,13.19457265,22.3581207,,,,,,,,,,,,,31.65950887,23.17873955,42.22934817,,,,0.406,,,0.392,0.419,0.173400255,11850,68339,0.151953446,0.194847063,0.063238869,1899,30029,0.045366529,0.08111121,0.000654645,77,117621,,,1527.545455,0.89,1205.06,1354,,,0.104591463,713,6817,0.06502277,0.144160155,2.915210704,,,,,,,2.725350954,2.883803817,3.263187641,2.629946101,,,,,,,2.426201472,2.713581044,2.95878749,0.08509555,,,,,-9487.652,,,,,0.844215736,45033,53343,0.777917706,0.910513766,72128,,,66647.14894,77608.85106,,,,,,,69439,64178.57447,74699.42553,54564,15221.02128,93906.97872,73117,68124.65957,78109.34043,,,,,,,,,,,38.85734379,,,,,0.20806067,,72128,,,9.53343926,66,6923,,,12.58947286,97,770485,10.2092144,15.35808925,,,,,,,21.85904042,17.25081286,27.32004999,,,,4.60021276,2.629419066,7.470457318,,,,15.87241867,90,558013,12.71315669,19.57856979,16.1286565,,,,,,,8.174890744,4.993435644,12.62545573,,,,26.76750021,20.56888212,34.2472606,,,,22.5801191,126,558013,18.63738919,26.52284901,,,,,,,24.21903232,18.61056942,30.98666311,,,,24.46792459,18.67160414,31.49506906,,,,18.30016159,141,770485,15.2795044,21.32081877,,,,,,,17.88466943,13.74307105,22.88226133,,,,21.56349731,16.96105854,27.03003061,,,,19.18699187,,12300,,,166,70,0.692928777,54239,78275,,,0.665,,,,,39.49742027,,,,,0.72565529,28958,39906,0.697718033,0.753592547,0.148429795,5719,38530,0.123084836,0.173774754,0.932290884,37204,39906,0.919716246,0.944865521,117621,,,,,0.250644018,29481,117621,,,0.13503541,15883,117621,,,0.496918067,58448,117621,,,0.004914089,578,117621,,,0.013483987,1586,117621,,,0.001428316,168,117621,,,0.068516676,8059,117621,,,0.397003936,46696,117621,,,0.011326146,1205,106391,0.007096855,0.015555437,0.526921213,61977,117621,,,0.339749118,38216,112483,, -13,219,13219,GA,Oconee County,2024,1,5385.209815,396,116479,4523.412768,6247.006863,0,,,,2,,,,2,8515.462461,4867.322561,13828.57754,1,,,,2,5787.491388,4778.813911,6796.168866,,,,,2,,0.108,,,0.089,0.132,3.014174333,,,2.345489019,3.809661422,4.425147949,,,3.534126478,5.417987882,0.055276382,132,2388,0.046110778,0.064441986,0,,,,,,,0.099009901,0.040760065,0.157259737,,,,0.05387714,0.043947295,0.063806985,,,,,,,0.108,,,0.08,0.142,0.284,,,0.222,0.353,9.2,0.034027986,0.064,,,0.178,,,0.141,0.22,0.736596569,30789,41799,,,0.187014259,,,0.149764991,0.227857493,0.230769231,6,26,0.129644728,0.34280412,206.9,89,43023,,,3.343549735,36,10767,2.341781129,4.628882185,,,,,,,,,,,,,3.269118506,2.172305506,4.72478645,,,,,,,0.096808952,3504,36195,0.084894058,0.108723845,0.001138926,49,43023,,,878.0204082,0.000665321,29,43588,,,1503.034483,0.002798936,122,43588,,,357.2786885,2326,,,,,,,5322,,2286,0.53,,,,,,0.5,0.58,,0.53,0.54,,,,,,0.39,0.5,0.33,0.54,0.954831665,26234,27475,0.943938484,0.965724846,0.851750547,7785,9140,0.771948296,0.931552798,0.023068455,461,19984,,,0.062,690,,0.039361702,0.084638298,,,,0.067484663,0,0.247381124,0.02962963,0,0.225162979,0.187287174,0.040002785,0.334571562,0.038935379,0.0128175,0.065053258,3.748785141,208290,55562,3.330321054,4.167249228,0.116616753,1285,11019,0.075553278,0.157680228,10.92438928,47,43023,,,61.46921334,124,201727,50.64982065,72.28860604,,,,,,,,,,,,,69.20947401,56.66857446,81.75037355,,,,10,,,,,0,,,,,0.079491833,1095,13775,0.058786503,0.100197163,0.069040698,0.049977746,0.08810365,0.011252269,0.001768799,0.020735738,0.005444646,0,0.011194009,0.743156042,15202,20456,0.708506074,0.777806011,,,,,,,0.911804613,0.794837681,1,0.726090283,0.649180142,0.803000425,0.7122255,0.679545982,0.744905018,0.223,,20456,0.185416112,0.260583888,79.94587522,,,79.10776284,80.7839876,,,,91.35649936,81.48264387,101.2303549,79.83531635,74.00113951,85.66949319,94.34419675,81.39196475,107.2964287,79.31631009,78.39417857,80.23844161,,,,271.6183715,396,116479,243.8053974,299.4313456,,,,,,,463.9578905,317.3468536,654.9701091,,,,281.8598436,250.9805776,312.7391096,,,,33.73250127,16,47432,19.28103907,54.77946871,,,,,,,,,,,,,39.51527924,22.11640183,65.17444381,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.086,,,0.072,0.103,0.137,,,0.116,0.161,0.079,,,0.066,0.093,61.9,22,35522,,,0.064,2610,,,,0.034027986,1116.390153,32808,,,10.44789314,13,124427,5.563063074,17.86621547,,,,,,,,,,,,,11.55690814,5.97162308,20.18759274,,,,0.315,,,0.297,0.334,0.112772838,2790,24740,0.097283476,0.128262199,0.064553601,778,12052,0.046681261,0.082425942,0.001904194,83,43588,,,525.1566265,0.98,622.3,635,,,,,,,,3.643024882,,,,,,4.171867186,,3.047096375,3.731954216,3.633076886,,,,,,4.330139131,,3.072864592,3.679684629,0.020450447,,,,,2818.674,,,,,0.685234184,59823,87303,0.576308876,0.794159493,114758,,,100584.0426,128931.9575,,,,146458,97278.08511,195637.9149,66861,46986.95745,86735.04255,143412,86897.2766,199926.7234,117077,104334.0213,129819.9787,,,,,,,,,,,45.62702863,,,,,0.13077084,,114758,,,21.59309021,45,2084,,,,,,,,,,,,,,,,,,,,,,,,,,15.56402502,33,201727,10.57499988,22.09189115,16.35874226,,,,,,,,,,,,,17.07521924,11.43554231,24.52286312,,,,14.37586441,29,201727,9.627742017,20.64613931,,,,,,,,,,,,,17.15448501,11.48862784,24.63670198,,,,11.65628529,32,274530,7.972890508,16.45519691,,,,,,,,,,,,,12.57507101,8.421722411,18.05989959,,,,,,4900,,,,,0.905486598,25168,27795,,,0.69,,,,,28.46542304,,,,,0.835799023,11977,14330,0.803693987,0.867904059,0.0558957,776,13883,0.037576991,0.074214408,0.938311235,13446,14330,0.922427234,0.954195236,43588,,,,,0.258236212,11256,43588,,,0.172226301,7507,43588,,,0.047490135,2070,43588,,,0.003326604,145,43588,,,0.047008351,2049,43588,,,0.000757089,33,43588,,,0.058869414,2566,43588,,,0.829677893,36164,43588,,,0.007708672,308,39955,0.001868922,0.013548423,0.507066165,22102,43588,,,0.54085026,22607,41799,, -13,221,13221,GA,Oglethorpe County,2024,1,8768.33348,276,42108,7127.81759,10408.84937,0,,,,2,,,,2,9185.788306,5756.684626,13907.39389,1,,,,2,9320.999973,7290.882448,11351.1175,,,,,2,,0.18,,,0.155,0.21,4.080905822,,,3.246299926,4.985753599,5.494124152,,,4.399549584,6.637530826,0.078639745,74,941,0.061440989,0.095838501,0,,,,,,,0.132911392,0.079976703,0.185846082,,,,0.063309353,0.045204471,0.081414235,,,,,,,0.185,,,0.15,0.226,0.341,,,0.265,0.423,8.8,0.025047021,0.087,,,0.259,,,0.213,0.312,0.262394604,3890,14825,,,0.165497564,,,0.131242456,0.20293088,0.105263158,2,19,0.021173544,0.243494433,475.6,72,15140,,,20.96719648,62,2957,16.07542932,26.87899962,,,,,,,20.95238095,10.45935308,37.48959717,,,,21.02102102,15.15010297,28.4143137,,,,,,,0.188836595,2287,12111,0.166198297,0.211474893,6.60502E-05,1,15140,,,15140,6.46454E-05,1,15469,,,15469,0.000193936,3,15469,,,5156.333333,2427,,,,,,,2495,,2228,0.43,,,,,,,0.56,,0.41,0.46,,,,,,,0.39,,0.48,0.874430524,9213,10536,0.847776087,0.901084961,0.489761092,1722,3516,0.399469207,0.580052978,0.027355623,189,6909,,,0.183,589,,0.111510638,0.254489362,,,,,,,0.462546817,0.18964905,0.735444583,,,,0.112386418,0.046174488,0.178598349,4.880910118,120988,24788,4.019323403,5.742496833,0.436409769,1376,3153,0.328119632,0.544699905,5.284015852,8,15140,,,91.13362302,69,75713,70.90739841,115.3354326,,,,,,,,,,,,,104.1041748,79.24892125,134.2868006,,,,9.7,,,,,1,,,,,0.150684932,825,5475,0.102381348,0.198988516,0.115826538,0.077015753,0.154637323,0.019178082,0,0.039340322,0.016438356,0,0.042548801,0.84825406,5903,6959,0.798489993,0.898018126,,,,,,,,,,,,,0.723219456,0.586440211,0.8599987,0.523,,6959,0.438799545,0.607200455,76.60211297,,,75.20061708,78.00360886,,,,,,,75.96062146,72.92281756,78.99842536,,,,76.06929299,74.40149021,77.73709578,,,,461.1764696,276,42108,403.5450778,518.8078614,,,,,,,512.2637634,373.6487042,685.4492192,,,,474.702303,407.6129897,541.7916162,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.124,,,0.107,0.144,0.175,,,0.151,0.201,0.11,,,0.094,0.128,162.3,21,12941,,,0.087,1280,,,,0.025047021,373.1755612,14899,,,30.57970381,14,45782,16.71820863,51.3075469,,,,,,,,,,,,,41.01242091,22.42187215,68.81187345,,,,0.365,,,0.349,0.38,0.215070469,1938,9011,0.186474725,0.243666214,0.114172023,373,3267,0.080810321,0.147533725,0.000452518,7,15469,,,2209.857143,0.925,127.65,138,,,,,,,,3.031608673,,,,,,,2.373301785,,3.136609491,3.265777819,,,,,,,2.731976424,,3.386308477,0.003409605,,,,,-153.9053,,,,,0.85907112,45188,52601,0.671876154,1.046266086,62504,,,54210.04255,70797.95745,,,,,,,,,,88465,79134.44681,97795.55319,69844,58549.87234,81138.12766,,,,,,,,,,,18.34470047,,,,,0.187891975,,62504,,,1.315789474,1,760,,,,,,,,,,,,,,,,,,,,,,,,,,20.64747848,15,75713,11.28816862,34.64296047,19.81165718,,,,,,,,,,,,,24.13070661,12.46868823,42.15148824,,,,21.13243432,16,75713,12.07901213,34.31774939,,,,,,,,,,,,,22.938208,12.21362969,39.22503426,,,,29.38249372,31,105505,19.96397894,41.70610445,,,,,,,,,,,,,30.26443551,19.39099489,45.03108106,,,,,,1300,,,,,0.698839708,8131,11635,,,0.611,,,,,6.7109072,,,,,0.783045705,4129,5273,0.743134657,0.822956753,0.106880825,539,5043,0.065183935,0.148577715,0.74435805,3925,5273,0.698599595,0.790116506,15469,,,,,0.211002651,3264,15469,,,0.194582714,3010,15469,,,0.158575215,2453,15469,,,0.004460534,69,15469,,,0.012153339,188,15469,,,0.000517163,8,15469,,,0.068394854,1058,15469,,,0.735600233,11379,15469,,,0.002957122,42,14203,0,0.011349016,0.504104984,7798,15469,,,1,14825,14825,, -13,223,13223,GA,Paulding County,2024,1,7098.585286,1916,495414,6640.408743,7556.761829,0,,,,2,,,,2,6599.700377,5602.316786,7597.083968,,3879.142745,2758.449702,5302.915832,,7624.004538,7054.386411,8193.622666,,,,,2,,0.151,,,0.128,0.175,3.533710171,,,2.824374236,4.329105716,5.216308648,,,4.308330312,6.186972023,0.088153367,1076,12206,0.083123579,0.093183156,0,,,,0.097297297,0.054590897,0.140003698,0.130340333,0.117784131,0.142896536,0.079303675,0.062833407,0.095773943,0.073062824,0.067328084,0.078797564,,,,0.11969112,0.080158582,0.159223658,0.146,,,0.117,0.177,0.364,,,0.297,0.432,8.1,0.135176187,0.066,,,0.232,,,0.191,0.274,0.680560414,114784,168661,,,0.173602041,,,0.138777964,0.212806604,0.150537634,14,93,0.101966748,0.206173586,451.7,785,173780,,,9.843272171,412,41856,8.892783474,10.79376087,,,,,,,8.737015824,7.02559248,10.73927578,6.651317473,4.344861401,9.745721178,10.75226927,9.483736587,12.02080196,,,,12.23021583,7.124551417,19.5817603,0.114855374,17662,153776,0.101748991,0.127961757,0.000138106,24,173780,,,7240.833333,0.000162537,29,178421,,,6152.448276,0.000751033,134,178421,,,1331.5,4884,,,,,,,6372,4687,4646,0.37,,,,,,0.38,0.36,0.27,0.38,0.42,,,,,,0.42,0.35,0.36,0.43,0.910087287,101553,111586,0.898370032,0.921804541,0.64646058,30511,47197,0.603766865,0.689154295,0.026100268,2387,91455,,,0.094,4178,,0.060638298,0.127361702,,,,0.338983051,0.016686859,0.661279243,0.10670496,0.068910627,0.144499292,0.124289773,0.061372672,0.187206874,0.066990774,0.041260506,0.092721043,3.166062349,147567,46609,2.947837606,3.384287091,0.175990275,7673,43599,0.146501388,0.205479162,4.545977673,79,173780,,,63.38653275,532,839295,58.00014949,68.772916,,,,,,,42.30142302,33.27275264,53.02520006,25.10460251,14.05085545,41.40622405,75.65552102,68.52940728,82.78163476,,,,10.2,,,,,0,,,,,0.106827893,5875,54995,0.090769959,0.122885828,0.092169283,0.077016427,0.107322139,0.012637513,0.00773001,0.017545015,0.004545868,0.001314845,0.007776891,0.775633731,64072,82606,0.755984134,0.795283329,,,,,,,0.594804279,0.527594635,0.662013923,0.557560672,0.450189472,0.664931872,0.690391984,0.662085646,0.718698321,0.652,,82606,0.611489362,0.692510638,77.4822259,,,77.03840326,77.92604854,,,,85.97147963,78.59769402,93.34526524,79.5337806,78.09682383,80.97073737,90.1614143,81.14118871,99.1816399,76.6320547,76.12815243,77.13595697,,,,353.7386548,1916,495414,337.7342064,369.7431033,,,,,,,300.8743086,266.2791094,335.4695078,177.1051235,129.6632095,236.2334158,387.9800147,368.2462991,407.7137303,,,,48.90229945,94,192220,39.51803579,59.84402962,,,,,,,67.03161658,45.22595022,95.69180068,,,,43.6919716,32.63125421,57.29620782,,,,6.553520417,78,11902,5.180285936,8.179090073,,,,,,,11.19104716,7.436369567,16.17417903,,,,5.333002605,3.859520428,7.18351951,,,,,,,0.108,,,0.093,0.123,0.159,,,0.138,0.182,0.1,,,0.086,0.115,201,288,143278,,,0.066,10890,,,,0.135176187,19238.81556,142324,,,21.90746133,113,515806,17.86813535,25.94678732,,,,,,,,,,,,,29.62042299,23.87201954,35.36882644,,,,0.347,,,0.335,0.36,0.141616993,15514,109549,0.123744653,0.159489334,0.051225901,2386,46578,0.036928028,0.065523773,0.000409145,73,178421,,,2444.123288,0.89,2177.83,2447,,,0.083502229,824,9868,0.048669488,0.118334971,3.123093626,,,,,,3.038164741,2.876580886,2.977216103,3.2420672,2.953256603,,,,,,3.223218011,2.663764012,2.782623968,3.08779851,0.044817342,,,,,-2063.309,,,,,0.773457027,50441,65215,0.713823061,0.833090993,87459,,,81272.78723,93645.21277,,,,89796,15671.06383,163920.9362,87311,73427.76596,101194.234,81987,74347.17021,89626.82979,91675,87355.85106,95994.14894,,,,,,,,,,,33.07630779,,,,,0.238729004,,87459,,,7.408120069,77,10394,,,4.880778275,56,1147358,3.686887457,6.338096567,,,,,,,8.574123296,5.237297259,13.24203803,,,,4.01930775,2.749203525,5.674063292,,,,14.42087257,122,839295,11.80275104,17.0389941,14.53600939,,,,,,,5.27898821,2.531480039,9.708247273,,,,17.98780175,14.50218953,21.47341396,,,,14.41686177,121,839295,11.84803913,16.98568441,,,,,,,11.84439845,7.331869319,18.1054212,,,,16.4240623,13.27231417,20.09889273,,,,15.0781186,173,1147358,12.83123707,17.32500013,,,,,,,14.14730344,9.738352728,19.86807394,,,,16.20283437,13.40673753,18.99893121,,,,,,18700,,,,,0.726680851,85385,117500,,,0.716,,,,,27.34528384,,,,,0.803032707,45544,56715,0.781244846,0.824820569,0.078606537,4382,55746,0.064028528,0.093184546,0.932469364,52885,56715,0.920000848,0.94493788,178421,,,,,0.251954647,44954,178421,,,0.117710359,21002,178421,,,0.244203317,43571,178421,,,0.004685547,836,178421,,,0.01488614,2656,178421,,,0.000846313,151,178421,,,0.085741028,15298,178421,,,0.629180422,112259,178421,,,0.007606828,1213,159462,0.005100377,0.010113279,0.50941313,90890,178421,,,0.204795418,34541,168661,, -13,225,13225,GA,Peach County,2024,1,12714.67661,626,78552,11189.49359,14239.85963,0,,,,2,,,,2,14082.38759,11630.3684,16534.40678,,11369.85293,6945.001549,17559.8157,1,12550.13546,10156.31103,14943.95989,,,,,2,,0.197,,,0.171,0.225,4.08287427,,,3.299239274,4.948957825,5.267873375,,,4.295084825,6.294817934,0.107751938,278,2580,0.095787245,0.119716631,0,,,,,,,0.151346332,0.129942112,0.172750553,0.075396825,0.042797394,0.107996257,0.07319224,0.058033019,0.088351461,,,,,,,0.179,,,0.148,0.213,0.398,,,0.324,0.479,7.2,0.105431424,0.119,,,0.275,,,0.231,0.326,0.649440692,18172,27981,,,0.14533785,,,0.115834863,0.177850002,0.25,11,44,0.171757275,0.333210138,911.4,259,28417,,,19.84768059,172,8666,16.88147254,22.81388865,,,,,,,14.45298207,11.44256201,18.01272799,32.43243243,20.78007143,48.25688864,27.93296089,21.31579188,35.95525764,,,,,,,0.169600511,3719,21928,0.148153702,0.191047319,0.000211141,6,28417,,,4736.166667,0.000490162,14,28562,,,2040.142857,0.001330439,38,28562,,,751.631579,4003,,,,,,,6248,,3504,0.43,,,,,,0.25,0.49,0.38,0.42,0.34,,,,,,0.33,0.28,0.32,0.35,0.859983338,15484,18005,0.834981615,0.884985061,0.574410018,3578,6229,0.474350255,0.674469781,0.037949064,450,11858,,,0.259,1516,,0.163680851,0.354319149,,,,,,,0.371993794,0.270628353,0.473359234,0.499197432,0.294760128,0.703634735,0.147097337,0.055677975,0.2385167,6.051994405,125476,20733,4.611120006,7.492868805,0.371550256,2181,5870,0.275556821,0.46754369,5.982334518,17,28417,,,92.54639973,128,138309,76.51355396,108.5792455,,,,,,,72.51153593,52.68699301,97.34335247,88.66820358,42.51985012,163.0639834,114.1644289,89.16336617,144.0028929,,,,9.9,,,,,0,,,,,0.122369065,1250,10215,0.089611887,0.155126243,0.107833164,0.071776652,0.143889676,0.015173764,0.003872209,0.026475319,0.00391581,0,0.009092893,0.79216764,9224,11644,0.75098398,0.8333513,,,,,,,0.714511978,0.553547774,0.875476181,,,,0.809100529,0.757234904,0.860966154,0.32,,11644,0.261799678,0.378200322,72.27465345,,,71.18422521,73.36508169,,,,,,,70.76686287,69.09085654,72.44286921,79.22496252,67.35756165,91.09236339,72.43791558,70.7461367,74.12969446,,,,621.4303693,626,78552,569.9196638,672.9410748,,,,,,,728.5479709,639.6594386,817.4365032,435.1058231,269.3373623,665.10547,589.5407116,516.9729927,662.1084305,,,,72.92679539,21,28796,45.14283576,111.4763534,,,,,,,70.1951425,33.66129929,129.0913663,,,,,,,,,,8.092485549,21,2595,5.009376102,12.37022379,,,,,,,,,,,,,,,,,,,,,,0.126,,,0.109,0.144,0.17,,,0.148,0.194,0.129,,,0.111,0.147,574.2,139,24208,,,0.119,3310,,,,0.105431424,2919.923278,27695,,,22.64249878,19,83913,13.63226337,35.35906662,,,,,,,,,,,,,34.61405331,18.43052558,59.19108533,,,,0.386,,,0.372,0.398,0.204755452,3324,16234,0.176159707,0.233351196,0.073049528,441,6037,0.05041123,0.095687826,0.0009103,26,28562,,,1098.538462,0.84,189.84,226,,,,,,,,2.820368477,,,,,,,2.4661983,2.941813714,3.425736847,2.623327153,,,,,,,2.314441805,2.703457333,3.090776656,0.078905675,,,,,-11024.49,,,,,0.726044138,40400,55644,0.535878387,0.916209889,58471,,,51473.38298,65468.61702,,,,,,,39182,19991.87234,58372.12766,59038,24746.93617,93329.06383,78292,66972.85106,89611.14894,,,,,,,,,,,46.54743014,,,,,0.256657146,,58471,,,13.04347826,21,1610,,,6.781995367,13,191684,3.611126902,11.59741863,,,,,,,,,,,,,,,,,,,16.23139554,21,138309,9.914558077,25.06807397,15.18339371,,,,,,,,,,,,,25.67362261,14.03600839,43.07597628,,,,16.6294312,23,138309,10.54163289,24.95231178,,,,,,,,,,,,,20.90334614,11.13015145,35.74535852,,,,25.04121366,48,191684,18.46341417,33.20101635,,,,,,,25.01369798,15.48387329,38.23609445,,,,24.19577841,14.97756819,36.98581751,,,,,,2300,,,,,0.59894963,12545,20945,,,0.59,,,,,38.51881317,,,,,0.689885872,7012,10164,0.652710167,0.727061577,0.136532892,1320,9668,0.095052187,0.178013597,0.818870523,8323,10164,0.792708999,0.845032048,28562,,,,,0.207618514,5930,28562,,,0.170401232,4867,28562,,,0.443386318,12664,28562,,,0.005391779,154,28562,,,0.010748547,307,28562,,,0.000980324,28,28562,,,0.085218122,2434,28562,,,0.440830474,12591,28562,,,0.011565937,306,26457,0.004650109,0.018481766,0.519466424,14837,28562,,,0.400414567,11204,27981,, -13,227,13227,GA,Pickens County,2024,1,8774.617379,622,91424,7595.338082,9953.896675,0,,,,2,,,,2,,,,2,,,,2,9244.449218,7971.719595,10517.17884,,,,,2,,0.157,,,0.128,0.187,3.793517094,,,2.96462639,4.691568416,5.003300347,,,3.966838614,6.058119328,0.091254753,192,2104,0.078949741,0.103559764,0,,,,,,,,,,0.101851852,0.044808814,0.15889489,0.087883515,0.075229007,0.100538024,,,,,,,0.172,,,0.134,0.213,0.308,,,0.239,0.383,7.8,0.057179234,0.117,,,0.233,,,0.187,0.283,0.706858141,23479,33216,,,0.1563809,,,0.124207084,0.192969483,0.066666667,2,30,0.011966345,0.168695224,173.4,59,34024,,,23.9872915,151,6295,20.16125763,27.81332537,,,,,,,,,,,,,24.2402951,20.19589204,28.28469816,,,,,,,0.165577756,4359,26326,0.145322437,0.185833075,0.000440865,15,34024,,,2268.266667,0.000315856,11,34826,,,3166,0.000803997,28,34826,,,1243.785714,2703,,,,,,,,22222,2654,0.42,,,,,,,,,0.42,0.47,,,,,,,,0.43,0.47,0.9005563,22178,24627,0.878842837,0.922269763,0.529070552,3922,7413,0.450662262,0.607478842,0.025684501,409,15924,,,0.149,943,,0.095382979,0.202617021,,,,,,,,,,0.457865169,0.132658311,0.783072026,0.208231601,0.158491724,0.257971478,4.204692159,128323,30519,3.63423413,4.775150188,0.167912773,1078,6420,0.106684693,0.229140853,8.52339525,29,34024,,,88.17586186,144,163310,73.77380442,102.5779193,,,,,,,,,,,,,94.57631126,79.12884709,110.0237754,,,,9.1,,,,,0,,,,,0.119950536,1455,12130,0.088586144,0.151314928,0.082987552,0.058378077,0.107597026,0.031739489,0.012824802,0.050654176,0.010305029,0.000413802,0.020196255,0.759693978,11618,15293,0.718970933,0.800417022,,,,,,,,,,,,,0.721478104,0.672931346,0.770024862,0.479,,15293,0.421326499,0.536673501,76.54889157,,,75.60738057,77.49040256,,,,,,,,,,,,,76.11147112,75.12174924,77.10119301,,,,435.3660402,622,91424,397.3935667,473.3385137,,,,,,,,,,,,,451.3677059,411.2601532,491.4752587,,,,45.78915854,13,28391,24.38079846,78.30085562,,,,,,,,,,,,,51.03242522,27.17261714,87.26700133,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.117,,,0.099,0.136,0.168,,,0.143,0.194,0.096,,,0.081,0.112,121.4,36,29644,,,0.117,3820,,,,0.057179234,1682.842021,29431,,,17.04397345,17,99742,9.928742626,27.28905257,,,,,,,,,,,,,18.30673473,10.6643476,29.3108557,,,,0.334,,,0.315,0.351,0.19162188,3815,19909,0.166600603,0.216643156,0.087520259,594,6787,0.062498983,0.112541536,0.001119853,39,34826,,,892.974359,0.95,281.2,296,,,,,,,,3.038057566,,,,,,,,,3.043014475,3.09059568,,,,,,,,,3.092061035,0.011460876,,,,,1818.591,,,,,0.783943222,43189,55092,0.674527486,0.893358959,71955,,,64403.34043,79506.65957,,,,,,,105673,38307.38298,173038.617,82042,56180.7234,107903.2766,72797,66709.68085,78884.31915,,,,,,,,,,,70.12119629,,,,,0.163213119,,71955,,,8.150470219,13,1595,,,,,,,,,,,,,,,,,,,,,,,,,,25.67850795,42,163310,18.08003935,35.39444068,25.71795971,,,,,,,,,,,,,27.61264536,19.44185058,38.06039433,,,,18.98230359,31,163310,12.89755433,26.94386474,,,,,,,,,,,,,20.36017812,13.83375322,28.89964764,,,,16.03913549,36,224451,11.23361331,22.20492423,,,,,,,,,,,,,17.20701473,12.05158157,23.82176137,,,,,,2600,,,,,0.67893693,17116,25210,,,0.575,,,,,14.17499388,,,,,0.78914277,10292,13042,0.761437852,0.816847687,0.091346154,1140,12480,0.065418526,0.117273782,0.91067321,11877,13042,0.893158051,0.928188369,34826,,,,,0.185350026,6455,34826,,,0.229053006,7977,34826,,,0.013064952,455,34826,,,0.004852696,169,34826,,,0.007465687,260,34826,,,0.000401999,14,34826,,,0.036696721,1278,34826,,,0.925084707,32217,34826,,,0.004710168,150,31846,0.000152747,0.009267588,0.500057428,17415,34826,,,0.807803468,26832,33216,, -13,229,13229,GA,Pierce County,2024,1,13936.15582,484,54715,12102.40646,15769.90518,0,,,,2,,,,2,16894.81706,10933.43481,24940.08279,1,,,,2,13917.18338,11929.60565,15904.7611,,,,,2,,0.197,,,0.168,0.229,4.436330723,,,3.529197705,5.425738132,5.847113164,,,4.721032256,7.036227194,0.108232585,188,1737,0.093622223,0.122842947,0,,,,,,,0.171428571,0.115588801,0.227268342,0.099236641,0.048037602,0.15043568,0.099713056,0.083984416,0.115441696,,,,,,,0.21,,,0.171,0.255,0.368,,,0.293,0.451,8,0.034061811,0.12,,,0.282,,,0.234,0.336,0.660529519,13023,19716,,,0.157127495,,,0.125284981,0.195487717,0.25,4,16,0.11917111,0.394165016,335.4,67,19976,,,40.5750058,175,4313,34.56332881,46.58668278,,,,,,,46.37681159,26.50835494,75.31303652,36.03603604,18.62034567,62.94770285,40.98360656,34.31274014,47.65447297,,,,,,,0.175044389,2859,16333,0.15478907,0.195299708,0.0002503,5,19976,,,3995.2,0.000099167,2,20168,,,10084,0.000347085,7,20168,,,2881.142857,3668,,,,,,,2639,,3666,0.37,,,,,,,0.53,,0.36,0.38,,,,,,,0.28,,0.39,0.866988752,11485,13247,0.844596415,0.889381089,0.534685864,2451,4584,0.446317735,0.623053993,0.02741265,244,8901,,,0.22,1075,,0.138978723,0.301021277,,,,,,,0.808474576,0.398463157,1,0.535,0.340226458,0.729773542,0.121736814,0.063600586,0.179873042,4.132512821,100730,24375,3.298029277,4.966996364,0.241040344,1177,4883,0.16792181,0.314158878,9.511413696,19,19976,,,104.4450588,102,97659,84.17551923,124.7145984,,,,,,,,,,,,,109.9666435,88.42616733,135.1676744,,,,8.7,,,,,0,,,,,0.090529248,650,7180,0.055123904,0.125934592,0.077513967,0.042989455,0.112038478,0.011142061,0.000917801,0.021366321,0.00626741,0,0.015547739,0.850698556,7185,8446,0.806364171,0.89503294,,,,,,,,,,,,,0.811090658,0.758890916,0.863290401,0.36,,8446,0.285725187,0.434274813,70.99213244,,,69.75068628,72.2335786,,,,,,,,,,,,,70.92363621,69.60642944,72.24084298,,,,688.3730218,484,54715,624.7553933,751.9906502,,,,,,,829.2421357,604.854904,1109.591221,,,,696.6890131,627.6319418,765.7460843,,,,66.59373068,14,21023,36.40741225,111.7329645,,,,,,,,,,,,,60.43026348,28.97866024,111.1334061,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.138,,,0.119,0.159,0.187,,,0.162,0.216,0.119,,,0.103,0.138,181.1,30,16561,,,0.12,2360,,,,0.034061811,638.9314561,18758,,,28.83164018,17,58963,16.79549289,46.1622489,,,,,,,,,,,,,30.3895946,17.00882541,50.12301479,,,,0.368,,,0.352,0.383,0.216611527,2488,11486,0.189207272,0.244015782,0.079097154,403,5095,0.055267367,0.102926941,0.000297501,6,20168,,,3361.333333,0.94,203.04,216,,,0.138945233,137,986,0.043660307,0.234230159,3.366032708,,,,,,,3.004032507,3.144315896,3.43800459,3.510504307,,,,,,,2.998963803,3.192500982,3.60871529,0.02632087,,,,,-971.874,,,,,0.748606782,31702,42348,0.617980398,0.879233166,52695,,,46343.17021,59046.82979,,,,,,,32188,12346.12766,52029.87234,76895,62947.42553,90842.57447,56343,48103.85106,64582.14894,,,,,,,,,,,35.8607248,,,,,0.222867445,,52695,,,7.194244604,10,1390,,,8.092221903,11,135933,4.039608018,14.47922029,,,,,,,,,,,,,,,,,,,24.8010095,23,97659,15.54266061,37.54902643,23.55133679,,,,,,,,,,,,,28.63769619,17.72718531,43.77576068,,,,17.40750981,17,97659,10.14051595,27.87110949,,,,,,,,,,,,,19.5496255,11.17430013,31.74736703,,,,22.0696961,30,135933,14.89033128,31.50586347,,,,,,,,,,,,,23.73396858,15.64083485,34.53167821,,,,,,2000,,,,,0.636734694,9048,14210,,,0.577,,,,,9.715407172,,,,,0.768632708,5734,7460,0.725631018,0.811634398,0.065806639,454,6899,0.035110057,0.09650322,0.734048257,5476,7460,0.680646273,0.787450242,20168,,,,,0.245487902,4951,20168,,,0.175426418,3538,20168,,,0.087316541,1761,20168,,,0.009272114,187,20168,,,0.007189607,145,20168,,,0.000743753,15,20168,,,0.052310591,1055,20168,,,0.828193177,16703,20168,,,0.003987069,74,18560,0,0.010675465,0.502776676,10140,20168,,,0.987167783,19463,19716,, -13,231,13231,GA,Pike County,2024,1,10569.24514,366,53798,8888.190092,12250.30018,0,,,,2,,,,2,14704.15903,8038.900569,24671.08032,1,,,,2,10561.15178,8800.110938,12322.19262,,,,,2,,0.151,,,0.125,0.178,3.722619582,,,2.95137049,4.583178572,5.412280115,,,4.345678102,6.55841415,0.093088858,132,1418,0.077965467,0.108212248,0,,,,,,,0.1875,0.119881831,0.255118169,,,,0.083870968,0.068442266,0.099299669,,,,,,,0.167,,,0.13,0.207,0.328,,,0.254,0.412,9.2,5.17053E-05,0.081,,,0.23,,,0.183,0.279,0.364286092,6881,18889,,,0.176766013,,,0.141505242,0.217577671,0.222222222,4,18,0.102162676,0.360013884,241.3,47,19477,,,16.87313114,79,4682,13.35861682,21.02895582,,,,,,,,,,,,,15.3621068,11.80466467,19.65480792,,,,,,,0.160843039,2610,16227,0.14177921,0.179906869,0.00020537,4,19477,,,4869.25,0.0002001,4,19990,,,4997.5,0.000450225,9,19990,,,2221.111111,3184,,,,,,,2758,,3195,0.34,,,,,,,0.38,,0.34,0.37,,,,,,,0.34,,0.37,0.880667892,11498,13056,0.857448688,0.903887096,0.573690878,2717,4736,0.490150768,0.657230989,0.026933102,248,9208,,,0.109,504,,0.064914894,0.153085106,,,,,,,0.184300341,0.017880589,0.350720093,0.74796748,0.114226749,1,0.06380174,0.026162499,0.101440981,3.83136,143676,37500,3.265803835,4.396916165,0.170454546,765,4488,0.111501844,0.229407247,9.241669662,18,19477,,,75.20310133,71,94411,58.73424607,94.85847953,,,,,,,,,,,,,79.0965952,61.0450823,100.8151036,,,,9.6,,,,,0,,,,,0.091646391,565,6165,0.066230166,0.117062616,0.07569386,0.050047841,0.10133988,0.014436334,0.003976361,0.024896308,0.00567721,0,0.012169598,0.85365566,7239,8480,0.820543647,0.886767674,,,,,,,,,,,,,0.773493288,0.702129405,0.84485717,0.508,,8480,0.444302662,0.571697338,73.90102031,,,72.59989758,75.20214305,,,,,,,72.8467847,67.21748963,78.47607978,,,,73.54889723,72.20597249,74.89182197,,,,522.3490205,366,53798,467.2019208,577.4961203,,,,,,,570.946051,393.0129906,801.820531,,,,535.1907083,475.5579664,594.8234502,,,,91.96811772,18,19572,54.5061352,145.3492758,,,,,,,,,,,,,70.78393205,36.5750906,123.6452843,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.112,,,0.095,0.131,0.168,,,0.143,0.193,0.095,,,0.081,0.111,67.1,11,16392,,,0.081,1520,,,,5.17053E-05,0.923921962,17869,,,,,,,,,,,,,,,,,,,,,,,,,,0.358,,,0.34,0.374,0.187778922,2188,11652,0.163949135,0.211608709,0.09473466,457,4824,0.068521894,0.120947426,0.000250125,5,19990,,,3998,0.95,272.65,287,,,0.167587477,182,1086,0.093213248,0.241961706,3.254215657,,,,,,,,,3.267082878,3.107203293,,,,,,,,,3.117668717,0.004707981,,,,,1296.218,,,,,0.869527117,53582,61622,0.724559914,1.01449432,80626,,,69496.29787,91755.70213,,,,,,,42344,11123.40426,73564.59575,,,,88873,79622.2766,98123.7234,,,,,,,,,,,28.57890976,,,,,0.186131025,,80626,,,7.150153218,7,979,,,,,,,,,,,,,,,,,,,,,,,,,,15.25355245,17,94411,8.718723185,24.77081355,18.00637638,,,,,,,,,,,,,16.66574228,9.327689439,27.48760744,,,,19.06557499,18,94411,11.29946805,30.13182814,,,,,,,,,,,,,17.03618973,9.313843457,28.58383159,,,,24.56003009,32,130293,16.7990424,34.67143444,,,,,,,,,,,,,25.61565912,17.15520893,36.7883594,,,,,,1900,,,,,0.75786497,10720,14145,,,0.674,,,,,7.624640914,,,,,0.836462374,5391,6445,0.813248328,0.85967642,0.06139505,382,6222,0.037925736,0.084864364,0.808844065,5213,6445,0.772823791,0.844864339,19990,,,,,0.234817409,4694,19990,,,0.160930465,3217,19990,,,0.084342171,1686,19990,,,0.003101551,62,19990,,,0.005802902,116,19990,,,0.000350175,7,19990,,,0.022411206,448,19990,,,0.866783392,17327,19990,,,0.0008259,15,18162,0,0.006550339,0.508554277,10166,19990,,,0.997194134,18836,18889,, -13,233,13233,GA,Polk County,2024,1,13381.56181,973,120697,12178.24572,14584.87791,0,,,,2,,,,2,22170.71788,17484.04111,26857.39465,,5271.293182,3473.815422,7669.454826,,13580.93308,12130.31128,15031.55488,,,,,2,,0.205,,,0.174,0.238,4.466930985,,,3.598533884,5.48861397,5.588098012,,,4.489822142,6.752603004,0.090822408,381,4195,0.082126579,0.099518236,0,,,,,,,0.186695279,0.151315393,0.222075165,0.062645012,0.046468021,0.078822002,0.082340195,0.072101576,0.092578814,,,,,,,0.202,,,0.165,0.243,0.372,,,0.297,0.454,6.7,0.121538771,0.135,,,0.297,,,0.247,0.352,0.663034093,28413,42853,,,0.160378944,,,0.126990511,0.198403817,0.133333333,6,45,0.067083251,0.216886001,413.8,180,43496,,,37.76734481,362,9585,33.87672997,41.65795965,,,,,,,34.01898734,24.61970982,45.8233527,40.33525406,31.83195173,50.41214694,37.72030967,32.83475835,42.60586099,,,,40.29304029,20.11414054,72.09537917,0.175595895,6365,36248,0.155340576,0.195851214,0.000229906,10,43496,,,4349.6,0.000228786,10,43709,,,4370.9,0.0006406,28,43709,,,1561.035714,3902,,,,,,,4004,,3951,0.42,,,,,,,0.37,0.33,0.42,0.41,,,,,,,0.34,0.29,0.42,0.828906798,23657,28540,0.80413893,0.853674665,0.396719539,4402,11096,0.331219605,0.462219473,0.030813232,571,18531,,,0.198,2138,,0.114595745,0.281404255,,,,,,,0.483113069,0.276676497,0.689549641,0.525565801,0.420421335,0.630710266,0.092438272,0.05167667,0.133199873,4.793885816,110082,22963,4.233769628,5.354002005,0.26414571,2857,10816,0.207770559,0.320520861,9.196247931,40,43496,,,111.004946,237,213504,96.87227571,125.1376164,,,,,,,148.7130601,105.7495233,203.2956487,,,,124.5909809,106.8749726,142.3069893,,,,9.7,,,,,0,,,,,0.144894652,2235,15425,0.111451579,0.178337724,0.114878209,0.084564014,0.145192405,0.036564019,0.016521622,0.056606417,0.006482982,0,0.013218897,0.823815378,14743,17896,0.778836105,0.868794651,,,,,,,0.795166163,0.694994397,0.89533793,0.720779221,0.561348774,0.880209668,0.827256538,0.794656358,0.859856717,0.46,,17896,0.397392931,0.522607069,71.27774784,,,70.44951484,72.10598083,,,,,,,65.7405164,62.95735426,68.52367854,88.72764171,70.59259103,106.8626924,71.10234835,70.14449788,72.06019882,,,,662.748398,973,120697,619.750703,705.746093,,,,,,,940.6100735,790.3637604,1090.856387,321.7964608,201.6681287,487.2037089,673.9268477,624.0469354,723.8067601,,,,67.37409466,32,47496,46.08383087,95.11211908,,,,,,,195.8544149,101.2008342,342.1182479,,,,55.70448769,31.83992777,90.46059812,,,,7.283321195,30,4119,4.914026225,10.39739388,,,,,,,,,,,,,,,,,,,,,,0.139,,,0.12,0.161,0.184,,,0.159,0.21,0.123,,,0.106,0.142,204.3,73,35726,,,0.135,5750,,,,0.121538771,5040.820541,41475,,,35.67301802,46,128949,26.11713267,47.58280693,,,,,,,,,,,,,40.26641128,28.35126955,55.50194383,,,,0.363,,,0.35,0.375,0.21990968,5600,25465,0.192505425,0.247313935,0.074012145,841,11363,0.052565336,0.095458953,0.000503329,22,43709,,,1986.772727,0.88,485.76,552,,,,,,,,2.793202567,,,,,,,2.453069195,2.570161839,2.966906523,2.742267021,,,,,,,2.323760763,2.614038938,2.894317895,0.086571109,,,,,-4562.188,,,,,0.776617641,36223,46642,0.718744628,0.834490654,54894,,,47167.19149,62620.80851,,,,,,,35486,20349.31915,50622.68085,37155,25577.29787,48732.70213,58838,50328.38298,67347.61702,,,,,,,,,,,30.53962844,,,,,0.213939593,,54894,,,4.922644163,14,2844,,,7.749221709,23,296804,4.912341827,11.6276374,,,,,,,27.23756605,13.06147164,50.09085374,,,,5.178566385,2.585121681,9.265885729,,,,25.97294788,54,213504,19.39783978,34.06006561,25.29226619,,,,,,,,,,,,,29.13381808,20.9970935,39.38045851,,,,26.22901679,56,213504,19.8131174,34.06055999,,,,,,,57.19733079,32.01291185,94.33829884,,,,25.57393819,18.18557006,34.96041539,,,,26.27996927,78,296804,20.77322516,32.79859101,,,,,,,29.96132266,14.95658432,53.6090824,,,,30.12984078,23.20364879,38.47513404,,,,16.13636364,,4400,,,49,22,0.589197426,17399,29530,,,0.496,,,,,37.94749819,,,,,0.650770123,10098,15517,0.611184235,0.690356011,0.134838968,2018,14966,0.104804646,0.164873291,0.838564155,13012,15517,0.805540498,0.871587813,43709,,,,,0.252144867,11021,43709,,,0.155963303,6817,43709,,,0.122080121,5336,43709,,,0.009014162,394,43709,,,0.008213411,359,43709,,,0.002196344,96,43709,,,0.143837654,6287,43709,,,0.704751882,30804,43709,,,0.027533889,1107,40205,0.015364106,0.039703672,0.506989407,22160,43709,,,0.519846919,22277,42853,, -13,235,13235,GA,Pulaski County,2024,1,9817.409139,222,28888,7559.467043,12075.35124,0,,,,2,,,,2,13054.35893,8929.171841,18428.85974,,,,,2,8475.752962,5712.685704,11238.82022,,,,,2,,0.212,,,0.182,0.243,4.467251019,,,3.617188715,5.413303902,5.619876039,,,4.519650545,6.750929829,0.094101124,67,712,0.072654776,0.115547471,0,,,,,,,0.146153846,0.103213619,0.189094073,,,,0.064766839,0.04021417,0.089319509,,,,,,,0.207,,,0.17,0.247,0.423,,,0.343,0.509,8.2,0.016140882,0.116,,,0.304,,,0.254,0.356,0.803247083,7916,9855,,,0.134477842,,,0.106384102,0.167957904,0.272727273,3,11,0.11266692,0.445445377,645.4,64,9917,,,29.1514836,56,1921,22.02071743,37.85562624,,,,,,,40.93567252,27.2014571,59.16344436,,,,22.81746032,14.46431254,34.23739375,,,,,,,0.15370623,1014,6597,0.132259422,0.175153039,0.000605022,6,9917,,,1652.833333,0.00010016,1,9984,,,9984,0.000300481,3,9984,,,3328,3921,,,,,,,3209,,3597,0.4,,,,,,,0.55,,0.38,0.29,,,,,,,0.31,,0.29,0.807608696,5944,7360,0.730347413,0.884869979,0.446188341,1194,2676,0.35188159,0.540495092,0.0332002,133,4006,,,0.255,438,,0.150148936,0.359851064,,,,,,,0.508752735,0.350771689,0.666733782,0.935779817,0.856965925,1,0.095890411,0,0.210194017,5.226986878,105559,20195,3.619296562,6.834677194,0.525921967,984,1871,0.338337401,0.713506533,7.058586266,7,9917,,,78.8773732,43,54515,57.08394609,106.2473041,,,,,,,69.79584715,36.06453271,121.9192988,,,,88.89679083,59.97829147,126.9056965,,,,9.5,,,,,0,,,,,0.211563732,805,3805,0.142327014,0.28080045,0.156935271,0.084487486,0.229383055,0.053876478,0.003959518,0.103793439,0.002628121,0,0.012146202,0.899578059,3198,3555,0.812023288,0.98713283,,,,,,,,,,,,,0.884912281,0.568224118,1,0.414,,3555,0.298837761,0.529162239,76.05563644,,,74.19643536,77.91483752,,,,,,,72.53084441,69.06944869,75.99224012,,,,77.39802867,75.15124337,79.64481397,,,,500.1705635,222,28888,429.6296254,570.7115016,,,,,,,620.6737853,483.8456651,784.1839883,,,,459.5263312,376.0707554,542.9819069,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.14,,,0.121,0.159,0.191,,,0.166,0.217,0.128,,,0.11,0.148,389.9,34,8720,,,0.116,1160,,,,0.016140882,193.8519951,12010,,,,,,,,,,,,,,,,,,,,,,,,,,0.407,,,0.394,0.42,0.187000205,912,4877,0.15840446,0.21559595,0.060472787,110,1819,0.041408958,0.079536617,0.000801282,8,9984,,,1248,0.925,83.25,90,,,,,,,,2.791628239,,,,,,,2.537298066,,3.270305866,2.368751467,,,,,,,2.067277917,,2.907862463,0.007988538,,,,,-9830.775,,,,,0.834117647,35450,42500,0.305788611,1.362446684,46975,,,39944.02128,54005.97872,,,,,,,32617,26872.82979,38361.17021,39702,14932.12766,64471.87234,67386,42527.95745,92244.04255,,,,,,,,,,,54.18600362,,,,,0.319467802,,46975,,,7.911392405,5,632,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.55169643,12,77162,8.035788482,27.16568395,,,,,,,,,,,,,,,,,,,,,900,,,,,0.444091904,4059,9140,,,0.48,,,,,13.18169103,,,,,0.645171639,2011,3117,0.589335351,0.701007928,0.13731444,407,2964,0.067276401,0.207352479,0.661854347,2063,3117,0.575093265,0.74861543,9984,,,,,0.173878205,1736,9984,,,0.223657853,2233,9984,,,0.310697115,3102,9984,,,0.005709135,57,9984,,,0.01181891,118,9984,,,0.001402244,14,9984,,,0.044170673,441,9984,,,0.61318109,6122,9984,,,0.000763109,7,9173,0,0.010504908,0.577624199,5767,9984,,,1,9855,9855,, -13,237,13237,GA,Putnam County,2024,1,10646.00489,456,60871,8992.339176,12299.67059,0,,,,2,,,,2,12126.13376,9067.901928,15184.36558,,,,,2,11050.48193,8791.678449,13309.28542,,,,,2,,0.187,,,0.16,0.217,4.050217832,,,3.228034696,5.014574544,5.3401869,,,4.311366108,6.535444775,0.091339648,135,1478,0.0766521,0.106027197,0,,,,,,,0.138888889,0.107556285,0.170221493,0.071428571,0.030752467,0.112104676,0.069392813,0.051859671,0.086925955,,,,,,,0.186,,,0.152,0.226,0.376,,,0.302,0.458,7.2,0.095033881,0.124,,,0.265,,,0.219,0.316,0.727491269,16039,22047,,,0.139015131,,,0.109445562,0.172311112,0.242424242,8,33,0.152046161,0.340132436,553.5,125,22585,,,28.2416503,115,4072,23.07989726,33.40340333,,,,,,,34.00868307,24.98830113,45.22433889,56.55526992,35.44288656,85.62535832,16.94915254,11.93376755,23.36217414,,,,,,,0.178530666,2972,16647,0.155892368,0.201168964,0.000398495,9,22585,,,2509.444444,0.000217543,5,22984,,,4596.8,0.000348068,8,22984,,,2873,2208,,,,,,,3118,,2020,0.46,,,,,,,0.37,,0.47,0.45,,,,,,,0.31,,0.46,0.876260763,14248,16260,0.836256358,0.916265167,0.62802276,2649,4218,0.529118475,0.726927044,0.034687357,304,8764,,,0.219,946,,0.128446809,0.309553192,,,,,,,0.125925926,0,0.258642692,,,,0.43005885,0.321827252,0.538290449,4.626177025,132651,28674,3.855853144,5.396500905,0.337956542,1462,4326,0.206870864,0.469042219,9.740978526,22,22585,,,95.69982756,106,110763,77.48125721,113.9183979,,,,,,,76.69781063,48.06610958,116.121407,,,,109.8478607,87.10252182,136.7151713,,,,9.9,,,,,0,,,,,0.178212586,1685,9455,0.126307839,0.230117333,0.148128342,0.097778911,0.198477773,0.023796933,0.00622923,0.041364636,0.017979905,0.000822015,0.035137794,0.801721356,7452,9295,0.750994173,0.852448538,,,,,,,0.805943269,0.661395717,0.95049082,,,,0.743626062,0.6700883,0.817163825,0.43,,9295,0.343315566,0.516684434,75.4215784,,,74.16957366,76.67358314,,,,,,,71.83371616,69.59907622,74.0683561,,,,75.55997197,73.92844862,77.19149532,,,,485.4837839,456,60871,434.6168058,536.3507619,,,,,,,628.9636428,515.2586955,742.66859,,,,481.7730748,416.9841496,546.562,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.126,,,0.109,0.145,0.175,,,0.152,0.201,0.119,,,0.102,0.138,183.7,36,19595,,,0.124,2710,,,,0.095033881,2016.428878,21218,,,,,,,,,,,,,,,,,,,,,,,,,,0.363,,,0.349,0.377,0.208648127,2596,12442,0.181243872,0.236052383,0.091279728,403,4415,0.062683984,0.119875473,0.000783154,18,22984,,,1276.888889,0.925,158.175,171,,,,,,,,2.990422459,,,,,,,2.757624031,2.980638938,3.2795371,3.158708564,,,,,,,2.862189448,3.417598237,3.415752172,0.004161269,,,,,-4617.449,,,,,0.737046964,43174,58577,0.468094843,1.005999085,62241,,,53297.68085,71184.31915,,,,,,,53184,46016,60352,62353,19004.23404,105701.766,68459,54131.34043,82786.65957,,,,,,,,,,,56.15802398,,,,,0.188685914,,62241,,,13.8121547,15,1086,,,,,,,,,,,,,,,,,,,,,,,,,,25.20251535,26,110763,15.79428219,38.15691111,23.47354261,,,,,,,,,,,,,33.57759149,19.56018441,53.76097668,,,,18.9593998,21,110763,11.7361673,28.98145657,,,,,,,,,,,,,20.59647388,11.52769008,33.97075146,,,,29.94928154,46,153593,21.9266382,39.94814458,,,,,,,32.44322436,17.27465059,55.47890172,,,,31.79681833,21.7490002,44.88762019,,,,,,1800,,,,,0.692262774,11855,17125,,,0.509,,,,,8.336103909,,,,,0.796488023,7847,9852,0.75343368,0.839542366,0.141460851,1346,9515,0.102583335,0.180338368,0.83363784,8213,9852,0.797816998,0.869458682,22984,,,,,0.190436826,4377,22984,,,0.254307344,5845,22984,,,0.255264532,5867,22984,,,0.005003481,115,22984,,,0.005873651,135,22984,,,0.002218935,51,22984,,,0.065784894,1512,22984,,,0.657979464,15123,22984,,,0.008052364,171,21236,0,0.01673987,0.517011834,11883,22984,,,1,22047,22047,, -13,239,13239,GA,Quitman County,2024,1,19999.85032,79,5895,12533.79971,30280.01373,1,,,,2,,,,2,18866.61583,10045.67834,32262.48766,1,,,,2,24559.20866,11777.09516,45165.25913,1,,,,2,,0.242,,,0.21,0.278,4.705677137,,,3.952187224,5.596585516,5.770130706,,,4.709734447,6.936684176,0.12,15,125,0.063031731,0.176968269,1,,,,,,,0.196969697,0.101018637,0.292920757,,,,,,,,,,,,,0.227,,,0.186,0.27,0.412,,,0.327,0.497,8,0.013852713,0.126,,,0.329,,,0.274,0.389,0.458165548,1024,2235,,,0.113875078,,,0.089355268,0.141984757,0,0,2,0,0.510593623,668.7,15,2243,,,38.00475059,16,421,21.7229987,61.71733396,,,,,,,,,,,,,,,,,,,,,,0.207572684,307,1479,0.181359918,0.23378545,,0,2243,,,,0.000444642,1,2249,,,2249,,0,2249,,,,,,,,,,,,,,0.5,,,,,,,,,0.36,0.29,,,,,,,,,0.29,0.79112426,1337,1690,0.690313247,0.891935274,0.450793651,142,315,0.17609876,0.725488542,0.049113233,36,733,,,0.345,140,,0.209170213,0.480829787,,,,,,,0.40952381,0.099857588,0.719190031,,,,0.261904762,0.034377749,0.489431775,4.567100667,71909,15745,1.256104347,7.878096987,0.70292887,168,239,0.412085335,0.993772406,0,0,2243,,,87.33624454,10,11450,41.88112398,160.6144633,,,,,,,,,,,,,,,,,,,9.1,,,,,0,,,,,0.119791667,115,960,0.068716949,0.170866384,0.095187166,0.027065421,0.163308911,0.030208333,0,0.067295562,0,0,0.024573214,0.88952381,467,525,0.692294382,1,,,,,,,,,,,,,,,,0.454,,525,0.218678589,0.689321411,68.6174516,,,63.44924144,73.78566176,,,,,,,,,,,,,,,,,,,828.45335,79,5895,618.7285873,1086.406348,,,,,,,836.7600575,556.0209814,1209.351259,,,,940.7739235,582.3538863,1438.072876,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.149,,,0.129,0.17,0.193,,,0.168,0.22,0.144,,,0.124,0.165,562.3,11,1956,,,0.126,280,,,,0.013852713,34.81186678,2513,,,,,,,,,,,,,,,,,,,,,,,,,,0.41,,,0.396,0.423,0.248864669,274,1101,0.214311477,0.28341786,0.085,34,400,0.055212766,0.114787234,0.001333926,3,2249,,,749.6666667,,,,,,,,,,,1.871908371,,,,,,,1.896653126,,,2.086008103,,,,,,,2.106240051,,,0.015183567,,,,,-63405.88,,,,,0.760195469,34224,45020,0.263896472,1.256494466,41516,,,35341.70213,47690.29787,,,,,,,33134,19248.38298,47019.61702,,,,45360,34619.91489,56100.08511,,,,,,,,,,,,,,,,0.28287889,,41516,,,13.15789474,1,76,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,200,,,,,0.579057592,1106,1910,,,0.294,,,,,14.07134599,,,,,0.806889353,773,958,0.693089669,0.920689037,0.072409488,58,801,0,0.155332803,0.556367432,533,958,0.50150317,0.611231694,2249,,,,,0.18319253,412,2249,,,0.325922632,733,2249,,,0.451311694,1015,2249,,,0.006224989,14,2249,,,0.004446421,10,2249,,,0.001778568,4,2249,,,0.026233882,59,2249,,,0.498888395,1122,2249,,,0.007593735,16,2107,0,0.040881424,0.519786572,1169,2249,,,0.736912752,1647,2235,, -13,241,13241,GA,Rabun County,2024,1,11499.52951,353,45569,9351.180747,13647.87827,0,,,,2,,,,2,,,,2,,,,2,11931.91878,9553.96833,14309.86924,,,,,2,,0.181,,,0.15,0.215,4.265650402,,,3.36158887,5.28171377,5.468551146,,,4.369392029,6.668714219,0.074448529,81,1088,0.058850491,0.090046567,0,,,,,,,,,,,,,0.074594595,0.057662726,0.091526464,,,,,,,0.187,,,0.143,0.23,0.333,,,0.258,0.411,7.9,0.000880434,0.139,,,0.256,,,0.207,0.311,1,16883,16883,,,0.146351829,,,0.114971817,0.182310494,0.225806452,7,31,0.133616464,0.327772988,257,44,17119,,,22.71273193,71,3126,17.73883207,28.64902083,,,,,,,,,,33.8028169,17.46640876,59.04671845,24.76361999,18.65534758,32.23325528,,,,,,,0.221301971,2672,12074,0.196280695,0.246323248,0.000700976,12,17119,,,1426.583333,0.000290596,5,17206,,,3441.2,0.001685459,29,17206,,,593.3103448,2264,,,,,,,,,2295,0.4,,,,,,,,,0.4,0.43,,,,,,,,,0.43,0.891928865,11736,13158,0.872963388,0.910894342,0.551535088,2012,3648,0.452274466,0.65079571,0.029071263,226,7774,,,0.194,501,,0.116553192,0.271446809,,,,,,,,,,0.083815029,0,0.222395167,0.22733813,0.139033839,0.31564242,4.650580688,110921,23851,3.767223299,5.533938078,0.260785824,677,2596,0.150359047,0.371212602,14.60365676,25,17119,,,120.0028236,102,84998,96.71400541,143.2916418,,,,,,,,,,,,,125.9310862,101.7651364,154.1077565,,,,7.2,,,,,0,,,,,0.176638177,1240,7020,0.130380897,0.222895457,0.159566787,0.113020631,0.206112943,0.014957265,0.003864017,0.026050513,0.011965812,0.003462203,0.020469421,0.719970304,4849,6735,0.697657418,0.742283191,,,,,,,,,,,,,0.728937108,0.694601356,0.76327286,0.279,,6735,0.212543085,0.345456915,74.6570112,,,73.11204558,76.20197682,,,,,,,,,,,,,74.25520705,72.58030941,75.93010469,,,,484.2292857,353,45569,425.5521757,542.9063956,,,,,,,,,,,,,506.6312004,441.9989774,571.2634234,,,,79.93605116,10,12510,38.33244361,147.0052441,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.13,,,0.11,0.152,0.178,,,0.153,0.205,0.108,,,0.093,0.126,118,18,15251,,,0.139,2330,,,,0.000880434,14.32995095,16276,,,34.93178599,18,51529,20.70279024,55.20728186,,,,,,,,,,,,,37.51103266,21.85155885,60.05879703,,,,0.348,,,0.331,0.367,0.254597947,2381,9352,0.223619224,0.28557667,0.110342442,319,2891,0.079363719,0.141321166,0.000929908,16,17206,,,1075.375,0.925,115.625,125,,,,,,,,3.004109325,,,,,,,,2.526469641,3.137320943,2.943559122,,,,,,,,2.77405404,3.021829548,0.007214519,,,,,4292.346,,,,,0.997355583,43750,43866,0.843785547,1.150925619,63387,,,56354.82979,70419.17021,,,,,,,40188,4406.382979,75969.61702,72174,9999.702128,134348.2979,58703,52952.87234,64453.12766,,,,,,,,,,,64.2221783,,,,,0.185274583,,63387,,,10.72386059,8,746,,,,,,,,,,,,,,,,,,,,,,,,,,21.34347341,19,84998,11.94578005,35.20281358,22.35346714,,,,,,,,,,,,,23.1934553,12.68007784,38.91467697,,,,18.82397233,16,84998,10.75952664,30.56895174,,,,,,,,,,,,,20.0953861,11.24723505,33.14428336,,,,28.00454862,33,117838,19.2770427,39.32879824,,,,,,,,,,,,,28.03015658,18.77223578,40.25598051,,,,,,1200,,,,,0.714296379,9568,13395,,,0.426,,,,,15.03098184,,,,,0.767094017,5385,7020,0.744129155,0.790058879,0.142322658,951,6682,0.101178781,0.183466535,0.857264957,6018,7020,0.81752765,0.897002265,17206,,,,,0.154248518,2654,17206,,,0.290363827,4996,17206,,,0.012669999,218,17206,,,0.005986284,103,17206,,,0.00790422,136,17206,,,0.000523073,9,17206,,,0.079274672,1364,17206,,,0.881727304,15171,17206,,,0.000803312,13,16183,0,0.007251787,0.505172614,8692,17206,,,1,16883,16883,, -13,243,13243,GA,Randolph County,2024,1,15057.69271,173,17456,11352.58405,18762.80138,0,,,,2,,,,2,17526.57767,12380.37919,22672.77616,,,,,2,11332.15185,6716.15138,17909.68551,1,,,,2,,0.307,,,0.266,0.348,5.497169625,,,4.460867864,6.576913319,6.106382517,,,4.917269441,7.440805112,0.123404255,58,470,0.093668985,0.153139526,0,,,,,,,0.141065831,0.102866867,0.179264795,,,,0.078571429,0.034000137,0.12314272,,,,,,,0.271,,,0.223,0.319,0.489,,,0.403,0.572,5.7,0.184120717,0.15,,,0.395,,,0.333,0.457,,,6425,,,0.102734465,,,0.08026666,0.129348912,0.333333333,2,6,0.110000414,0.553214291,556.7,35,6287,,,39.08355795,58,1484,29.67778415,50.52456182,,,,,,,53.01455302,39.47281688,69.70434655,,,,,,,,,,,,,0.163919201,706,4307,0.141280903,0.186557499,0.000318117,2,6287,,,3143.5,,0,6116,,,,0.000981033,6,6116,,,1019.333333,3477,,,,,,,5621,,1681,0.37,,,,,,,0.35,,0.4,0.3,,,,,,,0.2,,0.32,0.811481219,3435,4233,0.758446349,0.864516089,0.621433101,980,1577,0.431190573,0.811675628,0.043896321,105,2392,,,0.398,501,,0.252638298,0.543361702,,,,,,,0.489715965,0.263902372,0.715529557,0.243478261,0,0.62616416,,,,4.125860296,52155,12641,2.077286519,6.174434073,0.693467337,1104,1592,0.496402144,0.890532529,14.3152537,9,6287,,,89.13980092,30,33655,60.14224936,127.2526085,,,,,,,97.84735812,59.76770834,151.1173087,,,,,,,,,,9.2,,,,,0,,,,,0.179297597,485,2705,0.104692631,0.253902563,0.133208255,0.06509136,0.20132515,0.029574861,0,0.064349846,0.036968577,0,0.081133331,0.726359833,1736,2390,0.602762872,0.849956793,,,,,,,0.694108761,0.590412262,0.797805261,,,,0.849642005,0.691774432,1,0.322,,2390,0.190876609,0.453123391,72.28220431,,,69.60802742,74.95638119,,,,,,,70.46270409,66.8452452,74.08016298,,,,75.06783623,71.27526052,78.86041194,,,,664.7918528,173,17456,553.6728707,775.9108349,,,,,,,723.7256683,576.8471529,870.6041838,,,,582.9443071,416.4639596,793.8046916,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.179,,,0.155,0.203,0.212,,,0.183,0.24,0.189,,,0.164,0.214,686.1,37,5393,,,0.15,970,,,,0.184120717,1421.227816,7719,,,,,,,,,,,,,,,,,,,,,,,,,,0.434,,,0.419,0.448,0.20340617,633,3112,0.172427446,0.234384893,0.060995185,76,1246,0.039548376,0.082441993,0.000981033,6,6116,,,1019.333333,,,,,,,,,,,2.852657824,,,,,,,2.821364187,,,2.534694636,,,,,,,2.659672494,,,0.436356172,,,,,-30133.02,,,,,0.650058617,27725,42650,0.391459237,0.908657997,39188,,,33156.68085,45219.31915,,,,,,,21059,19444.53192,22673.46809,,,,41985,32343.46809,51626.53192,,,,,,,,,,,12.65605573,,,,,0.299683577,,39188,,,26.57004831,11,414,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,33.31598126,16,48025,19.0429619,54.10306632,,,,,,,37.73455456,18.83695368,67.51754147,,,,,,,,,,,,600,,,,,0.609920635,3074,5040,,,0.389,,,,,13.03461161,,,,,0.481002742,1228,2553,0.405546372,0.556459111,0.184729064,450,2436,0.10051977,0.268938358,0.794751273,2029,2553,0.709285606,0.88021694,6116,,,,,0.208960105,1278,6116,,,0.266023545,1627,6116,,,0.589928058,3608,6116,,,0.001635056,10,6116,,,0.005722695,35,6116,,,0.001144539,7,6116,,,0.02910399,178,6116,,,0.360202747,2203,6116,,,0,0,6000,0,0.015886525,0.536298234,3280,6116,,,1,6425,6425,, -13,245,13245,GA,Richmond County,2024,1,13114.85222,4250,575944,12553.90196,13675.80249,0,,,,2,3124.643215,1559.810635,5590.849826,1,14513.16639,13714.49894,15311.83384,,5662.320759,4202.683608,7465.064018,,12734.83659,11806.91662,13662.75656,,,,,2,,0.219,,,0.189,0.248,4.348774125,,,3.546712165,5.208400658,5.639960403,,,4.710699753,6.564395747,0.126090793,2572,20398,0.121535282,0.130646305,0,,,,0.090909091,0.060876552,0.12094163,0.158117079,0.151477187,0.164756971,0.092204526,0.075787066,0.108621987,0.077723475,0.071134537,0.084312412,0.191780822,0.101465423,0.282096221,0.107954546,0.081484599,0.134424492,0.196,,,0.16,0.234,0.407,,,0.346,0.468,5.8,0.210432802,0.134,,,0.304,,,0.257,0.353,0.815650002,168519,206607,,,0.15634095,,,0.125930986,0.187215602,0.141935484,22,155,0.104799116,0.183604711,1096.4,2255,205673,,,31.95843829,1421,44464,30.29676905,33.62010753,,,,,,,33.82021705,31.71452123,35.92591287,31.55434359,25.05870354,39.21916797,26.55478776,23.38140275,29.72817277,,,,36.0415394,27.43648969,46.4909599,0.152655063,24223,158678,0.137165701,0.168144424,0.000889762,183,205673,,,1123.896175,0.002163182,447,206640,,,462.2818792,0.003479481,719,206640,,,287.3991655,2701,,,,,,681,2962,1701,2449,0.39,,,,,,0.32,0.38,0.35,0.41,0.37,,,,,,0.39,0.28,0.29,0.44,0.875782766,118736,135577,0.866078248,0.885487284,0.617445257,35726,57861,0.579694462,0.655196051,0.042088967,3480,82682,,,0.264,12107,,0.173446809,0.354553192,,,,0.197788698,0,0.427852489,0.396288132,0.36053059,0.432045674,0.226937813,0.138765863,0.315109764,0.155645982,0.113758911,0.197533052,5.034159009,100804,20024,4.636059472,5.432258547,0.511326448,24062,47058,0.471197936,0.551454961,9.821415548,202,205673,,,102.996772,1044,1013624,96.74893865,109.2446053,,,,,,,88.11679576,80.4313497,95.80224182,34.52707498,20.46293285,54.56766399,148.8095238,135.8816261,161.7374215,,,,10.7,,,,,0,,,,,0.188555671,13675,72525,0.172534944,0.204576397,0.177029118,0.161041159,0.193017077,0.015718718,0.011042712,0.020394724,0.005653223,0.003280278,0.008026168,0.765463522,69772,91150,0.750953429,0.779973614,,,,0.754647973,0.673477189,0.835818757,0.788022869,0.777858943,0.798186794,0.73432323,0.686882462,0.781763997,0.859456117,0.843936106,0.874976127,0.253,,91150,0.231619488,0.274380512,72.1152507,,,71.71139548,72.51910592,,,,83.2621501,80.51682933,86.00747087,71.00605008,70.44353126,71.5685689,84.52708429,80.34812416,88.70604442,72.18270475,71.54086195,72.82454755,,,,632.4243602,4250,575944,612.678192,652.1705284,,,,206.8044231,133.8329186,305.2841244,662.7454987,635.8004889,689.6905084,306.6902164,235.6691831,392.3900134,658.0614564,624.3562038,691.766709,,,,93.96043222,198,210727,80.872577,107.0482874,,,,,,,115.0492027,96.6374957,133.4609097,,,,76.03984488,54.32398001,103.5446867,,,,10.65478497,220,20648,9.246827873,12.06274206,,,,,,,15.27825196,13.04002964,17.51647429,,,,5.049732211,3.476003301,7.091701495,,,,,,,0.135,,,0.117,0.153,0.179,,,0.154,0.202,0.147,,,0.126,0.167,897.1,1542,171880,,,0.134,27640,,,,0.210432802,42202.08805,200549,,,32.11693185,196,610270,27.62056139,36.61330231,,,,,,,24.71264368,19.76692507,30.5199139,,,,50.85540771,41.03398056,60.67683485,,,,0.438,,,0.424,0.451,0.192890265,22171,114941,0.171443457,0.214337074,0.049355521,2263,45851,0.035057649,0.063653394,0.002855207,590,206640,,,350.2372881,0.74,1591,2150,,,0.105762595,1226,11592,0.072277932,0.139247258,2.567236059,,,,,,3.409125143,2.386630051,2.791579551,3.100015765,2.360585489,,,,,,3.444579813,2.190556476,2.52806952,2.833127135,0.143225341,,,,,-17560.71,,,,,0.827478397,38112,46058,0.776579917,0.878376877,50079,,,44881.7234,55276.2766,39375,2612.787234,76137.21277,63098,50451.53192,75744.46809,41935,38610.74468,45259.25532,61677,32963.29787,90390.70213,63023,58017.55319,68028.44681,,,,,,,,,,,47.79975342,,,,,0.299666527,,50079,,,12.74924023,172,13491,,,15.17221523,215,1417064,13.14413171,17.20029875,,,,,,,22.00983777,18.74881457,25.27086097,,,,7.207103321,5.020011532,10.02333606,,,,14.2870893,146,1013624,11.90318271,16.67099589,14.40376313,,,,,,,8.397134574,6.16989864,11.16640885,,,,26.09336725,20.72190006,32.431673,,,,22.4935479,228,1013624,19.57379157,25.41330424,,,,,,,26.52228308,22.30585028,30.73871588,,,,20.75732061,16.21163961,26.18253552,,,,16.37187876,232,1417064,14.26514042,18.4786171,,,,,,,15.59554219,12.85052097,18.34056341,,,,20.1798893,16.38300958,24.59282137,,,,,,16900,,,,,0.56910399,87016,152900,,,0.59,,,,,95.46688436,,,,,0.513562436,38018,74028,0.497270607,0.529854265,0.181504022,12973,71475,0.164894755,0.19811329,0.840614362,62229,74028,0.825893077,0.855335648,206640,,,,,0.226713124,46848,206640,,,0.152651955,31544,206640,,,0.576543748,119137,206640,,,0.004079559,843,206640,,,0.017721642,3662,206640,,,0.002564847,530,206640,,,0.055260356,11419,206640,,,0.321917344,66521,206640,,,0.005372437,1035,192650,0.003188453,0.007556422,0.515345529,106491,206640,,,0.083332123,17217,206607,, -13,247,13247,GA,Rockdale County,2024,1,9763.777277,1491,260834,8993.811119,10533.74344,0,,,,2,,,,2,9356.908678,8371.843641,10341.97371,,5340.143414,3815.076747,7271.759659,,13337.46079,11378.95378,15295.96781,,,,,2,,0.197,,,0.168,0.23,3.993160776,,,3.205572505,4.885414095,5.385757091,,,4.392737267,6.466126814,0.115102639,785,6820,0.107528157,0.122677122,0,,,,,,,0.139601886,0.128608449,0.150595322,0.065099458,0.050559943,0.079638972,0.084219133,0.068654317,0.09978395,,,,0.127192983,0.083943657,0.170442308,0.167,,,0.132,0.205,0.413,,,0.339,0.493,7.9,0.133393991,0.073,,,0.28,,,0.234,0.333,0.825392754,77232,93570,,,0.137123026,,,0.107997844,0.171658186,0.189189189,14,74,0.131723769,0.252847843,826.9,778,94082,,,16.97288582,400,23567,15.30954301,18.63622863,,,,,,,12.00640342,10.25239065,13.76041618,28.73030584,23.18906479,35.19656566,20.90422946,16.72068528,25.81655333,,,,31.20759837,19.78294035,46.82672035,0.157755158,12135,76923,0.139882817,0.175627498,0.000701516,66,94082,,,1425.484849,0.000758022,72,94984,,,1319.222222,0.001916112,182,94984,,,521.8901099,3394,,,,,,,3492,,3279,0.42,,,,,,0.33,0.46,0.22,0.4,0.42,,,,,,0.42,0.37,0.24,0.46,0.895450841,56040,62583,0.881083996,0.909817687,0.625732302,13992,22361,0.566927759,0.684536845,0.03470366,1571,45269,,,0.18,3967,,0.107319149,0.252680851,,,,0.185185185,0,0.417787347,0.124758077,0.076246378,0.173269775,0.308888313,0.21528224,0.402494386,0.110157764,0.033064639,0.187250889,3.757008806,130124,34635,3.481013959,4.033003653,0.381479998,8573,22473,0.322338405,0.440621591,7.759188793,73,94082,,,70.70572191,323,456823,62.99474556,78.41669826,,,,,,,60.14666533,50.70811434,69.58521632,33.47700548,19.13500116,54.36455956,112.7619048,94.59472067,130.9290889,,,,10.3,,,,,0,,,,,0.160336882,5045,31465,0.135939279,0.184734486,0.126710675,0.106234377,0.147186973,0.033211505,0.022586366,0.043836644,0.009057683,0.002862702,0.015252665,0.762266548,32407,42514,0.737666611,0.786866484,,,,,,,0.727774936,0.674295569,0.781254303,0.543634728,0.458192334,0.629077122,0.827945241,0.791658358,0.864232123,0.572,,42514,0.523895692,0.620104308,75.4294352,,,74.80387956,76.05499085,,,,,,,75.75251101,74.87211691,76.6329051,85.71610978,79.28859995,92.14361961,72.84907184,71.56496968,74.133174,,,,457.8639493,1491,260834,433.6275636,482.1003351,,,,,,,427.0496826,395.5908515,458.5085137,250.8910014,182.2977857,336.8094589,596.223839,541.5052449,650.9424331,,,,66.96632406,66,98557,51.79175017,85.19758357,,,,,,,80.16567573,59.10784091,106.2880556,,,,,,,,,,8.894721493,61,6858,6.803757154,11.42564187,,,,,,,11.94353963,8.67819418,16.03364448,,,,,,,,,,,,,0.122,,,0.105,0.141,0.167,,,0.144,0.192,0.134,,,0.115,0.155,588.7,465,78984,,,0.073,6750,,,,0.133393991,11367.16897,85215,,,17.75896375,49,275917,13.13817914,23.47829188,,,,,,,10.59553118,6.172287369,16.96447182,,,,42.50345341,29.07233067,60.00219435,,,,0.442,,,0.426,0.456,0.193241417,10722,55485,0.169411629,0.217071204,0.069187096,1572,22721,0.048931777,0.089442415,0.00098964,94,94984,,,1010.468085,0.82,1046.32,1276,,,0.084527481,466,5513,0.041287312,0.127767649,2.936533517,,,,,,,2.89269454,2.874631242,3.192930064,2.746972656,,,,,,,2.695093846,2.710449244,2.959848512,0.056889536,,,,,-9982.738,,,,,1.012262391,51016,50398,0.882573469,1.141951314,71984,,,65462.97872,78505.02128,118500,23587.14894,213412.8511,75304,61543.48936,89064.51064,69382,65019.95745,73744.04255,56278,43153.74468,69402.25532,70072,63019.57447,77124.42553,,,,,,,,,,,25.01606771,,,,,0.290050567,,71984,,,17.51046822,92,5254,,,9.605784887,61,635034,7.347664308,12.33903254,,,,,,,14.22920402,10.56118949,18.75943159,,,,,,,,,,13.13243622,56,456823,9.865490266,17.13498059,12.25857717,,,,,,,10.18155421,6.380725818,15.41499543,,,,23.62483229,14.80555662,35.76828,,,,19.92018791,91,456823,16.0384927,24.45757655,,,,,,,21.59111063,16.30969294,28.03785308,,,,20.57142857,13.55670105,29.93034853,,,,14.48741327,92,635034,11.67889983,17.76752631,,,,,,,13.94461994,10.3163066,18.43552708,,,,19.75380521,13.97896825,27.113641,,,,19.78947368,,9500,,,99,89,0.68954556,44686,64805,,,0.6,,,,,61.66392005,,,,,0.656227437,21813,33240,0.631572212,0.680882661,0.140625479,4591,32647,0.119091142,0.162159816,0.882611312,29338,33240,0.861108911,0.904113712,94984,,,,,0.236166091,22432,94984,,,0.157973975,15005,94984,,,0.606975912,57653,94984,,,0.006022067,572,94984,,,0.018339931,1742,94984,,,0.001726607,164,94984,,,0.108165586,10274,94984,,,0.243430473,23122,94984,,,0.026595564,2354,88511,0.019767006,0.033424123,0.531205256,50456,94984,,,0.137127284,12831,93570,, -13,249,13249,GA,Schley County,2024,1,10893.61902,92,13713,7851.162398,14725.00826,0,,,,2,,,,2,18166.22912,9068.516122,32504.40192,1,,,,2,9812.977705,6620.77485,14008.63584,,,,,2,,0.194,,,0.165,0.223,4.283534004,,,3.420603701,5.261487766,5.603667524,,,4.47783298,6.810419412,0.11898017,42,353,0.085204898,0.152755442,0,,,,,,,,,,,,,0.122605364,0.082814072,0.162396656,,,,,,,0.196,,,0.158,0.235,0.374,,,0.296,0.461,8.3,0.002724762,0.121,,,0.277,,,0.23,0.333,0.240378271,1093,4547,,,0.150494524,,,0.119433575,0.186817994,0.2,1,5,0.015594715,0.47750127,245.6,11,4478,,,14.82579689,20,1349,9.055981902,22.89724085,,,,,,,,,,,,,15.67398119,8.772608289,25.85184835,,,,,,,0.151978172,557,3665,0.131722853,0.172233491,0.000223314,1,4478,,,4478,,0,4496,,,,,0,4496,,,,2996,,,,,,,2991,,2054,0.33,,,,,,,,,0.36,0.36,,,,,,,0.28,,0.37,0.850944021,2569,3019,0.791999616,0.909888427,0.611059044,652,1067,0.483952569,0.738165519,0.037019898,80,2161,,,0.223,236,,0.133638298,0.312361702,,,,,,,0.298780488,0.056931516,0.54062946,,,,0.073275862,0.021853532,0.124698193,7.080381658,103147,14568,2.589721227,11.57104209,0.157272727,173,1100,0.074929654,0.239615801,17.86511836,8,4478,,,94.56264775,24,25380,60.58807271,140.7017242,,,,,,,,,,,,,114.8168398,71.07343348,175.5097361,,,,9.4,,,,,0,,,,,0.14516129,270,1860,0.085645797,0.204676783,0.137078652,0.073713944,0.20044336,0.002150538,0,0.025851307,0.010752688,0,0.033295467,0.836833603,1554,1857,0.791635758,0.882031448,,,,,,,,,,,,,0.81871345,0.721126648,0.916300253,0.398,,1857,0.283152539,0.512847461,77.29087413,,,73.92587093,80.65587732,,,,,,,,,,,,,77.78209831,73.8335582,81.73063841,,,,534.0759557,92,13713,425.9998986,661.2223743,,,,,,,732.0706578,440.7543581,1143.219015,,,,528.6809354,406.2529468,676.4125761,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.133,,,0.115,0.152,0.182,,,0.157,0.208,0.121,,,0.105,0.139,210.8,8,3795,,,0.121,560,,,,0.002724762,13.65105661,5010,,,,,,,,,,,,,,,,,,,,,,,,,,0.364,,,0.351,0.377,0.181748759,476,2619,0.154344504,0.209153014,0.079279279,88,1110,0.054258003,0.104300556,0.00133452,6,4496,,,749.3333333,0.975,82.875,85,,,,,,,,3.378650357,,,,,,,,,3.550086736,3.288870938,,,,,,,,,3.473915768,0.008115795,,,,,-3130.908,,,,,0.950635294,40402,42500,0.684715144,1.216555445,57510,,,48821.65957,66198.34043,,,,,,,27083,8389.723404,45776.2766,48533,370.6170213,96695.38298,56449,51014.61702,61883.38298,,,,,,,,,,,31.08244653,,,,,0.204207964,,57510,,,4,1,250,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,600,,,,,0.569461827,2275,3995,,,0.484,,,,,3.539249426,,,,,0.751584284,1186,1578,0.712115855,0.791052713,0.181948424,254,1396,0.086695072,0.277201776,0.756020279,1193,1578,0.702946683,0.809093875,4496,,,,,0.237544484,1068,4496,,,0.184386121,829,4496,,,0.194172598,873,4496,,,0.00155694,7,4496,,,0.010008897,45,4496,,,0,0,4496,,,0.066725979,300,4496,,,0.709964413,3192,4496,,,0,0,4296,0,0.015531519,0.519128114,2334,4496,,,1,4547,4547,, -13,251,13251,GA,Screven County,2024,1,13722.28046,352,38874,11451.57243,15992.9885,0,,,,2,,,,2,15805.18299,12003.60558,19606.7604,,,,,2,12679.03646,9713.168492,15644.90443,,,,,2,,0.203,,,0.175,0.233,4.255565335,,,3.367755601,5.135274144,5.407698193,,,4.281392193,6.511302481,0.121262459,146,1204,0.102823533,0.139701384,0,,,,,,,0.171656687,0.138637015,0.204676359,,,,0.085987261,0.064060755,0.107913767,,,,,,,0.199,,,0.163,0.237,0.389,,,0.308,0.473,7.4,0.097537759,0.113,,,0.294,,,0.244,0.345,0.442738324,6228,14067,,,0.14523649,,,0.11326412,0.181514724,0.409090909,9,22,0.29849051,0.512929862,694.8,98,14105,,,43.77390565,103,2353,35.32009032,52.22772098,,,,,,,40.89219331,29.71233026,54.89586086,,,,46.31217839,34.79113377,60.42734682,,,,,,,0.156696765,1666,10632,0.135249956,0.178143573,0.000141794,2,14105,,,7052.5,0.000214638,3,13977,,,4659,0.000357731,5,13977,,,2795.4,3421,,,,,,,2679,,3421,0.36,,,,,,,0.36,,0.37,0.35,,,,,,,0.3,,0.36,0.849268293,8705,10250,0.822741225,0.875795361,0.485738023,1754,3611,0.375441544,0.596034501,0.043314127,218,5033,,,0.298,819,,0.178851064,0.417148936,,,,,,,0.617003367,0.531431051,0.702575683,,,,0.210722264,0.1149866,0.306457927,5.010399815,108400,21635,3.737556062,6.283243569,0.431842198,1226,2839,0.338478518,0.525205878,12.05246367,17,14105,,,105.7535656,74,69974,83.03929494,132.7639173,,,,,,,95.02023579,62.61893413,138.2494543,,,,117.4566715,85.6737022,157.1662677,,,,9,,,,,0,,,,,0.12145749,600,4940,0.085203758,0.157711222,0.080797482,0.049028594,0.112566369,0.029352227,0.011840585,0.046863869,0.018218624,0.003739887,0.03269736,0.816692533,4736,5799,0.751535683,0.881849383,,,,,,,0.853174603,0.742411247,0.963937959,,,,0.853043815,0.751665789,0.954421842,0.462,,5799,0.371910482,0.552089518,71.75322539,,,70.19237276,73.31407803,,,,,,,69.68016071,67.18331556,72.17700586,,,,72.6501256,70.60116188,74.69908933,,,,643.3871843,352,38874,571.0267033,715.7476653,,,,,,,735.3526655,613.7621284,856.9432025,,,,604.4646312,510.3601466,698.5691159,,,,109.375,14,12800,59.79633028,183.512665,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.132,,,0.115,0.152,0.179,,,0.155,0.206,0.129,,,0.111,0.149,323.4,39,12059,,,0.113,1580,,,,0.097537759,1423.368513,14593,,,,,,,,,,,,,,,,,,,,,,,,,,0.396,,,0.383,0.409,0.18799547,1494,7947,0.160591215,0.215399725,0.065883191,185,2808,0.045627872,0.08613851,0.000429277,6,13977,,,2329.5,0.925,115.625,125,,,,,,,,2.831631161,,,,,,,2.440539377,,3.2477323,2.916129478,,,,,,,2.570004429,,3.192976075,0.004295453,,,,,-10865.34,,,,,0.689171677,32440,47071,0.580706971,0.797636382,52713,,,47036.74468,58389.25532,,,,,,,33131,29611.34043,36650.65957,52800,3730.893617,101869.1064,64515,51306.14894,77723.85106,,,,,,,,,,,19.46859661,,,,,0.222791342,,52713,,,18.96333755,15,791,,,14.25952333,14,98180,7.795814093,23.92505716,,,,,,,,,,,,,,,,,,,16.18781283,13,69974,8.080897841,28.96446869,18.57832909,,,,,,,,,,,,,22.46971284,10.27458353,42.65451417,,,,31.44024924,22,69974,19.70343681,47.60091518,,,,,,,,,,,,,33.93192733,18.06732223,58.02462915,,,,29.53758403,29,98180,19.7817836,42.42089778,,,,,,,34.96328855,19.1147552,58.66245723,,,,27.88155914,15.605097,45.9863917,,,,,,1100,,,,,0.601998184,6628,11010,,,0.487,,,,,2.990467023,,,,,0.741696636,3506,4727,0.695513512,0.787879761,0.069772887,298,4271,0.038204848,0.101340926,0.781891263,3696,4727,0.733207417,0.830575109,13977,,,,,0.200686843,2805,13977,,,0.209773199,2932,13977,,,0.392287329,5483,13977,,,0.004936682,69,13977,,,0.006939973,97,13977,,,0.000500823,7,13977,,,0.028618445,400,13977,,,0.555054733,7758,13977,,,0.0033175,44,13263,0,0.012173484,0.50854976,7108,13977,,,1,14067,14067,, -13,253,13253,GA,Seminole County,2024,1,13187.95313,230,22732,10352.92242,16022.98384,0,,,,2,,,,2,18965.3486,13549.12309,25825.42194,,,,,2,10925.52238,7686.054611,14164.99014,,,,,2,,0.211,,,0.183,0.243,4.401948981,,,3.511254274,5.34687813,5.911943935,,,4.767645437,7.10582556,0.125553914,85,677,0.100593983,0.150513846,0,,,,,,,0.216312057,0.168256517,0.264367597,,,,0.065527066,0.0396392,0.091414931,,,,,,,0.209,,,0.17,0.249,0.373,,,0.293,0.456,7,0.065543318,0.147,,,0.297,,,0.244,0.348,0.169235815,1548,9147,,,0.132372573,,,0.103515398,0.164358493,0.307692308,4,13,0.157450571,0.460702037,489.3,45,9197,,,39.20454546,69,1760,30.50347645,49.61586142,,,,,,,49.61832061,35.28347645,67.82987769,,,,32.25806452,21.25826778,46.93379026,,,,,,,0.165933099,1131,6816,0.143294801,0.188571397,0.000869849,8,9197,,,1149.625,0.00043826,4,9127,,,2281.75,0.00021913,2,9127,,,4563.5,2723,,,,,,,2943,,2282,0.39,,,,,,,0.41,,0.38,0.31,,,,,,,0.14,,0.34,0.879366975,5890,6698,0.857912703,0.900821248,0.4685021,1004,2143,0.3748519,0.5621523,0.035275081,109,3090,,,0.353,626,,0.219553192,0.486446809,,,,,,,0.279891304,0.122910241,0.436872368,0.128571429,0,0.684580101,0.109820486,0.015864561,0.203776411,6.275142095,108196,17242,3.744009434,8.806274756,0.410921125,745,1813,0.267980181,0.553862069,10.8731108,10,9197,,,123.9452734,52,41954,92.56825857,162.537736,,,,,,,102.4365259,56.00300195,171.8710845,,,,147.1955377,104.1643231,202.0373757,,,,8.9,,,,,0,,,,,0.197622585,665,3365,0.133306092,0.261939079,0.155487805,0.092556227,0.218419383,0.047251114,0.010865066,0.083637163,0.004160476,0,0.009567375,0.828342081,2683,3239,0.775172948,0.881511214,,,,,,,0.803611738,0.657540892,0.949682585,,,,0.890229885,0.792665065,0.987794705,0.339,,3239,0.254479806,0.423520194,72.50120947,,,70.59147258,74.41094637,,,,,,,67.82115704,64.47977266,71.16254142,,,,74.2826132,72.01634875,76.54887765,,,,672.1904332,230,22732,575.4268014,768.9540649,,,,,,,941.2893359,741.6289359,1178.163967,,,,588.7129821,478.6089523,698.8170119,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.139,,,0.12,0.159,0.187,,,0.162,0.213,0.13,,,0.111,0.15,303.6,24,7906,,,0.147,1340,,,,0.065543318,572.1276243,8729,,,,,,,,,,,,,,,,,,,,,,,,,,0.381,,,0.368,0.395,0.202780536,1021,5035,0.172993302,0.23256777,0.064361702,121,1880,0.045297872,0.083425532,0.000547825,5,9127,,,1825.4,0.925,101.75,110,,,,,,,,3.150333033,,,,,,,2.743485765,,3.515521297,2.810896223,,,,,,,2.399318613,,3.127989721,0.000791773,,,,,-7969.641,,,,,0.680456785,33011,48513,0.444979846,0.915933724,45223,,,38551.85106,51894.14894,,,,43672,21424.51064,65919.48936,27237,16096.57447,38377.42553,92240,89712.85106,94767.14894,51372,43215.06383,59528.93617,,,,,,,,,,,45.39680394,,,,,0.259690865,,45223,,,10.05025126,4,398,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,32.16577223,19,59069,19.3658961,50.23083779,,,,,,,,,,,,,27.48763057,13.18138729,50.55073129,,,,,,700,,,,,0.59707917,3884,6505,,,0.396,,,,,7.164439715,,,,,0.738844785,2699,3653,0.680205259,0.797484311,0.147050191,501,3407,0.084665031,0.209435351,0.676156584,2470,3653,0.621862718,0.73045045,9127,,,,,0.197436178,1802,9127,,,0.248055221,2264,9127,,,0.32694204,2984,9127,,,0.002629561,24,9127,,,0.007888682,72,9127,,,0.00021913,2,9127,,,0.035389504,323,9127,,,0.614331106,5607,9127,,,0.005042402,44,8726,0,0.016544518,0.518352142,4731,9127,,,1,9147,9147,, -13,255,13255,GA,Spalding County,2024,1,12911.96665,1558,186874,11962.26447,13861.66884,0,,,,2,,,,2,14392.10506,12777.24559,16006.96454,,,,,2,12912.69284,11585.9774,14239.40828,,,,,2,,0.201,,,0.173,0.231,4.171239047,,,3.344436877,5.099973394,5.498091714,,,4.462870012,6.653919037,0.133910035,774,5780,0.125130324,0.142689746,0,,,,,,,0.191217565,0.175817167,0.206617963,0.074850299,0.046628441,0.103072158,0.092592593,0.081766708,0.103418477,,,,,,,0.2,,,0.164,0.237,0.362,,,0.291,0.441,7,0.126540763,0.119,,,0.273,,,0.227,0.322,0.672124328,45238,67306,,,0.144795381,,,0.115496567,0.17960026,0.15,9,60,0.089882153,0.221214355,686.2,466,67909,,,35.12278698,492,14008,32.01921023,38.22636373,,,,,,,47.91950887,42.31657793,53.52243981,24.22145329,14.99346134,37.02506429,26.77620569,22.8202741,30.73213728,,,,24.94802495,12.89100854,43.57917889,0.159829124,8493,53138,0.140765294,0.178892954,0.000412317,28,67909,,,2425.321429,0.000348235,24,68919,,,2871.625,0.001552547,107,68919,,,644.1028037,2582,,,,,,,2930,,2497,0.4,,,,,,0.38,0.35,,0.41,0.42,,,,,,0.32,0.33,0.24,0.44,0.836335686,38627,46186,0.816442066,0.856229306,0.443164542,7579,17102,0.389343424,0.496985661,0.033210709,975,29358,,,0.313,4917,,0.233170213,0.392829787,,,,,,,0.383365822,0.294336308,0.472395336,0.410771704,0.264900987,0.556642421,0.214529788,0.136729158,0.292330417,4.844692332,106840,22053,4.075848786,5.613535878,0.393596748,6196,15742,0.330728931,0.456464564,8.688097307,59,67909,,,92.0523169,307,333506,81.75505859,102.3495752,,,,,,,62.31230582,48.75554163,78.47203653,,,,118.7685739,103.3179976,134.2191503,,,,9.8,,,,,0,,,,,0.147110333,3780,25695,0.120076097,0.174144569,0.132187315,0.105866407,0.158508223,0.011286243,0.004654275,0.01791821,0.009340339,0.004252525,0.014428152,0.84660767,23534,27798,0.822677823,0.870537516,,,,,,,0.83964712,0.814200633,0.865093607,0.792951542,0.730709713,0.855193371,0.824960155,0.780698249,0.869222062,0.426,,27798,0.378654225,0.473345776,72.28072803,,,71.59376094,72.96769511,,,,,,,70.80189453,69.61060483,71.99318424,83.30450433,77.01081264,89.59819602,72.28064869,71.36194259,73.19935478,,,,636.8662147,1558,186874,603.6743971,670.0580324,,,,,,,737.2395103,674.0443912,800.4346294,,,,623.2550331,580.6413495,665.8687168,,,,61.18791976,42,68641,44.09887055,82.7082921,,,,,,,55.86787248,31.9333163,90.72592478,,,,73.80073801,46.7833372,110.7373428,,,,8.037742443,46,5723,5.884637674,10.72122204,,,,,,,10.49233253,6.853939958,15.37369818,,,,,,,,,,,,,0.133,,,0.116,0.152,0.179,,,0.156,0.203,0.126,,,0.108,0.145,402,228,56715,,,0.119,7930,,,,0.126540763,8107.846302,64073,,,19.30444596,39,202026,13.72734821,26.38981313,,,,,,,,,,,,,27.09363911,18.40881328,38.45725804,,,,0.385,,,0.371,0.398,0.198056053,7519,37964,0.173034777,0.22307733,0.066587247,1062,15949,0.046331928,0.086842566,0.00134941,93,68919,,,741.0645161,0.84,540.96,644,,,0.102979036,280,2719,0.037492149,0.168465924,2.559766588,,,,,,,2.269319282,2.649015397,2.87868108,2.492718674,,,,,,,2.192105464,2.489268686,2.797982411,0.073656721,,,,,-14887.72,,,,,0.792378868,39821,50255,0.678425772,0.906331964,55086,,,47934.68085,62237.31915,28025,10569.68085,45480.31915,80625,10281.85106,150968.1489,36850,28668.04255,45031.95745,46165,26364.82979,65965.17021,71763,65268.19149,78257.80851,,,,,,,,,,,41.58470363,,,,,0.272428566,,55086,,,10.84394154,46,4242,,,8.86749156,41,462363,6.363465041,12.02975358,,,,,,,15.15448099,9.70976192,22.54866647,,,,5.602743103,3.135812784,9.24087271,,,,18.96238484,62,333506,14.43504592,24.46009487,18.59037019,,,,,,,,,,,,,28.24363718,20.9629719,37.23571458,,,,22.18850635,74,333506,17.42274989,27.85563783,,,,,,,16.44352515,9.900076302,25.67860141,,,,27.206898,20.31941275,35.67822702,,,,22.92570989,106,462363,18.56129598,27.29012379,,,,,,,19.57453795,13.29994884,27.78449413,,,,26.8931669,21.04224681,33.8674929,,,,17.77777778,,6300,,,101,11,0.606260695,30116,49675,,,0.628,,,,,51.71644626,,,,,0.646732312,17011,26303,0.619781274,0.67368335,0.147839936,3713,25115,0.123782256,0.171897617,0.806828119,21222,26303,0.77746672,0.836189517,68919,,,,,0.231358551,15945,68919,,,0.188148406,12967,68919,,,0.364036042,25089,68919,,,0.005412151,373,68919,,,0.010156851,700,68919,,,0.001276861,88,68919,,,0.056689737,3907,68919,,,0.547628375,37742,68919,,,0.007244314,458,63222,0.003092734,0.011395893,0.523019777,36046,68919,,,0.406531364,27362,67306,, -13,257,13257,GA,Stephens County,2024,1,11923.6255,663,72702,10460.25165,13386.99935,0,,,,2,,,,2,15983.15056,11132.84999,22228.69331,,,,,2,11972.57656,10353.40269,13591.75043,,,,,2,,0.178,,,0.149,0.208,4.173252725,,,3.261933258,5.110450808,5.429364992,,,4.249852022,6.533607934,0.091990847,201,2185,0.079872377,0.104109316,0,,,,,,,0.116465864,0.076621454,0.156310273,0.150943396,0.08279141,0.219095383,0.085240275,0.072149622,0.098330927,,,,,,,0.189,,,0.149,0.227,0.334,,,0.254,0.406,7.6,0.053368517,0.126,,,0.26,,,0.209,0.31,0.64463859,17266,26784,,,0.158221908,,,0.123155253,0.192856411,0.27027027,10,37,0.184074024,0.36059786,465.3,125,26865,,,31.92740716,190,5951,27.38754234,36.46727198,,,,,,,23.08802309,13.19680008,37.49350303,46.875,26.23558167,77.31318397,32.86180631,27.6202648,38.10334782,,,,,,,0.170512882,3554,20843,0.150257563,0.190768201,0.000670017,18,26865,,,1492.5,0.000373594,10,26767,,,2676.7,0.001083424,29,26767,,,923,3701,,,,,,,406,,3849,0.39,,,,,,,0.36,,0.39,0.46,,,,,,0.43,0.34,0.27,0.47,0.836563131,15325,18319,0.803428536,0.869697727,0.441942531,2630,5951,0.35972157,0.524163492,0.035526316,378,10640,,,0.205,1194,,0.119212766,0.290787234,,,,,,,0.082051282,0,0.22724731,0.054852321,0,0.290801633,0.089084679,0.029219374,0.148949985,4.470241287,100044,22380,3.729462924,5.211019649,0.270756861,1549,5721,0.187515255,0.353998466,13.02810348,35,26865,,,115.4240113,151,130822,97.01358852,133.834434,,,,,,,94.42870633,50.27930915,161.4759637,,,,126.0174744,104.7595941,147.2753548,,,,8.5,,,,,0,,,,,0.106766917,1065,9975,0.074484778,0.139049057,0.095360825,0.064017784,0.126703865,0.011027569,0.000435809,0.021619329,0.004010025,0,0.009705562,0.804217675,9000,11191,0.770846572,0.837588778,,,,,,,,,,,,,0.820139697,0.802002458,0.838276937,0.272,,11191,0.215911342,0.328088658,71.88456796,,,70.87329811,72.89583781,,,,,,,68.72350357,65.38965506,72.05735208,,,,71.7884833,70.6864442,72.8905224,,,,633.541605,663,72702,582.0853213,684.9978887,,,,,,,804.8893068,632.0112249,1010.464818,,,,639.8392891,583.3900513,696.2885268,,,,64.35006435,17,26418,37.48628386,103.0306867,,,,,,,,,,,,,50.9580106,24.4363468,93.71359581,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.127,,,0.108,0.145,0.178,,,0.152,0.204,0.108,,,0.091,0.124,260.5,59,22651,,,0.126,3350,,,,0.053368517,1396.920922,26175,,,21.54708037,17,78897,12.55196835,34.49896297,,,,,,,,,,,,,20.17630991,10.74303528,34.50210442,,,,0.362,,,0.345,0.378,0.209246231,3123,14925,0.181841976,0.236650487,0.074145712,460,6204,0.051507415,0.09678401,0.001494377,40,26767,,,669.175,0.93,258.54,278,,,,,,,,3.071961801,,,,,,,2.581059592,,3.195448492,2.885465465,,,,,,,2.334839356,,2.974055707,0.004601681,,,,,-2537.642,,,,,0.81956067,36041,43976,0.700038831,0.939082508,51980,,,46458.6383,57501.3617,,,,62560,58911.65957,66208.34043,44392,22281.53192,66502.46809,24422,19364.12766,29479.87234,55795,49685.04255,61904.95745,,,,,,,,,,,47.16532765,,,,,0.225933051,,51980,,,8.896797153,15,1686,,,,,,,,,,,,,,,,,,,,,,,,,,22.01283431,32,130822,14.74234062,31.61410199,24.46071762,,,,,,,,,,,,,26.43359854,17.7029958,37.96305685,,,,16.05234594,21,130822,9.936655138,24.53771593,,,,,,,,,,,,,18.66925547,11.40366626,28.83315091,,,,24.15472197,44,182159,17.55085796,32.42658682,,,,,,,,,,,,,26.09952619,18.55931451,35.67891149,,,,,,2300,,,,,0.595590078,11885,19955,,,0.562,,,,,30.56034721,,,,,0.73367277,7493,10213,0.696726104,0.770619436,0.101263264,1002,9895,0.069257908,0.13326862,0.801821208,8189,10213,0.767050022,0.836592395,26767,,,,,0.222064482,5944,26767,,,0.212911421,5699,26767,,,0.10116935,2708,26767,,,0.00597751,160,26767,,,0.009489297,254,26767,,,0.001681175,45,26767,,,0.044532447,1192,26767,,,0.810139351,21685,26767,,,0.009809395,246,25078,0.00045989,0.019158899,0.516755707,13832,26767,,,0.559177121,14977,26784,, -13,259,13259,GA,Stewart County,2024,1,11227.01738,134,17435,8113.806942,14340.22781,0,,,,2,,,,2,14893.68056,9542.66216,22160.61609,1,,,,2,22436.61209,13070.15335,35923.18942,1,,,,2,,0.276,,,0.236,0.316,4.84294995,,,3.869372858,5.894702733,5.072449622,,,3.925312807,6.267439794,0.131386861,36,274,0.091385944,0.171387779,0,,,,,,,0.143712575,0.090507262,0.196917888,,,,0.105263158,0.043549665,0.166976651,,,,,,,0.212,,,0.174,0.252,0.436,,,0.351,0.522,6.6,0.116502927,0.143,,,0.358,,,0.295,0.419,0.009220926,49,5314,,,0.162761872,,,0.128550375,0.201582344,0.222222222,2,9,0.058854756,0.422872156,337,18,5341,,,42.59259259,23,540,27.00005007,63.90980166,,,,,,,41.34366925,23.63147921,67.13952868,,,,,,,,,,,,,0.188736682,620,3285,0.151800512,0.225672852,,0,5341,,,,,0,4648,,,,0.000215146,1,4648,,,4648,793,,,,,,,,,,0.35,,,,,,,0.22,,0.43,0.38,,,,,,,0.35,,0.38,0.725729316,3035,4182,0.65373365,0.797724983,0.340927583,838,2458,0.230785103,0.451070064,0.035810551,93,2597,,,0.378,206,,0.223106383,0.532893617,,,,,,,0.322891566,0.147010747,0.498772386,,,,,,,5.132224813,83645,16298,2.101695284,8.162754342,0.509057971,281,552,0.23647187,0.781644072,5.616925669,3,5341,,,87.56283444,27,30835,57.70445965,127.3993269,,,,,,,120.8800065,67.65562199,199.3731878,,,,170.043928,87.86417895,297.0325216,,,,9.3,,,,,0,,,,,0.149051491,275,1845,0.093667352,0.204435629,0.121479845,0.061619042,0.181340649,0.010840108,0,0.03538628,0.01897019,0,0.051139641,0.811724138,1177,1450,0.74230026,0.881148016,,,,,,,,,,,,,,,,0.577,,1450,0.349662706,0.804337294,73.49096759,,,70.90386934,76.07806584,,,,,,,70.41337407,66.25312194,74.57362621,105.7341772,58.10921388,153.3591406,,,,,,,677.8222217,134,17435,559.9891232,795.6553203,,,,,,,848.0708873,667.0615511,1063.064201,,,,906.6221815,641.5798151,1244.409778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.156,,,0.135,0.177,0.167,,,0.145,0.192,0.171,,,0.149,0.196,1618.1,80,4944,,,0.143,760,,,,0.116502927,705.7747331,6058,,,,,,,,,,,,,,,,,,,,,,,,,,0.409,,,0.393,0.424,0.214181818,589,2750,0.171288201,0.257075435,0.060070671,34,566,0.041006842,0.079134501,0.002581756,12,4648,,,387.3333333,,,,,,,,,,,2.422838627,,,,,,,2.513879179,,,2.257559446,,,,,,,2.317177295,,,0.036028103,,,,,-33135.48,,,,,1.011277972,34074,33694,0.804163832,1.218392113,41158,,,35272.04255,47043.95745,,,,,,,35870,20571.2766,51168.7234,,,,65313,32971.21277,97654.78723,,,,,,,,,,,7.043517507,,,,,0.285339424,,41158,,,19.41747573,2,103,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,300,,,,,0.505717916,1990,3935,,,0.37,,,,,9.434876998,,,,,0.604142693,1050,1738,0.508340518,0.699944867,0.049159925,79,1607,0,0.111426397,0.690448792,1200,1738,0.576532257,0.804365327,4648,,,,,0.118545611,551,4648,,,0.158347676,736,4648,,,0.408347676,1898,4648,,,0.006024096,28,4648,,,0.042168675,196,4648,,,0.000215146,1,4648,,,0.29711704,1381,4648,,,0.238597246,1109,4648,,,0.11115522,560,5038,0.056763952,0.165546489,0.332616179,1546,4648,,,1,5314,5314,, -13,261,13261,GA,Sumter County,2024,1,12544.4713,625,81860,11084.2784,14004.6642,0,,,,2,,,,2,16598.11092,14261.8816,18934.34023,,,,,2,7981.007384,6317.59976,9644.415008,,,,,2,,0.228,,,0.197,0.261,4.357672507,,,3.470591514,5.315582118,5.666139193,,,4.590248461,6.795246536,0.136309287,342,2509,0.122883257,0.149735316,0,,,,,,,0.17883959,0.159215791,0.19846339,0.088353414,0.053101612,0.123605216,0.067114094,0.049146122,0.085082066,,,,,,,0.204,,,0.169,0.243,0.407,,,0.33,0.486,7.5,0.052157844,0.133,,,0.317,,,0.267,0.372,0.550547002,16305,29616,,,0.134178676,,,0.104823289,0.167045766,0.086956522,2,23,0.016612403,0.209342713,945.9,277,29283,,,28.1446735,228,8101,24.49137749,31.79796951,,,,,,,32.89201489,27.77934224,38.00468755,56.71077505,38.26252178,80.95815765,14.89611917,10.5413805,20.44608739,,,,,,,0.155429092,3414,21965,0.135173773,0.175684411,0.000512243,15,29283,,,1952.2,0.000519445,15,28877,,,1925.133333,0.002666482,77,28877,,,375.025974,2363,,,,,,,3529,,1902,0.4,,,,,,,0.36,,0.41,0.4,,,,,,,0.28,0.19,0.44,0.837362756,15482,18489,0.817118072,0.85760744,0.534508969,3516,6578,0.451544091,0.617473848,0.040879479,502,12280,,,0.335,2148,,0.208702128,0.461297872,,,,,,,0.403247632,0.289059839,0.517435425,0.377279102,0.163833651,0.590724554,0.134453782,0.034858498,0.234049065,5.196167883,91120,17536,4.167099076,6.225236691,0.5500306,3595,6536,0.469367795,0.630693405,11.61083222,34,29283,,,77.87687328,115,147669,63.64324376,92.1105028,,,,,,,63.30176857,46.83099687,83.68829511,,,,103.9933444,79.35787741,133.8600482,,,,9.7,,,,,0,,,,,0.160245184,1830,11420,0.122418278,0.198072089,0.145926263,0.10662985,0.185222676,0.016637478,0.003094835,0.030180122,0.008318739,0.00057212,0.016065358,0.786540573,9315,11843,0.746952744,0.826128402,,,,,,,0.77164294,0.746929783,0.796356097,,,,0.791313031,0.754224925,0.828401136,0.217,,11843,0.170030528,0.263969472,72.43885446,,,71.40052429,73.47718463,,,,,,,68.68473716,67.22923818,70.14023614,,,,76.21749993,74.86320716,77.5717927,,,,617.3528868,625,81860,566.4162864,668.2894872,,,,,,,789.3565281,707.1585172,871.5545391,,,,464.3411753,399.2104947,529.4718558,,,,70.34597429,22,31274,44.08544757,106.5046505,,,,,,,81.71714971,45.73646836,134.7800113,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.139,,,0.121,0.159,0.18,,,0.156,0.205,0.147,,,0.127,0.168,560.7,138,24612,,,0.133,3950,,,,0.052157844,1711.768275,32819,,,14.75780177,13,88089,7.857907901,25.23629048,,,,,,,,,,,,,,,,,,,0.397,,,0.383,0.41,0.193738888,3051,15748,0.166334632,0.221143143,0.060494959,396,6546,0.041431129,0.079558789,0.00190463,55,28877,,,525.0363636,0.918078603,210.24,229,,,,,,,,2.433753253,,,,,,,2.336264151,2.385771152,2.937351279,2.264668771,,,,,,,2.201028541,2.167047312,2.616221412,0.133631463,,,,,-27152.57,,,,,0.918425922,38719,42158,0.790840145,1.046011698,44677,,,38574.19149,50779.80851,,,,,,,35078,27749.14894,42406.85106,40110,4440.382979,75779.61702,53873,41585.17021,66160.82979,,,,,,,,,,,21.43794033,,,,,0.262864561,,44677,,,14.18037436,25,1763,,,14.36527052,30,208837,9.692187697,20.5073169,,,,,,,23.76838622,15.526299,34.82619284,,,,,,,,,,12.62488746,18,147669,7.354462189,20.21366782,12.18942364,,,,,,,,,,,,,23.60879014,12.57068644,40.37175015,,,,20.31570607,30,147669,13.70692158,29.00193365,,,,,,,21.96183808,12.79358,35.16303024,,,,22.53189129,11.99728316,38.53022032,,,,14.84411287,31,208837,10.08585451,21.07003333,,,,,,,10.97002441,5.668371691,19.16242497,,,,21.95443236,13.01158801,34.69746825,,,,,,2700,,,,,0.549898167,12150,22095,,,0.554,,,,,36.84019446,,,,,0.566500611,6027,10639,0.535613648,0.597387574,0.167304593,1661,9928,0.124617439,0.209991747,0.763511608,8123,10639,0.715901101,0.811122116,28877,,,,,0.225404301,6509,28877,,,0.1788967,5166,28877,,,0.517886207,14955,28877,,,0.005332964,154,28877,,,0.013886484,401,28877,,,0.00187,54,28877,,,0.06281816,1814,28877,,,0.391695813,11311,28877,,,0.011101468,307,27654,0.003620622,0.018582314,0.528344357,15257,28877,,,0.412243382,12209,29616,, -13,263,13263,GA,Talbot County,2024,1,14663.35309,184,16299,11038.24727,18288.45891,0,,,,2,,,,2,13601.61595,9312.446008,17890.7859,,,,,2,18892.64458,12104.87387,28110.75757,1,,,,2,,0.239,,,0.208,0.273,4.595335759,,,3.684344824,5.568096862,5.529396322,,,4.499941064,6.587652479,0.143274854,49,342,0.106142818,0.18040689,0,,,,,,,0.187165775,0.131260927,0.243070624,,,,0.079365079,0.032166465,0.126563694,,,,,,,0.22,,,0.182,0.262,0.425,,,0.338,0.51,6.9,0.160705285,0.106,,,0.327,,,0.275,0.387,0.10989011,630,5733,,,0.120463775,,,0.093983264,0.151371465,0.529411765,9,17,0.415563015,0.627687466,313.5,18,5742,,,17.16350497,19,1107,10.33355119,26.80293909,,,,,,,18.34862385,9.481001695,32.05135329,,,,,,,,,,,,,0.167278962,683,4083,0.144640664,0.189917259,0.000348311,2,5742,,,2871,,0,5747,,,,0.000348008,2,5747,,,2873.5,2302,,,,,,,1815,,1617,0.42,,,,,,,0.48,,0.4,0.36,,,,,,,0.32,,0.37,0.834277942,3680,4411,0.803867301,0.864688582,0.511769834,587,1147,0.366186957,0.657352711,0.036641765,103,2811,,,0.355,327,,0.210829787,0.499170213,,,,,,,0.193126023,0.081326407,0.304925639,,,,0.455882353,0.22779172,0.683972986,4.781221851,90236,18873,3.550134503,6.012309199,0.497885835,471,946,0.280235809,0.715535861,0,0,5742,,,98.0360119,30,30601,66.14448554,139.9525028,,,,,,,60.17933442,28.85833,110.6719386,,,,160.7717042,98.20353365,248.2988577,,,,9.6,,,,,0,,,,,0.115916955,335,2890,0.074823054,0.157010857,0.093023256,0.052344921,0.13370159,0.024221453,0,0.04985199,0.001384083,0,0.010264581,0.801239669,1939,2420,0.742159279,0.86032006,,,,,,,,,,,,,,,,0.645,,2420,0.520839033,0.769160967,72.84762934,,,70.24265697,75.45260172,,,,,,,73.15922669,69.88408728,76.4343661,,,,70.03881075,65.34459887,74.73302262,,,,683.4084718,184,16299,568.7399648,798.0769788,,,,,,,712.8797638,559.4894974,866.2700302,,,,749.7365711,559.9391318,983.1797655,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.145,,,0.126,0.166,0.187,,,0.162,0.213,0.152,,,0.131,0.175,511.7,26,5081,,,0.106,620,,,,0.160705285,1103.24178,6865,,,,,,,,,,,,,,,,,,,,,,,,,,0.416,,,0.402,0.43,0.195986203,625,3189,0.167390458,0.224581947,0.066525871,63,947,0.043887573,0.089164169,,0,5747,,,,,,,,,,,,,,2.158262641,,,,,,,2.18412278,,,2.061892528,,,,,,,2.014732852,,,,,,,,-39631.96,,,,,0.746842332,32935,44099,0.514139839,0.979544825,45163,,,38382.23404,51943.76596,,,,,,,38750,22799.53192,54700.46809,,,,51221,35769.76596,66672.23404,,,,,,,,,,,20.73422562,,,,,0.26003587,,45163,,,9.433962264,2,212,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,23.19701223,10,43109,11.12386902,42.66013139,,,,,,,,,,,,,,,,,,,,,400,,,,,0.677959577,3522,5195,,,0.379,,,,,3.049226002,,,,,0.82072498,2083,2538,0.775971051,0.86547891,0.127732533,298,2333,0.070732865,0.184732201,0.699369582,1775,2538,0.655122005,0.74361716,5747,,,,,0.163041587,937,5747,,,0.270227945,1553,5747,,,0.524969549,3017,5747,,,0.009048199,52,5747,,,0.003828084,22,5747,,,0.000696015,4,5747,,,0.035844789,206,5747,,,0.412911084,2373,5747,,,0,0,5573,0,0.017103741,0.516791369,2970,5747,,,1,5733,5733,, -13,265,13265,GA,Taliaferro County,2024,1,12274.79266,44,4072,6342.564488,21441.59253,1,,,,2,,,,2,13004.56485,5228.509546,26794.37387,1,,,,2,13542.41284,3689.851708,34673.9555,1,,,,2,,0.242,,,0.211,0.274,4.546153847,,,3.759598266,5.382652953,5.460132941,,,4.396352839,6.582824216,0.106382979,10,94,0.044052002,0.168713956,1,,,,,,,,,,,,,,,,,,,,,,0.222,,,0.185,0.262,0.419,,,0.331,0.507,3.3,0.474323598,0.122,,,0.335,,,0.28,0.389,0.343810135,536,1559,,,0.11659054,,,0.089453873,0.145969778,0.071428571,1,14,0.003307818,0.237195967,577.7,9,1558,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.173992674,190,1092,0.148971397,0.199013951,0,0,1558,,,-1558,0,0,1600,,,-1600,,0,1600,,,,1500,,,,,,,,,1962,0.27,,,,,,,0.25,,0.3,0.33,,,,,,,0.14,,0.44,0.843076923,1096,1300,0.805051771,0.881102076,0.425389755,191,449,0.292530582,0.558248928,0.042513863,23,541,,,0.307,88,,0.181893617,0.432106383,,,,,,,0.444444444,0,0.973715846,,,,0.032258065,0,0.292811057,2.637254902,67250,25500,0.877582428,4.396927376,0.288702929,69,239,0.111142692,0.466263166,0,0,1558,,,,,,,,,,,,,,,,,,,,,,,,,,9.4,,,,,1,,,,,0.166666667,110,660,0.094123104,0.239210229,0.142638037,0.043931457,0.241344617,0.012121212,0,0.048244104,0.012121212,0,0.024678039,0.820895522,550,670,0.685871361,0.955919684,,,,,,,,,,,,,,,,0.488,,670,0.311458424,0.664541576,,,,,,,,,,,,,,,,,,,,,,,,616.4223831,44,4072,421.6324537,870.2044814,,,,,,,628.5625698,366.1608602,1006.389564,,,,654.7071035,338.2967141,1143.641553,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.145,,,0.126,0.165,0.183,,,0.158,0.208,0.156,,,0.135,0.177,509.7,7,1373,,,0.122,190,,,,0.474323598,814.4136169,1717,,,,,,,,,,,,,,,,,,,,,,,,,,0.432,,,0.419,0.444,0.204033215,172,843,0.171863002,0.236203428,0.076045627,20,263,0.05340733,0.098683925,0,0,1600,,,-1600,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-29151.45,,,,,0.855561847,33242,38854,0.515348491,1.195775203,42138,,,35775.44681,48500.55319,,,,,,,41065,34509.42553,47620.57447,,,,62656,45210.21277,80101.78723,,,,,,,,,,,,,,,,0.278703308,,42138,,,,,40,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,100,,,,,0.692537313,928,1340,,,0.407,,,,,5.637368006,,,,,0.751166408,483,643,0.610124112,0.892208703,0.115191987,69,599,0.004387442,0.225996531,0.595645412,383,643,0.442683687,0.748607137,1600,,,,,0.184375,295,1600,,,0.276875,443,1600,,,0.518125,829,1600,,,0.001875,3,1600,,,0.019375,31,1600,,,0,0,1600,,,0.058125,93,1600,,,0.373125,597,1600,,,0,0,1568,0,0.042553192,0.48875,782,1600,,,1,1559,1559,, -13,267,13267,GA,Tattnall County,2024,1,11276.95296,529,69331,9909.288737,12644.61718,0,,,,2,,,,2,11920.04492,9186.192424,14653.89742,,,,,2,12361.80722,10396.38028,14327.23417,,,,,2,,0.228,,,0.197,0.261,4.681517235,,,3.773815551,5.702199673,5.476989116,,,4.401445424,6.60020361,0.094552929,184,1946,0.08155262,0.107553238,0,,,,,,,0.156769596,0.122038454,0.191500739,0.08401084,0.055706325,0.112315355,0.074774775,0.059301014,0.090248535,,,,,,,0.22,,,0.183,0.261,0.423,,,0.345,0.502,7.5,0.06464889,0.128,,,0.324,,,0.275,0.38,0.513571491,11731,22842,,,0.156844173,,,0.124006877,0.192120161,0.344827586,10,29,0.246908102,0.441557488,590,136,23052,,,42.98125286,188,4374,36.83718198,49.12532374,,,,,,,44.56521739,31.98076942,60.45774953,52.02312139,37.94602172,69.61102948,36.97683868,29.77144392,45.39936405,,,,,,,0.178461341,2779,15572,0.157014532,0.199908149,0.000173521,4,23052,,,5763,0.000124668,3,24064,,,8021.333333,0.000290891,7,24064,,,3437.714286,2647,,,,,,,859,,2783,0.35,,,,,,,0.25,,0.37,0.36,,,,,,,0.27,0.21,0.39,0.782831556,13287,16973,0.756922711,0.808740402,0.34638637,2521,7278,0.292203485,0.400569255,0.030357904,285,9388,,,0.286,1382,,0.171617021,0.400382979,,,,,,,0.310991957,0.14347717,0.478506744,0.381924198,0.170334039,0.593514357,0.174609696,0.104134754,0.245084638,4.751323991,101379,21337,4.025233416,5.477414567,0.335918367,1646,4900,0.246682182,0.425154553,10.84504598,25,23052,,,90.01189443,112,124428,73.34145829,106.6823306,,,,,,,87.91582769,59.73453952,124.7894997,,,,103.3086696,81.11952568,129.6945742,,,,9.1,,,,,0,,,,,0.125823847,1050,8345,0.09351639,0.158131303,0.084704449,0.053940741,0.115468157,0.042540443,0.01955885,0.065522037,0.002396645,0,0.005430063,0.74503877,5669,7609,0.69902607,0.79105147,,,,,,,0.678683386,0.5577175,0.799649272,,,,0.790714995,0.711900453,0.869529537,0.346,,7609,0.281121243,0.410878757,73.08885293,,,72.0031533,74.17455256,,,,,,,72.52428259,70.41573866,74.63282651,83.10732936,66.44221366,99.77244507,72.17711138,70.74804968,73.60617307,,,,613.6361994,529,69331,560.3915086,666.8808901,,,,,,,634.3080775,524.3400359,744.2761191,,,,661.4612407,591.3801571,731.5423243,,,,58.49268841,13,22225,31.1448931,100.0242786,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.145,,,0.126,0.166,0.18,,,0.157,0.205,0.139,,,0.12,0.16,439.4,87,19798,,,0.128,2980,,,,0.06464889,1649.839663,25520,,,,,,,,,,,,,,,,,,,,,,,,,,0.407,,,0.394,0.42,0.222463179,2462,11067,0.192675945,0.252250413,0.073093888,348,4761,0.05045559,0.095732186,0.00070645,17,24064,,,1415.529412,0.88,226.16,257,,,,,,,,2.573689825,,,,,,,2.045916679,2.662003672,2.825000492,2.740148341,,,,,,,2.316128347,2.860040325,2.868258006,0.005033518,,,,,-7880.361,,,,,0.80998622,37619,46444,0.63910082,0.98087162,47401,,,41065.85106,53736.14894,,,,,,,29685,22015.38298,37354.61702,41838,16423.53192,67252.46809,59956,53707.82979,66204.17021,,,,,,,,,,,27.16170418,,,,,0.247758486,,47401,,,7.915567282,9,1137,,,9.728238788,17,174749,5.667057591,15.57585269,,,,,,,22.11677658,11.04061518,39.57302259,,,,,,,,,,19.88507882,26,124428,12.86857455,29.35429902,20.89561835,,,,,,,,,,,,,23.85017487,13.89360577,38.18644036,,,,15.26987495,19,124428,9.193462215,23.84580124,,,,,,,,,,,,,20.94094653,11.72048881,34.5389067,,,,22.88997362,40,174749,16.35293275,31.1696473,,,,,,,,,,,,,26.72235473,17.61020015,38.87962316,,,,,,2100,,,,,0.430911006,8183,18990,,,0.428,,,,,3.670149495,,,,,0.701271186,5296,7552,0.651983428,0.750558945,0.09852071,666,6760,0.063168872,0.133872548,0.774099576,5846,7552,0.730310289,0.817888863,24064,,,,,0.203332779,4893,24064,,,0.152551529,3671,24064,,,0.275515293,6630,24064,,,0.0078125,188,24064,,,0.007604721,183,24064,,,0.001870013,45,24064,,,0.12840758,3090,24064,,,0.570894282,13738,24064,,,0.025889549,601,23214,0.016214903,0.035564196,0.429604388,10338,24064,,,1,22842,22842,, -13,269,13269,GA,Taylor County,2024,1,11601.36348,198,21660,8922.938647,14279.78832,0,,,,2,,,,2,10141.04463,7140.23129,13978.09418,,,,,2,13857.66269,9556.123911,18159.20146,,,,,2,,0.255,,,0.222,0.291,4.93017921,,,3.960259246,5.949811439,5.814648428,,,4.630583593,7.057966098,0.115384615,66,572,0.089202227,0.141567003,0,,,,,,,0.140350877,0.095263308,0.185438447,,,,0.101265823,0.068002961,0.134528684,,,,,,,0.243,,,0.202,0.287,0.443,,,0.359,0.532,7,0.021894991,0.169,,,0.353,,,0.298,0.409,,,7816,,,0.126931979,,,0.098894365,0.159355195,0.285714286,4,14,0.142392906,0.436004848,551.4,43,7799,,,31.84713376,50,1570,23.63755652,41.98647558,,,,,,,40.54054054,25.97508928,60.3211108,,,,26.25820569,16.82412785,39.07012866,,,,,,,0.200848176,1184,5895,0.1758269,0.225869453,,0,7799,,,,0.000129249,1,7737,,,7737,0.000129249,1,7737,,,7737,2616,,,,,,,8157,,976,0.37,,,,,,,0.38,,0.37,0.35,,,,,,,0.27,,0.37,0.739942008,4083,5518,0.684866381,0.795017636,0.438117374,754,1721,0.333290032,0.542944715,0.049504951,130,2626,,,0.335,495,,0.206319149,0.463680851,,,,,,,0.50625,0.354668273,0.657831727,,,,0.323376623,0.235135501,0.411617746,7.547059764,94459,12516,4.648296672,10.44582286,0.404007757,625,1547,0.296353028,0.511662486,11.53994102,9,7799,,,94.82457454,38,40074,67.10351262,130.1541371,,,,,,,100.0133351,55.97670445,164.9567867,,,,99.80472988,63.26763739,149.7560985,,,,9.6,,,,,1,,,,,0.151724138,550,3625,0.093645387,0.209802889,0.148231966,0.086740792,0.20972314,0.001103448,0,0.012564912,0.00662069,0,0.017134614,0.815351963,2305,2827,0.735070917,0.89563301,,,,,,,,,,,,,0.815019763,0.701091754,0.928947772,0.464,,2827,0.358252382,0.569747618,73.81456822,,,71.81789216,75.81124428,,,,,,,72.89285029,70.35606905,75.42963153,,,,73.07732218,70.06546061,76.08918375,,,,606.6913025,198,21660,516.2791481,697.1034569,,,,,,,693.4253934,546.3403409,867.925282,,,,607.7504716,485.1339819,730.3669612,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.159,,,0.139,0.182,0.2,,,0.175,0.228,0.153,,,0.131,0.174,475.8,32,6725,,,0.169,1330,,,,0.021894991,194.9967938,8906,,,,,,,,,,,,,,,,,,,,,,,,,,0.401,,,0.388,0.413,0.238698011,1056,4424,0.207719287,0.269676734,0.090264346,140,1551,0.06286009,0.117668601,0.000387747,3,7737,,,2579,0.875,96.25,110,,,,,,,,2.625928311,,,,,,,2.269471361,,2.970335025,2.469338424,,,,,,,2.022511905,,2.962892693,0.007287487,,,,,-12215.85,,,,,0.825833002,37326,45198,0.578638058,1.073027945,44035,,,37586.65957,50483.34043,,,,,,,26314,16668.89362,35959.10638,,,,48923,40463.42553,57382.57447,,,,,,,,,,,23.67460251,,,,,0.266696946,,44035,,,8.639308855,4,463,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,35.31322834,20,56636,21.57023728,54.53841709,,,,,,,,,,,,,33.72681282,16.83630344,60.34658443,,,,,,700,,,,,0.604091267,3839,6355,,,0.397,,,,,12.07297113,,,,,0.623687664,1901,3048,0.56339183,0.683983498,0.189254766,546,2885,0.122393119,0.256116413,0.687007874,2094,3048,0.609912231,0.764103517,7737,,,,,0.198785059,1538,7737,,,0.215975184,1671,7737,,,0.353366938,2734,7737,,,0.003618974,28,7737,,,0.011373918,88,7737,,,0.000258498,2,7737,,,0.032183017,249,7737,,,0.585498255,4530,7737,,,0.003375641,25,7406,,,0.526302184,4072,7737,,,1,7816,7816,, -13,271,13271,GA,Telfair County,2024,1,11937.16341,304,40373,9665.447035,14208.87979,0,,,,2,,,,2,18154.16706,13541.64263,22766.6915,,,,,2,10947.20125,7898.473345,13995.92916,,,,,2,,0.289,,,0.254,0.325,5.21876352,,,4.249662183,6.261215776,5.746567226,,,4.604388638,6.953329316,0.129883844,123,947,0.108472335,0.151295352,0,,,,,,,0.202816901,0.160988332,0.244645471,,,,0.091617934,0.066653489,0.116582379,,,,,,,0.252,,,0.213,0.294,0.427,,,0.347,0.509,5.2,0.222092558,0.155,,,0.379,,,0.325,0.434,0.576260319,7190,12477,,,0.138034409,,,0.108805362,0.171815998,0.166666667,3,18,0.057993584,0.308188518,716.9,89,12414,,,49.35173568,118,2391,40.44707245,58.2563989,,,,,,,49.04051173,35.90381813,65.41317027,,,,49.23325262,37.65953718,63.24217265,,,,,,,0.16802097,1282,7630,0.144191183,0.191850757,0.000161108,2,12414,,,6207,0.000161891,2,12354,,,6177,0.000161891,2,12354,,,6177,2745,,,,,,,1108,,2703,0.35,,,,,,,0.31,,0.37,0.36,,,,,,,0.23,,0.39,0.754569491,6564,8699,0.730819127,0.778319855,0.257437408,874,3395,0.195068893,0.319805923,0.056991938,205,3597,,,0.35,647,,0.216553192,0.483446809,,,,,,,0.433333333,0.190087746,0.676578921,0.894184168,0.81056097,0.977807366,0.2,0.127368049,0.272631951,5.408015809,87572,16193,4.751633756,6.064397863,0.567675424,1707,3007,0.382481541,0.752869307,8.860963428,11,12414,,,77.71338251,59,75920,59.15902744,100.2446014,,,,,,,81.26934985,50.30700845,124.2288341,,,,91.4347183,63.32120044,127.7708541,,,,9.2,,,,,0,,,,,0.114955357,515,4480,0.064772883,0.165137832,0.065909091,0.027089561,0.104728621,0.0390625,0.011884809,0.066240192,0.011160714,0,0.027960028,0.922198041,3390,3676,0.87986866,0.964527422,,,,,,,,,,,,,0.897973694,0.815119373,0.980828015,0.221,,3676,0.157391874,0.284608126,74.60005588,,,72.76932191,76.43078985,,,,,,,70.5343046,67.10738179,73.96122741,90.03042908,64.46208338,115.5987748,75.38568529,73.0798568,77.69151379,,,,562.8152127,304,40373,496.8574961,628.7729293,,,,,,,808.3096084,668.9213132,947.6979035,,,,527.4358962,437.1387634,617.733029,,,,177.1231472,19,10727,106.6397051,276.599735,,,,,,,248.015873,118.9332514,456.1100209,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.168,,,0.147,0.191,0.19,,,0.166,0.216,0.164,,,0.142,0.186,753.1,83,11022,,,0.155,2000,,,,0.222092558,3664.52721,16500,,,,,,,,,,,,,,,,,,,,,,,,,,0.409,,,0.398,0.421,0.207735387,1187,5714,0.176756663,0.23871411,0.049554014,100,2018,0.034064652,0.065043376,0.000809454,10,12354,,,1235.4,0.925,107.3,116,,,,,,,,2.88402614,,,,,,,2.295236831,,3.307845557,3.091848771,,,,,,,2.597778443,,3.492868562,0.003061579,,,,,-11337.62,,,,,0.628711818,32500,51693,0.417553455,0.83987018,41547,,,36273.46809,46820.53192,,,,,,,36250,18624.29787,53875.70213,60824,50524.76596,71123.23404,42454,24551.87234,60356.12766,,,,,,,,,,,19.22448341,,,,,0.282667822,,41547,,,11.90476191,6,504,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.44046365,14,75920,10.08157307,30.9399646,,,,,,,,,,,,,,,,,,,21.24024565,23,108285,13.46449373,31.87079734,,,,,,,,,,,,,24.47427377,13.03152002,41.85175352,,,,,,1100,,,,,0.370976027,4333,11680,,,0.361,,,,,22.66200617,,,,,0.737449118,2174,2948,0.675867639,0.799030597,0.114011516,297,2605,0.049588485,0.178434548,0.66587517,1963,2948,0.591717444,0.740032895,12354,,,,,0.151287033,1869,12354,,,0.185688846,2294,12354,,,0.332523879,4108,12354,,,0.005099563,63,12354,,,0.008580217,106,12354,,,0.000809454,10,12354,,,0.183908046,2272,12354,,,0.459527279,5677,12354,,,0.054453809,659,12102,0.016558609,0.09234901,0.380605472,4702,12354,,,1,12477,12477,, -13,273,13273,GA,Terrell County,2024,1,13824.56024,221,23805,11000.28222,16648.83826,0,,,,2,,,,2,17530.50414,13488.71075,21572.29752,,,,,2,8836.014617,5661.401291,13147.28935,1,,,,2,,0.273,,,0.24,0.311,5.03936599,,,4.084004549,6.038610526,5.841025528,,,4.668904435,7.023132211,0.123906706,85,686,0.099251048,0.148562364,0,,,,,,,0.148148148,0.115648409,0.180647888,,,,0.078048781,0.041327639,0.114769922,,,,,,,0.248,,,0.209,0.292,0.44,,,0.354,0.526,7.3,0.026741232,0.154,,,0.357,,,0.303,0.413,0.620032662,5695,9185,,,0.121426671,,,0.095133392,0.152337995,0.066666667,1,15,0.003015681,0.225205905,1182.5,106,8964,,,33.632287,60,1784,25.66497811,43.29142007,,,,,,,39.49447077,29.31355746,52.06853607,,,,,,,,,,,,,0.201991251,1339,6629,0.176969974,0.227012527,,0,8964,,,,0.000114234,1,8754,,,8754,0.000114234,1,8754,,,8754,3679,,,,,,,5535,,2396,0.39,,,,,,,0.35,,0.41,0.34,,,,,,,0.19,,0.39,0.818615359,4978,6081,0.78293341,0.854297309,0.508693492,1024,2013,0.404312936,0.613074048,0.045179856,157,3475,,,0.477,897,,0.341170213,0.612829787,,,,0.435483871,0,0.960158791,0.658867925,0.555258679,0.76247717,0.204819277,0,0.467520112,0.067729084,0,0.151859245,5.826811943,96795,16612,4.638729254,7.014894632,0.506429278,1024,2022,0.360977631,0.651880925,10.04016064,9,8964,,,83.02966004,36,43358,58.15295313,114.9480476,,,,,,,77.63372409,47.42069554,119.8989904,,,,102.9799833,58.86195825,167.2330411,,,,9.6,,,,,0,,,,,0.181818182,610,3355,0.122161664,0.241474699,0.14847561,0.090170456,0.206780764,0.045603577,0.010282215,0.080924939,0.008941878,0.001931251,0.015952505,0.75908397,2486,3275,0.693342935,0.824825004,,,,,,,0.687453601,0.536493003,0.838414198,,,,0.819656489,0.686243439,0.953069538,0.419,,3275,0.32747221,0.51052779,71.77441747,,,69.84160267,73.70723228,,,,,,,68.04668252,65.5776706,70.51569445,,,,76.56756226,73.75439981,79.38072472,,,,681.681255,221,23805,584.5896101,778.7728998,,,,,,,881.4818026,734.0124012,1028.951204,,,,473.6616491,353.7531751,621.1442352,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.162,,,0.143,0.184,0.2,,,0.175,0.226,0.169,,,0.148,0.192,634.3,48,7567,,,0.154,1400,,,,0.026741232,249.0945753,9315,,,,,,,,,,,,,,,,,,,,,,,,,,0.428,,,0.414,0.442,0.24837424,1184,4767,0.216204027,0.280544452,0.085626911,168,1962,0.059414145,0.111839677,0.000342701,3,8754,,,2918,0.875,78.75,90,,,,,,,,2.611050805,,,,,,,2.550037956,,,2.426179307,,,,,,,2.360747522,,,0.010941101,,,,,-35913.78,,,,,0.73414245,36354,49519,0.598954847,0.869330053,53281,,,48521,58041,,,,,,,31350,21689.40426,41010.59575,,,,67115,53959.76596,80270.23404,,,,,,,,,,,47.65255311,,,,,0.220416284,,53281,,,17.30769231,9,520,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,30.92548586,19,61438,18.61916268,48.29397697,,,,,,,32.85690817,16.97764391,57.39440624,,,,,,,,,,,,800,,,,,0.688386594,4416,6415,,,0.44,,,,,33.11070874,,,,,0.588181818,1941,3300,0.536492775,0.639870861,0.151236749,428,2830,0.079442195,0.223031303,0.764242424,2522,3300,0.704182816,0.824302033,8754,,,,,0.218985607,1917,8754,,,0.212131597,1857,8754,,,0.573109436,5017,8754,,,0.007425177,65,8754,,,0.006168609,54,8754,,,0.001713502,15,8754,,,0.035183916,308,8754,,,0.365889879,3203,8754,,,0.002116402,18,8505,0,0.013058,0.514279187,4502,8754,,,1,9185,9185,, -13,275,13275,GA,Thomas County,2024,1,11749.44197,950,123935,10587.92113,12910.96282,0,,,,2,,,,2,17998.05735,15594.59796,20401.51675,,,,,2,8574.469678,7279.031309,9869.908046,,,,,2,,0.188,,,0.161,0.218,4.026249068,,,3.178685588,4.898883265,5.645844953,,,4.62612557,6.681638534,0.113455107,441,3887,0.103484739,0.123425475,0,,,,,,,0.166560306,0.148112513,0.185008099,0.051401869,0.021816311,0.080987428,0.077192983,0.065481039,0.088904926,,,,0.175438597,0.076698689,0.274178504,0.177,,,0.142,0.216,0.39,,,0.323,0.465,7,0.124207572,0.12,,,0.269,,,0.221,0.318,0.522533735,23931,45798,,,0.141912511,,,0.113163666,0.175477357,0.229166667,11,48,0.15515517,0.309266469,772.2,354,45842,,,30.41200041,296,9733,26.94738364,33.87661718,,,,,,,37.65172158,31.66596411,43.63747904,58.82352941,38.76507654,85.58514694,22.18152218,18.01729736,26.345747,,,,,,,0.154038094,5556,36069,0.136165753,0.171910434,0.000938005,43,45842,,,1066.093023,0.000438972,20,45561,,,2278.05,0.002458243,112,45561,,,406.7946429,2975,,,,,,,5109,,2408,0.52,,,,,,,0.45,,0.54,0.47,,,,,,0.6,0.36,0.36,0.49,0.863237704,26870,31127,0.843876623,0.882598784,0.643810735,7089,11011,0.574302667,0.713318802,0.035325927,601,17013,,,0.268,2829,,0.198893617,0.337106383,,,,,,,0.459291628,0.384635501,0.533947756,0.394387002,0.218211319,0.570562684,0.118650422,0.077915898,0.159384946,4.874551971,116960,23994,4.186818782,5.562285161,0.355545329,3863,10865,0.298200769,0.412889889,15.05169932,69,45842,,,71.90967073,161,223892,60.80180981,83.01753166,,,,,,,58.26277752,42.80929746,77.47714282,,,,86.24842655,70.20320335,102.2936498,,,,9.4,,,,,0,,,,,0.158591549,2815,17750,0.130458413,0.186724686,0.135243553,0.107535629,0.162951477,0.017464789,0.009049047,0.025880531,0.014084507,0.006101452,0.022067562,0.793404131,16287,20528,0.760696321,0.826111941,,,,,,,0.78785436,0.726984849,0.84872387,0.647276085,0.480826395,0.813725775,0.832750504,0.797108689,0.868392319,0.212,,20528,0.173890962,0.250109038,73.15593533,,,72.31948875,73.99238192,,,,,,,68.84611749,67.32149824,70.37073674,89.69467068,75.64749277,103.7418486,75.42351569,74.42605428,76.42097711,,,,574.0306162,950,123935,535.5259602,612.5352722,,,,,,,829.4493806,749.309671,909.5890902,,,,455.904017,412.5481273,499.2599066,,,,75.38554321,35,46428,52.50879298,104.8430416,,,,,,,102.1725102,61.51452551,159.555031,,,,60.220234,32.9229623,101.03932,,,,9.181331293,36,3921,6.430491563,12.71083257,,,,,,,14.26799007,9.044681785,21.40899063,,,,,,,,,,,,,0.125,,,0.108,0.143,0.172,,,0.149,0.197,0.123,,,0.106,0.141,450.5,172,38182,,,0.12,5490,,,,0.124207572,5554.562629,44720,,,8.911001374,12,134665,4.604444443,15.5657261,,,,,,,,,,,,,,,,,,,0.383,,,0.368,0.398,0.184670079,4727,25597,0.160840291,0.208499866,0.080894383,890,11002,0.057064596,0.10472417,0.002765523,126,45561,,,361.5952381,0.87405482,462.375,529,,,,,,,,2.906278631,,,,,,,2.475024527,2.787141288,3.327739815,2.651816238,,,,,,,2.233462513,2.624758176,3.055480289,0.080593731,,,,,-9843.839,,,,,0.82149168,42306,51499,0.702179717,0.940803642,52236,,,46497.78723,57974.21277,61288,42637.61702,79938.38298,76455,43957.12766,108952.8723,36899,31905.46809,41892.53192,43794,40090.85106,47497.14894,68097,58830.78723,77363.21277,,,,,,,,,,,37.64383024,,,,,0.224825791,,52236,,,9.825327511,27,2748,,,,,,,,,,,,,,,,,,,,,,,,,,12.10653712,30,223892,7.978284247,17.61437589,13.39931753,,,,,,,,,,,,,17.71787057,11.23161009,26.58550525,,,,10.71945402,24,223892,6.868156457,15.94969789,,,,,,,,,,,,,13.98623133,8.289127089,22.10427533,,,,20.68726269,65,314203,15.9659926,26.36761451,,,,,,,20.26520992,12.84640472,30.40776501,,,,22.14569654,15.82121029,30.15615316,,,,23.95348837,,4300,,,32,71,0.656147726,21853,33305,,,0.58,,,,,36.54063993,,,,,0.622798327,11315,18168,0.593432844,0.65216381,0.133925441,2292,17114,0.109078524,0.158772359,0.836690885,15201,18168,0.81370663,0.859675141,45561,,,,,0.235749874,10741,45561,,,0.192138013,8754,45561,,,0.356269617,16232,45561,,,0.006804065,310,45561,,,0.009547639,435,45561,,,0.000724304,33,45561,,,0.041175567,1876,45561,,,0.574965431,26196,45561,,,0.008553981,367,42904,0.003493653,0.013614309,0.522266851,23795,45561,,,0.449080746,20567,45798,, -13,277,13277,GA,Tift County,2024,1,12293.9061,812,114707,11092.04077,13495.77144,0,,,,2,,,,2,16831.71997,14323.5215,19339.91845,,11054.22252,8093.08021,14744.78374,,10450.34179,8889.372211,12011.31138,,,,,2,,0.214,,,0.186,0.243,4.348494832,,,3.515412241,5.310871156,5.415877718,,,4.421192422,6.510690968,0.114715806,442,3853,0.104653221,0.124778391,0,,,,,,,0.172848665,0.152663299,0.193034031,0.080645161,0.061079238,0.100211085,0.081445193,0.068178941,0.094711445,,,,0.161290323,0.069737822,0.252842823,0.199,,,0.165,0.236,0.405,,,0.335,0.479,7.7,0.057360224,0.123,,,0.301,,,0.254,0.35,0.65310565,27002,41344,,,0.137960437,,,0.109962482,0.170013389,0.142857143,5,35,0.066594236,0.239711679,679.4,280,41212,,,35.04987867,390,11127,31.57123226,38.52852508,,,,,,,40.65251165,34.29344132,47.01158198,51.25284738,41.21334176,62.99845091,24.64856538,20.37841928,28.91871147,,,,78.125,43.72596944,128.8553066,0.186860016,6095,32618,0.164221718,0.209498314,0.000655149,27,41212,,,1526.37037,0.000386361,16,41412,,,2588.25,0.001014199,42,41412,,,986,3618,,,,,,,5661,7275,3264,0.44,,,,,,0.46,0.45,0.3,0.45,0.32,,,,,,0.33,0.23,0.2,0.34,0.839190945,22612,26945,0.816354623,0.862027266,0.538896092,5819,10798,0.464595749,0.613196435,0.027739515,584,21053,,,0.235,2392,,0.134914894,0.335085106,,,,0.104166667,0,0.714257474,0.451692308,0.340110869,0.563273746,0.345577574,0.208027087,0.483128061,0.198669202,0.111456784,0.285881619,4.481527146,105410,23521,4.121755844,4.841298448,0.365577767,3749,10255,0.282481804,0.44867373,11.88974085,49,41212,,,74.11261191,151,203744,62.29146221,85.9337616,,,,,,,80.35816783,59.44941494,106.2377595,39.92812937,19.14709002,73.42925152,80.45555724,64.69576905,98.89353923,,,,9.3,,,,,0,,,,,0.148957633,2215,14870,0.118150531,0.179764735,0.132094943,0.102163983,0.162025904,0.012373907,0.004313336,0.020434479,0.012441157,0.002848446,0.022033868,0.817102138,14448,17682,0.784782116,0.84942216,,,,,,,0.85209713,0.811872103,0.892322157,0.687736563,0.590199106,0.78527402,0.852083471,0.804882084,0.899284857,0.198,,17682,0.157647367,0.238352633,72.48862882,,,71.6154456,73.36181205,,,,,,,69.58948352,67.83460595,71.3443611,82.33962083,66.23533698,98.44390469,73.65968882,72.5172843,74.80209334,,,,600.0764434,812,114707,557.6377602,642.5151265,,,,,,,785.0035943,693.2671686,876.7400201,549.8313987,399.508336,738.1229892,532.8837708,481.1844968,584.5830447,,,,83.87637912,39,46497,59.64430499,114.6617714,,,,,,,123.4407484,74.31939426,192.7680196,,,,63.61634451,33.87302418,108.7858866,,,,6.847577986,27,3943,4.512597041,9.962866458,,,,,,,,,,,,,,,,,,,,,,0.138,,,0.12,0.156,0.181,,,0.158,0.206,0.136,,,0.117,0.155,491,167,34009,,,0.123,5070,,,,0.057360224,2301.177461,40118,,,17.13236794,21,122575,10.60520578,26.18864429,,,,,,,,,,,,,23.95066164,13.68987254,38.89437399,,,,0.384,,,0.371,0.395,0.235019217,5381,22896,0.205231983,0.264806451,0.075512406,770,10197,0.052874108,0.098150704,0.003960205,164,41412,,,252.5121951,0.91,486.85,535,,,,,,,,3.047022721,,,,,,,2.594828918,2.844173231,3.568743957,3.007142975,,,,,,,2.589557038,2.874239331,3.497592255,0.021952496,,,,,-7824.332,,,,,0.806172102,37774,46856,0.708853044,0.903491159,52962,,,46928.29787,58995.70213,40500,705.4468085,80294.55319,115466,13897.48936,217034.5106,34464,24480.51064,44447.48936,58448,44837.61702,72058.38298,62690,58313.65957,67066.34043,,,,,,,,,,,54.56894451,,,,,0.283354103,,52962,,,16.16960115,45,2783,,,11.91577649,34,285336,8.252021611,16.65110329,,,,,,,33.00757996,21.93329717,47.70514322,,,,,,,,,,10.17284274,22,203744,6.29714999,15.55027074,10.79786399,,,,,,,,,,,,,11.61673633,6.185422845,19.86497292,,,,20.12329197,41,203744,14.44082175,27.29951781,,,,,,,37.71914,23.91069918,56.59722993,,,,11.62135827,6.187883832,19.87287657,,,,17.87366473,51,285336,13.30811739,23.50056823,,,,,,,15.32494784,8.159889296,26.20612753,,,,20.26239806,13.85946527,28.60446031,,,,21.53846154,,3900,,,48,36,0.560902515,16283,29030,,,0.566,,,,,63.40187155,,,,,0.616649269,9452,15328,0.581008074,0.652290464,0.110729732,1613,14567,0.084265614,0.13719385,0.703483821,10783,15328,0.665447914,0.741519727,41412,,,,,0.248357964,10285,41412,,,0.162609872,6734,41412,,,0.301724138,12495,41412,,,0.005191732,215,41412,,,0.014947358,619,41412,,,0.000651985,27,41412,,,0.131000676,5425,41412,,,0.538104897,22284,41412,,,0.019692404,758,38492,0.011625135,0.027759672,0.514995653,21327,41412,,,0.405476006,16764,41344,, -13,279,13279,GA,Toombs County,2024,1,13275.77409,639,74815,11767.7456,14783.80258,0,,,,2,,,,2,16736.82719,13397.32762,20076.32677,,7727.970705,4843.078097,11700.24052,1,13111.45768,11127.95325,15094.96211,,,,,2,,0.217,,,0.183,0.252,4.491681379,,,3.530701343,5.529322348,5.673184394,,,4.468460456,6.902474654,0.116425658,314,2697,0.10432075,0.128530566,0,,,,,,,0.185905225,0.159326176,0.212484274,0.061403509,0.039368679,0.083438339,0.094564408,0.078914539,0.110214277,,,,,,,0.206,,,0.165,0.252,0.417,,,0.327,0.504,7.3,0.052759619,0.142,,,0.312,,,0.252,0.372,0.468442471,12662,27030,,,0.145423415,,,0.110907121,0.183024368,0.266666667,8,30,0.170636514,0.368067779,813.8,219,26911,,,39.59615081,251,6339,34.69754853,44.49475309,,,,,,,51.18733509,41.50948051,62.44420788,37.46654773,27.00259209,50.6438883,33.53561163,27.12104008,39.95018317,,,,,,,0.177664047,3888,21884,0.156217238,0.199110855,0.00078035,21,26911,,,1281.476191,0.000521668,14,26837,,,1916.928571,0.00074524,20,26837,,,1341.85,3033,,,,,,,5577,,2703,0.34,,,,,,,0.29,,0.36,0.36,,,,,,0.33,0.27,0.16,0.38,0.829623634,14350,17297,0.798185789,0.861061479,0.413007394,2737,6627,0.338082327,0.487932461,0.037925633,460,12129,,,0.28,1955,,0.173957447,0.386042553,,,,,,,0.647272727,0.524983524,0.769561931,0.209546926,0.080517175,0.338576676,0.123266564,0.063794088,0.18273904,5.691595991,103348,18158,4.256092284,7.127099697,0.315976668,2221,7029,0.232507571,0.399445765,13.74902456,37,26911,,,89.89598811,121,134600,73.8781575,105.9138187,,,,,,,74.58191102,48.71938044,109.2797799,,,,110.5027253,88.74276225,135.9831122,,,,9.2,,,,,1,,,,,0.158835547,1555,9790,0.120674432,0.196996661,0.118591403,0.081534342,0.155648465,0.03319714,0.014281769,0.052112511,0.019407559,0.005999951,0.032815166,0.794668008,7899,9940,0.750320096,0.83901592,,,,,,,0.872295883,0.766113253,0.978478512,0.85348632,0.730638018,0.976334621,0.795290595,0.753881021,0.836700169,0.308,,9940,0.244169078,0.371830922,71.18344047,,,70.13214404,72.2347369,,,,,,,68.5878,66.41264249,70.76295751,93.57177741,56.27673611,130.8668187,71.28415869,69.93795991,72.63035747,,,,690.1991158,639,74815,634.8042537,745.593978,,,,,,,836.2964248,709.4933178,963.0995319,422.3339275,264.6744239,639.4186417,684.9263795,616.4449808,753.4077782,,,,61.39727267,19,30946,36.96516889,95.87944669,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.142,,,0.12,0.164,0.185,,,0.157,0.215,0.131,,,0.11,0.153,397.2,87,21905,,,0.142,3820,,,,0.052759619,1436.275116,27223,,,14.86730927,12,80714,7.682155647,25.9701973,,,,,,,,,,,,,22.81589646,11.38961331,40.82394116,,,,0.382,,,0.37,0.396,0.221154483,3337,15089,0.191367249,0.250941717,0.083415113,595,7133,0.057202347,0.109627879,0.002831911,76,26837,,,353.1184211,0.925,315.425,341,,,,,,,,2.785856699,,,,,,,2.350191786,2.700342559,3.254919937,2.946797317,,,,,,,2.411577367,3.091630235,3.36018233,0.078107211,,,,,-9460.654,,,,,0.812519746,36006,44314,0.74034938,0.884690111,45125,,,38698.10638,51551.89362,,,,123860,104593.617,143126.383,26142,15883.2766,36400.7234,45359,38926.14894,51791.85106,54091,44880.78723,63301.21277,,,,,,,,,,,36.17646956,,,,,0.260254848,,45125,,,15.99147122,30,1876,,,9.521945439,18,189037,5.643308337,15.04877895,,,,,,,24.66648852,12.74553456,43.08739141,,,,,,,,,,14.31906807,21,134600,8.746458775,22.11463928,15.60178306,,,,,,,,,,,,,16.4860416,9.227112335,27.1912185,,,,20.80237742,28,134600,13.82302872,30.0652273,,,,,,,31.55388543,15.75158592,56.45861712,,,,19.86565848,11.35494028,32.26058479,,,,26.97884541,51,189037,20.08752246,35.47219929,,,,,,,22.61094781,11.28730368,40.45723142,,,,29.93748349,20.7325776,41.83463247,,,,,,2900,,,,,0.579299363,10914,18840,,,0.492,,,,,30.6647832,,,,,0.640352676,6246,9754,0.600194156,0.680511195,0.160375324,1487,9272,0.114728097,0.206022551,0.777732212,7586,9754,0.73852071,0.816943715,26837,,,,,0.264187502,7090,26837,,,0.167008235,4482,26837,,,0.261616425,7021,26837,,,0.008346686,224,26837,,,0.008570258,230,26837,,,0.001639528,44,26837,,,0.122927302,3299,26837,,,0.590714312,15853,26837,,,0.026598078,667,25077,0.016184169,0.037011986,0.520065581,13957,26837,,,0.496929338,13432,27030,, -13,281,13281,GA,Towns County,2024,1,8633.533313,234,31358,6391.544614,10875.52201,0,,,,2,,,,2,,,,2,,,,2,8561.435881,6253.84001,10869.03175,,,,,2,,0.151,,,0.125,0.179,3.784907142,,,2.941288159,4.672954647,5.359447893,,,4.270104672,6.482229266,0.062407132,42,673,0.044131484,0.080682781,0,,,,,,,,,,,,,0.05756579,0.039051287,0.076080292,,,,,,,0.165,,,0.127,0.206,0.331,,,0.258,0.415,8.2,0.000063237,0.123,,,0.231,,,0.185,0.281,1,12493,12493,,,0.142905259,,,0.112993779,0.177509958,0.277777778,5,18,0.152183671,0.410166986,101,13,12875,,,11.22129436,43,3832,8.120906371,15.11500987,,,,,,,,,,,,,11.7370892,8.385148604,15.9825842,,,,,,,0.176004373,1288,7318,0.152174586,0.19983416,0.000543689,7,12875,,,1839.285714,0.000539624,7,12972,,,1853.142857,0.000462535,6,12972,,,2162,1854,,,,,,,,,1870,0.44,,,,,,,,,0.45,0.45,,,,,,,,,0.45,0.922336194,8812,9554,0.895161266,0.949511123,0.571580064,1078,1886,0.447397223,0.695762904,0.040826365,166,4066,,,0.199,333,,0.133468085,0.264531915,,,,,,,,,,0.08974359,0,0.471592136,0.250352609,0.147607809,0.35309741,4.899508114,106579,21753,3.645203385,6.153812843,0.409993594,640,1561,0.266663793,0.553323395,10.87378641,14,12875,,,94.18840987,57,60517,71.33738183,122.0320099,,,,,,,,,,,,,98.73408794,74.58266896,128.2144258,,,,7.2,,,,,0,,,,,0.157842158,790,5005,0.116280757,0.199403559,0.14308779,0.10204628,0.1841293,0.008791209,0,0.019265209,0.006993007,0.001132403,0.012853611,0.72616408,3275,4510,0.670105385,0.782222774,,,,,,,,,,,,,0.661745407,0.60129539,0.722195424,0.242,,4510,0.176750318,0.307249682,77.44951804,,,75.72771648,79.17131961,,,,,,,,,,,,,77.20019476,75.41750838,78.98288115,,,,413.7911138,234,31358,346.6980624,480.8841652,,,,,,,,,,,,,417.1963064,348.3202459,486.072367,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.115,,,0.097,0.134,0.168,,,0.143,0.193,0.097,,,0.082,0.114,102.1,12,11749,,,0.123,1520,,,,0.000063237,0.662154918,10471,,,,,,,,,,,,,,,,,,,,,,,,,,0.343,,,0.324,0.362,0.200594614,1147,5718,0.171998869,0.229190358,0.090855107,153,1684,0.063450852,0.118259362,0.000539624,7,12972,,,1853.142857,0.925,73.075,79,,,,,,,,3.298855001,,,,,,,,,3.386371115,3.108186007,,,,,,,,,3.146167986,0.018145949,,,,,1907.214,,,,,0.762179556,35529,46615,0.610108097,0.914251015,59273,,,50728.82979,67817.17021,82250,22626.68085,141873.3192,,,,,,,,,,56721,52984.48936,60457.51064,,,,,,,,,,,,,,,,0.198134058,,59273,,,12.46882793,5,401,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,27.68082802,23,83090,17.54727047,41.53483319,,,,,,,,,,,,,28.18525399,17.66354862,42.67281326,,,,,,600,,,,,0.77730151,7979,10265,,,0.489,,,,,13.99115523,,,,,0.790629575,4320,5464,0.776484881,0.80477427,0.170030465,893,5252,0.11474418,0.225316749,0.849011713,4639,5464,0.817626193,0.880397233,12972,,,,,0.13151403,1706,12972,,,0.368640148,4782,12972,,,0.010021585,130,12972,,,0.003546099,46,12972,,,0.009173605,119,12972,,,0.000462535,6,12972,,,0.027289547,354,12972,,,0.938791243,12178,12972,,,0.002224603,27,12137,0,0.011349134,0.523666358,6793,12972,,,1,12493,12493,, -13,283,13283,GA,Treutlen County,2024,1,14111.12895,178,18502,10803.48398,17418.77392,0,,,,2,,,,2,16736.75096,10609.66441,25113.34411,1,,,,2,13936.09705,9894.279578,17977.91452,,,,,2,,0.267,,,0.232,0.305,5.173365977,,,4.168098138,6.269916147,6.198826448,,,4.96719274,7.484932239,0.098619329,50,507,0.072666349,0.12457231,0,,,,,,,0.126436782,0.077055162,0.175818402,,,,0.089403974,0.057223392,0.121584555,,,,,,,0.257,,,0.214,0.305,0.429,,,0.35,0.516,4.8,0.193276165,0.191,,,0.35,,,0.294,0.411,0.628941617,4029,6406,,,0.132882882,,,0.10467493,0.167347256,0.3,3,10,0.129013968,0.476732101,523.3,33,6306,,,28.20685024,42,1489,20.32901661,38.12746728,,,,,,,32.5203252,18.58817572,52.81097073,,,,25.13661202,15.93445578,37.71725999,,,,,,,0.196941127,940,4773,0.171919851,0.221962404,,0,6306,,,,0.000157109,1,6365,,,6365,0.000314218,2,6365,,,3182.5,2500,,,,,,,,,2764,0.41,,,,,,,0.37,,0.41,0.37,,,,,,,0.25,,0.39,0.735701107,3190,4336,0.670308278,0.801093936,0.391935484,486,1240,0.273388585,0.510482383,0.039379023,104,2641,,,0.308,438,,0.185276596,0.430723404,,,,,,,0.580935252,0.405488816,0.756381687,,,,0.421232877,0.187501649,0.654964104,6.702778538,97941,14612,3.315984285,10.08957279,0.42,630,1500,0.274113379,0.565886621,12.68633048,8,6306,,,71.47537078,24,33578,45.79561872,106.3496861,,,,,,,,,,,,,84.18295763,49.89215593,133.0453665,,,,9.1,,,,,0,,,,,0.162839248,390,2395,0.093749686,0.231928811,0.143524416,0.070907124,0.216141708,0.00960334,0,0.02687515,0.010438413,0,0.027924925,0.849745724,1838,2163,0.755553716,0.943937731,,,,,,,,,,,,,0.900131406,0.790401787,1,0.516,,2163,0.377566574,0.654433426,71.0318813,,,68.78341231,73.2803503,,,,,,,68.62733013,64.37793627,72.87672398,,,,71.20922837,68.4426204,73.97583635,,,,727.5554956,178,18502,614.7377477,840.3732436,,,,,,,867.6152509,655.3872365,1126.67057,,,,708.3943278,570.8769582,845.9116973,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.165,,,0.143,0.189,0.204,,,0.177,0.233,0.151,,,0.13,0.173,450.7,24,5324,,,0.191,1230,,,,0.193276165,1330.706394,6885,,,,,,,,,,,,,,,,,,,,,,,,,,0.41,,,0.395,0.425,0.244075829,824,3376,0.210714127,0.277437532,0.085499316,125,1462,0.05928655,0.111712082,0.000314218,2,6365,,,3182.5,,,,,,,,,,,2.978881258,,,,,,,2.677530728,,3.181558257,3.058162268,,,,,,,2.674525512,,3.309408769,0.005327646,,,,,-12425.85,,,,,1.082810741,47138,43533,0.729994652,1.43562683,43533,,,37004.82979,50061.17021,,,,,,,24813,14845,34781,,,,44429,23804.31915,65053.68085,,,,,,,,,,,31.61546085,,,,,0.269772357,,43533,,,9.146341463,3,328,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,23.40425532,11,47000,11.68331993,41.87667769,,,,,,,,,,,,,,,,,,,,,700,,,,,0.609910803,3077,5045,,,0.503,,,,,4.374772248,,,,,0.617864924,1418,2295,0.537201712,0.698528135,0.138176638,291,2106,0.071481556,0.20487172,0.706318083,1621,2295,0.618072707,0.794563459,6365,,,,,0.226080126,1439,6365,,,0.18067557,1150,6365,,,0.304634721,1939,6365,,,0.003770621,24,6365,,,0.005498822,35,6365,,,0.000157109,1,6365,,,0.03503535,223,6365,,,0.635349568,4044,6365,,,0.000328731,2,6084,0,0.015518626,0.491751768,3130,6365,,,1,6406,6406,, -13,285,13285,GA,Troup County,2024,1,11686.66849,1395,197134,10788.17974,12585.15725,0,,,,2,,,,2,13140.78774,11596.25097,14685.3245,,8709.997789,5243.987645,13601.74047,1,11361.15794,10152.42942,12569.88645,,,,,2,,0.203,,,0.174,0.235,4.263086223,,,3.439128254,5.141941198,5.560397158,,,4.472935608,6.637374888,0.115711587,735,6352,0.107845002,0.123578172,0,,,,0.145631068,0.077509098,0.213753038,0.166342791,0.151953747,0.180731834,0.064039409,0.040224688,0.08785413,0.080219072,0.07066307,0.089775074,,,,0.082706767,0.035895018,0.129518516,0.194,,,0.158,0.232,0.44,,,0.364,0.518,7.7,0.042870107,0.128,,,0.297,,,0.248,0.35,0.643174027,44653,69426,,,0.153823012,,,0.121210787,0.188208642,0.246575343,18,73,0.186436143,0.309933899,849.1,592,69720,,,33.14129964,535,16143,30.33296591,35.94963336,,,,,,,42.20472441,37.15171923,47.25772959,32.44005642,20.56421303,48.67601255,27.03357983,23.48538712,30.58177254,,,,33.73015873,19.64906046,54.00525162,0.162048161,9105,56187,0.142984331,0.18111199,0.000502008,35,69720,,,1992,0.000598367,42,70191,,,1671.214286,0.001752361,123,70191,,,570.6585366,4413,,,,,,,7001,,3806,0.35,,,,,,,0.32,,0.36,0.4,,,,,,0.46,0.28,0.16,0.42,0.882511889,40825,46260,0.864480241,0.900543538,0.534969868,9676,18087,0.482908435,0.587031301,0.029827487,1091,36577,,,0.265,4411,,0.187553192,0.342446809,,,,0.014619883,0,0.281637399,0.351926978,0.268727381,0.435126574,0.228571429,0.04947551,0.407667347,0.194116136,0.136926104,0.251306168,5.471240438,113003,20654,4.721437174,6.221043701,0.332403064,5598,16841,0.276897315,0.387908813,11.76133104,82,69720,,,88.08153834,308,349676,78.24447191,97.91860477,,,,,,,72.82456404,58.70687699,89.31286304,,,,104.9866078,90.61474561,119.35847,,,,9.8,,,,,1,,,,,0.192554043,4810,24980,0.166639918,0.218468168,0.165296053,0.140187133,0.190404972,0.027622098,0.018927826,0.03631637,0.006004804,0.001702205,0.010307402,0.827434788,25250,30516,0.805073282,0.849796295,,,,0.805042017,0.561731017,1,0.835577069,0.791118568,0.880035569,0.765901639,0.674896917,0.856906362,0.854158532,0.830302723,0.878014341,0.271,,30516,0.231644762,0.310355238,73.00612865,,,72.33425978,73.67799752,,,,,,,71.07387664,69.94514601,72.20260726,82.00448378,74.94974783,89.05921974,73.46150244,72.58268121,74.34032368,,,,578.2142924,1395,197134,546.9677541,609.4608307,,,,,,,669.7185558,611.5563637,727.8807478,344.4583956,207.3864557,537.9144536,563.1724615,522.625091,603.719832,,,,77.04979011,58,75276,58.50713598,99.60472095,,,,,,,102.9284813,69.93490929,146.0987632,,,,57.73672055,35.73994002,88.25671048,,,,8.164547025,52,6369,6.097674235,10.70671718,,,,,,,11.29283489,7.562988761,16.21839464,,,,,,,,,,,,,0.133,,,0.115,0.153,0.179,,,0.155,0.205,0.133,,,0.115,0.154,357.9,207,57839,,,0.128,8900,,,,0.042870107,2874.183443,67044,,,20.49024093,43,209856,14.82888896,27.60022006,,,,,,,,,,,,,30.85943527,21.61356908,42.72246609,,,,0.393,,,0.38,0.407,0.199744719,7981,39956,0.173531953,0.225957485,0.071998592,1227,17042,0.050551783,0.0934454,0.001196735,84,70191,,,835.6071429,0.86,730.14,849,,,0.156822209,531,3386,0.089584584,0.224059834,2.560590329,,,,,,,2.010519673,2.516832334,3.001887775,2.784583047,,,,,,,2.451985336,2.720024957,3.107075469,0.0848668,,,,,-6363.611,,,,,0.762285629,40982,53762,0.685512034,0.839059224,55852,,,48573.19149,63130.80851,,,,101558,83209.06383,119906.9362,36061,31760.91489,40361.08511,51092,43089.95745,59094.04255,68850,65551.95745,72148.04255,,,,,,,,,,,43.57511569,,,,,0.268692258,,55852,,,13.60544218,58,4263,,,11.44155409,56,489444,8.642827,14.85780968,,,,,,,20.45780011,14.32839169,28.32221859,,,,6.5427185,3.877629639,10.34031597,,,,14.06134648,52,349676,10.43660239,18.53813235,14.87090907,,,,,,,7.440885347,3.568193748,13.68405308,,,,18.34566894,12.84908098,25.39813875,,,,22.02038459,77,349676,17.37814315,27.52170252,,,,,,,25.33028315,17.32589492,35.75880194,,,,22.02158115,15.93712747,29.66292529,,,,20.22703312,99,489444,16.43953442,24.62568706,,,,,,,21.59434456,15.28144344,29.63992506,,,,20.35512422,15.37604209,26.43282191,,,,,,6800,,,211,-888,0.58404276,30049,51450,,,0.618,,,,,35.01771934,,,,,0.594755149,15218,25587,0.56772731,0.621782988,0.162436965,3962,24391,0.133965501,0.190908428,0.838238168,21448,25587,0.813784823,0.862691513,70191,,,,,0.241085039,16922,70191,,,0.159778319,11215,70191,,,0.362083458,25415,70191,,,0.004573236,321,70191,,,0.024732516,1736,70191,,,0.001909077,134,70191,,,0.042170649,2960,70191,,,0.550569161,38645,70191,,,0.010036524,654,65162,0.005803921,0.014269128,0.521377385,36596,70191,,,0.453634085,31494,69426,, -13,287,13287,GA,Turner County,2024,1,12183.69816,191,22695,9576.434287,14790.96204,0,,,,2,,,,2,15963.19304,11643.66254,21360.00823,,,,,2,11073.88172,7427.598198,14720.16524,,,,,2,,0.255,,,0.223,0.289,4.873759543,,,3.949296507,5.907612545,5.796970238,,,4.6500788,7.07495718,0.138190955,110,796,0.114216714,0.162165196,0,,,,,,,0.17631579,0.1379989,0.214632679,,,,0.097765363,0.066999662,0.128531064,,,,,,,0.24,,,0.199,0.28,0.405,,,0.323,0.492,6.5,0.083369065,0.162,,,0.343,,,0.288,0.399,0.217188541,1956,9006,,,0.1299282,,,0.102390266,0.161440652,0.4,4,10,0.227273625,0.556899967,1093,98,8966,,,44.58945079,82,1839,35.46331347,55.34726544,,,,,,,46.7185762,33.67064041,63.14994302,,,,40.64039409,27.97497731,57.07422324,,,,,,,0.181441468,1226,6757,0.157611681,0.205271255,,0,8966,,,,0.000452386,4,8842,,,2210.5,0.000113097,1,8842,,,8842,3202,,,,,,,751,,2759,0.46,,,,,,,0.56,,0.43,0.31,,,,,,,0.15,,0.33,0.795465828,4807,6043,0.747402877,0.84352878,0.424446583,882,2078,0.327180552,0.521712615,0.040668348,129,3172,,,0.356,777,,0.216595745,0.495404255,,,,,,,0.3,0.114059123,0.485940877,0.601851852,0.043613162,1,0.099020675,0.009565924,0.188475426,4.816571243,89174,18514,3.868110063,5.765032424,0.502517163,1098,2185,0.302153699,0.702880626,14.49921927,13,8966,,,83.52577016,34,40706,57.84402394,116.7188918,,,,,,,81.04232903,43.15162703,138.5848508,,,,96.70289188,59.86061422,147.8206425,,,,9.3,,,,,0,,,,,0.146417446,470,3210,0.082397082,0.210437809,0.137931035,0.071699672,0.204162397,0.003115265,0,0.016981606,0.010903427,0,0.024884702,0.756740382,2498,3301,0.669748239,0.843732524,,,,,,,,,,,,,0.737387699,0.602022761,0.872752636,0.32,,3301,0.220812536,0.419187464,71.98764974,,,70.18933057,73.7859689,,,,,,,69.31778648,66.54621316,72.08935981,,,,72.70174892,70.13887716,75.26462068,,,,647.3004733,191,22695,551.167351,743.4335956,,,,,,,860.3828494,682.2300901,1070.820933,,,,571.0685687,453.4583018,688.6788356,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.159,,,0.139,0.18,0.199,,,0.174,0.225,0.156,,,0.135,0.179,622.9,46,7384,,,0.162,1440,,,,0.083369065,744.485752,8930,,,,,,,,,,,,,,,,,,,,,,,,,,0.41,,,0.397,0.422,0.232753063,1083,4653,0.19939136,0.266114765,0.069683258,154,2210,0.04704496,0.092321556,0.001130966,10,8842,,,884.2,0.975,81.9,84,,,,,,,,2.929720003,,,,,,,2.855839797,,3.307934846,2.809585376,,,,,,,2.617369274,,3.342226811,0.005070649,,,,,-22606.74,,,,,1.033118464,36061,34905,0.745126633,1.321110295,40865,,,35496.14894,46233.85106,,,,,,,30714,25558.42553,35869.57447,68679,68288.19149,69069.80851,60000,44440.34043,75559.65957,,,,,,,,,,,58.98528525,,,,,0.287385293,,40865,,,5.016722408,3,598,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,29.85074627,17,56950,17.38915974,47.79393646,,,,,,,,,,,,,35.96299081,17.95259544,64.34772457,,,,,,800,,,,,0.646547315,3792,5865,,,0.513,,,,,18.64694947,,,,,0.683755207,2134,3121,0.610835559,0.756674854,0.120135364,355,2955,0.063199775,0.177070952,0.66549183,2077,3121,0.582715601,0.748268058,8842,,,,,0.249943452,2210,8842,,,0.193734449,1713,8842,,,0.386111739,3414,8842,,,0.006785795,60,8842,,,0.008821534,78,8842,,,0.002940511,26,8842,,,0.052476815,464,8842,,,0.537887356,4756,8842,,,0.027985525,232,8290,0.008570332,0.047400718,0.520244289,4600,8842,,,0.473906285,4268,9006,, -13,289,13289,GA,Twiggs County,2024,1,14244.65605,235,21798,10661.45109,17827.86102,0,,,,2,,,,2,13453.64201,9317.03819,18800.11621,,,,,2,15069.36663,9766.157284,20372.57597,,,,,2,,0.202,,,0.173,0.233,4.160127722,,,3.315572061,5.113571269,5.39964871,,,4.302636761,6.544926134,0.110311751,46,417,0.080242829,0.140380673,0,,,,,,,0.145348837,0.09267535,0.198022325,,,,0.087336245,0.050769105,0.123903384,,,,,,,0.201,,,0.166,0.241,0.372,,,0.294,0.456,8.6,0.000315932,0.107,,,0.285,,,0.238,0.339,0.087883321,705,8022,,,0.139266697,,,0.109946721,0.173884879,0.2,4,20,0.089212428,0.331567708,407.3,32,7856,,,25.14792899,34,1352,17.41567188,35.14171013,,,,,,,26.45502646,14.80667748,43.63354298,,,,25.67975831,14.95940554,41.11578069,,,,,,,0.183858807,1073,5836,0.16122051,0.206497105,0.000127291,1,7856,,,7856,,0,7680,,,,0.000130208,1,7680,,,7680,2931,,,,,,,3270,,2783,0.44,,,,,,,0.52,,0.42,0.31,,,,,,,0.29,,0.32,0.793034826,4782,6030,0.750914063,0.835155588,0.507936508,992,1953,0.401288875,0.614584141,0.04622157,126,2726,,,0.328,462,,0.208851064,0.447148936,,,,,,,0.160810811,0.038879787,0.282741834,,,,0.171503958,0.055117381,0.287890534,7.665893108,109009,14220,5.792652056,9.539134161,0.305006588,463,1518,0.162240783,0.447772392,10.18329939,8,7856,,,103.8549986,42,40441,74.84954806,140.3817877,,,,,,,74.31721063,38.4007872,129.8172109,,,,134.7587818,90.92118418,192.3765403,,,,9.7,,,,,0,,,,,0.126623377,390,3080,0.063723841,0.189522912,0.101812191,0.04257318,0.161051202,0.022727273,0,0.051508111,0.00487013,0,0.016365688,0.835350202,2278,2727,0.757420219,0.913280185,,,,,,,0.861631016,0.749279557,0.973982476,,,,0.665865385,0.54040477,0.791325999,0.439,,2727,0.320000093,0.557999907,71.23316127,,,68.86601867,73.60030387,,,,,,,72.82159375,69.64908022,75.99410729,,,,69.90006816,66.49628355,73.30385277,,,,670.8689192,235,21798,573.7676229,767.9702155,,,,,,,640.859806,496.6575472,813.8693,,,,715.8931585,584.076171,847.710146,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.13,,,0.113,0.15,0.177,,,0.154,0.202,0.126,,,0.109,0.145,220,15,6818,,,0.107,860,,,,0.000315932,2.850656226,9023,,,,,,,,,,,,,,,,,,,,,,,,,,0.403,,,0.389,0.417,0.216749887,955,4406,0.186962653,0.246537121,0.084329349,127,1506,0.058116583,0.110542115,0.000260417,2,7680,,,3840,0.775,48.825,63,,,,,,,,2.666301654,,,,,,,2.372865269,,3.07283903,2.477704785,,,,,,,2.215764516,,2.647430107,0.012346057,,,,,-14941.21,,,,,0.838366477,38533,45962,0.649928234,1.026804719,48772,,,41563.48936,55980.51064,,,,,,,38112,18508.42553,57715.57447,,,,55016,46988.93617,63043.06383,,,,,,,,,,,46.13095238,,,,,0.240793898,,48772,,,5.076142132,2,394,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,24.56054174,14,57002,13.42747671,41.20841571,,,,,,,,,,,,,,,,,,,,,700,,,,,0.681595092,4444,6520,,,0.459,,,,,6.466473136,,,,,0.890344828,2582,2900,0.859458324,0.921231332,0.112879349,305,2702,0.03703729,0.188721407,0.718275862,2083,2900,0.645530466,0.791021258,7680,,,,,0.185416667,1424,7680,,,0.245963542,1889,7680,,,0.389973958,2995,7680,,,0.00546875,42,7680,,,0.005078125,39,7680,,,0.000390625,3,7680,,,0.031640625,243,7680,,,0.551041667,4232,7680,,,0.009281358,70,7542,0,0.025515517,0.510026042,3917,7680,,,1,8022,8022,, -13,291,13291,GA,Union County,2024,1,8554.715312,468,64922,6998.666458,10110.76417,0,,,,2,,,,2,,,,2,,,,2,9117.899521,7425.493429,10810.30561,,,,,2,,0.165,,,0.136,0.197,4.040801864,,,3.2032321,4.975952759,5.198526332,,,4.167077928,6.325299077,0.087032202,100,1149,0.070733096,0.103331308,0,,,,,,,,,,,,,0.089118199,0.072014435,0.106221962,,,,,,,0.181,,,0.137,0.226,0.343,,,0.27,0.423,8,0.016825366,0.125,,,0.248,,,0.2,0.301,0.958306268,23605,24632,,,0.134199263,,,0.105945633,0.164601773,0,0,19,0,0.124326705,86.2,22,25521,,,17.20942547,65,3777,13.28187126,21.93482547,,,,,,,,,,,,,17.82477341,13.56904339,22.99265902,,,,,,,0.181361106,3030,16707,0.158722808,0.203999404,0.000744485,19,25521,,,1343.210526,0.000303168,8,26388,,,3298.5,0.0009474,25,26388,,,1055.52,2012,,,,,,,,,2034,0.5,,,,,,,,,0.5,0.45,,,,,,,,0.33,0.46,0.881650158,17268,19586,0.856957379,0.906342938,0.563490187,2383,4229,0.466884766,0.660095608,0.026269855,301,11458,,,0.165,650,,0.097085106,0.232914894,,,,,,,,,,0.509363296,0.312683245,0.706043347,0.189213086,0.10818141,0.270244762,4.672441987,120007,25684,3.811535787,5.533348187,0.11178808,422,3775,0.06042546,0.163150699,9.795854394,25,25521,,,85.47008547,105,122850,69.12167399,101.818497,,,,,,,,,,,,,90.54264646,73.14091005,107.9443829,,,,7.7,,,,,0,,,,,0.172531769,1765,10230,0.129109176,0.215954362,0.127786033,0.09102866,0.164543405,0.041544477,0.014972214,0.06811674,0.007331378,0.000995723,0.013667034,0.789148936,7418,9400,0.744386853,0.833911019,,,,,,,,,,,,,0.811009174,0.76011743,0.861900919,0.253,,9400,0.200764367,0.305235633,78.11525572,,,76.88224855,79.34826288,,,,,,,,,,,,,77.49526742,76.19198036,78.79855447,,,,393.9554112,468,64922,348.6139491,439.2968733,,,,,,,,,,,,,414.3123451,365.6213764,463.0033138,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.123,,,0.103,0.144,0.173,,,0.147,0.201,0.103,,,0.087,0.12,131.3,30,22844,,,0.125,3020,,,,0.016825366,359.3225239,21356,,,19.896538,15,75390,11.13594128,32.81631366,,,,,,,,,,,,,21.30742351,11.92560319,35.14335474,,,,0.334,,,0.314,0.352,0.207897612,2664,12814,0.179301867,0.236493357,0.096514745,396,4103,0.06911049,0.123919001,0.001629529,43,26388,,,613.6744186,0.925,172.05,186,,,,,,,,3.458939662,,,,,,,,,3.502794523,3.279747539,,,,,,,,,3.284030417,0.012630411,,,,,1011.349,,,,,0.965086754,45610,47260,0.745171808,1.185001701,64588,,,56581.19149,72594.80851,31513,7611.723404,55414.2766,,,,,,,92591,36065.55319,149116.4468,59530,52362,66698,,,,,,,,,,,,,,,,0.181829442,,64588,,,6.458557589,6,929,,,,,,,,,,,,,,,,,,,,,,,,,,20.70703974,26,122850,12.64839783,31.98034344,21.16402116,,,,,,,,,,,,,22.45887393,13.52170922,35.07231367,,,,17.90801791,22,122850,11.22285948,27.11295432,,,,,,,,,,,,,19.15325214,12.00324114,28.99825391,,,,10.71141659,18,168045,6.348264322,16.92865617,,,,,,,,,,,,,10.80868001,6.296454416,17.30574374,,,,,,1700,,,,,0.781713137,15560,19905,,,0.549,,,,,9.407044307,,,,,0.813737336,8755,10759,0.780278223,0.84719645,0.112025562,1157,10328,0.076797205,0.147253919,0.865507947,9312,10759,0.840835277,0.890180617,26388,,,,,0.151205093,3990,26388,,,0.342542065,9039,26388,,,0.010421404,275,26388,,,0.005343338,141,26388,,,0.005191754,137,26388,,,0.000454752,12,26388,,,0.039715022,1048,26388,,,0.928566015,24503,26388,,,0.005973017,143,23941,0,0.012076167,0.507048659,13380,26388,,,1,24632,24632,, -13,293,13293,GA,Upson County,2024,1,13658.91508,800,74383,12130.67346,15187.15669,0,,,,2,,,,2,14711.86945,11821.541,17602.19791,,,,,2,13700.6571,11806.74618,15594.56801,,,,,2,,0.213,,,0.183,0.244,4.565999061,,,3.66092814,5.5577911,5.80690072,,,4.672115851,7.06495593,0.119626168,256,2140,0.105876385,0.133375951,0,,,,,,,0.146788991,0.119665714,0.173912268,0.171875,0.079443418,0.264306582,0.106227106,0.089880748,0.122573464,,,,,,,0.22,,,0.179,0.261,0.381,,,0.306,0.464,7.1,0.075294855,0.139,,,0.296,,,0.246,0.352,0.702093863,19448,27700,,,0.146823093,,,0.116340047,0.182460245,0.277777778,5,18,0.152183671,0.410166986,616.9,171,27720,,,37.13049748,206,5548,32.05996896,42.20102599,,,,,,,42.37786934,33.1580728,53.36791292,46.72897196,22.40835839,85.93624319,32.11805556,26.14297415,38.09313697,,,,87.59124088,45.25967233,153.0042704,0.156836035,3454,22023,0.136580716,0.177091354,0.000505051,14,27720,,,1980,0.00021363,6,28086,,,4681,0.000356049,10,28086,,,2808.6,2703,,,,,,,2315,,2693,0.31,,,,,,,0.25,,0.33,0.36,,,,,,,0.34,,0.37,0.844163342,16083,19052,0.818571681,0.869755004,0.513963161,3460,6732,0.433681254,0.594245068,0.031769015,373,11741,,,0.286,1798,,0.19306383,0.37893617,,,,,,,0.440352697,0.22392569,0.656779704,0.004651163,0,0.21977375,0.221401123,0.129788737,0.31301351,6.003284895,107825,17961,4.205153949,7.801415841,0.366141105,2299,6279,0.280441667,0.451840544,10.82251082,30,27720,,,72.97787341,97,132917,59.18013917,89.02681668,,,,,,,61.74828179,39.14311382,92.6527408,,,,80.82077992,63.23728273,101.7803965,,,,9.7,,,,,0,,,,,0.143269231,1490,10400,0.109584071,0.176954391,0.134370296,0.1010739,0.167666692,0.008653846,0.001441322,0.015866371,0.010096154,0,0.02143607,0.867431315,9756,11247,0.829071913,0.905790717,,,,,,,0.853549696,0.784217708,0.922881683,,,,0.85312156,0.799866327,0.906376793,0.315,,11247,0.249316616,0.380683384,70.2857933,,,69.30178922,71.26979738,,,,,,,68.98094195,67.16113191,70.80075198,,,,70.32784756,69.12988433,71.52581079,,,,759.5527005,800,74383,704.0336493,815.0717517,,,,,,,857.8870142,744.4477764,971.326252,,,,752.9972691,686.0882219,819.9063162,,,,72.32584697,19,26270,43.54488452,112.9457692,,,,,,,,,,,,,62.5,29.97117935,114.9397253,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.142,,,0.123,0.163,0.189,,,0.164,0.214,0.131,,,0.113,0.151,275.1,64,23268,,,0.139,3820,,,,0.075294855,2044.481195,27153,,,,,,,,,,,,,,,,,,,,,,,,,,0.397,,,0.382,0.409,0.19287685,3076,15948,0.165472594,0.220281105,0.064227387,409,6368,0.043972068,0.084482706,0.001246173,35,28086,,,802.4571429,0.88,266.64,303,,,,,,,,2.653127315,,,,,,,2.445579242,,2.866021093,2.844286382,,,,,,,2.611988173,,3.085976925,0.002656516,,,,,-6901.76,,,,,0.638507612,35819,56098,0.548894928,0.728120295,48061,,,41213.51064,54908.48936,,,,,,,31232,24332.08511,38131.91489,,,,60415,55106.91489,65723.08511,,,,,,,,,,,38.05192978,,,,,0.244356131,,48061,,,6.4171123,12,1870,,,9.158495852,17,185620,5.335161335,14.66363906,,,,,,,,,,,,,,,,,,,17.15158074,22,132917,10.61709881,26.21801309,16.55168263,,,,,,,,,,,,,25.5538063,15.60892876,39.46578129,,,,16.55168263,22,132917,10.37285138,25.05944641,,,,,,,,,,,,,19.08268415,11.11636674,30.55322589,,,,18.3169917,34,185620,12.68504923,25.59615995,,,,,,,,,,,,,20.85622839,13.62398083,30.55920689,,,,39.56521739,,2300,,,55,36,0.64525,12905,20000,,,0.626,,,,,29.36089741,,,,,0.646273531,6729,10412,0.607004658,0.685542403,0.169108543,1639,9692,0.121788366,0.216428721,0.804456397,8376,10412,0.778057006,0.830855787,28086,,,,,0.227301859,6384,28086,,,0.185572883,5212,28086,,,0.278822189,7831,28086,,,0.004236986,119,28086,,,0.006052838,170,28086,,,0.001851456,52,28086,,,0.026668091,749,28086,,,0.666132593,18709,28086,,,0.000953507,25,26219,0,0.005715129,0.525706758,14765,28086,,,0.466967509,12935,27700,, -13,295,13295,GA,Walker County,2024,1,11268.53526,1469,191619,10365.25281,12171.81771,0,,,,2,,,,2,15398.21427,9964.91239,22730.80184,1,,,,2,11459.89374,10504.18877,12415.59871,,,,,2,,0.181,,,0.153,0.216,4.252837743,,,3.390986966,5.233751755,5.934208004,,,4.872732296,7.100617517,0.091973886,479,5208,0.084125109,0.099822664,0,,,,,,,0.152631579,0.101494301,0.203768857,0.154471545,0.090602286,0.218340803,0.087149188,0.079118656,0.095179719,,,,0.115789474,0.051445682,0.180133265,0.202,,,0.161,0.251,0.367,,,0.295,0.447,6.8,0.137211225,0.126,,,0.263,,,0.216,0.318,0.529384811,35815,67654,,,0.152233239,,,0.120060066,0.188886727,0.098039216,5,51,0.042753873,0.174009856,245.2,168,68510,,,36.54874387,499,13653,33.34189676,39.75559097,,,,,,,23.29192547,13.03631387,38.41648893,27.32240437,15.29214232,45.06415095,37.6821303,34.20047909,41.16378151,,,,34.56790124,18.89859328,57.9990645,0.148134588,8092,54626,0.130262248,0.166006928,0.000189753,13,68510,,,5270,0.000159617,11,68915,,,6265,0.000623957,43,68915,,,1602.674419,3151,,,,,,,2048,,3165,0.4,,,,,,0.46,0.57,,0.4,0.44,,,,,,0.48,0.39,0.21,0.44,0.850348246,40656,47811,0.828903906,0.871792587,0.548252761,9084,16569,0.490093908,0.606411614,0.030179602,941,31180,,,0.199,2849,,0.135851064,0.262148936,,,,,,,0.290870488,0.058482327,0.52325865,0.279935275,0,0.644180448,0.16933932,0.129622272,0.209056368,4.165233881,98841,23730,3.759065622,4.571402141,0.337741047,4904,14520,0.268408199,0.407073894,9.341701941,64,68510,,,86.52115731,300,346736,76.73036667,96.31194795,,,,,,,133.2445037,81.38920443,205.7853291,,,,88.55279881,78.1431527,98.96244492,,,,9.4,,,,,0,,,,,0.113666603,2990,26305,0.095048752,0.132284455,0.091817831,0.073958889,0.109676773,0.015928531,0.008865358,0.022991703,0.013115377,0.005084273,0.021146482,0.793251062,23719,29901,0.767706389,0.818795735,,,,,,,,,,,,,0.728293413,0.706871549,0.749715278,0.417,,29901,0.371629437,0.462370563,73.92996751,,,73.24307451,74.61686051,,,,,,,70.40905698,66.12358742,74.69452653,81.89777796,74.34177641,89.45377951,73.70991393,72.99678304,74.42304483,,,,558.1077491,1469,191619,528.1563685,588.0591297,,,,,,,578.3766796,431.9593685,758.464066,,,,571.6542453,539.9775585,603.3309322,,,,62.57917792,41,65517,44.90789851,84.89572106,,,,,,,,,,,,,52.89046385,35.68497386,75.50442587,,,,6.290507053,33,5246,4.330095611,8.834210688,,,,,,,,,,,,,5.425709516,3.544253593,7.949921553,,,,,,,0.128,,,0.109,0.15,0.182,,,0.157,0.208,0.107,,,0.091,0.126,165.2,96,58123,,,0.126,8520,,,,0.137211225,9434.094995,68756,,,29.7523358,62,208387,22.81094525,38.14115174,,,,,,,,,,,,,31.89165342,24.33669132,41.05087963,,,,0.349,,,0.331,0.366,0.181697812,7273,40028,0.157868024,0.205527599,0.058689273,900,15335,0.040816933,0.076561613,0.000333745,23,68915,,,2996.304348,0.919880775,617.24,671,,,0.098556954,321,3257,0.036633401,0.160480508,3.039321391,,,,,,,2.297570749,2.997724112,3.104720975,2.697751426,,,,,,,1.924168498,2.508726679,2.778363766,0.048350624,,,,,-38.663,,,,,0.844708414,40818,48322,0.769447641,0.919969188,53407,,,48999.68085,57814.31915,,,,34792,16429.95745,53154.04255,41286,33488.89362,49083.10638,57500,31722.12766,83277.87234,53201,49474.02128,56927.97872,,,,,,,,,,,42.85829935,,,,,0.219896268,,53407,,,7.993384785,29,3628,,,3.729039689,18,482698,2.210065254,5.893490395,,,,,,,,,,,,,3.197412836,1.748055351,5.364715435,,,,13.60307808,49,346736,9.959162828,18.14459987,14.13178903,,,,,,,,,,,,,14.60678086,10.61330934,19.60892153,,,,10.95934659,38,346736,7.755485916,15.04255945,,,,,,,,,,,,,11.46726891,8.031534167,15.87553378,,,,18.02369183,87,482698,14.4362383,22.23215729,,,,,,,,,,,,,17.81415723,14.08135205,22.23287444,,,,12.95081967,,6100,,,42,37,0.544298164,29354,53930,,,0.592,,,,,31.35032536,,,,,0.742860429,19379,26087,0.71496918,0.770751678,0.089678917,2240,24978,0.07124039,0.108117445,0.835281941,21790,26087,0.812573426,0.857990457,68915,,,,,0.21153595,14578,68915,,,0.195124429,13447,68915,,,0.04612929,3179,68915,,,0.004512806,311,68915,,,0.007951825,548,68915,,,0.000740042,51,68915,,,0.02952913,2035,68915,,,0.89527679,61698,68915,,,0.002483123,160,64435,0,0.005499466,0.502386999,34622,68915,,,0.510169391,34515,67654,, -13,297,13297,GA,Walton County,2024,1,9150.030352,1634,272632,8477.891853,9822.168851,0,,,,2,,,,2,11395.13944,9759.87217,13030.40672,,5287.216777,3351.641894,7933.421165,1,8992.348375,8187.975652,9796.721097,,,,,2,,0.168,,,0.143,0.196,3.855611075,,,3.0538393,4.765311662,5.439856626,,,4.454573309,6.560567533,0.08966332,759,8465,0.083577052,0.095749587,0,,,,0.093922652,0.051423076,0.136422228,0.135757018,0.121354936,0.1501591,0.075778079,0.056697402,0.094858756,0.071891573,0.064795912,0.078987235,,,,0.070652174,0.033626833,0.107677515,0.171,,,0.137,0.209,0.356,,,0.287,0.429,7.7,0.109016598,0.094,,,0.272,,,0.224,0.322,0.755226382,73010,96673,,,0.164812168,,,0.131583787,0.20196968,0.161290323,10,62,0.100881124,0.231379944,289.4,289,99853,,,19.30570315,436,22584,17.49353518,21.11787113,,,,,,,29.47799386,24.66325486,34.29273286,31.56384505,22.93433813,42.37298872,14.73016712,12.79681342,16.66352082,,,,23.35164835,13.6031957,37.38825112,0.14874887,12335,82925,0.132068018,0.165429721,0.000240353,24,99853,,,4160.541667,0.000368699,38,103065,,,2712.236842,0.001125503,116,103065,,,888.4913793,3272,,,,,,,3429,3059,3207,0.43,,,,,,0.37,0.45,0.45,0.42,0.43,,,,,,0.35,0.34,0.39,0.45,0.870571398,57180,65681,0.855249539,0.885893258,0.626500519,15083,24075,0.578360561,0.674640477,0.02777026,1334,48037,,,0.147,3502,,0.101723404,0.192276596,,,,0.188571429,0,0.498046057,0.546964385,0.462592997,0.631335772,0.189834025,0.09674434,0.28292371,0.104203752,0.069603542,0.138803962,4.088384129,142194,34780,3.61895006,4.557818198,0.234257569,5517,23551,0.196730502,0.271784635,6.709863499,67,99853,,,81.44006179,388,476424,73.33645606,89.54366753,,,,,,,74.86643148,57.90169268,95.24845723,,,,88.86971527,78.9606972,98.77873334,,,,10.4,,,,,1,,,,,0.12681103,4070,32095,0.106181803,0.147440257,0.106155779,0.088660064,0.123651494,0.020252376,0.011952454,0.028552298,0.00436205,0.000890952,0.007833148,0.778371512,35542,45662,0.760592233,0.796150792,,,,,,,0.65880276,0.602244257,0.715361264,0.517590936,0.245861147,0.789320726,0.716438356,0.671759223,0.761117489,0.546,,45662,0.509978378,0.582021622,75.25340224,,,74.70183181,75.80497267,,,,,,,72.02278519,70.79431411,73.25125627,82.17920857,76.70791376,87.65050339,75.48968478,74.84294376,76.1364258,,,,472.3327618,1634,272632,448.816439,495.8490847,,,,,,,611.9076521,545.5754191,678.2398851,275.2792796,178.1462353,406.3665204,461.5296522,434.8138961,488.2454082,,,,66.20904532,68,102705,51.41391437,83.93574135,,,,,,,94.56477687,58.53708733,144.5523066,,,,57.01938659,40.35031157,78.26356299,,,,6.661115737,56,8407,5.031735242,8.650012847,,,,,,,11.20448179,7.178922901,16.67138076,,,,4.677450789,2.996930979,6.959676007,,,,,,,0.117,,,0.101,0.135,0.17,,,0.147,0.193,0.107,,,0.091,0.124,338.1,282,83407,,,0.094,8980,,,,0.109016598,9132.10237,83768,,,23.34194926,68,291321,18.12593694,29.59148265,,,,,,,,,,,,,28.56707549,21.79968812,36.77148882,,,,0.386,,,0.37,0.4,0.180529987,10689,59209,0.159083179,0.201976796,0.072224449,1802,24950,0.05196913,0.092479768,0.001047882,108,103065,,,954.3055556,0.935340557,906.345,969,,,0.05660705,326,5759,0.029184875,0.084029225,3.165680349,,,,,,,2.77044234,2.926852283,3.337255617,3.049299556,,,,,,,2.580979217,2.751288705,3.231029804,0.053343119,,,,,-1572.62815,,,,,0.810099058,46942,57946,0.756608711,0.863589405,83037,,,74507.12766,91566.87234,,,,,,,57489,50758.2766,64219.7234,60667,15995.68085,105338.3192,83213,78332.65957,88093.34043,,,,,,,,,,,44.35856151,,,,,0.180726664,,83037,,,9.297335956,52,5593,,,4.732773848,31,655007,3.215690211,6.717794696,,,,,,,14.34768665,8.3580562,22.9720362,,,,2.898700761,1.58474668,4.86352733,,,,16.06806113,79,476424,12.63854937,20.14145377,16.58186825,,,,,,,,,,,,,18.28817656,14.08412441,23.35359319,,,,15.53238292,74,476424,12.19626137,19.49948439,,,,,,,20.41811768,12.10107057,32.26942871,,,,15.81823411,11.91645872,20.58960598,,,,17.40439415,114,655007,14.20945526,20.59933304,,,,,,,19.41157605,12.30527407,29.12689507,,,,16.97810446,13.50319032,21.07430429,,,,,,9900,,,160,-888,0.745259627,51095,68560,,,0.703,,,,,28.31404186,,,,,0.775256824,26413,34070,0.753914759,0.796598889,0.123671959,4144,33508,0.10282284,0.144521078,0.905224538,30841,34070,0.887666905,0.92278217,103065,,,,,0.235016737,24222,103065,,,0.163430845,16844,103065,,,0.204851307,21113,103065,,,0.004531121,467,103065,,,0.018221511,1878,103065,,,0.001329258,137,103065,,,0.063173725,6511,103065,,,0.692805511,71404,103065,,,0.00912171,840,92088,0.004724865,0.013518554,0.511221074,52689,103065,,,0.580606788,56129,96673,, -13,299,13299,GA,Ware County,2024,1,14329.80309,917,99473,12942.89807,15716.7081,0,,,,2,,,,2,16727.29577,13970.75769,19483.83385,,,,,2,14308.82035,12538.38722,16079.25348,,,,,2,,0.233,,,0.202,0.268,4.86963709,,,3.898924023,5.870575772,5.509891954,,,4.428892398,6.634577664,0.114152592,392,3434,0.103516593,0.12478859,0,,,,,,,0.152135231,0.131138528,0.173131935,0.120481928,0.080048577,0.160915279,0.095139607,0.082062873,0.108216341,,,,,,,0.226,,,0.188,0.269,0.427,,,0.345,0.505,6.6,0.133680742,0.137,,,0.318,,,0.264,0.376,0.55460539,20105,36251,,,0.140018801,,,0.109135655,0.174726857,0.177777778,8,45,0.105224985,0.261788114,860.3,310,36033,,,52.58833196,384,7302,47.32840329,57.84826064,,,,,,,49.93705413,40.96471853,58.90938974,78.29977629,54.53866309,108.8960344,49.89206045,43.1116522,56.6724687,,,,77.62557078,45.21975557,124.2860585,0.169629384,4609,27171,0.149374065,0.189884703,0.000610551,22,36033,,,1637.863636,0.000589656,21,35614,,,1695.904762,0.0014601,52,35614,,,684.8846154,3045,,,,,,,4439,,2831,0.37,,,,,,,0.41,,0.37,0.4,,,,,,0.46,0.32,0.08,0.41,0.815910313,19723,24173,0.793439601,0.838381025,0.464641061,4343,9347,0.395745229,0.533536894,0.029697352,471,15860,,,0.276,2416,,0.159234043,0.392765957,,,,0.733870968,0.553272988,0.914468947,0.502815502,0.409644201,0.595986802,0.856932153,0.666894576,1,0.213706042,0.121745594,0.305666489,5.178508586,85347,16481,4.364574654,5.992442517,0.448894404,3979,8864,0.374098357,0.523690451,16.3738795,59,36033,,,95.4539365,171,179144,81.14682837,109.7610446,,,,,,,78.86435331,56.83848906,106.6016952,,,,113.1806434,93.49605362,132.8652333,,,,8.7,,,,,0,,,,,0.131087514,1790,13655,0.101731226,0.160443802,0.121076233,0.090249493,0.151902973,0.013181985,0.004633724,0.021730245,0.00292933,0.000214817,0.005643843,0.849918812,10992,12933,0.806620294,0.893217331,,,,,,,0.910782866,0.86722524,0.954340491,,,,0.88377043,0.843075568,0.924465291,0.212,,12933,0.165227403,0.258772597,70.44516078,,,69.52539649,71.36492507,,,,,,,67.97497419,66.21656033,69.73338806,,,,70.58528025,69.44285786,71.72770263,,,,726.1800723,917,99473,677.3623637,774.9977809,,,,,,,813.6116167,713.8078941,913.4153393,,,,730.66524,670.3769297,790.9535503,,,,78.78151261,30,38080,53.15355573,112.4655079,,,,,,,142.7099025,84.57893269,225.5431719,,,,58.86392622,30.41584965,102.823433,,,,7.434944238,26,3497,4.856752421,10.89391595,,,,,,,,,,,,,,,,,,,,,,0.15,,,0.129,0.172,0.188,,,0.163,0.214,0.139,,,0.119,0.16,565.9,168,29685,,,0.137,4930,,,,0.133680742,4854.215092,36312,,,27.88285483,30,107593,18.81244507,39.80450903,,,,,,,,,,,,,35.73821756,22.89815033,53.17563487,,,,0.381,,,0.367,0.394,0.218902799,4074,18611,0.191498544,0.246307055,0.064177102,574,8944,0.043921783,0.084432421,0.002835963,101,35614,,,352.6138614,0.9,324.9,361,,,,,,,,3.137375429,,,,,,,2.851923176,2.995402076,3.438749237,2.891726927,,,,,,,2.596376753,2.844736766,3.169019745,0.0235523,,,,,-11888.15,,,,,0.855645064,35582,41585,0.720906638,0.99038349,48245,,,43566.02128,52923.97872,,,,73095,16325.29787,129864.7021,30256,25748.59575,34763.40426,36964,18040.76596,55887.23404,50837,44044.31915,57629.68085,,,,,,,,,,,58.22442869,,,,,0.243424189,,48245,,,9.594417793,22,2293,,,7.99194412,20,250252,4.881687094,12.34290951,,,,,,,20.26917464,11.34450318,33.43092113,,,,,,,,,,19.27764148,32,179144,13.00654376,27.5200319,17.86272496,,,,,,,,,,,,,22.99561391,14.57724663,34.5047116,,,,12.83883356,23,179144,8.138719152,19.26455416,,,,,,,22.53267238,11.64296062,39.36004403,,,,9.803047857,4.89364617,17.5403605,,,,23.57623516,59,250252,17.94732255,30.41162563,,,,,,,22.97173126,13.38187999,36.77996705,,,,26.00136983,18.65903191,35.27379415,,,,,,3500,,,47,-888,0.528172683,14192,26870,,,0.54,,,,,45.10681504,,,,,0.623392913,7952,12756,0.584463871,0.662321955,0.134790986,1609,11937,0.102276167,0.167305806,0.7031201,8969,12756,0.661029098,0.745211103,35614,,,,,0.250744089,8930,35614,,,0.175885888,6264,35614,,,0.292778121,10427,35614,,,0.004998035,178,35614,,,0.011877352,423,35614,,,0.001095075,39,35614,,,0.049250295,1754,35614,,,0.621862189,22147,35614,,,0.009464567,318,33599,0.003008704,0.015920431,0.504183748,17956,35614,,,0.321122176,11641,36251,, -13,301,13301,GA,Warren County,2024,1,13413.73174,142,14107,9594.058967,17233.40451,0,,,,2,,,,2,15038.23322,10414.41367,21014.42361,,,,,2,10652.25179,5671.875446,18215.67497,1,,,,2,,0.257,,,0.224,0.297,4.826442347,,,3.854676497,5.822427463,5.786783787,,,4.625827769,7.035011625,0.129113924,51,395,0.096044644,0.162183204,0,,,,,,,0.172,0.125219435,0.218780565,,,,,,,,,,,,,0.238,,,0.199,0.282,0.431,,,0.345,0.516,7.8,0.012417277,0.136,,,0.351,,,0.295,0.409,0.0063279,33,5215,,,0.121586381,,,0.095175233,0.152266728,0.071428571,1,14,0.003307818,0.237195967,763.4,40,5240,,,28.79841112,29,1007,19.2867479,41.35932218,,,,,,,29.0275762,17.73079766,44.83073716,,,,,,,,,,,,,0.157231086,611,3886,0.134592788,0.179869384,0.000572519,3,5240,,,1746.666667,0.000193986,1,5155,,,5155,0.000387973,2,5155,,,2577.5,2748,,,,,,,4958,,981,0.33,,,,,,,0.25,,0.39,0.43,,,,,,,0.3,,0.5,0.720747562,2661,3692,0.675009508,0.766485617,0.503237743,544,1081,0.401230214,0.605245272,0.037904125,102,2691,,,0.375,388,,0.232021277,0.517978723,,,,,,,0.459972863,0.308368669,0.611577057,,,,0.080139373,0,0.27822171,5.123630769,83259,16250,3.143075911,7.104185628,0.502365185,531,1057,0.365904372,0.638825997,13.35877863,7,5240,,,140.7914764,37,26280,99.13019242,194.0625044,,,,,,,124.7783542,75.12472033,194.8568567,,,,179.3543244,106.2967395,283.4571569,,,,9.6,,,,,1,,,,,0.10619469,240,2260,0.063950677,0.148438704,0.081081081,0.040917458,0.121244704,0.00840708,0,0.026999744,0.015044248,0,0.040876753,0.863522328,1721,1993,0.776375049,0.950669607,,,,,,,,,,,,,0.90819209,0.797365927,1,0.398,,1993,0.284902615,0.511097385,72.59970743,,,69.91898337,75.2804315,,,,,,,70.94402595,67.53611319,74.3519387,,,,74.9512805,70.75352741,79.14903358,,,,656.4355852,142,14107,537.7815437,775.0896266,,,,,,,720.0116482,563.3647709,906.7355094,,,,563.982019,406.4686322,762.33985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.153,,,0.133,0.176,0.194,,,0.168,0.219,0.157,,,0.135,0.179,423.7,19,4484,,,0.136,710,,,,0.012417277,72.4423934,5834,,,,,,,,,,,,,,,,,,,,,,,,,,0.429,,,0.415,0.442,0.189170427,545,2881,0.159383193,0.218957661,0.066417212,71,1069,0.043778915,0.08905551,0.000581959,3,5155,,,1718.333333,,,,,,,,,,,2.296971749,,,,,,,2.2432222,,,2.159874277,,,,,,,2.12196058,,,0.006314122,,,,,-39325.36,,,,,0.880082321,35066,39844,0.481140017,1.279024625,44367,,,38042.57447,50691.42553,,,,,,,39444,30554.29787,48333.70213,,,,58157,52095.89362,64218.10638,,,,,,,,,,,20.83030574,,,,,0.264701242,,44367,,,8.571428571,3,350,,,29.58420741,11,37182,14.76832975,52.93431906,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,40.34210102,15,37182,22.5791677,66.53816059,,,,,,,46.19791185,22.15369443,84.95960474,,,,,,,,,,,,400,,,,,0.640338164,2651,4140,,,0.492,,,,,3.31352853,,,,,0.716195373,1393,1945,0.668524625,0.763866121,0.088672769,155,1748,0.031228809,0.146116729,0.609768638,1186,1945,0.531015755,0.688521521,5155,,,,,0.202327837,1043,5155,,,0.237439379,1224,5155,,,0.555189137,2862,5155,,,0.002521824,13,5155,,,0.007953443,41,5155,,,0,0,5155,,,0.020368574,105,5155,,,0.398254122,2053,5155,,,0.004065041,20,4920,,,0.521629486,2689,5155,,,1,5215,5215,, -13,303,13303,GA,Washington County,2024,1,12215.56477,473,55812,10494.6947,13936.43484,0,,,,2,,,,2,13671.61329,11188.513,16154.71357,,,,,2,10889.47952,8437.77037,13341.18867,,,,,2,,0.238,,,0.207,0.27,4.626797177,,,3.756717626,5.553053672,5.571040862,,,4.510909375,6.714008681,0.102249489,150,1467,0.086745287,0.117753691,0,,,,,,,0.120879121,0.098552959,0.143205283,,,,0.067357513,0.046941666,0.08777336,,,,,,,0.223,,,0.184,0.262,0.427,,,0.352,0.505,7.1,0.129389806,0.116,,,0.328,,,0.275,0.383,0.411697018,8229,19988,,,0.137785416,,,0.109496443,0.170658899,0.25,8,32,0.157795866,0.348940352,687.4,136,19785,,,32.06997085,121,3773,26.35568513,37.78425656,,,,,,,34.57566233,27.28657201,43.21364549,,,,28.00294768,19.81655243,38.43623354,,,,,,,0.147654321,2093,14175,0.127399002,0.16790964,0.000707607,14,19785,,,1413.214286,0.000202655,4,19738,,,4934.5,0.000354646,7,19738,,,2819.714286,1914,,,,,,,1090,,2029,0.41,,,,,,,0.36,,0.44,0.42,,,,,,,0.31,,0.46,0.841959335,11843,14066,0.812699711,0.871218958,0.503943218,2556,5072,0.427966931,0.579919504,0.039041194,272,6967,,,0.301,1264,,0.181851064,0.420148936,,,,,,,0.250474383,0.164978213,0.335970554,0.294736842,0,0.772888225,0.108857336,0,0.224779111,5.491348918,101244,18437,4.304167006,6.678530829,0.468867041,2003,4272,0.388656186,0.549077897,9.097801365,18,19785,,,79.20164739,80,101008,62.80198063,98.57330604,,,,,,,74.44214915,53.18256275,101.3690785,,,,93.59352333,66.86458524,127.4478145,,,,8.3,,,,,0,,,,,0.187823834,1450,7720,0.148044538,0.22760313,0.160737813,0.120992403,0.200483222,0.022020725,0.008533194,0.035508257,0.008290155,0,0.017400256,0.838722716,6225,7422,0.805511196,0.871934237,,,,,,,0.778876024,0.716109544,0.841642503,,,,0.874284351,0.850246834,0.898321868,0.281,,7422,0.220280786,0.341719214,72.46210149,,,71.24137559,73.68282738,,,,,,,71.12632686,69.42154219,72.83111154,,,,73.58189379,71.82692483,75.33686274,,,,632.4135076,473,55812,572.4433236,692.3836916,,,,,,,700.1495904,611.1545136,789.1446671,,,,585.2320523,499.941413,670.5226917,,,,68.12346067,13,19083,36.27287372,116.4931925,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.145,,,0.126,0.165,0.184,,,0.16,0.208,0.149,,,0.129,0.169,291.5,49,16812,,,0.116,2330,,,,0.129389806,2741.381819,21187,,,,,,,,,,,,,,,,,,,,,,,,,,0.404,,,0.389,0.419,0.186106177,1886,10134,0.159893411,0.212318943,0.053141238,225,4234,0.036460387,0.069822089,0.000810619,16,19738,,,1233.625,0.93,206.46,222,,,,,,,,2.665772166,,,,,,,2.380802307,,3.160562889,2.548211305,,,,,,,2.281625408,,3.090024654,0.003440079,,,,,-13807.26,,,,,0.796949189,37094,46545,0.714880953,0.879017425,48462,,,42159.02128,54764.97872,,,,124091,85659.51064,162522.4894,32259,25579.51064,38938.48936,95890,68094.93617,123685.0638,57294,39692.12766,74895.87234,,,,,,,,,,,20.42636115,,,,,0.2423342,,48462,,,11.93755739,13,1089,,,7.028345317,10,142281,3.370364768,12.92537728,,,,,,,,,,,,,,,,,,,12.24958929,12,101008,6.11495084,21.91789893,11.88024711,,,,,,,,,,,,,,,,,,,12.8702677,13,101008,6.852875506,22.00854974,,,,,,,,,,,,,,,,,,,33.03322299,47,142281,24.27156976,43.92718377,,,,,,,35.76016847,23.56617635,52.02916764,,,,33.00166658,20.15827531,50.96839744,,,,,,1800,,,,,0.601717557,9459,15720,,,0.467,,,,,20.83021751,,,,,0.678197354,4921,7256,0.637474746,0.718919962,0.140613424,949,6749,0.099810629,0.181416219,0.768880926,5579,7256,0.729979748,0.807782105,19738,,,,,0.215827338,4260,19738,,,0.179501469,3543,19738,,,0.52715574,10405,19738,,,0.00192522,38,19738,,,0.00658628,130,19738,,,0.000101327,2,19738,,,0.030246226,597,19738,,,0.420761982,8305,19738,,,0.003543849,67,18906,0,0.009327096,0.484750228,9568,19738,,,0.644936962,12891,19988,, -13,305,13305,GA,Wayne County,2024,1,12560.21539,706,84563,11182.79682,13937.63397,0,,,,2,,,,2,16656.26467,12903.28632,20409.24302,,,,,2,12178.97518,10597.35567,13760.59469,,,,,2,,0.218,,,0.188,0.25,4.540796019,,,3.668820229,5.531250243,5.997722415,,,4.930023893,7.1722705,0.101708706,250,2458,0.089759122,0.11365829,0,,,,,,,0.148217636,0.1180524,0.178382872,0.100628931,0.053867435,0.147390427,0.088183422,0.074707728,0.101659115,,,,,,,0.217,,,0.177,0.258,0.392,,,0.317,0.47,7,0.083612761,0.14,,,0.323,,,0.272,0.378,0.543259023,16376,30144,,,0.153159869,,,0.121555259,0.18961978,0.176470588,6,34,0.093514624,0.274869215,595.8,181,30380,,,43.39622642,276,6360,38.27642051,48.51603232,,,,,,,52.54901961,40.72476841,66.73539736,38.83495146,23.72139725,59.97743282,40.93705632,34.83677827,47.03733436,,,,50.78125,27.03887692,86.83748406,0.182436188,4267,23389,0.162180869,0.202691507,0.00036208,11,30380,,,2761.818182,0.000161833,5,30896,,,6179.2,0.0002913,9,30896,,,3432.888889,3536,,,,,,,11389,,2750,0.35,,,,,,,0.29,,0.36,0.4,,,,,,,0.28,,0.42,0.854661205,17318,20263,0.827214902,0.882107509,0.434391534,3284,7560,0.363987067,0.504796002,0.030820492,370,12005,,,0.25,1839,,0.15706383,0.34293617,,,,,,,0.437684584,0.249161116,0.626208051,0.129133858,0,0.288083186,0.201042119,0.128445803,0.273638435,5.301103016,104771,19764,4.267660769,6.334545262,0.345362931,2536,7343,0.260529992,0.430195869,12.5082291,38,30380,,,96.02880864,144,149955,80.34410323,111.7135141,,,,,,,89.17241143,58.25037972,130.6582436,,,,107.835415,88.1262346,127.5445955,,,,8.8,,,,,0,,,,,0.105438931,1105,10480,0.076439553,0.13443831,0.084466019,0.056388917,0.112543122,0.021946565,0.006985268,0.036907862,0.007156489,0,0.018241333,0.770966563,8439,10946,0.712963414,0.828969713,,,,,,,0.864378165,0.790773121,0.93798321,,,,0.813265051,0.757134758,0.869395344,0.328,,10946,0.263725802,0.392274198,71.65860761,,,70.6746064,72.64260882,,,,,,,68.46311639,66.01715823,70.90907456,83.36865581,71.97166132,94.7656503,71.82619614,70.7072901,72.94510218,,,,657.6904988,706,84563,607.7849813,707.5960163,,,,,,,816.6672555,682.3928107,950.9417004,,,,656.5560159,598.9048498,714.2071821,,,,60.24669436,19,31537,36.27244559,94.08267613,,,,,,,167.5552171,83.64296066,299.8025668,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.145,,,0.125,0.166,0.19,,,0.164,0.217,0.129,,,0.111,0.149,423.3,107,25275,,,0.14,4220,,,,0.083612761,2516.660494,30099,,,18.81988265,17,90330,10.96327518,30.13245524,,,,,,,,,,,,,26.53389315,15.45697056,42.48333331,,,,0.371,,,0.358,0.384,0.229645991,3743,16299,0.201050246,0.258241735,0.075993555,566,7448,0.054546747,0.097440364,0.000971,30,30896,,,1029.866667,0.94,317.72,338,,,,,,,,3.036088521,,,,,,,2.527160881,2.810121442,3.316561085,2.901521028,,,,,,,2.380589535,2.99804693,3.156597566,0.035925415,,,,,-6753.027,,,,,0.764409112,40000,52328,0.628009269,0.900808954,51102,,,44701.31915,57502.68085,,,,,,,34408,13025.53192,55790.46809,29667,2719.085106,56614.91489,56383,51826.74468,60939.25532,,,,,,,,,,,29.51908234,,,,,0.22981488,,51102,,,7.865168539,14,1780,,,7.633842733,16,209593,4.363400712,12.39688234,,,,,,,,,,,,,,,,,,,22.13717247,34,149955,15.14180959,31.25108241,22.67346871,,,,,,,,,,,,,26.40112207,17.54335388,38.15697216,,,,18.00540162,27,149955,11.86567312,26.19691404,,,,,,,,,,,,,18.75398522,11.45542139,28.96400914,,,,20.03883718,42,209593,14.44223125,27.08668647,,,,,,,,,,,,,25.42860584,17.99479493,34.90274824,,,,,,3000,,,,,0.576364457,12778,22170,,,0.544,,,,,32.22799781,,,,,0.643760461,6923,10754,0.605741369,0.681779554,0.113712047,1161,10210,0.082035629,0.145388465,0.808350381,8693,10754,0.76095693,0.855743833,30896,,,,,0.241163905,7451,30896,,,0.160603314,4962,30896,,,0.192484464,5947,30896,,,0.006926463,214,30896,,,0.014856292,459,30896,,,0.001165199,36,30896,,,0.067905231,2098,30896,,,0.700576126,21645,30896,,,0.006615562,189,28569,0.001483929,0.011747196,0.489869239,15135,30896,,,0.576300425,17372,30144,, -13,307,13307,GA,Webster County,2024,1,11752.11308,52,6746,7075.539773,18352.38033,1,,,,2,,,,2,18178.86499,9393.284812,31754.81871,1,,,,2,,,,2,,,,2,,0.235,,,0.204,0.267,4.611656902,,,3.82670802,5.471315278,5.673642401,,,4.543056365,6.878976197,0.110236221,14,127,0.055766678,0.164705763,1,,,,,,,0.189655172,0.088762563,0.290547781,,,,,,,,,,,,,0.217,,,0.177,0.259,0.426,,,0.346,0.513,7.8,0.011133161,0.139,,,0.317,,,0.264,0.371,,,2348,,,0.122587958,,,0.096453671,0.152506192,1,2,2,,,211.2,5,2367,,,20.5831904,12,583,10.63563484,35.95469134,,,,,,,,,,,,,,,,,,,,,,0.183323815,321,1751,0.158302538,0.208345092,0.000422476,1,2367,,,2367,0,0,2328,,,-2328,,0,2328,,,,,,,,,,,,,,0.28,,,,,,,,,0.33,0.38,,,,,,,0.2,,0.44,0.811585723,1387,1709,0.704045429,0.919126016,0.474242424,313,660,0.233330529,0.715154319,0.036548223,36,985,,,0.293,119,,0.175042553,0.410957447,,,,,,,0.173184358,0,0.435356989,,,,0.134831461,0,0.370931877,6.199836646,91088,14692,4.007108613,8.392564678,0.346062053,145,419,0.023368239,0.668755866,12.67427123,3,2367,,,101.6816582,13,12785,54.14120056,173.8787323,,,,,,,,,,,,,,,,,,,9.3,,,,,0,,,,,0.103139014,115,1115,0.036967973,0.169310054,0.097132285,0.015498681,0.178765889,0,0,0.029920809,0.00896861,0,0.031648274,0.858037578,822,958,0.775150752,0.940924405,,,,,,,,,,,,,,,,0.482,,958,0.323639454,0.640360546,80.36203275,,,74.07326601,86.65079948,,,,,,,,,,,,,,,,,,,532.3088221,52,6746,378.523609,727.6836833,,,,,,,852.1522494,556.6541413,1248.600485,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.147,,,0.127,0.167,0.188,,,0.164,0.215,0.149,,,0.128,0.169,,,,,,0.139,330,,,,0.011133161,31.16171705,2799,,,,,,,,,,,,,,,,,,,,,,,,,,0.397,,,0.386,0.407,0.214981273,287,1335,0.182811061,0.247151486,0.08428246,37,439,0.059261184,0.109303737,0.000429553,1,2328,,,2328,,,,,,,,,,,2.980534214,,,,,,,,,,2.264840709,,,,,,,,,,0.011771306,,,,,-18412.34,,,,,0.873898692,36799,42109,0.429706567,1.318090816,45987,,,39102.57447,52871.42553,,,,,,,28843,18685.55319,39000.44681,13102,8757.829787,17446.17021,51250,34264.12766,68235.87234,,,,,,,,,,,4.457457755,,,,,0.25537652,,45987,,,22.72727273,1,44,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,200,,,,,0.693266833,1390,2005,,,0.458,,,,,4.474058501,,,,,0.815068493,714,876,0.742780794,0.887356193,0.161892902,130,803,0.01494551,0.308840294,0.700913242,614,876,0.601297414,0.80052907,2328,,,,,0.176546392,411,2328,,,0.256872852,598,2328,,,0.412371134,960,2328,,,0.007302406,17,2328,,,0.006872852,16,2328,,,0,0,2328,,,0.064862543,151,2328,,,0.496563574,1156,2328,,,0.033086635,76,2297,0,0.075565507,0.510738832,1189,2328,,,1,2348,2348,, -13,309,13309,GA,Wheeler County,2024,1,8943.424772,119,21561,6716.422328,11170.42722,0,,,,2,,,,2,9376.296335,5247.841882,15464.7749,1,,,,2,9798.107202,6898.771694,13505.40011,,,,,2,,0.258,,,0.223,0.294,4.835247718,,,3.875251573,5.858637262,5.438384695,,,4.30951287,6.622133125,0.10745614,49,456,0.079030906,0.135881375,0,,,,,,,0.173228347,0.107408558,0.239048135,,,,0.087248322,0.055207563,0.119289082,,,,,,,0.253,,,0.211,0.297,0.435,,,0.351,0.517,7.9,0.03169862,0.122,,,0.348,,,0.293,0.404,0.06170526,461,7471,,,0.154375939,,,0.120677223,0.1901502,0.545454546,6,11,0.400988881,0.66352243,428.3,32,7471,,,45.30201342,54,1192,34.03226676,59.10930067,,,,,,,70.67137809,43.16791373,109.1462117,,,,41.07830552,28.09753057,57.99031076,,,,,,,0.191462168,749,3912,0.166440891,0.216483444,0.000267702,2,7471,,,3735.5,,0,7314,,,,,0,7314,,,,2844,,,,,,,,,2332,0.33,,,,,,,0.47,,0.31,0.35,,,,,,,0.28,,0.36,0.764816361,3665,4792,0.678400555,0.851232167,0.359924918,767,2131,0.141060522,0.578789314,0.050090525,83,1657,,,0.314,365,,0.18412766,0.44387234,,,,,,,0.366946779,0.016399678,0.71749388,,,,0.219945355,0.034870512,0.405020199,5.735869967,77635,13535,4.079955164,7.39178477,0.387043189,466,1204,0.200879106,0.573207273,0,0,7471,,,66.82430349,26,38908,43.65185364,97.9130875,,,,,,,,,,,,,87.5777829,52.72754628,136.7635565,,,,9.1,,,,,0,,,,,0.101408451,180,1775,0.049422977,0.153393925,0.087209302,0.024250966,0.150167639,0.015774648,0,0.045454603,0,0,0.018986146,0.902412281,2469,2736,0.801412903,1,,,,,,,,,,,,,0.773381295,0.657900082,0.888862508,0.484,,2736,0.242632956,0.725367044,76.93807797,,,74.6835725,79.19258343,,,,,,,75.82525659,71.55761511,80.09289808,,,,76.408658,73.57145643,79.24585957,,,,457.2525876,119,21561,373.9594713,540.545704,,,,,,,416.1353672,284.6362831,587.4589752,,,,503.8851169,397.6582544,629.7699406,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.156,,,0.135,0.178,0.181,,,0.157,0.208,0.155,,,0.133,0.177,405.5,27,6659,,,0.122,920,,,,0.03169862,235.2354614,7421,,,,,,,,,,,,,,,,,,,,,,,,,,0.427,,,0.413,0.443,0.239451857,664,2773,0.206090155,0.272813559,0.074318745,90,1211,0.049297468,0.099340021,0.000410172,3,7314,,,2438,0.875,62.125,71,,,0.192961165,159,824,0.160738635,0.225183695,2.804824719,,,,,,,2.719119296,,2.911776558,2.749687753,,,,,,,2.615840179,,2.821510633,0.003497967,,,,,-12689.37,,,,,1.198978434,31689,26430,0.850149665,1.547807203,35952,,,31431.48936,40472.51064,,,,,,,,,,,,,34318,21433.23404,47202.76596,,,,,,,,,,,23.38894246,,,,,0.326657766,,35952,,,5.524861879,2,362,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,31.02812608,17,54789,18.07502687,49.6790356,,,,,,,,,,,,,48.98758981,27.41798215,80.79757959,,,,,,500,,,,,0.350460123,2285,6520,,,0.345,,,,,8.657933769,,,,,0.683782091,1092,1597,0.590321678,0.777242505,0.136710618,197,1441,0.052613796,0.220807439,0.685660614,1095,1597,0.568421378,0.80289985,7314,,,,,0.160514083,1174,7314,,,0.164479081,1203,7314,,,0.365736943,2675,7314,,,0.001914137,14,7314,,,0.003828275,28,7314,,,0.000410172,3,7314,,,0.059748428,437,7314,,,0.554963085,4059,7314,,,0.001774018,13,7328,0,0.012699312,0.359037462,2626,7314,,,1,7471,7471,, -13,311,13311,GA,White County,2024,1,10325.91576,540,81585,8864.298918,11787.5326,0,,,,2,,,,2,,,,2,,,,2,10657.19373,9084.640052,12229.7474,,,,,2,,0.155,,,0.128,0.187,3.942301047,,,3.082853069,4.919119772,5.342310188,,,4.289388497,6.511819846,0.065495208,123,1878,0.054305885,0.076684531,0,,,,,,,,,,,,,0.067058824,0.055168691,0.078948956,,,,,,,0.173,,,0.134,0.217,0.314,,,0.24,0.392,,,0.114,,,0.236,,,0.19,0.29,0.686569296,19226,28003,,,0.162514667,,,0.128882919,0.200922571,0.064516129,2,31,0.01149928,0.164189889,161.7,46,28442,,,18.72492198,126,6729,15.45535066,21.9944933,,,,,,,,,,,,,19.55213904,16.00925109,23.09502699,,,,,,,0.182743012,3916,21429,0.161296203,0.20418982,0.000140637,4,28442,,,7110.5,0.00034715,10,28806,,,2880.6,0.00097202,28,28806,,,1028.785714,4261,,,,,,,,,4165,0.44,,,,,,,,,0.44,0.45,,,,,,,,,0.46,0.856239333,17058,19922,0.823496338,0.888982329,0.564380686,3226,5716,0.469522651,0.659238721,0.023861299,406,17015,,,0.171,925,,0.109042553,0.232957447,,,,,,,,,,0.670807453,0.305773955,1,0.215554057,0.134087238,0.297020876,3.68642245,111400,30219,3.048381262,4.324463637,0.24944731,1354,5428,0.155572182,0.343322439,9.84459602,28,28442,,,86.80729448,130,149757,71.88482787,101.7297611,,,,,,,,,,,,,91.45080165,75.48251516,107.4190881,,,,8.3,,,,,0,,,,,0.115565032,1355,11725,0.078975137,0.152154927,0.092440605,0.057100015,0.127781194,0.025159915,0.009742578,0.040577251,0.005458422,0,0.011986612,0.797243148,9948,12478,0.749051637,0.845434659,,,,,,,,,,,,,0.772864998,0.712290482,0.833439515,0.405,,12478,0.336709883,0.473290117,75.64628154,,,74.53413825,76.75842483,,,,,,,,,,,,,75.29487892,74.12035346,76.46940439,,,,461.5626389,540,81585,418.3368754,504.7884024,,,,,,,,,,,,,471.0960197,425.804895,516.3871444,,,,51.79813527,14,27028,28.31852256,86.90846945,,,,,,,,,,,,,59.53646609,32.54914002,99.89207366,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.118,,,0.1,0.139,0.17,,,0.146,0.197,0.095,,,0.08,0.112,64.9,16,24670,,,0.114,3170,,,,,,27144,,,29.88907831,27,90334,19.69709094,43.4870397,,,,,,,,,,,,,28.90103803,18.5174404,43.00245369,,,,0.336,,,0.319,0.355,0.213745748,3393,15874,0.186341492,0.241150003,0.097165301,569,5856,0.069761045,0.124569556,0.0006943,20,28806,,,1440.3,0.94,256.62,273,,,,,,,,3.386172226,,,,,,,,,3.391349285,3.253051503,,,,,,,,,3.226597866,0.050669056,,,,,990.6475,,,,,0.748463086,40542,54167,0.584230504,0.912695669,62100,,,53735.74468,70464.25532,,,,,,,44527,42519.34043,46534.65957,82143,872.7021277,163413.2979,66958,58930.93617,74985.06383,,,,,,,,,,,71.05490936,,,,,0.189114332,,62100,,,13.37295691,18,1346,,,,,,,,,,,,,,,,,,,,,,,,,,26.55465538,38,149757,18.3898708,37.10746926,25.37443993,,,,,,,,,,,,,28.8977929,19.89191096,40.58324532,,,,19.36470415,29,149757,12.96884629,27.81094536,,,,,,,,,,,,,21.04820038,14.09631013,30.22872676,,,,20.29377658,42,206960,14.62596914,27.43129048,,,,,,,,,,,,,20.46846544,14.55507985,27.98106607,,,,,,2600,,,,,0.610843125,14816,24255,,,0.532,,,,,9.893405248,,,,,0.755897138,7819,10344,0.709769404,0.802024873,0.092978745,923,9927,0.059525976,0.126431514,0.839423821,8683,10344,0.809264958,0.869582684,28806,,,,,0.190585295,5490,28806,,,0.233388877,6723,28806,,,0.020342984,586,28806,,,0.006109838,176,28806,,,0.006144553,177,28806,,,0.001006735,29,28806,,,0.036346595,1047,28806,,,0.91526071,26365,28806,,,0.001829997,49,26776,0,0.006389281,0.507047143,14606,28806,,,1,28003,28003,, -13,313,13313,GA,Whitfield County,2024,1,8966.86512,1596,292094,8338.397314,9595.332927,0,,,,2,,,,2,13583.20939,9658.989721,18568.6944,,4264.283026,3544.389243,4984.176809,,11613.8329,10593.04614,12634.61965,,,,,2,,0.212,,,0.182,0.245,4.427366208,,,3.57293512,5.408983493,5.206968355,,,4.221926144,6.276802946,0.076107368,689,9053,0.070644963,0.081569773,0,,,,0.137614679,0.072941251,0.202288107,0.146788991,0.099810096,0.193767885,0.067126437,0.059689919,0.074562955,0.080522565,0.072303085,0.088742046,,,,,,,0.193,,,0.157,0.23,0.366,,,0.299,0.436,7.1,0.133942942,0.112,,,0.319,,,0.27,0.374,0.74401151,76532,102864,,,0.152286184,,,0.122219679,0.187599249,0.071428571,6,84,0.032863265,0.125574624,489.1,503,102848,,,28.47525825,736,25847,26.41801884,30.53249766,,,,,,,18.53997683,10.59719867,30.10776083,26.8617433,24.03539599,29.68809062,30.69742393,27.44396784,33.95088002,,,,46.93877551,29.75515722,70.43120999,0.234279123,20312,86700,0.212832315,0.255725932,0.00053477,55,102848,,,1869.963636,0.00044603,46,103132,,,2242,0.001347787,139,103132,,,741.9568345,3472,,,,,,,5483,1999,3569,0.39,,,,,,0.4,0.5,0.22,0.4,0.44,,,,,,0.49,0.34,0.28,0.45,0.742768595,49611,66792,0.724325978,0.761211212,0.454133932,12139,26730,0.409640452,0.498627412,0.037928316,1636,43134,,,0.171,4320,,0.116191489,0.225808511,0.474184783,0.033735388,0.914634177,0.328042328,0,0.817462838,0.191268191,0,0.396559549,0.282593593,0.214005452,0.351181735,0.127287262,0.088840832,0.165733693,3.976192186,110729,27848,3.587024749,4.365359623,0.285277948,7472,26192,0.235420672,0.335135223,9.334163037,96,102848,,,65.38046624,340,520033,58.43078915,72.33014333,,,,,,,69.63415287,37.07725369,119.0765221,24.34545137,17.82393021,32.47342044,93.79191641,82.7861731,104.7976597,,,,9.4,,,,,0,,,,,0.139659434,5085,36410,0.118852586,0.160466283,0.087034981,0.070133834,0.103936127,0.052046141,0.038989267,0.065103016,0.00755287,0.003206314,0.011899427,0.839739095,39524,47067,0.819511484,0.859966707,,,,0.816006601,0.685583918,0.946429284,0.912980068,0.845743203,0.980216933,0.81207352,0.775139477,0.849007562,0.878431261,0.864531016,0.892331507,0.224,,47067,0.197517826,0.250482175,75.70350209,,,75.15873868,76.24826549,,,,,,,71.23493987,68.21346286,74.25641689,86.34524821,82.79071284,89.89978359,73.5335146,72.79926799,74.26776121,,,,470.4184532,1596,292094,446.9588429,493.8780635,,,,,,,679.3609936,542.6494324,840.0403893,201.8688535,168.0280144,235.7096926,570.9629217,538.1339807,603.7918627,,,,45.91602469,54,117606,34.49353092,59.91045218,,,,,,,,,,37.22630208,23.32952532,56.36106871,49.4961294,32.03128521,73.066051,,,,5.284158309,49,9273,3.909249407,6.985937517,,,,,,,,,,,,,5.974264706,3.902588055,8.753682004,,,,,,,0.14,,,0.122,0.161,0.175,,,0.15,0.2,0.124,,,0.107,0.144,167.1,142,84996,,,0.112,11540,,,,0.133942942,13742.41194,102599,,,19.59442747,61,311313,14.98818442,25.16986182,,,,,,,,,,,,,28.89174659,21.51180304,37.98731107,,,,0.38,,,0.367,0.394,0.291282118,17832,61219,0.262686374,0.319877863,0.101248421,2725,26914,0.075035655,0.127461187,0.001784121,184,103132,,,560.5,0.863006452,1337.66,1550,,,0.082766825,487,5884,0.045334746,0.120198905,2.894763009,,,,,,3.630374892,2.814068279,2.703031469,3.126040085,2.748195864,,,,,,3.725949083,2.45867298,2.583459596,2.945623891,0.142813291,,,,,-3753.7805,,,,,0.813001074,35594,43781,0.750326108,0.875676039,61680,,,54783.65957,68576.34043,,,,50096,16716.42553,83475.57447,41771,29397.38298,54144.61702,67578,58153.31915,77002.68085,57401,53537,61265,,,,,,,,,,,39.02598946,,,,,0.243304151,,61680,,,8.185538881,54,6597,,,2.058070518,15,728838,1.151886446,3.394474337,,,,,,,,,,,,,3.086529672,1.643447058,5.278059741,,,,14.63850632,75,520033,11.45372964,18.43477604,14.42216167,,,,,,,,,,,,,20.84549869,15.74646569,27.06961395,,,,11.34543385,59,520033,8.636669909,14.63478306,,,,,,,,,,,,,16.13624368,11.89759228,21.39431809,,,,13.85767482,101,728838,11.15505006,16.56029958,,,,,,,,,,9.606369407,6.216735774,14.18089627,16.3823498,12.74644599,20.73291216,,,,17.32142857,,11200,,,145,49,0.567374353,36746,64765,,,0.565,,,,,61.26570256,,,,,0.679023382,24307,35797,0.661755668,0.696291096,0.091798843,3189,34739,0.074382491,0.109215194,0.864066821,30931,35797,0.847395167,0.880738475,103132,,,,,0.248681302,25647,103132,,,0.147878447,15251,103132,,,0.035507893,3662,103132,,,0.015223209,1570,103132,,,0.01711399,1765,103132,,,0.002637397,272,103132,,,0.37668231,38848,103132,,,0.55688826,57433,103132,,,0.077913469,7522,96543,0.064891866,0.090935071,0.499350347,51499,103132,,,0.348926738,35892,102864,, -13,315,13315,GA,Wilcox County,2024,1,13429.07753,235,23736,10857.65496,16000.50009,0,,,,2,,,,2,15887.82813,11297.79893,21719.18407,,,,,2,12308.23806,9251.566001,15364.91013,,,,,2,,0.241,,,0.21,0.276,4.663480026,,,3.769200857,5.653724882,5.444195339,,,4.363669561,6.603451767,0.126079447,73,579,0.099041426,0.153117469,0,,,,,,,0.19,0.135629869,0.244370132,,,,0.090634441,0.059706005,0.121562877,,,,,,,0.236,,,0.197,0.28,0.409,,,0.33,0.493,7.5,0.051234105,0.132,,,0.325,,,0.276,0.38,,,8766,,,0.145605152,,,0.115788897,0.180685564,0.222222222,2,9,0.058854756,0.422872156,595,52,8739,,,44.44444444,62,1395,34.07530071,56.97577195,,,,,,,61.32075472,40.05675287,89.8491134,,,,39.408867,26.95563585,55.63356167,,,,,,,0.157320574,822,5225,0.137065255,0.177575893,0.00011443,1,8739,,,8739,0.000342427,3,8761,,,2920.333333,0.000228284,2,8761,,,4380.5,5430,,,,,,,3085,,5362,0.35,,,,,,,0.28,,0.36,0.27,,,,,,,0.17,,0.29,0.804377987,5218,6487,0.776931818,0.831824156,0.341112408,877,2571,0.292285884,0.389938931,0.037009346,99,2675,,,0.309,497,,0.186276596,0.431723404,,,,,,,0.700913242,0.523060755,0.878765729,,,,0.168049793,0.089048446,0.247051139,5.35906321,89700,16738,4.101372709,6.61675371,0.40302267,640,1588,0.326282589,0.479762751,4.577182744,4,8739,,,91.97939662,40,43488,65.71142946,125.2498321,,,,,,,,,,,,,117.1234481,79.02269861,167.2010049,,,,9.4,,,,,0,,,,,0.100393701,255,2540,0.067192546,0.133594855,0.084710744,0.042842332,0.126579156,0.013385827,0,0.031796038,0.005905512,0,0.01851946,0.839831402,2391,2847,0.771097121,0.908565682,,,,,,,,,,,,,0.800980392,0.700822522,0.901138262,0.323,,2847,0.242426771,0.403573229,71.26476897,,,69.41051351,73.11902443,,,,,,,70.06624077,66.26226038,73.87022117,,,,71.87873838,69.77083856,73.9866382,,,,747.2597728,235,23736,649.1865909,845.3329547,,,,,,,789.0368972,615.0929705,996.9006515,,,,736.5886445,614.7844646,858.3928244,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.15,,,0.132,0.171,0.183,,,0.159,0.209,0.147,,,0.128,0.168,737.2,56,7596,,,0.132,1170,,,,0.051234105,474.1716408,9255,,,,,,,,,,,,,,,,,,,,,,,,,,0.412,,,0.397,0.425,0.199560198,726,3638,0.172155943,0.226964453,0.062312762,104,1669,0.042057443,0.082568081,0.000456569,4,8761,,,2190.25,0.975,80.925,83,,,,,,,,2.847259517,,,,,,,2.521826362,,3.026493203,2.992878571,,,,,,,2.599046072,,3.192574109,0.011169445,,,,,-8929.859,,,,,0.884527777,36891,41707,0.594287343,1.174768211,44905,,,38955.89362,50854.10638,,,,,,,26838,22877.48936,30798.51064,86219,85239.59575,87198.40426,57857,43747.38298,71966.61702,,,,,,,,,,,22.97829401,,,,,0.261529896,,44905,,,6.787330317,3,442,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,600,,,,,0.481438004,3281,6815,,,0.412,,,,,7.099660091,,,,,0.736294518,1840,2499,0.684365489,0.788223547,0.080875782,181,2238,0.035676366,0.126075198,0.696678672,1741,2499,0.635425897,0.757931446,8761,,,,,0.186622532,1635,8761,,,0.202944869,1778,8761,,,0.330213446,2893,8761,,,0.003195982,28,8761,,,0.009017236,79,8761,,,0.000228284,2,8761,,,0.04828216,423,8761,,,0.596393106,5225,8761,,,0.031305585,264,8433,0.008169041,0.054442129,0.40132405,3516,8761,,,1,8766,8766,, -13,317,13317,GA,Wilkes County,2024,1,12505.95558,232,25768,9888.251004,15123.66015,0,,,,2,,,,2,14840.21437,10649.59405,20132.42649,,,,,2,12549.74839,8693.765141,16405.73164,,,,,2,,0.229,,,0.199,0.263,4.5335034,,,3.66471318,5.510921971,5.619334967,,,4.511023228,6.798883826,0.101208459,67,662,0.078232959,0.124183959,0,,,,,,,0.149305556,0.10814468,0.190466432,,,,0.064516129,0.037168006,0.091864252,,,,,,,0.217,,,0.179,0.259,0.418,,,0.336,0.504,7.4,0.068096726,0.129,,,0.316,,,0.265,0.371,0.643596445,6156,9565,,,0.129931962,,,0.102482226,0.160978228,0.083333333,1,12,0.004083139,0.26580258,662.3,63,9513,,,26.62721894,54,2028,20.00318638,34.74274477,,,,,,,27.6854928,17.91659119,40.86924883,,,,27.8551532,17.01465123,43.02002493,,,,,,,0.185911092,1309,7041,0.163272794,0.20854939,0.000420477,4,9513,,,2378.25,0.000208355,2,9599,,,4799.5,0.000208355,2,9599,,,4799.5,2584,,,,,,,2308,,1931,0.38,,,,,,,0.33,,0.39,0.42,,,,,,,0.31,,0.45,0.826229508,5796,7015,0.78168232,0.870776696,0.378365831,815,2154,0.285056975,0.471674687,0.040529587,150,3701,,,0.282,550,,0.17,0.394,,,,,,,0.338407494,0.152216412,0.524598577,,,,0.12267658,0.026453575,0.218899585,4.616268211,98862,21416,3.578652659,5.653883763,0.35501765,704,1983,0.215018706,0.495016594,9.460737938,9,9513,,,82.04791598,40,48752,58.61623409,111.7259743,,,,,,,81.23064426,46.4303318,131.9134772,,,,95.98464246,61.49917155,142.8175396,,,,9.5,,,,,0,,,,,0.15309842,630,4115,0.108543919,0.197652922,0.141809291,0.095490059,0.188128523,0.010935602,0,0.022964429,0.002430134,0,0.009845301,0.85156452,3293,3867,0.809612718,0.893516322,,,,,,,0.635327635,0.565130607,0.705524664,,,,0.8647343,0.82936829,0.900100309,0.405,,3867,0.317654809,0.492345191,73.17729046,,,71.32087867,75.03370226,,,,,,,71.4374324,68.34880757,74.52605722,,,,73.29284745,70.70259936,75.88309553,,,,611.0065475,232,25768,524.3945793,697.6185156,,,,,,,674.0493839,536.0914784,836.6730136,,,,618.6273378,496.4294298,740.8252458,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.144,,,0.125,0.165,0.186,,,0.163,0.213,0.14,,,0.121,0.161,330.7,27,8164,,,0.129,1240,,,,0.068096726,721.3486208,10593,,,,,,,,,,,,,,,,,,,,,,,,,,0.41,,,0.397,0.422,0.222416133,1147,5157,0.193820389,0.251011878,0.087657431,174,1985,0.060253175,0.115061686,0.000208355,2,9599,,,4799.5,0.825,84.975,103,,,,,,,,2.80957903,,,,,,,2.521999301,,3.227326306,2.801158471,,,,,,,2.540417957,,3.279001369,0.006075673,,,,,-13913.21,,,,,0.867721385,36912,42539,0.499668403,1.235774367,47377,,,40902.44681,53851.55319,,,,,,,38203,20953.80851,55452.19149,,,,64236,56338.80851,72133.19149,,,,,,,,,,,26.3084641,,,,,0.247883994,,47377,,,7.677543186,4,521,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20.46065708,14,68424,11.18603162,34.32950591,,,,,,,,,,,,,,,,,,,,,800,,,,,0.669194943,5029,7515,,,0.446,,,,,5.799430415,,,,,0.657242064,2650,4032,0.605387034,0.709097093,0.121734297,438,3598,0.06469784,0.178770754,0.52827381,2130,4032,0.455873509,0.60067411,9599,,,,,0.206688197,1984,9599,,,0.2367955,2273,9599,,,0.387644546,3721,9599,,,0.002812793,27,9599,,,0.012084592,116,9599,,,0.000625065,6,9599,,,0.060422961,580,9599,,,0.515991249,4953,9599,,,0.012982726,118,9089,0,0.027039701,0.515053651,4944,9599,,,1,9565,9565,, -13,319,13319,GA,Wilkinson County,2024,1,14701.11342,260,24235,11889.88309,17512.34375,0,,,,2,,,,2,13694.51114,9642.199646,18876.07968,,,,,2,16127.91222,12148.45049,20107.37395,,,,,2,,0.232,,,0.202,0.265,4.64332074,,,3.765920126,5.649185534,5.763745608,,,4.651418954,6.988492181,0.125984252,96,762,0.10242311,0.149545394,0,,,,,,,0.2,0.152287279,0.247712721,,,,0.081264108,0.055819315,0.106708902,,,,,,,0.228,,,0.189,0.269,0.41,,,0.327,0.493,6.9,0.114165,0.131,,,0.326,,,0.274,0.381,,,8877,,,0.133833389,,,0.106149024,0.167090972,0.363636364,8,22,0.250508545,0.473251594,724.7,64,8831,,,35.67787972,70,1962,27.81265755,45.07685465,,,,,,,28.60858258,17.92884639,43.31373783,,,,43.73177843,31.89825927,58.51656025,,,,,,,0.179559237,1214,6761,0.158112428,0.201006045,0.000339712,3,8831,,,2943.666667,0.000115194,1,8681,,,8681,0.000460776,4,8681,,,2170.25,3711,,,,,,,2917,,3209,0.47,,,,,,,0.44,,0.48,0.36,,,,,,,0.29,,0.37,0.893825547,5472,6122,0.862587838,0.925063256,0.536180905,1067,1990,0.427950904,0.644410905,0.032854209,128,3896,,,0.263,492,,0.152191489,0.373808511,,,,,,,0.499363057,0.377675817,0.621050298,0.588235294,0.093627127,1,0.215526047,0.094733476,0.336318618,5.739863231,83096,14477,4.478991108,7.000735355,0.426344897,848,1989,0.314438162,0.538251632,11.3237459,10,8831,,,103.157517,46,44592,75.5242676,137.5976716,,,,,,,59.30846332,28.44071346,109.0703757,,,,138.0180607,96.13463623,191.9497116,,,,9.8,,,,,0,,,,,0.163636364,540,3300,0.117947189,0.209325539,0.141230769,0.093446598,0.189014941,0.022424242,0.003882311,0.040966174,0.002424242,0,0.005049093,0.864128753,2792,3231,0.810879508,0.917377998,,,,,,,0.886287625,0.759567877,1,,,,0.866270431,0.771676381,0.960864481,0.415,,3231,0.331570217,0.498429783,70.78311998,,,68.92904452,72.63719544,,,,,,,71.95687538,68.76345567,75.15029508,,,,69.64395276,67.20094753,72.08695799,,,,749.0939572,260,24235,650.7138064,847.4741079,,,,,,,706.6338518,559.448675,880.6766171,,,,801.2080403,665.9763195,936.4397612,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.146,,,0.128,0.167,0.191,,,0.167,0.217,0.142,,,0.122,0.163,160,12,7502,,,0.131,1170,,,,0.114165,1091.759895,9563,,,,,,,,,,,,,,,,,,,,,,,,,,0.398,,,0.384,0.41,0.218564711,1069,4891,0.189968966,0.247160455,0.080121704,158,1972,0.055100427,0.10514298,0.000575971,5,8681,,,1736.2,0.925,91.575,99,,,,,,,,2.62275084,,,,,,,2.546070644,,2.992649897,2.744423859,,,,,,,2.539513167,,3.196554308,0.006031669,,,,,-14228.66,,,,,0.85676587,35064,40926,0.569973543,1.143558197,49648,,,43322.38298,55973.61702,,,,,,,31875,27564.19149,36185.80851,48182,13881.40426,82482.59575,49188,37979.65957,60396.34043,,,,,,,,,,,16.91529577,,,,,0.236545279,,49648,,,13.69863014,7,511,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,24.6681019,11,44592,12.31422759,44.13804833,,,,,,,,,,,,,,,,,,,39.77661453,25,62851,25.74132766,58.7181297,,,,,,,,,,,,,56.03496582,34.22761287,86.54146,,,,,,800,,,,,0.708240535,4770,6735,,,0.479,,,,,6.445181899,,,,,0.803199517,2661,3313,0.768854443,0.837544591,0.138558201,419,3024,0.087990504,0.189125898,0.732568669,2427,3313,0.689266565,0.775870773,8681,,,,,0.218983988,1901,8681,,,0.214376224,1861,8681,,,0.362861422,3150,8681,,,0.006681258,58,8681,,,0.004953346,43,8681,,,0.000230388,2,8681,,,0.033060707,287,8681,,,0.576316093,5003,8681,,,0.007181329,60,8355,0,0.019160395,0.518143071,4498,8681,,,1,8877,8877,, -13,321,13321,GA,Worth County,2024,1,11819.85884,463,55699,10079.214,13560.50368,0,,,,2,,,,2,14345.12133,10935.51701,17754.72566,,,,,2,11517.52298,9294.971598,13740.07435,,,,,2,,0.207,,,0.179,0.236,4.429975256,,,3.552199159,5.359380451,5.821347567,,,4.683802188,6.982208662,0.120805369,162,1341,0.103362123,0.138248616,0,,,,,,,0.154786151,0.122792435,0.186779866,,,,0.098717949,0.077784673,0.119651224,,,,,,,0.209,,,0.171,0.246,0.376,,,0.3,0.461,8.1,0.010400151,0.127,,,0.304,,,0.255,0.357,0.375721709,7809,20784,,,0.146489001,,,0.115875156,0.182635401,0.113636364,5,44,0.050780815,0.197540846,408.7,84,20554,,,29.16666667,126,4320,24.07385522,34.25947811,,,,,,,47.95597484,36.68252088,61.60145591,,,,20.2020202,15.26038896,26.23400361,,,,,,,0.15242954,2450,16073,0.132174221,0.172684859,0.000291914,6,20554,,,3425.666667,0.000097924,2,20424,,,10212,0.000097924,2,20424,,,10212,4223,,,,,,,1268,,4464,0.45,,,,,,,0.5,,0.44,0.3,,,,,,,0.2,,0.31,0.854532872,12348,14450,0.828257877,0.880807867,0.43009182,2061,4792,0.350607076,0.509576563,0.031239272,273,8739,,,0.324,1421,,0.225106383,0.422893617,,,,,,,0.549485352,0.428782356,0.670188349,0.120218579,0,0.488570866,0.181782946,0.100129398,0.263436494,4.538577978,104941,23122,3.7113905,5.365765455,0.403867043,1859,4603,0.310205912,0.497528175,8.270896176,17,20554,,,95.46774273,97,101605,77.41790815,116.46255,,,,,,,66.99576869,40.33582921,104.6221917,,,,110.8841552,87.36410253,138.7880551,,,,9.7,,,,,0,,,,,0.112781955,900,7980,0.078838481,0.146725429,0.100378788,0.06860232,0.132155256,0.006892231,0,0.016305254,0.010651629,0.000734438,0.02056882,0.839842392,7247,8629,0.803388842,0.876295942,,,,,,,0.668820679,0.536538619,0.801102738,,,,0.813620072,0.757247893,0.86999225,0.431,,8629,0.358671591,0.50332841,73.31907011,,,72.04141532,74.5967249,,,,,,,71.11230838,68.82466386,73.3999529,,,,73.48072178,71.85174902,75.10969453,,,,589.1759573,463,55699,531.6473438,646.7045709,,,,,,,713.3200204,588.9947581,837.6452826,,,,563.1774223,495.6143108,630.7405339,,,,76.83638971,15,19522,43.00474405,126.7299399,,,,,,,,,,,,,100.8149206,52.09254061,176.1033777,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.136,,,0.119,0.155,0.189,,,0.165,0.215,0.123,,,0.106,0.142,360.4,63,17483,,,0.127,2650,,,,0.010400151,225.4648657,21679,,,19.74561072,12,60773,10.20284519,34.4916082,,,,,,,,,,,,,29.34774634,15.16440879,51.26460674,,,,0.378,,,0.365,0.39,0.187983343,2212,11767,0.160579088,0.215387599,0.057395144,260,4530,0.039522803,0.075267484,0.00073443,15,20424,,,1361.6,0.875,165.375,189,,,,,,,,3.216850296,,,,,,,2.931992235,,3.409505587,3.008204217,,,,,,,2.652380284,,3.241367268,0.004182994,,,,,-6341.785,,,,,0.787385292,36552,46422,0.646485485,0.928285098,48956,,,41773.70213,56138.29787,10625,1636.404255,19613.59575,,,,40614,33644.97872,47583.02128,30575,20517.6383,40632.3617,64535,58124.78723,70945.21277,,,,,,,,,,,35.84153434,,,,,0.23988888,,48956,,,6.855184233,8,1167,,,,,,,,,,,,,,,,,,,,,,,,,,22.11034406,25,101605,14.01606149,33.17637217,24.60508833,,,,,,,,,,,,,31.91068709,19.9982577,48.31316374,,,,23.6208848,24,101605,15.13434659,35.14600423,,,,,,,,,,,,,30.6390429,18.96605046,46.83503171,,,,33.55423203,48,143052,24.74024189,44.48804364,,,,,,,32.45051297,17.27853147,55.49136546,,,,34.20008084,23.541762,48.02962895,,,,,,1800,,,,,0.591778203,9285,15690,,,0.523,,,,,20.99876113,,,,,0.726190476,5734,7896,0.68584583,0.766535123,0.114977507,869,7558,0.080425912,0.149529102,0.722517731,5705,7896,0.680911018,0.764124443,20424,,,,,0.217783,4448,20424,,,0.203975715,4166,20424,,,0.277516647,5668,20424,,,0.00342734,70,20424,,,0.008078731,165,20424,,,0.000930278,19,20424,,,0.029426165,601,20424,,,0.666715629,13617,20424,,,0.007740811,151,19507,0,0.016672036,0.520221308,10625,20424,,,0.704291763,14638,20784,, -15,000,15000,HI,Hawaii,2024,,6148.110563,15595,3908019,6000.026595,6296.194532,0,7814.672199,5007.007933,11627.61279,1,3495.324734,3299.300847,3691.348621,,5782.285804,4750.767967,6813.803641,,6885.325634,6420.445102,7350.206167,,5346.91258,5051.076021,5642.749139,,9574.497403,9001.001313,10147.99349,,,0.112,,,0.103,0.122,2.331640201,,,2.119048269,2.544232134,3.706008103,,,3.450614959,3.961401246,0.084589572,9831,116220,0.082989712,0.086189432,0,0.117073171,0.073061264,0.161085078,0.106308924,0.102797041,0.109820808,0.108225108,0.096659963,0.119790254,0.079472693,0.075584014,0.083361372,0.055661592,0.052667764,0.058655419,0.090771827,0.085465205,0.096078449,0.081980493,0.078919712,0.085041274,0.104,,,0.094,0.115,0.259,,,0.245,0.274,7.4,0.0535784,0.119,,,0.193,,,0.18,0.206,0.917395454,1335059,1455271,,,0.200070049,,,0.186835966,0.213994846,0.334637965,171,511,0.31290567,0.356437288,421.6,6078,1441553,,,15.48637744,4034,260487,15.00847641,15.96427847,,,,4.517152973,4.031977595,5.002328351,9.00024325,6.337001841,12.40564976,26.25955771,24.64800916,27.87110625,9.939276759,8.86525543,11.01329809,24.7154267,22.98754936,26.44330405,19.09082799,18.12405406,20.05760192,0.04408852,53490,1213241,0.040514052,0.047662988,0.0008914,1285,1441553,,,1121.831128,0.000899878,1296,1440196,,,1111.262346,0.002985705,4300,1440196,,,334.9293023,1541,,,,,2262,1553,1366,2636,1525,0.4,,,,,,0.43,0.29,0.29,0.35,0.47,,,,,0.57,0.52,0.28,0.33,0.39,0.92705048,947936,1022529,0.924472763,0.929628196,0.692430624,268634,387958,0.680947796,0.703913452,0.034928338,23622,676299,,,0.121,34939,,0.106702128,0.135297872,0.178396072,0.012886519,0.343905625,0.135476787,0.122663912,0.148289662,0.04129084,0.017658629,0.064923051,0.137979694,0.118454076,0.157505311,0.090627844,0.073284873,0.107970814,4.405471229,179078,40649,4.296264902,4.514677557,0.218413185,66407,304043,0.206908649,0.229917721,6.499934446,937,1441553,,,63.53638544,4519,7112460,61.6838889,65.38888198,66.36140421,31.82287276,122.0409851,49.59050909,46.86950434,52.31151385,43.99757653,33.65465982,56.51672767,51.27716679,46.20744862,56.34688496,78.90154479,74.46125641,83.34183318,55.87704102,50.25142785,61.5026542,3.6,,,,,,,,,,0.256683692,120110,467930,0.250798918,0.262568466,0.169808466,0.164419605,0.175197326,0.086904024,0.083230682,0.090577366,0.019479409,0.017590849,0.021367969,0.665070582,468497,704432,0.658760814,0.671380349,0.691315137,0.566295084,0.816335189,0.657928595,0.650063422,0.665793768,0.704497292,0.66551449,0.743480095,0.661395322,0.645933008,0.676857636,0.661750431,0.646978975,0.676521887,0.407,,704432,0.397847997,0.416152003,81.78122761,,,81.61415189,81.94830334,83.51749932,77.12579526,89.90920338,85.45885389,85.21993133,85.69777644,82.40817308,80.11654455,84.69980161,76.61467253,76.13648147,77.09286359,81.96794532,81.6384231,82.29746754,84.98173433,83.52675073,86.43671793,301.916151,15595,3908019,296.9595082,306.8727939,365.7984609,257.5558744,504.2049933,187.6529551,181.5571502,193.7487599,301.9206238,259.7644593,344.0767883,355.777976,334.5959377,376.9600144,278.3138534,268.5902435,288.0374634,453.9983574,433.3922625,474.6044522,44.64744384,591,1323704,41.04780499,48.24708269,,,,26.2736997,20.83340983,32.69989358,95.8053901,60.73239904,143.7551252,48.43299094,39.76722933,57.09875255,33.31363172,25.54137042,42.70657239,53.53390704,42.44905887,66.62758132,5.555089368,662,119170,5.131916196,5.97826254,,,,3.009191116,2.425832753,3.690505773,11.7932709,8.167182929,16.47991401,7.821707918,6.552942778,9.090473058,2.986093337,2.32780625,3.772749289,5.577828133,4.295607334,7.122762002,7.796900257,6.822560337,8.771240176,0.06705478,,,0.05936147,0.075664946,0.112765736,,,0.102719522,0.123659085,0.081,,,0.073,0.089,195.6,2384,1218619,,,0.119,170970,,,,0.0535784,72882.75152,1360301,,,18.40808305,785,4264431,17.12033824,19.69582786,,,,9.001017506,7.499231219,10.50280379,,,,19.7874569,15.95148304,24.26755933,22.38421356,19.31998623,25.44844089,14.42712103,10.98259298,18.609935,0.393839543,,,0.378143159,0.409758151,0.050625026,45427,897323,0.045859068,0.055390983,0.026568981,8776,330310,0.020611534,0.032526428,0.00082211,1184,1440196,,,1216.381757,0.858917913,11080.9,12901,,,0.085423837,5336,62465,0.075207677,0.095639998,2.941280006,,,,,,2.832059743,2.95029768,2.725328139,3.254798842,2.966239634,,,,,,2.900754107,2.7807224,2.630864876,3.198850811,0.104693189,,,,,,,,,,0.838677849,52700,62837,0.820511044,0.856844655,93683,,,91179.68085,96186.31915,61225,42513.85106,79936.14894,100945,99037.42553,102852.5745,80207,73264.19149,87149.80851,83781,80473.42553,87088.57447,94705,92454.2766,96955.7234,,,,,,0.472375244,81805,173178,,,60.45500788,,,,,0.347760247,,,,,7.06079353,,,,,2.627193255,262,9972620,2.309068514,2.945317996,,,,1.135132232,0.814590488,1.539935047,5.488748067,2.739963259,9.82088644,3.00956666,2.058541368,4.248610152,2.384213207,1.780644462,3.126578418,4.441901515,3.201331908,6.004160452,13.83896411,1012,7112460,12.96042775,14.71750048,14.22855102,,,,7.02979988,5.969797951,8.08980181,,,,10.86429355,8.436549045,13.77308083,20.27128409,18.02794932,22.51461887,12.37060927,9.853121235,15.33523142,3.95081308,281,7112460,3.488869012,4.412757148,,,,1.476833343,1.04509517,2.027069147,,,,3.000953781,1.902347273,4.502904127,6.959987875,5.641206924,8.278768827,3.24352217,2.032698076,4.910731545,7.440371738,742,9972620,6.905008245,7.975735231,,,,3.876061279,3.233990822,4.518131737,10.97749613,6.879538382,16.62006107,9.592993729,7.731291811,11.45469565,8.023794448,6.834972426,9.21261647,7.93196699,6.23899521,9.942789308,8.752012882,,124200,,,704,383,0.568128837,579784,1020515,,,,,,,,396.8995959,,,,,0.617508359,298816,483906,0.611077204,0.623939514,0.185641595,86576,466361,0.179998886,0.191284305,0.897965721,434531,483906,0.893548087,0.902383355,1440196,,,,,0.206448289,297326,1440196,,,0.204392319,294365,1440196,,,0.019471655,28043,1440196,,,0.003978625,5730,1440196,,,0.37133418,534794,1440196,,,0.103349822,148844,1440196,,,0.111167508,160103,1440196,,,0.212881441,306591,1440196,,,0.041268282,56374,1366037,0.039253034,0.04328353,0.496796964,715485,1440196,,,0.139369918,202821,1455271,, -15,001,15001,HI,Hawaii County,2024,1,7490.539887,2829,558244,7035.546172,7945.533603,0,,,,2,3336.131964,2715.969415,3956.294513,,7057.282018,3522.969756,12627.42695,1,8033.139529,6795.024957,9271.254101,,6752.800674,5857.805411,7647.795936,,8839.66954,7470.608521,10208.73056,,,0.145,,,0.127,0.164,3.263275337,,,2.665181143,3.899548801,5.031980301,,,4.287668755,5.837892539,0.088516746,1332,15048,0.083978336,0.093055157,0,,,,0.109248242,0.095029107,0.123467378,,,,0.092568866,0.082402191,0.102735541,0.055742611,0.047045091,0.064440131,0.104537622,0.09016564,0.118909604,0.089806265,0.082265962,0.097346568,0.137,,,0.115,0.159,0.273,,,0.23,0.32,7.6,0.080926998,0.114,,,0.214,,,0.182,0.246,0.685997538,137631,200629,,,0.198581535,,,0.172014014,0.227486401,0.398496241,53,133,0.356513173,0.439825467,318.4,646,202906,,,20.36964216,777,38145,18.93735875,21.80192557,,,,3.729256013,2.277926456,5.759533452,,,,35.09009619,30.81652692,39.36366547,8.622206581,6.378755895,11.39901436,25.44619191,21.28998056,29.60240325,21.82899413,19.36291761,24.29507064,0.051273519,8783,171297,0.044124583,0.058422455,0.000768829,156,202906,,,1300.679487,0.000630105,130,206315,,,1587.038462,0.003489809,720,206315,,,286.5486111,1701,,,,,15789,1852,688,3500,1515,0.37,,,,,,0.45,0.17,0.28,0.32,0.39,,,,,,0.45,0.21,0.29,0.34,0.929011665,134755,145052,0.921157069,0.93686626,0.617191404,29640,48024,0.581883374,0.652499435,0.036425949,3433,94246,,,0.188,7916,,0.127234043,0.248765957,0.135135135,0,0.342100362,0.187505836,0.136038301,0.238973371,,,,0.245370793,0.185313879,0.305427707,0.112759114,0.066834321,0.158683906,5.267417337,147356,27975,4.881050988,5.653783686,0.260802792,11208,42975,0.225488897,0.296116688,6.801178871,138,202906,,,72.3400418,730,1009123,67.09228867,77.58779493,,,,47.38154614,38.33450028,57.9214831,,,,51.90467593,40.38493603,65.68868937,95.898374,84.8987994,106.8979486,56.7688506,44.08323378,71.96804511,3.3,,,,,,,,,,0.239598578,17190,71745,0.222709865,0.256487292,0.149518141,0.136265909,0.162770372,0.077078542,0.066246427,0.087910657,0.036169768,0.029286272,0.043053264,0.690867423,60292,87270,0.676039102,0.705695744,,,,0.722820972,0.697651661,0.747990283,,,,0.648869042,0.591206616,0.706531468,0.638658746,0.60111017,0.676207323,0.388,,87270,0.36197748,0.414022521,80.16238909,,,79.7107835,80.61399467,,,,85.05295491,84.29455463,85.81135519,,,,76.22109262,75.07719311,77.36499213,80.7374111,79.92227393,81.55254827,87.92894871,83.56459872,92.29329871,346.9279456,2829,558244,332.8644131,360.9914782,,,,191.8041819,170.366137,213.2422268,404.1356744,256.1873504,606.4019404,379.9003207,331.2218705,428.5787709,321.4150229,296.8965567,345.933489,391.3023818,345.9008898,436.7038738,46.47306411,88,189357,37.27275637,57.25611477,,,,,,,,,,49.81697676,31.57968992,74.74992505,36.84191136,17.66712853,67.75358672,52.72076822,28.82293458,88.45649076,5.721344516,88,15381,4.588685604,7.048856462,,,,,,,,,,7.851758794,5.081244299,11.59074488,,,,,,,6.648005598,4.704524431,9.124907089,0.098,,,0.086,0.111,0.153,,,0.135,0.171,0.087,,,0.076,0.099,266,457,171799,,,0.114,22830,,,,0.080926998,14977.88776,185079,,,12.17587893,74,607759,9.560683798,15.28570099,,,,,,,,,,12.28289975,5.89012786,22.58868996,15.3106699,10.17382896,22.1281809,,,,0.383,,,0.373,0.392,0.059673297,7518,125986,0.050141382,0.069205212,0.028937352,1376,47551,0.020596926,0.037277777,0.000746431,154,206315,,,1339.707792,0.847938836,1705.205,2011,,,0.110312571,967,8766,0.079085985,0.141539157,2.642386808,,,,,,2.511566201,,2.546817182,2.948460753,2.592882193,,,,,,2.52918329,,2.496686367,2.769662559,0.057671655,,,,,,,,,,0.874488503,48298,55230,0.804940876,0.944036129,71143,,,65552.53192,76733.46809,80217,23050.53192,137383.4681,80470,72257.06383,88682.93617,,,,62116,53452.68085,70779.31915,74851,70117.21277,79584.78723,,,,,,0.639826808,17585,27484,,,59.37722353,,,,,0.324937099,,71143,,,7.395668252,84,11358,,,3.917378917,55,1404000,2.95110591,5.099007121,,,,,,,,,,7.118022285,3.790047084,12.17203489,2.826608753,1.46054999,4.937516647,,,,21.28376156,210,1009123,18.27189893,24.29562419,20.81014901,,,,11.29828383,6.802304917,17.64366974,,,,13.88065045,7.588680765,23.28937285,29.36012258,23.01364931,36.91594617,18.72278196,11.73346778,28.3465169,6.837620389,69,1009123,5.320076795,8.65344622,,,,,,,,,,,,,9.852572671,6.647489407,14.06516012,,,,12.60683761,177,1404000,10.74956524,14.46410997,,,,6.035474388,3.515886245,9.663379161,,,,13.68850439,8.858478303,20.20693279,13.6619423,10.37408558,17.66122853,10.79712796,6.399062318,17.06411711,13.5978836,,18900,,,124,133,0.602084333,87814,145850,,,0.49,,,,,51.63402403,,,,,0.714494674,51778,72468,0.701687099,0.727302248,0.164420485,11346,69006,0.148323506,0.180517464,0.866672186,62806,72468,0.854956055,0.878388317,206315,,,,,0.209655139,43255,206315,,,0.234592734,48400,206315,,,0.007910234,1632,206315,,,0.005656399,1167,206315,,,0.202142355,41705,206315,,,0.128434675,26498,206315,,,0.139059206,28690,206315,,,0.302702179,62452,206315,,,0.028112177,5371,191056,0.022869054,0.033355299,0.502430749,103659,206315,,,0.594983776,119371,200629,, -15,003,15003,HI,Honolulu County,2024,1,5927.542488,10087,2687936,5754.792461,6100.292516,0,,,,2,3520.618653,3298.234764,3743.002542,,5533.654017,4459.500423,6607.807611,,6505.058764,5949.735354,7060.382175,,4935.399718,4576.288653,5294.510783,,10350.18367,9627.268205,11073.09913,,,0.13,,,0.112,0.148,2.599305249,,,2.116784304,3.103323581,4.07649405,,,3.412302356,4.748709622,0.084599377,7033,83133,0.08270765,0.086491104,0,0.099337748,0.051628153,0.147047344,0.103528629,0.099676866,0.107380392,0.108361455,0.096564324,0.120158586,0.07739963,0.072701617,0.082097643,0.058460952,0.054795334,0.06212657,0.086892125,0.080758585,0.093025666,0.080835742,0.077031117,0.084640368,0.112,,,0.094,0.132,0.25,,,0.21,0.289,8.3,0.046191187,0.098,,,0.199,,,0.169,0.23,0.965964852,981911,1016508,,,0.182638581,,,0.159474892,0.206633583,0.249056604,66,265,0.218090397,0.280921735,472.3,4727,1000890,,,14.21545207,2529,177905,13.66141052,14.76949361,,,,4.237583705,3.704775107,4.770392303,9.651474531,6.759774107,13.36170898,24.72198107,22.74050537,26.70345676,11.74046387,10.27032525,13.21060249,26.09199845,23.89126961,28.2927273,16.6216988,15.50029956,17.74309804,0.041000058,34379,838511,0.03861708,0.043383037,0.000931171,932,1000890,,,1073.916309,0.00100639,1002,995638,,,993.6506986,0.003062358,3049,995638,,,326.5457527,1526,,,,,2429,1479,1411,2518,1674,0.42,,,,,,0.43,0.31,0.28,0.38,0.51,,,,,0.32,0.55,0.29,0.36,0.44,0.927069033,655054,706586,,,0.719799354,201325,279696,,,0.034568941,15837,458128,,,0.109,21616,,0.088744681,0.129255319,0.226993865,0,0.50838206,0.130821123,0.115655989,0.145986257,0.02962963,0.011836361,0.047422898,0.113327732,0.090359866,0.136295597,0.081398568,0.061527254,0.101269882,4.266163769,187195,43879,4.150724,4.381603537,0.207466944,43572,210019,0.193364264,0.221569623,6.114558043,612,1000890,,,61.12458229,3000,4908009,58.9372672,63.31189738,,,,51.67417956,48.55154048,54.79681865,39.61324538,29.306097,52.37081118,47.68129499,41.59787064,53.76471934,68.43838435,62.96217308,73.91459562,58.8280201,51.70458195,65.95145825,3.9,,,,,,,,,,0.260956678,82705,316930,0.253261523,0.268651833,0.175224852,0.168486542,0.181963161,0.088458019,0.084009647,0.092906391,0.016596725,0.014556404,0.018637045,0.647913694,325990,503138,0.640885195,0.654942193,0.618222892,0.487371247,0.749074536,0.633839154,0.624968306,0.642710003,0.709527852,0.665952295,0.75310341,0.643976264,0.623881682,0.664070845,0.66181459,0.647292267,0.676336913,0.435,,503138,0.424544723,0.445455277,82.00095683,,,81.80153189,82.20038177,94.37342461,68.85282062,119.8940286,85.483708,85.21420571,85.75321029,82.91567105,80.18116141,85.65018068,76.14643429,75.56166269,76.73120589,81.96605041,81.53118558,82.40091524,83.75789014,82.07830009,85.4374802,296.8154321,10087,2687936,290.8266741,302.80419,,,,188.1756129,181.2766248,195.0746011,290.4286277,243.3799102,337.4773452,365.680315,336.8506934,394.5099366,272.6833806,259.2465725,286.1201888,494.3501569,467.7238042,520.9765095,45.62058841,415,909677,41.23131225,50.00986456,,,,28.27454584,21.95629119,35.84472416,105.7471264,67.03460707,158.672611,47.26863917,37.1160485,59.34144789,35.03083528,25.35198919,47.18630523,55.10035407,41.39308182,71.89400977,5.606798389,479,85432,5.104683321,6.108913458,,,,3.058473178,2.409728998,3.828135256,12.24783862,8.481984288,17.11512684,7.305129646,5.881634703,8.96908043,3.198937711,2.396223861,4.184289288,5.08967523,3.668190225,6.879762334,8.798965997,7.50267926,10.09525273,0.08,,,0.07,0.091,0.129,,,0.115,0.145,0.092,,,0.081,0.104,176.1,1490,845988,,,0.098,99870,,,,0.046191187,44029.7631,953207,,,19.42653283,571,2939279,17.83310164,21.01996402,,,,9.395970942,7.67114486,11.12079702,,,,21.39630981,16.47776574,27.32260995,22.70112621,18.60510241,26.79715,18.90380189,14.07512217,24.85500835,0.423,,,0.412,0.433,0.047193065,29332,621532,0.043618597,0.050767533,0.024286244,5502,226548,0.020711776,0.027860712,0.000876825,873,995638,,,1140.478809,0.865230544,7393.395,8545,,,0.081146132,3540,43625,0.069618442,0.092673822,3.022209929,,,,,,2.919957657,2.92959935,2.768940539,3.347268973,3.061896665,,,,,,3.009280078,2.768124501,2.752465363,3.288000296,0.116027143,,,,,,,,,,0.830547206,54155,65204,0.809578326,0.851516086,96304,,,94504.85106,98103.14894,60096,41672,78520,103265,101264.4894,105265.5106,78992,72513.87234,85470.12766,87205,82707.12766,91702.87234,103643,99941.04255,107344.9575,,,,,,0.42242009,48580,115004,,,52.88809907,,,,,0.370721881,,96304,,,5.268016297,331,62832,,,2.579961411,178,6899328,2.200943895,2.958978926,,,,1.154142761,0.794458771,1.620845541,6.138564134,3.064349099,10.98358688,2.030995899,1.110364357,3.407666012,2.070456026,1.352490617,3.033697793,5.481342478,3.795989009,7.659626704,11.30058095,575,4908009,10.35306037,12.24810153,11.71554494,,,,6.917478479,5.739362256,8.095594702,,,,9.408926681,6.69066665,12.86231251,16.60621106,13.92378886,19.28863326,11.02592252,8.15703818,14.57685431,3.219228001,158,4908009,2.717256265,3.721199737,,,,1.326238449,0.873999495,1.929607313,,,,2.626512012,1.398507028,4.491415532,5.018814853,3.646678555,6.737524684,3.817085274,2.223592836,6.11152329,5.928113579,409,6899328,5.353585931,6.502641227,,,,3.707246443,3.001490415,4.41300247,8.928820559,5.103592429,14.4998452,7.253556782,5.383729654,9.562910339,5.096507141,3.924931519,6.50812584,6.932286075,5.016929805,9.337743849,6.082224909,,82700,,,349,154,0.542092457,382102,704865,,,0.662,,,,,536.1515484,,,,,0.588504645,196384,333700,0.581912854,0.595096436,0.189263361,61172,323211,0.182477945,0.196048776,0.906793527,302597,333700,0.901627516,0.911959538,995638,,,,,0.204892742,203999,995638,,,0.196232968,195377,995638,,,0.024785113,24677,995638,,,0.003239129,3225,995638,,,0.425768201,423911,995638,,,0.098777869,98347,995638,,,0.103398022,102947,995638,,,0.174518249,173757,995638,,,0.047245413,44877,949870,,,0.494495992,492339,995638,,,0.016888209,17167,1016508,, -15,005,15005,HI,Kalawao County,2024,0,,,,,,2,,,,2,,,,2,,,,2,,,,2,,,,2,,,,2,,0.137,,,0.115,0.162,2.419794258,,,1.941890901,2.960837058,3.217227095,,,2.619240091,3.851965994,,,,,,0,,,,,,,,,,,,,,,,,,,,,,0.136,,,0.104,0.172,0.281,,,0.238,0.325,,,0.21,,,0.162,,,0.132,0.193,1,82,82,,,0.14633789,,,0.123574592,0.169334786,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,82,,,-82,0,0,82,,,-82,0,0,82,,,-82,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.92,46,50,0.66923454,1,0.518518519,14,27,0,1,,,,,,,,,,,,,,,,,,,,,,,,,,3.818965517,110750,29000,0,10.49982883,,,,,,0,0,82,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,305,0,0.066295885,0,0,0.148242106,0,0,0.09375654,0,0,0.066295885,0.555555556,20,36,0.034240857,1,,,,,,,,,,,,,,,,0,,36,0,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.079,,,0.067,0.091,0.098,,,0.083,0.113,0.094,,,0.081,0.107,,,,,,0.21,10,,,,,,90,,,,,,,,,,,,,,,,,,,,,,,,,,0.287,,,0.271,0.303,,,,,,,,,,,0,0,82,,,-82,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,62500,30577.61702,94422.38298,,,,,,,,,,,,,,,,,,,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,,,435,,,0.146,,,,,9.382547669,,,,,0,0,32,0,0.446808511,,,,,,0.875,28,32,0.44278028,1,82,,,,,0.024390244,2,82,,,0.353658537,29,82,,,0,0,82,,,0,0,82,,,0.073170732,6,82,,,0.43902439,36,82,,,0.024390244,2,82,,,0.329268293,27,82,,,0,0,50,0,1,0.43902439,36,82,,,1,82,82,, -15,007,15007,HI,Kauai County,2024,1,5731.17926,783,199471,5079.719669,6382.638851,0,,,,2,2543.588778,1899.84496,3187.332596,,,,,2,7834.076422,5714.2291,10482.61062,,4933.320962,3838.126942,6028.514982,,6294.498772,3990.172273,9444.838727,1,,0.135,,,0.117,0.155,2.850914999,,,2.334980355,3.445056311,4.571355223,,,3.876549115,5.342424175,0.083888389,466,5555,0.076598194,0.091178584,0,,,,0.130885122,0.110600004,0.151170241,,,,0.08042328,0.063084241,0.09776232,0.048018293,0.036449,0.059587586,0.098630137,0.068041088,0.129219186,0.077943615,0.065589666,0.090297564,0.133,,,0.11,0.158,0.238,,,0.198,0.282,7.8,0.073890132,0.108,,,0.194,,,0.165,0.226,0.924172556,67740,73298,,,0.187713472,,,0.160673495,0.216161239,0.387096774,12,31,0.294382391,0.476377731,260,191,73454,,,16.68680157,221,13244,14.48674911,18.88685403,,,,3.341433779,1.668031703,5.97874803,,,,21.65156093,15.669342,29.16451048,7.246376812,4.141930459,11.76766196,30.78078078,22.08881972,41.75760478,24.86760304,20.17754605,29.55766003,0.04947365,3083,62316,0.041133225,0.057814076,0.000816838,60,73454,,,1224.233333,0.000677415,50,73810,,,1476.2,0.002303211,170,73810,,,434.1764706,1626,,,,,,1868,,2350,1180,0.41,,,,,,0.48,,0.32,0.36,0.42,,,,,,0.48,0.29,0.31,0.36,0.925027522,48736,52686,0.915533528,0.934521515,0.633690135,11485,18124,0.584169092,0.683211177,0.036036773,1321,36657,,,0.11,1684,,0.063531915,0.156468085,,,,0.178130512,0.114339427,0.241921596,,,,0.063501484,0.013182597,0.113820371,0.127189642,0.050885573,0.203493711,4.272703885,166080,38870,3.742571904,4.802835866,0.239336793,3782,15802,0.193789837,0.284883749,8.712935987,64,73454,,,68.80543812,249,361890,60.25911788,77.35175836,,,,45.29241918,33.39505447,60.05117683,,,,67.85246935,45.08747312,98.06571013,81.1374336,64.89947378,100.2040704,45.65465514,24.95982481,76.6007537,2.9,,,,,,,,,,0.241105872,5625,23330,0.217950538,0.264261207,0.153876222,0.132474145,0.175278298,0.081654522,0.065570409,0.097738636,0.017359623,0.010680858,0.024038388,0.737078718,25085,34033,0.709045895,0.76511154,,,,0.781474562,0.744445261,0.818503863,,,,0.761987794,0.709569823,0.814405766,0.685156552,0.627993187,0.742319917,0.316,,34033,0.288312289,0.343687711,82.4384646,,,81.6844369,83.1924923,,,,86.25448103,85.24074886,87.2682132,,,,78.15590308,75.80010083,80.51170533,82.48867669,81.21380366,83.76354972,89.51954733,81.80297168,97.23612298,273.9358762,783,199471,253.3718877,294.4998648,,,,161.2128308,134.8235861,187.6020754,,,,341.1111071,265.404802,431.6979376,254.2447775,220.2341906,288.2553643,301.6569653,229.6352586,389.1155071,33.74462654,23,68159,21.39119858,50.63350826,,,,,,,,,,,,,,,,,,,5.123674912,29,5660,3.431405501,7.358451844,,,,,,,,,,,,,,,,,,,,,,0.092,,,0.08,0.104,0.144,,,0.126,0.162,0.084,,,0.073,0.096,,,,,,0.108,7890,,,,0.073890132,4957.362874,67091,,,22.51858933,49,217598,16.65937635,29.77076931,,,,,,,,,,,,,29.85121526,17.9723816,46.61637036,,,,0.391,,,0.381,0.401,0.05519146,2518,45623,0.044468056,0.065914865,0.034805967,609,17497,0.022891073,0.04672086,0.000528384,39,73810,,,1892.564103,0.911216216,674.3,740,,,0.070633153,222,3143,0.027770251,0.113496055,2.833503599,,,,,,2.746038609,,,3.059661458,2.917739225,,,,,,2.854674849,,,3.07846323,0.059241119,,,,,,,,,,0.796713749,47324,59399,0.733567099,0.8598604,81939,,,73759.42553,90118.57447,45625,1187.212766,90062.78723,91199,77226.40426,105171.5957,170670,26039.87234,315300.1277,79453,67955.12766,90950.87234,88294,78687.02128,97900.97872,,,,,,0.506316008,4890,9658,,,62.70167248,,,,,0.351822697,,81939,,,6.725918809,28,4163,,,1.977636882,10,505654,0.948353755,3.636944638,,,,,,,,,,,,,,,,,,,19.86269958,73,361890,15.39331935,25.22492634,20.17187543,,,,,,,,,,,,,21.54771717,13.50383963,32.62350275,,,,5.526541214,20,361890,3.375754949,8.535294676,,,,,,,,,,,,,9.434585303,4.524250371,17.35053828,,,,8.108311217,41,505654,5.81866412,10.99983973,,,,,,,,,,,,,,,,,,,16.61764706,,6800,,,93,20,0.647597873,33497,51725,,,0.547,,,,,68.10422416,,,,,0.64827226,14896,22978,0.629090594,0.667453927,0.184209314,3999,21709,0.159562277,0.208856352,0.922926277,21207,22978,0.908332713,0.937519841,73810,,,,,0.212098632,15655,73810,,,0.224657905,16582,73810,,,0.006923181,511,73810,,,0.00461997,341,73810,,,0.300948381,22213,73810,,,0.092765208,6847,73810,,,0.117341824,8661,73810,,,0.289608454,21376,73810,,,0.02966004,2059,69420,0.023763276,0.035556804,0.502655467,37101,73810,,,0.422016972,30933,73298,, -15,009,15009,HI,Maui County,2024,1,6219.546892,1896,462180,5768.396146,6670.697639,0,,,,2,3826.856993,3108.122719,4545.591268,,,,,2,7618.482578,6166.974079,9069.991077,,6051.931182,5132.791988,6971.070376,,7871.781695,6295.464187,9448.099203,,,0.13,,,0.113,0.148,2.614285295,,,2.107458166,3.164034618,4.521950567,,,3.795705668,5.273874724,0.080028839,999,12483,0.075268839,0.084788839,0,,,,0.119622642,0.107266745,0.131978538,,,,0.071804691,0.060733791,0.082875592,0.043121882,0.035605836,0.050637927,0.095147479,0.077407943,0.112887015,0.07847769,0.069938443,0.087016938,0.126,,,0.105,0.148,0.241,,,0.201,0.283,8,0.057595475,0.106,,,0.18,,,0.152,0.21,0.896457749,147695,164754,,,0.184899197,,,0.157587676,0.21117044,0.487804878,40,82,0.43817673,0.535141572,257.6,423,164221,,,16.25364665,507,31193,14.83882106,17.66847224,,,,7.642487047,5.817815237,9.858251472,,,,22.69718177,18.63614067,26.75822286,4.375863657,2.634555773,6.833453149,14.82381531,11.33904412,19.04181092,25.63297761,22.42322111,28.84273411,0.051340377,7245,141117,0.044191441,0.058489313,0.000834242,137,164221,,,1198.693431,0.000693637,114,164351,,,1441.675439,0.002178265,358,164351,,,459.0810056,1332,,,,,,1428,,1939,1241,0.36,,,,,,0.39,0.38,0.34,0.35,0.4,,,,,,0.43,0.3,0.32,0.37,0.925436926,109345,118155,0.914998965,0.935874887,0.621807209,26170,42087,0.588423227,0.655191191,0.03473209,3031,87268,,,0.111,3723,,0.066914894,0.155085106,,,,0.105598692,0.076087886,0.135109499,0.140703518,0,0.438146547,0.135531668,0.079684145,0.19137919,0.093346774,0.048644882,0.138048667,4.180782683,176914,42316,3.887356404,4.474208961,0.222572134,7845,35247,0.190227092,0.254917176,7.06365203,116,164221,,,64.82538562,540,833007,59.35769037,70.29308087,,,,35.10642448,27.87956849,43.63408018,,,,61.68904608,47.07524105,79.40603052,93.97669378,81.96118121,105.9922064,42.55215679,29.63913632,59.17974927,4.2,,,,,,,,,,0.26240561,14595,55620,0.245817264,0.278993955,0.172513825,0.157115197,0.187912452,0.093221863,0.081370979,0.105072746,0.01555196,0.011166405,0.019937515,0.714276781,57110,79955,0.69938947,0.729164091,,,,0.731643925,0.703536235,0.759751614,,,,0.729298643,0.685515896,0.77308139,0.676297872,0.649334817,0.703260928,0.305,,79955,0.281712555,0.328287445,82.0369437,,,81.50897835,82.56490905,,,,85.40720419,84.50486531,86.30954306,,,,77.91558716,76.32081717,79.51035715,82.48448208,81.526866,83.44209817,85.48859533,81.36556395,89.6116267,294.551055,1896,462180,280.4966019,308.605508,,,,191.2176935,170.5736508,211.8617362,,,,330.7755534,278.7118905,382.8392163,283.3507735,258.2166661,308.4848808,395.6869916,340.0798436,451.2941395,41.53062724,65,156511,32.05246132,52.93419365,,,,,,,,,,51.57131346,29.47746158,83.7485821,,,,,,,5.198487713,66,12696,4.02051002,6.61375098,,,,,,,,,,9.606147935,5.867684719,14.83591638,,,,,,,5.720228809,3.58483694,8.660495161,0.079,,,0.069,0.09,0.136,,,0.12,0.154,0.079,,,0.068,0.09,227.8,316,138736,,,0.106,17430,,,,0.057595475,8917.737787,154834,,,18.21675942,91,499540,14.66699834,22.36614384,,,,8.000640051,3.993890687,14.31535506,,,,21.96502492,11.69545069,37.56086157,26.76838654,19.12372779,36.4509449,,,,0.356,,,0.347,0.366,0.058157839,6059,104182,0.048625924,0.067689754,0.033295449,1289,38714,0.023763534,0.042827364,0.000705807,116,164351,,,1416.818966,0.814953271,1308,1605,,,0.08757755,607,6931,0.05240596,0.122749141,2.951289854,,,,,,2.818661768,,2.905036874,3.300969534,2.966830087,,,,,,2.849450774,,2.591479833,3.338282577,0.095790781,,,,,,,,,,0.861186772,51536,59843,0.819112316,0.903261228,89794,,,82652.21277,96935.78723,,,,104640,96795.23404,112484.766,153382,77614,229150,93289,73165.93617,113412.0638,90565,85035.29787,96094.70213,,,,,,0.511125903,10750,21032,,,69.05257757,,,,,0.343697797,,89794,,,8.286412408,78,9413,,,1.633663792,19,1163030,0.983572321,2.551168377,,,,,,,,,,,,,,,,,,,18.34534321,154,833007,15.33632818,21.35435823,18.4872396,,,,6.714071132,3.670645165,11.26507051,,,,,,,24.7360755,18.41763296,32.52337106,,,,4.081598354,34,833007,2.826625513,5.703624591,,,,,,,,,,,,,9.197718966,5.830564835,13.80109449,,,,9.887965057,115,1163030,8.080732365,11.69519775,,,,4.037354849,2.14972142,6.903999751,,,,14.16156105,8.526184849,22.11503181,13.36510627,9.820177377,17.77275803,8.653737982,4.14980373,15.91453226,13.5443038,,15800,,,138,76,0.603910235,71044,117640,,,0.521,,,,,104.9387486,,,,,0.653376699,35758,54728,0.63741223,0.669341169,0.191899729,10059,52418,0.175447165,0.208352293,0.875109633,47893,54728,0.862565577,0.887653689,164351,,,,,0.209399395,34415,164351,,,0.206734367,33977,164351,,,0.007441391,1223,164351,,,0.006066285,997,164351,,,0.285723847,46959,164351,,,0.104142962,17116,164351,,,0.120492118,19803,164351,,,0.298014615,48979,164351,,,0.026130647,4067,155641,0.021865591,0.030395703,0.501061752,82350,164351,,,0.214064605,35268,164754,, -16,000,16000,ID,Idaho,2024,,6827.366389,21538,5161935,6690.259012,6964.473767,0,15707.88043,13676.06874,17739.69211,,3094.973259,2344.365054,3845.581463,,8072.650867,6391.443786,9753.857948,,5602.204925,5263.929982,5940.479868,,6955.352366,6800.194222,7110.51051,,10586.55695,7287.298687,14867.462,,,0.13,,,0.12,0.14,3.298809767,,,3.076767852,3.520851682,4.708526239,,,4.428231232,4.988821246,0.069488342,10729,154400,0.068219962,0.070756722,0,0.075262184,0.062419308,0.08810506,0.090764331,0.079530133,0.10199853,0.088151116,0.07485622,0.101446013,0.077913097,0.074656841,0.081169353,0.066389482,0.064972397,0.067806566,0.07852194,0.053185235,0.103858645,0.082836083,0.072714624,0.092957542,0.138,,,0.128,0.15,0.321,,,0.307,0.336,7.9,0.079204629,0.082,,,0.2,,,0.189,0.212,0.774127756,1423703,1839106,,,0.168871435,,,0.156666646,0.181822023,0.313080169,371,1185,0.29880153,0.327429343,332.5,6320,1900923,,,15.08649455,6669,442051,14.72440661,15.44858248,33.31918506,28.10723056,38.53113956,2.618883529,1.576738961,4.089711037,22.90260366,18.52957403,27.99724533,27.25743558,26.10229279,28.41257838,12.11110545,11.7375486,12.48466229,12.35955056,6.169843109,22.11465002,13.52686374,11.53965639,15.5140711,0.104564008,163948,1567920,0.098606562,0.110521455,0.000617595,1174,1900923,,,1619.184838,0.000651871,1264,1939033,,,1534.045095,0.002505373,4858,1939033,,,399.1422396,1478,,,,,1988,927,1798,1832,1454,0.41,,,,,0.22,0.38,0.33,0.28,0.41,0.39,,,,,0.33,0.43,0.29,0.3,0.4,0.914443337,1108576,1212296,0.911676814,0.91720986,0.665420869,318521,478676,0.654074355,0.676767384,0.02662856,25315,950671,,,0.123,56199,,0.109893617,0.136106383,0.269920503,0.22457991,0.315261096,0.123674205,0.07538101,0.171967399,0.190431811,0.097320613,0.28354301,0.195943101,0.18012207,0.211764131,0.104200375,0.098395505,0.110005245,3.993180771,129998,32555,3.918899266,4.067462276,0.169463457,76851,453496,0.16003994,0.178886974,7.07551016,1345,1900923,,,80.12417467,7200,8986052,78.27340066,81.97494868,136.0544218,112.9314893,159.1773543,28.05687204,19.75462716,38.67270229,43.0228763,28.81309548,61.78802694,45.98174041,42.07436031,49.88912051,87.23659331,85.09829421,89.37489241,74.8549685,38.67865454,130.7565657,5.15,,,,,0.431818182,,,,,0.131333744,85275,649300,0.127141595,0.135525893,0.101495352,0.09749258,0.105498124,0.026097336,0.02397446,0.028220211,0.011342985,0.009993803,0.012692166,0.752111667,648852,862707,0.746959299,0.757264036,0.711627907,0.680223201,0.743032613,0.697380307,0.656793623,0.737966991,0.764365117,0.723100975,0.805629258,0.744464512,0.724663842,0.764265181,0.754518155,0.749335365,0.759700944,0.248,,862707,0.240655166,0.255344834,78.35131826,,,78.22496268,78.47767384,74.26175985,72.22020652,76.30331318,85.48170914,84.10339371,86.86002458,79.65388283,76.07723955,83.23052611,81.68598951,80.99695551,82.3750235,78.11958667,77.98261283,78.2565605,74.37622596,71.12380617,77.62864574,335.661167,21538,5161935,331.0128137,340.3095203,641.2188636,576.9171852,705.520542,154.8297764,128.5622627,181.09729,365.1807374,297.9097791,432.4516958,269.8324077,255.0135554,284.65126,342.4027779,337.306617,347.4989387,522.1944651,377.9147236,703.3925175,49.78487954,1000,2008642,46.69918073,52.87057834,79.78224141,46.47609569,127.7390971,,,,86.65511265,49.53088417,140.722474,47.94493029,40.9211285,54.96873208,50.1077651,46.52159841,53.69393179,,,,5.015621369,777,154916,4.662949917,5.368292821,,,,,,,,,,5.684915505,4.762761074,6.607069937,4.832654699,4.438671305,5.226638094,,,,,,,0.099140936,,,0.090632287,0.108353208,0.152547325,,,0.140994092,0.164865551,0.088,,,0.08,0.095,83.2,1311,1575136,,,0.082,156640,,,,0.079204629,124159.7501,1567582,,,16.42821875,906,5514901,15.35846837,17.49796913,33.76382207,20.62381968,52.14548477,,,,,,,9.183490311,7.102510741,11.68365136,18.00635749,16.76477306,19.24794193,,,,0.298419681,,,0.281332368,0.316088363,0.120397432,132772,1102781,0.112057006,0.128737857,0.070189192,34291,488551,0.060657277,0.079721107,0.001358409,2634,1939033,,,736.1552772,0.801471416,19374.77,24174,,,0.063135414,7154,113312,0.054969758,0.071301069,3.079515182,,,,,,3.051871439,2.438450983,2.643604714,3.203677983,3.018685979,,,,,,2.928857562,2.261714765,2.527645202,3.160367068,0.133891782,,,,,-1505.344,,,,,0.76179095,43029,56484,0.746166235,0.777415664,72634,,,71323.3617,73944.6383,47393,41169.85106,53616.14894,73235,60530.14894,85939.85106,54727,43767.68085,65686.31915,60878,58720.21277,63035.78723,72117,71237.68085,72996.31915,,,,,,0.252887789,71721,283608,,,77.92503672,,,,,0.220493592,,,,,5.555555556,,,,,2.117797925,261,12324122,1.86086466,2.37473119,8.122876975,4.05491092,14.53407068,,,,,,,2.488587593,1.769629053,3.401981162,2.023632255,1.745934365,2.301330146,,,,22.19832746,1980,8986052,21.20119323,23.19546169,22.03414803,40.53814743,28.82658568,55.41698204,7.040498786,3.376192829,12.94772794,,,,11.27882375,9.231301364,13.32634613,23.94331787,22.79628311,25.09035263,,,,16.23627373,1459,8986052,15.40313986,17.0694076,24.55117385,15.73040034,36.5302006,,,,,,,9.248207188,7.495853636,11.00056074,17.91392665,16.94494735,18.88290595,,,,13.89145612,1712,12324122,13.23341662,14.54949562,34.70683799,25.50127911,46.15273692,5.615233004,2.692722487,10.32661342,11.0538766,5.300763487,20.32847262,15.12295537,13.197566,17.04834474,13.75871538,13.03462008,14.48281068,,,,,,,,,,,0.69141874,868014,1255410,,,,,,,,80.56135325,,,,,0.720068767,486279,675323,0.714658771,0.725478763,0.108570212,71367,657335,0.104742856,0.112397568,0.897617881,606182,675323,0.894207903,0.901027859,1939033,,,,,0.238987165,463404,1939033,,,0.17042103,330452,1939033,,,0.007948808,15413,1939033,,,0.017115748,33188,1939033,,,0.016607763,32203,1939033,,,0.002341373,4540,1939033,,,0.135077639,261920,1939033,,,0.807101272,1564996,1939033,,,0.017350805,30217,1741533,0.016211994,0.018489617,0.496068917,961894,1939033,,,0.307578247,565669,1839106,, -16,001,16001,ID,Ada County,2024,1,5411.695048,4672,1401957,5172.144974,5651.245123,0,6344.078306,3166.941033,11351.3085,1,2462.102301,1661.170083,3514.804127,,9223.839741,6777.330501,12265.75147,,4144.057907,3440.288654,4847.827161,,5566.273348,5298.622694,5833.924002,,,,,2,,0.115,,,0.098,0.133,3.004985361,,,2.588705802,3.433956,4.783128374,,,4.2791127,5.307978699,0.065698919,2272,34582,0.063087638,0.068310199,0,,,,0.088923557,0.073342465,0.104504649,0.088746569,0.071887198,0.10560594,0.080433686,0.071969402,0.08889797,0.060874705,0.058026468,0.063722941,,,,0.089219331,0.069551535,0.108887127,0.123,,,0.099,0.149,0.285,,,0.262,0.31,8.8,0.062386902,0.069,,,0.17,,,0.147,0.195,0.916012583,453396,494967,,,0.18942364,,,0.175416067,0.205313737,0.351145038,46,131,0.307478721,0.39470935,429,2196,511931,,,8.562090915,951,111071,8.017907066,9.106274764,,,,3.568242641,1.843763042,6.233001798,39.02116402,29.70471801,50.33445857,15.49221629,13.37660433,17.60782825,7.193014454,6.631769662,7.754259247,,,,8.437856328,5.941029548,11.63047347,0.074469525,31916,428578,0.067320589,0.081618461,0.000886838,454,511931,,,1127.601322,0.000819029,425,518907,,,1220.957647,0.003688522,1914,518907,,,271.1112853,1316,,,,,882,1303,2649,2009,1277,0.47,,,,,0.27,0.39,0.3,0.3,0.47,0.48,,,,,0.49,0.47,0.35,0.37,0.48,0.953024497,324035,340007,0.948942639,0.957106354,0.767096719,107975,140758,0.743083827,0.791109612,0.023054985,6354,275602,,,0.084,9407,,0.06493617,0.10306383,0.323699422,0.101396357,0.546002487,0.164461248,0.089735566,0.23918693,0.199273482,0.05313286,0.345414104,0.117361161,0.087344704,0.147377618,0.087528812,0.075563157,0.099494466,3.900835152,155538,39873,3.731802893,4.069867411,0.182338563,20514,112505,0.160305034,0.204372092,7.969824058,408,511931,,,64.52061761,1558,2414732,61.3167773,67.72445791,,,,19.86613283,10.57787905,33.97169216,46.69312611,25.52756654,78.34313151,36.13099654,28.41932079,45.29051703,70.1821342,66.54071518,73.82355321,,,,5.4,,,,,0,,,,,0.118246063,21250,179710,0.110278726,0.1262134,0.100331511,0.092569345,0.108093676,0.015218964,0.012403238,0.01803469,0.008485894,0.006269931,0.010701857,0.729916184,184098,252218,0.718132024,0.741700344,0.685417805,0.3468421,1,0.690974298,0.627621555,0.75432704,0.834532374,0.767294513,0.901770235,0.729353909,0.683467975,0.775239842,0.744929124,0.73618983,0.753668417,0.225,,252218,0.210851848,0.239148152,79.97880797,,,79.7384323,80.21918364,,,,85.69690483,83.58539184,87.80841781,74.12109996,71.1285799,77.11362001,84.52865983,82.64617092,86.41114873,79.73996208,79.48331375,79.9966104,,,,269.6419808,4672,1401957,261.7240465,277.559915,307.1091358,196.7706182,456.9540505,135.1336846,102.0785331,175.4823297,403.6804153,300.5665842,530.7651949,200.0216809,169.6799703,230.3633916,276.6716152,268.0817058,285.2615246,,,,40.33900742,202,500756,34.77605181,45.90196303,,,,,,,118.3151917,56.73673327,217.58585,41.26842635,26.70674961,60.92033823,39.20700023,33.01459561,45.39940486,,,,4.515386828,157,34770,3.809067311,5.221706345,,,,,,,,,,,,,4.404805242,3.619949035,5.189661449,,,,,,,0.092,,,0.082,0.104,0.146,,,0.131,0.162,0.078,,,0.071,0.086,33.9,147,433382,,,0.069,33460,,,,0.062386902,24478.43688,392365,,,17.33967688,258,1487917,15.22381546,19.45553829,,,,,,,,,,8.401243384,4.193870428,15.03214508,19.36921975,16.92882257,21.80961693,,,,0.285,,,0.27,0.301,0.086502172,26977,311865,0.076970258,0.096034087,0.046023024,5645,122656,0.036491109,0.055554939,0.002044682,1061,518907,,,489.0735156,0.79507008,5559.13,6992,,,0.043764988,1168,26688,0.031672368,0.055857608,3.267028137,,,,,,3.027848041,2.375356341,2.795995842,3.359594423,3.20903785,,,,,,2.966067682,2.128659009,2.770053291,3.303646979,0.048641004,,,,,-909.5085,,,,,0.782434888,51672,66040,0.752302503,0.812567273,87748,,,85048.08511,90447.91489,60477,44812.48936,76141.51064,91837,74293.51064,109380.4894,55313,34899.21277,75726.78723,69056,63466.7234,74645.2766,85397,83829,86965,,,,,,0.167858916,11498,68498,,,73.81088847,,,,,0.223446688,,87748,,,5.616925669,150,26705,,,1.396914823,46,3292971,1.022717218,1.863288614,,,,,,,,,,,,,1.294756775,0.906831727,1.792489134,,,,18.44950529,458,2414732,16.73871743,20.16029316,18.96690813,,,,,,,,,,8.105927253,4.53682595,13.36949429,20.3659158,18.41036669,22.32146491,,,,12.38232649,299,2414732,10.97879316,13.78585981,,,,,,,,,,6.744452688,3.687255045,11.31604559,13.77084623,12.15783391,15.38385855,,,,8.0778118,266,3292971,7.107058258,9.048565341,,,,,,,,,,9.345559242,6.104829575,13.69340961,7.984333443,6.934021631,9.034645256,,,,,,,,,,,0.745574223,259389,347905,,,0.766,,,,,116.6685635,,,,,0.713477164,136018,190641,0.704963467,0.721990861,0.107344814,20084,187098,0.099670736,0.115018892,0.932926286,177854,190641,0.927076723,0.938775848,518907,,,,,0.217466714,112845,518907,,,0.163221926,84697,518907,,,0.012788419,6636,518907,,,0.008228835,4270,518907,,,0.029525522,15321,518907,,,0.002248958,1167,518907,,,0.094801188,49193,518907,,,0.830541889,430974,518907,,,0.010679434,5032,471186,,,0.494429638,256563,518907,,,0.055658256,27549,494967,, -16,003,16003,ID,Adams County,2024,1,9575.714351,72,11947,5473.348126,15550.36019,1,,,,2,,,,2,,,,2,,,,2,9984.232312,5458.472713,16751.8453,1,,,,2,,0.157,,,0.132,0.184,3.959342442,,,3.144332799,4.878543875,4.834372002,,,3.860358555,5.9240796,0.092511013,21,227,0.054818027,0.130203999,1,,,,,,,,,,,,,0.088235294,0.049312542,0.127158047,,,,,,,0.178,,,0.142,0.218,0.318,,,0.25,0.393,7.4,0.085972666,0.12,,,0.23,,,0.186,0.277,0.308746289,1352,4379,,,0.144600994,,,0.115142246,0.178495092,0.066666667,1,15,0.003015681,0.225205905,194.6,9,4625,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.120830711,384,3178,0.101766881,0.139894541,0.000648649,3,4625,,,1541.666667,0.000622794,3,4817,,,1605.666667,0.000622794,3,4817,,,1605.666667,1260,,,,,,,,,1303,0.38,,,,,,,,,0.38,0.28,,,,,,,,,0.27,0.940384064,3281,3489,0.910514078,0.970254051,0.587006961,506,862,0.435015,0.738998922,0.052721088,93,1764,,,0.194,161,,0.116553192,0.271446809,,,,,,,,,,,,,0.160771704,0.028211498,0.293331911,4.321035498,111500,25804,2.651125313,5.990945684,0.136302294,101,741,0.03526635,0.237338239,6.486486487,3,4625,,,183.7981896,40,21763,131.3081213,250.2809675,,,,,,,,,,,,,196.4735516,139.7119017,268.5858129,,,,5.1,,,,,0,,,,,0.110144928,190,1725,0.074858871,0.145430984,0.081367925,0.043818217,0.118917632,0.016811594,0,0.037417048,0.011594203,0,0.024764052,0.696135831,1189,1708,0.624886701,0.767384962,,,,,,,,,,,,,0.623678647,0.483232972,0.764124321,0.216,,1708,0.13525077,0.29674923,80.77764848,,,76.09724843,85.45804852,,,,,,,,,,,,,79.81184719,75.01258667,84.61110772,,,,345.9521103,72,11947,251.369333,464.4245606,,,,,,,,,,,,,352.8424101,250.9054461,482.3471901,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.12,,,0.103,0.14,0.166,,,0.143,0.19,0.094,,,0.08,0.109,0,0,4088,,,0.12,520,,,,0.085972666,341.8273205,3976,,,,,,,,,,,,,,,,,,,,,,,,,,0.322,,,0.305,0.339,0.132802681,317,2387,0.110164383,0.155440979,0.089156627,74,830,0.061752371,0.116560882,0.000622794,3,4817,,,1605.666667,,,,,,,,,,,2.350107566,,,,,,,,,2.384530416,2.355166609,,,,,,,,,2.505253239,0.085188279,,,,,-5039.53,,,,,1.052362406,53500,50838,0.209890539,1.894834274,56374,,,48659.10638,64088.89362,,,,,,,,,,,,,55718,51742,59694,,,,,,0.233333333,112,480,,,,,,,,0.221875333,,56374,,,,,147,,,,,,,,,,,,,,,,,,,,,,,,,,39.89628948,10,21763,16.04037757,82.20160446,45.9495474,,,,,,,,,,,,,44.15235552,17.75153686,90.97072715,,,,45.9495474,10,21763,22.03459402,84.50285366,,,,,,,,,,,,,50.37783375,24.15812945,92.64662994,,,,33.89141192,10,29506,16.25224936,62.32751319,,,,,,,,,,,,,36.954915,17.72131817,67.96140444,,,,,,,,,,,0.743103448,2586,3480,,,0.466,,,,,11.15982834,,,,,0.838174274,1414,1687,0.780959864,0.895388684,0.113161132,184,1626,0.060379338,0.165942925,0.738589212,1246,1687,0.673474758,0.803703666,4817,,,,,0.17500519,843,4817,,,0.310359145,1495,4817,,,0.002075981,10,4817,,,0.018268632,88,4817,,,0.008511522,41,4817,,,0.004151962,20,4817,,,0.05003114,241,4817,,,0.894955366,4311,4817,,,0.002091078,9,4304,0,0.016988706,0.481212373,2318,4817,,,1,4379,4379,, -16,005,16005,ID,Bannock County,2024,1,8715.513959,1230,250174,8024.884192,9406.143727,0,32090.89192,24870.00046,40754.29837,,,,,2,,,,2,8729.747772,6558.055204,11390.4272,,7965.970704,7239.341872,8692.599537,,,,,2,,0.152,,,0.128,0.178,4.054971784,,,3.341439285,4.834985123,5.447620047,,,4.632237269,6.260799211,0.090243902,703,7790,0.083880949,0.096606856,0,0.083333333,0.055689036,0.110977631,0.142857143,0.075924341,0.209789945,,,,0.08778626,0.068002612,0.107569908,0.089294287,0.082223762,0.096364812,,,,0.1,0.0439364,0.1560636,0.167,,,0.133,0.205,0.38,,,0.329,0.429,7.6,0.116068186,0.096,,,0.22,,,0.184,0.26,0.772472362,67219,87018,,,0.151474035,,,0.125020417,0.178555814,0.25,13,52,0.178235064,0.326001514,364.8,322,88263,,,16.4127142,363,22117,14.72428379,18.10114461,71.42857143,52.10049014,95.57704841,,,,,,,27.46174971,21.40778113,34.69626867,13.14878893,11.44202128,14.85555657,,,,18.32061069,9.466526884,32.00241992,0.091423095,6678,73045,0.079508202,0.103337989,0.000736435,65,88263,,,1357.892308,0.001016567,91,89517,,,983.7032967,0.004513109,404,89517,,,221.5767327,1755,,,,,2365,,,,1714,0.38,,,,,0.16,0.32,,0.35,0.39,0.44,,,,,0.34,0.44,0.41,0.47,0.44,0.93379604,52202,55903,0.923641775,0.943950304,0.702381444,17018,24229,0.659426858,0.74533603,0.027282889,1196,43837,,,0.153,3375,,0.108914894,0.197085106,0.393835616,0.219550556,0.568120677,,,,0.268965517,0.005545662,0.532385372,0.175661376,0.098267734,0.253055017,0.140612125,0.108885989,0.172338261,4.372819031,116540,26651,3.86852652,4.877111542,0.195073803,4348,22289,0.156079616,0.234067991,6.231376681,55,88263,,,98.10804692,429,437273,88.82411268,107.3919812,299.0865734,210.5845491,412.251444,,,,,,,73.189814,49.0163671,105.1127816,96.65974671,86.56186236,106.7576311,,,,5.2,,,,,0,,,,,0.125355226,3970,31670,0.109818733,0.140891719,0.100926518,0.086034709,0.115818326,0.022576571,0.015422893,0.029730249,0.012630249,0.006450497,0.018810002,0.771900869,29932,38777,0.750835327,0.792966411,0.737439222,0.564653722,0.910224722,,,,,,,0.777064488,0.685932107,0.868196869,0.769478387,0.746005597,0.792951176,0.129,,38777,0.112706628,0.145293372,75.99669685,,,75.41311205,76.58028164,60.79473156,57.14218604,64.44727708,,,,,,,77.66599997,74.38684871,80.94515123,76.53753369,75.92009619,77.15497118,,,,425.7034203,1230,250174,401.1847252,450.2221154,1338.921983,1081.985253,1638.501414,,,,,,,388.3215136,299.698346,494.9476462,399.869663,374.4916829,425.2476432,,,,44.31751034,45,101540,32.32549615,59.30031564,,,,,,,,,,,,,45.23351804,31.68099993,62.62225551,,,,5.354919054,43,8030,3.875381471,7.213040823,,,,,,,,,,,,,5.069124424,3.489352008,7.118935372,,,,,,,0.116,,,0.1,0.134,0.167,,,0.145,0.191,0.095,,,0.081,0.11,35.9,26,72483,,,0.096,8300,,,,0.116068186,9614.972468,82839,,,29.07130398,77,264866,22.94261848,36.33414198,,,,,,,,,,,,,29.1294394,22.43321782,37.1976438,,,,0.335,,,0.319,0.349,0.111111111,5652,50868,0.09443026,0.127791962,0.049877562,1161,23277,0.036771179,0.062983945,0.001731515,155,89517,,,577.5290323,0.904199272,993.715,1099,,,0.075405605,409,5424,0.040403502,0.110407707,3.182592669,,,,,,3.13478867,,2.828693423,3.25904301,3.131217798,,,,,,3.196724873,,2.733475961,3.214321088,0.076705551,,,,,-1207.531,,,,,0.740107646,42215,57039,0.684983789,0.795231502,62120,,,56088.68085,68151.31915,31792,22043.23404,41540.76596,72614,41374.34043,103853.6596,76016,54950.46809,97081.53192,49503,39658.91489,59347.08511,63478,58803.78723,68152.21277,,,,,,0.234397404,3106,13251,,,60.27772765,,,,,0.201352222,,62120,,,5.08504296,29,5703,,,2.808088617,17,605394,1.635815101,4.496021899,,,,,,,,,,,,,1.974785933,0.946986614,3.631701642,,,,31.22677051,131,437273,25.79651681,36.65702422,29.95840127,113.3697694,63.45219934,186.9861939,,,,,,,33.24072092,16.59364812,59.47683176,28.17269446,22.81997296,34.40368186,,,,21.72555818,95,437273,17.57727394,26.55836826,88.91762994,44.3873605,159.0982016,,,,,,,,,,20.32051493,15.95597485,25.51054566,,,,11.56271783,70,605394,9.013705803,14.60879838,58.10575247,27.86396686,106.8585476,,,,,,,,,,10.66384404,8.011007846,13.91400329,,,,,,,,,,,0.633963776,39553,62390,,,0.713,,,,,108.1760924,,,,,0.682485323,22320,32704,0.664216156,0.70075449,0.11363209,3626,31910,0.096158185,0.131105996,0.871972847,28517,32704,0.855953619,0.887992076,89517,,,,,0.249997207,22379,89517,,,0.153121753,13707,89517,,,0.008579376,768,89517,,,0.038685389,3463,89517,,,0.017102897,1531,89517,,,0.002949161,264,89517,,,0.097757968,8751,89517,,,0.824145134,73775,89517,,,0.004691394,384,81852,0.00231448,0.007068308,0.498218216,44599,89517,,,0.170160197,14807,87018,, -16,007,16007,ID,Bear Lake County,2024,1,7876.309806,78,17193,5351.57038,11179.79306,0,,,,2,,,,2,,,,2,,,,2,7498.718125,4982.843736,10837.73553,,,,,2,,0.154,,,0.128,0.182,3.925247739,,,3.094030173,4.8357361,4.994325817,,,3.996719884,6.065037464,0.07079646,40,565,0.049647304,0.091945617,0,,,,,,,,,,,,,0.06779661,0.046413635,0.089179586,,,,,,,0.172,,,0.135,0.212,0.347,,,0.274,0.425,8.4,0.060621533,0.088,,,0.229,,,0.183,0.28,0.562460766,3584,6372,,,0.15075036,,,0.118511214,0.187179453,0.2,1,5,0.015594715,0.47750127,122.2,8,6545,,,18.13471503,28,1544,12.05038644,26.2097124,,,,,,,,,,,,,19.20341394,12.65517079,27.93995907,,,,,,,0.092130518,480,5210,0.076641157,0.10761988,0.000763942,5,6545,,,1309,0.000446296,3,6722,,,2240.666667,0.000595061,4,6722,,,1680.5,2246,,,,,,,,,2273,0.36,,,,,,,,,0.36,0.26,,,,,,,,,0.26,0.930961357,3951,4244,0.908419146,0.953503569,0.589427951,814,1381,0.488783987,0.690071914,0.02582017,85,3292,,,0.132,234,,0.077191489,0.186808511,,,,,,,,,,0.807017544,0.634914107,0.979120981,0.105701473,0.05907529,0.152327657,4.287907726,114500,26703,3.471128992,5.10468646,0.183246073,315,1719,0.09498525,0.271506897,0,0,6545,,,93.87847593,29,30891,62.8718887,134.8251511,,,,,,,,,,,,,100.7889341,67.49993097,144.7497218,,,,4.6,,,,,0,,,,,0.095723014,235,2455,0.064870737,0.126575292,0.067634855,0.033625646,0.101644064,0.024032587,0.005356262,0.042708911,0.00814664,0,0.020872022,0.784417549,2074,2644,0.737548595,0.831286503,,,,,,,,,,,,,0.729566648,0.665552233,0.793581064,0.346,,2644,0.274183726,0.417816274,77.70551247,,,75.47176636,79.93925858,,,,,,,,,,,,,77.75938521,75.47079177,80.04797864,,,,339.1502404,78,17193,262.8367779,430.7088167,,,,,,,,,,,,,335.8366137,258.0660751,429.6809168,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.12,,,0.102,0.139,0.165,,,0.142,0.193,0.092,,,0.077,0.108,0,0,5311,,,0.088,560,,,,0.060621533,362.880499,5986,,,,,,,,,,,,,,,,,,,,,,,,,,0.303,,,0.285,0.318,0.102792974,357,3473,0.083729145,0.121856804,0.073264079,134,1829,0.049434292,0.097093866,0.001190122,8,6722,,,840.25,0.775,56.575,73,,,,,,,,2.763390099,,,,,,,,,2.785554501,2.916768919,,,,,,,,,2.960704645,0.041472346,,,,,-1926.19,,,,,0.518010458,32098,61964,0.357529622,0.678491294,66006,,,57165.14894,74846.85106,,,,,,,,,,50809,6223.468085,95394.53192,65257,57619.55319,72894.44681,,,,,,0.101889893,124,1217,,,,,,,,0.189497924,,66006,,,2.433090024,1,411,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.750849377,3315,4415,,,0.49,,,,,19.09622959,,,,,0.806284976,1873,2323,0.773431053,0.839138899,0.060111836,129,2146,0.020069999,0.100153674,0.882479552,2050,2323,0.852665554,0.912293551,6722,,,,,0.265545969,1785,6722,,,0.209907766,1411,6722,,,0.002975305,20,6722,,,0.010413567,70,6722,,,0.004909253,33,6722,,,0.000743826,5,6722,,,0.044332044,298,6722,,,0.927402559,6234,6722,,,0.005135852,31,6036,0,0.018694608,0.495983338,3334,6722,,,1,6372,6372,, -16,009,16009,ID,Benewah County,2024,1,11411.78709,205,26160,8673.255527,14150.31865,0,38820.49221,21727.5348,64028.49827,1,,,,2,,,,2,,,,2,9587.250531,6842.209134,12332.29193,,,,,2,,0.177,,,0.15,0.208,4.415312775,,,3.534125274,5.374227286,5.172150505,,,4.166035128,6.254739966,0.062588905,44,703,0.044683171,0.080494639,0,,,,,,,,,,,,,0.065454546,0.044784337,0.086124754,,,,,,,0.196,,,0.159,0.238,0.332,,,0.263,0.406,7.3,0.092419424,0.123,,,0.273,,,0.227,0.327,0.589087093,5614,9530,,,0.145975352,,,0.115775717,0.178912013,0.444444444,4,9,0.264827841,0.599456043,251.7,25,9931,,,27.79321846,50,1799,20.62866244,36.64189364,,,,,,,,,,,,,23.75960867,16.4542197,33.20167163,,,,,,,0.126081747,947,7511,0.108209406,0.143954087,0.000302084,3,9931,,,3310.333333,0.000867888,9,10370,,,1152.222222,0.002796528,29,10370,,,357.5862069,1236,,,,,,,,,1290,0.36,,,,,,,,,0.37,0.26,,,,,0.12,,,,0.26,0.851421939,5868,6892,0.816499135,0.886344742,0.488854329,943,1929,0.396501088,0.581207569,0.042277615,173,4092,,,0.194,447,,0.126085106,0.261914894,0.28668942,0.179436552,0.393942288,,,,,,,,,,0.161090459,0.081893926,0.240286992,3.795223857,96467,25418,2.993767124,4.59668059,0.19990745,432,2161,0.141641845,0.258173056,7.048635586,7,9931,,,104.1024878,49,47069,77.01559359,137.6290097,331.8250377,165.6458633,593.726652,,,,,,,,,,93.12393033,65.56784095,128.3590711,,,,10.1,,,,,0,,,,,0.12342216,440,3565,0.090200077,0.156644243,0.076203966,0.044173017,0.108234915,0.039270687,0.016784069,0.061757306,0.022440393,0.008977335,0.03590345,0.773165506,2887,3734,0.747544773,0.798786239,0.656957929,0.388064484,0.925851374,,,,,,,,,,0.809552062,0.758516189,0.860587934,0.297,,3734,0.223570994,0.370429006,73.69984365,,,71.77485809,75.62482922,,,,,,,,,,,,,74.65257754,72.64245008,76.662705,,,,516.7318699,205,26160,436.3765668,597.0871731,1317.28993,825.5385859,1994.392785,,,,,,,,,,470.3599883,390.32601,550.3939665,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.131,,,0.113,0.152,0.177,,,0.152,0.202,0.099,,,0.084,0.116,,,,,,0.123,1170,,,,0.092419424,858.114349,9285,,,,,,,,,,,,,,,,,,,,,,,,,,0.337,,,0.321,0.352,0.144485981,773,5350,0.121847683,0.167124279,0.082524272,187,2266,0.058694485,0.106354059,0.00096432,10,10370,,,1037,0.764945652,70.375,92,,,,,,,,2.5351791,,,,,,,,,2.641818604,2.394006095,,,,,,,,,2.509979916,0.253583671,,,,,-900.080275,,,,,0.794532227,41937,52782,0.681996086,0.907068368,56188,,,49690.80851,62685.19149,41875,15661.04255,68088.95745,,,,,,,,,,55320,49994.04255,60645.95745,,,,,,0.50913242,669,1314,,,,,,,,0.263170072,,56188,,,5.639097744,3,532,,,,,,,,,,,,,,,,,,,,,,,,,,33.46308591,13,47069,17.29086479,58.45327677,27.61902739,,,,,,,,,,,,,,,,,,,23.36994625,11,47069,11.66619297,41.81528928,,,,,,,,,,,,,,,,,,,24.53498536,16,65213,14.02386404,39.8432791,,,,,,,,,,,,,21.78016553,11.25412935,38.04556601,,,,,,,,,,,0.699437412,4973,7110,,,0.532,,,,,5.080481541,,,,,0.736539467,2818,3826,0.691812267,0.781266667,0.12841003,466,3629,0.07903843,0.177781631,0.806847883,3087,3826,0.76903756,0.844658206,10370,,,,,0.225168756,2335,10370,,,0.233365477,2420,10370,,,0.005110897,53,10370,,,0.080135005,831,10370,,,0.004821601,50,10370,,,0.001157184,12,10370,,,0.04831244,501,10370,,,0.840501447,8716,10370,,,0.003369199,31,9201,0,0.012569752,0.481967213,4998,10370,,,1,9530,9530,, -16,011,16011,ID,Bingham County,2024,1,9464.738651,697,134692,8490.694078,10438.78322,0,25710.79901,19314.74352,33547.01555,,,,,2,,,,2,8428.707771,6313.68051,11024.95729,,8351.357512,7310.71993,9391.995093,,,,,2,,0.17,,,0.144,0.198,4.130293406,,,3.348338877,4.987473557,5.106756396,,,4.234301469,6.043185469,0.08241138,365,4429,0.074312577,0.090510183,0,0.1,0.061228428,0.138771572,,,,,,,0.078857143,0.06099901,0.096715276,0.083541147,0.073965997,0.093116297,,,,,,,0.171,,,0.138,0.207,0.371,,,0.315,0.431,7.9,0.11527895,0.084,,,0.253,,,0.211,0.297,0.584555759,28054,47992,,,0.149546324,,,0.121465573,0.181506103,0.325581395,14,43,0.245954344,0.405547825,270.1,132,48876,,,20.31091321,260,12801,17.84203966,22.77978677,44.27083333,30.65883904,61.86405221,,,,,,,33.50253807,27.22920977,40.78813799,13.66402572,11.20897052,16.11908092,,,,,,,0.118591708,4837,40787,0.103102346,0.13408107,0.000286439,14,48876,,,3491.142857,0.000420648,21,49923,,,2377.285714,0.00142219,71,49923,,,703.1408451,2008,,,,,2300,,,697,2011,0.38,,,,,0.09,,,0.4,0.39,0.32,,,,,0.35,0.33,,0.21,0.33,0.884172907,25977,29380,0.868273822,0.900071991,0.569407978,6723,11807,0.513558393,0.625257564,0.025982865,649,24978,,,0.149,2138,,0.101340426,0.196659575,0.373317014,0.238141042,0.508492985,,,,,,,0.135547576,0.074271832,0.196823321,0.089927311,0.06235099,0.117503631,4.035868705,132546,32842,3.510195662,4.561541748,0.177919645,2564,14411,0.135444114,0.220395176,1.84139455,9,48876,,,86.7893062,204,235052,74.87943117,98.69918122,235.1097179,158.6275394,335.6337413,,,,,,,47.06214556,28.74678115,72.68366685,87.57677372,73.6540816,101.4994658,,,,5,,,,,1,,,,,0.109224856,1705,15610,0.086786672,0.13166304,0.075291074,0.054614961,0.095967187,0.032991672,0.021369586,0.044613759,0.003203075,0.000826778,0.005579372,0.792593987,16845,21253,0.770551683,0.814636291,0.842902711,0.731139499,0.954665924,,,,,,,0.783420006,0.683246436,0.883593576,0.782579051,0.739893384,0.825264717,0.281,,21253,0.239656864,0.322343136,75.65336848,,,74.81857587,76.4881611,63.4628575,59.92329381,67.0024212,,,,,,,80.87754717,75.77324362,85.98185073,76.37372832,75.46531206,77.28214458,,,,465.8931282,697,134692,430.1533189,501.6329376,1102.047293,872.5012198,1373.479744,,,,,,,390.3109638,303.0917358,494.8121506,436.5775555,397.6728797,475.4822312,,,,36.900369,23,62330,23.3916686,55.36867142,,,,,,,,,,,,,32.82455277,17.94548844,55.074022,,,,5.745856354,26,4525,3.753384136,8.419010847,,,,,,,,,,,,,,,,,,,,,,0.123,,,0.106,0.142,0.165,,,0.143,0.189,0.101,,,0.086,0.118,28.3,11,38871,,,0.084,3980,,,,0.11527895,5257.52705,45607,,,14.69672263,21,142889,9.097502946,22.46550171,,,,,,,,,,,,,12.30408117,6.551405023,21.04035352,,,,0.325,,,0.312,0.338,0.143740107,3814,26534,0.123484788,0.163995426,0.075734261,1132,14947,0.055478942,0.09598958,0.000901388,45,49923,,,1109.4,0.850648022,623.525,733,,,0.089837528,282,3139,0.047202346,0.13247271,2.929245735,,,,,,,,2.413137105,3.179515312,2.988605421,,,,,,,,2.468525443,3.230132778,0.14135127,,,,,-5184.5992,,,,,0.818351043,42204,51572,0.727752267,0.908949819,70052,,,63766.89362,76337.10638,37535,26881.89362,48188.10638,181250,4552.12766,357947.8723,,,,65670,46552.55319,84787.44681,72106,65246.59575,78965.40426,,,,,,0.283953053,2879,10139,,,,,,,,0.178553075,,70052,,,2.574370709,9,3496,,,3.382086625,11,325243,1.688325457,6.0514872,,,,,,,,,,,,,,,,,,,25.59776823,55,235052,19.17448496,33.4825111,23.39907765,,,,,,,,,,,,,26.99042162,19.28235291,36.75329366,,,,18.29382435,43,235052,13.23933139,24.64166134,,,,,,,,,,,,,19.01337851,13.0879349,26.70185252,,,,19.98505733,65,325243,15.42404532,25.47259613,61.6004928,30.75074406,110.2202974,,,,,,,18.77773984,9.373780074,33.59856353,17.47015515,12.59095118,23.61457459,,,,,,,,,,,0.651335505,19996,30700,,,0.683,,,,,33.28686632,,,,,0.800665515,12512,15627,0.774901488,0.826429542,0.084166886,1279,15196,0.063183437,0.105150335,0.867153004,13551,15627,0.83606781,0.898238199,49923,,,,,0.290487351,14502,49923,,,0.151753701,7576,49923,,,0.003946077,197,49923,,,0.069446948,3467,49923,,,0.008633295,431,49923,,,0.002103239,105,49923,,,0.182420928,9107,49923,,,0.741481882,37017,49923,,,0.021818182,978,44825,0.014970735,0.028665629,0.495903692,24757,49923,,,0.597016169,28652,47992,, -16,013,16013,ID,Blaine County,2024,1,4722.248943,202,65642,3573.022259,5871.475626,0,,,,2,,,,2,,,,2,,,,2,5403.075925,3891.178158,6914.973692,,,,,2,,0.13,,,0.106,0.157,3.134393317,,,2.408062053,3.983785913,4.116035439,,,3.221542944,5.128534222,0.076054217,101,1328,0.061796765,0.090311669,0,,,,,,,,,,0.084980237,0.060683105,0.10927737,0.070617907,0.052786975,0.088448839,,,,,,,0.123,,,0.092,0.158,0.295,,,0.229,0.367,9.1,0.028301543,0.07,,,0.189,,,0.148,0.234,0.744520435,18071,24272,,,0.178224451,,,0.141461547,0.219875149,0.333333333,9,27,0.231289482,0.434909506,214,53,24766,,,9.811774129,49,4994,7.258804515,12.97168574,,,,,,,,,,21.68949772,15.34877948,29.77053021,3.569110967,1.781687335,6.38612541,,,,,,,0.151404337,2981,19689,0.132340508,0.170468167,0.000807559,20,24766,,,1238.3,0.000804311,20,24866,,,1243.3,0.002493364,62,24866,,,401.0645161,1048,,,,,,,,,750,0.48,,,,,,,,0.38,0.49,0.55,,,,,,0.67,,0.41,0.55,0.918204746,16019,17446,0.890967124,0.945442369,0.520072993,2850,5480,0.433457789,0.606688196,0.025043373,332,13257,,,0.075,350,,0.045212766,0.104787234,,,,,,,,,,0.087700535,0.007363959,0.168037111,0.151111111,0.069125389,0.233096834,3.287465494,140526,42746,2.557974576,4.016956412,0.23370333,1158,4955,0.136652622,0.330754038,10.49826375,26,24766,,,67.3354167,78,115838,53.22585266,84.03764745,,,,,,,,,,,,,81.58127826,63.59660868,103.0730372,,,,3.7,,,,,1,,,,,0.149038462,1240,8320,0.103891284,0.194185639,0.122486289,0.083164557,0.161808021,0.028846154,0.002472117,0.05522019,0,0,0.004658109,0.706059693,9368,13268,0.644945528,0.767173857,,,,,,,,,,0.845808803,0.785247788,0.906369818,0.658198614,0.578641944,0.737755284,0.176,,13268,0.127338197,0.224661803,84.30537336,,,82.84161302,85.76913371,,,,,,,,,,100.48271,73.17262118,127.7927989,83.40491431,81.76970502,85.04012361,,,,209.4485025,202,65642,177.8559314,241.0410735,,,,,,,,,,,,,230.1692177,191.1693884,269.1690469,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.098,,,0.081,0.116,0.138,,,0.115,0.161,0.082,,,0.068,0.097,,,,,,0.07,1670,,,,0.028301543,604.973787,21376,,,,,,,,,,,,,,,,,,,,,,,,,,0.299,,,0.284,0.314,0.157277473,2320,14751,0.134639175,0.179915771,0.136693394,716,5238,0.102140203,0.171246586,0.000522802,13,24866,,,1912.769231,0.83,223.27,269,,,,,,,,3.071188062,,,,,,,,2.687687015,3.411240706,3.063459543,,,,,,,,2.629259366,3.41295301,0.038388066,,,,,5839.295,,,,,0.990516289,47522,47977,0.603460692,1.377571886,98707,,,86862.40426,110551.5957,88702,88418.42553,88985.57447,,,,,,,59474,44381.40426,74566.59575,85702,78709.14894,92694.85106,,,,,,0.150908531,490,3247,,,,,,,,0.198638394,,98707,,,11.02941177,12,1088,,,,,,,,,,,,,,,,,,,,,,,,,,16.70347112,19,115838,9.730387469,26.74387535,16.40221689,,,,,,,,,,,,,18.37006557,9.781286241,31.41337159,,,,9.496020304,11,115838,4.740379122,16.9910034,,,,,,,,,,,,,,,,,,,13.18921499,21,159221,8.164331956,20.16111614,,,,,,,,,,,,,12.61649228,7.061354955,20.80898536,,,,,,,,,,,0.837102362,13289,15875,,,0.418,,,,,32.65662719,,,,,0.750806625,6981,9298,0.709892145,0.791721106,0.07581786,686,9048,0.045193441,0.10644228,0.939449344,8735,9298,0.915311357,0.963587331,24866,,,,,0.189656559,4716,24866,,,0.222593099,5535,24866,,,0.004262849,106,24866,,,0.015965576,397,24866,,,0.013834151,344,24866,,,0.001367329,34,24866,,,0.236507681,5881,24866,,,0.732003539,18202,24866,,,0.076736259,1801,23470,0.055673958,0.09779856,0.500241293,12439,24866,,,0.242707647,5891,24272,, -16,015,16015,ID,Boise County,2024,1,11299.10463,139,21942,7937.199742,14661.00953,0,,,,2,,,,2,,,,2,,,,2,12928.13837,8985.48698,16870.78975,,,,,2,,0.133,,,0.112,0.157,3.511325724,,,2.742969994,4.38767437,4.518068261,,,3.580491987,5.505852845,0.06824147,26,381,0.042921134,0.093561806,0,,,,,,,,,,,,,0.071216617,0.043757346,0.098675889,,,,,,,0.154,,,0.123,0.191,0.285,,,0.226,0.353,7.5,0.138485929,0.09,,,0.239,,,0.194,0.288,0.817871222,6224,7610,,,0.155427335,,,0.123258768,0.190240025,0.393939394,13,33,0.304721321,0.4796795,222.4,18,8094,,,17.63409258,24,1361,11.29849585,26.23813196,,,,,,,,,,,,,20.72072072,13.13515949,31.09125486,,,,,,,0.114821124,674,5870,0.098140273,0.131501975,0.000123548,1,8094,,,8094,,0,8333,,,,0.001080043,9,8333,,,925.8888889,,,,,,,,,,,0.39,,,,,,,,,0.39,0.34,,,,,,,,,0.35,0.954367666,5856,6136,0.937729794,0.971005539,0.696547145,1049,1506,0.570726572,0.822367718,0.037578288,144,3832,,,0.147,183,,0.088617021,0.205382979,,,,,,,,,,0.072463768,0,0.321549295,0.221743811,0.107180955,0.336306667,3.543538779,118379,33407,3.258834385,3.828243174,0.133499171,161,1206,0.064990609,0.202007733,7.412898443,6,8094,,,133.6280002,52,38914,99.79978209,175.2353439,,,,,,,,,,,,,148.7031371,111.0586154,195.0043803,,,,4.1,,,,,1,,,,,0.114925373,385,3350,0.069906998,0.159943748,0.092145015,0.05039294,0.13389709,0.02238806,0.003518566,0.041257554,0.004179105,0,0.009006542,0.706803131,2348,3322,0.679227165,0.734379097,,,,,,,,,,,,,0.588624339,0.505542118,0.671706559,0.637,,3322,0.529765957,0.744234043,78.98618288,,,75.7586191,82.21374666,,,,,,,,,,,,,77.33421294,73.93985675,80.72856914,,,,417.4207763,139,21942,333.2112999,501.6302527,,,,,,,,,,,,,460.8391307,364.5831456,557.0951157,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.107,,,0.092,0.125,0.155,,,0.133,0.179,0.087,,,0.073,0.102,,,,,,0.09,680,,,,0.138485929,973.2791054,7028,,,,,,,,,,,,,,,,,,,,,,,,,,0.305,,,0.287,0.322,0.123403334,570,4619,0.103148015,0.143658653,0.087087087,116,1332,0.0632573,0.110916874,0.000600024,5,8333,,,1666.6,,,,,,,,,,,3.230815855,,,,,,,,,3.223892062,3.317990859,,,,,,,,,3.350599866,0.053040519,,,,,-2083.022933,,,,,0.590459249,41824,70833,0.397723591,0.783194907,74121,,,64627.21277,83614.78723,,,,,,,,,,103750,43930.08511,163569.9149,69122,57538.34043,80705.65957,,,,,,0.242093784,222,917,,,,,,,,0.264526922,,74121,,,,,251,,,,,,,,,,,,,,,,,,,,,,,,,,60.86800367,21,38914,36.07423659,96.19768757,53.96515393,,,,,,,,,,,,,69.38936309,40.42186108,111.0990922,,,,48.82561546,19,38914,29.39621001,76.24724668,,,,,,,,,,,,,54.33383854,32.71252013,84.84901934,,,,33.90085882,18,53096,20.09179746,53.57797248,,,,,,,,,,,,,37.53597197,22.2461959,59.32301845,,,,,,,,,,,0.767515924,4820,6280,,,0.462,,,,,7.244803524,,,,,0.860424028,2922,3396,0.84070378,0.880144277,0.083333333,273,3276,0.044346346,0.122320321,0.861012956,2924,3396,0.812466222,0.909559691,8333,,,,,0.151566063,1263,8333,,,0.285971439,2383,8333,,,0.006960278,58,8333,,,0.013440538,112,8333,,,0.014640586,122,8333,,,0.002160086,18,8333,,,0.065282611,544,8333,,,0.875675027,7297,8333,,,0.008234825,62,7529,0,0.021522419,0.489019561,4075,8333,,,1,7610,7610,, -16,017,16017,ID,Bonner County,2024,1,7813.883929,709,128940,6720.166915,8907.600944,0,,,,2,,,,2,,,,2,,,,2,8049.6354,6886.909364,9212.361435,,,,,2,,0.15,,,0.125,0.18,3.871377797,,,3.06084056,4.744108192,4.796890099,,,3.861336298,5.75900735,0.064762537,195,3011,0.055971835,0.07355324,0,,,,,,,,,,0.076923077,0.033247835,0.120598319,0.063649743,0.054471726,0.072827759,,,,,,,0.172,,,0.13,0.214,0.321,,,0.263,0.382,8.5,0.029258775,0.098,,,0.223,,,0.181,0.269,0.53234982,25079,47110,,,0.158215087,,,0.127521095,0.191200953,0.375,15,40,0.293785479,0.454210271,129.3,64,49491,,,15.5458721,132,8491,12.8938069,18.1979373,,,,,,,,,,26.31578947,13.59775243,45.96838826,14.95327103,12.18388648,17.72265558,,,,,,,0.116483397,4269,36649,0.100994035,0.131972758,0.000484937,24,49491,,,2062.125,0.000486249,25,51414,,,2056.56,0.002256195,116,51414,,,443.2241379,1057,,,,,,,,,1057,0.35,,,,,,,,,0.35,0.32,,,,,,,,0.33,0.32,0.912869415,32835,35969,0.893146466,0.932592365,0.601054307,6043,10054,0.535903172,0.666205442,0.036321272,795,21888,,,0.153,1491,,0.097,0.209,,,,,,,,,,0.285953177,0.150338216,0.421568138,0.152294503,0.106357449,0.198231557,4.490310078,120484,26832,4.072269807,4.908350348,0.17792599,1654,9296,0.127274576,0.228577403,9.496676163,47,49491,,,98.55253675,227,230334,85.73186,111.3732135,,,,,,,,,,,,,103.1082449,89.48319426,116.7332956,,,,10.4,,,,,1,,,,,0.166388889,2995,18000,0.139842025,0.192935753,0.130067568,0.100115225,0.16001991,0.029166667,0.017947644,0.04038569,0.017222222,0.008238422,0.026206023,0.744894818,14518,19490,0.711541186,0.77824845,,,,,,,,,,,,,0.735096154,0.697626635,0.772565673,0.376,,19490,0.32791045,0.42408955,78.52103276,,,77.60347739,79.43858813,,,,,,,,,,89.38499607,72.29314847,106.4768437,78.15549224,77.2052244,79.10576007,,,,333.8812808,709,128940,305.2408113,362.5217503,,,,,,,,,,,,,344.5293844,314.2011098,374.8576591,,,,67.7642807,27,39844,44.65708797,98.59347065,,,,,,,,,,,,,68.11989101,43.64569952,101.3569982,,,,7.526513856,22,2923,4.716826162,11.39523243,,,,,,,,,,,,,7.912584778,4.898014689,12.09522635,,,,,,,0.117,,,0.099,0.137,0.162,,,0.137,0.187,0.091,,,0.077,0.106,30.4,13,42781,,,0.098,4580,,,,0.029258775,1196.010945,40877,,,10.55988511,15,142047,5.910287534,17.41692459,,,,,,,,,,,,,9.905214715,5.274109667,16.93821883,,,,0.308,,,0.291,0.325,0.131405753,3554,27046,0.112341923,0.150469583,0.077776677,785,10093,0.056329868,0.099223485,0.000602949,31,51414,,,1658.516129,0.790171569,322.39,408,,,,,,,,3.103151613,,,,,,,,2.755439915,3.125206808,2.9476201,,,,,,,,2.623034566,2.980124396,0.039332588,,,,,1160.62925,,,,,0.741281658,39133,52791,0.619928953,0.862634363,64860,,,59729.44681,69990.55319,,,,105000,72438.97872,137561.0213,,,,65993,41752.14894,90233.85106,62428,58609.2766,66246.7234,,,,,,0.280635717,1342,4782,,,,,,,,0.227983349,,64860,,,5.764966741,13,2255,,,3.812804031,12,314729,1.970131481,6.660201331,,,,,,,,,,,,,3.764609251,1.879279374,6.735925842,,,,28.96185046,65,230334,21.81802931,37.6978293,28.21988938,,,,,,,,,,,,,30.15649874,22.52231567,39.54623597,,,,24.74667222,57,230334,18.74288788,32.06218422,,,,,,,,,,,,,25.77706123,19.41881021,33.55238835,,,,15.88668346,50,314729,11.79140268,20.94461161,,,,,,,,,,,,,17.11186023,12.70075249,22.55985443,,,,,,,,,,,0.771848087,27335,35415,,,0.495,,,,,34.91948659,,,,,0.782400666,15044,19228,0.759088715,0.805712617,0.132028947,2463,18655,0.105517708,0.158540186,0.852038694,16383,19228,0.829669519,0.874407868,51414,,,,,0.193604855,9954,51414,,,0.264130393,13580,51414,,,0.003228693,166,51414,,,0.009705528,499,51414,,,0.008052282,414,51414,,,0.001478197,76,51414,,,0.041895204,2154,51414,,,0.915295445,47059,51414,,,0.002643884,121,45766,0,0.005701122,0.493231416,25359,51414,,,0.727786033,34286,47110,, -16,019,16019,ID,Bonneville County,2024,1,8171.483393,1481,349440,7599.059413,8743.907373,0,,,,2,,,,2,,,,2,5237.442427,4067.078979,6639.706263,,8626.115193,7973.048579,9279.181806,,,,,2,,0.143,,,0.12,0.17,4.01505905,,,3.304290673,4.77047838,4.694822986,,,3.940145903,5.491589841,0.081361755,1042,12807,0.076626812,0.086096699,0,,,,0.131944444,0.076667486,0.187221403,,,,0.083024119,0.071377153,0.094671084,0.08,0.074735042,0.085264958,,,,0.125,0.076139403,0.173860597,0.151,,,0.119,0.188,0.362,,,0.313,0.41,8.1,0.114043644,0.077,,,0.23,,,0.192,0.272,0.794464522,98485,123964,,,0.162603927,,,0.135520285,0.191964639,0.261538462,17,65,0.197408603,0.328537813,295.5,378,127930,,,17.49566696,535,30579,16.01311582,18.9782181,,,,,,,,,,32.53208025,27.77947598,37.28468451,13.82820785,12.32709559,15.3293201,,,,19.97503121,11.41745625,32.43819925,0.098091112,10822,110326,0.086176218,0.110006005,0.000383022,49,127930,,,2610.816327,0.000795391,103,129496,,,1257.242718,0.00326651,423,129496,,,306.1371158,1269,,,,,,,,258,1242,0.44,,,,,0.25,0.5,,0.27,0.44,0.45,,,,,0.23,0.5,0.38,0.28,0.46,0.919681411,69859,75960,0.909100216,0.930262607,0.669609942,22523,33636,0.631788011,0.707431873,0.023461624,1474,62826,,,0.122,4614,,0.08387234,0.16012766,0.331707317,0,0.681401192,0.047808765,0,0.377379152,0.25,0,0.570495583,0.177012819,0.119942751,0.234082887,0.104543854,0.081692753,0.127394954,3.942784751,133826,33942,3.620569755,4.264999746,0.176693232,6629,37517,0.142700186,0.210686279,4.221058391,54,127930,,,85.25163385,512,600575,77.86708782,92.63617988,,,,,,,,,,45.65139607,32.1427958,62.92443601,94.11327522,85.56823718,102.6583133,,,,5.1,,,,,1,,,,,0.138356332,5665,40945,0.11937796,0.157334703,0.097534045,0.082538723,0.112529366,0.032482599,0.021710036,0.043255161,0.016607644,0.008602343,0.024612946,0.761221152,41890,55030,0.739469065,0.78297324,,,,,,,,,,0.705063291,0.628655989,0.781470593,0.80068307,0.778770596,0.822595544,0.15,,55030,0.130824793,0.169175207,76.7111641,,,76.2029706,77.2193576,,,,,,,,,,80.89660412,78.44079042,83.35241782,76.2637303,75.71089653,76.81656408,,,,394.3394235,1481,349440,373.8552305,414.8236165,,,,,,,,,,237.6060844,185.9121274,299.2255396,412.5844305,389.9719202,435.1969409,,,,63.80622924,102,159859,51.42342334,76.18903514,,,,,,,,,,61.71992868,36.57914134,97.54409638,63.44197093,50.14824535,79.17845092,,,,5.998615704,78,13003,4.741656787,7.486543878,,,,,,,,,,,,,5.744375299,4.383563518,7.39414968,,,,,,,0.112,,,0.096,0.131,0.155,,,0.133,0.178,0.092,,,0.078,0.107,21.9,22,100499,,,0.077,9380,,,,0.114043644,11887.22514,104234,,,23.56918776,87,369126,18.8779532,29.07250602,,,,,,,,,,,,,26.04475742,20.61987972,32.4595387,,,,0.298,,,0.283,0.313,0.120443497,8647,71793,0.103762646,0.137124348,0.059212973,2388,40329,0.043723612,0.074702335,0.001807006,234,129496,,,553.4017094,0.832420213,1564.95,1880,,,0.109170306,775,7099,0.065797117,0.152543494,3.027999195,,,,,,,,2.594775766,3.13537477,2.91560849,,,,,,,,2.463646318,3.043561479,0.050745939,,,,,-1607.10435,,,,,0.663289942,39286,59229,0.593713354,0.732866531,74505,,,70894.78723,78115.21277,55543,40832.87234,70253.12766,79479,43467.42553,115490.5745,,,,58511,50946.23404,66075.76596,75478,72384.89362,78571.10638,,,,,,0.272761776,6468,23713,,,62.92306286,,,,,0.198469901,,74505,,,4.559732496,45,9869,,,2.308918746,19,822896,1.390119914,3.605662632,,,,,,,,,,,,,2.497311717,1.454776104,3.998437978,,,,26.98598257,152,600575,22.63879157,31.33317358,25.3090788,,,,,,,,,,12.6640735,5.790820822,24.0403563,29.61632941,24.62623966,34.60641916,,,,18.9818091,114,600575,15.49730286,22.46631534,,,,,,,,,,,,,20.80186126,16.78451141,24.81921112,,,,12.03068188,99,822896,9.777944583,14.64692352,,,,,,,,,,10.04281893,5.013339025,17.96937718,12.63345928,10.10513671,15.60221943,,,,,,,,,,,0.692732055,53995,77945,,,0.738,,,,,96.63331821,,,,,0.709990095,30105,42402,0.693707967,0.726272222,0.095850324,3996,41690,0.080833314,0.110867334,0.913070138,38716,42402,0.900812756,0.925327521,129496,,,,,0.295808365,38306,129496,,,0.138699265,17961,129496,,,0.005745351,744,129496,,,0.013073763,1693,129496,,,0.013042874,1689,129496,,,0.001675727,217,129496,,,0.142822944,18495,129496,,,0.814751035,105507,129496,,,0.010547385,1212,114910,0.007357345,0.013737425,0.497652437,64444,129496,,,0.151915072,18832,123964,, -16,021,16021,ID,Boundary County,2024,1,7464.976718,202,34194,5580.976124,9348.977312,0,,,,2,,,,2,,,,2,,,,2,7701.765932,5683.170534,9720.361329,,,,,2,,0.165,,,0.138,0.195,4.02950438,,,3.197654891,4.899561987,5.079014489,,,4.07418233,6.097657415,0.048971597,50,1021,0.035733911,0.062209283,0,,,,,,,,,,,,,0.047826087,0.034036454,0.06161572,,,,,,,0.181,,,0.143,0.221,0.344,,,0.273,0.42,8,0.036410132,0.116,,,0.244,,,0.199,0.292,0.64026211,7719,12056,,,0.154371735,,,0.122542316,0.189480721,0.2,2,10,0.05050879,0.392851974,111.5,14,12561,,,18.38235294,50,2720,13.64373667,24.23484069,,,,,,,,,,,,,17.07212975,12.19657979,23.2473952,,,,,,,0.129180123,1240,9599,0.110116293,0.148243953,0.000557281,7,12561,,,1794.428571,0.000599476,8,13345,,,1668.125,0.001573623,21,13345,,,635.4761905,958,,,,,,,,,946,0.32,,,,,,,,,0.32,0.19,,,,,,,,0.25,0.19,0.868706927,7437,8561,0.830006453,0.907407401,0.462579618,1162,2512,0.354658683,0.570500552,0.037868163,216,5704,,,0.187,583,,0.115510638,0.258489362,0.785046729,0.646698509,0.923394949,,,,,,,0.323809524,0.141348474,0.506270574,0.232762223,0.128337906,0.337186541,4.241299206,100417,23676,3.150527614,5.332070798,0.074956217,214,2855,0.033636915,0.116275519,6.368919672,8,12561,,,83.15398161,51,61332,61.91360112,109.332129,,,,,,,,,,,,,90.94381491,67.50025235,119.8980823,,,,7.7,,,,,1,,,,,0.1523395,700,4595,0.107144701,0.197534298,0.1046875,0.068668012,0.140706988,0.028944505,0.008837197,0.049051813,0.026115343,0.005157163,0.047073522,0.767868438,3642,4743,0.696099108,0.839637767,,,,,,,,,,,,,0.808494007,0.727397586,0.889590429,0.337,,4743,0.246855345,0.427144655,78.32187033,,,76.66333104,79.98040962,,,,,,,,,,,,,77.74848486,76.04808042,79.4488893,,,,369.4983944,202,34194,312.4022409,426.594548,,,,,,,,,,,,,381.6651176,320.3450083,442.985227,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.124,,,0.106,0.145,0.168,,,0.147,0.194,0.097,,,0.083,0.113,,,,,,0.116,1390,,,,0.036410132,399.4919661,10972,,,,,,,,,,,,,,,,,,,,,,,,,,0.322,,,0.305,0.338,0.149948141,1012,6749,0.126118353,0.173777928,0.083,249,3000,0.057978723,0.108021277,0.000749344,10,13345,,,1334.5,0.825,94.05,114,,,,,,,,2.876208797,,,,,,,,,2.936134525,2.72921986,,,,,,,,,2.783861521,0.013643594,,,,,-3239.346,,,,,0.703970913,36981,52532,0.605749286,0.80219254,62801,,,55418.53192,70183.46809,33790,26648.21277,40931.78723,,,,,,,,,,59051,54467.34043,63634.65957,,,,,,0.373426573,534,1430,,,,,,,,0.235458034,,62801,,,1.333333333,1,750,,,,,,,,,,,,,,,,,,,,,,,,,,24.74285922,16,61332,13.52715138,41.51431347,26.08752364,,,,,,,,,,,,,27.51628595,14.65126339,47.05368699,,,,19.56564273,12,61332,10.10985311,34.17724035,,,,,,,,,,,,,21.82651558,11.2780791,38.12653022,,,,15.41544628,13,84331,8.208075905,26.36088262,,,,,,,,,,,,,17.14632409,9.129695443,29.32073639,,,,,,,,,,,0.691835616,6313,9125,,,0.55,,,,,17.85657261,,,,,0.775159236,3651,4710,0.729621611,0.82069686,0.123652214,539,4359,0.077803776,0.169500651,0.861358811,4057,4710,0.824504201,0.898213421,13345,,,,,0.236792806,3160,13345,,,0.234095167,3124,13345,,,0.006968902,93,13345,,,0.019632821,262,13345,,,0.016185837,216,13345,,,0.001198951,16,13345,,,0.055301611,738,13345,,,0.884750843,11807,13345,,,0.003730372,43,11527,0,0.012056842,0.492693893,6575,13345,,,1,12056,12056,, -16,023,16023,ID,Butte County,2024,1,10764.17086,55,7104,6745.848566,16297.08403,1,,,,2,,,,2,,,,2,,,,2,11679.71507,7229.927712,17853.68516,1,,,,2,,0.187,,,0.158,0.22,4.350556899,,,3.511439052,5.412545118,5.042748058,,,4.030622911,6.223870375,0.078431373,16,204,0.041537883,0.115324862,1,,,,,,,,,,,,,0.073863636,0.035222264,0.112505009,,,,,,,0.199,,,0.159,0.241,0.343,,,0.268,0.428,7.3,0.076475947,0.132,,,0.264,,,0.213,0.318,0.427350427,1100,2574,,,0.138875792,,,0.109728581,0.173999116,0.125,1,8,0.007330353,0.353459145,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.100806452,200,1984,0.08531709,0.116295813,,0,2654,,,,0,0,2684,,,-2684,0.000372578,1,2684,,,2684,382,,,,,,,,,388,0.25,,,,,,,,,0.26,0.27,,,,,,,,,0.27,0.903897491,1693,1873,0.869511492,0.938283489,0.715821813,466,651,0.562172321,0.869471304,0.030181087,45,1491,,,0.217,130,,0.131212766,0.302787234,,,,,,,,,,,,,0.233082707,0.111043321,0.355122092,4.421733822,90535,20475,2.687341511,6.156126132,0.256778309,161,627,0.139320359,0.37423626,0,0,2654,,,129.6720061,17,13110,75.53872212,207.6174433,,,,,,,,,,,,,142.1999164,82.83669151,227.6758412,,,,3.5,,,,,1,,,,,0.098445596,95,965,0.054652025,0.142239167,0.086021505,0.025553033,0.146489978,0.01865285,0,0.045956747,0.014507772,0,0.031553408,0.659025788,690,1047,0.552122955,0.765928621,,,,,,,,,,,,,0.413433908,0.345489163,0.481378654,0.233,,1047,0.135406911,0.330593089,75.24596828,,,71.67002332,78.82191325,,,,,,,,,,,,,74.33954238,70.59800156,78.08108319,,,,531.7804389,55,7104,384.8521404,716.3047613,,,,,,,,,,,,,567.4669225,407.224061,769.8329566,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.138,,,0.119,0.16,0.18,,,0.156,0.208,0.108,,,0.092,0.126,0,0,2260,,,0.132,340,,,,0.076475947,221.0919623,2891,,,,,,,,,,,,,,,,,,,,,,,,,,0.314,,,0.297,0.329,0.112635379,156,1385,0.09238006,0.132890698,0.075709779,48,634,0.050688503,0.100731056,0.001117735,3,2684,,,894.6666667,,,,,,,,,,,3.054605337,,,,,,,,,2.923558986,3.151603306,,,,,,,,,3.04568237,0.044980516,,,,,-4766.692,,,,,0.844627984,36406,43103,0.735118137,0.954137831,57085,,,48773.17021,65396.82979,,,,,,,,,,31364,8457.617021,54270.38298,49688,32425.70213,66950.29787,,,,,,0.133858268,51,381,,,,,,,,0.219111851,,57085,,,,,128,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.693627451,1415,2040,,,0.481,,,,,14.73384057,,,,,0.7890625,808,1024,0.762973534,0.815151466,0.104651163,99,946,0.041115755,0.168186571,0.852539063,873,1024,0.782796112,0.922282013,2684,,,,,0.224292101,602,2684,,,0.257824143,692,2684,,,0.003725782,10,2684,,,0.011177347,30,2684,,,0.002980626,8,2684,,,0.002235469,6,2684,,,0.063338301,170,2684,,,0.900149031,2416,2684,,,0.016439455,41,2494,0,0.048306795,0.494038748,1326,2684,,,1,2574,2574,, -16,025,16025,ID,Camas County,2024,1,10118.79397,20,3114,3713.41905,22024.3545,1,,,,2,,,,2,,,,2,,,,2,12216.55066,3966.680745,28509.35398,1,,,,2,,0.171,,,0.14,0.204,4.138200141,,,3.203545997,5.078371183,5.040790414,,,3.913616193,6.178382258,,,,,,0,,,,,,,,,,,,,,,,,,,,,,0.185,,,0.142,0.234,0.341,,,0.263,0.424,3.9,0.444695258,0.111,,,0.252,,,0.203,0.305,0.070566388,76,1077,,,0.142814586,,,0.112052965,0.177220383,1,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.165148064,145,878,0.142509766,0.187786362,0,0,1139,,,-1139,0,0,1153,,,-1153,,0,1153,,,,,,,,,,,,,,0.4,,,,,,,,,0.4,0.3,,,,,,,,,0.3,0.871759891,639,733,0.789915553,0.953604229,0.518731989,180,347,0.347312043,0.690151934,0.027586207,20,725,,,0.136,34,,0.081191489,0.190808511,,,,,,,,,,0.27631579,0,0.645004127,0.046218487,0,0.143688565,3.985326002,126833,31825,2.207665271,5.762986732,0.169590643,58,342,0,0.342071946,0,0,1139,,,,,,,,,,,,,,,,,,,,,,,,,,3.4,,,,,0,,,,,0.166666667,65,390,0.063188354,0.270144979,0.151282051,0.015938262,0.286625841,0.025641026,0,0.105530147,0,0,0.051846782,0.765591398,356,465,0.645817078,0.885365718,,,,,,,,,,,,,,,,0.699,,465,0.450969803,0.947030197,,,,,,,,,,,,,,,,,,,,,,,,421.9735952,20,3114,230.6968912,707.999991,,,,,,,,,,,,,482.3035752,256.8063411,824.7538023,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.126,,,0.105,0.147,0.168,,,0.143,0.195,0.096,,,0.08,0.113,0,0,978,,,0.111,120,,,,0.444695258,496.7246027,1117,,,,,,,,,,,,,,,,,,,,,,,,,,0.332,,,0.315,0.35,0.169059011,106,627,0.142846245,0.195271777,0.162878788,43,264,0.117602192,0.208155384,0.000867303,1,1153,,,1153,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-2300.486,,,,,0.693004255,40714,58750,0.366934816,1.019073695,73311,,,63033.21277,83588.78723,,,,,,,,,,,,,71705,42845.93617,100564.0638,,,,,,0.314606742,56,178,,,,,,,,0.170615597,,73311,,,,,63,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.930864198,754,810,,,0.276,,,,,2.532773031,,,,,0.761609907,246,323,0.667914049,0.855305765,0.1,29,290,0,0.32132992,0.854489164,276,323,0.748963792,0.960014536,1153,,,,,0.217692975,251,1153,,,0.242844753,280,1153,,,0.004336513,5,1153,,,0.013876843,16,1153,,,0.004336513,5,1153,,,0,0,1153,,,0.09019948,104,1153,,,0.859496964,991,1153,,,0.016068053,17,1058,0,0.075729309,0.474414571,547,1153,,,1,1077,1077,, -16,027,16027,ID,Canyon County,2024,1,7017.450106,2668,671135,6638.697611,7396.202601,0,,,,2,,,,2,,,,2,6417.659964,5699.430475,7135.889453,,7235.917923,6769.972242,7701.863605,,,,,2,,0.159,,,0.134,0.184,3.761131606,,,3.090227614,4.467589686,4.804371849,,,4.08178106,5.557412882,0.069237072,1521,21968,0.065880085,0.072594059,0,0.111111111,0.046182322,0.1760399,0.067484663,0.028972953,0.105996373,,,,0.071930853,0.065801414,0.078060291,0.067242356,0.063112626,0.071372085,,,,0.080729167,0.053481618,0.107976715,0.166,,,0.136,0.198,0.365,,,0.321,0.41,8.3,0.074324839,0.084,,,0.258,,,0.222,0.298,0.761229744,175924,231105,,,0.159077941,,,0.133649967,0.186345937,0.284552846,35,123,0.238481549,0.33168244,428.6,1042,243115,,,20.26970433,1210,59695,19.12758679,21.41182187,,,,,,,20.36659878,9.766575756,37.45490029,29.55129472,27.1827478,31.91984164,15.33304023,14.0608055,16.60527496,,,,12.99468399,8.143699275,19.67410773,0.123607273,25494,206250,0.11050089,0.136713656,0.000312609,76,243115,,,3198.881579,0.000450083,113,251065,,,2221.814159,0.001864059,468,251065,,,536.4636752,1672,,,,,,,2991,2786,1567,0.4,,,,,0.21,0.34,,0.24,0.41,0.4,,,,,0.35,0.48,0.3,0.3,0.41,0.869763095,128424,147654,0.858748604,0.880777585,0.588705022,36714,62364,0.556682231,0.620727813,0.029136099,3348,114909,,,0.127,8296,,0.094829787,0.159170213,0.069836553,0,0.145718143,0.313131313,0,0.740263141,0.12849162,0.011882872,0.245100369,0.198068061,0.164180897,0.231955226,0.068664716,0.051722898,0.085606534,3.457975785,117668,34028,3.246257358,3.669694212,0.169706149,10869,64046,0.14632716,0.193085138,4.771404479,116,243115,,,69.63915442,801,1150215,64.81642049,74.46188835,,,,,,,,,,44.21362664,36.61315514,51.81409814,80.23110533,74.04407011,86.41814054,,,,6.9,,,,,1,,,,,0.126432214,9545,75495,0.114555073,0.138309355,0.09135004,0.080174096,0.102525985,0.034836744,0.028346652,0.041326836,0.007550169,0.004279355,0.010820983,0.763094882,81584,106912,0.744542031,0.781647733,,,,0.775716695,0.704781583,0.846651807,,,,0.715965167,0.688964704,0.74296563,0.767794955,0.748043852,0.787546058,0.388,,106912,0.365709275,0.410290725,77.99160352,,,77.63366567,78.34954138,,,,84.22222917,78.89279024,89.5516681,,,,79.44642876,78.27221159,80.62064593,77.69095067,77.28208574,78.09981561,,,,351.3915295,2668,671135,337.7874059,364.995653,,,,,,,,,,320.4049363,287.5448142,353.2650584,362.6871081,346.8474238,378.5267925,,,,51.67050388,147,284495,43.31754967,60.02345809,,,,,,,,,,53.29847144,39.92421252,69.71571292,52.2711522,41.97802741,64.32415068,,,,4.819608923,105,21786,3.89773141,5.741486436,,,,,,,,,,5.575935437,3.945863778,7.653407031,4.642525534,3.583003195,5.917279895,,,,,,,0.116,,,0.1,0.133,0.162,,,0.141,0.183,0.11,,,0.095,0.125,28.4,56,196922,,,0.084,19000,,,,0.074324839,14041.67164,188923,,,13.23911963,94,710017,10.69855629,16.20132951,,,,,,,,,,9.340146146,5.440979325,14.95447877,15.32288957,12.07269418,19.17888122,,,,0.305,,,0.293,0.317,0.142159741,20093,141341,0.12667038,0.157649103,0.085983009,5860,68153,0.066919179,0.105046839,0.000864318,217,251065,,,1156.981567,0.740438488,2389.395,3227,,,0.085783788,1199,13977,0.053138117,0.118429459,3.009984174,,,,,,,,2.705355006,3.204185099,2.850125195,,,,,,,,2.49658001,3.069176773,0.083333053,,,,,-4784.17095,,,,,0.763496843,39301,51475,0.731709948,0.795283738,70594,,,66746.68085,74441.31915,49550,10506.08511,88593.91489,90450,60714,120186,70169,38233.51064,102104.4894,64104,60655.82979,67552.17021,70201,67958.61702,72443.38298,,,,,,0.346287992,13900,40140,,,74.07464383,,,,,0.209465394,,70594,,,4.641089109,75,16160,,,2.421321392,38,1569391,1.713471126,3.323452786,,,,,,,,,,3.011949911,1.556318471,5.261270352,2.267948088,1.467696422,3.347938771,,,,19.67184707,221,1150215,17.0442181,22.29947604,19.21379916,,,,,,,,,,8.453967406,5.359090146,12.68510197,22.79617114,19.45143078,26.1409115,,,,15.04066631,173,1150215,12.79936577,17.28196685,,,,,,,,,,7.482306047,4.689121364,11.32830127,18.25692335,15.30554426,21.20830244,,,,14.84652327,233,1569391,12.94017224,16.7528743,,,,,,,,,,17.06771616,13.25374944,21.63739716,14.06127814,11.84759723,16.27495906,,,,,,,,,,,0.599118651,90410,150905,,,0.74,,,,,91.92653918,,,,,0.747654525,59609,79728,0.734296605,0.761012446,0.097886083,7608,77723,0.087620057,0.108152109,0.91654124,73074,79728,0.907806972,0.925275509,251065,,,,,0.264102922,66307,251065,,,0.145898473,36630,251065,,,0.007065899,1774,251065,,,0.017067293,4285,251065,,,0.012494772,3137,251065,,,0.003564814,895,251065,,,0.258339474,64860,251065,,,0.693581344,174134,251065,,,0.028515268,6238,218760,0.024019243,0.033011293,0.499910382,125510,251065,,,0.187269856,43279,231105,, -16,029,16029,ID,Caribou County,2024,1,6689.544548,94,19805,4800.532663,9075.122537,0,,,,2,,,,2,,,,2,,,,2,6769.906632,4790.788857,9292.225782,,,,,2,,0.141,,,0.119,0.169,3.633216853,,,2.842071898,4.467042344,4.894412981,,,3.89808406,5.93847007,0.092043682,59,641,0.069663865,0.114423499,0,,,,,,,,,,,,,0.088082902,0.064997349,0.111168454,,,,,,,0.153,,,0.121,0.192,0.326,,,0.258,0.4,9.5,0.01377435,0.058,,,0.216,,,0.175,0.264,0.594848442,4180,7027,,,0.1680942,,,0.132565849,0.206234027,0.333333333,3,9,0.150331965,0.513162068,112.5,8,7111,,,17.31102135,30,1733,11.67967341,24.71255937,,,,,,,,,,,,,16.50793651,10.7835322,24.1879518,,,,,,,0.10168327,592,5822,0.086193909,0.117172632,0.000562509,4,7111,,,1777.75,0.00069541,5,7190,,,1438,0.000278164,2,7190,,,3595,2110,,,,,,,,,2141,0.29,,,,,,,,,0.29,0.38,,,,,,,,,0.39,0.904243501,4070,4501,0.858847045,0.949639958,0.543672014,915,1683,0.446739632,0.640604396,0.027811077,116,4171,,,0.121,238,,0.072148936,0.169851064,,,,,,,,,,,,,0.077186964,0.036456127,0.117917801,4.288030569,124563,29049,3.615471583,4.960589555,0.095580678,186,1946,0.035095521,0.156065836,0,0,7111,,,90.18403179,32,35483,61.68581098,127.3129445,,,,,,,,,,,,,92.62117938,62.49112078,132.2224927,,,,4.4,,,,,0,,,,,0.09375,240,2560,0.060783545,0.126716455,0.048513302,0.015611928,0.081414676,0.02890625,0.010355616,0.047456884,0.017578125,0.003896753,0.031259497,0.791129757,2640,3337,0.730901683,0.851357831,,,,,,,,,,,,,0.822781151,0.763352276,0.882210025,0.168,,3337,0.11571004,0.22028996,77.57893497,,,75.73656172,79.42130821,,,,,,,,,,,,,77.25921919,75.36540637,79.153032,,,,370.3298985,94,19805,296.2161172,457.354412,,,,,,,,,,,,,381.6444819,303.5331823,473.7214311,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.11,,,0.094,0.129,0.161,,,0.138,0.186,0.084,,,0.071,0.099,0,0,5724,,,0.058,400,,,,0.01377435,95.91079908,6963,,,,,,,,,,,,,,,,,,,,,,,,,,0.303,,,0.286,0.319,0.118136872,454,3843,0.099073042,0.137200702,0.072011522,150,2083,0.049373224,0.09464982,0.000556328,4,7190,,,1797.5,0.85261194,114.25,134,,,,,,,,2.969165238,,,,,,,,,2.963591891,2.823547391,,,,,,,,,2.859770079,0.048393331,,,,,-1876.605867,,,,,0.525317228,34444,65568,0.377210746,0.67342371,70354,,,60579.02128,80128.97872,,,,,,,,,,,,,66178,59006.42553,73349.57447,,,,,,0.252611586,266,1053,,,,,,,,0.177786622,,70354,,,6.756756757,3,444,,,,,,,,,,,,,,,,,,,,,,,,,,33.216424,11,35483,16.58151918,59.43335786,31.00076093,,,,,,,,,,,,,36.82434389,17.65870424,67.72127951,,,,28.18250993,10,35483,13.51460896,51.82863919,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.712408759,3416,4795,,,0.573,,,,,7.838881852,,,,,0.778393352,1967,2527,0.735624231,0.821162473,0.080066722,192,2398,0.028535524,0.13159792,0.905421448,2288,2527,0.870016592,0.940826304,7190,,,,,0.276216968,1986,7190,,,0.178164117,1281,7190,,,0.002920723,21,7190,,,0.007371349,53,7190,,,0.005146036,37,7190,,,0.003337969,24,7190,,,0.07496523,539,7190,,,0.897913769,6456,7190,,,0.001360133,9,6617,0,0.014280964,0.492767733,3543,7190,,,1,7027,7027,, -16,031,16031,ID,Cassia County,2024,1,7786.167802,295,68962,6527.699601,9044.636003,0,,,,2,,,,2,,,,2,6085.304123,4262.072196,8424.625945,,8707.877111,7028.538161,10387.21606,,,,,2,,0.18,,,0.153,0.209,3.978006607,,,3.163490427,4.837374786,4.883290065,,,3.9396861,5.839965487,0.073243647,196,2676,0.063372201,0.083115094,0,,,,,,,,,,0.075975359,0.059335305,0.092615414,0.072340426,0.059821762,0.084859089,,,,,,,0.167,,,0.134,0.203,0.358,,,0.293,0.42,8.3,0.089599809,0.079,,,0.258,,,0.215,0.304,0.615372136,15172,24655,,,0.157161606,,,0.125053836,0.191198586,0.391304348,9,23,0.282261006,0.49504965,373.5,94,25164,,,26.82163612,180,6711,22.90326935,30.74000289,,,,,,,,,,40.82474227,33.18033602,49.70265887,18.42299189,14.49085181,23.09337987,,,,,,,0.148291852,3134,21134,0.129228022,0.167355682,0.000874265,22,25164,,,1143.818182,0.000740596,19,25655,,,1350.263158,0.001481193,38,25655,,,675.131579,2129,,,,,,,,1516,2047,0.36,,,,,,,,0.33,0.37,0.37,,,,,,,,0.35,0.37,0.856950522,12730,14855,0.836715002,0.877186041,0.596873982,3666,6142,0.527639844,0.666108121,0.022345574,314,14052,,,0.143,1111,,0.089382979,0.196617021,,,,,,,,,,0.202290076,0.123965151,0.280615002,0.091080798,0.046323379,0.135838216,4.108996418,117016,28478,3.490533835,4.727459002,0.099753215,768,7699,0.057650278,0.141856152,3.973931013,10,25164,,,109.9182638,133,120999,91.2372642,128.5992634,,,,,,,,,,74.82341674,48.42177017,110.4541234,126.3393762,102.2878928,150.3908596,,,,4.9,,,,,1,,,,,0.123243934,965,7830,0.092868311,0.153619557,0.082451613,0.0565807,0.108322526,0.037675607,0.018021127,0.057330086,0.004980843,0,0.01332035,0.817995728,9191,11236,0.793117688,0.842873768,,,,,,,,,,0.810509554,0.73772517,0.883293939,0.8258365,0.78122693,0.870446069,0.138,,11236,0.108887645,0.167112355,77.04108105,,,75.91939114,78.16277096,,,,,,,,,,79.99992342,76.23059734,83.7692495,76.1226104,74.7495619,77.4956589,,,,382.4665113,295,68962,337.7825935,427.150429,,,,,,,,,,367.8105561,269.2835546,490.6077381,405.5451126,352.2986609,458.7915643,,,,75.05929685,25,33307,48.57441934,110.8023289,,,,,,,,,,,,,86.02150538,50.98179584,135.9510646,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.125,,,0.108,0.144,0.161,,,0.139,0.184,0.107,,,0.092,0.124,25.3,5,19737,,,0.079,1940,,,,0.089599809,2056.494804,22952,,,20.41621864,15,73471,11.42680259,33.67344785,,,,,,,,,,,,,25.54178046,13.59992238,43.67722247,,,,0.31,,,0.297,0.323,0.175737802,2370,13486,0.149525036,0.201950568,0.102908277,828,8046,0.074312533,0.131504022,0.001052426,27,25655,,,950.1851852,0.8,338.4,423,,,,,,,,3.004210853,,,,,,,,2.651311404,3.188754489,3.012060995,,,,,,,,2.537878475,3.254183919,0.057101954,,,,,-2504.043,,,,,0.700758171,35677,50912,0.559815595,0.841700747,68170,,,61672.80851,74667.19149,,,,,,,,,,49753,31261.08511,68244.91489,64678,60494.68085,68861.31915,,,,,,0.36130324,1985,5494,,,,,,,,0.216913598,,68170,,,5.213764338,10,1918,,,,,,,,,,,,,,,,,,,,,,,,,,25.9606373,30,120999,17.38624624,37.28380561,24.79359334,,,,,,,,,,,,,29.68040656,18.60055277,44.93649222,,,,14.876156,18,120999,8.816552848,23.51073998,,,,,,,,,,,,,19.07009452,10.90020674,30.96863875,,,,27.37948562,46,168009,20.04522461,36.52039695,,,,,,,,,,36.77504489,21.42281885,58.88040932,23.09903497,15.2224096,33.60788314,,,,,,,,,,,0.648854447,9629,14840,,,0.602,,,,,41.18746508,,,,,0.693031785,5669,8180,0.658272554,0.727791016,0.094766988,728,7682,0.064804665,0.124729311,0.871515892,7129,8180,0.850199632,0.892832153,25655,,,,,0.307191581,7881,25655,,,0.147261742,3778,25655,,,0.003975833,102,25655,,,0.019177548,492,25655,,,0.008341454,214,25655,,,0.002650555,68,25655,,,0.286610797,7353,25655,,,0.682206198,17502,25655,,,0.039385877,903,22927,0.027133206,0.051638548,0.484194114,12422,25655,,,0.503143379,12405,24655,, -16,033,16033,ID,Clark County,2024,0,,,,,,2,,,,2,,,,2,,,,2,,,,2,,,,2,,,,2,,0.211,,,0.179,0.243,4.379378239,,,3.506794988,5.301561173,4.782149527,,,3.798321289,5.861472242,,,,,,0,,,,,,,,,,,,,,,,,,,,,,0.173,,,0.14,0.208,0.337,,,0.264,0.416,4.4,0.506963789,0.057,,,0.299,,,0.248,0.352,0.05443038,43,790,,,0.150588328,,,0.12040534,0.186217519,0.25,1,4,0.023230216,0.544021398,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.273015873,172,630,0.237271192,0.308760554,0,0,792,,,-792,0,0,806,,,-806,0,0,806,,,-806,,,,,,,,,,,0.5,,,,,,,,,0.6,0.33,,,,,,,,,0.36,0.616465864,307,498,0.495724947,0.73720678,0.505617978,90,178,0.234660372,0.776575583,0.035897436,14,390,,,0.224,43,,0.135829787,0.312170213,,,,,,,,,,0.111111111,0,0.730998849,0.09375,0.015788329,0.171711671,2.410432491,69500,28833,1.657264784,3.163600198,0.082802548,13,157,0,0.228867379,0,0,792,,,,,,,,,,,,,,,,,,,,,,,,,,3.3,,,,,1,,,,,0.057575758,19,330,0,0.133847837,0.024539877,0,0.160865201,0.03030303,0,0.12242399,0,0,0.06127347,0.663341646,266,401,0.561462498,0.765220794,,,,,,,,,,,,,,,,0.316,,401,0.11899308,0.51300692,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.136,,,0.117,0.156,0.161,,,0.141,0.184,0.114,,,0.098,0.131,0,0,652,,,0.057,50,,,,0.506963789,497.8384412,982,,,,,,,,,,,,,,,,,,,,,,,,,,0.319,,,0.306,0.332,0.296875,133,448,0.253981383,0.339768617,0.213541667,41,192,0.15158422,0.275499114,0,0,806,,,-806,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.006893705,,,,,-14571.62,,,,,0.874452012,35306,40375,0.656026389,1.092877636,53366,,,45290.08511,61441.91489,,,,,,,,,,50625,28658.70213,72591.29787,58688,49891.23404,67484.76596,,,,,,0.702479339,85,121,,,,,,,,0.234381441,,53366,,,,,62,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.676086957,311,460,,,0.34,,,,,3.634564832,,,,,0.705426357,182,258,0.36516492,1,0.049586777,12,242,0,0.274991985,0.856589147,221,258,0.679833295,1,806,,,,,0.240694789,194,806,,,0.189826303,153,806,,,0.024813896,20,806,,,0.039702233,32,806,,,0.008684864,7,806,,,0.00248139,2,806,,,0.398263027,321,806,,,0.533498759,430,806,,,0.216713881,153,706,0.084267631,0.349160131,0.475186104,383,806,,,1,790,790,, -16,035,16035,ID,Clearwater County,2024,1,8406.415767,157,23370,5526.349833,11286.4817,0,,,,2,,,,2,,,,2,,,,2,9495.152578,6134.803734,12855.50142,,,,,2,,0.154,,,0.131,0.179,3.821447622,,,3.046425837,4.636077043,5.056461959,,,4.084934449,6.063357022,0.063917526,31,485,0.042147836,0.085687215,0,,,,,,,,,,,,,0.057736721,0.035767011,0.07970643,,,,,,,0.178,,,0.143,0.216,0.336,,,0.27,0.409,7.9,0.034415662,0.123,,,0.23,,,0.188,0.277,0.373368445,3261,8734,,,0.154307286,,,0.123116986,0.190021485,0.4,2,5,0.149190828,0.619170557,292.3,26,8895,,,16.36661211,20,1222,9.99715187,25.27690499,,,,,,,,,,,,,14.59143969,8.166718028,24.06636077,,,,,,,0.10476025,603,5756,0.088079399,0.121441101,0.001349073,12,8895,,,741.25,0.000443705,4,9015,,,2253.75,0.001442041,13,9015,,,693.4615385,1824,,,,,,,,,1867,0.38,,,,,,,,,0.38,0.33,,,,,0.33,,,,0.33,0.917537419,6498,7082,0.896613642,0.938461195,0.503177966,950,1888,0.415097721,0.591258211,0.051443744,155,3013,,,0.222,280,,0.140978723,0.303021277,,,,,,,,,,,,,0.150619638,0.08777619,0.213463085,4.16067378,99049,23806,3.317462311,5.003885249,0.152410575,196,1286,0.078494292,0.226326859,6.745362563,6,8895,,,102.7373804,45,43801,74.93735026,137.4706982,,,,,,,,,,,,,109.2479675,79.06329576,147.1562953,,,,7.9,,,,,0,,,,,0.098730607,350,3545,0.071695666,0.125765547,0.074857143,0.049802089,0.099912197,0.016643159,0.005512973,0.027773345,0.019746121,0.009827919,0.029664323,0.785995756,2593,3299,0.762012528,0.809978984,,,,,,,,,,,,,0.750819672,0.728511246,0.773128098,0.323,,3299,0.255789016,0.390210985,78.30013849,,,75.8986109,80.70166607,,,,,,,,,,,,,77.04742621,74.35307621,79.74177621,,,,371.6244818,157,23370,303.0214181,440.2275455,,,,,,,,,,,,,398.5620015,321.1240679,475.999935,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.117,,,0.101,0.134,0.161,,,0.14,0.185,0.096,,,0.081,0.111,,,,,,0.123,1070,,,,0.034415662,301.5156174,8761,,,,,,,,,,,,,,,,,,,,,,,,,,0.317,,,0.3,0.332,0.118026228,531,4499,0.097770909,0.138281547,0.060902256,81,1330,0.041838426,0.079966085,0.000776484,7,9015,,,1287.857143,0.475,75.05,158,,,,,,,,3.084111494,,,,,,,,,3.168977184,3.318258243,,,,,,,,,3.386615583,0.023346225,,,,,188.8799,,,,,0.710192972,40704,57314,0.629307817,0.791078127,57081,,,49196.91489,64965.08511,,,,,,,,,,32361,2993.170213,61728.82979,56788,52143.57447,61432.42553,,,,,,0.249443207,224,898,,,,,,,,0.259052925,,57081,,,5.747126437,2,348,,,,,,,,,,,,,,,,,,,,,,,,,,20.7731226,13,43801,9.961519728,38.20251206,29.67968768,,,,,,,,,,,,,18.99547471,8.68594062,36.05932798,,,,31.96274058,14,43801,17.4743277,53.62804758,,,,,,,,,,,,,33.02845529,17.58626141,56.47966443,,,,23.02858835,14,60794,12.58994354,38.63805823,,,,,,,,,,,,,25.56003871,13.97391101,42.88540179,,,,,,,,,,,0.625477707,4419,7065,,,0.467,,,,,7.576693603,,,,,0.799772145,2808,3511,0.773620126,0.825924164,0.107591154,360,3346,0.07476379,0.140418517,0.78809456,2767,3511,0.741165185,0.835023935,9015,,,,,0.142429285,1284,9015,,,0.292956184,2641,9015,,,0.006211869,56,9015,,,0.025845813,233,9015,,,0.008208541,74,9015,,,0.002329451,21,9015,,,0.04625624,417,9015,,,0.891957848,8041,9015,,,0.007771106,66,8493,0,0.017436845,0.447032723,4030,9015,,,1,8734,8734,, -16,037,16037,ID,Custer County,2024,1,11426.372,89,11541,7073.104358,17466.42337,1,,,,2,,,,2,,,,2,,,,2,12369.29216,7555.484999,19103.36854,1,,,,2,,0.161,,,0.132,0.194,3.995136751,,,3.121304066,4.932775578,4.882000451,,,3.864401784,5.973941116,0.06302521,15,238,0.032151509,0.093898911,1,,,,,,,,,,,,,0.063063063,0.031087199,0.095038928,,,,,,,0.175,,,0.135,0.22,0.337,,,0.268,0.414,7.3,0.082770608,0.129,,,0.24,,,0.192,0.294,0.758362573,3242,4275,,,0.151613442,,,0.119818765,0.18865864,0.444444444,4,9,0.264827841,0.599456043,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.120706575,369,3057,0.101642745,0.139770405,,0,4428,,,,0.000221926,1,4506,,,4506,0.000665779,3,4506,,,1502,1333,,,,,,,,,1357,0.37,,,,,,,,,0.37,0.35,,,,,,,,,0.35,0.912930286,3156,3457,0.836203058,0.989657515,0.753012048,500,664,0.549854027,0.956170069,0.032372506,73,2255,,,0.191,139,,0.11593617,0.26606383,,,,,,,,,,0.068627451,0,0.31535237,0.192090396,0.032945849,0.351234942,4.270468891,94719,22180,2.106767143,6.434170639,0.010719755,7,653,0,0.04172035,6.775067751,3,4428,,,125.9093453,27,21444,82.97505191,183.1914869,,,,,,,,,,,,,127.4664763,82.48958266,188.1656641,,,,3.4,,,,,0,,,,,0.126984127,240,1890,0.057503141,0.196465113,0.1184,0.042433053,0.194366947,0.01005291,0,0.027270411,0,0,0.010698542,0.536322361,945,1762,0.50220952,0.570435202,,,,,,,,,,,,,0.517799353,0.476416237,0.559182468,0.167,,1762,0.063683375,0.270316625,76.90090692,,,72.79793554,81.0038783,,,,,,,,,,,,,76.08644205,71.66828932,80.50459479,,,,453.159577,89,11541,344.1030657,585.8138374,,,,,,,,,,,,,479.4184371,360.1538852,625.5370657,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.122,,,0.103,0.144,0.168,,,0.142,0.194,0.094,,,0.079,0.111,0,0,3924,,,0.129,550,,,,0.082770608,361.5420145,4368,,,,,,,,,,,,,,,,,,,,,,,,,,0.305,,,0.286,0.323,0.130286203,305,2341,0.107647905,0.1529245,0.08994709,68,756,0.061351345,0.118542835,0.002219263,10,4506,,,450.6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.034701348,,,,,-4465.495,,,,,0.916904762,38510,42000,0.603108938,1.230700586,57405,,,49032.40426,65777.59575,,,,,,,,,,23500,22727.91489,24272.08511,62976,51400.68085,74551.31915,,,,,,0.244642857,137,560,,,,,,,,0.341555614,,57405,,,6.578947368,1,152,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,40.50359469,12,29627,20.92879842,70.75162875,,,,,,,,,,,,,40.46646801,20.20071503,72.40568927,,,,,,,,,,,0.80204978,2739,3415,,,0.349,,,,,4.307604244,,,,,0.778761062,1408,1808,0.70955066,0.847971464,0.119260584,200,1677,0.038646215,0.199874954,0.882190266,1595,1808,0.809167031,0.9552135,4506,,,,,0.166666667,751,4506,,,0.302929427,1365,4506,,,0.004882379,22,4506,,,0.011540169,52,4506,,,0.005770084,26,4506,,,0.000221926,1,4506,,,0.063470928,286,4506,,,0.891034177,4015,4506,,,0.004769855,20,4193,0,0.028358607,0.467376831,2106,4506,,,1,4275,4275,, -16,039,16039,ID,Elmore County,2024,1,7230.852282,346,79105,6134.04783,8327.656735,0,,,,2,,,,2,,,,2,5234.293756,3318.093238,7854.010648,1,7920.559485,6565.608346,9275.510624,,,,,2,,0.175,,,0.149,0.204,4.065304846,,,3.233789378,4.989771617,4.867731258,,,3.899090123,5.923653266,0.07204611,225,3123,0.062977545,0.081114674,0,,,,0.115702479,0.058707851,0.172697107,,,,0.074750831,0.053742324,0.095759338,0.067070331,0.056489257,0.077651404,,,,0.08,0.032440205,0.127559795,0.182,,,0.146,0.22,0.368,,,0.298,0.442,7.1,0.141455619,0.108,,,0.27,,,0.224,0.321,0.928556478,26618,28666,,,0.167565429,,,0.13405546,0.205814792,0.224489796,11,49,0.151478323,0.303826129,468.3,135,28827,,,33.59970941,185,5506,28.75792187,38.44149695,,,,,,,,,,31.31245836,23.00721663,41.63893161,36.60322108,30.18639351,43.02004866,,,,40.98360656,19.65323236,75.37031165,0.118897473,2847,23945,0.101025133,0.136769814,0.000555035,16,28827,,,1801.6875,0.000816243,24,29403,,,1225.125,0.001666497,49,29403,,,600.0612245,1977,,,,,,,,,2071,0.31,,,,,,0.36,,0.22,0.31,0.22,,,,,,0.18,0.24,0.19,0.23,0.880129649,16021,18203,0.854537377,0.905721921,0.646630237,5325,8235,0.576146054,0.71711442,0.028930918,361,12478,,,0.148,1021,,0.087234043,0.208765957,0.469135803,0.168241141,0.770030464,0.068100358,0,0.288944003,,,,0.226392962,0.130824336,0.321961587,0.098885464,0.060853405,0.136917522,3.585385992,104220,29068,3.192804873,3.97796711,0.209695927,1462,6972,0.137762986,0.281628867,4.509661082,13,28827,,,73.9838106,102,137868,59.6258525,88.34176871,,,,,,,,,,,,,90.19391692,72.52656024,110.8636366,,,,5.4,,,,,0,,,,,0.097381718,1060,10885,0.068471402,0.126292034,0.073442623,0.048703826,0.09818142,0.017455214,0.006170869,0.028739558,0.011483693,0.003745287,0.019222099,0.83444215,10912,13077,0.809379693,0.859504608,,,,,,,,,,0.832911392,0.627132829,1,0.826975169,0.797468291,0.856482048,0.24,,13077,0.196043892,0.283956108,77.8531844,,,76.73866391,78.96770489,,,,,,,,,,86.018094,76.75261186,95.28357613,76.81053954,75.58555093,78.03552815,,,,379.5241225,346,79105,338.1566016,420.8916435,,,,,,,,,,256.8274486,169.250907,373.6704538,417.6586025,368.2600873,467.0571176,,,,59.04930617,18,30483,34.99636119,93.32336144,,,,,,,,,,,,,60.67347558,31.3508702,105.9843515,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.128,,,0.111,0.148,0.165,,,0.142,0.191,0.107,,,0.091,0.125,50.8,12,23603,,,0.108,3060,,,,0.141455619,3824.67703,27038,,,17.90275225,15,83786,10.02003453,29.52786727,,,,,,,,,,,,,23.11718763,12.63838159,38.78671277,,,,0.334,,,0.32,0.347,0.138081739,2338,16932,0.114251952,0.161911526,0.074935047,548,7313,0.05110526,0.098764834,0.001088324,32,29403,,,918.84375,0.62907563,299.44,476,,,,,,,,2.764502848,,,,,,,,2.689935717,2.785142638,2.711700607,,,,,,,,2.44154876,2.812544195,0.031876997,,,,,-6062.3285,,,,,0.818446624,36808,44973,0.697553995,0.939339252,63009,,,56841.85106,69176.14894,29902,12835.10638,46968.89362,69926,39048.55319,100803.4468,55500,5660,105340,45413,29236.14894,61589.85106,57737,52768.48936,62705.51064,,,,,,0.288770054,1188,4114,,,53.60330733,,,,,0.23468076,,63009,,,6.097560976,14,2296,,,,,,,,,,,,,,,,,,,,,,,,,,18.81944,27,137868,12.17894929,27.78120591,19.58394987,,,,,,,,,,,,,22.79664183,14.4511154,34.20615579,,,,15.23196101,21,137868,9.428823936,23.28367042,,,,,,,,,,,,,21.04524728,13.02733977,32.16989601,,,,18.97113226,36,189762,13.28714781,26.26404364,,,,,,,,,,,,,19.5856546,12.90706979,28.49609915,,,,,,,,,,,0.538522427,10205,18950,,,0.598,,,,,42.61226825,,,,,0.62527881,6728,10760,0.589856208,0.660701413,0.088982204,890,10002,0.062860462,0.115103945,0.898420074,9667,10760,0.874916846,0.921923303,29403,,,,,0.237220692,6975,29403,,,0.147978098,4351,29403,,,0.025983743,764,29403,,,0.017753291,522,29403,,,0.028568513,840,29403,,,0.004625378,136,29403,,,0.181512091,5337,29403,,,0.718872224,21137,29403,,,0.030863964,817,26471,0.018428725,0.043299204,0.469645955,13809,29403,,,0.379090211,10867,28666,, -16,041,16041,ID,Franklin County,2024,1,5954.633722,134,40139,4505.854553,7403.412891,0,,,,2,,,,2,,,,2,,,,2,6017.02777,4476.111011,7557.94453,,,,,2,,0.159,,,0.133,0.185,4.097356197,,,3.291972848,5.001421035,5.336858802,,,4.317428921,6.367825512,0.070844687,104,1468,0.057719943,0.083969431,0,,,,,,,,,,0.087719298,0.03578964,0.139648956,0.069749811,0.056002901,0.08349672,,,,,,,0.177,,,0.14,0.214,0.375,,,0.305,0.447,9.2,0.013047738,0.073,,,0.257,,,0.208,0.305,0.619909821,8799,14194,,,0.164350095,,,0.131192561,0.201967061,0.375,3,8,0.179126284,0.556186502,109.1,16,14666,,,11.7965102,48,4069,8.69781539,15.64046109,,,,,,,,,,34.7826087,17.97268148,60.75821753,10.04464286,7.035144369,13.90601967,,,,,,,0.113399583,1415,12478,0.096718732,0.130080434,0.000340925,5,14666,,,2933.2,0.000592534,9,15189,,,1687.666667,0.000526697,8,15189,,,1898.625,2905,,,,,,,,,2973,0.33,,,,,,,,,0.34,0.36,,,,,,,,0.19,0.37,0.920978694,7867,8542,0.890006529,0.951950858,0.452374017,1553,3433,0.370458562,0.534289472,0.022128556,168,7592,,,0.099,450,,0.058489362,0.139510638,,,,,,,,,,0.283464567,0,0.583826766,0.086717317,0.043780835,0.1296538,3.910122778,122293,31276,2.585454719,5.234790837,0.0787068,353,4485,0.038070862,0.119342739,0,0,14666,,,71.38064442,50,70047,52.98009014,94.10648088,,,,,,,,,,,,,77.00891103,56.97161632,101.8098644,,,,5.8,,,,,1,,,,,0.135440181,600,4430,0.088918336,0.181962025,0.085824275,0.046259904,0.125388647,0.0496614,0.016869345,0.082453454,0.023702032,0.005356867,0.042047197,0.783278842,5031,6423,0.724440118,0.842117565,,,,,,,,,,,,,0.715126256,0.658149925,0.772102588,0.376,,6423,0.301878252,0.450121748,79.47016501,,,78.01407617,80.92625385,,,,,,,,,,,,,79.31615011,77.81146139,80.82083884,,,,299.7296011,134,40139,247.7331513,351.726051,,,,,,,,,,,,,301.5028527,247.5350634,355.4706421,,,,62.07966891,12,19330,32.07747082,108.4406883,,,,,,,,,,,,,70.23293925,36.29038458,122.6828108,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.121,,,0.103,0.14,0.166,,,0.143,0.191,0.094,,,0.08,0.11,0,0,11617,,,0.073,1020,,,,0.013047738,166.8283782,12786,,,,,,,,,,,,,,,,,,,,,,,,,,0.319,,,0.302,0.335,0.131513338,1055,8022,0.11006653,0.152960147,0.083084789,390,4694,0.058063513,0.108106066,0.000395023,6,15189,,,2531.5,0.853884462,214.325,251,,,,,,,,3.17219276,,,,,,,,2.588387989,3.245657721,3.203789341,,,,,,,,2.569269539,3.274067331,0.015825038,,,,,-999.19925,,,,,0.687412912,37000,53825,0.541501795,0.833324029,71669,,,63857.59575,79480.40426,,,,,,,,,,,,,63819,53917.7234,73720.2766,,,,,,0.241734911,797,3297,,,,,,,,0.206323515,,71669,,,0.955109838,1,1047,,,,,,,,,,,,,,,,,,,,,,,,,,18.93154441,13,70047,9.78220525,33.06959818,18.55896755,,,,,,,,,,,,,19.56165054,10.10779028,34.17026678,,,,14.27612889,10,70047,6.845958708,26.25430931,,,,,,,,,,,,,15.71610429,7.536482887,28.90247535,,,,18.64763227,18,96527,11.05176871,29.47129846,,,,,,,,,,,,,20.52123948,12.16218709,32.43240562,,,,,,,,,,,0.72870421,6664,9145,,,0.713,,,,,19.60230417,,,,,0.773972603,3616,4672,0.735018428,0.812926778,0.115007624,528,4591,0.071800475,0.158214772,0.928296233,4337,4672,0.893613142,0.962979324,15189,,,,,0.301468168,4579,15189,,,0.147804332,2245,15189,,,0.003818553,58,15189,,,0.010468102,159,15189,,,0.003357693,51,15189,,,0.000855883,13,15189,,,0.070774903,1075,15189,,,0.903746132,13727,15189,,,0.003669862,49,13352,0,0.010940332,0.480084272,7292,15189,,,1,14194,14194,, -16,043,16043,ID,Fremont County,2024,1,6888.642634,150,37047,5237.49627,8539.788998,0,,,,2,,,,2,,,,2,,,,2,6629.399295,4877.283674,8381.514915,,,,,2,,0.149,,,0.124,0.176,3.746201807,,,3.00291997,4.616926828,4.564086448,,,3.663652012,5.562064679,0.066129032,82,1240,0.05229704,0.079961025,0,,,,,,,,,,0.09139785,0.049983154,0.132812545,0.060194175,0.045668586,0.074719764,,,,,,,0.165,,,0.129,0.204,0.317,,,0.251,0.387,7.5,0.147552864,0.085,,,0.225,,,0.182,0.271,0.719599642,9634,13388,,,0.173066159,,,0.139412365,0.210293006,0.4,10,25,0.296401693,0.498317032,161.9,22,13592,,,18.44903064,59,3198,14.04425692,23.79790537,,,,,,,,,,25.55910543,14.60923715,41.50638594,17.84973018,12.91793824,24.04346941,,,,,,,0.130617584,1398,10703,0.111553754,0.149681414,0.000294291,4,13592,,,3398,0.000643869,9,13978,,,1553.111111,0.000858492,12,13978,,,1164.833333,1357,,,,,,,,,1405,0.36,,,,,,,,0.25,0.36,0.4,,,,,,,,0.34,0.4,0.898344371,8139,9060,0.87468213,0.922006611,0.553755523,1880,3395,0.472069622,0.635441424,0.024591142,206,8377,,,0.166,519,,0.105234043,0.226765957,,,,,,,,,,0.452755906,0.288864221,0.61664759,0.102304893,0.049406968,0.155202817,3.400244579,114000,33527,2.945471508,3.855017651,0.131106209,416,3173,0.071758066,0.190454351,2.942907593,4,13592,,,83.1179822,55,66171,62.61583922,108.1894787,,,,,,,,,,,,,83.5525848,61.39129661,111.1072252,,,,3.8,,,,,0,,,,,0.117581187,525,4465,0.083662803,0.151499572,0.072919004,0.046439663,0.099398344,0.050391937,0.022302124,0.078481751,0.008734603,0,0.021808774,0.755858692,4322,5718,0.71057931,0.801138074,,,,,,,,,,,,,0.654573643,0.593820335,0.715326952,0.284,,5718,0.222076933,0.345923067,77.90311422,,,76.47339281,79.33283562,,,,,,,,,,,,,78.01103156,76.51683401,79.50522911,,,,314.9666613,150,37047,262.2706785,367.6626441,,,,,,,,,,,,,311.8793718,255.8894079,367.8693357,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.113,,,0.096,0.131,0.158,,,0.135,0.181,0.092,,,0.078,0.106,,,,,,0.085,1140,,,,0.147552864,1953.89503,13242,,,,,,,,,,,,,,,,,,,,,,,,,,0.318,,,0.302,0.333,0.148632736,1136,7643,0.124802949,0.172462523,0.087997512,283,3216,0.061784747,0.114210278,0.000429246,6,13978,,,2329.666667,0.925,128.575,139,,,,,,,,2.900257764,,,,,,,,2.2682896,3.063803049,2.927968896,,,,,,,,2.20541733,3.115606282,0.034431654,,,,,-529.8564,,,,,0.677141678,34455,50883,0.587838972,0.766444384,61115,,,52389.7234,69840.2766,,,,,,,,,,46932,14900,78964,68567,62666.74468,74467.25532,,,,,,0.326652221,603,1846,,,,,,,,0.20466334,,61115,,,2.447980416,2,817,,,,,,,,,,,,,,,,,,,,,,,,,,17.71664305,11,66171,8.844084377,31.69996825,16.62359644,,,,,,,,,,,,,19.42961643,9.317256301,35.73175639,,,,,,,,,,,,,,,,,,,,,,,,,,,19.57947636,18,91933,11.60403857,30.94401387,,,,,,,,,,,,,19.176436,10.73290566,31.62861491,,,,,,,,,,,0.734718425,6719,9145,,,0.39,,,,,20.91391531,,,,,0.83912037,3625,4320,0.809175481,0.86906526,0.063318258,266,4201,0.034336047,0.092300468,0.909259259,3928,4320,0.876242459,0.942276059,13978,,,,,0.233009014,3257,13978,,,0.18300186,2558,13978,,,0.004077837,57,13978,,,0.011231936,157,13978,,,0.005222493,73,13978,,,0.005150952,72,13978,,,0.123479754,1726,13978,,,0.846258406,11829,13978,,,0.030853995,392,12705,0.014118335,0.047589654,0.47116898,6586,13978,,,1,13388,13388,, -16,045,16045,ID,Gem County,2024,1,8526.173761,326,51471,6900.378468,10151.96905,0,,,,2,,,,2,,,,2,,,,2,9134.82776,7288.95054,10980.70498,,,,,2,,0.149,,,0.125,0.177,3.740120916,,,2.95865775,4.599451348,4.535542795,,,3.635992458,5.494274316,0.072961373,102,1398,0.05932817,0.086594576,0,,,,,,,,,,0.111111111,0.062716049,0.159506173,0.066213922,0.052014137,0.080413707,,,,,,,0.166,,,0.132,0.205,0.319,,,0.254,0.389,7.8,0.097258957,0.098,,,0.221,,,0.182,0.269,0.567222716,10847,19123,,,0.154101939,,,0.124291674,0.188152992,0.357142857,5,14,0.212111468,0.496744159,181.9,36,19792,,,22.59733188,83,3673,17.99864871,28.01279276,,,,,,,,,,29.53586498,16.14753223,49.5561627,20.61518325,15.84127284,26.37577464,,,,,,,0.130392157,1995,15300,0.112519816,0.148264497,0.000606306,12,19792,,,1649.333333,0.000391811,8,20418,,,2552.25,0.00122441,25,20418,,,816.72,936,,,,,,,,,973,0.34,,,,,,,,,0.34,0.3,,,,,,,,0.12,0.3,0.901623616,12217,13550,0.878474962,0.924772271,0.488925542,2075,4244,0.393344097,0.584506987,0.028724712,257,8947,,,0.192,838,,0.137191489,0.246808511,,,,,,,,,,0.403985507,0.193742294,0.614228721,0.136546185,0.081823714,0.191268656,3.796039153,116732,30751,3.073525391,4.518552916,0.206529289,892,4319,0.12253197,0.290526609,6.06305578,12,19792,,,114.6037983,105,91620,92.68279469,136.5248019,,,,,,,,,,,,,123.7561878,100.5829227,150.6687181,,,,7.9,,,,,0,,,,,0.125366569,855,6820,0.084434066,0.166299072,0.079881657,0.048299894,0.11146342,0.048387097,0.020426108,0.076348086,0.012463343,0.000477271,0.024449416,0.782478068,6511,8321,0.74659671,0.818359425,,,,,,,,,,,,,0.737010904,0.67328343,0.800738379,0.528,,8321,0.438733668,0.617266332,76.00160223,,,74.74346647,77.25973798,,,,,,,,,,,,,75.36862686,73.98615541,76.75109832,,,,416.0031015,326,51471,366.1838516,465.8223513,,,,,,,,,,,,,437.0862997,382.3593444,491.8132549,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.114,,,0.097,0.132,0.159,,,0.135,0.182,0.089,,,0.075,0.104,35.9,6,16727,,,0.098,1840,,,,0.097258957,1626.072498,16719,,,,,,,,,,,,,,,,,,,,,,,,,,0.303,,,0.288,0.318,0.148431802,1628,10968,0.125793504,0.1710701,0.087480816,399,4561,0.062459539,0.112502092,0.000587717,12,20418,,,1701.5,0.83,177.62,214,,,,,,,,2.66220313,,,,,,,,,2.674902379,2.635932676,,,,,,,,2.43980612,2.668315465,0.014411578,,,,,-1189.715,,,,,0.680257205,38191,56142,0.47969419,0.88082022,60771,,,55820.3617,65721.6383,,,,,,,,,,63226,34589.74468,91862.25532,65010,60513.31915,69506.68085,,,,,,0.224584461,581,2587,,,,,,,,0.243323296,,60771,,,2.02020202,2,990,,,,,,,,,,,,,,,,,,,,,,,,,,33.58384574,32,91620,22.3162216,48.53800773,34.92687186,,,,,,,,,,,,,33.48967656,21.45746769,49.8299841,,,,25.10368915,23,91620,15.9135855,37.66785952,,,,,,,,,,,,,27.50137507,17.23496534,41.63741236,,,,19.09976444,24,125656,12.23757947,28.4189355,,,,,,,,,,,,,20.01965566,12.54621162,30.30999926,,,,,,,,,,,0.756974534,9958,13155,,,0.743,,,,,28.09002266,,,,,0.754446915,5429,7196,0.707856948,0.801036882,0.067378445,467,6931,0.038801019,0.09595587,0.87340189,6285,7196,0.83934199,0.907461789,20418,,,,,0.219757077,4487,20418,,,0.230238025,4701,20418,,,0.003232442,66,20418,,,0.011607405,237,20418,,,0.010872759,222,20418,,,0.002301891,47,20418,,,0.095357038,1947,20418,,,0.861837594,17597,20418,,,0.021799858,398,18257,0.003964303,0.039635412,0.492506612,10056,20418,,,0.4680228,8950,19123,, -16,047,16047,ID,Gooding County,2024,1,7327.295539,199,42968,5780.746815,8873.844262,0,,,,2,,,,2,,,,2,5411.524988,3152.412727,8664.375729,1,7342.992439,5559.764686,9126.220192,,,,,2,,0.187,,,0.157,0.217,4.033418559,,,3.199676532,4.911418326,4.809480116,,,3.812267886,5.847277228,0.076102418,107,1406,0.062242057,0.08996278,0,,,,,,,,,,0.066878981,0.047340533,0.086417429,0.076719577,0.057747491,0.095691663,,,,,,,0.18,,,0.145,0.217,0.369,,,0.297,0.446,8.8,0.00305939,0.095,,,0.28,,,0.232,0.33,0.693165791,10812,15598,,,0.156898713,,,0.125321047,0.193701745,0.36,9,25,0.254370111,0.462940931,310.7,49,15772,,,31.64893617,119,3760,25.96247986,37.33539249,,,,,,,,,,51.54639175,41.17342693,63.73791166,16.90573771,11.63713195,23.74194122,,,,,,,0.178895494,2287,12784,0.155065707,0.202725282,0.000317018,5,15772,,,3154.4,0.000254534,4,15715,,,3928.75,0.001399936,22,15715,,,714.3181818,2392,,,,,,,,,2510,0.32,,,,,,,,0.19,0.33,0.27,,,,,,,,0.34,0.27,0.789971147,7940,10051,0.758679353,0.821262941,0.436887769,1561,3573,0.358912574,0.514862965,0.02363505,229,9689,,,0.168,666,,0.110808511,0.225191489,0.077669903,0,0.356714964,,,,,,,0.22546729,0.117142123,0.333792457,0.156917363,0.087645793,0.226188933,4.326878858,107259,24789,3.322597523,5.331160192,0.150668287,620,4115,0.081725677,0.219610897,6.340349987,10,15772,,,97.54321164,75,76889,76.72392371,122.2712605,,,,,,,,,,61.85931425,33.81906273,103.7894182,117.7719857,90.08623721,151.2830426,,,,5.2,,,,,0,,,,,0.111308994,625,5615,0.073222217,0.149395771,0.06925859,0.037304924,0.101212255,0.031166518,0.014427437,0.0479056,0.018699911,0.001882306,0.035517516,0.742376746,5210,7018,0.707435291,0.7773182,,,,,,,,,,0.756623537,0.678474777,0.834772296,0.755518234,0.712287459,0.798749009,0.308,,7018,0.243781045,0.372218956,77.67009384,,,76.32107834,79.01910934,,,,,,,,,,81.96287571,78.28925393,85.63649749,77.10349227,75.58732331,78.61966123,,,,365.0475404,199,42968,311.8579455,418.2371353,,,,,,,,,,209.2351052,125.9732015,326.7465352,399.2390368,334.1758684,464.3022053,,,,54.93901769,10,18202,26.34539444,101.0348096,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.128,,,0.111,0.148,0.164,,,0.141,0.188,0.105,,,0.089,0.122,69.9,9,12878,,,0.095,1460,,,,0.00305939,47.31039984,15464,,,,,,,,,,,,,,,,,,,,,,,,,,0.325,,,0.312,0.339,0.20448244,1770,8656,0.174695206,0.234269674,0.127595755,553,4334,0.090659584,0.164531925,0.001018136,16,15715,,,982.1875,0.830113636,182.625,220,,,,,,,,2.567167503,,,,,,,,2.394702108,2.781286254,2.503369368,,,,,,,,2.14536004,2.8226978,0.061266366,,,,,-4946.425275,,,,,0.819797604,35239,42985,0.619806335,1.019788873,59838,,,52037.31915,67638.68085,130517,49867.46809,211166.5319,,,,,,,72747,65295.42553,80198.57447,56343,45591,67095,,,,,,0.442774936,1385,3128,,,,,,,,0.209031051,,59838,,,6.944444444,7,1008,,,,,,,,,,,,,,,,,,,,,,,,,,23.8904239,17,76889,13.65544147,38.79655168,22.10979464,,,,,,,,,,,,,34.34856085,18.77867784,57.6310486,,,,19.50864233,15,76889,10.91883902,32.17653874,,,,,,,,,,,,,25.09894778,13.36413262,42.91996509,,,,27.01242572,29,107358,18.09064545,38.79434922,,,,,,,,,,41.28294697,21.98143058,70.5950966,22.06592194,12.61258096,35.8336748,,,,,,,,,,,0.627919045,6050,9635,,,0.575,,,,,4.80599321,,,,,0.721411417,3905,5413,0.671217174,0.77160566,0.096555728,499,5168,0.057066062,0.136045393,0.795492333,4306,5413,0.751236843,0.839747823,15715,,,,,0.256251989,4027,15715,,,0.184664333,2902,15715,,,0.00311804,49,15715,,,0.023989819,377,15715,,,0.008972319,141,15715,,,0.00311804,49,15715,,,0.299777283,4711,15715,,,0.666624244,10476,15715,,,0.054530489,795,14579,0.036119372,0.072941606,0.487877824,7667,15715,,,1,15598,15598,, -16,049,16049,ID,Idaho County,2024,1,7510.132151,289,44642,5874.289054,9145.975248,0,,,,2,,,,2,,,,2,,,,2,7193.685314,5480.319539,8907.05109,,,,,2,,0.156,,,0.132,0.183,3.748274585,,,2.972449754,4.575215635,4.202770196,,,3.370969672,5.084641668,0.047977422,51,1063,0.035129541,0.060825304,0,,,,,,,,,,,,,0.047021944,0.033609996,0.060433891,,,,,,,0.177,,,0.139,0.214,0.326,,,0.269,0.388,7.7,0.082333777,0.108,,,0.256,,,0.212,0.303,0.474336497,7846,16541,,,0.137889095,,,0.11128552,0.166680912,0.34375,11,32,0.250875654,0.43568959,135,23,17040,,,17.5922732,51,2899,13.09860291,23.13059033,,,,,,,,,,,,,19.12681913,14.00323551,25.51249635,,,,,,,0.138696136,1619,11673,0.118440817,0.158951456,0.000821596,14,17040,,,1217.142857,0.000397886,7,17593,,,2513.285714,0.000852612,15,17593,,,1172.866667,1743,,,,,,,,,1741,0.32,,,,,,,,,0.32,0.16,,,,,0.39,,,,0.16,0.922453889,11503,12470,0.905832438,0.939075341,0.606626506,2014,3320,0.506872485,0.706380527,0.037829912,258,6820,,,0.175,589,,0.103510638,0.246489362,,,,,,,,,,0.124352332,0,0.381148593,0.09279828,0.050332007,0.135264553,4.065352986,102329,25171,3.495803154,4.634902818,0.10786724,351,3254,0.066421638,0.149312843,5.281690141,9,17040,,,129.477773,108,83412,105.0581241,153.8974218,,,,,,,,,,,,,132.4099943,106.4576354,158.3623532,,,,6.7,,,,,1,,,,,0.116099071,750,6460,0.088820301,0.143377841,0.082982374,0.058545035,0.107419713,0.027863777,0.012763227,0.042964328,0.008513932,0.00275295,0.014274914,0.745588006,4774,6403,0.710744341,0.780431671,,,,,,,,,,,,,0.724940805,0.675477957,0.774403653,0.231,,6403,0.175254085,0.286745915,79.13091622,,,77.7084273,80.55340513,,,,,,,,,,,,,79.17454731,77.70250663,80.64658799,,,,372.4698119,289,44642,321.3647698,423.5748541,,,,,,,,,,,,,359.2177345,307.0299226,411.4055464,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.12,,,0.103,0.138,0.155,,,0.134,0.178,0.097,,,0.083,0.114,,,,,,0.108,1780,,,,0.082333777,1339.323547,16267,,,,,,,,,,,,,,,,,,,,,,,,,,0.32,,,0.303,0.335,0.148730783,1248,8391,0.124900996,0.17256057,0.114052953,392,3437,0.080691251,0.147414655,0.000795771,14,17593,,,1256.642857,0.753492647,102.475,136,,,,,,,,2.942750069,,,,,,,,,2.952748449,3.068834485,,,,,,,,,3.055345576,0.06589783,,,,,644.2139,,,,,0.820200932,44167,53849,0.628378334,1.01202353,60907,,,55746.65957,66067.34043,65208,28200.34043,102215.6596,,,,,,,,,,55131,49301.04255,60960.95745,,,,,,0.336805556,582,1728,,,,,,,,0.205362274,,60907,,,6.468305304,5,773,,,,,,,,,,,,,,,,,,,,,,,,,,33.14239476,26,83412,20.51566472,50.66167096,31.17057498,,,,,,,,,,,,,31.18631397,18.48298614,49.2878213,,,,25.17623364,21,83412,15.58448543,38.48454747,,,,,,,,,,,,,25.15789892,15.14669857,39.28717553,,,,36.25690608,42,115840,26.13078879,49.00880419,,,,,,,,,,,,,37.11210711,26.39033609,50.73347214,,,,,,,,,,,0.724405885,9602,13255,,,0.495,,,,,3.853814855,,,,,0.782977435,5170,6603,0.753581893,0.812372976,0.099255976,627,6317,0.07070441,0.127807542,0.812963804,5368,6603,0.775792373,0.850135236,17593,,,,,0.193883931,3411,17593,,,0.290285909,5107,17593,,,0.005627238,99,17593,,,0.02807935,494,17593,,,0.006366168,112,17593,,,0.00068209,12,17593,,,0.039220144,690,17593,,,0.899448644,15824,17593,,,0.010033864,160,15946,0.001496886,0.018570843,0.471949071,8303,17593,,,1,16541,16541,, -16,051,16051,ID,Jefferson County,2024,1,7439.83582,302,88606,6324.758646,8554.912993,0,,,,2,,,,2,,,,2,,,,2,7902.326869,6649.456298,9155.197441,,,,,2,,0.137,,,0.114,0.162,3.68847072,,,2.896997625,4.524802817,4.522899779,,,3.615087269,5.441251514,0.080340265,255,3174,0.070883712,0.089796817,0,,,,,,,,,,0.114206128,0.081304311,0.147107946,0.075615051,0.065758667,0.085471435,,,,,,,0.15,,,0.116,0.187,0.319,,,0.256,0.384,8.6,0.106065447,0.056,,,0.222,,,0.181,0.269,0.600142436,18539,30891,,,0.16159689,,,0.128981513,0.198487954,0.357142857,5,14,0.212111468,0.496744159,136.6,44,32202,,,14.63133641,127,8680,12.08662693,17.17604588,,,,,,,,,,29.32828761,19.92714851,41.6291632,12.45431163,10.03993296,15.27410762,,,,,,,0.11193871,3156,28194,0.096449349,0.127428072,0.000217378,7,32202,,,4600.285714,0.000209405,7,33428,,,4775.428571,0.00023932,8,33428,,,4178.5,1292,,,,,,,,,1228,0.34,,,,,,,,0.15,0.35,0.36,,,,,,,,0.25,0.36,0.925626695,16727,18071,0.904691643,0.946561747,0.697813374,5489,7866,0.616739404,0.778887344,0.022098734,342,15476,,,0.096,1030,,0.060255319,0.131744681,,,,,,,,,,0.307017544,0.219159344,0.394875744,0.078110599,0.046060846,0.110160352,3.23933478,129920,40107,2.393408647,4.085260912,0.072812291,763,10479,0.042353756,0.103270827,0.931619154,3,32202,,,67.09224852,101,150539,54.00742916,80.17706788,,,,,,,,,,,,,74.43388046,60.3608628,90.80302181,,,,4.9,,,,,0,,,,,0.11388102,1005,8825,0.080438664,0.147323376,0.067238422,0.037545321,0.096931523,0.037393768,0.021551472,0.053236063,0.016997167,0.004610982,0.029383353,0.765599604,10834,14151,0.732483892,0.798715317,,,,,,,,,,0.677922078,0.492408418,0.863435738,0.747833044,0.705007006,0.790659083,0.241,,14151,0.203133876,0.278866124,77.96563665,,,76.88948675,79.04178654,,,,,,,,,,90.90134953,60.56886925,121.2338298,77.43849819,76.30055253,78.57644384,,,,337.3349902,302,88606,298.6465577,376.0234226,,,,,,,,,,,,,348.3866796,306.5580581,390.215301,,,,45.32577904,20,44125,27.68616337,70.00198958,,,,,,,,,,,,,51.28205128,30.87514484,80.0832755,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.111,,,0.095,0.13,0.156,,,0.133,0.18,0.09,,,0.076,0.105,,,,,,0.056,1710,,,,0.106065447,2772.55078,26140,,,,,,,,,,,,,,,,,,,,,,,,,,0.294,,,0.278,0.309,0.128327104,2266,17658,0.108071785,0.148582423,0.086364873,952,11023,0.060152108,0.112577639,0.000358981,12,33428,,,2785.666667,0.852640545,500.5,587,,,,,,,,2.863390367,,,,,,,,2.382007332,2.923538304,2.970872392,,,,,,,,2.465806802,3.033584565,0.041793889,,,,,-1026.8275,,,,,0.664552061,40331,60689,0.577159306,0.751944815,76474,,,69963.70213,82984.29787,111172,110407.0638,111936.9362,,,,,,,82917,52362.44681,113471.5532,76704,70216.34043,83191.65957,,,,,,0.143601701,1047,7291,,,,,,,,0.163558857,,76474,,,1.624035729,4,2463,,,,,,,,,,,,,,,,,,,,,,,,,,20.87482479,29,150539,13.87116947,30.16993392,19.26411096,,,,,,,,,,,,,23.39373175,15.41661663,34.03665148,,,,14.61415314,22,150539,9.158611969,22.12600349,,,,,,,,,,,,,16.88191103,10.57980377,25.55941618,,,,15.08258934,31,205535,10.2478877,21.40853164,,,,,,,,,,,,,16.28262139,10.90472709,23.38456039,,,,,,,,,,,0.756498532,14173,18735,,,0.666,,,,,16.85871734,,,,,0.82354775,7925,9623,0.7944156,0.8526799,0.086137864,796,9241,0.051924446,0.120351282,0.934947522,8997,9623,0.912962067,0.956932976,33428,,,,,0.323860237,10826,33428,,,0.12307048,4114,33428,,,0.003111164,104,33428,,,0.012085677,404,33428,,,0.005384707,180,33428,,,0.001735072,58,33428,,,0.10901041,3644,33428,,,0.862809621,28842,33428,,,0.017562055,508,28926,0.010216138,0.024907972,0.486418571,16260,33428,,,0.667119873,20608,30891,, -16,053,16053,ID,Jerome County,2024,1,7256.874868,286,69817,6075.421808,8438.327928,0,,,,2,,,,2,,,,2,6306.318328,4582.180551,8465.938005,,7641.483197,6056.762815,9226.203579,,,,,2,,0.205,,,0.175,0.237,4.268577955,,,3.414202965,5.197072723,4.787879934,,,3.848161632,5.792686941,0.072217837,183,2534,0.062139288,0.082296387,0,,,,,,,,,,0.076023392,0.061008815,0.091037969,0.070878274,0.056917433,0.084839116,,,,,,,0.19,,,0.156,0.226,0.382,,,0.313,0.453,7.7,0.118080516,0.091,,,0.296,,,0.249,0.346,0.42480505,10296,24237,,,0.161025143,,,0.129049852,0.19665557,0.47826087,22,46,0.409388098,0.542855156,567.7,140,24662,,,35.35108959,219,6195,30.66903128,40.0331479,,,,,,,,,,44.6340663,37.13248066,52.13565193,27.16468591,21.53990648,33.80880305,,,,,,,0.178167475,3749,21042,0.155529177,0.200805772,0.000283838,7,24662,,,3523.142857,0.00027656,7,25311,,,3615.857143,0.000316068,8,25311,,,3163.875,2138,,,,,,,,,2289,0.35,,,,,,,,0.24,0.36,0.31,,,,,,,,0.22,0.32,0.752929427,11309,15020,0.715832144,0.790026711,0.440982059,2802,6354,0.376706617,0.5052575,0.024779007,356,14367,,,0.15,1100,,0.094,0.206,,,,,,,,,,0.273829201,0.177762127,0.369896275,0.16402439,0.094516989,0.233531791,3.319178809,106383,32051,2.761009398,3.877348219,0.203875546,1494,7328,0.129672353,0.278078739,6.487713892,16,24662,,,78.32209343,95,121294,63.3672507,95.7446977,,,,,,,,,,57.77135874,37.73816957,84.64842592,94.1709544,73.27062352,119.1793699,,,,3.9,,,,,1,,,,,0.129294191,1035,8005,0.096432916,0.162155466,0.090163934,0.059512247,0.120815622,0.034853217,0.016579896,0.053126538,0.007495315,0,0.015494577,0.818382288,9278,11337,0.789443918,0.847320658,,,,,,,,,,0.81813975,0.729067379,0.907212121,0.809014515,0.785954484,0.832074546,0.212,,11337,0.172196408,0.251803592,77.27085424,,,76.18387893,78.35782954,,,,,,,,,,81.41780337,75.55850185,87.27710489,76.72398835,75.41489254,78.03308415,,,,374.204835,286,69817,329.9285315,418.4811384,,,,,,,,,,269.3002498,191.4988033,368.1423067,404.3110743,348.8801408,459.7420079,,,,50.03126954,16,31980,28.59719341,81.24764727,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.138,,,0.12,0.158,0.168,,,0.144,0.19,0.116,,,0.099,0.134,,,,,,0.091,2200,,,,0.118080516,2641.933474,22374,,,,,,,,,,,,,,,,,,,,,,,,,,0.321,,,0.308,0.335,0.206760442,2881,13934,0.178164697,0.235356187,0.124865736,930,7448,0.089121055,0.160610417,0.00027656,7,25311,,,3615.857143,0.761420613,273.35,359,,,,,,,,2.667020749,,,,,,,,2.406149433,3.008785862,2.632366199,,,,,,,,2.337654227,2.988708478,0.007941013,,,,,-6973.773,,,,,0.669464118,32706,48854,0.568967359,0.769960876,61509,,,55042.78723,67975.21277,146719,139779.766,153658.234,,,,,,,60283,51247.93617,69318.06383,70920,63775.82979,78064.17021,,,,,,0.067684688,328,4846,,,,,,,,0.203352355,,61509,,,6.852925672,13,1897,,,,,,,,,,,,,,,,,,,,,,,,,,16.44942777,19,121294,9.748973405,25.99718765,15.66441869,,,,,,,,,,,,,21.3829288,11.96786293,35.26788924,,,,16.48886177,20,121294,10.07182514,25.46570968,,,,,,,,,,,,,20.47194661,11.45799311,33.76536266,,,,28.1265335,47,167102,20.66631888,37.40232693,,,,,,,,,,34.53833756,21.37977531,52.7955178,25.44927763,16.62431308,37.28908821,,,,,,,,,,,0.576957164,7812,13540,,,0.647,,,,,24.20589795,,,,,0.730350964,5910,8092,0.697304952,0.763396976,0.081646069,621,7606,0.047739323,0.115552814,0.867029165,7016,8092,0.835038214,0.899020116,25311,,,,,0.293350717,7425,25311,,,0.135119118,3420,25311,,,0.003871834,98,25311,,,0.02259887,572,25311,,,0.005570701,141,25311,,,0.002607562,66,25311,,,0.390028051,9872,25311,,,0.583224685,14762,25311,,,0.113149171,2560,22625,0.087763933,0.13853441,0.482952076,12224,25311,,,0.48817923,11832,24237,, -16,055,16055,ID,Kootenai County,2024,1,6361.893319,2104,477410,5920.910155,6802.876483,0,9959.079202,5574.021028,16425.98661,1,,,,2,,,,2,3354.111501,2170.604114,4951.330234,,6425.355265,5958.101928,6892.608603,,,,,2,,0.136,,,0.114,0.162,3.71240505,,,3.000371127,4.547772289,4.734385011,,,3.959611503,5.636412295,0.054589599,697,12768,0.050649022,0.058530176,0,0.080291971,0.03478721,0.125796732,0.084033613,0.034185483,0.133881744,,,,0.055020633,0.038445279,0.071595987,0.053451327,0.049304007,0.057598648,,,,0.065445026,0.040644258,0.090245795,0.166,,,0.131,0.205,0.286,,,0.243,0.332,8.3,0.072947128,0.087,,,0.21,,,0.176,0.248,0.818827978,140316,171362,,,0.179476664,,,0.151582924,0.211219696,0.329411765,28,85,0.27403788,0.385026894,220.8,397,179789,,,13.63968974,466,34165,12.40127075,14.87810874,45.34606205,27.30129156,70.81349301,,,,,,,15.86130579,11.47890565,21.36507481,12.99193604,11.68046329,14.30340879,,,,18.16745656,11.51660903,27.26010497,0.094298669,13685,145124,0.082383775,0.106213562,0.000800939,144,179789,,,1248.534722,0.000724488,133,183578,,,1380.285714,0.002255172,414,183578,,,443.4251208,1434,,,,,,,,814,1417,0.45,,,,,0.32,0.35,,0.33,0.45,0.39,,,,,0.28,0.43,,0.26,0.39,0.93552907,113504,121326,0.928148939,0.942909202,0.674481351,29748,44105,0.635814931,0.713147771,0.032184832,2722,84574,,,0.118,4702,,0.084638298,0.151361702,0.241635688,0.120646947,0.362624428,,,,,,,0.10452843,0.054153085,0.154903776,0.102491081,0.07971878,0.125263382,3.891939927,131388,33759,3.669965049,4.113914806,0.177122151,6892,38911,0.146773203,0.207471098,7.731285006,139,179789,,,78.29934775,654,835256,72.29832405,84.30037144,,,,,,,,,,,,,83.34870683,76.82979488,89.86761879,,,,10.8,,,,,0,,,,,0.136874758,8825,64475,0.11952228,0.154227235,0.110704554,0.09529337,0.126115739,0.017603722,0.012507576,0.022699869,0.01512214,0.009650042,0.020594239,0.770673029,61697,80056,0.751633279,0.789712778,0.742368742,0.646677703,0.838059782,0.784722222,0.690227415,0.879217029,,,,0.759637188,0.678835538,0.840438838,0.762221396,0.739306043,0.785136749,0.27,,80056,0.247205466,0.292794534,78.50893115,,,78.11890015,78.89896215,79.81489413,70.16813439,89.46165387,,,,,,,82.22858564,80.04499146,84.41217983,78.39548065,77.98882969,78.8021316,,,,315.7091423,2104,477410,301.3532594,330.0650252,404.1412777,256.1909024,606.4103481,,,,,,,205.4043581,147.4017137,278.6542053,320.1397217,305.0191989,335.2602444,,,,41.22701146,69,167366,32.07707572,52.17542159,,,,,,,,,,,,,39.7925204,30.13846636,51.5558257,,,,4.479019331,57,12726,3.392365501,5.803089062,,,,,,,,,,,,,4.078375743,2.985883625,5.43998171,,,,,,,0.113,,,0.097,0.13,0.158,,,0.137,0.181,0.077,,,0.067,0.09,21.8,33,151321,,,0.087,14580,,,,0.072947128,10102.73952,138494,,,18.01927481,93,516114,14.54388037,22.07482902,,,,,,,,,,,,,19.16018127,15.38719888,23.57825177,,,,0.317,,,0.299,0.332,0.108103457,11306,104585,0.093805584,0.122401329,0.06213985,2642,42517,0.046650488,0.077629212,0.001421739,261,183578,,,703.3639847,0.818564155,1607.66,1964,,,0.062371926,487,7808,0.037420767,0.087323086,3.278141211,,,,,,,,3.026690425,3.312195288,3.197838086,,,,,,,,2.934108628,3.233772547,0.022734084,,,,,2982.572443,,,,,0.805468265,45368,56325,0.753912324,0.857024205,75583,,,68989.29787,82176.70213,34985,15208.65957,54761.34043,33672,15493.44681,51850.55319,48534,9702.170213,87365.82979,80671,68725.12766,92616.87234,72904,70552,75256,,,,,,0.247892394,5234,21114,,,85.9643261,,,,,0.195639231,,75583,,,6.169031462,60,9726,,,2.280875821,26,1139913,1.489943813,3.342011547,,,,,,,,,,,,,2.232407176,1.415154651,3.349706865,,,,22.36606797,182,835256,19.01779004,25.71434591,21.78972674,,,,,,,,,,,,,23.45457316,19.82872796,27.08041836,,,,14.96547166,125,835256,12.34190881,17.58903452,,,,,,,,,,,,,16.45738797,13.56067052,19.35410543,,,,10.1762152,116,1139913,8.324332994,12.02809741,,,,,,,,,,,,,10.57966879,8.593505757,12.56583182,,,,,,,,,,,0.725604217,89467,123300,,,0.696,,,,,95.98054301,,,,,0.723232142,48458,67002,0.707533407,0.738930878,0.123610352,8139,65844,0.110020895,0.137199808,0.897122474,60109,67002,0.885446344,0.908798604,183578,,,,,0.22129558,40625,183578,,,0.200781139,36859,183578,,,0.004090904,751,183578,,,0.012741178,2339,183578,,,0.010447875,1918,183578,,,0.001666866,306,183578,,,0.056602643,10391,183578,,,0.892971925,163930,183578,,,0.003055152,500,163658,0.001539911,0.004570393,0.499989105,91787,183578,,,0.235116304,40290,171362,, -16,057,16057,ID,Latah County,2024,1,4792.059934,331,114417,4016.932523,5567.187344,0,,,,2,,,,2,,,,2,,,,2,4997.877215,4159.215663,5836.538767,,,,,2,,0.131,,,0.11,0.155,3.737603603,,,2.999961674,4.538106555,4.98365588,,,4.183926992,5.869744793,0.055760833,166,2977,0.04751808,0.064003586,0,,,,,,,,,,0.086092715,0.041352109,0.130833322,0.050214091,0.041769091,0.058659092,,,,,,,0.14,,,0.107,0.173,0.314,,,0.263,0.367,8.5,0.046064659,0.09,,,0.179,,,0.146,0.217,0.696535668,27525,39517,,,0.200573797,,,0.165305763,0.238096646,0.411764706,7,17,0.284189348,0.52988216,449,181,40313,,,5.313745409,68,12797,4.12633123,6.736438474,,,,,,,,,,13.58695652,6.515473772,24.9868968,4.95913307,3.725453391,6.470592928,,,,,,,0.090246098,2908,32223,0.075948225,0.10454397,0.000719371,29,40313,,,1390.103448,0.000463663,19,40978,,,2156.736842,0.001879057,77,40978,,,532.1818182,1229,,,,,,,,,1232,0.47,,,,,,,,,0.47,0.45,,,,,0.42,0.56,,0.5,0.45,0.969150676,22525,23242,0.960720573,0.977580779,0.80418444,7918,9846,0.741655734,0.866713147,0.024587354,502,20417,,,0.113,861,,0.07487234,0.15112766,,,,,,,,,,0.238512035,0.028536838,0.448487232,0.06788556,0.035370396,0.100400723,4.25539973,113483,26668,3.643551727,4.867247733,0.166228374,1201,7225,0.114369468,0.218087279,11.65877012,47,40313,,,59.78537052,120,200718,49.08841048,70.48233056,,,,,,,,,,,,,63.61681285,51.88706282,75.34656289,,,,8.7,,,,,1,,,,,0.178582777,2810,15735,0.147835863,0.209329691,0.148290189,0.119915899,0.176664478,0.021290118,0.009504414,0.033075822,0.020336829,0.010007483,0.030666175,0.652100217,12311,18879,0.619487675,0.68471276,,,,,,,,,,0.368942731,0.182659235,0.555226228,0.647088426,0.611464736,0.682712115,0.249,,18879,0.219741718,0.278258282,81.85760971,,,80.85321351,82.86200591,,,,,,,,,,93.98611713,79.97814734,107.9940869,81.43050141,80.40760691,82.4533959,,,,264.4829024,331,114417,234.7639071,294.2018977,,,,,,,,,,,,,276.3264398,244.6543083,307.9985714,,,,35.04029634,14,39954,19.15685608,58.79166322,,,,,,,,,,,,,32.38627999,16.16711429,57.94800092,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.106,,,0.09,0.123,0.153,,,0.132,0.176,0.088,,,0.075,0.103,17.2,6,34851,,,0.09,3540,,,,0.046064659,1715.63217,37244,,,,,,,,,,,,,,,,,,,,,,,,,,0.306,,,0.289,0.323,0.096917195,2383,24588,0.080236344,0.113598046,0.072371699,581,8028,0.049733401,0.095009997,0.000683294,28,40978,,,1463.5,0.851223776,243.45,286,,,,,,,,3.387900764,,,,,,,,,3.413721434,3.391592565,,,,,,,,,3.425856938,0.050889001,,,,,1232.674767,,,,,0.809491789,45746,56512,0.710582986,0.908400592,60108,,,53652.51064,66563.48936,27969,3446.957447,52491.04255,,,,50145,35861.42553,64428.57447,34410,17274,51546,63405,58785.59575,68024.40426,,,,,,0.189655172,770,4060,,,54.4741391,,,,,0.32619618,,60108,,,4.892367906,10,2044,,,,,,,,,,,,,,,,,,,,,,,,,,14.27679396,28,200718,9.326075812,20.91881102,13.94991979,,,,,,,,,,,,,15.17685757,9.724099014,22.58196104,,,,9.96422842,20,200718,6.086409582,15.38894265,,,,,,,,,,,,,10.69663225,6.440071366,16.70411627,,,,8.252838259,23,278692,5.231591519,12.38330949,,,,,,,,,,,,,7.683721833,4.626102478,11.99908344,,,,,,,,,,,0.653015873,20570,31500,,,0.69,,,,,82.34070886,,,,,0.599221546,9545,15929,0.572944191,0.6254989,0.139405915,2187,15688,0.10948714,0.169324691,0.887375228,14135,15929,0.866298968,0.908451488,40978,,,,,0.189125872,7750,40978,,,0.150763825,6178,40978,,,0.008077505,331,40978,,,0.008882815,364,40978,,,0.022573088,925,40978,,,0.00175704,72,40978,,,0.047244863,1936,40978,,,0.88493826,36263,40978,,,0.002294001,87,37925,0,0.005575232,0.489262531,20049,40978,,,0.344231597,13603,39517,, -16,059,16059,ID,Lemhi County,2024,1,11879.79711,157,21074,8700.962512,15058.63172,0,,,,2,,,,2,,,,2,,,,2,11653.10462,8364.724081,14941.48516,,,,,2,,0.153,,,0.126,0.182,3.854683386,,,3.039692961,4.765310068,4.715893964,,,3.7991031,5.760486774,0.057142857,28,490,0.036590485,0.077695229,0,,,,,,,,,,,,,0.052287582,0.031922447,0.072652717,,,,,,,0.172,,,0.134,0.214,0.318,,,0.252,0.389,7.3,0.117692719,0.108,,,0.229,,,0.185,0.278,0.795711061,6345,7974,,,0.147065819,,,0.117908386,0.180430134,0.214285714,3,14,0.080830645,0.373240293,208.3,17,8162,,,17.04966642,23,1349,10.80802597,25.58287094,,,,,,,,,,,,,14.9750416,8.875158719,23.66702185,,,,,,,0.111230714,620,5574,0.094549863,0.127911565,0.000612595,5,8162,,,1632.4,0.000364078,3,8240,,,2746.666667,0.00157767,13,8240,,,633.8461539,1083,,,,,,,,,1063,0.37,,,,,,,,,0.38,0.28,,,,,,,,,0.28,0.916874481,5515,6015,0.892311953,0.941437008,0.582650273,853,1464,0.460520784,0.704779763,0.037246964,138,3705,,,0.205,295,,0.125170213,0.284829787,,,,,,,,,,,,,0.085691824,0.021424097,0.149959551,5.24032957,97947,18691,4.188117935,6.292541206,0.133235725,182,1366,0.051086915,0.215384534,6.125949522,5,8162,,,132.2388283,53,40079,99.05595682,172.9716433,,,,,,,,,,,,,133.7220187,99.25105971,176.2958109,,,,8.2,,,,,1,,,,,0.150740242,560,3715,0.103181121,0.198299363,0.125811688,0.079084627,0.17253875,0.025572005,0.00663806,0.044505951,0.012113055,0,0.026031959,0.748243202,2449,3273,0.680701292,0.815785112,,,,,,,,,,,,,0.767123288,0.698124164,0.836122411,0.1,,3273,0.052355322,0.147644679,75.19590634,,,72.85773009,77.53408259,,,,,,,,,,,,,75.1432506,72.7232645,77.5632367,,,,485.842911,157,21074,393.9899925,577.6958295,,,,,,,,,,,,,482.5897836,388.0212911,577.1582762,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.117,,,0.098,0.136,0.167,,,0.142,0.192,0.089,,,0.076,0.105,,,,,,0.108,860,,,,0.117692719,934.0094204,7936,,,,,,,,,,,,,,,,,,,,,,,,,,0.314,,,0.297,0.33,0.125544267,519,4134,0.104097459,0.146991076,0.071947195,109,1515,0.050500386,0.093394003,0.000849515,7,8240,,,1177.142857,0.771726191,64.825,84,,,,,,,,2.914202649,,,,,,,,,2.92819532,2.811677285,,,,,,,,,2.811914007,,,,,,-5.4355,,,,,0.666151575,38798,58242,0.458521722,0.873781427,55554,,,47217.14894,63890.85106,,,,,,,,,,43519,13753.21277,73284.78723,49081,41754.53192,56407.46809,,,,,,0.44603381,343,769,,,,,,,,0.266173453,,55554,,,8.474576271,3,354,,,,,,,,,,,,,,,,,,,,,,,,,,25.70277739,14,40079,12.32548082,47.26832275,34.93101125,,,,,,,,,,,,,26.14081141,11.95324356,49.62340278,,,,34.93101125,14,40079,19.0971089,58.60830141,,,,,,,,,,,,,34.76772485,18.5123492,59.45386836,,,,32.41082522,18,55537,19.20870911,51.22307699,,,,,,,,,,,,,32.81853282,19.11800477,52.54565022,,,,,,,,,,,0.73858145,4738,6415,,,0.576,,,,,11.59248177,,,,,0.835637019,2781,3328,0.783495068,0.88777897,0.163641956,532,3251,0.10404839,0.223235523,0.850661058,2831,3328,0.796970649,0.904351467,8240,,,,,0.17657767,1455,8240,,,0.314199029,2589,8240,,,0.003640777,30,8240,,,0.013470874,111,8240,,,0.004126214,34,8240,,,0.000485437,4,8240,,,0.037864078,312,8240,,,0.928883495,7654,8240,,,0.00571577,44,7698,0,0.016901701,0.489441748,4033,8240,,,1,7974,7974,, -16,061,16061,ID,Lewis County,2024,1,12353.28712,86,10054,8069.577283,18100.42783,0,,,,2,,,,2,,,,2,,,,2,14161.7529,8875.095147,21441.06408,1,,,,2,,0.173,,,0.146,0.202,4.199027793,,,3.367635402,5.157236937,5.071834556,,,4.086660489,6.15257341,0.0859375,22,256,0.051604212,0.120270788,1,,,,,,,,,,,,,0.087155963,0.049712616,0.124599311,,,,,,,0.194,,,0.155,0.236,0.337,,,0.269,0.412,6.3,0.162886357,0.134,,,0.249,,,0.203,0.301,0.429946221,1519,3533,,,0.139580212,,,0.11145196,0.171026234,0.142857143,1,7,0.008995928,0.386311364,161.5,6,3715,,,18.75,15,800,10.49423267,30.92527359,,,,,,,,,,,,,20.66772655,11.00469394,35.34244184,,,,,,,0.128582202,341,2652,0.110709862,0.146454543,0.000269179,1,3715,,,3715,0.000531491,2,3763,,,1881.5,0.001328727,5,3763,,,752.6,1619,,,,,,,,,1569,0.32,,,,,0.2,,,,0.33,0.3,,,,,0.31,,,,0.3,0.899198167,2355,2619,0.876240288,0.922156047,0.579178886,395,682,0.484824184,0.673533587,0.039109507,65,1662,,,0.222,183,,0.144553192,0.299446809,,,,,,,,,,0.792207792,0.385665664,1,0.115120275,0.060585406,0.169655144,4.539774093,94450,20805,3.49357973,5.585968456,0.163568773,132,807,0.091495068,0.235642479,8.075370121,3,3715,,,109.723601,21,19139,67.9206384,167.7241796,,,,,,,,,,,,,124.984377,76.34370445,193.0282334,,,,7.1,,,,,0,,,,,0.124242424,205,1650,0.093821155,0.154663694,0.086014852,0.053500586,0.118529117,0.017575758,0,0.036426343,0.023636364,0.004571789,0.042700939,0.728385616,952,1307,0.688933727,0.767837505,,,,,,,,,,,,,0.82414307,0.742631037,0.905655103,0.371,,1307,0.307537111,0.434462889,74.54728086,,,70.80653436,78.28802737,,,,,,,,,,,,,73.20736762,68.78240873,77.63232652,,,,538.3824214,86,10054,413.707835,688.824991,,,,,,,,,,,,,570.7954177,427.5649366,746.6144601,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.132,,,0.113,0.151,0.175,,,0.151,0.201,0.103,,,0.088,0.119,0,0,3152,,,0.134,480,,,,0.162886357,622.3887712,3821,,,,,,,,,,,,,,,,,,,,,,,,,,0.322,,,0.307,0.338,0.148552703,272,1831,0.124722916,0.172382491,0.087456847,76,869,0.06362706,0.111286634,0.000797236,3,3763,,,1254.333333,,,,,,,,,,,2.886292098,,,,,,,,,2.938957389,3.115554815,,,,,,,,,3.189826971,0.05062947,,,,,-38.761,,,,,0.70295814,37784,53750,0.626562247,0.779354032,55128,,,47579.91489,62676.08511,28214,16358.68085,40069.31915,,,,,,,19875,9470.914894,30279.08511,49271,43155.08511,55386.91489,,,,,,0.454918033,333,732,,,,,,,,0.2682303,,55128,,,9.345794393,2,214,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.631756757,1870,2960,,,0.423,,,,,11.69096232,,,,,0.733716475,1149,1566,0.699410502,0.768022448,0.097268488,146,1501,0.057043849,0.137493126,0.770753512,1207,1566,0.723990209,0.817516816,3763,,,,,0.220834441,831,3763,,,0.279829923,1053,3763,,,0.006643635,25,3763,,,0.064044645,241,3763,,,0.014350253,54,3763,,,0.0029232,11,3763,,,0.054743556,206,3763,,,0.830985916,3127,3763,,,0.01656014,57,3442,0,0.035434195,0.48578262,1828,3763,,,1,3533,3533,, -16,063,16063,ID,Lincoln County,2024,1,8248.000783,63,15141,5435.484488,12000.4081,0,,,,2,,,,2,,,,2,,,,2,10322.84096,6117.969778,16314.53916,1,,,,2,,0.191,,,0.163,0.222,4.230146457,,,3.387025095,5.140420981,4.501596956,,,3.549013673,5.538362948,0.068432671,31,453,0.045181446,0.091683896,0,,,,,,,,,,0.060301508,0.027227419,0.093375596,0.072580645,0.040289851,0.104871439,,,,,,,0.182,,,0.148,0.22,0.331,,,0.257,0.409,4.7,0.417857116,0.087,,,0.282,,,0.233,0.334,,,5127,,,0.158342325,,,0.125032468,0.195934841,0.375,6,16,0.240765683,0.502616143,227.2,12,5282,,,23.4270415,35,1494,16.31779277,32.58134362,,,,,,,,,,36.8,23.32804326,55.21806863,14.63414634,7.561676962,25.5629086,,,,,,,0.192808989,858,4450,0.167787712,0.217830265,0.000378645,2,5282,,,2641,0.000187653,1,5329,,,5329,0.000187653,1,5329,,,5329,1798,,,,,,,,,1526,0.26,,,,,,,,,0.28,0.28,,,,,,,,0.17,0.29,0.815542522,2781,3410,0.778504055,0.852580989,0.457711443,644,1407,0.383572508,0.531850377,0.034448493,104,3019,,,0.154,209,,0.095617021,0.212382979,,,,,,,,,,0.289198606,0.091043293,0.487353919,0.12992126,0.078315131,0.181527389,3.393755623,101850,30011,2.409862886,4.37764836,0.22599278,313,1385,0.095733385,0.356252175,0,0,5282,,,101.1842303,27,26684,66.68104532,147.2177426,,,,,,,,,,,,,137.6304622,88.18243408,204.7832182,,,,4.1,,,,,0,,,,,0.11634349,210,1805,0.073851158,0.158835823,0.079665738,0.037255004,0.122076472,0.049861496,0.016774056,0.082948936,0,0,0.015869998,0.767700875,1930,2514,0.718599583,0.816802167,,,,,,,,,,0.818181818,0.416549945,1,0.762114537,0.672633199,0.851595876,0.54,,2514,0.457193632,0.622806368,77.38018332,,,74.6655053,80.09486133,,,,,,,,,,,,,75.25150532,71.61512696,78.88788369,,,,361.4042742,63,15141,275.1176783,466.1851824,,,,,,,,,,,,,421.7925384,308.8051502,562.6121376,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.132,,,0.114,0.152,0.164,,,0.142,0.189,0.113,,,0.097,0.132,,,,,,0.087,450,,,,0.417857116,2176.199861,5208,,,,,,,,,,,,,,,,,,,,,,,,,,0.32,,,0.307,0.332,0.215762274,668,3096,0.184783551,0.246740997,0.142160279,204,1435,0.100458151,0.183862406,0.000562957,3,5329,,,1776.333333,,,,,,,,,,,2.703332791,,,,,,,,2.453227868,,2.879953183,,,,,,,,2.623078027,3.230557061,0.090399648,,,,,-8059.636667,,,,,0.797373078,37396,46899,0.636178795,0.958567362,61658,,,53653.57447,69662.42553,79327,70550.48936,88103.51064,,,,,,,63811,57188.70213,70433.29787,61306,54588.38298,68023.61702,,,,,,0.503791983,465,923,,,,,,,,0.202860943,,61658,,,5.952380952,2,336,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,26.84419629,10,37252,12.87283554,49.36743273,,,,,,,,,,,,,,,,,,,,,,,,,,0.617834395,1940,3140,,,0.511,,,,,11.39328638,,,,,0.735102925,1357,1846,0.68932926,0.780876591,0.082492582,139,1685,0.038224715,0.126760449,0.812567714,1500,1846,0.761702786,0.863432642,5329,,,,,0.259148058,1381,5329,,,0.148057797,789,5329,,,0.004128354,22,5329,,,0.023644211,126,5329,,,0.007130794,38,5329,,,0.003565397,19,5329,,,0.325577031,1735,5329,,,0.636892475,3394,5329,,,0.055600981,272,4892,0.028243308,0.082958655,0.482454494,2571,5329,,,1,5127,5127,, -16,065,16065,ID,Madison County,2024,1,5001.717548,226,130039,4165.332699,5838.102396,0,,,,2,,,,2,,,,2,,,,2,5031.277372,4134.775625,5927.77912,,,,,2,,0.162,,,0.134,0.19,4.336306642,,,3.51574474,5.225435542,5.42246371,,,4.537001044,6.402178448,0.058505155,454,7760,0.053283222,0.063727087,0,,,,,,,,,,0.068090788,0.050050389,0.086131187,0.056721751,0.051189993,0.062253508,,,,,,,0.166,,,0.129,0.207,0.369,,,0.305,0.433,7.7,0.118968768,0.093,,,0.223,,,0.18,0.27,0.898059078,47519,52913,,,0.146078459,,,0.115760229,0.179037113,0.1,1,10,0.005279615,0.302965499,105.8,57,53881,,,4.042854255,120,29682,3.319495848,4.766212663,,,,,,,,,,6.959547629,3.977982799,11.30186933,3.767057467,3.058279342,4.590836452,,,,,,,0.072867262,3549,48705,0.060952369,0.084782156,0.000426867,23,53881,,,2342.652174,0.000454744,25,54976,,,2199.04,0.001436991,79,54976,,,695.8987342,1319,,,,,,,,,1263,0.37,,,,,,,,,0.37,0.4,,,,,,,,0.32,0.4,0.974063729,17088,17543,0.95789526,0.990232198,0.826030671,8295,10042,0.751049183,0.90101216,0.018340575,439,23936,,,0.124,1356,,0.078723404,0.169276596,,,,,,,,,,0.378703704,0.270497315,0.486910093,0.135406219,0.093464154,0.177348283,4.511454122,110481,24489,3.76520522,5.257703024,0.058641686,626,10675,0.030254638,0.087028735,0.556782539,3,53881,,,37.16755038,79,212551,29.42589965,46.32185742,,,,,,,,,,,,,38.51070544,30.13225522,48.49786001,,,,4.4,,,,,1,,,,,0.274030354,3250,11860,0.23262662,0.315434088,0.198391875,0.154478221,0.242305529,0.096964587,0.064203139,0.129726035,0.017706577,0.00636848,0.029044674,0.598801938,15694,26209,0.545162142,0.652441735,,,,,,,,,,0.516129032,0.403399686,0.628858379,0.641489557,0.58646618,0.696512933,0.183,,26209,0.135355322,0.230644679,79.36749908,,,78.45889151,80.27610664,,,,,,,,,,87.82439906,74.64747611,101.001322,79.21554126,78.27356207,80.15752044,,,,267.8163879,226,130039,231.2409603,304.3918155,,,,,,,,,,,,,267.0701232,228.8424768,305.2977697,,,,42.45419193,25,58887,27.47411457,62.67076213,,,,,,,,,,,,,43.09922617,27.01005558,65.25274638,,,,3.112033195,24,7712,1.993938389,4.630458713,,,,,,,,,,,,,3.266518189,2.047109558,4.945547793,,,,,,,0.126,,,0.106,0.145,0.169,,,0.144,0.194,0.104,,,0.087,0.122,,,,,,0.093,4740,,,,0.118968768,4465.611673,37536,,,,,,,,,,,,,,,,,,,,,,,,,,0.307,,,0.291,0.325,0.084660954,2944,34774,0.069171592,0.100150315,0.048720505,733,15045,0.033231143,0.064209867,0.000873108,48,54976,,,1145.333333,0.892759563,490.125,549,,,,,,,,3.18158795,,,,,,,,2.736164848,3.22072513,,,,,,,,,,,0.02876587,,,,,-2295.982,,,,,0.549043248,28234,51424,0.420282014,0.677804482,52224,,,45936.51064,58511.48936,,,,48270,33023.70213,63516.29787,75913,68358.95745,83467.04255,40547,27556.19149,53537.80851,54058,47920.6383,60195.3617,,,,,,0.250169768,1842,7363,,,60.01065209,,,,,0.23950674,,52224,,,1.51384083,7,4624,,,,,,,,,,,,,,,,,,,,,,,,,,16.70155732,24,212551,10.20174511,25.79420071,11.29140771,,,,,,,,,,,,,18.02862705,10.85441119,28.15393438,,,,8.468555782,18,212551,5.019002865,13.38396915,,,,,,,,,,,,,9.62767636,5.705971181,15.21587939,,,,5.519677651,16,289872,3.154972696,8.963610696,,,,,,,,,,,,,6.255840414,3.575753322,10.1590929,,,,,,,,,,,0.612564883,17112,27935,,,0.639,,,,,75.84656321,,,,,0.400116871,4793,11979,0.375039004,0.425194739,0.141220402,1664,11783,0.103178645,0.17926216,0.797979798,9559,11979,0.754855455,0.841104141,54976,,,,,0.20388897,11209,54976,,,0.062991123,3463,54976,,,0.00894936,492,54976,,,0.006111758,336,54976,,,0.015788708,868,54976,,,0.003928987,216,54976,,,0.087529104,4812,54976,,,0.859429569,47248,54976,,,0.003662554,179,48873,0.000120671,0.007204437,0.547111467,30078,54976,,,0.218906507,11583,52913,, -16,067,16067,ID,Minidoka County,2024,1,7853.92328,258,59633,6470.904522,9236.942038,0,,,,2,,,,2,,,,2,6656.853215,4797.674269,8998.131696,,8802.16062,6803.179206,10801.14203,,,,,2,,0.201,,,0.172,0.233,4.311538195,,,3.471674148,5.262019863,4.646353446,,,3.716021074,5.647039477,0.070955535,150,2114,0.060010555,0.081900514,0,,,,,,,,,,0.075791855,0.058344641,0.09323907,0.06789606,0.053620594,0.082171527,,,,,,,0.182,,,0.147,0.217,0.376,,,0.311,0.444,6.8,0.176464592,0.103,,,0.29,,,0.243,0.338,0.700781937,15146,21613,,,0.153488053,,,0.123060345,0.186379926,0.294117647,5,17,0.163936752,0.428688912,405.4,89,21955,,,33.84060873,169,4994,28.73848618,38.94273128,,,,,,,,,,41.80887372,33.94246462,50.95162555,26.41056423,20.42592846,33.60071326,,,,,,,0.181139942,3302,18229,0.157310155,0.204969729,0.000273286,6,21955,,,3659.166667,0.000360458,8,22194,,,2774.25,0.000405515,9,22194,,,2466,1187,,,,,,,,981,1111,0.38,,,,,,,,0.36,0.39,0.33,,,,,,,,0.33,0.33,0.813261969,10940,13452,0.775656863,0.850867074,0.436140547,2346,5379,0.356403496,0.515877597,0.023863548,305,12781,,,0.154,956,,0.095617021,0.212382979,,,,,,,,,,0.318215339,0.177212551,0.459218127,0.095358383,0.051023391,0.139693376,4.290173328,120541,28097,3.605295938,4.975050719,0.171934866,1077,6264,0.083726663,0.260143069,4.554771123,10,21955,,,91.71362657,97,105764,74.37357284,111.8828467,,,,,,,,,,63.42662333,40.63863436,94.37378787,109.1434545,85.24194345,137.6696168,,,,5,,,,,1,,,,,0.136820926,1020,7455,0.099307715,0.174334136,0.08879892,0.057459118,0.120138723,0.045606975,0.021220741,0.069993209,0.004024145,0,0.008914427,0.817573731,8067,9867,0.78962883,0.845518631,,,,,,,,,,0.870866142,0.797269033,0.944463251,0.799033644,0.747307075,0.850760212,0.11,,9867,0.079182087,0.140817913,77.07159956,,,75.86640938,78.27678975,,,,,,,,,,78.02540729,75.44875277,80.60206182,76.18633583,74.60127725,77.77139441,,,,373.6146568,258,59633,326.427899,420.8014147,,,,,,,,,,320.7109662,242.2616173,416.4698659,403.4031356,342.0836925,464.7225787,,,,60.58999508,16,26407,34.63241737,98.39435603,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.135,,,0.117,0.154,0.166,,,0.144,0.187,0.115,,,0.099,0.133,,,,,,0.103,2210,,,,0.176464592,3541.467894,20069,,,,,,,,,,,,,,,,,,,,,,,,,,0.308,,,0.297,0.319,0.210910903,2540,12043,0.179932179,0.241889626,0.124825771,806,6457,0.08908109,0.160570451,0.000450572,10,22194,,,2219.4,0.7,213.5,305,,,,,,,,2.964383053,,,,,,,,2.555277375,3.298285385,2.904377274,,,,,,,,2.613198051,3.173034675,0.013719225,,,,,-3452.565,,,,,0.630122136,34876,55348,0.513509355,0.746734918,60834,,,52119.44681,69548.55319,,,,,,,,,,61419,52793.80851,70044.19149,65438,59643.78723,71232.21277,,,,,,0.33658869,1482,4403,,,,,,,,0.205608706,,60834,,,3.64298725,6,1647,,,,,,,,,,,,,,,,,,,,,,,,,,25.67081873,25,105764,16.44777794,38.19614342,23.63753262,,,,,,,,,,,,,33.43894776,19.8180397,52.84795387,,,,15.12802088,16,105764,8.646971043,24.56695813,,,,,,,,,,,,,15.37231753,7.371623772,28.27023926,,,,21.11127001,31,146841,14.34408372,29.96576263,,,,,,,,,,21.15791498,10.56195493,37.85735432,22.00873747,13.44350862,33.99071001,,,,,,,,,,,0.619372336,7993,12905,,,0.623,,,,,27.56230838,,,,,0.721166711,5390,7474,0.679323709,0.763009713,0.097383518,696,7147,0.063330807,0.131436228,0.844929088,6315,7474,0.813559006,0.876299169,22194,,,,,0.282598901,6272,22194,,,0.161710372,3589,22194,,,0.004956295,110,22194,,,0.024150671,536,22194,,,0.006578355,146,22194,,,0.001081373,24,22194,,,0.363521673,8068,22194,,,0.607776877,13489,22194,,,0.058568005,1173,20028,0.038621115,0.078514895,0.493286474,10948,22194,,,0.443621894,9588,21613,, -16,069,16069,ID,Nez Perce County,2024,1,8821.876944,673,112440,7736.157554,9907.596334,0,19044.69345,12550.57299,27709.02908,,,,,2,,,,2,,,,2,8426.199234,7297.335895,9555.062573,,,,,2,,0.157,,,0.132,0.184,4.030168785,,,3.280089436,4.826594185,5.312965756,,,4.460378494,6.194191309,0.061335902,191,3114,0.052908199,0.069763606,0,0.078947368,0.043944817,0.11394992,,,,,,,,,,0.059225513,0.050210935,0.06824009,,,,,,,0.162,,,0.127,0.199,0.366,,,0.314,0.42,7.9,0.072386976,0.104,,,0.238,,,0.197,0.282,0.734853885,30930,42090,,,0.18556306,,,0.153034047,0.217481681,0.263157895,10,38,0.178326492,0.352589574,346.3,147,42454,,,16.14223886,138,8549,13.44896635,18.83551136,28.67383513,16.38957429,46.56451182,,,,,,,,,,16.08311984,13.11769345,19.04854623,,,,,,,0.100507861,3305,32883,0.086209989,0.114805734,0.000659537,28,42454,,,1516.214286,0.000813878,35,43004,,,1228.685714,0.002976467,128,43004,,,335.96875,1370,,,,,,,,,1401,0.44,,,,,0.18,0.62,,,0.45,0.42,,,,,0.36,0.34,,0.33,0.42,0.92972698,27413,29485,0.917073548,0.942380412,0.614792438,6309,10262,0.555188425,0.674396452,0.025760135,549,21312,,,0.136,1207,,0.087148936,0.184851064,0.237024222,0.158195682,0.315852761,,,,,,,0.062947067,0,0.128590759,0.166499929,0.121400634,0.211599223,4.739178103,125356,26451,4.126892246,5.35146396,0.213081591,1896,8898,0.162336465,0.263826718,9.18641353,39,42454,,,113.9865956,233,204410,99.35027565,128.6229155,147.5062229,84.31255143,239.5408647,,,,,,,,,,118.4840808,102.4587713,134.5093904,,,,8.5,,,,,0,,,,,0.181570997,3005,16550,0.142324768,0.220817226,0.146996035,0.10984947,0.184142601,0.022054381,0.012925684,0.031183077,0.019637462,0.005115681,0.034159244,0.823195955,16119,19581,0.790119308,0.856272603,0.720518868,0.526997052,0.914040684,,,,,,,0.885044643,0.57638136,1,0.847306476,0.814200084,0.880412868,0.123,,19581,0.101920401,0.144079599,76.22243138,,,75.3662085,77.07865425,67.72156219,63.31571695,72.12740743,,,,,,,81.4555877,73.63889074,89.27228465,76.48068537,75.5855469,77.37582384,,,,431.9811678,673,112440,397.2402192,466.7221163,736.8756546,541.4285145,979.8884083,,,,,,,,,,424.0025397,387.7353581,460.2697213,,,,61.86683165,24,38793,39.6392464,92.05294149,,,,,,,,,,,,,64.51612903,39.4081277,99.63992872,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.122,,,0.104,0.141,0.167,,,0.145,0.192,0.097,,,0.082,0.111,19.4,7,36045,,,0.104,4350,,,,0.072386976,2842.2746,39265,,,22.65060631,28,123617,15.0511634,32.73643265,,,,,,,,,,,,,22.4267626,14.36924997,33.36924505,,,,0.318,,,0.301,0.333,0.114535246,2754,24045,0.096662906,0.132407587,0.065088118,602,9249,0.046024288,0.084151947,0.002069575,89,43004,,,483.1910112,0.858423913,315.9,368,,,,,,,,2.94065861,,,,,,,,,3.042669687,2.90521656,,,,,,,,,3.021474,0.254345965,,,,,2180.512667,,,,,0.749119086,44858,59881,0.660951486,0.837286687,65558,,,57651.2766,73464.7234,63250,55967.61702,70532.38298,,,,,,,93934,57121.74468,130746.2553,65427,57996.87234,72857.12766,,,,,,0.205104322,1101,5368,,,,,,,,0.225555996,,65558,,,4.68483816,11,2348,,,3.51090311,10,284827,1.683614509,6.456675822,,,,,,,,,,,,,,,,,,,23.00319675,47,204410,16.64752754,30.98515506,22.99300426,,,,,,,,,,,,,23.4880959,16.70233229,32.10900032,,,,21.03615283,43,204410,15.22396811,28.33555981,,,,,,,,,,,,,23.69681616,17.07858075,32.0312114,,,,16.1501543,46,284827,11.82394275,21.54204261,,,,,,,,,,,,,15.36495819,10.87315889,21.08960557,,,,,,,,,,,0.661837121,20967,31680,,,0.721,,,,,114.1770038,,,,,0.715720626,12256,17124,0.690876709,0.740564543,0.163743044,2707,16532,0.127904294,0.199581794,0.850677412,14567,17124,0.827371006,0.873983818,43004,,,,,0.211538462,9097,43004,,,0.211608223,9100,43004,,,0.00490652,211,43004,,,0.059622361,2564,43004,,,0.008975909,386,43004,,,0.001627756,70,43004,,,0.04739094,2038,43004,,,0.862059343,37072,43004,,,0.005789184,231,39902,0.000749191,0.010829176,0.502790438,21622,43004,,,0.189094797,7959,42090,, -16,071,16071,ID,Oneida County,2024,1,7195.677753,58,12405,4454.237941,10999.35781,1,,,,2,,,,2,,,,2,,,,2,7766.185975,4743.788153,11994.24436,1,,,,2,,0.139,,,0.116,0.168,3.64909992,,,2.815664351,4.568940205,4.789662075,,,3.719001568,5.911808281,0.086614173,33,381,0.058370889,0.114857458,0,,,,,,,,,,,,,0.090140845,0.060349522,0.119932168,,,,,,,0.157,,,0.123,0.197,0.316,,,0.243,0.395,8.7,0.053018658,0.076,,,0.219,,,0.176,0.273,0.117221735,535,4564,,,0.163422699,,,0.128697358,0.201527119,0.1,1,10,0.005279615,0.302965499,151.8,7,4611,,,19.48051948,21,1078,12.05874859,29.77804335,,,,,,,,,,,,,19.75051975,11.89110308,30.84288313,,,,,,,0.106182423,383,3607,0.089501572,0.122863274,0.000650618,3,4611,,,1537,0.000636672,3,4712,,,1570.666667,0.001697793,8,4712,,,589,359,,,,,,,,,362,0.3,,,,,,,,,0.31,0.26,,,,,,,,,0.26,0.934039645,2733,2926,0.892223079,0.97585621,0.615224192,590,959,0.468497793,0.76195059,0.025222552,68,2696,,,0.138,172,,0.084382979,0.191617021,,,,,,,,,,,,,0.150293871,0.080836149,0.219751592,4.167783156,107633,25825,2.617914852,5.71765146,0.086887836,110,1266,0.034177183,0.139598489,0,0,4611,,,101.8735882,23,22577,64.57911608,152.8604017,,,,,,,,,,,,,109.2792322,69.27365913,163.9725039,,,,4.8,,,,,0,,,,,0.087463557,150,1715,0.045153985,0.129773129,0.070381232,0.023635802,0.117126661,0.019825073,0,0.041851483,0,0,0.01179023,0.771561772,1655,2145,0.70081751,0.842306033,,,,,,,,,,,,,0.735142119,0.647518541,0.822765697,0.302,,2145,0.201144807,0.402855193,78.42635274,,,75.66507066,81.18763482,,,,,,,,,,,,,77.68372505,74.80382115,80.56362894,,,,338.5585352,58,12405,251.2846704,446.3472216,,,,,,,,,,,,,358.3687541,265.1231771,473.7824981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.109,,,0.093,0.127,0.157,,,0.134,0.182,0.086,,,0.072,0.101,0,0,3768,,,0.076,340,,,,0.053018658,227.2379673,4286,,,,,,,,,,,,,,,,,,,,,,,,,,0.324,,,0.306,0.342,0.121224832,289,2384,0.099778024,0.142671641,0.07734375,99,1280,0.049939495,0.104748005,0.001697793,8,4712,,,589,0.875,57.75,66,,,,,,,,2.919917625,,,,,,,,,2.922696841,3.088691325,,,,,,,,,3.125370222,0.013716943,,,,,-1700.32,,,,,0.635124444,38533,60670,0.504324822,0.765924065,66175,,,56855.17021,75494.82979,,,,,,,,,,76382,75357.31915,77406.68085,66172,53593.44681,78750.55319,,,,,,0.323059361,283,876,,,,,,,,0.223452966,,66175,,,3.676470588,1,272,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.808910891,2451,3030,,,0.624,,,,,4.991254115,,,,,0.881586095,1623,1841,0.835491541,0.927680648,0.084515031,149,1763,0.032837779,0.136192284,0.872895166,1607,1841,0.834802144,0.910988188,4712,,,,,0.266129032,1254,4712,,,0.209889644,989,4712,,,0.00466893,22,4712,,,0.005517827,26,4712,,,0.006366723,30,4712,,,0.000636672,3,4712,,,0.045628183,215,4712,,,0.925721562,4362,4712,,,0.005864415,25,4263,0,0.021832326,0.493845501,2327,4712,,,1,4564,4564,, -16,073,16073,ID,Owyhee County,2024,1,10046.44626,196,33707,7921.465627,12171.42689,0,,,,2,,,,2,,,,2,6846.727836,3913.496538,11118.65706,1,11524.07994,8679.419024,14368.74086,,,,,2,,0.198,,,0.168,0.229,4.251540776,,,3.401410567,5.230759416,5.17411506,,,4.142392818,6.31568438,0.073146293,73,998,0.056991829,0.089300757,0,,,,,,,,,,0.086206897,0.053903215,0.118510578,0.066066066,0.047200656,0.084931477,,,,,,,0.193,,,0.155,0.229,0.347,,,0.275,0.424,7.5,0.103817076,0.107,,,0.28,,,0.232,0.329,0.659699488,7859,11913,,,0.148130287,,,0.117676086,0.183832152,0.4375,7,16,0.30773596,0.555081272,210.8,26,12336,,,20.10723861,60,2984,15.34394134,25.88200181,,,,,,,,,,24.29906542,15.87295628,35.60376083,18.25677267,12.40459127,25.91403151,,,,,,,0.185457106,1844,9943,0.161627318,0.209286893,8.10636E-05,1,12336,,,12336,0.000317133,4,12613,,,3153.25,0.00023785,3,12613,,,4204.333333,1350,,,,,,,,1690,882,0.35,,,,,,,,0.31,0.36,0.29,,,,,,,,0.28,0.3,0.760744628,6089,8004,0.728654472,0.792834783,0.431281317,1205,2794,0.360339197,0.502223437,0.032460911,191,5884,,,0.194,586,,0.12012766,0.26787234,0.266666667,0.066958593,0.46637474,,,,,,,0.44140625,0.329968158,0.552844342,0.087199553,0.030054279,0.144344826,3.61455303,100640,27843,2.907248011,4.321858048,0.250835003,751,2994,0.165923214,0.335746793,2.431906615,3,12336,,,92.26175499,55,59613,69.50418025,120.0913559,,,,,,,,,,71.16977226,35.52769389,127.3423817,99.77125614,71.59757597,135.3509748,,,,6.9,,,,,0,,,,,0.139954853,620,4430,0.104233922,0.175675785,0.070547945,0.042159854,0.098936036,0.053047404,0.028424733,0.077670075,0.019187359,0.001273286,0.037101432,0.744533947,3882,5214,0.687732256,0.801335639,,,,,,,,,,0.784688995,0.640746928,0.928631063,0.693923481,0.653841853,0.734005109,0.413,,5214,0.334623906,0.491376094,75.83813746,,,74.10906916,77.56720575,,,,,,,,,,79.40808919,75.16661268,83.6495657,74.40032711,72.27490459,76.52574964,,,,454.5556036,196,33707,387.2827193,521.8284878,,,,,,,,,,302.6348723,191.8445487,454.1009008,510.0017001,425.0239054,594.9794948,,,,74.72166181,10,13383,35.83194124,137.4157965,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.136,,,0.117,0.155,0.173,,,0.149,0.197,0.112,,,0.095,0.129,,,,,,0.107,1270,,,,0.103817076,1196.595614,11526,,,,,,,,,,,,,,,,,,,,,,,,,,0.332,,,0.319,0.345,0.20607624,1438,6978,0.177480495,0.234671984,0.138728324,432,3114,0.099409175,0.178047473,0.0004757,6,12613,,,2102.166667,0.90320122,148.125,164,,,,,,,,2.516020943,,,,,,,,2.260492759,2.739262008,2.587415827,,,,,,,,2.298834934,2.82217859,0.029428279,,,,,-5704.998,,,,,0.829976571,40385,48658,0.667790527,0.992162615,57142,,,49429.48936,64854.51064,,,,,,,,,,51500,34639.23404,68360.76596,60864,54378.7234,67349.2766,,,,,,0.329536208,810,2458,,,,,,,,0.258776382,,57142,,,3.139717425,2,637,,,,,,,,,,,,,,,,,,,,,,,,,,22.11131106,12,59613,11.03788682,39.56324327,20.12983745,,,,,,,,,,,,,,,,,,,18.452351,11,59613,9.211347134,33.016353,,,,,,,,,,,,,,,,,,,35.23180095,29,82312,23.59529004,50.59874312,,,,,,,,,,,,,42.45758664,27.20337689,63.17352344,,,,,,,,,,,0.60215873,4742,7875,,,0.547,,,,,9.119863633,,,,,0.71090608,3005,4227,0.667948323,0.753863837,0.077915241,296,3799,0.047146092,0.10868439,0.814289094,3442,4227,0.782783187,0.845795001,12613,,,,,0.246650282,3111,12613,,,0.182985808,2308,12613,,,0.004756997,60,12613,,,0.03892809,491,12613,,,0.007531912,95,12613,,,0.001982082,25,12613,,,0.256084992,3230,12613,,,0.694045826,8754,12613,,,0.069549039,785,11287,0.04297856,0.096119517,0.486085785,6131,12613,,,1,11913,11913,, -16,075,16075,ID,Payette County,2024,1,7711.188114,358,68982,6474.400311,8947.975917,0,,,,2,,,,2,,,,2,,,,2,8618.347952,7099.338376,10137.35753,,,,,2,,0.167,,,0.14,0.195,4.07130867,,,3.26164824,4.923191033,4.81715592,,,3.898245206,5.785912163,0.069810449,151,2163,0.059071203,0.080549694,0,,,,,,,,,,0.065708419,0.043702307,0.087714531,0.068322981,0.055998767,0.080647195,,,,,,,0.173,,,0.139,0.211,0.389,,,0.323,0.458,8.2,0.072393029,0.091,,,0.25,,,0.205,0.297,0.672260301,17066,25386,,,0.155759009,,,0.1254214,0.189938525,0.409090909,9,22,0.29849051,0.512929862,170.8,45,26350,,,20.30456853,112,5516,16.54410981,24.06502724,,,,,,,,,,24.3204578,16.84262402,33.98540207,19.19087137,15.06896168,24.09238161,,,,,,,0.118544325,2518,21241,0.101863474,0.135225176,0.000379507,10,26350,,,2635,0.000519365,14,26956,,,1925.428571,0.001409705,38,26956,,,709.3684211,989,,,,,,,,,965,0.4,,,,,,,,0.22,0.41,0.35,,,,,,0.38,,0.21,0.35,0.859051749,14658,17063,0.832047895,0.886055604,0.550624367,3263,5926,0.466845251,0.634403484,0.030446882,372,12218,,,0.146,972,,0.09,0.202,,,,,,,,,,0.025872443,0,0.060694796,0.121888811,0.065609527,0.178168096,3.550448833,118656,33420,3.11735685,3.983540816,0.158708295,1037,6534,0.095584712,0.221831878,4.554079696,12,26350,,,87.00077152,106,121838,70.43825812,103.5632849,,,,,,,,,,46.45329122,22.27615876,85.42925648,99.01302969,80.01260668,121.1668725,,,,8.4,,,,,0,,,,,0.137589433,1250,9085,0.1033717,0.171807166,0.080573951,0.051215435,0.109932468,0.055586131,0.031022738,0.080149524,0.009906439,0.000748518,0.01906436,0.860920297,9149,10627,0.817549632,0.904290963,,,,,,,,,,0.913,0.791222302,1,0.808994617,0.769997231,0.847992003,0.209,,10627,0.159399112,0.258600888,76.84007685,,,75.80589214,77.87426156,,,,,,,,,,81.64804503,78.28843558,85.00765447,75.97375987,74.79009282,77.15742692,,,,392.2137648,358,68982,349.6387935,434.7887361,,,,,,,,,,,,,429.8242995,380.0466638,479.6019353,,,,57.51051364,16,27821,32.87222765,93.39347111,,,,,,,,,,,,,67.65547749,36.02369238,115.692927,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.122,,,0.104,0.139,0.165,,,0.143,0.188,0.098,,,0.084,0.113,,,,,,0.091,2280,,,,0.072393029,1637.747489,22623,,,17.31670929,13,75072,9.220418386,29.61210028,,,,,,,,,,,,,20.57436777,10.63107605,35.93927998,,,,0.324,,,0.311,0.337,0.138220905,2006,14513,0.116774097,0.159667714,0.078682005,554,7041,0.056043708,0.101320303,0.0014839,40,26956,,,673.9,0.807371795,251.9,312,,,,,,,,2.870733162,,,,,,,,2.621657945,2.974887384,2.7575138,,,,,,,,2.333614344,2.922226077,0.033172029,,,,,-3815.428333,,,,,0.891772762,43498,48777,0.822072196,0.961473328,61725,,,55406.53192,68043.46809,108214,386.5957447,216041.4043,,,,,,,61554,50119.2766,72988.7234,65000,56899.06383,73100.93617,,,,,,0.38183482,1669,4371,,,,,,,,0.239562576,,61725,,,7.912355447,13,1643,,,,,,,,,,,,,,,,,,,,,,,,,,31.31936341,36,121838,21.68956962,43.76567115,29.54743184,,,,,,,,,,,,,37.39953882,25.41117212,53.08566003,,,,22.16057388,27,121838,14.60395782,32.24247152,,,,,,,,,,,,,24.22659237,15.35758138,36.3517837,,,,11.32570339,19,167760,6.818813284,17.68648878,,,,,,,,,,,,,12.98423561,7.563795727,20.78901902,,,,,,,,,,,0.683595642,11293,16520,,,0.736,,,,,50.84243008,,,,,0.708404619,6625,9352,0.658432308,0.758376931,0.086789555,791,9114,0.054624163,0.118954946,0.86323781,8073,9352,0.828152547,0.898323074,26956,,,,,0.25178068,6787,26956,,,0.194056982,5231,26956,,,0.004488797,121,26956,,,0.018177771,490,26956,,,0.009682446,261,26956,,,0.001075827,29,26956,,,0.186711678,5033,26956,,,0.766471287,20661,26956,,,0.02790795,667,23900,0.015437356,0.040378544,0.495659593,13361,26956,,,0.412432049,10470,25386,, -16,077,16077,ID,Power County,2024,1,8200.023822,102,21734,5861.199266,10538.84838,0,,,,2,,,,2,,,,2,,,,2,7646.557863,5039.129814,11125.34023,,,,,2,,0.191,,,0.163,0.222,4.111337181,,,3.244057918,5.075794824,4.779802005,,,3.760049077,5.868459272,0.073587385,56,761,0.055036371,0.092138399,0,,,,,,,,,,0.073846154,0.045413336,0.102278971,0.068965517,0.044316935,0.093614099,,,,,,,0.181,,,0.146,0.22,0.387,,,0.307,0.472,8.7,0.058773345,0.075,,,0.279,,,0.23,0.332,0.714775324,5631,7878,,,0.151890958,,,0.119831876,0.18755714,0.285714286,2,7,0.086061846,0.500925625,188.7,15,7950,,,28.21316614,54,1914,21.19459873,36.81206186,,,,,,,,,,34.26124197,23.43466415,48.36665105,21.3963964,12.88202834,33.41312339,,,,,,,0.156464662,1025,6551,0.135017853,0.17791147,0.000251572,2,7950,,,3975,0.000247893,2,8068,,,4034,0.000619732,5,8068,,,1613.6,1296,,,,,,,,,1402,0.38,,,,,,,,0.25,0.39,0.34,,,,,,,,0.29,0.35,0.842877817,4077,4837,0.795885585,0.889870049,0.528571429,962,1820,0.418054638,0.639088219,0.028414097,129,4540,,,0.176,419,,0.109276596,0.242723404,0.244897959,0,0.612893565,,,,,,,0.100529101,0.015608889,0.185449312,0.151515152,0.024351102,0.278679201,3.568021625,104279,29226,2.581972386,4.554070864,0.201296071,497,2469,0.113417422,0.289174721,3.773584906,3,7950,,,85.39930645,33,38642,58.78495309,119.9323774,,,,,,,,,,,,,106.7691651,69.09537411,157.6123498,,,,4.7,,,,,1,,,,,0.06864564,185,2695,0.026961887,0.110329394,0.049424006,0.009834731,0.089013281,0.022263451,0,0.045482959,0,0,0.010629071,0.726345609,2564,3530,0.651582156,0.801109062,,,,,,,,,,0.679539852,0.530991482,0.828088223,0.77721519,0.689650574,0.864779806,0.174,,3530,0.105720278,0.242279722,76.55171374,,,74.55420231,78.54922516,,,,,,,,,,77.27529452,73.35494417,81.19564487,76.66768635,74.29493903,79.04043367,,,,399.9397599,102,21734,318.4201581,481.4593617,,,,,,,,,,,,,401.0363366,308.8468464,512.1144488,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.132,,,0.114,0.152,0.165,,,0.143,0.189,0.11,,,0.094,0.128,,,,,,0.075,590,,,,0.058773345,459.4312341,7817,,,,,,,,,,,,,,,,,,,,,,,,,,0.309,,,0.295,0.321,0.188097514,787,4184,0.15950177,0.216693259,0.10177706,252,2476,0.070798336,0.132755783,0.000743679,6,8068,,,1344.666667,0.878937008,111.625,127,,,,,,,,3.235764575,,,,,,,,2.971864081,3.469307968,2.983755344,,,,,,,,2.644841019,3.327037276,0.104275383,,,,,-1462.968,,,,,0.753489586,34656,45994,0.606959882,0.900019289,57426,,,49168.97872,65683.02128,29375,3021.638298,55728.3617,,,,,,,45938,20778.51064,71097.48936,63098,55018.51064,71177.48936,,,,,,0.411997736,728,1767,,,,,,,,0.217810748,,57426,,,9.950248756,6,603,,,,,,,,,,,,,,,,,,,,,,,,,,28.66109504,11,38642,13.74410912,52.70877422,28.46643549,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20.39151713,11,53944,10.17937188,36.48605686,,,,,,,,,,,,,,,,,,,,,,,,,,0.661075269,3074,4650,,,0.591,,,,,10.27966135,,,,,0.710595283,1898,2671,0.645290003,0.775900562,0.099596774,247,2480,0.029642722,0.169550827,0.893672782,2387,2671,0.859247842,0.928097722,8068,,,,,0.29858701,2409,8068,,,0.168691125,1361,8068,,,0.00421418,34,8068,,,0.038919187,314,8068,,,0.006445216,52,8068,,,0.001983143,16,8068,,,0.349033218,2816,8068,,,0.602875558,4864,8068,,,0.080451947,591,7346,0.04486659,0.116037303,0.492687159,3975,8068,,,1,7878,7878,, -16,079,16079,ID,Shoshone County,2024,1,10710.00817,278,35797,8564.238666,12855.77767,0,,,,2,,,,2,,,,2,,,,2,11152.62687,8835.719624,13469.53412,,,,,2,,0.182,,,0.154,0.213,4.429492095,,,3.527367942,5.402333333,5.29334072,,,4.26931482,6.423651763,0.075216972,78,1037,0.059164403,0.091269541,0,,,,,,,,,,,,,0.07523511,0.058523201,0.091947018,,,,,,,0.211,,,0.17,0.255,0.38,,,0.304,0.462,7.4,0.04135682,0.141,,,0.266,,,0.218,0.321,0.917153922,12078,13169,,,0.153111008,,,0.121292466,0.190097945,0.294117647,5,17,0.163936752,0.428688912,279.2,38,13612,,,23.36448598,55,2354,17.60132837,30.41209005,,,,,,,,,,,,,22.77039848,16.78909432,30.19024487,,,,,,,0.111561866,1155,10353,0.094881015,0.128242717,0.000440788,6,13612,,,2268.666667,0.000570939,8,14012,,,1751.5,0.001213246,17,14012,,,824.2352941,1606,,,,,,,,,1638,0.4,,,,,,,,,0.4,0.35,,,,,,,,,0.35,0.880589326,8547,9706,0.851802262,0.909376391,0.510225303,1472,2885,0.428208037,0.59224257,0.046272494,252,5446,,,0.192,558,,0.112170213,0.271829787,0.114285714,0,0.366407278,,,,,,,0.227272727,0,0.615503233,0.182051282,0.118192161,0.245910403,4.447498546,91743,20628,3.851711248,5.043285843,0.303811252,837,2755,0.208905739,0.398716765,5.877167205,8,13612,,,134.3774617,87,64743,107.6308381,165.7541025,,,,,,,,,,,,,140.7710181,112.1233302,174.5068567,,,,9.7,,,,,0,,,,,0.105795768,575,5435,0.077773322,0.133818215,0.08427907,0.059464894,0.109093245,0.011775529,0.001738388,0.02181267,0.009935603,0,0.021150195,0.77115701,4219,5471,0.717808453,0.824505566,,,,,,,,,,,,,0.763404061,0.69566583,0.831142292,0.28,,5471,0.218272111,0.341727889,74.03510518,,,72.52348192,75.54672844,,,,,,,,,,,,,73.48839286,71.89811794,75.07866778,,,,511.5302594,278,35797,443.963688,579.0968308,,,,,,,,,,,,,529.1672019,456.9501841,601.3842197,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.136,,,0.117,0.157,0.18,,,0.156,0.207,0.105,,,0.089,0.123,,,,,,0.141,1850,,,,0.04135682,527.9198094,12765,,,,,,,,,,,,,,,,,,,,,,,,,,0.346,,,0.331,0.36,0.128989538,974,7551,0.107542729,0.150436346,0.067008547,196,2925,0.046753228,0.087263866,0.000356837,5,14012,,,2802.4,0.841666667,83.325,99,,,,,,,,3.248728436,,,,,,,,,3.205532779,3.380032409,,,,,,,,,3.361353233,0.042699614,,,,,-5162.3055,,,,,0.592731286,30074,50738,0.481007361,0.704455212,47005,,,42469,51541,,,,,,,,,,12188,4797.191489,19578.80851,44505,40930.53192,48079.46809,,,,,,0.397482014,663,1668,,,,,,,,0.314583555,,47005,,,4.592422503,4,871,,,,,,,,,,,,,,,,,,,,,,,,,,37.39651999,25,64743,23.14903529,57.16455327,38.61421312,,,,,,,,,,,,,34.78587285,20.61631286,54.97667619,,,,26.25766492,17,64743,15.29605744,42.04106516,,,,,,,,,,,,,27.13658181,15.5109012,44.06810875,,,,25.66190992,23,89627,16.26744958,38.50546475,,,,,,,,,,,,,28.12286022,17.82748097,42.19809852,,,,,,,,,,,0.601591248,6049,10055,,,0.569,,,,,50.59835233,,,,,0.730193501,4000,5478,0.698986363,0.761400639,0.110086564,585,5314,0.081687876,0.138485251,0.82803943,4536,5478,0.796749307,0.859329554,14012,,,,,0.210890665,2955,14012,,,0.23601199,3307,14012,,,0.006637168,93,14012,,,0.017485013,245,14012,,,0.007065373,99,14012,,,0.001855552,26,14012,,,0.043819583,614,14012,,,0.903725378,12663,14012,,,0.004059863,51,12562,0,0.011226417,0.491792749,6891,14012,,,1,13169,13169,, -16,081,16081,ID,Teton County,2024,1,6448.20224,98,35553,4720.894468,8600.998158,0,,,,2,,,,2,,,,2,,,,2,7705.292627,5479.216298,10533.38868,,,,,2,,0.125,,,0.102,0.151,3.252993886,,,2.51089312,4.043178022,4.568165189,,,3.650634729,5.569465134,0.078947368,75,950,0.06179969,0.096095047,0,,,,,,,,,,0.074257426,0.038100171,0.110414681,0.078236131,0.058384695,0.098087567,,,,,,,0.125,,,0.093,0.164,0.269,,,0.208,0.338,9.5,0.022345126,0.054,,,0.192,,,0.154,0.238,0.831040413,9665,11630,,,0.187379674,,,0.149928783,0.229137641,0.333333333,2,6,0.110000414,0.553214291,138.6,17,12267,,,12.04819277,27,2241,7.939834954,17.52948793,,,,,,,,,,33.22259136,20.2932219,51.30959785,,,,,,,,,,0.157172401,1672,10638,0.135725592,0.178619209,0.000326078,4,12267,,,3066.75,0.000398597,5,12544,,,2508.8,0.001434949,18,12544,,,696.8888889,1749,,,,,,,,13333,1600,0.44,,,,,,,,,0.44,0.32,,,,,,,,0.19,0.32,0.934086167,7610,8147,0.909839747,0.958332586,0.698915525,2449,3504,0.56303937,0.83479168,0.021008403,160,7616,,,0.096,258,,0.05906383,0.13293617,,,,,,,,,,0.319571865,0.127843279,0.511300452,0.008368201,0,0.025838245,3.902656843,174800,44790,2.622531347,5.18278234,0.100786276,282,2798,0.02989855,0.171674002,2.445585718,3,12267,,,68.41200714,41,59931,49.09363746,92.80861251,,,,,,,,,,,,,82.09506609,58.64991881,111.7901793,,,,3,,,,,0,,,,,0.103729604,445,4290,0.06149417,0.145965038,0.090566925,0.040732297,0.140401554,0.012820513,0,0.027972588,0.005594406,0,0.012576398,0.676096393,4517,6681,0.62173607,0.730456715,,,,,,,,,,,,,0.635273973,0.567873532,0.702674414,0.508,,6681,0.405538842,0.610461158,81.83256165,,,79.44996213,84.21516117,,,,,,,,,,,,,80.21648942,77.71099134,82.7219875,,,,236.7795825,98,35553,191.1116822,290.0709852,,,,,,,,,,,,,266.1157119,212.2643139,329.4693592,,,,80.52826542,10,12418,38.61643337,148.0943473,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.098,,,0.082,0.115,0.139,,,0.118,0.164,0.082,,,0.069,0.097,0,0,10350,,,0.054,620,,,,0.022345126,227.2499349,10170,,,,,,,,,,,,,,,,,,,,,,,,,,0.285,,,0.267,0.302,0.164928789,1297,7864,0.139907513,0.189950066,0.138157895,399,2888,0.100030235,0.176285554,0.000956633,12,12544,,,1045.333333,0.975,127.725,131,,,,,,,,2.904163959,,,,,,,,2.129947953,3.170988128,2.663148184,,,,,,,,1.826516475,2.982726571,0.024058574,,,,,-3586.413,,,,,0.833936375,53241,63843,0.697859971,0.970012779,95580,,,84387.14894,106772.8511,,,,,,,,,,51917,16995.6383,86838.3617,97308,72435.65957,122180.3404,,,,,,0.05990286,111,1853,,,,,,,,0.205137058,,95580,,,5.617977528,4,712,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,24.55343441,20,81455,14.99787562,37.92078805,,,,,,,,,,,,,28.72737719,17.29575767,44.86135801,,,,,,,,,,,0.77026699,6347,8240,,,0.463,,,,,0.034439466,,,,,0.783877693,3384,4317,0.751062368,0.816693017,0.110333567,473,4287,0.061801011,0.158866123,0.939309706,4055,4317,0.937158358,0.941461054,12544,,,,,0.218112245,2736,12544,,,0.142378827,1786,12544,,,0.003029337,38,12544,,,0.009646046,121,12544,,,0.008131378,102,12544,,,0.001992985,25,12544,,,0.163185587,2047,12544,,,0.810825893,10171,12544,,,0.017504081,193,11026,0.00546789,0.029540273,0.475605867,5966,12544,,,1,11630,11630,, -16,083,16083,ID,Twin Falls County,2024,1,7901.304892,1147,249704,7242.042136,8560.567648,0,,,,2,,,,2,,,,2,6744.420265,5273.374355,8215.466175,,8155.876062,7388.767341,8922.984783,,,,,2,,0.169,,,0.143,0.197,3.972268084,,,3.262116929,4.807115325,5.429473019,,,4.649735534,6.297725525,0.076021965,623,8195,0.070283682,0.081760248,0,,,,,,,0.085526316,0.041066284,0.129986347,0.095424107,0.081820984,0.10902723,0.07008315,0.063565114,0.076601185,,,,,,,0.175,,,0.138,0.21,0.347,,,0.3,0.398,8.5,0.047142903,0.09,,,0.245,,,0.205,0.284,0.716344979,64504,90046,,,0.162901467,,,0.136368897,0.192747318,0.214285714,9,42,0.135955927,0.300938209,382.7,353,92243,,,21.22208257,439,20686,19.23684808,23.20731706,,,,,,,,,,28.38427948,23.7319986,33.03656035,18.61738535,16.40484955,20.82992116,,,,30.44496487,16.21066157,52.06181714,0.134296038,10295,76659,0.118806677,0.1497854,0.000650456,60,92243,,,1537.383333,0.000747097,70,93696,,,1338.514286,0.002977715,279,93696,,,335.827957,2075,,,,,,,,1014,2129,0.37,,,,,,0.42,,0.28,0.38,0.47,,,,,0.33,0.55,,0.33,0.47,0.873959981,50840,58172,0.86102674,0.886893221,0.625104393,14970,23948,0.57297282,0.677235966,0.026346115,1166,44257,,,0.137,3320,,0.090531915,0.183468085,,,,,,,,,,0.277999653,0.200015596,0.355983709,0.12305362,0.090479952,0.155627289,3.913909814,112748,28807,3.399478124,4.428341503,0.143318832,3459,24135,0.112440432,0.174197231,8.781154126,81,92243,,,111.0004399,487,438737,101.1418162,120.8590636,,,,,,,,,,70.558477,52.85314109,92.29222516,123.3502272,111.5951403,135.105314,,,,5.2,,,,,1,,,,,0.135547859,4305,31760,0.111770628,0.15932509,0.107680127,0.084524914,0.130835339,0.023929471,0.014840869,0.033018074,0.012279597,0.006145652,0.018413542,0.808137014,33549,41514,0.788905032,0.827368996,,,,,,,,,,0.816247582,0.767318015,0.865177149,0.810914103,0.789983039,0.831845167,0.181,,41514,0.155501014,0.206498986,76.58484844,,,76.02264566,77.14705121,,,,,,,,,,80.11802527,77.73617524,82.4998753,76.2517807,75.62556451,76.87799689,,,,393.6313181,1147,249704,370.1228394,417.1397968,,,,,,,,,,299.2216991,238.0307111,360.4126872,408.2222441,381.8492225,434.5952657,,,,55.42019015,58,104655,42.0828739,71.64344727,,,,,,,,,,77.21380095,46.48775212,120.5789148,51.47865668,36.42936132,70.65847829,,,,4.136253041,34,8220,2.864475473,5.779999038,,,,,,,,,,,,,4.023470243,2.577913303,5.986604794,,,,,,,0.125,,,0.107,0.143,0.164,,,0.143,0.186,0.094,,,0.081,0.109,16,12,74826,,,0.09,8020,,,,0.047142903,3640.846361,77230,,,26.53888133,71,267532,20.7270865,33.47518768,,,,,,,,,,,,,31.25766414,24.12400528,39.84045887,,,,0.328,,,0.314,0.343,0.162277252,8460,52133,0.140830444,0.183724061,0.078279184,2007,25639,0.058023865,0.098534503,0.001483521,139,93696,,,674.0719425,0.751912929,854.925,1137,,,0.093364651,477,5109,0.037379703,0.149349598,2.90868112,,,,,,2.397281266,,2.476585025,3.060276642,2.876187345,,,,,,2.088667591,1.977863581,2.418766858,3.056800881,0.05369293,,,,,-2814.823171,,,,,0.701594703,37616,53615,0.6397761,0.763413306,63860,,,56600.25532,71119.74468,53000,10351.82979,95648.17021,49119,44611.59575,53626.40426,54233,27759.29787,80706.70213,51091,42984.10638,59197.89362,65064,61651.57447,68476.42553,,,,,,0.269473154,4276,15868,,,88.07547864,,,,,0.195865957,,63860,,,7.173133355,44,6134,,,2.81165547,17,604626,1.637892924,4.501732776,,,,,,,,,,,,,2.73290672,1.455157729,4.673353722,,,,27.13347974,117,438737,22.11960232,32.14735715,26.66745681,,,,,,,,,,21.44381955,10.70467746,38.36891657,29.29023841,23.41593835,35.16453846,,,,17.55037756,77,438737,13.85048351,21.93496069,,,,,,,,,,17.30679625,9.215140107,29.59514866,18.07970233,13.8616041,23.17736243,,,,18.3584563,111,604626,14.94314149,21.77377112,,,,,,,,,,17.78251978,10.53904822,28.10404776,18.92012344,15.21401353,23.25604388,,,,,,,,,,,0.627812178,36501,58140,,,0.69,,,,,74.39826371,,,,,0.694064748,23154,33360,0.671509901,0.716619595,0.118749807,3845,32379,0.097037781,0.140461834,0.887380096,29603,33360,0.868040299,0.906719893,93696,,,,,0.26206028,24554,93696,,,0.165492657,15506,93696,,,0.008506233,797,93696,,,0.01391735,1304,93696,,,0.016329406,1530,93696,,,0.002849641,267,93696,,,0.182003501,17053,93696,,,0.769851434,72132,93696,,,0.025791588,2183,84640,0.019373837,0.032209339,0.504311817,47252,93696,,,0.346911579,31238,90046,, -16,085,16085,ID,Valley County,2024,1,5255.523236,124,32422,3502.425882,7008.62059,0,,,,2,,,,2,,,,2,,,,2,5424.109317,3507.452546,7340.766088,,,,,2,,0.146,,,0.121,0.175,3.849500133,,,3.016373606,4.742349378,5.149163423,,,4.137239118,6.237237478,0.065934066,42,637,0.046661921,0.085206211,0,,,,,,,,,,,,,0.067375887,0.046687716,0.088064057,,,,,,,0.16,,,0.125,0.2,0.305,,,0.24,0.377,8.2,0.075468773,0.089,,,0.218,,,0.175,0.265,0.726204665,8530,11746,,,0.167581104,,,0.134052762,0.204471429,0.227272727,5,22,0.117752454,0.350313422,171.6,21,12241,,,8.844339623,15,1696,4.950109748,14.5873932,,,,,,,,,,,,,7.289595759,3.638939939,13.04310041,,,,,,,0.125833704,1132,8996,0.107961363,0.143706044,0.001307083,16,12241,,,765.0625,0.000401155,5,12464,,,2492.8,0.002406932,30,12464,,,415.4666667,1367,,,,,,,,,1378,0.39,,,,,,,,,0.39,0.43,,,,,,,,,0.43,0.927709545,8611,9282,0.889969689,0.965449402,0.702521008,2090,2975,,,0.0373057,216,5790,,,0.102,223,,0.061489362,0.142510638,,,,,,,,,,,,,0.145419292,0.005271131,0.285567454,6.116343379,152615,24952,4.516020383,7.716666376,0.088334134,184,2083,0,0.219360363,12.25390083,15,12241,,,83.98509265,48,57153,61.92397744,111.3520483,,,,,,,,,,,,,89.42161339,65.70363807,118.9117891,,,,4.7,,,,,0,,,,,0.121173469,475,3920,0.060512733,0.181834206,0.099437628,0.04353222,0.155343036,0.014030612,0,0.037827405,0.022959184,0,0.05075555,0.696369637,3376,4848,0.588016828,0.804722446,,,,,,,,,,,,,0.698593074,0.609275379,0.787910768,0.05,,4848,0.018792985,0.081207015,83.01811577,,,81.16144981,84.87478173,,,,,,,,,,,,,82.86814019,80.92908076,84.80719963,,,,228.7747086,124,32422,181.4964813,276.052936,,,,,,,,,,,,,230.4117711,180.3163085,280.5072337,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.114,,,0.097,0.132,0.163,,,0.14,0.188,0.088,,,0.075,0.103,,,,,,0.089,1020,,,,0.075468773,744.2730416,9862,,,,,,,,,,,,,,,,,,,,,,,,,,0.301,,,0.281,0.319,0.129135695,886,6861,0.107688886,0.150582503,0.117463153,263,2239,0.082909962,0.152016345,0.000802311,10,12464,,,1246.4,0.886090226,117.85,133,,,,,,,,3.644243115,,,,,,,,,3.705281029,3.431127548,,,,,,,,,3.507941137,0.035342889,,,,,319.109,,,,,0.518960919,31325,60361,0.342915464,0.695006373,74166,,,63368.7234,84963.2766,,,,,,,,,,57125,8832.744681,105417.2553,73289,61465.85106,85112.14894,,,,,,0.158872518,248,1561,,,,,,,,0.264366421,,74166,,,4.073319756,2,491,,,,,,,,,,,,,,,,,,,,,,,,,,23.18666107,13,57153,11.57469766,41.48734147,22.74596259,,,,,,,,,,,,,25.55982773,12.75937391,45.73359216,,,,17.4968943,10,57153,8.390440915,32.17741158,,,,,,,,,,,,,19.02587519,9.123646682,34.98926188,,,,18.00596769,14,77752,9.844030091,30.21095422,,,,,,,,,,,,,18.15084751,9.664561854,31.03850202,,,,,,,,,,,0.768552775,7063,9190,,,0.325,,,,,18.51180311,,,,,0.847346295,3225,3806,0.79708957,0.897603021,0.142394822,528,3708,0.076967718,0.207821926,0.905149764,3445,3806,0.864393135,0.945906392,12464,,,,,0.176749037,2203,12464,,,0.272384467,3395,12464,,,0.004573171,57,12464,,,0.010670732,133,12464,,,0.007220796,90,12464,,,0.000802311,10,12464,,,0.055279204,689,12464,,,0.908456354,11323,12464,,,0.002383896,27,11326,,,0.482830552,6018,12464,,,0.685424826,8051,11746,, -16,087,16087,ID,Washington County,2024,1,8738.00382,174,28050,6461.301107,11014.70653,0,,,,2,,,,2,,,,2,,,,2,9228.192419,6477.629244,11978.75559,,,,,2,,0.186,,,0.159,0.215,4.275438004,,,3.449188026,5.168701913,5.032120138,,,4.066042162,6.115701492,0.059945504,44,734,0.042771844,0.077119164,0,,,,,,,,,,,,,0.064285714,0.043971926,0.084599503,,,,,,,0.185,,,0.148,0.223,0.367,,,0.296,0.441,7.9,0.066484034,0.109,,,0.274,,,0.225,0.324,0.699904762,7349,10500,,,0.135446793,,,0.107855089,0.167281176,0.153846154,2,13,0.034991468,0.324991408,256.9,28,10898,,,21.32796781,53,2485,15.97611144,27.89750701,,,,,,,,,,,,,23.74059062,17.03665771,32.20679187,,,,,,,0.11882793,953,8020,0.10095559,0.136700271,0.0004588,5,10898,,,2179.6,0.000180391,2,11087,,,5543.5,0.000450979,5,11087,,,2217.4,974,,,,,,,,,869,0.33,,,,,,,,0.29,0.33,0.26,,,,,,,,0.21,0.27,0.902144772,6730,7460,0.871562208,0.932727336,0.560585277,1226,2187,0.458118023,0.66305253,0.032839407,164,4994,,,0.19,456,,0.123276596,0.256723404,,,,,,,,,,0.41681261,0.205884771,0.627740448,0.167564333,0.08978422,0.245344445,4.583498149,90382,19719,3.673229156,5.493767142,0.282254697,676,2395,0.201020438,0.363488957,4.587997798,5,10898,,,96.64823907,50,51734,71.73418591,127.4186544,,,,,,,,,,,,,114.8807196,84.4100317,152.7670032,,,,6.5,,,,,0,,,,,0.145369285,620,4265,0.101429833,0.189308737,0.119802678,0.077579729,0.162025627,0.021101993,0.001703227,0.040500759,0.004454865,0,0.013676571,0.716961766,2794,3897,0.665771027,0.768152504,,,,,,,,,,,,,0.722987672,0.643545576,0.802429768,0.234,,3897,0.167489702,0.300510298,76.30610478,,,74.55279645,78.05941311,,,,,,,,,,78.57124282,73.32993895,83.8125467,75.64219925,73.59663485,77.68776366,,,,405.8647485,174,28050,336.8507863,474.8787106,,,,,,,,,,,,,419.0534382,340.1573374,497.9495391,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.133,,,0.115,0.152,0.173,,,0.15,0.197,0.109,,,0.093,0.126,0,0,9257,,,0.109,1130,,,,0.066484034,678.0041755,10198,,,,,,,,,,,,,,,,,,,,,,,,,,0.308,,,0.293,0.322,0.140156919,786,5608,0.116327132,0.163986706,0.071680376,183,2553,0.049042078,0.094318674,0.000721566,8,11087,,,1385.875,0.8146875,130.35,160,,,,,,,,2.966158385,,,,,,,,2.5531331,3.097233901,3.02657559,,,,,,,,2.809018544,3.131336466,0.04611894,,,,,-6088.356333,,,,,0.67730489,32258,47627,0.52009156,0.834518221,55072,,,47156.93617,62987.06383,,,,,,,,,,,,,50568,45227.74468,55908.25532,,,,,,0.390243902,704,1804,,,,,,,,0.22712086,,55072,,,5.555555556,3,540,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,19.47419669,14,71890,10.64672455,32.67439299,,,,,,,,,,,,,24.63314213,13.46716803,41.33022684,,,,,,,,,,,0.728065395,5344,7340,,,0.706,,,,,30.93656531,,,,,0.717595945,2973,4143,0.675161949,0.760029942,0.146581407,596,4066,0.0977792,0.195383613,0.860246198,3564,4143,0.817751988,0.902740409,11087,,,,,0.220438351,2444,11087,,,0.25633625,2842,11087,,,0.005682331,63,11087,,,0.016235231,180,11087,,,0.010372508,115,11087,,,0.001172544,13,11087,,,0.159646433,1770,11087,,,0.794714531,8811,11087,,,0.032039801,322,10050,0.014291811,0.049787791,0.498962749,5532,11087,,,0.475809524,4996,10500,, -17,000,17000,IL,Illinois,2024,,7549.023973,166521,35344512,7494.157827,7603.890118,0,4214.308118,2926.605567,5502.010669,,2717.525298,2585.383812,2849.666784,,15655.65968,15444.49444,15866.82492,,5810.81133,5699.842257,5921.780403,,6598.568992,6532.203363,6664.93462,,5809.528935,3384.264692,9301.618603,1,,0.144,,,0.128,0.162,3.231316304,,,2.876100866,3.586531742,4.245920726,,,3.856580923,4.63526053,0.084645321,83130,982098,0.084094798,0.085195843,0,0.078025478,0.057047968,0.099002987,0.091828524,0.089580214,0.094076833,0.147136345,0.145407275,0.148865416,0.074355858,0.073237714,0.075474003,0.068192859,0.06750959,0.068876128,0.037037037,0.014510362,0.059563712,0.095724449,0.090884736,0.100564162,0.126,,,0.11,0.142,0.343,,,0.32,0.368,8.4,0.04830637,0.095,,,0.264,,,0.243,0.286,0.905986869,11607964,12812508,,,0.175444029,,,0.157236453,0.195271474,0.27942736,1581,5658,0.272886487,0.285997724,566.9,71836,12671469,,,14.65566688,41495,2831328,14.51465238,14.79668138,7.637349101,5.189208174,10.84060742,1.447761092,1.252873118,1.642649067,30.0043601,29.49005647,30.51866373,19.77771338,19.44674481,20.10868195,8.852606351,8.700438768,9.004773934,,,,14.73332439,13.90247299,15.56417579,0.081871674,845089,10322117,0.079488696,0.084254653,0.000791226,10026,12671469,,,1263.860862,0.000841359,10586,12582032,,,1188.553939,0.003144882,39569,12582032,,,317.9770022,3327,,,,,8812,1929,6059,3244,3025,0.43,,,,,0.43,0.35,0.38,0.31,0.45,0.49,,,,,0.4,0.54,0.35,0.41,0.51,0.901361198,7883680,8746416,0.900228255,0.90249414,0.712094598,2427502,3408960,0.708058103,0.716131093,0.045698866,295794,6472677,,,0.157,421492,,0.149851064,0.164148936,0.193520456,0.152998999,0.234041913,0.100396211,0.090204547,0.110587874,0.356288591,0.347103583,0.3654736,0.188444856,0.182362494,0.194527217,0.086723819,0.083950851,0.089496787,4.970359758,156119,31410,4.920460058,5.020259459,0.249234466,701765,2815682,0.245158464,0.253310468,9.721051285,12318,12671469,,,73.85080012,46876,63473923,73.18224687,74.51935336,31.90482072,21.67777776,45.28634628,19.74000373,18.30307808,21.17692938,140.8974524,138.4380131,143.3568917,41.92820578,40.72603973,43.13037183,73.42215557,72.56654842,74.27776272,,,,8.8,,,,,0.333333333,,,,,0.157340409,768460,4884060,0.155761899,0.15891892,0.133490219,0.131936722,0.135043715,0.023838774,0.023158477,0.02451907,0.009054967,0.008676277,0.009433657,0.685864997,4233084,6171891,0.683412147,0.688317846,0.691199251,0.663471643,0.718926859,0.563126138,0.553703179,0.572549098,0.623026726,0.616844224,0.629209228,0.674132359,0.668531292,0.679733426,0.714146593,0.711692666,0.71660052,0.41,,6171891,0.407617021,0.412382979,77.95442418,,,77.90421793,78.00463044,124.6948602,103.6514244,145.7382961,88.14773447,87.78237702,88.51309193,70.78895663,70.63880737,70.93910589,82.54063193,82.31858863,82.76267522,78.58784565,78.52856944,78.64712186,79.93670078,76.58249387,83.29090769,373.8769421,166521,35344512,372.0254748,375.7284094,177.4145742,142.794354,212.0347943,146.2029114,141.3394558,151.0663671,705.0160464,697.9900136,712.0420793,284.0272211,279.438569,288.6158732,342.8768436,340.6824079,345.0712792,309.1239339,214.0773105,431.9697133,50.7695173,6376,12558717,49.52332532,52.01570928,,,,25.98528787,22.13525374,29.835322,122.2979678,117.341638,127.2542977,38.7524168,36.56343767,40.94139592,38.70378087,37.18018004,40.2273817,,,,5.986876482,6061,1012381,5.836151852,6.137601113,,,,3.068052172,2.641774806,3.494329538,12.62692162,12.09055008,13.16329316,5.501024201,5.188074697,5.813973705,4.323492893,4.148050941,4.498934845,,,,10.96364686,9.220679249,12.70661446,0.10007105,,,0.086871491,0.11502356,0.135145366,,,0.119505172,0.152477995,0.097,,,0.085,0.109,333.3,35731,10718973,,,0.095,1201290,,,,0.04830637,619801.2521,12830632,,,26.63005967,10101,37930820,26.11072655,27.1493928,18.75117195,9.360517477,33.55102622,3.5475197,2.808604754,4.421268017,62.78185054,60.65931032,64.90439075,16.26061496,15.29660181,17.22462811,23.55269867,22.92420484,24.18119251,,,,0.318525007,,,0.298169129,0.339598137,0.10088829,763366,7566448,0.098505311,0.103271269,0.031503777,91390,2900922,0.029120798,0.033886756,0.001129786,14215,12582032,,,885.1236018,,,,,,0.065897824,44678,677989,0.062802039,0.06899361,2.994106948,,,,,,3.705400809,2.545390611,2.677231671,3.256134593,2.911049095,,,,,,3.897382982,2.263648602,2.573211869,3.243392754,0.354691602,,,,,1413.333,,,,,0.797660146,54067,67782,0.790662198,0.804658094,76744,,,76054.12766,77433.87234,70669,65389.51064,75948.48936,106279,103642.234,108915.766,46717,46009.25532,47424.74468,70419,69468.19149,71369.80851,86254,85759.53192,86748.46809,,,,,,0.462473339,859312,1858079,,,71.50949455,,,,,0.277747275,,,,,3.545527892,,,,,8.833746149,7874,89135457,8.638625478,9.02886682,,,,0.830610447,0.598630951,1.122744028,45.03277876,43.85998082,46.2055767,6.90242557,6.488839489,7.316011652,1.879268267,1.764050514,1.994486021,,,,11.00566724,7209,63473923,10.74642614,11.26490834,11.35741996,,,,5.625713378,4.865406268,6.386020488,7.401148191,6.832723458,7.969572923,5.380031071,4.935132013,5.824930129,13.75083744,13.37564951,14.12602536,,,,12.65401541,8032,63473923,12.377275,12.93075582,,,,1.497517524,1.128135141,1.949224898,47.41655223,45.98979682,48.84330764,7.563765776,7.05316631,8.074365241,7.360643119,7.089737059,7.631549179,,,,9.319523655,8307,89135457,9.119109828,9.519937482,,,,3.263112471,2.765207867,3.761017076,13.11865907,12.48565931,13.75165883,6.399258099,6.001031869,6.797484329,9.982923115,9.717368486,10.24847774,,,,5.256619303,,1287900,,,6770,,0.665653141,6033743,9064395,,,,,,,,200.7834243,,,,,0.666727379,3312809,4968761,0.663251643,0.670203116,0.140165766,676030,4823075,0.138519522,0.141812009,0.88137586,4379346,4968761,0.879022566,0.883729155,12582032,,,,,0.216191709,2720131,12582032,,,0.171935424,2163297,12582032,,,0.140990819,1773951,12582032,,,0.006304705,79326,12582032,,,0.062599825,787633,12582032,,,0.000683435,8599,12582032,,,0.183096419,2303725,12582032,,,0.594780795,7483551,12582032,,,0.038613401,464769,12036469,0.037946303,0.039280499,0.504950075,6353298,12582032,,,0.130725226,1674918,12812508,, -17,001,17001,IL,Adams County,2024,1,8027.094034,1000,176191,7239.637609,8814.550458,0,,,,2,,,,2,15059.42567,10547.4366,20848.59288,,,,,2,7841.659116,7025.628598,8657.689634,,,,,2,,0.148,,,0.122,0.175,3.638850978,,,2.816540107,4.595921736,4.718102281,,,3.721592593,5.831556121,0.086290624,462,5354,0.078769154,0.093812094,0,,,,,,,0.163636364,0.119911627,0.207361101,,,,0.080394626,0.072673433,0.08811582,,,,0.133802817,0.077807345,0.189798289,0.181,,,0.14,0.224,0.363,,,0.286,0.445,8.5,0.032027827,0.094,,,0.273,,,0.222,0.334,0.774480125,50912,65737,,,0.165683336,,,0.131902516,0.203588597,0.066666667,2,30,0.011966345,0.168695224,448,291,64954,,,20.44928726,274,13399,18.02792948,22.87064504,,,,,,,33.94255875,22.17240629,49.7337129,35.1758794,19.23098059,59.01914855,17.87410414,15.43912535,20.30908293,,,,49.36014625,32.52864741,71.81642129,0.058380857,2979,51027,0.050040432,0.066721283,0.001046895,68,64954,,,955.2058824,0.000849749,55,64725,,,1176.818182,0.003105446,201,64725,,,322.0149254,3987,,,,,,,6662,,3932,0.55,,,,,,,0.59,,0.55,0.42,,,,,,0.57,0.34,0.64,0.42,0.933460368,42619,45657,0.9230715,0.943849235,0.665862179,10484,15745,0.615748704,0.715975653,0.033203379,1022,30780,,,0.174,2460,,0.128723404,0.219276596,,,,,,,0.40952381,0.209358168,0.609689452,0.431924883,0.234091892,0.629757874,0.128270991,0.096170575,0.160371407,4.190471026,115921,27663,3.748736658,4.632205395,0.203882177,3004,14734,0.169003652,0.238760703,15.54946578,101,64954,,,74.28988954,243,327097,64.94912022,83.63065887,,,,,,,118.8401204,66.51391327,196.008706,,,,75.62828364,65.76807519,85.48849209,,,,8.3,,,,,1,,,,,0.110294118,3000,27200,0.093953316,0.126634919,0.085470086,0.07200249,0.098937681,0.016727941,0.009554266,0.023901617,0.013970588,0.007280892,0.020660284,0.825944071,27143,32863,0.807780675,0.844107467,,,,,,,0.709624796,0.601611573,0.81763802,0.536821705,0.366029653,0.707613758,0.845843274,0.828603784,0.863082764,0.172,,32863,0.152098204,0.191901796,77.18546835,,,76.5093524,77.8615843,,,,,,,70.58656115,66.97630802,74.19681429,,,,77.28668195,76.59086519,77.98249871,,,,410.6205973,1000,176191,383.6489254,437.5922692,,,,,,,792.1099492,598.351343,1028.620656,,,,404.7212688,377.0066915,432.4358461,,,,54.24758598,35,64519,37.78543127,75.44526011,,,,,,,,,,,,,56.06901915,38.09617823,79.58549712,,,,6.163886875,34,5516,4.268670846,8.613414085,,,,,,,,,,,,,5.893111156,3.94670903,8.46349064,,,,,,,0.111,,,0.094,0.129,0.165,,,0.139,0.191,0.091,,,0.076,0.108,71.5,39,54564,,,0.094,6170,,,,0.032027827,2149.163246,67103,,,15.8834259,31,195172,10.79201729,22.54525521,,,,,,,,,,,,,14.61257018,9.545415989,21.41080098,,,,0.321,,,0.302,0.339,0.071236559,2597,36456,0.059321666,0.083151453,0.027466405,419,15255,0.019125979,0.03580683,0.001544998,100,64725,,,647.25,,,,,,,,,,,2.761914332,,,,,,,2.187500446,,2.800790896,2.73046021,,,,,,,1.957891205,,2.804022242,0.061254085,,,,,1531.7242,,,,,0.791724031,40830,51571,0.740681422,0.84276664,61747,,,55753.80851,67740.19149,,,,179000,39439.65957,318560.3404,30675,25857.80851,35492.19149,60833,7129,114537,64850,62039.2766,67660.7234,,,,,,0.493650099,4509,9134,,,55.73125158,,,,,0.272774386,,61747,,,1.7645576,7,3967,,,3.255999722,15,460688,1.822358328,5.370276385,,,,,,,,,,,,,,,,,,,15.46170866,48,327097,11.23450118,20.75662219,14.67454608,,,,,,,,,,,,,16.42804599,11.88905834,22.12847013,,,,9.477311012,31,327097,6.439373024,13.45228648,,,,,,,,,,,,,8.700599003,5.683520134,12.74839343,,,,10.20213246,47,460688,7.496143196,13.5666734,,,,,,,,,,,,,10.66861389,7.781760176,14.27544476,,,,11.38461539,,6500,,,74,,0.662850929,33527,50580,,,0.727,,,,,95.8889529,,,,,0.721898872,19845,27490,0.698418828,0.745378917,0.089591469,2386,26632,0.075223107,0.103959831,0.836158603,22986,27490,0.819299827,0.853017379,64725,,,,,0.223391271,14459,64725,,,0.211154886,13667,64725,,,0.040571649,2626,64725,,,0.003074546,199,64725,,,0.009177289,594,64725,,,0.000448049,29,64725,,,0.019374276,1254,64725,,,0.907238316,58721,64725,,,0.001086357,67,61674,0,0.003194359,0.503422171,32584,64725,,,0.339382692,22310,65737,, -17,003,17003,IL,Alexander County,2024,1,18082.65426,176,14644,13305.3607,22859.94781,0,,,,2,,,,2,21791.75346,13814.10237,32698.32984,1,,,,2,17559.21057,11325.95868,23792.46246,,,,,2,,0.223,,,0.189,0.259,4.458880749,,,3.555498707,5.473677639,5.42203579,,,4.312597684,6.614985638,0.113801453,47,413,0.083173324,0.144429582,0,,,,,,,0.152317881,0.095004035,0.209631727,,,,0.08713693,0.051528609,0.12274525,,,,,,,0.238,,,0.195,0.284,0.437,,,0.351,0.526,4.8,0.282740722,0.147,,,0.363,,,0.306,0.421,0.536832061,2813,5240,,,0.130340085,,,0.101465113,0.162109311,0.266666667,4,15,0.129817183,0.413965161,775.3,39,5030,,,42.04753199,46,1094,30.78407807,56.08551528,,,,,,,48.84318766,29.40678963,76.27468785,,,,38.96103896,24.96307282,57.97093765,,,,,,,0.074240423,281,3785,0.062325529,0.086155316,0.000198807,1,5030,,,5030,0.000823384,4,4858,,,1214.5,0.005763689,28,4858,,,173.5,3426,,,,,,,5394,,3224,0.38,,,,,,,0.4,,0.37,0.37,,,,,,,0.25,,0.4,0.863793562,3247,3759,0.824045477,0.903541647,0.439753738,500,1137,0.309266888,0.570240588,0.0625,113,1808,,,0.372,383,,0.220680851,0.523319149,,,,,,,0.295302013,0.152286768,0.438317259,,,,0.210443038,0.084827202,0.336058874,5.223013803,82111,15721,3.550928102,6.895099504,0.39100346,452,1156,0.250907023,0.531099897,15.90457257,8,5030,,,111.6421868,32,28663,76.36317312,157.6054568,,,,,,,110.5827712,53.0287371,203.3656535,,,,121.2588877,75.99229936,183.5874133,,,,8.8,,,,,0,,,,,0.148888889,335,2250,0.089507175,0.208270603,0.143112701,0.086361578,0.199863824,0.009777778,0,0.021169439,0.001777778,0,0.014507865,0.856983862,1540,1797,0.796845534,0.91712219,,,,,,,,,,,,,0.824582339,0.72260411,0.926560568,0.472,,1797,0.342697326,0.601302674,68.5903564,,,65.65790655,71.52280625,,,,,,,65.54631519,60.4457969,70.64683347,,,,68.90149738,65.04783681,72.75515795,,,,793.0193284,176,14644,660.4508026,925.5878541,,,,,,,955.0587109,713.2835265,1252.432435,,,,757.2249523,594.5380086,919.9118961,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.144,,,0.124,0.166,0.189,,,0.165,0.218,0.134,,,0.115,0.155,422,18,4265,,,0.147,810,,,,0.282740722,2329.218064,8238,,,,,,,,,,,,,,,,,,,,,,,,,,0.381,,,0.37,0.392,0.092273892,252,2731,0.075593041,0.108954743,0.028906956,32,1107,0.018183552,0.03963036,0.000411692,2,4858,,,2429,,,,,,,,,,,1.98483564,,,,,,,,,2.143966425,2.213442354,,,,,,,,,2.586473432,0.319309295,,,,,-30420.7935,,,,,0.78381637,34455,43958,0.516708438,1.050924302,41378,,,35360.97872,47395.02128,,,,,,,35045,26106.44681,43983.55319,,,,50333,37916.48936,62749.51064,,,,,,1,621,621,,,58.67508137,,,,,0.407052057,,41378,,,8.368200837,2,239,,,23.85439279,10,41921,11.43910855,43.86907765,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,35.78158918,15,41921,20.02668384,59.01628986,,,,,,,,,,,,,41.74731489,20.84010918,74.69747813,,,,0,,500,,,0,,0.563010753,2618,4650,,,0.449,,,,,16.7908944,,,,,0.779386219,1346,1727,0.729313962,0.829458476,0.140276942,233,1661,0.081250935,0.199302948,0.601621309,1039,1727,0.541993357,0.66124926,4858,,,,,0.214903252,1044,4858,,,0.250308769,1216,4858,,,0.302181968,1468,4858,,,0.005969535,29,4858,,,0.002470152,12,4858,,,0.002264306,11,4858,,,0.025936599,126,4858,,,0.634623302,3083,4858,,,0,0,5004,0,0.016191302,0.515644298,2505,4858,,,0.969465649,5080,5240,, -17,005,17005,IL,Bond County,2024,1,7104.387011,264,45188,5754.818952,8453.955071,0,,,,2,,,,2,,,,2,,,,2,7406.44455,5898.232058,8914.657041,,,,,2,,0.164,,,0.136,0.196,3.89878037,,,2.992144721,4.987157366,4.902088391,,,3.790345254,6.228926489,0.06361829,64,1006,0.048535748,0.078700832,0,,,,,,,,,,,,,0.062566278,0.047108728,0.078023828,,,,,,,0.189,,,0.149,0.235,0.385,,,0.301,0.476,7.7,0.090412438,0.107,,,0.292,,,0.236,0.353,0.621584454,10396,16725,,,0.166893605,,,0.131413983,0.209383363,0.380952381,8,21,0.265693072,0.491053906,259.1,43,16596,,,14.83679525,50,3370,11.01215541,19.56046489,,,,,,,,,,,,,16.0603081,11.88150434,21.23257902,,,,,,,0.069252078,825,11913,0.058528673,0.079975482,0.000542299,9,16596,,,1844,0.000181094,3,16566,,,5522,0.001690209,28,16566,,,591.6428571,2949,,,,,,,,,2897,0.46,,,,,,,,,0.46,0.47,,,,,,,0.56,,0.47,0.889207757,10225,11499,0.864801865,0.913613649,0.615439943,2567,4171,0.52945354,0.701426345,0.037881819,284,7497,,,0.16,470,,0.101617021,0.218382979,,,,,,,,,,0.17721519,0,0.614092662,0.189544942,0.120179818,0.258910065,4.329110083,114124,26362,3.58697756,5.071242605,0.239173228,729,3048,0.175079623,0.303266834,11.44854182,19,16596,,,91.71876131,76,82862,72.26395196,114.7997067,,,,,,,,,,,,,98.11915258,76.63187222,123.76396,,,,8.6,,,,,1,,,,,0.123427673,785,6360,0.087070666,0.15978468,0.074180656,0.048999364,0.099361947,0.046383648,0.009669454,0.083097842,0.01572327,0.005270847,0.026175694,0.815275568,5636,6913,0.775222432,0.855328704,,,,,,,,,,,,,0.77582017,0.73142936,0.82021098,0.353,,6913,0.294946217,0.411053783,77.74208273,,,76.50334781,78.98081764,,,,,,,,,,,,,77.45399289,76.13750228,78.7704835,,,,401.3476292,264,45188,350.4200611,452.2751973,,,,,,,,,,,,,410.385751,355.6635722,465.1079297,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.12,,,0.101,0.141,0.167,,,0.142,0.196,0.101,,,0.084,0.119,96.7,14,14478,,,0.107,1800,,,,0.090412438,1606.448203,17768,,,22.31961691,11,49284,11.14187235,39.93595997,,,,,,,,,,,,,25.61296482,12.78589975,45.82866909,,,,0.337,,,0.32,0.354,0.082008178,722,8804,0.067710306,0.09630605,0.034660991,114,3289,0.023937587,0.045384395,0.00078474,13,16566,,,1274.307692,,,,,,,,,,,3.022791249,,,,,,,,,3.099097228,3.098509184,,,,,,,,,3.180168044,0.036449476,,,,,1781.1185,,,,,0.794349579,40797,51359,0.59190761,0.996791547,66071,,,57203.93617,74938.06383,,,,,,,6430,6063.021277,6796.978723,26856,7590.808511,46121.19149,60742,55158.68085,66325.31915,,,,,,0.500748877,1003,2003,,,55.71392533,,,,,0.254922735,,66071,,,1.468428781,1,681,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.57525978,17,116636,8.490625939,23.33640284,,,,,,,,,,,,,16.67925787,9.71628236,26.7051076,,,,5.333333333,,1500,,,8,,0.614949037,8145,13245,,,0.694,,,,,18.46198096,,,,,0.719935691,4478,6220,0.675654978,0.764216404,0.100977199,589,5833,0.069469535,0.132484863,0.825241158,5133,6220,0.783520408,0.866961907,16566,,,,,0.180007244,2982,16566,,,0.190389955,3154,16566,,,0.06519377,1080,16566,,,0.007666305,127,16566,,,0.007424846,123,16566,,,0.000724375,12,16566,,,0.038935168,645,16566,,,0.866352771,14352,16566,,,0.000993419,16,16106,0,0.006696924,0.470542074,7795,16566,,,0.595515695,9960,16725,, -17,007,17007,IL,Boone County,2024,1,6254.625735,604,148499,5478.058146,7031.193325,0,,,,2,,,,2,,,,2,3662.644177,2628.376697,4968.790398,,7309.910523,6236.692822,8383.128223,,,,,2,,0.152,,,0.126,0.18,3.532285263,,,2.71813396,4.464772995,4.747533918,,,3.685033567,5.907956919,0.068599534,265,3863,0.060628356,0.076570712,0,,,,,,,0.146788991,0.080350801,0.213227181,0.062265566,0.049293627,0.075237506,0.068357696,0.058101896,0.078613495,,,,,,,0.158,,,0.125,0.196,0.342,,,0.264,0.423,8.2,0.074435407,0.091,,,0.277,,,0.225,0.332,0.878480018,46953,53448,,,0.172215863,,,0.135046818,0.21156879,0.34375,11,32,0.250875654,0.43568959,325.4,173,53159,,,12.24547914,172,14046,10.41540944,14.07554884,,,,,,,,,,19.03336185,15.28535247,23.42218956,8.226583617,6.413025515,10.39379349,,,,,,,0.081966843,3629,44274,0.070051949,0.093881737,0.000526722,28,53159,,,1898.535714,0.000376265,20,53154,,,2657.7,0.000432705,23,53154,,,2311.043478,2819,,,,,,,7369,1515,2710,0.41,,,,,,,,0.28,0.42,0.45,,,,,,0.6,0.31,0.31,0.46,0.866199977,30563,35284,0.846057771,0.886342183,0.597626841,7303,12220,0.529494074,0.665759608,0.063930765,1603,25074,,,0.122,1488,,0.08387234,0.16012766,,,,,,,,,,0.170158876,0.109441206,0.230876547,0.129672737,0.079027401,0.180318074,4.189799308,148851,35527,3.673899451,4.705699164,0.191461336,2471,12906,0.131717294,0.251205378,4.514757614,24,53159,,,58.14607795,155,266570,48.99208343,67.30007248,,,,,,,,,,29.52562168,17.49875464,46.66321151,68.93490352,57.17487763,80.69492941,,,,9.5,,,,,0,,,,,0.138297872,2600,18800,0.108614521,0.167981223,0.11945117,0.090721065,0.148181275,0.020478723,0.010322257,0.03063519,0.011702128,0.001350919,0.022053336,0.802130535,20180,25158,0.768114976,0.836146094,,,,,,,0.787850467,0.683256941,0.892443994,0.741239049,0.642989705,0.839488392,0.762077587,0.725256639,0.798898535,0.353,,25158,0.309809538,0.396190462,79.22304222,,,78.46491221,79.98117222,,,,,,,,,,84.23702241,80.90241145,87.57163338,78.19304811,77.26888965,79.11720657,,,,317.5719893,604,148499,291.3714878,343.7724907,,,,,,,,,,218.0093439,159.6102398,290.7939137,350.1004396,318.1691464,382.0317329,,,,36.37749446,21,57728,22.51824242,55.60686449,,,,,,,,,,,,,47.16981132,26.9616228,76.60081839,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.108,,,0.091,0.126,0.154,,,0.131,0.18,0.093,,,0.078,0.11,46.9,21,44739,,,0.091,4880,,,,0.074435407,4031.793806,54165,,,12.54075746,20,159480,7.660220457,19.36818278,,,,,,,,,,,,,16.6933174,10.05046756,26.06868296,,,,0.315,,,0.301,0.33,0.099680592,3152,31621,0.08419123,0.115169954,0.038817558,520,13396,0.026902664,0.050732451,0.000225759,12,53154,,,4429.5,,,,,,,,,,,2.719810363,,,,,,,2.289549683,2.440066192,2.905447953,2.584859995,,,,,,,1.816941287,2.266867665,2.823210882,0.038827928,,,,,4796.718,,,,,0.716957782,45767,63835,0.579436889,0.854478675,83695,,,75770.40426,91619.59575,,,,,,,110385,47418.3617,173351.6383,72850,41411.3617,104288.6383,80868,72750.38298,88985.61702,,,,,,0.398099027,3602,9048,,,72.97759857,,,,,0.275787084,,83695,,,1.378359752,4,2902,,,,,,,,,,,,,,,,,,,,,,,,,,8.883482634,24,266570,5.631365956,13.3295857,9.003263683,,,,,,,,,,,,,11.98703494,7.420163558,18.32345624,,,,6.002175789,16,266570,3.430762071,9.747157444,,,,,,,,,,,,,5.744575293,2.867671289,10.27863202,,,,11.50784942,43,373658,8.328287689,15.50099765,,,,,,,,,,,,,12.56230348,8.69976035,17.55455997,,,,14.76923077,,6500,,,96,,0.669050489,24979,37335,,,0.776,,,,,47.62561626,,,,,0.839360807,15968,19024,0.819359336,0.859362279,0.111989741,2096,18716,0.085821379,0.138158104,0.888772077,16908,19024,0.862039087,0.915505068,53154,,,,,0.234036949,12440,53154,,,0.171990819,9142,53154,,,0.024871129,1322,53154,,,0.009256124,492,53154,,,0.015276367,812,53154,,,0.00097829,52,53154,,,0.248560786,13212,53154,,,0.696504496,37022,53154,,,0.036249901,1837,50676,0.026700897,0.045798906,0.495014486,26312,53154,,,0.293967969,15712,53448,, -17,009,17009,IL,Brown County,2024,1,4984.721079,71,18322,3338.345939,7158.890961,0,,,,2,,,,2,,,,2,,,,2,6123.827632,3963.018358,9039.977619,,,,,2,,0.186,,,0.156,0.221,3.94351653,,,3.063468202,4.898180404,4.677694109,,,3.586335027,5.802517164,0.06779661,28,413,0.043550595,0.092042625,0,,,,,,,,,,,,,0.069135803,0.04442862,0.093842985,,,,,,,0.204,,,0.165,0.247,0.397,,,0.308,0.484,8.2,0.103480352,0.075,,,0.312,,,0.257,0.371,0.693786035,4332,6244,,,0.190857292,,,0.150182535,0.234920721,0,0,1,0,0.662081041,77.9,5,6421,,,14.77832512,12,812,7.636176242,25.81475991,,,,,,,,,,,,,13.22751323,6.343106741,24.32586778,,,,,,,0.038306992,143,3733,0.029966566,0.046647417,0.000155739,1,6421,,,6421,,0,6330,,,,0.003475513,22,6330,,,287.7272727,2356,,,,,,,,,2361,0.46,,,,,,,,,0.46,0.29,,,,,,,,,0.29,0.802997394,3697,4604,0.769195976,0.836798811,0.464285714,988,2128,0.361346944,0.567224485,0.022373541,69,3084,,,0.121,127,,0.076914894,0.165085106,,,,,,,,,,,,,0.106122449,0.046311663,0.165933235,4.668552951,115500,24740,3.384635229,5.952470672,0.17876588,197,1102,0.072591851,0.28493991,10.9017287,7,6421,,,54.84962062,18,32817,32.50736137,86.68604768,,,,,,,,,,,,,71.13863665,41.44087739,113.8998486,,,,7.9,,,,,0,,,,,0.050239234,105,2090,0.020189933,0.080288536,0.040826129,0.001734042,0.079918215,0.02631579,0.000596474,0.052035106,0,0,0.013705908,0.828125,1961,2368,0.747349773,0.908900227,,,,,,,,,,,,,0.832969167,0.785341018,0.880597317,0.214,,2368,0.148859194,0.279140806,78.21347536,,,76.34010967,80.08684105,,,,,,,,,,,,,77.25169789,75.16605049,79.33734529,,,,325.5156218,71,18322,253.7553965,411.2694052,,,,,,,,,,,,,358.3065002,275.3325528,458.4296625,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.124,,,0.104,0.144,0.157,,,0.134,0.182,0.11,,,0.093,0.13,105.6,6,5682,,,0.075,470,,,,0.103480352,717.8431982,6937,,,,,,,,,,,,,,,,,,,,,,,,,,0.358,,,0.344,0.372,0.047531319,129,2714,0.036807915,0.058254723,0.014084507,15,1065,0.00812706,0.020041954,0.000789889,5,6330,,,1266,,,,,,,,,,,2.961830805,,,,,,,,,2.906983268,2.860947725,,,,,,,,,2.844053999,,,,,,4761.566,,,,,0.938115245,46220,49269,0.750044585,1.126185905,78081,,,73504.48936,82657.51064,,,,,,,,,,,,,66250,56976.6383,75523.3617,,,,,,0.403433476,282,699,,,,,,,,0.215711889,,78081,,,3.344481605,1,299,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,500,,,-888,,0.469897484,2521,5365,,,0.588,,,,,24.95566222,,,,,0.708131655,1463,2066,0.647331494,0.768931817,0.045994065,93,2022,0.000959608,0.091028523,0.804453049,1662,2066,0.745558938,0.863347161,6330,,,,,0.171090047,1083,6330,,,0.148341232,939,6330,,,0.174091627,1102,6330,,,0.012006319,76,6330,,,0.004107425,26,6330,,,0.000789889,5,6330,,,0.071563981,453,6330,,,0.73807267,4672,6330,,,0.010932582,66,6037,0,0.026641336,0.362559242,2295,6330,,,1,6244,6244,, -17,011,17011,IL,Bureau County,2024,1,8084.758976,527,87765,6947.828423,9221.689529,0,,,,2,,,,2,,,,2,,,,2,8502.017307,7219.41352,9784.621094,,,,,2,,0.157,,,0.129,0.183,3.735182253,,,2.936997739,4.648974634,4.877862786,,,3.831629482,6.05332381,0.073684211,168,2280,0.062960245,0.084408176,0,,,,,,,,,,0.071038251,0.044719785,0.097356718,0.072786529,0.060919431,0.084653628,,,,,,,0.18,,,0.141,0.222,0.377,,,0.296,0.463,7.8,0.097949444,0.097,,,0.287,,,0.232,0.342,0.740434364,24615,33244,,,0.162078306,,,0.128123726,0.201055857,0.3125,15,48,0.237215356,0.388746324,203.8,67,32883,,,15.56420234,108,6939,12.62877684,18.49962783,,,,,,,,,,17.99242424,10.83261474,28.09739922,14.9280903,11.87275323,18.52969618,,,,,,,0.07751877,1972,25439,0.066795366,0.088242175,0.000456163,15,32883,,,2192.2,0.000365542,12,32828,,,2735.666667,0.00085293,28,32828,,,1172.428571,2058,,,,,,,,,2047,0.44,,,,,,,,0.31,0.44,0.42,,,,,,0.42,,0.34,0.42,0.903029535,21372,23667,0.889774878,0.916284191,0.601087695,4421,7355,0.556646021,0.64552937,0.044492709,717,16115,,,0.174,1154,,0.127531915,0.220468085,,,,,,,,,,0.208411215,0.120983505,0.295838925,0.163796331,0.127651413,0.199941249,4.331241258,120768,27883,3.938189532,4.724292984,0.181713794,1266,6967,0.145605479,0.217822109,13.98899127,46,32883,,,108.503505,178,164050,92.56344921,124.4435608,,,,,,,,,,,,,114.63401,97.08924187,132.178778,,,,9.3,,,,,0,,,,,0.096376812,1330,13800,0.080037418,0.112716206,0.083576642,0.067468317,0.099684968,0.011231884,0.005655201,0.016808568,0.004347826,0.001530474,0.007165178,0.825956057,12894,15611,0.80205012,0.849861993,,,,,,,,,,0.870927318,0.796553499,0.945301138,0.807519742,0.798127796,0.816911687,0.226,,15611,0.203299079,0.248700921,77.19245393,,,76.24079996,78.1441079,,,,,,,,,,82.54188073,77.98897986,87.09478161,76.76461095,75.73531531,77.7939066,,,,403.4153169,527,87765,366.2043757,440.6262582,,,,,,,,,,,,,417.5869566,377.0744157,458.0994975,,,,36.14972559,11,30429,18.04581277,64.68184467,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.115,,,0.097,0.133,0.166,,,0.14,0.191,0.097,,,0.082,0.113,74.6,21,28168,,,0.097,3220,,,,0.097949444,3426.075663,34978,,,16.35757663,16,97814,9.349768391,26.56367963,,,,,,,,,,,,,18.80892484,10.7509257,30.54451555,,,,0.318,,,0.301,0.336,0.092562782,1725,18636,0.078264909,0.106860654,0.038120322,275,7214,0.026205428,0.050035215,0.001035701,34,32828,,,965.5294118,,,,,,,,,,,3.093554917,,,,,,,,2.943250432,3.126025315,3.012772882,,,,,,,,3.042030332,3.023837613,0.20919033,,,,,-248.42825,,,,,0.649450657,39723,61164,0.601553935,0.69734738,63042,,,56119.44681,69964.55319,,,,81033,66257.34043,95808.65957,121250,19988.89362,222511.1064,65365,54255.55319,76474.44681,64220,60360.76596,68079.23404,,,,,,0.498710786,2321,4654,,,,,,,,0.267171092,,63042,,,1.772002363,3,1693,,,,,,,,,,,,,,,,,,,,,,,,,,13.35923941,25,164050,8.372164215,20.22604902,15.23925632,,,,,,,,,,,,,11.33318307,6.716762546,17.91131528,,,,7.314843036,12,164050,3.779686138,12.7775587,,,,,,,,,,,,,6.989878656,3.351918509,12.85463572,,,,26.84029161,62,230996,20.57829767,34.40804251,,,,,,,,,,,,,28.20958235,21.36566219,36.54878595,,,,0,,3300,,,0,,0.690592197,17434,25245,,,0.707,,,,,27.51697159,,,,,0.759441767,10557,13901,0.737548475,0.781335059,0.092014925,1233,13400,0.075439593,0.108590258,0.841738005,11701,13901,0.823236958,0.860239051,32828,,,,,0.206165469,6768,32828,,,0.230961374,7582,32828,,,0.009869624,324,32828,,,0.005422201,178,32828,,,0.011118557,365,32828,,,0.000578774,19,32828,,,0.105458755,3462,32828,,,0.858779091,28192,32828,,,0.010109653,319,31554,0.00571143,0.014507876,0.502010479,16480,32828,,,0.549843581,18279,33244,, -17,013,17013,IL,Calhoun County,2024,1,7556.731753,67,12182,4677.736058,11551.2672,1,,,,2,,,,2,,,,2,,,,2,7819.94618,4840.669937,11953.61841,1,,,,2,,0.134,,,0.109,0.161,3.439590431,,,2.71827085,4.255379582,4.75932269,,,3.705071754,5.86874198,0.06440678,19,295,0.036394117,0.092419442,1,,,,,,,,,,,,,0.062283737,0.034420588,0.090146887,,,,,,,0.168,,,0.129,0.209,0.346,,,0.263,0.438,8.5,0.052582063,0.084,,,0.254,,,0.202,0.31,0.020283976,90,4437,,,0.168976466,,,0.131604189,0.212121157,0.5,2,4,0.222237796,0.705426462,114.4,5,4369,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.061594203,204,3312,0.052062288,0.071126118,0.000228885,1,4369,,,4369,0.000229358,1,4360,,,4360,,0,4360,,,,4085,,,,,,,,,4097,0.46,,,,,,,,,0.46,0.44,,,,,,,,,0.44,0.920232274,3011,3272,0.889342919,0.951121629,0.634529148,566,892,0.504577198,0.764481098,0.039871677,87,2182,,,0.128,110,,0.085106383,0.170893617,,,,,,,,,,,,,0.129396985,0.067662849,0.191131121,3.940229763,148854,37778,2.831240535,5.049218991,0.089700997,81,903,0.028651601,0.150750393,0,0,4369,,,77.05809324,18,23359,45.66950974,121.7850091,,,,,,,,,,,,,79.40359081,47.05960025,125.4919064,,,,8.5,,,,,0,,,,,0.090361446,150,1660,0.05551189,0.125211002,0.06969697,0.031394067,0.107999873,0.008433735,0,0.024823479,0.009036145,0,0.029581321,0.754295533,1317,1746,0.682472191,0.826118875,,,,,,,,,,,,,0.648960739,0.598594354,0.699327124,0.628,,1746,0.519882598,0.736117402,77.31917985,,,74.63554129,80.00281841,,,,,,,,,,,,,77.14419614,74.35457516,79.93381713,,,,354.8450411,67,12182,266.570516,462.9958061,,,,,,,,,,,,,359.4827875,268.4789401,471.413849,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.104,,,0.087,0.122,0.159,,,0.134,0.186,0.083,,,0.068,0.099,132.8,5,3765,,,0.084,380,,,,0.052582063,267.5901173,5089,,,,,,,,,,,,,,,,,,,,,,,,,,0.328,,,0.31,0.346,0.072101598,176,2441,0.058995215,0.085207981,0.035869565,33,920,0.023954672,0.047784459,0.000458716,2,4360,,,2180,,,,,,,,,,,3.472571815,,,,,,,,,3.463151822,3.269453784,,,,,,,,,3.292425778,,,,,,2207.94815,,,,,0.873737045,53616,61364,0.429606949,1.317867141,68525,,,58926.3617,78123.6383,,,,,,,,,,,,,87533,77966.53192,97099.46809,,,,,,0.349753695,213,609,,,,,,,,0.245793506,,68525,,,9.389671362,2,213,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,400,,,-888,,0.731398417,2772,3790,,,0.46,,,,,0.704959791,,,,,0.890456432,1073,1205,0.850299482,0.930613382,0.06440678,76,1180,0.017923336,0.110890223,0.839834025,1012,1205,0.81160687,0.86806118,4360,,,,,0.200688073,875,4360,,,0.247706422,1080,4360,,,0.006192661,27,4360,,,0.003440367,15,4360,,,0.00412844,18,4360,,,0,0,4360,,,0.018119266,79,4360,,,0.96146789,4192,4360,,,0.000234357,1,4267,0,0.013223968,0.49587156,2162,4360,,,1,4437,4437,, -17,015,17015,IL,Carroll County,2024,1,7547.174954,261,39194,5813.410693,9280.939215,0,,,,2,,,,2,,,,2,,,,2,7764.597299,5888.492208,9640.702391,,,,,2,,0.155,,,0.126,0.187,3.701552633,,,2.819765435,4.665730075,4.950204729,,,3.810577029,6.138970296,0.051668461,48,929,0.037433998,0.065902923,0,,,,,,,,,,,,,0.049008168,0.03455416,0.063462176,,,,,,,0.185,,,0.142,0.232,0.38,,,0.297,0.468,8.5,0.04482814,0.09,,,0.281,,,0.225,0.339,0.569800026,8947,15702,,,0.162318533,,,0.127564586,0.201728394,0.375,6,16,0.240765683,0.502616143,235.7,37,15698,,,15.34919417,40,2606,10.96568935,20.90124596,,,,,,,,,,,,,16.82160248,11.90396709,23.08896367,,,,,,,0.073236031,848,11579,0.062512627,0.083959435,0.000191107,3,15698,,,5232.666667,0.000257583,4,15529,,,3882.25,0.001352309,21,15529,,,739.4761905,2676,,,,,,,,,2681,0.37,,,,,,,,,0.37,0.47,,,,,,,,,0.47,0.883788038,10107,11436,0.862823722,0.904752353,0.551714678,2011,3645,0.482279531,0.621149824,0.038482459,283,7354,,,0.18,494,,0.120425532,0.239574468,,,,,,,,,,0.191860465,0.08504032,0.29868061,0.169879518,0.110813798,0.228945238,3.874892148,116766,30134,3.416658861,4.333125436,0.149857955,422,2816,0.107983071,0.191732838,14.65154797,23,15698,,,88.95092646,65,73074,68.65044712,113.3752577,,,,,,,,,,,,,91.51156441,70.16139169,117.3136956,,,,9.2,,,,,0,,,,,0.071428571,465,6510,0.051506186,0.091350957,0.06692607,0.045621164,0.088230976,0.001843318,0,0.00589366,0.003840246,0,0.008964501,0.822076763,5526,6722,0.785026273,0.859127253,,,,,,,,,,,,,0.799773328,0.752411986,0.847134671,0.318,,6722,0.276760008,0.359239993,77.74281211,,,76.33170292,79.1539213,,,,,,,,,,,,,77.47201215,75.98396643,78.96005787,,,,391.5734874,261,39194,338.1645044,444.9824703,,,,,,,,,,,,,397.5134449,341.7549932,453.2718966,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.115,,,0.097,0.136,0.166,,,0.14,0.192,0.093,,,0.078,0.11,51.4,7,13608,,,0.09,1410,,,,0.04482814,689.7705838,15387,,,,,,,,,,,,,,,,,,,,,,,,,,0.325,,,0.307,0.342,0.085193409,729,8557,0.070895537,0.099491281,0.03996224,127,3178,0.026855857,0.053068623,0.000321978,5,15529,,,3105.8,,,,,,0.131543624,98,745,0.045958526,0.217128723,3.272300819,,,,,,,,,3.228553525,3.384736301,,,,,,,,,3.392501317,0.020749971,,,,,6551.939,,,,,0.746308878,39326,52694,0.6412771,0.851340656,64157,,,57031.89362,71282.10638,,,,,,,94464,36395.57447,152532.4255,,,,61613,57330.78723,65895.21277,,,,,,0.454634625,927,2039,,,,,,,,0.262527861,,64157,,,2.635046113,2,759,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,19.56392022,20,102229,11.95015073,30.21488805,,,,,,,,,,,,,20.00568583,12.04472973,31.24135657,,,,,,1300,,,-888,,0.691426109,8024,11605,,,0.662,,,,,12.52731526,,,,,0.771885389,4876,6317,0.751083815,0.792686963,0.077737347,470,6046,0.054649178,0.100825516,0.846129492,5345,6317,0.821621681,0.870637303,15529,,,,,0.180758581,2807,15529,,,0.248502801,3859,15529,,,0.037156288,577,15529,,,0.005344839,83,15529,,,0.007212312,112,15529,,,0.000386374,6,15529,,,0.050550583,785,15529,,,0.889175092,13808,15529,,,0.001075197,16,14881,0,0.006754371,0.46139481,7165,15529,,,1,15702,15702,, -17,017,17017,IL,Cass County,2024,1,8969.812738,190,33926,7008.390695,10931.23478,0,,,,2,,,,2,,,,2,,,,2,10899.48102,8172.75718,13626.20485,,,,,2,,0.181,,,0.152,0.212,3.909036941,,,3.2000549,4.728440768,4.876480953,,,3.81914307,6.048540092,0.090760425,111,1223,0.074660262,0.106860588,0,,,,,,,0.155555556,0.094416674,0.216694437,0.072727273,0.046786787,0.098667758,0.085074627,0.063948906,0.106200348,,,,,,,0.191,,,0.154,0.231,0.376,,,0.297,0.463,8.5,0.034067972,0.093,,,0.315,,,0.261,0.373,0.169605889,2212,13042,,,0.162311092,,,0.128818483,0.201526654,0.272727273,3,11,0.11266692,0.445445377,563.7,72,12773,,,32.50773994,84,2584,25.92944649,40.24679403,,,,,,,,,,43.62801378,30.87377916,59.88285754,27.901078,20.27296599,37.45589492,,,,,,,0.102754237,1067,10384,0.087264876,0.118243599,7.82901E-05,1,12773,,,12773,0.000711069,9,12657,,,1406.333333,0.00711069,90,12657,,,140.6333333,3974,,,,,,,,,4110,0.39,,,,,,,,,0.39,0.41,,,,,,,,0.14,0.42,0.86167411,7525,8733,0.831372486,0.891975734,0.460176991,1508,3277,0.384099549,0.536254433,0.04195927,239,5696,,,0.157,470,,0.097425532,0.216574468,,,,,,,0.205128205,0,0.519185709,0.036893204,0,0.086677325,0.170154185,0.102344611,0.237963759,4.2836727,113603,26520,3.496821798,5.070523602,0.168839428,531,3145,0.097516887,0.240161968,14.09222579,18,12773,,,87.64810907,54,61610,65.84395711,114.3617698,,,,,,,,,,,,,104.6640937,77.17104037,138.7694036,,,,8.3,,,,,0,,,,,0.08678501,440,5070,0.061567513,0.112002507,0.065398335,0.039009667,0.091787004,0.015779093,0.005266959,0.026291226,0.00591716,0.000767663,0.011066657,0.795138889,4580,5760,0.755241027,0.835036751,,,,,,,,,,0.775482094,0.61936722,0.931596968,0.786339329,0.764900476,0.807778182,0.284,,5760,0.237212229,0.330787771,75.84462185,,,74.27309188,77.41615182,,,,,,,,,,100.8894411,59.17137011,142.6075121,74.24298356,72.26981677,76.21615035,,,,427.0795499,190,33926,363.7151732,490.4439266,,,,,,,,,,,,,487.5579389,409.3299013,565.7859764,,,,76.66360012,10,13044,36.76317614,140.9870902,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.124,,,0.105,0.143,0.167,,,0.143,0.193,0.105,,,0.089,0.124,,,,,,0.093,1220,,,,0.034067972,464.7552696,13642,,,,,,,,,,,,,,,,,,,,,,,,,,0.332,,,0.318,0.346,0.126634549,920,7265,0.10637923,0.146889868,0.048623853,159,3270,0.031943002,0.065304704,0.000711069,9,12657,,,1406.333333,,,,,,,,,,,2.595205807,,,,,,,,2.29872877,2.945166996,2.597044297,,,,,,,,2.329261492,2.974529672,0.223357302,,,,,-4098.206333,,,,,0.806678214,41915,51960,0.731204231,0.882152197,62129,,,54566.61702,69691.38298,,,,68750,42570.59575,94929.40426,75804,56270.7234,95337.2766,76215,61329.7234,91100.2766,61447,56066.23404,66827.76596,,,,,,0.842823529,1791,2125,,,54.1737049,,,,,0.271097233,,62129,,,2.551020408,2,784,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,25.24875765,22,87133,15.82326199,38.22692251,,,,,,,,,,,,,29.04843444,17.48905511,45.36272868,,,,10.76923077,,1300,,,14,,0.636766467,5317,8350,,,0.68,,,,,47.59743854,,,,,0.771582734,3861,5004,0.735398685,0.807766783,0.070460148,343,4868,0.043543713,0.097376583,0.838529177,4196,5004,0.805556846,0.871501507,12657,,,,,0.242948566,3075,12657,,,0.184166864,2331,12657,,,0.041795054,529,12657,,,0.009401912,119,12657,,,0.00948092,120,12657,,,0.003634353,46,12657,,,0.215453899,2727,12657,,,0.718811725,9098,12657,,,0.057736156,709,12280,0.035417027,0.080055286,0.489452477,6195,12657,,,0.519858917,6780,13042,, -17,019,17019,IL,Champaign County,2024,1,6965.783435,2058,590855,6530.328843,7401.238027,0,,,,2,2115.116882,1355.195296,3147.126262,1,15485.55768,13823.13191,17147.98345,,4744.474006,3460.651896,6348.479504,,6043.855631,5549.077994,6538.633267,,,,,2,,0.144,,,0.122,0.169,3.344110182,,,2.573630938,4.194793481,5.013789742,,,4.030150291,6.123057911,0.086112559,1322,15352,0.081674907,0.09055021,0,,,,0.06961507,0.055339902,0.083890237,0.154304439,0.142084286,0.166524591,0.056682578,0.045611936,0.067753219,0.065940788,0.060560531,0.071321045,,,,0.080769231,0.057349082,0.10418938,0.151,,,0.118,0.188,0.323,,,0.257,0.396,8.4,0.048140594,0.095,,,0.283,,,0.234,0.337,0.878536905,180860,205865,,,0.177376966,,,0.141442448,0.217677665,0.25974026,20,77,0.201038067,0.320962268,784.7,1616,205943,,,10.74766355,759,70620,9.983037226,11.51228988,,,,,,,31.21050073,27.79618018,34.62482128,30.74820636,26.25620782,35.24020489,4.160461433,3.545792536,4.77513033,,,,22.83105023,17.62052256,29.10004771,0.064724484,10582,163493,0.056384058,0.073064909,0.001043978,215,205943,,,957.8744186,0.000668145,138,206542,,,1496.681159,0.003461766,715,206542,,,288.8699301,3555,,,,,,2209,6106,811,3277,0.47,,,,,,0.33,0.46,0.15,0.48,0.49,,,,,,0.5,0.35,0.37,0.51,0.946712527,113952,120366,0.939126424,0.954298629,0.78417391,40690,51889,0.750069222,0.818278597,0.037579809,4126,109793,,,0.166,6286,,0.118340426,0.213659575,,,,0.05408,0.009305339,0.098854661,0.282328767,0.21037156,0.354285974,0.255942377,0.165460125,0.346424629,0.080748152,0.061451171,0.100045133,5.77028747,131476,22785,5.369771931,6.170803009,0.26545511,10254,38628,0.232797013,0.298113208,12.23639551,252,205943,,,69.52651105,726,1044206,64.4689842,74.58403791,,,,12.47493874,6.820165094,20.93082746,124.9000799,106.3946251,143.4055348,29.02713273,17.47623009,45.32946341,73.68645263,67.30368931,80.06921595,,,,8.1,,,,,0,,,,,0.182578859,15165,83060,0.169228396,0.195929322,0.15815873,0.144101348,0.172216112,0.035155309,0.027209413,0.043101206,0.008307248,0.005501337,0.011113158,0.66139362,65474,98994,0.646690406,0.676096834,,,,0.423922603,0.362342142,0.485503065,0.66896728,0.608504675,0.729429885,0.620429763,0.565032416,0.675827109,0.722699259,0.708284454,0.737114063,0.139,,98994,0.125414931,0.152585069,79.14599798,,,78.70847321,79.58352274,,,,88.45768245,85.08211739,91.83324751,70.97244637,69.68880755,72.25608519,87.61250526,80.10239489,95.12261564,79.89628811,79.40623592,80.3863403,,,,334.9567243,2058,590855,320.0064206,349.9070281,,,,113.7600986,82.32874739,153.2341062,687.3971536,624.786289,750.0080182,229.2218171,165.8889656,308.7602834,306.4483787,289.8438253,323.052932,,,,62.62121177,134,213985,52.01830019,73.22412334,,,,,,,149.1464032,112.6635901,193.6790103,47.43607988,22.74744413,87.23663983,47.8852076,36.36124574,61.90273503,,,,7.543581617,119,15775,6.18820439,8.898958843,,,,,,,15.25119617,11.3555173,20.05250639,,,,5.676442763,4.185360788,7.526139567,,,,,,,0.104,,,0.089,0.122,0.154,,,0.131,0.178,0.1,,,0.085,0.117,228.3,406,177814,,,0.095,19620,,,,0.048140594,9680.158796,201081,,,24.80698565,155,624824,20.90159738,28.71237392,,,,,,,58.62764411,43.51456749,77.29323984,,,,23.46895324,19.03174008,28.63013267,,,,0.328,,,0.313,0.342,0.076178029,9501,124721,0.065454625,0.086901434,0.030653402,1254,40909,0.021121487,0.040185316,0.001825295,377,206542,,,547.8567639,,,,,,0.052345014,971,18550,0.031624267,0.07306576,2.802253619,,,,,,3.629754642,2.11222178,2.27726712,3.193997004,2.812365908,,,,,,4.220638515,1.919746351,2.230251325,3.270041183,0.192214674,,,,,1165.675025,,,,,0.833923752,49435,59280,0.78488023,0.882967274,61205,,,57249.25532,65160.74468,,,,31983,25370.23404,38595.76596,37362,31646.42553,43077.57447,42054,34329.57447,49778.42553,73435,70061.89362,76808.10638,,,,,,0.456163107,11254,24671,,,52.15995082,,,,,0.377126052,,61205,,,4.142278253,46,11105,,,5.542304203,81,1461486,4.401389544,6.888578076,,,,,,,33.16766774,25.54314572,42.35437124,,,,1.429147463,0.781328217,2.397866602,,,,12.48756263,127,1044206,10.22056868,14.75455657,12.16235111,,,,,,,7.001419724,3.3574529,12.87586015,,,,15.49261426,12.43916521,18.54606332,,,,9.097821694,95,1044206,7.36068104,11.12161524,,,,,,,39.25431084,29.57171903,51.09488122,,,,5.612835259,3.991274558,7.672930572,,,,8.552938584,125,1461486,7.053542341,10.05233483,,,,,,,12.4378754,7.969181461,18.50657269,,,,9.289458506,7.479292521,11.40539655,,,,3.815028902,,17300,,,66,,0.617184003,95142,154155,,,0.668,,,,,144.1589111,,,,,0.535414166,44154,82467,0.523984407,0.546843924,0.172586823,13517,78320,0.158137397,0.187036249,0.866043387,71420,82467,0.853212374,0.8788744,206542,,,,,0.187153218,38655,206542,,,0.143457505,29630,206542,,,0.141056056,29134,206542,,,0.003916879,809,206542,,,0.109909849,22701,206542,,,0.001045792,216,206542,,,0.068160471,14078,206542,,,0.649587009,134167,206542,,,0.015982342,3128,195716,0.012438949,0.019525734,0.501738145,103630,206542,,,0.159507444,32837,205865,, -17,021,17021,IL,Christian County,2024,1,8664.183462,593,88944,7483.285085,9845.081838,0,,,,2,,,,2,,,,2,,,,2,8978.126125,7734.438378,10221.81387,,,,,2,,0.158,,,0.132,0.187,3.772960565,,,2.871769893,4.749141908,4.977832642,,,3.824885698,6.17137071,0.099001303,228,2303,0.086803218,0.111199387,0,,,,,,,,,,,,,0.097472924,0.085123597,0.109822252,,,,,,,0.192,,,0.152,0.235,0.385,,,0.3,0.475,8.7,0.019461783,0.095,,,0.287,,,0.235,0.347,0.659585096,22447,34032,,,0.17003712,,,0.1334841,0.210120046,0.323529412,11,34,0.233210018,0.414257608,264.4,89,33662,,,21.3737967,131,6129,17.71361962,25.03397379,,,,,,,,,,,,,21.56896852,17.77254543,25.3653916,,,,,,,0.068197852,1740,25514,0.058665937,0.077729767,0.000386192,13,33662,,,2589.384615,0.000239263,8,33436,,,4179.5,0.000687881,23,33436,,,1453.73913,4257,,,,,,,,,4261,0.38,,,,,,,,,0.38,0.41,,,,,,,,,0.41,0.904360815,21796,24101,0.89015536,0.91856627,0.52061918,4305,8269,0.464253872,0.576984488,0.046064971,614,13329,,,0.212,1307,,0.159574468,0.264425532,,,,,,,0.431558935,0.165489357,0.697628514,0.257425743,0,0.716249094,0.100320892,0.060719793,0.139921991,4.573062151,104778,22912,3.714764537,5.431359765,0.210600508,1494,7094,0.150854926,0.270346089,13.66526053,46,33662,,,90.96236966,149,163804,76.35659141,105.5681479,,,,,,,,,,,,,94.64636384,79.34601482,109.9467129,,,,9.1,,,,,1,,,,,0.08157424,1140,13975,0.06124602,0.101902459,0.070185657,0.050011562,0.090359752,0.008872988,0.004327403,0.013418572,0.005366726,0.001023866,0.009709587,0.841450848,12249,14557,0.810733608,0.872168088,,,,,,,,,,,,,0.823234544,0.787480994,0.858988094,0.343,,14557,0.304853728,0.381146272,75.62833526,,,74.68978743,76.56688309,,,,,,,,,,,,,75.31632292,74.3473301,76.28531573,,,,456.0315346,593,88944,417.2384623,494.8246069,,,,,,,,,,,,,467.2526677,426.9675783,507.537757,,,,65.88300565,19,28839,39.66587317,102.8844744,,,,,,,,,,,,,63.44467251,36.95885975,101.5810667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.117,,,0.1,0.136,0.168,,,0.143,0.193,0.095,,,0.079,0.112,89.6,26,29020,,,0.095,3240,,,,0.019461783,677.2700525,34800,,,14.27974011,14,98041,7.806866797,23.95897749,,,,,,,,,,,,,15.0808441,8.244837802,25.30309386,,,,0.329,,,0.311,0.347,0.081494058,1536,18848,0.068387675,0.094600441,0.032064985,225,7017,0.021341581,0.042788389,0.000687881,23,33436,,,1453.73913,,,,,,,,,,,3.019649778,,,,,,,,,3.037717007,2.949334956,,,,,,,,,2.963976935,0.050075041,,,,,254.0043833,,,,,0.751125251,41553,55321,0.679279066,0.822971436,56888,,,50222.80851,63553.19149,,,,60288,11684.76596,108891.234,,,,,,,57357,53831.38298,60882.61702,,,,,,0.509442153,2347,4607,,,69.49505721,,,,,0.296072986,,56888,,,2.619172342,5,1909,,,,,,,,,,,,,,,,,,,,,,,,,,20.34535884,35,163804,13.82368424,28.87861286,21.36699959,,,,,,,,,,,,,21.53514045,14.63208312,30.56741288,,,,10.98874264,18,163804,6.512625321,17.36695091,,,,,,,,,,,,,10.94549786,6.376155857,17.52480238,,,,18.2011224,42,230755,13.11776808,24.60262997,,,,,,,,,,,,,18.27059667,13.05278213,24.879367,,,,10.64516129,,3100,,,33,,0.624551937,16204,25945,,,0.703,,,,,44.43909634,,,,,0.768277295,10351,13473,0.741515891,0.795038699,0.093530295,1184,12659,0.070270525,0.116790065,0.828026423,11156,13473,0.797960508,0.858092339,33436,,,,,0.188718746,6310,33436,,,0.206244766,6896,33436,,,0.027575069,922,33436,,,0.003080512,103,33436,,,0.006938629,232,33436,,,0.000478526,16,33436,,,0.020666348,691,33436,,,0.932348367,31174,33436,,,0.003221871,103,31969,0,0.00693782,0.465306855,15558,33436,,,0.506875882,17250,34032,, -17,023,17023,IL,Clark County,2024,1,8796.687897,275,41864,7116.262978,10477.11282,0,,,,2,,,,2,,,,2,,,,2,8917.100623,7188.736321,10645.46493,,,,,2,,0.138,,,0.116,0.167,3.513167003,,,2.702575998,4.425792734,4.751803904,,,3.712041616,5.912935296,0.076470588,91,1190,0.061371345,0.091569831,0,,,,,,,,,,,,,0.077391304,0.061947226,0.092835383,,,,,,,0.168,,,0.133,0.211,0.348,,,0.269,0.43,8.1,0.09773276,0.084,,,0.259,,,0.207,0.314,0.609899709,9426,15455,,,0.174181085,,,0.137690863,0.213459577,0.176470588,3,17,0.062472405,0.322105398,281,43,15300,,,21.73228347,69,3175,16.90901372,27.50359562,,,,,,,,,,,,,22.21485411,17.21620681,28.21207945,,,,,,,0.059472265,728,12241,0.04994035,0.06900418,0.000326797,5,15300,,,3060,0.000196993,3,15229,,,5076.333333,0.000262657,4,15229,,,3807.25,4469,,,,,,,,,4485,0.38,,,,,,,,,0.39,0.37,,,,,,,,,0.37,0.922225323,9913,10749,0.901191441,0.943259205,0.704564786,2485,3527,0.614929697,0.794199875,0.041530501,305,7344,,,0.149,498,,0.096574468,0.201425532,,,,,,,0.205882353,0,0.761655805,,,,0.087708462,0.049214076,0.126202848,4.185686195,123461,29496,3.512357496,4.859014894,0.176752041,628,3553,0.1156258,0.237878282,16.99346405,26,15300,,,84.00971928,65,77372,64.83692774,107.0772835,,,,,,,,,,,,,87.13370332,67.24795267,111.0590576,,,,9,,,,,1,,,,,0.075092937,505,6725,0.048547774,0.1016381,0.061940299,0.036999033,0.086881564,0.012639405,0.002811971,0.022466839,0.000594796,0,0.004124864,0.836584676,5918,7074,0.803398178,0.869771174,,,,,,,,,,,,,0.810945274,0.778503768,0.843386779,0.382,,7074,0.319745394,0.444254607,75.5736117,,,74.25335149,76.89387191,,,,,,,,,,,,,75.37595473,74.03049156,76.7214179,,,,461.0536861,275,41864,403.0306396,519.0767326,,,,,,,,,,,,,466.9602792,407.7154638,526.2050946,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.106,,,0.09,0.125,0.16,,,0.136,0.185,0.085,,,0.072,0.099,70,9,12859,,,0.084,1310,,,,0.09773276,1596.464636,16335,,,,,,,,,,,,,,,,,,,,,,,,,,0.327,,,0.309,0.347,0.071777399,632,8805,0.059862506,0.083692293,0.029460812,106,3598,0.019928897,0.038992727,0.000328321,5,15229,,,3045.8,,,,,,,,,,,2.970788697,,,,,,,,,2.962890375,3.003351424,,,,,,,,,3.003629998,0.035462757,,,,,1544.777167,,,,,0.698466091,44852,64215,0.623094545,0.773837636,63655,,,54625.89362,72684.10638,,,,,,,,,,135350,42161.23404,228538.766,65978,61188.21277,70767.78723,,,,,,0.386044591,935,2422,,,,,,,,0.264598225,,63655,,,3.359462486,3,893,,,,,,,,,,,,,,,,,,,,,,,,,,18.59425679,16,77372,10.16565322,31.19800336,20.67931552,,,,,,,,,,,,,19.24633464,10.52215025,32.2920792,,,,,,,,,,,,,,,,,,,,,,,,,,,22.87512924,25,109289,14.80357753,33.76820329,,,,,,,,,,,,,23.71826496,15.34921051,35.01283794,,,,0,,1600,,,0,,0.694885655,8356,12025,,,0.657,,,,,17.7301271,,,,,0.807197146,5204,6447,0.772507416,0.841886876,0.102150538,646,6324,0.071661915,0.13263916,0.845509539,5451,6447,0.81573735,0.875281729,15229,,,,,0.224505877,3419,15229,,,0.201260753,3065,15229,,,0.006041106,92,15229,,,0.003020553,46,15229,,,0.004136844,63,15229,,,0.000393985,6,15229,,,0.017663668,269,15229,,,0.958368901,14595,15229,,,0.001303423,19,14577,0,0.007140084,0.496486966,7561,15229,,,1,15455,15455,, -17,025,17025,IL,Clay County,2024,1,7552.192985,219,35902,5927.070512,9177.315457,0,,,,2,,,,2,,,,2,,,,2,7267.273362,5665.826878,8868.719846,,,,,2,,0.167,,,0.139,0.199,3.97058679,,,3.068562774,5.018233274,5.165326407,,,3.995978695,6.468187854,0.081481482,88,1080,0.065165334,0.097797629,0,,,,,,,,,,,,,0.082217973,0.065570689,0.098865257,,,,,,,0.204,,,0.162,0.248,0.366,,,0.282,0.456,7.7,0.056117842,0.122,,,0.295,,,0.239,0.354,0.45281457,6017,13288,,,0.1686589,,,0.130818606,0.212397361,0.307692308,4,13,0.157450571,0.460702037,266.3,35,13143,,,27.52976191,74,2688,21.61678432,34.56109505,,,,,,,,,,,,,28.80820837,22.58103667,36.22199692,,,,,,,0.066357578,687,10353,0.055634173,0.077080982,0.000228258,3,13143,,,4381,0.000459876,6,13047,,,2174.5,0.001609565,21,13047,,,621.2857143,3520,,,,,,,,,3538,0.41,,,,,,,,,0.41,0.35,,,,,,,,,0.35,0.881240545,8155,9254,0.854382283,0.908098806,0.598895745,1844,3079,0.498131678,0.699659813,0.046850325,267,5699,,,0.179,518,,0.117042553,0.240957447,,,,,,,,,,,,,0.217313218,0.155460051,0.279166386,4.406084017,109500,24852,3.389837243,5.422330792,0.219391132,663,3022,0.127920248,0.310862015,22.06497756,29,13143,,,68.25627958,45,65928,49.7865987,91.33227232,,,,,,,,,,,,,71.27696645,51.98990843,95.37418902,,,,8.8,,,,,0,,,,,0.09455843,530,5605,0.060904943,0.128211917,0.066247756,0.035739377,0.096756135,0.020517395,0.005838035,0.035196755,0.017841213,0.005001869,0.030680557,0.83593066,4774,5711,0.806452635,0.865408686,,,,,,,,,,,,,0.80373148,0.78966771,0.81779525,0.28,,5711,0.22623755,0.333762451,76.68236674,,,75.29144579,78.0732877,,,,,,,,,,,,,76.82084633,75.44585066,78.19584199,,,,413.2205751,219,35902,355.1093976,471.3317526,,,,,,,,,,,,,410.1643778,351.3059023,469.0228533,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.124,,,0.105,0.144,0.177,,,0.152,0.202,0.099,,,0.083,0.116,,,,,,0.122,1620,,,,0.056117842,775.2679843,13815,,,,,,,,,,,,,,,,,,,,,,,,,,0.33,,,0.311,0.349,0.081220339,599,7375,0.066922467,0.095518211,0.031400192,98,3121,0.020676788,0.042123597,0.00114969,15,13047,,,869.8,,,,,,,,,,,3.023684068,,,,,,,,,2.996540715,3.115617062,,,,,,,,,3.101565772,0.041199367,,,,,-1919.110333,,,,,0.6606,36333,55000,0.518143784,0.803056216,55282,,,47181.06383,63382.93617,66406,65480.21277,67331.78723,,,,,,,,,,57589,49980.14894,65197.85106,,,,,,0.460538533,992,2154,,,,,,,,0.304674216,,55282,,,2.69179004,2,743,,,,,,,,,,,,,,,,,,,,,,,,,,16.81108185,10,65928,7.68709711,31.91266992,15.16806213,,,,,,,,,,,,,17.6810784,8.084914932,33.56419437,,,,,,,,,,,,,,,,,,,,,,,,,,,16.18891383,15,92656,9.060812179,26.70115143,,,,,,,,,,,,,16.89018005,9.453305558,27.85778341,,,,5.714285714,,1400,,,8,,0.67576055,6886,10190,,,0.698,,,,,11.74892205,,,,,0.767390907,4203,5477,0.7218833,0.812898515,0.058152794,306,5262,0.029332402,0.086973186,0.835493884,4576,5477,0.797020412,0.873967355,13047,,,,,0.227178662,2964,13047,,,0.213688971,2788,13047,,,0.005211926,68,13047,,,0.002835901,37,13047,,,0.009350809,122,13047,,,0.000153292,2,13047,,,0.019927953,260,13047,,,0.951406454,12413,13047,,,0.007507388,94,12521,0,0.020749573,0.499655093,6519,13047,,,0.639298615,8495,13288,, -17,027,17027,IL,Clinton County,2024,1,5474.743143,422,103107,4632.514125,6316.972161,0,,,,2,,,,2,,,,2,,,,2,5738.092312,4810.581629,6665.602994,,,,,2,,0.138,,,0.114,0.165,3.489690259,,,2.675971461,4.382947659,4.607798492,,,3.583285639,5.714733643,0.071504051,203,2839,0.062025789,0.080982313,0,,,,,,,0.285714286,0.13604799,0.435380581,,,,0.069900688,0.06013334,0.079668035,,,,,,,0.167,,,0.13,0.209,0.348,,,0.27,0.43,9,0.037409996,0.07,,,0.258,,,0.208,0.313,0.638093173,23545,36899,,,0.186586118,,,0.148132297,0.230456978,0.142857143,4,28,0.058576657,0.253079972,255.5,94,36793,,,12.08072769,85,7036,9.649656197,14.93800687,,,,,,,,,,41.26984127,21.97445235,70.57268545,10.80319399,8.405529757,13.67213341,,,,,,,0.060708794,1737,28612,0.052368368,0.069049219,0.000326149,12,36793,,,3066.083333,0.000325124,12,36909,,,3075.75,0.000568967,21,36909,,,1757.571429,3335,,,,,,,,,3335,0.48,,,,,,,,,0.48,0.43,,,,,,,,,0.43,0.92001064,24211,26316,0.909828898,0.930192382,0.688018482,6552,9523,0.632774477,0.743262486,0.029514757,590,19990,,,0.092,708,,0.059829787,0.124170213,,,,,,,,,,0.068376068,0,0.189404541,0.080635838,0.053710185,0.107561491,3.919867437,138387,35304,3.475330873,4.364404001,0.162504754,1282,7889,0.11885653,0.206152977,13.04595983,48,36793,,,61.49535309,115,187006,50.25578945,72.73491673,,,,,,,,,,,,,64.48435961,52.43360841,76.53511081,,,,8.8,,,,,1,,,,,0.091812265,1340,14595,0.071458953,0.112165576,0.065834201,0.049073877,0.082594524,0.019116136,0.009634925,0.028597346,0.007879411,0.003205887,0.012552934,0.798924493,14411,18038,0.772892505,0.824956481,,,,,,,,,,,,,0.772843372,0.737939798,0.807746945,0.395,,18038,0.359755269,0.430244731,79.74591402,,,78.91121782,80.58061023,,,,,,,,,,,,,79.46080541,78.58318275,80.33842807,,,,293.4265618,422,103107,264.2175826,322.635541,,,,,,,,,,,,,300.7710887,269.8991973,331.6429801,,,,37.56791122,13,34604,20.00333051,64.24227233,,,,,,,,,,,,,38.75843804,20.02705051,67.70319127,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.106,,,0.089,0.124,0.155,,,0.131,0.18,0.087,,,0.073,0.102,83.2,26,31244,,,0.07,2580,,,,0.037409996,1412.676277,37762,,,12.52762789,14,111753,6.848970745,21.01923091,,,,,,,,,,,,,13.75340151,7.519112588,23.07587076,,,,0.327,,,0.309,0.345,0.071301676,1485,20827,0.059386782,0.083216569,0.033655611,275,8171,0.022932207,0.044379016,0.000866997,32,36909,,,1153.40625,,,,,,0.082423581,151,1832,0.028347837,0.136499325,3.378570166,,,,,,,,3.347256062,3.402841002,3.327584331,,,,,,,,3.153667305,3.363987712,0.13054873,,,,,-3699.384446,,,,,0.735248664,49955,67943,0.661803816,0.808693513,79612,,,71316.85106,87907.14894,,,,,,,99063,62823.85106,135302.1489,74792,19462.80851,130121.1915,78065,73756.57447,82373.42553,,,,,,0.320372093,1722,5375,,,75.36443329,,,,,0.211563583,,79612,,,5.744375299,12,2089,,,,,,,,,,,,,,,,,,,,,,,,,,9.138099156,19,187006,5.323279508,14.63098197,10.16010182,,,,,,,,,,,,,8.620113466,4.82461207,14.21756626,,,,6.95164861,13,187006,3.701460109,11.88753084,,,,,,,,,,,,,6.448435961,3.219035998,11.53803318,,,,17.52240773,46,262521,12.82860473,23.37243638,,,,,,,,,,,,,18.35781041,13.33881315,24.64450362,,,,9.166666667,,3600,,,33,,0.654713115,19170,29280,,,0.739,,,,,14.19228916,,,,,0.795556476,11530,14493,0.773883401,0.817229551,0.078303082,1113,14214,0.059807725,0.096798438,0.878907059,12738,14493,0.862947775,0.894866342,36909,,,,,0.212360129,7838,36909,,,0.186621149,6888,36909,,,0.032431114,1197,36909,,,0.004036956,149,36909,,,0.006556666,242,36909,,,0.000839904,31,36909,,,0.035411417,1307,36909,,,0.910076133,33590,36909,,,0.005351573,187,34943,0.000954643,0.009748502,0.477878024,17638,36909,,,0.80216266,29599,36899,, -17,029,17029,IL,Coles County,2024,1,8249.011754,735,136490,7325.323941,9172.699566,0,,,,2,,,,2,13015.26436,7439.348145,21135.97392,1,,,,2,8206.720504,7233.414943,9180.026064,,,,,2,,0.162,,,0.136,0.191,3.884930895,,,3.059477246,4.851202732,4.969965271,,,3.928233022,6.164719108,0.070746269,237,3350,0.062063613,0.079428925,0,,,,,,,0.088235294,0.049312542,0.127158047,,,,0.068355309,0.0591419,0.077568718,,,,,,,0.194,,,0.15,0.236,0.355,,,0.276,0.443,6.9,0.104100072,0.133,,,0.284,,,0.227,0.343,0.831423511,38963,46863,,,0.175009829,,,0.137345714,0.218453467,0.256410256,10,39,0.172913898,0.344942382,729.2,341,46765,,,14.11942971,205,14519,12.18658797,16.05227146,,,,,,,10.9375,5.979633028,18.3512665,26.31578947,14.7287476,43.40389276,13.942744,11.84060721,16.04488079,,,,,,,0.077838878,2831,36370,0.065923985,0.089753772,0.00079119,37,46765,,,1263.918919,0.000539561,25,46334,,,1853.36,0.005633013,261,46334,,,177.5249042,6334,,,,,,,6572,5412,6324,0.44,,,,,,,0.38,,0.44,0.43,,,,,,0.44,0.2,0.37,0.43,0.919497639,28041,30496,0.902520694,0.936474584,0.65645733,7223,11003,0.595713163,0.717201497,0.042076599,958,22768,,,0.191,1567,,0.126659575,0.255340426,,,,,,,0.867768595,0.639725455,1,0.181556196,0,0.364273349,0.205331821,0.148650278,0.262013363,4.869800182,107233,22020,4.425656276,5.313944087,0.210693676,1789,8491,0.163380928,0.258006423,15.60996472,73,46765,,,67.03027933,168,250633,56.89414262,77.16641605,,,,,,,101.6673445,48.75344343,186.9698662,,,,67.04718887,56.38822841,77.70614933,,,,9,,,,,0,,,,,0.138054363,2895,20970,0.11653915,0.159569577,0.114555126,0.095489836,0.133620416,0.01669051,0.006817938,0.026563082,0.012398665,0.006527536,0.018269793,0.769010738,17475,22724,0.730332405,0.80768907,,,,,,,0.328057554,0.161871286,0.494243822,,,,0.810652765,0.775344436,0.845961094,0.175,,22724,0.149141661,0.200858339,76.45309361,,,75.68451325,77.22167397,,,,,,,69.83530971,64.75143272,74.9191867,,,,76.40623779,75.6063556,77.20611997,,,,429.3437322,735,136490,396.5762606,462.1112039,,,,,,,735.0125808,454.9843722,1123.544807,,,,431.0925697,397.2273482,464.9577913,,,,35.49403257,16,45078,20.28790642,57.64008518,,,,,,,,,,,,,36.53444676,19.97372202,61.29859374,,,,7.019596373,24,3419,4.497587849,10.44460298,,,,,,,,,,,,,7.118644068,4.406552876,10.88160364,,,,,,,0.12,,,0.102,0.14,0.171,,,0.146,0.199,0.1,,,0.084,0.117,105.4,43,40784,,,0.133,6300,,,,0.104100072,5608.18317,53873,,,16.91829816,25,147769,10.94863053,24.97474551,,,,,,,,,,,,,13.48617667,7.992763003,21.31397338,,,,0.332,,,0.313,0.35,0.091422041,2560,28002,0.07593268,0.106911403,0.033844407,298,8805,0.023121002,0.044567811,0.001920836,89,46334,,,520.6067416,,,,,,,,,,,2.779114085,,,,,,,2.583234513,,2.806588425,2.621558686,,,,,,,2.310906592,,2.672020089,0.020890794,,,,,1698.821367,,,,,0.772999922,39692,51348,0.688554981,0.857444863,57712,,,51409.02128,64014.97872,,,,,,,29107,7089.468085,51124.53192,,,,55886,53230.17021,58541.82979,,,,,,0.564845293,3432,6076,,,46.06881405,,,,,0.291845717,,57712,,,5.701754386,13,2280,,,,,,,,,,,,,,,,,,,,,,,,,,11.99557055,29,250633,7.905156576,17.45292535,11.57070298,,,,,,,,,,,,,11.66957653,7.476917876,17.36340487,,,,6.782825885,17,250633,3.951246033,10.8599613,,,,,,,,,,,,,6.175398975,3.376148084,10.36127016,,,,14.0648163,50,355497,10.43917775,18.54270688,,,,,,,,,,,,,14.90442537,10.9893467,19.76110572,,,,0,,4100,,,0,,0.546500665,22606,41365,,,0.662,,,,,99.77174047,,,,,0.60034339,12238,20385,0.577650776,0.623036004,0.119500025,2371,19841,0.096426413,0.142573638,0.847731175,17281,20385,0.829565314,0.865897036,46334,,,,,0.180580136,8367,46334,,,0.187227522,8675,46334,,,0.03928001,1820,46334,,,0.003625847,168,46334,,,0.010186904,472,46334,,,0.00133811,62,46334,,,0.031769327,1472,46334,,,0.89793672,41605,46334,,,0.001985809,89,44818,0,0.004903751,0.507381189,23509,46334,,,0.263256727,12337,46863,, -17,031,17031,IL,Cook County,2024,1,8114.542604,68485,14441792,8026.071178,8203.014029,0,6735.75488,3682.499872,11301.45215,1,2986.258821,2795.242776,3177.274866,,16611.10469,16338.93077,16883.27862,,6305.947796,6155.89897,6455.996622,,5516.675294,5405.235838,5628.11475,,,,,2,,0.153,,,0.132,0.178,3.262338969,,,2.658096373,3.922675679,4.391562791,,,3.701813188,5.09105029,0.089495263,37042,413899,0.088625602,0.090364924,0,0.073446328,0.035014612,0.111878043,0.092398663,0.089415093,0.095382232,0.145911213,0.143711922,0.148110503,0.075949261,0.074445817,0.077452706,0.062126936,0.060907835,0.063346037,,,,0.083858459,0.075400877,0.09231604,0.132,,,0.109,0.159,0.314,,,0.275,0.356,8.7,0.01766665,0.092,,,0.265,,,0.231,0.303,0.991614888,5231305,5275541,,,0.180024619,,,0.15466296,0.208025245,0.202630006,339,1673,0.190659134,0.214842624,764.3,39536,5173146,,,15.33006502,16520,1077621,15.09629165,15.5638384,,,,1.332977873,1.071871621,1.638456112,28.55956274,27.92173138,29.1973941,19.10149648,18.66701103,19.53598192,3.113542991,2.921900432,3.30518555,,,,5.383961462,4.468938077,6.298984847,0.100675375,429265,4263853,0.097100907,0.104249843,0.000916464,4741,5173146,,,1091.150812,0.000982328,5019,5109292,,,1017.990038,0.003711865,18965,5109292,,,269.4063802,3510,,,,,11873,2058,6151,3376,2725,0.41,,,,,0.35,0.34,0.36,0.31,0.44,0.5,,,,,0.41,0.54,0.35,0.41,0.55,0.882083628,3210765,3639978,0.88018235,0.883984906,0.736187134,1143758,1553624,0.729992603,0.742381665,0.050376199,135388,2687539,,,0.191,201104,,0.176702128,0.205297872,0.180486562,0.124865265,0.236107859,0.138511,0.119404959,0.15761704,0.344105569,0.331688065,0.356523074,0.194301871,0.185541497,0.203062244,0.0648198,0.059495047,0.070144552,5.496106369,161624,29407,5.412775675,5.579437064,0.294768368,330201,1120205,0.287814177,0.30172256,7.123324956,3685,5173146,,,77.7007878,20065,25823419,76.6256555,78.77592011,,,,21.90800738,19.85626941,23.95974534,157.1217795,153.9342181,160.3093409,47.29592277,45.64003737,48.95180818,62.59166066,61.10109898,64.08222233,,,,10.8,,,,,1,,,,,0.198385619,395080,1991475,0.195613703,0.201157535,0.169282181,0.166496286,0.172068076,0.032169623,0.030895484,0.033443762,0.008867799,0.00818173,0.009553868,0.573889591,1461846,2547260,0.570003939,0.577775243,0.595908446,0.563542167,0.628274726,0.497218728,0.484487134,0.509950321,0.570470421,0.561700148,0.579240694,0.621273459,0.613682453,0.628864464,0.575351103,0.569926487,0.58077572,0.518,,2547260,0.51253991,0.52346009,77.88864165,,,77.80544962,77.97183367,103.5537181,82.67208143,124.4353548,87.34945605,86.91365486,87.78525725,70.22692774,70.04097556,70.41287991,81.78299485,81.52211546,82.04387423,80.16593179,80.0565547,80.27530889,,,,394.0587117,68485,14441792,391.0405589,397.0768646,287.3073192,210.3450672,383.2277015,156.2311443,149.470658,162.9916307,739.7157176,730.9859762,748.445459,302.5535994,296.630684,308.4765148,297.5748745,293.7396546,301.4100944,,,,56.85080597,2804,4932208,54.74652517,58.95508677,,,,31.14770118,25.1029005,37.19250186,122.2581684,115.958761,128.5575757,39.92878502,36.95591755,42.9016525,31.93097696,29.10368774,34.75826618,,,,6.314651523,2722,431061,6.077426007,6.551877039,,,,3.25732899,2.676932188,3.837725792,11.93428986,11.27295107,12.59562865,5.734418661,5.312013866,6.156823456,3.508951669,3.215157495,3.802745842,,,,9.120039438,6.421349413,12.57077302,0.102,,,0.088,0.117,0.136,,,0.119,0.155,0.104,,,0.09,0.118,586.1,25728,4389546,,,0.092,483790,,,,0.01766665,91772.50686,5194675,,,34.01448049,5249,15431663,33.09428176,34.93467921,,,,4.377922057,3.279364039,5.72642984,74.50516366,71.66144008,77.34888724,20.17404009,18.77779465,21.57028552,25.25126641,24.02388663,26.47864619,,,,0.335,,,0.323,0.346,0.124547814,396213,3181212,0.119781856,0.129313771,0.032609804,37114,1138124,0.029035335,0.036184272,0.001151627,5884,5109292,,,868.3365058,,,,,,0.071208038,18151,254901,0.065185028,0.077231047,2.995323424,,,,,,3.696120994,2.687772163,2.780529779,3.48670548,2.820961531,,,,,,3.791349575,2.326023448,2.600670847,3.477643459,0.403761628,,,,,-249.5471691,,,,,0.853595953,58549,68591,0.843965723,0.863226183,76614,,,75483.2766,77744.7234,68413,58956.14894,77869.85106,98589,94312.74468,102865.2553,47358,46255.87234,48460.12766,67813,66639.38298,68986.61702,99464,98366.6383,100561.3617,,,,,,0.583146416,410254,703518,,,77.32729518,,,,,0.36844441,,76614,,,4.561342859,1425,312408,,,15.43907159,5599,36265134,15.03466147,15.84348171,,,,0.943876042,0.616571168,1.382997093,52.4268341,50.87701552,53.97665267,9.142425387,8.526715978,9.758134797,1.827786961,1.613310544,2.042263377,,,,8.672708457,2346,25823419,8.315357618,9.030059296,9.084776884,,,,6.006179124,4.940842676,7.071515572,7.043279153,6.357335783,7.729222523,5.337219788,4.769864167,5.904575409,11.44907841,10.81553412,12.08262269,,,,17.68549703,4567,25823419,17.17256734,18.19842672,,,,1.600585014,1.094798965,2.259548469,54.47247465,52.59562744,56.34932187,9.779118684,9.02616496,10.53207241,5.728790907,5.2778463,6.179735515,,,,7.274204474,2638,36265134,6.996614242,7.551794707,,,,3.485080769,2.822926612,4.255880112,12.90396599,12.13507344,13.67285854,5.936639862,5.44048708,6.432792643,5.758511608,5.377821247,6.139201968,,,,2.985347985,,491400,,,1467,,0.653760165,2321486,3550975,,,0.662,,,,,366.5874056,,,,,0.575412535,1188945,2066248,0.571460126,0.579364945,0.177520554,355192,2000850,0.174375772,0.180665335,0.878616216,1815439,2066248,0.875629417,0.881603016,5109292,,,,,0.209346226,1069611,5109292,,,0.161714187,826245,5109292,,,0.226855697,1159072,5109292,,,0.007622778,38947,5109292,,,0.082772917,422911,5109292,,,0.000686984,3510,5109292,,,0.263393049,1345752,5109292,,,0.410785291,2098822,5109292,,,0.064133117,315886,4925474,0.062737461,0.065528773,0.511332686,2612548,5109292,,,0.000547811,2890,5275541,, -17,033,17033,IL,Crawford County,2024,1,5795.950561,256,51175,4595.459285,6996.441837,0,,,,2,,,,2,,,,2,,,,2,6132.948109,4811.159379,7454.73684,,,,,2,,0.157,,,0.13,0.187,3.748342137,,,2.889067353,4.696470789,4.877883226,,,3.783881271,6.0083935,0.082002903,113,1378,0.067516294,0.096489512,0,,,,,,,,,,,,,0.081632653,0.066878431,0.096386875,,,,,,,0.188,,,0.15,0.233,0.363,,,0.279,0.451,8.6,0.024233678,0.093,,,0.279,,,0.226,0.334,0.582579367,10882,18679,,,0.17418609,,,0.136312531,0.217995385,0.285714286,4,14,0.142392906,0.436004848,257.2,48,18659,,,23.36448598,80,3424,18.52658429,29.07912528,,,,,,,,,,,,,23.96720278,18.88342979,29.99852821,,,,,,,0.065258284,902,13822,0.05453488,0.075981688,0.000482341,9,18659,,,2073.222222,0.000431593,8,18536,,,2317,0.002373759,44,18536,,,421.2727273,3169,,,,,,,,,3199,0.47,,,,,,,,,0.47,0.41,,,,,,,,,0.41,0.886484099,12042,13584,0.865725491,0.907242707,0.619202604,3044,4916,0.550480802,0.687924405,0.041082649,340,8276,,,0.165,596,,0.104234043,0.225765957,,,,,,,,,,,,,0.090855457,0.050706592,0.131004323,4.749317927,118372,24924,3.972575739,5.526060114,0.171397675,634,3699,0.118858298,0.223937052,16.07803205,30,18659,,,63.03014764,59,93606,47.98146874,81.30429819,,,,,,,,,,,,,68.43819323,51.96798943,88.47223503,,,,9,,,,,0,,,,,0.123296561,950,7705,0.091060486,0.155532636,0.103747535,0.068900325,0.138594744,0.023880597,0.000193134,0.04756806,0.014276444,0.005340633,0.023212255,0.834330363,6834,8191,0.802873433,0.865787292,,,,,,,,,,,,,0.844938213,0.813664619,0.876211807,0.148,,8191,0.120261063,0.175738937,78.37070506,,,77.26482952,79.47658061,,,,,,,,,,,,,78.0625084,76.8943149,79.2307019,,,,341.8004821,256,51175,297.844742,385.7562223,,,,,,,,,,,,,349.9223995,303.0877471,396.7570518,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.115,,,0.098,0.135,0.165,,,0.14,0.191,0.095,,,0.08,0.112,124.8,20,16024,,,0.093,1750,,,,0.024233678,480.2387963,19817,,,,,,,,,,,,,,,,,,,,,,,,,,0.337,,,0.32,0.353,0.077773391,788,10132,0.063475519,0.092071264,0.032299742,125,3870,0.021576337,0.043023146,0.000809236,15,18536,,,1235.733333,,,,,,,,,,,2.76844838,,,,,,,,,2.809970886,2.839517831,,,,,,,,,2.869496869,0.066757566,,,,,1695.08765,,,,,0.833927272,44696,53597,0.702009622,0.965844922,66333,,,60156.31915,72509.68085,,,,,,,,,,75510,37426.42553,113593.5745,63575,56626.23404,70523.76596,,,,,,0.452,1243,2750,,,,,,,,0.253915849,,66333,,,3.134796238,3,957,,,,,,,,,,,,,,,,,,,,,,,,,,14.17867625,12,93606,7.326328917,24.767294,12.81969105,,,,,,,,,,,,,16.77026253,8.665439369,29.2942737,,,,,,,,,,,,,,,,,,,,,,,,,,,18.89244907,25,132328,12.22619691,27.8889817,,,,,,,,,,,,,20.83159737,13.48111145,30.75154712,,,,18.82352941,,1700,,,32,,0.624792841,9425,15085,,,0.685,,,,,26.74669159,,,,,0.790135009,5911,7481,0.767966742,0.812303275,0.078940028,566,7170,0.053060816,0.10481924,0.873947333,6538,7481,0.845928075,0.901966592,18536,,,,,0.200528701,3717,18536,,,0.202416918,3752,18536,,,0.045856711,850,18536,,,0.004315926,80,18536,,,0.006204143,115,18536,,,0.000647389,12,18536,,,0.027082434,502,18536,,,0.906074666,16795,18536,,,0.004223686,75,17757,0,0.009516892,0.474967631,8804,18536,,,0.671609829,12545,18679,, -17,035,17035,IL,Cumberland County,2024,1,6699.770676,149,28982,4982.130586,8417.410766,0,,,,2,,,,2,,,,2,,,,2,6735.380024,4985.568003,8485.192044,,,,,2,,0.139,,,0.115,0.168,3.520227915,,,2.774254931,4.294187751,4.902307334,,,3.797133593,6.073561426,0.071933962,61,848,0.054543362,0.089324563,0,,,,,,,,,,,,,0.071428571,0.053865127,0.088992016,,,,,,,0.173,,,0.132,0.219,0.357,,,0.275,0.449,9.1,0.001449169,0.084,,,0.264,,,0.211,0.324,0.19923445,2082,10450,,,0.173608009,,,0.135761887,0.216490211,0.25,3,12,0.099776571,0.4182543,299.7,31,10345,,,16.98914582,36,2119,11.89898887,23.52013898,,,,,,,,,,,,,17.97637391,12.52120308,25.00078447,,,,,,,0.064771896,531,8198,0.055239981,0.074303811,,0,10345,,,,9.68617E-05,1,10324,,,10324,0.00058117,6,10324,,,1720.666667,5001,,,,,,,,,5013,0.44,,,,,,,,,0.44,0.4,,,,,,,,,0.39,0.934116376,6919,7407,0.9076977,0.960535053,0.654494382,1631,2492,0.562964746,0.746024018,0.034077556,203,5957,,,0.126,284,,0.078340426,0.173659575,,,,,,,,,,0.782608696,0.031922729,1,0.076421249,0.043189532,0.109652966,3.70099543,118232,31946,3.272266247,4.129724613,0.108695652,255,2346,0.058786634,0.15860467,10.63315611,11,10345,,,50.48993941,27,53476,33.27318822,73.46021102,,,,,,,,,,,,,52.3814143,34.51968209,76.21220767,,,,9,,,,,0,,,,,0.06855792,290,4230,0.046026804,0.091089035,0.052430887,0.028601279,0.076260494,0.012765957,0.001098813,0.024433102,0.001891253,0,0.00752441,0.831204886,4491,5403,0.805255023,0.857154749,,,,,,,,,,,,,0.775,0.698068779,0.851931221,0.313,,5403,0.263657377,0.362342623,77.90685453,,,76.38676605,79.42694301,,,,,,,,,,,,,77.71865333,76.17829346,79.2590132,,,,354.1330423,149,28982,293.2294034,415.0366811,,,,,,,,,,,,,357.2981221,295.4205712,419.1756731,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.108,,,0.091,0.128,0.162,,,0.138,0.189,0.087,,,0.074,0.104,91.8,8,8713,,,0.084,880,,,,0.001449169,16.01041339,11048,,,,,,,,,,,,,,,,,,,,,,,,,,0.323,,,0.307,0.337,0.075433231,444,5886,0.062326848,0.088539614,0.039522437,96,2429,0.026416054,0.05262882,0.000387447,4,10324,,,2581,,,,,,,,,,,2.728387106,,,,,,,,,2.712991159,2.711949271,,,,,,,,,2.702735791,0.042817207,,,,,306.2627,,,,,0.648069384,35045,54076,0.578747153,0.717391615,79140,,,70101.3617,88178.6383,,,,,,,,,,,,,72500,60952.08511,84047.91489,,,,,,0.363044893,558,1537,,,,,,,,0.212825373,,79140,,,6.172839506,4,648,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.95065929,12,75232,8.241938416,27.86259178,,,,,,,,,,,,,16.53826541,8.545563071,28.88902142,,,,,,1100,,,-888,,0.702650602,5832,8300,,,0.668,,,,,14.12405464,,,,,0.811202318,3360,4142,0.788701239,0.833703396,0.063357446,254,4009,0.03323241,0.093482482,0.851521004,3527,4142,0.820633781,0.882408228,10324,,,,,0.222975591,2302,10324,,,0.212320806,2192,10324,,,0.006005424,62,10324,,,0.00232468,24,10324,,,0.007070903,73,10324,,,0.000774894,8,10324,,,0.014238667,147,10324,,,0.957865169,9889,10324,,,0.003664122,36,9825,0,0.01321224,0.496319256,5124,10324,,,1,10450,10450,, -17,037,17037,IL,DeKalb County,2024,1,7266.768877,1116,293314,6652.189858,7881.347896,0,,,,2,,,,2,13634.15387,10705.74328,17116.43165,,5952.443011,4496.411481,7729.742366,,7050.704032,6357.860484,7743.54758,,,,,2,,0.144,,,0.12,0.172,3.445475227,,,2.620880831,4.318935245,4.890969205,,,3.813266303,5.967643813,0.08,606,7575,0.073890528,0.086109472,0,,,,,,,0.130622837,0.111196505,0.15004917,0.090837901,0.075075774,0.106600029,0.065512979,0.058552222,0.072473736,,,,0.09929078,0.04992872,0.148652841,0.157,,,0.123,0.196,0.376,,,0.296,0.46,7.2,0.145853596,0.099,,,0.269,,,0.22,0.326,0.787582155,79089,100420,,,0.190723167,,,0.151008607,0.233375919,0.352941177,18,51,0.280936006,0.424241498,535.8,538,100414,,,8.28510894,262,31623,7.28187169,9.28834619,,,,,,,12.39296981,9.336080886,16.13115367,19.8974359,16.13548012,24.2731844,4.405712902,3.547205204,5.409239163,,,,23.90998594,13.92844792,38.28220368,0.074495164,6146,82502,0.06377176,0.085218568,0.000268887,27,100414,,,3719.037037,0.000678426,68,100232,,,1474,0.003960811,397,100232,,,252.4735516,2649,,,,,,,9014,1078,2430,0.43,,,,,,0.3,0.31,0.27,0.43,0.54,,,,,,0.46,0.33,0.37,0.54,0.930351502,55662,59829,0.919922947,0.940780057,0.733322545,18127,24719,0.688663549,0.777981541,0.042458163,2291,53959,,,0.146,3051,,0.10906383,0.18293617,0.396551724,0,0.843918333,0.255972696,0,0.607303566,0.538732394,0.424607673,0.652857116,0.249643027,0.162168004,0.33711805,0.111877224,0.076131945,0.147622503,4.975650496,134049,26941,4.293440173,5.657860818,0.24290936,5250,21613,0.208759954,0.277058766,9.759595276,98,100414,,,60.73132078,315,518678,54.02454912,67.43809244,,,,,,,71.69144004,48.36991354,102.3439884,41.01251702,26.54113859,60.54256558,64.77278523,56.80694145,72.73862901,,,,9.9,,,,,1,,,,,0.157322284,6075,38615,0.138438433,0.176206135,0.142490746,0.12244336,0.162538131,0.016314904,0.010507881,0.022121926,0.007095688,0.003177284,0.011014093,0.788352976,39800,50485,0.762896406,0.813809547,,,,0.696914701,0.605990512,0.787838889,0.785894207,0.655180402,0.916608011,0.785458269,0.734187933,0.836728606,0.785040672,0.756429373,0.81365197,0.398,,50485,0.368188946,0.427811054,77.81303635,,,77.25784746,78.36822523,,,,87.12409216,75.66466236,98.58352196,70.1182062,67.54193984,72.69447256,84.28828112,79.60433414,88.9722281,77.95555896,77.35219289,78.55892504,,,,361.0775962,1116,293314,339.2841262,382.8710663,,,,,,,707.567644,557.4828258,885.6264175,301.8128727,227.36676,392.8509392,355.9287359,332.101761,379.7557108,,,,46.52860141,51,109610,34.64359989,61.176518,,,,,,,125.2838462,71.61054306,203.4531172,,,,33.76667229,21.63494408,50.24213179,,,,5.023183926,39,7764,3.571974818,6.866857788,,,,,,,,,,,,,,,,,,,,,,0.107,,,0.091,0.126,0.158,,,0.135,0.184,0.096,,,0.081,0.113,102.2,87,85133,,,0.099,10010,,,,0.145853596,15337.96412,105160,,,19.68999555,61,309802,15.06128642,25.292623,,,,,,,,,,,,,20.22897478,14.86348979,26.90024806,,,,0.314,,,0.297,0.33,0.090008515,5497,61072,0.076902132,0.103114898,0.032792681,742,22627,0.023260766,0.042324596,0.000768218,77,100232,,,1301.714286,,,,,,0.047420181,352,7423,0.015973046,0.078867315,2.820838214,,,,,,,2.081677062,2.368987254,3.077940507,2.874917638,,,,,,,1.930787477,2.315491873,3.204762896,0.149703807,,,,,4959.409,,,,,0.738051765,46081,62436,0.693037082,0.783066448,71882,,,63924.04255,79839.95745,,,,16989,12921.25532,21056.74468,26635,13298.65957,39971.34043,72016,58298.38298,85733.61702,74435,71587.34043,77282.65957,,,,,,0.401427078,6526,16257,,,53.60566062,,,,,0.392699146,,71882,,,3.80952381,22,5775,,,2.474029562,18,727558,1.466266714,3.910033326,,,,,,,,,,,,,,,,,,,14.28170553,69,518678,10.99865352,18.23741913,13.30305122,,,,,,,,,,,,,16.62492502,12.62400258,21.49157078,,,,8.483105125,44,518678,6.16383717,11.38817268,,,,,,,,,,,,,8.160350895,5.581673971,11.51998064,,,,10.85824086,79,727558,8.596571539,13.53260787,,,,,,,,,,11.914123,5.713285077,21.91049639,10.83736724,8.270052913,13.94983986,,,,21.68316832,,10100,,,219,,0.611846735,47825,78165,,,0.739,,,,,62.42528668,,,,,0.60014308,23489,39139,0.58238293,0.61790323,0.149686936,5642,37692,0.127201574,0.172172298,0.915710672,35840,39139,0.900179862,0.931241482,100232,,,,,0.212187725,21268,100232,,,0.14136204,14169,100232,,,0.087497007,8770,100232,,,0.005377524,539,100232,,,0.02793519,2800,100232,,,0.0010775,108,100232,,,0.131953867,13226,100232,,,0.732520552,73422,100232,,,0.018156395,1727,95118,0.011330792,0.024981999,0.503072871,50424,100232,,,0.217566222,21848,100420,, -17,039,17039,IL,De Witt County,2024,1,9462.655833,299,42429,7629.33116,11295.98051,0,,,,2,,,,2,,,,2,,,,2,9745.001306,7802.587486,11687.41513,,,,,2,,0.152,,,0.126,0.183,3.716397915,,,2.909917189,4.574762621,4.973060473,,,3.889153645,6.075903994,0.065953654,74,1122,0.051430422,0.080476887,0,,,,,,,,,,,,,0.066471163,0.051206095,0.081736232,,,,,,,0.184,,,0.142,0.226,0.372,,,0.291,0.458,8.8,0.021567964,0.087,,,0.277,,,0.223,0.337,0.796339263,12356,15516,,,0.168332967,,,0.133001391,0.206418116,0,0,14,0,0.157042953,280.3,43,15341,,,18.2832352,59,3227,13.91804575,23.58404133,,,,,,,,,,,,,18.82352941,14.21909183,24.44391866,,,,,,,0.062433516,763,12221,0.052901601,0.071965431,0.000325924,5,15341,,,3068.2,0.000391901,6,15310,,,2551.666667,0.000457218,7,15310,,,2187.142857,2567,,,,,,,,,2512,0.47,,,,,,,,,0.47,0.39,,,,,,,,,0.4,0.941696751,10434,11080,0.927327702,0.9560658,0.619476499,2201,3553,0.5314555,0.707497497,0.039738704,292,7348,,,0.155,488,,0.099,0.211,,,,,,,,,,0.224137931,0,0.471343362,0.159434914,0.098402098,0.220467731,3.959627856,116615,29451,3.404945289,4.514310424,0.238938053,783,3277,0.154818373,0.323057734,13.03695978,20,15341,,,90.95800559,71,78058,71.038957,114.7311475,,,,,,,,,,,,,95.10611125,74.1398795,120.16085,,,,9.2,,,,,0,,,,,0.075780089,510,6730,0.054989116,0.096571062,0.070262172,0.049389268,0.091135077,0.007429421,0.00044965,0.014409191,0,0,0.004757116,0.837261653,6323,7552,0.807045454,0.867477851,,,,,,,,,,,,,0.821355236,0.779810549,0.862899924,0.377,,7552,0.322295195,0.431704805,74.64615374,,,73.27377318,76.0185343,,,,,,,,,,,,,74.35965818,72.9241524,75.79516396,,,,480.9571287,299,42429,422.9904809,538.9237765,,,,,,,,,,,,,490.5711081,430.4235306,550.7186855,,,,103.8349716,15,14446,58.11564539,171.259995,,,,,,,,,,,,,106.5773447,58.2668261,178.8186748,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.114,,,0.097,0.133,0.167,,,0.142,0.193,0.093,,,0.079,0.11,38.3,5,13071,,,0.087,1370,,,,0.021567964,357.1870428,16561,,,21.57636956,10,46347,10.34670787,39.67971183,,,,,,,,,,,,,22.90268649,10.98272839,42.11885588,,,,0.323,,,0.304,0.341,0.073040578,657,8995,0.061125685,0.084955472,0.034341063,117,3407,0.023617658,0.045064467,0.000522534,8,15310,,,1913.75,,,,,,,,,,,3.379041546,,,,,,,,,3.386326204,3.293152711,,,,,,,,,3.349925484,0.027369868,,,,,6168.9115,,,,,0.910226592,51659,56754,0.756972179,1.063481005,64262,,,55477.14894,73046.85106,,,,,,,,,,117000,84670.12766,149329.8723,61884,54780.34043,68987.65957,,,,,,0.453531599,976,2152,,,,,,,,0.262098908,,64262,,,1.153402538,1,867,,,,,,,,,,,,,,,,,,,,,,,,,,29.87185782,24,78058,18.72053426,45.22635173,30.74636809,,,,,,,,,,,,,30.06678236,18.36557178,46.43570679,,,,15.37318404,12,78058,7.943548526,26.85385873,,,,,,,,,,,,,16.30390479,8.424465516,28.47964056,,,,12.66612986,14,110531,6.924691061,21.25161369,,,,,,,,,,,,,13.41060396,7.331701975,22.50071471,,,,0,,1500,,,0,,0.657435477,8024,12205,,,0.693,,,,,42.56227506,,,,,0.76384708,5075,6644,0.733381326,0.794312834,0.098965571,641,6477,0.071769002,0.126162139,0.84512342,5615,6644,0.81833965,0.871907189,15310,,,,,0.209732201,3211,15310,,,0.20568256,3149,15310,,,0.010516003,161,15310,,,0.003723057,57,15310,,,0.005094709,78,15310,,,0.000522534,8,15310,,,0.032266493,494,15310,,,0.935793599,14327,15310,,,0.000136342,2,14669,0,0.006122243,0.499673416,7650,15310,,,0.528035576,8193,15516,, -17,041,17041,IL,Douglas County,2024,1,6527.313672,247,53863,5277.263339,7777.364004,0,,,,2,,,,2,,,,2,,,,2,6878.283306,5495.027694,8261.538918,,,,,2,,0.163,,,0.134,0.198,3.80361703,,,3.059808774,4.668290404,4.999700494,,,3.926740702,6.198795101,0.061043285,110,1802,0.049989261,0.07209731,0,,,,,,,,,,0.086206897,0.044503023,0.12791077,0.057655349,0.046092115,0.069218583,,,,,,,0.189,,,0.145,0.234,0.364,,,0.282,0.45,8.8,0.037038427,0.078,,,0.29,,,0.234,0.355,0.81550152,16098,19740,,,0.172319997,,,0.135992325,0.212211152,0.277777778,5,18,0.152183671,0.410166986,283.9,56,19722,,,15.13782196,67,4426,11.7316041,19.22449879,,,,,,,,,,30.76923077,17.58727395,49.96730307,13.30140995,9.872562846,17.53625078,,,,,,,0.11475819,1839,16025,0.099268829,0.130247552,0.000354934,7,19722,,,2817.428571,0.000506201,10,19755,,,1975.5,0.00015186,3,19755,,,6585,5194,,,,,,,,5734,5112,0.49,,,,,,,,,0.49,0.39,,,,,,,,0.25,0.4,0.847604678,11235,13255,0.828214309,0.866995047,0.560985626,2732,4870,0.494292835,0.627678418,0.032765916,333,10163,,,0.115,545,,0.072106383,0.157893617,,,,,,,,,,0.161363636,0.017235503,0.305491769,0.099029609,0.058378589,0.13968063,4.358681428,123233,28273,3.957520813,4.759842042,0.113800952,550,4833,0.069456502,0.158145401,12.1691512,24,19722,,,72.50520812,71,97924,56.62716909,91.45545434,,,,,,,,,,,,,78.34588003,60.95777107,99.15172542,,,,8.8,,,,,0,,,,,0.110526316,840,7600,0.084018889,0.137033743,0.087591241,0.064125637,0.111056844,0.029605263,0.016537194,0.042673332,0.007763158,0,0.018919711,0.74049217,6951,9387,0.705956428,0.775027912,,,,,,,,,,0.643971631,0.504916648,0.783026614,0.728075014,0.684351711,0.771798316,0.366,,9387,0.320504449,0.411495551,78.47469341,,,77.31955334,79.62983348,,,,,,,,,,,,,78.12356963,76.89530139,79.35183787,,,,347.3472989,247,53863,302.059994,392.6346037,,,,,,,,,,,,,356.2392442,308.1444868,404.3340017,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.118,,,0.099,0.139,0.169,,,0.143,0.196,0.095,,,0.079,0.112,,,,,,0.078,1540,,,,0.037038427,740.0277638,19980,,,,,,,,,,,,,,,,,,,,,,,,,,0.331,,,0.313,0.349,0.130585722,1467,11234,0.110330403,0.150841041,0.078435266,395,5036,0.054605479,0.102265053,0.000708681,14,19755,,,1411.071429,,,,,,,,,,,3.054224584,,,,,,,,,3.101180923,2.920051448,,,,,,,,2.727302207,2.962974288,0.159086674,,,,,2604.261075,,,,,0.722482059,40472,56018,0.6674833,0.777480819,67796,,,58094.89362,77497.10638,33750,12027.95745,55472.04255,,,,,,,80536,31512.17021,129559.8298,67360,60784.17021,73935.82979,,,,,,0.415352982,1212,2918,,,54.43209651,,,,,0.248436486,,67796,,,1.510574018,2,1324,,,,,,,,,,,,,,,,,,,,,,,,,,11.87159351,12,97924,5.926256708,21.24156006,12.25440137,,,,,,,,,,,,,13.16045831,6.56965337,23.5476952,,,,,,,,,,,,,,,,,,,,,,,,,,,22.56564054,31,137377,15.33225793,32.0301255,,,,,,,,,,,,,24.26379599,16.37068126,34.63807749,,,,3.636363636,,2200,,,8,,0.606805556,8738,14400,,,0.711,,,,,10.26407606,,,,,0.785602094,6002,7640,0.758384205,0.812819983,0.086033069,640,7439,0.061740835,0.110325303,0.77539267,5924,7640,0.749342162,0.801443178,19755,,,,,0.244090104,4822,19755,,,0.191698304,3787,19755,,,0.008048595,159,19755,,,0.00506201,100,19755,,,0.007188054,142,19755,,,0.00015186,3,19755,,,0.080384713,1588,19755,,,0.888939509,17561,19755,,,0.008707009,160,18376,0.00282101,0.014593008,0.501392053,9905,19755,,,0.74964539,14798,19740,, -17,043,17043,IL,DuPage County,2024,1,4585.043506,7789,2581642,4425.213833,4744.873179,0,,,,2,2495.898196,2174.321481,2817.474912,,9028.641098,8032.132447,10025.14975,,4051.44305,3680.602101,4422.284,,4764.983723,4558.523117,4971.44433,,,,,2,,0.108,,,0.09,0.13,2.689386053,,,2.118724145,3.359748225,3.870640884,,,3.193671151,4.663739934,0.068936582,4847,70311,0.067063922,0.070809242,0,,,,0.094714709,0.089103849,0.100325569,0.113349515,0.10366911,0.12302992,0.07034988,0.066015926,0.074683835,0.057363621,0.055109897,0.059617345,,,,0.075449102,0.057534577,0.093363626,0.108,,,0.082,0.137,0.303,,,0.255,0.359,9.3,0.032133701,0.058,,,0.217,,,0.179,0.261,0.997760691,930788,932877,,,0.164595062,,,0.138189439,0.19621867,0.242857143,51,210,0.208006462,0.278927422,267,2469,924885,,,5.947101333,1227,206319,5.614335194,6.279867473,,,,1.310902338,0.884460302,1.871394599,16.45151134,14.22108066,18.68194201,17.15539137,15.92182564,18.38895709,1.726642593,1.491989192,1.961295995,,,,4.546143355,3.067263831,6.489902318,0.058150278,44182,759790,0.053384321,0.062916236,0.001349357,1248,924885,,,741.09375,0.001183623,1090,920901,,,844.8633028,0.004189375,3858,920901,,,238.6990669,2612,,,,,,2039,4811,2624,2549,0.46,,,,,,0.4,0.42,0.31,0.47,0.56,,,,,,0.56,0.43,0.43,0.57,0.934911749,601037,642881,0.931740127,0.938083371,0.798794924,191301,239487,0.784223956,0.813365892,0.036306767,19025,524007,,,0.076,15067,,0.059319149,0.092680851,0.034734918,0,0.105871675,0.066879105,0.051074328,0.082683882,0.236267545,0.186854532,0.285680558,0.121651939,0.104002846,0.139301032,0.041538943,0.034907693,0.048170193,4.158195811,202080,48598,4.05148126,4.264910361,0.150197991,31103,207080,0.138483512,0.16191247,9.038961601,836,924885,,,44.89615493,2076,4624004,42.96484691,46.82746296,,,,18.38506926,14.90145987,21.86867865,72.17862035,61.19841142,83.15882927,28.09009529,24.09587067,32.0843199,52.25785745,49.6924077,54.8233072,,,,11,,,,,0,,,,,0.141963028,48880,344315,0.136490529,0.147435527,0.118685832,0.113222826,0.124148838,0.022392286,0.01989766,0.024886913,0.007812613,0.006087148,0.009538079,0.687020804,330198,480623,0.681172201,0.692869408,0.838025836,0.750294655,0.925757018,0.65570672,0.639302563,0.672110878,0.752151691,0.723930859,0.780372523,0.759587972,0.745023486,0.774152458,0.764595188,0.757291095,0.77189928,0.398,,480623,0.388320295,0.407679705,81.64644848,,,81.47074909,81.82214787,,,,89.14900948,88.11638889,90.18163006,75.90502714,74.93628637,76.87376791,84.53510391,83.60568596,85.46452186,81.12270283,80.91810363,81.32730203,,,,231.7527785,7789,2581642,226.4233972,237.0821598,,,,132.231194,120.878413,143.5839751,416.4821892,381.5820908,451.3822876,198.2924206,182.2177714,214.3670699,242.6964368,236.1260582,249.2668154,,,,30.54125406,281,920067,26.97025466,34.11225346,,,,23.1568836,15.26053221,33.69204985,81.52586076,59.00066967,109.8147994,23.42218488,17.1479831,31.24191233,30.47128275,25.71991916,35.22264633,,,,3.595260412,257,71483,3.155698693,4.03482213,,,,2.43993994,1.593849776,3.575077335,8.37520938,5.833640202,11.64788882,3.414235879,2.499649774,4.554112203,3.455640613,2.891219313,4.020061914,,,,,,,0.082,,,0.069,0.097,0.123,,,0.106,0.143,0.081,,,0.069,0.096,96.7,756,781452,,,0.058,54320,,,,0.032133701,29464.16158,916924,,,15.69457348,434,2765287,14.21798075,17.1711662,,,,,,,30.27550712,21.81992253,40.92369043,9.068694133,6.385197579,12.50000028,18.99324746,16.9861148,21.00038011,,,,0.294,,,0.28,0.308,0.070665272,39174,554360,0.063516336,0.077814208,0.025997735,5625,216365,0.020040289,0.031955182,0.00129547,1193,920901,,,771.9203688,,,,,,0.03262862,1602,49098,0.024384319,0.040872922,3.275294582,,,,,,3.74763009,2.685970143,2.617147805,3.518224958,3.342589934,,,,,,4.043964756,2.502077647,2.606796597,3.610867672,0.144262535,,,,,7936.222241,,,,,0.741237198,63040,85047,0.720713535,0.761760862,102383,,,98684.61702,106081.383,103625,70559.97872,136690.0213,129112,124478.2979,133745.7021,66409,61360.65957,71457.34043,82970,79767.2766,86172.7234,113319,112034.5745,114603.4255,,,,,,0.26442156,36872,139444,,,49.61469748,,,,,0.275709835,,102383,,,4.054129103,219,54019,,,1.757331618,114,6487108,1.434736814,2.079926423,,,,,,,17.10082022,12.8826781,22.25906809,2.439303759,1.546309337,3.660153326,0.719670976,0.488981512,1.021515504,,,,9.874818724,478,4624004,8.968128054,10.78150939,10.3373613,,,,6.49979465,4.527345127,9.039640919,5.504239529,3.00921897,9.235178651,3.995692976,2.504079515,6.049527185,12.06385773,10.81461519,13.31310027,,,,4.649649957,215,4624004,4.028127107,5.271172808,,,,1.718230772,0.823958442,3.159887566,18.26206057,13.16168695,24.68500067,2.956852135,1.806122101,4.566618308,4.622558281,3.859550599,5.385565963,,,,4.809539166,312,6487108,4.275857553,5.343220779,,,,3.634271936,2.433928953,5.219420727,7.773100099,5.030340539,11.47462913,4.666494148,3.390681792,6.264550583,4.828760095,4.172524123,5.484996067,,,,3.613707165,,96300,,,348,,0.74715871,485104,649265,,,0.792,,,,,152.7203054,,,,,0.731464442,255186,348870,0.724592962,0.738335923,0.122243302,41883,342620,0.116674004,0.127812599,0.935477399,326360,348870,0.931261929,0.939692868,920901,,,,,0.217602109,200390,920901,,,0.176135111,162203,920901,,,0.051650503,47565,920901,,,0.004362032,4017,920901,,,0.135384803,124676,920901,,,0.00057118,526,920901,,,0.153450805,141313,920901,,,0.641560819,590814,920901,,,0.036183169,31777,878226,0.033706975,0.038659363,0.504368005,464473,920901,,,0.001878061,1752,932877,, -17,045,17045,IL,Edgar County,2024,1,9713.649797,343,45461,7975.410587,11451.88901,0,,,,2,,,,2,,,,2,,,,2,10014.93195,8211.695791,11818.1681,,,,,2,,0.157,,,0.128,0.19,3.780788505,,,2.892474109,4.697074856,5.067458661,,,3.936359795,6.227384795,0.096747968,119,1230,0.08022725,0.113268685,0,,,,,,,,,,,,,0.095477387,0.07880822,0.112146553,,,,,,,0.191,,,0.148,0.234,0.364,,,0.279,0.448,7.3,0.139203882,0.101,,,0.284,,,0.228,0.341,0.57405431,9682,16866,,,0.162108853,,,0.12634107,0.199431538,0,0,13,0,0.165938541,357.1,59,16520,,,32.93768546,111,3370,26.81012423,39.06524669,,,,,,,,,,,,,33.08364544,26.78544473,39.38184615,,,,,,,0.060565488,769,12697,0.051033573,0.070097403,0.000242131,4,16520,,,4130,0.000304266,5,16433,,,3286.6,0.001825595,30,16433,,,547.7666667,6216,,,,,,,,,6200,0.41,,,,,,,,,0.41,0.32,,,,,,,,,0.32,0.879431479,10890,12383,0.849888034,0.908974923,0.54507556,2092,3838,0.462171768,0.627979353,0.034079738,312,9155,,,0.199,634,,0.129893617,0.268106383,,,,,,,,,,,,,0.171176841,0.11605039,0.226303291,3.632867005,99457,27377,3.10073044,4.16500357,0.253172205,838,3310,0.170729444,0.335614967,11.50121065,19,16520,,,92.69362995,79,85227,73.38641975,115.5239198,,,,,,,,,,,,,94.75448869,74.89949125,118.2578902,,,,8.9,,,,,1,,,,,0.09044586,710,7850,0.065706175,0.115185545,0.076394293,0.051685021,0.101103565,0.007388535,0,0.016259493,0.008917198,0,0.018280913,0.85288163,6319,7409,0.808977745,0.896785516,,,,,,,,,,,,,0.831514984,0.777739169,0.885290799,0.251,,7409,0.207416889,0.294583111,74.84400667,,,73.52319686,76.16481648,,,,,,,,,,,,,74.51688587,73.1694273,75.86434445,,,,489.3219151,343,45461,433.159567,545.4842632,,,,,,,,,,,,,501.043049,443.2249985,558.8610996,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.117,,,0.097,0.137,0.171,,,0.145,0.197,0.094,,,0.077,0.109,56,8,14273,,,0.101,1720,,,,0.139203882,2585.851313,18576,,,,,,,,,,,,,,,,,,,,,,,,,,0.327,,,0.309,0.344,0.072696534,688,9464,0.059590151,0.085802917,0.026331188,90,3418,0.017990762,0.034671613,0.001947301,32,16433,,,513.53125,,,,,,,,,,,3.026236623,,,,,,,,,3.049875422,2.892110402,,,,,,,,,2.898705668,0.092450775,,,,,-1300.66244,,,,,0.608289599,36279,59641,0.541780196,0.674799003,63430,,,59916.29787,66943.70213,,,,,,,,,,55875,24897.46809,86852.53192,56767,49146.23404,64387.76596,,,,,,0.492402659,1037,2106,,,,,,,,0.265536812,,63430,,,3.597122302,3,834,,,,,,,,,,,,,,,,,,,,,,,,,,20.58667432,17,85227,11.76706313,33.43146933,19.9467305,,,,,,,,,,,,,19.75472003,11.05656684,32.58240648,,,,,,,,,,,,,,,,,,,,,,,,,,,19.9241223,24,120457,12.76576111,29.64551466,,,,,,,,,,,,,20.6010352,13.19947197,30.6527074,,,,0,,1600,,,0,,0.593268187,8196,13815,,,0.662,,,,,47.02294416,,,,,0.736772835,5598,7598,0.697356818,0.776188852,0.065420561,476,7276,0.043048347,0.087792775,0.849697289,6456,7598,0.816811715,0.882582863,16433,,,,,0.197164243,3240,16433,,,0.242499848,3985,16433,,,0.007484939,123,16433,,,0.002616686,43,16433,,,0.003894602,64,16433,,,0.000304266,5,16433,,,0.014726465,242,16433,,,0.961297389,15797,16433,,,0.002183542,35,16029,0,0.007843626,0.507880484,8346,16433,,,0.506937033,8550,16866,, -17,047,17047,IL,Edwards County,2024,1,11380.66304,128,17015,8042.483889,14718.84219,0,,,,2,,,,2,,,,2,,,,2,11003.37948,7700.828872,14305.93008,,,,,2,,0.156,,,0.131,0.186,3.849401286,,,2.935491177,4.902015644,5.157089923,,,3.980823869,6.484413353,0.090909091,42,462,0.064694541,0.11712364,0,,,,,,,,,,,,,0.092134832,0.065262913,0.11900675,,,,,,,0.192,,,0.152,0.237,0.376,,,0.294,0.464,7.7,0.076453957,0.11,,,0.282,,,0.229,0.341,0.128102482,800,6245,,,0.164042973,,,0.128155518,0.206686613,,,,,,246.9,15,6075,,,22.47191011,28,1246,14.93242107,32.47816689,,,,,,,,,,,,,24.07566638,15.99810547,34.79604122,,,,,,,0.075239107,354,4705,0.063324214,0.087154001,,0,6075,,,,0.000164718,1,6071,,,6071,0.000494153,3,6071,,,2023.666667,2299,,,,,,,,,2303,0.43,,,,,,,,,0.43,0.34,,,,,,,,,0.35,0.910788382,3951,4338,0.886153873,0.93542289,0.655799848,865,1319,0.559896737,0.75170296,0.043532338,105,2412,,,0.155,203,,0.097808511,0.212191489,,,,,,,,,,0.094339623,0,0.663042839,0.157486424,0.092046376,0.222926471,4.254558915,109189,25664,3.617082019,4.892035812,0.175893483,251,1427,0.109791956,0.24199501,26.33744856,16,6075,,,88.31693162,28,31704,58.68595968,127.642556,,,,,,,,,,,,,85.1481906,55.62162507,124.7618277,,,,8.7,,,,,0,,,,,0.061705989,170,2755,0.039011425,0.084400553,0.043573783,0.014212126,0.072935439,0.012704174,0,0.027265055,0.003629764,0,0.013153036,0.795856874,2113,2655,0.7457189,0.845994848,,,,,,,,,,,,,0.834745763,0.792200735,0.877290791,0.393,,2655,0.327197849,0.458802151,75.07715438,,,72.58729001,77.56701875,,,,,,,,,,,,,75.22396305,72.75577509,77.69215101,,,,524.7354924,128,17015,425.7618165,623.7091683,,,,,,,,,,,,,520.6231274,420.9558034,620.2904514,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.118,,,0.101,0.139,0.174,,,0.149,0.201,0.094,,,0.079,0.112,,,,,,0.11,680,,,,0.076453957,513.8470469,6721,,,,,,,,,,,,,,,,,,,,,,,,,,0.33,,,0.313,0.347,0.088750371,299,3369,0.074452499,0.103048243,0.042553192,60,1410,0.028255319,0.056851064,0.000988305,6,6071,,,1011.833333,,,,,,,,,,,3.398162772,,,,,,,,,3.402768665,3.400788482,,,,,,,,,3.363326918,,,,,,1844.451,,,,,0.70254044,40956,58297,0.58698774,0.818093139,58387,,,53347,63427,,,,62143,9578.06383,114707.9362,,,,,,,60938,54551.61702,67324.38298,,,,,,0.405940594,328,808,,,,,,,,0.288471749,,58387,,,2.849002849,1,351,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,700,,,-888,,0.68,3366,4950,,,0.666,,,,,32.37075972,,,,,0.791619048,2078,2625,0.750972503,0.832265592,0.048355133,122,2523,0.010709004,0.086001262,0.832,2184,2625,0.788720829,0.875279171,6071,,,,,0.22154505,1345,6071,,,0.225168835,1367,6071,,,0.006094548,37,6071,,,0.00724757,44,6071,,,0.00527096,32,6071,,,0,0,6071,,,0.015154011,92,6071,,,0.95503212,5798,6071,,,0.009108094,53,5819,0,0.023298572,0.512765607,3113,6071,,,1,6245,6245,, -17,049,17049,IL,Effingham County,2024,1,6652.342392,452,94442,5663.028211,7641.656573,0,,,,2,,,,2,,,,2,,,,2,6728.875153,5704.268936,7753.481369,,,,,2,,0.14,,,0.114,0.165,3.511651076,,,2.738252393,4.396444896,4.900086031,,,3.879936543,6.029284139,0.069878749,219,3134,0.060952913,0.078804586,0,,,,,,,,,,,,,0.070246538,0.061041338,0.079451738,,,,,,,0.172,,,0.135,0.212,0.356,,,0.276,0.44,8.6,0.046380903,0.086,,,0.259,,,0.207,0.314,0.5876024,20371,34668,,,0.176067962,,,0.138999056,0.217096473,0.142857143,5,35,0.066594236,0.239711679,241.1,83,34430,,,22.05882353,150,6800,18.52867655,25.58897051,,,,,,,,,,41.50943396,20.72135988,74.27184345,21.41732284,17.81774308,25.01690259,,,,,,,0.05324132,1489,27967,0.044900895,0.061581746,0.0007842,27,34430,,,1275.185185,0.00177713,61,34325,,,562.704918,0.002388929,82,34325,,,418.597561,2792,,,,,,,,,2806,0.58,,,,,,,,,0.58,0.34,,,,,,,,,0.34,0.935114182,22194,23734,0.922493382,0.947734983,0.696976717,6017,8633,0.639555574,0.75439786,0.029717982,588,19786,,,0.118,939,,0.07987234,0.15612766,,,,,,,0.717741936,0.357706791,1,0.226950355,0.0257996,0.42810111,0.149277689,0.107597478,0.190957899,4.292062685,135024,31459,3.648998695,4.935126675,0.179608128,1485,8268,0.115366357,0.243849899,15.39355214,53,34430,,,76.67858794,131,170843,63.54768685,89.80948904,,,,,,,,,,,,,78.3996668,64.81761747,91.98171613,,,,9.1,,,,,0,,,,,0.088776615,1230,13855,0.071275264,0.106277966,0.060130719,0.045520634,0.074740804,0.030313966,0.016558236,0.044069696,0.003608806,0.00086574,0.006351871,0.798400552,13877,17381,0.770754221,0.826046883,,,,,,,,,,,,,0.812543169,0.791146161,0.833940177,0.162,,17381,0.137321497,0.186678503,77.43841927,,,76.59017836,78.28666018,,,,,,,,,,,,,77.31480514,76.4482274,78.18138289,,,,351.1700272,452,94442,317.0805585,385.259496,,,,,,,,,,,,,354.2226445,319.3556337,389.0896554,,,,48.16273338,17,35297,28.05656704,77.11320173,,,,,,,,,,,,,48.7314592,27.8542395,79.13683671,,,,7.273877293,23,3162,4.611014243,10.91438738,,,,,,,,,,,,,7.340674007,4.600361319,11.11386866,,,,,,,0.108,,,0.091,0.125,0.161,,,0.137,0.186,0.087,,,0.073,0.102,31.5,9,28598,,,0.086,2970,,,,0.046380903,1588.174885,34242,,,10.73139323,11,102503,5.357072834,19.2014268,,,,,,,,,,,,,10.21627862,4.8991027,18.78810012,,,,0.312,,,0.293,0.33,0.065124034,1289,19793,0.05320914,0.077038927,0.025538894,218,8536,0.017198469,0.03387932,0.00212673,73,34325,,,470.2054795,,,,,,,,,,,3.336150699,,,,,,,,,3.36470009,3.040204396,,,,,,,,,3.085672394,0.06179301,,,,,1230.8556,,,,,0.810067697,44753,55246,0.724499308,0.895636087,74800,,,67972.76596,81627.23404,93750,60109.48936,127390.5106,,,,,,,80625,5978.191489,155271.8085,73277,68787.46809,77766.53192,,,,,,0.303797468,1560,5135,,,74.19190252,,,,,0.225173797,,74800,,,4.444444444,10,2250,,,4.590984975,11,239600,2.291803158,8.214540281,,,,,,,,,,,,,4.794365313,2.39332989,8.578443886,,,,16.90390462,27,170843,11.04219172,24.76813683,15.80398378,,,,,,,,,,,,,17.68267949,11.44329783,26.10312315,,,,11.70665465,20,170843,7.150728789,18.07997864,,,,,,,,,,,,,12.24994794,7.482586445,18.91905106,,,,14.1903172,34,239600,9.827207172,19.82954595,,,,,,,,,,,,,14.38309594,9.900661436,20.19921428,,,,25.83333333,,3600,,,93,,0.740485909,19049,25725,,,0.759,,,,,73.8036501,,,,,0.778053625,10969,14098,0.760843473,0.795263776,0.06667153,914,13709,0.05084943,0.082493629,0.879841112,12404,14098,0.862485165,0.897197059,34325,,,,,0.236591406,8121,34325,,,0.188987618,6487,34325,,,0.006059723,208,34325,,,0.002621996,90,34325,,,0.008215586,282,34325,,,0.000291333,10,34325,,,0.023423161,804,34325,,,0.952891479,32708,34325,,,0.010639614,344,32332,0.005266365,0.016012863,0.496285506,17035,34325,,,0.596457829,20678,34668,, -17,051,17051,IL,Fayette County,2024,1,7150.00121,312,58393,5853.915338,8446.087081,0,,,,2,,,,2,,,,2,,,,2,7730.086303,6294.300432,9165.872174,,,,,2,,0.179,,,0.151,0.21,4.042095954,,,3.176306069,5.018819645,5.108894933,,,4.038450201,6.288851769,0.066707095,110,1649,0.054663927,0.078750263,0,,,,,,,,,,,,,0.066583696,0.054394649,0.078772744,,,,,,,0.214,,,0.173,0.258,0.393,,,0.313,0.478,6.4,0.184199761,0.121,,,0.31,,,0.256,0.367,0.442572599,9510,21488,,,0.169557818,,,0.134659537,0.208066019,0.46875,15,32,0.383561551,0.547659523,238.5,51,21384,,,32.32173699,131,4053,26.78676897,37.856705,,,,,,,,,,,,,33.05129561,27.25714802,38.8454432,,,,,,,0.080141799,1266,15797,0.068226906,0.092056693,0.000187056,4,21384,,,5346,0.000469373,10,21305,,,2130.5,0.000985684,21,21305,,,1014.52381,4410,,,,,,,,,4426,0.45,,,,,,,,,0.45,0.39,,,,,,,,,0.38,0.86604853,13170,15207,0.843101006,0.888996055,0.48212248,2535,5258,0.421000711,0.543244249,0.04298853,416,9677,,,0.168,693,,0.104851064,0.231148936,,,,,,,,,,0.213483146,0,0.675625206,0.206010789,0.14931442,0.262707157,4.736873357,111686,23578,4.197566154,5.276180559,0.235049642,1018,4331,0.159840133,0.310259151,15.89973812,34,21384,,,72.77205553,78,107184,57.52329005,90.82281875,,,,,,,,,,,,,78.162273,61.68444353,97.68943033,,,,8.8,,,,,0,,,,,0.106691919,845,7920,0.083612238,0.1297716,0.084580351,0.063651484,0.105509219,0.017045455,0.006877804,0.027213105,0.008080808,0,0.018310927,0.817578213,7265,8886,0.78763057,0.847525856,,,,,,,,,,,,,0.826643489,0.782677513,0.870609466,0.308,,8886,0.263562079,0.352437921,78.02491492,,,76.82233603,79.22749382,,,,,,,,,,,,,77.46877568,76.20584552,78.73170584,,,,382.0458246,312,58393,337.7116694,426.3799798,,,,,,,,,,,,,401.2461405,353.8081322,448.6841487,,,,50.88540607,10,19652,24.4015301,93.58007349,,,,,,,,,,,,,54.70459519,26.23297974,100.6036983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.128,,,0.109,0.148,0.175,,,0.151,0.2,0.104,,,0.088,0.121,71.2,13,18265,,,0.121,2610,,,,0.184199761,4078.182712,22140,,,,,,,,,,,,,,,,,,,,,,,,,,0.333,,,0.317,0.35,0.095221394,1086,11405,0.079732032,0.110710756,0.042018627,194,4617,0.028912244,0.05512501,0.000750997,16,21305,,,1331.5625,,,,,,,,,,,2.897086111,,,,,,,,,2.907345671,2.837061524,,,,,,,,,2.814644927,0.067069813,,,,,-515.403175,,,,,0.722725296,36554,50578,0.669781311,0.775669281,57729,,,50553.85106,64904.14894,,,,,,,,,,,,,52022,47774.34043,56269.65957,,,,,,0.534818942,1536,2872,,,,,,,,0.291759774,,57729,,,5.559968229,7,1259,,,,,,,,,,,,,,,,,,,,,,,,,,16.62999599,19,107184,9.855989575,26.28256328,17.72652635,,,,,,,,,,,,,17.14723071,9.80112393,27.8460284,,,,10.26272578,11,107184,5.123115733,18.36285128,,,,,,,,,,,,,11.166039,5.574046438,19.97912815,,,,21.85198919,33,151016,15.04190389,30.68831731,,,,,,,,,,,,,23.79167147,16.37709192,33.4123524,,,,14,,2000,,,28,,0.596618214,10056,16855,,,0.615,,,,,28.58947838,,,,,0.796561605,6116,7678,0.77777464,0.81534857,0.077512896,556,7173,0.055880049,0.099145742,0.800468872,6146,7678,0.772014896,0.828922848,21305,,,,,0.19929594,4246,21305,,,0.191926778,4089,21305,,,0.068059141,1450,21305,,,0.003754987,80,21305,,,0.004224361,90,21305,,,0.000328561,7,21305,,,0.024031917,512,21305,,,0.891668622,18997,21305,,,0.009679012,196,20250,0.001481856,0.017876168,0.447876085,9542,21305,,,0.622580045,13378,21488,, -17,053,17053,IL,Ford County,2024,1,8219.314105,224,35777,6497.598586,9941.029624,0,,,,2,,,,2,,,,2,,,,2,8084.428236,6290.958998,9877.897473,,,,,2,,0.153,,,0.129,0.183,3.731148198,,,2.923258127,4.659635508,4.975753034,,,3.898594959,6.183924616,0.069033531,70,1014,0.053429595,0.084637466,0,,,,,,,,,,,,,0.069716776,0.053242324,0.086191227,,,,,,,0.182,,,0.145,0.224,0.37,,,0.288,0.46,8,0.077705396,0.099,,,0.282,,,0.233,0.339,0.690631003,9347,13534,,,0.169679505,,,0.134111733,0.210536114,0.15,3,20,0.050642257,0.283837277,244.2,33,13511,,,18.86168101,57,3022,14.285653,24.4374955,,,,,,,,,,,,,17.00554529,12.45019645,22.68301431,,,,,,,0.072420819,782,10798,0.061697414,0.083144223,0.000518096,7,13511,,,1930.142857,0.000377387,5,13249,,,2649.8,0.004981508,66,13249,,,200.7424242,3905,,,,,,,,,3949,0.46,,,,,,,,,0.46,0.27,,,,,,,,,0.28,0.917318196,8565,9337,0.902063372,0.932573021,0.60555733,1896,3131,0.523467257,0.687647402,0.040082383,253,6312,,,0.166,497,,0.115957447,0.216042553,,,,,,,,,,0.080808081,0,0.248937723,0.146454863,0.107525553,0.185384172,4.351010503,109367,25136,3.617302908,5.084718098,0.217998701,671,3078,0.148127538,0.287869863,15.54289098,21,13511,,,80.34563784,53,65965,60.18439617,105.0940725,,,,,,,,,,,,,78.28171633,57.71875797,103.7901988,,,,9,,,,,0,,,,,0.10472103,610,5825,0.081117123,0.128324938,0.090406223,0.066213464,0.114598982,0.005665236,0,0.01470799,0.012017167,0.002031373,0.022002962,0.785421269,4978,6338,0.752812166,0.818030371,,,,,,,,,,,,,0.778949503,0.7246484,0.833250606,0.37,,6338,0.306403035,0.433596966,75.10194041,,,73.75773868,76.44614213,,,,,,,,,,,,,75.10442464,73.70839568,76.5004536,,,,449.945922,224,35777,387.8742873,512.0175567,,,,,,,,,,,,,448.3996812,385.0169963,511.7823661,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.115,,,0.099,0.135,0.166,,,0.144,0.192,0.093,,,0.079,0.109,52.8,6,11363,,,0.099,1340,,,,0.077705396,1094.16968,14081,,,,,,,,,,,,,,,,,,,,,,,,,,0.332,,,0.313,0.35,0.08658964,667,7703,0.072291768,0.100887513,0.037904468,123,3245,0.024798085,0.051010851,0.001358593,18,13249,,,736.0555556,,,,,,,,,,,3.191869981,,,,,,,,,3.199887724,3.179170529,,,,,,,,,3.214515405,0.012443834,,,,,6182.747,,,,,0.820401761,46027,56103,0.714857688,0.925945835,67135,,,57273.04255,76996.95745,,,,,,,,,,64531,12157.89362,116904.1064,58900,54373.53192,63426.46809,,,,,,0.457705193,1093,2388,,,,,,,,0.25088255,,67135,,,5.161290323,4,775,,,,,,,,,,,,,,,,,,,,,,,,,,14.15993821,10,65965,6.474825421,26.87997347,15.15955431,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.86504567,12,93276,6.64755683,22.47264575,,,,,,,,,,,,,12.63598038,6.307835878,22.60925932,,,,,,1400,,,-888,,0.688415842,6953,10100,,,0.709,,,,,7.553961942,,,,,0.762699947,4339,5689,0.731974862,0.793425033,0.1041403,576,5531,0.071146903,0.137133698,0.841975743,4790,5689,0.81036256,0.873588926,13249,,,,,0.229753189,3044,13249,,,0.193976904,2570,13249,,,0.011925428,158,13249,,,0.005962714,79,13249,,,0.005736282,76,13249,,,0.000830251,11,13249,,,0.04868292,645,13249,,,0.913351951,12101,13249,,,0.004874214,62,12720,0,0.014158464,0.50086799,6636,13249,,,0.6654352,9006,13534,, -17,055,17055,IL,Franklin County,2024,1,11344.56719,843,103446,10080.93723,12608.19715,0,,,,2,,,,2,,,,2,,,,2,11501.55187,10202.56023,12800.54351,,,,,2,,0.174,,,0.144,0.207,4.123924331,,,3.208215278,5.063897478,5.294974269,,,4.143545457,6.451431625,0.091453276,275,3007,0.081150301,0.10175625,0,,,,,,,,,,,,,0.091158328,0.080714596,0.10160206,,,,,,,0.208,,,0.163,0.252,0.395,,,0.307,0.476,7,0.080329585,0.142,,,0.303,,,0.246,0.357,0.722119352,27299,37804,,,0.160527473,,,0.124738602,0.197094378,0.15,6,40,0.077052389,0.239761308,384.6,144,37442,,,33.98248595,260,7651,29.8517775,38.1131944,,,,,,,,,,,,,35.63411897,31.25178735,40.01645059,,,,,,,0.081150505,2401,29587,0.069235612,0.093065399,0.000347204,13,37442,,,2880.153846,0.000349068,13,37242,,,2864.769231,0.007196176,268,37242,,,138.9626866,3693,,,,,,,,,3659,0.42,,,,,,,,,0.42,0.35,,,,,,,,,0.35,0.899445527,24008,26692,0.884777427,0.914113627,0.602010166,5211,8656,0.549037358,0.654982975,0.051537927,816,15833,,,0.289,2267,,0.222276596,0.355723404,,,,,,,0.72,0.299724696,1,0.502242153,0.263107017,0.741377288,0.232730155,0.188265166,0.277195143,5.12893257,101240,19739,4.58340286,5.67446228,0.203834632,1701,8345,0.15856294,0.249106323,13.62106725,51,37442,,,103.2793812,198,191713,88.89347897,117.6652834,,,,,,,,,,,,,105.9148532,91.01053633,120.8191701,,,,8.8,,,,,0,,,,,0.138228942,2240,16205,0.117127566,0.159330318,0.110526316,0.089470709,0.131581923,0.019315026,0.010950885,0.027679168,0.015427337,0.008482372,0.022372303,0.825132378,12778,15486,0.804068374,0.846196381,,,,,,,,,,,,,0.792474227,0.771728907,0.813219546,0.424,,15486,0.387411381,0.460588619,73.30518519,,,72.38805681,74.22231357,,,,,,,,,,,,,73.0909188,72.15773849,74.02409912,,,,566.9598996,843,103446,526.3051934,607.6146057,,,,,,,,,,,,,575.6672093,533.9065715,617.4278472,,,,73.41145763,27,36779,48.37861315,106.8098166,,,,,,,,,,,,,73.14218841,47.33376784,107.9722987,,,,7.076230299,22,3109,4.434635855,10.71349771,,,,,,,,,,,,,6.976744186,4.318714613,10.6646946,,,,,,,0.128,,,0.109,0.148,0.18,,,0.154,0.206,0.104,,,0.087,0.121,75.9,24,31625,,,0.142,5400,,,,0.080329585,3177.918719,39561,,,29.83215028,34,113971,20.6596313,41.68743987,,,,,,,,,,,,,31.25804435,21.64710439,43.67998391,,,,0.344,,,0.325,0.362,0.097871745,2097,21426,0.082382383,0.113361106,0.038215076,328,8583,0.026300183,0.05012997,0.000939799,35,37242,,,1064.057143,,,,,,0.14615829,253,1731,0.080125098,0.212191482,2.942274134,,,,,,,,,2.939645788,2.636513147,,,,,,,,,2.624074073,0.056494451,,,,,1286.00825,,,,,0.758787879,40690,53625,0.703662972,0.813912785,49108,,,44504.08511,53711.91489,,,,,,,11510,8817.234043,14202.76596,19875,3655.255319,36094.74468,51935,48473.7234,55396.2766,,,,,,0.549822695,3101,5640,,,,,,,,0.342978741,,49108,,,4.028648165,9,2234,,,,,,,,,,,,,,,,,,,,,,,,,,21.62300074,41,191713,15.22458802,29.80445822,21.38613448,,,,,,,,,,,,,22.62020862,15.92671439,31.17897792,,,,11.4754868,22,191713,7.191626479,17.37402492,,,,,,,,,,,,,11.46500988,7.097021819,17.52548548,,,,23.3027808,63,270354,17.90649659,29.8143794,,,,,,,,,,,,,22.81348238,17.3666798,29.42773012,,,,20,,3800,,,76,,0.621384487,18626,29975,,,0.664,,,,,43.6582355,,,,,0.75073004,12083,16095,0.729123952,0.772336129,0.122188808,1869,15296,0.099581891,0.144795724,0.821497359,13222,16095,0.799904324,0.843090395,37242,,,,,0.215724182,8034,37242,,,0.212018689,7896,37242,,,0.007437839,277,37242,,,0.004269373,159,37242,,,0.004054562,151,37242,,,0.000214811,8,37242,,,0.021454272,799,37242,,,0.950244348,35389,37242,,,0.001206239,43,35648,0,0.004497925,0.500510177,18640,37242,,,0.591947942,22378,37804,, -17,057,17057,IL,Fulton County,2024,1,8709.658339,636,91846,7508.229165,9911.087513,0,,,,2,,,,2,,,,2,,,,2,9145.158743,7860.16049,10430.157,,,,,2,,0.165,,,0.136,0.196,3.809959867,,,3.037070307,4.637893205,4.935186333,,,3.796780981,6.071001675,0.079271071,174,2195,0.067968895,0.090573247,0,,,,,,,,,,,,,0.077322018,0.065954585,0.088689451,,,,,,,0.192,,,0.151,0.234,0.375,,,0.286,0.454,8.1,0.045239851,0.106,,,0.289,,,0.232,0.343,0.609390342,20481,33609,,,0.165774991,,,0.128320354,0.201837663,0.393939394,13,33,0.304721321,0.4796795,225.9,75,33197,,,26.10190685,167,6398,22.14304751,30.06076618,,,,,,,,,,,,,26.29837909,22.21060873,30.38614946,,,,,,,0.063490743,1526,24035,0.053958828,0.073022658,0.000361478,12,33197,,,2766.416667,0.00024227,8,33021,,,4127.625,0.000757094,25,33021,,,1320.84,3577,,,,,,,,,3607,0.43,,,,,,,,,0.43,0.37,,,,,,,,,0.37,0.899297041,22004,24468,0.887399616,0.911194467,0.554499519,4609,8312,0.50357443,0.605424608,0.048358413,707,14620,,,0.164,1038,,0.104425532,0.223574468,,,,,,,,,,0.388157895,0.19243414,0.58388165,0.179252977,0.13686025,0.221645704,4.094732263,112945,27583,3.655273935,4.53419059,0.179360812,1201,6696,0.133817303,0.224904322,15.36283399,51,33197,,,77.69553864,133,171181,64.49090572,90.90017156,,,,,,,,,,,,,83.10373264,68.81792079,97.38954448,,,,8.6,,,,,1,,,,,0.085643213,1205,14070,0.071178176,0.100108249,0.070888809,0.057070999,0.084706619,0.006396589,0.002424613,0.010368564,0.011727079,0.005068538,0.01838562,0.840858104,11994,14264,0.817176642,0.864539567,,,,,,,,,,,,,0.830760928,0.796241562,0.865280295,0.378,,14264,0.332069669,0.423930331,75.31357724,,,74.38692695,76.24022752,,,,,,,,,,,,,74.85874234,73.88983694,75.82764775,,,,462.0556977,636,91846,423.9827474,500.128648,,,,,,,,,,,,,479.9098593,439.4811611,520.3385574,,,,58.1574356,17,29231,33.87884941,93.11568819,,,,,,,,,,,,,54.97929113,30.77149189,90.67997974,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.119,,,0.1,0.139,0.167,,,0.142,0.191,0.1,,,0.083,0.117,152.7,44,28813,,,0.106,3600,,,,0.045239851,1676.996035,37069,,,9.87878728,10,101227,4.737262485,18.16744153,,,,,,,,,,,,,10.82989484,5.19335553,19.9165622,,,,0.338,,,0.321,0.355,0.076019428,1346,17706,0.064104535,0.087934322,0.030007502,200,6665,0.020475587,0.039539417,0.000817662,27,33021,,,1223,,,,,,0.141604855,210,1483,0.084148075,0.199061635,2.823062199,,,,,,,,,2.832161846,2.847267197,,,,,,,,,2.850198796,0.055770675,,,,,2728.668683,,,,,0.726091208,40839,56245,0.659567573,0.792614843,57362,,,52121.82979,62602.17021,,,,41397,40614.19149,42179.80851,,,,58750,14490.93617,103009.0638,57402,54202.85106,60601.14894,,,,,,0.486654395,2115,4346,,,,,,,,0.293626443,,57362,,,5.325443787,9,1690,,,,,,,,,,,,,,,,,,,,,,,,,,12.1814699,22,171181,7.440758283,18.81329229,12.85189361,,,,,,,,,,,,,13.07179198,7.870072677,20.4132224,,,,9.346831716,16,171181,5.342521923,15.17866913,,,,,,,,,,,,,10.22815171,5.846272448,16.60987758,,,,16.91307505,41,242416,12.13711466,22.94449606,,,,,,,,,,,,,18.02094033,12.87442398,24.53940592,,,,2.258064516,,3100,,,7,,0.603400868,16678,27640,,,0.692,,,,,36.57141895,,,,,0.778359011,10862,13955,0.758519035,0.798198987,0.076355231,1024,13411,0.059660133,0.093050329,0.844571838,11786,13955,0.823384768,0.865758908,33021,,,,,0.195754217,6464,33021,,,0.212622271,7021,33021,,,0.036037673,1190,33021,,,0.006722995,222,33021,,,0.003149511,104,33021,,,0.000272554,9,33021,,,0.029375246,970,33021,,,0.918021865,30314,33021,,,0.000968992,31,31992,0,0.004280511,0.477484025,15767,33021,,,0.607932399,20432,33609,, -17,059,17059,IL,Gallatin County,2024,1,12985.90278,114,12956,9080.45902,16891.34655,0,,,,2,,,,2,,,,2,,,,2,13556.14291,9436.999346,17675.28647,,,,,2,,0.172,,,0.142,0.204,4.059997387,,,3.204484287,5.067213408,5.282352169,,,4.199900774,6.56968776,0.079113924,25,316,0.049353306,0.108874542,0,,,,,,,,,,,,,0.074074074,0.044288973,0.103859176,,,,,,,0.21,,,0.167,0.259,0.38,,,0.298,0.471,4.9,0.298704639,0.132,,,0.304,,,0.248,0.366,0.358471492,1773,4946,,,0.157708592,,,0.124535331,0.197563958,0.428571429,3,7,0.219826693,0.607881191,244.7,12,4903,,,28.45100105,27,949,18.74938897,41.3947128,,,,,,,,,,,,,27.18006795,17.4147824,40.44178663,,,,,,,0.081189711,303,3732,0.068083328,0.094296094,,0,4903,,,,,0,4855,,,,0.000205973,1,4855,,,4855,4913,,,,,,,,,4936,0.41,,,,,,,,,0.41,0.27,,,,,,,,,0.27,0.872415669,3207,3676,0.837653879,0.907177459,0.598880597,642,1072,0.475334312,0.722426882,0.050474763,101,2001,,,0.264,242,,0.16987234,0.35812766,,,,,,,,,,,,,0.249448124,0.171609988,0.327286259,5.881740094,106136,18045,3.55738715,8.206093039,0.329113924,312,948,0.23480105,0.423426798,12.23740567,6,4903,,,81.09642365,20,24662,49.53580239,125.246849,,,,,,,,,,,,,80.77201037,48.63002663,126.1354996,,,,8.5,,,,,0,,,,,0.079120879,180,2275,0.049779818,0.10846194,0.070135747,0.035413161,0.104858332,0.010549451,0,0.022455787,0.003516484,0.000559889,0.006473078,0.904532305,1876,2074,0.874996293,0.934068316,,,,,,,,,,,,,0.903518729,0.797701386,1,0.372,,2074,0.286303831,0.457696169,72.52089728,,,69.86348016,75.1783144,,,,,,,,,,,,,72.10649812,69.35416799,74.85882825,,,,595.6856844,114,12956,476.0329371,715.3384317,,,,,,,,,,,,,610.9209347,486.5444628,735.2974065,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.127,,,0.108,0.148,0.179,,,0.154,0.208,0.1,,,0.084,0.119,,,,,,0.132,670,,,,0.298704639,1669.460227,5589,,,,,,,,,,,,,,,,,,,,,,,,,,0.338,,,0.322,0.355,0.094428365,261,2764,0.077747514,0.111109216,0.044834308,46,1026,0.029344946,0.06032367,0.000411946,2,4855,,,2427.5,,,,,,,,,,,2.534905971,,,,,,,,,2.468817478,2.674019962,,,,,,,,,2.727613686,,,,,,-2449.934,,,,,0.591919335,33344,56332,0.497629159,0.686209512,51367,,,43733.12766,59000.87234,,,,,,,,,,,,,51214,44642.93617,57785.06383,,,,,,0.535172414,388,725,,,,,,,,0.327895341,,51367,,,,,240,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,500,,,-888,,0.680407125,2674,3930,,,0.599,,,,,5.302970126,,,,,0.767053364,1653,2155,0.712887767,0.821218962,0.053132832,106,1995,0.018436935,0.087828729,0.746635731,1609,2155,0.69196872,0.801302742,4855,,,,,0.197322348,958,4855,,,0.243666323,1183,4855,,,0.008650875,42,4855,,,0.00576725,28,4855,,,0.003089598,15,4855,,,0.000823893,4,4855,,,0.022451081,109,4855,,,0.934088569,4535,4855,,,0.001053963,5,4744,0,0.012898358,0.510607621,2479,4855,,,1,4946,4946,, -17,061,17061,IL,Greene County,2024,1,9009.774318,236,34237,6983.210453,11036.33818,0,,,,2,,,,2,,,,2,,,,2,9338.77667,7224.255619,11453.29772,,,,,2,,0.162,,,0.135,0.194,3.865224552,,,3.019682554,4.843504874,5.144490906,,,4.031801477,6.394014248,0.082080925,71,865,0.063788498,0.100373352,0,,,,,,,,,,,,,0.080473373,0.062131825,0.09881492,,,,,,,0.198,,,0.157,0.245,0.373,,,0.292,0.466,8.6,0.006320852,0.103,,,0.293,,,0.239,0.356,0.484939508,5812,11985,,,0.167466578,,,0.131794189,0.209246123,0.222222222,2,9,0.058854756,0.422872156,295.5,35,11843,,,18.28082458,47,2571,13.4320623,24.30962129,,,,,,,,,,,,,17.60130987,12.73815522,23.70884888,,,,,,,0.0646686,602,9309,0.055136685,0.074200515,0.000168876,2,11843,,,5921.5,0.000343318,4,11651,,,2912.75,,0,11651,,,,3086,,,,,,,,,3095,0.41,,,,,,,,,0.41,0.37,,,,,,,,,0.37,0.903882353,7683,8500,0.88584385,0.921920856,0.524529694,1422,2711,0.444162764,0.604896624,0.041009998,242,5901,,,0.175,424,,0.114234043,0.235765957,,,,,,,,,,0.430769231,0.023340523,0.838197939,0.183505155,0.130574978,0.236435332,4.67090525,117179,25087,4.02504001,5.316770489,0.242907112,625,2573,0.164037399,0.321776826,15.19885164,18,11843,,,109.8349338,70,63732,85.62171924,138.7698312,,,,,,,,,,,,,111.0077216,86.20183939,140.7287382,,,,8.2,,,,,0,,,,,0.059177533,295,4985,0.043087353,0.075267712,0.049377593,0.031072691,0.067682496,0.006018054,0,0.015321312,0.006018054,0.000604348,0.01143176,0.782999816,4265,5447,0.753672719,0.812326914,,,,,,,,,,,,,0.765936581,0.756934433,0.774938729,0.444,,5447,0.382444841,0.505555159,75.27924821,,,73.72936703,76.82912939,,,,,,,,,,,,,74.92169035,73.33737202,76.50600867,,,,467.9312318,236,34237,404.470385,531.3920785,,,,,,,,,,,,,480.2271997,414.6317894,545.82261,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.12,,,0.102,0.141,0.172,,,0.146,0.201,0.096,,,0.081,0.114,,,,,,0.103,1250,,,,0.006320852,87.77135601,13886,,,26.65671483,10,37514,12.7829309,49.02264766,,,,,,,,,,,,,27.74925771,13.30684767,51.03187291,,,,0.332,,,0.314,0.349,0.077308202,525,6791,0.064201819,0.090414585,0.03250189,86,2646,0.021778485,0.043225294,0.001029955,12,11651,,,970.9166667,,,,,,,,,,,3.029651462,,,,,,,,,3.08205224,2.88155855,,,,,,,,,2.937047428,0.057802859,,,,,1055.168267,,,,,0.633339869,35531,56101,0.559653427,0.707026311,58196,,,52002.6383,64389.3617,68250,47692.04255,88807.95745,,,,,,,50500,29320.08511,71679.91489,58988,55842.46809,62133.53192,,,,,,0.456866805,662,1449,,,,,,,,0.289418517,,58196,,,3.184713376,2,628,,,,,,,,,,,,,,,,,,,,,,,,,,23.72101231,15,63732,12.96849817,39.79982799,23.53605724,,,,,,,,,,,,,22.71873106,12.09676747,38.84972202,,,,17.25977531,11,63732,8.616017648,30.88250567,,,,,,,,,,,,,17.95713143,8.964135311,32.1302684,,,,18.87504719,17,90066,10.99541055,30.220779,,,,,,,,,,,,,19.60128677,11.41847187,31.38355892,,,,16.15384615,,1300,,,21,,0.607808687,6227,10245,,,0.595,,,,,23.92383286,,,,,0.76931543,3495,4543,0.74005136,0.798579501,0.071293673,302,4236,0.043738593,0.098848754,0.813559322,3696,4543,0.782029298,0.845089346,11651,,,,,0.21199897,2470,11651,,,0.209767402,2444,11651,,,0.007295511,85,11651,,,0.003347352,39,11651,,,0.002489057,29,11651,,,0.000171659,2,11651,,,0.013389409,156,11651,,,0.966440649,11260,11651,,,0.000087727,1,11399,0,0.007790788,0.498755472,5811,11651,,,1,11985,11985,, -17,063,17063,IL,Grundy County,2024,1,7619.268228,677,145867,6760.317007,8478.219448,0,,,,2,,,,2,,,,2,5053.722445,3086.944961,7805.064435,1,7966.193553,7014.354202,8918.032904,,,,,2,,0.131,,,0.109,0.156,3.333795863,,,2.560582912,4.211340039,4.647402031,,,3.618899632,5.731198296,0.072786393,291,3998,0.064733542,0.080839244,0,,,,,,,0.14953271,0.081961594,0.217103826,0.083665339,0.05944367,0.107887007,0.068133856,0.059558709,0.076709003,,,,,,,0.149,,,0.115,0.185,0.348,,,0.27,0.43,8.9,0.055315365,0.066,,,0.248,,,0.201,0.302,0.776292997,40781,52533,,,0.19265229,,,0.153911162,0.236573962,0.3,15,50,0.226223878,0.37531374,201.9,107,52989,,,10.22717747,122,11929,8.412364189,12.04199075,,,,,,,,,,11.40487299,7.147373184,17.26711477,9.738541336,7.850638802,11.94345644,,,,,,,0.04950824,2235,45144,0.042359304,0.056657177,0.000320821,17,52989,,,3117,0.000358214,19,53041,,,2791.631579,0.001715654,91,53041,,,582.8681319,3314,,,,,,,,3353,3242,0.43,,,,,,,,0.37,0.43,0.47,,,,,,0.31,0.22,0.33,0.47,0.939833966,32944,35053,0.930370396,0.949297536,0.707048295,9560,13521,0.647887338,0.766209252,0.049109165,1301,26492,,,0.094,1179,,0.067787234,0.120212766,,,,,,,0.1,0,0.396369597,0.112315271,0.042497639,0.182132903,0.066839585,0.043045468,0.090633703,3.939934074,161360,40955,3.442639047,4.437229101,0.19724276,2561,12984,0.145978775,0.248506745,9.058483836,48,52989,,,74.43665869,191,256594,63.88000541,84.99331197,,,,,,,,,,37.03292227,17.75872568,68.10486258,81.87772926,69.91623025,93.83922826,,,,9.7,,,,,0,,,,,0.116841056,2345,20070,0.093989513,0.1396926,0.099299299,0.077770187,0.120828412,0.010413553,0.005345584,0.015481522,0.014200299,0.00667958,0.021721018,0.852057293,22427,26321,0.835521623,0.868592963,,,,,,,,,,0.759752926,0.683972698,0.835533154,0.816697608,0.789690614,0.843704603,0.429,,26321,0.388140426,0.469859574,76.6860546,,,75.94559554,77.42651366,,,,,,,,,,83.65417815,73.8614448,93.4469115,76.32791004,75.54053727,77.11528282,,,,383.4939633,677,145867,353.9828607,413.0050659,,,,,,,,,,290.0192219,191.1244947,421.9627412,398.5323732,366.5192893,430.545457,,,,42.67804748,24,56235,27.34463031,63.50155169,,,,,,,,,,,,,38.01176129,22.14325173,60.86051208,,,,5.410723069,22,4066,3.390871341,8.191899751,,,,,,,,,,,,,,,,,,,,,,0.1,,,0.085,0.117,0.151,,,0.129,0.174,0.084,,,0.07,0.099,31.8,14,44043,,,0.066,3450,,,,0.055315365,2769.253113,50063,,,32.25057406,50,155036,23.93699769,42.51836133,,,,,,,,,,,,,37.07935739,27.43151272,49.02087688,,,,0.326,,,0.309,0.343,0.058429834,1877,32124,0.04889792,0.067961749,0.029039301,399,13740,0.020698876,0.037379727,0.000867254,46,53041,,,1153.065217,,,,,,,,,,,3.078490102,,,,,,,,2.716438363,3.14317691,2.997892207,,,,,,,,2.663170441,3.064270571,0.033809004,,,,,530.93791,,,,,0.653004958,49264,75442,0.591753522,0.714256393,93882,,,83897.31915,103866.6809,,,,,,,100893,34474.61702,167311.383,91088,71480.85106,110695.1489,89502,85317.48936,93686.51064,,,,,,0.23255814,2810,12083,,,36.21156183,,,,,0.179406063,,93882,,,3.544956494,11,3103,,,,,,,,,,,,,,,,,,,,,,,,,,16.79816866,44,256594,12.15691795,22.62702295,17.14771195,,,,,,,,,,,,,18.43882038,13.17296361,25.10843995,,,,7.404693796,19,256594,4.458109373,11.5633466,,,,,,,,,,,,,8.642649199,5.203439394,13.49656731,,,,12.86454197,46,357572,9.418461571,17.15949619,,,,,,,,,,,,,13.32609607,9.563036617,18.07835405,,,,6.229508197,,6100,,,38,,0.7175,26691,37200,,,0.756,,,,,65.47538997,,,,,0.757754221,15440,20376,0.733411383,0.782097058,0.111209877,2252,20250,0.088345529,0.134074225,0.892471535,18185,20376,0.876334652,0.908608418,53041,,,,,0.239833337,12721,53041,,,0.153013706,8116,53041,,,0.022435474,1190,53041,,,0.003959201,210,53041,,,0.009841443,522,53041,,,0.001150054,61,53041,,,0.117701401,6243,53041,,,0.835994797,44342,53041,,,0.004954982,246,49647,0.001115867,0.008794098,0.496446145,26332,53041,,,0.250280776,13148,52533,, -17,065,17065,IL,Hamilton County,2024,1,7243.651584,142,21667,5232.682987,9254.620182,0,,,,2,,,,2,,,,2,,,,2,7375.287347,5284.820979,9465.753715,,,,,2,,0.16,,,0.133,0.193,3.902277049,,,3.018159223,4.904926544,5.139067988,,,4.031951429,6.374919666,0.089655172,52,580,0.06640465,0.112905695,0,,,,,,,,,,,,,0.088339223,0.064959397,0.111719049,,,,,,,0.196,,,0.153,0.242,0.372,,,0.287,0.457,8.2,0.033775297,0.107,,,0.289,,,0.231,0.35,0.478293507,3823,7993,,,0.161990813,,,0.128153914,0.20261461,0,0,3,0,0.420755624,164.3,13,7911,,,17.45936183,29,1661,11.69280863,25.07455595,,,,,,,,,,,,,18.54219949,12.41800201,26.62969146,,,,,,,0.07067596,436,6169,0.059952556,0.081399365,0.000379219,3,7911,,,2637,0.000125251,1,7984,,,7984,0.000250501,2,7984,,,3992,4387,,,,,,,,,4314,0.41,,,,,,,,,0.41,0.31,,,,,,,,,0.31,0.863285363,4919,5698,0.819652273,0.906918454,0.605376344,1126,1860,0.470297384,0.740455304,0.034178098,147,4301,,,0.185,329,,0.118276596,0.251723404,,,,,,,,,,,,,0.193508879,0.118025659,0.2689921,4.861117158,111655,22969,3.946643896,5.77559042,0.175128351,307,1753,0.080259621,0.269997081,29.07344204,23,7911,,,56.83503015,23,40468,36.02853375,85.28045096,,,,,,,,,,,,,59.35637049,37.62684724,89.06369944,,,,8.2,,,,,0,,,,,0.069836553,235,3365,0.034232428,0.105440678,0.049773756,0.021215886,0.078331625,0.014561664,0,0.037972734,0.014858841,0.001236219,0.028481463,0.8257786,2678,3243,0.800327577,0.851229623,,,,,,,,,,,,,0.762849873,0.702973041,0.822726705,0.451,,3243,0.357068613,0.544931387,77.20394049,,,75.459472,78.94840898,,,,,,,,,,,,,76.99536021,75.22341332,78.7673071,,,,426.3723488,142,21667,351.3932422,501.3514554,,,,,,,,,,,,,433.5122827,356.465393,510.5591724,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.12,,,0.101,0.14,0.173,,,0.147,0.201,0.096,,,0.081,0.114,0,0,6708,,,0.107,860,,,,0.033775297,285.6376892,8457,,,,,,,,,,,,,,,,,,,,,,,,,,0.326,,,0.307,0.345,0.084044944,374,4450,0.069747072,0.098342816,0.036975717,67,1812,0.025060824,0.048890611,0.001628257,13,7984,,,614.1538462,,,,,,,,,,,3.199331847,,,,,,,,,3.187459055,3.179003735,,,,,,,,,3.228701234,,,,,,-349.1143,,,,,0.72548729,39156,53972,0.479994677,0.970979903,56984,,,48785.3617,65182.6383,,,,,,,,,,,,,60906,53771.3617,68040.6383,,,,,,0.525021949,598,1139,,,,,,,,0.295574196,,56984,,,6.772009029,3,443,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.5,,800,,,6,,0.679527559,4315,6350,,,0.609,,,,,0.518916231,,,,,0.771323754,2523,3271,0.727941195,0.814706314,0.055045872,174,3161,0.023420522,0.086671221,0.76979517,2518,3271,0.721100352,0.818489987,7984,,,,,0.225826653,1803,7984,,,0.221568136,1769,7984,,,0.007014028,56,7984,,,0.005511022,44,7984,,,0.006888778,55,7984,,,0.000125251,1,7984,,,0.020791583,166,7984,,,0.950275551,7587,7984,,,0.001190319,9,7561,0,0.011788325,0.502254509,4010,7984,,,1,7993,7993,, -17,067,17067,IL,Hancock County,2024,1,7241.601432,277,47009,5771.445172,8711.757692,0,,,,2,,,,2,,,,2,,,,2,7471.955413,5926.516341,9017.394484,,,,,2,,0.144,,,0.117,0.174,3.598264038,,,2.780664133,4.508349517,4.818073758,,,3.79775314,5.956704172,0.071029529,89,1253,0.05680621,0.085252848,0,,,,,,,,,,,,,0.073170732,0.058368278,0.087973186,,,,,,,0.174,,,0.132,0.219,0.371,,,0.291,0.456,7.3,0.14116469,0.098,,,0.263,,,0.208,0.319,0.557037457,9815,17620,,,0.162477207,,,0.128332195,0.198911747,0.461538462,6,13,0.318103058,0.587460254,287.4,50,17400,,,21.56805596,74,3431,16.93556288,27.07671918,,,,,,,,,,,,,21.35798534,16.55214527,27.1238864,,,,,,,0.06162826,813,13192,0.052096345,0.071160174,0.000287356,5,17400,,,3480,0.000347947,6,17244,,,2874,0.0019717,34,17244,,,507.1764706,3098,,,,,,,,,3120,0.45,,,,,,,,,0.45,0.4,,,,,,,,,0.4,0.944339176,11961,12666,0.931872312,0.956806039,0.697215464,2579,3699,0.617645254,0.776785673,0.03902133,311,7970,,,0.169,608,,0.115382979,0.222617021,,,,,,,,,,0.08988764,0,0.485669523,0.196764706,0.14436703,0.249162382,4.277526799,111729,26120,3.897772253,4.657281346,0.233542748,855,3661,0.165686179,0.301399317,20.11494253,35,17400,,,93.89777587,83,88394,74.78905435,116.4004206,,,,,,,,,,,,,95.55379915,75.8835093,118.7646477,,,,8.4,,,,,1,,,,,0.071618037,540,7540,0.049588844,0.09364723,0.045855615,0.030080011,0.061631219,0.01127321,0.003671742,0.018874677,0.015251989,0.000655822,0.029848157,0.834566075,6770,8112,0.822368116,0.846764034,,,,,,,,,,,,,0.760160881,0.721009503,0.799312258,0.4,,8112,0.350729358,0.449270642,78.00478739,,,76.73961344,79.26996134,,,,,,,,,,,,,77.78137471,76.47526494,79.08748448,,,,377.276471,277,47009,328.3421449,426.2107972,,,,,,,,,,,,,383.5628379,333.1571549,433.9685208,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.111,,,0.093,0.13,0.162,,,0.138,0.188,0.09,,,0.076,0.106,,,,,,0.098,1740,,,,0.14116469,2696.810231,19104,,,,,,,,,,,,,,,,,,,,,,,,,,0.33,,,0.311,0.348,0.07469272,711,9519,0.061586337,0.087799103,0.029350649,113,3850,0.019818735,0.038882564,0.000695894,12,17244,,,1437,,,,,,,,,,,3.312353706,,,,,,,,,3.280004813,3.038177188,,,,,,,,,2.999890619,0.073961356,,,,,624.36915,,,,,0.737918987,42665,57818,0.684974758,0.790863217,63324,,,57173.53192,69474.46809,,,,,,,,,,47875,18620.3617,77129.6383,61948,57270.21277,66625.78723,,,,,,0.441376838,1231,2789,,,,,,,,0.265981303,,63324,,,4.362050164,4,917,,,,,,,,,,,,,,,,,,,,,,,,,,14.22000013,12,88394,7.09857283,25.4435082,13.57558205,,,,,,,,,,,,,13.2579167,6.357686387,24.38178085,,,,,,,,,,,,,,,,,,,,,,,,,,,19.92905257,25,125445,12.89703204,29.41921296,,,,,,,,,,,,,20.74602714,13.42573491,30.62522858,,,,2.941176471,,1700,,,5,,0.667829182,9383,14050,,,0.644,,,,,12.67163531,,,,,0.81677763,6134,7510,0.788779964,0.844775296,0.070694616,516,7299,0.050314868,0.091074364,0.80918775,6077,7510,0.780364135,0.838011364,17244,,,,,0.21329158,3678,17244,,,0.24559267,4235,17244,,,0.009162607,158,17244,,,0.003943401,68,17244,,,0.003131524,54,17244,,,0.001101833,19,17244,,,0.021398747,369,17244,,,0.950127581,16384,17244,,,0.001856621,31,16697,0,0.007012313,0.4980283,8588,17244,,,0.840295119,14806,17620,, -17,069,17069,IL,Hardin County,2024,1,12435.35291,100,10023,8253.811718,16616.8941,0,,,,2,,,,2,,,,2,,,,2,13174.26095,8673.576053,17674.94585,,,,,2,,0.166,,,0.139,0.2,3.939255766,,,3.150741024,4.781023125,5.125142061,,,4.085506925,6.21251012,0.089285714,20,224,0.051942291,0.126629137,1,,,,,,,,,,,,,0.089622642,0.051171633,0.12807365,,,,,,,0.201,,,0.161,0.25,0.376,,,0.29,0.466,7.3,0.062019589,0.135,,,0.293,,,0.239,0.353,0.737736366,2692,3649,,,0.157088993,,,0.12330116,0.19555618,0.333333333,2,6,0.110000414,0.553214291,191.8,7,3650,,,26.08695652,18,690,15.46078374,41.22863807,,,,,,,,,,,,,29.22077922,17.31808568,46.18142901,,,,,,,0.073948949,197,2664,0.060842566,0.087055332,0.000821918,3,3650,,,1216.666667,0.00027801,1,3597,,,3597,0.000556019,2,3597,,,1798.5,3714,,,,,,,,,3759,0.4,,,,,,,,,0.4,0.22,,,,,,,,,0.22,0.873074347,2607,2986,0.83330724,0.912841454,0.56714472,435,767,0.40893465,0.72535479,0.0514246,74,1439,,,0.33,201,,0.207276596,0.452723404,,,,,,,,,,,,,0.163398693,0.084363481,0.242433905,3.675694939,92826,25254,1.999384836,5.352005043,0.22244489,111,499,0.10058783,0.34430195,10.95890411,4,3650,,,103.977125,20,19235,63.51192922,160.5842366,,,,,,,,,,,,,110.2657404,67.35317888,170.296493,,,,8.5,,,,,0,,,,,0.059405941,90,1515,0.023854183,0.094957699,0.029431438,0,0.061870644,0.012541254,0,0.031091851,0.01980198,0,0.049552073,0.804132231,973,1210,0.712811654,0.895452809,,,,,,,,,,,,,0.860576923,0.761433475,0.959720371,0.494,,1210,0.336182748,0.651817253,72.49099968,,,69.63620275,75.3457966,,,,,,,,,,,,,71.83017192,68.82004674,74.8402971,,,,597.9767412,100,10023,465.5480652,730.4054173,,,,,,,,,,,,,624.7506504,485.0897822,764.4115186,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.122,,,0.105,0.145,0.175,,,0.151,0.204,0.097,,,0.082,0.114,,,,,,0.135,500,,,,0.062019589,267.9246263,4320,,,,,,,,,,,,,,,,,,,,,,,,,,0.332,,,0.315,0.347,0.087702107,179,2041,0.072212745,0.103191469,0.031578947,21,665,0.020855543,0.042302352,0.001390047,5,3597,,,719.4,,,,,,,,,,,2.620068449,,,,,,,,,2.487091703,2.914364208,,,,,,,,,2.837026166,0.007104964,,,,,,,,,,0.87074589,46719,53654,0.374316968,1.367174812,46568,,,39657.3617,53478.6383,,,,,,,,,,120313,81248.82979,159377.1702,53125,40136.57447,66113.42553,,,,,,0.579365079,292,504,,,,,,,,0.361686136,,46568,,,9.174311927,1,109,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,300,,,0,,0.649249249,2162,3330,,,0.348,,,,,0.025253659,,,,,0.801351351,1186,1480,0.712974086,0.889728617,0.041339986,58,1403,0.000822556,0.081857416,0.760135135,1125,1480,0.67677758,0.84349269,3597,,,,,0.174033917,626,3597,,,0.273283292,983,3597,,,0.01028635,37,3597,,,0.008618293,31,3597,,,0.00500417,18,3597,,,0.001668057,6,3597,,,0.025854879,93,3597,,,0.930219628,3346,3597,,,0.002799552,10,3572,0,0.01942425,0.485126494,1745,3597,,,1,3649,3649,, -17,071,17071,IL,Henderson County,2024,1,9820.411613,130,17089,6518.865054,13121.95817,0,,,,2,,,,2,,,,2,,,,2,10264.6224,6776.183736,13753.06107,,,,,2,,0.141,,,0.117,0.17,3.512949766,,,2.804751571,4.349327685,4.826549495,,,3.834534227,5.953858864,0.068627451,28,408,0.044095243,0.093159659,0,,,,,,,,,,,,,0.069230769,0.04403693,0.094424609,,,,,,,0.175,,,0.137,0.218,0.354,,,0.274,0.443,9.1,0.004891578,0.083,,,0.264,,,0.213,0.324,0.118052294,754,6387,,,0.161042964,,,0.142209198,0.180204176,0.333333333,2,6,0.110000414,0.553214291,301,19,6312,,,15.4109589,18,1168,9.133510942,24.35595913,,,,,,,,,,,,,16.33045149,9.513089788,26.14663479,,,,,,,0.075431035,350,4640,0.063516141,0.087345928,0.000158428,1,6312,,,6312,0.001625752,10,6151,,,615.1,0.000650301,4,6151,,,1537.75,2343,,,,,,,,,2355,0.46,,,,,,,,,0.46,0.42,,,,,,,,,0.42,0.930008382,4438,4772,0.906937435,0.953079329,0.638382236,805,1261,0.531856759,0.744907714,0.040045442,141,3521,,,0.16,176,,0.102808511,0.217191489,,,,,,,,,,,,,0.157303371,0.086321508,0.228285233,4.205736755,119792,28483,3.54089298,4.87058053,0.130325815,156,1197,0.061552516,0.199099113,11.08998733,7,6312,,,133.3454557,44,32997,96.88901221,179.0100503,,,,,,,,,,,,,139.408149,101.2941745,187.1489332,,,,8.4,,,,,0,,,,,0.054455446,165,3030,0.032225969,0.076684922,0.035928144,0.013297663,0.058558625,0.012871287,0,0.030977585,0.00660066,0,0.019816436,0.87948895,2547,2896,0.845150839,0.913827062,,,,,,,,,,,,,0.811288964,0.747577874,0.875000053,0.379,,2896,0.313957339,0.444042661,76.26620923,,,73.65038935,78.88202911,,,,,,,,,,,,,75.84113481,73.13187371,78.55039591,,,,458.4831338,130,17089,369.2008894,547.7653782,,,,,,,,,,,,,472.6067371,379.4082971,565.8051771,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.108,,,0.091,0.128,0.162,,,0.138,0.189,0.086,,,0.072,0.103,,,,,,0.083,540,,,,0.004891578,35.86016045,7331,,,,,,,,,,,,,,,,,,,,,,,,,,0.316,,,0.298,0.333,0.087081892,302,3468,0.07159253,0.102571253,0.041598695,51,1226,0.028492312,0.054705078,0.000162575,1,6151,,,6151,,,,,,,,,,,2.626251932,,,,,,,,,2.636196758,2.39266817,,,,,,,,,2.320675055,0.019871163,,,,,,,,,,0.744319301,41568,55847,0.613071588,0.875567014,61892,,,54445.19149,69338.80851,,,,,,,,,,,,,66161,60295.29787,72026.70213,,,,,,0.548780488,405,738,,,,,,,,0.272135333,,61892,,,3.246753247,1,308,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,23.47367747,11,46861,11.71797522,42.0008931,,,,,,,,,,,,,24.49234058,12.22648817,43.82356278,,,,,,600,,,-888,,0.664904284,3647,5485,,,0.49,,,,,2.029347565,,,,,0.863023679,2369,2745,0.842869633,0.883177726,0.044161677,118,2672,0.018282874,0.070040479,0.82003643,2251,2745,0.77403569,0.86603717,6151,,,,,0.183059665,1126,6151,,,0.277190701,1705,6151,,,0.005202406,32,6151,,,0.003739229,23,6151,,,0.005852707,36,6151,,,0.000812876,5,6151,,,0.020321899,125,6151,,,0.949601691,5841,6151,,,0.001317523,8,6072,0,0.014385405,0.499593562,3073,6151,,,0.994676687,6353,6387,, -17,073,17073,IL,Henry County,2024,1,7305.737657,747,132898,6412.823256,8198.652057,0,,,,2,,,,2,,,,2,5691.66691,3185.582763,9387.539007,1,7431.077824,6465.504221,8396.651427,,,,,2,,0.14,,,0.116,0.167,3.496361448,,,2.641592525,4.368797634,4.852470812,,,3.73982361,5.93559716,0.07493465,258,3443,0.06614007,0.08372923,0,,,,,,,0.150442478,0.084525319,0.216359637,0.069686411,0.040228371,0.099144452,0.073105299,0.06376218,0.082448417,,,,,,,0.165,,,0.128,0.204,0.349,,,0.271,0.434,8.2,0.091630875,0.083,,,0.262,,,0.211,0.317,0.782322863,38556,49284,,,0.175008776,,,0.13842874,0.21480616,0.21875,7,32,0.128580322,0.319266194,312.8,153,48907,,,17.33444052,167,9634,14.70533713,19.96354391,,,,,,,82.35294118,45.02311927,138.1742419,18.72246696,10.90652695,29.97648328,16.39344262,13.61773424,19.16915101,,,,,,,0.057801807,2213,38286,0.049461382,0.066142233,0.000224917,11,48907,,,4446.090909,0.000351102,17,48419,,,2848.176471,0.000536979,26,48419,,,1862.269231,2178,,,,,,,,,2184,0.48,,,,,,,0.33,,0.49,0.46,,,,,,,0.2,0.19,0.46,0.924541851,32187,34814,0.912888087,0.936195615,0.635505777,7206,11339,0.585620032,0.685391521,0.042242217,1000,23673,,,0.12,1213,,0.072340426,0.167659575,,,,,,,0.262975779,0.084931012,0.441020545,0.167311412,0.052410415,0.282212409,0.103603085,0.062328507,0.144877663,4.253395421,131532,30924,3.681854667,4.824936175,0.249373317,2686,10771,0.197402351,0.301344284,13.90394013,68,48907,,,77.66228352,190,244649,66.61922364,88.70534339,,,,,,,,,,,,,82.58087935,70.58312735,94.57863135,,,,9.2,,,,,1,,,,,0.075768942,1515,19995,0.061447556,0.090090329,0.062622703,0.048654024,0.076591382,0.009252313,0.002831744,0.015672882,0.005751438,0.002586301,0.008916574,0.837863615,19327,23067,0.815131536,0.860595693,,,,,,,,,,0.713861386,0.563453192,0.864269581,0.797210225,0.762959292,0.831461157,0.346,,23067,0.312278536,0.379721465,77.7185674,,,76.94456265,78.49257214,,,,,,,,,,86.09722013,74.7045596,97.48988067,77.55410943,76.73855635,78.3696625,,,,379.8146169,747,132898,350.7872268,408.842007,,,,,,,,,,333.6120366,197.7196361,527.2508467,383.3368319,352.8517188,413.821945,,,,57.07279953,27,47308,37.61133451,83.03792687,,,,,,,,,,,,,55.69056298,34.90097932,84.31618162,,,,6.150405368,22,3577,3.854426299,9.31178764,,,,,,,,,,,,,6.428801029,3.926878684,9.928761782,,,,,,,0.106,,,0.09,0.124,0.158,,,0.134,0.182,0.087,,,0.073,0.102,48.1,20,41606,,,0.083,4120,,,,0.091630875,4626.07633,50486,,,16.41238862,24,146231,10.51572707,24.4203333,,,,,,,,,,,,,17.49594931,11.09093104,26.25251439,,,,0.343,,,0.325,0.36,0.069515628,1926,27706,0.057600735,0.081430522,0.02856373,318,11133,0.020223304,0.036904155,0.000660898,32,48419,,,1513.09375,,,,,,0.113268608,280,2472,0.052838854,0.173698363,2.843140745,,,,,,,2.166969068,2.71315407,2.883142959,2.875322783,,,,,,,2.225288123,2.746749943,2.913827399,0.119597093,,,,,3659.379444,,,,,0.733090606,45706,62347,0.672521021,0.793660191,70517,,,63903.04255,77130.95745,,,,129750,28541.31915,230958.6809,55104,45679.31915,64528.68085,67827,36127.42553,99526.57447,66954,62560.97872,71347.02128,,,,,,0.402123849,3143,7816,,,72.93502044,,,,,0.238850206,,70517,,,3.803727653,10,2629,,,,,,,,,,,,,,,,,,,,,,,,,,14.16696622,37,244649,9.811035939,19.7969153,15.12370784,,,,,,,,,,,,,15.01009879,10.26689646,21.18978089,,,,8.583726073,21,244649,5.313461729,13.12113711,,,,,,,,,,,,,9.074821907,5.543136978,14.01532642,,,,11.06523246,38,343418,7.830417056,15.18789607,,,,,,,,,,,,,10.64557338,7.327922879,14.950343,,,,1.764705882,,5100,,,9,,0.678893009,25635,37760,,,0.756,,,,,34.82069514,,,,,0.797691584,16103,20187,0.782609003,0.812774164,0.074720564,1464,19593,0.058212078,0.091229049,0.832416902,16804,20187,0.812965013,0.851868791,48419,,,,,0.214254735,10374,48419,,,0.217621182,10537,48419,,,0.018401867,891,48419,,,0.003366447,163,48419,,,0.004667589,226,48419,,,0.000371755,18,48419,,,0.06617237,3204,48419,,,0.894297693,43301,48419,,,0.005169566,241,46619,0.001759133,0.008579999,0.498833103,24153,48419,,,0.498011525,24544,49284,, -17,075,17075,IL,Iroquois County,2024,1,10190.02516,531,72458,8725.221702,11654.82861,0,,,,2,,,,2,,,,2,,,,2,10701.12292,9073.859937,12328.38589,,,,,2,,0.163,,,0.136,0.193,3.831235119,,,3.112348035,4.643727042,5.082078032,,,4.055648348,6.250222324,0.077674646,159,2047,0.066079429,0.089269862,0,,,,,,,,,,0.074766355,0.039526996,0.110005714,0.075587906,0.063328362,0.08784745,,,,,,,0.192,,,0.153,0.235,0.379,,,0.3,0.463,7.8,0.107198788,0.093,,,0.293,,,0.239,0.35,0.387339809,10488,27077,,,0.165494836,,,0.131737972,0.203062231,0.222222222,12,54,0.152849788,0.297503475,249.7,67,26827,,,18.31238779,102,5570,14.7585225,21.86625308,,,,,,,,,,22.81879195,13.29278721,36.5350964,18.55533466,14.80046162,22.9727669,,,,,,,0.08507765,1764,20734,0.073162757,0.096992544,0.000298207,8,26827,,,3353.375,0.000339969,9,26473,,,2941.444444,0.003437465,91,26473,,,290.9120879,3340,,,,,,,,,3320,0.42,,,,,,,,0.16,0.43,0.4,,,,,,,0.22,0.35,0.4,0.887270259,16993,19152,0.873538336,0.901002182,0.57526055,3367,5853,0.526391263,0.624129837,0.044877426,562,12523,,,0.167,913,,0.118148936,0.215851064,,,,,,,,,,0.074424899,0.02611613,0.122733667,0.124374716,0.091829637,0.156919795,4.305218843,118626,27554,3.863801158,4.746636529,0.164106989,951,5795,0.124374135,0.203839842,14.16483394,38,26827,,,111.6563336,152,136132,93.90554543,129.4071217,,,,,,,,,,,,,118.9128902,99.55754123,138.2682391,,,,9.1,,,,,1,,,,,0.120303926,1425,11845,0.100159342,0.14044851,0.109168809,0.089048134,0.129289484,0.013929928,0.007007984,0.020851873,0.012241452,0.006158685,0.01832422,0.813819735,9905,12171,0.794418136,0.833221335,,,,,,,,,,0.815548781,0.72174891,0.909348651,0.771260614,0.745482051,0.797039177,0.359,,12171,0.326174522,0.391825478,75.02802272,,,73.9093791,76.14666634,,,,,,,,,,83.29103362,72.11306422,94.46900301,74.56321637,73.35672672,75.76970603,,,,496.0752294,531,72458,450.3581701,541.7922886,,,,,,,,,,,,,510.9735997,462.0383103,559.9088891,,,,54.3963943,14,25737,29.73901495,91.2679066,,,,,,,,,,,,,61.39025312,32.68772427,104.9792025,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.12,,,0.102,0.138,0.171,,,0.147,0.195,0.097,,,0.082,0.113,65.8,15,22804,,,0.093,2550,,,,0.107198788,3185.73359,29718,,,28.51758171,23,80652,18.07770054,42.79037457,,,,,,,,,,,,,30.51529232,19.12377124,46.2005193,,,,0.348,,,0.331,0.366,0.100139544,1507,15049,0.084650183,0.115628906,0.046414906,279,6011,0.032117034,0.060712778,0.00086881,23,26473,,,1151,,,,,,,,,,,3.364935692,,,,,,,,3.215759375,3.402434014,3.050743463,,,,,,,,3.046453297,3.085432954,0.076275712,,,,,2208.668892,,,,,0.684241898,40178,58719,0.633512236,0.73497156,65181,,,58058.2766,72303.7234,28750,17828.80851,39671.19149,9020,8504.085106,9535.914894,91776,52511.65957,131040.3404,57500,44871.40426,70128.59575,62941,58970.95745,66911.04255,,,,,,0.450960307,1761,3905,,,61.90325642,,,,,0.258403523,,65181,,,1.984126984,3,1512,,,,,,,,,,,,,,,,,,,,,,,,,,16.58800815,24,136132,10.26823849,25.35653253,17.6299474,,,,,,,,,,,,,17.70518879,10.65968024,27.64884548,,,,12.48787941,17,136132,7.27464995,19.99430466,,,,,,,,,,,,,13.94151126,8.12144407,22.32171006,,,,30.5481055,59,193138,23.25463328,39.40483041,,,,,,,,,,,,,32.87538499,24.89949554,42.59387445,,,,7.777777778,,2700,,,21,,0.668175322,14025,20990,,,0.668,,,,,16.72948591,,,,,0.791655523,8880,11217,0.775345207,0.807965839,0.104810361,1133,10810,0.082906044,0.126714678,0.839975038,9422,11217,0.822864943,0.857085132,26473,,,,,0.211347411,5595,26473,,,0.22876138,6056,26473,,,0.013032146,345,26473,,,0.004041854,107,26473,,,0.00566615,150,26473,,,0.000339969,9,26473,,,0.080421562,2129,26473,,,0.886374797,23465,26473,,,0.01316612,337,25596,0.008137461,0.018194779,0.503796321,13337,26473,,,0.827491967,22406,27077,, -17,077,17077,IL,Jackson County,2024,1,9679.432813,801,154656,8663.249802,10695.61582,0,,,,2,,,,2,16381.84174,12939.11301,19824.57046,,,,,2,9283.81785,8120.695723,10446.93998,,,,,2,,0.174,,,0.146,0.205,3.917033511,,,3.02902057,4.852103811,5.244267964,,,4.177195895,6.399702046,0.100691959,422,4191,0.091581319,0.109802599,0,,,,0.121212121,0.056920626,0.185503617,0.151821862,0.129445562,0.174198163,0.067307692,0.033257,0.101358385,0.083599008,0.07338858,0.093809437,,,,,,,0.183,,,0.144,0.224,0.363,,,0.284,0.443,6.4,0.151358227,0.134,,,0.296,,,0.241,0.35,0.783138898,41486,52974,,,0.173429237,,,0.136601533,0.212980682,0.227272727,10,44,0.149994326,0.311342398,981.6,516,52565,,,15.92356688,250,15700,13.94966108,17.89747268,,,,,,,22.43928194,17.92370143,27.74651962,13.03214596,7.293993165,21.49454289,14.62108732,12.21621751,17.02595712,,,,,,,0.078545683,3247,41339,0.0654393,0.091652066,0.001617046,85,52565,,,618.4117647,0.000912253,48,52617,,,1096.1875,0.004447232,234,52617,,,224.8589744,3520,,,,,,,8709,2583,3011,0.45,,,,,,0.2,0.52,0.38,0.45,0.42,,,,,,0.45,0.28,0.19,0.43,0.918427212,29431,32045,0.90471403,0.932140394,0.719558385,8929,12409,0.667663216,0.771453555,0.041751415,1129,27041,,,0.277,2678,,0.200744681,0.353255319,,,,,,,0.567398119,0.479896482,0.654899756,0.3437014,0.178493892,0.508908908,0.200346511,0.146698259,0.253994764,6.063076089,100641,16599,5.249128918,6.87702326,0.307268273,3010,9796,0.254921297,0.359615249,17.69238086,93,52565,,,86.61912082,244,281693,75.75048768,97.48775395,,,,,,,78.38666002,53.95776995,110.0840145,,,,98.0029497,84.55425499,111.4516444,,,,8.7,,,,,0,,,,,0.187112763,4530,24210,0.166198457,0.20802707,0.169993616,0.149017997,0.190969235,0.013011152,0.006332686,0.019689619,0.013011152,0.006832667,0.019189638,0.745589808,16737,22448,0.722389429,0.768790186,,,,0.517625232,0.387634792,0.647615672,0.602308917,0.487129313,0.717488521,0.717948718,0.581743577,0.854153859,0.815403104,0.790587134,0.840219074,0.238,,22448,0.206476155,0.269523845,76.10354892,,,75.26351447,76.94358337,,,,113.0982014,82.32843326,143.8679695,70.31348931,67.86276816,72.76421046,90.50926504,66.54775531,114.4707748,76.27561863,75.34651968,77.20471757,,,,463.1728645,801,154656,429.0620118,497.2837172,,,,,,,778.6866821,643.8244124,913.5489518,,,,447.5747446,410.0256419,485.1238473,,,,62.63048017,33,52690,43.11194073,87.95647992,,,,,,,110.1928375,56.9382471,192.4847112,,,,49.94271277,29.09347064,79.96312117,,,,7.498295842,33,4401,5.161481839,10.5303952,,,,,,,,,,,,,,,,,,,,,,0.123,,,0.104,0.143,0.172,,,0.148,0.199,0.114,,,0.095,0.132,103.4,47,45459,,,0.134,7180,,,,0.151358227,9114.489719,60218,,,15.06114826,25,165990,9.74678104,22.23322592,,,,,,,,,,,,,16.31520985,9.965754036,25.19751838,,,,0.349,,,0.332,0.365,0.092092818,2921,31718,0.076603456,0.10758218,0.035502373,359,10112,0.02358748,0.047417267,0.002546705,134,52617,,,392.6641791,,,,,,,,,,,2.528974059,,,,,,,2.072409025,2.115669114,2.756944211,2.546024683,,,,,,,2.147423358,2.292390093,2.738376518,0.130170134,,,,,-2881.694619,,,,,0.780445969,40950,52470,0.692005498,0.868886441,44756,,,39196.51064,50315.48936,,,,,,,30773,22736.40426,38809.59575,37723,24825.12766,50620.87234,50733,48030.70213,53435.29787,,,,,,0.64510829,4319,6695,,,45.31086304,,,,,0.376329431,,44756,,,4.545454546,13,2860,,,4.000750141,16,399925,2.286774384,6.496967581,,,,,,,16.8753586,8.092390388,31.0343853,,,,,,,,,,16.22556103,42,281693,11.42429235,22.36479855,14.90984867,,,,,,,,,,,,,18.48544372,12.64402982,26.09593098,,,,9.93989911,28,281693,6.604990772,14.36592175,,,,,,,,,,,,,9.608132323,5.868896835,14.83898111,,,,16.75314121,67,399925,12.98345433,21.27589714,,,,,,,,,,,,,19.25181372,14.58113571,24.94295769,,,,9.130434783,,4600,,,42,,0.504860647,22643,44850,,,0.592,,,,,71.42842442,,,,,0.484502659,11208,23133,0.467801246,0.501204071,0.179126808,3951,22057,0.152160075,0.206093541,0.854277439,19762,23133,0.838037602,0.870517276,52617,,,,,0.188437197,9915,52617,,,0.169679001,8928,52617,,,0.152935363,8047,52617,,,0.00610069,321,52617,,,0.034589581,1820,52617,,,0.001102305,58,52617,,,0.047874261,2519,52617,,,0.732766977,38556,52617,,,0.00883866,445,50347,0.003913401,0.013763918,0.500560655,26338,52617,,,0.409483898,21692,52974,, -17,079,17079,IL,Jasper County,2024,1,5666.32558,119,25820,3896.641894,7436.009266,0,,,,2,,,,2,,,,2,,,,2,5707.012648,3886.046491,7527.978805,,,,,2,,0.143,,,0.118,0.173,3.607175135,,,2.801650656,4.582834843,4.962123546,,,3.882203404,6.221833564,0.078378378,58,740,0.059013504,0.097743252,0,,,,,,,,,,,,,0.078838174,0.05919448,0.098481869,,,,,,,0.176,,,0.136,0.224,0.362,,,0.279,0.456,8.4,0.041269679,0.098,,,0.266,,,0.216,0.328,0.430171207,3995,9287,,,0.171747516,,,0.135535153,0.212453501,0.333333333,1,3,0.04092282,0.635504717,195.8,18,9193,,,14.03508772,28,1995,9.326213863,20.2846095,,,,,,,,,,,,,12.4864278,7.915324124,18.73577247,,,,,,,0.059742395,436,7298,0.05021048,0.06927431,0.000108778,1,9193,,,9193,0.000108554,1,9212,,,9212,0.004450717,41,9212,,,224.6829268,2895,,,,,,,,,2911,0.52,,,,,,,,,0.52,0.37,,,,,,,,,0.37,0.933107275,6054,6488,0.903591276,0.962623274,0.697895792,1393,1996,0.567622464,0.828169119,0.036625514,178,4860,,,0.134,275,,0.082765957,0.185234043,,,,,,,,,,,,,0.117705736,0.042905963,0.192505508,3.913697006,132009,33730,3.097394319,4.729999692,0.12386418,259,2091,0.056562417,0.191165943,14.14119439,13,9193,,,56.89360895,27,47457,37.4932468,82.77721399,,,,,,,,,,,,,56.54140571,36.93472342,82.84625975,,,,8.9,,,,,0,,,,,0.10817942,410,3790,0.073763854,0.142594985,0.073138298,0.040794175,0.105482421,0.025065963,0,0.051013445,0.015831135,0.00493762,0.02672465,0.848603839,3890,4584,0.803482926,0.893724753,,,,,,,,,,,,,0.835762877,0.770288914,0.90123684,0.383,,4584,0.309890694,0.456109306,79.43963819,,,77.77463248,81.10464389,,,,,,,,,,,,,79.25751958,77.57441475,80.94062442,,,,301.4995555,119,25820,243.4294416,359.5696694,,,,,,,,,,,,,301.738037,242.9197394,360.5563346,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.11,,,0.092,0.131,0.164,,,0.14,0.193,0.088,,,0.074,0.105,,,,,,0.098,910,,,,0.041269679,400.2333477,9698,,,,,,,,,,,,,,,,,,,,,,,,,,0.32,,,0.301,0.339,0.071989278,376,5223,0.058882895,0.085095661,0.029830197,65,2179,0.019106793,0.040553602,0.000868433,8,9212,,,1151.5,,,,,,,,,,,3.462976818,,,,,,,,,3.429200114,3.290774821,,,,,,,,,3.259019592,,,,,,7075.887,,,,,0.674804802,40188,59555,0.597784671,0.751824934,66290,,,57254.93617,75325.06383,,,,,,,,,,,,,67357,60753.76596,73960.23404,,,,,,0.4,478,1195,,,,,,,,0.254080555,,66290,,,3.47826087,2,575,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.01801802,12,66600,9.310172836,31.47385142,,,,,,,,,,,,,18.58822436,9.604806773,32.46988715,,,,18,,1000,,,18,,0.763835616,5576,7300,,,0.7,,,,,0.509859156,,,,,0.817520216,3033,3710,0.774754634,0.860285797,0.080571429,282,3500,0.041487354,0.119655504,0.855256065,3173,3710,0.820264524,0.890247605,9212,,,,,0.226009553,2082,9212,,,0.214828485,1979,9212,,,0.003148068,29,9212,,,0.003256622,30,9212,,,0.003799392,35,9212,,,0.000325662,3,9212,,,0.019322623,178,9212,,,0.961571863,8858,9212,,,0.003664262,32,8733,0,0.014337652,0.494680851,4557,9212,,,1,9287,9287,, -17,081,17081,IL,Jefferson County,2024,1,9091.236793,698,102633,8016.667753,10165.80583,0,,,,2,,,,2,13314.65608,9374.74663,18352.49952,,,,,2,8986.420322,7794.411122,10178.42952,,,,,2,,0.164,,,0.135,0.193,3.964619625,,,3.085527749,4.917798307,5.063772089,,,3.997411329,6.235041257,0.097913323,305,3115,0.087476409,0.108350236,0,,,,,,,0.179941003,0.139048486,0.22083352,,,,0.085073473,0.074320414,0.095826531,,,,0.188679245,0.083343325,0.294015166,0.19,,,0.149,0.23,0.352,,,0.275,0.434,7.3,0.096857716,0.118,,,0.293,,,0.234,0.348,0.469161749,17412,37113,,,0.167846386,,,0.13409635,0.20780374,0.25,10,40,0.167808311,0.33763196,379.6,140,36877,,,31.02242936,213,6866,26.85621057,35.18864816,,,,,,,40.38772213,26.13680428,59.62024507,53.94190871,28.72179457,92.24230671,30.60321953,26.04284893,35.16359013,,,,,,,0.071209199,1994,28002,0.060485795,0.081932604,0.000488109,18,36877,,,2048.722222,0.000576923,21,36400,,,1733.333333,0.00293956,107,36400,,,340.1869159,3248,,,,,,,3572,,3194,0.43,,,,,,,0.3,,0.44,0.42,,,,,,0.23,0.34,,0.42,0.906147367,23452,25881,0.89567533,0.916619403,0.620164518,5579,8996,0.571796477,0.668532559,0.046378227,760,16387,,,0.191,1499,,0.127851064,0.254148936,,,,,,,0.515686275,0.320473997,0.710898552,0.011661808,0,0.141588829,0.191117525,0.150191269,0.23204378,4.171835676,107746,25827,3.665551324,4.678120027,0.280757098,2314,8242,0.227119019,0.334395176,17.08381918,63,36877,,,100.1091616,188,187795,85.79878802,114.4195352,,,,,,,105.7411209,61.59809958,169.3017778,,,,103.0882748,87.35846864,118.818081,,,,8.7,,,,,0,,,,,0.120351589,1780,14790,0.10285074,0.137852438,0.08810663,0.073713233,0.102500027,0.015212982,0.009450347,0.020975616,0.023326572,0.013030659,0.033622485,0.818733196,13094,15993,0.795013977,0.842452415,,,,,,,0.594520548,0.494781745,0.694259351,,,,0.851335344,0.829470756,0.873199931,0.215,,15993,0.189809086,0.240190914,74.96561302,,,74.12517026,75.80605578,,,,,,,70.85573172,67.19546572,74.51599773,,,,74.97444732,74.06303868,75.88585595,,,,483.7920591,698,102633,446.1108749,521.4732434,,,,,,,770.450823,587.9351443,991.7229306,,,,475.3313461,435.467863,515.1948292,,,,74.57121551,27,36207,49.14290091,108.4972034,,,,,,,,,,,,,58.86834268,34.29297898,94.2539193,,,,8.072027321,26,3221,5.272916242,11.82739028,,,,,,,,,,,,,,,,,,,,,,0.12,,,0.101,0.139,0.17,,,0.143,0.194,0.1,,,0.084,0.117,122.5,38,31025,,,0.118,4400,,,,0.096857716,3760.694538,38827,,,27.72907796,31,111796,18.84056315,39.35921277,,,,,,,,,,,,,31.52485735,21.26968887,45.00369408,,,,0.343,,,0.326,0.358,0.084987687,1691,19897,0.070689814,0.099285559,0.037909112,322,8494,0.024802729,0.051015495,0.001703297,62,36400,,,587.0967742,,,,,,0.080878415,151,1867,0.04391604,0.117840789,2.85709093,,,,,,,2.286178164,,2.938248186,2.607380942,,,,,,,1.713335535,,2.786762968,0.157958313,,,,,-1171.5482,,,,,0.705037273,38966,55268,0.646996951,0.763077595,58623,,,53329.21277,63916.78723,60583,24992.02128,96173.97872,81250,53409.65957,109090.3404,35880,24815.82979,46944.17021,82946,47084.55319,118807.4468,58852,56060.34043,61643.65957,,,,,,0.604897661,3310,5472,,,59.18982201,,,,,0.287310441,,58623,,,2.202643172,5,2270,,,4.535010279,12,264608,2.343305988,7.921750305,,,,,,,,,,,,,,,,,,,15.12556902,26,187795,9.788470758,22.32832366,13.84488405,,,,,,,,,,,,,16.36814449,10.25782901,24.78156746,,,,7.987433105,15,187795,4.470505675,13.17405622,,,,,,,,,,,,,,,,,,,16.62837102,44,264608,12.08219984,22.32281196,,,,,,,,,,,,,17.26817475,12.27936032,23.60616335,,,,11.89189189,,3700,,,44,,0.596435915,17404,29180,,,0.695,,,,,41.42624249,,,,,0.719853837,10638,14778,0.705116542,0.734591132,0.105486126,1494,14163,0.087827266,0.123144985,0.844701583,12483,14778,0.826434381,0.862968786,36400,,,,,0.220604396,8030,36400,,,0.200686813,7305,36400,,,0.07989011,2908,36400,,,0.004505495,164,36400,,,0.01271978,463,36400,,,0.000412088,15,36400,,,0.031510989,1147,36400,,,0.852087912,31016,36400,,,0.003555046,124,34880,0.000701348,0.006408744,0.485961539,17689,36400,,,0.588068871,21825,37113,, -17,083,17083,IL,Jersey County,2024,1,9068.818799,400,59087,7647.488382,10490.14922,0,,,,2,,,,2,,,,2,,,,2,9279.591457,7804.995186,10754.18773,,,,,2,,0.132,,,0.108,0.16,3.402780339,,,2.578889071,4.277354195,4.662865251,,,3.667712184,5.699816938,0.084566596,120,1419,0.070089626,0.099043566,0,,,,,,,,,,,,,0.082608696,0.068084011,0.097133381,,,,,,,0.163,,,0.125,0.205,0.334,,,0.254,0.415,8.9,0.039483725,0.072,,,0.248,,,0.199,0.301,0.673856452,14496,21512,,,0.178971857,,,0.142073297,0.220541428,0.4,8,20,0.28271818,0.510327518,215.6,46,21333,,,12.5367287,64,5105,9.654808726,16.00912267,,,,,,,,,,,,,12.36897275,9.415835142,15.95507366,,,,,,,0.056156156,935,16650,0.046624241,0.065688071,0.000468757,10,21333,,,2133.3,0.000470677,10,21246,,,2124.6,0.001129624,24,21246,,,885.25,2996,,,,,,,,,3007,0.44,,,,,,,,,0.44,0.45,,,,,,,,,0.45,0.93347069,14045,15046,0.913039518,0.953901862,0.664564943,3162,4758,0.562015606,0.76711428,0.034917647,371,10625,,,0.124,513,,0.078723404,0.169276596,,,,,,,,,,,,,0.091277891,0.039156353,0.143399428,4.674206844,146298,31299,3.549200712,5.799212976,0.207816969,872,4196,0.119948802,0.295685135,10.31266114,22,21333,,,110.5888858,120,108510,90.80202354,130.3757481,,,,,,,,,,,,,113.8952164,93.34480352,134.4456293,,,,7.9,,,,,0,,,,,0.083333333,680,8160,0.056114138,0.110552529,0.080521092,0.052921576,0.108120608,0.005514706,0.000674994,0.010354418,0.002328431,0,0.007181283,0.788719785,7929,10053,0.744845357,0.832594213,,,,,,,,,,,,,0.702957634,0.650393713,0.755521555,0.447,,10053,0.378554147,0.515445853,75.18059398,,,74.07866709,76.28252087,,,,,,,,,,,,,74.92790741,73.79804531,76.0577695,,,,473.1639417,400,59087,423.5577294,522.7701541,,,,,,,,,,,,,483.5626503,432.4585569,534.6667436,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.103,,,0.087,0.122,0.158,,,0.133,0.184,0.082,,,0.068,0.097,43.5,8,18390,,,0.072,1550,,,,0.039483725,907.5334138,22985,,,21.63097556,14,64722,11.82585562,36.29310145,,,,,,,,,,,,,21.06218204,11.21472488,36.01697275,,,,0.319,,,0.3,0.337,0.066774454,826,12370,0.054859561,0.078689348,0.027315123,123,4503,0.018974698,0.035655549,0.000847218,18,21246,,,1180.333333,,,,,,,,,,,3.172568664,,,,,,,,,3.169341289,3.534004567,,,,,,,,,3.546185968,0.012176325,,,,,5246.543,,,,,0.779477384,48563,62302,0.637416293,0.921538476,72363,,,62235.34043,82490.65957,,,,,,,,,,,,,77588,67989.3617,87186.6383,,,,,,0.392653061,962,2450,,,,,,,,0.232757072,,72363,,,5.035246727,5,993,,,,,,,,,,,,,,,,,,,,,,,,,,16.00630097,20,108510,9.48634838,25.29685626,18.43148097,,,,,,,,,,,,,16.60716949,9.842461147,26.24648758,,,,12.90203668,14,108510,7.053663512,21.64742523,,,,,,,,,,,,,13.51299178,7.387678349,22.67250408,,,,21.58174577,33,152907,14.85588075,30.30879506,,,,,,,,,,,,,21.20310523,14.4064813,30.09611539,,,,,,2100,,,-888,,0.692200638,11937,17245,,,0.703,,,,,37.52213286,,,,,0.810859729,6272,7735,0.779188775,0.842530682,0.064102564,480,7488,0.039794072,0.088411056,0.845636716,6541,7735,0.809744322,0.88152911,21246,,,,,0.199143368,4231,21246,,,0.207380213,4406,21246,,,0.007624965,162,21246,,,0.00385955,82,21246,,,0.008001506,170,21246,,,0.000423609,9,21246,,,0.016332486,347,21246,,,0.951614422,20218,21246,,,0.002053689,42,20451,0,0.00764368,0.505836393,10747,21246,,,0.594133507,12781,21512,, -17,085,17085,IL,Jo Daviess County,2024,1,6175.206491,287,56523,4800.21965,7550.193331,0,,,,2,,,,2,,,,2,,,,2,6016.07789,4666.115741,7366.040038,,,,,2,,0.139,,,0.113,0.171,3.43030744,,,2.72028228,4.251534286,4.672405314,,,3.707117554,5.734356258,0.067590988,78,1154,0.053106578,0.082075397,0,,,,,,,,,,,,,0.063279003,0.048503276,0.07805473,,,,,,,0.167,,,0.127,0.21,0.363,,,0.283,0.452,8.7,0.037906072,0.084,,,0.256,,,0.204,0.315,0.706830043,15575,22035,,,0.154454264,,,0.121560473,0.192925311,0.375,6,16,0.240765683,0.502616143,155,34,21939,,,10.53463261,40,3797,7.526095982,14.34517961,,,,,,,,,,,,,9.408997354,6.435747225,13.28269688,,,,,,,0.07055037,1096,15535,0.059826966,0.081273774,0.000455809,10,21939,,,2193.9,0.000643442,14,21758,,,1554.142857,0.001011122,22,21758,,,989,4231,,,,,,,,,4263,0.48,,,,,,,,,0.48,0.47,,,,,,,,,0.47,0.935403952,15480,16549,0.919711761,0.951096143,0.649359886,2739,4218,0.572546534,0.726173238,0.036931005,387,10479,,,0.114,432,,0.07587234,0.15212766,,,,,,,,,,0.352739726,0.219828438,0.485651014,0.067983075,0.04122872,0.09473743,3.685521394,121191,32883,3.190887404,4.180155384,0.255974378,1039,4059,0.183201231,0.328747525,8.204567209,18,21939,,,88.47661889,95,107373,71.58286819,108.1580785,,,,,,,,,,,,,92.73783802,74.94161305,113.4876271,,,,9.1,,,,,0,,,,,0.108242304,1090,10070,0.087265176,0.129219432,0.086574905,0.066354317,0.106795493,0.015690169,0.005981978,0.02539836,0.007447865,0.003120037,0.011775693,0.778938532,8351,10721,0.744748113,0.81312895,,,,,,,,,,,,,0.738375064,0.696863221,0.779886907,0.265,,10721,0.229936997,0.300063004,80.68408297,,,79.42365033,81.94451561,,,,,,,,,,,,,80.65040007,79.41588185,81.8849183,,,,294.9016171,287,56523,254.3652477,335.4379866,,,,,,,,,,,,,297.0101216,255.3728286,338.6474146,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.106,,,0.089,0.126,0.158,,,0.133,0.185,0.086,,,0.072,0.103,41.6,8,19250,,,0.084,1850,,,,0.037906072,859.6338892,22678,,,,,,,,,,,,,,,,,,,,,,,,,,0.315,,,0.296,0.334,0.083030303,959,11550,0.06992392,0.096136686,0.035756853,150,4195,0.02384196,0.047671747,0.000321721,7,21758,,,3108.285714,,,,,,,,,,,3.091491901,,,,,,,,,3.11643882,3.418507006,,,,,,,,,3.46256832,0.068603163,,,,,7746.572667,,,,,0.848583338,46213,54459,0.751076726,0.94608995,67217,,,59678.44681,74755.55319,84219,45092.87234,123345.1277,68816,54265.53192,83366.46809,62031,43018.40426,81043.59575,63182,33610.42553,92753.57447,68026,62745.31915,73306.68085,,,,,,0.332589286,1043,3136,,,47.41216534,,,,,0.250576491,,67217,,,5.347593583,5,935,,,,,,,,,,,,,,,,,,,,,,,,,,17.02428263,16,107373,9.307333734,28.5638535,14.90132529,,,,,,,,,,,,,18.08890335,9.631579198,30.93257562,,,,,,,,,,,,,,,,,,,,,,,,,,,16.53122086,25,151229,10.69813452,24.40334307,,,,,,,,,,,,,17.49462915,11.32160156,25.82552375,,,,0,,2000,,,0,,0.729480444,12496,17130,,,0.642,,,,,22.20019243,,,,,0.798590431,8045,10074,0.785230198,0.811950664,0.103890813,1020,9818,0.080555275,0.127226351,0.844550328,8508,10074,0.81981236,0.869288295,21758,,,,,0.178003493,3873,21758,,,0.302003861,6571,21758,,,0.008043019,175,21758,,,0.003217208,70,21758,,,0.005239452,114,21758,,,0.000597481,13,21758,,,0.035481202,772,21758,,,0.938229617,20414,21758,,,0.00209215,44,21031,0,0.006682868,0.49572571,10786,21758,,,0.883911958,19477,22035,, -17,087,17087,IL,Johnson County,2024,1,8175.19175,222,34620,6136.596013,10213.78749,0,,,,2,,,,2,,,,2,,,,2,8492.639203,6255.346837,10729.93157,,,,,2,,0.168,,,0.138,0.2,3.841107928,,,2.955995634,4.822927645,4.868499212,,,3.752825563,6.093578341,0.068874172,52,755,0.050810128,0.086938216,0,,,,,,,,,,,,,0.066576087,0.048566002,0.084586172,,,,,,,0.195,,,0.153,0.242,0.391,,,0.304,0.478,8.5,0.026241075,0.098,,,0.292,,,0.24,0.353,0.658701533,8766,13308,,,0.169349095,,,0.133388145,0.210441239,0.307692308,4,13,0.157450571,0.460702037,222.8,30,13463,,,21.60638798,46,2129,15.81859155,28.81989371,,,,,,,,,,,,,23.01790281,16.78941626,30.79976496,,,,,,,0.065624666,613,9341,0.054901261,0.07634807,7.42776E-05,1,13463,,,13463,0.000224199,3,13381,,,4460.333333,0.008669008,116,13381,,,115.3534483,3892,,,,,,,,,3882,0.4,,,,,,,,,0.4,0.42,,,,,,,,,0.42,0.846355808,8059,9522,0.822478101,0.870233514,0.432734766,1470,3397,0.367950374,0.497519158,0.053637032,219,4083,,,0.174,375,,0.125148936,0.222851064,,,,,,,,,,,,,0.208691258,0.143648772,0.273733744,4.109718978,116116,28254,3.681527647,4.537910309,0.152793193,413,2703,0.087176974,0.218409412,9.656094481,13,13463,,,80.19624493,51,63594,59.71137189,105.4432515,,,,,,,,,,,,,89.81820795,66.66480516,118.4141098,,,,8.7,,,,,0,,,,,0.098203593,410,4175,0.067553078,0.128854108,0.088564477,0.057418229,0.119710725,0.008383234,0,0.018857421,0.009580838,0.001558961,0.017602716,0.819972197,3539,4316,0.803712526,0.836231867,,,,,,,,,,,,,0.755303585,0.712057233,0.798549936,0.51,,4316,0.428038002,0.591961998,77.20391136,,,75.50083974,78.90698298,,,,,,,,,,,,,76.9243719,75.14483251,78.70391129,,,,421.0798639,222,34620,361.6937387,480.4659891,,,,,,,,,,,,,426.4488573,363.1614531,489.7362615,,,,115.4401154,12,10395,59.6495922,201.6506498,,,,,,,,,,,,,126.2626263,65.24174146,220.5553982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.119,,,0.101,0.14,0.163,,,0.14,0.19,0.099,,,0.083,0.117,237.1,28,11808,,,0.098,1300,,,,0.026241075,330.1652078,12582,,,,,,,,,,,,,,,,,,,,,,,,,,0.335,,,0.32,0.351,0.078223496,546,6980,0.063925623,0.092521368,0.029317269,73,2490,0.018593865,0.040040673,0.00052313,7,13381,,,1911.571429,,,,,,,,,,,3.069859876,,,,,,,,,3.072223471,2.868300407,,,,,,,,,2.906368822,0.084135573,,,,,1308.9574,,,,,0.63745468,37977,59576,0.487862739,0.78704662,59794,,,51535.78723,68052.21277,,,,,,,,,,,,,63509,58891.97872,68126.02128,,,,,,0.477085781,812,1702,,,66.39934384,,,,,0.281683781,,59794,,,3.344481605,2,598,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.9255641,16,89258,10.24600871,29.10999305,,,,,,,,,,,,,20.59122556,11.76966456,33.43886027,,,,4.545454546,,1100,,,5,,0.643378311,6437,10005,,,0.62,,,,,5.464868108,,,,,0.852654652,3501,4106,0.824368366,0.880940938,0.083882413,331,3946,0.051083659,0.116681167,0.766682903,3148,4106,0.735250018,0.798115788,13381,,,,,0.163963829,2194,13381,,,0.204020626,2730,13381,,,0.125326956,1677,13381,,,0.0050071,67,13381,,,0.00343771,46,13381,,,0.00052313,7,13381,,,0.04409237,590,13381,,,0.81384052,10890,13381,,,0.004468836,57,12755,0,0.012483876,0.404753008,5416,13381,,,1,13308,13308,, -17,089,17089,IL,Kane County,2024,1,5705.028291,5034,1488009,5467.410055,5942.646526,0,,,,2,2985.088001,2264.282194,3705.893808,,12604.57595,11093.74392,14115.40798,,5415.766514,5025.375583,5806.157445,,5378.425233,5061.617019,5695.233446,,,,,2,,0.149,,,0.124,0.173,3.416642661,,,2.682960407,4.261253095,4.306388643,,,3.419327019,5.276754053,0.073824228,3108,42100,0.071326408,0.076322048,0,,,,0.097413319,0.083779038,0.1110476,0.128814762,0.116446074,0.141183451,0.072371315,0.068605304,0.076137327,0.064351161,0.060840932,0.06786139,,,,0.093023256,0.064083529,0.121962983,0.134,,,0.104,0.165,0.355,,,0.287,0.424,9.1,0.035024162,0.066,,,0.276,,,0.228,0.326,0.927379666,479012,516522,,,0.179727015,,,0.145027593,0.218287468,0.253246753,39,154,0.212287428,0.295641438,387.9,2000,515588,,,13.50912319,1788,132355,12.88294278,14.1353036,,,,2.135611319,1.103501532,3.730483191,25.43166912,21.81545502,29.04788322,23.91592766,22.64949233,25.18236299,3.333048457,2.865226725,3.80087019,,,,6.329113924,3.917821273,9.674722946,0.087712159,38149,434934,0.079371733,0.096052584,0.000399544,206,515588,,,2502.854369,0.000742928,382,514182,,,1346.026178,0.003648514,1876,514182,,,274.0842218,2896,,,,,,1880,4277,3040,2818,0.43,,,,,,0.35,0.4,0.31,0.44,0.53,,,,,,0.53,0.4,0.38,0.56,0.865016304,295788,341945,0.858735954,0.871296654,0.665325471,86316,129735,0.644951422,0.68569952,0.045047121,11926,264745,,,0.108,12945,,0.084170213,0.131829787,0.247081712,0.114537894,0.379625531,0.062427207,0.027438421,0.097415993,0.257909316,0.20257246,0.313246173,0.184891823,0.164594957,0.205188688,0.051139459,0.03895298,0.063325939,4.039617921,177622,43970,3.876512271,4.202723572,0.190541478,24182,126912,0.173208318,0.207874637,7.602969813,392,515588,,,50.49314849,1337,2647884,47.78655633,53.19974065,,,,12.55323918,6.862972676,21.06220231,109.651465,92.33296996,126.96996,30.3150786,26.63015833,33.99999888,59.96857326,56.04626593,63.89088059,,,,8.8,,,,,0,,,,,0.154582199,28110,181845,0.145754904,0.163409494,0.120983616,0.111904589,0.130062642,0.032940141,0.028601725,0.037278557,0.010146004,0.008025625,0.012266382,0.728896819,192006,263420,0.71729536,0.740498277,0.767130919,0.675793703,0.858468136,0.72386475,0.665613502,0.782115999,0.743166581,0.691727121,0.79460604,0.720846633,0.70167086,0.740022406,0.738338933,0.725878314,0.750799551,0.438,,263420,0.422373764,0.453626237,80.32240108,,,80.07011345,80.57468871,,,,88.51790095,85.47265129,91.56315062,73.53070286,72.25277153,74.80863418,83.98140932,82.85135583,85.11146281,80.37371094,80.07112226,80.67629962,,,,279.9405069,5034,1488009,272.0294132,287.8516006,,,,191.7050023,160.0401309,223.3698736,548.1730888,497.7291088,598.6170687,268.5021179,251.5297285,285.4745074,271.2082983,261.3553427,281.0612538,,,,39.203886,228,581575,34.11505808,44.29271392,,,,,,,108.866578,76.2488128,150.7172326,42.24938875,34.28110807,50.21766944,29.26451164,22.97893598,36.73891449,,,,4.941464428,214,43307,4.279392982,5.603535875,,,,,,,11.58432709,8.022483266,16.18793598,5.737265416,4.650166346,6.824364485,3.447743529,2.671953879,4.378512408,,,,,,,0.103,,,0.088,0.119,0.143,,,0.123,0.166,0.096,,,0.081,0.112,82.3,354,430030,,,0.066,34090,,,,0.035024162,18046.86483,515269,,,17.66939983,279,1579001,15.59603481,19.74276485,,,,,,,47.85948455,34.19151744,65.1710342,11.68426772,8.916327197,15.03996865,19.54858498,16.64391515,22.4532548,,,,0.296,,,0.284,0.309,0.109183795,33896,310449,0.098460391,0.119907199,0.036327418,4778,131526,0.027986993,0.044667844,0.000927687,477,514182,,,1077.949686,,,,,,0.05931713,1845,31104,0.045118445,0.073515815,2.745325052,,,,,,3.491528196,2.320357936,2.319483655,3.245090411,2.838518574,,,,,,3.705097738,2.200296904,2.437393869,3.354081423,0.243573602,,,,,3932.827875,,,,,0.763247851,52471,68747,0.735376922,0.791118779,93475,,,88408.78723,98541.21277,76936,57142.97872,96729.02128,115769,101144.6596,130393.3404,59611,51757.89362,67464.10638,80020,76034.46809,84005.53192,107142,104168.0426,110115.9575,,,,,,0.353902186,30414,85939,,,52.31808963,,,,,0.301984488,,93475,,,2.504774727,80,31939,,,3.207161619,119,3710446,2.630921573,3.783401665,,,,,,,24.80723764,18.35253097,32.79648375,3.852280131,2.820353221,5.138401849,1.043194908,0.653764695,1.579409627,,,,8.90276449,239,2647884,7.75618076,10.04934822,9.02607516,,,,,,,8.984453009,4.783842837,15.36368827,3.996072246,2.750712263,5.611971158,11.83120132,10.02073761,13.64166502,,,,6.231390801,165,2647884,5.280569094,7.182212508,,,,,,,26.3448325,18.54919333,36.3128813,4.197472422,2.939858081,5.811071124,5.943433208,4.773064905,7.313905991,,,,6.306519486,234,3710446,5.498470137,7.114568835,,,,,,,10.12540312,6.184859275,15.6378639,6.280891518,4.940319614,7.873151906,6.401423297,5.321567577,7.481279017,,,,2.641509434,,63600,,,168,,0.662143408,231876,350190,,,0.756,,,,,83.32448857,,,,,0.751770249,137062,182319,0.743110887,0.760429611,0.120840757,21703,179600,0.111810824,0.129870691,0.913612953,166569,182319,0.906302319,0.920923587,514182,,,,,0.23639295,121549,514182,,,0.156656592,80550,514182,,,0.052568935,27030,514182,,,0.010714105,5509,514182,,,0.047393724,24369,514182,,,0.000927687,477,514182,,,0.330676687,170028,514182,,,0.555752632,285758,514182,,,0.053929115,26237,486509,0.05072152,0.057136711,0.497895687,256009,514182,,,0.040224811,20777,516522,, -17,091,17091,IL,Kankakee County,2024,1,9642.204753,1844,301060,8969.413067,10314.99644,0,,,,2,,,,2,18556.87464,16137.5535,20976.19577,,8334.506696,6564.916764,10104.09663,,8040.18598,7333.111849,8747.260112,,,,,2,,0.166,,,0.14,0.196,3.806383853,,,2.938567505,4.737347049,4.912234271,,,3.874616164,6.066163402,0.090718528,779,8587,0.084643721,0.096793335,0,,,,,,,0.161202186,0.14435433,0.178050042,0.065524944,0.052290514,0.078759375,0.070067373,0.063125974,0.077008771,,,,0.129496403,0.073679876,0.18531293,0.184,,,0.145,0.224,0.382,,,0.303,0.463,8.1,0.060683285,0.1,,,0.313,,,0.258,0.372,0.811873268,87278,107502,,,0.168564256,,,0.133657988,0.207872263,0.358024691,29,81,0.301928429,0.413693444,595.7,635,106601,,,17.44680851,492,28200,15.90514528,18.98847174,,,,,,,43.90471742,37.62863941,50.18079543,26.639803,21.8533522,31.4262538,8.972044423,7.598870452,10.34521839,,,,22.08588957,13.08949789,34.90522732,0.078428326,6561,83656,0.067704921,0.08915173,0.000347089,37,106601,,,2881.108108,0.000480796,51,106074,,,2079.882353,0.00197975,210,106074,,,505.1142857,3660,,,,,,,7100,1678,3354,0.47,,,,,,0.48,0.47,0.25,0.47,0.48,,,,,,0.48,0.34,0.3,0.49,0.899282676,64689,71934,0.889673801,0.908891551,0.585417225,15287,26113,0.547625106,0.623209344,0.052562797,2735,52033,,,0.199,4656,,0.150148936,0.247851064,,,,,,,0.462115881,0.393546194,0.530685568,0.255076432,0.19301925,0.317133613,0.10107856,0.074024411,0.128132709,4.619663966,131702,28509,4.33156059,4.907767341,0.357113738,8760,24530,0.314494513,0.399732964,10.41266029,111,106601,,,88.674943,483,544686,80.76663775,96.58324824,,,,,,,122.3394295,99.32106245,149.0925789,61.95994373,43.6255184,85.40362071,88.21471926,78.87895089,97.55048762,,,,9.6,,,,,0,,,,,0.14815734,5970,40295,0.133572502,0.162742178,0.127443609,0.11360024,0.141286978,0.017495967,0.011459153,0.023532782,0.011539893,0.006842559,0.016237228,0.803955954,39426,49040,0.784819085,0.823092824,,,,,,,0.730498946,0.66817562,0.792822272,0.851207187,0.794742011,0.907672363,0.805357574,0.784987069,0.825728079,0.313,,49040,0.289682094,0.336317907,75.40781802,,,74.86300748,75.95262856,,,,,,,68.2193214,66.63366515,69.80497765,77.95665907,74.90666412,81.00665403,76.670945,76.08246281,77.25942719,,,,482.970386,1844,301060,459.9763578,505.9644143,,,,,,,832.0525665,749.021801,915.0833319,462.6368356,370.5408543,554.7328169,431.0013629,406.1837073,455.8190185,,,,47.81511489,54,112935,35.92018592,62.38835294,,,,,,,142.2764228,94.54164967,205.6290444,,,,26.27315322,15.5711357,41.52290912,,,,8.096704299,71,8769,6.323593232,10.21289076,,,,,,,19.67038809,13.84976851,27.11303889,,,,4.47761194,2.868890458,6.662331641,,,,,,,0.116,,,0.099,0.135,0.164,,,0.14,0.189,0.104,,,0.087,0.122,164.5,148,89956,,,0.1,10780,,,,0.060683285,6884.458042,113449,,,33.84021879,110,325057,27.5162038,40.16423379,,,,,,,50.14521218,32.12898363,74.61210086,,,,35.48723542,28.22405146,44.04901615,,,,0.339,,,0.324,0.353,0.095742202,5752,60078,0.08144433,0.110040074,0.035895372,892,24850,0.025171968,0.046618777,0.001140713,121,106074,,,876.6446281,,,,,,0.0835108,549,6574,0.054191676,0.112829925,2.736868864,,,,,,,2.38763382,2.404810202,2.937489017,2.740569683,,,,,,,2.421972622,2.552526914,2.907374981,0.184955861,,,,,-1001.142258,,,,,0.734545978,45915,62508,0.689316093,0.779775863,70494,,,63489.23404,77498.76596,97500,59473.61702,135526.383,,,,34965,27318.02128,42611.97872,57962,49068.7234,66855.2766,74460,70254.04255,78665.95745,,,,,,0.542650054,9059,16694,,,60.25974438,,,,,0.327432122,,70494,,,3.160056881,20,6329,,,8.490372571,65,765573,6.552690303,10.82167681,,,,,,,35.32539101,25.23697724,48.10315629,14.57265684,7.529904438,25.45549881,2.190720473,1.131977236,3.826747793,,,,12.15956761,67,544686,9.343745617,15.55736911,12.30066497,,,,,,,,,,,,,12.67061038,9.276479273,16.90081862,,,,12.48425699,68,544686,9.694514042,15.8267705,,,,,,,37.45084577,25.26792837,53.46341102,18.42052381,9.195459119,32.95940537,6.944015802,4.576150169,10.10317842,,,,15.93577621,122,765573,13.10797173,18.76358069,,,,,,,17.6626955,10.78883328,27.27860068,,,,17.34320375,14.03168751,21.20116722,,,,5.775862069,,11600,,,67,,0.608227192,49902,82045,,,0.696,,,,,82.90160187,,,,,0.680791308,27634,40591,0.665506089,0.696076528,0.141541272,5578,39409,0.125295435,0.15778711,0.854647582,34691,40591,0.837801233,0.871493931,106074,,,,,0.225672644,23938,106074,,,0.178752569,18961,106074,,,0.147679922,15665,106074,,,0.004958802,526,106074,,,0.010935762,1160,106074,,,0.000584498,62,106074,,,0.122386259,12982,106074,,,0.697937289,74033,106074,,,0.010443013,1057,101216,0.007315698,0.013570328,0.504675981,53533,106074,,,0.284041227,30535,107502,, -17,093,17093,IL,Kendall County,2024,1,4460.778691,966,378516,4074.816111,4846.741271,0,,,,2,,,,2,7717.790375,5877.08205,9558.4987,,3932.418895,3126.26925,4738.56854,,4357.784464,3883.713293,4831.855636,,,,,2,,0.121,,,0.103,0.143,2.973743432,,,2.262379382,3.774443651,4.134473068,,,3.187078289,5.173349705,0.066629076,709,10641,0.061890762,0.071367391,0,,,,0.094562648,0.066677375,0.122447921,0.13648294,0.112107457,0.160858423,0.067240672,0.057301482,0.077179863,0.056881001,0.051405572,0.06235643,,,,,,,0.125,,,0.099,0.155,0.324,,,0.251,0.404,9.4,0.061358802,0.04,,,0.232,,,0.19,0.28,0.919571696,121263,131869,,,0.193651309,,,0.153034119,0.2399405,0.274509804,14,51,0.20156323,0.35030076,302.5,408,134867,,,6.76893973,229,33831,5.892223639,7.645655821,,,,,,,16.0497871,11.87372085,21.2186697,10.93394077,8.856527132,13.3522131,3.784247439,2.976550669,4.743586934,,,,,,,0.060526206,7258,119915,0.052185781,0.068866632,0.000296589,40,134867,,,3371.675,0.000393431,54,137254,,,2541.740741,0.001311437,180,137254,,,762.5222222,3018,,,,,,,4047,2178,2792,0.44,,,,,,0.36,0.39,0.4,0.45,0.54,,,,,,0.69,0.4,0.41,0.55,0.933929265,79299,84909,0.920379459,0.947479072,0.770037414,29226,37954,0.717615533,0.822459295,0.040285234,2949,73203,,,0.071,2573,,0.054319149,0.087680851,,,,0.064757161,0,0.203507656,0.195277021,0.093927261,0.296626781,0.097531933,0.044140896,0.150922971,0.025984873,0.009569024,0.042400722,2.906457443,172071,59203,2.688087132,3.124827754,0.169587938,6231,36742,0.136376001,0.202799874,5.042004345,68,134867,,,44.70975659,290,648628,39.56387987,49.85563332,,,,,,,71.94984068,50.11570028,100.0648111,32.0148793,23.07350901,43.27481632,47.08227685,40.6370739,53.52747981,,,,10.1,,,,,1,,,,,0.121497585,5030,41400,0.099760536,0.143234633,0.105550832,0.084556496,0.126545168,0.014855073,0.008857625,0.02085252,0.00736715,0.002355622,0.012378678,0.790321396,53779,68047,0.767282179,0.813360612,,,,,,,0.596824167,0.546865085,0.64678325,0.706595365,0.646803961,0.76638677,0.714291002,0.677806954,0.75077505,0.536,,68047,0.497612587,0.574387413,80.58942044,,,80.0963881,81.08245277,,,,85.2885562,80.70696919,89.87014321,75.76575166,73.84101572,77.69048759,82.31903159,80.26646934,84.37159383,80.62264,80.06784611,81.1774339,,,,246.5199003,966,378516,230.9310401,262.1087605,,,,,,,387.2418276,309.8648009,464.6188543,225.0080983,180.7477566,269.2684399,243.697717,225.7162649,261.6791691,,,,25.04037761,40,159742,17.88921288,34.0978872,,,,,,,78.30853563,37.55198666,144.0121851,,,,22.87116258,14.33323583,34.62721501,,,,4.094165814,44,10747,2.974827148,5.496226508,,,,,,,,,,,,,3.211393466,2.035747981,4.818666978,,,,,,,0.09,,,0.077,0.105,0.136,,,0.118,0.157,0.083,,,0.07,0.098,57.5,63,109581,,,0.04,5220,,,,0.061358802,7040.063488,114736,,,11.91396596,47,394495,8.753934059,15.84304905,,,,,,,,,,,,,12.29279911,8.40826549,17.35376451,,,,0.316,,,0.301,0.33,0.075715527,6275,82876,0.063800633,0.08763042,0.027968622,1091,39008,0.019628196,0.036309047,0.000371574,51,137254,,,2691.254902,,,,,,0.091034138,728,7997,0.057628563,0.124439712,3.253204048,,,,,,3.724751678,2.828582599,2.907585914,3.418613667,3.015416731,,,,,,3.535504992,2.446113316,2.719062919,3.192425885,0.044283175,,,,,2154.54454,,,,,0.822344735,58472,71104,0.767472964,0.877216505,102509,,,97853.85106,107164.1489,,,,149524,114445.3617,184602.6383,81470,55789.82979,107150.1702,90817,86189.25532,95444.74468,110522,106134.9362,114909.0638,,,,,,0.254972814,7550,29611,,,36.28823128,,,,,0.275370943,,102509,,,3.016045361,25,8289,,,3.457205374,31,896678,2.349003319,4.907227065,,,,,,,19.89258007,10.59196109,34.01691775,,,,1.965106263,1.015399082,3.432645172,,,,10.06611502,64,648628,7.735079164,12.87893384,9.866980766,,,,,,,,,,,,,9.849182172,7.098424188,13.31323306,,,,6.783549276,44,648628,4.928937289,9.106598278,,,,,,,24.66851681,12.74658261,43.09093442,,,,5.282401793,3.348589607,7.926196325,,,,9.144865827,82,896678,7.273183179,11.35118974,,,,,,,,,,9.700704728,5.651017986,15.53176799,9.33425475,7.069673393,12.0936097,,,,9.217877095,,17900,,,165,,0.74740347,63974,85595,,,0.807,,,,,50.89933854,,,,,0.840945349,36899,43878,0.818231609,0.863659088,0.092431362,4013,43416,0.073637787,0.111224936,0.936095538,41074,43878,0.919754826,0.952436249,137254,,,,,0.267096041,36660,137254,,,0.112943885,15502,137254,,,0.085345418,11714,137254,,,0.0064479,885,137254,,,0.039590832,5434,137254,,,0.000794148,109,137254,,,0.226485203,31086,137254,,,0.630101855,86484,137254,,,0.022533877,2807,124568,0.015667181,0.029400573,0.499038279,68495,137254,,,0.113703752,14994,131869,, -17,095,17095,IL,Knox County,2024,1,8945.37896,920,133586,7992.481297,9898.276623,0,,,,2,,,,2,11277.38095,8225.799047,15090.02299,,8226.522021,4875.558319,13001.45146,1,8917.709526,7837.401534,9998.017519,,,,,2,,0.176,,,0.148,0.209,4.009093649,,,3.135010339,4.935819582,5.32722681,,,4.220368129,6.488724482,0.079223929,294,3711,0.070534009,0.087913849,0,,,,,,,0.106508876,0.079656043,0.133361709,0.064748201,0.035820641,0.093675762,0.075218023,0.065364025,0.085072022,,,,0.082706767,0.035895018,0.129518516,0.199,,,0.158,0.245,0.42,,,0.338,0.5,7.5,0.087116606,0.116,,,0.304,,,0.252,0.362,0.759361178,37943,49967,,,0.158508263,,,0.124899994,0.1963282,0.285714286,8,28,0.18563205,0.389524284,468.9,231,49268,,,20.69726796,225,10871,17.99282495,23.40171097,,,,,,,34.07601573,22.25958482,49.9292583,34.88372093,22.9885919,50.75398249,18.22004205,15.36085119,21.07923291,,,,27.88844622,15.24687306,46.79207395,0.072056289,2550,35389,0.061332884,0.082779693,0.000487132,24,49268,,,2052.833333,0.000349507,17,48640,,,2861.176471,0.00182977,89,48640,,,546.5168539,2850,,,,,,,1595,,2911,0.45,,,,,,,0.38,0.2,0.46,0.53,,,,,,,0.46,0.44,0.53,0.887645607,30938,34854,0.872353936,0.902937279,0.583985233,6644,11377,0.538139152,0.629831315,0.051776039,1032,19932,,,0.197,1870,,0.135042553,0.258957447,,,,,,,0.549351944,0.38024086,0.718463029,0.23814433,0.142651716,0.333636944,0.118246545,0.087311937,0.149181152,5.284573503,101913,19285,4.776655302,5.792491704,0.238311623,2360,9903,0.186617709,0.290005536,14.4109767,71,49268,,,74.76785786,186,248770,64.02265702,85.5130587,,,,,,,89.78003891,53.20934102,141.891168,,,,77.65264361,65.58246339,89.72282383,,,,8.7,,,,,0,,,,,0.12824278,2620,20430,0.108726902,0.147758658,0.113366584,0.093893213,0.132839954,0.013705335,0.007228457,0.020182214,0.006118453,0.002458574,0.009778333,0.804319083,16425,20421,0.77813275,0.830505416,,,,,,,0.576736672,0.417772008,0.735701337,0.763233879,0.64125359,0.885214167,0.81516184,0.790636084,0.839687596,0.228,,20421,0.201652185,0.254347815,75.48836938,,,74.74306122,76.23367753,,,,,,,71.89829502,69.04131382,74.75527623,77.05547524,73.00558269,81.10536779,75.4773292,74.65131552,76.30334289,,,,470.9944979,920,133586,438.1336439,503.8553519,,,,,,,657.3954146,497.9048672,851.7320106,386.2264007,254.5256318,561.9391354,470.1866406,434.5438422,505.829439,,,,26.69573536,12,44951,13.79407601,46.63207726,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.124,,,0.106,0.145,0.173,,,0.149,0.198,0.106,,,0.09,0.123,205.9,87,42264,,,0.116,5830,,,,0.087116606,4610.123665,52919,,,19.59194703,29,148020,13.12103441,28.13730404,,,,,,,,,,,,,17.30759721,10.71367546,26.45650085,,,,0.359,,,0.343,0.374,0.088577452,2269,25616,0.074279579,0.102875324,0.029964004,308,10279,0.020432089,0.039495919,0.001254112,61,48640,,,797.3770492,,,,,,,,,,,2.920657379,,,,,,,,2.635830805,3.015146602,2.666732757,,,,,,,2.153130715,2.403433454,2.788105201,0.099718837,,,,,4939.3681,,,,,0.803428063,41530,51691,0.744558783,0.862297343,57666,,,51626.34043,63705.65957,,,,,,,23292,13723.14894,32860.85106,48617,32359.12766,64874.87234,53473,49946.19149,56999.80851,,,,,,0.572376543,3709,6480,,,51.32295056,,,,,0.292078521,,57666,,,2.487562189,7,2814,,,,,,,,,,,,,,,,,,,,,,,,,,13.14568753,33,248770,8.869340176,18.76628635,13.2652651,,,,,,,,,,,,,14.10832081,9.130161352,20.82666464,,,,7.235599148,18,248770,4.288274623,11.43536611,,,,,,,,,,,,,7.325721095,4.100150486,12.08266289,,,,13.66941099,48,351149,10.07874459,18.12365582,,,,,,,,,,,,,14.47357539,10.43128006,19.56406927,,,,11.39534884,,4300,,,49,,0.593182109,23143,39015,,,0.7,,,,,74.58831905,,,,,0.687084017,14246,20734,0.668571105,0.705596928,0.134200208,2704,20149,0.113610553,0.154789864,0.791646571,16414,20734,0.769375588,0.813917554,48640,,,,,0.199856086,9721,48640,,,0.225082237,10948,48640,,,0.082257401,4001,48640,,,0.004337993,211,48640,,,0.00988898,481,48640,,,0.000493421,24,48640,,,0.064432566,3134,48640,,,0.814021382,39594,48640,,,0.008193407,385,46989,0.004104916,0.012281898,0.48957648,23813,48640,,,0.322612925,16120,49967,, -17,097,17097,IL,Lake County,2024,1,5355.117782,6519,1974316,5153.817811,5556.417754,0,,,,2,1836.71281,1437.613098,2235.812523,,13207.652,12020.74886,14394.55515,,5275.41888,4877.618275,5673.219485,,5004.376592,4746.919038,5261.834146,,,,,2,,0.13,,,0.108,0.154,2.907366525,,,2.246682525,3.611172542,4.14145001,,,3.282664044,4.9792819,0.077118747,3820,49534,0.074769345,0.079468148,0,,,,0.091792132,0.082973357,0.100610907,0.146824439,0.136044362,0.157604515,0.073767925,0.069713672,0.077822179,0.063201213,0.060062316,0.066340109,,,,0.101152369,0.080004743,0.122299995,0.119,,,0.092,0.149,0.312,,,0.253,0.369,8.9,0.059520755,0.065,,,0.233,,,0.191,0.276,0.981823832,701358,714342,,,0.177426591,,,0.14472523,0.211570242,0.337962963,73,216,0.304115957,0.371895643,448.8,3192,711239,,,9.526436989,1692,177611,9.072509596,9.980364381,,,,,,,23.53560418,20.92819462,26.14301374,19.22682813,18.0537583,20.39989797,2.546847727,2.219118587,2.874576867,,,,10.99495314,8.410267945,14.12347727,0.077602137,45439,585538,0.070453201,0.084751073,0.00106434,757,711239,,,939.5495377,0.001181696,838,709150,,,846.2410501,0.003536628,2508,709150,,,282.7551834,2665,,,,,,1224,5054,2544,2589,0.44,,,,,,0.38,0.4,0.33,0.46,0.57,,,,,,0.55,0.38,0.42,0.59,0.907978044,426934,470203,0.903398898,0.912557189,0.7243179,123100,169953,0.706524739,0.742111061,0.041889995,15248,364001,,,0.102,16332,,0.080553192,0.123446809,0.225016545,0.091852262,0.358180829,0.04235001,0.023261756,0.061438265,0.316209317,0.248254505,0.38416413,0.185893962,0.162782864,0.209005059,0.035321962,0.028241599,0.042402326,4.769344561,209565,43940,4.585774048,4.952915073,0.187819951,31516,167799,0.172478109,0.203161794,8.042303642,572,711239,,,51.1450005,1793,3505719,48.77761429,53.51238671,,,,14.11777669,10.1311603,19.15235821,107.2756152,94.18538654,120.3658438,32.01276446,28.06019982,35.96532909,57.64096565,54.40911178,60.87281953,,,,9.8,,,,,1,,,,,0.146088425,36330,248685,0.140105884,0.152070966,0.124913635,0.118485862,0.131341409,0.022618976,0.01972116,0.025516792,0.005126968,0.003987137,0.006266799,0.70271058,253155,360255,0.693322333,0.712098827,0.756282272,0.654673741,0.857890803,0.664182826,0.636013859,0.692351794,0.677778232,0.635342097,0.720214368,0.729045803,0.713448865,0.744642741,0.742691835,0.73232582,0.753057851,0.442,,360255,0.430509693,0.453490307,80.69959562,,,80.48746152,80.91172973,,,,90.73556508,89.07498883,92.39614134,72.83358548,71.88675189,73.78041907,82.87635698,81.88165236,83.8710616,80.79721771,80.54819215,81.04624327,,,,266.1972066,6519,1974316,259.5224159,272.8719972,,,,103.1924761,88.22465901,118.1602931,587.88386,547.4238067,628.3439134,273.9011158,255.5096469,292.2925848,256.7058296,248.5434664,264.8681927,,,,33.61027491,253,752746,29.46867755,37.75187228,,,,19.21075802,9.926479002,33.55732818,105.6263643,80.60404364,135.9620685,37.36843198,30.04863216,45.93214714,23.28907496,18.60248591,28.79730184,,,,4.2941386,217,50534,3.72278856,4.86548864,,,,,,,12.08665907,9.053737043,15.80964765,5.189990732,4.139739867,6.425561679,2.863760792,2.22382231,3.630499185,,,,,,,0.089,,,0.075,0.104,0.136,,,0.115,0.156,0.091,,,0.076,0.106,145.6,871,598177,,,0.065,46520,,,,0.059520755,41870.58927,703462,,,16.27511996,342,2101367,14.55020687,18.00003304,,,,,,,48.46235859,37.77878602,61.22927461,8.368936183,5.978890706,11.39611576,17.87234854,15.53702833,20.20766875,,,,0.303,,,0.291,0.316,0.097309771,40863,419927,0.087777856,0.106841685,0.029787015,5218,175177,0.022638079,0.036935952,0.000967355,686,709150,,,1033.746356,,,,,,0.050199468,2265,45120,0.035902413,0.064496524,3.127775866,,,,,,3.920894863,2.292073872,2.560461184,3.515462086,3.092269507,,,,,,4.213130673,1.986189109,2.485913934,3.508931622,0.236045585,,,,,9512.945091,,,,,0.78895318,60949,77253,0.759253144,0.818653215,101621,,,97940.48936,105301.5106,80082,61603.19149,98560.80851,145330,138080.9787,152579.0213,57483,51386.14894,63579.85106,74657,71821.25532,77492.74468,117502,115390.6809,119613.3192,,,,,,0.316441074,37803,119463,,,60.66072905,,,,,0.277777231,,101621,,,3.732745447,149,39917,,,3.073681228,151,4912676,2.583421271,3.563941185,,,,,,,23.43163746,18.55104804,29.20281155,2.758014561,1.860820842,3.937237278,1.299999567,0.924426775,1.777142203,,,,9.664863468,345,3505719,8.619641667,10.71008527,9.841062561,,,,5.936307074,3.45811763,9.504602685,8.406074823,5.203492805,12.84957831,4.70828427,3.29762442,6.518250036,11.89253888,10.36407315,13.42100461,,,,6.189885727,217,3505719,5.366299954,7.0134715,,,,,,,31.18477185,24.5288013,39.09038156,3.429939049,2.260351446,4.990381237,5.188630296,4.21898598,6.158274612,,,,7.144782192,351,4912676,6.397316081,7.892248303,,,,,,,13.34713526,9.735492046,17.8595171,7.170837857,5.668249755,8.949530177,7.1999976,6.239797941,8.160197259,,,,4.363411619,,80900,,,353,,0.706968626,334177,472690,,,0.748,,,,,94.86405794,,,,,0.738039357,188048,254794,0.73004393,0.746034784,0.127712223,31896,249749,0.121324736,0.134099711,0.928145875,236486,254794,0.922706797,0.933584953,709150,,,,,0.228666714,162159,709150,,,0.160745964,113993,709150,,,0.069588945,49349,709150,,,0.009085525,6443,709150,,,0.093028273,65971,709150,,,0.000970176,688,709150,,,0.235174505,166774,709150,,,0.584378481,414412,709150,,,0.042921827,28950,674482,0.040419545,0.04542411,0.496131989,351832,709150,,,0.014152885,10110,714342,, -17,099,17099,IL,La Salle County,2024,1,8634.975242,1807,297571,7974.945617,9295.004867,0,,,,2,,,,2,10475.9919,6307.231465,16359.55904,1,5685.159217,4205.912086,7516.081983,,9017.095917,8273.208274,9760.98356,,,,,2,,0.153,,,0.128,0.181,3.584577533,,,2.758772244,4.479548396,4.718053612,,,3.695181504,5.826946484,0.075901804,606,7984,0.070092409,0.081711199,0,,,,,,,0.126262626,0.079997757,0.172527496,0.077054795,0.061760747,0.092348842,0.07495286,0.068483415,0.081422305,,,,0.067114094,0.026936487,0.107291701,0.175,,,0.136,0.216,0.36,,,0.286,0.44,7.9,0.075213263,0.104,,,0.288,,,0.235,0.345,0.776623685,85163,109658,,,0.170515776,,,0.136316647,0.208605577,0.368421053,28,76,0.310721389,0.425415551,255.1,278,108965,,,20.39735099,462,22650,18.53736852,22.25733347,,,,,,,36.40256959,21.20583827,58.28404029,26.42934196,21.45661733,32.20890245,18.41255453,16.4107188,20.41439026,,,,38.96103896,24.11749719,59.55608671,0.070614184,6051,85691,0.061082269,0.080146098,0.000376268,41,108965,,,2657.682927,0.000545902,59,108078,,,1831.830509,0.00114732,124,108078,,,871.5967742,2630,,,,,,4363,,2529,2625,0.45,,,,,,0.52,0.5,0.32,0.45,0.43,,,,,,0.5,0.33,0.32,0.43,0.910824656,70588,77499,0.903030864,0.918618448,0.614984391,16548,26908,0.580390542,0.649578241,0.048721049,2539,52113,,,0.215,4735,,0.172106383,0.257893617,,,,0.069672131,0,0.411506668,0.474276527,0.226685813,0.721867242,0.327032626,0.247483335,0.406581916,0.183569802,0.152994138,0.214145466,4.420652364,126718,28665,4.141938228,4.699366499,0.233221332,5414,23214,0.201155467,0.265287197,12.66461708,138,108965,,,95.64862989,521,544702,87.43536248,103.8618973,,,,,,,89.57486392,47.69484249,153.1757453,52.23907483,34.98532827,75.02402536,102.8370023,93.58877114,112.0852334,,,,9.7,,,,,1,,,,,0.11454868,5165,45090,0.103257863,0.125839498,0.099641336,0.087642046,0.111640626,0.014859171,0.009781234,0.019937108,0.005211799,0.002983258,0.00744034,0.846320009,43489,51386,0.831008744,0.861631274,,,,,,,,,,0.847770701,0.794766517,0.900774885,0.840904393,0.824127604,0.857681181,0.327,,51386,0.305920401,0.348079599,76.11595336,,,75.5867763,76.64513043,,,,,,,71.25702048,67.37156956,75.1424714,81.48478387,78.83234413,84.13722362,75.75880586,75.18256133,76.33505039,,,,430.1374996,1807,297571,409.1102201,451.1647791,,,,,,,549.9002551,359.2131036,805.7312831,279.3458447,216.4891927,354.7593483,446.6620263,423.600568,469.7234846,,,,57.87264095,59,101948,44.05533569,74.65149033,,,,,,,,,,,,,56.74124702,41.22827695,76.1724757,,,,7.727216975,63,8153,5.937805691,9.886467225,,,,,,,,,,,,,6.917755573,5.045858384,9.256501229,,,,,,,0.113,,,0.096,0.131,0.163,,,0.139,0.188,0.096,,,0.081,0.112,84.9,79,93105,,,0.104,11430,,,,0.075213263,8568.595794,113924,,,29.51984133,96,325205,23.91116625,36.04877877,,,,,,,,,,,,,30.55245384,24.36983372,37.82601679,,,,0.336,,,0.32,0.352,0.083970315,5284,62927,0.072055421,0.095885208,0.035439458,852,24041,0.024716053,0.046162862,0.000721701,78,108078,,,1385.615385,,,,,,0.049899836,274,5491,0.029665894,0.070133778,2.863257456,,,,,,,2.397703302,2.656458235,2.953675679,2.776188771,,,,,,,2.048101733,2.503594653,2.883886497,0.060931816,,,,,3940.778124,,,,,0.680468925,42547,62526,0.641262853,0.719674997,64711,,,59914.06383,69507.93617,41528,26313.87234,56742.12766,83026,40354,125698,54450,35206.25532,73693.74468,63293,57616.74468,68969.25532,69532,67115.65957,71948.34043,,,,,,0.45327802,6665,14704,,,58.73780746,,,,,0.260280323,,64711,,,2.991524015,18,6017,,,2.347794443,18,766677,1.391451782,3.710527415,,,,,,,,,,,,,2.145314404,1.172863348,3.599473038,,,,16.78433463,93,544702,13.40673036,20.75408969,17.07355582,,,,,,,,,,,,,18.26142604,14.3879267,22.8568978,,,,7.71063811,42,544702,5.557149732,10.42254274,,,,,,,,,,,,,8.226960182,5.821886668,11.29214562,,,,14.8693648,114,766677,12.13978333,17.59894628,,,,,,,,,,13.10530109,6.284501273,24.10111532,15.6301478,12.59682192,18.66347368,,,,8.518518519,,10800,,,92,,0.640466089,53591,83675,,,0.729,,,,,50.14636551,,,,,0.733503213,33103,45130,0.720076121,0.746930305,0.112023287,4926,43973,0.097755648,0.126290927,0.854243297,38552,45130,0.837317148,0.871169446,108078,,,,,0.208099706,22491,108078,,,0.200447825,21664,108078,,,0.026194045,2831,108078,,,0.003904587,422,108078,,,0.010473917,1132,108078,,,0.000481134,52,108078,,,0.110244453,11915,108078,,,0.838810859,90657,108078,,,0.011666361,1210,103717,0.008522081,0.014810642,0.492200078,53196,108078,,,0.315991537,34651,109658,, -17,101,17101,IL,Lawrence County,2024,1,9792.256456,282,42635,7886.558503,11697.95441,0,,,,2,,,,2,,,,2,,,,2,11069.51382,8789.180359,13349.84728,,,,,2,,0.181,,,0.152,0.214,4.011851943,,,3.126605297,5.000514138,4.84148937,,,3.802075608,5.922537826,0.094791667,91,960,0.07626148,0.113321854,0,,,,,,,,,,,,,0.094874591,0.0759075,0.113841683,,,,,,,0.206,,,0.165,0.25,0.379,,,0.298,0.464,7.7,0.078899505,0.112,,,0.308,,,0.256,0.363,0.522840314,7989,15280,,,0.176160874,,,0.138644254,0.21725962,0.058823529,1,17,0.002556547,0.2046995,231,35,15152,,,29.89352989,73,2442,23.4317555,37.58662579,,,,,,,,,,,,,30.62117235,23.87070608,38.68800911,,,,,,,0.06922928,715,10328,0.058505875,0.079952684,0.000197994,3,15152,,,5050.666667,6.70511E-05,1,14914,,,14914,0.005095883,76,14914,,,196.2368421,3518,,,,,,,,,3446,0.4,,,,,,,,,0.4,0.46,,,,,,,0.36,,0.46,0.851517341,9428,11072,0.83393151,0.869103173,0.500818714,2141,4275,0.449953511,0.551683916,0.055523086,285,5133,,,0.2,542,,0.12493617,0.27506383,,,,,,,0.657657658,0.427947221,0.887368094,,,,0.17903596,0.11266792,0.245404001,4.387458048,120269,27412,3.395479472,5.379436623,0.240554593,694,2885,0.15117864,0.329930546,16.49947202,25,15152,,,88.20145724,69,78230,68.62599841,111.6245892,,,,,,,,,,,,,97.22306617,74.87360781,124.151685,,,,8.8,,,,,0,,,,,0.070559611,435,6165,0.048325928,0.092793293,0.050968898,0.032272729,0.069665067,0.01540957,0.002467936,0.028351205,0.006326034,0.000339083,0.012312985,0.825612622,4919,5958,0.758320788,0.892904455,,,,,,,,,,,,,0.827635668,0.776986055,0.878285282,0.302,,5958,0.234525504,0.369474496,74.93352007,,,73.47275104,76.39428911,,,,,,,,,,,,,74.01476737,72.36620242,75.66333232,,,,498.9441982,282,42635,438.568427,559.3199695,,,,,,,,,,,,,527.2006394,459.6958429,594.705436,,,,77.93017456,10,12832,37.37054782,143.3163657,,,,,,,,,,,,,85.32423208,40.9162858,156.9143007,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.126,,,0.107,0.146,0.167,,,0.144,0.193,0.106,,,0.089,0.123,60.7,8,13170,,,0.112,1720,,,,0.078899505,1328.115371,16833,,,,,,,,,,,,,,,,,,,,,,,,,,0.347,,,0.331,0.362,0.084658188,639,7548,0.070360315,0.09895606,0.029069767,85,2924,0.019537853,0.038601682,0.00060346,9,14914,,,1657.111111,,,,,,,,,,,3.064221311,,,,,,,,,3.123602027,2.835742645,,,,,,,,,2.866861689,0.060354595,,,,,250.48975,,,,,0.674022281,37692,55921,0.571369931,0.776674632,57460,,,51046.21277,63873.78723,,,,,,,66213,65643.46809,66782.53192,,,,54912,47863.14894,61960.85106,,,,,,0.567396594,1166,2055,,,66.61880413,,,,,0.293125653,,57460,,,3.994673768,3,751,,,,,,,,,,,,,,,,,,,,,,,,,,18.03923911,14,78230,9.862219885,30.266778,17.89594785,,,,,,,,,,,,,20.45398859,10.21055741,36.59783557,,,,,,,,,,,,,,,,,,,,,,,,,,,18.00212425,20,111098,10.99616517,27.80282085,,,,,,,,,,,,,19.22809866,11.39578988,30.38868562,,,,,,1300,,,-888,,0.505400079,6411,12685,,,0.598,,,,,32.01967638,,,,,0.748802064,4063,5426,0.717373243,0.780230886,0.062098501,319,5137,0.042211138,0.081985864,0.857537781,4653,5426,0.82880687,0.886268692,14914,,,,,0.185664476,2769,14914,,,0.186804345,2786,14914,,,0.097157034,1449,14914,,,0.005632292,84,14914,,,0.00549819,82,14914,,,0.000469358,7,14914,,,0.040565911,605,14914,,,0.843435698,12579,14914,,,0.013180476,192,14567,0.00349846,0.022862493,0.437240177,6521,14914,,,0.696858639,10648,15280,, -17,103,17103,IL,Lee County,2024,1,6888.04688,560,92977,5948.345806,7827.747954,0,,,,2,,,,2,6870.853203,3550.270112,12001.99781,1,,,,2,7196.88144,6147.20591,8246.556971,,,,,2,,0.155,,,0.129,0.183,3.656554588,,,2.849953204,4.636829981,4.628703558,,,3.675691831,5.697156135,0.063386525,143,2256,0.053331916,0.073441134,0,,,,,,,,,,0.059139785,0.025239604,0.093039966,0.061203844,0.050637427,0.071770261,,,,,,,0.177,,,0.139,0.218,0.371,,,0.288,0.457,8.2,0.058449932,0.098,,,0.273,,,0.22,0.327,0.712051545,24313,34145,,,0.171071194,,,0.13381245,0.212162362,0.47826087,11,23,0.376622098,0.570307191,211.5,72,34049,,,14.96138996,93,6216,12.07577264,18.32871349,,,,,,,,,,,,,15.10288843,11.97565124,18.79685199,,,,,,,0.064150943,1581,24645,0.054619029,0.073682858,0.000734236,25,34049,,,1361.96,0.000472702,16,33848,,,2115.5,0.007238242,245,33848,,,138.155102,2771,,,,,,,,8100,2659,0.42,,,,,,,,0.44,0.42,0.45,,,,,,,0.33,0.33,0.45,0.900299341,22557,25055,0.886222816,0.914375867,0.595817231,5242,8798,0.537206487,0.654427976,0.039532794,660,16695,,,0.135,870,,0.089723404,0.180276596,,,,,,,0.448648649,0.148717794,0.748579504,0.053084649,0,0.109986658,0.153276765,0.099991256,0.206562274,4.669518758,120609,25829,4.100165488,5.238872028,0.202606635,1368,6752,0.150629811,0.254583459,12.62885841,43,34049,,,78.04202534,133,170421,64.77850577,91.30554491,,,,,,,,,,,,,84.97690547,70.01984875,99.93396219,,,,9.5,,,,,1,,,,,0.119178585,1625,13635,0.094768922,0.143588247,0.090132548,0.067975376,0.11228972,0.006967363,0.000821331,0.013113396,0.032269894,0.015927856,0.048611931,0.842386994,12747,15132,0.824697645,0.860076344,,,,,,,,,,0.817561807,0.777239894,0.857883721,0.837945257,0.801812108,0.874078406,0.284,,15132,0.248295058,0.319704942,77.74284457,,,76.88700402,78.59868512,,,,,,,72.51116188,68.81867078,76.20365299,82.44340032,76.05536657,88.83143406,77.50041171,76.58339604,78.41742739,,,,397.6426594,560,92977,362.8859728,432.3993461,,,,,,,437.7407362,259.4329029,691.8190846,,,,409.7224172,371.7130446,447.7317899,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.113,,,0.095,0.131,0.159,,,0.136,0.184,0.096,,,0.08,0.112,85.1,25,29392,,,0.098,3370,,,,0.058449932,2106.009516,36031,,,20.63030494,21,101792,12.77048391,31.53561256,,,,,,,,,,,,,23.0584763,14.08471636,35.61194648,,,,0.331,,,0.315,0.347,0.076824868,1384,18015,0.064909975,0.088739762,0.031056794,216,6955,0.021524879,0.040588709,0.000974947,33,33848,,,1025.69697,,,,,,,,,,,2.62450427,,,,,,,,,2.653912788,2.525446955,,,,,,,,,2.560161123,0.038610023,,,,,5077.071,,,,,0.722905654,43897,60723,0.644097616,0.801713691,67371,,,59366.57447,75375.42553,23393,3248.489362,43537.51064,,,,,,,67139,50740.53192,83537.46809,64026,60405.06383,67646.93617,,,,,,0.458644743,1841,4014,,,40.17573494,,,,,0.250003711,,67371,,,4.105571848,7,1705,,,,,,,,,,,,,,,,,,,,,,,,,,19.02956979,34,170421,12.92966942,27.01095533,19.95059294,,,,,,,,,,,,,19.30513959,12.61075812,28.28650242,,,,9.975296472,17,170421,5.810977796,15.97141597,,,,,,,,,,,,,10.27946437,5.753338176,16.95441323,,,,12.95683285,31,239256,8.803539297,18.39118998,,,,,,,,,,,,,14.10986231,9.449596233,20.26411591,,,,6.451612903,,3100,,,20,,0.60651008,16397,27035,,,0.747,,,,,62.47479559,,,,,0.708244934,9681,13669,0.68109628,0.735393587,0.102977574,1373,13333,0.079064378,0.126890771,0.834150267,11402,13669,0.805875739,0.862424795,33848,,,,,0.195993855,6634,33848,,,0.211533916,7160,33848,,,0.055246987,1870,33848,,,0.004638383,157,33848,,,0.008892697,301,33848,,,0.000531789,18,33848,,,0.072175609,2443,33848,,,0.84870598,28727,33848,,,0.005287915,172,32527,0.001143623,0.009432206,0.467294966,15817,33848,,,0.531790892,18158,34145,, -17,105,17105,IL,Livingston County,2024,1,8716.127091,611,97434,7646.253613,9786.000569,0,,,,2,,,,2,,,,2,,,,2,9189.896624,8004.242028,10375.55122,,,,,2,,0.161,,,0.135,0.191,3.822178516,,,2.957901268,4.799115614,4.866496601,,,3.775531434,6.056145163,0.082536309,233,2823,0.072385104,0.092687514,0,,,,,,,,,,0.109756098,0.061914797,0.157597398,0.079029734,0.068570649,0.089488819,,,,,,,0.19,,,0.151,0.234,0.389,,,0.305,0.473,8.1,0.064947944,0.099,,,0.292,,,0.242,0.351,0.675527014,24194,35815,,,0.169532526,,,0.132626109,0.208049203,0.302325581,13,43,0.222432688,0.383807328,179.5,64,35664,,,19.85714286,139,7000,16.55599154,23.15829417,,,,,,,,,,28.1124498,15.3693379,47.1679139,18.95500247,15.49057881,22.41942614,,,,,,,0.069172154,1870,27034,0.058448749,0.079895558,0.000476671,17,35664,,,2097.882353,0.000450438,16,35521,,,2220.0625,0.002308494,82,35521,,,433.1829268,2716,,,,,,,,,2685,0.52,,,,,,,,,0.53,0.52,,,,,,,0.28,0.52,0.52,0.905162494,22811,25201,0.893600111,0.916724877,0.560022844,4903,8755,0.507035968,0.613009721,0.039596925,613,15481,,,0.158,1188,,0.109148936,0.206851064,,,,,,,0.293413174,0.011791704,0.575034643,0.261075949,0.126267031,0.395884868,0.123214828,0.092681973,0.153747684,4.095933947,125012,30521,3.806867692,4.385000202,0.316758277,2478,7823,0.26624905,0.367267503,17.10408255,61,35664,,,104.4663557,187,179005,89.49325612,119.4394553,,,,,,,,,,,,,111.5571999,95.12230072,127.992099,,,,9.3,,,,,1,,,,,0.123912287,1780,14365,0.101681757,0.146142817,0.102270346,0.080647688,0.123893004,0.013922729,0.00698803,0.020857428,0.018447616,0.00872612,0.028169111,0.80559961,13207,16394,0.77604541,0.835153809,,,,,,,,,,0.66093929,0.520328664,0.801549915,0.822859004,0.790128619,0.855589388,0.269,,16394,0.232762266,0.305237734,76.10495407,,,75.21645813,76.99345001,,,,,,,,,,101.7076997,52.64361989,150.7717796,75.65819104,74.71066981,76.60571227,,,,453.2927073,611,97434,415.4079509,491.1774638,,,,,,,,,,,,,471.2995589,430.4030147,512.1961032,,,,38.44106689,13,33818,20.46824913,65.73539511,,,,,,,,,,,,,38.07150521,19.00515823,68.12043925,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.118,,,0.1,0.137,0.168,,,0.144,0.194,0.096,,,0.082,0.113,152.1,46,30237,,,0.099,3540,,,,0.064947944,2529.7224,38950,,,33.731237,36,106726,23.6249437,46.69825018,,,,,,,,,,,,,34.93505256,24.04768272,49.06180251,,,,0.326,,,0.309,0.342,0.083333333,1612,19344,0.07022695,0.096439716,0.034768622,281,8082,0.024045217,0.045492026,0.00106979,38,35521,,,934.7631579,,,,,,,,,,,2.909414545,,,,,,,,2.761459906,2.964073725,2.880314087,,,,,,,,2.677208085,2.948547295,0.045915695,,,,,3608.198513,,,,,0.764967288,43379,56707,0.707390463,0.822544113,74418,,,67544.29787,81291.70213,,,,,,,,,,60739,51626.48936,69851.51064,68949,64880.06383,73017.93617,,,,,,0.408313408,2220,5437,,,46.45418633,,,,,0.226329651,,74418,,,1.506024096,3,1992,,,,,,,,,,,,,,,,,,,,,,,,,,18.27348856,33,179005,12.4159489,25.93775837,18.43523924,,,,,,,,,,,,,21.02602806,14.18617284,30.01596244,,,,10.61422865,19,179005,6.390459018,16.57543285,,,,,,,,,,,,,10.71453332,6.241610501,17.15500578,,,,17.4463327,44,252202,12.67653205,23.42088734,,,,,,,,,,,,,18.76683989,13.52548748,25.36731566,,,,4.857142857,,3500,,,17,,0.62,17174,27700,,,0.722,,,,,33.51116729,,,,,0.722945789,10602,14665,0.699283428,0.746608151,0.079546255,1129,14193,0.06055828,0.098534231,0.836072281,12261,14665,0.81194566,0.860198902,35521,,,,,0.216238282,7681,35521,,,0.202528082,7194,35521,,,0.036682526,1303,35521,,,0.004588835,163,35521,,,0.006869176,244,35521,,,0.000281524,10,35521,,,0.055347541,1966,35521,,,0.885053912,31438,35521,,,0.0020726,70,33774,0,0.005495502,0.492610005,17498,35521,,,0.645958397,23135,35815,, -17,107,17107,IL,Logan County,2024,1,7362.462111,439,77787,6262.683085,8462.241136,0,,,,2,,,,2,,,,2,,,,2,7690.866215,6484.10401,8897.62842,,,,,2,,0.148,,,0.123,0.176,3.497916267,,,2.752016696,4.309845486,4.75575648,,,3.719087735,5.911299788,0.083244963,157,1886,0.070777133,0.095712793,0,,,,,,,0.303030303,0.146229212,0.459831394,,,,0.077625571,0.065095745,0.090155397,,,,,,,0.174,,,0.137,0.216,0.364,,,0.282,0.454,8.2,0.072243541,0.091,,,0.272,,,0.221,0.328,0.667917247,18693,27987,,,0.180823286,,,0.1424658,0.223658001,0.28,7,25,0.173955028,0.39080618,503.7,141,27992,,,19.36848958,119,6144,15.88849679,22.84848238,,,,,,,,,,,,,20.77506992,16.78223003,24.76790981,,,,63.69426752,30.54387705,117.1360258,0.054576552,1053,19294,0.046236127,0.062916978,0.000285796,8,27992,,,3499,0.000543656,15,27591,,,1839.4,0.001196042,33,27591,,,836.0909091,3235,,,,,,,4736,,3169,0.49,,,,,,,,,0.5,0.42,,,,,,,0.33,,0.42,0.915186478,18085,19761,0.907393378,0.922979579,0.606106243,4427,7304,0.546100686,0.6661118,0.041853255,486,11612,,,0.17,885,,0.121148936,0.218851064,,,,,,,,,,0.334782609,0.163086168,0.506479049,0.115040477,0.072353518,0.157727437,4.234704182,121608,28717,3.691897153,4.777511212,0.264285714,1443,5460,0.18922948,0.339341949,13.2180623,37,27992,,,71.94596369,103,143163,58.05143266,85.84049473,,,,,,,,,,,,,78.98186674,64.0489733,96.35117938,,,,9.1,,,,,0,,,,,0.091240876,1000,10960,0.069341038,0.113140714,0.08049678,0.058478908,0.102514652,0.005839416,0.00017811,0.011500723,0.007755475,0.002664174,0.012846775,0.795627691,9608,12076,0.762014675,0.829240708,,,,,,,,,,,,,0.810359408,0.773259136,0.84745968,0.302,,12076,0.268873167,0.335126833,76.90631552,,,75.94681481,77.86581623,,,,,,,,,,,,,76.58532934,75.57004724,77.60061144,,,,415.3379054,439,77787,375.0753209,455.6004898,,,,,,,,,,,,,428.1371833,384.5529261,471.7214405,,,,43.45764855,11,25312,21.69390158,77.75773749,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.109,,,0.092,0.128,0.161,,,0.137,0.186,0.092,,,0.076,0.107,173.2,42,24255,,,0.091,2560,,,,0.072243541,2189.340508,30305,,,11.76567482,10,84993,5.642098404,21.6374949,,,,,,,,,,,,,13.75156424,6.594409571,25.28961625,,,,0.333,,,0.318,0.349,0.065079025,910,13983,0.05435562,0.075802429,0.028274875,158,5588,0.01874296,0.03780679,0.000942336,26,27591,,,1061.192308,,,,,,,,,,,3.05885187,,,,,,,,,3.047146703,3.082931229,,,,,,,,,3.102670614,0.072986167,,,,,4679.044833,,,,,0.823102897,46316,56270,0.737742601,0.908463193,53775,,,49703.68085,57846.31915,,,,,,,,,,,,,63244,59436,67052,,,,,,0.47698987,1648,3455,,,63.66806031,,,,,0.313212459,,53775,,,3.376097232,5,1481,,,,,,,,,,,,,,,,,,,,,,,,,,12.8193015,20,143163,7.718056917,20.01892725,13.97009004,,,,,,,,,,,,,14.97011451,8.872238614,23.65923493,,,,9.080558524,13,143163,4.835014977,15.52803163,,,,,,,,,,,,,10.58519864,5.636172466,18.10101204,,,,12.36497448,25,202184,8.001959526,18.25314154,,,,,,,,,,,,,13.81183674,8.849504417,20.55091825,,,,2,,2500,,,5,,0.576746204,13294,23050,,,0.701,,,,,45.61384216,,,,,0.706332763,7841,11101,0.681970029,0.730695496,0.080338664,854,10630,0.05941266,0.101264669,0.8375822,9298,11101,0.813575249,0.86158915,27591,,,,,0.193215179,5331,27591,,,0.195462288,5393,27591,,,0.073031061,2015,27591,,,0.003805589,105,27591,,,0.007429959,205,27591,,,0.000253706,7,27591,,,0.037693451,1040,27591,,,0.86452104,23853,27591,,,0.001089611,29,26615,0,0.004798842,0.488637599,13482,27591,,,0.500125058,13997,27987,, -17,109,17109,IL,McDonough County,2024,1,7378.891248,389,78881,6184.155271,8573.627226,0,,,,2,,,,2,21524.86841,12757.00119,34018.57202,1,,,,2,7151.67024,5899.627592,8403.712889,,,,,2,,0.163,,,0.134,0.192,3.876810975,,,2.988872208,4.84350146,5.061589696,,,3.925497825,6.254824176,0.071853052,133,1851,0.060088272,0.083617833,0,,,,,,,0.121052632,0.074670808,0.167434456,,,,0.067100977,0.054584457,0.079617498,,,,,,,0.186,,,0.145,0.231,0.389,,,0.303,0.474,7.5,0.098259859,0.112,,,0.287,,,0.232,0.345,0.794918863,21652,27238,,,0.170139961,,,0.133544501,0.209044127,0.25,3,12,0.099776571,0.4182543,764.1,205,26828,,,7.198333018,76,10558,5.671467691,9.009787172,,,,,,,,,,,,,7.605939877,5.844613038,9.731301133,,,,,,,0.066334992,1280,19296,0.055611588,0.077058396,0.000521843,14,26828,,,1916.285714,0.000335058,9,26861,,,2984.555556,0.00227095,61,26861,,,440.3442623,3521,,,,,,,,,3559,0.37,,,,,,,,,0.37,0.41,,,,,,,0.33,,0.41,0.944185212,15783,16716,0.933070198,0.955300225,0.710277214,4202,5916,0.63220554,0.788348889,0.041229855,527,12782,,,0.214,999,,0.142510638,0.285489362,,,,,,,0.328467153,0.102554674,0.554379632,0.226244344,0.056374683,0.396114005,0.192653481,0.136000596,0.249306365,5.953600945,100854,16940,4.932149205,6.975052684,0.202095808,945,4676,0.138574561,0.265617055,14.53705084,39,26828,,,68.22073501,100,146583,54.84947095,81.59199907,,,,,,,,,,,,,74.79839495,60.58694006,91.34164245,,,,8.4,,,,,1,,,,,0.201295896,2330,11575,0.164440269,0.238151523,0.179353124,0.137902165,0.220804082,0.009071274,0.00271503,0.015427519,0.020302376,0.007281543,0.033323209,0.772785011,9734,12596,0.749088055,0.796481967,,,,,,,,,,,,,0.823802805,0.7951264,0.85247921,0.197,,12596,0.165274149,0.228725852,77.31119039,,,76.30377891,78.31860188,,,,,,,,,,,,,77.34289414,76.29474564,78.39104263,,,,396.7560447,389,78881,354.4209393,439.09115,,,,,,,1001.894257,627.8817965,1516.879945,,,,389.166643,345.6397565,432.6935295,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.12,,,0.102,0.14,0.171,,,0.145,0.198,0.102,,,0.086,0.12,106,25,23595,,,0.112,3120,,,,0.098259859,3204.450508,32612,,,,,,,,,,,,,,,,,,,,,,,,,,0.34,,,0.321,0.359,0.077435131,1140,14722,0.063137259,0.091733003,0.032011566,155,4842,0.020096672,0.043926459,0.00085626,23,26861,,,1167.869565,,,,,,,,,,,2.626050142,,,,,,,2.232888979,,2.644737218,2.38690866,,,,,,,1.658795662,,2.453270696,0.07168967,,,,,2243.862333,,,,,0.756745053,40193,53113,0.645746899,0.867743208,52812,,,46130.12766,59493.87234,,,,,,,27647,17899.42553,37394.57447,25045,681.4255319,49408.57447,49945,45581.76596,54308.23404,,,,,,0.451054454,1433,3177,,,48.27215963,,,,,0.31892373,,52812,,,4.705882353,6,1275,,,,,,,,,,,,,,,,,,,,,,,,,,13.52164523,19,146583,7.876856637,21.64946388,12.96193965,,,,,,,,,,,,,14.54248518,8.312286798,23.61608484,,,,6.822073501,10,146583,3.271449415,12.54603606,,,,,,,,,,,,,7.791499474,3.73632685,14.32884494,,,,10.53074979,22,208912,6.599564827,15.94368174,,,,,,,,,,,,,11.46031729,7.094117028,17.51831235,,,,60.43478261,,2300,,,139,,0.499898271,12285,24575,,,0.639,,,,,49.80942961,,,,,0.612586207,7106,11600,0.587209676,0.637962738,0.169143983,1889,11168,0.129043388,0.209244578,0.790431035,9169,11600,0.766094471,0.814767598,26861,,,,,0.177469193,4767,26861,,,0.191132125,5134,26861,,,0.05625256,1511,26861,,,0.005249246,141,26861,,,0.023863594,641,26861,,,0.000186144,5,26861,,,0.032202822,865,26861,,,0.867800901,23310,26861,,,0.003368163,88,26127,0,0.007603656,0.503145825,13515,26861,,,0.425214774,11582,27238,, -17,111,17111,IL,McHenry County,2024,1,5442.505116,3158,869404,5135.189722,5749.82051,0,,,,2,2669.13421,1525.640823,4334.506735,1,7055.74711,4794.037839,10015.06982,,4669.139983,3928.859349,5409.420617,,5616.306181,5262.575534,5970.036829,,,,,2,,0.119,,,0.099,0.144,3.048391805,,,2.339512548,3.855521521,4.308760143,,,3.368532615,5.299243999,0.0653616,1409,21557,0.062062123,0.068661076,0,,,,0.098335855,0.075635445,0.121036264,0.112781955,0.081743177,0.143820733,0.070604209,0.063051379,0.078157039,0.06205869,0.058252734,0.065864646,,,,,,,0.129,,,0.098,0.164,0.302,,,0.237,0.373,9,0.064111477,0.059,,,0.251,,,0.205,0.303,0.938087671,291022,310229,,,0.188046422,,,0.150324425,0.229209342,0.396694215,48,121,0.352494993,0.440180038,223.7,696,311122,,,6.681606335,486,72737,6.087562052,7.275650619,,,,,,,17.21170396,10.51335593,26.58208081,18.76250259,16.53272069,20.99228448,3.362398131,2.867040824,3.857755438,,,,5.580923389,2.785976848,9.985813553,0.058951806,15409,261383,0.05180287,0.066100743,0.000449984,140,311122,,,2222.3,0.000689662,215,311747,,,1449.986047,0.002591845,808,311747,,,385.8254951,3434,,,,,,1413,4938,4086,3426,0.44,,,,,,0.35,0.41,0.34,0.44,0.54,,,,,,0.55,0.43,0.43,0.54,0.938925788,200317,213347,0.934367617,0.943483958,0.715546603,53993,75457,0.689888269,0.741204937,0.039976883,6848,171299,,,0.07,4801,,0.05093617,0.08906383,0.10619469,0,0.447799176,0.087445347,0,0.179426089,0.184313726,0.02994654,0.338680911,0.163690085,0.124481399,0.202898772,0.054408735,0.03964853,0.06916894,3.75290747,176837,47120,3.568472525,3.937342416,0.16259251,11600,71344,0.140746517,0.184438502,6.974755884,217,311122,,,60.68165728,936,1542476,56.79411093,64.56920364,,,,,,,,,,39.73318001,31.73745297,49.1306924,67.26081738,62.68764365,71.83399111,,,,7.8,,,,,0,,,,,0.112783614,12775,113270,0.103616922,0.121950307,0.098434104,0.089632067,0.107236141,0.015802949,0.011831432,0.019774466,0.004590801,0.002789215,0.006392386,0.766481188,124800,162822,0.755650338,0.777312038,,,,0.667721519,0.562712289,0.772730749,0.641367807,0.570522089,0.712213524,0.7420454,0.707030701,0.777060099,0.722943302,0.71345345,0.732433153,0.469,,162822,0.44993617,0.48806383,79.95923739,,,79.65096543,80.26750936,,,,87.53609108,84.28482136,90.78736081,89.51777786,70.04123499,108.9943207,84.79207241,82.53222476,87.05192006,79.61784803,79.28530883,79.95038724,,,,278.4307021,3158,869404,268.3432972,288.5181071,,,,133.9827639,96.14834457,181.762748,343.4045075,246.4330035,465.8669903,228.757349,194.8994778,262.6152201,288.6950295,277.4296353,299.9604236,,,,32.75268858,103,314478,26.42734072,39.07803645,,,,,,,,,,50.38604603,34.8938016,70.40944901,28.84234056,22.21211673,36.83102499,,,,4.198191548,91,21676,3.380121955,5.154448926,,,,,,,,,,5.63115908,3.607989877,8.378718347,3.853929745,2.947950882,4.950533985,,,,,,,0.092,,,0.078,0.108,0.142,,,0.12,0.165,0.081,,,0.068,0.096,61.6,162,262981,,,0.059,18480,,,,0.064111477,19795.05959,308760,,,17.51760411,162,924784,14.82003071,20.21517752,,,,,,,,,,9.857819905,5.248873927,16.85717226,19.56014132,16.36531824,22.75496441,,,,0.318,,,0.302,0.334,0.070696673,13461,190405,0.061164758,0.080228588,0.029510163,2214,75025,0.022361227,0.036659099,0.000747401,233,311747,,,1337.969957,,,,,,0.050096678,855,17067,0.033392947,0.066800408,3.110863381,,,,,,3.530323841,2.678740066,2.588022308,3.273033692,3.151311205,,,,,,,2.544109172,2.628132445,3.330311493,0.077536722,,,,,8019.431368,,,,,0.733750326,56308,76740,0.703986629,0.763514023,99128,,,95275.91489,102980.0851,78348,63947.65957,92748.34043,106612,84159.57447,129064.4255,77944,6816.851064,149071.1489,88085,80196.14894,95973.85106,102824,99748.76596,105899.234,,,,,,0.25592061,12946,50586,,,60.9604668,,,,,0.284763135,,99128,,,3.704367569,62,16737,,,1.112747778,24,2156823,0.712958498,1.655680489,,,,,,,,,,,,,1.036171003,0.614100605,1.637596905,,,,10.71797182,173,1542476,9.071298922,12.36464472,11.21573367,,,,,,,,,,6.512966735,3.365344952,11.37684218,11.48816718,9.583787015,13.39254735,,,,4.927143113,76,1542476,3.882028367,6.167054331,,,,,,,,,,,,,5.665772824,4.416747871,7.158363112,,,,8.716524258,188,2156823,7.470517236,9.96253128,,,,,,,,,,10.60975276,7.208812248,15.05969714,8.749888468,7.358857513,10.14091942,,,,4.812680115,,34700,,,167,,0.733961842,163879,223280,,,0.809,,,,,51.7188616,,,,,0.822278227,94946,115467,0.812057698,0.832498755,0.101888812,11614,113987,0.093099186,0.110678438,0.947145072,109364,115467,0.940565315,0.953724829,311747,,,,,0.224043856,69845,311747,,,0.166670409,51959,311747,,,0.017090782,5328,311747,,,0.005741836,1790,311747,,,0.032465429,10121,311747,,,0.000619092,193,311747,,,0.152566023,47562,311747,,,0.782634636,243984,311747,,,0.018780012,5534,294675,0.016323771,0.021236253,0.497884503,155214,311747,,,0.140895919,43710,310229,, -17,113,17113,IL,McLean County,2024,1,6501.748481,1801,484749,6061.86437,6941.632593,0,,,,2,,,,2,12555.88129,10559.23269,14552.52989,,4948.912205,3406.603448,6950.112722,,6306.03523,5808.385731,6803.68473,,,,,2,,0.133,,,0.11,0.157,3.288707858,,,2.557010479,4.123097055,4.392742935,,,3.486256529,5.424215604,0.078945285,997,12629,0.074242258,0.083648311,0,,,,0.114176974,0.094949712,0.133404237,0.142953473,0.125138505,0.160768441,0.057511737,0.041878371,0.073145103,0.066211604,0.061013405,0.071409803,,,,0.083333333,0.055246699,0.111419968,0.141,,,0.109,0.178,0.357,,,0.286,0.434,8.2,0.087810539,0.085,,,0.255,,,0.206,0.308,0.800267908,136809,170954,,,0.182996673,,,0.146993728,0.222352889,0.344262295,21,61,0.278595898,0.409672518,572.3,978,170889,,,8.100296397,440,54319,7.343410099,8.857182696,,,,,,,23.87058591,19.61728152,28.12389031,16.55629139,12.77779616,21.10235248,5.180223593,4.487778492,5.872668694,,,,18.34407536,12.91592195,25.28489149,0.062187084,8558,137617,0.05265517,0.071718999,0.000614434,105,170889,,,1627.514286,0.000701176,120,171141,,,1426.175,0.003546783,607,171141,,,281.9456343,2749,,,,,,,6662,,2674,0.57,,,,,,0.38,0.57,0.22,0.57,0.58,,,,,,0.67,0.46,0.4,0.59,0.958800823,101095,105439,0.952336231,0.965265416,0.786910909,33679,42799,0.753652025,0.820169793,0.035426514,3148,88860,,,0.099,3486,,0.069212766,0.128787234,,,,0.032422418,0,0.089856724,0.438492064,0.377637444,0.499346683,0.124584718,0.056163852,0.193005584,0.060337794,0.046391087,0.0742845,5.227505513,146987,28118,4.949929506,5.505081519,0.215180485,7833,36402,0.186470653,0.243890316,11.23536331,192,170889,,,60.43456997,519,858780,55.23511491,65.63402503,,,,,,,109.2032474,86.03973831,136.6841482,29.381187,15.64424466,50.24272458,62.48685938,56.5459859,68.42773286,,,,9.4,,,,,1,,,,,0.120573801,7985,66225,0.107880593,0.13326701,0.107642147,0.096279992,0.119004302,0.011325028,0.004691592,0.017958464,0.009815025,0.006291846,0.013338203,0.728998931,61389,84210,0.715312157,0.742685706,,,,0.589886281,0.504788493,0.674984069,0.742606435,0.706286771,0.778926099,0.655383049,0.583525721,0.727240378,0.74654269,0.730270912,0.762814468,0.163,,84210,0.147464879,0.178535121,78.96105138,,,78.52501193,79.39709083,,,,96.44365225,81.10300509,111.7842994,71.49362822,69.8912813,73.09597514,88.18123275,80.45657746,95.90588804,79.13009348,78.65668573,79.60350123,,,,332.1335126,1801,484749,316.3713787,347.8956465,,,,,,,634.9864132,548.8197865,721.1530398,250.9782687,173.8097471,350.7169744,323.4837939,306.4291754,340.5384123,,,,35.6172922,64,179688,27.42965504,45.48248698,,,,,,,76.97806125,42.0846224,129.1561067,,,,32.65813926,23.53711421,44.14431692,,,,5.863092972,77,13133,4.627061285,7.327860238,,,,,,,,,,,,,4.912127497,3.582939503,6.572813066,,,,,,,0.099,,,0.084,0.118,0.15,,,0.128,0.174,0.092,,,0.077,0.109,151.3,220,145421,,,0.085,14520,,,,0.087810539,14890.20871,169572,,,14.60104115,75,513662,11.4846451,18.30253152,,,,,,,49.1976104,30.45409625,75.20377354,,,,12.32434724,9.147368071,16.2481154,,,,0.318,,,0.302,0.336,0.075164459,7644,101697,0.063249566,0.087079353,0.027263102,1030,37780,0.018922677,0.035603528,0.001057608,181,171141,,,945.5303867,,,,,,0.026802808,336,12536,0.013123212,0.040482404,3.073713934,,,,,,3.75465305,2.366234509,2.481694416,3.203843494,3.065473613,,,,,,4.128250772,2.143440472,2.410854406,3.218799294,0.128070979,,,,,5388.575,,,,,0.752029937,53255,70815,0.69746696,0.806592914,71825,,,67834.70213,75815.29787,,,,106442,85755.3617,127128.6383,29512,24599.48936,34424.51064,55750,44446.34043,67053.65957,78143,75936.3617,80349.6383,,,,,,0.343721659,8338,24258,,,41.35231288,,,,,0.321364427,,71825,,,2.756508423,27,9795,,,3.155192284,38,1204364,2.232801848,4.330747923,,,,,,,20.89536645,12.76343268,32.27119877,,,,1.672677853,0.956079918,2.716324039,,,,13.46175917,113,858780,10.90724345,16.0162749,13.15820117,,,,,,,12.41710072,5.954482445,22.83549033,,,,14.77504466,11.91077132,18.12028066,,,,8.966207876,77,858780,7.07599104,11.20622144,,,,,,,28.73769667,17.55373171,44.38304175,,,,7.939506839,5.964401894,10.3593342,,,,6.47644732,78,1204364,5.119362851,8.08289936,,,,,,,,,,,,,6.795253777,5.244433404,8.661108757,,,,8.353658537,,16400,,,137,,0.67451254,87002,128985,,,0.71,,,,,128.0127446,,,,,0.649895607,44512,68491,0.637838765,0.661952449,0.112670372,7258,64418,0.100632569,0.124708175,0.866858419,59372,68491,0.857415799,0.87630104,171141,,,,,0.208477221,35679,171141,,,0.148018301,25332,171141,,,0.087623655,14996,171141,,,0.003505881,600,171141,,,0.052336962,8957,171141,,,0.00057847,99,171141,,,0.055679235,9529,171141,,,0.778147843,133173,171141,,,0.008213641,1329,161804,0.005973599,0.010453684,0.509562291,87207,171141,,,0.21557846,36854,170954,, -17,115,17115,IL,Macon County,2024,1,10352.87071,1981,281732,9624.60243,11081.13899,0,,,,2,,,,2,16985.76229,14863.79753,19107.72706,,,,,2,8936.964713,8154.999964,9718.929462,,,,,2,,0.163,,,0.136,0.192,3.777049067,,,2.97285009,4.67865473,4.96190542,,,3.946523602,6.062082446,0.109382151,956,8740,0.102838513,0.115925789,0,,,,0.096296296,0.046533244,0.146059349,0.170585891,0.155867409,0.185304372,0.084507042,0.047152775,0.12186131,0.081490956,0.074242595,0.088739316,,,,0.126649077,0.093165498,0.160132656,0.184,,,0.145,0.225,0.387,,,0.31,0.469,7.6,0.084771071,0.114,,,0.287,,,0.234,0.341,0.832458317,86574,103998,,,0.158569849,,,0.125129639,0.196586109,0.432835821,29,67,0.374041394,0.489481687,857.2,878,102432,,,27.09049006,623,22997,24.96318923,29.21779089,,,,,,,58.54892044,51.93450125,65.16333964,14.06799531,7.269138463,24.57395668,17.10741104,15.03588824,19.17893383,,,,33.12191684,24.33673867,44.0451278,0.062316121,4914,78856,0.053975695,0.070656546,0.000888394,91,102432,,,1125.626374,0.000620794,63,101483,,,1610.84127,0.001704719,173,101483,,,586.6069364,3381,,,,,,,3301,,3346,0.46,,,,,,0.31,0.45,,0.46,0.49,,,,,,0.6,0.35,0.3,0.51,0.923761974,65867,71303,0.91433621,0.933187737,0.622340645,15065,24207,0.581963961,0.662717329,0.05537874,2523,45559,,,0.205,4565,,0.133510638,0.276489362,,,,0.311392405,0,0.680465662,0.382547643,0.294854088,0.470241198,0.302780639,0.140829781,0.464731496,0.141305881,0.101787652,0.180824109,4.5186242,117186,25934,4.181595584,4.855652815,0.288757601,6696,23189,0.242918421,0.33459678,14.93673852,153,102432,,,86.15898256,448,519969,78.18054912,94.13741599,,,,,,,124.640565,101.7601944,147.5209357,,,,82.35515406,73.38759284,91.32271528,,,,9.5,,,,,1,,,,,0.12462908,5460,43810,0.111389718,0.137868442,0.111382114,0.098251897,0.124512331,0.011070532,0.006264102,0.015876962,0.009130336,0.006010993,0.012249678,0.827050698,36640,44302,0.809693262,0.844408133,,,,0.593245228,0.473291595,0.71319886,0.819072936,0.77711963,0.861026242,0.756595745,0.640087928,0.873103561,0.847044285,0.830154192,0.863934379,0.143,,44302,0.126663121,0.159336879,75.23033487,,,74.65456784,75.80610189,,,,,,,69.06696517,67.63424186,70.49968848,,,,76.3763314,75.74659372,77.00606907,,,,507.1741913,1981,281732,483.3242644,531.0241182,,,,,,,753.4990206,679.6426283,827.3554128,,,,466.7881395,441.2611383,492.3151407,,,,68.10597289,70,102781,53.09194706,86.04779953,,,,,,,136.7422202,94.12705247,192.0369174,,,,50.4587156,34.73345806,70.86279705,,,,7.712082262,69,8947,6.000460328,9.760133687,,,,,,,13.35952849,9.251861841,18.668602,,,,4.7829938,3.152023053,6.959004862,,,,,,,0.116,,,0.099,0.135,0.168,,,0.145,0.194,0.102,,,0.087,0.119,178.9,154,86090,,,0.114,11930,,,,0.084771071,9389.921954,110768,,,29.08329456,90,309456,23.38640328,35.74830664,,,,,,,43.54373424,27.89929215,64.78962497,,,,27.48255502,21.16491618,35.09460922,,,,0.331,,,0.316,0.347,0.075710848,4247,56095,0.063795954,0.087625741,0.030470682,727,23859,0.020938767,0.040002597,0.00160618,163,101483,,,622.595092,,,,,,0.104070661,542,5208,0.068631228,0.139510093,2.566175934,,,,,,3.097061078,1.916583745,2.478711354,2.928273994,2.398578885,,,,,,3.334331698,1.498579675,2.24617362,2.853634559,0.238371936,,,,,1871.420714,,,,,0.797863557,46383,58134,0.759387636,0.836339477,60648,,,56193.02128,65102.97872,28542,13275.44681,43808.55319,54514,5180.382979,103847.617,32570,28706,36434,55703,28532.2766,82873.7234,67153,64752.14894,69553.85106,,,,,,0.539077493,8146,15111,,,51.88619899,,,,,0.27771732,,60648,,,2.498438476,16,6404,,,9.266552379,68,733822,7.195840511,11.74756319,,,,,,,40.636429,30.34922885,53.28927022,,,,2.690061836,1.505607189,4.436847906,,,,13.11236447,75,519969,10.16190236,16.65223937,14.42393681,,,,,,,,,,,,,15.39087299,11.77279832,19.77022023,,,,16.34712839,85,519969,13.05750555,20.2134774,,,,,,,43.73353159,31.24387615,59.55265732,,,,11.18403327,8.126335693,15.01404264,,,,12.94591877,95,733822,10.47402137,15.82571436,,,,,,,12.50351661,7.146840091,20.30492763,,,,13.80898409,10.8978343,17.2588608,,,,12.35294118,,10200,,,126,,0.614456332,49390,80380,,,0.7,,,,,101.8900685,,,,,0.689313224,29890,43362,0.676256045,0.702370402,0.107827476,4455,41316,0.094234729,0.121420223,0.827798533,35895,43362,0.812836143,0.842760924,101483,,,,,0.223830592,22715,101483,,,0.212557768,21571,101483,,,0.182414789,18512,101483,,,0.003025137,307,101483,,,0.012425727,1261,101483,,,0.00056167,57,101483,,,0.027285358,2769,101483,,,0.74205532,75306,101483,,,0.003661271,356,97234,0.001637611,0.005684931,0.517978381,52566,101483,,,0.170301352,17711,103998,, -17,117,17117,IL,Macoupin County,2024,1,8724.817859,786,122242,7688.909304,9760.726414,0,,,,2,,,,2,,,,2,,,,2,8825.44074,7753.719903,9897.161576,,,,,2,,0.16,,,0.133,0.193,3.865629526,,,3.039998915,4.855966569,5.188847166,,,4.065149372,6.456518027,0.105177467,323,3071,0.094327061,0.116027872,0,,,,,,,,,,,,,0.103648142,0.09261701,0.114679273,,,,,,,0.198,,,0.155,0.246,0.341,,,0.263,0.421,8.2,0.042088218,0.106,,,0.287,,,0.232,0.346,0.76800765,34535,44967,,,0.16463765,,,0.130034534,0.204865809,0.4,12,30,0.306339297,0.489449435,227.4,101,44406,,,19.77615995,182,9203,16.9029832,22.6493367,,,,,,,,,,,,,19.25096255,16.31353916,22.18838594,,,,,,,0.068123505,2363,34687,0.05859159,0.077655419,0.000247714,11,44406,,,4036.909091,0.000339021,15,44245,,,2949.666667,0.000768448,34,44245,,,1301.323529,3763,,,,,,,,,3792,0.44,,,,,,,,,0.44,0.4,,,,,,,0.29,,0.4,0.909740422,29159,32052,0.895672602,0.923808242,0.584282793,6000,10269,0.532241874,0.636323711,0.037287524,827,22179,,,0.149,1326,,0.095382979,0.202617021,,,,,,,0.17948718,0,0.997167116,0.044117647,0,0.214407165,0.201419595,0.158672613,0.244166577,4.638269273,127673,27526,4.204377183,5.072161362,0.214193825,1998,9328,0.168203869,0.260183781,14.18727199,63,44406,,,95.25590008,214,224658,82.4932439,108.0185563,,,,,,,,,,,,,96.53136805,83.4126057,109.6501304,,,,9,,,,,0,,,,,0.101211306,1880,18575,0.08602135,0.116401261,0.08626703,0.069668606,0.102865454,0.008290713,0.004348471,0.012232956,0.011574697,0.006181309,0.016968085,0.839200282,16664,19857,0.816537286,0.861863278,,,,,,,,,,,,,0.774986542,0.74367983,0.806293255,0.447,,19857,0.409265323,0.484734677,75.86522609,,,75.0372822,76.69316998,,,,,,,,,,,,,75.71148072,74.86308348,76.55987796,,,,435.8794488,786,122242,403.064524,468.6943736,,,,,,,,,,,,,439.502467,405.9558103,473.0491237,,,,50.41532626,21,41654,31.20788156,77.06518158,,,,,,,,,,,,,51.31099595,31.34208935,79.24567167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.119,,,0.101,0.141,0.174,,,0.148,0.202,0.096,,,0.08,0.113,91.9,35,38087,,,0.106,4770,,,,0.042088218,2010.343734,47765,,,23.89861015,32,133899,16.34663165,33.73770684,,,,,,,,,,,,,23.37814144,15.77313386,33.37375055,,,,0.328,,,0.311,0.346,0.081463205,2080,25533,0.068356822,0.094569588,0.032371861,312,9638,0.021648457,0.043095266,0.00063284,28,44245,,,1580.178571,,,,,,0.116425993,258,2216,0.053245276,0.17960671,3.025818778,,,,,,,,,3.04211961,2.932153073,,,,,,,,,2.933263321,0.053171996,,,,,1409.494586,,,,,0.773998136,46508,60088,0.714087205,0.833909068,69880,,,64019.06383,75740.93617,,,,81111,6461.808511,155760.1915,25000,1424,48576,54615,7147.255319,102082.7447,65045,61611.12766,68478.87234,,,,,,0.504987365,3797,7519,,,69.3767908,,,,,0.241027476,,69880,,,3.421727973,8,2338,,,4.105984947,13,316611,2.186264056,7.021359308,,,,,,,,,,,,,3.289971509,1.577669218,6.050374742,,,,17.75087017,41,224658,12.43249124,24.57468654,18.24996217,,,,,,,,,,,,,17.81754412,12.41057231,24.77989068,,,,11.57314674,26,224658,7.559963685,16.95734142,,,,,,,,,,,,,11.13823478,7.136477187,16.57281045,,,,19.58238975,62,316611,15.01370593,25.10373988,,,,,,,,,,,,,20.0688262,15.35106186,25.77924683,,,,3.777777778,,4500,,,17,,0.677248379,24022,35470,,,0.705,,,,,28.18877129,,,,,0.777594353,13660,17567,0.756873256,0.798315451,0.087785807,1482,16882,0.069943758,0.105627857,0.842147208,14794,17567,0.818844829,0.865449587,44245,,,,,0.204814103,9062,44245,,,0.219889253,9729,44245,,,0.011458922,507,44245,,,0.004023054,178,44245,,,0.004136061,183,44245,,,0.00031642,14,44245,,,0.013380043,592,44245,,,0.955882021,42293,44245,,,0.002039094,87,42666,0,0.005224001,0.501661205,22196,44245,,,0.655191585,29462,44967,, -17,119,17119,IL,Madison County,2024,1,8916.8364,4444,730901,8508.22278,9325.45002,0,,,,2,,,,2,16144.14701,14352.20307,17936.09096,,3761.672053,2478.965586,5473.035342,,8510.98558,8077.248036,8944.723124,,,,,2,,0.142,,,0.119,0.168,3.512680792,,,2.759207915,4.384540596,4.731410859,,,3.777992072,5.727241875,0.088552034,1735,19593,0.084573979,0.092530089,0,,,,0.06763285,0.033423626,0.101842075,0.145613396,0.132423098,0.158803695,0.067901235,0.052085377,0.083717092,0.07919357,0.074897435,0.083489705,,,,0.100686499,0.072473027,0.128899971,0.166,,,0.129,0.205,0.38,,,0.31,0.45,7.6,0.128676519,0.093,,,0.273,,,0.223,0.327,0.885747708,235484,265859,,,0.16370547,,,0.1303509,0.199466206,0.365714286,64,175,0.328515545,0.402721551,449.2,1188,264490,,,16.64407699,921,55335,15.56913266,17.71902131,,,,,,,35.81815399,31.22880228,40.4075057,27.59572266,21.88169182,34.3452656,12.87283412,11.79894188,13.94672637,,,,23.66589327,17.62081199,31.11627906,0.058908767,12684,215316,0.051759831,0.066057703,0.000476389,126,264490,,,2099.126984,0.000966407,255,263864,,,1034.760784,0.002398963,633,263864,,,416.8467615,4147,,,,,,,7230,,4029,0.46,,,,,,0.39,0.4,0.4,0.46,0.51,,,,,,0.52,0.36,0.41,0.52,0.933406977,172376,184674,0.926786941,0.940027012,0.731165424,49331,67469,0.703439458,0.758891391,0.037447378,4928,131598,,,0.15,8199,,0.11306383,0.18693617,,,,0.016759777,0,0.165911029,0.450249584,0.382131967,0.518367202,0.129922481,0.066125549,0.193719412,0.099178474,0.082297112,0.116059835,4.572814253,138602,30310,4.319243788,4.826384718,0.24231487,13763,56798,0.218148862,0.266480878,12.96835419,343,264490,,,105.0773497,1387,1319980,99.54732649,110.6073728,,,,,,,115.2313291,95.64735515,134.815303,37.13574206,21.63293825,59.45792043,109.6211125,103.4773128,115.7649122,,,,11.2,,,,,1,,,,,0.121322512,13155,108430,0.110628579,0.132016445,0.102878936,0.094040485,0.111717387,0.012219865,0.009100943,0.015338788,0.011804851,0.008057257,0.015552445,0.809850692,103111,127321,0.798155506,0.821545878,,,,0.752355316,0.634082359,0.870628274,0.770037995,0.718800557,0.821275433,0.746539139,0.695687114,0.797391164,0.79892776,0.781805069,0.81605045,0.397,,127321,0.379367568,0.414632432,75.74111782,,,75.41125655,76.0709791,,,,86.27651951,79.37251159,93.18052742,69.05278047,67.83854749,70.26701344,91.66901652,84.3083541,99.02967893,76.04731647,75.69848782,76.39614513,,,,451.8018311,4444,730901,437.8919424,465.7117199,,,,,,,757.0613857,689.7181802,824.4045913,200.7629013,142.0717777,275.5627675,439.7961826,425.1332179,454.4591473,,,,46.20816581,117,253202,37.83515079,54.58118084,,,,,,,120.2846737,84.2459067,166.5246901,,,,38.14865603,29.95490017,47.89214421,,,,6.790832376,136,20027,5.649506595,7.932158158,,,,,,,16.6136444,12.20708101,22.09262508,,,,5.197305101,4.127410458,6.459775693,,,,,,,0.106,,,0.09,0.123,0.161,,,0.138,0.187,0.091,,,0.077,0.106,94.5,212,224430,,,0.093,24780,,,,0.128676519,34650.27047,269282,,,39.99539294,316,790091,35.58555633,44.40522954,,,,,,,45.82229541,31.34241614,64.68740901,,,,41.59833727,36.69950964,46.4971649,,,,0.334,,,0.318,0.35,0.072114626,11420,158359,0.061391221,0.08283803,0.023914895,1432,59879,0.016765959,0.031063831,0.000973987,257,263864,,,1026.708171,,,,,,0.074540504,1095,14690,0.049194943,0.099886065,3.074174045,,,,,,3.787986377,2.452368488,2.729757064,3.238273502,2.923168095,,,,,,3.841424811,2.281855585,2.621642861,3.101784945,0.152834928,,,,,-2515.90595,,,,,0.763674153,51073,66878,0.725037542,0.802310764,67441,,,63960.65957,70921.34043,,,,66800,34066.21277,99533.78723,41208,34144.85106,48271.14894,51058,31813.06383,70302.93617,76167,74156.95745,78177.04255,,,,,,0.406913797,14808,36391,,,55.41089184,,,,,0.342254712,,67441,,,3.360666756,50,14878,,,4.535764503,84,1851948,3.617903404,5.61558509,,,,,,,28.72378954,21.02942403,38.31350999,,,,2.165541647,1.499700543,3.026127393,,,,16.44810406,225,1319980,14.2322968,18.66391131,17.04571281,,,,,,,12.76069816,6.976392427,21.41028321,,,,17.23410095,14.77104247,19.69715942,,,,12.12139578,160,1319980,10.24316604,13.99962551,,,,,,,34.65603882,24.75878222,47.19168858,,,,10.39742359,8.505285562,12.28956162,,,,11.71739163,217,1851948,10.15835202,13.27643125,,,,,,,14.98632498,9.60202119,22.29846365,,,,11.91047906,10.2033573,13.61760082,,,,16.48854962,,26200,,,432,,0.670622754,137139,204495,,,0.731,,,,,72.76339841,,,,,0.731467029,79667,108914,0.721530915,0.741403143,0.107543415,11401,106013,0.097970964,0.117115865,0.887314762,96641,108914,0.880154347,0.894475177,263864,,,,,0.210369736,55509,263864,,,0.186963739,49333,263864,,,0.093267744,24610,263864,,,0.003547282,936,263864,,,0.010979141,2897,263864,,,0.000659431,174,263864,,,0.03927402,10363,263864,,,0.832447776,219653,263864,,,0.003793125,953,251244,0.00270392,0.004882331,0.509838402,134528,263864,,,0.164391651,43705,265859,, -17,121,17121,IL,Marion County,2024,1,11386.55676,787,101808,10138.58745,12634.52607,0,,,,2,,,,2,19962.4961,13040.16522,29249.68201,,,,,2,11283.58019,9969.50025,12597.66014,,,,,2,,0.17,,,0.142,0.2,3.981089544,,,3.106230496,4.971389496,5.309852214,,,4.242090087,6.563822724,0.088,286,3250,0.07826013,0.09773987,0,,,,,,,0.110526316,0.065942353,0.155110279,,,,0.08656819,0.076352864,0.096783515,,,,,,,0.201,,,0.16,0.248,0.397,,,0.316,0.486,7.2,0.102097799,0.124,,,0.301,,,0.245,0.359,0.663309391,25026,37729,,,0.162758024,,,0.128934708,0.203002032,0.161290323,5,31,0.077077658,0.265177158,398.5,149,37390,,,38.08620222,281,7378,33.63301883,42.53938561,,,,,,,56.51105651,35.82316225,84.79433144,,,,36.87943262,32.15410012,41.60476513,,,,43.47826087,24.33445256,71.71077934,0.070089045,2078,29648,0.059365641,0.080812449,0.000347687,13,37390,,,2876.153846,0.00035217,13,36914,,,2839.538462,0.004090589,151,36914,,,244.4635762,4295,,,,,,,8079,,4201,0.43,,,,,,,0.56,,0.42,0.42,,,,,,0.59,0.34,,0.43,0.899722949,23382,25988,0.88588673,0.913559168,0.555818674,4929,8868,0.506539148,0.6050982,0.046019603,770,16732,,,0.206,1735,,0.136893617,0.275106383,,,,,,,0.391100703,0.191977604,0.590223802,0.599406528,0.492579062,0.706233994,0.224167873,0.182572781,0.265762965,4.493534572,108074,24051,4.063926997,4.923142148,0.282273713,2473,8761,0.23355329,0.330994136,21.12864402,79,37390,,,96.17336853,180,187162,82.1234228,110.2233143,,,,,,,,,,,,,98.21680625,83.32032673,113.1132858,,,,8.8,,,,,0,,,,,0.114108527,1840,16125,0.098789767,0.129427287,0.085177061,0.070493873,0.099860248,0.014263566,0.008851064,0.019676068,0.020155039,0.011945783,0.028364295,0.827771193,13270,16031,0.805289268,0.850253119,,,,,,,,,,,,,0.840697758,0.825166797,0.85622872,0.239,,16031,0.212868598,0.265131402,73.36795745,,,72.4644044,74.27151051,,,,,,,,,,,,,73.40575633,72.46489801,74.34661466,,,,560.8100756,787,101808,519.0597517,602.5603994,,,,,,,1004.74888,730.0520745,1348.828475,,,,555.1940227,512.0728289,598.3152165,,,,60.97399327,23,37721,38.65228132,91.49092785,,,,,,,,,,,,,65.27415144,40.40572853,99.77847425,,,,6.628502561,22,3319,4.154047265,10.03563254,,,,,,,,,,,,,,,,,,,,,,0.125,,,0.107,0.144,0.178,,,0.152,0.205,0.103,,,0.087,0.12,41.8,13,31136,,,0.124,4690,,,,0.102097799,4026.430897,39437,,,33.14224292,37,111640,23.33519757,45.68221618,,,,,,,,,,,,,32.57361143,22.4221753,45.74546118,,,,0.341,,,0.323,0.357,0.087432478,1829,20919,0.073134605,0.10173035,0.029398859,268,9116,0.019866944,0.038930774,0.00111069,41,36914,,,900.3414634,,,,,,0.072758037,129,1773,0.030513737,0.115002337,2.92239648,,,,,,,2.751615959,,2.925647396,2.635655226,,,,,,,,,2.633370304,0.124923042,,,,,-3434.127136,,,,,0.778125231,42053,54044,0.719227116,0.837023347,58489,,,52483.89362,64494.10638,,,,,,,35313,4372.404255,66253.59575,92879,67138.06383,118619.9362,59076,56382.04255,61769.95745,,,,,,0.662841245,3812,5751,,,65.67597022,,,,,0.287968678,,58489,,,4.171881519,10,2397,,,4.172340418,11,263641,2.082817304,7.465469526,,,,,,,,,,,,,,,,,,,27.80163691,45,187162,20.12018248,37.44862247,24.04334213,,,,,,,,,,,,,29.95772864,21.59089576,40.49414624,,,,11.75452282,22,187162,7.36649687,17.79648881,,,,,,,,,,,,,11.76249177,7.184835552,18.16621454,,,,16.68936167,44,263641,12.12651574,22.40468906,,,,,,,,,,,,,17.50255246,12.61430031,23.65836634,,,,8.157894737,,3800,,,31,,0.607763272,17458,28725,,,0.664,,,,,46.21647211,,,,,0.737988974,11244,15236,0.71595325,0.760024697,0.092042513,1351,14678,0.075346951,0.108738074,0.839393542,12789,15236,0.818569205,0.860217878,36914,,,,,0.234463889,8655,36914,,,0.203364577,7507,36914,,,0.044075419,1627,36914,,,0.003955139,146,36914,,,0.005932709,219,36914,,,0.0002709,10,36914,,,0.023324484,861,36914,,,0.904697405,33396,36914,,,0.002444988,86,35174,0,0.005771211,0.504605299,18627,36914,,,0.477934745,18032,37729,, -17,123,17123,IL,Marshall County,2024,1,9135.493295,185,30692,6941.839066,11329.14752,0,,,,2,,,,2,,,,2,,,,2,9498.546412,7148.603351,11848.48947,,,,,2,,0.148,,,0.122,0.175,3.656824954,,,2.845610173,4.540969565,4.943651548,,,3.872542871,6.079843543,0.062261754,49,787,0.045379897,0.07914361,0,,,,,,,,,,,,,0.06147541,0.044074415,0.078876405,,,,,,,0.18,,,0.141,0.22,0.362,,,0.284,0.446,8.4,0.043452306,0.096,,,0.272,,,0.221,0.327,0.329841594,3873,11742,,,0.164285637,,,0.129193744,0.202702496,0.4375,7,16,0.30773596,0.555081272,145.8,17,11663,,,19.98001998,40,2002,14.2740192,27.20711637,,,,,,,,,,,,,19.1011236,13.22808336,26.69190567,,,,,,,0.063143601,558,8837,0.053611686,0.072675516,0.000171483,2,11663,,,5831.5,0.000342524,4,11678,,,2919.5,8.56311E-05,1,11678,,,11678,2067,,,,,,,,,2030,0.45,,,,,,,,,0.44,0.45,,,,,,,,,0.45,0.920210896,7854,8535,0.905608971,0.934812822,0.611916895,1561,2551,0.537551574,0.686282217,0.046361502,237,5112,,,0.175,404,,0.128531915,0.221468085,,,,,,,,,,0.229357798,0.056405264,0.402310333,0.163563161,0.119373161,0.20775316,4.622456395,114489,24768,3.80858088,5.436331911,0.155016447,377,2432,0.113899872,0.196133023,14.5760096,17,11663,,,105.7668967,61,57674,80.90329535,135.8620035,,,,,,,,,,,,,108.3881398,82.5100739,139.8128033,,,,9,,,,,0,,,,,0.090447155,445,4920,0.069339411,0.111554898,0.069762642,0.049161872,0.090363412,0.017276423,0.003979677,0.030573169,0.008130081,0,0.016400043,0.870058708,4446,5110,0.847355021,0.892762396,,,,,,,,,,,,,0.825665102,0.780958462,0.870371741,0.419,,5110,0.36955678,0.46844322,76.2980268,,,74.61253612,77.98351749,,,,,,,,,,,,,76.0475885,74.27350216,77.82167484,,,,413.57078,185,30692,347.8610326,479.2805273,,,,,,,,,,,,,422.0551518,353.4538422,490.6564615,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.112,,,0.094,0.131,0.165,,,0.141,0.189,0.09,,,0.075,0.106,60,6,10003,,,0.096,1130,,,,0.043452306,549.2371446,12640,,,31.96745132,11,34410,15.95803652,57.19860074,,,,,,,,,,,,,33.9453788,16.94541079,60.73765935,,,,0.325,,,0.306,0.343,0.073088167,475,6499,0.061173274,0.085003061,0.037021969,91,2458,0.025107076,0.048936863,0.000256893,3,11678,,,3892.666667,,,,,,,,,,,3.289635621,,,,,,,,,3.338741237,2.943168522,,,,,,,,,2.99779514,0.049902362,,,,,2563.729,,,,,0.614109254,37188,60556,0.532561578,0.695656931,69593,,,60729.51064,78456.48936,,,,,,,,,,65227,3274.319149,127179.6809,65119,60378.06383,69859.93617,,,,,,0.468109339,822,1756,,,,,,,,0.242021468,,69593,,,1.547987616,1,646,,,,,,,,,,,,,,,,,,,,,,,,,,23.59143513,15,57674,12.56144563,40.34207255,26.00825329,,,,,,,,,,,,,25.02893595,13.32685427,42.80024273,,,,,,,,,,,,,,,,,,,,,,,,,,,18.38347938,15,81595,10.28909386,30.32075357,,,,,,,,,,,,,18.15917817,9.927791684,30.46801536,,,,10.90909091,,1100,,,12,,0.695279912,6334,9110,,,0.681,,,,,9.674000333,,,,,0.786792833,3908,4967,0.769030651,0.804555014,0.079614498,380,4773,0.05563449,0.103594506,0.823635998,4091,4967,0.797577547,0.849694448,11678,,,,,0.201918137,2358,11678,,,0.242421648,2831,11678,,,0.008220586,96,11678,,,0.004281555,50,11678,,,0.004795342,56,11678,,,0.000342524,4,11678,,,0.034166809,399,11678,,,0.936547354,10937,11678,,,0.003242659,36,11102,0,0.011256661,0.49768796,5812,11678,,,1,11742,11742,, -17,125,17125,IL,Mason County,2024,1,10856.92477,289,35431,8531.660289,13182.18925,0,,,,2,,,,2,,,,2,,,,2,10876.04817,8528.311288,13223.78505,,,,,2,,0.159,,,0.132,0.191,3.826992814,,,2.967257124,4.817925054,5.237877843,,,4.112025051,6.500051032,0.085324232,75,879,0.066855741,0.103792723,0,,,,,,,,,,,,,0.084210526,0.065595913,0.10282514,,,,,,,0.193,,,0.152,0.238,0.39,,,0.305,0.479,7.1,0.132433034,0.112,,,0.284,,,0.227,0.34,0.589790616,7718,13086,,,0.165395948,,,0.130361828,0.204307102,0.368421053,7,19,0.246027076,0.486088994,178.6,23,12881,,,23.90158172,68,2845,18.56051345,30.30095014,,,,,,,,,,,,,25.34476333,19.68120043,32.13052671,,,,,,,0.072950161,726,9952,0.061035267,0.084865054,0.000388169,5,12881,,,2576.2,0.000392218,5,12748,,,2549.6,0.000313775,4,12748,,,3187,3050,,,,,,,69231,,2704,0.46,,,,,,,,,0.46,0.38,,,,,,,,,0.38,0.913282572,8636,9456,0.895435603,0.931129541,0.569873596,1623,2848,0.489402758,0.650344434,0.045139476,267,5915,,,0.192,498,,0.120510638,0.263489362,,,,,,,,,,,,,0.168684108,0.1041531,0.233215116,4.10402133,112364,27379,3.491417114,4.716625546,0.137611276,371,2696,0.094545589,0.180676963,14.75040758,19,12881,,,109.4567646,73,66693,85.79663072,137.6254482,,,,,,,,,,,,,112.2842038,87.85547415,141.4033717,,,,8.7,,,,,0,,,,,0.088757396,525,5915,0.067778217,0.109736576,0.081486533,0.060759064,0.102214002,0.006593407,0,0.014692445,0.002366864,0,0.005492789,0.792512246,4530,5716,0.761325695,0.823698797,,,,,,,,,,,,,0.77004111,0.748518741,0.791563479,0.468,,5716,0.404302662,0.531697338,73.81205674,,,72.11634811,75.50776538,,,,,,,,,,,,,73.76153095,72.05652645,75.46653545,,,,529.2820574,289,35431,463.0142826,595.5498322,,,,,,,,,,,,,535.0965039,467.192335,603.0006728,,,,91.38489657,11,12037,45.61901111,163.5128231,,,,,,,,,,,,,88.37044892,42.37706518,162.5164019,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.119,,,0.1,0.139,0.171,,,0.146,0.198,0.094,,,0.079,0.112,63.3,7,11057,,,0.112,1480,,,,0.132433034,1942.262871,14666,,,,,,,,,,,,,,,,,,,,,,,,,,0.325,,,0.307,0.342,0.086211623,629,7296,0.071913751,0.100509495,0.038159772,107,2804,0.026244878,0.050074665,0.000705993,9,12748,,,1416.444444,,,,,,,,,,,2.825598803,,,,,,,,,2.849619558,2.92854798,,,,,,,,,2.932529101,0.031030113,,,,,2405.883333,,,,,0.684579723,39427,57593,0.555924675,0.813234772,60784,,,52418.55319,69149.44681,,,,,,,,,,,,,59017,55438.95745,62595.04255,,,,,,0.430530974,973,2260,,,,,,,,0.277095946,,60784,,,8.823529412,6,680,,,,,,,,,,,,,,,,,,,,,,,,,,24.35650269,18,66693,13.92184577,39.55343444,26.98933921,,,,,,,,,,,,,25.34929729,14.48931367,41.16567066,,,,14.99407734,10,66693,7.190242898,27.57464208,,,,,,,,,,,,,15.59502831,7.478422245,28.6798123,,,,22.36397908,21,93901,13.84365554,34.18571766,,,,,,,,,,,,,22.13564725,13.52102841,34.18671186,,,,10.76923077,,1300,,,14,,0.633520599,6766,10680,,,0.615,,,,,9.995613897,,,,,0.804422944,4656,5788,0.773980224,0.834865664,0.082505868,457,5539,0.059646078,0.105365657,0.849343469,4916,5788,0.81854021,0.880146729,12748,,,,,0.207875745,2650,12748,,,0.225917791,2880,12748,,,0.007216818,92,12748,,,0.005020395,64,12748,,,0.006275494,80,12748,,,0.000156887,2,12748,,,0.015296517,195,12748,,,0.955051773,12175,12748,,,0,0,12429,0,0.007285638,0.500941324,6386,12748,,,1,13086,13086,, -17,127,17127,IL,Massac County,2024,1,11023.37343,296,37083,8924.626788,13122.12008,0,,,,2,,,,2,13029.37559,6248.092041,23961.48561,1,,,,2,11293.09679,8986.987204,13599.20637,,,,,2,,0.17,,,0.143,0.201,4.016289124,,,3.114157541,4.971050956,5.292950781,,,4.12634522,6.512073118,0.085545723,87,1017,0.068355728,0.102735717,0,,,,,,,,,,,,,0.088339223,0.069249675,0.107428771,,,,,,,0.199,,,0.159,0.241,0.377,,,0.291,0.464,8,0.033952421,0.116,,,0.299,,,0.245,0.355,0.724186605,10261,14169,,,0.157307223,,,0.121877641,0.197124211,0.375,6,16,0.240765683,0.502616143,229.2,32,13960,,,29.7029703,87,2929,23.79086157,36.63850413,,,,,,,,,,,,,27.76643528,21.56172346,35.20057295,,,,,,,0.070111375,768,10954,0.059387971,0.080834779,0.0002149,3,13960,,,4653.333333,0.000359816,5,13896,,,2779.2,0.003814047,53,13896,,,262.1886793,4381,,,,,,,1556,,4523,0.45,,,,,,,0.66,,0.44,0.41,,,,,,,0.36,,0.41,0.876618883,8867,10115,0.848353468,0.904884298,0.491250398,1544,3143,0.398093691,0.584407104,0.047885225,257,5367,,,0.239,687,,0.153212766,0.324787234,,,,,,,0.686813187,0.330063596,1,0.221590909,0,0.546907226,0.124247635,0.066783902,0.181711369,4.215408248,107025,25389,3.299835748,5.130980748,0.208647232,637,3053,0.136511632,0.280782833,14.32664756,20,13960,,,80.23842274,56,69792,60.61124224,104.1962661,,,,,,,,,,,,,85.04513934,63.51577784,111.5253856,,,,8.9,,,,,0,,,,,0.118327402,665,5620,0.085741356,0.150913448,0.088769093,0.056380341,0.121157844,0.027580071,0.010932603,0.04422754,0.005338078,0,0.010800265,0.827840112,4722,5704,0.787261815,0.868418409,,,,,,,,,,,,,0.834724541,0.788150839,0.881298243,0.279,,5704,0.218891753,0.339108247,73.99231776,,,72.41909279,75.56554273,,,,,,,,,,,,,73.71889371,72.02033528,75.41745215,,,,552.2713182,296,37083,485.029565,619.5130714,,,,,,,700.0502276,427.6088658,1081.170799,,,,561.4125194,489.3790852,633.4459536,,,,76.24275694,10,13116,36.56136548,140.2131446,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.124,,,0.106,0.144,0.177,,,0.151,0.203,0.101,,,0.084,0.119,,,,,,0.116,1650,,,,0.033952421,523.8519053,15429,,,24.17327403,10,41368,11.5920245,44.45551161,,,,,,,,,,,,,,,,,,,0.34,,,0.324,0.355,0.085029342,681,8009,0.07073147,0.099327214,0.030546624,95,3110,0.01982322,0.041270028,0.000719632,10,13896,,,1389.6,,,,,,,,,,,3.076648677,,,,,,,,,3.110887128,3.429598287,,,,,,,,,3.460649469,0.039226731,,,,,1150.7894,,,,,0.614111212,33684,54850,0.499080463,0.729141962,52880,,,47358.6383,58401.3617,,,,,,,70562,55841.14894,85282.85106,,,,56782,49362.59575,64201.40426,,,,,,0.599420849,1242,2072,,,11.79853149,,,,,0.318513616,,52880,,,2.732240437,2,732,,,,,,,,,,,,,,,,,,,,,,,,,,20.47245396,14,69792,10.90071951,35.00851977,20.05960569,,,,,,,,,,,,,16.68656029,8.001854259,30.68717848,,,,,,,,,,,,,,,,,,,,,,,,,,,19.15013708,19,99216,11.52963349,29.90531121,,,,,,,,,,,,,20.65546681,12.24173871,32.64454267,,,,7.142857143,,1400,,,10,,0.628215768,6813,10845,,,0.634,,,,,31.81058255,,,,,0.780897839,4227,5413,0.742063868,0.819731809,0.068160243,359,5267,0.039264197,0.097056289,0.750415666,4062,5413,0.707023385,0.793807947,13896,,,,,0.21099597,2932,13896,,,0.219127807,3045,13896,,,0.063759355,886,13896,,,0.00662061,92,13896,,,0.005685089,79,13896,,,0.000143926,2,13896,,,0.035549799,494,13896,,,0.864493379,12013,13896,,,0.000671441,9,13404,0,0.006895051,0.513241221,7132,13896,,,0.528830546,7493,14169,, -17,129,17129,IL,Menard County,2024,1,6556.705269,168,33364,4946.011706,8167.398831,0,,,,2,,,,2,,,,2,,,,2,6656.672667,4970.495184,8342.85015,,,,,2,,0.128,,,0.106,0.153,3.307300738,,,2.552680672,4.121262789,4.646069094,,,3.660486155,5.733890697,0.076833527,66,859,0.059023078,0.094643977,0,,,,,,,,,,,,,0.07496977,0.057021427,0.092918114,,,,,,,0.157,,,0.12,0.195,0.354,,,0.274,0.439,9.1,0.021440352,0.075,,,0.246,,,0.199,0.301,0.721720745,8875,12297,,,0.176392158,,,0.140519432,0.217504359,0.555555556,5,9,0.394493124,0.682965544,197.3,24,12164,,,11.2,28,2500,7.442318662,16.18711838,,,,,,,,,,,,,10.85069444,7.02199733,16.01776549,,,,,,,0.048997312,474,9674,0.040656887,0.057337738,0.000328839,4,12164,,,3041,8.25014E-05,1,12121,,,12121,0.000412507,5,12121,,,2424.2,3660,,,,,,,,,3688,0.42,,,,,,,,,0.42,0.43,,,,,,,,,0.43,0.950132749,8231,8663,0.933256149,0.967009348,0.708273894,1986,2804,0.614526549,0.80202124,0.036101668,223,6177,,,0.124,314,,0.079914894,0.168085106,,,,,,,,,,,,,0.107054963,0.068544406,0.14556552,3.32536887,135000,40597,2.978166271,3.672571468,0.179542982,495,2757,0.109706235,0.249379729,9.865175929,12,12164,,,109.9063336,67,60961,85.1758989,139.5771586,,,,,,,,,,,,,110.0810128,84.77579344,140.5709957,,,,8.6,,,,,0,,,,,0.06621881,345,5210,0.047188624,0.085248997,0.060135791,0.03741575,0.082855831,0.007485605,2.19805E-05,0.014949229,0.007485605,0.000307746,0.014663463,0.826539314,4846,5863,0.792026472,0.861052157,,,,,,,,,,,,,0.718458933,0.644064569,0.792853297,0.462,,5863,0.404696917,0.519303083,78.73385166,,,77.22282934,80.24487397,,,,,,,,,,,,,78.51652202,76.96861928,80.06442476,,,,340.1261111,168,33364,284.949376,395.3028461,,,,,,,,,,,,,341.8630189,285.3906746,398.3353632,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.101,,,0.086,0.119,0.156,,,0.133,0.181,0.082,,,0.069,0.097,96.5,10,10361,,,0.075,920,,,,0.021440352,272.3996707,12705,,,,,,,,,,,,,,,,,,,,,,,,,,0.322,,,0.302,0.339,0.05643789,398,7052,0.045714486,0.067161294,0.029710145,82,2760,0.018986741,0.040433549,8.25014E-05,1,12121,,,12121,,,,,,,,,,,3.1656269,,,,,,,,,3.152383651,2.973445608,,,,,,,,,2.997086786,0.041585008,,,,,1770.486867,,,,,0.842680306,55686,66082,0.747156086,0.938204527,78115,,,69723.34043,86506.65957,,,,,,,,,,,,,84789,77787.80851,91790.19149,,,,,,0.353819644,616,1741,,,,,,,,0.215617999,,78115,,,4.273504274,3,702,,,,,,,,,,,,,,,,,,,,,,,,,,26.35231698,17,60961,14.74919177,43.46413932,27.88668165,,,,,,,,,,,,,27.56996405,15.43069959,45.47246299,,,,,,,,,,,,,,,,,,,,,,,,,,,26.76877597,23,85921,16.96910771,40.1663073,,,,,,,,,,,,,26.81389935,16.80412797,40.59656586,,,,,,1300,,,-888,,0.731187335,6928,9475,,,0.733,,,,,0.143531613,,,,,0.796460177,4050,5085,0.76485282,0.828067534,0.066462168,325,4890,0.041799641,0.091124695,0.88259587,4488,5085,0.858883669,0.906308072,12121,,,,,0.211863708,2568,12121,,,0.210378682,2550,12121,,,0.010312681,125,12121,,,0.003382559,41,12121,,,0.004042571,49,12121,,,0.000247504,3,12121,,,0.016830295,204,12121,,,0.950581635,11522,12121,,,0.002057613,24,11664,0,0.010517663,0.508538899,6164,12121,,,1,12297,12297,, -17,131,17131,IL,Mercer County,2024,1,5862.312466,215,41697,4516.934339,7207.690594,0,,,,2,,,,2,,,,2,,,,2,6121.696271,4687.1843,7556.208243,,,,,2,,0.15,,,0.125,0.179,3.672448871,,,2.859580668,4.576357655,4.933073063,,,3.880355677,6.094186457,0.086912065,85,978,0.069256445,0.104567686,0,,,,,,,,,,,,,0.081545064,0.063974898,0.099115231,,,,,,,0.184,,,0.146,0.227,0.366,,,0.285,0.456,8.2,0.075076767,0.088,,,0.277,,,0.225,0.333,0.408879547,6419,15699,,,0.169375452,,,0.134256437,0.210807414,0.2,1,5,0.015594715,0.47750127,211.8,33,15582,,,16.57285804,53,3198,12.41420792,21.67770636,,,,,,,,,,,,,16.94915254,12.53907636,22.40767852,,,,,,,0.067270482,817,12145,0.056547077,0.077993886,0.000128353,2,15582,,,7791,0.000193499,3,15504,,,5168,0.000257998,4,15504,,,3876,2204,,,,,,,,,2210,0.47,,,,,,,,,0.48,0.48,,,,,,,,,0.48,0.924316624,10381,11231,0.906106981,0.942526267,0.62618705,2176,3475,0.548857946,0.703516155,0.04130809,312,7553,,,0.121,382,,0.074531915,0.167468085,,,,,,,,,,0.135338346,0,0.364552093,0.093718509,0.056988966,0.130448051,4.391964773,128667,29296,3.508729571,5.275199976,0.16635973,542,3258,0.106178383,0.226541077,13.47708895,21,15582,,,96.82041749,75,77463,76.15540026,121.3652317,,,,,,,,,,,,,95.24198267,74.24579794,120.3325154,,,,8.7,,,,,0,,,,,0.08957529,580,6475,0.065548537,0.113602042,0.077907885,0.054567481,0.101248288,0.007413127,0.00079559,0.014030665,0.013899614,0.003689008,0.02411022,0.824534804,5982,7255,0.793552636,0.855516971,,,,,,,,,,,,,0.7793214,0.729732191,0.828910609,0.477,,7255,0.422529255,0.531470745,78.52474006,,,77.30350533,79.74597479,,,,,,,,,,,,,78.24723302,76.98452491,79.50994114,,,,334.4512394,215,41697,286.7704774,382.1320014,,,,,,,,,,,,,342.3978725,292.9124095,391.8833356,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.113,,,0.096,0.132,0.166,,,0.143,0.191,0.091,,,0.077,0.107,44.9,6,13370,,,0.088,1390,,,,0.075076767,1233.811587,16434,,,,,,,,,,,,,,,,,,,,,,,,,,0.325,,,0.307,0.341,0.080044843,714,8920,0.065746971,0.094342715,0.033694697,115,3413,0.022971293,0.044418101,0.000386997,6,15504,,,2584,,,,,,,,,,,2.912315603,,,,,,,,,2.925156118,2.817658642,,,,,,,,,2.851815189,0.041719032,,,,,5729.52,,,,,0.673706911,40925,60746,0.610762767,0.736651055,70430,,,61212.6383,79647.3617,,,,56607,3858.574468,109355.4255,,,,56875,34240.2766,79509.7234,67594,63903.95745,71284.04255,,,,,,0.372292191,739,1985,,,,,,,,0.239145251,,70430,,,3.671970624,3,817,,,,,,,,,,,,,,,,,,,,,,,,,,21.75891407,17,77463,12.17829903,35.88801976,21.9459613,,,,,,,,,,,,,21.6060935,11.81225237,36.25135359,,,,12.909389,10,77463,6.190553808,23.740826,,,,,,,,,,,,,13.60599752,6.524604673,25.02191388,,,,12.83802991,14,109051,7.018670417,21.54003276,,,,,,,,,,,,,12.53314052,6.673369478,21.43205198,,,,0,,1600,,,0,,0.736785418,8893,12070,,,0.727,,,,,5.04102343,,,,,0.794871795,5115,6435,0.781668432,0.808075158,0.085344414,534,6257,0.060787174,0.109901654,0.870862471,5604,6435,0.84728274,0.894442202,15504,,,,,0.206527348,3202,15504,,,0.220846233,3424,15504,,,0.00754644,117,15504,,,0.002321981,36,15504,,,0.005675955,88,15504,,,0.000193499,3,15504,,,0.031927245,495,15504,,,0.94130547,14594,15504,,,0.003686327,55,14920,0,0.009155317,0.493550052,7652,15504,,,1,15699,15699,, -17,133,17133,IL,Monroe County,2024,1,5741.982064,389,96056,4749.966039,6733.998088,0,,,,2,,,,2,,,,2,,,,2,5723.106433,4708.526537,6737.686328,,,,,2,,0.109,,,0.088,0.133,2.968117004,,,2.22501025,3.778532673,4.288623454,,,3.306567173,5.344805692,0.075010903,172,2293,0.06422927,0.085792536,0,,,,,,,,,,,,,0.073469388,0.062579212,0.084359563,,,,,,,0.134,,,0.101,0.173,0.316,,,0.243,0.399,9.4,0.04942858,0.046,,,0.218,,,0.174,0.27,0.85183914,29782,34962,,,0.18237866,,,0.144467038,0.225226828,0.142857143,2,14,0.031645086,0.307569357,143.1,50,34932,,,2.48465361,17,6842,1.44740229,3.978171122,,,,,,,,,,,,,2.628324057,1.53109562,4.208201425,,,,,,,0.041199295,1168,28350,0.034050358,0.048348231,0.000400779,14,34932,,,2495.142857,0.000827791,29,35033,,,1208.034483,0.001627037,57,35033,,,614.6140351,3414,,,,,,,,,3439,0.5,,,,,,,,,0.5,0.53,,,,,,,,,0.53,0.95684151,23678,24746,0.942700714,0.970982305,0.818009028,6886,8418,0.740894921,0.895123136,0.027967549,524,18736,,,0.055,407,,0.040702128,0.069297872,,,,,,,,,,0.509202454,0.26272576,0.755679148,0.030788876,0.011344966,0.050232786,3.80131556,174526,45912,3.482806615,4.119824505,0.141449501,1091,7713,0.094065204,0.188833798,14.31352342,50,34932,,,56.15375709,97,172740,45.53691419,68.50282154,,,,,,,,,,,,,56.56891478,45.71344138,69.22602515,,,,8.4,,,,,0,,,,,0.063720074,865,13575,0.046676346,0.080763801,0.053239541,0.036259125,0.070219957,0.003609576,0,0.00878314,0.010313076,0.004008196,0.016617955,0.827554745,15419,18632,0.799800351,0.855309138,,,,,,,,,,,,,0.730052507,0.680412098,0.779692916,0.498,,18632,0.450280888,0.545719112,79.80655604,,,78.88858748,80.72452459,,,,,,,,,,,,,79.69786882,78.76670421,80.62903343,,,,285.553415,389,96056,255.3946053,315.7122246,,,,,,,,,,,,,286.0996254,255.4050077,316.7942432,,,,35.96691044,12,33364,18.58462747,62.82695435,,,,,,,,,,,,,34.91398464,17.42893534,62.47076275,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.089,,,0.075,0.106,0.143,,,0.12,0.168,0.073,,,0.061,0.087,20.3,6,29570,,,0.046,1600,,,,0.04942858,1629.0177,32957,,,17.25658626,18,104308,10.22734669,27.27284606,,,,,,,,,,,,,16.96352841,9.881880427,27.16025227,,,,0.302,,,0.283,0.321,0.048682426,1005,20644,0.040342,0.057022851,0.02260934,183,8094,0.015460404,0.029758276,0.000713613,25,35033,,,1401.32,,,,,,,,,,,3.725616885,,,,,,,,,3.719436534,3.688971386,,,,,,,,,3.685534867,0.027401222,,,,,4795.342667,,,,,0.857269834,59798,69754,0.778379591,0.936160077,100487,,,86305.89362,114668.1064,,,,,,,,,,80588,20108,141068,101446,95938.93617,106953.0638,,,,,,0.133925049,679,5070,,,,,,,,0.229701354,,100487,,,7.69625449,15,1949,,,,,,,,,,,,,,,,,,,,,,,,,,9.135413239,16,172740,5.113021442,15.06747487,9.262475397,,,,,,,,,,,,,8.005608918,4.262649584,13.68983506,,,,7.52576126,13,172740,4.007150915,12.86928095,,,,,,,,,,,,,7.823360555,4.165610006,13.37818481,,,,6.647637804,16,240687,3.799699383,10.79534732,,,,,,,,,,,,,6.903336037,3.945853017,11.21058523,,,,8.333333333,,3600,,,30,,0.792208279,21148,26695,,,0.813,,,,,52.42181249,,,,,0.841061556,11409,13565,0.825569106,0.856554005,0.059712661,798,13364,0.042120049,0.077305273,0.908145964,12319,13565,0.890826252,0.925465676,35033,,,,,0.216139069,7572,35033,,,0.199097993,6975,35033,,,0.005109468,179,35033,,,0.00234065,82,35033,,,0.005937259,208,35033,,,0.000399623,14,35033,,,0.017583421,616,35033,,,0.958696087,33586,35033,,,0.001727535,57,32995,0,0.005875453,0.497901978,17443,35033,,,0.414993421,14509,34962,, -17,135,17135,IL,Montgomery County,2024,1,10210.18473,511,76620,8737.844565,11682.52489,0,,,,2,,,,2,,,,2,,,,2,10389.63381,8832.78665,11946.48097,,,,,2,,0.163,,,0.134,0.195,3.862905072,,,2.967861302,4.816586121,4.946379946,,,3.796630664,6.139513972,0.097072419,189,1947,0.083921761,0.110223077,0,,,,,,,,,,,,,0.094054054,0.080752263,0.107355845,,,,,,,0.195,,,0.152,0.24,0.374,,,0.289,0.46,7.8,0.06479142,0.112,,,0.292,,,0.234,0.352,0.378004808,10693,28288,,,0.174766585,,,0.136695438,0.21689609,0.216216216,8,37,0.132577529,0.309084407,277.7,78,28084,,,24.2364532,123,5075,19.95321152,28.51969489,,,,,,,,,,,,,23.14428691,18.83864025,27.44993356,,,,,,,0.069872646,1421,20337,0.059149242,0.08059605,0.000391682,11,28084,,,2553.090909,0.000642398,18,28020,,,1556.666667,0.000856531,24,28020,,,1167.5,3071,,,,,,,,,3097,0.45,,,,,,,,,0.45,0.42,,,,,,,,,0.42,0.897221683,18472,20588,0.881663231,0.912780134,0.515799915,3640,7057,0.460381525,0.571218305,0.045597062,509,11163,,,0.187,1023,,0.123851064,0.250148936,,,,,,,,,,0.296875,0,0.654456429,0.163091787,0.105854949,0.220328626,5.260965493,119224,22662,4.507159203,6.014771782,0.214298323,1214,5665,0.136511949,0.292084697,14.24298533,40,28084,,,109.91024,156,141934,92.66251064,127.1579693,,,,,,,,,,,,,116.0259959,97.6409101,134.4110817,,,,8.8,,,,,0,,,,,0.091222031,1060,11620,0.067714686,0.114729377,0.070526316,0.04752891,0.093523721,0.014199656,0.005442153,0.022957159,0.010757315,0.004193094,0.017321536,0.817877881,9296,11366,0.784901227,0.850854536,,,,,,,,,,,,,0.818387414,0.780280348,0.85649448,0.351,,11366,0.310036325,0.391963675,74.78269135,,,73.67787863,75.88750406,,,,,,,,,,,,,74.57553032,73.42089092,75.73016973,,,,475.4024562,511,76620,431.5401525,519.26476,,,,,,,,,,,,,481.1642,435.3251217,527.0032783,,,,108.1817453,27,24958,71.29245185,157.3987597,,,,,,,,,,,,,98.31580747,62.32378831,147.5219838,,,,9.861932939,20,2028,6.023924845,15.23095557,,,,,,,,,,,,,,,,,,,,,,0.119,,,0.1,0.141,0.168,,,0.142,0.194,0.099,,,0.082,0.117,149.2,36,24128,,,0.112,3200,,,,0.06479142,1950.480894,30104,,,42.58188141,36,84543,29.82382624,58.95127271,,,,,,,,,,,,,43.36624066,30.03238232,60.59997461,,,,0.329,,,0.309,0.346,0.083536916,1231,14736,0.070430533,0.096643299,0.035260214,208,5899,0.024536809,0.045983618,0.001142041,32,28020,,,875.625,,,,,,0.093268451,115,1233,0.035979111,0.150557791,2.930142753,,,,,,,,,2.933183986,2.961175347,,,,,,,,,2.954420265,0.035181859,,,,,3238.05975,,,,,0.792115525,44486,56161,0.686774232,0.897456818,56381,,,49441.76596,63320.23404,,,,,,,,,,31202,14519.95745,47884.04255,62675,57658.82979,67691.17021,,,,,,0.500503271,1989,3974,,,,,,,,0.29873539,,56381,,,2.702702703,4,1480,,,,,,,,,,,,,,,,,,,,,,,,,,16.82253991,25,141934,10.66404725,25.24206966,17.61382051,,,,,,,,,,,,,18.55013889,11.75919681,27.83431637,,,,12.68195077,18,141934,7.516127764,20.04294973,,,,,,,,,,,,,13.65011716,8.08992453,21.57307004,,,,16.01729868,32,199784,10.95582044,22.61164662,,,,,,,,,,,,,17.20078694,11.76532553,24.28237891,,,,3.076923077,,2600,,,8,,0.60391553,13727,22730,,,0.71,,,,,33.33862717,,,,,0.754418687,8494,11259,0.729346391,0.779490984,0.079490064,848,10668,0.057534976,0.101445151,0.803623768,9048,11259,0.775847463,0.831400072,28020,,,,,0.199607423,5593,28020,,,0.214132762,6000,28020,,,0.037152034,1041,28020,,,0.003176303,89,28020,,,0.005353319,150,28020,,,0.000428266,12,28020,,,0.020913633,586,28020,,,0.924054247,25892,28020,,,0.002380687,64,26883,0,0.005989537,0.471163455,13202,28020,,,0.53231052,15058,28288,, -17,137,17137,IL,Morgan County,2024,1,8388.432165,576,90522,7265.584979,9511.27935,0,,,,2,,,,2,11125.1369,6358.976987,18066.52533,1,,,,2,8704.624444,7460.279045,9948.969843,,,,,2,,0.169,,,0.141,0.2,3.910155204,,,3.033908021,4.885011752,4.962816095,,,3.87310558,6.150141338,0.106382979,255,2397,0.094039606,0.118726352,0,,,,,,,0.171122995,0.117142793,0.225103196,,,,0.098687409,0.085798756,0.111576061,,,,,,,0.196,,,0.157,0.24,0.383,,,0.3,0.471,7.2,0.133597925,0.105,,,0.294,,,0.24,0.356,0.73592587,24223,32915,,,0.165545079,,,0.131402706,0.205755437,0.538461539,14,26,0.450653662,0.616589833,561.2,183,32606,,,21.41236529,151,7052,17.99703868,24.82769189,,,,,,,33.40757238,18.69796466,55.10071018,,,,20.4599256,16.81433886,24.10551234,,,,,,,0.067910131,1602,23590,0.057186727,0.078633536,0.000460038,15,32606,,,2173.733333,0.000465708,15,32209,,,2147.266667,0.001272936,41,32209,,,785.5853659,3411,,,,,,,,,3450,0.43,,,,,,,0.5,,0.44,0.46,,,,,,,0.4,0.25,0.46,0.896325968,20810,23217,0.877151998,0.915499938,0.528153866,4174,7903,0.462714159,0.593593572,0.0401049,627,15634,,,0.169,997,,0.105851064,0.232148936,,,,,,,0.142857143,0,0.468652695,0.319838057,0,0.805794088,0.125463415,0.085601362,0.165325468,4.391006296,117859,26841,3.896729594,4.885282999,0.258302583,1610,6233,0.185998599,0.330606568,12.88106484,42,32606,,,79.43238691,133,167438,65.93257045,92.93220337,,,,,,,97.46588694,48.65461959,174.3933946,,,,82.94749152,68.22845399,97.66652905,,,,8.4,,,,,0,,,,,0.112094395,1520,13560,0.094465666,0.129723125,0.09472119,0.076163041,0.113279339,0.007374631,0.001492066,0.013257196,0.015855457,0.008038212,0.023672702,0.829817258,11761,14173,0.803922625,0.855711892,,,,,,,,,,,,,0.83806025,0.805739938,0.870380562,0.256,,14173,0.218814841,0.293185159,76.35622236,,,75.42703164,77.28541307,,,,,,,72.43318031,68.02492262,76.841438,,,,76.13399339,75.13722501,77.13076177,,,,444.86854,576,90522,406.4737275,483.2633524,,,,,,,553.1422596,357.9645054,816.5470924,,,,454.1009488,412.9257679,495.2761296,,,,57.94532688,17,29338,33.75528826,92.77608159,,,,,,,,,,,,,57.73195876,31.56259908,96.864417,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.121,,,0.103,0.141,0.17,,,0.146,0.197,0.101,,,0.085,0.118,81.3,23,28295,,,0.105,3500,,,,0.133597925,4749.005452,35547,,,18.0606839,18,99664,10.7039059,28.54366699,,,,,,,,,,,,,18.34609916,10.48638084,29.79291565,,,,0.362,,,0.345,0.377,0.08006601,1407,17573,0.066959627,0.093172393,0.033900978,215,6342,0.023177573,0.044624382,0.0011177,36,32209,,,894.6944444,,,,,,,,,,,3.244752616,,,,,,,2.820595194,,3.294317477,2.740954853,,,,,,,2.118084816,,2.848376653,0.075085246,,,,,1812.0574,,,,,0.749218182,41207,55000,0.682774149,0.815662215,64842,,,57675.19149,72008.80851,,,,,,,27083,17604.70213,36561.29787,,,,63851,58077.04255,69624.95745,,,,,,0.497345133,2248,4520,,,45.06609352,,,,,0.25975448,,64842,,,4.01836969,7,1742,,,,,,,,,,,,,,,,,,,,,,,,,,15.10142384,26,167438,9.6757672,22.46972163,15.52813579,,,,,,,,,,,,,16.83129103,10.66959471,25.25520063,,,,9.555775869,16,167438,5.46195156,15.51798134,,,,,,,,,,,,,10.19846207,5.708001804,16.82081225,,,,12.25992737,29,236543,8.210665772,17.60730076,,,,,,,,,,,,,11.98966012,7.75907586,17.69910351,,,,1.724137931,,2900,,,5,,0.563037882,15309,27190,,,0.702,,,,,49.67856258,,,,,0.710072971,9439,13293,0.680547919,0.739598022,0.090048488,1170,12993,0.069708253,0.110388722,0.792597608,10536,13293,0.766319322,0.818875894,32209,,,,,0.188611879,6075,32209,,,0.21195939,6827,32209,,,0.063522618,2046,32209,,,0.004626036,149,32209,,,0.009003695,290,32209,,,0.00055885,18,32209,,,0.029463815,949,32209,,,0.876649384,28236,32209,,,0.000738078,23,31162,0,0.004433676,0.493247229,15887,32209,,,0.361901868,11912,32915,, -17,139,17139,IL,Moultrie County,2024,1,7858.74346,217,39654,6192.569208,9524.917712,0,,,,2,,,,2,,,,2,,,,2,7685.873458,6026.679083,9345.067834,,,,,2,,0.149,,,0.121,0.182,3.705982125,,,2.864997923,4.691263227,4.988573078,,,3.869964377,6.17060921,0.067097817,83,1237,0.053155227,0.081040408,0,,,,,,,,,,,,,0.067291312,0.052960377,0.081622247,,,,,,,0.181,,,0.139,0.228,0.35,,,0.27,0.436,9.2,0.006139707,0.076,,,0.27,,,0.218,0.332,0.657579513,9552,14526,,,0.174715147,,,0.138023676,0.214739768,0.181818182,2,11,0.044108943,0.367070091,358.4,52,14510,,,15.14683153,49,3235,11.20570935,20.02491456,,,,,,,,,,,,,15.29450049,11.23782368,20.33844333,,,,,,,0.090126194,1057,11728,0.077019811,0.103232577,0.000275672,4,14510,,,3627.5,0.000139636,2,14323,,,7161.5,0.00188508,27,14323,,,530.4814815,4696,,,,,,,,,4531,0.41,,,,,,,,,0.41,0.45,,,,,,,,,0.45,0.863920484,8431,9759,0.835180838,0.89266013,0.567447376,1914,3373,0.485161773,0.64973298,0.031992441,237,7408,,,0.128,448,,0.086297872,0.169702128,,,,,,,,,,0.596774194,0.34359858,0.849949807,0.092167256,0.046954328,0.137380184,3.948742223,116788,29576,3.356848496,4.540635951,0.194557823,715,3675,0.109877746,0.2792379,12.40523777,18,14510,,,81.08516691,59,72763,61.72578595,104.5939576,,,,,,,,,,,,,81.43089803,61.67496695,105.5031735,,,,9,,,,,0,,,,,0.101736973,615,6045,0.078352182,0.125121764,0.070441299,0.047328403,0.093554195,0.023986766,0.009527012,0.03844652,0.021505376,0.00930493,0.033705823,0.757948088,4935,6511,0.710658212,0.805237964,,,,,,,,,,,,,0.742732558,0.69815874,0.787306377,0.328,,6511,0.273581406,0.382418595,75.74594589,,,74.41720131,77.07469047,,,,,,,,,,,,,75.80321862,74.4689024,77.13753484,,,,409.1128394,217,39654,351.9292012,466.2964777,,,,,,,,,,,,,409.1131635,351.079494,467.1468329,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.113,,,0.095,0.134,0.167,,,0.143,0.195,0.088,,,0.074,0.105,,,,,,0.076,1110,,,,0.006139707,91.15008238,14846,,,,,,,,,,,,,,,,,,,,,,,,,,0.319,,,0.298,0.337,0.106961791,865,8087,0.08908945,0.124834131,0.053948397,207,3837,0.037267546,0.070629248,0.000349089,5,14323,,,2864.6,,,,,,,,,,,3.05707256,,,,,,,,,3.049587322,3.029983315,,,,,,,,,3.015101445,0.040355697,,,,,2679.762,,,,,0.717367494,45192,62997,0.620592907,0.81414208,75505,,,64477.76596,86532.23404,,,,,,,,,,,,,72694,61540.46809,83847.53192,,,,,,0.451368666,775,1717,,,,,,,,0.22307132,,75505,,,3.307607497,3,907,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.55737849,18,102521,10.40561522,27.74822745,,,,,,,,,,,,,17.1960348,10.01732396,27.53251752,,,,9.411764706,,1700,,,16,,0.623578363,6744,10815,,,0.729,,,,,24.27212958,,,,,0.779876374,4542,5824,0.745330409,0.814422339,0.063418955,358,5645,0.040777072,0.086060838,0.800652473,4663,5824,0.768587409,0.832717536,14323,,,,,0.246945472,3537,14323,,,0.192068701,2751,14323,,,0.008936675,128,14323,,,0.003281436,47,14323,,,0.003351253,48,14323,,,0.000488724,7,14323,,,0.018292257,262,14323,,,0.955805348,13690,14323,,,0.001243781,17,13668,0,0.007790515,0.504293793,7223,14323,,,0.696131075,10112,14526,, -17,141,17141,IL,Ogle County,2024,1,7371.921786,733,139613,6504.529696,8239.313877,0,,,,2,,,,2,,,,2,9055.319432,6152.650219,12853.30312,,7091.145495,6209.647083,7972.643906,,,,,2,,0.148,,,0.122,0.175,3.581157661,,,2.816418862,4.475629005,4.766706417,,,3.783952369,5.862618283,0.071699134,265,3696,0.063381661,0.080016608,0,,,,,,,,,,0.066326531,0.046212062,0.086440999,0.070950469,0.061744641,0.080156296,,,,,,,0.167,,,0.129,0.208,0.348,,,0.271,0.428,8.5,0.04031121,0.092,,,0.267,,,0.216,0.321,0.670792462,34739,51788,,,0.17570327,,,0.140149655,0.21631301,0.303030303,10,33,0.211104768,0.396820499,227.4,117,51449,,,13.08969516,149,11383,10.98788992,15.1915004,,,,,,,,,,25.39168017,18.65685152,33.76555178,10.76581576,8.73035134,13.13338223,,,,,,,0.071537217,2963,41419,0.060813813,0.082260622,0.000563665,29,51449,,,1774.103448,0.000428424,22,51351,,,2334.136364,0.001772117,91,51351,,,564.2967033,2869,,,,,,,6766,,2830,0.41,,,,,,,,0.33,0.41,0.48,,,,,,,0.34,0.38,0.48,0.912883947,32841,35975,0.898688382,0.927079513,0.63963813,7636,11938,0.584712005,0.694564256,0.04795351,1147,23919,,,0.112,1230,,0.071489362,0.152510638,,,,,,,0.581818182,0.214415485,0.949220879,0.113011923,0.036944304,0.189079543,0.104274092,0.070047491,0.138500692,4.115838871,130682,31751,3.644889871,4.586787872,0.192253891,2199,11438,0.154371797,0.230135984,14.18880833,73,51449,,,62.89703755,160,254384,53.15104061,72.64303449,,,,,,,,,,37.00688328,17.74623898,68.05697595,68.3695236,57.42812108,79.31092612,,,,9.7,,,,,0,,,,,0.122823754,2575,20965,0.103672626,0.141974882,0.100867052,0.083124251,0.118609853,0.020748867,0.011743826,0.029753909,0.004054376,0.000120477,0.007988276,0.82855622,20235,24422,0.804163139,0.852949301,,,,,,,,,,0.813716814,0.747647825,0.879785804,0.783716503,0.755128517,0.812304489,0.369,,24422,0.33591605,0.40208395,77.75591298,,,76.99961372,78.51221225,,,,,,,,,,79.68744607,74.90961153,84.46528061,77.83905097,77.07002285,78.60807909,,,,375.2481521,733,139613,346.5305246,403.9657795,,,,,,,,,,314.4811987,224.669979,428.2341347,377.4302973,346.9891945,407.8714001,,,,44.07051282,22,49920,27.61875575,66.72328603,,,,,,,,,,,,,33.50947287,17.84238302,57.30221915,,,,5.947553393,22,3699,3.727300047,9.004667312,,,,,,,,,,,,,,,,,,,,,,0.109,,,0.092,0.128,0.16,,,0.136,0.185,0.091,,,0.077,0.108,45.9,20,43584,,,0.092,4740,,,,0.04031121,2156.528801,53497,,,18.37294453,28,152398,12.20868821,26.55402036,,,,,,,,,,,,,19.07872646,12.34674582,28.16396387,,,,0.31,,,0.294,0.326,0.086314178,2594,30053,0.073207795,0.099420561,0.034356238,412,11992,0.023632833,0.045079642,0.000370003,19,51351,,,2702.684211,,,,,,0.085383502,236,2764,0.037393116,0.133373889,2.997132683,,,,,,,,2.392728759,3.155218287,3.140972886,,,,,,,,2.779578234,3.255470513,0.113881948,,,,,4236.473229,,,,,0.718811431,44245,61553,0.643386123,0.794236739,78577,,,72812.57447,84341.42553,57500,31081.10638,83918.89362,,,,,,,58917,45879.7234,71954.2766,76882,73513.65957,80250.34043,,,,,,0.333855422,2771,8300,,,68.59147433,,,,,0.29375008,,78577,,,2.499107462,7,2801,,,,,,,,,,,,,,,,,,,,,,,,,,9.216826653,24,254384,5.776136193,13.95438632,9.434555632,,,,,,,,,,,,,10.02889525,6.208044228,15.33023172,,,,6.289703755,16,254384,3.595109147,10.21408485,,,,,,,,,,,,,6.381155536,3.488637111,10.7064947,,,,12.31403016,44,357316,8.947393164,16.53101072,,,,,,,,,,,,,13.26084074,9.516208263,17.98982782,,,,6.481481482,,5400,,,35,,0.68505867,26272,38350,,,0.759,,,,,27.49932098,,,,,0.732061326,15232,20807,0.707460487,0.756662164,0.087356436,1757,20113,0.068563917,0.106148956,0.851348104,17714,20807,0.828352172,0.874344036,51351,,,,,0.218905182,11241,51351,,,0.198769255,10207,51351,,,0.012443769,639,51351,,,0.004245292,218,51351,,,0.006737941,346,51351,,,0.000895796,46,51351,,,0.114992892,5905,51351,,,0.850772137,43688,51351,,,0.012236227,599,48953,0.006608844,0.017863609,0.49814025,25580,51351,,,0.678728663,35150,51788,, -17,143,17143,IL,Peoria County,2024,1,9670.085692,2843,496087,9137.144484,10203.0269,0,,,,2,,,,2,19726.27699,17965.66843,21486.88554,,4943.015132,3442.991152,6874.537468,,7582.470617,7041.419784,8123.521451,,,,,2,,0.153,,,0.128,0.18,3.502865859,,,2.738139842,4.383473603,4.473578105,,,3.535414616,5.509850027,0.100849062,1651,16371,0.096236198,0.105461927,0,,,,0.070991432,0.053381492,0.088601372,0.158915537,0.148567339,0.169263736,0.064840183,0.050254927,0.079425438,0.076687452,0.07123244,0.082142465,,,,0.106425703,0.079340631,0.133510775,0.165,,,0.131,0.203,0.361,,,0.29,0.433,7.2,0.131901929,0.108,,,0.287,,,0.236,0.339,0.803404279,146083,181830,,,0.163890646,,,0.129959457,0.200651747,0.358695652,33,92,0.306285798,0.410744818,849.3,1524,179432,,,27.44847263,1116,40658,25.8380415,29.05890376,,,,,,,68.26587763,63.00154297,73.53021229,30.41087027,24.57507874,37.21520341,13.3590924,11.90667533,14.81150948,,,,21.2677231,15.83521678,27.96312818,0.071944899,10341,143735,0.062412984,0.081476814,0.001337554,240,179432,,,747.6333333,0.000885735,158,178383,,,1129.006329,0.00290947,519,178383,,,343.7052023,2925,,,,,,,5401,,2673,0.47,,,,,,0.38,0.44,0.4,0.48,0.53,,,,,,0.58,0.39,0.36,0.54,0.928564394,113140,121844,0.921458775,0.935670013,0.726349673,33622,46289,0.694386413,0.758312933,0.050220307,4126,82158,,,0.184,7560,,0.122042553,0.245957447,0.076923077,0,0.567292149,0.029360967,0,0.067455836,0.40769151,0.331297859,0.484085162,0.255294459,0.173289135,0.337299783,0.095516656,0.075102497,0.115930816,5.346553622,131167,24533,4.957994036,5.735113207,0.306501403,13106,42760,0.271998264,0.341004542,12.8182264,230,179432,,,95.34445685,858,899895,88.96464492,101.7242688,,,,,,,146.0003741,127.6052654,164.3954827,32.80337656,18.35980085,54.10418106,93.77028684,86.17151538,101.3690583,,,,8,,,,,0,,,,,0.144654516,10635,73520,0.131907495,0.157401536,0.127520056,0.115792595,0.139247517,0.017002176,0.012628235,0.021376118,0.012853645,0.008570098,0.017137193,0.792309509,63731,80437,0.780199218,0.804419801,,,,0.699462366,0.611337676,0.787587055,0.772840452,0.724061819,0.821619085,0.693034557,0.631414545,0.75465457,0.836207009,0.827782429,0.84463159,0.151,,80437,0.137310829,0.164689171,75.92336213,,,75.48615892,76.36056535,,,,88.50974276,84.29669031,92.72279521,67.98279098,66.81747879,69.14810316,86.32707549,81.79688392,90.85726707,77.47397876,77.00969501,77.93826252,,,,455.9469273,2843,496087,438.4784713,473.4153833,,,,,,,832.2405151,771.4929405,892.9880897,216.7889348,156.891227,292.0132725,401.0388682,382.2941232,419.7836132,,,,71.97366611,136,188958,59.87715184,84.07018037,,,,,,,169.4773403,134.5894715,210.6448596,,,,37.12871287,26.40214441,50.75617276,,,,8.17935742,139,16994,6.819579899,9.539134942,,,,,,,15.83801123,12.53910264,19.73888756,,,,4.090623033,2.90883286,5.592016348,,,,,,,0.109,,,0.093,0.127,0.159,,,0.136,0.184,0.101,,,0.086,0.119,250.4,372,148550,,,0.108,19700,,,,0.131901929,24598.9183,186494,,,24.0553609,129,536263,19.90416629,28.2065555,,,,,,,31.18210348,21.18672646,44.26050686,,,,25.41914548,20.541257,31.10659647,,,,0.328,,,0.313,0.342,0.091588859,9309,101639,0.078482476,0.104695242,0.025926598,1143,44086,0.018777662,0.033075534,0.002494632,445,178383,,,400.8606742,,,,,,0.083958825,783,9326,0.053513754,0.114403895,2.783152277,,,,,,4.140394951,2.043816806,2.313037206,3.216370869,2.748873533,,,,,,4.332413059,1.962286948,2.293640557,3.176580991,0.282348969,,,,,-413.3092778,,,,,0.752199459,48905,65016,0.694029233,0.810369685,65421,,,61094.70213,69747.29787,68750,1132.978723,136367.0213,123821,95418.2766,152223.7234,34738,29130.85106,40345.14894,53289,44462.44681,62115.55319,68872,66870.29787,70873.70213,,,,,,0.537279184,14751,27455,,,58.73932622,,,,,0.352822488,,65421,,,3.642250101,45,12355,,,11.24990363,143,1271122,9.406005792,13.09380147,,,,,,,47.2760405,38.44115705,56.11092396,,,,2.597288205,1.646457924,3.897207565,,,,14.51142775,128,899895,11.92811787,17.09473762,14.22388168,,,,,,,11.85283735,6.904714548,18.9775408,,,,17.00627147,13.64401211,20.36853083,,,,15.22399836,137,899895,12.6746774,17.77331931,,,,,,,50.67781579,40.4226106,62.74258431,,,,7.373390076,5.398248244,9.835069079,,,,10.22718512,130,1271122,8.469097511,11.98527272,,,,,,,15.9019409,11.19643391,21.91873083,,,,9.82452495,7.86904174,12.11851523,,,,16.04395604,,18200,,,292,,0.629223334,83973,133455,,,0.704,,,,,115.3517836,,,,,0.655141728,50062,76414,0.643618973,0.666664483,0.133788692,9872,73788,0.120308851,0.147268533,0.864841521,66086,76414,0.853140981,0.876542061,178383,,,,,0.235902524,42081,178383,,,0.186166843,33209,178383,,,0.188807229,33680,178383,,,0.004809875,858,178383,,,0.04369811,7795,178383,,,0.000807252,144,178383,,,0.056720652,10118,178383,,,0.678837109,121093,178383,,,0.010856325,1836,169118,0.008110393,0.013602258,0.512021886,91336,178383,,,0.169427487,30807,181830,, -17,145,17145,IL,Perry County,2024,1,8984.81576,351,57381,7557.676374,10411.95515,0,,,,2,,,,2,,,,2,,,,2,10146.41633,8422.462387,11870.37027,,,,,2,,0.188,,,0.16,0.221,4.11033297,,,3.227170084,5.137280891,5.018455336,,,3.945996997,6.267893424,0.077039275,102,1324,0.062675791,0.091402759,0,,,,,,,,,,,,,0.073658927,0.059172109,0.088145745,,,,,,,0.215,,,0.175,0.26,0.395,,,0.31,0.486,7.1,0.092315742,0.133,,,0.322,,,0.268,0.381,0.57058964,11951,20945,,,0.167240614,,,0.131719852,0.2075363,0.333333333,5,15,0.193378406,0.471634149,247.8,52,20985,,,23.10690423,83,3592,18.40452024,28.64448435,,,,,,,,,,,,,23.32003682,18.37353663,29.18850352,,,,,,,0.062576437,921,14718,0.053044522,0.072108352,0.00061949,13,20985,,,1614.230769,0.000437148,9,20588,,,2287.555556,0.002331455,48,20588,,,428.9166667,2724,,,,,,,,,2727,0.42,,,,,,,,,0.41,0.33,,,,,,,0.25,,0.33,0.844958177,12829,15183,0.824790932,0.865125422,0.493442042,2784,5642,0.432271229,0.554612855,0.049341685,386,7823,,,0.182,694,,0.116468085,0.247531915,,,,,,,,,,0.571428571,0.134219067,1,0.289197618,0.211816141,0.366579096,4.574111865,109829,24011,3.57875413,5.5694696,0.347740183,1408,4049,0.245756549,0.449723817,23.35001191,49,20985,,,76.1730652,80,105024,60.40050331,94.80397335,,,,,,,,,,,,,83.6857433,65.82414579,104.9008039,,,,8.5,,,,,0,,,,,0.109347443,930,8505,0.080007603,0.138687282,0.095865788,0.067367173,0.124364403,0.0111699,0.003335543,0.019004257,0.010582011,0.002378599,0.018785422,0.876117497,6860,7830,0.858298965,0.893936029,,,,,,,,,,,,,0.876930912,0.837588795,0.916273028,0.371,,7830,0.318954959,0.423045041,75.81143384,,,74.65457833,76.96828935,,,,,,,79.67896034,72.13336679,87.22455389,,,,74.98569763,73.68817177,76.28322349,,,,453.2687141,351,57381,403.5985962,502.938832,,,,,,,,,,,,,484.8871748,428.9662292,540.8081203,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.131,,,0.112,0.152,0.173,,,0.149,0.2,0.108,,,0.091,0.128,158.8,29,18258,,,0.133,2810,,,,0.092315742,2063.256836,22350,,,22.3767282,14,62565,12.23356553,37.54434767,,,,,,,,,,,,,26.32123183,14.39006237,44.16255452,,,,0.355,,,0.34,0.369,0.075916473,818,10775,0.06281009,0.089022856,0.027571326,115,4171,0.018039411,0.037103241,0.00097144,20,20588,,,1029.4,,,,,,,,,,,2.962448701,,,,,,,,,2.967818139,2.833351366,,,,,,,,,2.864854032,0.041492195,,,,,-302.568525,,,,,0.693883028,41370,59621,0.58135372,0.806412336,53051,,,50202.14894,55899.85106,,,,,,,38214,8482.765957,67945.23404,48017,40947.89362,55086.10638,58404,51259.82979,65548.17021,,,,,,0.458877786,1194,2602,,,56.14803024,,,,,0.317486947,,53051,,,3.805899144,4,1051,,,,,,,,,,,,,,,,,,,,,,,,,,18.75362927,19,105024,11.29090989,29.28611515,18.09110299,,,,,,,,,,,,,23.2379688,13.77229306,36.7260092,,,,,,,,,,,,,,,,,,,,,,,,,,,16.90057056,25,147924,10.93715817,24.94857609,,,,,,,,,,,,,16.58833287,10.2684395,25.3570289,,,,0,,1900,,,0,,0.594852071,10053,16900,,,0.66,,,,,35.59724426,,,,,0.768626488,6262,8147,0.725513635,0.811739341,0.085710547,655,7642,0.056090572,0.115330522,0.834417577,6798,8147,0.806210102,0.862625052,20588,,,,,0.188847873,3888,20588,,,0.204779483,4216,20588,,,0.083835244,1726,20588,,,0.004857198,100,20588,,,0.006022926,124,20588,,,0.000680008,14,20588,,,0.033951817,699,20588,,,0.855595493,17615,20588,,,0.001051104,21,19979,0,0.006215136,0.448999417,9244,20588,,,0.716734304,15012,20945,, -17,147,17147,IL,Piatt County,2024,1,6459.456733,193,45281,4861.390494,8057.522973,0,,,,2,,,,2,,,,2,,,,2,6432.044324,4800.264565,8063.824083,,,,,2,,0.121,,,0.099,0.146,3.196373336,,,2.539172121,3.922385274,4.632168394,,,3.990336163,5.331726955,0.066666667,80,1200,0.052553054,0.08078028,0,,,,,,,,,,,,,0.070175439,0.055346956,0.085003922,,,,,,,0.149,,,0.112,0.189,0.342,,,0.264,0.427,9.3,0.015941169,0.065,,,0.233,,,0.185,0.285,0.55436934,9243,16673,,,0.181224634,,,0.143912786,0.221406991,0.461538462,6,13,0.318103058,0.587460254,262.6,44,16753,,,9.892347978,34,3437,6.850738547,13.82356476,,,,,,,,,,,,,10.07556675,6.891680199,14.22369398,,,,,,,0.054788386,734,13397,0.04644796,0.063128811,0.000537217,9,16753,,,1861.444444,0.000239192,4,16723,,,4180.75,0.000956766,16,16723,,,1045.1875,2923,,,,,,,,,2887,0.49,,,,,,,,,0.49,0.47,,,,,,,,,0.47,0.938513514,11112,11840,0.921000796,0.956026231,0.723377282,2853,3944,0.624436256,0.822318308,0.034175162,295,8632,,,0.078,278,,0.049404255,0.106595745,,,,,,,,,,,,,0.068586698,0.023155867,0.11401753,3.752690187,140193,37358,2.994473052,4.510907322,0.142000545,521,3669,0.075566313,0.208434777,15.51960843,26,16753,,,74.12538126,61,82293,56.70004321,95.21715324,,,,,,,,,,,,,74.68543507,56.85401356,96.3387698,,,,9.1,,,,,1,,,,,0.079200592,535,6755,0.055751654,0.102649531,0.067607727,0.043978279,0.091237174,0.003552924,0,0.008452598,0.013323464,0.005947465,0.020699464,0.847144593,6972,8230,0.815523969,0.878765217,,,,,,,,,,,,,0.78807947,0.722980375,0.853178566,0.372,,8230,0.318528804,0.425471197,78.52229786,,,77.20270841,79.84188732,,,,,,,,,,,,,78.52604937,77.19042621,79.86167253,,,,298.9739539,193,45281,253.6269181,344.3209897,,,,,,,,,,,,,299.4869128,253.3811182,345.5927074,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.096,,,0.081,0.113,0.151,,,0.128,0.176,0.078,,,0.065,0.092,35.4,5,14139,,,0.065,1080,,,,0.015941169,266.6798183,16729,,,,,,,,,,,,,,,,,,,,,,,,,,0.303,,,0.284,0.323,0.065035615,630,9687,0.054312211,0.075759019,0.029697901,116,3906,0.020165986,0.039229816,0.001016564,17,16723,,,983.7058824,,,,,,,,,,,3.33073348,,,,,,,,,3.354658019,3.136990672,,,,,,,,,3.186762469,0.054540989,,,,,5158.50725,,,,,0.756223475,47754,63148,0.675188629,0.837258322,85430,,,74672.04255,96187.95745,,,,,,,,,,,,,80966,70478.51064,91453.48936,,,,,,0.311938809,938,3007,,,,,,,,0.197155566,,85430,,,3.21888412,3,932,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.61957654,18,115240,9.257150972,24.68566493,,,,,,,,,,,,,16.24842029,9.629843636,25.67950918,,,,2.941176471,,1700,,,5,,0.777672209,9822,12630,,,0.772,,,,,17.79961692,,,,,0.833112192,5651,6783,0.80304788,0.863176504,0.0841306,554,6585,0.05653439,0.11172681,0.838861861,5690,6783,0.801147035,0.876576686,16723,,,,,0.215870358,3610,16723,,,0.214614603,3589,16723,,,0.009208874,154,16723,,,0.002332117,39,16723,,,0.005800395,97,16723,,,0.000478383,8,16723,,,0.01638462,274,16723,,,0.952460683,15928,16723,,,0.002092714,33,15769,0,0.007542908,0.500807271,8375,16723,,,0.641036406,10688,16673,, -17,149,17149,IL,Pike County,2024,1,8612.577238,285,40934,6970.884585,10254.26989,0,,,,2,,,,2,,,,2,,,,2,8991.290912,7255.30133,10727.28049,,,,,2,,0.165,,,0.137,0.196,3.898487519,,,2.984246864,4.857363246,5.164059703,,,4.025388694,6.326899244,0.0765625,98,1280,0.061995742,0.091129258,0,,,,,,,,,,,,,0.077294686,0.062442116,0.092147256,,,,,,,0.2,,,0.159,0.245,0.38,,,0.297,0.463,7.6,0.100705621,0.103,,,0.299,,,0.243,0.356,0.439107131,6472,14739,,,0.164503592,,,0.129566135,0.203681057,0.681818182,15,22,0.608922455,0.742765176,157.3,23,14618,,,25.62373567,76,2966,20.1885893,32.07192615,,,,,,,,,,,,,25.74047955,20.17642698,32.3647885,,,,,,,0.074436827,836,11231,0.063713422,0.085160231,0.000615679,9,14618,,,1624.222222,0.000621375,9,14484,,,1609.333333,0.001035626,15,14484,,,965.6,3362,,,,,,,,,3375,0.48,,,,,,,,,0.48,0.18,,,,,,,,,0.18,0.910417472,9421,10348,0.895002731,0.925832213,0.548309901,1833,3343,0.469364556,0.627255247,0.041568047,281,6760,,,0.202,652,,0.142425532,0.261574468,,,,,,,,,,0.397435897,0.036891522,0.757980273,0.141521599,0.098183483,0.184859715,4.674817375,106871,22861,3.931740625,5.417894124,0.250675473,835,3331,0.170767237,0.330583708,6.840881106,10,14618,,,85.88158751,66,76850,66.42081356,109.2624365,,,,,,,,,,,,,89.79103178,69.44437747,114.2362082,,,,8.2,,,,,0,,,,,0.09744409,610,6260,0.074784658,0.120103521,0.080227828,0.057383595,0.10307206,0.012460064,0.004335507,0.020584621,0.007827476,0.001970084,0.013684868,0.813254927,5117,6292,0.776736537,0.849773316,,,,,,,,,,,,,0.787641607,0.744147733,0.831135481,0.392,,6292,0.339116124,0.444883877,75.3975046,,,74.08832254,76.70668667,,,,,,,,,,,,,74.9909165,73.64160626,76.34022674,,,,470.8678712,285,40934,412.8921616,528.8435808,,,,,,,,,,,,,484.5878894,424.4456344,544.7301443,,,,73.40184172,11,14986,36.64193492,131.3361705,,,,,,,,,,,,,77.04699867,38.46158414,137.8583632,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.122,,,0.103,0.142,0.174,,,0.15,0.201,0.099,,,0.083,0.116,0,0,12252,,,0.103,1530,,,,0.100705621,1654.593356,16430,,,,,,,,,,,,,,,,,,,,,,,,,,0.331,,,0.313,0.349,0.089054037,707,7939,0.074756165,0.103351909,0.040046431,138,3446,0.026940048,0.053152814,0.0008285,12,14484,,,1207,,,,,,,,,,,3.005690805,,,,,,,,,3.027486072,2.464900453,,,,,,,,,2.468832233,0.058871722,,,,,992.7254,,,,,0.769076974,41544,54018,0.704173502,0.833980447,54244,,,46489.78723,61998.21277,,,,121250,17247.2766,225252.7234,,,,,,,55507,51187.85106,59826.14894,,,,,,0.47809604,1135,2374,,,,,,,,0.310504388,,54244,,,1.090512541,1,917,,,,,,,,,,,,,,,,,,,,,,,,,,18.90847487,12,76850,9.770284884,33.02930034,15.61483409,,,,,,,,,,,,,20.0528162,10.36158275,35.02823436,,,,,,,,,,,,,,,,,,,,,,,,,,,26.65710688,29,108789,17.85268284,38.2840521,,,,,,,,,,,,,27.88783321,18.67691959,40.05158041,,,,0,,1500,,,0,,0.660215947,7949,12040,,,0.627,,,,,14.64049338,,,,,0.789501221,4527,5734,0.765415362,0.81358708,0.103138191,562,5449,0.07540668,0.130869701,0.793163586,4548,5734,0.765131618,0.821195553,14484,,,,,0.228044739,3303,14484,,,0.217757526,3154,14484,,,0.011184756,162,14484,,,0.002899751,42,14484,,,0.00324496,47,14484,,,0.000759459,11,14484,,,0.017674676,256,14484,,,0.954570561,13826,14484,,,0.002808787,39,13885,0,0.009074183,0.498412041,7219,14484,,,1,14739,14739,, -17,151,17151,IL,Pope County,2024,1,12936.22326,84,10596,7666.825756,20444.80988,1,,,,2,,,,2,,,,2,,,,2,14361.56346,8366.139957,22994.25433,1,,,,2,,0.176,,,0.146,0.208,4.012084867,,,3.223542922,4.871143501,5.125733098,,,4.114008029,6.239638328,0.119170985,23,193,0.073461272,0.164880697,0,,,,,,,,,,,,,0.120879121,0.07351818,0.168240062,,,,,,,0.21,,,0.167,0.254,0.379,,,0.295,0.469,7,0.107190065,0.128,,,0.307,,,0.251,0.364,0.977145894,3677,3763,,,0.147793637,,,0.116332245,0.185575804,0.714285714,5,7,0.576857484,0.809026882,,,,,,28.08112325,18,641,16.64265332,44.38028123,,,,,,,,,,,,,44.61942257,25.99245793,71.44001789,,,,,,,0.070401211,186,2642,0.058486318,0.082316105,,0,3779,,,,0,0,3770,,,-3770,0.000530504,2,3770,,,1885,2691,,,,,,,,,2715,0.41,,,,,,,,,0.42,0.27,,,,,,,,,0.27,0.881764909,2558,2901,0.848308748,0.915221069,0.500705219,355,709,0.385967532,0.615442905,0.044886364,79,1760,,,0.297,113,,0.176659575,0.417340426,,,,,,,,,,,,,0.124454149,0.043757698,0.205150599,6.432824619,102848,15988,3.793499361,9.072149876,0.359805511,222,617,0.189162049,0.530448972,21.16962159,8,3779,,,121.1533802,25,20635,78.40407971,178.8462888,,,,,,,,,,,,,134.5170837,87.05236399,198.5737514,,,,8.7,,,,,1,,,,,0.061728395,100,1620,0.028531548,0.094925243,0.056291391,0.014092438,0.098490344,0.002469136,0,0.018034361,0.00617284,0,0.019719438,0.790973872,999,1263,0.71764877,0.864298974,,,,,,,,,,,,,0.700906344,0.577974773,0.823837916,0.522,,1263,0.370366886,0.673633114,76.94017254,,,72.67069007,81.20965501,,,,,,,,,,,,,75.94056673,71.33870775,80.54242572,,,,482.924184,84,10596,361.7433528,631.6767229,,,,,,,,,,,,,513.6498156,381.2407936,677.1832469,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.127,,,0.107,0.146,0.176,,,0.151,0.202,0.103,,,0.087,0.121,,,,,,0.128,490,,,,0.107190065,479.1395921,4470,,,,,,,,,,,,,,,,,,,,,,,,,,0.34,,,0.323,0.356,0.077268643,172,2226,0.062970771,0.091566516,0.035714286,17,476,0.026182371,0.045246201,0.000265252,1,3770,,,3770,,,,,,,,,,,2.655783579,,,,,,,,,2.759908392,2.81840583,,,,,,,,,2.864528661,,,,,,-3069.395,,,,,0.580828335,32732,56354,0.43470988,0.72694679,54878,,,47602.76596,62153.23404,,,,,,,,,,,,,58222,45532.6383,70911.3617,,,,,,0.652719665,312,478,,,,,,,,0.306917162,,54878,,,,,179,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,34.46136881,10,29018,16.52556584,63.3756842,,,,,,,,,,,,,38.3891896,18.40910859,70.5990865,,,,55,,200,,,11,,0.613540198,2175,3545,,,0.461,,,,,0.670524279,,,,,0.826538176,1115,1349,0.770761415,0.882314938,0.066945607,80,1195,0.015865769,0.118025445,0.676797628,913,1349,0.582104303,0.771490952,3770,,,,,0.10397878,392,3770,,,0.315119363,1188,3770,,,0.031299735,118,3770,,,0.008488064,32,3770,,,0.005039788,19,3770,,,0.000795756,3,3770,,,0.018037135,68,3770,,,0.919363395,3466,3770,,,0.000831716,3,3607,0,0.016357076,0.487798409,1839,3770,,,1,3763,3763,, -17,153,17153,IL,Pulaski County,2024,1,10802.50888,140,14139,7471.862927,14133.15484,0,,,,2,,,,2,13110.6203,6774.448823,22901.6152,1,,,,2,10535.83361,6943.180734,15329.08474,,,,,2,,0.199,,,0.172,0.23,4.184491006,,,3.323979075,5.143952863,5.184579339,,,4.18573243,6.297736635,0.142523365,61,428,0.109403514,0.175643215,0,,,,,,,0.140625,0.080400429,0.200849571,,,,0.145390071,0.104248312,0.18653183,,,,,,,0.215,,,0.177,0.257,0.417,,,0.33,0.506,6.3,0.161004289,0.136,,,0.333,,,0.278,0.392,0.627190449,3257,5193,,,0.140329753,,,0.109101807,0.174568716,0.166666667,1,6,0.011498194,0.426636125,612,31,5065,,,15.19213584,17,1119,8.849978972,24.32408116,,,,,,,,,,,,,19.41747573,10.03329306,33.91842241,,,,,,,0.080947423,311,3842,0.06784104,0.094053806,,0,5065,,,,,0,4991,,,,0.000801443,4,4991,,,1247.75,3746,,,,,,,2678,,3669,0.44,,,,,,,0.43,,0.44,0.36,,,,,,,0.24,,0.39,0.8808933,3195,3627,0.843732719,0.918053881,0.438032167,463,1057,0.326638724,0.549425609,0.069360676,115,1658,,,0.398,396,,0.270510638,0.525489362,,,,,,,0.536873156,0.378213464,0.695532849,,,,0.26572327,0.171190253,0.360256288,5.646529081,90288,15990,4.137711178,7.155346983,0.447690858,475,1061,0.300165249,0.595216466,17.76900296,9,5065,,,109.1333308,29,26573,73.08830444,156.7336674,,,,,,,,,,,,,112.0349077,67.45233306,174.9563864,,,,8.6,,,,,0,,,,,0.114634146,235,2050,0.080965107,0.148303185,0.096774194,0.056733395,0.136814992,0.006829268,0,0.024781856,0.014634146,0.003159876,0.026108417,0.809467456,1368,1690,0.723552681,0.89538223,,,,,,,,,,,,,0.721969697,0.657291161,0.786648233,0.543,,1690,0.418490787,0.667509213,73.01765032,,,70.58729349,75.44800714,,,,,,,,,,,,,73.21509077,70.24459989,76.18558164,,,,590.0841145,140,14139,482.122497,698.045732,,,,,,,671.728681,477.6647578,918.27522,,,,577.833341,451.2926333,728.8581345,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.132,,,0.115,0.153,0.18,,,0.156,0.207,0.124,,,0.106,0.144,299.2,13,4345,,,0.136,720,,,,0.161004289,991.9474219,6161,,,,,,,,,,,,,,,,,,,,,,,,,,0.372,,,0.359,0.385,0.096022931,268,2791,0.07815059,0.113895271,0.04076087,45,1104,0.025271508,0.056250231,0.000200361,1,4991,,,4991,,,,,,,,,,,2.173046399,,,,,,,1.982985121,,2.366281132,2.340167793,,,,,,,2.425665892,,2.236486315,0.145094656,,,,,-11901.2845,,,,,0.683582208,34471,50427,0.564125557,0.803038859,44873,,,38163.7234,51582.2766,,,,,,,27115,20877.55319,33352.44681,125391,1324.787234,249457.2128,55032,44750.6383,65313.3617,,,,,,0.801498127,642,801,,,26.29304871,,,,,0.375348205,,44873,,,3.546099291,1,282,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,34.32796409,13,37870,18.27819512,58.70186406,,,,,,,,,,,,,,,,,,,0,,500,,,0,,0.619598583,2624,4235,,,0.491,,,,,7.343251471,,,,,0.716861082,1352,1886,0.658632059,0.775090104,0.103896104,184,1771,0.047055292,0.160736916,0.563626723,1063,1886,0.510369269,0.616884177,4991,,,,,0.201763174,1007,4991,,,0.238829894,1192,4991,,,0.294530154,1470,4991,,,0.008415147,42,4991,,,0.004608295,23,4991,,,0.000801443,4,4991,,,0.02785013,139,4991,,,0.635944701,3174,4991,,,0.003665988,18,4910,0,0.020843902,0.499098377,2491,4991,,,1,5193,5193,, -17,155,17155,IL,Putnam County,2024,1,8485.694741,99,15431,5592.126304,12346.24033,0,,,,2,,,,2,,,,2,,,,2,8373.01712,5364.750059,12458.38577,1,,,,2,,0.139,,,0.115,0.165,3.441472224,,,2.666373128,4.265029701,4.701277639,,,3.621376569,5.790248611,0.044776119,15,335,0.022629396,0.066922843,1,,,,,,,,,,,,,0.042253521,0.018856873,0.065650169,,,,,,,0.168,,,0.13,0.208,0.356,,,0.273,0.443,9,0.00047708,0.09,,,0.259,,,0.208,0.316,0.374489977,2111,5637,,,0.169251007,,,0.133157694,0.210058776,0.5,4,8,0.315552499,0.64971552,143.7,8,5566,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.07654379,326,4259,0.064628896,0.088458683,0.000179662,1,5566,,,5566,0.000358938,2,5572,,,2786,,0,5572,,,,2198,,,,,,,,,2219,0.43,,,,,,,,,0.42,0.41,,,,,,,,,0.41,0.936381229,3871,4134,0.917127967,0.955634491,0.644389439,781,1212,0.546600905,0.742177973,0.047011417,140,2978,,,0.116,120,,0.071914894,0.160085106,,,,,,,,,,0.016528926,0,0.256421427,0.136120043,0.07943364,0.192806445,3.498614735,130068,37177,2.940443988,4.056785482,0.167115903,186,1113,0.094392732,0.239839074,5.38986705,3,5566,,,119.3484976,34,28488,82.65230407,166.7775628,,,,,,,,,,,,,119.0521909,80.89018772,168.985082,,,,9,,,,,1,,,,,0.078028747,190,2435,0.048399846,0.107657649,0.061924686,0.029934712,0.093914661,0.012320329,0,0.029266894,0.001642711,0,0.013406071,0.889145497,2310,2598,0.854600931,0.923690062,,,,,,,,,,,,,0.819085487,0.760321035,0.877849939,0.388,,2598,0.324458865,0.451541135,79.19115199,,,76.11288307,82.26942092,,,,,,,,,,,,,79.04144786,75.88477571,82.19812001,,,,402.3916397,99,15431,318.073893,502.2029774,,,,,,,,,,,,,399.7753884,312.7996202,503.4509391,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.105,,,0.089,0.123,0.158,,,0.134,0.182,0.087,,,0.072,0.102,0,0,4814,,,0.09,510,,,,0.00047708,2.86534271,6006,,,,,,,,,,,,,,,,,,,,,,,,,,0.323,,,0.307,0.341,0.08657188,274,3165,0.072274008,0.100869752,0.05021645,58,1155,0.034727089,0.065705812,0.000179469,1,5572,,,5572,,,,,,,,,,,2.931243332,,,,,,,,,2.982111748,3.052296639,,,,,,,,,3.142104346,0.018381567,,,,,7293.015,,,,,0.651318556,44926,68977,0.530461024,0.772176087,83029,,,73660.31915,92397.68085,,,,,,,,,,63462,42705.06383,84218.93617,76573,67653.51064,85492.48936,,,,,,0.399244333,317,794,,,,,,,,0.202856833,,83029,,,,,325,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,25.16166369,10,39743,12.06599576,46.27319539,,,,,,,,,,,,,,,,,,,0,,500,,,0,,0.741794311,3390,4570,,,0.644,,,,,1.229998352,,,,,0.8225,1974,2400,0.807410849,0.837589151,0.070720138,164,2319,0.038359671,0.103080605,0.83125,1995,2400,0.792187387,0.870312614,5572,,,,,0.189519024,1056,5572,,,0.249461594,1390,5572,,,0.006101938,34,5572,,,0.004127782,23,5572,,,0.006101938,34,5572,,,0.000358938,2,5572,,,0.066044508,368,5572,,,0.91080402,5075,5572,,,0.001688239,9,5331,0,0.016572529,0.490308686,2732,5572,,,1,5637,5637,, -17,157,17157,IL,Randolph County,2024,1,8221.54379,546,85184,7101.429921,9341.65766,0,,,,2,,,,2,9093.998959,4699.001965,15885.38605,1,,,,2,8930.928281,7618.40733,10243.44923,,,,,2,,0.177,,,0.149,0.211,3.95083561,,,3.07488471,4.954699427,4.881122317,,,3.786795979,6.111089214,0.087640449,195,2225,0.07589076,0.099390139,0,,,,,,,0.159574468,0.085541789,0.233607147,0.078014184,0.033745622,0.122282747,0.084658799,0.072299959,0.097017639,,,,,,,0.204,,,0.166,0.25,0.39,,,0.303,0.484,8.3,0.044954556,0.098,,,0.308,,,0.252,0.368,0.648012466,19546,30163,,,0.170664268,,,0.133134853,0.214146327,0.444444444,12,27,0.348480628,0.533596575,255.5,77,30142,,,27.69516729,149,5380,23.24816933,32.14216524,,,,,,,,,,68.75,34.3197523,123.0127407,26.19995808,21.60690292,30.79301324,,,,,,,0.067522564,1399,20719,0.05679916,0.078245968,0.000464468,14,30142,,,2153,0.000465611,14,30068,,,2147.714286,0.00146335,44,30068,,,683.3636364,3539,,,,,,,,,3588,0.47,,,,,,,0.38,,0.47,0.29,,,,,,,0.14,,0.29,0.860379251,18875,21938,0.841785095,0.878973406,0.532939756,3972,7453,0.482467188,0.583412324,0.035746069,482,13484,,,0.182,1066,,0.121234043,0.242765957,,,,,,,0.423076923,0,0.940272398,0.248387097,0.050619469,0.446154725,0.140929246,0.102087503,0.179770989,4.280868138,117360,27415,3.852135362,4.709600914,0.250981675,1534,6112,0.192569939,0.309393412,19.24225333,58,30142,,,97.58941472,154,157804,82.1760156,113.0028138,,,,,,,59.82650314,28.68913369,110.0230694,,,,105.2900742,87.84874874,122.7313996,,,,7.1,,,,,1,,,,,0.074719801,900,12045,0.057729296,0.091710306,0.057560568,0.042043467,0.07307767,0.009464508,0.003833782,0.015095234,0.01286841,0.005305542,0.020431279,0.846990514,10357,12228,0.822064054,0.871916973,,,,,,,,,,,,,0.840595112,0.802997584,0.87819264,0.316,,12228,0.277007157,0.354992843,76.29767616,,,75.34716965,77.24818267,,,,,,,72.59119626,67.72196954,77.46042297,,,,75.84772839,74.800218,76.89523878,,,,451.7447541,546,85184,412.1777113,491.3117969,,,,,,,698.1845426,474.382523,991.0172275,,,,467.5633158,423.5210262,511.6056054,,,,75.87829122,20,26358,46.34843154,117.1878667,,,,,,,,,,,,,61.05272339,33.378092,102.4360958,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.124,,,0.105,0.144,0.169,,,0.146,0.196,0.104,,,0.087,0.123,111.2,29,26089,,,0.098,3010,,,,0.044954556,1504.898718,33476,,,15.00938086,14,93275,8.205768187,25.1831907,,,,,,,,,,,,,17.87835059,9.774260636,29.99683441,,,,0.346,,,0.331,0.361,0.081536209,1225,15024,0.068429826,0.094642592,0.031719533,190,5990,0.020996128,0.042442937,0.001064254,32,30068,,,939.625,,,,,,,,,,,2.966069135,,,,,,,,,3.023752596,2.997056662,,,,,,,,,3.041858742,0.125291432,,,,,65.37031667,,,,,0.632626836,39877,63034,0.556359308,0.708894365,62575,,,57356.2766,67793.7234,36563,18917.04255,54208.95745,91318,50644.12766,131991.8723,35321,17125.76596,53516.23404,53417,36164.23404,70669.76596,64574,60327.53192,68820.46809,,,,,,0.483455418,1914,3959,,,85.23884199,,,,,0.269165002,,62575,,,5.988023952,9,1503,,,,,,,,,,,,,,,,,,,,,,,,,,13.8478908,21,157804,8.458651457,21.38694421,13.30764746,,,,,,,,,,,,,16.81709259,10.12498831,26.26197325,,,,7.604369978,12,157804,3.929288934,13.283304,,,,,,,,,,,,,9.024863499,4.663278664,15.76462032,,,,30.45544324,68,223277,23.64984336,38.60953128,,,,,,,,,,,,,32.36125774,24.75379797,41.56938939,,,,6.785714286,,2800,,,19,,0.583960784,14891,25500,,,0.692,,,,,30.27596274,,,,,0.759914163,8853,11650,0.734561102,0.785267224,0.066986496,754,11256,0.048020638,0.085952354,0.825922747,9622,11650,0.800996463,0.85084903,30068,,,,,0.198017826,5954,30068,,,0.208760144,6277,30068,,,0.083377677,2507,30068,,,0.00422376,127,30068,,,0.006385526,192,30068,,,0.000798191,24,30068,,,0.035652521,1072,30068,,,0.859784489,25852,30068,,,0.00460335,133,28892,0.000334947,0.008871754,0.467373952,14053,30068,,,0.789875012,23825,30163,, -17,159,17159,IL,Richland County,2024,1,9771.726793,304,42033,8025.001489,11518.4521,0,,,,2,,,,2,,,,2,,,,2,9660.017964,7912.623105,11407.41282,,,,,2,,0.151,,,0.123,0.18,3.765211579,,,2.965519842,4.675966771,4.907302771,,,3.909285216,5.921546852,0.071790541,85,1184,0.057086495,0.086494586,0,,,,,,,,,,,,,0.071553229,0.056630203,0.086476254,,,,,,,0.181,,,0.138,0.225,0.371,,,0.285,0.452,8.3,0.027143972,0.106,,,0.273,,,0.219,0.327,0.667046101,10548,15813,,,0.166648382,,,0.130066507,0.205270092,0,0,13,0,0.165938541,322.9,51,15796,,,31.60345975,95,3006,25.56908618,38.63359069,,,,,,,,,,,,,33.76436782,27.28504612,41.3190351,,,,,,,0.066645229,829,12439,0.055921825,0.077368633,0.000569765,9,15796,,,1755.111111,0.000259151,4,15435,,,3858.75,0.005183026,80,15435,,,192.9375,2650,,,,,,,,,2592,0.39,,,,,,,,,0.39,0.46,,,,,,,,,0.46,0.920677036,10063,10930,0.900099368,0.941254703,0.629884425,2289,3634,0.537610078,0.722158772,0.037305123,268,7184,,,0.185,622,,0.124234043,0.245765957,,,,,,,,,,,,,0.131486788,0.074809992,0.188163583,4.237922058,110703,26122,3.531168695,4.944675421,0.216680521,782,3609,0.148386281,0.284974761,17.72600658,28,15796,,,77.72680938,61,78480,59.45485036,99.84333832,,,,,,,,,,,,,79.21164277,60.29957256,102.177248,,,,8.8,,,,,1,,,,,0.084291188,550,6525,0.058774701,0.109807675,0.065432099,0.03983289,0.091031308,0.010574713,0,0.021595117,0.014559387,0.006215192,0.022903582,0.827334307,6229,7529,0.784289278,0.870379337,,,,,,,,,,,,,0.808955224,0.76656477,0.851345678,0.251,,7529,0.203909784,0.298090216,75.03775469,,,73.69172365,76.38378572,,,,,,,,,,,,,75.01876994,73.6743735,76.36316638,,,,513.3081773,304,42033,452.0511185,574.5652362,,,,,,,,,,,,,519.3182255,456.4596022,582.1768487,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.116,,,0.097,0.134,0.168,,,0.143,0.195,0.093,,,0.078,0.11,,,,,,0.106,1690,,,,0.027143972,440.628096,16233,,,,,,,,,,,,,,,,,,,,,,,,,,0.325,,,0.307,0.343,0.081090251,717,8842,0.066792379,0.095388123,0.032300768,122,3777,0.021577364,0.043024172,0.000777454,12,15435,,,1286.25,,,,,,,,,,,2.851971275,,,,,,,,,2.828962009,3.039931284,,,,,,,,,3.032314661,0.010447865,,,,,3161.392,,,,,0.874914116,44569,50941,0.771155322,0.978672911,56831,,,49861.97872,63800.02128,,,,,,,,,,,,,61026,53718.59575,68333.40426,,,,,,0.508497317,1137,2236,,,,,,,,0.296369939,,56831,,,3.824091778,4,1046,,,,,,,,,,,,,,,,,,,,,,,,,,15.18896361,12,78480,7.582275906,27.17725152,15.29051988,,,,,,,,,,,,,16.0392702,8.006745897,28.6986849,,,,,,,,,,,,,,,,,,,,,,,,,,,23.54240803,26,110439,15.37868255,34.49508243,,,,,,,,,,,,,23.8102041,15.40870868,35.14855824,,,,16.25,,1600,,,26,,0.675010465,8063,11945,,,0.71,,,,,42.95987996,,,,,0.730917502,4740,6485,0.698054776,0.763780228,0.080039364,488,6097,0.053534119,0.106544609,0.847956823,5499,6485,0.811751513,0.884162134,15435,,,,,0.222027859,3427,15435,,,0.21218011,3275,15435,,,0.009782961,151,15435,,,0.003239391,50,15435,,,0.00803369,124,15435,,,0.000323939,5,15435,,,0.018594104,287,15435,,,0.948688047,14643,15435,,,0.013699555,203,14818,0.003743692,0.023655418,0.502105604,7750,15435,,,0.453487637,7171,15813,, -17,161,17161,IL,Rock Island County,2024,1,8200.356797,2241,389264,7655.499584,8745.21401,0,,,,2,5134.982688,2935.086286,8338.890179,1,13875.97233,11848.16114,15903.78352,,5617.490398,4393.839079,6841.141717,,7852.193965,7201.301667,8503.086263,,,,,2,,0.163,,,0.136,0.194,3.611108162,,,2.773940861,4.573849069,4.808268487,,,3.775778554,5.944618153,0.083973464,962,11456,0.078894623,0.089052305,0,,,,0.06496063,0.043528552,0.086392708,0.119402985,0.106086935,0.132719035,0.073896863,0.062074499,0.085719228,0.074894679,0.068450287,0.081339072,,,,0.101123596,0.069804637,0.132442554,0.179,,,0.142,0.22,0.382,,,0.301,0.462,8.1,0.059855056,0.1,,,0.301,,,0.248,0.36,0.916023833,132523,144672,,,0.162105709,,,0.12568376,0.203580928,0.408163265,20,49,0.33700307,0.476815259,545.8,780,142909,,,24.37266592,744,30526,22.62131716,26.12401468,,,,,,,52.58693808,45.02944978,60.14442639,27.38629084,23.28149811,31.49108357,16.38549022,14.54353648,18.22744396,,,,52.78174037,41.44501872,66.26264159,0.084368727,9330,110586,0.073645322,0.095092131,0.000489822,70,142909,,,2041.557143,0.000784303,111,141527,,,1275.018018,0.002896974,410,141527,,,345.1878049,2758,,,,,,,5120,3899,2557,0.53,,,,,,0.48,0.44,0.43,0.54,0.54,,,,,,0.53,0.38,0.44,0.55,0.89590841,88505,98788,0.887465244,0.904351576,0.617438081,21464,34763,0.584347962,0.650528199,0.042960916,2892,67317,,,0.232,7160,,0.184340426,0.279659575,,,,0.333810888,0.214806344,0.452815433,0.506581654,0.412284877,0.60087843,0.26802077,0.208087796,0.327953744,0.139150943,0.112464346,0.165837541,4.373495733,119930,27422,4.128703928,4.618287539,0.307833843,9871,32066,0.273896845,0.341770841,13.08525005,187,142909,,,86.97722625,621,713980,80.13628557,93.81816694,,,,,,,93.16729434,72.76442985,117.5178646,36.92528433,25.71981348,51.3541318,99.80118969,91.08801299,108.5143664,,,,8.6,,,,,1,,,,,0.12630971,7655,60605,0.112678016,0.139941405,0.100945844,0.089419933,0.112471755,0.016417787,0.011786942,0.021048633,0.016995297,0.011730039,0.022260556,0.81465967,53093,65172,0.798082094,0.831237246,,,,0.782514137,0.700689593,0.86433868,0.749490835,0.652283881,0.846697789,0.760285314,0.714997536,0.805573092,0.860683413,0.848284561,0.873082266,0.174,,65172,0.15727665,0.19072335,76.7668131,,,76.31532146,77.21830474,,,,86.90602195,78.91392699,94.89811691,71.2939882,69.75079347,72.83718293,82.84207626,80.89396926,84.79018325,76.87011352,76.34885204,77.39137499,,,,417.605979,2241,389264,399.2714015,435.9405564,,,,228.4134354,139.5208603,352.7660255,659.4756952,580.4658321,738.4855583,268.7004171,220.3777384,317.0230958,413.582433,392.6158945,434.5489714,,,,46.64146143,66,141505,36.07250289,59.33937489,,,,,,,116.0541586,74.35808924,172.6793888,,,,39.34559393,26.73342215,55.84792992,,,,6.126731011,73,11915,4.802379096,7.703444413,,,,,,,11.15401115,7.286170406,16.34321068,,,,5.075384386,3.514851229,7.092340961,,,,,,,0.115,,,0.097,0.134,0.162,,,0.138,0.189,0.105,,,0.087,0.123,201.3,242,120223,,,0.1,14530,,,,0.059855056,8831.374068,147546,,,16.44369795,70,425695,12.81866926,20.77562312,,,,,,,28.04504466,14.93280513,47.95788048,,,,17.38537355,12.98422852,22.7986044,,,,0.351,,,0.336,0.366,0.104463245,8248,78956,0.090165373,0.118761118,0.035748734,1186,33176,0.02502533,0.046472138,0.001165855,165,141527,,,857.7393939,,,,,,0.065475414,502,7667,0.040295039,0.090655789,2.647004851,,,,,,2.832083913,2.213804589,2.336681093,2.902523823,2.602443605,,,,,,3.063866477,2.094865792,2.24280589,2.903598466,0.113284892,,,,,-3090.863333,,,,,0.764939966,44596,58300,0.726167178,0.803712753,62652,,,56739.82979,68564.17021,,,,70804,35439.40426,106168.5957,38825,31042.19149,46607.80851,58372,53164,63580,69621,67072.40426,72169.59575,,,,,,0.579875375,12563,21665,,,43.23831904,,,,,0.368416012,,62652,,,3.899082569,34,8720,,,10.44883207,105,1004897,8.450216938,12.4474472,,,,,,,41.15226337,29.78209705,55.4318287,,,,7.535889675,5.661192258,9.83270135,,,,15.47621775,113,713980,12.50040191,18.45203359,15.82677386,,,,,,,,,,,,,18.27389924,14.59654167,22.5959594,,,,9.243956413,66,713980,7.14927522,11.76057907,,,,,,,28.86873909,18.09188509,43.70761792,,,,7.32667464,5.158655093,10.09885588,,,,8.359065656,84,1004897,6.667518138,10.34909207,,,,,,,12.44138195,6.624511906,21.27514204,,,,8.652317775,6.633682425,11.0918809,,,,7.375886525,,14100,,,104,,0.634400836,66758,105230,,,0.706,,,,,120.0245976,,,,,0.685957321,41853,61014,0.673681414,0.698233228,0.112557116,6651,59090,0.100577429,0.124536804,0.883272692,53892,61014,0.869055006,0.897490378,141527,,,,,0.222445187,31482,141527,,,0.206483569,29223,141527,,,0.113999449,16134,141527,,,0.006634776,939,141527,,,0.02774029,3926,141527,,,0.000501671,71,141527,,,0.13942216,19732,141527,,,0.689663456,97606,141527,,,0.02061353,2790,135348,0.016708183,0.024518876,0.505196888,71499,141527,,,0.115440445,16701,144672,, -17,163,17163,IL,St. Clair County,2024,1,11047.17871,4477,720535,10561.05507,11533.30235,0,,,,2,1830.744638,877.9132144,3366.804572,1,18259.82239,17150.30993,19369.33485,,3217.255773,2200.600567,4541.805211,,8316.548818,7778.671335,8854.426301,,,,,2,,0.154,,,0.132,0.179,3.488473472,,,2.76255484,4.379875984,4.593116643,,,3.704147802,5.630620594,0.109286196,2269,20762,0.105042217,0.113530175,0,,,,0.085987261,0.054978499,0.116996023,0.162632749,0.154595097,0.1706704,0.065486726,0.051062709,0.079910743,0.073934719,0.068960625,0.078908814,,,,0.1037182,0.077282221,0.130154178,0.163,,,0.131,0.198,0.437,,,0.368,0.509,7.6,0.129936971,0.09,,,0.279,,,0.234,0.331,0.793725719,204305,257400,,,0.1608518,,,0.129785367,0.195137806,0.409638554,68,166,0.372630842,0.446059265,774.7,1974,254796,,,20.70029028,1141,55120,19.49916119,21.90141936,,,,,,,37.51307727,34.83365431,40.19250023,17.73158056,13.46433252,22.92217968,10.23938494,9.066930078,11.4118398,,,,11.64725458,7.73951608,16.83352577,0.068404474,14202,207618,0.060064048,0.076744899,0.000588706,150,254796,,,1698.64,0.000736135,186,252671,,,1358.446237,0.001765141,446,252671,,,566.5269058,4257,,,,,,,7678,5486,3129,0.42,,,,,,0.34,0.38,0.38,0.44,0.46,,,,,,0.45,0.33,0.41,0.49,0.922309654,161632,175247,0.91600355,0.928615759,0.698445721,46330,66333,,,0.042941857,5308,123609,,,0.228,13003,,0.176765957,0.279234043,0.54787234,0.05862601,1,0.040133779,0,0.13056751,0.425734843,0.381928946,0.46954074,0.28501349,0.20303014,0.366996841,0.072903093,0.054935258,0.090870929,4.81863238,134170,27844,4.529496888,5.107767873,0.360174959,21492,59671,0.329720643,0.390629276,10.87144225,277,254796,,,101.6151955,1317,1296066,96.12709774,107.1032933,,,,,,,144.7343946,132.8314708,156.6373183,23.15804475,12.3306835,39.6009618,91.48635077,84.83141197,98.14128956,,,,9.2,,,,,0,,,,,0.143792411,15045,104630,0.130190369,0.157394454,0.129895403,0.117210004,0.142580801,0.013523846,0.009120511,0.017927181,0.009079614,0.005709795,0.012449433,0.784613229,95183,121312,0.77018731,0.799039148,,,,0.803224013,0.725758112,0.880689915,0.721141603,0.687538482,0.754744723,0.74380704,0.665607282,0.822006799,0.819294564,0.808381698,0.830207429,0.339,,121312,0.318674714,0.359325286,74.67575852,,,74.29804029,75.05347676,,,,90.94620934,84.36782089,97.52459779,68.93217299,68.19686054,69.66748544,90.91654827,85.72868068,96.10441587,76.85118639,76.4105392,77.29183357,,,,494.6181464,4477,720535,479.5226514,509.7136415,,,,140.9305012,87.23820147,215.4272415,773.2031338,737.5647588,808.8415088,180.2582477,129.3564307,244.5406671,402.028495,385.241555,418.815435,,,,78.78817723,208,263999,68.08074197,89.49561248,,,,,,,146.5359336,121.9078424,171.1640248,,,,46.28575207,35.56724276,59.21958349,,,,9.021512838,195,21615,7.755266691,10.28775899,,,,,,,14.73208982,12.13904761,17.32513203,,,,5.398110661,4.119327121,6.948438453,,,,,,,0.109,,,0.094,0.126,0.157,,,0.136,0.182,0.112,,,0.096,0.13,344.9,734,212785,,,0.09,23160,,,,0.129936971,35090.25858,270056,,,34.95018951,270,772528,30.78126794,39.11911107,,,,,,,40.57384226,32.82666131,49.59941814,,,,36.52587922,31.06713775,41.9846207,,,,0.344,,,0.33,0.358,0.08379028,12515,149361,0.071875386,0.095705174,0.030185961,1844,61088,0.021845536,0.038526387,0.001151695,291,252671,,,868.2852234,,,,,,0.090424334,1204,13315,0.063632866,0.117215801,2.911138932,,,,,,3.292961742,2.421103225,2.869261138,3.277396553,2.857704571,,,,,,3.613899768,2.271512549,2.915118193,3.309056141,0.249845735,,,,,-3818.489942,,,,,0.757042766,46786,61801,0.715580159,0.798505374,67185,,,63499.7234,70870.2766,,,,74145,56173.76596,92116.23404,42415,39648.3617,45181.6383,66838,53326.51064,80349.48936,78912,75961.87234,81862.12766,,,,,,0.516206395,21309,41280,,,53.71456322,,,,,0.34355883,,67185,,,3.572547791,57,15955,,,17.06094268,311,1822877,15.16476556,18.95711979,,,,,,,51.20234732,45.22619871,57.17849593,,,,2.497172844,1.659353219,3.609110038,,,,12.25767618,162,1296066,10.31733023,14.19802213,12.49936346,,,,,,,7.969288173,5.376845265,11.3766544,,,,15.11065979,12.35404959,17.86726999,,,,24.92157035,323,1296066,22.20369075,27.63944996,,,,,,,57.84279501,50.31803916,65.36755085,,,,11.84534018,9.572240622,14.49569645,,,,14.04373416,256,1822877,12.32337673,15.7640916,,,,,,,17.97529214,14.60943047,21.88427321,,,,13.19934217,11.07278286,15.32590149,,,,5.347985348,,27300,,,146,,0.65264311,128091,196265,,,0.669,,,,,86.76430889,,,,,0.679278259,68404,100701,0.666486834,0.692069685,0.126418418,12344,97644,0.11418235,0.138654486,0.862603152,86865,100701,0.851190411,0.874015893,252671,,,,,0.229167574,57904,252671,,,0.174986445,44214,252671,,,0.3043523,76901,252671,,,0.003945843,997,252671,,,0.015858567,4007,252671,,,0.000985471,249,252671,,,0.047195761,11925,252671,,,0.603571443,152505,252671,,,0.00464463,1121,241354,,,0.513755041,129811,252671,,,0.141557887,36437,257400,, -17,165,17165,IL,Saline County,2024,1,11714.46618,555,63665,10105.8256,13323.10675,0,,,,2,,,,2,27939.75641,15274.92482,46878.16374,1,,,,2,11499.34545,9847.764688,13150.92621,,,,,2,,0.17,,,0.141,0.201,4.001380448,,,3.136910471,4.990952929,5.213594272,,,4.113755406,6.410608526,0.095706156,185,1933,0.08259126,0.108821053,0,,,,,,,0.253968254,0.146481693,0.361454815,,,,0.09030837,0.077125522,0.103491218,,,,,,,0.2,,,0.159,0.246,0.383,,,0.3,0.469,7.2,0.064578285,0.139,,,0.303,,,0.25,0.362,0.735526759,17482,23768,,,0.163225599,,,0.129104343,0.201317555,0.157894737,3,19,0.054083319,0.295484356,450.3,105,23320,,,32.97769156,136,4124,27.43517667,38.52020646,,,,,,,,,,,,,33.57182168,27.61449984,39.52914353,,,,,,,0.075410198,1365,18101,0.063495305,0.087325092,0.000643225,15,23320,,,1554.666667,0.000303201,7,23087,,,3298.142857,0.003378525,78,23087,,,295.9871795,2655,,,,,,,,,2688,0.41,,,,,,,0.25,,0.41,0.24,,,,,,,0.17,,0.24,0.881816598,15184,17219,0.859605588,0.904027608,0.67803763,3856,5687,0.600887765,0.755187495,0.050344234,468,9296,,,0.255,1144,,0.175170213,0.334829787,,,,,,,0.040650407,0,0.274305799,0.170542636,0,0.583383088,0.225429389,0.166815748,0.284043031,5.524203599,110810,20059,4.647274887,6.401132312,0.287212171,1397,4864,0.214233382,0.36019096,20.15437393,47,23320,,,101.6940534,120,118001,83.49867861,119.8894283,,,,,,,,,,,,,104.7071905,85.40114363,124.0132374,,,,8.6,,,,,0,,,,,0.141025641,1430,10140,0.113229864,0.168821418,0.117371827,0.089352265,0.145391388,0.015187377,0.005163347,0.025211407,0.019723866,0.009856298,0.029591433,0.818772563,7938,9695,0.792372134,0.845172992,,,,,,,,,,,,,0.832221051,0.813781103,0.850661,0.305,,9695,0.2595669,0.3504331,72.51624401,,,71.38811434,73.64437367,,,,,,,,,,,,,72.48298707,71.33014113,73.63583301,,,,599.7233298,555,63665,546.6536557,652.7930039,,,,,,,1189.893942,762.3875009,1770.467867,,,,597.3555115,542.6651354,652.0458876,,,,95.08716323,21,22085,58.86045272,145.3508297,,,,,,,,,,,,,95.55154475,56.62990116,151.0126355,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.125,,,0.106,0.146,0.177,,,0.152,0.205,0.101,,,0.086,0.118,,,,,,0.139,3310,,,,0.064578285,1608.838817,24913,,,35.7178575,25,69993,23.11471411,52.72660366,,,,,,,,,,,,,37.47833284,24.01307503,55.76478847,,,,0.337,,,0.319,0.355,0.090379879,1211,13399,0.074890517,0.105869241,0.034127625,169,4952,0.023404221,0.04485103,0.001732577,40,23087,,,577.175,,,,,,,,,,,2.884472695,,,,,,,,,2.962240054,2.436806951,,,,,,,,,2.507862165,0.054889005,,,,,-6354.054,,,,,0.824171532,42205,51209,0.693456742,0.954886323,50979,,,44412.70213,57545.29787,,,,51058,21884.38298,80231.61702,50288,28386.04255,72189.95745,51136,27562.38298,74709.61702,54010,49599.10638,58420.89362,,,,,,0.545379989,1995,3658,,,73.22964982,,,,,0.330390945,,50979,,,4.758667573,7,1471,,,,,,,,,,,,,,,,,,,,,,,,,,21.16480685,26,118001,13.56069111,31.49155493,22.03371158,,,,,,,,,,,,,22.99097483,14.57430586,34.49775071,,,,17.79645935,21,118001,11.01628883,27.20377856,,,,,,,,,,,,,16.6790215,9.885045201,26.36004473,,,,16.78093686,28,166856,11.15081067,24.25312602,,,,,,,,,,,,,18.34658,12.19116917,26.51591628,,,,7.272727273,,2200,,,16,,0.596549865,11066,18550,,,0.622,,,,,27.11992771,,,,,0.741957698,7542,10165,0.715114735,0.768800662,0.120816496,1166,9651,0.088000793,0.153632199,0.742646336,7549,10165,0.711812487,0.773480184,23087,,,,,0.20032919,4625,23087,,,0.217654957,5025,23087,,,0.030753238,710,23087,,,0.00519773,120,23087,,,0.005934076,137,23087,,,0.000996232,23,23087,,,0.019838004,458,23087,,,0.919651752,21232,23087,,,0.001619433,36,22230,0,0.00615696,0.504786243,11654,23087,,,0.651506227,15485,23768,, -17,167,17167,IL,Sangamon County,2024,1,8285.195509,2914,539509,7811.694033,8758.696984,0,,,,2,,,,2,14964.31295,13273.58958,16655.03631,,5091.68249,3110.131943,7863.690645,1,7321.420007,6827.031887,7815.808127,,,,,2,,0.143,,,0.117,0.171,3.484426335,,,2.699933913,4.362482887,4.329603059,,,3.404597379,5.351929468,0.111825534,1687,15086,0.106796452,0.116854615,0,,,,0.083129584,0.056373275,0.109885893,0.185069984,0.17164562,0.198494349,0.106060606,0.079796042,0.13232517,0.089221147,0.083697894,0.094744401,,,,0.125553914,0.100593983,0.150513846,0.162,,,0.124,0.202,0.348,,,0.28,0.42,8.1,0.059575566,0.099,,,0.244,,,0.199,0.293,0.870766974,170969,196343,,,0.17838815,,,0.142297327,0.216819431,0.255102041,25,98,0.203349053,0.309007311,675.3,1315,194734,,,19.5880258,814,41556,18.2423683,20.9336833,,,,,,,40.78894405,36.20370754,45.37418056,38.34586466,28.55101492,50.41773036,12.05590167,10.80704023,13.3047631,,,,44.75587703,36.37536838,54.48867439,0.06153551,9622,156365,0.053195084,0.069875935,0.001206774,235,194734,,,828.6553192,0.000858462,167,194534,,,1164.874252,0.002930079,570,194534,,,341.2877193,4263,,,,,,,7209,,4037,0.47,,,,,,0.31,0.34,0.36,0.48,0.52,,,,,,0.49,0.35,0.32,0.54,0.932001784,127482,136783,0.925049859,0.938953709,0.723615208,35324,48816,0.690873856,0.75635656,0.041007423,3994,97397,,,0.148,6112,,0.10987234,0.18612766,,,,0.028169014,0,0.097993246,0.522761043,0.447347998,0.598174087,0.190109184,0.10262284,0.277595528,0.086139471,0.069195511,0.10308343,4.643710043,137282,29563,4.398289752,4.889130334,0.323042204,13885,42982,0.295163014,0.350921394,18.07593949,352,194734,,,87.78694846,856,975088,81.90597605,93.66792087,,,,,,,100.6937562,83.18090923,118.2066032,,,,91.02510444,84.32480612,97.72540277,,,,8.2,,,,,1,,,,,0.130209882,10950,84095,0.117703732,0.142716032,0.117002048,0.105651906,0.12835219,0.016053273,0.011106891,0.020999655,0.004399786,0.002755321,0.006044251,0.798664651,73446,91961,0.786788386,0.810540917,,,,0.813063063,0.749185465,0.876940662,0.713942308,0.649378109,0.778506507,0.751260504,0.689200717,0.813320292,0.825146092,0.81149289,0.838799294,0.144,,91961,0.130732136,0.157267864,77.34177584,,,76.93585043,77.74770125,,,,92.26982807,83.01691694,101.5227392,71.80693264,70.45164357,73.16222171,94.6111903,83.26389327,105.9584873,77.99670404,77.56983159,78.42357649,,,,398.178716,2914,539509,382.9293929,413.4280392,,,,,,,676.2359701,613.5944567,738.8774836,205.6948744,130.3929056,308.6433068,371.3828938,355.3618541,387.4039336,,,,57.54408193,109,189420,46.74110402,68.34705985,,,,,,,123.0399451,89.04461832,165.7339985,,,,41.77712285,31.4722463,54.37866782,,,,7.071493448,109,15414,5.743934037,8.399052858,,,,,,,13.41054557,9.744122938,18.00303148,,,,5.047138368,3.780652979,6.601781252,,,,,,,0.107,,,0.089,0.124,0.156,,,0.133,0.179,0.091,,,0.076,0.107,199.5,329,164903,,,0.099,19510,,,,0.059575566,11764.08911,197465,,,28.28791266,165,583288,23.97157907,32.60424625,,,,,,,45.96493532,32.01626161,63.92609806,,,,27.36656108,22.60691744,32.12620472,,,,0.295,,,0.28,0.311,0.07352399,8376,113922,0.062800586,0.084247394,0.030745098,1372,44625,0.022404673,0.039085524,0.002318361,451,194534,,,431.3392461,,,,,,0.085729059,829,9670,0.058359867,0.113098251,2.883828465,,,,,,3.29852497,2.245067091,2.800125335,3.088213587,2.90580839,,,,,,3.675978195,2.308875351,2.927290242,3.08519287,0.200058159,,,,,1858.99334,,,,,0.853984392,52415,61377,0.807946871,0.900021912,73684,,,69280.25532,78087.74468,,,,115040,107489.5319,122590.4681,29482,26195.87234,32768.12766,61128,53072.34043,69183.65957,78517,75184.40426,81849.59575,,,,,,0.397946774,11125,27956,,,56.15772927,,,,,0.313256609,,73684,,,3.668247294,41,11177,,,6.271425852,86,1371299,5.016331175,7.745159909,,,,,,,30.20665914,22.62686052,39.51105389,,,,2.728723912,1.841058565,3.895423056,,,,14.86315307,149,975088,12.39298906,17.33331708,15.2806721,,,,,,,,,,,,,17.13362399,14.15043313,20.11681486,,,,10.97336856,107,975088,8.894130822,13.05260629,,,,,,,27.75024777,19.32906434,38.593877,,,,8.986963767,7.005779145,11.35448807,,,,9.625909448,132,1371299,7.98376681,11.26805209,,,,,,,8.549054475,4.784840892,14.10036526,,,,10.2781934,8.383086842,12.17329996,,,,4.2,,20000,,,84,,0.699605957,104752,149730,,,0.727,,,,,120.5047302,,,,,0.700691527,58870,84017,0.687316799,0.714066255,0.116937269,9507,81300,0.104961412,0.128913127,0.850458836,71453,84017,0.838704134,0.862213537,194534,,,,,0.216851553,42185,194534,,,0.195256356,37984,194534,,,0.135585553,26376,194534,,,0.0027296,531,194534,,,0.023661674,4603,194534,,,0.000400958,78,194534,,,0.026864199,5226,194534,,,0.785009304,152711,194534,,,0.004890359,905,185058,0.003315355,0.006465363,0.516608922,100498,194534,,,0.188842994,37078,196343,, -17,169,17169,IL,Schuyler County,2024,1,9985.079513,116,18282,6817.852497,13152.30653,0,,,,2,,,,2,,,,2,,,,2,9978.867096,6582.833426,13374.90077,,,,,2,,0.159,,,0.132,0.19,3.765325325,,,2.910019947,4.738517367,4.914515667,,,3.799119932,6.157877765,0.09929078,42,423,0.070791581,0.127789979,0,,,,,,,,,,,,,0.092391304,0.06280457,0.121978039,,,,,,,0.19,,,0.147,0.234,0.38,,,0.291,0.475,7.6,0.062275331,0.121,,,0.283,,,0.227,0.34,0.636047523,4390,6902,,,0.164235598,,,0.128585041,0.206326857,0.230769231,3,13,0.089378268,0.394382228,263,18,6843,,,14.4486692,19,1315,8.699042711,22.56338675,,,,,,,,,,,,,13.94585726,8.123975775,22.32866843,,,,,,,0.080536913,420,5215,0.06743053,0.093643296,,0,6843,,,,,0,6746,,,,0.001334124,9,6746,,,749.5555556,2249,,,,,,,,,2256,0.4,,,,,,,,,0.4,0.31,,,,,,,,,0.31,0.916714096,4832,5271,0.894401052,0.93902714,0.594437257,919,1546,0.467848996,0.721025519,0.041357028,128,3095,,,0.158,183,,0.102,0.214,,,,,,,,,,,,,0.123646209,0.044480398,0.202812021,3.753432393,106346,28333,2.903198626,4.603666161,0.199338296,241,1209,0.092057931,0.306618661,21.92021043,15,6843,,,93.31894666,32,34291,63.83009044,131.7385089,,,,,,,,,,,,,100.7017654,68.87993301,142.1608461,,,,8.1,,,,,0,,,,,0.062271062,170,2730,0.036934036,0.087608089,0.050922509,0.020540675,0.081304343,0.008791209,0,0.021883154,0.002930403,0,0.007479599,0.813645621,2397,2946,0.775919918,0.851371325,,,,,,,,,,,,,0.823710886,0.760560395,0.886861376,0.195,,2946,0.141781624,0.248218376,75.99637965,,,73.53642178,78.45633752,,,,,,,,,,,,,76.06252961,73.45922472,78.66583451,,,,421.2371989,116,18282,337.4265901,505.0478076,,,,,,,,,,,,,412.3582191,325.5135768,499.2028614,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.116,,,0.098,0.136,0.166,,,0.14,0.193,0.097,,,0.082,0.116,,,,,,0.121,840,,,,0.062275331,469.8050945,7544,,,,,,,,,,,,,,,,,,,,,,,,,,0.334,,,0.316,0.351,0.094771242,377,3978,0.076898901,0.112643582,0.035905271,47,1309,0.023990378,0.047820165,0.000444708,3,6746,,,2248.666667,,,,,,,,,,,2.598001693,,,,,,,,,2.629239854,2.717943246,,,,,,,,,2.811618758,0.026703848,,,,,,,,,,0.815160059,42500,52137,0.662091284,0.968228834,62968,,,54535.82979,71400.17021,,,,,,,,,,,,,63890,56021.40426,71758.59575,,,,,,0.513255567,484,943,,,,,,,,0.267485072,,62968,,,3.861003861,1,259,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,26.94523898,13,48246,14.34720493,46.07717929,,,,,,,,,,,,,28.98809258,15.43493844,49.57052116,,,,,,600,,,-888,,0.692553192,3906,5640,,,0.636,,,,,13.90349836,,,,,0.806972477,2199,2725,0.772423772,0.841521182,0.068411215,183,2675,0.026999889,0.109822541,0.858715596,2340,2725,0.836348816,0.881082377,6746,,,,,0.175807886,1186,6746,,,0.237622295,1603,6746,,,0.055440261,374,6746,,,0.002075304,14,6746,,,0.003409428,23,6746,,,0,0,6746,,,0.026386007,178,6746,,,0.906166617,6113,6746,,,0.009531014,63,6610,0,0.028128767,0.459086866,3097,6746,,,1,6902,6902,, -17,171,17171,IL,Scott County,2024,1,8758.114469,83,13366,5721.091146,12832.66691,0,,,,2,,,,2,,,,2,,,,2,9131.074998,5909.150293,13479.26797,,,,,2,,0.144,,,0.119,0.171,3.584747342,,,2.838047188,4.393946889,4.853162917,,,3.82084242,5.957562688,0.112582782,34,302,0.076933358,0.148232205,0,,,,,,,,,,,,,0.115254237,0.078813869,0.151694606,,,,,,,0.177,,,0.14,0.218,0.36,,,0.28,0.446,6.8,0.198217318,0.095,,,0.27,,,0.219,0.324,0.08890685,440,4949,,,0.169545832,,,0.134056642,0.209397404,0.2,1,5,0.015594715,0.47750127,206.8,10,4836,,,17.8197065,17,954,10.38063571,28.53107633,,,,,,,,,,,,,18.5387132,10.79948361,29.6822757,,,,,,,0.066683965,257,3854,0.055960561,0.077407369,,0,4836,,,,0.000208768,1,4790,,,4790,,0,4790,,,,2627,,,,,,,,,2630,0.46,,,,,,,,,0.46,0.38,,,,,,,,,0.38,0.927498556,3211,3462,0.900617083,0.954380029,0.593629344,615,1036,0.454458976,0.732799711,0.047993019,110,2292,,,0.157,151,,0.097425532,0.216574468,,,,,,,,,,,,,0.22371134,0.132714474,0.314708206,4.477329147,122643,27392,3.591834907,5.362823387,0.295561851,313,1059,0.187371233,0.403752469,12.40694789,6,4836,,,85.1408879,21,24665,52.70355153,130.1468913,,,,,,,,,,,,,88.5142255,54.79170067,135.3033961,,,,8.1,,,,,0,,,,,0.060759494,120,1975,0.036155142,0.085363846,0.037851662,0.009517298,0.066186026,0.009113924,0,0.022473671,0.014683544,0.004985039,0.02438205,0.827617741,1810,2187,0.781922993,0.87331249,,,,,,,,,,,,,0.730938416,0.666113853,0.79576298,0.296,,2187,0.231858463,0.360141537,76.18948599,,,73.62324721,78.75572477,,,,,,,,,,,,,75.85123601,73.22833211,78.47413991,,,,435.0966154,83,13366,340.436305,547.9321788,,,,,,,,,,,,,449.3222072,350.9243717,566.7588256,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.11,,,0.092,0.128,0.164,,,0.139,0.19,0.089,,,0.074,0.104,0,0,4157,,,0.095,470,,,,0.198217318,1061.45374,5355,,,,,,,,,,,,,,,,,,,,,,,,,,0.326,,,0.308,0.346,0.07754386,221,2850,0.063245987,0.091841732,0.039010466,41,1051,0.025904083,0.052116849,0.000208768,1,4790,,,4790,,,,,,,,,,,2.4236857,,,,,,,,,2.469918922,2.665955457,,,,,,,,,2.695895662,,,,,,849.33595,,,,,0.793142758,45919,57895,0.652581782,0.933703735,64853,,,55415.21277,74290.78723,,,,,,,,,,,,,70917,63853.85106,77980.14894,,,,,,0.448186529,346,772,,,,,,,,0.259710422,,64853,,,,,231,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,500,,,0,,0.704504505,2737,3885,,,0.657,,,,,1.666551787,,,,,0.820184426,1601,1952,0.784083822,0.85628503,0.052066559,97,1863,0.019948148,0.08418497,0.824795082,1610,1952,0.781484301,0.868105863,4790,,,,,0.206263048,988,4790,,,0.212943633,1020,4790,,,0.007306889,35,4790,,,0.003131524,15,4790,,,0.002713988,13,4790,,,0.006471816,31,4790,,,0.013987474,67,4790,,,0.954070981,4570,4790,,,0.001711596,8,4674,0,0.013429533,0.503549061,2412,4790,,,1,4949,4949,, -17,173,17173,IL,Shelby County,2024,1,8389.24631,349,57124,6866.854059,9911.638561,0,,,,2,,,,2,,,,2,,,,2,8469.107788,6910.327647,10027.88793,,,,,2,,0.144,,,0.119,0.171,3.600949514,,,2.779502003,4.51622057,4.814797287,,,3.759168477,5.976944309,0.073170732,111,1517,0.060065888,0.086275576,0,,,,,,,,,,,,,0.073848239,0.060506143,0.087190334,,,,,,,0.18,,,0.138,0.223,0.361,,,0.28,0.445,8.4,0.059708876,0.086,,,0.272,,,0.218,0.327,0.431300619,9053,20990,,,0.165352326,,,0.13025491,0.204746572,0.24,6,25,0.136098495,0.353867991,178,37,20789,,,20.40816327,82,4018,16.23121789,25.33191168,,,,,,,,,,,,,19.96887967,15.75912756,24.95767337,,,,,,,0.055262828,881,15942,0.046922402,0.063603253,0.000240512,5,20789,,,4157.8,0.000240836,5,20761,,,4152.2,0.000481672,10,20761,,,2076.1,3749,,,,,,,,,3767,0.43,,,,,,,,,0.43,0.42,,,,,,,,,0.42,0.938847251,14155,15077,0.92382326,0.953871241,0.648034935,2968,4580,0.571302293,0.724767576,0.040630016,405,9968,,,0.134,574,,0.088723404,0.179276596,,,,,,,,,,0.157303371,0,0.348704714,0.114663462,0.073806145,0.155520778,3.638119935,112236,30850,3.086427824,4.189812047,0.226069696,1025,4534,0.159099649,0.293039742,14.91173217,31,20789,,,97.96421041,105,107182,79.22596751,116.7024533,,,,,,,,,,,,,100.0933563,80.85603256,119.3306801,,,,9.1,,,,,1,,,,,0.097161572,890,9160,0.071953824,0.12236932,0.057567419,0.040048339,0.075086499,0.034388646,0.014985749,0.053791543,0.004912664,0,0.010430436,0.844409231,8526,10097,0.815469675,0.873348786,,,,,,,,,,,,,0.783516314,0.741053525,0.825979102,0.337,,10097,0.29562254,0.37837746,77.22375107,,,75.96446337,78.48303877,,,,,,,,,,,,,77.04546208,75.7698005,78.32112366,,,,404.5924117,349,57124,358.2005454,450.984278,,,,,,,,,,,,,408.3461875,361.1076256,455.5847495,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.111,,,0.093,0.129,0.164,,,0.139,0.19,0.088,,,0.073,0.104,,,,,,0.086,1830,,,,0.059708876,1335.269596,22363,,,20.40111735,13,63722,10.86273578,34.886532,,,,,,,,,,,,,21.08336036,11.22600145,36.05318832,,,,0.325,,,0.306,0.344,0.065606535,755,11508,0.053691641,0.077521428,0.029886046,139,4651,0.020354131,0.039417961,0.000626174,13,20761,,,1597,,,,,,,,,,,3.395927966,,,,,,,,,3.397636983,3.262886153,,,,,,,,,3.300179183,0.066564833,,,,,1451.163575,,,,,0.841108845,45361,53930,0.766320678,0.915897012,65396,,,56458.6383,74333.3617,,,,217500,41577.78723,393422.2128,,,,,,,65592,61495.65957,69688.34043,,,,,,0.389221557,1105,2839,,,,,,,,0.257553979,,65396,,,1.72860847,2,1157,,,,,,,,,,,,,,,,,,,,,,,,,,18.74199782,19,107182,10.91790439,30.00775407,17.72685712,,,,,,,,,,,,,19.36542557,11.28107403,31.00592229,,,,13.9948872,15,107182,7.832832129,23.08243816,,,,,,,,,,,,,14.43654178,8.080022841,23.81088022,,,,20.57421984,31,150674,13.97918419,29.20346278,,,,,,,,,,,,,20.51927444,13.8442683,29.29254015,,,,6.190476191,,2100,,,13,,0.715798817,12097,16900,,,0.654,,,,,19.31068124,,,,,0.792170737,6941,8762,0.768158315,0.81618316,0.085828343,731,8517,0.056531619,0.115125068,0.850833143,7455,8762,0.828059322,0.873606965,20761,,,,,0.210490824,4370,20761,,,0.237319975,4927,20761,,,0.004913058,102,20761,,,0.002697365,56,20761,,,0.003516208,73,20761,,,0.000337171,7,20761,,,0.013438659,279,20761,,,0.965175088,20038,20761,,,0.000803657,16,19909,0,0.006220037,0.499927749,10379,20761,,,0.765412101,16066,20990,, -17,175,17175,IL,Stark County,2024,1,10567.80653,102,14316,7249.673105,13885.93995,0,,,,2,,,,2,,,,2,,,,2,11165.4964,7618.165103,14712.8277,,,,,2,,0.152,,,0.127,0.182,3.681193891,,,2.926652311,4.500212756,4.923621594,,,3.912545594,6.024363494,0.062650602,26,415,0.039335067,0.085966138,0,,,,,,,,,,,,,0.059850374,0.036632855,0.083067893,,,,,,,0.186,,,0.145,0.232,0.358,,,0.277,0.444,6.7,0.196932507,0.099,,,0.276,,,0.223,0.34,0.473518519,2557,5400,,,0.165794114,,,0.130121651,0.203979078,0.363636364,4,11,0.198476333,0.520352029,302.2,16,5294,,,13.3096717,15,1127,7.449322212,21.95227939,,,,,,,,,,,,,13.52657005,7.395101716,22.69528611,,,,,,,0.083924639,343,4087,0.070818256,0.097031022,,0,5294,,,,0.000187091,1,5345,,,5345,,0,5345,,,,3033,,,,,,,,,3062,0.39,,,,,,,,,0.38,0.39,,,,,,,,,0.39,0.909303534,3499,3848,0.887733601,0.930873468,0.622739018,723,1161,0.531598869,0.713879167,0.048678137,116,2383,,,0.162,184,,0.102425532,0.221574468,,,,,,,,,,,,,0.184184184,0.107751256,0.260617112,4.445107781,110941,24958,3.538275439,5.351940123,0.131233596,150,1143,0.045031099,0.217436093,20.77823952,11,5294,,,123.3229941,33,26759,84.88987471,173.1913348,,,,,,,,,,,,,130.1005322,89.55522008,182.7095181,,,,8.6,,,,,0,,,,,0.091106291,210,2305,0.061913221,0.12029936,0.084612012,0.050618895,0.11860513,0,0,0.017575114,0.010845987,0,0.028042278,0.830536913,1980,2384,0.796742172,0.864331654,,,,,,,,,,,,,0.767413689,0.724454551,0.810372827,0.444,,2384,0.36867186,0.51932814,74.49662841,,,72.06392501,76.9293318,,,,,,,,,,,,,73.94234285,71.40115006,76.48353565,,,,499.6857748,102,14316,392.8238171,606.5477325,,,,,,,,,,,,,522.1646925,409.8394622,634.4899229,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.114,,,0.097,0.134,0.167,,,0.143,0.193,0.092,,,0.077,0.109,,,,,,0.099,540,,,,0.196932507,1180.413448,5994,,,,,,,,,,,,,,,,,,,,,,,,,,0.327,,,0.308,0.346,0.097090663,287,2956,0.080409812,0.113771514,0.049194232,58,1179,0.032513381,0.065875084,0.000374182,2,5345,,,2672.5,,,,,,,,,,,3.047491601,,,,,,,,,3.059141311,3.084550948,,,,,,,,,3.142016296,0.032708872,,,,,591.6448,,,,,0.862277785,42005,48714,0.735264388,0.989291181,59234,,,51149.74468,67318.25532,,,,,,,,,,71000,46182.46809,95817.53192,58934,51912.55319,65955.44681,,,,,,0.435779817,380,872,,,,,,,,0.284346828,,59234,,,3.636363636,1,275,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,28.70338961,11,38323,14.32862868,51.35829271,,,,,,,,,,,,,30.14276711,15.04716074,53.93373664,,,,,,500,,,-888,,0.688888889,2883,4185,,,0.699,,,,,0.133410834,,,,,0.759673259,1767,2326,0.731793883,0.787552635,0.088988764,198,2225,0.051408139,0.12656939,0.826311264,1922,2326,0.794260873,0.858361655,5345,,,,,0.216089804,1155,5345,,,0.232366698,1242,5345,,,0.013657624,73,5345,,,0.003180543,17,5345,,,0.006548176,35,5345,,,0.001122544,6,5345,,,0.026753976,143,5345,,,0.936389149,5005,5345,,,0.006456662,33,5111,0,0.020846184,0.49373246,2639,5345,,,1,5400,5400,, -17,177,17177,IL,Stephenson County,2024,1,9061.479266,734,118158,7962.690292,10160.26824,0,,,,2,,,,2,17909.96956,13599.79077,23152.78884,,,,,2,8148.097244,6995.052532,9301.141956,,,,,2,,0.158,,,0.132,0.188,3.768813513,,,2.916880243,4.670344654,5.001202982,,,3.913209106,6.150589915,0.085514303,281,3286,0.075952713,0.095075893,0,,,,,,,0.160611855,0.129143398,0.192080311,0.089347079,0.056573324,0.122120834,0.070484582,0.059954821,0.081014342,,,,0.06626506,0.028424624,0.104105496,0.181,,,0.144,0.222,0.385,,,0.302,0.474,8.5,0.016959271,0.105,,,0.286,,,0.236,0.344,0.689625812,30778,44630,,,0.15278906,,,0.120390976,0.191671444,0.407407407,11,27,0.30861057,0.501024532,529.3,233,44021,,,25.62642369,225,8780,22.27790433,28.97494305,,,,,,,46.53061225,35.24183132,60.28580523,68.0713128,49.0598148,92.01263984,16.3132137,13.11582382,19.51060359,,,,32.85714286,20.82861005,49.30184699,0.065708419,2208,33603,0.054985015,0.076431823,0.000477045,21,44021,,,2096.238095,0.000504275,22,43627,,,1983.045455,0.002246315,98,43627,,,445.1734694,2337,,,,,,,4226,,2242,0.43,,,,,,0.36,0.38,,0.43,0.49,,,,,,0.67,0.33,0.31,0.5,0.918147329,29041,31630,0.904449033,0.931845624,0.651533341,5970,9163,0.593793432,0.709273249,0.04501375,933,20727,,,0.217,1950,,0.149085106,0.284914894,,,,,,,0.49724366,0.266643221,0.7278441,0.158986175,0.027877109,0.290095242,0.114092855,0.080106925,0.148078785,4.608338369,114402,24825,4.233717996,4.982958741,0.251427363,2378,9458,0.19582334,0.307031386,13.62985848,60,44021,,,114.3335569,254,222157,100.2726631,128.3944507,,,,,,,139.7340545,94.94251061,198.3413365,,,,116.722734,101.0102954,132.4351725,,,,9.3,,,,,0,,,,,0.122847011,2425,19740,0.103001543,0.142692479,0.104527814,0.0845726,0.124483028,0.010385005,0.004520621,0.016249389,0.016717325,0.0117526,0.02168205,0.770267582,15487,20106,0.745695443,0.79483972,,,,,,,0.760465116,0.60198129,0.918948943,0.706741573,0.599477546,0.8140056,0.778938571,0.745075228,0.812801914,0.276,,20106,0.241964256,0.310035744,76.69659542,,,75.82870875,77.56448208,,,,,,,69.82851702,66.68668367,72.97035036,85.55406573,70.06111563,101.0470158,77.34032875,76.42423907,78.25641843,,,,425.0892148,734,118158,391.15107,459.0273597,,,,,,,771.5132077,621.9485358,946.1924606,,,,398.4097847,362.884017,433.9355524,,,,50.8942853,21,41262,31.50436475,77.79732135,,,,,,,,,,,,,35.93115591,17.23038589,66.07867501,,,,7.775119617,26,3344,5.078966273,11.3923517,,,,,,,,,,,,,,,,,,,,,,0.116,,,0.099,0.135,0.167,,,0.143,0.192,0.099,,,0.083,0.117,122.7,46,37496,,,0.105,4710,,,,0.016959271,809.1437816,47711,,,18.88930865,25,132350,12.2241646,27.88434582,,,,,,,,,,,,,14.86753952,8.498083438,24.14395272,,,,0.335,,,0.318,0.35,0.08068238,1958,24268,0.066384508,0.094980252,0.028370958,279,9834,0.018839043,0.037902873,0.000710569,31,43627,,,1407.322581,,,,,,0.06744868,138,2046,0.024664077,0.110233284,2.707447931,,,,,,,2.179911471,2.104826755,2.934107494,2.65351224,,,,,,,1.825780927,2.064513141,2.997366849,0.150457122,,,,,4687.3562,,,,,0.75013045,41690,55577,0.68973584,0.810525059,60988,,,54493.19149,67482.80851,,,,,,,26447,21793.04255,31100.95745,50483,37413.55319,63552.44681,63044,59526.7234,66561.2766,,,,,,0.475046523,2808,5911,,,52.2806839,,,,,0.276169082,,60988,,,2.333722287,6,2571,,,5.103179919,16,313530,2.916908256,8.287244473,,,,,,,,,,,,,,,,,,,14.59680472,30,222157,9.535117464,21.38770093,13.50396341,,,,,,,,,,,,,16.54939952,10.60351254,24.62419467,,,,12.15356707,27,222157,8.009277282,17.682802,,,,,,,,,,,,,11.01157868,6.726158328,17.00649017,,,,13.07689854,41,313530,9.384208168,17.74028947,,,,,,,32.31226574,15.49498739,59.42340714,,,,11.64279893,7.855347546,16.62081942,,,,17.90697674,,4300,,,77,,0.63447482,22048,34750,,,0.74,,,,,52.01874,,,,,0.69545431,13448,19337,0.677996026,0.712912595,0.119989268,2236,18635,0.096963733,0.143014802,0.84175415,16277,19337,0.818817819,0.864690481,43627,,,,,0.209824191,9154,43627,,,0.244389942,10662,43627,,,0.097531345,4255,43627,,,0.003438238,150,43627,,,0.008320535,363,43627,,,0.000412589,18,43627,,,0.050908841,2221,43627,,,0.807504527,35229,43627,,,0.004685456,197,42045,0.000900402,0.008470511,0.512526646,22360,43627,,,0.459220255,20495,44630,, -17,179,17179,IL,Tazewell County,2024,1,7317.536261,1965,359936,6790.425893,7844.64663,0,,,,2,,,,2,13745.95137,8007.523224,22008.59973,1,,,,2,7509.809675,6952.595878,8067.023471,,,,,2,,0.132,,,0.107,0.159,3.272828423,,,2.488211505,4.148905754,4.556527898,,,3.545304787,5.649564054,0.065109397,616,9461,0.06013787,0.070080923,0,,,,,,,0.112149533,0.052358944,0.171940122,0.075949367,0.042221268,0.109677466,0.063868201,0.058777225,0.068959177,,,,0.088235294,0.040564853,0.135905736,0.162,,,0.124,0.202,0.356,,,0.283,0.433,8.2,0.092754666,0.081,,,0.246,,,0.198,0.298,0.829134404,108901,131343,,,0.172397136,,,0.137134674,0.21174927,0.26,13,50,0.186520419,0.337239257,246.1,321,130413,,,16.3723326,445,27180,14.85113152,17.89353368,,,,,,,,,,,,,16.53866472,14.93187402,18.14545542,,,,26.61596958,16.47570467,40.6853368,0.056354166,5853,103861,0.04920523,0.063503102,0.000429405,56,130413,,,2328.803571,0.000585016,76,129911,,,1709.355263,0.002239995,291,129911,,,446.4295533,2551,,,,,,,,,2545,0.46,,,,,,0.38,,,0.46,0.55,,,,,,0.4,0.46,0.41,0.55,0.936692254,86393,92232,0.928544558,0.94483995,0.697532744,22900,32830,0.66175062,0.733314869,0.040798822,2521,61791,,,0.117,3241,,0.083638298,0.150361702,,,,0.07751938,0,0.28728032,0.641891892,0.223311675,1,0.034354689,0,0.090280526,0.103977427,0.079142046,0.128812807,4.022145451,136218,33867,3.756999103,4.2872918,0.179736105,5258,29254,0.151232833,0.208239376,13.34222815,174,130413,,,73.00632772,481,658847,66.48187578,79.53077967,,,,,,,,,,,,,75.82287259,68.95324208,82.69250309,,,,9.2,,,,,1,,,,,0.09361978,5055,53995,0.081668412,0.105571148,0.079110613,0.068301256,0.08991997,0.009630521,0.005943947,0.013317096,0.014538383,0.010544048,0.018532718,0.819855898,49953,60929,0.801449586,0.83826221,,,,0.711350294,0.548075973,0.874624614,0.852913969,0.740421207,0.965406731,0.869005848,0.782679962,0.955331734,0.805812391,0.792103224,0.819521558,0.235,,60929,0.216930169,0.253069831,77.3886782,,,76.92931441,77.84804199,,,,,,,68.21652246,63.18369315,73.24935177,,,,77.19698958,76.72194678,77.67203237,,,,389.5122422,1965,359936,371.4553951,407.5690893,,,,,,,872.0343244,507.9921294,1396.211429,,,,395.4921599,376.7867871,414.1975327,,,,45.83734734,59,128716,34.89351256,59.12683844,,,,,,,,,,,,,48.08641816,36.32396351,62.44421375,,,,4.901960784,48,9792,3.614318916,6.499288826,,,,,,,,,,,,,5.103148751,3.749601755,6.786106009,,,,,,,0.103,,,0.087,0.121,0.157,,,0.134,0.182,0.084,,,0.07,0.101,78.9,87,110287,,,0.081,10750,,,,0.092754666,12558.42518,135394,,,20.61105414,81,392993,16.3681521,25.61765838,,,,,,,,,,,,,21.49800259,17.0201711,26.79292557,,,,0.315,,,0.297,0.332,0.068028486,5082,74704,0.058496571,0.077560401,0.027855698,854,30658,0.019515273,0.036196124,0.000738967,96,129911,,,1353.239583,,,,,,0.069350527,441,6359,0.032796494,0.105904559,3.059409168,,,,,,,2.452640562,2.903366797,3.088396639,3.060170477,,,,,,,2.321603563,2.822943439,3.088962109,0.036472043,,,,,3506.343763,,,,,0.729353203,46594,63884,0.689457411,0.769248995,73285,,,69082.61702,77487.38298,,,,80446,52275.61702,108616.383,,,,69292,49610.97872,88973.02128,74993,72667.21277,77318.78723,,,,,,0.364785436,7013,19225,,,68.37946765,,,,,0.314962134,,73285,,,3.648648649,27,7400,,,1.93958829,18,928032,1.149522945,3.065385705,,,,,,,,,,,,,2.067551502,1.225362055,3.267622749,,,,14.2043904,91,658847,11.36167884,17.54230659,13.81200795,,,,,,,,,,,,,14.84820358,11.82651127,18.40658232,,,,7.437235049,49,658847,5.502107431,9.832419149,,,,,,,,,,,,,7.938719566,5.873108438,10.49540828,,,,10.12896107,94,928032,8.185231587,12.39528311,,,,,,,,,,,,,10.45262148,8.415798792,12.83350294,,,,6.618705036,,13900,,,92,,0.681154131,69052,101375,,,0.762,,,,,66.9712034,,,,,0.772784857,41480,53676,0.760659531,0.784910183,0.092580546,4839,52268,0.08140899,0.103752103,0.872941352,46856,53676,0.860436257,0.885446447,129911,,,,,0.217518147,28258,129911,,,0.201245468,26144,129911,,,0.015025671,1952,129911,,,0.003587071,466,129911,,,0.00962967,1251,129911,,,0.000461855,60,129911,,,0.027795953,3611,129911,,,0.929867371,120800,129911,,,0.003178486,395,124273,0.001597101,0.004759872,0.5033369,65389,129911,,,0.218222517,28662,131343,, -17,181,17181,IL,Union County,2024,1,10133.01336,358,45223,8403.275829,11862.75088,0,,,,2,,,,2,,,,2,,,,2,10475.37074,8603.609317,12347.13216,,,,,2,,0.167,,,0.136,0.198,3.877119243,,,2.981729443,4.858957069,4.911709551,,,3.883194424,5.989009672,0.073394495,88,1199,0.05863316,0.088155831,0,,,,,,,,,,,,,0.070780399,0.055638479,0.08592232,,,,,,,0.194,,,0.15,0.242,0.366,,,0.285,0.453,7.8,0.02900413,0.13,,,0.296,,,0.235,0.359,0.562572489,9701,17244,,,0.158637314,,,0.124394458,0.195731087,0.363636364,8,22,0.250508545,0.473251594,271.8,46,16923,,,19.19102451,65,3387,14.81122756,24.46053611,,,,,,,,,,,,,19.85621363,15.07765549,25.66876061,,,,,,,0.079320543,1046,13187,0.067405649,0.091235437,0.000768185,13,16923,,,1301.769231,0.000715692,12,16767,,,1397.25,0.002266357,38,16767,,,441.2368421,3278,,,,,,,,,3272,0.43,,,,,,,,,0.43,0.5,,,,,,,0.45,0.38,0.5,0.879886914,10893,12380,0.857058454,0.902715375,0.544585164,2107,3869,0.468876137,0.620294192,0.050557831,358,7081,,,0.303,1021,,0.242234043,0.363765957,,,,,,,0.764705882,0.177652604,1,0.591639871,0.439123164,0.744156579,0.248337766,0.175578403,0.321097129,4.850773831,110326,22744,4.248750609,5.452797053,0.147826087,527,3565,0.099069313,0.196582861,13.00005909,22,16923,,,91.75951856,77,83915,72.41517709,114.6836543,,,,,,,,,,,,,96.91064577,76.09570089,121.6624412,,,,8.7,,,,,1,,,,,0.101247249,690,6815,0.073774704,0.128719794,0.080599251,0.056816568,0.104381934,0.016727806,0.006353647,0.027101966,0.00513573,0,0.012249087,0.847111111,5718,6750,0.819773711,0.874448511,,,,,,,,,,,,,0.83943128,0.794414959,0.8844476,0.435,,6750,0.376641343,0.493358658,74.08994239,,,72.78299703,75.39688775,,,,,,,,,,,,,73.75533453,72.37551163,75.13515743,,,,526.7236746,358,45223,468.3189822,585.1283669,,,,,,,,,,,,,539.1096068,477.2893161,600.9298975,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.122,,,0.102,0.142,0.17,,,0.145,0.198,0.099,,,0.083,0.117,41.5,6,14462,,,0.13,2240,,,,0.02900413,516.5055517,17808,,,31.95270999,16,50074,18.26373458,51.88919918,,,,,,,,,,,,,35.16097132,20.09753314,57.09921459,,,,0.334,,,0.316,0.351,0.093850129,908,9675,0.078360768,0.109339491,0.040926225,152,3714,0.027819842,0.054032608,0.001312101,22,16767,,,762.1363636,,,,,,,,,,,2.919907745,,,,,,,,2.759266947,2.937479157,2.734037745,,,,,,,,,2.754207949,0.128632396,,,,,-3739.513643,,,,,0.80279647,45932,57215,0.715497368,0.890095571,51116,,,44945.2766,57286.7234,,,,,,,,,,47791,38170.91489,57411.08511,55373,49727.7234,61018.2766,,,,,,0.563664596,1452,2576,,,73.03630363,,,,,0.329505439,,51116,,,5.376344086,5,930,,,,,,,,,,,,,,,,,,,,,,,,,,32.2618511,25,83915,20.45124614,48.40861706,29.79205148,,,,,,,,,,,,,34.4679586,21.60088615,52.18490355,,,,14.30018471,12,83915,7.389114114,24.97954484,,,,,,,,,,,,,15.71523985,8.120293755,27.4513614,,,,,,,,,,,,,,,,,,,,,,,,,,,19.375,,1600,,,31,,0.678838808,8886,13090,,,0.662,,,,,30.69776931,,,,,0.784563064,5306,6763,0.758696907,0.81042922,0.097481848,631,6473,0.068355308,0.126608387,0.686529647,4643,6763,0.648076118,0.724983175,16767,,,,,0.20468778,3432,16767,,,0.235581798,3950,16767,,,0.016520546,277,16767,,,0.007812966,131,16767,,,0.005546609,93,16767,,,0.000417487,7,16767,,,0.053736506,901,16767,,,0.903441284,15148,16767,,,0.00419779,68,16199,0,0.010372755,0.496928491,8332,16767,,,0.648109487,11176,17244,, -17,183,17183,IL,Vermilion County,2024,1,11905.71187,1618,204410,10987.01207,12824.41167,0,,,,2,,,,2,19681.85734,16614.27593,22749.43875,,8041.643621,5299.493818,11700.16927,,10827.26731,9834.669164,11819.86546,,,,,2,,0.179,,,0.152,0.212,3.989354268,,,3.140076811,4.952314133,5.037260602,,,3.971188951,6.192418174,0.111462451,705,6325,0.103706626,0.119218275,0,,,,,,,0.1796585,0.159156629,0.200160372,0.077830189,0.052329457,0.10333092,0.092773893,0.084092327,0.101455459,,,,0.144444444,0.093088071,0.195800818,0.205,,,0.167,0.251,0.38,,,0.3,0.464,7.5,0.084771801,0.117,,,0.31,,,0.257,0.37,0.68399202,50744,74188,,,0.15504804,,,0.123475418,0.192505287,0.381818182,21,55,0.313739426,0.448396478,786.6,575,73095,,,38.25662751,596,15579,35.18520457,41.32805045,,,,,,,63.54916067,53.67119919,73.42712215,42.08273894,32.03533069,54.28366716,32.3028508,28.91375216,35.69194944,,,,29.00552486,17.95487705,44.33802588,0.065472174,3687,56314,0.055940259,0.075004089,0.000355702,26,73095,,,2811.346154,0.000373253,27,72337,,,2679.148148,0.003787826,274,72337,,,264.0036496,5475,,,,,,,7592,989,5328,0.45,,,,,,0.27,0.38,0.36,0.45,0.35,,,,,,0.31,0.24,0.14,0.36,0.905564991,45856,50638,0.895845429,0.915284553,0.488222698,8436,17279,0.447592889,0.528852507,0.050014111,1595,31891,,,0.245,4020,,0.172319149,0.317680851,,,,0.051612903,0,0.561365655,0.516789983,0.425637004,0.607942962,0.267634855,0.125910755,0.409358954,0.168289797,0.1379486,0.198630994,4.440794467,105309,23714,3.980693682,4.900895253,0.360591361,6244,17316,0.311783023,0.409399698,13.13359327,96,73095,,,110.9869115,420,378423,100.3723222,121.6015007,,,,,,,183.0538841,147.9261716,224.0115942,104.6546397,64.78287145,159.9757338,102.5961584,91.02481723,114.1674996,,,,9,,,,,0,,,,,0.122521361,3800,31015,0.107621396,0.137421325,0.106522452,0.092375375,0.120669528,0.014025472,0.00906093,0.018990013,0.007415767,0.003424823,0.011406711,0.819636606,24585,29995,0.803186597,0.836086615,,,,,,,0.750605327,0.683324224,0.81788643,0.701149425,0.545665961,0.856632889,0.833278916,0.811206627,0.855351205,0.248,,29995,0.220777662,0.275222338,73.21003532,,,72.53963488,73.88043577,,,,,,,66.95136812,65.02047765,68.88225859,88.42305838,72.2812839,104.5648329,73.91612101,73.18711803,74.64512399,,,,577.2572242,1618,204410,547.3775067,607.1369418,,,,,,,869.3806212,756.7251886,982.0360538,381.8609692,259.4560019,542.0211646,550.5271585,518.4066377,582.6476793,,,,76.76294562,59,76860,58.43551084,99.01860703,,,,,,,201.7872586,134.0861679,291.6387716,,,,52.48017416,34.58476546,76.35589808,,,,10.41038021,69,6628,8.099897187,13.17500243,,,,,,,22.58726899,15.54803667,31.72092352,,,,7.181328546,4.912023409,10.1378932,,,,,,,0.127,,,0.109,0.148,0.175,,,0.151,0.202,0.111,,,0.094,0.13,201.5,123,61053,,,0.117,8800,,,,0.084771801,6919.498286,81625,,,31.73780106,71,223708,24.78748594,40.03291751,,,,,,,68.99497322,42.70897587,105.4661456,,,,25.92076311,18.90678248,34.68402042,,,,0.351,,,0.336,0.366,0.082418836,3252,39457,0.069312453,0.095525219,0.026874116,475,17675,0.018533691,0.035214542,0.001548309,112,72337,,,645.8660714,,,,,,0.098184819,357,3636,0.052389634,0.143980004,2.68381148,,,,,,,2.226659856,2.726239312,2.851721018,2.741614009,,,,,,,2.263855744,2.826156209,2.901737789,0.223570357,,,,,437.7742933,,,,,0.726920151,39173,53889,0.679109326,0.774730976,52083,,,48966.06383,55199.93617,,,,54952,6944.510638,102959.4894,32910,26627.2766,39192.7234,46582,32082.76596,61081.23404,57238,54835.95745,59640.04255,,,,,,0.632412816,7145,11298,,,60.48388851,,,,,0.32338767,,52083,,,3.000428633,14,4666,,,11.38450513,61,535816,8.708244353,14.62387311,,,,,,,60.84828035,44.21245365,81.68597624,,,,2.630628649,1.313200343,4.706921307,,,,19.20380095,71,378423,14.82108814,24.47682074,18.76207313,,,,,,,,,,,,,19.32388336,14.34255869,25.47613117,,,,19.55483678,74,378423,15.35475282,24.54930686,,,,,,,60.3688341,41.01769387,85.68874122,,,,11.89028326,8.282017952,16.53650567,,,,14.93049853,80,535816,11.83895677,18.58229784,,,,,,,20.74373194,11.6101093,34.21363122,,,,14.5880316,11.15868826,18.73893687,,,,22.02531646,,7900,,,174,,0.545445126,31584,57905,,,0.648,,,,,64.93815089,,,,,0.694923756,20781,29904,0.679099184,0.710748328,0.104337632,3026,29002,0.088864673,0.119810591,0.829253612,24798,29904,0.814515679,0.843991544,72337,,,,,0.231596555,16753,72337,,,0.206339771,14926,72337,,,0.136665883,9886,72337,,,0.003981365,288,72337,,,0.008570994,620,72337,,,0.000608264,44,72337,,,0.057287419,4144,72337,,,0.771403293,55801,72337,,,0.006337026,441,69591,0.003571367,0.009102686,0.497338845,35976,72337,,,0.395373915,29332,74188,, -17,185,17185,IL,Wabash County,2024,1,8355.095966,190,30675,6296.188925,10414.00301,0,,,,2,,,,2,,,,2,,,,2,8045.894058,6028.405603,10063.38251,,,,,2,,0.157,,,0.131,0.187,3.77530899,,,3.049782119,4.620523176,5.046527408,,,3.97785121,6.236702586,0.096997691,84,866,0.077286074,0.116709308,0,,,,,,,,,,,,,0.095471236,0.075320426,0.115622046,,,,,,,0.188,,,0.148,0.234,0.367,,,0.286,0.456,8.2,0.033265222,0.111,,,0.281,,,0.228,0.339,0.695449344,7901,11361,,,0.162817271,,,0.12840756,0.200931067,0.333333333,2,6,0.110000414,0.553214291,187.5,21,11202,,,27.49301025,59,2146,20.92895323,35.46398013,,,,,,,,,,,,,27.59325498,20.72890239,36.00321226,,,,,,,0.065008026,567,8722,0.054284621,0.07573143,0.000357079,4,11202,,,2800.5,0.000450979,5,11087,,,2217.4,0.003066655,34,11087,,,326.0882353,3334,,,,,,,,,3349,0.41,,,,,,,,,0.41,0.35,,,,,,,,,0.35,0.930417495,7488,8048,0.908022937,0.952812053,0.71685569,1833,2557,0.607097627,0.826613753,0.033350795,191,5727,,,0.171,399,,0.110234043,0.231765957,,,,,,,,,,,,,0.188235294,0.120466064,0.256004524,5.34483394,116031,21709,4.595824127,6.093843753,0.249190939,616,2472,0.150546339,0.347835539,22.31744331,25,11202,,,66.72519754,38,56950,47.21872106,91.58554683,,,,,,,,,,,,,67.42835737,47.22599254,93.34926857,,,,8.7,,,,,0,,,,,0.094142259,450,4780,0.06958625,0.118698269,0.069482577,0.042560633,0.09640452,0.011297071,0,0.023132813,0.024058577,0.008645503,0.039471651,0.825938567,4114,4981,0.794880419,0.856996714,,,,,,,,,,,,,0.803708064,0.773181278,0.834234849,0.294,,4981,0.243365207,0.344634793,77.07974991,,,75.39290712,78.76659269,,,,,,,,,,,,,77.16015087,75.48795295,78.83234879,,,,420.7447451,190,30675,355.6687314,485.8207588,,,,,,,,,,,,,420.4778976,353.9732775,486.9825177,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.118,,,0.1,0.138,0.17,,,0.145,0.198,0.096,,,0.081,0.114,63.5,6,9455,,,0.111,1270,,,,0.033265222,397.4196047,11947,,,,,,,,,,,,,,,,,,,,,,,,,,0.329,,,0.312,0.346,0.078825594,494,6267,0.064527722,0.093123467,0.030995738,80,2581,0.020272334,0.041719142,0.001352936,15,11087,,,739.1333333,,,,,,,,,,,2.770522881,,,,,,,,,2.782816988,3.081417487,,,,,,,,,3.097184075,0.019350116,,,,,-1540.6116,,,,,0.651286171,42966,65971,0.539994584,0.762577758,63777,,,55286.44681,72267.55319,,,,,,,,,,,,,54851,46523.68085,63178.31915,,,,,,0.490322581,760,1550,,,,,,,,0.264092071,,63777,,,3.025718608,2,661,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.5025005,10,79984,5.995434957,22.99254356,,,,,,,,,,,,,13.29186272,6.373964825,24.44420879,,,,,,1100,,,-888,,0.638834952,5593,8755,,,0.646,,,,,57.29454118,,,,,0.767685224,3668,4778,0.734448938,0.80092151,0.091984231,420,4566,0.05861125,0.125357213,0.81017162,3871,4778,0.781033533,0.839309707,11087,,,,,0.218544241,2423,11087,,,0.231983404,2572,11087,,,0.009560747,106,11087,,,0.002886263,32,11087,,,0.013529359,150,11087,,,0.001172544,13,11087,,,0.032470461,360,11087,,,0.922431677,10227,11087,,,0.005332086,57,10690,0,0.014009348,0.503472535,5582,11087,,,0.38711381,4398,11361,, -17,187,17187,IL,Warren County,2024,1,7841.021524,259,45644,6204.982411,9477.060638,0,,,,2,,,,2,,,,2,,,,2,8019.999023,6172.239777,9867.758268,,,,,2,,0.155,,,0.127,0.185,3.645638114,,,2.819148557,4.594440156,4.644964007,,,3.631280047,5.718975008,0.07310149,103,1409,0.059509603,0.086693378,0,,,,,,,0.1375,0.062035625,0.212964375,0.07960199,0.04218164,0.11702234,0.069403715,0.05383007,0.08497736,,,,,,,0.174,,,0.136,0.216,0.372,,,0.284,0.461,8.7,0.028487708,0.09,,,0.278,,,0.223,0.338,0.546539947,9201,16835,,,0.16617692,,,0.129225564,0.208174433,0.235294118,4,17,0.110052656,0.376271045,266.2,44,16531,,,16.72171759,81,4844,13.27945747,20.78356816,,,,,,,,,,27.35042735,15.6331324,44.41538051,14.66498104,11.13573494,18.95788868,,,,,,,0.078036092,960,12302,0.066121198,0.089950985,0.000544432,9,16531,,,1836.777778,0.000366883,6,16354,,,2725.666667,0.000244589,4,16354,,,4088.5,1847,,,,,,,,,1896,0.49,,,,,,,,,0.49,0.36,,,,,,,,0.22,0.36,0.875,9569,10936,0.848575495,0.901424505,0.641782237,2175,3389,0.556189793,0.72737468,0.039187974,305,7783,,,0.212,759,,0.158382979,0.265617021,0.944954128,0.729175844,1,,,,,,,0.514820593,0.317428338,0.712212848,0.228702993,0.139115041,0.318290945,3.855790702,115693,30005,3.212321163,4.49926024,0.29336596,1079,3678,0.205002227,0.381729692,12.09848164,20,16531,,,67.63972944,57,84270,51.22967054,87.63511499,,,,,,,,,,,,,75.66888438,56.68118691,98.97676384,,,,8.5,,,,,0,,,,,0.1089838,740,6790,0.081726214,0.136241385,0.067457376,0.044865043,0.090049708,0.029307806,0.009421122,0.049194489,0.020618557,0.006593033,0.034644081,0.809752839,6061,7485,0.773801762,0.845703916,,,,,,,,,,,,,0.785921626,0.751747254,0.820095997,0.223,,7485,0.179335532,0.266664468,76.37738526,,,75.05000209,77.70476843,,,,,,,,,,,,,76.08659303,74.64570285,77.5274832,,,,404.3503695,259,45644,351.781743,456.9189959,,,,,,,,,,,,,421.4923664,363.1160569,479.8686759,,,,63.29478106,11,17379,31.59652665,113.2518471,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.114,,,0.096,0.134,0.162,,,0.137,0.19,0.096,,,0.08,0.114,,,,,,0.09,1520,,,,0.028487708,504.4318506,17707,,,,,,,,,,,,,,,,,,,,,,,,,,0.322,,,0.305,0.337,0.094967625,836,8803,0.079478263,0.110456986,0.036996736,136,3676,0.025081842,0.048911629,0.000489177,8,16354,,,2044.25,,,,,,,,,,,2.728909908,,,,,,,,1.919495487,2.891428617,2.892246545,,,,,,,,2.081661275,3.084001107,0.086584061,,,,,6907.737,,,,,0.670333086,38821,57913,0.604566398,0.736099774,57357,,,50336.74468,64377.25532,,,,,,,69464,61808.68085,77119.31915,,,,61769,54124.40426,69413.59575,,,,,,0.772335423,1971,2552,,,54.36876289,,,,,0.293652039,,57357,,,5.617977528,5,890,,,,,,,,,,,,,,,,,,,,,,,,,,12.01940898,11,84270,5.763773796,22.10412106,13.05328112,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.06922593,12,119175,5.202915971,17.58891131,,,,,,,,,,,,,12.06357504,6.23342526,21.07263785,,,,0,,1600,,,0,,0.617167382,7909,12815,,,0.71,,,,,41.65534921,,,,,0.764774722,5228,6836,0.731364358,0.798185086,0.074353448,483,6496,0.048590028,0.100116869,0.83689292,5721,6836,0.795556735,0.878229105,16354,,,,,0.22251437,3639,16354,,,0.202274673,3308,16354,,,0.027944234,457,16354,,,0.005136358,84,16354,,,0.021646081,354,16354,,,0.002507032,41,16354,,,0.108230402,1770,16354,,,0.822000734,13443,16354,,,0.030282045,481,15884,0.01576869,0.0447954,0.50085606,8191,16354,,,0.454172854,7646,16835,, -17,189,17189,IL,Washington County,2024,1,7188.965753,182,37394,5489.840682,8888.090824,0,,,,2,,,,2,,,,2,,,,2,7156.831144,5420.463817,8893.19847,,,,,2,,0.132,,,0.108,0.16,3.371988537,,,2.622389963,4.271707102,4.648660389,,,3.649033519,5.767803994,0.06,60,1000,0.045280413,0.074719587,0,,,,,,,,,,,,,0.058638744,0.043737419,0.073540068,,,,,,,0.164,,,0.126,0.206,0.354,,,0.276,0.442,9.1,0.03582785,0.068,,,0.252,,,0.203,0.307,0.491897391,6769,13761,,,0.175430425,,,0.139288679,0.2171717,0.458333333,11,24,0.357096318,0.551161712,256.3,35,13655,,,16.79771265,47,2798,12.34232744,22.33739683,,,,,,,,,,,,,16.07212858,11.53363695,21.80365722,,,,,,,0.048518276,519,10697,0.04136934,0.055667212,0.000146467,2,13655,,,6827.5,0.000293191,4,13643,,,3410.75,0.001539251,21,13643,,,649.6666667,2142,,,,,,,,,2148,0.46,,,,,,,,,0.46,0.49,,,,,,,,,0.49,0.92530534,9167,9907,0.908817691,0.941792988,0.711405167,2258,3174,0.629567665,0.793242669,0.024190242,236,9756,,,0.102,282,,0.06506383,0.13893617,,,,,,,,,,,,,0.10516325,0.059046072,0.151280428,3.711775405,126527,34088,3.302694639,4.120856171,0.13511636,389,2879,0.096213035,0.174019685,22.70230685,31,13655,,,87.98373022,61,69331,67.30058208,113.0187822,,,,,,,,,,,,,90.15371208,68.79677994,116.045698,,,,8.4,,,,,0,,,,,0.087209302,525,6020,0.065158571,0.109260034,0.067612688,0.046395268,0.088830107,0.015780731,0.005082583,0.026478878,0.004817276,0,0.011765983,0.828916021,5567,6716,0.795849978,0.861982065,,,,,,,,,,,,,0.821258199,0.793384619,0.84913178,0.385,,6716,0.334787523,0.435212478,78.68334976,,,77.17114289,80.19555663,,,,,,,,,,,,,78.69382546,77.16704799,80.22060294,,,,341.9257917,182,37394,288.4845839,395.3669996,,,,,,,,,,,,,341.035287,286.7045548,395.3660192,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.103,,,0.087,0.121,0.158,,,0.133,0.183,0.083,,,0.07,0.099,0,0,11678,,,0.068,940,,,,0.03582785,527.2426465,14716,,,,,,,,,,,,,,,,,,,,,,,,,,0.318,,,0.299,0.336,0.057244625,450,7861,0.047712711,0.06677654,0.025838926,77,2980,0.017498501,0.034179352,0.000879572,12,13643,,,1136.916667,,,,,,,,,,,3.284679182,,,,,,,,,3.284138835,3.009134782,,,,,,,,,3.033927599,0.03688216,,,,,-348.4242,,,,,0.80973628,46640,57599,0.715230041,0.904242519,71958,,,62918.17021,80997.82979,,,,,,,,,,113750,43659.44681,183840.5532,75192,69248.85106,81135.14894,,,,,,0.349465391,621,1777,,,,,,,,0.234067095,,71958,,,2.721088435,2,735,,,,,,,,,,,,,,,,,,,,,,,,,,22.71358216,15,69331,12.41772673,38.10953137,21.6353435,,,,,,,,,,,,,23.59955874,12.90209837,39.59604953,,,,17.3082748,12,69331,8.943438157,30.23407285,,,,,,,,,,,,,18.03074242,9.316747718,31.49607839,,,,26.59710501,26,97755,17.37411203,38.97092127,,,,,,,,,,,,,26.63938793,17.23960728,39.32499169,,,,5,,1400,,,7,,0.720656635,7902,10965,,,0.708,,,,,18.21678367,,,,,0.824256134,4737,5747,0.79387693,0.854635337,0.076223395,419,5497,0.052674956,0.099771833,0.835740386,4803,5747,0.809072959,0.862407814,13643,,,,,0.207578978,2832,13643,,,0.218207139,2977,13643,,,0.010481566,143,13643,,,0.002272228,31,13643,,,0.004837646,66,13643,,,0.000219893,3,13643,,,0.016345379,223,13643,,,0.956167998,13045,13643,,,0.002218143,29,13074,0,0.008813267,0.493293264,6730,13643,,,0.993169101,13667,13761,, -17,191,17191,IL,Wayne County,2024,1,10179.75876,279,43301,8233.039699,12126.47782,0,,,,2,,,,2,,,,2,,,,2,10142.55213,8161.057567,12124.04669,,,,,2,,0.168,,,0.139,0.199,3.974332751,,,3.10779318,5.012751103,5.22335272,,,4.119374664,6.48830002,0.073540561,97,1319,0.059453826,0.087627296,0,,,,,,,,,,,,,0.074451411,0.060047951,0.08885487,,,,,,,0.201,,,0.161,0.247,0.369,,,0.285,0.454,7.7,0.084024116,0.109,,,0.295,,,0.239,0.353,0.335743866,5432,16179,,,0.160318207,,,0.125375427,0.199900463,0.4,6,15,0.262274328,0.527864126,288.2,46,15963,,,28.06909315,91,3242,22.59948288,34.46262644,,,,,,,,,,,,,29.71619366,23.86454362,36.56833335,,,,,,,0.092233787,1152,12490,0.077935915,0.106531659,0.000563804,9,15963,,,1773.666667,0.000252016,4,15872,,,3968,0.001512097,24,15872,,,661.3333333,2088,,,,,,,,,2097,0.4,,,,,,,,,0.4,0.38,,,,,,,,,0.38,0.892825588,10105,11318,0.872175969,0.913475206,0.632866172,2303,3639,0.558106443,0.707625901,0.038848921,270,6950,,,0.2,690,,0.141617021,0.258382979,,,,,,,0.676470588,0.03823413,1,0.383928571,0,0.845490758,0.185163205,0.137886012,0.232440398,4.428192415,101813,22992,3.886871483,4.969513347,0.197353914,716,3628,0.135209961,0.259497867,25.0579465,40,15963,,,99.9555753,81,81036,79.37915494,124.2356535,,,,,,,,,,,,,104.1412206,82.70316151,129.4380285,,,,8.7,,,,,0,,,,,0.108222066,770,7115,0.0822649,0.134179232,0.070488323,0.048775623,0.092201023,0.016865777,0.005993331,0.027738222,0.03092059,0.015194375,0.046646806,0.82547103,5827,7059,0.792010992,0.858931068,,,,,,,,,,,,,0.818481169,0.778409701,0.858552637,0.333,,7059,0.285058282,0.380941718,75.1062416,,,73.65286165,76.55962155,,,,,,,,,,,,,75.0524681,73.58567394,76.51926226,,,,462.5478545,279,43301,403.8947872,521.2009217,,,,,,,,,,,,,463.8378107,403.794881,523.8807403,,,,69.27824663,11,15878,34.58345111,123.9579199,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.124,,,0.106,0.146,0.177,,,0.153,0.205,0.098,,,0.083,0.115,59.9,8,13365,,,0.109,1770,,,,0.084024116,1408.24418,16760,,,,,,,,,,,,,,,,,,,,,,,,,,0.334,,,0.317,0.352,0.107114758,953,8897,0.089242417,0.124987098,0.056338028,212,3763,0.037274198,0.075401858,0.001008065,16,15872,,,992,,,,,,0.155128205,121,780,0.049459452,0.260796958,3.316351498,,,,,,,,,3.326962313,3.057614292,,,,,,,,,3.046235437,0.083344157,,,,,-1527.615667,,,,,0.777541463,39849,51250,0.647324085,0.907758842,53359,,,45828.78723,60889.21277,,,,,,,,,,,,,54206,49237.48936,59174.51064,,,,,,0.458507963,1094,2386,,,,,,,,0.315654341,,53359,,,3.018108652,3,994,,,,,,,,,,,,,,,,,,,,,,,,,,26.49636938,19,81036,15.70342775,41.87568689,23.44636952,,,,,,,,,,,,,27.80244644,16.19594961,44.51441002,,,,13.57421393,11,81036,6.776198686,24.28801831,,,,,,,,,,,,,14.1426349,7.059952387,25.30508044,,,,20.20113302,23,113855,12.80578546,30.31161819,,,,,,,,,,,,,21.03587989,13.33494337,31.56414836,,,,8.75,,1600,,,14,,0.676175299,8486,12550,,,0.659,,,,,26.61335098,,,,,0.786360981,5385,6848,0.755039719,0.817682244,0.100550964,657,6534,0.075546724,0.125555204,0.764602804,5236,6848,0.733852956,0.795352651,15872,,,,,0.220514113,3500,15872,,,0.224420363,3562,15872,,,0.006552419,104,15872,,,0.003150202,50,15872,,,0.006489415,103,15872,,,0.000126008,2,15872,,,0.021232359,337,15872,,,0.953818044,15139,15872,,,0.002041085,31,15188,0,0.007253688,0.501827117,7965,15872,,,0.705420607,11413,16179,, -17,193,17193,IL,White County,2024,1,9705.499491,291,36608,7842.317308,11568.68168,0,,,,2,,,,2,,,,2,,,,2,9972.273231,8019.831615,11924.71485,,,,,2,,0.171,,,0.141,0.204,4.033932593,,,3.122652604,5.038769851,5.25187152,,,4.12207289,6.460793841,0.087408949,84,961,0.06955187,0.105266028,0,,,,,,,,,,,,,0.086244542,0.06806474,0.104424343,,,,,,,0.204,,,0.159,0.252,0.388,,,0.305,0.477,8,0.023276618,0.121,,,0.299,,,0.242,0.356,0.521726598,7240,13877,,,0.158714197,,,0.123808576,0.195667487,0.133333333,2,15,0.028850285,0.292021979,217.6,30,13784,,,29.35420744,75,2555,23.08894626,36.79575321,,,,,,,,,,,,,27.21364744,21.09020298,34.56037028,,,,,,,0.068058922,730,10726,0.057335518,0.078782327,0.000290192,4,13784,,,3446,0.000440723,6,13614,,,2269,0.001615984,22,13614,,,618.8181818,3854,,,,,,,,,3874,0.4,,,,,,,,,0.4,0.36,,,,,,,,,0.36,0.884727091,8834,9985,0.861704547,0.907749635,0.636537847,1993,3131,0.545020901,0.728054794,0.038633726,233,6031,,,0.195,558,,0.125893617,0.264106383,,,,,,,,,,0.130434783,0,0.859132091,0.162729659,0.104251073,0.221208245,4.881608655,103783,21260,4.072807996,5.690409314,0.242240216,718,2964,0.15158718,0.332893252,24.66627975,34,13784,,,108.3645736,74,68288,85.08949778,136.0417987,,,,,,,,,,,,,111.3025447,87.2434277,139.9462396,,,,8.7,,,,,0,,,,,0.100993378,610,6040,0.075665788,0.126320967,0.088013412,0.062159261,0.113867562,0.011589404,0.00233747,0.020841338,0.002483444,0,0.007137885,0.841774303,4953,5884,0.803995846,0.87955276,,,,,,,,,,,,,0.826103871,0.776221527,0.875986214,0.356,,5884,0.299558104,0.412441896,73.94461232,,,72.57989286,75.30933178,,,,,,,,,,,,,73.72980996,72.31866664,75.14095329,,,,531.8551642,291,36608,466.2561447,597.4541838,,,,,,,,,,,,,536.63611,469.1645167,604.1077032,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.126,,,0.107,0.148,0.179,,,0.153,0.207,0.101,,,0.085,0.117,,,,,,0.121,1690,,,,0.023276618,341.3516056,14665,,,,,,,,,,,,,,,,,,,,,,,,,,0.336,,,0.317,0.353,0.082404768,636,7718,0.068106896,0.09670264,0.032823454,103,3138,0.02210005,0.043546859,0.000954899,13,13614,,,1047.230769,,,,,,,,,,,3.002447192,,,,,,,,,3.02933826,2.931343757,,,,,,,,,2.94289958,0.06685706,,,,,-1301.911233,,,,,0.808419029,42058,52025,0.661319893,0.955518166,54611,,,46954.48936,62267.51064,,,,,,,,,,,,,55244,48733.70213,61754.29787,,,,,,0.517834121,1205,2327,,,,,,,,0.308417718,,54611,,,4,3,750,,,,,,,,,,,,,,,,,,,,,,,,,,24.15002408,20,68288,14.06827898,38.666528,29.28772259,,,,,,,,,,,,,25.00153715,14.56431672,40.02988291,,,,17.57263355,12,68288,9.080036183,30.69585439,,,,,,,,,,,,,18.29630872,9.453969702,31.95996928,,,,26.82984717,26,96907,17.52614694,39.31194246,,,,,,,,,,,,,27.88801888,18.21737983,40.86240919,,,,30.71428571,,1400,,,43,,0.690325581,7421,10750,,,0.634,,,,,28.08057134,,,,,0.764270613,4338,5676,0.725702602,0.802838624,0.118158284,639,5408,0.082308251,0.154008317,0.763918252,4336,5676,0.729245595,0.79859091,13614,,,,,0.213677097,2909,13614,,,0.23365653,3181,13614,,,0.006904657,94,13614,,,0.003746144,51,13614,,,0.006023211,82,13614,,,0.000514177,7,13614,,,0.016380197,223,13614,,,0.956956075,13028,13614,,,0.000304252,4,13147,0,0.007061375,0.504701043,6871,13614,,,0.634863443,8810,13877,, -17,195,17195,IL,Whiteside County,2024,1,8338.477423,925,149651,7423.206394,9253.748451,0,,,,2,,,,2,24386.98572,13649.21078,40222.62429,1,6488.316706,4568.373739,8943.2899,,8454.540612,7424.190018,9484.891207,,,,,2,,0.153,,,0.126,0.18,3.666300695,,,2.872806149,4.598607044,4.895597343,,,3.856972893,6.094512305,0.065164729,269,4128,0.057635334,0.072694123,0,,,,,,,,,,0.06462585,0.04475286,0.084498841,0.065165877,0.056839956,0.073491797,,,,,,,0.177,,,0.139,0.217,0.38,,,0.301,0.465,8.2,0.062593336,0.094,,,0.289,,,0.236,0.344,0.741807473,41312,55691,,,0.170810454,,,0.135029564,0.211763741,0.21875,7,32,0.128580322,0.319266194,280.3,155,55305,,,21.11932418,240,11364,18.44736101,23.79128735,,,,,,,,,,17.74397972,12.78829985,23.98470586,21.64036346,18.48767299,24.79305394,,,,,,,0.068399739,2939,42968,0.058867824,0.077931654,0.000506283,28,55305,,,1975.178571,0.000420798,23,54658,,,2376.434783,0.001610011,88,54658,,,621.1136364,2573,,,,,,,,2600,2500,0.41,,,,,,,,0.33,0.41,0.46,,,,,,,0.23,0.41,0.46,0.907713993,35419,39020,0.892790696,0.92263729,0.607069798,7419,12221,0.553904319,0.660235276,0.040381604,1109,27463,,,0.174,2017,,0.123957447,0.224042553,,,,,,,0.470588235,0.108127103,0.833049367,0.31388512,0.200228386,0.427541854,0.126504656,0.089617947,0.163391365,4.488458229,119972,26729,4.061111482,4.915804976,0.26941128,3272,12145,0.216585163,0.322237398,15.18850014,84,55305,,,74.40046229,206,276880,64.24035966,84.56056493,,,,,,,,,,,,,80.74560838,69.20321005,92.28800672,,,,9.4,,,,,0,,,,,0.101184069,2350,23225,0.083567971,0.118800167,0.080442804,0.065261123,0.095624485,0.012917115,0.006304595,0.019529636,0.013778256,0.005793183,0.021763329,0.816537369,21261,26038,0.790062495,0.843012242,,,,,,,,,,0.738644305,0.677041878,0.800246732,0.831063097,0.7961088,0.866017394,0.201,,26038,0.180055528,0.221944472,76.6277984,,,75.88590546,77.36969133,,,,,,,,,,79.2607194,76.7704205,81.75101831,76.44677552,75.63280346,77.26074757,,,,417.599117,925,149651,388.6672502,446.5309838,,,,,,,951.0149321,588.693232,1453.727346,382.2574173,297.4190873,483.7712266,420.343061,389.0152491,451.6708729,,,,62.10011291,33,53140,42.74686032,87.2116471,,,,,,,,,,,,,65.11394941,42.53459358,95.4070225,,,,5.423249234,23,4241,3.437874802,8.137536641,,,,,,,,,,,,,,,,,,,,,,0.113,,,0.095,0.131,0.161,,,0.138,0.186,0.096,,,0.081,0.113,,,,,,0.094,5250,,,,0.062593336,3661.584992,58498,,,12.11122953,20,165136,7.397853639,18.70481173,,,,,,,,,,,,,12.28474596,7.156317228,19.66906832,,,,0.328,,,0.313,0.343,0.083015205,2566,30910,0.069908823,0.096121588,0.03229618,410,12695,0.022764265,0.041828095,0.001445351,79,54658,,,691.8734177,,,,,,0.04506196,120,2663,0.017789418,0.072334503,3.238059306,,,,,,,,3.066155958,3.289970422,2.993748909,,,,,,,,2.662524381,3.146446694,0.099572212,,,,,2869.660338,,,,,0.774613866,43933,56716,0.713617275,0.835610456,62038,,,55180.97872,68895.02128,,,,54423,36985.55319,71860.44681,36172,7482.12766,64861.87234,52702,36260.6383,69143.3617,64825,60801.34043,68848.65957,,,,,,0.45503576,3881,8529,,,67.2051213,,,,,0.372062284,,62038,,,4.173354735,13,3115,,,3.073022702,12,390495,1.587875673,5.367952227,,,,,,,,,,,,,3.343211002,1.668918887,5.981927973,,,,13.49402158,40,276880,9.399080454,18.76691745,14.44669171,,,,,,,,,,,,,15.15730058,10.36758238,21.3975859,,,,9.39034961,26,276880,6.134088131,13.75903788,,,,,,,,,,,,,10.30795001,6.604498069,15.33741253,,,,14.08468738,55,390495,10.61051408,18.33315663,,,,,,,,,,,,,15.50034192,11.54102267,20.38008704,,,,4.464285714,,5600,,,25,,0.645789101,27375,42390,,,0.743,,,,,59.90287735,,,,,0.744301502,17241,23164,0.721385971,0.767217034,0.088412323,1983,22429,0.07239921,0.104425437,0.834873079,19339,23164,0.814776062,0.854970096,54658,,,,,0.216747777,11847,54658,,,0.220388598,12046,54658,,,0.01536829,840,54658,,,0.005141059,281,54658,,,0.007007209,383,54658,,,0.000292729,16,54658,,,0.130795126,7149,54658,,,0.831369607,45441,54658,,,0.010363581,545,52588,0.005848459,0.014878703,0.500530572,27358,54658,,,0.435510226,24254,55691,, -17,197,17197,IL,Will County,2024,1,6224.679086,7449,1964937,6010.159498,6439.198674,0,,,,2,2442.342801,1874.18952,3010.496083,,9957.07185,9158.047885,10756.09582,,4929.382635,4496.033969,5362.731301,,6238.570246,5962.601855,6514.538638,,,,,2,,0.133,,,0.111,0.157,3.121501985,,,2.393524624,3.937772964,4.249503987,,,3.410519155,5.204429299,0.076251732,3853,50530,0.073937627,0.078565837,0,,,,0.092161017,0.081507635,0.102814399,0.13681087,0.128393477,0.145228263,0.071766758,0.067156226,0.076377291,0.061934439,0.059131124,0.064737754,,,,0.117940199,0.092174747,0.143705652,0.133,,,0.104,0.166,0.338,,,0.277,0.403,9,0.073496638,0.055,,,0.248,,,0.204,0.296,0.924323082,643657,696355,,,0.175275352,,,0.14092961,0.21306717,0.310231023,94,303,0.281506052,0.339217722,381.9,2663,697252,,,8.945467057,1560,174390,8.501555151,9.389378962,,,,1.542317332,0.881567617,2.50462672,18.28508104,16.48411564,20.08604643,15.52831844,14.33910489,16.71753199,4.649593556,4.215631491,5.083555621,,,,9.319849296,6.847874711,12.39342382,0.066109023,39019,590222,0.060151577,0.07206647,0.000540694,377,697252,,,1849.474801,0.000599922,418,696757,,,1666.882775,0.001782544,1242,696757,,,560.9959742,3830,,,,,,1346,5638,2923,3725,0.42,,,,,,0.33,0.41,0.28,0.43,0.49,,,,,,0.5,0.37,0.37,0.5,0.915991059,424931,463903,0.912012456,0.919969661,0.699972307,123851,176937,0.683733301,0.716211312,0.046090987,17124,371526,,,0.092,14858,,0.071744681,0.112255319,0.264741276,0.135692116,0.393790435,0.041536129,0.019339784,0.063732475,0.222263989,0.177724473,0.266803505,0.138009212,0.118054957,0.157963467,0.040331231,0.033182995,0.047479466,3.781769974,181143,47899,3.659397757,3.904142192,0.174140263,29223,167813,0.161214057,0.187066469,6.712063931,468,697252,,,55.92640824,1936,3461692,53.43514097,58.41767552,,,,14.06885979,9.422136205,20.20522946,75.80680095,67.34059395,84.27300795,34.64083964,30.04233918,39.23934011,63.08534586,59.7349509,66.43574081,,,,9.8,,,,,1,,,,,0.128789346,29930,232395,0.122301257,0.135277435,0.10984076,0.103869305,0.115812215,0.01858904,0.016094358,0.021083722,0.006110286,0.004593072,0.007627501,0.761999478,268553,352432,0.754117412,0.769881544,0.829489292,0.692429873,0.96654871,0.595049647,0.549719552,0.640379743,0.702945947,0.676787194,0.729104701,0.767089406,0.739474012,0.7947048,0.773466308,0.762990199,0.783942416,0.495,,352432,0.482966547,0.507033453,78.82163973,,,78.61140589,79.03187357,,,,89.39134164,87.38583531,91.39684796,75.15757329,74.46146694,75.85367964,82.93969784,81.93366879,83.9457269,78.54937527,78.29932352,78.79942703,,,,316.3152334,7449,1964937,308.9856687,323.644798,,,,138.6235244,118.1078132,159.1392356,450.9654958,424.723852,477.2071396,252.1064293,232.231994,271.9808645,322.193817,313.163234,331.2243999,,,,43.38846561,325,749047,38.67121789,48.10571333,,,,21.76657525,10.43791889,40.02950686,91.06052193,72.42313545,113.0301179,41.97260623,33.23010762,52.3103907,36.06202669,30.17189566,41.95215771,,,,5.371949083,276,51378,4.738176544,6.005721623,,,,,,,13.65868631,10.96904668,16.80818883,5.045492142,3.859401701,6.481145733,3.673819743,2.977703085,4.3699364,,,,,,,0.095,,,0.081,0.112,0.139,,,0.118,0.161,0.091,,,0.077,0.108,117.3,686,584735,,,0.055,38300,,,,0.073496638,49798.38225,677560,,,21.28355229,442,2076721,19.29933582,23.26776877,,,,,,,25.59934986,19.67124331,32.75268886,10.91867666,7.869221741,14.75887891,25.57562705,22.80775864,28.34349547,,,,0.336,,,0.322,0.35,0.081413922,34608,425087,0.073073497,0.089754348,0.028626042,5002,174736,0.021477105,0.035774978,0.000766408,534,696757,,,1304.78839,,,,,,0.075316471,3076,40841,0.060994548,0.089638395,3.125703575,,,,,,3.784982356,2.654779565,2.71281378,3.359674758,3.14922396,,,,,,4.124398156,2.542980902,2.749975673,3.371382617,0.212594484,,,,,3730.956317,,,,,0.751727036,57238,76142,0.726984504,0.776469569,97076,,,93052.34043,101099.6596,82679,42752.19149,122605.8085,145212,132685.8723,157738.1277,71840,66937.02128,76742.97872,85976,82579.06383,89372.93617,111609,109255.8085,113962.1915,,,,,,0.353640641,39763,112439,,,53.33460439,,,,,0.237772467,,97076,,,2.85216689,113,39619,,,3.844179293,186,4838484,3.291716246,4.396642339,,,,,,,20.22172949,16.50961005,23.93384894,3.247171192,2.157721675,4.693066471,1.313035123,0.938051543,1.787981165,,,,10.84757167,378,3461692,9.736666514,11.95847683,10.91951566,,,,,,,8.08342336,5.529055594,11.41138191,6.05871996,4.170544041,8.508695431,13.53029154,11.9428451,15.11773798,,,,8.030754903,278,3461692,7.086715666,8.974794139,,,,,,,24.61259771,19.78852856,29.43666686,4.925990958,3.346971863,6.992050961,6.716134471,5.622955036,7.809313906,,,,8.267052242,400,4838484,7.456881122,9.077223362,,,,3.538069629,1.696641911,6.506636018,9.578713969,7.19582474,12.49814393,6.146431185,4.604098734,8.039683323,9.158419985,8.083751471,10.2330885,,,,3.305186972,,82900,,,274,,0.711923672,345105,484750,,,0.77,,,,,81.80656953,,,,,0.822252619,196571,239064,0.814586362,0.829918876,0.109163398,25601,234520,0.102861898,0.115464897,0.923108456,220682,239064,0.918302433,0.92791448,696757,,,,,0.233573541,162744,696757,,,0.146802974,102286,696757,,,0.121837312,84891,696757,,,0.005166794,3600,696757,,,0.067356338,46931,696757,,,0.000572653,399,696757,,,0.194574292,135571,696757,,,0.599487339,417697,696757,,,0.03097727,20388,658160,0.028720331,0.033234209,0.499653394,348137,696757,,,0.048748124,33946,696355,, -17,199,17199,IL,Williamson County,2024,1,8119.49355,1133,183109,7354.907593,8884.079507,0,,,,2,,,,2,11232.14993,7866.859726,15550.03001,,,,,2,8195.787157,7380.448112,9011.126202,,,,,2,,0.148,,,0.123,0.178,3.639929201,,,2.815177656,4.63123329,4.803478577,,,3.738026331,6.005627112,0.092464359,454,4910,0.084361573,0.100567144,0,,,,,,,0.159722222,0.117411159,0.202033285,,,,0.087655719,0.079313911,0.095997528,,,,,,,0.174,,,0.135,0.215,0.351,,,0.27,0.436,7.2,0.123142938,0.114,,,0.284,,,0.227,0.342,0.780501243,52413,67153,,,0.171045642,,,0.134250462,0.21261822,0.272727273,15,55,0.202623014,0.345581759,414.2,277,66879,,,22.4914865,284,12627,19.8756231,25.10734989,,,,,,,33.45070423,20.13950909,52.23741826,,,,23.32685365,20.44672448,26.20698282,,,,,,,0.060839041,3189,52417,0.052498615,0.069179466,0.000792476,53,66879,,,1261.867925,0.000674713,45,66695,,,1482.111111,0.004213209,281,66695,,,237.3487545,3756,,,,,,,6225,,3675,0.45,,,,,,,0.47,,0.45,0.39,,,,,,0.53,0.42,0.31,0.39,0.927429274,44486,47967,0.917619945,0.937238604,0.712721436,12432,17443,0.664778689,0.760664182,0.042646679,1320,30952,,,0.166,2306,,0.106425532,0.225574468,,,,0.097472924,0,0.38568184,0.538461539,0.397726134,0.679196943,0.311711712,0.113015609,0.510407815,0.15710359,0.120370515,0.193836666,4.694099919,121488,25881,4.35023014,5.037969698,0.249014864,3602,14465,0.203096366,0.294933362,17.49428072,117,66879,,,81.96843916,274,334275,72.26272593,91.67415239,,,,,,,105.0282263,60.03270614,170.5592595,,,,84.82560459,74.37304206,95.27816713,,,,8.9,,,,,0,,,,,0.121890102,3405,27935,0.102873677,0.140906527,0.111336472,0.092272085,0.130400859,0.006264543,0.003111829,0.009417256,0.008054412,0.002919191,0.013189633,0.817654358,24380,29817,0.802848555,0.832460162,,,,,,,0.71920758,0.669383165,0.769031995,0.680521597,0.563151214,0.797891981,0.834222479,0.823965278,0.844479679,0.279,,29817,0.249765988,0.308234012,76.4976135,,,75.85272788,77.14249912,,,,,,,79.53316215,66.73951146,92.32681284,92.97833246,78.3953143,107.5613506,76.32593702,75.65553927,76.99633476,,,,436.9852468,1133,183109,410.3305005,463.639993,,,,,,,639.4460558,471.4770429,847.8126994,,,,442.7117741,414.6767129,470.7468354,,,,47.71371769,30,62875,32.19224496,68.11429884,,,,,,,,,,,,,49.21539306,32.14912873,72.11195382,,,,6.427736658,33,5134,4.424558156,9.026932074,,,,,,,,,,,,,5.8177117,3.833908669,8.464465082,,,,,,,0.112,,,0.094,0.131,0.163,,,0.138,0.19,0.094,,,0.078,0.111,116.5,66,56658,,,0.114,7700,,,,0.123142938,8171.395902,66357,,,19.5106333,39,199891,13.87396756,26.671678,,,,,,,,,,,,,20.78896949,14.63735304,28.65485599,,,,0.318,,,0.302,0.335,0.074387774,2828,38017,0.06247288,0.086302668,0.026268775,397,15113,0.01792835,0.034609201,0.00239898,160,66695,,,416.84375,,,,,,0.091808874,269,2930,0.042003765,0.141613983,3.157887764,,,,,,,2.618971335,,3.196837895,3.197185762,,,,,,,2.596993318,,3.263032127,0.041765481,,,,,-39.89328,,,,,0.80303137,45617,56806,0.734301373,0.871761367,64152,,,57822.80851,70481.19149,51458,18795.70213,84120.29787,81892,53225.95745,110558.0426,27589,19334.3617,35843.6383,67669,20511.04255,114826.9575,61589,57663.04255,65514.95745,,,,,,0.491064176,4836,9848,,,48.34278791,,,,,0.262548323,,64152,,,2.870563674,11,3832,,,3.196242923,15,469301,1.788912901,5.271716632,,,,,,,,,,,,,2.381814371,1.142172571,4.380241431,,,,14.32513586,53,334275,10.59781437,18.93858931,15.85520903,,,,,,,,,,,,,13.95083581,10.13669866,18.72834592,,,,13.16281505,44,334275,9.564121564,17.67046482,,,,,,,,,,,,,13.74644185,9.864684006,18.64860057,,,,14.91580031,70,469301,11.62759809,18.84521636,,,,,,,,,,,,,14.52906766,11.11358553,18.66319523,,,,1.846153846,,6500,,,12,,0.650173879,33653,51760,,,0.675,,,,,46.49151251,,,,,0.709547351,20237,28521,0.689808697,0.729286005,0.109559808,3029,27647,0.091098387,0.128021228,0.839697065,23949,28521,0.821029262,0.858364869,66695,,,,,0.211829972,14128,66695,,,0.201724267,13454,66695,,,0.048459405,3232,66695,,,0.004603044,307,66695,,,0.013794138,920,66695,,,0.000284879,19,66695,,,0.030062224,2005,66695,,,0.885493665,59058,66695,,,0.005020049,318,63346,0.001530503,0.008509594,0.496454007,33111,66695,,,0.410346522,27556,67153,, -17,201,17201,IL,Winnebago County,2024,1,10478.69648,4868,782295,10032.88881,10924.50415,0,,,,2,4174.92499,2674.953217,6211.957451,1,19040.3064,17486.98189,20593.63091,,7358.000599,6400.08137,8315.919828,,9640.929408,9102.420878,10179.43794,,,,,2,,0.176,,,0.149,0.207,4.016536057,,,3.169153293,4.931929724,5.074102899,,,4.066113232,6.136187662,0.094056118,2266,24092,0.090370046,0.09774219,0,,,,0.080050826,0.061091036,0.099010616,0.154294911,0.144252928,0.164336893,0.08408347,0.076303575,0.091863365,0.074361206,0.069787593,0.078934818,,,,0.105680317,0.083779941,0.127580694,0.182,,,0.145,0.222,0.421,,,0.346,0.496,7.6,0.072745542,0.119,,,0.305,,,0.254,0.361,0.901468372,257234,285350,,,0.154897088,,,0.123123089,0.191265948,0.309677419,48,155,0.269015194,0.350807652,716.7,2029,283119,,,23.73737374,1457,61380,22.51849932,24.95624816,,,,8.620689655,5.021869407,13.80255924,46.53495136,42.30070283,50.76919989,29.31997968,26.4608816,32.17907776,13.90034522,12.62309508,15.17759536,,,,40.04290311,32.62685367,47.45895255,0.085233428,19513,228936,0.075701513,0.094765343,0.000702885,199,283119,,,1422.708543,0.000854041,241,282188,,,1170.904564,0.00222901,629,282188,,,448.6295708,3264,,,,,,1748,6954,4741,2970,0.43,,,,,,0.28,0.37,0.29,0.44,0.5,,,,,,0.46,0.34,0.37,0.51,0.885395428,171525,193727,0.878493738,0.892297118,0.605482028,41860,69135,0.580503049,0.630461007,0.058024321,7730,133220,,,0.22,14090,,0.177106383,0.262893617,,,,0.133772963,0.058875433,0.208670493,0.549653782,0.504113232,0.595194332,0.300124104,0.259167322,0.341080885,0.129522939,0.108724489,0.150321388,4.754132151,122243,25713,4.485361399,5.022902904,0.337584227,22395,66339,0.307886687,0.367281766,9.88983431,280,283119,,,106.0850588,1502,1415845,100.7199896,111.4501279,,,,43.35739244,25.25727886,69.41938539,163.0052631,144.7412174,181.2693087,57.93138002,47.15411764,68.7086424,109.5337053,102.9115023,116.1559084,,,,10.3,,,,,1,,,,,0.142912672,16545,115770,0.13499375,0.150831593,0.121148551,0.113023401,0.129273702,0.020039734,0.016387669,0.023691799,0.011876998,0.008912226,0.014841769,0.799089446,101800,127395,0.791025791,0.807153101,,,,0.764252272,0.693427152,0.835077393,0.754543271,0.706301302,0.80278524,0.766021628,0.73128498,0.800758275,0.828958797,0.816259185,0.841658409,0.232,,127395,0.218414931,0.245585069,75.26036785,,,74.90812903,75.61260666,,,,86.82985404,82.57890873,91.08079936,68.20797243,67.16343516,69.2525097,81.06043406,79.159643,82.96122511,75.92589716,75.51125783,76.34053649,,,,482.8370807,4868,782295,468.5969427,497.0772187,,,,216.3294019,162.5133047,282.2629436,847.7154715,791.3283543,904.1025887,332.9401861,292.5451453,373.335227,455.5557094,439.1875834,471.9238354,,,,73.43941249,213,290035,63.57672065,83.30210432,,,,,,,153.0800085,121.1948843,190.783365,58.23378504,41.00195881,80.26760178,58.69209991,47.07278039,72.31030863,,,,7.816976344,191,24434,6.708367892,8.925584797,,,,,,,14.09017713,10.98398432,17.80209115,6.101409636,4.086209791,8.762642003,6.091989034,4.830568428,7.582007689,,,,,,,0.123,,,0.105,0.142,0.167,,,0.143,0.192,0.109,,,0.093,0.128,136.2,322,236338,,,0.119,33880,,,,0.072745542,21479.28509,295266,,,49.35146508,418,846986,44.62030132,54.08262884,,,,,,,76.70382735,61.51871248,94.5012606,24.5916931,16.46944282,35.31777338,51.45673669,45.55463231,57.35884108,,,,0.323,,,0.309,0.336,0.105210115,17225,163720,0.092103732,0.118316498,0.036764813,2521,68571,0.026041409,0.047488217,0.001470651,415,282188,,,679.9710843,,,,,,0.087324525,1269,14532,0.066723841,0.107925209,2.527458409,,,,,,2.934217174,1.968528406,2.137015379,2.961408406,2.478273413,,,,,,3.03537008,1.709266307,2.241082881,2.94103357,0.170563787,,,,,4869.2022,,,,,0.775026524,45291,58438,0.747538119,0.802514929,62557,,,58819.29787,66294.70213,69167,30839.17021,107494.8298,83770,73159.78723,94380.21277,34329,32211.7234,36446.2766,53572,49332.68085,57811.31915,68517,66582.02128,70451.97872,,,,,,0.42730391,18686,43730,,,54.00458151,,,,,0.368975494,,62557,,,1.850086898,33,17837,,,9.754645524,194,1988796,8.381973766,11.12731728,,,,,,,43.54981058,35.52004032,51.57958084,9.52322906,6.162931725,14.05816472,3.307211264,2.41230259,4.425308875,,,,13.75287506,200,1415845,11.78540696,15.72034315,14.12584005,,,,,,,,,,7.142393851,3.690579127,12.47632468,16.61375382,13.95588355,19.27162409,,,,14.76150285,209,1415845,12.76019682,16.76280887,,,,,,,46.34463361,37.12015168,57.16593434,8.350469192,4.773014652,13.56063881,10.42185588,8.37917213,12.46453964,,,,12.72126452,253,1988796,11.15369759,14.28883146,,,,,,,21.96760357,16.63804842,28.46157843,10.66601655,7.087490536,15.41536361,11.97945413,10.14037974,13.81852853,,,,10.93959732,,29800,,,326,,0.622500061,127709,205155,,,0.74,,,,,116.2726724,,,,,0.656534796,75642,115214,0.645057989,0.668011603,0.133040206,14917,112124,0.123435942,0.142644469,0.864946968,99654,115214,0.854477589,0.875416348,282188,,,,,0.231980098,65462,282188,,,0.188239755,53119,282188,,,0.137642281,38841,282188,,,0.006091684,1719,282188,,,0.029469715,8316,282188,,,0.00067331,190,282188,,,0.150537939,42480,282188,,,0.653709584,184469,282188,,,0.020170138,5387,267078,0.017250584,0.023089691,0.509628333,143811,282188,,,0.096940599,27662,285350,, -17,203,17203,IL,Woodford County,2024,1,6272.569734,459,105511,5297.419093,7247.720375,0,,,,2,,,,2,,,,2,,,,2,6273.885218,5268.932679,7278.837756,,,,,2,,0.119,,,0.096,0.146,3.177065652,,,2.416349465,4.065956684,4.523902913,,,3.485995829,5.665935247,0.05811138,168,2891,0.049583082,0.066639679,0,,,,,,,,,,,,,0.058055152,0.049324442,0.066785863,,,,,,,0.145,,,0.106,0.185,0.339,,,0.258,0.428,9.1,0.046875723,0.063,,,0.228,,,0.178,0.283,0.748407726,28789,38467,,,0.181838786,,,0.144080488,0.226689513,0.285714286,8,28,0.18563205,0.389524284,146.5,56,38225,,,11.36115359,104,9154,9.177610171,13.54469702,,,,,,,,,,,,,10.7703114,8.682391099,13.20883084,,,,,,,0.05334769,1635,30648,0.045007264,0.061688115,0.000444735,17,38225,,,2248.529412,0.000183592,7,38128,,,5446.857143,0.000445867,17,38128,,,2242.823529,2248,,,,,,,,,2266,0.5,,,,,,,,,0.5,0.5,,,,,,,,,0.5,0.942246652,24342,25834,0.93066329,0.953830013,0.768644839,6761,8796,0.697594783,0.839694895,0.034247705,623,18191,,,0.078,685,,0.050595745,0.105404255,,,,,,,0.092592593,0,0.678326582,0.17948718,0,0.396520559,0.067090735,0.036797086,0.097384383,4.4027127,160677,36495,3.694172379,5.111253022,0.133311568,1225,9189,0.094032661,0.172590476,15.43492479,59,38225,,,57.30241087,110,191964,46.59381268,68.01100906,,,,,,,,,,,,,58.5073517,47.42135811,69.59334528,,,,9.2,,,,,1,,,,,0.080546075,1180,14650,0.063853797,0.097238353,0.070644719,0.053644202,0.087645235,0.008122867,0.001186231,0.015059503,0.003754266,0.000946055,0.006562478,0.804245155,14815,18421,0.783713419,0.824776891,,,,,,,,,,,,,0.747941251,0.707588228,0.788294275,0.334,,18421,0.297840703,0.370159298,78.82964158,,,77.94573247,79.71355068,,,,,,,,,,,,,78.73930946,77.83688378,79.64173514,,,,319.6589437,459,105511,288.9106088,350.4072787,,,,,,,,,,,,,320.0986413,288.7801882,351.4170944,,,,68.74539651,28,40730,45.68081673,99.35623851,,,,,,,,,,,,,66.36580834,42.94845195,97.96902495,,,,6.832934746,20,2927,4.173734057,10.55291353,,,,,,,,,,,,,,,,,,,,,,0.095,,,0.08,0.115,0.149,,,0.127,0.175,0.078,,,0.065,0.094,65.8,21,31935,,,0.063,2450,,,,0.046875723,1812.402933,38664,,,10.45523851,12,114775,5.402374305,18.2631976,,,,,,,,,,,,,10.06975595,5.026785887,18.01757494,,,,0.31,,,0.291,0.329,0.062773587,1348,21474,0.052050182,0.073496991,0.032264758,311,9639,0.022732843,0.041796673,0.000813051,31,38128,,,1229.935484,,,,,,,,,,,3.327807742,,,,,,,,,3.3203499,3.338440321,,,,,,,,,3.364014445,0.025558885,,,,,3353.497111,,,,,0.726374263,52697,72548,0.657163377,0.795585149,85892,,,77517.02128,94266.97872,,,,,,,,,,87069,59202.44681,114935.5532,79987,75054.23404,84919.76596,,,,,,0.261360025,1645,6294,,,52.76697825,,,,,0.268732827,,85892,,,2.649006623,6,2265,,,,,,,,,,,,,,,,,,,,,,,,,,11.58554346,21,191964,7.076750929,17.89293223,10.93955117,,,,,,,,,,,,,11.62403121,6.998426124,18.15236464,,,,5.730241087,11,191964,2.860515705,10.25298416,,,,,,,,,,,,,5.467976794,2.622107411,10.05580401,,,,12.57717391,34,270331,8.710058552,17.5753399,,,,,,,,,,,,,12.80384892,8.81358045,17.9813643,,,,4.318181818,,4400,,,19,,0.738907085,21432,29005,,,0.772,,,,,19.53483393,,,,,0.82295416,12118,14725,0.802257854,0.843650465,0.093470358,1337,14304,0.068886617,0.118054099,0.874634975,12879,14725,0.852320265,0.896949684,38128,,,,,0.235181494,8967,38128,,,0.194214226,7405,38128,,,0.007737096,295,38128,,,0.002753882,105,38128,,,0.008287872,316,38128,,,0.000393412,15,38128,,,0.020168905,769,38128,,,0.948384389,36160,38128,,,0.000691123,25,36173,0,0.003913391,0.497036299,18951,38128,,,0.701614371,26989,38467,, -18,000,18000,IN,Indiana,2024,,9317.135284,106845,18954588,9233.774352,9400.496216,0,5317.800234,3690.644042,6944.956426,,3155.033717,2865.929636,3444.137798,,15263.43757,14925.80847,15601.06668,,6539.451584,6288.935661,6789.967506,,9066.353816,8972.670823,9160.03681,,11786.12141,7893.350483,16926.83636,,,0.161,,,0.152,0.17,3.528806377,,,3.335702415,3.721910339,5.170934086,,,4.930317974,5.411550198,0.082741577,46806,565689,0.082023659,0.083459495,0,0.064239829,0.042002527,0.086477131,0.085392855,0.081155617,0.089630094,0.139308732,0.136745955,0.141871509,0.074548681,0.072422101,0.076675261,0.073595808,0.072794999,0.074396618,0.072463768,0.047490131,0.097437405,0.10152911,0.095759987,0.107298233,0.18,,,0.169,0.19,0.367,,,0.354,0.38,6.8,0.086549886,0.107,,,0.251,,,0.24,0.262,0.765131026,5191818,6785528,,,0.181635301,,,0.170906271,0.192881178,0.183363554,809,4412,0.17610266,0.190733886,510.7,34755,6805985,,,20.18087149,31538,1562767,19.95814139,20.40360159,7.790588969,5.041658413,11.50044615,6.510565391,5.754686275,7.266444507,33.70032941,32.82374746,34.57691136,30.49351424,29.65766942,31.32935905,17.01944966,16.77837519,17.26052412,37.73584906,23.6488557,57.13252897,22.94893861,21.67159473,24.2262825,0.089077949,494028,5546019,0.085503481,0.092652418,0.00065604,4465,6805985,,,1524.296753,0.000594904,4065,6833037,,,1680.943911,0.001998087,13653,6833037,,,500.4787959,3135,,,,,6721,1636,5472,3030,3005,0.45,,,,,0.34,0.37,0.39,0.31,0.45,0.5,,,,,0.4,0.5,0.35,0.35,0.5,0.899990093,4078837,4532091,0.898171579,0.901808607,0.63110701,1093042,1731944,0.625551868,0.636662153,0.029907025,101817,3404451,,,0.154,238070,,0.144468085,0.163531915,0.212133387,0.121049186,0.303217588,0.158360026,0.133422031,0.18329802,0.352405135,0.335730052,0.369080217,0.237286557,0.224372902,0.250200211,0.113964655,0.110094067,0.117835244,4.318277812,126776,29358,4.273168448,4.363387176,0.240606988,378700,1573936,0.235283934,0.245930041,11.78521551,8021,6805985,,,90.21494299,30359,33651853,89.20011878,91.2297672,55.22804043,39.9688067,74.39180803,23.94613306,20.64383873,27.24842738,132.9347047,128.9580855,136.9113239,47.83302164,45.09797363,50.56806965,92.77725858,91.6149341,93.93958306,76.28346937,36.58088867,140.2880162,8.8,,,,,0.293478261,,,,,0.121533981,316325,2602770,0.119573328,0.123494634,0.102082684,0.10025644,0.103908928,0.01637102,0.015587954,0.017154086,0.009184446,0.008625899,0.009742993,0.786896635,2536027,3222821,0.784226978,0.789566292,0.715330895,0.663154585,0.767507204,0.656866475,0.635951332,0.677781618,0.752237081,0.74203037,0.762443792,0.729161047,0.719052701,0.739269393,0.798946151,0.795832311,0.802059992,0.322,,3222821,0.318847616,0.325152385,75.63294373,,,75.56490995,75.70097751,112.3613183,96.08788176,128.6347548,86.19212359,85.31827744,87.06596975,70.70984086,70.4645242,70.95515752,81.78736337,81.2542763,82.32045044,75.7574297,75.68266035,75.83219906,71.87696845,68.41771351,75.33622339,452.7421524,106845,18954588,449.932816,455.5514887,217.3991534,175.277456,259.5208508,160.9290545,148.5939226,173.2641863,685.0623614,673.209239,696.9154838,310.642636,299.5306512,321.7546208,447.2525382,444.162087,450.3429893,583.4432707,425.5675252,780.6930001,61.88985143,4350,7028616,60.05064328,63.72905958,,,,37.3770768,29.19180708,47.14609652,131.1282212,123.1471191,139.1093232,53.74531439,48.67710201,58.81352677,54.80997554,52.74444298,56.8755081,,,,6.970938061,3976,570368,6.754255427,7.187620696,,,,4.277881545,3.341060978,5.395965482,13.32569956,12.46970452,14.1816946,7.313003657,6.606843428,8.019163885,5.86903221,5.636345294,6.101719126,,,,10.36738802,8.365190995,12.36958505,0.106453062,,,0.099150701,0.114225042,0.165658837,,,0.15574064,0.176076935,0.108,,,0.101,0.114,217,12347,5690847,,,0.107,730480,,,,0.086549886,561172.3247,6483802,,,33.66159341,6831,20293157,32.86332564,34.45986119,27.59791954,14.69472984,47.19328292,2.274790956,1.175417682,3.973602008,48.08166361,45.01765494,51.14567227,15.57990245,13.59213853,17.56766638,35.31254414,34.38665949,36.23842878,,,,0.358613975,,,0.345147846,0.37230679,0.101545874,404535,3983766,0.097971406,0.105120342,0.058886143,96592,1640318,0.054120185,0.0636521,0.001295178,8850,6833037,,,772.0945763,0.88344555,67390.11,76281,,,0.061358664,23332,380256,0.057567913,0.065149415,3.135542943,,,,,,3.509551054,2.554688701,2.811604663,3.29986733,3.228965303,,,,,,3.668816867,2.502264236,2.902716865,3.422452866,0.250805182,,,,,-1414.6,,,,,0.773603442,45672,59038,0.767701726,0.779505158,66768,,,65992.34043,67543.65957,56868,48680.08511,65055.91489,78490,74739.19149,82240.80851,42067,41117.38298,43016.61702,59341,57329.76596,61352.23404,71029,70558.3617,71499.6383,,,,,,0.443266918,455533,1027672,,,68.30030495,,,,,0.251359252,,,,,3.5608444,,,,,7.447033004,3493,46904586,7.200065361,7.694000648,,,,2.127670892,1.363238887,3.165805633,42.83567701,40.91560391,44.75575011,7.257539927,6.345019976,8.170059878,3.449994001,3.260620452,3.63936755,,,,15.59991393,5296,33651853,15.17043224,16.02939563,15.73761778,,,,6.665794201,4.947480938,8.788018652,9.848483403,8.75523967,10.94172714,6.710976025,5.569580954,7.852371095,17.46338592,16.94844637,17.97832547,,,,15.93077207,5361,33651853,15.50432023,16.35722391,,,,3.793446821,2.594714817,5.35521505,47.62487207,45.24468153,50.00506262,9.078096873,7.886584785,10.26960896,13.37681588,12.93546602,13.81816574,,,,12.95395721,6076,46904586,12.62823329,13.27968113,,,,5.053218368,3.827258245,6.547030516,15.83934291,14.6717713,17.00691452,9.109257933,8.086932533,10.13158333,13.44821191,13.07432314,13.82210068,,,,13.13711815,,716900,,,7623,1795,0.614799823,3033118,4933505,,,,,,,,86.88493895,,,,,0.701148932,1860566,2653596,0.69704993,0.705247933,0.109888145,283349,2578522,0.10777241,0.11200388,0.867291027,2301440,2653596,0.864072622,0.870509432,6833037,,,,,0.229754793,1569923,6833037,,,0.169130944,1155678,6833037,,,0.098846823,675424,6833037,,,0.004439022,30332,6833037,,,0.028218931,192821,6833037,,,0.000755447,5162,6833037,,,0.07928378,541749,6833037,,,0.770385701,5264074,6833037,,,0.01354044,86318,6374830,0.012967974,0.014112905,0.503077768,3437549,6833037,,,0.28823726,1955842,6785528,, -18,001,18001,IN,Adams County,2024,1,9026.48121,471,99891,7863.850381,10189.11204,0,,,,2,,,,2,,,,2,,,,2,9152.285857,7941.499883,10363.07183,,,,,2,,0.196,,,0.164,0.232,4.31637691,,,3.464833323,5.257602477,5.610952862,,,4.553193808,6.740831099,0.066609735,312,4684,0.059468915,0.073750556,0,,,,,,,,,,,,,0.065880258,0.058626438,0.073134078,,,,,,,0.227,,,0.181,0.275,0.395,,,0.318,0.474,8.2,0.04746254,0.101,,,0.292,,,0.239,0.348,0.558798068,20010,35809,,,0.157331423,,,0.124855542,0.194671373,0.142857143,5,35,0.066594236,0.239711679,183.5,66,35961,,,19.70607882,177,8982,16.80292763,22.60923002,,,,,,,,,,22.96819788,12.22959804,39.27631788,19.71106758,16.66630608,22.75582909,,,,,,,0.129728113,3903,30086,0.110664283,0.148791943,0.000389311,14,35961,,,2568.642857,0.000388156,14,36068,,,2576.285714,0.000388156,14,36068,,,2576.285714,2442,,,,,,,,,2447,0.39,,,,,,,,,0.39,0.41,,,,,,,,0.43,0.41,0.866998743,18624,21481,0.842425697,0.891571789,0.496420353,3883,7822,0.431226489,0.561614217,0.022019742,377,17121,,,0.178,1963,,0.114851064,0.241148936,,,,,,,,,,0.539792388,0.331400064,0.748184711,0.125683594,0.082969404,0.168397784,3.26499468,107402,32895,2.879868744,3.650120617,0.10316467,1154,11186,0.061028268,0.145301073,14.46010956,52,35961,,,66.59056317,119,178704,54.62604321,78.55508312,,,,,,,,,,,,,68.19609368,55.67728091,80.71490645,,,,9.1,,,,,1,,,,,0.163469225,2045,12510,0.136326377,0.190612072,0.080469066,0.0573525,0.103585632,0.037969624,0.024137973,0.051801276,0.097521982,0.076805345,0.11823862,0.755388143,11531,15265,0.722085067,0.788691219,,,,,,,,,,,,,0.7951417,0.759423381,0.83086002,0.212,,15265,0.17387234,0.25012766,76.59172983,,,75.59314569,77.59031398,,,,,,,,,,,,,76.42861373,75.40518678,77.45204068,,,,409.6960904,471,99891,371.2739625,448.1182183,,,,,,,,,,,,,415.2504821,375.3497815,455.1511827,,,,93.14841648,45,48310,67.94309416,124.63991,,,,,,,,,,,,,96.35638417,69.733593,129.7914171,,,,9.39167556,44,4685,6.82400584,12.60788608,,,,,,,,,,,,,9.769094139,7.098238756,13.1145529,,,,,,,0.133,,,0.113,0.154,0.187,,,0.161,0.215,0.114,,,0.097,0.133,21.6,6,27759,,,0.101,3610,,,,0.04746254,1632.094356,34387,,,16.73220112,18,107577,9.916562816,26.44409146,,,,,,,,,,,,,16.90381728,9.847096491,27.06464896,,,,0.353,,,0.334,0.371,0.14374736,2722,18936,0.121109062,0.166385657,0.105990388,1235,11652,0.073820175,0.138160601,0.00066541,24,36068,,,1502.833333,0.947404372,346.75,366,,,0.193333333,377,1950,0.109045148,0.277621519,2.968854401,,,,,,,,2.792747365,3.005359078,2.993922255,,,,,,,,2.879453303,3.065767363,0.031985979,,,,,-1667.160333,,,,,0.854684155,41118,48109,0.768621543,0.940746766,60620,,,54440.93617,66799.06383,,,,,,,,,,51500,32810.29787,70189.70213,63155,58758.40426,67551.59575,,,,,,0.362036156,1522,4204,,,,,,,,0.247871989,,60620,,,2.762430939,9,3258,,,,,,,,,,,,,,,,,,,,,,,,,,7.56749053,13,178704,3.910232785,13.21888303,7.274599338,,,,,,,,,,,,,8.047249565,4.158131279,14.05692551,,,,,,,,,,,,,,,,,,,,,,,,,,,16.87316203,42,248916,12.16069105,22.80761332,,,,,,,,,,,,,16.73618621,11.90106446,22.8789175,,,,9.787234043,,4700,,,37,9,0.587755946,14209,24175,,,0.752,,,,,34.80923676,,,,,0.822090858,10152,12349,0.796991536,0.84719018,0.080305293,968,12054,0.057832609,0.102777976,0.756093611,9337,12349,0.727851239,0.784335983,36068,,,,,0.310275036,11191,36068,,,0.165382056,5965,36068,,,0.006293668,227,36068,,,0.004158811,150,36068,,,0.00410336,148,36068,,,0.000332705,12,36068,,,0.047216369,1703,36068,,,0.930963735,33578,36068,,,0.010292226,336,32646,0.003174121,0.01741033,0.498391926,17976,36068,,,0.708425256,25368,35809,, -18,003,18003,IN,Allen County,2024,1,9077.176072,5419,1081582,8730.968673,9423.383471,0,,,,2,6425.019586,5214.688465,7635.350708,,17962.18521,16521.31221,19403.05822,,7719.425323,6586.416218,8852.434428,,8057.725161,7675.852464,8439.597858,,,,,2,,0.164,,,0.139,0.189,3.768820663,,,3.085524842,4.521619353,5.214876545,,,4.475206601,6.003353922,0.089018006,3248,36487,0.086096002,0.091940011,0,,,,0.091364205,0.07982954,0.102898871,0.146336822,0.136780522,0.155893123,0.08749655,0.078295558,0.096697541,0.07542268,0.072098973,0.078746388,,,,0.116009281,0.094631006,0.137387556,0.175,,,0.139,0.21,0.384,,,0.339,0.428,7.5,0.120879337,0.099,,,0.241,,,0.205,0.276,0.850517631,327798,385410,,,0.168181989,,,0.143171408,0.19722151,0.329896907,64,194,0.29397471,0.365988091,582.8,2265,388608,,,22.22645868,1982,89173,21.24792784,23.20498952,,,,30.23255814,25.48829609,34.97682019,42.1852811,38.50592917,45.86463302,32.09230173,28.63495496,35.5496485,15.12057736,14.10939878,16.13175595,,,,26.59008722,21.9286394,31.25153503,0.097697876,31905,326568,0.088165961,0.107229791,0.000738533,287,388608,,,1354.034843,0.000689745,270,391449,,,1449.811111,0.002314478,906,391449,,,432.0629139,2985,,,,,,2559,5895,2026,2756,0.44,,,,,,0.28,0.35,0.2,0.45,0.52,,,,,,0.49,0.33,0.34,0.53,0.90111435,226906,251806,0.895517773,0.906710927,0.66955517,68381,102129,0.646991665,0.692118676,0.028646672,5428,189481,,,0.142,13746,,0.107446809,0.176553192,0.414012739,0,0.869875997,0.279444926,0.207992965,0.350896888,0.373291272,0.318618856,0.427963689,0.288647343,0.241679346,0.33561534,0.093615507,0.079079427,0.108151587,4.039801482,123727,30627,3.862499699,4.217103266,0.256177173,24997,97577,0.2353839,0.276970446,11.0136693,428,388608,,,87.91975229,1669,1898322,83.70167669,92.13782788,,,,50.94184525,37.01442275,68.38704952,159.8742931,143.1248379,176.6237484,60.92071507,48.98744907,74.88190167,84.96514047,80.11104158,89.81923936,,,,8.9,,,,,1,,,,,0.108708219,15985,147045,0.100796438,0.116619999,0.092297659,0.084724471,0.099870847,0.014451358,0.011607336,0.017295381,0.006460607,0.00472349,0.008197724,0.805598756,150220,186470,0.796132975,0.815064537,,,,0.786591124,0.723024174,0.850158073,0.788077442,0.758390193,0.81776469,0.78308343,0.762117755,0.804049104,0.825916943,0.816252821,0.835581066,0.197,,186470,0.186145015,0.207854985,76.01936681,,,75.73010866,76.30862495,,,,79.43378755,77.42306704,81.44450806,68.62803971,67.66970799,69.58637143,80.72317776,78.56055909,82.88579642,76.83391149,76.51431408,77.15350889,,,,425.4506492,5419,1081582,413.8167137,437.0845848,,,,314.8126021,259.2332652,370.391939,753.6712664,705.5384799,801.804053,344.2450789,296.1502407,392.339917,394.3513079,381.6689763,407.0336394,,,,67.14863948,287,427410,59.37986811,74.91741085,,,,51.97297405,27.67341979,88.87536848,167.7214096,136.0107646,204.6058961,55.44993663,36.8460802,80.14059716,53.08490594,44.3535247,61.81628718,,,,7.315408762,268,36635,6.439563727,8.191253797,,,,,,,16.5693843,13.28913072,20.41394488,9.039548023,6.183044156,12.76114466,5.39422453,4.4774569,6.31099216,,,,,,,0.11,,,0.094,0.125,0.162,,,0.141,0.184,0.111,,,0.097,0.126,189.2,602,318131,,,0.099,37950,,,,0.120879337,42951.9339,355329,,,32.95382812,379,1150094,29.6360882,36.27156804,,,,,,,69.48010754,56.01077302,85.21118403,29.62637845,19.52397008,43.1048252,30.5751363,26.82234526,34.32792734,,,,0.333,,,0.319,0.346,0.112681597,25782,228804,0.100766703,0.12459649,0.064261732,6584,102456,0.04877237,0.079751094,0.002273604,890,391449,,,439.8303371,0.903166418,3625.31,4014,,,0.060782838,1292,21256,0.044991977,0.076573699,3.106149185,,,,,,2.876640139,2.524736921,2.847499698,3.405751315,3.066706815,,,,,,2.727719459,2.258297843,2.75905829,3.423454274,0.141441396,,,,,146.3695,,,,,0.772905057,44660,57782,0.748343961,0.797466153,65967,,,63144.3617,68789.6383,43915,35338.65957,52491.34043,64150,51706.08511,76593.91489,40311,35363.93617,45258.06383,54583,49640.70213,59525.29787,72080,70354.7234,73805.2766,,,,,,0.488001884,26946,55217,,,56.14782954,,,,,0.276213865,,65967,,,4.305786373,114,26476,,,10.50365998,277,2637176,9.2666966,11.74062335,,,,,,,56.79095021,48.32818767,65.25371276,8.425852498,4.908369583,13.49060607,3.978923076,3.140103868,4.97297115,,,,14.58943538,275,1898322,12.83245136,16.34641941,14.48647806,,,,22.35898113,10.72200054,41.11896237,14.59195673,9.91452664,20.71211781,12.03314834,7.009752345,19.26623617,14.82454641,12.74619078,16.90290204,,,,15.85610871,301,1898322,14.06480412,17.6474133,,,,,,,54.35725966,44.59073289,64.12378644,10.83034935,6.19048043,17.58780882,11.55006158,9.760360993,13.33976216,,,,10.42782128,275,2637176,9.195331561,11.66031099,,,,14.85975018,8.65635208,23.79189953,15.10048387,11.05545207,20.14192935,8.425852498,4.908369583,13.49060607,10.0764935,8.662171837,11.49081517,,,,26.78983834,,43300,,,913,247,0.633147351,169082,267050,,,0.728,,,,,81.08605334,,,,,0.694838587,105530,151877,0.685362949,0.704314224,0.100966991,15046,149019,0.09335197,0.108582012,0.894335548,135829,151877,0.887136492,0.901534604,391449,,,,,0.251118281,98300,391449,,,0.15713669,61511,391449,,,0.114081272,44657,391449,,,0.004634065,1814,391449,,,0.05479641,21450,391449,,,0.001187894,465,391449,,,0.083717164,32771,391449,,,0.714450669,279671,391449,,,0.020819761,7478,359178,0.01816501,0.023474511,0.506579401,198300,391449,,,0.1291871,49790,385410,, -18,005,18005,IN,Bartholomew County,2024,1,8483.364534,1194,233132,7763.90467,9202.824397,0,,,,2,,,,2,13310.65202,8130.492053,20557.22248,1,5758.538026,3761.668226,8437.592436,,9305.857998,8441.195568,10170.52043,,,,,2,,0.15,,,0.124,0.177,3.411994502,,,2.712218466,4.188020779,4.513446551,,,3.67433023,5.421191201,0.078458362,570,7265,0.072275133,0.084641591,0,,,,0.099616858,0.078639283,0.120594434,0.138297872,0.088950563,0.187645182,0.085158151,0.066076924,0.104239377,0.07271028,0.065752274,0.079668287,,,,,,,0.164,,,0.126,0.202,0.364,,,0.303,0.428,7.6,0.104861593,0.104,,,0.24,,,0.195,0.286,0.706439763,58075,82208,,,0.162742164,,,0.133115573,0.197125363,0.128205128,10,78,0.077776812,0.18891446,363.7,300,82475,,,23.2531566,407,17503,20.99402889,25.51228432,,,,,,,,,,35.26448363,27.49039502,44.55455357,22.63878875,20.13473046,25.14284704,,,,30.01876173,17.15831605,48.74858836,0.086592834,5911,68262,0.07467794,0.098507727,0.000788118,65,82475,,,1268.846154,0.000790041,66,83540,,,1265.757576,0.001831458,153,83540,,,546.0130719,2954,,,,,,,1104,,2929,0.47,,,,,,0.6,0.54,0.62,0.47,0.6,,,,,,0.71,0.55,0.46,0.6,0.918225758,51484,56069,0.9041055,0.932346015,0.686331385,15380,22409,0.639432632,0.733230138,0.02362542,1048,44359,,,0.133,2598,,0.093680851,0.172319149,,,,0.125802311,0,0.260189687,0.080952381,0,0.358157115,0.192849404,0.094693421,0.291005388,0.124809741,0.092154189,0.157465293,4.197475895,136695,32566,3.651135118,4.743816672,0.210890938,4140,19631,0.165511855,0.256270021,10.54865111,87,82475,,,84.95910892,353,415494,76.0961514,93.82206643,,,,,,,,,,42.68733171,22.72920631,72.99663728,97.08651123,86.54734714,107.6256753,,,,6.9,,,,,0,,,,,0.112055398,3560,31770,0.096053931,0.128056865,0.093401339,0.077618606,0.109184072,0.021089078,0.01333362,0.028844535,0.00802644,0.00365948,0.0123934,0.768002574,31025,40397,0.744456499,0.79154865,,,,0.657559199,0.551392256,0.763726141,,,,0.665671642,0.56378068,0.767562604,0.816745852,0.794181968,0.839309736,0.212,,40397,0.18805136,0.23594864,76.89040157,,,76.25809873,77.52270442,,,,,,,71.35431891,67.20346292,75.50517491,83.68837006,77.27465157,90.10208854,76.17042115,75.46215244,76.87868985,,,,413.8250541,1194,233132,389.6857606,437.9643476,,,,,,,679.029589,475.5839762,940.0631714,246.9359148,152.8572233,377.4677767,441.6485657,414.3194124,468.9777191,,,,59.04076128,51,86381,43.95972475,77.6276975,,,,,,,,,,,,,58.47029077,41.16848067,80.59359378,,,,7.593220339,56,7375,5.735837042,9.860428204,,,,,,,,,,,,,6.424375918,4.474813216,8.93475172,,,,,,,0.103,,,0.087,0.12,0.154,,,0.131,0.177,0.1,,,0.085,0.117,87.8,60,68311,,,0.104,8520,,,,0.104861593,8052.741148,76794,,,29.91611521,75,250701,23.53092237,37.50010947,,,,,,,,,,,,,34.35895648,26.733319,43.48345845,,,,0.33,,,0.314,0.346,0.099673169,4849,48649,0.085375297,0.113971041,0.055923294,1149,20546,0.039242443,0.072604145,0.001352645,113,83540,,,739.2920354,0.865119171,834.84,965,,,0.082131508,336,4091,0.030096987,0.13416603,3.113527848,,,,,,3.792240284,,2.654133357,3.165003629,3.240669777,,,,,,4.135385559,,2.770366276,3.253436111,0.081005185,,,,,296.68975,,,,,0.725248248,49665,68480,0.653863342,0.796633154,68910,,,62255.53192,75564.46809,,,,107261,102005.3404,112516.6596,81831,69415.68085,94246.31915,66835,51114.48936,82555.51064,73201,68693.59575,77708.40426,,,,,,0.399510191,5057,12658,,,47.24732258,,,,,0.304193876,,68910,,,4.958047292,26,5244,,,2.594895322,15,578058,1.452343213,4.279885214,,,,,,,,,,,,,2.332079664,1.164165766,4.172734705,,,,15.95615929,67,415494,12.28818695,20.37565919,16.12538328,,,,,,,,,,,,,18.85949492,14.32080519,24.38027055,,,,10.83048131,45,415494,7.899827383,14.49203611,,,,,,,,,,,,,12.21026675,8.762298231,16.56460558,,,,16.43433704,95,578058,13.29636007,20.0901248,,,,,,,,,,,,,18.02061558,14.39422768,22.28277024,,,,18.98876405,,8900,,,155,14,0.635255961,36235,57040,,,0.717,,,,,66.63835562,,,,,0.701522595,22991,32773,0.682911585,0.720133605,0.108438659,3449,31806,0.091323318,0.125554001,0.899276844,29472,32773,0.88621152,0.912342168,83540,,,,,0.239609768,20017,83540,,,0.171570505,14333,83540,,,0.021953555,1834,83540,,,0.005027532,420,83540,,,0.078273881,6539,83540,,,0.001053388,88,83540,,,0.084043572,7021,83540,,,0.794613359,66382,83540,,,0.012028204,928,77152,0.00675022,0.017306189,0.494613359,41320,83540,,,0.30694093,25233,82208,, -18,007,18007,IN,Benton County,2024,1,9747.420169,147,24113,7347.171798,12147.66854,0,,,,2,,,,2,,,,2,,,,2,10240.13108,7640.324301,12839.93785,,,,,2,,0.193,,,0.161,0.23,4.247962834,,,3.27671619,5.281259971,5.628039429,,,4.341660104,6.915915247,0.07001321,53,757,0.051835611,0.088190809,0,,,,,,,,,,,,,0.068350669,0.049285258,0.087416079,,,,,,,0.228,,,0.18,0.281,0.413,,,0.319,0.516,8.1,0.011039868,0.124,,,0.299,,,0.243,0.361,0.484803303,4227,8719,,,0.158321593,,,0.120228361,0.202638431,0,0,13,0,0.165938541,309.8,27,8714,,,16.78183613,34,2026,11.62190937,23.45093391,,,,,,,,,,,,,15.90909091,10.57147537,22.99306588,,,,,,,0.115132039,824,7157,0.098451188,0.13181289,0.000229516,2,8714,,,4357,0.000458768,4,8719,,,2179.75,0.000458768,4,8719,,,2179.75,2988,,,,,,,,,2966,0.51,,,,,,,,,0.51,0.48,,,,,,,,,0.49,0.885655947,5205,5877,0.860477107,0.910834786,0.607440039,1241,2043,0.519896238,0.69498384,0.024191725,107,4423,,,0.144,299,,0.093957447,0.194042553,,,,,,,,,,0.577319588,0.370549318,0.784089857,0.170812604,0.107378993,0.234246215,3.729050663,108493,29094,3.196725828,4.261375499,0.213623726,461,2158,0.148277771,0.27896968,6.885471655,6,8714,,,94.32009018,41,43469,67.68572516,127.9558526,,,,,,,,,,,,,97.61225409,69.41185486,133.4391647,,,,8.7,,,,,0,,,,,0.113537118,390,3435,0.082927268,0.144146968,0.091015854,0.059854597,0.122177112,0.028820961,0.012224754,0.045417167,0.001164483,0,0.008005608,0.828093306,3266,3944,0.779997477,0.876189136,,,,,,,,,,,,,0.790050205,0.637813209,0.942287202,0.495,,3944,0.415499887,0.574500113,75.8597274,,,73.8945834,77.8248714,,,,,,,,,,,,,75.39000661,73.32554961,77.45446361,,,,469.0644786,147,24113,389.4811829,548.6477744,,,,,,,,,,,,,488.8831425,404.3410608,573.4252241,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.132,,,0.112,0.155,0.185,,,0.157,0.214,0.115,,,0.096,0.136,138.1,10,7240,,,0.124,1080,,,,0.011039868,97.74699174,8854,,,,,,,,,,,,,,,,,,,,,,,,,,0.355,,,0.337,0.372,0.127888446,642,5020,0.106441638,0.149335255,0.08691796,196,2255,0.059513705,0.114322215,,0,8719,,,,0.925,124.875,135,,,,,,,,3.109259993,,,,,,,,,3.219885347,3.455380536,,,,,,,,,3.642772833,0.01940028,,,,,1009.003,,,,,0.73713156,41014,55640,0.655187081,0.819076039,62248,,,54807.14894,69688.85106,,,,,,,,,,41042,30861.91489,51222.08511,59304,54567.82979,64040.17021,,,,,,0.494749846,801,1619,,,,,,,,0.255012209,,62248,,,1.748251748,1,572,,,,,,,,,,,,,,,,,,,,,,,,,,26.51930698,10,43469,12.71703849,48.76994974,23.00490004,,,,,,,,,,,,,29.06904293,13.93973599,53.45900493,,,,,,,,,,,,,,,,,,,,,,,,,,,27.96052632,17,60800,16.28803696,44.76751121,,,,,,,,,,,,,28.58265747,16.33745838,46.41644503,,,,,,1000,,,144,-888,0.640311284,4114,6425,,,0.656,,,,,10.35390173,,,,,0.783523225,2682,3423,0.740044669,0.827001781,0.081645181,266,3258,0.047181921,0.116108441,0.850423605,2911,3423,0.823382889,0.877464321,8719,,,,,0.242000229,2110,8719,,,0.181557518,1583,8719,,,0.00951944,83,8719,,,0.003555454,31,8719,,,0.002752609,24,8719,,,0.00057346,5,8719,,,0.062507168,545,8719,,,0.905379057,7894,8719,,,0.009437431,77,8159,0,0.019017914,0.492831747,4297,8719,,,1,8719,8719,, -18,009,18009,IN,Blackford County,2024,1,12327.04886,276,32262,9861.511709,14792.58602,0,,,,2,,,,2,,,,2,,,,2,12719.30976,10136.73995,15301.87957,,,,,2,,0.197,,,0.166,0.226,4.478889433,,,3.632549424,5.426756284,5.6952981,,,4.667000496,6.819420551,0.071991001,64,889,0.054999944,0.088982058,0,,,,,,,,,,,,,0.070093458,0.05299025,0.087196666,,,,,,,0.24,,,0.193,0.282,0.409,,,0.33,0.492,7,0.075438062,0.144,,,0.319,,,0.264,0.372,0.424950462,5147,12112,,,0.147173649,,,0.116813006,0.180697293,0.444444444,4,9,0.264827841,0.599456043,206.8,25,12091,,,35.40626419,78,2203,27.98718257,44.18862009,,,,,,,,,,,,,37.38783649,29.40790514,46.86597679,,,,,,,0.081839522,767,9372,0.068733139,0.094945905,0.000661649,8,12091,,,1511.375,0.000167799,2,11919,,,5959.5,0.000335599,4,11919,,,2979.75,1826,,,,,,,,,1833,0.37,,,,,,,,,0.37,0.37,,,,,,,,,0.37,0.903941468,7660,8474,0.878684217,0.929198719,0.558166863,1425,2553,0.449742727,0.666590998,0.034619395,166,4795,,,0.19,490,,0.118510638,0.261489362,,,,,,,,,,,,,0.203178694,0.120660004,0.285697385,4.610837923,93766,20336,3.216805713,6.004870133,0.200753296,533,2655,0.121038558,0.280468034,13.23298321,16,12091,,,94.05915649,56,59537,71.05127598,122.1436384,,,,,,,,,,,,,95.22465966,71.53569509,124.2475249,,,,8.7,,,,,0,,,,,0.103819785,530,5105,0.068441526,0.139198043,0.097194389,0.058642337,0.13574644,0.010577865,0,0.022693893,0,0,0.006271379,0.792250618,3844,4852,0.72927172,0.855229517,,,,,,,,,,,,,0.74770798,0.674890727,0.820525232,0.391,,4852,0.318299619,0.463700381,73.04506814,,,71.25579329,74.83434298,,,,,,,,,,,,,72.69694673,70.85491147,74.53898198,,,,586.4110519,276,32262,511.4968044,661.3252995,,,,,,,,,,,,,601.4500416,523.8071742,679.0929089,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.136,,,0.116,0.155,0.189,,,0.163,0.215,0.118,,,0.1,0.136,,,,,,0.144,1740,,,,0.075438062,963.0422984,12766,,,33.67853835,12,35631,17.40219222,58.82962883,,,,,,,,,,,,,32.49918752,16.22347732,58.15002368,,,,0.366,,,0.348,0.385,0.094283593,635,6735,0.077602742,0.110964444,0.05166185,143,2768,0.033789509,0.06953419,0.000419498,5,11919,,,2383.8,0.875,101.5,116,,,,,,,,3.100925629,,,,,,,,,3.062442811,3.205086902,,,,,,,,,3.188643135,0.006831729,,,,,-841.209,,,,,0.793561782,37076,46721,0.643625136,0.943498427,54825,,,47738.02128,61911.97872,,,,,,,,,,,,,52317,45331.29787,59302.70213,,,,,,0.462628866,718,1552,,,51.00515464,,,,,0.252129503,,54825,,,6.462035541,4,619,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.86054487,15,83984,9.996411379,29.45825261,,,,,,,,,,,,,18.734544,10.48558206,30.89978127,,,,,,1200,,,27,-888,0.579112554,5351,9240,,,0.648,,,,,40.14041792,,,,,0.756626506,3768,4980,0.723360553,0.789892459,0.122479304,577,4711,0.079001131,0.165957477,0.83935743,4180,4980,0.79229738,0.886417479,11919,,,,,0.221411192,2639,11919,,,0.220152697,2624,11919,,,0.009145063,109,11919,,,0.003607685,43,11919,,,0.006292474,75,11919,,,0.000335599,4,11919,,,0.022317309,266,11919,,,0.938333753,11184,11919,,,0,0,11448,0,0.008326271,0.507844618,6053,11919,,,0.493477543,5977,12112,, -18,011,18011,IN,Boone County,2024,1,6676.684823,787,198513,5981.439832,7371.929814,0,,,,2,,,,2,,,,2,,,,2,7057.67813,6292.397481,7822.958778,,,,,2,,0.116,,,0.093,0.144,3.007414061,,,2.349829218,3.712225069,4.422194709,,,3.631079918,5.261325409,0.065957076,378,5731,0.059530865,0.072383287,0,,,,0.080985916,0.049256452,0.112715379,0.116129032,0.065691357,0.166566707,0.068181818,0.03094268,0.105420956,0.063682965,0.056962652,0.070403279,,,,,,,0.131,,,0.096,0.175,0.343,,,0.283,0.41,9.2,0.024650284,0.067,,,0.204,,,0.163,0.254,0.829929955,58769,70812,,,0.182021781,,,0.147871199,0.220125512,0.105263158,4,38,0.040528908,0.196357122,180.7,132,73052,,,8.511195496,130,15274,7.048092292,9.974298699,,,,,,,,,,,,,8.862851134,7.263703638,10.46199863,,,,,,,0.057832597,3615,62508,0.049492172,0.066173023,0.002108087,154,73052,,,474.3636364,0.000485411,36,74164,,,2060.111111,0.001442749,107,74164,,,693.1214953,2511,,,,,,,6735,,2508,0.46,,,,,,0.29,0.47,,0.46,0.56,,,,,,0.68,0.57,0.55,0.56,0.949953641,45081,47456,0.938613515,0.961293767,0.806677814,14955,18539,0.750889236,0.862466393,0.020176216,774,38362,,,0.048,885,,0.02893617,0.06706383,,,,0.230909091,0,0.493747729,0.052845529,0,0.279510774,0.028811525,0,0.109964643,0.035114203,0.017760405,0.052468002,4.472797527,202573,45290,3.949908179,4.995686876,0.142292924,2594,18230,0.104743868,0.17984198,10.81421453,79,73052,,,71.98731624,247,343116,63.00964748,80.964985,,,,,,,,,,,,,77.47471492,67.63171278,87.31771707,,,,10,,,,,0,,,,,0.088109992,2275,25820,0.071263475,0.10495651,0.080376397,0.063604299,0.097148495,0.006777692,0.002320117,0.011235266,0.005034857,0.001079068,0.008990646,0.745018178,27255,36583,0.72085505,0.769181305,,,,0.501516684,0.274983374,0.728049993,0.765736342,0.669384103,0.862088581,0.522096207,0.451154537,0.593037876,0.710455479,0.682585218,0.738325741,0.396,,36583,0.362532084,0.429467916,78.00926533,,,77.37248574,78.64604492,,,,91.93954436,80.21453426,103.6645545,,,,84.49801315,78.63971705,90.35630925,77.57296062,76.89993349,78.24598775,,,,335.3288695,787,198513,311.4716539,359.186085,,,,,,,,,,,,,350.9760569,325.4040058,376.548108,,,,46.04051565,36,78192,32.24621114,63.73948037,,,,,,,,,,,,,48.79996451,33.59165014,68.5332938,,,,4.284949116,24,5601,2.745447751,6.37566463,,,,,,,,,,,,,4.410585405,2.764090391,6.677679308,,,,,,,0.088,,,0.073,0.106,0.142,,,0.12,0.168,0.082,,,0.069,0.098,91.9,55,59830,,,0.067,4690,,,,0.024650284,1396.192097,56640,,,31.39239543,66,210242,24.27887635,39.93882404,,,,,,,,,,,,,34.74375147,26.81449388,44.28376335,,,,0.32,,,0.302,0.338,0.064327485,2816,43776,0.053604081,0.07505089,0.044027721,864,19624,0.030921338,0.057134104,0.001105658,82,74164,,,904.4390244,0.957737819,825.57,862,,,,,,,,3.525032338,,,,,,3.996850056,,3.401440973,3.527267948,3.675870475,,,,,,4.337643692,,3.418582329,3.685249008,0.047317531,,,,,1777.633067,,,,,0.768289829,62369,81179,0.670101279,0.866478379,102805,,,94481.25532,111128.7447,,,,150772,71348.51064,230195.4894,110234,76485.06383,143982.9362,66607,48671.51064,84542.48936,102824,98635.91489,107012.0851,,,,,,0.160487081,2056,12811,,,40.72375705,,,,,0.228257381,,102805,,,3.988477731,18,4513,,,3.820739398,18,471113,2.264412313,6.038415469,,,,,,,,,,,,,3.770925692,2.155409853,6.123747074,,,,16.20847819,55,343116,12.14126241,21.20108854,16.02956435,,,,,,,,,,,,,17.45527547,12.99659911,22.95046363,,,,11.36641835,39,343116,8.082634587,15.53826807,,,,,,,,,,,,,12.04438845,8.480360995,16.60160293,,,,9.127321895,43,471113,6.605488113,12.29444269,,,,,,,,,,,,,9.191631373,6.536148445,12.56526267,,,,17.34939759,,8300,,,124,20,0.806448236,38520,47765,,,0.76,,,,,67.51193404,,,,,0.799324901,21549,26959,0.78043725,0.818212551,0.087414429,2324,26586,0.069260278,0.105568579,0.928038874,25019,26959,0.916495586,0.939582162,74164,,,,,0.250957338,18612,74164,,,0.150329001,11149,74164,,,0.028234723,2094,74164,,,0.00330349,245,74164,,,0.041165525,3053,74164,,,0.000417993,31,74164,,,0.038482283,2854,74164,,,0.873658379,64794,74164,,,0.006898513,461,66826,0.003377199,0.010419827,0.498233644,36951,74164,,,0.271917189,19255,70812,, -18,013,18013,IN,Brown County,2024,1,8709.075262,269,41455,6769.735523,10648.415,0,,,,2,,,,2,,,,2,,,,2,9077.153872,7026.240812,11128.06693,,,,,2,,0.147,,,0.121,0.175,3.5380973,,,2.787820262,4.420042346,5.232042206,,,4.232721978,6.323949883,0.084677419,63,744,0.06467233,0.104682509,0,,,,,,,,,,,,,0.083906465,0.063752686,0.104060244,,,,,,,0.183,,,0.143,0.226,0.355,,,0.281,0.436,8.9,0.010610946,0.09,,,0.243,,,0.197,0.295,0.48549273,7513,15475,,,0.155456154,,,0.12291087,0.194111179,0.105263158,2,19,0.021173544,0.243494433,186.5,29,15552,,,12.75690999,36,2822,8.934782926,17.66094064,,,,,,,,,,,,,13.86214863,9.708878482,19.19105679,,,,,,,0.089925567,1039,11554,0.076819184,0.10303195,0.000321502,5,15552,,,3110.4,6.42261E-05,1,15570,,,15570,0.000899165,14,15570,,,1112.142857,2312,,,,,,,,,2326,0.48,,,,,,,,,0.48,0.5,,,,,,,,,0.5,0.928847122,11070,11918,0.910161138,0.947533106,0.633015455,1925,3041,0.522005373,0.744025538,0.032832428,260,7919,,,0.141,354,,0.087382979,0.194617021,,,,,,,,,,0.31147541,0,0.835878973,0.083368779,0.032349964,0.134387594,4.111932616,131808,32055,3.149915797,5.073949435,0.215500945,570,2645,0.128443276,0.302558614,9.645061728,15,15552,,,96.02104571,73,76025,75.26517188,120.7320489,,,,,,,,,,,,,97.97157445,76.51661247,123.5778103,,,,8.3,,,,,0,,,,,0.139717425,890,6370,0.101857355,0.177577496,0.094405043,0.065374557,0.123435529,0.040031397,0.013377782,0.066685012,0.006122449,0.00037002,0.011874878,0.780768153,5570,7134,0.720228692,0.841307613,,,,,,,,,,,,,0.630144928,0.561766746,0.698523109,0.573,,7134,0.492285939,0.653714061,77.47039121,,,75.93051356,79.01026886,,,,,,,,,,,,,77.08445247,75.48870382,78.68020111,,,,390.8996039,269,41455,335.9664467,445.8327611,,,,,,,,,,,,,401.9988717,344.5564383,459.441305,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.108,,,0.091,0.127,0.167,,,0.143,0.193,0.094,,,0.079,0.111,94.4,13,13774,,,0.09,1390,,,,0.010610946,161.7320416,15242,,,30.59708016,14,45756,16.72770845,51.33670146,,,,,,,,,,,,,32.1528639,17.57826989,53.94704222,,,,0.333,,,0.313,0.353,0.097292439,866,8901,0.080611588,0.11397329,0.067164179,189,2814,0.045717371,0.088610988,0.000385357,6,15570,,,2595,0.925,139.675,151,,,,,,,,3.284411893,,,,,,,,,3.292158391,3.437459097,,,,,,,,,3.473613446,0.029281176,,,,,1621.06,,,,,0.704039343,48245,68526,0.590928023,0.817150663,74161,,,65920.65957,82401.34043,,,,,,,,,,,,,77616,68272.34043,86959.65957,,,,,,0.443591258,751,1693,,,,,,,,0.239843044,,74161,,,4.885993485,3,614,,,,,,,,,,,,,,,,,,,,,,,,,,24.48481583,19,76025,13.70396555,40.38398017,24.99177902,,,,,,,,,,,,,23.63675685,12.92243492,39.65846164,,,,22.36106544,17,76025,13.02614465,35.80223192,,,,,,,,,,,,,22.07810128,12.61954251,35.85345329,,,,17.93908265,19,105914,10.80049962,28.01409971,,,,,,,,,,,,,18.79141529,11.31365954,29.34512271,,,,,,1300,,,15,-888,0.726618123,8981,12360,,,0.602,,,,,5.469458778,,,,,0.856079027,5633,6580,0.837575632,0.874582423,0.094513601,615,6507,0.066893222,0.12213398,0.868541033,5715,6580,0.839784043,0.897298024,15570,,,,,0.164996789,2569,15570,,,0.266602441,4151,15570,,,0.006807964,106,15570,,,0.004881182,76,15570,,,0.005459216,85,15570,,,0.000192678,3,15570,,,0.020680796,322,15570,,,0.947527296,14753,15570,,,0.005174731,77,14880,0,0.012233862,0.497174053,7741,15570,,,1,15475,15475,, -18,015,18015,IN,Carroll County,2024,1,6608.282165,268,55868,5226.380462,7990.183868,0,,,,2,,,,2,,,,2,,,,2,6586.39434,5176.739071,7996.049609,,,,,2,,0.162,,,0.137,0.19,3.808474524,,,2.985658427,4.657437037,5.246525355,,,4.226666027,6.315736045,0.07010582,106,1512,0.057235956,0.082975685,0,,,,,,,,,,,,,0.068230277,0.055055239,0.081405316,,,,,,,0.193,,,0.155,0.236,0.402,,,0.326,0.482,9,0.0044186,0.086,,,0.261,,,0.213,0.313,0.618240914,12554,20306,,,0.166155627,,,0.131937835,0.204472635,0.428571429,6,14,0.287681515,0.555967845,234.8,48,20444,,,18.11680572,76,4195,14.27398233,22.6758839,,,,,,,,,,,,,18.49405548,14.41702354,23.36612651,,,,,,,0.090124816,1473,16344,0.077018434,0.103231199,9.78282E-05,2,20444,,,10222,0.0003892,8,20555,,,2569.375,0.000778399,16,20555,,,1284.6875,2809,,,,,,,,,2741,0.39,,,,,,,,,0.39,0.49,,,,,,,,0.27,0.49,0.903180608,12892,14274,0.883822827,0.922538389,0.577859939,2657,4598,0.503401856,0.652318022,0.028776978,288,10008,,,0.126,549,,0.081914894,0.170085106,,,,,,,,,,0.252336449,0.067972465,0.436700433,0.098049415,0.055867281,0.140231548,3.684814024,117295,31832,3.256348187,4.11327986,0.154069767,689,4472,0.104964319,0.203175216,12.22852671,25,20444,,,76.16598249,77,101095,60.10900228,95.19440971,,,,,,,,,,,,,80.33317126,63.29340198,100.548943,,,,9,,,,,1,,,,,0.08,650,8125,0.059001994,0.100998006,0.057603973,0.037817805,0.077390141,0.016,0.006980913,0.025019087,0.011076923,0.000905371,0.021248476,0.867488931,8229,9486,0.833933672,0.90104419,,,,,,,,,,,,,0.778877888,0.720941143,0.836814633,0.432,,9486,0.3818441,0.4821559,79.49922699,,,78.20227251,80.79618146,,,,,,,,,,,,,79.38284035,78.07517481,80.69050588,,,,328.3338515,268,55868,286.3052969,370.3624061,,,,,,,,,,,,,334.0135471,290.4461304,377.5809639,,,,56.35245902,11,19520,28.1309445,100.8301153,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.114,,,0.098,0.132,0.171,,,0.148,0.196,0.098,,,0.084,0.114,28.8,5,17359,,,0.086,1740,,,,0.0044186,89.05687541,20155,,,19.6950549,12,60929,10.17672227,34.40329736,,,,,,,,,,,,,21.11337884,10.90959094,36.88082386,,,,0.376,,,0.358,0.394,0.098242073,1168,11889,0.082752711,0.113731434,0.070059625,329,4696,0.048612817,0.091506434,0.000778399,16,20555,,,1284.6875,0.944587629,183.25,194,,,,,,,,3.245127882,,,,,,,,,3.244979682,3.273123645,,,,,,,,,3.230374979,0.014934857,,,,,1574.9015,,,,,0.756753836,42018,55524,0.679991158,0.833516515,64731,,,57939.51064,71522.48936,,,,,,,90987,90224.44681,91749.55319,50268,32703.06383,67832.93617,62677,57308.14894,68045.85106,,,,,,0.46252505,1154,2495,,,85.66815767,,,,,0.257712688,,64731,,,2.719854941,3,1103,,,7.096174452,10,140921,3.402891476,13.05011747,,,,,,,,,,,,,,,,,,,13.43358317,14,101095,7.15281727,22.97183635,13.84836045,,,,,,,,,,,,,13.06531235,6.751037543,22.82247133,,,,11.87002325,12,101095,6.133414223,20.73454182,,,,,,,,,,,,,12.68418494,6.554103449,22.15671844,,,,14.90196635,21,140921,9.224552043,22.77923853,,,,,,,,,,,,,15.89223551,9.837544259,24.29297013,,,,11.90476191,,2100,,,17,8,0.61496114,9495,15440,,,0.654,,,,,3.374250195,,,,,0.794401908,6329,7967,0.769690216,0.8191136,0.059263077,460,7762,0.04167057,0.076855583,0.798920547,6365,7967,0.76215831,0.835682785,20555,,,,,0.216492338,4450,20555,,,0.207297495,4261,20555,,,0.008173194,168,20555,,,0.004621747,95,20555,,,0.002773048,57,20555,,,0.0002919,6,20555,,,0.051277062,1054,20555,,,0.926198005,19038,20555,,,0.003627883,70,19295,0,0.009633316,0.488202384,10035,20555,,,0.94568108,19203,20306,, -18,017,18017,IN,Cass County,2024,1,9045.649548,635,103602,7931.325305,10159.97379,0,,,,2,,,,2,,,,2,7437.391222,5236.609784,10251.4641,,9295.633011,7983.253691,10608.01233,,,,,2,,0.197,,,0.166,0.229,4.10493357,,,3.331895454,4.951684666,5.275515701,,,4.325709132,6.286836034,0.084255843,274,3252,0.074708821,0.093802864,0,,,,,,,0.157303371,0.081660899,0.232945842,0.072668113,0.055911735,0.089424491,0.084586466,0.072763421,0.096409512,,,,,,,0.223,,,0.182,0.267,0.4,,,0.329,0.475,8.2,0.026853129,0.112,,,0.325,,,0.274,0.381,0.740401373,28039,37870,,,0.162666404,,,0.130490928,0.199173742,0.125,4,32,0.04979288,0.226711962,463.2,174,37563,,,31.72016048,253,7976,27.81147085,35.62885011,,,,,,,,,,44.24379233,35.91924924,53.91901142,26.33063758,21.9689613,30.69231385,,,,,,,0.112306211,3383,30123,0.09681685,0.127795573,0.000452573,17,37563,,,2209.588235,0.000319659,12,37540,,,3128.333333,0.002397443,90,37540,,,417.1111111,3217,,,,,,,,,3283,0.46,,,,,,,,0.14,0.47,0.44,,,,,,,0.04,0.13,0.45,0.857219641,22328,26047,0.83847793,0.875961353,0.441068981,3862,8756,0.38932681,0.492811153,0.032384239,563,17385,,,0.187,1545,,0.132191489,0.241808511,,,,,,,0.233333333,0,0.786088772,0.222316865,0.119487624,0.325146106,0.124260355,0.087339768,0.161180942,4.134374261,104856,25362,3.666602289,4.602146232,0.278866588,2362,8470,0.208510307,0.349222869,11.44743498,43,37563,,,90.14311545,170,188589,76.5923392,103.6938917,,,,,,,,,,61.41711921,36.97711781,95.91043953,97.34728644,81.44722966,113.2473432,,,,8.7,,,,,0,,,,,0.105016722,1570,14950,0.081212275,0.128821169,0.077653442,0.055436782,0.099870101,0.015719064,0.007143395,0.024294733,0.019063545,0.009094025,0.029033066,0.826832812,14797,17896,0.802264391,0.851401232,,,,,,,,,,0.785745711,0.703900415,0.867591006,0.846309649,0.811429767,0.881189532,0.242,,17896,0.21083851,0.27316149,75.60780698,,,74.70883699,76.50677697,,,,,,,,,,79.52470818,75.12816139,83.92125497,75.33977012,74.32981656,76.34972367,,,,449.7813968,635,103602,413.2362962,486.3264974,,,,,,,,,,303.6696117,216.9460227,413.5118219,470.188411,428.6789666,511.6978554,,,,95.37939805,36,37744,66.8025578,132.0452906,,,,,,,,,,95.35615524,45.72698289,175.3633646,93.64058301,59.36009705,140.5068516,,,,10.14760148,33,3252,6.985141935,14.25100531,,,,,,,,,,,,,9.319664492,5.69269319,14.39346594,,,,,,,0.129,,,0.11,0.149,0.177,,,0.153,0.202,0.117,,,0.1,0.136,94.7,30,31694,,,0.112,4230,,,,0.026853129,1046.359021,38966,,,18.64346591,21,112640,11.54059924,28.49851805,,,,,,,,,,,,,21.66674269,13.04479447,33.83530262,,,,0.347,,,0.333,0.36,0.13011629,2842,21842,0.109860971,0.150371609,0.067087881,584,8705,0.045641072,0.088534689,0.001118807,42,37540,,,893.8095238,0.929655172,404.4,435,,,,,,,,2.956588372,,,,,,,,2.501510638,3.128242707,2.993172244,,,,,,,,2.834113351,3.064484967,0.121650546,,,,,-1099.7232,,,,,0.73548814,37796,51389,0.682928242,0.788048037,60452,,,52648.93617,68255.06383,27091,6684.361702,47497.6383,,,,61339,29770.48936,92907.51064,52282,43027.70213,61536.29787,57715,54251.34043,61178.65957,,,,,,0.520364016,3488,6703,,,86.48693538,,,,,0.243664395,,60452,,,3.629764065,8,2204,,,,,,,,,,,,,,,,,,,,,,,,,,15.46225922,30,188589,10.27455896,22.34726967,15.90760861,,,,,,,,,,,,,17.34533347,11.11348244,25.80848129,,,,9.544565166,18,188589,5.65671422,15.08452787,,,,,,,,,,,,,11.49238798,6.694739508,18.40042645,,,,15.87817658,42,264514,11.44359306,21.46268204,,,,,,,,,,,,,15.77053395,10.85570992,22.14769309,,,,12.75,,4000,,,39,12,0.56019167,15198,27130,,,0.672,,,,,75.15229092,,,,,0.74742819,11189,14970,0.722876035,0.771980345,0.086360806,1248,14451,0.062925005,0.109796606,0.811155645,12143,14970,0.782098742,0.840212547,37540,,,,,0.224374001,8423,37540,,,0.190996271,7170,37540,,,0.019792222,743,37540,,,0.013425679,504,37540,,,0.020324987,763,37540,,,0.002450719,92,37540,,,0.176718167,6634,37540,,,0.767661161,28818,37540,,,0.030163714,1076,35672,0.020795643,0.039531784,0.495391582,18597,37540,,,0.462001584,17496,37870,, -18,019,18019,IN,Clark County,2024,1,11163.45851,2336,338183,10492.79777,11834.11925,0,,,,2,,,,2,16440.05048,13577.65885,19302.44211,,4724.277771,3187.450373,6744.200272,,11372.06892,10611.73212,12132.40571,,,,,2,,0.16,,,0.136,0.189,3.733771624,,,2.98341114,4.537623578,5.178795074,,,4.295098581,6.145633633,0.084266294,843,10004,0.078822762,0.089709825,0,,,,,,,0.147878788,0.12365552,0.172102055,0.079768786,0.061713142,0.09782443,0.077728143,0.071799501,0.083656785,,,,0.106666667,0.07173522,0.141598114,0.191,,,0.153,0.231,0.392,,,0.33,0.458,8.4,0.044652838,0.095,,,0.261,,,0.216,0.305,0.875789682,106052,121093,,,0.179005753,,,0.146808071,0.217461607,0.098360656,6,61,0.047190021,0.166666225,435.9,535,122738,,,21.58366922,498,23073,19.68798203,23.47935642,,,,,,,31.54574133,24.59145296,39.85614639,31.29810159,23.94056776,40.20372084,19.49462612,17.42546746,21.56378477,,,,20.83333333,13.20654623,31.26022907,0.079776224,8171,102424,0.06905282,0.090499629,0.00038293,47,122738,,,2611.446809,0.000386358,48,124237,,,2588.270833,0.002422789,301,124237,,,412.7475083,3668,,,,,,,5249,,3619,0.45,,,,,,0.26,0.44,0.21,0.46,0.49,,,,,,0.44,0.39,0.38,0.49,0.905244648,76705,84734,0.894499622,0.915989674,0.629869934,20872,33137,0.590685307,0.66905456,0.02715457,1709,62936,,,0.127,3341,,0.08887234,0.16512766,0.060869565,0,0.520539196,0.262135922,0,0.677500606,0.253410283,0.1528707,0.353949866,0.247402847,0.161317293,0.333488401,0.090673843,0.064499369,0.116848317,3.743698746,124171,33168,3.478727349,4.008670142,0.226882923,6085,26820,0.189862224,0.263903623,8.473333442,104,122738,,,105.4421254,627,594639,97.18865776,113.695593,,,,,,,141.4516742,109.6231046,179.6386261,,,,111.7555409,102.3985791,121.1125027,,,,7.3,,,,,1,,,,,0.098278734,4425,45025,0.085292145,0.111265323,0.079407806,0.067414739,0.091400874,0.01521377,0.008745475,0.021682065,0.008661855,0.004753428,0.012570281,0.807756423,49425,61188,0.785514813,0.829998033,,,,0.728009259,0.62696138,0.829057138,0.645539345,0.567349269,0.72372942,0.770411496,0.674579534,0.866243458,0.789671961,0.767764624,0.811579299,0.3,,61188,0.277709275,0.322290725,73.8189445,,,73.30705492,74.33083409,,,,,,,69.86254313,67.83220978,71.89287647,,,,73.58459747,73.02143113,74.14776381,,,,538.3820939,2336,338183,515.7886947,560.9754931,,,,,,,723.4624124,626.0266435,820.8981813,246.4943656,162.4413401,358.6363605,546.2890463,521.6079619,570.9701306,,,,49.99741393,58,116006,37.96513256,64.63325151,,,,,,,,,,,,,56.03548914,41.31614619,74.294929,,,,6.685292357,67,10022,5.181009751,8.490084976,,,,,,,,,,,,,6.68432337,5.007016892,8.743259545,,,,,,,0.112,,,0.096,0.129,0.168,,,0.145,0.19,0.103,,,0.088,0.12,237,245,103383,,,0.095,11400,,,,0.044652838,4922.171659,110232,,,47.73720116,172,360306,40.60294333,54.87145899,,,,,,,85.49639205,55.32875705,126.2095404,,,,48.705911,40.75061221,56.6612098,,,,0.383,,,0.366,0.399,0.091129803,6869,75376,0.07802342,0.104236186,0.050195636,1424,28369,0.035897764,0.064493508,0.001255665,156,124237,,,796.3910256,0.934568106,1125.22,1204,,,0.045412073,243,5351,0.018534365,0.07228978,3.150430551,,,,,,,2.773904497,2.871172512,3.260365076,3.184797014,,,,,,,2.673857646,2.907971676,3.33275129,0.091007148,,,,,-3164.8455,,,,,0.83785439,46516,55518,0.804671176,0.871037603,68493,,,63509,73477,49391,5286.829787,93495.17021,55655,17609.55319,93700.44681,50703,38789.29787,62616.70213,68287,54070.14894,82503.85106,71592,69273.3617,73910.6383,,,,,,0.407066213,7777,19105,,,45.79518728,,,,,0.288482035,,68493,,,5.900919446,43,7287,,,4.60025592,38,826041,3.255414882,6.314210665,,,,,,,24.80081843,14.17581061,40.27497535,,,,2.776535643,1.671655833,4.335904343,,,,15.3771666,94,594639,12.36505784,18.90114841,15.80791035,,,,,,,,,,,,,17.45904777,13.92602026,21.61548914,,,,15.80791035,94,594639,12.77440067,19.34487878,,,,,,,23.2234092,11.5930422,41.55309402,,,,16.11074403,12.75502777,20.07879401,,,,12.71123346,105,826041,10.2798743,15.14259262,,,,,,,20.15066497,10.72938043,34.4582508,,,,12.56747712,10.05235951,15.52073201,,,,22.28813559,,11800,,,263,0,0.653997853,57869,88485,,,0.724,,,,,89.74071999,,,,,0.744983697,35643,47844,0.73199978,0.757967614,0.084316202,3939,46717,0.071759656,0.096872747,0.854255497,40871,47844,0.834711079,0.873799916,124237,,,,,0.216497501,26897,124237,,,0.17014255,21138,124237,,,0.082640437,10267,124237,,,0.004620202,574,124237,,,0.013281068,1650,124237,,,0.001287861,160,124237,,,0.061825382,7681,124237,,,0.812366686,100926,124237,,,0.012224468,1397,114279,0.008397868,0.016051068,0.509002954,63237,124237,,,0.213307128,25830,121093,, -18,021,18021,IN,Clay County,2024,1,8734.533195,440,72933,7378.828902,10090.23749,0,,,,2,,,,2,,,,2,,,,2,9028.418103,7612.594516,10444.24169,,,,,2,,0.162,,,0.137,0.193,3.818492459,,,3.015228214,4.770082023,5.519734323,,,4.462476139,6.675860395,0.083801498,179,2136,0.072050463,0.095552533,0,,,,,,,,,,,,,0.084425036,0.072421764,0.096428309,,,,,,,0.203,,,0.163,0.248,0.411,,,0.334,0.494,8,0.055556266,0.108,,,0.269,,,0.219,0.325,0.525428852,13906,26466,,,0.168914821,,,0.135175954,0.20794912,0.071428571,2,28,0.013017947,0.17852931,318.1,84,26410,,,31.83315038,174,5466,27.10315118,36.56314959,,,,,,,,,,,,,32.4460851,27.52500835,37.36716185,,,,,,,0.083114938,1776,21368,0.071200045,0.095029832,0.000492238,13,26410,,,2031.538462,0.000227454,6,26379,,,4396.5,0.000454907,12,26379,,,2198.25,3520,,,,,,,,,3536,0.4,,,,,,,,,0.4,0.38,,,,,,,,,0.38,0.914497736,16760,18327,0.896499008,0.932496463,0.562413422,3654,6497,0.489795368,0.635031476,0.03342166,391,11699,,,0.17,998,,0.108042553,0.231957447,,,,,,,,,,,,,0.11620509,0.075773956,0.156636224,3.889795918,118172,30380,3.384138269,4.395453568,0.224196967,1375,6133,0.144776204,0.30361773,14.38848921,38,26410,,,73.14341443,96,131249,59.24640052,89.32062797,,,,,,,,,,,,,74.7621926,60.41546178,91.4899896,,,,8.9,,,,,0,,,,,0.077474892,810,10455,0.054107157,0.100842628,0.055389654,0.034333229,0.076446079,0.020564323,0.007544596,0.033584051,0.0023912,4.33197E-05,0.004739081,0.831207996,9647,11606,0.79154255,0.870873442,,,,,,,,,,,,,0.80874399,0.758293575,0.859194405,0.478,,11606,0.427099552,0.528900448,75.55008488,,,74.47135543,76.62881433,,,,,,,,,,,,,75.22802211,74.11732905,76.33871517,,,,433.920264,440,72933,391.211428,476.6291001,,,,,,,,,,,,,445.6272236,401.5285066,489.7259406,,,,83.64382937,22,26302,52.41914255,126.6377629,,,,,,,,,,,,,85.64786492,53.0173783,130.9218595,,,,9.095043202,20,2199,5.55548867,14.04655657,,,,,,,,,,,,,,,,,,,,,,0.116,,,0.099,0.135,0.176,,,0.152,0.203,0.1,,,0.085,0.117,86,19,22106,,,0.108,2840,,,,0.055556266,1493.907981,26890,,,,,,,,,,,,,,,,,,,,,,,,,,0.343,,,0.326,0.361,0.092941407,1426,15343,0.077452045,0.108430768,0.059390302,376,6331,0.041517961,0.077262642,0.000606543,16,26379,,,1648.6875,0.87,231.42,266,,,,,,,,3.392468507,,,,,,,,,3.415685065,3.60716784,,,,,,,,,3.603708547,0.024578323,,,,,357.0957,,,,,0.727447217,42069,57831,0.656340352,0.798554082,59057,,,54412.57447,63701.42553,,,,,,,,,,,,,68096,62329.19149,73862.80851,,,,,,0.468609866,1881,4014,,,,,,,,0.263118682,,59057,,,2.495321273,4,1603,,,,,,,,,,,,,,,,,,,,,,,,,,16.6108591,22,131249,10.28238359,25.39146262,16.76203247,,,,,,,,,,,,,17.28895415,10.70213511,26.42800294,,,,14.47630077,19,131249,8.715678721,22.60653687,,,,,,,,,,,,,15.11150702,9.098114374,23.5984901,,,,21.18862768,39,184061,15.0671856,28.96555157,,,,,,,,,,,,,21.51024567,15.22193006,29.52449277,,,,19.28571429,,2800,,,38,16,0.611820449,12267,20050,,,0.673,,,,,47.97830066,,,,,0.776050662,8088,10422,0.742349932,0.809751392,0.058516511,583,9963,0.037376382,0.07965664,0.860679332,8970,10422,0.834316541,0.887042124,26379,,,,,0.22768111,6006,26379,,,0.191743432,5058,26379,,,0.008339967,220,26379,,,0.003866712,102,26379,,,0.003828803,101,26379,,,0.000303272,8,26379,,,0.020508738,541,26379,,,0.949012472,25034,26379,,,0.00145214,36,24791,0,0.006008089,0.500284317,13197,26379,,,0.599977329,15879,26466,, -18,023,18023,IN,Clinton County,2024,1,9090.733517,535,90401,7920.132907,10261.33413,0,,,,2,,,,2,,,,2,4501.322224,2710.090025,7029.372241,1,9885.968037,8504.597885,11267.33819,,,,,2,,0.179,,,0.152,0.209,3.89532746,,,3.072061731,4.767852346,4.996475933,,,4.000745497,6.019685759,0.079560586,239,3004,0.06988332,0.089237852,0,,,,,,,,,,0.055033557,0.038657855,0.071409259,0.088288288,0.076486172,0.100090405,,,,,,,0.2,,,0.162,0.242,0.375,,,0.302,0.452,8.8,0.011805369,0.094,,,0.288,,,0.241,0.343,0.68773727,22826,33190,,,0.16793501,,,0.133905534,0.205316702,0.17948718,7,39,0.101481343,0.270521787,432.5,143,33065,,,27.40798747,210,7662,23.70097906,31.11499588,,,,,,,,,,30.70827142,23.54385562,39.36661807,25.9763851,21.71876638,30.23400383,,,,,,,0.121212121,3292,27159,0.10453127,0.137892972,0.000151217,5,33065,,,6613,0.000456718,15,32843,,,2189.533333,0.000487166,16,32843,,,2052.6875,2393,,,,,,,,,2387,0.44,,,,,,,,0.33,0.44,0.51,,,,,,,,0.3,0.51,0.869664812,18603,21391,0.850837831,0.888491794,0.471664091,3662,7764,0.415462671,0.527865511,0.025417827,438,17232,,,0.145,1217,,0.094957447,0.195042553,,,,,,,0.121495327,0,0.550584971,0.110229645,0.047559262,0.172900028,0.107397353,0.064746742,0.150047965,3.445533482,104758,30404,3.095199757,3.795867208,0.176690029,1563,8846,0.131779258,0.221600801,12.09738394,40,33065,,,95.53924197,155,162237,80.49840467,110.5800793,,,,,,,,,,,,,109.8093861,91.93580666,127.6829654,,,,9.1,,,,,0,,,,,0.100452861,1220,12145,0.079198342,0.121707381,0.076840364,0.058450814,0.095229913,0.019349527,0.008902358,0.029796695,0.007410457,0.002786046,0.012034868,0.813013967,12457,15322,0.786812614,0.83921532,,,,,,,,,,0.769693325,0.733867462,0.805519188,0.799960506,0.756437719,0.843483292,0.283,,15322,0.249320661,0.316679339,75.28084909,,,74.3279543,76.23374387,,,,,,,,,,82.64119526,77.30517109,87.97721943,74.56889982,73.50913617,75.62866347,,,,472.2104906,535,90401,430.7335821,513.6873991,,,,,,,,,,229.2799597,140.0501559,354.104302,504.4925324,457.9860493,550.9990154,,,,59.12230255,22,37211,37.05163224,89.51187656,,,,,,,,,,,,,65.19154811,37.97647916,104.3779837,,,,6.594131223,20,3033,4.027866662,10.18410086,,,,,,,,,,,,,,,,,,,,,,0.121,,,0.104,0.14,0.173,,,0.149,0.198,0.109,,,0.093,0.127,103.8,28,26976,,,0.094,3110,,,,0.011805369,392.2215704,33224,,,32.76338692,32,97670,22.4101324,46.25212663,,,,,,,,,,,,,37.88213605,25.55891811,54.07910471,,,,0.367,,,0.351,0.382,0.140007548,2597,18549,0.119752228,0.160262867,0.081804112,740,9046,0.056782836,0.106825389,0.000274031,9,32843,,,3649.222222,0.887265136,425,479,,,,,,,,3.013865314,,,,,,,,2.807180712,3.119649013,3.2821558,,,,,,,,3.210957367,3.326245026,0.221357934,,,,,-0.237725,,,,,0.818536215,40944,50021,0.726778438,0.910293992,60916,,,53350.04255,68481.95745,,,,,,,,,,49193,42306.19149,56079.80851,60705,57192.48936,64217.51064,,,,,,0.532664144,3237,6077,,,,,,,,0.273212292,,60916,,,4.385964912,10,2280,,,,,,,,,,,,,,,,,,,,,,,,,,22.71759794,35,162237,15.63774912,31.90395383,21.57337722,,,,,,,,,,,,,24.97902837,16.85324555,35.65911619,,,,13.56040854,22,162237,8.498235835,20.53062149,,,,,,,,,,,,,15.14612221,9.251644934,23.39195734,,,,21.11718719,48,227303,15.57014682,27.99832654,,,,,,,,,,,,,22.58720274,16.27886899,30.5313364,,,,13,,4000,,,28,24,0.589126479,12949,21980,,,0.687,,,,,66.67564038,,,,,0.726942336,9001,12382,0.701271137,0.752613534,0.069059182,839,12149,0.048471922,0.089646441,0.821595865,10173,12382,0.79679682,0.84639491,32843,,,,,0.26084706,8567,32843,,,0.167646074,5506,32843,,,0.008464513,278,32843,,,0.005602412,184,32843,,,0.005419724,178,32843,,,0.000517614,17,32843,,,0.178241939,5854,32843,,,0.7981305,26213,32843,,,0.033448523,1026,30674,0.024835536,0.042061511,0.500137016,16426,32843,,,0.49457668,16415,33190,, -18,025,18025,IN,Crawford County,2024,1,10605.92404,244,29322,8461.219118,12750.62896,0,,,,2,,,,2,,,,2,,,,2,10774.71769,8563.308451,12986.12692,,,,,2,,0.211,,,0.178,0.245,4.43910373,,,3.534269873,5.40639071,5.702694478,,,4.555144505,6.900402803,0.102464332,79,771,0.081058057,0.123870607,0,,,,,,,,,,,,,0.099337748,0.078001369,0.120674128,,,,,,,0.252,,,0.206,0.298,0.427,,,0.344,0.507,7.4,0.054922247,0.135,,,0.325,,,0.271,0.382,0.739597188,7785,10526,,,0.149493109,,,0.117471351,0.184255764,0.1,1,10,0.005279615,0.302965499,171.2,18,10514,,,30.12912482,63,2091,23.15204677,38.54823878,,,,,,,,,,,,,30.69954706,23.48272097,39.4348525,,,,,,,0.107969458,905,8382,0.092480097,0.12345882,,0,10514,,,,,0,10536,,,,0.000664389,7,10536,,,1505.142857,2367,,,,,,,,,2377,0.4,,,,,,,,,0.4,0.39,,,,,,,,,0.39,0.856533902,6430,7507,0.819675004,0.8933928,0.450722733,1029,2283,0.360952739,0.540492727,0.034739454,168,4836,,,0.245,528,,0.160404255,0.329595745,,,,,,,,,,,,,0.30976431,0.205630202,0.413898418,4.80393571,93254,19412,3.42245438,6.18541704,0.07756721,176,2269,0.029050447,0.126083974,3.804451208,4,10514,,,88.94103399,47,52844,65.35052639,118.2727204,,,,,,,,,,,,,88.94159502,64.87460972,119.0108519,,,,8.8,,,,,0,,,,,0.110571081,455,4115,0.079511123,0.14163104,0.083333333,0.050447975,0.116218691,0.022600243,0.010217212,0.034983274,0.014337789,0.004251047,0.02442453,0.768403833,3288,4279,0.710095124,0.826712541,,,,,,,,,,,,,0.781261261,0.722283282,0.84023924,0.668,,4279,0.565969266,0.770030734,74.17821397,,,72.53958381,75.81684413,,,,,,,,,,,,,73.87543597,72.22297524,75.52789669,,,,552.8421071,244,29322,477.9768412,627.7073729,,,,,,,,,,,,,562.9178667,485.9533806,639.8823527,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.141,,,0.121,0.161,0.195,,,0.169,0.223,0.122,,,0.104,0.14,89.4,8,8947,,,0.135,1410,,,,0.054922247,588.3820291,10713,,,47.2887768,15,31720,26.4671694,77.99564588,,,,,,,,,,,,,49.45761482,27.68105158,81.57281437,,,,0.358,,,0.34,0.375,0.12192339,748,6135,0.102859561,0.14098722,0.071549534,169,2362,0.048911236,0.094187832,0.000474563,5,10536,,,2107.2,0.875,84,96,,,,,,,,3.124498413,,,,,,,,,,3.580381398,,,,,,,,,3.57687985,,,,,,-3719.275,,,,,0.730994843,37136,50802,0.596841268,0.865148418,53547,,,45782.06383,61311.93617,,,,,,,,,,36029,11953.76596,60104.23404,47317,41658.61702,52975.38298,,,,,,0.603576751,810,1342,,,,,,,,0.229798121,,53547,,,3.262642741,2,613,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20.30704248,15,73866,11.36569752,33.49337838,,,,,,,,,,,,,21.16909876,11.84818388,34.91520911,,,,,,1100,,,-888,0,0.601459854,4944,8220,,,0.507,,,,,2.955813886,,,,,0.793819188,3442,4336,0.750737901,0.836900476,0.102564103,424,4134,0.065788262,0.139339943,0.662361624,2872,4336,0.610441362,0.714281885,10536,,,,,0.208428246,2196,10536,,,0.209567198,2208,10536,,,0.007403189,78,10536,,,0.005125285,54,10536,,,0.002657555,28,10536,,,0.001138952,12,10536,,,0.018792711,198,10536,,,0.952828398,10039,10536,,,0.001105306,11,9952,0,0.0102624,0.48690205,5130,10536,,,1,10526,10526,, -18,027,18027,IN,Daviess County,2024,1,7369.182702,468,93629,6376.361375,8362.004028,0,,,,2,,,,2,,,,2,,,,2,7448.641674,6404.12169,8493.161658,,,,,2,,0.198,,,0.165,0.235,4.338542024,,,3.437261953,5.320126506,5.317613648,,,4.270079488,6.429406225,0.064239272,247,3845,0.05648947,0.071989074,0,,,,,,,0.130841122,0.066943323,0.19473892,0.085409253,0.052730252,0.118088254,0.060410557,0.052413976,0.068407139,,,,,,,0.233,,,0.186,0.285,0.356,,,0.283,0.431,8.4,0.0265342,0.101,,,0.308,,,0.253,0.366,0.517120518,17262,33381,,,0.167456743,,,0.133481598,0.205332946,0.125,3,24,0.040232942,0.245512437,278.5,93,33397,,,20.30456853,164,8077,17.19694849,23.41218856,,,,,,,,,,46.77419355,31.32541151,67.17554426,17.99775028,14.87979912,21.11570144,,,,,,,0.197826474,5552,28065,0.171613708,0.22403924,0.000419199,14,33397,,,2385.5,0.00029924,10,33418,,,3341.8,0.000867796,29,33418,,,1152.344828,3071,,,,,,,,,3122,0.42,,,,,,,,,0.42,0.36,,,,,,,,,0.36,0.770465798,16028,20803,0.749567231,0.791364365,0.444117647,3624,8160,0.38975821,0.498477084,0.02303596,385,16713,,,0.136,1319,,0.082382979,0.189617021,,,,,,,,,,0.123629113,0,0.26005271,0.098164106,0.062986991,0.133341222,4.476393763,123732,27641,3.9958177,4.956969826,0.090006144,879,9766,0.061140772,0.118871515,14.07312034,47,33397,,,65.46035445,109,166513,53.17122341,77.74948548,,,,,,,,,,,,,67.31384751,54.25032193,80.3773731,,,,9,,,,,0,,,,,0.143549097,1630,11355,0.114957969,0.172140226,0.082352941,0.061056929,0.103648954,0.056362836,0.034025064,0.078700608,0.019374725,0.010883328,0.027866122,0.688380164,10314,14983,0.654915262,0.721845066,,,,,,,,,,,,,0.69328802,0.659638492,0.726937549,0.255,,14983,0.216649587,0.293350413,76.49194471,,,75.62948529,77.35440413,,,,,,,,,,,,,76.32407786,75.43507288,77.21308285,,,,417.0798033,468,93629,377.9103591,456.2492474,,,,,,,,,,,,,423.5072033,382.6286737,464.385733,,,,44.67960024,19,42525,26.90003801,69.77273033,,,,,,,,,,,,,40.90314136,22.89317772,67.46351132,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.133,,,0.113,0.155,0.186,,,0.16,0.213,0.11,,,0.094,0.127,117.9,31,26301,,,0.101,3350,,,,0.0265342,839.7543466,31648,,,,,,,,,,,,,,,,,,,,,,,,,,0.354,,,0.337,0.37,0.190541807,3457,18143,0.164329041,0.216754573,0.208871745,2166,10370,0.156446214,0.261297277,0.001316656,44,33418,,,759.5,0.941266026,293.675,312,,,0.111665005,224,2006,0.041013168,0.182316842,3.255894927,,,,,,,,2.780990952,3.361369873,3.438041263,,,,,,,,3.04526366,3.529782976,0.121427456,,,,,-2132.951933,,,,,0.692906212,38026,54879,0.603215868,0.782596556,63777,,,57729,69825,,,,,,,52181,9554.276596,94807.7234,38417,3636.234043,73197.76596,65073,59412.23404,70733.76596,,,,,,0.490191757,2224,4537,,,63.87665099,,,,,0.253539677,,63777,,,2.606105733,7,2686,,,,,,,,,,,,,,,,,,,,,,,,,,10.39742562,17,166513,5.943027116,16.88476781,10.20941308,,,,,,,,,,,,,10.2905653,5.759551283,16.97272253,,,,6.606090816,11,166513,3.297736734,11.82012126,,,,,,,,,,,,,6.599396815,3.164667289,12.13652571,,,,13.77007419,32,232388,9.41872055,19.43923614,,,,,,,,,,,,,13.19205273,8.766023235,19.06618921,,,,7.045454546,,4400,,,21,10,0.522008734,11954,22900,,,0.691,,,,,38.12401297,,,,,0.703170774,8161,11606,0.676911412,0.729430135,0.075285378,831,11038,0.057000811,0.093569945,0.792951921,9203,11606,0.764331346,0.821572497,33418,,,,,0.294242624,9833,33418,,,0.159464959,5329,33418,,,0.021784667,728,33418,,,0.007810162,261,33418,,,0.004847687,162,33418,,,0.001226884,41,33418,,,0.060446466,2020,33418,,,0.897659944,29998,33418,,,0.018384147,565,30733,0.010493462,0.026274833,0.496379197,16588,33418,,,0.612953477,20461,33381,, -18,029,18029,IN,Dearborn County,2024,1,8484.703946,815,139442,7547.074843,9422.333048,0,,,,2,,,,2,,,,2,,,,2,8628.059839,7659.823321,9596.296357,,,,,2,,0.152,,,0.126,0.182,3.654267768,,,2.864917207,4.473539583,4.813986318,,,3.876383298,5.844542849,0.06534871,238,3642,0.05732215,0.073375269,0,,,,,,,,,,,,,0.065811966,0.057608978,0.074014954,,,,,,,0.187,,,0.148,0.231,0.367,,,0.298,0.438,8.1,0.0827756,0.092,,,0.242,,,0.196,0.293,0.566427909,28706,50679,,,0.168832951,,,0.136811231,0.207861158,0.147058824,5,34,0.068949596,0.245589162,139.7,71,50816,,,14.77401871,169,11439,12.54655127,17.00148614,,,,,,,,,,,,,15.24504302,12.90463853,17.58544752,,,,,,,0.072912869,3000,41145,0.062189465,0.083636273,0.000452613,23,50816,,,2209.391304,0.000234659,12,51138,,,4261.5,0.001799054,92,51138,,,555.8478261,3424,,,,,,,,,3434,0.46,,,,,,,,,0.46,0.53,,,,,,,,,0.53,0.911209015,32265,35409,0.896896295,0.925521735,0.662048449,7789,11765,0.588299288,0.73579761,0.02608228,679,26033,,,0.12,1310,,0.084255319,0.155744681,,,,,,,,,,,,,0.119768696,0.081050087,0.158487304,4.018922722,134228,33399,3.484988214,4.552857231,0.190802959,2141,11221,0.136520686,0.245085232,10.82336272,55,50816,,,85.80352596,214,249407,74.30732573,97.2997262,,,,,,,,,,,,,88.02119183,76.14431949,99.89806417,,,,9.5,,,,,1,,,,,0.087914938,1695,19280,0.067134639,0.108695236,0.07785059,0.058227997,0.097473182,0.009076764,0.003791857,0.01436167,0.004149378,2.1089472E-6,0.008296646,0.824628635,20873,25312,0.785175666,0.864081603,,,,,,,,,,,,,0.771232237,0.720955392,0.821509082,0.514,,25312,0.468520054,0.559479947,76.56384836,,,75.7731522,77.35454451,,,,,,,,,,,,,76.30567198,75.50423728,77.10710669,,,,416.2647809,815,139442,385.9900365,446.5395253,,,,,,,,,,,,,422.5206583,391.4892687,453.5520478,,,,39.03681788,19,48672,23.50271442,60.9608267,,,,,,,,,,,,,41.6858641,25.0976133,65.09764052,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.109,,,0.092,0.128,0.166,,,0.142,0.192,0.096,,,0.081,0.112,44,19,43229,,,0.092,4670,,,,0.0827756,4142.670442,50047,,,29.9804128,45,150098,21.86791882,40.11615111,,,,,,,,,,,,,31.23698459,22.78447091,41.79754304,,,,0.354,,,0.333,0.373,0.081349935,2437,29957,0.068243552,0.094456318,0.052248285,617,11809,0.036758924,0.067737647,0.000821307,42,51138,,,1217.571429,0.945871492,640.355,677,,,,,,,,3.311447769,,,,,,,,,3.313376739,3.513821105,,,,,,,,,3.526329356,0.036051032,,,,,606.2318667,,,,,0.785579626,47504,60470,0.718473698,0.852685554,77621,,,69833.42553,85408.57447,,,,,,,,,,,,,80808,77270.46809,84345.53192,,,,,,0.283853821,2136,7525,,,86.06506807,,,,,0.219244792,,77621,,,3.420752566,9,2631,,,3.159167473,11,348193,1.57704502,5.652623262,,,,,,,,,,,,,3.284386029,1.639553672,5.876673847,,,,24.29753739,56,249407,18.14656309,31.86298766,22.45325913,,,,,,,,,,,,,25.2306972,18.84349147,33.08670259,,,,12.02853168,30,249407,8.115599811,17.1714769,,,,,,,,,,,,,12.5148614,8.443724432,17.86574282,,,,12.34947285,43,348193,8.937374735,16.63465889,,,,,,,,,,,,,11.94322192,8.532412842,16.26327846,,,,22.59259259,,5400,,,90,32,0.663781381,25383,38240,,,0.741,,,,,35.50154765,,,,,0.831584233,16561,19915,0.809843022,0.853325444,0.076187539,1482,19452,0.056009335,0.096365742,0.87722822,17470,19915,0.856774398,0.897682042,51138,,,,,0.217841918,11140,51138,,,0.192616059,9850,51138,,,0.007509093,384,51138,,,0.002503031,128,51138,,,0.004830068,247,51138,,,0.000743087,38,51138,,,0.015937268,815,51138,,,0.957096484,48944,51138,,,0.001707337,82,48028,0,0.004403341,0.49726231,25429,51138,,,0.602103435,30514,50679,, -18,031,18031,IN,Decatur County,2024,1,9977.276464,450,73801,8530.873386,11423.67954,0,,,,2,,,,2,,,,2,,,,2,10026.84579,8554.362974,11499.32862,,,,,2,,0.155,,,0.128,0.182,3.63531884,,,2.793413349,4.455064306,5.256063487,,,4.181008012,6.386166763,0.067078553,152,2266,0.056778475,0.07737863,0,,,,,,,,,,,,,0.068181818,0.057542065,0.078821572,,,,,,,0.19,,,0.147,0.231,0.403,,,0.324,0.484,8.3,0.042517835,0.098,,,0.256,,,0.204,0.307,0.550695074,14578,26472,,,0.177962571,,,0.14281419,0.218875864,0.125,2,16,0.026484325,0.278054433,315.3,83,26320,,,27.19135281,161,5921,22.99111434,31.39159128,,,,,,,,,,,,,27.49638206,23.12508993,31.86767418,,,,,,,0.072719746,1581,21741,0.061996342,0.08344315,0.000607903,16,26320,,,1645,0.000378558,10,26416,,,2641.6,0.000416414,11,26416,,,2401.454546,2643,,,,,,,,,2664,0.43,,,,,,,,,0.43,0.31,,,,,,,,,0.31,0.911547912,16324,17908,0.889758528,0.933337295,0.633988985,4029,6355,0.54561314,0.72236483,0.02559365,374,14613,,,0.136,825,,0.083574468,0.188425532,,,,,,,,,,0.348739496,0.085255935,0.612223057,0.104038089,0.046359117,0.16171706,3.817298083,126051,33021,3.415525167,4.219070999,0.132042254,825,6248,0.085387296,0.178697211,14.43768997,38,26320,,,63.16074409,84,132994,50.37948309,78.19729895,,,,,,,,,,,,,65.87510715,52.46915513,81.66210657,,,,8.7,,,,,1,,,,,0.080078125,820,10240,0.056038643,0.104117607,0.068139421,0.044357477,0.091921364,0.008300781,0.001606042,0.014995521,0.00390625,0,0.008248997,0.807765512,10610,13135,0.768231634,0.84729939,,,,,,,,,,,,,0.813278304,0.777915721,0.848640886,0.291,,13135,0.239849152,0.342150848,74.46280045,,,73.35640647,75.56919442,,,,,,,,,,,,,74.32239471,73.20579437,75.43899504,,,,466.2674262,450,73801,421.262618,511.2722344,,,,,,,,,,,,,472.7760855,426.4456802,519.1064908,,,,68.46600123,19,27751,41.22100524,106.918142,,,,,,,,,,,,,66.01941748,38.45874357,105.7034828,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.111,,,0.094,0.129,0.17,,,0.145,0.195,0.098,,,0.082,0.115,86.6,19,21933,,,0.098,2590,,,,0.042517835,1094.409069,25740,,,36.4949725,29,79463,24.44125585,52.41286818,,,,,,,,,,,,,38.55357618,25.81993504,55.36936644,,,,0.342,,,0.322,0.36,0.081882988,1275,15571,0.067585115,0.09618086,0.051617874,335,6490,0.034937023,0.068298725,0.00090854,24,26416,,,1100.666667,0.975,308.1,316,,,0.165387894,194,1173,0.058152323,0.272623465,3.465304017,,,,,,,,,3.49121107,3.589222106,,,,,,,,,3.596171955,0.022686184,,,,,1617.6905,,,,,0.762696524,45504,59662,0.675793784,0.849599264,65847,,,57102.65957,74591.34043,,,,147781,92248.06383,203313.9362,,,,228559,40617.04255,416500.9575,70359,64545.7234,76172.2766,,,,,,0.425787106,1704,4002,,,,,,,,0.244065789,,65847,,,3.539823009,6,1695,,,,,,,,,,,,,,,,,,,,,,,,,,11.03618544,16,132994,6.176869213,18.20250955,12.03061792,,,,,,,,,,,,,11.61548184,6.501097009,19.15797086,,,,,,,,,,,,,,,,,,,,,,,,,,,14.50731545,27,186113,9.560412294,21.10738231,,,,,,,,,,,,,14.1569267,9.161616522,20.89841652,,,,16.89655172,,2900,,,34,15,0.61759236,12287,19895,,,0.697,,,,,48.62181357,,,,,0.736433356,7586,10301,0.701088291,0.771778421,0.075638605,761,10061,0.051201391,0.100075818,0.862537618,8885,10301,0.842582652,0.882492584,26416,,,,,0.233154149,6159,26416,,,0.176938219,4674,26416,,,0.006889764,182,26416,,,0.003066323,81,26416,,,0.01476378,390,26416,,,0.000492126,13,26416,,,0.024984858,660,26416,,,0.940755603,24851,26416,,,4.03372E-05,1,24791,0,0.004511853,0.497047244,13130,26416,,,0.526707465,13943,26472,, -18,033,18033,IN,De Kalb County,2024,1,8707.990749,685,121777,7698.918112,9717.063385,0,,,,2,,,,2,,,,2,,,,2,9063.775709,7993.894293,10133.65713,,,,,2,,0.162,,,0.139,0.191,3.744045612,,,2.951714997,4.56146042,5.587718775,,,4.578588583,6.571565848,0.068632708,256,3730,0.060518844,0.076746572,0,,,,,,,,,,,,,0.068955812,0.0606242,0.077287424,,,,,,,0.203,,,0.163,0.244,0.376,,,0.3,0.447,8,0.088495171,0.093,,,0.277,,,0.227,0.328,0.613590662,26547,43265,,,0.189668387,,,0.152063186,0.229273609,0.181818182,6,33,0.096932784,0.281792641,339.2,147,43333,,,23.85935538,228,9556,20.76231153,26.95639922,,,,,,,,,,23.0125523,11.4877832,41.17581279,24.30951838,21.0448233,27.57421345,,,,,,,0.084494895,3037,35943,0.072580001,0.096409788,0.000461542,20,43333,,,2166.65,0.000434474,19,43731,,,2301.631579,0.000640278,28,43731,,,1561.821429,2497,,,,,,,,,2493,0.42,,,,,,,,,0.42,0.48,,,,,,,,0.36,0.48,0.913542803,26807,29344,0.89850054,0.928585065,0.52752251,5683,10773,0.473008325,0.582036695,0.026457379,595,22489,,,0.117,1196,,0.076489362,0.157510638,,,,,,,,,,0.195402299,0.011582168,0.37922243,0.148802677,0.111138826,0.186466528,3.64657214,118561,32513,3.322090644,3.971053637,0.171027502,1791,10472,0.126139891,0.215915113,14.07703136,61,43333,,,70.19488316,152,216540,59.03551173,81.35425459,,,,,,,,,,,,,73.09193504,61.39478929,84.78908079,,,,8.8,,,,,0,,,,,0.080745342,1365,16905,0.0625512,0.098939483,0.065913819,0.050402194,0.081425443,0.011239278,0.004661269,0.017817288,0.005619639,0,0.011757238,0.845436912,17870,21137,0.82448375,0.866390073,,,,,,,,,,0.688946015,0.56897531,0.808916721,0.865344763,0.842625111,0.888064414,0.252,,21137,0.220747527,0.283252473,75.9300706,,,75.10121572,76.75892547,,,,,,,,,,,,,75.58983825,74.73171908,76.44795742,,,,429.0645545,685,121777,395.6416335,462.4874756,,,,,,,,,,,,,439.404745,404.7856852,474.0238048,,,,69.91326386,32,45771,47.82062072,98.69666837,,,,,,,,,,,,,73.65869886,50.04751219,104.5526434,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.114,,,0.097,0.133,0.174,,,0.15,0.199,0.099,,,0.084,0.115,64,23,35959,,,0.093,4010,,,,0.088495171,3736.531589,42223,,,22.22596913,29,130478,14.88508035,31.92019914,,,,,,,,,,,,,23.49414672,15.73439878,33.7415137,,,,0.323,,,0.305,0.34,0.09506463,2427,25530,0.079575268,0.110553992,0.059716507,653,10935,0.041844166,0.077588847,0.000777481,34,43731,,,1286.205882,0.93178771,500.37,537,,,0.077028886,168,2181,0.033524399,0.120533373,2.921149018,,,,,,,,,2.909806926,3.13302526,,,,,,,,,3.127213526,0.036346179,,,,,4886.790925,,,,,0.70441731,40728,57818,0.653975774,0.754858845,72910,,,66188.80851,79631.19149,,,,,,,,,,98417,50450.02128,146383.9787,67774,62664.89362,72883.10638,,,,,,0.40580757,2809,6922,,,,,,,,0.211767933,,72910,,,6.168359942,17,2756,,,,,,,,,,,,,,,,,,,,,,,,,,12.82953983,28,216540,8.454747591,18.66630688,12.93063637,,,,,,,,,,,,,13.57673125,8.947151441,19.75343116,,,,10.62159416,23,216540,6.733179568,15.9376064,,,,,,,,,,,,,10.72015047,6.718261227,16.23043665,,,,11.5942029,35,301875,8.075787131,16.12472956,,,,,,,,,,,,,11.87412036,8.223173528,16.59289302,,,,8.333333333,,4800,,,29,11,0.602732996,19628,32565,,,0.743,,,,,47.81770982,,,,,0.815168109,13844,16983,0.795826276,0.834509943,0.069257866,1160,16749,0.053193387,0.085322345,0.82812224,14064,16983,0.804649501,0.851594978,43731,,,,,0.239715534,10483,43731,,,0.173149482,7572,43731,,,0.006082642,266,43731,,,0.003567264,156,43731,,,0.005259427,230,43731,,,0.000686012,30,43731,,,0.03219684,1408,43731,,,0.9419405,41192,43731,,,0.001829781,74,40442,0,0.00537474,0.49980563,21857,43731,,,0.529735352,22919,43265,, -18,035,18035,IN,Delaware County,2024,1,11991.39426,2158,313496,11221.76927,12761.01925,0,,,,2,,,,2,18332.37075,14801.36208,21863.37943,,,,,2,11896.78124,11071.44791,12722.11456,,,,,2,,0.184,,,0.156,0.215,4.119759954,,,3.35294557,4.945496305,5.768324059,,,4.872361474,6.693580637,0.083703317,641,7658,0.077500517,0.089906117,0,,,,0.088495575,0.036128657,0.140862494,0.140668524,0.115236983,0.166100065,0.084158416,0.045872473,0.122444358,0.077044025,0.070490311,0.083597739,,,,0.088,0.0528824,0.1231176,0.217,,,0.176,0.265,0.389,,,0.332,0.448,6.6,0.128346362,0.136,,,0.259,,,0.215,0.307,0.777467986,87001,111903,,,0.159833796,,,0.130367141,0.193659325,0.097560976,8,82,0.052959051,0.154869605,579.2,648,111871,,,14.05299206,515,36647,12.83926438,15.26671974,,,,,,,28.47873107,22.54687958,35.49299609,14.53957997,8.617076559,22.97880474,12.40638229,11.16060978,13.6521548,,,,23.79182156,16.27358834,33.58695322,0.083782145,7187,85782,0.071867252,0.095697039,0.001144175,128,111871,,,873.9921875,0.000651605,73,112031,,,1534.671233,0.003249101,364,112031,,,307.7774725,3930,,,,,,11033,8069,3343,3727,0.43,,,,,,0.38,0.36,,0.43,0.54,,,,,,0.56,0.38,0.38,0.54,0.906678669,63453,69984,0.896100122,0.917257217,0.646655857,15953,24670,0.604821027,0.688490688,0.035332881,1823,51595,,,0.205,3937,,0.146617021,0.263382979,,,,0.089005236,0,0.337961448,0.383779264,0.229608613,0.537949916,0.258101852,0.139513832,0.376689872,0.186439585,0.156549798,0.216329371,4.609454315,101703,22064,4.30976925,4.90913938,0.27388535,5504,20096,0.227660715,0.320109986,13.05074595,146,111871,,,116.0838473,661,569416,107.2341761,124.9335185,,,,,,,139.8811011,105.6646805,181.6472449,,,,120.1327954,110.4554376,129.8101533,,,,8.3,,,,,1,,,,,0.159339481,7430,46630,0.142965419,0.175713543,0.143576275,0.128182616,0.158969934,0.015333476,0.009681638,0.020985314,0.007613125,0.004342886,0.010883363,0.775953954,40040,51601,0.757795831,0.794112078,,,,0.586931155,0.446400493,0.727461818,0.563435495,0.462220947,0.664650044,0.678478825,0.558536919,0.79842073,0.800958111,0.77719319,0.824723031,0.23,,51601,0.209431705,0.250568295,73.14856336,,,72.59296884,73.70415788,,,,,,,68.25914914,66.00384979,70.5144485,92.00847291,70.36493625,113.6520096,73.16842885,72.57872771,73.75813,,,,577.8260059,2158,313496,552.0510584,603.6009535,,,,,,,870.0214438,744.3291778,995.7137099,,,,573.9055546,546.6320198,601.1790895,,,,65.22488609,70,107321,50.84599855,82.40771968,,,,,,,129.6876689,67.01151096,226.5382584,,,,64.61066307,48.80620053,83.90232022,,,,8.332265094,65,7801,6.43066629,10.62015585,,,,,,,,,,,,,6.887052342,5.023463237,9.215417891,,,,,,,0.128,,,0.11,0.148,0.179,,,0.156,0.205,0.113,,,0.097,0.13,137.2,134,97700,,,0.136,15270,,,,0.128346362,15102.64473,117671,,,56.85500501,193,339460,48.8336799,64.87633012,,,,,,,91.8887311,57.58617857,139.1206432,,,,57.28470498,48.62226754,65.94714243,,,,0.356,,,0.339,0.371,0.097056556,6420,66147,0.081567194,0.112545918,0.040750073,841,20638,0.028835179,0.052664966,0.001401398,157,112031,,,713.5732484,0.912979798,994.235,1089,,,0.048243664,434,8996,0.024166957,0.07232037,3.060588498,,,,,,,2.495048692,2.451777793,3.160765094,3.197779837,,,,,,,2.378460185,2.761259225,3.343409013,0.12786235,,,,,584.9563417,,,,,0.821287158,41691,50763,0.755888368,0.886685948,54059,,,50056.78723,58061.21277,,,,73385,29382.10638,117387.8936,30925,23590.19149,38259.80851,37099,22935.76596,51262.23404,56222,53959.3617,58484.6383,,,,,,0.488670646,7613,15579,,,50.87634627,,,,,0.30677593,,54059,,,8.201202843,45,5487,,,6.360125257,51,801871,4.735531007,8.362390132,,,,,,,26.60848278,14.89256583,43.88664586,,,,4.602607953,3.148180433,6.497509138,,,,17.1887264,96,569416,13.76746521,21.20223051,16.85937873,,,,,,,,,,,,,18.37046882,14.58880394,22.8328154,,,,13.17138963,75,569416,10.36013349,16.51045096,,,,,,,29.97452166,15.48827274,52.35945708,,,,12.37854818,9.468608522,15.90076299,,,,13.84262556,111,801871,11.26741317,16.41783795,,,,,,,,,,,,,14.52698135,11.69382356,17.36013915,,,,11.39784946,,9300,,,90,16,0.523019318,48191,92140,,,0.651,,,,,67.91993155,,,,,0.655776772,30270,46159,0.640573113,0.67098043,0.143732616,6356,44221,0.127477489,0.159987743,0.858987413,39650,46159,0.843903215,0.874071612,112031,,,,,0.17798645,19940,112031,,,0.176611831,19786,112031,,,0.071774777,8041,112031,,,0.00320447,359,112031,,,0.014219279,1593,112031,,,0.000651605,73,112031,,,0.028474262,3190,112031,,,0.857941106,96116,112031,,,0.001843465,197,106864,0.000519572,0.003167357,0.516125001,57822,112031,,,0.230592567,25804,111903,, -18,037,18037,IN,Dubois County,2024,1,6326.278188,559,118823,5467.006286,7185.55009,0,,,,2,,,,2,,,,2,6557.128873,3886.170139,10363.09057,1,6118.545268,5235.557618,7001.532919,,,,,2,,0.152,,,0.127,0.182,3.596769414,,,2.880767831,4.407469611,5.024701777,,,4.058977806,6.000629313,0.075190011,277,3684,0.066674659,0.083705363,0,,,,,,,,,,0.079457364,0.056121696,0.102793033,0.074991954,0.065730791,0.084253117,,,,,,,0.182,,,0.142,0.227,0.388,,,0.316,0.463,8.6,0.036563306,0.088,,,0.254,,,0.208,0.307,0.752916103,32855,43637,,,0.159313962,,,0.127365687,0.195351276,0.176470588,3,17,0.062472405,0.322105398,236.5,103,43549,,,17.3317642,162,9347,14.66280868,20.00071972,,,,,,,,,,41.94470925,30.47708995,56.30881438,14.67398239,11.9920048,17.35595998,,,,,,,0.081330606,2863,35202,0.069415713,0.0932455,0.000757767,33,43549,,,1319.666667,0.000779245,34,43632,,,1283.294118,0.001375138,60,43632,,,727.2,1999,,,,,,,,5572,1905,0.46,,,,,,,,,0.46,0.5,,,,,,,,0.22,0.51,0.898842852,26488,29469,0.880659535,0.917026169,0.611254466,6159,10076,0.542774075,0.679734857,0.022363348,493,22045,,,0.098,1016,,0.071787234,0.124212766,,,,,,,0.01510574,0,0.157831827,0.26653944,0.137538616,0.395540264,0.145062837,0.070490845,0.219634828,3.86226859,124759,32302,3.482312828,4.242224353,0.204895568,2168,10581,0.144512103,0.265279032,12.39982548,54,43549,,,67.3054452,144,213950,56.31222248,78.29866791,,,,,,,,,,,,,72.06153428,60.03833536,84.08473321,,,,8.4,,,,,0,,,,,0.079089275,1320,16690,0.057524192,0.100654358,0.071255306,0.048744623,0.09376599,0.010425404,0.000488006,0.020362803,0.002696225,0,0.005522295,0.871512091,19677,22578,0.85398556,0.889038623,,,,,,,,,,0.873350924,0.731294118,1,0.872218859,0.858466234,0.885971484,0.151,,22578,0.120182087,0.181817913,78.08595721,,,77.30913345,78.86278097,,,,,,,,,,78.34369238,68.98901442,87.69837033,78.18661701,77.39172417,78.98150984,,,,340.5298204,559,118823,310.8780696,370.1815712,,,,,,,,,,284.3652409,151.4125144,486.2732223,339.3079154,308.5049591,370.1108716,,,,44.05868617,20,45394,26.91219013,68.04506742,,,,,,,,,,,,,32.55384949,16.82104907,56.86502373,,,,6.617257808,25,3778,4.282340352,9.768377898,,,,,,,,,,,,,6.8621335,4.30046253,10.38935259,,,,,,,0.109,,,0.093,0.128,0.165,,,0.14,0.192,0.097,,,0.083,0.113,61,22,36064,,,0.088,3840,,,,0.036563306,1531.600319,41889,,,11.64352193,15,128827,6.516790838,19.20421874,,,,,,,,,,,,,13.08318288,7.32255814,21.57872053,,,,0.343,,,0.324,0.36,0.090842876,2245,24713,0.076545004,0.105140749,0.060517946,666,11005,0.041454117,0.079581776,0.001054272,46,43632,,,948.5217391,0.915299456,504.33,551,,,,,,,,3.351329322,,,,,,,,3.041731668,3.453080428,3.679787525,,,,,,,,3.180463527,3.831483854,0.1247143,,,,,916.24775,,,,,0.686009983,39307,57298,0.635156022,0.736863944,71171,,,63176.10638,79165.89362,,,,63903,51374.48936,76431.51064,,,,71250,40992.12766,101507.8723,68823,64471.68085,73174.31915,,,,,,0.341935484,2491,7285,,,65.82469406,,,,,0.213626337,,71171,,,4.163775156,12,2882,,,,,,,,,,,,,,,,,,,,,,,,,,17.45979075,36,213950,12.09141266,24.39830754,16.8263613,,,,,,,,,,,,,18.2585115,12.40577272,25.91649963,,,,9.815377425,21,213950,6.075873327,15.00384704,,,,,,,,,,,,,10.44370062,6.379283659,16.12944857,,,,9.03121791,27,298963,5.95162951,13.1399479,,,,,,,,,,,,,8.551075948,5.420648632,12.83081246,,,,12.9787234,,4700,,,49,12,0.701918427,21770,31015,,,0.776,,,,,42.40714892,,,,,0.774674543,13508,17437,0.748650061,0.800699025,0.085796388,1463,17052,0.063020052,0.108572723,0.839593967,14640,17437,0.81218022,0.867007714,43632,,,,,0.240671984,10501,43632,,,0.190479465,8311,43632,,,0.00792996,346,43632,,,0.003506601,153,43632,,,0.007402824,323,43632,,,0.001650165,72,43632,,,0.091309131,3984,43632,,,0.885611478,38641,43632,,,0.015885468,648,40792,0.005734588,0.026036348,0.49537037,21614,43632,,,0.475995142,20771,43637,, -18,039,18039,IN,Elkhart County,2024,1,8086.419634,2762,579653,7646.054484,8526.784785,0,,,,2,,,,2,14472.43017,12032.24166,16912.61869,,6275.700209,5351.863951,7199.536468,,8049.978685,7530.986436,8568.970934,,,,,2,,0.188,,,0.16,0.217,3.919197359,,,3.143821266,4.694264378,5.363191251,,,4.478488359,6.218833951,0.0696762,1474,21155,0.066245293,0.073107106,0,,,,0.11299435,0.066354087,0.159634614,0.119579501,0.103278203,0.135880799,0.073079202,0.065910008,0.080248396,0.061830816,0.057855759,0.065805873,,,,0.116731518,0.077473357,0.155989678,0.195,,,0.158,0.233,0.382,,,0.329,0.439,8,0.087184041,0.092,,,0.298,,,0.254,0.344,0.734693089,152116,207047,,,0.150607203,,,0.123173157,0.181281683,0.20610687,27,131,0.162451948,0.252708857,501.6,1038,206921,,,28.16206509,1427,50671,26.70086872,29.62326145,,,,,,,59.13100294,50.51646418,67.7455417,44.52617576,40.86757235,48.18477916,19.72582346,18.19275109,21.25889583,,,,19.84334204,14.04232984,27.2365373,0.132537269,23009,173604,0.118239396,0.146835141,0.000488109,101,206921,,,2048.722772,0.000410846,85,206890,,,2434,0.001696554,351,206890,,,589.4301994,2333,,,,,,,3591,1809,2261,0.42,,,,,,0.21,0.38,0.24,0.43,0.5,,,,,,0.37,0.42,0.34,0.5,0.821731101,107678,131038,0.809638429,0.833823773,0.458478565,23282,50781,0.429105557,0.487851572,0.025035591,2972,118711,,,0.163,8928,,0.129638298,0.196361702,,,,,,,0.417557499,0.301127295,0.533987703,0.285305889,0.22029929,0.350312489,0.114556962,0.089294192,0.139819732,4.169905934,120577,28916,3.861551668,4.478260201,0.255664405,14432,56449,0.224870432,0.286458378,12.71016475,263,206921,,,63.78547885,657,1030015,58.90800211,68.66295559,,,,,,,91.06216281,68.21180876,119.111551,34.21737895,26.04785424,44.13792583,70.11731216,64.17569808,76.05892624,,,,8.2,,,,,0,,,,,0.124930901,9040,72360,0.113045057,0.136816746,0.098568507,0.08718739,0.109949624,0.025428414,0.019430771,0.031426056,0.011124931,0.007785732,0.01446413,0.748095454,72667,97136,0.730922473,0.765268434,,,,0.749864352,0.632435995,0.867292709,0.713487332,0.643494947,0.783479717,0.747684675,0.713428566,0.781940784,0.759554076,0.752023753,0.767084398,0.215,,97136,0.197692617,0.232307383,77.02573027,,,76.62925423,77.42220631,,,,86.11062742,80.97552988,91.24572495,71.26196518,69.2825845,73.24134587,90.00878585,82.72794769,97.28962401,76.95978389,76.51675695,77.40281084,,,,405.4305109,2762,579653,389.9583424,420.9026794,,,,,,,685.1320821,593.9163215,776.3478428,296.2959123,250.2825269,342.3092976,407.1099305,389.7065977,424.5132633,,,,67.63324154,167,246920,57.37535151,77.89113156,,,,,,,160.8015338,105.0409006,235.611504,67.88756526,48.92738574,91.76426654,58.62873194,47.20419775,71.98309103,,,,8.515018247,182,21374,7.277914961,9.752121532,,,,,,,21.45922747,14.9471382,29.84459066,8.597748209,6.196500662,11.62165789,6.526418107,5.274010165,7.986682895,,,,,,,0.122,,,0.105,0.14,0.173,,,0.151,0.197,0.109,,,0.094,0.126,124,207,166984,,,0.092,18890,,,,0.087184041,17223.99187,197559,,,14.85253212,92,619423,11.97323715,18.21531215,,,,,,,,,,,,,17.09851375,13.51566557,21.33971898,,,,0.349,,,0.335,0.363,0.152477472,17919,117519,0.134605131,0.170349812,0.091965167,5407,58794,0.069326869,0.114603464,0.0010537,218,206890,,,949.0366973,0.891824437,2138.595,2398,,,0.077911245,934,11988,0.049943182,0.105879308,2.94862594,,,,,,3.405204243,2.262755979,2.724061857,3.158662067,3.059345864,,,,,,3.750949426,2.019612973,2.811041643,3.331593969,0.140778343,,,,,-702.2072714,,,,,0.725097525,40335,55627,0.694343024,0.755852025,63777,,,59204.06383,68349.93617,81583,57998.65957,105167.3404,74602,55302.25532,93901.74468,27487,22690.06383,32283.93617,52156,43081.61702,61230.38298,69261,66133.34043,72388.65957,,,,,,0.444128875,14543,32745,,,56.69040734,,,,,0.292189974,,63777,,,2.987400961,46,15398,,,5.426955269,78,1437270,4.289782936,6.773085784,,,,,,,45.21348095,31.83446314,62.3208277,6.808510638,3.891652108,11.05659472,2.148522704,1.361979092,3.223838971,,,,12.34534712,124,1030015,10.1344198,14.55627443,12.03865963,,,,,,,,,,6.792039111,3.509545721,11.86432546,13.68299391,10.95558668,16.41040114,,,,10.87362805,112,1030015,8.859803956,12.88745215,,,,,,,30.92677228,18.32916529,48.87763353,9.859244782,5.74337341,15.78560598,9.698469346,7.615384426,12.17554013,,,,13.14993008,189,1437270,11.27515741,15.02470274,,,,,,,12.21985972,5.859897715,22.4727571,6.808510638,3.891652108,11.05659472,14.9462449,12.63030026,17.26218954,,,,6.5625,,25600,,,79,89,0.535466456,74387,138920,,,0.703,,,,,78.19450376,,,,,0.712436064,51118,71751,0.696362572,0.728509555,0.10764345,7457,69275,0.094854097,0.120432803,0.870482641,62458,71751,0.859473703,0.881491579,206890,,,,,0.269283194,55712,206890,,,0.157571656,32600,206890,,,0.054618396,11300,206890,,,0.006882885,1424,206890,,,0.01306008,2702,206890,,,0.000928029,192,206890,,,0.181279907,37505,206890,,,0.727526705,150518,206890,,,0.022125716,4244,191813,0.01803151,0.026219923,0.502581082,103979,206890,,,0.232575212,48154,207047,, -18,041,18041,IN,Fayette County,2024,1,13740.99244,531,63496,11928.66427,15553.3206,0,,,,2,,,,2,,,,2,,,,2,14281.0615,12374.27988,16187.84313,,,,,2,,0.199,,,0.166,0.236,4.437406555,,,3.539879706,5.399498389,5.684694112,,,4.601864236,6.771305312,0.074384788,133,1788,0.062222098,0.086547477,0,,,,,,,,,,,,,0.076833527,0.064239638,0.089427417,,,,,,,0.237,,,0.189,0.287,0.408,,,0.334,0.49,6.9,0.077296899,0.146,,,0.311,,,0.256,0.371,0.690956492,16167,23398,,,0.157363396,,,0.12584912,0.193994178,0.083333333,2,24,0.015751141,0.20231498,282.5,66,23360,,,37.91658352,190,5011,32.52509767,43.30806936,,,,,,,,,,,,,38.92532262,33.30088142,44.54976381,,,,,,,0.084164859,1552,18440,0.071058476,0.097271242,0.000428082,10,23360,,,2336,0.000342627,8,23349,,,2918.625,0.001027881,24,23349,,,972.875,3989,,,,,,,10253,,3952,0.39,,,,,,,0.54,,0.38,0.44,,,,,,,0.43,,0.44,0.852137695,13912,16326,0.830018071,0.874257318,0.500954927,2623,5236,0.427724464,0.574185391,0.044110634,370,8388,,,0.188,934,,0.115319149,0.260680851,,,,,,,,,,0.464566929,0.148888826,0.780245032,0.198877132,0.142369509,0.255384756,4.476895291,101630,22701,3.928564221,5.025226361,0.338370952,1724,5095,0.23947182,0.437270084,12.41438356,29,23360,,,150.5060116,174,115610,128.1427423,172.8692809,,,,,,,,,,,,,155.9977507,132.6841055,179.311396,,,,8.8,,,,,0,,,,,0.120805369,1170,9685,0.094508141,0.147102597,0.101100052,0.075793657,0.126406448,0.013939081,0.004498661,0.023379502,0.008260196,0.000244488,0.016275904,0.839789953,8476,10093,0.811281606,0.868298301,,,,,,,,,,,,,0.859438925,0.845071453,0.873806396,0.368,,10093,0.306560264,0.429439736,71.7810036,,,70.55453741,73.0074698,,,,,,,,,,,,,71.33981122,70.07181585,72.60780658,,,,617.3434846,531,63496,560.9524728,673.7344963,,,,,,,,,,,,,634.1659295,575.6498737,692.6819853,,,,76.63180671,17,22184,44.64085138,122.694946,,,,,,,,,,,,,82.36035076,47.97793939,131.8668999,,,,11.76470588,21,1785,7.282538366,17.98360265,,,,,,,,,,,,,12.23063483,7.570955728,18.69582454,,,,,,,0.135,,,0.114,0.156,0.19,,,0.163,0.219,0.112,,,0.095,0.131,70.6,14,19832,,,0.146,3420,,,,0.077296899,1876.53682,24277,,,87.95455201,61,69354,67.27826306,112.9813016,,,,,,,,,,,,,92.34588834,70.63728739,118.6221568,,,,0.352,,,0.334,0.37,0.095391051,1277,13387,0.079901689,0.110880413,0.055764176,297,5326,0.037891835,0.073636516,0.000685254,16,23349,,,1459.3125,0.91,202.93,223,,,,,,,,2.889248946,,,,,,,,,2.904010238,2.845228537,,,,,,,,,2.877909806,0.021669587,,,,,72.69043,,,,,0.783933206,41688,53178,0.720848895,0.847017516,54892,,,48288.76596,61495.23404,,,,,,,28011,149.212766,55872.78723,,,,53309,47311.04255,59306.95745,,,,,,0.608774584,2012,3305,,,52.77623747,,,,,0.274101873,,54892,,,4.788507582,6,1253,,,,,,,,,,,,,,,,,,,,,,,,,,19.60673214,21,115610,11.97630136,30.28100759,18.16451864,,,,,,,,,,,,,20.61323213,12.5910977,31.83546519,,,,11.24470202,13,115610,5.987330241,19.22878291,,,,,,,,,,,,,11.79052767,6.277959414,20.1621614,,,,20.93918399,34,162375,14.50099362,29.26041084,,,,,,,,,,,,,21.92388543,15.18292799,30.6364324,,,,21.25,,2400,,,29,22,0.567048951,10136,17875,,,0.681,,,,,69.32600016,,,,,0.695099256,6723,9672,0.664320235,0.725878277,0.110018176,1029,9353,0.081032139,0.139004213,0.823924731,7969,9672,0.795857043,0.85199242,23349,,,,,0.218167802,5094,23349,,,0.208488586,4868,23349,,,0.014561652,340,23349,,,0.003940212,92,23349,,,0.004025868,94,23349,,,8.56568E-05,2,23349,,,0.016231959,379,23349,,,0.950319072,22189,23349,,,0.004387155,97,22110,0,0.011294428,0.503661827,11760,23349,,,0.384520044,8997,23398,, -18,043,18043,IN,Floyd County,2024,1,9502.034996,1365,222713,8723.992644,10280.07735,0,,,,2,,,,2,17023.22313,12713.75727,22323.6923,,,,,2,9409.197626,8585.946171,10232.44908,,,,,2,,0.151,,,0.124,0.178,3.65535251,,,2.943015674,4.518818768,5.133535496,,,4.269328801,6.132101769,0.083417085,498,5970,0.076402819,0.090431352,0,,,,0.127272727,0.064990135,0.189555319,0.179176755,0.14218996,0.216163551,0.047808765,0.021412951,0.074204579,0.075055188,0.067739437,0.082370938,,,,0.121212121,0.075751169,0.166673074,0.174,,,0.132,0.217,0.368,,,0.304,0.435,8.3,0.054646378,0.092,,,0.241,,,0.197,0.289,0.845894836,68081,80484,,,0.170160454,,,0.137885048,0.206774615,0.333333333,13,39,0.249594321,0.416968855,359.2,289,80454,,,16.4854437,282,17106,14.56132369,18.40956372,,,,,,,29.0237467,19.97861176,40.76013128,14.83679525,8.304041674,24.47103746,15.24566474,13.18853725,17.30279224,,,,30.7486631,19.49201476,46.13809211,0.075381723,5011,66475,0.064658318,0.086105127,0.000559326,45,80454,,,1787.866667,0.00085487,69,80714,,,1169.768116,0.001598236,129,80714,,,625.6899225,2510,,,,,,,6608,,2425,0.49,,,,,,,0.31,,0.49,0.51,,,,,,0.49,0.36,0.16,0.52,0.923741345,51227,55456,0.913189544,0.934293145,0.665699783,13770,20685,0.622580019,0.708819546,0.024769993,1050,42390,,,0.134,2374,,0.094680851,0.173319149,,,,,,,0.428909953,0.331124894,0.526695011,0.553345389,0.384974574,0.721716203,0.082301323,0.055054344,0.109548303,4.118997124,141780,34421,3.772429532,4.465564715,0.25954156,4665,17974,0.212265551,0.306817569,10.31645412,83,80454,,,91.91270076,361,392764,82.43118005,101.3942215,,,,,,,65.6537235,35.89350158,110.1557922,,,,97.62124705,87.16735481,108.0751393,,,,10,,,,,0,,,,,0.088672476,2595,29265,0.075925209,0.101419743,0.079821091,0.066414209,0.093227972,0.003758756,0.001430088,0.006087425,0.007859218,0.004188969,0.011529467,0.800760476,31168,38923,0.779673918,0.821847033,,,,,,,0.857004831,0.74944256,0.964567102,0.649425287,0.559825998,0.739024577,0.786127586,0.769586132,0.802669039,0.288,,38923,0.262169126,0.313830874,75.00336385,,,74.39673381,75.60999388,,,,,,,68.82740448,65.77844197,71.87636699,100.5344853,53.686693,147.3822776,75.00454924,74.36907188,75.6400266,,,,468.9524939,1365,222713,442.9941398,494.910848,,,,,,,797.7064673,641.4502012,980.5166793,,,,467.2265115,439.9138129,494.5392101,,,,49.68912445,39,78488,35.3338249,67.92666887,,,,,,,,,,,,,41.23057406,26.93317985,60.41234393,,,,4.78784877,29,6057,3.206497464,6.876149486,,,,,,,,,,,,,,,,,,,,,,0.108,,,0.091,0.126,0.166,,,0.142,0.193,0.094,,,0.079,0.11,158,107,67702,,,0.092,7310,,,,0.054646378,4075.417593,74578,,,47.49655335,113,237912,38.73907756,56.25402913,,,,,,,,,,,,,50.68570518,40.99072524,60.38068513,,,,0.349,,,0.33,0.367,0.083357513,4022,48250,0.07025113,0.096463896,0.05601714,1072,19137,0.040527778,0.071506501,0.001846024,149,80714,,,541.704698,0.919327354,820.04,892,,,,,,,,3.217524724,,,,,,,2.519983238,2.97177184,3.360727784,3.521411339,,,,,,,2.943732296,3.347170042,3.648181022,0.108445447,,,,,-23.66016,,,,,0.767321293,49582,64617,0.693958312,0.840684275,74264,,,68073.02128,80454.97872,99700,74777.61702,124622.383,,,,36399,26495.34043,46302.65957,53947,31214.57447,76679.42553,78081,75854.10638,80307.89362,,,,,,0.300169492,3542,11800,,,53.32310262,,,,,0.250390499,,74264,,,6.612298876,30,4537,,,4.208353765,23,546532,2.66773529,6.31459693,,,,,,,,,,,,,3.13187708,1.752887827,5.165554963,,,,13.75419003,58,392764,10.36153825,17.90296889,14.76713752,,,,,,,,,,,,,14.81295497,11.06302329,19.42521968,,,,12.73029096,50,392764,9.448667326,16.78330159,,,,,,,,,,,,,12.53048843,9.068376606,16.87848568,,,,10.24642656,56,546532,7.740040507,13.30583717,,,,,,,,,,,,,11.06596568,8.289167658,14.47455557,,,,26.38554217,,8300,,,84,135,0.701729058,41802,59570,,,0.754,,,,,133.4302724,,,,,0.743651127,22987,30911,0.727554386,0.759747869,0.081730928,2478,30319,0.067229877,0.096231979,0.851056258,26307,30911,0.832930924,0.869181593,80714,,,,,0.223108754,18008,80714,,,0.176375846,14236,80714,,,0.054971876,4437,80714,,,0.004001784,323,80714,,,0.013752261,1110,80714,,,0.000520356,42,80714,,,0.04067448,3283,80714,,,0.864472087,69775,80714,,,0.005603351,424,75669,0.002793189,0.008413514,0.511125703,41255,80714,,,0.340514885,27406,80484,, -18,045,18045,IN,Fountain County,2024,1,10889.04725,343,44773,9010.815323,12767.27919,0,,,,2,,,,2,,,,2,,,,2,11034.34073,9092.829066,12975.8524,,,,,2,,0.172,,,0.144,0.206,4.024857175,,,3.202093768,4.962626509,5.434008728,,,4.366556608,6.581493677,0.075872534,100,1318,0.061576796,0.090168273,0,,,,,,,,,,,,,0.074313409,0.059703035,0.088923783,,,,,,,0.209,,,0.166,0.258,0.38,,,0.302,0.465,8.1,0.028497609,0.114,,,0.271,,,0.22,0.33,0.516900297,8518,16479,,,0.163492055,,,0.129136043,0.2031264,0.1,1,10,0.005279615,0.302965499,493.1,81,16427,,,25.31268612,85,3358,20.21887463,31.29952839,,,,,,,,,,,,,26.33289987,20.91212354,32.72939018,,,,,,,0.078720318,1031,13097,0.066805424,0.090635211,0.000243502,4,16427,,,4106.75,0.000362013,6,16574,,,2762.333333,0.000905032,15,16574,,,1104.933333,3500,,,,,,,,,3519,0.44,,,,,,,,,0.44,0.42,,,,,,,,,0.42,0.888764432,10315,11606,0.864865187,0.912663677,0.585623679,2216,3784,0.506603448,0.66464391,0.027587068,221,8011,,,0.163,564,,0.108191489,0.217808511,,,,,,,,,,0.445714286,0.232221512,0.65920706,0.083883129,0.04398812,0.123778138,4.09162124,101329,24765,3.538250201,4.644992278,0.216755693,771,3557,0.136359834,0.297151552,15.21884702,25,16427,,,91.30752374,75,82140,71.81915961,114.4547717,,,,,,,,,,,,,92.33255107,72.24453467,116.2775671,,,,8.9,,,,,1,,,,,0.088108883,615,6980,0.068426028,0.107791738,0.075921909,0.055605598,0.09623822,0.008595989,0.001919299,0.015272679,0.003581662,0,0.00723264,0.78887266,5941,7531,0.753326066,0.824419254,,,,,,,,,,,,,0.75653965,0.704084134,0.808995165,0.439,,7531,0.382898688,0.495101312,73.73957217,,,72.35720386,75.12194049,,,,,,,,,,,,,73.51067308,72.09810823,74.92323792,,,,538.6701656,343,44773,478.1688561,599.171475,,,,,,,,,,,,,548.1198215,485.708383,610.53126,,,,64.04508774,10,15614,30.71210898,117.7811966,,,,,,,,,,,,,69.95942353,33.54826288,128.6578707,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.121,,,0.102,0.142,0.179,,,0.154,0.207,0.106,,,0.09,0.125,35.9,5,13928,,,0.114,1870,,,,0.028497609,491.2987744,17240,,,32.46489733,16,49284,18.5564939,52.72095933,,,,,,,,,,,,,27.82653367,14.81645724,47.58422004,,,,0.343,,,0.326,0.36,0.088942308,851,9568,0.073452946,0.104431669,0.052603183,195,3707,0.035922332,0.069284034,0.000362013,6,16574,,,2762.333333,0.937760417,180.05,192,,,,,,,,3.345254798,,,,,,,,,3.352081089,3.300848008,,,,,,,,,3.37334546,0.021262219,,,,,106.6243333,,,,,0.741191405,40873,55145,0.68811507,0.794267739,63973,,,55640.91489,72305.08511,,,,,,,,,,25524,2782.042553,48265.95745,62181,56250.95745,68111.04255,,,,,,0.426655831,1050,2461,,,,,,,,0.244431244,,63973,,,3.131524008,3,958,,,,,,,,,,,,,,,,,,,,,,,,,,17.50795999,14,82140,9.32225133,29.9391448,17.0440711,,,,,,,,,,,,,18.37386672,9.783310195,31.41987168,,,,,,,,,,,,,,,,,,,,,,,,,,,13.01891214,15,115217,7.286586296,21.47271572,,,,,,,,,,,,,13.69337788,7.664079652,22.58514439,,,,,,1600,,,7,-888,0.629066562,7986,12695,,,0.667,,,,,14.56309897,,,,,0.742228739,5062,6820,0.705730268,0.77872721,0.079993787,515,6438,0.056242739,0.103744835,0.857624633,5849,6820,0.828775614,0.886473653,16574,,,,,0.21340654,3537,16574,,,0.203692531,3376,16574,,,0.006455895,107,16574,,,0.004102812,68,16574,,,0.005309521,88,16574,,,0.000844697,14,16574,,,0.03046941,505,16574,,,0.942138289,15615,16574,,,0.00374097,58,15504,0,0.009532346,0.498974297,8270,16574,,,1,16479,16479,, -18,047,18047,IN,Franklin County,2024,1,9760.526303,366,63012,8216.758179,11304.29443,0,,,,2,,,,2,,,,2,,,,2,10031.12877,8429.556825,11632.70071,,,,,2,,0.155,,,0.126,0.187,3.587182083,,,2.809907122,4.427953571,5.07960248,,,4.078330384,6.130354586,0.068106312,123,1806,0.05648717,0.079725455,0,,,,,,,,,,,,,0.068053993,0.056347889,0.079760097,,,,,,,0.196,,,0.15,0.244,0.344,,,0.275,0.418,8.7,0.031759391,0.085,,,0.251,,,0.2,0.304,0.429536976,9787,22785,,,0.169772209,,,0.13634124,0.207211301,0.210526316,4,19,0.095274272,0.345173375,83.2,19,22842,,,18.04175958,89,4933,14.48901442,22.20193764,,,,,,,,,,,,,18.55757065,14.88371431,22.86344607,,,,,,,0.079276925,1456,18366,0.067362031,0.091191818,0.000700464,16,22842,,,1427.625,0.000694806,16,23028,,,1439.25,0.000303978,7,23028,,,3289.714286,3324,,,,,,,,,3336,0.46,,,,,,,,,0.46,0.49,,,,,,,,,0.49,0.895339278,14158,15813,0.874937137,0.915741419,0.589948145,2958,5014,0.502020848,0.677875443,0.026549451,302,11375,,,0.116,586,,0.073106383,0.158893617,,,,,,,,,,,,,0.088774459,0.052094153,0.125454766,3.926107923,128635,32764,3.441723105,4.410492741,0.144416778,754,5221,0.081471379,0.207362178,5.253480431,12,22842,,,98.49097752,112,113716,80.25019322,116.7317618,,,,,,,,,,,,,100.1310807,81.41871775,118.8434436,,,,9.1,,,,,0,,,,,0.072194021,640,8865,0.052414996,0.091973047,0.047640705,0.028561794,0.066719616,0.021996616,0.008628293,0.035364939,0.003835307,0,0.008136736,0.809938435,9209,11370,0.777174235,0.842702634,,,,,,,,,,,,,0.73913751,0.672594046,0.805680975,0.512,,11370,0.446208637,0.577791363,76.23065632,,,75.00548042,77.45583222,,,,,,,,,,,,,75.93160816,74.68603735,77.17717896,,,,435.7633174,366,63012,387.8150701,483.7115647,,,,,,,,,,,,,446.3817475,396.9552651,495.8082299,,,,48.10635879,11,22866,24.01452098,86.07556422,,,,,,,,,,,,,50.61660225,25.26762547,90.56708316,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.111,,,0.093,0.131,0.169,,,0.143,0.196,0.095,,,0.08,0.111,31.2,6,19225,,,0.085,1930,,,,0.031759391,733.2290625,23087,,,35.10773687,24,68361,22.49418946,52.23752958,,,,,,,,,,,,,34.82157727,22.07389296,52.24946313,,,,0.339,,,0.32,0.358,0.086298259,1140,13210,0.072000387,0.100596131,0.062753036,341,5434,0.043689207,0.081816866,0.000477679,11,23028,,,2093.454546,0.975,331.5,340,,,,,,,,3.115594082,,,,,,,,,3.098934611,3.248876527,,,,,,,,,3.250364618,0.063027643,,,,,2396.6565,,,,,0.763580344,43618,57123,0.676330647,0.850830041,74779,,,64463.08511,85094.91489,,,,,,,,,,66818,10296.12766,123339.8723,77015,72154.91489,81875.08511,,,,,,0.343072289,1139,3320,,,,,,,,0.195923989,,74779,,,0.755287009,1,1324,,,,,,,,,,,,,,,,,,,,,,,,,,21.33374519,23,113716,13.36974453,32.29954659,20.22582574,,,,,,,,,,,,,22.17844136,13.72880476,33.90210354,,,,16.70829083,19,113716,10.05948254,26.09206582,,,,,,,,,,,,,17.29536848,10.41294164,27.0088603,,,,13.18242594,21,159303,8.160129429,20.15073836,,,,,,,,,,,,,13.62777991,8.435810551,20.8315092,,,,,,2400,,,-888,16,0.694645441,12000,17275,,,0.689,,,,,20.84689943,,,,,0.81372549,7304,8976,0.775959054,0.851491926,0.075808508,654,8627,0.05477212,0.096844896,0.818293226,7345,8976,0.782992713,0.85359374,23028,,,,,0.223901338,5156,23028,,,0.198454056,4570,23028,,,0.004299114,99,23028,,,0.003039778,70,23028,,,0.007295466,168,23028,,,0.000173702,4,23028,,,0.013548723,312,23028,,,0.963870071,22196,23028,,,0.009160234,197,21506,0.00225672,0.016063749,0.497090499,11447,23028,,,0.888610928,20247,22785,, -18,049,18049,IN,Fulton County,2024,1,10793.4029,431,55245,9089.646915,12497.15888,0,,,,2,,,,2,,,,2,,,,2,10761.40194,8995.134834,12527.66905,,,,,2,,0.173,,,0.144,0.204,3.919544548,,,3.095155393,4.862889674,5.113880356,,,4.104947452,6.221769195,0.084682441,136,1606,0.071065929,0.098298953,0,,,,,,,,,,0.139534884,0.066300526,0.212769242,0.079591837,0.065755475,0.093428198,,,,,,,0.208,,,0.165,0.253,0.359,,,0.284,0.438,8,0.042112612,0.116,,,0.274,,,0.221,0.33,0.393554688,8060,20480,,,0.163566388,,,0.12970953,0.201418237,0.136363636,3,22,0.044872665,0.263216149,186.4,38,20386,,,26.09922408,111,4253,21.24385578,30.95459237,,,,,,,,,,,,,27.24575128,21.93208627,32.5594163,,,,,,,0.106119671,1715,16161,0.090630309,0.121609033,0.000490533,10,20386,,,2038.6,0.000442761,9,20327,,,2258.555556,0.000836326,17,20327,,,1195.705882,2135,,,,,,,,,2140,0.42,,,,,,,,,0.43,0.34,,,,,,,,,0.34,0.873193073,12202,13974,0.845120778,0.901265368,0.534258271,2503,4685,0.445406818,0.623109724,0.03040117,291,9572,,,0.169,787,,0.114191489,0.223808511,,,,,,,0.048192771,0,0.542999147,0.372262774,0.153847906,0.590677642,0.195338232,0.121957624,0.26871884,4.256335181,122110,28689,3.476505985,5.036164376,0.174540953,846,4847,0.097628839,0.251453068,17.65917787,36,20386,,,87.53692964,88,100529,70.2071773,107.8479456,,,,,,,,,,,,,92.42546158,73.82617598,114.2855146,,,,8.5,,,,,0,,,,,0.099489796,780,7840,0.072292296,0.126687296,0.09009009,0.063511937,0.116668243,0.010204082,0.001713807,0.018694356,0.001020408,0,0.003087055,0.805510722,6987,8674,0.772137166,0.838884277,,,,,,,,,,,,,0.804878049,0.771025384,0.838730714,0.365,,8674,0.301169078,0.428830922,74.3571885,,,73.03362723,75.68074978,,,,,,,,,,,,,74.29156069,72.93445665,75.64866473,,,,543.8494209,431,55245,489.3124333,598.3864085,,,,,,,,,,,,,547.849056,491.0100896,604.6880225,,,,92.21062849,19,20605,55.51682196,143.9983187,,,,,,,,,,,,,78.08578281,42.69022409,131.0146752,,,,12.05545509,20,1659,7.363785163,18.61867264,,,,,,,,,,,,,,,,,,,,,,0.121,,,0.103,0.14,0.176,,,0.151,0.203,0.106,,,0.09,0.123,88.1,15,17030,,,0.116,2370,,,,0.042112612,877.4583768,20836,,,36.43711286,22,60378,22.83494464,55.16622675,,,,,,,,,,,,,38.09178306,23.57941408,58.22733672,,,,0.348,,,0.329,0.364,0.120645784,1375,11397,0.101581954,0.139709614,0.072687225,363,4994,0.050048927,0.095325523,0.000590348,12,20327,,,1693.916667,0.931969697,153.775,165,,,,,,,,2.933535394,,,,,,,,2.809712476,2.940347382,2.986883777,,,,,,,,3.126934204,2.999770123,0.037370404,,,,,697.78175,,,,,0.800537119,41732,52130,0.675909258,0.925164979,62412,,,54259.82979,70564.17021,,,,,,,,,,50500,25346.46809,75653.53192,63313,58999.80851,67626.19149,,,,,,0.502296009,1422,2831,,,,,,,,0.251185669,,62412,,,2.454991817,3,1222,,,,,,,,,,,,,,,,,,,,,,,,,,17.44899815,17,100529,9.973610093,28.33607981,16.91054323,,,,,,,,,,,,,17.65040557,9.878798008,29.11165979,,,,10.94211621,11,100529,5.462264986,19.57846842,,,,,,,,,,,,,10.87358372,5.214306044,19.9969076,,,,24.11638283,34,140983,16.70129617,33.70022776,,,,,,,,,,,,,25.54397046,17.58329391,35.87323168,,,,15,,2200,,,11,22,0.614098691,9147,14895,,,0.655,,,,,34.00232363,,,,,0.779830639,6078,7794,0.748824866,0.810836412,0.120714567,919,7613,0.088538568,0.152890567,0.855914806,6671,7794,0.822772943,0.88905667,20327,,,,,0.233384169,4744,20327,,,0.2047523,4162,20327,,,0.008510848,173,20327,,,0.009691543,197,20327,,,0.007034978,143,20327,,,0.000295174,6,20327,,,0.054656368,1111,20327,,,0.913710828,18573,20327,,,0.007142112,137,19182,2.27803E-05,0.014261445,0.493825946,10038,20327,,,0.641943359,13147,20480,, -18,051,18051,IN,Gibson County,2024,1,7445.975672,497,92884,6414.988525,8476.96282,0,,,,2,,,,2,,,,2,,,,2,7672.893245,6582.476944,8763.309547,,,,,2,,0.162,,,0.134,0.191,3.810163475,,,3.009926221,4.704615405,5.549287228,,,4.531597357,6.696531114,0.078136464,213,2726,0.068061272,0.088211656,0,,,,,,,,,,,,,0.076138148,0.065839955,0.086436341,,,,,,,0.199,,,0.156,0.244,0.367,,,0.294,0.448,8.5,0.016102236,0.103,,,0.257,,,0.209,0.309,0.67389658,22246,33011,,,0.16316403,,,0.130531118,0.201209412,0.176470588,6,34,0.093514624,0.274869215,328,108,32924,,,24.03710992,171,7114,20.434309,27.63991085,,,,,,,,,,,,,24.76340694,20.88979028,28.6370236,,,,,,,0.071460574,1914,26784,0.060737169,0.082183978,0.000394849,13,32924,,,2532.615385,0.00057588,19,32993,,,1736.473684,0.000394023,13,32993,,,2537.923077,2451,,,,,,,,,2460,0.54,,,,,,,,,0.54,0.54,,,,,,,0.33,,0.54,0.90614266,20313,22417,0.891165248,0.921120071,0.599390708,4722,7878,0.542082003,0.656699414,0.022457331,450,20038,,,0.121,925,,0.076914894,0.165085106,,,,,,,0.177304965,0,0.586691819,0.042801556,0,0.250937717,0.114250802,0.071980741,0.156520863,3.716122902,117318,31570,3.347844848,4.084400955,0.176150044,1390,7891,0.123068833,0.229231256,14.8827603,49,32924,,,84.80852385,142,167436,70.85925633,98.75779137,,,,,,,,,,,,,89.18259977,74.35643578,104.0087638,,,,8.9,,,,,0,,,,,0.099261993,1345,13550,0.076826716,0.121697269,0.067953955,0.049973296,0.085934613,0.028782288,0.016151932,0.041412643,0.005461255,0.000965187,0.009957322,0.838286154,13089,15614,0.814251037,0.86232127,,,,,,,,,,,,,0.865190086,0.846386982,0.88399319,0.287,,15614,0.254413256,0.319586744,76.86242353,,,75.96214466,77.76270239,,,,,,,,,,,,,76.65285487,75.72154209,77.58416766,,,,394.9812968,497,92884,358.713946,431.2486476,,,,,,,,,,,,,403.6505803,365.9044077,441.3967528,,,,46.01403428,16,34772,26.30099636,74.72390889,,,,,,,,,,,,,48.95880932,27.40187392,80.75011055,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.115,,,0.097,0.134,0.174,,,0.149,0.2,0.1,,,0.084,0.116,58.4,16,27415,,,0.103,3400,,,,0.016102236,539.4732023,33503,,,9.959365788,10,100408,4.775903012,18.31562828,,,,,,,,,,,,,10.7514165,5.155722115,19.77223774,,,,0.32,,,0.303,0.336,0.081300813,1540,18942,0.067002941,0.095598685,0.049168387,405,8237,0.033679025,0.064657748,0.000818355,27,32993,,,1221.962963,0.92130137,336.275,365,,,,,,,,3.111033964,,,,,,,,,3.096175247,3.114575667,,,,,,,,,3.119071709,0.055569641,,,,,-2644.356,,,,,0.730085262,41958,57470,0.675511433,0.78465909,66247,,,58071,74423,,,,60625,37479.12766,83770.87234,,,,,,,66150,60634.59575,71665.40426,,,,,,0.35112893,1664,4739,,,70.05806161,,,,,0.243482724,,66247,,,4.880429478,10,2049,,,,,,,,,,,,,,,,,,,,,,,,,,19.33479575,32,167436,13.0451055,27.60162316,19.11178002,,,,,,,,,,,,,20.5831304,13.88735165,29.3836985,,,,15.52832127,26,167436,10.143615,22.7525885,,,,,,,,,,,,,16.68163737,10.89699937,24.4424638,,,,19.58163413,46,234914,14.33621726,26.11915582,,,,,,,,,,,,,19.60945267,14.19145813,26.41380406,,,,12.7027027,,3700,,,37,10,0.63801816,16161,25330,,,0.693,,,,,39.19955403,,,,,0.760594853,9871,12978,0.735326535,0.785863171,0.079196965,1002,12652,0.058408034,0.099985896,0.856064109,11110,12978,0.841428675,0.870699542,32993,,,,,0.23611069,7790,32993,,,0.180250356,5947,32993,,,0.026551087,876,32993,,,0.003849301,127,32993,,,0.006546843,216,32993,,,0.000757737,25,32993,,,0.02185312,721,32993,,,0.920680144,30376,32993,,,0.00458035,142,31002,0,0.00964748,0.490861698,16195,32993,,,0.747266063,24668,33011,, -18,053,18053,IN,Grant County,2024,1,13418.26647,1474,180521,12335.00731,14501.52563,0,,,,2,,,,2,22440.84744,17030.79638,27850.8985,,10488.68841,6573.205187,15880.00031,1,13063.34686,11901.78914,14224.90458,,,,,2,,0.189,,,0.16,0.22,4.191741671,,,3.340197049,5.138365151,5.871381159,,,4.850615324,6.979116777,0.097452721,505,5182,0.08937778,0.105527662,0,,,,,,,0.173515982,0.13805049,0.208981474,0.089403974,0.057223392,0.121584555,0.088788384,0.080187018,0.09738975,,,,0.12244898,0.07655647,0.168341489,0.225,,,0.184,0.269,0.397,,,0.328,0.468,7,0.082507345,0.139,,,0.298,,,0.247,0.349,0.734709182,48986,66674,,,0.160002919,,,0.12849461,0.196928094,0.127272727,7,55,0.067924776,0.201461982,590.1,391,66263,,,24.52419793,451,18390,22.26079115,26.78760472,,,,,,,57.53424658,44.21089479,73.61129433,37.90983607,26.69202312,52.25371531,20.48271363,18.21713709,22.74829018,,,,42.36200257,29.16005337,59.49200163,0.082456819,4053,49153,0.070541925,0.094371712,0.000422559,28,66263,,,2366.535714,0.000636152,42,66022,,,1571.952381,0.002953561,195,66022,,,338.574359,3841,,,,,,,6341,6675,3663,0.44,,,,,,,0.33,0.46,0.44,0.45,,,,,,0.54,0.32,0.45,0.46,0.885834184,39052,44085,0.873155538,0.89851283,0.576231159,8296,14397,0.523671775,0.628790543,0.032556232,1032,31699,,,0.292,3984,,0.236,0.348,,,,,,,0.688334818,0.563285742,0.813383893,0.569808028,0.461901292,0.677714764,0.209036791,0.163635735,0.254437847,4.229742417,103616,24497,3.783673678,4.675811157,0.251001717,3508,13976,0.210076009,0.291927426,15.39320586,102,66263,,,119.5083777,394,329684,107.7077173,131.3090381,,,,,,,187.3456527,136.1256381,251.5027944,86.71869789,46.17405437,148.2916144,120.4581713,107.5779685,133.338374,,,,8.7,,,,,0,,,,,0.120468489,3240,26895,0.101913496,0.139023481,0.104576399,0.087271487,0.121881312,0.01617401,0.008285393,0.024062627,0.005949061,0.00149242,0.010405703,0.750532082,21511,28661,0.727377718,0.773686446,,,,,,,0.714714715,0.603187241,0.826242188,0.833333333,0.701040349,0.965626318,0.76816758,0.741294253,0.795040907,0.252,,28661,0.221459731,0.282540269,71.91129297,,,71.16916815,72.65341779,,,,,,,66.51024109,63.37092466,69.64955752,78.42094651,71.85700604,84.98488698,72.02646069,71.23272313,72.82019825,,,,619.9021441,1474,180521,585.9863973,653.817891,,,,,,,856.8882525,700.9183441,1012.858161,414.5749111,275.4820177,599.1761752,618.7290418,582.3972019,655.0608818,,,,99.34129083,65,65431,76.66951098,126.61863,,,,,,,217.155266,112.2072948,379.3265481,,,,95.36108076,70.31173304,126.4349581,,,,8.568164509,45,5252,6.249677987,11.46487824,,,,,,,,,,,,,8.905554254,6.302100222,12.223569,,,,,,,0.128,,,0.109,0.147,0.186,,,0.161,0.211,0.111,,,0.095,0.129,126,71,56355,,,0.139,9260,,,,0.082507345,5780.547096,70061,,,48.66747441,96,197257,39.42081052,59.431316,,,,,,,98.79331028,54.01122205,165.7583877,,,,44.44978376,34.9026407,55.80263305,,,,0.347,,,0.331,0.362,0.096991863,3421,35271,0.081502501,0.112481225,0.046410891,675,14544,0.032113019,0.060708763,0.000999667,66,66022,,,1000.333333,0.925210396,747.57,808,,,0.048593926,216,4445,0.017307822,0.07988003,2.955795196,,,,,,,2.554144953,2.833452459,3.015382962,2.943671805,,,,,,,2.376750838,2.886972189,3.070552353,0.133168257,,,,,-527.0084713,,,,,0.802839148,40663,50649,0.740591674,0.865086621,51053,,,47609.59575,54496.40426,86554,56171.02128,116936.9787,,,,29884,6888.255319,52879.74468,45337,34215.6383,56458.3617,54658,50730.85106,58585.14894,,,,,,0.549979887,5469,9944,,,62.41148594,,,,,0.298963822,,51053,,,5.078855921,19,3741,,,6.887645286,32,464600,4.711144277,9.72330006,,,,,,,30.33336367,14.54602692,55.78413578,,,,5.584323282,3.49966567,8.454732558,,,,20.34926177,63,329684,15.41233214,26.36482892,19.10920761,,,,,,,,,,,,,21.94996214,16.39328161,28.78445504,,,,17.89592458,59,329684,13.62320696,23.08443885,,,,,,,,,,,,,17.9253231,13.30452031,23.63230382,,,,16.35815756,76,464600,12.8883676,20.47467348,,,,,,,,,,,,,16.49913697,12.73368559,21.02950447,,,,,,6200,,,142,-888,0.524406256,27159,51790,,,0.646,,,,,58.99058184,,,,,0.720301318,19124,26550,0.703502633,0.737100004,0.119472155,3042,25462,0.099883583,0.139060726,0.841619586,22345,26550,0.819425103,0.863814068,66022,,,,,0.211732453,13979,66022,,,0.19682833,12995,66022,,,0.074126806,4894,66022,,,0.004680258,309,66022,,,0.00883039,583,66022,,,0.000484687,32,66022,,,0.050286268,3320,66022,,,0.836645361,55237,66022,,,0.003746513,235,62725,0.000670721,0.006822304,0.517009482,34134,66022,,,0.385652578,25713,66674,, -18,055,18055,IN,Greene County,2024,1,10144.08312,595,86893,8783.945155,11504.22109,0,,,,2,,,,2,,,,2,,,,2,10446.86124,9029.720356,11864.00212,,,,,2,,0.176,,,0.146,0.207,4.035336002,,,3.184377973,4.890495007,5.491284373,,,4.41559768,6.539781919,0.089254766,206,2308,0.077622821,0.100886711,0,,,,,,,,,,,,,0.091112104,0.079192214,0.103031993,,,,,,,0.215,,,0.173,0.26,0.372,,,0.299,0.449,7.6,0.059716481,0.122,,,0.277,,,0.227,0.331,0.452585787,13941,30803,,,0.164984675,,,0.130401116,0.202124365,0.222222222,6,27,0.123749407,0.332441015,321.6,99,30786,,,25.47671147,163,6398,21.56555098,29.38787197,,,,,,,,,,,,,26.32455848,22.21979041,30.42932655,,,,,,,0.094993686,2332,24549,0.081887303,0.108100069,0.000292341,9,30786,,,3420.666667,0.000451526,14,31006,,,2214.714286,0.00070954,22,31006,,,1409.363636,3743,,,,,,,,,3760,0.39,,,,,,,,,0.39,0.37,,,,,,,,,0.38,0.882677237,19373,21948,0.865194772,0.900159703,0.580902973,4143,7132,0.5160679,0.645738045,0.037871034,518,13678,,,0.177,1144,,0.110276596,0.243723404,,,,,,,,,,0.321266968,0.09882156,0.543712376,0.215057283,0.166637156,0.26347741,4.125565521,103956,25198,3.668391223,4.58273982,0.247885196,1641,6620,0.183802666,0.311967727,15.9163256,49,30786,,,87.3697311,139,159094,72.84494752,101.8945147,,,,,,,,,,,,,89.43843111,74.46159904,104.4152632,,,,7.7,,,,,0,,,,,0.134719015,1750,12990,0.111538502,0.157899527,0.089353465,0.068829194,0.109877736,0.034642032,0.022828239,0.046455826,0.014626636,0.005934507,0.023318765,0.8094771,10728,13253,0.78626996,0.832684239,,,,,,,,,,,,,0.771307787,0.731005946,0.811609628,0.442,,13253,0.391759258,0.492240742,74.70962214,,,73.69638038,75.7228639,,,,,,,,,,,,,74.40676768,73.36628389,75.44725147,,,,481.8844723,595,86893,440.3366045,523.4323402,,,,,,,,,,,,,492.8089443,450.0357606,535.582128,,,,76.16650661,23,30197,48.28303155,114.2871573,,,,,,,,,,,,,81.06869691,51.39059969,121.6428497,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.124,,,0.106,0.143,0.181,,,0.155,0.206,0.106,,,0.09,0.123,88,23,26149,,,0.122,3770,,,,0.059716481,1980.497081,33165,,,18.96513576,18,94911,11.2399414,29.97309086,,,,,,,,,,,,,19.73770779,11.69781655,31.19408775,,,,0.363,,,0.344,0.38,0.106226699,1909,17971,0.089545848,0.12290755,0.065764858,457,6949,0.045509539,0.086020177,0.000580533,18,31006,,,1722.555556,0.903287671,329.7,365,,,,,,,,3.283335397,,,,,,,,,3.280389676,3.318044142,,,,,,,,,3.320314247,0.032199952,,,,,-1164.47762,,,,,0.844123497,45413,53799,0.710595016,0.977651977,61663,,,54114.91489,69211.08511,,,,,,,32500,24615.91489,40384.08511,49350,7969.574468,90730.42553,57393,53268.06383,61517.93617,,,,,,0.47988326,2302,4797,,,,,,,,0.236641098,,61663,,,2.977963073,5,1679,,,,,,,,,,,,,,,,,,,,,,,,,,16.36478614,25,159094,10.37387062,24.55521424,15.71398041,,,,,,,,,,,,,16.31825812,10.22656549,24.70603891,,,,16.34253963,26,159094,10.67548947,23.94560705,,,,,,,,,,,,,16.97371685,11.08779539,24.87042792,,,,21.89983285,49,223746,16.2016169,28.95274043,,,,,,,,,,,,,22.25312935,16.40770089,29.50442104,,,,17.87878788,,3300,,,35,24,0.590533253,14784,25035,,,0.609,,,,,24.03855865,,,,,0.754251364,9536,12643,0.725662252,0.782840477,0.096768848,1168,12070,0.073828335,0.119709362,0.785335759,9929,12643,0.759480622,0.811190896,31006,,,,,0.213507063,6620,31006,,,0.202928466,6292,31006,,,0.003741211,116,31006,,,0.004289492,133,31006,,,0.004483003,139,31006,,,0.000290266,9,31006,,,0.021511965,667,31006,,,0.955782752,29635,31006,,,0.004816067,141,29277,0,0.011357294,0.493549636,15303,31006,,,0.828003766,25505,30803,, -18,057,18057,IN,Hamilton County,2024,1,4661.151108,2552,986672,4388.266061,4934.036155,0,,,,2,3155.771411,2334.657063,4172.097164,,7254.658565,5669.625912,8839.691218,,2420.938941,1644.910554,3436.329581,,4765.945243,4459.186076,5072.704411,,,,,2,,0.097,,,0.08,0.118,2.519069891,,,1.98620995,3.10741251,4.222720591,,,3.557884675,4.914073375,0.066012825,1750,26510,0.063023757,0.069001894,0,,,,0.103811434,0.090423432,0.117199437,0.117740652,0.099923029,0.135558276,0.072408537,0.058384843,0.08643223,0.059181493,0.056029319,0.062333667,,,,0.057220708,0.033457522,0.080983895,0.102,,,0.077,0.13,0.285,,,0.244,0.326,9,0.054837282,0.06,,,0.165,,,0.135,0.199,0.922317803,320475,347467,,,0.174057122,,,0.147466154,0.204450523,0.209302326,18,86,0.155082301,0.267846226,208,742,356650,,,4.146854593,341,82231,3.70670765,4.587001535,,,,,,,11.80607888,8.67466269,15.6995821,10.20612367,7.599129445,13.41916778,3.40599455,2.955915623,3.856073478,,,,5.524861879,3.15793593,8.972029557,0.050990144,15748,308844,0.043841208,0.05813908,0.001387915,495,356650,,,720.5050505,0.000742627,271,364921,,,1346.571956,0.001846975,674,364921,,,541.425816,2105,,,,,,922,2221,,2097,0.53,,,,,,0.46,0.43,0.24,0.53,0.6,,,,,,0.53,0.44,0.46,0.6,0.97159567,223775,230317,0.967153148,0.976038192,0.872033763,81618,93595,0.840965481,0.903102044,0.02128919,4172,195968,,,0.04,3619,,0.026893617,0.053106383,,,,0.048495808,0.014628952,0.082362664,0.140939597,0.075180599,0.206698596,0.143152358,0.083373688,0.202931028,0.028567281,0.021450302,0.03568426,3.863845329,212639,55033,3.658961354,4.068729305,0.130157052,11818,90798,0.111819583,0.148494521,9.785503996,349,356650,,,45.66582306,773,1692732,42.44655149,48.88509463,,,,14.60506979,8.348059309,23.71771832,45.78631259,31.70835248,63.98178256,,,,50.44175835,46.72089313,54.16262356,,,,10.2,,,,,0,,,,,0.083533092,10280,123065,0.074610962,0.092455222,0.071749062,0.063304686,0.080193438,0.008247674,0.005160805,0.011334544,0.007760127,0.004775139,0.010745115,0.741267465,136666,184368,0.726326179,0.756208751,,,,0.569395018,0.487187287,0.651602749,0.775158405,0.748643801,0.801673009,0.676259913,0.616611454,0.735908372,0.718026298,0.701394573,0.734658023,0.434,,184368,0.412062354,0.455937646,80.99884981,,,80.70354174,81.29415787,,,,85.04429297,83.28383908,86.80474686,77.08791503,75.47205723,78.70377283,88.86910199,84.48531318,93.25289081,80.79667041,80.48016993,81.11317089,,,,227.7943498,2552,986672,218.8463863,236.7423133,,,,137.3708192,108.2325812,171.9400647,353.9302428,294.3905526,413.4699331,130.8211268,91.12170811,181.9405188,232.5552425,222.7799809,242.3305042,,,,36.41159875,143,392732,30.44361268,42.37958482,,,,51.55398439,28.185043,86.49882575,66.76310226,34.49746917,116.6217038,,,,35.39708055,28.75184674,42.04231437,,,,5.056985433,134,26498,4.200745704,5.913225162,,,,,,,,,,,,,4.807032001,3.887560157,5.726503846,,,,,,,0.075,,,0.062,0.088,0.129,,,0.11,0.148,0.081,,,0.069,0.093,95.4,280,293387,,,0.06,20620,,,,0.054837282,15056.61754,274569,,,12.70575869,132,1038899,10.53820578,14.87331161,,,,,,,,,,,,,14.4141357,11.86676516,16.96150624,,,,0.27,,,0.255,0.286,0.057391873,12472,217313,0.049051447,0.065732298,0.037239015,3585,96270,0.0277071,0.04677093,0.001161895,424,364921,,,860.6627359,0.939954508,4545.62,4836,,,0.0431692,832,19273,0.020922202,0.065416198,3.61192275,,,,,,4.005536346,3.105046516,3.143247032,3.65310379,3.81314275,,,,,,4.502065833,3.068872148,3.234925494,3.850157538,0.04906892,,,,,3049.702267,,,,,0.684167377,64257,93920,0.653221436,0.715113317,117068,,,109958.383,124177.617,,,,143062,137292.8085,148831.1915,96582,77236.97872,115927.0213,87713,72403.55319,103022.4468,115471,112209.8936,118732.1064,,,,,,0.157837469,9719,61576,,,39.94489793,,,,,0.237844672,,117068,,,3.695387782,79,21378,,,1.423148678,33,2318802,0.979630066,1.998629864,,,,,,,,,,,,,1.141461299,0.715347719,1.728186124,,,,11.47010215,192,1692732,9.829833565,13.11037073,11.34261064,,,,,,,,,,,,,12.41985233,10.54481927,14.2948854,,,,8.093425303,137,1692732,6.738148046,9.44870256,,,,,,,16.15987503,8.350043239,28.22804957,,,,8.430775474,6.909588524,9.951962425,,,,5.175086101,120,2318802,4.249145712,6.101026489,,,,,,,,,,,,,5.395998867,4.358921273,6.433076461,,,,6.013824885,,43400,,,208,53,0.844538766,193999,229710,,,0.765,,,,,85.74467104,,,,,0.763065611,99007,129749,0.752761586,0.773369636,0.073950549,9490,128329,0.06566239,0.082238708,0.956300241,124079,129749,0.950894559,0.961705923,364921,,,,,0.250169215,91292,364921,,,0.139608299,50946,364921,,,0.049161325,17940,364921,,,0.002312829,844,364921,,,0.072538988,26471,364921,,,0.000657677,240,364921,,,0.048577637,17727,364921,,,0.807161002,294550,364921,,,0.013137784,4315,328442,0.01034754,0.015928027,0.506345209,184776,364921,,,0.05740689,19947,347467,, -18,059,18059,IN,Hancock County,2024,1,6739.027992,1056,223570,6104.392889,7373.663095,0,,,,2,,,,2,,,,2,,,,2,6965.388026,6291.282255,7639.493798,,,,,2,,0.132,,,0.109,0.16,3.437649563,,,2.711716165,4.270151813,4.431788963,,,3.588563657,5.350348377,0.064785789,372,5742,0.058419008,0.07115257,0,,,,,,,0.129186603,0.083713539,0.174659667,,,,0.062630878,0.056078454,0.069183301,,,,,,,0.157,,,0.121,0.198,0.327,,,0.268,0.392,8.4,0.084532495,0.073,,,0.215,,,0.174,0.26,0.693436874,55364,79840,,,0.169137638,,,0.136013249,0.204706307,0.244897959,12,49,0.171048131,0.323578132,240.9,197,81789,,,9.452126729,162,17139,7.996573473,10.90767998,,,,,,,,,,,,,9.946949602,8.355106135,11.53879307,,,,,,,0.066260808,4506,68004,0.056728893,0.075792723,0.000831408,68,81789,,,1202.779412,0.000337065,28,83070,,,2966.785714,0.001131576,94,83070,,,883.7234043,2495,,,,,,,4638,,2474,0.52,,,,,,0.43,0.57,,0.52,0.57,,,,,,0.63,0.36,0.48,0.58,0.933258876,51808,55513,0.921881226,0.944636527,0.750853242,15400,20510,0.692137551,0.809568934,0.025715084,1104,42932,,,0.051,941,,0.030744681,0.071255319,,,,,,,0.156989247,0,0.344733319,0.098214286,0,0.198189089,0.042913038,0.027098237,0.058727839,3.544660626,151396,42711,3.145344503,3.943976749,0.144151432,2673,18543,0.105610341,0.182692523,8.191810635,67,81789,,,70.10433777,274,390846,61.80342823,78.40524731,,,,,,,,,,,,,74.62144291,65.67059695,83.57228886,,,,9.7,,,,,0,,,,,0.076455696,2265,29625,0.060106635,0.092804757,0.066021724,0.050534586,0.081508863,0.008270042,0.002355758,0.014184326,0.008270042,0.003366577,0.013173507,0.783605059,32587,41586,0.768090684,0.799119435,,,,,,,,,,0.800188501,0.630927031,0.969449972,0.730766394,0.699303665,0.762229123,0.426,,41586,0.390856113,0.461143887,77.86345527,,,77.28615377,78.44075677,,,,,,,78.70988708,73.77098218,83.64879198,97.11152084,59.89019622,134.3328455,77.55313551,76.95667636,78.14959466,,,,357.0519675,1056,223570,334.7594227,379.3445122,,,,,,,,,,,,,367.2389632,343.7093503,390.7685761,,,,33.58459587,27,80394,22.1324603,48.86382373,,,,,,,,,,,,,32.45104126,20.57117647,48.6924952,,,,4.047870468,23,5682,2.566002646,6.073793188,,,,,,,,,,,,,,,,,,,,,,0.099,,,0.083,0.116,0.154,,,0.131,0.18,0.087,,,0.073,0.102,93.4,64,68491,,,0.073,5770,,,,0.084532495,5917.443724,70002,,,25.05114609,60,239510,19.11666358,32.24579074,,,,,,,,,,,,,27.05528449,20.5957361,34.8993458,,,,0.326,,,0.308,0.343,0.073480144,3597,48952,0.06156525,0.085395037,0.049467314,989,19993,0.035169441,0.063765186,0.000638016,53,83070,,,1567.358491,0.940645617,998.025,1061,,,,,,,,3.401305252,,,,,,,3.160865519,2.909977581,3.427121182,3.633312066,,,,,,,3.236590301,3.343557693,3.66100073,0.066816219,,,,,1382.207,,,,,0.759770248,52646,69292,0.689804163,0.829736333,87845,,,81694.53192,93995.46809,,,,105536,42073.70213,168998.2979,99457,68424.65957,130489.3404,84563,52153.29787,116972.7021,85047,81890.74468,88203.25532,,,,,,0.267743797,3712,13864,,,59.36326396,,,,,0.237497866,,87845,,,3.521901827,16,4543,,,2.234291534,12,537083,1.154491039,3.902857668,,,,,,,,,,,,,2.227631542,1.11202564,3.985848163,,,,13.64087025,56,390846,10.21794787,17.84259414,14.32789385,,,,,,,,,,,,,14.84996403,11.09066342,19.47375213,,,,12.02519663,47,390846,8.835662171,15.99096226,,,,,,,,,,,,,12.57664768,9.173493119,16.8285441,,,,12.66098536,68,537083,9.83175054,16.05081583,,,,,,,,,,,,,13.16327729,10.15913951,16.77767748,,,,5.862068966,,8700,,,35,16,0.73971729,42911,58010,,,0.773,,,,,44.94367899,,,,,0.804226069,25272,31424,0.779175035,0.829277103,0.066666667,2062,30930,0.052321545,0.081011789,0.912741853,28682,31424,0.898717619,0.926766087,83070,,,,,0.227795835,18923,83070,,,0.173323703,14398,83070,,,0.040146864,3335,83070,,,0.003671602,305,83070,,,0.012158421,1010,83070,,,0.000505598,42,83070,,,0.033754665,2804,83070,,,0.893246659,74202,83070,,,0.00480674,364,75727,0.001312519,0.008300961,0.503972553,41865,83070,,,0.276753507,22096,79840,, -18,061,18061,IN,Harrison County,2024,1,10699.33153,742,112205,9482.526573,11916.13649,0,,,,2,,,,2,,,,2,,,,2,11010.0743,9743.903754,12276.24486,,,,,2,,0.162,,,0.134,0.191,3.871517366,,,3.033597821,4.780684967,5.287033765,,,4.24072367,6.358482487,0.081604896,240,2941,0.071710679,0.091499114,0,,,,,,,,,,,,,0.082588488,0.072387278,0.092789698,,,,,,,0.197,,,0.155,0.24,0.379,,,0.305,0.457,8.9,0.000168497,0.094,,,0.258,,,0.209,0.31,0.415241842,16466,39654,,,0.176671591,,,0.139797191,0.214674436,0.02173913,1,46,0.000751766,0.090806153,216.3,86,39761,,,19.26550271,160,8305,16.28028214,22.25072328,,,,,,,,,,,,,19.65993624,16.4925041,22.82736837,,,,,,,0.077281192,2490,32220,0.066557788,0.088004596,0.000477855,19,39761,,,2092.684211,0.000401496,16,39851,,,2490.6875,0.000401496,16,39851,,,2490.6875,2875,,,,,,,,,2900,0.49,,,,,,,,,0.5,0.5,,,,,,,,,0.5,0.902189417,25301,28044,0.884535166,0.919843668,0.546899346,5265,9627,0.484656858,0.609141833,0.024978089,513,20538,,,0.101,858,,0.060489362,0.141510638,,,,,,,,,,0.105919003,0,0.341477371,0.094078864,0.059077536,0.129080192,3.655338523,124446,34045,3.336328611,3.974348434,0.159522456,1403,8795,0.108197572,0.21084734,7.545081864,30,39761,,,96.41859587,194,201206,82.85059043,109.9866013,,,,,,,,,,,,,99.62601126,85.49698831,113.7550342,,,,9.5,,,,,0,,,,,0.071551428,1040,14535,0.051337391,0.091765464,0.052374302,0.035158487,0.069590117,0.014791882,0.004405047,0.025178716,0.006191951,0.001603849,0.010780052,0.823121708,14845,18035,0.794434505,0.851808911,,,,,,,,,,,,,0.799837998,0.759665417,0.84001058,0.553,,18035,0.50016984,0.60583016,74.76760089,,,73.83593921,75.69926257,,,,,,,,,,,,,74.42201921,73.46888483,75.37515359,,,,492.4017344,742,112205,454.8305284,529.9729404,,,,,,,,,,,,,507.7979035,468.8359712,546.7598358,,,,58.7424018,23,39154,37.23764376,88.14244495,,,,,,,,,,,,,61.16377992,38.33101524,92.60269784,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.116,,,0.099,0.134,0.175,,,0.15,0.199,0.099,,,0.083,0.115,71.3,24,33639,,,0.094,3710,,,,0.000168497,6.632721014,39364,,,40.50992907,49,120958,29.96946853,53.55627457,,,,,,,,,,,,,41.72280412,30.76310211,55.31838514,,,,0.339,,,0.32,0.356,0.084532834,1985,23482,0.070234961,0.098830706,0.059335874,545,9185,0.041463533,0.077208214,0.000702617,28,39851,,,1423.25,0.944977117,412.955,437,,,,,,,,3.271890432,,,,,,,,,3.267641393,3.434102558,,,,,,,,,3.44063167,0.044122679,,,,,1134.3012,,,,,0.753704999,47399,62888,0.666648215,0.840761784,72259,,,63397.89362,81120.10638,,,,187692,29245.3617,346138.6383,,,,,,,71815,66969.21277,76660.78723,,,,,,0.415410385,2480,5970,,,53.33606509,,,,,0.231140758,,72259,,,7.459207459,16,2145,,,3.563664873,10,280610,1.708915825,6.553706583,,,,,,,,,,,,,3.734757521,1.7909614,6.868352054,,,,18.44237001,38,201206,12.91680922,25.5320138,18.88611672,,,,,,,,,,,,,19.20725165,13.45252292,26.5909324,,,,18.38911365,37,201206,12.94763306,25.34697084,,,,,,,,,,,,,19.29927967,13.58847393,26.60151481,,,,21.02562275,59,280610,16.00567821,27.12152146,,,,,,,,,,,,,21.28811787,16.12341258,27.5812259,,,,16.19047619,,4200,,,50,18,0.654357316,20236,30925,,,0.738,,,,,9.100530022,,,,,0.832191549,12269,14743,0.807796893,0.856586204,0.053096085,746,14050,0.035686157,0.070506014,0.79536051,11726,14743,0.773803794,0.816917226,39851,,,,,0.218162656,8694,39851,,,0.196833204,7844,39851,,,0.007603322,303,39851,,,0.003387619,135,39851,,,0.006172994,246,39851,,,0.000627337,25,39851,,,0.022132443,882,39851,,,0.947253519,37749,39851,,,0.001890812,71,37550,0,0.005306838,0.495395348,19742,39851,,,0.856357492,33958,39654,, -18,063,18063,IN,Hendricks County,2024,1,5961.765208,1770,493695,5545.736857,6377.793559,0,,,,2,3030.277052,1732.065161,4920.980084,1,6521.492721,4934.551226,8108.434217,,3835.350721,2342.73186,5923.388123,1,6190.207242,5720.100978,6660.313506,,,,,2,,0.126,,,0.105,0.15,3.057022593,,,2.42975108,3.767170158,4.810841411,,,4.038001308,5.649231592,0.066770441,815,12206,0.06234195,0.071198932,0,,,,0.08008658,0.055335826,0.104837334,0.106877323,0.088416619,0.125338028,0.074135091,0.053292704,0.094977477,0.060923515,0.056195508,0.065651522,,,,0.089552239,0.050077089,0.129027388,0.145,,,0.111,0.184,0.338,,,0.286,0.396,8.8,0.069774712,0.064,,,0.218,,,0.181,0.262,0.771202829,134797,174788,,,0.180085107,,,0.148841377,0.2153414,0.147540984,9,61,0.088198851,0.218037854,268.2,481,179355,,,7.525083612,297,39468,6.66925032,8.380916904,,,,,,,9.852216749,6.900371488,13.63962082,8.908685969,5.441656831,13.75874294,7.390839249,6.431477488,8.350201011,,,,6.830601093,3.275538727,12.56171861,0.058699902,8798,149881,0.050359476,0.067040328,0.000485072,87,179355,,,2061.551724,0.000465667,85,182534,,,2147.458824,0.001298388,237,182534,,,770.185654,2518,,,,,,1385,4116,,2503,0.52,,,,,,0.5,0.46,0.43,0.53,0.56,,,,,,0.52,0.46,0.49,0.56,0.934771374,110332,118031,0.92322536,0.946317387,0.729951732,34480,47236,0.693800533,0.766102931,0.024026477,2294,95478,,,0.055,2401,,0.03593617,0.07406383,,,,0.215301286,0.080048958,0.350553615,0.251470176,0.153616876,0.349323477,0.050920486,0.00424248,0.097598491,0.031736174,0.020575005,0.042897342,3.242106532,161418,49788,3.03020564,3.454007423,0.134179742,5781,43084,0.108266129,0.160093355,8.419057177,151,179355,,,66.42369885,567,853611,60.95621388,71.89118382,,,,46.60737173,24.08270909,81.41369887,32.99389613,20.67709905,49.95315525,,,,73.79864726,67.46161948,80.13567504,,,,10.2,,,,,1,,,,,0.080009949,4825,60305,0.067509279,0.09251062,0.063803169,0.053519419,0.07408692,0.014509576,0.00739592,0.021623233,0.006881685,0.003284419,0.01047895,0.788841892,72549,91969,0.774861417,0.802822368,,,,0.669390535,0.54033121,0.798449859,0.739098455,0.661229241,0.81696767,0.69200931,0.601704259,0.782314361,0.763772672,0.748204767,0.779340578,0.414,,91969,0.387410826,0.440589174,78.76610705,,,78.36949768,79.16271641,,,,87.34667658,82.34499338,92.34835978,78.33746496,76.18687016,80.48805976,86.6310169,81.06300213,92.19903167,78.44397307,78.01632483,78.87162132,,,,298.6104226,1770,493695,284.4378953,312.7829499,,,,139.8415012,88.647516,209.8309133,284.8041542,227.5862378,342.0220705,176.4274231,114.1745259,260.4416799,311.3273427,295.6417917,327.0128937,,,,33.37442335,62,185771,25.58797901,42.78450451,,,,,,,,,,,,,34.0504781,25.19073115,45.01653783,,,,5.23342748,63,12038,4.02150937,6.695827155,,,,,,,,,,,,,4.922644163,3.641799251,6.507996644,,,,,,,0.09,,,0.077,0.105,0.143,,,0.123,0.166,0.09,,,0.077,0.105,128.3,192,149613,,,0.064,11060,,,,0.069774712,10148.59234,145448,,,24.28683711,127,522917,20.06282484,28.51084938,,,,,,,,,,,,,27.83202554,22.83136465,32.83268643,,,,0.35,,,0.333,0.366,0.065295162,6954,106501,0.055763247,0.074827076,0.044428371,2027,45624,0.031321988,0.057534754,0.001035424,189,182534,,,965.7883598,0.966896177,2225.795,2302,,,0.0288,270,9375,0.011292944,0.046307056,3.698118106,,,,,,3.930789265,3.268626321,3.332452614,3.766212303,3.793050962,,,,,,4.097061565,3.245797622,3.334140782,3.877515207,0.057331321,,,,,1777.257967,,,,,0.740765766,52624,71040,0.691527189,0.790004343,94760,,,86990.29787,102529.7021,49775,32043.25532,67506.74468,81184,37890.04255,124477.9575,86860,66858.46809,106861.5319,63374,61017.23404,65730.76596,98307,94466.82979,102147.1702,,,,,,0.270434347,8642,31956,,,46.91082103,,,,,0.264489236,,94760,,,3.535406052,34,9617,,,2.473531085,29,1172413,1.656562588,3.552403243,,,,,,,,,,,,,2.14499119,1.327783354,3.278846887,,,,14.01020996,123,853611,11.49871216,16.52170776,14.40937383,,,,,,,,,,,,,14.64859259,11.8338161,17.46336907,,,,11.12919117,95,853611,9.004180249,13.60485908,,,,,,,,,,,,,11.61514218,9.237867271,14.41745404,,,,7.33529908,86,1172413,5.867292434,9.05903469,,,,,,,,,,,,,7.660682822,6.025613003,9.602732254,,,,7.163461539,,20800,,,140,9,0.724975426,88505,122080,,,0.77,,,,,64.73395635,,,,,0.776268186,49994,64403,0.759849616,0.792686756,0.073451828,4678,63688,0.061101792,0.085801863,0.927534432,59736,64403,0.916001251,0.939067612,182534,,,,,0.2414783,44078,182534,,,0.151034876,27569,182534,,,0.104725695,19116,182534,,,0.003440455,628,182534,,,0.035681024,6513,182534,,,0.000723153,132,182534,,,0.050050949,9136,182534,,,0.787042414,143662,182534,,,0.01236382,2053,166049,0.008797215,0.015930426,0.497233392,90762,182534,,,0.152407488,26639,174788,, -18,065,18065,IN,Henry County,2024,1,10331.67748,996,133076,9292.620674,11370.73428,0,,,,2,,,,2,,,,2,,,,2,10812.15662,9693.854906,11930.45832,,,,,2,,0.169,,,0.141,0.199,3.88664235,,,3.102871482,4.719742721,5.179227641,,,4.218672341,6.202130962,0.079728059,258,3236,0.070395183,0.089060936,0,,,,,,,,,,,,,0.077603143,0.068114151,0.087092136,,,,,,,0.205,,,0.161,0.248,0.381,,,0.312,0.455,7.7,0.065562132,0.119,,,0.272,,,0.222,0.324,0.77456352,37887,48914,,,0.167648428,,,0.134094518,0.205987918,0.073170732,3,41,0.021027315,0.157624866,261.6,128,48935,,,22.56193991,214,9485,19.53902708,25.58485273,,,,,,,,,,34.70031546,17.32227245,62.08844957,22.56153145,19.41891013,25.70415277,,,,,,,0.072957599,2655,36391,0.062234195,0.083681004,0.000408705,20,48935,,,2446.75,0.000367985,18,48915,,,2717.5,0.001083512,53,48915,,,922.9245283,4151,,,,,,,,,4142,0.39,,,,,,,,,0.39,0.36,,,,,,,0.5,,0.36,0.911294939,31837,34936,0.898921581,0.923668297,0.534136213,6431,12040,0.487293369,0.580979056,0.031526077,703,22299,,,0.163,1577,,0.108191489,0.217808511,,,,,,,,,,0.405572755,0.1917974,0.619348111,0.16960107,0.131060965,0.208141175,3.951902531,105417,26675,3.500238761,4.4035663,0.198104648,1965,9919,0.15833824,0.237871055,13.28292633,65,48935,,,93.0956154,225,241687,80.93112166,105.2601092,,,,,,,,,,,,,97.1136407,84.25147057,109.9758108,,,,7.7,,,,,0,,,,,0.098449823,1810,18385,0.082143634,0.114756013,0.074986256,0.060049545,0.089922968,0.01631765,0.007810576,0.024824724,0.008974708,0.00385221,0.014097205,0.819624176,16531,20169,0.80109077,0.838157582,,,,,,,,,,,,,0.806683953,0.784287927,0.829079979,0.355,,20169,0.323884101,0.386115899,74.20731774,,,73.42904755,74.98558792,,,,,,,,,,,,,73.85862706,73.04078709,74.67646702,,,,533.9871066,996,133076,498.9942018,568.9800114,,,,,,,,,,,,,545.9538195,509.2526291,582.6550098,,,,55.32886092,24,43377,35.45024519,82.3249593,,,,,,,,,,,,,60.4716791,38.74534583,89.97706509,,,,6.144393241,20,3255,3.753155019,9.489517021,,,,,,,,,,,,,6.474587245,3.954846094,9.99947488,,,,,,,0.12,,,0.102,0.141,0.174,,,0.15,0.2,0.105,,,0.09,0.122,118.8,50,42099,,,0.119,5840,,,,0.065562132,3242.83418,49462,,,24.14792328,35,144940,16.81991335,33.58391567,,,,,,,,,,,,,25.1829467,17.43992266,35.19064387,,,,0.362,,,0.345,0.378,0.085697111,2281,26617,0.071399239,0.099994983,0.04018592,415,10327,0.028271027,0.052100814,0.001103956,54,48915,,,905.8333333,0.933878968,470.675,504,,,0.144899905,304,2098,0.081195492,0.208604317,3.287947079,,,,,,,,,3.315240239,3.390307938,,,,,,,,,3.408738723,0.049026528,,,,,-1546.65292,,,,,0.78827742,41167,52224,0.735677035,0.840877806,54714,,,49559.61702,59868.38298,135694,38072.89362,233315.1064,,,,,,,55987,15226.14894,96747.85106,58051,54662.40426,61439.59575,,,,,,0.465948211,3113,6681,,,74.55079619,,,,,0.283638557,,54714,,,4.074979625,10,2454,,,4.422261073,15,339193,2.475105952,7.293847123,,,,,,,,,,,,,4.731279117,2.648061006,7.803525393,,,,17.69039723,45,241687,12.7496823,23.9122779,18.61912308,,,,,,,,,,,,,18.07071067,12.85004181,24.70325636,,,,15.72281505,38,241687,11.1263997,21.58079207,,,,,,,,,,,,,16.40732742,11.55227267,22.61533958,,,,18.2786791,62,339193,14.01415845,23.43244167,,,,,,,,,,,,,19.24053508,14.71748478,24.71527223,,,,,,4700,,,41,-888,0.552113416,21030,38090,,,0.679,,,,,40.308379,,,,,0.752978597,13967,18549,0.728612599,0.777344595,0.087596085,1584,18083,0.069462744,0.105729425,0.844789477,15670,18549,0.824148824,0.865430129,48915,,,,,0.20186037,9874,48915,,,0.198200961,9695,48915,,,0.027374016,1339,48915,,,0.002248799,110,48915,,,0.004783809,234,48915,,,0.000347542,17,48915,,,0.022692426,1110,48915,,,0.928713074,45428,48915,,,0.001592254,74,46475,0,0.004274865,0.472615762,23118,48915,,,0.620660752,30359,48914,, -18,067,18067,IN,Howard County,2024,1,12296.78424,1721,227346,11419.3026,13174.26588,0,,,,2,,,,2,15573.11619,12171.36322,18974.86915,,7384.947181,4376.787733,11671.40039,1,12551.55651,11577.68554,13525.42747,,,,,2,,0.165,,,0.139,0.195,3.878000325,,,3.121193434,4.701183395,4.990532679,,,4.106444104,5.95488679,0.088714455,599,6752,0.081932353,0.095496557,0,,,,,,,0.130434783,0.105714178,0.155155388,0.116071429,0.074124196,0.158018661,0.079720794,0.072525598,0.08691599,,,,0.147601476,0.105369819,0.189833133,0.197,,,0.157,0.241,0.419,,,0.356,0.484,7.2,0.104391031,0.122,,,0.271,,,0.228,0.322,0.73293648,61316,83658,,,0.163164731,,,0.132578701,0.199236001,0.333333333,22,66,0.270103756,0.396677211,608.2,509,83687,,,27.86069652,476,17085,25.35779037,30.36360266,,,,,,,39.10991234,29.69779614,50.55863098,16.59292035,9.286931563,27.36749875,25.69243336,22.98521516,28.39965155,,,,62.36323851,47.23330784,80.79880898,0.072166337,4821,66804,0.062634423,0.081698252,0.000549667,46,83687,,,1819.282609,0.000897408,75,83574,,,1114.32,0.002261469,189,83574,,,442.1904762,3214,,,,,,,4704,,3197,0.45,,,,,,0.52,0.5,0.27,0.45,0.45,,,,,,0.49,0.31,0.25,0.46,0.912931916,52657,57679,0.899145018,0.926718814,0.601048666,11807,19644,0.554112665,0.647984667,0.049983656,1682,33651,,,0.212,3928,,0.156,0.268,,,,0.093167702,0,0.615293435,0.375339489,0.219309225,0.531369754,0.306085377,0.153103758,0.459066996,0.134479344,0.102466241,0.166492446,3.998992321,115087,28779,3.574013834,4.423970808,0.292817971,5553,18964,0.2400786,0.345557342,14.57813042,122,83687,,,117.9621554,488,413692,107.4959595,128.4283513,,,,,,,116.5391036,82.05428381,160.6338031,74.07906256,36.98000113,132.5479057,124.0911183,112.4162523,135.7659844,,,,7.3,,,,,0,,,,,0.101934739,3530,34630,0.08630048,0.117568998,0.089345576,0.073017688,0.105673465,0.009384926,0.004757682,0.014012171,0.00996246,0.005829465,0.014095456,0.814567527,29524,36245,0.793188602,0.835946451,,,,,,,0.785624212,0.668356931,0.902891493,0.701982228,0.553472255,0.850492201,0.834696589,0.8182091,0.851184079,0.22,,36245,0.194032091,0.245967909,72.96257911,,,72.34163525,73.58352297,,,,,,,69.61687516,67.30779389,71.92595643,83.12285645,75.43215139,90.81356152,72.75110306,72.07596927,73.42623685,,,,573.8651791,1721,227346,545.0714884,602.6588697,,,,,,,725.9796782,603.9475516,848.0118048,325.1798585,203.7884861,492.3262137,584.2708467,552.9570152,615.5846783,,,,64.37898573,53,82325,48.22427808,84.20929843,,,,,,,148.7541837,76.8634574,259.8436228,,,,56.86574944,39.82807181,78.72616692,,,,6.577985675,45,6841,4.798027889,8.801862374,,,,,,,,,,,,,5.561535702,3.778793681,7.894155993,,,,,,,0.118,,,0.102,0.137,0.172,,,0.149,0.198,0.108,,,0.093,0.125,175.7,123,69997,,,0.122,10130,,,,0.104391031,8638.566622,82752,,,46.59326888,116,248963,38.11415911,55.07237864,,,,,,,,,,,,,50.61622871,40.98031455,60.25214287,,,,0.352,,,0.334,0.367,0.0835406,3997,47845,0.070434217,0.096646983,0.044922953,895,19923,0.03181657,0.058029336,0.001376026,115,83574,,,726.7304348,0.923390298,837.515,907,,,0.037237978,151,4055,0.013028714,0.061447241,3.000010061,,,,,,,2.446235558,2.598744835,3.093016019,3.123296374,,,,,,,2.467420445,2.919126075,3.243183301,0.091617464,,,,,512.19618,,,,,0.743633135,44383,59684,0.680583556,0.806682713,56960,,,52401.3617,61518.6383,36290,31700.38298,40879.61702,,,,42688,18795.06383,66580.93617,48377,42076.40426,54677.59575,65148,61117.19149,69178.80851,,,,,,0.43203289,4939,11432,,,47.47057238,,,,,0.295997191,,56960,,,5.401080216,27,4999,,,6.56512605,38,578816,4.64587393,9.011148434,,,,,,,27.5811345,14.25157467,48.17869139,,,,4.885416624,3.130178614,7.269112685,,,,18.07921442,74,413692,14.06670795,22.88040294,17.8877039,,,,,,,,,,,,,19.98214807,15.38868889,25.51675699,,,,14.5035437,60,413692,11.06773178,18.66893568,,,,,,,31.49705503,15.10406216,57.92420562,,,,13.43843908,9.874059572,17.87027513,,,,19.52261168,113,578816,15.92300735,23.12221601,,,,,,,,,,,,,20.15234358,16.37883044,24.53475521,,,,12.73809524,,8400,,,101,6,0.6443581,40630,63055,,,0.679,,,,,64.21336638,,,,,0.716651887,25052,34957,0.700239978,0.733063795,0.093558282,3172,33904,0.078358701,0.108757864,0.864862545,30233,34957,0.847270075,0.882455016,83574,,,,,0.226230646,18907,83574,,,0.200828009,16784,83574,,,0.079330892,6630,83574,,,0.005013521,419,83574,,,0.013568813,1134,83574,,,0.000622203,52,83574,,,0.040921818,3420,83574,,,0.834254673,69722,83574,,,0.003105432,244,78572,0.000761537,0.005449327,0.512886783,42864,83574,,,0.25660427,21467,83658,, -18,069,18069,IN,Huntington County,2024,1,8671.345641,605,101543,7584.102939,9758.588342,0,,,,2,,,,2,,,,2,,,,2,9011.323158,7859.24799,10163.39833,,,,,2,,0.161,,,0.135,0.191,3.80430767,,,3.029360835,4.680901266,5.181856637,,,4.239563998,6.196964245,0.089832869,258,2872,0.079375027,0.100290711,0,,,,,,,,,,,,,0.090033346,0.079234706,0.100831986,,,,,,,0.195,,,0.154,0.236,0.379,,,0.31,0.449,7.7,0.097390588,0.101,,,0.244,,,0.199,0.295,0.757405488,27768,36662,,,0.161313069,,,0.129904467,0.194933573,0.1875,6,32,0.100598348,0.289089816,258.7,95,36717,,,21.45294978,176,8204,18.28347899,24.62242057,,,,,,,,,,44.16403786,24.14489046,74.09975117,21.21980515,17.92143873,24.51817158,,,,,,,0.083378877,2441,29276,0.071463983,0.095293771,0.000544707,20,36717,,,1835.85,0.000407232,15,36834,,,2455.6,0.001140251,42,36834,,,877,2937,,,,,,,,,2958,0.47,,,,,,,,,0.47,0.49,,,,,,,,,0.49,0.925714286,23490,25375,0.913254422,0.938174149,0.620318457,5532,8918,0.563958941,0.676677973,0.026437218,487,18421,,,0.141,1102,,0.096914894,0.185085106,,,,,,,,,,0.110759494,0,0.28697441,0.137321454,0.092313191,0.182329717,3.649117589,110415,30258,3.355789,3.942446178,0.202282816,1595,7885,0.138574267,0.265991365,16.61355775,61,36717,,,85.61596848,156,182209,72.18063205,99.05130491,,,,,,,,,,,,,89.53176052,75.39099779,103.6725233,,,,8.8,,,,,1,,,,,0.096348884,1425,14790,0.076729675,0.115968094,0.078290598,0.059284576,0.09729662,0.007775524,0.002109098,0.01344195,0.012846518,0.004672471,0.021020565,0.829765488,14613,17611,0.805010642,0.854520333,,,,,,,,,,,,,0.81795977,0.777018087,0.858901453,0.324,,17611,0.291066579,0.356933421,75.42073306,,,74.57550502,76.2659611,,,,,,,,,,,,,75.0671238,74.1905106,75.94373699,,,,442.3251972,605,101543,405.2611434,479.3892511,,,,,,,,,,,,,453.9017446,415.3505275,492.4529618,,,,56.17504143,20,35603,34.31317469,86.75779542,,,,,,,,,,,,,61.00536847,37.26366394,94.21784377,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.116,,,0.099,0.134,0.172,,,0.148,0.196,0.101,,,0.085,0.117,99.7,31,31105,,,0.101,3680,,,,0.097390588,3615.528187,37124,,,34.66141273,38,109632,24.52847859,47.57549704,,,,,,,,,,,,,35.80344874,25.20893206,49.35033785,,,,0.353,,,0.334,0.373,0.093617021,2002,21385,0.07812766,0.109106383,0.057149747,474,8294,0.040468896,0.073830598,0.00070587,26,36834,,,1416.692308,0.89,293.7,330,,,,,,,,3.193402713,,,,,,,,,3.212840375,3.101054633,,,,,,,,,3.119413518,0.019254869,,,,,1315.14,,,,,0.748544078,41131,54948,0.672487379,0.824600778,59491,,,51989.38298,66992.61702,46923,1807.255319,92038.74468,50734,23765.82979,77702.17021,115565,61029.34043,170100.6596,,,,60756,57480.59575,64031.40426,,,,,,0.422938351,2113,4996,,,62.04144397,,,,,0.26583853,,59491,,,5.360623782,11,2052,,,,,,,,,,,,,,,,,,,,,,,,,,15.18453894,27,182209,9.826632981,22.4153749,14.81814839,,,,,,,,,,,,,16.10038343,10.41931925,23.76734203,,,,10.97640622,20,182209,6.704674075,16.95216916,,,,,,,,,,,,,11.62750137,7.102379909,17.95773281,,,,15.27979658,39,255239,10.86542906,20.88798493,,,,,,,,,,,,,15.737857,11.13704428,21.60143832,,,,12.43243243,,3700,,,29,17,0.631562168,17829,28230,,,0.71,,,,,48.18919012,,,,,0.755819321,11462,15165,0.732489722,0.77914892,0.079339069,1162,14646,0.06193304,0.096745097,0.829277943,12576,15165,0.810617965,0.84793792,36834,,,,,0.216186132,7963,36834,,,0.186132378,6856,36834,,,0.008307542,306,36834,,,0.005972743,220,36834,,,0.007058696,260,36834,,,0.000760167,28,36834,,,0.030488136,1123,36834,,,0.938127817,34555,36834,,,0.006930807,240,34628,0.001715265,0.01214635,0.500542977,18437,36834,,,0.52116633,19107,36662,, -18,071,18071,IN,Jackson County,2024,1,9203.723144,749,124999,8214.129759,10193.31653,0,,,,2,,,,2,,,,2,7210.387098,4341.124047,11259.91262,1,9569.975609,8482.72892,10657.2223,,,,,2,,0.177,,,0.149,0.206,3.907761324,,,3.05832166,4.852999611,5.09457801,,,4.065756523,6.217851908,0.067081604,291,4338,0.059637116,0.074526093,0,,,,,,,,,,0.077546296,0.059712163,0.09538043,0.063630881,0.055322693,0.071939069,,,,,,,0.203,,,0.161,0.248,0.408,,,0.335,0.488,7.4,0.098124824,0.113,,,0.272,,,0.224,0.324,0.739489101,34333,46428,,,0.167139457,,,0.133189712,0.206453228,0.122807018,7,57,0.065190688,0.195296596,316.9,146,46067,,,40.22015241,380,9448,36.17618186,44.26412297,,,,,,,,,,94.60580913,77.23894326,111.972675,32.5140809,28.51545573,36.51270607,,,,,,,0.105980477,4028,38007,0.090491116,0.121469839,0.000672933,31,46067,,,1486.032258,0.00062635,29,46300,,,1596.551724,0.000885529,41,46300,,,1129.268293,1568,,,,,,,,,1552,0.43,,,,,,,,,0.43,0.51,,,,,,,,,0.51,0.900336444,28366,31506,0.885708313,0.914964575,0.554010785,6575,11868,0.494022288,0.613999283,0.027318021,647,23684,,,0.123,1359,,0.078914894,0.167085106,0.158730159,0,0.883886827,,,,,,,0.325120514,0.107288135,0.542952893,0.109041232,0.076197362,0.141885103,4.065253239,120799,29715,3.559862027,4.570644451,0.183405718,2027,11052,0.133057873,0.233753563,12.15620726,56,46067,,,103.8132261,231,222515,90.42562482,117.2008273,,,,,,,,,,,,,114.4158863,99.36486697,129.4669056,,,,8.5,,,,,0,,,,,0.113737075,1925,16925,0.09277033,0.134703821,0.093778179,0.073602949,0.113953408,0.016543575,0.009218328,0.023868821,0.006203841,0.001987592,0.010420089,0.827451515,18218,22017,0.80509898,0.84980405,,,,,,,,,,0.843163539,0.747158312,0.939168766,0.843781344,0.818941025,0.868621663,0.303,,22017,0.264336216,0.341663784,74.99156551,,,74.2025023,75.78062871,,,,,,,,,,,,,74.62408656,73.7921418,75.45603131,,,,464.9800292,749,124999,430.5261575,499.4339009,,,,,,,,,,279.9364431,149.0543661,478.6998433,484.4615487,447.1889541,521.7341432,,,,58.81858667,28,47604,39.08452369,85.0092344,,,,,,,,,,,,,45.55808656,26.53926429,72.94290986,,,,5.830223881,25,4288,3.773013491,8.606560564,,,,,,,,,,,,,,,,,,,,,,0.121,,,0.104,0.139,0.173,,,0.15,0.198,0.109,,,0.093,0.127,144.5,55,38059,,,0.113,5210,,,,0.098124824,4158.137526,42376,,,37.16919417,50,134520,27.58769234,49.00294875,,,,,,,,,,,,,42.94020148,31.8710452,56.61130243,,,,0.346,,,0.329,0.361,0.121278736,3255,26839,0.102214906,0.140342566,0.070421332,824,11701,0.047783034,0.093059629,0.001382289,64,46300,,,723.4375,0.836498092,438.325,524,,,,,,,,2.893833184,,,,,,,,2.416467732,3.043231536,3.114268582,,,,,,,,2.690027768,3.246859967,0.155265289,,,,,-3228.288288,,,,,0.829409614,45377,54710,0.747055853,0.911763375,66082,,,59447.78723,72716.21277,62981,1041.425532,124920.5745,148253,94021.17021,202484.8298,49093,23460.48936,74725.51064,46489,31925.42553,61052.57447,66069,62368.23404,69769.76596,,,,,,0.530648224,3913,7374,,,77.85529815,,,,,0.270058412,,66082,,,7.223618091,23,3184,,,3.541566725,11,310597,1.767937349,6.336841152,,,,,,,,,,,,,4.033751499,2.013634215,7.217495669,,,,18.51542217,38,222515,13.03656591,25.5210705,17.07750039,,,,,,,,,,,,,20.24151241,14.09895505,28.1510438,,,,12.13401344,27,222515,7.996391314,17.65435249,,,,,,,,,,,,,13.91544563,9.170366353,20.2462428,,,,20.28351851,63,310597,15.58641255,25.95143137,,,,,,,,,,,,,22.0022809,16.79005825,28.32129689,,,,,,4800,,,81,-888,0.60326121,19238,31890,,,0.697,,,,,69.82237651,,,,,0.731193809,12850,17574,0.709061949,0.753325669,0.082101029,1388,16906,0.061758833,0.102443225,0.803402754,14119,17574,0.774603569,0.832201939,46300,,,,,0.243866091,11291,46300,,,0.176673866,8180,46300,,,0.01300216,602,46300,,,0.006911447,320,46300,,,0.028293737,1310,46300,,,0.00174946,81,46300,,,0.092440605,4280,46300,,,0.853174946,39502,46300,,,0.026901262,1162,43195,0.014091193,0.03971133,0.493434125,22846,46300,,,0.477750495,22181,46428,, -18,073,18073,IN,Jasper County,2024,1,8683.184276,544,92583,7526.924294,9839.444257,0,,,,2,,,,2,,,,2,,,,2,8957.775274,7727.245674,10188.30487,,,,,2,,0.155,,,0.13,0.185,3.692811536,,,2.898955112,4.583261945,5.01065413,,,4.019892992,6.114403338,0.078257517,203,2594,0.067921841,0.088593194,0,,,,,,,,,,0.077464789,0.04637337,0.108556208,0.078543221,0.067497966,0.089588476,,,,,,,0.194,,,0.154,0.237,0.346,,,0.275,0.426,8.4,0.035126005,0.097,,,0.253,,,0.208,0.303,0.594082265,19556,32918,,,0.180420231,,,0.143138083,0.224114931,0.085714286,3,35,0.025377483,0.180112953,302.2,100,33091,,,16.2249195,131,8074,13.44646701,19.00337198,,,,,,,,,,30.94233474,19.39139645,46.84706665,14.99080752,12.13697708,17.84463797,,,,,,,0.087111719,2294,26334,0.075196825,0.099026612,0.000241758,8,33091,,,4136.375,0.000360566,12,33281,,,2773.416667,0.000570896,19,33281,,,1751.631579,2870,,,,,,,,,2881,0.41,,,,,,,,0.25,0.41,0.43,,,,,,,,0.27,0.43,0.929079571,21157,22772,0.914046906,0.944112237,0.577333836,4595,7959,0.509988268,0.644679403,0.033187226,530,15970,,,0.131,970,,0.085723404,0.176276596,,,,,,,,,,0.059125964,0,0.175334054,0.083359847,0.048793916,0.117925778,3.926682946,130252,33171,3.138406946,4.714958946,0.133377135,1015,7610,0.087218886,0.179535385,12.39007585,41,33091,,,92.26529267,154,166910,77.69279232,106.837793,,,,,,,,,,,,,95.20995437,79.71271193,110.7071968,,,,8.9,,,,,1,,,,,0.090335306,1145,12675,0.068315305,0.112355306,0.076524512,0.053583788,0.099465236,0.008284024,0.000303619,0.016264428,0.012938856,0.000525376,0.025352337,0.836628024,12485,14923,0.821673053,0.851582995,,,,,,,,,,0.830316742,0.728993873,0.931639611,0.810341556,0.774653985,0.846029128,0.487,,14923,0.435132564,0.538867436,75.97417359,,,75.03453405,76.91381312,,,,,,,,,,81.64552974,74.51171731,88.77934217,75.70585722,74.73437937,76.67733508,,,,434.5668913,544,92583,396.0892086,473.0445741,,,,,,,,,,,,,446.1513143,405.5400635,486.7625651,,,,52.33318796,18,34395,31.01596389,82.70899918,,,,,,,,,,,,,50.43542584,28.22832498,83.18556495,,,,8.781977854,23,2619,5.567020633,13.17727869,,,,,,,,,,,,,8.609556608,5.258940846,13.2967619,,,,,,,0.111,,,0.095,0.13,0.17,,,0.147,0.196,0.099,,,0.084,0.116,92.9,26,27987,,,0.097,3220,,,,0.035126005,1175.948405,33478,,,27.9739842,28,100093,18.58850934,40.43019586,,,,,,,,,,,,,29.62312798,19.521828,43.10009594,,,,0.373,,,0.356,0.388,0.097406705,1848,18972,0.081917343,0.112896066,0.062829922,488,7767,0.044957581,0.080702262,0.000901415,30,33281,,,1109.366667,0.928440111,333.31,359,,,,,,,,3.56663692,,,,,,,,3.453136306,3.576595581,3.450652737,,,,,,,,3.138486698,3.509335566,0.017734505,,,,,1784.029,,,,,0.724125685,46898,64765,0.648844284,0.799407086,75738,,,67590.59575,83885.40426,,,,,,,70441,60312.14894,80569.85106,93750,66499.44681,121000.5532,78636,74160.76596,83111.23404,,,,,,0.399520575,2000,5006,,,75.02215859,,,,,0.235892155,,75738,,,1.627780792,3,1843,,,,,,,,,,,,,,,,,,,,,,,,,,14.75101345,24,166910,9.244381597,22.33321164,14.37900665,,,,,,,,,,,,,16.141073,10.11552451,24.43777849,,,,10.78425499,18,166910,6.391432976,17.04377225,,,,,,,,,,,,,11.81916675,7.004787275,18.67937901,,,,17.10768862,40,233813,12.22198357,23.2958163,,,,,,,,,,,,,16.85906292,11.8078804,23.3400494,,,,15.13513514,,3700,,,30,26,0.611901938,15475,25290,,,0.74,,,,,14.57053825,,,,,0.811295205,10185,12554,0.78577521,0.836815199,0.057897741,710,12263,0.035528306,0.080267177,0.885454835,11116,12554,0.859132982,0.911776689,33281,,,,,0.226735976,7546,33281,,,0.188816442,6284,33281,,,0.006219765,207,33281,,,0.004116463,137,33281,,,0.004717406,157,33281,,,0.000510802,17,33281,,,0.06868784,2286,33281,,,0.907244374,30194,33281,,,0.006117481,191,31222,0.000411433,0.01182353,0.498692948,16597,33281,,,0.832644754,27409,32918,, -18,075,18075,IN,Jay County,2024,1,10888.66509,374,56482,9204.698354,12572.63182,0,,,,2,,,,2,,,,2,,,,2,11132.39229,9374.577331,12890.20726,,,,,2,,0.191,,,0.162,0.226,4.217695554,,,3.325822743,5.196696326,5.695115078,,,4.573261506,6.85868002,0.085616438,175,2044,0.073486505,0.097746372,0,,,,,,,,,,,,,0.085848075,0.073323764,0.098372386,,,,,,,0.228,,,0.185,0.277,0.382,,,0.305,0.462,7.2,0.11172051,0.117,,,0.297,,,0.246,0.354,0.491942573,10074,20478,,,0.165438567,,,0.13093861,0.205559796,0,0,20,0,0.119426131,296.3,60,20248,,,29.83802217,140,4692,24.89534681,34.78069752,,,,,,,,,,64.93506494,36.34366291,107.1005146,27.78415614,22.83352468,32.7347876,,,,,,,0.085200974,1399,16420,0.072094591,0.098307357,0.000296326,6,20248,,,3374.666667,0.000247549,5,20198,,,4039.6,0.000891177,18,20198,,,1122.111111,1510,,,,,,,,,1519,0.44,,,,,,,,,0.44,0.49,,,,,,,,,0.49,0.874981604,11891,13590,0.848252406,0.901710803,0.496583646,2253,4537,0.41895104,0.574216251,0.026890189,239,8888,,,0.206,1025,,0.138085106,0.273914894,,,,,,,,,,,,,0.198496241,0.140151946,0.256840536,3.684710991,98426,26712,3.307611487,4.061810495,0.190879354,992,5197,0.134777171,0.246981536,13.82852627,28,20248,,,125.4753961,129,102809,103.8223106,147.1284817,,,,,,,,,,,,,131.7387456,108.9161723,154.5613189,,,,9.1,,,,,0,,,,,0.101868596,845,8295,0.080039502,0.123697689,0.068693009,0.044862914,0.092523105,0.020494274,0.0092831,0.031705447,0.026522001,0.013522268,0.039521734,0.77062443,6763,8776,0.724829927,0.816418933,,,,,,,,,,,,,0.767545004,0.739126969,0.795963039,0.263,,8776,0.217147006,0.308852994,74.19456805,,,72.90688822,75.48224788,,,,,,,,,,,,,73.90832183,72.58892556,75.2277181,,,,505.3725115,374,56482,451.3369286,559.4080944,,,,,,,,,,,,,516.6850177,460.6818888,572.6881465,,,,70.61835194,16,22657,40.3644898,114.6797793,,,,,,,,,,,,,77.20889833,44.1315565,125.3824137,,,,10.64859632,22,2066,6.673418622,16.1221028,,,,,,,,,,,,,11.2704918,7.063157209,17.06366003,,,,,,,0.131,,,0.112,0.153,0.187,,,0.163,0.215,0.111,,,0.095,0.13,72.4,12,16585,,,0.117,2420,,,,0.11172051,2374.396005,21253,,,45.82651391,28,61100,30.45138569,66.23207192,,,,,,,,,,,,,46.84815991,30.87323258,68.16161304,,,,0.358,,,0.34,0.375,0.099384886,1131,11380,0.082704035,0.116065737,0.054473236,288,5287,0.036600896,0.072345577,0.000643628,13,20198,,,1553.692308,0.83,175.96,212,,,,,,,,3.303879138,,,,,,,,,3.305171636,3.35098188,,,,,,,,,3.354424995,0.0451625,,,,,-4429.279,,,,,0.803378077,37766,47009,0.723916377,0.882839776,57690,,,50014.42553,65365.57447,,,,77292,53231.06383,101352.9362,,,,,,,52785,48178.70213,57391.29787,,,,,,0.517761394,1545,2984,,,,,,,,0.263546542,,57690,,,2.144388849,3,1399,,,,,,,,,,,,,,,,,,,,,,,,,,24.06575354,21,102809,14.69998747,37.16760449,20.42622728,,,,,,,,,,,,,25.50657681,15.35662545,39.83167925,,,,11.67212987,12,102809,6.031159829,20.38886192,,,,,,,,,,,,,12.3505074,6.381687397,21.57385094,,,,26.21123496,38,144976,18.54862987,35.97696786,,,,,,,,,,,,,27.69093996,19.5957572,38.00797858,,,,3.913043478,,2300,,,9,0,0.549951251,8461,15385,,,0.681,,,,,26.32669345,,,,,0.765912743,6197,8091,0.740673699,0.791151787,0.087519623,669,7644,0.062689544,0.112349703,0.790507972,6396,8091,0.765603613,0.815412331,20198,,,,,0.252005149,5090,20198,,,0.190167343,3841,20198,,,0.005842163,118,20198,,,0.002624022,53,20198,,,0.004208338,85,20198,,,0.000495099,10,20198,,,0.036686801,741,20198,,,0.93949896,18976,20198,,,0.004110022,78,18978,0,0.00968177,0.49663333,10031,20198,,,0.689227464,14114,20478,, -18,077,18077,IN,Jefferson County,2024,1,9194.692967,607,90426,8022.156622,10367.22931,0,,,,2,,,,2,,,,2,,,,2,9651.65719,8382.039016,10921.27537,,,,,2,,0.172,,,0.145,0.204,3.923053817,,,3.121553263,4.785037873,5.564847093,,,4.534166419,6.6814756,0.081584158,206,2525,0.070907189,0.092261127,0,,,,,,,,,,,,,0.080694143,0.069574992,0.091813294,,,,,,,0.213,,,0.17,0.258,0.392,,,0.317,0.469,8,0.027069671,0.123,,,0.284,,,0.232,0.342,0.694301143,23014,33147,,,0.166933495,,,0.132652295,0.205116123,0.111111111,4,36,0.043224685,0.205492743,316.8,105,33141,,,25.58931048,203,7933,22.06911617,29.10950478,,,,,,,,,,,,,27.3328435,23.40472651,31.26096049,,,,,,,0.081678934,2053,25135,0.06976404,0.093593827,0.000603482,20,33141,,,1657.05,0.000607054,20,32946,,,1647.3,0.001244461,41,32946,,,803.5609756,3379,,,,,,,,,3383,0.46,,,,,,,,,0.46,0.52,,,,,,,0.4,,0.52,0.878543035,20333,23144,0.856147058,0.900939012,0.502730884,4050,8056,0.437631351,0.567830417,0.027921133,422,15114,,,0.145,905,,0.089,0.201,,,,,,,,,,0.655778895,0.482066035,0.829491754,0.104542177,0.06863094,0.140453415,4.244128196,110046,25929,3.756182615,4.732073777,0.232026638,1533,6607,0.168669848,0.295383429,11.76790079,39,33141,,,101.9424674,165,161856,86.38749515,117.4974396,,,,,,,,,,,,,108.2352312,91.56785598,124.9026065,,,,8.7,,,,,0,,,,,0.113361901,1455,12835,0.087801353,0.138922449,0.084700316,0.060096538,0.109304093,0.01908843,0.009080483,0.029096377,0.016361512,0.00551847,0.027204553,0.829029866,12297,14833,0.78667152,0.871388212,,,,,,,,,,,,,0.832565864,0.797526918,0.86760481,0.281,,14833,0.229297049,0.332702951,75.00074392,,,74.08119457,75.92029326,,,,,,,,,,,,,74.61963253,73.65283213,75.58643293,,,,473.3545369,607,90426,433.6081698,513.1009039,,,,,,,,,,,,,487.330705,445.5721103,529.0892996,,,,76.42719479,23,30094,48.4482855,114.6783176,,,,,,,,,,,,,83.61839605,52.40320362,126.5992565,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.119,,,0.102,0.139,0.18,,,0.155,0.206,0.102,,,0.087,0.12,123.2,35,28398,,,0.123,4070,,,,0.027069671,877.8152832,32428,,,26.65053967,26,97559,17.40901733,39.04921543,,,,,,,,,,,,,27.76420417,17.96752904,40.98544234,,,,0.373,,,0.354,0.391,0.089990324,1674,18602,0.074500962,0.105479685,0.059038969,403,6826,0.041166628,0.076911309,0.001153403,38,32946,,,867,0.813221154,253.725,312,,,,,,,,3.145416445,,,,,,,,,3.173245819,3.2414017,,,,,,,,,3.247674009,0.029020995,,,,,764.5547,,,,,0.795805287,38778,48728,0.625758708,0.965851865,64214,,,56488.38298,71939.61702,,,,36071,24324.10638,47817.89362,39792,10554.04255,69029.95745,23884,9345.446809,38422.55319,59804,53000.59575,66607.40426,,,,,,0.482904916,1935,4007,,,41.14776594,,,,,0.245055595,,64214,,,3.884572697,7,1802,,,,,,,,,,,,,,,,,,,,,,,,,,17.29305206,30,161856,11.49110751,24.99327507,18.53499407,,,,,,,,,,,,,18.6895083,12.41904254,27.01154315,,,,12.35666271,20,161856,7.547770602,19.08386337,,,,,,,,,,,,,13.36237423,8.162085322,20.63710324,,,,22.93881512,52,226690,17.13180431,30.08120417,,,,,,,,,,,,,24.75848573,18.49082136,32.46746008,,,,6.551724138,,2900,,,11,8,0.579763314,14697,25350,,,0.666,,,,,40.5528534,,,,,0.699612102,9018,12890,0.655753702,0.743470503,0.092009297,1148,12477,0.068112065,0.115906529,0.802715283,10347,12890,0.772103343,0.833327224,32946,,,,,0.197960299,6522,32946,,,0.195258909,6433,32946,,,0.019789959,652,32946,,,0.004188672,138,32946,,,0.009136162,301,32946,,,0.001365871,45,32946,,,0.033023736,1088,32946,,,0.920384872,30323,32946,,,0.004279646,134,31311,0,0.00919383,0.51384083,16929,32946,,,0.473647691,15700,33147,, -18,079,18079,IN,Jennings County,2024,1,10981.81972,561,77085,9557.409623,12406.22982,0,,,,2,,,,2,,,,2,,,,2,11214.72102,9742.711885,12686.73015,,,,,2,,0.173,,,0.145,0.203,4.060377225,,,3.222605698,4.980890318,5.701473983,,,4.645781103,6.824834771,0.071713147,162,2259,0.061073225,0.08235307,0,,,,,,,,,,,,,0.073611111,0.062598316,0.084623906,,,,,,,0.21,,,0.169,0.255,0.382,,,0.308,0.462,7.3,0.101727747,0.116,,,0.28,,,0.231,0.334,0.352406475,9731,27613,,,0.177223539,,,0.142713441,0.217830405,0.153846154,6,39,0.079396717,0.24495263,280.9,77,27409,,,37.90583036,223,5883,32.93064055,42.88102017,,,,,,,,,,,,,38.78521771,33.56420952,44.0062259,,,,,,,0.078629834,1779,22625,0.066714941,0.090544728,0.000437812,12,27409,,,2284.083333,0.000254213,7,27536,,,3933.714286,0.001125799,31,27536,,,888.2580645,2596,,,,,,,,,2631,0.4,,,,,,,,,0.4,0.45,,,,,,,,,0.45,0.888129534,16894,19022,0.867021554,0.909237514,0.505168539,3372,6675,0.434286638,0.576050441,0.032624633,445,13640,,,0.165,1018,,0.103042553,0.226957447,,,,,,,,,,0.340361446,0,0.741955023,0.154163541,0.10790253,0.200424552,3.775592619,114997,30458,3.07476367,4.476421569,0.261354707,1663,6363,0.170068008,0.352641406,5.472654967,15,27409,,,110.9531821,153,137896,93.37191719,128.534447,,,,,,,,,,,,,114.9724833,96.57305392,133.3719126,,,,8.5,,,,,1,,,,,0.09837587,1060,10775,0.067400808,0.129350932,0.075741875,0.050399827,0.101083923,0.021345708,0.007370065,0.03532135,0.002320186,0,0.005995246,0.832340492,10619,12758,0.795965435,0.86871555,,,,,,,,,,,,,0.820074436,0.774734392,0.86541448,0.335,,12758,0.279203175,0.390796825,73.65168531,,,72.59018009,74.71319054,,,,,,,,,,,,,73.34991376,72.273464,74.42636352,,,,548.209229,561,77085,500.7969658,595.6214922,,,,,,,,,,,,,562.8222281,513.6500264,611.9944298,,,,68.40930367,19,27774,41.18686961,106.8296017,,,,,,,,,,,,,71.03674178,42.10087525,112.2686778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.122,,,0.104,0.141,0.18,,,0.155,0.207,0.106,,,0.09,0.123,34.8,8,22958,,,0.116,3200,,,,0.101727747,2901.783981,28525,,,38.71326776,32,82659,26.47984649,54.65158311,,,,,,,,,,,,,39.74664718,27.00591838,56.41719299,,,,0.364,,,0.346,0.38,0.09017094,1477,16380,0.074681579,0.105660302,0.049458098,324,6551,0.033968736,0.06494746,0.000617374,17,27536,,,1619.764706,0.81,200.88,248,,,,,,,,3.054485145,,,,,,,,3.002775904,3.070990052,3.237170622,,,,,,,,2.966698394,3.259049033,0.032981802,,,,,717.7529,,,,,0.772133863,43353,56147,0.659979753,0.884287973,63597,,,56832.91489,70361.08511,,,,,,,74861,47475.80851,102246.1915,,,,66897,61599.6383,72194.3617,,,,,,0.562515536,2263,4023,,,56.20227195,,,,,0.270688869,,63597,,,1.806140879,3,1661,,,,,,,,,,,,,,,,,,,,,,,,,,25.61835543,38,137896,17.84412322,35.62893084,27.55699948,,,,,,,,,,,,,26.94270257,18.76657952,37.47077712,,,,21.03034171,29,137896,14.0843499,30.20307873,,,,,,,,,,,,,21.46153021,14.26103096,31.01788661,,,,24.28300551,47,193551,17.84223908,32.29124951,,,,,,,,,,,,,25.06579772,18.35131427,33.43426152,,,,,,2900,,,11,-888,0.582271863,12251,21040,,,0.65,,,,,44.16789421,,,,,0.809578434,8469,10461,0.772980739,0.84617613,0.088118812,890,10100,0.059387196,0.116850428,0.847146544,8862,10461,0.814860739,0.87943235,27536,,,,,0.230461941,6346,27536,,,0.171230389,4715,27536,,,0.007844277,216,27536,,,0.003704242,102,27536,,,0.003704242,102,27536,,,0.000762638,21,27536,,,0.03199448,881,27536,,,0.93917054,25861,27536,,,0.004233374,110,25984,0,0.009487674,0.492518884,13562,27536,,,0.748813964,20677,27613,, -18,081,18081,IN,Johnson County,2024,1,7220.801996,2046,453577,6753.701786,7687.902206,0,,,,2,2910.188415,1844.809816,4366.711512,1,11825.16331,8408.847097,16165.38753,,4913.327635,3209.548737,7199.163382,,7525.24001,7005.818904,8044.661116,,,,,2,,0.14,,,0.116,0.166,3.433497162,,,2.728946949,4.267828065,4.949341884,,,4.132813815,5.865265121,0.073464997,956,13013,0.068982309,0.077947684,0,,,,0.075449102,0.057534577,0.093363626,0.128571429,0.098933615,0.158209242,0.071017275,0.048961464,0.093073085,0.071546053,0.066717232,0.076374873,,,,,,,0.165,,,0.128,0.202,0.393,,,0.333,0.452,8.5,0.058401203,0.082,,,0.237,,,0.195,0.28,0.82729886,133828,161765,,,0.17199426,,,0.140743749,0.20625496,0.06122449,3,49,0.017066596,0.135337945,326.2,536,164298,,,14.48323145,507,35006,13.22251458,15.74394831,,,,,,,22.47191011,13.7264265,34.70604259,12.65182186,8.187592028,18.67658487,14.2107199,12.85965041,15.56178939,,,,25.80645161,17.14819968,37.29750778,0.075718224,10466,138223,0.066186309,0.085250138,0.000803418,132,164298,,,1244.681818,0.000675586,112,165782,,,1480.196429,0.001272756,211,165782,,,785.6966825,2863,,,,,,1444,,,2881,0.46,,,,,,0.22,0.37,0.27,0.46,0.54,,,,,,0.44,0.28,0.36,0.54,0.925556983,100161,108217,0.916962606,0.93415136,0.687402119,29847,43420,0.648386663,0.726417575,0.023779495,2074,87218,,,0.088,3437,,0.059404255,0.116595745,,,,0.029108551,0,0.091558563,0.198746643,0.032236917,0.365256368,0.143429844,0.036868357,0.249991331,0.085197052,0.061587598,0.108806506,3.83724156,146621,38210,3.558248776,4.116234343,0.155040533,6101,39351,0.124655783,0.185425282,8.581966914,141,164298,,,70.47456234,559,793194,64.63227982,76.31684486,,,,,,,106.2430436,65.76611851,162.4037779,,,,74.96251874,68.53171893,81.39331855,,,,9.8,,,,,0,,,,,0.097200622,5625,57870,0.08179829,0.112602954,0.085948396,0.071027702,0.10086909,0.010454467,0.00604075,0.014868184,0.004838431,0.001510081,0.008166781,0.797436214,64696,81130,0.778146025,0.816726402,,,,0.608789183,0.510501216,0.707077149,0.789694042,0.710192807,0.869195277,0.708094849,0.581935298,0.834254399,0.75089661,0.731534713,0.770258507,0.424,,81130,0.397571488,0.450428513,76.87206108,,,76.46896084,77.27516133,,,,81.58537912,79.10629385,84.06446439,70.96449073,67.79939461,74.12958685,80.46510962,76.5610897,84.36912953,76.60190485,76.16928298,77.03452673,,,,372.8231109,2046,453577,356.3376347,389.3085872,,,,177.0278979,115.6405004,259.386887,646.954206,457.8233009,887.9951939,312.642966,207.7489804,451.856134,382.7382301,365.1096402,400.3668201,,,,49.54765902,85,171552,39.57691021,61.26644768,,,,,,,,,,,,,52.14462382,40.94474519,65.4628001,,,,5.780346821,75,12975,4.546609457,7.245714794,,,,,,,,,,,,,5.879160637,4.537412059,7.493472849,,,,,,,0.101,,,0.085,0.117,0.161,,,0.138,0.184,0.095,,,0.08,0.11,121.9,166,136197,,,0.082,13030,,,,0.058401203,8155.961641,139654,,,31.25828034,151,483072,26.27250529,36.24405538,,,,,,,,,,,,,33.78506985,28.2281169,39.34202281,,,,0.321,,,0.304,0.338,0.0870669,8574,98476,0.073960517,0.100173283,0.049774407,2074,41668,0.036668024,0.06288079,0.001327044,220,165782,,,753.5545455,0.929467425,1797.59,1934,,,0.066277963,557,8404,0.032858175,0.09969775,3.38323719,,,,,,3.531227386,2.908711883,3.104573661,3.421921916,3.467450798,,,,,,3.738577355,2.903205424,3.116232502,3.526517742,0.064327642,,,,,260.9216167,,,,,0.7743709,50283,64934,0.731835187,0.816906612,83036,,,76503.06383,89568.93617,,,,106563,67552.44681,145573.5532,51903,28029.12766,75776.87234,57520,41705.3617,73334.6383,83674,81668.7234,85679.2766,,,,,,0.333933005,9281,27793,,,53.27722143,,,,,0.274290669,,83036,,,2.715478226,27,9943,,,2.283503333,25,1094809,1.477762957,3.370901381,,,,,,,,,,,,,1.858624742,1.101538815,2.937428393,,,,15.51432503,126,793194,12.76819064,18.26045942,15.88514285,,,,,,,,,,,,,16.34213527,13.32235893,19.36191162,,,,11.59867573,92,793194,9.350169664,14.22474615,,,,,,,,,,,,,11.77572134,9.365580639,14.61677511,,,,7.489890931,82,1094809,5.956932531,9.296929523,,,,,,,,,,,,,8.054040547,6.366384831,10.05180711,,,,11.97802198,,18200,,,140,78,0.678567994,77618,114385,,,0.759,,,,,72.92963795,,,,,0.740120118,44610,60274,0.723006779,0.757233457,0.106785336,6347,59437,0.08956341,0.124007262,0.905912997,54603,60274,0.893792426,0.918033569,165782,,,,,0.240351787,39846,165782,,,0.157821718,26164,165782,,,0.032120496,5325,165782,,,0.003353802,556,165782,,,0.055952999,9276,165782,,,0.000916867,152,165782,,,0.040631673,6736,165782,,,0.849742433,140872,165782,,,0.007777326,1185,152366,0.004838281,0.01071637,0.502334391,83278,165782,,,0.127345223,20600,161765,, -18,083,18083,IN,Knox County,2024,1,10624.90007,709,100399,9411.828221,11837.97192,0,,,,2,,,,2,,,,2,,,,2,10989.26384,9691.913126,12286.61455,,,,,2,,0.175,,,0.146,0.205,4.063883435,,,3.294373022,5.049265264,5.147865151,,,4.244431331,6.312064682,0.090781633,259,2853,0.080239263,0.101324004,0,,,,,,,0.178571429,0.078259415,0.278883442,,,,0.08692337,0.076141879,0.097704861,,,,,,,0.217,,,0.174,0.263,0.399,,,0.334,0.485,7.9,0.019309776,0.128,,,0.292,,,0.244,0.347,0.620114657,22499,36282,,,0.159395912,,,0.130163084,0.199786619,0.225806452,7,31,0.133616464,0.327772988,392.1,141,35956,,,23.20767052,213,9178,20.09095029,26.32439075,,,,,,,,,,35.81267218,19.06873965,61.24076011,25.55743904,21.97939758,29.13548051,,,,,,,0.08896861,2480,27875,0.075862227,0.102074993,0.000723106,26,35956,,,1382.923077,0.000502948,18,35789,,,1988.277778,0.002151499,77,35789,,,464.7922078,3010,,,,,,,,,3021,0.45,,,,,,,,,0.45,0.51,,,,,,,0.43,,0.51,0.890631466,21523,24166,0.870880105,0.910382827,0.563557331,4797,8512,0.498164948,0.628949714,0.026526801,483,18208,,,0.176,1300,,0.110468085,0.241531915,,,,,,,0.119047619,0,0.722519123,0.709589041,0.628359704,0.790818378,0.138246703,0.090501625,0.185991781,4.719118739,114382,24238,4.261668158,5.176569321,0.229100946,1743,7608,0.167408493,0.290793399,17.24329736,62,35956,,,91.56560839,168,183475,77.71930588,105.4119109,,,,,,,,,,,,,97.5661676,82.67895654,112.4533787,,,,9,,,,,0,,,,,0.132038196,2005,15185,0.100709731,0.16336666,0.103624161,0.076857569,0.130390753,0.016463615,0.007477495,0.025449736,0.014751399,0.001606353,0.027896446,0.855754562,15146,17699,0.824883763,0.886625362,,,,,,,,,,,,,0.862472736,0.834390881,0.89055459,0.231,,17699,0.193378358,0.268621642,73.9230571,,,73.02628566,74.81982855,,,,,,,,,,,,,73.58539999,72.64743611,74.52336387,,,,540.9858314,709,100399,498.7178703,583.2537926,,,,,,,,,,,,,551.3138439,507.3005227,595.327165,,,,56.32291806,21,37285,34.864774,86.09556319,,,,,,,,,,,,,52.02595177,30.30703412,83.29858862,,,,7.536827681,22,2919,4.723289782,11.41084768,,,,,,,,,,,,,,,,,,,,,,0.124,,,0.106,0.143,0.177,,,0.154,0.203,0.106,,,0.091,0.123,101.6,31,30521,,,0.128,4650,,,,0.019309776,742.2677945,38440,,,11.91873258,13,109072,6.346223129,20.3813957,,,,,,,,,,,,,11.96184173,6.180858171,20.89493022,,,,0.361,,,0.343,0.378,0.102938286,2095,20352,0.086257435,0.119619137,0.052704928,416,7893,0.036024077,0.06938578,0.001676493,60,35789,,,596.4833333,0.925,316.35,342,,,,,,,,3.057561797,,,,,,,,,3.065898346,3.034469934,,,,,,,,,3.100230868,0.047099358,,,,,992.3961667,,,,,0.82940794,39547,47681,0.73310691,0.925708971,58238,,,51462,65014,,,,240806,55770.08511,425841.9149,53315,40588.70213,66041.29787,36250,6172.042553,66327.95745,59594,55606.08511,63581.91489,,,,,,0.456801819,2411,5278,,,73.04727727,,,,,0.252601394,,58238,,,2.989536622,6,2007,,,3.858828614,10,259146,1.850458312,7.096523212,,,,,,,,,,,,,,,,,,,16.93612036,31,183475,11.25392898,24.47740938,16.89603488,,,,,,,,,,,,,18.09697758,12.02531018,26.15517129,,,,14.17086797,26,183475,9.256881437,20.7636049,,,,,,,,,,,,,15.37406277,10.04284823,22.52656406,,,,18.13649449,47,259146,13.32601397,24.11769286,,,,,,,,,,,,,19.65080108,14.4386695,26.13139961,,,,19.71428571,,3500,,,56,13,0.559238561,16011,28630,,,0.602,,,,,53.7106928,,,,,0.654955498,9787,14943,0.632892404,0.677018591,0.079596802,1145,14385,0.053999558,0.105194046,0.849427826,12693,14943,0.829499975,0.869355677,35789,,,,,0.210763084,7543,35789,,,0.188745145,6755,35789,,,0.029645981,1061,35789,,,0.003883875,139,35789,,,0.010031015,359,35789,,,0.000475006,17,35789,,,0.027941546,1000,35789,,,0.914079745,32714,35789,,,0.013601868,466,34260,0.005408345,0.021795391,0.4875241,17448,35789,,,0.454274847,16482,36282,, -18,085,18085,IN,Kosciusko County,2024,1,8368.138882,1197,221685,7635.513813,9100.76395,0,,,,2,,,,2,,,,2,6869.829103,4836.993675,9469.154484,,8525.905277,7727.48717,9324.323383,,,,,2,,0.157,,,0.13,0.185,3.636341581,,,2.868530302,4.485818638,4.911590133,,,3.986993442,5.910716522,0.069736649,474,6797,0.063681415,0.075791883,0,,,,,,,,,,0.079831933,0.059951361,0.099712504,0.066723696,0.060326215,0.073121176,,,,,,,0.193,,,0.152,0.236,0.369,,,0.307,0.435,8.4,0.049058261,0.092,,,0.253,,,0.209,0.303,0.604773181,48527,80240,,,0.175848252,,,0.142639615,0.211815329,0.180555556,13,72,0.122870027,0.245173541,332.1,266,80106,,,22.79248552,421,18471,20.61524348,24.96972756,,,,,,,,,,33.58843537,26.5922806,41.86121223,21.12029385,18.81339745,23.42719025,,,,,,,0.110624586,7175,64859,0.096326713,0.124922458,0.000436921,35,80106,,,2288.742857,0.000321679,26,80826,,,3108.692308,0.001942444,157,80826,,,514.8152866,3371,,,,,,,,,3441,0.45,,,,,,,,0.32,0.45,0.46,,,,,,0.53,,0.32,0.46,0.878197771,47442,54022,0.864069024,0.892326518,0.575030193,11427,19872,0.530137232,0.619923154,0.025171066,1030,40920,,,0.128,2346,,0.092255319,0.163744681,0.953947368,0.015108638,1,0.440993789,0,0.963250832,,,,0.272067715,0.180576751,0.363558678,0.083698685,0.062260691,0.105136679,3.707104378,124555,33599,3.344454265,4.069754491,0.223654324,4234,18931,0.182264823,0.265043824,15.85399346,127,80106,,,68.74842609,273,397100,60.59317179,76.90368039,,,,,,,,,,39.75170474,21.16610859,67.97662575,73.21421906,64.22790867,82.20052946,,,,8.9,,,,,0,,,,,0.107279085,3375,31460,0.085204148,0.129354021,0.082213692,0.063228071,0.101199312,0.024475525,0.015959832,0.032991217,0.003496504,0.001175985,0.005817022,0.774062636,30327,39179,0.746419245,0.801706026,,,,,,,,,,0.65969271,0.573266215,0.746119206,0.807522757,0.78323168,0.831813834,0.213,,39179,0.191094735,0.234905265,76.80990887,,,76.18888254,77.43093521,,,,,,,,,,84.4397293,76.52852936,92.35092923,76.5698861,75.91235933,77.22741288,,,,417.2493669,1197,221685,392.4056864,442.0930474,,,,,,,,,,332.7047953,239.7843522,449.7202308,424.6884923,398.3152795,451.0617052,,,,52.89224407,44,83188,38.43158552,71.0053689,,,,,,,,,,,,,56.04389122,39.65999299,76.92461937,,,,6.525522042,45,6896,4.759760555,8.731661905,,,,,,,,,,,,,6.010016695,4.209341806,8.320396409,,,,,,,0.11,,,0.093,0.128,0.165,,,0.143,0.19,0.097,,,0.083,0.113,56.9,38,66786,,,0.092,7390,,,,0.049058261,3795.048951,77358,,,18.86396982,45,238550,13.75950903,25.24147579,,,,,,,,,,,,,21.57311127,15.7355754,28.86652021,,,,0.337,,,0.319,0.353,0.123069907,5667,46047,0.105197566,0.140942247,0.081440162,1606,19720,0.058801864,0.10407846,0.000692846,56,80826,,,1443.321429,0.927943038,733.075,790,,,,,,,,3.058373493,,,,,,,,2.721751346,3.132186287,3.196124843,,,,,,,,2.904494972,3.266127218,0.043495483,,,,,322.9482033,,,,,0.701528075,43017,61319,0.653606614,0.749449535,71611,,,63476.70213,79745.29787,,,,79883,8416.276596,151349.7234,35585,7901.93617,63268.06383,69675,45136.2766,94213.7234,71742,67810.08511,75673.91489,,,,,,0.44463503,4666,10494,,,65.90490217,,,,,0.260490707,,71611,,,3.373015873,17,5040,,,,,,,,,,,,,,,,,,,,,,,,,,12.93133247,50,397100,9.501456707,17.19593084,12.59128683,,,,,,,,,,,,,13.79970544,9.98691525,18.58811266,,,,9.56937799,38,397100,6.771861407,13.13471894,,,,,,,,,,,,,10.62323963,7.479741071,14.64273647,,,,17.12291731,95,554812,13.85346263,20.93187848,,,,,,,,,,,,,17.22130193,13.73638487,21.32114361,,,,12.14285714,,8400,,,86,16,0.619098694,35787,57805,,,0.633,,,,,44.1987061,,,,,0.761436552,23852,31325,0.743725759,0.779147345,0.085358296,2617,30659,0.066471433,0.10424516,0.852322426,26699,31325,0.832814476,0.871830376,80826,,,,,0.23193032,18746,80826,,,0.185707569,15010,80826,,,0.011048425,893,80826,,,0.005010764,405,80826,,,0.015465321,1250,80826,,,0.000717591,58,80826,,,0.088572984,7159,80826,,,0.869571673,70284,80826,,,0.013540522,1023,75551,0.008447033,0.018634012,0.497636899,40222,80826,,,0.48363659,38807,80240,, -18,087,18087,IN,Lagrange County,2024,1,5995.031105,415,113451,5152.113136,6837.949074,0,,,,2,,,,2,,,,2,,,,2,6081.290409,5205.66417,6956.916649,,,,,2,,0.198,,,0.163,0.233,4.345848942,,,3.478088,5.424406457,5.646465838,,,4.561662961,6.860054759,0.050009692,258,5159,0.044061842,0.055957542,0,,,,,,,,,,0.097142857,0.053264334,0.14102138,0.048100243,0.042137989,0.054062496,,,,,,,0.236,,,0.187,0.283,0.357,,,0.284,0.435,9.2,0.017284784,0.069,,,0.303,,,0.248,0.359,0.305370123,12351,40446,,,0.187197046,,,0.150121727,0.227791509,0.121212121,4,33,0.047978546,0.220989323,130.8,53,40524,,,12.55613601,137,10911,10.45355954,14.65871248,,,,,,,,,,14.18439716,6.801969782,26.08561141,12.66840941,10.45636985,14.88044897,,,,,,,0.249364309,8630,34608,0.219577075,0.279151543,0.000246767,10,40524,,,4052.4,0.000318113,13,40866,,,3143.538462,0.000611756,25,40866,,,1634.64,2644,,,,,,,,,2703,0.36,,,,,,,,,0.37,0.47,,,,,,,,0.32,0.48,0.605819881,14261,23540,0.582842941,0.628796821,0.267839252,2406,8983,0.22411083,0.311567674,0.021573428,467,21647,,,0.094,1191,,0.05706383,0.13093617,,,,,,,,,,,,,0.038415774,0.022012413,0.054819135,3.320045676,127928,38532,2.976321399,3.663769953,0.091260634,1180,12930,0.062153515,0.120367753,7.64978778,31,40524,,,51.78742018,103,198890,41.78599856,61.78884181,,,,,,,,,,,,,54.08444671,43.53650367,64.63238974,,,,8.7,,,,,0,,,,,0.095257075,1195,12545,0.074622793,0.115891356,0.06077569,0.042856518,0.078694861,0.033080909,0.020972925,0.045188893,0.005898764,0,0.011898228,0.512849866,8960,17471,0.476204044,0.549495687,,,,,,,,,,0.729977117,0.630098824,0.829855409,0.561877577,0.526518049,0.597237105,0.337,,17471,0.28351553,0.39048447,78.62479542,,,77.77111508,79.47847577,,,,,,,,,,84.46444079,73.35233039,95.57655118,78.4457581,77.57842512,79.31309108,,,,322.2684364,415,113451,290.3905073,354.1463655,,,,,,,,,,,,,327.8956607,294.9399205,360.851401,,,,62.6118068,35,55900,43.61141754,87.07786649,,,,,,,,,,,,,61.86324357,42.3144128,87.33244163,,,,6.349817202,33,5197,4.370921988,8.917504189,,,,,,,,,,,,,6.010819475,4.055474659,8.580818552,,,,,,,0.131,,,0.11,0.152,0.184,,,0.157,0.21,0.105,,,0.088,0.122,44.6,14,31362,,,0.069,2760,,,,0.017284784,641.7494585,37128,,,8.315524252,10,120257,3.9876171,15.29254517,,,,,,,,,,,,,,,,,,,0.351,,,0.332,0.368,0.242528894,5267,21717,0.211550171,0.273507618,0.257889656,3473,13467,0.200698167,0.315081146,0.000538345,22,40866,,,1857.545455,0.913349515,282.225,309,,,0.147463768,407,2760,0.088658999,0.206268537,3.080632633,,,,,,,,2.810269346,3.109036993,3.284678723,,,,,,,,2.980546655,3.327762941,0.105532493,,,,,-1477.0441,,,,,0.671878343,40824,60761,0.609102517,0.734654169,81010,,,72316.89362,89703.10638,,,,,,,,,,75486,41859.78723,109112.2128,82606,79161.40426,86050.59575,,,,,,0.278717201,1434,5145,,,,,,,,0.198876682,,81010,,,1.11049417,4,3602,,,,,,,,,,,,,,,,,,,,,,,,,,13.52222771,23,198890,8.474308111,20.47281525,11.56418121,,,,,,,,,,,,,13.89909546,8.603759157,21.24624385,,,,9.05022877,18,198890,5.363739142,14.30326325,,,,,,,,,,,,,9.638812284,5.712571036,15.23347895,,,,12.28283762,34,276809,8.506222119,17.16403444,,,,,,,,,,,,,12.68625732,8.732635809,17.81622198,,,,,,5800,,,44,-888,0.405375524,10633,26230,,,0.691,,,,,9.287786371,,,,,0.829760304,10489,12641,0.805257687,0.854262921,0.066775777,816,12220,0.047256198,0.086295357,0.655644332,8288,12641,0.626990363,0.684298301,40866,,,,,0.314368913,12847,40866,,,0.144129594,5890,40866,,,0.004649342,190,40866,,,0.003254539,133,40866,,,0.003817354,156,40866,,,0.000293643,12,40866,,,0.045147555,1845,40866,,,0.93760094,38316,40866,,,0.033325172,1225,36759,0.025916881,0.040733463,0.486957373,19900,40866,,,1,40446,40446,, -18,089,18089,IN,Lake County,2024,1,10590.98752,8686,1368714,10253.45462,10928.52041,0,,,,2,3099.547105,1805.60041,4962.675172,1,16296.19705,15433.14596,17159.24814,,7875.381511,7245.510339,8505.252682,,9321.462844,8886.224983,9756.700705,,,,,2,,0.174,,,0.151,0.2,3.83933012,,,3.227782417,4.495636377,5.408290188,,,4.727461969,6.13298992,0.087475866,3398,38845,0.084666199,0.090285532,0,,,,0.073022312,0.0500558,0.095988824,0.135502072,0.129203428,0.141800716,0.071242496,0.065876862,0.07660813,0.064432693,0.060784339,0.068081048,,,,0.091970803,0.070329387,0.113612219,0.187,,,0.155,0.22,0.411,,,0.372,0.453,7.5,0.104362797,0.108,,,0.263,,,0.228,0.3,0.932771205,465173,498700,,,0.171164728,,,0.147076419,0.198063276,0.273381295,76,278,0.243137168,0.304231208,581.7,2900,498558,,,19.55774743,2197,112334,18.73992339,20.37557148,,,,,,,33.07720212,31.03012421,35.12428003,19.86970684,18.29288505,21.44652863,11.10728431,10.1489013,12.06566733,,,,19.93355482,15.21140231,25.65843635,0.092741258,37522,404588,0.083209343,0.102273173,0.000507464,253,498558,,,1970.58498,0.000634395,317,499689,,,1576.305994,0.002159343,1079,499689,,,463.1037998,4285,,,,,,940,7365,3858,3749,0.41,,,,,,0.36,0.38,0.39,0.41,0.43,,,,,,0.5,0.27,0.37,0.47,0.902132324,305333,338457,0.897091497,0.907173151,0.600834537,74876,124620,0.5809071,0.620761974,0.045700539,10429,228203,,,0.205,23234,,0.16806383,0.24193617,0.051383399,0,0.271119713,0.119469027,0.013890344,0.22504771,0.430258538,0.39864194,0.461875137,0.248579309,0.217180693,0.279977926,0.089842692,0.06559127,0.114094114,4.661240254,129135,27704,4.458668814,4.863811694,0.349877366,40513,115792,0.32667935,0.373075383,9.126320308,455,498558,,,98.17180106,2397,2441638,94.2416539,102.1019482,,,,,,,134.8786794,125.3455342,144.4118245,63.41009073,56.29362231,70.52655915,99.27104508,93.8746096,104.6674806,,,,10.3,,,,,1,,,,,0.141217631,26640,188645,0.132894489,0.149540773,0.119766152,0.111712682,0.127819622,0.018765406,0.015928433,0.021602379,0.010416391,0.007934232,0.01289855,0.818758424,181626,221831,0.80981631,0.827700539,,,,0.691512915,0.590234633,0.792791198,0.794784945,0.770103683,0.819466206,0.796960698,0.767766075,0.82615532,0.846649495,0.832914946,0.860384044,0.42,,221831,0.404464879,0.435535121,74.74747396,,,74.48356125,75.01138667,,,,88.13826751,84.12220801,92.154327,69.96445267,69.38091252,70.54799282,78.76004227,78.00631922,79.51376531,75.71260563,75.37513711,76.05007414,,,,496.7614139,8686,1368714,485.8790311,507.6437967,,,,136.0824573,94.78641756,189.2577559,726.8836411,698.8139327,754.9533494,373.2179121,349.5260743,396.9097498,456.2233043,442.4139732,470.0326354,,,,67.35250992,339,503322,60.18266097,74.52235888,,,,,,,123.8952672,104.9906096,142.7999248,58.68991905,46.31716631,73.35232892,40.80516,32.72693153,50.27309838,,,,7.892939361,312,39529,7.017113952,8.76876477,,,,,,,13.67977286,11.55341481,15.80613091,7.617964753,5.903818047,9.67454595,4.203800235,3.306555558,5.269499997,,,,,,,0.119,,,0.104,0.135,0.164,,,0.145,0.186,0.12,,,0.106,0.136,258.3,1080,418041,,,0.108,53570,,,,0.104362797,51764.469,496005,,,36.96689357,544,1471587,33.86040629,40.07338084,,,,,,,34.43164443,28.21905244,40.64423642,22.76836081,17.6451669,28.9150134,45.098299,40.40028181,49.7963162,,,,0.368,,,0.357,0.378,0.106301413,31001,291633,0.095578009,0.117024817,0.059299418,7066,119158,0.045001545,0.07359729,0.001196744,598,499689,,,835.6003345,0.85640108,5073.32,5924,,,0.073758493,1965,26641,0.055724746,0.091792239,3.039997978,,,,,,4.229580467,2.560049896,2.933258589,3.483312568,3.130582545,,,,,,4.461137612,2.582117755,3.045859515,3.610984897,0.276452425,,,,,-4935.598479,,,,,0.703254014,46163,65642,0.672576991,0.733931038,66169,,,61702.10638,70635.89362,68129,50940.57447,85317.42553,81444,70800.42553,92087.57447,40300,38250.6383,42349.3617,64482,59745.82979,69218.17021,79952,78180.25532,81723.74468,,,,,,0.510604105,38762,75914,,,71.55462034,,,,,0.309631398,,66169,,,4.75132456,139,29255,,,16.60152447,567,3415349,15.23501542,17.96803352,,,,,,,49.95782862,45.0680698,54.84758744,11.34215501,8.921324416,14.21748952,4.673321259,3.738053782,5.771513737,,,,12.02118427,301,2441638,10.62677718,13.41559135,12.32778979,,,,,,,8.522887443,6.216652585,11.40429396,7.139247423,4.816820256,10.19171961,15.67390624,13.47820727,17.86960521,,,,23.09924731,564,2441638,21.19284591,25.00564871,,,,,,,55.24939401,49.14801065,61.35077737,13.09782202,10.06472607,16.75780408,13.74522163,11.7371853,15.75325796,,,,10.33569337,353,3415349,9.257471003,11.41391573,,,,,,,15.82205545,13.07025388,18.57385701,7.41020794,5.482112627,9.796687878,9.455324407,8.050384072,10.86026474,,,,12.03007519,,53200,,,504,136,0.613536771,219956,358505,,,0.681,,,,,124.1220576,,,,,0.709222815,136080,191872,0.701444678,0.717000953,0.13015503,24011,184480,0.120967468,0.139342592,0.864492995,165872,191872,0.856606646,0.872379345,499689,,,,,0.230359284,115108,499689,,,0.178795211,89342,499689,,,0.232070348,115963,499689,,,0.005629502,2813,499689,,,0.017238723,8614,499689,,,0.000670417,335,499689,,,0.208883926,104377,499689,,,0.52434014,262007,499689,,,0.018353126,8602,468694,0.01640372,0.020302532,0.512344678,256013,499689,,,0.045367957,22625,498700,, -18,091,18091,IN,La Porte County,2024,1,10345.10758,2050,307647,9635.99712,11054.21803,0,,,,2,,,,2,14146.75019,11719.72194,16573.77844,,6725.254609,4846.971977,9090.59051,,10289.80522,9487.618273,11091.99216,,,,,2,,0.182,,,0.155,0.21,3.981378043,,,3.207340828,4.807343153,5.059375054,,,4.162516028,6.004558287,0.087416746,735,8408,0.081379439,0.093454053,0,,,,,,,0.155290102,0.134554439,0.176025766,0.075718016,0.056983454,0.094452578,0.075162338,0.068578205,0.081746471,,,,0.095041322,0.058090935,0.13199171,0.204,,,0.165,0.243,0.363,,,0.304,0.422,7.6,0.083313223,0.115,,,0.283,,,0.236,0.331,0.593602391,66731,112417,,,0.164515557,,,0.133194215,0.197727573,0.238636364,21,88,0.1841824,0.296081778,446.7,502,112390,,,26.32199632,558,21199,24.13797036,28.50602228,,,,,,,40.58624577,32.93163566,48.24085588,29.94257588,23.47019972,37.64829376,23.01086811,20.57562673,25.44610949,,,,31.97674419,22.01131935,44.90723766,0.075248196,6435,85517,0.064524792,0.085971601,0.000373699,42,112390,,,2675.952381,0.000555182,62,111675,,,1801.209677,0.001173047,131,111675,,,852.480916,3500,,,,,,,6656,2950,3324,0.42,,,,,,0.41,0.33,0.16,0.42,0.51,,,,,,0.4,0.35,0.41,0.51,0.898816313,70922,78906,0.889939953,0.907692673,0.514920146,14702,28552,0.47877059,0.551069701,0.03688455,1738,47120,,,0.208,4794,,0.154382979,0.261617021,,,,0.633587786,0.013586196,1,0.332590943,0.233401246,0.43178064,0.269712601,0.194205793,0.345219409,0.217557013,0.177087212,0.258026815,4.349194729,124761,28686,4.003736786,4.694652672,0.318584071,7596,23843,0.276238579,0.360929563,10.23222707,115,112390,,,100.7288347,556,551977,92.35600063,109.1016688,,,,,,,117.0415738,91.74191038,147.1622071,44.19027814,25.74246548,70.75291608,105.929764,96.24932257,115.6102054,,,,7.9,,,,,1,,,,,0.123932124,5295,42725,0.108745742,0.139118506,0.097227139,0.084079924,0.110374353,0.022586308,0.015972675,0.029199941,0.010883558,0.004974506,0.016792609,0.837057633,40943,48913,0.82707711,0.847038156,,,,,,,0.840392879,0.794476704,0.886309054,0.818231892,0.761365452,0.875098332,0.822859745,0.808480269,0.837239221,0.32,,48913,0.291354653,0.348645347,74.7942523,,,74.24827833,75.34022627,,,,,,,70.07818605,68.34185497,71.81451712,80.73207628,76.98842892,84.47572364,74.88686265,74.28117731,75.49254798,,,,490.5723134,2050,307647,468.1604118,512.984215,,,,,,,683.7143915,596.1079571,771.320826,311.1833863,231.6964706,409.148684,489.8425751,464.9062661,514.778884,,,,66.84880544,69,103218,52.01236079,84.6014417,,,,,,,150.7386192,92.07506471,232.8035718,,,,58.88043067,42.43583538,79.58923719,,,,8.186325378,71,8673,6.393588038,10.32593556,,,,,,,,,,,,,7.207771858,5.276994893,9.614157586,,,,,,,0.122,,,0.104,0.138,0.17,,,0.147,0.193,0.115,,,0.099,0.132,207.7,198,95329,,,0.115,12890,,,,0.083313223,9286.675014,111467,,,37.95855288,126,331941,31.33058422,44.58652153,,,,,,,31.8344608,16.44933044,55.60839647,,,,39.98231551,32.29796187,47.66666916,,,,0.384,,,0.368,0.399,0.086299753,5336,61831,0.07319337,0.099406136,0.048081182,1194,24833,0.03378331,0.062379055,0.001092456,122,111675,,,915.3688525,0.867954346,988.6,1139,,,0.119032729,571,4797,0.079533263,0.158532195,3.122845347,,,,,,,2.4378436,3.120664106,3.254444795,3.247373687,,,,,,,2.608305755,3.199026054,3.41103476,0.147330886,,,,,-1178.17094,,,,,0.712093023,42868,60200,0.655985563,0.768200484,66336,,,62244.42553,70427.57447,76563,32852.02128,120273.9787,123537,6186.021277,240887.9787,38675,33011.85106,44338.14894,65938,50061.40426,81814.59575,70372,67158.55319,73585.44681,,,,,,0.534630011,8576,16041,,,61.74025399,,,,,0.255653039,,66336,,,2.175940317,14,6434,,,5.951795631,46,772876,4.35746244,7.938861306,,,,,,,26.44012461,16.76077095,39.6731689,,,,2.949354665,1.747974495,4.661251914,,,,20.81318276,118,551977,16.93267996,24.69368556,21.37770233,,,,,,,18.01446943,8.237362541,34.1970744,,,,23.18778979,18.516283,27.85929658,,,,17.57319599,97,551977,14.25067812,21.43780881,,,,,,,36.8761123,23.37629193,55.33227445,,,,16.58031088,12.97307212,20.88015752,,,,11.51543068,89,772876,9.247836411,14.17072834,,,,,,,14.94441826,7.957273323,25.55541036,,,,12.28897777,9.66606058,15.40434005,,,,,,10400,,,132,-888,0.583864295,49392,84595,,,0.686,,,,,70.17166272,,,,,0.74127443,32049,43235,0.726959198,0.755589663,0.106054818,4442,41884,0.09268747,0.119422166,0.867861686,37522,43235,0.856028972,0.879694401,111675,,,,,0.210351466,23491,111675,,,0.194940676,21770,111675,,,0.110087307,12294,111675,,,0.004978733,556,111675,,,0.006877099,768,111675,,,0.000304455,34,111675,,,0.075603313,8443,111675,,,0.780917842,87209,111675,,,0.005191373,550,105945,0.002709276,0.007673469,0.479856727,53588,111675,,,0.365211667,41056,112417,, -18,093,18093,IN,Lawrence County,2024,1,9957.581453,909,124260,8894.717369,11020.44554,0,,,,2,,,,2,,,,2,,,,2,10129.04778,9026.95277,11231.14279,,,,,2,,0.166,,,0.138,0.198,3.972724463,,,3.148056365,4.88568624,5.037379876,,,4.022936707,6.073619448,0.080259664,272,3389,0.071112182,0.089407146,0,,,,,,,,,,0.12987013,0.054784404,0.204955856,0.078558226,0.069302476,0.087813975,,,,,,,0.204,,,0.159,0.25,0.419,,,0.347,0.491,8.2,0.029283345,0.11,,,0.261,,,0.214,0.315,0.745617738,33561,45011,,,0.156289444,,,0.125348074,0.190019103,0.058823529,2,34,0.010286647,0.152061578,257.4,116,45070,,,25.49665356,240,9413,22.27088182,28.72242531,,,,,,,,,,40.16064257,19.25858914,73.85685157,25.53095346,22.20229768,28.85960923,,,,,,,0.085049164,3036,35697,0.07313427,0.096964057,0.000399379,18,45070,,,2503.888889,0.000442263,20,45222,,,2261.1,0.000950865,43,45222,,,1051.674419,1459,,,,,,,,,1472,0.49,,,,,,,,,0.49,0.46,,,,,,,,,0.46,0.891328142,28502,31977,0.875285483,0.907370801,0.565808505,5868,10371,0.509389862,0.622227147,0.033456891,695,20773,,,0.148,1388,,0.093191489,0.202808511,,,,,,,,,,0.210909091,0.019041875,0.402776307,0.106519743,0.068274655,0.144764831,4.260913516,113809,26710,3.828340028,4.693487003,0.22184123,2135,9624,0.164830009,0.278852451,13.97825605,63,45070,,,88.44106129,201,227270,76.21428438,100.6678382,,,,,,,,,,,,,89.8629935,77.24995715,102.4760299,,,,8.4,,,,,0,,,,,0.097522404,1850,18970,0.077619482,0.117425326,0.074748011,0.056773393,0.092722628,0.016605166,0.009497355,0.023712977,0.010542963,0.004718673,0.016367252,0.829653597,17436,21016,0.800793232,0.858513963,,,,,,,,,,,,,0.825180277,0.791924872,0.858435682,0.381,,21016,0.336514185,0.425485816,74.59426141,,,73.78810116,75.40042167,,,,,,,,,,,,,74.36358655,73.53932338,75.18784973,,,,503.4799991,909,124260,468.6262231,538.3337751,,,,,,,,,,,,,512.4361705,476.5793373,548.2930037,,,,58.50553462,25,42731,37.86169724,86.36571037,,,,,,,,,,,,,60.37887746,38.68588607,89.83898361,,,,6.118881119,21,3432,3.787683853,9.353359771,,,,,,,,,,,,,6.375227687,3.946366419,9.745212731,,,,,,,0.118,,,0.099,0.138,0.176,,,0.151,0.201,0.1,,,0.085,0.117,96.4,37,38397,,,0.11,4960,,,,0.029283345,1350.957826,46134,,,28.68997175,39,135936,20.40137454,39.22013585,,,,,,,,,,,,,28.52319244,20.08295976,39.31546353,,,,0.344,,,0.327,0.362,0.096803793,2532,26156,0.081314431,0.112293154,0.054360812,546,10044,0.037679961,0.071041664,0.000906638,41,45222,,,1102.97561,0.890148064,390.775,439,,,,,,,,3.1580345,,,,,,,,,3.141013949,3.120208891,,,,,,,,,3.106334936,0.023410815,,,,,-823.34375,,,,,0.680168105,39328,57821,0.611617291,0.748718919,60141,,,52596.48936,67685.51064,,,,,,,,,,68438,25878,110998,64119,59462.65957,68775.34043,,,,,,0.497445834,2824,5677,,,,,,,,0.25443541,,60141,,,3.530796391,9,2549,,,,,,,,,,,,,,,,,,,,,,,,,,15.64770499,37,227270,10.83649059,21.86609932,16.28019536,,,,,,,,,,,,,15.25175557,10.43218952,21.53092815,,,,13.2001584,30,227270,8.906091443,18.8440469,,,,,,,,,,,,,13.82507592,9.32772067,19.73615552,,,,16.02347596,51,318283,11.93053033,21.06791169,,,,,,,,,,,,,16.43958125,12.20177407,21.67353841,,,,12.17391304,,4600,,,50,6,0.595524713,21025,35305,,,0.664,,,,,42.17767382,,,,,0.793408573,14974,18873,0.77463152,0.812185626,0.080179392,1466,18284,0.062492426,0.097866358,0.830339639,15671,18873,0.811279131,0.849400146,45222,,,,,0.210959268,9540,45222,,,0.207133696,9367,45222,,,0.005727301,259,45222,,,0.005108133,231,45222,,,0.006611826,299,45222,,,0.000398036,18,45222,,,0.019879705,899,45222,,,0.951041529,43008,45222,,,0.002202592,94,42677,0,0.005336341,0.498208836,22530,45222,,,0.679367266,30579,45011,, -18,095,18095,IN,Madison County,2024,1,11033.82005,2581,359787,10378.06526,11689.57485,0,,,,2,,,,2,16260.17156,13607.12575,18913.21736,,6738.217011,4440.527469,9803.751981,,10741.09654,10035.96168,11446.2314,,,,,2,,0.182,,,0.155,0.21,4.053805875,,,3.284464298,4.839618749,5.328126339,,,4.470150527,6.215908033,0.093837256,941,10028,0.088129838,0.099544673,0,,,,,,,0.157338965,0.134147634,0.180530297,0.058631922,0.0400488,0.077215044,0.087544137,0.081431556,0.093656718,,,,0.158163265,0.107078102,0.209248428,0.214,,,0.175,0.255,0.434,,,0.376,0.492,6.6,0.146969195,0.129,,,0.308,,,0.262,0.356,0.695256246,90473,130129,,,0.159249274,,,0.131487672,0.191335425,0.183673469,18,98,0.134084821,0.238194883,526.8,689,130782,,,27.61601289,754,27303,25.64480979,29.587216,,,,,,,46.06692742,37.29707298,54.83678187,30.74056824,23.77475325,39.10954003,25.57473918,23.44506874,27.70440961,,,,28.60169492,18.84869717,41.61396446,0.08992596,9097,101161,0.079202555,0.100649364,0.000481718,63,130782,,,2075.904762,0.000561695,74,131744,,,1780.324324,0.001510505,199,131744,,,662.0301508,3064,,,,,,,5188,,2988,0.41,,,,,,0.27,0.43,,0.41,0.49,,,,,,0.63,0.33,0.42,0.49,0.899128624,82032,91235,0.890640213,0.907617035,0.548349562,17908,32658,0.517431585,0.579267539,0.033175669,2006,60466,,,0.203,5514,,0.151765957,0.254234043,,,,0.241610738,0,0.670412037,0.516769013,0.366857107,0.666680918,0.31205036,0.216880836,0.407219884,0.160651751,0.131962215,0.189341287,4.260497667,109580,25720,3.954118056,4.566877279,0.29890857,8353,27945,0.26560132,0.332215821,12.76934135,167,130782,,,114.1455795,741,649171,105.9268239,122.3643351,,,,,,,106.9637061,81.22202656,138.2753942,35.17040059,16.86557414,64.6796189,119.510009,110.3644884,128.6555295,,,,8.4,,,,,1,,,,,0.132813262,6810,51275,0.118614186,0.147012338,0.121621622,0.107261583,0.13598166,0.011604096,0.007719093,0.015489098,0.010238908,0.006639086,0.01383873,0.769293953,44956,58438,0.751025753,0.787562152,,,,,,,0.666772353,0.579338253,0.754206452,0.789862205,0.645234217,0.934490192,0.765320136,0.737851654,0.792788618,0.408,,58438,0.381625259,0.434374741,73.81439567,,,73.32956368,74.29922765,,,,,,,69.47297365,67.6361853,71.30976199,85.77239469,77.41710557,94.1276838,73.97538536,73.45960354,74.49116718,,,,534.9688653,2581,359787,513.3337719,556.6039586,,,,,,,783.4024717,688.0665965,878.7383469,244.7660428,161.3023645,356.1217415,527.0265634,503.997506,550.0556208,,,,59.79314803,74,123760,46.95048177,75.06482183,,,,,,,122.4105461,65.17846037,209.3257619,,,,58.14315676,43.92071577,75.50372532,,,,7.057654076,71,10060,5.512086387,8.902270289,,,,,,,,,,,,,5.784526392,4.265053124,7.669442779,,,,,,,0.126,,,0.11,0.144,0.176,,,0.154,0.201,0.11,,,0.096,0.127,199.1,222,111478,,,0.129,16830,,,,0.146969195,19346.43697,131636,,,40.76588588,159,390032,34.42931359,47.10245816,,,,,,,36.81998098,19.02542146,64.31709689,,,,43.48037606,36.35379311,50.60695901,,,,0.402,,,0.387,0.416,0.108221942,7991,73839,0.092732581,0.123711304,0.042406518,1218,28722,0.030491624,0.054321411,0.001001943,132,131744,,,998.0606061,0.88791358,1078.815,1215,,,0.060429983,416,6884,0.035238384,0.085621582,3.018446167,,,,,,,2.847702608,2.719047328,3.097952959,3.186917659,,,,,,,2.802384683,3.044331177,3.275721126,0.146205533,,,,,-1877.80458,,,,,0.783544489,42921,54778,0.729663831,0.837425147,58926,,,55284.80851,62567.19149,41953,34275.04255,49630.95745,49840,11471.65957,88208.34043,28649,25667.89362,31630.10638,62976,49265.53192,76686.46809,62466,59327.61702,65604.38298,,,,,,0.499483612,9189,18397,,,59.69660429,,,,,0.297169331,,58926,,,3.093798341,22,7111,,,5.505455907,50,908190,4.08625549,7.258257266,,,,,,,18.45115715,10.08741931,30.95790648,,,,4.028275898,2.737018034,5.71781609,,,,21.44189173,137,649171,17.74912865,25.1346548,21.10383859,,,,,,,,,,,,,23.0407069,18.85152736,27.22988643,,,,15.55830436,101,649171,12.52401044,18.59259829,,,,,,,25.81882561,14.11539222,43.31960225,,,,14.93875112,11.8812321,18.54292908,,,,15.08494919,137,908190,12.55891258,17.61098579,,,,,,,15.81527756,8.171984697,27.62610713,,,,15.72327044,12.92166953,18.52487136,,,,19.45736434,,12900,,,209,42,0.517981798,51793,99990,,,0.668,,,,,50.79718908,,,,,0.701745578,36342,51788,0.685644666,0.71784649,0.116037001,5808,50053,0.101311148,0.130762854,0.857824206,44425,51788,0.845907225,0.869741187,131744,,,,,0.212313274,27971,131744,,,0.189587382,24977,131744,,,0.084330216,11110,131744,,,0.004584649,604,131744,,,0.006732754,887,131744,,,0.000645191,85,131744,,,0.050742349,6685,131744,,,0.83581795,110114,131744,,,0.003790333,468,123472,0.002387746,0.005192921,0.494656303,65168,131744,,,0.2462249,32041,130129,, -18,097,18097,IN,Marion County,2024,1,11768.68463,16503,2755666,11525.61776,12011.75151,0,,,,2,4026.235697,3330.157652,4722.313742,,15985.8013,15452.96279,16518.6398,,7620.362767,7036.639932,8204.085601,,11071.88385,10745.21641,11398.5513,,,,,2,,0.192,,,0.167,0.22,3.870319887,,,3.265743479,4.533802232,5.413019452,,,4.766442685,6.091240882,0.09805453,9667,98588,0.096198145,0.099910915,0,,,,0.074693639,0.067507149,0.08188013,0.139602822,0.135815956,0.143389687,0.073657259,0.069706572,0.077607946,0.078542781,0.075966448,0.081119114,,,,0.103389831,0.091105802,0.115673859,0.196,,,0.165,0.232,0.372,,,0.337,0.406,7.2,0.122343463,0.113,,,0.275,,,0.242,0.311,0.912581112,891777,977203,,,0.171098754,,,0.148655226,0.195286538,0.231647635,142,613,0.211530929,0.252250999,1102.7,10708,971102,,,27.78362551,5807,209008,27.06901553,28.49823548,,,,12.58470474,9.947686868,15.70628107,34.55281561,33.15489351,35.9507377,44.32772503,42.11087708,46.54457298,17.73089066,16.8607163,18.60106501,,,,23.7831301,20.74875629,26.81750391,0.100126661,82292,821879,0.091786235,0.108467087,0.000779527,757,971102,,,1282.829591,0.000940724,912,969466,,,1063.010965,0.003647369,3536,969466,,,274.1702489,3372,,,,,34129,1407,4754,2388,3017,0.44,,,,,,0.36,0.39,0.28,0.46,0.51,,,,,0.31,0.51,0.37,0.29,0.55,0.873412293,558017,638893,0.868201974,0.878622612,0.632422227,183226,289721,0.617749443,0.647095011,0.031538472,16068,509473,,,0.21,48991,,0.175446809,0.244553192,0.104199067,0.004340193,0.204057941,0.213941214,0.160761957,0.267120471,0.317892475,0.288865313,0.346919638,0.222857543,0.19246159,0.253253496,0.121660525,0.108435499,0.134885551,4.601529444,118540,25761,4.435089658,4.76796923,0.339730819,81001,238427,0.32333165,0.356129988,11.38912287,1106,971102,,,121.5615384,5843,4806619,118.4445562,124.6785205,,,,29.39056175,22.01554757,38.4435784,149.6241444,143.1343658,156.1139231,56.57265286,50.12774429,63.01756142,131.2334948,126.8293671,135.6376226,,,,12.6,,,,,0,,,,,0.165199433,62395,377695,0.157654841,0.172744026,0.1464543,0.139160267,0.153748333,0.017514132,0.015383489,0.019644775,0.0095315,0.00749567,0.011567331,0.759290323,360303,474526,0.753769782,0.764810865,0.746856664,0.565053005,0.928660323,0.704246714,0.65286689,0.755626538,0.742595604,0.724420009,0.760771198,0.696914377,0.678355592,0.715473163,0.827475593,0.821996188,0.832954998,0.309,,474526,0.299031285,0.318968715,73.83504656,,,73.6417158,74.02837731,88.00614276,73.54494493,102.4673406,83.33642813,81.65775555,85.01510071,70.5459908,70.16075968,70.93122191,80.06809657,78.53120458,81.60498856,74.38953434,74.13957582,74.63949285,,,,543.5349737,16503,2755666,535.0733422,551.9966053,,,,212.7717451,179.7659031,245.7775871,694.3656364,675.7974461,712.9338267,368.0292294,337.0098491,399.0486097,523.6552132,512.865152,534.4452743,,,,81.62889452,851,1042523,76.14441769,87.11337135,,,,43.01756928,25.89938681,67.17726311,131.3773364,119.1706856,143.5839871,62.92829907,51.57398088,74.28261726,61.31921133,53.76320399,68.87521868,,,,7.779184604,768,98725,7.228998599,8.329370609,,,,5.330287455,3.541937304,7.703749466,11.51228081,10.33444593,12.6901157,6.375457644,5.132069422,7.618845867,5.724441982,5.011977221,6.436906744,,,,8.956560681,5.470899949,13.83268155,0.116,,,0.102,0.133,0.167,,,0.149,0.188,0.12,,,0.106,0.135,625.1,4984,797275,,,0.113,109100,,,,0.122343463,110524.2283,903393,,,58.75527721,1705,2901867,55.96632701,61.54422741,,,,,,,57.06415745,51.92691207,62.20140282,17.09736483,12.88007503,22.25457043,75.0314945,70.71733096,79.34565804,,,,0.379,,,0.366,0.39,0.120066368,70700,588841,0.110534453,0.129598283,0.051350963,12515,243715,0.040627559,0.062074368,0.00206918,2006,969466,,,483.2831506,0.801126617,9414.84,11752,,,0.082603452,4178,50579,0.06649654,0.098710364,2.786200708,,,,,,3.18787032,2.525912652,2.582372369,3.170494589,2.802383399,,,,,,3.202881668,2.458840186,2.668262264,3.250532452,0.179349272,,,,,-6721.799014,,,,,0.84016593,46583,55445,0.819561739,0.860770122,62776,,,60215.48936,65336.51064,48529,41337.17021,55720.82979,72280,67100.59575,77459.40426,41970,40417.48936,43522.51064,55866,52077.06383,59654.93617,71142,69574,72710,,,,,,0.603835198,95601,158323,,,51.3304099,,,,,0.327306614,,62776,,,6.499710481,449,69080,,,19.63550051,1313,6686868,18.57339983,20.69760118,,,,,,,50.95204345,47.72720195,54.17688495,11.6518702,9.28064957,14.44424619,6.872563581,6.024019189,7.721107972,,,,14.67951555,708,4806619,13.57655647,15.78247462,14.72968837,,,,7.735794108,3.537297662,14.68494688,8.903794471,7.298440394,10.50914855,5.438207965,2.714733822,9.730456237,19.89021844,18.1581149,21.62232198,,,,27.21247513,1308,4806619,25.73771888,28.68723138,,,,,,,56.71355916,52.71804665,60.70907166,12.99642025,10.09222886,16.47605948,17.31312597,15.71347474,18.91277719,,,,13.84803768,926,6686868,12.95609116,14.73998419,,,,6.368507307,3.564405195,10.50388431,17.74555006,15.8424032,19.64869693,11.09033428,8.780322091,13.82186553,13.41786223,12.23221129,14.60351317,,,,8.019704434,,101500,,,737,77,0.584473797,389619,666615,,,0.646,,,,,190.9306831,,,,,0.554591345,217864,392837,0.547233235,0.561949454,0.152297465,58096,381464,0.145506375,0.159088554,0.871282491,342272,392837,0.864292768,0.878272215,969466,,,,,0.244447975,236984,969466,,,0.13501866,130896,969466,,,0.291363493,282467,969466,,,0.004614912,4474,969466,,,0.043591008,42260,969466,,,0.000487898,473,969466,,,0.116141257,112595,969466,,,0.518446237,502616,969466,,,0.032081383,28988,903577,0.02942529,0.034737477,0.515237254,499505,969466,,,0.008794488,8594,977203,, -18,099,18099,IN,Marshall County,2024,1,8732.770666,673,127455,7709.729662,9755.81167,0,,,,2,,,,2,,,,2,4783.551377,2835.035711,7560.073488,1,9184.382085,8041.406995,10327.35718,,,,,2,,0.177,,,0.147,0.209,3.854669787,,,3.076002581,4.778702188,5.329683282,,,4.281341608,6.430148624,0.065637066,255,3885,0.057849658,0.073424474,0,,,,,,,,,,0.08411215,0.062641802,0.105582497,0.061591914,0.053217425,0.069966404,,,,,,,0.2,,,0.156,0.242,0.366,,,0.295,0.442,8.3,0.049324804,0.098,,,0.284,,,0.235,0.337,0.634884478,29265,46095,,,0.155548632,,,0.12411709,0.19242019,0.186046512,8,43,0.110986774,0.272151137,206,95,46121,,,20.14619362,226,11218,17.51958808,22.77279915,,,,,,,,,,35.09664293,27.30728309,44.41704786,17.61915518,14.85425885,20.38405152,,,,,,,0.128953836,4827,37432,0.112272985,0.145634687,0.00052037,24,46121,,,1921.708333,0.000453251,21,46332,,,2206.285714,0.001208668,56,46332,,,827.3571429,2303,,,,,,,,,2357,0.41,,,,,,,,0.17,0.41,0.46,,,,,,,,0.2,0.46,0.857733691,26546,30949,0.841480385,0.873986997,0.503126184,5311,10556,0.452510594,0.553741774,0.025615465,591,23072,,,0.13,1438,,0.090680851,0.169319149,,,,,,,,,,0.385761589,0.280735879,0.4907873,0.095438441,0.057997916,0.132878966,3.714452107,121184,32625,3.443512551,3.985391664,0.149147478,1697,11378,0.104225328,0.194069627,14.96064699,69,46121,,,76.54616772,177,231233,65.26918563,87.82314981,,,,,,,,,,,,,83.73205742,71.0703232,96.39379164,,,,8.6,,,,,1,,,,,0.120195066,2095,17430,0.101577682,0.13881245,0.090506698,0.072978743,0.108034652,0.024670109,0.01461599,0.034724228,0.008892714,0.003773087,0.01401234,0.784907429,16746,21335,0.759260535,0.810554323,,,,,,,,,,0.694757472,0.674789825,0.714725119,0.782736248,0.749246557,0.81622594,0.342,,21335,0.307818581,0.376181419,76.7953194,,,75.95224032,77.63839848,,,,,,,,,,98.0515861,69.19989715,126.9032751,76.31242563,75.40814015,77.21671112,,,,407.7750531,673,127455,375.252501,440.2976052,,,,,,,,,,210.1804225,133.2363584,315.3738313,426.6872286,391.1481055,462.2263518,,,,59.43771918,30,50473,40.10237953,84.85103995,,,,,,,,,,,,,59.62288525,38.2015076,88.71412713,,,,7.848101266,31,3950,5.332404045,11.13975329,,,,,,,,,,,,,7.706535142,4.987263208,11.37636612,,,,,,,0.119,,,0.101,0.139,0.174,,,0.149,0.201,0.104,,,0.089,0.121,47,18,38304,,,0.098,4530,,,,0.049324804,2320.781337,47051,,,21.66268314,30,138487,14.61572135,30.92482716,,,,,,,,,,,,,23.35201495,15.51724434,33.75016342,,,,0.344,,,0.326,0.36,0.141400199,3688,26082,0.12114488,0.161655519,0.101438368,1213,11958,0.071651134,0.131225602,0.000755417,35,46332,,,1323.771429,0.904833641,489.515,541,,,,,,,,3.133281861,,,,,,,,2.845441423,3.193738019,3.158434593,,,,,,,,2.937688654,3.234383675,0.076699657,,,,,287.6712,,,,,0.798256164,45135,56542,0.741505154,0.855007173,70938,,,63460.21277,78415.78723,217885,16095.55319,419674.4468,,,,,,,42124,30262.7234,53985.2766,67769,63075.7234,72462.2766,,,,,,0.46029934,3629,7884,,,,,,,,0.24517184,,70938,,,4.143646409,12,2896,,,,,,,,,,,,,,,,,,,,,,,,,,17.1264389,41,231233,12.11968748,23.50737547,17.7310332,,,,,,,,,,,,,18.53481381,12.91017693,25.77743919,,,,10.81160561,25,231233,6.996701097,15.96006266,,,,,,,,,,,,,12.46012759,8.063537604,18.39360631,,,,16.0174467,52,324646,11.96259532,21.00475033,,,,,,,,,,,,,16.62410424,12.21476651,22.10653446,,,,18.92857143,,5600,,,73,33,0.601933243,19927,33105,,,0.694,,,,,34.74128896,,,,,0.764942359,12939,16915,0.741533208,0.78835151,0.08482495,1398,16481,0.067288449,0.102361451,0.778717115,13172,16915,0.752565429,0.804868801,46332,,,,,0.242532159,11237,46332,,,0.189221273,8767,46332,,,0.00688509,319,46332,,,0.003841837,178,46332,,,0.006841924,317,46332,,,0.001100751,51,46332,,,0.110377277,5114,46332,,,0.860981611,39891,46332,,,0.016627462,721,43362,0.009125793,0.024129131,0.495445912,22955,46332,,,0.73361536,33816,46095,, -18,101,18101,IN,Martin County,2024,1,10127.49769,175,27585,7737.125027,12517.87036,0,,,,2,,,,2,,,,2,,,,2,10496.04404,8003.228551,12988.85954,,,,,2,,0.172,,,0.145,0.202,4.078570519,,,3.230445844,4.996209405,5.389056664,,,4.306755984,6.56263022,0.069174757,57,824,0.051848675,0.086500839,0,,,,,,,,,,,,,0.069825436,0.052187087,0.087463786,,,,,,,0.212,,,0.17,0.257,0.396,,,0.313,0.478,8.1,0.031408677,0.113,,,0.263,,,0.215,0.314,0.486343253,4772,9812,,,0.165904269,,,0.131768814,0.204089064,0.166666667,2,12,0.039062389,0.344663233,235.2,23,9780,,,22.84803401,43,1882,16.5352355,30.77615187,,,,,,,,,,,,,21.64261931,15.39001803,29.58617307,,,,,,,0.088900442,684,7694,0.075794059,0.102006825,0.000306749,3,9780,,,3260,0.000204019,2,9803,,,4901.5,0.000204019,2,9803,,,4901.5,2218,,,,,,,,,2222,0.4,,,,,,,,,0.4,0.27,,,,,,,,,0.27,0.887934798,6101,6871,0.851804617,0.92406498,0.58974359,1288,2184,0.4784287,0.70105848,0.027160044,149,5486,,,0.165,345,,0.109,0.221,,,,,,,,,,,,,0.230004968,0.118996974,0.341012961,4.211296625,118548,28150,3.30036102,5.12223223,0.171652094,373,2173,0.092560874,0.250743314,15.33742331,15,9780,,,91.00621216,46,50546,66.62798522,121.3895337,,,,,,,,,,,,,94.02722701,68.83974778,125.4191442,,,,8.7,,,,,0,,,,,0.101343101,415,4095,0.062100587,0.140585616,0.074009901,0.038817392,0.10920241,0.022954823,0,0.048309751,0.008547009,0,0.018175843,0.819325939,3841,4688,0.780381639,0.858270239,,,,,,,,,,,,,0.844983992,0.808092452,0.881875531,0.489,,4688,0.407263482,0.570736518,76.24062727,,,74.34256533,78.13868921,,,,,,,,,,,,,75.84525997,73.91546152,77.77505841,,,,455.8656566,175,27585,382.4581493,529.2731639,,,,,,,,,,,,,468.5373359,392.6940756,544.3805962,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.121,,,0.103,0.14,0.179,,,0.154,0.203,0.102,,,0.086,0.119,84.9,7,8247,,,0.113,1120,,,,0.031408677,324.5772682,10334,,,,,,,,,,,,,,,,,,,,,,,,,,0.345,,,0.327,0.362,0.096257647,535,5558,0.079576796,0.112938498,0.070698088,159,2249,0.046868301,0.094527875,0.000306029,3,9803,,,3267.666667,0.864139344,105.425,122,,,,,,,,3.08179423,,,,,,,,,3.145687553,3.468460453,,,,,,,,,3.483283892,0.06053198,,,,,-3227.27855,,,,,0.895462617,49417,55186,0.649891228,1.141034006,64216,,,55127.31915,73304.68085,,,,,,,,,,,,,66467,58071.76596,74862.23404,,,,,,0.465541491,662,1422,,,,,,,,0.18517192,,64216,,,3.384094755,2,591,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.50540575,11,70943,7.740242684,27.74345392,,,,,,,,,,,,,16.00698487,7.990629172,28.64091751,,,,,,1000,,,5,-888,0.650727388,5144,7905,,,0.611,,,,,33.95965749,,,,,0.787534696,3121,3963,0.74128496,0.833784432,0.087845011,331,3768,0.044437582,0.131252439,0.800656069,3173,3963,0.757551937,0.8437602,9803,,,,,0.217280424,2130,9803,,,0.212792002,2086,9803,,,0.005508518,54,9803,,,0.004386412,43,9803,,,0.006324595,62,9803,,,0.000204019,2,9803,,,0.016933592,166,9803,,,0.957564011,9387,9803,,,0.000107701,1,9285,0,0.00905733,0.485565643,4760,9803,,,1,9812,9812,, -18,103,18103,IN,Miami County,2024,1,10223.94553,671,98981,9005.250933,11442.64012,0,,,,2,,,,2,13885.34921,6349.265843,26358.71801,1,,,,2,10657.48896,9315.478321,11999.49959,,,,,2,,0.186,,,0.157,0.219,4.116780627,,,3.319798703,5.0340553,5.411343284,,,4.438480137,6.590435826,0.084189723,213,2530,0.073369702,0.095009744,0,,,,,,,,,,,,,0.085653105,0.07430196,0.09700425,,,,,,,0.225,,,0.183,0.273,0.379,,,0.305,0.464,7.2,0.09780708,0.125,,,0.288,,,0.237,0.347,0.568405539,20441,35962,,,0.175904844,,,0.140161689,0.217731433,0.315789474,12,38,0.230581269,0.401886528,282.7,102,36081,,,25.6445993,184,7175,21.93913122,29.35006739,,,,,,,,,,25.58139535,12.77014039,45.77218259,26.25260125,22.2346331,30.2705694,,,,,,,0.08443202,2235,26471,0.072517126,0.096346914,0.000221723,8,36081,,,4510.125,0.000252285,9,35674,,,3963.777778,0.000644727,23,35674,,,1551.043478,3009,,,,,,,,,2991,0.43,,,,,,,,,0.43,0.37,,,,,,,0.2,,0.37,0.867915542,21868,25196,0.848261583,0.887569501,0.466799249,4225,9051,0.411926787,0.521671711,0.040905618,589,14399,,,0.189,1375,,0.124659575,0.253340426,,,,,,,,,,0.244444444,0.090948894,0.397939995,0.276831745,0.217696046,0.335967445,3.826532447,106435,27815,3.359344733,4.29372016,0.216155473,1635,7564,0.164882052,0.267428894,13.85770904,50,36081,,,82.42821176,147,178337,69.10302569,95.75339783,,,,,,,,,,,,,88.87478178,74.15265339,103.5969102,,,,8.6,,,,,1,,,,,0.100517369,1360,13530,0.078802726,0.122232011,0.084489187,0.06228496,0.106693415,0.009164819,0.004375881,0.013953757,0.019955654,0.008945539,0.030965769,0.833509514,12616,15136,0.79907939,0.867939638,,,,,,,,,,,,,0.812754119,0.777884856,0.847623383,0.314,,15136,0.264028419,0.363971581,74.47782236,,,73.52854497,75.42709975,,,,,,,71.89125685,64.5612687,79.22124499,,,,74.0283507,73.01468324,75.04201817,,,,505.0340739,671,98981,465.3107181,544.7574297,,,,,,,745.7450775,482.6068939,1100.866846,,,,515.8062821,473.4083959,558.2041683,,,,69.43186621,23,33126,44.01384724,104.18189,,,,,,,,,,,,,76.62568354,48.02090792,116.0122057,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.126,,,0.108,0.146,0.178,,,0.153,0.205,0.113,,,0.097,0.133,116.7,36,30839,,,0.125,4520,,,,0.09780708,3609.374669,36903,,,26.18657938,28,106925,17.40079182,37.84689824,,,,,,,,,,,,,26.54406846,17.17792154,39.18428134,,,,0.372,,,0.355,0.387,0.098743931,1871,18948,0.083254569,0.114233293,0.049861146,395,7922,0.034371785,0.065350508,0.000504569,18,35674,,,1981.888889,0.916689008,341.925,373,,,,,,,,3.11219157,,,,,,,,3.316621293,3.097394266,3.241950614,,,,,,,,3.437613084,3.244833572,0.027326133,,,,,-1188.430467,,,,,0.853543116,42206,49448,0.745701381,0.961384851,60835,,,57569.12766,64100.87234,58676,45628,71724,,,,39821,23021,56621,82386,46809.31915,117962.6809,59390,56704.38298,62075.61702,,,,,,0.494486361,2556,5169,,,61.67119651,,,,,0.251532835,,60835,,,2.57997936,5,1938,,,5.598163802,14,250082,3.060568244,9.392767621,,,,,,,,,,,,,5.417484933,2.799293519,9.46325593,,,,15.54159615,28,178337,10.1522866,22.77203928,15.70061176,,,,,,,,,,,,,17.76430477,11.60423366,26.0288224,,,,14.01840336,25,178337,9.071971519,20.69392874,,,,,,,,,,,,,15.87049675,10.27054871,23.42798394,,,,15.99475372,40,250082,11.42688656,21.78031484,,,,,,,,,,,,,17.60682603,12.52017448,24.0691108,,,,19.16666667,,3600,,,60,9,0.521455594,14473,27755,,,0.662,,,,,34.29517789,,,,,0.754610146,9862,13069,0.725416421,0.783803871,0.090500945,1149,12696,0.066684887,0.114317004,0.829673273,10843,13069,0.80918782,0.850158726,35674,,,,,0.207742333,7411,35674,,,0.185485227,6617,35674,,,0.049615967,1770,35674,,,0.009670909,345,35674,,,0.004821439,172,35674,,,0.000448506,16,35674,,,0.03806694,1358,35674,,,0.87797836,31321,35674,,,0.003402458,116,34093,0,0.00728484,0.456999495,16303,35674,,,0.455592014,16384,35962,, -18,105,18105,IN,Monroe County,2024,1,7166.302102,1468,412281,6625.260038,7707.344166,0,,,,2,,,,2,14470.19372,10774.00967,19025.6324,,,,,2,7360.315525,6763.87556,7956.755491,,,,,2,,0.153,,,0.128,0.181,3.881477969,,,3.12382611,4.704043747,5.535716744,,,4.647518329,6.44110197,0.076005411,618,8131,0.070245165,0.081765658,0,,,,0.084536083,0.059777437,0.109294728,0.112244898,0.080995408,0.143494388,0.071428571,0.046797967,0.096059176,0.072589218,0.066322353,0.078856083,,,,0.103448276,0.064259529,0.142637023,0.163,,,0.125,0.204,0.336,,,0.283,0.392,7.7,0.053460591,0.122,,,0.223,,,0.184,0.269,0.883708613,123470,139718,,,0.198565245,,,0.163895691,0.234896262,0.108695652,5,46,0.048206453,0.190169447,589.1,824,139875,,,5.849174849,308,52657,5.195931018,6.502418679,,,,,,,12.9982669,8.769876093,18.55583423,10.62801932,6.660523127,16.09094898,5.755809771,5.027599361,6.48402018,,,,8.064516129,4.408946012,13.53088774,0.086155415,9291,107840,0.074240522,0.098070309,0.000586238,82,139875,,,1705.792683,0.000615407,86,139745,,,1624.941861,0.003477763,486,139745,,,287.5411523,1831,,,,,,,1699,,1815,0.49,,,,,,0.4,0.35,,0.49,0.57,,,,,,0.54,0.45,0.3,0.57,0.946589408,78087,82493,0.938243669,0.954935146,0.812453606,28457,35026,0.772081291,0.85282592,0.027949138,1998,71487,,,0.14,2982,,0.094723404,0.185276596,,,,0.151136364,0,0.306801481,0.464912281,0.306989347,0.622835214,0.250423012,0.134675049,0.366170975,0.11072623,0.081998405,0.139454056,5.567963595,122356,21975,5.093006767,6.042920423,0.222672803,4887,21947,0.185581919,0.259763686,9.508489723,133,139875,,,60.37556063,441,730428,54.74050831,66.01061296,,,,,,,138.7015989,97.14489469,192.0214775,,,,64.55575921,58.1650651,70.94645333,,,,7.7,,,,,1,,,,,0.181382979,10230,56400,0.164622811,0.198143146,0.169869471,0.154539923,0.185199018,0.012322695,0.008431919,0.016213472,0.007801418,0.004118223,0.011484614,0.663552907,45320,68299,0.644319205,0.68278661,,,,0.396474677,0.313906258,0.479043096,0.636499626,0.533247764,0.739751488,0.592938733,0.500733732,0.685143734,0.7150232,0.698261483,0.731784917,0.192,,68299,0.171535498,0.212464502,78.45468833,,,77.94846628,78.96091038,,,,87.637645,82.65576157,92.61952843,75.85307885,68.2708777,83.43527999,87.11864898,79.11135032,95.12594763,78.16052096,77.62321364,78.69782828,,,,345.7712118,1468,412281,327.3084891,364.2339345,,,,,,,524.7108827,401.3622489,674.0130799,,,,358.2352168,338.1463313,378.3241024,,,,38.41635946,52,135359,28.69117473,50.37794439,,,,,,,,,,,,,36.48440058,25.94397539,49.87537665,,,,5.776258399,49,8483,4.273307762,7.636519933,,,,,,,,,,,,,5.918868197,4.247482008,8.029613045,,,,,,,0.111,,,0.094,0.13,0.167,,,0.143,0.191,0.105,,,0.088,0.121,188.9,235,124436,,,0.122,17050,,,,0.053460591,7376.171628,137974,,,27.03167058,118,436525,22.1542753,31.90906586,,,,,,,82.50825083,43.93216864,141.0916217,,,,28.45264568,22.95774162,33.94754975,,,,0.332,,,0.316,0.349,0.09588691,8255,86091,0.081589038,0.110184783,0.051260798,1175,22922,0.035771436,0.066750159,0.001338152,187,139745,,,747.2994652,0.926498486,918.16,991,,,0.022626966,364,16087,0.012619815,0.032634117,3.396389984,,,,,,,2.797229664,3.053209228,3.45502507,3.558862984,,,,,,4.460435486,2.484510705,3.082351759,3.630791836,0.065543486,,,,,2242.873,,,,,0.797698385,47759,59871,0.749691815,0.845704955,64299,,,58259.34043,70338.65957,108750,26189.31915,191310.6809,28448,19679.82979,37216.17021,34622,16268.29787,52975.70213,78824,59822.12766,97825.87234,63871,60620.61702,67121.38298,,,,,,0.31626111,4341,13726,,,51.47900715,,,,,0.338885519,,64299,,,8.527002174,51,5981,,,3.037342658,31,1020629,2.063726974,4.311265455,,,,,,,,,,,,,2.233706872,1.344837453,3.488209975,,,,11.96249521,93,730428,9.499947927,14.86828929,12.73226109,,,,,,,,,,,,,12.11692946,9.445740954,15.30901142,,,,9.309610256,68,730428,7.229276637,11.80214931,,,,,,,50.0866885,26.66905217,85.64976274,,,,8.728202139,6.538022343,11.4167033,,,,6.564579294,67,1020629,5.087458785,8.336783653,,,,,,,,,,,,,7.171374694,5.485533405,9.211930806,,,,6.990291262,,10300,,,53,19,0.543748924,63151,116140,,,0.657,,,,,78.20135278,,,,,0.552848641,31770,57466,0.540330282,0.565367,0.193922712,10779,55584,0.175523658,0.212321766,0.892823583,51307,57466,0.881256442,0.904390723,139745,,,,,0.155554761,21738,139745,,,0.147912269,20670,139745,,,0.036945866,5163,139745,,,0.003277398,458,139745,,,0.068889764,9627,139745,,,0.000830083,116,139745,,,0.041246556,5764,139745,,,0.824566174,115229,139745,,,0.00750753,1007,134132,0.004980659,0.0100344,0.500855129,69992,139745,,,0.211962668,29615,139718,, -18,107,18107,IN,Montgomery County,2024,1,7769.412671,586,105374,6751.170747,8787.654595,0,,,,2,,,,2,,,,2,,,,2,8102.898083,7001.042232,9204.753934,,,,,2,,0.168,,,0.14,0.195,3.842018464,,,3.031086611,4.772256879,5.046813356,,,4.075552827,6.147486475,0.078048781,240,3075,0.068567423,0.087530139,0,,,,,,,,,,,,,0.078835227,0.068881894,0.088788561,,,,,,,0.199,,,0.16,0.241,0.358,,,0.287,0.429,8.2,0.037659389,0.108,,,0.261,,,0.214,0.312,0.632697174,24002,37936,,,0.16611497,,,0.13157172,0.203648298,0.088235294,3,34,0.026275054,0.184529137,459.8,175,38063,,,29.22702218,228,7801,25.43323279,33.02081156,,,,,,,,,,15.45595054,7.411729051,28.42404334,30.70819865,26.54490284,34.87149446,,,,,,,0.08246433,2491,30207,0.070549436,0.094379223,0.000288995,11,38063,,,3460.272727,0.000705458,27,38273,,,1417.518519,0.001175764,45,38273,,,850.5111111,2420,,,,,,,,,2456,0.5,,,,,,,,,0.51,0.55,,,,,,,0.5,,0.55,0.891505792,23090,25900,0.875598061,0.907413522,0.565938465,4948,8743,0.506440581,0.625436349,0.025073746,476,18984,,,0.155,1313,,0.112106383,0.197893617,,,,,,,0.791208791,0.194498813,1,0.483953787,0.344676407,0.623231167,0.125610106,0.088820047,0.162400165,4.196112249,116782,27831,3.646533646,4.745690852,0.19279051,1674,8683,0.145866159,0.239714862,11.03433781,42,38063,,,90.79666244,174,191637,77.3054391,104.2878858,,,,,,,,,,,,,96.33636783,81.81180776,110.8609279,,,,9.2,,,,,1,,,,,0.099871959,1560,15620,0.078826073,0.120917845,0.080283963,0.060658532,0.099909393,0.01056338,0.004621218,0.016505542,0.015364917,0.00701166,0.023718173,0.785160823,14085,17939,0.760270865,0.81005078,,,,,,,,,,0.45740498,0.302286247,0.612523714,0.81232597,0.776415841,0.848236099,0.308,,17939,0.269409722,0.346590279,76.75913305,,,75.90174347,77.61652264,,,,,,,,,,,,,76.38437377,75.48615271,77.28259483,,,,409.4985294,586,105374,374.6539384,444.3431203,,,,,,,,,,,,,419.0590456,382.5248024,455.5932889,,,,51.07513152,20,39158,31.19801723,78.88139819,,,,,,,,,,,,,56.78931165,34.19087535,88.68354476,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.118,,,0.1,0.136,0.169,,,0.147,0.193,0.105,,,0.088,0.121,112.7,36,31952,,,0.108,4090,,,,0.037659389,1435.726539,38124,,,32.23951345,37,114766,22.69959271,44.43792251,,,,,,,,,,,,,34.32330648,24.03962189,47.51792391,,,,0.351,,,0.333,0.369,0.094114921,2031,21580,0.079817049,0.108412794,0.055144215,499,9049,0.039654853,0.070633577,0.000731586,28,38273,,,1366.892857,0.91925,367.7,400,,,,,,,,2.949496537,,,,,,,,2.59688082,3.042586202,3.121555638,,,,,,,,2.918035705,3.193033698,0.078503124,,,,,-153.0596,,,,,0.837683853,47784,57043,0.740066823,0.935300882,66283,,,57893.7234,74672.2766,,,,79297,4496.489362,154097.5106,,,,,,,63888,57719.65957,70056.34043,,,,,,0.418387742,2512,6004,,,54.86035999,,,,,0.234132432,,66283,,,5.66695728,13,2294,,,3.732206705,10,267938,1.789738184,6.863661012,,,,,,,,,,,,,,,,,,,17.48757443,35,191637,12.03764158,24.55905631,18.26369647,,,,,,,,,,,,,18.32958395,12.454063,26.0173813,,,,13.04549748,25,191637,8.442358129,19.25772773,,,,,,,,,,,,,13.68090431,8.765613534,20.35610117,,,,13.80916481,37,267938,9.722926411,19.03411466,,,,,,,,,,,,,14.23759702,9.91700799,19.80105089,,,,7.073170732,,4100,,,29,0,0.593341384,17198,28985,,,0.697,,,,,48.2851541,,,,,0.752986237,11599,15404,0.726043387,0.779929088,0.095066185,1422,14958,0.073729966,0.116402404,0.872630486,13442,15404,0.85086065,0.894400322,38273,,,,,0.225903378,8646,38273,,,0.189768244,7263,38273,,,0.010686385,409,38273,,,0.004285005,164,38273,,,0.008857419,339,38273,,,0.000391921,15,38273,,,0.055130249,2110,38273,,,0.909204923,34798,38273,,,0.010469304,375,35819,0.004924604,0.016014004,0.490737596,18782,38273,,,0.529128005,20073,37936,, -18,109,18109,IN,Morgan County,2024,1,8379.243546,1198,199056,7616.56753,9141.919562,0,,,,2,,,,2,,,,2,,,,2,8519.097773,7729.98827,9308.207277,,,,,2,,0.158,,,0.131,0.19,3.620490344,,,2.860564357,4.467605797,5.321419039,,,4.373476691,6.365335515,0.082114736,438,5334,0.074746995,0.089482476,0,,,,,,,,,,0.09009009,0.036826273,0.143353908,0.081411394,0.073886043,0.088936745,,,,,,,0.193,,,0.152,0.239,0.373,,,0.309,0.443,8.3,0.060714305,0.093,,,0.265,,,0.219,0.316,0.68307328,49031,71780,,,0.182400726,,,0.149661833,0.222027776,0.102564103,4,39,0.039298768,0.192098401,228.5,165,72206,,,16.83780853,264,15679,14.8066694,18.86894767,,,,,,,,,,,,,17.23785515,15.1137352,19.3619751,,,,,,,0.090038249,5320,59086,0.078123356,0.101953143,0.000401629,29,72206,,,2489.862069,0.000470679,34,72236,,,2124.588235,0.000899828,65,72236,,,1111.323077,2124,,,,,,,,,2136,0.46,,,,,,,,,0.46,0.51,,,,,,0.25,,,0.51,0.895176271,44817,50065,0.881812818,0.908539724,0.558352266,9339,16726,0.512487572,0.60421696,0.027753363,1042,37545,,,0.115,1772,,0.075680851,0.154319149,,,,0.720338983,0.319644241,1,0.423469388,0,0.920295401,0.125,0.001597285,0.248402715,0.104775183,0.076272444,0.133277922,3.893982485,138287,35513,3.565168559,4.222796412,0.204833647,3263,15930,0.163056809,0.246610485,9.140514639,66,72206,,,97.66979682,345,353231,87.36340123,107.9761924,,,,,,,,,,,,,100.5866569,89.89470522,111.2786086,,,,9.6,,,,,1,,,,,0.094104308,2490,26460,0.078490569,0.109718048,0.074306347,0.057402339,0.091210356,0.016439909,0.010422672,0.022457146,0.005102041,0.001086155,0.009117927,0.82583682,28422,34416,0.800687103,0.850986537,,,,,,,,,,,,,0.764561919,0.733969212,0.795154626,0.538,,34416,0.502215625,0.573784375,75.80924874,,,75.19663559,76.4218619,,,,,,,,,,,,,75.61783452,74.99142952,76.24423952,,,,431.0785412,1198,199056,405.3640742,456.7930082,,,,,,,,,,,,,437.0567627,410.6572963,463.4562292,,,,44.42788351,31,69776,30.18659135,63.0618343,,,,,,,,,,,,,44.63117719,29.89019982,64.09781529,,,,4.284649777,23,5368,2.716100417,6.429078408,,,,,,,,,,,,,4.079254079,2.525122569,6.235573181,,,,,,,0.113,,,0.096,0.132,0.171,,,0.147,0.198,0.102,,,0.086,0.117,99.6,61,61225,,,0.093,6630,,,,0.060714305,4182.851349,68894,,,31.86474354,68,213402,24.74422018,40.39615522,,,,,,,,,,,,,32.8855338,25.485837,41.76346546,,,,0.339,,,0.32,0.357,0.098538622,4248,43110,0.08424075,0.112836495,0.069020867,1161,16821,0.049957037,0.088084697,0.000775237,56,72236,,,1289.928571,0.922222222,738.7,801,,,0.069683723,271,3889,0.035472387,0.103895059,3.111371123,,,,,,,,,3.105519698,3.261474062,,,,,,,,,3.26967979,0.043151484,,,,,523.72775,,,,,0.715530554,45409,63462,0.661345136,0.769715971,75542,,,67562.59575,83521.40426,,,,,,,17097,13879.97872,20314.02128,70774,24095.02128,117452.9787,79774,76366.34043,83181.65957,,,,,,0.392006224,4031,10283,,,77.36565633,,,,,0.248510762,,75542,,,3.567787972,14,3924,,,,,,,,,,,,,,,,,,,,,,,,,,22.1478195,82,353231,17.42066501,27.76248353,23.21427055,,,,,,,,,,,,,22.91052867,17.9896927,28.76207073,,,,15.85364818,56,353231,11.97567546,20.58728085,,,,,,,,,,,,,16.27137097,12.25782342,21.17942588,,,,15.42905982,76,492577,12.15634426,19.31176912,,,,,,,,,,,,,15.67660436,12.30950622,19.6805412,,,,5.789473684,,7600,,,38,6,0.670915669,36159,53895,,,0.728,,,,,51.62111622,,,,,0.824379099,22372,27138,0.811899257,0.836858942,0.092530448,2454,26521,0.074528838,0.110532058,0.878509839,23841,27138,0.863689441,0.893330237,72236,,,,,0.217315466,15698,72236,,,0.18399413,13291,72236,,,0.008513761,615,72236,,,0.003654687,264,72236,,,0.00772468,558,72236,,,0.000456836,33,72236,,,0.020848331,1506,72236,,,0.947989922,68479,72236,,,0.002071458,141,68068,0,0.004499841,0.49995847,36115,72236,,,0.541000279,38833,71780,, -18,111,18111,IN,Newton County,2024,1,10194.56304,280,38109,8216.365015,12172.76107,0,,,,2,,,,2,,,,2,,,,2,11144.531,8908.788042,13380.27396,,,,,2,,0.174,,,0.146,0.206,3.931315545,,,3.123434447,4.828849775,5.401913209,,,4.342457463,6.536574487,0.066929134,68,1016,0.051562663,0.082295605,0,,,,,,,,,,0.115044248,0.056212726,0.17387577,0.061521253,0.045770108,0.077272397,,,,,,,0.208,,,0.166,0.252,0.367,,,0.287,0.449,8,0.054043915,0.11,,,0.285,,,0.234,0.34,0.280187997,3875,13830,,,0.175149917,,,0.139125472,0.215959023,0.290322581,9,31,0.195384033,0.388273114,130.4,18,13808,,,20.37104402,56,2749,15.38806773,26.45349509,,,,,,,,,,,,,20.65404475,15.22866214,27.38426686,,,,,,,0.118986881,1306,10976,0.102306029,0.135667732,7.24218E-05,1,13808,,,13808,0.000144686,2,13823,,,6911.5,7.23432E-05,1,13823,,,13823,2056,,,,,,,,,2078,0.36,,,,,,,,,0.36,0.41,,,,,,,,,0.41,0.870018208,8601,9886,0.839490219,0.900546197,0.475985222,1546,3248,0.387937533,0.56403291,0.035977588,244,6782,,,0.16,446,,0.107574468,0.212425532,,,,,,,,,,0.267605634,0.124052351,0.411158917,0.1471843,0.07794759,0.216421011,3.83150408,106125,27698,3.043351336,4.619656823,0.220274914,641,2910,0.130246252,0.310303577,5.793742758,8,13808,,,120.2749141,84,69840,95.93598187,148.9085277,,,,,,,,,,,,,123.6211487,97.71738812,154.2847883,,,,8.9,,,,,0,,,,,0.079464286,445,5600,0.052084086,0.106844486,0.068866571,0.041062391,0.096670751,0.010714286,0.001646845,0.019781727,0.000714286,0,0.004845385,0.795747647,4566,5738,0.758477584,0.833017711,,,,,,,,,,,,,0.769528501,0.725457869,0.813599133,0.468,,5738,0.379268035,0.556731966,74.38637357,,,72.88414922,75.88859793,,,,,,,,,,,,,73.59376611,71.97358846,75.21394376,,,,504.2823739,280,38109,441.1924436,567.3723043,,,,,,,,,,,,,537.2302108,468.5098869,605.9505347,,,,93.74267635,12,12801,48.4382088,163.7495903,,,,,,,,,,,,,110.1726038,56.92779204,192.449367,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.119,,,0.103,0.139,0.175,,,0.151,0.2,0.104,,,0.09,0.122,50.9,6,11789,,,0.11,1520,,,,0.054043915,769.8015193,14244,,,38.37022471,16,41699,21.93189874,62.31084102,,,,,,,,,,,,,42.67235631,24.39093867,69.29723323,,,,0.351,,,0.335,0.368,0.128220935,1040,8111,0.107965615,0.148476254,0.093594424,282,3013,0.066190169,0.12099868,0.000361716,5,13823,,,2764.6,0.935172414,135.6,145,,,,,,,,3.225918279,,,,,,,,,3.240616572,3.305362938,,,,,,,,,3.309589375,0.024486048,,,,,-2162.1335,,,,,0.681463728,39238,57579,0.595899082,0.767028374,66837,,,56913.08511,76760.91489,,,,,,,,,,52500,40704.25532,64295.74468,62278,54317.65957,70238.34043,,,,,,0.491803279,990,2013,,,84.27196719,,,,,0.239268669,,66837,,,5.256241787,4,761,,,,,,,,,,,,,,,,,,,,,,,,,,15.9272745,11,69840,7.637747209,29.29082488,15.75028637,,,,,,,,,,,,,15.89684882,7.269051551,30.17717084,,,,,,,,,,,,,,,,,,,,,,,,,,,29.6608436,29,97772,19.86433247,42.59791908,,,,,,,,,,,,,31.57419937,20.98082618,45.63350918,,,,,,1400,,,21,-888,0.618292683,6591,10660,,,0.699,,,,,9.779343306,,,,,0.825013714,4512,5469,0.790993179,0.859034249,0.113987707,612,5369,0.072890292,0.155085122,0.879868349,4812,5469,0.850391637,0.90934506,13823,,,,,0.205165304,2836,13823,,,0.206539825,2855,13823,,,0.009838675,136,13823,,,0.005642769,78,13823,,,0.005498083,76,13823,,,0.001519207,21,13823,,,0.079722202,1102,13823,,,0.89112349,12318,13823,,,0.008181054,107,13079,0,0.017882562,0.487014396,6732,13823,,,1,13830,13830,, -18,113,18113,IN,Noble County,2024,1,8824.790973,750,133771,7835.832938,9813.749007,0,,,,2,,,,2,,,,2,7040.611014,4556.312224,10393.33074,,9025.280015,7953.659091,10096.90094,,,,,2,,0.174,,,0.146,0.205,3.887388975,,,3.098448855,4.808490824,5.450237444,,,4.488093202,6.574850711,0.067169294,294,4377,0.059753552,0.074585036,0,,,,,,,,,,0.058192956,0.040236705,0.076149206,0.067381738,0.059233435,0.075530042,,,,,,,0.201,,,0.16,0.242,0.403,,,0.334,0.474,8.6,0.037111792,0.089,,,0.257,,,0.213,0.309,0.610068062,28952,47457,,,0.170987675,,,0.137059875,0.208751658,0.166666667,7,42,0.092975613,0.254046475,364.2,172,47227,,,26.15428194,277,10591,23.07422328,29.2343406,,,,,,,,,,29.82554868,22.34138263,39.01255201,26.09208973,22.6520077,29.53217175,,,,,,,0.126683458,4929,38908,0.110002607,0.14336431,0.000338789,16,47227,,,2951.6875,0.000253341,12,47367,,,3947.25,0.001013364,48,47367,,,986.8125,3007,,,,,,,,,3019,0.41,,,,,,,,0.33,0.42,0.48,,,,,,,,0.28,0.48,0.831760464,26529,31895,0.815535258,0.84798567,0.445052037,5046,11338,0.393630592,0.496473483,0.028340635,621,21912,,,0.128,1439,,0.085106383,0.170893617,,,,,,,,,,0.096615721,0.034137539,0.159093902,0.077566964,0.051248532,0.103885396,3.68327679,118340,32129,3.208045489,4.158508092,0.138693118,1594,11493,0.093418248,0.183967987,10.79890741,51,47227,,,72.33364313,172,237787,61.52348151,83.14380476,,,,,,,,,,51.87756894,27.62262058,88.71222283,76.11014156,64.20461043,88.01567268,,,,8.9,,,,,0,,,,,0.086297215,1565,18135,0.066659445,0.105934985,0.057150822,0.041709388,0.072592257,0.028673835,0.017311698,0.040035973,0.003584229,0.00036322,0.006805239,0.773562247,17392,22483,0.744754829,0.802369666,,,,,,,,,,0.703622393,0.579690244,0.827554542,0.784788561,0.762293034,0.807284088,0.363,,22483,0.324686623,0.401313378,75.75589849,,,74.9597061,76.55209089,,,,,,,,,,80.70137644,74.63637355,86.76637934,75.44422182,74.60649107,76.28195257,,,,425.3152384,750,133771,393.4135562,457.2169206,,,,,,,,,,287.6150453,187.8796966,421.4226805,444.3369439,409.6718616,479.0020261,,,,79.02951753,40,50614,56.45984598,107.6157722,,,,,,,,,,118.049817,56.60947581,217.0978166,69.29835416,46.04825308,100.1554163,,,,8.636363636,38,4400,6.111604919,11.85408385,,,,,,,,,,,,,7.608695652,5.055923004,10.99668368,,,,,,,0.117,,,0.099,0.137,0.172,,,0.148,0.198,0.103,,,0.087,0.121,56.2,22,39175,,,0.089,4190,,,,0.037111792,1764.14613,47536,,,18.90716582,27,142803,12.45994141,27.5089336,,,,,,,,,,,,,21.83229563,14.38762039,31.7648439,,,,0.337,,,0.321,0.352,0.137515912,3781,27495,0.118452082,0.156579742,0.101284832,1214,11986,0.071497598,0.131072066,0.000443347,21,47367,,,2255.571429,0.907480315,461,508,,,0.067918498,170,2503,0.02515524,0.110681756,3.018630734,,,,,,,,2.55858399,3.156969151,3.152025766,,,,,,,,2.954422627,3.2210694,0.245250404,,,,,-911.0511,,,,,0.753547892,43222,57358,0.7001906,0.806905184,69567,,,64073.04255,75060.95745,143214,93555.10638,192872.8936,75995,54087.08511,97902.91489,52083,7196.021277,96969.97872,83112,76327.65957,89896.34043,69521,66769.85106,72272.14894,,,,,,0.440164055,3005,6827,,,68.10907903,,,,,0.219400003,,69567,,,2.637652489,8,3033,,,3.001578831,10,333158,1.439373719,5.520010338,,,,,,,,,,,,,,,,,,,14.4416523,33,237787,9.812402074,20.49877267,13.87796642,,,,,,,,,,,,,16.59133223,11.19410219,23.68515841,,,,13.03687754,31,237787,8.857925782,18.50480704,,,,,,,,,,,,,14.05856118,9.415239062,20.19043894,,,,14.40757839,48,333158,10.62301095,19.1023587,,,,,,,,,,,,,13.12050493,9.284850183,18.00891812,,,,,,5300,,,35,-888,0.560537462,19190,34235,,,0.7,,,,,22.34119676,,,,,0.765829941,13546,17688,0.733253528,0.798406354,0.064707249,1114,17216,0.048376035,0.081038464,0.828923564,14662,17688,0.803624861,0.854222267,47367,,,,,0.241645027,11446,47367,,,0.177000866,8384,47367,,,0.009605844,455,47367,,,0.005003483,237,47367,,,0.005383495,255,47367,,,0.000696688,33,47367,,,0.108514367,5140,47367,,,0.862625879,40860,47367,,,0.021295295,945,44376,0.01545698,0.02713361,0.494078156,23403,47367,,,0.776913838,36870,47457,, -18,115,18115,IN,Ohio County,2024,1,7280.356683,114,16017,4851.006034,9709.707332,0,,,,2,,,,2,,,,2,,,,2,7561.649681,5015.305724,10107.99364,,,,,2,,0.16,,,0.133,0.19,3.761282236,,,2.9262373,4.666027182,5.319925767,,,4.22395337,6.48026806,0.076294278,28,367,0.049133898,0.103454658,0,,,,,,,,,,,,,0.077994429,0.050254368,0.10573449,,,,,,,0.199,,,0.159,0.245,0.367,,,0.287,0.452,,,0.101,,,0.258,,,0.207,0.309,0.638888889,3795,5940,,,0.166372023,,,0.131927129,0.204941262,0.4,2,5,0.149190828,0.619170557,100.4,6,5978,,,18.26923077,19,1040,10.99927035,28.5296669,,,,,,,,,,,,,18.21862348,10.79751091,28.79327962,,,,,,,0.086815328,401,4619,0.073708945,0.099921711,0.00016728,1,5978,,,5978,0.000327118,2,6114,,,3057,,0,6114,,,,3591,,,,,,,,,3620,0.41,,,,,,,,,0.42,0.5,,,,,,,,,0.5,0.926912568,4071,4392,0.902193578,0.951631559,0.690809969,887,1284,0.54191086,0.839709078,0.021766169,70,3216,,,0.122,149,,0.076723404,0.167276596,,,,,,,,,,,,,0.159554731,0.074868983,0.244240479,4.225013439,117899,27905,3.024257594,5.425769283,0.240527183,292,1214,0.115723292,0.365331074,8.364001338,5,5978,,,81.58547779,24,29417,52.27335505,121.3927239,,,,,,,,,,,,,84.99486489,54.4578137,126.4656217,,,,9,,,,,0,,,,,0.076190476,200,2625,0.042236195,0.110144757,0.05625,0.02126807,0.091231931,0.004571429,0,0.017173392,0.012952381,0,0.031905549,0.839474644,2301,2741,0.762474903,0.916474386,,,,,,,,,,,,,0.801691007,0.71000764,0.893374373,0.509,,2741,0.415713155,0.602286845,77.79862045,,,75.72725194,79.86998896,,,,,,,,,,,,,77.4025988,75.30743894,79.49775865,,,,425.9931599,114,16017,339.8961879,512.0901318,,,,,,,,,,,,,438.5861876,349.4168441,527.755531,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.114,,,0.096,0.133,0.174,,,0.149,0.2,0.097,,,0.081,0.114,,,,,,0.101,600,,,,,,6128,,,,,,,,,,,,,,,,,,,,,,,,,,0.341,,,0.323,0.358,0.09157402,313,3418,0.076084658,0.107063382,0.073926868,93,1258,0.048905591,0.098948145,0.000327118,2,6114,,,3057,0.975,71.175,73,,,,,,,,3.113233084,,,,,,,,,3.091690007,2.82591377,,,,,,,,,2.830502152,,,,,,-950.3721,,,,,0.620280056,40000,64487,0.510434999,0.730125114,70618,,,60924.04255,80311.95745,,,,,,,,,,,,,64757,51597,77917,,,,,,0.341890315,293,857,,,,,,,,0.237913846,,70618,,,3.184713376,1,314,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12,,500,,,6,0,0.648734177,3075,4740,,,0.701,,,,,3.007271276,,,,,0.774294671,1976,2552,0.726428592,0.822160749,0.061182307,148,2419,0.019147368,0.103217246,0.820141066,2093,2552,0.777446669,0.862835462,6114,,,,,0.203303893,1243,6114,,,0.233725875,1429,6114,,,0.008832188,54,6114,,,0.002453386,15,6114,,,0.003107622,19,6114,,,0.000163559,1,6114,,,0.019790644,121,6114,,,0.952731436,5825,6114,,,0,0,5596,0,0.015330099,0.497546614,3042,6114,,,1,5940,5940,, -18,117,18117,IN,Orange County,2024,1,10633.90819,428,54312,8958.945381,12308.87101,0,,,,2,,,,2,,,,2,,,,2,10765.98742,9061.92558,12470.04926,,,,,2,,0.189,,,0.156,0.222,4.222563885,,,3.366091229,5.136633124,5.535738389,,,4.522374388,6.63158757,0.08703591,143,1643,0.07340536,0.10066646,0,,,,,,,,,,,,,0.084283904,0.070576496,0.097991311,,,,,,,0.229,,,0.183,0.279,0.378,,,0.302,0.459,8.1,0.003938805,0.13,,,0.293,,,0.239,0.351,0.698746665,13882,19867,,,0.154055712,,,0.122402812,0.186889654,0.214285714,3,14,0.080830645,0.373240293,277.4,55,19830,,,30.21442495,124,4104,24.89628745,35.53256245,,,,,,,,,,,,,31.80492976,26.11430579,37.49555374,,,,,,,0.100184584,1574,15711,0.085886712,0.114482456,0.000403429,8,19830,,,2478.75,0.000305764,6,19623,,,3270.5,0.000713449,14,19623,,,1401.642857,1455,,,,,,,,,1472,0.37,,,,,,,,,0.37,0.39,,,,,,,,,0.39,0.853024678,11718,13737,0.821306132,0.884743223,0.501456419,2238,4463,0.428776575,0.574136264,0.034002904,281,8264,,,0.203,880,,0.131510638,0.274489362,,,,,,,0.08045977,0,0.515303515,0.05785124,0,0.370593145,0.225904376,0.149084566,0.302724187,4.948042891,113518,22942,4.036457292,5.85962849,0.28243935,1269,4493,0.189856041,0.375022659,11.09430156,22,19830,,,91.79739295,90,98042,73.81594432,112.8345809,,,,,,,,,,,,,95.86075418,76.98405711,117.9649068,,,,8.6,,,,,0,,,,,0.080725907,645,7990,0.059258089,0.102193726,0.060353535,0.0398302,0.080876871,0.011764706,0.002625802,0.020903609,0.015644556,0.007240882,0.024048229,0.834545652,7687,9211,0.799053435,0.870037869,,,,,,,,,,,,,0.834762798,0.800871052,0.868654545,0.341,,9211,0.286816702,0.395183298,73.75338187,,,72.50449044,75.00227331,,,,,,,,,,,,,73.4774689,72.22495394,74.72998385,,,,540.6155974,428,54312,485.7453391,595.4858557,,,,,,,,,,,,,556.3003784,499.3971544,613.2036024,,,,76.25050834,15,19672,42.67683069,125.7636177,,,,,,,,,,,,,71.67668302,38.16481497,122.5693109,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.131,,,0.11,0.151,0.186,,,0.159,0.215,0.109,,,0.093,0.128,90.2,15,16630,,,0.13,2560,,,,0.003938805,78.14588914,19840,,,18.60402185,11,59127,9.287060678,33.28773405,,,,,,,,,,,,,19.69208736,9.830219061,35.23458381,,,,0.352,,,0.335,0.369,0.111625835,1253,11225,0.093753495,0.129498176,0.072035699,339,4706,0.048205912,0.095865486,0.000764409,15,19623,,,1308.2,0.896428571,181.975,203,,,,,,,,3.103439839,,,,,,,,,3.092164778,3.164461183,,,,,,,,,3.182731145,0.039784694,,,,,-2210.162667,,,,,0.799145573,37412,46815,0.673102178,0.925188968,54128,,,46608.51064,61647.48936,,,,,,,,,,119375,20856.70213,217893.2979,61061,56003.12766,66118.87234,,,,,,0.547357926,1647,3009,,,88.16197681,,,,,0.279430239,,54128,,,3.378378378,4,1184,,,,,,,,,,,,,,,,,,,,,,,,,,14.01199765,13,98042,7.240203656,24.47614004,13.25962343,,,,,,,,,,,,,13.45268402,6.715531393,24.07056773,,,,12.23965239,12,98042,6.324406998,21.38020955,,,,,,,,,,,,,11.84795838,5.914458136,21.19927029,,,,18.25057307,25,136982,11.81080861,26.9414461,,,,,,,,,,,,,19.23136097,12.44552282,28.38928251,,,,16,,2000,,,27,5,0.587624751,8832,15030,,,0.61,,,,,19.03623922,,,,,0.777638033,6183,7951,0.744914234,0.810361832,0.089437263,685,7659,0.058952499,0.119922028,0.832222362,6617,7951,0.801524447,0.862920277,19623,,,,,0.2248382,4412,19623,,,0.2080212,4082,19623,,,0.015848749,311,19623,,,0.004688376,92,19623,,,0.004280691,84,19623,,,0.000254803,5,19623,,,0.018040055,354,19623,,,0.944147174,18527,19623,,,0.002263785,42,18553,0,0.007564626,0.495439026,9722,19623,,,1,19867,19867,, -18,119,18119,IN,Owen County,2024,1,11498.58243,466,58356,9677.442054,13319.72281,0,,,,2,,,,2,,,,2,,,,2,11941.68345,10038.44625,13844.92065,,,,,2,,0.186,,,0.153,0.22,4.185566549,,,3.261759598,5.086936416,5.594815619,,,4.49401514,6.67620708,0.08650261,116,1341,0.071456995,0.101548225,0,,,,,,,,,,,,,0.088529638,0.073081821,0.103977455,,,,,,,0.23,,,0.182,0.28,0.369,,,0.299,0.443,8.2,0.002655702,0.126,,,0.277,,,0.221,0.333,0.387739787,8267,21321,,,0.165317398,,,0.132524372,0.201837651,0.2,3,15,0.07369192,0.354373303,265.8,57,21446,,,22.20187686,97,4369,18.0042265,27.08440694,,,,,,,,,,,,,22.99412916,18.58159697,28.13899064,,,,,,,0.113028169,1926,17040,0.096347318,0.12970902,0.000139886,3,21446,,,7148.666667,0.000186202,4,21482,,,5370.5,0.001024113,22,21482,,,976.4545455,2558,,,,,,,,,2542,0.38,,,,,,,,,0.38,0.45,,,,,,,,,0.45,0.86357753,13344,15452,0.839191194,0.887963867,0.523391813,2506,4788,0.445750219,0.601033407,0.031687156,299,9436,,,0.204,869,,0.143234043,0.264765957,,,,,,,,,,0.018867925,0,0.78463825,0.205313387,0.137019756,0.273607018,4.052988293,105248,25968,3.426430207,4.67954638,0.220428868,956,4337,0.129780274,0.311077462,9.792035811,21,21446,,,94.49991409,99,104762,76.80486708,115.0502546,,,,,,,,,,,,,98.50648252,80.0612082,119.9281079,,,,8.7,,,,,0,,,,,0.119479049,1055,8830,0.090314821,0.148643276,0.083429229,0.057864433,0.108994025,0.026047565,0.01615242,0.035942711,0.015288788,0.004069177,0.0265084,0.83598369,8201,9810,0.8098143,0.862153081,,,,,,,,,,,,,0.796457219,0.759470897,0.833443542,0.529,,9810,0.464869531,0.593130469,73.48994347,,,72.19430103,74.78558592,,,,,,,,,,,,,73.0782598,71.74826989,74.4082497,,,,540.2347521,466,58356,486.3140196,594.1554845,,,,,,,,,,,,,554.7573857,498.8743169,610.6404544,,,,93.81840926,18,19186,55.60273523,148.2735342,,,,,,,,,,,,,100.0778383,59.31246959,158.1661307,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.128,,,0.107,0.15,0.183,,,0.156,0.209,0.113,,,0.096,0.13,92.6,17,18368,,,0.126,2680,,,,0.002655702,57.29676717,21575,,,25.36542059,16,63078,14.49852953,41.19185389,,,,,,,,,,,,,26.47209676,15.13109057,42.98902665,,,,0.381,,,0.362,0.398,0.123258391,1557,12632,0.103003072,0.143513711,0.085097192,394,4630,0.058884426,0.111309958,0.00074481,16,21482,,,1342.625,0.825,112.2,136,,,,,,,,2.796559512,,,,,,,,,2.798077461,2.799754005,,,,,,,,,2.793278903,0.019947303,,,,,789.4824,,,,,0.889060778,45976,51713,0.801369202,0.976752354,62460,,,54928.59575,69991.40426,,,,,,,,,,24167,16192.3617,32141.6383,59167,53196.44681,65137.55319,,,,,,0.412352407,908,2202,,,,,,,,0.266138329,,62460,,,3.384094755,4,1182,,,,,,,,,,,,,,,,,,,,,,,,,,20.59865763,21,104762,12.40173749,32.16735549,20.04543632,,,,,,,,,,,,,21.51888911,12.95577695,33.60441093,,,,18.13634715,19,104762,10.91926573,28.32215266,,,,,,,,,,,,,18.90528453,11.38221626,29.52294362,,,,24.57774076,36,146474,17.21394747,34.02595306,,,,,,,,,,,,,25.59344808,17.92533639,35.43212013,,,,20.5,,2000,,,27,14,0.604086612,9904,16395,,,0.603,,,,,19.23829997,,,,,0.797188755,6749,8466,0.764223508,0.830154002,0.089272318,714,7998,0.062929696,0.11561494,0.788447909,6675,8466,0.753782367,0.823113452,21482,,,,,0.202681315,4354,21482,,,0.209989759,4511,21482,,,0.006517084,140,21482,,,0.004049902,87,21482,,,0.005632623,121,21482,,,4.65506E-05,1,21482,,,0.014570338,313,21482,,,0.954799367,20511,21482,,,0.000740156,15,20266,0,0.006122482,0.49380877,10608,21482,,,1,21321,21321,, -18,121,18121,IN,Parke County,2024,1,7741.6596,259,46229,6122.886793,9360.432408,0,,,,2,,,,2,,,,2,,,,2,8108.800222,6391.158311,9826.442133,,,,,2,,0.204,,,0.173,0.239,4.395476792,,,3.501207487,5.390148524,5.807323659,,,4.680172018,7.032221351,0.05734767,80,1395,0.045146468,0.069548873,0,,,,,,,,,,,,,0.057538237,0.0452205,0.069855975,,,,,,,0.244,,,0.197,0.29,0.422,,,0.34,0.508,7.6,0.064743422,0.123,,,0.312,,,0.258,0.371,0.469980193,7593,16156,,,0.152271361,,,0.119905162,0.188433092,0.153846154,2,13,0.034991468,0.324991408,505.9,83,16407,,,14.31238332,46,3214,10.47846341,19.09071366,,,,,,,,,,,,,14.88587496,10.85785934,19.91847188,,,,,,,0.122005286,1431,11729,0.104132946,0.139877627,0.000304748,5,16407,,,3281.4,0.000183273,3,16369,,,5456.333333,0.000794184,13,16369,,,1259.153846,4444,,,,,,,,,4467,0.42,,,,,,,,,0.42,0.46,,,,,,,,,0.46,0.852907839,9782,11469,0.820174427,0.88564125,0.470403353,1796,3818,0.39919554,0.541611166,0.030413968,216,7102,,,0.205,738,,0.13112766,0.27887234,,,,,,,,,,,,,0.278387192,0.198883445,0.35789094,3.999023544,110577,27651,3.326123155,4.671923932,0.179079498,642,3585,0.112006641,0.246152354,14.01840678,23,16407,,,58.31389537,49,84028,43.14094082,77.09406221,,,,,,,,,,,,,60.59305452,44.67653512,80.33759948,,,,8.9,,,,,1,,,,,0.12572856,755,6005,0.09332001,0.158137109,0.081139983,0.048822517,0.11345745,0.048293089,0.024266794,0.072319385,0.01815154,0.00625525,0.030047831,0.721371611,4523,6270,0.673657219,0.769086003,,,,,,,,,,,,,0.646533613,0.58687098,0.706196247,0.479,,6270,0.405851868,0.552148132,78.24147131,,,76.73795295,79.74498966,,,,,,,,,,,,,77.83863016,76.29686855,79.38039177,,,,380.9079676,259,46229,331.5619916,430.2539436,,,,,,,,,,,,,392.2215491,340.5381151,443.9049831,,,,76.35530669,12,15716,39.45390118,133.3773546,,,,,,,,,,,,,81.93922841,42.33919501,143.1313421,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.138,,,0.119,0.16,0.197,,,0.169,0.226,0.118,,,0.101,0.136,129.6,18,13889,,,0.123,2010,,,,0.064743422,1122.586197,17339,,,,,,,,,,,,,,,,,,,,,,,,,,0.358,,,0.34,0.375,0.133374009,1093,8195,0.1119272,0.154820817,0.096164236,356,3702,0.066377002,0.12595147,0.000488729,8,16369,,,2046.125,0.85625,143.85,168,,,,,,,,3.128016962,,,,,,,,,3.161638031,3.431257826,,,,,,,,,3.449268621,0.058529786,,,,,-1344.083,,,,,0.712570453,41721,58550,0.575705976,0.84943493,64700,,,59213.19149,70186.80851,,,,,,,31722,28527.61702,34916.38298,,,,64481,58247.12766,70714.87234,,,,,,0.54479964,1210,2221,,,63.98976557,,,,,0.237727975,,64700,,,3.118503119,3,962,,,,,,,,,,,,,,,,,,,,,,,,,,13.83078823,12,84028,6.904279655,24.74710061,14.28095397,,,,,,,,,,,,,12.89371991,6.183039872,23.71200999,,,,,,,,,,,,,,,,,,,,,,,,,,,13.59053419,16,117729,7.768164559,22.07017608,,,,,,,,,,,,,14.39820023,8.229815481,23.38177512,,,,,,1600,,,70,-888,0.535957203,7013,13085,,,0.598,,,,,7.919947665,,,,,0.817467249,4680,5725,0.783056171,0.851878327,0.091472303,502,5488,0.054964721,0.127979885,0.76209607,4363,5725,0.710116532,0.814075608,16369,,,,,0.223532287,3659,16369,,,0.209420246,3428,16369,,,0.020465514,335,16369,,,0.005253834,86,16369,,,0.002199279,36,16369,,,0.000244364,4,16369,,,0.017166595,281,16369,,,0.945079113,15470,16369,,,0.004423052,68,15374,0,0.011700636,0.519335329,8501,16369,,,0.993748453,16055,16156,, -18,123,18123,IN,Perry County,2024,1,6888.694116,304,53252,5663.768043,8113.620189,0,,,,2,,,,2,,,,2,,,,2,7315.73393,5987.805014,8643.662846,,,,,2,,0.161,,,0.136,0.188,3.683057471,,,2.931645595,4.522101195,5.153405165,,,4.220203861,6.196820659,0.095345345,127,1332,0.079573042,0.111117649,0,,,,,,,,,,,,,0.096394984,0.08020124,0.112588728,,,,,,,0.198,,,0.159,0.24,0.396,,,0.323,0.477,8,0.070656383,0.102,,,0.251,,,0.206,0.3,0.901877934,17289,19170,,,0.180641413,,,0.144665044,0.22160872,0.3,3,10,0.129013968,0.476732101,150.1,29,19316,,,30.98995696,108,3485,25.14521736,36.83469656,,,,,,,,,,,,,32.40599205,26.23679759,38.57518651,,,,,,,0.069260428,988,14265,0.058537023,0.079983832,0.000465935,9,19316,,,2146.222222,0.000312777,6,19183,,,3197.166667,0.000781942,15,19183,,,1278.866667,2247,,,,,,,,,2258,0.45,,,,,,,,,0.45,0.41,,,,,,,,,0.41,0.911977757,12464,13667,0.897881133,0.92607438,0.575184226,2888,5021,0.502220902,0.648147551,0.030919632,272,8797,,,0.165,637,,0.107808511,0.222191489,,,,,,,,,,0.070707071,0,0.448288092,0.121031208,0.07927364,0.162788775,4.563092692,113078,24781,4.00090134,5.125284044,0.164437841,664,4038,0.105050438,0.223825243,9.836405053,19,19316,,,65.74690572,63,95822,50.52172757,84.11885296,,,,,,,,,,,,,70.12076354,53.88272001,89.71491712,,,,9,,,,,0,,,,,0.104342191,805,7715,0.070460168,0.138224213,0.06714472,0.042305213,0.091984227,0.025793908,0.002396209,0.049191607,0.011665587,0.00151696,0.021814213,0.838270425,7018,8372,0.801728153,0.874812698,,,,,,,,,,,,,0.838397379,0.80193189,0.874862867,0.287,,8372,0.237370499,0.336629501,77.11698005,,,76.04779733,78.18616277,,,,,,,,,,,,,76.7267981,75.6087533,77.8448429,,,,396.2836461,304,53252,349.3945113,443.1727808,,,,,,,,,,,,,410.4147662,361.1948173,459.6347151,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.113,,,0.097,0.131,0.166,,,0.143,0.19,0.099,,,0.084,0.115,103,17,16510,,,0.102,1960,,,,0.070656383,1366.353128,19338,,,,,,,,,,,,,,,,,,,,,,,,,,0.343,,,0.325,0.359,0.080649869,829,10279,0.066351996,0.094947741,0.040889527,171,4182,0.027783144,0.05399591,0.000781942,15,19183,,,1278.866667,0.9125,197.1,216,,,,,,,,3.258697969,,,,,,,,,3.266672687,3.297853771,,,,,,,,,3.31924972,0.045352597,,,,,-5305.316721,,,,,0.799384161,44393,55534,0.723118006,0.875650316,55503,,,47910.82979,63095.17021,,,,115435,48103.93617,182766.0638,,,,,,,58797,54390.87234,63203.12766,,,,,,0.412627986,1209,2930,,,,,,,,0.224546421,,55503,,,2.811621368,3,1067,,,,,,,,,,,,,,,,,,,,,,,,,,13.92136212,12,95822,7.193370956,24.31781801,12.52322014,,,,,,,,,,,,,15.10971283,7.807409104,26.39362754,,,,,,,,,,,,,,,,,,,,,,,,,,,17.89242181,24,134135,11.46401227,26.62250538,,,,,,,,,,,,,19.05185279,12.20688157,28.34764677,,,,12.10526316,,1900,,,8,15,0.581272909,8722,15005,,,0.699,,,,,51.23588283,,,,,0.751647772,5702,7586,0.728203722,0.775091823,0.082200996,611,7433,0.054672004,0.109729987,0.811494859,6156,7586,0.774601174,0.848388544,19183,,,,,0.204556117,3924,19183,,,0.194807903,3737,19183,,,0.032268154,619,19183,,,0.00302351,58,19183,,,0.008027941,154,19183,,,0.000729813,14,19183,,,0.016472919,316,19183,,,0.928947506,17820,19183,,,0.001103936,20,18117,0,0.00615212,0.452796747,8686,19183,,,0.542983829,10409,19170,, -18,125,18125,IN,Pike County,2024,1,8472.647364,247,33749,6721.860451,10223.43428,0,,,,2,,,,2,,,,2,,,,2,8673.822626,6842.256092,10505.38916,,,,,2,,0.166,,,0.138,0.196,3.895605022,,,3.061538804,4.811195508,5.427351227,,,4.340378359,6.617108259,0.08974359,84,936,0.071433025,0.108054155,0,,,,,,,,,,,,,0.086338798,0.068140066,0.104537529,,,,,,,0.207,,,0.164,0.25,0.379,,,0.301,0.463,8.7,0.00850872,0.098,,,0.273,,,0.222,0.324,0.455020408,5574,12250,,,0.167600424,,,0.133517902,0.205625695,0,0,4,0,0.360186253,181.2,22,12144,,,26.32644796,65,2469,20.31819673,33.55521904,,,,,,,,,,,,,28.92745883,22.32560202,36.87042092,,,,,,,0.093141846,895,9609,0.078843974,0.107439719,0.000329381,4,12144,,,3036,8.21828E-05,1,12168,,,12168,0.000410914,5,12168,,,2433.6,3867,,,,,,,,,3890,0.36,,,,,,,,,0.37,0.31,,,,,,,,,0.31,0.904263971,7783,8607,0.875495526,0.933032417,0.511846559,1361,2659,0.422004302,0.601688816,0.031762122,188,5919,,,0.159,419,,0.106574468,0.211425532,,,,,,,,,,,,,0.159316647,0.088558909,0.230074385,4.095783154,116652,28481,3.302036593,4.889529715,0.083172147,215,2585,0.030071657,0.136272637,18.93939394,23,12144,,,72.95010213,45,61686,53.21030507,97.6129762,,,,,,,,,,,,,74.24030236,53.94311735,99.66414072,,,,8.9,,,,,0,,,,,0.061378659,325,5295,0.038538844,0.084218475,0.032954546,0.012265391,0.0536437,0.010387158,0.000105851,0.020668465,0.017941454,0.003114164,0.032768745,0.839226519,4557,5430,0.798341962,0.880111077,,,,,,,,,,,,,0.829040567,0.776856148,0.881224985,0.434,,5430,0.365793088,0.502206912,75.38983201,,,73.99594148,76.78372255,,,,,,,,,,,,,75.15567505,73.7250057,76.58634441,,,,483.9288622,247,33749,419.5249748,548.3327497,,,,,,,,,,,,,489.7498246,423.7601012,555.7395481,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.118,,,0.1,0.135,0.176,,,0.15,0.201,0.1,,,0.086,0.117,,,,,,0.098,1200,,,,0.00850872,109.2945017,12845,,,,,,,,,,,,,,,,,,,,,,,,,,0.344,,,0.326,0.36,0.100690449,700,6952,0.084009598,0.1173713,0.074937254,209,2789,0.052298956,0.097575551,0.000493097,6,12168,,,2028,0.925,129.5,140,,,,,,,,2.943520315,,,,,,,,,2.945297584,3.132995938,,,,,,,,,3.148423615,0.039468,,,,,1673.274,,,,,0.679243703,40559,59712,0.574654281,0.783833125,63487,,,59359.68085,67614.31915,,,,,,,,,,,,,63000,56901.95745,69098.04255,,,,,,0.484228972,829,1712,,,,,,,,0.201269551,,63487,,,4.457652303,3,673,,,,,,,,,,,,,,,,,,,,,,,,,,14.40101894,10,61686,6.58506288,27.33761979,16.21113381,,,,,,,,,,,,,14.83233864,6.782289713,28.15639894,,,,,,,,,,,,,,,,,,,,,,,,,,,13.83907463,12,86711,7.150851805,24.17407832,,,,,,,,,,,,,14.38434983,7.432603458,25.12656436,,,,10.83333333,,1200,,,7,6,0.645563051,6220,9635,,,0.672,,,,,17.78475792,,,,,0.856290996,4308,5031,0.818810064,0.893771928,0.058714843,286,4871,0.031436968,0.085992718,0.758894852,3818,5031,0.710883572,0.806906131,12168,,,,,0.221400395,2694,12168,,,0.210716634,2564,12168,,,0.007149901,87,12168,,,0.003698225,45,12168,,,0.005177515,63,12168,,,0.000657462,8,12168,,,0.017669297,215,12168,,,0.955292571,11624,12168,,,0,0,11555,0,0.008249169,0.492274819,5990,12168,,,1,12250,12250,, -18,127,18127,IN,Porter County,2024,1,7153.781258,2432,481894,6706.519169,7601.043347,0,,,,2,,,,2,9895.575352,7513.953816,12277.19689,,5440.745852,4220.66196,6660.829745,,7316.098924,6813.74947,7818.448377,,,,,2,,0.151,,,0.129,0.177,3.547206368,,,2.847406755,4.318268992,5.0134648,,,4.197801426,5.827720971,0.073730723,851,11542,0.068963028,0.078498417,0,,,,0.103225807,0.055326865,0.151124748,0.130559541,0.105546649,0.155572433,0.059773829,0.046567946,0.072979712,0.070360409,0.065161013,0.075559804,,,,0.105263158,0.053105737,0.157420579,0.162,,,0.127,0.199,0.378,,,0.324,0.43,8.1,0.079451651,0.093,,,0.218,,,0.18,0.257,0.795612389,137812,173215,,,0.17021821,,,0.139370221,0.202393102,0.111111111,10,90,0.066261532,0.166240086,279.5,487,174243,,,10.2001785,400,39215,9.20056101,11.199796,,,,,,,12.7513487,8.329604324,18.68368028,9.699161598,7.383451197,12.5112118,10.08762992,8.940356349,11.23490348,,,,15.625,8.931037552,25.37402109,0.06263314,8850,141299,0.054292714,0.070973565,0.000562433,98,174243,,,1777.989796,0.000600717,105,174791,,,1664.676191,0.00219691,384,174791,,,455.1848958,3614,,,,,,,5464,2069,3650,0.41,,,,,,0.35,0.37,0.35,0.42,0.48,,,,,,0.45,0.28,0.37,0.48,0.939404029,112860,120140,0.932049468,0.946758589,0.676668708,29835,44091,0.641893909,0.711443507,0.03266948,2810,86013,,,0.103,3737,,0.074404255,0.131595745,,,,0.139393939,0,0.422827085,0.279601407,0.135456943,0.423745871,0.165518492,0.104733046,0.226303937,0.090882695,0.071597484,0.110167905,4.178119426,147567,35319,3.906350851,4.449888001,0.183624886,6865,37386,0.155256678,0.211993095,9.125187239,159,174243,,,76.49863521,653,853610,70.63113427,82.36613615,,,,,,,77.45933385,51.04618909,112.699264,50.30181087,36.69048601,67.30778057,81.96686319,75.27290269,88.66082368,,,,8.3,,,,,0,,,,,0.114035761,7430,65155,0.102291645,0.125779877,0.096661491,0.084859985,0.108462996,0.016345637,0.009542879,0.023148396,0.005295066,0.001963642,0.00862649,0.826243647,67633,81856,0.814422032,0.838065263,,,,0.687145558,0.602256645,0.77203447,0.860578153,0.801409799,0.919746507,0.771399017,0.711532959,0.831265076,0.819841819,0.802863199,0.83682044,0.433,,81856,0.408292751,0.457707249,77.45410027,,,77.06025727,77.84794326,,,,94.10336235,78.23856158,109.9681631,73.33597909,71.10911868,75.5628395,80.17005632,78.54278463,81.797328,77.23823618,76.81258477,77.66388758,,,,372.6474334,2432,481894,357.2166295,388.0782373,,,,,,,552.920852,445.9067809,659.9349232,256.9470132,210.222653,303.6713734,383.4844145,366.4640422,400.5047868,,,,41.8485084,70,167270,32.62296533,52.87307278,,,,,,,,,,,,,39.52100541,29.33325198,52.10351869,,,,3.859348199,45,11660,2.815035059,5.164111535,,,,,,,,,,,,,2.631025047,1.702660687,3.883911987,,,,,,,0.105,,,0.089,0.12,0.16,,,0.138,0.184,0.098,,,0.084,0.113,115.9,172,148453,,,0.093,15970,,,,0.079451651,13057.32265,164343,,,26.37642258,136,515612,21.94337381,30.80947135,,,,,,,,,,21.75489485,11.24107163,38.00142322,27.71231303,22.69078471,32.73384135,,,,0.33,,,0.314,0.344,0.07109911,7399,104066,0.061567195,0.080631025,0.041065511,1611,39230,0.030342107,0.051788915,0.000949706,166,174791,,,1052.957831,0.929543062,1942.745,2090,,,0.05327195,486,9123,0.027506873,0.079037027,3.514487808,,,,,,3.91827431,2.91289846,3.414085765,3.602799871,3.619763529,,,,,,3.993259433,2.995613377,3.534136916,3.713078114,0.072563612,,,,,645.3190957,,,,,0.650340542,47934,73706,0.602122761,0.698558323,84352,,,78151.48936,90552.51064,,,,103587,44844.19149,162329.8085,64279,35070.82979,93487.17021,76475,63015.93617,89934.06383,84423,81272.70213,87573.29787,,,,,,0.335949824,8945,26626,,,53.28563491,,,,,0.255275512,,84352,,,3.078953156,28,9094,,,2.775233813,33,1189089,1.910343261,3.897460095,,,,,,,,,,,,,2.033954842,1.242392458,3.14127829,,,,16.56186831,148,853610,13.82097921,19.30275741,17.33812865,,,,,,,,,,,,,17.79419208,14.6339939,20.95439026,,,,12.4178489,106,853610,10.05383781,14.78185999,,,,,,,,,,,,,12.80732237,10.29859961,15.74237357,,,,10.93273927,130,1189089,9.053364523,12.81211401,,,,,,,,,,9.816432708,5.072294026,17.14733242,11.49184486,9.372963676,13.61072604,,,,18.36158192,,17700,,,252,73,0.667250289,86509,129650,,,0.771,,,,,49.86463237,,,,,0.770034587,52320,67945,0.755503137,0.784566037,0.102905003,6819,66265,0.090995133,0.114814872,0.896048274,60882,67945,0.883510268,0.908586281,174791,,,,,0.211320949,36937,174791,,,0.183573525,32087,174791,,,0.045660246,7981,174791,,,0.003930408,687,174791,,,0.015029378,2627,174791,,,0.000429084,75,174791,,,0.113186606,19784,174791,,,0.808971858,141401,174791,,,0.005685204,935,164462,0.00382127,0.007549138,0.504236488,88136,174791,,,0.235793667,40843,173215,, -18,129,18129,IN,Posey County,2024,1,6685.843474,356,69826,5501.133958,7870.552989,0,,,,2,,,,2,,,,2,,,,2,6635.13285,5422.503175,7847.762525,,,,,2,,0.144,,,0.121,0.173,3.572410403,,,2.808430639,4.412370011,4.93641048,,,3.989298429,6.001900014,0.074505239,128,1718,0.062088004,0.086922473,0,,,,,,,,,,,,,0.074344912,0.061652271,0.087037553,,,,,,,0.178,,,0.141,0.223,0.377,,,0.303,0.457,8.1,0.083932994,0.088,,,0.224,,,0.182,0.273,0.260011101,6558,25222,,,0.169841858,,,0.135689357,0.207838668,0.153846154,2,13,0.034991468,0.324991408,207,52,25116,,,13.89728097,69,4965,10.81291411,17.58789851,,,,,,,,,,,,,13.48412353,10.33820019,17.28603782,,,,,,,0.061709889,1235,20013,0.052177974,0.071241804,0.000318522,8,25116,,,3139.5,0.000239397,6,25063,,,4177.166667,0.000119698,3,25063,,,8354.333333,4177,,,,,,,,,4065,0.52,,,,,,,,,0.52,0.6,,,,,,,,,0.6,0.937308272,16805,17929,0.921070133,0.953546411,0.689637742,4093,5935,0.6119259,0.767349585,0.023584186,309,13102,,,0.114,605,,0.073489362,0.154510638,,,,,,,0.594339623,0.383275078,0.805404167,0.174603175,0,0.507662605,0.093171534,0.044860819,0.14148225,4.279489106,148096,34606,3.712375787,4.846602425,0.144985465,798,5504,0.092879807,0.197091123,10.35196687,26,25116,,,66.16621899,84,126953,52.77676758,81.91828139,,,,,,,,,,,,,66.65788867,52.93598538,82.84966933,,,,8.8,,,,,1,,,,,0.086389961,895,10360,0.06244225,0.110337673,0.083211679,0.057826898,0.10859646,0.003378378,0,0.007924288,0.008687259,0,0.017588184,0.854504987,10366,12131,0.824017,0.884992974,,,,,,,,,,,,,0.823428633,0.795844057,0.851013209,0.347,,12131,0.303809538,0.390190462,79.00977646,,,77.90110669,80.11844622,,,,,,,,,,,,,78.94191365,77.82267753,80.06114977,,,,343.7580179,356,69826,305.3351065,382.1809292,,,,,,,,,,,,,342.3324346,303.450956,381.2139131,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.107,,,0.091,0.125,0.164,,,0.141,0.188,0.092,,,0.078,0.107,65.9,14,21234,,,0.088,2220,,,,0.083932994,2174.703882,25910,,,,,,,,,,,,,,,,,,,,,,,,,,0.354,,,0.334,0.373,0.067991415,982,14443,0.056076521,0.079906308,0.04676259,273,5838,0.032464718,0.061060462,0.000199497,5,25063,,,5012.6,0.914908257,199.45,218,,,,,,,,3.383016258,,,,,,,,,3.386661766,3.629926192,,,,,,,,,3.627461855,0.039742541,,,,,40.9761,,,,,0.680537614,46887,68897,0.616114542,0.744960686,75907,,,66444.19149,85369.80851,,,,,,,,,,,,,75665,69540.74468,81789.25532,,,,,,0.32224415,1143,3547,,,58.44826356,,,,,0.190944182,,75907,,,5.162241888,7,1356,,,,,,,,,,,,,,,,,,,,,,,,,,18.38071245,21,126953,11.22741668,28.38751961,16.54155475,,,,,,,,,,,,,19.16079584,11.70391188,29.59229513,,,,17.32924783,22,126953,10.86014736,26.23668947,,,,,,,,,,,,,18.10461174,11.34606379,27.41059975,,,,12.36364863,22,177941,7.748232769,18.7187126,,,,,,,,,,,,,12.90511805,8.087568777,19.53850382,,,,11.92307692,,2600,,,19,12,0.669160769,13236,19780,,,0.725,,,,,27.51378524,,,,,0.807053738,8215,10179,0.77268755,0.841419927,0.098390525,972,9879,0.068784423,0.127996628,0.884369781,9002,10179,0.86530837,0.903431192,25063,,,,,0.215377249,5398,25063,,,0.211227706,5294,25063,,,0.010533456,264,25063,,,0.00295256,74,25063,,,0.005905119,148,25063,,,0.000239397,6,25063,,,0.013765311,345,25063,,,0.954275226,23917,25063,,,0,0,23920,0,0.004781897,0.496588597,12446,25063,,,0.704107525,17759,25222,, -18,131,18131,IN,Pulaski County,2024,1,12778.50593,269,33803,10351.22379,15205.78806,0,,,,2,,,,2,,,,2,,,,2,13268.37077,10675.12833,15861.6132,,,,,2,,0.18,,,0.153,0.212,4.122852526,,,3.271419942,5.088590953,5.536451249,,,4.436269682,6.71948284,0.084364454,75,889,0.06609413,0.102634779,0,,,,,,,,,,,,,0.085308057,0.066462139,0.104153975,,,,,,,0.22,,,0.179,0.269,0.404,,,0.323,0.489,8.1,0.035631766,0.112,,,0.279,,,0.229,0.334,0.403228384,5046,12514,,,0.161419419,,,0.127936933,0.199099975,0,0,23,0,0.106889054,210.7,26,12339,,,21.24430956,56,2636,16.04772314,27.58750304,,,,,,,,,,,,,21.95018995,16.39345175,28.7847538,,,,,,,0.091862977,893,9721,0.077565105,0.106160849,0.000324175,4,12339,,,3084.75,0.000160192,2,12485,,,6242.5,0.000480577,6,12485,,,2080.833333,3170,,,,,,,,,3064,0.38,,,,,,,,,0.38,0.31,,,,,,,,,0.31,0.880864765,7660,8696,0.845335021,0.91639451,0.537142857,1504,2800,0.447678117,0.626607597,0.02583194,170,6581,,,0.179,477,,0.118234043,0.239765957,,,,,,,,,,0.114285714,0,0.433871925,0.156157427,0.101688269,0.210626585,4.020862205,107353,26699,3.437855926,4.603868483,0.22877271,617,2697,0.138008828,0.319536593,20.26096118,25,12339,,,120.8060178,75,62083,95.02159641,151.4313894,,,,,,,,,,,,,122.0350636,95.31039714,153.9306276,,,,8.5,,,,,0,,,,,0.076246334,390,5115,0.049889058,0.102603611,0.06476378,0.038548553,0.090979006,0.010752688,0,0.022417435,0.003910068,0,0.011222882,0.744571722,4355,5849,0.707213931,0.781929513,,,,,,,,,,,,,0.803158363,0.774612246,0.83170448,0.372,,5849,0.296511838,0.447488162,72.49861299,,,70.833937,74.16328897,,,,,,,,,,,,,72.04398934,70.29899899,73.78897969,,,,579.6468543,269,33803,505.5036361,653.7900724,,,,,,,,,,,,,593.2814555,515.8468039,670.7161071,,,,116.6472255,14,12002,63.77212362,195.7142236,,,,,,,,,,,,,129.3422025,70.7125857,217.014238,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.125,,,0.108,0.144,0.18,,,0.155,0.206,0.108,,,0.093,0.125,57.1,6,10499,,,0.112,1400,,,,0.035631766,477.5369271,13402,,,43.14994606,16,37080,24.66392248,70.07280906,,,,,,,,,,,,,46.22807778,26.42334071,75.07150212,,,,0.355,,,0.338,0.372,0.103453176,728,7037,0.086772325,0.120134027,0.062610541,177,2827,0.042355222,0.08286586,0.000881057,11,12485,,,1135,0.975,127.725,131,,,,,,,,3.129676685,,,,,,,,,3.158606231,3.367470227,,,,,,,,,3.366552267,0.034385952,,,,,1845.52785,,,,,0.73988509,36830,49778,0.614665189,0.86510499,60487,,,51820.10638,69153.89362,,,,,,,,,,86016,51677.2766,120354.7234,56895,54413.12766,59376.87234,,,,,,0.463872035,841,1813,,,,,,,,0.228859094,,60487,,,7.575757576,5,660,,,,,,,,,,,,,,,,,,,,,,,,,,23.50825195,16,62083,13.15739016,38.77328657,25.77195045,,,,,,,,,,,,,25.08361613,13.71344636,42.08604567,,,,25.77195045,16,62083,14.73089647,41.85203292,,,,,,,,,,,,,27.5008594,15.71911732,44.65967274,,,,20.54044185,18,87632,12.17356762,32.46275364,,,,,,,,,,,,,20.64936169,12.02901414,33.0616284,,,,20,,1400,,,23,5,0.603534304,5806,9620,,,0.629,,,,,27.82438906,,,,,0.767466111,3680,4795,0.72070139,0.814230831,0.082260528,377,4583,0.053291283,0.111229773,0.851511992,4083,4795,0.817580805,0.885443179,12485,,,,,0.217701242,2718,12485,,,0.219303164,2738,12485,,,0.008970765,112,12485,,,0.004965959,62,12485,,,0.0082499,103,12485,,,0.000240288,3,12485,,,0.038205847,477,12485,,,0.928233881,11589,12485,,,0.0015195,18,11846,0,0.00932608,0.495394473,6185,12485,,,1,12514,12514,, -18,133,18133,IN,Putnam County,2024,1,8285.068003,582,103950,7249.384202,9320.751803,0,,,,2,,,,2,,,,2,,,,2,8853.2758,7718.23483,9988.316771,,,,,2,,0.168,,,0.141,0.198,3.905023431,,,3.115242515,4.802958935,5.404847254,,,4.377222485,6.479277219,0.070927514,182,2566,0.060994983,0.080860044,0,,,,,,,,,,,,,0.069958848,0.059816807,0.080100888,,,,,,,0.202,,,0.161,0.246,0.362,,,0.294,0.439,8.4,0.035391195,0.097,,,0.265,,,0.218,0.317,0.624870664,22949,36726,,,0.176872708,,,0.140764188,0.216779265,0.128205128,5,39,0.058540272,0.218859398,338,125,36979,,,14.4783816,146,10084,12.1298324,16.82693079,,,,,,,,,,,,,14.90851593,12.36518121,17.45185064,,,,,,,0.082617091,2182,26411,0.070702198,0.094531985,0.000324509,12,36979,,,3081.583333,0.000455752,17,37301,,,2194.176471,0.001018739,38,37301,,,981.6052632,3300,,,,,,,,,3287,0.41,,,,,,,,,0.41,0.47,,,,,,,0.45,,0.47,0.908703003,22574,24842,0.892359765,0.925046241,0.563832174,5026,8914,0.502327451,0.625336897,0.030825343,524,16999,,,0.127,904,,0.078148936,0.175851064,,,,,,,,,,,,,0.12199688,0.085290607,0.158703153,3.805265712,125452,32968,3.325435555,4.28509587,0.165561999,1199,7242,0.110664028,0.220459971,12.70991644,47,36979,,,73.59803739,138,187505,61.31847863,85.87759614,,,,,,,,,,,,,79.31832895,65.98740738,92.64925052,,,,9.1,,,,,0,,,,,0.088278388,1205,13650,0.065091503,0.111465273,0.056708673,0.039112448,0.074304898,0.027106227,0.014099217,0.040113237,0.005128205,0.001012319,0.009244091,0.795059412,12713,15990,0.772472114,0.817646711,,,,,,,,,,,,,0.767414588,0.730360209,0.804468968,0.424,,15990,0.37432761,0.47367239,76.44239401,,,75.55897387,77.32581415,,,,,,,,,,,,,75.95991709,75.03133554,76.88849865,,,,432.1706904,582,103950,395.6233723,468.7180084,,,,,,,,,,,,,450.3943379,411.6142849,489.1743909,,,,42.57251518,15,35234,23.82751357,70.21688957,,,,,,,,,,,,,47.35296903,26.5030973,78.1015212,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.116,,,0.099,0.135,0.17,,,0.146,0.196,0.106,,,0.09,0.125,169.1,54,31941,,,0.097,3580,,,,0.035391195,1343.555946,37963,,,19.63864886,22,112024,12.30743669,29.73315039,,,,,,,,,,,,,21.52389152,13.48890822,32.58743043,,,,0.343,,,0.326,0.36,0.093093093,1798,19314,0.077603731,0.108582455,0.055399061,413,7455,0.037526721,0.073271402,0.000723841,27,37301,,,1381.518519,0.937622549,382.55,408,,,0.08132649,206,2533,0.035705178,0.126947802,3.292289993,,,,,,,,,3.338314682,3.514014188,,,,,,,,,3.528859173,0.043874047,,,,,-1909.806275,,,,,0.745530647,42036,56384,0.674354938,0.816706356,68301,,,60233.42553,76368.57447,77813,45769.08511,109856.9149,131650,24755.53192,238544.4681,23432,21232.51064,25631.48936,56157,26662.87234,85651.12766,72663,67385.89362,77940.10638,,,,,,0.458239278,2436,5316,,,67.06053675,,,,,0.250025622,,68301,,,2.228412256,4,1795,,,,,,,,,,,,,,,,,,,,,,,,,,22.62243113,45,187505,16.37196558,30.47226628,23.99936002,,,,,,,,,,,,,24.28867369,17.42997159,32.95032845,,,,16.53289246,31,187505,11.2332983,23.46712115,,,,,,,,,,,,,17.49669021,11.80494341,24.97761322,,,,15.23658609,40,262526,10.88524049,20.74790572,,,,,,,,,,,,,16.63699736,11.88571483,22.65486839,,,,,,3400,,,61,-888,0.562514828,16597,29505,,,0.658,,,,,41.15916,,,,,0.739498841,10211,13808,0.708544006,0.770453677,0.049502007,666,13454,0.033508554,0.065495459,0.848566049,11717,13808,0.827635403,0.869496694,37301,,,,,0.195490738,7292,37301,,,0.175169567,6534,37301,,,0.035307364,1317,37301,,,0.003887295,145,37301,,,0.012439345,464,37301,,,0.000562988,21,37301,,,0.02109863,787,37301,,,0.912763733,34047,37301,,,0.004908637,173,35244,6.28072E-05,0.009754467,0.472078497,17609,37301,,,0.72253989,26536,36726,, -18,135,18135,IN,Randolph County,2024,1,11032.83935,475,66376,9484.733778,12580.94491,0,,,,2,,,,2,,,,2,,,,2,11616.13856,9940.873769,13291.40335,,,,,2,,0.177,,,0.147,0.206,4.123524392,,,3.272067851,5.076491486,5.462566216,,,4.406362447,6.617371394,0.08109478,160,1973,0.069049293,0.093140266,0,,,,,,,,,,0.057803468,0.023027381,0.092579556,0.081761006,0.068919613,0.0946024,,,,,,,0.211,,,0.168,0.254,0.38,,,0.306,0.461,7.6,0.078572297,0.114,,,0.277,,,0.228,0.329,0.432617746,10600,24502,,,0.157232256,,,0.125394703,0.193418561,0.08,2,25,0.014970891,0.19576483,315.7,77,24387,,,26.77252585,145,5416,22.41478483,31.13026687,,,,,,,,,,76.24633431,49.806637,111.7185457,22.91794557,18.67348265,27.16240849,,,,,,,0.089642987,1725,19243,0.076536604,0.10274937,0.000164022,4,24387,,,6096.75,0.000286451,7,24437,,,3491,0.000450137,11,24437,,,2221.545455,3652,,,,,,,,,3684,0.45,,,,,,,,,0.45,0.38,,,,,,,,,0.38,0.898873768,15324,17048,0.879294706,0.918452831,0.594001463,3248,5468,0.523722969,0.664279957,0.029835302,346,11597,,,0.227,1216,,0.162659575,0.291340426,,,,,,,,,,0.738636364,0.711468299,0.765804428,0.149617997,0.113552779,0.185683214,4.244495803,104682,24663,3.69142931,4.797562297,0.270976859,1534,5661,0.209428346,0.332525373,13.12174519,32,24387,,,121.1224556,149,123016,101.6738888,140.5710225,,,,,,,,,,,,,126.7119127,106.1578777,147.2659476,,,,9.2,,,,,0,,,,,0.097007722,1005,10360,0.074858676,0.119156768,0.078734793,0.058028373,0.099441213,0.016891892,0.005980957,0.027802826,0.008204633,0.001442007,0.01496726,0.832092717,8831,10613,0.79883137,0.865354063,,,,,,,,,,,,,0.787193461,0.72899364,0.845393281,0.334,,10613,0.287272953,0.380727047,74.10931538,,,72.97276162,75.24586915,,,,,,,,,,,,,73.63030633,72.433193,74.82741965,,,,518.7545635,475,66376,469.0229633,568.4861637,,,,,,,,,,,,,534.8468505,482.7298774,586.9638236,,,,61.83527084,15,24258,34.60873169,101.9878756,,,,,,,,,,,,,60.86712239,32.40917919,104.084633,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.122,,,0.104,0.141,0.178,,,0.153,0.204,0.105,,,0.089,0.121,106.8,22,20597,,,0.114,2820,,,,0.078572297,2056.315596,26171,,,55.97804568,41,73243,40.17081205,75.9405398,,,,,,,,,,,,,59.92925425,43.00626753,81.30080037,,,,0.341,,,0.322,0.359,0.102923132,1426,13855,0.086242281,0.119603984,0.057299013,325,5672,0.039426672,0.075171353,0.000572902,14,24437,,,1745.5,0.711865757,625.73,879,,,,,,,,2.984161075,,,,,,,,2.71859063,2.993204011,3.185020155,,,,,,,,2.762740112,3.219224387,0.09340124,,,,,-4250.4578,,,,,0.722179384,38399,53171,0.66688183,0.777476937,56920,,,51746.55319,62093.44681,,,,,,,,,,34821,22608.23404,47033.76596,60040,56262.97872,63817.02128,,,,,,0.562274456,5765,10253,,,,,,,,0.262596627,,56920,,,3.304692664,5,1513,,,,,,,,,,,,,,,,,,,,,,,,,,18.15815431,22,123016,11.09147239,28.04379662,17.88385251,,,,,,,,,,,,,19.36613722,11.82933973,29.90942824,,,,13.00643819,16,123016,7.434303224,21.12164076,,,,,,,,,,,,,13.886237,7.937184265,22.55037892,,,,20.7768223,36,173270,14.55183091,28.76387978,,,,,,,,,,,,,20.29270692,13.96856572,28.49850527,,,,,,2500,,,24,-888,0.593088669,11070,18665,,,0.655,,,,,32.7458127,,,,,0.763222451,7778,10191,0.733863363,0.792581539,0.074895269,733,9787,0.054550664,0.095239875,0.81601413,8316,10191,0.783277614,0.848750647,24437,,,,,0.223349838,5458,24437,,,0.208740844,5101,24437,,,0.008020625,196,24437,,,0.005074273,124,24437,,,0.004255842,104,24437,,,0.000736588,18,24437,,,0.044768179,1094,24437,,,0.926177518,22633,24437,,,0.00519683,120,23091,0,0.010681386,0.499324794,12202,24437,,,0.665659946,16310,24502,, -18,137,18137,IN,Ripley County,2024,1,8811.232401,476,79156,7578.984283,10043.48052,0,,,,2,,,,2,,,,2,,,,2,8676.036127,7437.690796,9914.381457,,,,,2,,0.158,,,0.132,0.187,3.752426007,,,2.948637267,4.595273566,5.146957033,,,4.097380376,6.181281203,0.057248764,139,2428,0.048007884,0.066489645,0,,,,,,,,,,,,,0.056054771,0.046728535,0.065381007,,,,,,,0.195,,,0.156,0.238,0.386,,,0.309,0.464,8.7,0.008124976,0.099,,,0.251,,,0.205,0.302,0.317951371,9219,28995,,,0.174988741,,,0.138831933,0.212384916,0.28,7,25,0.173955028,0.39080618,151.3,44,29081,,,23.9699201,153,6383,20.17172786,27.76811234,,,,,,,,,,,,,23.98648649,20.04120007,27.9317729,,,,,,,0.084065724,1980,23553,0.072150831,0.095980618,3.43867E-05,1,29081,,,29081,0.000103139,3,29087,,,9695.666667,0.000756352,22,29087,,,1322.136364,2769,,,,,,,,,2789,0.5,,,,,,,,,0.5,0.51,,,,,,,,,0.51,0.905613537,17875,19738,0.887077629,0.924149446,0.54060643,3548,6563,0.479141746,0.602071114,0.030380532,392,12903,,,0.131,879,,0.084531915,0.177468085,,,,,,,,,,,,,0.109157161,0.063134832,0.15517949,4.230018096,123893,29289,3.538612462,4.921423729,0.166226526,1133,6816,0.109696832,0.222756219,15.47402084,45,29081,,,93.12551639,133,142818,77.29850391,108.9525289,,,,,,,,,,,,,95.31630349,78.93110953,111.7014974,,,,8.9,,,,,0,,,,,0.132503335,1490,11245,0.105288988,0.159717682,0.087724014,0.065081135,0.110366894,0.034237439,0.020723877,0.047751,0.014673188,0.003558904,0.025787472,0.833587047,12047,14452,0.806744194,0.8604299,,,,,,,,,,,,,0.831714708,0.806209109,0.857220306,0.42,,14452,0.373212229,0.466787771,75.65733834,,,74.66572837,76.64894832,,,,,,,,,,,,,75.59159186,74.60064893,76.5825348,,,,449.987081,476,79156,407.4477769,492.5263851,,,,,,,,,,,,,450.1256104,406.8506306,493.4005902,,,,40.56520857,12,29582,20.96063521,70.85925579,,,,,,,,,,,,,36.16374946,17.34192354,66.50642283,,,,8.136696501,20,2458,4.970105608,12.56646782,,,,,,,,,,,,,,,,,,,,,,0.114,,,0.097,0.132,0.17,,,0.146,0.194,0.097,,,0.082,0.114,57.6,14,24311,,,0.099,2870,,,,0.008124976,234.1455655,28818,,,31.44910487,27,85853,20.72515827,45.75679644,,,,,,,,,,,,,31.70306422,20.70949411,46.45233454,,,,0.326,,,0.308,0.344,0.095093486,1597,16794,0.079604124,0.110582848,0.059071138,421,7127,0.041198798,0.076943478,0.001237666,36,29087,,,807.9722222,0.959146342,235.95,246,,,,,,,,3.273696901,,,,,,,,,3.307711955,3.396361989,,,,,,,,,3.430779575,0.05804101,,,,,-467.87592,,,,,0.757474964,42358,55920,0.679099469,0.83585046,63571,,,55667.85106,71474.14894,,,,,,,,,,92889,14087.46809,171690.5319,69831,64748.10638,74913.89362,,,,,,0.392987582,1614,4107,,,,,,,,0.232637523,,63571,,,1.13122172,2,1768,,,,,,,,,,,,,,,,,,,,,,,,,,19.31572778,28,142818,12.61767468,28.30201657,19.60537187,,,,,,,,,,,,,20.17560733,13.17937655,29.56193933,,,,16.10441261,23,142818,10.20881614,24.16452611,,,,,,,,,,,,,16.86365369,10.69010986,25.30376052,,,,16.46994236,33,200365,11.33715049,23.12992253,,,,,,,,,,,,,16.19010315,11.0003896,22.98055908,,,,6.25,,3200,,,11,9,0.663921842,14271,21495,,,0.687,,,,,21.69884603,,,,,0.77172935,8577,11114,0.744685667,0.798773033,0.100234192,1070,10675,0.074590596,0.125877789,0.829404355,9218,11114,0.806859891,0.851948819,29087,,,,,0.234297109,6815,29087,,,0.18987864,5523,29087,,,0.00543198,158,29087,,,0.003816138,111,29087,,,0.008354248,243,29087,,,0.000171898,5,29087,,,0.019149448,557,29087,,,0.95296868,27719,29087,,,0.001284734,35,27243,0,0.005334235,0.498710764,14506,29087,,,0.813657527,23592,28995,, -18,139,18139,IN,Rush County,2024,1,9342.845736,301,45853,7660.775751,11024.91572,0,,,,2,,,,2,,,,2,,,,2,9609.510005,7846.222133,11372.79788,,,,,2,,0.178,,,0.148,0.209,4.090749479,,,3.239483506,5.088426495,5.400753458,,,4.326461036,6.602283355,0.06772009,90,1329,0.054211019,0.081229162,0,,,,,,,,,,,,,0.066718386,0.053095826,0.080340947,,,,,,,0.219,,,0.175,0.265,0.391,,,0.307,0.482,8,0.044335625,0.114,,,0.287,,,0.233,0.344,0.483106495,8093,16752,,,0.162408943,,,0.129454125,0.201180722,0.375,3,8,0.179126284,0.556186502,251.9,42,16672,,,23.79021357,88,3699,19.08044695,29.3102085,,,,,,,,,,,,,24.59490741,19.64553849,30.41198389,,,,,,,0.094434951,1271,13459,0.080137078,0.108732823,0.000359885,6,16672,,,2778.666667,0.000419841,7,16673,,,2381.857143,0.001199544,20,16673,,,833.65,3635,,,,,,,,,3660,0.5,,,,,,,,,0.5,0.42,,,,,,,,,0.41,0.894176258,10410,11642,0.871169289,0.917183228,0.501320655,1898,3786,0.423275676,0.579365634,0.02467895,221,8955,,,0.141,508,,0.087382979,0.194617021,,,,,,,,,,,,,0.118659152,0.074585608,0.162732695,3.96510528,113176,28543,3.290664013,4.639546546,0.20483871,762,3720,0.131688103,0.277989317,16.19481766,27,16672,,,102.1511838,85,83210,81.59473742,126.3115206,,,,,,,,,,,,,105.7375192,84.34038637,130.9102437,,,,8.9,,,,,0,,,,,0.098496241,655,6650,0.068875278,0.128117204,0.082737643,0.053715203,0.111760083,0.012030075,0.002693091,0.021367059,0.015789474,0.004617729,0.026961219,0.848290889,6229,7343,0.813806232,0.882775546,,,,,,,,,,,,,0.836809367,0.803299212,0.870319522,0.368,,7343,0.311671403,0.424328597,75.44981886,,,74.11563684,76.78400088,,,,,,,,,,,,,75.23814415,73.86311414,76.61317416,,,,474.7644033,301,45853,417.9520405,531.5767661,,,,,,,,,,,,,482.1982114,423.6504762,540.7459466,,,,72.91729963,12,16457,37.67743276,127.3718481,,,,,,,,,,,,,71.91422594,35.89932249,128.674415,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.124,,,0.105,0.143,0.181,,,0.154,0.208,0.107,,,0.091,0.125,63.9,9,14086,,,0.114,1910,,,,0.044335625,771.0851825,17392,,,22.04320468,11,49902,11.00388836,39.44138214,,,,,,,,,,,,,23.11312826,11.53799035,41.35577096,,,,0.363,,,0.345,0.379,0.104508197,1020,9760,0.086635856,0.122380537,0.069469367,271,3901,0.048022558,0.090916175,0.000959635,16,16673,,,1042.0625,0.925,163.725,177,,,,,,,,3.205420826,,,,,,,,,3.245392222,3.424346892,,,,,,,,,3.449227964,0.045497176,,,,,1085.753,,,,,0.735658567,42627,57944,0.671198844,0.80011829,61653,,,53835.6383,69470.3617,,,,,,,,,,,,,61602,57154.17021,66049.82979,,,,,,0.573365617,1184,2065,,,,,,,,0.256516309,,61653,,,3.236245955,3,927,,,,,,,,,,,,,,,,,,,,,,,,,,23.18948407,21,83210,13.96158425,36.2132519,25.23735128,,,,,,,,,,,,,24.16984144,14.55182343,37.74420138,,,,,,,,,,,,,,,,,,,,,,,,,,,19.7372373,23,116531,12.51171537,29.61554685,,,,,,,,,,,,,20.63650149,13.08177172,30.96488466,,,,17.77777778,,1800,,,21,11,0.616556549,7932,12865,,,0.698,,,,,45.43528307,,,,,0.711861884,4783,6719,0.678768983,0.744954786,0.122812357,807,6571,0.087371486,0.158253229,0.806965322,5422,6719,0.77330952,0.840621124,16673,,,,,0.221675763,3696,16673,,,0.195885564,3266,16673,,,0.009836262,164,16673,,,0.004198405,70,16673,,,0.003958496,66,16673,,,0.000419841,7,16673,,,0.019012775,317,16673,,,0.953277755,15894,16673,,,0.003417722,54,15800,0,0.010120793,0.504348348,8409,16673,,,0.613837154,10283,16752,, -18,141,18141,IN,St. Joseph County,2024,1,9419.19294,4278,761183,8999.101,9839.28488,0,,,,2,2390.837689,1439.440469,3733.58921,1,17409.91257,15883.94429,18935.88086,,6408.280954,5306.843142,7509.718767,,8539.466532,8063.057768,9015.875296,,,,,2,,0.165,,,0.141,0.191,3.765737897,,,3.062711303,4.52862,5.503293448,,,4.693493445,6.361094266,0.090844093,2160,23777,0.087191132,0.094497054,0,,,,0.110882957,0.08299585,0.138770064,0.143082115,0.132788155,0.153376075,0.083811345,0.074115772,0.093506917,0.074864865,0.070624855,0.079104874,,,,0.109839817,0.089109099,0.130570535,0.176,,,0.141,0.21,0.361,,,0.314,0.412,7.7,0.081587167,0.11,,,0.27,,,0.228,0.311,0.827413232,225811,272912,,,0.168300975,,,0.140974589,0.199847747,0.220689655,32,145,0.178882011,0.264774509,732.1,1993,272212,,,21.171459,1491,70425,20.09680654,22.24611146,,,,,,,46.80124536,42.55191474,51.05057597,33.96226415,30.26415094,37.66037736,12.90596761,11.85289399,13.95904124,,,,34.20011306,28.10627473,40.29395139,0.08782394,19171,218289,0.078292025,0.097355855,0.000900034,245,272212,,,1111.069388,0.000639156,174,272234,,,1564.563218,0.002666823,726,272234,,,374.9779614,3187,,,,,,2019,5320,1049,2999,0.44,,,,,,0.48,0.37,0.24,0.44,0.53,,,,,,0.5,0.4,0.37,0.54,0.908681969,161401,177621,0.901587767,0.91577617,0.662243667,45567,68807,0.634408359,0.690078975,0.033987619,4502,132460,,,0.177,10857,,0.141255319,0.212744681,0.275280899,0.048661666,0.501900131,0.096560847,0.018584575,0.174537118,0.415108522,0.362322947,0.467894097,0.201148226,0.16490066,0.237395791,0.105592003,0.087461685,0.12372232,4.460193522,119386,26767,4.246649662,4.673737382,0.278734857,17555,62981,0.25338778,0.304081933,10.54325305,287,272212,,,82.55161134,1120,1356727,77.71687701,87.38634568,,,,,,,134.6398802,117.6409627,151.6387977,48.11316216,36.71541141,61.93117685,81.46597718,75.79938326,87.1325711,,,,8.5,,,,,0,,,,,0.131538609,13730,104380,0.121775468,0.14130175,0.110216748,0.100351484,0.120082012,0.016861468,0.013320694,0.020402241,0.00910136,0.006559374,0.011643346,0.764164747,98186,128488,0.75527598,0.773053514,,,,0.673588769,0.599553359,0.747624179,0.752951032,0.723866466,0.782035598,0.67012894,0.628312327,0.711945553,0.788853731,0.775388833,0.802318629,0.246,,128488,0.231851848,0.260148152,75.48351621,,,75.14384719,75.82318523,,,,92.89395953,85.03557189,100.7523472,68.46255459,67.44520381,69.47990537,82.40212069,79.27683699,85.5274044,76.18464071,75.80341907,76.56586234,,,,459.4308967,4278,761183,445.1518047,473.7099888,,,,147.048254,96.05680162,215.4597626,812.4454152,755.7599568,869.1308736,320.1267364,267.0882429,373.1652298,430.4508605,414.6967265,446.2049946,,,,64.82192833,189,291568,55.58032943,74.06352723,,,,,,,154.6391753,121.633521,193.8415453,37.33868521,21.34228479,60.63568551,50.02184862,40.06545016,61.70176547,,,,7.979054981,192,24063,6.850411143,9.107698818,,,,,,,15.87301587,12.41965734,19.98943652,6.8875041,4.263473593,10.52828165,5.822801562,4.670057121,7.17385438,,,,,,,0.113,,,0.098,0.13,0.17,,,0.149,0.194,0.111,,,0.096,0.127,259.7,590,227142,,,0.11,29810,,,,0.081587167,21778.14406,266931,,,26.97658678,220,815522,23.411815,30.54135855,,,,,,,40.73282047,29.59652971,54.68191026,15.62154211,8.071878762,27.28769029,27.81913441,23.53520628,32.10306255,,,,0.331,,,0.318,0.345,0.100399385,15611,155489,0.088484492,0.112314279,0.05831917,3843,65896,0.042829808,0.073808531,0.001193826,325,272234,,,837.6430769,0.831224089,2325.765,2798,,,0.048799334,821,16824,0.034048544,0.063550124,2.914806753,,,,,,4.066689424,2.220605552,2.615168998,3.231322641,2.992317518,,,,,,4.164305369,2.193282895,2.580342576,3.386439784,0.155742823,,,,,-1616.7132,,,,,0.785153209,44380,56524,0.753801328,0.816505091,61028,,,58150.55319,63905.44681,67721,53618.53192,81823.46809,85357,56729.08511,113984.9149,37826,34620.89362,41031.10638,53869,48284.48936,59453.51064,67150,65305.57447,68994.42553,,,,,,0.467190676,17237,36895,,,52.10485026,,,,,0.313102183,,61028,,,4.000927751,69,17246,,,8.65751047,164,1894309,7.332476011,9.982544929,,,,,,,42.34229511,34.24321273,50.4413775,8.216975097,4.492296748,13.78668799,2.920277164,2.08628882,3.976588646,,,,13.97838462,191,1356727,11.94716872,16.00960053,14.07799801,,,,,,,11.69490527,7.143551961,18.06183267,,,,15.42738672,12.92251194,17.93226151,,,,15.10989315,205,1356727,13.04146455,17.17832175,,,,,,,46.92842298,37.43194806,58.10058089,9.622632432,4.972154595,16.80880234,10.67060658,8.619782023,12.72143114,,,,11.08583658,210,1894309,9.586445589,12.58522756,,,,,,,14.11409837,9.830986657,19.62929416,14.08624302,9.025321697,20.95921305,10.65901165,8.930005329,12.38801797,,,,17.19298246,,28500,,,463,27,0.582760626,115238,197745,,,0.681,,,,,103.9104775,,,,,0.681359686,73223,107466,0.669432926,0.693286446,0.119416192,12551,105103,0.109529557,0.129302827,0.855200715,91905,107466,0.845643218,0.864758211,272234,,,,,0.229614964,62509,272234,,,0.169324919,46096,272234,,,0.131838786,35891,272234,,,0.005741384,1563,272234,,,0.028240411,7688,272234,,,0.000859555,234,272234,,,0.101908652,27743,272234,,,0.70445646,191777,272234,,,0.011305825,2889,255532,0.009207584,0.013404065,0.510560768,138992,272234,,,0.100193469,27344,272912,, -18,143,18143,IN,Scott County,2024,1,15484.04019,652,67267,13690.38714,17277.69325,0,,,,2,,,,2,,,,2,,,,2,15680.33444,13826.48418,17534.1847,,,,,2,,0.2,,,0.168,0.237,4.306550474,,,3.52607962,5.393010646,5.613204269,,,4.646207581,6.934552576,0.087602459,171,1952,0.075060471,0.100144447,0,,,,,,,,,,,,,0.088063661,0.075270407,0.100856915,,,,,,,0.245,,,0.199,0.295,0.381,,,0.319,0.471,6.6,0.098410761,0.152,,,0.307,,,0.256,0.365,0.587229331,14319,24384,,,0.169682302,,,0.140260095,0.213365162,0.166666667,6,36,0.087328388,0.26203231,307.9,75,24355,,,37.77823157,185,4897,32.33431035,43.22215279,,,,,,,,,,,,,38.77995643,33.0828624,44.47705045,,,,,,,0.090583317,1820,20092,0.076285444,0.104881189,0.000369534,9,24355,,,2706.111111,0.000284692,7,24588,,,3512.571429,0.000772735,19,24588,,,1294.105263,3648,,,,,,,,,3673,0.37,,,,,,,,,0.37,0.41,,,,,,,,,0.41,0.819139545,13918,16991,0.786050904,0.852228185,0.447550093,2658,5939,0.366415259,0.528684926,0.03368878,357,10597,,,0.201,1097,,0.134276596,0.267723404,,,,,,,,,,0.048387097,0,0.283853087,0.2,0.13204259,0.26795741,4.392305972,98190,22355,3.724197033,5.060414911,0.234054354,1266,5409,0.144839279,0.323269429,9.443646069,23,24355,,,141.1108513,169,119764,119.8356768,162.3860259,,,,,,,,,,,,,144.2151268,122.1429603,166.2872933,,,,8.7,,,,,0,,,,,0.117009751,1080,9230,0.078404524,0.155614978,0.076419214,0.050479809,0.102358619,0.027627302,0.00427004,0.050984564,0.015167931,0,0.032944187,0.817355919,8637,10567,0.781176648,0.853535191,,,,,,,,,,,,,0.779848171,0.751167533,0.808528809,0.321,,10567,0.258870941,0.383129059,69.5075658,,,68.38039903,70.63473257,,,,,,,,,,,,,69.29826022,68.1496865,70.44683395,,,,738.7482685,652,67267,679.4686735,798.0278635,,,,,,,,,,,,,753.3211737,692.161087,814.4812603,,,,59.50357021,14,23528,32.53115554,99.83687998,,,,,,,,,,,,,64.27030253,35.13717246,107.8346468,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.135,,,0.115,0.156,0.19,,,0.165,0.218,0.114,,,0.099,0.133,730.2,150,20543,,,0.152,3700,,,,0.098410761,2379.6706,24181,,,65.26327483,47,72016,47.95299957,86.78632018,,,,,,,,,,,,,67.36472139,49.31944264,89.85509806,,,,0.39,,,0.371,0.407,0.102743447,1513,14726,0.084871107,0.120615787,0.058238636,328,5632,0.040366296,0.076110977,0.000854075,21,24588,,,1170.857143,0.850612903,263.69,310,,,,,,,,3.01438468,,,,,,,,,3.025178513,3.193524602,,,,,,,,,3.175124471,0.01985927,,,,,-2106.03765,,,,,0.711518345,36730,51622,0.623573237,0.799463453,57837,,,50045.85106,65628.14894,,,,,,,,,,,,,49612,46016.08511,53207.91489,,,,,,0.560943983,2163,3856,,,,,,,,0.277192801,,57837,,,5.010737294,7,1397,,,,,,,,,,,,,,,,,,,,,,,,,,16.38177815,21,119764,10.00641568,25.30032771,17.53448449,,,,,,,,,,,,,17.16754894,10.48638489,26.51388697,,,,15.86453358,19,119764,9.551485559,24.77443436,,,,,,,,,,,,,16.70785005,10.05921716,26.09137749,,,,26.9077602,45,167238,19.62670493,36.00470019,,,,,,,,,,,,,25.11710852,17.94403057,34.20237292,,,,16,,2500,,,29,11,0.552854812,10167,18390,,,0.648,,,,,53.52375796,,,,,0.699680182,6782,9693,0.6417057,0.757654663,0.093500819,856,9155,0.060683408,0.12631823,0.810069122,7852,9693,0.780607684,0.83953056,24588,,,,,0.225719863,5550,24588,,,0.171384415,4214,24588,,,0.006385229,157,24588,,,0.003823003,94,24588,,,0.009150805,225,24588,,,0.000732064,18,24588,,,0.026598341,654,24588,,,0.944769806,23230,24588,,,0.000997441,23,23059,0,0.006206004,0.507686676,12483,24588,,,0.689222441,16806,24384,, -18,145,18145,IN,Shelby County,2024,1,9429.474414,743,124846,8372.523941,10486.42489,0,,,,2,,,,2,,,,2,,,,2,10029.69543,8868.675208,11190.71566,,,,,2,,0.161,,,0.134,0.193,3.738210058,,,2.946866007,4.643485736,5.093242943,,,4.078184463,6.169069135,0.071770335,240,3344,0.063022045,0.080518624,0,,,,,,,,,,0.066115703,0.034808286,0.097423119,0.070525615,0.06137282,0.079678411,,,,,,,0.193,,,0.152,0.237,0.4,,,0.329,0.477,8.2,0.04856451,0.1,,,0.27,,,0.218,0.323,0.536477638,24171,45055,,,0.163862634,,,0.130725213,0.200750105,0.136363636,6,44,0.068872758,0.2210924,295.3,133,45039,,,20.09405729,188,9356,17.22165818,22.9664564,,,,,,,,,,26.66666667,15.80435671,42.14483003,19.74491047,16.69492127,22.79489968,,,,,,,0.083601725,3063,36638,0.071686831,0.095516619,0.000355248,16,45039,,,2814.9375,0.000377853,17,44991,,,2646.529412,0.001111333,50,44991,,,899.82,4002,,,,,,,,8288,3917,0.48,,,,,,,,,0.48,0.37,,,,,,,0.64,,0.37,0.891277387,28028,31447,0.875962094,0.906592681,0.574199893,6423,11186,0.516319196,0.63208059,0.024789916,590,23800,,,0.187,1824,,0.145297872,0.228702128,,,,,,,0.766233766,0.406155902,1,0.431395349,0.272812927,0.589977771,0.188495783,0.136356836,0.240634729,4.164026255,121169,29099,3.639171234,4.688881276,0.145742574,1472,10100,0.100353026,0.191132123,11.54554941,52,45039,,,93.45919768,209,223627,80.78837023,106.1300251,,,,,,,,,,,,,100.2613609,86.56970248,113.9530194,,,,9.3,,,,,0,,,,,0.11452514,2050,17900,0.091391967,0.137658312,0.093095642,0.071104992,0.115086292,0.026256983,0.015358741,0.037155225,0.00273743,0,0.006134363,0.812079291,17493,21541,0.793756426,0.830402156,,,,,,,,,,,,,0.802755376,0.785170453,0.8203403,0.369,,21541,0.333434492,0.404565508,75.57942019,,,74.73627319,76.42256719,,,,,,,,,,88.36711697,79.67209356,97.06214038,75.07453501,74.17725704,75.97181298,,,,443.9915686,743,124846,410.3824603,477.6006769,,,,,,,,,,,,,462.0656373,426.3112352,497.8200394,,,,72.23313244,32,44301,49.40740911,101.9716306,,,,,,,,,,,,,80.76071382,54.87298679,114.6333868,,,,8.293838863,28,3376,5.511195692,11.98690638,,,,,,,,,,,,,8.855362414,5.83573963,12.88408739,,,,,,,0.113,,,0.095,0.132,0.169,,,0.145,0.195,0.101,,,0.085,0.117,84.2,32,38011,,,0.1,4480,,,,0.04856451,2158.012554,44436,,,33.42270813,45,134639,24.37875266,44.7222131,,,,,,,,,,,,,36.48362696,26.61140785,48.81796332,,,,0.347,,,0.328,0.364,0.094447366,2514,26618,0.080149494,0.108745239,0.056761111,599,10553,0.04008026,0.073441962,0.001178013,53,44991,,,848.8867925,0.947650376,504.15,532,,,0.096163186,198,2059,0.032721908,0.159604464,3.140231872,,,,,,,,2.85653328,3.178919732,3.492620573,,,,,,,,3.353140636,3.531579453,0.086549812,,,,,886.18965,,,,,0.775476344,44403,57259,0.706802077,0.844150611,66045,,,58488.57447,73601.42553,,,,80489,46327.80851,114650.1915,,,,70680,30665.02128,110694.9787,66477,62424.74468,70529.25532,,,,,,0.425313723,3152,7411,,,62.6621492,,,,,0.271708684,,66045,,,4.342676668,11,2533,,,,,,,,,,,,,,,,,,,,,,,,,,19.55157619,43,223627,13.96793268,26.62369753,19.22844737,,,,,,,,,,,,,21.28153773,15.20384256,28.97941414,,,,13.41519584,30,223627,9.051176299,19.15102622,,,,,,,,,,,,,14.11446343,9.452677678,20.2707239,,,,16.00363603,50,312429,11.87820713,21.09879898,,,,,,,,,,,,,17.37275327,12.89439233,22.90380938,,,,,,4800,,,77,-888,0.593468903,19991,33685,,,0.722,,,,,73.75401824,,,,,0.726239326,13097,18034,0.701274276,0.751204376,0.107810529,1880,17438,0.085884683,0.129736375,0.851779971,15361,18034,0.827503962,0.876055981,44991,,,,,0.221599876,9970,44991,,,0.187192994,8422,44991,,,0.014980774,674,44991,,,0.003689627,166,44991,,,0.009290747,418,44991,,,0.001489187,67,44991,,,0.052855015,2378,44991,,,0.906936943,40804,44991,,,0.010165725,430,42299,0.003883854,0.016447596,0.49723278,22371,44991,,,0.525912773,23695,45055,, -18,147,18147,IN,Spencer County,2024,1,8695.125201,341,55322,7122.925941,10267.32446,0,,,,2,,,,2,,,,2,,,,2,8858.132068,7229.539066,10486.72507,,,,,2,,0.156,,,0.13,0.184,3.722744232,,,2.945949368,4.624820055,5.260187016,,,4.249331982,6.369377581,0.06362379,92,1446,0.05104303,0.07620455,0,,,,,,,,,,,,,0.063009637,0.050043185,0.075976089,,,,,,,0.186,,,0.146,0.228,0.392,,,0.313,0.472,9,0.000134387,0.087,,,0.263,,,0.213,0.314,0.520393741,10309,19810,,,0.169161358,,,0.133831907,0.206092791,0.103448276,3,29,0.031854594,0.210504629,242.4,48,19798,,,19.99529523,85,4251,15.97153164,24.7244922,,,,,,,,,,,,,19.68401968,15.50876868,24.63748588,,,,,,,0.083057325,1304,15700,0.071142431,0.094972219,0.000353571,7,19798,,,2828.285714,0.000300496,6,19967,,,3327.833333,0.000400661,8,19967,,,2495.875,2216,,,,,,,,,2242,0.48,,,,,,,,,0.48,0.48,,,,,,,,,0.48,0.925332015,13099,14156,0.909750965,0.940913065,0.651642984,2935,4504,0.580650738,0.722635231,0.026318281,278,10563,,,0.102,434,,0.06506383,0.13893617,,,,,,,,,,0.122047244,0,0.26934207,0.067170008,0.033963969,0.100376047,4.198910082,123280,29360,3.707928371,4.689891792,0.160240129,694,4331,0.112656184,0.207824074,14.64794424,29,19798,,,62.363271,63,101021,47.92164975,79.7897143,,,,,,,,,,,,,63.83891662,48.83171283,82.00375908,,,,7.9,,,,,0,,,,,0.069711539,580,8320,0.049300128,0.090122949,0.056121212,0.036503839,0.075738586,0.011899039,0.003925098,0.019872979,0.003605769,0,0.007272489,0.876502279,8460,9652,0.855034264,0.897970295,,,,,,,,,,,,,0.841228451,0.799910407,0.882546496,0.404,,9652,0.352765957,0.455234043,76.5290873,,,75.24987941,77.80829519,,,,,,,,,,,,,76.33400285,75.0300643,77.63794139,,,,421.5588241,341,55322,373.331645,469.7860031,,,,,,,,,,,,,430.0275748,380.1344342,479.9207154,,,,67.93478261,13,19136,36.17241059,116.1705472,,,,,,,,,,,,,63.34216285,31.62017947,113.3366262,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.112,,,0.095,0.129,0.17,,,0.146,0.195,0.097,,,0.082,0.113,29.7,5,16852,,,0.087,1740,,,,0.000134387,2.815682462,20952,,,,,,,,,,,,,,,,,,,,,,,,,,0.347,,,0.329,0.364,0.090527788,1036,11444,0.076229915,0.10482566,0.064653244,289,4470,0.044397925,0.084908563,0.000300496,6,19967,,,3327.833333,0.975,226.2,232,,,,,,,,3.697047042,,,,,,,,,3.768074952,4.07434853,,,,,,,,,4.158800558,0.13117998,,,,,-452.6717,,,,,0.685764505,40576,59169,0.603425127,0.768103883,70440,,,61391.82979,79488.17021,,,,,,,54464,36787.06383,72140.93617,45509,29663.38298,61354.61702,68063,61577.7234,74548.2766,,,,,,0.360588972,1151,3192,,,,,,,,0.200156161,,70440,,,3.842459174,4,1041,,,,,,,,,,,,,,,,,,,,,,,,,,16.14268177,16,101021,9.034936443,26.62489867,15.83829105,,,,,,,,,,,,,16.88311353,9.449350481,27.84612827,,,,13.85850467,14,101021,7.576573461,23.252216,,,,,,,,,,,,,14.65155464,8.010141258,24.58281909,,,,12.64186987,18,142384,7.492373287,19.97960464,,,,,,,,,,,,,13.34549256,7.909384684,21.09163183,,,,15.23809524,,2100,,,25,7,0.68115117,10769,15810,,,0.692,,,,,11.3429023,,,,,0.800585391,6291,7858,0.768378366,0.832792415,0.063525675,480,7556,0.045475527,0.081575823,0.777933316,6113,7858,0.746118781,0.809747851,19967,,,,,0.215405419,4301,19967,,,0.208844594,4170,19967,,,0.007612561,152,19967,,,0.003756198,75,19967,,,0.003756198,75,19967,,,5.00826E-05,1,19967,,,0.034657184,692,19967,,,0.939750589,18764,19967,,,0.002910361,55,18898,0,0.008055279,0.491561076,9815,19967,,,1,19810,19810,, -18,149,18149,IN,Starke County,2024,1,12335.39109,556,64213,10726.21705,13944.56512,0,,,,2,,,,2,,,,2,,,,2,12908.24675,11199.05039,14617.4431,,,,,2,,0.188,,,0.156,0.219,4.13931537,,,3.286278695,5.048668761,5.781647522,,,4.701285438,6.92179753,0.083379966,149,1787,0.070561994,0.096197939,0,,,,,,,,,,,,,0.084465446,0.071218844,0.097712048,,,,,,,0.228,,,0.182,0.272,0.418,,,0.339,0.503,8.1,0.012797194,0.124,,,0.288,,,0.236,0.339,0.672200591,15710,23371,,,0.171388309,,,0.136088619,0.210703032,0.142857143,4,28,0.058576657,0.253079972,184,43,23372,,,27.75004991,139,5009,23.13674202,32.3633578,,,,,,,,,,,,,27.56508423,22.75192618,32.37824227,,,,,,,0.090928416,1711,18817,0.077822033,0.104034799,0.000128359,3,23372,,,7790.666667,0.00021498,5,23258,,,4651.6,0.00042996,10,23258,,,2325.8,3718,,,,,,,,,3746,0.32,,,,,,,,,0.32,0.33,,,,,,,,0.27,0.33,0.851000741,13776,16188,0.829101329,0.872900154,0.531640912,2890,5436,0.462970562,0.600311263,0.037733877,361,9567,,,0.183,927,,0.112702128,0.253297872,,,,,,,,,,0.097791798,0,0.271018688,0.133102852,0.087122575,0.179083129,3.967189195,106039,26729,3.296042267,4.638336124,0.140604468,749,5327,0.086772238,0.194436698,8.985110389,21,23372,,,130.15862,150,115244,109.3289026,150.9883373,,,,,,,,,,,,,131.3938856,109.7822789,153.0054922,,,,8.6,,,,,0,,,,,0.094228504,800,8490,0.068780733,0.119676275,0.084043849,0.059245803,0.108841895,0.014723204,0.003925887,0.02552052,0.002355713,0,0.006368052,0.827763496,7728,9336,0.793065072,0.862461921,,,,,,,,,,,,,0.810602728,0.761351019,0.859854436,0.442,,9336,0.384622643,0.499377358,72.42483405,,,71.29749108,73.55217701,,,,,,,,,,,,,71.88178808,70.71512641,73.04844976,,,,618.6283975,556,64213,563.6409205,673.6158745,,,,,,,,,,,,,642.1232074,584.3486885,699.8977262,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.128,,,0.109,0.148,0.186,,,0.16,0.212,0.11,,,0.094,0.128,76.4,15,19638,,,0.124,2890,,,,0.012797194,298.9808329,23363,,,51.86124237,36,69416,36.32297657,71.79781965,,,,,,,,,,,,,55.43749423,38.82773941,76.74885967,,,,0.358,,,0.341,0.374,0.103978701,1406,13522,0.08729785,0.120659552,0.058781233,327,5563,0.040908893,0.076653574,0.000687935,16,23258,,,1453.625,0.900288462,234.075,260,,,,,,,,2.88184198,,,,,,,,,2.907016735,3.0667801,,,,,,,,,3.098918267,0.024402901,,,,,-930.6592667,,,,,0.6572881,37238,56654,0.563503041,0.751073158,58523,,,51676.70213,65369.29787,11364,10919.57447,11808.42553,145156,66717.87234,223594.1277,,,,52188,694.212766,103681.7872,60087,55341.29787,64832.70213,,,,,,0.537702832,1690,3143,,,,,,,,0.2210413,,58523,,,2.057613169,3,1458,,,,,,,,,,,,,,,,,,,,,,,,,,20.0947126,22,115244,12.43894382,30.71690278,19.08993093,,,,,,,,,,,,,20.5112162,12.52878372,31.67790986,,,,17.35448266,20,115244,10.60056887,26.80259094,,,,,,,,,,,,,16.65556296,9.871142183,26.32297012,,,,30.39494824,49,161211,22.48635003,40.18373349,,,,,,,,,,,,,31.01880267,22.79144948,41.2484318,,,,,,2500,,,57,-888,0.589347079,10290,17460,,,0.644,,,,,14.60001834,,,,,0.83913496,7256,8647,0.821560293,0.856709627,0.090043394,747,8296,0.062498662,0.117588127,0.808257199,6989,8647,0.778308412,0.838205986,23258,,,,,0.223106028,5189,23258,,,0.203757847,4739,23258,,,0.006234414,145,23258,,,0.005245507,122,23258,,,0.004084616,95,23258,,,0.000171984,4,23258,,,0.04712357,1096,23258,,,0.927379826,21569,23258,,,0.004186004,92,21978,0,0.011188273,0.494668501,11505,23258,,,1,23371,23371,, -18,151,18151,IN,Steuben County,2024,1,7888.95168,509,95429,6706.064456,9071.838904,0,,,,2,,,,2,,,,2,,,,2,7940.445219,6718.99515,9161.895287,,,,,2,,0.154,,,0.128,0.181,3.659212019,,,2.877276428,4.482564514,5.014809549,,,4.053065001,6.037509266,0.073517787,186,2530,0.06334803,0.083687543,0,,,,,,,,,,0.111111111,0.058096977,0.164125245,0.070362473,0.060010765,0.080714182,,,,,,,0.187,,,0.148,0.225,0.4,,,0.325,0.478,7.7,0.114592147,0.093,,,0.246,,,0.2,0.293,0.538667054,18549,34435,,,0.177936512,,,0.142777844,0.218513289,0.138888889,5,36,0.064388401,0.23411969,233.9,81,34632,,,23.09081527,179,7752,19.70807369,26.47355686,,,,,,,,,,27.87456446,15.93272205,45.26654634,23.04756312,19.44234739,26.65277886,,,,,,,0.085625504,2232,26067,0.07371061,0.097540397,0.00028875,10,34632,,,3463.2,0.000460763,16,34725,,,2170.3125,0.000921526,32,34725,,,1085.15625,1566,,,,,,,,,1581,0.4,,,,,,,,,0.4,0.5,,,,,,,,0.27,0.5,0.927451972,22014,23736,0.913910181,0.940993762,0.578932624,4133,7139,0.510001542,0.647863705,0.021513139,447,20778,,,0.126,831,,0.074765957,0.177234043,,,,,,,,,,0.0997921,0,0.30086802,0.121745129,0.069395135,0.174095122,3.684878538,124840,33879,3.278098596,4.091658481,0.106637491,731,6855,0.069782105,0.143492877,15.01501502,52,34632,,,67.00283607,116,173127,54.80956405,79.19610809,,,,,,,,,,,,,69.87428812,56.99077672,82.75779951,,,,8.5,,,,,1,,,,,0.088235294,1275,14450,0.066731279,0.10973931,0.07826087,0.056690787,0.099830952,0.002975779,0,0.008069919,0.007266436,0.002635863,0.011897009,0.835880234,13456,16098,0.821871505,0.849888962,,,,,,,,,,,,,0.816868983,0.790181958,0.843556008,0.271,,16098,0.234978378,0.307021622,78.12134494,,,77.1068763,79.13581358,,,,,,,,,,,,,77.92551394,76.89644497,78.9545829,,,,364.2978774,509,95429,329.4608534,399.1349013,,,,,,,,,,,,,369.1258399,332.9957262,405.2559537,,,,64.41520199,21,32601,39.87402529,98.46547877,,,,,,,,,,,,,62.38735616,36.97470117,98.59891955,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.111,,,0.094,0.128,0.165,,,0.142,0.191,0.099,,,0.085,0.115,60.6,18,29725,,,0.093,3190,,,,0.114592147,3917.332532,34185,,,9.610117532,10,104057,4.608424898,17.6733483,,,,,,,,,,,,,10.30672823,4.942476806,18.95444018,,,,0.34,,,0.322,0.356,0.096504956,1850,19170,0.081015594,0.111994317,0.057509309,417,7251,0.040828458,0.07419016,0.000345572,12,34725,,,2893.75,0.853487085,231.295,271,,,,,,,,2.906559869,,,,,,,,2.755333113,2.928968595,2.96976365,,,,,,,,2.40953036,3.013036331,0.05018114,,,,,3311.793,,,,,0.739801507,44576,60254,0.666109701,0.813493313,73250,,,66236.89362,80263.10638,,,,,,,,,,,,,69116,64614.55319,73617.44681,,,,,,0.360931799,1286,3563,,,,,,,,0.241201365,,73250,,,4.920721706,9,1829,,,,,,,,,,,,,,,,,,,,,,,,,,19.63683754,35,173127,13.34227839,27.87292343,20.21637295,,,,,,,,,,,,,20.33889556,13.72256742,29.03503808,,,,14.44026639,25,173127,9.344979032,21.3166818,,,,,,,,,,,,,14.84055677,9.508624747,22.08157211,,,,16.55526354,40,241615,11.82732299,22.54357013,,,,,,,,,,,,,17.25434677,12.26952727,23.58726004,,,,11.5625,,3200,,,26,11,0.59408197,16162,27205,,,0.58,,,,,37.00476193,,,,,0.798970567,11021,13794,0.778844851,0.819096283,0.087305719,1174,13447,0.064121926,0.110489512,0.835725678,11528,13794,0.808902615,0.862548741,34725,,,,,0.193549316,6721,34725,,,0.22237581,7722,34725,,,0.008696904,302,34725,,,0.003916487,136,34725,,,0.008034557,279,34725,,,0.000460763,16,34725,,,0.043196544,1500,34725,,,0.926364291,32168,34725,,,0.00280599,92,32787,0,0.006761402,0.486450684,16892,34725,,,0.63159576,21749,34435,, -18,153,18153,IN,Sullivan County,2024,1,9390.61246,374,57304,7836.999293,10944.22563,0,,,,2,,,,2,,,,2,,,,2,9553.140042,7926.50572,11179.77436,,,,,2,,0.197,,,0.167,0.23,4.363431064,,,3.522148457,5.292037983,5.478354593,,,4.426836805,6.587408694,0.071186441,105,1475,0.058063748,0.084309134,0,,,,,,,,,,,,,0.071777004,0.058421848,0.085132159,,,,,,,0.234,,,0.189,0.279,0.378,,,0.3,0.456,7.7,0.054341531,0.123,,,0.298,,,0.245,0.352,0.327616852,6820,20817,,,0.162304315,,,0.127610566,0.199614346,0.190476191,4,21,0.083840113,0.319045344,269.8,56,20758,,,28.25174825,101,3575,22.74188637,33.76161013,,,,,,,,,,,,,30.00594177,24.15396429,35.85791926,,,,,,,0.088011322,1306,14839,0.073713449,0.102309194,0.000337219,7,20758,,,2965.428571,0.000241897,5,20670,,,4134,0.000435414,9,20670,,,2296.666667,3793,,,,,,,,,3775,0.37,,,,,,,,,0.36,0.45,,,,,,,,,0.45,0.888525247,13303,14972,0.863158718,0.913891776,0.507524185,2833,5582,0.434903042,0.580145327,0.037665253,302,8018,,,0.172,632,,0.106468085,0.237531915,,,,,,,,,,0.019417476,0,0.414600374,0.170406135,0.10890918,0.231903089,4.062154322,105027,25855,3.530341603,4.593967041,0.305010893,1260,4131,0.181545004,0.428476782,11.08006552,23,20758,,,72.50509953,75,103441,57.02986021,90.8857701,,,,,,,,,,,,,76.01672368,59.47840459,95.73048275,,,,8.1,,,,,0,,,,,0.134529148,1050,7805,0.102341026,0.16671727,0.089436163,0.058095838,0.120776489,0.031902627,0.009401678,0.054403575,0.01921845,0.006736407,0.031700493,0.836899011,7276,8694,0.80346427,0.870333752,,,,,,,,,,,,,0.835039312,0.804161618,0.865917005,0.372,,8694,0.313362258,0.430637742,75.58640425,,,74.3251317,76.84767679,,,,,,,,,,,,,75.39418874,74.10591632,76.68246116,,,,477.1335666,374,57304,426.8112906,527.4558426,,,,,,,,,,,,,484.7562029,432.2426389,537.2697668,,,,97.09846927,17,17508,56.56343654,155.4640554,,,,,,,,,,,,,87.17852917,47.66131314,146.2707586,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.133,,,0.114,0.154,0.183,,,0.158,0.209,0.119,,,0.101,0.137,122,22,18032,,,0.123,2550,,,,0.054341531,1166.98438,21475,,,,,,,,,,,,,,,,,,,,,,,,,,0.362,,,0.345,0.378,0.102111081,1127,11037,0.084238741,0.119983421,0.048407324,193,3987,0.032917962,0.063896686,0.000822448,17,20670,,,1215.882353,0.943847656,241.625,256,,,,,,,,3.354768863,,,,,,,,,3.336613075,3.451341857,,,,,,,,,3.484286279,0.049951559,,,,,-613.6575,,,,,0.854932952,40676,47578,0.782971607,0.926894298,55497,,,48723.38298,62270.61702,,,,,,,,,,,,,54884,50289.61702,59478.38298,,,,,,0.549222798,1696,3088,,,,,,,,0.283186479,,55497,,,2.467105263,3,1216,,,,,,,,,,,,,,,,,,,,,,,,,,17.25623908,19,103441,10.22714092,27.27229735,18.36795855,,,,,,,,,,,,,19.32376485,11.45248773,30.53987944,,,,10.63408126,11,103441,5.308495053,19.02730882,,,,,,,,,,,,,10.55787829,5.06291302,19.41631408,,,,16.53222751,24,145171,10.59251011,24.59864408,,,,,,,,,,,,,16.51924492,10.35252284,25.01033533,,,,18.88888889,,1800,,,28,6,0.541970473,8994,16595,,,0.626,,,,,14.00453929,,,,,0.759242444,5853,7709,0.720072965,0.798411923,0.098547577,726,7367,0.067661745,0.129433409,0.782851213,6035,7709,0.743807988,0.821894438,20670,,,,,0.184034833,3804,20670,,,0.19109821,3950,20670,,,0.05002419,1034,20670,,,0.003725206,77,20670,,,0.003047896,63,20670,,,0.000338655,7,20670,,,0.019061442,394,20670,,,0.912094823,18853,20670,,,0.004521668,89,19683,0,0.012198893,0.4507015,9316,20670,,,0.765864438,15943,20817,, -18,155,18155,IN,Switzerland County,2024,1,12416.41319,180,28905,9581.20036,15251.62601,0,,,,2,,,,2,,,,2,,,,2,12642.96946,9695.265162,15590.67375,,,,,2,,0.202,,,0.17,0.238,4.410076763,,,3.497349316,5.392257046,5.841413573,,,4.684526035,7.058446417,0.079365079,65,819,0.06085226,0.097877899,0,,,,,,,,,,,,,0.074589128,0.056279779,0.092898476,,,,,,,0.244,,,0.197,0.292,0.414,,,0.328,0.502,7.3,0.031143258,0.15,,,0.311,,,0.255,0.369,0.511656568,4982,9737,,,0.155976946,,,0.121567717,0.193964505,0.2,3,15,0.07369192,0.354373303,153.2,15,9790,,,28.70588235,61,2125,21.95772544,36.87390678,,,,,,,,,,,,,30.43912176,23.28351625,39.10032531,,,,,,,0.100451467,801,7974,0.084962106,0.115940829,,0,9790,,,,0.00009994,1,10006,,,10006,0.00059964,6,10006,,,1667.666667,3837,,,,,,,,,3853,0.35,,,,,,,,,0.35,0.49,,,,,,,,,0.49,0.831334222,5614,6753,0.79664969,0.866018754,0.404669261,936,2313,0.319845107,0.489493415,0.027952921,133,4758,,,0.219,501,,0.135595745,0.302404255,,,,,,,,,,,,,0.283710407,0.195624843,0.371795971,3.686684521,107371,29124,2.650876148,4.722492895,0.235687422,564,2393,0.141477646,0.329897197,5.107252298,5,9790,,,112.0012149,59,52678,85.26051412,144.473407,,,,,,,,,,,,,113.6069201,86.04477182,147.1909422,,,,8.8,,,,,0,,,,,0.135440181,600,4430,0.095532628,0.175347734,0.101818182,0.059314385,0.144321979,0.042889391,0.019405504,0.066373277,0.010158014,0,0.020422629,0.827333181,3608,4361,0.783032716,0.871633645,,,,,,,,,,,,,0.663023679,0.626285759,0.6997616,0.589,,4361,0.502767115,0.675232885,75.23769698,,,72.92532128,77.55007268,,,,,,,,,,,,,74.85636985,72.50978135,77.20295835,,,,484.5512947,180,28905,409.6809777,559.4216117,,,,,,,,,,,,,490.6995698,413.6826983,567.7164414,,,,144.7570795,16,11053,82.74117845,235.0764281,,,,,,,,,,,,,154.4401544,88.27589241,250.8011351,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.136,,,0.115,0.157,0.191,,,0.165,0.219,0.116,,,0.097,0.134,73.5,6,8167,,,0.15,1480,,,,0.031143258,330.5233934,10613,,,31.98464737,10,31265,15.33788164,58.8209053,,,,,,,,,,,,,33.54353951,16.08543102,61.68776346,,,,0.362,,,0.345,0.379,0.108741629,617,5674,0.089677799,0.127805458,0.08115942,196,2415,0.053755165,0.108563676,0.00019988,2,10006,,,5003,0.975,84.825,87,,,,,,,,3.040245787,,,,,,,,,3.065218468,2.800187591,,,,,,,,,2.791025645,0.013608442,,,,,-3743.553,,,,,0.746375784,42115,56426,0.633874872,0.858876697,63246,,,54532.6383,71959.3617,,,,,,,,,,,,,66925,57663.55319,76186.44681,,,,,,0.507362785,758,1494,,,,,,,,0.217310186,,63246,,,1.788908766,1,559,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,24.41373137,18,73729,14.46912447,38.58422095,,,,,,,,,,,,,25.57871851,15.15956968,40.42540289,,,,,,1300,,,-888,-888,0.514745973,4154,8070,,,0.568,,,,,1.802065553,,,,,0.793814433,3003,3783,0.763415456,0.82421341,0.072391963,263,3633,0.042829196,0.10195473,0.74147502,2805,3783,0.68156169,0.80138835,10006,,,,,0.233359984,2335,10006,,,0.189686188,1898,10006,,,0.011093344,111,10006,,,0.004997002,50,10006,,,0.003797721,38,10006,,,0.00059964,6,10006,,,0.022386568,224,10006,,,0.947031781,9476,10006,,,0.005344164,50,9356,0,0.017309665,0.475414751,4757,10006,,,1,9737,9737,, -18,157,18157,IN,Tippecanoe County,2024,1,7077.671381,1875,550740,6628.172982,7527.16978,0,,,,2,,,,2,13437.95392,10978.41146,15897.49638,,5186.687951,3957.98932,6676.295516,,7227.291671,6708.953981,7745.629361,,,,,2,,0.158,,,0.133,0.185,3.652170034,,,2.959668435,4.417472253,5.322787637,,,4.498796447,6.171700138,0.082266175,1227,14915,0.07785643,0.08667592,0,,,,0.062975027,0.047286361,0.078663693,0.142199194,0.125774475,0.158623913,0.063559322,0.052554454,0.07456419,0.076784823,0.071570238,0.081999408,,,,0.100946372,0.067782549,0.134110196,0.165,,,0.128,0.204,0.326,,,0.273,0.379,6.6,0.174369071,0.113,,,0.242,,,0.201,0.287,0.810674842,150989,186251,,,0.188238997,,,0.156277003,0.222658378,0.166666667,13,78,0.112267729,0.228361171,539.9,1010,187076,,,11.6922052,702,60040,10.82726926,12.55714114,,,,,,,31.90319032,26.09740208,37.70897856,25.62459962,21.65402677,29.59517246,9.093050648,8.185915428,10.00018587,,,,22.65768524,15.95310139,31.2306345,0.088816994,13342,150219,0.0769021,0.100731888,0.00070025,131,187076,,,1428.061069,0.000535193,101,188717,,,1868.485149,0.001828134,345,188717,,,547.0057971,2533,,,,,,,9762,937,2475,0.46,,,,,,0.35,0.27,0.25,0.47,0.57,,,,,,0.58,0.39,0.35,0.57,0.920219897,95413,103685,0.910541857,0.929897937,0.717542228,33177,46237,0.68348768,0.751596776,0.028288298,2769,97885,,,0.149,5531,,0.113255319,0.184744681,,,,0.028474576,0,0.092640571,0.43993135,0.339655473,0.540207227,0.190476191,0.130949297,0.250003084,0.124936559,0.096061366,0.153811752,4.94919578,114465,23128,4.610841164,5.287550396,0.214018021,8052,37623,0.182548916,0.245487126,9.782120636,183,187076,,,64.61948267,622,962558,59.54111248,69.69785286,,,,,,,110.7031495,84.47816556,142.4968974,39.19333001,26.97888498,55.04200726,71.33359189,65.17265799,77.49452579,,,,8.8,,,,,1,,,,,0.159656832,11445,71685,0.143816016,0.175497648,0.146035384,0.129687197,0.162383572,0.014717165,0.010068079,0.019366251,0.006626212,0.003723792,0.009528632,0.747186147,66451,88935,0.73685572,0.757516574,,,,0.499113213,0.423932622,0.574293805,0.748359311,0.67928965,0.817428972,0.738717039,0.695033517,0.78240056,0.790488975,0.784631196,0.796346754,0.133,,88935,0.119625565,0.146374435,78.34255987,,,77.90295492,78.78216481,,,,88.59463774,84.32741026,92.86186521,71.76260228,69.24286083,74.28234373,84.90800745,80.92874197,88.88727293,78.05971977,77.58133009,78.53810944,,,,353.1339961,1875,550740,336.7385856,369.5294066,,,,,,,652.8779897,531.1295478,774.6264316,202.7054844,153.1215445,263.2299323,366.2015899,347.7636733,384.6395065,,,,52.24483478,108,206719,42.3914021,62.09826745,,,,,,,127.7061542,79.05212226,195.2124224,72.12925563,44.0584232,111.3977853,44.28247866,33.87258738,56.88269638,,,,6.979778213,107,15330,5.657247381,8.302309044,,,,,,,13.97786838,8.955884016,20.79796016,,,,5.649176561,4.30041494,7.287026174,,,,,,,0.11,,,0.094,0.127,0.161,,,0.138,0.185,0.108,,,0.093,0.125,133.2,213,159946,,,0.113,20970,,,,0.174369071,30127.48811,172780,,,20.90087974,121,578923,17.17672298,24.62503649,,,,,,,38.48772834,20.49309439,65.81518761,,,,23.3789261,18.81939751,27.93845468,,,,0.322,,,0.307,0.336,0.102310494,11544,112833,0.088012622,0.116608367,0.052139683,2053,39375,0.03784181,0.066437555,0.001160468,219,188717,,,861.7214612,0.824572966,1226.14,1487,,,0.028163559,509,18073,0.014513301,0.041813817,3.294679061,,,,,,,2.602203991,3.104173389,3.415612047,3.353788251,,,,,,4.207592077,2.608225311,3.233782753,3.44658425,0.096869686,,,,,61.19023333,,,,,0.779178773,42639,54723,0.726497685,0.831859861,56088,,,51862.97872,60313.02128,,,,31651,21096.78723,42205.21277,36862,31244.12766,42479.87234,46654,35736.38298,57571.61702,59985,57213.59575,62756.40426,,,,,,0.43953724,10410,23684,,,36.62536195,,,,,0.358615034,,56088,,,4.733951903,50,10562,,,3.44197246,46,1336443,2.519956437,4.591108915,,,,,,,26.12006984,15.72598832,40.7897246,,,,2.179193065,1.365688692,3.299324489,,,,14.2764111,133,962558,11.70703042,16.84579178,13.81734919,,,,,,,,,,,,,15.80706298,12.74817094,18.86595501,,,,11.32399294,109,962558,9.198094997,13.44989089,,,,,,,36.90104984,22.5401199,56.99067862,,,,11.21945814,8.909869244,13.94476206,,,,6.958770408,93,1336443,5.616625829,8.52496388,,,,,,,,,,,,,7.726229956,6.107264162,9.642684652,,,,11.53409091,,17600,,,146,57,0.519697411,71448,137480,,,0.671,,,,,109.1214486,,,,,0.529368446,38817,73327,0.515474404,0.543262487,0.163053453,11372,69744,0.146417089,0.179689817,0.881953441,64671,73327,0.870981842,0.892925041,188717,,,,,0.199775325,37701,188717,,,0.124652257,23524,188717,,,0.061457102,11598,188717,,,0.00404839,764,188717,,,0.083150962,15692,188717,,,0.000614677,116,188717,,,0.093017587,17554,188717,,,0.738698686,139405,188717,,,0.01618374,2858,176597,0.012805565,0.019561916,0.486246602,91763,188717,,,0.156514596,29151,186251,, -18,159,18159,IN,Tipton County,2024,1,8919.511931,261,41346,7020.62776,10818.3961,0,,,,2,,,,2,,,,2,,,,2,8895.402055,6953.646499,10837.15761,,,,,2,,0.158,,,0.13,0.189,3.823071594,,,2.992660675,4.680510984,5.049076844,,,4.028684777,6.125719014,0.080524345,86,1068,0.064204946,0.096843744,0,,,,,,,,,,,,,0.076847291,0.060461247,0.093233334,,,,,,,0.184,,,0.141,0.229,0.385,,,0.306,0.468,8,0.073218133,0.099,,,0.254,,,0.203,0.31,0.569568331,8748,15359,,,0.165449525,,,0.13222521,0.201694291,0.136363636,3,22,0.044872665,0.263216149,208.2,32,15372,,,18.62556198,58,3114,14.1431701,24.07785798,,,,,,,,,,,,,18.65284974,14.01259481,24.33792276,,,,,,,0.074908242,898,11988,0.062993348,0.086823135,0.000260213,4,15372,,,3843,0.000585899,9,15361,,,1706.777778,0.000716099,11,15361,,,1396.454546,642,,,,,,,,,648,0.49,,,,,,,,,0.49,0.53,,,,,,,,,0.53,0.907542357,9963,10978,0.879859748,0.935224967,0.588424437,2013,3421,0.486667508,0.690181366,0.028298746,255,9011,,,0.123,380,,0.087255319,0.158744681,,,,,,,,,,0.277419355,0.037013883,0.517824826,0.17952364,0.110255201,0.24879208,3.459292591,132228,38224,2.834558425,4.084026757,0.112999685,359,3177,0.056025582,0.169973789,15.6128025,24,15372,,,77.62851466,59,76003,59.0944221,100.135128,,,,,,,,,,,,,76.54729927,57.66590162,99.63683174,,,,8.8,,,,,0,,,,,0.066823899,425,6360,0.041467032,0.092180767,0.052731591,0.027102766,0.078360417,0.006289308,0,0.016060489,0.007861635,0,0.015874608,0.809163456,5881,7268,0.767791227,0.850535686,,,,,,,,,,,,,0.793371997,0.781471804,0.80527219,0.404,,7268,0.343585497,0.464414503,76.01424326,,,74.53047209,77.49801442,,,,,,,,,,,,,75.86754199,74.36360588,77.3714781,,,,424.6128767,261,41346,369.2202106,480.0055429,,,,,,,,,,,,,429.4405558,372.6049186,486.2761931,,,,94.27121102,13,13790,50.19544954,161.2066419,,,,,,,,,,,,,88.43865573,44.1482583,158.2411844,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.112,,,0.094,0.132,0.168,,,0.143,0.194,0.098,,,0.082,0.115,45.5,6,13193,,,0.099,1510,,,,0.073218133,1166.804159,15936,,,,,,,,,,,,,,,,,,,,,,,,,,0.341,,,0.321,0.36,0.082646494,732,8857,0.068348622,0.096944367,0.054561989,180,3299,0.036689648,0.072434329,0.0003255,5,15361,,,3072.2,0.932650273,170.675,183,,,,,,,,3.189804124,,,,,,,,,3.222145297,3.286425979,,,,,,,,,3.318660826,0.016626764,,,,,1040.50745,,,,,0.866188942,48109,55541,0.703821863,1.02855602,65025,,,58259.7234,71790.2766,,,,,,,,,,,,,71895,62639.51064,81150.48936,,,,,,0.393197279,867,2205,,,,,,,,0.255347943,,65025,,,3.521126761,3,852,,,,,,,,,,,,,,,,,,,,,,,,,,31.35490225,23,76003,19.40917868,47.92929878,30.26196334,,,,,,,,,,,,,33.24682461,20.58030844,50.82130308,,,,26.31475073,20,76003,16.07373339,40.64099825,,,,,,,,,,,,,26.44361248,15.92078213,41.29497651,,,,18.78781047,20,106452,11.47608273,29.01624949,,,,,,,,,,,,,15.86577554,9.068661577,25.76502548,,,,,,1500,,,17,-888,0.685472973,8116,11840,,,0.705,,,,,23.32680055,,,,,0.808103728,4986,6170,0.766810918,0.849396537,0.051364638,303,5899,0.029695202,0.073034074,0.872933549,5386,6170,0.83741805,0.908449049,15361,,,,,0.205780874,3161,15361,,,0.221079357,3396,15361,,,0.008202591,126,15361,,,0.003254996,50,15361,,,0.010025389,154,15361,,,0.0003255,5,15361,,,0.033721763,518,15361,,,0.935811471,14375,15361,,,0,0,14395,0,0.006621685,0.493392357,7579,15361,,,0.615404649,9452,15359,, -18,161,18161,IN,Union County,2024,1,9461.080143,135,19540,6761.54707,12160.61322,0,,,,2,,,,2,,,,2,,,,2,9556.380515,6787.500481,12325.26055,,,,,2,,0.162,,,0.134,0.19,3.898735706,,,3.061193702,4.844854142,5.280933716,,,4.22764312,6.447219494,0.063218391,33,522,0.042341697,0.084095084,0,,,,,,,,,,,,,0.062868369,0.041781429,0.08395531,,,,,,,0.195,,,0.153,0.238,0.381,,,0.298,0.466,,,0.089,,,0.257,,,0.208,0.31,0.620855087,4400,7087,,,0.164136422,,,0.129925616,0.201671465,0,0,9,0,0.215915826,127.7,9,7047,,,24.94802495,36,1443,17.47328996,34.53858246,,,,,,,,,,,,,24.3902439,16.68290877,34.43174701,,,,,,,0.098701761,555,5623,0.083212399,0.114191122,0.000141904,1,7047,,,7047,,0,6952,,,,0.000143844,1,6952,,,6952,6659,,,,,,,,,6724,0.39,,,,,,,,,0.39,0.48,,,,,,,,,0.48,0.887852322,4473,5038,0.859445951,0.916258693,0.653649168,1021,1562,0.509351851,0.797946485,0.024444444,88,3600,,,0.167,243,,0.106234043,0.227765957,,,,,,,,,,0.064102564,0,0.14935296,0.073359073,0.016812918,0.129905229,3.54203701,121545,34315,3.05737602,4.026698001,0.177563661,258,1453,0.0920517,0.263075623,5.676174259,4,7047,,,129.7346081,46,35457,94.98203855,173.0477866,,,,,,,,,,,,,133.8927073,97.66225948,179.1589768,,,,8.9,,,,,0,,,,,0.098245614,280,2850,0.062347063,0.134144165,0.075438597,0.041060572,0.109816621,0.015438597,0,0.033566336,0.024561404,0.004731509,0.044391299,0.855080668,3021,3533,0.813117738,0.897043598,,,,,,,,,,,,,0.798194713,0.69455713,0.901832297,0.421,,3533,0.350742529,0.491257471,75.4875601,,,73.34900058,77.62611961,,,,,,,,,,,,,75.25431041,73.10674276,77.40187807,,,,469.896544,135,19540,384.547098,555.24599,,,,,,,,,,,,,480.9852098,392.4566468,569.5137727,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.116,,,0.098,0.134,0.172,,,0.148,0.198,0.098,,,0.083,0.114,,,,,,0.089,630,,,,,,7516,,,,,,,,,,,,,,,,,,,,,,,,,,0.335,,,0.318,0.353,0.105442177,434,4116,0.087569836,0.123314517,0.082286432,131,1592,0.054882177,0.109690688,0.000575374,4,6952,,,1738,0.975,109.2,112,,,,,,,,3.477178769,,,,,,,,,3.456352164,3.482878702,,,,,,,,,3.500957152,0.027776898,,,,,379.1094,,,,,0.749813333,42177,56250,0.54249748,0.957129187,61171,,,52668.53192,69673.46809,,,,,,,,,,38333,27321.25532,49344.74468,70625,60745.17021,80504.82979,,,,,,0.470361817,611,1299,,,,,,,,0.260793513,,61171,,,4.504504505,2,444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,700,,,-888,-888,0.629268293,3483,5535,,,0.65,,,,,30.98296244,,,,,0.791552198,2305,2912,0.748801053,0.834303342,0.086151655,242,2809,0.045278418,0.127024893,0.838942308,2443,2912,0.801948255,0.87593636,6952,,,,,0.213176064,1482,6952,,,0.207853855,1445,6952,,,0.011363636,79,6952,,,0.003596088,25,6952,,,0.004027618,28,6952,,,0.000575374,4,6952,,,0.023590334,164,6952,,,0.941743383,6547,6952,,,0.002407101,16,6647,0,0.015127688,0.505034522,3511,6952,,,1,7087,7087,, -18,163,18163,IN,Vanderburgh County,2024,1,10318.34168,3318,504503,9781.67295,10855.01041,0,,,,2,,,,2,17295.99556,15115.84867,19476.14244,,5985.238952,3834.855532,8905.561129,1,9782.08529,9208.183073,10355.98751,,,,,2,,0.172,,,0.145,0.202,3.937209952,,,3.210409756,4.689731797,5.809757593,,,4.927272369,6.699754614,0.096804199,1457,15051,0.092080182,0.101528216,0,,,,0.12244898,0.07655647,0.168341489,0.153017241,0.136638725,0.169395758,0.094476744,0.072620571,0.116332917,0.087509738,0.082356846,0.092662629,0.071942446,0.028985962,0.11489893,0.100660066,0.076704287,0.124615845,0.196,,,0.157,0.238,0.424,,,0.369,0.48,7.1,0.11614012,0.121,,,0.265,,,0.222,0.31,0.859028734,154742,180136,,,0.172519692,,,0.141253879,0.204173129,0.117647059,10,85,0.070629502,0.174973247,718.9,1294,179987,,,23.39904464,965,41241,21.92269052,24.87539876,,,,,,,43.04778304,37.0816647,49.01390138,25.56237219,18.97288535,33.70080095,19.14088582,17.61184226,20.66992938,91.74311927,43.99439171,168.7188628,44.41569642,35.83793555,52.9934573,0.083846143,12072,143978,0.073122739,0.094569547,0.000777834,140,179987,,,1285.621429,0.000728814,131,179744,,,1372.091603,0.002548068,458,179744,,,392.4541485,3462,,,,,,,4321,5382,3388,0.54,,,,,,0.44,0.45,,0.54,0.59,,,,,,0.56,0.43,0.42,0.59,0.91217956,112656,123502,0.903937625,0.920421494,0.666666667,31296,46944,0.631962458,0.701370875,0.030246011,2813,93004,,,0.193,7267,,0.144148936,0.241851064,,,,0.094170404,0,0.23029571,0.417104434,0.325405722,0.508803146,0.401428571,0.284227421,0.518629722,0.131846435,0.107996134,0.155696736,4.142921433,110471,26665,3.938611669,4.347231196,0.309250123,11972,38713,0.274214591,0.344285654,14.77884514,266,179987,,,104.8015665,950,906475,98.13715136,111.4659817,,,,,,,142.0438404,117.1424573,166.9452236,42.14720871,21.03973473,75.41299863,106.4163337,99.04666256,113.7860047,,,,8.7,,,,,0,,,,,0.143636244,10930,76095,0.131739362,0.155533126,0.128041977,0.116644054,0.139439899,0.012287273,0.008777155,0.015797391,0.009856101,0.006405484,0.013306718,0.82274095,72184,87736,0.808125622,0.837356278,,,,0.793346129,0.687915634,0.898776624,0.708422747,0.634886285,0.781959209,0.786512668,0.666500708,0.906524627,0.852077281,0.837483203,0.866671359,0.189,,87736,0.173373764,0.204626237,74.62405652,,,74.20558301,75.04253003,,,,89.75906939,79.89069307,99.62744571,69.16177415,67.63251407,70.69103423,88.458751,77.61342945,99.30407256,74.99347366,74.54872174,75.43822558,,,,504.9745762,3318,504503,486.9782687,522.9708838,,,,,,,781.9695673,705.4424848,858.4966498,259.5227255,169.5288606,380.260923,489.9092634,470.7813976,509.0371292,,,,73.57102434,130,176700,60.92391719,86.21813148,,,,,,,167.5345257,117.9597671,230.924275,,,,60.577712,47.95994507,75.49790368,,,,7.108536826,108,15193,5.767859047,8.449214605,,,,,,,15.66720692,10.49257436,22.50072255,,,,5.16598916,3.951572371,6.635929193,,,,,,,0.12,,,0.103,0.139,0.18,,,0.156,0.203,0.11,,,0.096,0.126,210.1,320,152303,,,0.121,21790,,,,0.11614012,20870.7279,179703,,,31.62433235,172,543885,26.89812019,36.35054451,,,,,,,50.45125848,33.24769724,73.40393229,,,,31.8136919,26.59931855,37.02806525,,,,0.351,,,0.334,0.367,0.096266426,10146,105395,0.083160043,0.109372809,0.051742475,2092,40431,0.037444603,0.066040347,0.00219757,395,179744,,,455.0481013,0.799228286,1361.885,1704,,,0.035991606,343,9530,0.020590475,0.051392736,2.956795143,,,,,,,2.274464365,2.635293072,3.160662349,3.08480121,,,,,,3.251975644,2.189008879,2.758814287,3.322523125,0.114512092,,,,,-522.3193,,,,,0.793372391,43334,54620,0.75816229,0.828582493,57997,,,53248.91489,62745.08511,32895,19619.42553,46170.57447,64384,37529.02128,91238.97872,34871,27263.34043,42478.65957,45028,34735.91489,55320.08511,61606,59647.19149,63564.80851,,,,,,0.45090136,10180,22577,,,55.51487734,,,,,0.316206011,,57997,,,7.614696364,80,10506,,,8.1885057,104,1270073,6.614725571,9.762285829,,,,,,,42.63937747,31.84512657,55.91587066,,,,4.629367194,3.424831335,6.120268937,,,,20.63088425,192,906475,17.61190031,23.6498682,21.18094818,,,,,,,12.20553844,6.30677982,21.32061934,,,,22.59289245,19.11753818,26.06824671,,,,19.96745636,181,906475,17.05848444,22.87642827,,,,,,,52.27213327,38.26977126,69.72370054,,,,17.40391974,14.42356818,20.38427129,,,,10.07816086,128,1270073,8.332208569,11.82411315,,,,,,,11.47983239,6.276131195,19.26120811,,,,10.10902632,8.193564457,12.02448819,,,,14.74285714,,17500,,,247,11,0.557196154,77662,139380,,,0.696,,,,,108.3406894,,,,,0.647774438,49786,76857,0.63238721,0.663161666,0.128819796,9662,75004,0.116716425,0.140923168,0.880830634,67698,76857,0.87079544,0.890865827,179744,,,,,0.214238027,38508,179744,,,0.183499867,32983,179744,,,0.100893493,18135,179744,,,0.003148923,566,179744,,,0.014303676,2571,179744,,,0.003399279,611,179744,,,0.033080381,5946,179744,,,0.817974453,147026,179744,,,0.005022723,851,169430,0.002904087,0.00714136,0.510114385,91690,179744,,,0.07956766,14333,180136,, -18,165,18165,IN,Vermillion County,2024,1,10643.95632,318,42327,8684.822013,12603.09063,0,,,,2,,,,2,,,,2,,,,2,10770.05143,8767.46945,12772.63342,,,,,2,,0.179,,,0.151,0.212,4.126149462,,,3.258597929,5.03338644,5.46014268,,,4.355100972,6.572994079,0.078449053,87,1109,0.062624049,0.094274057,0,,,,,,,,,,,,,0.07627907,0.06041097,0.09214717,,,,,,,0.217,,,0.173,0.266,0.409,,,0.329,0.492,7.8,0.016978974,0.134,,,0.286,,,0.233,0.343,0.538052983,8307,15439,,,0.161524925,,,0.127786512,0.19980409,0,0,17,0,0.135527658,267.3,41,15341,,,27.83171521,86,3090,22.26177969,34.37194187,,,,,,,,,,,,,28.32764505,22.56281116,35.11637809,,,,,,,0.079653255,974,12228,0.067738361,0.091568148,0.000586663,9,15341,,,1704.555556,0.000453045,7,15451,,,2207.285714,0.001294415,20,15451,,,772.55,5120,,,,,,,,,5111,0.4,,,,,,,,,0.4,0.45,,,,,,,,,0.45,0.925045872,10083,10900,0.901897405,0.948194338,0.590984513,2137,3616,0.498121336,0.683847691,0.036190188,239,6604,,,0.183,599,,0.124617021,0.241382979,,,,,,,,,,,,,0.196945593,0.130229901,0.263661285,3.947435292,108740,27547,3.507048377,4.387822207,0.273759713,916,3346,0.186797316,0.36072211,11.08141581,17,15341,,,80.36084612,62,77152,61.61219993,103.018978,,,,,,,,,,,,,82.10512148,62.80391219,105.4674634,,,,9.1,,,,,0,,,,,0.103737605,680,6555,0.073720208,0.133755002,0.065573771,0.043066973,0.088080568,0.029595729,0.010797161,0.048394296,0.016781083,0.00311203,0.030450137,0.817436662,5485,6710,0.78984992,0.845023404,,,,,,,,,,,,,0.776242478,0.656748317,0.89573664,0.397,,6710,0.331295006,0.462704994,74.17891891,,,72.72392158,75.63391623,,,,,,,,,,,,,73.9684838,72.4901502,75.4468174,,,,526.5580205,318,42327,464.5330664,588.5829745,,,,,,,,,,,,,535.5138811,472.1426798,598.8850824,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.125,,,0.107,0.146,0.18,,,0.155,0.208,0.108,,,0.092,0.126,69,9,13050,,,0.134,2070,,,,0.016978974,275.263132,16212,,,23.82602669,11,46168,11.89386668,42.63134317,,,,,,,,,,,,,24.79040837,12.37528254,44.35688838,,,,0.357,,,0.339,0.375,0.090063851,804,8927,0.07457449,0.105553213,0.053413311,187,3501,0.036732459,0.070094162,0.001229694,19,15451,,,813.2105263,0.942317073,193.175,205,,,,,,,,3.165051035,,,,,,,,,3.161284873,3.318005031,,,,,,,,,3.333249915,0.031057729,,,,,-135.28077,,,,,0.799295512,42887,53656,0.662134957,0.936456068,58280,,,51147.74468,65412.25532,98750,38965.82979,158534.1702,,,,,,,87644,43126.38298,132161.617,59990,53609.57447,66370.42553,,,,,,0.512776094,1184,2309,,,,,,,,0.264927934,,58280,,,3.856041131,3,778,,,,,,,,,,,,,,,,,,,,,,,,,,23.99262869,19,77152,14.21955234,37.91869718,24.62671091,,,,,,,,,,,,,22.9363332,13.36125932,36.72329133,,,,15.55371215,12,77152,8.036830035,27.16920501,,,,,,,,,,,,,14.80584158,7.39102277,26.49174038,,,,19.35680115,21,108489,11.982165,29.58892674,,,,,,,,,,,,,20.06458887,12.42029675,30.67085545,,,,,,1600,,,69,-888,0.623936614,7481,11990,,,0.644,,,,,31.96585258,,,,,0.769904703,5009,6506,0.73596442,0.803844987,0.072092278,450,6242,0.046010492,0.098174064,0.863818014,5620,6506,0.834655999,0.89298003,15451,,,,,0.216037797,3338,15451,,,0.205423597,3174,15451,,,0.005889586,91,15451,,,0.003947965,61,15451,,,0.003106595,48,15451,,,0.000647207,10,15451,,,0.018704291,289,15451,,,0.955019093,14756,15451,,,0.003262199,48,14714,0,0.010180367,0.497572973,7688,15451,,,0.586566488,9056,15439,, -18,167,18167,IN,Vigo County,2024,1,10406.37093,1929,297004,9704.925117,11107.81674,0,,,,2,,,,2,10665.64557,8220.634921,13110.65621,,,,,2,10905.96202,10123.70127,11688.22277,,,,,2,,0.187,,,0.158,0.221,4.098615561,,,3.238312136,5.038114843,5.499386093,,,4.511768031,6.534790189,0.09159746,750,8188,0.085349359,0.097845561,0,,,,,,,0.171790235,0.140351656,0.203228815,,,,0.087090451,0.08055094,0.093629962,,,,0.077319588,0.03973363,0.114905545,0.218,,,0.174,0.267,0.385,,,0.324,0.451,5.8,0.199911678,0.139,,,0.298,,,0.247,0.351,0.785206259,83352,106153,,,0.162631878,,,0.131182645,0.197608502,0.158730159,10,63,0.09905591,0.228155827,577.4,612,105994,,,24.52025586,644,26264,22.62643832,26.41407341,,,,,,,17.56440281,12.81159594,23.50255289,24.16107383,14.3193836,38.18491311,25.64705882,23.4938042,27.80031345,,,,30.27522936,20.84007484,42.51767823,0.089543494,7183,80218,0.0776286,0.101458388,0.000830236,88,105994,,,1204.477273,0.000575439,61,106006,,,1737.803279,0.001877252,199,106006,,,532.6934673,4603,,,,,,,5745,2105,4585,0.43,,,,,,0.46,0.37,,0.43,0.48,,,,,,0.56,0.36,0.4,0.48,0.904651877,61861,68381,0.895122974,0.91418078,0.606832993,15737,25933,0.565363073,0.648302913,0.035492689,1636,46094,,,0.205,4299,,0.135893617,0.274106383,,,,0.17965368,0,0.504501907,0.292266187,0.197679427,0.386852947,0.268408551,0.13763649,0.399180612,0.24711059,0.208647187,0.285573992,4.842045143,105973,21886,4.405440787,5.278649499,0.277000325,5958,21509,0.234430872,0.319569779,14.43477933,153,105994,,,74.64333953,399,534542,67.31913127,81.9675478,,,,,,,54.59508644,33.79521899,83.45438902,,,,80.75116135,72.50064861,89.00167408,,,,10.2,,,,,1,,,,,0.151447662,6460,42655,0.132828803,0.17006652,0.124498088,0.106080252,0.142915924,0.027312156,0.018010949,0.036613362,0.010315321,0.006467351,0.01416329,0.785954434,37637,47887,0.767678057,0.804230812,,,,0.653179191,0.49019978,0.816158601,0.707891247,0.616106824,0.79967567,0.51109702,0.394043542,0.628150498,0.822651069,0.807894036,0.837408102,0.168,,47887,0.149350242,0.186649759,74.31569894,,,73.76665712,74.86474076,,,,93.101197,80.1086102,106.0937838,73.04920505,70.89506322,75.20334689,103.432719,69.01286019,137.8525779,73.88761811,73.2974796,74.47775662,,,,531.5209345,1929,297004,506.8662038,556.1756652,,,,,,,634.5282522,521.3014208,747.7550836,,,,547.4570123,520.6769439,574.2370807,,,,62.70620695,65,103658,48.39532668,79.92420828,,,,,,,,,,,,,66.03539969,49.88243126,85.75245924,,,,8.12134241,68,8373,6.306540159,10.29573667,,,,,,,,,,,,,8.003255562,6.092448946,10.32361657,,,,,,,0.124,,,0.106,0.146,0.176,,,0.151,0.203,0.121,,,0.103,0.141,230.5,209,90653,,,0.139,14760,,,,0.199911678,21560.0746,107848,,,21.58678513,69,319640,16.79580733,27.31945817,,,,,,,,,,,,,23.90848567,18.45206449,30.47332763,,,,0.37,,,0.354,0.386,0.106044647,6242,58862,0.090555285,0.121534009,0.045854356,1027,22397,0.032747973,0.058960739,0.001990453,211,106006,,,502.3981043,0.77,773.85,1005,,,0.049854651,343,6880,0.02697779,0.072731512,3.183195512,,,,,,,2.647935891,2.870152272,3.233416412,3.162997171,,,,,,,2.588957183,2.904633776,3.217017732,0.067949236,,,,,-591.999,,,,,0.842513342,41835,49655,0.789281596,0.895745088,52286,,,47368.7234,57203.2766,55189,35156.48936,75221.51064,87148,56419.48936,117876.5106,31493,23455.21277,39530.78723,55709,37684.14894,73733.85106,54545,51391.12766,57698.87234,,,,,,0.543758967,7580,13940,,,51.79064414,,,,,0.321711357,,52286,,,3.553900829,21,5909,,,4.930907327,37,750369,3.47181381,6.796606222,,,,,,,,,,,,,5.149997581,3.545021368,7.232511353,,,,18.15414366,98,534542,14.63480204,22.26444562,18.33345182,,,,,,,,,,,,,20.20506652,16.1390895,24.98387765,,,,10.85041026,58,534542,8.239171418,14.02667138,,,,,,,,,,,,,12.28822021,9.282389485,15.95727605,,,,11.19449231,84,750369,8.929165483,13.85954321,,,,,,,,,,,,,12.79696369,10.17780499,15.88440614,,,,14.375,,9600,,,83,55,0.522772515,43594,83390,,,0.64,,,,,86.43633793,,,,,0.630905604,26975,42756,0.613571522,0.648239686,0.141627165,5856,41348,0.12348881,0.159765519,0.862943213,36896,42756,0.845471893,0.880414532,106006,,,,,0.202780975,21496,106006,,,0.173726016,18416,106006,,,0.06791125,7199,106006,,,0.004207309,446,106006,,,0.021640285,2294,106006,,,0.000679207,72,106006,,,0.0298285,3162,106006,,,0.852074411,90325,106006,,,0.005167599,520,100627,0.00255586,0.007779338,0.494698413,52441,106006,,,0.247670815,26291,106153,, -18,169,18169,IN,Wabash County,2024,1,10105.91864,581,83492,8770.497172,11441.3401,0,,,,2,,,,2,,,,2,,,,2,10225.09713,8831.118678,11619.07558,,,,,2,,0.172,,,0.144,0.203,3.95971784,,,3.190553505,4.896317158,5.477087707,,,4.448784403,6.563159729,0.074633496,168,2251,0.06377694,0.085490053,0,,,,,,,,,,,,,0.075082121,0.063893303,0.086270939,,,,,,,0.209,,,0.167,0.258,0.395,,,0.318,0.477,7.8,0.071773438,0.108,,,0.272,,,0.222,0.328,0.668840393,20718,30976,,,0.161106062,,,0.127333112,0.198426532,0.2,5,25,0.10034726,0.316172705,227.2,70,30816,,,20.24612942,153,7557,17.03799642,23.45426242,,,,,,,,,,,,,20.56292839,17.1687749,23.95708189,,,,,,,0.088800587,2056,23153,0.075694204,0.10190697,0.000421859,13,30816,,,2370.461539,0.000356819,11,30828,,,2802.545455,0.00282211,87,30828,,,354.3448276,2923,,,,,,,,,2921,0.48,,,,,,,,,0.48,0.49,,,,,,,,0.27,0.49,0.914481291,19772,21621,0.898386215,0.930576368,0.551834595,3790,6868,0.47254578,0.63112341,0.027280186,399,14626,,,0.148,910,,0.094382979,0.201617021,,,,,,,,,,0.178125,0,0.374892122,0.154779146,0.105852803,0.203705488,3.993248498,112969,28290,3.332416796,4.654080199,0.245368917,1563,6370,0.161357052,0.329380781,16.87435099,52,30816,,,91.4247452,142,155319,76.3872446,106.4622458,,,,,,,,,,,,,93.7181478,78.02465962,109.411636,,,,8.7,,,,,1,,,,,0.096025187,1220,12705,0.073180393,0.118869981,0.080366388,0.057665723,0.103067053,0.012593467,0.003491588,0.021695347,0.012593467,0.003784741,0.021402193,0.839883655,11839,14096,0.796491859,0.883275451,,,,,,,,,,,,,0.839954872,0.804965323,0.87494442,0.266,,14096,0.223689543,0.308310457,74.33370389,,,73.36275813,75.30464966,,,,,,,,,,,,,74.1114176,73.11033185,75.11250335,,,,499.3602971,581,83492,455.7479603,542.972634,,,,,,,,,,,,,506.8313786,461.7897791,551.8729781,,,,40.4067614,12,29698,20.87876325,70.58248046,,,,,,,,,,,,,44.78614615,23.14165525,78.2323843,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.121,,,0.103,0.141,0.177,,,0.153,0.203,0.104,,,0.088,0.122,45.5,12,26395,,,0.108,3350,,,,0.071773438,2360.484841,32888,,,26.99900644,25,92596,17.47233341,39.85585954,,,,,,,,,,,,,26.43982067,16.76057827,39.67271284,,,,0.367,,,0.348,0.384,0.098927013,1678,16962,0.083437652,0.114416375,0.062519201,407,6510,0.043455371,0.081583031,0.000616323,19,30828,,,1622.526316,0.831218569,429.74,517,,,,,,,,3.002153519,,,,,,,,,3.041332581,3.093186712,,,,,,,,,3.111231991,0.050601901,,,,,1519.1089,,,,,0.700742992,41498,59220,0.627161844,0.774324141,64025,,,56646.10638,71403.89362,105385,91823.46809,118946.5319,,,,,,,,,,66466,60298.85106,72633.14894,,,,,,0.451067961,2323,5150,,,,,,,,0.225146427,,64025,,,9.310986965,15,1611,,,,,,,,,,,,,,,,,,,,,,,,,,11.96533007,18,155319,6.839219979,19.4309464,11.58905221,,,,,,,,,,,,,12.66380299,7.238457602,20.56522266,,,,12.87672468,20,155319,7.86543796,19.8870569,,,,,,,,,,,,,13.68148143,8.357004293,21.12993844,,,,20.98358263,46,219219,15.36261976,27.98915865,,,,,,,,,,,,,20.33248453,14.65386643,27.48361239,,,,,,3000,,,51,-888,0.594090075,14576,24535,,,0.685,,,,,37.70286161,,,,,0.794322829,9906,12471,0.768623074,0.820022584,0.067702736,819,12097,0.048203654,0.087201818,0.847967284,10575,12471,0.823345187,0.872589382,30828,,,,,0.208576619,6430,30828,,,0.220805761,6807,30828,,,0.008271701,255,30828,,,0.00746075,230,30828,,,0.00580641,179,30828,,,0.000291942,9,30828,,,0.02968081,915,30828,,,0.9373297,28896,30828,,,0.000237715,7,29447,0,0.004351347,0.510509926,15738,30828,,,0.501485021,15534,30976,, -18,171,18171,IN,Warren County,2024,1,6643.259157,126,22596,4705.919746,8580.598569,0,,,,2,,,,2,,,,2,,,,2,6884.02021,4846.756004,8921.284416,,,,,2,,0.153,,,0.129,0.181,3.676291262,,,2.937162327,4.558957164,5.152216497,,,4.142691475,6.239146532,0.063432836,34,536,0.042798039,0.084067633,0,,,,,,,,,,,,,0.0651341,0.043965132,0.086303068,,,,,,,0.188,,,0.151,0.232,0.387,,,0.309,0.472,8.5,0.01704591,0.105,,,0.249,,,0.202,0.302,0.335781991,2834,8440,,,0.164248481,,,0.131047923,0.202704103,0.230769231,3,13,0.089378268,0.394382228,247.8,21,8475,,,18.62630966,32,1718,12.74038202,26.29479166,,,,,,,,,,,,,20.11313639,13.7573704,28.39374738,,,,,,,0.062246888,415,6667,0.051523483,0.072970292,,0,8475,,,,0.000118189,1,8461,,,8461,,0,8461,,,,2691,,,,,,,,,2697,0.39,,,,,,,,,0.39,0.38,,,,,,,,,0.38,0.925901422,5598,6046,0.90517886,0.946623985,0.6718107,1306,1944,0.563507811,0.780113588,0.025672076,106,4129,,,0.133,240,,0.084148936,0.181851064,,,,,,,,,,0.833333333,0.780496175,0.886170492,0.156028369,0.080266341,0.231790397,3.866422072,131729,34070,3.246995652,4.485848492,0.185807151,343,1846,0.111935747,0.259678554,10.61946903,9,8475,,,70.05169332,29,41398,46.91471844,100.6059168,,,,,,,,,,,,,73.49400644,49.22008956,105.5496527,,,,8.7,,,,,0,,,,,0.087149188,295,3385,0.057252061,0.117046314,0.06743567,0.035860493,0.099010847,0.012998523,0,0.026866966,0.010339734,0.000282831,0.020396637,0.787833082,3134,3978,0.745685514,0.82998065,,,,,,,,,,,,,0.724440895,0.691608686,0.757273103,0.422,,3978,0.349651965,0.494348035,77.97821834,,,76.21888452,79.73755216,,,,,,,,,,,,,77.7360592,75.93386266,79.53825574,,,,373.4541704,126,22596,304.3357356,442.5726052,,,,,,,,,,,,,382.1056236,310.6616831,453.5495641,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.111,,,0.095,0.129,0.169,,,0.145,0.195,0.099,,,0.083,0.116,,,,,,0.105,890,,,,0.01704591,145.0265989,8508,,,,,,,,,,,,,,,,,,,,,,,,,,0.345,,,0.326,0.362,0.069259567,333,4808,0.056153184,0.08236595,0.044615385,87,1950,0.029126023,0.060104746,0.000236379,2,8461,,,4230.5,0.975,84.825,87,,,,,,,,2.882366225,,,,,,,,,2.892347684,2.897584112,,,,,,,,,2.915388065,0.01877947,,,,,168.9287,,,,,0.726981546,44713,61505,0.665965268,0.787997825,73539,,,65108.02128,81969.97872,,,,,,,,,,,,,73604,66960.25532,80247.74468,,,,,,0.434336024,592,1363,,,,,,,,0.225512993,,73539,,,2.341920375,1,427,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,900,,,-888,-888,0.693871218,4472,6445,,,0.702,,,,,7.530769309,,,,,0.805555556,2668,3312,0.759237855,0.851873256,0.080025405,252,3149,0.041192537,0.118858273,0.874396135,2896,3312,0.845584262,0.903208009,8461,,,,,0.218532088,1849,8461,,,0.208604184,1765,8461,,,0.004609384,39,8461,,,0.004018438,34,8461,,,0.00531852,45,8461,,,0.000590947,5,8461,,,0.024937951,211,8461,,,0.95000591,8038,8461,,,0.000622433,5,8033,0,0.011030532,0.495686089,4194,8461,,,1,8440,8440,, -18,173,18173,IN,Warrick County,2024,1,7285.638796,898,177024,6492.212075,8079.065518,0,,,,2,,,,2,,,,2,,,,2,7692.969406,6825.082156,8560.856657,,,,,2,,0.127,,,0.104,0.154,3.300764176,,,2.548632457,4.141876568,5.112697009,,,4.093990985,6.184899616,0.073787292,324,4391,0.066054782,0.081519803,0,,,,,,,0.12345679,0.051816437,0.195097143,,,,0.073869347,0.065743235,0.081995459,,,,,,,0.154,,,0.116,0.197,0.332,,,0.264,0.408,8.6,0.068950995,0.075,,,0.215,,,0.169,0.267,0.790040377,50482,63898,,,0.174468348,,,0.138535388,0.214333658,0.193548387,6,31,0.104538512,0.296792565,289.9,187,64514,,,11.68684878,166,14204,9.908981026,13.46471652,,,,,,,,,,,,,12.00795229,10.09265342,13.92325115,,,,,,,0.063147546,3340,52892,0.05480712,0.071487972,0.001534551,99,64514,,,651.6565657,0.000398865,26,65185,,,2507.115385,0.000813071,53,65185,,,1229.90566,3131,,,,,,,,,3187,0.52,,,,,,0.33,0.48,,0.52,0.58,,,,,,0.61,0.47,,0.58,0.949230665,42012,44259,0.940885462,0.957575868,0.763889781,11893,15569,0.70544838,0.822331182,0.025773196,840,32592,,,0.079,1166,,0.051595745,0.106404255,,,,,,,,,,0.348785872,0,0.809029302,0.064309686,0.042309898,0.086309473,3.769634411,153017,40592,3.437466079,4.101802742,0.161757831,2422,14973,0.113942177,0.209573484,10.2303376,66,64514,,,74.39581104,235,315878,64.88383773,83.90778435,,,,,,,,,,,,,76.87560975,66.78558542,86.96563407,,,,9.1,,,,,0,,,,,0.082097135,2020,24605,0.066882656,0.097311613,0.069359445,0.053702551,0.08501634,0.009550904,0.004274428,0.01482738,0.008128429,0.003228844,0.013028014,0.823244785,25691,31207,0.798828641,0.847660929,,,,,,,,,,,,,0.78406719,0.758963503,0.809170878,0.293,,31207,0.262810378,0.323189623,77.06521503,,,76.38959032,77.74083973,,,,85.63515631,79.37173952,91.89857309,,,,,,,76.64752395,75.92999612,77.36505178,,,,369.6970936,898,177024,344.3909868,395.0032003,,,,,,,,,,,,,381.9515304,355.1531967,408.7498641,,,,46.11482592,30,65055,31.1134794,65.83178141,,,,,,,,,,,,,48.64066707,32.32137003,70.29930677,,,,4.984141368,22,4414,3.12353486,7.546049929,,,,,,,,,,,,,5.192878338,3.214473537,7.937866156,,,,,,,0.095,,,0.079,0.114,0.155,,,0.13,0.183,0.087,,,0.073,0.104,70,38,54304,,,0.075,4770,,,,0.068950995,4115.615956,59689,,,22.01477086,42,190781,15.86631045,29.7575748,,,,,,,,,,,,,23.46652014,16.83998001,31.83498433,,,,0.338,,,0.317,0.356,0.070710535,2680,37901,0.059987131,0.08143394,0.046013436,726,15778,0.031715564,0.060311309,0.001886937,123,65185,,,529.9593496,0.91,713.44,784,,,,,,,,3.520389771,,,,,,3.639296031,,3.427244813,3.520677223,3.603934555,,,,,,4.083193763,,3.23453246,3.619094089,0.057155345,,,,,1399.717,,,,,0.780029255,54393,69732,0.717882788,0.842175722,84567,,,73956.78723,95177.21277,36653,24485.51064,48820.48936,,,,79542,14795.2766,144288.7234,40141,34392.06383,45889.93617,90502,84848.38298,96155.61702,,,,,,0.288381331,2904,10070,,,62.21264945,,,,,0.224780352,,84567,,,3.550942366,13,3661,,,2.271318023,10,440273,1.089185277,4.177034713,,,,,,,,,,,,,,,,,,,16.37231654,51,315878,12.07165377,21.70731645,16.14547389,,,,,,,,,,,,,17.25787234,12.63493157,23.01958323,,,,12.34653885,39,315878,8.779596075,16.87812506,,,,,,,,,,,,,12.41041234,8.692100227,17.18124183,,,,12.26511733,54,440273,9.213933621,16.00331758,,,,,,,,,,,,,12.58047806,9.366992239,16.5410053,,,,2.328767123,,7300,,,17,0,0.72899472,33829,46405,,,0.762,,,,,41.23024033,,,,,0.822453138,20183,24540,0.803325549,0.841580726,0.077734133,1880,24185,0.060775044,0.094693221,0.901833741,22131,24540,0.882409939,0.921257542,65185,,,,,0.228564854,14899,65185,,,0.186346552,12147,65185,,,0.020096648,1310,65185,,,0.00305285,199,65185,,,0.028058602,1829,65185,,,0.000552274,36,65185,,,0.023118816,1507,65185,,,0.909258265,59270,65185,,,0.004520092,273,60397,0.001257508,0.007782677,0.504947457,32915,65185,,,0.267410561,17087,63898,, -18,175,18175,IN,Washington County,2024,1,11371.09826,568,78595,9925.876739,12816.31978,0,,,,2,,,,2,,,,2,,,,2,11618.5173,10127.95874,13109.07585,,,,,2,,0.184,,,0.154,0.216,4.204313103,,,3.365108788,5.172176601,5.482801631,,,4.459566707,6.669543764,0.076820009,172,2239,0.065789148,0.087850869,0,,,,,,,,,,,,,0.076007326,0.06489278,0.087121873,,,,,,,0.223,,,0.18,0.272,0.413,,,0.336,0.496,8.2,0.031299811,0.111,,,0.293,,,0.24,0.351,0.319530197,9005,28182,,,0.159442144,,,0.127114097,0.196370066,0.166666667,6,36,0.087328388,0.26203231,224.2,63,28102,,,27.31057452,164,6005,23.13068326,31.49046578,,,,,,,,,,,,,27.65545182,23.32944696,31.98145669,,,,,,,0.099044461,2270,22919,0.084746589,0.113342333,0.000249093,7,28102,,,4014.571429,0.000177154,5,28224,,,5644.8,0.000531463,15,28224,,,1881.6,1981,,,,,,,,,1987,0.42,,,,,,,,,0.42,0.44,,,,,,,,,0.44,0.874987244,17148,19598,0.852766695,0.897207792,0.549933619,3728,6779,0.476135429,0.623731809,0.026591517,368,13839,,,0.182,1120,,0.116468085,0.247531915,,,,,,,,,,0.237704918,0,0.60282203,0.162353347,0.115757337,0.208949357,4.05511811,112270,27686,3.335448391,4.77478783,0.234629862,1496,6376,0.164306874,0.30495285,7.828624297,22,28102,,,112.7596863,158,140121,95.17715548,130.3422171,,,,,,,,,,,,,115.1622976,97.09038605,133.2342092,,,,8.8,,,,,1,,,,,0.103512015,1120,10820,0.079331918,0.127692111,0.079170594,0.056590044,0.101751143,0.009242144,0.002965571,0.015518717,0.018022181,0.005846008,0.030198355,0.787515664,10055,12768,0.751164951,0.823866378,,,,,,,,,,,,,0.716989309,0.660968759,0.77300986,0.506,,12768,0.442180199,0.569819801,73.82090322,,,72.72995839,74.91184805,,,,,,,,,,,,,73.54154827,72.43317739,74.64991915,,,,538.1232536,568,78595,491.3860283,584.860479,,,,,,,,,,,,,547.9743075,500.1233348,595.8252801,,,,60.75334143,17,27982,35.39106022,97.2719849,,,,,,,,,,,,,64.08564858,37.33225193,102.6073315,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.13,,,0.111,0.151,0.185,,,0.16,0.212,0.111,,,0.094,0.13,101.4,24,23673,,,0.111,3120,,,,0.031299811,884.5952651,28262,,,39.12223922,33,84351,26.92994935,54.94216935,,,,,,,,,,,,,40.49874822,27.87747481,56.87529978,,,,0.356,,,0.338,0.372,0.111698612,1859,16643,0.093826272,0.129570953,0.066475298,440,6619,0.046219979,0.086730618,0.00042517,12,28224,,,2352,0.909415584,280.1,308,,,,,,,,3.13990046,,,,,,,,,3.125175927,3.360529249,,,,,,,,,3.335666055,0.023185437,,,,,-2093.775667,,,,,0.76130236,40802,53595,0.675788392,0.846816329,65342,,,58810.25532,71873.74468,,,,,,,,,,,,,60365,52943.21277,67786.78723,,,,,,0.468206264,1480,3161,,,,,,,,0.21548162,,65342,,,3.785488959,6,1585,,,,,,,,,,,,,,,,,,,,,,,,,,25.87785481,34,140121,17.70043353,36.53180975,24.26474262,,,,,,,,,,,,,26.78814936,18.32307433,37.81687405,,,,22.83740481,32,140121,15.62076799,32.23960154,,,,,,,,,,,,,23.62303541,16.15813874,33.34867754,,,,21.98161723,43,195618,15.90820539,29.60909416,,,,,,,,,,,,,22.20459952,16.00312225,30.014168,,,,,,3000,,,32,-888,0.564735985,12139,21495,,,0.67,,,,,31.95961796,,,,,0.811983091,8836,10882,0.787052798,0.836913385,0.090206923,946,10487,0.067051793,0.113362053,0.788917478,8585,10882,0.751536406,0.826298551,28224,,,,,0.223320578,6303,28224,,,0.186720522,5270,28224,,,0.006873583,194,28224,,,0.003259637,92,28224,,,0.003011621,85,28224,,,0.000212585,6,28224,,,0.015235261,430,28224,,,0.960990646,27123,28224,,,0.001356188,36,26545,0,0.005674782,0.49744898,14040,28224,,,0.765204741,21565,28182,, -18,177,18177,IN,Wayne County,2024,1,12675.05477,1432,181511,11680.16719,13669.94236,0,,,,2,,,,2,26302.76869,19371.75835,33233.77903,,,,,2,12299.81906,11259.85054,13339.78758,,,,,2,,0.184,,,0.154,0.215,4.180093142,,,3.362407898,5.090938013,5.772783296,,,4.802343185,6.841613533,0.090572328,489,5399,0.082916693,0.098227964,0,,,,,,,0.146245059,0.102703595,0.189786523,0.084033613,0.048785662,0.119281565,0.087670649,0.079574747,0.09576655,,,,0.111888112,0.060221038,0.163555186,0.222,,,0.178,0.265,0.378,,,0.313,0.445,6.3,0.166298699,0.131,,,0.281,,,0.235,0.331,0.76501435,50914,66553,,,0.163060207,,,0.13221629,0.198948892,0.176470588,6,34,0.093514624,0.274869215,472.5,314,66456,,,26.71049928,390,14601,24.05952342,29.36147515,,,,,,,31.3283208,20.2740374,46.24678158,27.6854928,17.91659119,40.86924883,26.70749341,23.75339896,29.66158786,,,,26.99662542,17.29724731,40.16883869,0.088784332,4642,52284,0.075677949,0.101890715,0.000601902,40,66456,,,1661.4,0.000663921,44,66273,,,1506.204546,0.005024671,333,66273,,,199.018018,4648,,,,,,9027,5046,,4586,0.43,,,,,,0.29,0.49,,0.43,0.44,,,,,,0.44,0.39,0.48,0.44,0.880438123,40111,45558,0.867070208,0.893806038,0.5628426,8625,15324,0.515308492,0.610376708,0.031131538,928,29809,,,0.238,3463,,0.179617021,0.296382979,0.225609756,0,0.629455181,0.231292517,0,0.963462913,0.32460733,0.105427866,0.543786794,0.253409091,0.122211037,0.384607145,0.20596418,0.171822389,0.240105971,4.357944169,100224,22998,3.957420705,4.758467633,0.282323506,4175,14788,0.235845685,0.328801326,12.79041772,85,66456,,,146.2577103,483,330239,133.2139961,159.3014246,,,,,,,300.0750188,221.2516306,397.8559401,,,,146.3547653,132.4238385,160.2856922,,,,9.1,,,,,0,,,,,0.121195553,3325,27435,0.099909358,0.142481748,0.103352985,0.084268231,0.122437738,0.010934937,0.005750263,0.016119611,0.010752688,0.006011181,0.015494196,0.793850079,23648,29789,0.771952794,0.815747363,,,,,,,0.763028515,0.622566638,0.903490392,0.669082126,0.473175175,0.864989076,0.815044618,0.79034141,0.839747826,0.209,,29789,0.185743056,0.232256945,72.61144081,,,71.91385498,73.30902664,,,,,,,63.49114468,59.82492584,67.15736352,,,,72.83698588,72.10760561,73.56636615,,,,596.9040757,1432,181511,564.1335602,629.6745911,,,,,,,997.3332129,795.1349672,1199.531459,,,,590.1283548,555.8993007,624.3574089,,,,70.59220723,46,65163,51.68236792,94.16011189,,,,,,,,,,,,,66.99205666,46.66242206,93.1697337,,,,7.51604033,41,5455,5.393640306,10.19635739,,,,,,,,,,,,,6.702974445,4.584829558,9.462599933,,,,,,,0.124,,,0.106,0.143,0.184,,,0.159,0.209,0.111,,,0.096,0.128,144.5,81,56058,,,0.131,8700,,,,0.166298699,11460.8074,68917,,,77.22670328,153,198118,64.9896218,89.46378475,,,,,,,156.5925462,87.64365939,258.2755911,,,,76.16102287,63.16824918,89.15379656,,,,0.368,,,0.35,0.384,0.102888664,3861,37526,0.087399302,0.118378026,0.054281099,840,15475,0.037600248,0.07096195,0.001705068,113,66273,,,586.4867257,0.952546689,561.05,589,,,0.062138728,215,3460,0.024362186,0.099915271,3.063769895,,,,,,,2.739886492,2.769121992,3.136314472,3.065100807,,,,,,,2.890624729,2.809186627,3.135529361,0.097051498,,,,,-1451.43398,,,,,0.74914534,38787,51775,0.680262707,0.818027974,51622,,,45932.6383,57311.3617,60286,24674.76596,95897.23404,48646,9024.212766,88267.78723,32750,16837.65957,48662.34043,49318,23314.93617,75321.06383,56399,53758.65957,59039.34043,,,,,,0.557337122,5492,9854,,,50.46503867,,,,,0.302913487,,51622,,,4.135435513,16,3869,,,7.546226025,35,463808,5.25622292,10.49497365,,,,,,,44.39117503,21.2872939,81.6369514,,,,5.881142118,3.768158726,8.750673291,,,,19.93648828,65,330239,15.21364085,25.6622123,19.68271464,,,,,,,,,,,,,20.00432521,14.98461231,26.16614991,,,,20.28833663,67,330239,15.72318222,25.76547035,,,,,,,93.77344336,52.4842844,154.6650342,,,,17.94916933,13.40529818,23.53794756,,,,12.2895681,57,463808,9.307998862,15.92256093,,,,,,,,,,,,,12.497427,9.305155272,16.43180849,,,,9.552238806,,6700,,,43,21,0.546637701,27679,50635,,,0.658,,,,,62.34237388,,,,,0.683898524,18574,27159,0.658304673,0.709492375,0.115770042,3073,26544,0.095028352,0.136511732,0.847601164,23020,27159,0.833470288,0.861732039,66273,,,,,0.22443529,14874,66273,,,0.196173404,13001,66273,,,0.047741916,3164,66273,,,0.004043879,268,66273,,,0.011860034,786,66273,,,0.000739366,49,66273,,,0.034433329,2282,66273,,,0.87074676,57707,66273,,,0.010754581,672,62485,0.006622038,0.014887124,0.51216936,33943,66273,,,0.376992773,25090,66553,, -18,179,18179,IN,Wells County,2024,1,8131.93478,403,77822,6881.908196,9381.961365,0,,,,2,,,,2,,,,2,,,,2,7737.996123,6494.197616,8981.79463,,,,,2,,0.153,,,0.129,0.18,3.619024085,,,2.87019359,4.423426626,5.16504412,,,4.213421157,6.159111125,0.072329689,172,2378,0.061918381,0.082740996,0,,,,,,,,,,0.107843137,0.047646414,0.168039861,0.07011236,0.059502648,0.080722072,,,,,,,0.19,,,0.152,0.231,0.377,,,0.306,0.449,7.8,0.126748788,0.082,,,0.259,,,0.21,0.309,0.479843861,13522,28180,,,0.167964717,,,0.135768409,0.204563292,0.047619048,1,21,0.001947624,0.173567494,191.5,54,28197,,,19.93865031,117,5868,16.32572572,23.5515749,,,,,,,,,,43.29004329,20.75925843,79.61193092,19.26959075,15.58377253,22.95540897,,,,,,,0.079561404,1814,22800,0.06764651,0.091476297,0.000461042,13,28197,,,2169,0.000282336,8,28335,,,3541.875,0.000705841,20,28335,,,1416.75,3234,,,,,,,,,3260,0.48,,,,,,,,,0.48,0.49,,,,,,,,,0.49,0.932989419,17724,18997,0.921988349,0.94399049,0.55585667,3692,6642,0.487163603,0.624549736,0.023061381,331,14353,,,0.121,827,,0.080489362,0.161510638,,,,,,,,,,0.109289618,0.001190983,0.217388253,0.064174661,0.034339925,0.094009397,3.586023628,118077,32927,3.17880106,3.993246196,0.124493341,860,6908,0.074642239,0.174344443,16.31379225,46,28197,,,80.95153559,114,140825,66.0911959,95.81187529,,,,,,,,,,,,,80.16577678,64.90445519,95.42709836,,,,8.9,,,,,0,,,,,0.092176259,1025,11120,0.070461203,0.113891315,0.078048781,0.05632966,0.099767901,0.006294964,0,0.01348357,0.011690648,0.005567756,0.017813539,0.8528747,12075,14158,0.823580984,0.882168416,,,,,,,,,,,,,0.811546739,0.764208241,0.858885237,0.32,,14158,0.278639699,0.361360301,76.7018016,,,75.66730541,77.73629779,,,,,,,,,,,,,76.87286201,75.83891852,77.90680551,,,,391.4032932,403,77822,351.0364513,431.7701351,,,,,,,,,,,,,385.9367895,345.095632,426.777947,,,,56.2187903,17,30239,32.74951708,90.01172928,,,,,,,,,,,,,55.2710122,30.93476596,91.16112927,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.11,,,0.094,0.128,0.168,,,0.145,0.192,0.097,,,0.082,0.112,60.2,14,23252,,,0.082,2310,,,,0.126748788,3502.829506,27636,,,23.63088557,20,84635,14.43435882,36.49598618,,,,,,,,,,,,,21.43541635,12.48691995,34.32017806,,,,0.34,,,0.323,0.357,0.091957645,1459,15866,0.076468284,0.107447007,0.052624347,383,7278,0.035943496,0.069305198,0.000599965,17,28335,,,1666.764706,0.950666667,385.02,405,,,,,,,,3.213441576,,,,,,,,3.03656369,3.222767648,3.310209039,,,,,,,,2.946047675,3.346985844,0.027924097,,,,,1850.932807,,,,,0.733514947,40658,55429,0.645678368,0.821351527,68879,,,59306.57447,78451.42553,,,,,,,,,,63333,45414.19149,81251.80851,68142,63616.7234,72667.2766,,,,,,0.32577239,1666,5114,,,64.80741631,,,,,0.229895904,,68879,,,4.029936672,7,1737,,,,,,,,,,,,,,,,,,,,,,,,,,17.74426553,24,140825,11.12023674,26.86503125,17.04242855,,,,,,,,,,,,,17.80756004,11.02316033,27.22074713,,,,10.65151784,15,140825,5.961573679,17.56805885,,,,,,,,,,,,,9.831651869,5.23494055,16.81242412,,,,16.26528683,32,196738,11.12544415,22.96173189,,,,,,,,,,,,,15.65790184,10.4863426,22.48735891,,,,15.3125,,3200,,,40,9,0.67289272,14050,20880,,,0.743,,,,,47.12420214,,,,,0.772926939,8622,11155,0.745104414,0.800749463,0.070032125,763,10895,0.049844387,0.090219862,0.825100852,9204,11155,0.797307595,0.852894108,28335,,,,,0.245597318,6959,28335,,,0.18842421,5339,28335,,,0.009422975,267,28335,,,0.0031057,88,28335,,,0.007481913,212,28335,,,0.000529381,15,28335,,,0.036633139,1038,28335,,,0.930792306,26374,28335,,,0.005791067,153,26420,0.000354978,0.011227157,0.501041115,14197,28335,,,0.632860185,17834,28180,, -18,181,18181,IN,White County,2024,1,9660.629547,453,66797,8246.154302,11075.10479,0,,,,2,,,,2,,,,2,,,,2,10431.18171,8833.204847,12029.15858,,,,,2,,0.164,,,0.138,0.192,3.726203342,,,2.93083896,4.608247087,5.103381839,,,4.118254179,6.208359584,0.077101719,166,2153,0.065833818,0.088369619,0,,,,,,,,,,0.087765957,0.059165147,0.116366768,0.074180564,0.061863293,0.086497834,,,,,,,0.192,,,0.153,0.235,0.384,,,0.308,0.468,8.8,0.003984322,0.096,,,0.266,,,0.216,0.317,0.441793584,10907,24688,,,0.161516405,,,0.128134155,0.19979443,0.034482759,1,29,0.00130358,0.133776685,361,89,24651,,,30.99091986,157,5066,26.14316431,35.83867541,,,,,,,,,,55.85106383,40.25253422,75.49441327,26.72393224,21.77459072,31.67327375,,,,,,,0.113131522,2190,19358,0.09764216,0.128620884,0.000365097,9,24651,,,2739,0.000365883,9,24598,,,2733.111111,0.000487845,12,24598,,,2049.833333,1194,,,,,,,,,1161,0.5,,,,,,,,,0.5,0.53,,,,,,,,0.29,0.54,0.90336629,15350,16992,0.889413301,0.917319279,0.606417315,3194,5267,0.537694642,0.675139989,0.024964602,335,13419,,,0.129,716,,0.077765957,0.180234043,,,,,,,,,,0.114594595,0.038410353,0.190778836,0.079000223,0.036124876,0.12187557,3.741613392,113543,30346,3.360238998,4.122987787,0.167984537,956,5691,0.114396433,0.221572641,10.54723946,26,24651,,,104.7569556,127,121233,86.53742939,122.9764818,,,,,,,,,,,,,115.2319973,94.9496452,135.5143495,,,,9,,,,,0,,,,,0.101123596,990,9790,0.070141079,0.132106112,0.077706875,0.052212411,0.103201339,0.013176711,0.003369286,0.022984136,0.01072523,8.1420307E-6,0.021442318,0.770488841,8527,11067,0.738402516,0.802575166,,,,,,,,,,0.537206932,0.418234964,0.6561789,0.766832918,0.742970114,0.790695721,0.305,,11067,0.264454333,0.345545667,75.44028788,,,74.31141259,76.56916317,,,,,,,,,,,,,74.77407111,73.55819862,75.98994361,,,,477.0102477,453,66797,429.5495776,524.4709178,,,,,,,,,,,,,503.4506628,451.8794873,555.0218384,,,,56.56108597,14,24752,30.92247203,94.89989141,,,,,,,,,,,,,65.60355269,34.93112884,112.1840731,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.115,,,0.098,0.133,0.169,,,0.145,0.193,0.1,,,0.084,0.116,96.8,20,20668,,,0.096,2350,,,,0.003984322,98.18565618,24643,,,27.42806989,20,72918,16.75377765,42.36042939,,,,,,,,,,,,,30.95543965,18.90838674,47.80816589,,,,0.346,,,0.329,0.362,0.129682159,1783,13749,0.110618329,0.148745989,0.074500508,440,5906,0.053053699,0.095947317,0.00032523,8,24598,,,3074.75,0.908783784,302.625,333,,,,,,,,3.10132074,,,,,,,,2.717646978,3.190483718,3.217663612,,,,,,,,2.885288511,3.310447059,0.115195061,,,,,-324.186975,,,,,0.803044203,42893,53413,0.723041745,0.88304666,66167,,,59643.59575,72690.40426,,,,,,,,,,50875,26520.95745,75229.04255,66233,61953.17021,70512.82979,,,,,,0.540478905,2370,4385,,,84.61521432,,,,,0.244079375,,66167,,,2.708192282,4,1477,,,,,,,,,,,,,,,,,,,,,,,,,,27.7059243,31,121233,18.55509233,39.79032887,25.57059547,,,,,,,,,,,,,30.3903417,20.19416136,43.92250523,,,,16.49715836,20,121233,10.07689291,25.47852309,,,,,,,,,,,,,18.58580602,11.35269316,28.70427,,,,23.00545642,39,169525,16.35912844,31.44921626,,,,,,,,,,,,,24.51305154,17.25945049,33.78801255,,,,7.2,,2500,,,12,6,0.626951151,11166,17810,,,0.584,,,,,41.03220936,,,,,0.78496805,7739,9859,0.757584585,0.812351514,0.094718237,911,9618,0.067311083,0.12212539,0.873415154,8611,9859,0.847277007,0.899553301,24598,,,,,0.22989674,5655,24598,,,0.215667941,5305,24598,,,0.006260672,154,24598,,,0.006829824,168,24598,,,0.006585901,162,24598,,,0.000528498,13,24598,,,0.097203025,2391,24598,,,0.876534678,21561,24598,,,0.016791125,389,23167,0.009768686,0.023813565,0.496503781,12213,24598,,,0.613901491,15156,24688,, -18,183,18183,IN,Whitley County,2024,1,7374.93613,512,95154,6321.114556,8428.757704,0,,,,2,,,,2,,,,2,,,,2,7476.541274,6384.485614,8568.596934,,,,,2,,0.149,,,0.124,0.179,3.727013393,,,2.921857568,4.583426799,5.02029416,,,4.022003194,6.05915948,0.070505722,191,2709,0.060865498,0.080145945,0,,,,,,,,,,0.166666667,0.072366123,0.260967211,0.067515432,0.057855793,0.077175072,,,,,,,0.187,,,0.146,0.232,0.367,,,0.295,0.444,8.9,0.012148595,0.089,,,0.254,,,0.208,0.305,0.540756339,18489,34191,,,0.168969157,,,0.136276774,0.207077031,0.08,2,25,0.014970891,0.19576483,229.5,79,34430,,,16.52652943,114,6898,13.49274089,19.56031797,,,,,,,,,,,,,17.01732673,13.83715139,20.19750208,,,,,,,0.073055915,2033,27828,0.062332511,0.083779319,0.000580889,20,34430,,,1721.5,0.000462067,16,34627,,,2164.1875,0.001155168,40,34627,,,865.675,2688,,,,,,,,,2714,0.45,,,,,,,,,0.45,0.51,,,,,,,,,0.51,0.918359622,21834,23775,0.898918303,0.93780094,0.609663142,4959,8134,0.539738176,0.679588109,0.024165128,432,17877,,,0.108,836,,0.079404255,0.136595745,,,,,,,,,,0.118055556,0,0.334980294,0.142649622,0.087754109,0.197545135,3.375108389,124555,36904,2.943111271,3.807105508,0.222236276,1757,7906,0.165008247,0.279464306,13.0699971,45,34430,,,66.23603475,113,170602,54.0233492,78.44872029,,,,,,,,,,,,,67.733156,55.07527406,80.39103793,,,,8.5,,,,,0,,,,,0.063314038,875,13820,0.047762761,0.078865314,0.057391936,0.040310667,0.074473205,0.004992764,0,0.010241655,0.003183792,0,0.00640159,0.844573048,14302,16934,0.819294639,0.869851458,,,,,,,,,,,,,0.813501229,0.790253687,0.836748772,0.347,,16934,0.303011607,0.390988393,77.91638378,,,76.96488462,78.86788295,,,,,,,,,,,,,77.66239908,76.69613431,78.62866385,,,,379.8468762,512,95154,345.021313,414.6724394,,,,,,,,,,,,,386.3466928,350.5432933,422.1500922,,,,37.99281059,13,34217,20.22957153,64.96886319,,,,,,,,,,,,,41.1587779,21.91531579,70.38276371,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.109,,,0.092,0.128,0.164,,,0.14,0.189,0.094,,,0.08,0.111,51.8,15,28937,,,0.089,3020,,,,0.012148595,404.451016,33292,,,14.59541509,15,102772,8.168943032,24.0729176,,,,,,,,,,,,,14.3395608,7.839571325,24.05934645,,,,0.347,,,0.328,0.364,0.082429393,1649,20005,0.06932301,0.095535776,0.050837175,419,8242,0.035347814,0.066326537,0.000519826,18,34627,,,1923.722222,0.910357918,419.675,461,,,,,,,,3.120370057,,,,,,,,,3.128950162,3.181707174,,,,,,,,,3.190030414,0.019016171,,,,,1208.780333,,,,,0.657261069,41462,63083,0.598837866,0.715684272,72448,,,62839.82979,82056.17021,21875,4342.234043,39407.76596,76591,64425.89362,88756.10638,,,,55441,46737.17021,64144.82979,74722,68924.21277,80519.78723,,,,,,0.271853147,1555,5720,,,,,,,,0.245514024,,72448,,,4.651162791,10,2150,,,,,,,,,,,,,,,,,,,,,,,,,,9.328636709,17,170602,5.332121905,15.14912158,9.964713192,,,,,,,,,,,,,9.006940164,4.924178001,15.11211514,,,,7.620074794,13,170602,4.0573689,13.03055997,,,,,,,,,,,,,7.389071563,3.818041101,12.907221,,,,13.4761241,32,237457,9.217658907,19.02426632,,,,,,,,,,,,,14.13496239,9.66830381,19.95434941,,,,11.08108108,,3700,,,36,5,0.676271186,17556,25960,,,0.768,,,,,38.40852557,,,,,0.812382468,11232,13826,0.792555263,0.832209673,0.073776588,992,13446,0.052477377,0.095075798,0.879719369,12163,13826,0.861801023,0.897637715,34627,,,,,0.227337049,7872,34627,,,0.194270367,6727,34627,,,0.006035752,209,34627,,,0.004043088,140,34627,,,0.005371531,186,34627,,,0.00037543,13,34627,,,0.025962399,899,34627,,,0.945100644,32726,34627,,,0.000775699,25,32229,0,0.004235457,0.495567043,17160,34627,,,0.690854318,23621,34191,, -19,000,19000,IA,Iowa,2024,,6934.547977,41093,8798247,6831.183774,7037.91218,0,15388.68354,12660.72538,18116.64169,,3482.175707,3043.068028,3921.283386,,13108.62508,12428.4123,13788.83786,,5042.645286,4701.228943,5384.061628,,6811.917111,6700.068192,6923.766031,,16381.86201,12616.02991,20919.27206,,,0.125,,,0.117,0.134,2.913081402,,,2.724340294,3.10182251,4.496293094,,,4.261994225,4.730591963,0.06846827,17981,262618,0.067502358,0.069434181,0,0.084615385,0.067700623,0.101530146,0.081734363,0.075740691,0.087728036,0.116727491,0.112082707,0.121372274,0.068632319,0.065569853,0.071694785,0.062623814,0.061569636,0.063677992,0.092086331,0.076885458,0.107287204,0.097162511,0.088651319,0.105673703,0.155,,,0.145,0.165,0.369,,,0.355,0.383,8.8,0.056734884,0.075,,,0.238,,,0.227,0.25,0.793935435,2532947,3190369,,,0.231184397,,,0.218838475,0.244009257,0.262969589,441,1677,0.250859884,0.275202667,489.2,15620,3193079,,,14.4303495,10627,736434,14.15598521,14.70471378,31.36025088,24.86672857,39.03054683,5.057110472,4.136810269,5.977410674,37.6904571,35.65407378,39.72684042,34.59945154,33.20703895,35.99186414,10.5489001,10.28505824,10.81274197,77.69230769,62.54018753,92.84442786,20.80992217,18.98585207,22.63399227,0.057699043,148100,2566767,0.054124575,0.061273511,0.000721874,2305,3193079,,,1385.283731,0.000708636,2268,3200517,,,1411.162698,0.001986554,6358,3200517,,,503.3842403,2330,,,,,5669,1371,3859,2532,2304,0.53,,,,,0.35,0.39,0.4,0.3,0.53,0.54,,,,,0.46,0.52,0.4,0.32,0.55,0.930252975,1982557,2131202,0.928960308,0.931545642,0.700589037,554608,791631,0.693190809,0.707987265,0.0273585,46972,1716907,,,0.123,88115,,0.113468085,0.132531915,0.291697831,0.211747586,0.371648076,0.125936229,0.103260087,0.148612372,0.411670664,0.378050863,0.445290464,0.201575533,0.186995525,0.21615554,0.096081754,0.092241904,0.099921603,4.183246073,131036,31324,4.125407143,4.241085004,0.203476716,148175,728216,0.196354221,0.21059921,14.45939797,4617,3193079,,,70.94541484,11219,15813566,69.63260045,72.25822924,87.64059011,63.1636286,118.4646178,25.02711271,20.24001633,29.81420908,91.99901651,84.41297819,99.58505483,35.06412651,31.40103503,38.72721799,75.08821786,73.62263138,76.55380434,62.26351837,33.15270124,106.4725127,7.4,,,,,0.141414141,,,,,0.114793475,146240,1273940,0.112233703,0.117353248,0.094337603,0.091981547,0.09669366,0.016770806,0.01567783,0.017863781,0.010020095,0.009338792,0.010701398,0.778314061,1244258,1598658,0.775293951,0.781334171,0.652570879,0.606982797,0.698158962,0.637709196,0.621120617,0.654297774,0.696236407,0.677477507,0.714995308,0.70693446,0.689746507,0.724122412,0.792455317,0.788539106,0.796371528,0.212,,1598658,0.208847616,0.215152385,78.12172786,,,78.02762908,78.21582663,75.14464152,71.61982859,78.66945446,84.46314432,83.39472307,85.53156558,71.35913978,70.76876054,71.94951902,85.48373607,84.19916957,86.76830256,78.17641686,78.07703896,78.27579475,70.44377904,66.00316285,74.88439524,360.048759,41093,8798247,356.4202438,363.6772743,640.9709807,546.767466,735.1744954,187.270657,167.2289897,207.3123243,661.0920157,629.9175705,692.2664609,250.142569,233.4983048,266.7868333,358.6374013,354.7877538,362.4870489,772.7930719,582.1735016,1005.896407,45.40676564,1489,3279247,43.10039399,47.71313729,,,,29.3759248,19.35891955,42.74042829,133.1341914,116.219768,150.0486148,40.01308457,33.31272947,46.71343967,40.11072148,37.63697119,42.58447177,239.7362901,137.0300038,389.3167156,4.87395464,1295,265698,4.608492452,5.139416829,,,,2.68751527,1.684251511,4.068930416,10.93680955,9.413408934,12.46021016,5.464910556,4.556396336,6.373424777,4.154362805,3.876865406,4.431860204,,,,11.01866427,8.151668484,14.56725851,0.086781767,,,0.079516274,0.094642859,0.144788795,,,0.13471429,0.155481335,0.085,,,0.079,0.092,114.2,3055,2676089,,,0.075,238290,,,,0.056734884,172834.5983,3046355,,,13.23631608,1259,9511710,12.50515959,13.96747256,,,,,,,29.19585156,23.76440227,34.62730085,6.45551745,4.611916311,8.790582524,13.44175604,12.64044849,14.24306359,,,,0.316320907,,,0.304542352,0.328339938,0.068624364,126193,1838895,0.065049896,0.072198832,0.031333935,23927,763613,0.026567977,0.036099892,0.001337596,4281,3200517,,,747.6096706,0.901643673,32611.55,36169,,,0.056518297,10280,181888,0.0515828,0.061453795,3.053921775,,,,,,3.02208847,2.269024261,2.60507194,3.198356744,3.059724999,,,,,,3.168745379,2.066555709,2.553361598,3.229682534,0.181993922,,,,,296.8588,,,,,0.787106472,47128,59875,0.779790512,0.794422431,69708,,,68666.6383,70749.3617,45000,39276.08511,50723.91489,79307,72659.68085,85954.31915,40592,38359.14894,42824.85106,58899,56967.59575,60830.40426,72800,72272.17021,73327.82979,,,,,,0.400704743,201847,503730,,,62.669035,,,,,0.263148546,,,,,7.978723404,,,,,2.799907467,618,22072158,2.579155027,3.020659907,,,,,,,24.37846971,21.01655395,27.74038547,2.930186118,2.093367922,3.99008183,1.878993259,1.683253224,2.074733294,,,,16.5325461,2596,15813566,15.87921163,17.18588058,16.4162846,33.61382119,18.81340055,55.44088622,8.021236799,5.45004124,11.38550536,9.167305353,6.924883945,11.90450853,7.396381024,5.776634944,9.329528244,17.72015963,16.98228361,18.45803566,,,,10.01671603,1584,15813566,9.523424286,10.51000777,,,,4.290362178,2.542740536,6.780621928,26.54130919,22.46671266,30.61590571,3.28726186,2.262799808,4.616537843,10.03012986,9.494482667,10.56577704,,,,11.29024176,2492,22072158,10.84695446,11.73352907,16.56426937,8.268823586,29.63805342,5.799424275,3.992056823,8.144547886,12.43060584,10.02995083,14.83126086,10.40216072,8.691218044,12.11310339,11.59774088,11.11144146,12.0840403,,,,27.01142514,,332600,,,2016,6968,0.729151611,1700130,2331655,,,,,,,,135.2614361,,,,,0.715181853,922684,1290139,0.711267908,0.719095797,0.101941539,128040,1256014,0.099411086,0.104471991,0.862604727,1112880,1290139,0.859797646,0.865411808,3200517,,,,,0.22636624,724489,3200517,,,0.183104792,586030,3200517,,,0.042000714,134424,3200517,,,0.005931542,18984,3200517,,,0.027698338,88649,3200517,,,0.002306502,7382,3200517,,,0.069302866,221805,3200517,,,0.837301911,2679799,3200517,,,0.016567641,49687,2999039,0.015778904,0.017356377,0.497975796,1593780,3200517,,,0.368464588,1175538,3190369,, -19,001,19001,IA,Adair County,2024,1,8314.824735,127,19405,5856.418302,10773.23117,0,,,,2,,,,2,,,,2,,,,2,8682.772439,6063.168406,11302.37647,,,,,2,,0.136,,,0.114,0.161,3.154332915,,,2.462336676,3.97082437,4.389471096,,,3.480528248,5.448625626,0.059773829,37,619,0.04109789,0.078449768,0,,,,,,,,,,,,,0.057724958,0.038889808,0.076560107,,,,,,,0.185,,,0.145,0.229,0.378,,,0.301,0.463,8.8,0.023050788,0.086,,,0.254,,,0.207,0.306,0.341648879,2561,7496,,,0.190075661,,,0.153033266,0.231536021,0.15,3,20,0.050642257,0.283837277,265.2,20,7541,,,19.48503827,28,1437,12.94766643,28.16130546,,,,,,,,,,,,,19.72685888,12.88623916,28.90441888,,,,,,,0.055555556,325,5850,0.046023641,0.06508747,0.000530434,4,7541,,,1885.25,0.00053376,4,7494,,,1873.5,0.00013344,1,7494,,,7494,1620,,,,,,,,,1620,0.52,,,,,,,,,0.52,0.52,,,,,,,,,0.52,0.95704825,5058,5285,0.941813992,0.972282508,0.615062762,1029,1673,0.520037416,0.710088107,0.020943613,91,4345,,,0.114,190,,0.068723404,0.159276596,,,,,,,,,,,,,0.121786198,0.063851355,0.17972104,4.091658013,118208,28890,3.415809458,4.767506569,0.161622276,267,1652,0.097188246,0.226056306,11.93475666,9,7541,,,69.69806797,25,35869,45.10491468,102.8880975,,,,,,,,,,,,,73.14646849,47.33653768,107.9786169,,,,6.9,,,,,0,,,,,0.093312597,300,3215,0.067686602,0.118938593,0.087570622,0.060267428,0.114873815,0.004354588,0,0.013706084,0.00466563,0,0.012824548,0.818639799,2925,3573,0.78783285,0.849446747,,,,,,,,,,,,,0.78910029,0.743137829,0.835062751,0.328,,3573,0.279528198,0.376471802,76.35477476,,,74.35647466,78.35307486,,,,,,,,,,,,,76.04188935,73.96214117,78.12163753,,,,430.1209872,127,19405,349.5692927,510.6726817,,,,,,,,,,,,,441.3009205,357.7754143,524.8264268,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.101,,,0.086,0.118,0.158,,,0.135,0.182,0.088,,,0.074,0.103,79.2,5,6313,,,0.086,640,,,,0.023050788,177.0761553,7682,,,,,,,,,,,,,,,,,,,,,,,,,,0.309,,,0.292,0.326,0.064167268,267,4161,0.052252374,0.076082161,0.035734543,63,1763,0.02262816,0.048840926,0.000800641,6,7494,,,1249,,,,,,,,,,,2.994196358,,,,,,,,,2.943233522,2.856443898,,,,,,,,,2.840407375,0.044007374,,,,,-2664.9785,,,,,0.841179753,43722,51977,0.754989197,0.927370309,66997,,,58270.53192,75723.46809,,,,,,,,,,62639,22037.80851,103240.1915,63767,57724.95745,69809.04255,,,,,,0.423684211,322,760,,,,,,,,0.242100393,,66997,,,15.83710407,7,442,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,35.71428571,,700,,,7,18,0.763619744,4177,5470,,,0.7,,,,,7.294023031,,,,,0.706575682,2278,3224,0.678423089,0.734728276,0.088837517,269,3028,0.056340707,0.121334326,0.787841191,2540,3224,0.747859931,0.827822451,7494,,,,,0.224446224,1682,7494,,,0.228849747,1715,7494,,,0.008139845,61,7494,,,0.004270083,32,7494,,,0.005471044,41,7494,,,0.00040032,3,7494,,,0.030290899,227,7494,,,0.943154524,7068,7494,,,0,0,7023,0,0.01017932,0.497864959,3731,7494,,,1,7496,7496,, -19,003,19003,IA,Adams County,2024,1,6403.495356,54,9648,3583.987741,10561.59178,1,,,,2,,,,2,,,,2,,,,2,6700.663189,3750.310321,11051.72493,1,,,,2,,0.129,,,0.106,0.154,3.134892112,,,2.401352329,3.939139238,4.405316961,,,3.445630971,5.458556349,0.066420664,18,271,0.036772443,0.096068886,1,,,,,,,,,,,,,0.065384615,0.035336057,0.095433174,,,,,,,0.177,,,0.14,0.222,0.374,,,0.297,0.457,9,0.020076701,0.077,,,0.243,,,0.196,0.298,0.548326134,2031,3704,,,0.181194073,,,0.145339271,0.222700962,0.2,1,5,0.015594715,0.47750127,247.2,9,3641,,,25.93192869,16,617,14.82233785,42.11182755,,,,,,,,,,,,,24.13793103,13.19643151,40.49934676,,,,,,,0.061527325,170,2763,0.050803921,0.07225073,0.0005493,2,3641,,,1820.5,0.000830795,3,3611,,,1203.666667,0.000276932,1,3611,,,3611,2217,,,,,,,,,2116,0.45,,,,,,,,,0.46,0.48,,,,,,,,,0.49,0.940242058,2486,2644,0.914771722,0.965712393,0.709302326,549,774,0.572994079,0.845610573,0.019709057,42,2131,,,0.151,117,,0.093808511,0.208191489,,,,,,,,,,,,,0.054469274,0.008998544,0.099940003,3.906585245,118350,30295,2.978068586,4.835101904,0.229086229,178,777,0.131798257,0.326374201,13.73249107,5,3641,,,60.56601696,11,18162,30.23433745,108.3693344,,,,,,,,,,,,,63.05893144,31.47879137,112.829847,,,,7,,,,,0,,,,,0.089230769,145,1625,0.054511679,0.12394986,0.07125,0.032065366,0.110434635,0.008615385,0,0.023647914,0.011692308,0,0.027259578,0.761271676,1317,1730,0.712431082,0.810112271,,,,,,,,,,,,,0.798747063,0.742626151,0.854867976,0.246,,1730,0.177471233,0.314528767,78.39513299,,,75.43513905,81.35512692,,,,,,,,,,,,,78.00454019,74.98669523,81.02238514,,,,348.249037,54,9648,252.0295548,469.0891674,,,,,,,,,,,,,360.8284655,261.1333496,486.033575,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.097,,,0.083,0.115,0.156,,,0.133,0.181,0.084,,,0.07,0.099,0,0,3081,,,0.077,280,,,,0.020076701,80.88902616,4029,,,,,,,,,,,,,,,,,,,,,,,,,,0.321,,,0.303,0.337,0.070814365,140,1977,0.057707982,0.083920748,0.037851038,31,819,0.023553166,0.05214891,0.000830795,3,3611,,,1203.666667,,,,,,,,,,,3.228045517,,,,,,,,,3.220290648,3.297712077,,,,,,,,,3.337297205,,,,,,2120.465,,,,,0.77137512,41645,53988,0.61287263,0.929877611,58973,,,50891.12766,67054.87234,,,,,,,,,,,,,62159,50302.48936,74015.51064,,,,,,0.3387471,146,431,,,,,,,,0.257999424,,58973,,,9.661835749,2,207,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,400,,,-888,5,0.751304348,2160,2875,,,0.67,,,,,1.409537842,,,,,0.808929744,1232,1523,0.782082189,0.835777299,0.089583333,129,1440,0.048906461,0.130260206,0.837163493,1275,1523,0.793949484,0.880377502,3611,,,,,0.218775962,790,3611,,,0.242869011,877,3611,,,0.007754085,28,3611,,,0.005815564,21,3611,,,0.007754085,28,3611,,,0.000553863,2,3611,,,0.022431459,81,3611,,,0.943782886,3408,3611,,,0.001148435,4,3483,0,0.014555456,0.494876765,1787,3611,,,1,3704,3704,, -19,005,19005,IA,Allamakee County,2024,1,8236.894117,202,37127,6318.33041,10155.45782,0,,,,2,,,,2,,,,2,,,,2,8618.693771,6502.71786,10734.66968,,,,,2,,0.14,,,0.117,0.164,3.220702897,,,2.563855964,4.01372435,4.371443538,,,3.546371711,5.337452393,0.052316891,70,1338,0.040385789,0.064247993,0,,,,,,,,,,0.086124402,0.048088863,0.124159941,0.04473439,0.032365263,0.057103516,,,,,,,0.182,,,0.145,0.221,0.361,,,0.293,0.435,9,0.034786027,0.073,,,0.263,,,0.218,0.314,0.652656283,9177,14061,,,0.187617753,,,0.153247149,0.227203085,0.2,2,10,0.05050879,0.392851974,244.1,34,13926,,,19.96233522,53,2655,14.95315892,26.11122596,,,,,,,,,,88.05031447,58.50879452,127.25722,10.31852849,6.541061928,15.48285908,,,,,,,0.07596607,806,10610,0.064051176,0.087880963,0.000574465,8,13926,,,1740.75,0.000358166,5,13960,,,2792,0.000286533,4,13960,,,3490,2022,,,,,,,,,2049,0.54,,,,,,,,,0.54,0.53,,,,,,,,,0.53,0.916949327,8921,9729,0.900385242,0.933513412,0.620724687,1833,2953,0.532639014,0.70881036,0.037738496,269,7128,,,0.15,495,,0.092808511,0.207191489,,,,,,,0.432692308,0.156252107,0.709132508,0.49072165,0.380737908,0.600705391,0.075891146,0.037551632,0.11423066,3.585567967,108173,30169,3.032252903,4.138883031,0.101235312,336,3319,0.063473852,0.138996771,14.36162574,20,13926,,,78.29377565,54,68971,58.81669393,102.1563938,,,,,,,,,,,,,82.38696024,61.34250333,108.3236376,,,,8.1,,,,,0,,,,,0.108494533,645,5945,0.08062859,0.136360476,0.087044877,0.061073407,0.113016347,0.014129521,0.004158084,0.024100957,0.021026072,0.01022227,0.031829875,0.75717668,5117,6758,0.719203791,0.795149568,,,,,,,,,,,,,0.751591006,0.712351857,0.790830154,0.297,,6758,0.238193029,0.355806971,76.92016163,,,75.43241503,78.40790823,,,,,,,,,,,,,76.56048727,74.96291234,78.1580622,,,,373.8123294,202,37127,316.0436046,431.5810542,,,,,,,,,,,,,390.4526685,327.6552173,453.2501196,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.102,,,0.087,0.118,0.154,,,0.132,0.178,0.088,,,0.075,0.103,,,,,,0.073,1030,,,,0.034786027,498.4837631,14330,,,,,,,,,,,,,,,,,,,,,,,,,,0.313,,,0.296,0.327,0.090487239,663,7327,0.074997877,0.105976601,0.044567434,153,3433,0.030269561,0.058865306,0.000716332,10,13960,,,1396,0.95923913,176.5,184,,,,,,,,3.044432139,,,,,,,,,3.362185636,2.970878247,,,,,,,,2.362352817,3.34048059,0.38937246,,,,,-3920.022333,,,,,0.753452403,40920,54310,0.682855081,0.824049725,60743,,,54809.38298,66676.61702,,,,,,,,,,44909,13172.48936,76645.51064,64993,61712.82979,68273.17021,,,,,,0.49500238,1040,2101,,,69.46234527,,,,,0.271076503,,60743,,,9.384775808,9,959,,,,,,,,,,,,,,,,,,,,,,,,,,23.99652295,15,68971,12.77713783,41.03478506,21.74827101,,,,,,,,,,,,,27.2788045,14.52481452,46.64758648,,,,15.94873208,11,68971,7.961549589,28.53668718,,,,,,,,,,,,,16.15430593,7.746617605,29.70834377,,,,13.43794255,13,96741,7.155138453,22.97929101,,,,,,,,,,,,,14.89066813,7.928653644,25.46349601,,,,,,1400,,,-888,24,0.722687439,7422,10270,,,0.584,,,,,5.733802317,,,,,0.800335008,4778,5970,0.786853229,0.813816787,0.095904795,548,5714,0.069091828,0.122717763,0.826633166,4935,5970,0.787746016,0.865520315,13960,,,,,0.239111748,3338,13960,,,0.236103152,3296,13960,,,0.016189112,226,13960,,,0.007378224,103,13960,,,0.005873926,82,13960,,,0.003080229,43,13960,,,0.077793696,1086,13960,,,0.889971347,12424,13960,,,0.032783127,429,13086,0.021033963,0.044532291,0.486174785,6787,13960,,,1,14061,14061,, -19,007,19007,IA,Appanoose County,2024,1,8438.976382,232,33316,6517.977672,10359.97509,0,,,,2,,,,2,,,,2,,,,2,8846.42119,6813.284276,10879.5581,,,,,2,,0.162,,,0.133,0.192,3.578702479,,,2.786427127,4.414946993,5.194123069,,,4.185855249,6.284006046,0.076840982,72,937,0.059787189,0.093894775,0,,,,,,,,,,,,,0.07606264,0.058684861,0.093440419,,,,,,,0.211,,,0.165,0.259,0.389,,,0.312,0.471,7.7,0.054893049,0.124,,,0.284,,,0.232,0.339,0.500933669,6170,12317,,,0.174332678,,,0.139007069,0.212476602,0.25,2,8,0.070127692,0.458326521,603.7,74,12257,,,23.09562399,57,2468,17.49240007,29.92305973,,,,,,,,,,,,,22.20287331,16.53149754,29.19267801,,,,,,,0.060956048,570,9351,0.051424133,0.070487962,0.000652688,8,12257,,,1532.125,0.000330743,4,12094,,,3023.5,0.001157599,14,12094,,,863.8571429,2278,,,,,,,,,2301,0.45,,,,,,,,,0.45,0.39,,,,,,,,,0.39,0.919495413,8018,8720,0.901748721,0.937242105,0.542491269,1398,2577,0.460916497,0.624066041,0.028656127,174,6072,,,0.203,527,,0.124361702,0.281638298,,,,,,,,,,,,,0.247583018,0.169143751,0.326022285,4.548651433,97141,21356,3.321698247,5.775604618,0.157483247,423,2686,0.094379418,0.220587075,10.60618422,13,12257,,,95.31194469,59,61902,72.55586835,122.9454644,,,,,,,,,,,,,99.00652077,75.17980212,127.9888869,,,,7.4,,,,,0,,,,,0.138594803,720,5195,0.103150964,0.174038641,0.119683482,0.082428652,0.156938312,0.016169394,0.004265295,0.028073492,0.021174206,0.00705776,0.035290652,0.83258747,4093,4916,0.803339911,0.861835029,,,,,,,,,,,,,0.813267813,0.781566702,0.844968925,0.274,,4916,0.217445032,0.330554969,76.12248914,,,74.60204508,77.6429332,,,,,,,,,,,,,75.72133719,74.14720919,77.29546518,,,,444.0639876,232,33316,381.5496245,506.5783508,,,,,,,,,,,,,459.1299023,393.8744295,524.3853752,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.115,,,0.098,0.133,0.173,,,0.149,0.198,0.1,,,0.085,0.116,48.4,5,10333,,,0.124,1530,,,,0.054893049,707.4067212,12887,,,,,,,,,,,,,,,,,,,,,,,,,,0.351,,,0.333,0.369,0.073460786,488,6643,0.060354403,0.086567169,0.031567871,90,2851,0.020844467,0.042291275,0.00132297,16,12094,,,755.875,0.962042683,157.775,164,,,,,,,,2.955373116,,,,,,,,,2.973911109,3.030147925,,,,,,,,,3.064750577,0.045147221,,,,,-1604.6378,,,,,0.790926829,40535,51250,0.731319497,0.850534162,53589,,,46357.85106,60820.14894,,,,,,,,,,,,,52551,45985.89362,59116.10638,,,,,,0.503983006,949,1883,,,,,,,,0.299856314,,53589,,,6.25,4,640,,,,,,,,,,,,,,,,,,,,,,,,,,27.75154719,15,61902,15.17202909,46.56238064,24.23185034,,,,,,,,,,,,,29.35002677,16.04593275,49.24435778,,,,,,,,,,,,,,,,,,,,,,,,,,,21.86597309,19,86893,13.16474419,34.14642557,,,,,,,,,,,,,21.82029773,12.93209133,34.4854777,,,,24.61538462,,1300,,,8,24,0.67593361,6516,9640,,,0.592,,,,,42.25597193,,,,,0.69291965,3484,5028,0.65428243,0.73155687,0.111415333,529,4748,0.071888423,0.150942242,0.813245823,4089,5028,0.778019484,0.848472163,12094,,,,,0.217049777,2625,12094,,,0.242268894,2930,12094,,,0.00719365,87,12094,,,0.004630395,56,12094,,,0.008930048,108,12094,,,0.000413428,5,12094,,,0.025549859,309,12094,,,0.939226063,11359,12094,,,0.001712475,20,11679,0,0.008355523,0.500496114,6053,12094,,,0.572217261,7048,12317,, -19,009,19009,IA,Audubon County,2024,1,5776.31728,83,14597,3897.257012,8246.052087,0,,,,2,,,,2,,,,2,,,,2,5938.630346,3977.193946,8528.863789,,,,,2,,0.133,,,0.11,0.158,3.158089762,,,2.474591505,3.958265397,4.671786444,,,3.721374249,5.712025907,0.058139535,25,430,0.036021278,0.080257792,0,,,,,,,,,,,,,0.055023923,0.033163724,0.076884123,,,,,,,0.175,,,0.134,0.215,0.38,,,0.299,0.463,9,0.023547635,0.077,,,0.245,,,0.197,0.292,0.649982376,3688,5674,,,0.182079421,,,0.146107765,0.223350194,0.285714286,2,7,0.086061846,0.500925625,266.2,15,5635,,,10.61776062,11,1036,5.300347845,18.99810667,,,,,,,,,,,,,10.40582726,4.989998643,19.13668683,,,,,,,0.070221376,295,4201,0.059497972,0.08094478,0.000532387,3,5635,,,1878.333333,0.000357271,2,5598,,,2799,,0,5598,,,,1917,,,,,,,,,1925,0.46,,,,,,,,,0.46,0.35,,,,,,,,,0.35,0.905278737,3670,4054,0.87652787,0.934029604,0.738656987,814,1102,0.608035259,0.869278716,0.022690438,70,3085,,,0.15,179,,0.094,0.206,,,,,,,,,,0.333333333,0,0.984800282,0.14298725,0.070512516,0.215461983,3.875066379,109459,28247,3.301139303,4.448993454,0.291900561,364,1247,0.165028167,0.418772956,17.74622893,10,5635,,,97.48700173,27,27696,64.24454843,141.8384693,,,,,,,,,,,,,101.6221913,66.96966439,147.8549529,,,,6.9,,,,,0,,,,,0.081784387,220,2690,0.047086121,0.116482652,0.061025833,0.024367935,0.097683732,0.004460967,0,0.012244458,0.020074349,0.004290214,0.035858485,0.801853172,2250,2806,0.745939453,0.857766891,,,,,,,,,,,,,0.783349562,0.729728092,0.836971032,0.222,,2806,0.172945933,0.271054067,79.02102038,,,77.02000104,81.02203973,,,,,,,,,,,,,78.8720025,76.82107355,80.92293144,,,,341.4552678,83,14597,265.6725795,432.133495,,,,,,,,,,,,,343.9894502,266.0414158,437.6389229,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.099,,,0.083,0.114,0.157,,,0.132,0.181,0.086,,,0.072,0.1,104.6,5,4778,,,0.077,440,,,,0.023547635,144.0879777,6119,,,,,,,,,,,,,,,,,,,,,,,,,,0.315,,,0.298,0.332,0.079734219,240,3010,0.065436347,0.094032092,0.044176707,55,1245,0.028687345,0.059666069,0.001964988,11,5598,,,508.9090909,,,,,,,,,,,3.094024949,,,,,,,,,3.118247294,2.957500201,,,,,,,,,3.002416127,0.030795791,,,,,833.8799,,,,,0.757078958,38929,51420,0.575527674,0.938630241,60504,,,51309.2766,69698.7234,,,,,,,,,,,,,55542,47970.08511,63113.91489,,,,,,0.371467026,276,743,,,,,,,,0.271519238,,60504,,,7.874015748,3,381,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,33.2081641,13,39147,17.68194879,56.78697197,,,,,,,,,,,,,34.4992304,18.36938722,58.99473467,,,,,,500,,,-888,7,0.783505155,3420,4365,,,0.704,,,,,9.597231614,,,,,0.781459566,1981,2535,0.735624909,0.827294223,0.081400081,200,2457,0.038826741,0.123973422,0.814201183,2064,2535,0.779739803,0.848662564,5598,,,,,0.215791354,1208,5598,,,0.251161129,1406,5598,,,0.007681315,43,5598,,,0.004823151,27,5598,,,0.006609503,37,5598,,,0.000357271,2,5598,,,0.029296177,164,5598,,,0.945694891,5294,5598,,,0.001894298,10,5279,0,0.014928554,0.506609503,2836,5598,,,1,5674,5674,, -19,011,19011,IA,Benton County,2024,1,6368.21428,310,70204,5190.114006,7546.314554,0,,,,2,,,,2,,,,2,,,,2,6450.081429,5230.87272,7669.290139,,,,,2,,0.121,,,0.1,0.144,3.134058728,,,2.398495996,3.955954025,4.638413358,,,3.720489738,5.640382239,0.049769112,97,1949,0.040114282,0.059423943,0,,,,,,,,,,,,,0.049329759,0.039501285,0.059158233,,,,,,,0.17,,,0.132,0.209,0.384,,,0.311,0.46,9,0.042801148,0.067,,,0.229,,,0.185,0.279,0.442541545,11318,25575,,,0.20252503,,,0.163098492,0.245210239,0.111111111,3,27,0.034770202,0.223179062,303.6,78,25691,,,11.48806318,64,5571,8.847208499,14.67000022,,,,,,,,,,,,,10.86335049,8.227795571,14.07473059,,,,,,,0.049853654,1039,20841,0.041513228,0.058194079,0.000194621,5,25691,,,5138.2,0.000233363,6,25711,,,4285.166667,0.000466726,12,25711,,,2142.583333,2900,,,,,,,,,2838,0.53,,,,,,,,,0.53,0.35,,,,,,,,,0.35,0.944254771,16871,17867,0.92978635,0.958723193,0.709655172,4116,5800,0.644933548,0.774376797,0.029953742,395,13187,,,0.09,521,,0.056638298,0.123361702,,,,,,,,,,0.190476191,0,0.388154237,0.068448995,0.049481447,0.087416544,3.806053466,135682,35649,3.452119729,4.159987202,0.126335425,745,5897,0.085339763,0.167331087,12.84496516,33,25691,,,75.76112595,97,128034,61.43716948,92.42214875,,,,,,,,,,,,,77.27095263,62.51681502,94.45973258,,,,8.3,,,,,0,,,,,0.074235808,765,10305,0.053060638,0.095410978,0.066305952,0.046437806,0.086174098,0.007666182,0.00244108,0.012891283,0.000970403,0,0.00335109,0.804286477,10545,13111,0.778096215,0.830476739,,,,,,,,,,,,,0.729819277,0.681746564,0.77789199,0.419,,13111,0.380098283,0.457901717,79.74460347,,,78.63579414,80.8534128,,,,,,,,,,,,,79.6303962,78.49816131,80.76263108,,,,318.1111234,310,70204,280.5190247,355.7032221,,,,,,,,,,,,,320.4135929,281.9553488,358.8718371,,,,42.50057955,11,25882,21.21613618,76.04527669,,,,,,,,,,,,,41.44905911,19.87643495,76.22629546,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.093,,,0.078,0.108,0.152,,,0.129,0.176,0.081,,,0.067,0.094,37.1,8,21556,,,0.067,1710,,,,0.042801148,1116.082744,26076,,,,,,,,,,,,,,,,,,,,,,,,,,0.321,,,0.303,0.338,0.057213764,853,14909,0.047681849,0.066745678,0.032552919,203,6236,0.023021004,0.042084833,0.000816771,21,25711,,,1224.333333,0.909116541,241.825,266,,,,,,,,3.423752225,,,,,,,,,3.408243012,3.367103214,,,,,,,,,3.373907096,0.028009323,,,,,2121.467,,,,,0.79642268,49246,61834,0.703726015,0.889119345,82762,,,75007.78723,90516.21277,,,,123558,117278.8511,129837.1489,,,,,,,80058,75249.14894,84866.85106,,,,,,0.309045226,1230,3980,,,,,,,,0.217104468,,82762,,,6.381620932,10,1567,,,,,,,,,,,,,,,,,,,,,,,,,,21.15295194,26,128034,13.55309544,31.47391576,20.30710593,,,,,,,,,,,,,22.04167578,14.12251757,32.79626638,,,,14.83980818,19,128034,8.934533924,23.17419871,,,,,,,,,,,,,15.45419053,9.304432233,24.13363285,,,,22.29766265,40,179391,15.9297771,30.36308787,,,,,,,,,,,,,20.86629919,14.61449942,28.88775351,,,,8.928571429,,2800,,,9,16,0.750871795,14642,19500,,,0.738,,,,,10.76916887,,,,,0.837551908,8471,10114,0.815307909,0.859795908,0.071739791,708,9869,0.051022012,0.09245757,0.868894602,8788,10114,0.844661007,0.893128197,25711,,,,,0.226984559,5836,25711,,,0.195791685,5034,25711,,,0.007467621,192,25711,,,0.003850492,99,25711,,,0.006067442,156,25711,,,0.000427832,11,25711,,,0.018980203,488,25711,,,0.952782856,24497,25711,,,0.002567713,62,24146,0,0.006291559,0.495118821,12730,25711,,,0.813098729,20795,25575,, -19,013,19013,IA,Black Hawk County,2024,1,7595.074431,1849,364655,7068.886181,8121.26268,0,,,,2,,,,2,14301.37884,12027.84991,16574.90776,,6523.767194,4490.661158,9161.794651,,7057.653602,6487.518031,7627.789172,,,,,2,,0.14,,,0.118,0.165,3.366921865,,,2.701395092,4.103823996,5.074902305,,,4.290857558,5.872014904,0.079840319,920,11523,0.074891336,0.084789303,0,,,,0.068627451,0.044095243,0.093159659,0.137782562,0.122110045,0.153455079,0.065822785,0.048530782,0.083114787,0.065022138,0.059586676,0.070457599,0.127853881,0.083627073,0.17208069,0.112852665,0.078129883,0.147575447,0.173,,,0.137,0.21,0.368,,,0.318,0.42,8,0.094668403,0.089,,,0.252,,,0.211,0.295,0.892873483,117095,131144,,,0.218064169,,,0.185873343,0.254130993,0.191489362,9,47,0.119169314,0.273356696,845.3,1102,130368,,,15.28049331,508,33245,13.95168728,16.60929934,,,,18.25842697,9.721843386,31.22246618,46.11291753,38.87662071,53.34921435,28.8248337,22.24639811,36.73961677,8.850611208,7.688956911,10.01226551,107.3825503,61.37840573,174.3825342,21.78217822,14.99384922,30.59027675,0.063221461,6627,104822,0.054881036,0.071561887,0.000951154,124,130368,,,1051.354839,0.000790641,103,130274,,,1264.796117,0.002364248,308,130274,,,422.9675325,2005,,,,,,,4235,4580,1847,0.56,,,,,,0.24,0.46,0.25,0.57,0.62,,,,,,0.54,0.44,0.32,0.62,0.929006281,77062,82951,0.921010286,0.937002275,0.713110412,22883,32089,0.677178712,0.749042111,0.029145906,1983,68037,,,0.198,5509,,0.158680851,0.237319149,0.132075472,0,0.583271709,0.155864198,0.062983643,0.248744752,0.451739344,0.357625283,0.545853404,0.221844454,0.146977179,0.296711729,0.120862997,0.094772605,0.146953389,4.467662429,120542,26981,4.139915041,4.795409818,0.265075554,7508,28324,0.233122485,0.297028623,11.42918508,149,130368,,,66.92646303,440,657438,60.67289891,73.18002714,,,,,,,95.31810398,72.56055709,122.9534094,33.2060435,15.92358856,61.06709627,68.16220717,61.13073738,75.19367696,,,,7.7,,,,,0,,,,,0.140753939,7505,53320,0.128762202,0.152745675,0.120444191,0.108766281,0.132122101,0.019973743,0.014094974,0.025852513,0.006376594,0.004134134,0.008619055,0.785412197,51256,65260,0.771526427,0.799297968,,,,0.673100872,0.580030404,0.76617134,0.728258726,0.674877917,0.781639535,0.754497355,0.68229076,0.826703949,0.816323019,0.801630774,0.831015263,0.099,,65260,0.086278375,0.111721625,77.09622558,,,76.63086829,77.56158287,,,,81.84481603,78.58234446,85.1072876,70.04231506,68.44813766,71.63649247,82.74577645,72.98945578,92.50209712,77.69907365,77.19561499,78.20253232,,,,406.8359004,1849,364655,387.3938621,426.2779387,,,,,,,758.5161003,663.3463412,853.6858594,352.3213633,240.9875517,497.372642,382.39242,361.8997456,402.8850943,,,,53.96325938,71,131571,42.14575329,68.06730899,,,,,,,116.638479,71.24581318,180.1386709,,,,40.50488796,28.51917914,55.8306525,,,,5.882352941,69,11730,4.576821701,7.444494126,,,,,,,12.27321238,7.780163841,18.41584466,,,,3.903391071,2.669916603,5.510423528,,,,,,,0.1,,,0.085,0.115,0.159,,,0.138,0.181,0.095,,,0.081,0.11,113,124,109758,,,0.089,11660,,,,0.094668403,12410.081,131090,,,10.95870861,43,392382,7.930871756,14.76130857,,,,,,,,,,,,,11.76949601,8.286811347,16.2226999,,,,0.326,,,0.311,0.34,0.075186791,5756,76556,0.063271898,0.087101685,0.031980278,947,29612,0.022448363,0.041512193,0.001750157,228,130274,,,571.377193,0.867375195,1111.975,1282,,,0.041251419,327,7927,0.022829198,0.05967364,2.796279839,,,,,,2.31330814,1.985798982,2.442184392,3.062535637,2.785323581,,,,,,2.59935678,1.898754542,2.456127977,3.089350773,0.139640794,,,,,499.4273,,,,,0.806885384,45844,56816,0.764503343,0.849267426,62020,,,56705.95745,67334.04255,44636,903.5744681,88368.42553,73224,52007.14894,94440.85106,34277,31834.44681,36719.55319,51237,31957.51064,70516.48936,66805,64512.57447,69097.42553,,,,,,0.517727793,9506,18361,,,55.33194921,,,,,0.340744921,,62020,,,9.177679883,75,8172,,,4.654702278,43,923797,3.368631118,6.269853421,,,,,,,35.03445054,23.63759666,50.01385659,,,,1.736157483,0.92443074,2.968882171,,,,15.82117912,99,657438,12.75410335,19.40327171,15.05845418,,,,,,,,,,,,,17.05731704,13.52539158,21.22930758,,,,10.64739185,70,657438,8.300164291,13.45233905,,,,,,,32.31122169,19.73653363,49.9020613,,,,8.307859046,6.036503101,11.152913,,,,8.984657885,83,923797,7.156229853,11.13783524,,,,,,,12.8459652,6.412659544,22.98498016,,,,9.214989717,7.169812035,11.66215926,,,,33.62903226,,12400,,,122,295,0.675248428,66593,98620,,,0.717,,,,,185.4174608,,,,,0.652921346,35056,53691,0.639069906,0.666772787,0.139325416,7332,52625,0.12465716,0.153993672,0.867631447,46584,53691,0.852793108,0.882469785,130274,,,,,0.215768304,28109,130274,,,0.178922886,23309,130274,,,0.095521747,12444,130274,,,0.004367717,569,130274,,,0.027227229,3547,130274,,,0.006110199,796,130274,,,0.049718286,6477,130274,,,0.79350446,103373,130274,,,0.017655666,2172,123020,0.013800582,0.021510749,0.506586119,65995,130274,,,0.129666626,17005,131144,, -19,015,19015,IA,Boone County,2024,1,6271.953266,364,73260,5207.96428,7335.942252,0,,,,2,,,,2,,,,2,,,,2,6286.957686,5171.656572,7402.258799,,,,,2,,0.12,,,0.098,0.142,3.080833256,,,2.388305013,3.836823339,4.890578784,,,3.989445334,5.873137113,0.063096501,119,1886,0.05212325,0.074069751,0,,,,,,,,,,,,,0.062749572,0.051396894,0.07410225,,,,,,,0.164,,,0.127,0.202,0.354,,,0.287,0.428,9.3,0.023645557,0.061,,,0.23,,,0.186,0.276,0.842073741,22496,26715,,,0.213138114,,,0.174625682,0.256203406,0.357142857,5,14,0.212111468,0.496744159,284.4,76,26723,,,12.08139042,57,4718,9.150327122,15.6528426,,,,,,,,,,,,,11.03027458,8.104630877,14.66792686,,,,,,,0.049071432,1049,21377,0.040731006,0.057411857,0.000449051,12,26723,,,2226.916667,0.000413394,11,26609,,,2419,0.000714044,19,26609,,,1400.473684,2615,,,,,,,,,2632,0.55,,,,,,,,,0.55,0.6,,,,,,,,,0.6,0.951767982,18115,19033,0.938856304,0.96467966,0.701759574,4746,6763,0.627164951,0.776354197,0.022648084,338,14924,,,0.095,493,,0.060446809,0.129553192,,,,,,,,,,0.10619469,0,0.361279874,0.078865012,0.043890596,0.113839427,3.904919115,130108,33319,3.545489153,4.264349078,0.15839971,875,5524,0.110867571,0.20593185,13.09733189,35,26723,,,69.6631936,92,132064,56.15836622,85.43572283,,,,,,,,,,,,,70.80899274,56.79088276,87.23865949,,,,7.4,,,,,1,,,,,0.071759259,775,10800,0.055059963,0.088458556,0.054826617,0.04026831,0.069384924,0.010092593,0.001460938,0.018724247,0.015277778,0.00773396,0.022821596,0.804468479,11306,14054,0.76925141,0.839685548,,,,,,,,,,,,,0.794943558,0.753449064,0.836438053,0.294,,14054,0.253982982,0.334017018,77.84235117,,,76.92084334,78.76385899,,,,,,,,,,,,,77.81493574,76.8675872,78.76228428,,,,339.3772898,364,73260,302.4824727,376.272107,,,,,,,,,,,,,337.983913,300.2304816,375.7373443,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.092,,,0.078,0.108,0.152,,,0.13,0.176,0.079,,,0.067,0.092,65.4,15,22941,,,0.061,1620,,,,0.023645557,622.0200208,26306,,,,,,,,,,,,,,,,,,,,,,,,,,0.3,,,0.282,0.318,0.055856529,897,16059,0.046324614,0.065388444,0.029664046,166,5596,0.020132131,0.039195961,0.000263069,7,26609,,,3801.285714,0.969636364,266.65,275,,,,,,,,3.26135877,,,,,,,,,3.258126755,3.148332178,,,,,,,,,3.213114614,0.038006527,,,,,1124.134756,,,,,0.778602508,45630,58605,0.718171151,0.839033866,74896,,,67835.23404,81956.76596,,,,,,,,,,67273,50876.91489,83669.08511,77390,69272.38298,85507.61702,,,,,,0.311134509,1182,3799,,,72.67361249,,,,,0.252616962,,74896,,,8.403361345,12,1428,,,,,,,,,,,,,,,,,,,,,,,,,,11.66640645,14,132064,6.378132968,19.57424767,10.60092077,,,,,,,,,,,,,11.4661742,6.105254852,19.60750709,,,,,,,,,,,,,,,,,,,,,,,,,,,11.33670555,21,185239,7.017599417,17.32935869,,,,,,,,,,,,,10.31642777,6.114168915,16.30440355,,,,26.2962963,,2700,,,11,60,0.747381242,15340,20525,,,0.727,,,,,62.68015056,,,,,0.7964748,8676,10893,0.772800866,0.820148735,0.076448598,818,10700,0.054353395,0.098543801,0.868906637,9465,10893,0.842942144,0.89487113,26609,,,,,0.204141456,5432,26609,,,0.200909467,5346,26609,,,0.011762937,313,26609,,,0.005449284,145,26609,,,0.005937841,158,26609,,,0.000563719,15,26609,,,0.02961404,788,26609,,,0.937164117,24937,26609,,,0.00078964,20,25328,0,0.004422274,0.489571198,13027,26609,,,0.531686319,14204,26715,, -19,017,19017,IA,Bremer County,2024,1,5930.355026,270,68480,4818.536492,7042.17356,0,,,,2,,,,2,,,,2,,,,2,5962.368316,4808.89454,7115.842092,,,,,2,,0.108,,,0.088,0.13,2.826981101,,,2.185285899,3.532979169,4.188742889,,,3.349232156,5.096067765,0.058921623,106,1799,0.048040074,0.069803173,0,,,,,,,,,,,,,0.055490654,0.044645962,0.066335347,,,,,,,0.149,,,0.116,0.187,0.353,,,0.284,0.428,9.6,0.012981712,0.055,,,0.209,,,0.166,0.253,0.740155275,18495,24988,,,0.21630074,,,0.176862508,0.259368009,0.266666667,4,15,0.129817183,0.413965161,255.2,64,25081,,,2.959413754,21,7096,1.831923758,4.523778289,,,,,,,,,,,,,2.741935484,1.597278463,4.390104325,,,,,,,0.038113387,720,18891,0.032155941,0.044070834,0.00047845,12,25081,,,2090.083333,0.000593848,15,25259,,,1683.933333,0.001781543,45,25259,,,561.3111111,2277,,,,,,,,,2271,0.56,,,,,,,,,0.56,0.52,,,,,,,,,0.52,0.961060982,15870,16513,0.951356219,0.970765745,0.800720288,4669,5831,0.738999728,0.862440849,0.023065423,324,14047,,,0.061,342,,0.037170213,0.084829787,,,,,,,0.471153846,0.160071915,0.782235777,0.2125,0.051121994,0.373878006,0.059642147,0.035319898,0.083964396,3.225910912,134485,41689,2.89578702,3.556034804,0.159415121,894,5608,0.117356909,0.201473333,15.94832742,40,25081,,,50.27451481,63,125312,38.63231757,64.32294376,,,,,,,,,,,,,52.22283991,40.03895191,66.9473239,,,,8.1,,,,,0,,,,,0.079028926,765,9680,0.062623093,0.095434758,0.065837221,0.04943894,0.082235503,0.008677686,0.000552863,0.016802509,0.007747934,0.003271373,0.012224495,0.775191327,9724,12544,0.753337365,0.797045288,,,,,,,,,,,,,0.754307724,0.721029403,0.787586045,0.277,,12544,0.245998372,0.308001628,79.98265543,,,78.93191418,81.03339669,,,,,,,,,,,,,79.91161077,78.83981892,80.98340263,,,,305.4085026,270,68480,267.0495224,343.7674829,,,,,,,,,,,,,304.0632763,265.1253162,343.0012364,,,,37.55868545,10,26625,18.01084956,69.07175978,,,,,,,,,,,,,40.99536752,19.6588722,75.39194048,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.087,,,0.074,0.102,0.143,,,0.121,0.166,0.076,,,0.063,0.09,23.6,5,21187,,,0.055,1360,,,,0.012981712,315.1440393,24276,,,,,,,,,,,,,,,,,,,,,,,,,,0.29,,,0.272,0.307,0.044484521,592,13308,0.036144095,0.052824946,0.024073758,141,5857,0.016924822,0.031222694,0.001623184,41,25259,,,616.0731707,0.949162679,396.75,418,,,,,,,,3.153968599,,,,,,,,,3.183048335,3.32987062,,,,,,,,,3.374301612,0.058843679,,,,,1927.726017,,,,,0.746686606,50930,68208,0.685835028,0.807538184,83797,,,78435.29787,89158.70213,97639,45308.78723,149969.2128,,,,,,,,,,84492,80176.42553,88807.57447,,,,,,0.181270764,873,4816,,,,,,,,0.226177548,,83797,,,9.167842031,13,1418,,,,,,,,,,,,,,,,,,,,,,,,,,10.67748541,14,125312,5.685311287,18.25882524,11.1721144,,,,,,,,,,,,,11.15549312,5.939830263,19.07623298,,,,,,,,,,,,,,,,,,,,,,,,,,,11.4395534,20,174832,6.987576408,17.66746242,,,,,,,,,,,,,12.04674136,7.358462586,18.60521498,,,,29.64285714,,2800,,,9,74,0.75622563,14546,19235,,,0.762,,,,,38.41650364,,,,,0.835605122,8092,9684,0.816693075,0.854517169,0.063513655,607,9557,0.046938984,0.080088326,0.900351095,8719,9684,0.880836605,0.919865584,25259,,,,,0.223959777,5657,25259,,,0.198226375,5007,25259,,,0.014014807,354,25259,,,0.003048418,77,25259,,,0.012787521,323,25259,,,0.000277129,7,25259,,,0.020586722,520,25259,,,0.938239835,23699,25259,,,0.003642216,86,23612,0,0.008516093,0.49859456,12594,25259,,,0.633464063,15829,24988,, -19,019,19019,IA,Buchanan County,2024,1,5163.323957,257,58204,4151.232505,6175.41541,0,,,,2,,,,2,,,,2,,,,2,5311.646953,4253.110495,6370.183412,,,,,2,,0.122,,,0.101,0.147,3.003628479,,,2.294213289,3.747835307,4.69454416,,,3.741151919,5.692238428,0.053298153,101,1895,0.043184358,0.063411948,0,,,,,,,,,,,,,0.05399568,0.043702214,0.064289147,,,,,,,0.17,,,0.133,0.21,0.354,,,0.286,0.428,9.2,0.033805459,0.065,,,0.236,,,0.194,0.286,0.67123754,13804,20565,,,0.227246541,,,0.187569888,0.271921326,0.230769231,3,13,0.089378268,0.394382228,314.7,65,20657,,,7.96812749,38,4769,5.638721251,10.93687753,,,,,,,,,,,,,8.32208727,5.859517447,11.47090107,,,,,,,0.053455175,895,16743,0.04511475,0.061795601,0.000387278,8,20657,,,2582.125,0.000337936,7,20714,,,2959.142857,0.001400019,29,20714,,,714.2758621,1853,,,,,,,,,1862,0.47,,,,,,,,,0.47,0.37,,,,,,,,,0.37,0.936230208,12949,13831,0.920011653,0.952448762,0.671977124,3290,4896,0.607453388,0.736500861,0.027706922,315,11369,,,0.115,594,,0.068531915,0.161468085,,,,,,,,,,0.144067797,0,0.430066379,0.098110173,0.064173332,0.132047014,3.84596731,122121,31753,3.336672761,4.35526186,0.128127369,676,5276,0.092990127,0.163264611,9.681948008,20,20657,,,73.91963609,78,105520,58.43040486,92.25505122,,,,,,,,,,,,,76.1200522,60.07275481,95.13700473,,,,8.3,,,,,0,,,,,0.107165109,860,8025,0.081543451,0.132786767,0.078168131,0.054113862,0.102222399,0.01482866,0.007018651,0.02263867,0.021183801,0.01088274,0.031484862,0.796035371,8192,10291,0.768005367,0.824065374,,,,,,,,,,,,,0.766874567,0.722483193,0.811265941,0.292,,10291,0.259174522,0.324825478,79.38185922,,,78.3526207,80.41109774,,,,,,,,,,,,,79.19463431,78.14636229,80.24290633,,,,314.7844069,257,58204,274.4714661,355.0973477,,,,,,,,,,,,,319.9326896,278.5546396,361.3107397,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.093,,,0.079,0.11,0.151,,,0.128,0.175,0.08,,,0.068,0.094,58.9,10,16987,,,0.065,1350,,,,0.033805459,708.4948126,20958,,,,,,,,,,,,,,,,,,,,,,,,,,0.323,,,0.305,0.341,0.063324081,730,11528,0.052600676,0.074047485,0.032622562,179,5487,0.021899158,0.043345967,0.000724148,15,20714,,,1380.933333,0.9125,189.8,208,,,0.116738197,136,1165,0.04313105,0.190345345,3.025579246,,,,,,,,,3.009412894,3.187658089,,,,,,,,,3.190964599,0.068068618,,,,,612.3931333,,,,,0.817554781,46227,56543,0.753528274,0.881581288,70498,,,62687.78723,78308.21277,48333,29120.23404,67545.76596,,,,73333,9610.957447,137055.0426,,,,75381,69739.29787,81022.70213,,,,,,0.27275405,926,3395,,,78.46905981,,,,,0.254716446,,70498,,,7.299270073,10,1370,,,,,,,,,,,,,,,,,,,,,,,,,,13.14913136,15,105520,7.18875247,22.06200812,14.21531463,,,,,,,,,,,,,13.73678277,7.510026967,23.04798734,,,,10.42456406,11,105520,5.203904821,18.65242467,,,,,,,,,,,,,10.87429317,5.428407971,19.45711427,,,,10.84201824,16,147574,6.197150212,17.60675837,,,,,,,,,,,,,11.29034534,6.453407888,18.3348135,,,,25.38461539,,2600,,,15,51,0.698023972,10774,15435,,,0.718,,,,,39.50164852,,,,,0.806483791,6468,8020,0.78196483,0.831002751,0.088386434,688,7784,0.064240563,0.112532304,0.85,6817,8020,0.825734105,0.874265895,20714,,,,,0.253017283,5241,20714,,,0.187650864,3887,20714,,,0.007820798,162,20714,,,0.002462103,51,20714,,,0.005889736,122,20714,,,0.000289659,6,20714,,,0.018731293,388,20714,,,0.95466834,19775,20714,,,0.001761111,34,19306,0,0.006809012,0.495703389,10268,20714,,,0.670751276,13794,20565,, -19,021,19021,IA,Buena Vista County,2024,1,5876.983284,187,55888,4638.826983,7115.139585,0,,,,2,,,,2,,,,2,5412.852607,3468.1168,8053.895619,1,4206.061893,2794.464797,5617.658989,,,,,2,,0.166,,,0.14,0.193,3.065247364,,,2.401533786,3.720436928,3.882609269,,,3.130356804,4.633735465,0.070537428,147,2084,0.059544004,0.081530852,0,,,,0.123809524,0.079262088,0.16835696,,,,0.072839506,0.054942742,0.09073627,0.058423913,0.041478967,0.075368859,0.068085106,0.035879141,0.100291072,,,,0.172,,,0.14,0.205,0.349,,,0.292,0.402,9,0.056174031,0.061,,,0.294,,,0.249,0.337,0.796186909,16579,20823,,,0.173017347,,,0.141847785,0.204209161,0,0,8,0,0.234018599,462.2,96,20771,,,21.28929566,107,5026,17.25539243,25.3231989,,,,22.77432712,11.36886204,40.74956214,,,,33.70786517,25.32238575,43.98145218,5.128205128,2.730553251,8.76938695,230.7692308,142.849791,352.7552828,,,,0.114663128,1901,16579,0.097982277,0.131343979,0.000529585,11,20771,,,1888.272727,0.000631068,13,20600,,,1584.615385,0.000728155,15,20600,,,1373.333333,1956,,,,,,,,,1898,0.5,,,,,,0.25,,0.27,0.52,0.39,,,,,,0.18,,0.14,0.41,0.793412486,10358,13055,0.765671298,0.821153673,0.487415592,2382,4887,0.426408811,0.548422374,0.023301135,275,11802,,,0.116,612,,0.069531915,0.162468085,,,,0.043132804,0,0.141822887,,,,0.072631073,0.031167126,0.11409502,0.072072072,0.040185722,0.103958422,3.527551167,123235,34935,2.94211412,4.112988213,0.170821791,925,5415,0.09924832,0.242395263,17.33185692,36,20771,,,41.93835063,42,100147,30.22547429,56.68846673,,,,,,,,,,,,,48.73803307,32.38606903,70.44002775,,,,6.8,,,,,0,,,,,0.121292024,920,7585,0.092761706,0.149822342,0.069216517,0.047402337,0.091030697,0.048780488,0.026961178,0.070599797,0.005273566,0.00149242,0.009054713,0.692557271,7044,10171,0.649762583,0.735351959,,,,,,,,,,0.717775273,0.643859833,0.791690712,0.801425971,0.769909716,0.832942225,0.134,,10171,0.105404255,0.162595745,79.95849839,,,78.75058584,81.16641094,,,,76.66048112,71.67004079,81.65092145,,,,92.43535529,70.60160167,114.2691089,81.24092045,79.90046572,82.58137518,,,,277.8412056,187,55888,236.3880434,319.2943679,,,,,,,,,,251.1576702,162.5360016,370.7582665,239.1397464,191.9496995,286.3297933,,,,42.50977725,10,23524,20.38509053,78.17699389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.104,,,0.088,0.12,0.142,,,0.121,0.161,0.101,,,0.086,0.117,106.9,18,16837,,,0.061,1260,,,,0.056174031,1138.085877,20260,,,,,,,,,,,,,,,,,,,,,,,,,,0.314,,,0.302,0.326,0.137412058,1543,11229,0.11596525,0.158858867,0.067950776,381,5607,0.047695457,0.088206095,0.000582524,12,20600,,,1716.666667,0.67973913,234.51,345,,,,,,,,2.912214286,,,,,,2.527334165,,2.749529376,3.36191116,2.984289843,,,,,,2.711429789,,2.713566726,3.575186782,0.187522193,,,,,-2421.5734,,,,,0.791127786,41963,53042,0.731130585,0.851124986,67552,,,59297.3617,75806.6383,,,,54811,52526.91489,57095.08511,57442,39063.2766,75820.7234,49898,43718.93617,56077.06383,71601,65263.46809,77938.53192,,,,,,0.595149661,2724,4577,,,34.50982439,,,,,0.261146968,,67552,,,6.747638327,10,1482,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.05913231,17,140972,7.024888964,19.30783902,,,,,,,,,,,,,12.10580473,5.805203918,22.26300592,,,,50,,2300,,,12,103,0.67135224,8167,12165,,,0.705,,,,,67.049611,,,,,0.700451048,5280,7538,0.667395389,0.733506707,0.067354699,496,7364,0.04275608,0.091953317,0.886972672,6686,7538,0.857572906,0.916372438,20600,,,,,0.26368932,5432,20600,,,0.170436893,3511,20600,,,0.036165049,745,20600,,,0.007330097,151,20600,,,0.106650485,2197,20600,,,0.03038835,626,20600,,,0.278640777,5740,20600,,,0.539951456,11123,20600,,,0.106291236,2046,19249,0.085967461,0.126615011,0.485970874,10011,20600,,,0.430437497,8963,20823,, -19,023,19023,IA,Butler County,2024,1,6824.166926,194,38637,5191.933652,8456.400201,0,,,,2,,,,2,,,,2,,,,2,7083.933648,5368.863888,8799.003408,,,,,2,,0.13,,,0.11,0.155,3.239654702,,,2.567822353,3.996069008,4.717071039,,,3.803103366,5.704575478,0.061523438,63,1024,0.0468058,0.076241075,0,,,,,,,,,,,,,0.06103764,0.04607176,0.07600352,,,,,,,0.177,,,0.139,0.217,0.397,,,0.323,0.476,9.1,0.019074136,0.076,,,0.251,,,0.203,0.304,0.608622855,8724,14334,,,0.188129731,,,0.151789611,0.22848971,0.428571429,3,7,0.219826693,0.607881191,265.1,38,14332,,,8.224811515,24,2918,5.269791931,12.23786758,,,,,,,,,,,,,7.973903588,4.997202926,12.07258586,,,,,,,0.057964441,639,11024,0.048432526,0.067496356,0.000139548,2,14332,,,7166,0.000210246,3,14269,,,4756.333333,0.00035041,5,14269,,,2853.8,3257,,,,,,,,,3268,0.53,,,,,,,,,0.53,0.45,,,,,,,,,0.45,0.935426715,9503,10159,0.923104936,0.947748495,0.713253769,2271,3184,0.639362246,0.787145292,0.027892311,230,8246,,,0.116,363,,0.083829787,0.148170213,,,,,,,,,,0.365591398,0,0.795938824,0.161236702,0.114906547,0.207566858,3.841985661,120039,31244,3.285486837,4.398484485,0.140470297,454,3232,0.09108247,0.189858124,23.02539771,33,14332,,,60.90049689,44,72249,44.25039427,81.75607452,,,,,,,,,,,,,63.30570902,45.99802509,84.98495954,,,,7.8,,,,,0,,,,,0.094232331,580,6155,0.076385044,0.112079619,0.08085456,0.062769221,0.0989399,0.006498782,0.000252002,0.012745561,0.012997563,0.006130717,0.019864409,0.837219664,5637,6733,0.809720653,0.864718676,,,,,,,,,,,,,0.784587059,0.736648474,0.832525645,0.4,,6733,0.356465777,0.443534223,78.29384911,,,76.90138505,79.68631318,,,,,,,,,,,,,78.01361806,76.5680734,79.45916273,,,,340.2285239,194,38637,288.3647616,392.0922861,,,,,,,,,,,,,348.7807638,295.2721028,402.2894248,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.099,,,0.085,0.116,0.158,,,0.136,0.184,0.087,,,0.073,0.101,41.3,5,12107,,,0.076,1090,,,,0.019074136,283.5751827,14867,,,,,,,,,,,,,,,,,,,,,,,,,,0.309,,,0.292,0.326,0.067820513,529,7800,0.055905619,0.079735406,0.035492458,120,3381,0.024769054,0.046215862,0.000630738,9,14269,,,1585.444444,,,,,,,,,,,3.038590411,,,,,,,,,3.045452598,3.178914887,,,,,,,,,3.179079624,0.061124362,,,,,1597.4538,,,,,0.753520879,42803,56804,0.695275521,0.811766236,67233,,,61177.85106,73288.14894,,,,,,,40833,36064.65957,45601.34043,,,,66285,62397.17021,70172.82979,,,,,,0.215479332,490,2274,,,,,,,,0.259500543,,67233,,,9.126466754,7,767,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.65484773,18,101955,10.46338167,27.90227087,,,,,,,,,,,,,18.32266208,10.85917078,28.95770546,,,,,,1600,,,-888,15,0.725302284,8098,11165,,,0.731,,,,,3.338635441,,,,,0.803390992,4691,5839,0.785529584,0.821252399,0.086138969,481,5584,0.064413289,0.107864648,0.828395273,4837,5839,0.80597956,0.850810986,14269,,,,,0.223211157,3185,14269,,,0.235825916,3365,14269,,,0.003924592,56,14269,,,0.001822132,26,14269,,,0.011843857,169,14269,,,0.000560656,8,14269,,,0.018992221,271,14269,,,0.953605719,13607,14269,,,0.001980489,27,13633,0,0.007140634,0.496811269,7089,14269,,,1,14334,14334,, -19,025,19025,IA,Calhoun County,2024,1,6969.162353,148,25836,5061.418788,8876.905918,0,,,,2,,,,2,,,,2,,,,2,6986.398391,5016.91044,8955.886343,,,,,2,,0.133,,,0.11,0.16,3.165388188,,,2.43241705,3.961795897,4.292904125,,,3.386078128,5.307329345,0.068278805,48,703,0.049633721,0.08692389,0,,,,,,,,,,,,,0.064661654,0.045969772,0.083353536,,,,,,,0.179,,,0.139,0.217,0.405,,,0.323,0.483,8.3,0.088495476,0.077,,,0.252,,,0.203,0.301,0.434370908,4312,9927,,,0.194654637,,,0.15646419,0.236223203,0.555555556,5,9,0.394493124,0.682965544,221.9,22,9915,,,15.84507042,27,1704,10.44200125,23.05374557,,,,,,,,,,,,,15.45396008,9.901643821,22.99426761,,,,,,,0.057251908,405,7074,0.047719994,0.066783823,0.000706001,7,9915,,,1416.428571,0.000411311,4,9725,,,2431.25,0.000308483,3,9725,,,3241.666667,3241,,,,,,,,,3259,0.53,,,,,,,,,0.53,0.39,,,,,,,,,0.4,0.939107092,6647,7078,0.923354784,0.954859401,0.633178556,1500,2369,0.557911312,0.7084458,0.025464065,107,4202,,,0.123,252,,0.070574468,0.175425532,,,,,,,,,,0.064516129,0,0.375661072,0.088726514,0.048094911,0.129358116,3.992653971,114681,28723,3.314336169,4.670971772,0.215613383,464,2152,0.140205869,0.291020896,24.20574887,24,9915,,,78.34890002,38,48501,55.44434475,107.5399866,,,,,,,,,,,,,79.11914024,55.41407314,109.5342399,,,,7,,,,,1,,,,,0.079171742,325,4105,0.059775808,0.098567676,0.057744734,0.039925433,0.075564034,0.02046285,0.008756363,0.032169338,0.003410475,0,0.00719048,0.81792183,3432,4196,0.786920001,0.84892366,,,,,,,,,,,,,0.794279807,0.740150055,0.84840956,0.307,,4196,0.262642018,0.351357982,78.05354239,,,76.41281095,79.69427383,,,,,,,,,,,,,77.97914988,76.30865412,79.64964564,,,,386.1523268,148,25836,318.3776895,453.9269641,,,,,,,,,,,,,390.7638754,320.9566088,460.571142,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.1,,,0.085,0.115,0.152,,,0.131,0.175,0.087,,,0.073,0.101,0,0,8410,,,0.077,770,,,,0.088495476,855.7512558,9670,,,,,,,,,,,,,,,,,,,,,,,,,,0.312,,,0.294,0.329,0.067404427,335,4970,0.055489533,0.07931932,0.033712984,74,2195,0.02179809,0.045627878,0.001439589,14,9725,,,694.6428571,0.93587963,101.075,108,,,,,,,,3.286948898,,,,,,,,,3.280709161,3.393150284,,,,,,,,,3.416467422,0.034430403,,,,,1388.2001,,,,,0.699674725,39794,56875,0.638759154,0.760590296,64634,,,58198.76596,71069.23404,,,,,,,,,,,,,66495,63356.61702,69633.38298,,,,,,0.366689053,546,1489,,,,,,,,0.249883962,,64634,,,10.20408163,6,588,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.67028534,10,68165,7.034972047,26.97917706,,,,,,,,,,,,,15.60354513,7.482506391,28.69547504,,,,,,900,,,-888,19,0.69734748,5258,7540,,,0.65,,,,,0.950182114,,,,,0.787123572,3032,3852,0.737617117,0.836630027,0.063084737,236,3741,0.041036242,0.085133231,0.862928349,3324,3852,0.846607559,0.879249139,9725,,,,,0.212647815,2068,9725,,,0.238354756,2318,9725,,,0.026529563,258,9725,,,0.005758355,56,9725,,,0.003907455,38,9725,,,0.000308483,3,9725,,,0.024164524,235,9725,,,0.928226221,9027,9725,,,0.001606168,15,9339,0,0.009444943,0.477017995,4639,9725,,,1,9927,9927,, -19,027,19027,IA,Carroll County,2024,1,6722.495998,239,54715,5344.65397,8100.338026,0,,,,2,,,,2,,,,2,,,,2,6338.913675,4982.365929,7695.461421,,,,,2,,0.128,,,0.105,0.152,3.074695202,,,2.353931503,3.82573878,4.481170414,,,3.545307835,5.446460186,0.052138254,89,1707,0.041592199,0.06268431,0,,,,,,,,,,,,,0.047402597,0.036789272,0.058015923,,,,,,,0.171,,,0.132,0.209,0.39,,,0.314,0.464,9.3,0.019916405,0.065,,,0.241,,,0.193,0.29,0.744845857,15463,20760,,,0.200275231,,,0.161927518,0.242067266,0.5,4,8,0.315552499,0.64971552,275.5,57,20692,,,10.43599258,45,4312,7.612084598,13.96417915,,,,,,,,,,,,,9.097801365,6.371988228,12.59519194,,,,,,,0.050184275,817,16280,0.04184385,0.058524701,0.000869901,18,20692,,,1149.555556,0.000729324,15,20567,,,1371.133333,0.001410026,29,20567,,,709.2068966,1717,,,,,,,,,1703,0.58,,,,,,,,,0.58,0.64,,,,,,,,,0.65,0.946550256,13335,14088,0.937258719,0.955841792,0.693766938,3072,4428,0.608600232,0.778933644,0.019663959,213,10832,,,0.096,471,,0.063829787,0.128170213,,,,,,,,,,0.066115703,0,0.214651514,0.056888889,0.031798259,0.081979519,4.10305715,122267,29799,3.50360977,4.702504529,0.146820575,725,4938,0.107837832,0.185803318,15.94819254,33,20692,,,60.24988888,61,101245,46.08639099,77.39350281,,,,,,,,,,,,,61.78398643,47.03283309,79.69684102,,,,7.1,,,,,1,,,,,0.08150289,705,8650,0.060358857,0.102646923,0.069778296,0.04842392,0.091132673,0.002890173,0,0.007525522,0.011560694,0.005512311,0.017609076,0.825471698,8750,10600,0.789422755,0.861520641,,,,,,,,,,,,,0.841561641,0.809150051,0.873973232,0.119,,10600,0.095500157,0.142499844,78.59174352,,,77.39592576,79.78756128,,,,,,,,,,,,,78.78916025,77.59795489,79.98036561,,,,315.5874392,239,54715,272.8326841,358.3421944,,,,,,,,,,,,,310.9401902,267.60125,354.2791304,,,,46.55276756,10,21481,22.32386153,85.61219702,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.096,,,0.081,0.112,0.152,,,0.129,0.175,0.084,,,0.07,0.098,87.6,15,17126,,,0.065,1340,,,,0.019916405,414.5798843,20816,,,,,,,,,,,,,,,,,,,,,,,,,,0.309,,,0.292,0.326,0.059534388,670,11254,0.048810984,0.070257792,0.03019943,159,5265,0.020667515,0.039731345,0.001312783,27,20567,,,761.7407407,0.959471366,217.8,227,,,,,,,,3.18293583,,,,,,,,,3.260399402,3.121353286,,,,,,,,,3.187627213,0.059058108,,,,,771.9505,,,,,0.78254627,44692,57111,0.698689233,0.866403307,73643,,,65207.25532,82078.74468,,,,24673,11333.08511,38012.91489,,,,67404,46090.6383,88717.3617,68824,65721.3617,71926.6383,,,,,,0.324262295,989,3050,,,50.87954604,,,,,0.22921391,,73643,,,7.880220646,10,1269,,,,,,,,,,,,,,,,,,,,,,,,,,18.19489563,16,101245,10.18354496,30.00971334,15.80324954,,,,,,,,,,,,,19.36192169,10.83672059,31.93454536,,,,,,,,,,,,,,,,,,,,,,,,,,,11.95667464,17,142180,6.965203594,19.14379436,,,,,,,,,,,,,12.64137895,7.364069089,20.24007229,,,,24.54545455,,2200,,,14,40,0.744499179,11335,15225,,,0.734,,,,,52.16762898,,,,,0.760924563,6617,8696,0.739792267,0.782056859,0.08553017,730,8535,0.060813116,0.110247224,0.84774609,7372,8696,0.820335384,0.875156796,20567,,,,,0.241017163,4957,20567,,,0.217289833,4469,20567,,,0.012155395,250,20567,,,0.003306267,68,20567,,,0.006029076,124,20567,,,0.000437594,9,20567,,,0.033111295,681,20567,,,0.937278164,19277,20567,,,0.00148558,29,19521,0,0.006269047,0.49846842,10252,20567,,,0.511078998,10610,20760,, -19,029,19029,IA,Cass County,2024,1,8463.308414,249,34509,6620.841727,10305.7751,0,,,,2,,,,2,,,,2,,,,2,8746.465411,6784.183615,10708.74721,,,,,2,,0.147,,,0.122,0.174,3.408331975,,,2.659964683,4.283281945,4.958146604,,,3.98849067,6.030946845,0.065380493,61,933,0.049518536,0.08124245,0,,,,,,,,,,,,,0.063010502,0.046742302,0.079278701,,,,,,,0.191,,,0.151,0.234,0.425,,,0.348,0.503,7.9,0.091273619,0.095,,,0.278,,,0.231,0.331,0.732916889,9621,13127,,,0.184761406,,,0.148308752,0.224082585,0.153846154,2,13,0.034991468,0.324991408,229.9,30,13050,,,17.25460123,45,2608,12.58562454,23.08801399,,,,,,,,,,,,,16.89189189,12.06781522,23.0019624,,,,,,,0.072060302,717,9950,0.061336897,0.082783706,0.00045977,6,13050,,,2175,0.001068376,14,13104,,,936,0.004426129,58,13104,,,225.9310345,2424,,,,,,,,,2435,0.48,,,,,,,,,0.48,0.38,,,,,,,,,0.38,0.912473348,8559,9380,0.891435061,0.933511634,0.631873905,1804,2855,0.547398621,0.71634919,0.024655548,170,6895,,,0.192,562,,0.132425532,0.251574468,,,,,,,,,,0.103703704,0,0.289760583,0.24512012,0.181039998,0.309200243,4.801371037,112064,23340,4.211515152,5.391226922,0.152518979,442,2898,0.085359266,0.219678691,16.09195402,21,13050,,,89.53657106,58,64778,67.98887227,115.7467809,,,,,,,,,,,,,91.24087591,68.92237712,118.4838667,,,,7,,,,,1,,,,,0.086440678,510,5900,0.062031287,0.110850069,0.069527897,0.04871511,0.090340684,0.008813559,0,0.017696684,0.009322034,0.001766843,0.016877224,0.783533765,5082,6486,0.746341474,0.820726057,,,,,,,,,,,,,0.796328533,0.752708993,0.839948073,0.139,,6486,0.105005992,0.172994008,75.78362711,,,74.30136566,77.26588855,,,,,,,,,,,,,75.52955075,73.98376716,77.07533433,,,,462.2097305,249,34509,399.7229426,524.6965184,,,,,,,,,,,,,471.1695629,406.4138668,535.9252591,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.105,,,0.09,0.122,0.164,,,0.142,0.187,0.092,,,0.077,0.107,,,,,,0.095,1250,,,,0.091273619,1273.814621,13956,,,,,,,,,,,,,,,,,,,,,,,,,,0.328,,,0.309,0.346,0.084232955,593,7040,0.069935082,0.098530827,0.043421482,133,3063,0.030315099,0.056527865,0.001373626,18,13104,,,728,0.902047782,264.3,293,,,,,,,,3.200705601,,,,,,,,,3.227927645,3.287027306,,,,,,,,,3.296845457,0.074399249,,,,,-932.7925333,,,,,0.736376647,40134,54502,0.64707149,0.825681803,61204,,,53431.91489,68976.08511,,,,,,,,,,50980,34948.51064,67011.48936,63006,56083.44681,69928.55319,,,,,,0.46625,1492,3200,,,,,,,,0.284687275,,61204,,,8.368200837,6,717,,,,,,,,,,,,,,,,,,,,,,,,,,18.72873723,13,64778,9.349318147,33.51088432,20.06854179,,,,,,,,,,,,,17.42146863,8.354271375,32.03870109,,,,15.43733984,10,64778,7.402804496,28.3898176,,,,,,,,,,,,,16.29301356,7.813133303,29.96343203,,,,15.32365754,14,91362,8.37758617,25.71049356,,,,,,,,,,,,,14.9785116,7.975426589,25.61371101,,,,17.85714286,,1400,,,7,18,0.727236382,7276,10005,,,0.708,,,,,39.36668192,,,,,0.729163057,4208,5771,0.703926595,0.754399518,0.104777127,590,5631,0.072028492,0.137525762,0.819095477,4727,5771,0.793437698,0.844753257,13104,,,,,0.226419414,2967,13104,,,0.234737485,3076,13104,,,0.005265568,69,13104,,,0.004960318,65,13104,,,0.005418193,71,13104,,,0.011675824,153,13104,,,0.031517094,413,13104,,,0.936050061,12266,13104,,,0.00152439,19,12464,0,0.007761515,0.506639194,6639,13104,,,0.49661004,6519,13127,, -19,031,19031,IA,Cedar County,2024,1,5375.028316,197,50592,4064.718614,6685.338018,0,,,,2,,,,2,,,,2,,,,2,5268.597332,3943.524894,6593.66977,,,,,2,,0.121,,,0.1,0.144,2.952531343,,,2.289695384,3.677197743,4.451416738,,,3.554988841,5.414561335,0.0589701,71,1204,0.045663703,0.072276497,0,,,,,,,,,,,,,0.05877193,0.045118679,0.07242518,,,,,,,0.167,,,0.131,0.206,0.397,,,0.317,0.476,9.1,0.048358729,0.061,,,0.236,,,0.192,0.286,0.649770332,12024,18505,,,0.206113813,,,0.165416404,0.250534988,0.3125,5,16,0.177519792,0.449075671,271.6,50,18410,,,8.559919436,34,3972,5.927993048,11.96162943,,,,,,,,,,,,,8.592017738,5.837859196,12.19568334,,,,,,,0.044152826,646,14631,0.03700389,0.051301762,0.000162955,3,18410,,,6136.666667,0.000543508,10,18399,,,1839.9,0.000434806,8,18399,,,2299.875,1818,,,,,,,,,1834,0.51,,,,,,,,,0.51,0.54,,,,,,,,,0.54,0.95561101,12637,13224,0.944301085,0.966920936,0.65155351,2831,4345,0.586194954,0.716912066,0.026485055,280,10572,,,0.085,325,,0.055212766,0.114787234,,,,,,,,,,0.02962963,0,0.179031386,0.105144149,0.071344664,0.138943635,3.582492724,126788,35391,2.863120231,4.301865218,0.1459799,581,3980,0.087248181,0.204711618,11.40684411,21,18410,,,57.17861304,53,92692,42.83070484,74.79103367,,,,,,,,,,,,,57.90519444,43.11422065,76.13463682,,,,8.9,,,,,0,,,,,0.078982597,590,7470,0.05815375,0.099811444,0.063470628,0.043908674,0.083032582,0.009370817,0.002631689,0.016109944,0.014056225,0.003569535,0.024542915,0.830628381,7984,9612,0.807504747,0.853752015,,,,,,,,,,,,,0.752129817,0.703530709,0.800728926,0.434,,9612,0.383239197,0.484760803,80.21370063,,,78.99439979,81.43300147,,,,,,,,,,,,,80.24309782,79.01846588,81.46772977,,,,267.3355309,197,50592,227.3573498,307.3137119,,,,,,,,,,,,,265.6005575,224.9237514,306.2773635,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.092,,,0.078,0.107,0.151,,,0.13,0.175,0.08,,,0.067,0.094,44.5,7,15722,,,0.061,1130,,,,0.048358729,894.5881357,18499,,,,,,,,,,,,,,,,,,,,,,,,,,0.31,,,0.293,0.326,0.05072192,541,10666,0.041190005,0.060253835,0.027465966,115,4187,0.019125541,0.035806392,0.000489157,9,18399,,,2044.333333,0.897325103,218.05,243,,,,,,,,3.009480038,,,,,,,,,3.047533641,2.999244927,,,,,,,,,3.013007404,0.039952944,,,,,1939.651475,,,,,0.713698261,42348,59336,0.630904906,0.796491615,71563,,,63263.08511,79862.91489,,,,,,,,,,62125,19787.80851,104462.1915,77519,73559.68085,81478.31915,,,,,,0.288630653,919,3184,,,,,,,,0.277685396,,71563,,,12.12789416,11,907,,,,,,,,,,,,,,,,,,,,,,,,,,15.1844583,16,92692,8.301484651,25.47694089,17.26146809,,,,,,,,,,,,,15.94096115,8.715071797,26.74622412,,,,,,,,,,,,,,,,,,,,,,,,,,,8.495126886,11,129486,4.240736734,15.2001286,,,,,,,,,,,,,8.919015341,4.452340323,15.95858213,,,,7,,2000,,,0,14,0.751087719,10703,14250,,,0.731,,,,,13.97061405,,,,,0.806073522,6052,7508,0.78001537,0.832131673,0.077580267,563,7257,0.05508346,0.100077075,0.845498135,6348,7508,0.819568322,0.871427949,18399,,,,,0.210609272,3875,18399,,,0.214957335,3955,18399,,,0.008043915,148,18399,,,0.002880591,53,18399,,,0.007011251,129,18399,,,0.00070656,13,18399,,,0.026414479,486,18399,,,0.942659927,17344,18399,,,0.003470839,61,17575,0,0.008338362,0.49828795,9168,18399,,,1,18505,18505,, -19,033,19033,IA,Cerro Gordo County,2024,1,9412.377082,698,114710,8256.339667,10568.4145,0,,,,2,,,,2,,,,2,,,,2,9045.930135,7840.314259,10251.54601,,,,,2,,0.131,,,0.109,0.156,3.121919755,,,2.452666919,3.849683971,4.684130482,,,3.839323733,5.579849713,0.07233907,227,3138,0.063275262,0.081402877,0,,,,,,,0.210084034,0.136891032,0.283277036,0.100436681,0.061505249,0.139368113,0.062833206,0.053551843,0.07211457,,,,,,,0.168,,,0.13,0.208,0.357,,,0.291,0.424,8.6,0.054731594,0.081,,,0.246,,,0.199,0.295,0.918334222,39605,43127,,,0.185384395,,,0.150572228,0.222975276,0.411764706,14,34,0.325063028,0.494397685,379.3,162,42706,,,17.42031134,141,8094,14.5448838,20.29573888,,,,,,,,,,26.9058296,15.94609982,42.52281056,15.47075291,12.51156277,18.42994305,,,,,,,0.052484233,1706,32505,0.044143808,0.060824659,0.001428371,61,42706,,,700.0983607,0.000966776,41,42409,,,1034.365854,0.003324766,141,42409,,,300.7730497,3326,,,,,,,11180,,3334,0.58,,,,,,,,,0.58,0.58,,,,,,0.52,0.27,0.41,0.59,0.937382267,28862,30790,0.925449024,0.94931551,0.630277318,6091,9664,0.571130536,0.6894241,0.027682585,622,22469,,,0.147,1270,,0.104106383,0.189893617,,,,0.152631579,0,0.451532144,,,,0.193349754,0.071911218,0.314788289,0.099666852,0.066225863,0.133107841,3.966734462,115071,29009,3.654640232,4.278828691,0.21220732,1867,8798,0.161678606,0.262736034,17.79609423,76,42706,,,108.9652063,232,212912,94.94353039,122.9868822,,,,,,,251.4458134,120.5780411,462.4178034,,,,109.275332,94.46021578,124.0904482,,,,7.4,,,,,0,,,,,0.095115681,1850,19450,0.07918735,0.111044013,0.072449508,0.058180465,0.086718551,0.013316195,0.004811497,0.021820893,0.014138818,0.006711285,0.02156635,0.798892734,17316,21675,0.773283724,0.824501743,,,,,,,,,,0.72319202,0.575940367,0.870443673,0.83498157,0.816044316,0.853918824,0.126,,21675,0.10355062,0.14844938,76.41060548,,,75.5056972,77.31551376,,,,,,,,,,82.52262773,75.08880438,89.95645109,76.52427476,75.58587711,77.46267241,,,,423.7570747,698,114710,389.2289906,458.2851589,,,,,,,,,,,,,419.5234513,383.7006773,455.3462253,,,,61.11535523,24,39270,39.15776128,90.93480416,,,,,,,,,,,,,49.85510859,28.49650221,80.96157292,,,,7.561436673,24,3174,4.844755153,11.2508184,,,,,,,,,,,,,,,,,,,,,,0.098,,,0.083,0.115,0.154,,,0.132,0.179,0.085,,,0.072,0.1,93.4,34,36411,,,0.081,3480,,,,0.054731594,2416.454614,44151,,,18.85917695,24,127259,12.08343053,28.0609604,,,,,,,,,,,,,18.45618414,11.42466887,28.21223798,,,,0.324,,,0.307,0.339,0.062468322,1479,23676,0.051744918,0.073191727,0.026793431,248,9256,0.018453006,0.035133857,0.00240515,102,42409,,,415.7745098,0.89724359,349.925,390,,,,,,,,2.875142879,,,,,,,2.000781544,,2.97712965,2.743933805,,,,,,,2.247077796,2.450778279,2.82372095,0.040393289,,,,,2521.485667,,,,,0.745443837,45566,61126,0.682626072,0.808261603,63279,,,55365.12766,71192.87234,26700,11271.40426,42128.59575,36793,96.31914894,73489.68085,,,,61804,41365.19149,82242.80851,63691,61254.40426,66127.59575,,,,,,0.420633484,2324,5525,,,56.26052892,,,,,0.294220832,,63279,,,8.300567934,19,2289,,,4.013391349,12,298999,2.073777875,7.010587008,,,,,,,,,,,,,4.078454637,2.03594986,7.29748193,,,,23.027387,46,212912,16.59611509,31.12633764,21.60517021,,,,,,,,,,,,,21.66131286,15.08789808,30.12564252,,,,9.393552266,20,212912,5.737825762,14.50757961,,,,,,,,,,,,,8.888424135,5.177834607,14.23122808,,,,15.71911612,47,298999,11.54981527,20.9030921,,,,,,,,,,,,,15.57228134,11.22313067,21.04920054,,,,36,,4000,,,11,133,0.710689758,23801,33490,,,0.682,,,,,107.2616659,,,,,0.716246787,13931,19450,0.693949043,0.73854453,0.085810491,1631,19007,0.068522091,0.103098891,0.864473008,16814,19450,0.845257411,0.883688605,42409,,,,,0.206772147,8769,42409,,,0.237826876,10086,42409,,,0.019689217,835,42409,,,0.003819944,162,42409,,,0.012143649,515,42409,,,0.00473956,201,42409,,,0.05699262,2417,42409,,,0.887618194,37643,42409,,,0.002820909,115,40767,0,0.005932974,0.509184371,21594,42409,,,0.203283326,8767,43127,, -19,035,19035,IA,Cherokee County,2024,1,7430.148757,179,29921,5661.254646,9199.042868,0,,,,2,,,,2,,,,2,,,,2,7409.348025,5570.936796,9247.759255,,,,,2,,0.139,,,0.116,0.165,3.291843366,,,2.555279849,4.093406006,4.70806209,,,3.749095351,5.708726868,0.066588785,57,856,0.049887256,0.083290314,0,,,,,,,,,,,,,0.066666667,0.049160884,0.084172449,,,,,,,0.186,,,0.146,0.228,0.425,,,0.348,0.503,8.6,0.060338979,0.079,,,0.264,,,0.214,0.316,0.765225596,8921,11658,,,0.185926627,,,0.150254963,0.22497951,0.444444444,4,9,0.264827841,0.599456043,347.7,40,11503,,,18.12112542,38,2097,12.82358686,24.87266043,,,,,,,,,,,,,18.34862385,12.70695542,25.64036271,,,,,,,0.058506273,499,8529,0.048974358,0.068038188,0.000521603,6,11503,,,1917.166667,0.000261074,3,11491,,,3830.333333,0.001392394,16,11491,,,718.1875,2749,,,,,,,,,2773,0.53,,,,,,,,,0.53,0.42,,,,,,,,,0.42,0.931801693,7706,8270,0.914435522,0.949167864,0.649678973,1619,2492,0.543725639,0.755632306,0.022705157,140,6166,,,0.124,311,,0.079914894,0.168085106,,,,,,,,,,0.104072398,0,0.335178416,0.196202532,0.108832806,0.283572257,4.074232023,117509,28842,3.05098432,5.097479726,0.240711463,609,2530,0.133448357,0.347974568,14.77875337,17,11503,,,84.85812782,48,56565,62.56768465,112.5095663,,,,,,,,,,,,,85.89589418,62.65305463,114.9354645,,,,6.6,,,,,0,,,,,0.081208687,430,5295,0.04933604,0.113081335,0.05986654,0.032905116,0.086827963,0.006610009,0,0.016980561,0.01605288,0.000805904,0.031299857,0.767231059,4486,5847,0.731646768,0.802815349,,,,,,,,,,,,,0.774289688,0.727969221,0.820610155,0.168,,5847,0.130340642,0.205659358,77.88356474,,,76.36899186,79.39813762,,,,,,,,,,,,,77.79429933,76.23825452,79.35034413,,,,393.5905638,179,29921,329.8295145,457.3516132,,,,,,,,,,,,,397.685675,331.3022133,464.0691367,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.102,,,0.086,0.119,0.159,,,0.136,0.184,0.09,,,0.076,0.105,,,,,,0.079,920,,,,0.060338979,728.4121572,12072,,,,,,,,,,,,,,,,,,,,,,,,,,0.329,,,0.311,0.346,0.068787475,413,6004,0.056872581,0.080702369,0.036039454,95,2636,0.02531605,0.046762858,0.001740493,20,11491,,,574.55,0.96622807,110.15,114,,,,,,,,3.07166491,,,,,,,,,3.144534547,2.967719284,,,,,,,,,3.026158103,0.047524475,,,,,971.5214,,,,,0.704037683,38413,54561,0.576201191,0.831874174,65985,,,56795.04255,75174.95745,,,,,,,,,,,,,63396,56886.89362,69905.10638,,,,,,0.369036027,758,2054,,,,,,,,0.240524362,,65985,,,14.68189233,9,613,,,,,,,,,,,,,,,,,,,,,,,,,,23.75819655,13,56565,11.86000612,42.50997631,22.98240962,,,,,,,,,,,,,23.31730535,11.18155425,42.88135473,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1100,,,-888,19,0.738165345,6518,8830,,,0.704,,,,,14.87467214,,,,,0.740812755,3810,5143,0.702264609,0.779360901,0.092942851,457,4917,0.052942665,0.132943037,0.827727008,4257,5143,0.789235282,0.866218733,11491,,,,,0.222173875,2553,11491,,,0.250369855,2877,11491,,,0.011052128,127,11491,,,0.004438256,51,11491,,,0.009485684,109,11491,,,0.004351231,50,11491,,,0.051779654,595,11491,,,0.912888347,10490,11491,,,0.000454794,5,10994,0,0.007202036,0.500304586,5749,11491,,,0.596414479,6953,11658,, -19,037,19037,IA,Chickasaw County,2024,1,6084.062256,152,32262,4465.358969,7702.765543,0,,,,2,,,,2,,,,2,,,,2,6209.233428,4518.075634,7900.391222,,,,,2,,0.129,,,0.107,0.155,3.041918199,,,2.34105845,3.816445263,4.47781496,,,3.564366484,5.465480461,0.044652129,43,963,0.031607108,0.05769715,0,,,,,,,,,,,,,0.04778157,0.033680238,0.061882902,,,,,,,0.179,,,0.141,0.222,0.392,,,0.316,0.474,9.3,0.031657152,0.06,,,0.243,,,0.194,0.293,0.721112221,8662,12012,,,0.200338546,,,0.161939452,0.245412715,0.2,1,5,0.015594715,0.47750127,302.9,36,11887,,,9.185303514,23,2504,5.822694504,13.78246521,,,,,,,,,,,,,7.675906183,4.549228478,12.13124105,,,,,,,0.062526813,583,9324,0.052994898,0.072058727,0.000336502,4,11887,,,2971.75,0.000426767,5,11716,,,2343.2,0.000682827,8,11716,,,1464.5,1646,,,,,,,,,1653,0.55,,,,,,,,,0.55,0.59,,,,,,,,,0.59,0.936434486,7690,8212,0.919875129,0.952993844,0.610565111,1491,2442,0.522620556,0.698509665,0.025083107,166,6618,,,0.098,261,,0.05987234,0.13612766,,,,,,,0.065217391,0,0.667076472,0.061068702,0,0.311760125,0.029698942,0.010370347,0.049027538,3.276313187,115952,35391,2.836829419,3.715796955,0.120486235,337,2797,0.054291795,0.186680675,19.34886851,23,11887,,,65.41099911,39,59623,46.5136147,89.41898909,,,,,,,,,,,,,66.92143775,47.35759232,91.85490185,,,,7.8,,,,,0,,,,,0.082272282,420,5105,0.056635273,0.107909291,0.073035926,0.046095441,0.099976411,0.005876592,0,0.014099651,0.008619001,0.003770741,0.013467261,0.846911958,5156,6088,0.811840986,0.88198293,,,,,,,,,,,,,0.844051447,0.795485073,0.892617821,0.247,,6088,0.203238103,0.290761897,78.47853097,,,77.05724618,79.89981576,,,,,,,,,,,,,78.31239627,76.85010189,79.77469065,,,,324.1067136,152,32262,268.1136445,380.0997828,,,,,,,,,,,,,330.2607322,272.449846,388.0716184,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.097,,,0.082,0.113,0.156,,,0.133,0.18,0.081,,,0.068,0.095,50.3,5,9940,,,0.06,730,,,,0.031657152,393.7833136,12439,,,,,,,,,,,,,,,,,,,,,,,,,,0.315,,,0.298,0.333,0.073126143,480,6564,0.06001976,0.086232526,0.038911846,113,2904,0.026996952,0.050826739,0.000597474,7,11716,,,1673.714286,0.933333333,126,135,,,,,,,,3.01585493,,,,,,,,,3.020561296,3.123534851,,,,,,,,,3.113800525,0.051724603,,,,,1843.715,,,,,0.832525977,45028,54086,0.76482506,0.900226894,74077,,,68069.51064,80084.48936,,,,,,,,,,76724,71591.06383,81856.93617,72369,67152.65957,77585.34043,,,,,,0.293908629,579,1970,,,,,,,,0.220999771,,74077,,,7.416563659,6,809,,,,,,,,,,,,,,,,,,,,,,,,,,15.71053559,10,59623,7.183857278,29.82349029,16.77205105,,,,,,,,,,,,,16.56973891,7.576739749,31.45452584,,,,,,,,,,,,,,,,,,,,,,,,,,,11.94129659,10,83743,5.726315867,21.96046958,,,,,,,,,,,,,,,,,,,,,1300,,,-888,15,0.73392363,6631,9035,,,0.711,,,,,7.8359164,,,,,0.817276423,4021,4920,0.794670169,0.839882677,0.074680092,356,4767,0.048360617,0.100999567,0.839837398,4132,4920,0.804433257,0.87524154,11716,,,,,0.230283373,2698,11716,,,0.228917719,2682,11716,,,0.005974735,70,11716,,,0.001621714,19,11716,,,0.003755548,44,11716,,,0.000170707,2,11716,,,0.031153978,365,11716,,,0.949812223,11128,11716,,,0.004918179,55,11183,0,0.014547938,0.491720724,5761,11716,,,1,12012,12012,, -19,039,19039,IA,Clarke County,2024,1,9772.29531,169,26247,7455.556414,12089.03421,0,,,,2,,,,2,,,,2,,,,2,11565.55554,8581.522704,14549.58837,,,,,2,,0.174,,,0.147,0.202,3.668901957,,,2.875069231,4.573091297,4.820212479,,,3.818944906,5.918803898,0.067285383,58,862,0.050561497,0.084009269,0,,,,,,,,,,0.059907834,0.028332116,0.091483552,0.066343042,0.046720594,0.08596549,,,,,,,0.212,,,0.172,0.252,0.43,,,0.349,0.514,8.5,0.030609641,0.096,,,0.306,,,0.253,0.361,0.62340993,6077,9748,,,0.178441061,,,0.142743539,0.217082397,0.153846154,2,13,0.034991468,0.324991408,296.4,29,9785,,,22.1021611,45,2036,16.12146797,29.5744305,,,,,,,,,,25,12.91786481,43.66996885,20.63273728,13.9208212,29.4545154,,,,,,,0.073961113,582,7869,0.06204622,0.085876007,0.000510986,5,9785,,,1957,0.000309534,3,9692,,,3230.666667,0.000309534,3,9692,,,3230.666667,2987,,,,,,,,,3052,0.41,,,,,,,,,0.41,0.4,,,,,,,,0.23,0.4,0.844824853,5330,6309,0.828305897,0.86134381,0.461461462,922,1998,0.346903369,0.576019554,0.029141717,146,5010,,,0.153,378,,0.099382979,0.206617021,,,,,,,,,,0.232198142,0.061671255,0.40272503,0.287774295,0.137758315,0.437790275,4.732835702,118567,25052,3.453527715,6.012143688,0.140160643,349,2490,0.050233349,0.230087936,7.153806847,7,9785,,,118.3181914,56,47330,89.37629027,153.6460131,,,,,,,,,,,,,132.7917513,98.87218101,174.5966291,,,,7.1,,,,,0,,,,,0.167088608,660,3950,0.120236789,0.213940426,0.135843297,0.08538982,0.186296773,0.063037975,0.029570307,0.096505642,0.002531646,0,0.008502742,0.763134058,3370,4416,0.697350923,0.828917193,,,,,,,,,,,,,0.737655172,0.689779867,0.785530477,0.408,,4416,0.319612688,0.496387312,74.75375967,,,72.96982102,76.53769832,,,,,,,,,,,,,73.33773971,71.19426067,75.48121876,,,,482.1587781,169,26247,405.2192198,559.0983364,,,,,,,,,,,,,538.1535942,447.8748753,628.4323131,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.117,,,0.1,0.135,0.166,,,0.144,0.191,0.103,,,0.087,0.12,74.7,6,8033,,,0.096,940,,,,0.030609641,284.2411298,9286,,,,,,,,,,,,,,,,,,,,,,,,,,0.341,,,0.325,0.355,0.089505024,481,5374,0.074015663,0.104994386,0.040933435,107,2614,0.026635563,0.055231308,0.001341312,13,9692,,,745.5384615,0.920132743,103.975,113,,,,,,,,2.929495702,,,,,,,,2.667188549,3.039895459,2.763257378,,,,,,,,2.290394307,2.99422736,0.081049909,,,,,-3244.1775,,,,,0.850526316,44440,52250,0.559906737,1.141145894,65129,,,56138.02128,74119.97872,,,,,,,,,,39717,8112.744681,71321.25532,67807,58976.87234,76637.12766,,,,,,0.527418361,856,1623,,,,,,,,0.291897619,,65129,,,6.4,4,625,,,,,,,,,,,,,,,,,,,,,,,,,,40.63766049,21,47330,24.46652625,63.46074073,44.36932178,,,,,,,,,,,,,48.10799263,28.51184536,76.03136895,,,,31.6923727,15,47330,17.73798042,52.27174915,,,,,,,,,,,,,39.05639744,21.85956916,64.41758806,,,,25.79744454,17,65898,15.02796211,41.30420774,,,,,,,,,,,,,24.03090744,12.79544613,41.0935836,,,,32.5,,1200,,,6,33,0.698056801,4670,6690,,,0.665,,,,,27.63947038,,,,,0.724413509,2810,3879,0.655517925,0.793309092,0.120603015,456,3781,0.060831088,0.180374943,0.815674143,3164,3879,0.779346991,0.852001294,9692,,,,,0.258460586,2505,9692,,,0.194593479,1886,9692,,,0.011762278,114,9692,,,0.012381345,120,9692,,,0.010008254,97,9692,,,0.004127115,40,9692,,,0.181077177,1755,9692,,,0.779715229,7557,9692,,,0.019777778,178,9000,0.005574426,0.03398113,0.489888568,4748,9692,,,0.458042675,4465,9748,, -19,041,19041,IA,Clay County,2024,1,7419.454068,224,43669,5791.184237,9047.723898,0,,,,2,,,,2,,,,2,,,,2,7286.445873,5576.611674,8996.280072,,,,,2,,0.13,,,0.108,0.155,3.200134704,,,2.516334575,3.921869745,4.334209752,,,3.478075127,5.212520077,0.070023604,89,1271,0.055994126,0.084053081,0,,,,,,,,,,,,,0.069384215,0.054716686,0.084051744,,,,,,,0.175,,,0.138,0.217,0.374,,,0.307,0.444,8.5,0.045675752,0.088,,,0.257,,,0.21,0.306,0.745727539,12218,16384,,,0.190912982,,,0.156513992,0.229067544,0.181818182,2,11,0.044108943,0.367070091,170.3,28,16440,,,11.72676634,40,3411,8.377773803,15.9685274,,,,,,,,,,47.05882353,24.31598082,82.20229431,8.994003997,5.927105307,13.08580361,,,,,,,0.0584512,748,12797,0.048919285,0.067983114,0.000851582,14,16440,,,1174.285714,0.001031867,17,16475,,,969.1176471,0.00400607,66,16475,,,249.6212121,2216,,,,,,,,,2231,0.4,,,,,,,,,0.4,0.55,,,,,,,,,0.56,0.954868515,10748,11256,0.941781662,0.967955368,0.730853995,2653,3630,0.619242545,0.842465444,0.026794035,230,8584,,,0.124,457,,0.076340426,0.171659575,,,,,,,,,,0.787545788,0.373773358,1,0.113201727,0.05400894,0.172394515,4.238295654,113794,26849,3.211782906,5.264808401,0.296306069,1123,3790,0.21175146,0.380860678,13.99026764,23,16440,,,75.55489497,61,80736,57.79350793,97.0534234,,,,,,,,,,,,,78.57865857,59.81771566,101.3607445,,,,6.5,,,,,0,,,,,0.10501355,775,7380,0.073502651,0.136524449,0.095068493,0.063182182,0.126954804,0.007317073,0,0.015540415,0.004742547,0,0.010675569,0.78605158,6492,8259,0.751206521,0.820896639,,,,,,,,,,,,,0.801622331,0.755278433,0.847966229,0.211,,8259,0.161213421,0.260786579,78.14967729,,,76.7598649,79.53948969,,,,,,,,,,,,,78.16461832,76.71871803,79.61051861,,,,359.2167976,224,43669,308.6178145,409.8157807,,,,,,,,,,,,,354.8248653,303.3767809,406.2729497,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.099,,,0.084,0.116,0.153,,,0.131,0.176,0.084,,,0.07,0.098,50.7,7,13796,,,0.088,1440,,,,0.045675752,761.2777649,16667,,,,,,,,,,,,,,,,,,,,,,,,,,0.318,,,0.3,0.334,0.068786574,623,9057,0.05687168,0.080701468,0.034518026,135,3911,0.023794622,0.04524143,0.001699545,28,16475,,,588.3928571,0.975,136.5,140,,,,,,,,2.99855034,,,,,,,,,2.998910688,3.527554892,,,,,,,,,3.541739875,0.016726326,,,,,2445.024,,,,,0.740945062,42039,56737,0.612835622,0.869054503,68542,,,60790.17021,76293.82979,38750,38522.42553,38977.57447,,,,,,,61607,20813.97872,102400.0213,62824,54188.08511,71459.91489,,,,,,0.428197294,981,2291,,,,,,,,0.258600566,,68542,,,7.407407407,7,945,,,,,,,,,,,,,,,,,,,,,,,,,,27.4159128,21,80736,16.50617043,42.81334391,26.01070155,,,,,,,,,,,,,27.76954368,16.45799153,43.88785118,,,,16.10186286,13,80736,8.573563827,27.53467588,,,,,,,,,,,,,17.31394172,9.21894477,29.60736764,,,,11.44608016,13,113576,6.09455562,19.57314566,,,,,,,,,,,,,12.27642737,6.53668054,20.99306469,,,,40,,1600,,,13,51,0.725647249,8969,12360,,,0.695,,,,,70.13923237,,,,,0.727058824,5253,7225,0.677780656,0.776336991,0.089494719,627,7006,0.057990111,0.120999327,0.861453287,6224,7225,0.824113175,0.8987934,16475,,,,,0.225493172,3715,16475,,,0.22707132,3741,16475,,,0.010561457,174,16475,,,0.004248862,70,16475,,,0.00861912,142,16475,,,0.000364188,6,16475,,,0.044248862,729,16475,,,0.921456753,15181,16475,,,0.002913564,45,15445,0,0.009730653,0.503004552,8287,16475,,,0.330627441,5417,16384,, -19,043,19043,IA,Clayton County,2024,1,6440.978853,244,46224,5016.7759,7865.181806,0,,,,2,,,,2,,,,2,,,,2,6383.892043,4930.102742,7837.681344,,,,,2,,0.144,,,0.119,0.17,3.351365399,,,2.634320874,4.256028704,4.864438231,,,3.92184489,5.978650365,0.054836253,72,1313,0.042521913,0.067150592,0,,,,,,,,,,,,,0.05450237,0.041997559,0.067007181,,,,,,,0.197,,,0.157,0.239,0.402,,,0.329,0.479,8.7,0.010644948,0.095,,,0.271,,,0.222,0.323,0.636038256,10840,17043,,,0.189263022,,,0.152322076,0.230941408,0.333333333,6,18,0.206402932,0.459068619,211.8,36,16998,,,7.715133531,26,3370,5.03978137,11.30445819,,,,,,,,,,,,,6.80492547,4.212356119,10.40205144,,,,,,,0.074001719,947,12797,0.063278315,0.084725123,0.000411813,7,16998,,,2428.285714,0.000469842,8,17027,,,2128.375,0.000176191,3,17027,,,5675.666667,2350,,,,,,,,,2368,0.51,,,,,,,,,0.51,0.4,,,,,,,,,0.4,0.90721482,11166,12308,0.889320329,0.925109311,0.572860006,2001,3493,0.503612585,0.642107426,0.038233766,368,9625,,,0.126,454,,0.080723404,0.171276596,,,,,,,,,,0.709219858,0.344311,1,0.125379478,0.074990652,0.175768304,3.951371747,112053,28358,3.456871223,4.445872271,0.187034483,678,3625,0.134201238,0.239867728,22.94387575,39,16998,,,72.36305579,63,87061,55.60575895,92.58378297,,,,,,,,,,,,,75.57944239,58.07731872,96.69893863,,,,8.4,,,,,0,,,,,0.123595506,935,7565,0.098281561,0.148909451,0.090232558,0.067385003,0.113080113,0.01784534,0.009552161,0.02613852,0.032385988,0.019324465,0.045447512,0.770738003,6569,8523,0.727618959,0.813857047,,,,,,,,,,,,,0.760110161,0.712660181,0.807560141,0.288,,8523,0.251664458,0.324335542,79.39707181,,,78.09823948,80.69590415,,,,,,,,,,,,,79.33168715,78.02370872,80.63966559,,,,331.9539754,244,46224,285.3709593,378.5369914,,,,,,,,,,,,,331.3923127,283.9134325,378.8711928,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.105,,,0.09,0.123,0.164,,,0.142,0.187,0.09,,,0.076,0.106,83,12,14466,,,0.095,1630,,,,0.010644948,192.9822627,18129,,,,,,,,,,,,,,,,,,,,,,,,,,0.314,,,0.299,0.33,0.084275772,775,9196,0.0699779,0.098573644,0.048644338,183,3762,0.033154976,0.0641337,0.000528572,9,17027,,,1891.888889,0.91407563,217.55,238,,,,,,,,3.182915952,,,,,,,,,3.187978053,2.983999198,,,,,,,,,3.003776082,0.038643576,,,,,1762.0385,,,,,0.698745964,39171,56059,0.626899573,0.770592355,64486,,,56476.80851,72495.19149,,,,,,,,,,45729,16557.76596,74900.23404,61478,56292.6383,66663.3617,,,,,,0.336392517,953,2833,,,,,,,,0.275532674,,64486,,,14.89572989,15,1007,,,,,,,,,,,,,,,,,,,,,,,,,,20.47197391,17,87061,11.19221864,34.34849363,19.52653886,,,,,,,,,,,,,21.50023501,11.75437855,36.07374103,,,,14.93205913,13,87061,7.950692608,25.53427587,,,,,,,,,,,,,15.59575795,8.304084278,26.66922107,,,,15.53620344,19,122295,9.353809366,24.26170618,,,,,,,,,,,,,16.20192718,9.754618542,25.30131625,,,,16.47058824,,1700,,,7,21,0.705441177,9594,13600,,,0.626,,,,,9.497447009,,,,,0.752950865,5486,7286,0.723211475,0.782690254,0.113008824,794,7026,0.08625942,0.139758229,0.813340653,5926,7286,0.783686027,0.842995279,17027,,,,,0.214306689,3649,17027,,,0.250484525,4265,17027,,,0.007811124,133,17027,,,0.002642861,45,17027,,,0.002760322,47,17027,,,0.000998414,17,17027,,,0.023609561,402,17027,,,0.952898338,16225,17027,,,0.007741376,125,16147,0.001751202,0.013731551,0.490691255,8355,17027,,,0.990729332,16885,17043,, -19,045,19045,IA,Clinton County,2024,1,7856.233824,733,126943,6925.902748,8786.5649,0,,,,2,,,,2,18008.6509,10673.06785,28461.43243,1,,,,2,7606.11896,6648.384363,8563.853558,,,,,2,,0.142,,,0.118,0.167,3.638199318,,,2.831714603,4.466984915,5.069465304,,,4.104327367,6.057956164,0.078253926,294,3757,0.069665883,0.086841969,0,,,,,,,0.12254902,0.077549556,0.167548484,0.073170732,0.037521702,0.108819761,0.076828519,0.067677916,0.085979122,,,,,,,0.186,,,0.146,0.227,0.413,,,0.344,0.481,8,0.083519335,0.092,,,0.257,,,0.21,0.305,0.733254412,34067,46460,,,0.203398767,,,0.166579592,0.243787327,0.333333333,8,24,0.22460658,0.441421063,327.1,152,46463,,,22.17180571,215,9697,19.2080807,25.13553073,,,,,,,63.36088154,40.16536374,95.07243222,45.70383912,29.5771149,67.46788245,18.69492736,15.7705728,21.61928193,,,,31.15264798,14.9389056,57.29082879,0.054725565,2033,37149,0.046385139,0.06306599,0.000473495,22,46463,,,2111.954546,0.0005826,27,46344,,,1716.444444,0.001812532,84,46344,,,551.7142857,2175,,,,,,,1722,,2129,0.5,,,,,,,,,0.5,0.58,,,,,,0.56,0.28,,0.59,0.92026619,29870,32458,0.906248966,0.934283414,0.629162319,6632,10541,0.570170023,0.688154614,0.03468027,775,22347,,,0.179,1856,,0.123,0.235,,,,,,,0.702830189,0.526686391,0.878973986,0.191318328,0.05196538,0.330671276,0.145949143,0.106171972,0.185726313,4.125684403,117549,28492,3.760982271,4.490386535,0.268693823,2810,10458,0.212501123,0.324886523,13.98962615,65,46463,,,87.62434926,204,232812,75.59988341,99.64881511,,,,,,,,,,,,,89.36930803,76.62801322,102.1106028,,,,9,,,,,0,,,,,0.11758665,2290,19475,0.098713758,0.136459541,0.100363071,0.082961515,0.117764626,0.008934532,0.003757952,0.014111111,0.01309371,0.007734688,0.018452732,0.829137452,17620,21251,0.802559218,0.855715687,,,,,,,,,,,,,0.81937325,0.796483205,0.842263294,0.261,,21251,0.231212766,0.290787234,77.05076946,,,76.27269516,77.82884375,,,,,,,,,,,,,77.16420828,76.36736006,77.9610565,,,,407.6068406,733,126943,376.0521871,439.1614941,,,,,,,682.5215499,432.6601152,1024.11744,,,,403.4722854,371.120637,435.8239339,,,,41.1825906,19,46136,24.79460977,64.3117166,,,,,,,,,,,,,43.98902862,25.62523022,70.4306961,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.106,,,0.09,0.123,0.159,,,0.136,0.183,0.093,,,0.079,0.108,107.8,42,38971,,,0.092,4280,,,,0.083519335,4102.135652,49116,,,19.38485397,27,139284,12.77474091,28.20394478,,,,,,,,,,,,,15.84585156,9.679057794,24.47263255,,,,0.325,,,0.308,0.341,0.06568299,1745,26567,0.054959586,0.076406394,0.028303588,314,11094,0.019963162,0.036644013,0.000884688,41,46344,,,1130.341463,0.915652985,490.79,536,,,0.073504274,172,2340,0.026812624,0.120195923,3.109056923,,,,,,,2.390552764,2.889456759,3.184484589,3.180759289,,,,,,,2.60060143,3.06016842,3.234091359,0.084321823,,,,,2022.384747,,,,,0.694286746,42314,60946,0.633987439,0.754586052,61136,,,54343.31915,67928.68085,118011,58765.38298,177256.617,,,,21054,11399.3617,30708.6383,58047,43335.68085,72758.31915,62099,58224.2766,65973.7234,,,,,,0.415156058,3046,7337,,,64.50903869,,,,,0.287408401,,61136,,,6.964809384,19,2728,,,,,,,,,,,,,,,,,,,,,,,,,,21.39272268,46,232812,15.48201948,28.81585706,19.7584317,,,,,,,,,,,,,22.40167527,16.00408524,30.50472354,,,,11.16780922,26,232812,7.29518376,16.36342804,,,,,,,,,,,,,9.929923114,6.146778915,15.17894229,,,,11.58928784,38,327889,8.201269834,15.90720302,,,,,,,,,,,,,12.06660767,8.451303669,16.70527126,,,,28.33333333,,4800,,,25,111,0.689677329,24687,35795,,,0.711,,,,,80.45909458,,,,,0.733076041,14056,19174,0.714345741,0.75180634,0.094714362,1774,18730,0.078231018,0.111197706,0.83451549,16001,19174,0.817042484,0.851988496,46344,,,,,0.227947523,10564,46344,,,0.206456068,9568,46344,,,0.030920939,1433,46344,,,0.00425082,197,46344,,,0.007573796,351,46344,,,0.000668911,31,46344,,,0.036078025,1672,46344,,,0.899792853,41700,46344,,,0.006933358,304,43846,0.002815829,0.011050887,0.504725531,23391,46344,,,0.301485149,14007,46460,, -19,047,19047,IA,Crawford County,2024,1,6349.017481,200,45883,4996.280386,7701.754575,0,,,,2,,,,2,,,,2,,,,2,7446.487091,5360.7312,9532.242982,,,,,2,,0.179,,,0.154,0.208,3.453250108,,,2.800802397,4.218262939,4.501556745,,,3.751147303,5.381657705,0.067211055,107,1592,0.054911297,0.079510814,0,,,,,,,,,,0.076923077,0.056835387,0.097010767,0.06505102,0.04778791,0.082314131,,,,,,,0.191,,,0.159,0.228,0.389,,,0.335,0.447,7.4,0.113774916,0.106,,,0.302,,,0.259,0.349,0.680605144,11247,16525,,,0.170793105,,,0.141826316,0.204411886,0.090909091,1,11,0.004610648,0.283082638,444.6,72,16193,,,26.99974767,107,3963,21.88382598,32.11566935,,,,,,,,,,35.87443946,27.09916604,46.58594363,21.7714003,15.81913279,29.22708871,,,,,,,0.115340866,1521,13187,0.098660015,0.132021717,0.000185265,3,16193,,,5397.666667,0.000558209,9,16123,,,1791.444444,0.000620232,10,16123,,,1612.3,2463,,,,,,,,,2421,0.47,,,,,,,,0.17,0.48,0.44,,,,,,,,0.11,0.45,0.825319309,8788,10648,0.798988333,0.851650285,0.56459205,2159,3824,0.487792414,0.641391687,0.040401474,318,7871,,,0.151,592,,0.099765957,0.202234043,,,,0.902255639,0.309567969,1,,,,0.247890295,0.100942661,0.39483793,0.192926045,0.120267787,0.265584303,4.471521624,118075,26406,3.086134328,5.85690892,0.326177116,1337,4099,0.191558563,0.460795669,8.028160316,13,16193,,,78.51441215,66,84061,60.72304067,99.88958309,,,,,,,,,,49.03964038,25.33949779,85.66238271,98.0174582,73.42180229,128.2092487,,,,7,,,,,0,,,,,0.151799687,970,6390,0.109155224,0.19444415,0.068104975,0.043941216,0.092268734,0.069640063,0.031063996,0.10821613,0.028951487,0.013681672,0.044221301,0.776450734,5981,7703,0.729545546,0.823355921,,,,,,,,,,0.697510823,0.520717111,0.874304535,0.837783578,0.801392211,0.874174945,0.164,,7703,0.120531045,0.207468955,78.81569335,,,77.52047245,80.11091425,,,,,,,,,,,,,77.82168359,76.11801469,79.52535248,,,,330.4953278,200,45883,282.7705646,378.2200909,,,,,,,,,,,,,365.247621,303.9642959,426.5309462,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.115,,,0.099,0.131,0.16,,,0.139,0.182,0.109,,,0.094,0.125,90.1,12,13325,,,0.106,1760,,,,0.113774916,1945.09596,17096,,,,,,,,,,,,,,,,,,,,,,,,,,0.331,,,0.318,0.343,0.135964437,1254,9223,0.114517628,0.157411245,0.068187218,287,4209,0.046740409,0.089634026,0.000434162,7,16123,,,2303.285714,0.922664835,167.925,182,,,,,,,,3.005886134,,,,,,,,2.759444498,3.338639942,2.783978105,,,,,,,,2.551767466,3.259497619,0.165805982,,,,,-4789.57425,,,,,0.720376039,39540,54888,0.599239748,0.841512329,67363,,,58716.3617,76009.6383,,,,,,,,,,59637,47710.19149,71563.80851,61426,55964.21277,66887.78723,,,,,,0.497877898,1525,3063,,,58.66060026,,,,,0.251829639,,67363,,,7.035175879,7,995,,,,,,,,,,,,,,,,,,,,,,,,,,13.51551329,12,84061,6.746895539,24.18298665,14.27534766,,,,,,,,,,,,,19.81262059,8.553683311,39.03876091,,,,,,,,,,,,,,,,,,,,,,,,,,,19.47584572,23,118095,12.34601553,29.22333113,,,,,,,,,,32.52513306,16.23642924,58.19644741,15.59859613,8.060022239,27.24760828,,,,22.63157895,,1900,,,14,29,0.652439581,7154,10965,,,0.666,,,,,67.26838644,,,,,0.737206308,4581,6214,0.574139074,0.900273542,0.064855688,382,5890,0.02524086,0.104470515,0.846958481,5263,6214,0.632981453,1,16123,,,,,0.247658624,3993,16123,,,0.183836755,2964,16123,,,0.031693854,511,16123,,,0.018979098,306,16123,,,0.027290207,440,16123,,,0.004155554,67,16123,,,0.306022452,4934,16123,,,0.624325498,10066,16123,,,0.07682359,1188,15464,0.051158491,0.102488689,0.482106308,7773,16123,,,0.507291982,8383,16525,, -19,049,19049,IA,Dallas County,2024,1,4130.451678,697,279474,3699.067947,4561.835409,0,,,,2,,,,2,,,,2,3774.070131,2236.753148,5964.657906,1,4190.377434,3719.477712,4661.277157,,,,,2,,0.097,,,0.08,0.117,2.694644958,,,2.090008722,3.313824113,4.129312397,,,3.36518604,4.874787227,0.06224613,567,9109,0.057284535,0.067207725,0,,,,0.092624357,0.069091321,0.116157393,0.104615385,0.071340468,0.137890302,0.056034483,0.038947822,0.073121144,0.058243243,0.05290704,0.063579446,,,,,,,0.113,,,0.086,0.148,0.35,,,0.294,0.405,9.6,0.023994583,0.048,,,0.186,,,0.152,0.227,0.682086318,67989,99678,,,0.240491063,,,0.201938732,0.280203834,0.304347826,7,23,0.193028658,0.417911766,328.5,341,103796,,,7.364057547,151,20505,6.189471679,8.538643415,,,,,,,,,,27.44063325,20.49397741,35.98473971,5.42881542,4.359784564,6.680624521,,,,,,,0.042734949,3902,91307,0.036777502,0.048692396,0.000423908,44,103796,,,2359,0.000286995,31,108016,,,3484.387097,0.000388831,42,108016,,,2571.809524,2062,,,,,,,,,2071,0.52,,,,,,0.83,,0.16,0.52,0.59,,,,,,0.67,0.5,0.2,0.6,0.96271336,63283,65734,0.956265717,0.969161002,0.849332857,26162,30803,0.805895004,0.89277071,0.01996133,1084,54305,,,0.049,1401,,0.032319149,0.065680851,,,,,,,0.091415831,0,0.221932201,0.154661953,0.04069336,0.268630546,0.046699876,0.030991029,0.062408722,4.001679499,183465,45847,3.69049566,4.312863338,0.115339058,3116,27016,0.091819155,0.138858961,9.1525685,95,103796,,,37.9537219,179,471627,32.39360495,43.51383886,,,,,,,,,,,,,40.1762734,33.95089534,46.40165146,,,,7.5,,,,,0,,,,,0.083792568,2965,35385,0.069100288,0.098484847,0.063591199,0.049928481,0.077253918,0.018651971,0.011347432,0.02595651,0.003391268,0.001414416,0.005368119,0.740693384,40550,54746,0.716138726,0.765248042,,,,0.608695652,0.459910755,0.75748055,0.599351176,0.401309836,0.797392516,0.607460036,0.524902636,0.690017435,0.717472724,0.691077606,0.743867843,0.229,,54746,0.205530381,0.252469619,82.05458407,,,81.46508745,82.6440807,,,,88.06007226,82.10594384,94.01420067,93.65534811,73.47929826,113.831398,87.56650848,77.03616824,98.09684872,81.84056586,81.23182732,82.4493044,,,,233.9858254,697,279474,216.5481359,251.4235149,,,,,,,,,,184.6287907,109.4227225,291.7930876,239.4539005,220.8440384,258.0637626,,,,32.90878042,37,112432,23.17081842,45.36041887,,,,,,,,,,,,,26.83843264,17.1958902,39.93346036,,,,3.112494442,28,8996,2.068229953,4.49842107,,,,,,,,,,,,,2.98102981,1.868195511,4.513314958,,,,,,,0.077,,,0.065,0.092,0.128,,,0.109,0.149,0.072,,,0.061,0.085,81.1,68,83827,,,0.048,4670,,,,0.023994583,1586.881728,66135,,,8.497274075,25,294212,5.498987753,12.54365277,,,,,,,,,,,,,8.907820256,5.58248353,13.48654692,,,,0.252,,,0.236,0.266,0.049677123,3131,63027,0.041336697,0.058017548,0.028109318,829,29492,0.019768892,0.036449743,0.000185158,20,108016,,,5400.8,0.969904871,1274.455,1314,,,0.069712059,322,4619,0.028999674,0.110424444,3.435587862,,,,,,3.573975531,2.896942569,2.894142993,3.506596366,3.573213494,,,,,,3.926434013,2.422612196,3.057319848,3.644357643,0.109866095,,,,,2063.627833,,,,,0.730685312,58940,80664,0.687451201,0.773919423,109138,,,97988.04255,120287.9575,53894,53432.89362,54355.10638,116328,49848.85106,182807.1489,81588,65169.2766,98006.7234,64515,45560.78723,83469.21277,102449,95671.80851,109226.1915,,,,,,0.186504351,3922,21029,,,48.84038381,,,,,0.246742656,,109138,,,8.630447086,61,7068,,,,,,,,,,,,,,,,,,,,,,,,,,10.84133797,50,471627,8.020481515,14.33282374,10.6015983,,,,,,,,,,,,,10.92812815,7.876033546,14.77165458,,,,5.72486308,27,471627,3.772720843,8.329375215,,,,,,,,,,,,,5.775339301,3.661069703,8.665844617,,,,4.872099529,31,636276,3.310355251,6.915556379,,,,,,,,,,,,,5.552542787,3.746277302,7.926600085,,,,23.13043478,,11500,,,11,255,0.902270897,56022,62090,,,0.713,,,,,90.76151352,,,,,0.7040065,27728,39386,0.687232713,0.720780286,0.068311048,2631,38515,0.055499869,0.081122226,0.908013,35763,39386,0.898827073,0.917198926,108016,,,,,0.264599689,28581,108016,,,0.128045845,13831,108016,,,0.033152496,3581,108016,,,0.003703155,400,108016,,,0.05325137,5752,108016,,,0.001055399,114,108016,,,0.066055029,7135,108016,,,0.829164198,89563,108016,,,0.01876239,1751,93325,0.013982731,0.023542048,0.500944305,54110,108016,,,0.21348743,21280,99678,, -19,051,19051,IA,Davis County,2024,1,7341.841792,117,25075,5298.062707,9385.620876,0,,,,2,,,,2,,,,2,,,,2,7379.515693,5297.592734,9461.438652,,,,,2,,0.15,,,0.123,0.182,3.410194485,,,2.640808606,4.254993277,4.786909783,,,3.781601935,5.8787015,0.055454546,61,1100,0.041929469,0.068979622,0,,,,,,,,,,,,,0.052093023,0.038809157,0.065376889,,,,,,,0.197,,,0.153,0.244,0.369,,,0.293,0.451,9.2,0.033285946,0.063,,,0.269,,,0.218,0.325,0.412294182,3756,9110,,,0.196598245,,,0.159258379,0.239683308,0,0,5,0,0.316144538,262.6,24,9138,,,9.90990991,22,2220,6.21048778,15.0037227,,,,,,,,,,,,,9.433962264,5.762509238,14.56998958,,,,,,,0.124500666,935,7510,0.106628325,0.142373006,0.000218866,2,9138,,,4569,0.000219058,2,9130,,,4565,0.000109529,1,9130,,,9130,1234,,,,,,,,,1244,0.53,,,,,,,,,0.53,0.43,,,,,,,,,0.44,0.791505792,4510,5698,0.745788079,0.837223504,0.549367089,1085,1975,0.452709017,0.646025161,0.024057368,104,4323,,,0.14,377,,0.086382979,0.193617021,,,,,,,,,,,,,0.142180095,0.070655081,0.213705109,3.323254697,124529,37472,2.407966905,4.238542488,0.094936709,255,2686,0.036612351,0.153261067,5.471656818,5,9138,,,68.62658284,31,45172,46.6284335,97.4099564,,,,,,,,,,,,,68.77736766,46.40380115,98.1839689,,,,7.6,,,,,0,,,,,0.102201258,325,3180,0.070959687,0.133442828,0.05088,0.022257679,0.079502321,0.056289308,0.024648174,0.087930443,0.020440252,0.001372134,0.039508369,0.655422289,2623,4002,0.597978255,0.712866322,,,,,,,,,,,,,0.606147935,0.538530649,0.67376522,0.34,,4002,0.262626549,0.417373451,78.38754269,,,76.55563144,80.21945395,,,,,,,,,,,,,78.25006907,76.39542486,80.10471328,,,,376.4497881,117,25075,303.9293436,448.9702326,,,,,,,,,,,,,381.8861693,307.9353036,455.8370351,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.107,,,0.09,0.126,0.165,,,0.141,0.191,0.086,,,0.072,0.102,0,0,7176,,,0.063,570,,,,0.033285946,291.3518873,8753,,,,,,,,,,,,,,,,,,,,,,,,,,0.307,,,0.289,0.324,0.139174177,664,4771,0.116535879,0.161812475,0.098947368,282,2850,0.069160134,0.128734603,0.000766703,7,9130,,,1304.285714,0.975,79.95,82,,,0.262295082,128,488,0.086762213,0.437827951,2.599861858,,,,,,,,,2.543165541,2.689950246,,,,,,,,,2.655139018,0.018033034,,,,,2213.01,,,,,0.817011988,46412,56807,0.735788552,0.898235424,65201,,,57894.78723,72507.21277,,,,,,,,,,98500,90192.93617,106807.0638,76773,67546.10638,85999.89362,,,,,,0.452436195,585,1293,,,,,,,,0.280333124,,65201,,,4.878048781,4,820,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20.70030732,13,62801,11.02204183,35.39815595,,,,,,,,,,,,,21.40234767,11.39584875,36.59866633,,,,,,1200,,,-888,8,0.648025277,4102,6330,,,0.687,,,,,11.33835103,,,,,0.848991173,2693,3172,0.821841283,0.876141063,0.072077922,222,3080,0.039802227,0.104353617,0.680327869,2158,3172,0.625175103,0.735480635,9130,,,,,0.29780942,2719,9130,,,0.186308872,1701,9130,,,0.001861993,17,9130,,,0.005257393,48,9130,,,0.004381161,40,9130,,,0,0,9130,,,0.019715225,180,9130,,,0.961226725,8776,9130,,,0.014373717,119,8279,0.003878701,0.024868732,0.490580504,4479,9130,,,1,9110,9110,, -19,053,19053,IA,Decatur County,2024,1,8192.05442,111,21066,5755.281504,10628.82734,0,,,,2,,,,2,,,,2,,,,2,8733.056648,6085.512128,11380.60117,,,,,2,,0.148,,,0.123,0.175,3.441637428,,,2.68704814,4.273671875,4.81993846,,,3.81158934,5.862288428,0.0608,38,625,0.042065294,0.079534707,0,,,,,,,,,,,,,0.055837564,0.037325752,0.074349375,,,,,,,0.193,,,0.151,0.236,0.382,,,0.299,0.466,8.5,0.035352156,0.096,,,0.266,,,0.215,0.318,0.625506867,4782,7645,,,0.196200695,,,0.156803741,0.239954722,0.153846154,2,13,0.034991468,0.324991408,235,18,7659,,,12.37729407,29,2343,8.289268091,17.77585892,,,,,,,,,,,,,13.20754717,8.776319177,19.08858299,,,,,,,0.076825969,426,5545,0.063719586,0.089932352,0.000261131,2,7659,,,3829.5,0.000650788,5,7683,,,1536.6,0.002733307,21,7683,,,365.8571429,1869,,,,,,,,,1876,0.39,,,,,,,,,0.39,0.41,,,,,,,,,0.41,0.890779248,4241,4761,0.862635046,0.91892345,0.62255233,922,1481,0.527219795,0.717884864,0.024754788,106,4282,,,0.218,375,,0.138170213,0.297829787,,,,,,,,,,0.061538462,0,0.35540719,0.170974155,0.106982214,0.234966096,4.507910603,99440,22059,3.44078499,5.575036217,0.087833828,148,1685,0.041707996,0.13395966,7.833920877,6,7659,,,89.42715519,35,39138,62.28929021,124.3715248,,,,,,,,,,,,,97.03354588,67.58742002,134.9501729,,,,7.1,,,,,1,,,,,0.12808642,415,3240,0.095269032,0.160903808,0.093614383,0.062024359,0.125204407,0.015123457,0.005685215,0.024561699,0.030864198,0.011200115,0.050528281,0.748036078,2571,3437,0.688765808,0.807306349,,,,,,,,,,,,,0.745527728,0.67577501,0.815280447,0.318,,3437,0.248025989,0.387974011,77.65950149,,,75.54411262,79.77489036,,,,,,,,,,,,,77.16160913,74.94800464,79.37521363,,,,414.1319663,111,21066,330.7457859,497.5181468,,,,,,,,,,,,,430.6119996,342.2003451,519.0236542,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.108,,,0.092,0.126,0.163,,,0.14,0.186,0.093,,,0.078,0.108,,,,,,0.096,740,,,,0.035352156,298.9731829,8457,,,,,,,,,,,,,,,,,,,,,,,,,,0.327,,,0.31,0.344,0.090370752,351,3884,0.073689901,0.107051603,0.046056419,80,1737,0.029375568,0.06273727,0.001171417,9,7683,,,853.6666667,,,,,,,,,,,2.865990443,,,,,,,,,2.859593745,2.996792193,,,,,,,,,3.035377633,0.052810648,,,,,-2097.00315,,,,,0.790410389,39926,50513,0.668148331,0.912672448,51749,,,45531.80851,57966.19149,,,,,,,78500,4824.255319,152175.7447,71375,32839.85106,109910.1489,55891,50646.06383,61135.93617,,,,,,0.546471601,635,1162,,,,,,,,0.310402133,,51749,,,4.357298475,2,459,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,19.82017694,11,55499,9.894160917,35.46377144,,,,,,,,,,,,,21.45629742,10.71090637,38.39124293,,,,,,800,,,-888,17,0.627205276,3804,6065,,,0.583,,,,,5.137809736,,,,,0.672007848,2055,3058,0.640854902,0.703160795,0.110311751,322,2919,0.073393576,0.147229926,0.817200785,2499,3058,0.780359405,0.854042165,7683,,,,,0.226864506,1743,7683,,,0.212026552,1629,7683,,,0.018742679,144,7683,,,0.005987245,46,7683,,,0.009631654,74,7683,,,0.001822205,14,7683,,,0.03423142,263,7683,,,0.919042041,7061,7683,,,0.003871681,28,7232,0,0.013476898,0.493817519,3794,7683,,,1,7645,7645,, -19,055,19055,IA,Delaware County,2024,1,6299.02369,208,46899,4816.436403,7781.610976,0,,,,2,,,,2,,,,2,,,,2,6127.086539,4642.548273,7611.624804,,,,,2,,0.127,,,0.104,0.151,3.065665204,,,2.353799537,3.87307723,4.378473164,,,3.46417667,5.355026043,0.065028902,90,1384,0.052037969,0.078019834,0,,,,,,,,,,,,,0.06490566,0.051640359,0.078170962,,,,,,,0.173,,,0.132,0.213,0.362,,,0.291,0.438,9.3,0.025898847,0.064,,,0.242,,,0.194,0.293,0.619910796,10841,17488,,,0.203199759,,,0.165487647,0.245737071,0.272727273,3,11,0.11266692,0.445445377,239.9,42,17510,,,8.878127522,33,3717,6.111294478,12.46819189,,,,,,,,,,,,,8.452346255,5.660668941,12.13897914,,,,,,,0.055196205,768,13914,0.04685578,0.063536631,0.000456882,8,17510,,,2188.75,0.000512295,9,17568,,,1952,0.001138434,20,17568,,,878.4,2362,,,,,,,,,2375,0.53,,,,,,,,,0.53,0.38,,,,,,,,,0.38,0.921192493,11093,12042,0.901519899,0.940865087,0.646777371,2298,3553,0.55413461,0.739420133,0.022987418,243,10571,,,0.094,376,,0.058255319,0.129744681,,,,,,,,,,,,,0.048967708,0.022956683,0.074978732,3.68378962,138190,37513,3.062035597,4.305543643,0.132790029,554,4172,0.082686358,0.182893699,14.27755568,25,17510,,,77.03081233,66,85680,59.57562467,98.00208035,,,,,,,,,,,,,75.15880328,57.62382351,96.35019381,,,,8.5,,,,,0,,,,,0.116413594,805,6915,0.087349645,0.145477542,0.089500362,0.063818993,0.115181731,0.009399855,0,0.019501606,0.018799711,0.007112701,0.030486721,0.828808923,7877,9504,0.802643927,0.854973918,,,,,,,,,,,,,0.820441319,0.784997174,0.855885465,0.246,,9504,0.202433179,0.289566821,79.07447052,,,77.75935404,80.389587,,,,,,,,,,,,,79.13898739,77.82894383,80.44903096,,,,305.7795431,208,46899,260.6932979,350.8657883,,,,,,,,,,,,,303.9539421,258.6343993,349.2734849,,,,56.87635081,10,17582,27.27442098,104.5976342,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.096,,,0.08,0.111,0.152,,,0.129,0.175,0.08,,,0.068,0.095,47.7,7,14662,,,0.064,1130,,,,0.025898847,460.0671176,17764,,,,,,,,,,,,,,,,,,,,,,,,,,0.307,,,0.291,0.322,0.064286441,632,9831,0.052371547,0.076201335,0.03487561,150,4301,0.024152206,0.045599015,0.00204918,36,17568,,,488,0.967105263,183.75,190,,,,,,,,3.094540568,,,,,,,,,3.132467974,3.257323918,,,,,,,,,3.284675552,0.049495727,,,,,2441.03,,,,,0.762771641,44121,57843,0.641388873,0.884154408,74017,,,65378.70213,82655.29787,,,,,,,,,,,,,76333,72489.25532,80176.74468,,,,,,0.328073395,894,2725,,,,,,,,0.230365997,,74017,,,7.054673721,8,1134,,,,,,,,,,,,,,,,,,,,,,,,,,18.43349303,14,85680,9.815058693,31.52183448,16.33986928,,,,,,,,,,,,,17.59418237,9.09117077,30.73349583,,,,11.6713352,10,85680,5.596858889,21.46400098,,,,,,,,,,,,,,,,,,,14.94892451,18,120410,8.859680077,23.62574559,,,,,,,,,,,,,14.6343563,8.52505184,23.43102209,,,,,,1900,,,-888,17,0.7688701,10003,13010,,,0.721,,,,,32.44220221,,,,,0.826117714,5839,7068,0.80929325,0.842942177,0.089998548,620,6889,0.062157583,0.117839514,0.847764573,5992,7068,0.820165454,0.875363691,17568,,,,,0.23064663,4052,17568,,,0.213285519,3747,17568,,,0.009335155,164,17568,,,0.00170765,30,17568,,,0.003699909,65,17568,,,0.00034153,6,17568,,,0.017418033,306,17568,,,0.9606102,16876,17568,,,0.001217211,20,16431,0,0.005448607,0.491632514,8637,17568,,,0.719064501,12575,17488,, -19,057,19057,IA,Des Moines County,2024,1,8678.381709,656,105379,7592.262946,9764.500471,0,,,,2,,,,2,15751.82461,10774.23637,22236.87643,,,,,2,8572.361516,7376.884569,9767.838463,,,,,2,,0.139,,,0.117,0.165,3.314280985,,,2.622533544,4.080400832,5.151935756,,,4.252915829,6.117667402,0.07666887,232,3026,0.067188836,0.086148904,0,,,,,,,0.133507853,0.09939955,0.167616156,0.093023256,0.042898178,0.143148334,0.067875211,0.057752628,0.077997794,,,,,,,0.185,,,0.149,0.225,0.385,,,0.322,0.454,7.8,0.078354965,0.107,,,0.268,,,0.222,0.318,0.721485479,28073,38910,,,0.206774885,,,0.170603274,0.24838238,0.416666667,5,12,0.261828357,0.556653137,745.6,287,38491,,,30.11053233,237,7871,26.2769894,33.94407527,,,,,,,65.86826347,47.85998108,88.42506928,27.33485194,14.12431688,47.7484853,25.82121262,21.79493088,29.84749436,,,,43.03278689,26.63797333,65.78018593,0.052186928,1569,30065,0.043846503,0.060527354,0.000753423,29,38491,,,1327.275862,0.000626746,24,38293,,,1595.541667,0.0025331,97,38293,,,394.7731959,2732,,,,,,,2225,,2702,0.48,,,,,,0.27,0.31,,0.49,0.56,,,,,,0.5,0.34,0.36,0.56,0.929397466,25235,27152,0.914882833,0.943912099,0.658343417,5985,9091,0.600857434,0.715829399,0.041807663,766,18322,,,0.193,1610,,0.122702128,0.263297872,,,,0.045454546,0,0.510456048,0.69579288,0.574076923,0.817508837,0.345679012,0.051226734,0.64013129,0.155393902,0.106412625,0.204375179,4.501757018,114016,25327,3.924504796,5.079009241,0.315451628,2752,8724,0.258213895,0.372689361,16.62726352,64,38491,,,93.46706313,182,194721,79.88771338,107.0464129,,,,,,,171.4530647,104.7279862,264.7953528,,,,91.76701834,77.32004594,106.2139908,,,,8.5,,,,,0,,,,,0.13768546,2320,16850,0.112050306,0.163320614,0.126174095,0.099963308,0.152384882,0.012106825,0.004579066,0.019634584,0.008605341,0.003158023,0.01405266,0.82580291,15042,18215,0.800510864,0.851094955,,,,,,,,,,,,,0.861008542,0.835770689,0.886246396,0.137,,18215,0.113021739,0.160978261,76.35280923,,,75.46790645,77.23771202,,,,,,,70.1914746,65.71359152,74.66935768,,,,76.43554776,75.48377609,77.38731944,,,,433.6140248,656,105379,398.1069994,469.1210503,,,,,,,837.5480618,610.9133035,1120.705203,,,,424.7598306,387.5205109,461.9991502,,,,49.98421551,19,38012,30.09376293,78.05654417,,,,,,,,,,,,,51.84749922,29.01865173,85.51456525,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.103,,,0.089,0.12,0.167,,,0.145,0.191,0.091,,,0.078,0.106,98.6,32,32467,,,0.107,4180,,,,0.078354965,3159.663949,40325,,,18.07757864,21,116166,11.1903061,27.63349925,,,,,,,,,,,,,16.94053871,9.868488077,27.12344353,,,,0.313,,,0.297,0.328,0.063219993,1361,21528,0.052496588,0.073943397,0.025162156,225,8942,0.016821731,0.033502582,0.001305722,50,38293,,,765.86,0.815789474,341,418,,,,,,,,3.13310913,,,,,,,2.547046254,,3.299803961,2.997662758,,,,,,,2.075056982,,3.213625933,0.084071375,,,,,178.3115,,,,,0.698664849,39979,57222,0.644688392,0.752641306,59688,,,52593.87234,66782.12766,,,,83500,70627.14894,96372.85106,32817,8445.085106,57188.91489,53098,11474.51064,94721.48936,59748,56467.82979,63028.17021,,,,,,0.462256291,2774,6001,,,49.50975836,,,,,0.32619622,,59688,,,8.608971455,19,2207,,,6.557018742,18,274515,3.886104869,10.36291651,,,,,,,,,,,,,,,,,,,26.24677281,46,194721,18.99491962,35.35423073,23.62354343,,,,,,,,,,,,,27.97639642,19.89395272,38.24465488,,,,17.97443522,35,194721,12.51985271,24.99808822,,,,,,,,,,,,,16.57726783,11.01547408,23.95876757,,,,14.93543158,41,274515,10.71792356,20.26159939,,,,,,,,,,,,,15.06994968,10.55480749,20.86316255,,,,49.02439024,,4100,,,57,144,0.667759746,19956,29885,,,0.69,,,,,111.2833741,,,,,0.699495681,12067,17251,0.671687542,0.727303821,0.142376749,2371,16653,0.113489338,0.17126416,0.83519796,14408,17251,0.811016114,0.859379805,38293,,,,,0.222155485,8507,38293,,,0.216044708,8273,38293,,,0.062126237,2379,38293,,,0.004073852,156,38293,,,0.013213903,506,38293,,,0.000783433,30,38293,,,0.040399029,1547,38293,,,0.853054083,32666,38293,,,0.002710027,99,36531,0,0.006359195,0.50727287,19425,38293,,,0.269776407,10497,38910,, -19,059,19059,IA,Dickinson County,2024,1,5433.978654,263,46801,4174.069719,6693.887589,0,,,,2,,,,2,,,,2,,,,2,5529.190507,4220.414254,6837.966761,,,,,2,,0.114,,,0.094,0.137,2.832535422,,,2.206546959,3.596779925,4.458167269,,,3.579185963,5.460929177,0.066852368,72,1077,0.051935357,0.081769378,0,,,,,,,,,,,,,0.065,0.049720169,0.080279831,,,,,,,0.155,,,0.12,0.196,0.372,,,0.302,0.445,9.2,0.018840215,0.069,,,0.223,,,0.182,0.272,0.796757612,14105,17703,,,0.201734235,,,0.164139007,0.242565202,0.2,2,10,0.05050879,0.392851974,134.4,24,17851,,,8.037508372,24,2986,5.149783274,11.95917535,,,,,,,,,,,,,6.879073135,4.141651399,10.74252483,,,,,,,0.054664108,712,13025,0.046323682,0.063004533,0.000840289,15,17851,,,1190.066667,0.000721101,13,18028,,,1386.769231,0.001053916,19,18028,,,948.8421053,2015,,,,,,,,,2027,0.52,,,,,,,,,0.52,0.61,,,,,,,,,0.61,0.965378483,12715,13171,0.951475837,0.979281129,0.728984354,2749,3771,0.647461127,0.810507581,0.027886588,299,10722,,,0.076,256,,0.046212766,0.105787234,,,,,,,,,,0.038674033,0,0.209431579,0.06766406,0.032905845,0.102422274,3.705544988,128575,34698,3.30369527,4.107394707,0.169653525,568,3348,0.115917717,0.223389332,20.16693743,36,17851,,,64.36041834,56,87010,48.61716835,83.57735663,,,,,,,,,,,,,66.46686325,50.07193766,86.51575866,,,,6.4,,,,,1,,,,,0.104363208,885,8480,0.078823542,0.129902873,0.091607565,0.068470961,0.114744169,0.005188679,0.000337444,0.010039915,0.012971698,0.000978241,0.024965155,0.799046691,7376,9231,0.771180326,0.826913055,,,,,,,,,,,,,0.81475109,0.787002697,0.842499482,0.156,,9231,0.123391481,0.188608519,80.66540802,,,79.43151655,81.89929949,,,,,,,,,,,,,80.49961271,79.23886767,81.76035774,,,,309.4242883,263,46801,267.1686518,351.6799248,,,,,,,,,,,,,314.8996148,271.2696027,358.529627,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.088,,,0.075,0.105,0.145,,,0.123,0.17,0.076,,,0.064,0.091,45.4,7,15428,,,0.069,1200,,,,0.018840215,314.0098709,16667,,,,,,,,,,,,,,,,,,,,,,,,,,0.293,,,0.275,0.31,0.062271062,595,9555,0.051547658,0.072994467,0.035068493,128,3650,0.024345089,0.045791897,0.000610162,11,18028,,,1638.909091,0.928725962,193.175,208,,,,,,,,3.265365982,,,,,,,,,3.307140703,3.105985809,,,,,,,,,3.131327987,0.025173502,,,,,1844.509267,,,,,0.788321666,46172,58570,0.722046322,0.854597011,75406,,,65274.76596,85537.23404,,,,,,,,,,97771,52968.61702,142573.383,72194,67435.19149,76952.80851,,,,,,0.281028069,831,2957,,,,,,,,0.281131475,,75406,,,15.64537158,12,767,,,,,,,,,,,,,,,,,,,,,,,,,,18.99319328,13,87010,9.814060122,33.17728635,14.9408114,,,,,,,,,,,,,20.26270914,10.47003749,35.39487507,,,,,,,,,,,,,,,,,,,,,,,,,,,13.1834811,16,121364,7.535498545,21.40914736,,,,,,,,,,,,,13.81967057,7.899135799,22.44227921,,,,30.625,,1600,,,8,41,0.817448201,11244,13755,,,0.499,,,,,50.02055071,,,,,0.784394251,6494,8279,0.757904857,0.810883645,0.093586224,750,8014,0.070561442,0.116611007,0.874139389,7237,8279,0.847793706,0.900485072,18028,,,,,0.188706457,3402,18028,,,0.284113601,5122,18028,,,0.006600843,119,18028,,,0.00305081,55,18028,,,0.011204793,202,18028,,,0.000610162,11,18028,,,0.029232305,527,18028,,,0.939483026,16937,18028,,,0.008453535,143,16916,0,0.017423485,0.501775017,9046,18028,,,0.268146642,4747,17703,, -19,061,19061,IA,Dubuque County,2024,1,6228.913404,1107,269898,5655.821043,6802.005766,0,,,,2,,,,2,14088.7028,9919.746959,19419.42097,,,,,2,5967.343116,5374.497521,6560.188711,,,,,2,,0.12,,,0.098,0.144,2.956533257,,,2.283115815,3.681635724,4.69604744,,,3.842656835,5.617111942,0.065491814,524,8001,0.060070943,0.070912684,0,,,,0.127906977,0.057318247,0.198495707,0.114285714,0.087070033,0.141501396,0.080128205,0.050002645,0.110253765,0.059548255,0.053930919,0.06516559,0.068965517,0.027720551,0.110210484,0.107843137,0.047646414,0.168039861,0.156,,,0.117,0.196,0.329,,,0.274,0.391,8.8,0.056440552,0.072,,,0.223,,,0.181,0.27,0.826425967,82036,99266,,,0.216687718,,,0.180810755,0.256507286,0.225806452,7,31,0.133616464,0.327772988,516.6,510,98718,,,14.05535915,326,23194,12.52958863,15.58112966,,,,,,,55.04587156,42.57247308,70.03184524,27.47252747,17.77877126,40.55487,9.845998485,8.464028756,11.22796821,73.80073801,45.07940806,113.9792543,30.62787136,18.70829952,47.30226325,0.048007935,3727,77633,0.040858999,0.055156871,0.00076987,76,98718,,,1298.921053,0.000810726,80,98677,,,1233.4625,0.001895072,187,98677,,,527.684492,5704,,,,,,,9006,9727,5638,0.57,,,,,,0.55,0.43,0.33,0.57,0.59,,,,,,0.43,0.3,0.41,0.59,0.94001569,62308,66284,0.930661226,0.949370155,0.736671166,17465,23708,0.697629487,0.775712845,0.028360137,1603,56523,,,0.113,2430,,0.079638298,0.146361702,,,,0.191972077,0,0.387236445,0.508893281,0.263098097,0.754688465,0.179411765,0.063434489,0.295389041,0.078337198,0.058026305,0.098648091,4.148836637,134804,32492,3.831240404,4.466432869,0.198214447,4396,22178,0.159854549,0.236574345,10.53505946,104,98718,,,64.40840673,314,487514,57.28424446,71.53256901,,,,,,,63.83102188,31.86421614,114.2113301,,,,67.55327497,59.87039134,75.2361586,,,,9.1,,,,,0,,,,,0.117966628,4560,38655,0.103461433,0.132471823,0.097127937,0.083868536,0.110387339,0.009675333,0.006394792,0.012955875,0.015263226,0.008823315,0.021703137,0.799822415,40535,50680,0.784983946,0.814660884,,,,0.699186992,0.580573288,0.817800696,0.686307054,0.552116341,0.820497767,0.648201439,0.520659661,0.775743217,0.829712845,0.815580791,0.843844899,0.122,,50680,0.109617679,0.134382321,79.32515756,,,78.78862669,79.86168844,,,,,,,71.81232142,66.95682239,76.66782046,96.70627482,79.90522707,113.5073226,79.47248453,78.92275567,80.02221339,,,,311.6707753,1107,269898,292.3462553,330.9952953,,,,,,,691.0515781,466.2495978,986.5190972,,,,304.46469,284.7541613,324.1752187,,,,43.75062146,44,100570,31.78926853,58.73316723,,,,,,,,,,,,,39.44631715,27.15302968,55.39729526,,,,3.427592117,28,8169,2.277610069,4.953824941,,,,,,,,,,,,,3.580635921,2.317198775,5.285724964,,,,,,,0.093,,,0.078,0.109,0.148,,,0.125,0.171,0.082,,,0.068,0.097,94.2,78,82828,,,0.072,7080,,,,0.056440552,5285.827014,93653,,,12.94194177,38,293619,9.15848826,17.76382622,,,,,,,,,,,,,12.88698869,8.924614294,18.008275,,,,0.309,,,0.29,0.325,0.058002632,3217,55463,0.048470718,0.067534547,0.024456288,569,23266,0.017307352,0.031605224,0.001388368,137,98677,,,720.270073,0.861981132,959.385,1113,,,0.049876135,302,6055,0.029587951,0.07016432,3.070970659,,,,,,2.208853381,2.249434344,2.543038067,3.203289334,3.12587145,,,,,,1.654020595,1.884814358,2.544567409,3.337566454,0.100335992,,,,,2794.1495,,,,,0.769912386,46398,60264,0.735558514,0.804266257,73492,,,69343.23404,77640.76596,25455,15203.42553,35706.57447,91458,37569.31915,145346.6809,38200,30806.80851,45593.19149,75500,28868.68085,122131.3192,75559,72433.7234,78684.2766,,,,,,0.356907402,4764,13348,,,53.9134672,,,,,0.28940565,,73492,,,7.398881947,45,6082,,,1.907159477,13,681642,1.015482099,3.261300788,,,,,,,,,,,,,1.782727638,0.889931214,3.189792185,,,,16.22564934,77,487514,12.69557131,20.43352,15.79441821,,,,,,,,,,,,,16.46489593,12.76006819,20.90983582,,,,7.589525634,37,487514,5.34372645,10.46116135,,,,,,,,,,,,,7.733371545,5.355584605,10.8066116,,,,7.188524181,49,681642,5.318109763,9.503610193,,,,,,,,,,,,,7.45504285,5.458028337,9.943982437,,,,33.93939394,,9900,,,51,285,0.731497558,53926,73720,,,0.729,,,,,192.1963394,,,,,0.733074903,29312,39985,0.7214217,0.744728106,0.112637293,4420,39241,0.097588593,0.127685992,0.880680255,35214,39985,0.870069403,0.891291108,98677,,,,,0.221115356,21819,98677,,,0.194918775,19234,98677,,,0.036127973,3565,98677,,,0.00300982,297,98677,,,0.013376977,1320,98677,,,0.008016052,791,98677,,,0.029682702,2929,98677,,,0.894088795,88226,98677,,,0.00755936,702,92865,0.003933596,0.011185125,0.50374454,49708,98677,,,0.317248605,31492,99266,, -19,063,19063,IA,Emmet County,2024,1,8044.684557,144,24927,5962.053013,10127.3161,0,,,,2,,,,2,,,,2,,,,2,8060.463548,5800.094126,10320.83297,,,,,2,,0.144,,,0.121,0.169,3.293676154,,,2.550901235,4.14174258,4.790585926,,,3.800495191,5.866952598,0.070080863,52,742,0.051712247,0.088449478,0,,,,,,,,,,,,,0.064912281,0.044686362,0.085138199,,,,,,,0.187,,,0.15,0.227,0.395,,,0.317,0.478,7.8,0.110704359,0.092,,,0.264,,,0.216,0.316,0.797400937,7486,9388,,,0.195031456,,,0.157084632,0.237374161,0.166666667,1,6,0.011498194,0.426636125,203.8,19,9321,,,17.79064957,43,2417,12.8751813,23.96388821,,,,,,,,,,48.07692308,29.36663362,74.25090842,12.54991443,7.864964559,19.00072127,,,,,,,0.072774342,506,6953,0.060859448,0.084689236,0.000643708,6,9321,,,1553.5,0.00043592,4,9176,,,2294,0.002506539,23,9176,,,398.9565217,2551,,,,,,,,,2584,0.49,,,,,,,,,0.5,0.53,,,,,,,,,0.53,0.872566637,5827,6678,0.842929061,0.902204212,0.598311817,1205,2014,0.513113012,0.683510622,0.028675283,142,4952,,,0.133,220,,0.084148936,0.181851064,,,,,,,,,,0.072674419,0,0.252914572,0.163434903,0.087888628,0.238981178,4.009720134,109317,27263,3.339021728,4.680418539,0.222929936,385,1727,0.123456277,0.322403595,19.3112327,18,9321,,,97.17333564,45,46309,70.87889781,130.0255685,,,,,,,,,,,,,99.61399577,71.16569902,135.6459892,,,,6.6,,,,,0,,,,,0.10931677,440,4025,0.073731128,0.144902413,0.082273747,0.050516553,0.114030941,0.031055901,0.002531435,0.059580366,0.016149068,0.000066468,0.032231669,0.777823663,3767,4843,0.728230841,0.827416486,,,,,,,,,,,,,0.772887324,0.716005412,0.829769236,0.236,,4843,0.185309164,0.286690836,76.97154137,,,75.29922952,78.64385322,,,,,,,,,,,,,76.90407794,75.15100367,78.65715221,,,,395.0163484,144,24927,325.1332758,464.899421,,,,,,,,,,,,,403.4950797,328.1025332,478.8876263,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.105,,,0.09,0.121,0.16,,,0.138,0.183,0.092,,,0.077,0.107,,,,,,0.092,870,,,,0.110704359,1140.476306,10302,,,,,,,,,,,,,,,,,,,,,,,,,,0.304,,,0.289,0.32,0.083874666,439,5234,0.068385304,0.099364027,0.040637013,74,1821,0.02633914,0.054934885,0.00043592,4,9176,,,2294,0.902777778,121.875,135,,,,,,,,2.489313129,,,,,,,,2.212695366,2.589970927,2.671861511,,,,,,,,2.325902566,2.841862147,0.037426495,,,,,-1875.187,,,,,0.681142039,35213,51697,0.551271039,0.811013039,56834,,,49613.57447,64054.42553,,,,,,,,,,,,,65766,60166,71366,,,,,,0.506666667,722,1425,,,67.71899176,,,,,0.319034381,,56834,,,11.74168298,6,511,,,,,,,,,,,,,,,,,,,,,,,,,,24.84873051,10,46309,11.91593214,45.69770013,21.59407459,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,71.11111111,,900,,,15,49,0.683521127,4853,7100,,,0.652,,,,,37.67554374,,,,,0.776346303,3013,3881,0.736018585,0.81667402,0.080354743,299,3721,0.052992483,0.107717004,0.845916001,3283,3881,0.816343844,0.875488158,9176,,,,,0.182868352,1678,9176,,,0.232672188,2135,9176,,,0.010897995,100,9176,,,0.016346992,150,9176,,,0.007737576,71,9176,,,0.00087184,8,9176,,,0.10407585,955,9176,,,0.863775065,7926,9176,,,0.021549799,193,8956,0.003764595,0.039335003,0.488557106,4483,9176,,,0.384959523,3614,9388,, -19,065,19065,IA,Fayette County,2024,1,8035.267068,295,52376,6573.192828,9497.341308,0,,,,2,,,,2,,,,2,,,,2,7822.68772,6304.753507,9340.621934,,,,,2,,0.146,,,0.124,0.171,3.280281191,,,2.613426208,3.999322254,4.678544701,,,3.786773981,5.593119881,0.057613169,84,1458,0.045652574,0.069573764,0,,,,,,,,,,,,,0.057622174,0.045287016,0.069957331,,,,,,,0.193,,,0.156,0.229,0.412,,,0.341,0.484,8.7,0.017186703,0.093,,,0.276,,,0.231,0.321,0.699164488,13640,19509,,,0.182634386,,,0.148409042,0.220960015,0.210526316,4,19,0.095274272,0.345173375,368.7,71,19258,,,17.12483101,76,4438,13.49241908,21.43427962,,,,,,,,,,,,,16.11684714,12.41193617,20.58085399,,,,,,,0.059330804,860,14495,0.049798889,0.068862719,0.000311559,6,19258,,,3209.666667,0.000570125,11,19294,,,1754,0.000725614,14,19294,,,1378.142857,1144,,,,,,,,,1153,0.54,,,,,,,,,0.54,0.46,,,,,,,,,0.46,0.928902287,12634,13601,0.915102896,0.942701677,0.5915628,2468,4172,0.524744049,0.658381551,0.031499856,327,10381,,,0.16,648,,0.106382979,0.213617021,,,,,,,,,,0.053140097,0,0.169408958,0.093395966,0.061710091,0.12508184,4.710412486,105631,22425,4.105120684,5.315704288,0.206487533,853,4131,0.142896472,0.270078594,15.57794164,30,19258,,,96.28977075,94,97622,77.81193624,117.8342932,,,,,,,,,,,,,98.83593235,79.47576118,121.4861408,,,,8.2,,,,,0,,,,,0.108338405,890,8215,0.085367097,0.131309714,0.090006131,0.067808952,0.11220331,0.007181984,0.002445601,0.011918367,0.013998783,0.007527087,0.020470478,0.794538648,7216,9082,0.765654749,0.823422547,,,,,,,,,,,,,0.787583445,0.746911082,0.828255807,0.27,,9082,0.229454333,0.310545667,77.29187699,,,76.09525274,78.48850123,,,,,,,,,,,,,77.44631044,76.21739744,78.67522345,,,,395.2382914,295,52376,346.0735996,444.4029832,,,,,,,,,,,,,385.2250745,335.4399673,435.0101818,,,,58.56983121,11,18781,29.23784872,104.7976067,,,,,,,,,,,,,60.24096386,28.88788371,110.7852774,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.106,,,0.091,0.121,0.163,,,0.142,0.185,0.093,,,0.079,0.108,85.3,14,16410,,,0.093,1830,,,,0.017186703,358.8583654,20880,,,,,,,,,,,,,,,,,,,,,,,,,,0.301,,,0.284,0.316,0.069239609,723,10442,0.057324716,0.081154503,0.03480715,148,4252,0.024083745,0.045530554,0.001088421,21,19294,,,918.7619048,0.870374449,197.575,227,,,,,,,,3.093631169,,,,,,,,,3.085966922,3.287485091,,,,,,,,,3.284004648,0.045309322,,,,,-347.27925,,,,,0.820682527,41291,50313,0.748517847,0.892847208,56599,,,49724.10638,63473.89362,16000,3187.914894,28812.08511,110139,37801.29787,182476.7021,9014,8305.06383,9722.93617,62604,21121.10638,104086.8936,56858,53671.95745,60044.04255,,,,,,0.433979406,1433,3302,,,68.40784926,,,,,0.308291666,,56599,,,9.293680297,10,1076,,,,,,,,,,,,,,,,,,,,,,,,,,17.54792069,17,97622,9.821438002,28.94262658,17.41410748,,,,,,,,,,,,,18.98694239,10.62684752,31.31607403,,,,,,,,,,,,,,,,,,,,,,,,,,,18.84973139,26,137933,12.31327037,27.61922389,,,,,,,,,,,,,19.38059615,12.54209996,28.60958308,,,,25.78947368,,1900,,,14,35,0.668372703,10186,15240,,,0.665,,,,,28.29544364,,,,,0.762032086,6270,8228,0.742937072,0.781127099,0.11447684,907,7923,0.086546397,0.142407282,0.830700049,6835,8228,0.807456646,0.853943452,19294,,,,,0.21317508,4113,19294,,,0.230486162,4447,19294,,,0.014253136,275,19294,,,0.00378356,73,19294,,,0.011817145,228,19294,,,0.001140251,22,19294,,,0.031564217,609,19294,,,0.92515808,17850,19294,,,0.002392605,44,18390,0,0.006561373,0.491759096,9488,19294,,,0.699061971,13638,19509,, -19,067,19067,IA,Floyd County,2024,1,7328.096459,200,41762,5626.286566,9029.906352,0,,,,2,,,,2,,,,2,,,,2,6804.1085,5129.345163,8478.871836,,,,,2,,0.133,,,0.111,0.157,3.141862238,,,2.487295275,3.930275516,4.215248316,,,3.368159777,5.154949123,0.068714632,85,1237,0.054617291,0.082811974,0,,,,,,,,,,,,,0.067178503,0.051978746,0.08237826,,,,,,,0.178,,,0.143,0.217,0.385,,,0.314,0.459,8.4,0.062916794,0.086,,,0.244,,,0.198,0.292,0.749600051,11714,15627,,,0.191859888,,,0.154938282,0.23167505,0.375,6,16,0.240765683,0.502616143,259.5,40,15413,,,14.11475913,46,3259,10.33377767,18.82711068,,,,,,,,,,,,,10.76812635,7.265209627,15.37216992,,,,,,,0.061493289,733,11920,0.051961374,0.071025204,0.000389282,6,15413,,,2568.833333,0.000586816,9,15337,,,1704.111111,0.000456413,7,15337,,,2191,2401,,,,,,,,,2399,0.53,,,,,,,,,0.54,0.57,,,,,,,,,0.57,0.931862069,10134,10875,0.911647388,0.95207675,0.612883985,2055,3353,0.523434293,0.702333676,0.029211876,245,8387,,,0.149,522,,0.094191489,0.203808511,,,,,,,,,,0.402542373,0.053077953,0.752006793,0.117232113,0.065539911,0.168924315,3.949835699,112989,28606,3.377995842,4.521675556,0.200113218,707,3533,0.124618113,0.275608323,14.92246805,23,15413,,,79.44643772,62,78040,60.91112825,101.8467477,,,,,,,,,,,,,83.29686154,63.40943038,107.4468825,,,,7.6,,,,,0,,,,,0.094202899,650,6900,0.065507001,0.122898797,0.082977156,0.05581237,0.110141941,0.010869565,0.001083736,0.020655395,0.01,0,0.021308046,0.789553473,5729,7256,0.751800203,0.827306743,,,,,,,,,,,,,0.787310867,0.749835345,0.824786388,0.231,,7256,0.189400125,0.272599875,78.25802438,,,76.82539323,79.69065553,,,,,,,,,,,,,78.51146063,77.07884525,79.94407602,,,,336.6036855,200,41762,286.1381278,387.0692433,,,,,,,,,,,,,332.2859196,280.2161979,384.3556414,,,,64.1395677,10,15591,30.75741579,117.9549486,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.099,,,0.083,0.114,0.152,,,0.13,0.175,0.087,,,0.073,0.102,54.2,7,12919,,,0.086,1340,,,,0.062916794,1025.732485,16303,,,,,,,,,,,,,,,,,,,,,,,,,,0.315,,,0.297,0.331,0.072647547,613,8438,0.059541164,0.08575393,0.03573377,131,3666,0.025010366,0.046457174,0.000521614,8,15337,,,1917.125,0.892835366,146.425,164,,,,,,,,2.894320383,,,,,,,,,,2.71204585,,,,,,,,,,0.04178009,,,,,80.8585,,,,,0.742854647,42521,57240,0.627877075,0.857832219,64553,,,55264.14894,73841.85106,,,,,,,33374,16433.40426,50314.59575,,,,63149,57060.48936,69237.51064,,,,,,0.47121274,1154,2449,,,50.33957742,,,,,0.251700153,,64553,,,10.60445387,10,943,,,,,,,,,,,,,,,,,,,,,,,,,,17.46584911,14,78040,9.29982906,29.86713391,17.9395182,,,,,,,,,,,,,17.17208715,8.873068014,29.99618044,,,,12.81394157,10,78040,6.144783055,23.56529477,,,,,,,,,,,,,,,,,,,15.47240905,17,109873,9.01324845,24.77282573,,,,,,,,,,,,,13.95979579,7.63195026,23.42216529,,,,15.625,,1600,,,5,20,0.66325351,8032,12110,,,0.709,,,,,52.93942766,,,,,0.763636364,5040,6600,0.722907318,0.804365409,0.079088896,500,6322,0.050379206,0.107798586,0.820151515,5413,6600,0.785648994,0.854654036,15337,,,,,0.229836344,3525,15337,,,0.226380648,3472,15337,,,0.024972289,383,15337,,,0.004238117,65,15337,,,0.015844037,243,15337,,,0.000978027,15,15337,,,0.04238117,650,15337,,,0.900306449,13808,15337,,,0.001166701,17,14571,0,0.006288996,0.500880224,7682,15337,,,0.535739425,8372,15627,, -19,069,19069,IA,Franklin County,2024,1,9836.50108,178,27041,7557.17333,12115.82883,0,,,,2,,,,2,,,,2,,,,2,9725.163834,7240.811919,12209.51575,,,,,2,,0.147,,,0.124,0.173,3.360954557,,,2.62593521,4.196677086,4.629599363,,,3.673257088,5.688992742,0.0523918,46,878,0.037653246,0.067130354,0,,,,,,,,,,0.079646018,0.044347105,0.114944931,0.044094488,0.028125815,0.060063162,,,,,,,0.182,,,0.147,0.22,0.391,,,0.313,0.473,8.7,0.057082348,0.074,,,0.272,,,0.225,0.326,0.765146222,7666,10019,,,0.185741608,,,0.148081441,0.225811221,0.166666667,1,6,0.011498194,0.426636125,502.4,50,9952,,,26.14068441,55,2104,19.69274096,34.02569391,,,,,,,,,,70.92198582,47.85076601,101.2455447,13.81042059,8.654917057,20.90914274,,,,,,,0.083539362,642,7685,0.070432979,0.096645745,0.000100482,1,9952,,,9952,0.000403389,4,9916,,,2479,0.000201694,2,9916,,,4958,2623,,,,,,,,,2499,0.53,,,,,,,,,0.53,0.46,,,,,,,,0.31,0.46,0.924006909,6420,6948,0.903727893,0.944285924,0.635761589,1344,2114,0.548349144,0.723174035,0.025482216,144,5651,,,0.169,390,,0.115382979,0.222617021,,,,,,,,,,0.497545008,0.39335649,0.601733527,0.140526976,0.062480216,0.218573736,4.646251966,106362,22892,3.3581101,5.934393832,0.149680171,351,2345,0.065292112,0.234068229,23.11093248,23,9952,,,77.56408982,39,50281,55.15565023,106.0326642,,,,,,,,,,,,,80.24166903,55.56968844,112.1296896,,,,7.4,,,,,0,,,,,0.088200238,370,4195,0.055919439,0.120481038,0.073989899,0.039934923,0.108044875,0.008343266,0,0.022393661,0.008343266,0.000553748,0.016132784,0.800856531,3740,4670,0.756736452,0.84497661,,,,,,,,,,,,,0.796216216,0.742327114,0.850105319,0.219,,4670,0.173271017,0.264728983,75.8357837,,,74.09654225,77.57502515,,,,,,,,,,,,,75.81981986,73.95194751,77.68769221,,,,469.176521,178,27041,394.1299775,544.2230645,,,,,,,,,,,,,472.4848802,391.4008195,553.5689409,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.105,,,0.09,0.122,0.159,,,0.138,0.184,0.094,,,0.079,0.11,,,,,,0.074,740,,,,0.057082348,609.6394742,10680,,,,,,,,,,,,,,,,,,,,,,,,,,0.309,,,0.293,0.323,0.097805876,526,5378,0.081125025,0.114486727,0.051239669,124,2420,0.034558818,0.067920521,0.001109318,11,9916,,,901.4545455,0.875,79.625,91,,,,,,,,2.89862163,,,,,,,,2.616832036,3.078795403,3.079659487,,,,,,,,2.801366649,3.30887395,0.086897689,,,,,-5220.7075,,,,,0.717126065,41731,58192,0.629744201,0.80450793,63775,,,54861.46809,72688.53192,,,,,,,,,,,,,62357,58635.97872,66078.02128,,,,,,0.543784446,888,1633,,,,,,,,0.274888279,,63775,,,8.183306056,5,611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,21.20261216,15,70746,11.86694108,34.97048437,,,,,,,,,,,,,20.04543632,10.35776946,35.01534319,,,,,,1100,,,-888,17,0.694181326,5130,7390,,,0.681,,,,,27.56295292,,,,,0.72647489,2980,4102,0.699939908,0.753009873,0.03778994,145,3837,0.016154522,0.059425358,0.810336421,3324,4102,0.77370079,0.846972053,9916,,,,,0.236284792,2343,9916,,,0.228015329,2261,9916,,,0.007462687,74,9916,,,0.009177088,91,9916,,,0.006756757,67,9916,,,0.001512707,15,9916,,,0.140278338,1391,9916,,,0.831787011,8248,9916,,,0.022601279,212,9380,0.007624038,0.03757852,0.486183945,4821,9916,,,1,10019,10019,, -19,071,19071,IA,Fremont County,2024,1,10150.17842,132,18225,6833.271458,13467.08538,0,,,,2,,,,2,,,,2,,,,2,10091.88984,6721.159952,13462.61974,,,,,2,,0.134,,,0.112,0.158,3.310308897,,,2.552687402,4.153631072,4.733603471,,,3.731105407,5.794507498,0.057768924,29,502,0.037359532,0.078178316,0,,,,,,,,,,,,,0.060606061,0.03884816,0.082363961,,,,,,,0.181,,,0.143,0.221,0.389,,,0.311,0.474,6.8,0.255666355,0.065,,,0.253,,,0.204,0.302,0.31324754,2069,6605,,,0.184454299,,,0.147444833,0.226760159,0.411764706,7,17,0.284189348,0.52988216,167.5,11,6567,,,24.21875,31,1280,16.45546561,34.37658242,,,,,,,,,,,,,24.82876712,16.62821502,35.65825123,,,,,,,0.05612852,283,5042,0.046596606,0.065660435,0.000152277,1,6567,,,6567,0.000154703,1,6464,,,6464,0.000309406,2,6464,,,3232,2165,,,,,,,,,2185,0.43,,,,,,,,,0.43,0.37,,,,,,,,,0.37,0.949134656,4497,4738,0.936091077,0.962178235,0.645770393,855,1324,0.558856622,0.732684163,0.023961661,90,3756,,,0.135,189,,0.082574468,0.187425532,,,,,,,,,,0.151898734,0,0.534630685,0.070367475,0.032674154,0.108060796,3.822197733,121393,31760,3.311855313,4.332540153,0.132924335,195,1467,0.083602458,0.182246213,6.091061367,4,6567,,,93.57545984,32,34197,64.00554526,132.1006289,,,,,,,,,,,,,96.15682869,65.33389987,136.4869428,,,,7.3,,,,,0,,,,,0.083050848,245,2950,0.058504704,0.107596991,0.062564103,0.036131836,0.088996369,0.008135593,0,0.018443932,0.013559322,0.005249434,0.02186921,0.797669149,2464,3089,0.767962415,0.827375882,,,,,,,,,,,,,0.764758497,0.708362987,0.821154008,0.32,,3089,0.264958866,0.375041135,75.67085004,,,73.13294707,78.20875302,,,,,,,,,,,,,75.61923033,73.06517758,78.17328308,,,,460.4001774,132,18225,373.5814878,547.218867,,,,,,,,,,,,,463.7574914,374.1271551,553.3878277,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.102,,,0.087,0.118,0.158,,,0.136,0.182,0.087,,,0.073,0.102,89.7,5,5576,,,0.065,440,,,,0.255666355,1902.413347,7441,,,,,,,,,,,,,,,,,,,,,,,,,,0.324,,,0.308,0.34,0.063782585,230,3606,0.051867691,0.075697478,0.037135279,56,1508,0.024028896,0.050241662,0.000928218,6,6464,,,1077.333333,,,,,,,,,,,2.868403198,,,,,,,,,2.84826296,2.800414328,,,,,,,,,2.755170703,0.058167742,,,,,-2372.546883,,,,,0.810789036,46292,57095,0.736396776,0.885181295,69018,,,60895.61702,77140.38298,,,,,,,,,,,,,69866,64238.59575,75493.40426,,,,,,0.420189819,487,1159,,,,,,,,0.262873453,,69018,,,2.816901409,1,355,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20.81035523,10,48053,9.979374225,38.27098421,,,,,,,,,,,,,,,,,,,,,700,,,-888,8,0.717581395,3857,5375,,,0.613,,,,,2.94971492,,,,,0.780701754,2136,2736,0.752051638,0.809351871,0.074468085,196,2632,0.041683149,0.107253022,0.829678363,2270,2736,0.799791707,0.859565019,6464,,,,,0.219832921,1421,6464,,,0.246287129,1592,6464,,,0.008663366,56,6464,,,0.004641089,30,6464,,,0.004331683,28,6464,,,0.000309406,2,6464,,,0.032951733,213,6464,,,0.933632426,6035,6464,,,0.003008233,19,6316,0,0.013644597,0.495668317,3204,6464,,,0.998637396,6596,6605,, -19,073,19073,IA,Greene County,2024,1,8407.30713,130,23647,6150.155928,10664.45833,0,,,,2,,,,2,,,,2,,,,2,7371.732764,5288.935069,9454.530458,,,,,2,,0.138,,,0.115,0.163,3.216500331,,,2.463575394,3.95761189,4.608647642,,,3.627426846,5.571464338,0.057352941,39,680,0.039876459,0.074829423,0,,,,,,,,,,,,,0.057755776,0.039182042,0.076329509,,,,,,,0.182,,,0.143,0.222,0.365,,,0.285,0.437,8.5,0.04548757,0.09,,,0.259,,,0.208,0.309,0.636529472,5583,8771,,,0.184981269,,,0.147607278,0.220811047,0.25,2,8,0.070127692,0.458326521,275.3,24,8717,,,17.6565008,33,1869,12.15392273,24.79629174,,,,,,,,,,,,,13.15789474,8.245982579,19.92121076,,,,,,,0.058567353,390,6659,0.049035438,0.068099267,0.00068831,6,8717,,,1452.833333,0.00034321,3,8741,,,2913.666667,0.001029631,9,8741,,,971.2222222,1978,,,,,,,,,1991,0.55,,,,,,,,,0.56,0.58,,,,,,,,,0.58,0.931650048,5793,6218,0.911019984,0.952280112,0.664167113,1240,1867,0.562061136,0.76627309,0.020498615,111,5415,,,0.137,267,,0.084574468,0.189425532,,,,,,,,,,0.08490566,0,0.395657176,0.130187607,0.075656536,0.184718677,3.806926219,105311,27663,3.077638012,4.536214427,0.187692308,366,1950,0.106353505,0.26903111,21.79648962,19,8717,,,83.40471575,37,44362,58.72461694,114.9624141,,,,,,,,,,,,,88.58880429,62.37469369,122.1079973,,,,7.1,,,,,0,,,,,0.115241636,465,4035,0.08483099,0.145652282,0.081490683,0.052571941,0.110409425,0.029491946,0.013202314,0.045781577,0.009913259,8.65816E-05,0.019739936,0.769656445,3338,4337,0.728277842,0.811035048,,,,,,,,,,,,,0.770869819,0.712680183,0.829059455,0.307,,4337,0.23975734,0.37424266,77.82811147,,,75.90120314,79.75501979,,,,,,,,,,,,,78.55598467,76.72393428,80.38803506,,,,396.4613481,130,23647,321.8206871,471.1020091,,,,,,,,,,,,,376.9845111,303.1490744,450.8199479,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.102,,,0.087,0.119,0.159,,,0.136,0.182,0.089,,,0.075,0.103,81.5,6,7358,,,0.09,790,,,,0.04548757,424.6719575,9336,,,,,,,,,,,,,,,,,,,,,,,,,,0.317,,,0.298,0.333,0.068239259,324,4748,0.056324365,0.080154152,0.036318408,73,2010,0.025595004,0.047041812,0.000457614,4,8741,,,2185.25,0.945905172,109.725,116,,,,,,,,2.995967352,,,,,,,,,3.046350612,3.05264255,,,,,,,,,3.078648283,0.011357214,,,,,396.6325,,,,,0.691698564,39395,56954,0.595318619,0.788078509,63562,,,55582.59575,71541.40426,,,,,,,,,,55677,13248.06383,98105.93617,56991,53281.89362,60700.10638,,,,,,0.428178694,623,1455,,,,,,,,0.268887071,,63562,,,6.097560976,3,492,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,900,,,-888,23,0.737709701,5057,6855,,,0.679,,,,,11.54184324,,,,,0.75423508,2894,3837,0.720100957,0.788369202,0.104301075,388,3720,0.071053775,0.137548376,0.861871254,3307,3837,0.823730798,0.900011709,8741,,,,,0.224917058,1966,8741,,,0.241276742,2109,8741,,,0.00709301,62,8741,,,0.005605766,49,8741,,,0.00709301,62,8741,,,0.00034321,3,8741,,,0.035579453,311,8741,,,0.930442741,8133,8741,,,0.007337022,61,8314,0,0.017177593,0.500972429,4379,8741,,,1,8771,8771,, -19,075,19075,IA,Grundy County,2024,1,6158.12015,155,33171,4481.751374,7834.488927,0,,,,2,,,,2,,,,2,,,,2,6122.622208,4435.308909,7809.935507,,,,,2,,0.11,,,0.091,0.131,2.859403705,,,2.17045506,3.597009694,4.394161231,,,3.477695818,5.370964325,0.044711014,41,917,0.031334405,0.058087624,0,,,,,,,,,,,,,0.046171171,0.032368274,0.059974069,,,,,,,0.154,,,0.119,0.19,0.374,,,0.303,0.45,,,0.048,,,0.214,,,0.172,0.257,0.836077541,10308,12329,,,0.217301327,,,0.176706723,0.261929698,0.3,3,10,0.129013968,0.476732101,210.6,26,12347,,,8.835958509,23,2603,5.601239738,13.25827618,,,,,,,,,,,,,9.072164949,5.685477473,13.73536676,,,,,,,0.046420869,452,9737,0.039271933,0.053569805,0.000242974,3,12347,,,4115.666667,0.000242797,3,12356,,,4118.666667,0.000404662,5,12356,,,2471.2,1039,,,,,,,,,1041,0.61,,,,,,,,,0.61,0.42,,,,,,,,,0.42,0.958508159,8224,8580,0.947419027,0.96959729,0.715275372,2065,2887,0.648259902,0.782290843,0.025058366,161,6425,,,0.069,195,,0.043978723,0.094021277,,,,,,,,,,0.03125,0,0.462360213,0.086017431,0.055457154,0.116577708,3.330377882,133345,40039,3.034337364,3.6264184,0.115093039,334,2902,0.078226142,0.151959936,21.86766016,27,12347,,,65.11158498,40,61433,46.51667091,88.66349839,,,,,,,,,,,,,64.01940799,45.30394334,87.87163927,,,,7.8,,,,,0,,,,,0.050338819,260,5165,0.035397797,0.065279841,0.044878049,0.028669193,0.061086905,0.005614714,0,0.012674684,0.000774443,0,0.00449408,0.816366293,5028,6159,0.801068233,0.831664354,,,,,,,,,,,,,0.744098443,0.69538393,0.792812956,0.318,,6159,0.273022263,0.362977737,78.82700143,,,77.37856146,80.2754414,,,,,,,,,,,,,78.78967635,77.32334317,80.25600954,,,,322.4045996,155,33171,268.5185814,376.2906179,,,,,,,,,,,,,324.7532589,269.8841121,379.6224057,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.088,,,0.074,0.102,0.146,,,0.124,0.169,0.074,,,0.062,0.087,,,,,,0.048,590,,,,,,12453,,,,,,,,,,,,,,,,,,,,,,,,,,0.298,,,0.28,0.316,0.053372009,368,6895,0.043840094,0.062903924,0.030557421,91,2978,0.021025506,0.040089336,0.000485594,6,12356,,,2059.333333,0.959554974,183.275,191,,,,,,,,3.328480489,,,,,,,,,3.386545184,3.303940744,,,,,,,,,3.327756337,0.059465899,,,,,1603.72725,,,,,0.766948126,44325,57794,0.690007883,0.843888369,79386,,,70655.95745,88116.04255,,,,,,,,,,48810,27739.70213,69880.29787,80845,77477.85106,84212.14894,,,,,,0.28284125,661,2337,,,,,,,,0.242486081,,79386,,,14.5137881,10,689,,,,,,,,,,,,,,,,,,,,,,,,,,15.34522929,11,61433,7.358633907,28.22042302,17.90568587,,,,,,,,,,,,,15.74462761,7.550160928,28.95493076,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1400,,,-888,21,0.77486688,7276,9390,,,0.77,,,,,19.19600297,,,,,0.832674832,4215,5062,0.813844796,0.851504868,0.062449311,308,4932,0.041529483,0.083369138,0.862702489,4367,5062,0.832158725,0.893246254,12356,,,,,0.233004209,2879,12356,,,0.214551635,2651,12356,,,0.00623179,77,12356,,,0.002266106,28,12356,,,0.003641955,45,12356,,,0.000890256,11,12356,,,0.020475882,253,12356,,,0.953463904,11781,12356,,,0.00274631,32,11652,0,0.008453441,0.498705083,6162,12356,,,1,12329,12329,, -19,077,19077,IA,Guthrie County,2024,1,5817.62867,140,28717,4154.900235,7480.357105,0,,,,2,,,,2,,,,2,,,,2,6029.36902,4254.17834,7804.559701,,,,,2,,0.125,,,0.105,0.148,3.064128813,,,2.412934625,3.861178276,4.536525758,,,3.615561627,5.574756047,0.064102564,45,702,0.045983351,0.082221778,0,,,,,,,,,,,,,0.064467766,0.045830001,0.083105532,,,,,,,0.172,,,0.136,0.212,0.362,,,0.288,0.445,9.1,0.031596921,0.069,,,0.243,,,0.198,0.292,0.479619693,5095,10623,,,0.192964461,,,0.154504633,0.235064053,0,0,4,0,0.360186253,246,26,10567,,,8.884940027,20,2251,5.427152193,13.72206926,,,,,,,,,,,,,8.502598016,5.039178451,13.43777056,,,,,,,0.064216778,519,8082,0.054684863,0.073748693,0.000283903,3,10567,,,3522.333333,0.000375693,4,10647,,,2661.75,0.000187846,2,10647,,,5323.5,1253,,,,,,,,,1263,0.45,,,,,,,,,0.45,0.55,,,,,,,,,0.55,0.942522688,7166,7603,0.933013544,0.952031832,0.723702032,1603,2215,0.640077917,0.807326146,0.028178936,160,5678,,,0.127,280,,0.082914894,0.171085106,,,,,,,,,,0.22826087,0.07213241,0.38438933,0.148510015,0.097475053,0.199544977,4.169075236,131551,31554,3.633573858,4.704576615,0.165006496,381,2309,0.100732759,0.229280233,18.92684773,20,10567,,,78.67673229,42,53383,56.70326833,106.3480861,,,,,,,,,,,,,81.14312856,58.22971,110.0798163,,,,7,,,,,0,,,,,0.112723214,505,4480,0.088430298,0.137016131,0.09222097,0.065822655,0.118619284,0.016517857,0.005827619,0.027208095,0.005580357,0.000696851,0.010463864,0.800038307,4177,5221,0.764106866,0.835969747,,,,,,,,,,,,,0.763646595,0.712672454,0.814620737,0.446,,5221,0.389294619,0.502705381,79.42032799,,,77.89908363,80.94157234,,,,,,,,,,,,,79.17954765,77.59774908,80.76134622,,,,309.6692182,140,28717,253.1207286,366.2177078,,,,,,,,,,,,,316.5382541,257.650099,375.4264093,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.096,,,0.082,0.111,0.153,,,0.132,0.176,0.081,,,0.069,0.095,,,,,,0.069,730,,,,0.031596921,346.112674,10954,,,,,,,,,,,,,,,,,,,,,,,,,,0.312,,,0.296,0.329,0.070630081,417,5904,0.058715188,0.082544975,0.047783039,111,2323,0.032293678,0.063272401,0.000845309,9,10647,,,1183,0.960286458,184.375,192,,,,,,,,3.067358624,,,,,,,,,3.102977134,3.289337895,,,,,,,,,3.318160926,0.050287916,,,,,325.426025,,,,,0.828263818,48851,58980,0.731438977,0.92508866,72701,,,63511.04255,81890.95745,,,,,,,,,,,,,75497,69239.29787,81754.70213,,,,,,0.347623967,673,1936,,,,,,,,0.249790237,,72701,,,9.46969697,5,528,,,,,,,,,,,,,,,,,,,,,,,,,,21.00168293,11,53383,9.60330677,39.86773611,20.60581084,,,,,,,,,,,,,22.33514405,10.21305011,42.39906069,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1200,,,-888,26,0.779327217,6371,8175,,,0.623,,,,,0.894081952,,,,,0.836874723,3781,4518,0.786678873,0.887070573,0.109539023,480,4382,0.079457868,0.139620178,0.848384241,3833,4518,0.816891274,0.879877207,10647,,,,,0.209542594,2231,10647,,,0.239785855,2553,10647,,,0.009110548,97,10647,,,0.004884005,52,10647,,,0.00413262,44,10647,,,0.000657462,7,10647,,,0.030055415,320,10647,,,0.940546633,10014,10647,,,0.002180377,22,10090,0,0.009038529,0.498544191,5308,10647,,,1,10623,10623,, -19,079,19079,IA,Hamilton County,2024,1,7902.373043,228,40151,6155.995075,9648.751011,0,,,,2,,,,2,,,,2,,,,2,6988.224102,5209.595894,8766.85231,,,,,2,,0.122,,,0.102,0.146,2.955667497,,,2.312653703,3.675401999,4.231986112,,,3.35921097,5.215980766,0.067556952,86,1273,0.053769372,0.081344532,0,,,,,,,,,,0.056768559,0.026797548,0.08673957,0.068,0.052396627,0.083603373,,,,,,,0.163,,,0.128,0.204,0.391,,,0.314,0.471,9.1,0.027308524,0.072,,,0.235,,,0.191,0.285,0.745328812,11209,15039,,,0.198284439,,,0.160234278,0.239725856,0.166666667,2,12,0.039062389,0.344663233,389.6,58,14887,,,21.15513768,63,2978,16.25618865,27.06661091,,,,,,,,,,93.02325581,61.81327793,134.4445048,13.16330728,9.003692436,18.58266231,,,,,,,0.059019474,691,11708,0.049487559,0.068551389,0.000268691,4,14887,,,3721.75,0.000337382,5,14820,,,2964,0.000674764,10,14820,,,1482,2912,,,,,,,,,2942,0.51,,,,,,,,,0.51,0.52,,,,,,,,,0.52,0.926265106,9811,10592,0.907036575,0.945493637,0.636054422,2244,3528,0.54966119,0.722447653,0.027761795,193,6952,,,0.105,348,,0.063297872,0.146702128,,,,,,,0.644230769,0.426062203,0.862399336,0.066210046,0,0.142627864,0.074074074,0.036575131,0.111573017,3.908577071,114791,29369,3.277412282,4.53974186,0.160445515,533,3322,0.102710971,0.218180059,14.77799422,22,14887,,,85.97181736,64,74443,66.20877523,109.7840915,,,,,,,,,,,,,86.68278662,65.65269608,112.3076044,,,,7.4,,,,,0,,,,,0.074346405,455,6120,0.047562908,0.101129903,0.071807629,0.044351717,0.09926354,0.004738562,0,0.010943519,0.002287582,0,0.006299832,0.837800306,6033,7201,0.804916952,0.870683659,,,,,,,,,,,,,0.822270228,0.760062963,0.884477493,0.307,,7201,0.258895692,0.355104308,77.52780577,,,76.07966515,78.97594639,,,,,,,,,,,,,78.03004191,76.52755586,79.53252797,,,,390.5055947,228,40151,336.0016317,445.0095578,,,,,,,,,,,,,371.3230365,316.9609917,425.6850812,,,,81.24576845,12,14770,41.98087413,141.9200071,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.093,,,0.079,0.109,0.149,,,0.128,0.172,0.08,,,0.067,0.095,88.2,11,12474,,,0.072,1080,,,,0.027308524,428.0064905,15673,,,,,,,,,,,,,,,,,,,,,,,,,,0.3,,,0.285,0.316,0.069862684,580,8302,0.05794779,0.081777577,0.034144976,122,3573,0.023421572,0.044868381,0.001754386,26,14820,,,570,0.932653061,182.8,196,,,,,,,,3.245127187,,,,,,,,2.798598531,3.310643646,3.332658924,,,,,,,,2.953746203,3.433382827,0.04871424,,,,,1080.31372,,,,,0.770639334,46841,60782,0.705293736,0.835984933,68795,,,59835,77755,,,,98203,31395,165011,,,,79405,48695.55319,110114.4468,66828,61662.89362,71993.10638,,,,,,0.33568351,857,2553,,,67.91076791,,,,,0.268682317,,68795,,,18.86792453,16,848,,,,,,,,,,,,,,,,,,,,,,,,,,18.79192911,14,74443,9.710063988,32.82571835,18.80633505,,,,,,,,,,,,,19.28187403,9.625442045,34.50059885,,,,,,,,,,,,,,,,,,,,,,,,,,,14.32541615,15,104709,8.017826675,23.6275954,,,,,,,,,,,,,10.76472615,5.162104607,19.79671465,,,,21.25,,1600,,,5,29,0.706987094,7943,11235,,,0.702,,,,,53.75879739,,,,,0.714170563,4430,6203,0.681243053,0.747098072,0.067476383,400,5928,0.041972632,0.092980134,0.827341609,5132,6203,0.793226132,0.861457086,14820,,,,,0.229014845,3394,14820,,,0.215452092,3193,14820,,,0.009176788,136,14820,,,0.006140351,91,14820,,,0.02388664,354,14820,,,0.000877193,13,14820,,,0.070985155,1052,14820,,,0.876855601,12995,14820,,,0.014094433,200,14190,0.00473871,0.023450156,0.495614035,7345,14820,,,0.494248288,7433,15039,, -19,081,19081,IA,Hancock County,2024,1,5599.071312,127,28485,3952.748129,7245.394495,0,,,,2,,,,2,,,,2,,,,2,5561.132101,3829.122842,7293.141359,,,,,2,,0.13,,,0.108,0.156,3.1370599,,,2.418639925,3.943974529,4.621805882,,,3.62817921,5.64025915,0.042579075,35,822,0.028776195,0.056381956,0,,,,,,,,,,,,,0.036211699,0.022546715,0.049876683,,,,,,,0.178,,,0.142,0.22,0.365,,,0.288,0.444,8.8,0.034610183,0.079,,,0.241,,,0.197,0.292,0.708568782,7649,10795,,,0.192777507,,,0.155639091,0.234332011,0.571428571,4,7,0.387251166,0.710103252,281.3,30,10663,,,13.65348399,29,2124,9.143952513,19.60868053,,,,,,,,,,,,,12.06082853,7.645530696,18.0971646,,,,,,,0.057294234,465,8116,0.047762319,0.066826149,9.37822E-05,1,10663,,,10663,0.000655124,7,10685,,,1526.428571,0.000374357,4,10685,,,2671.25,2691,,,,,,,,,2758,0.57,,,,,,,,,0.57,0.56,,,,,,,,,0.56,0.913315111,7017,7683,0.892273651,0.934356572,0.64237856,1534,2388,0.552980437,0.731776682,0.022928609,132,5757,,,0.106,239,,0.064297872,0.147702128,,,,,,,,,,0.059090909,0,0.206724242,0.085279188,0.035368838,0.135189538,3.406708206,109897,32259,2.904467954,3.908948457,0.176470588,405,2295,0.10974791,0.243193267,27.19684892,29,10663,,,71.31730571,38,53283,50.46837011,97.88857407,,,,,,,,,,,,,70.94067333,49.41277825,98.66130362,,,,7.1,,,,,1,,,,,0.10553814,505,4785,0.077181448,0.133894832,0.088607595,0.059484848,0.117730341,0.010449321,0.001350636,0.019548006,0.010449321,0,0.025427309,0.798956084,4439,5556,0.763906224,0.834005943,,,,,,,,,,,,,0.799540614,0.756089741,0.842991487,0.257,,5556,0.204290902,0.309709098,80.18317297,,,78.60337154,81.7629744,,,,,,,,,,,,,80.22671422,78.58538526,81.86804319,,,,293.8850425,127,28485,237.5846297,350.1854552,,,,,,,,,,,,,292.3932926,234.5358928,350.2506925,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.098,,,0.084,0.114,0.156,,,0.134,0.179,0.083,,,0.07,0.098,,,,,,0.079,850,,,,0.034610183,392.5140889,11341,,,,,,,,,,,,,,,,,,,,,,,,,,0.317,,,0.3,0.333,0.066848568,392,5864,0.054933674,0.078763461,0.034162801,81,2371,0.023439396,0.044886205,0.00112307,12,10685,,,890.4166667,0.927330509,109.425,118,,,,,,,,2.976302817,,,,,,,,,2.984907189,3.113639772,,,,,,,,,3.154367804,0.049102796,,,,,2087.307,,,,,0.869700809,44620,51305,0.799937002,0.939464616,67498,,,60089.31915,74906.68085,,,,,,,,,,48295,10769.04255,85820.95745,68680,64569.3617,72790.6383,,,,,,0.312176166,482,1544,,,,,,,,0.254540875,,67498,,,8.012820513,5,624,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1100,,,-888,10,0.74676346,6172,8265,,,0.698,,,,,5.263045753,,,,,0.813618507,3728,4582,0.782475018,0.844761997,0.077691958,342,4402,0.048127476,0.10725644,0.845264077,3873,4582,0.814830865,0.875697289,10685,,,,,0.213008891,2276,10685,,,0.243612541,2603,10685,,,0.007393542,79,10685,,,0.004024333,43,10685,,,0.006364062,68,10685,,,0.001216659,13,10685,,,0.056527843,604,10685,,,0.918296678,9812,10685,,,0.003140334,32,10190,0,0.011438877,0.49508657,5290,10685,,,1,10795,10795,, -19,083,19083,IA,Hardin County,2024,1,7353.918879,263,44762,5868.22077,8839.616987,0,,,,2,,,,2,,,,2,,,,2,7604.936042,5985.699236,9224.172847,,,,,2,,0.133,,,0.112,0.157,3.198371699,,,2.504462202,3.990371031,4.807111875,,,3.886435283,5.79131941,0.05945946,66,1110,0.045547323,0.073371596,0,,,,,,,,,,,,,0.058300395,0.043864033,0.072736757,,,,,,,0.179,,,0.144,0.217,0.369,,,0.304,0.438,9,0.023945457,0.075,,,0.256,,,0.211,0.304,0.849685982,14341,16878,,,0.192149522,,,0.158419471,0.231048877,0.25,4,16,0.11917111,0.394165016,413,69,16708,,,13.23529412,45,3400,9.65391435,17.70986485,,,,,,,,,,,,,12.52963088,8.822016447,17.2704457,,,,,,,0.065106072,801,12303,0.054382667,0.075829476,0.000359109,6,16708,,,2784.666667,0.000724332,12,16567,,,1380.583333,0.000482888,8,16567,,,2070.875,1660,,,,,,,,,1640,0.56,,,,,,,,,0.56,0.56,,,,,,,,,0.56,0.933728099,11511,12328,0.920077424,0.947378774,0.649327122,2509,3864,0.575996838,0.722657406,0.029542285,233,7887,,,0.143,415,,0.087,0.199,0.476190476,0.156481125,0.795899828,,,,,,,0.209677419,0.067210338,0.352144501,0.101157148,0.059024951,0.143289346,4.353345718,110144,25301,3.837763712,4.868927723,0.188443018,587,3115,0.12587682,0.251009216,24.53914293,41,16708,,,77.3395205,65,84045,59.68900914,98.57556763,,,,,,,,,,,,,80.45887513,61.68735821,103.1446467,,,,7.7,,,,,0,,,,,0.107863605,775,7185,0.087127794,0.128599415,0.087464388,0.064522977,0.110405798,0.013778706,0.005552248,0.022005163,0.024356298,0.011025885,0.037686711,0.801561166,6572,8199,0.773310473,0.829811859,,,,,,,,,,0.815864023,0.755109349,0.876618696,0.796466431,0.757083283,0.835849579,0.241,,8199,0.204605899,0.277394101,77.33416734,,,76.08437305,78.58396164,,,,,,,,,,,,,77.03081226,75.70423192,78.35739259,,,,390.3388773,263,44762,339.1816598,441.4960948,,,,,,,,,,,,,396.6795267,343.3512487,450.0078047,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.1,,,0.086,0.116,0.157,,,0.135,0.18,0.085,,,0.073,0.099,82.5,12,14554,,,0.075,1280,,,,0.023945457,419.8596409,17534,,,,,,,,,,,,,,,,,,,,,,,,,,0.314,,,0.296,0.331,0.074683,695,9306,0.061576617,0.087789383,0.037048765,117,3158,0.025133871,0.048963659,0.000724332,12,16567,,,1380.583333,0.878266332,174.775,199,,,,,,,,3.079041066,,,,,,,,,3.11576763,3.171386664,,,,,,,,,3.237360531,0.039370161,,,,,1504.69988,,,,,0.889361254,42258,47515,0.784456379,0.99426613,59622,,,54547.44681,64696.55319,39196,20985.2766,57406.7234,86625,62913.17021,110336.8298,,,,57250,38435.19149,76064.80851,64660,57987.65957,71332.34043,,,,,,0.381897712,1135,2972,,,,,,,,0.297021234,,59622,,,10.05025126,8,796,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.429002512,10,118638,4.042034337,15.50123573,,,,,,,,,,,,,,,,,,,86.66666667,,1500,,,34,96,0.686969813,8989,13085,,,0.689,,,,,34.00713496,,,,,0.741926305,5215,7029,0.713275976,0.770576635,0.094978826,628,6612,0.069640395,0.120317258,0.803101437,5645,7029,0.763461037,0.842741837,16567,,,,,0.183799119,3045,16567,,,0.240115893,3978,16567,,,0.015271323,253,16567,,,0.006398262,106,16567,,,0.009778475,162,16567,,,0.000663971,11,16567,,,0.048047323,796,16567,,,0.913321664,15131,16567,,,0.012599305,203,16112,0.006329696,0.018868914,0.494778777,8197,16567,,,0.700319943,11820,16878,, -19,085,19085,IA,Harrison County,2024,1,7225.016939,256,38995,5721.396027,8728.637851,0,,,,2,,,,2,,,,2,,,,2,7495.157882,5906.382441,9083.933323,,,,,2,,0.13,,,0.106,0.154,3.134904373,,,2.433611114,3.941241374,4.773918307,,,3.815214765,5.827436561,0.068021201,77,1132,0.053353636,0.082688767,0,,,,,,,,,,,,,0.066666667,0.051891861,0.081441472,,,,,,,0.182,,,0.141,0.225,0.385,,,0.312,0.461,8.7,0.058333347,0.074,,,0.247,,,0.199,0.3,0.337127966,4916,14582,,,0.205115874,,,0.167122987,0.248662453,0.125,2,16,0.026484325,0.278054433,259,38,14669,,,12.05211726,37,3070,8.485802791,16.61225607,,,,,,,,,,,,,12.36312257,8.611367857,17.19411069,,,,,,,0.056022409,660,11781,0.047681983,0.064362835,0.000340855,5,14669,,,2933.8,0.000477555,7,14658,,,2094,0.000477555,7,14658,,,2094,1419,,,,,,,,,1425,0.52,,,,,,,,,0.52,0.37,,,,,,,,,0.37,0.930749557,9462,10166,0.915687322,0.945811793,0.681508967,2204,3234,0.613354951,0.749662984,0.026605377,191,7179,,,0.115,389,,0.073297872,0.156702128,,,,,,,,,,0.034782609,0,0.286336277,0.096711799,0.056552412,0.136871186,3.878344896,125224,32288,3.136445601,4.620244191,0.147893636,495,3347,0.093538152,0.20224912,15.67932374,23,14669,,,87.42737887,62,70916,67.03007006,112.077954,,,,,,,,,,,,,91.24759003,69.95900406,116.9752923,,,,7.1,,,,,0,,,,,0.091878589,560,6095,0.072296784,0.111460394,0.078145695,0.056330551,0.099960839,0.007875308,0.002756823,0.012993793,0.006562756,0.000607622,0.012517891,0.820572524,5991,7301,0.792969012,0.848176037,,,,,,,,,,,,,0.757568807,0.709919519,0.805218096,0.499,,7301,0.449542426,0.548457574,75.71333842,,,74.49403179,76.93264504,,,,,,,,,,,,,75.45318034,74.19334065,76.71302002,,,,434.300945,256,38995,377.8899597,490.7119303,,,,,,,,,,,,,444.5173727,386.2465958,502.7881496,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.099,,,0.083,0.115,0.159,,,0.137,0.184,0.082,,,0.069,0.097,40.8,5,12247,,,0.074,1070,,,,0.058333347,870.8002057,14928,,,,,,,,,,,,,,,,,,,,,,,,,,0.323,,,0.306,0.34,0.065589467,548,8355,0.054866063,0.076312872,0.034157179,123,3601,0.023433774,0.044880583,0.000886888,13,14658,,,1127.538462,0.940833333,197.575,210,,,,,,,,3.158550721,,,,,,,,,3.152716968,2.983521798,,,,,,,,,2.978223916,0.064616911,,,,,284.24428,,,,,0.806159577,46750,57991,0.74077948,0.871539673,73457,,,65068.91489,81845.08511,,,,,,,,,,106250,63486.25532,149013.7447,75778,72134.42553,79421.57447,,,,,,0.339968774,871,2562,,,,,,,,0.253958098,,73457,,,8.215962441,7,852,,,,,,,,,,,,,,,,,,,,,,,,,,19.99896349,14,70916,10.64860578,34.19883664,19.7416662,,,,,,,,,,,,,20.89687838,11.12670764,35.73429845,,,,,,,,,,,,,,,,,,,,,,,,,,,18.12141347,18,99330,10.7398981,28.6396459,,,,,,,,,,,,,18.87287025,11.18525901,29.82727158,,,,26,,1500,,,8,31,0.752653438,8155,10835,,,0.679,,,,,13.38326269,,,,,0.756666108,4512,5963,0.7302677,0.783064516,0.078000692,451,5782,0.057117358,0.098884026,0.826765051,4930,5963,0.797034757,0.856495346,14658,,,,,0.232228135,3404,14658,,,0.201255287,2950,14658,,,0.005389548,79,14658,,,0.003479329,51,14658,,,0.003820439,56,14658,,,0.000272889,4,14658,,,0.021967526,322,14658,,,0.953813617,13981,14658,,,0.000580257,8,13787,0,0.00579569,0.492563788,7220,14658,,,1,14582,14582,, -19,087,19087,IA,Henry County,2024,1,6124.352413,302,54892,5066.437494,7182.267333,0,,,,2,,,,2,,,,2,,,,2,5949.738856,4845.800039,7053.677673,,,,,2,,0.138,,,0.115,0.163,3.371910275,,,2.639230725,4.173264222,4.80305074,,,3.87350268,5.77023757,0.061762665,89,1441,0.049333457,0.074191873,0,,,,,,,,,,,,,0.061806656,0.04852078,0.075092532,,,,,,,0.179,,,0.139,0.219,0.394,,,0.319,0.467,8.2,0.10449795,0.077,,,0.256,,,0.208,0.308,0.78854604,16151,20482,,,0.192215509,,,0.15639316,0.232745157,0.15,3,20,0.050642257,0.283837277,397.3,81,20387,,,16.3284348,70,4287,12.72881598,20.62999506,,,,,,,,,,36.11111111,19.22764581,61.75109977,13.7260509,10.12050638,18.19875213,,,,,,,0.055185728,829,15022,0.046845302,0.063526153,0.00058861,12,20387,,,1698.916667,0.000643692,13,20196,,,1553.538462,0.001089325,22,20196,,,918,1810,,,,,,,,,1846,0.49,,,,,,,,,0.49,0.54,,,,,,0.63,,0.27,0.54,0.911420573,12697,13931,0.892350267,0.930490879,0.599703954,2836,4729,0.533735885,0.665672023,0.029035639,277,9540,,,0.147,602,,0.093382979,0.200617021,,,,,,,0.431818182,0,0.965984956,0.316489362,0.089565251,0.543413472,0.119350074,0.076690316,0.162009832,3.838780694,113340,29525,3.39407178,4.283489609,0.197130087,838,4251,0.142150585,0.252109589,10.30068181,21,20387,,,75.02400768,75,99968,59.01114127,94.04324329,,,,,,,,,,,,,76.31327168,59.14173735,96.91515744,,,,8.3,,,,,0,,,,,0.081027668,615,7590,0.058046231,0.104009105,0.061129568,0.041019134,0.081240002,0.004479578,0,0.012820584,0.019104084,0.006050761,0.032157408,0.81653372,7882,9653,0.787721547,0.845345894,,,,,,,,,,,,,0.841527607,0.812859213,0.870196001,0.215,,9653,0.178469628,0.251530372,77.74568502,,,76.74120341,78.75016664,,,,,,,,,,,,,77.84089988,76.80457162,78.87722815,,,,375.794258,302,54892,331.6932297,419.8952863,,,,,,,,,,,,,372.2534558,326.386268,418.1206436,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.102,,,0.087,0.119,0.155,,,0.133,0.178,0.087,,,0.074,0.102,57.5,10,17378,,,0.077,1580,,,,0.10449795,2105.111211,20145,,,,,,,,,,,,,,,,,,,,,,,,,,0.345,,,0.327,0.36,0.06539712,704,10765,0.053482227,0.077312014,0.030607685,137,4476,0.021075771,0.0401396,0.000841751,17,20196,,,1188,0.929535865,220.3,237,,,,,,,,2.875603066,,,,,,,,,2.969474373,3.00005545,,,,,,,,,3.075755918,0.043802031,,,,,-180.4724,,,,,0.813420557,41033,50445,0.724616444,0.90222467,63702,,,57045.14894,70358.85106,,,,66318,17007.02128,115628.9787,,,,91083,50966.74468,131199.2553,62063,58127.51064,65998.48936,,,,,,0.458252427,1416,3090,,,47.30537203,,,,,0.2858309,,63702,,,7.380073801,8,1084,,,,,,,,,,,,,,,,,,,,,,,,,,18.79095415,20,99968,11.13671034,29.69780883,20.00640205,,,,,,,,,,,,,18.21269248,10.19350573,30.03906655,,,,10.00320102,10,99968,4.796923712,18.39624284,,,,,,,,,,,,,,,,,,,13.60144891,19,139691,8.188960752,21.24034732,,,,,,,,,,,,,15.45155125,9.302843219,24.1295113,,,,47.89473684,,1900,,,15,76,0.654557377,9982,15250,,,0.722,,,,,65.41399008,,,,,0.745616331,5698,7642,0.718404227,0.772828435,0.074713419,554,7415,0.051889674,0.097537163,0.829494897,6339,7642,0.801022474,0.857967319,20196,,,,,0.205189146,4144,20196,,,0.199593979,4031,20196,,,0.029312735,592,20196,,,0.004555358,92,20196,,,0.023767083,480,20196,,,0.001485443,30,20196,,,0.056347792,1138,20196,,,0.871657754,17604,20196,,,0.012637334,245,19387,0.005318487,0.019956181,0.478114478,9656,20196,,,0.546723953,11198,20482,, -19,089,19089,IA,Howard County,2024,1,5930.447326,116,25167,4099.601213,7761.293439,0,,,,2,,,,2,,,,2,,,,2,6185.944727,4253.595646,8118.293808,,,,,2,,0.131,,,0.108,0.157,3.134096464,,,2.433499875,3.940089329,4.476520044,,,3.558084793,5.540607561,0.066666667,56,840,0.049797673,0.083535661,0,,,,,,,,,,,,,0.066073698,0.04871811,0.083429285,,,,,,,0.183,,,0.144,0.222,0.352,,,0.279,0.431,8.5,0.101758899,0.064,,,0.245,,,0.196,0.295,0.764705882,7241,9469,,,0.195528838,,,0.158763731,0.239521017,0,0,3,0,0.420755624,200.5,19,9478,,,10.04520342,20,1991,6.135871213,15.51400196,,,,,,,,,,,,,10.77005924,6.578631979,16.63348299,,,,,,,0.060694796,456,7513,0.051162881,0.070226711,0.000527538,5,9478,,,1895.6,0.000209798,2,9533,,,4766.5,0.000524494,5,9533,,,1906.6,1977,,,,,,,,,1995,0.49,,,,,,,,,0.49,0.38,,,,,,,,,0.39,0.920388654,5873,6381,0.898490296,0.942287012,0.614278869,1282,2087,0.509267077,0.719290662,0.03110184,164,5273,,,0.111,263,,0.066914894,0.155085106,,,,,,,,,,0.347222222,0.070710938,0.623733506,0.075764491,0.031241358,0.120287624,3.792935695,110712,29189,2.84155892,4.74431247,0.102532171,247,2409,0.050561216,0.154503126,16.88119857,16,9478,,,82.20304151,38,46227,58.17176465,112.830097,,,,,,,,,,,,,85.62415503,60.59274819,117.5258425,,,,7.7,,,,,0,,,,,0.073235686,275,3755,0.049573946,0.096897426,0.055942184,0.034391818,0.07749255,0.010386152,0,0.022047778,0.009320906,0,0.020846371,0.750877193,3424,4560,0.714973056,0.78678133,,,,,,,,,,,,,0.74680549,0.701930349,0.791680631,0.289,,4560,0.223197849,0.354802151,78.21369622,,,76.61513743,79.81225501,,,,,,,,,,,,,77.96173931,76.3081798,79.61529881,,,,319.546904,116,25167,257.6564129,381.4373952,,,,,,,,,,,,,328.6414071,264.696878,392.5859361,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.098,,,0.083,0.115,0.156,,,0.133,0.18,0.083,,,0.07,0.098,,,,,,0.064,610,,,,0.101758899,973.4256256,9566,,,,,,,,,,,,,,,,,,,,,,,,,,0.317,,,0.298,0.333,0.071941051,371,5157,0.058834668,0.085047434,0.037292258,92,2467,0.025377364,0.049207151,0.001048988,10,9533,,,953.3,0.954285714,100.2,105,,,,,,,,2.89653843,,,,,,,,,2.938212859,2.685455929,,,,,,,,,2.750694855,0.032496218,,,,,684.80365,,,,,0.796057948,40388,50735,0.688404952,0.903710945,66979,,,57565.04255,76392.95745,,,,,,,,,,43750,30336.21277,57163.78723,65614,56830.34043,74397.65957,,,,,,0.381968341,555,1453,,,,,,,,0.242911958,,66979,,,14.81481482,10,675,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1100,,,-888,13,0.72804699,4958,6810,,,0.712,,,,,11.61321387,,,,,0.761826183,2770,3636,0.725560716,0.798091649,0.077977721,273,3501,0.042689121,0.11326632,0.818481848,2976,3636,0.779644707,0.857318989,9533,,,,,0.251861953,2401,9533,,,0.206230987,1966,9533,,,0.00765761,73,9533,,,0.004195951,40,9533,,,0.004615546,44,9533,,,0.000734291,7,9533,,,0.020455261,195,9533,,,0.954893528,9103,9533,,,0.004993758,44,8811,0,0.012845064,0.495017308,4719,9533,,,1,9469,9469,, -19,091,19091,IA,Humboldt County,2024,1,6527.764592,150,25779,4831.976181,8223.553003,0,,,,2,,,,2,,,,2,,,,2,6877.942312,5048.506149,8707.378475,,,,,2,,0.142,,,0.118,0.17,3.315484119,,,2.568462067,4.10282185,4.74084225,,,3.720364569,5.751733746,0.047559449,38,799,0.032801703,0.062317195,0,,,,,,,,,,,,,0.048746518,0.032995313,0.064497723,,,,,,,0.188,,,0.148,0.232,0.378,,,0.296,0.459,8.1,0.074685005,0.095,,,0.26,,,0.211,0.312,0.67166823,6446,9597,,,0.189974558,,,0.151179371,0.230216546,0.5,5,10,0.338551574,0.634481032,249.1,24,9634,,,13.44621514,27,2008,8.861140504,19.56353707,,,,,,,,,,,,,12.06896552,7.470879876,18.44869583,,,,,,,0.05956941,451,7571,0.050037495,0.069101325,0.000103799,1,9634,,,9634,0.000417886,4,9572,,,2393,0.000417886,4,9572,,,2393,1173,,,,,,,,,1182,0.56,,,,,,,,,0.56,0.41,,,,,,,,,0.41,0.941521347,6263,6652,0.927239854,0.95580284,0.70083877,1504,2146,0.604159906,0.797517634,0.024405002,121,4958,,,0.114,253,,0.067531915,0.160468085,,,,,,,,,,0.137254902,0,0.28818057,0.196199281,0.122302735,0.270095827,4.297412043,116404,27087,3.449259201,5.145564884,0.203007519,459,2261,0.126241441,0.279773597,13.49387586,13,9634,,,66.97923644,32,47776,45.81374814,94.55469709,,,,,,,,,,,,,72.21683104,49.39625897,101.9486179,,,,7,,,,,0,,,,,0.059594756,250,4195,0.03612661,0.083062902,0.051824818,0.028242078,0.075407557,0.004290822,0,0.010239622,0.008343266,0.000787058,0.015899473,0.776455589,3654,4706,0.738266482,0.814644695,,,,,,,,,,,,,0.779440628,0.738306896,0.820574361,0.181,,4706,0.138975713,0.223024288,78.2905789,,,76.72402252,79.85713528,,,,,,,,,,,,,77.99724681,76.3615722,79.63292141,,,,389.4041039,150,25779,322.1175171,456.6906907,,,,,,,,,,,,,400.9690049,330.6569618,471.281048,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.104,,,0.089,0.122,0.161,,,0.138,0.185,0.09,,,0.075,0.106,,,,,,0.095,920,,,,0.074685005,733.033321,9815,,,,,,,,,,,,,,,,,,,,,,,,,,0.309,,,0.291,0.325,0.069291935,366,5282,0.057377041,0.081206829,0.038782319,93,2398,0.026867425,0.050697212,0.0007313,7,9572,,,1367.428571,0.975,103.35,106,,,,,,,,3.363727601,,,,,,,,,3.441479711,3.513555078,,,,,,,,,3.571616627,0.013651352,,,,,56.5745,,,,,0.779735227,45234,58012,0.625224897,0.934245558,71521,,,65595.7234,77446.2766,,,,,,,,,,,,,67894,64103.87234,71684.12766,,,,,,0.346200241,574,1658,,,,,,,,0.237440752,,71521,,,8.591065292,5,582,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,29.09090909,,1100,,,6,26,0.749226442,5327,7110,,,0.689,,,,,25.80201686,,,,,0.741989081,3126,4213,0.702530987,0.781447176,0.084018948,337,4011,0.052207282,0.115830614,0.828150961,3489,4213,0.797846953,0.85845497,9572,,,,,0.235478479,2254,9572,,,0.2226285,2131,9572,,,0.00908901,87,9572,,,0.004283326,41,9572,,,0.005954868,57,9572,,,0.000313414,3,9572,,,0.054951943,526,9572,,,0.915169244,8760,9572,,,0.018131564,164,9045,0.007598194,0.028664935,0.502716256,4812,9572,,,0.443680317,4258,9597,, -19,093,19093,IA,Ida County,2024,1,6612.814178,107,18595,4390.413974,8835.214383,0,,,,2,,,,2,,,,2,,,,2,6953.827741,4551.026446,9356.629035,,,,,2,,0.135,,,0.113,0.16,3.241569129,,,2.492316978,4.094874775,4.416452892,,,3.477551356,5.425830012,0.062015504,32,516,0.041205163,0.082825845,0,,,,,,,,,,,,,0.055084746,0.034502291,0.075667201,,,,,,,0.182,,,0.146,0.224,0.361,,,0.289,0.438,9.2,0.003765805,0.078,,,0.252,,,0.206,0.302,0.742041399,5198,7005,,,0.187927976,,,0.15097981,0.227712683,0.428571429,3,7,0.219826693,0.607881191,172.5,12,6956,,,15.06456241,21,1394,9.325201567,23.02778388,,,,,,,,,,,,,14.74010861,8.874508273,23.01850549,,,,,,,0.063814226,349,5469,0.053090821,0.07453763,0.000287522,2,6956,,,3478,0.00043554,3,6888,,,2296,0.00014518,1,6888,,,6888,2710,,,,,,,,,2713,0.44,,,,,,,,,0.44,0.36,,,,,,,,,0.36,0.930379747,4410,4740,0.908615083,0.952144411,0.68989071,1010,1464,0.586320493,0.793460927,0.022016512,88,3997,,,0.113,187,,0.068914894,0.157085106,,,,,,,,,,0.325842697,0.16214738,0.489538013,0.09012016,0.043401171,0.136839149,3.857679805,113925,29532,3.216868535,4.498491075,0.195937873,328,1674,0.132330019,0.259545728,20.12650949,14,6956,,,69.85882695,24,34355,44.75986859,103.944397,,,,,,,,,,,,,70.82807255,44.8989223,106.2768851,,,,6.7,,,,,0,,,,,0.070707071,210,2970,0.046545194,0.094868948,0.043611584,0.018434169,0.068789,0.018181818,0.006517373,0.029846263,0.008080808,0,0.020517816,0.804366812,2763,3435,0.768339939,0.840393686,,,,,,,,,,,,,0.803705693,0.775757643,0.831653743,0.194,,3435,0.155760801,0.232239199,77.13093376,,,75.30177183,78.96009568,,,,,,,,,,,,,76.91796675,74.98370589,78.8522276,,,,379.6636495,107,18595,302.7518623,456.5754366,,,,,,,,,,,,,389.4319668,309.2059325,469.6580012,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.101,,,0.086,0.117,0.157,,,0.136,0.18,0.088,,,0.075,0.102,,,,,,0.078,550,,,,0.003765805,26.695788,7089,,,,,,,,,,,,,,,,,,,,,,,,,,0.306,,,0.289,0.323,0.071869134,268,3729,0.058762751,0.084975517,0.047907489,87,1816,0.032418127,0.063396851,0.00188734,13,6888,,,529.8461539,0.965944882,122.675,127,,,,,,,,3.494191506,,,,,,,,,3.527295007,3.697502142,,,,,,,,,3.785838778,0.041043543,,,,,346.43335,,,,,0.817230974,44146,54019,0.752126418,0.882335531,67696,,,58621.61702,76770.38298,,,,,,,78750,2367.191489,155132.8085,53750,22698.59575,84801.40426,62240,50968.51064,73511.48936,,,,,,0.392660551,428,1090,,,,,,,,0.227871662,,67696,,,9.87654321,4,405,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,800,,,5,-888,0.748832685,3849,5140,,,0.707,,,,,11.26120201,,,,,0.778514589,2348,3016,0.751427024,0.805602154,0.0585554,167,2852,0.031707364,0.085403436,0.845159151,2549,3016,0.814435545,0.875882757,6888,,,,,0.243466899,1677,6888,,,0.222270616,1531,6888,,,0.005952381,41,6888,,,0.003774681,26,6888,,,0.006678281,46,6888,,,0.0021777,15,6888,,,0.043263647,298,6888,,,0.926829268,6384,6888,,,0.000455719,3,6583,0,0.010995467,0.49898374,3437,6888,,,1,7005,7005,, -19,095,19095,IA,Iowa County,2024,1,6232.200359,208,44524,4860.553673,7603.847046,0,,,,2,,,,2,,,,2,,,,2,6271.016729,4831.454825,7710.578634,,,,,2,,0.12,,,0.099,0.144,3.014287125,,,2.33086969,3.798209622,4.43034433,,,3.534548713,5.425914204,0.058727569,72,1226,0.04556655,0.071888588,0,,,,,,,,,,,,,0.055263158,0.041999084,0.068527231,,,,,,,0.163,,,0.126,0.202,0.373,,,0.302,0.449,9.3,0.010261501,0.07,,,0.24,,,0.196,0.292,0.657364062,10953,16662,,,0.197365868,,,0.160560989,0.23896076,0.260869565,6,23,0.151021274,0.378411613,265.6,44,16568,,,5.906674542,20,3386,3.607950262,9.12237977,,,,,,,,,,,,,5.419190309,3.156878059,8.67664865,,,,,,,0.046219751,615,13306,0.039070814,0.053368687,0.000603573,10,16568,,,1656.8,0.000364188,6,16475,,,2745.833333,0.001031867,17,16475,,,969.1176471,2605,,,,,,,,,2621,0.51,,,,,,,,,0.51,0.51,,,,,,,,,0.51,0.936796537,10820,11550,0.925392524,0.948200549,0.67765761,2569,3791,0.597131119,0.758184102,0.025027865,247,9869,,,0.076,287,,0.047404255,0.104595745,,,,,,,,,,0.37398374,0.043081185,0.704886295,0.104227833,0.050732608,0.157723059,3.88864597,133400,34305,3.370773403,4.406518537,0.197978751,764,3859,0.127551052,0.26840645,15.08932883,25,16568,,,83.81196539,68,81134,65.08327058,106.251637,,,,,,,,,,,,,83.43219179,64.25295408,106.5410463,,,,8.3,,,,,1,,,,,0.083521445,555,6645,0.061041125,0.106001765,0.071795647,0.050243936,0.093347358,0.008126411,0,0.017267589,0.004514673,0,0.009986881,0.802577692,6663,8302,0.763990343,0.841165041,,,,,,,,,,,,,0.777629827,0.73715764,0.818102014,0.365,,8302,0.315599868,0.414400132,78.13195556,,,76.97070296,79.29320817,,,,,,,,,,,,,78.11704295,76.9201009,79.313985,,,,332.4566169,208,44524,284.4143789,380.4988549,,,,,,,,,,,,,327.6821241,278.9274576,376.4367906,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.093,,,0.079,0.109,0.148,,,0.127,0.171,0.079,,,0.066,0.093,50.4,7,13893,,,0.07,1160,,,,0.010261501,167.8268491,16355,,,,,,,,,,,,,,,,,,,,,,,,,,0.305,,,0.289,0.321,0.05368632,509,9481,0.044154405,0.063218235,0.029090005,117,4022,0.01955809,0.03862192,0.000667678,11,16475,,,1497.727273,0.956491713,173.125,181,,,,,,,,3.227027097,,,,,,,,,3.291143038,3.164658194,,,,,,,,,3.269976713,0.03482379,,,,,1637.698135,,,,,0.748058489,46043,61550,0.667502096,0.828614882,72948,,,62572.51064,83323.48936,,,,,,,,,,39143,1618.234043,76667.76596,70367,64199.85106,76534.14894,,,,,,0.295277055,794,2689,,,,,,,,0.22001974,,72948,,,5.37056928,5,931,,,,,,,,,,,,,,,,,,,,,,,,,,14.88930177,12,81134,7.432685797,26.64107371,14.79034683,,,,,,,,,,,,,13.45538868,6.152660511,25.542519,,,,,,,,,,,,,,,,,,,,,,,,,,,21.08110957,24,113846,13.50706468,31.36702,,,,,,,,,,,,,22.23622281,14.24716753,33.08573694,,,,,,1800,,,-888,17,0.786914378,9742,12380,,,0.729,,,,,6.435480732,,,,,0.776846131,5281,6798,0.742149536,0.811542726,0.07889991,525,6654,0.056892149,0.100907671,0.865107385,5881,6798,0.845185243,0.885029526,16475,,,,,0.232412747,3829,16475,,,0.200182094,3298,16475,,,0.006494689,107,16475,,,0.003277694,54,16475,,,0.006009105,99,16475,,,0.000546282,9,16475,,,0.038239757,630,16475,,,0.93784522,15451,16475,,,0.004345881,68,15647,0,0.010237365,0.492139606,8108,16475,,,1,16662,16662,, -19,097,19097,IA,Jackson County,2024,1,7309.481258,316,52612,5931.410276,8687.55224,0,,,,2,,,,2,,,,2,,,,2,7560.139954,6105.526607,9014.7533,,,,,2,,0.137,,,0.114,0.162,3.285653851,,,2.544619244,4.057824524,4.807134195,,,3.875172287,5.804613726,0.059539919,88,1478,0.047475868,0.07160397,0,,,,,,,,,,,,,0.057610242,0.045430768,0.069789716,,,,,,,0.188,,,0.148,0.229,0.371,,,0.3,0.447,8.4,0.070180295,0.081,,,0.251,,,0.204,0.302,0.564331537,10996,19485,,,0.197948162,,,0.163271714,0.237575271,0.25,4,16,0.11917111,0.394165016,216.9,42,19368,,,12.86254729,51,3965,9.577011309,16.91187424,,,,,,,,,,,,,12.00545703,8.723183454,16.1167657,,,,,,,0.054234377,821,15138,0.045893952,0.062574803,0.000361421,7,19368,,,2766.857143,0.000517491,10,19324,,,1932.4,0.001086732,21,19324,,,920.1904762,3437,,,,,,,,,3460,0.51,,,,,,,,,0.51,0.56,,,,,,,,,0.56,0.939798361,12957,13787,0.925713528,0.953883193,0.617974806,2551,4128,0.550427416,0.685522196,0.032014891,344,10745,,,0.134,555,,0.079191489,0.188808511,,,,,,,,,,0.086956522,0,0.289094975,0.107616324,0.071904612,0.143328037,4.319060106,125175,28982,3.46318876,5.174931452,0.197850969,847,4281,0.139219975,0.256481964,10.84262701,21,19368,,,76.43838446,74,96810,60.02057251,95.9613919,,,,,,,,,,,,,80.33000434,63.07633114,100.8469643,,,,9,,,,,0,,,,,0.076970067,630,8185,0.057957101,0.095983033,0.070018622,0.051470912,0.088566332,0.003420892,0,0.007121833,0.006108736,0.001862207,0.010355264,0.824521073,7532,9135,0.787741909,0.861300237,,,,,,,,,,,,,0.820130608,0.775031053,0.865230162,0.363,,9135,0.317317608,0.408682392,77.71188032,,,76.52187798,78.90188266,,,,,,,,,,,,,77.44060846,76.21354945,78.66766747,,,,391.3320471,316,52612,344.6819374,437.9821568,,,,,,,,,,,,,397.9578425,349.8610438,446.0546412,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.102,,,0.087,0.118,0.16,,,0.137,0.184,0.086,,,0.073,0.1,55,9,16354,,,0.081,1580,,,,0.070180295,1392.938485,19848,,,,,,,,,,,,,,,,,,,,,,,,,,0.313,,,0.297,0.329,0.063814159,695,10891,0.051899265,0.075729052,0.030472776,136,4463,0.020940861,0.040004691,0.000310495,6,19324,,,3220.666667,0.935731132,198.375,212,,,,,,,,3.116279022,,,,,,,,,3.139301898,3.045518442,,,,,,,,,3.088701679,0.068132568,,,,,368.1775,,,,,0.714157888,42301,59232,0.62546288,0.802852895,64792,,,57513.19149,72070.80851,,,,,,,,,,,,,70000,63987.74468,76012.25532,,,,,,0.374771481,1025,2735,,,,,,,,0.263350414,,64792,,,6.071118821,7,1153,,,,,,,,,,,,,,,,,,,,,,,,,,14.73134605,13,96810,7.611901467,25.73269692,13.42836484,,,,,,,,,,,,,15.57780582,8.049279585,27.2112918,,,,10.32951141,10,96810,4.953402227,18.99633927,,,,,,,,,,,,,10.85540599,5.205589119,19.96347812,,,,19.15624125,26,135726,12.51349278,28.06833185,,,,,,,,,,,,,20.09615236,13.12747393,29.4455194,,,,22.5,,2000,,,8,37,0.742085971,11135,15005,,,0.704,,,,,28.73947775,,,,,0.797385621,6466,8109,0.778528904,0.816242338,0.083632632,652,7796,0.064359761,0.102905503,0.833518313,6759,8109,0.808036103,0.859000523,19324,,,,,0.218795281,4228,19324,,,0.220709998,4265,19324,,,0.008590354,166,19324,,,0.003881184,75,19324,,,0.00470917,91,19324,,,0.008590354,166,19324,,,0.019043676,368,19324,,,0.94411095,18244,19324,,,0.000707676,13,18370,0,0.004911622,0.49353136,9537,19324,,,0.687041314,13387,19485,, -19,099,19099,IA,Jasper County,2024,1,6932.43134,548,102277,6033.193393,7831.669288,0,,,,2,,,,2,,,,2,,,,2,7205.318104,6236.93112,8173.705088,,,,,2,,0.129,,,0.107,0.153,3.038450655,,,2.386588617,3.84106232,4.710547913,,,3.850123357,5.752541288,0.072577762,203,2797,0.062962738,0.082192786,0,,,,,,,,,,,,,0.071567484,0.061603384,0.081531584,,,,,,,0.183,,,0.146,0.225,0.363,,,0.297,0.431,8.9,0.039277336,0.075,,,0.236,,,0.192,0.285,0.760505646,28757,37813,,,0.19517908,,,0.159543252,0.235708269,0.227272727,5,22,0.117752454,0.350313422,256.9,97,37764,,,15.64156946,118,7544,12.81932002,18.4638189,,,,,,,,,,35.29411765,18.23698561,61.65172073,14.70802388,11.83955785,17.57648991,,,,,,,0.049302806,1432,29045,0.040962381,0.057643232,0.000397204,15,37764,,,2517.6,0.000527176,20,37938,,,1896.9,0.001159787,44,37938,,,862.2272727,1784,,,,,,,,,1798,0.47,,,,,,,,,0.47,0.6,,,,,,,,0.55,0.6,0.94191711,25136,26686,0.929785463,0.954048757,0.595342983,5676,9534,0.544754969,0.645930997,0.030031472,563,18747,,,0.102,841,,0.062680851,0.141319149,,,,,,,0.12195122,0,0.613834403,0.158823529,0,0.402194634,0.066630479,0.04306098,0.090199979,3.773427413,125674,33305,3.341638598,4.205216228,0.233613445,1946,8330,0.169851301,0.297375589,16.68255481,63,37764,,,74.64690403,139,186210,62.23722722,87.05658085,,,,,,,,,,,,,77.39669851,64.29202795,90.50136907,,,,7.8,,,,,0,,,,,0.090133151,1320,14645,0.070352735,0.109913568,0.072365259,0.05339544,0.091335079,0.012973711,0.005620727,0.020326695,0.009559577,0.002086067,0.017033086,0.801274238,14463,18050,0.774261673,0.828286803,,,,,,,,,,,,,0.743855817,0.704510915,0.783200718,0.367,,18050,0.328612587,0.405387413,78.19495153,,,77.34061359,79.04928946,,,,,,,,,,,,,77.87486078,76.98757423,78.76214733,,,,382.7297733,548,102277,349.2779605,416.181586,,,,,,,,,,,,,392.9918585,357.9936458,427.9900712,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.096,,,0.082,0.112,0.154,,,0.133,0.176,0.084,,,0.071,0.099,106.2,34,32007,,,0.075,2820,,,,0.039277336,1447.055617,36842,,,13.38126801,15,112097,7.489394125,22.07036662,,,,,,,,,,,,,14.43709757,8.080333914,23.81179691,,,,0.322,,,0.305,0.338,0.058476446,1219,20846,0.047753042,0.069199851,0.027265344,235,8619,0.018924919,0.03560577,0.000632611,24,37938,,,1580.75,0.937626728,406.93,434,,,,,,,,3.076107042,,,,,,,,,3.128480817,3.059603583,,,,,,,,,3.115695548,0.064623852,,,,,1911.7078,,,,,0.820404912,47371,57741,0.752371828,0.888437996,69047,,,60511.17021,77582.82979,,,,118000,77128.34043,158871.6596,38966,3438.170213,74493.82979,46250,33099.53192,59400.46809,68689,65265.85106,72112.14894,,,,,,0.356154789,2034,5711,,,55.23193911,,,,,0.266325836,,69047,,,6.669842782,14,2099,,,,,,,,,,,,,,,,,,,,,,,,,,19.67445684,35,186210,13.6251333,27.49308142,18.79598303,,,,,,,,,,,,,20.61711256,14.10208973,29.10521136,,,,11.81461791,22,186210,7.40415814,17.88747349,,,,,,,,,,,,,12.12933335,7.508248515,18.54097447,,,,10.77980327,28,259745,7.163100986,15.57981711,,,,,,,,,,,,,11.55620857,7.679016672,16.70193894,,,,20,,3800,,,9,67,0.711832128,20184,28355,,,0.706,,,,,50.19082829,,,,,0.763157895,11165,14630,0.740542176,0.785773613,0.073102679,1048,14336,0.055743591,0.090461766,0.870950103,12742,14630,0.85285232,0.889047885,37938,,,,,0.219990511,8346,37938,,,0.198086351,7515,37938,,,0.022642206,859,37938,,,0.004876377,185,37938,,,0.006484264,246,37938,,,0.000632611,24,37938,,,0.029759081,1129,37938,,,0.924851073,35087,37938,,,0.006766959,242,35762,0.001972304,0.011561614,0.480362697,18224,37938,,,0.578372517,21870,37813,, -19,101,19101,IA,Jefferson County,2024,1,7149.954615,255,48144,5577.375792,8722.533438,0,,,,2,,,,2,,,,2,,,,2,8729.427146,6685.623855,10773.23044,,,,,2,,0.136,,,0.114,0.162,3.21917598,,,2.484193536,4.062347647,4.454150887,,,3.522185017,5.466579645,0.063352827,65,1026,0.048447091,0.078258562,0,,,,,,,,,,,,,0.057471264,0.042005581,0.072936948,,,,,,,0.166,,,0.131,0.209,0.35,,,0.281,0.42,8.2,0.066241783,0.094,,,0.257,,,0.21,0.311,0.616101641,9650,15663,,,0.174540566,,,0.14003696,0.211737779,0.125,1,8,0.007330353,0.353459145,287.6,45,15647,,,17.0212766,44,2585,12.36768563,22.85026935,,,,,,,,,,,,,18.80877743,13.55571238,25.42400304,,,,,,,0.08385783,906,10804,0.069559958,0.098155703,0.00076692,12,15647,,,1303.916667,0.000700726,11,15698,,,1427.090909,0.002038476,32,15698,,,490.5625,2366,,,,,,,,,2373,0.35,,,,,,,,,0.35,0.28,,,,,,0.2,,0.33,0.28,0.933211345,11220,12023,0.912637758,0.953784932,0.748570067,3141,4196,0.647803809,0.849336325,0.024696276,248,10042,,,0.179,459,,0.111085106,0.246914894,,,,0.133333333,0,0.603101076,0.123966942,0,0.42456246,0.677419355,0.211911323,1,0.092870544,0.020910495,0.164830593,4.557560212,104833,23002,3.372846864,5.74227356,0.206710374,536,2593,0.110562048,0.3028587,10.8647025,17,15647,,,72.95829031,65,89092,56.30766817,92.9913301,,,,,,,,,,,,,84.87665057,64.92391234,109.0276085,,,,8.1,,,,,0,,,,,0.106491612,730,6855,0.073557633,0.139425591,0.104011887,0.068987773,0.139036001,0.011670314,0,0.02953186,0.00948213,0,0.02047394,0.679535132,5087,7486,0.639000274,0.72006999,,,,,,,,,,,,,0.757738701,0.715464405,0.800012997,0.129,,7486,0.083660738,0.174339262,78.93316755,,,77.56761354,80.29872155,,,,82.1158335,76.04392472,88.18774228,,,,,,,77.69872722,76.08012028,79.31733416,,,,334.1601253,255,48144,287.2639317,381.0563188,,,,,,,,,,,,,375.7424598,319.4884961,431.9964235,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.097,,,0.083,0.115,0.144,,,0.124,0.166,0.093,,,0.079,0.109,50.4,7,13889,,,0.094,1490,,,,0.066241783,1115.710357,16843,,,19.12448125,10,52289,9.17093212,35.17060193,,,,,,,,,,,,,23.62502363,11.32911712,43.4472596,,,,0.305,,,0.29,0.321,0.096322032,804,8347,0.078449691,0.114194372,0.043143297,112,2596,0.028845425,0.05744117,0.000700726,11,15698,,,1427.090909,0.86356383,162.35,188,,,,,,,,2.972788985,,,,,,,,,3.006741029,3.365765744,,,,,,,,,3.394326014,0.037440636,,,,,741.15405,,,,,0.909724747,42536,46757,0.704311477,1.115138017,59603,,,51827.34043,67378.65957,,,,,,,,,,68080,38591.82979,97568.17021,52255,47250.74468,57259.25532,,,,,,0.404847397,902,2228,,,63.75974237,,,,,0.342180763,,59603,,,8.235294118,7,850,,,,,,,,,,,,,,,,,,,,,,,,,,19.30004341,20,89092,11.4384289,30.50238933,22.44870471,,,,,,,,,,,,,26.76722484,15.59289487,42.85691995,,,,12.34678759,11,89092,6.16347188,22.09181353,,,,,,,,,,,,,15.30562551,7.64051311,27.38599189,,,,10.42192774,13,124737,5.549237589,17.82181383,,,,,,,,,,,,,9.919847631,4.75695252,18.24295298,,,,26.15384615,,1300,,,13,21,0.690215717,8959,12980,,,0.681,,,,,69.44387641,,,,,0.654263112,4466,6826,0.616500592,0.692025631,0.138740158,881,6350,0.099021165,0.17845915,0.838118957,5721,6826,0.795173115,0.881064799,15698,,,,,0.165435087,2597,15698,,,0.26818703,4210,15698,,,0.024206905,380,15698,,,0.004522869,71,15698,,,0.079245764,1244,15698,,,0.000637024,10,15698,,,0.03796662,596,15698,,,0.835074532,13109,15698,,,0.017005447,256,15054,0.00330544,0.030705454,0.477704166,7499,15698,,,0.411926196,6452,15663,, -19,103,19103,IA,Johnson County,2024,1,4797.475098,1131,437677,4389.831419,5205.118777,0,,,,2,,,,2,10353.4,8385.653525,12321.14647,,2408.478184,1450.0612,3761.137028,1,4551.087145,4103.447665,4998.726624,,,,,2,,0.116,,,0.097,0.138,2.818889063,,,2.224715291,3.491119082,4.782680233,,,4.015583348,5.591896849,0.067657314,815,12046,0.063172134,0.072142493,0,,,,0.066242038,0.048843801,0.083640275,0.099280576,0.086444568,0.112116583,0.069719043,0.053617142,0.085820944,0.058190464,0.053057562,0.063323366,,,,0.107142857,0.063841587,0.150444127,0.14,,,0.108,0.175,0.333,,,0.286,0.383,9.1,0.023619257,0.072,,,0.216,,,0.178,0.254,0.853487642,130459,152854,,,0.228080862,,,0.194478774,0.264383517,0.222222222,8,36,0.136980963,0.316281106,665.6,1030,154748,,,4.901135886,233,47540,4.271811074,5.530460697,,,,,,,24.57757297,19.48848682,30.58891704,17.09154114,13.01087301,22.04684281,2.365144046,1.88382403,2.931951894,,,,,,,0.055361542,7102,128284,0.047021116,0.063701967,0.001919249,297,154748,,,521.037037,0.002359033,369,156420,,,423.902439,0.004487917,702,156420,,,222.8205128,2349,,,,,,,3769,917,2233,0.54,,,,,,0.36,0.36,0.18,0.55,0.65,,,,,,0.64,0.49,0.45,0.66,0.960464629,87069,90653,0.953526141,0.967403117,0.861438665,35723,41469,0.821196524,0.901680806,0.022608816,1965,86913,,,0.102,3007,,0.069829787,0.134170213,,,,0.01015873,0,0.043560267,0.287390029,0.212040269,0.362739789,0.270050368,0.146279805,0.393820932,0.07221029,0.050790445,0.093630134,5.277041824,146992,27855,4.914798786,5.639284862,0.176492362,5245,29718,0.145298071,0.207686653,8.400754776,130,154748,,,47.75699976,363,760098,42.8440786,52.66992091,,,,,,,66.01013345,46.47722573,90.98627371,,,,52.96905964,47.10084263,58.83727664,,,,9.6,,,,,1,,,,,0.184676485,11160,60430,0.169265404,0.200087566,0.164471462,0.150323633,0.178619292,0.020436869,0.014211839,0.026661899,0.012824756,0.008628285,0.017021227,0.665415718,54966,82604,0.646679043,0.684152393,,,,0.49293696,0.401863914,0.584010005,0.638288487,0.563575377,0.713001597,0.608320552,0.543070241,0.673570863,0.706082141,0.68502979,0.727134492,0.198,,82604,0.179503111,0.216496889,82.00334704,,,81.4813213,82.52537279,,,,91.73148866,85.84080974,97.62216758,76.81310915,72.67766171,80.94855658,88.02550963,82.13259567,93.91842358,82.0493431,81.50319773,82.59548848,,,,249.9804847,1131,437677,235.0811589,264.8798106,,,,,,,530.464098,420.5361013,640.3920946,165.7066842,101.2179476,255.9205341,246.054193,229.8955403,262.2128458,,,,37.22400361,57,153127,28.19309682,48.22801427,,,,,,,118.9980365,72.6870922,183.7828161,,,,30.94320515,21.29987864,43.4557646,,,,5.013973368,61,12166,3.835292336,6.44065855,,,,,,,11.73020528,7.515763859,17.45361564,,,,3.91198044,2.675791725,5.522549154,,,,,,,0.087,,,0.074,0.101,0.147,,,0.127,0.169,0.083,,,0.071,0.097,160.4,213,132810,,,0.072,10870,,,,0.023619257,3091.335557,130882,,,7.832421001,36,459628,5.485731378,10.84337214,,,,,,,,,,,,,7.590858357,5.002423489,11.04430038,,,,0.302,,,0.288,0.317,0.06475048,6337,97868,0.054027076,0.075473885,0.026989793,862,31938,0.018649367,0.035330218,0.003765503,589,156420,,,265.5687606,0.919001468,1251.68,1362,,,0.030547306,360,11785,0.012858896,0.048235716,3.260315599,,,,,,,,2.507006358,3.549669684,3.16457725,,,,,,3.93527012,1.942033835,2.243249049,3.523443846,0.100605758,,,,,2119.90175,,,,,0.803872723,52599,65432,0.73967303,0.868072416,74909,,,69797.51064,80020.48936,30972,9917.191489,52026.80851,61140,52236,70044,35750,29308.80851,42191.19149,55038,46459.2766,63616.7234,80293,76122.78723,84463.21277,,,,,,0.333659441,6480,19421,,,54.72920517,,,,,0.35704655,,74909,,,10.26528258,89,8670,,,1.332196526,14,1050896,0.728324237,2.235199403,,,,,,,,,,,,,,,,,,,11.09909049,84,760098,8.773370451,13.85216725,11.05120656,,,,,,,,,,,,,12.46353986,9.697377948,15.77340737,,,,5.920289226,45,760098,4.318299586,7.921812779,,,,,,,,,,,,,5.923057787,4.12562677,8.237539557,,,,5.899727471,62,1050896,4.523287222,7.563184357,,,,,,,13.49290948,6.470374558,24.81394093,,,,5.958953754,4.408466792,7.878052881,,,,10.76923077,,13000,,,47,93,0.761347437,83851,110135,,,0.701,,,,,160.6286452,,,,,0.591379816,36319,61414,0.57740829,0.605351342,0.162702585,9748,59913,0.14761421,0.177790961,0.893867848,54896,61414,0.88338023,0.904355465,156420,,,,,0.19027618,29763,156420,,,0.135187316,21146,156420,,,0.082943358,12974,156420,,,0.003669608,574,156420,,,0.06400716,10012,156420,,,0.000581767,91,156420,,,0.061111111,9559,156420,,,0.764793505,119629,156420,,,0.022637789,3283,145023,0.0171959,0.028079678,0.503068661,78690,156420,,,0.166551088,25458,152854,, -19,105,19105,IA,Jones County,2024,1,5031.506227,254,56243,4011.920514,6051.09194,0,,,,2,,,,2,,,,2,,,,2,5250.730774,4143.566372,6357.895176,,,,,2,,0.132,,,0.109,0.155,3.152783573,,,2.480863115,3.925243445,4.540625093,,,3.641995604,5.527168265,0.067251462,92,1368,0.053979162,0.080523762,0,,,,,,,,,,,,,0.06394453,0.05063474,0.077254321,,,,,,,0.176,,,0.139,0.215,0.428,,,0.349,0.507,8.8,0.047395728,0.075,,,0.249,,,0.201,0.298,0.675239756,13941,20646,,,0.192201076,,,0.154544884,0.232023026,0.285714286,4,14,0.142392906,0.436004848,317.2,66,20805,,,12.26993865,50,4075,9.106984966,16.17638446,,,,,,,,,,,,,12.25359616,8.971172458,16.3445801,,,,,,,0.055649241,858,15418,0.047308816,0.063989667,0.000336458,7,20805,,,2972.142857,0.00038373,8,20848,,,2606,0.001007291,21,20848,,,992.7619048,3042,,,,,,,,,2981,0.6,,,,,,,,,0.6,0.35,,,,,,,,,0.35,0.942649219,14119,14978,0.929739911,0.955558527,0.581640942,2864,4924,0.506070592,0.657211293,0.031856883,333,10453,,,0.117,489,,0.076489362,0.157510638,,,,,,,,,,0.14556962,0,0.429581656,0.145833333,0.096357209,0.195309457,3.572203308,118565,33191,3.193544865,3.950861752,0.229492872,982,4279,0.157251693,0.301734052,9.132420091,19,20805,,,66.74211427,69,103383,51.92934869,84.4664172,,,,,,,,,,,,,70.32639722,54.61119922,89.15546597,,,,8.7,,,,,0,,,,,0.104459377,855,8185,0.074323462,0.134595292,0.08821715,0.059199553,0.117234747,0.012828345,0.004307953,0.021348737,0.01038485,0,0.021659746,0.758273381,7378,9730,0.725913173,0.79063359,,,,,,,,,,,,,0.719993683,0.685839199,0.754148167,0.414,,9730,0.361547396,0.466452604,80.50394552,,,79.430859,81.57703204,,,,,,,,,,,,,80.26142912,79.15346606,81.36939218,,,,296.8751498,254,56243,258.1470363,335.6032632,,,,,,,,,,,,,303.3371489,263.0214974,343.6528004,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.098,,,0.082,0.113,0.153,,,0.131,0.177,0.087,,,0.074,0.102,100.8,18,17866,,,0.075,1550,,,,0.047395728,978.1530278,20638,,,,,,,,,,,,,,,,,,,,,,,,,,0.312,,,0.295,0.328,0.064322239,717,11147,0.052407346,0.076237133,0.034245052,154,4497,0.023521648,0.044968457,0.000479662,10,20848,,,2084.8,0.950336323,211.925,223,,,,,,,,2.946806092,,,,,,,,,2.945317041,2.842878247,,,,,,,,,2.894489181,0.030583974,,,,,-517.2828333,,,,,0.912420154,50851,55732,0.846023766,0.978816541,70671,,,61234.40426,80107.59575,,,,180765,46262.53192,315267.4681,65747,30243,101251,44082,33228.7234,54935.2766,69899,62384.2766,77413.7234,,,,,,0.37859936,1065,2813,,,65.74263242,,,,,0.250909142,,70671,,,9.640666082,11,1141,,,,,,,,,,,,,,,,,,,,,,,,,,12.51481344,12,103383,6.247349781,22.3924582,11.60732422,,,,,,,,,,,,,12.54930834,6.017881137,23.07862485,,,,,,,,,,,,,,,,,,,,,,,,,,,13.16810823,19,144288,7.928061353,20.56363216,,,,,,,,,,,,,12.57071025,7.322901963,20.12692485,,,,18.0952381,,2100,,,5,33,0.683608087,10989,16075,,,0.729,,,,,31.62005307,,,,,0.805507318,6494,8062,0.774252069,0.836762568,0.092699884,720,7767,0.064149784,0.121249985,0.856363185,6904,8062,0.82717142,0.885554951,20848,,,,,0.203472755,4242,20848,,,0.214169225,4465,20848,,,0.02647736,552,20848,,,0.005132387,107,20848,,,0.005995779,125,20848,,,0.00038373,8,20848,,,0.024079048,502,20848,,,0.930305065,19395,20848,,,0.003259652,64,19634,0,0.008067932,0.472851113,9858,20848,,,0.737915335,15235,20646,, -19,107,19107,IA,Keokuk County,2024,1,7105.221078,165,27217,5364.296984,8846.145173,0,,,,2,,,,2,,,,2,,,,2,7358.256038,5527.337624,9189.174451,,,,,2,,0.145,,,0.12,0.172,3.314958517,,,2.597970377,4.127747281,4.764003561,,,3.821642336,5.812525356,0.061518325,47,764,0.044480092,0.078556557,0,,,,,,,,,,,,,0.059863946,0.042712907,0.077014984,,,,,,,0.196,,,0.153,0.239,0.393,,,0.317,0.471,8,0.076887621,0.096,,,0.274,,,0.222,0.33,0.37556065,3768,10033,,,0.188709223,,,0.152552887,0.227642112,0.166666667,1,6,0.011498194,0.426636125,363.1,36,9914,,,17.49125437,35,2001,12.18329955,24.32610063,,,,,,,,,,,,,18.03713528,12.49124052,25.20508865,,,,,,,0.060267567,464,7699,0.050735652,0.069799482,0.000100868,1,9914,,,9914,0.000403877,4,9904,,,2476,0.000100969,1,9904,,,9904,2030,,,,,,,,,2042,0.43,,,,,,,,,0.43,0.41,,,,,,,,,0.41,0.934735938,6531,6987,0.922704838,0.946767039,0.597649186,1322,2212,0.519918212,0.67538016,0.03020455,158,5231,,,0.162,355,,0.101234043,0.222765957,,,,,,,0.090909091,0,0.939627227,0.109756098,0,0.361136416,0.135496183,0.090967532,0.180024835,4.467402734,110461,24726,3.762246471,5.172558997,0.140235911,321,2289,0.100521456,0.179950365,13.11276982,13,9914,,,90.86778737,46,50623,66.52664087,121.2048944,,,,,,,,,,,,,94.78477674,69.39436939,126.4296093,,,,8.2,,,,,0,,,,,0.115473441,500,4330,0.088452973,0.142493909,0.101493234,0.073431752,0.129554716,0.012240185,0.002690009,0.021790361,0.008083141,0.00047548,0.015690802,0.816263053,3674,4501,0.791251809,0.841274296,,,,,,,,,,,,,0.773860399,0.738570686,0.809150111,0.395,,4501,0.345213421,0.444786579,77.81724036,,,76.3227673,79.31171342,,,,,,,,,,,,,77.59939853,76.05413939,79.14465767,,,,401.2571783,165,27217,335.1262936,467.388063,,,,,,,,,,,,,408.6191982,340.4465587,476.7918377,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.106,,,0.09,0.124,0.163,,,0.14,0.187,0.09,,,0.077,0.105,71.8,6,8352,,,0.096,970,,,,0.076887621,808.165784,10511,,,,,,,,,,,,,,,,,,,,,,,,,,0.326,,,0.308,0.343,0.070697844,387,5474,0.058782951,0.082612738,0.035729477,84,2351,0.023814583,0.04764437,0.000403877,4,9904,,,2476,,,,,,,,,,,3.119585105,,,,,,,,,3.133795563,3.153387816,,,,,,,,,3.214124317,0.044343983,,,,,-2651.01226,,,,,0.844954834,43963,52030,0.753514486,0.936395182,65653,,,59355.97872,71950.02128,,,,,,,,,,35833,21517.25532,50148.74468,60849,56613.25532,65084.74468,,,,,,0.353417266,393,1112,,,,,,,,0.276103148,,65653,,,1.703577513,1,587,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.92405331,12,70905,8.744905308,29.56291524,,,,,,,,,,,,,17.61183515,9.100292223,30.7643317,,,,,,1100,,,-888,18,0.682496783,5303,7770,,,0.673,,,,,2.501442931,,,,,0.784822521,3206,4085,0.76170081,0.807944233,0.108580106,429,3951,0.080355934,0.136804278,0.816891065,3337,4085,0.791032723,0.842749407,9904,,,,,0.224050889,2219,9904,,,0.225868336,2237,9904,,,0.008279483,82,9904,,,0.003634895,36,9904,,,0.003634895,36,9904,,,0,0,9904,,,0.022314217,221,9904,,,0.952241519,9431,9904,,,0.002008457,19,9460,0,0.009419212,0.490508885,4858,9904,,,1,10033,10033,, -19,109,19109,IA,Kossuth County,2024,1,7972.581936,221,38770,6185.05385,9760.110021,0,,,,2,,,,2,,,,2,,,,2,8112.442269,6214.794929,10010.08961,,,,,2,,0.134,,,0.111,0.159,3.142051484,,,2.425709429,3.950899944,4.341436545,,,3.403003777,5.350498373,0.054545455,63,1155,0.04144867,0.067642239,0,,,,,,,,,,,,,0.052783109,0.039206403,0.066359815,,,,,,,0.182,,,0.146,0.222,0.391,,,0.317,0.47,8.6,0.041417601,0.085,,,0.254,,,0.208,0.305,0.614041004,9105,14828,,,0.182136913,,,0.146055316,0.22084136,0.125,1,8,0.007330353,0.353459145,199.6,29,14529,,,10.44727391,32,3063,7.145927624,14.74843359,,,,,,,,,,,,,8.720930233,5.587664555,12.97605291,,,,,,,0.056707653,618,10898,0.048367227,0.065048078,0.000481795,7,14529,,,2075.571429,0.000552677,8,14475,,,1809.375,0.000621762,9,14475,,,1608.333333,2754,,,,,,,,,2765,0.59,,,,,,,,,0.59,0.43,,,,,,,,,0.43,0.937350321,9785,10439,0.924406998,0.950293644,0.678292047,2081,3068,0.600368582,0.756215512,0.022863299,191,8354,,,0.119,373,,0.071340426,0.166659575,,,,,,,,,,0.071823204,0,0.145770224,0.137096774,0.093159265,0.181034283,3.856142203,109553,28410,3.100318298,4.611966109,0.147904941,473,3198,0.095485442,0.20032444,24.77803015,36,14529,,,81.1589498,60,73929,61.93282873,104.467656,,,,,,,,,,,,,83.66028156,63.52675929,108.1503141,,,,6.9,,,,,0,,,,,0.114068441,750,6575,0.087238228,0.140898654,0.100920245,0.070964325,0.130876166,0.008060837,0.002296067,0.013825606,0.0121673,0.004369965,0.019964636,0.77208966,5339,6915,0.738870088,0.805309232,,,,,,,,,,,,,0.782914881,0.74515335,0.820676411,0.171,,6915,0.140599504,0.201400496,78.31793266,,,76.81214652,79.8237188,,,,,,,,,,,,,78.18574785,76.6195001,79.7519956,,,,383.0252971,221,38770,326.7996298,439.2509643,,,,,,,,,,,,,388.5082668,329.4956597,447.520874,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.1,,,0.085,0.116,0.154,,,0.132,0.178,0.088,,,0.074,0.103,,,,,,0.085,1260,,,,0.041417601,643.7537678,15543,,,,,,,,,,,,,,,,,,,,,,,,,,0.303,,,0.287,0.319,0.066520562,516,7757,0.054605669,0.078435456,0.033504377,111,3313,0.022780972,0.044227781,0.000483592,7,14475,,,2067.857143,0.925,94.35,102,,,,,,,,3.209347304,,,,,,,,,3.247642826,3.047123603,,,,,,,,,3.059996794,0.042826144,,,,,1447.9485,,,,,0.780572962,42478,54419,0.713002656,0.848143267,65510,,,57580.6383,73439.3617,,,,,,,16429,6592.06383,26265.93617,83967,40867.25532,127066.7447,62284,56924.68085,67643.31915,,,,,,0.378665319,749,1978,,,,,,,,0.267073729,,65510,,,6.741573034,6,890,,,,,,,,,,,,,,,,,,,,,,,,,,26.36701285,16,73929,14.41509128,44.23936728,21.64238661,,,,,,,,,,,,,27.08240807,14.42024169,46.3117426,,,,16.23178996,12,73929,8.387202733,28.35367048,,,,,,,,,,,,,17.30902377,8.943825163,30.23538116,,,,15.35390757,16,104208,8.776084805,24.93378397,,,,,,,,,,,,,15.27432691,8.548924823,25.19267939,,,,,,1500,,,-888,10,0.791811847,9090,11480,,,0.701,,,,,33.5844773,,,,,0.738047033,4739,6421,0.703757086,0.77233698,0.090524259,556,6142,0.059356643,0.121691875,0.827908426,5316,6421,0.801144699,0.854672152,14475,,,,,0.219136442,3172,14475,,,0.256511226,3713,14475,,,0.00925734,134,14475,,,0.00566494,82,14475,,,0.006217617,90,14475,,,0.001312608,19,14475,,,0.042487047,615,14475,,,0.929050086,13448,14475,,,0.018892321,263,13921,0.008172956,0.029611686,0.489326425,7083,14475,,,0.632924198,9385,14828,, -19,111,19111,IA,Lee County,2024,1,9958.664485,680,91680,8686.312423,11231.01655,0,,,,2,,,,2,15733.71309,8601.767355,26398.49709,1,,,,2,10041.34861,8687.251317,11395.4459,,,,,2,,0.145,,,0.121,0.171,3.251954129,,,2.56489135,4.037993774,4.941415568,,,4.007610444,5.925822686,0.075769534,192,2534,0.065465905,0.086073163,0,,,,,,,,,,0.101851852,0.044808814,0.15889489,0.074139453,0.063351884,0.084927022,,,,,,,0.19,,,0.152,0.231,0.411,,,0.34,0.484,7.5,0.127909063,0.097,,,0.259,,,0.213,0.308,0.744061988,24967,33555,,,0.185548235,,,0.150067381,0.223901236,0.44,11,25,0.339407154,0.5333173,346.2,115,33215,,,27.22040753,175,6429,23.18737551,31.25343955,,,,,,,,,,46.75324675,27.70893709,73.89028641,25.96239928,21.73652187,30.1882767,,,,,,,0.050294804,1271,25271,0.041954379,0.05863523,0.000632245,21,33215,,,1581.666667,0.000548112,18,32840,,,1824.444444,0.000822168,27,32840,,,1216.296296,2345,,,,,,,2845,,2277,0.41,,,,,,,0.45,0.57,0.41,0.49,,,,,,,0.34,0.51,0.49,0.940855933,22446,23857,0.930894087,0.950817779,0.66232762,5139,7759,0.602832213,0.721823027,0.044393929,664,14957,,,0.187,1273,,0.119085106,0.254914894,,,,,,,0.626609442,0.380146444,0.873072441,0.10230179,0,0.283293881,0.176639137,0.127507509,0.225770765,4.280175009,106632,24913,3.767952724,4.792397295,0.262318227,1858,7083,0.20514148,0.319494974,15.95664609,53,33215,,,84.76485163,143,168702,70.87160137,98.65810189,,,,,,,,,,,,,87.7600875,72.90070645,102.6194686,,,,8.3,,,,,0,,,,,0.096582985,1385,14340,0.078629992,0.114535977,0.089623637,0.070189078,0.109058196,0.006903766,0.002107941,0.011699591,0.004881451,0.000961496,0.008801405,0.827133921,12297,14867,0.80598098,0.848286862,,,,,,,,,,,,,0.838748902,0.818752521,0.858745284,0.209,,14867,0.178021277,0.239978723,74.52017242,,,73.56633124,75.47401361,,,,,,,,,,,,,74.37650831,73.37495043,75.37806618,,,,498.4880797,680,91680,458.0290441,538.9471154,,,,,,,905.3482448,596.6301981,1317.234164,,,,500.3597692,457.9722602,542.7472782,,,,57.71080475,18,31190,34.20308041,91.20795212,,,,,,,,,,,,,59.61696103,34.07624433,96.81420969,,,,7.996953542,21,2626,4.950240283,12.22419297,,,,,,,,,,,,,,,,,,,,,,0.103,,,0.089,0.12,0.165,,,0.141,0.188,0.094,,,0.08,0.11,49.7,14,28189,,,0.097,3280,,,,0.127909063,4587.074831,35862,,,15.94387755,16,100352,9.113303625,25.89185826,,,,,,,,,,,,,16.53657891,9.255397686,27.27457211,,,,0.302,,,0.286,0.317,0.060165181,1100,18283,0.049441777,0.070888585,0.025269772,185,7321,0.016929346,0.033610197,0.00091352,30,32840,,,1094.666667,0.916538462,297.875,325,,,,,,,,2.94142995,,,,,,,,,2.964075938,2.920464082,,,,,,,,,2.966253267,0.040556006,,,,,-1480.272667,,,,,0.782794203,41647,53203,0.704669224,0.860919182,59017,,,52790.2766,65243.7234,,,,,,,,,,66167,30354.40426,101979.5957,57844,53665.44681,62022.55319,,,,,,0.538783191,2577,4783,,,50.85689327,,,,,0.28898453,,59017,,,9.307135471,18,1934,,,,,,,,,,,,,,,,,,,,,,,,,,30.8303906,53,168702,22.80849269,40.75941138,31.41634361,,,,,,,,,,,,,32.77124161,23.99266764,43.71224386,,,,17.19007481,29,168702,11.51246289,24.68781487,,,,,,,,,,,,,17.02807668,11.12330503,24.95007766,,,,20.553174,49,238406,15.20535127,27.17238601,,,,,,,,,,,,,22.20721179,16.37384491,29.44354102,,,,42.8125,,3200,,,35,102,0.633144154,16734,26430,,,0.666,,,,,68.40670519,,,,,0.756914222,10783,14246,0.732528758,0.781299685,0.106856441,1479,13841,0.085349543,0.128363339,0.834620244,11890,14246,0.815169872,0.854070616,32840,,,,,0.211205847,6936,32840,,,0.221010962,7258,32840,,,0.028105968,923,32840,,,0.00362363,119,32840,,,0.006851401,225,32840,,,0.000822168,27,32840,,,0.038337393,1259,32840,,,0.903440926,29669,32840,,,0.001176134,37,31459,0,0.00430002,0.495767357,16281,32840,,,0.409476978,13740,33555,, -19,113,19113,IA,Linn County,2024,1,6548.239236,2578,636266,6176.090992,6920.387481,0,,,,2,,,,2,14349.97196,12203.00485,16496.93907,,6484.409633,4565.622799,8937.904514,,5996.028233,5617.833556,6374.222909,,,,,2,,0.115,,,0.096,0.138,2.960349473,,,2.377338127,3.623408871,4.832267518,,,4.121959145,5.591036095,0.06804058,1281,18827,0.064443517,0.071637643,0,,,,0.090909091,0.067349629,0.114468553,0.10339446,0.091606704,0.115182215,0.07002457,0.052493645,0.087555495,0.059473536,0.055584545,0.063362528,0.10989011,0.045630736,0.174149484,0.092558984,0.068359909,0.116758059,0.155,,,0.121,0.193,0.385,,,0.342,0.432,8.8,0.062545663,0.069,,,0.214,,,0.178,0.253,0.912670051,210187,230299,,,0.222395343,,,0.192637115,0.255623894,0.314285714,22,70,0.252660409,0.376616546,546.4,1251,228939,,,12.9755926,664,51173,11.98863332,13.96255187,,,,,,,44.7761194,37.8809488,51.67129001,22.01622248,16.67487191,28.52456987,9.211848005,8.280721021,10.14297499,,,,22.35039654,17.13592087,28.65219967,0.046635956,8767,187988,0.040678509,0.052593402,0.000624621,143,228939,,,1600.972028,0.000742251,170,229033,,,1347.252941,0.002816188,645,229033,,,355.0899225,3177,,,,,,,4881,4771,3130,0.59,,,,,,0.49,0.47,0.35,0.6,0.63,,,,,,0.52,0.45,0.46,0.64,0.949951562,148068,155869,0.944489214,0.95541391,0.742237402,45203,60901,0.710397344,0.77407746,0.030530456,3710,121518,,,0.096,4797,,0.067404255,0.124595745,0.034482759,0,0.274875583,0.20606916,0.143479831,0.26865849,0.352328006,0.26126044,0.443395571,0.165560717,0.101449663,0.229671771,0.07098798,0.054250908,0.087725052,4.098042648,140485,34281,3.919799805,4.27628549,0.221511449,11531,52056,0.195564233,0.247458665,10.4831418,240,228939,,,74.54634798,845,1133523,69.51998221,79.57271375,,,,,,,109.1017785,85.5183783,137.1791065,38.30145801,21.4370353,63.17243028,76.36775478,70.85419167,81.88131789,,,,8.7,,,,,0,,,,,0.098735009,9015,91305,0.089121027,0.108348992,0.082977903,0.07378454,0.092171266,0.014949893,0.010861245,0.019038542,0.005202344,0.003519599,0.006885089,0.780677075,92956,119071,0.769815921,0.791538229,,,,0.636395028,0.572739375,0.700050681,0.716226415,0.654763103,0.777689727,0.688476563,0.606899406,0.770053719,0.806847551,0.793591374,0.820103728,0.161,,119071,0.15007982,0.17192018,79.18590539,,,78.82081365,79.55099713,,,,87.12246089,83.05908667,91.1858351,70.35594292,68.55605196,72.15583389,82.02514126,77.95213247,86.09815005,79.59937695,79.22485374,79.97390015,,,,325.7822459,2578,636266,312.8195322,338.7449596,,,,,,,696.1660552,591.4831312,800.8489791,273.3070055,195.2545317,372.1665699,313.0624923,299.6578029,326.4671817,,,,42.73098471,99,231682,34.72963582,52.02344064,,,,,,,155.4586029,105.6265783,220.6610777,,,,28.83897673,21.47251241,37.91792844,,,,4.553781733,87,19105,3.647392491,5.617072943,,,,,,,12.36603463,8.343311633,17.65328335,,,,3.137147923,2.296786565,4.1845157,,,,,,,0.09,,,0.076,0.105,0.148,,,0.127,0.169,0.08,,,0.069,0.094,150.3,289,192315,,,0.069,15720,,,,0.062545663,13211.27029,211226,,,17.84933116,122,683499,14.68196624,21.01669609,,,,,,,45.37313433,27.31759084,70.85576972,,,,16.92909645,13.74385881,20.63114613,,,,0.313,,,0.296,0.328,0.056393905,7676,136114,0.04805348,0.064734331,0.022433132,1222,54473,0.016475685,0.028390579,0.001213799,278,229033,,,823.8597122,0.873609809,2422.52,2773,,,0.04040404,504,12474,0.020480153,0.060327928,3.022980379,,,,,,3.398664581,2.118255754,2.84010409,3.174770398,3.011633515,,,,,,3.51611886,2.088879218,2.727967724,3.179944807,0.09723529,,,,,2095.4318,,,,,0.75973886,49342,64946,0.723048401,0.796429319,74134,,,68121.74468,80146.25532,,,,79364,60929.2766,97798.7234,46236,35392.25532,57079.74468,58670,36682.25532,80657.74468,77504,75627.40426,79380.59575,,,,,,0.389483213,14199,36456,,,41.68466287,,,,,0.291728492,,74134,,,8.590089451,121,14086,,,4.253698178,67,1575100,3.296557661,5.402046323,,,,,,,29.52767084,19.28845493,43.2648792,,,,2.444596553,1.682747784,3.433122451,,,,18.4015121,210,1133523,15.86945693,20.93356727,18.52631133,,,,,,,,,,,,,19.88849038,17.02975511,22.74722564,,,,11.55688945,131,1133523,9.577818416,13.53596048,,,,,,,29.89089822,18.25813718,46.16406801,,,,10.46559462,8.424518068,12.50667117,,,,8.253444226,130,1575100,6.834649335,9.672239117,,,,,,,14.76383542,7.861120565,25.2466082,,,,8.222733859,6.693017836,9.752449883,,,,29.32773109,,23800,,,186,512,0.758814074,127458,167970,,,0.734,,,,,205.6447363,,,,,0.741258445,69894,94291,0.731461511,0.751055378,0.095189322,8829,92752,0.085223347,0.105155298,0.90533561,85365,94291,0.896356724,0.914314496,229033,,,,,0.222435195,50945,229033,,,0.175158165,40117,229033,,,0.065938096,15102,229033,,,0.002794357,640,229033,,,0.026175267,5995,229033,,,0.0021045,482,229033,,,0.038182271,8745,229033,,,0.838088834,191950,229033,,,0.010129118,2184,215616,0.007815939,0.012442298,0.504315972,115505,229033,,,0.136917659,31532,230299,, -19,115,19115,IA,Louisa County,2024,1,8205.591919,145,30053,6068.917644,10342.2662,0,,,,2,,,,2,,,,2,,,,2,8040.438511,5574.959478,10505.91755,,,,,2,,0.15,,,0.126,0.175,3.483046983,,,2.717221263,4.331455423,4.540081936,,,3.599596667,5.56713325,0.065192084,56,859,0.048683185,0.081700983,0,,,,,,,,,,0.062857143,0.026897343,0.098816943,0.067434211,0.047500683,0.087367738,,,,,,,0.181,,,0.146,0.22,0.405,,,0.331,0.481,9.3,0.003247159,0.073,,,0.277,,,0.23,0.329,0.466549783,5056,10837,,,0.199290181,,,0.160298508,0.240441314,0.222222222,2,9,0.058854756,0.422872156,288.4,31,10749,,,16.98026618,37,2179,11.95567442,23.40506018,,,,,,,,,,29.64426878,16.5916722,48.89371319,13.35877863,8.269294519,20.42031217,,,,,,,0.088001867,754,8568,0.074895484,0.10110825,9.30319E-05,1,10749,,,10749,0.000374637,4,10677,,,2669.25,0.000655615,7,10677,,,1525.285714,1754,,,,,,,,,1831,0.5,,,,,,,,,0.49,0.49,,,,,,,,0.32,0.49,0.860722764,6526,7582,0.842965463,0.878480066,0.589083821,1511,2565,0.51072783,0.667439811,0.030854831,183,5931,,,0.149,337,,0.094191489,0.203808511,,,,0.3875,0,0.991228128,,,,0.109848485,0.019913148,0.199783822,0.134365325,0.080374809,0.188355841,3.759636917,125914,33491,3.277454551,4.241819284,0.146655588,353,2407,0.092340797,0.200970379,14.88510559,16,10749,,,81.59860738,45,55148,59.51858415,109.1853567,,,,,,,,,,,,,86.02250535,60.5677824,118.5706922,,,,8.5,,,,,0,,,,,0.104718067,455,4345,0.080299673,0.12913646,0.076334107,0.055139624,0.097528589,0.026467204,0.01192557,0.041008838,0.00575374,0,0.013544471,0.817449916,4366,5341,0.775870798,0.859029034,,,,,,,,,,0.855742297,0.695493144,1,0.782118708,0.743670106,0.820567309,0.356,,5341,0.30316984,0.40883016,77.71178688,,,75.91384542,79.50972833,,,,,,,,,,83.52671336,65.73294654,101.3204802,77.79638627,75.8218034,79.77096913,,,,357.5804597,145,30053,295.4520955,419.708824,,,,,,,,,,,,,356.8625718,287.1018325,426.6233112,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.104,,,0.09,0.12,0.153,,,0.132,0.175,0.095,,,0.081,0.111,76.8,7,9116,,,0.073,800,,,,0.003247159,36.97540165,11387,,,,,,,,,,,,,,,,,,,,,,,,,,0.324,,,0.311,0.337,0.10067007,631,6268,0.083989219,0.117350921,0.055234955,134,2426,0.038554104,0.071915806,0.000374637,4,10677,,,2669.25,0.928448276,161.55,174,,,,,,,,2.888808607,,,,,,,,2.252109301,3.020588944,2.930036187,,,,,,,,2.734695046,2.980171128,0.237245542,,,,,-2033.33675,,,,,0.766961497,43703,56982,0.666632563,0.867290431,70953,,,62333.76596,79572.23404,,,,93750,21456.38298,166043.617,,,,81250,62119.44681,100380.5532,73092,63112.08511,83071.91489,,,,,,0.402591393,870,2161,,,,,,,,0.248291122,,70953,,,6.359300477,4,629,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,23.23330107,18,77475,13.76952666,36.71863216,,,,,,,,,,,,,19.78696039,10.22421117,34.56383776,,,,27.27272727,,1100,,,8,22,0.668589342,5332,7975,,,0.644,,,,,10.30215651,,,,,0.778696498,3202,4112,0.750785917,0.806607079,0.076513808,302,3947,0.051318016,0.1017096,0.852140078,3504,4112,0.820841777,0.883438378,10677,,,,,0.214105086,2286,10677,,,0.203240611,2170,10677,,,0.013674253,146,10677,,,0.008054697,86,10677,,,0.035590522,380,10677,,,0.002154163,23,10677,,,0.165308607,1765,10677,,,0.771846024,8241,10677,,,0.058096173,592,10190,0.043518489,0.072673857,0.488245762,5213,10677,,,1,10837,10837,, -19,117,19117,IA,Lucas County,2024,1,8150.750534,146,23237,5891.333016,10410.16805,0,,,,2,,,,2,,,,2,,,,2,8204.896208,5897.734074,10512.05834,,,,,2,,0.149,,,0.126,0.175,3.46380349,,,2.657448961,4.358641222,4.653888328,,,3.636966378,5.768852891,0.054263566,42,774,0.038303863,0.070223269,0,,,,,,,,,,,,,0.052,0.03610973,0.06789027,,,,,,,0.206,,,0.166,0.249,0.379,,,0.299,0.463,7.8,0.096064058,0.099,,,0.273,,,0.224,0.328,0.634584202,5479,8634,,,0.188229175,,,0.151234263,0.230508671,0.375,3,8,0.179126284,0.556186502,252.6,22,8710,,,21.62162162,36,1665,15.14351797,29.93343813,,,,,,,,,,,,,20.7416719,14.27761255,29.12901903,,,,,,,0.059842986,404,6751,0.050311071,0.069374901,0.001033295,9,8710,,,967.7777778,0.000460352,4,8689,,,2172.25,0.001035792,9,8689,,,965.4444444,1834,,,,,,,,,1845,0.48,,,,,,,,,0.48,0.4,,,,,,,,,0.4,0.923672931,5603,6066,0.901943117,0.945402745,0.567914439,1062,1870,0.478866625,0.656962252,0.021427041,100,4667,,,0.232,460,,0.15812766,0.30587234,,,,,,,,,,0.6,0.39312873,0.80687127,0.220376523,0.140158313,0.300594732,4.696959474,111379,23713,3.884128595,5.509790353,0.207653061,407,1960,0.119368299,0.295937824,12.62916188,11,8710,,,102.3089265,44,43007,74.33782258,137.3449585,,,,,,,,,,,,,106.8791294,77.65853906,143.4802426,,,,7.2,,,,,0,,,,,0.119623656,445,3720,0.085066613,0.154180698,0.095366379,0.061832879,0.128899879,0.004032258,0,0.013516386,0.034946237,0.017041457,0.052851016,0.828777336,3335,4024,0.792394058,0.865160614,,,,,,,,,,,,,0.849097868,0.814077395,0.88411834,0.276,,4024,0.222277173,0.329722827,76.77834074,,,74.91386879,78.64281268,,,,,,,,,,,,,76.60389155,74.72478028,78.48300282,,,,414.5204275,146,23237,341.7127174,487.3281377,,,,,,,,,,,,,423.5335224,348.3933226,498.6737222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.109,,,0.094,0.126,0.165,,,0.142,0.19,0.094,,,0.08,0.11,82.5,6,7273,,,0.099,850,,,,0.096064058,854.777991,8898,,,,,,,,,,,,,,,,,,,,,,,,,,0.336,,,0.318,0.353,0.072536688,346,4770,0.059430305,0.085643071,0.029525653,61,2066,0.018802249,0.040249058,0.000920704,8,8689,,,1086.125,0.975,69.225,71,,,,,,,,2.970127568,,,,,,,,,2.936629215,2.950362309,,,,,,,,,2.982345116,0.018337054,,,,,-1852.481,,,,,0.713842081,42066,58929,0.646492301,0.781191862,60245,,,52606.3617,67883.6383,,,,86563,2042.319149,171083.6809,,,,,,,65423,56526.14894,74319.85106,,,,,,0.564637198,677,1199,,,,,,,,0.298879575,,60245,,,3.883495146,2,515,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,23.20339433,14,60336,12.6855116,38.93135296,,,,,,,,,,,,,24.15875755,13.20781756,40.53429012,,,,,,900,,,-888,14,0.720062208,4630,6430,,,0.637,,,,,2.886629421,,,,,0.797569732,2888,3621,0.763276315,0.83186315,0.11036036,392,3552,0.074323662,0.146397059,0.777133389,2814,3621,0.730606025,0.823660752,8689,,,,,0.231787317,2014,8689,,,0.222925538,1937,8689,,,0.004488434,39,8689,,,0.005063874,44,8689,,,0.004948786,43,8689,,,0.000345264,3,8689,,,0.030268155,263,8689,,,0.948210381,8239,8689,,,0.010306749,84,8150,0,0.021168538,0.48854874,4245,8689,,,1,8634,8634,, -19,119,19119,IA,Lyon County,2024,1,4133.184608,100,32478,2857.012347,5409.356868,0,,,,2,,,,2,,,,2,,,,2,4045.283405,2833.266764,5600.377374,,,,,2,,0.121,,,0.1,0.145,3.042369079,,,2.367987587,3.797511116,4.251737284,,,3.395798534,5.22424322,0.057236304,70,1223,0.044217231,0.070255377,0,,,,,,,,,,,,,0.057624114,0.044024839,0.071223388,,,,,,,0.169,,,0.132,0.208,0.371,,,0.299,0.445,9.8,0.024777688,0.04,,,0.244,,,0.197,0.293,0.423998659,5060,11934,,,0.209416877,,,0.170069244,0.2502749,0.333333333,3,9,0.150331965,0.513162068,174.8,21,12011,,,7.018840044,19,2707,4.225800209,10.96078817,,,,,,,,,,,,,6.316620608,3.610494455,10.25779613,,,,,,,0.062750334,611,9737,0.053218419,0.072282249,0.000333028,4,12011,,,3002.75,0.000410543,5,12179,,,2435.8,0.000164217,2,12179,,,6089.5,1313,,,,,,,,,1319,0.55,,,,,,,,,0.55,0.52,,,,,,,,,0.52,0.947177628,7316,7724,0.935984058,0.958371198,0.677997076,1855,2736,0.600499917,0.755494235,0.018171574,129,7099,,,0.076,258,,0.046212766,0.105787234,,,,,,,,,,,,,0.027940221,0.012174696,0.043705746,3.253605485,123855,38067,2.904097959,3.603113011,0.097308489,329,3381,0.057114378,0.137502599,26.64224461,32,12011,,,50.73995772,30,59125,34.2340364,72.43444464,,,,,,,,,,,,,53.36558987,36.00553939,76.1826978,,,,6,,,,,0,,,,,0.07508161,345,4595,0.050469208,0.099694013,0.049058257,0.028837507,0.069279006,0.013928183,0.001223005,0.02663336,0.01523395,0.002159551,0.028308349,0.804663212,4659,5790,0.76556334,0.843763085,,,,,,,,,,,,,0.782863341,0.72587638,0.839850301,0.237,,5790,0.202180775,0.271819225,82.67141961,,,81.17054875,84.17229047,,,,,,,,,,,,,82.67486345,81.15310208,84.19662483,,,,232.7645467,100,32478,185.2539171,280.2751762,,,,,,,,,,,,,228.6029686,183.5869553,281.315624,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.093,,,0.078,0.108,0.148,,,0.127,0.17,0.079,,,0.066,0.092,,,,,,0.04,480,,,,0.024777688,286.9504001,11581,,,,,,,,,,,,,,,,,,,,,,,,,,0.302,,,0.284,0.318,0.073882353,471,6375,0.06077597,0.086988736,0.042341574,149,3519,0.028043702,0.056639447,0.000492651,6,12179,,,2029.833333,0.96069079,146.025,152,,,,,,,,3.342911987,,,,,,,,,3.344992648,3.285220048,,,,,,,,,3.325697051,0.071557386,,,,,2130.495,,,,,0.815453485,46816,57411,0.701561093,0.929345876,74061,,,65757.51064,82364.48936,,,,,,,,,,56250,23892.7234,88607.2766,74147,69272.61702,79021.38298,,,,,,0.282320694,618,2189,,,,,,,,0.248227812,,74061,,,9.237875289,8,866,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.5236251,12,82624,7.504569022,25.36985022,,,,,,,,,,,,,15.24254703,7.876046475,26.62566216,,,,14,,1500,,,10,11,0.826369657,6863,8305,,,0.752,,,,,0.722932916,,,,,0.83862194,3700,4412,0.80976394,0.86747994,0.068575553,285,4156,0.043267522,0.093883585,0.876019946,3865,4412,0.853421571,0.898618321,12179,,,,,0.279333279,3402,12179,,,0.192298218,2342,12179,,,0.003202233,39,12179,,,0.007800312,95,12179,,,0.004433862,54,12179,,,0.003038016,37,12179,,,0.033746613,411,12179,,,0.940963954,11460,12179,,,0.005727069,64,11175,0,0.012376971,0.488135315,5945,12179,,,1,11934,11934,, -19,121,19121,IA,Madison County,2024,1,6251.01108,191,46103,4791.477678,7710.544483,0,,,,2,,,,2,,,,2,,,,2,6529.221545,4969.437466,8089.005624,,,,,2,,0.112,,,0.093,0.135,2.849366533,,,2.166839189,3.540291221,4.419487018,,,3.479191119,5.353247167,0.056818182,70,1232,0.04389135,0.069745014,0,,,,,,,,,,,,,0.057758621,0.04433355,0.071183691,,,,,,,0.151,,,0.116,0.189,0.382,,,0.304,0.462,9.2,0.040050026,0.059,,,0.218,,,0.176,0.267,0.454616872,7523,16548,,,0.214782101,,,0.172673692,0.260304567,0.272727273,3,11,0.11266692,0.445445377,226.6,38,16773,,,6.458557589,24,3716,4.138119713,9.609821742,,,,,,,,,,,,,6.12244898,3.789892415,9.358813625,,,,,,,0.049834366,692,13886,0.042685429,0.056983302,0.000536577,9,16773,,,1863.666667,0.000352195,6,17036,,,2839.333333,0.000704391,12,17036,,,1419.666667,2605,,,,,,,,,2633,0.5,,,,,,,,,0.5,0.44,,,,,,,,,0.45,0.96996997,10982,11322,0.958244125,0.981695815,0.720711297,2756,3824,0.628940145,0.812482449,0.031165005,275,8824,,,0.071,298,,0.042404255,0.099595745,,,,,,,,,,,,,0.083953241,0.043415977,0.124490505,3.491104604,141875,40639,2.934050716,4.048158492,0.141291108,580,4105,0.078139908,0.204442309,10.73153282,18,16773,,,70.82325934,58,81894,53.77907012,91.55548605,,,,,,,,,,,,,74.71242158,56.73227407,96.58313012,,,,7.1,,,,,0,,,,,0.083081571,550,6620,0.052124524,0.114038618,0.07168784,0.039703034,0.103672647,0.004229607,0,0.009475527,0.007401813,0,0.015829495,0.764467918,6803,8899,0.721443518,0.807492317,,,,,,,,,,,,,0.661206121,0.60113915,0.721273092,0.485,,8899,0.425401707,0.544598293,78.90469624,,,77.58267061,80.22672187,,,,,,,,,,,,,78.64269274,77.27215651,80.01322897,,,,307.4924582,191,46103,262.1709316,352.8139848,,,,,,,,,,,,,313.5164691,266.6230982,360.40984,,,,78.53696847,14,17826,42.93689149,131.7716881,,,,,,,,,,,,,85.61120284,46.80444124,143.6410513,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.088,,,0.074,0.103,0.147,,,0.124,0.169,0.074,,,0.062,0.088,100.4,14,13943,,,0.059,970,,,,0.040050026,627.944355,15679,,,,,,,,,,,,,,,,,,,,,,,,,,0.288,,,0.271,0.305,0.056295837,545,9681,0.046763922,0.065827752,0.0364171,161,4421,0.024502207,0.048331994,0.000469594,8,17036,,,2129.5,0.962313433,193.425,201,,,,,,,,3.331594158,,,,,,,,,3.374959286,3.422802878,,,,,,,,,3.465105646,0.034545923,,,,,2923.343,,,,,0.785503589,49797,63395,0.679396797,0.89161038,80887,,,71213.29787,90560.70213,,,,111190,26049.74468,196330.2553,,,,26382,25767.19149,26996.80851,90651,86599.93617,94702.06383,,,,,,0.267618752,862,3221,,,58.58149534,,,,,0.268745287,,80887,,,7.01754386,6,855,,,,,,,,,,,,,,,,,,,,,,,,,,13.50739757,12,81894,6.742844199,24.16846538,14.65308814,,,,,,,,,,,,,14.1227254,7.050013635,25.26945684,,,,,,,,,,,,,,,,,,,,,,,,,,,16.74082559,19,113495,10.07907059,26.14287288,,,,,,,,,,,,,17.60025196,10.59650141,27.48497362,,,,31.42857143,,2100,,,10,56,0.808227067,9824,12155,,,0.735,,,,,14.4998219,,,,,0.824247104,5337,6475,0.790924856,0.857569352,0.087287732,550,6301,0.05067198,0.123903484,0.854054054,5530,6475,0.819375174,0.888732935,17036,,,,,0.247299836,4213,17036,,,0.177095562,3017,17036,,,0.005165532,88,17036,,,0.003932848,67,17036,,,0.008393989,143,17036,,,0.000293496,5,17036,,,0.025240667,430,17036,,,0.945761916,16112,17036,,,0.003114275,49,15734,0,0.008512179,0.500410895,8525,17036,,,0.693195552,11471,16548,, -19,123,19123,IA,Mahaska County,2024,1,7152.599154,331,61067,5922.963439,8382.234869,0,,,,2,,,,2,,,,2,,,,2,7016.603841,5778.965635,8254.242048,,,,,2,,0.141,,,0.116,0.168,3.267918293,,,2.52171743,4.043178142,4.757136376,,,3.818781362,5.761265241,0.070462232,125,1774,0.058552802,0.082371662,0,,,,,,,,,,,,,0.070036541,0.057692289,0.082380793,,,,,,,0.192,,,0.152,0.236,0.396,,,0.316,0.471,8,0.083779244,0.092,,,0.262,,,0.214,0.314,0.706128887,15669,22190,,,0.191733534,,,0.152957716,0.231822781,0.2,2,10,0.05050879,0.392851974,359.4,79,21984,,,18.04826863,86,4765,14.43628526,22.28946493,,,,,,,,,,,,,18.04064855,14.28295135,22.48403087,,,,,,,0.055629445,962,17293,0.04728902,0.063969871,0.000727802,16,21984,,,1374,0.00050123,11,21946,,,1995.090909,0.001275859,28,21946,,,783.7857143,2352,,,,,,,,,2297,0.52,,,,,,,,,0.52,0.53,,,,,,,,,0.53,0.931978799,13715,14716,0.916671393,0.947286204,0.627346374,3175,5061,0.557778776,0.696913973,0.024334663,299,12287,,,0.125,633,,0.076148936,0.173851064,,,,,,,,,,0.082417582,0,0.315810641,0.120272647,0.077377631,0.163167664,4.219723059,117629,27876,3.467968371,4.971477748,0.200152497,1050,5246,0.13483023,0.265474765,15.4657933,34,21984,,,69.56741715,77,110684,54.9015177,86.94733521,,,,,,,,,,,,,71.2382774,55.83943763,89.57143851,,,,7.9,,,,,0,,,,,0.120178871,1075,8945,0.094001573,0.146356169,0.098876405,0.075381392,0.122371417,0.01117943,0.00334609,0.01901277,0.012297373,0.003198199,0.021396547,0.809454546,8904,11000,0.777158509,0.841750582,,,,,,,,,,,,,0.804647263,0.771107891,0.838186636,0.197,,11000,0.168553581,0.225446419,77.04894167,,,75.99008517,78.10779817,,,,,,,,,,,,,77.00603607,75.94614566,78.06592648,,,,402.568317,331,61067,357.1532026,447.9834314,,,,,,,,,,,,,404.9696639,358.4142849,451.5250429,,,,41.91641866,10,23857,20.10055202,77.08578632,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.104,,,0.087,0.121,0.159,,,0.134,0.184,0.09,,,0.075,0.105,49.2,9,18274,,,0.092,2030,,,,0.083779244,1875.063269,22381,,,,,,,,,,,,,,,,,,,,,,,,,,0.325,,,0.308,0.341,0.065950291,804,12191,0.054035398,0.077865185,0.031920851,171,5357,0.021197447,0.042644256,0.001230293,27,21946,,,812.8148148,0.878414634,180.075,205,,,,,,,,3.019945059,,,,,,,,,3.04893879,3.031738726,,,,,,,,,3.067403887,0.026777766,,,,,2764.96085,,,,,0.742640609,42332,57002,0.685933893,0.799347325,68759,,,61894.82979,75623.17021,,,,,,,55227,6425.978723,104028.0213,94375,28184.19149,160565.8085,65877,61267.12766,70486.87234,,,,,,0.371358371,1058,2849,,,72.26778832,,,,,0.258977007,,68759,,,6.99790063,10,1429,,,,,,,,,,,,,,,,,,,,,,,,,,15.27531767,18,110684,8.731163889,24.8061589,16.2625131,,,,,,,,,,,,,16.32837818,9.333078954,26.51626318,,,,12.6486213,14,110684,6.915118966,21.22223729,,,,,,,,,,,,,12.68626858,6.754903722,21.69390563,,,,17.39814033,27,155189,11.46548411,25.31338075,,,,,,,,,,,,,16.63570577,10.65881059,24.75261152,,,,19.13043478,,2300,,,5,39,0.674792899,11404,16900,,,0.695,,,,,65.02822909,,,,,0.676884932,6006,8873,0.647968344,0.70580152,0.093723949,787,8397,0.067483021,0.119964877,0.853037304,7569,8873,0.827126529,0.87894808,21946,,,,,0.233846715,5132,21946,,,0.191561105,4204,21946,,,0.017406361,382,21946,,,0.004875604,107,21946,,,0.018818919,413,21946,,,0.00063793,14,21946,,,0.025836143,567,21946,,,0.922035906,20235,21946,,,0.005177837,107,20665,0,0.010376233,0.488608402,10723,21946,,,0.434835512,9649,22190,, -19,125,19125,IA,Marion County,2024,1,6078.986596,422,91661,5157.932057,7000.041135,0,,,,2,,,,2,,,,2,,,,2,6178.809744,5215.060601,7142.558888,,,,,2,,0.115,,,0.094,0.139,2.962622926,,,2.203172214,3.774230869,4.372794166,,,3.397646985,5.372416744,0.062176166,156,2509,0.052727329,0.071625003,0,,,,,,,,,,,,,0.059638807,0.050126449,0.069151166,,,,,,,0.157,,,0.118,0.198,0.368,,,0.294,0.446,9.1,0.032338665,0.068,,,0.226,,,0.181,0.276,0.705392949,23570,33414,,,0.214812218,,,0.171687784,0.262559271,0.416666667,10,24,0.311849505,0.514990361,305.6,102,33380,,,11.25325752,95,8442,9.10455734,13.75652377,,,,,,,,,,,,,11.4764668,9.216545215,14.12277994,,,,,,,0.041924872,1096,26142,0.034775936,0.049073808,0.000958658,32,33380,,,1043.125,0.000594495,20,33642,,,1682.1,0.001367338,46,33642,,,731.3478261,1470,,,,,,,,,1480,0.55,,,,,,,,,0.55,0.58,,,,,,,,,0.58,0.940983459,20935,22248,0.926374684,0.955592234,0.707072042,5349,7565,0.640211604,0.77393248,0.020610015,398,19311,,,0.085,656,,0.052829787,0.117170213,,,,,,,,,,0.007352941,0,0.109537232,0.073081962,0.04267962,0.103484305,3.861581673,131985,34179,3.229603151,4.493560195,0.169593642,1323,7801,0.12913398,0.210053304,18.57399641,62,33380,,,73.35566071,122,166313,60.33869415,86.37262727,,,,,,,,,,,,,75.8991498,62.26212904,89.53617057,,,,7.7,,,,,0,,,,,0.097191427,1315,13530,0.077888405,0.116494448,0.071348941,0.053670557,0.089027325,0.014781966,0.008138903,0.021425029,0.016629712,0.008720352,0.024539071,0.803103134,13199,16435,0.77645503,0.829751237,,,,,,,,,,,,,0.815177273,0.789253322,0.841101224,0.273,,16435,0.239026879,0.306973121,78.4005526,,,77.5368153,79.26428991,,,,,,,,,,,,,78.22945839,77.34413665,79.11478012,,,,336.2978092,422,91661,302.786102,369.8095164,,,,,,,,,,,,,340.2873353,305.8052388,374.7694319,,,,44.97413987,16,35576,25.70660685,73.03518551,,,,,,,,,,,,,46.25061668,25.88611906,76.28335863,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.09,,,0.074,0.106,0.148,,,0.124,0.173,0.08,,,0.065,0.096,42.8,12,28053,,,0.068,2270,,,,0.032338665,1077.168606,33309,,,11.02193365,11,99801,5.502109565,19.72128387,,,,,,,,,,,,,11.70972653,5.845453291,20.95193531,,,,0.309,,,0.29,0.326,0.049798629,915,18374,0.041458203,0.058139054,0.024524831,200,8155,0.017375895,0.031673768,0.001426788,48,33642,,,700.875,0.961597938,373.1,388,,,,,,,,3.25158516,,,,,,,,,3.260324315,3.200535293,,,,,,,,,3.202504047,0.030300459,,,,,1104.61712,,,,,0.710409999,46610,65610,0.643967712,0.776852285,73451,,,64043,82859,,,,,,,64800,52149.95745,77450.04255,,,,75238,71695.70213,78780.29787,,,,,,0.285534365,1587,5558,,,78.60330556,,,,,0.258212958,,73451,,,4.774535809,9,1885,,,,,,,,,,,,,,,,,,,,,,,,,,20.29037328,35,166313,13.8786003,28.64395298,21.04465676,,,,,,,,,,,,,21.42594052,14.65532745,30.2470351,,,,13.82934587,23,166313,8.766618988,20.75080895,,,,,,,,,,,,,14.66958358,9.299257615,22.01157806,,,,11.59813743,27,232796,7.643245645,16.87468103,,,,,,,,,,,,,11.83157301,7.728776304,17.33599578,,,,18.94736842,,3800,,,9,63,0.762418236,19232,25225,,,0.736,,,,,54.40079593,,,,,0.770999249,10262,13310,0.748202786,0.793795712,0.088217338,1156,13104,0.066151081,0.110283596,0.850413223,11319,13310,0.825358621,0.875467826,33642,,,,,0.230545152,7756,33642,,,0.195321325,6571,33642,,,0.009244397,311,33642,,,0.002734677,92,33642,,,0.013970632,470,33642,,,0.000653945,22,33642,,,0.023958148,806,33642,,,0.937934725,31554,33642,,,0.003602465,114,31645,0,0.007272472,0.495481838,16669,33642,,,0.469653439,15693,33414,, -19,127,19127,IA,Marshall County,2024,1,8250.565995,629,109148,7222.302493,9278.829497,0,,,,2,,,,2,20641.55338,11798.43126,33520.5895,1,4655.874915,3242.98747,6475.194935,,9245.261066,7850.799564,10639.72257,,,,,2,,0.16,,,0.136,0.186,3.464005196,,,2.826731862,4.14210832,5.088722046,,,4.322730056,5.839500232,0.071367643,251,3517,0.062859349,0.079875937,0,,,,0.0781893,0.044433573,0.111945028,0.085470086,0.034809621,0.13613055,0.082278481,0.06712958,0.097427382,0.061009429,0.049961336,0.072057521,,,,,,,0.181,,,0.149,0.218,0.372,,,0.326,0.42,8,0.096158559,0.088,,,0.265,,,0.226,0.307,0.826006732,33127,40105,,,0.187649379,,,0.158595375,0.21934375,0.46875,15,32,0.383561551,0.547659523,549.5,219,39853,,,24.71587775,224,9063,21.47913562,27.95261987,,,,41.84100418,20.06438785,76.94709641,,,,34.66592116,28.56426159,40.76758074,15.89923601,12.54742842,19.87131706,,,,,,,0.092328432,2945,31897,0.079222049,0.105434815,0.000426568,17,39853,,,2344.294118,0.000702124,28,39879,,,1424.25,0.001955917,78,39879,,,511.2692308,1684,,,,,,,,1506,1650,0.54,,,,,,0.33,,0.25,0.56,0.53,,,,,,0.37,0.36,0.25,0.55,0.851934496,22526,26441,0.831385876,0.872483115,0.544743329,5083,9331,0.489199543,0.600287114,0.052535195,918,17474,,,0.136,1358,,0.085957447,0.186042553,0.164772727,0,0.51549571,,,,0.045936396,0,0.156458502,0.224675325,0.146325316,0.303025334,0.103344077,0.057106848,0.149581307,3.8820232,119807,30862,3.514373954,4.249672447,0.173300493,1759,10150,0.129074216,0.217526769,12.54610694,50,39853,,,79.90511895,159,198986,67.48481822,92.32541969,,,,,,,,,,21.49797919,10.30911664,39.53554915,103.3418724,86.34424811,120.3394967,,,,7.8,,,,,0,,,,,0.11825861,1820,15390,0.095048051,0.141469168,0.071503958,0.053869568,0.089138348,0.038986355,0.0227863,0.05518641,0.010071475,0.002898679,0.017244271,0.776993833,14867,19134,0.751202475,0.802785191,,,,,,,,,,0.67519956,0.590460617,0.759938503,0.812613293,0.784021677,0.841204909,0.202,,19134,0.171529538,0.232470462,75.98071214,,,75.15478679,76.80663749,,,,,,,,,,84.40432017,77.30088635,91.507754,75.27364345,74.25133055,76.29595636,,,,435.9207856,629,109148,400.2162355,471.6253358,,,,,,,1158.596475,707.7008262,1789.358287,240.019497,168.9958762,330.8352599,470.8601128,427.0370946,514.683131,,,,45.35250232,20,44099,27.70248665,70.04326153,,,,,,,,,,,,,,,,,,,6.219960418,22,3537,3.898016079,9.417094823,,,,,,,,,,,,,,,,,,,,,,0.105,,,0.091,0.121,0.162,,,0.141,0.185,0.096,,,0.082,0.11,106.5,35,32860,,,0.088,3540,,,,0.096158559,3908.653101,40648,,,8.423393448,10,118717,4.039344573,15.49092046,,,,,,,,,,,,,,,,,,,0.316,,,0.303,0.329,0.114704143,2522,21987,0.096831803,0.132576484,0.043976136,457,10392,0.030869753,0.057082519,0.001253793,50,39879,,,797.58,0.873928571,452.695,518,,,,,,,,2.936718757,,,,,,2.803502246,,2.528616772,3.278853788,2.90916024,,,,,,3.333816645,,2.609001737,3.178727157,0.1779701,,,,,-370.243475,,,,,0.747602122,41856,55987,0.689125796,0.806078448,69818,,,63538.85106,76097.14894,,,,87083,79781.55319,94384.44681,71418,60646.93617,82189.06383,67750,58157.31915,77342.68085,70635,65712.95745,75557.04255,,,,,,0.571833381,4036,7058,,,70.01313932,,,,,0.261608754,,69818,,,4.705882353,12,2550,,,,,,,,,,,,,,,,,,,,,,,,,,14.80833832,30,198986,9.758788263,21.54535479,15.07643754,,,,,,,,,,,,,19.78632823,12.67747385,29.44048801,,,,8.543314605,17,198986,4.976795588,13.67867429,,,,,,,,,,,,,10.18863531,5.570221731,17.09479879,,,,16.78307695,47,280044,12.33157367,22.31793445,,,,,,,,,,,,,19.38528249,13.71817964,26.60781478,,,,31.70212766,,4700,,,37,112,0.677474785,18136,26770,,,0.682,,,,,71.07086451,,,,,0.735020931,11237,15288,0.706465556,0.763576307,0.089946381,1342,14920,0.068488165,0.111404597,0.836342229,12786,15288,0.808519934,0.864164525,39879,,,,,0.253491813,10109,39879,,,0.181047669,7220,39879,,,0.020938339,835,39879,,,0.009904963,395,39879,,,0.039845533,1589,39879,,,0.003936909,157,39879,,,0.25677675,10240,39879,,,0.660849068,26354,39879,,,0.076941489,2893,37600,0.061342722,0.092540257,0.491286141,19592,39879,,,0.317267174,12724,40105,, -19,129,19129,IA,Mills County,2024,1,7961.082585,232,41140,6203.230805,9718.934365,0,,,,2,,,,2,,,,2,,,,2,8187.843131,6378.240064,9997.446198,,,,,2,,0.115,,,0.095,0.137,2.900093352,,,2.223045991,3.650319119,4.491960953,,,3.53695066,5.489435526,0.081407035,81,995,0.064415326,0.098398744,0,,,,,,,,,,,,,0.080558539,0.063076219,0.098040859,,,,,,,0.157,,,0.122,0.195,0.373,,,0.293,0.454,9.1,0.038071065,0.063,,,0.224,,,0.178,0.271,0.630212648,9128,14484,,,0.216769524,,,0.172745054,0.259994719,0.625,10,16,0.52435081,0.707784234,242,35,14465,,,9.947155735,32,3217,6.803847159,14.04241594,,,,,,,,,,,,,10.25991792,6.922323537,14.64667079,,,,,,,0.048674912,551,11320,0.040334486,0.057015337,0.000553059,8,14465,,,1808.125,0.000343572,5,14553,,,2910.6,0.000755858,11,14553,,,1323,3384,,,,,,,,,3418,0.52,,,,,,,,,0.52,0.62,,,,,,,,,0.62,0.950500942,9582,10081,0.945967524,0.955034361,0.777535101,2492,3205,0.673444491,0.881625712,0.023054352,165,7157,,,0.11,356,,0.070680851,0.149319149,,,,,,,,,,,,,0.067986799,0.029865141,0.106108456,3.717812516,146980,39534,2.983911851,4.45171318,0.136754587,477,3488,0.087932727,0.185576447,8.987210508,13,14465,,,65.7974245,49,74471,48.67729687,86.98768459,,,,,,,,,,,,,68.72163443,50.66990826,91.11491715,,,,7.3,,,,,0,,,,,0.102022059,555,5440,0.071031531,0.133012586,0.085603829,0.054339894,0.116867765,0.018382353,0.008150888,0.028613818,0.000735294,0,0.004560302,0.789881562,5402,6839,0.757952205,0.821810918,,,,,,,,,,,,,0.737709205,0.695759581,0.779658829,0.431,,6839,0.375266819,0.486733181,77.92738004,,,76.38187283,79.47288725,,,,,,,,,,,,,77.64925446,76.08360085,79.21490807,,,,388.7738626,232,41140,335.0885916,442.4591336,,,,,,,,,,,,,403.0063616,346.7854828,459.2272403,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.089,,,0.075,0.104,0.147,,,0.125,0.171,0.079,,,0.065,0.093,73.7,9,12212,,,0.063,920,,,,0.038071065,573.3121719,15059,,,,,,,,,,,,,,,,,,,,,,,,,,0.326,,,0.307,0.343,0.055292653,444,8030,0.045760738,0.064824567,0.033506644,116,3462,0.022783239,0.044230048,0.000549715,8,14553,,,1819.125,0.929347826,171,184,,,,,,,,3.057674775,,,,,,,,,3.071118279,3.245497915,,,,,,,,,3.245649272,0.01408235,,,,,1763.546525,,,,,0.793474804,52386,66021,0.714444547,0.87250506,75835,,,65764.53192,85905.46809,,,,,,,,,,,,,81811,76689.97872,86932.02128,,,,,,0.33655006,837,2487,,,,,,,,0.25920749,,75835,,,7.926023778,6,757,,,,,,,,,,,,,,,,,,,,,,,,,,12.76988141,10,74471,5.839202936,24.24121267,13.42804582,,,,,,,,,,,,,13.69043784,6.260139953,25.98871552,,,,,,,,,,,,,,,,,,,,,,,,,,,13.42449203,14,104287,7.339294712,22.52401653,,,,,,,,,,,,,14.28542275,7.809973548,23.96851199,,,,20.58823529,,1700,,,7,28,0.72462752,8268,11410,,,0.7,,,,,23.42404565,,,,,0.812583159,4275,5261,0.780691043,0.844475275,0.082994777,429,5169,0.053081097,0.112908456,0.885192929,4657,5261,0.85581731,0.914568548,14553,,,,,0.225245654,3278,14553,,,0.205249777,2987,14553,,,0.006871435,100,14553,,,0.007558579,110,14553,,,0.004191576,61,14553,,,0.000824572,12,14553,,,0.041159898,599,14553,,,0.929361644,13525,14553,,,0.004484629,62,13825,0,0.013439814,0.496048925,7219,14553,,,0.654170119,9475,14484,, -19,131,19131,IA,Mitchell County,2024,1,4590.485965,119,28475,3192.463803,5988.508128,0,,,,2,,,,2,,,,2,,,,2,4503.03777,3130.983571,5875.091968,,,,,2,,0.127,,,0.104,0.153,3.095627959,,,2.386969665,3.899686801,4.451068478,,,3.525556057,5.457991713,0.047398844,41,865,0.033238055,0.061559633,0,,,,,,,,,,,,,0.048134777,0.033581099,0.062688456,,,,,,,0.169,,,0.129,0.208,0.378,,,0.302,0.456,8.9,0.086051163,0.051,,,0.231,,,0.185,0.279,0.729200189,7704,10565,,,0.199837055,,,0.161225138,0.241757624,0.625,5,8,0.470053641,0.740226608,170.5,18,10555,,,7.544006706,18,2386,4.471056488,11.92278301,,,,,,,,,,,,,7.436570429,4.332076321,11.90666965,,,,,,,0.0662506,552,8332,0.055527196,0.076974004,0.000284226,3,10555,,,3518.333333,0.000474744,5,10532,,,2106.4,,0,10532,,,,1826,,,,,,,,,1842,0.54,,,,,,,,,0.54,0.4,,,,,,,,,0.4,0.922513812,6679,7240,0.904346507,0.940681117,0.729540481,1667,2285,0.625108538,0.833972425,0.02049458,121,5904,,,0.114,282,,0.069914894,0.158085106,,,,,,,,,,,,,0.037800687,0.011908851,0.063692524,3.965883687,122407,30865,3.363313389,4.568453986,0.202735318,504,2486,0.113043848,0.292426788,17.05352913,18,10555,,,64.16547143,34,52988,44.43645426,89.66481486,,,,,,,,,,,,,64.56788433,44.44556061,90.67731568,,,,7.4,,,,,0,,,,,0.06935123,310,4470,0.049508225,0.089194236,0.056497175,0.033773921,0.079220429,0.002684564,0,0.00981123,0.016778524,0.006668257,0.02688879,0.754054536,4231,5611,0.72431013,0.783798942,,,,,,,,,,,,,0.722052402,0.691081549,0.753023254,0.266,,5611,0.216859188,0.315140812,79.60074929,,,78.22317094,80.97832763,,,,,,,,,,,,,79.59446618,78.21151995,80.97741242,,,,277.1875558,119,28475,224.320002,330.0551097,,,,,,,,,,,,,280.9475987,226.8857185,335.0094789,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.097,,,0.082,0.113,0.153,,,0.131,0.175,0.084,,,0.07,0.098,,,,,,0.051,540,,,,0.086051163,927.2873301,10776,,,,,,,,,,,,,,,,,,,,,,,,,,0.294,,,0.276,0.311,0.074639671,435,5828,0.061533288,0.087746054,0.046892871,123,2623,0.031403509,0.062382233,0.000854539,9,10532,,,1170.222222,0.964692983,109.975,114,,,,,,,,3.103717046,,,,,,,,,3.119235811,3.190736684,,,,,,,,,3.205388424,0.028565786,,,,,2073.69,,,,,0.790983677,45987,58139,0.7153588,0.866608554,65132,,,56857.10638,73406.89362,,,,168750,91324.6383,246175.3617,18953,18429.93617,19476.06383,,,,67209,61002.53192,73415.46809,,,,,,0.31121134,483,1552,,,,,,,,0.248679605,,65132,,,7.692307692,5,650,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.08945738,12,74583,8.313657414,28.10504411,,,,,,,,,,,,,15.28775729,7.631593356,27.3540207,,,,29.16666667,,1200,,,7,28,0.723679304,5822,8045,,,0.723,,,,,0.307778062,,,,,0.795560488,3584,4505,0.766458599,0.824662378,0.074091225,320,4319,0.04777046,0.100411989,0.863263041,3889,4505,0.839457432,0.88706865,10532,,,,,0.236707178,2493,10532,,,0.218192176,2298,10532,,,0.006646411,70,10532,,,0.003038359,32,10532,,,0.006456514,68,10532,,,0.000474744,5,10532,,,0.020319028,214,10532,,,0.95898215,10100,10532,,,0.005451792,54,9905,0,0.013833422,0.495442461,5218,10532,,,1,10565,10565,, -19,133,19133,IA,Monona County,2024,1,9095.97437,163,22617,6676.68607,11515.26267,0,,,,2,,,,2,,,,2,,,,2,8616.189205,6202.774678,11029.60373,,,,,2,,0.142,,,0.119,0.168,3.325102059,,,2.604225431,4.161904568,4.689147441,,,3.7649684,5.736468152,0.077399381,50,646,0.05679235,0.098006412,0,,,,,,,,,,,,,0.073211315,0.052385677,0.094036952,,,,,,,0.194,,,0.155,0.237,0.41,,,0.334,0.493,8.3,0.050144728,0.095,,,0.259,,,0.213,0.313,0.577419724,5053,8751,,,0.183275774,,,0.147521331,0.223050459,0.315789474,6,19,0.192486042,0.440144871,198.3,17,8574,,,14.20454546,25,1760,9.192432868,20.96871119,,,,,,,,,,,,,14.02166985,8.787305846,21.22897667,,,,,,,0.057784663,373,6455,0.048252748,0.067316578,0.000933053,8,8574,,,1071.75,0.000353524,3,8486,,,2828.666667,0.000824888,7,8486,,,1212.285714,2538,,,,,,,,,2505,0.48,,,,,,,,,0.48,0.17,,,,,,,,,0.17,0.93034505,5770,6202,0.90808825,0.95260185,0.608048512,1103,1814,0.518441688,0.697655335,0.028642309,127,4434,,,0.143,265,,0.089382979,0.196617021,,,,,,,,,,0.486486487,0.292029295,0.680943678,0.131810193,0.077629649,0.185990737,4.295448556,114100,26563,3.801798082,4.78909903,0.182581322,348,1906,0.115582982,0.249579662,10.49685095,9,8574,,,94.89422765,41,43206,68.09773612,128.7347349,,,,,,,,,,,,,93.43496435,66.12014174,128.2467886,,,,6.8,,,,,0,,,,,0.086466165,345,3990,0.058912311,0.11402002,0.07409287,0.046266127,0.101919612,0.00726817,0,0.017120211,0.007518797,0.00023858,0.014799014,0.792950456,3217,4057,0.753919282,0.83198163,,,,,,,,,,,,,0.784102061,0.731554469,0.836649653,0.274,,4057,0.229466342,0.318533658,74.94626071,,,73.16619579,76.72632563,,,,,,,,,,,,,75.2186249,73.42610032,77.01114948,,,,478.3260544,163,22617,397.1045561,559.5475527,,,,,,,,,,,,,465.8062538,384.1124766,547.500031,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.105,,,0.09,0.122,0.164,,,0.143,0.189,0.088,,,0.074,0.103,,,,,,0.095,830,,,,0.050144728,463.4877229,9243,,,,,,,,,,,,,,,,,,,,,,,,,,0.318,,,0.301,0.335,0.068627451,315,4590,0.056712557,0.080542345,0.032553408,64,1966,0.021830004,0.043276812,0.001414094,12,8486,,,707.1666667,,,,,,,,,,,3.272110799,,,,,,,,,3.28257733,3.023941763,,,,,,,,,3.103743415,0.080881534,,,,,-905.9846667,,,,,0.766181868,44673,58306,0.668085003,0.864278733,60237,,,52295.7234,68178.2766,,,,,,,,,,64271,35378.57447,93163.42553,59523,55330.14894,63715.85106,,,,,,0.483794466,612,1265,,,,,,,,0.276491193,,60237,,,4.246284501,2,471,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,34.37945091,21,61083,21.28142197,52.55264269,,,,,,,,,,,,,34.67646855,21.18128786,53.55499324,,,,,,900,,,-888,7,0.688710852,4728,6865,,,0.653,,,,,1.950837796,,,,,0.78219107,3013,3852,0.750214909,0.81416723,0.074124355,273,3683,0.045185327,0.103063384,0.820093458,3159,3852,0.789257057,0.850929859,8486,,,,,0.221069998,1876,8486,,,0.244520387,2075,8486,,,0.005774216,49,8486,,,0.020386519,173,8486,,,0.00306387,26,8486,,,0.000589206,5,8486,,,0.024275277,206,8486,,,0.93341975,7921,8486,,,0.002557545,21,8211,0,0.010971359,0.510016498,4328,8486,,,1,8751,8751,, -19,135,19135,IA,Monroe County,2024,1,7653.132982,130,21091,5330.624606,9975.641359,0,,,,2,,,,2,,,,2,,,,2,7932.563943,5481.146284,10383.9816,,,,,2,,0.129,,,0.107,0.155,3.195094938,,,2.477016661,3.982522536,4.524461138,,,3.57076308,5.553599022,0.048172758,29,602,0.031067184,0.065278331,0,,,,,,,,,,,,,0.05017301,0.0323759,0.06797012,,,,,,,0.176,,,0.14,0.216,0.376,,,0.294,0.462,8.9,0.022996123,0.08,,,0.245,,,0.201,0.296,0.698429458,5292,7577,,,0.199009452,,,0.158446821,0.241984858,0,0,5,0,0.316144538,328.5,25,7610,,,19.93957704,33,1655,13.72548736,28.00257962,,,,,,,,,,,,,22.4642614,15.4633639,31.54817513,,,,,,,0.058581537,356,6077,0.049049622,0.068113452,0.000525624,4,7610,,,1902.5,0.000397351,3,7550,,,2516.666667,0.000397351,3,7550,,,2516.666667,1436,,,,,,,,,1446,0.43,,,,,,,,,0.44,0.42,,,,,,,,,0.42,0.930424755,4841,5203,0.900485169,0.960364341,0.70556553,1179,1671,0.567464582,0.843666477,0.0281412,114,4051,,,0.143,246,,0.085808511,0.200191489,,,,,,,,,,,,,0.115717822,0.045480713,0.185954931,4.527985281,123048,27175,3.403721965,5.652248596,0.110371603,199,1803,0.039854001,0.180889205,13.14060447,10,7610,,,56.81524715,22,38722,35.6058129,86.01896696,,,,,,,,,,,,,59.9880024,37.59416173,90.82255654,,,,7.6,,,,,0,,,,,0.11248074,365,3245,0.07278423,0.15217725,0.083591331,0.047182824,0.119999839,0.024653313,0,0.050285455,0.006163328,0,0.014240832,0.778150321,2785,3579,0.712232834,0.844067809,,,,,,,,,,,,,0.777742749,0.70334912,0.852136379,0.431,,3579,0.345502855,0.516497146,76.13089264,,,74.2655758,77.99620949,,,,,,,,,,,,,75.91373383,73.97522095,77.85224671,,,,413.0733049,130,21091,337.3333201,488.8132897,,,,,,,,,,,,,417.6881281,339.5460729,495.8301833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.098,,,0.084,0.113,0.155,,,0.134,0.179,0.082,,,0.07,0.096,,,,,,0.08,610,,,,0.022996123,183.2791026,7970,,,,,,,,,,,,,,,,,,,,,,,,,,0.327,,,0.309,0.345,0.069767442,300,4300,0.056661059,0.082873825,0.032085562,60,1870,0.021362157,0.042808966,0.000529801,4,7550,,,1887.5,0.925,87.875,95,,,,,,,,3.214531841,,,,,,,,,3.185856922,3.218340565,,,,,,,,,3.227234924,0.013279082,,,,,860.8701,,,,,0.735049492,46486,63242,0.578983747,0.891115238,66176,,,56895.48936,75456.51064,,,,,,,,,,,,,76484,62361.2766,90606.7234,,,,,,0.341717259,394,1153,,,,,,,,0.254971591,,66176,,,6.423982869,3,467,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,28.88888889,,900,,,7,19,0.68763667,4088,5945,,,0.613,,,,,26.03793885,,,,,0.824538259,2500,3032,0.773145957,0.875930561,0.078225533,231,2953,0.036603743,0.119847324,0.803100264,2435,3032,0.747925656,0.858274871,7550,,,,,0.230728477,1742,7550,,,0.202781457,1531,7550,,,0.00781457,59,7550,,,0.002781457,21,7550,,,0.004900662,37,7550,,,0.00013245,1,7550,,,0.024768212,187,7550,,,0.945960265,7142,7550,,,0,0,7116,0,0.010046285,0.5,3775,7550,,,1,7577,7577,, -19,137,19137,IA,Montgomery County,2024,1,8844.428171,183,27245,6700.246933,10988.60941,0,,,,2,,,,2,,,,2,,,,2,9247.816175,6955.610995,11540.02136,,,,,2,,0.147,,,0.123,0.175,3.385090365,,,2.628877713,4.17579978,4.873504837,,,3.906286496,5.899964806,0.07651715,58,758,0.057593048,0.095441252,0,,,,,,,,,,,,,0.076271186,0.056719153,0.09582322,,,,,,,0.199,,,0.159,0.244,0.378,,,0.302,0.457,8.1,0.073980609,0.096,,,0.271,,,0.219,0.327,0.790125847,8162,10330,,,0.191276115,,,0.152992229,0.235038692,0.166666667,1,6,0.011498194,0.426636125,339.1,35,10322,,,20.48417132,44,2148,14.88383024,27.49904389,,,,,,,,,,,,,19.30099113,13.58967896,26.60387384,,,,,,,0.060454659,484,8006,0.050922744,0.069986574,0.000387522,4,10322,,,2580.5,0.000489956,5,10205,,,2041,0.001175894,12,10205,,,850.4166667,3492,,,,,,,,,3515,0.5,,,,,,,,,0.5,0.59,,,,,,,,,0.59,0.916331902,6615,7219,0.890760545,0.941903259,0.619328494,1365,2204,0.520075321,0.718581666,0.024590164,123,5002,,,0.17,381,,0.102085106,0.237914894,,,,,,,,,,0.661538462,0.086079811,1,0.182088075,0.104715615,0.259460535,4.538385555,114862,25309,3.578139282,5.498631828,0.256797583,595,2317,0.171401646,0.342193521,14.53206743,15,10322,,,57.63803315,29,50314,38.6010954,82.7778301,,,,,,,,,,,,,59.73588206,39.69405981,86.33498164,,,,6.5,,,,,0,,,,,0.0859375,385,4480,0.057309718,0.114565282,0.067789001,0.042110567,0.093467435,0.012053571,0,0.030464867,0.010044643,0.001596382,0.018492904,0.835874629,3947,4722,0.786992773,0.884756486,,,,,,,,,,,,,0.85204786,0.806286528,0.897809193,0.243,,4722,0.191932482,0.294067518,75.1815646,,,73.547688,76.81544119,,,,,,,,,,,,,74.78117881,73.07464916,76.48770847,,,,458.2676299,183,27245,386.1560315,530.3792283,,,,,,,,,,,,,472.9106785,397.0441184,548.7772387,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.108,,,0.091,0.126,0.164,,,0.142,0.19,0.094,,,0.079,0.111,80.7,7,8671,,,0.096,990,,,,0.073980609,794.5517444,10740,,,,,,,,,,,,,,,,,,,,,,,,,,0.315,,,0.298,0.332,0.07127809,406,5696,0.058171707,0.084384473,0.034525277,84,2433,0.022610384,0.046440171,0.001371877,14,10205,,,728.9285714,0.879651163,75.65,86,,,,,,,,2.976893903,,,,,,,,,3.007520465,2.928928222,,,,,,,,,2.89740757,0.054068548,,,,,-448.2293433,,,,,0.759724884,40428,53214,0.608381469,0.9110683,58895,,,51817.55319,65972.44681,,,,,,,,,,85781,46750.19149,124811.8085,62188,57604.34043,66771.65957,,,,,,0.511868533,841,1643,,,,,,,,0.302317684,,58895,,,11.41924959,7,613,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,62,,1000,,,11,51,0.692717815,5327,7690,,,0.669,,,,,40.36993368,,,,,0.708657912,3184,4493,0.673337928,0.743977896,0.088796871,386,4347,0.052006991,0.125586752,0.80458491,3615,4493,0.766427894,0.842741926,10205,,,,,0.223713866,2283,10205,,,0.222733954,2273,10205,,,0.007643312,78,10205,,,0.006369427,65,10205,,,0.00411563,42,10205,,,0.000979912,10,10205,,,0.043312102,442,10205,,,0.927682509,9467,10205,,,0.002272727,22,9680,0,0.010089503,0.506418422,5168,10205,,,0.466021297,4814,10330,, -19,139,19139,IA,Muscatine County,2024,1,7738.632673,629,118789,6799.23894,8678.026407,0,,,,2,,,,2,,,,2,5211.740288,3587.522207,7319.221069,,8499.695043,7335.386634,9664.003452,,,,,2,,0.143,,,0.119,0.169,3.137037182,,,2.458469218,3.853317006,4.589817686,,,3.75041907,5.454869303,0.078848921,274,3475,0.06988822,0.087809622,0,,,,,,,0.075581395,0.036078072,0.115084719,0.069427527,0.052040496,0.086814559,0.07951199,0.068636049,0.090387931,,,,,,,0.168,,,0.134,0.207,0.386,,,0.324,0.449,8.7,0.05562727,0.076,,,0.257,,,0.212,0.303,0.79962993,34572,43235,,,0.186087725,,,0.152646168,0.222285647,0.090909091,2,22,0.017567586,0.216903757,487.3,208,42688,,,18.04465287,177,9809,15.38626731,20.70303843,,,,,,,36.82719547,19.60893057,62.97562583,22.64426589,17.36122881,29.02892691,15.2862268,12.41009781,18.62901424,,,,,,,0.058675007,2045,34853,0.049143092,0.068206921,0.000374813,16,42688,,,2668,0.000589943,25,42377,,,1695.08,0.000873115,37,42377,,,1145.324324,2463,,,,,,,,3817,2376,0.52,,,,,,,,0.36,0.53,0.5,,,,,,0.63,0.27,0.35,0.5,0.901102319,26077,28939,0.884905318,0.91729932,0.586333995,6204,10581,0.528542459,0.644125531,0.029606195,627,21178,,,0.157,1564,,0.109340426,0.204659575,,,,,,,0.228643216,0.012358651,0.444927782,0.137006162,0.067201493,0.206810831,0.156686177,0.107630199,0.205742156,3.672928144,122011,33219,3.368146842,3.977709446,0.257322775,2697,10481,0.186943474,0.327702075,10.5416042,45,42688,,,66.96167264,143,213555,55.98642455,77.93692073,,,,,,,,,,38.18542844,21.37209443,62.98105716,77.9026401,64.3536668,91.4516134,,,,8.2,,,,,0,,,,,0.108491992,1795,16545,0.087296867,0.129687116,0.080600674,0.061469163,0.099732185,0.024478695,0.014410501,0.034546888,0.012692656,0.004501983,0.02088333,0.843128802,17602,20877,0.82293084,0.863326764,,,,,,,,,,0.802653868,0.708618492,0.896689244,0.848559201,0.835229002,0.8618894,0.228,,20877,0.195631815,0.260368185,76.81922059,,,76.01602391,77.62241726,,,,,,,,,,83.93062955,77.11494163,90.74631748,76.13382318,75.20803409,77.05961226,,,,402.6311494,629,118789,369.7251591,435.5371398,,,,,,,,,,270.2556432,197.8610973,360.4831552,431.9405701,393.6771413,470.2039989,,,,45.6135016,21,46039,28.23547641,69.72508251,,,,,,,,,,,,,53.8376123,30.77284718,87.42890944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.099,,,0.084,0.116,0.155,,,0.133,0.178,0.089,,,0.076,0.104,76.1,27,35486,,,0.076,3290,,,,0.05562727,2377.787675,42745,,,10.17644388,13,127746,5.418527775,17.40202896,,,,,,,,,,,,,10.28764248,4.933324448,18.91934081,,,,0.331,,,0.315,0.344,0.070588235,1740,24650,0.058673342,0.082503129,0.031081333,334,10746,0.021549418,0.040613248,0.000920311,39,42377,,,1086.589744,0.857455969,438.16,511,,,0.086455331,210,2429,0.031813474,0.141097189,2.951486415,,,,,,,,2.797697197,3.012445329,2.903023317,,,,,,,,2.600564074,3.055323444,0.087257832,,,,,403.2636667,,,,,0.719042307,41895,58265,0.642209379,0.795875235,69096,,,60772.25532,77419.74468,69432,16358.29787,122505.7021,138837,104930.7872,172743.2128,,,,65134,41354.25532,88913.74468,68831,64533.29787,73128.70213,,,,,,0.483398579,3334,6897,,,53.56618903,,,,,0.286456524,,69096,,,6.952067325,19,2733,,,,,,,,,,,,,,,,,,,,,,,,,,18.30005185,36,213555,12.67331789,25.57248821,16.85748402,,,,,,,,,,,,,19.51969986,12.9706988,28.2114011,,,,9.833532345,21,213555,6.08711151,15.03159876,,,,,,,,,,,,,11.65472569,7.016906201,18.20029785,,,,11.01814321,33,299506,7.584382808,15.47356957,,,,,,,,,,,,,11.30970764,7.387876522,16.57134211,,,,16.93877551,,4900,,,14,69,0.675302189,20671,30610,,,0.718,,,,,79.01198128,,,,,0.753850659,12872,17075,0.728878964,0.778822354,0.089918748,1494,16615,0.068769723,0.111067773,0.877071742,14976,17075,0.85668852,0.897454965,42377,,,,,0.238761592,10118,42377,,,0.182953017,7753,42377,,,0.028010477,1187,42377,,,0.008377186,355,42377,,,0.010453784,443,42377,,,0.001911414,81,42377,,,0.190551478,8075,42377,,,0.754654648,31980,42377,,,0.025716622,1038,40363,0.016758879,0.034674365,0.497652028,21089,42377,,,0.418434139,18091,43235,, -19,141,19141,IA,O'Brien County,2024,1,7305.733836,187,37306,5651.50635,8959.961321,0,,,,2,,,,2,,,,2,,,,2,7434.616708,5666.159158,9203.074258,,,,,2,,0.141,,,0.118,0.168,3.279591153,,,2.512392059,4.089710365,4.640787781,,,3.70866231,5.659632354,0.060082305,73,1215,0.046719853,0.073444756,0,,,,,,,,,,0.092857143,0.044780121,0.140934164,0.053449951,0.039706563,0.06719334,,,,,,,0.187,,,0.15,0.229,0.368,,,0.301,0.442,8.6,0.046807608,0.085,,,0.25,,,0.206,0.304,0.87307855,12382,14182,,,0.194180865,,,0.158511355,0.235767211,0,0,8,0,0.234018599,313.9,44,14015,,,20.12491326,58,2882,15.28169038,26.01611719,,,,,,,,,,55.14705882,30.86539019,90.95668703,15.68785197,11.15559634,21.44581008,,,,,,,0.059336665,653,11005,0.04980475,0.06886858,0.000570817,8,14015,,,1751.875,0.000497866,7,14060,,,2008.571429,0.000355619,5,14060,,,2812,1692,,,,,,,,,1707,0.49,,,,,,,,,0.49,0.35,,,,,,,,,0.36,0.907335114,8832,9734,0.880521178,0.93414905,0.619701493,2076,3350,0.546834091,0.692568894,0.02147389,176,8196,,,0.099,329,,0.059680851,0.138319149,,,,,,,0.883116883,0.035010756,1,0.27631579,0.008277229,0.54435435,0.108703636,0.061616476,0.155790796,3.774183653,110727,29338,3.255865383,4.292501922,0.145117946,486,3349,0.081450976,0.208784916,27.11380664,38,14015,,,62.23946271,43,69088,45.04300778,83.83614783,,,,,,,,,,,,,63.14227533,45.10976723,85.98185759,,,,6.5,,,,,0,,,,,0.119665272,715,5975,0.084825654,0.15450489,0.080471381,0.052138019,0.108804742,0.029958159,0.00710859,0.052807728,0.019246862,0.008521833,0.029971891,0.822786669,5604,6811,0.789244651,0.856328686,,,,,,,,,,,,,0.820082959,0.78274796,0.857417958,0.22,,6811,0.18082554,0.25917446,76.89193086,,,75.48912211,78.29473961,,,,,,,,,,,,,76.73622229,75.2684935,78.20395107,,,,361.0514641,187,37306,306.048863,416.0540652,,,,,,,,,,,,,367.2937762,309.9159248,424.6716276,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.103,,,0.088,0.12,0.155,,,0.134,0.179,0.088,,,0.074,0.103,,,,,,0.085,1200,,,,0.046807608,673.9359412,14398,,,,,,,,,,,,,,,,,,,,,,,,,,0.308,,,0.291,0.325,0.069324994,532,7674,0.056218611,0.082431377,0.036952163,129,3491,0.025037269,0.048867056,0.001991465,28,14060,,,502.1428571,0.913687151,163.55,179,,,,,,,,3.020718767,,,,,,,,2.604299076,3.141528412,2.872703307,,,,,,,,2.423360847,3.036764397,0.051392536,,,,,581.2434333,,,,,0.704521484,40746,57835,0.608853639,0.800189328,67470,,,58424.21277,76515.78723,,,,,,,13786,12991.2766,14580.7234,39958,26731.2766,53184.7234,69609,61344.82979,77873.17021,,,,,,0.394826124,931,2358,,,34.56727002,,,,,0.25443901,,67470,,,16.55629139,15,906,,,,,,,,,,,,,,,,,,,,,,,,,,15.0068411,10,69088,6.862083347,28.48765895,14.47429365,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.38936267,13,97092,7.129271712,22.89621794,,,,,,,,,,,,,14.55294473,7.748830157,24.88597871,,,,27.5,,1600,,,11,33,0.727807229,7551,10375,,,0.705,,,,,21.21834251,,,,,0.760175439,4333,5700,0.723270972,0.797079905,0.084065934,459,5460,0.057662291,0.110469577,0.890701754,5077,5700,0.863914882,0.917488627,14060,,,,,0.239687056,3370,14060,,,0.221194879,3110,14060,,,0.012162162,171,14060,,,0.005263158,74,14060,,,0.007965861,112,14060,,,0.000711238,10,14060,,,0.06458037,908,14060,,,0.902133713,12684,14060,,,0.009059339,120,13246,0,0.018124313,0.490398293,6895,14060,,,0.638203356,9051,14182,, -19,143,19143,IA,Osceola County,2024,1,9344.106196,96,16058,6471.065175,13057.45183,0,,,,2,,,,2,,,,2,,,,2,8933.815523,5983.116467,12830.44933,,,,,2,,0.135,,,0.112,0.161,3.13639172,,,2.420643372,3.905972402,4.497974883,,,3.556314009,5.496100288,0.056399132,26,461,0.035340218,0.077458047,0,,,,,,,,,,,,,0.062992126,0.038596704,0.087387548,,,,,,,0.181,,,0.143,0.219,0.399,,,0.321,0.478,8.5,0.081812769,0.07,,,0.263,,,0.218,0.315,0.543281654,3364,6192,,,0.192871666,,,0.154992295,0.234306842,0.5,4,8,0.315552499,0.64971552,194.8,12,6159,,,11.80438449,14,1186,6.453566843,19.80575137,,,,,,,,,,,,,,,,,,,,,,0.070357067,333,4733,0.058442174,0.082271961,0.000324728,2,6159,,,3079.5,0.000165673,1,6036,,,6036,0.000165673,1,6036,,,6036,1308,,,,,,,,,1317,0.52,,,,,,,,,0.52,0.51,,,,,,,,,0.51,0.86168267,3769,4374,0.833227338,0.890138003,0.517709118,687,1327,0.426136853,0.609281384,0.017553483,64,3646,,,0.148,202,,0.102723404,0.193276596,,,,,,,,,,0.517241379,0.308450319,0.726032439,0.21641791,0.123244226,0.309591594,3.743713267,116568,31137,2.829470981,4.657955554,0.267575323,373,1394,0.146805079,0.388345567,21.10732262,13,6159,,,102.686409,31,30189,69.77043287,145.7551608,,,,,,,,,,,,,109.2031933,73.1350924,156.8340015,,,,6.2,,,,,0,,,,,0.080675422,215,2665,0.052647922,0.108702922,0.064783428,0.036222872,0.093343983,0.009380863,0,0.02384922,0.009005629,0,0.01904585,0.752553542,2284,3035,0.715255952,0.789851132,,,,,,,,,,,,,0.78623014,0.747796904,0.824663375,0.27,,3035,0.209397801,0.330602199,77.15849375,,,74.69849378,79.61849372,,,,,,,,,,,,,77.38002656,74.88329174,79.87676138,,,,433.9372669,96,16058,344.085265,540.0724912,,,,,,,,,,,,,440.7957782,345.5135253,554.2345124,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.1,,,0.085,0.116,0.154,,,0.132,0.177,0.085,,,0.072,0.1,,,,,,0.07,430,,,,0.081812769,528.6741108,6462,,,,,,,,,,,,,,,,,,,,,,,,,,0.312,,,0.297,0.326,0.08089345,268,3313,0.066595578,0.095191322,0.045698925,68,1488,0.030209563,0.061188286,0.000331345,2,6036,,,3018,0.875,56.875,65,,,,,,,,3.119723387,,,,,,,,,3.354172762,3.500796595,,,,,,,,,3.607549043,0.010678034,,,,,-24.58496,,,,,0.726911957,38466,52917,0.619402925,0.834420988,64993,,,55426.53192,74559.46809,,,,,,,,,,49315,48577.46809,50052.53192,69119,64101.6383,74136.3617,,,,,,0.504109589,368,730,,,,,,,,0.251457849,,64993,,,5.934718101,2,337,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,25.93911383,11,42407,12.94871216,46.41223976,,,,,,,,,,,,,26.60777479,12.75946225,48.93264519,,,,,,700,,,-888,10,0.750394589,3328,4435,,,0.694,,,,,1.521648965,,,,,0.758646902,1996,2631,0.719589813,0.797703992,0.08406027,212,2522,0.044600415,0.123520125,0.864310148,2274,2631,0.835136181,0.893484115,6036,,,,,0.228793903,1381,6036,,,0.233929755,1412,6036,,,0.008614977,52,6036,,,0.005964215,36,6036,,,0.008283632,50,6036,,,0.008449304,51,6036,,,0.093936382,567,6036,,,0.866302187,5229,6036,,,0.028229256,165,5845,0.010058382,0.04640013,0.487077535,2940,6036,,,1,6192,6192,, -19,145,19145,IA,Page County,2024,1,6995.720801,255,40728,5621.321111,8370.12049,0,,,,2,,,,2,,,,2,,,,2,7367.032274,5848.614412,8885.450135,,,,,2,,0.15,,,0.125,0.175,3.473988267,,,2.750716238,4.253599756,4.866848663,,,3.934303152,5.836918839,0.075987842,75,987,0.059456489,0.092519195,0,,,,,,,,,,,,,0.079607416,0.062087391,0.097127441,,,,,,,0.198,,,0.159,0.238,0.426,,,0.352,0.502,8.4,0.032964157,0.098,,,0.263,,,0.219,0.31,0.730458221,11111,15211,,,0.19441283,,,0.1562479,0.234773437,0.333333333,3,9,0.150331965,0.513162068,164.5,25,15197,,,24.72638833,61,2467,18.91372783,31.76208023,,,,,,,,,,,,,27.17664821,20.41593456,35.4596308,,,,,,,0.055197615,574,10399,0.0456657,0.06472953,0.00052642,8,15197,,,1899.625,0.000990557,15,15143,,,1009.533333,0.002179225,33,15143,,,458.8787879,2490,,,,,,,,,2469,0.51,,,,,,,,,0.5,0.49,,,,,,,,0.27,0.49,0.928514764,10534,11345,0.909446768,0.94758276,0.533603239,1977,3705,0.459676651,0.607529827,0.024412713,159,6513,,,0.186,468,,0.11093617,0.26106383,,,,,,,,,,0.679104478,0.486439977,0.871768978,0.147604661,0.092465757,0.202743566,4.210800981,106508,25294,3.567456743,4.854145218,0.193360088,530,2741,0.140737251,0.245982924,23.68888596,36,15197,,,100.1977587,76,75850,78.94443754,125.4124363,,,,,,,,,,,,,109.2736942,85.95069236,136.9755219,,,,7.2,,,,,0,,,,,0.113016368,725,6415,0.085681482,0.140351254,0.087774295,0.060766165,0.114782425,0.007014809,0.000477573,0.013552045,0.025720967,0.011500438,0.039941495,0.786326048,5325,6772,0.753048033,0.819604064,,,,,,,,,,,,,0.826126675,0.789923117,0.862330232,0.224,,6772,0.183735416,0.264264584,78.03317508,,,76.79584793,79.27050223,,,,,,,,,,,,,77.72789003,76.41584689,79.03993317,,,,401.5078693,255,40728,348.7986124,454.2171261,,,,,,,,,,,,,415.8467905,359.7115329,471.982048,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.108,,,0.093,0.124,0.159,,,0.138,0.181,0.095,,,0.081,0.111,52.4,7,13346,,,0.098,1500,,,,0.032964157,525.1849522,15932,,,,,,,,,,,,,,,,,,,,,,,,,,0.344,,,0.327,0.361,0.064125446,503,7844,0.052210553,0.07604034,0.028763541,77,2677,0.020423116,0.037103967,0.001716965,26,15143,,,582.4230769,0.930441177,158.175,170,,,,,,,,3.113148414,,,,,,,,,3.134150678,3.092476796,,,,,,,,,3.106996064,0.025626034,,,,,-2595.914725,,,,,0.840038468,41928,49912,0.763922919,0.916154016,60567,,,52699.59575,68434.40426,,,,36750,24713.57447,48786.42553,,,,25797,1149.851064,50444.14894,59954,54991.44681,64916.55319,,,,,,0.462343939,1148,2483,,,,,,,,0.276140473,,60567,,,7.978723404,6,752,,,,,,,,,,,,,,,,,,,,,,,,,,14.65388658,13,75850,7.57187703,25.59739082,17.13909031,,,,,,,,,,,,,16.098933,8.036529349,28.80543812,,,,,,,,,,,,,,,,,,,,,,,,,,,18.73220441,20,106768,11.4421171,28.93037043,,,,,,,,,,,,,20.64452198,12.61021035,31.88378982,,,,34.28571429,,1400,,,14,34,0.623436853,7528,12075,,,0.69,,,,,53.5600426,,,,,0.701156917,4303,6137,0.66931684,0.732996994,0.100801068,604,5992,0.068666055,0.132936081,0.838031612,5143,6137,0.808711153,0.86735207,15143,,,,,0.173479496,2627,15143,,,0.24017698,3637,15143,,,0.026018623,394,15143,,,0.007264082,110,15143,,,0.011424421,173,15143,,,0.00092452,14,15143,,,0.038235488,579,15143,,,0.903783927,13686,15143,,,0.005310345,77,14500,0,0.010935875,0.46569372,7052,15143,,,0.337584643,5135,15211,, -19,147,19147,IA,Palo Alto County,2024,1,8081.847524,147,23819,5916.168352,10247.5267,0,,,,2,,,,2,,,,2,,,,2,8016.07042,5786.641239,10245.4996,,,,,2,,0.124,,,0.103,0.147,2.960220575,,,2.308193296,3.715909494,4.523912399,,,3.601994433,5.533434616,0.06442953,48,745,0.046799272,0.082059788,0,,,,,,,,,,,,,0.061340942,0.043577537,0.079104347,,,,,,,0.167,,,0.132,0.207,0.387,,,0.31,0.473,8.5,0.071429822,0.076,,,0.237,,,0.192,0.287,0.7198755,6476,8996,,,0.195164661,,,0.157898859,0.238113285,0.333333333,3,9,0.150331965,0.513162068,168.4,15,8906,,,13.52813853,25,1848,8.75469797,19.97020114,,,,,,,,,,,,,12.03369434,7.350493132,18.58506492,,,,,,,0.053429497,363,6794,0.045089071,0.061769922,0.000449135,4,8906,,,2226.5,0.000228206,2,8764,,,4382,0.001141032,10,8764,,,876.4,3156,,,,,,,,,3162,0.51,,,,,,,,,0.51,0.43,,,,,,,,,0.43,0.929514691,5631,6058,0.912700436,0.946328947,0.66463724,1310,1971,0.57371041,0.75556407,0.025165563,114,4530,,,0.136,269,,0.084765957,0.187234043,,,,,,,,,,0.054545455,0,0.312355771,0.20747889,0.118186769,0.296771012,4.244546334,118495,27917,3.78133045,4.707762217,0.111163448,236,2123,0.050392803,0.171934093,19.08825511,17,8906,,,82.85189664,37,44658,58.33538127,114.2004258,,,,,,,,,,,,,86.93132425,60.88563078,120.3495955,,,,6.4,,,,,1,,,,,0.059299191,220,3710,0.037296818,0.081301565,0.048030221,0.025667435,0.070393007,0.00754717,0,0.01539186,0.002156334,0,0.006379138,0.777323336,3421,4401,0.745735756,0.808910915,,,,,,,,,,,,,0.788093365,0.756254678,0.819932051,0.203,,4401,0.15769206,0.24830794,76.53816477,,,74.79900712,78.27732242,,,,,,,,,,,,,76.42645579,74.6315202,78.22139138,,,,430.4493051,147,23819,355.0788979,505.8197123,,,,,,,,,,,,,433.6707819,355.7783028,511.5632611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.094,,,0.079,0.11,0.151,,,0.13,0.175,0.082,,,0.069,0.097,,,,,,0.076,680,,,,0.071429822,672.9403517,9421,,,,,,,,,,,,,,,,,,,,,,,,,,0.301,,,0.283,0.317,0.063682219,303,4758,0.051767326,0.075597113,0.030783582,66,2144,0.021251667,0.040315497,0.000912825,8,8764,,,1095.5,0.911330935,126.675,139,,,,,,,,3.248233188,,,,,,,,,3.262151906,3.317164426,,,,,,,,,3.365842562,0.05559108,,,,,-440.44835,,,,,0.767523069,42421,55270,0.672518557,0.86252758,65438,,,58173.48936,72702.51064,,,,,,,,,,,,,67708,62018.6383,73397.3617,,,,,,0.432325887,658,1522,,,79.18562874,,,,,0.262767811,,65438,,,8.802816901,5,568,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20.68811865,13,62838,11.01555188,35.37731296,,,,,,,,,,,,,22.19755827,11.8192649,37.95850067,,,,24,,1000,,,11,13,0.731808118,4958,6775,,,0.635,,,,,20.30368545,,,,,0.761210454,2767,3635,0.727616094,0.794804814,0.062978723,222,3525,0.037510527,0.08844692,0.835488308,3037,3635,0.812731671,0.858244945,8764,,,,,0.228206299,2000,8764,,,0.23334094,2045,8764,,,0.013121862,115,8764,,,0.006047467,53,8764,,,0.010839799,95,8764,,,0.001483341,13,8764,,,0.036855317,323,8764,,,0.920013692,8063,8764,,,0.005375702,45,8371,0,0.014039421,0.496462802,4351,8764,,,1,8996,8996,, -19,149,19149,IA,Plymouth County,2024,1,5640.736275,273,69772,4561.49954,6719.973011,0,,,,2,,,,2,,,,2,,,,2,5983.562861,4767.297735,7199.827988,,,,,2,,0.118,,,0.098,0.141,2.788044924,,,2.135640863,3.480135294,4.212012547,,,3.33703393,5.090209961,0.067966017,136,2001,0.056938079,0.078993955,0,,,,,,,,,,,,,0.07117853,0.059005707,0.083351352,,,,,,,0.16,,,0.125,0.199,0.365,,,0.301,0.428,9.3,0.031826979,0.057,,,0.224,,,0.183,0.269,0.754105378,19379,25698,,,0.207165288,,,0.170252243,0.246040281,0.181818182,4,22,0.079048597,0.307478905,288.5,74,25650,,,10.20049244,58,5686,7.745661569,13.18650189,,,,,,,,,,31.35313531,18.87663559,48.96180457,7.52665691,5.271577967,10.42006575,,,,,,,0.057634658,1192,20682,0.049294233,0.065975084,0.000545809,14,25650,,,1832.142857,0.000506211,13,25681,,,1975.461539,0.00167439,43,25681,,,597.2325581,1831,,,,,,,,,1839,0.55,,,,,,,,,0.55,0.55,,,,,,,,,0.56,0.943185759,16319,17302,0.929535956,0.956835562,0.670803171,3892,5802,0.605764069,0.735842274,0.020876687,311,14897,,,0.076,475,,0.045021277,0.106978723,,,,,,,,,,0.040609137,0,0.112256074,0.06418534,0.030278192,0.098092487,3.499067213,135043,38594,3.042239381,3.955895044,0.11701793,744,6358,0.071816792,0.162219068,16.37426901,42,25650,,,66.47620706,84,126361,53.0240262,82.3020677,,,,,,,,,,,,,71.69712337,57.02284993,88.99503466,,,,6.6,,,,,0,,,,,0.074757282,770,10300,0.05749165,0.092022913,0.055885503,0.039710758,0.072060248,0.010582524,0.003733107,0.017431941,0.010679612,0.002626987,0.018732236,0.798973291,10739,13441,0.77613775,0.821808832,,,,,,,,,,0.651578947,0.432666339,0.870491555,0.797056843,0.751639424,0.842474263,0.262,,13441,0.225006222,0.298993778,79.78035861,,,78.75575709,80.80496014,,,,,,,,,,,,,79.52042582,78.42262936,80.61822228,,,,290.3592334,273,69772,254.0080039,326.7104629,,,,,,,,,,,,,296.4539379,257.8469957,335.06088,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.091,,,0.077,0.107,0.147,,,0.126,0.171,0.08,,,0.068,0.094,47.1,10,21220,,,0.057,1450,,,,0.031826979,795.2288906,24986,,,,,,,,,,,,,,,,,,,,,,,,,,0.29,,,0.275,0.305,0.06740085,967,14347,0.055485957,0.079315744,0.036653147,244,6657,0.024738253,0.048568041,0.000506211,13,25681,,,1975.461539,0.964765101,287.5,298,,,,,,,,3.335068355,,,,,,,,3.003958238,3.414710589,3.337717888,,,,,,,,2.941054654,3.415094125,0.076529219,,,,,2648.7134,,,,,0.797235939,48110,60346,0.730849675,0.863622204,79431,,,70528.19149,88333.80851,58750,682.7659575,116817.234,,,,61341,59861.17021,62820.82979,71975,64716.44681,79233.55319,81065,77818.19149,84311.80851,,,,,,0.300046773,1283,4276,,,61.22200786,,,,,0.220682101,,79431,,,10.90442591,17,1559,,,,,,,,,,,,,,,,,,,,,,,,,,20.58333261,24,126361,13.04806722,30.88510524,18.99320202,,,,,,,,,,,,,21.76354997,13.47198045,33.26789797,,,,7.913834174,10,126361,3.794991094,14.55382281,,,,,,,,,,,,,,,,,,,10.77335692,19,176361,6.48626463,16.82393135,,,,,,,,,,,,,11.19479566,6.6347454,17.69260352,,,,25.33333333,,3000,,,16,60,0.774031642,14188,18330,,,0.749,,,,,42.51583969,,,,,0.753279812,7694,10214,0.728884139,0.777675485,0.055493896,550,9911,0.038172647,0.072815145,0.882710006,9016,10214,0.856764149,0.908655863,25681,,,,,0.245629064,6308,25681,,,0.198084187,5087,25681,,,0.022000701,565,25681,,,0.010085277,259,25681,,,0.006775437,174,25681,,,0.006113469,157,25681,,,0.061991356,1592,25681,,,0.887426502,22790,25681,,,0.018437953,445,24135,0.009897956,0.02697795,0.492192672,12640,25681,,,0.605494591,15560,25698,, -19,151,19151,IA,Pocahontas County,2024,1,7598.0158,121,18055,5244.099914,9951.931686,0,,,,2,,,,2,,,,2,,,,2,8192.980117,5549.935429,10836.02481,,,,,2,,0.144,,,0.12,0.17,3.393200436,,,2.665768313,4.191991125,4.855038693,,,3.915255827,5.869142636,0.060150376,32,532,0.039945852,0.0803549,0,,,,,,,,,,,,,0.061833689,0.040035413,0.083631965,,,,,,,0.193,,,0.154,0.235,0.395,,,0.32,0.474,8.4,0.081161903,0.076,,,0.27,,,0.22,0.324,0.729725911,5165,7078,,,0.179541166,,,0.145059484,0.217880686,0.3,3,10,0.129013968,0.476732101,325.1,23,7074,,,11.11111111,16,1440,6.350960037,18.04374833,,,,,,,,,,,,,11.92368839,6.67359788,19.66631071,,,,,,,0.083163171,448,5387,0.071248277,0.095078064,0.000282726,2,7074,,,3537,0.000567135,4,7053,,,1763.25,,0,7053,,,,1631,,,,,,,,,1633,0.49,,,,,,,,,0.49,0.35,,,,,,,,,0.35,0.915285079,4527,4946,0.892780414,0.937789743,0.628673835,877,1395,0.536118908,0.721228763,0.021311096,92,4317,,,0.151,239,,0.091425532,0.210574468,,,,,,,,,,0.037037037,0,0.236443308,0.088256747,0.044924503,0.131588991,3.86825195,112570,29101,3.54100983,4.195494071,0.126751592,199,1570,0.064718758,0.188784427,22.61803789,16,7074,,,73.77678097,25,33886,47.74444268,108.9090825,,,,,,,,,,,,,79.99488033,51.76846873,118.0882238,,,,6.8,,,,,1,,,,,0.0704,220,3125,0.046315114,0.094484886,0.06493089,0.03692765,0.092934131,0.00608,0,0.018306538,0.00128,0,0.007247554,0.761803229,2501,3283,0.716651903,0.806954554,,,,,,,,,,,,,0.774653031,0.727970732,0.821335331,0.278,,3283,0.221822824,0.334177176,77.28304519,,,75.31267588,79.2534145,,,,,,,,,,,,,76.77665864,74.648303,78.90501428,,,,428.5372809,121,18055,343.225903,513.8486587,,,,,,,,,,,,,447.5700672,355.7850356,539.3550988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.105,,,0.09,0.122,0.161,,,0.138,0.185,0.089,,,0.076,0.103,84.2,5,5935,,,0.076,540,,,,0.081161903,593.293512,7310,,,,,,,,,,,,,,,,,,,,,,,,,,0.32,,,0.303,0.335,0.095112285,360,3785,0.079622924,0.110601647,0.057362507,97,1691,0.039490167,0.075234848,0.000425351,3,7053,,,2351,0.925,57.35,62,,,,,,,,3.179273034,,,,,,,,,3.138305181,3.089308358,,,,,,,,,3.099495547,0.033163573,,,,,-8261.6985,,,,,0.852923077,44352,52000,0.717115482,0.988730672,61927,,,53543.68085,70310.31915,,,,,,,,,,39297,31520.14894,47073.85106,65114,59239.95745,70988.04255,,,,,,0.490909091,405,825,,,,,,,,0.263148546,,61927,,,9.433962264,4,424,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,700,,,-888,16,0.744498539,3823,5135,,,0.651,,,,,5.651922435,,,,,0.784301006,2418,3083,0.74525602,0.823345991,0.076374745,225,2946,0.047210358,0.105539133,0.836847227,2580,3083,0.805588663,0.868105791,7053,,,,,0.228697008,1613,7053,,,0.244293209,1723,7053,,,0.010633773,75,7053,,,0.007372749,52,7053,,,0.005245995,37,7053,,,0.009783071,69,7053,,,0.052034595,367,7053,,,0.905713881,6388,7053,,,0.011722272,78,6654,0.001322943,0.022121601,0.500212676,3528,7053,,,1,7078,7078,, -19,153,19153,IA,Polk County,2024,1,7467.809334,6121,1402998,7200.929014,7734.689654,0,,,,2,5314.254004,4321.082272,6307.425736,,14345.39651,12989.70499,15701.08803,,5413.902504,4644.797456,6183.007552,,7114.730933,6818.010434,7411.451433,,,,,2,,0.123,,,0.104,0.146,2.95567098,,,2.415805863,3.546763605,4.798420891,,,4.166422274,5.493249844,0.073063704,3380,46261,0.070692197,0.07543521,0,,,,0.080041943,0.070098428,0.089985459,0.116563264,0.107939246,0.125187282,0.070577015,0.064248022,0.076906007,0.06427147,0.061523212,0.067019728,,,,0.106666667,0.087995023,0.12533831,0.154,,,0.122,0.191,0.357,,,0.323,0.395,8.8,0.048296917,0.074,,,0.237,,,0.203,0.275,0.897979492,442166,492401,,,0.214276759,,,0.188763627,0.242440292,0.270588235,46,170,0.231613448,0.310571345,668.8,3323,496844,,,17.20161178,1857,107955,16.41922904,17.98399452,,,,8.414453061,6.265112991,11.0634518,37.16796283,33.3704354,40.96549027,39.89082511,36.61597322,43.165677,10.1784661,9.446086136,10.91084606,,,,24.82578397,20.26849447,29.38307347,0.054123043,22942,423886,0.048165596,0.060080489,0.000931882,463,496844,,,1073.097192,0.00079427,398,501089,,,1259.017588,0.003240941,1624,501089,,,308.5523399,2038,,,,,,513,2975,2066,2040,0.54,,,,,,0.45,0.37,0.34,0.54,0.62,,,,,0.62,0.55,0.41,0.4,0.63,0.926891337,304494,328511,0.922127889,0.931654786,0.716782005,103370,144214,0.69512412,0.738439889,0.026865135,7472,278130,,,0.12,14197,,0.093787234,0.146212766,0.098412698,0,0.277606271,0.192968244,0.13650942,0.249427067,0.463665087,0.397144501,0.530185672,0.187291166,0.155061537,0.219520795,0.064520816,0.052443181,0.076598451,3.996478777,146411,36635,3.856220374,4.136737181,0.234685231,28250,120374,0.21464201,0.254728452,12.07622513,600,496844,,,74.03114695,1814,2450320,70.62430562,77.43798829,,,,33.37566344,23.95095232,45.27785612,101.3793383,86.35876535,116.3999113,40.76316135,32.6496212,50.28120892,79.24974779,75.22707102,83.27242457,,,,7.6,,,,,0,,,,,0.12617397,24115,191125,0.11894029,0.13340765,0.099370705,0.092860502,0.105880908,0.025820798,0.021958368,0.029683228,0.008136037,0.006204575,0.010067499,0.760116461,195543,257254,0.754446934,0.765785988,0.724789916,0.604560611,0.845019221,0.690779721,0.645693354,0.735866089,0.739728707,0.705188378,0.774269037,0.712391877,0.679424081,0.745359672,0.799279391,0.792730692,0.80582809,0.18,,257254,0.169612837,0.190387163,77.54806311,,,77.29536028,77.80076594,,,,79.22168353,77.88580908,80.55755797,69.54432175,68.53044076,70.55820274,79.78103837,78.20402244,81.35805429,77.9468523,77.67160251,78.22210209,,,,378.8408731,6121,1402998,369.2055184,388.4762279,,,,272.6259814,227.5661572,317.6858055,707.0965641,647.8193226,766.3738057,268.9704977,229.0094173,308.9315782,369.9472536,359.5052965,380.3892106,,,,53.04181651,282,531656,46.85097187,59.23266116,,,,50.23947483,28.11865269,82.86237355,166.0243107,132.4274923,205.5493938,41.28599206,28.05182854,58.60217018,39.90308431,33.26939485,46.53677376,,,,5.910720382,277,46864,5.214644476,6.606796289,,,,,,,11.42639497,8.719543125,14.70803531,5.663430421,3.944786797,7.876460739,4.8791377,4.106006088,5.652269312,,,,,,,0.089,,,0.076,0.103,0.147,,,0.128,0.166,0.083,,,0.072,0.096,216.6,889,410371,,,0.074,36190,,,,0.048296917,20798.58437,430640,,,24.2356979,359,1481286,21.72863992,26.74275588,,,,,,,30.05428555,20.55710907,42.42768383,8.381080093,4.183804985,14.99606738,27.13723397,24.10157862,30.17288931,,,,0.294,,,0.281,0.309,0.065612896,19904,303355,0.05846396,0.072761832,0.026541232,3346,126068,0.020583785,0.032498679,0.001722249,863,501089,,,580.636153,0.874307109,4845.41,5542,,,0.069001109,1805,26159,0.051689314,0.086312904,2.972191656,,,,,,2.768826422,2.207760361,2.463569775,3.270794564,2.975039078,,,,,,2.80520826,2.037014115,2.381450842,3.333299341,0.121709732,,,,,1759.259,,,,,0.812490459,53223,65506,0.778361318,0.8466196,77369,,,73727.80851,81010.19149,54643,34192.2766,75093.7234,89807,82720.02128,96893.97872,44093,39621.34043,48564.65957,59759,54244.78723,65273.21277,83180,81337.95745,85022.04255,,,,,,0.462061098,36452,78890,,,51.03129385,,,,,0.317801704,,77369,,,7.6708093,258,33634,,,4.127266016,140,3392076,3.443583435,4.810948598,,,,,,,27.31167745,21.03331963,34.87640237,3.784516511,1.889217007,6.771545429,2.289308282,1.746983396,2.946793553,,,,15.4402684,379,2450320,13.86483964,17.01569716,15.46736753,,,,11.43745219,6.089961591,19.55839158,9.163295883,5.33795753,14.67132437,7.03344557,3.845250142,11.80092654,16.94370428,15.07104015,18.81636842,,,,9.917072056,243,2450320,8.670158337,11.16398578,,,,,,,27.22759372,20.00581174,36.20692759,,,,9.514221901,8.120414289,10.90802951,,,,7.723883545,262,3392076,6.788604632,8.659162458,,,,6.683923342,3.33659045,11.95938515,12.37560384,8.288136122,17.77343147,12.3856904,8.674785286,17.14701625,6.982390259,5.970730104,7.994050414,,,,21.11317254,,53900,,,270,868,0.753509027,258755,343400,,,0.708,,,,,311.8271012,,,,,0.670529061,133444,199013,0.662578842,0.67847928,0.108749668,21271,195596,0.101305629,0.116193707,0.894881239,178093,199013,0.889825811,0.899936667,501089,,,,,0.239272864,119897,501089,,,0.141976775,71143,501089,,,0.07576698,37966,501089,,,0.003759811,1884,501089,,,0.052226251,26170,501089,,,0.00067054,336,501089,,,0.093783739,46994,501089,,,0.752315457,376977,501089,,,0.027978482,12883,460461,,,0.501603508,251348,501089,,,0.044733865,22027,492401,, -19,155,19155,IA,Pottawattamie County,2024,1,8839.952028,1518,259235,8137.55561,9542.348446,0,,,,2,,,,2,20844.94321,13355.74844,31015.62319,1,3511.990962,2145.215318,5423.985201,1,9101.397964,8331.803739,9870.992189,,,,,2,,0.139,,,0.116,0.164,3.2967096,,,2.594515647,4.081638618,4.813784565,,,3.9753011,5.702360632,0.076739878,580,7558,0.070738856,0.0827409,0,,,,,,,0.187878788,0.128276435,0.24748114,0.07738815,0.059176468,0.095599832,0.072683706,0.066252367,0.079115045,,,,0.110497238,0.064823543,0.156170932,0.176,,,0.14,0.213,0.383,,,0.328,0.441,8.1,0.093213368,0.086,,,0.247,,,0.204,0.29,0.820886758,76890,93667,,,0.205779883,,,0.172881164,0.241771682,0.166666667,10,60,0.104734091,0.238118674,521.9,487,93304,,,19.9679003,423,21184,18.06499013,21.87081047,,,,,,,38.39122486,23.76477328,58.68506533,29.04564315,22.92236735,36.30207035,18.02806976,16.01139384,20.04474569,,,,16.83501684,8.073044943,30.96019536,0.06497416,4878,75076,0.056633734,0.073314585,0.000450142,42,93304,,,2221.52381,0.0005903,55,93173,,,1694.054546,0.002339734,218,93173,,,427.3990826,2660,,,,,,,1932,,2608,0.5,,,,,,0.33,,0.38,0.5,0.58,,,,,,0.59,0.39,0.34,0.58,0.90631531,57677,63639,0.896255839,0.91637478,0.637616894,14523,22777,0.600529999,0.674703789,0.027501926,1321,48033,,,0.152,3177,,0.105531915,0.198468085,,,,0.039823009,0,0.331369498,0.090361446,0,0.207589434,0.281271596,0.199134037,0.363409156,0.144937918,0.113273956,0.17660188,4.295285695,127192,29612,3.994493309,4.596078082,0.265332592,5728,21588,0.223777804,0.30688738,10.9320072,102,93304,,,72.84304253,340,466757,65.10012399,80.58596106,,,,,,,,,,26.29157355,12.60783146,48.35113985,77.78767902,69.21091733,86.36444072,,,,7.8,,,,,0,,,,,0.117559322,4335,36875,0.105400956,0.129717688,0.092633315,0.081467726,0.103798904,0.017627119,0.012188705,0.023065532,0.014237288,0.009372734,0.019101842,0.81632291,36808,45090,0.804687722,0.827958097,,,,0.658677686,0.519595592,0.79775978,0.728950404,0.569297017,0.888603791,0.799593599,0.75988471,0.839302489,0.790634284,0.769255015,0.812013553,0.249,,45090,0.228535498,0.269464502,76.00347582,,,75.43152361,76.57542802,,,,,,,,,,103.1368051,81.96474219,124.3088681,75.63369939,75.02678241,76.24061637,,,,436.9531771,1518,259235,413.7951057,460.1112486,,,,,,,815.6713156,550.3300114,1164.421521,158.0608779,102.2886662,233.3290361,452.0876804,427.1502749,477.025086,,,,59.54397528,58,97407,45.21423684,76.97439583,,,,,,,,,,,,,58.18915354,42.44356789,77.86166563,,,,7.434459371,57,7667,5.630786926,9.632204435,,,,,,,,,,,,,6.698862751,4.848000189,9.023324164,,,,,,,0.102,,,0.086,0.118,0.158,,,0.136,0.181,0.09,,,0.076,0.105,152.4,119,78101,,,0.086,8050,,,,0.093213368,8683.570913,93158,,,13.22193555,37,279838,9.30946282,18.22469648,,,,,,,,,,,,,14.8402203,10.39390785,20.54512024,,,,0.331,,,0.315,0.345,0.079141666,4234,53499,0.067226773,0.09105656,0.031318924,710,22670,0.022978498,0.039659349,0.001094738,102,93173,,,913.4607843,0.898644366,1020.86,1136,,,0.040670307,216,5311,0.020589086,0.060751528,2.87952155,,,,,,,2.327447728,2.454498444,2.966744366,2.845855837,,,,,,,2.565963421,2.25408652,2.942653187,0.050273924,,,,,2099.952743,,,,,0.813354559,45983,56535,0.777115814,0.849593304,68712,,,62815.31915,74608.68085,72208,67090.55319,77325.44681,,,,34116,22342.89362,45889.10638,52469,23700.48936,81237.51064,69703,67418.91489,71987.08511,,,,,,0.521649617,8108,15543,,,54.60889255,,,,,0.299481895,,68712,,,7.710760795,45,5836,,,3.82257152,25,654010,2.473766739,5.642869635,,,,,,,,,,,,,3.676084445,2.275554211,5.619285568,,,,19.93825142,94,466757,15.96972204,24.59375946,20.13895882,,,,,,,,,,,,,21.8625214,17.38791207,27.1371536,,,,12.21192184,57,466757,9.249190342,15.82196119,,,,,,,,,,,,,13.29283123,9.985983934,17.34426129,,,,15.44318894,101,654010,12.43134567,18.45503222,,,,,,,,,,,,,15.05444106,12.04160964,18.59211224,,,,52.67326733,,10100,,,84,448,0.656769562,45744,69650,,,0.713,,,,,207.4456974,,,,,0.696087401,25868,37162,0.680787771,0.711387032,0.102401601,3684,35976,0.089050623,0.115752579,0.83717238,31111,37162,0.821434735,0.852910026,93173,,,,,0.2274264,21190,93173,,,0.18903545,17613,93173,,,0.018792998,1751,93173,,,0.008994022,838,93173,,,0.010389276,968,93173,,,0.001212798,113,93173,,,0.092118962,8583,93173,,,0.855247765,79686,93173,,,0.013750028,1213,88218,0.009824612,0.017675444,0.502828073,46850,93173,,,0.269251711,25220,93667,, -19,157,19157,IA,Poweshiek County,2024,1,6299.618621,263,50113,4953.310144,7645.927099,0,,,,2,,,,2,,,,2,,,,2,6452.763707,5021.134703,7884.39271,,,,,2,,0.13,,,0.108,0.154,3.033965673,,,2.356019897,3.824094651,4.656112125,,,3.736068154,5.66190583,0.073394495,88,1199,0.05863316,0.088155831,0,,,,,,,,,,,,,0.071556351,0.056447305,0.086665396,,,,,,,0.171,,,0.133,0.212,0.377,,,0.301,0.454,8.9,0.012758051,0.087,,,0.247,,,0.201,0.294,0.690226128,12881,18662,,,0.193206736,,,0.157495808,0.232684927,0.142857143,2,14,0.031645086,0.307569357,242.1,45,18586,,,4.571219601,25,5469,2.958252304,6.748021887,,,,,,,,,,,,,5.322841935,3.374225188,7.986876393,,,,,,,0.051870812,689,13283,0.043530387,0.060211238,0.000860863,16,18586,,,1161.625,0.000595657,11,18467,,,1678.818182,0.001624519,30,18467,,,615.5666667,1723,,,,,,,,,1738,0.49,,,,,,,,,0.49,0.6,,,,,,,,,0.6,0.948848684,11538,12160,0.931781979,0.96591539,0.631396589,2369,3752,0.544331425,0.718461752,0.027393282,283,10331,,,0.117,415,,0.072914894,0.161085106,,,,,,,,,,0.041420118,0,0.099287954,0.076312576,0.039851418,0.112773734,4.965370571,123742,24921,4.06362583,5.867115312,0.12697118,467,3678,0.084281255,0.169661105,15.60314215,29,18586,,,61.63228234,57,92484,46.67968877,79.85177047,,,,,,,,,,,,,67.47478574,51.10474379,87.42141129,,,,7.9,,,,,0,,,,,0.130351438,1020,7825,0.099912513,0.160790363,0.110525639,0.080674415,0.140376864,0.008945687,0.000854485,0.017036889,0.01341853,0.004140214,0.022696846,0.708166444,6365,8988,0.669701105,0.746631783,,,,,,,,,,0.633867277,0.406623635,0.861110918,0.736379236,0.703591947,0.769166526,0.237,,8988,0.198909593,0.275090407,78.46953652,,,77.24524727,79.69382577,,,,,,,,,,,,,78.25852714,76.9933513,79.52370299,,,,358.2571407,263,50113,311.7769182,404.7373631,,,,,,,,,,,,,363.1914477,315.1253188,411.2575767,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.096,,,0.082,0.113,0.152,,,0.129,0.177,0.084,,,0.071,0.098,112,18,16076,,,0.087,1610,,,,0.012758051,241.3057723,18914,,,,,,,,,,,,,,,,,,,,,,,,,,0.324,,,0.307,0.341,0.061023622,589,9652,0.050300218,0.071747026,0.029042386,111,3822,0.019510471,0.038574301,0.000920561,17,18467,,,1086.294118,0.934615385,170.1,182,,,,,,,,3.500908996,,,,,,,,,3.536509172,3.327999805,,,,,,,,,3.374476828,0.032947656,,,,,1224.114067,,,,,0.820094937,46647,56880,0.735029191,0.905160683,69566,,,62013.14894,77118.85106,,,,,,,,,,59000,2977.361702,115022.6383,61402,57616.6383,65187.3617,,,,,,0.331688805,874,2635,,,60.66077617,,,,,0.275220654,,69566,,,6.615214995,6,907,,,,,,,,,,,,,,,,,,,,,,,,,,11.13304829,11,92484,5.090738604,21.13399355,11.89394922,,,,,,,,,,,,,11.99789826,5.486203079,22.77574817,,,,,,,,,,,,,,,,,,,,,,,,,,,9.261617542,12,129567,4.785612933,16.17818198,,,,,,,,,,,,,10.13188335,5.235291975,17.69836121,,,,22.77777778,,1800,,,6,35,0.702216067,10140,14440,,,0.651,,,,,35.34947704,,,,,0.70506378,5472,7761,0.672489792,0.737637769,0.124239217,939,7558,0.093150944,0.155327489,0.821672465,6377,7761,0.781148479,0.862196451,18467,,,,,0.19413007,3585,18467,,,0.216548438,3999,18467,,,0.015324633,283,18467,,,0.004061299,75,18467,,,0.01927763,356,18467,,,0.001191314,22,18467,,,0.038663562,714,18467,,,0.908593708,16779,18467,,,0.006026811,107,17754,0.000395085,0.011658537,0.507337413,9369,18467,,,0.491694352,9176,18662,, -19,159,19159,IA,Ringgold County,2024,1,8042.412012,85,12627,5464.42877,11415.56189,0,,,,2,,,,2,,,,2,,,,2,8389.120927,5660.104661,11975.99176,,,,,2,,0.143,,,0.12,0.171,3.360619629,,,2.60430684,4.18476304,4.915909939,,,3.856077772,6.019461337,0.056022409,20,357,0.032167174,0.079877644,1,,,,,,,,,,,,,0.057142857,0.032824963,0.081460752,,,,,,,0.191,,,0.153,0.235,0.388,,,0.308,0.472,9,0.031907016,0.075,,,0.272,,,0.223,0.328,0.521767103,2433,4663,,,0.178473655,,,0.144190494,0.218327906,0.25,1,4,0.023230216,0.544021398,366.5,17,4639,,,16.12903226,18,1116,9.559086721,25.49082461,,,,,,,,,,,,,15.29636711,8.743195462,24.84034187,,,,,,,0.063974979,225,3517,0.053251574,0.074698383,0.001077819,5,4639,,,927.8,,0,4670,,,,,0,4670,,,,830,,,,,,,,,835,0.55,,,,,,,,,0.56,0.3,,,,,,,,,0.3,0.939931528,3020,3213,0.917403474,0.962459583,0.65945946,610,925,0.546165979,0.77275294,0.022717711,54,2377,,,0.188,202,,0.115319149,0.260680851,,,,,,,,,,0.096385542,0,0.347594412,0.154302671,0.097757684,0.210847657,4.007039644,118965,29689,3.09620143,4.917877859,0.218165628,245,1123,0.120680742,0.315650514,17.24509593,8,4639,,,73.96449704,18,24336,43.83604857,116.8957933,,,,,,,,,,,,,73.52305164,42.82988699,117.717528,,,,7.1,,,,,0,,,,,0.054200542,100,1845,0.033962382,0.074438703,0.039652363,0.017040135,0.062264591,0.01300813,0,0.027606348,0.002168022,0,0.012254487,0.743499339,1687,2269,0.707385269,0.779613409,,,,,,,,,,,,,0.712181303,0.664364561,0.759998045,0.275,,2269,0.213989229,0.336010771,75.56362978,,,73.3770467,77.75021287,,,,,,,,,,,,,75.25141914,72.96570719,77.53713109,,,,438.4235071,85,12627,342.4123964,553.0115984,,,,,,,,,,,,,451.777998,351.5102488,571.7539709,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.104,,,0.089,0.121,0.163,,,0.14,0.188,0.089,,,0.075,0.104,,,,,,0.075,350,,,,0.031907016,163.7149005,5131,,,,,,,,,,,,,,,,,,,,,,,,,,0.316,,,0.299,0.332,0.074327039,185,2489,0.061220656,0.087433422,0.039558418,43,1087,0.025260545,0.05385629,0.001498929,7,4670,,,667.1428571,,,,,,,,,,,3.058354504,,,,,,,,,3.100061544,2.947831309,,,,,,,,,3.037303481,,,,,,565.25255,,,,,0.77917452,45062,57833,0.630007648,0.928341391,60061,,,52023.21277,68098.78723,,,,,,,,,,28922,28201.14894,29642.85106,67216,58536,75896,,,,,,0.390625,300,768,,,,,,,,0.278550141,,60061,,,10.41666667,3,288,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,600,,,-888,6,0.735501355,2714,3690,,,0.567,,,,,0.067030643,,,,,0.778199566,1435,1844,0.736599467,0.819799665,0.061756374,109,1765,0.032367307,0.091145441,0.835140998,1540,1844,0.817218276,0.85306372,4670,,,,,0.233618844,1091,4670,,,0.229122056,1070,4670,,,0.007708779,36,4670,,,0.002997859,14,4670,,,0.008779443,41,4670,,,0.000856531,4,4670,,,0.031049251,145,4670,,,0.939828694,4389,4670,,,0.001816118,8,4405,0,0.011842336,0.499785867,2334,4670,,,1,4663,4663,, -19,161,19161,IA,Sac County,2024,1,6665.667784,155,25883,4811.998609,8519.336959,0,,,,2,,,,2,,,,2,,,,2,7037.562871,5025.41117,9049.714571,,,,,2,,0.131,,,0.109,0.154,3.137353305,,,2.436694151,3.929828708,4.426715543,,,3.528929083,5.43499011,0.058355438,44,754,0.041623179,0.075087696,0,,,,,,,,,,,,,0.058309038,0.040773619,0.075844457,,,,,,,0.175,,,0.136,0.213,0.389,,,0.315,0.469,9.2,0.037578332,0.063,,,0.247,,,0.201,0.298,0.615345425,6039,9814,,,0.190593596,,,0.154610901,0.234335821,0.1,1,10,0.005279615,0.302965499,256.4,25,9752,,,11.6156283,22,1894,7.279452414,17.58620084,,,,,,,,,,,,,10.40462428,6.166439758,16.44379206,,,,,,,0.062719654,464,7398,0.053187739,0.072251569,0.000615258,6,9752,,,1625.333333,0.000310142,3,9673,,,3224.333333,0.000723664,7,9673,,,1381.857143,1157,,,,,,,,,1161,0.5,,,,,,,,,0.5,0.38,,,,,,,,,0.38,0.936540133,6464,6902,0.92060054,0.952479727,0.709854928,1419,1999,0.626533185,0.79317667,0.024150943,128,5300,,,0.129,276,,0.077765957,0.180234043,,,,,,,,,,,,,0.123754588,0.063800506,0.183708671,4.392035583,126394,28778,3.799056509,4.985014656,0.18715342,405,2164,0.121544415,0.252762425,19.48318294,19,9752,,,74.05578869,36,48612,51.86776396,102.5244271,,,,,,,,,,,,,78.67132867,55.10043142,108.9142799,,,,6.9,,,,,1,,,,,0.087456847,380,4345,0.064316873,0.110596821,0.052607184,0.034046277,0.071168092,0.025316456,0.010092463,0.040540449,0.01150748,0.003835362,0.019179598,0.857230769,4179,4875,0.841866811,0.872594728,,,,,,,,,,,,,0.823090692,0.786792362,0.859389022,0.231,,4875,0.189984374,0.272015626,78.35567875,,,76.7127859,79.99857159,,,,,,,,,,,,,78.02498511,76.30498977,79.74498044,,,,367.684159,155,25883,304.6662352,430.7020827,,,,,,,,,,,,,379.3032578,313.2303168,445.3761989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.099,,,0.084,0.114,0.157,,,0.134,0.181,0.084,,,0.071,0.099,,,,,,0.063,610,,,,0.037578332,388.9357359,10350,,,,,,,,,,,,,,,,,,,,,,,,,,0.317,,,0.3,0.333,0.072480398,379,5229,0.059374015,0.085586781,0.040600177,92,2266,0.027493794,0.05370656,0.000827044,8,9673,,,1209.125,,,,,,,,,,,2.993866849,,,,,,,,,2.987694894,2.776350446,,,,,,,,,2.761100427,0.113778145,,,,,1806.3905,,,,,0.714995397,41163,57571,0.651851184,0.77813961,72499,,,64977.12766,80020.87234,,,,,,,43750,15353.23404,72146.76596,53846,43578.93617,64113.06383,70186,65657.14894,74714.85106,,,,,,0.431145431,670,1554,,,,,,,,0.232348032,,72499,,,10.56338028,6,568,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.51594681,12,68509,9.050745316,30.59683406,,,,,,,,,,,,,15.44282295,7.40543386,28.39990123,,,,22,,1000,,,7,15,0.742454728,5535,7455,,,0.656,,,,,2.593301172,,,,,0.808313539,3403,4210,0.779674412,0.836952667,0.071306887,293,4109,0.045512449,0.097101326,0.834679335,3514,4210,0.809990146,0.859368524,9673,,,,,0.223612116,2163,9673,,,0.242323995,2344,9673,,,0.004858886,47,9673,,,0.002274372,22,9673,,,0.005996072,58,9673,,,0.006202833,60,9673,,,0.042799545,414,9673,,,0.931045177,9006,9673,,,0.002174386,20,9198,0,0.00991962,0.500982115,4846,9673,,,1,9814,9814,, -19,163,19163,IA,Scott County,2024,1,6976.01683,2333,484400,6547.811049,7404.222612,0,,,,2,1808.081458,988.4949581,3033.653457,1,15252.1478,12994.08922,17510.20637,,5298.722327,3991.722808,6897.015439,,6481.574082,6025.107891,6938.040274,,,,,2,,0.127,,,0.106,0.151,2.80731952,,,2.206673863,3.480735276,4.247790512,,,3.553512286,5.052987266,0.080019602,1143,14284,0.075570026,0.084469178,0,,,,0.064876958,0.042042961,0.087710954,0.150831991,0.134580501,0.167083482,0.078025478,0.063192138,0.092858817,0.066306483,0.061472976,0.07113999,,,,0.10483871,0.077878286,0.131799133,0.166,,,0.131,0.204,0.373,,,0.319,0.426,8.8,0.034530755,0.082,,,0.232,,,0.193,0.276,0.903726477,157853,174669,,,0.200468433,,,0.167209188,0.235407282,0.149253731,10,67,0.092353851,0.216134304,614.3,1070,174170,,,19.58438451,753,38449,18.185543,20.98322602,,,,,,,61.30268199,53.27460484,69.33075914,32.71028037,26.99871614,38.42184461,11.96128892,10.67073224,13.2518456,,,,28.45709204,21.91542843,36.33907124,0.051720039,7397,143020,0.044571103,0.058868975,0.000999024,174,174170,,,1000.977012,0.000833698,145,173924,,,1199.475862,0.001816886,316,173924,,,550.3924051,2609,,,,,,,2269,1342,2584,0.55,,,,,,0.32,0.41,0.44,0.56,0.6,,,,,,0.54,0.39,0.41,0.61,0.939951156,111231,118337,0.933449405,0.946452908,0.73119513,33148,45334,0.698763484,0.763626775,0.03194059,2843,89009,,,0.127,4999,,0.082914894,0.171085106,0.2,0,0.989251287,0.003514939,0,0.060866502,0.54015748,0.443545178,0.636769782,0.193942134,0.136259609,0.251624659,0.077878318,0.060056978,0.095699657,4.465334447,138988,31126,4.212811768,4.717857126,0.239669219,9767,40752,0.209380402,0.269958036,10.44956077,182,174170,,,73.89267781,640,866121,68.16778329,79.61757234,,,,,,,104.9557361,81.66182738,132.8282013,37.82770304,23.97951883,56.76012778,77.98133104,71.37950129,84.58316078,,,,9.6,,,,,0,,,,,0.123600504,8335,67435,0.112892573,0.134308436,0.109212705,0.098127695,0.120297716,0.013346185,0.008788088,0.017904282,0.005783347,0.003726782,0.007839912,0.820557917,70449,85855,0.809508063,0.831607772,,,,0.786923801,0.696649018,0.877198584,0.771317033,0.725416242,0.817217825,0.712714474,0.621587652,0.803841296,0.839465824,0.828782884,0.850148764,0.155,,85855,0.142334294,0.167665706,77.99396837,,,77.5937415,78.39419524,,,,86.33773425,82.44282433,90.23264416,69.74394021,68.01668777,71.47119265,82.24319391,79.57962025,84.90676758,78.40344211,77.97909559,78.82778864,,,,371.5231353,2333,484400,355.9299,387.1163706,,,,144.9970943,89.75548669,221.643461,756.2094828,662.5040184,849.9149473,281.1267183,217.4233835,357.6621147,357.0580565,340.4267345,373.6893785,,,,41.64491877,75,180094,32.7563704,52.20226629,,,,,,,159.4978391,108.3710433,226.394451,,,,29.7968979,20.97976595,41.07109873,,,,3.695086903,54,14614,2.775863006,4.821286875,,,,,,,11.12288136,6.885238869,17.00250569,,,,2.276823831,1.45880399,3.387733383,,,,,,,0.09,,,0.077,0.106,0.148,,,0.127,0.17,0.087,,,0.074,0.101,149.2,217,145415,,,0.082,14370,,,,0.034530755,5705.309528,165224,,,16.5280044,86,520329,13.22027011,20.41195097,,,,,,,32.48375812,17.29623311,55.54821569,,,,16.78076778,13.05643897,21.23713562,,,,0.321,,,0.306,0.336,0.062723155,6412,102227,0.05319124,0.07225507,0.025237995,1079,42753,0.018089059,0.032386931,0.001575401,274,173924,,,634.7591241,0.854709743,1693.18,1981,,,0.065827787,633,9616,0.038685498,0.092970076,3.035763259,,,,,,3.420470665,2.027637792,2.860094582,3.265420275,3.127839843,,,,,,3.830382623,1.763542038,2.892739276,3.384389728,0.1048862,,,,,1936.10525,,,,,0.775236065,50902,65660,0.741861988,0.808610141,68576,,,63279.82979,73872.17021,53600,43459.23404,63740.76596,104806,84570.93617,125041.0638,40366,34229.82979,46502.17021,53214,41998.51064,64429.48936,76788,74070.21277,79505.78723,,,,,,0.378052799,10325,27311,,,48.61781413,,,,,0.319995334,,68576,,,7.696587537,83,10784,,,4.625343081,56,1210721,3.493934456,6.00639272,,,,,,,28.67257028,18.72987485,42.01195876,,,,2.58918714,1.6755854,3.822150983,,,,16.67239469,146,866121,13.90586425,19.43892512,16.85676713,,,,,,,,,,,,,17.56737554,14.38042889,20.75432219,,,,12.00756015,104,866121,9.699781382,14.31533891,,,,,,,44.1118311,29.5423856,63.35194767,,,,9.74766638,7.554307556,12.37919173,,,,8.837709101,107,1210721,7.163136871,10.51228133,,,,,,,11.02791164,5.288312284,20.28072215,,,,9.217506219,7.40241438,11.34293456,,,,25.96774194,,18600,,,245,238,0.720586748,92599,128505,,,0.722,,,,,187.8066265,,,,,0.691010135,49363,71436,0.676667406,0.705352864,0.101523282,7038,69324,0.090248608,0.112797956,0.878688616,62770,71436,0.869429125,0.887948108,173924,,,,,0.229818771,39971,173924,,,0.177077344,30798,173924,,,0.078683793,13685,173924,,,0.003679768,640,173924,,,0.031496516,5478,173924,,,0.000781951,136,173924,,,0.074998275,13044,173924,,,0.782623445,136117,173924,,,0.011247956,1843,163852,,,0.504685955,87777,173924,,,0.132776852,23192,174669,, -19,165,19165,IA,Shelby County,2024,1,6798.604351,176,30806,5084.558341,8512.650361,0,,,,2,,,,2,,,,2,,,,2,6899.789553,5076.939803,8722.639303,,,,,2,,0.126,,,0.104,0.15,3.047966965,,,2.37543914,3.78625639,4.607120083,,,3.669282659,5.572375879,0.055282555,45,814,0.039582944,0.070982166,0,,,,,,,,,,,,,0.058510638,0.041735262,0.075286015,,,,,,,0.172,,,0.134,0.213,0.367,,,0.293,0.446,8.9,0.055855285,0.065,,,0.237,,,0.193,0.291,0.530563596,6232,11746,,,0.198595168,,,0.160327586,0.240377811,0.333333333,3,9,0.150331965,0.513162068,186.9,22,11770,,,12.43781095,30,2412,8.391738815,17.75574851,,,,,,,,,,,,,11.62270899,7.59233939,17.02996159,,,,,,,0.06119978,556,9085,0.051667865,0.070731695,0.000509771,6,11770,,,1961.666667,0.000601116,7,11645,,,1663.571429,0.001288107,15,11645,,,776.3333333,3857,,,,,,,,,3882,0.6,,,,,,,,,0.6,0.6,,,,,,,,,0.6,0.942462463,7846,8325,0.926517307,0.958407618,0.737319588,1788,2425,0.633875533,0.840763642,0.022369639,145,6482,,,0.096,248,,0.055489362,0.136510638,,,,,,,,,,0.476190476,0.212691688,0.739689264,0.034007749,0.00982543,0.058190067,4.464378368,134226,30066,3.324375028,5.604381707,0.12631579,324,2565,0.063922394,0.188709185,16.14273577,19,11770,,,63.94745939,37,57860,45.02491284,88.14314923,,,,,,,,,,,,,68.10985936,47.95562655,93.8804693,,,,6.9,,,,,0,,,,,0.083909181,425,5065,0.051032938,0.116785423,0.073558648,0.040145624,0.106971673,0.010661402,0.002438446,0.018884358,0.002764067,0,0.006444079,0.7432341,4394,5912,0.694898681,0.79156952,,,,,,,,,,,,,0.763484708,0.720879621,0.806089795,0.216,,5912,0.174760008,0.257239993,78.65860059,,,77.10561408,80.2115871,,,,,,,,,,,,,78.42057553,76.81179163,80.02935943,,,,371.815842,176,30806,312.0630891,431.568595,,,,,,,,,,,,,373.660077,312.1000157,435.2201384,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.095,,,0.08,0.111,0.152,,,0.129,0.174,0.081,,,0.068,0.096,60.7,6,9888,,,0.065,760,,,,0.055855285,679.5912478,12167,,,,,,,,,,,,,,,,,,,,,,,,,,0.307,,,0.29,0.324,0.070569867,452,6405,0.058654974,0.082484761,0.03918108,111,2833,0.026074697,0.052287463,0.000772864,9,11645,,,1293.888889,0.962171053,146.25,152,,,,,,,,3.072684184,,,,,,,,,3.100702583,2.993066278,,,,,,,,,3.047570043,0.032408227,,,,,769.88748,,,,,0.760865746,43310,56922,0.689515681,0.832215811,71628,,,62283.14894,80972.85106,,,,,,,,,,39267,16164.02128,62369.97872,72205,62805.34043,81604.65957,,,,,,0.370234987,709,1915,,,72.20670391,,,,,0.241874686,,71628,,,6.861063465,4,583,,,,,,,,,,,,,,,,,,,,,,,,,,15.2095051,11,57860,6.954754234,28.87237836,19.01140684,,,,,,,,,,,,,16.12502126,7.373386519,30.6103132,,,,,,,,,,,,,,,,,,,,,,,,,,,12.25685465,10,81587,5.877638222,22.54079209,,,,,,,,,,,,,13.03203274,6.249366247,23.9663722,,,,22.5,,1200,,,5,22,0.766930023,6795,8860,,,0.727,,,,,8.008293254,,,,,0.759983783,3749,4933,0.714648146,0.805319419,0.095053763,442,4650,0.058347587,0.13175994,0.824244881,4066,4933,0.791841018,0.856648745,11645,,,,,0.224645771,2616,11645,,,0.237526836,2766,11645,,,0.008158008,95,11645,,,0.00661228,77,11645,,,0.005839416,68,11645,,,0.000858738,10,11645,,,0.035465865,413,11645,,,0.930871619,10840,11645,,,0.003777998,42,11117,0,0.010372627,0.503134392,5859,11645,,,0.598757024,7033,11746,, -19,167,19167,IA,Sioux County,2024,1,3778.726594,228,97707,3056.83382,4500.619369,0,,,,2,,,,2,,,,2,,,,2,3867.559789,3073.104271,4662.015306,,,,,2,,0.11,,,0.092,0.133,2.775201903,,,2.180209257,3.487178633,3.891843282,,,3.182888266,4.68378009,0.062070938,217,3496,0.054072605,0.070069272,0,,,,,,,,,,0.056386651,0.041049971,0.071723332,0.061985092,0.052624148,0.071346036,,,,,,,0.139,,,0.108,0.174,0.383,,,0.324,0.443,10,0.00380467,0.041,,,0.223,,,0.183,0.266,0.79911909,28666,35872,,,0.200732424,,,0.168105656,0.237773364,0.230769231,3,13,0.089378268,0.394382228,236.8,85,35893,,,15.72551823,176,11192,13.40222138,18.04881508,,,,,,,,,,85.99167823,70.85600811,101.1273483,4.896221394,3.584649432,6.5308732,,,,,,,0.065961086,1851,28062,0.056429171,0.075493001,0.000807957,29,35893,,,1237.689655,0.000527046,19,36050,,,1897.368421,0.001553398,56,36050,,,643.75,1128,,,,,,,,,1111,0.58,,,,,,,,,0.58,0.55,,,,,,,,0.24,0.55,0.916229631,19567,21356,0.899540685,0.932918577,0.73398831,5902,8041,0.670694999,0.797281621,0.018655059,420,22514,,,0.076,725,,0.052170213,0.099829787,,,,,,,,,,0.161081081,0.082078683,0.240083479,0.037823129,0.017123412,0.058522846,3.632440117,135421,37281,3.047696976,4.217183258,0.068295218,657,9620,0.041841848,0.094748589,25.07452707,90,35893,,,39.30280246,69,175560,30.57992627,49.74021195,,,,,,,,,,,,,40.87552743,31.33903249,52.40058141,,,,6.4,,,,,0,,,,,0.09006462,1115,12380,0.066990198,0.113139042,0.067073171,0.046550485,0.087595857,0.017366721,0.009172369,0.025561072,0.015347334,0.005061473,0.025633196,0.750868566,14048,18709,0.727735066,0.774002066,,,,,,,,,,0.658992806,0.553809784,0.764175827,0.764967462,0.733763954,0.79617097,0.096,,18709,0.072500157,0.119499844,83.13094582,,,82.23458443,84.02730721,,,,,,,,,,,,,83.00509643,82.07491995,83.93527292,,,,202.084935,228,97707,174.885943,229.2839271,,,,,,,,,,,,,206.4587877,177.4960063,235.4215692,,,,29.4210836,13,44186,15.66548792,50.31094898,,,,,,,,,,,,,28.70593639,13.76561229,52.79123907,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.087,,,0.073,0.102,0.136,,,0.116,0.159,0.072,,,0.061,0.085,37.9,11,29057,,,0.041,1450,,,,0.00380467,128.2325819,33704,,,,,,,,,,,,,,,,,,,,,,,,,,0.286,,,0.27,0.302,0.075668624,1392,18396,0.062562241,0.088775007,0.048422091,491,10140,0.032932729,0.063911452,0.001553398,56,36050,,,643.75,0.907402235,324.85,358,,,,,,,,3.126378641,,,,,,,,2.706935625,3.370954396,3.320114004,,,,,,,,2.812824675,3.634252955,0.044601177,,,,,-120.38544,,,,,0.756128703,44415,58740,0.696449471,0.815807935,75994,,,68242.17021,83745.82979,,,,,,,,,,63667,45730.31915,81603.68085,84674,79996.21277,89351.78723,,,,,,0.366376919,1981,5407,,,,,,,,0.256217596,,75994,,,7.404520655,19,2566,,,,,,,,,,,,,,,,,,,,,,,,,,10.53232245,16,175560,5.894860921,17.37146417,9.113693324,,,,,,,,,,,,,10.16690673,5.253389069,17.75954002,,,,,,,,,,,,,,,,,,,,,,,,,,,11.00266917,27,245395,7.25082831,16.00830597,,,,,,,,,,,,,10.81619985,6.856542878,16.22961047,,,,13.86363636,,4400,,,15,46,0.788045502,19051,24175,,,0.743,,,,,30.18169203,,,,,0.792007703,9870,12462,0.767731772,0.816283635,0.073215023,887,12115,0.052588287,0.093841758,0.907238004,11306,12462,0.89159198,0.922884027,36050,,,,,0.266463246,9606,36050,,,0.169237171,6101,36050,,,0.00557559,201,36050,,,0.007517337,271,36050,,,0.009237171,333,36050,,,0.000804438,29,36050,,,0.120055479,4328,36050,,,0.856865465,30890,36050,,,0.024124256,803,33286,0.015571989,0.032676524,0.496782247,17909,36050,,,0.56609612,20307,35872,, -19,169,19169,IA,Story County,2024,1,4791.235132,679,278983,4245.219078,5337.251186,0,,,,2,,,,2,6621.834518,3784.950576,10753.4444,1,,,,2,5034.762125,4429.398838,5640.125413,,,,,2,,0.117,,,0.098,0.137,2.934737544,,,2.285825134,3.693928108,4.630086542,,,3.795041588,5.572835502,0.068711245,410,5967,0.062292736,0.075129754,0,,,,0.075975359,0.052442768,0.09950795,0.121673004,0.082163332,0.161182676,0.051671733,0.027751578,0.075591887,0.066666667,0.05960986,0.073723473,,,,,,,0.142,,,0.112,0.176,0.326,,,0.271,0.388,8.2,0.104837152,0.073,,,0.203,,,0.167,0.241,0.929305743,91571,98537,,,0.239717564,,,0.200644886,0.281819839,0.136363636,3,22,0.044872665,0.263216149,685.6,682,99472,,,3.313658486,128,38628,2.739596442,3.887720531,,,,,,,12.09677419,6.250579747,21.13063009,12.87262873,7.750163391,20.10220432,2.928440138,2.366477722,3.583669078,,,,,,,0.053634494,4146,77301,0.044102579,0.063166409,0.000643397,64,99472,,,1554.25,0.000511673,51,99673,,,1954.372549,0.002407874,240,99673,,,415.3041667,1977,,,,,,,,,1952,0.62,,,,,,0.43,0.36,0.47,0.62,0.68,,,,,,0.7,0.6,0.42,0.69,0.970506378,50214,51740,0.963893407,0.977119349,0.864974755,19359,22381,0.81801516,0.911934351,0.020139738,1202,59683,,,0.085,1326,,0.057595745,0.112404255,,,,0.076830732,0,0.161155344,0.193617021,0.025754024,0.361480019,0.029475983,0,0.081759468,0.076414705,0.051531555,0.101297854,5.396929735,132187,24493,4.662386246,6.131473224,0.143320817,2252,15713,0.106877978,0.179763656,11.96316551,119,99472,,,48.93634808,240,490433,42.74504582,55.12765035,,,,,,,,,,,,,54.2531275,47.11631375,61.38994124,,,,7.6,,,,,1,,,,,0.187129886,7110,37995,0.168583623,0.205676149,0.179353633,0.161030477,0.197676788,0.006053428,0.00297711,0.009129746,0.008422161,0.004156405,0.012687916,0.699159141,35920,51376,0.680877661,0.71744062,,,,0.49411457,0.392843424,0.595385716,0.71005456,0.572701795,0.847407324,0.652425456,0.553970674,0.750880238,0.74016488,0.715333265,0.764996495,0.194,,51376,0.173362799,0.214637201,81.83608839,,,81.20867489,82.46350189,,,,95.15027842,85.6329163,104.6676405,,,,83.37866174,77.94704722,88.81027625,81.49581741,80.83785239,82.15378243,,,,249.0616247,679,278983,229.4924655,268.630784,,,,,,,420.1658919,229.7086029,704.966972,,,,262.0912623,240.5833813,283.5991433,,,,36.49894052,36,98633,25.56340922,50.52991848,,,,,,,,,,,,,30.05823784,19.25888015,44.72427528,,,,4.671338005,28,5994,3.10407018,6.751384041,,,,,,,,,,,,,,,,,,,,,,0.09,,,0.076,0.105,0.144,,,0.124,0.166,0.088,,,0.074,0.103,71.6,63,87994,,,0.073,7140,,,,0.104837152,9387.32824,89542,,,7.122845339,21,294826,4.409153529,10.88802573,,,,,,,,,,,,,8.128858668,4.965318056,12.55436292,,,,0.276,,,0.261,0.292,0.062271961,3806,61119,0.050357068,0.074186855,0.02325309,397,17073,0.016104154,0.030402026,0.000852789,85,99673,,,1172.623529,0.968803571,813.795,840,,,,,,,,3.494174364,,,,,,,2.905034755,3.091619141,3.542636163,3.451680003,,,,,,4.455266387,2.585743332,2.829521283,3.538157066,0.086848181,,,,,2375.196814,,,,,0.772397057,50290,65109,0.710655749,0.834138365,68720,,,61978.55319,75461.44681,57188,4401.446809,109974.5532,42549,17362.10638,67735.89362,48107,31001.97872,65212.02128,59069,47600.91489,70537.08511,70135,67101.46809,73168.53192,,,,,,0.233666411,2736,11709,,,54.75064768,,,,,0.370052387,,68720,,,8.928571429,39,4368,,,1.462963613,10,683544,0.701547917,2.690442172,,,,,,,,,,,,,,,,,,,14.95378623,70,490433,11.38351493,19.28929473,14.27310153,,,,,,,,,,,,,15.96100691,11.95588944,20.87739002,,,,6.117043511,30,490433,4.127143569,8.732459968,,,,,,,,,,,,,6.842736802,4.546948911,9.889659878,,,,4.242594478,29,683544,2.841332107,6.09307337,,,,,,,,,,,,,5.070187125,3.395583891,7.28163446,,,,19.4520548,,7300,,,38,104,0.684981882,51038,74510,,,0.688,,,,,170.3156802,,,,,0.5569874,21395,38412,0.543691861,0.570282939,0.166465686,6212,37317,0.144492986,0.188438385,0.77543476,29786,38412,0.757065798,0.793803722,99673,,,,,0.158989897,15847,99673,,,0.134891094,13445,99673,,,0.029225568,2913,99673,,,0.002939613,293,99673,,,0.0788378,7858,99673,,,0.000351148,35,99673,,,0.040913788,4078,99673,,,0.833184513,83046,99673,,,0.006154465,581,94403,0.003473693,0.008835238,0.475866082,47431,99673,,,0.258461289,25468,98537,, -19,171,19171,IA,Tama County,2024,1,8805.826798,271,45999,7094.128983,10517.52461,0,28744.25404,17557.73712,44393.16906,1,,,,2,,,,2,,,,2,7876.039641,5993.913372,9758.16591,,,,,2,,0.156,,,0.133,0.18,3.554154771,,,2.833594182,4.4058461,4.696135575,,,3.820382639,5.692793784,0.065492958,93,1420,0.052625271,0.078360645,0,0.101190476,0.055586251,0.146794702,,,,,,,0.050724638,0.024836124,0.076613151,0.064377682,0.048620953,0.080134412,,,,,,,0.19,,,0.155,0.228,0.429,,,0.361,0.501,8.5,0.066647579,0.081,,,0.279,,,0.236,0.332,0.616632623,10566,17135,,,0.185979368,,,0.151093189,0.224360074,0.466666667,7,15,0.335227351,0.582964744,444.7,75,16867,,,22.28412256,80,3590,17.66992328,27.73451949,,,,,,,,,,47.92332268,32.33366457,68.413523,14.53831041,10.23631221,20.03914583,,,,,,,0.081013426,1068,13183,0.069098533,0.09292832,0.000177862,3,16867,,,5622.333333,0.000177483,3,16903,,,5634.333333,0.000354967,6,16903,,,2817.166667,1668,,,,,,,,,1803,0.49,,,,,0.33,,,,0.5,0.45,,,,,0.73,,,,0.44,0.909890489,10552,11597,0.894138273,0.925642705,0.552363051,2057,3724,0.491644524,0.613081577,0.032799307,303,9238,,,0.183,726,,0.134148936,0.231851064,0.314769976,0.209632506,0.419907446,0.106382979,0,0.92018889,,,,0.370238095,0.239067598,0.501408593,0.181465684,0.130670708,0.23226066,4.055011065,115434,28467,3.356731159,4.753290972,0.235921608,951,4031,0.180876004,0.290967212,13.04322049,22,16867,,,79.30495715,67,84484,61.4602525,100.7144922,,,,,,,,,,,,,83.37055233,62.97721927,108.2635969,,,,7.9,,,,,0,,,,,0.116555308,785,6735,0.094064688,0.139045928,0.093754703,0.073077402,0.114432003,0.03043801,0.017579932,0.043296089,0.004454343,0.000560661,0.008348025,0.796538937,6444,8090,0.773564494,0.81951338,0.807387863,0.737455557,0.877320169,,,,,,,0.702364395,0.581618801,0.823109989,0.782053921,0.74626832,0.817839521,0.306,,8090,0.267189623,0.344810377,76.27103979,,,74.90663513,77.63544445,,,,,,,,,,82.6263771,75.87876562,89.37398857,76.95220303,75.4455044,78.45890165,,,,422.4173228,271,45999,368.5175844,476.3170612,1061.483475,710.8921423,1524.467334,,,,,,,,,,394.3407735,338.1699139,450.5116332,,,,56.19871867,10,17794,26.94947002,103.3514445,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.11,,,0.095,0.127,0.163,,,0.142,0.187,0.097,,,0.083,0.113,92.6,13,14033,,,0.081,1390,,,,0.066647579,1184.12753,17767,,,,,,,,,,,,,,,,,,,,,,,,,,0.308,,,0.294,0.322,0.097094719,899,9259,0.081605357,0.11258408,0.044267054,183,4134,0.029969181,0.058564926,0.000887416,15,16903,,,1126.866667,0.93091716,157.325,169,,,0.141011841,131,929,0.06230304,0.219720642,2.807155105,,,,,,,,2.419627235,3.071253244,3.029235876,,,,,,,,2.727376819,3.188741779,0.153473667,,,,,-1932.718435,,,,,0.769334391,41691,54191,0.690345788,0.848322995,66295,,,60305.38298,72284.61702,53375,36015,70735,,,,,,,59542,42526.34043,76557.65957,66212,62019.14894,70404.85106,,,,,,0.420129623,1102,2623,,,,,,,,0.279689268,,66295,,,5.808325266,6,1033,,,,,,,,,,,,,,,,,,,,,,,,,,23.88311727,17,84484,13.6512651,38.78468617,20.12215331,,,,,,,,,,,,,21.76495273,10.86498599,38.94351254,,,,14.20387292,12,84484,7.339348408,24.81130752,,,,,,,,,,,,,14.88759863,7.139182218,27.37882394,,,,13.42957865,16,119140,7.676164557,21.80879436,,,,,,,,,,,,,12.54718264,6.483312361,21.91740299,,,,36.66666667,,1800,,,17,49,0.725872443,9048,12465,,,0.674,,,,,19.63133364,,,,,0.75548262,5064,6703,0.738444823,0.772520417,0.095435685,598,6266,0.0734875,0.117383869,0.833059824,5584,6703,0.81042323,0.855696418,16903,,,,,0.237886766,4021,16903,,,0.205111519,3467,16903,,,0.009288292,157,16903,,,0.084304561,1425,16903,,,0.005147015,87,16903,,,0.001833994,31,16903,,,0.124593268,2106,16903,,,0.779269952,13172,16903,,,0.028133792,450,15995,0.017362159,0.038905425,0.48973555,8278,16903,,,0.69285089,11872,17135,, -19,173,19173,IA,Taylor County,2024,1,7984.836092,109,16201,5248.512235,10721.15995,0,,,,2,,,,2,,,,2,,,,2,8915.653155,5692.213095,12139.09322,,,,,2,,0.135,,,0.112,0.161,3.167725826,,,2.449817942,4.038362521,4.554677718,,,3.574001319,5.692398609,0.063136456,31,491,0.041623822,0.084649091,0,,,,,,,,,,,,,0.058536585,0.035812859,0.081260312,,,,,,,0.176,,,0.136,0.218,0.377,,,0.296,0.465,9.4,0.010726017,0.063,,,0.256,,,0.204,0.308,0.600576662,3541,5896,,,0.196810878,,,0.15416183,0.2431141,0.4,2,5,0.149190828,0.619170557,323.8,19,5868,,,16.23931624,19,1170,9.7771292,25.35970391,,,,,,,,,,,,,13.71204701,7.496503699,23.00648494,,,,,,,0.08137992,368,4522,0.068273537,0.094486303,0.000511247,3,5868,,,1956,0.000341414,2,5858,,,2929,0.000170707,1,5858,,,5858,2013,,,,,,,,,2047,0.45,,,,,,,,,0.46,0.46,,,,,,,,,0.46,0.909975669,3740,4110,0.896645243,0.923306095,0.601281025,751,1249,0.517713507,0.684848543,0.019595449,62,3164,,,0.135,184,,0.082574468,0.187425532,,,,,,,,,,,,,0.072615923,0.036209052,0.109022794,3.663060729,113097,30875,3.057681471,4.268439986,0.130532633,174,1333,0.073683127,0.187382139,13.63326517,8,5868,,,88.66995074,27,30450,58.43405626,129.010123,,,,,,,,,,,,,95.10571366,62.12620973,139.3519061,,,,7.1,,,,,0,,,,,0.064327485,165,2565,0.040750729,0.087904242,0.04625637,0.021975829,0.070536911,0.007017544,0,0.018172905,0.013645224,0.002771879,0.02451857,0.773809524,2210,2856,0.741440336,0.806178712,,,,,,,,,,,,,0.741689129,0.708821875,0.774556382,0.262,,2856,0.216598158,0.307401842,76.69535188,,,74.45863442,78.93206934,,,,,,,,,,,,,75.984214,73.47650088,78.49192712,,,,433.0311411,109,16201,345.313929,520.7483532,,,,,,,,,,,,,453.6831377,358.3310061,549.0352693,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.099,,,0.083,0.116,0.153,,,0.13,0.178,0.085,,,0.071,0.101,,,,,,0.063,370,,,,0.010726017,67.75624913,6317,,,,,,,,,,,,,,,,,,,,,,,,,,0.317,,,0.301,0.333,0.095177665,300,3152,0.078496814,0.111858516,0.049615653,71,1431,0.032934802,0.066296505,0.000682827,4,5858,,,1464.5,,,,,,,,,,,3.279090906,,,,,,,,,3.333175383,3.095601283,,,,,,,,,3.199823091,0.174000032,,,,,-763.337435,,,,,0.768910734,39735,51677,0.682722845,0.855098623,56021,,,49000.74468,63041.25532,,,,,,,,,,,,,66250,60535.61702,71964.38298,,,,,,0.463126844,471,1017,,,,,,,,0.30774174,,56021,,,6.006006006,2,333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,23.32579133,10,42871,11.18562361,42.89696075,,,,,,,,,,,,,,,,,,,,,600,,,-888,-888,0.711719606,3249,4565,,,0.642,,,,,0.115464143,,,,,0.788288288,1925,2442,0.756346719,0.820229858,0.06622807,151,2280,0.035712527,0.096743614,0.820638821,2004,2442,0.7872327,0.854044941,5858,,,,,0.235233868,1378,5858,,,0.222942984,1306,5858,,,0.003926255,23,5858,,,0.004438375,26,5858,,,0.004950495,29,5858,,,0.001365654,8,5858,,,0.098839194,579,5858,,,0.876920451,5137,5858,,,0.032453638,182,5608,0.005887565,0.059019711,0.482758621,2828,5858,,,1,5896,5896,, -19,175,19175,IA,Union County,2024,1,8946.718598,194,32946,7003.772951,10889.66424,0,,,,2,,,,2,,,,2,,,,2,9171.990542,7104.892033,11239.08905,,,,,2,,0.135,,,0.112,0.161,3.187954251,,,2.463932829,3.94179092,4.509352805,,,3.580602814,5.465976783,0.050904977,45,884,0.036415093,0.065394862,0,,,,,,,,,,,,,0.048076923,0.033540295,0.062613551,,,,,,,0.185,,,0.146,0.228,0.378,,,0.304,0.453,8.3,0.058998987,0.091,,,0.251,,,0.204,0.301,0.830120283,10076,12138,,,0.186782892,,,0.151022932,0.226770767,0,0,6,0,0.28246769,349.5,42,12018,,,19.92287918,62,3112,15.27475723,25.54023197,,,,,,,,,,,,,19.6991404,14.84008846,25.64113896,,,,,,,0.06429652,595,9254,0.053573116,0.075019925,0.000998502,12,12018,,,1001.5,0.000504753,6,11887,,,1981.166667,0.002355514,28,11887,,,424.5357143,1982,,,,,,,,,1993,0.55,,,,,,,,,0.55,0.58,,,,,,,,,0.58,0.927868853,7641,8235,0.912552094,0.943185611,0.648619577,1809,2789,0.545353044,0.75188611,0.027366021,168,6139,,,0.169,437,,0.105851064,0.232148936,,,,,,,,,,,,,0.10949209,0.062362966,0.156621213,4.110402737,105736,25724,3.498975224,4.721830249,0.207094232,578,2791,0.126026142,0.288162321,11.64919288,14,12018,,,93.09922417,57,61225,70.51244322,120.6208435,,,,,,,,,,,,,97.58817789,73.71706082,126.7263663,,,,7.1,,,,,0,,,,,0.088461539,460,5200,0.062453793,0.114469284,0.061523626,0.03803147,0.085015781,0.017115385,0.004770133,0.029460636,0.018269231,0.003222514,0.033315947,0.777939836,4267,5485,0.737190467,0.818689204,,,,,,,,,,,,,0.788037068,0.748240691,0.827833445,0.164,,5485,0.127840703,0.200159298,76.2470582,,,74.65618815,77.83792824,,,,,,,,,,,,,76.04006538,74.38479925,77.69533151,,,,432.6010667,194,32946,367.6591713,497.542962,,,,,,,,,,,,,438.6528149,371.5723683,505.7332614,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.1,,,0.085,0.117,0.158,,,0.134,0.182,0.086,,,0.073,0.101,68.7,7,10193,,,0.091,1110,,,,0.058998987,739.4932965,12534,,,,,,,,,,,,,,,,,,,,,,,,,,0.336,,,0.317,0.353,0.075700227,500,6605,0.062593844,0.08880661,0.036877909,103,2793,0.024963015,0.048792803,0.001514259,18,11887,,,660.3888889,0.96867284,156.925,162,,,,,,,,2.890536286,,,,,,,,,2.993309236,2.569250336,,,,,,,,,2.723307036,0.029458042,,,,,940.03495,,,,,0.627928722,34921,55613,0.569073445,0.686783999,55812,,,49590.04255,62033.95745,,,,,,,,,,72292,34289.44681,110294.5532,56018,51928.80851,60107.19149,,,,,,0.471648119,890,1887,,,,,,,,0.29608328,,55812,,,8.862629247,6,677,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.09626774,13,86114,8.038126775,25.81507759,,,,,,,,,,,,,16.07677277,8.560204411,27.49177106,,,,37.14285714,,1400,,,13,39,0.654843833,6185,9445,,,0.688,,,,,64.59613323,,,,,0.745330388,3711,4979,0.722595733,0.768065043,0.081452606,397,4874,0.052582982,0.110322229,0.838923479,4177,4979,0.80420966,0.873637297,11887,,,,,0.221586607,2634,11887,,,0.215108943,2557,11887,,,0.014217212,169,11887,,,0.007655422,91,11887,,,0.009842685,117,11887,,,0.000588879,7,11887,,,0.033145453,394,11887,,,0.928240936,11034,11887,,,0.002535852,29,11436,0,0.009126047,0.504753092,6000,11887,,,0.381529082,4631,12138,, -19,177,19177,IA,Van Buren County,2024,1,6230.667775,116,19434,4235.277205,8226.058346,0,,,,2,,,,2,,,,2,,,,2,6428.037066,4347.088262,8508.98587,,,,,2,,0.16,,,0.133,0.189,3.59069472,,,2.760223202,4.46745232,4.816151932,,,3.790298595,5.913712079,0.034586466,23,665,0.020697976,0.048474956,1,,,,,,,,,,,,,0.032258065,0.018685419,0.04583071,,,,,,,0.212,,,0.171,0.258,0.398,,,0.318,0.481,8.1,0.08400266,0.089,,,0.289,,,0.237,0.345,0.428154935,3084,7203,,,0.184910177,,,0.147936405,0.226633914,0.4,2,5,0.149190828,0.619170557,165.7,12,7243,,,22.88984263,32,1398,15.65663542,32.3136281,,,,,,,,,,,,,22.98850575,15.51024829,32.81752138,,,,,,,0.085419996,481,5631,0.072313614,0.098526379,0.000828386,6,7243,,,1207.166667,0.000137817,1,7256,,,7256,0.000551268,4,7256,,,1814,2451,,,,,,,,,2455,0.38,,,,,,,,,0.38,0.34,,,,,,,,,0.34,0.88387224,4483,5072,0.853408835,0.914335644,0.520435967,764,1468,0.418866928,0.622005006,0.028032345,104,3710,,,0.177,299,,0.10312766,0.25087234,,,,,,,,,,0.175,0,0.413838317,0.135117494,0.067705213,0.202529774,4.168174643,108260,25973,3.392037405,4.944311881,0.082926829,136,1640,0.043958321,0.121895338,6.903216899,5,7243,,,64.72856218,23,35533,41.03235594,97.1246247,,,,,,,,,,,,,67.38347054,42.7153401,101.1082908,,,,7.2,,,,,0,,,,,0.134680135,400,2970,0.098200666,0.171159603,0.078350516,0.047033219,0.109667812,0.031649832,0.014166712,0.049132952,0.028619529,0.013345211,0.043893846,0.674434544,1968,2918,0.614089824,0.734779265,,,,,,,,,,,,,0.656424581,0.584059348,0.728789814,0.241,,2918,0.186334136,0.295665864,77.7716304,,,75.99472054,79.54854027,,,,,,,,,,,,,77.5524853,75.73133354,79.37363707,,,,365.5368388,116,19434,293.6616672,437.4120104,,,,,,,,,,,,,372.1721049,298.2330096,446.1112003,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.115,,,0.099,0.134,0.17,,,0.147,0.196,0.097,,,0.082,0.113,,,,,,0.089,640,,,,0.08400266,635.9001378,7570,,,,,,,,,,,,,,,,,,,,,,,,,,0.326,,,0.308,0.344,0.100581248,398,3957,0.083900397,0.1172621,0.049600912,87,1754,0.032920061,0.066281763,0.000826902,6,7256,,,1209.333333,,,,,,,,,,,3.293245878,,,,,,,,,3.357254534,3.050673747,,,,,,,,,3.11356918,,,,,,-494.1689,,,,,0.87640191,45714,52161,0.657716577,1.095087242,64550,,,58695.02128,70404.97872,,,,,,,,,,,,,59264,55492.93617,63035.06383,,,,,,0.507042254,432,852,,,,,,,,0.237536793,,64550,,,6.912442396,3,434,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,800,,,-888,11,0.696875,3791,5440,,,0.596,,,,,0.14850481,,,,,0.833919775,2370,2842,0.80347223,0.86436732,0.074074074,202,2727,0.040886632,0.107261517,0.719563688,2045,2842,0.680641833,0.758485542,7256,,,,,0.234288864,1700,7256,,,0.232772878,1689,7256,,,0.002342889,17,7256,,,0.002067255,15,7256,,,0.006201764,45,7256,,,0.000275634,2,7256,,,0.018054024,131,7256,,,0.959343991,6961,7256,,,0.002364066,16,6768,0,0.01255355,0.490628445,3560,7256,,,1,7203,7203,, -19,179,19179,IA,Wapello County,2024,1,9177.732767,619,97062,8082.071112,10273.39442,0,,,,2,,,,2,,,,2,7092.356446,4589.79914,10469.71721,1,9446.789586,8163.081475,10730.4977,,,,,2,,0.163,,,0.138,0.191,3.485702169,,,2.747206394,4.324260587,4.993634029,,,4.04062475,6.008935322,0.072542157,228,3143,0.06347385,0.081610464,0,,,,,,,0.107758621,0.067858035,0.147659206,0.056285178,0.036718826,0.075851531,0.072254335,0.061116807,0.083391864,0.05945946,0.025381825,0.093537094,,,,0.207,,,0.17,0.251,0.405,,,0.335,0.479,6.3,0.231323796,0.104,,,0.296,,,0.249,0.352,0.750740751,26604,35437,,,0.183069201,,,0.148196846,0.222105874,0.095238095,2,21,0.018632442,0.225063028,692.1,244,35256,,,26.58326818,204,7674,22.93531412,30.23122224,,,,,,,,,,45.48900682,34.71290444,58.55336877,21.03418054,17.27068812,24.79767296,190.4761905,108.8736006,309.3214,,,,0.073733543,2061,27952,0.06181865,0.085648437,0.000567279,20,35256,,,1762.8,0.000799018,28,35043,,,1251.535714,0.001769255,62,35043,,,565.2096774,2912,,,,,,,,1502,2883,0.45,,,,,,,,0.18,0.46,0.4,,,,,,0.29,0.19,0.14,0.41,0.879270976,21179,24087,0.861780613,0.896761339,0.530139998,4582,8643,0.469257347,0.591022649,0.032421599,550,16964,,,0.205,1628,,0.143042553,0.266957447,,,,0.314285714,0.064988194,0.563583234,0.351612903,0.112864166,0.590361641,0.135188867,0.051784459,0.218593274,0.273304316,0.208842269,0.337766363,4.746068848,111675,23530,4.30209654,5.190041156,0.299052938,2463,8236,0.231802513,0.366303363,10.21102791,36,35256,,,80.93058777,142,175459,67.61916142,94.24201413,,,,,,,,,,,,,91.1267934,75.4011905,106.8523963,,,,7.9,,,,,0,,,,,0.165567511,2385,14405,0.137767428,0.193367595,0.143067227,0.114552017,0.171582436,0.022561611,0.012907477,0.032215744,0.011107254,0.003988916,0.018225593,0.802555313,12877,16045,0.772084749,0.833025878,,,,,,,,,,0.709120345,0.598603137,0.819637554,0.83491833,0.802231719,0.867604942,0.18,,16045,0.148543778,0.211456222,75.04647224,,,74.18085084,75.91209363,,,,,,,,,,,,,74.7442706,73.77135664,75.71718457,,,,477.2195833,619,97062,437.721228,516.7179386,,,,,,,,,,364.2801443,242.0615104,526.4862337,486.9334959,443.4435619,530.4234299,,,,33.60309148,12,35711,17.36320772,58.69783834,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.112,,,0.096,0.13,0.166,,,0.143,0.193,0.101,,,0.086,0.118,95.2,28,29398,,,0.104,3670,,,,0.231323796,8240.910227,35625,,,19.96007984,21,105210,12.35560402,30.51110231,,,,,,,,,,,,,21.43954643,12.70643399,33.88372651,,,,0.328,,,0.314,0.342,0.08930805,1785,19987,0.073818689,0.104797412,0.035598706,297,8343,0.023683812,0.047513599,0.001626573,57,35043,,,614.7894737,0.887517647,377.195,425,,,0.094160968,179,1901,0.040590796,0.14773114,2.627155469,,,,,,,2.217192419,2.179846681,2.8198349,2.740881754,,,,,,,2.131970586,2.273575415,2.972090484,0.10521043,,,,,46.35266667,,,,,0.822796898,43080,52358,0.743629978,0.901963819,61555,,,58283.17021,64826.82979,,,,,,,31977,7494.276596,56459.7234,83993,63767.46809,104218.5319,56121,53014.78723,59227.21277,,,,,,0.430185874,2893,6725,,,38.8620353,,,,,0.280935749,,61555,,,8.755760369,19,2170,,,4.478572068,11,245614,2.23568704,8.01340254,,,,,,,,,,,,,,,,,,,27.89737893,49,175459,20.4243876,37.21119405,27.92675212,,,,,,,,,,,,,31.22887036,22.41037654,42.36548888,,,,14.24834292,25,175459,9.220776277,21.03336489,,,,,,,,,,,,,17.66023128,11.42877053,26.06998516,,,,14.25000204,35,245614,9.925648539,19.81830326,,,,,,,,,,,,,15.96734678,10.92165337,22.54112943,,,,66.28571429,,3500,,,60,172,0.607696793,15633,25725,,,0.659,,,,,101.1894692,,,,,0.663214261,9413,14193,0.634868936,0.691559585,0.145938537,2023,13862,0.114267521,0.177609553,0.801662792,11378,14193,0.778515121,0.824810462,35043,,,,,0.235396513,8249,35043,,,0.187911994,6585,35043,,,0.037411181,1311,35043,,,0.011129184,390,35043,,,0.022343977,783,35043,,,0.022914705,803,35043,,,0.123448335,4326,35043,,,0.780926291,27366,35043,,,0.030743213,1018,33113,0.020174708,0.041311717,0.495077476,17349,35043,,,0.293986511,10418,35437,, -19,181,19181,IA,Warren County,2024,1,6031.38001,574,146821,5274.781615,6787.978405,0,,,,2,,,,2,,,,2,,,,2,6148.002922,5356.856625,6939.149219,,,,,2,,0.105,,,0.085,0.127,2.708508099,,,2.059813219,3.40067517,4.402639072,,,3.537192873,5.319045955,0.068914956,282,4092,0.061153563,0.076676349,0,,,,,,,,,,0.076388889,0.033004399,0.119773379,0.065841454,0.057952929,0.073729978,,,,,,,0.143,,,0.11,0.181,0.376,,,0.312,0.443,9.3,0.039845836,0.054,,,0.21,,,0.168,0.257,0.764517299,40063,52403,,,0.220574252,,,0.182094476,0.26211044,0.318181818,7,22,0.204127461,0.433005911,286.5,153,53402,,,7.127362876,92,12908,5.745660425,8.741077859,,,,,,,,,,,,,6.705063182,5.300074203,8.368222303,,,,,,,0.038052411,1667,43808,0.032094964,0.044009857,0.000617954,33,53402,,,1618.242424,0.000368141,20,54327,,,2716.35,0.000294513,16,54327,,,3395.4375,1886,,,,,,,,,1907,0.54,,,,,,,,,0.54,0.62,,,,,,,,,0.62,0.964522138,33657,34895,0.958264643,0.970779632,0.748880285,9865,13173,0.694074343,0.803686228,0.024268718,716,29503,,,0.064,833,,0.041361702,0.086638298,,,,,,,,,,0.162479062,0.029114663,0.295843461,0.053854277,0.030549187,0.077159366,3.723613574,153290,41167,3.298380349,4.148846799,0.151418578,1948,12865,0.121130987,0.181706169,10.48649863,56,53402,,,67.34997213,174,258352,57.34262724,77.35731702,,,,,,,,,,,,,68.58682224,58.15301741,79.02062708,,,,7.5,,,,,0,,,,,0.095496894,1845,19320,0.081525843,0.109467946,0.082963736,0.067410944,0.098516528,0.016252588,0.009163761,0.023341415,0.008540373,0.0025189,0.014561846,0.784917547,21181,26985,0.764873402,0.804961692,,,,,,,,,,0.789126853,0.609528255,0.968725452,0.658323371,0.60900043,0.707646312,0.408,,26985,0.372215625,0.443784375,78.72122537,,,78.0093106,79.43314013,,,,,,,,,,96.98126635,76.31999386,117.6425388,78.55507433,77.8223433,79.28780535,,,,311.5363046,574,146821,285.2179577,337.8546516,,,,,,,,,,,,,318.1424005,290.8912613,345.3935398,,,,31.34414126,18,57427,18.5765246,49.53725646,,,,,,,,,,,,,26.97963038,14.75001499,45.2672354,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.086,,,0.073,0.101,0.144,,,0.123,0.168,0.073,,,0.061,0.087,56.4,25,44295,,,0.054,2800,,,,0.039845836,1841.873773,46225,,,15.27368535,24,157133,9.786138402,22.7260331,,,,,,,,,,,,,14.98821381,9.3930338,22.69233584,,,,0.287,,,0.271,0.304,0.044579534,1364,30597,0.037430598,0.05172847,0.023964198,332,13854,0.016815262,0.031113134,0.000515398,28,54327,,,1940.25,0.961930295,717.6,746,,,,,,,,3.139936977,,,,,,,,2.502451916,3.16682221,3.241307197,,,,,,,,2.597624135,3.273696141,0.030607419,,,,,2581.9706,,,,,0.811990415,57264,70523,0.758800287,0.865180542,90943,,,81421.80851,100464.1915,,,,75144,21678.29787,128609.7021,21920,7029.957447,36810.04255,,,,90645,85732.48936,95557.51064,,,,,,0.231070371,2420,10473,,,74.77816672,,,,,0.23949067,,90943,,,7.220216607,22,3047,,,,,,,,,,,,,,,,,,,,,,,,,,16.70016235,43,258352,12.0360081,22.57376801,16.64395863,,,,,,,,,,,,,17.29182101,12.35353044,23.54655235,,,,8.902582523,23,258352,5.643473647,13.35824491,,,,,,,,,,,,,9.089819815,5.696541684,13.76209644,,,,10.37376391,37,356669,7.304087142,14.29886706,,,,,,,,,,,,,10.74774447,7.527588092,14.87940866,,,,16.72131148,,6100,,,14,88,0.814778842,31039,38095,,,0.742,,,,,48.05454711,,,,,0.8166382,16256,19906,0.799149393,0.834127006,0.066894407,1312,19613,0.054030353,0.079758461,0.893449211,17785,19906,0.886788901,0.900109522,54327,,,,,0.242347268,13166,54327,,,0.168792681,9170,54327,,,0.010473614,569,54327,,,0.003239641,176,54327,,,0.008504059,462,54327,,,0.001159644,63,54327,,,0.036777293,1998,54327,,,0.927605058,50394,54327,,,0.003741551,186,49712,0.001215933,0.00626717,0.501831502,27263,54327,,,0.470736408,24668,52403,, -19,183,19183,IA,Washington County,2024,1,5849.674026,285,60609,4760.030434,6939.317618,0,,,,2,,,,2,,,,2,,,,2,6220.012803,5003.868455,7436.157151,,,,,2,,0.131,,,0.11,0.157,3.125845526,,,2.396995923,3.925267328,4.44488485,,,3.523922329,5.351178952,0.054828974,109,1988,0.044821876,0.064836072,0,,,,,,,,,,0.073394495,0.038776094,0.108012897,0.052417006,0.041875185,0.062958828,,,,,,,0.164,,,0.128,0.205,0.368,,,0.298,0.441,9.1,0.030008835,0.068,,,0.252,,,0.207,0.305,0.741812542,16739,22565,,,0.187206137,,,0.151127163,0.227254952,0.181818182,2,11,0.044108943,0.367070091,262.3,59,22491,,,11.93520887,56,4692,9.015728513,15.49886147,,,,,,,,,,31.12033195,17.41781355,51.32825492,9.896091044,7.069912529,13.47566724,,,,,,,0.077372344,1391,17978,0.06545745,0.089287238,0.00080032,18,22491,,,1249.5,0.000398742,9,22571,,,2507.888889,0.000753179,17,22571,,,1327.705882,1955,,,,,,,,9472,1670,0.48,,,,,,,,,0.48,0.49,,,,,,,,0.4,0.49,0.923182442,14133,15309,0.90959607,0.936768814,0.639894915,3410,5329,0.573385039,0.70640479,0.025880356,305,11785,,,0.132,722,,0.089106383,0.174893617,,,,,,,,,,0.064896755,0.008698468,0.121095042,0.093368818,0.057220704,0.129516932,3.319741788,121881,36714,2.936563847,3.702919729,0.14133574,783,5540,0.095647849,0.187023631,18.22951403,41,22491,,,76.66636601,85,110870,61.23837017,94.79914884,,,,,,,,,,,,,83.96137777,66.97088313,103.9498988,,,,8.6,,,,,0,,,,,0.076056338,675,8875,0.057921547,0.094191129,0.068127895,0.049612664,0.086643126,0.006197183,0,0.013329957,0.003380282,0,0.008220129,0.784846631,8981,11443,0.746523328,0.823169934,,,,,,,,,,0.66318927,0.516272876,0.810105664,0.789688849,0.747538346,0.831839351,0.322,,11443,0.277132871,0.366867129,78.82694898,,,77.81367991,79.84021806,,,,,,,,,,,,,78.45439397,77.37852058,79.53026736,,,,332.3015318,285,60609,291.5051073,373.0979563,,,,,,,,,,,,,342.7409858,299.5800587,385.9019128,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.096,,,0.081,0.113,0.151,,,0.129,0.173,0.082,,,0.07,0.097,91.9,17,18500,,,0.068,1530,,,,0.030008835,651.3117545,21704,,,,,,,,,,,,,,,,,,,,,,,,,,0.299,,,0.283,0.315,0.091077022,1134,12451,0.07558766,0.106566384,0.047553173,275,5783,0.032063811,0.063042535,0.000753179,17,22571,,,1327.705882,0.920784314,234.8,255,,,,,,,,2.881085927,,,,,,,,1.858421178,2.995623921,2.802168718,,,,,,,,1.576399553,2.997193027,0.056975745,,,,,1096.8678,,,,,0.861635335,47209,54790,0.794045491,0.929225179,70539,,,62516.70213,78561.29787,,,,61250,45413.91489,77086.08511,,,,50991,35713.7234,66268.2766,72138,65794.51064,78481.48936,,,,,,0.346329114,1368,3950,,,,,,,,0.280851727,,70539,,,8.26446281,12,1452,,,,,,,,,,,,,,,,,,,,,,,,,,19.1255362,21,110870,11.51482216,29.86689389,18.94110219,,,,,,,,,,,,,21.35376754,12.85636298,33.34655315,,,,13.52935871,15,110870,7.572279366,22.31461971,,,,,,,,,,,,,14.99310317,8.391526031,24.7288436,,,,14.15719636,22,155398,8.872239586,21.43416543,,,,,,,,,,,,,15.62577685,9.79259116,23.65761394,,,,45.83333333,,2400,,,30,80,0.729612403,11765,16125,,,0.713,,,,,38.40632285,,,,,0.715758799,6386,8922,0.688303325,0.743214272,0.067992599,588,8648,0.050446699,0.0855385,0.863035194,7700,8922,0.841457021,0.884613367,22571,,,,,0.24527048,5536,22571,,,0.203668424,4597,22571,,,0.010145762,229,22571,,,0.003588676,81,22571,,,0.00677861,153,22571,,,0.001107616,25,22571,,,0.075938151,1714,22571,,,0.892959993,20155,22571,,,0.017235665,364,21119,0.008035586,0.026435743,0.499003146,11263,22571,,,0.696609794,15719,22565,, -19,185,19185,IA,Wayne County,2024,1,8144.201903,94,17275,5763.321985,11178.55341,0,,,,2,,,,2,,,,2,,,,2,8379.041986,5899.618823,11549.40564,,,,,2,,0.149,,,0.124,0.177,3.389920547,,,2.632802067,4.205204575,4.793525908,,,3.814752876,5.852747632,0.060126582,38,632,0.04159274,0.078660425,0,,,,,,,,,,,,,0.056726094,0.038473532,0.074978656,,,,,,,0.201,,,0.161,0.241,0.414,,,0.334,0.496,7.3,0.168970554,0.086,,,0.276,,,0.224,0.329,0.35801139,2326,6497,,,0.182548573,,,0.147141473,0.22260186,0.428571429,3,7,0.219826693,0.607881191,307.3,20,6508,,,11.99717714,17,1417,6.988797791,19.20864278,,,,,,,,,,,,,11.07828656,6.20043289,18.27194895,,,,,,,0.078202336,395,5051,0.066287443,0.09011723,0.000768285,5,6508,,,1301.6,0.000463894,3,6467,,,2155.666667,,0,6467,,,,3716,,,,,,,,,3628,0.52,,,,,,,,,0.53,0.35,,,,,,,,,0.36,0.894361335,3886,4345,0.869970402,0.918752268,0.513657056,677,1318,0.423735254,0.603578859,0.025466893,75,2945,,,0.204,343,,0.127744681,0.280255319,,,,,,,,,,,,,0.206254158,0.136554951,0.275953365,3.563289382,102694,28820,2.982852742,4.143726023,0.178359096,300,1682,0.114704743,0.24201345,12.292563,8,6508,,,80.64265997,26,32241,52.67846288,118.1601814,,,,,,,,,,,,,84.1941647,54.99842368,123.3639587,,,,7.2,,,,,0,,,,,0.120229008,315,2620,0.091903026,0.148554989,0.092100193,0.063425894,0.120774491,0.03778626,0.016427447,0.059145072,0.005343512,0,0.014028215,0.75415635,2132,2827,0.708554986,0.799757713,,,,,,,,,,,,,0.754603683,0.710239667,0.798967699,0.281,,2827,0.227861712,0.334138288,76.75277195,,,74.63415293,78.87139097,,,,,,,,,,,,,76.46459541,74.30254975,78.62664106,,,,399.8258531,94,17275,316.5458931,498.3023086,,,,,,,,,,,,,409.8973132,323.4845495,512.3013122,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.108,,,0.092,0.125,0.167,,,0.144,0.191,0.091,,,0.077,0.106,,,,,,0.086,560,,,,0.168970554,1081.918455,6403,,,,,,,,,,,,,,,,,,,,,,,,,,0.322,,,0.306,0.34,0.092884787,312,3359,0.076203936,0.109565638,0.04954955,88,1776,0.032868699,0.066230401,0.002164837,14,6467,,,461.9285714,,,,,,,,,,,2.997268486,,,,,,,,,2.976438694,3.005076934,,,,,,,,,3.033531673,,,,,,-5429.563167,,,,,0.820771967,40849,49769,0.685017376,0.956526557,58000,,,49826.38298,66173.61702,,,,,,,,,,65804,46034.80851,85573.19149,57961,50173.42553,65748.57447,,,,,,0.531914894,525,987,,,,,,,,0.262327586,,58000,,,4.237288136,2,472,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,26.62052442,12,45078,13.75521343,46.5006989,,,,,,,,,,,,,27.75529085,14.3415638,48.48290748,,,,,,800,,,-888,9,0.653838065,3109,4755,,,0.611,,,,,1.688141497,,,,,0.798498617,2021,2531,0.771651548,0.825345686,0.101729819,247,2428,0.067680538,0.1357791,0.761754247,1928,2531,0.718238759,0.805269735,6467,,,,,0.262254523,1696,6467,,,0.226843977,1467,6467,,,0.004484305,29,6467,,,0.002628731,17,6467,,,0.006185248,40,6467,,,0.000618525,4,6467,,,0.019483532,126,6467,,,0.954693057,6174,6467,,,0.007460212,45,6032,0,0.019348015,0.495283748,3203,6467,,,1,6497,6497,, -19,187,19187,IA,Webster County,2024,1,9752.731674,656,100148,8567.82506,10937.63829,0,,,,2,,,,2,14436.04417,8817.910814,22295.29938,1,,,,2,9289.666709,8051.933194,10527.40022,,,,,2,,0.147,,,0.124,0.174,3.354155701,,,2.63565064,4.175274075,4.420593423,,,3.530314741,5.407797942,0.063265982,191,3019,0.054582023,0.071949942,0,,,,,,,0.145695364,0.089422782,0.201967947,0.07063197,0.040014137,0.101249804,0.056474385,0.047387387,0.065561382,,,,,,,0.189,,,0.152,0.234,0.344,,,0.279,0.415,7.6,0.119976051,0.097,,,0.274,,,0.224,0.331,0.803616314,29733,36999,,,0.20674366,,,0.168523313,0.247628297,0.28125,9,32,0.188019808,0.378196141,678.4,252,37147,,,20.76677316,169,8138,17.63578275,23.89776358,,,,,,,60.77348066,38.08641677,92.01178008,48.33836858,33.06340833,68.23935359,15.48974943,12.48367051,18.49582835,,,,32.69754768,16.89530002,57.11603555,0.059181337,1654,27948,0.049649422,0.068713252,0.000430721,16,37147,,,2321.6875,0.00081909,30,36626,,,1220.866667,0.003221755,118,36626,,,310.3898305,2203,,,,,,,,,2222,0.5,,,,,,0.36,,,0.5,0.45,,,,,,0.54,0.16,0.31,0.46,0.918121662,23032,25086,0.902914628,0.933328695,0.639710943,5577,8718,0.577332884,0.702089002,0.029703493,563,18954,,,0.147,1129,,0.088617021,0.205382979,,,,,,,0.674157303,0.316431556,1,0.388304094,0.205842987,0.5707652,0.110879025,0.061958205,0.159799846,4.23544825,113150,26715,3.645708225,4.825188276,0.219984408,1693,7696,0.170278352,0.269690464,11.84483269,44,37147,,,97.87372091,178,181867,83.49526766,112.2521742,,,,,,,133.3656644,66.57565916,238.628013,,,,100.631174,84.93983276,116.3225153,,,,7.3,,,,,1,,,,,0.123037488,1920,15605,0.100431485,0.145643491,0.105943153,0.083170453,0.128715852,0.015956424,0.008295701,0.023617148,0.008651073,0.002808971,0.014493176,0.829192902,14486,17470,0.810406478,0.847979326,,,,,,,,,,0.820286659,0.703364599,0.93720872,0.844811265,0.829548638,0.860073892,0.176,,17470,0.145413282,0.206586718,74.83114626,,,73.91895486,75.74333765,,,,,,,,,,86.43654522,71.4083441,101.4647463,75.09298089,74.14753758,76.03842421,,,,495.8983552,656,100148,455.5125,536.2842103,,,,,,,804.0092421,503.8683115,1217.279655,,,,487.8793886,445.7643606,529.9944167,,,,54.39808519,20,36766,33.22776366,84.01343062,,,,,,,,,,,,,45.59004033,24.2747764,77.96035742,,,,6.8359375,21,3072,4.231553055,10.44945662,,,,,,,,,,,,,,,,,,,,,,0.107,,,0.091,0.125,0.159,,,0.135,0.183,0.093,,,0.079,0.109,57.2,18,31469,,,0.097,3610,,,,0.119976051,4560.649612,38013,,,19.2687067,21,108985,11.92763315,29.45426502,,,,,,,,,,,,,18.17093506,10.58523929,29.09342727,,,,0.336,,,0.32,0.352,0.071086501,1425,20046,0.059171607,0.083001395,0.02993868,249,8317,0.020406765,0.039470595,0.002075029,76,36626,,,481.9210526,0.842014925,282.075,335,,,,,,,,2.797158353,,,,,,,2.63258782,2.607239277,2.858529429,2.668144966,,,,,,,2.156265823,2.566539632,2.776892282,0.067725336,,,,,1031.737067,,,,,0.760145673,45085,59311,0.676336276,0.84395507,67110,,,62519.19149,71700.80851,,,,,,,,,,57750,22792.89362,92707.10638,66515,62361.46809,70668.53192,,,,,,0.520816327,2552,4900,,,48.33289166,,,,,0.256578751,,67110,,,6.918819188,15,2168,,,6.648234112,17,255707,3.872841365,10.64446684,,,,,,,,,,,,,4.505803475,2.160707905,8.286333016,,,,18.550596,34,181867,12.60422997,26.33109027,18.6949804,,,,,,,,,,,,,19.1158922,12.70237154,27.62778659,,,,13.74630912,25,181867,8.895886471,20.29226396,,,,,,,,,,,,,12.10121713,7.285723216,18.89754955,,,,17.20719417,44,255707,12.50277363,23.09985502,,,,,,,,,,,,,18.47379425,13.2571137,25.06178789,,,,30.28571429,,3500,,,32,74,0.636841165,17822,27985,,,0.677,,,,,135.4848857,,,,,0.696829675,10858,15582,0.667064115,0.726595235,0.100716587,1532,15211,0.079500239,0.121932934,0.821589013,12802,15582,0.79446819,0.848709836,36626,,,,,0.213345711,7814,36626,,,0.196417845,7194,36626,,,0.045650631,1672,36626,,,0.006088571,223,36626,,,0.011740294,430,36626,,,0.001255938,46,36626,,,0.062605799,2293,36626,,,0.850789057,31161,36626,,,0.011069053,386,34872,0.00455891,0.017579196,0.475536504,17417,36626,,,0.332441417,12300,36999,, -19,189,19189,IA,Winnebago County,2024,1,4336.76395,135,28126,3185.648149,5487.879752,0,,,,2,,,,2,,,,2,,,,2,4192.880667,3041.892311,5343.869023,,,,,2,,0.124,,,0.103,0.148,3.07155782,,,2.385998904,3.821825391,4.487407905,,,3.553910224,5.481846472,0.06741573,48,712,0.048997804,0.085833657,0,,,,,,,,,,,,,0.061191626,0.042340177,0.080043076,,,,,,,0.17,,,0.131,0.212,0.382,,,0.307,0.46,9.2,0.028455591,0.066,,,0.237,,,0.188,0.288,0.853076131,9110,10679,,,0.196667313,,,0.158150577,0.237880185,0.2,1,5,0.015594715,0.47750127,328.5,35,10656,,,7.489160426,19,2537,4.508963802,11.6952517,,,,,,,,,,,,,5.361930295,2.770587627,9.366213158,,,,,,,0.058357439,464,7951,0.048825524,0.067889354,0.000281532,3,10656,,,3552,0.00065932,7,10617,,,1516.714286,0.000188377,2,10617,,,5308.5,2243,,,,,,,,,2203,0.54,,,,,,,,,0.55,0.58,,,,,,,,,0.59,0.945022907,6807,7203,0.931199726,0.958846089,0.731954225,1663,2272,0.622926233,0.840982218,0.026759168,135,5045,,,0.121,276,,0.074531915,0.167468085,,,,,,,,,,0.407216495,0.159611845,0.654821145,0.04725993,0.017819674,0.076700186,3.986476151,114667,28764,3.20268775,4.770264552,0.23255814,540,2322,0.143576912,0.321539367,13.13813814,14,10656,,,70.62146893,37,52392,49.72403147,97.34239224,,,,,,,,,,,,,73.40911951,51.13214145,102.0943147,,,,7,,,,,0,,,,,0.069459757,315,4535,0.048841445,0.09007807,0.057016575,0.035570296,0.078462853,0.008379272,0.000781208,0.015977337,0.007717751,0,0.015523089,0.780442113,4166,5338,0.739787543,0.821096683,,,,,,,,,,,,,0.776959396,0.743807095,0.810111696,0.192,,5338,0.146864722,0.237135278,79.67169031,,,78.42730402,80.9160766,,,,,,,,,,,,,79.72231684,78.47341699,80.97121669,,,,305.3811331,135,28126,250.4938021,360.268464,,,,,,,,,,,,,303.3336669,247.0650778,359.602256,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.094,,,0.079,0.109,0.151,,,0.129,0.175,0.083,,,0.069,0.097,66.5,6,9023,,,0.066,710,,,,0.028455591,309.1984563,10866,,,,,,,,,,,,,,,,,,,,,,,,,,0.317,,,0.301,0.334,0.06856634,385,5615,0.055459957,0.081672723,0.034609121,85,2456,0.022694227,0.046524014,0.000753509,8,10617,,,1327.125,0.92972561,152.475,164,,,,,,,,3.131117364,,,,,,,,2.622713905,3.229869243,2.909340681,,,,,,,,2.357669232,3.014288604,0.028472122,,,,,1447.986933,,,,,0.871820297,45720,52442,0.768463714,0.975176879,66776,,,57474.04255,76077.95745,,,,53250,39061.74468,67438.25532,,,,42250,23582.93617,60917.06383,65304,54555.57447,76052.42553,,,,,,0.323503903,746,2306,,,,,,,,0.241134539,,66776,,,11.0701107,6,542,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.93915689,11,73632,7.457573293,26.73027829,,,,,,,,,,,,,16.36685563,8.170275361,29.28482571,,,,,,1000,,,-888,14,0.735674677,5970,8115,,,0.702,,,,,0.518543465,,,,,0.753713146,3400,4511,0.718376334,0.789049958,0.063337117,279,4405,0.039127126,0.087547108,0.856351142,3863,4511,0.824959686,0.887742598,10617,,,,,0.217481398,2309,10617,,,0.222850146,2366,10617,,,0.015070171,160,10617,,,0.004144297,44,10617,,,0.011208439,119,10617,,,0.000376754,4,10617,,,0.058302722,619,10617,,,0.898182161,9536,10617,,,0.010219122,104,10177,0,0.021101567,0.495996986,5266,10617,,,1,10679,10679,, -19,191,19191,IA,Winneshiek County,2024,1,4310.013822,170,53991,3248.110626,5371.917017,0,,,,2,,,,2,,,,2,,,,2,4189.038816,3114.329905,5263.747726,,,,,2,,0.113,,,0.093,0.136,2.902757659,,,2.25298398,3.652763405,4.454539379,,,3.571391981,5.417941341,0.061128527,78,1276,0.047983673,0.074273381,0,,,,,,,,,,,,,0.059950042,0.04652379,0.073376293,,,,,,,0.151,,,0.117,0.193,0.343,,,0.275,0.416,9.3,0.016771827,0.068,,,0.226,,,0.183,0.276,0.743148979,14915,20070,,,0.196674088,,,0.158666783,0.236906246,0.333333333,5,15,0.193378406,0.471634149,211.1,42,19892,,,4.72921434,31,6555,3.213271698,6.712742258,,,,,,,,,,,,,4.804506296,3.21765327,6.900072472,,,,,,,0.038932633,534,13716,0.031783697,0.04608157,0.001005429,20,19892,,,994.6,0.000650846,13,19974,,,1536.461539,0.002453189,49,19974,,,407.6326531,1026,,,,,,,,,1033,0.62,,,,,,,,,0.62,0.61,,,,,,,,,0.61,0.951845787,12789,13436,0.94252881,0.961162765,0.744259699,2820,3789,0.662723425,0.825795973,0.031239153,360,11524,,,0.086,312,,0.056212766,0.115787234,,,,,,,,,,0.733944954,0.430655054,1,0.096261407,0.053070754,0.13945206,3.704787638,122032,32939,3.346957688,4.062617587,0.150644468,561,3724,0.088182911,0.213106026,19.10315705,38,19892,,,54.01350338,54,99975,40.57660612,70.47590537,,,,,,,,,,,,,54.79452055,40.92316881,71.85572365,,,,8,,,,,0,,,,,0.09800363,810,8265,0.074483247,0.121524013,0.084610668,0.062267944,0.106953393,0.007743497,0.000464806,0.015022187,0.009679371,0.00224109,0.017117652,0.693896453,7492,10797,0.661949935,0.72584297,,,,,,,,,,,,,0.700581941,0.66494652,0.736217362,0.198,,10797,0.164299592,0.231700408,82.35459389,,,81.25308704,83.45610074,,,,,,,,,,,,,82.41536058,81.31284812,83.51787303,,,,220.4720515,170,53991,183.9443008,256.9998023,,,,,,,,,,,,,215.9355999,179.3156411,252.5555587,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.088,,,0.074,0.103,0.148,,,0.126,0.172,0.077,,,0.064,0.091,,,,,,0.068,1380,,,,0.016771827,353.1475971,21056,,,,,,,,,,,,,,,,,,,,,,,,,,0.292,,,0.275,0.309,0.045684273,461,10091,0.037343848,0.054024699,0.021648409,83,3834,0.014499473,0.028797345,0.001151497,23,19974,,,868.4347826,0.962060302,191.45,199,,,,,,,,3.489774937,,,,,,,,,3.522409803,3.641418333,,,,,,,,,3.689577929,0.027970808,,,,,1692.619267,,,,,0.877171383,45598,51983,0.787642015,0.966700751,72032,,,61992.51064,82071.48936,,,,11296,8711.659575,13880.34043,,,,,,,68514,61259.02128,75768.97872,,,,,,0.263157895,650,2470,,,,,,,,0.263896602,,72032,,,17.1858217,16,931,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.28376226,23,141245,10.32250843,24.43363864,,,,,,,,,,,,,15.65283503,9.689351588,23.92702107,,,,26.11111111,,1800,,,12,35,0.748155039,12064,16125,,,0.733,,,,,43.51669202,,,,,0.764419567,6282,8218,0.739355191,0.789483943,0.088190765,699,7926,0.064461562,0.111919967,0.848138233,6970,8218,0.821088277,0.875188189,19974,,,,,0.183688795,3669,19974,,,0.232552318,4645,19974,,,0.00876139,175,19974,,,0.002453189,49,19974,,,0.011565035,231,19974,,,5.00651E-05,1,19974,,,0.026434365,528,19974,,,0.943626715,18848,19974,,,0.004344867,83,19103,0,0.009350945,0.495594273,9899,19974,,,0.601743896,12077,20070,, -19,193,19193,IA,Woodbury County,2024,1,8548.78854,1540,292720,7930.174857,9167.402222,0,39905.67204,29978.36903,52068.24573,,6083.931047,3326.141717,10207.80252,1,12207.87121,9031.450324,16139.45315,,5050.208521,3978.989911,6321.08904,,8437.293072,7689.138668,9185.447477,,,,,2,,0.16,,,0.138,0.185,3.531136871,,,2.948862769,4.186849922,4.772148743,,,4.143076487,5.43923133,0.070029674,708,10110,0.065055097,0.07500425,0,0.076056338,0.04848027,0.103632406,0.108108108,0.06726067,0.148955546,0.081515499,0.063343488,0.099687511,0.066284486,0.057054748,0.075514224,0.066963458,0.060290941,0.073635974,0.095744681,0.053683641,0.137805721,0.075342466,0.045068103,0.105616829,0.188,,,0.159,0.221,0.385,,,0.35,0.422,8.5,0.053665913,0.086,,,0.287,,,0.252,0.325,0.909449599,96348,105941,,,0.20699369,,,0.182620594,0.232853293,0.295454546,13,44,0.216510832,0.376352951,778.4,822,105607,,,22.40704873,590,26331,20.59898088,24.21511658,73.05936073,49.97254866,103.1380185,,,,29.02621723,19.72190635,41.20039841,43.8071226,38.65746443,48.95678076,12.39543262,10.69025454,14.1006107,96.49122807,48.1680734,172.6494606,28.21869489,19.30156641,39.8363775,0.088367403,7712,87272,0.077643999,0.099090807,0.000634428,67,105607,,,1576.223881,0.000690823,73,105671,,,1447.547945,0.002592954,274,105671,,,385.6605839,2526,,,,,8691,1390,11290,2914,2358,0.52,,,,,0.21,0.26,0.52,0.25,0.54,0.55,,,,,0.27,0.39,0.26,0.16,0.57,0.875898454,59103,67477,0.865218221,0.886578688,0.605814221,15796,26074,0.564790471,0.646837971,0.027353035,1542,56374,,,0.155,4112,,0.103765957,0.206234043,0.556634304,0.390890574,0.722378035,0.03003003,0,0.155961721,0.48125,0.326147078,0.636352922,0.218971399,0.159889971,0.278052826,0.118852459,0.091982741,0.145722177,4.449819392,125654,28238,4.031737697,4.867901088,0.258786417,6973,26945,0.221652428,0.295920406,13.06731561,138,105607,,,63.07805426,326,516820,56.23065644,69.92545207,141.3518376,70.56232803,252.9174828,,,,78.04251021,45.46263816,124.953619,28.72103042,18.76153063,42.0829641,71.82500816,63.16078177,80.48923456,,,,7.5,,,,,0,,,,,0.119544592,4725,39525,0.103941145,0.135148039,0.093621926,0.079895095,0.107348758,0.022896901,0.015726993,0.030066809,0.012523719,0.008386474,0.016660964,0.822570726,42800,52032,0.804440878,0.840700573,0.60952381,0.446508379,0.77253924,0.797441365,0.708690265,0.886192464,0.669664269,0.480727726,0.858600811,0.797335203,0.747496086,0.847174321,0.855057103,0.846659972,0.863454233,0.117,,52032,0.102214006,0.131785994,75.80644291,,,75.28335042,76.32953541,,,,79.59903838,75.69173905,83.50633772,76.56459111,70.13405122,82.99513099,89.82234756,82.26558951,97.37910561,75.71259106,75.11627084,76.30891128,,,,439.7962261,1540,292720,417.2178866,462.3745657,1826.303097,1409.502174,2327.773217,327.569816,221.0099793,467.6262806,551.471847,397.4524005,745.4297317,256.03615,200.6914702,321.9270187,444.1324942,418.3144855,469.9505029,,,,54.88474204,66,120252,42.44785552,69.82684899,,,,,,,154.1544628,73.92305682,283.4955456,36.65465209,18.93999361,64.02830059,50.36043684,35.07788947,70.03917663,,,,5.703609008,58,10169,4.330989446,7.373237265,,,,,,,,,,,,,4.97600853,3.306521531,7.191717779,,,,,,,0.108,,,0.095,0.124,0.154,,,0.136,0.173,0.101,,,0.088,0.115,148.6,128,86138,,,0.086,9010,,,,0.053665913,5483.153667,102172,,,11.22327258,35,311852,7.817420572,15.60885528,,,,,,,,,,,,,12.36575145,8.149108123,17.99151913,,,,0.332,,,0.319,0.344,0.111474159,6721,60292,0.095984797,0.126963521,0.038357035,1087,28339,0.02763363,0.049080439,0.001485744,157,105671,,,673.0636943,0.882696924,1176.635,1333,,,0.053025478,333,6280,0.026207825,0.079843131,2.829214632,,,,,,2.617442756,2.384425207,2.483763215,3.122917372,2.837043933,,,,,,2.884634217,2.081065338,2.443750174,3.168653598,0.118280309,,,,,75.27335333,,,,,0.791411371,44433,56144,0.746501829,0.836320913,66830,,,60797.48936,72862.51064,,,,98301,83676.65957,112925.3404,55886,38791.70213,72980.29787,63058,60670.25532,65445.74468,71455,67929.38298,74980.61702,,,,,,0.569115617,10721,18838,,,47.91266316,,,,,0.292802634,,66830,,,9.012699713,66,7323,,,3.599208728,26,722381,2.351122637,5.273674707,,,,,,,,,,,,,2.305023799,1.191039433,4.026412701,,,,18.08928655,89,516820,14.4690943,22.34012173,17.22069579,,,,,,,,,,,,,21.95175435,17.20667123,27.60103538,,,,9.287566271,48,516820,6.847918197,12.31396544,,,,,,,,,,,,,10.61051257,7.54511168,14.50491998,,,,10.93605729,79,722381,8.658179542,13.62959036,,,,,,,,,,,,,11.33303368,8.627230327,14.61878774,,,,50.40650407,,12300,,,90,530,0.633282144,45362,71630,,,0.688,,,,,171.1659606,,,,,0.681902777,27480,40299,0.661431338,0.702374215,0.111280449,4381,39369,0.094491352,0.128069546,0.840938981,33889,40299,0.825676672,0.85620129,105671,,,,,0.25540593,26989,105671,,,0.158321583,16730,105671,,,0.051641415,5457,105671,,,0.032279433,3411,105671,,,0.028740146,3037,105671,,,0.007570667,800,105671,,,0.191500033,20236,105671,,,0.682779571,72150,105671,,,0.050732223,4992,98399,0.042955097,0.058509349,0.496985928,52517,105671,,,0.161278447,17086,105941,, -19,195,19195,IA,Worth County,2024,1,6687.650411,90,20085,4574.34793,9440.966969,0,,,,2,,,,2,,,,2,,,,2,7165.089118,4868.330428,10170.27207,,,,,2,,0.127,,,0.105,0.15,3.046164999,,,2.394327747,3.841657686,4.468712041,,,3.572613051,5.487983065,0.061261261,34,555,0.041309791,0.081212732,0,,,,,,,,,,,,,0.064150943,0.043290547,0.08501134,,,,,,,0.167,,,0.131,0.206,0.373,,,0.297,0.458,9.2,0.019926416,0.069,,,0.241,,,0.195,0.292,0.586994492,4369,7443,,,0.197812523,,,0.159758889,0.24184106,0.142857143,1,7,0.008995928,0.386311364,243.7,18,7385,,,13.84083045,20,1445,8.454338813,21.37604007,,,,,,,,,,,,,14.55938697,8.765702042,22.73628626,,,,,,,0.059919875,344,5741,0.04919647,0.070643279,0.00013541,1,7385,,,7385,0.000136631,1,7319,,,7319,,0,7319,,,,1887,,,,,,,,,1898,0.54,,,,,,,,,0.54,0.52,,,,,,,,,0.52,0.943258427,5037,5340,0.925845599,0.960671255,0.69168121,1189,1719,0.599951736,0.783410684,0.026805659,108,4029,,,0.136,204,,0.084765957,0.187234043,,,,,,,,,,0.125,0,0.424191,0.105916728,0.048251306,0.163582149,4.020482191,128571,31979,3.283558104,4.757406279,0.114006515,175,1535,0.06571793,0.162295099,18.95734597,14,7385,,,107.9709558,40,37047,77.1360338,147.0257969,,,,,,,,,,,,,114.8501206,82.05060997,156.3932668,,,,7.2,,,,,0,,,,,0.059375,190,3200,0.04067851,0.078071491,0.040617129,0.019140972,0.062093285,0.0125,0,0.025864088,0.0140625,0.004248112,0.023876888,0.803635433,3139,3906,0.766872074,0.840398791,,,,,,,,,,,,,0.723825227,0.686765627,0.760884827,0.335,,3906,0.281835002,0.388164998,79.01140088,,,76.9653985,81.05740326,,,,,,,,,,,,,78.58504416,76.41474931,80.75533901,,,,304.1354366,90,20085,240.4064418,379.5747891,,,,,,,,,,,,,318.5644261,251.4060633,398.150874,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.095,,,0.081,0.111,0.153,,,0.131,0.178,0.082,,,0.069,0.097,,,,,,0.069,520,,,,0.019926416,151.4009058,7598,,,,,,,,,,,,,,,,,,,,,,,,,,0.312,,,0.295,0.329,0.068111455,286,4199,0.055005072,0.081217838,0.037267081,60,1610,0.024160698,0.050373464,0.000136631,1,7319,,,7319,,,,,,,,,,,3.293398183,,,,,,,,,3.259235185,3.375676592,,,,,,,,,3.291499653,0.026748697,,,,,1142.43665,,,,,0.837331058,43182,51571,0.744719568,0.929942549,71329,,,64273,78385,,,,,,,,,,,,,69949,64221.51064,75676.48936,,,,,,0.316122234,300,949,,,,,,,,0.223948184,,71329,,,4.878048781,2,410,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,19.16149306,10,52188,9.188680724,35.23866797,,,,,,,,,,,,,20.33925884,9.753465192,37.40462117,,,,,,700,,,-888,18,0.750722175,4418,5885,,,0.712,,,,,2.055925179,,,,,0.773040752,2466,3190,0.749515756,0.796565749,0.054333765,168,3092,0.02927129,0.079396239,0.838871473,2676,3190,0.805038942,0.872704004,7319,,,,,0.207951906,1522,7319,,,0.226806941,1660,7319,,,0.008607733,63,7319,,,0.004098921,30,7319,,,0.006694904,49,7319,,,0.000273261,2,7319,,,0.035114087,257,7319,,,0.934553901,6840,7319,,,0,0,7013,0,0.010193835,0.489957645,3586,7319,,,1,7443,7443,, -19,197,19197,IA,Wright County,2024,1,6319.62459,184,33610,4803.080255,7836.168925,0,,,,2,,,,2,,,,2,,,,2,6185.856921,4568.937589,7802.776253,,,,,2,,0.146,,,0.123,0.17,3.289491727,,,2.585466155,4.066771206,4.563793935,,,3.613637277,5.55604824,0.053333333,60,1125,0.040202941,0.066463726,0,,,,,,,,,,0.055813954,0.034115838,0.077512069,0.051204819,0.034439428,0.06797021,,,,,,,0.18,,,0.145,0.218,0.397,,,0.322,0.473,8.7,0.039211756,0.085,,,0.268,,,0.219,0.317,0.865178089,11198,12943,,,0.177153133,,,0.142699508,0.215790362,0.333333333,2,6,0.110000414,0.553214291,344.2,44,12785,,,25.06356702,69,2753,19.50095117,31.71954816,,,,,,,,,,76.01351351,55.44477836,101.7120617,9.286412512,5.591026962,14.50188347,,,,,,,0.062467998,610,9765,0.051744594,0.073191402,0.000391083,5,12785,,,2557,0.000394291,5,12681,,,2536.2,0.00126173,16,12681,,,792.5625,1536,,,,,,,,,1567,0.54,,,,,,,,,0.54,0.32,,,,,,,,,0.32,0.927132836,8194,8838,0.907885365,0.946380306,0.653314917,1892,2896,0.566764794,0.739865041,0.025652633,170,6627,,,0.153,475,,0.099382979,0.206617021,,,,,,,,,,0.404282116,0.278943662,0.52962057,0.139118457,0.086861114,0.191375801,3.788746785,107536,28383,3.179962319,4.397531251,0.280112924,893,3188,0.196533375,0.363692472,27.37583105,35,12785,,,75.90492908,48,63237,55.96630268,100.6389237,,,,,,,,,,,,,82.62910798,60.03843635,110.9257207,,,,7.3,,,,,0,,,,,0.068996416,385,5580,0.049971357,0.088021475,0.051865332,0.032493841,0.071236824,0.011648746,0.002211713,0.021085778,0.007168459,0.000503757,0.01383316,0.825958188,4741,5740,0.801150497,0.85076588,,,,,,,,,,0.746388443,0.586772078,0.906004808,0.842553192,0.814199267,0.870907117,0.175,,5740,0.138978378,0.211021622,78.11529994,,,76.73717642,79.49342345,,,,,,,,,,79.09719954,71.13142928,87.06296979,78.12376292,76.70439225,79.54313358,,,,367.7723541,184,33610,309.8445018,425.7002063,,,,,,,,,,,,,370.1133778,308.5482811,431.6784744,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.105,,,0.09,0.121,0.157,,,0.136,0.18,0.093,,,0.079,0.108,75.6,8,10576,,,0.085,1100,,,,0.039211756,518.7323162,13229,,,,,,,,,,,,,,,,,,,,,,,,,,0.325,,,0.31,0.339,0.074966333,501,6683,0.06066846,0.089264205,0.036717063,119,3241,0.024802169,0.048631956,0.001971453,25,12681,,,507.24,0.929166667,167.25,180,,,,,,,,2.868654065,,,,,,,,2.62401034,2.973909517,2.898174426,,,,,,,,2.646561183,3.003927629,0.016727476,,,,,-3114.733333,,,,,0.693954478,38477,55446,0.621580857,0.7663281,67291,,,60818.82979,73763.17021,,,,,,,,,,34531,8969.978723,60092.02128,61215,54897.7234,67532.2766,,,,,,0.502681444,1406,2797,,,,,,,,0.253733783,,67291,,,7.462686567,6,804,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.26265641,10,88789,5.400881524,20.71242614,,,,,,,,,,,,,,,,,,,,,1400,,,-888,25,0.672473118,6254,9300,,,0.641,,,,,9.882013737,,,,,0.740926857,3981,5373,0.704366623,0.77748709,0.075860728,390,5141,0.047979499,0.103741956,0.79527266,4273,5373,0.764195732,0.826349588,12681,,,,,0.247614541,3140,12681,,,0.235943538,2992,12681,,,0.009147544,116,12681,,,0.007412665,94,12681,,,0.00591436,75,12681,,,0.004337197,55,12681,,,0.148016718,1877,12681,,,0.821701759,10420,12681,,,0.038264463,463,12100,0.025479256,0.051049669,0.489235865,6204,12681,,,1,12943,12943,, -20,000,20000,KS,Kansas,2024,,8079.058751,40603,8157132,7961.254459,8196.863044,0,10228.31109,8851.22606,11605.39613,,3073.441501,2696.861305,3450.021698,,14678.78537,14018.98474,15338.58601,,7104.515486,6796.381508,7412.649465,,7662.542619,7529.397026,7795.688212,,10907.64282,7508.319426,15318.38594,,,0.142,,,0.135,0.149,3.152798269,,,3.000004721,3.305591817,4.955397945,,,4.762430286,5.148365604,0.073881916,18441,249601,0.072855708,0.074908123,0,0.068576389,0.053981837,0.083170941,0.085693448,0.079644846,0.091742051,0.140568142,0.135349038,0.145787246,0.070717481,0.068285696,0.073149267,0.066925304,0.065750215,0.068100393,0.098121086,0.07148051,0.124761661,0.091395992,0.083971911,0.098820073,0.164,,,0.156,0.172,0.367,,,0.357,0.376,7.1,0.084397924,0.099,,,0.228,,,0.22,0.236,0.799273626,2348170,2937880,,,0.202728683,,,0.194347192,0.211376801,0.19943556,424,2126,0.188844663,0.210222615,506.1,14851,2934582,,,18.98192393,12950,682228,18.65498893,19.30885893,13.08139535,10.38851615,16.25898,4.666949512,3.793066273,5.681843575,34.31692404,32.53199789,36.1018502,33.42067492,32.38560419,34.45574565,14.5008015,14.15318741,14.84841559,48.33836858,33.06340833,68.23935359,18.78698688,17.28371485,20.29025892,0.108667596,260427,2396547,0.103901638,0.113433553,0.000778305,2284,2934582,,,1284.843257,0.000631905,1856,2937150,,,1582.516164,0.002374751,6975,2937150,,,421.0967742,2576,,,,,3170,1476,4049,2409,2522,0.48,,,,,0.34,0.36,0.42,0.3,0.48,0.47,,,,,0.41,0.49,0.38,0.37,0.48,0.917795299,1768151,1926520,0.915703237,0.919887362,0.705948853,527665,747455,0.698221437,0.713676269,0.026648185,40104,1504943,,,0.137,92995,,0.127468085,0.146531915,0.204130117,0.160349551,0.247910683,0.147674362,0.118750146,0.176598577,0.322968416,0.294351397,0.351585436,0.228755261,0.214901223,0.2426093,0.091962055,0.087241323,0.096682788,4.411963957,134159,30408,4.329724887,4.494203027,0.210085198,147038,699897,0.202807459,0.217362937,13.22164451,3880,2934582,,,82.35108368,12012,14586329,80.87837201,83.82379535,95.76478099,77.9491831,113.5803789,27.14863656,22.33110931,31.96616381,106.06754,99.09897164,113.0361084,55.21922143,51.77771801,58.66072484,86.78168523,85.03996555,88.52340492,,,,6.7,,,,,0.380952381,,,,,0.122794958,140230,1141985,0.120060945,0.125528971,0.09788724,0.095443133,0.100331346,0.020801499,0.019476166,0.022126832,0.011064068,0.009953884,0.012174253,0.777636033,1124055,1445477,0.774224539,0.781047527,0.734985423,0.689653617,0.780317229,0.68408165,0.664556447,0.703606854,0.761393406,0.746382961,0.776403851,0.755088015,0.747156573,0.763019458,0.789706902,0.786560233,0.792853572,0.216,,1445477,0.212847616,0.219152385,77.00510164,,,76.90246392,77.10773937,73.69420734,72.60811948,74.78029521,86.22793274,85.09658164,87.35928384,70.95051684,70.4750191,71.42601458,79.35844524,78.88479487,79.83209561,77.36040528,77.24638743,77.47442313,83.20826497,58.4259205,107.9906094,402.2140429,40603,8157132,398.1596307,406.268455,536.5960618,483.6687864,589.5233372,176.4434947,159.5353697,193.3516196,675.0582222,651.9114502,698.2049942,339.5052778,325.7931208,353.2174348,388.820127,384.3564701,393.283784,630.2992184,450.2950025,858.2886402,57.3140009,1795,3131870,54.66254401,59.9654578,,,,25.45064235,16.13352407,38.18845968,128.0297811,112.127208,143.9323542,60.26081152,53.97438716,66.54723589,50.355895,47.29981839,53.4119716,,,,6.067679781,1544,254463,5.765019747,6.370339814,,,,2.83520378,1.816568559,4.218558487,12.76693193,11.09125542,14.44260844,6.885084658,6.098053927,7.67211539,4.944347992,4.617667076,5.271028908,,,,14.56058242,11.61409079,18.02699181,0.095823151,,,0.090059102,0.101914798,0.158086226,,,0.150365589,0.166125773,0.1,,,0.095,0.105,143.2,3493,2440053,,,0.099,291430,,,,0.084397924,240797.2352,2853118,,,17.9531349,1573,8761701,17.06591351,18.84035629,28.73728375,17.55347949,44.38240402,3.66406396,1.75706109,6.738344078,31.98855565,27.04729498,36.92981631,12.26652411,10.18957818,14.34347003,17.71339394,16.69622079,18.7305671,,,,0.330131201,,,0.317613158,0.342894701,0.133893958,227573,1699651,0.127936511,0.139851405,0.050015373,36602,731815,0.044057926,0.05597282,0.001494306,4389,2937150,,,669.2071087,0.875852024,32021.15,36560,,,0.057410738,9736,169585,0.052274299,0.062547177,3.052288895,,,,,,3.337536174,2.414485975,2.64053837,3.250274654,3.002528475,,,,,,3.434899594,2.321912993,2.594497275,3.213002323,0.200182643,,,,,594.9951,,,,,0.789391284,46387,58763,0.781431499,0.797351068,68827,,,67498.48936,70155.51064,57098,46145.82979,68050.17021,85774,81097.40426,90450.59575,46145,43951.46809,48338.53192,57773,56040.57447,59505.42553,73300,72555.31915,74044.68085,,,,,,0.431923527,206494,478080,,,58.80154825,,,,,0.221908058,,,,,6.977687627,,,,,5.508383893,1124,20405259,5.186353312,5.830414474,6.753147888,3.371147094,12.08324698,3.409777293,2.110705886,5.212206797,29.08174599,26.00402329,32.15946869,8.596506737,7.439302144,9.75371133,3.058792057,2.782839117,3.334744997,,,,18.84218288,2721,14586329,18.11867222,19.56569355,18.65445377,17.96514318,11.25865958,27.19944267,7.51405451,5.105435481,10.66560059,14.80100867,12.13408909,17.46792825,12.07812791,10.41562589,13.74062992,20.26015584,19.39103899,21.12927269,,,,15.69963217,2290,14586329,15.05660724,16.34265709,13.8039324,7.89014007,22.41672139,3.783006734,2.203740831,6.056960246,36.46816544,32.38206277,40.5542681,13.3441799,11.65237994,15.03597986,14.81394396,14.09433002,15.5335579,,,,14.04049809,2865,20405259,13.52636415,14.55463203,19.64552113,13.43752191,27.73361415,4.871110418,3.286517744,6.953813007,17.38121845,15.00186282,19.76057408,12.20541758,10.82654078,13.58429439,14.44501588,13.84533658,15.04469518,,,,,,,,,,,0.654396891,1372303,2097050,,,,,,,,71.51696116,,,,,0.668510885,767875,1148635,0.664335767,0.672686002,0.107440509,120045,1117316,0.104569377,0.110311641,0.879439509,1010155,1148635,0.876312584,0.882566433,2937150,,,,,0.235204876,690832,2937150,,,0.171600701,504017,2937150,,,0.057721941,169538,2937150,,,0.012316702,36176,2937150,,,0.03221354,94616,2937150,,,0.001513712,4446,2937150,,,0.130410432,383035,2937150,,,0.743386616,2183438,2937150,,,0.021457198,59124,2755439,0.020598328,0.022316068,0.497657593,1461695,2937150,,,0.277009612,813821,2937880,, -20,001,20001,KS,Allen County,2024,1,9000.243195,238,33709,7143.066648,10857.41974,0,,,,2,,,,2,,,,2,,,,2,9125.719296,7141.344871,11110.09372,,,,,2,,0.161,,,0.135,0.189,3.483835821,,,2.794021704,4.27912749,5.285389368,,,4.361510475,6.270126206,0.075025694,73,973,0.058472969,0.091578419,0,,,,,,,,,,,,,0.071428571,0.054695371,0.088161772,,,,,,,0.202,,,0.16,0.245,0.417,,,0.35,0.485,7.9,0.041826123,0.119,,,0.286,,,0.236,0.338,0.757065304,9483,12526,,,0.175917849,,,0.143766527,0.211424734,0.111111111,1,9,0.006152008,0.326116915,248.7,31,12464,,,25.44529262,80,3144,20.17653454,31.66886926,,,,,,,,,,,,,27.1950272,21.19985785,34.35928082,,,,,,,0.114407662,1099,9606,0.097726811,0.131088513,0.000641849,8,12464,,,1558,0.000635981,8,12579,,,1572.375,0.001907942,24,12579,,,524.125,3043,,,,,,,,,2967,0.41,,,,,,,,,0.41,0.35,,,,,,,,,0.34,0.926363849,7913,8542,0.903397313,0.949330386,0.589584851,1619,2746,0.496730791,0.68243891,0.028833967,182,6312,,,0.213,587,,0.133170213,0.292829787,,,,,,,,,,0.703488372,0.453961181,0.953015563,0.220067454,0.150555457,0.28957945,3.921151586,100107,25530,3.309885306,4.532417867,0.305725603,849,2777,0.20828255,0.403168656,11.23234917,14,12464,,,80.3923145,50,62195,59.66872536,105.9872444,,,,,,,,,,,,,89.62982881,66.52498653,118.1657554,,,,8.3,,,,,0,,,,,0.107317073,550,5125,0.07829043,0.136343717,0.088495575,0.058271616,0.118719534,0.005658537,0,0.012938574,0.018536585,0.008726467,0.028346704,0.798474366,4501,5637,0.766377814,0.830570917,,,,,,,,,,,,,0.81056866,0.787778561,0.833358759,0.18,,5637,0.139175186,0.220824814,75.76148462,,,74.23667676,77.28629248,,,,,,,,,,,,,75.60063409,74.00058209,77.20068609,,,,488.286558,238,33709,422.1314979,554.4416181,,,,,,,,,,,,,496.974717,427.2991674,566.6502665,,,,94.45100354,12,12705,48.8042118,164.9868953,,,,,,,,,,,,,93.44921035,44.8125287,171.856425,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.113,,,0.096,0.13,0.17,,,0.146,0.194,0.106,,,0.091,0.122,123.4,13,10533,,,0.119,1490,,,,0.041826123,559.2570886,13371,,,,,,,,,,,,,,,,,,,,,,,,,,0.357,,,0.34,0.373,0.140411952,968,6894,0.118965144,0.161858761,0.050663871,145,2862,0.03398302,0.067344723,0.001430956,18,12579,,,698.8333333,0.895756458,242.75,271,,,,,,,,3.163011844,,,,,,,,,3.148201865,2.975479435,,,,,,,,,2.974561965,0.021250964,,,,,795.2596667,,,,,0.739362693,35709,48297,0.578839369,0.899886017,50995,,,43993.80851,57996.19149,,,,,,,,,,47292,16072.59575,78511.40426,55543,51769.55319,59316.44681,,,,,,0.458627859,1103,2405,,,70.88149652,,,,,0.26779096,,50995,,,4.237288136,3,708,,,,,,,,,,,,,,,,,,,,,,,,,,20.92244141,12,62195,10.44440737,37.43602706,19.29415548,,,,,,,,,,,,,23.69210168,11.8270118,42.39171434,,,,19.29415548,12,62195,9.969571684,33.70300675,,,,,,,,,,,,,21.51115891,11.11512971,37.57566559,,,,11.41213795,10,87626,5.472563732,20.98732801,,,,,,,,,,,,,,,,,,,,,,,,,,0.619884271,5892,9505,,,0.666,,,,,33.10177221,,,,,0.727966272,3626,4981,0.691763412,0.764169131,0.071518721,340,4754,0.044348512,0.09868893,0.812286689,4046,4981,0.771959349,0.85261403,12579,,,,,0.223467684,2811,12579,,,0.212894507,2678,12579,,,0.019953891,251,12579,,,0.011129661,140,12579,,,0.01049368,132,12579,,,0.000476986,6,12579,,,0.042690198,537,12579,,,0.888782892,11180,12579,,,0.002363867,28,11845,0,0.009932214,0.504014628,6340,12579,,,0.533370589,6681,12526,, -20,003,20003,KS,Anderson County,2024,1,8093.747836,116,21166,5756.836424,10430.65925,0,,,,2,,,,2,,,,2,,,,2,7847.101749,5459.159065,10235.04443,,,,,2,,0.164,,,0.138,0.197,3.548829936,,,2.818554928,4.371882705,4.707552238,,,3.76682295,5.707492552,0.056521739,39,690,0.039290947,0.073752531,0,,,,,,,,,,,,,0.056145675,0.038569515,0.073721836,,,,,,,0.21,,,0.171,0.257,0.392,,,0.321,0.467,8,0.056260321,0.107,,,0.282,,,0.233,0.336,0.493236345,3865,7836,,,0.18339317,,,0.148317871,0.222223231,0.333333333,5,15,0.193378406,0.471634149,205.7,16,7778,,,23.12138728,40,1730,16.51825806,31.48476703,,,,,,,,,,,,,22.85714286,16.00886185,31.64392031,,,,,,,0.116210938,714,6144,0.099530086,0.132891789,0.000385703,3,7778,,,2592.666667,0.000257202,2,7776,,,3888,0.000514403,4,7776,,,1944,1573,,,,,,,,,1528,0.53,,,,,,,,,0.54,0.31,,,,,,,,,0.31,0.864575363,4520,5228,0.827405031,0.901745696,0.532515337,868,1630,0.392227507,0.672803168,0.022727273,99,4356,,,0.177,336,,0.110276596,0.243723404,,,,,,,,,,0.76,0.317439853,1,0.122049511,0.043303544,0.200795478,4.107617326,104506,25442,3.440176243,4.775058409,0.234252993,450,1921,0.109492804,0.359013182,8.999742865,7,7778,,,111.970684,44,39296,81.35807044,150.315417,,,,,,,,,,,,,110.8767375,79.56706114,150.4168142,,,,7.8,,,,,0,,,,,0.122028526,385,3155,0.074092174,0.169964878,0.099838449,0.050836399,0.148840499,0.007606973,0,0.020703701,0.022187005,9.31967E-05,0.044280813,0.783599763,2647,3378,0.728656772,0.838542754,,,,,,,,,,,,,0.778269618,0.691370733,0.865168502,0.355,,3378,0.259606412,0.450393588,77.16805422,,,75.16835783,79.16775062,,,,,,,,,,,,,77.27346252,75.24619842,79.30072661,,,,406.4028881,116,21166,327.5070862,485.2986899,,,,,,,,,,,,,401.4063167,321.6638946,481.1487388,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.112,,,0.096,0.131,0.169,,,0.146,0.194,0.099,,,0.084,0.115,109.7,7,6383,,,0.107,830,,,,0.056260321,455.8211185,8102,,,,,,,,,,,,,,,,,,,,,,,,,,0.335,,,0.317,0.353,0.145045476,606,4178,0.121215689,0.168875264,0.056092843,116,2068,0.038220503,0.073965184,0.000514403,4,7776,,,1944,0.857954546,94.375,110,,,,,,,,3.227738671,,,,,,,,,3.284231706,3.236477469,,,,,,,,,3.264858795,0.054078681,,,,,689.4448,,,,,0.773115329,40570,52476,0.596509286,0.949721371,59683,,,50721.80851,68644.19149,,,,,,,,,,11830,3508.638298,20151.3617,69437,59403.46809,79470.53192,,,,,,0.452631579,559,1235,,,,,,,,0.228808874,,59683,,,3.623188406,2,552,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,30.94791648,17,54931,18.02830181,49.55061225,,,,,,,,,,,,,28.9524986,16.20449368,47.75274348,,,,,,,,,,,0.652106621,3792,5815,,,0.644,,,,,14.15161074,,,,,0.782938389,2478,3165,0.724483525,0.841393252,0.110493625,338,3059,0.057503456,0.163483795,0.717535545,2271,3165,0.657463209,0.777607881,7776,,,,,0.248199589,1930,7776,,,0.210390947,1636,7776,,,0.007973251,62,7776,,,0.009130658,71,7776,,,0.007073045,55,7776,,,0.000643004,5,7776,,,0.028935185,225,7776,,,0.923996914,7185,7776,,,0,0,7277,0,0.01047895,0.491640947,3823,7776,,,1,7836,7836,, -20,005,20005,KS,Atchison County,2024,1,9135.860146,221,44389,7323.025605,10948.69469,0,,,,2,,,,2,29957.00079,15479.21945,52328.85166,1,,,,2,8043.776109,6323.738722,9763.813496,,,,,2,,0.15,,,0.127,0.176,3.359365279,,,2.674751011,4.13302112,5.397273433,,,4.446403481,6.349807555,0.069968554,89,1272,0.055949691,0.083987416,0,,,,,,,,,,,,,0.065335753,0.050745308,0.079926198,,,,,,,0.19,,,0.152,0.231,0.437,,,0.37,0.505,7.7,0.09062007,0.104,,,0.267,,,0.219,0.315,0.822730609,13450,16348,,,0.192265932,,,0.157790096,0.231454169,0.105263158,2,19,0.021173544,0.243494433,326.4,53,16239,,,13.93072289,74,5312,10.93861375,17.48874689,,,,,,,,,,,,,12.76867419,9.743843573,16.43581473,,,,,,,0.090590346,1111,12264,0.076292473,0.104888218,0.000492641,8,16239,,,2029.875,0.000807052,13,16108,,,1239.076923,0.001986591,32,16108,,,503.375,3835,,,,,,,3966,,3926,0.46,,,,,,,0.32,,0.47,0.35,,,,,,,0.33,,0.35,0.937730398,9412,10037,0.920281952,0.955178843,0.578744819,1955,3378,0.487992831,0.669496808,0.034909412,237,6789,,,0.172,596,,0.111234043,0.232765957,,,,,,,0.306818182,0.029238912,0.584397451,0.027472528,0,0.220126369,0.093385214,0.036656921,0.150113507,4.389649043,106190,24191,3.774285219,5.005012867,0.222130014,803,3615,0.13398465,0.310275377,11.08442638,18,16239,,,107.6040172,87,80852,86.18640669,132.7291577,,,,,,,,,,,,,106.5335931,83.93635442,133.3426779,,,,7.9,,,,,0,,,,,0.116721854,705,6040,0.083477509,0.1499662,0.102244389,0.067441701,0.137047077,0.010761589,0.001171775,0.020351404,0.004966887,4.08825E-05,0.009892892,0.781717888,5952,7614,0.739410475,0.824025301,,,,,,,,,,,,,0.789410555,0.744815867,0.834005244,0.29,,7614,0.233094688,0.346905312,76.33935946,,,74.88631173,77.7924072,,,,,,,,,,,,,77.3282928,75.87711367,78.77947193,,,,412.3225988,221,44389,354.9112127,469.733985,,,,,,,1065.805975,667.9349304,1613.643055,,,,378.3812588,320.4496412,436.3128763,,,,55.46927002,10,18028,26.59967105,102.0099625,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.105,,,0.089,0.121,0.164,,,0.141,0.186,0.102,,,0.087,0.118,65.7,9,13706,,,0.104,1700,,,,0.09062007,1533.654069,16924,,,,,,,,,,,,,,,,,,,,,,,,,,0.331,,,0.315,0.348,0.11245213,969,8617,0.0933883,0.131515959,0.041210224,158,3834,0.028103841,0.054316607,0.001055376,17,16108,,,947.5294118,0.830427632,126.225,152,,,,,,,,3.055139905,,,,,,,,,3.094116037,3.03629221,,,,,,,,,3.120441163,0.055802468,,,,,312.2755,,,,,0.70097376,36785,52477,0.632728014,0.769219506,59085,,,51809.76596,66360.23404,,,,,,,51250,49589.06383,52910.93617,68566,53814.17021,83317.82979,58061,52484.82979,63637.17021,,,,,,0.558285164,1159,2076,,,51.88632542,,,,,0.213810612,,59085,,,5.707762557,5,876,,,,,,,,,,,,,,,,,,,,,,,,,,22.11769547,17,80852,12.642174,35.91775176,21.02607233,,,,,,,,,,,,,25.03318527,14.30862833,40.65232454,,,,13.60510563,11,80852,6.791619709,24.34329208,,,,,,,,,,,,,15.41933585,7.697276899,27.58945109,,,,21.12118279,24,113630,13.53274035,31.42664578,,,,,,,,,,,,,19.95589747,12.18958061,30.82026512,,,,,,,,,,,0.60242915,7440,12350,,,0.663,,,,,35.55566135,,,,,0.701883562,4099,5840,0.665138106,0.738629017,0.108786611,598,5497,0.070019344,0.147553878,0.817636986,4775,5840,0.772037169,0.863236804,16108,,,,,0.217655823,3506,16108,,,0.186118699,2998,16108,,,0.043953315,708,16108,,,0.008008443,129,16108,,,0.006083933,98,16108,,,0.000869133,14,16108,,,0.03451701,556,16108,,,0.880990812,14191,16108,,,0.008277825,128,15463,0,0.017664839,0.5104296,8222,16108,,,0.332823587,5441,16348,, -20,007,20007,KS,Barber County,2024,1,9574.918812,86,11616,6362.464015,13838.4236,0,,,,2,,,,2,,,,2,,,,2,10491.95006,6914.261204,15265.2365,,,,,2,,0.157,,,0.132,0.186,3.55464977,,,2.764483843,4.393662613,4.959975337,,,3.957835716,6.031417715,0.055393586,19,343,0.031185291,0.079601881,1,,,,,,,,,,,,,0.05448718,0.029301153,0.079673206,,,,,,,0.195,,,0.153,0.238,0.386,,,0.316,0.461,8,0.032205165,0.12,,,0.274,,,0.224,0.324,0.472800378,1999,4228,,,0.164855467,,,0.132720557,0.201504405,0.111111111,1,9,0.006152008,0.326116915,243.3,10,4110,,,14.6878825,12,817,7.589443218,25.65677485,,,,,,,,,,,,,14.12429379,6.773147876,25.97507916,,,,,,,0.127955944,395,3087,0.108892115,0.147019774,0.000486618,2,4110,,,2055,,0,4122,,,,0.000485201,2,4122,,,2061,5135,,,,,,,,,5112,0.36,,,,,,,,,0.36,0.27,,,,,,,,,0.27,0.915379214,2607,2848,0.900604991,0.930153436,0.570276498,495,868,0.454334712,0.686218284,0.020650264,47,2276,,,0.176,168,,0.108085106,0.243914894,,,,,,,,,,0.866666667,0.476838991,1,0.326979472,0.156018539,0.497940405,4.818447772,112000,23244,3.353656407,6.283239136,0.144490645,139,962,0.063387628,0.225593661,29.19708029,12,4110,,,127.5452102,28,21953,84.75286592,184.3383407,,,,,,,,,,,,,134.9460216,88.93027855,196.3393765,,,,7.1,,,,,0,,,,,0.121761658,235,1930,0.080894576,0.16262874,0.092708333,0.052035729,0.133380937,0.038341969,0.012806319,0.063877619,0.007253886,0,0.016517003,0.861490032,1642,1906,0.805623615,0.917356448,,,,,,,,,,,,,0.851255634,0.787188798,0.915322471,0.213,,1906,0.159835002,0.266164998,75.18822172,,,72.58404571,77.79239773,,,,,,,,,,,,,74.51040582,71.68264312,77.33816853,,,,468.79393,86,11616,363.3088567,595.3517198,,,,,,,,,,,,,496.6510598,382.4818341,634.2123156,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.111,,,0.094,0.129,0.167,,,0.144,0.191,0.102,,,0.087,0.118,145.3,5,3442,,,0.12,500,,,,0.032205165,156.5493065,4861,,,,,,,,,,,,,,,,,,,,,,,,,,0.341,,,0.324,0.357,0.15273909,329,2154,0.128909303,0.176568877,0.072671443,71,977,0.050033145,0.095309741,0.001455604,6,4122,,,687,,,,,,,,,,,2.793953815,,,,,,,,,2.770798063,2.6862511,,,,,,,,,2.690685039,0.033845009,,,,,-734.9265,,,,,0.655185352,34924,53304,0.53431179,0.776058914,59845,,,51666.61702,68023.38298,,,,,,,,,,,,,53870,48819.2766,58920.7234,,,,,,0.42877095,307,716,,,,,,,,0.22818949,,59845,,,7.407407407,2,270,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.702248876,2342,3335,,,0.53,,,,,0.005122327,,,,,0.807453416,1430,1771,0.762541802,0.85236503,0.078478002,132,1682,0.03762471,0.119331295,0.828345568,1467,1771,0.774471488,0.882219647,4122,,,,,0.23556526,971,4122,,,0.251576904,1037,4122,,,0.009461427,39,4122,,,0.014556041,60,4122,,,0.006065017,25,4122,,,0.000970403,4,4122,,,0.056283358,232,4122,,,0.89640951,3695,4122,,,0.007808433,30,3842,0,0.022826027,0.492479379,2030,4122,,,1,4228,4228,, -20,009,20009,KS,Barton County,2024,1,10126.83459,449,69871,8684.077762,11569.59142,0,,,,2,,,,2,,,,2,10860.18838,7475.653968,15251.74225,,9407.533804,7857.216913,10957.85069,,,,,2,,0.169,,,0.141,0.198,3.695939853,,,2.961656004,4.470797471,4.787824743,,,3.93820483,5.664973662,0.068790397,149,2166,0.058131446,0.079449348,0,,,,,,,,,,0.068833652,0.047135674,0.09053163,0.067524116,0.055052029,0.079996203,,,,,,,0.194,,,0.154,0.237,0.397,,,0.336,0.46,7.1,0.125130011,0.114,,,0.296,,,0.249,0.345,0.796257796,20299,25493,,,0.174635059,,,0.142525794,0.211401691,0,0,17,0,0.135527658,392.6,99,25216,,,27.21433401,161,5916,23.01054564,31.41812238,,,,,,,,,,42.04398448,32.44865959,53.58850958,22.07505519,17.75095122,27.13399063,,,,,,,0.133003434,2634,19804,0.116322583,0.149684285,0.000634518,16,25216,,,1576,0.000558214,14,25080,,,1791.428571,0.002511962,63,25080,,,398.0952381,2732,,,,,,,,,2712,0.46,,,,,,,,0.4,0.46,0.3,,,,,,,,0.31,0.3,0.896486175,15563,17360,0.874165627,0.918806723,0.608158622,3742,6153,0.535663716,0.680653528,0.026269702,345,13133,,,0.176,1038,,0.116425532,0.235574468,,,,,,,,,,0.377792823,0.247426205,0.508159442,0.140862322,0.089939424,0.191785221,4.101648135,104026,25362,3.589265018,4.614031253,0.289291598,1756,6070,0.214741206,0.36384199,19.8286802,50,25216,,,92.07675642,119,129240,75.53305807,108.6204548,,,,,,,,,,70.23528822,38.39828564,117.8428793,95.74233822,76.97683993,114.5078365,,,,6.5,,,,,1,,,,,0.102069614,1085,10630,0.075984889,0.12815434,0.091382576,0.06463965,0.118125502,0.00752587,0.001152835,0.013898906,0.011288805,0.004551148,0.018026463,0.818782637,10035,12256,0.782777513,0.854787761,,,,,,,,,,0.814776275,0.708491022,0.921061528,0.833001592,0.806576157,0.859427028,0.112,,12256,0.082765988,0.141234012,75.43060823,,,74.28960672,76.57160974,,,,,,,,,,74.52408284,70.84276833,78.20539735,76.08204123,74.85997005,77.30411242,,,,482.9738042,449,69871,434.6303696,531.3172387,,,,,,,,,,480.8164038,338.5391207,662.7420767,461.980219,410.328189,513.6322489,,,,62.52298639,17,27190,36.42194362,100.1053579,,,,,,,,,,,,,58.60727796,29.256542,104.8646093,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.116,,,0.098,0.134,0.164,,,0.141,0.187,0.106,,,0.091,0.123,90.6,19,20981,,,0.114,2920,,,,0.125130011,3462.847921,27674,,,14.3503842,11,76653,7.163660088,25.67680132,,,,,,,,,,,,,17.81867073,8.895016227,31.88252396,,,,0.315,,,0.3,0.329,0.165995397,2308,13904,0.14216561,0.189825184,0.058235199,361,6199,0.041554348,0.07491605,0.002073365,52,25080,,,482.3076923,0.906573209,291.01,321,,,,,,,,2.981644118,,,,,,,,2.675895864,3.129348915,3.076604238,,,,,,,,2.704293871,3.282866287,0.126023388,,,,,1320.392067,,,,,0.730062308,37377,51197,0.63950496,0.820619657,56711,,,50744.02128,62677.97872,64266,54007.2766,74524.7234,,,,25583,8742.489362,42423.51064,48517,36874.95745,60159.04255,55743,53319.51064,58166.48936,,,,,,0.593422655,2436,4105,,,53.78584022,,,,,0.240799845,,56711,,,10.27617213,16,1557,,,,,,,,,,,,,,,,,,,,,,,,,,23.65342012,28,129240,15.45119933,34.65774087,21.66511916,,,,,,,,,,,,,24.1644687,14.95818698,36.93795729,,,,15.47508511,20,129240,9.452584018,23.90001385,,,,,,,,,,,,,15.31877412,8.756003,24.87672944,,,,14.74459092,27,183118,9.716778324,21.45260567,,,,,,,,,,,,,14.81272009,9.283052816,22.42663623,,,,,,,,,,,0.583639224,11130,19070,,,0.659,,,,,62.26571898,,,,,0.673595226,6773,10055,0.64100765,0.706182803,0.081520074,798,9789,0.059208315,0.103831832,0.838090502,8427,10055,0.811140656,0.865040349,25080,,,,,0.239553429,6008,25080,,,0.210127592,5270,25080,,,0.012519936,314,25080,,,0.013157895,330,25080,,,0.00430622,108,25080,,,0.001076555,27,25080,,,0.167424242,4199,25080,,,0.794098884,19916,25080,,,0.019428045,464,23883,0.009600325,0.029255765,0.503389155,12625,25080,,,0.420782176,10727,25493,, -20,011,20011,KS,Bourbon County,2024,1,10584.53181,280,39572,8649.04307,12520.02055,0,,,,2,,,,2,,,,2,,,,2,10961.73739,8865.06138,13058.41341,,,,,2,,0.158,,,0.131,0.186,3.430161477,,,2.677696983,4.24708108,4.980699879,,,4.036658864,5.992672176,0.072052402,99,1374,0.058379879,0.085724925,0,,,,,,,,,,,,,0.065457413,0.051843737,0.079071089,,,,,,,0.2,,,0.16,0.244,0.407,,,0.339,0.481,7.3,0.111820765,0.113,,,0.274,,,0.224,0.328,0.53091922,7624,14360,,,0.159512147,,,0.127855082,0.194453854,0.181818182,2,11,0.044108943,0.367070091,607.4,87,14323,,,25.79365079,91,3528,20.76743863,31.66888745,,,,,,,,,,,,,28.69536203,22.95258567,35.43853867,,,,,,,0.109676845,1232,11233,0.094187483,0.125166207,0.000418907,6,14323,,,2387.166667,0.000275995,4,14493,,,3623.25,0.000827986,12,14493,,,1207.75,2228,,,,,,,,,2244,0.46,,,,,,,,,0.46,0.41,,,,,,,,,0.41,0.897223109,8433,9399,0.865493731,0.928952487,0.617001828,2025,3282,0.524833592,0.709170064,0.034741036,218,6275,,,0.242,895,,0.164553192,0.319446809,,,,,,,0.4,0,0.868248413,0.345238095,0,0.749680325,0.123209169,0.077975329,0.168443009,4.155709209,107583,25888,3.507493937,4.803924481,0.182232958,679,3726,0.117564285,0.24690163,13.96355512,20,14323,,,85.28315383,62,72699,65.38610502,109.3291543,,,,,,,,,,,,,92.09940596,70.28154934,118.5501917,,,,8,,,,,0,,,,,0.139358108,825,5920,0.103085203,0.175631014,0.08634436,0.059146667,0.113542053,0.027871622,0.012549233,0.04319401,0.039695946,0.014999401,0.064392491,0.718925672,4604,6404,0.6687497,0.769101643,,,,,,,,,,,,,0.742045659,0.68354738,0.800543938,0.236,,6404,0.182066184,0.289933816,74.82796601,,,73.30860753,76.34732448,,,,,,,,,,,,,74.46699145,72.87890023,76.05508267,,,,535.2455374,280,39572,467.69818,602.7928948,,,,,,,,,,,,,543.2003596,471.3110062,615.0897129,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.108,,,0.091,0.126,0.168,,,0.143,0.193,0.1,,,0.085,0.116,111,13,11708,,,0.113,1630,,,,0.111820765,1696.656473,15173,,,,,,,,,,,,,,,,,,,,,,,,,,0.343,,,0.326,0.361,0.141898118,1078,7597,0.11925982,0.164536416,0.044490971,170,3821,0.030193099,0.058788843,0.001586973,23,14493,,,630.1304348,0.970520231,167.9,173,,,,,,,,2.849069488,,,,,,,,,2.844081558,2.495368522,,,,,,,,,2.490751299,0.023349055,,,,,781.7636,,,,,0.852484875,39453,46280,0.734967577,0.970002172,44954,,,40263.10638,49644.89362,,,,,,,39167,4917.638298,73416.3617,,,,57348,46342.21277,68353.78723,,,,,,0.575455334,1327,2306,,,28.08317168,,,,,0.303777195,,44954,,,5.580357143,5,896,,,,,,,,,,,,,,,,,,,,,,,,,,15.89928204,11,72699,7.624323739,29.23934576,15.13088213,,,,,,,,,,,,,15.75921792,7.206117938,29.91590451,,,,,,,,,,,,,,,,,,,,,,,,,,,14.70184655,15,102028,8.228511911,24.2484601,,,,,,,,,,,,,16.36804086,9.161068214,26.99659422,,,,,,,,,,,0.620734542,6676,10755,,,0.6,,,,,39.35851643,,,,,0.710468085,4174,5875,0.674400598,0.746535572,0.088507959,506,5717,0.05602598,0.120989937,0.832340426,4890,5875,0.798839157,0.865841694,14493,,,,,0.259849583,3766,14493,,,0.198716622,2880,14493,,,0.029945491,434,14493,,,0.01235079,179,14493,,,0.011453805,166,14493,,,0.000620989,9,14493,,,0.033809425,490,14493,,,0.888497896,12877,14493,,,0.002444988,33,13497,0,0.008911614,0.501621472,7270,14493,,,0.481963788,6921,14360,, -20,013,20013,KS,Brown County,2024,1,10758.68414,205,26025,8473.94575,13043.42254,0,18005.92392,9844.006158,30210.88077,1,,,,2,,,,2,,,,2,9961.322556,7559.941696,12362.70342,,,,,2,,0.161,,,0.137,0.188,3.529093348,,,2.757913755,4.334490745,5.027708981,,,4.021642141,6.019350662,0.058823529,47,799,0.042508279,0.07513878,0,,,,,,,,,,,,,0.058441558,0.039916898,0.076966219,,,,,,,0.199,,,0.162,0.241,0.377,,,0.306,0.449,7.1,0.13682885,0.112,,,0.266,,,0.218,0.318,0.600546908,5710,9508,,,0.173847416,,,0.139766481,0.211082949,0.28,7,25,0.173955028,0.39080618,338.4,32,9455,,,25.38576406,51,2009,18.90136876,33.37759153,,,,,,,,,,,,,21.85089974,15.13238328,30.53444222,,,,,,,0.119869085,879,7333,0.103188234,0.136549936,0.000846113,8,9455,,,1181.875,0.00053396,5,9364,,,1872.8,0.003310551,31,9364,,,302.0645161,4029,,,,,5314,,,,3830,0.45,,,,,0.29,,,,0.46,0.27,,,,,0.35,,,,0.26,0.935208204,6019,6436,0.910347841,0.960068567,0.633958634,1318,2079,0.544688982,0.723228286,0.023580271,120,5089,,,0.174,409,,0.110851064,0.237148936,0.313609468,0.131952221,0.495266714,,,,,,,0.518518519,0.406614831,0.630422206,0.104178929,0.06890669,0.139451168,3.829479769,106000,27680,3.168600588,4.49035895,0.15895125,388,2441,0.108816889,0.20908561,23.26811211,22,9455,,,111.0180142,53,47740,83.16011088,145.214296,,,,,,,,,,,,,99.2240173,70.55797606,135.6424981,,,,7.7,,,,,0,,,,,0.083888149,315,3755,0.060692057,0.107084241,0.065503356,0.043786227,0.087220484,0.015978695,0.001671448,0.030285942,0.003728362,0,0.010267755,0.781362007,3488,4464,0.748616718,0.814107297,0.896774194,0.787700116,1,,,,,,,,,,0.773747841,0.718144892,0.82935079,0.168,,4464,0.134574529,0.201425471,73.44792717,,,71.79090487,75.10494946,,,,,,,,,,,,,73.9943705,72.25726891,75.73147209,,,,559.9679777,205,26025,477.0573779,642.8785775,1047.771301,678.0623408,1546.717131,,,,,,,,,,530.3142598,443.0673346,617.5611849,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.109,,,0.094,0.127,0.169,,,0.146,0.194,0.107,,,0.091,0.123,77.7,6,7723,,,0.112,1070,,,,0.13682885,1366.099237,9984,,,,,,,,,,,,,,,,,,,,,,,,,,0.334,,,0.318,0.348,0.152808536,759,4967,0.130170239,0.175446834,0.052695582,130,2467,0.036014731,0.069376433,0.000961128,9,9364,,,1040.444444,,,,,,,,,,,2.880691947,,,,,,,,,2.988097091,2.728656517,,,,,,,,,2.837960353,0.02715109,,,,,-918.3239,,,,,0.785859423,39836,50691,0.662182817,0.909536029,56391,,,48207.85106,64574.14894,35625,21041.17021,50208.82979,,,,,,,42938,40031.95745,45844.04255,59875,48428.3617,71321.6383,,,,,,0.513774105,746,1452,,,21.4805257,,,,,0.242166303,,56391,,,9.538950715,6,629,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,32.73809524,22,67200,20.51678999,49.56586962,,,,,,,,,,,,,28.7883695,16.45504058,46.75050847,,,,,,,,,,,0.629275158,4471,7105,,,0.615,,,,,10.16833064,,,,,0.725709607,2659,3664,0.694093374,0.75732584,0.098510882,344,3492,0.069249927,0.127771837,0.820960699,3008,3664,0.781226678,0.860694719,9364,,,,,0.254698847,2385,9364,,,0.218069201,2042,9364,,,0.017086715,160,9364,,,0.092268261,864,9364,,,0.009290901,87,9364,,,0.000640752,6,9364,,,0.059803503,560,9364,,,0.812046134,7604,9364,,,0.0012354,11,8904,0,0.009390437,0.501281504,4694,9364,,,1,9508,9508,, -20,015,20015,KS,Butler County,2024,1,8129.745838,998,188776,7356.612979,8902.878698,0,,,,2,,,,2,,,,2,6025.014151,3627.452099,9408.805928,1,7998.330314,7165.795103,8830.865525,,,,,2,,0.133,,,0.11,0.157,3.330241934,,,2.731496249,4.042493687,4.973135737,,,4.242225213,5.763697027,0.069855885,349,4996,0.062787479,0.076924291,0,,,,,,,,,,0.086363636,0.049244584,0.123482689,0.067684141,0.060361566,0.075006715,,,,,,,0.158,,,0.124,0.194,0.399,,,0.353,0.447,8.3,0.065182171,0.089,,,0.232,,,0.195,0.274,0.634876818,42778,67380,,,0.169414157,,,0.143197728,0.198206661,0.302325581,13,43,0.222432688,0.383807328,493.5,335,67889,,,12.90812453,221,17121,11.20626746,14.60998159,,,,,,,,,,16.30434783,10.09264828,24.92292759,12.8,10.9504881,14.6495119,,,,,,,0.085445264,4737,55439,0.07472186,0.096168668,0.000780686,53,67889,,,1280.924528,0.000263775,18,68240,,,3791.111111,0.001362837,93,68240,,,733.7634409,1854,,,,,,,,,1822,0.4,,,,,,,,,0.4,0.49,,,,,0.38,0.63,0.58,0.37,0.49,0.942132436,41972,44550,0.933590626,0.950674245,0.725727439,12296,16943,0.675307428,0.77614745,0.027772691,910,32766,,,0.091,1493,,0.055255319,0.126744681,0.132450331,0,0.460704032,,,,,,,0.137479542,0.01714871,0.257810374,0.100811957,0.071744572,0.129879341,3.868578485,140971,36440,3.453246853,4.283910118,0.141901096,2396,16885,0.106096228,0.177705963,11.04744509,75,67889,,,83.17557798,279,335435,73.41557844,92.93557752,,,,,,,,,,,,,83.48881858,73.07677661,93.90086056,,,,8.1,,,,,1,,,,,0.133078317,3305,24835,0.108301837,0.157854797,0.10836039,0.085303415,0.131417364,0.016911617,0.010723275,0.023099959,0.015300987,0.008187636,0.022414337,0.816983106,25775,31549,0.796473674,0.837492537,,,,,,,,,,0.721867008,0.656000914,0.787733102,0.759675406,0.731449698,0.787901113,0.359,,31549,0.32749868,0.39050132,76.2601445,,,75.60522579,76.9150632,,,,,,,,,,80.07170836,75.95046199,84.19295472,76.5075708,75.80723136,77.20791025,,,,421.0053397,998,188776,393.9788065,448.0318729,,,,,,,,,,282.8802713,175.1073465,432.4125438,408.5883171,380.5568264,436.6198079,,,,46.52584843,35,75227,32.40695814,64.70619242,,,,,,,,,,,,,47.60922349,32.12174317,67.96512687,,,,5.706414797,29,5082,3.821675549,8.195363526,,,,,,,,,,,,,5.220796171,3.345062618,7.768130867,,,,,,,0.096,,,0.081,0.111,0.156,,,0.135,0.178,0.094,,,0.081,0.109,90.6,51,56309,,,0.089,5980,,,,0.065182171,4294.201403,65880,,,16.84903267,34,201792,11.66844493,23.54483433,,,,,,,,,,,,,15.7905719,10.49272035,22.82177291,,,,0.344,,,0.328,0.36,0.107282083,4128,38478,0.091792722,0.122771445,0.038716194,690,17822,0.027992789,0.049439598,0.000674091,46,68240,,,1483.478261,0.901279448,1109.475,1231,,,0.051308103,202,3937,0.022451984,0.080164222,3.239564675,,,,,,,2.688597949,2.923842594,3.28082712,3.198211589,,,,,,,2.546899501,2.831949299,3.255174282,0.050660992,,,,,1468.171611,,,,,0.766883951,48941,63818,0.699904696,0.833863207,80214,,,75305.06383,85122.93617,69542,16378.93617,122705.0638,,,,78405,58752.57447,98057.42553,69527,52190.82979,86863.17021,77478,74219.2766,80736.7234,,,,,,0.240085807,4141,17248,,,72.67267778,,,,,0.192871569,,80214,,,8.070617907,32,3965,,,2.344411031,11,469201,1.17032154,4.194798927,,,,,,,,,,,,,,,,,,,24.68362356,78,335435,19.44788789,30.89523566,23.25338739,,,,,,,,,,,,,24.03245244,18.46719631,30.7479464,,,,15.80037861,53,335435,11.83556783,20.66728425,,,,,,,,,,,,,15.88653633,11.67282935,21.12572549,,,,13.00082481,61,469201,9.944600834,16.70010335,,,,,,,,,,,,,13.72776163,10.3972726,17.78590747,,,,,,,,,,,0.663199755,32520,49035,,,0.72,,,,,38.15992906,,,,,0.781542811,19351,24760,0.760728271,0.802357351,0.083595692,2018,24140,0.065556117,0.101635267,0.875484653,21677,24760,0.85150035,0.899468955,68240,,,,,0.244783118,16704,68240,,,0.1639068,11185,68240,,,0.022728605,1551,68240,,,0.011034584,753,68240,,,0.016031653,1094,68240,,,0.001670574,114,68240,,,0.058572685,3997,68240,,,0.867980657,59231,68240,,,0.00261969,167,63748,0.000273818,0.004965562,0.488657679,33346,68240,,,0.46101217,31063,67380,, -20,017,20017,KS,Chase County,2024,1,3335.292183,27,6928,1599.402243,6133.721074,1,,,,2,,,,2,,,,2,,,,2,2838.026647,1141.033905,5847.419571,1,,,,2,,0.15,,,0.125,0.176,3.434501189,,,2.707289732,4.229030204,4.745998156,,,3.808083409,5.814388347,0.056497175,10,177,0.022483434,0.090510917,1,,,,,,,,,,,,,,,,,,,,,,0.181,,,0.141,0.221,0.389,,,0.312,0.471,5.9,0.316882499,0.078,,,0.259,,,0.211,0.312,0.653576983,1681,2572,,,0.166943642,,,0.13312353,0.204375577,0.384615385,5,13,0.234541684,0.524881883,192.5,5,2598,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.092217484,173,1876,0.076728122,0.107706846,,0,2598,,,,0,0,2548,,,-2548,,0,2548,,,,1441,,,,,,,,,1454,0.44,,,,,,,,,0.44,0.39,,,,,,,,,0.39,0.932856357,1695,1817,0.903834141,0.961878573,0.56,322,575,0.436020145,0.683979855,0.021551724,30,1392,,,0.151,74,,0.091425532,0.210574468,,,,,,,,,,0.197183099,0,0.526377891,0.098434005,0.022370081,0.174497928,4.097441861,105714,25800,2.708775486,5.486108235,0.198181818,109,550,0.093494531,0.302869106,0,0,2598,,,106.5124772,14,13144,58.23136242,178.7098381,,,,,,,,,,,,,109.2436975,58.16766799,186.8100497,,,,7.7,,,,,0,,,,,0.078703704,85,1080,0.046253761,0.111153646,0.064126394,0.018304331,0.109948457,0.007407407,0,0.029101858,0.009259259,0,0.028030977,0.796684119,913,1146,0.742010128,0.85135811,,,,,,,,,,,,,0.767749699,0.65974042,0.875758978,0.279,,1146,0.214132185,0.343867815,82.84594564,,,80.02402289,85.66786839,,,,,,,,,,,,,83.26310644,80.42055845,86.10565442,,,,229.9431763,27,6928,145.764249,345.0276654,,,,,,,,,,,,,199.538781,120.1353809,311.6045238,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.104,,,0.089,0.121,0.159,,,0.137,0.183,0.098,,,0.083,0.115,225.7,5,2215,,,0.078,200,,,,0.316882499,884.1021729,2790,,,,,,,,,,,,,,,,,,,,,,,,,,0.332,,,0.314,0.349,0.109131403,147,1347,0.090067573,0.128195233,0.047101449,26,552,0.030420598,0.0637823,0.000784929,2,2548,,,1274,,,,,,,,,,,3.23528583,,,,,,,,,3.207581997,3.088532536,,,,,,,,,3.045912577,,,,,,4776.192,,,,,0.78107013,37589,48125,0.600093375,0.962046885,58580,,,49745.10638,67414.89362,,,,,,,,,,,,,53265,49709.59575,56820.40426,,,,,,0.326203209,122,374,,,,,,,,0.233117105,,58580,,,8.333333333,1,120,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.743640898,1491,2005,,,0.578,,,,,6.599124896,,,,,0.725821596,773,1065,0.685661169,0.765982023,0.048638132,50,1028,0,0.097822029,0.787793427,839,1065,0.722398281,0.853188574,2548,,,,,0.193877551,494,2548,,,0.242543171,618,2548,,,0.021585557,55,2548,,,0.009419152,24,2548,,,0.003139717,8,2548,,,0,0,2548,,,0.07299843,186,2548,,,0.871271586,2220,2548,,,0.004493464,11,2448,0,0.025045463,0.467425432,1191,2548,,,1,2572,2572,, -20,019,20019,KS,Chautauqua County,2024,1,9914.673925,74,8613,6285.052778,14876.87895,1,,,,2,,,,2,,,,2,,,,2,9678.869467,5827.311686,15114.75362,1,,,,2,,0.182,,,0.155,0.211,3.866499478,,,3.086115515,4.794103934,5.302109654,,,4.253060618,6.446493992,0.080952381,17,210,0.044060547,0.117844215,1,,,,,,,,,,,,,0.097142857,0.053264334,0.14102138,,,,,,,0.229,,,0.187,0.274,0.432,,,0.35,0.517,6.2,0.175732317,0.134,,,0.295,,,0.244,0.349,0.445398047,1505,3379,,,0.155566432,,,0.124442238,0.192213415,0,0,5,0,0.316144538,294.6,10,3395,,,34.75513428,22,633,21.78085762,52.61969098,,,,,,,,,,,,,41.42011834,25.63970608,63.31505076,,,,,,,0.158185404,401,2535,0.135547107,0.180823702,,0,3395,,,,0.000585652,2,3415,,,1707.5,0.000585652,2,3415,,,1707.5,1729,,,,,,,,,1787,0.24,,,,,,,,,0.23,0.26,,,,,,,,,0.26,0.887598507,2140,2411,0.857851079,0.917345934,0.613933237,423,689,0.479766792,0.748099681,0.027952481,40,1431,,,0.265,194,,0.169680851,0.360319149,,,,,,,,,,0.403669725,0.042320139,0.765019311,0.157608696,0.085439572,0.229777819,3.810243049,93591,24563,3.216108533,4.404377564,0.139922978,109,779,0.067119996,0.21272596,17.6730486,6,3395,,,108.7810479,18,16547,64.47054318,171.9209541,,,,,,,,,,,,,120.9533974,70.45981124,193.6581061,,,,8.2,,,,,0,,,,,0.13028169,185,1420,0.091192064,0.169371316,0.067335244,0.031269138,0.103401349,0.055633803,0.025173134,0.086094471,0.013380282,0.000399907,0.026360656,0.782245827,1031,1318,0.716777914,0.84771374,,,,,,,,,,,,,0.808358818,0.730952506,0.885765129,0.323,,1318,0.245214815,0.400785186,76.00531503,,,72.74397545,79.26665461,,,,,,,,,,,,,75.64695197,72.23400054,79.0599034,,,,533.6670389,74,8613,405.2357569,689.888401,,,,,,,,,,,,,541.9707545,404.7696823,710.7225388,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.124,,,0.107,0.142,0.18,,,0.155,0.206,0.116,,,0.099,0.134,,,,,,0.134,460,,,,0.175732317,644.7618715,3669,,,,,,,,,,,,,,,,,,,,,,,,,,0.346,,,0.331,0.361,0.193725922,352,1817,0.163938688,0.223513156,0.070198676,53,755,0.049943356,0.090453995,0.002342606,8,3415,,,426.875,,,,,,,,,,,3.163200421,,,,,,,,,3.059445121,3.055621333,,,,,,,,,2.955713778,0.033870064,,,,,-5818.3195,,,,,0.863770488,40104,46429,0.692828383,1.034712593,49457,,,42440.31915,56473.68085,69079,65848.87234,72309.12766,,,,,,,,,,51086,47338.76596,54833.23404,,,,,,0.608133087,329,541,,,,,,,,0.276118649,,49457,,,5.128205128,1,195,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.636504854,1639,2575,,,0.457,,,,,1.855537515,,,,,0.813303099,1076,1323,0.79488687,0.831719328,0.070217918,87,1239,0.028898777,0.111537058,0.761904762,1008,1323,0.706666836,0.817142688,3415,,,,,0.219912152,751,3415,,,0.254758419,870,3415,,,0.014641288,50,3415,,,0.053879941,184,3415,,,0.002635432,9,3415,,,0.001171303,4,3415,,,0.050366032,172,3415,,,0.826061493,2821,3415,,,0,0,3182,0,0.016475654,0.48169839,1645,3415,,,1,3379,3379,, -20,021,20021,KS,Cherokee County,2024,1,12000.12225,462,53854,10233.06146,13767.18305,0,,,,2,,,,2,,,,2,,,,2,12230.91236,10307.14426,14154.68047,,,,,2,,0.168,,,0.142,0.196,3.676576908,,,2.967376785,4.508289708,5.015510743,,,4.111157997,6.023660501,0.088650101,132,1489,0.074212637,0.103087565,0,,,,,,,,,,,,,0.089424572,0.073828258,0.105020887,,,,,,,0.207,,,0.168,0.25,0.428,,,0.367,0.493,6.4,0.179275388,0.122,,,0.259,,,0.215,0.304,0.718107634,13904,19362,,,0.158454994,,,0.128686701,0.192587217,0.190476191,4,21,0.083840113,0.319045344,250.9,48,19130,,,27.66346594,121,4374,22.73433928,32.59259259,,,,,,,,,,,,,29.22698716,23.68904735,34.76492697,,,,,,,0.115064394,1769,15374,0.098383543,0.131745246,0.000209096,4,19130,,,4782.5,0.000261945,5,19088,,,3817.6,0.001624057,31,19088,,,615.7419355,3279,,,,,5424,,,,3177,0.39,,,,,0.19,,,,0.39,0.41,,,,,0.16,,,,0.41,0.899328859,12060,13410,0.873763697,0.924894022,0.59914408,2520,4206,0.513259855,0.685028305,0.026211922,259,9881,,,0.199,854,,0.121553192,0.276446809,0.065573771,0,0.582985889,,,,,,,0.180555556,0,0.407354642,0.119163563,0.07391524,0.164411887,4.357689449,99656,22869,3.821740604,4.893638293,0.174603175,781,4473,0.11350893,0.23569742,12.02300052,23,19130,,,97.08737864,96,98880,78.64108841,118.5603064,,,,,,,,,,,,,103.1369868,82.82746937,126.9189371,,,,8.8,,,,,1,,,,,0.102451289,815,7955,0.074478274,0.130424303,0.07458493,0.046398349,0.10277151,0.01822753,0.006534272,0.029920788,0.011942175,0.002731995,0.021152355,0.83978346,7291,8682,0.800977137,0.878589783,,,,,,,,,,,,,0.822792133,0.753222637,0.892361629,0.23,,8682,0.192040263,0.267959737,72.2977649,,,71.06358261,73.5319472,,,,,,,,,,,,,71.8587936,70.54426263,73.17332458,,,,608.3187643,462,53854,549.3847837,667.2527449,,,,,,,,,,,,,626.3897855,563.3690992,689.4104719,,,,70.75352504,14,19787,38.68161053,118.7123926,,,,,,,,,,,,,74.8502994,38.67624195,130.7484097,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.118,,,0.101,0.136,0.174,,,0.151,0.198,0.106,,,0.091,0.123,56,9,16073,,,0.122,2390,,,,0.179275388,3872.886216,21603,,,20.42553192,12,58750,10.5541704,35.6792937,,,,,,,,,,,,,19.58787119,9.393145609,36.02279253,,,,0.332,,,0.315,0.348,0.142109537,1575,11083,0.120662729,0.163556346,0.046978386,213,4534,0.032680513,0.061276258,0.002043169,39,19088,,,489.4358974,0.884060403,263.45,298,,,,,,,,3.175252816,,,,,,,,,3.183172807,3.005200719,,,,,,,,,3.033002896,0.038822419,,,,,1066.38585,,,,,0.805747553,36954,45863,0.722698293,0.888796812,54965,,,48150.87234,61779.12766,40250,3518.765957,76981.23404,,,,,,,45677,28178.78723,63175.21277,55011,49044.02128,60977.97872,,,,,,0.539100544,1882,3491,,,58.57653373,,,,,0.248449013,,54965,,,8.835341366,11,1245,,,,,,,,,,,,,,,,,,,,,,,,,,22.80846423,23,98880,14.11879884,34.86516041,23.2605178,,,,,,,,,,,,,24.65261312,15.05845655,38.07396151,,,,23.2605178,23,98880,14.74517297,34.90219751,,,,,,,,,,,,,25.49453606,15.97729002,38.59903397,,,,25.06104154,35,139659,17.45593367,34.85384212,,,,,,,,,,,,,26.97577085,18.56887942,37.88401176,,,,,,,,,,,0.601713909,9128,15170,,,0.595,,,,,19.85458944,,,,,0.714987389,5386,7533,0.676313857,0.753660921,0.112678023,807,7162,0.080550943,0.144805103,0.809504845,6098,7533,0.781005721,0.83800397,19088,,,,,0.228258592,4357,19088,,,0.2002829,3823,19088,,,0.009063286,173,19088,,,0.046207041,882,19088,,,0.006286672,120,19088,,,0.005291283,101,19088,,,0.035152976,671,19088,,,0.860959765,16434,19088,,,0.00077152,14,18146,0,0.005571528,0.500785834,9559,19088,,,1,19362,19362,, -20,023,20023,KS,Cheyenne County,2024,1,9330.284914,47,6829,5333.063996,15151.79816,1,,,,2,,,,2,,,,2,,,,2,9255.852329,5060.260598,15529.74746,1,,,,2,,0.164,,,0.138,0.194,3.550380769,,,2.807057087,4.420188972,5.01669511,,,4.013339657,6.131131591,0.101321586,23,227,0.062066468,0.140576704,0,,,,,,,,,,,,,0.105527638,0.062840592,0.148214685,,,,,,,0.198,,,0.158,0.243,0.391,,,0.312,0.475,7.8,0.083120766,0.103,,,0.276,,,0.226,0.332,0.01529052,40,2616,,,0.159495741,,,0.127119915,0.196282856,0,0,5,0,0.316144538,189.9,5,2633,,,24.27184466,10,412,11.63929295,44.63678651,,,,,,,,,,,,,,,,,,,,,,0.151150628,289,1912,0.129703819,0.172597436,,0,2633,,,,0.000774294,2,2583,,,1291.5,0.001548587,4,2583,,,645.75,1892,,,,,,,,,1903,0.25,,,,,,,,,0.25,0.41,,,,,,,,,0.41,0.892136026,1679,1882,0.846681364,0.937590687,0.736,460,625,0.596667094,0.875332906,0.023828435,30,1259,,,0.192,106,,0.122893617,0.261106383,,,,,,,,,,0.357142857,0.053687943,0.660597771,0.237791932,0.094569659,0.381014205,4.688939128,112000,23886,3.429943104,5.947935151,0.237924866,133,559,0.115640514,0.360209217,37.97949108,10,2633,,,120.9098466,16,13233,69.11042435,196.3500159,,,,,,,,,,,,,126.0822056,70.56725337,207.9534242,,,,5.1,,,,,0,,,,,0.090909091,115,1265,0.043302047,0.138516135,0.082258065,0.029146379,0.13536975,0.011067194,0,0.031119801,0.007905138,0,0.024664933,0.777160983,980,1261,0.708728204,0.845593762,,,,,,,,,,,,,0.767521368,0.693395599,0.841647136,0.202,,1261,0.11274162,0.29125838,76.42563624,,,72.69630707,80.15496542,,,,,,,,,,,,,76.33217874,72.55224476,80.11211273,,,,445.2976732,47,6829,313.5306565,613.7841853,,,,,,,,,,,,,451.4617103,310.7654683,634.0200929,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.112,,,0.095,0.13,0.166,,,0.143,0.191,0.105,,,0.089,0.123,,,,,,0.103,270,,,,0.083120766,226.5872083,2726,,,,,,,,,,,,,,,,,,,,,,,,,,0.315,,,0.297,0.332,0.180882353,246,1360,0.152286608,0.209478098,0.083333333,48,576,0.055929078,0.110737589,0.001935734,5,2583,,,516.6,,,,,,,,,,,,,,,,,,,,,3.025120953,,,,,,,,,3.331475813,0.042654048,,,,,-6839.273,,,,,0.763047026,40208,52694,0.482403134,1.043690918,56500,,,48494.38298,64505.61702,,,,,,,,,,47292,16935.23404,77648.76596,52730,47187.19149,58272.80851,,,,,,0.5261959,231,439,,,,,,,,0.241699115,,56500,,,13.60544218,2,147,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.707425743,1429,2020,,,0.55,,,,,0.012031358,,,,,0.791217896,955,1207,0.734588604,0.847847188,0.067248908,77,1145,0.018394793,0.116103024,0.835956918,1009,1207,0.787591654,0.884322182,2583,,,,,0.217189315,561,2583,,,0.265582656,686,2583,,,0.006968641,18,2583,,,0.008130081,21,2583,,,0.012775842,33,2583,,,0,0,2583,,,0.077429346,200,2583,,,0.889663182,2298,2583,,,0.025131739,62,2467,0.003195237,0.047068241,0.486643438,1257,2583,,,1,2616,2616,, -20,025,20025,KS,Clark County,2024,1,13503.65703,36,5256,7557.894329,22272.22869,1,,,,2,,,,2,,,,2,,,,2,15478.10514,8241.439109,26468.03118,1,,,,2,,0.139,,,0.115,0.162,3.118687536,,,2.377249772,3.844817584,4.552615259,,,3.563360377,5.540611759,,,,,,0,,,,,,,,,,,,,,,,,,,,,,0.166,,,0.129,0.203,0.389,,,0.31,0.468,5.4,0.333257104,0.094,,,0.238,,,0.191,0.283,0.413360121,823,1991,,,0.17552787,,,0.139352518,0.214435736,0,0,9,0,0.215915826,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.101421189,157,1548,0.084740338,0.11810204,0.002529085,5,1977,,,395.4,0.000517331,1,1933,,,1933,,0,1933,,,,473,,,,,,,,,488,0.41,,,,,,,,,0.41,0.28,,,,,,,,,0.29,0.941697417,1276,1355,0.905862833,0.977532001,0.793103448,276,348,0.662423546,0.92378335,0.01981982,22,1110,,,0.166,78,,0.104042553,0.227957447,,,,,,,,,,,,,0.246153846,0.10411953,0.388188162,3.564458838,102357,28716,3.024136681,4.104780996,0.183266932,92,502,0.057559743,0.308974121,30.34901366,6,1977,,,191.0892085,19,9943,115.0481863,298.4094697,,,,,,,,,,,,,229.496316,138.1717739,358.3869256,,,,6.3,,,,,0,,,,,0.101123596,90,890,0.04229932,0.159947871,0.071106095,0.011706624,0.130505566,0.004494382,0,0.033298477,0.03258427,0,0.070566124,0.759868421,693,912,0.704086577,0.815650266,,,,,,,,,,,,,0.744680851,0.660613789,0.828747914,0.23,,912,0.148341678,0.311658322,73.32117533,,,68.7552306,77.88712007,,,,,,,,,,,,,,,,,,,551.279595,36,5256,377.0748349,778.2423015,,,,,,,,,,,,,600.9913655,402.4933497,863.1238511,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.098,,,0.083,0.112,0.153,,,0.131,0.175,0.094,,,0.079,0.109,,,,,,0.094,190,,,,0.333257104,738.164486,2215,,,,,,,,,,,,,,,,,,,,,,,,,,0.312,,,0.296,0.329,0.119585687,127,1062,0.099330368,0.139841007,0.060903733,31,509,0.039456924,0.082350541,0.003103983,6,1933,,,322.1666667,,,,,,,,,,,2.993672554,,,,,,,,,2.98250426,2.874978828,,,,,,,,,2.857096306,0.031169161,,,,,1297.22205,,,,,1.070821783,47900,44732,0.782208673,1.359434893,58914,,,51256.29787,66571.70213,,,,,,,,,,,,,58875,50915.85106,66834.14894,,,,,,0.513853904,204,397,,,,,,,,0.231795499,,58914,,,13.79310345,2,145,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.704290429,1067,1515,,,0.547,,,,,22.86978359,,,,,0.737298637,595,807,0.650358658,0.824238616,0.068681319,50,728,0,0.148040024,0.822800496,664,807,0.755561785,0.890039206,1933,,,,,0.247801345,479,1933,,,0.211588205,409,1933,,,0.005690636,11,1933,,,0.013967926,27,1933,,,0.015519917,30,1933,,,0.001551992,3,1933,,,0.133471288,258,1933,,,0.811691671,1569,1933,,,0.029572837,54,1826,0,0.068858956,0.506466632,979,1933,,,1,1991,1991,, -20,027,20027,KS,Clay County,2024,1,6157.21351,113,21464,4266.880061,8047.54696,0,,,,2,,,,2,,,,2,,,,2,5814.965577,3865.575644,7764.35551,,,,,2,,0.135,,,0.113,0.16,3.15098342,,,2.459949106,3.953214925,4.575001733,,,3.699312437,5.58752922,0.066022544,41,621,0.046491539,0.08555355,0,,,,,,,,,,,,,0.06097561,0.04139994,0.08055128,,,,,,,0.177,,,0.138,0.218,0.383,,,0.309,0.461,8,0.083594747,0.095,,,0.251,,,0.205,0.301,0.562646298,4567,8117,,,0.177575354,,,0.143436907,0.216137863,0.111111111,1,9,0.006152008,0.326116915,235.2,19,8077,,,11.68831169,18,1540,6.927234273,18.4725716,,,,,,,,,,,,,9.929078014,5.428319345,16.65930576,,,,,,,0.093663912,578,6171,0.07936604,0.107961784,0.001361892,11,8077,,,734.2727273,0.000372995,3,8043,,,2681,0.000870322,7,8043,,,1149,3988,,,,,,,,,4047,0.48,,,,,,,,,0.48,0.39,,,,,,,,,0.39,0.942473972,5341,5667,0.916483198,0.968464746,0.699328108,1249,1786,0.571928084,0.826728132,0.026175214,98,3744,,,0.151,276,,0.103340426,0.198659575,,,,,,,,,,0.174757282,0,0.562218978,0.168894289,0.0749185,0.262870079,4.501726074,108235,24043,3.840534309,5.162917839,0.182920401,347,1897,0.101316248,0.264524553,28.47591928,23,8077,,,99.85271724,40,40059,71.33624514,135.9710601,,,,,,,,,,,,,98.95958704,69.67668182,136.4027552,,,,7.1,,,,,0,,,,,0.106951872,400,3740,0.060726222,0.153177521,0.068733154,0.03053552,0.106930788,0.021390374,0,0.042858389,0.014705882,0,0.035072941,0.799792262,3080,3851,0.742241464,0.85734306,,,,,,,,,,,,,0.796680498,0.730239165,0.863121831,0.281,,3851,0.210965151,0.351034849,79.02026928,,,77.18801531,80.85252326,,,,,,,,,,,,,79.31980061,77.42140335,81.21819786,,,,347.3370517,113,21464,278.3884819,416.2856216,,,,,,,,,,,,,326.5685157,258.2385443,394.8984872,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.098,,,0.084,0.114,0.155,,,0.133,0.179,0.093,,,0.078,0.109,,,,,,0.095,770,,,,0.083594747,713.4811682,8535,,,,,,,,,,,,,,,,,,,,,,,,,,0.316,,,0.297,0.334,0.113699907,488,4292,0.094636077,0.132763737,0.049338759,97,1966,0.032657908,0.06601961,0.000994654,8,8043,,,1005.375,0.925,96.2,104,,,,,,,,3.365972651,,,,,,,,,3.368218699,3.476028373,,,,,,,,,3.492397484,0.038581979,,,,,5993.899,,,,,0.706567222,40357,57117,0.475655247,0.937479196,59021,,,51364.48936,66677.51064,,,,,,,,,,,,,58206,50890.25532,65521.74468,,,,,,0.414507772,560,1351,,,43.49534914,,,,,0.231375273,,59021,,,9.940357853,5,503,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.68277551,4182,6125,,,0.68,,,,,17.178941,,,,,0.714005602,2549,3570,0.664549589,0.763461616,0.102842074,351,3413,0.06076272,0.144921429,0.770868347,2752,3570,0.70215421,0.839582485,8043,,,,,0.231505657,1862,8043,,,0.23971155,1928,8043,,,0.011811513,95,8043,,,0.007832898,63,8043,,,0.005221932,42,8043,,,0.000497327,4,8043,,,0.037796842,304,8043,,,0.917941067,7383,8043,,,0.002104986,16,7601,0,0.012220189,0.497948527,4005,8043,,,0.491068129,3986,8117,, -20,029,20029,KS,Cloud County,2024,1,9320.843444,161,23654,6909.465627,11732.22126,0,,,,2,,,,2,,,,2,,,,2,9059.867134,6636.060143,11483.67413,,,,,2,,0.153,,,0.128,0.18,3.367552403,,,2.656068506,4.208808307,4.782536865,,,3.848458441,5.839273984,0.063772049,47,737,0.046130841,0.081413257,0,,,,,,,,,,,,,0.068017366,0.049244488,0.086790244,,,,,,,0.195,,,0.156,0.237,0.378,,,0.307,0.453,7.4,0.139563645,0.093,,,0.267,,,0.219,0.32,0.805358725,7274,9032,,,0.177715791,,,0.144452989,0.216952794,0.333333333,3,9,0.150331965,0.513162068,201.6,18,8928,,,20.1884253,45,2229,14.72557595,27.01370143,,,,,,,,,,,,,21.39874739,15.35611058,29.0298171,,,,,,,0.082480344,556,6741,0.069373961,0.095586727,0.000560036,5,8928,,,1785.6,0.000335345,3,8946,,,2982,0.002235636,20,8946,,,447.3,2623,,,,,,,,,2647,0.45,,,,,,,,,0.45,0.35,,,,,,,,,0.35,0.958563999,5714,5961,0.939927943,0.977200056,0.73289407,1446,1973,0.621098145,0.844689995,0.026878914,103,3832,,,0.162,335,,0.102425532,0.221574468,,,,,,,0.894736842,0.515682698,1,0.169642857,0,0.608733405,0.093505039,0.0445782,0.142431878,3.862618072,92417,23926,3.458026201,4.267209944,0.186448823,388,2081,0.08260491,0.290292736,31.36200717,28,8928,,,86.21472003,38,44076,61.01066713,118.3364392,,,,,,,,,,,,,93.37756481,66.07952241,128.1680032,,,,6.7,,,,,0,,,,,0.089285714,325,3640,0.053158004,0.125413425,0.075945871,0.040063983,0.111827759,0.002747253,0,0.012406373,0.012362637,0,0.025715639,0.853287537,3478,4076,0.824509586,0.882065487,,,,,,,,,,,,,0.851830664,0.817028731,0.886632596,0.186,,4076,0.142108533,0.229891467,74.83148639,,,73.01670872,76.64626406,,,,,,,,,,,,,74.896419,73.08056918,76.71226883,,,,481.0293749,161,23654,401.9743092,560.0844406,,,,,,,,,,,,,481.5687952,400.1468999,562.9906906,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.109,,,0.092,0.126,0.168,,,0.145,0.193,0.102,,,0.087,0.119,107.4,8,7450,,,0.093,840,,,,0.139563645,1330.460229,9533,,,,,,,,,,,,,,,,,,,,,,,,,,0.351,,,0.333,0.369,0.103887827,489,4707,0.084823997,0.122951656,0.034256218,73,2131,0.022341324,0.046171111,0.000894254,8,8946,,,1118.25,0.9015625,100.975,112,,,,,,,,3.21014951,,,,,,,,,3.194905763,3.229835421,,,,,,,,,3.178094901,0.03206552,,,,,4545.722,,,,,0.854235684,39710,46486,0.775964782,0.932506586,52483,,,45125.55319,59840.44681,,,,,,,,,,40469,166.8723404,80771.12766,51215,47121.04255,55308.95745,,,,,,0.498561151,693,1390,,,,,,,,0.260198541,,52483,,,8.915304606,6,673,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,22.41972936,14,62445,12.25707467,37.61649631,,,,,,,,,,,,,24.23487052,13.24942923,40.66199474,,,,,,,,,,,0.643957704,4263,6620,,,0.641,,,,,37.71410502,,,,,0.706554256,2598,3677,0.670379823,0.742728689,0.084048027,294,3498,0.043466159,0.124629896,0.788142508,2898,3677,0.748034755,0.82825026,8946,,,,,0.235971384,2111,8946,,,0.209255533,1872,8946,,,0.012072435,108,8946,,,0.007712944,69,8946,,,0.010172144,91,8946,,,0.000558909,5,8946,,,0.041694612,373,8946,,,0.911804158,8157,8946,,,0.006067095,51,8406,0,0.016207314,0.492957747,4410,8946,,,0.442980514,4001,9032,, -20,031,20031,KS,Coffey County,2024,1,8137.308173,147,22317,5838.45884,10436.15751,0,,,,2,,,,2,,,,2,,,,2,8330.375639,5857.150336,10803.60094,,,,,2,,0.143,,,0.12,0.168,3.200267828,,,2.490264919,3.965906456,4.763042906,,,3.781917365,5.744494729,0.050761421,30,591,0.033063718,0.068459125,0,,,,,,,,,,,,,0.048648649,0.030750198,0.066547099,,,,,,,0.18,,,0.142,0.219,0.382,,,0.311,0.453,7,0.16552456,0.103,,,0.251,,,0.204,0.301,0.488516746,4084,8360,,,0.170690367,,,0.136415696,0.209152787,0.125,1,8,0.007330353,0.353459145,263.9,22,8338,,,12.73148148,22,1728,7.978751662,19.27561597,,,,,,,,,,,,,13.44430218,8.322234945,20.551044,,,,,,,0.088916332,576,6478,0.075809949,0.102022715,0.000719597,6,8338,,,1389.666667,0.000362319,3,8280,,,2760,0.001449275,12,8280,,,690,2306,,,,,,,,,2279,0.43,,,,,,,,,0.43,0.39,,,,,,,,,0.39,0.937224296,5524,5894,0.923736003,0.950712589,0.682660851,1252,1834,0.589594118,0.775727584,0.034628602,131,3783,,,0.123,216,,0.075340426,0.170659575,,,,,,,,,,0.204081633,0,0.454795241,0.131158029,0.078764109,0.18355195,4.256261136,126611,29747,3.620627615,4.891894656,0.253567508,462,1822,0.184117739,0.323017277,11.99328376,10,8338,,,111.8350676,46,41132,81.87732522,149.172308,,,,,,,,,,,,,115.2918981,83.77126967,154.7739919,,,,8.1,,,,,0,,,,,0.101369863,370,3650,0.074429436,0.12831029,0.06416965,0.04038213,0.08795717,0.019178082,0.004313524,0.034042641,0.023287671,0.007252651,0.039322691,0.844206681,3235,3832,0.805715163,0.882698198,,,,,,,,,,,,,0.861720068,0.851006599,0.872433536,0.258,,3832,0.214661878,0.301338122,76.91750737,,,75.02007723,78.81493751,,,,,,,,,,,,,76.69523795,74.69123226,78.69924364,,,,427.6748281,147,22317,352.7396245,502.6100316,,,,,,,,,,,,,436.1551394,357.7572158,514.5530629,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.101,,,0.086,0.118,0.158,,,0.137,0.182,0.094,,,0.079,0.11,,,,,,0.103,860,,,,0.16552456,1423.676739,8601,,,,,,,,,,,,,,,,,,,,,,,,,,0.322,,,0.304,0.34,0.105352591,496,4708,0.087480251,0.123224932,0.047084002,88,1869,0.03278613,0.061381875,0.000966184,8,8280,,,1035,0.9294,116.175,125,,,,,,,,3.163635027,,,,,,,,,3.14434409,3.327139313,,,,,,,,,3.3278069,0.048269503,,,,,6438.573667,,,,,0.641759924,39397,61389,0.518807803,0.764712046,69100,,,59271.40426,78928.59575,,,,55000,1803.574468,108196.4255,,,,,,,67733,58738.44681,76727.55319,,,,,,0.419246299,623,1486,,,,,,,,0.197626628,,69100,,,7.075471698,3,424,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.706109822,4565,6465,,,0.658,,,,,14.00941667,,,,,0.755292125,2676,3543,0.719463341,0.79112091,0.05765819,195,3382,0.03497451,0.080341871,0.863957099,3061,3543,0.833956651,0.893957546,8280,,,,,0.214251208,1774,8280,,,0.226811594,1878,8280,,,0.00821256,68,8280,,,0.013164251,109,8280,,,0.009178744,76,8280,,,0.000120773,1,8280,,,0.039492754,327,8280,,,0.918478261,7605,8280,,,0.002898186,23,7936,0,0.012822016,0.503864734,4172,8280,,,1,8360,8360,, -20,033,20033,KS,Comanche County,2024,1,13372.46345,42,4426,7310.850203,22436.72142,1,,,,2,,,,2,,,,2,,,,2,13580.737,7017.364982,23722.81446,1,,,,2,,0.128,,,0.108,0.151,3.116281162,,,2.411999631,3.869757008,4.550592392,,,3.625649451,5.540661543,,,,,,0,,,,,,,,,,,,,,,,,,,,,,0.162,,,0.128,0.2,0.381,,,0.305,0.463,8.7,0.032214728,0.088,,,0.242,,,0.198,0.293,0.451154529,762,1689,,,0.175162856,,,0.14011607,0.213371877,0.2,1,5,0.015594715,0.47750127,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.101666667,122,1200,0.086177305,0.117156028,0.001197605,2,1670,,,835,0,0,1681,,,-1681,,0,1681,,,,1564,,,,,,,,,1568,0.54,,,,,,,,,0.54,0.43,,,,,,,,,0.43,0.964750958,1259,1305,0.926319485,1,0.747747748,249,333,0.602646781,0.892848715,0.021864212,19,869,,,0.159,59,,0.097042553,0.220957447,,,,,,,,,,,,,0.115384615,0.03689686,0.193872371,4.225239418,101917,24121,3.182157507,5.268321329,0.266990291,110,412,0.092382661,0.441597922,41.91616767,7,1670,,,151.197953,13,8598,80.50654211,258.5531044,,,,,,,,,,,,,130.480167,62.5703118,239.9576728,,,,6.6,,,,,0,,,,,0.06097561,50,820,0.022629645,0.099321575,0.036585366,0,0.092848079,0.024390244,0,0.063342206,0,0,0.022603932,0.869005848,743,855,0.791610838,0.946400858,,,,,,,,,,,,,0.833753149,0.754274729,0.913231568,0.155,,855,0.093745394,0.216254606,72.44786902,,,67.90821428,76.98752377,,,,,,,,,,,,,,,,,,,616.5798104,42,4426,426.9994428,861.6084837,,,,,,,,,,,,,605.0060466,405.1820446,868.8896029,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.095,,,0.081,0.11,0.153,,,0.131,0.176,0.089,,,0.075,0.105,0,0,1410,,,0.088,160,,,,0.032214728,60.91805119,1891,,,,,,,,,,,,,,,,,,,,,,,,,,0.32,,,0.305,0.336,0.120192308,100,832,0.098745499,0.141639116,0.064102564,25,390,0.042655756,0.085549373,0.002379536,4,1681,,,420.25,,,,,,,,,,,3.141377006,,,,,,,,,3.215422408,3.446170461,,,,,,,,,3.401818405,0.030636885,,,,,2519.038,,,,,0.771212035,40602,52647,0.600197,0.942227069,53657,,,45563.21277,61750.78723,,,,,,,,,,41875,3214.744681,80535.25532,52708,39290.6383,66125.3617,,,,,,0.464615385,151,325,,,,,,,,0.25450547,,53657,,,,,53,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.651957295,916,1405,,,0.478,,,,,,,,,,0.736396614,609,827,0.694804108,0.777989121,0.06185567,48,776,0.001742142,0.121969198,0.799274486,661,827,0.717886086,0.880662887,1681,,,,,0.227840571,383,1681,,,0.258179655,434,1681,,,0.004164188,7,1681,,,0.014277216,24,1681,,,0.003569304,6,1681,,,0.002379536,4,1681,,,0.087447948,147,1681,,,0.882212969,1483,1681,,,0.000567215,1,1763,0,0.029391126,0.508625818,855,1681,,,1,1689,1689,, -20,035,20035,KS,Cowley County,2024,1,9974.513428,633,95419,8778.009723,11171.01713,0,,,,2,,,,2,,,,2,8306.891619,5474.29392,12086.09118,,9535.262126,8232.376317,10838.14794,,,,,2,,0.171,,,0.151,0.197,3.958327481,,,3.434833934,4.581728015,5.703374246,,,5.110853624,6.425980076,0.077365959,215,2779,0.067432477,0.087299441,0,,,,,,,,,,0.066019418,0.044572878,0.087465957,0.077378019,0.065751873,0.089004164,,,,,,,0.206,,,0.172,0.243,0.435,,,0.402,0.477,7.5,0.095652593,0.113,,,0.299,,,0.264,0.339,0.718660453,24829,34549,,,0.182433529,,,0.164838241,0.207018341,0.103448276,3,29,0.031854594,0.210504629,414.5,143,34496,,,25.51942186,226,8856,22.19226955,28.84657418,,,,,,,,,,40.51987768,30.35216891,53.00099765,22.66288952,18.96128423,26.36449481,,,,24.89626556,12.86426371,43.48876566,0.11468078,3077,26831,0.099191418,0.130170141,0.000405844,14,34496,,,2464,0.000551476,19,34453,,,1813.31579,0.001654428,57,34453,,,604.4385965,2180,,,,,,,,,2162,0.39,,,,,0.5,,0.26,0.15,0.4,0.48,,,,,0.59,0.36,0.36,0.37,0.48,0.917164667,21026,22925,0.90418577,0.930143564,0.617116003,4990,8086,0.557429943,0.676802063,0.029554853,486,16444,,,0.218,1721,,0.152468085,0.283531915,0.019607843,0,0.420107156,0.209090909,0,0.865327792,,,,0.219221106,0.108929064,0.329513147,0.169736842,0.119331616,0.220142068,4.319918617,106162,24575,3.919431232,4.720406001,0.286364755,2327,8126,0.209747541,0.36298197,15.65398887,54,34496,,,89.34145042,156,174611,75.32149054,103.3614103,,,,,,,,,,60.86735988,31.45105305,106.3230284,87.73901631,72.10551886,103.3725138,,,,8.2,,,,,0,,,,,0.115217391,1590,13800,0.094674199,0.135760583,0.08933039,0.070468879,0.108191901,0.017028986,0.007390396,0.026667576,0.014492754,0.007597951,0.021387556,0.797233491,11988,15037,0.769875774,0.824591208,,,,,,,,,,0.739576213,0.624940618,0.854211809,0.813575526,0.799885824,0.827265228,0.227,,15037,0.195975484,0.258024516,74.26823435,,,73.34478343,75.19168527,,,,,,,,,,79.67895949,73.97777332,85.38014567,74.7988105,73.80064143,75.79697957,,,,509.4370346,633,95419,467.8493954,551.0246738,,,,,,,,,,445.8907578,306.9306809,626.1964044,491.2905759,445.9204247,536.6607271,,,,66.89142184,25,37374,43.2886013,98.74493417,,,,,,,,,,,,,50.67633415,26.98301365,86.65807476,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.115,,,0.102,0.13,0.177,,,0.16,0.196,0.119,,,0.108,0.133,107.6,31,28804,,,0.113,3930,,,,0.095652593,3473.241318,36311,,,10.57366964,11,104032,5.278337788,18.91921574,,,,,,,,,,,,,,,,,,,0.349,,,0.333,0.364,0.14369221,2704,18818,0.12343689,0.163947529,0.048644148,409,8408,0.034346276,0.062942021,0.000783676,27,34453,,,1276.037037,0.811757426,327.95,404,,,0.069075938,151,2186,0.028374525,0.109777351,2.657688189,,,,,,,,2.320639282,2.815980763,2.748433262,,,,,,,,2.489139304,2.882936443,0.074465827,,,,,-1085.54106,,,,,0.822907489,40162,48805,0.685320651,0.960494327,56416,,,49482.7234,63349.2766,,,,56467,13026.48936,99907.51064,,,,46974,32478.34043,61469.65957,57383,53840.70213,60925.29787,,,,,,0.638661999,3284,5142,,,54.39298297,,,,,0.24205899,,56416,,,2.54841998,5,1962,,,4.062530469,10,246152,1.948141269,7.471138176,,,,,,,,,,,,,,,,,,,22.69597195,40,174611,15.98005876,31.28340768,22.90806421,,,,,,,,,,,,,18.7039066,12.10418217,27.61065582,,,,20.61725779,36,174611,14.44007389,28.54297524,,,,,,,,,,,,,18.12789593,11.73141843,26.76035045,,,,16.25012188,40,246152,11.60932531,22.12805379,,,,,,,,,,,,,16.90954928,11.63975567,23.7472941,,,,,,,,,,,0.54151446,14231,26280,,,0.642,,,,,31.49076322,,,,,0.708425636,9274,13091,0.678563453,0.738287819,0.106255493,1330,12517,0.082808901,0.129702084,0.822855397,10772,13091,0.800486567,0.845224227,34453,,,,,0.234406293,8076,34453,,,0.187124488,6447,34453,,,0.027980147,964,34453,,,0.023307114,803,34453,,,0.019301657,665,34453,,,0.007169187,247,34453,,,0.122021304,4204,34453,,,0.778916205,26836,34453,,,0.011794182,386,32728,0.006446829,0.017141535,0.497373233,17136,34453,,,0.319951373,11054,34549,, -20,037,20037,KS,Crawford County,2024,1,11190.83627,714,108591,9978.426304,12403.24624,0,,,,2,,,,2,18068.03351,10525.29534,28928.67192,1,11854.34551,7429.055219,17947.62156,1,10967.12248,9670.190099,12264.05486,,,,,2,,0.163,,,0.139,0.191,3.319663964,,,2.696675724,4.058374276,5.249435061,,,4.449325894,6.16090164,0.073780874,233,3158,0.064663311,0.082898437,0,,,,,,,0.16091954,0.083704369,0.238134712,0.048710602,0.026126052,0.071295151,0.068642746,0.058855679,0.078429812,,,,0.194029851,0.09933804,0.288721662,0.213,,,0.171,0.258,0.397,,,0.344,0.452,6.6,0.127631137,0.136,,,0.283,,,0.236,0.329,0.75467002,29411,38972,,,0.190519748,,,0.15879413,0.224248087,0.32,8,25,0.213480444,0.427129614,588.1,230,39110,,,20.44873616,216,10563,17.72167004,23.17580227,,,,,,,,,,44.83188045,31.39969791,62.06621979,18.00847458,15.15491277,20.86203638,,,,25.91792657,13.39217086,45.27340183,0.108917117,3464,31804,0.092236266,0.125597968,0.000664792,26,39110,,,1504.230769,0.000562977,22,39078,,,1776.272727,0.002533395,99,39078,,,394.7272727,2331,,,,,,,,,2349,0.45,,,,,,,,,0.45,0.46,,,,,,0.27,0.36,,0.46,0.943246262,21955,23276,0.933516254,0.952976271,0.70444747,6209,8814,0.642979459,0.765915481,0.029075859,555,19088,,,0.203,1700,,0.138659575,0.267340426,,,,0.620833333,0.131374389,1,0.578947368,0.288416948,0.869477789,0.1443539,0,0.289389068,0.243744347,0.180542578,0.306946116,5.171133913,98779,19102,4.66716269,5.675105136,0.281439218,2417,8588,0.214251531,0.348626904,11.76169778,46,39110,,,67.79278007,132,194711,56.22759599,79.35796415,,,,,,,,,,,,,72.17331138,59.31333954,85.03328323,,,,8.4,,,,,1,,,,,0.148990708,2325,15605,0.125500956,0.172480461,0.122690173,0.100464585,0.144915761,0.023966677,0.013953522,0.033979833,0.010573534,0.002749523,0.018397546,0.843149541,16148,19152,0.819544578,0.866754503,,,,,,,,,,0.93645485,0.829146348,1,0.840095465,0.822122181,0.85806875,0.164,,19152,0.137304256,0.190695744,73.09863859,,,72.19638754,74.00088963,,,,,,,,,,78.84606604,66.49321188,91.19892019,73.170779,72.2164518,74.1251062,,,,578.3402944,714,108591,534.1806035,622.4999852,,,,,,,1223.865,757.5917243,1870.807658,570.8452295,348.6870963,881.6241586,569.6731191,523.4015243,615.9447138,,,,53.91892554,22,40802,33.79070357,81.63390125,,,,,,,,,,,,,52.15203853,30.38048431,83.50046574,,,,7.210031348,23,3190,4.570541391,10.81858711,,,,,,,,,,,,,,,,,,,,,,0.112,,,0.096,0.129,0.176,,,0.154,0.202,0.111,,,0.096,0.128,81.7,27,33041,,,0.136,5310,,,,0.127631137,4994.716919,39134,,,12.0008915,14,116658,6.560999054,20.13545674,,,,,,,,,,,,,11.99364337,6.197290545,20.95048129,,,,0.33,,,0.312,0.345,0.134743306,3160,23452,0.113296497,0.156190114,0.038758809,341,8798,0.026843915,0.050673702,0.002200727,86,39078,,,454.3953488,0.857954048,392.085,457,,,,,,,,3.008993799,,,,,,,,,3.124042056,2.985746717,,,,,,,,,3.048394652,0.063672977,,,,,-158.669,,,,,0.889054837,39883,44860,0.797108713,0.981000962,51835,,,45549.89362,58120.10638,,,,18973,18551.21277,19394.78723,,,,,,,51382,48604.6383,54159.3617,,,,,,0.568207997,3453,6077,,,47.88564853,,,,,0.263451336,,51835,,,5.686789151,13,2286,,,,,,,,,,,,,,,,,,,,,,,,,,22.58843763,40,194711,15.90434468,31.1351858,20.54326669,,,,,,,,,,,,,24.65687901,17.17441966,34.29174988,,,,10.78521501,21,194711,6.676218079,16.48634681,,,,,,,,,,,,,11.33299931,6.823205905,17.69788226,,,,10.98530898,30,273092,7.411741838,15.68221163,,,,,,,,,,,,,11.86621688,7.885014941,17.14998726,,,,,,,,,,,0.556223893,16645,29925,,,0.619,,,,,56.02182075,,,,,0.586865747,9276,15806,0.565354192,0.608377303,0.125828249,1918,15243,0.100078312,0.151578186,0.853030495,13483,15806,0.8360827,0.86997829,39078,,,,,0.219074671,8561,39078,,,0.158887354,6209,39078,,,0.020420697,798,39078,,,0.012666974,495,39078,,,0.016531041,646,39078,,,0.006499821,254,39078,,,0.068017811,2658,39078,,,0.851527714,33276,39078,,,0.00391581,144,36774,0,0.008092688,0.498797277,19492,39078,,,0.406753567,15852,38972,, -20,039,20039,KS,Decatur County,2024,1,6654.997581,57,7171,3638.349105,11165.95513,1,,,,2,,,,2,,,,2,,,,2,7159.224149,3811.985341,12242.49133,1,,,,2,,0.143,,,0.12,0.169,3.347135434,,,2.660061309,4.156927283,4.95790099,,,4.038643864,6.014301213,0.060301508,12,199,0.027227419,0.093375596,1,,,,,,,,,,,,,0.064516129,0.029209854,0.099822404,,,,,,,0.181,,,0.143,0.222,0.376,,,0.302,0.454,7.4,0.103186033,0.112,,,0.268,,,0.221,0.321,0.649782923,1796,2764,,,0.155446104,,,0.12397188,0.189040907,0,0,3,0,0.420755624,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.120716113,236,1955,0.101652283,0.139779942,,0,2751,,,,0,0,2689,,,-2689,0.000743771,2,2689,,,1344.5,3285,,,,,,,,,3308,0.45,,,,,,,,,0.45,0.44,,,,,,,,,0.43,0.936281503,1969,2103,0.908634088,0.963928918,0.675585284,404,598,0.522703391,0.828467178,0.028813559,34,1180,,,0.215,113,,0.136361702,0.293638298,,,,,,,,,,0.271186441,0,0.825810482,0.167785235,0.054566635,0.281003835,3.670422642,96745,26358,3.276840297,4.064004987,0.149046794,86,577,0.059488087,0.238605501,18.17520902,5,2751,,,113.3947555,16,14110,64.81490045,184.1459787,,,,,,,,,,,,,113.8519924,63.72209589,187.7815474,,,,5.4,,,,,0,,,,,0.070671378,100,1415,0.034245029,0.107097727,0.062857143,0.020277322,0.105436963,0.007067138,0,0.026970414,0.002826855,0,0.012999636,0.652340752,850,1303,0.601347422,0.703334083,,,,,,,,,,,,,0.613785558,0.566506528,0.661064588,0.231,,1303,0.155417865,0.306582135,77.71771704,,,74.74426947,80.6911646,,,,,,,,,,,,,77.15263433,73.9884332,80.31683547,,,,413.4857323,57,7171,301.5993305,553.276442,,,,,,,,,,,,,431.7704169,312.4743916,581.5919181,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.103,,,0.087,0.119,0.161,,,0.139,0.185,0.094,,,0.079,0.11,,,,,,0.112,310,,,,0.103186033,305.5338432,2961,,,,,,,,,,,,,,,,,,,,,,,,,,0.32,,,0.303,0.336,0.144604317,201,1390,0.11958304,0.169625593,0.062711864,37,590,0.042456545,0.082967184,0.002231313,6,2689,,,448.1666667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.022717636,,,,,-246.3125,,,,,0.611394558,33793,55272,0.44101578,0.781773336,51152,,,43561.02128,58742.97872,,,,,,,,,,,,,49735,41395.76596,58074.23404,,,,,,0.468513854,186,397,,,,,,,,0.266969034,,51152,,,,,167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.66875,1498,2240,,,0.574,,,,,10.16108637,,,,,0.805135952,1066,1324,0.767852491,0.842419413,0.032156863,41,1275,0,0.070641143,0.842900302,1116,1324,0.798486209,0.887314395,2689,,,,,0.200446263,539,2689,,,0.298252138,802,2689,,,0.011156564,30,2689,,,0.011900335,32,2689,,,0.002603198,7,2689,,,0.000371886,1,2689,,,0.048716995,131,2689,,,0.911119375,2450,2689,,,0.002292702,6,2617,0,0.021646465,0.490516921,1319,2689,,,1,2764,2764,, -20,041,20041,KS,Dickinson County,2024,1,9380.063222,290,50003,7638.636308,11121.49014,0,,,,2,,,,2,,,,2,,,,2,9713.437669,7820.303592,11606.57175,,,,,2,,0.14,,,0.118,0.165,3.220459993,,,2.566621047,3.949499394,4.870443314,,,4.025231268,5.780298651,0.080599144,113,1402,0.066349641,0.094848648,0,,,,,,,,,,,,,0.07826087,0.063460003,0.093061737,,,,,,,0.173,,,0.14,0.211,0.382,,,0.324,0.443,8.5,0.04966027,0.088,,,0.24,,,0.201,0.285,0.580480383,10682,18402,,,0.188732009,,,0.155004811,0.226004664,0.25,7,28,0.151262701,0.356398836,216.7,40,18459,,,16.07319486,65,4044,12.40495246,20.48660629,,,,,,,,,,,,,16.00457274,12.08968225,20.78326894,,,,,,,0.112118321,1645,14672,0.096628959,0.127607682,0.000487567,9,18459,,,2051,0.000217037,4,18430,,,4607.5,0.000596853,11,18430,,,1675.454546,3471,,,,,,,,,3403,0.46,,,,,,,,,0.47,0.32,,,,,,,,0.33,0.32,0.935726916,12171,13007,0.920454367,0.950999466,0.646897183,2825,4367,0.563369367,0.730425,0.027870938,241,8647,,,0.13,536,,0.084723404,0.175276596,,,,,,,,,,0.415384615,0.212689455,0.618079776,0.083404742,0.042988265,0.123821218,3.862323753,113954,29504,2.870857419,4.853790087,0.143942993,606,4210,0.093843223,0.194042763,20.04442278,37,18459,,,86.19760802,80,92810,68.3493423,107.2803846,,,,,,,,,,,,,89.58432872,70.46375741,112.2947318,,,,7.6,,,,,1,,,,,0.089477001,710,7935,0.064623316,0.114330685,0.073435505,0.050230579,0.09664043,0.011972275,0.004113315,0.019831235,0.011972275,0.003769395,0.020175155,0.763711152,6684,8752,0.739033103,0.7883892,,,,,,,,,,,,,0.706286672,0.681090162,0.731483182,0.318,,8752,0.274793106,0.361206894,75.87765853,,,74.50889474,77.24642232,,,,,,,,,,,,,75.51591273,74.06368934,76.96813612,,,,429.4654287,290,50003,376.5652979,482.3655595,,,,,,,,,,,,,440.7296012,384.4812503,496.9779522,,,,69.36292818,13,18742,36.93283796,118.6127197,,,,,,,,,,,,,81.86397985,43.58912148,139.9898987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.097,,,0.083,0.112,0.157,,,0.135,0.18,0.092,,,0.078,0.107,83.7,13,15534,,,0.088,1640,,,,0.04966027,980.9889639,19754,,,,,,,,,,,,,,,,,,,,,,,,,,0.362,,,0.345,0.379,0.136537359,1429,10466,0.11628204,0.156792678,0.053974706,239,4428,0.037293855,0.070655558,0.00081389,15,18430,,,1228.666667,0.890611354,203.95,229,,,,,,,,3.190767459,,,,,,,,,3.196335174,3.292874888,,,,,,,,,3.33203711,0.03577138,,,,,1412.396,,,,,0.878590179,45518,51808,0.732204873,1.024975485,63136,,,55807.14894,70464.85106,35000,31623.31915,38376.68085,,,,,,,83060,17823.57447,148296.4255,63447,58174.65957,68719.34043,,,,,,0.44241573,1575,3560,,,,,,,,0.216294982,,63136,,,8.032128514,8,996,,,,,,,,,,,,,,,,,,,,,,,,,,23.31962397,21,92810,14.03993697,36.41648148,22.6268721,,,,,,,,,,,,,24.14123153,14.3076238,38.15355373,,,,16.1620515,15,92810,9.045777538,26.65684611,,,,,,,,,,,,,16.72240803,9.142296078,28.0573592,,,,20.58287657,27,131177,13.56424536,29.94700477,,,,,,,,,,,,,21.90617417,14.30984027,32.09762072,,,,,,,,,,,0.662579731,9349,14110,,,0.678,,,,,31.17055574,,,,,0.751739846,5941,7903,0.716773773,0.786705918,0.074198988,572,7709,0.051653397,0.096744579,0.843477161,6666,7903,0.801921214,0.885033107,18430,,,,,0.226478568,4174,18430,,,0.211123169,3891,18430,,,0.011720022,216,18430,,,0.011394466,210,18430,,,0.006294086,116,18430,,,0.001193706,22,18430,,,0.057460662,1059,18430,,,0.891589799,16432,18430,,,0.005759252,101,17537,0,0.011844838,0.495930548,9140,18430,,,0.641071623,11797,18402,, -20,043,20043,KS,Doniphan County,2024,1,7866.53886,121,20639,5409.980624,10323.0971,0,,,,2,,,,2,,,,2,,,,2,7287.417365,4880.063257,9694.771473,,,,,2,,0.158,,,0.134,0.187,3.551879487,,,2.791844374,4.43379994,5.204858786,,,4.200585481,6.316268639,0.07184466,37,515,0.049541827,0.094147494,0,,,,,,,,,,,,,0.072463768,0.049342673,0.095584863,,,,,,,0.202,,,0.164,0.244,0.404,,,0.327,0.483,7.7,0.088098768,0.104,,,0.275,,,0.229,0.327,0.221171771,1661,7510,,,0.174957763,,,0.141709793,0.214800555,0.5,4,8,0.315552499,0.64971552,281.1,21,7471,,,12.31060606,26,2112,8.041696598,18.03789019,,,,,,,,,,,,,12.11453745,7.592116119,18.34155528,,,,,,,0.097387596,548,5627,0.083089723,0.111685468,0.000535404,4,7471,,,1867.75,,0,7440,,,,0.000134409,1,7440,,,7440,2651,,,,,,,,,2533,0.5,,,,,,,,,0.5,0.4,,,,,,,,,0.4,0.911585366,4485,4920,0.886570333,0.936600399,0.665184244,1047,1574,0.560792127,0.769576361,0.025806452,104,4030,,,0.122,185,,0.074340426,0.169659575,,,,,,,,,,,,,0.088888889,0.044276519,0.133501259,4.722981988,113276,23984,3.269262976,6.176701001,0.150788211,220,1459,0.097007815,0.204568607,12.04658011,9,7471,,,52.66484095,20,37976,32.16905305,81.33657548,,,,,,,,,,,,,55.52146343,33.42754789,86.70364271,,,,8,,,,,1,,,,,0.116472546,350,3005,0.084815242,0.14812985,0.094934586,0.06055482,0.129314351,0.021297837,0.006867833,0.035727841,0.003327787,0,0.012616783,0.824313299,3031,3677,0.773972965,0.874653633,,,,,,,,,,,,,0.779254179,0.708820332,0.849688026,0.294,,3677,0.237044814,0.350955186,76.44297498,,,74.44093718,78.44501279,,,,,,,,,,,,,76.59150364,74.63169976,78.55130752,,,,407.3220685,121,20639,329.5400941,485.1040428,,,,,,,,,,,,,404.2019477,324.1400994,484.263796,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.111,,,0.096,0.128,0.169,,,0.148,0.194,0.101,,,0.086,0.118,,,,,,0.104,790,,,,0.088098768,699.9447084,7945,,,,,,,,,,,,,,,,,,,,,,,,,,0.336,,,0.318,0.353,0.115508286,467,4043,0.096444456,0.134572116,0.052026618,86,1653,0.034154278,0.069898959,0.000672043,5,7440,,,1488,,,,,,,,,,,3.02914186,,,,,,,,,3.058525423,2.891950678,,,,,,,,,2.903995311,0.078816977,,,,,3231.647,,,,,0.773364159,44156,57096,0.636030729,0.910697589,64608,,,57724.76596,71491.23404,,,,,,,113125,9376.06383,216873.9362,41607,16259.25532,66954.74468,66304,58010.04255,74597.95745,,,,,,0.304054054,405,1332,,,51.90066428,,,,,0.211367013,,64608,,,7.957559682,3,377,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.609031199,3709,6090,,,0.565,,,,,14.87803945,,,,,0.800731261,2190,2735,0.770772624,0.830689899,0.142205323,374,2630,0.086070081,0.198340565,0.841681901,2302,2735,0.805288874,0.878074928,7440,,,,,0.208467742,1551,7440,,,0.206182796,1534,7440,,,0.030510753,227,7440,,,0.01438172,107,7440,,,0.005510753,41,7440,,,0.000134409,1,7440,,,0.032930108,245,7440,,,0.893010753,6644,7440,,,0.001541048,11,7138,0,0.01172192,0.492069893,3661,7440,,,0.71677763,5383,7510,, -20,045,20045,KS,Douglas County,2024,1,5610.597897,1050,345869,5100.856889,6120.338904,0,11196.60466,7378.633024,16290.47194,,,,,2,12215.75627,8508.721827,16989.15984,,4883.487869,3245.042224,7057.999664,,5402.175668,4837.479812,5966.871523,,,,,2,,0.137,,,0.116,0.161,2.946355336,,,2.401944263,3.53229225,5.427739299,,,4.729454637,6.133087984,0.07413291,560,7554,0.068224815,0.080041004,0,,,,0.084615385,0.056993695,0.112237074,0.152941177,0.114682001,0.191200352,0.068253968,0.048561574,0.087946363,0.070804196,0.064156959,0.077451433,,,,0.075539568,0.044475017,0.10660412,0.14,,,0.11,0.172,0.321,,,0.284,0.359,8.2,0.053856842,0.1,,,0.191,,,0.16,0.225,0.924956855,109871,118785,,,0.219217905,,,0.192495366,0.249087174,0.326923077,17,52,0.254998049,0.399152589,598.2,714,119363,,,6.383865756,245,38378,5.58447932,7.183252193,,,,,,,18.38235294,12.40249634,26.24195184,10.09372747,6.7072086,14.58824656,5.357893262,4.508899668,6.206886857,,,,11.94304088,7.80159082,17.49932204,0.108040175,10445,96677,0.093742303,0.122338047,0.000862914,103,119363,,,1158.864078,0.000666867,80,119964,,,1499.55,0.003459371,415,119964,,,289.0698795,1680,,,,,,,1278,977,1690,0.55,,,,,0.38,0.35,0.56,0.41,0.56,0.64,,,,,0.58,0.63,0.48,0.54,0.65,0.960255785,66974,69746,0.952378432,0.968133139,0.817689299,25507,31194,0.772324027,0.863054572,0.025793022,1710,66297,,,0.104,2117,,0.06706383,0.14093617,0.357933579,0.116061017,0.599806142,0.069489685,0,0.183812405,0.358190709,0.104263563,0.612117856,0.207625172,0.121352544,0.2938978,0.050695012,0.024964131,0.076425894,4.966739027,134991,27179,4.464644674,5.468833379,0.16939269,3573,21093,0.129305591,0.209479788,10.38847884,124,119363,,,59.20370196,359,606381,53.07938428,65.32801965,,,,,,,49.16420846,26.1778704,84.07229377,35.40628715,19.35694665,59.4057336,64.28956865,57.07439706,71.50474023,,,,8.2,,,,,0,,,,,0.182509902,8755,47970,0.162897541,0.202122264,0.155377647,0.136405754,0.17434954,0.018449031,0.011537284,0.025360777,0.015843235,0.006559812,0.025126659,0.704966676,46329,65718,0.684204904,0.725728448,0.733398438,0.532706638,0.934090237,0.543041607,0.437188204,0.64889501,0.63064833,0.489164602,0.772132059,0.588986784,0.497538768,0.6804348,0.702187563,0.676127233,0.728247892,0.304,,65718,0.273880997,0.334119003,80.01629557,,,79.47231098,80.56028015,72.56455416,68.95270208,76.17640623,100.9081878,87.16237428,114.6540013,72.97493796,69.72382536,76.22605057,82.71860815,78.91511351,86.5221028,80.13987196,79.55714006,80.72260386,,,,287.7321901,1050,345869,269.8107056,305.6536747,609.2008405,424.3307065,847.2508967,,,,562.6630637,436.9298852,713.3095055,246.5719363,166.36105,351.9967708,278.2771718,259.1247727,297.4295709,,,,35.53383081,41,115383,25.49969048,48.20565384,,,,,,,,,,,,,30.99924886,20.24973855,45.42108197,,,,5.678950025,45,7924,4.142265117,7.598881941,,,,,,,,,,,,,5.80816462,4.045599469,8.077750974,,,,,,,0.091,,,0.078,0.106,0.158,,,0.138,0.179,0.093,,,0.08,0.107,80.5,84,104404,,,0.1,11930,,,,0.053856842,5968.738412,110826,,,15.37819372,56,364152,11.61652227,19.96986369,,,,,,,,,,,,,16.15883432,11.83029761,21.55362053,,,,0.32,,,0.306,0.335,0.126380043,9524,75360,0.107316213,0.145443872,0.047428368,1066,22476,0.034321985,0.060534751,0.000925278,111,119964,,,1080.756757,0.851728302,1128.54,1325,,,0.038316187,365,9526,0.01955438,0.057077994,3.17709597,,,,,,,2.81850933,2.73804632,3.302452003,3.191044886,,,,,,3.536726989,2.801755093,2.674821699,3.315846201,0.051573725,,,,,1935.644667,,,,,0.798762493,47635,59636,0.73847801,0.859046975,67482,,,60211.53192,74752.46809,60469,12137.42553,108800.5745,49910,43446.17021,56373.82979,49456,36032.68085,62879.31915,55313,43643.55319,66982.44681,71703,68045.12766,75360.87234,,,,,,0.291332041,4208,14444,,,41.63259596,,,,,0.168711656,,67482,,,7.42442991,42,5657,,,2.370022065,20,843874,1.447671049,3.660306859,,,,,,,,,,,,,2.114343708,1.15593138,3.547509473,,,,14.44809239,86,606381,11.42061748,18.03187318,14.18250242,,,,,,,,,,,,,15.27156499,11.81102726,19.42917508,,,,8.740379398,53,606381,6.547143946,11.43263145,,,,,,,,,,,,,9.274560723,6.73891002,12.45066488,,,,7.347068401,62,843874,5.632955214,9.41861011,,,,,,,,,,,,,8.004301179,5.995770849,10.46982302,,,,,,,,,,,0.632152154,59495,94115,,,0.687,,,,,91.61169388,,,,,0.504062091,25004,49605,0.484360991,0.52376319,0.165015689,8046,48759,0.143631785,0.186399594,0.900856769,44687,49605,0.883791369,0.917922168,119964,,,,,0.173018572,20756,119964,,,0.139416825,16725,119964,,,0.043954853,5273,119964,,,0.026666333,3199,119964,,,0.048189457,5781,119964,,,0.001192024,143,119964,,,0.069120736,8292,119964,,,0.777758328,93303,119964,,,0.008074376,918,113693,,,0.501133673,60118,119964,,,0.1463737,17387,118785,, -20,047,20047,KS,Edwards County,2024,1,24003.74936,101,7558,16544.83587,31462.66285,0,,,,2,,,,2,,,,2,,,,2,27254.46086,18388.47029,38907.43755,,,,,2,,0.169,,,0.143,0.195,3.529790537,,,2.788100984,4.367186404,4.93907101,,,3.933382686,5.989074726,0.083743842,17,203,0.045637879,0.121849806,1,,,,,,,,,,,,,0.094202899,0.0454653,0.142940497,,,,,,,0.187,,,0.152,0.223,0.397,,,0.319,0.48,8.6,0.048358663,0.082,,,0.284,,,0.237,0.333,0.431716546,1255,2907,,,0.160590488,,,0.127340268,0.197088834,0.571428571,4,7,0.387251166,0.710103252,317.8,9,2832,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.151806127,332,2187,0.131550808,0.172061446,,0,2832,,,,0.000365097,1,2739,,,2739,,0,2739,,,,1649,,,,,,,,,1722,0.44,,,,,,,,,0.45,0.22,,,,,,,,0.42,0.22,0.875785404,1812,2069,0.843937833,0.907632975,0.574127907,395,688,0.472910602,0.675345212,0.022988506,32,1392,,,0.185,112,,0.119468085,0.250531915,,,,,,,,,,0.295774648,0.158466443,0.433082853,0.120603015,0.034785858,0.206420173,3.964595243,107500,27115,3.132578162,4.796612323,0.202808112,130,641,0.112246914,0.293369311,10.59322034,3,2832,,,120.3795496,17,14122,70.12552379,192.7393203,,,,,,,,,,,,,131.7027281,72.00310702,220.9747989,,,,6.3,,,,,0,,,,,0.050583658,65,1285,0.025092637,0.076074678,0.048627451,0.014134596,0.083120306,0.003112841,0,0.02087515,0.003112841,0,0.01347813,0.761549926,1022,1342,0.703427078,0.819672773,,,,,,,,,,,,,0.732346242,0.675552768,0.789139715,0.257,,1342,0.176312326,0.337687674,64.55801989,,,60.42180406,68.69423572,,,,,,,,,,,,,62.98689757,57.8854023,68.08839285,,,,1003.719973,101,7558,787.351775,1220.088171,,,,,,,,,,,,,1059.350694,814.0341595,1355.36972,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.111,,,0.095,0.127,0.16,,,0.138,0.182,0.106,,,0.091,0.122,,,,,,0.082,240,,,,0.048358663,146.865258,3037,,,,,,,,,,,,,,,,,,,,,,,,,,0.335,,,0.32,0.35,0.177863084,278,1563,0.151650318,0.20407585,0.086363636,57,660,0.058959381,0.113767892,0.00109529,3,2739,,,913,,,,,,,,,,,3.05434114,,,,,,,,,3.05170044,3.130318726,,,,,,,,,3.23603205,0.046667739,,,,,-770.0049,,,,,0.849093098,43021,50667,0.713685753,0.984500443,55777,,,48794.87234,62759.12766,,,,,,,,,,45250,28609.65957,61890.34043,55972,46972.68085,64971.31915,,,,,,0.455696203,180,395,,,,,,,,0.244832099,,55777,,,,,186,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.708415842,1431,2020,,,0.584,,,,,18.37003854,,,,,0.786122449,963,1225,0.74425562,0.827989278,0.079242033,92,1161,0.030319741,0.128164325,0.816326531,1000,1225,0.766241844,0.866411217,2739,,,,,0.223074115,611,2739,,,0.220153341,603,2739,,,0.013873677,38,2739,,,0.026652063,73,2739,,,0.002190581,6,2739,,,0,0,2739,,,0.227820372,624,2739,,,0.726177437,1989,2739,,,0.04248975,114,2683,0.015489149,0.069490352,0.488864549,1339,2739,,,1,2907,2907,, -20,049,20049,KS,Elk County,2024,1,9317.977754,58,6462,4814.735077,16276.63193,1,,,,2,,,,2,,,,2,,,,2,9947.259167,4965.635936,17798.39437,1,,,,2,,0.182,,,0.154,0.216,3.886615367,,,3.052433192,4.800975303,5.246381935,,,4.191235861,6.367326248,0.074534162,12,161,0.033964535,0.115103789,1,,,,,,,,,,,,,0.069444444,0.027923738,0.110965151,,,,,,,0.222,,,0.177,0.269,0.429,,,0.348,0.512,6.4,0.18513463,0.121,,,0.296,,,0.242,0.352,0.280306081,696,2483,,,0.149708521,,,0.118471361,0.18369213,0,0,2,0,0.510593623,245.8,6,2441,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.133066819,233,1751,0.1128115,0.153322138,0.000409668,1,2441,,,2441,0,0,2441,,,-2441,,0,2441,,,,1756,,,,,,,,,1781,0.35,,,,,,,,,0.36,0.3,,,,,,,,,0.3,0.869394619,1551,1784,0.831033415,0.907755823,0.506142506,206,407,0.374485511,0.637799502,0.02725724,32,1174,,,0.252,140,,0.156680851,0.347319149,,,,,,,,,,0.289473684,0,0.823241699,0.184782609,0.094684932,0.274880286,4.825023474,102773,21300,3.44011174,6.209935209,0.161579892,90,557,0.086456072,0.236703713,20.48340844,5,2441,,,160.2050625,20,12484,97.85741417,247.4237256,,,,,,,,,,,,,169.7034655,102.172572,265.012983,,,,8.1,,,,,0,,,,,0.095652174,110,1150,0.049173032,0.142131316,0.068062827,0.016787405,0.119338249,0.013043478,0,0.043176352,0.008695652,0,0.024080327,0.777306469,733,943,0.744851029,0.809761909,,,,,,,,,,,,,0.737920937,0.67904523,0.796796644,0.418,,943,0.317025231,0.518974769,76.08268347,,,71.98955523,80.17581171,,,,,,,,,,,,,75.56207795,71.18561936,79.93853654,,,,497.1293142,58,6462,363.9611386,663.1008391,,,,,,,,,,,,,517.5840858,374.5781693,697.1823668,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.122,,,0.105,0.143,0.177,,,0.152,0.204,0.113,,,0.096,0.131,0,0,2073,,,0.121,300,,,,0.18513463,533.5580044,2882,,,,,,,,,,,,,,,,,,,,,,,,,,0.356,,,0.338,0.373,0.165152766,200,1211,0.137748511,0.192557022,0.066666667,38,570,0.045219858,0.088113475,0.000819336,2,2441,,,1220.5,,,,,,,,,,,3.080407711,,,,,,,,,3.074510324,3.203455391,,,,,,,,,3.197807478,0.024648086,,,,,-2838.7795,,,,,0.669940194,30357,45313,0.49089552,0.848984867,47094,,,40354.93617,53833.06383,,,,,,,,,,,,,49375,42010.40426,56739.59575,,,,,,0.428025478,336,785,,,,,,,,0.289973245,,47094,,,,,119,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.699742931,1361,1945,,,0.471,,,,,0.142624352,,,,,0.777237354,799,1028,0.745500868,0.808973841,0.093980993,89,947,0.033313921,0.154648065,0.799610895,822,1028,0.754830121,0.844391669,2441,,,,,0.230233511,562,2441,,,0.275706678,673,2441,,,0.002458009,6,2441,,,0.021712413,53,2441,,,0.006145023,15,2441,,,0.000409668,1,2441,,,0.045882835,112,2441,,,0.88816059,2168,2441,,,0.002566296,6,2338,0,0.023860809,0.497746825,1215,2441,,,1,2483,2483,, -20,051,20051,KS,Ellis County,2024,1,5938.17938,293,79991,4926.328166,6950.030595,0,,,,2,,,,2,,,,2,,,,2,5863.36782,4802.625636,6924.110004,,,,,2,,0.141,,,0.117,0.167,3.279247245,,,2.571305523,4.067683823,4.635357151,,,3.825768836,5.514972192,0.07039627,151,2145,0.059570316,0.081222224,0,,,,,,,,,,0.076470588,0.036521747,0.11641943,0.071390517,0.059742265,0.083038769,,,,,,,0.165,,,0.128,0.205,0.379,,,0.324,0.439,8,0.076202822,0.099,,,0.224,,,0.182,0.267,0.853079422,24683,28934,,,0.197380043,,,0.164056425,0.234084478,0.266666667,4,15,0.129817183,0.413965161,493.2,142,28790,,,9.742790335,75,7698,7.663322642,12.21267205,,,,,,,,,,23.28966521,13.31205597,37.8209572,8.289374529,6.24469133,10.78976036,,,,,,,0.100634594,2347,23322,0.085145232,0.116123956,0.000625217,18,28790,,,1599.444444,0.001002039,29,28941,,,997.9655172,0.003524412,102,28941,,,283.7352941,2769,,,,,,,,,2771,0.58,,,,,,,,,0.58,0.5,,,,,,0.29,,0.43,0.5,0.953408309,16616,17428,0.936438074,0.970378543,0.800194661,5755,7192,0.713536899,0.886852423,0.019786285,337,17032,,,0.106,607,,0.066680851,0.145319149,,,,0.146153846,0,0.639756775,0.740740741,0.502025202,0.97945628,0.355785838,0.199804291,0.511767385,0.069692058,0.036742763,0.102641353,5.226250309,126862,24274,4.310497336,6.142003282,0.186772398,1107,5927,0.128735143,0.244809652,10.42028482,30,28790,,,78.09612797,112,143413,63.63252266,92.55973327,,,,,,,,,,,,,82.15062513,66.43714812,97.86410213,,,,6,,,,,0,,,,,0.113393239,1325,11685,0.087094564,0.139691915,0.103436426,0.076488441,0.130384411,0.010269576,0.000305147,0.020234006,0.012409072,0.002831506,0.021986637,0.787652522,12975,16473,0.759382719,0.815922326,,,,,,,,,,0.59599636,0.460160771,0.731831949,0.801074912,0.774330325,0.827819499,0.074,,16473,0.05046997,0.09753003,79.76471899,,,78.73575315,80.79368483,,,,,,,,,,,,,79.71969428,78.66426312,80.77512545,,,,308.8795046,293,79991,271.9689721,345.7900372,,,,,,,,,,,,,307.8615797,269.4437029,346.2794565,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.1,,,0.084,0.117,0.152,,,0.131,0.175,0.094,,,0.079,0.11,69.2,17,24579,,,0.099,2850,,,,0.076202822,2168.122685,28452,,,,,,,,,,,,,,,,,,,,,,,,,,0.323,,,0.305,0.342,0.11985256,2081,17363,0.099597241,0.140107879,0.047877434,300,6266,0.033579561,0.062175306,0.002245949,65,28941,,,445.2461539,0.884188312,272.33,308,,,,,,,,3.27565804,,,,,,,,,3.345305984,3.319550901,,,,,,,,,3.42494153,0.04280112,,,,,2788.540667,,,,,0.829597098,43446,52370,0.743086617,0.916107578,61675,,,54778.65957,68571.34043,,,,156042,28611.02128,283472.9787,,,,36250,19862.25532,52637.74468,60749,54584.23404,66913.76596,,,,,,0.374670185,1420,3790,,,78.57310743,,,,,0.221418727,,61675,,,5.171299289,8,1547,,,,,,,,,,,,,,,,,,,,,,,,,,19.42845414,27,143413,12.57307113,28.68023091,18.82674514,,,,,,,,,,,,,19.24300383,12.05948805,29.13413906,,,,15.34031085,22,143413,9.613691138,23.22541498,,,,,,,,,,,,,16.43012503,10.17050635,25.1151914,,,,11.92043112,24,201335,7.637645146,17.73665661,,,,,,,,,,,,,13.33881707,8.546431786,19.84710247,,,,,,,,,,,0.62358789,13800,22130,,,0.68,,,,,68.44086025,,,,,0.613396889,7335,11958,0.583925653,0.642868125,0.1308699,1530,11691,0.099680173,0.162059627,0.898478006,10744,11958,0.876135989,0.920820024,28941,,,,,0.201167893,5822,28941,,,0.16505995,4777,28941,,,0.013406586,388,28941,,,0.004388238,127,28941,,,0.015065133,436,28941,,,0.000829273,24,28941,,,0.069520749,2012,28941,,,0.882001313,25526,28941,,,0.003031188,83,27382,0,0.007363787,0.494246916,14304,28941,,,0.243796226,7054,28934,, -20,053,20053,KS,Ellsworth County,2024,1,6797.919516,98,16738,4735.000019,9454.260439,0,,,,2,,,,2,,,,2,,,,2,6589.764648,4446.086536,9407.298786,,,,,2,,0.152,,,0.127,0.181,3.341994256,,,2.647051463,4.124896645,4.342599399,,,3.479031704,5.301017319,0.049261084,20,406,0.028209941,0.070312226,1,,,,,,,,,,,,,0.052219321,0.029938755,0.074499887,,,,,,,0.19,,,0.15,0.234,0.394,,,0.32,0.47,7.8,0.108233451,0.09,,,0.258,,,0.211,0.312,0.614491844,3918,6376,,,0.192176236,,,0.156059187,0.233669952,0.045454546,1,22,0.001836316,0.167275104,268.3,17,6336,,,15.7480315,14,889,8.609595361,26.42252095,,,,,,,,,,,,,15.91511936,8.223574415,27.80051067,,,,,,,0.090333577,371,4107,0.076035705,0.104631449,0.000315657,2,6336,,,3168,0.000314713,2,6355,,,3177.5,0.000314713,2,6355,,,3177.5,3982,,,,,,,,,4097,0.43,,,,,,,,,0.44,0.39,,,,,,,,,0.39,0.923189927,4399,4765,0.899281261,0.947098592,0.586690018,1005,1713,0.490508356,0.682871679,0.023193916,61,2630,,,0.136,146,,0.084765957,0.187234043,,,,,,,,,,0.128205128,0,0.433999057,0.121898598,0.067691708,0.176105487,3.999964634,113103,28276,3.279643798,4.720285471,0.097835498,113,1155,0.045196514,0.150474482,20.51767677,13,6336,,,74.19833538,23,30998,47.03537982,111.3339341,,,,,,,,,,,,,75.38919673,46.04967992,116.4324999,,,,6.5,,,,,1,,,,,0.064853557,155,2390,0.04024525,0.089461863,0.041931385,0.015226462,0.068636308,0.016736402,0,0.034976873,0.012552301,0.000256269,0.024848334,0.837775203,2169,2589,0.801091731,0.874458674,,,,,,,,,,,,,0.839364519,0.776488553,0.902240485,0.251,,2589,0.197808306,0.304191694,77.80417784,,,75.83113512,79.77722057,,,,,,,,,,,,,77.85761842,75.7746375,79.94059935,,,,392.4008368,98,16738,313.8700189,484.6118413,,,,,,,,,,,,,387.8994007,305.6206087,485.5139427,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.104,,,0.088,0.121,0.153,,,0.131,0.176,0.101,,,0.085,0.118,179.6,10,5568,,,0.09,580,,,,0.108233451,703.1927325,6497,,,,,,,,,,,,,,,,,,,,,,,,,,0.315,,,0.299,0.331,0.107859257,328,3041,0.089986916,0.125731597,0.042001787,47,1119,0.027703915,0.05629966,0.000786782,5,6355,,,1271,,,,,,,,,,,3.459707573,,,,,,,,,3.443904988,3.437222398,,,,,,,,,3.37683995,0.115297651,,,,,4648.222,,,,,0.882406544,41639,47188,0.670407225,1.094405863,63636,,,54537.78723,72734.21277,,,,,,,,,,54250,24390.08511,84109.91489,59866,54182.59575,65549.40426,,,,,,0.195253506,362,1854,,,,,,,,0.214595512,,63636,,,3.50877193,1,285,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,25.18949369,11,43669,12.57450449,45.07096227,,,,,,,,,,,,,,,,,,,,,,,,,,0.576363636,2853,4950,,,0.593,,,,,6.320906095,,,,,0.814316703,1877,2305,0.74742007,0.881213336,0.063399281,141,2224,0.02920939,0.097589171,0.849457701,1958,2305,0.813981482,0.88493392,6355,,,,,0.171990559,1093,6355,,,0.232100708,1475,6355,,,0.059166011,376,6355,,,0.009441385,60,6355,,,0.005822187,37,6355,,,0,0,6355,,,0.063257278,402,6355,,,0.84956727,5399,6355,,,0,0,6088,0,0.012525512,0.424704957,2699,6355,,,1,6376,6376,, -20,055,20055,KS,Finney County,2024,1,9207.021485,464,105338,8101.043978,10312.99899,0,,,,2,,,,2,,,,2,7641.799309,6238.491124,9045.107495,,11767.57586,9597.774335,13937.37738,,,,,2,,0.196,,,0.168,0.224,3.573376715,,,2.866208551,4.296284058,4.317140059,,,3.531037893,5.117972975,0.081662237,338,4139,0.073319276,0.090005198,0,,,,0.137254902,0.082727408,0.191782396,0.094827586,0.057127262,0.13252791,0.079624337,0.06890255,0.090346123,0.076069731,0.061442843,0.090696618,,,,,,,0.179,,,0.147,0.211,0.39,,,0.335,0.446,8,0.107023556,0.081,,,0.314,,,0.268,0.36,0.795217052,30592,38470,,,0.184035591,,,0.152790694,0.21908704,0.12,3,25,0.038239959,0.237563726,695.4,265,38107,,,32.41019466,323,9966,28.87562578,35.94476354,,,,,,,,,,38.17534778,33.30474097,43.0459546,22.60812582,17.59047135,28.61203018,,,,,,,0.185584874,6105,32896,0.164138065,0.207031682,0.000577322,22,38107,,,1732.136364,0.000664011,25,37650,,,1506,0.001328021,50,37650,,,753,2256,,,,,,,,1611,2586,0.37,,,,,,0.1,,0.24,0.43,0.47,,,,,,0.43,0.35,0.44,0.49,0.721001329,16273,22570,0.696293557,0.745709101,0.537626702,5251,9767,0.482479598,0.592773806,0.020748914,425,20483,,,0.147,1618,,0.091,0.203,,,,,,,0.425531915,0.188620102,0.662443727,0.207077885,0.135810068,0.278345703,0.083967047,0.033091265,0.134842829,3.656107414,125803,34409,3.158230568,4.153984259,0.293036751,3333,11374,0.220234506,0.365838995,8.659826279,33,38107,,,84.15406166,155,184186,70.90560455,97.40251877,,,,,,,,,,62.02611513,47.0990297,80.18313718,113.7332954,90.71813063,140.8095587,,,,6.4,,,,,0,,,,,0.176870748,2210,12495,0.147849154,0.205892343,0.094660194,0.071335745,0.117984643,0.081232493,0.060110055,0.102354931,0.008003201,0.002814387,0.013192016,0.811883884,14907,18361,0.786509733,0.837258035,,,,,,,,,,0.787882367,0.737943324,0.83782141,0.860824101,0.83916973,0.882478471,0.081,,18361,0.062657254,0.099342746,75.93385469,,,74.93663882,76.93107055,,,,,,,,,,78.14997704,76.15780852,80.14214557,73.78485637,72.18481827,75.38489447,,,,440.4973166,464,105338,399.8547738,481.1398593,,,,,,,,,,398.1266856,333.9309605,462.3224108,508.3864371,444.0501474,572.7227268,,,,57.10323449,28,49034,37.94468462,82.5300729,,,,,,,,,,39.05105926,20.17825217,68.21434166,100.3872078,54.88262065,168.4326769,,,,6.043700604,26,4302,3.947945889,8.855421684,,,,,,,,,,,,,,,,,,,,,,0.116,,,0.101,0.133,0.148,,,0.128,0.167,0.13,,,0.112,0.147,116.9,35,29938,,,0.081,3120,,,,0.107023556,3935.898305,36776,,,18.1010218,20,110491,11.05657437,27.95556009,,,,,,,,,,,,,22.78060004,10.92418319,41.89433456,,,,0.342,,,0.33,0.354,0.231812124,5044,21759,0.203216379,0.260407868,0.098450475,1150,11681,0.07104622,0.12585473,0.001354582,51,37650,,,738.2352941,0.868361204,519.28,598,,,0.099309816,259,2608,0.036519492,0.16210014,2.911545829,,,,,,,,2.788471019,3.27249974,2.876544149,,,,,,,,2.748099599,3.230535701,0.08470558,,,,,-1251.525,,,,,0.730834753,38181,52243,0.663071138,0.798598368,69966,,,62938.59575,76993.40426,125593,23111.80851,228074.1915,,,,90871,25259.25532,156482.7447,62050,50348.38298,73751.61702,75120,64614.6383,85625.3617,,,,,,0.56730536,4678,8246,,,51.01453922,,,,,0.180559129,,69966,,,3.597122302,11,3058,,,4.650694116,12,258026,2.403081515,8.123826687,,,,,,,,,,,,,,,,,,,21.86948423,36,184186,15.23289707,30.41515851,19.54545948,,,,,,,,,,10.63953654,4.865073604,20.19715451,33.20898204,21.05164591,49.82977852,,,,15.20202404,28,184186,10.10163457,21.97115739,,,,,,,,,,10.69415778,5.128264334,19.66693692,24.37142045,14.44404834,38.51735146,,,,18.99033431,49,258026,14.04915386,25.10622906,,,,,,,,,,11.56345639,6.471978764,19.07216281,22.77925948,14.59510137,33.89373247,,,,,,,,,,,0.555948174,11800,21225,,,0.597,,,,,63.84200916,,,,,0.65079487,8474,13021,0.619878863,0.681710877,0.106686525,1361,12757,0.080453034,0.132920016,0.855541049,11140,13021,0.830424083,0.880658015,37650,,,,,0.296095618,11148,37650,,,0.120318725,4530,37650,,,0.039628154,1492,37650,,,0.012669323,477,37650,,,0.043001328,1619,37650,,,0.001832669,69,37650,,,0.52313413,19696,37650,,,0.381779549,14374,37650,,,0.113511056,3994,35186,0.095667765,0.131354346,0.485152722,18266,37650,,,0.194801144,7494,38470,, -20,057,20057,KS,Ford County,2024,1,7388.888089,410,95933,6404.429357,8373.346822,0,,,,2,,,,2,,,,2,6061.438311,4888.921691,7233.954931,,9498.255691,7422.867685,11573.6437,,,,,2,,0.203,,,0.172,0.234,3.710341737,,,2.973603154,4.440683578,4.616054048,,,3.770042163,5.434793543,0.064173703,266,4145,0.056713168,0.071634238,0,,,,,,,0.100775194,0.048826794,0.152723594,0.06148532,0.052734715,0.070235924,0.06577693,0.050775578,0.080778283,,,,,,,0.173,,,0.141,0.208,0.441,,,0.378,0.503,8.5,0.082556016,0.072,,,0.309,,,0.261,0.361,0.827806457,28383,34287,,,0.171632994,,,0.139597477,0.204257009,0.129032258,4,31,0.051743132,0.232752664,500.6,171,34159,,,47.05743602,399,8479,42.44003192,51.67484012,,,,,,,,,,55.47945206,49.43835616,61.52054795,28.35622508,21.83774858,36.21026638,,,,,,,0.199925477,5902,29521,0.17609569,0.223755264,0.000526948,18,34159,,,1897.722222,0.000649965,22,33848,,,1538.545455,0.001211298,41,33848,,,825.5609756,1672,,,,,,,,519,1751,0.41,,,,,,0.36,,0.27,0.45,0.39,,,,,,0.37,0.47,0.35,0.4,0.772169235,15787,20445,0.744013079,0.80032539,0.481712963,4162,8640,0.416458637,0.546967289,0.020839169,372,17851,,,0.133,1302,,0.085340426,0.180659575,,,,,,,0.340136054,0,0.891992518,0.218424102,0.152901185,0.283947019,0.030943988,0.003136429,0.058751546,3.563057483,115044,32288,3.162568682,3.963546283,0.208613196,2112,10124,0.137774731,0.279451662,7.318715419,25,34159,,,70.35550221,119,169141,57.71452472,82.99647971,,,,,,,,,,49.6513839,36.48196933,66.02581485,103.3937477,80.28929077,131.0762121,,,,6.5,,,,,1,,,,,0.12906097,1450,11235,0.099646786,0.158475154,0.065020207,0.043352829,0.086687584,0.060970183,0.038727005,0.08321336,0.008900757,0.002171044,0.015630469,0.813177056,13737,16893,0.785194253,0.841159858,,,,,,,,,,0.796286242,0.74939863,0.843173853,0.831989994,0.793110988,0.870869001,0.089,,16893,0.063169126,0.114830874,76.76248519,,,75.78904424,77.73592615,,,,,,,,,,79.12873456,76.96692851,81.29054062,74.98408478,73.41002131,76.55814825,,,,413.3582004,410,95933,372.9301973,453.7862034,,,,,,,,,,332.9445581,268.7965452,397.0925711,486.9718643,422.7359593,551.2077693,,,,80.8135228,36,44547,56.60079785,111.8799796,,,,,,,,,,73.98353062,46.89921203,111.0116215,112.9943503,60.16473265,193.2237803,,,,6.602216458,28,4241,4.387124889,9.542041015,,,,,,,,,,7.552351528,4.733018494,11.43435097,,,,,,,,,,0.119,,,0.103,0.137,0.15,,,0.129,0.171,0.126,,,0.108,0.144,108.5,29,26733,,,0.072,2480,,,,0.082556016,2794.356027,33848,,,,,,,,,,,,,,,,,,,,,,,,,,0.326,,,0.314,0.338,0.249936124,4891,19569,0.2189574,0.280914847,0.104712544,1091,10419,0.07492531,0.134499778,0.000915859,31,33848,,,1091.870968,0.909285714,509.2,560,,,,,,,,2.611866526,,,,,,,,2.457895142,3.211066904,2.679444177,,,,,,,,2.509609123,3.265489881,0.149062695,,,,,-2231.139333,,,,,0.796062933,42704,53644,0.699336397,0.89278947,67714,,,58968.46809,76459.53192,,,,89133,56658.95745,121607.0426,102722,33010.34043,172433.6596,66273,53443.04255,79102.95745,66685,55879.38298,77490.61702,,,,,,0.764736165,5942,7770,,,50.25770792,,,,,0.201671737,,67714,,,2.002670227,6,2996,,,,,,,,,,,,,,,,,,,,,,,,,,18.83764105,32,169141,12.79926315,26.7385278,18.91912665,,,,,,,,,,11.58328788,5.985253878,20.23367284,29.38760626,16.79755616,47.72363142,,,,7.094672492,12,169141,3.665920805,12.39296507,,,,,,,,,,,,,15.2049629,7.291370722,27.96246813,,,,17.67319733,42,237648,12.73728613,23.88902864,,,,,,,,,,18.25983749,11.69942242,27.16919078,17.04412297,9.742188949,27.67858789,,,,,,,,,,,0.497488839,8915,17920,,,0.628,,,,,61.8638248,,,,,0.643285372,7511,11676,0.608901293,0.67766945,0.052303094,595,11376,0.030359886,0.074246303,0.862709832,10073,11676,0.834661242,0.890758423,33848,,,,,0.294374852,9964,33848,,,0.119209407,4035,33848,,,0.023428268,793,33848,,,0.019617112,664,33848,,,0.014742378,499,33848,,,0.002777121,94,33848,,,0.579738832,19623,33848,,,0.368736705,12481,33848,,,0.128627526,4029,31323,0.102691135,0.154563917,0.478019381,16180,33848,,,0.192055298,6585,34287,, -20,059,20059,KS,Franklin County,2024,1,8897.2154,415,71748,7512.650036,10281.78076,0,,,,2,,,,2,,,,2,,,,2,8569.564485,7172.778294,9966.350677,,,,,2,,0.144,,,0.121,0.172,3.394039452,,,2.725220214,4.194226408,5.182767878,,,4.311074764,6.13276652,0.078140455,158,2022,0.066441803,0.089839108,0,,,,,,,,,,,,,0.078048781,0.0658084,0.090289161,,,,,,,0.189,,,0.151,0.232,0.406,,,0.345,0.473,7,0.175783873,0.094,,,0.24,,,0.2,0.289,0.532351131,13839,25996,,,0.181955603,,,0.149941837,0.218357466,0.189189189,7,37,0.108031103,0.282799629,354,92,25986,,,21.11514352,128,6062,17.45713153,24.7731555,,,,,,,,,,,,,20.88167053,16.94336475,24.81997631,,,,,,,0.101032588,2133,21112,0.086734716,0.11533046,0.000423305,11,25986,,,2362.363636,0.000307787,8,25992,,,3249,0.002308403,60,25992,,,433.2,3417,,,,,,,,,3445,0.4,,,,,,,,,0.4,0.34,,,,,,,0.26,,0.34,0.920211256,16204,17609,0.900765549,0.939656962,0.600451832,3721,6197,0.526636541,0.674267122,0.024408284,363,14872,,,0.121,701,,0.072148936,0.169851064,,,,,,,,,,0.184652278,0.016129982,0.353174575,0.054993051,0.030500245,0.079485858,3.97136355,125646,31638,3.50497107,4.43775603,0.155500414,940,6045,0.1057037,0.205297127,11.15985531,29,25986,,,72.3189499,93,128597,58.37072616,88.59559945,,,,,,,,,,,,,74.56738063,59.72541508,91.97858852,,,,7.8,,,,,1,,,,,0.125122669,1275,10190,0.095803837,0.154441502,0.096806387,0.070369981,0.123242794,0.018056919,0.007509817,0.02860402,0.017664377,0.003898433,0.031430321,0.792125984,10060,12700,0.756643959,0.82760801,,,,,,,,,,,,,0.778583264,0.735517603,0.821648926,0.365,,12700,0.31636738,0.41363262,75.45161113,,,74.37218373,76.53103853,,,,,,,,,,,,,75.70510725,74.60837486,76.80183965,,,,436.2489362,415,71748,392.0470705,480.450802,,,,,,,,,,,,,422.6589354,377.2905216,468.0273491,,,,69.91977626,19,27174,42.09627278,109.1883917,,,,,,,,,,,,,59.65824349,32.61571686,100.0963955,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.103,,,0.089,0.122,0.162,,,0.14,0.187,0.094,,,0.08,0.111,101.2,22,21746,,,0.094,2440,,,,0.175783873,4568.974434,25992,,,12.94783318,10,77233,6.208989287,23.81152622,,,,,,,,,,,,,,,,,,,0.325,,,0.308,0.341,0.125605789,1892,15063,0.106541959,0.144669619,0.042211372,268,6349,0.029104989,0.055317755,0.000500154,13,25992,,,1999.384615,0.892476489,284.7,319,,,,,,,,2.967817459,,,,,,,,2.969532407,3.011156741,2.857892643,,,,,,,,2.538265862,2.918960831,0.021251093,,,,,2423.4385,,,,,0.808356799,44496,55045,0.705894242,0.910819356,67263,,,60992.19149,73533.80851,19821,5515.978723,34126.02128,124125,77012.31915,171237.6809,103347,101413.2128,105280.7872,50905,13265.85106,88544.14894,69460,62072.76596,76847.23404,,,,,,0.446275238,1923,4309,,,,,,,,0.203023951,,67263,,,8.701472557,13,1494,,,,,,,,,,,,,,,,,,,,,,,,,,10.2500005,12,128597,5.116763318,18.34008223,9.331477406,,,,,,,,,,,,,11.51950371,5.750494746,20.61157415,,,,,,,,,,,,,,,,,,,,,,,,,,,16.13208282,29,179766,10.80390905,23.16836189,,,,,,,,,,,,,15.91606114,10.39689956,23.32071725,,,,,,,,,,,0.646476684,12477,19300,,,0.706,,,,,32.92829227,,,,,0.734315169,7479,10185,0.701369857,0.767260482,0.095430651,944,9892,0.06971524,0.121146063,0.811585665,8266,10185,0.778832122,0.844339209,25992,,,,,0.226877501,5897,25992,,,0.182787011,4751,25992,,,0.013542629,352,25992,,,0.010580179,275,25992,,,0.005617113,146,25992,,,0.000153894,4,25992,,,0.048399508,1258,25992,,,0.900007695,23393,25992,,,0.00382176,94,24596,0,0.008887164,0.495652509,12883,25992,,,0.520657024,13535,25996,, -20,061,20061,KS,Geary County,2024,1,11525.10576,409,95868,10182.47698,12867.73454,0,,,,2,,,,2,15477.79314,12019.112,19621.79088,,9612.444504,6531.189675,13644.09768,,11270.85958,9531.590379,13010.12878,,,,,2,,0.178,,,0.156,0.204,3.780396459,,,3.071699409,4.598372719,4.981591213,,,4.159942829,5.89631635,0.074709124,488,6532,0.068332968,0.081085281,0,,,,0.066225166,0.026560828,0.105889503,0.121097446,0.101429616,0.140765275,0.070338983,0.055748307,0.084929659,0.064305177,0.056368968,0.072241387,,,,0.070987654,0.043024528,0.098950781,0.193,,,0.162,0.227,0.425,,,0.365,0.484,6.5,0.161437317,0.125,,,0.283,,,0.241,0.329,0.79623833,29253,36739,,,0.19009757,,,0.156373746,0.22684497,0.2,4,20,0.089212428,0.331567708,1380.3,496,35934,,,58.30232146,329,5643,52.00227184,64.60237108,,,,,,,49.18032787,35.87246862,65.80714808,53.89718076,41.59670624,68.69638127,64.25275115,54.89204717,73.61345514,,,,59.95717345,39.84110633,86.6548093,0.096135751,3065,31882,0.0794549,0.112816602,0.000389603,14,35934,,,2566.714286,0.001148749,41,35691,,,870.5121951,0.004230759,151,35691,,,236.3642384,2649,,,,,,,3255,,2674,0.3,,,,,,0.17,0.2,0.3,0.33,0.3,,,,,,0.3,0.18,0.23,0.33,0.936972425,18315,19547,0.921097261,0.95284759,0.743968739,8758,11772,0.67510148,0.812835999,0.037594647,427,11358,,,0.158,1767,,0.109148936,0.206851064,,,,0.319148936,0.041367779,0.596930093,0.349244713,0.216182949,0.482306477,0.271314387,0.146434132,0.396194642,0.237769784,0.169719616,0.305819952,3.667171881,101621,27711,3.179694352,4.15464941,0.269196587,3029,11252,0.209813506,0.328579669,6.678911338,24,35934,,,76.98275707,128,166271,63.64617482,90.31933931,,,,,,,100.0142878,66.45876788,144.5484924,68.31829132,41.13207423,106.6874746,78.20451015,61.29985208,98.33043032,,,,7.8,,,,,1,,,,,0.168674699,2170,12865,0.134499172,0.202850226,0.136363636,0.106147601,0.166579672,0.028371551,0.012596116,0.044146986,0.00855033,0.001474495,0.015626166,0.78621001,13934,17723,0.760046914,0.812373105,,,,0.589090909,0.458220972,0.719960846,0.664291168,0.473226285,0.855356052,0.79197845,0.623624118,0.960332781,0.733830671,0.694086487,0.773574855,0.141,,17723,0.108631815,0.173368185,73.17629314,,,72.0121463,74.34043997,,,,,,,68.98145881,66.432411,71.53050661,80.38451464,66.99645228,93.772577,73.43405429,71.96446399,74.90364459,,,,612.1385844,409,95868,550.0182015,674.2589673,,,,,,,830.6379634,665.3069576,1024.588859,491.9070882,324.1698707,715.6989872,607.8149504,528.9589258,686.6709749,,,,79.66313873,35,43935,55.48829499,110.7921415,,,,,,,,,,,,,74.91296876,43.63956493,119.9429199,,,,5.735294118,39,6800,4.078354778,7.840335863,,,,,,,,,,,,,,,,,,,,,,0.117,,,0.102,0.134,0.172,,,0.15,0.195,0.123,,,0.106,0.142,171,46,26896,,,0.125,4580,,,,0.161437317,5547.309073,34362,,,16.02853079,16,99822,9.161690262,26.02932981,,,,,,,,,,,,,,,,,,,0.342,,,0.332,0.353,0.126330935,2634,20850,0.101309659,0.151352212,0.040521494,460,11352,0.026223622,0.054819366,0.003278137,117,35691,,,305.0512821,0.85,299.2,352,,,0.071555293,121,1691,0.023030874,0.120079712,3.072931862,,,,,,3.123206502,2.837229071,,3.217705667,2.921336413,,,,,,3.127249067,2.662160741,2.784577043,3.075917512,0.013843756,,,,,932.5459,,,,,0.863855068,38242,44269,0.740286942,0.987423193,60026,,,52723.3617,67328.6383,,,,53281,11079.6383,95482.3617,48337,42172.23404,54501.76596,45452,38001.61702,52902.38298,64538,57858.51064,71217.48936,,,,,,0.476127709,3251,6828,,,20.40794806,,,,,0.227501416,,60026,,,1.859168022,8,4303,,,5.860511455,14,238887,3.203996147,9.832942405,,,,,,,,,,,,,,,,,,,32.51505658,53,166271,23.71670539,43.50770391,31.87567285,,,,,,,40.02883252,17.28160872,78.87275766,35.94031302,14.44986986,74.05078102,30.02144709,19.23530762,44.66953356,,,,27.66567832,46,166271,20.25475363,36.9021379,,,,,,,39.29132733,19.61408904,70.30303798,,,,25.71107183,16.47356886,38.25603685,,,,13.81406272,33,238887,9.508965148,19.40008007,,,,,,,,,,,,,17.05295313,10.81010946,25.58780261,,,,,,,,,,,0.433348376,9603,22160,,,0.545,,,,,32.23355633,,,,,0.430210184,5813,13512,0.401969617,0.45845075,0.137597649,1779,12929,0.106358318,0.16883698,0.908673772,12278,13512,0.888311692,0.929035851,35691,,,,,0.317278866,11324,35691,,,0.091899919,3280,35691,,,0.160348547,5723,35691,,,0.013841024,494,35691,,,0.034182287,1220,35691,,,0.012103892,432,35691,,,0.169174302,6038,35691,,,0.566529377,20220,35691,,,0.02340824,750,32040,0.013566304,0.033250176,0.474377294,16931,35691,,,0.116225265,4270,36739,, -20,063,20063,KS,Gove County,2024,1,5103.533718,37,7051,2637.070345,8914.846339,1,,,,2,,,,2,,,,2,,,,2,5369.751418,2774.628915,9379.875086,1,,,,2,,0.137,,,0.114,0.163,3.143474412,,,2.489973361,3.941661857,4.7773978,,,3.828814104,5.851397239,0.05,12,240,0.02242616,0.07757384,1,,,,,,,,,,,,,0.054298643,0.024422025,0.08417526,,,,,,,0.177,,,0.14,0.217,0.386,,,0.309,0.466,5.8,0.330505549,0.077,,,0.245,,,0.199,0.294,0.547829286,1489,2718,,,0.169575609,,,0.135927061,0.207298918,0.272727273,3,11,0.11266692,0.445445377,0,0,2755,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.113744076,240,2110,0.095871735,0.131616416,0.002177858,6,2755,,,459.1666667,0.000368053,1,2717,,,2717,0.000368053,1,2717,,,2717,5789,,,,,,,,,5533,0.47,,,,,,,,,0.46,0.34,,,,,,,,,0.34,0.937865109,1766,1883,0.906272413,0.969457805,0.643697479,383,595,0.539443114,0.747951844,0.021167883,29,1370,,,0.151,102,,0.091425532,0.210574468,,,,,,,,,,,,,0.012383901,0,0.027285166,3.95862069,114800,29000,3.014880786,4.902360593,0.096100279,69,718,0.035538046,0.156662511,29.03811252,8,2755,,,,,,,,,,,,,,,,,,,,,,,,,,5.7,,,,,0,,,,,0.107142857,135,1260,0.057546473,0.156739242,0.095541401,0.042859157,0.148223646,0.018253968,0,0.042319552,0.003174603,0,0.013741488,0.748240813,957,1279,0.688061948,0.808419678,,,,,,,,,,,,,0.750363901,0.679546342,0.82118146,0.214,,1279,0.162918585,0.265081415,78.65570929,,,76.07102947,81.24038912,,,,,,,,,,,,,78.57664396,75.87209349,81.28119444,,,,324.631716,37,7051,222.0478534,458.2831218,,,,,,,,,,,,,330.9986965,224.8975553,469.8262286,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.097,,,0.083,0.113,0.156,,,0.133,0.179,0.092,,,0.078,0.107,0,0,2248,,,0.077,210,,,,0.330505549,890.7124531,2695,,,,,,,,,,,,,,,,,,,,,,,,,,0.307,,,0.29,0.323,0.13437058,190,1414,0.111732282,0.157008878,0.075342466,55,730,0.050321189,0.100363742,0.000368053,1,2717,,,2717,,,,,,,,,,,3.393489509,,,,,,,,,3.404095627,3.230943464,,,,,,,,,3.203930893,,,,,,4007.2945,,,,,0.614810988,35699,58065,0.55615324,0.673468736,64037,,,56997.68085,71076.31915,,,,,,,,,,,,,58929,49971.38298,67886.61702,,,,,,0.311688312,144,462,,,,,,,,0.213251714,,64037,,,14.70588235,3,204,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.726419753,1471,2025,,,0.631,,,,,8.921453774,,,,,0.781725888,924,1182,0.738335974,0.825115802,0.098436063,107,1087,0.039059663,0.157812462,0.758037225,896,1182,0.719086677,0.796987773,2717,,,,,0.25027604,680,2717,,,0.237394185,645,2717,,,0.005520795,15,2717,,,0.001840265,5,2717,,,0.009937431,27,2717,,,0,0,2717,,,0.039013618,106,2717,,,0.936326831,2544,2717,,,0,0,2556,0,0.020510772,0.49687155,1350,2717,,,1,2718,2718,, -20,065,20065,KS,Graham County,2024,1,8737.127378,45,6254,4652.152355,14940.75391,1,,,,2,,,,2,,,,2,,,,2,8353.263459,4005.714517,15361.94891,1,,,,2,,0.161,,,0.134,0.19,3.442303059,,,2.725201884,4.247994123,5.194803807,,,4.125276496,6.26153025,0.106918239,17,159,0.058886422,0.154950056,1,,,,,,,,,,,,,0.089655172,0.043154128,0.136156217,,,,,,,0.194,,,0.151,0.239,0.367,,,0.29,0.446,8.5,0.065681629,0.079,,,0.272,,,0.223,0.325,0.65300207,1577,2415,,,0.15718719,,,0.125066062,0.193643691,0,0,2,0,0.510593623,250,6,2400,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.130851664,232,1773,0.111787834,0.149915494,0.000833333,2,2400,,,1200,0,0,2411,,,-2411,,0,2411,,,,5128,,,,,,,,,5354,0.56,,,,,,,,,0.57,0.39,,,,,,,,,0.39,0.938271605,1672,1782,0.914574952,0.961968258,0.573076923,298,520,0.438769173,0.707384673,0.023509656,28,1191,,,0.164,82,,0.102042553,0.225957447,,,,,,,,,,0.02631579,0,0.522429617,0.08,0,0.164245041,3.056780516,84844,27756,2.219215112,3.89434592,0.194,97,500,0.067216269,0.320783731,29.16666667,7,2400,,,138.6849405,17,12258,80.78908851,222.0480243,,,,,,,,,,,,,130.2325581,71.19935141,218.5081035,,,,5.6,,,,,0,,,,,0.116,145,1250,0.066405092,0.165594908,0.115569823,0.057349266,0.173790381,0,0,0.020970213,0.0032,0,0.014066565,0.763250883,864,1132,0.692924204,0.833577563,,,,,,,,,,,,,0.760517799,0.677954771,0.843080828,0.139,,1132,0.084386099,0.193613901,78.57719631,,,74.21901926,82.93537337,,,,,,,,,,,,,78.64066338,73.99839828,83.28292848,,,,445.0602124,45,6254,310.000745,618.9710174,,,,,,,,,,,,,408.6416699,273.6737397,586.8776028,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.11,,,0.093,0.128,0.165,,,0.141,0.189,0.106,,,0.09,0.123,,,,,,0.079,190,,,,0.065681629,170.5751896,2597,,,,,,,,,,,,,,,,,,,,,,,,,,0.328,,,0.31,0.345,0.153605016,196,1276,0.128583739,0.178626292,0.075471698,40,530,0.0528334,0.098109996,0.001244297,3,2411,,,803.6666667,,,,,,,,,,,2.477488724,,,,,,,,,2.386637563,2.513671457,,,,,,,,,2.444976504,,,,,,445.1514,,,,,0.868950187,43000,49485,0.590258659,1.147641715,53233,,,45586.02128,60879.97872,,,,,,,34010,33063.95745,34956.04255,19082,7996.382979,30167.61702,49583,44955.25532,54210.74468,,,,,,0.497512438,200,402,,,,,,,,0.256532602,,53233,,,10,1,100,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.687403599,1337,1945,,,0.545,,,,,0.018574184,,,,,0.814166667,977,1200,0.738830469,0.889502865,0.09787234,115,1175,0.038954471,0.15679021,0.865,1038,1200,0.815139607,0.914860393,2411,,,,,0.209871423,506,2411,,,0.274989631,663,2411,,,0.033596018,81,2411,,,0.010369141,25,2411,,,0.016590626,40,2411,,,0.001244297,3,2411,,,0.046038988,111,2411,,,0.871007881,2100,2411,,,0.000859845,2,2326,0,0.023064491,0.498963086,1203,2411,,,1,2415,2415,, -20,067,20067,KS,Grant County,2024,1,6787.467907,92,20284,4870.804156,9207.966631,0,,,,2,,,,2,,,,2,8697.046832,5681.199738,12743.18868,,4867.879395,2835.719135,7793.946471,1,,,,2,,0.167,,,0.141,0.197,3.351543752,,,2.617108307,4.123360786,4.582180766,,,3.639357337,5.552831015,0.077220077,60,777,0.058450273,0.095989882,0,,,,,,,,,,0.079591837,0.055626556,0.103557118,0.067857143,0.038398273,0.097316013,,,,,,,0.158,,,0.127,0.192,0.361,,,0.29,0.439,8.9,0.064482386,0.06,,,0.283,,,0.235,0.337,0.838275299,6163,7352,,,0.198193125,,,0.159745389,0.239526935,0.181818182,2,11,0.044108943,0.367070091,300.4,22,7324,,,36.05408112,72,1997,28.21009799,45.40414825,,,,,,,,,,46.57293497,34.88632419,60.91854563,23.66127024,14.24563034,36.95000445,,,,,,,0.179097234,1107,6181,0.156458936,0.201735531,0.000409612,3,7324,,,2441.333333,0.000555787,4,7197,,,1799.25,0.000694734,5,7197,,,1439.4,2928,,,,,,,,985,3204,0.27,,,,,,,,0.27,0.26,0.34,,,,,,,,0.29,0.36,0.791731844,3543,4475,0.75066463,0.832799058,0.645,1161,1800,0.507180499,0.782819501,0.029078014,82,2820,,,0.152,321,,0.093617021,0.210382979,,,,,,,,,,0.043540328,0,0.090566359,0.013812155,0,0.066830141,3.45166505,149464,43302,2.096255303,4.807074797,0.077529566,177,2283,0.019319101,0.135740032,17.74986346,13,7324,,,54.92543872,20,36413,33.54988489,84.82788538,,,,,,,,,,,,,67.28343146,34.76633086,117.5306142,,,,6.2,,,,,0,,,,,0.08984375,230,2560,0.023806033,0.155881467,0.032854209,0.000785807,0.064922612,0.060546875,0,0.12590031,0,0,0.009873167,0.823250627,2953,3587,0.728031742,0.918469512,,,,,,,,,,,,,0.867236467,0.832626208,0.901846727,0.15,,3587,0.061524393,0.238475607,77.96753306,,,75.84344432,80.0916218,,,,,,,,,,74.37409414,71.04366079,77.70452749,80.06236673,77.5824943,82.54223916,,,,379.9047622,92,20284,304.2881407,468.6111206,,,,,,,,,,484.8278849,339.5674902,671.2061543,318.2204244,231.2194475,427.1960666,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.104,,,0.089,0.121,0.145,,,0.125,0.167,0.107,,,0.092,0.125,,,,,,0.06,450,,,,0.064482386,504.8326011,7829,,,,,,,,,,,,,,,,,,,,,,,,,,0.331,,,0.316,0.344,0.223788328,905,4044,0.192809605,0.254767052,0.096988485,219,2258,0.068392741,0.12558423,0.000555787,4,7197,,,1799.25,0.825,100.65,122,,,,,,,,2.856156487,,,,,,,,2.721318257,3.321500328,2.727687755,,,,,,,,2.554021901,3.219190564,0.013950063,,,,,-5621.982,,,,,0.751786187,45456,60464,0.444541354,1.05903102,66022,,,56454.34043,75589.65957,,,,,,,,,,57629,51809.76596,63448.23404,110783,94813.46809,126752.5319,,,,,,0.543291474,822,1513,,,,,,,,0.206840144,,66022,,,3.50877193,2,570,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,19.30800124,10,51792,9.258937087,35.50810172,,,,,,,,,,,,,,,,,,,,,,,,,,0.592654028,2501,4220,,,0.636,,,,,20.89223848,,,,,0.762809917,1846,2420,0.698760025,0.82685981,0.027084215,64,2363,0,0.062507245,0.949586777,2298,2420,0.911978058,0.987195496,7197,,,,,0.295400862,2126,7197,,,0.149645686,1077,7197,,,0.005557871,40,7197,,,0.029039878,209,7197,,,0.00819786,59,7197,,,0,0,7197,,,0.509239961,3665,7197,,,0.461303321,3320,7197,,,0.076561352,521,6805,0.027917154,0.12520555,0.487981103,3512,7197,,,0.202257889,1487,7352,, -20,069,20069,KS,Gray County,2024,1,7742.678847,74,16326,5362.030182,10819.61762,0,,,,2,,,,2,,,,2,,,,2,8245.108303,5521.878433,11841.35088,,,,,2,,0.149,,,0.123,0.177,3.199760416,,,2.515868062,3.977527566,4.734516612,,,3.83024859,5.730793912,0.062068966,36,580,0.042432434,0.081705497,0,,,,,,,,,,,,,0.063917526,0.042147836,0.085687215,,,,,,,0.17,,,0.131,0.212,0.375,,,0.306,0.445,8.7,0.118892007,0.045,,,0.253,,,0.208,0.304,0.683000177,3861,5653,,,0.187281329,,,0.152250321,0.226876554,0.125,1,8,0.007330353,0.353459145,265.8,15,5644,,,9.253139458,14,1513,5.058777446,15.52519572,,,,,,,,,,,,,,,,,,,,,,0.204235689,974,4769,0.179214412,0.229256965,0.000177179,1,5644,,,5644,,0,5729,,,,0.000174551,1,5729,,,5729,2354,,,,,,,,,2451,0.39,,,,,,,,,0.4,0.46,,,,,,,,0.48,0.46,0.753424658,2640,3504,0.703526098,0.803323217,0.585289515,748,1278,0.487806179,0.68277285,0.019657578,62,3154,,,0.099,160,,0.06087234,0.13712766,,,,,,,,,,0.118644068,0.01061596,0.226672175,0.037478705,0.009075158,0.065882253,3.398108411,124313,36583,2.833774757,3.962442065,0.163865546,273,1666,0.086513782,0.24121731,30.12048193,17,5644,,,67.62011022,20,29577,41.30412004,104.4337759,,,,,,,,,,,,,74.97813138,44.43679252,118.4977726,,,,6.4,,,,,1,,,,,0.058139535,125,2150,0.03098189,0.085297179,0.030117647,0.004223729,0.056011565,0.026976744,0.00166568,0.052287809,0.00372093,0.001374696,0.006067165,0.820089439,2384,2907,0.767953168,0.872225711,,,,,,,,,,,,,0.858215548,0.785279897,0.931151198,0.208,,2907,0.15575078,0.26024922,77.18638831,,,74.91474638,79.45803025,,,,,,,,,,,,,76.7162115,74.20659112,79.22583187,,,,386.4546264,74,16326,301.2603402,488.2621715,,,,,,,,,,,,,411.2275169,315.2857792,527.1751175,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.1,,,0.085,0.118,0.153,,,0.132,0.177,0.09,,,0.077,0.105,,,,,,0.045,260,,,,0.118892007,714.0653952,6006,,,,,,,,,,,,,,,,,,,,,,,,,,0.313,,,0.297,0.328,0.229819563,726,3159,0.200032329,0.259606797,0.156028369,264,1692,0.114326241,0.197730497,0.000349101,2,5729,,,2864.5,,,,,,,,,,,3.373342458,,,,,,,,,3.498133454,3.28970654,,,,,,,,,3.355311128,0.046243055,,,,,2953.52875,,,,,0.602044355,36458,60557,0.4872182,0.71687051,77761,,,68013.42553,87508.57447,,,,,,,,,,74083,48390.91489,99775.08511,74833,70847.46809,78818.53192,,,,,,0.358441558,414,1155,,,,,,,,0.175615026,,77761,,,4.807692308,2,416,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,26.35109237,11,41744,13.15437037,47.14938318,,,,,,,,,,,,,,,,,,,,,,,,,,0.599737877,2288,3815,,,0.609,,,,,16.44277359,,,,,0.803797468,1651,2054,0.779950498,0.827644439,0.030333168,61,2011,0,0.061181318,0.849561831,1745,2054,0.813272754,0.885850907,5729,,,,,0.286437424,1641,5729,,,0.160411939,919,5729,,,0.008727527,50,5729,,,0.008029325,46,5729,,,0.00645837,37,5729,,,0.000349101,2,5729,,,0.187292721,1073,5729,,,0.781462734,4477,5729,,,0.043241211,230,5319,0.022131625,0.064350797,0.484726828,2777,5729,,,1,5653,5653,, -20,071,20071,KS,Greeley County,2024,1,14363.28886,29,3374,7170.10205,25699.89133,1,,,,2,,,,2,,,,2,,,,2,12592.22385,5436.428487,24811.7009,1,,,,2,,0.151,,,0.126,0.178,3.288694167,,,2.553438061,4.155547586,4.476749608,,,3.49268946,5.571795388,,,,,,0,,,,,,,,,,,,,,,,,,,,,,0.165,,,0.129,0.203,0.395,,,0.312,0.476,8.6,0.041657349,0.085,,,0.259,,,0.21,0.309,,,1284,,,0.168439055,,,0.134590222,0.208202184,0.666666667,4,6,0.494967173,0.784226735,383.4,5,1304,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.149097816,157,1053,0.127651007,0.170544624,0.000766871,1,1304,,,1304,0,0,1223,,,-1223,,0,1223,,,,,,,,,,,,,,0.24,,,,,,,,,0.26,0.03,,,,,,,,,0.03,0.889285714,747,840,0.827538309,0.951033119,0.664495114,204,307,0.548882912,0.780107316,0.01511335,12,794,,,0.116,39,,0.070723404,0.161276596,,,,,,,,,,,,,0.194139194,0.061442052,0.326836336,3.177599915,119500,37607,1.758151778,4.597048051,0.174731183,65,372,0.063224782,0.286237584,30.67484663,4,1304,,,,,,,,,,,,,,,,,,,,,,,,,,5.4,,,,,0,,,,,0.051020408,25,490,0.006892345,0.095148471,0.055555556,0,0.132562452,0,0,0.053495441,0.016326531,0,0.044569688,0.643159379,456,709,0.569688939,0.71662982,,,,,,,,,,,,,0.595323741,0.544887679,0.645759803,0.092,,709,0,0.186729024,,,,,,,,,,,,,,,,,,,,,,,,647.9816281,29,3374,419.3395442,956.5487091,,,,,,,,,,,,,591.0934595,344.3337226,946.3978887,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.102,,,0.087,0.118,0.151,,,0.129,0.174,0.101,,,0.085,0.117,0,0,1044,,,0.085,110,,,,0.041657349,51.9467145,1247,,,,,,,,,,,,,,,,,,,,,,,,,,0.324,,,0.308,0.34,0.174855491,121,692,0.147451236,0.202259747,0.098143236,37,377,0.065973023,0.130313449,0.003270646,4,1223,,,305.75,,,,,,,,,,,,,,,,,,,,,2.99207407,,,,,,,,,3.133571591,0.004731372,,,,,-1176.335,,,,,0.740267919,38793,52404,0.646274264,0.834261573,72300,,,64134.7234,80465.2766,,,,,,,,,,61833,56150.78723,67515.21277,76923,66155.51064,87690.48936,,,,,,0.513944223,129,251,,,,,,,,0.188879668,,72300,,,,,112,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.806289308,641,795,,,0.591,,,,,0.024083583,,,,,0.745027125,412,553,0.669452572,0.820601678,0.038817006,21,541,0,0.127575812,0.896925859,496,553,0.833134133,0.960717585,1223,,,,,0.275551922,337,1223,,,0.187244481,229,1223,,,0.00572363,7,1223,,,0.009811938,12,1223,,,0.006541292,8,1223,,,0,0,1223,,,0.205233034,251,1223,,,0.767784137,939,1223,,,0.031040269,37,1192,0,0.080230753,0.497138185,608,1223,,,1,1284,1284,, -20,073,20073,KS,Greenwood County,2024,1,10190.17837,125,15782,6734.567335,13645.7894,0,,,,2,,,,2,,,,2,,,,2,10245.2565,6726.109841,13764.40316,,,,,2,,0.157,,,0.132,0.185,3.484648732,,,2.771165921,4.246528608,5.061832522,,,4.116080325,6.058066334,0.104060914,41,394,0.073910657,0.134211171,0,,,,,,,,,,,,,0.098901099,0.068232625,0.129569573,,,,,,,0.196,,,0.156,0.239,0.411,,,0.339,0.483,6.6,0.178099904,0.113,,,0.271,,,0.223,0.324,0.595578457,3583,6016,,,0.163269064,,,0.131328186,0.196070794,0.15,3,20,0.050642257,0.283837277,235.7,14,5939,,,19.31518876,22,1139,12.10472596,29.24342791,,,,,,,,,,,,,18.10865191,10.73233479,28.61947713,,,,,,,0.110062169,478,4343,0.093381318,0.12674302,0.000336757,2,5939,,,2969.5,0.000336757,2,5939,,,2969.5,0.000336757,2,5939,,,2969.5,2760,,,,,,,,,2798,0.39,,,,,,,,,0.39,0.46,,,,,,,,,0.46,0.915997246,3991,4357,0.895151302,0.93684319,0.598312236,709,1185,0.506370722,0.69025375,0.024124256,73,3026,,,0.218,275,,0.139361702,0.296638298,,,,,,,0.705882353,0.141540377,1,0.370786517,0,0.760810016,0.189311594,0.110989896,0.267633293,5.047125773,113525,22493,3.685587044,6.408664501,0.218167702,281,1288,0.135429196,0.300906207,18.52163664,11,5939,,,116.7951413,35,29967,81.35209531,162.4337684,,,,,,,,,,,,,116.7755355,79.87437985,164.8522136,,,,8.2,,,,,1,,,,,0.087198516,235,2695,0.061307337,0.113089695,0.06229019,0.033547861,0.09103252,0.021892393,0.003092604,0.040692183,0.00296846,0,0.008556975,0.784244145,2210,2818,0.738432829,0.830055461,,,,,,,,,,,,,0.745871071,0.698521801,0.793220341,0.367,,2818,0.307796046,0.426203954,74.2910911,,,71.73460707,76.84757513,,,,,,,,,,,,,74.17111102,71.5633988,76.77882325,,,,481.376499,125,15782,384.2733081,578.47969,,,,,,,,,,,,,488.5187208,386.0513695,590.9860721,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.111,,,0.095,0.129,0.17,,,0.148,0.194,0.102,,,0.087,0.118,137.7,7,5083,,,0.113,680,,,,0.178099904,1191.31026,6689,,,,,,,,,,,,,,,,,,,,,,,,,,0.332,,,0.315,0.35,0.135335917,419,3096,0.113889109,0.156782726,0.04805492,63,1311,0.032565558,0.063544282,0.001010271,6,5939,,,989.8333333,,,,,,,,,,,3.171100516,,,,,,,,,3.191687803,3.079453009,,,,,,,,,3.130171636,0.049180418,,,,,2321.1735,,,,,0.860821582,39312,45668,0.735737368,0.985905796,52145,,,46002.87234,58287.12766,52250,29366.25532,75133.74468,,,,,,,76375,22165.80851,130584.1915,51229,44710.3617,57747.6383,,,,,,0.549189189,508,925,,,,,,,,0.261885128,,52145,,,6.451612903,2,310,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,28.32727444,12,42362,14.63711607,49.4820477,,,,,,,,,,,,,28.3497848,14.15211043,50.72559602,,,,,,,,,,,0.653985122,3077,4705,,,0.498,,,,,9.252266162,,,,,0.795665635,2056,2584,0.760751259,0.83058001,0.082895269,205,2473,0.044063243,0.121727295,0.78250774,2022,2584,0.749636562,0.815378918,5939,,,,,0.215692878,1281,5939,,,0.265869675,1579,5939,,,0.008924061,53,5939,,,0.017342987,103,5939,,,0.003535949,21,5939,,,0,0,5939,,,0.043441657,258,5939,,,0.905034518,5375,5939,,,0.001403263,8,5701,0,0.014636224,0.49099175,2916,5939,,,1,6016,6016,, -20,075,20075,KS,Hamilton County,2024,1,10698.5279,39,6987,6340.625671,16908.2865,1,,,,2,,,,2,,,,2,,,,2,11489.57523,5509.697917,21129.73792,1,,,,2,,0.177,,,0.149,0.208,3.488482803,,,2.788703314,4.352094652,4.730025447,,,3.759287867,5.820565643,0.061068702,16,262,0.03207313,0.090064274,1,,,,,,,,,,0.082191781,0.037639514,0.126744048,,,,,,,,,,0.179,,,0.146,0.218,0.405,,,0.325,0.49,8.8,0.074315801,0.061,,,0.295,,,0.244,0.351,0.830420969,2091,2518,,,0.179297121,,,0.14352159,0.219262995,0.166666667,1,6,0.011498194,0.426636125,201.3,5,2484,,,45.62043796,25,548,29.52314206,67.34476587,,,,,,,,,,75.75757576,46.2746954,117.0014315,,,,,,,,,,0.242467719,507,2091,0.212680485,0.272254953,0.000402577,1,2484,,,2484,0.000411523,1,2430,,,2430,,0,2430,,,,2023,,,,,,,,,2135,0.23,,,,,,,,,0.23,0.28,,,,,,,,,0.29,0.856010568,1296,1514,0.775686874,0.936334262,0.338120104,259,766,0.225518888,0.450721321,0.016584767,27,1628,,,0.174,113,,0.107276596,0.240723404,,,,,,,,,,0.17114094,0,0.360968807,0.081545064,0.009561065,0.153529064,4.112886725,116588,28347,3.303415726,4.922357724,0.07460733,57,764,0.00182591,0.14738875,20.12882448,5,2484,,,126.0338716,16,12695,72.03924737,204.6711114,,,,,,,,,,,,,157.0064111,81.12750371,274.2586033,,,,5.6,,,,,0,,,,,0.042682927,35,820,0.010467671,0.074898183,0.015189873,0,0.064771256,0.024390244,0,0.06159677,0.009756098,0,0.019909405,0.68044789,790,1161,0.605668157,0.755227623,,,,,,,,,,,,,0.63425254,0.548419196,0.720085884,0.234,,1161,0.094112857,0.373887143,73.72053539,,,69.79189656,77.64917423,,,,,,,,,,,,,,,,,,,456.1343206,39,6987,321.1606564,628.7210763,,,,,,,,,,,,,501.4516922,327.5648938,734.7429131,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.11,,,0.095,0.128,0.155,,,0.133,0.178,0.109,,,0.093,0.127,,,,,,0.061,160,,,,0.074315801,199.9095036,2690,,,,,,,,,,,,,,,,,,,,,,,,,,0.333,,,0.319,0.346,0.28611305,410,1433,0.24798539,0.324240709,0.147660819,101,684,0.103575712,0.191745925,0.000823045,2,2430,,,1215,,,,,,,,,,,2.430061678,,,,,,,,2.512677579,,2.548182356,,,,,,,,2.545574347,,0.004739739,,,,,-15279.39,,,,,0.830274428,38000,45768,0.62490457,1.035644285,63442,,,53876.7234,73007.2766,,,,,,,,,,43750,7159.361702,80340.6383,60000,39556.42553,80443.57447,,,,,,0.679856115,378,556,,,,,,,,0.215251726,,63442,,,6.578947368,1,152,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.609219858,859,1410,,,0.44,,,,,32.00095373,,,,,0.775139665,555,716,0.690422504,0.859856826,0.008784773,6,683,0,0.076051957,0.847765363,607,716,0.644094356,1,2430,,,,,0.269547325,655,2430,,,0.157613169,383,2430,,,0.008641975,21,2430,,,0.029218107,71,2430,,,0.002880658,7,2430,,,0.002057613,5,2430,,,0.379423868,922,2430,,,0.579835391,1409,2430,,,0.134907251,320,2372,0.071917445,0.197897057,0.467078189,1135,2430,,,1,2518,2518,, -20,077,20077,KS,Harper County,2024,1,9774.721141,114,14314,6873.112977,12676.3293,0,,,,2,,,,2,,,,2,,,,2,10067.02705,6841.47911,13292.57499,,,,,2,,0.176,,,0.147,0.204,3.750008202,,,2.940548652,4.643075973,5.108078884,,,4.07967439,6.225514362,0.055319149,26,470,0.034651673,0.075986625,0,,,,,,,,,,,,,0.058227848,0.035134026,0.08132167,,,,,,,0.217,,,0.173,0.259,0.408,,,0.329,0.492,7.2,0.099828106,0.124,,,0.295,,,0.24,0.348,0.696262534,3819,5485,,,0.171372888,,,0.136190861,0.210754894,0.083333333,1,12,0.004083139,0.26580258,318.9,17,5331,,,25.41544477,26,1023,16.60221233,37.23951523,,,,,,,,,,,,,22.19626168,13.36359949,34.66221212,,,,,,,0.139046678,563,4049,0.118791359,0.159301997,0.000562746,3,5331,,,1777,0.000751456,4,5323,,,1330.75,0.000375728,2,5323,,,2661.5,3862,,,,,,,,,3878,0.42,,,,,,,,,0.43,0.31,,,,,,,,,0.32,0.897316539,3277,3652,0.872170668,0.92246241,0.595108696,657,1104,0.484124688,0.706092703,0.021200144,59,2783,,,0.181,240,,0.110702128,0.251297872,,,,,,,,,,0.27972028,0.006864286,0.552576274,0.157848325,0.085860438,0.229836211,4.165269014,100333,24088,3.30685647,5.023681557,0.220501475,299,1356,0.136538692,0.304464258,24.38566873,13,5331,,,125.0045958,34,27199,86.56931646,174.6813931,,,,,,,,,,,,,135.4401806,93.23078831,190.2083697,,,,7.6,,,,,1,,,,,0.10359408,245,2365,0.071443324,0.135744836,0.074408602,0.040912256,0.107904948,0.022832981,0.003820085,0.041845877,0.014799154,0.000709347,0.028888962,0.806074766,1725,2140,0.762304956,0.849844576,,,,,,,,,,,,,0.832565284,0.785576573,0.879553996,0.2,,2140,0.146848355,0.253151645,74.72765602,,,72.60702959,76.84828244,,,,,,,,,,,,,74.63679908,72.3487901,76.92480805,,,,541.9955703,114,14314,433.6826835,650.3084571,,,,,,,,,,,,,542.7546723,428.7233449,656.7859996,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.119,,,0.101,0.137,0.174,,,0.149,0.199,0.111,,,0.094,0.129,,,,,,0.124,680,,,,0.099828106,602.3627902,6034,,,,,,,,,,,,,,,,,,,,,,,,,,0.328,,,0.313,0.344,0.172426337,474,2749,0.145022082,0.199830592,0.069648094,95,1364,0.047009796,0.092286392,0.002442232,13,5323,,,409.4615385,,,,,,,,,,,3.020642408,,,,,,,,,3.124647796,2.945074016,,,,,,,,,3.047376029,0.054657869,,,,,72.464,,,,,0.611543569,29932,48945,0.490440286,0.732646853,52893,,,45825.08511,59960.91489,66250,14446.42553,118053.5745,,,,,,,,,,55599,51227.42553,59970.57447,,,,,,0.545833333,524,960,,,,,,,,0.258181612,,52893,,,5.154639175,2,388,,,,,,,,,,,,,,,,,,,,,,,,,,39.02552293,11,27199,17.84495413,74.08259875,40.44266333,,,,,,,,,,,,,43.29787352,19.79854487,82.19285099,,,,,,,,,,,,,,,,,,,,,,,,,,,33.59086329,13,38701,17.88571998,57.44139924,,,,,,,,,,,,,37.45102558,19.94109383,64.04239433,,,,,,,,,,,0.662871287,2678,4040,,,0.581,,,,,,,,,,0.736047576,1609,2186,0.698044314,0.774050837,0.083127165,168,2021,0.043297889,0.122956441,0.781335773,1708,2186,0.744576463,0.818095083,5323,,,,,0.253428518,1349,5323,,,0.225624648,1201,5323,,,0.008453879,45,5323,,,0.017659215,94,5323,,,0.005823784,31,5323,,,0.003005824,16,5323,,,0.074957731,399,5323,,,0.875634041,4661,5323,,,0.012507329,64,5117,0,0.028592186,0.489573549,2606,5323,,,1,5485,5485,, -20,079,20079,KS,Harvey County,2024,1,8978.843026,536,92782,7770.365466,10187.32059,0,,,,2,,,,2,,,,2,8113.162426,5084.475698,12283.42541,1,8718.769698,7407.107863,10030.43153,,,,,2,,0.144,,,0.12,0.171,3.448015173,,,2.78635016,4.254282924,4.989923737,,,4.168202481,5.89705827,0.080370943,208,2588,0.069896527,0.090845359,0,,,,,,,,,,0.105555556,0.07381445,0.137296662,0.070515854,0.059599674,0.081432035,,,,0.181818182,0.079884363,0.283752001,0.16,,,0.126,0.198,0.397,,,0.341,0.456,8.9,0.009787828,0.086,,,0.26,,,0.217,0.307,0.763754997,25986,34024,,,0.159960902,,,0.131026274,0.191206698,0.1875,6,32,0.100598348,0.289089816,366.7,124,33817,,,19.06123422,160,8394,16.10766537,22.01480306,,,,,,,,,,30.23758099,21.79258872,40.87242533,17.56627276,14.28351111,20.8490344,,,,,,,0.115460327,3050,26416,0.099970965,0.130949689,0.000739273,25,33817,,,1352.68,0.000739623,25,33801,,,1352.04,0.004615248,156,33801,,,216.6730769,2039,,,,,,,,3432,2014,0.53,,,,,,,0.45,0.59,0.53,0.54,,,,,,,0.31,0.42,0.54,0.918178242,21007,22879,0.901789744,0.93456674,0.726103178,5644,7773,0.65064612,0.801560235,0.025292056,433,17120,,,0.11,852,,0.068297872,0.151702128,,,,,,,0.467625899,0.074432806,0.860818992,0.110735989,0.025057786,0.196414193,0.123399898,0.073060553,0.173739242,3.687828104,120828,32764,3.076599127,4.299057081,0.170719603,1376,8060,0.115248982,0.226190224,17.151137,58,33817,,,88.73787881,152,171291,74.6305977,102.8451599,,,,,,,,,,52.19702003,26.05656433,93.39488713,96.6190439,80.38041516,112.8576726,,,,7.4,,,,,0,,,,,0.111608809,1495,13395,0.086758589,0.136459029,0.082662655,0.06145237,0.10387294,0.025009332,0.010610307,0.039408356,0.010451661,0.002538469,0.018364853,0.809404733,13271,16396,0.779172548,0.839636918,,,,,,,,,,0.722121487,0.606060813,0.838182161,0.802275276,0.775092547,0.829458006,0.312,,16396,0.270880668,0.353119332,76.24978756,,,75.27345604,77.22611907,,,,,,,,,,77.33984984,73.95740518,80.7222945,76.53165384,75.48532506,77.57798263,,,,442.9858475,536,92782,403.3813563,482.5903386,,,,,,,,,,368.4095425,256.6107449,512.3684908,433.9805237,391.4526357,476.5084117,,,,70.02423916,26,37130,45.74215787,102.6017347,,,,,,,,,,,,,72.69026677,44.40110339,112.2642215,,,,9.094353922,24,2639,5.826924159,13.53167775,,,,,,,,,,,,,,,,,,,,,,0.098,,,0.084,0.115,0.154,,,0.132,0.175,0.093,,,0.08,0.108,98.9,28,28312,,,0.086,2920,,,,0.009787828,339.4810214,34684,,,12.67835025,13,102537,6.750687548,21.68036506,,,,,,,,,,,,,13.09056289,6.534761832,23.422633,,,,0.328,,,0.311,0.343,0.140289133,2591,18469,0.120033814,0.160544452,0.060472328,507,8384,0.042599988,0.078344669,0.001508831,51,33801,,,662.7647059,0.907433628,410.16,452,,,,,,,,3.085732542,,,,,,,,3.012517678,3.169871601,3.071331861,,,,,,,,2.856704536,3.184712269,0.053346239,,,,,1920.02,,,,,0.690601465,40164,58158,0.623621519,0.757581411,73854,,,67010.08511,80697.91489,78938,78218.34043,79657.65957,,,,,,,56042,21531.70213,90552.29787,71593,67397.76596,75788.23404,,,,,,0.415832406,2243,5394,,,76.37797396,,,,,0.171053701,,73854,,,12.33299075,24,1946,,,6.216920801,15,241277,3.479563379,10.25386542,,,,,,,,,,,,,6.033121839,3.117402092,10.53864971,,,,13.61553454,21,171291,8.316722221,21.02808882,12.25983852,,,,,,,,,,,,,15.25331476,9.040081034,24.10681343,,,,10.50843302,18,171291,6.227963396,16.60785463,,,,,,,,,,,,,10.6565122,5.96436898,17.57629627,,,,14.09168715,34,241277,9.758902997,19.69172034,,,,,,,,,,,,,16.0883249,11.00440232,22.71191445,,,,,,,,,,,0.679317112,17309,25480,,,0.741,,,,,38.9308256,,,,,0.714479843,9464,13246,0.679932648,0.749027038,0.085720834,1122,13089,0.061896472,0.109545196,0.843197947,11169,13246,0.808988732,0.877407161,33801,,,,,0.233839236,7904,33801,,,0.207715748,7021,33801,,,0.016508387,558,33801,,,0.010502648,355,33801,,,0.010295553,348,33801,,,0.000710038,24,33801,,,0.128221059,4334,33801,,,0.813171208,27486,33801,,,0.007845221,251,31994,0.001540826,0.014149616,0.499807698,16894,33801,,,0.401069833,13646,34024,, -20,081,20081,KS,Haskell County,2024,1,6352.921827,37,10847,3765.144102,10040.3554,1,,,,2,,,,2,,,,2,,,,2,8128.562693,4443.960864,13638.34699,1,,,,2,,0.192,,,0.161,0.222,3.73370458,,,2.937558447,4.595708479,4.875012512,,,3.828826332,5.959789915,0.062015504,24,387,0.037985792,0.086045215,0,,,,,,,,,,0.084745763,0.034494736,0.134996789,0.052434457,0.025697409,0.079171505,,,,,,,0.194,,,0.156,0.233,0.405,,,0.325,0.489,8.7,0.079428947,0.065,,,0.314,,,0.26,0.367,0.594973545,2249,3780,,,0.171587244,,,0.137003328,0.211466399,0.111111111,1,9,0.006152008,0.326116915,136.3,5,3668,,,21.9895288,21,955,13.61186491,33.61333061,,,,,,,,,,30.98591549,15.46805737,55.44236201,17.88908766,8.578512873,32.89866913,,,,,,,0.232550555,713,3066,0.205146299,0.25995481,,0,3668,,,,0,0,3576,,,-3576,0.000559284,2,3576,,,1788,2062,,,,,,,,,1960,0.29,,,,,,,,0.14,0.32,0.43,,,,,,,,0.4,0.44,0.751644737,1828,2432,0.699067094,0.804222379,0.488347458,461,944,0.384183515,0.5925114,0.019248396,42,2182,,,0.131,119,,0.078574468,0.183425532,,,,,,,,,,0.12962963,0,0.293305533,0.105785124,0.024091543,0.187478705,3.56941042,131133,36738,3.085499932,4.053320908,0.09,90,1000,0,0.183285019,19.08396947,7,3668,,,76.49548677,15,19609,42.81394326,126.1676724,,,,,,,,,,,,,100.8690255,53.70850785,172.4891055,,,,6.4,,,,,0,,,,,0.114285714,160,1400,0.067531552,0.161039877,0.089855073,0.044215917,0.135494228,0.024285714,0,0.049943231,0.002857143,0,0.013519944,0.778527263,1385,1779,0.721560452,0.835494073,,,,,,,,,,,,,0.844651163,0.780470975,0.908831351,0.204,,1779,0.140705107,0.267294894,79.87339916,,,77.00848801,82.73831031,,,,,,,,,,,,,78.08011016,74.50607022,81.6541501,,,,298.0654978,37,10847,206.419022,416.5166573,,,,,,,,,,,,,348.5356674,229.687201,507.1010973,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.12,,,0.102,0.137,0.164,,,0.142,0.187,0.113,,,0.097,0.131,,,,,,0.065,250,,,,0.079428947,338.0495972,4256,,,,,,,,,,,,,,,,,,,,,,,,,,0.326,,,0.312,0.34,0.26496139,549,2072,0.230408199,0.299514582,0.166030534,174,1048,0.121945428,0.210115641,0.00139821,5,3576,,,715.2,,,,,,,,,,,2.769943269,,,,,,,,,3.053637502,2.874253756,,,,,,,,,3.143601024,0.032347562,,,,,-4672.1396,,,,,0.751708428,41250,54875,0.508340198,0.995076659,69971,,,59697.97872,80244.02128,,,,,,,,,,57750,34437.31915,81062.68085,73456,58083.40426,88828.59575,,,,,,0.621451104,394,634,,,,,,,,0.195166569,,69971,,,10.94890511,3,274,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.591194969,1410,2385,,,0.515,,,,,1.305604867,,,,,0.761447563,1031,1354,0.701265718,0.821629408,0.067589577,83,1228,0.01858176,0.116597393,0.885524372,1199,1354,0.86222099,0.908827754,3576,,,,,0.255872483,915,3576,,,0.178691275,639,3576,,,0.003355705,12,3576,,,0.018176734,65,3576,,,0.008668904,31,3576,,,0.003355705,12,3576,,,0.322147651,1152,3576,,,0.647371365,2315,3576,,,0.061742643,214,3466,0.034996756,0.08848853,0.500559284,1790,3576,,,1,3780,3780,, -20,083,20083,KS,Hodgeman County,2024,1,15469.19374,40,4676,7993.158139,27021.56835,1,,,,2,,,,2,,,,2,,,,2,14492.3299,6949.635497,26651.91067,1,,,,2,,0.133,,,0.108,0.159,3.173593729,,,2.466344579,3.980331237,4.611838254,,,3.662311767,5.669344977,,,,,,0,,,,,,,,,,,,,,,,,,,,,,0.161,,,0.124,0.199,0.363,,,0.284,0.445,8.2,0.089071185,0.083,,,0.237,,,0.187,0.289,0.511897853,882,1723,,,0.169975119,,,0.135865422,0.210138003,0.333333333,1,3,0.04092282,0.635504717,233.9,4,1710,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.141247183,188,1331,0.120991863,0.161502502,0.001169591,2,1710,,,855,0,0,1755,,,-1755,,0,1755,,,,4371,,,,,,,,,4424,0.54,,,,,,,,,0.55,0.38,,,,,,,,,0.38,0.926350246,1132,1222,0.891827916,0.960872575,0.594249201,186,313,0.458128399,0.730370003,0.020428016,21,1028,,,0.08,33,,0.049021277,0.110978723,,,,,,,,,,0.111111111,0,0.38197953,0.096096096,0.022622841,0.169569351,3.481461923,125263,35980,3.105823697,3.85710015,0.12195122,50,410,0.038715159,0.20518728,17.54385965,3,1710,,,123.00123,11,8943,61.40177085,220.0831769,,,,,,,,,,,,,129.9038711,62.29395552,238.8978441,,,,6,,,,,0,,,,,0.088607595,70,790,0.046330339,0.130884851,0.08778626,0.029054948,0.146517571,0.010126582,0,0.039001687,0,0,0.02346231,0.840855107,708,842,0.772274035,0.909436179,,,,,,,,,,,,,0.82631579,0.789578969,0.86305261,0.263,,842,0.18013365,0.345866351,70.83601247,,,65.06423157,76.60779336,,,,,,,,,,,,,,,,,,,608.8849203,40,4676,416.4768348,859.563833,,,,,,,,,,,,,622.7459662,413.810172,900.0413102,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.095,,,0.079,0.112,0.151,,,0.129,0.175,0.09,,,0.076,0.105,0,0,1441,,,0.083,150,,,,0.089071185,170.6603909,1916,,,,,,,,,,,,,,,,,,,,,,,,,,0.307,,,0.29,0.324,0.156282999,148,947,0.131261722,0.181304276,0.10591133,43,406,0.073741117,0.138081543,0.003418803,6,1755,,,292.5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.028719799,,,,,1193.098,,,,,0.709573626,40357,56875,0.536193908,0.882953345,67478,,,57445.65957,77510.34043,,,,,,,,,,70781,34273.76596,107288.234,62813,48768.91489,76857.08511,,,,,,0.327645051,96,293,,,,,,,,0.202377071,,67478,,,11.90476191,1,84,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.733333333,1045,1425,,,0.594,,,,,0.041003144,,,,,0.812676056,577,710,0.75032405,0.875028063,0.080547113,53,658,0.01181894,0.149275285,0.781690141,555,710,0.756530664,0.806849618,1755,,,,,0.240455841,422,1755,,,0.220512821,387,1755,,,0.020512821,36,1755,,,0.006267806,11,1755,,,0.035327635,62,1755,,,0,0,1755,,,0.094586895,166,1755,,,0.823931624,1446,1755,,,0.014845606,25,1684,0,0.049149162,0.480911681,844,1755,,,1,1723,1723,, -20,085,20085,KS,Jackson County,2024,1,7928.592271,194,36396,6113.889576,9743.294965,0,,,,2,,,,2,,,,2,,,,2,7446.349833,5525.557196,9367.142471,,,,,2,,0.144,,,0.121,0.168,3.165308622,,,2.482065919,3.979792874,4.727037374,,,3.79238915,5.73312808,0.071906355,86,1196,0.057265379,0.08654733,0,0.079365079,0.032166465,0.126563694,,,,,,,,,,0.072142064,0.055248212,0.089035917,,,,,,,0.187,,,0.149,0.224,0.402,,,0.332,0.474,8.3,0.056178877,0.092,,,0.259,,,0.214,0.307,0.484431681,6410,13232,,,0.172011363,,,0.137899962,0.211161876,0.263157895,5,19,0.14192256,0.393259063,362,48,13261,,,23.64864865,70,2960,18.43528179,29.87864488,46.2184874,23.07210238,82.69764081,,,,,,,118.0124224,71.05118736,184.291016,15.2173913,10.59947061,21.16370755,,,,,,,0.103062482,1087,10547,0.08876461,0.117360355,0.000678682,9,13261,,,1473.444444,0.00052687,7,13286,,,1898,0.000602138,8,13286,,,1660.75,2514,,,,,,,,,2570,0.49,,,,,0.38,,,,0.49,0.29,,,,,0.26,,,,0.29,0.938272993,8345,8894,0.923325404,0.953220583,0.627648489,1807,2879,0.538227553,0.717069426,0.023469668,171,7286,,,0.119,384,,0.072531915,0.165468085,0.142857143,0.045668512,0.240045774,,,,,,,0.041533546,0,0.097417988,0.143608414,0.070202393,0.217014436,3.460441216,117174,33861,2.987001783,3.933880648,0.186493185,602,3228,0.108526962,0.264459407,9.04909132,12,13261,,,102.7174816,68,66201,79.76414367,130.2188836,,,,,,,,,,,,,97.87750811,73.5285965,127.7089166,,,,8.1,,,,,0,,,,,0.135359116,735,5430,0.102694119,0.168024113,0.111131589,0.081725947,0.140537231,0.016574586,0.007100482,0.02604869,0.013812155,0.000160549,0.027463761,0.743493258,4742,6378,0.715614346,0.77137217,0.826229508,0.72627022,0.926188796,,,,,,,,,,0.742259174,0.683683555,0.800834794,0.411,,6378,0.345619905,0.476380095,77.44836515,,,75.87000361,79.02672669,,,,,,,,,,,,,77.9199545,76.23043937,79.60946963,,,,388.7241823,194,36396,330.5190408,446.9293238,,,,,,,,,,,,,373.2527612,312.1169507,434.3885717,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.103,,,0.087,0.118,0.16,,,0.136,0.184,0.096,,,0.081,0.111,45.8,5,10921,,,0.092,1230,,,,0.056178877,756.2800374,13462,,,25.25061233,10,39603,12.10865009,46.4367751,,,,,,,,,,,,,,,,,,,0.313,,,0.298,0.327,0.127025542,925,7282,0.107961713,0.146089372,0.051849694,178,3433,0.036360332,0.067339056,0.000903206,12,13286,,,1107.166667,0.901923077,140.7,156,,,,,,,,3.116103773,,,,,,,,,3.281254073,2.999493373,,,,,,,,,3.196704563,0.098580133,,,,,5053.560667,,,,,0.839199225,41584,49552,0.723436012,0.954962438,70445,,,61246.70213,79643.29787,68235,42139,94331,,,,,,,37000,16337.19149,57662.80851,70769,67336.31915,74201.68085,,,,,,0.41987041,972,2315,,,,,,,,0.193853361,,70445,,,4.624277457,4,865,,,,,,,,,,,,,,,,,,,,,,,,,,17.1201935,10,66201,8.20979824,31.4846454,15.105512,,,,,,,,,,,,,21.10136599,9.648888214,40.05696562,,,,,,,,,,,,,,,,,,,,,,,,,,,21.54475924,20,92830,13.16009866,33.27413326,,,,,,,,,,,,,20.62334047,11.788021,33.49101286,,,,,,,,,,,0.667748479,6584,9860,,,0.696,,,,,11.29052859,,,,,0.772095716,4001,5182,0.737833597,0.806357835,0.098514464,504,5116,0.070817298,0.126211631,0.851408723,4412,5182,0.828741016,0.874076429,13286,,,,,0.247252747,3285,13286,,,0.199984947,2657,13286,,,0.010010537,133,13286,,,0.087987355,1169,13286,,,0.006096643,81,13286,,,0.000376336,5,13286,,,0.057353605,762,13286,,,0.826509107,10981,13286,,,0.019453376,242,12440,0.008709937,0.030196816,0.492774349,6547,13286,,,1,13232,13232,, -20,087,20087,KS,Jefferson County,2024,1,7800.66413,271,51923,6238.527395,9362.800865,0,,,,2,,,,2,,,,2,,,,2,7605.334956,6008.295754,9202.374158,,,,,2,,0.128,,,0.106,0.151,3.061204675,,,2.387479079,3.833291311,4.884747324,,,3.992751182,5.863978513,0.055288462,69,1248,0.042608567,0.067968356,0,,,,,,,,,,,,,0.053984576,0.041018618,0.066950534,,,,,,,0.168,,,0.133,0.206,0.336,,,0.274,0.401,9.3,0.003397214,0.074,,,0.218,,,0.176,0.262,0.370481272,6805,18368,,,0.181425895,,,0.146614508,0.222106515,0.208333333,5,24,0.105577141,0.326751616,222.7,41,18411,,,14.00835586,57,4069,10.60979193,18.14944984,,,,,,,,,,,,,13.9116203,10.35811507,18.29121151,,,,,,,0.097720313,1436,14695,0.083422441,0.112018185,0.000543154,10,18411,,,1841.1,0.000163541,3,18344,,,6114.666667,0.00043611,8,18344,,,2293,1997,,,,,,,,,1997,0.48,,,,,,,,,0.48,0.52,,,,,,,,,0.52,0.957121925,12411,12967,0.944488613,0.969755237,0.759059275,3163,4167,0.680400788,0.837717763,0.026779694,278,10381,,,0.092,361,,0.056255319,0.127744681,,,,,,,0.025641026,0,0.804901555,0.024875622,0,0.137898869,0.063934426,0.033566601,0.094302251,3.776408451,130845,34648,3.355680277,4.197136625,0.115263286,475,4121,0.079149357,0.151377214,9.233610342,17,18411,,,100.5727353,95,94459,81.36934867,122.9449535,,,,,,,,,,,,,102.1949198,82.17678373,125.6149066,,,,8.2,,,,,1,,,,,0.072834646,555,7620,0.051495078,0.094174213,0.066225166,0.044837697,0.087612635,0.008530184,0.000972576,0.016087792,0.004593176,0,0.011532366,0.791509643,7141,9022,0.754720944,0.828298342,,,,,,,,,,,,,0.701934852,0.634859205,0.769010498,0.503,,9022,0.44999546,0.55600454,78.22147584,,,76.79924233,79.64370936,,,,,,,,,,,,,78.35957399,76.91122849,79.80791949,,,,362.9765811,271,51923,316.5280709,409.4250912,,,,,,,,,,,,,351.4741066,304.1987395,398.7494737,,,,53.74610341,10,18606,25.77334567,98.84099775,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.095,,,0.081,0.111,0.154,,,0.132,0.178,0.087,,,0.073,0.102,57.6,9,15635,,,0.074,1350,,,,0.003397214,64.97511038,19126,,,,,,,,,,,,,,,,,,,,,,,,,,0.31,,,0.291,0.327,0.116018458,1232,10619,0.098146117,0.133890798,0.053364269,230,4310,0.037874907,0.068853631,0.000654165,12,18344,,,1528.666667,0.915819672,279.325,305,,,,,,,,3.019867546,,,,,,,,,3.029820203,3.083830213,,,,,,,,,3.129017719,0.038445342,,,,,2576.219667,,,,,0.833570601,50356,60410,0.759723123,0.907418079,75774,,,68872.89362,82675.10638,,,,213869,213245.8511,214492.1489,113882,113099.1915,114664.8085,109063,66432.70213,151693.2979,74104,70319.82979,77888.17021,,,,,,0.334065934,1064,3185,,,,,,,,0.180220128,,75774,,,8.385744235,8,954,,,,,,,,,,,,,,,,,,,,,,,,,,27.8350983,25,94459,17.6450646,41.76631435,26.46650928,,,,,,,,,,,,,28.60386145,17.92588768,43.30658998,,,,28.58383002,27,94459,18.8369241,41.58797197,,,,,,,,,,,,,29.52297682,19.28538864,43.25800139,,,,21.16626098,28,132286,14.06482671,30.59114037,,,,,,,,,,,,,21.85261624,14.4010118,31.79440933,,,,,,,,,,,0.671149228,9782,14575,,,0.696,,,,,4.191153223,,,,,0.849507928,6215,7316,0.826053982,0.872961874,0.067345232,483,7172,0.041783142,0.092907321,0.89311099,6534,7316,0.870194115,0.916027864,18344,,,,,0.216365024,3969,18344,,,0.204753598,3756,18344,,,0.008286088,152,18344,,,0.010248583,188,18344,,,0.003597907,66,18344,,,0.000926734,17,18344,,,0.035270388,647,18344,,,0.922917575,16930,18344,,,0.000860092,15,17440,0,0.00569293,0.488606629,8963,18344,,,0.991289199,18208,18368,, -20,089,20089,KS,Jewell County,2024,1,5231.482408,48,7396,2258.582784,10308.10589,1,,,,2,,,,2,,,,2,,,,2,5336.395228,2303.876693,10514.82597,1,,,,2,,0.161,,,0.134,0.191,3.539349389,,,2.752699076,4.393927213,4.947750852,,,3.915744262,6.024380646,0.053921569,11,204,0.022926984,0.084916153,1,,,,,,,,,,,,,0.055276382,0.023525798,0.087026966,,,,,,,0.208,,,0.165,0.251,0.416,,,0.333,0.498,7.1,0.121143159,0.118,,,0.268,,,0.217,0.32,0.037517053,110,2932,,,0.154309338,,,0.123232115,0.189154417,0.142857143,1,7,0.008995928,0.386311364,0,0,2937,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.121601582,246,2023,0.102537752,0.140665412,,0,2937,,,,0,0,2898,,,-2898,,0,2898,,,,3899,,,,,,,,,3933,0.43,,,,,,,,,0.44,0.33,,,,,,,,,0.32,0.924648207,2037,2203,0.905789148,0.943507266,0.706666667,424,600,0.568705362,0.844627972,0.026094276,31,1188,,,0.194,116,,0.116553192,0.271446809,,,,,,,,,,0.076923077,0,0.799098914,0.287334594,0.163837167,0.41083202,4.048457771,94240,23278,3.157444081,4.939471462,0.162207358,97,598,0.067743808,0.256670908,20.42900919,6,2937,,,97.62900976,14,14340,53.37468812,163.8048893,,,,,,,,,,,,,102.7900147,56.19625754,172.4641786,,,,6.2,,,,,1,,,,,0.093862816,130,1385,0.057127276,0.130598356,0.068634686,0.027709592,0.10955978,0.010108303,0,0.028182915,0.025270758,0.002244649,0.048296867,0.760220126,967,1272,0.714349678,0.806090574,,,,,,,,,,,,,0.749443207,0.691492028,0.807394386,0.262,,1272,0.192986122,0.331013878,80.42102143,,,77.0425465,83.79949636,,,,,,,,,,,,,80.4716499,76.96143555,83.98186425,,,,306.5236493,48,7396,216.9143776,420.7276572,,,,,,,,,,,,,305.8412235,214.207433,423.4131696,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.113,,,0.095,0.13,0.167,,,0.143,0.19,0.103,,,0.087,0.12,0,0,2512,,,0.118,350,,,,0.121143159,372.7574988,3077,,,,,,,,,,,,,,,,,,,,,,,,,,0.334,,,0.315,0.352,0.145275035,206,1418,0.121445248,0.169104823,0.06918239,44,636,0.046544092,0.091820688,0.000690131,2,2898,,,1449,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.757505521,34643,45733,0.553517261,0.961493782,56144,,,47587.91489,64700.08511,,,,,,,,,,,,,48854,43479.19149,54228.80851,,,,,,0.507389163,206,406,,,,,,,,0.24323169,,56144,,,,,174,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.717180617,1628,2270,,,0.518,,,,,5.017119105,,,,,0.802034429,1025,1278,0.774292684,0.829776174,0.088480801,106,1198,0.037994736,0.138966867,0.771517997,986,1278,0.726139338,0.816896656,2898,,,,,0.208764665,605,2898,,,0.319185645,925,2898,,,0.004830918,14,2898,,,0.006901311,20,2898,,,0.004830918,14,2898,,,0,0,2898,,,0.025189786,73,2898,,,0.947204969,2745,2898,,,0,0,2770,0,0.018926185,0.482401656,1398,2898,,,1,2932,2932,, -20,091,20091,KS,Johnson County,2024,1,4774.098653,5071,1712712,4573.106273,4975.091032,0,,,,2,2076.638504,1561.717819,2591.559189,,7645.804774,6554.151415,8737.458134,,4673.190621,3999.560112,5346.82113,,4762.990554,4532.781868,4993.19924,,,,,2,,0.097,,,0.081,0.115,2.429171868,,,1.986765472,2.876839383,4.134779316,,,3.610050384,4.659741746,0.066063696,3265,49422,0.063873737,0.068253655,0,,,,0.08910589,0.07935139,0.098860389,0.111991358,0.100262142,0.123720574,0.069297401,0.062391391,0.076203412,0.059729628,0.057319215,0.062140041,,,,0.087654321,0.06817921,0.107129432,0.1,,,0.076,0.129,0.292,,,0.264,0.318,9.3,0.022575744,0.063,,,0.163,,,0.138,0.19,0.969575134,591308,609863,,,0.202527087,,,0.182217268,0.222423833,0.19379845,25,129,0.150218731,0.240770287,369.4,2265,613219,,,6.919413222,908,131225,6.469340788,7.369485656,,,,,,,13.45913695,10.91445339,16.41900568,21.57993649,19.26209295,23.89778003,4.510424443,4.083604368,4.937244517,,,,6.368386675,4.528545475,8.70579423,0.065286781,33851,518497,0.059329334,0.071244228,0.001187178,728,613219,,,842.3337912,0.000893095,553,619195,,,1119.701628,0.002944145,1823,619195,,,339.6571585,2357,,,,,,1101,3849,3210,2290,0.55,,,,,0.4,0.38,0.44,0.37,0.56,0.61,,,,,0.53,0.54,0.47,0.44,0.62,0.965122353,400907,415395,0.962163253,0.968081454,0.853365781,144823,169708,0.835656057,0.871075506,0.022998372,8038,349503,,,0.047,6700,,0.033893617,0.060106383,0.040677966,0,0.210259559,0.06169297,0.023059895,0.100326045,0.193285179,0.143082439,0.243487919,0.145542682,0.11152503,0.179560333,0.030326556,0.023570172,0.03708294,3.813132124,190016,49832,3.68389127,3.942372978,0.151164634,21929,145067,0.137091777,0.165237492,8.414612072,516,613219,,,54.92146463,1654,3011573,52.27460793,57.56832133,,,,15.15065432,9.707310099,22.54297268,54.70194365,43.30804393,68.17494316,28.07964561,21.76133966,35.66015734,60.34439829,57.22974003,63.45905654,,,,6.2,,,,,0,,,,,0.098523116,23015,233600,0.09359057,0.103455663,0.082945736,0.077749036,0.088142437,0.013527397,0.011291642,0.015763153,0.008754281,0.006966718,0.010541843,0.744914023,245584,329681,0.73592027,0.753907776,0.727192206,0.634572011,0.8198124,0.649803995,0.614960375,0.684647615,0.80071835,0.772937259,0.828499442,0.752875399,0.72483256,0.780918239,0.753682473,0.746419801,0.760945144,0.231,,329681,0.221393906,0.240606094,80.85092818,,,80.63888401,81.06297234,71.78070227,66.1676227,77.39378183,86.71991955,84.94495355,88.49488554,75.74501508,74.64626156,76.8437686,80.83600513,79.71153241,81.96047785,80.94645947,80.71400901,81.17890994,,,,240.3900344,5071,1712712,233.6257081,247.1543606,,,,127.5592545,102.7326444,152.3858647,411.1347053,364.7893315,457.4800792,238.747828,207.0705989,270.425057,237.9260735,230.5300884,245.3220586,,,,38.68722406,245,633284,33.84281734,43.53163078,,,,,,,76.29555725,49.83879106,111.7906687,38.90006707,26.05198543,55.86698516,36.21923547,30.70936605,41.72910488,,,,4.114240064,206,50070,3.552400795,4.676079333,,,,,,,8.915834522,5.769858006,13.16153056,5.75054531,3.851230446,8.258742304,3.502580849,2.907304786,4.097856913,,,,,,,0.07,,,0.06,0.082,0.123,,,0.107,0.139,0.071,,,0.062,0.081,154.2,789,511745,,,0.063,37860,,,,0.022575744,12285.24579,544179,,,13.22112747,241,1822840,11.55189801,14.89035694,,,,,,,14.78650561,7.873191486,25.28537492,8.16876672,4.220920966,14.26919153,14.23257274,12.28424258,16.18090289,,,,0.271,,,0.257,0.286,0.079641844,29548,371011,0.072492907,0.08679078,0.032338743,5004,154737,0.025189806,0.039487679,0.001500335,929,619195,,,666.517761,0.926773001,6769.15,7304,,,0.029248042,930,31797,0.02094534,0.037550745,3.461070725,,,,,,3.839685478,2.902217097,2.921807937,3.59079572,3.418857518,,,,,,4.019531074,2.796146464,2.838154369,3.558135173,0.089587821,,,,,4188.696,,,,,0.762637933,61718,80927,0.742054829,0.783221037,99174,,,95126.51064,103221.4894,67899,49419,86379,119367,110010.234,128723.766,67303,61309.80851,73296.19149,77136,68687.14894,85584.85106,107165,105196.6596,109133.3404,,,,,,0.211742621,19965,94289,,,42.74217153,,,,,0.223929659,,99174,,,7.835981108,292,37264,,,2.155077974,90,4176183,1.732937185,2.64895671,,,,,,,12.51088447,8.096384779,18.46853347,3.072177744,1.473228643,5.649844254,1.472924492,1.089677647,1.947284291,,,,15.72724299,479,3011573,14.29915666,17.15532932,15.90530929,,,,7.096600474,3.40309577,13.05090094,11.70310448,6.93600142,18.49595059,7.789732039,4.689927547,12.16463151,17.11219388,15.43315,18.79123776,,,,9.729134907,293,3011573,8.615105932,10.84316388,,,,,,,18.00317133,11.76026923,26.37881725,5.029190259,2.598655995,8.784983277,10.29453674,9.008079588,11.58099389,,,,5.339804314,223,4176183,4.638948014,6.040660614,,,,,,,10.00870758,6.113578606,15.4576371,3.686613293,1.904926885,6.439771506,5.41074303,4.620288801,6.20119726,,,,,,,,,,,0.81065104,347214,428315,,,0.777,,,,,115.4489587,,,,,0.68861193,166087,241191,0.681323481,0.695900379,0.096672717,22956,237461,0.090609193,0.10273624,0.950027157,229138,241191,0.945737365,0.954316949,619195,,,,,0.231749287,143498,619195,,,0.161802017,100187,619195,,,0.050423534,31222,619195,,,0.004158625,2575,619195,,,0.054567624,33788,619195,,,0.000379525,235,619195,,,0.084908631,52575,619195,,,0.782604834,484585,619195,,,0.014848881,8524,574050,0.013162195,0.016535566,0.504601943,312447,619195,,,0.040373002,24622,609863,, -20,093,20093,KS,Kearny County,2024,1,7695.468981,45,10621,4822.70944,11651.03252,1,,,,2,,,,2,,,,2,,,,2,7033.993523,3936.872779,11601.50262,1,,,,2,,0.199,,,0.171,0.233,3.806297343,,,2.990357007,4.671004902,5.192125202,,,4.12184442,6.305290724,0.080275229,35,436,0.054769806,0.105780653,0,,,,,,,,,,0.077348066,0.038429175,0.116266958,0.073770492,0.040971401,0.106569583,,,,,,,0.202,,,0.165,0.245,0.436,,,0.356,0.518,8.6,0.032164873,0.091,,,0.32,,,0.269,0.377,0.645744414,2572,3983,,,0.170386428,,,0.136250593,0.209077266,0,0,5,0,0.316144538,488.3,19,3891,,,20.95459837,18,859,12.41902303,33.1172995,,,,,,,,,,30.92783505,15.98086368,54.02470373,,,,,,,,,,0.194255713,629,3238,0.168042947,0.220468479,0.001285017,5,3891,,,778.2,0.000259403,1,3855,,,3855,0.000518807,2,3855,,,1927.5,3240,,,,,,,,,3718,0.3,,,,,,,,,0.31,0.25,,,,,,,,0.37,0.24,0.803896654,1898,2361,0.74237671,0.865416598,0.419928826,354,843,0.30791121,0.531946441,0.018933732,38,2007,,,0.128,139,,0.076765957,0.179234043,,,,,,,,,,0.473572939,0.255176594,0.691969283,0.099145299,0.008339916,0.189950682,3.798130841,132080,34775,3.12920811,4.467053572,0.31986532,380,1188,0.156301006,0.483429633,15.42020046,6,3891,,,92.89363679,18,19377,55.05465645,146.811995,,,,,,,,,,,,,106.0618422,56.47346407,181.3689803,,,,5.9,,,,,0,,,,,0.094488189,120,1270,0.034141777,0.154834601,0.078740158,0.011376634,0.146103681,0.01496063,0,0.042043125,0.003149606,0,0.013843421,0.751785714,1263,1680,0.662234069,0.84133736,,,,,,,,,,,,,0.779443255,0.667131096,0.891755413,0.188,,1680,0.109118365,0.266881635,77.7833032,,,74.98996697,80.57663944,,,,,,,,,,,,,78.43297457,75.35960494,81.5063442,,,,371.6531521,45,10621,267.8549019,502.3670944,,,,,,,,,,,,,372.2866975,249.3262441,534.6657981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.122,,,0.105,0.142,0.166,,,0.145,0.191,0.123,,,0.106,0.143,,,,,,0.091,360,,,,0.032164873,127.9197015,3977,,,,,,,,,,,,,,,,,,,,,,,,,,0.327,,,0.314,0.34,0.229608675,487,2121,0.196246973,0.262970377,0.129059829,151,1170,0.09093217,0.167187489,0.002853437,11,3855,,,350.4545455,,,,,,,,,,,,,,,,,,,,,3.135232725,,,,,,,,,3.148900019,0.06235773,,,,,-183.484,,,,,0.74033169,41292,55775,0.52057569,0.96008769,75773,,,64283.46809,87262.53192,,,,,,,,,,67000,44862.12766,89137.87234,73750,35359.02128,112140.9787,,,,,,0.574971815,510,887,,,,,,,,0.180222507,,75773,,,,,323,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.586693548,1455,2480,,,0.462,,,,,16.28487977,,,,,0.684911243,926,1352,0.60354122,0.766281266,0.052091555,66,1267,0,0.11015418,0.909763314,1230,1352,0.867376167,0.952150461,3855,,,,,0.284046693,1095,3855,,,0.172762646,666,3855,,,0.009857328,38,3855,,,0.0230869,89,3855,,,0.008041505,31,3855,,,0.001037614,4,3855,,,0.335927367,1295,3855,,,0.615823606,2374,3855,,,0.050570963,186,3678,0.019951298,0.081190627,0.486381323,1875,3855,,,1,3983,3983,, -20,095,20095,KS,Kingman County,2024,1,23532.37336,308,19347,19082.19323,27982.55349,0,,,,2,,,,2,,,,1,,,,2,18130.33727,14005.59753,22255.07701,,,,,2,,0.139,,,0.116,0.165,3.173907877,,,2.468754933,3.951403175,4.534227873,,,3.597657696,5.513023253,0.064327485,33,513,0.043097113,0.085557858,0,,,,,,,,,,,,,0.061052632,0.039520745,0.082584518,,,,,,,0.177,,,0.139,0.216,0.377,,,0.303,0.455,7.7,0.105650614,0.098,,,0.258,,,0.21,0.309,0.53373494,3987,7470,,,0.187330934,,,0.151725055,0.227145049,0.2,1,5,0.015594715,0.47750127,230,17,7392,,,13.40645948,22,1641,8.401756778,20.29754076,,,,,,,,,,,,,14.24501425,8.701224776,22.00026916,,,,,,,0.102302233,591,5777,0.086812871,0.117791595,0.000270563,2,7392,,,3696,0.000139024,1,7193,,,7193,0.000973168,7,7193,,,1027.571429,3110,,,,,,,,,3134,0.44,,,,,,,,,0.44,0.37,,,,,,,,,0.37,0.90811433,4734,5213,0.885005847,0.931222812,0.642474717,1080,1681,0.527775073,0.757174362,0.024412573,80,3277,,,0.166,264,,0.100468085,0.231531915,,,,,,,,,,,,,0.070250896,0,0.141285161,3.511839038,114500,32604,2.818443407,4.205234669,0.11299435,180,1593,0.035942501,0.1900462,21.64502165,16,7392,,,113.2972256,41,36188,81.30404518,153.7004796,,,,,,,,,,,,,107.3537305,75.18923307,148.6228141,,,,7.2,,,,,1,,,,,0.078341014,255,3255,0.051381201,0.105300827,0.049053089,0.022964343,0.075141835,0.010138249,0,0.0211946,0.016897081,0.000969441,0.032824722,0.844234079,2943,3486,0.803573897,0.884894261,,,,,,,,,,,,,0.824782952,0.773427011,0.876138893,0.375,,3486,0.311069073,0.438930927,63.61523027,,,61.25442587,65.97603468,,,,,,,,,,,,,67.06945809,64.61679326,69.52212292,,,,1107.866973,308,19347,973.2114761,1242.522469,,,,,,,,,,,,,869.311906,747.541866,991.0819461,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.099,,,0.084,0.116,0.156,,,0.134,0.18,0.093,,,0.079,0.109,,,,,,0.098,730,,,,0.105650614,830.2025257,7858,,,,,,,,,,,,,,,,,,,,,,,,,,0.326,,,0.309,0.344,0.124732207,524,4201,0.104476888,0.144987526,0.045317221,75,1655,0.031019348,0.059615093,0.002224385,16,7193,,,449.5625,,,,,,,,,,,2.84751022,,,,,,,,,2.897427052,2.564780763,,,,,,,,,2.605463389,0.063724989,,,,,1214.0165,,,,,0.882200124,41429,46961,0.718277375,1.046122872,65597,,,62627.80851,68566.19149,,,,,,,,,,43785,39657.68085,47912.31915,61250,54572.89362,67927.10638,,,,,,0.402575107,469,1165,,,,,,,,0.208180252,,65597,,,7.058823529,3,425,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,23.37267734,12,51342,12.07700345,40.82736366,,,,,,,,,,,,,20.95206168,10.04732798,38.53158742,,,,,,,,,,,0.716696915,3949,5510,,,0.648,,,,,28.84996443,,,,,0.71875,2231,3104,0.654038116,0.783461884,0.070805369,211,2980,0.039078712,0.102532026,0.805090206,2499,3104,0.751332314,0.858848099,7193,,,,,0.224940915,1618,7193,,,0.201723898,1451,7193,,,0.005004866,36,7193,,,0.011399972,82,7193,,,0.006395106,46,7193,,,0.000278048,2,7193,,,0.044904769,323,7193,,,0.917141666,6597,7193,,,0.001297578,9,6936,0,0.012210885,0.489086612,3518,7193,,,1,7470,7470,, -20,097,20097,KS,Kiowa County,2024,1,10692.56431,40,6617,6228.812745,17119.83127,1,,,,2,,,,2,,,,2,,,,2,10631.43603,5812.30501,17837.74317,1,,,,2,,0.138,,,0.113,0.164,3.189339872,,,2.489838165,3.941429466,4.799162592,,,3.835197128,5.812019934,,,,,,0,,,,,,,,,,,,,,,,,,,,,,0.171,,,0.133,0.212,0.352,,,0.278,0.428,7.9,0.131533916,0.076,,,0.241,,,0.194,0.295,0.366666667,902,2460,,,0.173765464,,,0.140232686,0.210261704,0,0,9,0,0.215915826,501.7,12,2392,,,14.82479784,11,742,7.40048567,26.52565837,,,,,,,,,,,,,15.64945227,7.504520651,28.77989991,,,,,,,0.137220259,233,1698,0.118156429,0.156284089,0.00041806,1,2392,,,2392,0,0,2404,,,-2404,0.00374376,9,2404,,,267.1111111,1536,,,,,,,,,1536,0.37,,,,,,,,,0.37,0.38,,,,,,,,,0.38,0.889555822,1482,1666,0.855120117,0.923991527,0.654916512,353,539,0.51587978,0.793953244,0.022258862,27,1213,,,0.149,83,,0.091808511,0.206191489,,,,,,,,,,,,,0.04742268,0,0.096527707,2.887917808,105409,36500,2.010029559,3.765806057,0.088129496,49,556,0.027639177,0.148619816,37.62541806,9,2392,,,113.5994807,14,12324,62.10589319,190.6006258,,,,,,,,,,,,,128.2638571,70.12304422,215.2049576,,,,6.4,,,,,0,,,,,0.071794872,70,975,0.041643049,0.101946695,0.058702369,0.019074126,0.098330612,0.008205128,0,0.035079775,0.008205128,0.000808873,0.015601384,0.755681818,931,1232,0.732827234,0.778536403,,,,,,,,,,,,,0.77046096,0.720075799,0.82084612,0.125,,1232,0.06862102,0.18137898,75.65576459,,,71.83792431,79.47360486,,,,,,,,,,,,,75.91523348,71.93123089,79.89923607,,,,468.3943392,40,6617,320.3813813,661.233051,,,,,,,,,,,,,461.4904489,304.1251137,671.4443739,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.099,,,0.083,0.115,0.157,,,0.134,0.181,0.092,,,0.078,0.107,,,,,,0.076,190,,,,0.131533916,335.8060871,2553,,,,,,,,,,,,,,,,,,,,,,,,,,0.324,,,0.306,0.34,0.162162162,186,1147,0.135949396,0.188374928,0.085664336,49,572,0.057068591,0.11426008,0.002079867,5,2404,,,480.8,0.675,50.625,75,,,,,,,,3.779605486,,,,,,,,,3.89754252,3.584115837,,,,,,,,,3.744559455,0.0334723,,,,,4840.6205,,,,,0.758411473,44000,58016,0.654871525,0.861951421,61700,,,53631.23404,69768.76596,,,,,,,,,,,,,71088,67534.97872,74641.02128,,,,,,0.350730689,168,479,,,,,,,,0.221329011,,61700,,,13.60544218,2,147,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.621333333,1165,1875,,,0.561,,,,,16.27688897,,,,,0.754045307,699,927,0.747880055,0.76021056,0.064906491,59,909,0.014746331,0.115066651,0.787486516,730,927,0.724300558,0.850672474,2404,,,,,0.235024958,565,2404,,,0.237104825,570,2404,,,0.014559068,35,2404,,,0.008319468,20,2404,,,0.019134775,46,2404,,,0.000415973,1,2404,,,0.053244592,128,2404,,,0.884775374,2127,2404,,,0.00867679,20,2305,0,0.030988101,0.503327787,1210,2404,,,1,2460,2460,, -20,099,20099,KS,Labette County,2024,1,10527.74526,419,53934,8877.268666,12178.22186,0,,,,2,,,,2,27084.9306,13520.69977,48462.42247,1,,,,2,9782.644939,8093.971248,11471.31863,,,,,2,,0.169,,,0.143,0.198,3.628947193,,,2.87851633,4.416227438,5.348527739,,,4.432430998,6.266000433,0.062745098,112,1785,0.051495015,0.073995181,0,,,,,,,0.196428571,0.092370295,0.300486848,,,,0.057877814,0.046271333,0.069484294,,,,,,,0.205,,,0.164,0.247,0.433,,,0.37,0.499,7.5,0.070936945,0.125,,,0.273,,,0.228,0.322,0.512435593,10343,20184,,,0.164042153,,,0.133349893,0.198094226,0.434782609,10,23,0.328901221,0.532879371,441.9,88,19912,,,33.03909206,131,3965,27.38127986,38.69690425,,,,,,,,,,,,,35.13174404,28.62525399,41.63823409,,,,,,,0.109513344,1744,15925,0.094023982,0.125002706,0.00050221,10,19912,,,1991.2,0.000455535,9,19757,,,2195.222222,0.001062914,21,19757,,,940.8095238,2429,,,,,,,,,2451,0.35,,,,,0.27,,0.42,,0.35,0.36,,,,,0.37,,0.28,0.15,0.36,0.904608396,12347,13649,0.884236501,0.924980291,0.663833594,2968,4471,0.58610899,0.741558199,0.030489748,287,9413,,,0.2,930,,0.115404255,0.284595745,0.066666667,0,0.489820938,,,,0.205882353,0,0.638145799,,,,0.096276596,0.059430091,0.133123101,4.390262204,105318,23989,3.750518762,5.030005645,0.183703089,886,4823,0.132240486,0.235165693,10.54640418,21,19912,,,86.67170572,86,99225,69.32617712,107.0388515,,,,,,,,,,,,,90.09115803,70.9815857,112.7625185,,,,8.7,,,,,1,,,,,0.097339782,805,8270,0.074809816,0.119869748,0.073581452,0.052731882,0.094431022,0.022128174,0.00956042,0.034695929,0.010278114,0.004374936,0.016181291,0.779242357,7035,9028,0.73754337,0.820941344,,,,,,,,,,,,,0.796751969,0.754052116,0.839451821,0.157,,9028,0.123405071,0.190594929,73.98166369,,,72.74823048,75.2150969,,,,,,,,,,,,,74.39252923,73.11373736,75.67132111,,,,552.909139,419,53934,496.3140408,609.5042371,,,,,,,929.8334748,559.8204927,1452.050151,,,,540.2329746,481.1825227,599.2834266,,,,48.09310826,10,20793,23.06251477,88.4449384,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.116,,,0.1,0.134,0.174,,,0.152,0.199,0.109,,,0.093,0.126,79.1,13,16439,,,0.125,2520,,,,0.070936945,1532.73456,21607,,,16.91589417,10,59116,8.111828771,31.10893166,,,,,,,,,,,,,,,,,,,0.358,,,0.341,0.374,0.136805181,1521,11118,0.115358372,0.158251989,0.048137876,243,5048,0.032648515,0.063627238,0.001113529,22,19757,,,898.0454546,0.896139706,243.75,272,,,,,,,,3.245328505,,,,,,,,,3.266961765,3.235742173,,,,,,,,,3.268459907,0.094317958,,,,,1309.09625,,,,,0.720372332,38076,52856,0.637467555,0.803277109,52318,,,45975.70213,58660.29787,38661,29024.23404,48297.76596,,,,36808,23556.25532,50059.74468,,,,57876,53487.74468,62264.25532,,,,,,0.59244419,2070,3494,,,57.36823494,,,,,0.261019152,,52318,,,5.331302361,7,1313,,,,,,,,,,,,,,,,,,,,,,,,,,17.53518358,17,99225,10.02287252,28.47603956,17.13277904,,,,,,,,,,,,,19.18493843,10.7376644,31.64263838,,,,17.13277904,17,99225,9.980475152,27.43123892,,,,,,,,,,,,,16.59573964,9.07304529,27.84483116,,,,18.50902671,26,140472,12.09071076,27.12001259,,,,,,,,,,,,,17.57381,10.87846538,26.86343537,,,,,,,,,,,0.566335979,8563,15120,,,0.626,,,,,32.73739461,,,,,0.753393665,5994,7956,0.738074359,0.768712972,0.074831728,567,7577,0.052487361,0.097176095,0.818124686,6509,7956,0.78719972,0.849049652,19757,,,,,0.240370502,4749,19757,,,0.204636331,4043,19757,,,0.037404464,739,19757,,,0.024143342,477,19757,,,0.004960267,98,19757,,,0.001062914,21,19757,,,0.054107405,1069,19757,,,0.843954042,16674,19757,,,0.002552784,48,18803,,,0.493951511,9759,19757,,,0.532649624,10751,20184,, -20,101,20101,KS,Lane County,2024,1,16015.59822,41,4131,7680.101866,29453.25535,1,,,,2,,,,2,,,,2,,,,2,17546.8246,7575.473425,34574.23954,1,,,,2,,0.142,,,0.12,0.167,3.252407117,,,2.53801316,4.076327463,4.894285732,,,3.896641648,5.972855583,,,,,,0,,,,,,,,,,,,,,,,,,,,,,0.173,,,0.137,0.214,0.422,,,0.341,0.506,8.3,0.069363589,0.087,,,0.255,,,0.207,0.306,0.051461245,81,1574,,,0.168862778,,,0.1357101,0.20708578,0.25,1,4,0.023230216,0.544021398,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.137190083,166,1210,0.116934764,0.157445402,0,0,1565,,,-1565,0,0,1556,,,-1556,,0,1556,,,,2699,,,,,,,,,2710,0.51,,,,,,,,,0.51,0.31,,,,,,,,,0.31,0.957642726,1040,1086,0.910827327,1,0.797297297,236,296,0.626796085,0.967798509,0.028767123,21,730,,,0.15,53,,0.095191489,0.204808511,,,,,,,,,,0.311688312,0.042181957,0.581194667,0.034482759,0,0.141479133,5.357509328,114865,21440,2.661960213,8.053058444,0.125,39,312,0.007495843,0.242504157,38.33865815,6,1565,,,,,,,,,,,,,,,,,,,,,,,,,,5.7,,,,,0,,,,,0.108843537,80,735,0.037989665,0.17969741,0.011678832,0,0.069869011,0.013605442,0,0.053870752,0.081632653,0.019026227,0.14423908,0.727621483,569,782,0.612650876,0.84259209,,,,,,,,,,,,,0.727136432,0.596903481,0.857369383,0.173,,782,0.086767115,0.259232885,,,,,,,,,,,,,,,,,,,,,,,,652.2495204,41,4131,446.1381891,920.7817094,,,,,,,,,,,,,650.6622068,428.7904942,946.6793499,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.1,,,0.086,0.116,0.159,,,0.137,0.183,0.096,,,0.081,0.113,0,0,1303,,,0.087,130,,,,0.069363589,121.3862808,1750,,,,,,,,,,,,,,,,,,,,,,,,,,0.324,,,0.307,0.341,0.154929578,132,852,0.129908301,0.179950854,0.095490716,36,377,0.063320503,0.127660929,0.002570694,4,1556,,,389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.061870653,,,,,-4419.734,,,,,0.817466667,42917,52500,0.470999833,1.1639335,64934,,,55114.93617,74753.06383,,,,,,,,,,,,,65000,35277.10638,94722.89362,,,,,,0.541528239,163,301,,,,,,,,0.210305849,,64934,,,,,69,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.77826087,895,1150,,,0.536,,,,,0.002153049,,,,,0.776785714,522,672,0.703278639,0.85029279,0.046666667,28,600,0,0.140203454,0.852678571,573,672,0.78017312,0.925184023,1556,,,,,0.233933162,364,1556,,,0.247429306,385,1556,,,0.009640103,15,1556,,,0.014781491,23,1556,,,0.003213368,5,1556,,,0.002570694,4,1556,,,0.11503856,179,1556,,,0.829691517,1291,1556,,,0.007503411,11,1466,0,0.041970368,0.497429306,774,1556,,,1,1574,1574,, -20,103,20103,KS,Leavenworth County,2024,1,8000.71933,1163,231517,7307.858831,8693.57983,0,,,,2,,,,2,10158.81847,7036.580591,13281.05635,,5716.086396,3798.297898,8261.336353,,8060.81875,7271.105637,8850.531863,,,,,2,,0.131,,,0.109,0.153,3.085974676,,,2.50957567,3.713179221,4.804151147,,,4.096143029,5.52513924,0.072364412,475,6564,0.066096498,0.078632326,0,,,,0.099173554,0.045915917,0.15243119,0.136170213,0.105163032,0.167177394,0.074427481,0.051954416,0.096900546,0.064602961,0.057922032,0.07128389,,,,0.113861386,0.070056813,0.157665959,0.157,,,0.122,0.191,0.385,,,0.34,0.428,8,0.110128062,0.082,,,0.237,,,0.201,0.275,0.753862312,61727,81881,,,0.198395321,,,0.169279837,0.227853389,0.202898551,14,69,0.142568144,0.268994133,416.1,342,82184,,,16.37534499,267,16305,14.4111215,18.33956847,,,,,,,31.93430657,22.2434146,44.41288994,13.76720901,8.627836591,20.84371989,15.6464231,13.44466158,17.84818461,,,,18.62630966,10.64654535,30.24795995,0.082301189,5276,64106,0.071577784,0.093024593,0.000486713,40,82184,,,2054.6,0.000542875,45,82892,,,1842.044444,0.002316267,192,82892,,,431.7291667,2701,,,,,,,3182,,2651,0.44,,,,,,0.33,0.47,0.23,0.44,0.46,,,,,,0.43,0.31,0.18,0.47,0.933685045,51855,55538,0.923693601,0.943676488,0.701177208,15665,22341,0.654610002,0.747744413,0.029048967,1088,37454,,,0.105,2015,,0.072829787,0.137170213,,,,0.186746988,0,0.79834984,0.190525232,0.073999814,0.30705065,0.31403118,0.190763344,0.437299017,0.050143062,0.03364314,0.066642983,4.327328348,152772,35304,3.678646328,4.976010368,0.173629783,3358,19340,0.139138265,0.208121301,6.81397839,56,82184,,,75.12817062,307,408635,66.72409991,83.53224132,,,,,,,64.09541857,40.63099721,96.17459841,54.14734847,30.94988816,87.93190158,79.65325941,69.89573513,89.41078368,,,,8.2,,,,,0,,,,,0.109784771,3035,27645,0.092904296,0.126665246,0.089204442,0.072565509,0.105843375,0.016096943,0.007512322,0.024681564,0.00958582,0.003981246,0.015190395,0.799759963,29320,36661,0.779637221,0.819882705,,,,,,,0.798230834,0.677608849,0.918852819,0.748612653,0.663711986,0.833513319,0.760386595,0.732534698,0.788238491,0.388,,36661,0.354068692,0.421931308,77.29312096,,,76.65377685,77.93246508,,,,,,,73.07638507,70.6845252,75.46824494,78.43739289,75.410804,81.46398178,77.45491042,76.73897465,78.17084619,,,,404.9417298,1163,231517,381.0822768,428.8011828,,,,,,,507.9787669,408.0279465,607.9295874,312.5617988,213.792039,441.244,404.2782539,377.8843785,430.6721292,,,,50.05482195,42,83908,36.0751129,67.65957808,,,,,,,,,,,,,47.49390495,32.04393823,67.80050248,,,,6.44774329,43,6669,4.66626379,8.685067898,,,,,,,,,,,,,5.661445556,3.819753542,8.082065559,,,,,,,0.092,,,0.079,0.106,0.149,,,0.13,0.169,0.1,,,0.087,0.115,174,119,68385,,,0.082,6710,,,,0.110128062,8394.731815,76227,,,18.27871383,45,246188,13.33261929,24.45835723,,,,,,,,,,,,,16.04571476,10.90228469,22.77561129,,,,0.336,,,0.321,0.352,0.10127263,4520,44632,0.085783268,0.116761991,0.041582896,848,20393,0.029668003,0.05349779,0.001109878,92,82892,,,901,0.905581276,880.225,972,,,,,,,,3.19727572,,,,,,,2.767178693,3.053785314,3.245109171,3.183987207,,,,,,,2.776858107,2.962431983,3.238695998,0.060574166,,,,,3466.080467,,,,,0.795450677,51406,64625,0.706446509,0.884454845,79117,,,72904.57447,85329.42553,98482,43044.38298,153919.617,51647,50870.14894,52423.85106,50506,37596.21277,63415.78723,58622,47530.42553,69713.57447,91354,87924.89362,94783.10638,,,,,,0.257244762,3462,13458,,,41.75857085,,,,,0.195545837,,79117,,,5.83090379,30,5145,,,4.576224052,26,568154,2.989341484,6.705228527,,,,,,,,,,,,,4.023551186,2.384611432,6.358945532,,,,16.74147682,70,408635,13.00041182,21.22381105,17.13020177,,,,,,,,,,,,,19.30527826,14.73196111,24.84971988,,,,15.66189876,64,408635,12.06157048,19.99989507,,,,,,,,,,,,,17.4241505,13.16201603,22.62670874,,,,14.43270663,82,568154,11.47875989,17.91479443,,,,,,,,,,,,,16.09420475,12.59272401,20.2679873,,,,,,,,,,,0.596339271,36490,61190,,,0.69,,,,,37.54086166,,,,,0.678744953,19837,29226,0.657874887,0.699615019,0.109806121,3132,28523,0.08839937,0.131212873,0.89649627,26201,29226,0.878012229,0.914980312,82892,,,,,0.23505284,19484,82892,,,0.160244656,13283,82892,,,0.080526468,6675,82892,,,0.009470154,785,82892,,,0.015574483,1291,82892,,,0.002219756,184,82892,,,0.077715582,6442,82892,,,0.786432949,65189,82892,,,0.003027547,233,76960,0.000802833,0.00525226,0.466052213,38632,82892,,,0.331981778,27183,81881,, -20,105,20105,KS,Lincoln County,2024,1,9757.61572,53,7878,5684.170736,15622.888,1,,,,2,,,,2,,,,2,,,,2,10124.18838,5786.848421,16441.04764,1,,,,2,,0.144,,,0.119,0.172,3.390951776,,,2.673009822,4.204916748,4.835308127,,,3.878986644,5.88511951,0.069306931,14,202,0.034282429,0.104331432,1,,,,,,,,,,,,,0.067357513,0.031996228,0.102718798,,,,,,,0.184,,,0.145,0.228,0.39,,,0.311,0.471,7.9,0.095348516,0.095,,,0.254,,,0.204,0.31,0.453555631,1333,2939,,,0.168094889,,,0.133637031,0.205664136,0,0,1,0,0.662081041,172.2,5,2903,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.111472364,240,2153,0.094791513,0.128153215,0.000688943,2,2903,,,1451.5,0,0,2899,,,-2899,0.000344947,1,2899,,,2899,3239,,,,,,,,,3287,0.5,,,,,,,,,0.5,0.39,,,,,,,,,0.39,0.946428571,1961,2072,0.920385942,0.972471201,0.773734177,489,632,0.633430413,0.914037942,0.023626698,40,1693,,,0.162,101,,0.098851064,0.225148936,,,,,,,,,,,,,0.112084063,0.049532793,0.174635334,5.033665894,106457,21149,3.340575532,6.726756257,0.295281583,194,657,0.117627057,0.472936109,17.22356183,5,2903,,,67.0376081,10,14917,32.14713881,123.2845481,,,,,,,,,,,,,,,,,,,6.3,,,,,1,,,,,0.099616858,130,1305,0.057666981,0.141566736,0.082881487,0.032806094,0.13295688,0.003065134,0,0.023150328,0.015325671,0,0.030994894,0.752489331,1058,1406,0.701412421,0.803566242,,,,,,,,,,,,,0.761382799,0.68597084,0.836794759,0.291,,1406,0.209585435,0.372414565,77.56723971,,,73.83933852,81.2951409,,,,,,,,,,,,,77.24250003,73.36450379,81.12049626,,,,435.5522228,53,7878,313.9077316,588.740075,,,,,,,,,,,,,438.4521981,311.7823743,599.3785885,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.104,,,0.088,0.122,0.162,,,0.14,0.187,0.097,,,0.082,0.114,,,,,,0.095,280,,,,0.095348516,309.0245417,3241,,,,,,,,,,,,,,,,,,,,,,,,,,0.322,,,0.302,0.34,0.132459016,202,1525,0.111012208,0.153905825,0.062027232,41,661,0.040580423,0.08347404,0.00103484,3,2899,,,966.3333333,,,,,,,,,,,3.130683058,,,,,,,,,3.255799206,2.898276811,,,,,,,,,3.058151226,0.043718556,,,,,678.17,,,,,0.73757154,36987,50147,0.632906803,0.842236276,58049,,,50200.65957,65897.34043,,,,,,,,,,,,,52389,47861.34043,56916.65957,,,,,,0.484649123,221,456,,,,,,,,0.235249531,,58049,,,,,147,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.688017429,1579,2295,,,0.563,,,,,0.805745081,,,,,0.793131644,970,1223,0.756069247,0.83019404,0.123063683,143,1162,0.052219047,0.19390832,0.738348324,903,1223,0.678926473,0.797770174,2899,,,,,0.218006209,632,2899,,,0.264573991,767,2899,,,0.007243877,21,2899,,,0.00896861,26,2899,,,0.006209038,18,2899,,,0,0,2899,,,0.041738531,121,2899,,,0.924111763,2679,2899,,,0,0,2786,0,0.018817492,0.490858917,1423,2899,,,1,2939,2939,, -20,107,20107,KS,Linn County,2024,1,11418.47702,225,26349,8774.694827,14062.25922,0,,,,2,,,,2,,,,2,,,,2,12117.60036,9259.388805,14975.81191,,,,,2,,0.149,,,0.125,0.175,3.376143639,,,2.639002695,4.195555647,4.95333539,,,4.023437974,5.970546717,0.066570188,46,691,0.047983681,0.085156695,0,,,,,,,,,,,,,0.068912711,0.049483984,0.088341438,,,,,,,0.197,,,0.156,0.239,0.38,,,0.313,0.446,8,0.048481931,0.11,,,0.259,,,0.214,0.311,0.432801585,4151,9591,,,0.168956711,,,0.136451848,0.20317815,0.466666667,7,15,0.335227351,0.582964744,277,27,9747,,,24.14772727,51,2112,17.97956905,31.74980179,,,,,,,,,,,,,25.19280206,18.63777365,33.30622036,,,,,,,0.121092204,918,7581,0.104411353,0.137773055,0.000102596,1,9747,,,9747,0.00040833,4,9796,,,2449,0.001122907,11,9796,,,890.5454546,2379,,,,,,,,,2425,0.43,,,,,,,,,0.43,0.3,,,,,,,,,0.3,0.935221496,6439,6885,0.912872546,0.957570446,0.655053975,1335,2038,0.552742411,0.757365538,0.038874914,170,4373,,,0.167,352,,0.103851064,0.230148936,,,,,,,,,,0.121495327,0,0.349445311,0.104155424,0.059070567,0.14924028,4.127878788,108976,26400,3.26293869,4.992818886,0.191499299,410,2141,0.102398825,0.280599774,7.181696932,7,9747,,,115.2737752,56,48580,87.07657098,149.6925854,,,,,,,,,,,,,121.7379756,91.70970356,158.4587086,,,,7.5,,,,,1,,,,,0.186252772,840,4510,0.135693405,0.236812138,0.121758737,0.084499486,0.159017988,0.053215078,0.020121833,0.086308322,0.021064302,0.006735526,0.035393078,0.774355301,3243,4188,0.735503744,0.813206858,,,,,,,,,,,,,0.717872969,0.65151728,0.784228658,0.543,,4188,0.463544542,0.622455458,74.49296875,,,72.4364635,76.54947401,,,,,,,,,,,,,73.81617085,71.66768877,75.96465292,,,,552.1444595,225,26349,472.6199919,631.668927,,,,,,,,,,,,,574.6000282,490.1481797,659.0518767,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.106,,,0.09,0.122,0.163,,,0.14,0.187,0.098,,,0.084,0.114,72.4,6,8290,,,0.11,1070,,,,0.048481931,468.1415217,9656,,,,,,,,,,,,,,,,,,,,,,,,,,0.356,,,0.337,0.373,0.145829531,799,5479,0.124382722,0.167276339,0.059405941,132,2222,0.0415336,0.077278281,0.00122499,12,9796,,,816.3333333,0.838741722,126.65,151,,,,,,,,2.870824665,,,,,,,,,2.933242028,2.942760937,,,,,,,,,3.007847417,0.028333602,,,,,-59.53466667,,,,,0.619487762,35991,58098,0.507697492,0.731278032,59651,,,51264.10638,68037.89362,,,,,,,,,,,,,56872,52332.42553,61411.57447,,,,,,0.506629834,917,1810,,,,,,,,0.228931619,,59651,,,3.824091778,2,523,,,,,,,,,,,,,,,,,,,,,,,,,,25.04499932,12,48580,12.01005067,46.05864546,24.70152326,,,,,,,,,,,,,26.99132234,12.9433882,49.63800278,,,,20.58460272,10,48580,9.871117118,37.8558173,,,,,,,,,,,,,22.13417738,10.6141984,40.70554028,,,,29.55344741,20,67674,18.05201346,45.6429026,,,,,,,,,,,,,30.13099052,18.14082458,47.05327408,,,,,,,,,,,0.671457086,5046,7515,,,0.528,,,,,2.313418132,,,,,0.815538725,3338,4093,0.795413451,0.835663999,0.109390609,438,4004,0.073827809,0.14495341,0.781333985,3198,4093,0.738534768,0.824133202,9796,,,,,0.21917109,2147,9796,,,0.223968967,2194,9796,,,0.009799918,96,9796,,,0.008472846,83,9796,,,0.004695794,46,9796,,,0.000204165,2,9796,,,0.031951817,313,9796,,,0.923438138,9046,9796,,,0,0,9190,0,0.008297641,0.494079216,4840,9796,,,1,9591,9591,, -20,109,20109,KS,Logan County,2024,1,8260.581442,49,7410,5045.777749,12757.79806,1,,,,2,,,,2,,,,2,,,,2,8698.109822,5155.051138,13746.7635,1,,,,2,,0.147,,,0.123,0.171,3.235596962,,,2.520902783,4.066677087,4.771521098,,,3.811631549,5.879626677,0.061818182,17,275,0.033354482,0.090281881,1,,,,,,,,,,,,,0.057377049,0.02819611,0.086557989,,,,,,,0.181,,,0.144,0.219,0.402,,,0.327,0.484,8.2,0.048834434,0.101,,,0.258,,,0.212,0.309,0.751267198,2075,2762,,,0.17712559,,,0.143415691,0.21653754,0.333333333,2,6,0.110000414,0.553214291,,,,,,30.01876173,16,533,17.15831605,48.74858836,,,,,,,,,,,,,29.74828375,15.83970822,50.87047121,,,,,,,0.125175809,267,2133,0.106111979,0.144239639,0.001102131,3,2722,,,907.3333333,0.001109057,3,2705,,,901.6666667,0.000369686,1,2705,,,2705,5004,,,,,,,,,5071,0.48,,,,,,,,,0.48,0.36,,,,,,,,,0.36,0.923520168,1763,1909,0.881560031,0.965480304,0.666666667,444,666,0.541469133,0.7918642,0.018668326,30,1607,,,0.126,83,,0.078340426,0.173659575,,,,,,,,,,0.095238095,0,0.391030286,0.161564626,0.067358105,0.255771147,4.09464621,126500,30894,2.997018676,5.192273744,0.240524781,165,686,0.10133518,0.379714383,18.36884644,5,2722,,,115.0003594,16,13913,65.7326418,186.7533788,,,,,,,,,,,,,119.9904008,67.15771645,197.9059185,,,,5.4,,,,,1,,,,,0.113537118,130,1145,0.059841919,0.167232317,0.099559471,0.041387885,0.157731058,0.013100437,0,0.043366681,0.00349345,0,0.015670084,0.749476623,1074,1433,0.70372618,0.795227065,,,,,,,,,,,,,0.764823451,0.681261904,0.848384999,0.248,,1433,0.167497279,0.328502721,76.72421282,,,73.58165612,79.86676953,,,,,,,,,,,,,76.23382364,72.8298915,79.63775578,,,,472.6944884,49,7410,337.6998727,643.6757302,,,,,,,,,,,,,492.7478087,348.6976763,676.3348656,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.104,,,0.088,0.12,0.16,,,0.138,0.184,0.098,,,0.084,0.115,0,0,2238,,,0.101,280,,,,0.048834434,134.5876998,2756,,,,,,,,,,,,,,,,,,,,,,,,,,0.327,,,0.31,0.343,0.14829932,218,1470,0.123278043,0.173320596,0.073593074,51,693,0.049763286,0.097422861,0.002957486,8,2705,,,338.125,,,,,,,,,,,2.958749561,,,,,,,,,3.077345865,2.731656983,,,,,,,,,2.82412222,0.050991098,,,,,282.0195,,,,,0.627255978,33365,53192,0.527396133,0.727115824,63204,,,53823.40426,72584.59575,,,,,,,,,,32438,10175.02128,54700.97872,71728,60834.21277,82621.78723,,,,,,0.413001912,216,523,,,,,,,,0.216062275,,63204,,,4.878048781,1,205,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.706053269,1458,2065,,,0.62,,,,,5.126261763,,,,,0.640198511,774,1209,0.580010686,0.700386336,0.070028011,75,1071,0.01003177,0.130024252,0.894127378,1081,1209,0.850851203,0.937403553,2705,,,,,0.249537893,675,2705,,,0.209981516,568,2705,,,0.007763401,21,2705,,,0.008502773,23,2705,,,0.011460259,31,2705,,,0,0,2705,,,0.063955638,173,2705,,,0.890573013,2409,2705,,,0.017282011,44,2546,0,0.040198045,0.479112754,1296,2705,,,1,2762,2762,, -20,111,20111,KS,Lyon County,2024,1,7140.218313,412,91529,6091.925598,8188.511028,0,,,,2,,,,2,,,,2,5571.091213,3834.882849,7823.883373,,7387.369736,6084.091216,8690.648256,,,,,2,,0.171,,,0.146,0.199,3.476728079,,,2.787065489,4.221204437,4.972027669,,,4.169633072,5.845379307,0.079679756,209,2623,0.0693164,0.090043112,0,,,,,,,,,,0.091383812,0.070977404,0.11179022,0.073789847,0.061340331,0.086239362,,,,,,,0.182,,,0.148,0.222,0.421,,,0.365,0.477,8.3,0.057929998,0.093,,,0.286,,,0.243,0.33,0.745361882,23985,32179,,,0.184707686,,,0.152562726,0.218369538,0.285714286,6,21,0.169385198,0.406827936,537.5,172,31998,,,16.40672473,162,9874,13.88021802,18.93323144,,,,,,,,,,27.34217933,21.23227212,34.66272745,12.43093923,9.871960097,15.45052243,,,,,,,0.132653849,3436,25902,0.114781509,0.15052619,0.000593787,19,31998,,,1684.105263,0.000626999,20,31898,,,1594.9,0.003730641,119,31898,,,268.0504202,1906,,,,,,,,,1942,0.52,,,,,,,,0.4,0.53,0.51,,,,,,0.45,0.26,0.4,0.52,0.878325813,16935,19281,0.85790152,0.898750106,0.656023612,4890,7454,0.591757759,0.720289464,0.025252525,430,17028,,,0.178,1233,,0.123191489,0.232808511,,,,0.09375,0,0.614348275,0.723684211,0.164077872,1,0.149478079,0.059132588,0.23982357,0.174534011,0.118109142,0.23095888,3.871624526,99071,25589,3.318862306,4.424386746,0.153521721,1092,7113,0.099875955,0.207167487,11.5632227,37,31998,,,72.71140842,120,165036,59.70168675,85.72113009,,,,,,,,,,41.54089008,23.25012084,68.51538085,84.24817104,68.3967376,102.6715356,,,,8.2,,,,,0,,,,,0.139011799,1885,13560,0.111631904,0.166391695,0.101898028,0.077241346,0.126554709,0.032817109,0.019336372,0.046297846,0.007743363,0.002443755,0.013042971,0.778222578,12636,16237,0.751564515,0.804880641,,,,,,,,,,0.67133059,0.618118134,0.724543046,0.811486263,0.784693258,0.838279268,0.134,,16237,0.106960803,0.161039197,77.69690206,,,76.71886072,78.67494341,,,,,,,,,,81.41384936,77.90503161,84.92266711,77.40876002,76.27326575,78.54425428,,,,383.1770882,412,91529,344.4157578,421.9384187,,,,,,,,,,262.8632143,188.6351809,356.6036317,395.0527635,349.5292833,440.5762436,,,,54.56790833,19,34819,32.85344543,85.2145483,,,,,,,,,,,,,47.56695048,22.81020167,87.47731552,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.109,,,0.094,0.126,0.163,,,0.141,0.187,0.112,,,0.096,0.128,37,10,26993,,,0.093,3000,,,,0.057929998,1951.661647,33690,,,11.19729636,11,98238,5.58965,20.0350562,,,,,,,,,,,,,14.46487206,6.936468396,26.60141473,,,,0.324,,,0.31,0.338,0.159826529,3022,18908,0.137188231,0.182464826,0.062203551,459,7379,0.04433121,0.080075891,0.000815098,26,31898,,,1226.846154,0.913527919,359.93,394,,,,,,,,3.116927845,,,,,,,,2.885847271,3.302972862,2.923969944,,,,,,,,2.679865634,3.087042411,0.112121751,,,,,3906.180667,,,,,0.752265345,35200,46792,0.696557092,0.807973597,55863,,,49543.34043,62182.65957,,,,,,,,,,64600,48550.6383,80649.3617,57231,53028.61702,61433.38298,,,,,,0.541284404,2773,5123,,,52.74457089,,,,,0.244455185,,55863,,,6.795608991,13,1913,,,,,,,,,,,,,,,,,,,,,,,,,,16.22759745,28,165036,10.50164545,23.95513502,16.9659953,,,,,,,,,,,,,18.25350791,10.98980416,28.5051137,,,,13.33042488,22,165036,8.354106299,20.18242346,,,,,,,,,,,,,15.47415387,9.170964281,24.45583442,,,,13.79994394,32,231885,9.439151438,19.48140332,,,,,,,,,,,,,14.64137775,9.381006994,21.78520952,,,,,,,,,,,0.587607646,13988,23805,,,0.655,,,,,70.92337572,,,,,0.581108674,7684,13223,0.550183566,0.612033783,0.114854278,1466,12764,0.087528243,0.142180312,0.868108599,11479,13223,0.846444736,0.889772462,31898,,,,,0.219700295,7008,31898,,,0.164085523,5234,31898,,,0.019468305,621,31898,,,0.014264217,455,31898,,,0.023575146,752,31898,,,0.001253997,40,31898,,,0.236096307,7531,31898,,,0.693021506,22106,31898,,,0.033327834,1010,30305,0.022855483,0.043800184,0.509969277,16267,31898,,,0.25162373,8097,32179,, -20,113,20113,KS,McPherson County,2024,1,6725.103606,403,78866,5699.532403,7750.674809,0,,,,2,,,,2,,,,2,,,,2,6532.987934,5463.03062,7602.945249,,,,,2,,0.13,,,0.107,0.156,3.040326307,,,2.459264455,3.733091813,4.549986094,,,3.821007273,5.366688786,0.055863343,121,2166,0.046191533,0.065535152,0,,,,,,,,,,,,,0.052874743,0.042936962,0.062812525,,,,,,,0.169,,,0.133,0.21,0.359,,,0.306,0.416,8.2,0.083538467,0.084,,,0.236,,,0.194,0.281,0.776097674,23456,30223,,,0.169592847,,,0.140143472,0.202634298,0.269230769,7,26,0.16570611,0.378587417,378.2,114,30146,,,13.63055516,96,7043,11.04079344,16.64524081,,,,,,,,,,,,,13.5358204,10.76543966,16.80152214,,,,,,,0.093336154,2206,23635,0.080229771,0.106442537,0.00069661,21,30146,,,1435.52381,0.0004998,15,30012,,,2000.8,0.00103292,31,30012,,,968.1290323,2058,,,,,,,,,2046,0.45,,,,,,,,,0.46,0.45,,,,,,,,0.29,0.45,0.926634769,18592,20064,0.910596402,0.942673136,0.731029518,5077,6945,0.6567664,0.805292635,0.019223022,334,17375,,,0.096,613,,0.063829787,0.128170213,,,,,,,,,,0.381139489,0.217372154,0.544906824,0.075176056,0.042761593,0.107590519,3.870741514,124185,32083,3.214145521,4.527337508,0.160486133,1030,6418,0.106120982,0.214851284,22.22517084,67,30146,,,106.662234,154,144381,89.81586196,123.5086059,,,,,,,,,,,,,110.8908485,92.90316031,128.8785366,,,,7.3,,,,,0,,,,,0.10136218,1265,12480,0.076923171,0.125801188,0.090791599,0.066125715,0.115457484,0.008814103,0,0.018252324,0.009615385,0.004525665,0.014705105,0.818500032,12627,15427,0.793547919,0.843452146,,,,,,,,,,0.685903501,0.548327065,0.823479936,0.842435449,0.815341207,0.869529691,0.165,,15427,0.135669026,0.194330974,77.68691361,,,76.79133413,78.58249309,,,,,,,,,,,,,77.78249526,76.8586333,78.70635721,,,,371.0482019,403,78866,332.4864794,409.6099245,,,,,,,,,,,,,361.8652577,322.60113,401.1293854,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.094,,,0.08,0.11,0.147,,,0.127,0.17,0.089,,,0.077,0.104,39.3,10,25475,,,0.084,2520,,,,0.083538467,2437.652451,29180,,,,,,,,,,,,,,,,,,,,,,,,,,0.292,,,0.274,0.308,0.112515578,1896,16851,0.094643237,0.130387918,0.048824846,349,7148,0.034526974,0.063122719,0.00089964,27,30012,,,1111.555556,0.886357143,310.225,350,,,,,,,,3.122386247,,,,,,,,2.937055378,3.154013457,3.164844697,,,,,,,,3.127505425,3.186642403,0.059145077,,,,,3819.5452,,,,,0.708162085,46522,65694,0.638787724,0.777536445,73766,,,65116.97872,82415.02128,,,,64360,57192,71528,,,,,,,73931,68431.08511,79430.91489,,,,,,0.305572199,1530,5007,,,48.22385106,,,,,0.185125939,,73766,,,6.896551724,11,1595,,,,,,,,,,,,,,,,,,,,,,,,,,15.83424162,22,144381,9.801645131,24.20432032,15.23746199,,,,,,,,,,,,,16.05456056,9.665894215,25.07118504,,,,11.77440245,17,144381,6.859023327,18.85195893,,,,,,,,,,,,,12.15242175,6.94615904,19.73477157,,,,19.78963617,40,202126,14.13800622,26.94786765,,,,,,,,,,,,,20.5819269,14.56499645,28.25030273,,,,,,,,,,,0.658367533,14438,21930,,,0.728,,,,,37.14797125,,,,,0.744645799,9040,12140,0.724275871,0.765015728,0.099330452,1172,11799,0.070975792,0.127685112,0.862026359,10465,12140,0.838681022,0.885371697,30012,,,,,0.215946955,6481,30012,,,0.206150873,6187,30012,,,0.014094362,423,30012,,,0.006297481,189,30012,,,0.009762762,293,30012,,,0.00089964,27,30012,,,0.051346128,1541,30012,,,0.901639344,27060,30012,,,0.004021823,115,28594,0,0.008968012,0.503698521,15117,30012,,,0.535486219,16184,30223,, -20,115,20115,KS,Marion County,2024,1,8692.897557,200,31183,6594.701908,10791.09321,0,,,,2,,,,2,,,,2,,,,2,8584.581227,6400.939067,10768.22339,,,,,2,,0.14,,,0.114,0.167,3.347783699,,,2.610607697,4.228211213,5.125920513,,,4.178215482,6.186468197,0.068126521,56,822,0.050901619,0.085351422,0,,,,,,,,,,,,,0.070866142,0.052646614,0.08908567,,,,,,,0.179,,,0.137,0.221,0.373,,,0.305,0.444,8,0.1009227,0.084,,,0.248,,,0.2,0.299,0.549099213,6492,11823,,,0.157430287,,,0.126559139,0.191857841,0.083333333,2,24,0.015751141,0.20231498,230.5,27,11712,,,13.87406617,39,2811,9.865817321,18.96630518,,,,,,,,,,,,,12.40694789,8.370915642,17.71168958,,,,,,,0.111450024,950,8524,0.095960662,0.126939385,0.000170765,2,11712,,,5856,0.000421301,5,11868,,,2373.6,0.000674082,8,11868,,,1483.5,2830,,,,,,,,,2872,0.44,,,,,,,,,0.44,0.43,,,,,,,,,0.43,0.920605384,7421,8061,0.901316819,0.939893949,0.642857143,1503,2338,0.56615589,0.719558396,0.024316619,145,5963,,,0.121,300,,0.072148936,0.169851064,,,,,,,,,,0.083333333,0,0.244397828,0.054140127,0.024954395,0.083325859,3.849894365,111158,28873,3.275649088,4.424139643,0.197767145,496,2508,0.135927856,0.259606434,23.90710383,28,11712,,,108.1373344,64,59184,83.27892428,138.0889619,,,,,,,,,,,,,111.8691315,85.57102142,143.7005794,,,,7.6,,,,,0,,,,,0.068181818,330,4840,0.048655662,0.087707974,0.055983351,0.035022946,0.076943755,0.008057851,0,0.016152456,0.004958678,0.00095642,0.008960936,0.755368647,4221,5588,0.717398274,0.793339021,,,,,,,,,,,,,0.726346053,0.676741401,0.775950706,0.347,,5588,0.302482284,0.391517716,76.36499933,,,74.69745851,78.03254014,,,,,,,,,,,,,76.491279,74.75774433,78.22481366,,,,433.4699426,200,31183,367.2061682,499.7337171,,,,,,,,,,,,,433.9615075,365.2756447,502.6473703,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.101,,,0.085,0.119,0.16,,,0.135,0.185,0.092,,,0.077,0.108,49.8,5,10040,,,0.084,1000,,,,0.1009227,1277.681381,12660,,,,,,,,,,,,,,,,,,,,,,,,,,0.318,,,0.3,0.335,0.132415601,808,6102,0.112160282,0.152670921,0.061328125,157,2560,0.043455785,0.079200465,0.000842602,10,11868,,,1186.8,,,,,,,,,,,3.047668816,,,,,,,,,3.072023483,3.045698477,,,,,,,,,3.084789558,0.102617742,,,,,1592.7523,,,,,0.774791474,40964,52871,0.693241045,0.856341902,64337,,,59304.14894,69369.85106,,,,,,,,,,43750,12801.06383,74698.93617,60660,56066.80851,65253.19149,,,,,,0.298115079,601,2016,,,,,,,,0.212257333,,64337,,,7.168458781,4,558,,,,,,,,,,,,,,,,,,,,,,,,,,18.01219736,10,59184,8.236323606,34.1927613,16.8964585,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.78677202,14,83399,9.177484474,28.16535105,,,,,,,,,,,,,18.16954784,9.933460879,30.48541391,,,,,,,,,,,0.657096774,6111,9300,,,0.65,,,,,2.056943196,,,,,0.812540966,3719,4577,0.795838422,0.829243509,0.058226134,258,4431,0.03643828,0.080013988,0.813414901,3723,4577,0.794396924,0.832432877,11868,,,,,0.212251432,2519,11868,,,0.238119312,2826,11868,,,0.010785305,128,11868,,,0.009352882,111,11868,,,0.006235255,74,11868,,,0.000674082,8,11868,,,0.040866195,485,11868,,,0.914728682,10856,11868,,,0.003450411,39,11303,0,0.010413288,0.497640715,5906,11868,,,1,11823,11823,, -20,117,20117,KS,Marshall County,2024,1,7160.992797,142,26212,5160.46418,9161.521414,0,,,,2,,,,2,,,,2,,,,2,7176.355781,5133.738444,9218.973118,,,,,2,,0.145,,,0.122,0.173,3.36829528,,,2.64689848,4.175457484,4.749942687,,,3.833298122,5.771038771,0.065081352,52,799,0.047977344,0.082185359,0,,,,,,,,,,,,,0.062246279,0.044826808,0.079665749,,,,,,,0.19,,,0.151,0.234,0.399,,,0.328,0.471,7.8,0.128773968,0.082,,,0.254,,,0.208,0.305,0.455967324,4577,10038,,,0.184145328,,,0.149539798,0.221778283,0.375,3,8,0.179126284,0.556186502,170.4,17,9979,,,14.45086705,30,2076,9.749939317,20.62951127,,,,,,,,,,,,,14.06926407,9.190510398,20.61473165,,,,,,,0.093518639,720,7699,0.080412256,0.106625022,0.000601263,6,9979,,,1663.166667,0.000701262,7,9982,,,1426,0.000801443,8,9982,,,1247.75,3302,,,,,,,,,3245,0.49,,,,,,,,,0.49,0.37,,,,,,,,,0.37,0.921920185,6376,6916,0.896871901,0.94696847,0.578454333,1235,2135,0.481379634,0.675529031,0.019943556,106,5315,,,0.109,254,,0.067297872,0.150702128,,,,,,,,,,,,,0.111213659,0.060246155,0.162181164,4.2370395,114667,27063,3.716866327,4.757212674,0.120802621,295,2442,0.055414441,0.186190801,17.03577513,17,9979,,,108.5954308,53,48805,81.34542963,142.0454972,,,,,,,,,,,,,115.2399383,86.32262167,150.7366766,,,,7.6,,,,,1,,,,,0.072639225,300,4130,0.047849609,0.097428842,0.045851528,0.025621976,0.066081081,0.01937046,0.003811549,0.034929371,0.008474576,0,0.01745403,0.763414129,3685,4827,0.719914864,0.806913394,,,,,,,,,,,,,0.799120879,0.761219506,0.837022252,0.175,,4827,0.137853038,0.212146962,77.75126814,,,76.03267341,79.46986286,,,,,,,,,,,,,77.60255194,75.8559814,79.34912247,,,,367.742294,142,26212,301.7205954,433.7639927,,,,,,,,,,,,,373.741265,305.2293194,442.2532106,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.105,,,0.09,0.122,0.163,,,0.14,0.187,0.093,,,0.079,0.108,84.9,7,8245,,,0.082,820,,,,0.128773968,1302.80623,10117,,,,,,,,,,,,,,,,,,,,,,,,,,0.315,,,0.298,0.332,0.111717134,594,5317,0.093844793,0.129589474,0.054975923,137,2492,0.038295072,0.071656774,0.000801443,8,9982,,,1247.75,,,,,,0.243362832,110,452,0.098168689,0.388556975,3.433146748,,,,,,,,,3.417523998,3.347926076,,,,,,,,,3.340238395,0.082535631,,,,,4115.098333,,,,,0.737083282,41500,56303,0.634351798,0.839814765,58942,,,50621.82979,67262.17021,,,,126500,124512.5957,128487.4043,70909,29793.08511,112024.9149,,,,66125,58397,73853,,,,,,0.362950058,625,1722,,,,,,,,0.231685386,,58942,,,2.949852507,2,678,,,,,,,,,,,,,,,,,,,,,,,,,,30.02580257,15,48805,15.9874753,51.34503683,30.73455589,,,,,,,,,,,,,31.77300755,16.91778837,54.33281057,,,,,,,,,,,,,,,,,,,,,,,,,,,20.41500795,14,68577,11.16107482,34.25291442,,,,,,,,,,,,,21.62696574,11.82366342,36.28637366,,,,,,,,,,,0.694365241,5114,7365,,,0.701,,,,,20.43501025,,,,,0.820299093,3346,4079,0.794296069,0.846302117,0.08647838,346,4001,0.052775635,0.120181126,0.826918362,3373,4079,0.790858439,0.862978286,9982,,,,,0.239030255,2386,9982,,,0.228110599,2277,9982,,,0.00631136,63,9982,,,0.007012623,70,9982,,,0.004407934,44,9982,,,0.000500902,5,9982,,,0.033159687,331,9982,,,0.927769986,9261,9982,,,0.005550811,52,9368,0,0.01661679,0.49368864,4928,9982,,,1,10038,10038,, -20,119,20119,KS,Meade County,2024,1,9978.545564,69,10958,6682.788572,14330.85593,0,,,,2,,,,2,,,,2,,,,2,10684.26793,6613.730244,16332.03847,1,,,,2,,0.162,,,0.136,0.192,3.445901106,,,2.717349036,4.243430801,4.766427926,,,3.771249196,5.810795164,0.08401084,31,369,0.055706325,0.112315355,0,,,,,,,,,,0.09009009,0.036826273,0.143353908,0.068,0.036793255,0.099206746,,,,,,,0.182,,,0.146,0.224,0.401,,,0.323,0.485,7.7,0.164951737,0.07,,,0.273,,,0.226,0.326,0.676448829,2743,4055,,,0.174111209,,,0.138963265,0.213466541,0.157894737,3,19,0.054083319,0.295484356,198.9,8,4022,,,16.25135428,15,923,9.095759624,26.80413746,,,,,,,,,,52.63157895,26.27349458,94.17243308,,,,,,,,,,0.182440847,586,3212,0.15861106,0.206270634,,0,4022,,,,0.000513215,2,3897,,,1948.5,,0,3897,,,,3878,,,,,,,,,4115,0.32,,,,,,,,,0.32,0.31,,,,,,,,0.31,0.31,0.863618752,2229,2581,0.823022438,0.904215067,0.65536105,599,914,0.544568399,0.766153701,0.018903592,40,2116,,,0.14,143,,0.086382979,0.193617021,,,,,,,,,,0.13897281,0.01544256,0.26250306,0.039334342,0,0.079760561,3.92543662,139353,35500,3.099206189,4.75166705,0.195075758,206,1056,0.102368043,0.287783472,32.32222775,13,4022,,,160.7168948,33,20533,110.6301153,225.7062741,,,,,,,,,,,,,189.4058968,127.7913632,270.388695,,,,6.3,,,,,0,,,,,0.055393586,95,1715,0.028528588,0.082258584,0.052199414,0.016554347,0.08784448,0.006997085,0,0.017271746,0,0,0.010807711,0.776,1552,2000,0.728599209,0.823400792,,,,,,,,,,,,,0.809602649,0.746684678,0.87252062,0.171,,2000,0.117263962,0.224736038,75.64357746,,,72.83195854,78.45519637,,,,,,,,,,,,,75.2564117,71.8047119,78.70811149,,,,504.7373088,69,10958,385.1677403,649.6969672,,,,,,,,,,,,,495.6107626,362.849368,661.0753041,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.108,,,0.092,0.125,0.158,,,0.136,0.181,0.103,,,0.088,0.12,,,,,,0.07,290,,,,0.164951737,754.6541969,4575,,,,,,,,,,,,,,,,,,,,,,,,,,0.321,,,0.306,0.336,0.209610984,458,2185,0.17982375,0.239398218,0.1272052,137,1077,0.090269029,0.16414137,0.002052861,8,3897,,,487.125,,,,,,,,,,,2.985999205,,,,,,,,,3.108963128,3.040348796,,,,,,,,2.883041907,3.165712385,0.178979543,,,,,2305.56935,,,,,0.721173002,45250,62745,0.516779806,0.925566198,68038,,,59167.3617,76908.6383,,,,,,,,,,66750,52062.51064,81437.48936,79550,63462.51064,95637.48936,,,,,,0.534201954,328,614,,,,,,,,0.200711367,,68038,,,3.367003367,1,297,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,55.02252485,16,29079,31.45012708,89.35313318,,,,,,,,,,,,,66.29248243,37.10339918,109.3393683,,,,,,,,,,,0.654121864,1825,2790,,,0.492,,,,,23.95015339,,,,,0.70474407,1129,1602,0.650673058,0.758815082,0.059202059,92,1554,0.018551594,0.099852525,0.880774033,1411,1602,0.842819999,0.918728067,3897,,,,,0.265332307,1034,3897,,,0.182191429,710,3897,,,0.013600205,53,3897,,,0.016679497,65,3897,,,0.008468052,33,3897,,,0.000256608,1,3897,,,0.211444701,824,3897,,,0.743135745,2896,3897,,,0.021202362,79,3726,0,0.043285717,0.480112907,1871,3897,,,1,4055,4055,, -20,121,20121,KS,Miami County,2024,1,8236.871436,500,95425,7098.289351,9375.45352,0,,,,2,,,,2,,,,2,,,,2,7960.195213,6800.853332,9119.537094,,,,,2,,0.118,,,0.098,0.142,2.865663753,,,2.264448608,3.527137739,4.217255972,,,3.504769667,4.980195775,0.058752026,145,2468,0.049474185,0.068029867,0,,,,,,,,,,,,,0.055482166,0.046066972,0.064897361,,,,,,,0.154,,,0.119,0.193,0.395,,,0.341,0.449,8.6,0.066664402,0.074,,,0.226,,,0.185,0.272,0.704395894,24084,34191,,,0.188309808,,,0.157135816,0.221809199,0.192307692,5,26,0.09558881,0.306287398,309.3,107,34593,,,13.14625205,104,7911,10.61962375,15.67288036,,,,,,,,,,,,,13.83086011,11.20304109,16.88984743,,,,,,,0.079575691,2243,28187,0.067660797,0.091490585,0.000578152,20,34593,,,1729.65,0.000286804,10,34867,,,3486.7,0.001577423,55,34867,,,633.9454546,2977,,,,,,,,,3004,0.47,,,,,,,,,0.47,0.42,,,,,,,0.31,,0.42,0.955835827,22357,23390,0.939477914,0.972193741,0.694973094,5295,7619,0.619987552,0.769958635,0.025558574,461,18037,,,0.079,627,,0.048021277,0.109978723,0.267441861,0,0.866469248,,,,,,,0.124694377,0,0.259620415,0.056590847,0.026361137,0.086820557,3.662292343,149026,40692,2.993552534,4.331032151,0.188997889,1522,8053,0.13361767,0.244378108,12.71933628,44,34593,,,85.72854584,146,170305,71.82245377,99.63463792,,,,,,,,,,,,,87.21392877,72.60959874,101.8182588,,,,7.5,,,,,1,,,,,0.131923077,1715,13000,0.104733939,0.159112215,0.115280464,0.08573712,0.144823809,0.009538462,0.003657394,0.015419529,0.016153846,0.005790235,0.026517458,0.80094284,13592,16970,0.773159156,0.828726525,,,,,,,,,,,,,0.678082966,0.653213264,0.702952668,0.559,,16970,0.50521115,0.61278885,77.78912417,,,76.75702956,78.82121878,,,,,,,,,,,,,77.87561803,76.8261326,78.92510345,,,,396.1803772,500,95425,359.7569221,432.6038324,,,,,,,,,,,,,389.6931339,352.3808332,427.0054347,,,,49.53219593,18,36340,29.35591849,78.28222418,,,,,,,,,,,,,43.20454265,23.6203255,72.48988126,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.088,,,0.074,0.103,0.143,,,0.123,0.165,0.08,,,0.068,0.093,69.1,20,28952,,,0.074,2500,,,,0.066664402,2185.725754,32787,,,13.57062541,14,103164,7.419187194,22.76920352,,,,,,,,,,,,,14.74304971,8.060162465,24.73633227,,,,0.321,,,0.304,0.339,0.096067021,1915,19934,0.08057766,0.111556383,0.042007136,365,8689,0.028900753,0.055113518,0.000745691,26,34867,,,1341.038462,0.85235792,704.9,827,,,,,,,,3.189443411,,,,,,,,,3.199963569,3.190045245,,,,,,,,,3.214254764,0.058811249,,,,,3987.34025,,,,,0.704529707,48807,69276,0.624040002,0.785019413,82606,,,74924.46809,90287.53192,,,,,,,,,,92125,41759.55319,142490.4468,86442,82113.31915,90770.68085,,,,,,0.223880597,1515,6767,,,40.42224186,,,,,0.187286638,,82606,,,7.96178344,15,1884,,,,,,,,,,,,,,,,,,,,,,,,,,23.03081491,39,170305,16.13049963,31.88435564,22.90009101,,,,,,,,,,,,,23.28662748,16.02944287,32.70308286,,,,15.85390916,27,170305,10.44782604,23.06660547,,,,,,,,,,,,,15.27835248,9.789128723,22.73297743,,,,18.65814046,44,235822,13.55703342,25.04768269,,,,,,,,,,,,,19.27242025,13.88986534,26.05071344,,,,,,,,,,,0.707713553,17937,25345,,,0.742,,,,,14.55351657,,,,,0.793715537,10508,13239,0.758898121,0.828532954,0.111890808,1451,12968,0.077235583,0.146546033,0.846060881,11201,13239,0.822662583,0.869459178,34867,,,,,0.231766427,8081,34867,,,0.185189434,6457,34867,,,0.012705424,443,34867,,,0.00762899,266,34867,,,0.007256145,253,34867,,,0.000516248,18,34867,,,0.040295982,1405,34867,,,0.914388964,31882,34867,,,0.003943072,128,32462,0,0.008508709,0.496888175,17325,34867,,,0.753824106,25774,34191,, -20,123,20123,KS,Mitchell County,2024,1,6741.756311,90,15647,4548.634673,9624.276335,0,,,,2,,,,2,,,,2,,,,2,5822.976258,3803.761418,8532.009376,,,,,2,,0.14,,,0.116,0.168,3.351996984,,,2.615896429,4.140952028,4.807344032,,,3.84466978,5.816224625,0.078277887,40,511,0.054988118,0.101567655,0,,,,,,,,,,,,,0.08125,0.056807489,0.105692511,,,,,,,0.175,,,0.136,0.217,0.384,,,0.312,0.46,7.9,0.08892133,0.098,,,0.238,,,0.192,0.287,0.791752933,4589,5796,,,0.174050549,,,0.140221458,0.212235169,0,0,2,0,0.510593623,208.8,12,5748,,,15.89825119,20,1258,9.711064853,24.55355954,,,,,,,,,,,,,14.65517241,8.537177991,23.4643507,,,,,,,0.111369991,478,4292,0.09468914,0.128050842,0.001043841,6,5748,,,958,0.000697107,4,5738,,,1434.5,0.000871384,5,5738,,,1147.6,3435,,,,,,,,,3438,0.44,,,,,,,,,0.44,0.49,,,,,,,,,0.49,0.953476483,3730,3912,0.935239537,0.971713429,0.832495812,994,1194,0.660911454,1,0.019648705,66,3359,,,0.153,206,,0.097,0.209,,,,,,,,,,,,,0.172633254,0.046381702,0.298884806,3.945363282,109255,27692,2.286636206,5.604090358,0.160766962,218,1356,0.068393988,0.253139936,20.87682672,12,5748,,,83.65680632,25,29884,54.13827415,123.4939489,,,,,,,,,,,,,70.91192739,43.31484749,109.5177206,,,,6.3,,,,,1,,,,,0.088631985,230,2595,0.046532214,0.130731755,0.08,0.037956025,0.122043975,0.009248555,0,0.029099221,0.019267823,0,0.041882803,0.798196167,2124,2661,0.75954809,0.836844244,,,,,,,,,,,,,0.789491525,0.748022184,0.830960867,0.155,,2661,0.103682898,0.206317102,77.54081021,,,75.5054984,79.57612203,,,,,,,,,,,,,78.33713732,76.38552717,80.28874747,,,,376.7633392,90,15647,296.3482667,472.2761082,,,,,,,,,,,,,345.8261088,268.0104843,439.1869337,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.101,,,0.086,0.118,0.155,,,0.133,0.181,0.092,,,0.078,0.108,,,,,,0.098,580,,,,0.08892133,566.6956351,6373,,,,,,,,,,,,,,,,,,,,,,,,,,0.316,,,0.297,0.334,0.135902637,402,2958,0.113264339,0.158540935,0.058446187,82,1403,0.039382357,0.077510017,0.000871384,5,5738,,,1147.6,,,,,,,,,,,3.222421001,,,,,,,,,3.270471423,3.047502574,,,,,,,,,3.100685718,0.019392844,,,,,6915.799,,,,,0.807179425,39890,49419,0.736935246,0.877423604,63929,,,56765.76596,71092.23404,,,,,,,,,,63693,63221.17021,64164.82979,59926,49443.2766,70408.7234,,,,,,0.371062992,377,1016,,,,,,,,0.213611976,,63929,,,8.333333333,3,360,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.660489883,3101,4695,,,0.639,,,,,4.421699622,,,,,0.757464213,1852,2445,0.695935371,0.818993054,0.08707124,198,2274,0.046041692,0.128100788,0.829038855,2027,2445,0.785159391,0.872918319,5738,,,,,0.241721854,1387,5738,,,0.229522482,1317,5738,,,0.004356919,25,5738,,,0.006099686,35,5738,,,0.008016731,46,5738,,,0.002091321,12,5738,,,0.036946671,212,5738,,,0.926455211,5316,5738,,,0,0,5501,0,0.013862083,0.488323458,2802,5738,,,1,5796,5796,, -20,125,20125,KS,Montgomery County,2024,1,11905.63374,683,85887,10472.50611,13338.76137,0,,,,2,,,,2,18687.28742,11711.22354,28292.77773,1,,,,2,12144.03398,10475.08211,13812.98585,,,,,2,,0.178,,,0.153,0.208,3.686548348,,,2.982926509,4.433217573,5.063156152,,,4.233928736,5.961635916,0.078925956,194,2458,0.068266812,0.0895851,0,,,,,,,0.138211382,0.077218972,0.199203793,0.058365759,0.029703547,0.08702797,0.077633008,0.065412582,0.089853434,,,,,,,0.209,,,0.172,0.252,0.435,,,0.376,0.494,7,0.102454922,0.13,,,0.302,,,0.26,0.351,0.731849076,23043,31486,,,0.167373143,,,0.136406638,0.201142544,0.142857143,6,42,0.072742026,0.23003453,462.2,144,31156,,,28.91110511,214,7402,25.03751309,32.78469713,,,,,,,22.44897959,11.20644973,40.16742554,42.29195089,28.73532876,60.03004844,28.13397129,23.58588764,32.68205494,,,,35.83061889,22.4548581,54.2479876,0.112402457,2708,24092,0.096913096,0.127891819,0.000224676,7,31156,,,4450.857143,0.000548458,17,30996,,,1823.294118,0.002193832,68,30996,,,455.8235294,2380,,,,,2373,,7308,,2096,0.38,,,,,0.37,,0.23,0.45,0.38,0.33,,,,,0.41,,0.23,0.22,0.33,0.89999529,19106,21229,0.883434616,0.916555963,0.586124064,4148,7077,0.527332903,0.644915225,0.030756613,450,14631,,,0.201,1446,,0.124744681,0.277255319,0.491525424,0.28489,0.698160848,,,,0.464912281,0.239491757,0.690332804,0.281385281,0.152404467,0.410366096,0.226911907,0.170253721,0.283570093,4.171619453,96160,23051,3.640193298,4.703045607,0.267788012,2006,7491,0.215172436,0.320403589,21.18372063,66,31156,,,111.835037,178,159163,95.40555181,128.2645223,,,,,,,,,,,,,128.9152024,109.0632741,148.7671308,,,,9,,,,,1,,,,,0.138031239,1900,13765,0.118445251,0.157617227,0.113318617,0.09184289,0.134794343,0.017072285,0.00897663,0.025167939,0.020704686,0.009940177,0.031469194,0.817946824,11075,13540,0.789464107,0.846429542,0.72168906,0.648092451,0.795285668,,,,,,,0.772497472,0.645695419,0.899299525,0.841050989,0.819670761,0.862431216,0.168,,13540,0.135873947,0.200126053,73.28712008,,,72.24528582,74.32895435,,,,,,,,,,84.4479668,69.94629367,98.94963993,73.09716009,71.91694825,74.27737193,,,,585.5110701,683,85887,538.3059681,632.7161721,,,,,,,978.4244179,702.1342548,1327.343203,,,,589.477607,537.0979302,641.8572838,,,,49.73959857,17,34178,28.97514913,79.63791567,,,,,,,,,,,,,55.62449189,29.61769925,95.11957519,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.118,,,0.103,0.137,0.174,,,0.153,0.198,0.114,,,0.098,0.13,95.6,25,26141,,,0.13,4130,,,,0.102454922,3634.178519,35471,,,17.99189307,17,94487,10.48094073,28.8067637,,,,,,,,,,,,,18.85267977,10.30693547,31.63159322,,,,0.352,,,0.337,0.366,0.141329394,2392,16925,0.119882586,0.162776203,0.046483909,351,7551,0.032186037,0.060781782,0.001419538,44,30996,,,704.4545455,0.911044974,344.375,378,,,,,,,,3.036882892,,,,,,,,,3.154144276,3.094965303,,,,,,,,2.610747912,3.214374743,0.065106144,,,,,968.81235,,,,,0.73200439,40687,55583,0.669273716,0.794735064,54955,,,50129.46809,59780.53192,56938,31516.38298,82359.61702,,,,29420,24583.74468,34256.25532,50625,26481.85106,74768.14894,51726,48429.14894,55022.85106,,,,,,0.615063593,3095,5032,,,48.2735887,,,,,0.248494223,,54955,,,7.138934651,13,1821,,,6.216061415,14,225223,3.398378619,10.42949482,,,,,,,,,,,,,,,,,,,26.97462303,41,159163,19.0888487,37.02477762,25.75975572,,,,,,,,,,,,,32.54278806,22.66724426,45.2591404,,,,25.75975572,41,159163,18.48564545,34.94601733,,,,,,,,,,,,,27.85204991,19.39997326,38.73545914,,,,25.75225443,58,225223,19.55476647,33.2907606,,,,,,,,,,,,,29.70186057,22.24873175,38.85076492,,,,,,,,,,,0.553193243,13426,24270,,,0.588,,,,,42.74655637,,,,,0.725753036,9204,12682,0.69633756,0.755168512,0.122139891,1500,12281,0.098127146,0.146152636,0.825579562,10470,12682,0.80458549,0.846573633,30996,,,,,0.236062718,7317,30996,,,0.207801007,6441,30996,,,0.045554265,1412,30996,,,0.036488579,1131,30996,,,0.009743193,302,30996,,,0.001580849,49,30996,,,0.076138857,2360,30996,,,0.786553104,24380,30996,,,0.006538591,194,29670,0.001511972,0.01156521,0.501935734,15558,30996,,,0.453947786,14293,31486,, -20,127,20127,KS,Morris County,2024,1,8253.119547,92,14635,5568.345101,11781.84133,0,,,,2,,,,2,,,,2,,,,2,8528.41557,5711.613756,12248.22737,,,,,2,,0.143,,,0.119,0.169,3.204971906,,,2.506239552,3.955439795,4.779909817,,,3.86171905,5.748369342,0.057065217,21,368,0.033364651,0.080765784,1,,,,,,,,,,,,,0.058139535,0.033410572,0.082868498,,,,,,,0.179,,,0.139,0.222,0.369,,,0.304,0.442,7.7,0.099469985,0.099,,,0.244,,,0.199,0.297,0.534719644,2880,5386,,,0.183783907,,,0.150978835,0.222238015,0.25,2,8,0.070127692,0.458326521,224,12,5356,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.121272366,488,4024,0.103400025,0.139144706,0.00056012,3,5356,,,1785.333333,0.000186951,1,5349,,,5349,0.000560853,3,5349,,,1783,3201,,,,,,,,,3242,0.49,,,,,,,,,0.49,0.36,,,,,,,,,0.36,0.924833248,3605,3898,0.909269946,0.94039655,0.655826558,726,1107,0.540187898,0.771465219,0.023049062,70,3037,,,0.155,170,,0.095425532,0.214574468,,,,,,,,,,,,,0.139957265,0.060901724,0.219012806,4.473932097,109240,24417,3.108655122,5.839209071,0.168953688,197,1166,0.088473326,0.24943405,26.13890963,14,5356,,,98.14256116,27,27511,64.67656622,142.7922738,,,,,,,,,,,,,103.7634194,67.78171056,152.0374509,,,,7.8,,,,,0,,,,,0.076759062,180,2345,0.045440509,0.108077615,0.059275053,0.025028365,0.093521742,0.001705757,0,0.016948354,0.017057569,0.00201052,0.032104618,0.833530106,2118,2541,0.797322812,0.869737401,,,,,,,,,,,,,0.814070352,0.769024621,0.859116082,0.37,,2541,0.302715128,0.437284872,77.11614133,,,74.66168866,79.570594,,,,,,,,,,,,,76.70446321,74.14404667,79.26487974,,,,404.313625,92,14635,316.9173409,508.363682,,,,,,,,,,,,,421.3893512,327.8660676,533.2951934,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.102,,,0.086,0.118,0.157,,,0.135,0.182,0.093,,,0.079,0.109,,,,,,0.099,530,,,,0.099469985,589.1607222,5923,,,,,,,,,,,,,,,,,,,,,,,,,,0.309,,,0.29,0.325,0.142076503,416,2928,0.119438205,0.164714801,0.070069204,81,1156,0.048622396,0.091516013,0.000747803,4,5349,,,1337.25,,,,,,,,,,,3.008675234,,,,,,,,,2.99466605,2.970874423,,,,,,,,,2.960102937,0.019635853,,,,,3011.9425,,,,,0.793799174,40760,51348,0.698591789,0.88900656,60741,,,52198.02128,69283.97872,,,,,,,,,,,,,53902,45005.14894,62798.85106,,,,,,0.449026346,392,873,,,,,,,,0.224823431,,60741,,,7.518796993,2,266,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,28.40248909,11,38729,14.17842022,50.81989856,,,,,,,,,,,,,28.25976375,13.55165516,51.9707117,,,,,,,,,,,0.67184241,2899,4315,,,0.588,,,,,0.09276306,,,,,0.81993007,1876,2288,0.779481483,0.860378657,0.084988453,184,2165,0.04374954,0.126227366,0.811625874,1857,2288,0.768874902,0.854376846,5349,,,,,0.208450178,1115,5349,,,0.257805197,1379,5349,,,0.005982427,32,5349,,,0.00897364,48,5349,,,0.008225837,44,5349,,,0.000560853,3,5349,,,0.054776594,293,5349,,,0.903907272,4835,5349,,,0.001950078,10,5128,0,0.016306958,0.495419705,2650,5349,,,1,5386,5386,, -20,129,20129,KS,Morton County,2024,1,14041.83261,71,6983,9172.591258,20574.5382,0,,,,2,,,,2,,,,2,,,,2,16029.9317,9500.353446,25334.203,1,,,,2,,0.168,,,0.144,0.196,3.488111905,,,2.736295262,4.358201191,4.755344668,,,3.76807288,5.905714385,0.083333333,20,240,0.048365756,0.118300911,1,,,,,,,,,,0.120481928,0.05044931,0.190514546,,,,,,,,,,0.188,,,0.152,0.226,0.394,,,0.318,0.484,7.7,0.094164019,0.104,,,0.288,,,0.24,0.342,0.88707886,2396,2701,,,0.173263539,,,0.139773799,0.215594764,0,0,2,0,0.510593623,260,7,2692,,,39.21568628,26,663,25.61698826,57.46006649,,,,,,,,,,,,,39.9113082,23.65397069,63.07707376,,,,,,,0.172967864,366,2116,0.150329566,0.195606162,0.001114413,3,2692,,,897.3333333,0,0,2599,,,-2599,0.000384763,1,2599,,,2599,3655,,,,,,,,,3777,0.26,,,,,,,,0.25,0.25,0.44,,,,,,,,0.53,0.43,0.878363832,1632,1858,0.832755103,0.923972561,0.595679012,386,648,0.473735839,0.717622185,0.02676182,30,1121,,,0.176,114,,0.106893617,0.245106383,,,,,,,,,,0.313559322,0,0.632317032,0.105943153,0,0.225147818,4.06994543,118586,29137,3.086393053,5.053497807,0.125181951,86,687,0,0.251904225,26.00297177,7,2692,,,113.430127,15,13224,63.48598104,187.0857446,,,,,,,,,,,,,138.6075275,73.80267077,237.0230933,,,,5.4,,,,,0,,,,,0.106280193,110,1035,0.043165854,0.169394533,0.110659899,0.037441497,0.1838783,0,0,0.025326344,0,0,0.01790843,0.868766404,993,1143,0.791517786,0.946015023,,,,,,,,,,,,,0.84503632,0.728249713,0.961822926,0.185,,1143,0.098111093,0.271888907,71.33496535,,,67.53778028,75.13215041,,,,,,,,,,,,,70.0701512,65.29790306,74.84239934,,,,720.5924446,71,6983,552.4740953,923.7669929,,,,,,,,,,,,,769.9213183,567.6792016,1020.803968,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.11,,,0.094,0.127,0.159,,,0.137,0.183,0.108,,,0.091,0.126,,,,,,0.104,280,,,,0.094164019,304.432274,3233,,,,,,,,,,,,,,,,,,,,,,,,,,0.337,,,0.322,0.35,0.207325501,300,1447,0.177538267,0.237112735,0.102710414,72,701,0.07173169,0.133689137,0.000769527,2,2599,,,1299.5,0.83175,166.35,200,,,,,,,,2.962732984,,,,,,,,,,2.95412294,,,,,,,,,,0.05185733,,,,,-1092.62185,,,,,0.605150054,32243,53281,0.416152725,0.794147382,62896,,,53541.61702,72250.38298,,,,129000,709.9574468,257290.0426,,,,53125,33178.2766,73071.7234,59922,46106.68085,73737.31915,,,,,,0.135739705,267,1967,,,,,,,,0.217120326,,62896,,,16.2601626,2,123,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,73.37910792,14,19079,40.11704113,123.1176745,,,,,,,,,,,,,73.57810316,35.28356042,135.3127514,,,,,,,,,,,0.642359249,1198,1865,,,0.44,,,,,0.000862768,,,,,0.731629393,687,939,0.661563842,0.801694944,0.032369942,28,865,0,0.091568167,0.8828541,829,939,0.807409432,0.958298768,2599,,,,,0.251635244,654,2599,,,0.203539823,529,2599,,,0.011542901,30,2599,,,0.023855329,62,2599,,,0.015775298,41,2599,,,0.001923817,5,2599,,,0.253174298,658,2599,,,0.689111197,1791,2599,,,0.053411306,137,2565,0.014845931,0.091976681,0.497114275,1292,2599,,,1,2701,2701,, -20,131,20131,KS,Nemaha County,2024,1,5021.606762,111,27397,3449.380507,6593.833016,0,,,,2,,,,2,,,,2,,,,2,4980.540664,3347.7542,6613.327128,,,,,2,,0.129,,,0.107,0.153,3.060235294,,,2.386708313,3.804767268,4.462447186,,,3.613586448,5.396775977,0.050367261,48,953,0.036481758,0.064252765,0,,,,,,,,,,,,,0.046171171,0.032368274,0.059974069,,,,,,,0.166,,,0.128,0.207,0.377,,,0.31,0.452,8.2,0.088546768,0.081,,,0.237,,,0.191,0.285,0.645673124,6633,10273,,,0.187300219,,,0.152265501,0.227757973,0.166666667,1,6,0.011498194,0.426636125,146.8,15,10216,,,12.57861635,28,2226,8.358399217,18.17960285,,,,,,,,,,,,,11.52737752,7.385808288,17.15182401,,,,,,,0.082712279,677,8185,0.070797385,0.094627172,0.001272514,13,10216,,,785.8461539,0.000988631,10,10115,,,1011.5,0.000197726,2,10115,,,5057.5,3332,,,,,,,,,3361,0.49,,,,,,,,,0.49,0.29,,,,,,,,,0.29,0.931715406,6181,6634,0.914889945,0.948540866,0.777978339,1724,2216,0.678564651,0.877392028,0.018356799,103,5611,,,0.097,261,,0.062446809,0.131553192,,,,,,,,,,0.219047619,0,0.535542262,0.082624544,0.045675515,0.119573574,4.742220845,137771,29052,4.041531008,5.442910683,0.145825869,407,2791,0.078095111,0.213556627,12.72513704,13,10216,,,86.54432446,44,50841,62.88323864,116.1817161,,,,,,,,,,,,,89.13764511,64.50935575,120.067823,,,,7.8,,,,,1,,,,,0.081081081,330,4070,0.051156684,0.111005478,0.067721206,0.036629673,0.098812739,0.002948403,0,0.011113231,0.011056511,0.002456162,0.01965686,0.832446284,4223,5073,0.800491583,0.864400986,,,,,,,,,,,,,0.82957637,0.795757176,0.863395564,0.106,,5073,0.082229862,0.129770138,79.27611218,,,77.82129211,80.73093225,,,,,,,,,,,,,79.32041993,77.81962735,80.82121251,,,,291.6694648,111,27397,235.0674259,348.2715038,,,,,,,,,,,,,288.0997952,230.745647,345.4539435,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.095,,,0.081,0.111,0.149,,,0.127,0.174,0.085,,,0.072,0.099,,,,,,0.081,830,,,,0.088546768,901.2290091,10178,,,,,,,,,,,,,,,,,,,,,,,,,,0.318,,,0.3,0.336,0.103081438,562,5452,0.086400587,0.119762289,0.044179523,126,2852,0.029881651,0.058477396,0.00128522,13,10115,,,778.0769231,0.966260163,118.85,123,,,,,,,,3.543753556,,,,,,,,,3.597624277,3.467446896,,,,,,,,,3.539515899,0.055504019,,,,,,,,,,0.779086514,45441,58326,0.718369666,0.839803362,72719,,,62837.97872,82600.02128,80395,25924.87234,134865.1277,,,,,,,,,,73060,66090.97872,80029.02128,,,,,,0.295893122,598,2021,,,,,,,,0.187791361,,72719,,,8.253094911,6,727,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,25.24225554,18,71309,14.9601604,39.89364634,,,,,,,,,,,,,25.08373541,14.61220024,40.16149029,,,,,,,,,,,0.767589467,5684,7405,,,0.703,,,,,5.863004558,,,,,0.769944807,3069,3986,0.740607403,0.799282211,0.078405835,301,3839,0.041480124,0.115331546,0.824134471,3285,3986,0.788537979,0.859730963,10115,,,,,0.267918932,2710,10115,,,0.197231834,1995,10115,,,0.007810183,79,10115,,,0.009194266,93,10115,,,0.002965892,30,10115,,,0.00128522,13,10115,,,0.024320316,246,10115,,,0.943549184,9544,10115,,,0.000421363,4,9493,0,0.009243913,0.485121107,4907,10115,,,1,10273,10273,, -20,133,20133,KS,Neosho County,2024,1,10128.00834,296,43407,8261.881396,11994.13528,0,,,,2,,,,2,,,,2,,,,2,10515.13172,8462.206389,12568.05705,,,,,2,,0.153,,,0.127,0.18,3.511491712,,,2.745967853,4.319063259,5.454264182,,,4.440307251,6.456002553,0.069172932,92,1330,0.055535493,0.082810372,0,,,,,,,,,,,,,0.06961507,0.055339902,0.083890237,,,,,,,0.192,,,0.153,0.235,0.401,,,0.33,0.47,7.7,0.052181478,0.124,,,0.277,,,0.227,0.329,0.716109155,11389,15904,,,0.178146107,,,0.144304246,0.214313775,0.058823529,1,17,0.002556547,0.2046995,354.8,56,15784,,,25.96728123,100,3851,20.87769411,31.05686835,,,,,,,,,,,,,26.67493797,21.33650721,32.94333138,,,,,,,0.101743008,1255,12335,0.086253646,0.117232369,0.000633553,10,15784,,,1578.4,0.00032039,5,15606,,,3121.2,0.001089325,17,15606,,,918,4236,,,,,,,,,4143,0.45,,,,,,,,,0.45,0.39,,,,,,,,0.47,0.38,0.910284464,9568,10511,0.88699311,0.933575817,0.669982446,2290,3418,0.568282534,0.771682358,0.035950961,217,6036,,,0.208,765,,0.13412766,0.28187234,,,,,,,,,,0.509186352,0.291489397,0.726883307,0.163060521,0.10342994,0.222691102,4.182507885,98130,23462,3.461303296,4.903712475,0.287234043,1107,3854,0.191999906,0.382468179,15.83882413,25,15784,,,81.57016289,65,79686,62.95412962,103.9678687,,,,,,,,,,,,,87.14964437,66.81713262,111.7219109,,,,9,,,,,0,,,,,0.114551084,740,6460,0.083591194,0.145510974,0.08056872,0.051983558,0.109153883,0.024767802,0.006713209,0.042822395,0.013157895,0.003039128,0.023276662,0.757571367,5228,6901,0.695871877,0.819270856,,,,,,,,,,,,,0.79085934,0.744889032,0.836829648,0.149,,6901,0.107417192,0.190582808,74.81533576,,,73.36875856,76.26191296,,,,,,,,,,,,,74.45123388,72.89269525,76.00977252,,,,500.9378691,296,43407,440.1404439,561.7352943,,,,,,,,,,,,,502.0134741,438.108511,565.9184372,,,,97.46029926,17,17443,56.77421584,156.0433802,,,,,,,,,,,,,116.6781057,67.96929629,186.81295,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.108,,,0.091,0.126,0.169,,,0.145,0.195,0.104,,,0.088,0.12,61.3,8,13059,,,0.124,1970,,,,0.052181478,861.6205639,16512,,,,,,,,,,,,,,,,,,,,,,,,,,0.333,,,0.316,0.349,0.129183793,1100,8515,0.107736985,0.150630602,0.042892768,172,4010,0.028594896,0.05719064,0.00153787,24,15606,,,650.25,0.853159341,155.275,182,,,,,,,,2.782586419,,,,,,,,,2.815264988,2.788961407,,,,,,,,,2.837603248,0.024147166,,,,,-1225.64965,,,,,0.756615031,40833,53968,0.588389989,0.924840074,49322,,,44346.34043,54297.65957,,,,,,,,,,,,,57045,49210.95745,64879.04255,,,,,,0.587640886,1512,2573,,,,,,,,0.276874417,,49322,,,5.671077505,6,1058,,,,,,,,,,,,,,,,,,,,,,,,,,17.05373596,13,79686,8.811914226,29.78944473,16.31403258,,,,,,,,,,,,,18.8826542,9.756942969,32.98419683,,,,13.80418141,11,79686,6.890997625,24.69949365,,,,,,,,,,,,,15.46203368,7.718591503,27.66584931,,,,18.72024818,21,112178,11.58812867,28.61588791,,,,,,,,,,,,,16.93024738,9.862492999,27.10696612,,,,,,,,,,,0.581810491,6877,11820,,,0.661,,,,,43.89037373,,,,,0.756242952,4694,6207,0.713880931,0.798604972,0.114971467,685,5958,0.079163703,0.150779231,0.803931046,4990,6207,0.77280014,0.835061951,15606,,,,,0.241573754,3770,15606,,,0.204793028,3196,15606,,,0.013648597,213,15606,,,0.015314623,239,15606,,,0.00768935,120,15606,,,0.001089325,17,15606,,,0.065551711,1023,15606,,,0.880110214,13735,15606,,,0.001281792,19,14823,0,0.00672697,0.495066,7726,15606,,,0.452339034,7194,15904,, -20,135,20135,KS,Ness County,2024,1,12080.62465,53,7143,7379.159382,18657.54498,1,,,,2,,,,2,,,,2,,,,2,10257.622,5741.113168,16918.38757,1,,,,2,,0.141,,,0.117,0.167,3.209464328,,,2.512396676,3.988473358,4.505966381,,,3.561848433,5.492161915,0.072815534,15,206,0.037332761,0.108298307,1,,,,,,,,,,,,,0.063291139,0.025324575,0.101257704,,,,,,,0.174,,,0.139,0.213,0.384,,,0.309,0.463,8.2,0.09757526,0.078,,,0.236,,,0.191,0.283,0.015630815,42,2687,,,0.166513765,,,0.133593764,0.202763503,0.166666667,1,6,0.011498194,0.426636125,149.7,4,2672,,,21.16402116,12,567,10.93575857,36.9692858,,,,,,,,,,,,,,,,,,,,,,0.154815936,307,1983,0.133369127,0.176262744,0.000748503,2,2672,,,1336,0,0,2645,,,-2645,,0,2645,,,,2313,,,,,,,,,2333,0.53,,,,,,,,,0.53,0.3,,,,,,,,,0.3,0.913606911,1692,1852,0.844990708,0.982223115,0.667377399,313,469,0.549888916,0.784865882,0.021853806,29,1327,,,0.134,78,,0.086340426,0.181659575,,,,,,,,,,0.23178808,0.014208359,0.4493678,0.1875,0.069394609,0.305605391,3.645037001,119200,32702,3.123488943,4.166585059,0.122522523,68,555,0.031013175,0.21403187,29.94011976,8,2672,,,194.2585798,27,13899,128.0176281,282.6360346,,,,,,,,,,,,,215.2139724,140.584912,315.3383336,,,,5.8,,,,,0,,,,,0.063492064,80,1260,0.036610666,0.090373461,0.052208835,0.014493486,0.089924184,0,0,0.020803783,0.011111111,0,0.028451643,0.751971326,1049,1395,0.707874375,0.796068278,,,,,,,,,,,,,0.793459553,0.729277079,0.857642026,0.161,,1395,0.113236284,0.208763716,73.46459793,,,69.78700837,77.1421875,,,,,,,,,,,,,74.64566212,70.97889636,78.31242788,,,,525.9597901,53,7143,375.7533851,716.2079531,,,,,,,,,,,,,485.9451245,336.5311252,679.059604,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.099,,,0.084,0.115,0.154,,,0.134,0.177,0.093,,,0.078,0.108,,,,,,0.078,210,,,,0.09757526,303.1663324,3107,,,,,,,,,,,,,,,,,,,,,,,,,,0.329,,,0.311,0.346,0.178850248,252,1409,0.151445993,0.206254504,0.098006645,59,602,0.065836432,0.130176857,0.000756144,2,2645,,,1322.5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.126695588,,,,,-2212.84075,,,,,0.688195486,39457,57334,0.604110981,0.772279991,61539,,,53036.53192,70041.46809,,,,,,,,,,57500,54549.87234,60450.12766,69018,54288.80851,83747.19149,,,,,,0.495305164,211,426,,,,,,,,0.221908058,,61539,,,6.097560976,1,164,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.708665105,1513,2135,,,0.57,,,,,,,,,,0.810314685,927,1144,0.772893242,0.847736129,0.042412818,45,1061,0,0.084851132,0.86451049,989,1144,0.812876362,0.916144617,2645,,,,,0.221928166,587,2645,,,0.245746692,650,2645,,,0.006427221,17,2645,,,0.01852552,49,2645,,,0.002646503,7,2645,,,0,0,2645,,,0.128544423,340,2645,,,0.843856333,2232,2645,,,0.017295598,44,2544,0,0.03860258,0.508128544,1344,2645,,,1,2687,2687,, -20,137,20137,KS,Norton County,2024,1,9055.691572,70,14353,6017.441285,13087.99567,0,,,,2,,,,2,,,,2,,,,2,8485.736287,5317.965753,12847.50672,1,,,,2,,0.142,,,0.117,0.169,3.151452922,,,2.474353732,3.916837221,4.630995889,,,3.694549622,5.677435859,0.080729167,31,384,0.053481618,0.107976715,0,,,,,,,,,,,,,0.075144509,0.047366342,0.102922676,,,,,,,0.181,,,0.14,0.221,0.377,,,0.306,0.452,8.6,0.077475547,0.071,,,0.248,,,0.199,0.297,0.624473347,3409,5459,,,0.187625237,,,0.152376882,0.227950603,0.5,4,8,0.315552499,0.64971552,224.6,12,5342,,,19.8019802,18,909,11.73590845,31.29566586,,,,,,,,,,,,,21.97802198,13.02556872,34.73475002,,,,,,,0.097505669,344,3528,0.082016307,0.112995031,0.000748783,4,5342,,,1335.5,0.000565931,3,5301,,,1767,0.001131862,6,5301,,,883.5,1621,,,,,,,,,1633,0.5,,,,,,,,,0.51,0.36,,,,,,,,,0.36,0.908135169,3628,3995,0.878042696,0.938227642,0.597553517,977,1635,0.484640243,0.71046679,0.019105846,50,2617,,,0.208,210,,0.147234043,0.268765957,,,,,,,,,,0.081081081,0,0.490507588,0.043981482,0.00413678,0.083826183,3.988956588,104750,26260,2.625530329,5.352382847,0.112060779,118,1053,0.046638612,0.177482946,16.84762261,9,5342,,,100.3642852,27,26902,66.14069635,146.0247656,,,,,,,,,,,,,96.82579776,61.37924997,145.2862377,,,,5.6,,,,,1,,,,,0.080428954,150,1865,0.03910247,0.121755439,0.072541644,0.026690349,0.118392939,0.00536193,0,0.02669543,0.002144772,0,0.011914465,0.701110575,1452,2071,0.633425261,0.768795888,,,,,,,,,,,,,0.673956262,0.604266501,0.743646024,0.112,,2071,0.052748107,0.171251893,76.8160158,,,74.22022056,79.41181104,,,,,,,,,,,,,77.15726105,74.44557866,79.86894343,,,,376.7876597,70,14353,289.5339832,482.0750938,,,,,,,,,,,,,364.9671497,274.9432044,475.0549116,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.099,,,0.083,0.115,0.151,,,0.129,0.174,0.096,,,0.081,0.112,,,,,,0.071,390,,,,0.077475547,439.3638283,5671,,,,,,,,,,,,,,,,,,,,,,,,,,0.337,,,0.32,0.353,0.116011124,292,2517,0.095755805,0.136266444,0.053621825,57,1063,0.035749485,0.071494165,0.000377287,2,5301,,,2650.5,,,,,,,,,,,3.334715455,,,,,,,,,3.346246523,3.393578928,,,,,,,,,3.43075797,0.038383419,,,,,2136.2145,,,,,0.984771697,40417,41042,0.693430892,1.276112503,56604,,,48280.25532,64927.74468,,,,,,,,,,43571,28478.40426,58663.59575,53146,46641.65957,59650.34043,,,,,,0.394366197,308,781,,,,,,,,0.241255035,,56604,,,11.17318436,4,358,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,36.89550665,14,37945,20.17111682,61.90439089,,,,,,,,,,,,,38.6766631,20.59369419,66.1382718,,,,,,,,,,,0.56097561,2415,4305,,,0.607,,,,,15.500323,,,,,0.761297182,1432,1881,0.714087578,0.808506787,0.120633188,221,1832,0.052904327,0.188362048,0.913875598,1719,1881,0.871710401,0.956040795,5301,,,,,0.192793813,1022,5301,,,0.203169213,1077,5301,,,0.03923788,208,5301,,,0.004904735,26,5301,,,0.013205056,70,5301,,,0.000188644,1,5301,,,0.057536314,305,5301,,,0.865497076,4588,5301,,,0.00841652,43,5109,0,0.024033044,0.426900585,2263,5301,,,1,5459,5459,, -20,139,20139,KS,Osage County,2024,1,9144.093587,308,43465,7348.466095,10939.72108,0,,,,2,,,,2,,,,2,,,,2,8250.584223,6536.358089,9964.810357,,,,,2,,0.145,,,0.121,0.168,3.331991209,,,2.643298788,4.144746044,5.109184014,,,4.227646103,6.095966688,0.071242398,82,1151,0.056381712,0.086103084,0,,,,,,,,,,,,,0.070888469,0.055424002,0.086352936,,,,,,,0.186,,,0.149,0.224,0.435,,,0.371,0.502,8.2,0.050587945,0.1,,,0.252,,,0.207,0.298,0.4788786,7550,15766,,,0.186310856,,,0.152989173,0.223535528,0.117647059,2,17,0.02445786,0.265431552,209.3,33,15768,,,17.31728794,59,3407,13.18272193,22.33803973,,,,,,,,,,,,,18.23002983,13.73335332,23.72888962,,,,,,,0.104537118,1311,12541,0.090239246,0.118834991,6.34196E-05,1,15768,,,15768,0.000127763,2,15654,,,7827,6.38814E-05,1,15654,,,15654,3020,,,,,,,,,3055,0.5,,,,,,,,,0.5,0.47,,,,,,,,,0.47,0.921137093,10045,10905,0.904618705,0.937655482,0.602776137,2041,3386,0.534464487,0.671087787,0.028009461,225,8033,,,0.139,496,,0.092531915,0.185468085,,,,,,,,,,0.135265701,0,0.353718549,0.150596582,0.099205055,0.201988109,3.699823765,109167,29506,3.207913907,4.191733622,0.212252643,783,3689,0.147646095,0.276859191,9.512937595,15,15768,,,88.38383838,70,79200,68.89953802,111.6676627,,,,,,,,,,,,,89.64833404,69.33401505,114.0546616,,,,8.3,,,,,1,,,,,0.088301887,585,6625,0.068243071,0.108360702,0.065496183,0.04837523,0.082617137,0.014188679,0.003722293,0.024655065,0.010566038,0.002890234,0.018241841,0.788122867,5773,7325,0.748870738,0.827374996,,,,,,,,,,,,,0.689632968,0.636686134,0.742579803,0.478,,7325,0.426641418,0.529358582,75.05204524,,,73.67564609,76.42844438,,,,,,,,,,,,,75.62140548,74.27477162,76.96803934,,,,470.7282571,308,43465,413.7359723,527.7205419,,,,,,,,,,,,,450.1080926,393.5140149,506.7021703,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.103,,,0.088,0.119,0.164,,,0.141,0.188,0.094,,,0.08,0.108,52.6,7,13309,,,0.1,1580,,,,0.050587945,824.3305684,16295,,,,,,,,,,,,,,,,,,,,,,,,,,0.341,,,0.324,0.358,0.124220837,1116,8984,0.105157007,0.143284667,0.057416268,216,3762,0.040735417,0.074097119,0.000511052,8,15654,,,1956.75,0.892523365,191,214,,,,,,,,3.064091386,,,,,,,,,3.049140055,2.958321351,,,,,,,,,2.935641334,0.035476708,,,,,667.546966,,,,,0.795869554,44587,56023,0.708363315,0.883375792,62995,,,55964.02128,70025.97872,132000,118477.7872,145522.2128,,,,,,,,,,66244,63791.91489,68696.08511,,,,,,0.399637024,1101,2755,,,,,,,,0.21677911,,62995,,,5.868544601,5,852,,,,,,,,,,,,,,,,,,,,,,,,,,18.10810794,14,79200,9.356723611,31.63122038,17.67676768,,,,,,,,,,,,,19.42320178,10.03625179,33.92842467,,,,16.41414141,13,79200,8.739839004,28.06868172,,,,,,,,,,,,,16.2996971,8.422291342,28.47229058,,,,19.83948057,22,110890,12.43329685,30.037212,,,,,,,,,,,,,19.38097176,11.83840106,29.932339,,,,,,,,,,,0.6637753,8035,12105,,,0.67,,,,,6.623425009,,,,,0.785350319,4932,6280,0.7624148,0.808285837,0.074971354,458,6109,0.05459776,0.095344947,0.839490446,5272,6280,0.805483507,0.873497385,15654,,,,,0.231825731,3629,15654,,,0.204101188,3195,15654,,,0.007857417,123,15654,,,0.007090839,111,15654,,,0.004535582,71,15654,,,0.000574933,9,15654,,,0.03692347,578,15654,,,0.927302926,14516,15654,,,0,0,14941,0,0.005741733,0.493995145,7733,15654,,,1,15766,15766,, -20,141,20141,KS,Osborne County,2024,1,9747.725448,52,8985,5954.163942,15054.57137,1,,,,2,,,,2,,,,2,,,,2,9228.951154,5469.661354,14585.72166,1,,,,2,,0.146,,,0.123,0.171,3.420870717,,,2.681061163,4.200486056,4.739038282,,,3.762374385,5.749102458,0.045454546,13,286,0.021313281,0.06959581,1,,,,,,,,,,,,,0.039855073,0.016776352,0.062933793,,,,,,,0.187,,,0.149,0.226,0.39,,,0.316,0.467,7.9,0.079133486,0.1,,,0.259,,,0.211,0.309,0.428285714,1499,3500,,,0.157822818,,,0.12573937,0.19318734,0.333333333,2,6,0.110000414,0.553214291,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.109898675,282,2566,0.093217824,0.126579526,0.000285878,1,3498,,,3498,0.000573066,2,3490,,,1745,0.001146132,4,3490,,,872.5,3133,,,,,,,,,3147,0.4,,,,,,,,,0.4,0.32,,,,,,,,,0.32,0.954274354,2400,2515,0.937040865,0.971507843,0.731443995,542,741,0.611572205,0.851315784,0.020483193,39,1904,,,0.183,146,,0.122234043,0.243765957,,,,,,,,,,,,,0.175516224,0.094222944,0.256809505,4.390923135,105167,23951,3.373210613,5.408635656,0.201897019,149,738,0.121767289,0.282026749,34.30531732,12,3498,,,143.3239695,25,17443,92.75171615,211.5744522,,,,,,,,,,,,,140.3037882,88.94056632,210.5245708,,,,5.8,,,,,1,,,,,0.056379822,95,1685,0.030405363,0.082354281,0.042656917,0.010016917,0.075296917,0.011275964,0,0.032511246,0.008308605,0,0.019696829,0.778512397,1413,1815,0.727408177,0.829616616,,,,,,,,,,,,,0.831191589,0.77799951,0.884383668,0.146,,1815,0.103605744,0.188394256,76.68547701,,,73.38972032,79.9812337,,,,,,,,,,,,,77.21884329,73.94778709,80.48989949,,,,424.9815824,52,8985,304.9741209,576.5355039,,,,,,,,,,,,,413.1758268,290.9139122,569.5084512,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.105,,,0.09,0.122,0.162,,,0.139,0.184,0.094,,,0.08,0.11,0,0,2945,,,0.1,350,,,,0.079133486,305.296987,3858,,,,,,,,,,,,,,,,,,,,,,,,,,0.323,,,0.304,0.341,0.1323043,240,1814,0.109666002,0.154942598,0.058080808,46,792,0.039016978,0.077144638,0.000859599,3,3490,,,1163.333333,,,,,,,,,,,3.429385293,,,,,,,,,3.431223681,3.356943959,,,,,,,,,3.43485278,,,,,,3501.612,,,,,0.753591724,39917,52969,0.628866095,0.878317352,53971,,,45873.6383,62068.3617,,,,,,,,,,,,,59038,50439.02128,67636.97872,,,,,,0.447833066,279,623,,,,,,,,0.253024773,,53971,,,5.076142132,1,197,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.705989111,1945,2755,,,0.579,,,,,1.822085223,,,,,0.758104738,1216,1604,0.745210759,0.770998718,0.057161629,87,1522,0.023853903,0.090469356,0.823566085,1321,1604,0.781058993,0.866073177,3490,,,,,0.232664756,812,3490,,,0.26017192,908,3490,,,0.00773639,27,3490,,,0.013467049,47,3490,,,0.010028653,35,3490,,,0,0,3490,,,0.028939828,101,3490,,,0.9252149,3229,3490,,,0.001522534,5,3284,0,0.017132076,0.49025788,1711,3490,,,1,3500,3500,, -20,143,20143,KS,Ottawa County,2024,1,9740.644409,102,15686,6268.865796,13212.42302,0,,,,2,,,,2,,,,2,,,,2,10182.27347,6819.228345,14623.44318,,,,,2,,0.149,,,0.126,0.177,3.490401625,,,2.757777062,4.312763323,4.597810053,,,3.656594876,5.607690353,0.08040201,32,398,0.053687513,0.107116507,0,,,,,,,,,,,,,0.082666667,0.054794596,0.110538738,,,,,,,0.183,,,0.146,0.227,0.399,,,0.324,0.477,7.9,0.09920969,0.091,,,0.261,,,0.215,0.314,0.023190933,133,5735,,,0.177375471,,,0.141879926,0.216952769,0,0,7,0,0.25576943,154.2,9,5838,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.093565976,429,4585,0.079268104,0.107863848,0.000342583,2,5838,,,2919,0.00069025,4,5795,,,1448.75,0.000172563,1,5795,,,5795,3622,,,,,,,,,3637,0.53,,,,,,,,,0.54,0.42,,,,,,,,,0.42,0.947772277,3829,4040,0.931151145,0.96439341,0.659038902,864,1311,0.566079035,0.751998768,0.025232404,76,3012,,,0.126,165,,0.077148936,0.174851064,,,,,,,,,,0.431034483,0.0307508,0.831318166,0.112054329,0.061050968,0.163057691,3.580485038,126230,35255,2.912827988,4.248142087,0.166666667,218,1308,0.09276519,0.240568143,11.99040767,7,5838,,,72.61661883,21,28919,44.95083158,111.0022156,,,,,,,,,,,,,77.50221435,47.97509221,118.4703673,,,,6.9,,,,,0,,,,,0.098562628,240,2435,0.062540808,0.134584449,0.081994232,0.046093953,0.11789451,0.004106776,0,0.019571817,0.011909651,0,0.028460718,0.810642709,2346,2894,0.781723284,0.839562135,,,,,,,,,,,,,0.764893617,0.704047499,0.825739735,0.295,,2894,0.228340456,0.361659544,75.37941508,,,72.7133239,78.04550626,,,,,,,,,,,,,75.02745964,72.23331437,77.82160492,,,,435.8535419,102,15686,344.6938896,527.0131943,,,,,,,,,,,,,438.2652294,348.5653431,544.0027081,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.106,,,0.091,0.125,0.162,,,0.139,0.187,0.098,,,0.083,0.116,,,,,,0.091,520,,,,0.09920969,604.2862197,6091,,,,,,,,,,,,,,,,,,,,,,,,,,0.322,,,0.304,0.339,0.111383109,364,3268,0.092319279,0.130446939,0.050969131,71,1393,0.03428828,0.067649982,0.000517688,3,5795,,,1931.666667,,,,,,,,,,,2.997529972,,,,,,,,,2.985900375,2.978448738,,,,,,,,,2.957455888,0.031296909,,,,,2119.41435,,,,,0.760990535,45266,59483,0.644994393,0.876986677,69542,,,60649.91489,78434.08511,,,,,,,,,,97404,84788.51064,110019.4894,74231,67320.3617,81141.6383,,,,,,0.400335008,239,597,,,,,,,,0.196370539,,69542,,,9.677419355,3,310,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,26.95153624,11,40814,13.45410978,48.22374311,,,,,,,,,,,,,28.71837715,14.3361104,51.38510956,,,,,,,,,,,0.717078652,3191,4450,,,0.652,,,,,2.190099716,,,,,0.777169335,1845,2374,0.749703663,0.804635006,0.103202847,232,2248,0.060612072,0.145793622,0.837826453,1989,2374,0.810226703,0.865426204,5795,,,,,0.228817947,1326,5795,,,0.208973253,1211,5795,,,0.014322692,83,5795,,,0.005867127,34,5795,,,0.004831752,28,5795,,,0,0,5795,,,0.034685073,201,5795,,,0.929767041,5388,5795,,,0.001830831,10,5462,0,0.01568926,0.474547023,2750,5795,,,1,5735,5735,, -20,145,20145,KS,Pawnee County,2024,1,7607.846543,125,17153,5439.702131,9775.990954,0,,,,2,,,,2,,,,2,,,,2,7292.385169,4940.374914,9644.395424,,,,,2,,0.154,,,0.129,0.181,3.331514121,,,2.620082368,4.122477752,4.788839507,,,3.857102456,5.840334121,0.087557604,38,434,0.060965,0.114150208,0,,,,,,,,,,,,,0.085399449,0.056648908,0.11414999,,,,,,,0.186,,,0.148,0.227,0.364,,,0.294,0.443,7.4,0.087295068,0.122,,,0.256,,,0.21,0.308,0.666879898,4170,6253,,,0.177015003,,,0.143143138,0.217752158,0.125,1,8,0.007330353,0.353459145,192.8,12,6225,,,30.34134008,24,791,19.4402691,45.14550897,,,,,,,,,,,,,28.38063439,16.53276539,45.44014494,,,,,,,0.098942598,393,3972,0.082261747,0.115623449,0.000963855,6,6225,,,1037.5,0.000161839,1,6179,,,6179,0.005664347,35,6179,,,176.5428571,2331,,,,,,,,,2436,0.35,,,,,,,,,0.36,0.31,,,,,,,,0.36,0.31,0.897106109,4464,4976,0.867744893,0.926467326,0.458144796,810,1768,0.352351903,0.563937689,0.024020695,65,2706,,,0.184,161,,0.11012766,0.25787234,,,,,,,,,,0.127118644,0,0.485794289,0.065340909,0.009695967,0.120985852,4.290649219,110171,25677,3.325575143,5.255723296,0.065241845,58,889,0.001823515,0.128660175,11.24497992,7,6225,,,124.0425466,40,32247,88.61781388,168.910742,,,,,,,,,,,,,133.5311573,93.52358093,184.8634069,,,,6.3,,,,,0,,,,,0.079754601,195,2445,0.0186228,0.140886402,0.079967024,0.019171037,0.140763011,0.001635992,0,0.014528214,0.001635992,0,0.009339528,0.714131219,1981,2774,0.654053245,0.774209192,,,,,,,,,,,,,0.764748201,0.718578705,0.810917698,0.129,,2774,0.074568363,0.183431637,77.36552054,,,75.31176875,79.41927234,,,,,,,,,,,,,77.71247653,75.53768862,79.88726443,,,,446.8484118,125,17153,364.2612337,529.4355899,,,,,,,,,,,,,429.7355653,342.0363041,517.4348265,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.104,,,0.089,0.121,0.156,,,0.134,0.18,0.101,,,0.086,0.119,232.3,13,5596,,,0.122,780,,,,0.087295068,608.7085101,6973,,,,,,,,,,,,,,,,,,,,,,,,,,0.352,,,0.334,0.369,0.114185751,359,3144,0.093930432,0.13444107,0.041142857,36,875,0.028036474,0.05424924,0.002913093,18,6179,,,343.2777778,0.856707317,70.25,82,,,,,,,,3.342244661,,,,,,,,,3.378713971,3.177447573,,,,,,,,,3.216180603,0.024317118,,,,,3393.904,,,,,0.72330366,36563,50550,0.449408362,0.997198958,47939,,,42122.14894,53755.85106,51500,48201.95745,54798.04255,,,,,,,,,,60647,47456.02128,73837.97872,,,,,,0.498015873,502,1008,,,1.672712616,,,,,0.284862012,,47939,,,19.3236715,4,207,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.503492647,2739,5440,,,0.595,,,,,13.15330877,,,,,0.616861436,1478,2396,0.549881597,0.683841275,0.084463895,193,2285,0.024154848,0.144772942,0.865191987,2073,2396,0.817899697,0.912484276,6179,,,,,0.143550736,887,6179,,,0.23935912,1479,6179,,,0.05874737,363,6179,,,0.011490532,71,6179,,,0.006797216,42,6179,,,0.000647354,4,6179,,,0.078167988,483,6179,,,0.826347305,5106,6179,,,0.002796513,17,6079,0,0.01575186,0.445379511,2752,6179,,,0.402846634,2519,6253,, -20,147,20147,KS,Phillips County,2024,1,7810.121241,84,13624,4950.946907,11719.0166,0,,,,2,,,,2,,,,2,,,,2,8278.533477,5188.112855,12533.79917,1,,,,2,,0.148,,,0.124,0.175,3.283747214,,,2.581850984,4.046550181,4.83782219,,,3.900069497,5.890194363,0.069518717,26,374,0.043742156,0.095295277,0,,,,,,,,,,,,,0.064516129,0.038440717,0.090591541,,,,,,,0.189,,,0.15,0.232,0.373,,,0.3,0.449,7.4,0.112727241,0.109,,,0.249,,,0.206,0.296,0.661714515,3296,4981,,,0.169745207,,,0.136053135,0.20792777,0.428571429,3,7,0.219826693,0.607881191,103.8,5,4815,,,9.649122807,11,1140,4.81680734,17.26494606,,,,,,,,,,,,,,,,,,,,,,0.095541401,345,3611,0.081243529,0.109839274,0.000207684,1,4815,,,4815,0.000415887,2,4809,,,2404.5,0.002079434,10,4809,,,480.9,3495,,,,,,,,,3434,0.49,,,,,,,,,0.48,0.38,,,,,,,,,0.38,0.910806175,3186,3498,0.882736004,0.938876346,0.771568628,787,1020,0.625897466,0.917239789,0.022213855,59,2656,,,0.134,139,,0.087531915,0.180468085,,,,,,,,,,0.351851852,0.133715076,0.569988627,0.329591837,0.214448083,0.44473559,3.673393264,98480,26809,2.968600564,4.378185963,0.15641953,173,1106,0.079778343,0.233060717,29.07580478,14,4815,,,69.45248293,18,25917,41.16194305,109.7648658,,,,,,,,,,,,,66.01477081,37.73314541,107.203852,,,,5.8,,,,,1,,,,,0.087318087,210,2405,0.050769074,0.123867101,0.045875421,0.015289113,0.076461729,0.03950104,0.010249652,0.068752427,0.016632017,0.000358275,0.032905759,0.823893805,1862,2260,0.77415652,0.87363109,,,,,,,,,,,,,0.86784551,0.830181845,0.905509174,0.184,,2260,0.134056836,0.233943164,76.95659441,,,74.50490366,79.40828515,,,,,,,,,,,,,76.55928194,73.95710213,79.16146176,,,,379.3930619,84,13624,294.0244118,481.8157775,,,,,,,,,,,,,390.0765148,299.7455043,499.0773122,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.105,,,0.089,0.121,0.163,,,0.141,0.187,0.098,,,0.083,0.114,0,0,4068,,,0.109,550,,,,0.112727241,636.0070927,5642,,,,,,,,,,,,,,,,,,,,,,,,,,0.32,,,0.303,0.338,0.115896633,296,2554,0.096832803,0.134960463,0.050179212,56,1116,0.03468985,0.065668573,0.001455604,7,4809,,,687,,,,,,,,,,,3.366302979,,,,,,,,,3.401575114,3.287308614,,,,,,,,,3.389427615,0.107984373,,,,,2994.9745,,,,,0.693428222,37416,53958,0.468358456,0.918497988,58834,,,50547.19149,67120.80851,,,,,,,,,,51544,34641.53192,68446.46809,58929,53049,64809,,,,,,0.408138101,331,811,,,,,,,,0.232110684,,58834,,,3.460207613,1,289,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.681617647,2781,4080,,,0.607,,,,,16.42955305,,,,,0.726152442,1591,2191,0.675882911,0.776421972,0.07954001,166,2087,0.045747392,0.113332627,0.863076221,1891,2191,0.830279115,0.895873327,4809,,,,,0.220212102,1059,4809,,,0.254730713,1225,4809,,,0.004366812,21,4809,,,0.009981285,48,4809,,,0.012892493,62,4809,,,0,0,4809,,,0.037013932,178,4809,,,0.923476814,4441,4809,,,0.001072961,5,4660,0,0.012156223,0.494281555,2377,4809,,,1,4981,4981,, -20,149,20149,KS,Pottawatomie County,2024,1,6437.0724,259,70397,5264.078799,7610.066002,0,,,,2,,,,2,,,,2,,,,2,6336.163811,5094.194327,7578.133296,,,,,2,,0.123,,,0.103,0.145,2.962691493,,,2.325034052,3.679077448,4.707594706,,,3.896832934,5.549302234,0.049416342,127,2570,0.041036806,0.057795879,0,,,,,,,,,,,,,0.047783039,0.039108702,0.056457377,,,,,,,0.148,,,0.114,0.184,0.367,,,0.311,0.426,9.1,0.020006427,0.073,,,0.221,,,0.18,0.264,0.457590342,11599,25348,,,0.1977512,,,0.163354745,0.234153044,0.217391304,5,23,0.111350026,0.338101853,166.7,43,25790,,,10.54365733,64,6070,8.119900914,13.46401503,,,,,,,,,,,,,11.35458167,8.599849276,14.71117757,,,,,,,0.08332572,1824,21890,0.071410826,0.095240613,0.00073672,19,25790,,,1357.368421,0.000228371,6,26273,,,4378.833333,0.000380619,10,26273,,,2627.3,2040,,,,,,,,,2018,0.49,,,,,,,,,0.49,0.39,,,,,,,,,0.39,0.960416667,15674,16320,0.946617149,0.974216185,0.791709999,5329,6731,0.713586155,0.869833842,0.024203211,303,12519,,,0.082,608,,0.051021277,0.112978723,,,,,,,,,,0.295955882,0.135109538,0.456802226,0.091346926,0.04321104,0.139482811,3.76129833,139405,37063,2.881512184,4.641084476,0.124932028,919,7356,0.067584353,0.182279703,10.4691741,27,25790,,,61.74845629,76,123080,48.65076038,77.28740085,,,,,,,,,,,,,65.22270837,51.03275239,82.13720688,,,,8.2,,,,,0,,,,,0.095104108,845,8885,0.065711977,0.124496239,0.059574468,0.039407126,0.07974181,0.031963984,0.011095333,0.052832636,0.005064716,0.000260414,0.009869018,0.799692706,9889,12366,0.754787073,0.844598339,,,,,,,,,,0.66611977,0.53637035,0.795869191,0.793685121,0.744895936,0.842474306,0.332,,12366,0.276907305,0.387092695,79.3518742,,,78.16591999,80.53782842,,,,,,,,,,,,,79.50402366,78.2699109,80.73813642,,,,313.2164087,259,70397,273.9841474,352.4486701,,,,,,,,,,,,,304.1604299,263.8316219,344.4892379,,,,64.18279259,20,31161,39.20451714,99.12511762,,,,,,,,,,,,,67.35518635,39.91895218,106.450233,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.09,,,0.077,0.105,0.149,,,0.128,0.171,0.087,,,0.074,0.101,39,8,20527,,,0.073,1820,,,,0.020006427,432.2188446,21604,,,,,,,,,,,,,,,,,,,,,,,,,,0.312,,,0.294,0.329,0.105208333,1515,14400,0.088527482,0.121889184,0.043383948,340,7837,0.030277565,0.056490331,0.000685114,18,26273,,,1459.611111,0.951209677,294.875,310,,,,,,,,3.378985467,,,,,,,,,3.421043452,3.394205344,,,,,,,,,3.425572181,0.055392172,,,,,4023.5465,,,,,0.701129052,47071,67136,0.589219816,0.813038287,85822,,,77470.85106,94173.14894,61250,32867.53192,89632.46809,87153,59496.14894,114809.8511,,,,55509,35875.6383,75142.3617,85912,79904.51064,91919.48936,,,,,,0.283699809,1187,4184,,,55.34682382,,,,,0.192188483,,85822,,,4.179728318,8,1914,,,,,,,,,,,,,,,,,,,,,,,,,,11.95490314,15,123080,6.535856791,20.05829609,12.18719532,,,,,,,,,,,,,12.12517415,6.45614457,20.73441707,,,,11.37471563,14,123080,6.218662883,19.08484004,,,,,,,,,,,,,11.77632235,6.270395676,20.13786986,,,,16.46681056,28,170039,10.94207603,23.79912605,,,,,,,,,,,,,17.05488393,11.14081641,24.9893565,,,,,,,,,,,0.777130977,13083,16835,,,0.735,,,,,15.2540237,,,,,0.797106251,7217,9054,0.770544734,0.823667768,0.074579354,656,8796,0.046569492,0.102589217,0.908990501,8230,9054,0.886436443,0.93154456,26273,,,,,0.28717695,7545,26273,,,0.155749248,4092,26273,,,0.013207475,347,26273,,,0.009629658,253,26273,,,0.009858029,259,26273,,,0.001446352,38,26273,,,0.057663761,1515,26273,,,0.890381761,23393,26273,,,0.001569526,37,23574,0,0.005968175,0.494538119,12993,26273,,,0.655396876,16613,25348,, -20,151,20151,KS,Pratt County,2024,1,8660.01697,162,24778,6459.684462,10860.34948,0,,,,2,,,,2,,,,2,,,,2,8383.05826,6128.518683,10637.59784,,,,,2,,0.142,,,0.118,0.17,3.105188507,,,2.40803363,3.869946976,4.822582207,,,3.917202017,5.785647461,0.072445019,56,773,0.054170733,0.090719306,0,,,,,,,,,,,,,0.076233184,0.056123918,0.09634245,,,,,,,0.17,,,0.133,0.213,0.394,,,0.326,0.464,8,0.096935013,0.09,,,0.261,,,0.213,0.314,0.82625314,7566,9157,,,0.175864969,,,0.143578788,0.21171206,0.153846154,2,13,0.034991468,0.324991408,305,28,9181,,,22.04869086,48,2177,16.25696409,29.23336527,,,,,,,,,,,,,22.84408909,16.32015217,31.1071656,,,,,,,0.119352089,840,7038,0.102671238,0.13603294,0.000871365,8,9181,,,1147.625,0.00077203,7,9067,,,1295.285714,0.000882321,8,9067,,,1133.375,1752,,,,,,,,,1783,0.48,,,,,,,,,0.48,0.44,,,,,,,,,0.44,0.919398907,5384,5856,0.899470501,0.939327313,0.682772084,1399,2049,0.582756767,0.782787401,0.02141546,105,4903,,,0.127,269,,0.076957447,0.177042553,,,,,,,0.706521739,0.235958778,1,0.042654028,0,0.214408325,0.096219931,0.036785311,0.155654552,3.950140449,112500,28480,3.266288795,4.633992104,0.260642919,600,2302,0.161337396,0.359948442,15.24888356,14,9181,,,96.98902946,45,46397,70.74446363,129.7789523,,,,,,,,,,,,,98.10654371,70.08875317,133.5932674,,,,6.8,,,,,1,,,,,0.120481928,450,3735,0.075560163,0.165403693,0.082384824,0.043205788,0.12156386,0.027844712,0.001457479,0.054231945,0.012048193,0.001688355,0.022408031,0.829904306,3469,4180,0.805321982,0.85448663,,,,,,,,,,,,,0.861966236,0.841886453,0.88204602,0.108,,4180,0.067823657,0.148176343,76.52124316,,,74.70812318,78.33436314,,,,,,,,,,,,,76.42318757,74.55705166,78.28932347,,,,468.2524749,162,24778,390.5707792,545.9341705,,,,,,,,,,,,,474.9484275,392.3915044,557.5053506,,,,117.8666143,12,10181,60.90339956,205.889255,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.099,,,0.083,0.116,0.154,,,0.131,0.179,0.098,,,0.083,0.115,,,,,,0.09,840,,,,0.096935013,936.0044849,9656,,,,,,,,,,,,,,,,,,,,,,,,,,0.319,,,0.301,0.337,0.145747316,706,4844,0.123109018,0.168385614,0.063636364,147,2310,0.044572534,0.082700193,0.002426381,22,9067,,,412.1363636,0.958474576,113.1,118,,,,,,,,3.251217653,,,,,,,,,3.287147584,3.214536695,,,,,,,,,3.218248662,0.01279495,,,,,362.6202,,,,,0.840242189,42465,50539,0.57359746,1.106886919,65812,,,57751.57447,73872.42553,91902,85462,98342,,,,89297,72694.78723,105899.2128,63824,10504.85106,117143.1489,60951,56592.53192,65309.46809,,,,,,0.421020283,685,1627,,,,,,,,0.207500152,,65812,,,3.115264798,2,642,,,,,,,,,,,,,,,,,,,,,,,,,,27.08920894,11,46397,12.99032863,49.81801973,23.70842942,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.603061225,4137,6860,,,0.642,,,,,58.45764291,,,,,0.7,2506,3580,0.6571339,0.7428661,0.076497964,263,3438,0.040570743,0.112425185,0.834078212,2986,3580,0.793430847,0.874725577,9067,,,,,0.236682475,2146,9067,,,0.215837653,1957,9067,,,0.01742583,158,9067,,,0.014006838,127,9067,,,0.009264365,84,9067,,,0.00055145,5,9067,,,0.081945517,743,9067,,,0.864122643,7835,9067,,,0.003151261,27,8568,0,0.012665582,0.493437741,4474,9067,,,0.280441193,2568,9157,, -20,153,20153,KS,Rawlins County,2024,1,7744.031352,40,6572,4001.454004,13527.26432,1,,,,2,,,,2,,,,2,,,,2,7679.77109,3682.748747,14123.37247,1,,,,2,,0.158,,,0.133,0.184,3.511069579,,,2.800225279,4.39689816,5.168838462,,,4.175828103,6.34649298,0.066037736,14,212,0.032606772,0.099468699,1,,,,,,,,,,,,,0.058823529,0.025098966,0.092548093,,,,,,,0.192,,,0.151,0.233,0.392,,,0.315,0.475,7.1,0.137345546,0.11,,,0.27,,,0.221,0.32,0.579070676,1483,2561,,,0.154991815,,,0.123547154,0.192194828,0.333333333,1,3,0.04092282,0.635504717,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.118093174,218,1846,0.100220834,0.135965515,0.000392311,1,2549,,,2549,0.000791139,2,2528,,,1264,,0,2528,,,,3542,,,,,,,,,3578,0.47,,,,,,,,,0.48,0.36,,,,,,,,,0.37,0.946601942,1755,1854,0.913457555,0.979746328,0.83424408,458,549,0.673236181,0.995251979,0.018312623,28,1529,,,0.127,74,,0.076957447,0.177042553,,,,,,,,,,0.111111111,0,0.342079036,0.09010989,0.0111425,0.16907728,4.081344728,101250,24808,2.946607771,5.216081684,0.076256499,44,577,0.009266928,0.14324607,23.53864261,6,2549,,,158.7931719,20,12595,96.99499472,245.2431751,,,,,,,,,,,,,169.2047377,101.8723053,264.2341577,,,,5.2,,,,,0,,,,,0.102564103,120,1170,0.053517669,0.151610536,0.081034483,0.02236365,0.139705315,0.021367521,0,0.052486469,0.003418803,0,0.015023996,0.707882535,916,1294,0.637779433,0.777985637,,,,,,,,,,,,,0.721311475,0.651207902,0.791415049,0.143,,1294,0.068277371,0.217722629,77.95837529,,,74.22636935,81.69038124,,,,,,,,,,,,,78.17049703,74.1796395,82.16135456,,,,378.0738554,40,6572,256.8828418,536.6456589,,,,,,,,,,,,,375.2827555,247.3137006,546.0167061,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.11,,,0.094,0.127,0.167,,,0.145,0.191,0.106,,,0.091,0.123,0,0,2138,,,0.11,280,,,,0.137345546,345.9734291,2519,,,,,,,,,,,,,,,,,,,,,,,,,,0.321,,,0.304,0.337,0.139734582,179,1281,0.115904795,0.16356437,0.068259386,40,586,0.044429598,0.092089173,0.00039557,1,2528,,,2528,,,,,,,,,,,3.639497107,,,,,,,,,3.738102588,3.755984734,,,,,,,,,3.66873169,0.026657543,,,,,2043.452,,,,,0.795911968,40613,51027,0.657940222,0.933883715,59116,,,50793.44681,67438.55319,,,,,,,,,,85625,21956.57447,149293.4255,61250,48632.12766,73867.87234,,,,,,0.53021978,193,364,,,,,,,,0.231003451,,59116,,,6.172839506,1,162,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.783333333,1504,1920,,,0.55,,,,,0.006346217,,,,,0.689270386,803,1165,0.631067476,0.747473297,0.104506232,109,1043,0.043182094,0.165830371,0.836051502,974,1165,0.788225331,0.883877673,2528,,,,,0.232990506,589,2528,,,0.279667722,707,2528,,,0.005933544,15,2528,,,0.009889241,25,2528,,,0.006329114,16,2528,,,0.00039557,1,2528,,,0.082674051,209,2528,,,0.880933544,2227,2528,,,0.011809363,28,2371,0,0.034277299,0.486946203,1231,2528,,,1,2561,2561,, -20,155,20155,KS,Reno County,2024,1,8854.866835,1032,168164,8000.755018,9708.978653,0,,,,2,,,,2,12601.86861,5762.376786,23922.27204,1,5454.17237,3777.17292,7621.659201,,9197.456752,8220.145119,10174.76839,,,,,2,,0.158,,,0.134,0.184,3.487404301,,,2.858428953,4.200883442,5.064251103,,,4.319451146,5.868691208,0.073160079,335,4579,0.065617668,0.08070249,0,,,,,,,,,,0.06996587,0.049312077,0.090619664,0.072545847,0.064196765,0.080894929,,,,,,,0.19,,,0.154,0.225,0.419,,,0.371,0.467,7.8,0.090126062,0.1,,,0.274,,,0.235,0.315,0.700281108,43346,61898,,,0.159040811,,,0.133629242,0.186669973,0.325581395,14,43,0.245954344,0.405547825,468.9,288,61414,,,20.61052483,291,14119,18.24243251,22.97861714,,,,,,,,,,30.64066852,23.69749082,38.9824431,18.53058944,15.95593607,21.10524281,,,,28.33333333,16.50521078,45.36441136,0.114948432,5372,46734,0.100650559,0.129246304,0.000586186,36,61414,,,1705.944444,0.000585214,36,61516,,,1708.777778,0.002162039,133,61516,,,462.5263158,1918,,,,,,,795,1167,1924,0.48,,,,,,,0.36,0.44,0.49,0.27,,,,,,0.36,0.23,0.22,0.27,0.916899196,39103,42647,0.904546835,0.929251557,0.625033431,9348,14956,0.576112734,0.673954129,0.028256705,826,29232,,,0.19,2509,,0.141148936,0.238851064,,,,,,,0.905660377,0.029554811,1,0.142927794,0.059560627,0.226294962,0.131800391,0.091522122,0.172078661,4.016855443,104619,26045,3.736762987,4.296947898,0.199563636,2744,13750,0.157193467,0.241933806,14.49180969,89,61414,,,105.4644791,327,310057,94.03336903,116.8955892,,,,,,,,,,42.90712258,22.8462357,73.37248636,112.4330985,99.53698561,125.3292113,,,,7.3,,,,,1,,,,,0.12494994,3120,24970,0.105469617,0.144430263,0.091089109,0.075498713,0.106679505,0.023628354,0.014387566,0.032869142,0.019623548,0.010763345,0.028483752,0.821902539,23596,28709,0.804288226,0.839516853,,,,,,,,,,0.811403509,0.739630505,0.883176513,0.822506548,0.800021829,0.844991266,0.188,,28709,0.163178099,0.212821901,76.45319217,,,75.74657321,77.15981112,,,,,,,73.10242384,66.96433544,79.24051224,78.4225364,76.0230675,80.82200529,76.41651672,75.63280991,77.20022352,,,,445.8606494,1032,168164,417.0204145,474.7008842,,,,,,,540.4482519,349.7496129,797.8082329,336.0511807,245.1180372,449.6629196,451.9861647,420.4068713,483.5654582,,,,53.75643448,33,61388,37.00345601,75.49402044,,,,,,,,,,,,,57.43214498,37.84814544,83.56075565,,,,4.763967085,22,4618,2.985552809,7.212703419,,,,,,,,,,,,,,,,,,,,,,0.11,,,0.095,0.126,0.162,,,0.141,0.183,0.11,,,0.096,0.125,91.8,48,52260,,,0.1,6210,,,,0.090126062,5814.122403,64511,,,26.45716908,49,185205,19.57315934,34.97778062,,,,,,,,,,,,,27.80867631,20.12527693,37.45810449,,,,0.359,,,0.343,0.373,0.143216005,4789,33439,0.122960686,0.163471324,0.046882793,658,14035,0.03377641,0.059989176,0.001511802,93,61516,,,661.4623656,0.876771117,643.55,734,,,0.080357143,261,3248,0.040182519,0.120531767,2.941307222,,,,,,,,2.587393479,3.004226701,2.904393298,,,,,,,,2.695449307,2.977458306,0.069861406,,,,,2346.942983,,,,,0.755200644,39389,52157,0.675056491,0.835344797,57663,,,53513.04255,61812.95745,,,,,,,37790,32912.04255,42667.95745,64784,49283.91489,80284.08511,57110,54312.38298,59907.61702,,,,,,0.505794518,4539,8974,,,49.01161587,,,,,0.236824307,,57663,,,6.203840473,21,3385,,,2.746026842,12,436995,1.418912141,4.796756267,,,,,,,,,,,,,,,,,,,20.59249573,62,310057,15.63674536,26.62057597,19.99632326,,,,,,,,,,,,,23.1620763,17.29854644,30.3739815,,,,14.19093909,44,310057,10.31115806,19.05067335,,,,,,,,,,,,,14.24665974,10.03096322,19.63714379,,,,14.87431206,65,436995,11.47968003,18.95853175,,,,,,,,,,,,,15.80639887,12.00246135,20.43343592,,,,,,,,,,,0.588107767,27941,47510,,,0.69,,,,,33.6929642,,,,,0.703184005,17690,25157,0.681686368,0.724681641,0.099113651,2393,24144,0.081155111,0.117072192,0.834399968,20991,25157,0.813349331,0.855450606,61516,,,,,0.218772352,13458,61516,,,0.206807985,12722,61516,,,0.030203524,1858,61516,,,0.008729436,537,61516,,,0.005998439,369,61516,,,0.001072892,66,61516,,,0.102997594,6336,61516,,,0.829962937,51056,61516,,,0.004940171,289,58500,0.002280387,0.007599955,0.492879901,30320,61516,,,0.313790429,19423,61898,, -20,157,20157,KS,Republic County,2024,1,12161.4827,88,11967,8144.735832,17465.91779,0,,,,2,,,,2,,,,2,,,,2,10508.93939,6733.275758,15636.4688,1,,,,2,,0.143,,,0.119,0.168,3.343037802,,,2.600638397,4.148370551,4.883432138,,,3.835096397,5.950321686,0.049707602,17,342,0.026672876,0.072742329,1,,,,,,,,,,,,,0.052147239,0.028013014,0.076281465,,,,,,,0.182,,,0.144,0.225,0.385,,,0.307,0.468,8.1,0.06191129,0.098,,,0.245,,,0.198,0.296,0.496362858,2320,4674,,,0.163515568,,,0.13051744,0.202978106,0,0,13,0,0.165938541,85.8,4,4662,,,11.77856302,10,849,5.648278794,21.66119675,,,,,,,,,,,,,,,,,,,,,,0.0998228,338,3386,0.084333438,0.115312162,0.000858001,4,4662,,,1165.5,0.000215424,1,4642,,,4642,0.000646273,3,4642,,,1547.333333,2411,,,,,,,,,2421,0.37,,,,,,,,,0.37,0.4,,,,,,,,,0.4,0.953580097,3143,3296,0.933434199,0.973725995,0.709497207,635,895,0.591235753,0.82775866,0.020981956,50,2383,,,0.123,122,,0.074148936,0.171851064,,,,,,,,,,0.291139241,0,0.711957089,0.127192983,0.079566851,0.174819115,3.881655655,99875,25730,3.079731172,4.683580138,0.179580675,197,1097,0.097780175,0.261381174,30.03003003,14,4662,,,112.1221269,26,23189,73.24189579,164.2848941,,,,,,,,,,,,,109.1703057,69.94747478,162.4367613,,,,6.6,,,,,1,,,,,0.085057471,185,2175,0.060250947,0.109863996,0.071495327,0.040769142,0.102221512,0.006436782,0,0.018957753,0.013333333,0,0.030504244,0.81209603,1759,2166,0.751711299,0.872480761,,,,,,,,,,,,,0.8,0.734366878,0.865633122,0.257,,2166,0.193783657,0.320216343,74.30945045,,,71.00916752,77.60973339,,,,,,,,,,,,,75.39094015,72.16204282,78.61983748,,,,481.7041503,88,11967,373.3141,611.7472432,,,,,,,,,,,,,438.7750282,335.6281295,563.6248798,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.103,,,0.088,0.12,0.162,,,0.138,0.187,0.097,,,0.082,0.114,,,,,,0.098,460,,,,0.06191129,308.3182249,4980,,,,,,,,,,,,,,,,,,,,,,,,,,0.306,,,0.287,0.323,0.119384359,287,2404,0.09912904,0.139639679,0.054054054,56,1036,0.036181714,0.071926395,0.001292546,6,4642,,,773.6666667,,,,,,,,,,,3.077888923,,,,,,,,,3.126692844,2.929072095,,,,,,,,,3.0045512,0.073431882,,,,,958.627,,,,,0.814470382,38623,47421,0.741540287,0.887400478,53974,,,46222.17021,61725.82979,,,,,,,,,,,,,53839,47147.59575,60530.40426,,,,,,0.50990753,386,757,,,,,,,,0.253010709,,53974,,,11.02941177,3,272,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,33.72888112,11,32613,16.83733593,60.3502852,,,,,,,,,,,,,35.42673108,17.68489651,63.38820777,,,,,,,,,,,0.738055556,2657,3600,,,0.592,,,,,8.234341202,,,,,0.724001971,1469,2029,0.689849402,0.758154541,0.064361702,121,1880,0.03194646,0.096776944,0.754558896,1531,2029,0.708408504,0.800709288,4642,,,,,0.216070659,1003,4642,,,0.274019819,1272,4642,,,0.00689358,32,4642,,,0.003231366,15,4642,,,0.007324429,34,4642,,,0.000215424,1,4642,,,0.026281775,122,4642,,,0.942912538,4377,4642,,,0.000453927,2,4406,0,0.012025431,0.504093063,2340,4642,,,1,4674,4674,, -20,159,20159,KS,Rice County,2024,1,8350.19819,151,25764,6097.48536,10602.91102,0,,,,2,,,,2,,,,2,,,,2,7903.813363,5533.140182,10274.48654,,,,,2,,0.148,,,0.125,0.174,3.368682421,,,2.691411387,4.145136398,5.111834711,,,4.21624877,6.090794314,0.058823529,44,748,0.041961248,0.075685811,0,,,,,,,,,,,,,0.059602649,0.040721602,0.078483696,,,,,,,0.18,,,0.145,0.215,0.39,,,0.321,0.461,8,0.090556042,0.09,,,0.258,,,0.214,0.302,0.681977299,6429,9427,,,0.181623067,,,0.148402932,0.218166015,0.142857143,1,7,0.008995928,0.386311364,394,37,9390,,,19.89225031,48,2413,14.66697506,26.37423795,,,,,,,,,,33.49282297,18.31083798,56.19526584,17.91530945,12.33207469,25.1597553,,,,,,,0.105750071,743,7026,0.09026071,0.121239433,0.000532481,5,9390,,,1878,0.000318911,3,9407,,,3135.666667,0.000637823,6,9407,,,1567.833333,3566,,,,,,,,,3656,0.37,,,,,,,,0.27,0.38,0.18,,,,,,,,0.22,0.18,0.920274465,5633,6121,0.891493399,0.949055531,0.689248895,1404,2037,0.59241213,0.786085661,0.023055295,123,5335,,,0.144,306,,0.083234043,0.204765957,,,,,,,,,,0.107317073,0,0.222423483,0.121405751,0.066848919,0.175962583,3.716541327,104275,28057,2.749684662,4.683397991,0.141219624,308,2181,0.080879168,0.20156008,19.16932907,18,9390,,,98.98904802,47,47480,72.73342916,131.6344489,,,,,,,,,,,,,106.5827539,76.81547412,144.0689204,,,,6.7,,,,,1,,,,,0.074873096,295,3940,0.046353926,0.103392267,0.067948718,0.036883309,0.099014127,0.002538071,0,0.011191653,0.013959391,0,0.029201613,0.786490863,3400,4323,0.744030127,0.828951599,,,,,,,,,,,,,0.778347578,0.72506747,0.831627686,0.297,,4323,0.234722594,0.359277406,75.87262302,,,74.09510938,77.65013665,,,,,,,,,,,,,76.07600626,74.22507779,77.92693473,,,,433.999661,151,25764,359.4088694,508.5904525,,,,,,,,,,,,,435.1059465,354.9392961,515.2725968,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.104,,,0.09,0.12,0.163,,,0.141,0.186,0.097,,,0.084,0.113,63.4,5,7880,,,0.09,850,,,,0.090556042,913.0765706,10083,,,,,,,,,,,,,,,,,,,,,,,,,,0.339,,,0.324,0.354,0.130974171,644,4917,0.109527363,0.15242098,0.048007246,106,2208,0.031326395,0.064688097,0.000531519,5,9407,,,1881.4,,,,,,,,,,,3.258153518,,,,,,,,3.227455198,3.302181909,3.311238934,,,,,,,,3.050908651,3.488173214,0.185110355,,,,,24.94925,,,,,0.687818402,39694,57710,0.574518532,0.801118273,61727,,,53159,70295,,,,,,,,,,53458,37538.51064,69377.48936,60479,54942.14894,66015.85106,,,,,,0.520547945,798,1533,,,,,,,,0.2212322,,61727,,,8.695652174,5,575,,,,,,,,,,,,,,,,,,,,,,,,,,47.06968862,21,47480,28.33902735,73.5051494,44.22914912,,,,,,,,,,,,,44.86827492,25.11243287,74.00339613,,,,25.2737995,12,47480,13.059341,44.14824147,,,,,,,,,,,,,27.91453078,13.93483319,49.94680636,,,,25.26453454,17,67288,14.7175224,40.45096721,,,,,,,,,,,,,28.57806277,16.33483211,46.40898351,,,,,,,,,,,0.604901961,4319,7140,,,0.636,,,,,24.70455943,,,,,0.756577199,2847,3763,0.726850147,0.786304251,0.054616024,197,3607,0.02955092,0.079681129,0.824608026,3103,3763,0.779095407,0.870120644,9407,,,,,0.229616243,2160,9407,,,0.205272669,1931,9407,,,0.015945572,150,9407,,,0.015201446,143,9407,,,0.011055597,104,9407,,,0.001063038,10,9407,,,0.122461996,1152,9407,,,0.821090677,7724,9407,,,0.012755958,114,8937,0,0.028326958,0.493356012,4641,9407,,,1,9427,9427,, -20,161,20161,KS,Riley County,2024,1,5329.357952,492,210650,4670.147826,5988.568077,0,,,,2,,,,2,13553.7354,9543.080532,18682.03886,,5652.687679,3542.509274,8558.237078,1,4790.550155,4106.693673,5474.406637,,,,,2,,0.147,,,0.126,0.171,3.356845359,,,2.7177105,4.043903376,4.895258429,,,4.158290954,5.656351503,0.068045246,385,5658,0.061483477,0.074607014,0,,,,0.072327044,0.043856857,0.100797231,0.107692308,0.07920837,0.136176246,0.056574924,0.038868417,0.07428143,0.062674448,0.055107107,0.07024179,,,,0.106995885,0.068130479,0.14586129,0.16,,,0.127,0.193,0.326,,,0.282,0.374,5.9,0.248941444,0.112,,,0.225,,,0.189,0.265,0.885115135,63692,71959,,,0.245310058,,,0.212091649,0.281677671,0.28,7,25,0.173955028,0.39080618,673.1,486,72208,,,7.879029049,198,25130,6.781550153,8.976507945,,,,,,,13.62229102,8.537017258,20.62431231,22.86336418,16.47790187,30.90462644,6.039644848,4.945248735,7.134040961,,,,13.47708895,7.543024378,22.22840869,0.101163176,5801,57343,0.085673814,0.116652538,0.000692444,50,72208,,,1444.16,0.000618777,44,71108,,,1616.090909,0.003136075,223,71108,,,318.8699552,1581,,,,,,1997,2755,,1520,0.52,,,,,,0.39,0.38,0.17,0.53,0.59,,,,,,0.52,0.46,0.29,0.6,0.958322879,34376,35871,0.94930714,0.967338619,0.80254329,14831,18480,0.740133561,0.864953019,0.0268342,929,34620,,,0.154,1693,,0.112297872,0.195702128,0.21969697,0,0.600662485,0.220183486,0,0.473197635,0.452330509,0.277332696,0.627328321,0.392729865,0.283132263,0.502327466,0.115872799,0.076603801,0.155141798,5.328430485,117737,22096,4.730702403,5.926158567,0.286651505,3277,11432,0.224600141,0.348702868,11.49457124,83,72208,,,42.1749198,155,367517,35.53528049,48.81455911,,,,,,,51.51320026,26.61762227,89.98319403,44.72557664,24.45188894,75.04191784,43.39783722,35.69688831,51.09878614,,,,8.1,,,,,1,,,,,0.192150298,5165,26880,0.165662427,0.218638168,0.169248206,0.143368869,0.195127542,0.024925595,0.011723984,0.038127207,0.006324405,0.002501908,0.010146901,0.64679724,26617,41152,0.625230681,0.668363798,,,,0.400234055,0.262288118,0.538179992,0.59922179,0.449052736,0.749390844,0.630823117,0.539448468,0.722197767,0.718738919,0.69848605,0.738991788,0.126,,41152,0.101436818,0.150563183,80.07301158,,,79.33596215,80.81006102,,,,95.8526575,75.90367599,115.801639,71.49661348,67.81857183,75.17465514,78.52118409,74.25368323,82.78868495,80.51008952,79.74033487,81.27984418,,,,286.0315378,492,210650,259.8473973,312.2156784,,,,,,,621.830755,460.0338158,822.0932354,339.563194,207.4140205,524.427813,272.4938181,244.391768,300.5958682,,,,43.99909163,31,70456,29.89524807,62.45319846,,,,,,,,,,,,,27.86679671,15.23503708,46.75574976,,,,5.180481283,31,5984,3.519885692,7.353279663,,,,,,,,,,,,,,,,,,,,,,0.101,,,0.087,0.117,0.153,,,0.133,0.177,0.104,,,0.089,0.121,93.1,59,63379,,,0.112,8160,,,,0.248941444,17703.47079,71115,,,9.105726592,20,219642,5.562014362,14.0630562,,,,,,,,,,,,,8.936284293,5.001570482,14.73904195,,,,0.312,,,0.297,0.327,0.115746646,5263,45470,0.096682816,0.134810476,0.051086695,637,12469,0.034405844,0.067767546,0.001335996,95,71108,,,748.5052632,0.868523275,541.09,623,,,0.020644441,148,7169,0.006515227,0.034773656,3.372345751,,,,,,,2.937509576,2.77340824,3.507406453,3.180996807,,,,,,4.016127279,2.615132701,2.433488981,3.393551204,0.037036774,,,,,3222.291333,,,,,1.025086959,43027,41974,0.904580793,1.145593125,55876,,,50227.14894,61524.85106,,,,23242,16890.17021,29593.82979,35688,20974.29787,50401.70213,58522,43409.14894,73634.85106,58459,54877.38298,62040.61702,,,,,,0.361824505,2705,7476,,,30.85704651,,,,,0.276880951,,55876,,,5.430566331,21,3867,,,2.325099253,12,516107,1.201412713,4.061480478,,,,,,,,,,,,,,,,,,,11.80662822,41,367517,8.127139612,16.58089568,11.15594653,,,,,,,,,,,,,14.02599858,9.46328234,20.0229851,,,,8.43498396,31,367517,5.731162362,11.97278643,,,,,,,,,,,,,8.537279454,5.469996035,12.7027951,,,,6.200264674,32,516107,4.240976447,8.752923731,,,,,,,,,,,,,5.311252014,3.287748708,8.118812893,,,,,,,,,,,0.429795953,25171,58565,,,0.605,,,,,70.08350211,,,,,0.440463292,11789,26765,0.419605345,0.461321239,0.195712812,5122,26171,0.165551492,0.225874132,0.904427424,24207,26765,0.881948277,0.926906571,71108,,,,,0.157113124,11172,71108,,,0.106556224,7577,71108,,,0.064029364,4553,71108,,,0.008100354,576,71108,,,0.047209878,3357,71108,,,0.003262643,232,71108,,,0.086586601,6157,71108,,,0.762375541,54211,71108,,,0.010890352,746,68501,0.006353818,0.015426886,0.468147044,33289,71108,,,0.098486638,7087,71959,, -20,163,20163,KS,Rooks County,2024,1,9659.232239,78,13021,6365.49491,14053.67578,0,,,,2,,,,2,,,,2,,,,2,10227.87893,6681.190087,14986.21238,,,,,2,,0.141,,,0.115,0.17,3.192357071,,,2.493580359,3.990797217,4.655281313,,,3.690996147,5.698827829,0.065445026,25,382,0.040644258,0.090245795,0,,,,,,,,,,,,,0.065340909,0.039524018,0.0911578,,,,,,,0.183,,,0.142,0.229,0.362,,,0.289,0.445,8.7,0.037824303,0.082,,,0.239,,,0.192,0.295,0.407399878,2004,4919,,,0.174057752,,,0.140584375,0.213118173,0.166666667,1,6,0.011498194,0.426636125,165.6,8,4831,,,15.7480315,16,1016,9.001360683,25.57381653,,,,,,,,,,,,,13.62683438,7.255715399,23.3023018,,,,,,,0.144329897,532,3686,0.122883088,0.165776705,0.001034982,5,4831,,,966.2,0.000415541,2,4813,,,2406.5,0.000207771,1,4813,,,4813,3580,,,,,,,,,3325,0.54,,,,,,,,,0.54,0.49,,,,,,,,,0.49,0.925780152,3293,3557,0.89865662,0.952903684,0.705186533,775,1099,0.579100948,0.831272119,0.026162791,63,2408,,,0.123,124,,0.076531915,0.169468085,,,,,,,,,,0.025641026,0,0.509406408,0.026427061,0.003237075,0.049617048,3.055857913,115105,37667,2.563633628,3.548082198,0.134486071,140,1041,0.059696222,0.209275921,14.48975367,7,4831,,,125.8423317,31,24634,85.50375895,178.6231449,,,,,,,,,,,,,133.8283543,90.92987385,189.9586665,,,,5.8,,,,,1,,,,,0.055427252,120,2165,0.034148957,0.076705547,0.051508121,0.025885806,0.077130436,0.001847575,0,0.012687578,0.006928407,0,0.016719685,0.84411277,2036,2412,0.808697159,0.87952838,,,,,,,,,,,,,0.842843327,0.803408144,0.882278509,0.188,,2412,0.133829804,0.242170196,76.1576612,,,73.35849366,78.95682875,,,,,,,,,,,,,75.70738666,72.75654623,78.65822708,,,,419.7933588,78,13021,322.5807432,537.0980647,,,,,,,,,,,,,434.9524846,332.7041865,558.7146625,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.101,,,0.086,0.119,0.161,,,0.138,0.186,0.092,,,0.079,0.109,,,,,,0.082,410,,,,0.037824303,195.9677142,5181,,,,,,,,,,,,,,,,,,,,,,,,,,0.318,,,0.298,0.337,0.170333839,449,2636,0.142929584,0.197738095,0.081300813,90,1107,0.056279536,0.10632209,0.000623312,3,4813,,,1604.333333,,,,,,,,,,,3.093080455,,,,,,,,,3.111762743,2.785128604,,,,,,,,,2.772041831,0.101379178,,,,,1742.74835,,,,,0.725876203,38605,53184,0.629019897,0.82273251,57029,,,50338.78723,63719.21277,,,,,,,161053,160354.7872,161751.2128,92292,44590.7234,139993.2766,59900,54696.76596,65103.23404,,,,,,0.41931385,330,787,,,,,,,,0.239457118,,57029,,,6.557377049,2,305,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,37.26636854,13,34884,19.84277173,63.72662515,,,,,,,,,,,,,39.60758028,21.08936838,67.73016854,,,,,,,,,,,0.700129702,2699,3855,,,0.627,,,,,19.74673799,,,,,0.754113775,1604,2127,0.703887012,0.804340538,0.048732944,100,2052,0.020405299,0.077060588,0.82651622,1758,2127,0.786129546,0.866902894,4813,,,,,0.211510492,1018,4813,,,0.243714939,1173,4813,,,0.009557449,46,4813,,,0.007064201,34,4813,,,0.00664866,32,4813,,,0.000623312,3,4813,,,0.026386869,127,4813,,,0.938292126,4516,4813,,,0,0,4661,0,0.011247701,0.50509038,2431,4813,,,1,4919,4919,, -20,165,20165,KS,Rush County,2024,1,10264.72212,69,7872,6432.846703,15540.91265,1,,,,2,,,,2,,,,2,,,,2,10244.05765,6257.336544,15821.11619,1,,,,2,,0.145,,,0.121,0.172,3.293086879,,,2.593227414,4.079939902,4.686522161,,,3.732780557,5.682069264,0.087804878,18,205,0.049062851,0.126546905,1,,,,,,,,,,,,,0.094240838,0.05280603,0.135675645,,,,,,,0.182,,,0.141,0.223,0.412,,,0.334,0.489,8,0.106276122,0.084,,,0.247,,,0.199,0.296,0.450608931,1332,2956,,,0.163507227,,,0.130134431,0.199452224,0.285714286,2,7,0.086061846,0.500925625,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.10808356,238,2202,0.091402709,0.124764412,0.000338639,1,2953,,,2953,0.000341647,1,2927,,,2927,,0,2927,,,,2120,,,,,,,,,2142,0.53,,,,,,,,,0.54,0.43,,,,,,,,,0.43,0.90913371,1931,2124,0.899048275,0.919219146,0.607907743,369,607,0.47932598,0.736489506,0.022277228,36,1616,,,0.165,99,,0.103042553,0.226957447,,,,,,,,,,0.205882353,0,0.827470596,0.078431373,0.025975687,0.130887058,3.999866054,89585,22397,3.100647661,4.899084446,0.260575296,154,591,0.07279721,0.448353382,16.93193363,5,2953,,,92.51916468,14,15132,50.58108827,155.2314375,,,,,,,,,,,,,100.0142878,54.67874179,167.8069804,,,,6,,,,,1,,,,,0.05862069,85,1450,0.032821132,0.084420247,0.050624133,0.017852083,0.083396184,0.005517241,0,0.018632801,0.002758621,0,0.012685413,0.806882023,1149,1424,0.758394178,0.855369867,,,,,,,,,,,,,0.768240343,0.682265514,0.854215173,0.334,,1424,0.253444392,0.414555608,74.39112457,,,71.34926636,77.43298277,,,,,,,,,,,,,74.29360955,71.02817933,77.55903977,,,,538.4453477,69,7872,405.6307243,700.8606315,,,,,,,,,,,,,533.3027506,395.8275808,703.0931915,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.103,,,0.087,0.12,0.161,,,0.137,0.186,0.097,,,0.082,0.113,,,,,,0.084,240,,,,0.106276122,351.4551356,3307,,,,,,,,,,,,,,,,,,,,,,,,,,0.323,,,0.305,0.341,0.126925447,206,1623,0.106670128,0.147180766,0.059210526,36,608,0.040146697,0.078274356,0.001366587,4,2927,,,731.75,,,,,,,,,,,2.98181591,,,,,,,,,3.085992211,3.118161666,,,,,,,,,3.137250527,0.092266888,,,,,-1981.76125,,,,,0.659557753,34421,52188,0.493234989,0.825880516,56629,,,48196.82979,65061.17021,,,,,,,,,,,,,52381,41630.19149,63131.80851,,,,,,0.372137405,195,524,,,,,,,,0.241148528,,56629,,,9.708737864,2,206,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.724406048,1677,2315,,,0.502,,,,,15.20564737,,,,,0.770089286,1035,1344,0.720886766,0.819291806,0.097750194,126,1289,0.051775034,0.143725354,0.869791667,1169,1344,0.826599004,0.912984329,2927,,,,,0.207037923,606,2927,,,0.251110352,735,2927,,,0.006491288,19,2927,,,0.010249402,30,2927,,,0.005124701,15,2927,,,0,0,2927,,,0.051930304,152,2927,,,0.911513495,2668,2927,,,0.002537151,7,2759,0,0.021256342,0.490604715,1436,2927,,,1,2956,2956,, -20,167,20167,KS,Russell County,2024,1,9030.103452,123,17941,6455.428647,11604.77826,0,,,,2,,,,2,,,,2,,,,2,9775.938547,6902.014309,12649.86279,,,,,2,,0.15,,,0.126,0.177,3.213887923,,,2.494887347,3.969868159,4.663214274,,,3.698109379,5.645956002,0.062626263,31,495,0.041281658,0.083970867,0,,,,,,,,,,,,,0.064935065,0.042465451,0.087404679,,,,,,,0.195,,,0.155,0.24,0.396,,,0.323,0.467,7.9,0.081568459,0.102,,,0.266,,,0.217,0.317,0.680765207,4555,6691,,,0.173243728,,,0.138645431,0.209291272,0.3,3,10,0.129013968,0.476732101,193.9,13,6703,,,19.15070774,23,1201,12.13990594,28.73546453,,,,,,,,,,,,,18.23416507,10.97815851,28.47490746,,,,,,,0.113128492,567,5012,0.096447641,0.129809343,0.000447561,3,6703,,,2234.333333,0.000451875,3,6639,,,2213,,0,6639,,,,3305,,,,,,,,,3366,0.38,,,,,,,,,0.38,0.3,,,,,,,,,0.3,0.934282126,4464,4778,0.904472318,0.964091934,0.613798009,863,1406,0.491933229,0.735662789,0.02276176,75,3295,,,0.194,284,,0.123702128,0.264297872,,,,,,,,,,0.755319149,0.539314191,0.971324107,0.21552436,0.121221005,0.309827715,4.535460321,95671,21094,2.944363739,6.126556902,0.190704033,279,1463,0.093849987,0.287558079,22.37803968,15,6703,,,96.53356735,33,34185,66.44926597,135.5690194,,,,,,,,,,,,,102.3606935,70.01463858,144.5027576,,,,6.1,,,,,1,,,,,0.129783694,390,3005,0.07405859,0.185508798,0.109296901,0.060210331,0.158383471,0.022628952,0,0.047036324,0.001331115,0,0.008705976,0.751520973,2347,3123,0.684831536,0.818210411,,,,,,,,,,,,,0.77372817,0.685742326,0.861714014,0.22,,3123,0.15366068,0.28633932,76.32499661,,,74.2893199,78.36067332,,,,,,,,,,,,,75.69246749,73.5114419,77.87349309,,,,463.0806358,123,17941,372.1095308,554.0517408,,,,,,,,,,,,,489.3933823,390.8123381,587.9744265,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.105,,,0.089,0.123,0.165,,,0.142,0.189,0.098,,,0.083,0.115,,,,,,0.102,690,,,,0.081568459,568.532159,6970,,,,,,,,,,,,,,,,,,,,,,,,,,0.329,,,0.312,0.346,0.140266364,495,3529,0.116436577,0.164096152,0.049190939,76,1545,0.032510087,0.06587179,0.001807501,12,6639,,,553.25,,,,,,,,,,,2.953370705,,,,,,,,,2.979668576,2.723410483,,,,,,,,,2.737345183,0.0212817,,,,,3010.093,,,,,0.865399575,41161,47563,0.656734077,1.074065074,48754,,,42561.82979,54946.17021,16513,15740.91489,17285.08511,,,,,,,,,,52879,44449.21277,61308.78723,,,,,,0.543822598,515,947,,,,,,,,0.280100094,,48754,,,11.65501166,5,429,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.650469043,3467,5330,,,0.619,,,,,4.450571144,,,,,0.761602671,2281,2995,0.713855898,0.809349444,0.091104735,254,2788,0.040616432,0.141593037,0.852420701,2553,2995,0.804395684,0.900445718,6639,,,,,0.222322639,1476,6639,,,0.246272029,1635,6639,,,0.013255008,88,6639,,,0.013857509,92,6639,,,0.006025004,40,6639,,,0.0006025,4,6639,,,0.046543154,309,6639,,,0.901340563,5984,6639,,,0.001266023,8,6319,0,0.013333642,0.499020937,3313,6639,,,0.392318039,2625,6691,, -20,169,20169,KS,Saline County,2024,1,8679.818143,902,148882,7807.767294,9551.868991,0,,,,2,,,,2,14873.02047,8501.216275,24152.85344,1,8968.43498,6566.021583,11962.63546,,8148.196494,7210.15201,9086.240978,,,,,2,,0.145,,,0.122,0.172,3.304947703,,,2.658991188,4.03877264,4.837755972,,,4.097547262,5.660745608,0.074950254,339,4523,0.06727643,0.082624079,0,,,,,,,0.136752137,0.074493737,0.199010537,0.065270936,0.048281426,0.082260446,0.074394981,0.065504753,0.083285208,,,,0.075949367,0.034641051,0.117257683,0.18,,,0.144,0.219,0.364,,,0.316,0.413,8.1,0.060279804,0.1,,,0.261,,,0.221,0.305,0.802478684,43577,54303,,,0.16691307,,,0.140006174,0.197798538,0.21875,7,32,0.128580322,0.319266194,421.2,227,53888,,,24.46696959,280,11444,21.60109463,27.33284455,,,,,,,,,,37.40423614,29.7922653,46.36817837,22.11770688,18.83129838,25.40411538,,,,23.88535032,13.36844926,39.39525298,0.111935626,4827,43123,0.097637754,0.126233498,0.000964964,52,53888,,,1036.307692,0.000839615,45,53596,,,1191.022222,0.003731622,200,53596,,,267.98,2291,,,,,,3120,992,1781,2221,0.54,,,,,,0.49,0.45,0.4,0.55,0.51,,,,,,0.41,0.39,0.41,0.51,0.93719557,34441,36749,0.92611913,0.94827201,0.664448228,8586,12922,0.601151359,0.727745097,0.024194082,731,30214,,,0.146,1709,,0.094765957,0.197234043,,,,,,,0.170666667,0,0.488423433,0.114886731,0.036736075,0.193037388,0.109159196,0.068440278,0.149878113,4.417204554,112917,25563,3.737425078,5.096984029,0.276237704,3398,12301,0.209241041,0.343234368,15.03117577,81,53888,,,85.55424028,232,271173,74.54509462,96.56338595,,,,,,,116.1305307,55.68910343,213.5681807,47.06325301,26.34094545,77.62367869,91.67091069,78.90196552,104.4398559,,,,7.2,,,,,0,,,,,0.120449438,2680,22250,0.096846798,0.144052079,0.103067485,0.081544091,0.124590878,0.009213483,0.002953659,0.015473308,0.013932584,0.006044189,0.02182098,0.804722233,21540,26767,0.781049419,0.828395046,,,,,,,,,,0.709561231,0.608580589,0.810541873,0.825508932,0.800944142,0.850073723,0.108,,26767,0.087157449,0.128842552,76.39084725,,,75.66069759,77.12099691,,,,,,,70.27168044,65.06964696,75.47371392,75.72876507,72.61598982,78.84154032,76.80920062,76.02286673,77.59553451,,,,454.1510372,902,148882,422.9095937,485.3924807,,,,,,,729.0772317,510.6367298,1009.350205,457.5801605,338.5203217,604.9452387,437.4286041,404.0724247,470.7847836,,,,37.93215563,21,55362,23.48060219,57.98332924,,,,,,,,,,,,,34.33159035,18.28012595,58.70806507,,,,5.195929855,24,4619,3.3291303,7.731131759,,,,,,,,,,,,,,,,,,,,,,0.103,,,0.088,0.121,0.155,,,0.133,0.177,0.096,,,0.082,0.111,141.6,64,45206,,,0.1,5430,,,,0.060279804,3351.91878,55606,,,19.13131488,31,162038,12.99880027,27.15537436,,,,,,,,,,,,,19.44692933,12.5850273,28.70750395,,,,0.349,,,0.333,0.363,0.140179035,4322,30832,0.121115205,0.159242865,0.043875261,567,12923,0.030768878,0.056981644,0.001473991,79,53596,,,678.4303798,0.91503268,560,612,,,0.104138399,307,2948,0.046557808,0.16171899,2.835814232,,,,,,,2.372441175,2.639644114,2.909889488,2.785063127,,,,,,,2.325061271,2.615063179,2.873482768,0.055723361,,,,,4029.051333,,,,,0.783866983,39978,51001,0.706995857,0.860738109,57563,,,51015.76596,64110.23404,31292,23456.76596,39127.23404,60724,27797.19149,93650.80851,53125,5831.212766,100418.7872,53642,36128.29787,71155.70213,61283,57100.87234,65465.12766,,,,,,0.536248416,4231,7890,,,34.68078133,,,,,0.219463892,,57563,,,9.957754979,33,3314,,,5.759071847,22,382006,3.609179665,8.719303987,,,,,,,,,,,,,5.903439409,3.498752334,9.329979393,,,,19.96469425,54,271173,14.81818089,26.32096044,19.91348696,,,,,,,,,,,,,20.92882724,15.0836578,28.2896945,,,,15.85703591,43,271173,11.47581552,21.35932331,,,,,,,,,,,,,18.0563915,12.83985948,24.68368159,,,,14.13590363,54,382006,10.61932587,18.44428789,,,,,,,,,,,,,14.43062967,10.48531761,19.37244677,,,,,,,,,,,0.604956843,24531,40550,,,0.727,,,,,97.71508194,,,,,0.673360766,15055,22358,0.642224865,0.704496666,0.108353511,2327,21476,0.086537138,0.130169883,0.866714375,19378,22358,0.846753006,0.886675744,53596,,,,,0.223001717,11952,53596,,,0.197999851,10612,53596,,,0.030450034,1632,53596,,,0.007761773,416,53596,,,0.022333756,1197,53596,,,0.000839615,45,53596,,,0.12420703,6657,53596,,,0.789984327,42340,53596,,,0.006746289,344,50991,0.002329227,0.01116335,0.499272334,26759,53596,,,0.142828205,7756,54303,, -20,171,20171,KS,Scott County,2024,1,9269.068062,76,13376,6456.245525,12891.02986,0,,,,2,,,,2,,,,2,,,,2,8608.142724,5570.736097,12707.31677,1,,,,2,,0.175,,,0.145,0.207,3.65369799,,,2.862487779,4.590246999,5.106248218,,,4.071406229,6.225338252,0.08649789,41,474,0.061191836,0.111803945,0,,,,,,,,,,,,,0.093484419,0.063115735,0.123853103,,,,,,,0.198,,,0.154,0.241,0.399,,,0.318,0.481,8.8,0.045010553,0.078,,,0.287,,,0.233,0.342,0.842748981,4341,5151,,,0.167088908,,,0.13300201,0.205444498,0.142857143,1,7,0.008995928,0.386311364,272.9,14,5131,,,23.62204724,27,1143,15.56707798,34.36883854,,,,,,,,,,,,,27.81456954,17.21765693,42.51752415,,,,,,,0.153377225,629,4101,0.131930417,0.174824034,0.000974469,5,5131,,,1026.2,0.000398883,2,5014,,,2507,0.000598325,3,5014,,,1671.333333,5167,,,,,,,,,5128,0.45,,,,,,,,,0.47,0.3,,,,,,,,0.45,0.31,0.849073257,2886,3399,0.784217221,0.913929292,0.499125874,571,1144,0.317158772,0.681092977,0.018268177,50,2737,,,0.089,112,,0.054446809,0.123553192,,,,,,,,,,0.113378685,0.004371885,0.222385485,,,,3.645128092,99173,27207,2.318386671,4.971869513,0.123065586,167,1357,0,0.258053063,17.54044046,9,5131,,,93.48833428,23,24602,59.26358441,140.2784038,,,,,,,,,,,,,104.3242397,63.7239559,161.1203271,,,,5.9,,,,,0,,,,,0.067961165,140,2060,0.024693173,0.111229157,0.048529412,0.005096744,0.09196208,0.016990291,0,0.04523478,0,0,0.008997682,0.801665405,2118,2642,0.686860309,0.916470501,,,,,,,,,,,,,0.829557158,0.715972067,0.943142248,0.124,,2642,0.039563831,0.20843617,75.91073911,,,73.25822749,78.56325072,,,,,,,,,,,,,76.44425398,73.64771752,79.24079043,,,,441.2185702,76,13376,343.2943836,558.3903392,,,,,,,,,,,,,422.8343194,319.4045008,549.0855345,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.115,,,0.097,0.133,0.166,,,0.142,0.191,0.107,,,0.09,0.126,0,0,4190,,,0.078,400,,,,0.045010553,222.1720905,4936,,,,,,,,,,,,,,,,,,,,,,,,,,0.33,,,0.315,0.347,0.182116788,499,2740,0.153521044,0.210712533,0.096275474,137,1423,0.06648824,0.126062708,0.001595533,8,5014,,,626.75,,,,,,,,,,,3.201098476,,,,,,,,2.855679703,3.435516965,3.131619299,,,,,,,,2.666996271,3.493433274,0.031175733,,,,,1803.891,,,,,0.640632777,29603,46209,0.403234433,0.878031122,71121,,,62174.10638,80067.89362,,,,,,,,,,29375,26653.6383,32096.3617,64044,44485.70213,83602.29787,,,,,,0.385964912,374,969,,,,,,,,0.192010799,,71121,,,6.079027356,2,329,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,37.57442627,13,34598,20.0067995,64.25341326,,,,,,,,,,,,,44.28697963,22.88372863,77.36044083,,,,,,,,,,,0.732192846,2354,3215,,,0.671,,,,,44.22745768,,,,,0.614559029,1317,2143,0.531252369,0.69786569,0.092467533,178,1925,0.010520934,0.174414131,0.762015866,1633,2143,0.677755428,0.846276303,5014,,,,,0.255484643,1281,5014,,,0.204427603,1025,5014,,,0.005584364,28,5014,,,0.012564819,63,5014,,,0.010370961,52,5014,,,0.001794974,9,5014,,,0.201435979,1010,5014,,,0.767650578,3849,5014,,,0.034575015,168,4859,0,0.069434845,0.489429597,2454,5014,,,1,5151,5151,, -20,173,20173,KS,Sedgwick County,2024,1,9723.052792,8008,1466041,9415.713526,10030.39206,0,13119.40409,9768.258071,17249.59351,,4112.148595,3214.644136,5009.653053,,17131.09065,15738.81866,18523.36264,,7576.776525,6877.144802,8276.408247,,8849.291785,8493.110655,9205.472914,,,,,2,,0.152,,,0.13,0.175,3.4265902,,,2.912948386,3.952053853,5.141584298,,,4.578744913,5.723557905,0.082034628,3890,47419,0.079564658,0.084504597,0,0.12173913,0.061975907,0.181502354,0.081260365,0.068669012,0.093851718,0.151414921,0.141891152,0.16093869,0.074818347,0.069323761,0.080312933,0.07106414,0.068165557,0.073962723,,,,0.097077244,0.078329141,0.115825348,0.184,,,0.152,0.217,0.394,,,0.364,0.423,7.6,0.093973134,0.109,,,0.249,,,0.217,0.279,0.821856196,430508,523824,,,0.171025186,,,0.154378038,0.18863681,0.155063291,49,316,0.128495126,0.183601068,639.7,3351,523828,,,24.58208767,2919,118745,23.69030755,25.47386779,15.16683519,8.488762521,25.01538814,7.054337464,4.966904589,9.723474956,49.33250818,45.23922144,53.42579492,31.65498965,29.55392216,33.75605715,19.69731195,18.62983339,20.76479051,,,,17.09995829,14.07792972,20.12198687,0.124969821,54867,439042,0.115437906,0.134501736,0.000889605,466,523828,,,1124.094421,0.000698349,367,525525,,,1431.948229,0.002624043,1379,525525,,,381.0913706,2230,,,,,907,1175,2999,3046,2161,0.44,,,,,0.3,0.38,0.39,0.25,0.45,0.52,,,,,0.44,0.54,0.4,0.36,0.53,0.89483384,304920,340756,0.888785889,0.900881791,0.671317105,93350,139055,0.652229633,0.690404577,0.031300208,8007,255813,,,0.189,24164,,0.160404255,0.217595745,0.123839009,0.066274842,0.181403177,0.199171843,0.123466499,0.274877186,0.355222525,0.29611767,0.41432738,0.28317078,0.248826155,0.317515404,0.091678341,0.078497678,0.104859003,4.413927245,125947,28534,4.221982245,4.605872245,0.251349456,32968,131164,0.231417084,0.271281827,9.621478806,504,523828,,,94.89496036,2455,2587071,91.14114012,98.6487806,120.7146306,78.12014412,178.1986079,34.79925182,24.86109569,47.38670405,131.1975321,116.2511568,146.1439073,59.48627348,51.84800579,67.12454116,99.69952704,95.01625071,104.3828034,,,,6.3,,,,,0,,,,,0.134657837,26840,199320,0.127218621,0.142097053,0.108335665,0.101342702,0.115328628,0.024709011,0.021211758,0.028206263,0.009005619,0.006947709,0.01106353,0.809041228,202376,250143,0.801200801,0.816881656,0.707902358,0.656683988,0.759120729,0.771639661,0.73286195,0.810417372,0.770681685,0.739159448,0.802203923,0.7918858,0.769989994,0.813781606,0.831719205,0.823477652,0.839960759,0.165,,250143,0.156831561,0.17316844,75.49077679,,,75.23827327,75.74328031,70.30364151,67.84549423,72.76178879,85.80765892,83.42407232,88.19124551,69.3486089,68.41948289,70.27773492,79.31195691,78.23077628,80.39313755,76.25295839,75.96182595,76.54409084,,,,463.1683469,8008,1466041,452.6934326,473.6432612,626.8853752,500.7337723,775.1534745,207.5026478,173.8075989,241.1976967,759.484439,711.5456974,807.4231806,328.5725606,299.4849925,357.6601286,435.9616968,424.0720728,447.8513207,,,,68.04169761,393,577587,61.31448836,74.76890687,,,,,,,155.8068695,125.1257101,191.73376,67.84614582,54.62548443,83.30003274,55.10921222,47.01321644,63.205208,,,,7.057941746,339,48031,6.306605584,7.809277908,,,,,,,12.71340356,9.910721778,16.06262057,8.095345177,6.334109028,10.19474748,5.297060458,4.481354764,6.112766152,,,,,,,0.1,,,0.087,0.113,0.163,,,0.146,0.182,0.11,,,0.099,0.121,209.5,902,430637,,,0.109,56920,,,,0.093973134,46832.92095,498365,,,30.58129463,477,1559777,27.8368609,33.32572837,,,,,,,50.85645214,39.56935534,64.36209506,19.99891673,14.74562246,26.51566214,30.05171758,26.73300154,33.37043361,,,,0.349,,,0.336,0.361,0.156974371,48447,308630,0.145059477,0.168889264,0.052432432,7178,136900,0.041709028,0.063155837,0.001807716,950,525525,,,553.1842105,0.843880087,5059.905,5996,,,0.083255217,2398,28803,0.065969023,0.10054141,2.815821807,,,,,,3.112722203,2.159254901,2.487032263,3.136576729,2.746626157,,,,,,3.184043589,2.146322054,2.417687843,3.067480056,0.156310228,,,,,1528.24491,,,,,0.775586523,43968,56690,0.749606789,0.801566258,64720,,,61684.08511,67755.91489,54286,29363.61702,79208.38298,76250,66771.70213,85728.29787,39130,35659.19149,42600.80851,54966,51972.97872,57959.02128,70634,69145.82979,72122.17021,,,,,,0.550290264,45405,82511,,,53.69956293,,,,,0.239045117,,64720,,,6.674146313,232,34761,,,8.447255888,305,3610640,7.499226497,9.39528528,,,,,,,34.7134562,28.22625176,41.20066064,10.97776537,8.356783632,14.16051751,4.005689714,3.252012535,4.881652727,,,,20.64309315,517,2587071,18.8291682,22.4570181,19.98398962,,,,,,,14.68706474,9.97914792,20.84711604,13.0607323,9.526587758,17.4762874,23.1716418,20.83120852,25.51207507,,,,18.94033832,490,2587071,17.26328928,20.61738737,,,,,,,38.56143679,30.88613009,47.56538982,16.85018905,13.03193499,21.43757195,17.0651689,15.12759387,19.00274394,,,,13.54330534,489,3610640,12.34290444,14.74370624,,,,6.880504404,3.434723008,12.31112297,18.93461247,14.44910406,24.37259954,11.16382919,8.519177775,14.37006111,13.69291892,12.22659573,15.15924212,,,,,,,,,,,0.620029382,223688,360770,,,0.688,,,,,86.73929173,,,,,0.625414228,126637,202485,0.616735126,0.63409333,0.113618299,22442,197521,0.106672057,0.120564541,0.892683409,180755,202485,0.886004762,0.899362056,525525,,,,,0.246380286,129479,525525,,,0.160138909,84157,525525,,,0.086911184,45674,525525,,,0.013281956,6980,525525,,,0.04547072,23896,525525,,,0.001040864,547,525525,,,0.160863898,84538,525525,,,0.664769516,349353,525525,,,0.026684097,13043,488793,0.024070789,0.029297406,0.502379525,264013,525525,,,0.074198586,38867,523824,, -20,175,20175,KS,Seward County,2024,1,7780.6026,223,61306,6479.195534,9082.009665,0,,,,2,,,,2,,,,2,5629.33157,4305.992602,7231.111903,,10467.13645,7593.267995,13341.00491,,,,,2,,0.229,,,0.197,0.262,3.717181253,,,2.957703912,4.548770714,4.369437779,,,3.477447127,5.339835027,0.063203778,174,2753,0.05411413,0.072293425,0,,,,,,,0.285714286,0.159223179,0.412205392,0.060788863,0.050700376,0.070877351,0.04631579,0.027415167,0.065216412,,,,,,,0.187,,,0.156,0.223,0.436,,,0.366,0.51,8.4,0.076801558,0.077,,,0.348,,,0.298,0.403,0.911309415,20016,21964,,,0.180900054,,,0.146495546,0.220901985,0.333333333,6,18,0.206402932,0.459068619,505.8,110,21747,,,42.20990874,259,6136,37.06922836,47.35058911,,,,,,,,,,50.04468275,43.49093076,56.59843474,20.80123267,13.7081434,30.26470142,,,,,,,0.203973229,3840,18826,0.180143441,0.227803016,0.000321884,7,21747,,,3106.714286,0.000327746,7,21358,,,3051.142857,0.00107688,23,21358,,,928.6086957,3547,,,,,,,5963,2052,3681,0.22,,,,,,,,0.19,0.25,0.33,,,,,,0.37,0.24,0.26,0.37,0.697554092,8898,12756,0.653638825,0.741469359,0.408202111,2359,5779,0.329305999,0.487098224,0.025583529,251,9811,,,0.16,1039,,0.098042553,0.221957447,,,,,,,,,,0.179053412,0.118392096,0.239714728,0.117108875,0.002827933,0.231389817,3.441039353,100382,29172,2.609564338,4.272514368,0.160582867,1091,6794,0.097549706,0.223616029,12.41550559,27,21747,,,62.87447296,68,108152,48.82448845,79.70837632,,,,,,,,,,45.49857634,30.91407517,64.5815973,101.9952827,69.76469788,143.9869066,,,,6.5,,,,,0,,,,,0.126652749,910,7185,0.092050347,0.16125515,0.101910828,0.06751125,0.136310406,0.033263744,0.013721905,0.052805583,0.006958942,0,0.014973893,0.756862745,7913,10455,0.710638362,0.803087129,,,,,,,,,,0.788018433,0.75089792,0.825138946,0.764898852,0.715202923,0.814594781,0.119,,10455,0.077984374,0.160015626,77.46414199,,,76.1566121,78.77167188,,,,,,,,,,82.88441245,78.54647859,87.22234631,74.62646236,72.45031722,76.80260751,,,,382.671795,223,61306,331.8280037,433.5155864,,,,,,,,,,255.8954454,197.0706744,326.772771,525.2083153,424.1320124,626.2846182,,,,49.980008,15,30012,27.97343107,82.43442247,,,,,,,,,,61.59802886,33.67621558,103.3510257,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.126,,,0.109,0.144,0.157,,,0.137,0.179,0.138,,,0.12,0.158,194.9,33,16930,,,0.077,1700,,,,0.076801558,1762.749368,22952,,,,,,,,,,,,,,,,,,,,,,,,,,0.323,,,0.31,0.334,0.262296417,3221,12280,0.228934715,0.295658119,0.097578657,673,6897,0.068982913,0.126174402,0.001123701,24,21358,,,889.9166667,0.876529563,340.97,389,,,,,,,,2.44308878,,,,,,,,2.396432896,2.910495522,2.55631728,,,,,,,,2.507764992,2.82960124,0.054382098,,,,,-10797.0245,,,,,0.783735861,38454,49065,0.65242996,0.915041762,63579,,,54802.48936,72355.51064,,,,128800,92257.02128,165342.9787,30536,13597.78723,47474.21277,62188,52721.61702,71654.38298,56772,48053.87234,65490.12766,,,,,,0.738150738,3800,5148,,,39.71328698,,,,,0.214787902,,63579,,,2.453385672,5,2038,,,,,,,,,,,,,,,,,,,,,,,,,,18.10207985,18,108152,10.5451286,28.98318342,16.64324284,,,,,,,,,,,,,,,,,,,11.09549523,12,108152,5.733204295,19.38159724,,,,,,,,,,,,,,,,,,,11.6873251,18,154013,6.926649556,18.47101236,,,,,,,,,,,,,,,,,,,,,,,,,,0.480399274,5294,11020,,,0.575,,,,,70.76893108,,,,,0.652665818,4615,7071,0.616161131,0.689170506,0.102894356,711,6910,0.067156656,0.138632056,0.868335455,6140,7071,0.824047009,0.912623901,21358,,,,,0.308221744,6583,21358,,,0.111901864,2390,21358,,,0.029450323,629,21358,,,0.015684989,335,21358,,,0.025423729,543,21358,,,0.002247401,48,21358,,,0.661719262,14133,21358,,,0.268096264,5726,21358,,,0.177950481,3572,20073,0.1452925,0.210608462,0.48375316,10332,21358,,,0.09656711,2121,21964,, -20,177,20177,KS,Shawnee County,2024,1,9769.980503,2984,489287,9227.644976,10312.31603,0,16435.68596,11007.23683,23604.38664,,,,,2,20951.67009,18066.32966,23837.01051,,8237.216956,6895.293559,9579.140352,,8671.386463,8077.889077,9264.88385,,,,,2,,0.15,,,0.129,0.172,3.435077936,,,2.823818497,4.033999255,5.737662247,,,5.009765021,6.424990992,0.078945533,1132,14339,0.074531831,0.083359236,0,,,,0.082251082,0.046820129,0.117682035,0.140939597,0.122315722,0.159563472,0.075155053,0.065285099,0.085025007,0.069306931,0.064085786,0.074528075,,,,0.091269841,0.07074044,0.111799243,0.181,,,0.148,0.217,0.393,,,0.356,0.431,7.8,0.1077915,0.093,,,0.239,,,0.209,0.273,0.871012638,155832,178909,,,0.167328844,,,0.145272682,0.190624962,0.177083333,17,96,0.127354517,0.232176767,816.2,1455,178264,,,25.68029816,1006,39174,24.09337045,27.26722586,,,,,,,44.84173505,37.7362658,51.9472043,40.46898638,36.04181961,44.89615315,16.67565437,15.04551052,18.30579823,,,,40.93357271,33.41936324,48.44778218,0.103725481,14748,142183,0.091810587,0.115640374,0.000729256,130,178264,,,1371.261539,0.000681767,121,177480,,,1466.77686,0.003786342,672,177480,,,264.1071429,2854,,,,,4085,1586,4935,2433,2704,0.57,,,,,0.47,0.53,0.56,0.46,0.57,0.57,,,,,0.41,0.48,0.41,0.48,0.58,0.929201499,112819,121415,0.92050395,0.937899048,0.667230541,29188,43745,0.634392217,0.700068865,0.027457937,2523,91886,,,0.153,6081,,0.108914894,0.197085106,0.417910448,0.185547979,0.650272917,0.119162641,0,0.258859408,0.263283109,0.178264675,0.348301542,0.214895798,0.159203779,0.270587817,0.116429281,0.091905701,0.140952862,4.287332392,121503,28340,4.060827767,4.513837018,0.253455886,10451,41234,0.221600007,0.285311765,15.48265494,276,178264,,,103.0644186,914,886824,96.38264543,109.7461919,164.7029013,87.69735831,281.6469773,,,,170.310635,139.4499964,201.1712735,67.46101279,53.23917632,84.31469117,102.7401994,94.95475481,110.5256439,,,,9.3,,,,,0,,,,,0.124314693,9070,72960,0.111643651,0.136985735,0.09652216,0.086048764,0.106995556,0.020627741,0.015861484,0.025393998,0.015076754,0.007698415,0.022455094,0.789811879,66251,83882,0.77290188,0.806721877,0.716475096,0.580710105,0.852240087,0.63257329,0.517507793,0.747638787,0.721959954,0.666940818,0.776979091,0.73942399,0.697482031,0.781365949,0.821872892,0.805138569,0.838607214,0.123,,83882,0.109310829,0.136689171,75.73394508,,,75.29964051,76.16824965,,,,88.24363402,83.44460657,93.04266147,67.12707978,65.35406878,68.90009077,77.78332965,76.2487487,79.31791059,76.65983783,76.17841276,77.1412629,,,,461.356608,2984,489287,443.8418463,478.8713696,915.3308217,674.8926906,1213.595874,,,,861.7723309,770.9864022,952.5582597,402.6786809,347.9153576,457.4420042,427.2847872,408.1944065,446.3751679,,,,66.2128442,121,182744,54.41491923,78.01076916,,,,,,,154.9042692,100.2458755,228.6692589,62.95081967,40.33377798,93.66582975,51.39997295,38.92983756,66.59462681,,,,8.353708232,123,14724,6.877380362,9.830036101,,,,,,,17.19197708,11.01522411,25.58029914,11.0660273,7.466202147,15.79744205,5.59957739,4.194467716,7.324385096,,,,,,,0.101,,,0.088,0.116,0.171,,,0.151,0.192,0.109,,,0.096,0.124,156,233,149336,,,0.093,16590,,,,0.1077915,19179.77276,177934,,,25.60539822,136,531138,21.30193445,29.908862,,,,,,,46.41845011,27.94693923,72.48815981,,,,26.50363074,21.38512928,31.6221322,,,,0.319,,,0.305,0.332,0.127404227,12877,101072,0.111914865,0.142893588,0.047996488,2077,43274,0.034890105,0.061102871,0.002524228,448,177480,,,396.1607143,0.873446625,1824.63,2089,,,0.076732161,742,9670,0.050091633,0.10337269,2.922296847,,,,,,,2.353100884,2.630799473,3.114373147,2.877300239,,,,,,3.487116252,2.411756996,2.65053698,3.074962268,0.11075504,,,,,1816.0678,,,,,0.845974847,47625,56296,0.805531359,0.886418336,61255,,,57722.23404,64787.76596,46094,20575.87234,71612.12766,70620,49536.59575,91703.40426,43160,40710.29787,45609.70213,51284,44021.87234,58546.12766,70010,67225.48936,72794.51064,,,,,,0.4795395,12996,27101,,,44.71167972,,,,,0.206236226,,61255,,,9.54941591,103,10786,,,10.05069571,125,1243695,8.288731065,11.81266035,,,,,,,47.30758155,34.63509545,63.10168426,,,,5.455007643,4.048811816,7.191747519,,,,22.77952813,200,886824,19.52282876,26.0362275,22.5523892,,,,,,,35.4636767,21.95257483,54.20999698,16.65154423,9.700138141,26.66073537,22.21186603,18.46605839,25.95767368,,,,21.76305558,193,886824,18.6926391,24.83347206,,,,,,,68.41538327,50.26905029,90.97795619,17.52234099,10.70310109,27.0618345,16.89300737,13.73606466,20.04995008,,,,13.91016286,173,1243695,11.83732547,15.98300026,,,,,,,28.79591921,19.13467919,41.6181208,13.38517433,8.285633874,20.4606608,12.00101681,9.758282783,14.24375084,,,,,,,,,,,0.650543024,85657,131670,,,0.713,,,,,101.3298186,,,,,0.668602307,49740,74394,0.656526394,0.680678219,0.117350089,8554,72893,0.105778371,0.128921806,0.827391994,61553,74394,0.813246162,0.841537826,177480,,,,,0.228408835,40538,177480,,,0.194805049,34574,177480,,,0.076741041,13620,177480,,,0.014322741,2542,177480,,,0.015043949,2670,177480,,,0.001493126,265,177480,,,0.136646383,24252,177480,,,0.725056344,128683,177480,,,0.015628252,2628,168157,0.012064912,0.019191593,0.511961911,90863,177480,,,0.168314618,30113,178909,, -20,179,20179,KS,Sheridan County,2024,1,10147.88968,33,6652,5547.945717,17026.43455,1,,,,2,,,,2,,,,2,,,,2,8716.865265,4351.427733,15596.87981,1,,,,2,,0.127,,,0.106,0.15,3.014801394,,,2.367417803,3.786307489,4.66406892,,,3.716802819,5.731539558,0.072916667,14,192,0.036139502,0.109693832,1,,,,,,,,,,,,,0.079268293,0.037920679,0.120615906,,,,,,,0.167,,,0.133,0.207,0.379,,,0.299,0.46,8,0.120112015,0.075,,,0.23,,,0.185,0.28,0.589701676,1443,2447,,,0.188667267,,,0.151055453,0.23067021,0.166666667,1,6,0.011498194,0.426636125,242.1,6,2478,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.07655755,145,1894,0.063451167,0.089663933,0.000807103,2,2478,,,1239,0.000412371,1,2425,,,2425,,0,2425,,,,4361,,,,,,,,,4369,0.53,,,,,,,,,0.54,0.18,,,,,,,,,0.17,0.962985075,1613,1675,0.946941797,0.979028353,0.743925234,398,535,0.602482906,0.885367562,0.019243986,28,1455,,,0.16,95,,0.096851064,0.223148936,,,,,,,,,,,,,0.017821782,0,0.056296015,5.604500145,135500,24177,3.974479409,7.234520881,0.18370607,115,626,0.088747534,0.278664607,28.24858757,7,2478,,,111.2966055,14,12579,60.84688987,186.7367925,,,,,,,,,,,,,112.0206807,59.64629462,191.5587757,,,,5.5,,,,,0,,,,,0.087962963,95,1080,0.045074257,0.130851669,0.086431227,0.033409948,0.139452506,0,0,0.02427108,0.009259259,0,0.027201769,0.676056338,912,1349,0.596886187,0.755226489,,,,,,,,,,,,,0.656678082,0.567520833,0.745835331,0.236,,1349,0.141031496,0.330968504,75.6898966,,,71.67053466,79.70925854,,,,,,,,,,,,,76.5821851,72.57056073,80.59380947,,,,401.5899731,33,6652,264.6503228,584.2923266,,,,,,,,,,,,,365.0087756,231.3842529,547.6923811,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.093,,,0.079,0.108,0.152,,,0.129,0.175,0.087,,,0.074,0.103,0,0,2037,,,0.075,180,,,,0.120112015,307.00631,2556,,,,,,,,,,,,,,,,,,,,,,,,,,0.321,,,0.303,0.338,0.09535067,121,1269,0.077478329,0.11322301,0.042360061,28,661,0.028062188,0.056657933,0.002061856,5,2425,,,485,,,,,,,,,,,,,,,,,,,,,2.981260294,,,,,,,,,3.160183606,0.040150577,,,,,514.6856,,,,,0.742799412,40438,54440,0.61171834,0.873880485,62918,,,53393.23404,72442.76596,,,,,,,,,,101250,36658.17021,165841.8298,65313,47999.46809,82626.53192,,,,,,0.357277883,189,529,,,,,,,,0.217044407,,62918,,,,,138,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.77688172,1445,1860,,,0.601,,,,,1.066546072,,,,,0.736372646,743,1009,0.694562636,0.778182656,0.092356688,87,942,0.03185699,0.152856386,0.89098117,899,1009,0.834481923,0.947480416,2425,,,,,0.244948454,594,2425,,,0.237113402,575,2425,,,0.004948454,12,2425,,,0.009484536,23,2425,,,0.002474227,6,2425,,,0,0,2425,,,0.061443299,149,2425,,,0.912164949,2212,2425,,,0.003032929,7,2308,0,0.025195317,0.49814433,1208,2425,,,1,2447,2447,, -20,181,20181,KS,Sherman County,2024,1,7193.800792,85,15982,4920.554416,10155.50029,0,,,,2,,,,2,,,,2,,,,2,7352.736063,4885.839716,10626.75081,,,,,2,,0.151,,,0.128,0.177,3.320845492,,,2.621169027,4.137775448,4.786341402,,,3.835646576,5.879695309,0.05942623,29,488,0.038449795,0.080402665,0,,,,,,,,,,,,,0.060679612,0.037626172,0.083733051,,,,,,,0.178,,,0.142,0.217,0.401,,,0.325,0.487,6.2,0.238088738,0.105,,,0.261,,,0.215,0.314,0.785220179,4654,5927,,,0.185478063,,,0.152016092,0.227938922,0,0,7,0,0.25576943,305.3,18,5895,,,18.26846704,23,1259,11.58064101,27.41167029,,,,,,,,,,,,,20.92511013,12.59828322,32.67715151,,,,,,,0.111087191,516,4645,0.09440634,0.127768042,0.000339271,2,5895,,,2947.5,0.000686106,4,5830,,,1457.5,0.000343053,2,5830,,,2915,4391,,,,,,,,,4407,0.32,,,,,,,,,0.32,0.35,,,,,,,,0.34,0.34,0.896718666,3334,3718,0.857910752,0.93552658,0.667771334,806,1207,0.501629266,0.833913402,0.022939068,64,2790,,,0.158,211,,0.096042553,0.219957447,,,,,,,,,,,,,0.139774859,0.036111677,0.243438041,5.505516719,130734,23746,3.573353101,7.437680336,0.337184116,467,1385,0.182147908,0.492220323,22.05258694,13,5895,,,84.98198382,25,29418,54.99585916,125.4501723,,,,,,,,,,,,,89.01476836,55.78508142,134.769429,,,,5.3,,,,,0,,,,,0.079766537,205,2570,0.039138583,0.120394491,0.076171875,0.032243671,0.120100079,0.003891051,0,0.0185414,0.00155642,0,0.008885819,0.710561056,2153,3030,0.601716333,0.819405779,,,,,,,,,,,,,0.718838241,0.616905481,0.820771002,0.086,,3030,0.042092364,0.129907636,78.51115016,,,76.14121365,80.88108666,,,,,,,,,,,,,78.26408226,75.75777057,80.77039395,,,,381.4065987,85,15982,300.0004848,478.0964741,,,,,,,,,,,,,393.0505189,303.3480924,500.9751516,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.104,,,0.089,0.12,0.16,,,0.138,0.184,0.098,,,0.084,0.114,,,,,,0.105,620,,,,0.238088738,1430.913318,6010,,,,,,,,,,,,,,,,,,,,,,,,,,0.324,,,0.309,0.339,0.135193798,436,3225,0.112555501,0.157832096,0.057277628,85,1484,0.039405288,0.075149969,0.001886793,11,5830,,,530,0.725,48.575,67,,,,,,,,3.405207962,,,,,,,,,3.357131444,3.51725244,,,,,,,,,3.636609773,0.012675409,,,,,-126.2549,,,,,0.87303446,46971,53802,0.552140964,1.193927956,57044,,,48831.06383,65256.93617,,,,,,,,,,62660,12213.53192,113106.4681,60923,46986.14894,74859.85106,,,,,,0.454935622,424,932,,,,,,,,0.239394152,,57044,,,7.832898172,3,383,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.611434978,2727,4460,,,0.625,,,,,7.485603531,,,,,0.651273198,1509,2317,0.60804241,0.694503986,0.142667845,323,2264,0.06293351,0.22240218,0.893828226,2071,2317,0.840207474,0.947448978,5830,,,,,0.232246998,1354,5830,,,0.216295026,1261,5830,,,0.008747856,51,5830,,,0.006689537,39,5830,,,0.006174957,36,5830,,,0.002229846,13,5830,,,0.133104631,776,5830,,,0.825214408,4811,5830,,,0.001625429,9,5537,0,0.014829195,0.488507719,2848,5830,,,0.251054496,1488,5927,, -20,183,20183,KS,Smith County,2024,1,5040.083241,51,9277,2515.991394,9018.101132,1,,,,2,,,,2,,,,2,,,,2,5289.14806,2536.352082,9726.931598,1,,,,2,,0.134,,,0.113,0.159,3.170046383,,,2.495219697,3.923901182,4.958366792,,,4.011901199,6.021205535,0.050420168,12,238,0.022620765,0.078219572,1,,,,,,,,,,,,,,,,,,,,,,0.177,,,0.14,0.216,0.377,,,0.303,0.455,8,0.112898829,0.079,,,0.244,,,0.2,0.293,0.63837535,2279,3570,,,0.161028738,,,0.128653,0.19621121,0.5,1,2,0.104528646,0.771195053,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.098712446,253,2563,0.084414574,0.113010319,0.00139821,5,3576,,,715.2,0.000566091,2,3533,,,1766.5,,0,3533,,,,3852,,,,,,,,,3862,0.46,,,,,,,,,0.47,0.33,,,,,,,,,0.33,0.954184021,2520,2641,0.941464,0.966904043,0.641134752,452,705,0.546606793,0.735662711,0.020481311,40,1953,,,0.154,106,,0.094425532,0.213574468,,,,,,,,,,,,,0.033227848,0.01041064,0.056045056,3.746814086,104375,27857,2.910857853,4.582770319,0.175792507,122,694,0.103008453,0.248576561,39.14988814,14,3576,,,94.58106153,17,17974,55.09695376,151.4334417,,,,,,,,,,,,,100.4431315,58.51182552,160.8191836,,,,5.9,,,,,0,,,,,0.063063063,105,1665,0.030816569,0.095309558,0.064809207,0.029428465,0.100189948,0.004804805,0,0.019096441,0.014414414,0,0.033731493,0.820437094,1389,1693,0.772795529,0.868078659,,,,,,,,,,,,,0.832896461,0.771625618,0.894167305,0.129,,1693,0.092899642,0.165100358,80.67257398,,,77.87157683,83.47357114,,,,,,,,,,,,,80.64859787,77.64851899,83.64867676,,,,284.0186026,51,9277,201.964991,388.2627796,,,,,,,,,,,,,284.9370085,199.5663778,394.4729246,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.099,,,0.085,0.114,0.157,,,0.134,0.181,0.092,,,0.079,0.108,0,0,3071,,,0.079,280,,,,0.112898829,434.9991877,3853,,,,,,,,,,,,,,,,,,,,,,,,,,0.312,,,0.294,0.329,0.118226601,216,1827,0.097971282,0.13848192,0.053040104,41,773,0.036359252,0.069720955,0.001981319,7,3533,,,504.7142857,,,,,,,,,,,3.488517342,,,,,,,,,3.512984636,3.307530649,,,,,,,,,3.325120536,,,,,,2696.801,,,,,0.692616313,37634,54336,0.578496647,0.80673598,52101,,,46406.87234,57795.12766,,,,,,,,,,35417,9754.702128,61079.29787,51025,47381.42553,54668.57447,,,,,,0.419965577,244,581,,,,,,,,0.262106294,,52101,,,9.852216749,2,203,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.741811847,2129,2870,,,0.584,,,,,13.15254803,,,,,0.839102564,1309,1560,0.804799292,0.873405836,0.048387097,72,1488,0.013243451,0.083530743,0.851282051,1328,1560,0.81036307,0.892201033,3533,,,,,0.198131899,700,3533,,,0.299462213,1058,3533,,,0.003962638,14,3533,,,0.008208322,29,3533,,,0.00509482,18,3533,,,0.000849137,3,3533,,,0.031418058,111,3533,,,0.933484291,3298,3533,,,0.000886263,3,3385,0,0.015450353,0.496178885,1753,3533,,,1,3570,3570,, -20,185,20185,KS,Stafford County,2024,1,10162.19788,93,10913,6856.392235,14507.16936,0,,,,2,,,,2,,,,2,,,,2,10635.50983,6814.371828,15824.79558,1,,,,2,,0.155,,,0.129,0.183,3.471982406,,,2.675929963,4.303153585,4.790956239,,,3.74458848,5.860349758,0.04398827,15,341,0.022222254,0.065754285,1,,,,,,,,,,,,,0.042857143,0.019133737,0.066580549,,,,,,,0.183,,,0.144,0.223,0.402,,,0.322,0.481,8.2,0.081117429,0.085,,,0.263,,,0.214,0.315,0.737721022,3004,4072,,,0.168731354,,,0.134037395,0.204917556,0.2,1,5,0.015594715,0.47750127,148.7,6,4034,,,24.3902439,19,779,14.68452011,38.08838713,,,,,,,,,,,,,19.85559567,9.911841818,35.52714533,,,,,,,0.146806482,462,3147,0.126551163,0.167061802,0.000247893,1,4034,,,4034,0.000250438,1,3993,,,3993,0.000500877,2,3993,,,1996.5,1459,,,,,,,,,1324,0.45,,,,,,,,,0.45,0.35,,,,,,,,0.19,0.35,0.93222182,2572,2759,0.908429412,0.956014227,0.703971119,585,831,0.594509608,0.81343263,0.023510972,45,1914,,,0.179,172,,0.112276596,0.245723404,,,,,,,,,,0.125581395,0.030506702,0.220656089,0.14,0.066387027,0.213612973,3.993273855,114583,28694,3.426859449,4.559688261,0.21215242,206,971,0.131919988,0.292384853,19.83143282,8,4034,,,160.0310363,33,20621,110.1580019,224.7430739,,,,,,,,,,,,,169.4024184,113.4514583,243.2901305,,,,6.6,,,,,0,,,,,0.090909091,160,1760,0.056412447,0.125405735,0.076217765,0.037508216,0.114927314,0.0125,9.61326E-05,0.024903867,0.007954546,0,0.021485326,0.762223366,1481,1943,0.718007493,0.806439239,,,,,,,,,,,,,0.725859247,0.644217103,0.807501392,0.276,,1943,0.212738759,0.339261241,74.09462817,,,71.41284646,76.77640987,,,,,,,,,,,,,73.68157664,70.59957541,76.76357788,,,,572.1189688,93,10913,452.2363034,714.0303654,,,,,,,,,,,,,568.970583,440.0418077,723.8700866,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.106,,,0.09,0.123,0.159,,,0.136,0.182,0.101,,,0.085,0.117,,,,,,0.085,350,,,,0.081117429,359.9180328,4437,,,,,,,,,,,,,,,,,,,,,,,,,,0.324,,,0.308,0.341,0.176686554,385,2179,0.149282298,0.204090809,0.082677165,84,1016,0.056464399,0.108889931,0.000751315,3,3993,,,1331,,,,,,,,,,,3.00615898,,,,,,,,,3.011649598,3.147589362,,,,,,,,,3.061273013,0.09435831,,,,,-3837.381333,,,,,0.792423687,41042,51793,0.636601514,0.948245859,58019,,,49878.74468,66159.25532,43482,24082.17021,62881.82979,,,,,,,61250,43201.31915,79298.68085,60234,51239.44681,69228.55319,,,,,,0.532299742,412,774,,,,,,,,0.235371172,,58019,,,4.098360656,1,244,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,37.84620678,11,29065,18.89269006,67.71731813,,,,,,,,,,,,,,,,,,,,,,,,,,0.681407035,2034,2985,,,0.557,,,,,4.554527081,,,,,0.802484472,1292,1610,0.775426564,0.82954238,0.058322412,89,1526,0.022624698,0.094020125,0.821118012,1322,1610,0.780145898,0.862090127,3993,,,,,0.244678187,977,3993,,,0.221888305,886,3993,,,0.004758327,19,3993,,,0.020786376,83,3993,,,0.005509642,22,3993,,,0.000500877,2,3993,,,0.138241923,552,3993,,,0.824442775,3292,3993,,,0.010471204,40,3820,0,0.025722692,0.491109442,1961,3993,,,1,4072,4072,, -20,187,20187,KS,Stanton County,2024,1,8080.019381,24,5515,4175.063921,14114.16779,1,,,,2,,,,2,,,,2,,,,2,,,,2,,,,2,,0.198,,,0.169,0.228,3.656603872,,,2.96951679,4.334414785,4.732545213,,,3.659225203,5.798686191,0.073619632,12,163,0.033527998,0.113711266,1,,,,,,,,,,,,,,,,,,,,,,0.194,,,0.158,0.233,0.431,,,0.342,0.517,8.6,0.026490674,0.093,,,0.32,,,0.266,0.376,0.740882918,1544,2084,,,0.163283048,,,0.128099269,0.202083986,0.333333333,2,6,0.110000414,0.553214291,195.7,4,2044,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.172683514,287,1662,0.148853727,0.196513301,,0,2044,,,,0,0,1963,,,-1963,,0,1963,,,,510,,,,,,,,,536,0.19,,,,,,,,,0.19,0.29,,,,,,,,0.35,0.29,0.799858055,1127,1409,0.682224469,0.917491642,0.327619048,172,525,0.179552648,0.475685448,0.01910828,21,1099,,,0.109,59,,0.066106383,0.151893617,,,,,,,,,,0.488095238,0.127947403,0.848243073,0.059602649,0,0.214835045,3.687841804,119357,32365,2.667608267,4.708075342,0.12749004,64,502,0,0.257827951,19.56947162,4,2044,,,,,,,,,,,,,,,,,,,,,,,,,,5.5,,,,,0,,,,,0.052941177,45,850,0.001759862,0.104122491,0.047435897,0,0.114398874,0.009411765,0,0.037390836,0,0,0.021806147,0.836400818,818,978,0.754594371,0.918207265,,,,,,,,,,,,,0.818051576,0.725396825,0.910706327,0.167,,978,0.028617859,0.305382141,78.32123383,,,74.15149256,82.4909751,,,,,,,,,,,,,,,,,,,366.6033165,24,5515,229.7483466,555.0418268,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.12,,,0.104,0.138,0.162,,,0.139,0.185,0.124,,,0.106,0.143,,,,,,0.093,190,,,,0.026490674,59.20665731,2235,,,,,,,,,,,,,,,,,,,,,,,,,,0.331,,,0.317,0.344,0.206864564,223,1078,0.17707733,0.236651798,0.111111111,68,612,0.077749409,0.144472813,0.000509424,1,1963,,,1963,,,,,,,,,,,3.320161277,,,,,,,,,,3.539271013,,,,,,,,,,0.001156668,,,,,-447.8223,,,,,0.845977275,36855,43565,0.080535403,1.611419148,76137,,,64545,87729,,,,,,,,,,36143,20868.10638,51417.89362,71375,57923.08511,84826.91489,,,,,,0.54524362,235,431,,,,,,,,0.179360889,,76137,,,15.15151515,2,132,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.572693727,776,1355,,,0.47,,,,,0.019685487,,,,,0.797297297,708,888,0.666493364,0.928101231,,,,,,0.795045045,706,888,0.709561366,0.880528725,1963,,,,,0.277636271,545,1963,,,0.186449312,366,1963,,,0.007641365,15,1963,,,0.024452369,48,1963,,,0.003565971,7,1963,,,0.002037697,4,1963,,,0.404992359,795,1963,,,0.538461539,1057,1963,,,0.083376222,162,1943,0.024250645,0.142501799,0.504330107,990,1963,,,1,2084,2084,, -20,189,20189,KS,Stevens County,2024,1,9078.280111,70,14946,6209.536875,12815.82281,0,,,,2,,,,2,,,,2,,,,2,8656.204446,5042.558081,13859.42186,1,,,,2,,0.19,,,0.162,0.221,3.683771235,,,2.912716264,4.470051555,4.950344911,,,3.961155167,5.949192701,0.052410902,25,477,0.032411467,0.072410336,0,,,,,,,,,,0.045662101,0.018014144,0.073310057,0.06097561,0.03107328,0.09087794,,,,,,,0.194,,,0.159,0.231,0.4,,,0.32,0.473,7.8,0.106917945,0.092,,,0.308,,,0.252,0.36,0.277333333,1456,5250,,,0.170166267,,,0.135167111,0.204479731,0.166666667,2,12,0.039062389,0.344663233,264.5,14,5293,,,21.94148936,33,1504,15.10351168,30.81400882,,,,,,,,,,22.09944751,12.63174372,35.88811823,22.06896552,12.61432063,35.83861738,,,,,,,0.175824176,784,4459,0.153185878,0.198462474,0.000188929,1,5293,,,5293,0.000386473,2,5175,,,2587.5,0.000772947,4,5175,,,1293.75,3901,,,,,,,,,4037,0.17,,,,,,,,,0.19,0.37,,,,,,,,0.34,0.36,0.743857494,2422,3256,0.705089523,0.782625465,0.536958369,632,1177,0.422861325,0.651055412,0.019568151,58,2964,,,0.141,210,,0.086191489,0.195808511,,,,,,,,,,0.215304799,0.053449219,0.377160379,0.181818182,0.045444856,0.318191508,3.287365517,119167,36250,2.531593216,4.043137819,0.141742523,218,1538,0.021986496,0.26149855,20.78216512,11,5293,,,84.13505505,23,27337,53.33440772,126.2438925,,,,,,,,,,,,,92.52976374,51.78820636,152.6137738,,,,6.1,,,,,0,,,,,0.129943503,230,1770,0.058306774,0.201580231,0.100230415,0.037178645,0.163282184,0.031073446,0,0.07523434,0.002259887,0,0.015188945,0.792539816,1891,2386,0.730517695,0.854561937,,,,,,,,,,,,,0.807244502,0.747728159,0.866760845,0.254,,2386,0.163032304,0.344967696,77.89894338,,,75.10573027,80.69215649,,,,,,,,,,83.16491864,69.37836384,96.95147344,77.52285324,74.15204765,80.89365883,,,,410.6670763,70,14946,317.6098871,522.4692119,,,,,,,,,,,,,431.7053262,314.8888273,577.6556921,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.118,,,0.101,0.135,0.162,,,0.14,0.184,0.115,,,0.098,0.132,,,,,,0.092,490,,,,0.106917945,611.9983147,5724,,,,,,,,,,,,,,,,,,,,,,,,,,0.335,,,0.323,0.347,0.214817321,635,2956,0.185030087,0.244604555,0.101145038,159,1572,0.068974825,0.133315251,0.00057971,3,5175,,,1725,0.904076087,83.175,92,,,,,,,,2.877702955,,,,,,,,2.561740887,3.225066829,3.021916232,,,,,,,,2.923260984,3.125056595,0.035462943,,,,,267.5088,,,,,0.606565552,35273,58152,0.333955187,0.879175918,69320,,,59033.87234,79606.12766,,,,,,,,,,59934,46228.29787,73639.70213,74231,61889.55319,86572.44681,,,,,,0.553767993,654,1181,,,,,,,,0.196999423,,69320,,,2.840909091,1,352,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,38.73266713,15,38727,21.67837977,63.88364415,,,,,,,,,,,,,,,,,,,,,,,,,,0.573728814,2031,3540,,,0.592,,,,,0.021222571,,,,,0.698542274,1198,1715,0.625781264,0.771303285,0.127853881,196,1533,0.058064425,0.197643337,0.865889213,1485,1715,0.815629624,0.916148802,5175,,,,,0.288888889,1495,5175,,,0.160966184,833,5175,,,0.007149759,37,5175,,,0.017198068,89,5175,,,0.006376812,33,5175,,,0.002512077,13,5175,,,0.388599034,2011,5175,,,0.578937198,2996,5175,,,0.079795918,391,4900,0.045669394,0.113922443,0.502608696,2601,5175,,,1,5250,5250,, -20,191,20191,KS,Sumner County,2024,1,10310.60046,404,62142,8679.166216,11942.0347,0,,,,2,,,,2,,,,2,,,,2,10169.27218,8475.122739,11863.42161,,,,,2,,0.143,,,0.119,0.169,3.289808211,,,2.60371075,4.052765035,4.791457125,,,3.903013201,5.693786089,0.072234763,128,1772,0.060181174,0.084288352,0,,,,,,,,,,,,,0.073333333,0.060754899,0.085911768,,,,,,,0.197,,,0.156,0.237,0.406,,,0.344,0.472,8.1,0.047149019,0.107,,,0.268,,,0.222,0.318,0.413769994,9261,22382,,,0.182905139,,,0.149587151,0.219835247,0.133333333,4,30,0.053844778,0.239139348,451.2,101,22385,,,18.61386139,94,5050,15.04189473,22.77865222,,,,,,,,,,,,,20.83333333,16.75246022,25.60770366,,,,,,,0.104581006,1872,17900,0.090283133,0.118878878,0.000268037,6,22385,,,3730.833333,0.000311485,7,22473,,,3210.428571,0.001112446,25,22473,,,898.92,2533,,,,,,,,,2574,0.36,,,,,,,,,0.36,0.42,,,,,,,,0.5,0.42,0.934942288,14256,15248,0.919330879,0.950553696,0.614589666,3033,4935,0.546699723,0.682479609,0.029785655,321,10777,,,0.154,825,,0.102765957,0.205234043,0.080882353,0,0.245021938,,,,,,,0.053763441,0,0.14921584,0.1352915,0.090341476,0.180241524,4.466829648,120591,26997,3.770286975,5.16337232,0.111070314,605,5447,0.070450551,0.151690077,13.8485593,31,22385,,,83.36697264,95,113954,67.44885924,101.9118009,,,,,,,,,,,,,82.74394689,65.99981259,102.4426366,,,,7.6,,,,,1,,,,,0.105179704,995,9460,0.08274061,0.127618798,0.082898242,0.062353705,0.103442779,0.012156448,0.004559678,0.019753219,0.014270613,0.005509197,0.02303203,0.815437601,8050,9872,0.795814998,0.835060204,,,,,,,,,,,,,0.790014449,0.75940229,0.820626608,0.477,,9872,0.417964137,0.536035863,75.0685752,,,73.81016871,76.32698168,,,,,,,,,,,,,75.04054196,73.74193591,76.33914801,,,,474.3513754,404,62142,424.8553162,523.8474346,,,,,,,,,,,,,478.8654524,426.6793617,531.0515431,,,,74.72910699,18,24087,44.28920488,118.1042067,,,,,,,,,,,,,73.67387033,41.23470596,121.5138451,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.103,,,0.087,0.12,0.161,,,0.138,0.185,0.095,,,0.08,0.111,139.4,26,18645,,,0.107,2420,,,,0.047149019,1137.800115,24132,,,14.74948008,10,67799,7.072949005,27.12481901,,,,,,,,,,,,,,,,,,,0.333,,,0.315,0.35,0.127640915,1601,12543,0.108577086,0.146704745,0.053004786,299,5641,0.037515425,0.068494148,0.000489476,11,22473,,,2043,0.885032895,269.05,304,,,,,,,,2.884460538,,,,,,,,,2.882195137,2.799181328,,,,,,,,,2.834039353,0.044196466,,,,,-139.6104571,,,,,0.740614958,40562,54768,0.631265256,0.849964659,62921,,,55751.80851,70090.19149,,,,231458,153669.234,309246.766,35096,7912.170213,62279.82979,73854,26866.42553,120841.5745,58793,53498.02128,64087.97872,,,,,,0.424743444,1490,3508,,,59.17370595,,,,,0.217034059,,62921,,,7.385524372,10,1354,,,,,,,,,,,,,,,,,,,,,,,,,,23.04733816,25,113954,14.61003537,34.58232338,21.93867701,,,,,,,,,,,,,20.80947171,12.33301177,32.8879368,,,,17.55094161,20,113954,10.7205711,27.10600585,,,,,,,,,,,,,15.76075179,9.008631429,25.59447349,,,,19.28328388,31,160761,13.10205583,27.37108223,,,,,,,,,,,,,18.81323337,12.39803934,27.37226682,,,,,,,,,,,0.634795237,10928,17215,,,0.638,,,,,22.32514643,,,,,0.743678289,6676,8977,0.714378854,0.772977724,0.08882224,770,8669,0.064621196,0.113023284,0.83914448,7533,8977,0.809060025,0.869228936,22473,,,,,0.241222801,5421,22473,,,0.201530726,4529,22473,,,0.012548391,282,22473,,,0.013438348,302,22473,,,0.006674676,150,22473,,,0.000400481,9,22473,,,0.062919948,1414,22473,,,0.882525698,19833,22473,,,0.004248289,90,21185,0,0.010401067,0.496551417,11159,22473,,,0.626485569,14022,22382,, -20,193,20193,KS,Thomas County,2024,1,8557.847756,104,21409,6066.82498,11048.87053,0,,,,2,,,,2,,,,2,,,,2,9124.313018,6576.002261,12333.42054,,,,,2,,0.138,,,0.116,0.164,3.186001954,,,2.473337675,3.953091616,4.716717774,,,3.750504173,5.66476397,0.06949807,54,777,0.05161712,0.087379019,0,,,,,,,,,,,,,0.065967017,0.047128891,0.084805142,,,,,,,0.171,,,0.134,0.212,0.385,,,0.31,0.455,7.4,0.176603819,0.076,,,0.248,,,0.201,0.299,0.780201765,6187,7930,,,0.18319611,,,0.147184702,0.220272272,0.3125,5,16,0.177519792,0.449075671,380.9,30,7877,,,13.84083045,32,2312,9.467117782,19.53912287,,,,,,,,,,,,,11.98202696,7.677110761,17.82830634,,,,,,,0.113790871,703,6178,0.09711002,0.130471722,0.000507808,4,7877,,,1969.25,0.000506778,4,7893,,,1973.25,0.001773724,14,7893,,,563.7857143,3961,,,,,,,,,4027,0.51,,,,,,,,,0.52,0.21,,,,,,,,,0.21,0.94463528,4675,4949,0.926340498,0.962930061,0.77027027,1368,1776,0.618717807,0.921822733,0.019307747,82,4247,,,0.1,186,,0.065446809,0.134553192,,,,,,,,,,0.039647577,0,0.150537076,0.056662516,0,0.118409665,3.858316614,121155,31401,2.707251638,5.00938159,0.137894174,258,1871,0.047676603,0.228111746,19.04278279,15,7877,,,92.65216832,36,38855,64.89243963,128.2696551,,,,,,,,,,,,,101.1619169,70.46298168,140.6917376,,,,5.4,,,,,0,,,,,0.057663126,190,3295,0.025363027,0.089963225,0.056183206,0.021291289,0.091075123,0.002427921,0,0.010512425,0.001213961,0,0.006827139,0.837613108,3425,4089,0.787976115,0.887250102,,,,,,,,,,,,,0.840288511,0.782655415,0.897921607,0.099,,4089,0.052227403,0.145772597,77.84084549,,,75.67353882,80.00815217,,,,,,,,,,,,,77.42509907,75.11874831,79.73144984,,,,397.0229937,104,21409,315.9912585,478.0547289,,,,,,,,,,,,,411.9304548,329.0354165,509.3583865,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.099,,,0.084,0.115,0.157,,,0.134,0.18,0.096,,,0.081,0.111,,,,,,0.076,600,,,,0.176603819,1395.170169,7900,,,,,,,,,,,,,,,,,,,,,,,,,,0.307,,,0.29,0.323,0.136046512,585,4300,0.113408214,0.15868481,0.06362237,124,1949,0.043367051,0.08387769,0.002280502,18,7893,,,438.5,,,,,,,,,,,2.754336223,,,,,,,,,2.753091994,2.751039468,,,,,,,,,2.795320482,0.037906378,,,,,2148.2795,,,,,0.679280086,37931,55840,0.50031803,0.858242142,62916,,,54255.06383,71576.93617,,,,,,,,,,83563,40665.80851,126460.1915,71719,58941.46809,84496.53192,,,,,,0.394112837,482,1223,,,,,,,,0.217051307,,62916,,,1.949317739,1,513,,,,,,,,,,,,,,,,,,,,,,,,,,27.39345743,10,38855,12.52603308,52.00131511,25.73671342,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.29792685,10,54651,8.774567156,33.65053895,,,,,,,,,,,,,20.43944814,9.801509854,37.58887285,,,,,,,,,,,0.665502183,3810,5725,,,0.65,,,,,45.75598416,,,,,0.723553851,2264,3129,0.676164513,0.770943189,0.073719008,223,3025,0.018033828,0.129404189,0.875998722,2741,3129,0.830071355,0.921926088,7893,,,,,0.240339541,1897,7893,,,0.188648169,1489,7893,,,0.011655898,92,7893,,,0.011909287,94,7893,,,0.006461422,51,7893,,,0.001266945,10,7893,,,0.082858229,654,7893,,,0.880020271,6946,7893,,,0.012064525,89,7377,0,0.025166683,0.509692132,4023,7893,,,0.310592686,2463,7930,, -20,195,20195,KS,Trego County,2024,1,4847.447151,45,7401,2713.079373,7995.126899,1,,,,2,,,,2,,,,2,,,,2,5083.224574,2779.046176,8528.787094,1,,,,2,,0.131,,,0.107,0.156,3.113377033,,,2.421723041,3.868540804,4.89171709,,,3.920791771,5.949987634,0.069306931,14,202,0.034282429,0.104331432,1,,,,,,,,,,,,,0.063157895,0.028569828,0.097745962,,,,,,,0.167,,,0.128,0.207,0.353,,,0.28,0.432,9,0.027974945,0.074,,,0.237,,,0.188,0.288,0.728988604,2047,2808,,,0.172757808,,,0.138751707,0.210306867,0.142857143,1,7,0.008995928,0.386311364,179,5,2793,,,19.76284585,10,506,9.477052759,36.34457716,,,,,,,,,,,,,23.4741784,11.25678098,43.16984986,,,,,,,0.119941492,246,2051,0.102069152,0.137813832,0.000716076,2,2793,,,1396.5,0,0,2752,,,-2752,0.001090116,3,2752,,,917.3333333,3555,,,,,,,,,3578,0.4,,,,,,,,,0.4,0.25,,,,,,,,,0.25,0.94540364,2026,2143,0.917800782,0.973006497,0.622033898,367,590,0.421167214,0.822900582,0.024300442,33,1358,,,0.124,62,,0.075148936,0.172851064,,,,,,,,,,,,,0.054945055,0,0.132448051,3.620768388,118935,32848,2.792673734,4.448863041,0.123552124,64,518,0.033713177,0.21339107,25.06265664,7,2793,,,85.52490913,12,14031,44.19196856,149.3948047,,,,,,,,,,,,,90.73037956,46.88171109,158.487714,,,,5.3,,,,,0,,,,,0.025830258,35,1355,0.000268188,0.051392329,0.028996283,0,0.065270041,0,0,0.019345215,0.00295203,0,0.012661958,0.793447293,1114,1404,0.724948306,0.861946281,,,,,,,,,,,,,0.7890625,0.754269438,0.823855563,0.199,,1404,0.107386942,0.290613058,79.42511729,,,76.96156874,81.88866584,,,,,,,,,,,,,79.1068779,76.56209441,81.65166139,,,,318.507602,45,7401,223.0788087,440.9487765,,,,,,,,,,,,,329.8716113,229.7676638,458.7715576,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.095,,,0.08,0.111,0.156,,,0.133,0.18,0.088,,,0.074,0.103,0,0,2428,,,0.074,210,,,,0.027974945,83.95280833,3001,,,,,,,,,,,,,,,,,,,,,,,,,,0.31,,,0.292,0.327,0.136275146,210,1541,0.113636848,0.158913444,0.071698113,38,530,0.049059815,0.094336411,0.001816861,5,2752,,,550.4,,,,,,,,,,,2.819052822,,,,,,,,,2.80843778,2.638881876,,,,,,,,,2.6693433,,,,,,2363.449,,,,,0.690441533,39844,57708,0.461598427,0.91928464,54628,,,47381.3617,61874.6383,,,,,,,,,,,,,77717,55643.46809,99790.53192,,,,,,0.304785894,121,397,,,,,,,,0.249981694,,54628,,,7.633587786,1,131,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.716483517,1630,2275,,,0.624,,,,,8.891332726,,,,,0.820336391,1073,1308,0.780796515,0.859876268,0.042635659,55,1290,0,0.090720071,0.856269113,1120,1308,0.810904348,0.901633878,2752,,,,,0.183866279,506,2752,,,0.267805233,737,2752,,,0.005450581,15,2752,,,0.004360465,12,2752,,,0.005087209,14,2752,,,0.000363372,1,2752,,,0.030886628,85,2752,,,0.9375,2580,2752,,,0,0,2640,0,0.019858156,0.489462209,1347,2752,,,1,2808,2808,, -20,197,20197,KS,Wabaunsee County,2024,1,7281.523017,96,19037,5099.889202,10080.69712,0,,,,2,,,,2,,,,2,,,,2,7100.922205,4824.732125,10079.19226,,,,,2,,0.125,,,0.104,0.147,2.988005986,,,2.331371356,3.74028835,4.6476251,,,3.754981464,5.656505048,0.044692737,24,537,0.027216057,0.062169418,0,,,,,,,,,,,,,0.044265594,0.026182213,0.062348975,,,,,,,0.161,,,0.128,0.2,0.37,,,0.301,0.446,7.8,0.128797541,0.082,,,0.231,,,0.188,0.28,0.144685183,995,6877,,,0.186024448,,,0.151112864,0.226844435,0.461538462,6,13,0.318103058,0.587460254,172.3,12,6966,,,14.26630435,21,1472,8.831067245,21.80756164,,,,,,,,,,,,,14.79750779,8.909066327,23.10814141,,,,,,,0.090742101,494,5444,0.077635718,0.103848484,0.000430663,3,6966,,,2322,,0,7019,,,,0.000712352,5,7019,,,1403.8,1634,,,,,,,,,1647,0.49,,,,,,,,,0.48,0.53,,,,,,,,,0.53,0.965762004,4626,4790,0.95099714,0.980526869,0.770949721,1104,1432,0.643493325,0.898406117,0.024618678,92,3737,,,0.098,151,,0.05987234,0.13612766,,,,,,,,,,0.081818182,0,0.283203983,0.049743965,0.027834412,0.071653518,3.48707213,128258,36781,2.912914968,4.061229292,0.103491272,166,1604,0.052240779,0.154741764,11.48435257,8,6966,,,75.19666821,26,34576,49.12096025,110.1805417,,,,,,,,,,,,,82.04480909,53.59439323,120.2146547,,,,8.1,,,,,1,,,,,0.071691177,195,2720,0.048500938,0.094881415,0.039396171,0.01669192,0.062100421,0.023897059,0.007848831,0.039945286,0.010661765,0,0.021738774,0.737215034,2393,3246,0.690395767,0.784034301,,,,,,,,,,,,,0.582119205,0.513804683,0.650433727,0.461,,3246,0.381768197,0.540231803,79.07334182,,,76.85624548,81.29043816,,,,,,,,,,,,,79.40055047,77.07338325,81.72771769,,,,340.272886,96,19037,269.3972483,424.0815429,,,,,,,,,,,,,328.6305681,255.6941977,415.9030168,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.091,,,0.078,0.107,0.153,,,0.131,0.176,0.085,,,0.072,0.1,,,,,,0.082,570,,,,0.128797541,908.4090537,7053,,,,,,,,,,,,,,,,,,,,,,,,,,0.305,,,0.288,0.321,0.106753247,411,3850,0.088880906,0.124625587,0.054556355,91,1668,0.035492525,0.073620185,0.00014247,1,7019,,,7019,,,,,,,,,,,3.390196564,,,,,,,,,3.417727176,3.389167211,,,,,,,,,3.46347044,0.041977327,,,,,4128.5215,,,,,0.782017218,44148,56454,0.568064442,0.995969993,68435,,,60617.6383,76252.3617,,,,,,,,,,52857,49941.42553,55772.57447,71111,62600.19149,79621.80851,,,,,,0.238589212,230,964,,,,,,,,0.199547015,,68435,,,5.208333333,2,384,,,,,,,,,,,,,,,,,,,,,,,,,,33.88132788,10,34576,15.49270058,64.31731416,28.92179547,,,,,,,,,,,,,37.9140131,17.33670106,71.97260688,,,,,,,,,,,,,,,,,,,,,,,,,,,26.84951877,13,48418,14.29623795,45.91349481,,,,,,,,,,,,,29.1761115,15.53505059,49.89203923,,,,,,,,,,,0.745367717,3902,5235,,,0.642,,,,,5.307377648,,,,,0.819066148,2105,2570,0.771664265,0.866468031,0.05387071,135,2506,0.028385014,0.079356406,0.811284047,2085,2570,0.768213564,0.85435453,7019,,,,,0.224960821,1579,7019,,,0.224105998,1573,7019,,,0.008833167,62,7019,,,0.010542812,74,7019,,,0.004986465,35,7019,,,0.000284941,2,7019,,,0.051004417,358,7019,,,0.899415871,6313,7019,,,0.001833181,12,6546,0,0.013007655,0.486394073,3414,7019,,,1,6877,6877,, -20,199,20199,KS,Wallace County,2024,0,,,,,,2,,,,2,,,,2,,,,2,,,,2,,,,2,,,,2,,0.139,,,0.116,0.163,3.13848375,,,2.430890181,3.927878104,4.701055281,,,3.699026408,5.786961763,0.090322581,14,155,0.045196034,0.135449127,1,,,,,,,,,,,,,0.097222222,0.048833069,0.145611376,,,,,,,0.167,,,0.13,0.206,0.38,,,0.299,0.461,7.9,0.084551141,0.098,,,0.248,,,0.202,0.299,0.531746032,804,1512,,,0.168061607,,,0.134381605,0.204918359,0,0,4,0,0.360186253,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.105172414,122,1160,0.088491563,0.121853265,0,0,1508,,,-1508,0,0,1488,,,-1488,0.001344086,2,1488,,,744,2305,,,,,,,,,2362,0.46,,,,,,,,,0.46,0.32,,,,,,,,,0.32,0.925636008,946,1022,0.873561901,0.977710115,0.735915493,209,284,0.577619826,0.89421116,0.019953052,17,852,,,0.19,77,,0.122085106,0.257914894,,,,,,,,,,0.34375,0.142827086,0.544672914,0.28990228,0.151104131,0.42870043,3.572072072,99125,27750,2.638419362,4.505724782,0.103151863,36,349,0,0.225288624,26.52519894,4,1508,,,,,,,,,,,,,,,,,,,,,,,,,,5.2,,,,,0,,,,,0.038461539,25,650,0.000146652,0.076776425,0.023333333,0,0.091211395,0.015384615,0,0.057612853,0.006153846,0,0.027037276,0.7489301,525,701,0.731980233,0.765879967,,,,,,,,,,,,,0.735191638,0.677803743,0.792579533,0.157,,701,0.071163135,0.242836865,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.099,,,0.084,0.114,0.155,,,0.133,0.178,0.095,,,0.08,0.111,0,0,1199,,,0.098,150,,,,0.084551141,125.5584447,1485,,,,,,,,,,,,,,,,,,,,,,,,,,0.321,,,0.302,0.338,0.128989362,97,752,0.106351064,0.15162766,0.063679245,27,424,0.041040947,0.086317543,0.000672043,1,1488,,,1488,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-1171.41224,,,,,0.780026761,36726,47083,0.611897208,0.948156314,62309,,,52839.04255,71778.95745,,,,,,,,,,115625,57032.31915,174217.6809,54722,40324.04255,69119.95745,,,,,,0.309027778,89,288,,,,,,,,0.219165771,,62309,,,,,107,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.714285714,825,1155,,,0.545,,,,,0.013240583,,,,,0.704374057,467,663,0.621842845,0.78690527,0.048903879,29,593,0,0.130038709,0.882352941,585,663,0.826918276,0.937787607,1488,,,,,0.273521505,407,1488,,,0.232526882,346,1488,,,0.009408602,14,1488,,,0.005376344,8,1488,,,0.002016129,3,1488,,,0,0,1488,,,0.081317204,121,1488,,,0.885080645,1317,1488,,,0.012381646,17,1373,0,0.048080935,0.49327957,734,1488,,,1,1512,1512,, -20,201,20201,KS,Washington County,2024,1,5032.413619,65,14372,3029.841738,7858.737242,1,,,,2,,,,2,,,,2,,,,2,5348.991868,3170.151582,8453.713241,1,,,,2,,0.144,,,0.119,0.171,3.239932134,,,2.525966993,4.005694941,4.720326229,,,3.782162745,5.718990026,0.063492064,32,504,0.042203015,0.084781112,0,,,,,,,,,,,,,0.066666667,0.043994013,0.08933932,,,,,,,0.188,,,0.149,0.23,0.421,,,0.35,0.499,7.5,0.154912596,0.084,,,0.272,,,0.222,0.323,0.327305606,1810,5530,,,0.177362555,,,0.142917812,0.213814316,0,0,4,0,0.360186253,145.2,8,5511,,,10.58710298,11,1039,5.285043664,18.9432517,,,,,,,,,,,,,12.70207852,6.340831833,22.72752715,,,,,,,0.135167464,565,4180,0.116103634,0.154231294,0.000725821,4,5511,,,1377.75,0.000181785,1,5501,,,5501,,0,5501,,,,3176,,,,,,,,,3183,0.52,,,,,,,,,0.52,0.26,,,,,,,,,0.26,0.935165975,3606,3856,0.919102881,0.951229069,0.663926941,727,1095,0.579806306,0.748047575,0.019653564,59,3002,,,0.107,139,,0.064106383,0.149893617,,,,,,,,,,0.424778761,0.143193892,0.70636363,0.119175627,0.048985162,0.189366092,3.600536288,102050,28343,3.222862025,3.978210551,0.118630573,149,1256,0.073413935,0.163847212,30.84739612,17,5511,,,73.39718889,20,27249,44.83290978,113.3560054,,,,,,,,,,,,,74.77076857,45.01688704,116.7638171,,,,7.1,,,,,0,,,,,0.058091286,140,2410,0.036886504,0.079296068,0.047579299,0.0189539,0.076204697,0.009958506,0,0.022334812,0.003319502,0,0.012814591,0.809891808,2096,2588,0.795076555,0.824707062,,,,,,,,,,,,,0.780089153,0.764556127,0.795622179,0.265,,2588,0.211768288,0.318231713,80.51381781,,,78.33541964,82.69221598,,,,,,,,,,,,,80.22592027,77.93995899,82.51188155,,,,286.8104585,65,14372,216.0648885,373.323235,,,,,,,,,,,,,294.957379,220.2882787,386.7973604,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.101,,,0.085,0.118,0.158,,,0.136,0.183,0.092,,,0.078,0.107,,,,,,0.084,460,,,,0.154912596,898.3381416,5799,,,,,,,,,,,,,,,,,,,,,,,,,,0.325,,,0.308,0.341,0.163017032,469,2877,0.137995755,0.188038308,0.076809454,104,1354,0.052979666,0.100639241,0.000545355,3,5501,,,1833.666667,,,,,,,,,,,3.452565948,,,,,,,,,3.486793995,3.13584218,,,,,,,,,3.148987967,0.142646981,,,,,780.6191,,,,,0.727722087,36806,50577,0.565121665,0.890322509,63797,,,56546.78723,71047.21277,,,,,,,,,,38750,21017.06383,56482.93617,58011,51220.70213,64801.29787,,,,,,0.394026975,409,1038,,,,,,,,0.214053952,,63797,,,7.751937985,3,387,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.698909091,2883,4125,,,0.631,,,,,4.745016704,,,,,0.76834471,1801,2344,0.743444542,0.793244878,0.058070416,127,2187,0.025549959,0.090590874,0.723122867,1695,2344,0.677133629,0.769112105,5501,,,,,0.238320305,1311,5501,,,0.23813852,1310,5501,,,0.005635339,31,5501,,,0.004908199,27,5501,,,0.007816761,43,5501,,,0.000545355,3,5501,,,0.04926377,271,5501,,,0.924195601,5084,5501,,,0.014172005,73,5151,0.000495519,0.027848492,0.485548082,2671,5501,,,1,5530,5530,, -20,203,20203,KS,Wichita County,2024,1,14003.57154,30,5668,8157.596468,22421.07458,1,,,,2,,,,2,,,,2,,,,2,,,,2,,,,2,,0.163,,,0.138,0.19,3.408948376,,,2.692907181,4.249096443,4.687021146,,,3.766662848,5.764385,0.066985646,14,209,0.033092025,0.100879267,1,,,,,,,,,,,,,,,,,,,,,,0.179,,,0.145,0.216,0.4,,,0.323,0.477,8.5,0.02166112,0.1,,,0.276,,,0.227,0.325,0.744423792,1602,2152,,,0.168910813,,,0.135515165,0.205251493,0.285714286,2,7,0.086061846,0.500925625,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.178637201,291,1629,0.154807414,0.202466988,0.000960615,2,2082,,,1041,0.000484496,1,2064,,,2064,,0,2064,,,,3265,,,,,,,,,3560,0.51,,,,,,,,0.45,0.52,0.41,,,,,,,,0.49,0.39,0.881818182,1358,1540,0.797816283,0.965820081,0.685053381,385,562,0.560059456,0.810047305,0.020069808,23,1146,,,0.122,69,,0.077914894,0.166085106,,,,,,,,,,0.429319372,0.273691732,0.584947012,0.00974026,0,0.077342597,5.234782609,150500,28750,1.59892355,8.870641667,0.089108911,45,505,0.002464255,0.175753567,38.42459174,8,2082,,,95.19276535,10,10505,45.64863109,175.0628847,,,,,,,,,,,,,,,,,,,5.7,,,,,0,,,,,0.069518717,65,935,0.021305264,0.117732169,0.04189044,0,0.096946993,0.021390374,0,0.062382765,0,0,0.01982377,0.741061755,684,923,0.628384306,0.853739205,,,,,,,,,,,,,0.78338945,0.655255227,0.911523674,0.188,,923,0.090428733,0.285571267,73.6282873,,,68.72859805,78.52797654,,,,,,,,,,,,,,,,,,,483.4802678,30,5668,315.8253628,708.4106125,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.107,,,0.092,0.123,0.154,,,0.132,0.175,0.108,,,0.092,0.125,,,,,,0.1,210,,,,0.02166112,48.39094216,2234,,,,,,,,,,,,,,,,,,,,,,,,,,0.325,,,0.311,0.339,0.203839123,223,1094,0.174051888,0.233626357,0.128070175,73,570,0.089942516,0.166197835,0.001937985,4,2064,,,516,,,,,,,,,,,2.79975327,,,,,,,,,,3.015079291,,,,,,,,,,0.005442611,,,,,-1027.986,,,,,0.891933375,47070,52773,0.725240539,1.058626211,68225,,,61995.89362,74454.10638,,,,,,,,,,,,,83942,63145.74468,104738.2553,,,,,,0.407792208,157,385,,,,,,,,0.200161231,,68225,,,,,136,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.656271186,968,1475,,,0.575,,,,,,,,,,0.843181818,742,880,0.775330673,0.911032963,0.046457607,40,861,0,0.105853377,0.931818182,820,880,0.855795381,1,2064,,,,,0.276647287,571,2064,,,0.20881783,431,2064,,,0.012596899,26,2064,,,0.015503876,32,2064,,,0.003875969,8,2064,,,0.000484496,1,2064,,,0.292151163,603,2064,,,0.677810078,1399,2064,,,0.037397541,73,1952,0.001351123,0.073443959,0.463178295,956,2064,,,1,2152,2152,, -20,205,20205,KS,Wilson County,2024,1,11380.93832,177,22966,8606.862866,14155.01377,0,,,,2,,,,2,,,,2,,,,2,10652.73682,7924.828586,13380.64506,,,,,2,,0.165,,,0.139,0.193,3.69295864,,,2.97166023,4.538669048,5.275430964,,,4.296135511,6.327209705,0.075801749,52,686,0.055994863,0.095608635,0,,,,,,,,,,,,,0.073846154,0.053741116,0.093951192,,,,,,,0.213,,,0.171,0.256,0.37,,,0.301,0.445,7.3,0.077565016,0.129,,,0.265,,,0.219,0.315,0.347054731,2993,8624,,,0.161749322,,,0.129238325,0.197919123,0.166666667,3,18,0.057993584,0.308188518,304.9,26,8526,,,28.84615385,54,1872,21.67011858,37.6379735,,,,,,,,,,,,,30.52959502,22.58596246,40.36174367,,,,,,,0.108859205,709,6513,0.093369843,0.124348566,0.000469153,4,8526,,,2131.5,0.000347947,3,8622,,,2874,0.000115982,1,8622,,,8622,3085,,,,,,,,,3141,0.49,,,,,,,,,0.49,0.31,,,,,,,,,0.31,0.913159653,5468,5988,0.891851996,0.934467309,0.600332594,1083,1804,0.494733277,0.705931911,0.031426269,117,3723,,,0.172,350,,0.102893617,0.241106383,,,,,,,,,,0.225225225,0.01341194,0.437038511,0.131476323,0.075804699,0.187147947,5.193226717,110408,21260,4.164885603,6.221567831,0.289995167,600,2069,0.17397076,0.406019573,22.28477598,19,8526,,,147.3580801,63,42753,113.2339948,188.5349971,,,,,,,,,,,,,147.8799623,112.2914553,191.1691434,,,,8.7,,,,,1,,,,,0.135172414,490,3625,0.10475621,0.165588618,0.104881451,0.074870242,0.134892659,0.01737931,0.004153547,0.030605074,0.027586207,0.013218993,0.041953421,0.839637306,3241,3860,0.805673021,0.873601591,,,,,,,,,,,,,0.810235768,0.788432246,0.832039289,0.205,,3860,0.153863031,0.256136969,73.98300677,,,71.93694354,76.02907,,,,,,,,,,,,,74.313858,72.30542077,76.32229523,,,,530.1052362,177,22966,444.3642565,615.8462159,,,,,,,,,,,,,521.4336952,434.3815319,608.4858584,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.115,,,0.098,0.132,0.169,,,0.146,0.194,0.105,,,0.089,0.121,,,,,,0.129,1120,,,,0.077565016,729.8092369,9409,,,,,,,,,,,,,,,,,,,,,,,,,,0.333,,,0.315,0.35,0.138290788,623,4505,0.11684398,0.159737597,0.044486512,94,2113,0.03018864,0.058784384,0.001507771,13,8622,,,663.2307692,,,,,,,,,,,2.833306075,,,,,,,,,2.810245843,2.648419004,,,,,,,,,2.637893678,0.060448979,,,,,1153.9563,,,,,0.852766798,41424,48576,0.72540442,0.980129177,52064,,,44776.85106,59351.14894,,,,,,,,,,,,,56250,50908.55319,61591.44681,,,,,,0.508104738,815,1604,,,,,,,,0.262292563,,52064,,,3.629764065,2,551,,,,,,,,,,,,,,,,,,,,,,,,,,35.65337498,13,42753,18.42261912,62.27927099,30.40722289,,,,,,,,,,,,,35.88412973,17.91322827,64.20662031,,,,28.06820574,12,42753,14.50325149,49.02950681,,,,,,,,,,,,,28.04619974,14.00056186,50.18239849,,,,41.43737983,25,60332,26.8160874,61.1697469,,,,,,,,,,,,,43.33537973,27.76579548,64.47960997,,,,,,,,,,,0.603203661,3954,6555,,,0.558,,,,,6.047678853,,,,,0.725658648,2534,3492,0.679753238,0.771564058,0.120803357,403,3336,0.084817653,0.156789062,0.743127148,2595,3492,0.686716679,0.799537616,8622,,,,,0.239387613,2064,8622,,,0.2328926,2008,8622,,,0.00637903,55,8622,,,0.015541638,134,8622,,,0.005451171,47,8622,,,0.001159824,10,8622,,,0.041289724,356,8622,,,0.906518209,7816,8622,,,0.000981114,8,8154,0,0.010233153,0.500231965,4313,8622,,,1,8624,8624,, -20,207,20207,KS,Woodson County,2024,1,7377.025248,63,8285,4861.506123,10733.18443,0,,,,2,,,,2,,,,2,,,,2,7753.279788,5064.699771,11360.35129,,,,,2,,0.154,,,0.127,0.181,3.439343335,,,2.687480287,4.262145455,4.940354024,,,3.950779686,5.988603663,0.055299539,12,217,0.024888307,0.085710772,1,,,,,,,,,,,,,0.055276382,0.023525798,0.087026966,,,,,,,0.198,,,0.157,0.24,0.39,,,0.309,0.473,7.4,0.098394268,0.113,,,0.258,,,0.209,0.308,0.626966292,1953,3115,,,0.162453325,,,0.129401414,0.199730779,0.333333333,2,6,0.110000414,0.553214291,225.7,7,3102,,,37.5,24,640,24.02695759,55.79702749,,,,,,,,,,,,,30.92783505,18.32979516,48.87931317,,,,,,,0.116760017,271,2321,0.098887677,0.134632358,,0,3102,,,,0.000321647,1,3109,,,3109,0.000321647,1,3109,,,3109,970,,,,,,,,,976,0.45,,,,,,,,,0.45,0.36,,,,,,,,,0.36,0.920240137,2146,2332,0.889228386,0.951251889,0.552486188,400,724,0.42981498,0.675157396,0.035087719,54,1539,,,0.192,118,,0.122893617,0.261106383,,,,,,,,,,,,,0.18,0.1080501,0.2519499,3.843137255,98000,25500,2.865993004,4.820281506,0.180967239,116,641,0.075241567,0.28669291,9.671179884,3,3102,,,89.82996471,14,15585,49.11087762,150.7194169,,,,,,,,,,,,,90.32168415,48.09249282,154.4528307,,,,8.3,,,,,0,,,,,0.079136691,110,1390,0.049114796,0.109158585,0.056439942,0.021963622,0.090916262,0.002877698,0,0.019760723,0.020863309,0.003588205,0.038138414,0.812745869,1033,1271,0.752472351,0.873019388,,,,,,,,,,,,,0.815730337,0.738046226,0.893414449,0.284,,1271,0.195364082,0.372635918,76.35664374,,,73.81051179,78.90277568,,,,,,,,,,,,,76.05012027,73.40336269,78.69687786,,,,461.3669129,63,8285,341.321782,609.9515263,,,,,,,,,,,,,477.8373123,351.096884,635.4223274,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.107,,,0.091,0.124,0.166,,,0.143,0.189,0.101,,,0.085,0.117,,,,,,0.113,360,,,,0.098394268,325.5866336,3309,,,,,,,,,,,,,,,,,,,,,,,,,,0.327,,,0.31,0.345,0.13986014,240,1716,0.117221842,0.162498438,0.052713178,34,645,0.036032327,0.069394029,0,0,3109,,,-3109,,,,,,,,,,,3.313076148,,,,,,,,,3.266722262,3.083675095,,,,,,,,,3.028268585,,,,,,2981.951,,,,,0.779081355,34398,44152,0.634772413,0.923390297,49477,,,42125.51064,56828.48936,,,,,,,,,,,,,52543,45127.17021,59958.82979,,,,,,0.513126492,215,419,,,,,,,,0.276007034,,49477,,,,,160,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.61471173,1546,2515,,,0.55,,,,,13.45317292,,,,,0.818631492,993,1213,0.770726009,0.866536976,0.067969414,80,1177,0.023240538,0.11269829,0.806265458,978,1213,0.769264496,0.843266419,3109,,,,,0.200707623,624,3109,,,0.25377935,789,3109,,,0.005467996,17,3109,,,0.013830814,43,3109,,,0.001608234,5,3109,,,0,0,3109,,,0.033772917,105,3109,,,0.922483114,2868,3109,,,0.00405954,12,2956,0,0.022134994,0.494692827,1538,3109,,,1,3115,3115,, -20,209,20209,KS,Wyandotte County,2024,1,11139.93816,2785,473262,10571.5327,11708.34362,0,,,,2,5515.105237,4007.283908,7403.77136,,17865.71115,16176.74466,19554.67763,,8301.852914,7399.685591,9204.020236,,9983.462533,9143.458817,10823.46625,,,,,2,,0.206,,,0.182,0.232,3.786689108,,,3.239563356,4.38036628,5.417163353,,,4.792410379,6.090269011,0.094940307,1670,17590,0.090608321,0.099272293,0,,,,0.07435653,0.058480213,0.090232847,0.155933132,0.144161769,0.167704496,0.070095585,0.063931837,0.076259333,0.086797704,0.079519947,0.094075461,0.131578947,0.055579987,0.207577908,0.116161616,0.084602398,0.147720834,0.219,,,0.189,0.25,0.415,,,0.383,0.45,7.1,0.135764463,0.109,,,0.353,,,0.318,0.388,0.927359745,156951,169245,,,0.172821857,,,0.150136456,0.197323103,0.174242424,23,132,0.132013675,0.220469914,921.9,1540,167046,,,38.08866105,1434,37649,36.11724993,40.06007217,,,,17.29278474,11.58124934,24.83532346,45.8916616,41.25912159,50.5242016,42.84055491,39.66914667,46.01196315,27.69739562,24.38129569,31.01349554,,,,30.56478405,22.3772634,40.76913868,0.179490598,25581,142520,0.162809747,0.196171449,0.000556733,93,167046,,,1796.193548,0.000440433,73,165746,,,2270.493151,0.001816032,301,165746,,,550.6511628,4062,,,,,,1020,5593,3403,3576,0.42,,,,,,0.27,0.45,0.32,0.43,0.46,,,,,0.5,0.26,0.37,0.37,0.5,0.813600861,86978,106905,0.803492626,0.823709095,0.530448615,24677,46521,0.501299482,0.559597747,0.034767153,2719,78206,,,0.206,9049,,0.151191489,0.260808511,0.083732057,0,0.213865643,0.304726785,0.201071289,0.408382281,0.411993861,0.341760917,0.482226806,0.276836458,0.248894127,0.30477879,0.148540668,0.110161853,0.186919483,4.380952381,109940,25095,4.076683319,4.685221443,0.332063659,15169,45681,0.301299238,0.36282808,10.29656502,172,167046,,,98.62956811,817,828352,91.86636898,105.3927672,,,,51.16398056,32.06419422,77.46288143,133.6203282,116.6796944,150.560962,73.30398474,62.62464588,83.9833236,103.219302,92.3114869,114.1271171,,,,9.4,,,,,0,,,,,0.179884106,10865,60400,0.165599873,0.194168339,0.133892703,0.121320745,0.146464661,0.045281457,0.036853146,0.053709768,0.012748344,0.009308838,0.016187851,0.771470577,59296,76861,0.754518617,0.788422537,0.782608696,0.596978107,0.968239284,0.678186969,0.585427434,0.770946504,0.77836745,0.746217263,0.810517638,0.750279677,0.717494636,0.783064718,0.85919193,0.843097086,0.875286774,0.237,,76861,0.218773718,0.255226283,74.02772959,,,73.56518477,74.49027441,,,,79.51427355,76.1352795,82.89326759,69.88531193,68.78185575,70.98876811,79.31169164,77.76724641,80.85613687,74.41037058,73.7572855,75.06345567,,,,533.4346714,2785,473262,513.2543472,553.6149956,,,,309.7099179,220.2340277,423.3836533,730.5808027,678.7869743,782.374631,359.6711825,322.4084033,396.9339617,525.0629453,495.9838468,554.1420438,,,,82.94083051,165,198937,70.28523811,95.59642292,,,,,,,140.1682018,105.8815533,182.0200691,78.02371921,60.21705926,99.44763506,49.64056554,32.71344548,72.22441662,,,,7.163880713,129,18007,5.927621441,8.400139985,,,,,,,12.62493425,9.308629885,16.73883119,5.483625286,3.840663735,7.591648818,4.480584135,2.952733178,6.519014677,,,,,,,0.12,,,0.106,0.135,0.172,,,0.153,0.191,0.15,,,0.135,0.165,345.9,464,134142,,,0.109,18340,,,,0.135764463,21383.5817,157505,,,24.91260497,124,497740,20.52765775,29.2975522,,,,,,,29.25521875,19.87750177,41.5254478,13.94774246,8.633872414,21.32060595,32.72844454,25.25912254,41.71508923,,,,0.378,,,0.368,0.387,0.235509197,23188,98459,0.212870899,0.258147495,0.057146565,2642,46232,0.041657203,0.072635927,0.001616932,268,165746,,,618.4552239,0.734427448,1680.37,2288,,,0.086703935,791,9123,0.059304081,0.114103789,2.513287142,,,,,,2.380057287,2.137848126,2.455020805,3.03471991,2.414838536,,,,,,2.320193622,1.989879225,2.385443674,2.99994409,0.12545935,,,,,-3160.78175,,,,,0.862507892,42350,49101,0.815040317,0.909975467,58701,,,55317.17021,62084.82979,85625,74749.08511,96500.91489,53685,46456.23404,60913.76596,43836,37136.25532,50535.74468,55607,52183.85106,59030.14894,68099,65895.93617,70302.06383,,,,,,0.719106416,21374,29723,,,46.37419085,,,,,0.263555987,,58701,,,5.40206822,70,12958,,,22.75968541,263,1155552,20.00897766,25.51039317,,,,,,,50.01870778,41.3193603,58.71805527,23.62697728,18.73472356,29.40581843,9.782405281,7.161950146,13.04835777,,,,17.42809538,142,828352,14.52268598,20.33350477,17.14247083,,,,,,,16.01991573,10.15525237,24.0377393,12.48746739,7.82582933,18.9061757,21.59364991,16.83330946,27.2822776,,,,30.05968477,249,828352,26.32597274,33.79339681,,,,,,,59.8216532,48.48662531,71.1566811,27.13462419,21.02896104,34.46001354,19.20359107,14.78910513,24.52255708,,,,18.3462103,212,1155552,15.87656542,20.81585517,,,,,,,24.02473366,18.37701761,30.86077545,14.7668608,10.96024872,19.46826503,18.92682761,15.19979673,23.29109001,,,,,,,,,,,0.564266905,56785,100635,,,0.606,,,,,97.13242037,,,,,0.605349042,37097,61282,0.593138276,0.617559808,0.138034839,8162,59130,0.124025813,0.152043864,0.853137952,52282,61282,0.840688699,0.865587206,165746,,,,,0.268869234,44564,165746,,,0.137577981,22803,165746,,,0.209284085,34688,165746,,,0.013677555,2267,165746,,,0.05717785,9477,165746,,,0.004543096,753,165746,,,0.312779796,51842,165746,,,0.388986763,64473,165746,,,0.080280703,12481,155467,0.072728917,0.087832489,0.498280502,82588,165746,,,0.052887825,8951,169245,, -21,000,21000,KY,Kentucky,2024,,11054.57592,86421,12549037,10944.80723,11164.34462,0,5187.832612,3123.414125,8101.443252,1,3194.705098,2764.233882,3625.176315,,15450.27607,14995.46511,15905.08702,,5919.247417,5518.212084,6320.28275,,11031.28782,10911.59007,11150.98558,,10048.67987,6564.131316,14723.64425,,,0.211,,,0.196,0.227,4.458050696,,,4.139606832,4.776494561,5.515624224,,,5.135372312,5.895876136,0.08864381,33091,373303,0.087732022,0.089555597,0,0.103448276,0.072706093,0.134190459,0.089663919,0.083357759,0.095970078,0.14476039,0.141084733,0.148436047,0.074473738,0.071183863,0.077763613,0.082572265,0.081582672,0.083561858,0.103383459,0.077511509,0.129255408,0.106426887,0.099088445,0.113765329,0.204,,,0.189,0.221,0.406,,,0.386,0.426,6.8,0.063943268,0.129,,,0.295,,,0.277,0.313,0.695089657,3131960,4505836,,,0.15030609,,,0.135892131,0.165955298,0.258106695,987,3824,0.250118817,0.266152813,410.3,18500,4509394,,,25.69294071,25202,980892,25.37572669,26.01015474,18.63354037,12.57197144,26.60053751,4.118709095,3.228410456,5.178658327,28.49158555,27.42919977,29.55397132,39.44681999,37.73836676,41.15527321,24.91798558,24.5671955,25.26877566,38.75968992,26.15100003,55.33186744,24.07440108,22.42458736,25.7242148,0.067703745,246692,3643698,0.064129277,0.071278213,0.000624474,2816,4509394,,,1601.347301,0.000665956,3005,4512310,,,1501.600666,0.002927769,13211,4512310,,,341.5570358,3457,,,,,10921,1576,4391,2383,3420,0.42,,,,,0.35,0.33,0.4,0.29,0.42,0.44,,,,,0.42,0.46,0.36,0.32,0.44,0.881501766,2703662,3067109,0.879443182,0.88356035,0.629188978,721228,1146282,0.622663718,0.635714238,0.039036599,79950,2048078,,,0.206,202846,,0.195276596,0.216723404,0.263090677,0.176445923,0.349735431,0.150813315,0.11992128,0.18170535,0.368503544,0.347760885,0.389246202,0.292018327,0.272345295,0.311691358,0.185505886,0.180008791,0.19100298,4.926528092,119690,24295,4.855096541,4.997959644,0.254769152,256978,1008670,0.248195777,0.261342526,10.24971426,4622,4509394,,,106.1764161,23759,22376909,104.8263033,107.5265289,42.82471843,26.15845057,66.13930432,25.49962451,20.53070701,31.30788833,122.2023765,117.1562849,127.248468,50.14879375,45.46292387,54.83466363,110.6671504,109.1639614,112.1703394,,,,8.2,,,,,0.133333333,,,,,0.128125259,223970,1748055,0.125882279,0.130368239,0.10530552,0.10304452,0.10756652,0.020110923,0.019066553,0.021155294,0.010134121,0.009427036,0.010841205,0.789677443,1574496,1993847,0.786294713,0.793060173,0.634295416,0.548671983,0.719918849,0.68905982,0.667567598,0.710552042,0.735422814,0.725991126,0.744854501,0.712198006,0.698975259,0.725420754,0.804189105,0.800240654,0.808137556,0.306,,1993847,0.301234043,0.310765957,73.95601789,,,73.87269449,74.0393413,,,,85.67489684,84.56091028,86.7888834,70.75322542,70.42621499,71.08023585,91.05700518,88.69685204,93.41715832,73.86990164,73.7808617,73.95894158,77.27392183,70.53662849,84.01121517,538.1868301,86421,12549037,534.4494054,541.9242548,197.0293098,148.4294404,256.4607292,169.9346315,151.1665085,188.7027546,687.4820857,672.0048298,702.9593416,255.2821353,237.9987363,272.5655344,542.5251848,538.4872521,546.5631175,459.5286204,312.2274027,652.264196,58.71782711,2637,4490970,56.47667681,60.9589774,,,,28.39716522,18.00136681,42.60969071,117.9170344,107.591471,128.2425978,47.13259629,39.26869793,54.99649465,53.81192632,51.37876322,56.24508941,,,,6.187590341,2333,377045,5.936505638,6.438675044,,,,,,,11.31602201,10.20286967,12.42917434,5.477915804,4.525186412,6.430645196,5.629949747,5.362633229,5.897266264,,,,10.16383495,7.876832483,12.90771111,0.139804227,,,0.127673903,0.152885067,0.182129198,,,0.167235216,0.198034203,0.124,,,0.112,0.136,214.5,8137,3793094,,,0.129,579770,,,,0.063943268,277473.3065,4339367,,,43.43586944,5844,13454318,42.32221747,44.5495214,,,,5.051339983,2.52161072,9.038242553,46.86946898,42.85252976,50.88640819,14.57653326,11.54037865,18.16670963,46.07369983,44.82104101,47.32635866,,,,0.391391662,,,0.370479781,0.412710073,0.079052685,208910,2642668,0.074286727,0.083818642,0.038990924,40954,1050347,0.034224967,0.043756881,0.001815035,8190,4512310,,,550.953602,0.909085966,44224.305,48647,,,0.082145522,19266,234535,0.076558241,0.087732803,3.087769906,,,,,,3.406160253,2.456919991,2.749555761,3.207737946,3.008759242,,,,,,3.587663747,2.391879995,2.664754593,3.123809463,0.20316148,,,,,-871.9788,,,,,0.788149554,44015,55846,0.778299195,0.797999914,59246,,,58166.51064,60325.48936,38021,27196.31915,48845.68085,81126,75385.40426,86866.59575,44196,42863.91489,45528.08511,54128,51722.38298,56533.61702,62361,61771.21277,62950.78723,,,,,,0.569078412,370758,651506,,,62.059333,,,,,0.259599829,,,,,6.093847479,,,,,6.946450708,2170,31238975,6.654177395,7.238724021,,,,,,,35.17716392,32.87892255,37.4754053,7.00343337,5.578195586,8.681809366,4.394202294,4.141108301,4.647296287,,,,17.28418476,3939,22376909,16.73011811,17.8382514,17.60296742,,,,6.86781183,4.30402111,10.39794965,9.740318779,8.303421991,11.17721557,7.85811258,5.850880961,10.33196682,18.71898714,18.08994211,19.34803217,,,,17.97835438,4023,22376909,17.42279435,18.53391441,,,,2.80215654,1.34374298,5.153265645,42.90371939,39.91377733,45.89366145,9.003987969,7.128542067,11.22165552,16.51875437,15.9379995,17.09950924,,,,17.62221712,5505,31238975,17.15669753,18.0877367,,,,5.786797834,3.845285135,8.363534068,17.58858196,15.9634799,19.21368402,14.59751775,12.42225345,16.77278204,18.26364045,17.74765734,18.77962356,,,,15.24113631,,454100,,,3538,3383,0.635497442,2136768,3362355,,,,,,,,74.64858401,,,,,0.681174404,1205067,1769102,0.676709082,0.685639725,0.115082301,195050,1694874,0.112403176,0.117761426,0.855797461,1513993,1769102,0.853095831,0.858499092,4512310,,,,,0.222629873,1004575,4512310,,,0.175743023,793007,4512310,,,0.083858157,378394,4512310,,,0.003215426,14509,4512310,,,0.017590547,79374,4512310,,,0.0011657,5260,4512310,,,0.043212235,194987,4512310,,,0.832032374,3754388,4512310,,,0.010947313,46377,4236382,0.010401725,0.011492901,0.503467404,2271801,4512310,,,0.413015476,1860980,4505836,, -21,001,21001,KY,Adair County,2024,1,11203.14762,393,53193,9398.378704,13007.91655,0,,,,2,,,,2,,,,2,,,,2,11082.90122,9234.831209,12930.97123,,,,,2,,0.226,,,0.192,0.266,4.913940632,,,3.954667289,5.973794253,5.738900713,,,4.638179084,6.964918056,0.082251082,114,1386,0.067786456,0.096715708,0,,,,,,,,,,,,,0.079563183,0.064749429,0.094376936,,,,,,,0.234,,,0.186,0.283,0.408,,,0.332,0.487,7.6,0.034038066,0.137,,,0.319,,,0.266,0.377,0.428027297,8091,18903,,,0.134660894,,,0.10637146,0.16704317,0.263157895,5,19,0.14192256,0.393259063,232.4,44,18932,,,20.05785921,104,5185,16.20286278,23.91285564,,,,,,,,,,,,,20.0888137,16.25304992,24.55753301,,,,,,,0.078705016,1111,14116,0.065598633,0.091811399,0.000264103,5,18932,,,3786.4,0.00015734,3,19067,,,6355.666667,0.002727225,52,19067,,,366.6730769,3499,,,,,,,,,3505,0.42,,,,,,,,,0.42,0.3,,,,,,,0.22,,0.3,0.861165736,10948,12713,0.834022287,0.888309184,0.532769045,2203,4135,0.444949706,0.620588383,0.045448228,327,7195,,,0.319,1138,,0.209382979,0.428617021,,,,,,,,,,0.272727273,4.54092E-05,0.545409136,0.325729927,0.259477282,0.391982572,5.057422599,95560,18895,3.944982645,6.169862552,0.128718084,489,3799,0.074253104,0.183183064,4.225649694,8,18932,,,97.52150142,94,96389,78.8073,119.3416196,,,,,,,,,,,,,100.6418715,80.92794951,123.7059466,,,,7.9,,,,,0,,,,,0.130901288,915,6990,0.090175526,0.171627049,0.09326575,0.054052685,0.132478814,0.016452074,0.004656612,0.028247537,0.025035765,0.007822204,0.042249327,0.770679663,5851,7592,0.717291876,0.82406745,,,,,,,,,,,,,0.718261223,0.658989188,0.777533257,0.271,,7592,0.216100907,0.325899093,73.6493856,,,72.32661151,74.9721597,,,,,,,,,,,,,73.56995424,72.2247674,74.91514108,,,,540.4980137,393,53193,483.2044399,597.7915875,,,,,,,,,,,,,540.7974343,481.9807309,599.6141378,,,,64.54388985,12,18592,33.35076973,112.7451864,,,,,,,,,,,,,60.39012018,28.95940997,111.0595812,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.15,,,0.128,0.173,0.197,,,0.171,0.226,0.115,,,0.098,0.133,97.6,16,16385,,,0.137,2590,,,,0.034038066,635.0141509,18656,,,26.00149075,15,57689,14.55283699,42.88550481,,,,,,,,,,,,,28.10620398,15.73082901,46.3569092,,,,0.393,,,0.373,0.412,0.089911035,950,10566,0.073230184,0.106591887,0.045805593,172,3755,0.030316231,0.061294954,0.001416059,27,19067,,,706.1851852,0.96,218.88,228,,,,,,,,2.804596169,,,,,,,,,2.827805813,2.873268923,,,,,,,,,2.8758712,0.005064232,,,,,-2343.339,,,,,0.949961853,36109,38011,0.788947973,1.110975733,44153,,,38324.23404,49981.76596,,,,,,,55807,32527.68085,79086.31915,,,,49200,43740.59575,54659.40426,,,,,,0.669357939,1741,2601,,,62.39130655,,,,,0.32971712,,44153,,,5.567928731,5,898,,,,,,,,,,,,,,,,,,,,,,,,,,18.66154782,19,96389,10.8710393,29.87894583,19.71179284,,,,,,,,,,,,,17.82879708,9.978642382,29.40588946,,,,12.44955337,12,96389,6.432865896,21.74686432,,,,,,,,,,,,,13.4189162,6.933749814,23.4401461,,,,28.95408921,39,134696,20.58918787,39.58119311,,,,,,,,,,,,,28.75330463,20.13846107,39.80669352,,,,13.33333333,,1800,,,17,7,0.571810767,8763,15325,,,0.618,,,,,4.209767474,,,,,0.764662649,5202,6803,0.729362087,0.799963211,0.089155127,573,6427,0.055909761,0.122400492,0.815669558,5549,6803,0.767424652,0.863914463,19067,,,,,0.193003619,3680,19067,,,0.19719935,3760,19067,,,0.027639377,527,19067,,,0.004405517,84,19067,,,0.00608381,116,19067,,,0.000681806,13,19067,,,0.027324697,521,19067,,,0.919022395,17523,19067,,,0.000612813,11,17950,0,0.005674561,0.499659097,9527,19067,,,0.734539491,13885,18903,, -21,003,21003,KY,Allen County,2024,1,11439.61865,444,58860,9783.515859,13095.72144,0,,,,2,,,,2,,,,2,,,,2,11363.66992,9688.766684,13038.57316,,,,,2,,0.222,,,0.185,0.262,4.919740652,,,3.970463877,5.973182062,5.945278309,,,4.823085326,7.164093015,0.092730395,162,1747,0.079128831,0.106331959,0,,,,,,,,,,,,,0.090100771,0.07643735,0.103764191,,,,,,,0.237,,,0.187,0.286,0.421,,,0.34,0.502,7.2,0.086515194,0.128,,,0.309,,,0.251,0.367,0.284388964,5855,20588,,,0.144378087,,,0.11365128,0.181272323,0.344827586,10,29,0.246908102,0.441557488,139.4,29,20797,,,31.28675606,133,4251,25.96946067,36.60405144,,,,,,,,,,,,,32.28228228,26.7113812,37.85318336,,,,,,,0.069580522,1186,17045,0.057665629,0.081495416,0.000144252,3,20797,,,6932.333333,0.000282021,6,21275,,,3545.833333,0.000752056,16,21275,,,1329.6875,3815,,,,,,,,,3866,0.36,,,,,,,,,0.36,0.38,,,,,,,,,0.38,0.8652428,12437,14374,0.842391284,0.888094316,0.565900609,2881,5091,0.477794902,0.654006316,0.038491577,345,8963,,,0.215,1020,,0.137553192,0.292446809,,,,,,,,,,0.116959064,0,0.403931427,0.259669811,0.167980759,0.351358864,4.743064759,103783,21881,3.992236708,5.493892811,0.283109807,1351,4772,0.193129289,0.373090325,5.289224407,11,20797,,,120.4133877,127,105470,99.47086543,141.35591,,,,,,,,,,,,,123.1613414,101.3953764,144.9273063,,,,7.9,,,,,0,,,,,0.147792706,1155,7815,0.114135572,0.181449841,0.104483431,0.074484832,0.13448203,0.031989763,0.016272902,0.047706625,0.017274472,0.006924277,0.027624667,0.787050855,6856,8711,0.747453931,0.82664778,,,,,,,,,,,,,0.792236599,0.740974854,0.843498344,0.416,,8711,0.340992929,0.491007071,73.66515027,,,72.42830409,74.90199644,,,,,,,,,,,,,73.54651998,72.30474625,74.78829371,,,,562.746757,444,58860,507.6054699,617.8880442,,,,,,,,,,,,,570.2699194,513.5779387,626.9619002,,,,80.43910287,17,21134,46.85874169,128.790796,,,,,,,,,,,,,76.69103737,42.92339145,126.4902033,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.148,,,0.125,0.172,0.198,,,0.17,0.228,0.111,,,0.094,0.13,85.9,15,17464,,,0.128,2640,,,,0.086515194,1726.49722,19956,,,37.8459355,24,63415,24.24860499,56.3117521,,,,,,,,,,,,,38.38002904,24.32964613,57.58888797,,,,0.41,,,0.39,0.43,0.077326661,958,12389,0.063028788,0.091624533,0.049375128,241,4881,0.032694277,0.066055979,0.000517039,11,21275,,,1934.090909,0.93,208.32,224,,,0.175395859,144,821,0.061677415,0.289114303,3.222051952,,,,,,,,,3.218821843,3.199159679,,,,,,,,,3.210035746,0.009520406,,,,,55.10742,,,,,0.765465656,38581,50402,0.697767382,0.83316393,61655,,,55591.51064,67718.48936,,,,,,,,,,,,,57877,50170.44681,65583.55319,,,,,,0.623173971,1877,3012,,,72.44314976,,,,,0.207428432,,61655,,,3.147128246,4,1271,,,10.22209199,15,146741,5.721227287,16.8597862,,,,,,,,,,,,,10.05761577,5.498592132,16.87497027,,,,20.56541655,23,105470,12.73031698,31.43642377,21.80714895,,,,,,,,,,,,,21.54097848,13.33420519,32.9276738,,,,23.70342277,25,105470,15.33960543,34.99092794,,,,,,,,,,,,,25.03279296,16.19990372,36.95334057,,,,21.12565677,31,146741,14.35385883,29.98618348,,,,,,,,,,,,,20.83363267,13.95261077,29.92057173,,,,11.81818182,,2200,,,11,15,0.588312912,9363,15915,,,0.623,,,,,4.527343976,,,,,0.769447288,6014,7816,0.734273932,0.804620643,0.125673014,957,7615,0.090135347,0.161210681,0.796954964,6229,7816,0.766075941,0.827833987,21275,,,,,0.226603995,4821,21275,,,0.182420682,3881,21275,,,0.01306698,278,21275,,,0.003478261,74,21275,,,0.004230317,90,21275,,,0.000329025,7,21275,,,0.02599295,553,21275,,,0.93945946,19987,21275,,,0.003999385,78,19503,0,0.010025908,0.501151586,10662,21275,,,0.774771712,15951,20588,, -21,005,21005,KY,Anderson County,2024,1,9366.559217,406,65212,7953.131954,10779.98648,0,,,,2,,,,2,,,,2,,,,2,9634.157906,8156.562546,11111.75327,,,,,2,,0.184,,,0.151,0.219,4.312213389,,,3.424565516,5.322816512,5.65262417,,,4.535980276,6.878065803,0.076327434,138,1808,0.064088144,0.088566723,0,,,,,,,,,,,,,0.075713454,0.063200473,0.088226434,,,,,,,0.197,,,0.152,0.243,0.343,,,0.27,0.421,8.2,0.023325396,0.112,,,0.271,,,0.22,0.327,0.294482643,7024,23852,,,0.153720207,,,0.121712475,0.190795448,0.214285714,3,14,0.080830645,0.373240293,224.7,54,24035,,,25.77646313,122,4733,21.20242814,30.35049812,,,,,,,,,,,,,26.66666667,21.77144483,31.56188851,,,,,,,0.061736399,1238,20053,0.051012994,0.072459803,0.000291242,7,24035,,,3433.571429,0.000412814,10,24224,,,2422.4,0.00090819,22,24224,,,1101.090909,2840,,,,,,,,,2866,0.39,,,,,,,,,0.39,0.42,,,,,,,0.2,,0.42,0.91114357,14971,16431,0.893067724,0.929219417,0.634839393,3597,5666,0.534567673,0.735111113,0.031599133,379,11994,,,0.166,907,,0.124297872,0.207702128,,,,,,,0.679069767,0.07631758,1,0.29245283,0,0.708528715,0.136809176,0.07629702,0.197321332,3.679445798,120833,32840,3.034409763,4.324481833,0.193064837,1069,5537,0.115076108,0.271053566,9.985437903,24,24035,,,101.896849,117,114822,83.43292967,120.3607684,,,,,,,,,,,,,108.1655679,88.48144304,127.8496928,,,,8.6,,,,,0,,,,,0.09994289,875,8755,0.069209702,0.130676077,0.09243212,0.062005818,0.122858422,0.006282125,0,0.013514568,0.007995431,0,0.016231165,0.822457432,8936,10865,0.781818606,0.863096258,,,,,,,,,,,,,0.71663286,0.656071206,0.777194514,0.477,,10865,0.408585266,0.545414734,75.02648363,,,73.91342289,76.13954436,,,,,,,,,,,,,74.70319087,73.56663731,75.83974444,,,,470.5257553,406,65212,422.9278089,518.1237016,,,,,,,,,,,,,482.9306657,433.2844465,532.576885,,,,63.78907081,15,23515,35.7022587,105.2103716,,,,,,,,,,,,,61.84880346,32.93188302,105.7633375,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.127,,,0.108,0.148,0.182,,,0.157,0.212,0.096,,,0.082,0.113,119.3,24,20122,,,0.112,2650,,,,0.023325396,499.6533171,21421,,,43.09416074,30,69615,29.07544929,61.51959405,,,,,,,,,,,,,44.73789763,29.96167218,64.25108364,,,,0.383,,,0.364,0.402,0.069196275,1003,14495,0.056089892,0.082302658,0.043141973,251,5818,0.028844101,0.057439846,0.000701783,17,24224,,,1424.941177,0.88,260.48,296,,,,,,,,2.886619356,,,,,,,,,2.932749805,2.900250551,,,,,,,,,2.959368452,0.013067538,,,,,2476.102,,,,,0.758117647,46719,61625,0.657898517,0.858336778,66846,,,57994.42553,75697.57447,,,,,,,39907,16454.91489,63359.08511,,,,71809,65514.3617,78103.6383,,,,,,0.412127717,1536,3727,,,47.61371777,,,,,0.217784161,,66846,,,7.874015748,12,1524,,,,,,,,,,,,,,,,,,,,,,,,,,18.08228478,21,114822,11.04512931,27.92662228,18.28917803,,,,,,,,,,,,,19.20054088,11.72818919,29.65367814,,,,14.80552507,17,114822,8.624763956,23.70507988,,,,,,,,,,,,,15.85185047,9.234287058,25.3803482,,,,13.21095377,21,158959,8.177788602,20.19434617,,,,,,,,,,,,,13.44212493,8.210799125,20.76027173,,,,18.4,,2500,,,18,28,0.773816482,13240,17110,,,0.758,,,,,19.1196926,,,,,0.788235294,7236,9180,0.748402456,0.828068133,0.074429375,675,9069,0.047843821,0.101014928,0.873093682,8015,9180,0.84268513,0.903502234,24224,,,,,0.229194188,5552,24224,,,0.16826288,4076,24224,,,0.022498349,545,24224,,,0.003467635,84,24224,,,0.007348085,178,24224,,,0.000536658,13,24224,,,0.024562417,595,24224,,,0.926023778,22432,24224,,,0.000267261,6,22450,0,0.005030841,0.502559445,12174,24224,,,0.432206943,10309,23852,, -21,007,21007,KY,Ballard County,2024,1,10975.37751,160,21188,8054.418326,13896.3367,0,,,,2,,,,2,,,,2,,,,2,11779.01169,8544.536004,15013.48737,,,,,2,,0.214,,,0.182,0.249,4.759429601,,,3.839892177,5.79020301,5.568003695,,,4.43611766,6.775867528,0.085828343,43,501,0.0613001,0.110356587,0,,,,,,,,,,,,,0.082222222,0.056840962,0.107603483,,,,,,,0.227,,,0.181,0.273,0.405,,,0.322,0.494,8.5,7.48232E-05,0.112,,,0.299,,,0.242,0.357,0.333980331,2581,7728,,,0.141869404,,,0.112434054,0.178465322,0.176470588,3,17,0.062472405,0.322105398,298.9,23,7695,,,32.0470896,49,1529,23.70861331,42.36795199,,,,,,,,,,,,,28.69757174,20.40677887,39.23052529,,,,,,,0.068397404,411,6009,0.057674,0.079120808,,0,7695,,,,0.000261438,2,7650,,,3825,0.000130719,1,7650,,,7650,3641,,,,,,,,,3720,0.46,,,,,,,,,0.46,0.49,,,,,,,0.09,,0.49,0.921208851,5121,5559,0.900984606,0.941433095,0.58172232,993,1707,0.466952202,0.696492437,0.048437948,169,3489,,,0.216,321,,0.138553192,0.293446809,,,,,,,0.676056338,0.10290175,1,,,,0.161078717,0.093144371,0.229013064,4.806910986,117130,24367,3.583974811,6.029847162,0.152411576,237,1555,0.082572564,0.222250587,18.19363223,14,7695,,,111.7602235,44,39370,81.2051495,150.0328836,,,,,,,,,,,,,118.6141454,85.84164518,159.7724755,,,,8.7,,,,,0,,,,,0.095081967,290,3050,0.057602463,0.132561471,0.068333333,0.036168022,0.100498645,0.016065574,0.000108719,0.032022429,0.019672131,0,0.043850583,0.901054591,2905,3224,0.846750636,0.955358545,,,,,,,,,,,,,0.870614035,0.807102584,0.934125487,0.34,,3224,0.256247535,0.423752465,73.99292976,,,71.80799601,76.17786352,,,,,,,,,,,,,73.21135744,70.86509872,75.55761617,,,,518.4185394,160,21188,431.7806426,605.0564361,,,,,,,,,,,,,539.2955926,446.8970691,631.6941161,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.144,,,0.123,0.166,0.195,,,0.167,0.224,0.11,,,0.092,0.128,,,,,,0.112,880,,,,7.48232E-05,0.617216608,8249,,,,,,,,,,,,,,,,,,,,,,,,,,0.389,,,0.371,0.408,0.075603701,335,4431,0.062497318,0.088710084,0.050571945,84,1661,0.033891094,0.067252796,0.000392157,3,7650,,,2550,0.925,72.15,78,,,,,,,,2.871354436,,,,,,,,,2.890403943,2.710037763,,,,,,,,,2.636773087,0.033537318,,,,,-724.5186,,,,,0.973807262,52273,53679,0.717575606,1.230038917,56605,,,48406.3617,64803.6383,,,,,,,,,,68352,16530.55319,120173.4468,58693,50157.17021,67228.82979,,,,,,0.604263207,652,1079,,,3.820288924,,,,,0.225934105,,56605,,,8.064516129,3,372,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,34.15055,19,55636,20.56086197,53.33031413,,,,,,,,,,,,,35.03445054,20.76363576,55.36953612,,,,,,800,,,6,-888,0.678714859,4225,6225,,,0.625,,,,,11.24280133,,,,,0.803987834,2379,2959,0.780823097,0.827152571,0.081042988,230,2838,0.044749475,0.117336501,0.851977019,2521,2959,0.814952102,0.889001936,7650,,,,,0.197647059,1512,7650,,,0.222875817,1705,7650,,,0.036078431,276,7650,,,0.003398693,26,7650,,,0.004705882,36,7650,,,0.000522876,4,7650,,,0.017254902,132,7650,,,0.916601307,7012,7650,,,0,0,7405,0,0.010941428,0.498954248,3817,7650,,,1,7728,7728,, -21,009,21009,KY,Barren County,2024,1,9949.77484,877,123049,8916.530571,10983.01911,0,,,,2,,,,2,15425.10825,8816.782147,25049.40942,1,,,,2,9980.20854,8887.150014,11073.26707,,,,,2,,0.244,,,0.207,0.282,5.1138348,,,4.147244546,6.193011299,6.057427821,,,4.899038327,7.312717586,0.079916427,306,3829,0.071327379,0.088505476,0,,,,,,,0.141414141,0.072774223,0.21005406,0.076190476,0.040307539,0.112073413,0.078328982,0.069359143,0.087298821,,,,,,,0.247,,,0.199,0.297,0.419,,,0.344,0.501,6.6,0.075933219,0.161,,,0.326,,,0.272,0.384,0.618478139,27513,44485,,,0.134716013,,,0.10641271,0.168207355,0.190476191,8,42,0.114101187,0.277658795,294.1,131,44544,,,32.10514975,298,9282,28.45993903,35.75036048,,,,,,,,,,49.29577465,30.51486147,75.35382802,32.64204197,28.71927444,36.5648095,,,,,,,0.078806364,2868,36393,0.06689147,0.090721258,0.000695941,31,44544,,,1436.903226,0.000334418,15,44854,,,2990.266667,0.00225175,101,44854,,,444.0990099,3328,,,,,,,4441,,3277,0.36,,,,,,,0.52,,0.36,0.48,,,,,,,0.5,,0.48,0.847375243,26150,30860,0.825500989,0.869249497,0.509830326,5679,11139,0.451087544,0.568573108,0.04087681,731,17883,,,0.215,2206,,0.135170213,0.294829787,,,,,,,,,,0.480234261,0.298473759,0.661994762,0.305907173,0.245962026,0.36585232,4.807095014,96887,20155,4.129092605,5.485097422,0.256726782,2662,10369,0.201726678,0.311726885,8.081896552,36,44544,,,91.82611842,203,221070,79.19405554,104.4581813,,,,,,,,,,,,,96.98346256,83.30065867,110.6662665,,,,8.2,,,,,0,,,,,0.172225417,2995,17390,0.146489573,0.197961261,0.141317016,0.115581186,0.167052847,0.031627372,0.021681472,0.041573272,0.019263945,0.010448273,0.028079617,0.786606315,14424,18337,0.7516294,0.82158323,,,,,,,,,,,,,0.804350641,0.774604903,0.834096379,0.298,,18337,0.260967867,0.335032133,74.18077012,,,73.3835515,74.97798874,,,,,,,69.33935734,64.38264157,74.2960731,,,,74.09606521,73.26497046,74.92715997,,,,526.3871743,877,123049,490.0198561,562.7544925,,,,,,,748.630497,539.5470136,1011.930951,,,,528.7093294,490.677506,566.7411528,,,,50.67642004,23,45386,32.12450323,76.03951195,,,,,,,,,,,,,51.62755879,31.53545416,79.73457731,,,,5.245213743,20,3813,3.203912821,8.100807213,,,,,,,,,,,,,,,,,,,,,,0.157,,,0.134,0.182,0.203,,,0.175,0.234,0.12,,,0.103,0.139,97.1,36,37083,,,0.161,7150,,,,0.075933219,3202.33165,42173,,,15.77844064,21,133093,9.767103442,24.11902259,,,,,,,,,,,,,16.71583909,10.21046878,25.81625774,,,,0.377,,,0.36,0.394,0.094553444,2453,25943,0.077872593,0.111234295,0.040935673,448,10944,0.02782929,0.054042056,0.001738975,78,44854,,,575.0512821,0.922132353,501.64,544,,,0.076072534,172,2261,0.026993191,0.125151878,3.012238201,,,,,,,2.376392485,2.572336576,3.131064549,2.941688121,,,,,,,2.482083538,2.506884702,3.07969553,0.080417769,,,,,-3579.483633,,,,,0.790654399,38240,48365,0.683753717,0.89755508,50658,,,45670.42553,55645.57447,34190,25372.97872,43007.02128,,,,39441,30843.21277,48038.78723,32538,17782.59575,47293.40426,49592,45824.51064,53359.48936,,,,,,0.584035198,4646,7955,,,50.97114141,,,,,0.314027399,,50658,,,6.769462204,18,2659,,,,,,,,,,,,,,,,,,,,,,,,,,24.82426807,56,221070,18.53995076,32.55372487,25.33134301,,,,,,,,,,,,,26.86932207,20.00597514,35.32819632,,,,18.54616185,41,221070,13.30904594,25.15996271,,,,,,,,,,,,,19.59769451,13.93587659,26.79069354,,,,22.03264071,68,308633,17.10920762,27.93162207,,,,,,,,,,,,,22.63191171,17.39098237,28.95604642,,,,14.89361702,,4700,,,29,41,0.606991525,20055,33040,,,0.695,,,,,24.09116963,,,,,0.662460209,11654,17592,0.630008793,0.694911626,0.137062441,2318,16912,0.108365374,0.165759508,0.841973624,14812,17592,0.819159702,0.864787546,44854,,,,,0.233803005,10487,44854,,,0.182993713,8208,44854,,,0.03939448,1767,44854,,,0.004057609,182,44854,,,0.008605699,386,44854,,,0.002675347,120,44854,,,0.038212868,1714,44854,,,0.894591341,40126,44854,,,0.007764346,325,41858,0.00206191,0.013466782,0.512083649,22969,44854,,,0.621018321,27626,44485,, -21,011,21011,KY,Bath County,2024,1,14437.20999,291,35177,11940.16128,16934.2587,0,,,,2,,,,2,,,,2,,,,2,14861.50908,12256.31435,17466.70381,,,,,2,,0.237,,,0.199,0.278,5.002981966,,,3.976769267,6.101481651,6.171815842,,,4.961609624,7.465374294,0.08393866,104,1239,0.068498077,0.099379244,0,,,,,,,,,,,,,0.082922824,0.067435642,0.098410007,,,,,,,0.254,,,0.204,0.308,0.386,,,0.307,0.467,7.3,0.009201716,0.164,,,0.318,,,0.262,0.379,0.368392157,4697,12750,,,0.14770814,,,0.116197065,0.182536101,0.266666667,4,15,0.129817183,0.413965161,313,40,12778,,,37.07865169,99,2670,30.13569845,45.141928,,,,,,,,,,,,,38.33736885,31.01722077,46.86544537,,,,,,,0.070672714,748,10584,0.05875782,0.082587607,0.000156519,2,12778,,,6389,7.79484E-05,1,12829,,,12829,0.002884091,37,12829,,,346.7297297,4108,,,,,,,,,4187,0.37,,,,,,,,,0.37,0.38,,,,,,,,,0.38,0.814456124,6896,8467,0.778292939,0.850619309,0.446516538,1269,2842,0.34839208,0.544640995,0.051669817,246,4761,,,0.298,946,,0.195531915,0.400468085,,,,,,,,,,0.032608696,0,0.286703501,0.327433628,0.26287283,0.391994426,4.985574733,98500,19757,3.633657046,6.337492421,0.238243538,765,3211,0.140958117,0.335528959,3.912975427,5,12778,,,124.7600768,78,62520,98.61766348,155.7062221,,,,,,,,,,,,,128.0086237,100.856236,160.221881,,,,8,,,,,1,,,,,0.102354145,500,4885,0.069854918,0.134853373,0.076582279,0.044455218,0.108709339,0.011258956,0.000419652,0.02209826,0.021494371,0.006017238,0.036971504,0.812272045,3786,4661,0.758174659,0.866369431,,,,,,,,,,,,,0.700854701,0.600762439,0.800946962,0.386,,4661,0.303090831,0.468909169,70.59685972,,,68.90128731,72.29243213,,,,,,,,,,,,,70.17072296,68.43071518,71.91073074,,,,643.4053141,291,35177,566.1863958,720.6242324,,,,,,,,,,,,,659.9490912,579.9494615,739.9487208,,,,116.3044268,16,13757,66.47802903,188.8711027,,,,,,,,,,,,,125.5098839,71.73974313,203.8201883,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.155,,,0.132,0.18,0.205,,,0.177,0.237,0.116,,,0.098,0.135,,,,,,0.164,2080,,,,0.009201716,106.6570898,11591,,,55.61587966,21,37759,34.42710608,85.01477988,,,,,,,,,,,,,58.60519633,36.27754021,89.58426795,,,,0.387,,,0.368,0.405,0.081602374,605,7414,0.066113012,0.097091736,0.04582454,152,3317,0.029143689,0.062505391,0.001091278,14,12829,,,916.3571429,0.875,116.375,133,,,,,,,,3.1957283,,,,,,,,,3.210601783,3.44082852,,,,,,,,,3.479330933,0.020979362,,,,,-2242.915,,,,,0.908366359,41486,45671,0.792636231,1.024096488,48260,,,41497.10638,55022.89362,,,,,,,80786,57586.51064,103985.4894,74271,26681.7234,121860.2766,48992,37865.87234,60118.12766,,,,,,0.759895833,1459,1920,,,50.55722908,,,,,0.265002072,,48260,,,3.546099291,3,846,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,31.00775194,27,87075,20.43430391,45.1146511,,,,,,,,,,,,,31.4043797,20.51438347,46.01469252,,,,,,1400,,,8,-888,0.610966341,5627,9210,,,0.607,,,,,5.788602056,,,,,0.722749794,3501,4844,0.687447281,0.758052306,0.09655485,426,4412,0.060818546,0.132291155,0.813170933,3939,4844,0.766318855,0.860023011,12829,,,,,0.252708707,3242,12829,,,0.175150051,2247,12829,,,0.013874815,178,12829,,,0.0024164,31,12829,,,0.00537844,69,12829,,,0.001013329,13,12829,,,0.019097358,245,12829,,,0.946995089,12149,12829,,,0.001680955,20,11898,0,0.009086723,0.499961026,6414,12829,,,1,12750,12750,, -21,013,21013,KY,Bell County,2024,1,19311.86433,830,69311,17334.73356,21288.9951,0,,,,2,,,,2,,,,2,,,,2,19633.96908,17578.76817,21689.16998,,,,,2,,0.292,,,0.251,0.337,5.959993553,,,4.885894514,7.169963079,6.573948959,,,5.322635078,7.897153025,0.097426471,212,2176,0.084966804,0.109886137,0,,,,,,,0.292682927,0.153408972,0.431956882,,,,0.093570058,0.081066236,0.10607388,,,,,,,0.311,,,0.256,0.365,0.463,,,0.382,0.543,5.6,0.099935546,0.196,,,0.379,,,0.319,0.442,0.888409346,21408,24097,,,0.126523233,,,0.099533722,0.158373713,0.242424242,8,33,0.152046161,0.340132436,272.4,65,23858,,,47.78651221,231,4834,41.62403373,53.94899068,,,,,,,,,,,,,49.05660377,42.5887914,55.52441615,,,,,,,0.077116423,1442,18699,0.06401004,0.090222806,0.000502976,12,23858,,,1988.166667,0.000721317,17,23568,,,1386.352941,0.000424304,10,23568,,,2356.8,4597,,,,,,,,,4673,0.26,,,,,,,0.42,,0.25,0.28,,,,,,,0.23,,0.28,0.781768932,13276,16982,0.755916984,0.807620879,0.514210526,2931,5700,0.437201686,0.591219367,0.050325273,410,8147,,,0.402,2013,,0.261404255,0.542595745,,,,,,,,,,0.483091787,0.122517867,0.843665708,0.29123362,0.217506412,0.364960828,5.311965812,72094,13572,3.865113643,6.758817981,0.301926378,1583,5243,0.228165957,0.375686799,9.640372202,23,23858,,,137.3850274,177,128835,117.145105,157.6249497,,,,,,,,,,,,,141.3725539,120.1829363,162.5621715,,,,7.3,,,,,0,,,,,0.16039981,1685,10505,0.128585651,0.192213969,0.14612326,0.113631388,0.178615133,0.016658734,0.005935328,0.02738214,0.017610662,0.000222993,0.03499833,0.74853972,5126,6848,0.707033726,0.790045714,,,,,,,,,,,,,0.764164398,0.724473036,0.80385576,0.411,,6848,0.333324397,0.488675603,67.69237449,,,66.53584194,68.84890705,,,,,,,,,,,,,67.30935412,66.13130381,68.48740443,,,,887.6141984,830,69311,823.1433163,952.0850804,,,,,,,,,,,,,904.8095581,838.0221999,971.5969163,,,,88.71615056,21,23671,54.91669547,135.6120601,,,,,,,,,,,,,92.58402,56.55272468,142.9885099,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.186,,,0.159,0.213,0.227,,,0.197,0.259,0.138,,,0.119,0.16,89,18,20217,,,0.196,4830,,,,0.099935546,2867.250744,28691,,,51.74335297,39,75372,36.79458219,70.73486688,,,,,,,,,,,,,53.787793,38.06344362,73.82794831,,,,0.42,,,0.403,0.438,0.092677931,1267,13671,0.07599708,0.109358783,0.035160681,186,5290,0.023245787,0.047075574,0.001909369,45,23568,,,523.7333333,0.928470032,294.325,317,,,,,,,,2.99007292,,,,,,,,,2.984733379,2.876319923,,,,,,,,,2.881305769,0.102784261,,,,,-6475.936633,,,,,0.87205119,33935,38914,0.779060105,0.965042275,33923,,,28936.61702,38909.38298,11734,5942.170213,17525.82979,,,,,,,79250,56755.87234,101744.1277,34741,29791.55319,39690.44681,,,,,,0.778809524,3271,4200,,,56.9849379,,,,,0.367803555,,33923,,,5.649717514,8,1416,,,,,,,,,,,,,,,,,,,,,,,,,,21.12780022,26,128835,13.53698026,31.43649199,20.18085148,,,,,,,,,,,,,21.5703795,13.67377027,32.3661602,,,,17.85229169,23,128835,11.31682155,26.78720293,,,,,,,,,,,,,18.18828179,11.39849936,27.5372772,,,,30.55284278,56,183289,23.07928909,39.67540769,,,,,,,,,,,,,30.75298391,23.03609526,40.22566013,,,,27.5,,2400,,,34,32,0.48218915,10044,20830,,,0.406,,,,,31.17618193,,,,,0.630922166,5966,9456,0.591126605,0.670717727,0.120458227,1041,8642,0.085934057,0.154982398,0.739107445,6989,9456,0.699265244,0.778949647,23568,,,,,0.21614053,5094,23568,,,0.197640869,4658,23568,,,0.0266463,628,23568,,,0.003564155,84,23568,,,0.004667346,110,23568,,,0.001739647,41,23568,,,0.014468771,341,23568,,,0.93032926,21926,23568,,,0,0,22799,0,0.004807975,0.499915139,11782,23568,,,0.592687887,14282,24097,, -21,015,21015,KY,Boone County,2024,1,6942.63233,1665,384727,6456.952217,7428.312443,0,,,,2,,,,2,6208.383551,4218.295412,8812.304882,,,,,2,7275.369586,6736.020883,7814.71829,,,,,2,,0.154,,,0.129,0.185,3.920244397,,,3.090807707,4.899663892,4.727107289,,,3.819222033,5.733469468,0.072578606,861,11863,0.067909844,0.077247367,0,,,,0.070844687,0.044595199,0.097094175,0.10259434,0.082171588,0.123017091,0.079627715,0.062564662,0.096690767,0.068746022,0.06363803,0.073854014,,,,0.078534031,0.040382851,0.116685212,0.16,,,0.123,0.2,0.349,,,0.286,0.415,8.4,0.090562213,0.071,,,0.231,,,0.187,0.281,0.923842375,125613,135968,,,0.178299411,,,0.144450194,0.215671914,0.343283582,23,67,0.280795098,0.405597056,187,257,137412,,,14.68637483,465,31662,13.35148876,16.02126091,,,,,,,16.12903226,9.710731039,25.18748181,42.21491228,33.3153486,52.7613972,13.00594237,11.63944665,14.37243809,,,,17.27272727,10.39931015,26.97350325,0.044795885,5243,117042,0.037646949,0.051944821,0.000589468,81,137412,,,1696.444444,0.000682996,95,139093,,,1464.136842,0.001416319,197,139093,,,706.0558376,3287,,,,,,,1678,5590,3258,0.46,,,,,,0.37,0.4,0.23,0.47,0.54,,,,,,0.53,0.36,0.37,0.54,0.938239086,84419,89976,0.92978646,0.946691712,0.711502678,25237,35470,0.668356336,0.754649021,0.03132062,2273,72572,,,0.081,2786,,0.052404255,0.109595745,,,,0.142450143,0,0.329708155,0.153846154,0.010557967,0.297134341,0.251151109,0.113871751,0.388430468,0.049119725,0.031418861,0.066820588,3.545912289,157747,44487,3.269341203,3.822483375,0.18798217,6579,34998,0.15506246,0.220901881,5.385264751,74,137412,,,73.88020639,494,668650,67.36511222,80.39530055,,,,,,,47.53604817,24.56256975,83.03590971,,,,80.0701043,72.80011942,87.34008917,,,,9.8,,,,,0,,,,,0.096644862,4580,47390,0.080653511,0.112636213,0.076023268,0.06243483,0.089611707,0.020046423,0.012683237,0.02740961,0.004431315,0.001747463,0.007115166,0.798224468,55297,69275,0.782394456,0.814054479,,,,0.705697857,0.5953778,0.816017914,0.703820402,0.646478438,0.761162365,0.768709487,0.722509344,0.814909631,0.815969755,0.80085534,0.831084171,0.318,,69275,0.2924454,0.3435546,78.28204611,,,77.80222971,78.76186251,,,,93.62193712,78.45222935,108.7916449,77.96789555,75.11933003,80.81646108,92.71909743,83.80413172,101.6340632,77.87242153,77.36584823,78.37899484,,,,358.2046031,1665,384727,340.6409812,375.7682251,,,,,,,359.8045014,259.3154367,486.3511608,,,,372.4600756,353.5062311,391.41392,,,,35.68171907,54,151338,26.80520555,46.55690335,,,,,,,,,,,,,34.77079577,25.1637973,46.83603371,,,,4.983949992,59,11838,3.794013653,6.428932367,,,,,,,,,,,,,5.006257822,3.691219318,6.637571567,,,,,,,0.111,,,0.095,0.131,0.161,,,0.137,0.186,0.087,,,0.074,0.104,96.5,109,112948,,,0.071,9580,,,,0.090562213,10759.78712,118811,,,34.695821,141,406389,28.96886715,40.42277485,,,,,,,,,,,,,38.90398667,32.38935456,45.41861877,,,,0.344,,,0.327,0.361,0.051285181,4202,81934,0.042944755,0.059625606,0.031040564,1144,36855,0.02150865,0.040572479,0.000941816,131,139093,,,1061.778626,0.942762097,1636.635,1736,,,0.040787424,288,7061,0.016928453,0.064646395,3.153755149,,,,,,,2.776048852,,3.22955185,3.073651378,,,,,,3.612479815,2.588742239,2.55034664,3.153259024,0.070531642,,,,,2813.518,,,,,0.76967904,51774,67267,0.707673887,0.831684194,90265,,,84940.23404,95589.76596,140833,59652.06383,222013.9362,91932,3093.361702,180770.6383,74033,65675.89362,82390.10638,75139,32769.6383,117508.3617,93760,89403.91489,98116.08511,,,,,,0.365873555,8073,22065,,,52.67929913,,,,,0.193508004,,90265,,,5.396716041,47,8709,,,1.838040519,17,924898,1.070726336,2.942880925,,,,,,,,,,,,,1.980516667,1.132036399,3.216234988,,,,13.77678511,91,668650,11.04938452,16.97338457,13.6095117,,,,,,,,,,,,,13.8587311,10.95475183,17.29632362,,,,9.272414567,62,668650,7.109107079,11.886817,,,,,,,,,,,,,9.622158456,7.268475091,12.49517311,,,,8.865842504,82,924898,7.05126765,11.00484823,,,,,,,,,,,,,9.159889586,7.192483474,11.49940257,,,,11.39393939,,16500,,,36,152,0.712948568,66953,93910,,,0.775,,,,,82.42274567,,,,,0.761610906,37766,49587,0.744961934,0.778259878,0.072673645,3548,48821,0.060746389,0.0846009,0.919858027,45613,49587,0.904580337,0.935135717,139093,,,,,0.251349816,34961,139093,,,0.15025199,20899,139093,,,0.04829862,6718,139093,,,0.002595386,361,139093,,,0.026298951,3658,139093,,,0.002386892,332,139093,,,0.048521493,6749,139093,,,0.852861035,118627,139093,,,0.013609338,1735,127486,0.009195703,0.018022972,0.500636265,69635,139093,,,0.114659332,15590,135968,, -21,017,21017,KY,Bourbon County,2024,1,11488.78113,423,54832,9757.762005,13219.80026,0,,,,2,,,,2,14165.27106,7319.40226,24743.87783,1,,,,2,11981.80606,10047.98795,13915.62418,,,,,2,,0.212,,,0.178,0.245,4.612285999,,,3.655598436,5.639425208,5.71575982,,,4.546908685,6.930897305,0.087660148,130,1483,0.073266698,0.102053599,0,,,,,,,,,,,,,0.090125392,0.074412899,0.105837885,,,,,,,0.215,,,0.171,0.262,0.373,,,0.295,0.453,7.1,0.122605068,0.117,,,0.3,,,0.247,0.354,0.518368556,10498,20252,,,0.138665865,,,0.108252659,0.171771172,0.322580645,10,31,0.22766888,0.417943398,355.9,72,20229,,,26.78790858,109,4069,21.75890864,31.81690852,,,,,,,,,,,,,28.92813642,23.40458985,35.36314666,,,,,,,0.081867346,1317,16087,0.068760963,0.094973729,0.000642642,13,20229,,,1556.076923,0.000746529,15,20093,,,1339.533333,0.001592594,32,20093,,,627.90625,3545,,,,,,,2178,,3484,0.44,,,,,,,0.3,,0.45,0.49,,,,,,,0.51,,0.5,0.853148361,11869,13912,0.822613595,0.883683127,0.577777778,2652,4590,0.48512542,0.670430136,0.03498391,337,9633,,,0.229,1019,,0.15512766,0.30287234,,,,,,,0.325581395,0.036121042,0.615041749,0.05831904,0,0.153380311,0.198529412,0.137409892,0.259648931,5.288559032,115793,21895,4.429566665,6.147551399,0.294863388,1349,4575,0.188771291,0.400955485,9.392456375,19,20229,,,109.8560885,110,100131,89.32632909,130.385848,,,,,,,,,,,,,114.1297314,92.55152378,139.2285935,,,,8.5,,,,,0,,,,,0.12640801,1010,7990,0.097010001,0.155806019,0.107904642,0.078144592,0.137664693,0.015644556,0.003709905,0.027579206,0.003128911,0,0.008806014,0.781864652,7036,8999,0.746538606,0.817190698,,,,,,,,,,,,,0.780824167,0.731122791,0.830525542,0.33,,8999,0.272499064,0.387500936,74.06285503,,,72.76883218,75.35687788,,,,,,,,,,,,,73.75627285,72.35200014,75.16054556,,,,562.3989963,423,54832,505.196156,619.6018366,,,,,,,696.8139778,446.4618637,1036.803965,,,,581.4004166,518.7807401,644.0200932,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.139,,,0.118,0.161,0.189,,,0.163,0.217,0.107,,,0.089,0.125,76.3,13,17041,,,0.117,2370,,,,0.122605068,2450.262285,19985,,,63.42000734,38,59918,44.87977176,87.04891505,,,,,,,,,,,,,70.81038552,49.59472348,98.0314211,,,,0.384,,,0.365,0.402,0.095019886,1099,11566,0.077147545,0.112892226,0.049432057,235,4754,0.033942696,0.064921419,0.000497686,10,20093,,,2009.3,0.94893617,223,235,,,,,,,,2.960342667,,,,,,,,2.793640673,3.065988648,2.743528712,,,,,,,,2.55946754,2.842395931,0.057144513,,,,,-2426.7585,,,,,0.931998876,46421,49808,0.737451201,1.12654655,56879,,,49252.2766,64505.7234,,,,,,,31538,14357.91489,48718.08511,73379,35739.85106,111018.1489,56140,49817.95745,62462.04255,,,,,,0.629555237,2194,3485,,,47.10990502,,,,,0.30709049,,56879,,,9.345794393,11,1177,,,,,,,,,,,,,,,,,,,,,,,,,,10.58369799,11,100131,5.07529457,19.46379743,10.98560885,,,,,,,,,,,,,12.34800164,5.92134675,22.70841466,,,,11.98430057,12,100131,6.192462982,20.9341613,,,,,,,,,,,,,12.94254686,6.46087276,23.15779143,,,,23.52488291,33,140277,16.19344695,33.03768206,,,,,,,,,,,,,21.82563001,14.25722614,31.97960486,,,,13.80952381,,2100,,,22,7,0.648923284,9643,14860,,,0.678,,,,,40.4113734,,,,,0.646956737,5219,8067,0.608536322,0.685377153,0.146997661,1131,7694,0.10997977,0.184015551,0.821618941,6628,8067,0.794515337,0.848722546,20093,,,,,0.224506047,4511,20093,,,0.204598616,4111,20093,,,0.052903996,1063,20093,,,0.004777783,96,20093,,,0.005424775,109,20093,,,0.000597223,12,20093,,,0.074901707,1505,20093,,,0.84516996,16982,20093,,,0.005040428,96,19046,0,0.011970941,0.504155676,10130,20093,,,0.44356113,8983,20252,, -21,019,21019,KY,Boyd County,2024,1,12557.05438,1148,129123,11443.51278,13670.59598,0,,,,2,,,,2,8587.87595,4695.071696,14408.99659,1,,,,2,13092.21031,11899.57806,14284.84257,,,,,2,,0.214,,,0.181,0.251,5.034317805,,,4.102451473,6.102313785,6.200981881,,,5.160830179,7.33069605,0.097801578,347,3548,0.088027221,0.107575936,0,,,,,,,0.341463415,0.196310358,0.486616472,,,,0.095167943,0.08529539,0.105040497,,,,,,,0.225,,,0.181,0.274,0.396,,,0.329,0.467,6.2,0.126020381,0.155,,,0.316,,,0.262,0.374,0.633057749,30552,48261,,,0.131023037,,,0.104426665,0.161882756,0.409090909,9,22,0.29849051,0.512929862,283.9,136,47899,,,31.10507861,275,8841,27.42869325,34.78146397,,,,,,,,,,,,,32.74064991,28.81340725,36.66789257,,,,,,,0.059138907,2173,36744,0.049606992,0.068670822,0.001002109,48,47899,,,997.8958333,0.0007275,35,48110,,,1374.571429,0.007898566,380,48110,,,126.6052632,5010,,,,,,,6820,,4938,0.38,,,,,,,,,0.38,0.46,,,,,,0.64,0.4,,0.46,0.886974018,30417,34293,0.874259112,0.899688925,0.637766411,7481,11730,0.571859188,0.703673634,0.051264167,882,17205,,,0.228,2275,,0.156510638,0.299489362,,,,,,,0.366666667,0.087720239,0.645613094,0.027363184,0,0.146172181,0.220935412,0.171792325,0.270078499,5.326776319,112379,21097,4.148568427,6.504984211,0.275835351,2848,10325,0.21220335,0.339467352,15.24040168,73,47899,,,134.9681831,319,236352,120.1569188,149.7794473,,,,,,,,,,,,,140.1025296,124.4556878,155.7493713,,,,7.8,,,,,0,,,,,0.110074115,2005,18215,0.087199006,0.132949223,0.096493689,0.074977832,0.118009545,0.015097447,0.00608251,0.024112385,0.006862476,0.000499523,0.013225429,0.828078556,15601,18840,0.805851031,0.850306082,,,,,,,,,,,,,0.841607151,0.819572779,0.863641523,0.25,,18840,0.206957705,0.293042296,72.4990704,,,71.71968178,73.27845902,,,,,,,,,,,,,72.1125608,71.30086512,72.92425648,,,,634.4002979,1148,129123,595.5675619,673.2330339,,,,,,,560.2468067,337.3051754,874.8947876,,,,652.6089674,611.7520964,693.4658384,,,,38.79595609,17,43819,22.6000741,62.11608393,,,,,,,,,,,,,42.8254736,24.94741654,68.5677318,,,,6.530612245,24,3675,4.184286491,9.717033359,,,,,,,,,,,,,6.822057988,4.371021278,10.15068152,,,,,,,0.146,,,0.124,0.17,0.195,,,0.167,0.225,0.105,,,0.088,0.124,189.1,77,40715,,,0.155,7530,,,,0.126020381,6243.301699,49542,,,83.60907796,118,141133,68.52327254,98.69488338,,,,,,,,,,,,,89.14421553,72.99109967,105.2973314,,,,0.389,,,0.369,0.407,0.067937439,1807,26598,0.056022545,0.079852333,0.037075277,395,10654,0.025160383,0.048990171,0.00401164,193,48110,,,249.2746114,0.922042389,478.54,519,,,0.122270742,280,2290,0.045121273,0.199420212,3.133730384,,,,,,,,,3.159929879,2.947618538,,,,,,,,,2.979680332,0.05342968,,,,,-1710.8753,,,,,0.74123515,40868,55135,0.649863213,0.832607088,55397,,,48698.44681,62095.55319,,,,,,,55493,31710.87234,79275.12766,73625,10426.02128,136823.9787,59104,54967.14894,63240.85106,,,,,,0.600407154,4129,6877,,,57.69949706,,,,,0.225228803,,55397,,,5.098324836,14,2746,,,3.004726435,10,332809,1.440883118,5.525798894,,,,,,,,,,,,,,,,,,,18.36934839,48,236352,13.34719666,24.65999282,20.30869212,,,,,,,,,,,,,18.81571683,13.50248325,25.52564448,,,,13.96222583,33,236352,9.61095382,19.60815617,,,,,,,,,,,,,14.10122863,9.581100705,20.01556844,,,,8.713706661,29,332809,5.835706107,12.51433628,,,,,,,,,,,,,9.036747287,6.004852945,13.0606159,,,,9.574468085,,4700,,,21,24,0.588628672,21741,36935,,,0.652,,,,,60.87184948,,,,,0.689418874,12777,18533,0.659537117,0.719300632,0.117829196,2093,17763,0.09594614,0.139712251,0.859439918,15928,18533,0.838613257,0.880266579,48110,,,,,0.212991062,10247,48110,,,0.203242569,9778,48110,,,0.028185408,1356,48110,,,0.00357514,172,48110,,,0.006173353,297,48110,,,0.000311786,15,48110,,,0.020868842,1004,48110,,,0.925670339,44534,48110,,,0.002283306,104,45548,0,0.005254039,0.496591145,23891,48110,,,0.237914672,11482,48261,, -21,021,21021,KY,Boyle County,2024,1,9628.840977,577,83416,8379.100062,10878.58189,0,,,,2,,,,2,11863.47473,7883.192804,17146.0241,,,,,2,9542.34934,8182.096557,10902.60212,,,,,2,,0.2,,,0.17,0.235,4.44869128,,,3.54442126,5.533590873,5.441266955,,,4.313636063,6.717462909,0.08839779,192,2172,0.076459296,0.100336284,0,,,,,,,0.176056338,0.113411327,0.238701349,,,,0.087479497,0.074530871,0.100428123,,,,,,,0.204,,,0.163,0.253,0.404,,,0.318,0.494,7.6,0.073344366,0.118,,,0.278,,,0.228,0.34,0.742144117,22720,30614,,,0.150444889,,,0.117723515,0.188301893,0.277777778,5,18,0.152183671,0.410166986,276.4,85,30747,,,20.02121453,151,7542,16.82778,23.21464906,,,,,,,,,,29.94011976,14.35745119,55.06094623,20.20860495,16.65162381,23.7655861,,,,,,,0.06047124,1332,22027,0.050939325,0.070003155,0.000585423,18,30747,,,1708.166667,0.000808957,25,30904,,,1236.16,0.002750453,85,30904,,,363.5764706,3489,,,,,,,3032,,3447,0.38,,,,,,,0.44,,0.38,0.37,,,,,,,0.25,,0.38,0.903737095,18645,20631,0.888103231,0.919370959,0.636209335,4498,7070,0.56469013,0.707728541,0.039220291,501,12774,,,0.175,1078,,0.114234043,0.235765957,,,,,,,0.365497076,0.009145345,0.721848807,0.107142857,0,0.241345533,0.144190871,0.098420314,0.189961429,5.206655785,114838,22056,4.383250135,6.030061435,0.253002272,1559,6162,0.184260563,0.321743981,13.33463427,41,30747,,,97.88489266,148,151198,82.11455898,113.6552263,,,,,,,,,,,,,107.7352349,89.82478748,125.6456822,,,,8.3,,,,,0,,,,,0.133574007,1480,11080,0.104783068,0.162364946,0.12579763,0.095141715,0.156453545,0.004963899,0.000657236,0.009270562,0.009476534,0.002493044,0.016460025,0.793307087,9672,12192,0.757776239,0.828837934,,,,,,,0.714924039,0.561239049,0.868609029,,,,0.818485928,0.788970475,0.848001382,0.291,,12192,0.24493079,0.33706921,75.14264189,,,74.14669574,76.13858805,,,,,,,73.56040956,70.07884868,77.04197045,,,,75.07683648,74.00760328,76.14606967,,,,513.0269657,577,83416,468.9518852,557.1020463,,,,,,,602.0853893,440.8021768,803.0975351,,,,512.091936,465.2072577,558.9766143,,,,55.55748464,16,28799,31.75590282,90.22187436,,,,,,,,,,,,,56.4750858,30.07060468,96.57411668,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.133,,,0.114,0.156,0.181,,,0.156,0.212,0.105,,,0.088,0.124,91.2,24,26309,,,0.118,3580,,,,0.073344366,2085.327018,28432,,,39.48494088,36,91174,27.65476717,54.66380162,,,,,,,,,,,,,42.49565385,29.25205276,59.67969773,,,,0.392,,,0.374,0.409,0.07011907,1113,15873,0.057012687,0.083225453,0.036624942,237,6471,0.024710048,0.048539836,0.001941496,60,30904,,,515.0666667,0.949565217,327.6,345,,,,,,,,3.284094542,,,,,,,2.847100079,2.873859132,3.409061573,3.189721088,,,,,,,2.887981929,2.409769202,3.356284528,0.098675965,,,,,-1992.73655,,,,,0.843240586,42883,50855,0.73481174,0.951669432,57975,,,50671.17021,65278.82979,,,,,,,40510,33573.14894,47446.85106,62755,30489.46809,95020.53192,59306,52582.42553,66029.57447,,,,,,0.57641829,2723,4724,,,39.86031678,,,,,0.301285037,,57975,,,6.811989101,10,1468,,,,,,,,,,,,,,,,,,,,,,,,,,18.32679687,30,151198,12.07747462,26.66452725,19.8415323,,,,,,,,,,,,,21.27000692,14.01706859,30.94674335,,,,15.87322584,24,151198,10.1702753,23.61810182,,,,,,,,,,,,,17.82669354,11.30059451,26.74879313,,,,14.69020258,31,211025,9.981279933,20.85156996,,,,,,,,,,,,,16.62574885,11.21732293,23.73429027,,,,18.21428571,,2800,,,31,20,0.611453931,14467,23660,,,0.707,,,,,58.06532387,,,,,0.688471113,8020,11649,0.661689137,0.71525309,0.148060383,1687,11394,0.113890309,0.182230457,0.838011847,9762,11649,0.810488292,0.865535401,30904,,,,,0.203889464,6301,30904,,,0.195120373,6030,30904,,,0.079115972,2445,30904,,,0.003397618,105,30904,,,0.010775304,333,30904,,,0.000355941,11,30904,,,0.033976184,1050,30904,,,0.849436966,26251,30904,,,0.004905324,143,29152,0.000139996,0.009670652,0.49682889,15354,30904,,,0.353629059,10826,30614,, -21,023,21023,KY,Bracken County,2024,1,14302.92509,195,23381,11262.20765,17343.64253,0,,,,2,,,,2,,,,2,,,,2,14736.4727,11555.26575,17917.67966,,,,,2,,0.225,,,0.19,0.261,4.945442283,,,4.00847773,5.967959397,5.935701763,,,4.741719599,7.157848196,0.084821429,57,672,0.063755668,0.105887189,0,,,,,,,,,,,,,0.085235921,0.063883886,0.106587956,,,,,,,0.244,,,0.197,0.29,0.386,,,0.302,0.471,8.1,0.002264717,0.127,,,0.316,,,0.258,0.375,0,0,8400,,,0.14598917,,,0.114108206,0.181856435,0.444444444,4,9,0.264827841,0.599456043,248.8,21,8439,,,24.60850112,44,1788,17.88057459,33.03576414,,,,,,,,,,,,,25.89758682,18.81722623,34.76630152,,,,,,,0.071068185,493,6937,0.059153292,0.082983079,0.000118498,1,8439,,,8439,0.000354946,3,8452,,,2817.333333,0.000118315,1,8452,,,8452,4489,,,,,,,,,4517,0.45,,,,,,,,,0.45,0.37,,,,,,,,,0.37,0.880378658,5115,5810,0.849155295,0.91160202,0.542364532,1101,2030,0.432219686,0.652509378,0.042519685,162,3810,,,0.209,403,,0.137510638,0.280489362,,,,,,,,,,,,,0.288977727,0.200230083,0.377725371,4.734685288,123741,26135,3.950853757,5.518516819,0.227892875,451,1979,0.133678562,0.322107189,11.84974523,10,8439,,,151.6829585,63,41534,116.5573501,194.0683953,,,,,,,,,,,,,155.9787668,119.5880261,199.9577395,,,,8.3,,,,,0,,,,,0.120500783,385,3195,0.085437284,0.155564281,0.103470232,0.069578486,0.137361979,0.020031299,0.001096,0.038966598,0.004381847,0,0.012280634,0.777902727,2767,3557,0.734658803,0.821146652,,,,,,,,,,,,,0.829927489,0.764354345,0.895500632,0.536,,3557,0.448500539,0.623499461,71.54663363,,,69.49918152,73.59408574,,,,,,,,,,,,,71.17641201,69.07631045,73.27651356,,,,632.7108416,195,23381,538.5220501,726.8996331,,,,,,,,,,,,,645.4033852,548.404545,742.4022254,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.148,,,0.127,0.171,0.198,,,0.171,0.227,0.11,,,0.093,0.128,70.8,5,7063,,,0.127,1070,,,,0.002264717,19.22292142,8488,,,63.92840019,16,25028,36.54060434,103.8157168,,,,,,,,,,,,,66.92040654,38.25079449,108.6745477,,,,0.382,,,0.362,0.4,0.079613993,396,4974,0.06531612,0.093911865,0.049903101,103,2064,0.03322225,0.066583952,0.000591576,5,8452,,,1690.4,0.920982143,103.15,112,,,,,,,,3.055674333,,,,,,,,,3.056027598,2.957709137,,,,,,,,,2.902022208,0.033453341,,,,,-3536.6085,,,,,0.729141516,42883,58813,0.571225985,0.887057048,58301,,,49835.46809,66766.53192,,,,,,,,,,,,,59799,49735.68085,69862.31915,,,,,,0.54076087,796,1472,,,,,,,,0.219361589,,58301,,,6.109979633,3,491,,,,,,,,,,,,,,,,,,,,,,,,,,31.56434023,13,41534,16.3097552,55.13655018,31.29965811,,,,,,,,,,,,,32.77604303,16.93585971,57.25315112,,,,26.48432609,11,41534,13.22088016,47.38777511,,,,,,,,,,,,,27.67365217,13.81458745,49.51580798,,,,24.03227191,14,58255,13.13866668,40.3220687,,,,,,,,,,,,,25.07432747,13.70836816,42.07046087,,,,14.44444444,,900,,,0,13,0.672050673,4244,6315,,,0.64,,,,,2.960283773,,,,,0.804971319,2526,3138,0.779748791,0.830193847,0.084625759,251,2966,0.04593472,0.123316798,0.814531549,2556,3138,0.76526792,0.863795177,8452,,,,,0.234145764,1979,8452,,,0.180667298,1527,8452,,,0.008518694,72,8452,,,0.003904401,33,8452,,,0.001538098,13,8452,,,0.000591576,5,8452,,,0.019522007,165,8452,,,0.951135826,8039,8452,,,0,0,7926,0,0.010222215,0.494320871,4178,8452,,,1,8400,8400,, -21,025,21025,KY,Breathitt County,2024,1,19714.6125,449,36251,17000.6942,22428.5308,0,,,,2,,,,2,,,,2,,,,2,20259.10649,17452.21335,23065.99963,,,,,2,,0.275,,,0.232,0.317,5.603366685,,,4.579592738,6.786631187,6.310258302,,,5.095525508,7.605609428,0.105691057,117,1107,0.087579943,0.123802171,0,,,,,,,,,,,,,0.105407883,0.08718602,0.123629746,,,,,,,0.279,,,0.225,0.332,0.394,,,0.318,0.473,4.8,0.119828839,0.226,,,0.36,,,0.299,0.42,0.218034699,2991,13718,,,0.127049988,,,0.098919097,0.157193685,0.4,10,25,0.296401693,0.498317032,125.4,17,13553,,,51.51915456,117,2271,42.18377741,60.8545317,,,,,,,,,,,,,55.95754945,45.7743145,66.14078439,,,,,,,0.068719076,750,10914,0.056804183,0.08063397,0.000442706,6,13553,,,2258.833333,0.000149802,2,13351,,,6675.5,0.002471725,33,13351,,,404.5757576,7867,,,,,,,,,7675,0.24,,,,,,,,,0.24,0.3,,,,,,,,,0.3,0.794740612,7767,9773,0.768936201,0.820545023,0.500441306,1701,3399,0.416176593,0.584706019,0.073300062,235,3206,,,0.415,1122,,0.295851064,0.534148936,,,,,,,,,,,,,0.370135028,0.300449887,0.439820169,5.815930485,80318,13810,4.774816054,6.857044916,0.244912791,674,2752,0.165650719,0.324174863,3.689220099,5,13553,,,144.3987268,93,64405,116.5484089,176.8981958,,,,,,,,,,,,,149.9202038,121.0049534,183.6623781,,,,7.7,,,,,0,,,,,0.150568182,795,5280,0.116261599,0.184874765,0.101075269,0.071637991,0.130512547,0.032007576,0.009305436,0.054709716,0.024621212,0.012212892,0.037029532,0.781055901,3521,4508,0.706538144,0.855573658,,,,,,,,,,,,,0.774841084,0.720838428,0.82884374,0.403,,4508,0.324217412,0.481782588,67.46941746,,,65.89033898,69.04849594,,,,,,,,,,,,,67.01750638,65.42415004,68.61086272,,,,917.3924215,449,36251,827.1447308,1007.640112,,,,,,,,,,,,,937.9028847,845.3875857,1030.418184,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.177,,,0.151,0.202,0.22,,,0.191,0.251,0.128,,,0.109,0.15,87.1,10,11486,,,0.226,3080,,,,0.119828839,1662.984621,13878,,,59.38088968,23,38733,37.64239031,89.10049027,,,,,,,,,,,,,61.721769,39.12630699,92.61295861,,,,0.402,,,0.383,0.421,0.081167632,659,8119,0.06567827,0.096656993,0.033049404,97,2935,0.022326,0.043772808,0.00202232,27,13351,,,494.4814815,0.922337278,155.875,169,,,,,,,,2.947643131,,,,,,,,,2.937961709,2.709233844,,,,,,,,,2.702969718,0.043216539,,,,,-6590.914,,,,,0.737139663,34291,46519,0.486684223,0.987595104,36300,,,31859.31915,40740.68085,,,,,,,,,,,,,38558,34703.53192,42412.46809,,,,,,0.721186035,1508,2091,,,,,,,,0.35231405,,36300,,,6.090133983,5,821,,,,,,,,,,,,,,,,,,,,,,,,,,21.599698,14,64405,11.50092949,36.9361414,21.73744275,,,,,,,,,,,,,22.43315713,11.94471138,38.3613819,,,,26.39546619,17,64405,15.37633176,42.26169834,,,,,,,,,,,,,27.40476843,15.96428751,43.877689,,,,40.5821899,37,91173,28.57360684,55.93720306,,,,,,,,,,,,,42.05549052,29.61094644,57.96795388,,,,15.45454546,,1100,,,5,12,0.558284024,5661,10140,,,0.521,,,,,8.83930093,,,,,0.72906493,4031,5529,0.694842214,0.763287647,0.101926663,492,4827,0.06752907,0.136324255,0.747874842,4135,5529,0.717883138,0.777866546,13351,,,,,0.208224103,2780,13351,,,0.189723616,2533,13351,,,0.005018351,67,13351,,,0.00194742,26,13351,,,0.006141862,82,13351,,,0.001423114,19,13351,,,0.013482136,180,13351,,,0.96239982,12849,13351,,,0.000624805,8,12804,0,0.007535429,0.496592016,6630,13351,,,1,13718,13718,, -21,027,21027,KY,Breckinridge County,2024,1,10923.35836,453,56906,9257.223756,12589.49296,0,,,,2,,,,2,,,,2,,,,2,11092.70829,9354.797019,12830.61956,,,,,2,,0.231,,,0.197,0.268,4.892337733,,,3.897427544,5.935622773,6.18724424,,,4.990178199,7.383900583,0.075704225,129,1704,0.063144307,0.088264144,0,,,,,,,,,,,,,0.070552147,0.058120465,0.08298383,,,,,,,0.251,,,0.203,0.301,0.421,,,0.342,0.505,7.6,0.035205326,0.138,,,0.314,,,0.259,0.369,0.294733751,6022,20432,,,0.143934024,,,0.113984829,0.178449575,0.272727273,6,22,0.159704728,0.392079091,217.9,45,20651,,,31.65912878,133,4201,26.27854733,37.03971023,,,,,,,,,,,,,30.98151523,25.41497638,36.54805409,,,,,,,0.072323776,1183,16357,0.060408882,0.084238669,0.000242119,5,20651,,,4130.2,0.000143246,3,20943,,,6981,0.000907224,19,20943,,,1102.263158,5064,,,,,,,,,5109,0.38,,,,,,,,,0.38,0.36,,,,,,,0.28,,0.37,0.851041299,12055,14165,0.821047045,0.881035553,0.48568873,2172,4472,0.396925136,0.574452323,0.045642633,364,7975,,,0.247,1143,,0.162404255,0.331595745,,,,,,,,,,0.206896552,0,0.715706883,0.346265761,0.264345568,0.428185955,5.283750809,106103,20081,3.773956076,6.793545542,0.27325833,1263,4622,0.194644395,0.351872264,12.10595129,25,20651,,,118.4370228,121,102164,97.33369876,139.5403469,,,,,,,,,,,,,122.1039449,99.97845805,144.2294318,,,,8.8,,,,,0,,,,,0.104139715,805,7730,0.078248207,0.130031224,0.070836076,0.050710741,0.090961412,0.018628719,0.007861558,0.029395881,0.02457956,0.010120942,0.039038178,0.805938773,6134,7611,0.76356598,0.848311566,,,,,,,,,,,,,0.779095422,0.731717416,0.826473428,0.497,,7611,0.419315259,0.574684741,73.9296059,,,72.67573974,75.18347206,,,,,,,,,,,,,73.63493179,72.35514215,74.91472143,,,,543.229783,453,56906,489.2106073,597.2489588,,,,,,,,,,,,,551.7832879,495.7568671,607.8097087,,,,69.24522703,14,20218,37.85700997,116.1817248,,,,,,,,,,,,,71.02272727,37.81661107,121.4510267,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.151,,,0.13,0.173,0.2,,,0.173,0.229,0.113,,,0.097,0.131,137.6,24,17447,,,0.138,2800,,,,0.035205326,706.1836361,20059,,,25.94664721,16,61665,14.83075076,42.1357295,,,,,,,,,,,,,24.2891098,13.27908235,40.75299905,,,,0.388,,,0.369,0.406,0.082612383,974,11790,0.067123022,0.098101745,0.046608406,224,4806,0.031119045,0.062097768,0.000572984,12,20943,,,1745.25,0.944901961,240.95,255,,,,,,,,3.250867532,,,,,,,,,3.258741821,3.153183321,,,,,,,,,3.163481624,0.022036197,,,,,-618.25535,,,,,0.777642861,41628,53531,0.661846148,0.893439575,52400,,,45301.10638,59498.89362,,,,,,,52115,49156.53192,55073.46809,21595,18652.02128,24537.97872,52337,46920.48936,57753.51064,,,,,,0.604774536,1824,3016,,,47.53145757,,,,,0.244064886,,52400,,,4.240882104,5,1179,,,7.73868569,11,142143,3.863124014,13.84664634,,,,,,,,,,,,,8.230760597,4.108766035,14.72710428,,,,15.96068806,17,102164,8.933075944,26.32472772,16.6399123,,,,,,,,,,,,,16.93564576,9.478752371,27.93277219,,,,16.6399123,17,102164,9.693362114,26.64211152,,,,,,,,,,,,,17.74159883,10.33513512,28.40601838,,,,36.58287781,52,142143,27.32184293,47.97357713,,,,,,,,,,,,,37.41254817,27.76831437,49.32378066,,,,8.636363636,,2200,,,11,8,0.65470305,10197,15575,,,0.524,,,,,0.124687665,,,,,0.824051976,6215,7542,0.797267857,0.850836094,0.076202639,537,7047,0.051944446,0.100460833,0.768629011,5797,7542,0.720735923,0.816522099,20943,,,,,0.225278136,4718,20943,,,0.202597527,4243,20943,,,0.02229862,467,20943,,,0.005920833,124,20943,,,0.003915389,82,20943,,,0.000429738,9,20943,,,0.020961658,439,20943,,,0.931194194,19502,20943,,,0.007175305,139,19372,0.000100286,0.014250323,0.490808385,10279,20943,,,1,20432,20432,, -21,029,21029,KY,Bullitt County,2024,1,9196.463942,1286,231035,8431.610374,9961.317509,0,,,,2,,,,2,,,,2,,,,2,9351.779091,8561.409155,10142.14903,,,,,2,,0.188,,,0.16,0.219,4.442113535,,,3.536040096,5.425676384,5.463410529,,,4.327579891,6.550946348,0.079661931,443,5561,0.07254523,0.086778633,0,,,,,,,0.131868132,0.062349991,0.201386273,,,,0.07852689,0.071167136,0.085886644,,,,,,,0.2,,,0.16,0.242,0.376,,,0.301,0.453,7.8,0.095974199,0.097,,,0.291,,,0.242,0.346,0.696218544,57241,82217,,,0.1560026,,,0.123407597,0.193025379,0.285714286,18,63,0.220362237,0.352930756,240,199,82918,,,16.33136095,276,16900,14.40461742,18.25810447,,,,,,,,,,26.26641651,14.36009433,44.07058372,15.96358508,13.98074892,17.94642123,,,,,,,0.053523873,3678,68717,0.045183448,0.061864299,0.000180902,15,82918,,,5527.866667,0.000333985,28,83836,,,2994.142857,0.001049668,88,83836,,,952.6818182,3436,,,,,,,,,3416,0.45,,,,,,,0.31,,0.45,0.51,,,,,,0.25,0.26,,0.51,0.893671622,52236,58451,0.881101763,0.906241482,0.595009776,12782,21482,0.551294307,0.638725244,0.040298646,1738,43128,,,0.119,2054,,0.079680851,0.158319149,,,,,,,0.288557214,0,0.597307434,0.462915601,0.283325444,0.642505758,0.130601128,0.093950952,0.167251305,3.851923585,131262,34077,3.498246457,4.205600713,0.243286029,4303,17687,0.195718562,0.290853497,6.27125594,52,82918,,,102.6731783,419,408091,92.84198882,112.5043678,,,,,,,,,,,,,106.2086387,95.8900878,116.5271895,,,,9.9,,,,,0,,,,,0.099198397,2970,29940,0.081152791,0.117244002,0.073956062,0.057852941,0.090059184,0.023881096,0.015590474,0.032171717,0.006847027,0.002871687,0.010822368,0.82381106,33207,40309,0.807282088,0.840340031,,,,,,,0.654320988,0.52291287,0.785729106,0.558357771,0.45861232,0.658103223,0.771977246,0.734071752,0.80988274,0.485,,40309,0.450611545,0.519388455,76.87273258,,,76.18759311,77.55787204,,,,,,,,,,91.14373757,67.60935199,114.6781231,76.57609307,75.88471628,77.26746986,,,,427.6661251,1286,231035,403.3584552,451.973795,,,,,,,,,,,,,437.4915189,412.2563902,462.7266476,,,,45.25764531,35,77335,31.5236082,62.94242887,,,,,,,,,,,,,40.1836969,26.70177476,58.07663023,,,,4.835243553,27,5584,3.186455969,7.03502551,,,,,,,,,,,,,4.230769231,2.651400552,6.405435459,,,,,,,0.131,,,0.112,0.151,0.185,,,0.159,0.212,0.096,,,0.081,0.112,63.6,45,70806,,,0.097,7960,,,,0.095974199,7132.706516,74319,,,45.79051448,113,246776,37.34760034,54.23342861,,,,,,,,,,,,,47.6390519,38.73632936,56.54177444,,,,0.38,,,0.362,0.398,0.061436913,3146,51207,0.050713509,0.072160317,0.031763239,586,18449,0.022231324,0.041295154,0.00054869,46,83836,,,1822.521739,0.89,931.83,1047,,,0.087539791,385,4398,0.041487291,0.13359229,3.040909728,,,,,,,,,3.076215406,3.019069605,,,,,,,,2.490254569,3.048957224,0.028911423,,,,,2522.853,,,,,0.780789506,44879,57479,0.720742324,0.840836687,77192,,,71060.59575,83323.40426,28611,20846.06383,36375.93617,,,,38659,13653.21277,63664.78723,61625,10395.7234,112854.2766,74355,71883.85106,76826.14894,,,,,,0.444568157,5590,12574,,,65.7167681,,,,,0.188594673,,77192,,,7.440130202,32,4301,,,4.24070226,24,565944,2.717097956,6.309828816,,,,,,,,,,,,,4.127827562,2.586887557,6.249580535,,,,21.41002229,91,408091,17.12525426,26.44120335,22.29894803,,,,,,,,,,,,,22.4296426,17.91600186,27.73460042,,,,19.11338403,78,408091,15.10833692,23.85436828,,,,,,,,,,,,,19.57161646,15.39431789,24.53319071,,,,16.0793294,91,565944,12.94607302,19.74185342,,,,,,,,,,,,,16.1360532,12.90675974,19.92789443,,,,10.23255814,,8600,,,26,62,0.669923372,41964,62640,,,0.777,,,,,43.34862543,,,,,0.826091155,25665,31068,0.807628084,0.844554226,0.087915338,2675,30427,0.071814649,0.104016027,0.887697953,27579,31068,0.871113381,0.904282525,83836,,,,,0.209778615,17587,83836,,,0.176022234,14757,83836,,,0.016174436,1356,83836,,,0.004055537,340,83836,,,0.007252254,608,83836,,,0.0009781,82,83836,,,0.030941362,2594,83836,,,0.925628608,77601,83836,,,0.009614034,753,78323,0.0055498,0.013678268,0.500512906,41961,83836,,,0.294525463,24215,82217,, -21,031,21031,KY,Butler County,2024,1,11887.44318,304,34874,9821.741376,13953.14499,0,,,,2,,,,2,,,,2,,,,2,12012.48957,9874.145617,14150.83352,,,,,2,,0.234,,,0.199,0.274,5.065437534,,,4.02502579,6.14763955,6.004358077,,,4.755588943,7.296429869,0.072436501,77,1063,0.056853898,0.088019103,0,,,,,,,,,,,,,0.072572038,0.055960455,0.089183622,,,,,,,0.247,,,0.202,0.298,0.384,,,0.303,0.47,7.4,0.048286128,0.137,,,0.322,,,0.269,0.382,0.201438849,2492,12371,,,0.141367206,,,0.112034547,0.176720497,0.266666667,4,15,0.129817183,0.413965161,276.6,34,12294,,,41.0729254,98,2386,33.3449862,50.05474027,,,,,,,,,,,,,40.27149321,32.3413159,49.55753774,,,,,,,0.096689278,955,9877,0.081199916,0.11217864,8.13405E-05,1,12294,,,12294,8.13339E-05,1,12295,,,12295,0.001301342,16,12295,,,768.4375,2533,,,,,,,,,2548,0.34,,,,,,,,,0.34,0.42,,,,,,,,,0.42,0.807336265,6977,8642,0.774133702,0.840538828,0.448253346,1373,3063,0.362587974,0.533918719,0.041032826,205,4996,,,0.224,605,,0.145361702,0.302638298,,,,,,,,,,0.8,0.744701542,0.855298458,0.202803329,0.136768635,0.268838023,4.891960752,90242,18447,3.656312562,6.127608943,0.167257264,472,2822,0.090808657,0.243705872,13.01447861,16,12294,,,111.8480127,71,63479,87.35422589,141.081049,,,,,,,,,,,,,110.1891581,85.22028686,140.1876262,,,,8.3,,,,,0,,,,,0.095336788,460,4825,0.066622496,0.124051079,0.070762712,0.044589927,0.096935497,0.024870466,0.006864916,0.042876017,0.005181347,0,0.011987588,0.820580475,3732,4548,0.754621157,0.886539793,,,,,,,,,,,,,0.79607698,0.712720348,0.879433612,0.513,,4548,0.427511157,0.598488843,72.44076001,,,70.97450875,73.90701126,,,,,,,,,,,,,72.27820959,70.79254676,73.76387241,,,,624.5695612,304,34874,550.7501485,698.3889739,,,,,,,,,,,,,628.3187882,552.5233628,704.1142136,,,,80.50881572,10,12421,38.60710648,148.0585786,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.153,,,0.132,0.177,0.201,,,0.174,0.231,0.111,,,0.094,0.129,96.9,10,10324,,,0.137,1710,,,,0.048286128,612.750958,12690,,,,,,,,,,,,,,,,,,,,,,,,,,0.385,,,0.368,0.403,0.10946456,783,7153,0.090400731,0.12852839,0.063986014,183,2860,0.043730695,0.084241333,0.001220008,15,12295,,,819.6666667,0.925,162.8,176,,,,,,,,2.597091861,,,,,,,,1.327334213,2.714554334,2.402225159,,,,,,,,1.481262292,2.530693766,0.035744454,,,,,-2156.717,,,,,0.652900188,34669,53100,0.553874054,0.751926323,50824,,,44704.51064,56943.48936,,,,,,,,,,21061,9714.446809,32407.55319,49209,42783.29787,55634.70213,,,,,,0.574074074,1209,2106,,,,,,,,0.251633087,,50824,,,6.83994528,5,731,,,,,,,,,,,,,,,,,,,,,,,,,,20.19472128,13,63479,10.43490717,35.27611396,20.4792136,,,,,,,,,,,,,21.32774002,11.02035449,37.25526969,,,,23.62986184,15,63479,13.2254543,38.9738636,,,,,,,,,,,,,23.37345777,12.77848686,39.21669052,,,,32.48862898,29,89262,21.75814472,46.65909059,,,,,,,,,,,,,32.05242352,21.12274907,46.6345934,,,,9.230769231,,1300,,,5,7,0.636382536,6122,9620,,,0.583,,,,,2.417982715,,,,,0.721617418,3248,4501,0.686100743,0.757134093,0.079265346,328,4138,0.046822407,0.111708285,0.749166852,3372,4501,0.707239791,0.791093912,12295,,,,,0.225376169,2771,12295,,,0.191378609,2353,12295,,,0.007076047,87,12295,,,0.005937373,73,12295,,,0.004392029,54,12295,,,0,0,12295,,,0.04156161,511,12295,,,0.933631558,11479,12295,,,0.023447565,273,11643,0.009134911,0.03776022,0.492232615,6052,12295,,,1,12371,12371,, -21,033,21033,KY,Caldwell County,2024,1,12534.92653,299,34633,10211.08062,14858.77244,0,,,,2,,,,2,,,,2,,,,2,12143.53556,9782.58593,14504.48518,,,,,2,,0.219,,,0.185,0.258,4.795439732,,,3.805512131,5.943983211,5.753137309,,,4.565908337,7.049679427,0.084372004,88,1043,0.067503653,0.101240355,0,,,,,,,,,,,,,0.080712788,0.063427419,0.097998158,,,,,,,0.229,,,0.183,0.28,0.369,,,0.292,0.454,7.9,0.005657857,0.136,,,0.298,,,0.244,0.362,0.373942604,4730,12649,,,0.140714135,,,0.111248698,0.175438674,0.166666667,2,12,0.039062389,0.344663233,316.9,40,12624,,,36.46452636,92,2523,29.3955548,44.72050456,,,,,,,,,,,,,37.10490151,29.46664773,46.11800466,,,,,,,0.067913087,672,9895,0.055998194,0.079827981,0.000237643,3,12624,,,4208,0.000397773,5,12570,,,2514,0.000795545,10,12570,,,1257,2517,,,,,,,,,2535,0.43,,,,,,,0.2,,0.43,0.25,,,,,,,0.15,,0.25,0.877014993,7780,8871,0.835327395,0.918702591,0.556320174,1536,2761,0.446658587,0.66598176,0.033992482,208,6119,,,0.236,654,,0.150212766,0.321787234,,,,,,,0.699300699,0.362837807,1,,,,0.118027486,0.05734577,0.178709202,5.455243101,103786,19025,4.263990617,6.646495585,0.189855583,539,2839,0.116199087,0.263512079,16.63498099,21,12624,,,94.61931496,60,63412,72.20450538,121.7938141,,,,,,,,,,,,,97.44723059,73.61059074,126.5433345,,,,8.3,,,,,0,,,,,0.092042186,480,5215,0.045930976,0.138153396,0.078973347,0.034051206,0.123895488,0.013422819,0,0.03396265,0.001917546,0,0.007308436,0.82262017,4364,5305,0.76506954,0.880170799,,,,,,,,,,,,,0.864082825,0.805353955,0.922811694,0.407,,5305,0.312541116,0.501458884,72.97676503,,,71.31731338,74.63621669,,,,,,,,,,,,,73.05101511,71.37642269,74.72560753,,,,609.3425503,299,34633,534.9851173,683.6999833,,,,,,,,,,,,,606.8935904,529.6803188,684.106862,,,,88.24001284,11,12466,44.04909648,157.8857574,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.144,,,0.123,0.168,0.196,,,0.169,0.226,0.109,,,0.092,0.127,169.7,18,10604,,,0.136,1720,,,,0.005657857,73.46161953,12984,,,,,,,,,,,,,,,,,,,,,,,,,,0.387,,,0.368,0.405,0.078731238,556,7062,0.063241876,0.094220599,0.041764904,124,2969,0.028658521,0.054871287,0.001113763,14,12570,,,897.8571429,0.975,126.75,130,,,,,,,,3.081339004,,,,,,,,,3.17870801,3.173555472,,,,,,,,,3.279053935,0.010387252,,,,,-538.9141,,,,,0.911422255,43288,47495,0.593766228,1.229078282,51553,,,44687.6383,58418.3617,,,,,,,,,,,,,53237,48136.23404,58337.76596,,,,,,0.589660743,1095,1857,,,54.28602564,,,,,0.248074797,,51553,,,6.711409396,5,745,,,,,,,,,,,,,,,,,,,,,,,,,,24.42248169,13,63412,13.00394292,41.76318748,20.50085157,,,,,,,,,,,,,25.17717398,13.00941319,43.97945615,,,,18.92386299,12,63412,9.778236152,33.05618029,,,,,,,,,,,,,19.14142029,9.555328044,34.24928831,,,,25.94150754,23,88661,16.44469049,38.92499847,,,,,,,,,,,,,24.87655012,15.19524309,38.41981405,,,,12.30769231,,1300,,,8,8,0.659282051,6428,9750,,,0.663,,,,,27.23410701,,,,,0.731084243,3749,5128,0.687474784,0.774693703,0.10645227,523,4913,0.061272187,0.151632352,0.818837754,4199,5128,0.775206789,0.862468718,12570,,,,,0.227684964,2862,12570,,,0.212887828,2676,12570,,,0.052824185,664,12570,,,0.003500398,44,12570,,,0.005330151,67,12570,,,0.000795545,10,12570,,,0.022673031,285,12570,,,0.896738266,11272,12570,,,0.000754211,9,11933,0,0.008233505,0.506682578,6369,12570,,,0.521068859,6591,12649,, -21,035,21035,KY,Calloway County,2024,1,8627.465688,603,107264,7566.409397,9688.521978,0,,,,2,,,,2,,,,2,,,,2,8718.65392,7595.013553,9842.294287,,,,,2,,0.204,,,0.171,0.24,4.46288575,,,3.577195519,5.462379106,5.675047955,,,4.603621415,6.864265629,0.072169059,181,2508,0.062041559,0.082296559,0,,,,,,,0.116504854,0.054544834,0.178464875,,,,0.069593648,0.058814886,0.08037241,,,,,,,0.21,,,0.165,0.257,0.401,,,0.327,0.48,7.4,0.062743678,0.132,,,0.272,,,0.223,0.327,0.703662777,26108,37103,,,0.151668978,,,0.119575671,0.187822562,0.111111111,3,27,0.034770202,0.223179062,308.8,116,37560,,,14.23602685,176,12363,12.13278829,16.33926542,,,,,,,20.6185567,10.65390912,36.01646916,,,,13.79564058,11.58787828,16.00340288,,,,,,,0.078049469,2212,28341,0.064943086,0.091155852,0.000479233,18,37560,,,2086.666667,0.000477644,18,37685,,,2093.611111,0.001087966,41,37685,,,919.1463415,4125,,,,,,,4771,,4088,0.43,,,,,,,0.31,,0.44,0.45,,,,,,0.36,0.48,,0.45,0.902802854,21001,23262,0.884683428,0.920922281,0.688071217,5797,8425,0.613248174,0.762894259,0.039710777,692,17426,,,0.213,1436,,0.145085106,0.280914894,0.578947368,0.10366674,1,,,,0.523364486,0.250665488,0.796063484,0.233333333,0.071338462,0.395328205,0.203220036,0.137667235,0.268772837,5.092638129,101481,19927,4.443708539,5.74156772,0.282468988,1890,6691,0.208039806,0.35689817,13.31203408,50,37560,,,78.90054921,153,193915,66.39823578,91.40286264,,,,,,,,,,,,,83.50081485,69.90945899,97.09217072,,,,8.1,,,,,0,,,,,0.14622337,2265,15490,0.119869427,0.172577313,0.137931035,0.110573373,0.165288696,0.012588767,0.005465812,0.019711722,0.003163331,0.000173467,0.006153195,0.78638278,13444,17096,0.759441921,0.813323638,,,,,,,0.77560241,0.564993795,0.986211024,0.796976242,0.636270549,0.957681935,0.79058217,0.770547102,0.810617238,0.185,,17096,0.145482769,0.224517232,75.53591249,,,74.68212423,76.38970074,,,,,,,,,,,,,75.32762741,74.44266081,76.21259401,,,,456.6223129,603,107264,418.0696596,495.1749662,,,,,,,,,,,,,466.1250098,425.4471681,506.8028516,,,,44.23310848,16,36172,25.28304339,71.83179696,,,,,,,,,,,,,42.10662694,22.42000548,72.00361443,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.136,,,0.115,0.158,0.189,,,0.162,0.217,0.108,,,0.092,0.127,48.9,16,32706,,,0.132,4910,,,,0.062743678,2333.500145,37191,,,24.16688964,28,115861,16.05872266,34.92788423,,,,,,,,,,,,,24.1031228,15.59827021,35.58096403,,,,0.395,,,0.375,0.415,0.087732308,1893,21577,0.071051457,0.104413159,0.048629656,346,7115,0.033140294,0.064119017,0.001777896,67,37685,,,562.4626866,0.934721408,318.74,341,,,0.064863293,223,3438,0.022914549,0.106812037,3.425302181,,,,,,,,3.568587808,3.453401956,3.561383503,,,,,,,,3.730585341,3.565145755,0.028268555,,,,,1092.9998,,,,,0.799204601,37378,46769,0.691241815,0.907167388,51949,,,46648.06383,57249.93617,,,,,,,33026,10615.2766,55436.7234,57109,35370.2766,78847.7234,49565,44063.89362,55066.10638,,,,,,0.539114238,2605,4832,,,51.97730051,,,,,0.306223411,,51949,,,11.35718342,20,1761,,,5.910711317,16,270695,3.378482223,9.598624872,,,,,,,,,,,,,4.540370081,2.266536386,8.123976255,,,,21.54081053,43,193915,15.31762203,29.44699711,22.17466416,,,,,,,,,,,,,22.36732433,15.66579898,30.965805,,,,18.04914524,35,193915,12.57189098,25.10199179,,,,,,,,,,,,,19.57950141,13.55937391,27.36039072,,,,15.14619775,41,270695,10.86917301,20.5475275,,,,,,,,,,,,,16.09767574,11.4470211,22.00605267,,,,17.8125,,3200,,,16,41,0.559339426,17443,31185,,,0.64,,,,,40.0762029,,,,,0.644309355,9539,14805,0.615683117,0.672935593,0.14296875,2013,14080,0.113082651,0.172854849,0.823640662,12194,14805,0.798195309,0.849086015,37685,,,,,0.182512936,6878,37685,,,0.176197426,6640,37685,,,0.04065278,1532,37685,,,0.004351864,164,37685,,,0.017035956,642,37685,,,0.000769537,29,37685,,,0.028870904,1088,37685,,,0.889797002,33532,37685,,,0.002383824,85,35657,0,0.006267619,0.508743532,19172,37685,,,0.489044013,18145,37103,, -21,037,21037,KY,Campbell County,2024,1,8054.359871,1336,262538,7390.517479,8718.202263,0,,,,2,,,,2,15658.81928,10133.56221,23115.50624,,,,,2,7928.954808,7255.053074,8602.856543,,,,,2,,0.163,,,0.135,0.196,3.895589148,,,3.03461014,4.843716515,5.482674846,,,4.441770793,6.563215077,0.077151335,572,7414,0.071077448,0.083225223,0,,,,0.097560976,0.045122445,0.149999507,0.12267658,0.083471655,0.161881505,0.090909091,0.05548464,0.126333542,0.073861057,0.067554392,0.080167721,,,,0.108108108,0.058080418,0.158135799,0.168,,,0.128,0.212,0.35,,,0.282,0.42,7.9,0.089044125,0.098,,,0.227,,,0.181,0.275,0.923664532,85971,93076,,,0.17259903,,,0.138479365,0.210459155,0.234042553,11,47,0.159008139,0.314912433,247.2,230,93050,,,17.60196839,372,21134,15.81323408,19.39070271,,,,,,,19.35483871,12.40101037,28.7984658,36.18421053,22.67645209,54.78332958,16.12290321,14.28923357,17.95657284,,,,49.64539007,32.98900116,71.75141125,0.04835809,3630,75065,0.041209154,0.055507026,0.000537346,50,93050,,,1861,0.000503751,47,93300,,,1985.106383,0.001747053,163,93300,,,572.392638,3656,,,,,,,4768,,3690,0.47,,,,,,,0.25,,0.48,0.56,,,,,,0.45,0.43,,0.56,0.932909018,60682,65046,0.924340538,0.941477499,0.791974115,20071,25343,0.750579873,0.833368358,0.033256206,1696,50998,,,0.115,2135,,0.069723404,0.160276596,,,,,,,0.475675676,0.305621742,0.64572961,0.309370988,0.180598106,0.438143871,0.086843891,0.064251803,0.109435979,5.227735822,146753,28072,4.671930582,5.783541062,0.224049974,4304,19210,0.192070323,0.256029625,7.630306287,71,93050,,,95.00443926,443,466294,86.15739689,103.8514816,,,,,,,,,,,,,99.90591611,90.45185007,109.3599822,,,,8.2,,,,,0,,,,,0.146390644,5445,37195,0.12682852,0.165952768,0.131972789,0.112368718,0.151576861,0.013980374,0.009170611,0.018790137,0.004973787,0.001292685,0.008654889,0.741550823,34887,47046,0.722645854,0.760455791,,,,,,,0.562402496,0.377368537,0.747436456,0.612560387,0.4493931,0.775727673,0.694762737,0.667124535,0.72240094,0.329,,47046,0.300528639,0.357471361,77.14313915,,,76.57045575,77.71582255,,,,,,,71.50534627,66.32418224,76.6865103,105.2625937,66.92927546,143.5959119,77.11695787,76.53732064,77.69659509,,,,390.7605147,1336,262538,368.8831984,412.6378309,,,,,,,720.6401145,501.9522441,1002.23595,,,,391.1538825,368.6499851,413.65778,,,,46.46998153,41,88229,33.34766105,63.04177716,,,,,,,,,,,,,36.31882742,24.13359706,52.49081775,,,,4.930046636,37,7505,3.471207804,6.795419872,,,,,,,,,,,,,4.31611847,2.890572278,6.198666087,,,,,,,0.113,,,0.095,0.133,0.17,,,0.144,0.197,0.092,,,0.077,0.108,180,143,79452,,,0.098,9110,,,,0.089044125,8043.890083,90336,,,45.96406964,129,280654,38.03212471,53.89601456,,,,,,,,,,,,,48.80183743,40.28051551,57.32315935,,,,0.349,,,0.33,0.37,0.055316797,3102,56077,0.045784882,0.064848711,0.029467967,586,19886,0.021127542,0.037808393,0.00113612,106,93300,,,880.1886793,0.969246835,765.705,790,,,,,,,,3.193513102,,,,,,,2.062714741,2.809771947,3.284272118,3.199439036,,,,,,,2.372341198,2.938363755,3.272057462,0.111510594,,,,,-649.72795,,,,,0.788969461,53530,67848,0.732847527,0.845091396,74149,,,66506.78723,81791.21277,,,,79821,52749.17021,106892.8298,34541,14114.10638,54967.89362,64795,23845.89362,105744.1064,73818,69875.3617,77760.6383,,,,,,0.418905737,4724,11277,,,55.86666889,,,,,0.235566225,,74149,,,9.27327782,49,5284,,,1.844533494,12,650571,0.953097373,3.22202881,,,,,,,,,,,,,2.002015362,1.034470552,3.49711794,,,,11.75174006,58,466294,8.828268816,15.3334716,12.43850446,,,,,,,,,,,,,12.62838171,9.486829007,16.4772988,,,,7.934908019,37,466294,5.586907523,10.93722547,,,,,,,,,,,,,8.616594163,6.066877478,11.87684003,,,,7.992978476,52,650571,5.969538636,10.48172786,,,,,,,,,,,,,8.008061449,5.904512346,10.61752768,,,,22.4137931,,8700,,,90,105,0.667893045,48833,73115,,,0.722,,,,,138.8884231,,,,,0.715282804,27670,38684,0.700906558,0.729659051,0.139226402,5248,37694,0.12020587,0.158246934,0.876822459,33919,38684,0.858969101,0.894675817,93300,,,,,0.202915327,18932,93300,,,0.176752412,16491,93300,,,0.029046088,2710,93300,,,0.00204716,191,93300,,,0.01204716,1124,93300,,,0.000600214,56,93300,,,0.024030011,2242,93300,,,0.916323687,85493,93300,,,0.003946231,347,87932,0.002072832,0.00581963,0.502979636,46928,93300,,,0.171107482,15926,93076,, -21,039,21039,KY,Carlisle County,2024,1,12821.42239,121,12853,9033.069478,16609.7753,0,,,,2,,,,2,,,,2,,,,2,13044.63343,9163.41204,16925.85482,,,,,2,,0.245,,,0.21,0.284,5.122984295,,,4.105703842,6.274361783,5.955225439,,,4.744552196,7.259400401,0.061124694,25,409,0.037907661,0.084341728,0,,,,,,,,,,,,,0.060526316,0.036550207,0.084502425,,,,,,,0.258,,,0.21,0.308,0.426,,,0.34,0.512,8,0.033529086,0.12,,,0.334,,,0.275,0.394,0.07045172,340,4826,,,0.132216594,,,0.103392256,0.165142005,0.1,1,10,0.005279615,0.302965499,187.9,9,4791,,,31.2837109,29,927,20.95119217,44.92862723,,,,,,,,,,,,,26.86202686,16.83428922,40.66943149,,,,,,,0.082851131,315,3802,0.069744748,0.095957514,0.000417449,2,4791,,,2395.5,0.000211864,1,4720,,,4720,,0,4720,,,,3122,,,,,,,,,3151,0.42,,,,,,,,,0.42,0.43,,,,,,,,,0.43,0.869342185,2881,3314,0.833973072,0.904711297,0.562043796,616,1096,0.445432372,0.678655219,0.037118869,84,2263,,,0.234,254,,0.155361702,0.312638298,,,,,,,,,,0.1,0,0.502359271,0.297242084,0.229769509,0.364714658,4.679904686,106056,22662,2.994688641,6.365120732,0.211191336,234,1108,0.112350252,0.310032419,10.43623461,5,4791,,,113.1601006,27,23860,74.57321933,164.6420052,,,,,,,,,,,,,121.6271003,80.15302551,176.9610453,,,,8.5,,,,,0,,,,,0.077922078,150,1925,0.04551776,0.110326396,0.066102591,0.033250374,0.098954809,0.012467533,0,0.030725705,0.012467533,0,0.030171751,0.83984375,1505,1792,0.79170988,0.88797762,,,,,,,,,,,,,0.703755216,0.454197593,0.953312839,0.451,,1792,0.365163135,0.536836865,71.32454572,,,68.79360589,73.85548556,,,,,,,,,,,,,71.03712033,68.49319844,73.58104223,,,,655.666799,121,12853,531.7489648,779.5846333,,,,,,,,,,,,,679.8227378,549.5615982,810.0838775,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.158,,,0.136,0.183,0.206,,,0.178,0.236,0.119,,,0.101,0.139,,,,,,0.12,580,,,,0.033529086,171.132457,5104,,,,,,,,,,,,,,,,,,,,,,,,,,0.391,,,0.373,0.409,0.092387288,250,2706,0.075706436,0.109068139,0.059285092,68,1147,0.039029772,0.079540411,0.000635593,3,4720,,,1573.333333,,,,,,,,,,,3.131066707,,,,,,,,,3.196752722,2.765940189,,,,,,,,,2.795059786,0.014344812,,,,,-2697.468,,,,,0.662482806,34677,52344,0.478243165,0.846722447,54535,,,46416.19149,62653.80851,,,,,,,38333,2316.659575,74349.34043,,,,53899,46425.97872,61372.02128,,,,,,0.600265604,452,753,,,,,,,,0.215457963,,54535,,,3.194888179,1,313,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,32.74881658,11,33589,16.34809124,58.59667901,,,,,,,,,,,,,35.07764916,17.51063608,62.76360379,,,,26,,500,,,5,8,0.722739726,2638,3650,,,0.63,,,,,0.494586636,,,,,0.765354331,1458,1905,0.724257449,0.806451213,0.079251514,144,1817,0.036204337,0.12229869,0.872440945,1662,1905,0.836339788,0.908542102,4720,,,,,0.233262712,1101,4720,,,0.203177966,959,4720,,,0.017372881,82,4720,,,0.006144068,29,4720,,,0.004661017,22,4720,,,0,0,4720,,,0.027754237,131,4720,,,0.918220339,4334,4720,,,0.000891067,4,4489,0,0.01292916,0.495338983,2338,4720,,,1,4826,4826,, -21,041,21041,KY,Carroll County,2024,1,14861.17235,268,30159,12239.77819,17482.56652,0,,,,2,,,,2,,,,2,,,,2,15769.44559,12889.20341,18649.68777,,,,,2,,0.247,,,0.212,0.284,5.158174803,,,4.158229985,6.22213218,6.170209643,,,4.981046761,7.451835078,0.090322581,98,1085,0.073266349,0.107378812,0,,,,,,,,,,,,,0.088888889,0.070744198,0.10703358,,,,,,,0.257,,,0.211,0.3,0.415,,,0.332,0.496,,,0.143,,,0.337,,,0.281,0.392,0.491951896,5318,10810,,,0.146861672,,,0.115663723,0.181303116,0.066666667,1,15,0.003015681,0.225205905,368.2,40,10863,,,46.07886575,104,2257,37.22279287,54.93493863,,,,,,,,,,,,,49.11180773,39.68733981,60.1004147,,,,,,,0.071635472,643,8976,0.059720579,0.083550366,0.000276167,3,10863,,,3621,0.000274273,3,10938,,,3646,0.000731395,8,10938,,,1367.25,3329,,,,,,,,,3319,0.43,,,,,,,,,0.44,0.39,,,,,,,,,0.39,0.827455389,5889,7117,0.785741485,0.869169292,0.458646617,1220,2660,0.359573244,0.557719989,0.031496063,180,5715,,,0.225,633,,0.142787234,0.307212766,,,,,,,,,,,,,0.338222222,0.230906813,0.445537631,5.460976566,111393,20398,4.525824649,6.396128483,0.269137513,777,2887,0.133186463,0.405088563,8.285004143,9,10863,,,119.2383649,64,53674,91.82807047,152.2647301,,,,,,,,,,,,,128.3778096,98.19885209,164.9066671,,,,8.7,,,,,0,,,,,0.168862275,705,4175,0.11785236,0.219872191,0.112590799,0.065804139,0.159377459,0.052694611,0.01564864,0.089740582,0.026347305,0.005793238,0.046901373,0.788978495,3522,4464,0.719321425,0.858635564,,,,,,,,,,,,,0.856185156,0.800791747,0.911578564,0.249,,4464,0.17769954,0.32030046,70.75232034,,,68.94539225,72.55924842,,,,,,,,,,,,,70.05595393,68.141321,71.97058686,,,,712.1328088,268,30159,623.4358432,800.8297744,,,,,,,,,,,,,745.7070931,650.1138999,841.3002863,,,,90.70668756,11,12127,45.28045161,162.2993198,,,,,,,,,,,,,101.1736139,48.51668046,186.0618782,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.159,,,0.137,0.181,0.209,,,0.182,0.236,0.119,,,0.101,0.137,56.8,5,8804,,,0.143,1550,,,,,,10811,,,62.06554121,20,32224,37.91124499,95.85519458,,,,,,,,,,,,,66.77678979,40.20398961,104.2802291,,,,0.409,,,0.391,0.424,0.081252027,501,6166,0.065762666,0.096741389,0.050801227,149,2933,0.032928887,0.068673568,0.000914244,10,10938,,,1093.8,0.925,121.175,131,,,,,,,,2.651072195,,,,,,,,2.652631903,2.663797963,2.509496297,,,,,,,,2.542237106,2.518201788,0.005386945,,,,,2259.23,,,,,0.474918463,32909,69294,0.406481448,0.543355478,59226,,,50381.57447,68070.42553,,,,,,,125810,72468.21277,179151.7872,55568,9717.106383,101418.8936,49381,36311.55319,62450.44681,,,,,,0.659863946,1358,2058,,,75.78781513,,,,,0.245804208,,59226,,,6.868131868,5,728,,,,,,,,,,,,,,,,,,,,,,,,,,32.93015644,17,53674,18.82242968,53.47651098,31.67269069,,,,,,,,,,,,,36.42022161,20.81730348,59.14415816,,,,,,,,,,,,,,,,,,,,,,,,,,,21.31855247,16,75052,12.18539473,34.6199936,,,,,,,,,,,,,22.54452544,12.61799975,37.18376625,,,,30,,1200,,,31,5,0.526416295,4135,7855,,,0.59,,,,,18.16825106,,,,,0.679376083,2744,4039,0.615402781,0.743349385,0.10449294,407,3895,0.057195215,0.151790664,0.757860857,3061,4039,0.714404729,0.801316985,10938,,,,,0.264033644,2888,10938,,,0.162643993,1779,10938,,,0.018010605,197,10938,,,0.004845493,53,10938,,,0.006582556,72,10938,,,0.001554215,17,10938,,,0.069848236,764,10938,,,0.881696837,9644,10938,,,0.017103312,173,10115,0.00241163,0.031794994,0.494148839,5405,10938,,,0.493894542,5339,10810,, -21,043,21043,KY,Carter County,2024,1,14048.95458,634,73388,12391.06948,15706.83968,0,,,,2,,,,2,,,,2,,,,2,14449.79412,12732.69051,16166.89772,,,,,2,,0.265,,,0.22,0.309,5.348349967,,,4.31774859,6.453778391,6.24807956,,,5.072588812,7.452708335,0.081196581,171,2106,0.069530982,0.092862181,0,,,,,,,,,,,,,0.082324455,0.07046936,0.094179551,,,,,,,0.27,,,0.211,0.324,0.425,,,0.35,0.503,6.3,0.037433602,0.193,,,0.332,,,0.267,0.393,0.277800729,7397,26627,,,0.130733326,,,0.103691983,0.162059934,0.206896552,6,29,0.113372568,0.31356155,193.1,51,26412,,,35.89375449,200,5572,30.91913392,40.86837506,,,,,,,,,,,,,37.80068729,32.53538666,43.06598791,,,,,,,0.073983389,1541,20829,0.062068495,0.085898282,0.000189308,5,26412,,,5282.4,0.000151544,4,26395,,,6598.75,0.001932184,51,26395,,,517.5490196,4915,,,,,,,,,4927,0.3,,,,,,,,,0.3,0.38,,,,,,,,,0.38,0.811654299,14876,18328,0.78108358,0.842225019,0.464717742,2766,5952,0.390447909,0.538987575,0.070448685,683,9695,,,0.26,1499,,0.161106383,0.358893617,,,,,,,,,,,,,0.302686137,0.241254993,0.364117281,5.960393705,101130,16967,4.777063774,7.143723636,0.163781399,965,5892,0.10558767,0.221975127,6.436468272,17,26412,,,129.2018611,173,133899,109.9487113,148.4550109,,,,,,,,,,,,,133.8739882,113.9246166,153.8233599,,,,5.7,,,,,0,,,,,0.105454546,1015,9625,0.078996081,0.13191301,0.08635598,0.061104183,0.111607777,0.009350649,0.001777694,0.016923605,0.016103896,0.004143062,0.02806473,0.78111149,6873,8799,0.753112141,0.809110839,,,,,,,,,,,,,0.756774194,0.714347129,0.799201258,0.433,,8799,0.357136646,0.508863354,71.80333498,,,70.68769977,72.91897019,,,,,,,,,,,,,71.43968035,70.30405894,72.57530177,,,,655.4895175,634,73388,601.0423428,709.9366922,,,,,,,,,,,,,669.0063627,613.1389375,724.8737879,,,,45.30353368,12,26488,23.40899694,79.13615618,,,,,,,,,,,,,47.85261395,24.72614391,83.58888642,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.171,,,0.144,0.199,0.216,,,0.184,0.248,0.125,,,0.105,0.145,22.5,5,22232,,,0.193,5170,,,,0.037433602,1037.65944,27720,,,65.20294416,52,79751,48.69667741,85.50498645,,,,,,,,,,,,,67.62468301,50.50534781,88.68077475,,,,0.39,,,0.37,0.407,0.087287287,1308,14985,0.071797926,0.102776649,0.040732864,249,6113,0.027626481,0.053839247,0.001136579,30,26395,,,879.8333333,0.97,259.96,268,,,0.125581395,189,1505,0.051551643,0.199611148,3.284042931,,,,,,,,,3.300463724,3.165748872,,,,,,,,,3.17406407,0.05324002,,,,,-2493.854,,,,,0.822917343,38041,46227,0.627038501,1.018796185,48285,,,41825.93617,54744.06383,,,,,,,,,,,,,46162,42212.21277,50111.78723,,,,,,0.649330977,2572,3961,,,,,,,,0.264864865,,48285,,,5.824111823,10,1717,,,,,,,,,,,,,,,,,,,,,,,,,,14.87129996,20,133899,8.813674847,23.50306533,14.93663134,,,,,,,,,,,,,15.36924675,9.108789674,24.29003594,,,,14.18979977,19,133899,8.543186405,22.15913007,,,,,,,,,,,,,14.70292356,8.852120444,22.96043642,,,,21.26494527,40,188103,15.19198867,28.95681992,,,,,,,,,,,,,22.01745985,15.72959611,29.98153118,,,,10.74074074,,2700,,,12,17,0.562105774,11585,20610,,,0.562,,,,,13.75896648,,,,,0.794538761,7769,9778,0.770543264,0.818534257,0.098308906,872,8870,0.067326853,0.12929096,0.736244631,7199,9778,0.698705781,0.773783481,26395,,,,,0.222276946,5867,26395,,,0.20178064,5326,26395,,,0.007387763,195,26395,,,0.003068763,81,26395,,,0.003144535,83,26395,,,0.000265202,7,26395,,,0.015040727,397,26395,,,0.962606554,25408,26395,,,0.000358209,9,25125,0,0.004642009,0.505701838,13348,26395,,,0.796522327,21209,26627,, -21,045,21045,KY,Casey County,2024,1,11661.36554,350,44052,9702.645952,13620.08513,0,,,,2,,,,2,,,,2,,,,2,12099.08749,10039.40121,14158.77377,,,,,2,,0.281,,,0.238,0.329,5.592916433,,,4.530572523,6.79075582,6.379300126,,,5.14121931,7.719875329,0.065993789,85,1288,0.052434886,0.079552692,0,,,,,,,,,,,,,0.064754098,0.050944766,0.078563431,,,,,,,0.291,,,0.24,0.348,0.429,,,0.348,0.513,7.1,0.055538248,0.15,,,0.37,,,0.311,0.431,0.099868264,1592,15941,,,0.127770527,,,0.099827233,0.15993389,0.571428571,8,14,0.451249496,0.671070391,277.3,44,15866,,,36.46477132,118,3236,29.88533691,43.04420574,,,,,,,,,,,,,37.14759536,30.26776442,44.0274263,,,,,,,0.086942443,1074,12353,0.072644571,0.101240316,0.000126056,2,15866,,,7933,0.000188442,3,15920,,,5306.666667,0.001067839,17,15920,,,936.4705882,6484,,,,,,,,,6458,0.32,,,,,,,,,0.32,0.27,,,,,,,,,0.27,0.772710822,8540,11052,0.728703956,0.816717687,0.374756742,1348,3597,0.296118741,0.453394742,0.037413948,250,6682,,,0.361,1283,,0.246617021,0.475382979,,,,,,,,,,,,,0.372001215,0.283736963,0.460265466,5.492249738,88936,16193,4.355708037,6.628791438,0.212760131,777,3652,0.128972352,0.296547911,6.933064415,11,15866,,,104.1026477,83,79729,82.91717781,129.0508947,,,,,,,,,,,,,108.9194395,86.62686255,135.1977434,,,,8,,,,,0,,,,,0.117355372,710,6050,0.083416099,0.151294645,0.086824324,0.0560252,0.117623449,0.02214876,0.006162054,0.038135467,0.013223141,0.00011814,0.026328141,0.766272744,4085,5331,0.710788721,0.821756768,,,,,,,,,,,,,0.744827586,0.672288523,0.817366649,0.395,,5331,0.314877324,0.475122676,73.44357021,,,72.04441884,74.84272157,,,,,,,,,,,,,73.00806848,71.56805432,74.44808264,,,,568.4429138,350,44052,504.6456377,632.2401899,,,,,,,,,,,,,585.6373765,519.2777968,651.9969562,,,,87.62596232,14,15977,47.905929,147.0214754,,,,,,,,,,,,,89.31025007,47.55394676,152.7232476,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.176,,,0.153,0.203,0.222,,,0.191,0.253,0.126,,,0.108,0.145,37.7,5,13277,,,0.15,2380,,,,0.055538248,886.1127384,15955,,,27.03208501,13,48091,14.39344678,46.22568863,,,,,,,,,,,,,26.42938948,13.65645121,46.16682462,,,,0.419,,,0.4,0.437,0.104477612,917,8777,0.085413782,0.123541442,0.044910975,169,3763,0.029421614,0.060400337,0.000879397,14,15920,,,1137.142857,0.975,149.175,153,,,0.269503546,228,846,0.126931933,0.41207516,3.044227963,,,,,,,,,3.058834859,3.101241339,,,,,,,,,3.083081085,0.016142932,,,,,-1184.075,,,,,0.787622165,33203,42156,0.646402336,0.928841995,43539,,,38184.44681,48893.55319,,,,,,,,,,,,,42333,37397.85106,47268.14894,,,,,,0.673932788,1484,2202,,,,,,,,0.33436689,,43539,,,6.737247353,7,1039,,,,,,,,,,,,,,,,,,,,,,,,,,27.20324066,22,79729,16.61644612,42.01319889,27.59347289,,,,,,,,,,,,,28.68022748,17.51862804,44.29428523,,,,18.81373152,15,79729,10.52990271,31.03038903,,,,,,,,,,,,,19.92428771,11.15147258,32.86208258,,,,26.94159063,30,111352,18.17737806,38.46079585,,,,,,,,,,,,,28.4908402,19.22265024,40.67244593,,,,,,1700,,,-888,13,0.588510464,7171,12185,,,0.574,,,,,4.346575642,,,,,0.757671256,4568,6029,0.718354384,0.796988127,0.088712522,503,5670,0.055866543,0.121558501,0.780228894,4704,6029,0.737890831,0.822566957,15920,,,,,0.227135678,3616,15920,,,0.208605528,3321,15920,,,0.010741206,171,15920,,,0.005276382,84,15920,,,0.003894472,62,15920,,,0.000502513,8,15920,,,0.030967337,493,15920,,,0.940201005,14968,15920,,,0.007383541,110,14898,0,0.01544675,0.507788945,8084,15920,,,1,15941,15941,, -21,047,21047,KY,Christian County,2024,1,12306.65594,1196,202399,11390.72455,13222.58733,0,,,,2,,,,2,18542.94557,16082.36255,21003.52858,,,,,2,11256.15714,10180.1166,12332.19768,,,,,2,,0.242,,,0.211,0.275,4.923519928,,,4.020607106,5.883184756,5.776583821,,,4.730649836,6.885751133,0.080806142,842,10420,0.075573176,0.086039109,0,,,,0.109756098,0.061914797,0.157597398,0.143230528,0.127532382,0.158928674,0.059859155,0.046063934,0.073654376,0.06611448,0.060191426,0.072037535,,,,0.080118694,0.051133651,0.109103737,0.234,,,0.195,0.276,0.392,,,0.327,0.463,6.5,0.145287703,0.134,,,0.316,,,0.265,0.367,0.463517897,33720,72748,,,0.165899541,,,0.132804829,0.20372858,0.173913044,12,69,0.115496804,0.240044034,710.4,514,72357,,,49.65927215,685,13794,45.94040096,53.37814333,,,,,,,43.72197309,36.86087664,50.58306955,54.81727575,42.39567709,69.74101532,52.79464618,47.78114461,57.80814775,,,,43.9882698,29.67870091,62.79599032,0.072485233,4160,57391,0.060570339,0.084400127,0.000608096,44,72357,,,1644.477273,0.001601928,117,73037,,,624.2478633,0.005175459,378,73037,,,193.2195767,4248,,,,,,,5214,,4116,0.39,,,,,,0.38,0.36,0.32,0.39,0.34,,,,,,0.31,0.2,0.12,0.37,0.863160187,35677,41333,0.844515842,0.881804531,0.588392399,11456,19470,0.538691198,0.638093599,0.047881322,1191,24874,,,0.227,4506,,0.156702128,0.297297872,0.085106383,0,0.280654335,0.029520295,0,0.293879451,0.238374824,0.143392423,0.333357224,0.041333333,0.005073673,0.077592994,0.195034217,0.150904251,0.239164182,4.151497278,91499,22040,3.423248009,4.879746547,0.301040833,6016,19984,0.245876001,0.356205664,12.02371574,87,72357,,,97.64775536,348,356383,87.38819588,107.9073149,,,,,,,123.3466303,99.6766329,150.9450369,34.39262622,16.4926011,63.24926414,101.1492274,88.2166612,114.0817936,,,,8.5,,,,,0,,,,,0.161525196,4215,26095,0.135142908,0.187907485,0.144726563,0.120997743,0.168455382,0.017627898,0.010084892,0.025170904,0.005748228,0.00225557,0.009240886,0.76038137,22889,30102,0.729342607,0.791420133,,,,0.816585366,0.67748871,0.955682022,0.818867134,0.780130838,0.857603431,0.780500613,0.703479753,0.857521472,0.824822237,0.801285602,0.848358872,0.196,,30102,0.167255705,0.224744295,72.56555131,,,71.87089792,73.26020469,,,,,,,67.91279488,66.32526374,69.50032602,80.57066502,74.61004309,86.53128695,73.34220954,72.52616135,74.15825774,,,,624.2087626,1196,202399,587.5965015,660.8210237,,,,,,,841.9489195,750.2252498,933.6725893,,,,593.3151628,550.844065,635.7862605,,,,82.17021966,71,86406,64.17562328,103.6465513,,,,,,,152.4700142,102.8708783,217.6604259,,,,59.53562215,40.16843426,84.99080253,,,,7.135381981,75,10511,5.612430568,8.944263101,,,,,,,19.45724526,13.76910479,26.70658931,,,,4.674262343,3.197191982,6.598663757,,,,,,,0.15,,,0.13,0.17,0.193,,,0.168,0.22,0.131,,,0.113,0.15,208.5,119,57077,,,0.134,9690,,,,0.145287703,10744.75209,73955,,,27.5320118,59,214296,20.95864301,35.51428928,,,,,,,28.46569883,15.15678577,48.67721193,,,,28.69522798,20.50029157,39.07475607,,,,0.414,,,0.399,0.428,0.089504543,3389,37864,0.072823692,0.106185394,0.040270444,816,20263,0.027164061,0.053376827,0.003778907,276,73037,,,264.6268116,0.93,560.79,603,,,0.11537539,481,4169,0.065483294,0.165267485,2.666551753,,,,,,,2.201770717,2.776240306,3.013399927,2.802706952,,,,,,,2.398804166,2.682530058,3.113357183,0.04398057,,,,,-5478.267,,,,,0.894619207,37625,42057,0.819237413,0.970001001,56610,,,51443.70213,61776.29787,,,,143958,565.8297872,287350.1702,37426,31375.61702,43476.38298,45971,32060.3617,59881.6383,53773,50258.10638,57287.89362,,,,,,0.691027054,5645,8169,,,45.08056411,,,,,0.281010422,,56610,,,4.749888675,32,6737,,,10.9552369,55,502043,8.252983703,14.25974667,,,,,,,32.80839895,22.85225197,45.62854084,,,,6.082780561,3.715520393,9.394361233,,,,20.46409064,71,356383,15.75984339,26.13218689,19.92238687,,,,,,,12.09633948,5.531216676,22.96262028,,,,23.8839371,17.72711847,31.48799353,,,,24.41193884,87,356383,19.55296227,30.11203637,,,,,,,47.239135,33.0857094,65.39887478,,,,21.09068997,15.60300854,27.88301063,,,,18.32512355,92,502043,14.77263596,22.47413728,,,,,,,26.24671916,17.44075427,37.93381697,,,,16.72764654,12.60155262,21.77333126,,,,20.42253521,,7100,,,84,61,0.46557409,23863,51255,,,0.619,,,,,45.27484018,,,,,0.498828217,12771,25602,0.474812219,0.522844214,0.157130517,3820,24311,0.129628812,0.184632222,0.803218499,20564,25602,0.77907051,0.827366487,73037,,,,,0.276763832,20214,73037,,,0.127948848,9345,73037,,,0.208113696,15200,73037,,,0.008269781,604,73037,,,0.015156701,1107,73037,,,0.004285499,313,73037,,,0.08787327,6418,73037,,,0.648780755,47385,73037,,,0.010689828,704,65857,0.0053738,0.016005856,0.46983036,34315,73037,,,0.290729642,21150,72748,, -21,049,21049,KY,Clark County,2024,1,13039.59176,763,101492,11679.7178,14399.46573,0,,,,2,,,,2,19137.41219,11689.62854,29556.181,1,,,,2,12850.94689,11436.9701,14264.92367,,,,,2,,0.194,,,0.163,0.229,4.508622463,,,3.601947135,5.520170487,5.613540533,,,4.486776296,6.850155537,0.086911714,253,2911,0.076678065,0.097145363,0,,,,,,,0.16,0.095731125,0.224268875,0.067567568,0.027128322,0.108006813,0.084206442,0.073484577,0.094928306,,,,,,,0.208,,,0.164,0.254,0.384,,,0.307,0.464,7.8,0.049396357,0.119,,,0.283,,,0.234,0.34,0.774450936,28633,36972,,,0.148111281,,,0.117538483,0.183667822,0.114285714,4,35,0.044705488,0.210400972,433.9,160,36871,,,34.23499577,243,7098,29.93049081,38.53950074,,,,,,,,,,47.22222222,27.50868464,75.60735227,34.64127401,29.96705885,39.31548917,,,,,,,0.058095174,1736,29882,0.04856326,0.067627089,0.000461067,17,36871,,,2168.882353,0.000539651,20,37061,,,1853.05,0.001133267,42,37061,,,882.4047619,2872,,,,,,,1175,,2845,0.43,,,,,,,0.57,,0.43,0.47,,,,,,,0.38,,0.47,0.889643988,23040,25898,0.870503504,0.908784472,0.606770833,5592,9216,0.541984736,0.67155693,0.035505696,614,17293,,,0.202,1612,,0.137659575,0.266340426,,,,,,,,,,0.731313131,0.56094805,0.901678213,0.183691891,0.121525108,0.245858674,4.51297561,115645,25625,3.843846319,5.1821049,0.326441255,2684,8222,0.252117768,0.400764742,8.407691682,31,36871,,,133.5957601,243,181892,116.798223,150.3932973,,,,,,,140.4001404,72.54680132,245.2507903,,,,135.1921748,117.3679156,153.016434,,,,8.4,,,,,0,,,,,0.138593482,2020,14575,0.113078897,0.164108067,0.115025907,0.089812131,0.140239682,0.015711835,0.005622059,0.025801612,0.012006861,0.005446234,0.018567488,0.826903401,13739,16615,0.789147506,0.864659295,,,,,,,,,,,,,0.794987099,0.756776065,0.833198133,0.409,,16615,0.358449388,0.459550612,73.23533333,,,72.24538836,74.22527829,,,,,,,68.42233305,63.18053873,73.66412737,,,,73.26991923,72.24734147,74.29249698,,,,583.3430271,763,101492,539.7300101,626.9560441,,,,,,,836.6657115,610.2697111,1119.524549,,,,576.8950296,531.5364036,622.2536556,,,,42.33700254,15,35430,23.69569894,69.82844728,,,,,,,,,,,,,40.06410256,20.70170643,69.98392444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.132,,,0.112,0.154,0.186,,,0.16,0.214,0.1,,,0.085,0.117,25.8,8,31059,,,0.119,4380,,,,0.049396357,1759.15245,35613,,,66.60766262,73,109597,52.20977483,83.74913564,,,,,,,,,,,,,71.25044532,55.54321758,90.02065126,,,,0.406,,,0.386,0.423,0.066414712,1441,21697,0.054499818,0.078329605,0.037097527,318,8572,0.025182633,0.04901242,0.001106284,41,37061,,,903.9268293,0.96,373.44,389,,,0.126335638,201,1591,0.051839955,0.200831321,3.185941656,,,,,,,2.922016444,2.830493673,3.235405226,3.172592671,,,,,,,2.933925856,2.963164377,3.20007406,0.014672882,,,,,1062.124,,,,,0.774737819,41739,53875,0.671393013,0.878082625,61641,,,53519.80851,69762.19149,,,,,,,48974,22163.10638,75784.89362,,,,63799,59284.44681,68313.55319,,,,,,0.596246856,3082,5169,,,61.36064412,,,,,0.28336659,,61641,,,8.193186718,19,2319,,,,,,,,,,,,,,,,,,,,,,,,,,17.77377989,33,181892,11.99189466,25.37317597,18.14263409,,,,,,,,,,,,,17.66185589,11.63927432,25.69707303,,,,15.94352693,29,181892,10.67763021,22.89756418,,,,,,,,,,,,,15.90496174,10.38964906,23.30445405,,,,18.54277463,47,253468,13.62453334,24.65795933,,,,,,,,,,,,,17.98198293,12.90418141,24.3945903,,,,11.35135135,,3700,,,20,22,0.652790781,18128,27770,,,0.739,,,,,67.91296705,,,,,0.715688931,10565,14762,0.681065351,0.750312511,0.118954975,1712,14392,0.092026513,0.145883437,0.870545997,12851,14762,0.85311652,0.887975473,37061,,,,,0.219853755,8148,37061,,,0.186881088,6926,37061,,,0.04457516,1652,37061,,,0.002941097,109,37061,,,0.007258304,269,37061,,,0.000809476,30,37061,,,0.035670921,1322,37061,,,0.892393621,33073,37061,,,0.008394664,292,34784,0.000591398,0.01619793,0.509538329,18884,37061,,,0.289922103,10719,36972,, -21,051,21051,KY,Clay County,2024,1,15945.72257,608,56215,14037.8398,17853.60533,0,,,,2,,,,2,,,,2,,,,2,16574.97119,14546.43945,18603.50293,,,,,2,,0.31,,,0.264,0.36,5.94166897,,,4.826814211,7.136990037,6.2483823,,,5.00897412,7.609761557,0.115872058,192,1657,0.100460671,0.131283445,0,,,,,,,,,,,,,0.113831089,0.098431159,0.129231019,,,,,,,0.315,,,0.258,0.375,0.426,,,0.342,0.513,4.8,0.137726135,0.216,,,0.387,,,0.319,0.456,0.988400098,20109,20345,,,0.131201812,,,0.102019874,0.164658209,0.375,9,24,0.267627328,0.478430601,262.3,53,20206,,,45.16806723,172,3808,38.41776286,51.91837159,,,,,,,,,,,,,48.81571346,41.45580589,56.17562103,,,,,,,0.085081809,1326,15585,0.070783937,0.099379682,0.000395922,8,20206,,,2525.75,0.000200874,4,19913,,,4978.25,0.001054588,21,19913,,,948.2380952,3995,,,,,,,,,4018,0.23,,,,,,,,,0.23,0.17,,,,,,,,,0.17,0.721257913,10596,14691,0.683756711,0.758759115,0.382791328,2260,5904,0.31184653,0.453736126,0.056265985,286,5083,,,0.461,1821,,0.316829787,0.605170213,,,,,,,0.258928571,0,0.810062048,,,,0.413746991,0.350294474,0.477199508,5.999099167,79914,13321,4.840375373,7.157822961,0.315501664,1327,4206,0.222215152,0.408788176,5.938830051,12,20206,,,114.7601513,115,100209,93.78533028,135.7349723,,,,,,,,,,,,,119.5515202,97.3107571,141.7922834,,,,7.8,,,,,0,,,,,0.147375505,1095,7430,0.113649913,0.181101097,0.120670391,0.08538243,0.155958353,0.030282638,0.013800057,0.046765219,0.01076716,0.004078102,0.017456218,0.739869281,4528,6120,0.686324536,0.793414026,,,,,,,,,,,,,0.724770642,0.688500506,0.761040778,0.4,,6120,0.30842569,0.49157431,69.06549446,,,67.83073443,70.30025449,,,,,,,,,,,,,68.59895493,67.32623938,69.87167048,,,,825.4168394,608,56215,757.9042032,892.9294756,,,,,,,,,,,,,846.1028255,775.4895017,916.7161492,,,,98.41443412,18,18290,58.32663084,155.5372349,,,,,,,,,,,,,105.5161498,62.53555766,166.7610075,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.191,,,0.164,0.222,0.226,,,0.193,0.26,0.141,,,0.119,0.164,81.2,14,17250,,,0.216,4430,,,,0.137726135,2992.788919,21730,,,51.89326727,31,59738,35.25895741,73.65835064,,,,,,,,,,,,,54.23091524,36.58937078,77.41800357,,,,0.428,,,0.409,0.445,0.101036269,1170,11580,0.08197244,0.120100099,0.038892866,163,4191,0.025786483,0.051999249,0.002360267,47,19913,,,423.6808511,0.875,174.125,199,,,,,,,,3.366456696,,,,,,,,,3.364680993,3.03291289,,,,,,,,,3.029597321,0.090921284,,,,,-8369.977,,,,,0.853176799,35464,41567,0.560660271,1.145693327,34473,,,29674.87234,39271.12766,,,,,,,,,,,,,39076,33816.76596,44335.23404,,,,,,0.750516173,2181,2906,,,83.9646396,,,,,0.34084646,,34473,,,3.300330033,4,1212,,,13.38141251,19,141988,8.056484467,20.89673323,,,,,,,,,,,,,13.68145023,8.108494494,21.6225898,,,,14.62001725,14,100209,7.992899477,24.52990472,13.97080103,,,,,,,,,,,,,14.99189758,7.746532248,26.18782802,,,,20.95620154,21,100209,12.97221905,32.03378013,,,,,,,,,,,,,21.54081446,13.15768909,33.26804087,,,,21.12854607,30,141988,14.25534131,30.16231329,,,,,,,,,,,,,21.28225592,14.1419045,30.75878535,,,,,,1800,,,-888,9,0.481598985,7590,15760,,,0.482,,,,,3.390301352,,,,,0.747398031,5314,7110,0.727900101,0.766895961,0.134451172,866,6441,0.09578797,0.173114375,0.778762307,5537,7110,0.748543692,0.808980921,19913,,,,,0.204389093,4070,19913,,,0.160799478,3202,19913,,,0.037814493,753,19913,,,0.00225983,45,19913,,,0.00225983,45,19913,,,0.000351529,7,19913,,,0.02269874,452,19913,,,0.925023854,18420,19913,,,0.002357996,45,19084,0,0.00851809,0.473359112,9426,19913,,,1,20345,20345,, -21,053,21053,KY,Clinton County,2024,1,11138.45077,241,27152,8894.078285,13382.82325,0,,,,2,,,,2,,,,2,,,,2,11198.70754,8933.515455,13463.89962,,,,,2,,0.268,,,0.227,0.311,5.413713357,,,4.361771088,6.495249831,6.106532795,,,4.891633606,7.400206488,0.089108911,72,808,0.069464266,0.108753556,0,,,,,,,,,,,,,0.091612903,0.071302478,0.111923329,,,,,,,0.277,,,0.226,0.33,0.41,,,0.331,0.496,7.4,0.010914597,0.158,,,0.362,,,0.302,0.423,0.520155625,4813,9253,,,0.131011395,,,0.102857128,0.164031177,0.142857143,2,14,0.031645086,0.307569357,183.5,17,9265,,,44.73007712,87,1945,35.82695812,55.17438488,,,,,,,,,,,,,47.01327434,37.55253374,58.13264177,,,,,,,0.086034576,637,7404,0.071736704,0.100332448,0.000539665,5,9265,,,1853,0.000328839,3,9123,,,3041,0.001973035,18,9123,,,506.8333333,2788,,,,,,,,,2793,0.31,,,,,,,,,0.3,0.32,,,,,,,,,0.32,0.808736539,5332,6593,0.774654126,0.842818951,0.483249197,1053,2179,0.363150619,0.603347774,0.048325096,176,3642,,,0.338,640,,0.212893617,0.463106383,,,,,,,,,,0.085365854,0,0.469462535,0.332966428,0.225952751,0.439980105,4.899610583,85557,17462,3.674625607,6.124595559,0.285423038,560,1962,0.145596644,0.425249432,6.475984889,6,9265,,,117.8232651,59,50075,89.69252847,151.9834276,,,,,,,,,,,,,118.1559236,89.25371491,153.4352949,,,,7.3,,,,,0,,,,,0.113043478,455,4025,0.078014507,0.148072449,0.085427136,0.046725595,0.124128677,0.022360248,0.004665061,0.040055436,0.004968944,0,0.013192437,0.834231806,3095,3710,0.782257455,0.886206157,,,,,,,,,,,,,0.80097561,0.779498135,0.822453084,0.204,,3710,0.136831273,0.271168727,72.84528076,,,71.24821296,74.44234856,,,,,,,,,,,,,72.71887242,71.13943262,74.29831222,,,,607.7104887,241,27152,526.2450863,689.1758912,,,,,,,,,,,,,615.4664341,531.5726449,699.3602234,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.171,,,0.147,0.197,0.216,,,0.187,0.246,0.127,,,0.109,0.148,101.7,8,7869,,,0.158,1480,,,,0.010914597,112.1147422,10272,,,40.5501301,12,29593,20.95284395,70.83291673,,,,,,,,,,,,,42.91998999,22.17738513,74.97258503,,,,0.391,,,0.373,0.41,0.100018285,547,5469,0.080954455,0.119082115,0.047105005,96,2038,0.031615643,0.062594367,0.000876905,8,9123,,,1140.375,0.975,114.075,117,,,,,,,,2.719927105,,,,,,,,,2.7699826,2.550877027,,,,,,,,,2.568743284,0.027608389,,,,,-4838.947,,,,,0.875915378,30142,34412,0.764586958,0.987243799,41739,,,36501.21277,46976.78723,,,,,,,,,,,,,41320,37590.6383,45049.3617,,,,,,0.772756617,1197,1549,,,,,,,,0.348786507,,41739,,,7.766990291,4,515,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,29.81853293,21,70426,18.45814186,45.58079507,,,,,,,,,,,,,31.46774556,19.47903047,48.10179177,,,,15,,1000,,,10,5,0.627880331,4932,7855,,,0.475,,,,,2.899736959,,,,,0.728213508,2674,3672,0.684550116,0.7718769,0.108217593,374,3456,0.06399389,0.152441295,0.730119826,2681,3672,0.679883231,0.780356421,9123,,,,,0.217143484,1981,9123,,,0.204537981,1866,9123,,,0.008001754,73,9123,,,0.004055683,37,9123,,,0.004932588,45,9123,,,0.004494136,41,9123,,,0.037049216,338,9123,,,0.933464869,8516,9123,,,0.008887876,78,8776,0,0.021934856,0.506521977,4621,9123,,,1,9253,9253,, -21,055,21055,KY,Crittenden County,2024,1,13523.0728,224,24199,10648.53918,16397.60642,0,,,,2,,,,2,,,,2,,,,2,13921.16469,10916.24741,16926.08197,,,,,2,,0.224,,,0.188,0.26,5.037324955,,,4.045570464,6.047740301,5.80129701,,,4.641989135,6.988876131,0.070901034,48,677,0.051567154,0.090234914,0,,,,,,,,,,,,,0.071975498,0.052152399,0.091798596,,,,,,,0.24,,,0.191,0.286,0.421,,,0.339,0.504,7.5,0.047580371,0.137,,,0.313,,,0.254,0.37,0.570856507,5132,8990,,,0.139771678,,,0.109162577,0.173061144,0.214285714,3,14,0.080830645,0.373240293,167.7,15,8947,,,32.38636364,57,1760,24.52911555,41.96029057,,,,,,,,,,,,,32.31597846,24.27675761,42.16534195,,,,,,,0.070063694,484,6908,0.058148801,0.081978588,0.000447077,4,8947,,,2236.75,0.000111346,1,8981,,,8981,0.000111346,1,8981,,,8981,5277,,,,,,,,,5303,0.29,,,,,,,,,0.29,0.31,,,,,,,,,0.31,0.863944506,5480,6343,0.828184402,0.899704609,0.507751938,1048,2064,0.404848166,0.61065571,0.041231733,158,3832,,,0.284,562,,0.181531915,0.386468085,,,,,,,,,,0.253521127,0,0.795459593,0.333153056,0.242957543,0.423348568,4.444444444,100000,22500,3.335067308,5.553821581,0.258483034,518,2004,0.142937438,0.374028629,14.53001006,13,8947,,,121.078948,54,44599,90.95823219,157.9817628,,,,,,,,,,,,,126.3276096,94.90118835,164.8301277,,,,8.6,,,,,1,,,,,0.101671309,365,3590,0.065722768,0.137619851,0.088458298,0.054444513,0.122472083,0.012534819,0,0.029506029,0,0,0.007979205,0.736514523,2485,3374,0.666417559,0.806611487,,,,,,,,,,,,,0.673011225,0.623408389,0.722614061,0.339,,3374,0.265426135,0.412573865,71.88248835,,,69.93487125,73.83010545,,,,,,,,,,,,,71.51256491,69.51303425,73.51209556,,,,644.1055688,224,24199,553.5184098,734.6927279,,,,,,,,,,,,,656.3614212,562.9327443,749.7900981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.149,,,0.127,0.171,0.198,,,0.171,0.228,0.109,,,0.092,0.126,,,,,,0.137,1230,,,,0.047580371,443.2111574,9315,,,,,,,,,,,,,,,,,,,,,,,,,,0.383,,,0.365,0.401,0.078567067,386,4913,0.063077705,0.094056429,0.048279159,101,2092,0.031598308,0.06496001,0.000779423,7,8981,,,1283,0.925,91.575,99,,,,,,,,2.757165855,,,,,,,,,2.746881188,2.966392238,,,,,,,,,2.922891201,0.01390507,,,,,-1332.403,,,,,0.611619935,34792,56885,0.513391788,0.709848082,50452,,,43118.38298,57785.61702,,,,,,,,,,,,,44738,33483.19149,55992.80851,,,,,,0.641748942,910,1418,,,,,,,,0.253488464,,50452,,,6.276150628,3,478,,,,,,,,,,,,,,,,,,,,,,,,,,27.34318344,11,44599,13.11211928,50.28508787,24.66423014,,,,,,,,,,,,,28.43224888,13.63436849,52.28791799,,,,,,,,,,,,,,,,,,,,,,,,,,,30.1730983,19,62970,18.16617622,47.1190306,,,,,,,,,,,,,31.422098,18.91815563,49.06949836,,,,26,,1000,,,10,16,0.614337437,4242,6905,,,0.613,,,,,0.151594243,,,,,0.804005723,2810,3495,0.765743171,0.842268274,0.089901109,300,3337,0.047523362,0.132278856,0.740200286,2587,3495,0.687034632,0.79336594,8981,,,,,0.223360428,2006,8981,,,0.216122926,1941,8981,,,0.013027503,117,8981,,,0.004787886,43,8981,,,0.003006347,27,8981,,,0.000668077,6,8981,,,0.018149427,163,8981,,,0.947444605,8509,8981,,,0.001292901,11,8508,0,0.010349282,0.491259325,4412,8981,,,1,8990,8990,, -21,057,21057,KY,Cumberland County,2024,1,10156.61455,154,17206,7350.465247,12962.76386,0,,,,2,,,,2,,,,2,,,,2,10142.90728,7292.066839,12993.74772,,,,,2,,0.262,,,0.223,0.304,5.426758895,,,4.367541834,6.513829834,6.263252115,,,5.053677217,7.52828944,0.084291188,44,522,0.060457535,0.10812484,0,,,,,,,,,,,,,0.086172345,0.061550426,0.110794264,,,,,,,0.272,,,0.221,0.324,0.433,,,0.35,0.525,7.6,0.008035657,0.148,,,0.357,,,0.299,0.421,0.071331522,420,5888,,,0.125792438,,,0.098099475,0.157858558,0.333333333,4,12,0.175768434,0.488588466,187.1,11,5879,,,38.39590444,45,1172,28.00623617,51.37674104,,,,,,,,,,,,,40.93023256,29.73996964,54.94692677,,,,,,,0.070152505,322,4590,0.058237612,0.082067399,0.000510291,3,5879,,,1959.666667,0.000840901,5,5946,,,1189.2,0.002018164,12,5946,,,495.5,4878,,,,,,,,,4761,0.28,,,,,,,,,0.28,0.12,,,,,,,,,0.12,0.803596127,3486,4338,0.753535949,0.853656306,0.424710425,550,1295,0.277432235,0.571988615,0.03182086,108,3394,,,0.329,413,,0.207468085,0.450531915,,,,,,,0.2,0,0.913524299,,,,0.258896797,0.126385117,0.391408478,6.601302279,79077,11979,3.795772808,9.40683175,0.243369735,312,1282,0.107402254,0.379337216,5.102908658,3,5879,,,101.9116148,33,32381,70.1512664,143.1217976,,,,,,,,,,,,,109.0873029,75.09067989,153.1991315,,,,7.4,,,,,0,,,,,0.113636364,300,2640,0.057000344,0.170272384,0.09860835,0.040682773,0.156533927,0.014015152,0,0.031871882,0.005681818,0,0.018221083,0.825809394,1811,2193,0.750604976,0.901013811,,,,,,,,,,,,,0.864035088,0.76660938,0.961460795,0.307,,2193,0.194437357,0.419562643,73.56642779,,,71.52800593,75.60484965,,,,,,,,,,,,,73.4704289,71.41777188,75.52308591,,,,554.7249124,154,17206,459.4740276,649.9757972,,,,,,,,,,,,,567.9779298,468.6131829,667.3426766,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.167,,,0.144,0.194,0.214,,,0.186,0.245,0.125,,,0.107,0.146,121,6,4959,,,0.148,890,,,,0.008035657,55.09246639,6856,,,,,,,,,,,,,,,,,,,,,,,,,,0.402,,,0.384,0.421,0.081105437,270,3329,0.065616075,0.096594799,0.041698256,55,1319,0.027400384,0.055996129,0.001009082,6,5946,,,991,0.975,61.425,63,,,,,,,,2.989035603,,,,,,,,,3.090985143,3.123990999,,,,,,,,,3.157427631,0.021192812,,,,,-2804.798,,,,,0.763394381,33555,43955,0.634127328,0.892661433,48864,,,44547.23404,53180.76596,,,,,,,,,,,,,39900,31946.80851,47853.19149,,,,,,0.765893037,759,991,,,22.0295599,,,,,0.297928946,,48864,,,11.08033241,4,361,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,30.51571559,14,45878,16.68322568,51.20018554,,,,,,,,,,,,,32.5899716,17.81724074,54.68043466,,,,,,600,,,7,-888,0.640658277,3309,5165,,,0.424,,,,,0.155378343,,,,,0.757840413,1909,2519,0.711145771,0.804535055,0.120770878,282,2335,0.050882867,0.190658889,0.749900754,1889,2519,0.671644019,0.82815749,5946,,,,,0.214429869,1275,5946,,,0.229566095,1365,5946,,,0.030608813,182,5946,,,0.002018164,12,5946,,,0.003027245,18,5946,,,0,0,5946,,,0.022031618,131,5946,,,0.92465523,5498,5946,,,0.005326705,30,5632,0,0.01970324,0.504036327,2997,5946,,,1,5888,5888,, -21,059,21059,KY,Daviess County,2024,1,9463.43042,1730,284342,8791.670252,10135.19059,0,,,,2,,,,2,10385.0252,7574.908643,13895.98079,,,,,2,9572.782767,8846.264916,10299.30062,,,,,2,,0.195,,,0.164,0.228,4.521651536,,,3.615972325,5.518101631,5.442222024,,,4.45913064,6.540938116,0.085499392,773,9041,0.079735427,0.091263357,0,,,,0.105084746,0.070089757,0.140079735,0.151376147,0.117732802,0.185019492,0.079710145,0.057115493,0.102304797,0.081250818,0.075125389,0.087376247,,,,,,,0.21,,,0.167,0.254,0.419,,,0.35,0.486,7.8,0.05622142,0.115,,,0.291,,,0.239,0.343,0.870799133,89964,103312,,,0.151249252,,,0.120944625,0.185799227,0.333333333,17,51,0.260794924,0.405911727,487.1,502,103063,,,28.19616281,629,22308,25.99262373,30.3997019,,,,25.44031311,13.54589529,43.50371021,34.56790124,24.91350266,46.72576031,29.59028832,21.04158763,40.45089823,28.55727963,26.10036975,31.01418951,,,,12.48799232,6.649329963,21.35484718,0.062730008,5233,83421,0.053198093,0.072261923,0.00055306,57,103063,,,1808.122807,0.000658774,68,103222,,,1517.970588,0.003187305,329,103222,,,313.7446809,2840,,,,,,4561,684,,2837,0.5,,,,,,0.3,0.49,,0.5,0.51,,,,,,0.45,0.46,0.34,0.51,0.912385354,63169,69235,0.900984126,0.923786583,0.63995318,16402,25630,0.597047111,0.682859249,0.038634439,1779,46047,,,0.146,3541,,0.095957447,0.196042553,,,,0.245901639,0.103651139,0.38815214,0.52351314,0.346340989,0.70068529,0.40839927,0.295284257,0.521514283,0.112370111,0.083406019,0.141334203,4.644130701,121379,26136,4.181523211,5.106738191,0.227691814,5680,24946,0.188889412,0.266494217,12.61364408,130,103063,,,75.1924099,382,508030,67.65194029,82.73287951,,,,,,,48.72898563,25.17897795,85.11973137,,,,79.28646672,71.0152808,87.55765265,,,,8.7,,,,,0,,,,,0.139572458,5615,40230,0.123743357,0.15540156,0.113651274,0.098553744,0.128748804,0.028461347,0.019130209,0.037792486,0.004598558,0.001348091,0.007849026,0.848287987,39565,46641,0.828324774,0.8682512,,,,,,,0.893322476,0.80593619,0.980708761,0.607968128,0.481292622,0.734643633,0.860619729,0.84332539,0.877914068,0.2,,46641,0.178224737,0.221775263,75.45232886,,,74.90866412,75.99599361,,,,85.76710076,76.18367744,95.35052407,74.48487482,71.77557045,77.1941792,82.97876498,76.20842474,89.74910521,75.32689781,74.7515579,75.90223773,,,,475.4056896,1730,284342,452.0019266,498.8094525,,,,,,,560.9212007,446.7706053,695.3462219,,,,478.1529345,453.4576805,502.8481886,,,,54.22943647,59,108797,41.28195964,69.95202199,,,,,,,,,,,,,52.94964029,38.76579155,70.62739996,,,,6.25,57,9120,4.733688965,8.097599935,,,,,,,,,,,,,5.902733222,4.321542591,7.873418929,,,,,,,0.132,,,0.112,0.153,0.186,,,0.158,0.214,0.103,,,0.087,0.121,114.9,98,85255,,,0.115,11830,,,,0.05622142,5434.137523,96656,,,16.96286438,52,306552,12.66867846,22.24453983,,,,,,,,,,,,,17.1827724,12.57994898,22.91941045,,,,0.361,,,0.343,0.379,0.073136933,4275,58452,0.061222039,0.085051827,0.03964454,1035,26107,0.027729646,0.051559433,0.002237895,231,103222,,,446.8484849,0.89,991.46,1114,,,0.075071399,368,4902,0.03981951,0.110323289,3.18016123,,,,,,2.95302355,2.672480712,2.876800713,3.293398903,3.145516093,,,,,,3.169158861,2.637637189,2.803257453,3.241352837,0.065771394,,,,,730.1909,,,,,0.759010192,43341,57102,0.695943901,0.822076484,65949,,,61359.38298,70538.61702,113611,49701.89362,177520.1064,59966,10329.74468,109602.2553,52143,27900.95745,76385.04255,61540,40480.42553,82599.57447,65292,61280.25532,69303.74468,,,,,,0.57023927,9247,16216,,,35.06548175,,,,,0.241216698,,65949,,,6.64500886,45,6772,,,4.24350355,30,706963,2.863074025,6.057865178,,,,,,,,,,,,,3.695990333,2.342940825,5.545800213,,,,20.02331111,100,508030,15.96857523,24.07804699,19.68387694,,,,,,,,,,,,,20.90771169,16.72347061,25.82085385,,,,16.33761786,83,508030,13.01282143,20.25293542,,,,,,,,,,,,,16.84556658,13.25010673,21.11606358,,,,13.8621116,98,706963,11.25393225,16.89347396,,,,,,,,,,,,,14.46257087,11.62961487,17.77695498,,,,35.22522523,,11100,,,146,245,0.659965152,49240,74610,,,0.764,,,,,74.08168596,,,,,0.678895929,27646,40722,0.657917196,0.699874661,0.108770947,4271,39266,0.093487433,0.124054461,0.883601002,35982,40722,0.868292128,0.898909876,103222,,,,,0.240694813,24845,103222,,,0.180688225,18651,103222,,,0.049466199,5106,103222,,,0.002053826,212,103222,,,0.022572707,2330,103222,,,0.001453179,150,103222,,,0.035748193,3690,103222,,,0.868225766,89620,103222,,,0.012931169,1245,96279,0.009242747,0.016619591,0.508845014,52524,103222,,,0.260173068,26879,103312,, -21,061,21061,KY,Edmonson County,2024,1,9704.135057,235,33483,7561.333216,11846.9369,0,,,,2,,,,2,,,,2,,,,2,10191.67091,7898.02604,12485.31577,,,,,2,,0.239,,,0.201,0.275,5.09601549,,,4.055714436,6.17647145,6.092563913,,,4.832129963,7.375545796,0.065838509,53,805,0.048706468,0.08297055,0,,,,,,,,,,,,,0.064638783,0.04748129,0.081796277,,,,,,,0.253,,,0.205,0.3,0.391,,,0.31,0.476,7.6,0.020177456,0.141,,,0.33,,,0.272,0.388,0.407471549,4941,12126,,,0.139555738,,,0.10909129,0.173372375,0.235294118,4,17,0.110052656,0.376271045,130.2,16,12291,,,25.22123894,57,2260,19.10232007,32.67704044,,,,,,,,,,,,,27.67991948,20.85230346,36.02921992,,,,,,,0.087878164,854,9718,0.073580292,0.102176037,8.13603E-05,1,12291,,,12291,0.000163013,2,12269,,,6134.5,0.000407531,5,12269,,,2453.8,3120,,,,,,,,,3151,0.39,,,,,,,,,0.39,0.45,,,,,,,,,0.45,0.815880067,7347,9005,0.770099834,0.861660299,0.470507545,1372,2916,0.365327428,0.575687661,0.04812157,228,4738,,,0.266,564,,0.176638298,0.355361702,,,,,,,,,,,,,0.122752953,0.050690339,0.194815568,4.467499098,99107,22184,2.410147756,6.524850441,0.197870453,446,2254,0.097532536,0.298208369,2.440810349,3,12291,,,76.82751406,47,61176,56.44996758,102.1643068,,,,,,,,,,,,,81.23336444,59.68722073,108.0231538,,,,8.3,,,,,0,,,,,0.107355865,540,5030,0.069271595,0.145440135,0.062613982,0.032715651,0.092512312,0.033797217,0.009947036,0.057647398,0.019681909,0.001414345,0.037949472,0.787737937,3559,4518,0.745264767,0.830211108,,,,,,,,,,,,,0.73292868,0.627838285,0.838019075,0.579,,4518,0.457801459,0.700198542,75.25023393,,,73.59783898,76.90262888,,,,,,,,,,,,,74.73117863,73.0099188,76.45243846,,,,466.1299136,235,33483,401.9806282,530.2791989,,,,,,,,,,,,,481.4804402,414.6284414,548.332439,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.155,,,0.133,0.178,0.205,,,0.177,0.234,0.115,,,0.097,0.133,55.6,6,10783,,,0.141,1710,,,,0.020177456,245.3780415,12161,,,,,,,,,,,,,,,,,,,,,,,,,,0.4,,,0.382,0.417,0.098393308,741,7531,0.080520967,0.116265648,0.053586498,127,2370,0.036905647,0.070267349,0.00065205,8,12269,,,1533.625,0.875,133.875,153,,,,,,,,3.359122458,,,,,,,,,3.380324552,3.254837058,,,,,,,,,3.249660647,0.015123171,,,,,-2303.58,,,,,0.760647249,41132,54075,0.531536291,0.989758208,51402,,,44040.97872,58763.02128,,,,,,,,,,62396,20437.70213,104354.2979,52713,43109.59575,62316.40426,,,,,,0.530254777,999,1884,,,,,,,,0.248803549,,51402,,,5.338078292,3,562,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,28.1369802,24,85297,18.02789413,41.8655962,,,,,,,,,,,,,29.66918855,19.00960893,44.14540077,,,,,,1100,,,-888,9,0.620546559,6131,9880,,,0.504,,,,,2.550957596,,,,,0.831932773,3960,4760,0.783624291,0.880241255,0.046526868,213,4578,0.021435898,0.071617837,0.829831933,3950,4760,0.786194601,0.873469265,12269,,,,,0.176624012,2167,12269,,,0.214524411,2632,12269,,,0.00823213,101,12269,,,0.004808868,59,12269,,,0.004482843,55,12269,,,8.15062E-05,1,12269,,,0.017768359,218,12269,,,0.950281197,11659,12269,,,0.000257511,3,11650,0,0.007852672,0.504523596,6190,12269,,,1,12126,12126,, -21,063,21063,KY,Elliott County,2024,1,10434.07829,139,20302,7718.923902,13149.23267,0,,,,2,,,,2,,,,2,,,,2,11117.90595,8212.082896,14023.729,,,,,2,,0.276,,,0.232,0.32,5.516218083,,,4.415237582,6.640365627,6.170125596,,,4.894968846,7.46562742,0.119815668,52,434,0.0892626,0.150368737,0,,,,,,,,,,,,,0.120649652,0.089898496,0.151400808,,,,,,,0.284,,,0.229,0.336,0.444,,,0.357,0.531,,,0.197,,,0.364,,,0.302,0.427,0.120886592,889,7354,,,0.139154498,,,0.107929441,0.174705633,0.555555556,5,9,0.394493124,0.682965544,162.6,12,7381,,,37.16216216,44,1184,27.00208392,49.88846814,,,,,,,,,,,,,37.7524144,27.32160949,50.85225444,,,,,,,0.057637475,283,4910,0.04691407,0.068360879,0.000135483,1,7381,,,7381,0.000411353,3,7293,,,2431,0.00246812,18,7293,,,405.1666667,3640,,,,,,,,,3653,0.3,,,,,,,,,0.3,0.32,,,,,,,,,0.32,0.754001079,4193,5561,0.718089999,0.789912159,0.357798165,741,2071,,,0.080295827,152,1893,,,0.322,386,,0.198085106,0.445914894,,,,,,,,,,,,,0.384185304,0.266581254,0.501789353,5.252212684,78925,15027,3.87149724,6.632928128,0.384675528,492,1279,0.221362415,0.547988641,0,0,7381,,,109.9166242,41,37301,78.87806726,149.1143121,,,,,,,,,,,,,117.203133,84.10699179,158.9992841,,,,7.5,,,,,0,,,,,0.107883817,260,2410,0.06502989,0.150737745,0.083333333,0.040519047,0.12614762,0.028630705,0.001715524,0.055545887,0,0,0.011886036,0.740924092,1347,1818,0.579163262,0.902684923,,,,,,,,,,,,,0.685891748,0.558148878,0.813634618,0.596,,1818,0.418040783,0.773959217,75.76526073,,,73.58981262,77.94070884,,,,,,,,,,,,,75.08990455,72.84907778,77.33073132,,,,498.4861388,139,20302,411.0196868,585.9525907,,,,,,,,,,,,,522.4435488,430.0770728,614.8100248,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.171,,,0.145,0.196,0.208,,,0.178,0.238,0.129,,,0.11,0.151,138.9,9,6481,,,0.197,1460,,,,,,7852,,,,,,,,,,,,,,,,,,,,,,,,,,0.408,,,0.39,0.425,0.069258144,253,3653,0.054960272,0.083556016,0.023502654,31,1319,0.013970739,0.033034568,0.000822707,6,7293,,,1215.5,0.925,79.55,86,,,,,,,,3.004921353,,,,,,,,,3.006029596,2.765078695,,,,,,,,,2.759828277,,,,,,-7454.934,,,,,0.638658028,37654,58958,0.181844669,1.095471387,40312,,,34355.74468,46268.25532,,,,,,,,,,,,,39914,30148.55319,49679.44681,,,,,,0.679867987,618,909,,,,,,,,0.317250447,,40312,,,6.097560976,2,328,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,22.84104536,12,52537,11.80230144,39.89870957,,,,,,,,,,,,,24.30921319,12.56092519,42.46330332,,,,,,600,,,-888,-888,0.489779231,2995,6115,,,0.448,,,,,0.193148069,,,,,0.766681396,1735,2263,0.703755939,0.829606854,0.078365385,163,2080,0.028923249,0.12780752,0.747238179,1691,2263,0.675737942,0.818738417,7293,,,,,0.167969286,1225,7293,,,0.21719457,1584,7293,,,0.041820924,305,7293,,,0.004524887,33,7293,,,0.002056767,15,7293,,,0.001919649,14,7293,,,0.01549431,113,7293,,,0.927327574,6763,7293,,,0,0,7073,,,0.416015357,3034,7293,,,1,7354,7354,, -21,065,21065,KY,Estill County,2024,1,15158.33655,376,39094,12847.34843,17469.32467,0,,,,2,,,,2,,,,2,,,,2,15382.35189,13009.27974,17755.42403,,,,,2,,0.274,,,0.233,0.316,5.565732846,,,4.488472169,6.721353031,6.259925624,,,5.005909946,7.553421926,0.079915878,76,951,0.06268148,0.097150276,0,,,,,,,,,,,,,0.079702444,0.062397858,0.09700703,,,,,,,0.29,,,0.236,0.341,0.421,,,0.337,0.506,6.9,0.000366254,0.186,,,0.361,,,0.3,0.422,0.610040246,8640,14163,,,0.134046576,,,0.104789004,0.168040759,0.363636364,4,11,0.198476333,0.520352029,290.9,41,14092,,,35.23428987,97,2753,28.57263552,42.9828456,,,,,,,,,,,,,36.17669459,29.26910627,44.22413314,,,,,,,0.0795053,900,11320,0.066398917,0.092611683,0.000212887,3,14092,,,4697.333333,0.000498434,7,14044,,,2006.285714,0.001068072,15,14044,,,936.2666667,3906,,,,,,,,,3858,0.37,,,,,,,,,0.37,0.29,,,,,,,,,0.29,0.764548694,7725,10104,0.724187979,0.804909409,0.46736777,1511,3233,0.361205612,0.573529927,0.047986125,249,5189,,,0.247,728,,0.145723404,0.348276596,,,,,,,,,,,,,0.334851138,0.269726994,0.399975282,5.954653272,85354,14334,4.52301492,7.386291624,0.322916667,992,3072,0.213645894,0.43218744,10.64433721,15,14092,,,166.7090503,118,70782,136.6292987,196.7888019,,,,,,,,,,,,,170.5241066,139.6247865,201.4234267,,,,7.9,,,,,0,,,,,0.140070922,790,5640,0.10066664,0.179475204,0.116499544,0.076354779,0.15664431,0.021276596,0.000235055,0.042318136,0.02570922,0.007221486,0.044196954,0.756342957,3458,4572,0.700128341,0.812557573,,,,,,,,,,,,,0.797553775,0.763822304,0.831285246,0.481,,4572,0.373066583,0.588933417,70.60916428,,,69.15054611,72.06778244,,,,,,,,,,,,,70.38770772,68.90683524,71.86858019,,,,709.0086347,376,39094,632.4362186,785.5810507,,,,,,,,,,,,,717.3837625,639.2845578,795.4829673,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.173,,,0.149,0.2,0.218,,,0.189,0.248,0.125,,,0.107,0.145,,,,,,0.186,2640,,,,0.000366254,5.373680061,14672,,,108.7290519,46,42307,79.60333139,145.0293183,,,,,,,,,,,,,109.8847431,80.15068565,147.0344318,,,,0.4,,,0.382,0.418,0.090974643,757,8321,0.074293791,0.107655494,0.048703352,154,3162,0.033213991,0.064192714,0.001851324,26,14044,,,540.1538462,0.875,143.5,164,,,,,,,,2.785414316,,,,,,,,,2.808643981,2.751554262,,,,,,,,,2.783117297,0.016776655,,,,,-245.9609,,,,,0.902852399,39154,43367,0.68710256,1.118602239,39402,,,33798.42553,45005.57447,,,,,,,,,,,,,38819,31150.57447,46487.42553,,,,,,0.673507463,1444,2144,,,,,,,,0.369473631,,39402,,,2.781641168,2,719,,,,,,,,,,,,,,,,,,,,,,,,,,29.28531684,22,70782,17.88823234,45.22879668,31.08134837,,,,,,,,,,,,,30.13569817,18.40766734,46.54214167,,,,24.01740556,17,70782,13.99102381,38.4541929,,,,,,,,,,,,,24.77700694,14.4335196,39.67038829,,,,14.07544438,14,99464,7.695176422,23.61620398,,,,,,,,,,,,,14.49020359,7.921929139,24.31209945,,,,16,,1500,,,18,6,0.588478848,6538,11110,,,0.648,,,,,0.471143719,,,,,0.738501742,4239,5740,0.701694167,0.775309318,0.12426596,656,5279,0.082659981,0.165871938,0.770731707,4424,5740,0.731349227,0.810114188,14044,,,,,0.212831102,2989,14044,,,0.191683281,2692,14044,,,0.005197949,73,14044,,,0.003489035,49,14044,,,0.001495301,21,14044,,,0.00014241,2,14044,,,0.015949872,224,14044,,,0.962261464,13514,14044,,,0.008794157,118,13418,0,0.019114194,0.50014241,7024,14044,,,0.715526372,10134,14163,, -21,067,21067,KY,Fayette County,2024,1,8461.365939,4096,916129,8102.643504,8820.088374,0,,,,2,1289.359955,798.1341339,1970.923654,1,13112.6482,11968.53955,14256.75685,,7246.60569,6002.748035,8490.463344,,7941.347735,7529.577353,8353.118116,,,,,2,,0.173,,,0.147,0.201,3.814814109,,,3.095083512,4.648096109,5.251928148,,,4.399285698,6.158374295,0.090128755,2415,26795,0.086699887,0.093557624,0,,,,0.101346002,0.084702145,0.117989858,0.146481178,0.13656857,0.156393787,0.075654152,0.066913069,0.084395236,0.074367477,0.070337651,0.078397304,,,,0.104679803,0.083622696,0.12573691,0.158,,,0.124,0.193,0.355,,,0.302,0.409,7.9,0.070422885,0.103,,,0.266,,,0.224,0.313,0.973181015,313919,322570,,,0.173286268,,,0.142085661,0.207061862,0.410714286,69,168,0.373973453,0.446868352,684.3,2202,321793,,,16.15692413,1280,79223,15.2717886,17.04205965,,,,,,,28.43457766,25.55275633,31.316399,49.33122393,44.11049792,54.55194995,8.834298778,8.023439046,9.645158509,,,,27.57158006,22.27249298,32.87066715,0.077931316,20596,264284,0.068399401,0.087463231,0.001202637,387,321793,,,831.50646,0.001501497,481,320347,,,666.002079,0.005440975,1743,320347,,,183.7905909,2746,,,,,,711,4048,1095,2611,0.48,,,,,,0.35,0.41,0.28,0.49,0.54,,,,,,0.49,0.37,0.36,0.56,0.921501446,193108,209558,0.914953096,0.928049796,0.759745655,68583,90271,0.733769048,0.785722262,0.030732941,5407,175935,,,0.163,10459,,0.122489362,0.203510638,,,,0.066880114,0.027186675,0.106573553,0.38305759,0.317059138,0.449056041,0.318567493,0.248948568,0.388186418,0.086941122,0.063766466,0.110115778,5.017388784,138500,27604,4.786745179,5.24803239,0.244605624,16154,66041,0.219083144,0.270128103,11.34269546,365,321793,,,91.55519404,1479,1615419,86.88908405,96.22130403,,,,,,,110.6317526,97.41089202,123.8526131,68.95507829,54.84202011,85.59143371,96.66916447,90.96415617,102.3741728,,,,8.2,,,,,0,,,,,0.155012412,20295,130925,0.145499875,0.164524949,0.133441508,0.124313577,0.14256944,0.022111896,0.017807924,0.026415868,0.007943479,0.006280125,0.009606833,0.758242555,125430,165422,0.749048729,0.767436382,,,,0.605150947,0.552446097,0.657855796,0.741395436,0.709748654,0.773042217,0.695930336,0.648444735,0.743415937,0.798658023,0.789071063,0.808244983,0.203,,165422,0.190732866,0.215267134,77.37980369,,,77.05391423,77.70569315,,,,89.41100796,85.76721481,93.05480112,72.76940737,71.85850994,73.68030481,90.53705801,81.88582624,99.18828977,77.77458336,77.40706229,78.14210442,,,,395.9676737,4096,916129,383.5661179,408.3692295,,,,89.22963122,59.29244193,128.961661,585.7390817,546.1778918,625.3002717,268.4477101,220.1061797,316.7892404,383.9254139,369.7000985,398.1507293,,,,56.36746521,178,315785,48.08662173,64.64830868,,,,,,,116.2790698,89.74173118,148.2072197,49.77476917,30.40372212,76.87309401,45.34373216,36.21896275,56.06822702,,,,5.34306139,145,27138,4.47337588,6.2127469,,,,,,,10.53283767,7.842389475,13.84873634,5.83090379,3.561667518,9.005357989,3.884075291,2.99764731,4.950572801,,,,,,,0.114,,,0.098,0.133,0.164,,,0.14,0.188,0.102,,,0.087,0.118,412.4,1131,274268,,,0.103,33160,,,,0.070422885,20831.30061,295803,,,43.7257652,424,969680,39.56368388,47.88784652,,,,,,,43.23331127,33.29491775,55.20797331,27.87339902,17.02579625,43.04820412,49.00666139,43.75087198,54.26245079,,,,0.345,,,0.33,0.36,0.091789656,18204,198323,0.079874763,0.10370455,0.038572834,2666,69116,0.029040919,0.048104749,0.003702235,1186,320347,,,270.1070826,0.89,2791.04,3136,,,0.049099922,941,19165,0.027488496,0.070711347,3.085770411,,,,,,,2.470463249,2.613735262,3.487144581,3.052813253,,,,,,3.944162952,2.466906382,2.643500831,3.43049346,0.087916472,,,,,1303.59,,,,,0.822641122,48048,58407,0.782534946,0.862747298,63667,,,59860.19149,67473.80851,,,,80581,67703.38298,93458.61702,44670,41814,47526,54706,48481.65957,60930.34043,72668,69889.44681,75446.55319,,,,,,0.484706451,20062,41390,,,42.22427653,,,,,0.274349349,,63667,,,8.114988862,153,18854,,,8.228234319,185,2248356,7.042528755,9.413939883,,,,,,,35.1600677,28.81604438,41.50409101,8.608391952,4.706287985,14.44341896,3.131058598,2.323932042,4.127910423,,,,12.54652729,207,1615419,10.80334054,14.28971404,12.81401296,,,,,,,6.678292875,3.817221405,10.84512923,,,,14.56513445,12.34345194,16.78681695,,,,14.91873006,241,1615419,13.03517029,16.80228983,,,,,,,40.7157751,33.09177289,49.56999525,10.09098707,5.214160269,17.62692364,10.77997029,8.874855802,12.68508478,,,,9.117773164,205,2248356,7.869619879,10.36592645,,,,,,,10.72680032,7.512919066,14.85041313,20.2912096,13.96753503,28.49640247,8.203373528,6.798578665,9.608168391,,,,13.71621622,,29600,,,242,164,0.648172207,152664,235530,,,0.696,,,,,163.6887933,,,,,0.543268383,73941,136104,0.531163075,0.555373692,0.146499271,19382,132301,0.135906802,0.157091739,0.906373068,123361,136104,0.898195056,0.91455108,320347,,,,,0.203835216,65298,320347,,,0.151985191,48688,320347,,,0.156717559,50204,320347,,,0.002800089,897,320347,,,0.044102177,14128,320347,,,0.000914633,293,320347,,,0.075849001,24298,320347,,,0.693622853,222200,320347,,,0.026130869,7917,302975,0.022989858,0.02927188,0.507917976,162710,320347,,,0.029274266,9443,322570,, -21,069,21069,KY,Fleming County,2024,1,10975.23469,302,41209,9083.453145,12867.01623,0,,,,2,,,,2,,,,2,,,,2,10677.04278,8786.755245,12567.33031,,,,,2,,0.234,,,0.195,0.275,5.112414025,,,4.082215127,6.283053058,5.98654461,,,4.825742068,7.324125865,0.074368231,103,1385,0.060550268,0.088186194,0,,,,,,,,,,,,,0.074814815,0.060780303,0.088849327,,,,,,,0.243,,,0.197,0.295,0.393,,,0.315,0.475,7.7,0.030997639,0.133,,,0.319,,,0.265,0.382,0.497546745,7504,15082,,,0.147449178,,,0.116805804,0.183660543,0.2,2,10,0.05050879,0.392851974,249.6,38,15224,,,32.41590214,106,3270,26.24482108,38.5869832,,,,,,,,,,,,,33.88704319,27.31062137,40.46346501,,,,,,,0.081647399,1017,12456,0.068541016,0.094753782,0.000328429,5,15224,,,3044.8,0.000261643,4,15288,,,3822,0.000392465,6,15288,,,2548,3281,,,,,,,,,3319,0.36,,,,,,,,,0.36,0.35,,,,,,,,,0.35,0.814324907,8311,10206,0.779482509,0.849167305,0.515196223,1746,3389,0.409605348,0.620787098,0.044207067,269,6085,,,0.28,993,,0.194212766,0.365787234,,,,,,,,,,,,,0.309495897,0.227437096,0.391554698,4.957552194,93083,18776,4.192612407,5.722491982,0.231727125,856,3694,0.131334625,0.332119625,5.254860746,8,15224,,,79.14199165,58,73286,60.09583233,102.3093766,,,,,,,,,,,,,81.32169149,61.59225498,105.3616838,,,,8,,,,,0,,,,,0.131578947,775,5890,0.094936467,0.168221428,0.088368056,0.056330369,0.120405743,0.027164686,0.011169079,0.043160293,0.019524618,0.008158839,0.030890397,0.804392237,4725,5874,0.770474124,0.83831035,,,,,,,,,,,,,0.741393332,0.70776338,0.775023283,0.446,,5874,0.361833273,0.530166728,73.54672788,,,72.16400955,74.9294462,,,,,,,,,,,,,73.58411469,72.20560519,74.96262418,,,,546.448111,302,41209,481.5240045,611.3722175,,,,,,,,,,,,,544.561854,478.8437149,610.2799932,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.154,,,0.132,0.18,0.203,,,0.176,0.233,0.112,,,0.095,0.131,47.7,6,12586,,,0.133,1990,,,,0.030997639,444.7541197,14348,,,24.77031166,11,44408,12.36525033,44.32092982,,,,,,,,,,,,,23.56378717,11.29975186,43.33464358,,,,0.377,,,0.358,0.395,0.093629124,823,8790,0.076948273,0.110309975,0.053081305,205,3862,0.035208965,0.070953645,0.000784929,12,15288,,,1274,0.975,184.275,189,,,,,,,,3.070365494,,,,,,,,,3.084030979,3.212138179,,,,,,,,,3.226334226,0.02895849,,,,,6.351563,,,,,0.670248503,31125,46438,0.526919081,0.813577926,50012,,,42671.23404,57352.76596,,,,,,,,,,,,,47479,41540.61702,53417.38298,,,,,,0.610769958,1293,2117,,,52.69203505,,,,,0.255718628,,50012,,,5.736137667,6,1046,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.59670019,17,102430,9.668189466,26.57292475,,,,,,,,,,,,,17.338977,10.10059306,27.76138183,,,,,,1600,,,-888,10,0.644414045,7066,10965,,,0.648,,,,,0.597621547,,,,,0.74456238,4279,5747,0.707583889,0.781540872,0.083508504,437,5233,0.049483261,0.117533746,0.764224813,4392,5747,0.729529077,0.798920549,15288,,,,,0.237702773,3634,15288,,,0.188252224,2878,15288,,,0.015371533,235,15288,,,0.001504448,23,15288,,,0.002747253,42,15288,,,0.000196232,3,15288,,,0.018118786,277,15288,,,0.948129252,14495,15288,,,0.001843841,26,14101,0,0.008324799,0.503205128,7693,15288,,,1,15082,15082,, -21,071,21071,KY,Floyd County,2024,1,16543.43527,1132,98407,15049.66011,18037.21044,0,,,,2,,,,2,,,,2,,,,2,16712.16837,15193.98995,18230.34679,,,,,2,,0.272,,,0.228,0.321,5.640798803,,,4.577363938,6.799833226,6.5758192,,,5.379966642,7.906255468,0.110840862,319,2878,0.099371206,0.122310517,0,,,,,,,,,,,,,0.111150194,0.099596072,0.122704315,,,,,,,0.276,,,0.219,0.333,0.429,,,0.356,0.504,6.3,0.026939462,0.198,,,0.353,,,0.293,0.416,0.260057871,9347,35942,,,0.140924185,,,0.112132824,0.175220088,0.090909091,4,44,0.034089754,0.173386571,167.3,59,35274,,,47.37399728,313,6607,42.12563345,52.6223611,,,,,,,,,,,,,50.11315875,44.53453588,55.69178161,,,,,,,0.075523395,2150,28468,0.063608501,0.087438288,0.00056699,20,35274,,,1763.7,0.000743324,26,34978,,,1345.307692,0.034078564,1192,34978,,,29.34395973,6852,,,,,,,,,6775,0.27,,,,,,,,,0.27,0.33,,,,,,,,,0.33,0.792900818,19970,25186,0.763467707,0.822333929,0.480929468,4098,8521,0.41059223,0.551266707,0.058127808,634,10907,,,0.498,3843,,0.414595745,0.581404255,,,,,,,,,,,,,0.439348302,0.373537653,0.505158951,6.156444507,88031,14299,5.066197534,7.246691479,0.261865587,2069,7901,0.182497933,0.34123324,5.102908658,18,35274,,,128.1237181,228,177953,111.4927251,144.7547111,,,,,,,,,,,,,131.148302,114.0495457,148.2470584,,,,7.7,,,,,1,,,,,0.148979592,2190,14700,0.121466524,0.176492659,0.133147826,0.105316924,0.160978729,0.016666667,0.007784493,0.02554884,0.010136054,0,0.020841851,0.857943067,9343,10890,0.809583981,0.906302153,,,,,,,,,,,,,0.848800263,0.805545196,0.89205533,0.294,,10890,0.236129912,0.351870088,68.79337156,,,67.88887163,69.69787149,,,,,,,,,,,,,68.57952662,67.66919129,69.48986194,,,,823.9133223,1132,98407,772.8624339,874.9642107,,,,,,,,,,,,,834.0251783,782.1647031,885.8856535,,,,64.02234962,22,34363,40.12246565,96.93060672,,,,,,,,,,,,,64.808814,40.11767733,99.06715654,,,,8.37520938,25,2985,5.419993919,12.36346121,,,,,,,,,,,,,8.477449983,5.486158646,12.5143885,,,,,,,0.172,,,0.146,0.201,0.225,,,0.192,0.257,0.127,,,0.108,0.148,50.4,15,29741,,,0.198,7140,,,,0.026939462,1062.788707,39451,,,58.5806476,62,105837,44.91344661,75.09774642,,,,,,,,,,,,,60.53682494,46.41323656,77.60547749,,,,0.412,,,0.394,0.43,0.089757842,1857,20689,0.074268481,0.105247204,0.038293217,315,8226,0.026378323,0.05020811,0.002687404,94,34978,,,372.106383,0.93,345.96,372,,,0.1547763,256,1654,0.067231279,0.242321321,3.530912454,,,,,,,,,3.523890045,3.384925954,,,,,,,,,3.385434518,0.033894092,,,,,-2382.063,,,,,0.63028637,34621,54929,0.548964889,0.71160785,37296,,,32332.25532,42259.74468,,,,,,,,,,,,,40127,32898.23404,47355.76596,,,,,,0.77440706,4212,5439,,,87.66618518,,,,,0.342905405,,37296,,,3.381642512,7,2070,,,6.328638275,16,252819,3.61736359,10.27731207,,,,,,,,,,,,,6.52714886,3.730829541,10.59968082,,,,18.92888626,32,177953,12.77124007,27.02216214,17.98227622,,,,,,,,,,,,,19.54132999,13.18445329,27.89646364,,,,17.42033009,31,177953,11.83626912,24.72676803,,,,,,,,,,,,,17.98936886,12.22290336,25.53447315,,,,24.52347332,62,252819,18.80200637,31.43798602,,,,,,,,,,,,,24.47680822,18.67838329,31.50650406,,,,,,3500,,,-888,14,0.583443354,16351,28025,,,0.497,,,,,16.88322386,,,,,0.712505251,10176,14282,0.686721941,0.738288562,0.140842912,1838,13050,0.110574128,0.171111696,0.79603697,11369,14282,0.767684434,0.824389505,34978,,,,,0.223997942,7835,34978,,,0.196580708,6876,34978,,,0.007290297,255,34978,,,0.001572417,55,34978,,,0.003144834,110,34978,,,0.000200126,7,34978,,,0.009405912,329,34978,,,0.970581508,33949,34978,,,0.00231118,78,33749,0,0.006108663,0.512550746,17928,34978,,,0.782149018,28112,35942,, -21,073,21073,KY,Franklin County,2024,1,10725.95484,990,142849,9696.748123,11755.16155,0,,,,2,,,,2,10628.18762,7691.672083,14316.09898,,,,,2,11228.03755,10035.86088,12420.21422,,,,,2,,0.186,,,0.158,0.219,4.371987029,,,3.49036345,5.317084854,5.413090466,,,4.345482751,6.511276545,0.097681688,375,3839,0.08829022,0.107073156,0,,,,,,,0.146892655,0.110015593,0.183769718,0.074074074,0.041145405,0.107002743,0.094789916,0.084263795,0.105316037,,,,0.111111111,0.058096977,0.164125245,0.187,,,0.147,0.231,0.376,,,0.3,0.451,7.5,0.088201879,0.114,,,0.275,,,0.225,0.33,0.726974642,37469,51541,,,0.149274299,,,0.117009639,0.183703216,0.392857143,11,28,0.295131698,0.486362997,640.5,331,51682,,,22.60649515,268,11855,19.89990866,25.31308164,,,,,,,6.451612903,3.884292416,10.07499272,51.50976909,34.49690078,73.97662067,26.23906706,22.58419763,29.89393648,,,,38.32752613,24.01965657,58.02833517,0.071376012,2910,40770,0.059461118,0.083290905,0.000367633,19,51682,,,2720.105263,0.000775089,40,51607,,,1290.175,0.001840836,95,51607,,,543.231579,3353,,,,,,,5632,30769,3149,0.35,,,,,,,0.26,,0.36,0.47,,,,,,0.25,0.33,,0.48,0.919293192,33192,36106,0.9050781,0.933508285,0.69043166,9229,13367,0.623770661,0.757092659,0.033640846,846,25148,,,0.192,2028,,0.137191489,0.246808511,,,,,,,0.396600567,0.138072085,0.655129048,0.514649682,0.333668603,0.69563076,0.147724351,0.101683424,0.193765277,4.098316337,119761,29222,3.633082083,4.563550591,0.273069326,2903,10631,0.220024972,0.326113679,21.09051507,109,51682,,,112.5088694,287,255091,99.49213978,125.525599,,,,,,,102.5524157,67.58268813,149.2083806,,,,119.8948392,105.0027069,134.7869716,,,,8.7,,,,,0,,,,,0.107847744,2295,21280,0.089264384,0.126431105,0.084729762,0.066924843,0.10253468,0.019266917,0.009936876,0.028596958,0.016917293,0.006310912,0.027523674,0.749310387,18200,24289,0.717421802,0.781198973,,,,,,,0.765337955,0.648487293,0.882188617,,,,0.810642685,0.779475626,0.841809743,0.236,,24289,0.201241986,0.270758014,74.19831251,,,73.41736469,74.97926032,,,,,,,74.09929707,71.21197919,76.98661495,86.11242668,68.92973351,103.2951199,73.7586656,72.89058385,74.62674735,,,,515.8763051,990,142849,482.0614525,549.6911577,,,,,,,501.8700369,392.6823949,632.0222523,,,,535.2746846,497.6840198,572.8653493,,,,55.63454287,27,48531,36.66351431,80.94533895,,,,,,,,,,,,,63.36040551,39.7076288,95.92841538,,,,7.627765065,30,3933,5.146421058,10.88910892,,,,,,,,,,,,,8.887425938,5.856869695,12.93073813,,,,,,,0.126,,,0.108,0.147,0.178,,,0.152,0.204,0.099,,,0.084,0.115,174.3,77,44172,,,0.114,5860,,,,0.088201879,4347.0296,49285,,,48.76748314,75,153791,38.35871911,61.13046241,,,,,,,,,,,,,54.38172774,42.22953948,68.94179808,,,,0.393,,,0.375,0.411,0.081163757,2441,30075,0.066865885,0.09546163,0.045531498,511,11223,0.031233626,0.05982937,0.001007615,52,51607,,,992.4423077,0.953081511,479.4,503,,,0.121942818,354,2903,0.054729191,0.189156445,2.746504056,,,,,,,2.346079285,2.447025082,2.884121405,2.739190444,,,,,,,2.498136237,2.436856362,2.878000001,0.028013928,,,,,-1203.373,,,,,0.80410509,44073,54810,0.733418443,0.874791737,58456,,,52231.65957,64680.34043,,,,86979,12489.46809,161468.5319,46823,5691.595745,87954.40426,51842,33375.10638,70308.89362,64837,59480.06383,70193.93617,,,,,,0.524748074,3541,6748,,,42.47399721,,,,,0.29880594,,58456,,,8.962426749,26,2901,,,6.741080708,24,356026,4.319137606,10.03019375,,,,,,,,,,,,,5.513116048,3.151222173,8.952955064,,,,17.24517153,43,255091,12.32020337,23.483029,16.85672956,,,,,,,,,,,,,19.19319164,13.36876121,26.69308337,,,,16.07269563,41,255091,11.53404388,21.80442649,,,,,,,,,,,,,15.40817211,10.53917832,21.75174164,,,,10.39249942,37,356026,7.317278673,14.3246915,,,,,,,,,,,,,9.647953083,6.410994758,13.94397845,,,,18.36734694,,4900,,,52,38,0.671623711,26059,38800,,,0.716,,,,,64.45667476,,,,,0.632598767,14267,22553,0.608729826,0.656467709,0.11075376,2445,22076,0.088613771,0.132893749,0.831641023,18756,22553,0.803673,0.859609046,51607,,,,,0.208305075,10750,51607,,,0.187474567,9675,51607,,,0.096091616,4959,51607,,,0.004747418,245,51607,,,0.018640882,962,51607,,,0.000329413,17,51607,,,0.040827795,2107,51607,,,0.817117833,42169,51607,,,0.016454473,800,48619,0.010666081,0.022242864,0.51475575,26565,51607,,,0.265904814,13705,51541,, -21,075,21075,KY,Fulton County,2024,1,19350.58346,182,16860,14922.34432,23778.8226,0,,,,2,,,,2,19928.44222,11609.05198,31907.36649,1,,,,2,19066.53119,14102.9838,24030.07858,,,,,2,,0.272,,,0.237,0.311,5.304041986,,,4.283285187,6.398095495,6.066194609,,,4.897667189,7.380655066,0.118257261,57,482,0.089429069,0.147085454,0,,,,,,,0.14516129,0.083158287,0.207164294,,,,0.109034268,0.074937316,0.14313122,,,,,,,0.264,,,0.221,0.31,0.45,,,0.366,0.534,7.7,0.000266334,0.149,,,0.359,,,0.304,0.418,0.752724482,4904,6515,,,0.123887708,,,0.096226403,0.155109393,0.3,3,10,0.129013968,0.476732101,537.5,35,6512,,,36.5535248,42,1149,26.34456548,49.40974654,,,,,,,50.63291139,28.94108371,82.22467594,,,,30.59805285,19.17563682,46.32581973,,,,,,,0.068612828,322,4693,0.056697934,0.080527721,0.000153563,1,6512,,,6512,0.000156691,1,6382,,,6382,0.000313381,2,6382,,,3191,5362,,,,,,,4450,,5348,0.37,,,,,,,0.49,,0.35,0.31,,,,,,,0.22,,0.32,0.803501094,3672,4570,0.752468488,0.8545337,0.398798799,664,1665,0.306534635,0.491062962,0.04489603,95,2116,,,0.389,507,,0.25912766,0.51887234,,,,,,,0.638961039,0.36892257,0.908999508,,,,0.277777778,0.138565142,0.416990413,4.81876348,67029,13910,3.687123614,5.950403345,0.350470673,484,1381,0.209782762,0.491158585,10.74938575,7,6512,,,126.8498943,39,30745,90.2026752,173.4079814,,,,,,,,,,,,,139.4440829,94.08233718,199.065099,,,,8,,,,,1,,,,,0.170588235,435,2550,0.103997916,0.237178555,0.132929293,0.080754058,0.185104527,0.040784314,0,0.091406156,0,0,0.011233469,0.813888889,1758,2160,0.743815977,0.883961801,,,,,,,,,,,,,0.806980434,0.732301846,0.881659021,0.27,,2160,0.156251761,0.383748239,67.46000227,,,64.79214938,70.12785516,,,,,,,,,,,,,67.72888713,64.78283121,70.67494305,,,,816.9266695,182,16860,687.7886029,946.064736,,,,,,,807.6631819,574.3274764,1104.102158,,,,853.6566921,694.6488038,1012.66458,,,,174.7640685,10,5722,83.80616386,321.3973443,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.165,,,0.143,0.189,0.206,,,0.18,0.233,0.139,,,0.12,0.161,,,,,,0.149,970,,,,0.000266334,1.814530165,6813,,,,,,,,,,,,,,,,,,,,,,,,,,0.426,,,0.411,0.442,0.08095952,270,3335,0.065470159,0.096448882,0.039243168,56,1427,0.024945295,0.05354104,0.000313381,2,6382,,,3191,,,,,,,,,,,3.06202303,,,,,,,2.827641626,,3.234262298,2.83575001,,,,,,,2.608482957,,3.116672266,0.028789145,,,,,-14038.36,,,,,0.957848254,33404,34874,0.73304112,1.182655387,40409,,,34888.82979,45929.17021,,,,,,,32869,24930.10638,40807.89362,,,,38324,32318.89362,44329.10638,,,,,,0.701882845,671,956,,,2.257291997,,,,,0.316488901,,40409,,,2.72479564,1,367,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,23.16852787,10,43162,11.11020967,42.60774765,,,,,,,,,,,,,,,,,,,26.66666667,,600,,,9,7,0.509148265,2421,4755,,,0.575,,,,,6.749519299,,,,,0.641295206,1525,2378,0.577764735,0.704825677,0.128072445,297,2319,0.066753233,0.189391657,0.8431455,2005,2378,0.786320772,0.899970229,6382,,,,,0.206988405,1321,6382,,,0.219210279,1399,6382,,,0.240206832,1533,6382,,,0.003917267,25,6382,,,0.007677844,49,6382,,,0.001723598,11,6382,,,0.026950799,172,6382,,,0.693669696,4427,6382,,,0,0,6151,0,0.01317205,0.493418991,3149,6382,,,0.6419033,4182,6515,, -21,077,21077,KY,Gallatin County,2024,1,12213.24238,192,25068,9674.07891,14752.40585,0,,,,2,,,,2,,,,2,,,,2,12531.10197,9834.743552,15227.46038,,,,,2,,0.231,,,0.199,0.263,4.920129734,,,4.075543685,5.815714029,5.817002878,,,4.697269084,6.951464257,0.112403101,87,774,0.090150405,0.134655796,0,,,,,,,,,,,,,0.113960114,0.090453472,0.137466756,,,,,,,0.246,,,0.202,0.289,0.391,,,0.311,0.475,,,0.127,,,0.321,,,0.265,0.374,0.460529344,4002,8690,,,0.149688975,,,0.117817782,0.186315682,0.125,2,16,0.026484325,0.278054433,216.5,19,8775,,,30.77725613,59,1917,23.42907336,39.70041803,,,,,,,,,,,,,31.13553114,23.18244801,40.93747337,,,,,,,0.08416434,633,7521,0.071057957,0.097270723,0.000455841,4,8775,,,2193.75,0.000114116,1,8763,,,8763,0.000684697,6,8763,,,1460.5,1244,,,,,,,,,1267,0.32,,,,,,,,,0.32,0.42,,,,,,,,,0.42,0.845735644,4978,5886,0.808610563,0.882860725,0.464171611,1017,2191,0.373155113,0.55518811,0.03573201,144,4030,,,0.189,374,,0.119893617,0.258106383,,,,,,,0.6,0.083360092,1,0.2625,0,0.656091173,0.231631382,0.142077566,0.321185199,4.124686974,110356,26755,3.521127594,4.728246355,0.223127866,438,1963,0.143954076,0.302301655,0,0,8775,,,158.9789012,70,44031,123.9318528,200.8602776,,,,,,,,,,,,,172.5388212,134.2455016,218.358921,,,,8.7,,,,,0,,,,,0.114886731,355,3090,0.081935704,0.147837759,0.089215686,0.056314941,0.122116432,0.019417476,0.004467994,0.034366958,0.012944984,0.001768326,0.024121642,0.848515865,3316,3908,0.810137424,0.886894306,,,,,,,,,,,,,0.825630252,0.773408539,0.877851966,0.471,,3908,0.392868818,0.549131182,72.10927339,,,70.38951999,73.8290268,,,,,,,,,,,,,71.73827634,69.93964957,73.53690311,,,,611.6935275,192,25068,521.6172177,701.7698373,,,,,,,,,,,,,630.879454,536.1059122,725.6529958,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.151,,,0.13,0.171,0.199,,,0.174,0.225,0.113,,,0.096,0.13,,,,,,0.127,1100,,,,,,8589,,,71.90705068,19,26423,43.2927418,112.2917669,,,,,,,,,,,,,79.25582948,47.71718669,123.7677953,,,,0.395,,,0.379,0.412,0.093338214,510,5464,0.076657363,0.110019065,0.061026352,132,2163,0.039579544,0.082473161,0.000684697,6,8763,,,1460.5,0.925,109.15,118,,,,,,,,2.911218115,,,,,,,,,2.918999312,,,,,,,,,,,0.011276364,,,,,-1795.908,,,,,0.788698343,38494,48807,0.66020348,0.917193205,59175,,,50682.06383,67667.93617,,,,,,,44063,21266.23404,66859.76596,32750,13521.74468,51978.25532,62567,55683.76596,69450.23404,,,,,,0.7008328,1094,1561,,,30.44599619,,,,,0.246016054,,59175,,,5.836575876,3,514,,,,,,,,,,,,,,,,,,,,,,,,,,25.17832344,11,44031,12.56892834,45.0509756,24.98239877,,,,,,,,,,,,,24.43204745,11.17188786,46.3796365,,,,,,,,,,,,,,,,,,,,,,,,,,,24.47940466,15,61276,13.70093696,40.37505528,,,,,,,,,,,,,26.9541779,15.08604876,44.45681738,,,,20,,900,,,9,9,0.595359629,3849,6465,,,0.551,,,,,17.82927123,,,,,0.705276705,2192,3108,0.656938703,0.753614708,0.082815057,253,3055,0.047574157,0.118055958,0.816280566,2537,3108,0.772340133,0.860220999,8763,,,,,0.233824033,2049,8763,,,0.143786375,1260,8763,,,0.016204496,142,8763,,,0.00536346,47,8763,,,0.005934041,52,8763,,,0.002282323,20,8763,,,0.059910989,525,8763,,,0.887823805,7780,8763,,,0.00242483,20,8248,0,0.012255399,0.489330138,4288,8763,,,1,8690,8690,, -21,079,21079,KY,Garrard County,2024,1,10659.81417,345,48838,8775.14666,12544.48168,0,,,,2,,,,2,,,,2,,,,2,10528.81638,8621.962377,12435.67039,,,,,2,,0.209,,,0.175,0.246,4.727872751,,,3.761350323,5.805964037,5.859633459,,,4.698600179,7.098743459,0.094191523,120,1274,0.078151852,0.110231194,0,,,,,,,,,,,,,0.089775561,0.073621692,0.105929431,,,,,,,0.219,,,0.174,0.268,0.412,,,0.328,0.501,,,0.111,,,0.294,,,0.242,0.351,0.32973515,5590,16953,,,0.147742221,,,0.116826323,0.184747725,0.416666667,5,12,0.261828357,0.556653137,259.2,45,17362,,,31.29702076,104,3323,25.28192703,37.3121145,,,,,,,,,,,,,30.9587217,24.987684,37.92652564,,,,,,,0.082530462,1165,14116,0.069424079,0.095636845,0.000230388,4,17362,,,4340.5,0.000227415,4,17589,,,4397.25,0.000397976,7,17589,,,2512.714286,3740,,,,,,,,,3763,0.37,,,,,,,,,0.37,0.36,,,,,,,0.46,,0.36,0.849062755,10418,12270,0.821473001,0.876652508,0.605591613,2426,4006,0.513955764,0.697227461,0.03817952,302,7910,,,0.205,767,,0.133510638,0.276489362,,,,,,,0.146341463,0,0.605776239,0.802816901,0.535172728,1,0.215399003,0.148875294,0.281922711,4.46755814,115263,25800,3.818378315,5.116737964,0.249393368,925,3709,0.165668448,0.333118287,5.183734593,9,17362,,,122.9648184,108,87830,99.77351987,146.1561169,,,,,,,,,,,,,127.2989586,102.9496702,151.6482469,,,,8.3,,,,,0,,,,,0.109882006,745,6780,0.080838686,0.138925325,0.09710897,0.066870722,0.127347217,0.012536873,0.002581836,0.022491911,0.005899705,0,0.011843333,0.79661017,5687,7139,0.762577577,0.830642762,,,,,,,,,,,,,0.639178845,0.557864702,0.720492987,0.551,,7139,0.475775586,0.626224415,74.69588678,,,73.23136299,76.16041056,,,,,,,,,,,,,74.66743982,73.19616297,76.13871666,,,,504.4493571,345,48838,447.4508351,561.4478791,,,,,,,,,,,,,504.8442722,446.380087,563.3084574,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.141,,,0.121,0.165,0.193,,,0.167,0.221,0.104,,,0.089,0.123,95.4,14,14680,,,0.111,1880,,,,,,16912,,,56.87527253,30,52747,38.37350754,81.19298803,,,,,,,,,,,,,60.69434329,40.95021854,86.64494901,,,,0.379,,,0.36,0.398,0.092197898,956,10369,0.075517047,0.108878749,0.056656504,223,3936,0.038784164,0.074528845,0.000227415,4,17589,,,4397.25,0.925,179.45,194,,,,,,,,2.994740118,,,,,,,,,3.062445666,2.846126211,,,,,,,,,2.913247907,0.030416317,,,,,1160.223,,,,,0.796355516,44576,55975,0.666847882,0.92586315,57748,,,50390.55319,65105.44681,,,,,,,65978,27377.31915,104578.6809,,,,56972,47885.70213,66058.29787,,,,,,0.638175546,1665,2609,,,51.13597857,,,,,0.252095311,,57748,,,6.666666667,6,900,,,,,,,,,,,,,,,,,,,,,,,,,,25.79822061,25,87830,16.35385887,38.70999772,28.46407833,,,,,,,,,,,,,27.29099634,17.30015063,40.94989426,,,,23.9098258,21,87830,14.80055902,36.54870857,,,,,,,,,,,,,24.24742068,14.81095448,37.44817466,,,,21.24894777,26,122359,13.88051816,31.13463177,,,,,,,,,,,,,20.87010966,13.37187305,31.05306886,,,,24.44444444,,1800,,,16,28,0.644905521,8703,13495,,,0.683,,,,,14.17237687,,,,,0.808877929,5248,6488,0.779780532,0.837975325,0.087977965,543,6172,0.057372035,0.118583896,0.834001233,5411,6488,0.803210694,0.864791773,17589,,,,,0.216726363,3812,17589,,,0.19449656,3421,17589,,,0.020694752,364,17589,,,0.004207175,74,17589,,,0.003638638,64,17589,,,0.000568537,10,17589,,,0.028711126,505,17589,,,0.927170391,16308,17589,,,0.004731474,77,16274,0,0.013939881,0.500653818,8806,17589,,,1,16953,16953,, -21,081,21081,KY,Grant County,2024,1,11330.70843,473,71503,9874.107485,12787.30937,0,,,,2,,,,2,,,,2,,,,2,11693.19931,10161.60255,13224.79606,,,,,2,,0.205,,,0.174,0.24,4.549047886,,,3.648291548,5.537557433,5.54683071,,,4.486855719,6.723126236,0.091263651,234,2564,0.080116473,0.102410828,0,,,,,,,,,,0.132530121,0.059584114,0.205476127,0.090231788,0.078806879,0.101656698,,,,,,,0.22,,,0.179,0.266,0.433,,,0.357,0.518,8.3,0.023153174,0.111,,,0.305,,,0.252,0.363,0.626438395,15624,24941,,,0.158566001,,,0.126293999,0.196329003,0.25,6,24,0.143191653,0.365708158,95.1,24,25244,,,33.89830509,202,5959,29.2235553,38.57305487,,,,,,,,,,,,,33.75296479,28.88909283,38.61683675,,,,,,,0.068177553,1453,21312,0.057454148,0.078900957,0.000396134,10,25244,,,2524.4,0.000313701,8,25502,,,3187.75,0.000823465,21,25502,,,1214.380952,2473,,,,,,,,,2421,0.34,,,,,,,,,0.35,0.44,,,,,,,,,0.44,0.889324375,14295,16074,0.866434232,0.912214518,0.521205174,3183,6107,0.442905923,0.599504426,0.037484063,441,11765,,,0.165,1082,,0.100659575,0.229340426,,,,,,,,,,,,,0.146004546,0.099367234,0.192641859,4.890778656,121350,24812,3.827994562,5.953562749,0.32,2128,6650,0.236824928,0.403175072,7.130407226,18,25244,,,123.2065498,155,125805,103.8100209,142.6030787,,,,,,,,,,,,,129.0115858,108.5688474,149.4543241,,,,8.6,,,,,0,,,,,0.121064061,1115,9210,0.089546831,0.152581291,0.099889012,0.069835039,0.129942986,0.017372421,0.007010719,0.027734124,0.006514658,0,0.015798815,0.828571429,9106,10990,0.780704613,0.876438244,,,,,,,,,,,,,0.743644068,0.676750148,0.810537987,0.506,,10990,0.43794937,0.57405063,73.22468693,,,72.12586592,74.32350794,,,,,,,,,,,,,72.87495483,71.74976594,74.00014372,,,,562.6770554,473,71503,510.6108521,614.7432586,,,,,,,,,,,,,576.8939855,522.9156568,630.8723141,,,,55.19525321,16,28988,31.54885626,89.63363322,,,,,,,,,,,,,56.48653738,31.61508617,93.1659532,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.138,,,0.119,0.161,0.189,,,0.164,0.218,0.102,,,0.087,0.121,48.7,10,20528,,,0.111,2770,,,,0.023153174,571.0035701,24662,,,68.69220608,52,75700,51.3026251,90.08068922,,,,,,,,,,,,,72.95173962,54.48384849,95.66650076,,,,0.376,,,0.358,0.392,0.079711624,1172,14703,0.065413751,0.094009496,0.043200928,298,6898,0.028903056,0.0574988,0.000274488,7,25502,,,3643.142857,0.921086957,296.59,322,,,,,,,,2.881290616,,,,,,,,,2.880875901,2.845442254,,,,,,,,,2.856551066,0.028608517,,,,,-596.0426,,,,,0.77728525,44013,56624,0.68920354,0.865366961,66458,,,58396.38298,74519.61702,,,,,,,,,,81917,15684.48936,148149.5106,65881,63275.21277,68486.78723,,,,,,0.648045977,2819,4350,,,76.93755346,,,,,0.219055644,,66458,,,2.762430939,5,1810,,,,,,,,,,,,,,,,,,,,,,,,,,14.31901987,18,125805,8.486358669,22.6302247,14.3078574,,,,,,,,,,,,,15.13943065,8.972586088,23.92682742,,,,13.51297643,17,125805,7.87180674,21.63558429,,,,,,,,,,,,,14.33462064,8.350444769,22.95111626,,,,21.08442317,37,175485,14.8453797,29.06209998,,,,,,,,,,,,,21.14816404,14.73047112,29.41197673,,,,22.25806452,,3100,,,17,52,0.607051107,11106,18295,,,0.677,,,,,41.77265217,,,,,0.721845616,6602,9146,0.678708199,0.764983032,0.083124001,728,8758,0.053706198,0.112541804,0.842991472,7710,9146,0.811604099,0.874378844,25502,,,,,0.263822445,6728,25502,,,0.145282723,3705,25502,,,0.011136382,284,25502,,,0.003293859,84,25502,,,0.004940789,126,25502,,,0.001921418,49,25502,,,0.03274253,835,25502,,,0.934867854,23841,25502,,,0,0,23309,0,0.004702777,0.494078896,12600,25502,,,1,24941,24941,, -21,083,21083,KY,Graves County,2024,1,10497.05897,794,101837,9339.235012,11654.88292,0,,,,2,,,,2,22893.78231,15087.1468,33309.25129,,,,,2,10677.5664,9375.729969,11979.40283,,,,,2,,0.221,,,0.191,0.257,4.782599235,,,3.835025938,5.784147433,5.804102511,,,4.697230821,6.976274546,0.084933974,283,3332,0.075467886,0.094400061,0,,,,,,,0.125,0.069416531,0.180583469,0.077283372,0.051954297,0.102612448,0.083836858,0.073280819,0.094392897,,,,0.120481928,0.05044931,0.190514546,0.231,,,0.188,0.278,0.41,,,0.337,0.486,7.3,0.077679039,0.131,,,0.298,,,0.247,0.353,0.318453437,11671,36649,,,0.141284317,,,0.112139655,0.176236781,0.119047619,5,42,0.053633678,0.205530428,335.9,123,36615,,,35.79736366,277,7738,31.58168761,40.01303971,,,,,,,44.44444444,25.40384015,72.17499333,55.35499398,40.52681277,73.83580471,31.56689565,27.11331531,36.02047599,,,,55.2631579,34.20876575,84.4756072,0.072458385,2146,29617,0.060543492,0.084373279,0.000273112,10,36615,,,3661.5,0.000411952,15,36412,,,2427.466667,0.001043612,38,36412,,,958.2105263,6045,,,,,,,15816,,5759,0.41,,,,,,,0.29,,0.41,0.42,,,,,,,0.24,0.17,0.42,0.901168628,22440,24901,0.884691647,0.917645608,0.577911363,4903,8484,0.506920851,0.648901874,0.045186515,705,15602,,,0.195,1663,,0.125893617,0.264106383,,,,,,,0.138613861,0,0.396570626,0.283231972,0.115693481,0.450770463,0.247171858,0.181108492,0.313235224,5.199191207,100282,19288,4.107880592,6.290501822,0.132648402,1162,8760,0.084310171,0.180986633,9.285811826,34,36615,,,103.166844,191,185137,88.53565796,117.7980301,,,,,,,159.5108334,82.42157529,278.6333251,,,,107.4471561,91.3424449,123.5518673,,,,8.6,,,,,0,,,,,0.118055556,1700,14400,0.094797223,0.141313888,0.090934945,0.068591235,0.113278655,0.029166667,0.016892749,0.041440585,0.010416667,0.003339259,0.017494074,0.843625498,12705,15060,0.803724046,0.88352695,,,,,,,,,,,,,0.825038809,0.788912276,0.861165342,0.253,,15060,0.2145941,0.2914059,73.47577945,,,72.62035579,74.3312031,,,,,,,,,,99.85113502,55.00182128,144.7004488,73.29733249,72.36022607,74.23443891,,,,559.4782632,794,101837,518.5627383,600.3937881,,,,,,,1077.045764,796.8043854,1423.911619,,,,560.727406,517.2632758,604.1915361,,,,59.51302818,23,38647,37.72615478,89.29876289,,,,,,,,,,,,,70.96752391,43.93001583,108.4813989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.146,,,0.126,0.169,0.194,,,0.168,0.223,0.116,,,0.099,0.135,175,53,30292,,,0.131,4820,,,,0.077679039,2883.523599,37121,,,10.84020633,12,110699,5.601292793,18.9356589,,,,,,,,,,,,,12.65168847,6.537312053,22.09995366,,,,0.407,,,0.388,0.423,0.083872204,1751,20877,0.068382842,0.099361566,0.046216187,422,9131,0.030726825,0.061705548,0.000823904,30,36412,,,1213.733333,0.93401699,384.815,412,,,,,,,,3.280794426,,,,,,,2.625427515,3.084133835,3.367332658,3.191422807,,,,,,,2.391293691,3.011715977,3.285715103,0.110582387,,,,,-4818.7325,,,,,0.742589553,38455,51785,0.655289399,0.829889707,53408,,,47687.65957,59128.34043,50833,3851.382979,97814.61702,,,,,,,,,,54190,49257.23404,59122.76596,,,,,,0.600771294,3583,5964,,,60.13854079,,,,,0.297857999,,53408,,,7.36497545,18,2444,,,7.7000077,20,259740,4.703364744,11.89203739,,,,,,,,,,,,,6.693111895,3.74608392,11.03927022,,,,17.23351506,33,185137,11.70933737,24.46159901,17.82463797,,,,,,,,,,,,,17.53053227,11.55273123,25.50600406,,,,20.52534069,38,185137,14.52495268,28.17263374,,,,,,,,,,,,,20.73541609,14.27330634,29.12023354,,,,25.02502503,65,259740,19.31378599,31.89644869,,,,,,,,,,,,,28.11106996,21.60131801,35.96626997,,,,15.12820513,,3900,,,23,36,0.61637088,17018,27610,,,0.681,,,,,23.73308323,,,,,0.747972595,10699,14304,0.719897832,0.776047358,0.115200589,1565,13585,0.087388131,0.143013046,0.812849553,11627,14304,0.785299392,0.840399713,36412,,,,,0.239728661,8729,36412,,,0.189443041,6898,36412,,,0.04048116,1474,36412,,,0.006206745,226,36412,,,0.005959574,217,36412,,,0.001126002,41,36412,,,0.077556849,2824,36412,,,0.849582555,30935,36412,,,0.005724466,196,34239,0.000943453,0.010505479,0.505025816,18389,36412,,,0.665584327,24393,36649,, -21,085,21085,KY,Grayson County,2024,1,12286.25002,635,73826,10797.46032,13775.03972,0,,,,2,,,,2,,,,2,,,,2,12673.1514,11119.85361,14226.44919,,,,,2,,0.247,,,0.211,0.287,5.365553176,,,4.350842,6.50274587,6.347414458,,,5.162086685,7.669911396,0.083224968,192,2307,0.07195324,0.094496695,0,,,,,,,,,,,,,0.083407672,0.071962314,0.09485303,,,,,,,0.267,,,0.22,0.318,0.408,,,0.331,0.486,6.4,0.095590394,0.161,,,0.343,,,0.289,0.4,0.209538229,5536,26420,,,0.135225089,,,0.106747781,0.16941707,0.204545455,9,44,0.128724208,0.289239842,199.8,53,26524,,,39.08256881,213,5450,33.83389757,44.33124005,,,,,,,,,,,,,40.29880087,34.7822038,45.81539793,,,,,,,0.070323954,1487,21145,0.059600549,0.081047358,0.000603227,16,26524,,,1657.75,0.000337952,9,26631,,,2959,0.001201607,32,26631,,,832.21875,3737,,,,,,,,,3666,0.35,,,,,,,,,0.35,0.38,,,,,,,,,0.39,0.835653669,15066,18029,0.812988776,0.858318562,0.453379769,2864,6317,0.385742375,0.521017163,0.045580507,477,10465,,,0.224,1352,,0.144170213,0.303829787,,,,,,,,,,0.411290323,0.117481683,0.705098962,0.293911827,0.221865829,0.365957824,5.488592288,96226,17532,4.539135096,6.438049481,0.238571429,1503,6300,0.159019212,0.318123646,6.032272659,16,26524,,,123.3820301,163,132110,104.4405383,142.323522,,,,,,,,,,,,,128.9373349,109.142998,148.7316718,,,,8.5,,,,,0,,,,,0.144028703,1405,9755,0.107173368,0.180884038,0.118822292,0.084766892,0.152877693,0.023475141,0.009605574,0.037344708,0.00871348,0.001300556,0.016126404,0.806132257,8387,10404,0.78440668,0.827857834,,,,,,,,,,,,,0.795849011,0.747991275,0.843706747,0.322,,10404,0.268013566,0.375986434,72.24820902,,,71.21545745,73.28096058,,,,,,,,,,,,,71.86284554,70.80677767,72.91891341,,,,626.7577002,635,73826,575.2071248,678.3082756,,,,,,,,,,,,,642.2482198,588.9940986,695.502341,,,,67.18172657,18,26793,39.81614892,106.1760918,,,,,,,,,,,,,71.03113531,42.09755251,112.2598172,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.162,,,0.14,0.186,0.21,,,0.183,0.239,0.121,,,0.104,0.14,45,10,22199,,,0.161,4230,,,,0.095590394,2461.07028,25746,,,25.17908625,20,79431,15.38004002,38.88705657,,,,,,,,,,,,,26.32860735,16.08219737,40.66239867,,,,0.4,,,0.382,0.418,0.083167924,1257,15114,0.068870051,0.097465796,0.038850284,246,6332,0.025743901,0.051956667,0.001239157,33,26631,,,807,0.91,295.75,325,,,0.160201149,223,1392,0.064416982,0.255985317,3.166564936,,,,,,,,,3.220311569,3.024415224,,,,,,,,,3.048325919,0.018757739,,,,,14.33594,,,,,0.74398067,34793,46766,0.643480442,0.844480897,52130,,,45912.80851,58347.19149,,,,,,,,,,,,,47616,45150.80851,50081.19149,,,,,,0.615442467,2455,3989,,,,,,,,0.245328985,,52130,,,4.234724743,7,1653,,,6.503536298,12,184515,3.360472107,11.3603691,,,,,,,,,,,,,6.790556599,3.508779685,11.86173581,,,,24.15925179,32,132110,16.30014573,34.48883415,24.22223904,,,,,,,,,,,,,25.29028066,17.06324616,36.10344819,,,,22.7083491,30,132110,15.32122778,32.41758035,,,,,,,,,,,,,23.73079783,16.01106964,33.87718948,,,,34.68552692,64,184515,26.71208224,44.29264353,,,,,,,,,,,,,36.21630186,27.89096547,46.24740896,,,,11.42857143,,2800,,,9,23,0.604134106,11983,19835,,,0.613,,,,,23.4405937,,,,,0.769088099,7464,9705,0.741230474,0.796945724,0.108756587,970,8919,0.076623688,0.140889486,0.755899021,7336,9705,0.717706763,0.794091279,26631,,,,,0.231759979,6172,26631,,,0.185460554,4939,26631,,,0.012579325,335,26631,,,0.002816267,75,26631,,,0.003229319,86,26631,,,0.000375502,10,26631,,,0.015958845,425,26631,,,0.952386317,25363,26631,,,0.002784279,69,24782,0,0.007672263,0.493522587,13143,26631,,,0.754428463,19932,26420,, -21,087,21087,KY,Green County,2024,1,10829.14163,238,30339,8543.910382,13114.37288,0,,,,2,,,,2,,,,2,,,,2,11134.40319,8714.299049,13554.50733,,,,,2,,0.262,,,0.223,0.305,5.458983725,,,4.482934817,6.558141206,6.214091089,,,5.044388685,7.514420642,0.079800499,64,802,0.061045688,0.09855531,0,,,,,,,,,,,,,0.082677165,0.063123307,0.102231024,,,,,,,0.266,,,0.215,0.319,0.437,,,0.358,0.523,6.9,0.04201846,0.164,,,0.342,,,0.285,0.404,0.363914648,4042,11107,,,0.127261818,,,0.100311636,0.159233093,0.1,1,10,0.005279615,0.302965499,177.1,20,11291,,,27.94411178,56,2004,21.10868173,36.2877535,,,,,,,,,,,,,27.70233569,20.62620849,36.42345539,,,,,,,0.08988764,808,8989,0.074398279,0.105377002,0.000177132,2,11291,,,5645.5,0.000351958,4,11365,,,2841.25,0.002199736,25,11365,,,454.6,2762,,,,,,,,,2761,0.35,,,,,,,,,0.35,0.32,,,,,,,,,0.32,0.829301576,6685,8061,0.806220459,0.852382693,0.56196319,1374,2445,0.453229664,0.670696717,0.03702245,188,5078,,,0.255,595,,0.163255319,0.346744681,,,,,,,,,,,,,0.289436286,0.21095883,0.367913743,4.84771487,85281,17592,4.154064527,5.541365213,0.269165965,639,2374,0.173063598,0.365268331,15.05623948,17,11291,,,92.15590611,51,55341,68.61612518,121.1679973,,,,,,,,,,,,,96.10209887,71.32883013,126.6986366,,,,8.1,,,,,0,,,,,0.115990991,515,4440,0.079006097,0.152975885,0.089449541,0.054474234,0.124424849,0.023423423,0.005494483,0.041352364,0.006756757,0.000301047,0.013212466,0.77783388,3081,3961,0.73425412,0.821413641,,,,,,,,,,,,,0.716073147,0.649913985,0.782232309,0.433,,3961,0.346102924,0.519897076,74.0875227,,,72.42808927,75.74695614,,,,,,,,,,,,,73.78007884,72.05604673,75.50411096,,,,529.6566723,238,30339,456.7289871,602.5843575,,,,,,,,,,,,,532.5027761,456.8033312,608.202221,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.168,,,0.143,0.193,0.213,,,0.183,0.244,0.126,,,0.108,0.146,124.9,12,9609,,,0.164,1830,,,,0.04201846,473.0438203,11258,,,,,,,,,,,,,,,,,,,,,,,,,,0.413,,,0.395,0.431,0.102525329,678,6613,0.083461499,0.121589159,0.05508645,137,2487,0.037214109,0.07295879,0.001143863,13,11365,,,874.2307692,0.875,100.625,115,,,,,,,,3.254732455,,,,,,,,,3.287384287,3.347630806,,,,,,,,,3.342349037,0.01614551,,,,,-2516.557,,,,,0.740278413,33981,45903,0.649089477,0.83146735,46169,,,39203.55319,53134.44681,,,,,,,,,,,,,38540,30894.21277,46185.78723,,,,,,0.611178615,1006,1646,,,25.34448526,,,,,0.315319803,,46169,,,3.007518797,2,665,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,23.49072117,13,55341,12.50781968,40.16984861,,,,,,,,,,,,,24.98654571,13.30428325,42.72775413,,,,20.66889719,16,77411,11.8140606,33.56499412,,,,,,,,,,,,,20.58799308,11.52294344,33.95676367,,,,,,1100,,,-888,-888,0.676994758,5812,8585,,,0.641,,,,,0.572163112,,,,,0.744487384,3275,4399,0.694782854,0.794191913,0.096027297,394,4103,0.061349514,0.13070508,0.776767447,3417,4399,0.740045533,0.813489362,11365,,,,,0.208886934,2374,11365,,,0.210910691,2397,11365,,,0.017861857,203,11365,,,0.004399472,50,11365,,,0.002903652,33,11365,,,0.000263968,3,11365,,,0.022789265,259,11365,,,0.938143423,10662,11365,,,0.003986333,42,10536,0,0.013973235,0.500131984,5684,11365,,,1,11107,11107,, -21,089,21089,KY,Greenup County,2024,1,12744.89221,841,96024,11353.26003,14136.52438,0,,,,2,,,,2,,,,2,,,,2,12935.31137,11511.98351,14358.63923,,,,,2,,0.203,,,0.17,0.237,4.734055138,,,3.797742145,5.811446549,6.028689435,,,4.893987786,7.274162248,0.082099027,194,2363,0.071030467,0.093167587,0,,,,,,,,,,,,,0.08083442,0.069696789,0.09197205,,,,,,,0.215,,,0.171,0.262,0.418,,,0.34,0.499,7.3,0.069730861,0.134,,,0.296,,,0.241,0.353,0.790945999,28444,35962,,,0.137789815,,,0.108961155,0.171470055,0.277777778,5,18,0.152183671,0.410166986,221.6,79,35649,,,26.23047451,178,6786,22.37700242,30.08394659,,,,,,,,,,,,,26.22187742,22.26842514,30.17532971,,,,,,,0.059993514,1665,27753,0.050461599,0.069525429,0.000504923,18,35649,,,1980.5,0.000367201,13,35403,,,2723.307692,0.001948987,69,35403,,,513.0869565,5443,,,,,,,,,5446,0.37,,,,,,,0.36,,0.37,0.46,,,,,,0.36,0.63,,0.46,0.898530906,22997,25594,0.878386873,0.918674939,0.653742661,5345,8176,0.582619473,0.72486585,0.057983323,751,12952,,,0.204,1496,,0.131319149,0.276680851,,,,,,,0.123595506,0,0.679971657,0.39516129,0,0.801916224,0.204590256,0.155653719,0.253526793,4.728270042,112060,23700,4.19252027,5.264019815,0.194950547,1498,7684,0.138150752,0.251750342,8.134870543,29,35649,,,133.2214651,235,176398,116.1882612,150.254669,,,,,,,,,,,,,138.6512479,120.923812,156.3786837,,,,8.3,,,,,0,,,,,0.103737339,1485,14315,0.083172342,0.124302335,0.090230906,0.071681475,0.108780337,0.011875655,0.004165653,0.019585657,0.009430667,0.003434898,0.015426437,0.848254484,11493,13549,0.816480403,0.880028564,,,,,,,,,,,,,0.807926829,0.769214889,0.84663877,0.342,,13549,0.294519485,0.389480515,72.61727538,,,71.63816272,73.59638804,,,,,,,,,,,,,72.36868864,71.3802142,73.35716307,,,,612.9288791,841,96024,568.4382978,657.4194603,,,,,,,,,,,,,624.4418394,578.7215591,670.1621197,,,,42.61536588,14,32852,23.29821708,71.50134276,,,,,,,,,,,,,41.92601671,22.32383814,71.69476543,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.138,,,0.117,0.159,0.195,,,0.167,0.224,0.104,,,0.088,0.122,95.4,29,30399,,,0.134,4830,,,,0.069730861,2573.766065,36910,,,72.90838162,77,105612,57.53815462,91.12296756,,,,,,,,,,,,,75.93313939,59.92524615,94.90339579,,,,0.396,,,0.376,0.414,0.068199841,1376,20176,0.056284948,0.080114735,0.039193589,313,7986,0.026087206,0.052299972,0.000960371,34,35403,,,1041.264706,0.953650443,431.05,452,,,,,,,,3.338702602,,,,,,,,,3.356363613,3.247062048,,,,,,,,,3.267474197,0.036470745,,,,,1741.6651,,,,,0.73578618,43496,59115,0.608460575,0.863111784,54462,,,48306.76596,60617.23404,,,,,,,64479,12712.3617,116245.6383,,,,58078,54653.65957,61502.34043,,,,,,0.531759511,3131,5888,,,53.77740617,,,,,0.229095516,,54462,,,5.968529571,11,1843,,,,,,,,,,,,,,,,,,,,,,,,,,20.51035305,37,176398,14.1183833,28.80416135,20.9752945,,,,,,,,,,,,,21.33142221,14.68356953,29.95724772,,,,17.5738954,31,176398,11.94060929,24.94474172,,,,,,,,,,,,,18.29016461,12.42727947,25.9614287,,,,16.10571793,40,248359,11.50616102,21.9314166,,,,,,,,,,,,,16.75448811,11.96965194,22.81485745,,,,10,,3600,,,17,19,0.657122198,18176,27660,,,0.626,,,,,31.90895695,,,,,0.788852051,11421,14478,0.770036138,0.807667965,0.093349916,1276,13669,0.072251046,0.114448786,0.823387208,11921,14478,0.794585135,0.852189281,35403,,,,,0.210349405,7447,35403,,,0.224161794,7936,35403,,,0.008954043,317,35403,,,0.004152191,147,35403,,,0.006581363,233,35403,,,0.000197723,7,35403,,,0.013021495,461,35403,,,0.955568737,33830,35403,,,0.002143402,73,34058,0,0.006170224,0.511708047,18116,35403,,,0.426839442,15350,35962,, -21,091,21091,KY,Hancock County,2024,1,9413.338908,160,24580,7081.527113,11745.1507,0,,,,2,,,,2,,,,2,,,,2,9757.681503,7305.562379,12209.80063,,,,,2,,0.206,,,0.172,0.242,4.63618616,,,3.668003756,5.702337479,5.598697313,,,4.422173636,6.849742469,0.071530758,50,699,0.052425731,0.090635785,0,,,,,,,,,,,,,0.071637427,0.052310766,0.090964088,,,,,,,0.225,,,0.18,0.275,0.373,,,0.294,0.458,8.1,0.049822678,0.104,,,0.288,,,0.233,0.348,0.223749313,2035,9095,,,0.148399084,,,0.116203369,0.183881129,0.181818182,2,11,0.044108943,0.367070091,386.1,35,9064,,,30.68122725,59,1923,23.35597173,39.57654777,,,,,,,,,,,,,31.82579565,24.10454683,41.23400972,,,,,,,0.064516129,480,7440,0.053792725,0.075239533,,0,9064,,,,0.000665115,6,9021,,,1503.5,0.000554262,5,9021,,,1804.2,2739,,,,,,,,,2779,0.48,,,,,,,,,0.48,0.46,,,,,,,,,0.46,0.871998702,5375,6164,0.833649358,0.910348047,0.637506042,1319,2069,0.53062558,0.744386503,0.0421875,162,3840,,,0.176,371,,0.111659575,0.240340426,,,,,,,,,,,,,0.23246493,0.168038826,0.296891034,4.980438575,119919,24078,3.477892603,6.482984547,0.28307976,614,2169,0.174912228,0.391247293,12.13592233,11,9064,,,83.92496654,37,44087,59.09092151,115.6795113,,,,,,,,,,,,,78.68946277,54.16620543,110.5092622,,,,8.9,,,,,0,,,,,0.093610698,315,3365,0.060811852,0.126409545,0.082931243,0.049353458,0.116509027,0.00564636,0,0.017531363,0.004457652,0,0.012722142,0.894306868,3503,3917,0.860005017,0.928608718,,,,,,,,,,,,,0.931397306,0.897337661,0.965456952,0.338,,3917,0.277421231,0.398578769,74.62070426,,,72.8049427,76.43646581,,,,,,,,,,,,,74.22069324,72.35352177,76.0878647,,,,485.486785,160,24580,406.831573,564.141997,,,,,,,,,,,,,499.5099165,417.9751041,581.0447289,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.138,,,0.116,0.16,0.19,,,0.164,0.219,0.102,,,0.087,0.119,92.7,7,7553,,,0.104,940,,,,0.049822678,426.7312345,8565,,,,,,,,,,,,,,,,,,,,,,,,,,0.383,,,0.366,0.399,0.073333333,385,5250,0.059035461,0.087631206,0.043913044,101,2300,0.028423682,0.059402405,0.00044341,4,9021,,,2255.25,0.925,99.9,108,,,,,,,,3.164803361,,,,,,,,,3.143057074,2.705844136,,,,,,,,,2.756705634,0.025646264,,,,,2072.378,,,,,0.745294835,45817,61475,0.664525122,0.826064549,66300,,,57160.08511,75439.91489,,,,,,,112750,93936.38298,131563.617,,,,68704,58198.6383,79209.3617,,,,,,0.568427753,893,1571,,,34.03943823,,,,,0.192895928,,66300,,,3.603603604,2,555,,,,,,,,,,,,,,,,,,,,,,,,,,26.78163431,12,44087,13.36929535,47.91974162,27.21890807,,,,,,,,,,,,,28.12183234,14.03831738,50.3177261,,,,24.95066573,11,44087,12.45528244,44.64363307,,,,,,,,,,,,,26.22982092,13.0938321,46.93239505,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1000,,,14,-888,0.698173516,4587,6570,,,0.653,,,,,1.897944742,,,,,0.792844778,2748,3466,0.75298453,0.832705026,0.105035527,340,3237,0.063442784,0.14662827,0.839584536,2910,3466,0.78996169,0.889207381,9021,,,,,0.238221927,2149,9021,,,0.187229797,1689,9021,,,0.012304623,111,9021,,,0.003879836,35,9021,,,0.003547279,32,9021,,,0,0,9021,,,0.017958098,162,9021,,,0.951557477,8584,9021,,,0,0,8527,0,0.009501733,0.488305066,4405,9021,,,0.914238593,8315,9095,, -21,093,21093,KY,Hardin County,2024,1,10223.59173,1925,314459,9566.006635,10881.17682,0,,,,2,5490.748749,2837.150002,9591.233074,1,12361.03886,10210.98518,14511.09254,,6523.189377,4543.640411,9072.177321,,10433.4946,9671.312394,11195.67681,,,,,2,,0.195,,,0.168,0.226,4.463567358,,,3.650542331,5.32084935,5.796193055,,,4.838562399,6.807536148,0.08275297,808,9764,0.077288134,0.088217806,0,,,,0.067357513,0.031996228,0.102718798,0.151978417,0.130877658,0.173079177,0.085753804,0.0653437,0.106163907,0.071527778,0.06557511,0.077480446,,,,0.087765957,0.059165147,0.116366768,0.205,,,0.166,0.247,0.419,,,0.355,0.485,7.7,0.089201727,0.104,,,0.264,,,0.219,0.31,0.673718632,74582,110702,,,0.149802222,,,0.120914433,0.181641314,0.175824176,16,91,0.124821777,0.232556172,458.8,512,111607,,,25.28803795,597,23608,23.25949578,27.31658012,,,,,,,21.87004754,17.0162024,27.67794488,29.76531196,22.23015867,39.03324656,26.06837607,23.59576328,28.54098886,,,,19.20768307,13.138041,27.11551746,0.062466303,5793,92738,0.052934388,0.071998218,0.000600321,67,111607,,,1665.776119,0.000938657,105,111862,,,1065.352381,0.004496612,503,111862,,,222.389662,3598,,,,,,729,2099,1645,3812,0.41,,,,,,0.39,0.39,0.27,0.42,0.44,,,,,,0.42,0.36,0.35,0.45,0.92310088,68171,73850,0.912465225,0.933736535,0.689566396,20356,29520,0.646356404,0.732776388,0.040893376,1928,47147,,,0.154,4155,,0.108723404,0.199276596,,,,0.16925734,0,0.359258526,0.143509459,0.071848449,0.215170468,0.118659021,0.0543772,0.182940841,0.112636623,0.084879568,0.140393678,4.057178866,122328,30151,3.676098122,4.438259611,0.24130331,6569,27223,0.206917081,0.275689539,8.870411354,99,111607,,,92.88413383,513,552301,84.84630184,100.9219658,,,,,,,92.08798176,70.4400093,118.2908651,45.79453519,25.63085371,75.53112157,101.3377055,91.69177321,110.9836378,,,,7.7,,,,,0,,,,,0.113528293,4775,42060,0.097683697,0.129372889,0.085239586,0.071434451,0.099044721,0.017593914,0.011262485,0.023925342,0.020328103,0.012549731,0.028106475,0.792396198,39600,49975,0.770673649,0.814118747,,,,0.708578143,0.599835727,0.81732056,0.779158993,0.704583452,0.853734535,0.755654431,0.702187716,0.809121146,0.824790832,0.802114326,0.847467338,0.282,,49975,0.256196621,0.30780338,74.56247612,,,74.03654447,75.08840777,,,,84.33806466,79.88109545,88.79503387,73.28708325,71.55650489,75.0176616,81.53877062,76.43704807,86.64049317,74.13680609,73.55053533,74.72307685,,,,512.5177767,1925,314459,489.0418058,535.9937476,,,,269.6814831,169.0079497,408.3010063,556.168671,482.2515492,630.0857928,332.3490394,236.3326562,454.3320777,529.652987,502.8421364,556.4638376,,,,56.15623167,67,119310,43.52030821,71.31642916,,,,,,,83.72287728,43.26083241,146.2470177,,,,56.36843368,41.41740485,74.95806709,,,,4.928090114,49,9943,3.645828196,6.515196479,,,,,,,,,,,,,4.211384323,2.861431324,5.977723883,,,,,,,0.127,,,0.11,0.148,0.178,,,0.154,0.203,0.105,,,0.089,0.122,198.7,183,92121,,,0.104,11410,,,,0.089201727,9414.617865,105543,,,30.84996136,103,333874,24.89207681,36.80784591,,,,,,,,,,,,,35.98900556,28.97610231,44.18652386,,,,0.375,,,0.359,0.389,0.073866414,4835,65456,0.060760031,0.086972797,0.036774759,1049,28525,0.026051355,0.047498163,0.001913072,214,111862,,,522.7196262,0.89497026,1203.735,1345,,,0.123760623,699,5648,0.074150599,0.173370648,3.03143888,,,,,,3.193798033,2.524300585,2.96489071,3.126600325,3.012081745,,,,,,3.584709929,2.365074892,2.964214789,3.136192562,0.061374163,,,,,-688.2217,,,,,0.810409529,44703,55161,0.759987649,0.860831408,61920,,,56999.14894,66840.85106,,,,58672,37741.10638,79602.89362,59731,47220.3617,72241.6383,58333,35247.89362,81418.10638,65887,62030.14894,69743.85106,,,,,,0.386087467,6577,17035,,,39.69818491,,,,,0.256912145,,61920,,,6.259563222,45,7189,,,6.657476738,51,766056,4.956928715,8.753352415,,,,,,,18.44918335,10.74732918,29.53892975,,,,4.813370167,3.19844952,6.956660062,,,,18.21008982,97,552301,14.7156062,22.28453808,17.5628869,,,,,,,16.04724039,8.010724584,28.71294576,,,,20.46945935,16.20586373,25.51105381,,,,15.57121932,86,552301,12.45496554,19.23032918,,,,,,,30.19278091,18.44253496,46.63030133,,,,14.81824939,11.36106684,18.99632696,,,,18.01434882,138,766056,15.00872173,21.01997591,,,,,,,16.27869119,9.111059887,26.84922554,,,,20.28491713,16.62485628,23.94497798,,,,15.90163934,,12200,,,87,107,0.6019433,48941,81305,,,0.714,,,,,47.66849058,,,,,0.620526291,26458,42638,0.60588048,0.635172102,0.092297961,3794,41106,0.076665212,0.107930711,0.854097284,36417,42638,0.83243425,0.875760319,111862,,,,,0.245543616,27467,111862,,,0.152348429,17042,111862,,,0.11732313,13124,111862,,,0.004845256,542,111862,,,0.022581395,2526,111862,,,0.004183726,468,111862,,,0.063015144,7049,111862,,,0.754277592,84375,111862,,,0.004880819,507,103876,0.002397189,0.00736445,0.49977651,55906,111862,,,0.334971365,37082,110702,, -21,095,21095,KY,Harlan County,2024,1,18700.54838,952,72211,16859.92677,20541.16999,0,,,,2,,,,2,33606.55536,16115.64957,61803.65185,1,,,,2,18769.38292,16882.74578,20656.02006,,,,,2,,0.311,,,0.264,0.359,6.086795553,,,5.012561955,7.252412588,6.380768932,,,5.169004668,7.702163209,0.104291647,226,2167,0.091422947,0.117160348,0,,,,,,,,,,,,,0.101581217,0.088620144,0.11454229,,,,,,,0.318,,,0.26,0.375,0.45,,,0.372,0.532,5.6,0.028961983,0.23,,,0.381,,,0.318,0.445,0.597107823,16021,26831,,,0.124147318,,,0.097092491,0.155504267,0.172413793,5,29,0.083591127,0.280159851,248.4,65,26164,,,42.67310789,212,4968,36.92873777,48.41747801,,,,,,,,,,,,,42.36921747,36.43752702,48.30090791,,,,,,,0.071156229,1493,20982,0.059241336,0.083071123,0.000343984,9,26164,,,2907.111111,0.000311745,8,25662,,,3207.75,0.000506586,13,25662,,,1974,7532,,,,,,,11053,,7353,0.21,,,,,,,,,0.21,0.21,,,,,,,0.14,,0.22,0.76952053,14300,18583,0.739225305,0.799815754,0.508035575,3256,6409,0.439173886,0.576897264,0.062637019,400,6386,,,0.345,2067,,0.219893617,0.470106383,,,,,,,0.517241379,0.394906711,0.639576048,,,,0.391696751,0.321483254,0.461910248,4.956241363,75320,15197,4.238754392,5.673728335,0.289435366,1789,6181,0.229453445,0.349417288,8.408500229,22,26164,,,128.3795143,168,130862,108.966313,147.7927156,,,,,,,,,,,,,127.0188358,107.2128868,146.8247847,,,,7.5,,,,,0,,,,,0.137738483,1480,10745,0.109973244,0.165503723,0.109640288,0.087539953,0.131740623,0.026430898,0.014108089,0.038753708,0.008841322,0.002449222,0.015233421,0.741025994,5388,7271,0.691173466,0.790878521,,,,,,,,,,,,,0.763838796,0.731211373,0.796466219,0.302,,7271,0.243483436,0.360516565,66.96170173,,,65.91415422,68.00924925,,,,,,,,,,,,,66.83208246,65.76056373,67.9036012,,,,944.4311076,952,72211,880.3898306,1008.472385,,,,,,,1324.7244,797.5706257,2068.721247,,,,950.2088925,884.7060349,1015.71175,,,,73.14162528,19,25977,44.03603636,114.2197081,,,,,,,,,,,,,74.61139896,44.21944365,117.9181773,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.196,,,0.167,0.226,0.235,,,0.205,0.267,0.142,,,0.122,0.165,50.5,11,21797,,,0.23,6190,,,,0.028961983,847.9489503,29278,,,55.3125804,43,77740,40.0299887,74.5056828,,,,,,,,,,,,,55.48863836,39.81960491,75.27660351,,,,0.41,,,0.39,0.428,0.088251037,1319,14946,0.072761675,0.103740399,0.02912314,184,6318,0.019591225,0.038655055,0.001324916,34,25662,,,754.7647059,0.907651246,255.05,281,,,0.210185934,260,1237,0.110046351,0.310325516,3.277788235,,,,,,,,,3.274182529,2.995846856,,,,,,,,,2.991664268,0.093103144,,,,,-13009.11,,,,,0.738760883,32159,43531,0.638036581,0.839485185,36022,,,31245.31915,40798.68085,,,,42902,13880.89362,71923.10638,,,,,,,35514,32263.61702,38764.38298,,,,,,0.78992193,3339,4227,,,42.81931622,,,,,0.355033035,,36022,,,3.6877689,6,1627,,,5.384072836,10,185733,2.581872202,9.901501641,,,,,,,,,,,,,5.663476242,2.715856995,10.41533445,,,,18.35582838,27,130862,11.7609256,27.31201761,20.63242194,,,,,,,,,,,,,18.25923363,11.44296451,27.64469915,,,,18.33993061,24,130862,11.7507396,27.288363,,,,,,,,,,,,,18.49008369,11.72112696,27.74420408,,,,25.84354961,48,185733,19.05499336,34.26479742,,,,,,,,,,,,,23.78660022,17.1432892,32.15257336,,,,13.07692308,,2600,,,13,21,0.54298441,10971,20205,,,0.439,,,,,14.00404602,,,,,0.68870261,7230,10498,0.656782961,0.720622259,0.108776006,1030,9469,0.082561733,0.134990279,0.795389598,8350,10498,0.764598342,0.826180855,25662,,,,,0.236731354,6075,25662,,,0.195347206,5013,25662,,,0.019639935,504,25662,,,0.002571896,66,25662,,,0.004832047,124,25662,,,0.000857299,22,25662,,,0.01122282,288,25662,,,0.949692152,24371,25662,,,0.002597818,65,25021,0,0.007025669,0.517847401,13289,25662,,,0.770899333,20684,26831,, -21,097,21097,KY,Harrison County,2024,1,11776.71716,418,52689,10073.28732,13480.14699,0,,,,2,,,,2,,,,2,,,,2,12138.16937,10339.43496,13936.90377,,,,,2,,0.213,,,0.18,0.251,4.721047964,,,3.757046647,5.82512229,5.652101682,,,4.48162098,6.948890399,0.075517661,124,1642,0.062737302,0.088298021,0,,,,,,,,,,,,,0.077419355,0.064114285,0.090724425,,,,,,,0.225,,,0.179,0.276,0.415,,,0.331,0.499,7.7,0.046568166,0.126,,,0.289,,,0.235,0.347,0.570243955,10659,18692,,,0.142764714,,,0.112046281,0.177645915,0.166666667,2,12,0.039062389,0.344663233,200.5,38,18950,,,32.56655467,126,3869,26.88008647,38.25302286,,,,,,,,,,,,,32.36797274,26.42615748,38.30978801,,,,,,,0.064975208,1009,15529,0.054251803,0.075698612,0.000527705,10,18950,,,1895,0.000366435,7,19103,,,2729,0.000628174,12,19103,,,1591.916667,2048,,,,,,,,,2014,0.35,,,,,,,0.5,,0.34,0.49,,,,,,,0.45,,0.49,0.865470164,11284,13038,0.841501057,0.889439271,0.517429452,2182,4217,0.425134461,0.609724443,0.032619776,288,8829,,,0.189,800,,0.119893617,0.258106383,,,,,,,,,,0.257894737,0,0.617960791,0.171421025,0.102387116,0.240454933,5.168065633,108979,21087,3.562286264,6.773845002,0.142022892,608,4281,0.077428591,0.206617193,8.970976253,17,18950,,,126.1729311,119,94315,103.503074,148.8427883,,,,,,,,,,,,,128.2124014,104.5724334,151.8523694,,,,8.4,,,,,0,,,,,0.131103679,980,7475,0.092889239,0.169318119,0.099931927,0.066023605,0.133840248,0.02541806,0.008598766,0.042237354,0.008695652,0,0.018721901,0.831044123,6837,8227,0.801247732,0.860840514,,,,,,,,,,,,,0.814671815,0.771444881,0.857898749,0.438,,8227,0.361772612,0.514227389,73.13616354,,,71.90292281,74.36940427,,,,,,,,,,,,,72.81671847,71.53902698,74.09440997,,,,584.1268822,418,52689,524.6659481,643.5878162,,,,,,,,,,,,,594.519444,532.6368326,656.4020554,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.141,,,0.12,0.164,0.193,,,0.166,0.222,0.107,,,0.091,0.125,,,,,,0.126,2360,,,,0.046568166,877.6236615,18846,,,59.90556065,34,56756,41.48634221,83.71201652,,,,,,,,,,,,,62.25005659,42.85007465,87.42222378,,,,0.374,,,0.354,0.393,0.073396126,826,11254,0.059098254,0.087693998,0.043826474,197,4495,0.029528602,0.058124346,0.001099304,21,19103,,,909.6666667,0.94,213.38,227,,,,,,,,3.022443409,,,,,,,,,3.004597968,2.893464257,,,,,,,,,2.890694994,0.015485025,,,,,374.3193,,,,,0.743622791,44427,59744,0.60317708,0.884068502,60962,,,53152.97872,68771.02128,,,,,,,13205,11091.29787,15318.70213,,,,60912,55888.68085,65935.31915,,,,,,0.565752461,1609,2844,,,27.25332734,,,,,0.238804501,,60962,,,5.912162162,7,1184,,,,,,,,,,,,,,,,,,,,,,,,,,17.02231654,18,94315,9.916126679,27.25437776,19.08498118,,,,,,,,,,,,,16.11851352,9.02140966,26.58503683,,,,16.96442772,16,94315,9.696636223,27.54916779,,,,,,,,,,,,,13.61547626,7.035315265,23.78349696,,,,22.01572986,29,131724,14.74427981,31.61826048,,,,,,,,,,,,,22.7383466,15.10946618,32.86324179,,,,6.5,,2000,,,8,5,0.614365024,8853,14410,,,0.687,,,,,21.55941631,,,,,0.70621314,5149,7291,0.663024206,0.749402073,0.122276376,853,6976,0.084938082,0.15961467,0.744890962,5431,7291,0.702430314,0.787351609,19103,,,,,0.226299534,4323,19103,,,0.186462859,3562,19103,,,0.018949903,362,19103,,,0.003245564,62,19103,,,0.003350259,64,19103,,,0.000732869,14,19103,,,0.025964508,496,19103,,,0.932418992,17812,19103,,,0,0,17562,0,0.0051562,0.505156258,9650,19103,,,0.657982024,12299,18692,, -21,099,21099,KY,Hart County,2024,1,10511.43429,394,53671,8899.368444,12123.50014,0,,,,2,,,,2,7607.126026,3284.21708,14989.07087,1,,,,2,10598.70112,8913.993455,12283.40879,,,,,2,,0.257,,,0.22,0.298,5.30093516,,,4.251672216,6.405344767,6.353456448,,,5.13419817,7.579894132,0.0786268,142,1806,0.066213127,0.091040472,0,,,,,,,,,,,,,0.074180564,0.061863293,0.086497834,,,,,,,0.27,,,0.222,0.319,0.386,,,0.308,0.469,7.3,0.04533307,0.143,,,0.344,,,0.288,0.403,0.292720863,5646,19288,,,0.134714838,,,0.10569912,0.167046919,0.193548387,6,31,0.104538512,0.296792565,200.4,39,19460,,,33.18214371,139,4189,27.66577723,38.69851019,,,,,,,,,,,,,34.72038166,28.77465535,40.66610797,,,,,,,0.079150579,1271,16058,0.066044196,0.092256962,0.000256937,5,19460,,,3892,0.000255102,5,19600,,,3920,0.001020408,20,19600,,,980,3211,,,,,,,7891,,3039,0.32,,,,,,,0.57,,0.31,0.37,,,,,,,0.37,,0.37,0.783964365,10208,13021,0.756463138,0.811465593,0.362403977,1604,4426,0.289613677,0.435194276,0.039307562,302,7683,,,0.241,1129,,0.156404255,0.325595745,,,,,,,0.966480447,0.318286243,1,0.132530121,0,0.349624251,0.258870565,0.190853506,0.326887624,5.288068248,90500,17114,4.31630036,6.259836137,0.196451204,930,4734,0.136059756,0.256842652,10.79136691,21,19460,,,87.21144046,83,95171,69.46342552,108.1117019,,,,,,,,,,,,,88.56784642,69.89635935,110.6946117,,,,8.3,,,,,0,,,,,0.119917298,870,7255,0.092332522,0.147502075,0.086115007,0.062103858,0.110126156,0.026188835,0.012086746,0.040290924,0.015851137,0.004581803,0.027120471,0.791530945,6075,7675,0.746042943,0.837018946,,,,,,,,,,,,,0.806062694,0.746466968,0.865658419,0.354,,7675,0.28871769,0.41928231,73.55823189,,,72.35786975,74.75859403,,,,,,,,,,,,,73.39328273,72.15532553,74.63123993,,,,548.9450335,394,53671,491.8310438,606.0590233,,,,,,,491.6230108,295.9891675,767.7302297,,,,553.02712,493.0871003,612.9671398,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.163,,,0.141,0.188,0.212,,,0.184,0.24,0.122,,,0.104,0.141,62.2,10,16084,,,0.143,2750,,,,0.04533307,825.0165435,18199,,,22.60555053,13,57508,12.0365036,38.65617987,,,,,,,,,,,,,24.76143312,13.18442028,42.34280474,,,,0.414,,,0.396,0.431,0.094417582,1074,11375,0.076545242,0.112289923,0.043098191,212,4919,0.028800318,0.057396063,0.001020408,20,19600,,,980,0.975,130.65,134,,,0.151416122,139,918,0.056504141,0.246328103,3.019991109,,,,,,,,,3.042728487,2.841810282,,,,,,,,,2.838849201,0.086935696,,,,,-3453.604,,,,,0.716417321,36250,50599,0.605844771,0.82698987,47229,,,40483.97872,53974.02128,,,,,,,,,,83366,64659.61702,102072.383,44411,39583.08511,49238.91489,,,,,,0.596762048,1585,2656,,,31.96643262,,,,,0.270787017,,47229,,,2.276176024,3,1318,,,,,,,,,,,,,,,,,,,,,,,,,,11.27463383,13,95171,5.825767823,19.69451632,13.65962321,,,,,,,,,,,,,10.93430602,5.45836617,19.56449384,,,,11.55814271,11,95171,5.769783198,20.68071,,,,,,,,,,,,,11.50231772,5.515808436,21.15317181,,,,29.48915706,39,132252,20.96967342,40.31264848,,,,,,,,,,,,,28.94834788,20.16358497,40.26014422,,,,14.5,,2000,,,17,12,0.593335697,8369,14105,,,0.613,,,,,9.328279639,,,,,0.737046812,5306,7199,0.706860692,0.767232932,0.114592399,790,6894,0.085542828,0.14364197,0.803028198,5781,7199,0.767530037,0.838526359,19600,,,,,0.243112245,4765,19600,,,0.173367347,3398,19600,,,0.041428571,812,19600,,,0.002602041,51,19600,,,0.005,98,19600,,,0.000510204,10,19600,,,0.021530612,422,19600,,,0.913469388,17904,19600,,,0.003708419,67,18067,0,0.009529818,0.502806122,9855,19600,,,0.883243467,17036,19288,, -21,101,21101,KY,Henderson County,2024,1,9995.626451,899,124266,8945.478587,11045.77432,0,,,,2,,,,2,10153.05829,6746.633498,14673.99611,,,,,2,10240.79048,9087.445441,11394.13552,,,,,2,,0.211,,,0.182,0.244,4.602522364,,,3.77468291,5.543252567,5.785382209,,,4.793351421,6.908166309,0.118380926,427,3607,0.107837922,0.12892393,0,,,,,,,0.177777778,0.138283138,0.217272418,0.111111111,0.062716049,0.159506173,0.10990099,0.098764336,0.121037644,,,,,,,0.221,,,0.181,0.264,0.376,,,0.31,0.451,7.6,0.031962641,0.137,,,0.288,,,0.244,0.339,0.639698167,28654,44793,,,0.148724618,,,0.120687774,0.180493185,0.189189189,7,37,0.108031103,0.282799629,516.6,229,44329,,,38.177735,357,9351,34.21739819,42.13807181,,,,,,,45.50898204,32.20486425,62.46463344,44.56824513,25.47460294,72.37603788,38.7374462,34.33180796,43.14308444,,,,,,,0.061607092,2182,35418,0.052075178,0.071139007,0.000518848,23,44329,,,1927.347826,0.000522181,23,44046,,,1915.043478,0.001521137,67,44046,,,657.4029851,3826,,,,,,,1866,,3919,0.47,,,,,,,0.43,,0.47,0.5,,,,,,,0.35,0.36,0.51,0.892625595,27949,31311,0.875826055,0.909425135,0.57325414,6370,11112,0.516277205,0.630231075,0.03771858,783,20759,,,0.238,2302,,0.176042553,0.299957447,,,,,,,0.804545455,0.746656866,0.862434043,0.161165049,0,0.323613407,0.226332691,0.177545975,0.275119407,5.188301171,112114,21609,4.533860646,5.842741696,0.287804389,2872,9979,0.232620228,0.34298855,12.85839969,57,44329,,,77.0600271,174,225798,65.60989217,88.51016204,,,,,,,54.52562705,26.14715756,100.2745695,,,,82.74189155,69.96078138,95.52300172,,,,9,,,,,0,,,,,0.129530917,2430,18760,0.105643509,0.153418324,0.121727395,0.097990175,0.145464616,0.010127932,0.004381556,0.015874308,0.005863539,8.53289E-05,0.01164175,0.821056451,15839,19291,0.792044608,0.850068294,,,,,,,0.785142025,0.65248254,0.91780151,,,,0.822939159,0.795883986,0.849994333,0.282,,19291,0.243080041,0.320919959,74.31463828,,,73.50256945,75.12670711,,,,,,,74.00829048,71.03885391,76.97772705,,,,74.0789748,73.20270357,74.95524603,,,,519.8071077,899,124266,484.0308356,555.5833798,,,,,,,515.760428,394.5158603,662.5158465,,,,530.8350267,492.3379686,569.3320849,,,,60.28804287,27,44785,39.73020014,87.71593713,,,,,,,,,,,,,58.63792478,36.29779964,89.63429686,,,,8.880516685,33,3716,6.112939067,12.47154717,,,,,,,,,,,,,8.26183667,5.396906011,12.10550495,,,,,,,0.137,,,0.12,0.157,0.193,,,0.168,0.221,0.107,,,0.093,0.125,184.8,69,37340,,,0.137,6200,,,,0.031962641,1478.272121,46250,,,11.91548939,16,134279,6.810731726,19.35000827,,,,,,,,,,,,,13.00480311,7.278689578,21.44944502,,,,0.384,,,0.366,0.401,0.070582681,1794,25417,0.058667787,0.082497575,0.040281878,423,10501,0.028366984,0.052196772,0.001316805,58,44046,,,759.4137931,0.87,462.84,532,,,,,,,,3.267774121,,,,,,,2.619188956,2.963805667,3.353818783,3.337245245,,,,,,,2.569868723,3.436425399,3.419855148,0.036967086,,,,,2173.282,,,,,0.871694952,44738,51323,0.769051635,0.974338269,55530,,,48577.65957,62482.34043,,,,,,,35297,19682.53192,50911.46809,36674,21197.74468,52150.25532,59754,54734.25532,64773.74468,,,,,,0.529208633,3678,6950,,,44.95418302,,,,,0.286475779,,55530,,,6.125574273,16,2612,,,3.76815781,12,318458,1.947062127,6.582213368,,,,,,,,,,,,,,,,,,,20.31299346,45,225798,14.63981898,27.45726613,19.92931735,,,,,,,,,,,,,22.83842757,16.38924993,30.98290582,,,,16.82920132,38,225798,11.90934448,23.09939367,,,,,,,,,,,,,17.98736773,12.52886068,25.01607422,,,,12.87453919,41,318458,9.2389916,17.46576615,,,,,,,,,,,,,13.07369935,9.156658296,18.09951064,,,,35.625,,4800,,,77,94,0.593544685,20688,34855,,,0.685,,,,,71.96430855,,,,,0.642329779,11745,18285,0.614915343,0.669744214,0.133743926,2367,17698,0.104255361,0.163232491,0.865791633,15831,18285,0.844387491,0.887195775,44046,,,,,0.223629842,9850,44046,,,0.194410389,8563,44046,,,0.081528402,3591,44046,,,0.004154747,183,44046,,,0.00597103,263,44046,,,0.001271398,56,44046,,,0.032011988,1410,44046,,,0.855015211,37660,44046,,,0.003547861,150,42279,0,0.007387898,0.508672751,22405,44046,,,0.365302614,16363,44793,, -21,103,21103,KY,Henry County,2024,1,11614.7656,328,44604,9680.835701,13548.69549,0,,,,2,,,,2,,,,2,,,,2,11741.066,9707.50639,13774.62561,,,,,2,,0.228,,,0.195,0.266,4.920697113,,,3.963937189,5.988660014,6.01116875,,,4.804536366,7.320541184,0.081790124,106,1296,0.066869912,0.096710335,0,,,,,,,,,,,,,0.083263947,0.0676384,0.098889493,,,,,,,0.241,,,0.195,0.288,0.403,,,0.317,0.489,8,0.011715639,0.127,,,0.313,,,0.255,0.371,0.210422248,3299,15678,,,0.142557329,,,0.111119333,0.176789461,0.166666667,2,12,0.039062389,0.344663233,319.3,50,15657,,,29.00232019,100,3448,23.31786543,34.68677494,,,,,,,,,,,,,30.20354563,24.34832067,37.0419675,,,,,,,0.088797069,1139,12827,0.074499196,0.103094941,0.000574823,9,15657,,,1739.666667,0.000380445,6,15771,,,2628.5,0.000570668,9,15771,,,1752.333333,2366,,,,,,,,,2403,0.46,,,,,,,0.67,,0.45,0.44,,,,,,,0.44,,0.44,0.84159333,9085,10795,0.815769934,0.867416727,0.485587583,1752,3608,0.406125867,0.565049299,0.035779929,292,8161,,,0.183,648,,0.115085106,0.250914894,,,,,,,,,,0.292929293,0.093276741,0.492581845,0.227027027,0.159603702,0.294450352,4.726474911,112561,23815,4.002652957,5.450296864,0.234974164,864,3677,0.167947969,0.302000358,10.8577633,17,15657,,,121.3076211,97,79962,98.37230881,147.9850103,,,,,,,,,,,,,126.4187759,101.911376,155.0414063,,,,8.8,,,,,0,,,,,0.163281885,1005,6155,0.122784667,0.203779102,0.127153404,0.086389901,0.167916907,0.034768481,0.020982508,0.048554454,0.007311129,0.000693571,0.013928687,0.753390696,5166,6857,0.712529813,0.794251578,,,,,,,,,,,,,0.702489019,0.643422044,0.761555994,0.474,,6857,0.410862305,0.537137695,73.38294387,,,71.96709812,74.79878961,,,,,,,,,,,,,73.09290488,71.63464244,74.55116733,,,,542.4468757,328,44604,480.2614591,604.6322923,,,,,,,,,,,,,550.4146367,485.3690374,615.460236,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.149,,,0.127,0.171,0.199,,,0.17,0.226,0.111,,,0.094,0.13,106.1,14,13190,,,0.127,2000,,,,0.011715639,180.6082855,15416,,,52.24660397,25,47850,33.81124733,77.12629404,,,,,,,,,,,,,55.21811154,35.37928597,82.160173,,,,0.386,,,0.368,0.402,0.0979254,911,9303,0.08005306,0.115797741,0.065757819,246,3741,0.0455025,0.086013138,0.00050726,8,15771,,,1971.375,0.843664384,246.35,292,,,0.134054054,124,925,0.049418802,0.218689307,2.865599803,,,,,,,,,2.880605173,2.909955648,,,,,,,,,2.938463019,0.033819752,,,,,207.56955,,,,,0.848557289,40466,47688,0.717039862,0.980074716,65068,,,56651.31915,73484.68085,,,,119688,111161.7021,128214.2979,56042,28214.76596,83869.23404,86250,64892.55319,107607.4468,57231,52028.95745,62433.04255,,,,,,0.4930058,1445,2931,,,40.86253573,,,,,0.223735169,,65068,,,10.94091904,10,914,,,,,,,,,,,,,,,,,,,,,,,,,,13.05123604,11,79962,6.258574975,24.00168775,13.75653435,,,,,,,,,,,,,12.57048126,5.748024487,23.86268906,,,,15.00712839,12,79962,7.754402227,26.21443317,,,,,,,,,,,,,16.48940556,8.520316471,28.80367308,,,,20.64631957,23,111400,13.08799555,30.9796166,,,,,,,,,,,,,21.65908599,13.57363388,32.79211647,,,,13.33333333,,1800,,,9,15,0.671665286,8107,12070,,,0.697,,,,,11.39523958,,,,,0.743227522,4472,6017,0.707297707,0.779157337,0.135398836,791,5842,0.091014545,0.179783127,0.797739737,4800,6017,0.755186833,0.840292642,15771,,,,,0.230105891,3629,15771,,,0.188510557,2973,15771,,,0.025870268,408,15771,,,0.004818972,76,15771,,,0.005009194,79,15771,,,0.000951113,15,15771,,,0.039439478,622,15771,,,0.904761905,14269,15771,,,0.005123365,76,14834,0,0.01136107,0.498002663,7854,15771,,,1,15678,15678,, -21,105,21105,KY,Hickman County,2024,1,11920.95816,99,11573,7921.390125,17229.10366,0,,,,2,,,,2,,,,2,,,,2,9966.461795,6317.881845,14954.58618,1,,,,2,,0.232,,,0.195,0.268,4.883259096,,,3.888212656,5.913443543,5.783801119,,,4.58520757,7.054926503,0.080882353,22,272,0.04847944,0.113285266,1,,,,,,,,,,,,,0.055555556,0.02500767,0.086103441,,,,,,,0.235,,,0.185,0.284,0.389,,,0.308,0.475,7.8,0.012498227,0.136,,,0.315,,,0.256,0.374,0.505861535,2287,4521,,,0.12485352,,,0.097465048,0.156731943,0.25,1,4,0.023230216,0.544021398,158.2,7,4424,,,33.52601156,29,865,22.45289611,48.14894502,,,,,,,,,,,,,21.86588921,12.23817221,36.064459,,,,,,,0.091424969,290,3172,0.075935607,0.10691433,,0,4424,,,,0.000226142,1,4422,,,4422,,0,4422,,,,3698,,,,,,,,,4045,0.4,,,,,,,,,0.43,0.42,,,,,,,0.37,,0.42,0.883735124,2896,3277,0.837878729,0.929591518,0.637634409,593,930,0.441781666,0.833487151,0.042822678,71,1658,,,0.271,227,,0.166148936,0.375851064,,,,,,,0.746835443,0.360541156,1,0.052631579,0,0.462190784,0.31625183,0.165937441,0.466566219,4.259236805,119429,28040,3.124852945,5.393620664,0.232662192,208,894,0.055694953,0.409629432,11.30198915,5,4424,,,113.0761229,25,22109,73.17690464,166.9226636,,,,,,,,,,,,,121.0844959,76.75718366,181.6861958,,,,8,,,,,0,,,,,0.066666667,115,1725,0.023650215,0.109683119,0.035587189,0,0.075224553,0.013913044,0,0.038505589,0.017391304,0,0.041255258,0.719889503,1303,1810,0.60427667,0.835502335,,,,,,,,,,,,,0.690756303,0.596220221,0.785292384,0.208,,1810,0.117713719,0.298286281,73.58207146,,,70.42522245,76.73892048,,,,,,,,,,,,,74.67613889,71.66997809,77.6822997,,,,542.6829692,99,11573,428.9683672,677.2929057,,,,,,,,,,,,,508.3451692,393.9605237,645.5803954,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.149,,,0.126,0.171,0.196,,,0.167,0.225,0.117,,,0.099,0.138,,,,,,0.136,620,,,,0.012498227,61.26630818,4902,,,,,,,,,,,,,,,,,,,,,,,,,,0.399,,,0.379,0.418,0.101066098,237,2345,0.082002268,0.120129928,0.067198178,59,878,0.046942859,0.087453497,0.000452284,2,4422,,,2211,,,,,,,,,,,3.078861435,,,,,,,,,3.113731345,2.797854223,,,,,,,,,2.924343215,0.004724811,,,,,-2784.677,,,,,0.476167997,32278,67787,0.283665514,0.66867048,53838,,,45772.80851,61903.19149,,,,,,,29375,5006.659575,53743.34043,,,,77961,59761,96161,,,,,,0.586898396,439,748,,,,,,,,0.237545971,,53838,,,9.389671362,2,213,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,400,,,-888,0,0.615966387,2199,3570,,,0.623,,,,,1.414731042,,,,,0.768044417,1245,1621,0.724789703,0.811299131,0.042372881,65,1534,0,0.084945176,0.890808143,1444,1621,0.848237589,0.933378697,4422,,,,,0.192672999,852,4422,,,0.260967888,1154,4422,,,0.087064677,385,4422,,,0.002487562,11,4422,,,0.00565355,25,4422,,,0.000226142,1,4422,,,0.02351877,104,4422,,,0.859565807,3801,4422,,,0.002096925,9,4292,0,0.01525912,0.526232474,2327,4422,,,1,4521,4521,, -21,107,21107,KY,Hopkins County,2024,1,11247.11277,1021,124126,10156.18382,12338.04172,0,,,,2,,,,2,16158.12053,11316.94897,22369.64967,,,,,2,10700.88426,9588.170247,11813.59828,,,,,2,,0.223,,,0.192,0.26,4.824163276,,,3.969438188,5.814833697,5.841068127,,,4.8642178,6.941543703,0.089147287,322,3612,0.079854193,0.098440381,0,,,,,,,0.179039301,0.129383076,0.228695526,0.113636364,0.059494433,0.167778294,0.079756566,0.070253271,0.089259861,,,,0.138297872,0.068510238,0.208085507,0.236,,,0.193,0.28,0.411,,,0.348,0.477,6.9,0.073507127,0.152,,,0.309,,,0.259,0.363,0.676925787,30748,45423,,,0.137990485,,,0.111084906,0.168378364,0.133333333,4,30,0.053844778,0.239139348,358.9,162,45138,,,37.44814441,334,8919,33.43196467,41.46432415,,,,,,,42.00323102,27.43790503,61.5444654,87.71929825,53.58122625,135.4753417,36.91320048,32.55824989,41.26815107,,,,22.68041237,11.32198014,40.58152271,0.062836077,2267,36078,0.053304163,0.072367992,0.000996943,45,45138,,,1003.066667,0.00049094,22,44812,,,2036.909091,0.001338927,60,44812,,,746.8666667,3031,,,,,,,5550,,2944,0.4,,,,,,,0.31,,0.41,0.43,,,,,,,0.35,,0.44,0.885839806,27826,31412,0.871965954,0.899713659,0.559721968,6120,10934,0.503278445,0.616165491,0.043540172,795,18259,,,0.281,2825,,0.222617021,0.339382979,,,,,,,0.605839416,0.536414446,0.675264386,0.42172524,0.203110032,0.640340447,0.257762085,0.20770498,0.307819189,4.830228137,101628,21040,3.833985258,5.826471016,0.297286822,3068,10320,0.225544537,0.369029107,17.94496876,81,45138,,,92.84721081,209,225101,80.25935411,105.4350675,,,,,,,67.31287022,32.2791377,123.790765,,,,95.23857515,81.66050467,108.8166456,,,,8.6,,,,,0,,,,,0.115735768,2155,18620,0.093753198,0.137718338,0.098342541,0.077500104,0.119184979,0.024973147,0.011508944,0.038437351,0.006713212,0.001731394,0.011695029,0.898967676,15936,17727,0.880103124,0.917832228,,,,,,,0.898238748,0.788144591,1,,,,0.892740646,0.872309947,0.913171345,0.256,,17727,0.218340642,0.293659358,72.7517397,,,71.96703686,73.53644254,,,,,,,69.045597,65.65341871,72.43777529,,,,73.01428758,72.20823341,73.82034175,,,,589.1797999,1021,124126,551.0738096,627.2857902,,,,,,,743.9459144,579.9423372,939.9309073,,,,580.7756929,541.1930121,620.3583737,,,,47.20692368,21,44485,29.22182979,72.16079743,,,,,,,,,,,,,40.82076961,22.84707487,67.32765164,,,,5.437737901,20,3678,3.321511578,8.398145161,,,,,,,,,,,,,,,,,,,,,,0.148,,,0.128,0.169,0.195,,,0.17,0.221,0.113,,,0.097,0.13,81.9,31,37829,,,0.152,6920,,,,0.073507127,3448.954389,46920,,,13.38429279,18,134486,7.932380159,21.15295292,,,,,,,,,,,,,12.67052414,7.091596176,20.89810269,,,,0.397,,,0.379,0.414,0.07212324,1854,25706,0.059016857,0.085229623,0.040633926,441,10853,0.027527543,0.053740309,0.001428189,64,44812,,,700.1875,0.877148515,442.96,505,,,0.102788181,247,2403,0.048114494,0.157461869,3.192680902,,,,,,,3.117682515,,3.233270269,3.162177013,,,,,,,2.869010371,,3.20697179,0.047145263,,,,,-6251.9355,,,,,0.764311453,41149,53838,0.696102959,0.832519946,52198,,,48008.7234,56387.2766,51445,50360.74468,52529.25532,,,,50154,26000.12766,74307.87234,,,,54871,51227.42553,58514.57447,,,,,,0.589086222,4113,6982,,,38.99607329,,,,,0.245009387,,52198,,,8.550185874,23,2690,,,,,,,,,,,,,,,,,,,,,,,,,,24.82749633,55,225101,18.54236178,32.5579583,24.43347653,,,,,,,,,,,,,26.64232417,19.71013809,35.22256547,,,,19.54678122,44,225101,14.20272116,26.24064144,,,,,,,,,,,,,21.16412781,15.25324176,28.60775251,,,,18.59866909,59,317227,14.15816864,23.99092806,,,,,,,,,,,,,18.20115488,13.55195532,23.9311573,,,,9.787234043,,4700,,,26,20,0.623539643,21509,34495,,,0.677,,,,,28.93922516,,,,,0.699318615,12829,18345,0.672767857,0.725869374,0.091961377,1581,17192,0.069852104,0.114070651,0.847642409,15550,18345,0.826010571,0.869274247,44812,,,,,0.228510221,10240,44812,,,0.19113184,8565,44812,,,0.065361957,2929,44812,,,0.002767116,124,44812,,,0.006516112,292,44812,,,0.001004195,45,44812,,,0.023788271,1066,44812,,,0.876260823,39267,44812,,,0.004393178,187,42566,0.000712527,0.008073829,0.508792288,22800,44812,,,0.530458138,24095,45423,, -21,109,21109,KY,Jackson County,2024,1,13746.02983,363,36988,11561.43243,15930.62723,0,,,,2,,,,2,,,,2,,,,2,14021.95418,11790.27448,16253.63388,,,,,2,,0.3,,,0.254,0.348,6.017930247,,,4.911497244,7.241934683,6.492876975,,,5.30332147,7.837138932,0.0969163,110,1135,0.079704727,0.114127872,0,,,,,,,,,,,,,0.098039216,0.08063905,0.115439381,,,,,,,0.312,,,0.256,0.365,0.427,,,0.346,0.51,6.4,0.037033235,0.191,,,0.377,,,0.313,0.442,0.670860672,8691,12955,,,0.125398574,,,0.097529619,0.156812813,0.125,3,24,0.040232942,0.245512437,223.4,29,12984,,,47.36842105,117,2470,38.78516539,55.95167672,,,,,,,,,,,,,48.07293825,39.32455614,56.82132037,,,,,,,0.080701097,861,10669,0.067594714,0.09380748,0.000231054,3,12984,,,4328,0.000308333,4,12973,,,3243.25,0.00023125,3,12973,,,4324.333333,3507,,,,,,,,,3510,0.26,,,,,,,,,0.26,0.26,,,,,,,,,0.26,0.729959202,6620,9069,0.687055251,0.772863152,0.367665816,1153,3136,0.26342317,0.471908463,0.056494447,234,4142,,,0.321,950,,0.197085106,0.444914894,,,,,,,,,,0.14516129,0,0.821223056,0.187099073,0.099796079,0.274402068,4.794510103,75456,15738,2.877761598,6.711258608,0.197787462,590,2983,0.106217719,0.289357205,0,0,12984,,,118.7505637,79,66526,94.01593957,147.9986339,,,,,,,,,,,,,121.4898656,96.18467069,151.4126214,,,,7.9,,,,,0,,,,,0.121883657,660,5415,0.076438487,0.167328826,0.088910134,0.051337682,0.126482586,0.015512465,0,0.032194575,0.031394275,0.006174816,0.056613734,0.744501638,3182,4274,0.649999323,0.839003952,,,,,,,,,,,,,0.665610143,0.561832516,0.769387769,0.634,,4274,0.512246343,0.755753657,70.92588978,,,69.4572327,72.39454685,,,,,,,,,,,,,70.6419244,69.16032344,72.12352536,,,,706.3826391,363,36988,630.1110523,782.6542258,,,,,,,,,,,,,719.2888211,641.5769952,797.0006471,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.19,,,0.162,0.22,0.229,,,0.198,0.261,0.135,,,0.114,0.155,147.8,16,10825,,,0.191,2490,,,,0.037033235,499.7264741,13494,,,,,,,,,,,,,,,,,,,,,,,,,,0.4,,,0.38,0.418,0.093936253,725,7718,0.077255402,0.110617104,0.046859746,144,3073,0.031370385,0.062349108,0.000770832,10,12973,,,1297.3,0.875,101.5,116,,,,,,,,3.153994602,,,,,,,,,3.164454028,2.87812456,,,,,,,,,2.874486715,0.052399746,,,,,-8719.963,,,,,0.633029137,32394,51173,0.462129704,0.80392857,41007,,,34978.06383,47035.93617,,,,,,,,,,,,,38281,27655.29787,48906.70213,,,,,,0.724459725,1475,2036,,,,,,,,0.311873583,,41007,,,3.764115433,3,797,,,12.86918474,12,93246,6.649695546,22.47987586,,,,,,,,,,,,,13.15731766,6.798578033,22.9831861,,,,23.09752779,15,66526,12.62763337,38.7537269,22.54757538,,,,,,,,,,,,,23.56996396,12.88591863,39.54639453,,,,34.57294892,23,66526,21.91628392,51.87639854,,,,,,,,,,,,,35.3704672,22.42184209,53.07306753,,,,27.8832336,26,93246,18.21425393,40.85539764,,,,,,,,,,,,,28.5075216,18.62205958,41.77012421,,,,,,1300,,,5,-888,0.58948891,6113,10370,,,0.448,,,,,0.317235936,,,,,0.79064804,4075,5154,0.736770253,0.844525828,0.111087734,528,4753,0.06771287,0.154462598,0.829646876,4276,5154,0.779696276,0.879597477,12973,,,,,0.232559932,3017,12973,,,0.180682957,2344,12973,,,0.004547907,59,12973,,,0.002466662,32,12973,,,0.001772913,23,12973,,,0.000539582,7,12973,,,0.013489555,175,12973,,,0.968781315,12568,12973,,,0.001802097,22,12208,0,0.009516128,0.498265629,6464,12973,,,1,12955,12955,, -21,111,21111,KY,Jefferson County,2024,1,11786.20953,13997,2157607,11505.27148,12067.14758,0,,,,2,4051.053465,3164.057192,4938.049737,,17937.25762,17209.63689,18664.87836,,6157.499364,5375.302471,6939.696256,,10763.68363,10429.19099,11098.17628,,,,,2,,0.193,,,0.167,0.221,3.92984729,,,3.248370983,4.65520769,5.709932654,,,4.964729373,6.487212284,0.093423497,6286,67285,0.091224487,0.095622507,0,0.135416667,0.066968796,0.203864538,0.094364351,0.08399278,0.104735922,0.142449505,0.137325404,0.147573606,0.072439088,0.066624249,0.078253927,0.07274275,0.070075247,0.075410254,,,,0.104166667,0.089959333,0.118374,0.182,,,0.146,0.217,0.373,,,0.334,0.413,8.1,0.064809967,0.1,,,0.279,,,0.241,0.318,0.918972526,719527,782969,,,0.16115139,,,0.135461328,0.188293564,0.289772727,153,528,0.268056129,0.311738344,748.7,5824,777874,,,20.58616529,3276,159136,19.88121324,21.29111735,,,,6.053505175,4.11306307,8.59246739,31.53193997,29.87486104,33.18901891,44.90965949,41.03841534,48.78090364,12.51322985,11.78523625,13.24122345,,,,23.42294384,19.96242503,26.88346265,0.065456742,41289,630783,0.059499295,0.071414189,0.000915315,712,777874,,,1092.519663,0.001058962,819,773399,,,944.3211233,0.003836312,2967,773399,,,260.6670037,3046,,,,,,1836,4512,996,2842,0.48,,,,,,0.3,0.4,0.33,0.49,0.53,,,,,,0.52,0.38,0.35,0.55,0.912970937,493574,540624,0.908846105,0.917095769,0.703807884,150377,213662,0.687357158,0.720258609,0.037742193,14929,395552,,,0.2,33169,,0.170212766,0.229787234,0.382352941,0,0.807013985,0.16462841,0.11264044,0.21661638,0.381181319,0.351186939,0.411175698,0.263585819,0.217959534,0.309212105,0.11236124,0.096390373,0.128332107,4.66153955,131833,28281,4.522009214,4.801069885,0.339824732,57934,170482,0.321336328,0.358313137,9.821642065,764,777874,,,124.0347733,4780,3853758,120.5184761,127.5510706,,,,31.25448755,22.00604358,43.08019407,151.5173004,143.2231046,159.8114962,59.34096621,49.3676123,69.31432012,128.4739529,124.0831977,132.864708,,,,10.5,,,,,0,,,,,0.137685282,43565,316410,0.131311163,0.144059401,0.115332364,0.109586343,0.121078385,0.019405202,0.016616837,0.022193567,0.010808761,0.008798703,0.012818819,0.758023085,291259,384235,0.750381972,0.765664198,,,,0.680798005,0.653873165,0.707722845,0.718748796,0.70131186,0.736185732,0.717641082,0.696233679,0.739048485,0.812601311,0.805876542,0.81932608,0.237,,384235,0.227393906,0.246606094,74.07878088,,,73.86612619,74.29143557,,,,81.67384576,80.41427602,82.93341549,69.06372234,68.57436979,69.55307489,85.83127482,82.86274744,88.79980221,74.9550271,74.70364874,75.20640545,,,,523.7187733,13997,2157607,514.6812687,532.7562779,,,,192.519045,157.0519944,227.9860956,767.8776188,743.7484336,792.006804,268.8209284,235.5034956,302.1383612,488.4435987,477.9058982,498.9812992,,,,71.36865372,536,751030,65.32664732,77.41066012,,,,37.27171077,17.87323405,68.54400314,133.462216,117.6012384,149.3231935,51.23607019,35.88511367,70.93231785,49.85301955,42.99498733,56.71105176,,,,6.225898561,423,67942,5.632580009,6.819217112,,,,,,,10.04658472,8.574787406,11.51838204,4.932356257,3.435566855,6.859713553,5.029781602,4.314580131,5.744983072,,,,,,,0.12,,,0.104,0.138,0.175,,,0.153,0.197,0.11,,,0.096,0.125,514.4,3373,655725,,,0.1,77700,,,,0.064809967,48030.40733,741096,,,62.41125427,1443,2312083,59.19103224,65.6314763,,,,,,,62.34718588,55.50527227,69.18909948,13.19866068,7.946455927,20.6113436,71.60584987,67.35484771,75.85685203,,,,0.359,,,0.344,0.372,0.077525807,35906,463149,0.069185382,0.085866233,0.03342972,5873,175682,0.026280783,0.040578656,0.002430828,1880,773399,,,411.3824468,0.839913426,6112.05,7277,,,0.083395582,3126,37484,0.067124795,0.099666369,2.847588904,,,,,,3.401481666,2.3700275,2.703270023,3.249022483,2.761328174,,,,,,3.665069735,2.26924923,2.580591707,3.139374637,0.096611176,,,,,7234.5529,,,,,0.820316073,48429,59037,0.797318188,0.843313958,64719,,,62235.93617,67202.06383,,,,87957,78774.19149,97139.80851,45041,43415.80851,46666.19149,55975,52122.91489,59827.08511,74706,73270.25532,76141.74468,,,,,,0.650267175,61090,93946,,,51.58339758,,,,,0.269889831,,64719,,,7.374385468,354,48004,,,16.40430614,883,5382733,15.32229038,17.4863219,,,,,,,52.81195956,48.65148349,56.97243564,10.15421302,6.899295094,14.41309484,6.17834642,5.367430371,6.989262468,,,,16.48215772,642,3853758,15.17382876,17.79048669,16.6590637,,,,11.78115633,5.387094866,22.36430447,11.23814171,9.070630769,13.76748283,8.581574444,5.166668402,13.40119151,19.12764594,17.39098831,20.86430357,,,,25.61136428,987,3853758,24.01353562,27.20919295,,,,,,,61.81244002,56.51481622,67.11006382,15.27157219,10.63720958,21.23906004,16.32779334,14.76250113,17.89308556,,,,13.72908521,739,5382733,12.73922138,14.71894903,,,,8.767974347,4.793533166,14.7111711,19.11127454,16.60850009,21.614049,14.08487612,10.19329469,18.9722357,12.43980961,11.28915062,13.5904686,,,,20,,74200,,,1111,373,0.678218787,386093,569275,,,0.708,,,,,176.1545855,,,,,0.617699283,202118,327211,0.61076081,0.624637756,0.131225738,41816,318657,0.124785028,0.137666448,0.890504904,291383,327211,0.885550611,0.895459197,773399,,,,,0.218087947,168669,773399,,,0.17615487,136238,773399,,,0.22647689,175157,773399,,,0.001768815,1368,773399,,,0.033901001,26219,773399,,,0.000493924,382,773399,,,0.068916562,53300,773399,,,0.642523458,496927,773399,,,0.022673711,16596,731949,0.02079023,0.024557192,0.513056003,396797,773399,,,0.016327594,12784,782969,, -21,113,21113,KY,Jessamine County,2024,1,9178.862801,829,151466,8247.692175,10110.03343,0,,,,2,,,,2,21781.99114,14696.21795,31095.14675,,,,,2,8974.83431,8012.697045,9936.971575,,,,,2,,0.183,,,0.156,0.215,4.236172265,,,3.309381979,5.217356794,5.506964726,,,4.391475247,6.667964315,0.086139748,376,4365,0.077816255,0.094463241,0,,,,,,,0.180952381,0.128882912,0.23302185,0.079166667,0.045007116,0.113326217,0.080520861,0.071826972,0.08921475,,,,0.130952381,0.058809262,0.2030955,0.19,,,0.152,0.233,0.371,,,0.295,0.452,7.9,0.076943815,0.104,,,0.274,,,0.227,0.327,0.891132457,47222,52991,,,0.157098247,,,0.123588159,0.195985025,0.303030303,10,33,0.211104768,0.396820499,311.4,167,53626,,,18.69811467,241,12889,16.33738984,21.05883951,,,,,,,28.61685215,16.96016022,45.22696386,34.90401396,21.32027851,53.90641868,17.60855536,15.11129908,20.10581165,,,,22.42990654,11.58986002,39.1805328,0.073790129,3234,43827,0.063066725,0.084513534,0.000745907,40,53626,,,1340.65,0.000368636,20,54254,,,2712.7,0.001585137,86,54254,,,630.8604651,1924,,,,,,,,,1984,0.44,,,,,,,0.42,,0.44,0.51,,,,,,,0.49,0.5,0.51,0.896236469,31958,35658,0.877999823,0.914473114,0.629196973,8564,13611,0.5677494,0.690644546,0.032363432,862,26635,,,0.164,2035,,0.113957447,0.214042553,,,,,,,0.464765101,0.106681299,0.822848903,0.16646849,0.045785864,0.287151116,0.135189466,0.0921141,0.178264833,4.187701958,132189,31566,3.769945838,4.605458077,0.259315407,3250,12533,0.206780537,0.311850277,11.37507925,61,53626,,,102.5667706,276,269093,90.46613418,114.667407,,,,,,,178.2531194,110.3414904,272.4788281,,,,104.4047875,91.41055462,117.3990203,,,,8.6,,,,,0,,,,,0.121492853,2295,18890,0.097452378,0.145533329,0.104942559,0.079175917,0.130709202,0.013234516,0.006753635,0.019715397,0.0082054,0.002544443,0.013866356,0.771514805,18916,24518,0.737896997,0.805132614,,,,,,,0.628448276,0.472004363,0.784892189,,,,0.761971452,0.7213869,0.802556003,0.374,,24518,0.329594037,0.418405963,76.27576131,,,75.48282751,77.0686951,,,,,,,67.25283434,62.19477587,72.31089281,,,,76.26530498,75.4523641,77.07824586,,,,441.8346358,829,151466,410.731249,472.9380226,,,,,,,700.8607574,516.7593958,929.2396838,,,,445.5430014,412.8211143,478.2648884,,,,43.72846373,25,57171,28.2987561,64.55183869,,,,,,,,,,,,,38.28728224,22.69146998,60.51041258,,,,6.313416009,28,4435,4.195219088,9.124643956,,,,,,,,,,,,,,,,,,,,,,0.125,,,0.108,0.144,0.178,,,0.153,0.204,0.097,,,0.082,0.113,163.3,73,44715,,,0.104,5510,,,,0.076943815,3738.39221,48586,,,49.4443689,80,161798,39.20630947,61.53779711,,,,,,,,,,,,,51.96592721,40.80442992,65.23846286,,,,0.366,,,0.346,0.385,0.083548995,2615,31299,0.069251123,0.097846868,0.050532725,664,13140,0.035043363,0.066022086,0.000995318,54,54254,,,1004.703704,0.95,563.35,593,,,0.071934798,203,2822,0.027882876,0.11598672,2.888663611,,,,,,,2.439348904,2.633494134,2.964907949,2.875942508,,,,,,,2.313938228,2.722501211,2.950400093,0.01295929,,,,,632.9385,,,,,0.761487734,43302,56865,0.667347195,0.855628273,69216,,,64391.65957,74040.34043,,,,,,,31442,14383.44681,48500.55319,76319,44009.38298,108628.617,71483,66954.14894,76011.85106,,,,,,0.505821792,4127,8159,,,30.00003818,,,,,0.252354947,,69216,,,6.785934608,22,3242,,,4.28482289,16,373411,2.449146504,6.958283928,,,,,,,,,,,,,,,,,,,15.40719599,41,269093,11.0071267,20.98022798,15.2363681,,,,,,,,,,,,,17.01803005,12.10148298,23.26420731,,,,14.49313063,39,269093,10.30603267,19.81258668,,,,,,,,,,,,,14.31355957,9.912556101,20.00176482,,,,15.53248298,58,373411,11.79446553,20.07933611,,,,,,,,,,,,,16.02103895,12.00085756,20.95591341,,,,15.25423729,,5900,,,28,62,0.667879405,26251,39305,,,0.751,,,,,49.06181857,,,,,0.688327879,13251,19251,0.665564841,0.711090917,0.121595846,2295,18874,0.093633004,0.149558689,0.88831749,17101,19251,0.867363267,0.909271713,54254,,,,,0.233439009,12665,54254,,,0.168098205,9120,54254,,,0.046429756,2519,54254,,,0.003225569,175,54254,,,0.015132525,821,54254,,,0.000903159,49,54254,,,0.041803369,2268,54254,,,0.871567073,47286,54254,,,0.011029924,554,50227,0.004512962,0.017546887,0.510948502,27721,54254,,,0.247325018,13106,52991,, -21,115,21115,KY,Johnson County,2024,1,14462.31151,626,61909,12702.80792,16221.81509,0,,,,2,,,,2,,,,2,,,,2,14849.45326,13036.82368,16662.08284,,,,,2,,0.244,,,0.202,0.29,5.275847101,,,4.095842887,6.501435624,6.285605269,,,4.949713559,7.65907221,0.098027496,164,1673,0.083778682,0.112276309,0,,,,,,,,,,,,,0.09800363,0.083670431,0.112336828,,,,,,,0.27,,,0.215,0.329,0.375,,,0.292,0.462,6.9,0.018052418,0.176,,,0.345,,,0.277,0.411,0.60462963,13713,22680,,,0.129112068,,,0.098032816,0.164354182,0,0,18,0,0.129672052,199.5,45,22556,,,26.57218778,120,4516,21.81782014,31.32655542,,,,,,,,,,,,,27.90697674,22.91378506,32.90016843,,,,,,,0.069119038,1242,17969,0.058395634,0.079842443,0.000576343,13,22556,,,1735.076923,0.000134868,3,22244,,,7414.666667,0.001843194,41,22244,,,542.5365854,6816,,,,,,,,,6804,0.33,,,,,,,,,0.33,0.36,,,,,,,,,0.36,0.827977909,13193,15934,0.794050267,0.861905551,0.581781302,3155,5423,0.489085677,0.674476927,0.058982847,392,6646,,,0.313,1514,,0.208148936,0.417851064,,,,,,,,,,,,,0.240740741,0.170215478,0.311266004,6.081785758,98902,16262,4.811549511,7.352022005,0.188656476,938,4972,0.104281665,0.273031288,4.433410179,10,22556,,,106.5105705,119,111726,87.37350684,125.6476342,,,,,,,,,,,,,109.7644216,90.04272903,129.4861141,,,,7.6,,,,,0,,,,,0.143610786,1225,8530,0.10710676,0.180114811,0.115518274,0.080877775,0.150158773,0.011723329,0,0.024316039,0.025205158,0.008377492,0.042032824,0.832449777,5967,7168,0.791386856,0.873512698,,,,,,,,,,,,,0.798734905,0.76127406,0.836195751,0.254,,7168,0.19344467,0.31455533,70.50870408,,,69.37250241,71.64490574,,,,,,,,,,,,,70.18393089,69.03100031,71.33686147,,,,729.1950616,626,61909,668.6511107,789.7390124,,,,,,,,,,,,,744.9411432,682.9232618,806.9590246,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.162,,,0.135,0.189,0.213,,,0.18,0.246,0.12,,,0.099,0.142,57.6,11,19091,,,0.176,4000,,,,0.018052418,421.632266,23356,,,25.46969107,17,66746,14.83703363,40.77944269,,,,,,,,,,,,,26.26131554,15.29818406,42.04691015,,,,0.395,,,0.375,0.413,0.080757727,1053,13039,0.066459855,0.095055599,0.039253415,204,5197,0.026147033,0.052359798,0.001123899,25,22244,,,889.76,0.967109827,334.62,346,,,,,,,,3.373754786,,,,,,,,,3.361565082,3.111565298,,,,,,,,,3.098319457,0.047499479,,,,,-1439.30315,,,,,0.591328784,33879,57293,0.479026402,0.703631165,42877,,,36669.34043,49084.65957,,,,141652,99005.02128,184298.9787,,,,,,,44724,39462.38298,49985.61702,,,,,,0.581699346,2136,3672,,,,,,,,0.298271801,,42877,,,6.446414182,8,1241,,,6.96736108,11,157879,3.478081548,12.46653356,,,,,,,,,,,,,7.171449806,3.579961905,12.83170466,,,,16.07459021,22,111726,9.818777306,24.82590085,19.69102984,,,,,,,,,,,,,16.4563625,10.05197374,25.41551718,,,,25.95635752,29,111726,17.38338,37.27765913,,,,,,,,,,,,,26.74931282,17.91443461,38.41647521,,,,24.70246201,39,157879,17.56586531,33.76907877,,,,,,,,,,,,,25.42604931,18.08040661,34.75824643,,,,,,2300,,,6,-888,0.589814815,10192,17280,,,0.565,,,,,20.15540766,,,,,0.6926412,5911,8534,0.646010047,0.739272353,0.122829918,941,7661,0.085266611,0.160393224,0.848839934,7244,8534,0.81691776,0.880762109,22244,,,,,0.220823593,4912,22244,,,0.194659234,4330,22244,,,0.004495594,100,22244,,,0.002112929,47,22244,,,0.006069052,135,22244,,,0.000314692,7,22244,,,0.009800396,218,22244,,,0.967991369,21532,22244,,,0.002518422,54,21442,0,0.008613449,0.502967092,11188,22244,,,0.738051146,16739,22680,, -21,117,21117,KY,Kenton County,2024,1,9100.047035,2567,475915,8592.872713,9607.221358,0,,,,2,,,,2,16048.66946,12976.5072,19120.83172,,6676.875743,4536.613127,9477.292152,,8985.646456,8447.790704,9523.502208,,,,,2,,0.166,,,0.137,0.198,3.959746648,,,3.160237202,4.847220742,5.029243659,,,4.147384779,6.00294486,0.086208004,1342,15567,0.081798893,0.090617116,0,,,,0.08677686,0.051308687,0.122245032,0.153071501,0.130676453,0.175466548,0.07261247,0.058323399,0.086901542,0.081760013,0.076986864,0.086533161,,,,0.111445783,0.077595616,0.14529595,0.177,,,0.136,0.222,0.344,,,0.288,0.405,8,0.072776794,0.101,,,0.25,,,0.205,0.3,0.860189041,145427,169064,,,0.174082295,,,0.141755324,0.210779661,0.333333333,20,60,0.266815925,0.399943295,309.2,524,169495,,,22.88188003,777,33957,21.27294959,24.49081046,,,,,,,42.55319149,33.63653203,53.10830881,71.6530484,58.49963961,84.80645718,19.0395897,17.43666171,20.64251769,,,,24.74226804,17.32918036,34.25372817,0.058249837,8296,142421,0.049909411,0.066590262,0.000873182,148,169495,,,1145.236487,0.000551925,94,170313,,,1811.840426,0.002172471,370,170313,,,460.3054054,3655,,,,,,4513,4515,,3569,0.46,,,,,,0.41,0.26,0.42,0.46,0.55,,,,,,0.53,0.27,0.27,0.55,0.91951874,106232,115530,0.911798287,0.927239193,0.7176781,34000,47375,0.684473443,0.750882758,0.033158497,2927,88273,,,0.138,5296,,0.097489362,0.178510638,,,,,,,0.573714286,0.477421339,0.670007233,0.469776876,0.388984538,0.550569215,0.124352002,0.098160088,0.150543916,4.354143915,143530,32964,4.059522856,4.648764974,0.246683208,9743,39496,0.210759075,0.282607342,7.197852444,122,169495,,,105.6356563,883,835892,98.66800745,112.6033051,,,,,,,119.9010816,88.40559245,158.971439,34.38907803,16.49089961,63.24273889,110.8075371,103.2046193,118.4104549,,,,10,,,,,0,,,,,0.108838795,7025,64545,0.097611355,0.120066234,0.090134459,0.079748338,0.10052058,0.015570532,0.011604585,0.01953648,0.009683167,0.006396211,0.012970123,0.769887728,67339,87466,0.75394173,0.785833726,,,,0.759605911,0.657700027,0.861511795,0.693333333,0.593930977,0.792735689,0.708356392,0.609883133,0.806829651,0.754940968,0.737397558,0.772484378,0.281,,87466,0.262773718,0.299226283,76.07536836,,,75.64813695,76.50259978,,,,86.02476695,78.6041965,93.4453374,70.08634084,67.71593685,72.45674483,84.07753188,76.28935196,91.86571181,76.13628933,75.6894246,76.58315407,,,,438.7922201,2567,475915,421.2610629,456.3233772,,,,,,,713.9565463,602.2125245,825.7005681,308.9343123,206.8981575,443.6812052,436.3061211,417.9580087,454.6542335,,,,54.65211603,94,171997,44.16447287,66.88034892,,,,,,,172.0647773,100.2340736,275.4923767,,,,51.32628547,40.15965732,64.63696209,,,,8.526342581,134,15716,7.082677505,9.970007657,,,,,,,24.43991853,15.65911696,36.3646615,,,,7.649513213,6.217146875,9.313007862,,,,,,,0.116,,,0.098,0.137,0.167,,,0.143,0.193,0.094,,,0.08,0.11,261.6,370,141445,,,0.101,16930,,,,0.072776794,11623.90945,159720,,,56.69630998,286,504442,50.12536473,63.26725524,,,,,,,65.86259416,37.64616331,106.9567266,,,,59.76180972,52.5663777,66.95724175,,,,0.371,,,0.353,0.389,0.068362881,7045,103053,0.057639477,0.079086286,0.033393961,1377,41235,0.023862047,0.042925876,0.001931737,329,170313,,,517.668693,0.92084121,1461.375,1587,,,0.064832768,535,8252,0.03849692,0.091168616,3.182891458,,,,,,3.403252274,2.664308983,2.738765022,3.311249065,3.162717498,,,,,,3.296747291,2.739251703,2.752694929,3.278082847,0.124827424,,,,,-3826.701,,,,,0.786165588,50269,63942,0.745834969,0.826496207,77284,,,71102.55319,83465.44681,71563,48975.93617,94150.06383,115236,95861.19149,134610.8085,36037,23730.10638,48343.89362,41012,22560.59575,59463.40426,79768,76091.06383,83444.93617,,,,,,0.48499844,10879,22431,,,52.17967105,,,,,0.226010559,,77284,,,7.777472779,85,10929,,,3.25942725,38,1165849,2.306564713,4.473818558,,,,,,,19.67306936,9.820725341,35.20055534,,,,2.234443658,1.416445606,3.352762588,,,,15.720046,136,835892,13.01294364,18.42714836,16.27004446,,,,,,,,,,,,,16.93093102,13.94465091,19.91721114,,,,12.4417987,104,835892,10.05056198,14.83303543,,,,,,,32.4732096,17.29061647,55.5301774,,,,12.08562598,9.705750061,14.87240273,,,,9.006312138,105,1165849,7.283617046,10.72900723,,,,,,,,,,,,,9.132074079,7.379645423,11.1753459,,,,10.56497175,,17700,,,93,94,0.664680644,82108,123530,,,0.725,,,,,154.9902782,,,,,0.690867519,46532,67353,0.676465566,0.705269472,0.103927925,6829,65709,0.092905658,0.114950192,0.901266462,60703,67353,0.890203315,0.912329608,170313,,,,,0.229383547,39067,170313,,,0.159447605,27156,170313,,,0.049209397,8381,170313,,,0.002184214,372,170313,,,0.014191518,2417,170313,,,0.00182605,311,170313,,,0.037924292,6459,170313,,,0.873732481,148808,170313,,,0.011294439,1788,158308,0.008139864,0.014449013,0.501705683,85447,170313,,,0.067199404,11361,169064,, -21,119,21119,KY,Knott County,2024,1,18078.36373,434,40158,15400.88838,20755.83908,0,,,,2,,,,2,,,,2,,,,2,18405.3806,15647.94802,21162.81317,,,,,2,,0.289,,,0.243,0.334,5.88102323,,,4.774619893,7.098229606,6.678398493,,,5.416420275,7.987992116,0.090217391,83,920,0.071704421,0.108730362,0,,,,,,,,,,,,,0.093679458,0.074492669,0.112866248,,,,,,,0.295,,,0.24,0.353,0.402,,,0.327,0.477,6.4,0.006076726,0.207,,,0.391,,,0.328,0.456,0.131499544,1874,14251,,,0.124362515,,,0.098437495,0.153589846,0.285714286,4,14,0.142392906,0.436004848,121,17,14053,,,26.9058296,90,3345,21.63546431,33.07183252,,,,,,,,,,,,,26.20087336,20.89884271,32.43846406,,,,,,,0.081360671,873,10730,0.068254288,0.094467054,0.000213478,3,14053,,,4684.333333,0.000360386,5,13874,,,2774.8,0.000432464,6,13874,,,2312.333333,4617,,,,,,,,,4659,0.3,,,,,,,,,0.3,0.34,,,,,,,,,0.35,0.71742622,7147,9962,0.677276677,0.757575762,0.554602441,1681,3031,0.452423236,0.656781647,0.060861423,260,4272,,,0.422,1150,,0.29212766,0.55187234,,,,,,,,,,,,,0.398493409,0.330268143,0.466718674,5.160335376,80011,15505,3.967447061,6.353223691,0.309992963,881,2842,0.203492591,0.416493335,5.692734647,8,14053,,,157.207134,116,73788,128.5983547,185.8159132,,,,,,,,,,,,,162.314947,132.7766406,191.8532534,,,,7.5,,,,,0,,,,,0.15585443,985,6320,0.11664501,0.19506385,0.088143908,0.059962174,0.116325643,0.065664557,0.03648411,0.094845004,0.011075949,0.002457787,0.019694112,0.807748538,3315,4104,0.751625648,0.863871428,,,,,,,,,,,,,0.755661502,0.68026343,0.831059573,0.44,,4104,0.347040919,0.532959081,69.45987902,,,67.73969508,71.18006296,,,,,,,,,,,,,69.09349894,67.35842121,70.82857667,,,,790.6776448,434,40158,709.8894169,871.4658727,,,,,,,,,,,,,800.2796318,717.7420561,882.8172075,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.185,,,0.158,0.212,0.227,,,0.197,0.26,0.137,,,0.116,0.158,49.7,6,12081,,,0.207,3000,,,,0.006076726,99.33015506,16346,,,96.83890157,42,43371,69.79296242,130.8980627,,,,,,,,,,,,,100.0428755,72.10210503,135.2289047,,,,0.407,,,0.387,0.425,0.093828399,748,7972,0.077147548,0.110509251,0.046391753,135,2910,0.03209388,0.060689625,0.00079285,11,13874,,,1261.272727,0.975,162.825,167,,,,,,,,3.455072029,,,,,,,,,3.479336496,3.221358708,,,,,,,,,3.26105684,,,,,,-5878.98,,,,,0.879639595,35146,39955,0.491211871,1.268067319,38456,,,32917.95745,43994.04255,,,,,,,,,,,,,38114,30972.21277,45255.78723,,,,,,0.721654275,1553,2152,,,,,,,,0.332561889,,38456,,,5.340453939,4,749,,,,,,,,,,,,,,,,,,,,,,,,,,25.40177057,18,73788,14.51930668,41.25088398,24.39421044,,,,,,,,,,,,,26.25924421,15.00942696,42.64336746,,,,31.17038001,23,73788,19.7593471,46.77087453,,,,,,,,,,,,,32.18313604,20.40134755,48.29050583,,,,24.75601047,26,105025,16.17144796,36.2732912,,,,,,,,,,,,,25.53199847,16.67834908,37.41029341,,,,10.76923077,,1300,,,5,9,0.522222222,6251,11970,,,0.481,,,,,3.067948599,,,,,0.725687579,4037,5563,0.689687952,0.761687206,0.126353039,607,4804,0.087222334,0.165483744,0.756965666,4211,5563,0.716814192,0.79711714,13874,,,,,0.20015857,2777,13874,,,0.210321465,2918,13874,,,0.00922589,128,13874,,,0.002306473,32,13874,,,0.002018164,28,13874,,,0.000216232,3,13874,,,0.01160444,161,13874,,,0.96677238,13413,13874,,,0.000221174,3,13564,0,0.006714358,0.506126568,7022,13874,,,1,14251,14251,, -21,121,21121,KY,Knox County,2024,1,14273.19513,831,85259,12827.81952,15718.57074,0,,,,2,,,,2,,,,2,,,,2,14682.341,13182.20693,16182.47507,,,,,2,,0.295,,,0.25,0.342,6.022289796,,,4.894376994,7.170789839,6.811397455,,,5.584586977,8.097682791,0.107116921,295,2754,0.09556643,0.118667412,0,,,,,,,,,,,,,0.105380334,0.093787872,0.116972796,,,,,,,0.299,,,0.243,0.358,0.421,,,0.346,0.497,4.6,0.179026102,0.205,,,0.384,,,0.321,0.447,0.224124797,6767,30193,,,0.129076637,,,0.102555497,0.160094517,0.142857143,4,28,0.058576657,0.253079972,344.4,103,29909,,,46.2868024,316,6827,41.18328371,51.3903211,,,,,,,,,,,,,49.08835905,43.66736027,54.50935782,,,,,,,0.071897032,1754,24396,0.059982139,0.083811926,0.000267478,8,29909,,,3738.625,0.000302105,9,29791,,,3310.111111,0.000906314,27,29791,,,1103.37037,3439,,,,,,,,,3245,0.29,,,,,,,,,0.28,0.23,,,,,,,,,0.24,0.790216645,16122,20402,0.759153393,0.821279898,0.4632946,3389,7315,0.379975888,0.546613312,0.053172205,528,9930,,,0.405,2755,,0.283468085,0.526531915,,,,,,,,,,0.523560209,0.144753384,0.902367035,0.447717458,0.37162605,0.523808867,6.828233136,81891,11993,5.894224328,7.762241944,0.290686205,2063,7097,0.198558497,0.382813914,7.689992979,23,29909,,,103.4881991,160,154607,87.45253652,119.5238617,,,,,,,,,,,,,105.6009098,89.02942464,122.1723949,,,,7.9,,,,,0,,,,,0.129606625,1565,12075,0.098227832,0.160985418,0.118374558,0.084291382,0.152457735,0.013664596,0.004851211,0.022477982,0.007039338,0.000232382,0.013846293,0.815009507,7287,8941,0.768762849,0.861256164,,,,,,,,,,,,,0.788561769,0.755840518,0.82128302,0.346,,8941,0.27076615,0.42123385,70.63662135,,,69.6695761,71.6036666,,,,,,,,,,,,,70.27408971,69.28768521,71.26049421,,,,751.7406814,831,85259,698.5069535,804.9744092,,,,,,,,,,,,,769.2626798,714.417759,824.1076006,,,,59.503304,19,31931,35.82487603,92.92178,,,,,,,,,,,,,63.75197128,38.38285127,99.55660025,,,,7.950849295,22,2767,4.982754923,12.03768138,,,,,,,,,,,,,8.112094395,5.083806369,12.2818084,,,,,,,0.19,,,0.162,0.219,0.231,,,0.199,0.263,0.139,,,0.119,0.161,48.1,12,24926,,,0.205,6220,,,,0.179026102,5707.889199,31883,,,42.35631435,39,92076,30.11948009,57.90247607,,,,,,,,,,,,,42.12443787,29.65949174,58.06298872,,,,0.4,,,0.38,0.418,0.08720531,1524,17476,0.070524459,0.103886161,0.033970568,247,7271,0.022055674,0.045885462,0.0021483,64,29791,,,465.484375,0.89125,299.46,336,,,0.184305256,256,1389,0.061796258,0.306814254,2.95254652,,,,,,,,,2.959474041,2.773637404,,,,,,,,,2.77602175,0.06030607,,,,,-5920.989,,,,,0.737192952,34393,46654,0.562314875,0.91207103,36573,,,31188.65957,41957.34043,,,,,,,11518,6990.340426,16045.65957,,,,34306,29808.12766,38803.87234,,,,,,0.667909752,3582,5363,,,84.17150535,,,,,0.349684193,,36573,,,8.638211382,17,1968,,,5.962646314,13,218024,3.174858039,10.19630679,,,,,,,,,,,,,6.234982086,3.319865368,10.66200926,,,,11.64636766,17,154607,6.656905401,18.91297143,10.99562116,,,,,,,,,,,,,12.09211514,6.911688602,19.63683742,,,,12.93602489,20,154607,7.901660071,19.97864127,,,,,,,,,,,,,13.53857818,8.269715274,20.90923595,,,,22.47458995,49,218024,16.62682537,29.7125998,,,,,,,,,,,,,23.50108633,17.38623304,31.06968244,,,,19.39393939,,3300,,,31,33,0.559687961,13273,23715,,,0.435,,,,,24.31253731,,,,,0.639504854,7181,11229,0.597526644,0.681483063,0.143243785,1429,9976,0.106769989,0.179717582,0.804969276,9039,11229,0.767242568,0.842695984,29791,,,,,0.233661173,6961,29791,,,0.17730187,5282,29791,,,0.011849216,353,29791,,,0.00322245,96,29791,,,0.004263033,127,29791,,,0.000369239,11,29791,,,0.015776577,470,29791,,,0.953207345,28397,29791,,,0.00091915,26,28287,0,0.005017287,0.510187641,15199,29791,,,0.620474945,18734,30193,, -21,123,21123,KY,Larue County,2024,1,12073.66291,298,40577,9906.952578,14240.37325,0,,,,2,,,,2,,,,2,,,,2,12597.51868,10248.53911,14946.49825,,,,,2,,0.22,,,0.182,0.258,4.850643559,,,3.908623505,5.917643779,5.845436264,,,4.720969002,7.077632692,0.102902375,117,1137,0.085241655,0.120563094,0,,,,,,,,,,,,,0.103646833,0.085139672,0.122153994,,,,,,,0.23,,,0.181,0.279,0.405,,,0.324,0.489,7.4,0.0674886,0.129,,,0.314,,,0.256,0.373,0.565480595,8407,14867,,,0.147649628,,,0.116486874,0.180977961,0.15,3,20,0.050642257,0.283837277,179.7,27,15028,,,32.82122905,94,2864,26.52289399,40.16487211,,,,,,,,,,,,,34.23566879,27.38411594,42.28077245,,,,,,,0.081506511,989,12134,0.068400128,0.094612894,0.000133085,2,15028,,,7514,0.00019785,3,15163,,,5054.333333,0.00059355,9,15163,,,1684.777778,2357,,,,,,,,,2401,0.4,,,,,,,,,0.4,0.43,,,,,,,0.18,,0.43,0.8441247,8800,10425,0.812060526,0.876188874,0.575402236,2110,3667,0.481374907,0.669429566,0.043990301,254,5774,,,0.23,761,,0.162085106,0.297914894,,,,,,,,,,0.502439024,0.268981619,0.73589643,0.231520223,0.155223247,0.307817199,4.884666697,106178,21737,4.048572357,5.720761038,0.240812668,806,3347,0.146817087,0.334808249,12.64306628,19,15028,,,98.10830604,71,72369,76.62340098,123.7502786,,,,,,,,,,,,,102.8308735,79.85219688,130.3626348,,,,8.4,,,,,0,,,,,0.119377163,690,5780,0.081078306,0.157676019,0.094727592,0.057041462,0.132413722,0.010380623,0,0.022884798,0.015570934,0.000200281,0.030941588,0.885732224,5643,6371,0.851128887,0.920335562,,,,,,,,,,,,,0.798577312,0.706476754,0.89067787,0.429,,6371,0.354734744,0.503265256,73.06644262,,,71.51019814,74.62268711,,,,,,,,,,,,,72.72355758,71.07194009,74.37517508,,,,552.226441,298,40577,486.1806751,618.2722069,,,,,,,,,,,,,564.3235026,494.8067256,633.8402796,,,,83.72287728,12,14333,43.26083241,146.2470177,,,,,,,,,,,,,96.43201543,49.82782955,168.4473244,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.146,,,0.123,0.169,0.195,,,0.167,0.225,0.107,,,0.091,0.125,,,,,,0.129,1910,,,,0.0674886,957.865693,14193,,,27.36165264,12,43857,14.13816519,47.79530075,,,,,,,,,,,,,27.46978324,13.71281682,49.15103015,,,,0.394,,,0.376,0.412,0.092213115,810,8784,0.075532264,0.108893966,0.054560955,192,3519,0.036688614,0.072433295,0.00032975,5,15163,,,3032.6,0.975,155.025,159,,,,,,,,3.141533121,,,,,,,,,3.2075675,2.997864643,,,,,,,,,3.012976731,0.01088921,,,,,246.2354,,,,,0.906535488,46440,51228,0.793251486,1.019819491,53939,,,46043,61835,,,,,,,,,,,,,58288,47395.40426,69180.59575,,,,,,0.525373134,1232,2345,,,26.02211547,,,,,0.23710117,,53939,,,7.566204288,6,793,,,,,,,,,,,,,,,,,,,,,,,,,,24.66408922,18,72369,14.36774087,39.48959609,24.87252829,,,,,,,,,,,,,25.30266347,14.46265841,41.08994026,,,,22.10891404,16,72369,12.63715466,35.90349127,,,,,,,,,,,,,22.68328091,12.69566013,37.4126223,,,,26.81071634,27,100706,17.66843101,39.00818466,,,,,,,,,,,,,27.1414613,17.56452269,40.06615101,,,,23.33333333,,1500,,,22,13,0.678531599,7301,10760,,,0.702,,,,,3.255296034,,,,,0.748449807,4466,5967,0.705230702,0.791668913,0.140627803,784,5575,0.095810729,0.185444876,0.793698676,4736,5967,0.742450537,0.844946815,15163,,,,,0.224493834,3404,15163,,,0.180373277,2735,15163,,,0.027764954,421,15163,,,0.004154851,63,15163,,,0.003495351,53,15163,,,0.00125305,19,15163,,,0.033040955,501,15163,,,0.912220537,13832,15163,,,0.000283266,4,14121,0,0.006512904,0.499769175,7578,15163,,,1,14867,14867,, -21,125,21125,KY,Laurel County,2024,1,11182.08557,1343,172516,10277.25052,12086.92062,0,,,,2,,,,2,,,,2,,,,2,11334.1478,10407.61029,12260.6853,,,,,2,,0.243,,,0.207,0.283,5.205393902,,,4.246210906,6.312452419,6.016287171,,,4.910817087,7.229521393,0.085148126,434,5097,0.077485782,0.092810471,0,,,,,,,,,,,,,0.084763072,0.07696108,0.092565064,,,,,,,0.248,,,0.2,0.298,0.467,,,0.397,0.544,6.5,0.111777648,0.148,,,0.321,,,0.264,0.381,0.681967004,42700,62613,,,0.144175875,,,0.115020004,0.179201056,0.293333333,22,75,0.23371343,0.354293677,282.9,177,62561,,,36.3975735,468,12858,33.09991577,39.69523122,,,,,,,,,,,,,37.38779544,33.94859092,40.82699996,,,,,,,0.078993711,4082,51675,0.067078817,0.090908604,0.000383626,24,62561,,,2606.708333,0.000397551,25,62885,,,2515.4,0.000890514,56,62885,,,1122.946429,3114,,,,,,,,,3115,0.34,,,,,,,,,0.34,0.34,,,,,,,0.35,,0.34,0.839765159,36188,43093,0.823196539,0.85633378,0.524025611,8430,16087,0.474540689,0.573510532,0.041636784,1045,25098,,,0.249,3467,,0.160829787,0.337170213,,,,,,,,,,0.48115942,0.09999999,0.86231885,0.282026045,0.239745077,0.324307013,5.163314081,103700,20084,4.497896553,5.828731609,0.239021991,3402,14233,0.191254935,0.286789048,5.274851745,33,62561,,,94.28557398,288,305455,83.39614575,105.1750022,,,,,,,,,,,,,97.93380223,86.58354587,109.2840586,,,,8.1,,,,,0,,,,,0.130818443,2965,22665,0.108531479,0.153105406,0.105644979,0.083722809,0.127567148,0.02823737,0.018356513,0.038118228,0.010589014,0.004047154,0.017130873,0.799209672,20427,25559,0.764784011,0.833635332,,,,,,,,,,,,,0.824787417,0.796038573,0.85353626,0.25,,25559,0.214275183,0.285724817,72.98977537,,,72.32345419,73.65609656,,,,,,,,,,,,,72.77332612,72.10048922,73.44616303,,,,589.1211786,1343,172516,556.4276534,621.8147038,,,,,,,,,,,,,599.1843104,565.6384433,632.7301776,,,,50.26510791,31,61673,34.15270212,71.34730839,,,,,,,,,,,,,50.29832108,33.68557503,72.23677924,,,,7.029876977,36,5121,4.92363941,9.732312925,,,,,,,,,,,,,6.895153113,4.775093974,9.635285357,,,,,,,0.159,,,0.136,0.185,0.205,,,0.177,0.235,0.117,,,0.099,0.137,110.5,58,52469,,,0.148,9160,,,,0.111777648,6578.00278,58849,,,24.91712348,46,184612,18.24246604,33.23595092,,,,,,,,,,,,,26.07428905,19.08965668,34.77944763,,,,0.398,,,0.379,0.417,0.093551487,3505,37466,0.078062125,0.109040848,0.041457371,619,14931,0.028350988,0.054563754,0.001860539,117,62885,,,537.4786325,0.79,508.76,644,,,0.075159236,236,3140,0.035952338,0.114366133,3.406849757,,,,,,,,,3.411440207,3.533077495,,,,,,,,,3.536675285,0.03299018,,,,,-7192.26,,,,,0.721627283,36860,51079,0.66223562,0.781018946,50721,,,44322.70213,57119.29787,,,,,,,,,,77018,49485.06383,104550.9362,52938,48272.12766,57603.87234,,,,,,0.617637558,5736,9287,,,,,,,,0.252144082,,50721,,,3.095176683,12,3877,,,8.219840817,35,425799,5.725420305,11.43180876,,,,,,,,,,,,,8.344664078,5.778922455,11.66083164,,,,16.05424298,51,305455,11.83713143,21.28559705,16.69640373,,,,,,,,,,,,,16.34918974,12.01276967,21.74095645,,,,20.29758884,62,305455,15.56204498,26.02059285,,,,,,,,,,,,,21.23040468,16.27722953,27.21642065,,,,20.43217575,87,425799,16.36533518,25.2030133,,,,,,,,,,,,,21.10709149,16.88294872,26.06708628,,,,9.0625,,6400,,,20,38,0.603717233,28097,46540,,,0.64,,,,,34.15670087,,,,,0.712004781,16678,23424,0.691186092,0.732823471,0.099359713,2157,21709,0.07827257,0.120446856,0.850367145,19919,23424,0.826516945,0.874217345,62885,,,,,0.225649996,14190,62885,,,0.173173253,10890,62885,,,0.008459887,532,62885,,,0.003752882,236,62885,,,0.006710662,422,62885,,,0.000254433,16,62885,,,0.016363203,1029,62885,,,0.95299356,59929,62885,,,0.002912969,171,58703,0.000367269,0.005458668,0.504699054,31738,62885,,,0.609921262,38189,62613,, -21,127,21127,KY,Lawrence County,2024,1,13956.3271,425,43876,11944.20232,15968.45188,0,,,,2,,,,2,,,,2,,,,2,14133.81013,12083.55458,16184.06567,,,,,2,,0.269,,,0.23,0.313,5.525810281,,,4.466241135,6.701423603,6.27338308,,,5.053923308,7.587307273,0.095955591,121,1261,0.079699035,0.112212147,0,,,,,,,,,,,,,0.097188755,0.080734513,0.113642997,,,,,,,0.287,,,0.237,0.344,0.419,,,0.343,0.497,6.4,0.05715596,0.18,,,0.361,,,0.301,0.424,0.111274781,1813,16293,,,0.133242167,,,0.105550457,0.16402449,0.269230769,7,26,0.16570611,0.378587417,227.1,37,16290,,,32.06806283,98,3056,26.03440349,39.08069709,,,,,,,,,,,,,33.19502075,26.88807338,40.53680187,,,,,,,0.074757209,993,13283,0.062842315,0.086672102,0.000368324,6,16290,,,2715,0.000248308,4,16109,,,4027.25,0.009808182,158,16109,,,101.9556962,4490,,,,,,,,,4500,0.35,,,,,,,,,0.35,0.41,,,,,,,,,0.41,0.769479354,8572,11140,0.73431377,0.804644937,0.368048269,1403,3812,0.279723167,0.456373371,0.053250223,299,5615,,,0.29,1103,,0.186340426,0.393659575,,,,,,,,,,0.405,0.055137947,0.754862053,0.342771576,0.268542634,0.417000519,4.863316637,91265,18766,3.757888024,5.968745249,0.203254068,812,3995,0.119648888,0.286859248,5.524861879,9,16290,,,136.5963259,107,78333,110.714006,162.4786458,,,,,,,,,,,,,138.9146138,112.3435246,165.485703,,,,7.7,,,,,0,,,,,0.136974038,765,5585,0.099059103,0.174888972,0.122137405,0.083577764,0.160697045,0.011459266,0.000745725,0.022172807,0.018800358,0.00681186,0.030788857,0.874829313,3844,4394,0.817763506,0.93189512,,,,,,,,,,,,,0.872311828,0.817469496,0.92715416,0.481,,4394,0.391281563,0.570718437,71.05532108,,,69.69689659,72.41374557,,,,,,,,,,,,,70.82440784,69.46659533,72.18222035,,,,706.1059577,425,43876,634.9595077,777.2524078,,,,,,,,,,,,,715.9046006,643.2587154,788.5504857,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.172,,,0.147,0.197,0.214,,,0.184,0.244,0.127,,,0.108,0.146,37.1,5,13475,,,0.18,2930,,,,0.05715596,906.4935193,15860,,,51.01715452,24,47043,32.68765354,75.90948195,,,,,,,,,,,,,52.89372769,33.89000938,78.70167407,,,,0.403,,,0.386,0.421,0.088831945,832,9366,0.073342584,0.104321307,0.041809291,171,4090,0.027511419,0.056107163,0.001614005,26,16109,,,619.5769231,0.875,135.625,155,,,0.1401649,119,849,0.049920505,0.230409295,3.130317414,,,,,,,,,3.124141673,2.868607921,,,,,,,,,2.862307935,0.031857242,,,,,-2704.389,,,,,0.661649164,34022,51420,0.478837626,0.844460702,42776,,,36350.29787,49201.70213,,,,,,,,,,,,,42063,33286.48936,50839.51064,,,,,,0.617743254,1511,2446,,,,,,,,0.298976061,,42776,,,0.924214418,1,1082,,,,,,,,,,,,,,,,,,,,,,,,,,18.06978176,13,78333,9.336919915,31.56427226,16.5958153,,,,,,,,,,,,,18.78565798,9.706823606,32.81476395,,,,12.76601177,10,78333,6.121798854,23.47715017,,,,,,,,,,,,,13.22996322,6.344281608,24.33037341,,,,22.73946935,25,109941,14.7157856,33.56794253,,,,,,,,,,,,,23.51392024,15.21696938,34.71118482,,,,,,1700,,,-888,9,0.589157137,6955,11805,,,0.543,,,,,5.475299378,,,,,0.743751093,4255,5721,0.703391849,0.784110336,0.103613076,542,5231,0.064415034,0.142811118,0.755986716,4325,5721,0.709344707,0.802628725,16109,,,,,0.239741759,3862,16109,,,0.189273077,3049,16109,,,0.004345397,70,16109,,,0.001614005,26,16109,,,0.002669315,43,16109,,,0.000558694,9,16109,,,0.016077969,259,16109,,,0.961698429,15492,16109,,,0.002978554,45,15108,0,0.009781064,0.498106649,8024,16109,,,0.760203769,12386,16293,, -21,129,21129,KY,Lee County,2024,1,16393.44696,253,20774,13256.37564,19530.51828,0,,,,2,,,,2,,,,2,,,,2,17088.01375,13766.2094,20409.8181,,,,,2,,0.311,,,0.266,0.355,6.083359928,,,4.94173157,7.276760001,6.612262567,,,5.347541585,7.968034032,0.084452975,44,521,0.060575686,0.108330264,0,,,,,,,,,,,,,0.085106383,0.061052945,0.109159821,,,,,,,0.317,,,0.262,0.369,0.407,,,0.329,0.488,6.6,0.000113575,0.2,,,0.4,,,0.336,0.461,0.798647735,5906,7395,,,0.131892721,,,0.103886431,0.16491851,0,0,6,0,0.28246769,147.6,11,7451,,,48.06070826,57,1186,36.4007111,62.26822209,,,,,,,,,,,,,50.4050405,38.07542591,65.45513772,,,,,,,0.065895954,342,5190,0.05398106,0.077810847,,0,7451,,,,0.000137722,1,7261,,,7261,0.001239499,9,7261,,,806.7777778,9334,,,,,,,,,9452,0.24,,,,,,,,,0.24,0.22,,,,,,,,,0.22,0.734892423,3928,5345,0.678510386,0.79127446,0.380738523,763,2004,0.279163551,0.482313495,0.054300817,113,2081,,,0.454,569,,0.308638298,0.599361702,,,,,,,,,,0.349315069,0,0.765646526,0.48013245,0.353115277,0.607149624,4.701410415,60667,12904,2.998894564,6.403926267,0.250840619,373,1487,0.119209455,0.382471783,4.026305194,3,7451,,,190.3428971,68,35725,147.8087075,241.3049773,,,,,,,,,,,,,195.0642826,150.862702,248.1695949,,,,7.7,,,,,0,,,,,0.135181976,390,2885,0.086714508,0.183649443,0.08540146,0.049206996,0.121595923,0.020797227,0,0.049000579,0.034662045,0.000753509,0.068570581,0.755376344,1686,2232,0.680369943,0.830382746,,,,,,,,,,,,,0.791362872,0.68378929,0.898936453,0.428,,2232,0.314270484,0.541729516,68.09240775,,,66.23361916,69.95119635,,,,,,,,,,,,,67.65088668,65.72396227,69.57781108,,,,849.2536053,253,20774,739.3032669,959.2039437,,,,,,,,,,,,,877.9981597,763.1226576,992.8736617,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.192,,,0.165,0.219,0.226,,,0.197,0.258,0.143,,,0.123,0.165,138.6,9,6492,,,0.2,1450,,,,0.000113575,0.895769315,7887,,,90.4077389,20,22122,55.22339565,139.6274202,,,,,,,,,,,,,86.51350572,51.27338643,136.7286373,,,,0.418,,,0.399,0.434,0.07903602,305,3859,0.063546658,0.094525381,0.027956989,39,1395,0.017233585,0.038680394,0.000826333,6,7261,,,1210.166667,0.875,65.625,75,,,,,,,,2.851200202,,,,,,,,,2.875280432,2.641522192,,,,,,,,,2.587047693,,,,,,-8251.131,,,,,0.851136308,34980,41098,0.634653555,1.067619061,34632,,,29653.95745,39610.04255,,,,,,,,,,,,,31177,28657,33697,,,,,,0.801853998,692,863,,,47.53355976,,,,,0.369282744,,34632,,,8,3,375,,,,,,,,,,,,,,,,,,,,,,,,,,29.96449375,12,35725,14.95816732,53.61475636,33.58992302,,,,,,,,,,,,,31.69124956,15.8201576,56.70439949,,,,36.38908328,13,35725,19.37565428,62.22644064,,,,,,,,,,,,,38.42175262,20.4579651,65.70236713,,,,30.57667611,15,49057,17.11353351,50.43157729,,,,,,,,,,,,,32.09792006,17.9649622,52.94063783,,,,20,,600,,,5,7,0.474821429,2659,5600,,,0.479,,,,,0.107831615,,,,,0.695866515,1835,2637,0.641058028,0.750675002,0.068161829,155,2274,0.024442768,0.111880891,0.718998862,1896,2637,0.645006141,0.792991584,7261,,,,,0.178212367,1294,7261,,,0.182619474,1326,7261,,,0.0318138,231,7261,,,0.004820273,35,7261,,,0.003718496,27,7261,,,0.000550888,4,7261,,,0.027957582,203,7261,,,0.916953588,6658,7261,,,0.001004881,7,6966,0,0.012483929,0.436441262,3169,7261,,,1,7395,7395,, -21,131,21131,KY,Leslie County,2024,1,16326.59924,356,27603,13723.62285,18929.57562,0,,,,2,,,,2,,,,2,,,,2,16686.73562,14017.57727,19355.89398,,,,,2,,0.285,,,0.241,0.328,5.794516748,,,4.624000365,6.998257609,6.797498216,,,5.421564637,8.17806913,0.099590723,73,733,0.07791201,0.121269437,0,,,,,,,,,,,,,0.099310345,0.07753967,0.12108102,,,,,,,0.291,,,0.235,0.345,0.444,,,0.351,0.537,5.8,0.049381011,0.214,,,0.378,,,0.31,0.44,1,10513,10513,,,0.130032772,,,0.098245182,0.166452253,0.3125,5,16,0.177519792,0.449075671,136.2,14,10278,,,25.41436464,46,1810,18.60650907,33.89920095,,,,,,,,,,,,,26.5129683,19.41082502,35.36458427,,,,,,,0.068486473,562,8206,0.05657158,0.080401367,0.00019459,2,10278,,,5139,0.000198157,2,10093,,,5046.5,0.000594471,6,10093,,,1682.166667,4686,,,,,,,,,4697,0.18,,,,,,,,,0.18,0.22,,,,,,,,,0.22,0.819842258,5925,7227,0.764894869,0.874789648,0.571862788,1317,2303,0.451544049,0.692181527,0.065528197,165,2518,,,0.371,789,,0.237553192,0.504446809,,,,,,,,,,,,,0.552454283,0.453104262,0.651804304,5.054307495,74920,14823,2.163966712,7.944648279,0.276262852,618,2237,0.122588869,0.429936835,3.891807745,4,10278,,,169.0902942,85,50269,135.0633213,209.0827674,,,,,,,,,,,,,173.745963,138.7821042,214.8395739,,,,7.5,,,,,0,,,,,0.161251504,670,4155,0.10984565,0.212657359,0.104691358,0.059318798,0.150063918,0.039711191,0.010739793,0.06868259,0.018050542,0,0.040320479,0.836526576,2707,3236,0.751408185,0.921644968,,,,,,,,,,,,,0.807142857,0.650841732,0.963443983,0.592,,3236,0.450132688,0.733867312,68.84592873,,,67.19501457,70.49684289,,,,,,,,,,,,,68.48226638,66.82188648,70.14264628,,,,882.3595286,356,27603,785.4772117,979.2418455,,,,,,,,,,,,,899.7322997,800.7922153,998.6723841,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.181,,,0.154,0.207,0.229,,,0.196,0.261,0.135,,,0.113,0.158,,,,,,0.214,2270,,,,0.049381011,558.4992319,11310,,,40.2792696,12,29792,20.81288638,70.35977795,,,,,,,,,,,,,41.42359074,21.4041738,72.35867668,,,,0.413,,,0.393,0.429,0.080092669,484,6043,0.064603308,0.095582031,0.03573004,81,2267,0.022623657,0.048836423,0.00208065,21,10093,,,480.6190476,0.925,112.85,122,,,,,,,,3.106701409,,,,,,,,,3.075058256,3.276444453,,,,,,,,,3.263777326,,,,,,-6577.35,,,,,0.66820217,31042,46456,0.509288883,0.827115457,36666,,,31242.34043,42089.65957,,,,,,,,,,,,,37830,25582.68085,50077.31915,,,,,,0.654626109,1033,1578,,,,,,,,0.348797251,,36666,,,10.48951049,6,572,,,,,,,,,,,,,,,,,,,,,,,,,,22.68940518,12,50269,11.32646932,40.59761333,23.87157095,,,,,,,,,,,,,23.17417043,11.56846238,41.46499227,,,,39.78595158,20,50269,24.30229284,61.44617538,,,,,,,,,,,,,40.88140305,24.97142305,63.13801133,,,,46.14222993,33,71518,31.76218794,64.80084632,,,,,,,,,,,,,47.31996903,32.57288935,66.45482989,,,,,,900,,,0,-888,0.605157233,4811,7950,,,0.445,,,,,1.415572922,,,,,0.86776636,3209,3698,0.824727965,0.910804755,0.104228708,350,3358,0.04575881,0.162698605,0.77663602,2872,3698,0.718720134,0.834551905,10093,,,,,0.213811553,2158,10093,,,0.197562667,1994,10093,,,0.005449321,55,10093,,,0.00208065,21,10093,,,0.002675121,27,10093,,,0.000594471,6,10093,,,0.007728128,78,10093,,,0.971861686,9809,10093,,,0,0,9923,0,0.009125586,0.498563361,5032,10093,,,1,10513,10513,, -21,133,21133,KY,Letcher County,2024,1,16672.39484,703,59284,14690.49533,18654.29436,0,,,,2,,,,2,,,,2,,,,2,16811.80265,14790.12748,18833.47783,,,,,2,,0.277,,,0.236,0.322,5.700489183,,,4.67247574,6.813344545,6.394773953,,,5.269072922,7.62741316,0.100063735,157,1569,0.085215021,0.114912449,0,,,,,,,,,,,,,0.099146422,0.084136731,0.114156112,,,,,,,0.286,,,0.236,0.34,0.416,,,0.348,0.49,,,0.214,,,0.37,,,0.313,0.429,0.681733804,14690,21548,,,0.123999516,,,0.098777936,0.153999295,0.24137931,7,29,0.144907761,0.346292388,122.3,26,21253,,,33.43388638,133,3978,27.75167856,39.11609419,,,,,,,,,,,,,33.95142335,28.1150592,39.7877875,,,,,,,0.07340753,1240,16892,0.061492637,0.085322424,0.000564626,12,21253,,,1771.083333,0.000382903,8,20893,,,2611.625,0.00081367,17,20893,,,1229,8805,,,,,,,,,8798,0.29,,,,,,,,,0.29,0.27,,,,,,,,,0.27,0.789425766,12139,15377,0.757252011,0.821599521,0.555066079,2772,4994,0.46131675,0.648815409,0.06102096,361,5916,,,0.352,1565,,0.237617021,0.466382979,,,,,,,,,,0.632075472,0.103009249,1,0.338799132,0.267916065,0.409682199,5.584986332,79681,14267,4.469024744,6.700947921,0.266464471,1230,4616,0.169157325,0.363771618,4.234696278,9,21253,,,133.0168026,144,108257,111.2907249,154.7428804,,,,,,,,,,,,,132.872708,110.8623128,154.8831031,,,,7.3,,,,,1,,,,,0.133333333,1280,9600,0.102000908,0.164665759,0.102360515,0.072911003,0.131810027,0.036458333,0.018287791,0.054628876,0.002083333,0,0.005865351,0.729245558,5007,6866,0.687225827,0.771265289,,,,,,,,,,,,,0.73125884,0.680302214,0.782215466,0.426,,6866,0.3392419,0.5127581,68.76806066,,,67.54044123,69.99568008,,,,,,,,,,,,,68.61556744,67.37193181,69.85920307,,,,815.9584111,703,59284,750.8413857,881.0754365,,,,,,,,,,,,,821.062288,754.9646806,887.1598955,,,,59.28560842,12,20241,30.63373899,103.5600269,,,,,,,,,,,,,61.89714757,31.98315938,108.1218603,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.177,,,0.153,0.203,0.224,,,0.196,0.254,0.131,,,0.113,0.151,50,9,17999,,,0.214,4650,,,,,,24519,,,48.42312439,31,64019,32.90116368,68.73275981,,,,,,,,,,,,,48.18657843,32.51128212,68.78933694,,,,0.406,,,0.387,0.423,0.085704993,1054,12298,0.070215631,0.101194354,0.041277743,199,4821,0.026979871,0.055575616,0.001531614,32,20893,,,652.90625,0.927076271,218.79,236,,,,,,,,3.120893866,,,,,,,,,3.135374332,2.884781085,,,,,,,,,2.883526783,0.060041771,,,,,-11233.5035,,,,,0.695167508,34985,50326,0.540813255,0.849521761,37854,,,32593.57447,43114.42553,,,,,,,28550,23906.76596,33193.23404,17011,9504.617021,24517.38298,39010,35495.10638,42524.89362,,,,,,0.716604245,2296,3204,,,63.99393677,,,,,0.33785069,,37854,,,4.230118443,5,1182,,,7.135767711,11,154153,3.562149532,12.76785954,,,,,,,,,,,,,7.323909903,3.656069436,13.10449789,,,,18.22149192,19,108257,10.61469053,29.17437371,17.55082812,,,,,,,,,,,,,18.6872998,10.88604078,29.92017724,,,,24.01692269,26,108257,15.68865128,35.19035636,,,,,,,,,,,,,23.72726928,15.35503763,35.02613008,,,,27.89436469,43,154153,20.18729004,37.57352618,,,,,,,,,,,,,27.96401963,20.15400567,37.79923084,,,,10.95238095,,2100,,,13,10,0.532497814,9135,17155,,,0.501,,,,,13.4905855,,,,,0.740463458,6231,8415,0.702339706,0.77858721,0.096959957,724,7467,0.06861303,0.125306884,0.795959596,6698,8415,0.762334488,0.829584704,20893,,,,,0.216292538,4519,20893,,,0.211123343,4411,20893,,,0.00655722,137,20893,,,0.00229742,48,20893,,,0.00344613,72,20893,,,0,0,20893,,,0.010099076,211,20893,,,0.969750634,20261,20893,,,0.001474999,30,20339,0,0.00684504,0.506246111,10577,20893,,,1,21548,21548,, -21,135,21135,KY,Lewis County,2024,1,14525.89859,350,36511,12183.1259,16868.67127,0,,,,2,,,,2,,,,2,,,,2,14766.6256,12367.85274,17165.39847,,,,,2,,0.299,,,0.256,0.342,6.047384663,,,4.992931702,7.296545261,6.632864741,,,5.373496634,8.071604441,0.090026478,102,1133,0.073360124,0.106692833,0,,,,,,,,,,,,,0.089285714,0.072585228,0.105986201,,,,,,,0.317,,,0.263,0.371,0.431,,,0.348,0.52,7,0.005373879,0.176,,,0.382,,,0.32,0.444,0.030504587,399,13080,,,0.129948308,,,0.101801387,0.163117449,0.296296296,8,27,0.194109996,0.401266591,284.9,37,12987,,,38.96103896,105,2695,31.50871113,46.41336679,,,,,,,,,,,,,40.43126685,32.6977191,48.16481459,,,,,,,0.078929702,823,10427,0.065823319,0.092036085,0.000154,2,12987,,,6493.5,0.000308785,4,12954,,,3238.5,0.000385981,5,12954,,,2590.8,3783,,,,,,,,,3792,0.3,,,,,,,,,0.3,0.32,,,,,,,,,0.32,0.786692974,7177,9123,0.75157616,0.821809787,0.399932728,1189,2973,0.314592706,0.485272749,0.071740079,329,4586,,,0.312,886,,0.196425532,0.427574468,,,,,,,,,,,,,0.34074344,0.25476298,0.426723901,5.098919876,83556,16387,3.960257604,6.237582147,0.226421405,677,2990,0.121996984,0.330845825,3.08000308,4,12987,,,122.5045372,81,66120,97.28628553,152.2619543,,,,,,,,,,,,,125.5405217,99.69729545,156.0354058,,,,8,,,,,0,,,,,0.111961723,585,5225,0.071026107,0.152897338,0.093812375,0.054018086,0.133606664,0.003827751,0,0.012745445,0.01722488,0.001632875,0.032816886,0.765401056,3044,3977,0.707738753,0.823063359,,,,,,,,,,,,,0.642634855,0.569001672,0.716268038,0.594,,3977,0.499166129,0.688833871,70.92359143,,,69.38189326,72.4652896,,,,,,,,,,,,,70.69907262,69.14039919,72.25774605,,,,699.4002434,350,36511,620.9809308,777.8195559,,,,,,,,,,,,,707.8343626,628.0054984,787.6632267,,,,86.36256575,11,12737,43.11188166,154.5264859,,,,,,,,,,,,,90.08271231,44.96896542,161.1828557,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.19,,,0.163,0.216,0.232,,,0.204,0.265,0.137,,,0.118,0.16,73.1,8,10939,,,0.176,2300,,,,0.005373879,74.53570527,13870,,,53.13227406,21,39524,32.88971507,81.2183249,,,,,,,,,,,,,54.54262116,33.76274215,83.37419026,,,,0.416,,,0.398,0.434,0.092516283,696,7523,0.075835432,0.109197135,0.044590164,136,3050,0.030292292,0.058888036,0.001003551,13,12954,,,996.4615385,0.925,131.35,142,,,,,,,,2.653564106,,,,,,,,,2.64895752,2.583727551,,,,,,,,,2.601705155,0.0457565,,,,,-1922.856,,,,,0.808302605,33977,42035,0.66090527,0.95569994,44098,,,37721.14894,50474.85106,,,,,,,,,,,,,36345,30805.76596,41884.23404,,,,,,0.690127077,1412,2046,,,,,,,,0.290013153,,44098,,,3.841229193,3,781,,,,,,,,,,,,,,,,,,,,,,,,,,20.82348322,14,66120,11.08762781,35.6087905,21.17362371,,,,,,,,,,,,,21.30292718,11.34291153,36.42865426,,,,16.63641863,11,66120,8.304840241,29.76714839,,,,,,,,,,,,,17.04871282,8.510656015,30.50485658,,,,39.68083737,37,93244,27.93897148,54.69480733,,,,,,,,,,,,,40.64236912,28.61597857,56.02015218,,,,17.14285714,,1400,,,17,7,0.569230769,5883,10335,,,0.528,,,,,4.582534428,,,,,0.790624343,3761,4757,0.755852439,0.825396247,0.09208667,391,4246,0.04897966,0.13519368,0.788522178,3751,4757,0.744326773,0.832717583,12954,,,,,0.224409449,2907,12954,,,0.1987803,2575,12954,,,0.006175699,80,12954,,,0.003473831,45,12954,,,0.00061757,8,12954,,,0,0,12954,,,0.009263548,120,12954,,,0.970433843,12571,12954,,,0,0,12322,0,0.007348904,0.496603366,6433,12954,,,1,13080,13080,, -21,137,21137,KY,Lincoln County,2024,1,13726.56976,610,67548,12042.86838,15410.27113,0,,,,2,,,,2,,,,2,,,,2,13763.06923,12046.33034,15479.80811,,,,,2,,0.242,,,0.205,0.286,5.188684081,,,4.170745594,6.323339073,6.114857656,,,4.884442832,7.488407593,0.094671951,215,2271,0.08263099,0.106712912,0,,,,,,,,,,,,,0.094495413,0.082215974,0.106774852,,,,,,,0.259,,,0.206,0.314,0.41,,,0.324,0.496,7.1,0.089097156,0.135,,,0.332,,,0.273,0.397,0.401029866,9735,24275,,,0.137543599,,,0.10642882,0.171999343,0.1875,6,32,0.100598348,0.289089816,325.9,79,24243,,,40.17244758,205,5103,34.67314731,45.67174785,,,,,,,,,,,,,41.00811619,35.20748469,46.80874769,,,,,,,0.078079756,1537,19685,0.066164863,0.08999465,0.000247494,6,24243,,,4040.5,8.21018E-05,2,24360,,,12180,0.000944171,23,24360,,,1059.130435,3470,,,,,,,8419,,3305,0.33,,,,,,,0.31,,0.33,0.29,,,,,,,0.23,,0.29,0.825668321,13806,16721,0.799740573,0.85159607,0.487372852,2779,5702,0.412842262,0.561903442,0.047354949,444,9376,,,0.242,1402,,0.156212766,0.327787234,,,,,,,0.697674419,0.081130288,1,0.867403315,0.750092353,0.984714277,0.122362052,0.077544893,0.167179211,5.027559258,97781,19449,4.137004525,5.91811399,0.313891286,1819,5795,0.218603285,0.409179286,11.13723549,27,24243,,,127.4947286,156,122358,107.487543,147.5019142,,,,,,,,,,,,,131.9432991,110.9673502,152.919248,,,,8.2,,,,,0,,,,,0.110077519,1065,9675,0.082220883,0.137934156,0.084117032,0.057805166,0.110428898,0.023255814,0.011384537,0.035127091,0.011369509,0.003722498,0.01901652,0.815463701,7773,9532,0.784159126,0.846768276,,,,,,,,,,,,,0.731213243,0.691002527,0.77142396,0.424,,9532,0.362122802,0.485877198,71.24587735,,,70.09918434,72.39257035,,,,,,,,,,,,,71.10731485,69.95018591,72.26444379,,,,669.8304413,610,67548,613.6609879,725.9998947,,,,,,,,,,,,,679.7357199,621.6608615,737.8105782,,,,78.96087489,20,25329,48.23135373,121.9486672,,,,,,,,,,,,,68.60475088,39.21354281,111.4098173,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.159,,,0.135,0.185,0.207,,,0.178,0.239,0.117,,,0.099,0.137,,,,,,0.135,3280,,,,0.089097156,2204.441835,24742,,,47.77635207,35,73258,33.27797975,66.44534026,,,,,,,,,,,,,49.3304122,34.16274449,68.93430654,,,,0.4,,,0.38,0.418,0.092645791,1290,13924,0.07596494,0.109326643,0.043528633,263,6042,0.029230761,0.057826505,0.001108374,27,24360,,,902.2222222,0.91,224.77,247,,,,,,,,2.822411615,,,,,,,,,2.833862569,2.654945183,,,,,,,,,2.670672221,0.01987117,,,,,1100.868,,,,,0.775363053,38282,49373,0.67801754,0.872708566,49814,,,43893.48936,55734.51064,,,,,,,33600,22481.02128,44718.97872,,,,50143,45293.6383,54992.3617,,,,,,0.618711386,2103,3399,,,59.95662118,,,,,0.292247159,,49814,,,2.530044276,4,1581,,,,,,,,,,,,,,,,,,,,,,,,,,13.67420249,17,122358,7.815988222,22.20604816,13.89365632,,,,,,,,,,,,,14.54943109,8.316256987,23.62736457,,,,12.25910852,15,122358,6.861329977,20.21953519,,,,,,,,,,,,,12.15267229,6.643979025,20.39011912,,,,30.95920978,53,171193,23.19057259,40.49540865,,,,,,,,,,,,,31.00506003,23.01255317,40.87630635,,,,,,2600,,,-888,36,0.589413989,10913,18515,,,0.664,,,,,12.87117102,,,,,0.785699546,7615,9692,0.750864989,0.820534103,0.108131868,984,9100,0.073342427,0.14292131,0.791064796,7667,9692,0.757542628,0.824586964,24360,,,,,0.242610837,5910,24360,,,0.186206897,4536,24360,,,0.021756979,530,24360,,,0.002873563,70,24360,,,0.003448276,84,24360,,,8.21018E-05,2,24360,,,0.021387521,521,24360,,,0.935632184,22792,24360,,,0.003353336,76,22664,0,0.008333227,0.508087028,12377,24360,,,0.998928939,24249,24275,, -21,139,21139,KY,Livingston County,2024,1,11245.33133,255,24680,8768.534041,13722.12863,0,,,,2,,,,2,,,,2,,,,2,11230.54587,8712.614652,13748.47709,,,,,2,,0.215,,,0.181,0.255,4.907385997,,,3.937919953,6.012264295,5.798882518,,,4.647061167,7.108896729,0.083333333,54,648,0.062052743,0.104613923,0,,,,,,,,,,,,,0.085808581,0.063508641,0.108108521,,,,,,,0.227,,,0.181,0.277,0.386,,,0.306,0.47,6.9,0.066645978,0.151,,,0.294,,,0.242,0.355,0.482448245,4288,8888,,,0.139778124,,,0.110320431,0.174891774,0,0,6,0,0.28246769,256.7,23,8959,,,31.70874927,54,1703,23.82058836,41.37303957,,,,,,,,,,,,,31.86743149,23.65262189,42.01323561,,,,,,,0.066647556,465,6977,0.055924152,0.077370961,0.000334859,3,8959,,,2986.333333,0.00011157,1,8963,,,8963,0.000557849,5,8963,,,1792.6,4542,,,,,,,,,4554,0.43,,,,,,,,,0.43,0.37,,,,,,,,,0.37,0.87026862,5702,6552,0.837012187,0.903525054,0.505443235,975,1929,0.383431526,0.627454944,0.047671233,174,3650,,,0.226,403,,0.15093617,0.30106383,,,,,,,,,,0.452380952,0,0.928129188,0.274639423,0.148485134,0.400793712,4.021506294,94244,23435,3.031182502,5.011830086,0.273173392,501,1834,0.174864933,0.37148185,13.39435205,12,8959,,,100.6454436,46,45705,73.68511412,134.2469177,,,,,,,,,,,,,103.765536,75.687294,138.8464512,,,,8.9,,,,,1,,,,,0.105124836,400,3805,0.069265215,0.140984457,0.102100505,0.061295215,0.142905795,0.004730618,0,0.011519035,0.002102497,0,0.006277878,0.782196471,2970,3797,0.715376437,0.849016504,,,,,,,,,,,,,0.793701506,0.748056411,0.839346601,0.373,,3797,0.280232013,0.465767988,72.68648764,,,70.94193253,74.43104274,,,,,,,,,,,,,72.47939552,70.72198476,74.23680629,,,,628.4253564,255,24680,544.2967866,712.5539261,,,,,,,,,,,,,635.659356,549.1731569,722.1455552,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.145,,,0.124,0.17,0.196,,,0.17,0.227,0.105,,,0.089,0.124,91.2,7,7673,,,0.151,1360,,,,0.066645978,634.4030642,9519,,,,,,,,,,,,,,,,,,,,,,,,,,0.38,,,0.361,0.399,0.074961059,385,5136,0.060663187,0.089258932,0.043727225,84,1921,0.029429353,0.058025098,0.001450407,13,8963,,,689.4615385,0.925,70.3,76,,,,,,,,2.865911529,,,,,,,,,2.8837772,2.663106096,,,,,,,,,2.736488406,0.01803844,,,,,2163.308,,,,,0.647278959,32863,50771,0.494012455,0.800545462,55355,,,48240.61702,62469.38298,,,,,,,,,,142596,32622.7234,252569.2766,55714,44411.53192,67016.46809,,,,,,0.614402917,674,1097,,,,,,,,0.23103604,,55355,,,2.096436059,1,477,,,,,,,,,,,,,,,,,,,,,,,,,,19.91856052,10,45705,8.599420657,39.24750482,21.87944426,,,,,,,,,,,,,20.90408964,9.024902177,41.18939005,,,,,,,,,,,,,,,,,,,,,,,,,,,31.10903718,20,64290,19.0022081,48.04538482,,,,,,,,,,,,,29.41993691,17.43611915,46.49618402,,,,25,,800,,,12,8,0.696796657,5003,7180,,,0.595,,,,,3.683301817,,,,,0.819338422,2898,3537,0.79424851,0.844428335,0.103944897,332,3194,0.06061808,0.147271714,0.83008199,2936,3537,0.791316881,0.8688471,8963,,,,,0.203280152,1822,8963,,,0.225705679,2023,8963,,,0.006917327,62,8963,,,0.005801629,52,8963,,,0.004574361,41,8963,,,0.001227268,11,8963,,,0.028115586,252,8963,,,0.937855629,8406,8963,,,0.000234769,2,8519,0,0.009460401,0.504407007,4521,8963,,,0.953420342,8474,8888,, -21,141,21141,KY,Logan County,2024,1,10693.36284,518,75766,9265.842925,12120.88276,0,,,,2,,,,2,15529.62406,8691.812698,25613.75321,1,,,,2,9989.684485,8583.143113,11396.22586,,,,,2,,0.22,,,0.188,0.256,4.867661141,,,3.936221639,6.02500456,6.034341882,,,4.941541738,7.433699632,0.082739509,209,2526,0.071996098,0.093482921,0,,,,,,,0.108527132,0.0548506,0.162203663,,,,0.078474353,0.067438371,0.089510336,,,,,,,0.229,,,0.186,0.278,0.414,,,0.335,0.509,7.9,0.03362094,0.122,,,0.309,,,0.257,0.369,0.433617673,11895,27432,,,0.146201731,,,0.115366234,0.185308547,0.321428571,9,28,0.221187685,0.422182702,273.7,76,27771,,,38.33922262,217,5660,33.23805602,43.44038921,,,,,,,52.7638191,32.66163564,80.65510235,,,,38.35730665,32.81493985,43.89967345,,,,,,,0.076786507,1730,22530,0.064871613,0.088701401,0.000216053,6,27771,,,4628.5,0.000251103,7,27877,,,3982.428571,0.00057395,16,27877,,,1742.3125,3571,,,,,,,3907,,3564,0.44,,,,,,,0.51,,0.44,0.49,,,,,,,0.46,,0.49,0.877206977,16495,18804,0.857069622,0.897344333,0.525459796,3457,6579,0.444906746,0.606012847,0.034866828,432,12390,,,0.195,1285,,0.118744681,0.271255319,,,,,,,0.177285319,0.082569503,0.272001134,0.478915663,0.264366095,0.69346523,0.186218363,0.118592561,0.253844166,4.364928511,103798,23780,3.868500314,4.861356709,0.206422018,1350,6540,0.139785148,0.273058889,14.76360232,41,27771,,,82.1487773,112,136338,66.93461084,97.36294377,,,,,,,,,,,,,84.5630907,68.15202315,100.9741583,,,,8.1,,,,,1,,,,,0.107552581,1125,10460,0.081004202,0.134100961,0.091304348,0.064513852,0.118094844,0.011854685,0.004521327,0.019188042,0.008126195,0.001526028,0.014726362,0.84777435,9618,11345,0.820990973,0.874557727,,,,,,,,,,,,,0.857142857,0.82312289,0.891162825,0.423,,11345,0.360211789,0.485788211,74.16255106,,,73.08769397,75.23740816,,,,,,,,,,,,,74.57372227,73.50148875,75.64595578,,,,510.8124181,518,75766,464.6209305,557.0039057,,,,,,,605.1385589,416.5495397,849.8395248,,,,504.7750309,456.4568863,553.0931755,,,,114.0088357,32,28068,77.98195921,160.9464589,,,,,,,,,,,,,93.00752515,58.28732084,140.8145108,,,,9.56556397,24,2509,6.128837328,14.23280095,,,,,,,,,,,,,,,,,,,,,,0.145,,,0.125,0.169,0.198,,,0.172,0.227,0.11,,,0.094,0.129,108.8,25,22976,,,0.122,3320,,,,0.03362094,902.2179342,26835,,,17.01320954,14,82289,9.301279972,28.54527473,,,,,,,,,,,,,19.24663184,10.52231273,32.29257784,,,,0.402,,,0.383,0.419,0.085599447,1363,15923,0.070110086,0.101088809,0.055877244,386,6908,0.036813414,0.074941074,0.000645694,18,27877,,,1548.722222,0.886633663,268.65,303,,,0.143726236,189,1315,0.04787079,0.239581681,3.073835693,,,,,,,2.339723976,,3.16251376,3.036385019,,,,,,,2.158547116,,3.12994176,0.105848563,,,,,-7574.82415,,,,,0.700100835,36798,52561,0.617208915,0.782992755,56823,,,49892.10638,63753.89362,,,,,,,34179,21320.44681,47037.55319,47654,34439.19149,60868.80851,62107,57206.40426,67007.59575,,,,,,0.555358725,2508,4516,,,35.96188075,,,,,0.225067314,,56823,,,2.30813618,4,1733,,,,,,,,,,,,,,,,,,,,,,,,,,12.3888586,16,136338,6.933950112,20.43353822,11.73553962,,,,,,,,,,,,,12.9664993,7.088905828,21.75558257,,,,7.334712259,10,136338,3.517279626,13.48879699,,,,,,,,,,,,,,,,,,,24.23080367,46,189841,17.73999368,32.32049647,,,,,,,,,,,,,23.8225695,17.01919292,32.4395782,,,,13.92857143,,2800,,,25,14,0.602979243,12346,20475,,,0.655,,,,,17.34718459,,,,,0.738986175,8018,10850,0.716395227,0.761577124,0.08723748,918,10523,0.062775349,0.11169961,0.81843318,8880,10850,0.785282531,0.851583828,27877,,,,,0.24091545,6716,27877,,,0.189654554,5287,27877,,,0.058184166,1622,27877,,,0.004699214,131,27877,,,0.003623058,101,27877,,,0.000502206,14,27877,,,0.035082685,978,27877,,,0.8815511,24575,27877,,,0.001789326,46,25708,0,0.005758156,0.500914733,13964,27877,,,0.75791047,20791,27432,, -21,143,21143,KY,Lyon County,2024,1,9547.16711,168,22509,6905.066894,12189.26733,0,,,,2,,,,2,,,,2,,,,2,10876.35672,7787.166295,13965.54715,,,,,2,,0.201,,,0.171,0.235,4.463572718,,,3.633261864,5.653034736,5.521144915,,,4.478841336,7.007797013,0.076487252,27,353,0.048761413,0.104213091,0,,,,,,,,,,,,,0.072289157,0.04443244,0.100145873,,,,,,,0.223,,,0.181,0.272,0.385,,,0.313,0.494,7.9,0.010259446,0.134,,,0.281,,,0.232,0.345,0.636290323,5523,8680,,,0.155596767,,,0.125423886,0.20271975,0.333333333,5,15,0.193378406,0.471634149,,,,,,23.29450915,28,1202,15.47903216,33.66705153,,,,,,,,,,,,,23.6294896,15.29175978,34.88178799,,,,,,,0.076240493,421,5522,0.06313411,0.089346876,0.000340793,3,8803,,,2934.333333,0.000219756,2,9101,,,4550.5,0.000659268,6,9101,,,1516.833333,3660,,,,,,,,,3655,0.45,,,,,,,,,0.44,0.39,,,,,,,,,0.4,0.905156137,6232,6885,0.873579883,0.93673239,0.305084746,666,2183,0.220032774,0.390136717,0.042095416,135,3207,,,0.181,221,,0.111893617,0.250106383,,,,,,,,,,,,,0.109141791,0.029093438,0.189190144,4.090944464,115651,28270,3.014298858,5.16759007,0.164154104,196,1194,0.053938134,0.274370074,7.951834602,7,8803,,,133.3753668,55,41237,100.4765792,173.6063729,,,,,,,,,,,,,145.5918037,109.3730439,189.9657223,,,,8.5,,,,,0,,,,,0.105666156,345,3265,0.07164696,0.139685352,0.089723688,0.055394594,0.124052782,0.015313936,0,0.031050647,0.006125574,0,0.013329477,0.883992223,2728,3086,0.837960622,0.930023824,,,,,,,,,,,,,0.883406287,0.832279297,0.934533277,0.332,,3086,0.238568695,0.425431305,75.62591612,,,73.62034876,77.63148347,,,,,,,,,,,,,74.57723003,72.32668228,76.82777778,,,,449.8799686,168,22509,372.6572846,527.1026526,,,,,,,,,,,,,491.8450186,404.5753851,579.114652,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.132,,,0.114,0.154,0.179,,,0.156,0.21,0.103,,,0.088,0.123,150.5,12,7975,,,0.134,1160,,,,0.010259446,85.29703569,8314,,,,,,,,,,,,,,,,,,,,,,,,,,0.386,,,0.368,0.401,0.084153774,359,4266,0.068664412,0.099643136,0.048229088,64,1327,0.031548237,0.064909939,0.001318536,12,9101,,,758.4166667,0.975,67.275,69,,,,,,,,3.709395986,,,,,,,,,3.8294329,2.664316872,,,,,,,,,2.732090064,0.015943509,,,,,923.5313,,,,,0.679009807,42927,63220,0.474097704,0.88392191,58938,,,51305.31915,66570.68085,,,,,,,26359,13332.44681,39385.55319,83103,2717.978723,163488.0213,64343,54569.21277,74116.78723,,,,,,0.58989899,584,990,,,58.58322469,,,,,0.216990736,,58938,,,7.326007326,2,273,,,,,,,,,,,,,,,,,,,,,,,,,,27.63795918,14,41237,13.79676964,49.45194336,33.95009336,,,,,,,,,,,,,31.05025061,15.50017323,55.55747531,,,,31.52508669,13,41237,16.78578095,53.90885835,,,,,,,,,,,,,35.04987867,18.66258423,59.93635998,,,,22.56474346,13,57612,12.01477555,38.58639853,,,,,,,,,,,,,25.01828259,13.32118181,42.78202517,,,,,,600,,,-888,18,0.606599713,4228,6970,,,0.528,,,,,13.32274379,,,,,0.819448746,2646,3229,0.750993124,0.887904367,0.089008552,281,3157,0.055573867,0.122443238,0.856302261,2765,3229,0.83607996,0.876524562,9101,,,,,0.13646852,1242,9101,,,0.237885947,2165,9101,,,0.078672673,716,9101,,,0.003625975,33,9101,,,0.00560378,51,9101,,,0,0,9101,,,0.025052192,228,9101,,,0.873420503,7949,9101,,,0,0,8433,0,0.009607646,0.403911658,3676,9101,,,1,8680,8680,, -21,145,21145,KY,McCracken County,2024,1,10502.14431,1260,181035,9585.071829,11419.21679,0,,,,2,,,,2,19151.13278,15302.5334,22999.73216,,,,,2,9765.078561,8794.030651,10736.12647,,,,,2,,0.199,,,0.17,0.232,4.3998931,,,3.570241099,5.407778945,5.847653414,,,4.878420535,6.98250717,0.090802806,466,5132,0.082941559,0.098664053,0,,,,,,,0.181169758,0.152657156,0.209682359,0.116182573,0.075725046,0.156640099,0.072456321,0.064311623,0.080601019,,,,0.103139014,0.063220194,0.143057833,0.214,,,0.17,0.26,0.339,,,0.278,0.404,6.8,0.151730209,0.115,,,0.281,,,0.232,0.334,0.864677716,58690,67875,,,0.135941273,,,0.109110722,0.167645906,0.205882353,14,68,0.144948006,0.272481797,501.1,338,67454,,,29.93689395,389,12994,26.96188683,32.91190107,,,,,,,47.56242568,37.71404554,59.19555587,24.75247525,13.8537725,40.82544368,25.48091449,22.34105061,28.62077838,,,,60.24096386,41.96003856,83.78059788,0.056935935,3011,52884,0.04859551,0.065276361,0.001008094,68,67454,,,991.9705882,0.000933472,63,67490,,,1071.269841,0.002592977,175,67490,,,385.6571429,3054,,,,,,,5517,,2889,0.53,,,,,,0.36,0.44,,0.53,0.51,,,,,,0.57,0.41,0.27,0.52,0.927222925,44006,47460,0.916631378,0.937814471,0.649344282,10596,16318,0.591853512,0.706835053,0.040096231,1200,29928,,,0.217,3090,,0.145510638,0.288489362,,,,,,,0.429809359,0.315528849,0.544089868,0.46799431,0.382441233,0.553547388,0.173243773,0.124301707,0.222185839,4.966465206,118331,23826,4.388360189,5.544570223,0.294497722,4330,14703,0.234848771,0.354146673,16.30740949,110,67454,,,90.81328,299,329247,80.51961953,101.1069405,,,,,,,86.86149794,59.01817361,123.2929628,,,,95.50434344,83.91766535,107.0910215,,,,9.5,,,,,0,,,,,0.143062804,3975,27785,0.118721402,0.167404205,0.118870997,0.097061734,0.14068026,0.02353788,0.013101965,0.033973795,0.007018175,0.003156938,0.010879413,0.839117897,24733,29475,0.812971047,0.865264747,,,,,,,0.804895353,0.726432616,0.88335809,0.827195467,0.793597778,0.860793156,0.855149465,0.825707702,0.884591228,0.133,,29475,0.111652713,0.154347287,74.80331726,,,74.09465793,75.51197659,,,,,,,68.20095539,65.83627291,70.56563787,94.51099481,77.43161248,111.5903771,75.27092142,74.51311704,76.02872579,,,,502.431002,1260,181035,472.90445,531.9575541,,,,,,,804.5608256,681.3350564,927.7865948,,,,481.7970292,450.7380264,512.856032,,,,48.62592546,31,63752,33.03895718,69.02061975,,,,,,,,,,,,,42.07337597,25.69951108,64.97891683,,,,5.499715532,29,5273,3.683245807,7.898508902,,,,,,,,,,,,,,,,,,,,,,0.134,,,0.114,0.155,0.191,,,0.165,0.22,0.106,,,0.091,0.124,240.8,137,56889,,,0.115,7730,,,,0.151730209,9948.19112,65565,,,18.13455842,36,198516,12.70122177,25.10587282,,,,,,,,,,,,,18.25494861,12.31653717,26.06007423,,,,0.379,,,0.361,0.396,0.065959737,2513,38099,0.054044843,0.07787463,0.035026721,544,15531,0.024303317,0.045750125,0.004074678,275,67490,,,245.4181818,0.874774898,641.21,733,,,,,,,,3.373260201,,,,,,,2.73260231,3.384461582,3.491657798,3.254967137,,,,,,,2.600634992,3.010807834,3.429687466,0.131213877,,,,,-1357.1035,,,,,0.66875782,39016,58341,0.584922284,0.752593357,60026,,,55044.38298,65007.61702,,,,66635,2594.829787,130675.1702,27500,20270.04255,34729.95745,,,,65102,60322.93617,69881.06383,,,,,,0.557009158,5535,9937,,,54.43215101,,,,,0.265018492,,60026,,,7.581315725,31,4089,,,4.570911157,21,459427,2.829466049,6.98712325,,,,,,,,,,,,,3.140235047,1.622605272,5.485358667,,,,21.04660711,70,329247,16.20845206,26.87604742,21.26063411,,,,,,,,,,,,,23.68014663,18.07044656,30.48104267,,,,17.31223064,57,329247,13.11211442,22.43000283,,,,,,,,,,,,,17.56401718,12.95031975,23.28733861,,,,18.50130706,85,459427,14.77818696,22.8771527,,,,,,,20.13004006,9.653136655,37.01986038,,,,18.31803777,14.2798091,23.14373872,,,,18.33333333,,6600,,,45,76,0.661424625,33521,50680,,,0.707,,,,,57.39570152,,,,,0.667777778,18030,27000,0.644258519,0.691297037,0.116420868,3055,26241,0.095346039,0.137495697,0.884666667,23886,27000,0.86557116,0.903762174,67490,,,,,0.215217069,14525,67490,,,0.210520077,14208,67490,,,0.109142095,7366,67490,,,0.003852423,260,67490,,,0.009527337,643,67490,,,0.001037191,70,67490,,,0.030182249,2037,67490,,,0.823855386,55602,67490,,,0.001461161,93,63648,0,0.00347832,0.514639206,34733,67490,,,0.268243094,18207,67875,, -21,147,21147,KY,McCreary County,2024,1,13313.89736,449,47953,11525.16721,15102.62752,0,,,,2,,,,2,,,,2,,,,2,14701.38524,12649.7984,16752.97208,,,,,2,,0.314,,,0.274,0.355,5.946819697,,,4.938801842,7.122530904,6.552332329,,,5.307802031,7.876485052,0.104166667,145,1392,0.088118906,0.120214428,0,,,,,,,,,,,,,0.104803493,0.088607419,0.120999568,,,,,,,0.314,,,0.266,0.365,0.444,,,0.364,0.525,6.7,0.018711481,0.187,,,0.385,,,0.329,0.448,1,16888,16888,,,0.128387939,,,0.100214034,0.161644041,0.416666667,10,24,0.311849505,0.514990361,248.6,42,16892,,,44.40944882,141,3175,37.0791463,51.73975134,,,,,,,,,,,,,46.75767918,38.92791405,54.58744431,,,,,,,0.080234834,1025,12775,0.065936961,0.094532706,5.91996E-05,1,16892,,,16892,0.000119753,2,16701,,,8350.5,0.001197533,20,16701,,,835.05,3735,,,,,,,,,3747,0.3,,,,,,,,,0.3,0.25,,,,,,,,,0.25,0.779807205,9222,11826,0.738659881,0.820954528,0.405850488,1873,4615,0.311449195,0.50025178,0.05170587,244,4719,,,0.43,1513,,0.288212766,0.571787234,,,,,,,,,,,,,0.355725191,0.279691604,0.431758777,6.327002967,74627,11795,5.197270798,7.456735137,0.215921483,792,3668,0.117593759,0.314249207,4.143973479,7,16892,,,96.43649715,83,86067,76.81113167,119.5475476,,,,,,,,,,,,,106.6430838,84.81640934,132.3721858,,,,7.6,,,,,0,,,,,0.139854487,865,6185,0.094300067,0.185408906,0.111870196,0.068169996,0.155570397,0.031366209,0.011825739,0.050906679,0.008084074,0,0.020694025,0.779635902,3683,4724,0.709678608,0.849593196,,,,,,,,,,,,,0.791428571,0.747041282,0.835815861,0.544,,4724,0.439074495,0.648925506,70.79458677,,,69.56780319,72.02137036,,,,,,,,,,,,,69.81796976,68.49076164,71.14517788,,,,724.8225809,449,47953,656.1604939,793.484668,,,,,,,,,,,,,770.0531245,695.3765178,844.7297313,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.192,,,0.167,0.218,0.225,,,0.196,0.254,0.153,,,0.131,0.176,188.9,27,14291,,,0.187,3190,,,,0.018711481,342.5323742,18306,,,,,,,,,,,,,,,,,,,,,,,,,,0.427,,,0.411,0.444,0.098030635,896,9140,0.078966805,0.117094464,0.036001036,139,3861,0.022894653,0.049107419,0.002275313,38,16701,,,439.5,0.925,168.35,182,,,,,,,,3.10479501,,,,,,,,,3.117478131,3.024693782,,,,,,,,,3.036382712,0.026284738,,,,,-4573.93,,,,,0.756544503,30634,40492,0.501976971,1.011112034,35443,,,30790.23404,40095.76596,,,,,,,,,,,,,34968,27953.70213,41982.29787,,,,,,0.792487236,2173,2742,,,,,,,,0.410744012,,35443,,,3.205128205,3,936,,,,,,,,,,,,,,,,,,,,,,,,,,20.93693312,17,86067,12.19653509,33.52205812,19.75205363,,,,,,,,,,,,,24.76204952,14.42480636,39.64644002,,,,17.42828262,15,86067,9.75447748,28.74530177,,,,,,,,,,,,,19.50788118,10.91841301,32.17528335,,,,28.81702016,35,121456,20.0721104,40.07749915,,,,,,,,,,,,,32.24350293,22.4587812,44.84290723,,,,11.17647059,,1700,,,12,7,0.478972832,6435,13435,,,0.46,,,,,10.49204537,,,,,0.700362976,3859,5510,0.638312801,0.762413152,0.10433191,513,4917,0.06356702,0.145096799,0.72123412,3974,5510,0.652212826,0.790255414,16701,,,,,0.215735585,3603,16701,,,0.164361416,2745,16701,,,0.052451949,876,16701,,,0.007783965,130,16701,,,0.005628406,94,16701,,,0.00053889,9,16701,,,0.027004371,451,16701,,,0.894437459,14938,16701,,,0.002629602,42,15972,0,0.008960824,0.452727382,7561,16701,,,1,16888,16888,, -21,149,21149,KY,McLean County,2024,1,8680.941258,186,25029,6667.077748,10694.80477,0,,,,2,,,,2,,,,2,,,,2,9028.859561,6907.877966,11149.84116,,,,,2,,0.19,,,0.16,0.223,4.474532964,,,3.519766253,5.505077018,5.616183472,,,4.501171913,6.82391637,0.100424328,71,707,0.078268669,0.122579988,0,,,,,,,,,,,,,0.100729927,0.078190903,0.123268952,,,,,,,0.204,,,0.162,0.251,0.389,,,0.308,0.478,8.4,0.010303155,0.109,,,0.279,,,0.228,0.335,0.015297203,140,9152,,,0.148105124,,,0.116813125,0.183827345,0.25,3,12,0.099776571,0.4182543,274.7,25,9100,,,28.78787879,57,1980,21.80365826,37.29803606,,,,,,,,,,,,,29.99464381,22.65763159,38.95053991,,,,,,,0.073646606,536,7278,0.061731713,0.0855615,,0,9100,,,,0.00010983,1,9105,,,9105,0.000439319,4,9105,,,2276.25,3645,,,,,,,,,3616,0.47,,,,,,,,,0.48,0.45,,,,,,,,,0.45,0.912702151,5813,6369,0.884675578,0.940728725,0.590663391,1202,2035,0.479833746,0.701493035,0.044055069,176,3995,,,0.169,351,,0.099893617,0.238106383,,,,,,,,,,,,,0.084564442,0.044333975,0.12479491,4.484271463,123165,27466,3.620351572,5.348191354,0.064995358,140,2154,0.028467714,0.101523002,18.68131868,17,9100,,,74.17912076,34,45835,51.37119752,103.6578861,,,,,,,,,,,,,77.55297553,53.70769003,108.37251,,,,8.7,,,,,1,,,,,0.086782377,325,3745,0.060638068,0.112926685,0.06875,0.041855282,0.095644718,0.009078772,0,0.020915112,0.011748999,0,0.026541546,0.840520749,3099,3687,0.785335624,0.895705874,,,,,,,,,,,,,0.789686552,0.70623207,0.873141034,0.475,,3687,0.385147165,0.564852835,74.90526334,,,73.31473429,76.49579238,,,,,,,,,,,,,74.57996635,72.94154261,76.2183901,,,,503.012911,186,25029,426.5934143,579.4324077,,,,,,,,,,,,,517.5540944,438.4414448,596.666744,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.131,,,0.112,0.151,0.185,,,0.16,0.213,0.099,,,0.084,0.117,91.5,7,7647,,,0.109,1000,,,,0.010303155,98.19937089,9531,,,,,,,,,,,,,,,,,,,,,,,,,,0.392,,,0.372,0.41,0.081577421,422,5173,0.067279549,0.095875294,0.055181696,123,2229,0.037309355,0.073054036,0.000329489,3,9105,,,3035,0.925,93.425,101,,,,,,,,3.113312636,,,,,,,,,3.136414581,3.393773095,,,,,,,,,3.40182132,0.03843169,,,,,662.8682,,,,,0.852899623,50710,59456,0.742624839,0.963174408,55555,,,47691.17021,63418.82979,,,,,,,33932,32976.42553,34887.57447,,,,67567,57155.76596,77978.23404,,,,,,0.580414582,812,1399,,,,,,,,0.230204302,,55555,,,2.06185567,1,485,,,,,,,,,,,,,,,,,,,,,,,,,,23.66849317,12,45835,11.81522651,42.3494722,26.18086615,,,,,,,,,,,,,24.6869513,12.32363714,44.17177511,,,,,,,,,,,,,,,,,,,,,,,,,,,18.5122335,12,64822,9.565541188,32.33714641,,,,,,,,,,,,,19.31247586,9.979038092,33.73500877,,,,,,1000,,,-888,6,0.685591398,4782,6975,,,0.614,,,,,0.450183614,,,,,0.804100859,2902,3609,0.785110055,0.823091663,0.059741024,203,3398,0.028046928,0.091435121,0.837351067,3022,3609,0.791800003,0.882902131,9105,,,,,0.232070291,2113,9105,,,0.200658979,1827,9105,,,0.00944536,86,9105,,,0.004393191,40,9105,,,0.003294893,30,9105,,,0.000549149,5,9105,,,0.024162548,220,9105,,,0.94442614,8599,9105,,,0.000230362,2,8682,0,0.009292144,0.499835255,4551,9105,,,1,9152,9152,, -21,151,21151,KY,Madison County,2024,1,10801.82422,1605,266307,10067.39684,11536.2516,0,,,,2,,,,2,13474.92648,9535.659967,18495.38939,,,,,2,10996.03318,10221.1776,11770.88876,,,,,2,,0.192,,,0.162,0.229,4.293352695,,,3.455154064,5.285663717,5.91056473,,,4.896411968,7.043116522,0.088769903,630,7097,0.082152835,0.09538697,0,,,,0.128440367,0.065628436,0.191252298,0.160839161,0.118260543,0.203417779,0.064516129,0.03182887,0.097203388,0.084305074,0.077468976,0.091141172,,,,0.169354839,0.103338444,0.235371234,0.198,,,0.156,0.249,0.405,,,0.338,0.478,7.1,0.119999056,0.118,,,0.272,,,0.227,0.327,0.752332769,69742,92701,,,0.161086144,,,0.128518376,0.197646583,0.25,12,48,0.175199998,0.329372152,446.8,423,94666,,,14.7610201,437,29605,13.37703401,16.14500619,,,,,,,8.488063661,4.851661779,13.78408361,20.79002079,12.69908481,32.10850094,15.10585841,13.59887723,16.61283959,,,,17.12328767,9.583774124,28.24225899,0.068434016,5168,75518,0.057710612,0.07915742,0.000475356,45,94666,,,2103.688889,0.000472754,45,95187,,,2115.266667,0.001880509,179,95187,,,531.7709497,2567,,,,,,,1887,,2583,0.42,,,,,,0.5,0.44,,0.41,0.4,,,,,,0.46,0.3,,0.4,0.907518745,52529,57882,0.892102026,0.922935465,0.687546186,15817,23005,0.640635387,0.734456984,0.035996245,1687,46866,,,0.189,3686,,0.142531915,0.235468085,,,,0.071090047,0,0.462804776,0.305025997,0.144445407,0.465606587,0.312426036,0.14787246,0.476979611,0.168105295,0.136470232,0.199740359,4.775390625,119805,25088,4.257773226,5.293008024,0.186414392,3606,19344,0.15399109,0.218837694,8.662032831,82,94666,,,109.7716063,511,465512,100.2538268,119.2893859,,,,,,,112.080308,71.0493009,168.1754929,,,,114.9535626,104.6589324,125.2481928,,,,8.4,,,,,0,,,,,0.130184502,4410,33875,0.111686744,0.14868226,0.114530171,0.095341164,0.133719178,0.015940959,0.009132268,0.022749651,0.006051661,0.002969694,0.009133627,0.784078492,34443,43928,0.764406423,0.803750561,,,,,,,0.786610879,0.712300466,0.860921291,0.672502575,0.521133477,0.823871673,0.78508214,0.759969671,0.810194608,0.371,,43928,0.339095661,0.402904339,74.30336886,,,73.72013888,74.88659884,,,,,,,71.39443865,68.40323116,74.38564613,,,,74.0044327,73.40086438,74.60800103,,,,539.5585546,1605,266307,512.4010908,566.7160184,,,,,,,665.0901476,520.3920792,837.5709689,,,,551.2507482,522.5708353,579.9306611,,,,34.12404608,33,96706,23.48942317,47.92284788,,,,,,,,,,,,,33.57475179,22.31017873,48.52486443,,,,4.352098835,31,7123,2.957040008,6.177456901,,,,,,,,,,,,,3.738317757,2.395210725,5.562320498,,,,,,,0.129,,,0.11,0.153,0.186,,,0.161,0.215,0.1,,,0.085,0.117,85.4,69,80757,,,0.118,10880,,,,0.119999056,9949.841689,82916,,,74.48974525,210,281918,64.41479493,84.56469556,,,,,,,,,,,,,79.33580068,68.34041968,90.33118168,,,,0.409,,,0.39,0.428,0.079376974,4449,56049,0.066270591,0.092483357,0.03906403,798,20428,0.028340626,0.049787434,0.001061069,101,95187,,,942.4455446,0.934373576,820.38,878,,,0.064282548,435,6767,0.027767562,0.100797533,3.062803144,,,,,,,2.722009272,2.660443049,3.119247873,2.863686519,,,,,,,2.38873629,2.408454583,2.926327173,0.032147937,,,,,-2004.7768,,,,,0.824783701,44328,53745,0.744769727,0.904797675,60994,,,55690.68085,66297.31915,,,,167885,50237.34043,285532.6596,55850,45239.78723,66460.21277,57802,33406.25532,82197.74468,60048,56176.85106,63919.14894,,,,,,0.521728375,6327,12127,,,38.3163966,,,,,0.28637243,,60994,,,6.661283811,33,4954,,,3.577633877,23,642883,2.267912985,5.368207418,,,,,,,,,,,,,2.950932929,1.719027176,4.72472948,,,,16.45680064,72,465512,12.80437319,20.82713447,15.46684081,,,,,,,,,,,,,17.83922225,13.8528541,22.61546496,,,,12.24458231,57,465512,9.273927066,15.86427663,,,,,,,,,,,,,12.71928772,9.527619317,16.6371415,,,,12.59949322,81,642883,10.0058163,15.66001966,,,,,,,,,,,,,12.32448459,9.625524711,15.54566033,,,,7.931034483,,8700,,,22,47,0.611462396,43903,71800,,,0.706,,,,,62.75714278,,,,,0.613201284,22166,36148,0.592505655,0.633896912,0.117131152,4060,34662,0.099382081,0.134880224,0.872966693,31556,36148,0.848993558,0.896939827,95187,,,,,0.208841544,19879,95187,,,0.147614695,14051,95187,,,0.042327209,4029,95187,,,0.003782029,360,95187,,,0.011829346,1126,95187,,,0.000619833,59,95187,,,0.029447299,2803,95187,,,0.890615315,84775,95187,,,0.004730982,416,87931,0.002439549,0.007022416,0.510353305,48579,95187,,,0.361851544,33544,92701,, -21,153,21153,KY,Magoffin County,2024,1,17697.10515,337,33210,14927.70778,20466.50252,0,,,,2,,,,2,,,,2,,,,2,18114.81419,15270.64059,20958.98778,,,,,2,,0.297,,,0.254,0.342,5.950284844,,,4.867314526,7.135473568,6.722586534,,,5.451850984,8.116950858,0.114551084,111,969,0.09449826,0.134603908,0,,,,,,,,,,,,,0.112033195,0.092122369,0.131944021,,,,,,,0.308,,,0.253,0.365,0.461,,,0.379,0.546,5.8,0.014456361,0.231,,,0.387,,,0.324,0.451,0.058262439,678,11637,,,0.124529005,,,0.096763625,0.155674933,0.555555556,10,18,0.449513997,0.646460596,234.8,27,11497,,,40.87414002,101,2471,32.90256729,48.84571276,,,,,,,,,,,,,41.97838737,33.79145627,50.16531846,,,,,,,0.086593971,810,9354,0.071104609,0.102083332,0.000347917,4,11497,,,2874.25,0.000352206,4,11357,,,2839.25,0.001761028,20,11357,,,567.85,4782,,,,,,,,,4791,0.29,,,,,,,,,0.29,0.33,,,,,,,,,0.33,0.724676593,5938,8194,0.675820485,0.7735327,0.392949907,1059,2695,0.294323466,0.491576348,0.105461394,336,3186,,,0.369,927,,0.234361702,0.503638298,,,,,,,,,,,,,0.385022385,0.292660689,0.477384082,5.65870832,69919,12356,4.036088947,7.281327693,0.389356815,1017,2612,0.236127502,0.542586128,2.609376359,3,11497,,,146.9252992,89,60575,117.9930799,180.8042235,,,,,,,,,,,,,150.8627996,121.155216,185.6496566,,,,7.6,,,,,1,,,,,0.171342685,855,4990,0.120689022,0.221996349,0.134693878,0.086837717,0.182550038,0.036072144,0.009542409,0.062601879,0.00501002,0,0.012464874,0.814620497,2329,2859,0.753246667,0.875994326,,,,,,,,,,,,,0.823273518,0.77280903,0.873738006,0.543,,2859,0.40388118,0.68211882,69.40340355,,,67.76989478,71.03691232,,,,,,,,,,,,,69.06594313,67.41644919,70.71543708,,,,783.1680936,337,33210,693.5822722,872.753915,,,,,,,,,,,,,798.4876888,706.8279274,890.1474503,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.187,,,0.161,0.215,0.23,,,0.201,0.264,0.136,,,0.117,0.157,,,,,,0.231,2730,,,,0.014456361,192.7466642,13333,,,53.25858444,19,35675,32.06514692,83.16987687,,,,,,,,,,,,,54.77556433,32.97846791,85.53882887,,,,0.407,,,0.388,0.425,0.102699531,700,6816,0.083635701,0.12176336,0.044034626,117,2657,0.028545264,0.059523987,0.001584926,18,11357,,,630.9444444,0.925,136.9,148,,,,,,,,3.36929967,,,,,,,,,3.357527178,3.076494789,,,,,,,,,3.066327551,0.028566588,,,,,-9852.363,,,,,1.025402299,44605,43500,0.717699548,1.33310505,35669,,,31004.31915,40333.68085,,,,,,,,,,31136,30601.02128,31670.97872,32188,27653.19149,36722.80851,,,,,,0.047217538,56,1186,,,,,,,,0.358546637,,35669,,,,,728,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,44.1516493,38,86067,31.24433482,60.6015882,,,,,,,,,,,,,45.29039486,32.05017895,62.16460546,,,,,,1200,,,-888,-888,0.573867229,5446,9490,,,0.431,,,,,5.024843782,,,,,0.751866491,3424,4554,0.690727948,0.813005034,0.150334905,606,4031,0.099951433,0.200718376,0.770092227,3507,4554,0.710986136,0.829198318,11357,,,,,0.224178921,2546,11357,,,0.192040151,2181,11357,,,0.003786211,43,11357,,,0.004226468,48,11357,,,0.002377388,27,11357,,,0,0,11357,,,0.01426433,162,11357,,,0.967861231,10992,11357,,,0,0,10950,0,0.008269698,0.497314432,5648,11357,,,1,11637,11637,, -21,155,21155,KY,Marion County,2024,1,12155.04036,385,54259,10303.70869,14006.37204,0,,,,2,,,,2,21648.46544,13400.74131,33091.97904,1,,,,2,11773.32715,9820.210942,13726.44335,,,,,2,,0.231,,,0.199,0.266,4.929433446,,,3.97145502,6.047754036,5.974070567,,,4.793319451,7.274367174,0.103053435,162,1572,0.088023942,0.118082928,0,,,,,,,0.155844156,0.074828811,0.236859501,,,,0.101831502,0.08578761,0.117875394,,,,,,,0.239,,,0.194,0.285,0.404,,,0.321,0.488,7.1,0.071928308,0.141,,,0.316,,,0.262,0.374,0.48516419,9500,19581,,,0.142061473,,,0.112619662,0.176273381,0.481481482,13,27,0.389023004,0.565895332,268.7,53,19725,,,31.61868806,134,4238,26.26506835,36.97230777,,,,,,,,,,,,,31.44475921,25.59493446,37.29458395,,,,,,,0.065263289,1051,16104,0.054539884,0.075986693,0.000506971,10,19725,,,1972.5,0.000303413,6,19775,,,3295.833333,0.001921618,38,19775,,,520.3947368,2441,,,,,,,5600,,2278,0.46,,,,,,,0.54,,0.45,0.38,,,,,,,0.26,,0.38,0.843614314,11269,13358,0.809328337,0.87790029,0.466260248,2218,4757,0.390912161,0.541608335,0.033465198,313,9353,,,0.213,980,,0.141510638,0.284489362,,,,,,,,,,0.810126582,0.57140029,1,0.348025478,0.256812376,0.439238579,4.384814902,92980,21205,3.487163964,5.282465841,0.279530917,1311,4690,0.186852781,0.372209053,4.562737643,9,19725,,,119.4509376,116,97111,97.71308498,141.1887902,,,,,,,,,,,,,125.880872,102.0289201,149.7328239,,,,8.4,,,,,0,,,,,0.130464022,970,7435,0.098034392,0.162893651,0.106227106,0.075073879,0.137380333,0.018157364,0.007197421,0.029117307,0.008742434,0,0.018576043,0.861586525,6343,7362,0.820482909,0.902690142,,,,,,,,,,,,,0.874675662,0.845941997,0.903409326,0.203,,7362,0.160156057,0.245843943,73.44920307,,,72.06494154,74.8334646,,,,,,,,,,,,,73.56902936,72.11755596,75.02050277,,,,559.6080381,385,54259,501.201829,618.0142472,,,,,,,878.137104,618.2895606,1210.396325,,,,547.9015922,486.7675034,609.0356809,,,,132.8740158,27,20320,87.56481364,193.3247168,,,,,,,,,,,,,134.7550973,85.42317224,202.19881,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.148,,,0.127,0.17,0.198,,,0.172,0.226,0.114,,,0.097,0.132,67.1,11,16392,,,0.141,2760,,,,0.071928308,1425.619071,19820,,,48.01756071,28,58312,31.90732037,69.39874459,,,,,,,,,,,,,52.84274391,34.82370121,76.88341804,,,,0.408,,,0.391,0.424,0.075037212,857,11421,0.061930829,0.088143595,0.042302217,208,4917,0.028004345,0.056600089,0.00136536,27,19775,,,732.4074074,0.95,230.85,243,,,,,,,,3.101294901,,,,,,,,2.665236872,3.134473343,3.121002683,,,,,,,,2.623076865,3.187305716,0.047088323,,,,,1489.915,,,,,0.758005843,40216,53055,0.652693346,0.86331834,53676,,,46070.7234,61281.2766,,,,,,,55500,27173.53192,83826.46809,23472,3985.191489,42958.80851,50500,42720.76596,58279.23404,,,,,,0.572575664,1854,3238,,,43.71449241,,,,,0.238262911,,53676,,,5.342831701,6,1123,,,7.370228698,10,135681,3.534311139,13.55411299,,,,,,,,,,,,,,,,,,,15.34417378,15,97111,8.388802589,25.74491632,15.44624193,,,,,,,,,,,,,14.66195414,7.576045655,25.61148322,,,,18.53549032,18,97111,10.98530628,29.29406583,,,,,,,,,,,,,16.47039447,9.004517919,27.63452327,,,,30.95496053,42,135681,22.30961279,41.84211406,,,,,,,,,,,,,31.98437816,22.6340496,43.90105794,,,,21.42857143,,2100,,,23,22,0.619784797,8928,14405,,,0.7,,,,,28.48226767,,,,,0.737612019,5597,7588,0.69910513,0.776118908,0.108473189,795,7329,0.077610846,0.139335531,0.829599367,6295,7588,0.791974512,0.867224223,19775,,,,,0.235954488,4666,19775,,,0.175474083,3470,19775,,,0.06664981,1318,19775,,,0.002983565,59,19775,,,0.008697851,172,19775,,,0.000303413,6,19775,,,0.030088496,595,19775,,,0.872718078,17258,19775,,,0.007256187,134,18467,0.000933852,0.013578521,0.499823009,9884,19775,,,0.6829069,13372,19581,, -21,157,21157,KY,Marshall County,2024,1,10054.35808,623,85088,8664.401321,11444.31485,0,,,,2,,,,2,,,,2,,,,2,10076.82683,8661.48703,11492.16662,,,,,2,,0.186,,,0.155,0.217,4.349132037,,,3.436834233,5.285103884,5.325233454,,,4.243284972,6.363738675,0.083687943,177,2115,0.071885986,0.0954899,0,,,,,,,,,,,,,0.082669323,0.070624252,0.094714394,,,,,,,0.197,,,0.155,0.24,0.373,,,0.301,0.444,8.2,0.028756822,0.111,,,0.268,,,0.221,0.321,0.515019426,16305,31659,,,0.156166846,,,0.123555758,0.190561629,0.243902439,10,41,0.162984791,0.330636148,207.9,66,31748,,,24.45923461,147,6010,20.50520182,28.4132674,,,,,,,,,,,,,24.17348027,20.11067696,28.23628358,,,,,,,0.061847225,1510,24415,0.05231531,0.07137914,0.000409475,13,31748,,,2442.153846,0.000346162,11,31777,,,2888.818182,0.000377632,12,31777,,,2648.083333,2821,,,,,,,,,2831,0.46,,,,,,,,,0.47,0.45,,,,,,,,,0.45,0.922902987,21224,22997,0.906292056,0.939513919,0.66339779,4803,7240,0.580527047,0.746268533,0.040649849,593,14588,,,0.171,1064,,0.113808511,0.228191489,,,,,,,,,,0.289855073,0.000912092,0.578798053,0.153649386,0.101558742,0.20574003,4.844081376,123340,25462,4.046104219,5.642058533,0.200590429,1291,6436,0.133759317,0.26742154,17.63890639,56,31748,,,88.77024473,139,156584,74.01263271,103.5278567,,,,,,,,,,,,,90.36544851,75.17785287,105.5530441,,,,9,,,,,0,,,,,0.087652439,1150,13120,0.063899248,0.11140563,0.068898404,0.044857385,0.092939423,0.013719512,0.004871518,0.022567506,0.011814024,0.002175175,0.021452874,0.797862998,10902,13664,0.744896175,0.85082982,,,,,,,,,,,,,0.806793874,0.749118691,0.864469056,0.28,,13664,0.23337941,0.32662059,74.590952,,,73.56179152,75.62011249,,,,,,,,,,,,,74.4692704,73.42674026,75.51180055,,,,480.4974787,623,85088,439.6236777,521.3712797,,,,,,,,,,,,,485.6255368,443.8516991,527.3993744,,,,93.03324149,26,27947,60.7724021,136.3152542,,,,,,,,,,,,,91.76416609,58.79503271,136.5378053,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.129,,,0.11,0.149,0.182,,,0.156,0.208,0.097,,,0.082,0.114,65.9,18,27308,,,0.111,3530,,,,0.028756822,904.344548,31448,,,14.89187436,14,94011,8.141526286,24.98603474,,,,,,,,,,,,,14.39677512,7.665676417,24.61892392,,,,0.382,,,0.361,0.401,0.069849886,1261,18053,0.057934993,0.08176478,0.040715884,273,6705,0.027609501,0.053822267,0.000755263,24,31777,,,1324.041667,0.87,305.37,351,,,,,,,,3.16481255,,,,,,,,,3.179608308,2.751160987,,,,,,,,,2.764416841,0.031223924,,,,,1893.958,,,,,0.742316522,40094,54012,0.651610024,0.833023021,64395,,,56593.12766,72196.87234,,,,,,,,,,83879,27994.57447,139763.4255,64613,56269,72957,,,,,,0.52053591,2370,4553,,,,,,,,0.198602376,,64395,,,5.535055351,9,1626,,,,,,,,,,,,,,,,,,,,,,,,,,14.29271891,22,156584,8.730364026,22.07394515,14.04996679,,,,,,,,,,,,,14.8855564,9.092484564,22.98953457,,,,12.13406223,19,156584,7.305498112,18.94884124,,,,,,,,,,,,,12.62458472,7.600824694,19.71485287,,,,26.47797307,58,219050,20.10583505,34.22892022,,,,,,,,,,,,,27.02946211,20.47185065,35.0198033,,,,9.333333333,,3000,,,11,17,0.709288737,17601,24815,,,0.641,,,,,15.62485596,,,,,0.825280812,10727,12998,0.812964246,0.837597379,0.084305151,1041,12348,0.059130958,0.109479343,0.841898754,10943,12998,0.809587382,0.874210125,31777,,,,,0.198917456,6321,31777,,,0.227334236,7224,31777,,,0.006010637,191,31777,,,0.002989584,95,31777,,,0.00450011,143,31777,,,0.000283224,9,31777,,,0.01938509,616,31777,,,0.958271706,30451,31777,,,0.000762979,23,30145,0,0.004813885,0.500833937,15915,31777,,,0.851827285,26968,31659,, -21,159,21159,KY,Martin County,2024,1,13120.98811,294,31226,10837.55273,15404.42348,0,,,,2,,,,2,,,,2,,,,2,15103.47054,12369.55878,17837.38231,,,,,2,,0.262,,,0.225,0.302,5.33136367,,,4.329177087,6.423395898,6.07058191,,,4.89883535,7.326349304,0.119840213,90,751,0.096611874,0.143068552,0,,,,,,,,,,,,,0.120320856,0.097005724,0.143635988,,,,,,,0.268,,,0.221,0.318,0.399,,,0.32,0.482,6.8,0.008216115,0.187,,,0.354,,,0.298,0.413,0.356161956,4020,11287,,,0.14484126,,,0.113409829,0.180334296,0.142857143,1,7,0.008995928,0.386311364,206.5,23,11140,,,41.74950298,84,2012,33.30103864,51.68872553,,,,,,,,,,,,,43.43329886,34.64410018,53.77337941,,,,,,,0.066759213,529,7924,0.056035808,0.077482617,0.000359066,4,11140,,,2785,9.01307E-05,1,11095,,,11095,0.000721046,8,11095,,,1386.875,5004,,,,,,,,,5016,0.22,,,,,,,,,0.22,0.29,,,,,,,,,0.29,0.752870091,6230,8275,,,0.428613569,1453,3390,,,0.073456512,163,2219,,,0.402,834,,0.260212766,0.543787234,,,,,,,,,,,,,0.193467337,0.099213626,0.287721048,8.207253886,107712,13124,5.273463106,11.14104467,0.070087036,153,2183,0.021305741,0.118868331,3.590664273,4,11140,,,112.2174525,63,56141,86.23097165,143.5748692,,,,,,,,,,,,,124.9294753,95.78271235,160.1539491,,,,7.5,,,,,0,,,,,0.111248455,450,4045,0.066761335,0.155735575,0.082559599,0.043240672,0.121878525,0.017305315,0,0.0440782,0.012360939,0,0.030562085,0.862967914,2582,2992,0.840626229,0.8853096,,,,,,,,,,,,,0.87704918,0.829107661,0.9249907,0.423,,2992,0.288911119,0.557088881,71.59739575,,,69.94080337,73.25398813,,,,,,,,,,,,,70.24937867,68.42224536,72.07651197,,,,691.6311749,294,31226,609.5128884,773.7494615,,,,,,,,,,,,,750.236451,658.514334,841.958568,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.163,,,0.141,0.188,0.205,,,0.179,0.233,0.122,,,0.105,0.142,83,8,9638,,,0.187,2130,,,,0.008216115,106.2261544,12929,,,62.93832045,21,33366,38.95981234,96.20790846,,,,,,,,,,,,,71.39214686,44.19286413,109.1304802,,,,0.41,,,0.391,0.426,0.079384296,459,5782,0.065086424,0.093682168,0.033598585,76,2262,0.022875181,0.04432199,0.000630915,7,11095,,,1585,0.975,117.975,121,,,,,,,,2.84301147,,,,,,,,,2.837706594,2.904857519,,,,,,,,,2.889323159,,,,,,-6696.188,,,,,0.714651262,36866,51586,0.54871281,0.880589714,34435,,,29374.74468,39495.25532,,,,,,,,,,,,,45198,34768.89362,55627.10638,,,,,,0.655211913,1144,1746,,,,,,,,0.366865108,,34435,,,,,547,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.91609696,12,80450,7.707364958,26.05541958,,,,,,,,,,,,,16.87028159,8.717120677,29.46898687,,,,,,1000,,,-888,-888,0.429978118,3930,9140,,,0.423,,,,,2.980304831,,,,,0.789403621,2965,3756,0.755025253,0.823781989,0.12744214,424,3327,0.071064129,0.183820151,0.798988285,3001,3756,0.755842041,0.84213453,11095,,,,,0.190085624,2109,11095,,,0.179360072,1990,11095,,,0.076881478,853,11095,,,0.004326273,48,11095,,,0.002523659,28,11095,,,0.000180261,2,11095,,,0.03920685,435,11095,,,0.866967102,9619,11095,,,0.00297232,32,10766,,,0.438756197,4868,11095,,,1,11287,11287,, -21,161,21161,KY,Mason County,2024,1,12645.94579,405,47386,10676.28764,14615.60393,0,,,,2,,,,2,20591.13029,10639.7375,35968.56073,1,,,,2,12351.47717,10300.67604,14402.2783,,,,,2,,0.219,,,0.182,0.26,4.727118137,,,3.692240834,5.85793958,5.460128654,,,4.241242874,6.710330569,0.078723404,111,1410,0.064666378,0.092780431,0,,,,,,,,,,,,,0.07751938,0.062926366,0.092112393,,,,,,,0.226,,,0.177,0.277,0.374,,,0.294,0.458,7.4,0.069389759,0.131,,,0.303,,,0.245,0.367,0.652102804,11164,17120,,,0.14227466,,,0.109088752,0.180466246,0.222222222,4,18,0.102162676,0.360013884,324.8,55,16931,,,33.85939742,118,3485,27.75005746,39.96873738,,,,,,,51.18110236,27.25178146,87.52124377,,,,36.00823045,29.12070525,42.89575566,,,,,,,0.065742925,892,13568,0.05501952,0.076466329,0.000531569,9,16931,,,1881.222222,0.000826934,14,16930,,,1209.285714,0.005020673,85,16930,,,199.1764706,2582,,,,,,,1401,,2580,0.37,,,,,,,0.31,,0.37,0.41,,,,,,,0.29,,0.42,0.855662285,10155,11868,0.818343596,0.892980974,0.611557789,2434,3980,0.518175202,0.704940376,0.048103187,317,6590,,,0.257,990,,0.170021277,0.343978723,,,,,,,0.325581395,0.11192086,0.539241931,0.333333333,0,0.917963792,0.211359404,0.144911731,0.277807077,6.592806855,120800,18323,5.123920794,8.061692915,0.253593429,988,3896,0.158586736,0.348600122,15.35644675,26,16931,,,100.7497657,86,85360,80.58680792,124.425141,,,,,,,,,,,,,100.6129447,79.27155682,125.9321034,,,,8.2,,,,,0,,,,,0.114942529,750,6525,0.082071213,0.147813845,0.09296875,0.062645539,0.123291961,0.013639847,0.002943498,0.024336195,0.01302682,0.002769057,0.023284583,0.882117192,6383,7236,0.847496319,0.916738065,,,,,,,,,,,,,0.88697538,0.859903762,0.914046998,0.266,,7236,0.209232065,0.322767935,71.98001863,,,70.64996428,73.31007298,,,,,,,,,,,,,72.20549861,70.82508191,73.58591531,,,,625.9907999,405,47386,560.9022079,691.079392,,,,,,,766.3583031,495.9466867,1131.296033,,,,620.2456934,552.1459724,688.3454143,,,,80.88277775,14,17309,44.21936724,135.7075575,,,,,,,,,,,,,84.21643624,43.51586153,147.1091659,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.146,,,0.124,0.17,0.194,,,0.165,0.223,0.111,,,0.092,0.13,134.3,19,14149,,,0.131,2240,,,,0.069389759,1213.626888,17490,,,27.4316169,14,51036,14.99712022,46.02559198,,,,,,,,,,,,,22.23259743,10.66139464,40.88653826,,,,0.386,,,0.366,0.404,0.075334648,726,9637,0.061036775,0.08963252,0.043139167,177,4103,0.028841294,0.057437039,0.001949203,33,16930,,,513.030303,0.925,175.75,190,,,,,,,,2.970380645,,,,,,,,,2.967599341,2.684929315,,,,,,,,,2.694954001,0.003456722,,,,,-969.8477,,,,,0.640304254,34093,53245,0.470181403,0.810427105,49029,,,41946.78723,56111.21277,,,,36172,10703.91489,61640.08511,37390,6233.744681,68546.25532,17647,1437.978723,33856.02128,49558,44210.59575,54905.40426,,,,,,0.617834395,1649,2669,,,38.29605634,,,,,0.254482041,,49029,,,6.862745098,7,1020,,,,,,,,,,,,,,,,,,,,,,,,,,16.96593555,13,85360,8.76654647,29.63607507,15.22961575,,,,,,,,,,,,,17.64770583,8.809671166,31.57662053,,,,,,,,,,,,,,,,,,,,,,,,,,,17.55133766,21,119649,10.86455464,26.82908402,,,,,,,,,,,,,16.94979095,10.04552034,26.7879772,,,,19.44444444,,1800,,,11,24,0.611448329,7958,13015,,,0.65,,,,,26.63329579,,,,,0.68648245,4596,6695,0.65425036,0.718714539,0.122782446,789,6426,0.083997548,0.161567345,0.821956684,5503,6695,0.790880117,0.853033252,16930,,,,,0.231600709,3921,16930,,,0.193384525,3274,16930,,,0.059952747,1015,16930,,,0.00490254,83,16930,,,0.01015948,172,16930,,,0.000413467,7,16930,,,0.023449498,397,16930,,,0.875841701,14828,16930,,,0.003547865,57,16066,0,0.009827603,0.511104548,8653,16930,,,0.534871495,9157,17120,, -21,163,21163,KY,Meade County,2024,1,9717.797552,540,82477,8454.820528,10980.77458,0,,,,2,,,,2,,,,2,,,,2,10165.02939,8799.712918,11530.34586,,,,,2,,0.198,,,0.169,0.229,4.621917882,,,3.78844959,5.52948807,5.960829186,,,4.940504904,7.023248638,0.070762479,129,1823,0.058991093,0.082533866,0,,,,,,,,,,,,,0.068386323,0.056269442,0.080503203,,,,,,,0.211,,,0.172,0.252,0.382,,,0.311,0.451,7.7,0.057729207,0.122,,,0.281,,,0.234,0.333,0.512348765,15372,30003,,,0.150851262,,,0.120590259,0.184503649,0.363636364,16,44,0.286057203,0.439883206,209.1,63,30131,,,21.64931416,131,6051,17.94195582,25.35667251,,,,,,,,,,,,,21.63921869,17.64935163,25.62908575,,,,,,,0.059457965,1505,25312,0.04992605,0.06898988,0.000232319,7,30131,,,4304.428571,0.000233326,7,30001,,,4285.857143,0.00059998,18,30001,,,1666.722222,2725,,,,,,,,,2796,0.45,,,,,,,0.58,,0.45,0.41,,,,,,,0.28,,0.42,0.896231856,18647,20806,0.87823195,0.914231762,0.603702807,4989,8264,0.534019435,0.67338618,0.044213599,515,11648,,,0.159,1020,,0.106574468,0.211425532,,,,,,,0.169421488,0,0.362964846,0.235135135,0.060018825,0.410251445,0.184341114,0.12833039,0.240351838,4.22223264,135103,31998,3.607202369,4.83726291,0.164174596,1087,6621,0.106433901,0.221915291,6.305798015,19,30131,,,102.6437706,148,144188,86.10672933,119.1808119,,,,,,,,,,,,,109.1132986,91.03865514,127.187942,,,,9.3,,,,,0,,,,,0.101964453,1090,10690,0.076021834,0.127907071,0.075471698,0.053355862,0.097587534,0.023854069,0.012193646,0.035514493,0.009354537,0,0.018916918,0.809485531,11077,13684,0.77848447,0.840486591,,,,,,,,,,,,,0.743353631,0.68682087,0.799886393,0.49,,13684,0.426896042,0.553103958,74.7689984,,,73.7444996,75.79349719,,,,,,,,,,,,,74.28736869,73.22604982,75.34868756,,,,506.0072361,540,82477,462.0162868,549.9981854,,,,,,,,,,,,,524.8357485,477.8842274,571.7872696,,,,42.37138519,12,28321,21.89391303,74.01428286,,,,,,,,,,,,,41.83925359,20.06354837,76.943877,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.132,,,0.114,0.151,0.186,,,0.161,0.211,0.099,,,0.084,0.114,74.6,19,25464,,,0.122,3620,,,,0.057729207,1651.170786,28602,,,34.35678375,30,87319,23.18037772,49.0464451,,,,,,,,,,,,,37.42176915,25.06194611,53.74390275,,,,0.395,,,0.376,0.412,0.06628798,1237,18661,0.054373087,0.078202874,0.041785919,292,6988,0.028679536,0.054892302,0.000433319,13,30001,,,2307.769231,0.95,359.1,378,,,,,,,,3.333391194,,,,,,,,,3.380609209,3.56153408,,,,,,,,,3.567968301,0.012220707,,,,,-1008.54,,,,,0.742086954,43303,58353,0.623113271,0.861060637,69632,,,61370.21277,77893.78723,,,,32857,29339.7234,36374.2766,75540,58076.34043,93003.65957,56920,44324.76596,69515.23404,69170,64233.65957,74106.34043,,,,,,0.51294401,2556,4983,,,53.30912569,,,,,0.183665556,,69632,,,5.076142132,8,1576,,,,,,,,,,,,,,,,,,,,,,,,,,21.08306227,31,144188,14.22465358,30.09738233,21.49970871,,,,,,,,,,,,,23.76272301,16.03260943,33.92276466,,,,17.33847477,25,144188,11.22054668,25.59500908,,,,,,,,,,,,,19.4845176,12.60935245,28.76299165,,,,25.96909678,52,200238,19.39496359,34.0550154,,,,,,,,,,,,,26.92998205,19.85604288,35.70524921,,,,15.66666667,,3000,,,28,19,0.645618852,14110,21855,,,0.691,,,,,7.538618538,,,,,0.741709305,7828,10554,0.707074933,0.776343677,0.089813801,902,10043,0.063564592,0.11606301,0.889615312,9389,10554,0.868362205,0.910868418,30001,,,,,0.217626079,6529,30001,,,0.15719476,4716,30001,,,0.038632046,1159,30001,,,0.006266458,188,30001,,,0.008366388,251,30001,,,0.002199927,66,30001,,,0.041931936,1258,30001,,,0.88360388,26509,30001,,,0.000880313,25,28399,0,0.00469248,0.494083531,14823,30001,,,0.905976069,27182,30003,, -21,165,21165,KY,Menifee County,2024,1,13394.04071,153,17624,9844.260392,16943.82102,0,,,,2,,,,2,,,,2,,,,2,12925.82977,9399.279214,16452.38033,,,,,2,,0.268,,,0.229,0.309,5.368776575,,,4.347078449,6.579194725,6.346538482,,,5.151870367,7.7026999,0.094758065,47,496,0.06898265,0.120533479,0,,,,,,,,,,,,,0.095528455,0.069554544,0.121502367,,,,,,,0.281,,,0.231,0.334,0.438,,,0.356,0.525,6.8,0.002753895,0.188,,,0.361,,,0.303,0.425,0.844593489,5163,6113,,,0.129279316,,,0.101996693,0.161203111,0.272727273,3,11,0.11266692,0.445445377,129.2,8,6194,,,41.20171674,48,1165,30.37889341,54.62749887,,,,,,,,,,,,,48.63221885,35.85755909,64.47926665,,,,,,,0.078920674,389,4929,0.065814291,0.092027057,0.00048434,3,6194,,,2064.666667,0.00016,1,6250,,,6250,0.00352,22,6250,,,284.0909091,4129,,,,,,,,,4133,0.32,,,,,,,,,0.32,0.33,,,,,,,,,0.33,0.797084947,3500,4391,0.751082822,0.843087071,0.418604651,576,1376,0.308489336,0.528719966,0.056390977,135,2394,,,0.381,408,,0.236829787,0.525170213,,,,,,,,,,,,,0.452708165,0.373352277,0.532064053,6.422269204,91132,14190,4.453682464,8.390855943,0.217134417,294,1354,0.107182618,0.327086215,0,0,6194,,,165.1553395,53,32091,123.7126825,216.0272504,,,,,,,,,,,,,165.3493833,122.7254993,217.9925483,,,,7.6,,,,,0,,,,,0.0831643,205,2465,0.051044266,0.115284334,0.055327869,0.018751173,0.091904565,0.019878296,0,0.041060651,0.010141988,0,0.022801963,0.802413273,1596,1989,0.687484168,0.917342378,,,,,,,,,,,,,0.678494624,0.407951596,0.949037652,0.699,,1989,0.531639212,0.866360788,72.1177729,,,69.65276991,74.58277589,,,,,,,,,,,,,72.29596553,69.83966909,74.75226197,,,,591.335121,153,17624,488.8464948,693.8237472,,,,,,,,,,,,,584.1091278,481.2344964,686.9837592,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.17,,,0.146,0.196,0.214,,,0.186,0.246,0.124,,,0.106,0.144,110.1,6,5450,,,0.188,1150,,,,0.002753895,17.36606181,6306,,,,,,,,,,,,,,,,,,,,,,,,,,0.393,,,0.375,0.411,0.089986996,346,3845,0.073306145,0.106667847,0.040643522,48,1181,0.02753714,0.053749905,0.0024,15,6250,,,416.6666667,0.925,83.25,90,,,,,,,,2.54361707,,,,,,,,,2.542945162,2.327841011,,,,,,,,,2.340083741,,,,,,-6306.611,,,,,0.601561108,33756,56114,0.517982433,0.685139782,43226,,,36732.38298,49719.61702,,,,,,,,,,,,,43813,37873.42553,49752.57447,,,,,,0.783505155,760,970,,,,,,,,0.295863601,,43226,,,4.464285714,2,448,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,35.6689034,16,44857,20.38786021,57.92406447,,,,,,,,,,,,,37.78486244,21.59731362,61.36024937,,,,,,600,,,-888,7,0.608235294,3102,5100,,,0.455,,,,,0.511342182,,,,,0.740495137,1675,2262,0.692637342,0.788352932,0.080224834,157,1957,0.027073274,0.133376394,0.710875332,1608,2262,0.635379967,0.786370696,6250,,,,,0.17696,1106,6250,,,0.21408,1338,6250,,,0.00992,62,6250,,,0.00224,14,6250,,,0.00224,14,6250,,,0.00112,7,6250,,,0.01408,88,6250,,,0.95936,5996,6250,,,0,0,5701,0,0.014211766,0.49504,3094,6250,,,1,6113,6113,, -21,167,21167,KY,Mercer County,2024,1,10069.17841,471,61522,8603.503921,11534.8529,0,,,,2,,,,2,24573.60688,11783.99967,45191.73798,1,,,,2,10114.11871,8589.874343,11638.36308,,,,,2,,0.195,,,0.163,0.229,4.45870438,,,3.503875349,5.534994413,5.606607526,,,4.426802906,6.913742267,0.095292767,166,1742,0.0815043,0.109081234,0,,,,,,,,,,,,,0.091811414,0.077714959,0.10590787,,,,,,,0.205,,,0.16,0.253,0.388,,,0.306,0.474,8,0.05383099,0.108,,,0.279,,,0.226,0.335,0.487655139,11041,22641,,,0.151378881,,,0.118630325,0.189870922,0.2,4,20,0.089212428,0.331567708,275.7,63,22850,,,30.75144509,133,4325,25.5251277,35.97776247,,,,,,,,,,,,,32.50940355,26.71681892,38.30198818,,,,,,,0.068456884,1267,18508,0.05654199,0.080371777,0.000262582,6,22850,,,3808.333333,0.000218322,5,22902,,,4580.4,0.001266265,29,22902,,,789.7241379,4079,,,,,,,,,4094,0.36,,,,,,,0.36,,0.36,0.34,,,,,,,0.16,,0.34,0.901173798,14280,15846,0.879182212,0.923165384,0.62858783,3285,5226,0.53288415,0.72429151,0.037073751,374,10088,,,0.18,880,,0.112085106,0.247914894,,,,,,,,,,0.494505495,0.114789776,0.874221214,0.142224295,0.073300893,0.211147697,3.602917286,104236,28931,2.734323898,4.471510674,0.123192832,605,4911,0.068640336,0.177745329,10.50328228,24,22850,,,96.39255413,106,109967,78.04210802,114.7430002,,,,,,,,,,,,,100.3019088,80.64273463,119.9610829,,,,8.4,,,,,0,,,,,0.087729358,765,8720,0.062665918,0.112792798,0.077700348,0.05123964,0.104161057,0.009633028,0.001240315,0.01802574,0.003440367,0,0.007883393,0.818373706,8142,9949,0.786688713,0.850058699,,,,,,,,,,,,,0.799392537,0.747985976,0.850799098,0.401,,9949,0.337492388,0.464507613,73.98770058,,,72.89254129,75.08285987,,,,,,,,,,,,,73.69696244,72.57509461,74.81883027,,,,532.1588229,471,61522,481.1192525,583.1983934,,,,,,,902.1808224,551.0754843,1393.345109,,,,541.513874,488.0488629,594.9788851,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.132,,,0.112,0.154,0.184,,,0.158,0.212,0.099,,,0.085,0.116,62.3,12,19268,,,0.108,2430,,,,0.05383099,1148.26885,21331,,,35.99712023,24,66672,23.06403416,53.56086152,,,,,,,,,,,,,34.7613057,21.51779611,53.1363483,,,,0.391,,,0.372,0.408,0.077954986,1046,13418,0.063657114,0.092252858,0.044373713,237,5341,0.028884351,0.059863075,0.000785958,18,22902,,,1272.333333,0.96961039,223.98,231,,,,,,,,3.074468035,,,,,,,,2.638396222,3.115796938,2.757414734,,,,,,,,2.387586877,2.799785056,0.011922488,,,,,-160.916,,,,,0.877418842,44164,50334,0.736742871,1.018094813,65292,,,58033.44681,72550.55319,,,,,,,82600,7751.829787,157448.1702,56964,45164.68085,68763.31915,60877,55531.97872,66222.02128,,,,,,0.570540709,1836,3218,,,27.58240391,,,,,0.222967592,,65292,,,8.123476848,10,1231,,,,,,,,,,,,,,,,,,,,,,,,,,15.12136504,18,109967,8.643166658,24.55614947,16.36854693,,,,,,,,,,,,,16.51350516,9.438895019,26.8168978,,,,11.82172834,13,109967,6.294572455,20.21551549,,,,,,,,,,,,,12.03622905,6.219295187,21.02486991,,,,26.82350786,41,152851,19.24901235,36.38911722,,,,,,,,,,,,,28.09636332,19.97926091,38.40865358,,,,,,2200,,,-888,14,0.711859266,11735,16485,,,0.708,,,,,26.51628097,,,,,0.744134817,6756,9079,0.69599396,0.792275673,0.078314607,697,8900,0.052735268,0.103893945,0.835664721,7587,9079,0.798896517,0.872432924,22902,,,,,0.218234215,4998,22902,,,0.192603266,4411,22902,,,0.034014497,779,22902,,,0.00344948,79,22902,,,0.006986289,160,22902,,,0.001353594,31,22902,,,0.034276482,785,22902,,,0.900445376,20622,22902,,,0.010839602,232,21403,0.002540254,0.019138949,0.504104445,11545,22902,,,0.567554437,12850,22641,, -21,169,21169,KY,Metcalfe County,2024,1,10933.09714,247,27916,8791.986425,13074.20785,0,,,,2,,,,2,,,,2,,,,2,11373.93009,9130.133602,13617.72659,,,,,2,,0.236,,,0.201,0.275,5.026337724,,,4.047973093,6.091896269,5.877760707,,,4.764009308,7.038956649,0.103532278,85,821,0.082692662,0.124371893,0,,,,,,,,,,,,,0.101758794,0.080755762,0.122761826,,,,,,,0.253,,,0.206,0.302,0.399,,,0.316,0.485,7.6,0.004761708,0.151,,,0.321,,,0.262,0.382,0.560664982,5767,10286,,,0.140076257,,,0.109706002,0.174859946,0.272727273,3,11,0.11266692,0.445445377,173.9,18,10349,,,42.25352113,84,1988,33.70306325,52.31273429,,,,,,,,,,,,,44.61371056,35.48260798,55.3773782,,,,,,,0.067353787,562,8344,0.055438894,0.079268681,0.000193255,2,10349,,,5174.5,0.000192864,2,10370,,,5185,0.001060752,11,10370,,,942.7272727,2713,,,,,,,,,2666,0.29,,,,,,,,,0.3,0.38,,,,,,,,,0.38,0.833008357,5981,7180,0.791951549,0.874065164,0.486774744,1141,2344,0.384699931,0.588849558,0.044886509,176,3921,,,0.333,788,,0.223382979,0.442617021,,,,,,,,,,,,,0.316939891,0.22612556,0.407754221,4.788200251,91627,19136,3.503028764,6.073371738,0.186241611,444,2384,0.096341466,0.276141756,6.763938545,7,10349,,,100.7606441,51,50615,75.02291779,132.4816386,,,,,,,,,,,,,106.4807082,79.28188124,140.0024666,,,,7.9,,,,,0,,,,,0.09557945,400,4185,0.058488429,0.132670472,0.059610706,0.027538053,0.091683359,0.028673835,0.005643996,0.051703675,0.01051374,0.000889997,0.020137482,0.803851641,3381,4206,0.743773533,0.863929748,,,,,,,,,,,,,0.702668891,0.595781617,0.809556165,0.302,,4206,0.220194038,0.383805962,72.75100435,,,71.22823638,74.27377231,,,,,,,,,,,,,72.3176576,70.75992679,73.87538842,,,,614.1534508,247,27916,533.2905765,695.016325,,,,,,,,,,,,,634.5759472,550.4540373,718.6978571,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.154,,,0.132,0.177,0.202,,,0.175,0.231,0.113,,,0.096,0.131,,,,,,0.151,1550,,,,0.004761708,48.08848391,10099,,,,,,,,,,,,,,,,,,,,,,,,,,0.4,,,0.382,0.418,0.079541625,472,5934,0.064052263,0.095030986,0.0382794,97,2534,0.025173017,0.051385783,0.000675024,7,10370,,,1481.428571,0.925,103.6,112,,,,,,,,2.852532869,,,,,,,,,2.893713101,2.681815584,,,,,,,,,2.666424501,0.016379196,,,,,-2129.229,,,,,0.827148677,37158,44923,0.666760392,0.987536962,44973,,,39008.40426,50937.59575,,,,,,,83377,74128.65957,92625.34043,72536,70136.34043,74935.65957,46305,42595.89362,50014.10638,,,,,,0.73210634,1074,1467,,,68.41318,,,,,0.284370622,,44973,,,1.663893511,1,601,,,,,,,,,,,,,,,,,,,,,,,,,,24.42678737,13,50615,12.62167748,42.66868175,25.68408575,,,,,,,,,,,,,25.77886287,13.32031462,45.03048554,,,,23.70838684,12,50615,12.25046944,41.4137806,,,,,,,,,,,,,25.05428428,12.94591429,43.76479257,,,,22.68152306,16,70542,12.96445019,36.83337246,,,,,,,,,,,,,23.92916966,13.67758802,38.85947236,,,,28.18181818,,1100,,,8,23,0.652179571,5012,7685,,,0.6,,,,,1.633851164,,,,,0.778365385,3238,4160,0.732785526,0.823945243,0.076981514,304,3949,0.03634854,0.117614488,0.820913462,3415,4160,0.777714806,0.864112117,10370,,,,,0.232690453,2413,10370,,,0.19662488,2039,10370,,,0.016682739,173,10370,,,0.002796528,29,10370,,,0.003085825,32,10370,,,0.000096432,1,10370,,,0.021504339,223,10370,,,0.943490839,9784,10370,,,0,0,9721,0,0.009315214,0.494406943,5127,10370,,,1,10286,10286,, -21,171,21171,KY,Monroe County,2024,1,11315.21738,271,29810,9080.679283,13549.75547,0,,,,2,,,,2,,,,2,,,,2,10853.91661,8645.488952,13062.34426,,,,,2,,0.25,,,0.211,0.293,5.163658603,,,4.246701286,6.001960494,6.147329605,,,4.851979235,7.359214739,0.091782284,86,937,0.073295529,0.110269039,0,,,,,,,,,,,,,0.091224019,0.072047042,0.110400995,,,,,,,0.264,,,0.214,0.319,0.403,,,0.321,0.491,7.2,0.017213453,0.162,,,0.334,,,0.276,0.395,0.433233375,4912,11338,,,0.136015849,,,0.106159034,0.170780565,0,0,7,0,0.25576943,178,20,11233,,,43.39532666,91,2097,34.93921006,53.27984498,,,,,,,,,,,,,45.02617801,36.01513049,55.60696355,,,,,,,0.077792553,702,9024,0.06468617,0.090898936,0.000445117,5,11233,,,2246.6,0.000528402,6,11355,,,1892.5,0.000616469,7,11355,,,1622.142857,9005,,,,,,,,,8881,0.32,,,,,,,,,0.32,0.35,,,,,,,,,0.35,0.815722307,6392,7836,0.787449953,0.843994661,0.467931689,1233,2635,0.371088045,0.564775333,0.033131226,153,4618,,,0.288,745,,0.186723404,0.389276596,,,,,,,0.142857143,0,0.882060013,0.433333333,0.130134037,0.73653263,0.275150473,0.20091508,0.349385866,6.252797934,101683,16262,4.627526401,7.878069467,0.212749616,554,2604,0.125690793,0.299808439,7.121873053,8,11233,,,94.7796837,51,53809,70.56969994,124.6177803,,,,,,,,,,,,,91.7760664,67.19161528,122.4164114,,,,7.6,,,,,1,,,,,0.131201764,595,4535,0.096795108,0.165608421,0.111111111,0.073095596,0.149126627,0.025137817,0.011648412,0.038627222,0.014332966,0,0.030957591,0.804265998,3846,4782,0.781324063,0.827207933,,,,,,,,,,,,,0.844187298,0.800259457,0.88811514,0.357,,4782,0.284299619,0.429700381,72.63554724,,,71.067039,74.20405548,,,,,,,,,,,,,72.83522871,71.29274847,74.37770896,,,,623.7525816,271,29810,545.3349611,702.1702022,,,,,,,,,,,,,623.23494,542.8812035,703.5886766,,,,111.3069289,12,10781,57.51391438,194.4308046,,,,,,,,,,,,,103.3912324,49.58011472,190.1401576,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.161,,,0.137,0.186,0.209,,,0.179,0.24,0.12,,,0.101,0.139,,,,,,0.162,1830,,,,0.017213453,188.7110873,10963,,,,,,,,,,,,,,,,,,,,,,,,,,0.395,,,0.377,0.413,0.089854624,581,6466,0.073173773,0.106535475,0.049034175,132,2692,0.032353324,0.065715026,0.000704535,8,11355,,,1419.375,0.975,118.95,122,,,,,,,,3.827196369,,,,,,,,,3.781671831,3.572869162,,,,,,,,,3.564236161,0.033542446,,,,,-3266.285,,,,,0.866685984,38883,44864,0.696968854,1.036403115,45872,,,40090.89362,51653.10638,,,,,,,,,,34946,32416.46809,37475.53192,48234,41656.97872,54811.02128,,,,,,0.705352113,1252,1775,,,35.22936766,,,,,0.278797524,,45872,,,9.602194787,7,729,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,26.64393051,20,75064,16.27480495,41.14938972,,,,,,,,,,,,,25.71061277,15.23773858,40.63385269,,,,,,1100,,,6,-888,0.659653465,5330,8080,,,0.581,,,,,0.161767181,,,,,0.709507042,3224,4544,0.671225852,0.747788233,0.107692308,455,4225,0.066931155,0.14845346,0.773107394,3513,4544,0.726048612,0.820166177,11355,,,,,0.232760898,2643,11355,,,0.195156319,2216,11355,,,0.019726993,224,11355,,,0.001321004,15,11355,,,0.002818142,32,11355,,,0.000616469,7,11355,,,0.03214443,365,11355,,,0.930955526,10571,11355,,,0.004896883,52,10619,0,0.014069443,0.499515632,5672,11355,,,1,11338,11338,, -21,173,21173,KY,Montgomery County,2024,1,12209.90036,612,79090,10781.15613,13638.64459,0,,,,2,,,,2,17499.45114,7555.020928,34480.89495,1,,,,2,12422.57759,10921.39716,13923.75802,,,,,2,,0.224,,,0.19,0.258,4.735061265,,,3.833607134,5.707987063,5.539272408,,,4.514954189,6.664850683,0.088039867,212,2408,0.076722238,0.099357496,0,,,,,,,,,,,,,0.088647671,0.076799849,0.100495493,,,,,,,0.241,,,0.196,0.288,0.417,,,0.35,0.487,7.1,0.063196257,0.146,,,0.319,,,0.269,0.373,0.322117095,9056,28114,,,0.150825804,,,0.12157261,0.183472152,0.111111111,3,27,0.034770202,0.223179062,322.5,91,28219,,,41.65189649,235,5642,36.32643902,46.97735396,,,,,,,,,,,,,44.43139558,38.65132559,50.21146557,,,,,,,0.065458596,1528,23343,0.054735192,0.076182,0.00049612,14,28219,,,2015.642857,0.000528783,15,28367,,,1891.133333,0.004794303,136,28367,,,208.5808824,2976,,,,,,,,,2997,0.42,,,,,,,0.35,,0.42,0.47,,,,,,,0.43,,0.47,0.852266223,16378,19217,0.821490116,0.883042329,0.540501792,3770,6975,0.458805306,0.622198279,0.044738815,537,12003,,,0.18,1145,,0.110893617,0.249106383,,,,,,,,,,0.003937008,0,0.15765213,0.199612744,0.145034937,0.254190551,4.798358515,102896,21444,3.866272483,5.730444548,0.262488508,1713,6526,0.189237898,0.335739117,8.150536872,23,28219,,,113.7227865,160,140693,96.10125816,131.3443148,,,,,,,,,,,,,117.2638437,98.6826127,135.8450746,,,,8.1,,,,,1,,,,,0.1238855,1320,10655,0.092266125,0.155504874,0.090777402,0.063485116,0.118069688,0.031909902,0.014465496,0.049354307,0.006100422,3.0250099E-6,0.01219782,0.862168548,9852,11427,0.830291945,0.894045152,,,,,,,,,,,,,0.830041725,0.779671309,0.880412141,0.376,,11427,0.319961987,0.432038013,72.60888619,,,71.58297186,73.63480052,,,,,,,,,,,,,72.36664488,71.30792859,73.42536116,,,,606.9969021,612,79090,557.221426,656.7723781,,,,,,,820.0041286,500.8798249,1266.42987,,,,613.3348786,561.6755459,664.9942113,,,,38.42526286,11,28627,19.18175278,68.75340942,,,,,,,,,,,,,42.95700394,21.4439816,76.861946,,,,9.068425392,22,2426,5.683133913,13.72970502,,,,,,,,,,,,,9.39177102,5.813654286,14.35631965,,,,,,,0.147,,,0.127,0.168,0.196,,,0.17,0.222,0.112,,,0.097,0.129,127.3,30,23572,,,0.146,4100,,,,0.063196257,1674.637609,26499,,,65.04103498,55,84562,48.99780868,84.65984718,,,,,,,,,,,,,67.5357111,50.58888201,88.33837294,,,,0.387,,,0.368,0.404,0.076115176,1290,16948,0.063008793,0.089221559,0.03793876,254,6695,0.026023867,0.049853654,0.001797864,51,28367,,,556.2156863,0.92,315.56,343,,,,,,,,3.059058419,,,,,,,,3.076799494,3.05509458,3.034553786,,,,,,,,2.877805004,3.024290707,0.019163499,,,,,-966.2725,,,,,0.744490345,38747,52045,0.673239126,0.815741564,55924,,,48842.97872,63005.02128,,,,,,,,,,32016,15722.38298,48309.61702,55600,46716.25532,64483.74468,,,,,,0.558426709,2442,4373,,,49.16167216,,,,,0.228685359,,55924,,,8.254716981,14,1696,,,,,,,,,,,,,,,,,,,,,,,,,,13.85254995,20,140693,8.34013998,21.63247269,14.21534831,,,,,,,,,,,,,13.91088871,8.244474274,21.9852015,,,,14.21534831,20,140693,8.683104053,21.95445253,,,,,,,,,,,,,13.02931596,7.590056693,20.86119702,,,,19.38063569,38,196072,13.71489129,26.60143668,,,,,,,,,,,,,20.88439935,14.77904396,28.6654698,,,,11,,3000,,,18,15,0.603667999,12837,21265,,,0.698,,,,,33.35359495,,,,,0.660812704,7074,10705,0.621448622,0.700176786,0.108556833,1105,10179,0.077283634,0.139830032,0.875852405,9376,10705,0.852361003,0.899343808,28367,,,,,0.228892728,6493,28367,,,0.168470406,4779,28367,,,0.023513237,667,28367,,,0.003489971,99,28367,,,0.004723799,134,28367,,,0.000528783,15,28367,,,0.031339232,889,28367,,,0.925864561,26264,28367,,,0.000941371,25,26557,0,0.004928585,0.509535728,14454,28367,,,0.504873017,14194,28114,, -21,175,21175,KY,Morgan County,2024,1,11756.53664,275,37681,9627.993241,13885.08005,0,,,,2,,,,2,,,,2,,,,2,12433.57687,10130.75358,14736.40015,,,,,2,,0.261,,,0.221,0.303,5.35277202,,,4.338841692,6.455971168,6.099000888,,,4.903419059,7.39263443,0.084090909,74,880,0.065754451,0.102427367,0,,,,,,,,,,,,,0.084765178,0.066288497,0.103241858,,,,,,,0.271,,,0.219,0.323,0.429,,,0.352,0.509,6.8,0.041415322,0.168,,,0.337,,,0.28,0.395,0.510709602,7010,13726,,,0.142957073,,,0.113321463,0.177349578,0.222222222,4,18,0.102162676,0.360013884,115.8,16,13820,,,42.58373206,89,2090,34.19823356,52.4029466,,,,,,,,,,,,,43.54354354,34.87659336,53.71080009,,,,,,,0.068527132,663,9675,0.056612238,0.080442025,7.23589E-05,1,13820,,,13820,0.000283286,4,14120,,,3530,0.002195467,31,14120,,,455.483871,4460,,,,,,,,,4472,0.28,,,,,,,,,0.28,0.3,,,,,,,,,0.3,0.774887542,7924,10226,0.747926294,0.801848789,0.41562656,1665,4006,0.343418265,0.487834856,0.052631579,218,4142,,,0.307,745,,0.195,0.419,,,,,,,,,,,,,0.288602151,0.211426663,0.365777638,5.262593845,91827,17449,4.180092569,6.345095121,0.217998448,562,2578,0.123062983,0.312933914,2.170767004,3,13820,,,98.79647925,66,66804,76.4091899,125.6933454,,,,,,,,,,,,,105.3587059,81.31362487,134.2883195,,,,7.6,,,,,0,,,,,0.128258603,615,4795,0.095101797,0.161415408,0.097343252,0.06274956,0.131936944,0.034410845,0.015255451,0.053566238,0.004171012,0,0.011023258,0.782327088,3382,4323,0.744231776,0.820422399,,,,,,,,,,,,,0.820285176,0.748825705,0.891744647,0.457,,4323,0.38023442,0.53376558,73.69022784,,,72.10849766,75.27195802,,,,,,,,,,,,,73.076392,71.42813054,74.72465346,,,,546.509159,275,37681,479.202069,613.8162491,,,,,,,,,,,,,569.0502373,497.7997783,640.3006962,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.164,,,0.141,0.19,0.202,,,0.175,0.23,0.124,,,0.106,0.144,,,,,,0.168,2310,,,,0.041415322,576.6255255,13923,,,42.21400015,17,40271,24.59121072,67.58870357,,,,,,,,,,,,,45.83692839,26.70169993,73.38936264,,,,0.417,,,0.396,0.434,0.079994493,581,7263,0.064505131,0.095483854,0.033911672,86,2536,0.021996778,0.045826566,0.000779037,11,14120,,,1283.636364,0.975,140.4,144,,,,,,,,3.401711609,,,,,,,,,3.389266553,3.147425163,,,,,,,,,3.117562143,,,,,,-4634.513,,,,,0.889222756,39951,44928,0.700267075,1.078178438,41863,,,36407.17021,47318.82979,,,,59489,46610.19149,72367.80851,,,,40357,22129.59575,58584.40426,45157,40928.40426,49385.59575,,,,,,0.724082935,1362,1881,,,,,,,,0.305496501,,41863,,,7.911392405,5,632,,,,,,,,,,,,,,,,,,,,,,,,,,13.70108925,10,66804,6.265010455,26.00893521,14.96916352,,,,,,,,,,,,,15.12297612,6.915187676,28.7081194,,,,,,,,,,,,,,,,,,,,,,,,,,,19.27669555,18,93377,11.42459147,30.46548965,,,,,,,,,,,,,20.82682495,12.3432964,32.91536241,,,,,,1100,,,5,-888,0.514883721,5535,10750,,,0.564,,,,,0.335302646,,,,,0.78585209,3666,4665,0.740912176,0.830792004,0.106976744,460,4300,0.069386515,0.144566974,0.772775991,3605,4665,0.745298673,0.80025331,14120,,,,,0.175283286,2475,14120,,,0.176699717,2495,14120,,,0.050424929,712,14120,,,0.002903683,41,14120,,,0.00970255,137,14120,,,0.000283286,4,14120,,,0.012677054,179,14120,,,0.914730878,12916,14120,,,0,0,13184,0,0.006868416,0.418626062,5911,14120,,,1,13726,13726,, -21,177,21177,KY,Muhlenberg County,2024,1,11889.32354,674,84095,10496.75547,13281.89161,0,,,,2,,,,2,8753.573904,5003.423824,14215.25561,1,,,,2,12336.57454,10841.4158,13831.73328,,,,,2,,0.233,,,0.197,0.269,5.161301721,,,4.188212017,6.227639395,5.833326041,,,4.696294064,7.064296503,0.097560976,236,2419,0.085736412,0.10938554,0,,,,,,,,,,,,,0.09650655,0.084412292,0.108600808,,,,,,,0.24,,,0.193,0.287,0.411,,,0.336,0.491,7.4,0.051674098,0.138,,,0.313,,,0.259,0.369,0.613618727,18978,30928,,,0.14077958,,,0.111164555,0.175300268,0.1,4,40,0.038138403,0.188027228,303,93,30694,,,44.20683051,277,6266,39.00081371,49.41284732,,,,,,,,,,,,,49.00860456,43.07419163,54.9430175,,,,,,,0.07200478,1687,23429,0.060089887,0.083919674,0.000325797,10,30694,,,3069.4,0.000262683,8,30455,,,3806.875,0.000853719,26,30455,,,1171.346154,3370,,,,,,,,,3424,0.44,,,,,,,0.42,,0.44,0.29,,,,,,,0.4,,0.29,0.841884626,18476,21946,0.820918898,0.862850354,0.496036544,3692,7443,0.420791366,0.571281723,0.056835482,560,9853,,,0.271,1657,,0.187595745,0.354404255,,,,,,,0.137254902,0,0.602684548,0.16,0,0.435658587,0.229994701,0.170027406,0.289961996,5.45457197,112206,20571,4.330784008,6.578359933,0.215547146,1367,6342,0.146056867,0.285037425,19.54779436,60,30694,,,110.1960708,169,153363,93.58189394,126.8102476,,,,,,,,,,,,,118.5262994,100.5494922,136.5031066,,,,8.5,,,,,1,,,,,0.138214905,1595,11540,0.103701949,0.172727861,0.093199651,0.064806972,0.121592331,0.004332756,0,0.010094913,0.041161179,0.014200852,0.068121505,0.864974368,10461,12094,0.826283834,0.903664901,,,,,,,,,,,,,0.878624689,0.835942983,0.921306395,0.343,,12094,0.293671765,0.392328235,73.26285852,,,72.25238877,74.27332827,,,,,,,,,,,,,72.85349077,71.79047902,73.91650252,,,,583.7688261,674,84095,537.2875967,630.2500555,,,,,,,543.1835389,348.0279427,808.2140493,,,,597.6565494,548.8370192,646.4760797,,,,67.0832892,19,28323,40.38852228,104.7588658,,,,,,,,,,,,,71.51654814,42.38523891,113.0269787,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.152,,,0.129,0.174,0.196,,,0.168,0.224,0.112,,,0.095,0.13,87.6,23,26247,,,0.138,4280,,,,0.051674098,1627.682412,31499,,,21.79290205,20,91773,13.31167074,33.65736971,,,,,,,,,,,,,23.74084494,14.50152486,36.66580951,,,,0.389,,,0.371,0.406,0.084144848,1443,17149,0.068655486,0.09963421,0.039825669,265,6654,0.027910775,0.051740562,0.001346249,41,30455,,,742.8048781,0.88,243.76,277,,,,,,,,3.316352389,,,,,,,,,3.320549809,3.334757829,,,,,,,,,3.338807107,0.028273022,,,,,-1524.104,,,,,0.717307659,40827,56917,0.573818161,0.860797156,48190,,,41661.82979,54718.17021,,,,,,,32146,25034,39258,50029,34870.87234,65187.12766,50043,45119.76596,54966.23404,,,,,,0.629131525,2760,4387,,,59.89104693,,,,,0.26538701,,48190,,,4.013761468,7,1744,,,,,,,,,,,,,,,,,,,,,,,,,,17.35702557,32,153363,11.62427244,24.92758402,20.86552819,,,,,,,,,,,,,17.75829789,11.80025998,25.66568483,,,,19.56143268,30,153363,13.19801649,27.92516148,,,,,,,,,,,,,20.58241127,13.78436385,29.55977589,,,,24.12164732,52,215574,18.01519998,31.63233124,,,,,,,,,,,,,25.73742777,19.16320549,33.83996436,,,,16.07142857,,2800,,,15,30,0.587489678,14229,24220,,,0.653,,,,,14.77932352,,,,,0.824090487,9763,11847,0.801352118,0.846828857,0.095962706,1091,11369,0.069226952,0.12269846,0.818350637,9695,11847,0.785511502,0.851189772,30455,,,,,0.2054835,6258,30455,,,0.203414874,6195,30455,,,0.036086029,1099,30455,,,0.002725333,83,30455,,,0.003349204,102,30455,,,0.000131341,4,30455,,,0.018519127,564,30455,,,0.927598096,28250,30455,,,0.001724614,50,28992,0,0.006241746,0.487933016,14860,30455,,,0.635184946,19645,30928,, -21,179,21179,KY,Nelson County,2024,1,10059.37979,821,131325,9022.0051,11096.75449,0,,,,2,,,,2,10704.07283,6858.301438,15926.8119,1,,,,2,10319.53582,9203.598721,11435.47292,,,,,2,,0.179,,,0.152,0.21,4.28914192,,,3.423653743,5.208320335,5.530094605,,,4.470313797,6.632585011,0.073068894,280,3832,0.064828778,0.081309009,0,,,,,,,0.168478261,0.114395868,0.222560654,,,,0.066999706,0.058599258,0.075400154,,,,,,,0.187,,,0.149,0.231,0.364,,,0.293,0.439,8.9,0.013145739,0.088,,,0.259,,,0.212,0.315,0.615623262,28773,46738,,,0.164706159,,,0.131920722,0.203957735,0.240740741,13,54,0.170632393,0.315511447,301.5,142,47098,,,21.76870748,208,9555,18.81030644,24.72710853,,,,,,,20.79395085,10.38026534,37.20612195,40.24767802,21.43019347,68.82475517,20.52892163,17.44290866,23.6149346,,,,29.76190476,14.27199017,54.73320251,0.055323831,2162,39079,0.046983406,0.063664257,0.000530808,25,47098,,,1883.92,0.000569716,27,47392,,,1755.259259,0.001519244,72,47392,,,658.2222222,2864,,,,,,,,,2910,0.47,,,,,,,0.47,,0.47,0.49,,,,,,,0.39,,0.5,0.922248767,29725,32231,0.908865894,0.93563164,0.62815325,7296,11615,0.566257271,0.690049229,0.037756567,894,23678,,,0.147,1555,,0.094574468,0.199425532,,,,,,,0.033898305,0,0.148889977,0.313351499,0.105020629,0.521682369,0.119314436,0.083239743,0.15538913,3.970222751,120131,30258,3.456475115,4.483970387,0.195901865,2132,10883,0.144920506,0.246883225,9.3422226,44,47098,,,103.7739112,240,231272,90.64469999,116.9031225,,,,,,,,,,,,,111.0728101,96.77992714,125.3656931,,,,9,,,,,1,,,,,0.090605892,1630,17990,0.068983581,0.112228203,0.074650252,0.054680879,0.094619624,0.010505837,0.003597375,0.017414298,0.010005559,0.003872054,0.016139063,0.849517627,18844,22182,0.81822236,0.880812894,,,,,,,,,,,,,0.834383844,0.806640696,0.862126991,0.391,,22182,0.347809538,0.434190462,74.66715848,,,73.86720103,75.46711593,,,,,,,72.96285905,69.54014863,76.38556947,,,,74.4302544,73.58764969,75.27285911,,,,484.3564746,821,131325,449.6914856,519.0214637,,,,,,,638.0280633,472.0166736,843.5069359,,,,488.8328156,452.3635179,525.3021133,,,,38.11701925,18,47223,22.59056134,60.24132365,,,,,,,,,,,,,36.77552221,20.58298061,60.65563124,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.124,,,0.106,0.144,0.179,,,0.154,0.206,0.095,,,0.08,0.11,76.2,30,39375,,,0.088,4090,,,,0.013145739,571.011482,43437,,,42.2088839,59,139781,32.13135807,54.44638496,,,,,,,,,,,,,45.18609537,34.22350736,58.54382766,,,,0.382,,,0.364,0.399,0.064384534,1815,28190,0.053661129,0.075107938,0.033020934,377,11417,0.022297529,0.043744338,0.001329338,63,47392,,,752.2539683,0.906346499,504.835,557,,,,,,,,2.893223437,,,,,,,,2.378789067,2.96653938,2.781532989,,,,,,,,2.419212569,2.870371131,0.093182026,,,,,1613.40959,,,,,0.784847171,43446,55356,0.688483087,0.881211255,66681,,,62201,71161,,,,,,,40288,12183.14894,68392.85106,80890,53417.82979,108362.1702,67405,62337.59575,72472.40426,,,,,,0.514995118,3692,7169,,,53.55794114,,,,,0.191793764,,66681,,,8.121468927,23,2832,,,4.659007259,15,321957,2.607610996,7.684323954,,,,,,,,,,,,,3.781511161,1.887716747,6.766168027,,,,20.53131443,47,231272,14.9180845,27.56233132,20.32239095,,,,,,,,,,,,,22.57143233,16.40043729,30.30109437,,,,16.43086928,38,231272,11.62746102,22.55265182,,,,,,,,,,,,,18.19296028,12.87442149,24.97125939,,,,20.18903146,65,321957,15.58146825,25.7325779,,,,,,,,,,,,,20.97019825,16.04054006,26.93709694,,,,4.693877551,,4900,,,15,8,0.666905752,23245,34855,,,0.76,,,,,29.57846544,,,,,0.765021401,14120,18457,0.739763109,0.790279693,0.097521219,1735,17791,0.07471645,0.120325987,0.888335049,16396,18457,0.862524059,0.91414604,47392,,,,,0.227823261,10797,47392,,,0.173784605,8236,47392,,,0.048679102,2307,47392,,,0.002679777,127,47392,,,0.005718265,271,47392,,,0.000654119,31,47392,,,0.02603815,1234,47392,,,0.898780385,42595,47392,,,0.006668032,293,43941,0.000713594,0.01262247,0.504494429,23909,47392,,,0.621678292,29056,46738,, -21,181,21181,KY,Nicholas County,2024,1,11140.86069,164,20749,8592.551666,13689.16972,0,,,,2,,,,2,,,,2,,,,2,11527.1008,8863.219768,14190.98183,,,,,2,,0.247,,,0.208,0.288,5.237075449,,,4.062390218,6.455737745,6.162789946,,,4.744173359,7.676755743,0.086124402,54,627,0.064164573,0.108084231,0,,,,,,,,,,,,,0.08881579,0.066203087,0.111428492,,,,,,,0.263,,,0.21,0.32,0.415,,,0.314,0.518,7.7,0.002957094,0.148,,,0.336,,,0.272,0.401,0.08186281,617,7537,,,0.14228879,,,0.10584852,0.184286328,0.166666667,2,12,0.039062389,0.344663233,324.2,25,7712,,,35.93947037,57,1586,27.22020389,46.56375246,,,,,,,,,,,,,38.27418232,28.8333521,49.81910924,,,,,,,0.078470825,507,6461,0.065364442,0.091577208,0.000129668,1,7712,,,7712,0.000128123,1,7805,,,7805,0.000384369,3,7805,,,2601.666667,1635,,,,,,,,,1654,0.35,,,,,,,,,0.34,0.48,,,,,,,,,0.48,0.816023166,4227,5180,0.758946895,0.873099437,0.427157779,777,1819,0.310573904,0.543741655,0.04065534,134,3296,,,0.259,483,,0.163680851,0.354319149,,,,,,,,,,,,,0.150812065,0.077374165,0.224249965,4.207752465,99000,23528,2.463816005,5.951688925,0.120794264,219,1813,0.045245989,0.196342539,10.37344398,8,7712,,,120.5116266,44,36511,87.5639324,161.7812338,,,,,,,,,,,,,126.0492165,91.58755367,169.2151897,,,,8.1,,,,,0,,,,,0.116022099,315,2715,0.071987284,0.160056915,0.087523278,0.044461309,0.130585246,0.006998158,0,0.0226302,0.023572744,0.000637398,0.04650809,0.794269934,2301,2897,0.728127188,0.860412681,,,,,,,,,,,,,0.67677643,0.581539925,0.772012935,0.663,,2897,0.504384167,0.821615833,72.99882384,,,71.12277953,74.87486815,,,,,,,,,,,,,72.72029498,70.78869919,74.65189078,,,,591.0982081,164,20749,497.2380413,684.9583748,,,,,,,,,,,,,604.8513832,507.9072233,701.7955431,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.161,,,0.136,0.188,0.209,,,0.178,0.244,0.117,,,0.097,0.139,,,,,,0.148,1110,,,,0.002957094,21.09886215,7135,,,58.51901868,13,22215,31.15891286,100.0693042,,,,,,,,,,,,,61.22256758,32.59843878,104.6924551,,,,0.392,,,0.374,0.41,0.091067538,418,4590,0.074386687,0.107748389,0.047424783,93,1961,0.031935422,0.062914145,0.001153107,9,7805,,,867.2222222,0.925,72.15,78,,,,,,,,2.918119241,,,,,,,,,2.920812012,2.977333953,,,,,,,,,2.967854315,0.00239828,,,,,-3656.074,,,,,0.62668607,40049,63906,0.390957327,0.862414813,51100,,,43654.38298,58545.61702,,,,,,,44688,21892.42553,67483.57447,,,,55648,43974.97872,67321.02128,,,,,,0.685413005,780,1138,,,,,,,,0.284892368,,51100,,,4.484304933,2,446,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,51.25576627,26,50726,33.48196825,75.10157332,,,,,,,,,,,,,53.51556068,34.95814098,78.41269571,,,,,,800,,,-888,-888,0.618016379,3396,5495,,,0.633,,,,,2.769061033,,,,,0.714231064,1867,2614,0.644557268,0.783904859,0.100040016,250,2499,0.049848998,0.150231034,0.746748279,1952,2614,0.669222584,0.824273973,7805,,,,,0.243433696,1900,7805,,,0.163484946,1276,7805,,,0.008327995,65,7805,,,0.001665599,13,7805,,,0.002818706,22,7805,,,0,0,7805,,,0.024087124,188,7805,,,0.957335042,7472,7805,,,0,0,7173,0,0.011295313,0.496476618,3875,7805,,,1,7537,7537,, -21,183,21183,KY,Ohio County,2024,1,10377.5222,487,66173,8889.598017,11865.44639,0,,,,2,,,,2,,,,2,,,,2,10363.34079,8820.809947,11905.87163,,,,,2,,0.224,,,0.189,0.261,4.965908237,,,3.973263571,6.019185612,5.914362651,,,4.732354145,7.122906484,0.089267286,173,1938,0.076572633,0.101961938,0,,,,,,,,,,0.067073171,0.028787844,0.105358497,0.087880528,0.074581226,0.101179831,,,,,,,0.24,,,0.192,0.289,0.403,,,0.326,0.481,7.9,0.028793978,0.123,,,0.318,,,0.26,0.376,0.379017331,9010,23772,,,0.150660085,,,0.119029773,0.186818612,0.290322581,9,31,0.195384033,0.388273114,232.2,55,23688,,,42.09284028,214,5084,36.45312193,47.73255864,,,,,,,,,,70.06369427,43.90854418,106.0772751,40.60475162,34.80039611,46.40910714,,,,,,,0.072333108,1388,19189,0.060418214,0.084248001,0.000211077,5,23688,,,4737.6,0.000255026,6,23527,,,3921.166667,0.000425044,10,23527,,,2352.7,3608,,,,,,,,,3642,0.42,,,,,,,,,0.42,0.36,,,,,,,,,0.36,0.818337408,13388,16360,0.783746645,0.852928172,0.48982706,2889,5898,0.419127796,0.560526324,0.04896794,446,9108,,,0.231,1256,,0.15712766,0.30487234,,,,,,,,,,,,,0.177204829,0.128235184,0.226174474,4.001146744,101185,25289,3.296608205,4.705685283,0.246418338,1376,5584,0.164509973,0.328326703,12.66464032,30,23688,,,80.93450146,97,119850,65.63242851,98.73322815,,,,,,,,,,,,,80.69164265,64.96787719,99.07145637,,,,8.7,,,,,0,,,,,0.119241192,1100,9225,0.08349118,0.154991205,0.093784079,0.062319313,0.125248844,0.020596206,0.005241002,0.03595141,0.005311653,0.00143187,0.009191436,0.835758836,8040,9620,0.82422993,0.847287742,,,,,,,,,,,,,0.821181263,0.775335568,0.867026958,0.473,,9620,0.407848298,0.538151702,73.93558364,,,72.79862219,75.07254509,,,,,,,,,,,,,73.79045001,72.62398211,74.9569179,,,,539.6139075,487,66173,489.4046832,589.8231318,,,,,,,,,,,,,546.4512612,494.8629745,598.0395478,,,,63.44926042,16,25217,36.26673456,103.0376238,,,,,,,,,,,,,66.00079201,36.94014227,108.8582693,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.149,,,0.128,0.172,0.197,,,0.17,0.226,0.11,,,0.094,0.128,35.3,7,19804,,,0.123,2930,,,,0.028793978,686.5060206,23842,,,,,,,,,,,,,,,,,,,,,,,,,,0.376,,,0.357,0.395,0.085630066,1162,13570,0.070140705,0.101119428,0.041158537,243,5904,0.028052154,0.05426492,0.001105113,26,23527,,,904.8846154,0.925,219.225,237,,,,,,,,3.066832295,,,,,,,,,3.058782867,2.705205573,,,,,,,,2.551631321,2.723565625,0.047801147,,,,,16.83887,,,,,0.750224431,35935,47899,0.583623028,0.916825833,50275,,,44885.89362,55664.10638,,,,,,,,,,,,,53239,50149.46809,56328.53192,,,,,,0.648730199,2580,3977,,,87.37520208,,,,,0.254380905,,50275,,,3.728560776,5,1341,,,,,,,,,,,,,,,,,,,,,,,,,,21.61604577,26,119850,13.8498084,32.16296267,21.6937839,,,,,,,,,,,,,20.81610647,13.0453431,31.51583536,,,,17.52190238,21,119850,10.84633374,26.78408906,,,,,,,,,,,,,16.84770561,10.14341934,26.30977927,,,,22.55942628,38,168444,15.9643927,30.96457512,,,,,,,,,,,,,22.72942514,15.91940993,31.46710515,,,,18.21428571,,2800,,,29,22,0.623012318,11127,17860,,,0.643,,,,,3.789723357,,,,,0.778453711,7038,9041,0.742497041,0.814410381,0.088682134,753,8491,0.060348191,0.117016077,0.792943259,7169,9041,0.757962119,0.827924398,23527,,,,,0.235474136,5540,23527,,,0.189016874,4447,23527,,,0.010498576,247,23527,,,0.004080418,96,23527,,,0.003442853,81,23527,,,0.001275131,30,23527,,,0.036298721,854,23527,,,0.937433587,22055,23527,,,0.019292319,434,22496,0.007806638,0.030778,0.498108556,11719,23527,,,0.761988895,18114,23772,, -21,185,21185,KY,Oldham County,2024,1,5817.614041,727,192241,5157.171358,6478.056724,0,,,,2,,,,2,15545.52172,8032.597917,27154.89796,1,,,,2,5665.774047,4973.673789,6357.874305,,,,,2,,0.136,,,0.113,0.165,3.423232946,,,2.680299666,4.218335145,4.811042206,,,3.801777291,5.789250485,0.061012658,241,3950,0.053548216,0.068477101,0,,,,,,,,,,0.048442907,0.023689232,0.073196581,0.061283764,0.053272013,0.069295515,,,,,,,0.137,,,0.103,0.175,0.313,,,0.244,0.381,9.3,0.050424722,0.05,,,0.205,,,0.165,0.25,0.91986037,62189,67607,,,0.183110605,,,0.145603528,0.220957892,0.216216216,8,37,0.132577529,0.309084407,182,125,68685,,,6.488659202,113,17415,5.292271847,7.685046557,,,,,,,,,,21.37232846,12.86753787,33.37553833,5.568076362,4.441315772,6.893657416,,,,,,,0.037419543,2058,54998,0.031462096,0.043376989,0.000596928,41,68685,,,1675.243902,0.000403278,28,69431,,,2479.678571,0.001195431,83,69431,,,836.5180723,2240,,,,,,,,,2246,0.54,,,,,,,0.61,,0.54,0.52,,,,,,0.36,0.43,0.2,0.52,0.94238528,42511,45110,0.934991517,0.949779044,0.772364027,12951,16768,0.724573511,0.820154543,0.032633754,1090,33401,,,0.038,641,,0.021319149,0.054680851,,,,0.01,0,0.267970734,0.017921147,0,0.11091182,0.096566524,0,0.194736024,0.044591304,0.022598258,0.066584351,3.8323555,207066,54031,3.390158971,4.274552029,0.154402754,2646,17137,0.121075093,0.187730416,6.406056635,44,68685,,,56.95236278,191,335368,48.87534323,65.02938233,,,,,,,113.0981834,64.64538385,183.6643642,,,,56.82010349,48.22792183,65.41228516,,,,9.5,,,,,0,,,,,0.0710254,1510,21260,0.057143887,0.084906913,0.058046248,0.04549272,0.070599776,0.009877705,0.003949774,0.015805635,0.003527752,0.000243937,0.006811566,0.764820304,24771,32388,0.74311817,0.786522438,,,,,,,0.649142857,0.495640706,0.802645009,0.650519031,0.470075433,0.83096263,0.681760799,0.648584238,0.71493736,0.461,,32388,0.424025415,0.497974585,79.58095589,,,78.876145,80.28576679,,,,,,,72.02487724,65.94734244,78.10241204,84.99867945,77.74730471,92.25005418,79.60506317,78.87653848,80.33358786,,,,307.5986253,727,192241,284.7202022,330.4770483,,,,,,,594.5738833,424.7722993,809.6408736,,,,303.6097743,279.7289915,327.4905572,,,,33.46809821,25,74698,21.65878852,49.40551514,,,,,,,,,,,,,32.61072116,20.18655038,49.84895139,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.098,,,0.083,0.116,0.148,,,0.126,0.173,0.08,,,0.067,0.094,144.8,83,57316,,,0.05,3400,,,,0.050424722,3041.417527,60316,,,18.7670076,38,202483,13.28065153,25.75918419,,,,,,,,,,,,,19.61784439,13.66454742,27.28367256,,,,0.341,,,0.321,0.36,0.042522808,1608,37815,0.035373872,0.049671745,0.027407081,497,18134,0.019066655,0.035747506,0.000633723,44,69431,,,1577.977273,0.97,978.73,1009,,,,,,,,3.322305271,,,,,,,3.036261799,2.644690601,3.388568982,3.256185761,,,,,,,2.694475293,2.726807054,3.297434902,0.030900783,,,,,3889.004,,,,,0.69628661,60171,86417,0.646237471,0.74633575,116173,,,106093,126253,,,,139938,42671.95745,237204.0426,95556,62009.61702,129102.383,134844,35595.31915,234092.6809,117536,113038.1277,122033.8723,,,,,,0.184543477,2290,12409,,,29.16000243,,,,,0.125313111,,116173,,,8.66447565,29,3347,,,,,,,,,,,,,,,,,,,,,,,,,,14.1271665,47,335368,10.30445219,18.90326028,14.01445576,,,,,,,,,,,,,13.56129231,9.596777564,18.61393323,,,,7.752677656,26,335368,5.064306438,11.35946903,,,,,,,,,,,,,7.102512937,4.396567452,10.85694549,,,,9.231370343,43,465803,6.68078849,12.43459527,,,,,,,,,,,,,9.249973224,6.545831584,12.69631095,,,,7.816091954,,8700,,,28,40,0.780014393,37936,48635,,,0.803,,,,,36.72903337,,,,,0.868582791,19220,22128,0.85791625,0.879249332,0.059509062,1297,21795,0.046948623,0.0720695,0.946854664,20952,22128,0.934774695,0.958934633,69431,,,,,0.244199277,16955,69431,,,0.146894039,10199,69431,,,0.041393614,2874,69431,,,0.004220017,293,69431,,,0.018464375,1282,69431,,,0.00087857,61,69431,,,0.042517031,2952,69431,,,0.87737466,60917,69431,,,0.004066612,263,64673,0.001545121,0.006588103,0.474514266,32946,69431,,,0.251630748,17012,67607,, -21,187,21187,KY,Owen County,2024,1,11820.40238,229,30825,9317.47314,14323.33162,0,,,,2,,,,2,,,,2,,,,2,12418.29625,9769.442224,15067.15027,,,,,2,,0.213,,,0.176,0.251,4.705937431,,,3.687271809,5.774487793,5.678882249,,,4.492863652,6.920021007,0.066024759,48,727,0.047973398,0.084076121,0,,,,,,,,,,,,,0.062767475,0.044812365,0.080722585,,,,,,,0.227,,,0.179,0.276,0.383,,,0.3,0.469,8,0.044471899,0.114,,,0.294,,,0.237,0.352,0.234350062,2643,11278,,,0.14564652,,,0.114264979,0.181432893,0.529411765,9,17,0.415563015,0.627687466,106.3,12,11294,,,28.19779322,69,2447,21.93956623,35.68611201,,,,,,,,,,,,,28.84182064,22.21171633,36.83036107,,,,,,,0.080495017,735,9131,0.067388634,0.0936014,0.00035417,4,11294,,,2823.5,0.00044287,5,11290,,,2258,0.00044287,5,11290,,,2258,2459,,,,,,,,,2500,0.34,,,,,,,,,0.34,0.36,,,,,,,0.5,,0.36,0.837998733,6616,7895,0.794198734,0.881798733,0.489053948,1251,2558,0.379053406,0.599054491,0.033652008,176,5230,,,0.198,465,,0.126510638,0.269489362,,,,,,,,,,,,,0.131733816,0.064468229,0.198999403,4.897192129,110750,22615,3.640385157,6.153999101,0.096919918,236,2435,0.029095152,0.164744684,12.39596246,14,11294,,,154.9483202,85,54857,123.7672148,191.5959975,,,,,,,,,,,,,161.6410414,128.9312251,200.1226081,,,,8.5,,,,,0,,,,,0.1401649,595,4245,0.097600312,0.182729488,0.105263158,0.06333888,0.147187436,0.035335689,0.013884184,0.056787194,0.004711425,0,0.011328433,0.760074396,3678,4839,0.688161283,0.831987508,,,,,,,,,,,,,0.687526607,0.569784677,0.805268538,0.576,,4839,0.460646845,0.691353155,72.97164865,,,71.15744302,74.78585427,,,,,,,,,,,,,72.42461715,70.54379635,74.30543796,,,,527.8009237,229,30825,454.8238071,600.7780403,,,,,,,,,,,,,549.0272121,472.6585491,625.3958751,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.141,,,0.119,0.164,0.192,,,0.164,0.22,0.104,,,0.088,0.122,62.3,6,9637,,,0.114,1270,,,,0.044471899,482.1198586,10841,,,54.19727809,18,33212,32.12074184,85.65506524,,,,,,,,,,,,,57.16100349,33.87723335,90.33902911,,,,0.37,,,0.35,0.39,0.089317774,597,6684,0.073828412,0.104807136,0.057864078,149,2575,0.038800248,0.076927908,0.000354296,4,11290,,,2822.5,0.925,108.225,117,,,,,,,,2.919398061,,,,,,,,,2.90845008,2.908577057,,,,,,,,,2.92138614,0.008554391,,,,,-704.7705,,,,,0.928737673,47087,50700,0.749696429,1.107778916,60592,,,52290.89362,68893.10638,,,,,,,,,,,,,56529,53509.76596,59548.23404,,,,,,0.566647432,982,1733,,,,,,,,0.240262741,,60592,,,3.120124805,2,641,,,,,,,,,,,,,,,,,,,,,,,,,,18.77078329,11,54857,9.370307387,33.58611633,20.05213555,,,,,,,,,,,,,19.68481101,9.82658673,35.22156439,,,,,,,,,,,,,,,,,,,,,,,,,,,35.41959097,27,76229,23.34173363,51.53364526,,,,,,,,,,,,,37.38265998,24.63540848,54.38980761,,,,,,1200,,,11,-888,0.647596439,5456,8425,,,0.535,,,,,2.223105064,,,,,0.8552822,3546,4146,0.805508203,0.905056196,0.090117003,362,4017,0.050901113,0.129332893,0.725759769,3009,4146,0.677389062,0.774130475,11290,,,,,0.211514615,2388,11290,,,0.203720106,2300,11290,,,0.012666076,143,11290,,,0.003897254,44,11290,,,0.002480071,28,11290,,,0.000088574,1,11290,,,0.025066431,283,11290,,,0.946324181,10684,11290,,,0.00301517,32,10613,0,0.012168871,0.498582817,5629,11290,,,1,11278,11278,, -21,189,21189,KY,Owsley County,2024,1,22153.06588,152,11595,16914.42101,27391.71075,0,,,,2,,,,2,,,,2,,,,2,21948.39969,16662.22477,27234.57461,,,,,2,,0.282,,,0.24,0.33,5.685921778,,,4.553600951,6.872588429,6.359821993,,,5.062258663,7.646770932,0.102362205,39,381,0.071924355,0.132800054,0,,,,,,,,,,,,,0.10106383,0.070597197,0.131530462,,,,,,,0.295,,,0.242,0.35,0.444,,,0.356,0.531,6,0.013953468,0.218,,,0.374,,,0.311,0.436,0.842508023,3413,4051,,,0.132960437,,,0.102715973,0.163826144,0.4,2,5,0.149190828,0.619170557,151.8,6,3953,,,27.24177072,24,881,17.45431652,40.53359545,,,,,,,,,,,,,27.97202797,17.92220612,41.62016037,,,,,,,0.075949367,240,3160,0.062842984,0.08905575,,0,3953,,,,0.000509035,2,3929,,,1964.5,0.001527106,6,3929,,,654.8333333,3028,,,,,,,,,3050,0.24,,,,,,,,,0.24,0.26,,,,,,,,,0.26,0.713812521,2155,3019,0.6333008,0.794324242,0.36351706,277,762,0.237493901,0.48954022,0.068837209,74,1075,,,0.44,387,,0.273191489,0.606808511,,,,,,,,,,,,,0.232104122,0.108515578,0.355692665,6.336153369,81635,12884,4.855917184,7.816389554,0.354194408,266,751,0.171604302,0.536784513,0,0,3953,,,222.160511,48,21606,163.8036232,294.5526066,,,,,,,,,,,,,220.845936,161.6869817,294.5775299,,,,7.6,,,,,0,,,,,0.151057402,250,1655,0.086451065,0.215663739,0.10875,0.046962004,0.170537996,0.014501511,0,0.041808084,0.027190332,0,0.054392152,0.77451879,845,1091,0.68833552,0.860702061,,,,,,,,,,,,,0.817229336,0.727021633,0.90743704,0.359,,1091,0.209493009,0.508506991,65.76729287,,,62.96614515,68.56844059,,,,,,,,,,,,,65.79351913,62.97888702,68.60815125,,,,1000.871572,152,11595,829.9630963,1171.780047,,,,,,,,,,,,,1002.19246,828.6512899,1175.73363,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.177,,,0.152,0.206,0.221,,,0.191,0.253,0.127,,,0.108,0.149,,,,,,0.218,890,,,,0.013953468,66.34874203,4755,,,86.62099378,11,12699,43.240888,154.9888851,,,,,,,,,,,,,90.04584152,44.95055965,161.1168837,,,,0.404,,,0.388,0.42,0.090156794,207,2296,0.073475943,0.106837646,0.039647577,36,908,0.025349705,0.053945449,0.001527106,6,3929,,,654.8333333,,,,,,,,,,,2.392212301,,,,,,,,,2.388709122,2.692689374,,,,,,,,,2.710849435,,,,,,-4153.672,,,,,0.796379319,32685,41042,0.432689533,1.160069105,32783,,,27828.78723,37737.21277,,,,,,,,,,,,,32844,21938.29787,43749.70213,,,,,,0.860103627,664,772,,,,,,,,0.390110728,,32783,,,3.731343284,1,268,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,55.63191308,17,30558,32.40763947,89.072082,,,,,,,,,,,,,54.19870601,30.97924343,88.015303,,,,,,400,,,-888,0,0.530812325,1895,3570,,,0.358,,,,,0.025021602,,,,,0.632682574,875,1383,0.544679459,0.720685689,0.08209607,94,1145,0.014599223,0.149592917,0.704989154,975,1383,0.630568696,0.779409612,3929,,,,,0.227284296,893,3929,,,0.207431917,815,3929,,,0.008144566,32,3929,,,0.003817765,15,3929,,,0.001272588,5,3929,,,0.000509035,2,3929,,,0.021634004,85,3929,,,0.95265971,3743,3929,,,0,0,3827,0,0.014944209,0.510817002,2007,3929,,,1,4051,4051,, -21,191,21191,KY,Pendleton County,2024,1,13113.78733,302,41039,10856.48989,15371.08477,0,,,,2,,,,2,,,,2,,,,2,13369.70282,11035.47277,15703.93287,,,,,2,,0.217,,,0.181,0.258,4.850024054,,,3.858949598,5.951898987,5.703200128,,,4.488164884,6.974626784,0.091659785,111,1211,0.075408127,0.107911444,0,,,,,,,,,,,,,0.092228864,0.075655936,0.108801792,,,,,,,0.237,,,0.187,0.286,0.384,,,0.304,0.469,8,0.002037367,0.135,,,0.302,,,0.247,0.364,0.291928435,4275,14644,,,0.145624182,,,0.113705941,0.182329995,0.285714286,4,14,0.142392906,0.436004848,82.2,12,14607,,,36.06882859,109,3022,29.29748486,42.84017232,,,,,,,,,,,,,36.65844202,29.61291629,43.70396775,,,,,,,0.072781408,880,12091,0.060866514,0.084696301,0.000273841,4,14607,,,3651.75,0.000136277,2,14676,,,7338,0.000545108,8,14676,,,1834.5,4927,,,,,,,,,4895,0.41,,,,,,,,,0.4,0.47,,,,,,,,,0.47,0.855392889,8589,10041,0.824149454,0.886636325,0.50209205,1680,3346,0.400562573,0.603621527,0.03515569,245,6969,,,0.183,603,,0.111510638,0.254489362,,,,,,,,,,0.472440945,0.186905583,0.757976307,0.191432904,0.109863572,0.273002235,6.808998254,120921,17759,3.798486201,9.819510308,0.206224549,709,3438,0.126476407,0.285972691,9.584445814,14,14607,,,141.3185155,103,72885,114.0264424,168.6105886,,,,,,,,,,,,,146.092038,117.7401142,174.4439618,,,,8.5,,,,,0,,,,,0.18952381,995,5250,0.129475565,0.249572054,0.160546049,0.106029948,0.21506215,0.028571429,0.00957164,0.047571218,0.002666667,0,0.006755806,0.812113907,5390,6637,0.76783578,0.856392034,,,,,,,,,,,,,0.69487909,0.624811566,0.764946613,0.643,,6637,0.531801419,0.754198581,72.07219775,,,70.50513246,73.63926304,,,,,,,,,,,,,71.78943774,70.18996834,73.38890714,,,,562.5688491,302,41039,494.9739592,630.163739,,,,,,,,,,,,,570.5235418,501.265067,639.7820166,,,,95.91011852,14,14597,52.43495428,160.9208818,,,,,,,,,,,,,103.2600679,56.45323998,173.2528479,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.144,,,0.122,0.169,0.194,,,0.166,0.222,0.106,,,0.09,0.125,57.2,7,12228,,,0.135,1970,,,,0.002037367,30.30991378,14877,,,61.6677706,27,43783,40.6394494,89.72336853,,,,,,,,,,,,,62.08806954,40.55798838,90.9734074,,,,0.401,,,0.38,0.419,0.08020165,700,8728,0.065903778,0.094499522,0.054545455,192,3520,0.037864604,0.071226306,0.000272554,4,14676,,,3669,0.975,161.85,166,,,,,,,,2.953583283,,,,,,,,,2.989931433,3.228829927,,,,,,,,,3.277517044,0.02566597,,,,,-565.916,,,,,0.858779861,45116,52535,0.688370646,1.029189076,65727,,,56208.19149,75245.80851,,,,,,,71250,47944.46809,94555.53192,109250,37674.85106,180825.1489,59003,50025.12766,67980.87234,,,,,,0.602122016,1362,2262,,,,,,,,0.221491929,,65727,,,5.787037037,5,864,,,,,,,,,,,,,,,,,,,,,,,,,,23.35078629,18,72885,13.60269352,37.38687088,24.6964396,,,,,,,,,,,,,24.25306571,14.12830453,38.83150763,,,,13.72024422,10,72885,6.579390404,25.23201762,,,,,,,,,,,,,14.32274882,6.86831478,26.34004503,,,,23.56337074,24,101853,15.09749625,35.06042787,,,,,,,,,,,,,24.53059681,15.71721624,36.49958359,,,,20,,1600,,,13,19,0.61996419,6925,11170,,,0.663,,,,,1.65200731,,,,,0.736242884,3880,5270,0.69023877,0.782246999,0.170559807,847,4966,0.11662412,0.224495493,0.759582543,4003,5270,0.72291921,0.796245875,14676,,,,,0.228400109,3352,14676,,,0.177432543,2604,14676,,,0.010084492,148,14676,,,0.004429,65,14676,,,0.003202508,47,14676,,,0.000749523,11,14676,,,0.015603707,229,14676,,,0.953052603,13987,14676,,,0,0,13772,0,0.006575166,0.484123739,7105,14676,,,1,14644,14644,, -21,193,21193,KY,Perry County,2024,1,22169.47049,1017,74006,20176.34799,24162.59299,0,,,,2,,,,2,36179.97656,18060.91394,64735.97201,1,,,,2,22584.54122,20522.99119,24646.09126,,,,,2,,0.255,,,0.216,0.297,5.23824213,,,4.2826641,6.393470013,6.590740465,,,5.458608321,7.92358082,0.094827586,220,2320,0.082905697,0.106749475,0,,,,,,,,,,,,,0.096110863,0.08389661,0.108325116,,,,,,,0.267,,,0.217,0.319,0.42,,,0.351,0.501,6.9,0.008205317,0.18,,,0.329,,,0.277,0.39,0.325395989,9265,28473,,,0.140481304,,,0.11207434,0.176852465,0.254901961,13,51,0.182286885,0.331521932,146.8,41,27929,,,43.29354643,214,4943,37.49295405,49.09413881,,,,,,,,,,,,,44.16199914,38.11655983,50.20743845,,,,,,,0.063829787,1449,22701,0.053106383,0.074553192,0.001145763,32,27929,,,872.78125,0.000730967,20,27361,,,1368.05,0.007784803,213,27361,,,128.4553991,6314,,,,,,,,,6372,0.28,,,,,,,,,0.28,0.26,,,,,,0.38,0.27,,0.26,0.796325593,15604,19595,0.765051704,0.827599482,0.609370467,4201,6894,0.521661318,0.697079616,0.050181454,401,7991,,,0.299,1834,,0.185808511,0.412191489,,,,,,,0.088235294,0,0.474630558,0.233009709,0,0.495117689,0.286550715,0.202746843,0.370354587,5.688695652,94859,16675,4.460345557,6.917045747,0.250724859,1643,6553,0.183861146,0.317588572,4.654660031,13,27929,,,161.623213,213,131788,139.9177025,183.3287236,,,,,,,466.2004662,223.5612446,857.359256,,,,162.0357437,139.7452915,184.3261959,,,,7.8,,,,,0,,,,,0.092633436,1050,11335,0.065327231,0.119939642,0.070368685,0.046260689,0.09447668,0.010939568,0.002392338,0.019486798,0.01367446,0.004377466,0.022971453,0.71994756,7139,9916,0.690599397,0.749295722,,,,,,,,,,,,,0.787294035,0.752660242,0.821927827,0.289,,9916,0.224033776,0.353966224,65.40447885,,,64.3446867,66.464271,,,,,,,,,,,,,65.10094375,64.01996616,66.18192134,,,,1046.10124,1017,74006,978.3749904,1113.82749,,,,,,,1342.420959,795.6037382,2121.603867,,,,1067.0147,997.0895152,1136.939884,,,,80.13737836,21,26205,49.60630026,122.4984955,,,,,,,,,,,,,82.15576734,50.18287704,126.8829194,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.161,,,0.138,0.187,0.214,,,0.186,0.247,0.124,,,0.107,0.145,107.3,25,23296,,,0.18,5110,,,,0.008205317,235.5910557,28712,,,75.81213752,60,79143,57.85264768,97.58524874,,,,,,,,,,,,,71.96257946,54.0605045,93.89555617,,,,0.408,,,0.39,0.427,0.075666748,1237,16348,0.062560365,0.088773131,0.034084084,227,6660,0.022169191,0.045998978,0.004641643,127,27361,,,215.4409449,0.949267913,304.715,321,,,0.121341899,170,1401,0.048254951,0.194428847,3.203141923,,,,,,,,,3.215015531,2.906706198,,,,,,,,,2.929127621,0.062196382,,,,,-6979.717,,,,,0.984307155,41711,42376,0.808980203,1.159634107,43945,,,38932.40426,48957.59575,,,,,,,,,,,,,44627,35161.80851,54092.19149,,,,,,0.69283052,3160,4561,,,77.38508863,,,,,0.283923086,,43945,,,3.412969283,6,1758,,,10.71260231,20,186696,6.543535794,16.54474542,,,,,,,,,,,,,11.24947971,6.871474461,17.37390903,,,,11.72055296,17,131788,6.559904516,19.33126969,12.89950527,,,,,,,,,,,,,11.8072475,6.455132079,19.81055502,,,,20.48744954,27,131788,13.50135834,29.80816345,,,,,,,,,,,,,20.75334648,13.55677494,30.40846105,,,,40.17225865,75,186696,31.59802979,50.35627408,,,,,,,,,,,,,41.06060095,32.18495659,51.62754108,,,,7.2,,2500,,,6,12,0.531096645,10606,19970,,,0.453,,,,,17.08524347,,,,,0.757247983,8541,11279,0.729907331,0.784588635,0.082779571,872,10534,0.056011218,0.109547924,0.846174306,9544,11279,0.812806945,0.879541668,27361,,,,,0.231131903,6324,27361,,,0.183582471,5023,27361,,,0.016264025,445,27361,,,0.002192902,60,27361,,,0.008698513,238,27361,,,0.000438581,12,27361,,,0.011805124,323,27361,,,0.949417054,25977,27361,,,0.001854235,49,26426,0,0.005890782,0.504513724,13804,27361,,,0.725775296,20665,28473,, -21,195,21195,KY,Pike County,2024,1,15265.99636,1699,159471,14130.51783,16401.47489,0,,,,2,,,,2,,,,2,,,,2,15514.94749,14352.23048,16677.66451,,,,,2,,0.265,,,0.223,0.31,5.46332597,,,4.406488833,6.570908362,6.072723672,,,4.98916283,7.228471916,0.11387989,457,4013,0.104051298,0.123708482,0,,,,,,,,,,,,,0.113039041,0.10312536,0.122952721,,,,,,,0.274,,,0.218,0.331,0.434,,,0.364,0.502,6.9,0.00058964,0.187,,,0.35,,,0.293,0.41,0.402222639,23598,58669,,,0.129547763,,,0.103627463,0.158913146,0.230769231,18,78,0.173024227,0.292228886,142.9,82,57391,,,31.73924202,371,11689,28.50951611,34.96896793,,,,,,,,,,,,,32.59325044,29.25859695,35.92790394,,,,,,,0.07565578,3412,45099,0.063740886,0.087570673,0.000749246,43,57391,,,1334.674419,0.000781722,44,56286,,,1279.227273,0.001652276,93,56286,,,605.2258065,4956,,,,,,,,,4987,0.26,,,,,,,,,0.26,0.4,,,,,,,,,0.4,0.797574358,33144,41556,0.7772596,0.817889115,0.57723345,8083,14003,0.522874263,0.631592637,0.051538786,978,18976,,,0.307,3446,,0.210489362,0.403510638,,,,,,,0.738738739,0.147759177,1,0.5,0.345991771,0.654008229,0.315513342,0.267957386,0.363069299,5.730427975,87836,15328,5.033925745,6.426930205,0.309630129,3675,11869,0.247972536,0.371287722,7.318220627,42,57391,,,127.4131674,369,289609,114.4127529,140.4135819,,,,,,,,,,,,,129.8140877,116.478038,143.1501374,,,,7,,,,,0,,,,,0.139188394,3550,25505,0.113058865,0.165317924,0.124439919,0.100562582,0.148317255,0.017447559,0.009193335,0.025701784,0.00568516,0.001745069,0.009625251,0.833500873,15754,18901,0.808761466,0.85824028,,,,,,,,,,,,,0.84611003,0.813359868,0.878860192,0.316,,18901,0.278510662,0.353489338,70.33849256,,,69.61142802,71.0655571,,,,,,,,,,,,,70.03806603,69.30678313,70.76934893,,,,751.8006085,1699,159471,713.6576504,789.9435665,,,,,,,,,,,,,762.4738741,723.5755718,801.3721763,,,,58.62551534,31,52878,39.83319335,83.21423939,,,,,,,,,,,,,59.67536601,40.26271885,85.19029558,,,,6.974506975,29,4158,4.670936782,10.01655542,,,,,,,,,,,,,7.127058245,4.773102762,10.23564449,,,,,,,0.167,,,0.142,0.194,0.211,,,0.183,0.245,0.122,,,0.103,0.142,50.8,25,49196,,,0.187,11050,,,,0.00058964,38.34073471,65024,,,50.48629326,87,172324,40.43745128,62.27465622,,,,,,,,,,,,,51.55658935,41.23861663,63.67196843,,,,0.397,,,0.378,0.414,0.08933916,2985,33412,0.073849798,0.104828521,0.037323142,459,12298,0.025408248,0.049238036,0.002949224,166,56286,,,339.0722892,0.899847561,590.3,656,,,,,,,,3.351756598,,,,,,,,,3.359507205,3.214478495,,,,,,,,,3.227659138,0.070339221,,,,,-3090.57,,,,,0.889633544,41416,46554,0.798577605,0.980689483,41837,,,37477.34043,46196.65957,,,,,,,,,,31563,4886.744681,58239.25532,41618,37924.38298,45311.61702,,,,,,0.655898407,5888,8977,,,84.02909786,,,,,0.298228841,,41837,,,2.542911634,8,3146,,,4.126654303,17,411956,2.403928203,6.607173294,,,,,,,,,,,,,4.258559705,2.480767961,6.818366621,,,,19.00982323,58,289609,14.23966208,24.86531683,20.02700192,,,,,,,,,,,,,19.61694397,14.69443718,25.65944571,,,,19.68170879,57,289609,14.90673403,25.49993661,,,,,,,,,,,,,20.32803021,15.39625157,26.33732098,,,,29.61481323,122,411956,24.35966278,34.86996368,,,,,,,,,,,,,30.06042145,24.68192962,35.43891328,,,,5.090909091,,5500,,,5,23,0.546900938,25368,46385,,,0.573,,,,,20.67830608,,,,,0.741978554,17783,23967,0.715131359,0.768825748,0.139227689,3025,21727,0.112896524,0.165558854,0.796637043,19093,23967,0.768302556,0.824971529,56286,,,,,0.203087802,11431,56286,,,0.203869524,11475,56286,,,0.007941584,447,56286,,,0.00158121,89,56286,,,0.006271542,353,56286,,,0.000461927,26,56286,,,0.01073091,604,56286,,,0.966172761,54382,56286,,,0.00050698,28,55229,0,0.002842716,0.505543119,28455,56286,,,0.847841279,49742,58669,, -21,197,21197,KY,Powell County,2024,1,15994.163,359,35493,13525.69264,18462.63335,0,,,,2,,,,2,,,,2,,,,2,16607.05718,14035.43769,19178.67666,,,,,2,,0.231,,,0.193,0.271,5.006598567,,,3.950851342,6.111965287,5.944822454,,,4.727324387,7.262559629,0.087892377,98,1115,0.071272902,0.104511851,0,,,,,,,,,,,,,0.0893186,0.072355886,0.106281315,,,,,,,0.244,,,0.196,0.295,0.395,,,0.312,0.485,7.6,1.33116E-05,0.154,,,0.322,,,0.264,0.382,0.865412446,11362,13129,,,0.149455239,,,0.116846516,0.187726788,0.25,4,16,0.11917111,0.394165016,335,44,13133,,,54.51055662,142,2605,45.544685,63.47642824,,,,,,,,,,,,,55.68814638,46.46339191,64.91290086,,,,,,,0.062626448,681,10874,0.051903044,0.073349853,7.61441E-05,1,13133,,,13133,0.00030574,4,13083,,,3270.75,0.000993656,13,13083,,,1006.384615,3257,,,,,,,,,3277,0.32,,,,,,,,,0.32,0.31,,,,,,,,,0.32,0.819068985,7302,8915,0.777349459,0.860788511,0.508345979,1675,3295,0.39936065,0.617331307,0.041215575,217,5265,,,0.323,981,,0.219340426,0.426659575,,,,,,,,,,0.958115183,0.38707767,1,0.235357143,0.147950713,0.322763573,7.015179722,97974,13966,5.443866179,8.586493266,0.192332066,607,3156,0.097199705,0.287464427,5.33008452,7,13133,,,140.7414516,88,62526,112.8787597,173.3974047,,,,,,,,,,,,,147.1301266,118.0026638,181.268431,,,,7.8,,,,,0,,,,,0.143617021,675,4700,0.091699504,0.195534539,0.096529284,0.051402806,0.141655762,0.04893617,0.013305198,0.084567143,0.020212766,0,0.042407236,0.878800949,4075,4637,0.832746737,0.924855161,,,,,,,,,,,,,0.861016949,0.799490434,0.922543465,0.458,,4637,0.360283343,0.555716657,69.03253304,,,67.50131514,70.56375095,,,,,,,,,,,,,68.47782265,66.92375394,70.03189136,,,,783.8799769,359,35493,699.4770967,868.2828571,,,,,,,,,,,,,810.3203271,722.836464,897.8041902,,,,76.70476337,10,13037,36.78291552,141.0627908,,,,,,,,,,,,,81.24136811,38.95839383,149.4057685,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.151,,,0.129,0.174,0.201,,,0.173,0.231,0.112,,,0.095,0.13,55.1,6,10885,,,0.154,2010,,,,1.33116E-05,0.167899142,12613,,,66.29541236,25,37710,42.90289538,97.8651066,,,,,,,,,,,,,69.35389908,44.88218672,102.3800363,,,,0.405,,,0.384,0.425,0.073802164,573,7764,0.059504292,0.088100036,0.035044574,114,3253,0.023129681,0.046959468,0.001146526,15,13083,,,872.2,0.925,140.6,152,,,,,,,,2.939167341,,,,,,,,,2.976613909,2.745649952,,,,,,,,,2.770998722,0.028962862,,,,,-1662.971,,,,,0.732167033,41642,56875,0.458075644,1.006258422,42434,,,35922.51064,48945.48936,,,,,,,,,,,,,37530,30276.21277,44783.78723,,,,,,0.714285714,1565,2191,,,,,,,,0.34307395,,42434,,,7.803790413,7,897,,,,,,,,,,,,,,,,,,,,,,,,,,19.34872738,11,62526,9.658814996,34.62021796,17.59268145,,,,,,,,,,,,,20.1879103,10.07773209,36.121748,,,,,,,,,,,,,,,,,,,,,,,,,,,33.2939164,29,87103,22.29745834,47.81561765,,,,,,,,,,,,,33.5297217,22.28025657,48.45978343,,,,23.84615385,,1300,,,10,21,0.598369565,5505,9200,,,0.551,,,,,8.29942322,,,,,0.680978961,3172,4658,0.64971201,0.712245912,0.13676815,584,4270,0.085391383,0.188144916,0.708029197,3298,4658,0.650829554,0.76522884,13083,,,,,0.238171673,3116,13083,,,0.168768631,2208,13083,,,0.011235955,147,13083,,,0.003286708,43,13083,,,0.003363143,44,13083,,,0.000382175,5,13083,,,0.016127799,211,13083,,,0.954979745,12494,13083,,,0.000652156,8,12267,0,0.007743951,0.498968127,6528,13083,,,1,13129,13129,, -21,199,21199,KY,Pulaski County,2024,1,12307.66662,1486,180784,11318.20511,13297.12814,0,,,,2,,,,2,12532.80785,6256.332525,22424.65517,1,,,,2,12593.53652,11560.07854,13626.99449,,,,,2,,0.239,,,0.201,0.278,5.419593228,,,4.420183732,6.475254285,6.191190753,,,5.137530306,7.294752231,0.091501976,463,5060,0.083557632,0.09944632,0,,,,,,,0.212765957,0.095759415,0.3297725,0.086538462,0.048328718,0.124748205,0.090909091,0.082687552,0.09913063,,,,,,,0.242,,,0.194,0.291,0.392,,,0.327,0.456,6.8,0.07894081,0.154,,,0.32,,,0.266,0.376,0.537149799,34933,65034,,,0.130835225,,,0.105148251,0.161545642,0.290322581,18,62,0.224422653,0.357918094,330.2,216,65423,,,35.5984556,461,12950,32.34880427,38.84810693,,,,,,,,,,49.79253112,31.90301422,74.08733941,35.93368678,32.52533893,39.34203463,,,,,,,0.073387158,3854,52516,0.061472265,0.085302052,0.000718402,47,65423,,,1391.978723,0.000699141,46,65795,,,1430.326087,0.004346835,286,65795,,,230.0524476,2878,,,,,,,9541,,2841,0.4,,,,,,,0.32,,0.4,0.3,,,,,,0.41,0.32,0.36,0.3,0.837765553,38528,45989,0.819260876,0.856270229,0.575601046,9026,15681,0.518261511,0.632940581,0.045322098,1151,25396,,,0.233,3257,,0.154361702,0.311638298,,,,,,,,,,0.749240122,0.666060496,0.832419748,0.252076677,0.206553895,0.29759946,5.51321514,101377,18388,4.811318441,6.21511184,0.288912134,4143,14340,0.238562489,0.339261779,8.865383734,58,65423,,,105.2294741,342,325004,94.07676387,116.3821843,,,,,,,,,,,,,109.3429276,97.61628912,121.069566,,,,7,,,,,0,,,,,0.145482988,3720,25570,0.120122801,0.170843175,0.131121327,0.106244191,0.155998463,0.009385999,0.004618207,0.014153791,0.009385999,0.003096892,0.015675106,0.858091286,22748,26510,0.833319112,0.882863461,,,,,,,,,,,,,0.866362451,0.83990949,0.892815412,0.205,,26510,0.177960803,0.232039197,72.62694815,,,71.9287586,73.32513771,,,,,,,,,,92.94287822,69.02294078,116.8628157,72.35811383,71.64227273,73.07395492,,,,593.5883867,1486,180784,561.5829921,625.5937813,,,,,,,630.3474362,379.5103337,984.3656042,,,,607.2518374,573.9454684,640.5582064,,,,69.90229566,44,62945,50.79111503,93.8405692,,,,,,,,,,,,,70.15451532,50.11941428,95.5305382,,,,7.371483996,38,5155,5.216500804,10.11793772,,,,,,,,,,,,,6.857855362,4.720632081,9.630978651,,,,,,,0.161,,,0.137,0.186,0.204,,,0.177,0.233,0.12,,,0.101,0.138,74.1,41,55328,,,0.154,9960,,,,0.07894081,4978.244321,63063,,,39.80972991,78,195932,31.46793949,49.68434459,,,,,,,,,,,,,41.31063423,32.54808116,51.70641889,,,,0.408,,,0.39,0.427,0.087171569,3331,38212,0.072873697,0.101469442,0.037801145,568,15026,0.025886251,0.049716038,0.001443879,95,65795,,,692.5789474,0.945,727.65,770,,,0.091773189,280,3051,0.041544701,0.142001678,3.506220798,,,,,,,,3.230168335,3.535681237,3.418868673,,,,,,,,3.151026363,3.432649303,0.032522546,,,,,-1661.040967,,,,,0.821240621,38857,47315,0.748605562,0.893875681,46380,,,41927.40426,50832.59575,,,,,,,,,,25485,23128.23404,27841.76596,49635,46599.08511,52670.91489,,,,,,0.676071569,6877,10172,,,61.85947809,,,,,0.376606296,,46380,,,6.376195537,24,3764,,,4.196650631,19,452742,2.526657824,6.553589809,,,,,,,,,,,,,4.223309855,2.503001079,6.674650349,,,,19.35909673,65,325004,14.73704139,24.97182431,19.99975385,,,,,,,,,,,,,20.36592203,15.46469845,26.32767692,,,,16.3074916,53,325004,12.21543025,21.33060053,,,,,,,,,,,,,16.69607577,12.43132506,21.95225622,,,,19.65799506,89,452742,15.78698423,24.19085448,,,,,,,,,,,,,20.4126643,16.34970731,25.178946,,,,15.58823529,,6800,,,40,66,0.634866633,31537,49675,,,0.617,,,,,24.03254421,,,,,0.722492319,18576,25711,0.696184153,0.748800484,0.12827773,3126,24369,0.105012694,0.151542765,0.810081288,20828,25711,0.786173745,0.833988831,65795,,,,,0.217478532,14309,65795,,,0.198160955,13038,65795,,,0.011596626,763,65795,,,0.00369329,243,65795,,,0.008313702,547,65795,,,0.000486359,32,65795,,,0.029014363,1909,65795,,,0.935405426,61545,65795,,,0.007521735,462,61422,0.004124587,0.010918883,0.50654305,33328,65795,,,0.525909524,34202,65034,, -21,201,21201,KY,Robertson County,2024,1,16521.90133,62,5785,10585.89393,24583.27953,1,,,,2,,,,2,,,,2,,,,2,17096.9476,10954.33693,25438.90281,1,,,,2,,0.231,,,0.196,0.272,4.972204907,,,4.035923316,6.083214739,5.972460618,,,4.825153259,7.23922651,0.094594595,14,148,0.047444788,0.141744401,1,,,,,,,,,,,,,0.096551724,0.048478447,0.144625002,,,,,,,0.25,,,0.204,0.301,0.415,,,0.334,0.499,4.9,0.293475997,0.136,,,0.311,,,0.257,0.372,0.017327861,38,2193,,,0.137880198,,,0.108247655,0.171354738,,,,,,354.5,8,2257,,,28.40909091,10,352,13.62326334,52.24532967,,,,,,,,,,,,,30.39513678,14.57564953,55.89773873,,,,,,,0.073732719,128,1736,0.061817825,0.085647613,,0,2257,,,,0,0,2229,,,-2229,,0,2229,,,,4141,,,,,,,,,4197,0.24,,,,,,,,,0.24,0.41,,,,,,,,,0.41,0.841967213,1284,1525,0.778050863,0.905883563,0.448630137,262,584,0.290804198,0.606456076,0.05,41,820,,,0.269,125,,0.170106383,0.367893617,,,,,,,,,,,,,0.186788155,0.055597355,0.317978955,5.350982297,99143,18528,0.988078042,9.713886552,0.146428571,82,560,0.024299178,0.268557965,0,0,2257,,,148.5608171,16,10770,84.91534312,241.2534596,,,,,,,,,,,,,154.589372,88.36118313,251.0434551,,,,8,,,,,0,,,,,0.220930233,190,860,0.114260531,0.327599934,0.120731707,0.042886472,0.198576942,0.087209302,0,0.178308772,0.017441861,0,0.046185417,0.884803922,722,816,0.687135054,1,,,,,,,,,,,,,,,,0.583,,816,0.39935983,0.76664017,71.29320054,,,66.9295258,75.65687529,,,,,,,,,,,,,70.78885723,66.29889399,75.27882047,,,,747.4103714,62,5785,559.8616565,977.6311679,,,,,,,,,,,,,764.9698379,571.316064,1003.156168,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.152,,,0.13,0.176,0.202,,,0.174,0.231,0.112,,,0.095,0.13,,,,,,0.136,300,,,,0.293475997,669.7122259,2282,,,,,,,,,,,,,,,,,,,,,,,,,,0.396,,,0.374,0.414,0.080952381,102,1260,0.065463019,0.096441743,0.057654076,29,503,0.038590246,0.076717905,0.000448632,1,2229,,,2229,,,,,,,,,,,3.514269346,,,,,,,,,3.535928722,3.009707363,,,,,,,,,2.977906005,,,,,,-1991.13,,,,,0.763401245,41442,54286,0.423442455,1.103360035,53456,,,45361.02128,61550.97872,,,,,,,,,,,,,54423,43336.19149,65509.80851,,,,,,0.656036447,288,439,,,,,,,,0.23924349,,53456,,,10.41666667,1,96,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,200,,,0,-888,0.709597523,1146,1615,,,0.494,,,,,0.508243539,,,,,0.74153074,591,797,0.623880314,0.859181167,0.132049519,96,727,0.039383561,0.224715477,0.680050188,542,797,0.58723272,0.772867656,2229,,,,,0.211305518,471,2229,,,0.228802153,510,2229,,,0.01076716,24,2229,,,0.005832212,13,2229,,,0.000897263,2,2229,,,0,0,2229,,,0.021085689,47,2229,,,0.947510094,2112,2229,,,0,0,2112,0,0.027079304,0.494392104,1102,2229,,,1,2193,2193,, -21,203,21203,KY,Rockcastle County,2024,1,14749.50528,436,45812,12529.97734,16969.03321,0,,,,2,,,,2,,,,2,,,,2,15105.88729,12823.77558,17387.99901,,,,,2,,0.254,,,0.215,0.298,5.396852291,,,4.388621547,6.538250987,6.28349444,,,5.094837088,7.547117676,0.092320966,107,1159,0.075654993,0.108986939,0,,,,,,,,,,,,,0.093695272,0.076794016,0.110596527,,,,,,,0.267,,,0.213,0.32,0.436,,,0.354,0.519,7.5,0.002395171,0.157,,,0.343,,,0.286,0.405,0.570680302,9152,16037,,,0.132276569,,,0.102800522,0.165179878,0.178571429,5,28,0.087257021,0.288336239,173.8,28,16115,,,27.22270489,94,3453,21.99871659,33.31369642,,,,,,,,,,,,,28.44906699,22.96206874,34.85202907,,,,,,,0.07352264,958,13030,0.061607746,0.085437534,0.000496432,8,16115,,,2014.375,0.000123138,2,16242,,,8121,0.000430981,7,16242,,,2320.285714,4107,,,,,,,,,4122,0.33,,,,,,,,,0.33,0.19,,,,,,,,,0.19,0.819178559,9414,11492,0.793680191,0.844676927,0.44584789,1659,3721,0.361415624,0.530280156,0.046056685,299,6492,,,0.299,1003,,0.202489362,0.395510638,,,,,,,,,,0.520661157,0.258779519,0.782542795,0.336488251,0.259927724,0.413048778,5.323629101,87957,16522,4.365118014,6.282140187,0.253106039,876,3461,0.158096507,0.348115571,6.205398697,10,16115,,,110.8326908,92,83008,89.34679159,135.9264565,,,,,,,,,,,,,111.8596038,89.94833097,137.4944441,,,,8,,,,,0,,,,,0.120272315,795,6610,0.087733539,0.15281109,0.091190108,0.061952386,0.120427831,0.018759455,0.002784422,0.034734489,0.015128593,0.004043061,0.026214125,0.802553192,4715,5875,0.761212511,0.843893872,,,,,,,,,,,,,0.797981878,0.735929741,0.860034015,0.401,,5875,0.313257507,0.488742493,70.81361054,,,69.32096665,72.30625443,,,,,,,,,,,,,70.48120582,68.96485662,71.99755503,,,,689.4917935,436,45812,620.6986383,758.2849487,,,,,,,,,,,,,703.8529835,633.339677,774.3662899,,,,71.15596093,11,15459,35.52079932,127.3176694,,,,,,,,,,,,,74.83502279,37.35737375,133.9005273,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.166,,,0.143,0.193,0.214,,,0.185,0.245,0.118,,,0.1,0.137,58.1,8,13772,,,0.157,2530,,,,0.002395171,40.85203412,17056,,,54.47941889,27,49560,35.90228033,79.2646942,,,,,,,,,,,,,56.27579307,37.08610224,81.87832433,,,,0.401,,,0.38,0.418,0.085873721,831,9677,0.07038436,0.101363083,0.038635082,137,3546,0.026720188,0.050549975,0.001416082,23,16242,,,706.173913,0.975,181.35,186,,,,,,,,3.313884829,,,,,,,,,3.320338369,3.200114767,,,,,,,,,3.183894339,0.014629128,,,,,-1992.017,,,,,0.67787824,33738,49770,0.537685382,0.818071098,45161,,,38860.40426,51461.59575,,,,,,,,,,,,,45963,41556.87234,50369.12766,,,,,,0.639753802,1767,2762,,,,,,,,0.283186821,,45161,,,4.519774011,4,885,,,,,,,,,,,,,,,,,,,,,,,,,,20.15834254,17,83008,11.52223451,32.73588536,20.47995374,,,,,,,,,,,,,20.69876368,11.83113189,33.61349544,,,,24.09406322,20,83008,14.71727976,37.2113265,,,,,,,,,,,,,23.61480524,14.21765538,36.8774436,,,,14.55479452,17,116800,8.478704169,23.30363597,,,,,,,,,,,,,14.11469958,8.067770366,22.92138783,,,,,,1700,,,-888,7,0.594348988,7783,13095,,,0.606,,,,,16.64296272,,,,,0.760344828,4851,6380,0.719391477,0.801298179,0.101399205,587,5789,0.068780603,0.134017808,0.75862069,4840,6380,0.716559016,0.800682363,16242,,,,,0.210503633,3419,16242,,,0.196465953,3191,16242,,,0.004740796,77,16242,,,0.004248245,69,16242,,,0.001539219,25,16242,,,0.000184706,3,16242,,,0.011759636,191,16242,,,0.965152075,15676,16242,,,0.000261677,4,15286,0,0.006050218,0.50252432,8162,16242,,,1,16037,16037,, -21,205,21205,KY,Rowan County,2024,1,11484.50912,412,69515,9906.641103,13062.37713,0,,,,2,,,,2,,,,2,,,,2,11847.48663,10196.95761,13498.01565,,,,,2,,0.229,,,0.19,0.269,4.911051933,,,3.904847648,5.981396271,6.047265543,,,4.900940865,7.313125438,0.07869379,147,1868,0.06648311,0.090904471,0,,,,,,,,,,,,,0.075555556,0.063346181,0.08776493,,,,,,,0.241,,,0.19,0.292,0.411,,,0.338,0.489,7.4,0.013468328,0.158,,,0.307,,,0.25,0.368,0.974332982,24029,24662,,,0.1520014,,,0.121416926,0.187020818,0.238095238,5,21,0.124889996,0.363491167,345.9,86,24861,,,15.1421508,147,9708,12.69429985,17.59000176,,,,,,,,,,,,,16.23846068,13.60440773,18.87251364,,,,,,,0.067756251,1252,18478,0.055841357,0.079671144,0.000643578,16,24861,,,1553.8125,0.000615057,15,24388,,,1625.866667,0.005658521,138,24388,,,176.7246377,4716,,,,,,,,,4727,0.36,,,,,,,,,0.36,0.44,,,,,,,,,0.44,0.867896731,12371,14254,0.839489656,0.896303806,0.519382627,2894,5572,0.435774343,0.602990912,0.045779126,468,10223,,,0.257,1209,,0.174787234,0.339212766,,,,,,,,,,0.394736842,0,0.908649404,0.341428908,0.24951642,0.433341397,5.8014935,107989,18614,4.458493342,7.144493657,0.280147218,1294,4619,0.177976376,0.38231806,5.22907365,13,24861,,,108.0396091,133,123103,89.67789356,126.4013247,,,,,,,,,,,,,114.5692455,95.09779503,134.0406959,,,,7.8,,,,,0,,,,,0.116638079,1020,8745,0.082390455,0.150885703,0.101156069,0.06830295,0.134009189,0.014865638,0.002958091,0.026773184,0.007432819,0.000615283,0.014250355,0.760380048,8003,10525,0.728840188,0.791919907,,,,,,,,,,,,,0.796979306,0.762000785,0.831957826,0.234,,10525,0.185381978,0.282618022,73.53745462,,,72.35726622,74.71764301,,,,,,,,,,,,,73.2024793,71.99447592,74.41048268,,,,566.3228831,412,69515,509.1958893,623.4498768,,,,,,,,,,,,,579.2995002,520.2763798,638.3226206,,,,37.75437007,10,26487,18.10468795,69.43163077,,,,,,,,,,,,,41.1675106,19.7414215,75.70851773,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.152,,,0.129,0.176,0.205,,,0.175,0.236,0.114,,,0.097,0.134,98.1,21,21410,,,0.158,3890,,,,0.013468328,314.2564845,23333,,,62.15964218,46,74003,45.50867047,82.91225182,,,,,,,,,,,,,66.00281229,48.32235402,88.03850218,,,,0.393,,,0.372,0.412,0.078066915,1071,13719,0.062577553,0.093556276,0.0392,196,5000,0.026093617,0.052306383,0.002952272,72,24388,,,338.7222222,0.97,226.01,233,,,,,,,,3.050035839,,,,,,,,,3.050852206,2.977310445,,,,,,,,,2.974818519,0.020097219,,,,,388.8281,,,,,0.828044641,40734,49193,0.642061355,1.014027926,50498,,,44915.87234,56080.12766,,,,,,,,,,,,,50185,45646.61702,54723.38298,,,,,,0.641979103,2089,3254,,,68.95310235,,,,,0.253257555,,50498,,,8.371385084,11,1314,,,,,,,,,,,,,,,,,,,,,,,,,,13.82630446,16,123103,7.902927639,22.45305223,12.99724621,,,,,,,,,,,,,14.35038342,8.202484043,23.30412361,,,,15.43422987,19,123103,9.292414616,24.10246182,,,,,,,,,,,,,16.36703507,9.854024279,25.55915268,,,,18.66476908,32,171446,12.76668824,26.34908489,,,,,,,,,,,,,19.78141536,13.53047346,27.92545626,,,,10.47619048,,2100,,,6,16,0.516722322,10058,19465,,,0.622,,,,,27.74368766,,,,,0.614499553,5501,8952,0.573518489,0.655480618,0.118911856,1001,8418,0.081863333,0.155960379,0.898570152,8044,8952,0.86517046,0.931969844,24388,,,,,0.197638183,4820,24388,,,0.149663769,3650,24388,,,0.017016566,415,24388,,,0.002419223,59,24388,,,0.007995736,195,24388,,,0.000205019,5,24388,,,0.021814007,532,24388,,,0.937510251,22864,24388,,,0.002497847,58,23220,0,0.00781833,0.510250943,12444,24388,,,0.619860514,15287,24662,, -21,207,21207,KY,Russell County,2024,1,12494.35031,441,49580,10612.08349,14376.61713,0,,,,2,,,,2,,,,2,,,,2,12464.4184,10548.82347,14380.01334,,,,,2,,0.235,,,0.198,0.275,5.001148336,,,4.017262244,6.064717272,5.737073013,,,4.621011165,6.944372427,0.077244259,111,1437,0.063440284,0.091048234,0,,,,,,,,,,,,,0.07828089,0.063695736,0.092866045,,,,,,,0.253,,,0.203,0.304,0.406,,,0.332,0.484,7.2,0.023884936,0.162,,,0.318,,,0.265,0.378,0.630593074,11345,17991,,,0.135329991,,,0.106872729,0.16822669,0.4375,7,16,0.30773596,0.555081272,325,59,18156,,,36.67054715,126,3436,30.26747805,43.07361625,,,,,,,,,,,,,36.76233473,30.01384283,43.51082663,,,,,,,0.075406194,1086,14402,0.0634913,0.087321087,0.000385548,7,18156,,,2593.714286,0.000275058,5,18178,,,3635.6,0.001650347,30,18178,,,605.9333333,2794,,,,,,,,,2722,0.42,,,,,,,,,0.42,0.28,,,,,,,,,0.28,0.826758976,10270,12422,0.799528885,0.853989067,0.589119171,2274,3860,0.481611757,0.696626585,0.049018043,307,6263,,,0.265,1060,,0.162531915,0.367468085,,,,,,,0.13559322,0,0.578967084,0.365384615,0.152067418,0.578701813,0.259105715,0.193499912,0.324711518,5.247525326,90651,17275,4.35011959,6.144931062,0.319990296,1319,4122,0.225235125,0.414745467,9.36329588,17,18156,,,99.24949539,89,89673,79.70549457,122.1350444,,,,,,,,,,,,,100.2171371,79.93711344,124.075635,,,,7.8,,,,,0,,,,,0.106741573,760,7120,0.076472442,0.137010704,0.080622348,0.052579309,0.108665387,0.021067416,0.008981082,0.03315375,0.007724719,0,0.016044607,0.859019984,6276,7306,0.820241061,0.897798906,,,,,,,,,,,,,0.851778656,0.803573132,0.89998418,0.27,,7306,0.209187335,0.330812665,72.45308386,,,71.15045286,73.75571486,,,,,,,,,,,,,72.36723253,71.06159589,73.67286917,,,,622.5472864,441,49580,559.8190323,685.2755406,,,,,,,,,,,,,633.8114056,568.7502209,698.8725903,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.155,,,0.132,0.179,0.204,,,0.175,0.234,0.114,,,0.097,0.133,32.9,5,15188,,,0.162,2910,,,,0.023884936,419.5388934,17565,,,22.1905801,12,54077,11.46619655,38.76247767,,,,,,,,,,,,,23.76802409,12.28128488,41.51795486,,,,0.408,,,0.389,0.427,0.087525443,903,10317,0.072036082,0.103014805,0.045837231,196,4276,0.030347869,0.061326593,0.001265266,23,18178,,,790.3478261,0.92,190.44,207,,,,,,,,3.180705286,,,,,,,,3.200761087,3.201389535,3.07291715,,,,,,,,2.905509166,3.10271111,0.016700462,,,,,-1086.071,,,,,0.82647493,36955,44714,0.733029008,0.919920851,44425,,,38038.61702,50811.38298,,,,,,,14813,12254.87234,17371.12766,,,,48924,42962.97872,54885.02128,,,,,,0.682636765,2009,2943,,,56.96329517,,,,,0.327698368,,44425,,,5.550416281,6,1081,,,,,,,,,,,,,,,,,,,,,,,,,,19.48259444,18,89673,11.13598608,31.63851278,20.07293165,,,,,,,,,,,,,20.72299446,11.84498187,33.65284471,,,,25.648746,23,89673,16.25910479,38.48571242,,,,,,,,,,,,,26.24734544,16.44907165,39.73879643,,,,22.38979026,28,125057,14.87785302,32.35948083,,,,,,,,,,,,,19.64787589,12.4550679,29.48146086,,,,7.777777778,,1800,,,9,5,0.658489871,8939,13575,,,0.493,,,,,8.134324424,,,,,0.743970315,5213,7007,0.700277025,0.787663606,0.092209146,619,6713,0.061673573,0.12274472,0.774511203,5427,7007,0.749541188,0.799481218,18178,,,,,0.225767411,4104,18178,,,0.210639234,3829,18178,,,0.00709649,129,18178,,,0.00495104,90,18178,,,0.006216305,113,18178,,,0.000495104,9,18178,,,0.039278248,714,18178,,,0.933821102,16975,18178,,,0.003888529,66,16973,0,0.011416199,0.504896028,9178,18178,,,1,17991,17991,, -21,209,21209,KY,Scott County,2024,1,8130.575228,815,166004,7354.30635,8906.844106,0,,,,2,,,,2,8149.265807,5044.523976,12457.01845,1,,,,2,8486.091977,7632.540093,9339.643861,,,,,2,,0.166,,,0.139,0.195,3.852064142,,,3.064558895,4.721536468,5.022849163,,,4.053765957,6.039602841,0.07410457,360,4858,0.066738586,0.081470554,0,,,,,,,0.138095238,0.091433016,0.18475746,0.069333333,0.04362295,0.095043717,0.070901034,0.063008011,0.078794057,,,,0.088495575,0.036128657,0.140862494,0.174,,,0.137,0.216,0.399,,,0.326,0.478,8.2,0.07270386,0.089,,,0.252,,,0.205,0.304,0.704977692,40293,57155,,,0.16867245,,,0.136678779,0.205488203,0.189189189,7,37,0.108031103,0.282799629,295.3,172,58252,,,17.82149986,250,14028,15.61232385,20.03067587,,,,,,,15.42416452,7.969890885,26.94291137,47.00854701,34.15648222,63.10678021,15.14764701,12.92233329,17.37296073,,,,28.87139108,14.4124944,51.65889374,0.052040142,2598,49923,0.043699716,0.060380567,0.000583671,34,58252,,,1713.294118,0.000423019,25,59099,,,2363.96,0.001133691,67,59099,,,882.0746269,2210,,,,,,,,,2215,0.43,,,,,,,0.34,,0.43,0.45,,,,,,,0.28,,0.46,0.942770925,35616,37778,0.93453026,0.95101159,0.704161697,11218,15931,0.655174772,0.753148623,0.03022728,919,30403,,,0.097,1365,,0.061255319,0.132744681,,,,,,,0.399274047,0.218317888,0.580230206,0.320267686,0.18895376,0.451581613,0.080722782,0.056916065,0.1045295,3.521849303,141765,40253,3.271913501,3.771785106,0.204368175,2882,14102,0.160171786,0.248564564,7.381720799,43,58252,,,84.67132769,241,284630,73.98117472,95.36148066,,,,,,,,,,,,,92.6349173,80.63680152,104.6330331,,,,8.7,,,,,0,,,,,0.087089922,1845,21185,0.072508952,0.101670892,0.061787072,0.049428399,0.074145746,0.022138305,0.012867973,0.031408638,0.005900401,0.001792557,0.010008245,0.807536031,23253,28795,0.789501227,0.825570835,,,,,,,0.715563506,0.61269846,0.818428552,0.77014531,0.686555219,0.853735402,0.824656815,0.802544801,0.846768829,0.281,,28795,0.24983851,0.31216149,76.14491552,,,75.44617519,76.84365584,,,,,,,80.72004457,76.04530426,85.39478488,93.86108602,63.22922004,124.492952,75.58784714,74.85971573,76.31597855,,,,431.0757228,815,166004,401.1536814,460.9977642,,,,,,,364.8385627,252.6613106,509.8253227,,,,449.8258089,417.5171131,482.1345047,,,,30.00916069,19,63314,18.06747507,46.86302172,,,,,,,,,,,,,32.8998297,19.16536319,52.6758144,,,,4.910988336,24,4887,3.146562892,7.307161366,,,,,,,,,,,,,4.855547463,2.965894534,7.498999248,,,,,,,0.116,,,0.099,0.134,0.169,,,0.146,0.196,0.093,,,0.078,0.108,95.4,46,48238,,,0.089,4990,,,,0.07270386,3429.659182,47173,,,37.41524009,65,173726,28.8762924,47.68879489,,,,,,,,,,,,,39.84672294,30.40724742,51.29063098,,,,0.356,,,0.336,0.374,0.059400667,2119,35673,0.048677263,0.070124071,0.034813523,519,14908,0.024090119,0.045536927,0.000964483,57,59099,,,1036.824561,0.88,583.44,663,,,,,,,,2.987977135,,,,,,,2.387265033,2.440474516,3.12761425,2.931383073,,,,,,,2.392408313,2.340439479,3.061614422,0.028820896,,,,,496.0449,,,,,0.699659745,45855,65539,0.633269784,0.766049705,86169,,,78513.68085,93824.31915,,,,120164,74883.82979,165444.1702,52969,42566.10638,63371.89362,51278,29875.2766,72680.7234,84743,79480.19149,90005.80851,,,,,,0.449620464,4324,9617,,,38.81773127,,,,,0.168947069,,86169,,,5.313199105,19,3576,,,3.836101294,15,391022,2.147036774,6.327065708,,,,,,,,,,,,,4.11856768,2.251659276,6.91025674,,,,15.64378933,44,284630,11.32148791,21.07208157,15.45866564,,,,,,,,,,,,,17.45740363,12.581761,23.59733823,,,,15.80999895,45,284630,11.53192172,21.15502248,,,,,,,,,,,,,17.79884874,12.93267074,23.89412366,,,,13.80996466,54,391022,10.37447048,18.01900824,,,,,,,,,,,,,14.70917029,10.9174297,19.39220728,,,,20.59701493,,6700,,,70,68,0.706873398,28950,40955,,,0.755,,,,,69.27451507,,,,,0.734296163,15863,21603,0.713122885,0.75546944,0.069368556,1460,21047,0.054214967,0.084522145,0.904596584,19542,21603,0.890599402,0.918593765,59099,,,,,0.24108699,14248,59099,,,0.132371106,7823,59099,,,0.055601618,3286,59099,,,0.004247111,251,59099,,,0.013671974,808,59099,,,0.000524544,31,59099,,,0.048816393,2885,59099,,,0.858677812,50747,59099,,,0.009063332,487,53733,0.00380537,0.014321294,0.503866394,29778,59099,,,0.323033855,18463,57155,, -21,211,21211,KY,Shelby County,2024,1,8140.66352,691,138153,7222.748741,9058.578298,0,,,,2,,,,2,9862.028309,6023.9831,15231.10287,1,4761.65775,2866.829018,7435.918414,1,8636.587892,7552.729456,9720.446328,,,,,2,,0.186,,,0.156,0.221,4.207284604,,,3.37005713,5.102409448,4.970691725,,,3.959637932,6.04717007,0.088527092,348,3931,0.07964706,0.097407124,0,,,,,,,0.182320442,0.126069987,0.238570897,0.094534712,0.072495641,0.116573783,0.081043956,0.071131801,0.090956111,,,,,,,0.18,,,0.141,0.226,0.363,,,0.293,0.439,9.1,0.003431525,0.084,,,0.271,,,0.223,0.326,0.701362738,33711,48065,,,0.158567074,,,0.125844434,0.194251981,0.242424242,8,33,0.152046161,0.340132436,299.2,145,48461,,,18.92299002,201,10622,16.3069294,21.53905064,,,,,,,13.61256545,7.248117792,23.27790149,37.67123288,29.13492878,47.92704477,15.15979241,12.33954092,17.98004389,,,,,,,0.081256635,3215,39566,0.069341741,0.093171528,0.000350798,17,48461,,,2850.647059,0.000429571,21,48886,,,2327.904762,0.001820562,89,48886,,,549.2808989,2104,,,,,,,1185,,1999,0.46,,,,,,,0.37,0.4,0.47,0.5,,,,,,,0.45,0.25,0.51,0.885514855,29686,33524,0.86540339,0.90562632,0.625204048,7660,12252,0.563590786,0.68681731,0.034097476,885,25955,,,0.123,1272,,0.077723404,0.168276596,,,,0.318181818,0,0.78090795,0.032110092,0,0.144256101,0.116429496,0.030813074,0.202045918,0.109659541,0.071113505,0.148205576,3.751971672,139866,37278,3.2247931,4.279150244,0.204770435,2172,10607,0.153346305,0.256194564,9.492168961,46,48461,,,81.46974716,198,243035,70.12173363,92.81776068,,,,,,,66.38903977,33.14116946,118.7883307,55.02878429,29.30051004,94.10089705,88.99451629,75.73290584,102.2561267,,,,9.1,,,,,0,,,,,0.114285714,1920,16800,0.085397521,0.143173908,0.086370505,0.057146232,0.115594777,0.027976191,0.016801201,0.039151181,0.005059524,0.001029551,0.009089497,0.758616363,18137,23908,0.734935696,0.782297029,,,,,,,0.909387755,0.846426667,0.972348844,0.720609936,0.6088618,0.832358072,0.720816066,0.689382136,0.752249997,0.431,,23908,0.387076201,0.474923799,77.21679157,,,76.4129509,78.02063224,,,,,,,75.49652291,71.72469391,79.26835191,83.5724952,78.12020422,89.02478619,76.8053068,75.90559609,77.70501751,,,,389.1212872,691,138153,359.0689343,419.1736402,,,,,,,462.2723325,340.8431257,612.9060467,253.5353885,141.9018323,418.1680669,403.7723842,370.0090111,437.5357574,,,,64.01916445,31,48423,43.49791624,90.87009376,,,,,,,,,,,,,61.0092676,37.76569822,93.25914626,,,,5.296343001,21,3965,3.278519794,8.096022884,,,,,,,,,,,,,,,,,,,,,,0.124,,,0.106,0.145,0.174,,,0.149,0.199,0.099,,,0.083,0.116,141.6,58,40974,,,0.084,3990,,,,0.003431525,144.3779974,42074,,,30.59226628,45,147096,22.31420894,40.93485921,,,,,,,,,,,,,35.66212682,25.70212422,48.20483543,,,,0.389,,,0.371,0.406,0.092022635,2667,28982,0.076533273,0.107511996,0.053723071,601,11187,0.03823371,0.069212433,0.001043244,51,48886,,,958.5490196,0.88,516.56,587,,,0.091431095,207,2264,0.034442045,0.148420146,2.855843032,,,,,,,2.252810084,2.398333239,3.049690978,2.699857059,,,,,,,2.254847009,2.163353509,2.91954869,0.026218701,,,,,-34.62891,,,,,0.804161778,46606,57956,0.745030742,0.863292814,81815,,,75270.14894,88359.85106,,,,,,,50734,44143.87234,57324.12766,56784,34256.51064,79311.48936,86201,80075.55319,92326.44681,,,,,,0.41221595,2848,6909,,,53.08638899,,,,,0.177938031,,81815,,,7.599309154,22,2895,,,4.178169067,14,335075,2.284243909,7.01025774,,,,,,,,,,,,,4.09530901,2.044363502,7.327639059,,,,18.14903796,45,243035,13.13454876,24.44663502,18.51585163,,,,,,,,,,,,,20.48316032,14.49510334,28.11473788,,,,17.69292489,43,243035,12.80445747,23.83225371,,,,,,,,,,,,,18.00467093,12.54091299,25.04013877,,,,11.93762591,40,335075,8.528414964,16.25565828,,,,,,,,,,,,,12.65822785,8.766190761,17.68860465,,,,16.8,,5000,,,39,45,0.667858156,23542,35250,,,0.747,,,,,44.80979926,,,,,0.728766345,12819,17590,0.696801977,0.760730712,0.085947999,1471,17115,0.061557164,0.110338834,0.908072769,15973,17590,0.892242697,0.923902841,48886,,,,,0.215276357,10524,48886,,,0.17195107,8406,48886,,,0.062349139,3048,48886,,,0.005666244,277,48886,,,0.010248333,501,48886,,,0.002229677,109,48886,,,0.095528372,4670,48886,,,0.805874893,39396,48886,,,0.022838211,1034,45275,0.015910178,0.029766244,0.512089351,25034,48886,,,0.517632373,24880,48065,, -21,213,21213,KY,Simpson County,2024,1,11473.98753,397,53096,9733.522734,13214.45232,0,,,,2,,,,2,14300.95172,9065.576639,21458.44928,1,,,,2,11466.03989,9573.616617,13358.46315,,,,,2,,0.201,,,0.171,0.236,4.55532982,,,3.60276533,5.633098889,5.818364924,,,4.623827819,7.168470532,0.09502551,149,1568,0.080510367,0.109540653,0,,,,,,,0.157303371,0.081660899,0.232945842,,,,0.091230552,0.07622236,0.106238744,,,,,,,0.21,,,0.17,0.257,0.39,,,0.31,0.478,8,0.067847227,0.102,,,0.293,,,0.239,0.355,0.530570583,10396,19594,,,0.151396784,,,0.118731122,0.190837641,0.214285714,3,14,0.080830645,0.373240293,187.6,37,19718,,,28.25552826,115,4070,23.09123873,33.41981778,,,,,,,,,,,,,29.59830867,24.02933769,36.07085784,,,,,,,0.058885449,951,16150,0.049353534,0.068417364,0.000253575,5,19718,,,3943.6,0.000501278,10,19949,,,1994.9,0.001002557,20,19949,,,997.45,3139,,,,,,,,,3222,0.35,,,,,,,0.4,,0.35,0.46,,,,,,,0.47,,0.46,0.902236325,11942,13236,0.876754647,0.927718004,0.568706118,2835,4985,0.478047353,0.659364884,0.034208433,301,8799,,,0.191,860,,0.124276596,0.257723404,,,,,,,0.225181598,0.137457811,0.312905385,,,,0.101760176,0.043179881,0.160340471,4.515522147,106327,23547,3.221223761,5.809820533,0.194091904,887,4570,0.112375757,0.275808051,10.14301653,20,19718,,,86.57360894,81,93562,68.75194202,107.6030912,,,,,,,,,,,,,92.94730892,72.98362902,116.6868348,,,,8,,,,,0,,,,,0.096796657,695,7180,0.069158891,0.124434424,0.077641984,0.052583651,0.102700318,0.01810585,0.003455553,0.032756146,0.009610028,0,0.021264493,0.78992079,6881,8711,0.757961065,0.821880515,,,,,,,,,,,,,0.827522484,0.768158742,0.886886226,0.28,,8711,0.2254121,0.3345879,72.85720765,,,71.58994197,74.12447334,,,,,,,70.62996084,66.83620733,74.42371435,,,,72.78589754,71.41938413,74.15241095,,,,568.8714487,397,53096,510.3774177,627.3654797,,,,,,,740.1139405,539.8441868,990.3306828,,,,567.4476791,504.4724377,630.4229205,,,,76.44870292,15,19621,42.78775869,126.0905095,,,,,,,,,,,,,74.98594014,38.74632949,130.9853468,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.134,,,0.114,0.155,0.187,,,0.161,0.216,0.104,,,0.088,0.122,109.6,18,16424,,,0.102,1960,,,,0.067847227,1175.588897,17327,,,24.59376372,14,56925,13.44563948,41.26415656,,,,,,,,,,,,,26.84064913,14.29151524,45.89832745,,,,0.39,,,0.375,0.405,0.067878788,784,11550,0.054772405,0.080985171,0.03747412,181,4830,0.024367737,0.050580503,0.001253196,25,19949,,,797.96,0.96,210.24,219,,,0.327311371,308,941,0.171524614,0.483098128,3.022037391,,,,,,,2.094724892,,3.124221783,3.099441829,,,,,,,2.616259773,,3.148444911,0.005504525,,,,,734.4404,,,,,0.706958454,37215,52641,0.622682916,0.791233993,58550,,,50845.82979,66254.17021,,,,,,,54107,16641.80851,91572.19149,,,,57712,48959.31915,66464.68085,,,,,,0.604804212,1838,3039,,,30.6606197,,,,,0.218428693,,58550,,,8.241758242,9,1092,,,,,,,,,,,,,,,,,,,,,,,,,,18.87610882,18,93562,10.99602899,30.22247877,19.23857977,,,,,,,,,,,,,21.91282894,12.76503037,35.08456186,,,,18.16976978,17,93562,10.58456047,29.09156155,,,,,,,,,,,,,18.84067073,10.54498038,31.07482117,,,,15.42602834,20,129651,9.422618866,23.82424964,,,,,,,,,,,,,16.32268127,9.6738554,25.79687354,,,,19,,2000,,,22,16,0.636211293,8732,13725,,,0.708,,,,,44.90116868,,,,,0.656839309,4946,7530,0.610396888,0.703281731,0.137997521,1002,7261,0.096176706,0.179818336,0.84435591,6358,7530,0.804691257,0.884020563,19949,,,,,0.22918442,4572,19949,,,0.170685247,3405,19949,,,0.090179959,1799,19949,,,0.004010226,80,19949,,,0.009424031,188,19949,,,0.000952429,19,19949,,,0.030778485,614,19949,,,0.84665898,16890,19949,,,0.000487911,9,18446,0,0.005153859,0.502932478,10033,19949,,,0.406042666,7956,19594,, -21,215,21215,KY,Spencer County,2024,1,7557.92041,296,55791,6201.630974,8914.209847,0,,,,2,,,,2,,,,2,,,,2,7825.350612,6381.960576,9268.740648,,,,,2,,0.167,,,0.14,0.199,4.069955047,,,3.222868675,5.019423589,5.337415612,,,4.267456264,6.499014006,0.077835434,105,1349,0.063538497,0.09213237,0,,,,,,,,,,,,,0.076250993,0.06159069,0.090911296,,,,,,,0.179,,,0.143,0.222,0.359,,,0.28,0.443,,,0.075,,,0.249,,,0.204,0.309,0.397691124,7751,19490,,,0.16318656,,,0.129775434,0.203283237,0.384615385,5,13,0.234541684,0.524881883,210.9,42,19916,,,16.22161218,65,4007,12.51949781,20.67577635,,,,,,,,,,,,,15.2979066,11.58648507,19.8202124,,,,,,,0.055862602,940,16827,0.046330687,0.065394517,0.000301265,6,19916,,,3319.333333,0.000247476,5,20204,,,4040.8,0.000197981,4,20204,,,5051,2626,,,,,,,,,2660,0.39,,,,,,,,,0.39,0.45,,,,,,,0.46,,0.46,0.9255893,12526,13533,0.906477608,0.944700993,0.624320209,2870,4597,0.52863177,0.720008648,0.039243365,417,10626,,,0.095,426,,0.065212766,0.124787234,,,,,,,,,,0.075268817,0,0.266685108,0.131370038,0.082899237,0.17984084,3.81549553,160888,42167,3.165791097,4.465199962,0.156174067,707,4527,0.084871982,0.227476152,5.523197429,11,19916,,,79.04069556,76,96153,62.27507813,98.93121688,,,,,,,,,,,,,81.97084496,64.36474395,102.9068894,,,,9.1,,,,,0,,,,,0.093478261,645,6900,0.064936869,0.122019653,0.071269488,0.042835232,0.099703744,0.022463768,0.007822517,0.037105019,0.002173913,0,0.007595805,0.846137699,8062,9528,0.812315028,0.879960371,,,,,,,,,,,,,0.613460183,0.570591301,0.656329066,0.671,,9528,0.592154368,0.749845633,76.65386015,,,75.44653722,77.86118307,,,,,,,,,,,,,76.41495534,75.15864336,77.67126731,,,,392.0758873,296,55791,345.5318685,438.6199061,,,,,,,,,,,,,400.7030937,352.1575528,449.2486346,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.117,,,0.1,0.137,0.172,,,0.148,0.199,0.089,,,0.076,0.106,,,,,,0.075,1450,,,,,,17061,,,23.78848637,14,58852,13.00538686,39.913038,,,,,,,,,,,,,25.40235516,13.88770395,42.6208356,,,,0.374,,,0.353,0.393,0.06048615,749,12383,0.049762746,0.071209555,0.044000859,205,4659,0.029702986,0.058298731,0.000445456,9,20204,,,2244.888889,0.93,220.41,237,,,0.117100372,126,1076,0.039777895,0.194422848,3.397278008,,,,,,,,,3.44890892,3.441758364,,,,,,,,,3.444973961,0.004841382,,,,,1750.984,,,,,0.758260409,48697,64222,0.614185635,0.902335184,101552,,,91089.53192,112014.4681,,,,,,,160878,143484.6383,178271.3617,155500,96829.87234,214170.1277,98913,84784.31915,113041.6809,,,,,,0.388249922,1249,3217,,,52.73758037,,,,,0.143355128,,101552,,,5.813953488,6,1032,,,,,,,,,,,,,,,,,,,,,,,,,,21.59686015,22,96153,13.19192325,33.3545989,22.88020135,,,,,,,,,,,,,22.93180821,14.00734421,35.4163179,,,,19.76017389,19,96153,11.8969155,30.85795926,,,,,,,,,,,,,21.0465683,12.67140897,32.86682349,,,,14.35902087,19,132321,8.645068556,22.42338977,,,,,,,,,,,,,14.47003497,8.575859786,22.86889366,,,,4.761904762,,2100,,,5,5,0.786038514,11429,14540,,,0.785,,,,,1.019556396,,,,,0.861914401,5961,6916,0.833647176,0.890181627,0.066835368,449,6718,0.040417774,0.093252961,0.892567958,6173,6916,0.854340457,0.93079546,20204,,,,,0.225054445,4547,20204,,,0.15724609,3177,20204,,,0.016729361,338,20204,,,0.002870719,58,20204,,,0.004850525,98,20204,,,0.000841418,17,20204,,,0.027469808,555,20204,,,0.934319937,18877,20204,,,0.002430462,45,18515,0,0.007653339,0.489111067,9882,20204,,,1,19490,19490,, -21,217,21217,KY,Taylor County,2024,1,11858.15789,537,71722,10365.73996,13350.57582,0,,,,2,,,,2,23353.54519,12767.60047,39183.28059,1,,,,2,11587.93548,10048.97762,13126.89334,,,,,2,,0.203,,,0.17,0.238,4.63022767,,,3.691274023,5.702275408,5.771842513,,,4.648504105,7.014078316,0.091503268,210,2295,0.079706998,0.103299538,0,,,,,,,0.142857143,0.064696469,0.221017817,,,,0.089898502,0.077573217,0.102223787,,,,,,,0.217,,,0.171,0.264,0.398,,,0.315,0.48,7.8,0.028800521,0.13,,,0.295,,,0.242,0.349,0.675248818,17572,26023,,,0.160084297,,,0.126545074,0.195738972,0.037037037,1,27,0.001422895,0.141831346,259.2,68,26235,,,29.95823131,208,6943,25.8868613,34.02960133,,,,,,,,,,,,,31.21443668,26.79912914,35.62974421,,,,,,,0.061674226,1251,20284,0.050950822,0.07239763,0.000724223,19,26235,,,1380.789474,0.00030295,8,26407,,,3300.875,0.002575075,68,26407,,,388.3382353,3218,,,,,,,3630,,3096,0.42,,,,,,,0.41,,0.42,0.4,,,,,,,0.34,,0.41,0.883766005,15047,17026,0.861006211,0.906525799,0.603629099,3626,6007,0.508188391,0.699069808,0.036843821,452,12268,,,0.237,1395,,0.151212766,0.322787234,,,,,,,0.589189189,0.500044006,0.678334372,,,,0.161893155,0.082866944,0.240919365,4.318808764,104269,24143,3.780065778,4.857551751,0.250702363,1517,6051,0.170339646,0.33106508,14.48446732,38,26235,,,104.0922226,134,128732,86.46751365,121.7169316,,,,,,,,,,,,,107.0151474,88.10265489,125.92764,,,,8.1,,,,,0,,,,,0.079710145,770,9660,0.051361098,0.108059192,0.071781398,0.044824098,0.098738698,0.005693582,0,0.01215068,0.00310559,0,0.009781252,0.780500212,9206,11795,0.751703634,0.80929679,,,,,,,,,,,,,0.790021477,0.752600621,0.827442333,0.244,,11795,0.193985824,0.294014176,72.6080204,,,71.57189818,73.64414262,,,,,,,,,,,,,72.6729318,71.60285752,73.74300607,,,,590.9027171,537,71722,537.7817166,644.0237175,,,,,,,849.7265697,555.0696067,1245.046302,,,,587.6486553,532.5804197,642.716891,,,,44.18099481,12,27161,22.82896472,77.17530668,,,,,,,,,,,,,43.3877126,20.80609466,79.79154826,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.136,,,0.117,0.159,0.19,,,0.163,0.219,0.104,,,0.088,0.122,45.5,10,21971,,,0.13,3360,,,,0.028800521,705.9583755,24512,,,36.03093513,28,77711,23.94229473,52.07473323,,,,,,,,,,,,,33.14837501,21.01322626,49.73883821,,,,0.4,,,0.38,0.419,0.072821937,1049,14405,0.058524065,0.087119809,0.035366645,218,6164,0.023451751,0.047281539,0.001969175,52,26407,,,507.8269231,0.936501767,265.03,283,,,,,,,,3.118398536,,,,,,,,,3.151908643,3.31243454,,,,,,,,,3.326325151,0.056257583,,,,,-2671.681,,,,,0.796978169,40194,50433,0.685913203,0.908043135,52414,,,45621.31915,59206.68085,,,,,,,,,,,,,64417,60537.51064,68296.48936,,,,,,0.591929382,2347,3965,,,48.93219506,,,,,0.333250658,,52414,,,6.289308176,10,1590,,,,,,,,,,,,,,,,,,,,,,,,,,13.16467266,16,128732,7.197249045,22.08808378,12.4289221,,,,,,,,,,,,,13.57541373,7.22833607,23.21437093,,,,11.65211447,15,128732,6.521600016,19.21839082,,,,,,,,,,,,,12.18058589,6.65923965,20.43695339,,,,16.70853082,30,179549,11.27317558,23.85246668,,,,,,,,,,,,,17.43234073,11.58366382,25.19458598,,,,12.4,,2500,,,17,14,0.638917263,12510,19580,,,0.681,,,,,26.49017674,,,,,0.67520065,6646,9843,0.628166021,0.722235279,0.072768435,675,9276,0.045297295,0.100239574,0.855633445,8422,9843,0.82113072,0.89013617,26407,,,,,0.226720188,5987,26407,,,0.185178173,4890,26407,,,0.049456584,1306,26407,,,0.0024236,64,26407,,,0.008293256,219,26407,,,0.000719506,19,26407,,,0.028212217,745,26407,,,0.890407846,23513,26407,,,0,0,24579,0,0.004459784,0.50710039,13391,26407,,,0.508550129,13234,26023,, -21,219,21219,KY,Todd County,2024,1,11112.72543,243,34480,9018.65032,13206.80055,0,,,,2,,,,2,20413.88944,11891.84287,32684.61452,1,,,,2,10824.61511,8565.754096,13083.47612,,,,,2,,0.243,,,0.208,0.28,5.185120548,,,4.131515689,6.257420549,6.028871895,,,4.77949258,7.265623779,0.069861901,86,1231,0.055621541,0.084102261,0,,,,,,,,,,,,,0.067219153,0.052326314,0.082111992,,,,,,,0.248,,,0.201,0.295,0.41,,,0.322,0.49,7.7,0.032557369,0.131,,,0.334,,,0.275,0.392,0.337172262,4128,12243,,,0.143360395,,,0.110873481,0.176423709,0.15,3,20,0.050642257,0.283837277,390.7,48,12285,,,27.8551532,80,2872,22.08740411,34.66814936,,,,,,,,,,,,,27.88502789,21.52107582,35.54175711,,,,,,,0.11423221,1159,10146,0.097551359,0.130913061,0.0001628,2,12285,,,6142.5,8.06192E-05,1,12404,,,12404,0.000403096,5,12404,,,2480.8,2656,,,,,,,3924,,2662,0.34,,,,,,,0.29,,0.35,0.36,,,,,,,0.3,,0.37,0.785508337,6266,7977,0.733123459,0.837893214,0.455150666,1299,2854,0.359268771,0.55103256,0.032037815,183,5712,,,0.229,760,,0.145595745,0.312404255,,,,,,,0.739263804,0.485694311,0.992833297,,,,0.308918406,0.203959278,0.413877534,4.903538964,111124,22662,3.002359968,6.80471796,0.204863222,674,3290,0.146017514,0.26370893,16.28001628,20,12285,,,115.2953021,71,61581,90.04658751,145.4293355,,,,,,,,,,,,,124.8344997,96.54699304,158.8200916,,,,7.9,,,,,0,,,,,0.133190118,620,4655,0.089960131,0.176420105,0.099557522,0.056861846,0.142253198,0.030934479,0.011615047,0.050253911,0.010741139,0.001825142,0.019657135,0.714717133,3550,4967,0.649026619,0.780407648,,,,,,,,,,,,,0.689970717,0.606654793,0.773286642,0.359,,4967,0.282456661,0.435543339,73.70750566,,,72.14083353,75.27417779,,,,,,,,,,,,,73.8525364,72.17400429,75.53106852,,,,564.6755133,243,34480,490.3623667,638.9886598,,,,,,,1043.543572,718.3273783,1465.52316,,,,545.2773737,466.9458497,623.6088976,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.156,,,0.133,0.179,0.202,,,0.174,0.23,0.118,,,0.1,0.135,130.6,13,9951,,,0.131,1600,,,,0.032557369,405.664823,12460,,,32.40878278,12,37027,16.74609098,56.61162138,,,,,,,,,,,,,34.78040914,17.36225493,62.2317593,,,,0.41,,,0.392,0.426,0.12893401,889,6895,0.107487202,0.150380819,0.083895571,286,3409,0.057682805,0.110108337,0.001773621,22,12404,,,563.8181818,0.925,133.2,144,,,0.167539267,128,764,0.055520125,0.279558409,3.301933832,,,,,,,,,3.351114662,3.674924065,,,,,,,,,3.739295851,0.042112654,,,,,-6780.582,,,,,0.617993661,35293,57109,0.561823951,0.674163371,53280,,,47173.61702,59386.38298,,,,,,,33808,27836.25532,39779.74468,41250,9374.085106,73125.91489,63654,57472.55319,69835.44681,,,,,,0.561750912,1078,1919,,,49.05965404,,,,,0.240033784,,53280,,,2.424242424,2,825,,,,,,,,,,,,,,,,,,,,,,,,,,15.94537423,11,61581,7.646426735,29.32411094,17.86265244,,,,,,,,,,,,,18.35752728,8.80314788,33.76014627,,,,25.98203992,16,61581,14.85098075,42.19320504,,,,,,,,,,,,,28.37147721,15.87930042,46.79443706,,,,34.71940931,30,86407,23.42503966,49.56411563,,,,,,,,,,,,,37.74246162,25.07959165,54.54836554,,,,18.66666667,,1500,,,8,20,0.606689342,5351,8820,,,0.582,,,,,3.765886584,,,,,0.747542449,3346,4476,0.703806189,0.791278708,0.079759036,331,4150,0.040392771,0.119125301,0.684986595,3066,4476,0.629133671,0.74083952,12404,,,,,0.270638504,3357,12404,,,0.168735892,2093,12404,,,0.074733957,927,12404,,,0.002982909,37,12404,,,0.003224766,40,12404,,,0.001693002,21,12404,,,0.049822638,618,12404,,,0.848435988,10524,12404,,,0.020372475,233,11437,0.010411325,0.030333625,0.491857465,6101,12404,,,1,12243,12243,, -21,221,21221,KY,Trigg County,2024,1,12481.54943,336,39516,10152.81006,14810.28879,0,,,,2,,,,2,13008.30895,4773.82012,28313.61213,1,,,,2,12981.28545,10438.45543,15524.11547,,,,,2,,0.205,,,0.173,0.239,4.595999974,,,3.63617415,5.613604865,5.941197736,,,4.805731757,7.200975473,0.089928058,100,1112,0.073113357,0.106742759,0,,,,,,,0.191176471,0.097712178,0.284640763,,,,0.084677419,0.067352504,0.102002335,,,,,,,0.213,,,0.17,0.26,0.415,,,0.334,0.495,7.8,0.015990658,0.136,,,0.289,,,0.237,0.344,0.652087334,9169,14061,,,0.143248268,,,0.11312717,0.177608978,0.333333333,8,24,0.22460658,0.441421063,317.1,45,14192,,,29.27161334,86,2938,23.41351234,36.15020435,,,,,,,,,,,,,27.92391744,21.72647453,35.33950469,,,,,,,0.067743997,742,10953,0.057020593,0.078467401,,0,14192,,,,0.000139548,2,14332,,,7166,0.000139548,2,14332,,,7166,3154,,,,,,,8309,,2971,0.39,,,,,,,0.57,,0.38,0.41,,,,,,,0.36,,0.41,0.87849633,8857,10082,0.846776249,0.910216412,0.649812094,1902,2927,0.532100162,0.767524027,0.044916091,273,6078,,,0.206,629,,0.123787234,0.288212766,,,,,,,0.207407407,0,0.501580446,0.281553398,0,0.767150589,0.278616852,0.18624252,0.370991184,4.870079811,107395,22052,3.368351212,6.371808411,0.228962818,702,3066,0.153629739,0.304295898,18.32018038,26,14192,,,108.6567821,79,72706,86.02459764,135.4187703,,,,,,,,,,,,,115.9129713,91.01661353,145.5181208,,,,8,,,,,0,,,,,0.125105664,740,5915,0.087289052,0.162922276,0.095539224,0.058870748,0.1322077,0.016906171,0.003409338,0.030403004,0.022823331,0.007295261,0.038351401,0.807082452,4581,5676,0.755659105,0.8585058,,,,,,,,,,,,,0.753239741,0.693283437,0.813196045,0.39,,5676,0.309198044,0.470801956,73.03266577,,,71.39855388,74.66677766,,,,,,,,,,,,,72.59404142,70.84545186,74.34263098,,,,558.6064597,336,39516,492.1810957,625.0318236,,,,,,,562.843245,327.8769316,901.1665587,,,,574.2358698,502.1729931,646.2987464,,,,94.66249181,13,13733,50.40379008,161.875744,,,,,,,,,,,,,87.25242126,41.84092746,160.4603092,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.138,,,0.118,0.16,0.188,,,0.162,0.215,0.108,,,0.092,0.125,82.8,10,12079,,,0.136,1910,,,,0.015990658,229.2900421,14339,,,,,,,,,,,,,,,,,,,,,,,,,,0.374,,,0.357,0.391,0.076942546,608,7902,0.062644674,0.091240419,0.04458996,143,3207,0.029100598,0.060079321,0.001116383,16,14332,,,895.75,0.925,141.525,153,,,,,,,,3.103485463,,,,,,,,,3.168664289,2.804276138,,,,,,,,,2.85135753,0.01017962,,,,,-1460.267,,,,,0.862053517,42332,49106,0.703840822,1.020266212,56433,,,49137.51064,63728.48936,,,,,,,40313,20427.04255,60198.95745,,,,59056,54570.04255,63541.95745,,,,,,0.515166835,1019,1978,,,39.20504082,,,,,0.226622721,,56433,,,7.481296758,6,802,,,,,,,,,,,,,,,,,,,,,,,,,,20.35033151,14,72706,10.51531325,35.54793373,19.25563227,,,,,,,,,,,,,21.30006583,10.63291612,38.11170146,,,,17.88022997,13,72706,9.520469412,30.57573779,,,,,,,,,,,,,18.79669805,9.71252817,32.83404873,,,,28.65527702,29,101203,19.19088875,41.15375773,,,,,,,,,,,,,28.10378165,18.18728568,41.48672568,,,,10.66666667,,1500,,,5,11,0.654101996,7375,11275,,,0.58,,,,,5.667895128,,,,,0.786352699,4575,5818,0.760682089,0.812023308,0.119111589,665,5583,0.077829128,0.16039405,0.750257821,4365,5818,0.683739478,0.816776163,14332,,,,,0.216020095,3096,14332,,,0.232765839,3336,14332,,,0.066913201,959,14332,,,0.00425621,61,14332,,,0.004116662,59,14332,,,0.001325705,19,14332,,,0.026234999,376,14332,,,0.876011722,12555,14332,,,0.002171146,29,13357,0,0.009149558,0.495394921,7100,14332,,,1,14061,14061,, -21,223,21223,KY,Trimble County,2024,1,11763.18869,213,23713,9203.619017,14322.75836,0,,,,2,,,,2,,,,2,,,,2,12057.57238,9359.661814,14755.48295,,,,,2,,0.211,,,0.179,0.248,4.73650833,,,3.777360764,5.816958246,5.858803978,,,4.699352893,7.206663589,0.092084007,57,619,0.069305477,0.114862536,0,,,,,,,,,,,,,0.091695502,0.06816767,0.115223333,,,,,,,0.225,,,0.182,0.272,0.405,,,0.321,0.497,,,0.125,,,0.3,,,0.245,0.36,0.445480293,3775,8474,,,0.149417012,,,0.117607433,0.187625348,0.333333333,4,12,0.175768434,0.488588466,211,18,8530,,,30.46280023,52,1707,22.75107627,39.94790963,,,,,,,,,,,,,30.00652316,21.96854626,40.02449688,,,,,,,0.07140821,501,7016,0.059493316,0.083323103,0.000234467,2,8530,,,4265,0.00011711,1,8539,,,8539,0.00023422,2,8539,,,4269.5,4598,,,,,,,,,4637,0.38,,,,,,,,,0.38,0.42,,,,,,,,,0.42,0.855455755,5143,6012,0.799297681,0.91161383,0.492950899,1014,2057,0.353523972,0.632377827,0.04343303,167,3845,,,0.162,299,,0.101234043,0.222765957,,,,,,,,,,0.096774194,0,0.472822325,0.060606061,0.00349391,0.117718211,5.17087766,116655,22560,3.684636643,6.657118676,0.152588556,280,1835,0.067758424,0.237418688,7.033997655,6,8530,,,136.2845998,58,42558,103.4866105,176.1794486,,,,,,,,,,,,,140.5587209,106.1765472,182.5271906,,,,8.7,,,,,0,,,,,0.141176471,480,3400,0.081982466,0.200370475,0.101506024,0.058075692,0.144936356,0.038235294,0,0.078842439,0.016176471,0,0.033002706,0.79487909,2794,3515,0.721419383,0.868338796,,,,,,,,,,,,,0.781994048,0.653137687,0.910850409,0.527,,3515,0.400236507,0.653763493,72.65990529,,,70.84849428,74.47131631,,,,,,,,,,,,,72.37668828,70.49193277,74.26144379,,,,632.9636113,213,23713,542.747149,723.1800736,,,,,,,,,,,,,642.5803431,549.3366954,735.8239908,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.14,,,0.121,0.164,0.191,,,0.165,0.22,0.102,,,0.087,0.121,0,0,7220,,,0.125,1060,,,,,,8809,,,43.16772624,11,25482,21.54917341,77.2389864,,,,,,,,,,,,,46.2281992,23.07695048,82.71501792,,,,0.384,,,0.365,0.402,0.080178606,413,5151,0.065880734,0.094476478,0.047619048,93,1953,0.030938197,0.064299899,0.000585549,5,8539,,,1707.8,0.925,64.75,70,,,,,,,,2.660772221,,,,,,,,,2.653503583,2.579278262,,,,,,,,,2.564844,0.018153678,,,,,-355.9443,,,,,0.669138221,38264,57184,0.482674378,0.855602063,65828,,,56325.87234,75330.12766,,,,,,,,,,46655,36745.38298,56564.61702,67339,48420.53192,86257.46809,,,,,,0.543240974,647,1191,,,,,,,,0.221152093,,65828,,,2.369668246,1,422,,,,,,,,,,,,,,,,,,,,,,,,,,29.29388057,14,42558,15.59775766,50.09342793,32.89628272,,,,,,,,,,,,,27.43722535,14.17721471,47.92731105,,,,35.2460172,15,42558,19.72692827,58.13294533,,,,,,,,,,,,,37.64965739,21.07222744,62.09738428,,,,25.02210286,15,59947,14.00468102,41.27015342,,,,,,,,,,,,,24.89065889,13.60795484,41.7622962,,,,,,900,,,-888,9,0.664461539,4319,6500,,,0.659,,,,,3.971200303,,,,,0.812710052,2660,3273,0.750489242,0.874930862,0.095778198,304,3174,0.046763234,0.144793162,0.7421326,2429,3273,0.647976616,0.836288584,8539,,,,,0.220049186,1879,8539,,,0.179294999,1531,8539,,,0.007143694,61,8539,,,0.007026584,60,8539,,,0.005738377,49,8539,,,0.001171097,10,8539,,,0.033844713,289,8539,,,0.932310575,7961,8539,,,0.004574679,37,8088,0,0.019079098,0.495022836,4227,8539,,,1,8474,8474,, -21,225,21225,KY,Union County,2024,1,9550.394804,303,39690,7803.114084,11297.67552,0,,,,2,,,,2,,,,2,,,,2,10072.13388,8077.451168,12066.81658,,,,,2,,0.224,,,0.192,0.26,4.822216767,,,3.903446401,5.856548225,5.882617794,,,4.721300245,7.138968894,0.144052045,155,1076,0.123070699,0.16503339,0,,,,,,,0.203125,0.104555427,0.301694573,,,,0.141851107,0.120161056,0.163541157,,,,,,,0.238,,,0.193,0.287,0.4,,,0.32,0.482,5.8,0.199772224,0.142,,,0.31,,,0.255,0.367,0.690005853,9431,13668,,,0.147782439,,,0.117886512,0.18259765,0.416666667,5,12,0.261828357,0.556653137,376.6,51,13544,,,35.71428571,109,3052,29.00950172,42.41906971,,,,,,,,,,,,,49.05847374,39.87230667,59.72693149,,,,,,,0.067077035,741,11047,0.055162141,0.078991928,0.0002215,3,13544,,,4514.666667,0.000617236,8,12961,,,1620.125,0.000540082,7,12961,,,1851.571429,4338,,,,,,,1803,,4255,0.45,,,,,,,0.44,,0.45,0.32,,,,,,,0.32,,0.31,0.90573072,8503,9388,0.880206112,0.931255329,0.475571066,1499,3152,0.386112011,0.565030121,0.042727739,250,5851,,,0.254,582,,0.170595745,0.337404255,,,,,,,0.522292994,0.182799511,0.861786477,0.244186047,0,0.619834322,0.161413563,0.094003157,0.228823968,4.580074285,104815,22885,3.424083488,5.736065081,0.206125828,498,2416,0.133064847,0.279186808,11.81334908,16,13544,,,113.2217889,81,71541,89.91444346,140.7243457,,,,,,,,,,,,,125.9960499,98.93399892,158.1765026,,,,8.6,,,,,1,,,,,0.04057971,210,5175,0.024597108,0.056562313,0.034550839,0.016642421,0.052459257,0.007729469,0,0.016151784,0.002898551,0,0.01012623,0.85380117,4818,5643,0.818012592,0.889589747,,,,,,,,,,,,,0.858783008,0.823294443,0.894271573,0.292,,5643,0.231974474,0.352025527,73.89987293,,,72.58305749,75.21668836,,,,,,,71.69559164,64.51491464,78.87626864,,,,73.54007403,72.11173174,74.96841632,,,,542.3835889,303,39690,477.9097496,606.8574281,,,,,,,,,,,,,554.5788817,485.5560525,623.6017109,,,,75.82075972,10,13189,36.35900141,139.4370767,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.146,,,0.126,0.168,0.194,,,0.168,0.222,0.111,,,0.094,0.128,109.1,13,11913,,,0.142,1960,,,,0.199772224,2997.981762,15007,,,28.32326284,12,42368,14.63504321,49.47504024,,,,,,,,,,,,,31.63191948,15.79054024,56.59824159,,,,0.405,,,0.388,0.42,0.075482537,657,8704,0.061184664,0.089780409,0.039171375,104,2655,0.027256481,0.051086268,0.000771545,10,12961,,,1296.1,0.925,153.55,166,,,0.366386555,218,595,0.163460612,0.569312498,2.894976228,,,,,,,,,2.925695815,3.045519439,,,,,,,,,3.126471124,0.035236862,,,,,2299.648,,,,,0.658817392,36623,55589,0.5192838,0.798350984,58223,,,50074.40426,66371.59575,,,,,,,33246,31430.17021,35061.82979,,,,59158,55420.29787,62895.70213,,,,,,0.559726963,1148,2051,,,36.02631763,,,,,0.219655463,,58223,,,9.186351706,7,762,,,,,,,,,,,,,,,,,,,,,,,,,,24.87936812,19,71541,14.49314876,39.83427846,26.5581974,,,,,,,,,,,,,24.18607308,13.82443052,39.27666742,,,,23.76259767,17,71541,13.84258882,38.04622079,,,,,,,,,,,,,23.83709051,13.0319592,39.99458749,,,,23.65207793,24,101471,15.15433262,35.19241714,,,,,,,,,,,,,28.78733357,18.44458781,42.83327047,,,,15,,1200,,,9,9,0.558234295,6576,11780,,,0.673,,,,,11.43087841,,,,,0.730807184,3703,5067,0.694239562,0.767374805,0.095533499,462,4836,0.059506981,0.131560016,0.850009868,4307,5067,0.806072097,0.893947638,12961,,,,,0.182393334,2364,12961,,,0.203610833,2639,12961,,,0.060952087,790,12961,,,0.003471954,45,12961,,,0.005246509,68,12961,,,0.000308618,4,12961,,,0.019597253,254,12961,,,0.89090348,11547,12961,,,0.001874707,24,12802,0,0.008717122,0.506133786,6560,12961,,,1,13668,13668,, -21,227,21227,KY,Warren County,2024,1,8862.883668,1906,383369,8305.22443,9420.542907,0,,,,2,5211.708075,3434.548461,7582.761623,,13631.77361,11304.8922,15958.65502,,7470.5462,5469.378738,9964.661733,,8530.105066,7907.852663,9152.35747,,,,,2,,0.202,,,0.17,0.237,4.515463179,,,3.640568844,5.482635036,5.789837052,,,4.816908569,6.870915988,0.085779704,1049,12229,0.080816315,0.090743093,0,,,,0.06918239,0.051542227,0.086822553,0.132022472,0.114440028,0.149604916,0.072625698,0.057104451,0.088146946,0.079693309,0.073972174,0.085414443,0.118110236,0.061978932,0.17424154,0.126984127,0.079515031,0.174453223,0.204,,,0.16,0.251,0.392,,,0.331,0.458,7.8,0.054569723,0.116,,,0.274,,,0.226,0.323,0.660953966,88934,134554,,,0.153373199,,,0.124375407,0.187964658,0.222222222,20,90,0.168804941,0.279216269,465.7,639,137212,,,16.72736406,666,39815,15.45694656,17.99778155,,,,8.739076155,4.777734255,14.66268485,22.72249106,18.43700452,27.00797759,37.890625,30.72674437,46.22334919,14.46457203,13.08774707,15.841397,,,,14.04494382,8.579016563,21.69127662,0.082561011,9327,112971,0.070646118,0.094475905,0.000655919,90,137212,,,1524.577778,0.000657881,92,139843,,,1520.032609,0.003296554,461,139843,,,303.3470716,2792,,,,,,,4397,3156,2699,0.44,,,,,,0.3,0.46,0.26,0.44,0.47,,,,,,0.38,0.38,0.3,0.48,0.885920543,73387,82837,0.874651638,0.897189447,0.655296075,22841,34856,0.614378501,0.69621365,0.035623371,2337,65603,,,0.196,6212,,0.150723404,0.241276596,,,,0.292386907,0.177268224,0.40750559,0.566593887,0.457565169,0.675622604,0.426375983,0.349515445,0.50323652,0.124666996,0.099679076,0.149654915,4.710995253,121082,25702,4.272419937,5.149570569,0.226391313,7005,30942,0.183767166,0.269015459,8.745590765,120,137212,,,70.10396749,466,664727,63.73886047,76.46907452,,,,,,,95.25170262,72.68708379,122.6078224,37.60913365,20.56126334,63.10173572,73.15019267,65.76603655,80.5343488,,,,8.3,,,,,0,,,,,0.160384924,8000,49880,0.140510565,0.180259283,0.133799959,0.114238493,0.153361426,0.032878909,0.022324126,0.043433693,0.011327185,0.004864009,0.017790362,0.788298259,51993,65956,0.770451555,0.806144964,,,,0.763157895,0.626020289,0.900295501,0.714993577,0.663934685,0.766052468,0.720151427,0.644733681,0.795569173,0.820232873,0.804574001,0.835891744,0.189,,65956,0.169640589,0.208359411,75.76278696,,,75.27755793,76.24801599,,,,83.98869488,76.0020031,91.97538666,71.55327222,69.73453723,73.37200721,85.01154699,76.25420862,93.76888536,75.94120724,75.41303857,76.46937591,,,,456.1678164,1906,383369,435.2813749,477.0542579,,,,260.0055641,169.8442668,380.9683936,641.4665297,553.098224,729.8348354,343.2972627,246.3560428,465.7215007,450.5261128,427.6796042,473.3726213,,,,54.07780444,80,147935,42.88033568,67.30450872,,,,,,,82.5501651,43.95448623,141.1632964,,,,43.40577494,31.53870252,58.27022687,,,,5.661948376,68,12010,4.396724459,7.177868706,,,,,,,,,,,,,4.904823076,3.534965051,6.629895922,,,,,,,0.132,,,0.112,0.154,0.182,,,0.157,0.208,0.11,,,0.094,0.129,154.6,177,114514,,,0.116,15420,,,,0.054569723,6209.597886,113792,,,21.50176216,87,404618,17.22203005,26.52234418,,,,,,,,,,,,,24.04192912,18.91050238,30.13676634,,,,0.382,,,0.364,0.4,0.098405912,8056,81865,0.082916551,0.113895274,0.042717194,1391,32563,0.030802301,0.054632088,0.001423024,199,139843,,,702.7286432,0.97,1484.1,1530,,,0.031580082,293,9278,0.012089569,0.051070595,3.15710812,,,,,,,2.581424305,2.88635129,3.336486508,3.022023958,,,,,,3.011720332,2.391804172,2.645464118,3.230339769,0.085736239,,,,,-3963.5335,,,,,0.741957416,41468,55890,0.690306423,0.79360841,60651,,,55199.93617,66102.06383,,,,46618,27821.06383,65414.93617,36890,26521.65957,47258.34043,52895,41092.10638,64697.89362,69947,65119.08511,74774.91489,,,,,,0.58897185,12700,21563,,,48.53186665,,,,,0.262287514,,60651,,,6.592889098,56,8494,,,5.037728204,46,913110,3.688250201,6.719623453,,,,,,,21.00962941,12.45163791,33.20427227,,,,2.943006576,1.821767455,4.498698173,,,,15.9526145,106,664727,12.84309118,19.06213782,15.94639604,,,,,,,,,,,,,17.76230189,14.28298828,21.83288463,,,,14.89333215,99,664727,12.10456546,18.1320975,,,,,,,26.98798241,15.72149429,43.21037421,,,,14.35839326,11.27442697,18.02564787,,,,11.17061471,102,913110,9.002745597,13.33848383,,,,,,,16.34082288,8.933679926,27.41712416,,,,10.93116728,8.640634121,13.64259148,,,,11.16788321,,13700,,,58,95,0.584364443,55351,94720,,,0.644,,,,,60.50625833,,,,,0.567856123,29838,52545,0.549012589,0.586699657,0.136582679,6944,50841,0.117358195,0.155807163,0.900903987,47338,52545,0.888757691,0.913050283,139843,,,,,0.231245039,32338,139843,,,0.135923858,19008,139843,,,0.095356936,13335,139843,,,0.003360912,470,139843,,,0.054403867,7608,139843,,,0.007143726,999,139843,,,0.058565677,8190,139843,,,0.760481397,106348,139843,,,0.031615657,4007,126741,0.02626435,0.036966964,0.50518081,70646,139843,,,0.273050225,36740,134554,, -21,229,21229,KY,Washington County,2024,1,9156.618974,204,33443,7185.47707,11127.76088,0,,,,2,,,,2,,,,2,,,,2,9251.235313,7092.774425,11409.6962,,,,,2,,0.202,,,0.17,0.238,4.521857038,,,3.570459384,5.615145474,5.566885381,,,4.390328121,6.877203348,0.100206612,97,968,0.081290234,0.119122989,0,,,,,,,,,,,,,0.098457889,0.078345643,0.118570134,,,,,,,0.207,,,0.165,0.256,0.422,,,0.332,0.515,8,0.051638743,0.111,,,0.292,,,0.237,0.354,0.182007151,2189,12027,,,0.145622602,,,0.111860085,0.184332707,0.277777778,5,18,0.152183671,0.410166986,240.2,29,12072,,,22.62973078,58,2563,17.18370335,29.2541747,,,,,,,,,,,,,22.0657277,16.21306675,29.34274007,,,,,,,0.07116602,697,9794,0.059251126,0.083080914,0.000331345,4,12072,,,3018,0.000497471,6,12061,,,2010.166667,0.001409502,17,12061,,,709.4705882,2696,,,,,,,,,2690,0.4,,,,,,,0.5,,0.4,0.42,,,,,,,0.47,,0.42,0.881343817,7398,8394,0.85637468,0.906312954,0.594094628,1670,2811,0.486744683,0.701444574,0.034482759,212,6148,,,0.177,476,,0.112659575,0.241340426,,,,,,,0.12987013,0,0.456470598,,,,0.137700535,0.080029185,0.195371884,5.164413592,113080,21896,3.570582092,6.758245091,0.222262774,609,2740,0.136163323,0.308362224,13.25381047,16,12072,,,95.82975349,58,60524,72.76754953,123.8821786,,,,,,,,,,,,,99.85869053,74.80101165,130.6176259,,,,8.5,,,,,0,,,,,0.079787234,375,4700,0.054897202,0.104677267,0.050160772,0.027221256,0.073100288,0.010425532,0,0.022586101,0.018085106,0.005879611,0.030290602,0.783679212,4456,5686,0.731481554,0.83587687,,,,,,,,,,,,,0.773433706,0.71207092,0.834796491,0.356,,5686,0.289500375,0.422499625,75.37619915,,,73.81794,76.9344583,,,,,,,,,,,,,75.39909633,73.71968382,77.07850884,,,,452.1489612,204,33443,386.7115945,517.5863278,,,,,,,,,,,,,455.3899593,385.8621096,524.917809,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.134,,,0.115,0.156,0.186,,,0.159,0.215,0.103,,,0.087,0.122,139,14,10070,,,0.111,1330,,,,0.051638743,605.0511532,11717,,,30.29134769,11,36314,15.12133163,54.19958835,,,,,,,,,,,,,,,,,,,0.376,,,0.357,0.395,0.077546955,545,7028,0.063249083,0.091844827,0.055708391,162,2908,0.03783605,0.073580731,0.000746207,9,12061,,,1340.111111,0.975,143.325,147,,,,,,,,3.065875659,,,,,,,,,3.140122451,2.823509477,,,,,,,,,2.872874039,0.060537058,,,,,-2524.857,,,,,0.752486067,41316,54906,0.627983795,0.87698834,59937,,,51245.08511,68628.91489,,,,39833,8761.340426,70904.65957,64300,25614.7234,102985.2766,,,,68101,59522.2766,76679.7234,,,,,,0.594007051,1011,1702,,,65.64440692,,,,,0.213374043,,59937,,,10.78167116,8,742,,,,,,,,,,,,,,,,,,,,,,,,,,18.11187277,11,60524,8.685346992,33.30837887,18.17460842,,,,,,,,,,,,,20.77142471,9.960705526,38.19938959,,,,,,,,,,,,,,,,,,,,,,,,,,,28.30989903,24,84776,18.13868649,42.12288572,,,,,,,,,,,,,29.57625296,18.53528027,44.77880241,,,,11.66666667,,1200,,,9,5,0.68272079,6223,9115,,,0.692,,,,,4.028535308,,,,,0.794390507,3682,4635,0.777341155,0.811439859,0.090382903,406,4492,0.056556534,0.124209272,0.761165049,3528,4635,0.720489921,0.801840176,12061,,,,,0.226183567,2728,12061,,,0.196169472,2366,12061,,,0.050659149,611,12061,,,0.001658237,20,12061,,,0.006467125,78,12061,,,0.000580383,7,12061,,,0.04269961,515,12061,,,0.882099328,10639,12061,,,0.002919321,33,11304,0,0.010789424,0.503440842,6072,12061,,,1,12027,12027,, -21,231,21231,KY,Wayne County,2024,1,12495.7441,467,54634,10698.27924,14293.20895,0,,,,2,,,,2,,,,2,,,,2,12989.85002,11092.02536,14887.67468,,,,,2,,0.259,,,0.215,0.308,5.385556048,,,4.338719341,6.49109351,5.916661684,,,4.765642634,7.186975839,0.088575096,138,1558,0.074466344,0.102683849,0,,,,,,,,,,,,,0.089260809,0.074503441,0.104018177,,,,,,,0.268,,,0.215,0.327,0.429,,,0.351,0.512,6.5,0.098478984,0.158,,,0.358,,,0.297,0.423,0.341651752,6681,19555,,,0.127708914,,,0.100244805,0.159762081,0.307692308,4,13,0.157450571,0.460702037,204.7,40,19540,,,45.6112437,172,3771,38.79470724,52.42778017,,,,,,,,,,,,,48.06022004,40.74903489,55.37140518,,,,,,,0.073102716,1101,15061,0.061187822,0.085017609,0.000511771,10,19540,,,1954,0.000304863,6,19681,,,3280.166667,0.001575123,31,19681,,,634.8709677,3164,,,,,,,,,3226,0.33,,,,,,,,,0.33,0.32,,,,,,,,,0.32,0.764395667,10726,14032,0.726147191,0.802644144,0.427120795,2019,4727,0.346125343,0.508116248,0.04959028,351,7078,,,0.385,1491,,0.273,0.497,,,,,,,,,,0.602693603,0.318135593,0.887251613,0.337904873,0.272921513,0.402888233,5.461736334,84930,15550,4.281696857,6.641775812,0.330681253,1330,4022,0.248291393,0.413071113,6.653019447,13,19540,,,104.6748168,106,101266,84.74765955,124.6019741,,,,,,,,,,,,,107.3953958,86.45036289,128.3404288,,,,7.5,,,,,0,,,,,0.095180723,790,8300,0.06453969,0.125821756,0.078419453,0.048493444,0.108345462,0.021084337,0.007421211,0.034747464,0.002409639,0,0.007610006,0.790367853,5350,6769,0.740276748,0.840458959,,,,,,,,,,,,,0.832727273,0.770803911,0.894650635,0.302,,6769,0.237483299,0.366516701,73.18725265,,,71.87907028,74.49543501,,,,,,,,,,,,,72.65863034,71.316828,74.00043268,,,,591.7918608,467,54634,533.7875049,649.7962166,,,,,,,,,,,,,615.87948,554.6922954,677.0666647,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.165,,,0.139,0.193,0.211,,,0.182,0.244,0.124,,,0.105,0.144,95.7,16,16720,,,0.158,3120,,,,0.098478984,2049.643095,20813,,,23.30148797,14,60082,12.7391403,39.09593742,,,,,,,,,,,,,23.33052171,12.42252022,39.89590266,,,,0.4,,,0.38,0.418,0.08622851,963,11168,0.069547659,0.102909361,0.036106367,148,4099,0.024191474,0.048021261,0.00121945,24,19681,,,820.0416667,0.92,225.4,245,,,,,,,,3.14241551,,,,,,,,,3.168059346,3.318094524,,,,,,,,,3.352465084,0.012194965,,,,,-3209.461,,,,,0.85102077,33640,39529,0.713518317,0.988523223,39863,,,34267.76596,45458.23404,,,,,,,,,,25448,22247.65957,28648.34043,42911,39081.55319,46740.44681,,,,,,0.769400631,2439,3170,,,,,,,,0.365200813,,39863,,,6.329113924,7,1106,,,,,,,,,,,,,,,,,,,,,,,,,,25.76379579,26,101266,16.33203649,38.6583436,25.67495507,,,,,,,,,,,,,27.6886171,17.55220809,41.54652064,,,,26.66245334,27,101266,17.57072476,38.79246978,,,,,,,,,,,,,28.70966027,18.91984702,41.77104838,,,,26.72612056,38,142183,18.91299357,36.68368857,,,,,,,,,,,,,26.45202736,18.42480626,36.78836668,,,,8.947368421,,1900,,,7,10,0.581680831,9240,15885,,,0.535,,,,,17.60535319,,,,,0.73711536,5821,7897,0.70215773,0.77207299,0.119063368,900,7559,0.086285657,0.151841079,0.76801317,6065,7897,0.728618332,0.807408007,19681,,,,,0.201920634,3974,19681,,,0.226868553,4465,19681,,,0.01671663,329,19681,,,0.004115645,81,19681,,,0.004369697,86,19681,,,0.001016209,20,19681,,,0.037244043,733,19681,,,0.92734109,18251,19681,,,0.008012476,149,18596,0.001130649,0.014894303,0.50063513,9853,19681,,,0.658348249,12874,19555,, -21,233,21233,KY,Webster County,2024,1,13235.76655,292,35874,10897.34305,15574.19006,0,,,,2,,,,2,,,,2,,,,2,14173.76811,11541.70508,16805.83114,,,,,2,,0.237,,,0.204,0.275,4.959999568,,,3.968133305,5.984419051,5.860049512,,,4.677257672,7.091864703,0.117991632,141,1195,0.099700774,0.13628249,0,,,,,,,,,,0.103448276,0.053877996,0.153018556,0.11902439,0.099200264,0.138848517,,,,,,,0.247,,,0.203,0.295,0.402,,,0.32,0.482,6.6,0.105930799,0.149,,,0.332,,,0.277,0.391,0.254897442,3318,13017,,,0.139979821,,,0.110210636,0.174773257,0.071428571,1,14,0.003307818,0.237195967,195.1,25,12813,,,45.90288316,121,2636,37.72382398,54.08194234,,,,,,,,,,66.66666667,39.51089178,105.3620751,44.70272687,35.9409924,53.46446133,,,,,,,0.092041998,938,10191,0.077744126,0.10633987,0.000156092,2,12813,,,6406.5,0.000157159,2,12726,,,6363,0.000471476,6,12726,,,2121,4181,,,,,,,,,4024,0.41,,,,,,,0.47,,0.41,0.43,,,,,,,0.22,,0.44,0.856737105,7541,8802,0.829454603,0.884019607,0.482837529,1477,3059,0.400358937,0.56531612,0.039159503,205,5235,,,0.209,613,,0.129170213,0.288829787,,,,,,,,,,0.268156425,0.015633873,0.520678976,0.134956665,0.065527785,0.204385546,4.533046044,96776,21349,3.699232738,5.366859351,0.264245252,793,3001,0.187919955,0.340570548,17.17006166,22,12813,,,112.6421529,73,64807,88.29346664,141.6305957,,,,,,,,,,,,,119.0038676,92.41115968,150.8657587,,,,8.6,,,,,1,,,,,0.101,505,5000,0.071245391,0.130754609,0.078243105,0.049712036,0.106774175,0.019,0.005571408,0.032428592,0.008,0,0.016316467,0.827344932,4375,5288,0.801594957,0.853094907,,,,,,,,,,,,,0.844693702,0.795184791,0.894202612,0.431,,5288,0.357948972,0.504051028,71.94885,,,70.32814813,73.56955187,,,,,,,,,,,,,71.19051399,69.42448542,72.95654256,,,,614.6434372,292,35874,540.4599951,688.8268792,,,,,,,,,,,,,635.926519,555.8950891,715.9579489,,,,76.22532205,10,13119,36.55300477,140.1810812,,,,,,,,,,,,,92.94544103,44.57095173,170.9299753,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.152,,,0.132,0.175,0.202,,,0.175,0.23,0.117,,,0.1,0.136,,,,,,0.149,1930,,,,0.105930799,1442.883415,13621,,,,,,,,,,,,,,,,,,,,,,,,,,0.404,,,0.386,0.419,0.103806228,750,7225,0.085933888,0.121678569,0.064713458,201,3106,0.044458139,0.084968777,0.001493006,19,12726,,,669.7894737,0.875,158.375,181,,,,,,,,2.96090799,,,,,,,,2.620080184,3.070571521,3.00994931,,,,,,,,2.693140694,3.104613642,0.136554943,,,,,-1732.348,,,,,0.720050817,36274,50377,0.620404527,0.819697107,56052,,,50728.42553,61375.57447,,,,,,,62971,50664.10638,75277.89362,65446,58608.04255,72283.95745,53214,47151.70213,59276.29787,,,,,,0.58907913,1273,2161,,,50.46932245,,,,,0.228163134,,56052,,,4.932182491,4,811,,,,,,,,,,,,,,,,,,,,,,,,,,30.35969375,19,64807,17.99307861,47.98140498,29.31782061,,,,,,,,,,,,,33.08461759,19.27300895,52.97167772,,,,26.23173423,17,64807,15.28095186,41.9995476,,,,,,,,,,,,,29.75096691,17.33103458,47.63418004,,,,26.28898163,24,91293,16.84384658,39.11592082,,,,,,,,,,,,,27.28242268,17.09774904,41.30591581,,,,12.85714286,,1400,,,9,9,0.619865494,5991,9665,,,0.62,,,,,1.163660681,,,,,0.716746213,3454,4819,0.670747738,0.762744688,0.082182628,369,4490,0.0504956,0.113869656,0.792073044,3817,4819,0.757354768,0.826791321,12726,,,,,0.234323432,2982,12726,,,0.188040233,2393,12726,,,0.038189533,486,12726,,,0.00440044,56,12726,,,0.006757819,86,12726,,,0.003693227,47,12726,,,0.059720258,760,12726,,,0.878595002,11181,12726,,,0.015285996,186,12168,0.001934515,0.028637477,0.494813767,6297,12726,,,1,13017,13017,, -21,235,21235,KY,Whitley County,2024,1,14782.56742,937,102371,13432.92989,16132.20495,0,,,,2,,,,2,,,,2,,,,2,15006.65128,13621.00009,16392.30247,,,,,2,,0.244,,,0.205,0.285,5.145281412,,,4.113120373,6.296665494,6.342224089,,,5.151043052,7.596556287,0.105842285,404,3817,0.096082693,0.115601876,0,,,,,,,,,,,,,0.106394558,0.096425365,0.116363751,,,,,,,0.258,,,0.208,0.313,0.421,,,0.343,0.499,7.1,0.024544199,0.163,,,0.322,,,0.264,0.38,0.699580519,25683,36712,,,0.145520963,,,0.11464057,0.17916655,0.263157895,10,38,0.178326492,0.352589574,465.6,172,36939,,,44.12241808,408,9247,39.8410231,48.40381306,,,,,,,,,,50,25.83572962,87.3399377,45.22263451,40.73435777,49.71091125,,,,,,,0.06724372,1981,29460,0.056520316,0.077967125,0.000866293,32,36939,,,1154.34375,0.000759363,28,36873,,,1316.892857,0.017411114,642,36873,,,57.43457944,2525,,,,,,,,,2546,0.31,,,,,,,,,0.31,0.3,,,,,,,,,0.3,0.820664366,19023,23180,0.794246171,0.84708256,0.531873199,4614,8675,0.461568337,0.602178061,0.043800345,609,13904,,,0.346,3233,,0.255446809,0.436553192,,,,,,,,,,0.183486239,0,0.420575722,0.244755245,0.192650576,0.296859913,5.752029246,92832,16139,4.484531736,7.019526756,0.212361841,1979,9319,0.154160807,0.270562876,8.392214191,31,36939,,,126.2972928,230,182110,109.974811,142.6197747,,,,,,,,,,,,,129.0500198,112.1874839,145.9125557,,,,8,,,,,1,,,,,0.142294048,1805,12685,0.110352074,0.174236022,0.095631263,0.068397794,0.122864731,0.033898305,0.016599182,0.051197428,0.017343319,0.003692586,0.030994052,0.761600123,9881,12974,0.720279679,0.802920568,,,,,,,,,,,,,0.767595583,0.726412842,0.808778325,0.312,,12974,0.259116124,0.364883877,69.95359019,,,69.07621751,70.83096287,,,,,,,,,,,,,69.70585692,68.81635068,70.59536316,,,,764.7775096,937,102371,713.9834377,815.5715815,,,,,,,,,,,,,776.477923,724.4819478,828.4738981,,,,59.43324458,25,42064,38.46206221,87.73519327,,,,,,,,,,,,,60.5999394,38.82752463,90.16790626,,,,5.473025801,21,3837,3.387889232,8.366101312,,,,,,,,,,,,,5.385029618,3.28931599,8.316741492,,,,,,,0.159,,,0.136,0.184,0.211,,,0.183,0.242,0.12,,,0.102,0.139,26.6,8,30045,,,0.163,5970,,,,0.024544199,874.6816226,35637,,,35.56641801,39,109654,25.29120004,48.62046425,,,,,,,,,,,,,36.23741227,25.64374966,49.73867955,,,,0.39,,,0.369,0.411,0.082947704,1667,20097,0.067458342,0.098437065,0.034007353,333,9792,0.023283949,0.044730757,0.003606975,133,36873,,,277.2406015,0.936472081,553.455,591,,,,,,,,3.358780696,,,,,,,,,3.357299085,3.151876793,,,,,,,,,3.16906338,0.042823436,,,,,-4095.82991,,,,,0.763719613,34527,45209,0.658143025,0.869296201,43604,,,38052.85106,49155.14894,,,,,,,99464,48191.82979,150736.1702,,,,44050,40093.06383,48006.93617,,,,,,0.689230769,4928,7150,,,,,,,,0.29329878,,43604,,,2.302379125,6,2606,,,11.00910217,28,254335,7.31546844,15.91121786,,,,,,,,,,,,,11.08265196,7.303537472,16.12467673,,,,22.57233811,39,182110,15.89300913,31.11299473,21.41562792,,,,,,,,,,,,,22.76523968,15.94449399,31.51668757,,,,26.3576959,48,182110,19.43408425,34.9464808,,,,,,,,,,,,,26.95711525,19.80707433,35.84724856,,,,24.37729766,62,254335,18.68993433,31.25059543,,,,,,,,,,,,,25.03858405,19.15253282,32.16310869,,,,24.1025641,,3900,,,55,39,0.571476448,15347,26855,,,0.591,,,,,36.37368313,,,,,0.666717651,8718,13076,0.632610603,0.700824698,0.130878187,1617,12355,0.09720847,0.164547904,0.784949526,10264,13076,0.748816789,0.821082262,36873,,,,,0.257586852,9498,36873,,,0.16046972,5917,36873,,,0.008976758,331,36873,,,0.003254414,120,36873,,,0.00477314,176,36873,,,0.000515282,19,36873,,,0.017600955,649,36873,,,0.953217802,35148,36873,,,0.000763314,26,34062,0,0.004420357,0.503729016,18574,36873,,,0.636603835,23371,36712,, -21,237,21237,KY,Wolfe County,2024,1,21909.43234,240,19144,17772.69142,26046.17326,0,,,,2,,,,2,,,,2,,,,2,22245.02685,18009.35874,26480.69496,,,,,2,,0.343,,,0.295,0.392,6.449538058,,,5.309679221,7.67695528,6.663307915,,,5.395282968,8.055040549,0.085526316,52,608,0.0632963,0.107756332,0,,,,,,,,,,,,,0.086378738,0.063937627,0.108819848,,,,,,,0.347,,,0.29,0.404,0.432,,,0.351,0.514,5.4,0.026930814,0.24,,,0.415,,,0.354,0.476,0.316366961,2076,6562,,,0.118251221,,,0.091751622,0.147616197,0.136363636,3,22,0.044872665,0.263216149,338.1,22,6507,,,45.20917679,67,1482,35.03649104,57.41405643,,,,,,,,,,,,,46.82040531,36.28517102,59.4602597,,,,,,,0.083684412,437,5222,0.070578029,0.096790795,0.000307361,2,6507,,,3253.5,0.00015625,1,6400,,,6400,0.0021875,14,6400,,,457.1428571,3834,,,,,,,,,3844,0.25,,,,,,,,,0.25,0.29,,,,,,,,,0.29,0.635816236,2851,4484,0.563773013,0.707859458,0.322743682,447,1385,,,0.055604982,125,2248,,,0.428,593,,0.27906383,0.57693617,,,,,,,,,,,,,0.404958678,0.297209631,0.512707725,4.55025004,56414,12398,3.510469265,5.590030816,0.317204301,472,1488,0.089445099,0.544963503,0,0,6507,,,178.9213598,63,35211,137.4880855,228.9181429,,,,,,,,,,,,,181.31836,139.0157469,232.4419544,,,,7.6,,,,,0,,,,,0.172240803,515,2990,0.105532364,0.238949241,0.08934592,0.037653076,0.141038765,0.068561873,0.00243316,0.134690586,0.066889632,0.012500967,0.121278297,0.741528239,1116,1505,0.596767456,0.886289023,,,,,,,,,,,,,0.782988871,0.69802377,0.867953973,0.433,,1505,0.277329282,0.588670718,65.84540032,,,63.5629769,68.12782374,,,,,,,,,,,,,65.49170389,63.17706311,67.80634467,,,,945.2192023,240,19144,816.4376632,1074.000741,,,,,,,,,,,,,959.9203126,828.7366788,1091.103946,,,,143.9055979,10,6949,69.00832776,264.6475182,,,,,,,,,,,,,150.579732,72.20883446,276.9214884,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.211,,,0.182,0.242,0.247,,,0.216,0.28,0.152,,,0.132,0.175,,,,,,0.24,1600,,,,0.026930814,198.0761384,7355,,,81.84882041,17,20770,47.67995412,131.0478903,,,,,,,,,,,,,84.38399682,49.1567878,135.1069533,,,,0.424,,,0.406,0.441,0.098039216,370,3774,0.080166875,0.115911556,0.047028086,72,1531,0.032730214,0.061325959,0.00203125,13,6400,,,492.3076923,0.975,96.525,99,,,,,,,,3.149623868,,,,,,,,,3.126807128,2.536073646,,,,,,,,,2.494184539,,,,,,-11783.39,,,,,0.877570893,29740,33889,0.43818694,1.316954847,37718,,,32041.74468,43394.25532,,,,,,,,,,,,,28963,23917.04255,34008.95745,,,,,,0.779232112,893,1146,,,,,,,,0.33906888,,37718,,,2.457002457,1,407,,,,,,,,,,,,,,,,,,,,,,,,,,34.45498769,11,35211,16.52250585,63.3639491,31.24023743,,,,,,,,,,,,,35.21691402,16.88787914,64.76515875,,,,,,,,,,,,,,,,,,,,,,,,,,,44.32892059,22,49629,27.78069853,67.1145185,,,,,,,,,,,,,45.57979572,28.56461531,69.00835848,,,,,,800,,,-888,-888,0.540653358,2979,5510,,,0.399,,,,,5.814043001,,,,,0.681963288,1709,2506,0.593864196,0.770062381,0.06830717,161,2357,0.018806199,0.117808142,0.720271349,1805,2506,0.630951139,0.809591559,6400,,,,,0.22375,1432,6400,,,0.2034375,1302,6400,,,0.005,32,6400,,,0.00546875,35,6400,,,0.0021875,14,6400,,,0,0,6400,,,0.0140625,90,6400,,,0.9628125,6162,6400,,,0,0,6161,,,0.50640625,3241,6400,,,1,6562,6562,, -21,239,21239,KY,Woodford County,2024,1,10058.52055,443,74616,8599.293264,11517.74784,0,,,,2,,,,2,18735.11124,10708.73485,30424.6469,1,,,,2,9522.278012,8034.52863,11010.0274,,,,,2,,0.159,,,0.131,0.191,3.834086956,,,2.977499909,4.769939372,4.999838326,,,3.933299761,6.112622756,0.075821845,143,1886,0.063874807,0.087768883,0,,,,,,,,,,,,,0.079640334,0.066192353,0.093088315,,,,,,,0.159,,,0.121,0.203,0.36,,,0.283,0.441,7.9,0.120777808,0.08,,,0.236,,,0.192,0.292,0.844665253,22697,26871,,,0.153206963,,,0.12119006,0.190468127,0.285714286,10,35,0.196703372,0.377807478,277,75,27075,,,13.06687164,85,6505,10.43735296,16.15738913,,,,,,,,,,25.60455192,15.1748802,40.46623082,10.95100865,8.294187005,14.1883019,,,,,,,0.063030591,1329,21085,0.053498676,0.072562505,0.000775623,21,27075,,,1289.285714,0.000480378,13,27062,,,2081.692308,0.00118247,32,27062,,,845.6875,2453,,,,,,,4114,,2272,0.45,,,,,,,0.48,,0.46,0.54,,,,,,,0.48,0.42,0.55,0.912104981,17029,18670,0.892534493,0.931675469,0.69961532,4183,5979,0.635877454,0.763353187,0.029585799,445,15041,,,0.143,804,,0.101297872,0.184702128,,,,,,,,,,,,,0.088228774,0.045703442,0.130754106,3.975606999,140653,35379,3.585130263,4.366083734,0.232991453,1363,5850,0.169591963,0.296390943,8.864265928,24,27075,,,100.3933321,134,133475,83.39491266,117.3917515,,,,,,,158.6042823,76.05691826,291.6789222,,,,104.2807237,85.62253484,122.9389126,,,,8.7,,,,,0,,,,,0.1125,1170,10400,0.087680926,0.137319074,0.090232108,0.065929759,0.114534458,0.017211539,0.003330969,0.031092108,0.004807692,0.00010618,0.009509205,0.805834564,10911,13540,0.776685512,0.834983616,,,,,,,0.798279159,0.652580537,0.94397778,,,,0.750249529,0.706067179,0.794431879,0.347,,13540,0.292075054,0.401924946,76.50684521,,,75.30859086,77.70509955,,,,,,,,,,,,,76.81726329,75.5971549,78.03737169,,,,438.4547758,443,74616,394.335674,482.5738776,,,,,,,736.5137914,493.2548453,1057.756661,,,,430.4874094,383.8248399,477.1499789,,,,45.93301435,12,26125,23.73425879,80.23573224,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.111,,,0.094,0.132,0.164,,,0.139,0.191,0.088,,,0.074,0.104,117.5,27,22977,,,0.08,2150,,,,0.120777808,3012.077765,24939,,,44.67942513,36,80574,31.29292007,61.85515736,,,,,,,,,,,,,46.05244222,31.49983639,65.01230763,,,,0.357,,,0.336,0.377,0.070053686,1070,15274,0.056947303,0.083160069,0.045647906,279,6112,0.030158544,0.061137268,0.000812948,22,27062,,,1230.090909,0.97,312.34,322,,,,,,,,3.186683792,,,,,,,,2.689045777,3.352542259,3.1046936,,,,,,,,2.514337742,3.275264097,0.020496544,,,,,2633.27,,,,,0.774017879,45198,58394,0.687998976,0.860036781,76633,,,66840.14894,86425.85106,,,,181078,123725.6596,238430.3404,55000,33185.02128,76814.97872,,,,80974,74016.89362,87931.10638,,,,,,0.408224674,1628,3988,,,38.82389752,,,,,0.189970378,,76633,,,8.5995086,14,1628,,,,,,,,,,,,,,,,,,,,,,,,,,18.09722238,23,133475,11.20246589,27.66352679,17.23169133,,,,,,,,,,,,,18.8597228,11.35478512,29.45179334,,,,13.48567147,18,133475,7.992463593,21.31317495,,,,,,,,,,,,,14.77310253,8.605876627,23.65316824,,,,15.64253042,29,185392,10.47604812,22.46528299,,,,,,,,,,,,,16.26494342,10.62480105,23.83191062,,,,15.55555556,,2700,,,19,23,0.777857326,15211,19555,,,0.728,,,,,40.7701882,,,,,0.71809778,7535,10493,0.68314206,0.753053499,0.080557238,798,9906,0.055462206,0.10565227,0.888020585,9318,10493,0.864564822,0.911476348,27062,,,,,0.211883822,5734,27062,,,0.211514301,5724,27062,,,0.044859951,1214,27062,,,0.002956175,80,27062,,,0.008018624,217,27062,,,0.001810657,49,27062,,,0.066033553,1787,27062,,,0.863313872,23363,27062,,,0.018253088,461,25256,0.007227498,0.029278678,0.514670017,13928,27062,,,0.372446132,10008,26871,, -22,000,22000,LA,Louisiana,2024,,11463.59674,85901,13023802,11351.89532,11575.29816,0,6944.805338,5798.266356,8091.344319,,4730.517417,4224.524726,5236.510107,,15857.09025,15628.40214,16085.77836,,6539.20559,6183.248849,6895.162331,,9800.665693,9665.289255,9936.042132,,7588.538532,3788.171094,13577.9916,1,,0.193,,,0.18,0.208,4.176226252,,,3.85464724,4.497805263,5.747440797,,,5.372680176,6.122201418,0.109335241,45245,413819,0.108384443,0.110286038,0,0.093258997,0.080427435,0.106090558,0.09499619,0.088519745,0.101472635,0.161013947,0.159168829,0.162859066,0.077405503,0.074621575,0.080189432,0.078071756,0.0769254,0.079218111,0.061320755,0.029024624,0.093616885,0.104770992,0.096478635,0.11306335,0.201,,,0.184,0.218,0.387,,,0.367,0.407,4.8,0.106627643,0.148,,,0.283,,,0.266,0.301,0.751061079,3498260,4657757,,,0.200163303,,,0.183545391,0.217884258,0.312177122,1269,4065,0.304525709,0.319850811,730.1,33759,4624047,,,27.00263942,27561,1020678,26.683842,27.32143685,24.65496449,21.09249182,28.21743716,3.368959108,2.558191896,4.355160882,34.87878375,34.29158697,35.46598052,51.42998289,49.56294482,53.29702095,19.29184668,18.91653087,19.66716248,34.94623656,18.60739917,59.75912881,27.54377271,25.4534344,29.63411102,0.091500105,339532,3710728,0.086734147,0.096266062,0.000694197,3210,4624047,,,1440.513084,0.000591037,2713,4590241,,,1691.942868,0.003390236,15562,4590241,,,294.9647218,3575,,,,,5164,2137,4860,2836,3207,0.43,,,,,0.41,0.33,0.42,0.3,0.44,0.4,,,,,0.28,0.45,0.32,0.31,0.42,0.867242993,2706792,3121146,0.864811451,0.869674536,0.592995833,733218,1236464,0.585566079,0.600425588,0.036564529,76355,2088226,,,0.249,261311,,0.238276596,0.259723404,0.2305026,0.168795103,0.292210096,0.119368941,0.091564333,0.14717355,0.420295737,0.410362652,0.430228822,0.308762726,0.288560504,0.328964947,0.136647653,0.129958693,0.143336613,5.66695744,123432,21781,5.581358438,5.752556442,0.346300492,374204,1080576,0.339489884,0.353111099,9.37490471,4335,4624047,,,105.513301,24545,23262470,104.1932772,106.8333248,56.29735601,44.96832844,69.61255254,42.52242037,36.25790593,48.78693481,115.245435,112.8178692,117.6730008,62.55563843,58.16553016,66.9457467,108.5251814,106.7723337,110.2780291,,,,8.6,,,,,0.78125,,,,,0.152712256,267545,1751955,0.149847038,0.155577473,0.129968353,0.127060633,0.132876074,0.022711771,0.021371674,0.024051867,0.009306746,0.008320178,0.010293314,0.802745394,1601693,1995269,0.799009036,0.806481753,0.684054854,0.666068545,0.702041162,0.713822534,0.687609627,0.740035441,0.780690681,0.773099415,0.788281947,0.698867918,0.683928442,0.713807395,0.827563705,0.824827434,0.830299976,0.341,,1995269,0.33553991,0.34646009,73.97272844,,,73.88683615,74.05862072,91.44133264,87.20826906,95.67439622,84.38952925,83.39947699,85.3795815,70.27226984,70.11239746,70.43214222,83.85519947,83.17575644,84.53464251,75.2278904,75.12228171,75.33349909,83.37031199,70.69676975,96.04385423,535.7164831,85901,13023802,532.002504,539.4304622,306.525283,270.8029441,342.2476219,240.261086,221.500962,259.0212099,721.137772,713.273159,729.0023849,279.6997719,266.5050355,292.8945084,476.4873088,472.0310126,480.943605,426.7858697,270.5456313,640.3883545,76.33328845,3668,4805243,73.86295613,78.80362077,49.58677686,27.75334259,81.78584751,31.93908578,20.66929229,47.14839116,115.9524135,110.9194097,120.9854172,56.89350106,49.0084641,64.77853801,55.48650568,52.52660893,58.44640244,,,,7.579184717,3200,422209,7.316579364,7.841790069,,,,3.591331269,2.405170915,5.157750766,11.77917411,11.24080511,12.31754312,5.365213588,4.589977153,6.140450023,5.11864046,4.816969758,5.420311161,,,,6.43776824,4.431463436,9.041020146,0.1312001,,,0.118588632,0.144932218,0.18564836,,,0.17053663,0.201773437,0.124,,,0.112,0.136,559,21552,3855257,,,0.148,683110,,,,0.106627643,483382.771,4533372,,,40.42201271,5626,13918159,39.36574466,41.47828076,27.55762299,17.83384059,40.68048777,11.20919154,7.448426372,16.20040271,36.59154225,34.82486107,38.35822342,18.99876508,15.89563345,22.10189671,46.50152919,45.01574341,47.98731497,,,,0.365806531,,,0.346410492,0.385647786,0.112089621,298139,2659827,0.106132174,0.118047068,0.041538199,45779,1102094,0.035580752,0.047495646,0.001345899,6178,4590241,,,742.9978958,0.83326192,38815.84,46583,,,0.095911628,23469,244694,0.089092912,0.102730345,,,,,,,,,,,,,,,,,,,,,0.255041704,,,,,-6315.192,,,,,0.715094879,42546,59497,0.703941301,0.726248456,55458,,,54517.91489,56398.08511,56544,50984.51064,62103.48936,73105,67650.3617,78559.6383,37015,36328.70213,37701.29787,58003,55515.17021,60490.82979,70652,69846.55319,71457.44681,,,,,,0.474711846,322195,678717,,,56.59262812,,,,,0.309268061,,,,,4.405286344,,,,,14.97783526,4885,32614860,14.55781249,15.39785803,4.751857977,2.278700603,8.738836005,4.464124748,2.916114497,6.540977074,36.22397068,35.07342556,37.3745158,6.645006278,5.425177033,7.864835523,4.782488695,4.472265237,5.092712153,,,,14.79541572,3473,23262470,14.29249472,15.29833672,14.92962699,11.07908967,6.200882387,18.27327356,7.682234138,5.320170464,10.7351522,6.976148074,6.366279421,7.586016726,8.744008411,7.053704589,10.43431223,19.63422846,18.87691913,20.3915378,,,,23.681922,5509,23262470,23.05655259,24.3072914,12.58411487,7.576459204,19.6516542,6.726710567,4.46985032,9.721969663,40.19880037,38.76507592,41.63252483,8.982348082,7.318793937,10.64590223,16.99436835,16.30073263,17.68800407,,,,17.54721621,5723,32614860,17.09259214,18.00184028,9.503715953,5.805116604,14.67771849,10.30182634,7.861378788,13.26049257,19.37716079,18.53566741,20.21865416,14.68896125,12.87533878,16.50258371,17.44325011,16.85078694,18.03571329,,,,,,,,,,,0.61941826,2148062,3467870,,,,,,,,75.60037036,,,,,0.671646281,1185633,1765264,0.666729903,0.676562658,0.14553215,243584,1673747,0.142539763,0.148524538,0.829871906,1464943,1765264,0.82586815,0.833875662,4590241,,,,,0.23129352,1061693,4590241,,,0.169939008,780061,4590241,,,0.321928849,1477731,4590241,,,0.008299346,38096,4590241,,,0.019239513,88314,4590241,,,0.000657918,3020,4590241,,,0.058000658,266237,4590241,,,0.577938936,2652879,4590241,,,0.014131966,61484,4350704,0.013437386,0.014826545,0.510402613,2342871,4590241,,,0.284583331,1325520,4657757,, -22,001,22001,LA,Acadia Parish,2024,1,13531.46781,1360,169416,12481.4103,14581.52533,0,,,,2,,,,2,21590.1819,18504.71425,24675.64954,,,,,2,12007.53958,10882.36004,13132.71913,,,,,2,,0.224,,,0.193,0.257,4.733842378,,,3.841054694,5.75964309,6.48488367,,,5.392049877,7.686084245,0.092434155,551,5961,0.085081371,0.09978694,0,,,,,,,0.171212121,0.150890514,0.191533729,0.085858586,0.046835462,0.12488171,0.068711091,0.061182443,0.076239739,,,,,,,0.254,,,0.208,0.299,0.395,,,0.326,0.468,7.1,0.03185676,0.16,,,0.333,,,0.283,0.389,0.457395443,26335,57576,,,0.186539103,,,0.149559141,0.227528113,0.267441861,23,86,0.211953196,0.324936637,659.8,378,57288,,,34.78069854,475,13657,31.65283667,37.90856042,,,,,,,59.19117647,50.04793677,68.33441617,34.48275862,18.36061669,58.96656742,27.42845826,24.19834625,30.65857028,,,,62.66318538,40.14948526,93.23785273,0.098053261,4654,47464,0.083755389,0.112351134,0.000366569,21,57288,,,2728,0.000440575,25,56744,,,2269.76,0.001251234,71,56744,,,799.2112676,3536,,,,,,,5414,,3253,0.49,,,,,,,0.41,,0.5,0.45,,,,,,0.38,0.4,0.21,0.46,0.801071738,30496,38069,0.776150843,0.825992633,0.423918196,6260,14767,0.371069348,0.476767044,0.036503362,874,23943,,,0.326,4646,,0.237829787,0.414170213,,,,,,,0.541262136,0.44119613,0.641328142,0.41955836,0.279958338,0.559158382,0.280523951,0.231483727,0.329564174,5.905254141,103401,17510,4.86009493,6.950413351,0.320104754,4767,14892,0.257030021,0.383179488,7.855048178,45,57288,,,99.33634174,304,306031,88.16957507,110.5031084,,,,,,,123.4158562,95.64559336,156.7337747,,,,97.80510111,85.19229883,110.4179034,,,,8.6,,,,,1,,,,,0.117477876,2655,22600,0.094161355,0.140794397,0.085791488,0.064233308,0.107349669,0.025,0.014833046,0.035166954,0.011061947,0.002612878,0.019511015,0.839336662,18828,22432,0.81402145,0.864651874,,,,,,,0.759656652,0.667854714,0.85145859,,,,0.830996622,0.784969915,0.877023328,0.372,,22432,0.325409871,0.418590129,71.51462689,,,70.78817237,72.24108142,,,,,,,65.21225673,63.45917964,66.96533383,,,,72.75410772,71.95331726,73.55489818,,,,652.0563003,1360,169416,616.0503826,688.0622181,,,,,,,1067.069137,951.9404649,1182.197809,,,,583.3342276,545.258806,621.4096492,,,,79.25791111,54,68132,59.54098217,103.4143815,,,,,,,106.5492257,59.63479282,175.7367444,,,,74.2482366,52.00255211,102.7908561,,,,5.812022584,35,6022,4.048286683,8.083116468,,,,,,,,,,,,,,,,,,,,,,0.148,,,0.127,0.169,0.211,,,0.185,0.238,0.125,,,0.108,0.145,530.8,249,46911,,,0.16,9320,,,,0.03185676,1967.887624,61773,,,35.31015001,64,181251,27.19311813,45.09027327,,,,,,,,,,,,,41.52080694,31.52848949,53.67527131,,,,0.353,,,0.338,0.367,0.12292248,4053,32972,0.102667161,0.143177799,0.043526859,662,15209,0.030420476,0.056633242,0.000511067,29,56744,,,1956.689655,0.86,462.68,538,,,0.142561372,482,3381,0.059265912,0.225856833,,,,,,,,,,,,,,,,,,,,,0.150199856,,,,,-2825.59,,,,,0.603491404,34259,56768,0.5287458,0.678237007,42981,,,37397.68085,48564.31915,,,,,,,26022,21518.17021,30525.82979,38967,26953.21277,50980.78723,50438,46209.40426,54666.59575,,,,,,0.465563268,4360,9365,,,61.49434686,,,,,0.315813964,,42981,,,3.048006096,12,3937,,,12.98541691,56,431253,9.809044385,16.86264397,,,,,,,53.34998894,38.28487316,72.37528408,,,,4.500247514,2.518754371,7.422473898,,,,17.33576782,50,306031,12.78202669,22.98471307,16.3382141,,,,,,,,,,,,,19.36494657,13.95655017,26.17578214,,,,20.91291405,64,306031,16.10549211,26.70532437,,,,,,,58.94488653,40.31825875,83.21259225,,,,13.5487586,9.267340849,19.12680456,,,,19.24624293,83,431253,15.32952506,23.85861381,,,,,,,14.31341167,7.145203533,25.61064724,,,,20.70113856,16.10672144,26.19861575,,,,,,,,,,,0.620972146,28425,45775,,,0.577,,,,,29.06304878,,,,,0.683888162,14627,21388,0.658463908,0.709312415,0.11006651,2201,19997,0.086347369,0.133785651,0.783991023,16768,21388,0.745866361,0.822115685,56744,,,,,0.255886085,14520,56744,,,0.165286198,9379,56744,,,0.172758353,9803,56744,,,0.004881573,277,56744,,,0.003718455,211,56744,,,0.000370083,21,56744,,,0.034611589,1964,56744,,,0.768257437,43594,56744,,,0.004348392,234,53813,0.000348113,0.008348671,0.510943888,28993,56744,,,0.616871613,35517,57576,, -22,003,22003,LA,Allen Parish,2024,1,12656.00996,542,69001,11144.6818,14167.33812,0,,,,2,,,,2,13024.81716,9206.316298,16843.31802,,,,,2,13017.34481,11210.13659,14824.55302,,,,,2,,0.217,,,0.187,0.248,4.473981959,,,3.598185927,5.504016544,5.634892503,,,4.494036036,6.864877195,0.083131948,172,2069,0.071235612,0.095028284,0,,,,,,,0.151428571,0.113873364,0.188983779,,,,0.0676268,0.055311134,0.079942467,,,,,,,0.243,,,0.2,0.289,0.414,,,0.333,0.502,6.6,0.112436398,0.145,,,0.327,,,0.274,0.382,0.670549451,15255,22750,,,0.186791265,,,0.148793604,0.229649463,0.230769231,6,26,0.129644728,0.34280412,423.1,96,22687,,,43.30543933,207,4780,37.40596457,49.20491409,,,,,,,36.72612802,25.58109381,51.07715359,,,,45.80378251,38.59284775,53.01471726,,,,,,,0.087855462,1381,15719,0.074749079,0.100961845,0.000176312,4,22687,,,5671.75,0.00031362,7,22320,,,3188.571429,0.001120072,25,22320,,,892.8,4355,,,,,,,4981,,4201,0.32,,,,,,,0.23,,0.33,0.23,,,,,,,0.24,,0.22,0.796142209,12630,15864,0.760219694,0.832064723,0.395679106,2619,6619,0.327000674,0.464357537,0.041707677,339,8128,,,0.238,1204,,0.151021277,0.324978723,0.024691358,0,0.572229045,,,,0.578252033,0.445880645,0.71062342,,,,0.205389222,0.130895442,0.279883001,5.946310105,115626,19445,4.637824203,7.254796008,0.299502107,1564,5222,0.223398372,0.375605841,13.66421299,31,22687,,,111.2177949,139,124980,92.72838918,129.7072005,,,,,,,85.84612083,55.00322944,127.732223,,,,124.6105919,101.3235305,147.8976533,,,,8.5,,,,,1,,,,,0.121081746,985,8135,0.078862993,0.163300498,0.073729864,0.037441827,0.1100179,0.044253227,0.022694662,0.065811791,0.005408728,1.49569E-05,0.010802499,0.827590674,6389,7720,0.757353229,0.897828118,,,,,,,0.825436409,0.715289391,0.935583427,,,,0.843522439,0.763080635,0.923964242,0.404,,7720,0.326975949,0.481024051,71.90528909,,,70.8152877,72.99529048,,,,,,,71.46858842,68.65724836,74.27992847,,,,71.49706215,70.27162764,72.72249667,,,,652.9263361,542,69001,596.9822268,708.8704454,,,,,,,646.1041424,522.5364165,769.6718683,,,,675.9624236,608.6760978,743.2487495,,,,62.62786523,15,23951,35.05234075,103.2951395,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.14,,,0.122,0.161,0.194,,,0.168,0.222,0.126,,,0.108,0.146,1087.6,208,19124,,,0.145,3340,,,,0.112436398,2896.811356,25764,,,42.03161862,31,73754,28.55844562,59.66052757,,,,,,,,,,,,,48.20578084,31.19623966,71.16124197,,,,0.385,,,0.371,0.399,0.111255211,1201,10795,0.092191381,0.130319041,0.038215325,197,5155,0.026300431,0.050130219,0.001433692,32,22320,,,697.5,0.995,258.7,260,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.073624764,,,,,315.2109,,,,,0.629637561,35283,56037,0.47000008,0.789275042,51423,,,44845.97872,58000.02128,42159,14684.44681,69633.55319,56367,56153.7234,56580.2766,30382,25276.46809,35487.53192,43309,1961.93617,84656.06383,56424,49600.34043,63247.65957,,,,,,0.457882826,1821,3977,,,38.38755258,,,,,0.317212142,,51423,,,4.329004329,6,1386,,,,,,,,,,,,,,,,,,,,,,,,,,25.18251159,33,124980,17.22481929,35.5501926,26.40422468,,,,,,,,,,,,,28.35357201,18.34893683,41.85546553,,,,20.80332853,26,124980,13.58942488,30.48169634,,,,,,,,,,,,,23.78929482,14.72594844,36.36446416,,,,31.75557282,56,176347,23.98781844,41.23725269,,,,,,,,,,,,,35.29911993,25.64839458,47.3874209,,,,,,,,,,,0.5251606,9810,18680,,,0.463,,,,,10.90086812,,,,,0.760083814,5804,7636,0.722262065,0.797905562,0.088183181,647,7337,0.051416698,0.124949664,0.758905186,5795,7636,0.704382073,0.813428299,22320,,,,,0.229301075,5118,22320,,,0.151792115,3388,22320,,,0.2125,4743,22320,,,0.026120072,583,22320,,,0.006765233,151,22320,,,0.00062724,14,22320,,,0.032392473,723,22320,,,0.703718638,15707,22320,,,0.028546108,612,21439,0.019044547,0.038047669,0.441218638,9848,22320,,,0.705494506,16050,22750,, -22,005,22005,LA,Ascension Parish,2024,1,8442.906384,1568,366046,7865.119328,9020.693441,0,,,,2,,,,2,11857.58008,10445.9273,13269.23287,,5954.782032,4123.859664,8321.211027,,7586.4202,6926.750415,8246.089985,,,,,2,,0.156,,,0.132,0.182,3.474370497,,,2.76583378,4.234439578,4.987008879,,,4.123105753,5.894621716,0.091893721,1086,11818,0.086685429,0.097102014,0,,,,0.090909091,0.049704787,0.132113395,0.148075025,0.135447091,0.160702959,0.092267135,0.075452499,0.109081772,0.068172485,0.062392612,0.073952358,,,,0.102564103,0.047589443,0.157538763,0.167,,,0.133,0.203,0.363,,,0.305,0.426,8,0.099343578,0.088,,,0.243,,,0.201,0.288,0.698118577,88312,126500,,,0.200106715,,,0.163475063,0.237005635,0.354330709,45,127,0.310021853,0.398485688,638.8,820,128369,,,17.36947451,512,29477,15.86492054,18.87402847,,,,,,,24.12198475,20.71876138,27.52520813,45.14229637,36.3910622,55.36301914,11.54369725,9.989761461,13.09763304,,,,18.27242525,9.121528849,32.69441614,0.070123479,7695,109735,0.060591564,0.079655394,0.000444032,57,128369,,,2252.087719,0.000421592,55,130458,,,2371.963636,0.001203453,157,130458,,,830.9426752,2676,,,,,,,2093,4279,2607,0.45,,,,,,0.36,0.39,0.21,0.47,0.45,,,,,,0.46,0.39,0.3,0.47,0.888007203,73971,83300,0.873128495,0.902885911,0.68266454,24821,36359,0.632003525,0.733325555,0.029515798,1986,67286,,,0.123,4133,,0.078914894,0.167085106,,,,,,,0.289926586,0.220710643,0.359142529,0.417625899,0.339557164,0.495694635,0.050347136,0.026655521,0.07403875,4.467924923,170916,38254,4.050649582,4.885200264,0.249076281,8359,33560,0.211693522,0.286459041,4.907726943,63,128369,,,85.06822884,537,631258,77.87313737,92.2633203,,,,,,,92.89301148,77.39415808,108.3918649,39.83323154,22.29435731,65.69885777,89.79859792,80.80514967,98.79204618,,,,9.6,,,,,1,,,,,0.103792869,4570,44030,0.086314042,0.121271695,0.085485926,0.068760201,0.102211652,0.018396548,0.011645915,0.025147181,0.00431524,0.0017386,0.006891879,0.832729976,51526,61876,0.810363186,0.855096766,,,,,,,0.808532856,0.757674221,0.859391491,0.634892086,0.511861605,0.757922568,0.839095315,0.804539207,0.873651423,0.49,,61876,0.450160758,0.529839242,77.63223515,,,77.05731419,78.20715612,,,,82.46820309,78.31099758,86.62540861,73.70127418,72.50681732,74.89573105,85.59130312,80.81815807,90.36444816,78.44050022,77.77398729,79.10701314,,,,384.0202445,1568,366046,364.7841251,403.256364,,,,,,,518.4502335,470.9749137,565.9255534,212.6043638,148.0867292,295.6812038,357.5939199,335.5142899,379.67355,,,,62.67969314,92,146778,50.52867921,76.87107945,,,,,,,108.2594001,77.68881461,146.8661005,,,,45.07228055,32.3446467,61.14563796,,,,5.423728814,64,11800,4.17693208,6.925980611,,,,,,,9.339559707,6.206069598,13.49826416,,,,3.918389407,2.624206883,5.627460808,,,,,,,0.109,,,0.093,0.127,0.168,,,0.146,0.192,0.103,,,0.088,0.118,270.6,283,104564,,,0.088,11010,,,,0.099343578,10651.12176,107215,,,38.8386969,149,383638,32.60238845,45.07500535,,,,,,,32.79297793,22.1252845,46.81401506,,,,45.11687605,36.90644236,53.32730973,,,,0.353,,,0.338,0.367,0.085762956,6545,76315,0.072656573,0.098869339,0.036377134,1274,35022,0.02565373,0.047100539,0.00076653,100,130458,,,1304.58,0.9,1507.5,1675,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.129321438,,,,,271.3818,,,,,0.613148348,50028,81592,0.560495468,0.665801228,81284,,,74166.04255,88401.95745,71492,68218.97872,74765.02128,106750,75575.87234,137924.1277,65214,55019.61702,75408.38298,80551,49490.06383,111611.9362,101957,94345.76596,109568.234,,,,,,0.342923997,7914,23078,,,41.89708108,,,,,0.209512327,,81284,,,5.361930295,46,8579,,,6.878367534,60,872300,5.248919059,8.85382247,,,,,,,21.63171997,15.71764084,29.03957439,,,,2.361498134,1.291053005,3.962192604,,,,12.21404718,75,631258,9.590654086,15.33361774,11.88103755,,,,,,,,,,,,,15.57741899,11.97011646,19.93028574,,,,13.62358972,86,631258,10.89711326,16.82502248,,,,,,,24.90609728,17.53619096,34.32977433,,,,11.01967129,8.096839973,14.65382672,,,,16.96663992,148,872300,14.23312747,19.70015237,,,,,,,23.10660997,16.97786788,30.72689282,,,,16.02445163,12.96473829,19.58906114,,,,,,,,,,,0.70024156,62325,89005,,,0.651,,,,,34.25430289,,,,,0.832688966,38337,46040,0.812865627,0.852512305,0.08845446,3941,44554,0.069842804,0.107066116,0.902497828,41551,46040,0.888247026,0.91674863,130458,,,,,0.259938064,33911,130458,,,0.132525411,17289,130458,,,0.24752794,32292,130458,,,0.004982447,650,130458,,,0.01457174,1901,130458,,,0.000812522,106,130458,,,0.064909779,8468,130458,,,0.656924068,85701,130458,,,0.015685711,1857,118388,0.011851184,0.019520239,0.505879287,65996,130458,,,0.108363636,13708,126500,, -22,007,22007,LA,Assumption Parish,2024,1,11779.13331,434,59114,10051.9153,13506.35131,0,,,,2,,,,2,17735.40783,13967.22205,21503.59362,,,,,2,9558.426783,7596.964042,11519.88952,,,,,2,,0.228,,,0.197,0.262,4.781141572,,,3.863919585,5.810772506,6.351926735,,,5.20596981,7.600287572,0.113510179,184,1621,0.098067635,0.128952723,0,,,,,,,0.148450245,0.120303945,0.176596544,,,,0.096112311,0.077127891,0.115096731,,,,,,,0.253,,,0.211,0.299,0.389,,,0.311,0.467,8,0.005825324,0.131,,,0.344,,,0.289,0.401,0.356148106,7493,21039,,,0.162967141,,,0.1282122,0.200329429,0.266666667,8,30,0.170636514,0.368067779,729.9,151,20689,,,24.35174746,108,4435,19.7589814,28.94451353,,,,,,,25.8302583,18.61617819,34.9150054,,,,22.09072978,16.68709988,28.6866501,,,,,,,0.107164841,1741,16246,0.09048399,0.123845692,0.000145005,3,20689,,,6896.333333,9.70685E-05,2,20604,,,10302,0.000291206,6,20604,,,3434,4068,,,,,,,5705,,3505,0.45,,,,,,,0.42,,0.47,0.47,,,,,,,0.33,,0.51,0.79070554,11689,14783,0.752967984,0.828443096,0.435795216,2077,4766,0.340177265,0.531413167,0.045886076,406,8848,,,0.267,1107,,0.166914894,0.367085106,,,,,,,0.106133701,0.015837546,0.196429856,0.157894737,0,0.386124014,0.170866142,0.085651476,0.256080808,5.809035767,111092,19124,4.796343313,6.82172822,0.391117154,1726,4413,0.287090733,0.495143575,5.800183673,12,20689,,,90.80319554,99,109027,73.80035666,110.5496324,,,,,,,103.1604614,71.01091492,144.8756425,,,,87.02487227,66.72147056,111.5619587,,,,8.6,,,,,0,,,,,0.108501119,970,8940,0.07345067,0.143551567,0.084302326,0.05261259,0.115992061,0.017337808,0.003874692,0.030800923,0.013422819,0.002315035,0.024530602,0.815691903,6820,8361,0.781088644,0.850295162,,,,,,,,,,,,,0.70468302,0.605223498,0.804142542,0.508,,8361,0.416790731,0.599209269,74.28819883,,,72.95481878,75.62157889,,,,,,,68.16490327,65.77697242,70.55283412,,,,76.78968235,75.18882899,78.3905357,,,,534.8976707,434,59114,481.3280223,588.467319,,,,,,,829.3508452,703.2096201,955.4920703,,,,430.8399812,371.9821381,489.6978243,,,,75.05629222,15,19985,42.00843699,123.7939398,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.147,,,0.127,0.169,0.208,,,0.18,0.237,0.128,,,0.11,0.147,721.6,128,17738,,,0.131,2800,,,,0.005825324,136.4349215,23421,,,32.70977088,21,64201,20.24786372,50.0003594,,,,,,,,,,,,,35.77134953,20.02095279,58.99940112,,,,0.391,,,0.378,0.404,0.127575081,1542,12087,0.106128272,0.149021889,0.049486887,217,4385,0.033997525,0.064976249,0.000291206,6,20604,,,3434,0.93,199.95,215,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.185223295,,,,,-5660.51,,,,,0.669883881,40325,60197,0.39882047,0.940947292,54403,,,46696.44681,62109.55319,80583,65777.55319,95388.44681,,,,30681,20801.17021,40560.82979,133393,90818.70213,175967.2979,54239,47185.38298,61292.61702,,,,,,0.471019321,1414,3002,,,56.55666756,,,,,0.313034208,,54403,,,1.782531194,2,1122,,,7.116793044,11,154564,3.552677446,12.73390862,,,,,,,,,,,,,,,,,,,11.39149598,12,109027,5.686593751,20.38253297,11.00644794,,,,,,,,,,,,,16.65374855,7.986119755,30.62683653,,,,12.84085594,14,109027,7.02021543,21.54477434,,,,,,,,,,,,,,,,,,,23.93830387,37,154564,16.85477509,32.9957986,,,,,,,32.95761651,18.44612777,54.35857639,,,,20.75283375,12.84633118,31.72291087,,,,,,,,,,,0.650361795,11235,17275,,,0.518,,,,,14.32007625,,,,,0.829110899,6938,8368,0.788756244,0.869465553,0.081860707,630,7696,0.048993856,0.114727558,0.756333652,6329,8368,0.7056729,0.806994404,20604,,,,,0.203552708,4194,20604,,,0.204571928,4215,20604,,,0.284216657,5856,20604,,,0.009270045,191,20604,,,0.006018249,124,20604,,,0.000825083,17,20604,,,0.034750534,716,20604,,,0.657590759,13549,20604,,,0.003959304,79,19953,0,0.01079621,0.509270045,10493,20604,,,0.644992633,13570,21039,, -22,009,22009,LA,Avoyelles Parish,2024,1,13752.50075,874,110589,12422.84182,15082.15968,0,,,,2,,,,2,16258.28249,13788.85704,18727.70794,,,,,2,13002.06879,11318.43149,14685.70609,,,,,2,,0.257,,,0.22,0.292,5.020906169,,,4.069399754,6.06322856,6.187934365,,,5.041721918,7.457675699,0.118701964,417,3513,0.10800631,0.129397618,0,,,,,,,0.176201373,0.155577515,0.196825231,,,,0.081681972,0.069880519,0.093483425,,,,,,,0.275,,,0.23,0.321,0.431,,,0.351,0.512,5.8,0.115655301,0.179,,,0.362,,,0.304,0.421,0.344569572,13677,39693,,,0.163683831,,,0.129076392,0.203366553,0.205128205,8,39,0.124539557,0.295665403,614.2,241,39236,,,46.35842381,380,8197,41.69727537,51.01957226,,,,,,,58.51264628,49.30094254,67.72435002,,,,41.74265451,36.04229135,47.44301767,,,,,,,0.100228101,2944,29373,0.084738739,0.115717462,0.000280355,11,39236,,,3566.909091,0.000258058,10,38751,,,3875.1,0.001858017,72,38751,,,538.2083333,3465,,,,,,,3771,,3326,0.43,,,,,,,0.4,,0.43,0.38,,,,,,,0.3,0.36,0.39,0.779868367,20973,26893,0.752970466,0.806766269,0.483153771,4933,10210,0.415807115,0.550500427,0.041655115,601,14428,,,0.328,2950,,0.244595745,0.411404255,0.298701299,0,0.668685518,,,,0.598236776,0.487149024,0.709324528,0.198019802,0,0.416270318,0.208493502,0.146996776,0.269990228,6.672772007,97636,14632,5.542546372,7.802997642,0.442861733,4135,9337,0.376449514,0.509273952,9.175247222,36,39236,,,111.0624141,223,200788,96.48532698,125.6395012,,,,,,,111.2440796,86.03616312,141.5297451,,,,114.5404928,96.1487881,132.9321974,,,,8.4,,,,,0,,,,,0.150509366,2290,15215,0.116545727,0.184473005,0.122733424,0.093567511,0.151899336,0.019717384,0.008642709,0.030792059,0.017417023,0.003825964,0.031008082,0.844169247,12270,14535,0.805198153,0.883140341,,,,,,,0.756435644,0.64758159,0.865289697,,,,0.878421125,0.835663438,0.921178813,0.434,,14535,0.377848101,0.490151899,71.64636417,,,70.74036244,72.55236589,,,,,,,69.01829016,67.45365808,70.58292224,,,,72.27612148,71.12623816,73.42600481,,,,636.5798353,874,110589,592.639431,680.5202396,,,,,,,807.7331893,711.4556781,904.0107004,,,,587.9480284,536.5081249,639.3879318,,,,77.84751618,32,41106,53.24764344,109.8974653,,,,,,,,,,,,,90.7141679,56.85008606,137.3423404,,,,7.529280535,27,3586,4.961843316,10.95470788,,,,,,,,,,,,,,,,,,,,,,0.16,,,0.138,0.181,0.214,,,0.185,0.242,0.142,,,0.122,0.163,768.4,251,32666,,,0.179,7120,,,,0.115655301,4865.965458,42073,,,35.19179528,42,119346,25.36315062,47.56908382,,,,,,,39.6611802,21.68313628,66.54472116,,,,34.97318722,23.04755075,50.88415125,,,,0.387,,,0.373,0.4,0.12716848,2595,20406,0.105721671,0.148615288,0.040246363,379,9417,0.02713998,0.053352746,0.000929008,36,38751,,,1076.416667,0.95,340.1,358,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.081044642,,,,,-12114.03,,,,,0.813723156,34178,42002,0.666820455,0.960625857,41587,,,35997.7234,47176.2766,25150,9769.06383,40530.93617,,,,21925,19078.53192,24771.46809,,,,49350,43249.57447,55450.42553,,,,,,0.541673682,3217,5939,,,41.48801465,,,,,0.33731695,,41587,,,7.375776398,19,2576,,,11.66044776,33,283008,8.026515707,16.37560397,,,,,,,20.36171997,11.86145223,32.60108614,,,,8.164420544,4.569564201,13.46597008,,,,21.05675525,43,200788,15.11069111,28.56586614,21.41562245,,,,,,,,,,,,,28.23578939,19.66726187,39.26914786,,,,26.39599976,53,200788,19.77241515,34.52661759,,,,,,,28.65377809,16.69188166,45.87747445,,,,26.13675674,18.10046384,36.52349779,,,,21.55416101,61,283008,16.48722529,27.68722153,,,,,,,20.36171997,11.86145223,32.60108614,,,,21.22749341,15.09482294,29.0186823,,,,,,,,,,,0.561337445,17292,30805,,,0.497,,,,,8.443954407,,,,,0.702123288,10251,14600,0.674373797,0.729872779,0.152151102,2030,13342,0.115128397,0.189173806,0.741712329,10829,14600,0.71161405,0.771810607,38751,,,,,0.235426183,9123,38751,,,0.182679157,7079,38751,,,0.289515109,11219,38751,,,0.012877087,499,38751,,,0.005315992,206,38751,,,0.000954814,37,38751,,,0.024334856,943,38751,,,0.648602617,25134,38751,,,0.00524906,194,36959,6.56409E-05,0.010432479,0.494438853,19160,38751,,,0.831657975,33011,39693,, -22,011,22011,LA,Beauregard Parish,2024,1,10633.95682,695,104911,9489.083873,11778.82976,0,,,,2,,,,2,16096.80859,11725.31554,20468.30165,,,,,2,9899.49507,8706.501425,11092.48872,,,,,2,,0.187,,,0.16,0.218,4.110303557,,,3.266487377,5.109006234,5.745548471,,,4.606686955,6.936150097,0.09165955,322,3513,0.082117753,0.101201348,0,,,,,,,0.181528662,0.138893729,0.224163596,0.064102564,0.025665908,0.102539221,0.083701939,0.073689442,0.093714437,,,,,,,0.218,,,0.178,0.264,0.399,,,0.321,0.484,6,0.205971609,0.127,,,0.284,,,0.237,0.34,0.195600427,7149,36549,,,0.193737912,,,0.153882893,0.237419853,0.257142857,9,35,0.168809624,0.350986489,322.5,118,36584,,,33.40080972,264,7904,29.37168136,37.42993808,,,,,,,28.95553258,19.24074111,41.84880656,28.57142857,14.2627542,51.12217796,34.80125351,30.105452,39.49705501,,,,28.8184438,13.81956397,52.99814421,0.093104608,2768,29730,0.079998225,0.106210991,0.00043735,16,36584,,,2286.5,0.000191414,7,36570,,,5224.285714,0.00073831,27,36570,,,1354.444444,3696,,,,,,,5324,3688,3498,0.35,,,,,,,0.4,,0.35,0.34,,,,,,0.58,0.24,0.23,0.35,0.881589786,21405,24280,0.864171037,0.899008535,0.520517443,4909,9431,0.457950322,0.583084563,0.033582341,499,14859,,,0.178,1619,,0.120808511,0.235191489,,,,,,,0.416289593,0.300869761,0.531709425,,,,0.13928623,0.090821209,0.187751252,4.76798185,134500,28209,3.950094242,5.585869458,0.233158355,2132,9144,0.177783452,0.288533259,12.84714629,47,36584,,,74.67377232,139,186143,62.25962878,87.08791585,,,,,,,91.05809507,55.62065009,140.6318426,,,,74.12155936,60.3323575,87.91076122,,,,8.9,,,,,1,,,,,0.09160029,1265,13810,0.07118038,0.1120202,0.066642175,0.047573186,0.085711164,0.017378711,0.007773262,0.02698416,0.011947864,0.005273547,0.018622181,0.844334092,12242,14499,0.810239352,0.878428832,,,,,,,0.748031496,0.609116655,0.886946337,0.572289157,0.369589612,0.774988701,0.866641528,0.827859897,0.90542316,0.446,,14499,0.390025357,0.501974643,73.9753688,,,73.08865632,74.86208129,,,,,,,70.1093601,67.12663137,73.09208882,,,,74.22136999,73.28934826,75.15339172,,,,540.5770591,695,104911,499.0385465,582.1155716,,,,,,,732.6522211,588.3292246,876.9752176,,,,529.1066926,484.2074338,574.0059513,,,,56.8280088,23,40473,36.02408281,85.26991549,,,,,,,,,,,,,38.04933731,19.66064782,66.464535,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.128,,,0.111,0.148,0.189,,,0.165,0.218,0.108,,,0.093,0.127,166.7,50,29998,,,0.127,4610,,,,0.205971609,7343.711758,35654,,,19.64952395,22,111962,12.31425204,29.74961539,,,,,,,,,,,,,18.84700665,10.97907591,30.17588339,,,,0.375,,,0.36,0.39,0.11523731,2377,20627,0.09736497,0.133109651,0.044638168,425,9521,0.031531785,0.057744551,0.000628931,23,36570,,,1590,0.93,361.77,389,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.128346972,,,,,72.0166,,,,,0.484465025,36409,75153,0.451851481,0.517078569,64394,,,57391.61702,71396.38298,,,,61705,48529.51064,74880.48936,51914,45311.95745,58516.04255,91781,71684.14894,111877.8511,71716,61470.38298,81961.61702,,,,,,0.332392876,1885,5671,,,48.18112412,,,,,0.253315526,,64394,,,2.059308073,5,2428,,,7.320869874,19,259532,4.407641896,11.43244516,,,,,,,,,,,,,,,,,,,14.08106801,25,186143,9.022005971,20.95151304,13.43053459,,,,,,,,,,,,,14.29341709,8.730790489,22.07502342,,,,14.50497736,27,186143,9.558871476,21.10398051,,,,,,,,,,,,,13.35523592,8.157725059,20.6260787,,,,20.03606492,52,259532,14.96389162,26.27463347,,,,,,,,,,,,,21.13088663,15.35373458,28.36722901,,,,,,,,,,,0.587958303,16357,27820,,,0.568,,,,,25.04214026,,,,,0.822918967,11181,13587,0.797754678,0.848083255,0.063429368,819,12912,0.045417043,0.081441693,0.879590785,11951,13587,0.857898562,0.901283009,36570,,,,,0.251845775,9210,36570,,,0.161197703,5895,36570,,,0.109789445,4015,36570,,,0.012605961,461,36570,,,0.006426032,235,36570,,,0.001421931,52,36570,,,0.041536779,1519,36570,,,0.807328411,29524,36570,,,0.002052666,70,34102,0,0.005950047,0.487011211,17810,36570,,,0.729705327,26670,36549,, -22,013,22013,LA,Bienville Parish,2024,1,18006.69652,383,35101,15214.09457,20799.29847,0,,,,2,,,,2,22538.91502,17689.55595,27388.27408,,,,,2,15461.89324,12000.5491,18923.23739,,,,,2,,0.264,,,0.232,0.298,5.004804406,,,4.080773346,6.098540364,6.318505404,,,5.127953723,7.667834556,0.153916211,169,1098,0.132570837,0.175261585,0,,,,,,,0.201550388,0.166936786,0.23616399,,,,0.115027829,0.088092149,0.14196351,,,,,,,0.274,,,0.23,0.32,0.458,,,0.375,0.547,5.2,0.194992134,0.169,,,0.374,,,0.321,0.433,0.331099299,4298,12981,,,0.144667724,,,0.114718608,0.18083867,0.1875,3,16,0.067648579,0.337423465,735.8,94,12776,,,43.80883418,121,2762,36.00289645,51.6147719,,,,,,,50.96073517,38.98092445,65.46119625,,,,40.14336918,30.32386967,52.12950395,,,,,,,0.091269438,898,9839,0.075780076,0.1067588,0.000156544,2,12776,,,6388,0.000316431,4,12641,,,3160.25,0.003085199,39,12641,,,324.1282051,4106,,,,,,,4957,,3773,0.37,,,,,,,0.4,,0.36,0.35,,,,,,,0.27,,0.37,0.856766835,7812,9118,0.832338399,0.881195271,0.366889632,1097,2990,0.27711924,0.456660025,0.041539634,218,5248,,,0.368,1040,,0.259574468,0.476425532,,,,,,,0.651046025,0.581131048,0.720961002,,,,0.415068493,0.299683965,0.530453021,5.263535245,78553,14924,4.358800625,6.168269865,0.434378229,1261,2903,0.356388817,0.512367642,14.08891672,18,12776,,,87.95074758,58,65946,66.78469002,113.6967363,,,,,,,80.78434253,50.62711737,122.3084654,,,,100.2617947,70.22212838,138.8045856,,,,9.7,,,,,1,,,,,0.130657558,765,5855,0.101217612,0.160097503,0.093531469,0.064136144,0.122926793,0.037574723,0.018502544,0.056646901,0.00853971,0.001383314,0.015696106,0.845232716,3741,4426,0.789490571,0.900974861,,,,,,,0.76,0.66885073,0.85114927,,,,0.819400128,0.753849952,0.884950303,0.526,,4426,0.433385171,0.618614829,68.64556142,,,66.87774381,70.41337903,,,,,,,65.72777345,62.90077563,68.55477127,,,,70.23247502,67.95292247,72.51202757,,,,804.9994547,383,35101,718.5641826,891.4347268,,,,,,,935.0788217,788.4686436,1081.689,,,,747.2793401,636.2652235,858.2934568,,,,117.693213,15,12745,65.8719979,194.1170567,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.161,,,0.141,0.183,0.216,,,0.191,0.245,0.157,,,0.137,0.18,809.9,87,10742,,,0.169,2220,,,,0.194992134,2798.722104,14353,,,,,,,,,,,,,,,,,,,,,,,,,,0.417,,,0.404,0.43,0.113253012,799,7055,0.091806204,0.134699821,0.037277702,109,2924,0.024171319,0.050384085,0.000395538,5,12641,,,2528.2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.316856683,,,,,-9232.219,,,,,0.62930097,28934,45978,0.468687277,0.789914663,41807,,,35632.70213,47981.29787,,,,6667,3215.255319,10118.74468,21899,17897.97872,25900.02128,43864,1380.255319,86347.74468,45243,33055.25532,57430.74468,,,,,,0.466323908,907,1945,,,35.82612871,,,,,0.335541895,,41807,,,5.215123859,4,767,,,14.95774437,14,93597,8.177538037,25.09655344,,,,,,,28.43920474,14.19674854,50.88559299,,,,,,,,,,13.85383686,10,65946,6.334856387,26.29889775,15.163922,,,,,,,,,,,,,25.47638548,11.64942572,48.3621154,,,,30.32784399,20,65946,18.52503501,46.83889531,,,,,,,,,,,,,30.63554838,15.29315537,54.81545846,,,,19.23138562,18,93597,11.39773794,30.39388043,,,,,,,,,,,,,23.50222292,12.14394154,41.05365371,,,,,,,,,,,0.685131195,7050,10290,,,0.479,,,,,12.23352056,,,,,0.737116279,3962,5375,0.701820879,0.772411679,0.101790384,506,4971,0.065276104,0.138304665,0.648,3483,5375,0.599752258,0.696247743,12641,,,,,0.227118108,2871,12641,,,0.214223558,2708,12641,,,0.407088047,5146,12641,,,0.005062891,64,12641,,,0.003876276,49,12641,,,0.000316431,4,12641,,,0.024760699,313,12641,,,0.540938217,6838,12641,,,0.005575141,68,12197,0,0.016065475,0.511510165,6466,12641,,,1,12981,12981,, -22,015,22015,LA,Bossier Parish,2024,1,8753.999859,1931,359529,8180.429393,9327.570325,0,,,,2,6557.726053,2998.609931,12448.60675,1,12472.01554,11070.1083,13873.92277,,4818.795883,3296.052817,6802.70199,,8011.025358,7324.92224,8697.128476,,,,,2,,0.179,,,0.154,0.209,4.146232764,,,3.315338817,5.043497631,5.726944551,,,4.727393015,6.779224353,0.112676056,1312,11644,0.106932751,0.118419362,0,,,,0.077625571,0.04218587,0.113065271,0.186377499,0.172327391,0.200427608,0.059230769,0.046398613,0.072062925,0.093290171,0.086375341,0.100205,,,,0.096573209,0.064260128,0.12888629,0.191,,,0.153,0.231,0.376,,,0.31,0.449,7.1,0.109277755,0.123,,,0.275,,,0.23,0.324,0.735269445,94663,128746,,,0.174390524,,,0.140370807,0.211798401,0.285714286,18,63,0.220362237,0.352930756,502.5,649,129144,,,23.95390004,636,26551,22.09222556,25.81557453,,,,,,,30.28263795,26.3257066,34.23956931,44.97955475,36.55716259,54.76099398,17.39578635,15.32078562,19.47078709,,,,36.40256959,25.20983767,50.86894229,0.088768065,9502,107043,0.076853172,0.100682959,0.000472341,61,129144,,,2117.114754,0.000549213,71,129276,,,1820.788732,0.002266469,293,129276,,,441.2150171,4376,,,,,,,5324,2677,4125,0.45,,,,,,0.39,0.45,0.28,0.46,0.42,,,,,,0.48,0.33,0.27,0.43,0.902684564,77741,86122,0.891326246,0.914042881,0.64985888,23946,36848,0.604334901,0.695382859,0.030045498,1750,58245,,,0.182,5682,,0.126,0.238,0.1328125,0,0.646606564,0.156199678,0,0.343439732,0.379005655,0.32247396,0.43553735,0.420289855,0.296203164,0.544376546,0.131201121,0.100284788,0.162117454,4.910592696,126929,25848,4.348292272,5.47289312,0.282141844,8947,31711,0.239456053,0.324827634,6.81409899,88,129144,,,66.58551068,425,638277,60.25496217,72.91605919,,,,,,,65.31094887,52.84045777,79.83924818,38.73231414,22.56300032,62.014187,73.15393542,64.9707088,81.33716204,,,,10.3,,,,,1,,,,,0.148891129,7385,49600,0.126729302,0.171052956,0.137343927,0.116576535,0.15811132,0.013608871,0.008142132,0.01907561,0.003629032,0.0014798,0.005778265,0.835718255,48124,57584,0.824253275,0.847183236,,,,,,,0.834691502,0.791043271,0.878339733,0.700104131,0.654960047,0.745248214,0.828634991,0.799979426,0.857290557,0.254,,57584,0.230319617,0.277680383,76.06747636,,,75.56195131,76.5730014,,,,81.80618694,76.06721447,87.54515941,72.82611644,71.65586266,73.99637021,84.07537794,80.83303005,87.31772582,76.54256208,75.94858619,77.13653798,,,,452.2272743,1931,359529,431.6091134,472.8454352,,,,308.9176605,193.5970532,467.7050505,613.8057708,561.5324659,666.0790757,192.2652375,132.3465428,270.011877,427.2105017,403.2968434,451.12416,,,,63.77042647,88,137995,51.14574678,78.56694898,,,,,,,84.05480373,56.71142311,119.9934588,71.94762213,34.50168139,132.3142387,56.38815097,41.12990425,75.45178249,,,,7.440602012,88,11827,5.96758039,9.167029783,,,,,,,16.14530777,11.90427542,21.40633575,,,,4.727116459,3.253929462,6.638629032,,,,,,,0.125,,,0.108,0.144,0.184,,,0.16,0.208,0.114,,,0.098,0.133,513.9,547,106443,,,0.123,15760,,,,0.109277755,12783.20249,116979,,,13.56080718,52,383458,10.12785943,17.78319444,,,,,,,14.64755724,7.799207332,25.04776897,,,,15.57352501,11.07429869,21.28952136,,,,0.375,,,0.36,0.389,0.110055873,8332,75707,0.093375022,0.126736724,0.039870755,1308,32806,0.027955862,0.051785649,0.000727127,94,129276,,,1375.276596,0.92,1433.36,1558,,,0.130583127,842,6448,0.079664818,0.181501436,,,,,,,,,,,,,,,,,,,,,0.100804183,,,,,-3120.246,,,,,0.797126627,45885,57563,0.732696405,0.861556848,63812,,,58481.2766,69142.7234,93043,33536.44681,152549.5532,,,,40331,34659.51064,46002.48936,61366,39466.42553,83265.57447,74140,69527.74468,78752.25532,,,,,,0.388871536,8715,22411,,,35.15663131,,,,,0.21983326,,63812,,,4.435625073,38,8567,,,7.532245317,67,889509,5.837386662,9.565685297,,,,,,,18.53076106,13.04736591,25.54221315,,,,4.415243458,2.884183616,6.469354658,,,,14.06978519,90,638277,11.28437915,17.33436887,14.10046109,,,,,,,8.091225824,4.180854453,14.13374319,,,,16.55395082,12.87996183,20.95008424,,,,15.82385077,101,638277,12.73776805,18.9099335,,,,,,,24.7494122,17.33418404,34.2636187,,,,13.82061321,10.49457104,17.86634746,,,,12.36637291,110,889509,10.05536162,14.6773842,,,,,,,15.0249414,10.13726487,21.4490381,,,,12.73627921,10.01789154,15.96503627,,,,,,,,,,,0.584858213,54655,93450,,,0.611,,,,,47.31683502,,,,,0.654333929,31834,48651,0.639752563,0.668915296,0.139926535,6514,46553,0.11873403,0.161119041,0.768329531,37380,48651,0.746122448,0.790536614,129276,,,,,0.244964263,31668,129276,,,0.157894737,20412,129276,,,0.238861042,30879,129276,,,0.007201646,931,129276,,,0.018719639,2420,129276,,,0.00139237,180,129276,,,0.071459513,9238,129276,,,0.642787524,83097,129276,,,0.019425213,2340,120462,0.014497799,0.024352626,0.504324082,65197,129276,,,0.27167446,34977,128746,, -22,017,22017,LA,Caddo Parish,2024,1,13475.48367,5125,658150,12920.99049,14029.97684,0,,,,2,,,,2,17522.2925,16641.27853,18403.30647,,8066.254682,5788.483625,10942.78529,,9431.837453,8756.84843,10106.82648,,,,,2,,0.226,,,0.196,0.26,4.244102512,,,3.434401669,5.057647545,5.865853883,,,4.915341017,6.800781192,0.144377755,3079,21326,0.139660465,0.149095045,0,,,,0.107594937,0.073429305,0.141760569,0.186227202,0.179326882,0.193127523,0.100422833,0.08126943,0.119576236,0.085252525,0.078900502,0.091604549,,,,0.103641457,0.072023806,0.135259107,0.229,,,0.19,0.269,0.415,,,0.356,0.475,6.1,0.160405351,0.144,,,0.313,,,0.268,0.362,0.835079547,198622,237848,,,0.161865075,,,0.131707048,0.196022796,0.341346154,71,208,0.306885034,0.375863135,753.8,1757,233092,,,33.28450835,1727,51886,31.71468043,34.85433627,,,,,,,43.78634936,41.41519863,46.15750008,41.21863799,32.07056067,52.16482443,16.47186736,14.61715061,18.3265841,,,,34.09090909,24.24196896,46.60339499,0.088114282,16062,182286,0.077390878,0.098837686,0.001257014,293,233092,,,795.5358362,0.000864534,198,229025,,,1156.691919,0.00760179,1741,229025,,,131.5479609,4399,,,,,,,5722,,3734,0.44,,,,,,0.39,0.44,0.24,0.43,0.41,,,,,,0.44,0.33,0.25,0.44,0.872838263,140410,160866,0.8618404,0.883836126,0.577204372,35120,60845,0.543866736,0.610542008,0.040841705,4171,102126,,,0.315,16548,,0.253042553,0.376957447,,,,0.00761035,0,0.14218275,0.42982569,0.395426794,0.464224586,0.301419878,0.193729033,0.409110724,0.124618237,0.088184552,0.161051923,5.764137264,107334,18621,5.394564784,6.133709744,0.456709334,25404,55624,0.42021018,0.493208489,11.84081822,276,233092,,,94.89468273,1139,1200278,89.3836107,100.4057548,,,,,,,104.3936093,96.18283367,112.6043849,48.01310475,27.96940286,76.87363181,92.63896787,84.45305292,100.8248828,,,,10.7,,,,,1,,,,,0.185954501,17860,96045,0.171309298,0.200599703,0.164114833,0.149180009,0.179049656,0.022020928,0.016088048,0.027953808,0.010567963,0.005627216,0.01550871,0.818329644,78004,95321,0.802954537,0.833704751,,,,0.736649215,0.631171151,0.842127278,0.804725368,0.779808757,0.829641978,0.772247706,0.725966156,0.818529257,0.860409719,0.84211403,0.878705408,0.203,,95321,0.184426519,0.221573481,72.24696911,,,71.85071632,72.64322191,,,,84.94337308,80.80016423,89.08658193,69.04448692,68.45529153,69.63368232,84.93255309,80.02653735,89.83856883,75.295528,74.77771698,75.81333902,,,,608.9172127,5125,658150,591.4363945,626.398031,,,,,,,767.6132884,739.0140903,796.2124865,305.1330339,228.5655811,399.1215212,483.4322512,461.0103911,505.8541114,,,,102.2843505,252,246372,89.65546596,114.913235,,,,,,,144.9687322,125.075043,164.8624214,,,,44.02298714,30.99624563,60.6798888,,,,11.07294586,245,22126,9.686393716,12.459498,,,,,,,15.84298889,13.65273147,18.03324631,,,,4.509728128,3.141190878,6.271940133,,,,,,,0.136,,,0.119,0.155,0.196,,,0.173,0.222,0.14,,,0.122,0.159,539.9,1048,194109,,,0.144,34540,,,,0.160405351,40898.39193,254969,,,12.24016039,87,710775,9.8038667,15.09819262,,,,,,,11.01937715,7.835854366,15.06385132,,,,14.09330408,10.24021632,18.91960292,,,,0.415,,,0.401,0.428,0.11109915,14449,130055,0.095609789,0.126588512,0.033054836,1812,54818,0.023522921,0.042586751,0.002056544,471,229025,,,486.2526539,0.8,2228,2785,,,0.152639442,1839,12048,0.113045235,0.19223365,,,,,,,,,,,,,,,,,,,,,0.217927937,,,,,-11375.82,,,,,0.74080998,40023,54026,0.687155967,0.794463994,47699,,,44229.38298,51168.61702,73274,43203.19149,103344.8085,65254,55051.2766,75456.7234,34674,32815.2766,36532.7234,77000,55992.85106,98007.14894,66926,63352.7234,70499.2766,,,,,,0.488685887,17493,35796,,,58.013656,,,,,0.294094216,,47699,,,4.544,71,15625,,,23.52126234,400,1700589,21.21617863,25.82634605,,,,,,,42.15942233,37.76133985,46.55750482,,,,5.794147121,4.210036168,7.778372066,,,,13.2550934,163,1200278,11.15532564,15.35486117,13.58018726,,,,,,,6.010772821,4.137539437,8.441359822,,,,20.81548636,16.85447756,24.77649517,,,,34.32538129,412,1200278,31.01084458,37.639918,,,,,,,49.25495576,43.61504549,54.89486602,,,,21.27683612,17.35378562,25.19988661,,,,17.93496253,305,1700589,15.92213472,19.94779035,,,,,,,18.98965482,16.03793875,21.94137089,,,,18.04086717,15.01984998,21.06188437,,,,,,,,,,,0.573901152,104912,182805,,,0.618,,,,,67.88464468,,,,,0.605260651,57182,94475,0.591465767,0.619055535,0.182359422,16387,89861,0.16872441,0.195994434,0.793966658,75010,94475,0.779720099,0.808213217,229025,,,,,0.232376378,53220,229025,,,0.190450824,43618,229025,,,0.498273114,114117,229025,,,0.005466652,1252,229025,,,0.014932868,3420,229025,,,0.000720445,165,229025,,,0.033096824,7580,229025,,,0.43344613,99270,229025,,,0.004084104,904,221346,0.002228353,0.005939854,0.525807226,120423,229025,,,0.159656587,37974,237848,, -22,019,22019,LA,Calcasieu Parish,2024,1,11797.61131,3869,574337,11259.89303,12335.32959,0,,,,2,,,,2,16266.55567,15016.12203,17516.98932,,9413.421374,7200.521463,12091.93356,,10568.30229,9946.003756,11190.60083,,,,,2,,0.188,,,0.16,0.216,4.009084706,,,3.216948692,4.901296917,5.708728956,,,4.795698668,6.7444314,0.105212648,2083,19798,0.100938601,0.109486695,0,0.161764706,0.074240844,0.249288568,0.124010554,0.090827586,0.157193522,0.15590864,0.146761285,0.165055994,0.08852459,0.072584874,0.104464307,0.079865772,0.074999192,0.084732352,,,,0.125,0.072423302,0.177576698,0.208,,,0.17,0.246,0.396,,,0.339,0.456,6.9,0.13031031,0.124,,,0.291,,,0.245,0.338,0.744617939,161422,216785,,,0.197000311,,,0.163363753,0.235371608,0.336734694,66,196,0.301112092,0.372456985,532.4,1093,205282,,,33.63096587,1484,44126,31.91985378,35.34207797,,,,,,,47.87920176,44.14336154,51.61504198,48.16513762,38.9522828,57.37799243,26.98735321,25.01194531,28.96276111,,,,15.38461539,9.752526446,23.08447685,0.085781993,14407,167949,0.075058589,0.096505398,0.000789158,162,205282,,,1267.17284,0.000587892,119,202418,,,1700.991597,0.002811015,569,202418,,,355.7434095,2972,,,,,,3630,4145,1048,2707,0.42,,,,,,0.31,0.4,0.34,0.43,0.43,,,,,,0.49,0.37,0.43,0.45,0.887005004,124092,139900,0.877431666,0.896578341,0.616472796,34819,56481,0.577781503,0.655164089,0.035033322,3254,92883,,,0.211,10320,,0.152617021,0.269382979,,,,0.131086142,0,0.303578582,0.450713847,0.393441507,0.507986186,0.366136514,0.268486375,0.463786654,0.127926805,0.098467497,0.157386114,5.091642629,130621,25654,4.598792355,5.584492903,0.301458671,15810,52445,0.26244167,0.340475672,10.52211105,216,205282,,,93.75138195,954,1017585,87.80216835,99.70059555,,,,,,,93.17674464,81.38825995,104.9652293,93.12356026,65.89977367,127.8193622,97.03364763,89.63627154,104.4310237,,,,6.8,,,,,1,,,,,0.131781957,10335,78425,0.116384147,0.147179767,0.109031839,0.094332319,0.123731359,0.02288811,0.017930644,0.027845575,0.006056742,0.003574666,0.008538818,0.822379208,74737,90879,0.805881299,0.838877116,,,,0.759868421,0.659264633,0.860472209,0.761659743,0.71146497,0.811854517,0.716894977,0.697504276,0.736285678,0.865813324,0.847486431,0.884140218,0.218,,90879,0.199464775,0.236535225,73.34336787,,,72.94100655,73.74572918,,,,86.8124433,77.88154274,95.74334386,69.57533727,68.75183503,70.3988395,90.29467068,77.48207273,103.1072686,74.25822356,73.78378672,74.73266039,,,,560.1248201,3869,574337,541.8706519,578.3789882,,,,,,,749.8595984,706.0029363,793.7162606,360.6805825,280.0825853,457.2485819,516.9717573,496.0943444,537.8491703,,,,75.67908464,168,221990,64.23509909,87.1230702,,,,,,,113.618677,89.05890572,142.8584283,86.29481447,43.07806046,154.4052602,62.06807809,49.36458446,77.04285054,,,,7.34163401,148,20159,6.158815957,8.524452062,,,,,,,12.3011317,9.67562042,15.41957511,,,,4.958946427,3.793201086,6.369974142,,,,,,,0.125,,,0.107,0.143,0.192,,,0.167,0.217,0.108,,,0.093,0.125,360.7,609,168816,,,0.124,26370,,,,0.13031031,25119.65779,192768,,,30.55415765,187,612028,26.17484872,34.93346659,,,,,,,25.83662212,18.45806163,35.18214623,,,,34.79113071,29.06870132,40.5135601,,,,0.407,,,0.393,0.421,0.106541692,12583,118104,0.09105233,0.122031054,0.038856727,2027,52166,0.028133322,0.049580131,0.001338814,271,202418,,,746.9298893,0.94581579,1797.05,1900,,,0.079900498,803,10050,0.049743541,0.110057454,,,,,,,,,,,,,,,,,,,,,0.240693721,,,,,543.1211,,,,,0.581173809,39045,67183,0.523934794,0.638412824,61797,,,56736.74468,66857.25532,,,,73763,60265.80851,87260.19149,43240,38028.42553,48451.57447,63600,47351.65957,79848.34043,71783,67529.38298,76036.61702,,,,,,0.361699231,10626,29378,,,62.59646261,,,,,0.263961034,,61797,,,3.199786681,48,15001,,,7.621875913,108,1416974,6.184381824,9.059370002,,,,,,,17.59712636,13.52211506,22.51436883,,,,4.301111365,3.086551775,5.834943232,,,,17.6134669,178,1017585,14.97134092,20.25559288,17.49239621,,,,,,,8.998092425,5.569961031,13.7545401,,,,20.96293233,17.45720689,24.46865777,,,,17.00103677,173,1017585,14.46760958,19.53446395,,,,,,,21.35300398,16.08600484,27.79386974,,,,16.14780823,13.13012734,19.16548911,,,,18.84297101,267,1416974,16.58275566,21.10318636,,,,,,,18.43508476,14.25769322,23.45394789,22.28660575,11.51581441,38.93021516,19.19764341,16.41614736,21.97913946,,,,,,,,,,,0.553614841,82663,149315,,,0.58,,,,,57.56910662,,,,,0.707922918,54406,76853,0.692446734,0.723399102,0.123672662,9131,73832,0.108701951,0.138643374,0.830949995,63861,76853,0.816070617,0.845829374,202418,,,,,0.245289451,49651,202418,,,0.164590106,33316,202418,,,0.243851831,49360,202418,,,0.006254385,1266,202418,,,0.01560632,3159,202418,,,0.000666937,135,202418,,,0.044230256,8953,202418,,,0.67247972,136122,202418,,,0.005964701,1170,196154,0.003668947,0.008260455,0.507494393,102726,202418,,,0.250404779,54284,216785,, -22,021,22021,LA,Caldwell Parish,2024,1,12297.56303,246,27141,9852.175262,14742.9508,0,,,,2,,,,2,17407.50548,9949.893447,28268.69831,1,,,,2,12033.21577,9374.176729,14692.25482,,,,,2,,0.244,,,0.208,0.28,4.862117499,,,3.853554862,5.936687923,6.169652479,,,4.914513474,7.462860341,0.107323232,85,792,0.085766275,0.12888019,0,,,,,,,0.208695652,0.134421855,0.282969449,,,,0.090769231,0.068683805,0.112854657,,,,,,,0.27,,,0.224,0.322,0.411,,,0.326,0.499,7,0.038710237,0.163,,,0.351,,,0.295,0.411,0.642612753,6198,9645,,,0.172061099,,,0.136116868,0.21332317,0.25,3,12,0.099776571,0.4182543,386.6,37,9571,,,42.94175716,87,2026,34.39458714,52.96849881,,,,,,,31.84713376,15.27193852,58.56801287,,,,46.12427931,36.08940787,58.08589625,,,,,,,0.104952668,765,7289,0.088271817,0.12163352,0.000313447,3,9571,,,3190.333333,0.000314005,3,9554,,,3184.666667,0.001465355,14,9554,,,682.4285714,8107,,,,,,,12524,,7543,0.32,,,,,,,0.3,,0.31,0.28,,,,,,,0.19,,0.29,0.799331104,5497,6877,0.747754171,0.850908037,0.331560284,935,2820,0.241056013,0.422064554,0.038170005,141,3694,,,0.288,617,,0.177191489,0.398808511,,,,,,,0.70235546,0.504219025,0.900491896,,,,0.175843695,0.092542749,0.25914464,7.162393674,119569,16694,3.933699803,10.39108755,0.349435666,774,2215,0.229805921,0.469065411,10.44822903,10,9571,,,103.5785369,51,49238,77.12102408,136.1866473,,,,,,,,,,,,,113.2706912,82.30265764,152.060616,,,,8.6,,,,,1,,,,,0.176923077,690,3900,0.106284037,0.247562117,0.115984148,0.06624173,0.165726566,0.058717949,0.007341434,0.110094463,0.006410256,0,0.021323906,0.881037277,2718,3085,0.833672143,0.928402411,,,,,,,,,,,,,0.855764592,0.773465935,0.93806325,0.429,,3085,0.295393712,0.562606288,72.08540572,,,70.31500364,73.8558078,,,,,,,,,,,,,71.99590343,70.08371254,73.90809432,,,,658.1300323,246,27141,572.0716004,744.1884641,,,,,,,739.0694365,505.5229474,1043.345526,,,,669.7603376,573.8162607,765.7044145,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.156,,,0.134,0.18,0.212,,,0.183,0.242,0.131,,,0.112,0.151,346.7,28,8076,,,0.163,1580,,,,0.038710237,392.21212,10132,,,,,,,,,,,,,,,,,,,,,,,,,,0.371,,,0.355,0.386,0.128507838,664,5167,0.10586954,0.151146136,0.049261084,110,2233,0.033771722,0.064750445,0.000942014,9,9554,,,1061.555556,0.975,81.9,84,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.050437235,,,,,-4043.623,,,,,0.966246992,44973,46544,0.821404135,1.111089849,46464,,,39419.91489,53508.08511,,,,,,,21875,18414.91489,25335.08511,,,,57619,34026.31915,81211.68085,,,,,,0.424116424,612,1443,,,46.80485075,,,,,0.342114325,,46464,,,3.436426117,2,582,,,,,,,,,,,,,,,,,,,,,,,,,,19.04783486,11,49238,9.134177197,35.02964649,22.34046874,,,,,,,,,,,,,22.23320377,10.16643652,42.20554628,,,,24.37142045,12,49238,12.59306858,42.57196687,,,,,,,,,,,,,28.3176728,14.13608024,50.66813879,,,,24.52465449,17,69318,14.286515,39.26634758,,,,,,,,,,,,,27.44437939,15.36041081,45.2653302,,,,,,,,,,,0.621671018,4762,7660,,,0.434,,,,,14.48477223,,,,,0.69639307,2452,3521,0.640326631,0.75245951,0.132610775,416,3137,0.065151519,0.200070031,0.715421755,2519,3521,0.634620326,0.796223185,9554,,,,,0.230898053,2206,9554,,,0.189658782,1812,9554,,,0.161921708,1547,9554,,,0.004396065,42,9554,,,0.004186728,40,9554,,,0.000314005,3,9554,,,0.039355244,376,9554,,,0.776114716,7415,9554,,,0.001427317,13,9108,0,0.010945599,0.4749843,4538,9554,,,1,9645,9645,, -22,023,22023,LA,Cameron Parish,2024,1,6053.770704,91,17680,4140.77468,8546.117956,0,,,,2,,,,2,,,,2,,,,2,6368.074595,4231.539322,9203.640831,,,,,2,,0.182,,,0.153,0.212,4.162762967,,,3.249921774,5.187570837,5.948247485,,,4.757809641,7.20869023,0.08793456,43,489,0.062833363,0.113035758,0,,,,,,,,,,,,,0.092511013,0.065858047,0.119163979,,,,,,,0.214,,,0.17,0.26,0.362,,,0.283,0.444,8.2,0.058573059,0.095,,,0.278,,,0.225,0.331,0.790279509,4439,5617,,,0.194347108,,,0.154837892,0.237753055,0.3,3,10,0.129013968,0.476732101,255.9,13,5080,,,22.79411765,31,1360,15.48749704,32.35443052,,,,,,,,,,,,,21.83406114,14.12985314,32.2313814,,,,,,,0.083273338,347,4167,0.068975466,0.097571211,0.000393701,2,5080,,,2540,,0,4902,,,,,0,4902,,,,3319,,,,,,,,,3734,0.4,,,,,,,,,0.42,0.3,,,,,,,,,0.3,0.902915082,3562,3945,0.849557733,0.956272432,0.538358906,807,1499,0.363883295,0.712834517,0.028132251,97,3448,,,0.195,210,,0.11993617,0.27006383,,,,,,,,,,,,,0.207075963,0.042992804,0.371159121,3.908709761,136113,34823,2.732805976,5.084613545,0.146902655,166,1130,0.015303235,0.278502075,11.81102362,6,5080,,,69.83240224,23,32936,44.26775272,104.7828907,,,,,,,,,,,,,74.59650075,46.74922987,112.9399986,,,,8.2,,,,,1,,,,,0.053448276,155,2900,0.019240026,0.087656526,0.006896552,0,0.031237625,0.046551724,0.012320248,0.0807832,0,0,0.011039789,0.891347294,2256,2531,0.811336048,0.971358539,,,,,,,,,,,,,0.770179111,0.751859803,0.78849842,0.507,,2531,0.354754885,0.659245115,80.18503332,,,77.76490036,82.60516628,,,,,,,,,,,,,79.58584704,77.11675905,82.05493502,,,,340.5205324,91,17680,271.2227033,422.1264331,,,,,,,,,,,,,348.772266,275.2456182,435.9054909,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.128,,,0.109,0.149,0.193,,,0.167,0.222,0.104,,,0.088,0.122,326.9,14,4282,,,0.095,540,,,,0.058573059,400.5811477,6839,,,,,,,,,,,,,,,,,,,,,,,,,,0.35,,,0.332,0.367,0.09602649,290,3020,0.07815415,0.113898831,0.051666667,62,1200,0.032602837,0.070730497,0.000611995,3,4902,,,1634,0.975,85.8,88,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.058802375,,,,,23288.73,,,,,0.65001328,46500,71537,0.361582635,0.938443925,63413,,,53779.80851,73046.19149,,,,,,,,,,,,,72552,45119.14894,99984.85106,,,,,,0.702276708,802,1142,,,,,,,,0.257234321,,63413,,,5.208333333,2,384,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.764962121,4039,5280,,,0.407,,,,,0.611083451,,,,,0.895198523,1939,2166,0.813681622,0.976715423,0.030148186,59,1957,0,0.079626777,0.842566944,1825,2166,0.786590441,0.898543446,4902,,,,,0.221542228,1086,4902,,,0.189310486,928,4902,,,0.03875969,190,4902,,,0.00999592,49,4902,,,0.004895961,24,4902,,,0.000611995,3,4902,,,0.045695634,224,4902,,,0.881476948,4321,4902,,,0.030700039,157,5114,0,0.087021988,0.4875561,2390,4902,,,1,5617,5617,, -22,025,22025,LA,Catahoula Parish,2024,1,12211.53529,215,25556,9730.414956,14692.65562,0,,,,2,,,,2,11573.27972,7808.44323,16521.57643,,,,,2,12546.78986,9337.427726,15756.152,,,,,2,,0.247,,,0.213,0.285,4.851706473,,,3.91384729,5.878986451,6.128798322,,,4.934912129,7.395053307,0.108108108,84,777,0.086274234,0.129941982,0,,,,,,,0.143410853,0.100642403,0.186179303,,,,0.091277891,0.065854647,0.116701134,,,,,,,0.263,,,0.218,0.309,0.439,,,0.351,0.528,6,0.136084089,0.162,,,0.339,,,0.284,0.396,0.153716596,1369,8906,,,0.174568492,,,0.138148565,0.213428332,0.375,3,8,0.179126284,0.556186502,533.8,47,8805,,,47.2303207,81,1715,37.50769213,58.7029762,,,,,,,57.94701987,40.36222252,80.5902771,,,,43.04304304,31.15046368,57.97869651,,,,,,,0.11165201,711,6368,0.09377967,0.129524351,0.000113572,1,8805,,,8805,0.000233481,2,8566,,,4283,0.000233481,2,8566,,,4283,4086,,,,,,,1799,,4031,0.36,,,,,,,0.38,,0.35,0.27,,,,,,,0.29,,0.26,0.749920559,4720,6294,0.70701127,0.792829848,0.402239104,1006,2501,0.312954682,0.491523527,0.041135574,142,3452,,,0.369,673,,0.228404255,0.509595745,,,,,,,0.623853211,0.504185895,0.743520527,,,,0.265,0.131821449,0.398178551,5.310240078,108382,20410,3.656942993,6.963537163,0.310574949,605,1948,0.201154205,0.419995692,18.17149347,16,8805,,,80.83730429,38,47008,57.20528771,110.9555159,,,,,,,,,,,,,100.5090296,68.29100924,142.6645446,,,,8.2,,,,,1,,,,,0.151693667,515,3395,0.098258891,0.205128444,0.081515152,0.04311837,0.119911934,0.008541974,0,0.024386768,0.079528719,0.03024412,0.128813317,0.801529371,2306,2877,0.725454491,0.877604251,,,,,,,,,,,,,0.637577916,0.485590327,0.789565505,0.515,,2877,0.392966824,0.637033176,72.55956958,,,70.82225128,74.29688788,,,,,,,73.09357318,70.2289171,75.95822925,,,,72.07434419,69.83720716,74.31148122,,,,617.8878214,215,25556,530.2930879,705.4825549,,,,,,,555.8600618,408.4250656,739.1760439,,,,638.3303311,531.0378966,745.6227657,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.153,,,0.132,0.175,0.203,,,0.176,0.23,0.137,,,0.117,0.157,506.8,38,7497,,,0.162,1480,,,,0.136084089,1416.227111,10407,,,,,,,,,,,,,,,,,,,,,,,,,,0.4,,,0.386,0.415,0.135813339,617,4543,0.111983552,0.159643126,0.05334728,102,1912,0.03547494,0.071219621,0.001284147,11,8566,,,778.7272727,0.875,63,72,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.14558477,,,,,-12971.45,,,,,0.859588387,36003,41884,0.633832951,1.085343823,41676,,,36034.29787,47317.70213,,,,,,,30223,22670.14894,37775.85106,,,,54784,39976.17021,69591.82979,,,,,,0.644339623,683,1060,,,40.55283042,,,,,0.336596602,,41676,,,,,523,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,23.85353927,16,67076,13.63435872,38.73665335,,,,,,,,,,,,,29.4931712,15.70387153,50.43422097,,,,,,,,,,,0.649031396,4858,7485,,,0.413,,,,,8.885351537,,,,,0.777227723,2355,3030,0.747147621,0.807307825,0.08674189,246,2836,0.042332715,0.131151065,0.733333333,2222,3030,0.675011319,0.791655348,8566,,,,,0.214219005,1835,8566,,,0.193205697,1655,8566,,,0.297455055,2548,8566,,,0.00770488,66,8566,,,0.000817184,7,8566,,,0,0,8566,,,0.020429605,175,8566,,,0.661335513,5665,8566,,,0.001071556,9,8399,,,0.477702545,4092,8566,,,1,8906,8906,, -22,027,22027,LA,Claiborne Parish,2024,1,11162.91961,322,41354,9156.66863,13169.17059,0,,,,2,,,,2,11803.53209,9050.45937,14556.60481,,,,,2,11389.36463,8185.007661,14593.72161,,,,,2,,0.296,,,0.26,0.338,5.186230678,,,4.196591682,6.251335039,6.009622522,,,4.794021016,7.309927902,0.142276423,140,984,0.120449191,0.164103655,0,,,,,,,0.1568,0.128292811,0.185307189,,,,0.119047619,0.08441997,0.153675268,,,,,,,0.293,,,0.248,0.345,0.441,,,0.36,0.524,6.1,0.120054382,0.164,,,0.392,,,0.335,0.452,0.631968949,8955,14170,,,0.149125235,,,0.117715504,0.183341304,0.444444444,8,18,0.323758094,0.554110027,584.1,82,14038,,,35.94351733,84,2337,28.6699571,44.50052023,,,,,,,51.45797599,39.26785673,66.23661527,,,,20.28985507,12.55974008,31.01519878,,,,,,,0.098385411,847,8609,0.082896049,0.113874772,0.000498647,7,14038,,,2005.428571,0.000363795,5,13744,,,2748.8,0.001091385,15,13744,,,916.2666667,5479,,,,,,,6857,,4700,0.38,,,,,,,0.32,,0.42,0.31,,,,,,,0.23,,0.34,0.785307462,8135,10359,0.758807482,0.811807442,0.236697751,863,3646,0.180204816,0.293190686,0.038179148,208,5448,,,0.359,931,,0.230319149,0.487680851,,,,,,,0.661052632,0.570855777,0.751249486,0.885057471,0.009884092,1,0.31871345,0.170340521,0.467086379,5.539821586,68932,12443,4.295807616,6.783835557,0.575037147,1548,2692,0.463406617,0.686667677,6.411169682,9,14038,,,111.5015105,86,77129,89.18681591,137.7034583,,,,,,,100.426814,71.74638826,136.7528169,,,,133.7598139,97.92899508,178.4168471,,,,9.7,,,,,1,,,,,0.117039587,680,5810,0.07630655,0.157772624,0.110236221,0.06677635,0.153696091,0.006884682,0,0.015235905,0.005163511,0,0.012504103,0.854085603,3512,4112,0.802860155,0.905311051,,,,,,,0.862570736,0.78332081,0.941820661,,,,0.805555556,0.752660663,0.858450449,0.355,,4112,0.277690793,0.432309207,73.9904291,,,72.4497032,75.53115499,,,,,,,72.36411647,70.13172256,74.59651038,,,,74.04945118,71.71610551,76.38279686,,,,551.317709,322,41354,487.9261426,614.7092753,,,,,,,629.320996,530.9710843,727.6709077,,,,531.4492407,437.2370031,625.6614784,,,,109.1428092,13,11911,58.11394922,186.6375277,,,,,,,171.2062257,85.46553101,306.3352298,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.169,,,0.148,0.194,0.209,,,0.182,0.239,0.173,,,0.15,0.196,595.6,73,12256,,,0.164,2360,,,,0.120054382,2064.335102,17195,,,,,,,,,,,,,,,,,,,,,,,,,,0.429,,,0.412,0.444,0.121134021,752,6208,0.099687212,0.142580829,0.040191007,101,2513,0.025893134,0.054488879,0.000873108,12,13744,,,1145.333333,0.975,84.825,87,,,0.366568915,250,682,0.244614614,0.488523216,,,,,,,,,,,,,,,,,,,,,0.135074205,,,,,-24844.49,,,,,1.0112,30336,30000,0.700332946,1.322067054,37788,,,32904.08511,42671.91489,,,,,,,21330,16622.42553,26037.57447,,,,42675,36327.93617,49022.06383,,,,,,0.728247914,1222,1678,,,32.0468573,,,,,0.371228962,,37788,,,4.405286344,3,681,,,9.127752017,10,109556,4.377111885,16.78626095,,,,,,,,,,,,,,,,,,,17.87853123,15,77129,9.774359393,29.99713749,19.44793787,,,,,,,,,,,,,25.12119749,11.48701115,47.68785796,,,,24.63405464,19,77129,14.8313101,38.46912779,,,,,,,,,,,,,29.07822041,13.94413695,53.47588265,,,,24.64493045,27,109556,16.24116446,35.85707989,,,,,,,30.21148036,17.59930064,48.37150669,,,,20.35250539,9.75981743,37.42898205,,,,,,,,,,,0.508108108,6580,12950,,,0.488,,,,,0.874170192,,,,,0.72055336,3646,5060,0.68721696,0.753889759,0.12290759,536,4361,0.077371186,0.168443994,0.474505929,2401,5060,0.427248529,0.521763329,13744,,,,,0.190701397,2621,13744,,,0.217767753,2993,13744,,,0.494615832,6798,13744,,,0.006402794,88,13744,,,0.006111758,84,13744,,,0.000363795,5,13744,,,0.020008731,275,13744,,,0.458818394,6306,13744,,,0.000443459,6,13530,0,0.007748955,0.462892899,6362,13744,,,1,14170,14170,, -22,029,22029,LA,Concordia Parish,2024,1,14617.74485,456,52311,12605.95846,16629.53124,0,,,,2,,,,2,18818.15802,15271.16026,22365.15579,,,,,2,12070.28243,9679.133541,14461.43132,,,,,2,,0.283,,,0.246,0.322,5.248992519,,,4.298270774,6.329472101,6.53609963,,,5.352509936,7.812425022,0.131609871,224,1702,0.115548672,0.14767107,0,,,,,,,0.183520599,0.15671319,0.210328008,,,,0.084725537,0.065870955,0.103580119,,,,,,,0.295,,,0.249,0.346,0.453,,,0.374,0.536,4.9,0.207816295,0.179,,,0.406,,,0.347,0.467,0.51816771,9683,18687,,,0.153133365,,,0.121769137,0.189412059,0.409090909,9,22,0.29849051,0.512929862,685.7,126,18376,,,47.79033916,186,3892,40.9221901,54.65848821,,,,,,,55.99104143,45.01679731,66.96528555,,,,39.22567499,30.95628928,49.02536347,,,,,,,0.091825308,1230,13395,0.076335946,0.10731467,0.000217675,4,18376,,,4594,0.000496798,9,18116,,,2012.888889,0.005409583,98,18116,,,184.8571429,4967,,,,,,,5550,,4832,0.4,,,,,,,0.36,,0.41,0.37,,,,,,,0.29,,0.4,0.85791512,10633,12394,0.831870365,0.883959876,0.377246822,1721,4562,0.3065791,0.447914543,0.046239475,324,7007,,,0.425,1814,,0.313,0.537,,,,,,,0.760768033,0.70186266,0.819673406,0.735294118,0.686632407,0.783955828,0.309544282,0.232999285,0.386089279,6.09286371,86147,14139,4.930006778,7.255720643,0.502935863,2227,4428,0.39941457,0.606457156,9.251197214,17,18376,,,103.1389667,99,95987,83.82626278,125.5679912,,,,,,,115.531049,83.94503704,155.0950408,,,,100.9285426,76.03319076,131.3723712,,,,8.3,,,,,1,,,,,0.122479462,820,6695,0.086474478,0.158484446,0.099543379,0.065361901,0.133724857,0.024346527,0.00683283,0.041860224,0.008961912,0.000806214,0.01711761,0.866654057,4582,5287,0.81022464,0.923083474,,,,,,,0.900337025,0.845143696,0.955530353,,,,0.853157122,0.774897849,0.931416395,0.268,,5287,0.21008087,0.32591913,71.12460109,,,69.76643033,72.48277184,,,,,,,67.54710957,65.40229177,69.69192738,,,,73.2054935,71.49870304,74.91228396,,,,681.0568893,456,52311,614.9013532,747.2124254,,,,,,,850.8602885,730.6748977,971.0456794,,,,602.2853444,520.9790825,683.5916062,,,,111.7488698,22,19687,70.03242176,169.1891319,,,,,,,213.9037433,126.7729148,338.0601339,,,,,,,,,,11.62790698,20,1720,7.102627666,17.95835925,,,,,,,,,,,,,,,,,,,,,,0.168,,,0.146,0.192,0.22,,,0.192,0.25,0.161,,,0.14,0.185,260.8,40,15337,,,0.179,3390,,,,0.207816295,4327.15089,20822,,,,,,,,,,,,,,,,,,,,,,,,,,0.404,,,0.39,0.418,0.117926566,1092,9260,0.097671247,0.138181885,0.034934498,152,4351,0.023019604,0.046849391,0.000772798,14,18116,,,1294,0.841306122,206.12,245,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.256900344,,,,,-18379.26,,,,,0.784526179,31931,40701,0.606910437,0.962141921,41101,,,35063.7234,47138.2766,,,,,,,21548,15264.08511,27831.91489,76250,22691.3617,129808.6383,50998,44779.61702,57216.38298,,,,,,0.722111837,2544,3523,,,36.85346118,,,,,0.341305564,,41101,,,2.575107296,3,1165,,,21.31584944,29,136049,14.27555891,30.61311545,,,,,,,42.46362898,26.9182982,63.71629292,,,,,,,,,,22.3517066,22,95987,13.83605867,34.16695785,22.91977039,,,,,,,,,,,,,30.49627212,17.068532,50.29896313,,,,29.17061685,28,95987,19.38366305,42.15966323,,,,,,,36.75987922,20.09696804,61.67683109,,,,25.69090175,14.04545505,43.10496774,,,,30.87123022,42,136049,22.24926735,41.728935,,,,,,,20.30869212,10.13802594,36.33786004,,,,40.11023846,27.25296101,56.9332818,,,,,,,,,,,0.603830369,8828,14620,,,0.473,,,,,30.67120693,,,,,0.727546811,4585,6302,0.692246951,0.76284667,0.166265888,968,5822,0.115316019,0.217215757,0.725166614,4570,6302,0.678862502,0.771470725,18116,,,,,0.237856039,4309,18116,,,0.19684257,3566,18116,,,0.387944359,7028,18116,,,0.004526386,82,18116,,,0.00640318,116,18116,,,0.0001656,3,18116,,,0.023570325,427,18116,,,0.566460587,10262,18116,,,0.020196257,354,17528,0.006450109,0.033942406,0.497626408,9015,18116,,,0.341360304,6379,18687,, -22,031,22031,LA,De Soto Parish,2024,1,11078.69721,577,75899,9668.807379,12488.58705,0,,,,2,,,,2,15212.28125,12338.29347,18086.26904,,,,,2,8859.384822,7355.05023,10363.71941,,,,,2,,0.231,,,0.201,0.264,4.669165133,,,3.771148469,5.676522777,5.964796392,,,4.830233452,7.199779393,0.121212121,280,2310,0.107902517,0.134521725,0,,,,,,,0.185510428,0.160268425,0.210752431,,,,0.079239303,0.064336426,0.094142179,,,,,,,0.24,,,0.2,0.285,0.437,,,0.36,0.518,6.9,0.092570297,0.141,,,0.327,,,0.275,0.383,0.450954796,12091,26812,,,0.170152414,,,0.136461286,0.209155038,0.142857143,6,42,0.072742026,0.23003453,683.5,184,26919,,,29.45229073,171,5806,25.03783572,33.86674574,,,,,,,39.08045977,31.21608322,48.32359371,,,,21.58948686,16.79790944,27.32287738,,,,,,,0.094390357,2036,21570,0.080092485,0.108688229,0.000185742,5,26919,,,5383.8,7.44796E-05,2,26853,,,13426.5,0.002457826,66,26853,,,406.8636364,3789,,,,,,,5160,,3204,0.45,,,,,,,0.48,,0.44,0.32,,,,,,,0.22,,0.36,0.823867643,15188,18435,0.80182305,0.845912236,0.50103673,3383,6752,0.42870894,0.57336452,0.03825436,419,10953,,,0.276,1732,,0.194978723,0.357021277,,,,,,,0.47082768,0.335575934,0.606079426,,,,0.136052482,0.079833138,0.192271825,6.201494086,119540,19276,4.677750966,7.725237205,0.312920908,1998,6385,0.26410009,0.361741727,11.51602957,31,26919,,,81.86655751,112,136808,66.70465888,97.02845614,,,,,,,68.64417357,47.25149056,96.40194132,,,,91.52412403,71.86612277,114.9001565,,,,9.8,,,,,1,,,,,0.114155251,1250,10950,0.085102639,0.143207863,0.087523278,0.060919276,0.11412728,0.020091324,0.005154441,0.035028207,0.00913242,0.000739031,0.017525809,0.821347984,8372,10193,0.783716516,0.858979452,,,,,,,0.791988756,0.695883433,0.88809408,,,,0.832824607,0.762982957,0.902666257,0.385,,10193,0.3319553,0.4380447,74.11506079,,,73.01024334,75.21987825,,,,,,,70.20060179,68.2394534,72.16175017,,,,75.9333326,74.66404637,77.20261884,,,,564.3807095,577,75899,516.0711822,612.6902368,,,,,,,736.467696,641.8603988,831.0749932,,,,491.799597,434.5398965,549.0592975,,,,73.6196319,21,28525,45.57171248,112.5354276,,,,,,,124.4019139,66.23877982,212.7310614,,,,,,,,,,8.635578584,20,2316,5.274835745,13.33695074,,,,,,,,,,,,,,,,,,,,,,0.145,,,0.126,0.167,0.201,,,0.176,0.23,0.134,,,0.117,0.155,241,54,22410,,,0.141,3780,,,,0.092570297,2467.553827,26656,,,20.72362005,17,82032,12.07227237,33.18052323,,,,,,,,,,,,,30.79639477,17.23650837,50.7939698,,,,0.38,,,0.366,0.394,0.11328534,1731,15280,0.094221511,0.13234917,0.05006068,330,6592,0.034571318,0.065550041,0.000409638,11,26853,,,2441.181818,0.94,290.46,309,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.208959451,,,,,847.834,,,,,0.626721997,36850,58798,0.556856523,0.696587472,52776,,,47002.04255,58549.95745,,,,,,,25457,17128.48936,33785.51064,122031,14595.59575,229466.4043,65343,59862.14894,70823.85106,,,,,,0.479443522,2309,4816,,,60.37272178,,,,,0.265802638,,52776,,,3.594967046,6,1669,,,9.423639724,18,191009,5.585046139,14.89341354,,,,,,,,,,,,,,,,,,,17.4687503,23,136808,10.94757281,26.44789788,16.81188235,,,,,,,,,,,,,24.99858204,15.0507794,39.03838248,,,,23.390445,32,136808,15.99904707,33.02032928,,,,,,,,,,,,,25.97306222,16.07773488,39.70258461,,,,21.98849269,42,191009,15.84737145,29.72205434,,,,,,,26.46475042,15.68468835,41.82571531,,,,18.69574894,11.57296326,28.57843822,,,,,,,,,,,0.709997591,14736,20755,,,0.528,,,,,14.132348,,,,,0.748705423,7663,10235,0.723278061,0.774132784,0.091747099,846,9221,0.06361832,0.119875878,0.774010747,7922,10235,0.727288998,0.820732497,26853,,,,,0.236360928,6347,26853,,,0.191114587,5132,26853,,,0.334450527,8981,26853,,,0.013294604,357,26853,,,0.005027371,135,26853,,,0.000521357,14,26853,,,0.035191599,945,26853,,,0.597773061,16052,26853,,,0.004319911,109,25232,0,0.010397887,0.513760101,13796,26853,,,0.791063703,21210,26812,, -22,033,22033,LA,East Baton Rouge Parish,2024,1,12179.39385,7581,1255830,11803.43899,12555.34871,0,,,,2,3543.086317,2564.149136,4772.514017,,15984.85374,15366.97402,16602.73347,,8605.417543,7122.066609,10088.76848,,9188.618623,8691.878262,9685.358983,,,,,2,,0.184,,,0.158,0.213,4.051260077,,,3.341507787,4.901531614,5.894106562,,,5.091356611,6.788103412,0.120337181,4868,40453,0.117166601,0.123507762,0,,,,0.103634958,0.087021792,0.120248123,0.160679295,0.155762881,0.165595708,0.072718517,0.064820766,0.080616267,0.072628685,0.068183388,0.077073982,,,,0.085051546,0.057294092,0.112809,0.184,,,0.151,0.221,0.368,,,0.322,0.415,7.2,0.11720667,0.115,,,0.257,,,0.218,0.301,0.963963037,440320,456781,,,0.17624359,,,0.147977079,0.207144355,0.325581395,126,387,0.300405725,0.350884772,1027.4,4657,453301,,,23.04765772,2611,113287,22.16360242,23.93171302,,,,2.653927813,1.272661544,4.880667739,31.43727781,30.00741275,32.86714286,95.93703467,87.08273756,104.7913318,5.817577395,5.099290454,6.535864335,,,,17.00367647,11.97215743,23.43732819,0.08798415,32241,366441,0.078452235,0.097516065,0.000866974,393,453301,,,1153.437659,0.000747985,337,450544,,,1336.925816,0.004583348,2065,450544,,,218.1811138,2517,,,,,,1352,3785,634,1915,0.45,,,,,,0.33,0.41,0.25,0.47,0.46,,,,,,0.48,0.36,0.35,0.51,0.908366296,258581,284666,0.902509728,0.914222864,0.684150455,80922,118281,0.657588907,0.710712003,0.034560583,8116,234834,,,0.228,22497,,0.175574468,0.280425532,,,,0.009664059,0,0.054641526,0.331962652,0.303479192,0.360446112,0.418228645,0.348465902,0.487991388,0.062301839,0.045295818,0.07930786,5.614192496,137660,24520,5.332739854,5.895645138,0.389065071,39259,100906,0.357330754,0.420799387,11.80231237,535,453301,,,118.5868839,2633,2220313,114.0572063,123.1165616,,,,39.80944545,26.85926568,56.83045873,129.6647172,122.727239,136.6021954,83.32133232,66.16916493,103.5608083,118.9036329,112.0698474,125.7374183,,,,9.5,,,,,0,,,,,0.164206754,27035,164640,0.151493204,0.176920305,0.140287436,0.129473394,0.151101479,0.023870262,0.019686438,0.028054087,0.00983965,0.005927834,0.013751466,0.804786562,171430,213013,0.793928138,0.815644986,,,,0.682590087,0.603695166,0.761485008,0.798355156,0.781757192,0.814953121,0.672747516,0.614735453,0.730759579,0.860282216,0.85071722,0.869847212,0.314,,213013,0.296816096,0.331183904,73.86337988,,,73.57419505,74.15256471,,,,86.09873818,83.18562735,89.01184901,70.36082281,69.91714958,70.80449603,80.66072244,78.53870736,82.78273751,76.51974695,76.12238752,76.91710638,,,,537.0762735,7581,1255830,524.5598026,549.5927445,,,,176.9366295,138.1889756,223.1814826,708.6312794,687.1146252,730.1479337,338.8661038,284.2657859,393.4664217,424.4273934,408.0412815,440.8135053,,,,83.02515033,383,461306,74.71007181,91.34022886,,,,,,,118.8866149,105.3882582,132.3849716,63.39461479,38.16769932,98.99854383,39.59444899,30.28661614,50.86072615,,,,9.809171454,403,41084,8.85145737,10.76688554,,,,,,,13.98442126,12.42008043,15.5487621,5.117707267,3.126028553,7.903883803,4.911810672,3.798794018,6.249027494,,,,,,,0.118,,,0.102,0.137,0.18,,,0.157,0.204,0.12,,,0.105,0.137,1087.8,4127,379401,,,0.115,52200,,,,0.11720667,51590.97732,440171,,,46.05844021,614,1333089,42.41525616,49.70162426,,,,,,,37.01442601,32.24109996,41.78775206,33.38396568,20.39179353,51.55882739,60.72739063,54.40124681,67.05353444,,,,0.381,,,0.367,0.394,0.107282168,28741,267901,0.094175785,0.120388551,0.038173162,3961,103764,0.027449758,0.048896566,0.002219539,1000,450544,,,450.544,0.740671413,3381.165,4565,,,0.079582625,2433,30572,0.056911054,0.102254195,,,,,,,,,,,,,,,,,,,,,0.259300151,,,,,-15486.52067,,,,,0.728123351,45523,62521,0.691922323,0.764324378,61376,,,58533.10638,64218.89362,68125,14940.48936,121309.5106,61962,42339.3617,81584.6383,45792,43198.12766,48385.87234,52212,47126.7234,57297.2766,83724,79224.93617,88223.06383,,,,,,0.496580868,32315,65075,,,56.8363009,,,,,0.304418665,,61376,,,5.215434961,153,29336,,,24.56566144,765,3114103,22.82484165,26.30648124,,,,,,,46.08884906,42.58847207,49.58922604,16.53426727,10.36193727,25.03307935,5.278697131,4.137655906,6.637169128,,,,12.41906001,269,2220313,10.89815831,13.93996171,12.11540895,,,,,,,7.300400666,5.701673488,9.208462083,11.15383477,5.348697317,20.51229926,18.00525535,15.2283016,20.7822091,,,,32.65305387,725,2220313,30.27615408,35.02995367,,,,,,,53.14127754,48.70001223,57.58254284,15.42987636,8.635984666,25.44923455,15.23356947,12.7875235,17.67961544,,,,17.24413097,537,3114103,15.78561819,18.70264376,,,,11.40055863,5.890835004,19.91448161,21.66037501,19.26071412,24.0600359,18.78894008,12.15921135,27.73618201,13.52214197,11.58402154,15.46026239,,,,,,,,,,,0.632301174,208182,329245,,,0.621,,,,,100.5281633,,,,,0.598013718,103930,173792,0.588816541,0.607210894,0.164616908,27426,166605,0.152341973,0.176891843,0.890006445,154676,173792,0.881356962,0.898655927,450544,,,,,0.221225896,99672,450544,,,0.156171206,70362,450544,,,0.46672911,210282,450544,,,0.00269674,1215,450544,,,0.035397209,15948,450544,,,0.000490518,221,450544,,,0.047981995,21618,450544,,,0.433919884,195500,450544,,,0.016763028,7144,426176,0.014234426,0.019291629,0.522512785,235415,450544,,,0.0685821,31327,456781,, -22,035,22035,LA,East Carroll Parish,2024,1,12259.69116,172,19322,9511.442859,15007.93947,0,,,,2,,,,2,14692.9313,11020.48253,18365.38007,,,,,2,7426.320379,4471.129988,11597.11919,1,,,,2,,0.38,,,0.333,0.428,6.173396251,,,4.999634362,7.412028412,6.592367777,,,5.283016033,7.946586803,0.153710247,87,566,0.123996406,0.183424089,0,,,,,,,0.177725119,0.141251171,0.214199066,,,,0.081481482,0.035332449,0.127630514,,,,,,,0.355,,,0.3,0.411,0.505,,,0.411,0.602,3.8,0.218069925,0.226,,,0.47,,,0.406,0.538,0.847298566,6320,7459,,,0.133945449,,,0.102289525,0.16993973,0,0,5,0,0.316144538,803.3,58,7220,,,43.60056259,62,1422,33.42830133,55.8939535,,,,,,,53.72290292,40.68920204,69.60425203,,,,,,,,,,,,,0.086235837,411,4766,0.069554986,0.102916688,0.000415513,3,7220,,,2406.666667,0.000286123,2,6990,,,3495,0.005007153,35,6990,,,199.7142857,10004,,,,,,,10870,,7057,0.37,,,,,,,0.31,,0.44,0.14,,,,,,,0.09,,0.18,0.677219119,3273,4833,0.613502108,0.74093613,0.25,503,2012,0.169614089,0.330385911,0.078610603,129,1641,,,0.482,670,,0.310425532,0.653574468,,,,,,,0.708880309,0.582235495,0.835525122,,,,0.357894737,0.1324648,0.583324673,9.513987089,92847,9759,4.134138037,14.89383614,0.764776119,1281,1675,0.672902603,0.856649636,8.310249308,6,7220,,,74.6418626,26,34833,48.75854281,109.3676229,,,,,,,67.70480704,38.69914715,109.9483649,,,,103.6484245,49.70344834,190.6131431,,,,8.4,,,,,1,,,,,0.201183432,340,1690,0.071030391,0.331336473,0.176100629,0.082304967,0.269896291,0.037869823,0,0.085755722,0.026627219,0,0.071856797,0.863832409,1402,1623,0.779262755,0.948402064,,,,,,,0.844252163,0.717579389,0.970924938,,,,0.904991949,0.80931953,1,0.151,,1623,0.045568339,0.256431661,71.28390509,,,69.3972281,73.17058208,,,,,,,68.89312341,66.564958,71.22128882,,,,75.86407336,73.1067382,78.62140852,,,,708.6789358,172,19322,599.1998333,818.1580384,,,,,,,829.2540883,679.7967657,978.7114108,,,,502.9995673,357.6818636,687.616967,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.209,,,0.182,0.238,0.237,,,0.207,0.27,0.216,,,0.187,0.247,524.9,32,6096,,,0.226,1700,,,,0.218069925,1692.004551,7759,,,,,,,,,,,,,,,,,,,,,,,,,,0.457,,,0.445,0.468,0.115125536,376,3266,0.091295749,0.138955323,0.02340291,37,1581,0.013870995,0.032934824,0.000715308,5,6990,,,1398,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-39898.24,,,,,0.849549811,29250,34430,0.591084473,1.108015149,30688,,,26329.53192,35046.46809,,,,,,,20471,10785.38298,30156.61702,,,,70000,46215.48936,93784.51064,,,,,,0.805412371,625,776,,,60.07994307,,,,,0.517987487,,30688,,,8.086253369,3,371,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20.23840845,10,49411,9.705103512,37.21915372,,,,,,,,,,,,,,,,,,,,,,,,,,0.580497132,3036,5230,,,0.529,,,,,6.449239803,,,,,0.614027719,1462,2381,0.557487097,0.670568342,0.212569316,460,2164,0.133490607,0.291648026,0.629147417,1498,2381,0.53441807,0.723876764,6990,,,,,0.203576538,1423,6990,,,0.155364807,1086,6990,,,0.677110157,4733,6990,,,0.00472103,33,6990,,,0.005579399,39,6990,,,0.000286123,2,6990,,,0.033762518,236,6990,,,0.267811159,1872,6990,,,0,0,7132,0,0.013364996,0.410014306,2866,6990,,,1,7459,7459,, -22,037,22037,LA,East Feliciana Parish,2024,1,13197.35462,511,53291,11270.77966,15123.92958,0,,,,2,,,,2,15144.7662,12086.32209,18203.21031,,,,,2,12090.61365,9479.436397,14701.79091,,,,,2,,0.203,,,0.174,0.233,4.146865731,,,3.220041034,5.072411754,5.599886086,,,4.411440616,6.73831098,0.111690246,150,1343,0.094843815,0.128536677,0,,,,,,,0.1508079,0.121088263,0.180527536,,,,0.087719298,0.067350811,0.108087786,,,,,,,0.219,,,0.179,0.257,0.419,,,0.338,0.496,8.7,0.004371359,0.098,,,0.298,,,0.246,0.348,0.423716669,8279,19539,,,0.182446414,,,0.144302974,0.222759559,0.4,12,30,0.306339297,0.489449435,574,111,19338,,,26.64067576,82,3078,21.18812004,33.06810303,,,,,,,31.1634349,22.73082326,41.69912777,,,,24.19354839,16.94486386,33.49406888,,,,,,,0.081465157,1072,13159,0.068358774,0.09457154,0.00031027,6,19338,,,3223,0.000522603,10,19135,,,1913.5,0.004337601,83,19135,,,230.5421687,3146,,,,,,,3628,,2916,0.37,,,,,,,0.42,,0.34,0.37,,,,,,,0.36,,0.38,0.843781977,12369,14659,0.820116699,0.867447255,0.399172903,2027,5078,0.330471718,0.467874087,0.031513929,250,7933,,,0.238,765,,0.14387234,0.33212766,,,,,,,0.270833333,0.132044579,0.409622087,,,,0.072635135,0.008087251,0.137183019,4.896746979,128853,26314,3.437871854,6.355622104,0.279140176,922,3303,0.184267435,0.374012916,5.688282139,11,19338,,,134.2742943,129,96072,111.1027972,157.4457914,,,,,,,135.6651291,102.2015416,176.5868133,,,,140.7201789,110.3021569,176.934498,,,,8.8,,,,,1,,,,,0.09700428,680,7010,0.063976159,0.1300324,0.076474873,0.045000858,0.107948887,0.020542083,0.003753307,0.037330859,0.008559201,0.000091989,0.017026413,0.895712098,5849,6530,0.844249061,0.947175135,,,,,,,0.886130812,0.819257247,0.953004377,,,,0.841870058,0.768477322,0.915262795,0.58,,6530,0.493635512,0.666364488,71.38325271,,,70.0841411,72.68236433,,,,,,,69.88482754,67.83301797,71.93663711,,,,72.19252648,70.448173,73.93687997,,,,652.0524192,511,53291,591.8894829,712.2153555,,,,,,,739.1834352,639.1917973,839.1750731,,,,600.3877136,522.2407092,678.5347179,,,,98.6063634,15,15212,55.18923306,162.6362008,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.126,,,0.108,0.143,0.182,,,0.157,0.206,0.124,,,0.105,0.141,253.8,43,16941,,,0.098,1920,,,,0.004371359,88.59433065,20267,,,41.84465173,24,57355,26.81065793,62.26152488,,,,,,,,,,,,,48.28274375,27.02348515,79.6350432,,,,0.392,,,0.378,0.405,0.096008085,950,9895,0.079327234,0.112688936,0.039393055,135,3427,0.026286672,0.052499438,0.001776849,34,19135,,,562.7941177,0.875,98,112,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.208778541,,,,,-8113.691,,,,,0.775614098,49668,64037,0.631121715,0.920106482,56830,,,49110.34043,64549.65957,,,,,,,39946,26874.17021,53017.82979,80816,75874.89362,85757.10638,85054,67543.87234,102564.1277,,,,,,0.418742586,706,1686,,,19.67307401,,,,,0.328770016,,56830,,,3.253796095,3,922,,,16.24203587,22,135451,10.1787974,24.59063749,,,,,,,27.71762668,15.84301854,45.01168921,,,,,,,,,,11.52549743,13,96072,5.955392708,20.13272456,13.53151803,,,,,,,,,,,,,,,,,,,31.22658007,30,96072,21.06844244,44.57788471,,,,,,,44.39949681,26.3139557,70.17034673,,,,23.1320842,11.95268546,40.40709586,,,,29.5309743,40,135451,21.097361,40.21280534,,,,,,,36.37938502,22.51941271,55.60975441,,,,26.1430714,15.73983676,40.82564439,,,,,,,,,,,0.667449984,10509,15745,,,0.504,,,,,0.546680239,,,,,0.823983064,5449,6613,0.79797282,0.849993307,0.078930202,484,6132,0.048351782,0.109508622,0.748525631,4950,6613,0.703148236,0.793903026,19135,,,,,0.170107134,3255,19135,,,0.195662399,3744,19135,,,0.407995819,7807,19135,,,0.005748628,110,19135,,,0.003240136,62,19135,,,0.000209041,4,19135,,,0.019545336,374,19135,,,0.549621113,10517,19135,,,0.003929379,73,18578,0,0.010192591,0.451894434,8647,19135,,,1,19539,19539,, -22,039,22039,LA,Evangeline Parish,2024,1,13603.83948,773,92422,12209.87514,14997.80382,0,,,,2,,,,2,19716.6937,16552.80534,22880.58206,,,,,2,12024.58998,10380.49305,13668.68691,,,,,2,,0.272,,,0.237,0.307,5.229560228,,,4.244810479,6.323961134,6.606337675,,,5.42447255,7.876412715,0.110869565,357,3220,0.100024878,0.121714253,0,,,,,,,0.147928994,0.126076468,0.16978152,,,,0.091599431,0.079282319,0.103916542,,,,,,,0.285,,,0.239,0.333,0.416,,,0.339,0.498,6.2,0.062893469,0.186,,,0.381,,,0.325,0.44,0.557372488,18031,32350,,,0.173932338,,,0.139574994,0.214467206,0.4,12,30,0.306339297,0.489449435,589.8,190,32215,,,38.06228374,275,7225,33.56360928,42.56095819,,,,,,,57.37337517,47.43394502,67.31280532,,,,29.3989547,24.43964676,34.35826265,,,,,,,0.105246854,2718,25825,0.088566003,0.121927705,0.00065187,21,32215,,,1534.047619,0.000343901,11,31986,,,2907.818182,0.000750328,24,31986,,,1332.75,5349,,,,,,,6358,,5166,0.4,,,,,,,0.37,,0.41,0.41,,,,,,,0.34,,0.42,0.765087544,16037,20961,0.741156596,0.789018492,0.407553205,3313,8129,0.345386762,0.469719647,0.041002656,494,12048,,,0.323,2559,,0.218148936,0.427851064,,,,,,,0.571428571,0.498362425,0.644494718,0.75,0.353877714,1,0.238065716,0.165637269,0.310494163,5.616536622,89258,15892,4.62795473,6.605118514,0.405532812,3269,8061,0.307935684,0.503129941,8.070774484,26,32215,,,112.6254991,187,166037,96.48295447,128.7680438,,,,,,,123.5030766,93.29289677,160.3790177,,,,117.7706914,97.52551246,138.0158704,,,,8.4,,,,,1,,,,,0.175070593,2170,12395,0.137965618,0.212175568,0.147808275,0.111397957,0.184218594,0.030254135,0.01131287,0.0491954,0.020572812,0.008094113,0.03305151,0.80608365,8904,11046,0.76761227,0.84455503,,,,,,,0.733772342,0.657475814,0.810068871,,,,0.832490163,0.778759739,0.886220587,0.362,,11046,0.305532957,0.418467043,71.09077765,,,70.13457941,72.04697589,,,,,,,66.50003964,64.71034144,68.28973784,,,,72.20841491,71.04258542,73.37424441,,,,688.5834876,773,92422,638.3048548,738.8621204,,,,,,,970.293755,848.1700193,1092.417491,,,,613.7729065,557.4886109,670.0572021,,,,74.15952538,27,36408,48.87159452,107.8982159,,,,,,,,,,,,,84.4481977,50.84333155,131.8763215,,,,6.618531889,22,3324,4.147798698,10.02053682,,,,,,,,,,,,,,,,,,,,,,0.167,,,0.146,0.19,0.219,,,0.192,0.249,0.146,,,0.126,0.167,318.1,84,26405,,,0.186,6060,,,,0.062893469,2137.371635,33984,,,25.28163744,25,98886,16.36094275,37.32068412,,,,,,,,,,,,,25.89726403,15.08611064,41.46402842,,,,0.401,,,0.387,0.415,0.133076235,2381,17892,0.110437937,0.155714533,0.043901852,365,8314,0.02960398,0.058199725,0.000781592,25,31986,,,1279.44,0.86,322.5,375,,,0.162804172,281,1726,0.066202951,0.259405392,,,,,,,,,,,,,,,,,,,,,0.176174928,,,,,-9403.014,,,,,0.635522014,33431,52604,0.481143204,0.789900823,40933,,,35458.10638,46407.89362,,,,,,,23215,16826.23404,29603.76596,,,,45261,41769.93617,48752.06383,,,,,,0.479588214,2702,5634,,,63.22693151,,,,,0.331615078,,40933,,,5.432322318,12,2209,,,7.709142615,18,233489,4.568926494,12.18376894,,,,,,,23.43530294,13.11656116,38.65296827,,,,,,,,,,24.52132667,38,166037,17.17443574,33.94785219,22.88646507,,,,,,,,,,,,,29.31372263,19.4787558,42.36649091,,,,23.48874046,39,166037,16.70279064,32.10988145,,,,,,,33.08118122,18.515286,54.56237759,,,,21.74228149,13.93069001,32.35079141,,,,26.98199915,63,233489,20.733709,34.52169793,,,,,,,26.56001,15.47218459,42.52514892,,,,28.92179547,21.09575607,38.69963783,,,,,,,,,,,0.639104292,15412,24115,,,0.532,,,,,10.14628102,,,,,0.645943272,7834,12128,0.615439957,0.676446587,0.177073383,2039,11515,0.137746785,0.21639998,0.759812005,9215,12128,0.723313889,0.796310121,31986,,,,,0.25042206,8010,31986,,,0.160507722,5134,31986,,,0.26861752,8592,31986,,,0.005346089,171,31986,,,0.00543988,174,31986,,,0.000187582,6,31986,,,0.047301945,1513,31986,,,0.65972613,21102,31986,,,0.029630121,894,30172,0.018549847,0.040710394,0.486963046,15576,31986,,,0.749706337,24253,32350,, -22,041,22041,LA,Franklin Parish,2024,1,12390.51571,459,54603,10663.36163,14117.66979,0,,,,2,,,,2,15898.33016,12488.19274,19308.46758,,,,,2,11254.16434,9183.337212,13324.99147,,,,,2,,0.256,,,0.218,0.291,4.996943354,,,4.007093229,6.082849141,6.235100592,,,5.00715574,7.533189388,0.129225736,237,1834,0.113873074,0.144578399,0,,,,,,,0.187032419,0.160044839,0.214019999,,,,0.083832335,0.066672407,0.100992264,,,,,,,0.278,,,0.228,0.327,0.441,,,0.357,0.528,6.2,0.130328491,0.157,,,0.365,,,0.306,0.425,0.404723374,8003,19774,,,0.157273042,,,0.124066829,0.194288381,0.47826087,11,23,0.376622098,0.570307191,849.1,167,19668,,,43.8576349,191,4355,37.63771781,50.07755199,,,,,,,56.10179294,45.49477477,68.43942969,,,,36.26731866,29.12563494,44.6300564,,,,,,,0.109259018,1678,15358,0.092578167,0.125939869,0.000559284,11,19668,,,1788,0.000155376,3,19308,,,6436,0.001605552,31,19308,,,622.8387097,5130,,,,,,,7194,,4746,0.31,,,,,,,0.34,,0.31,0.26,,,,,,,0.26,,0.26,0.782074752,10253,13110,0.755241418,0.808908087,0.353066895,1652,4679,0.285571121,0.420562669,0.047798067,356,7448,,,0.354,1699,,0.225319149,0.482680851,,,,,,,0.548087432,0.409580707,0.686594157,,,,0.2751606,0.206829086,0.343492113,5.411000177,91592,16927,4.189226234,6.632774121,0.409886086,2015,4916,0.308911844,0.510860328,14.74476307,29,19668,,,90.16048566,90,99822,72.49967756,110.8225439,,,,,,,79.12644406,51.20646257,116.8062405,,,,97.04550356,74.57242952,124.1633558,,,,8.3,,,,,1,,,,,0.171219187,1285,7505,0.129500957,0.212937417,0.137103448,0.095383687,0.178823209,0.018654231,0.004613089,0.032695372,0.025316456,0.012033475,0.038599437,0.828,5382,6500,0.779201067,0.876798933,,,,,,,0.847734139,0.756681851,0.938786427,,,,0.876182033,0.83011303,0.922251036,0.318,,6500,0.251735622,0.384264379,72.35825354,,,71.12164694,73.59486013,,,,,,,69.39424694,67.16551801,71.62297587,,,,73.19523292,71.6834608,74.70700504,,,,640.7442798,459,54603,578.9365016,702.5520581,,,,,,,830.2161129,696.9129526,963.5192732,,,,585.028106,513.9920761,656.0641359,,,,45.99181346,10,21743,22.05486224,84.58058245,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.16,,,0.137,0.182,0.216,,,0.187,0.246,0.141,,,0.12,0.162,375.5,61,16247,,,0.157,3130,,,,0.130328491,2706.531769,20767,,,,,,,,,,,,,,,,,,,,,,,,,,0.393,,,0.378,0.407,0.137882617,1473,10683,0.115244319,0.160520915,0.045085297,222,4924,0.029595935,0.060574658,0.002123472,41,19308,,,470.9268293,0.825,114.675,139,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.115938256,,,,,-12557.69,,,,,0.678479792,35169,51835,0.504784876,0.852174707,38584,,,33703.65957,43464.34043,,,,,,,31660,22024.42553,41295.57447,,,,48597,42012.82979,55181.17021,,,,,,0.663105413,1862,2808,,,43.88913738,,,,,0.411984242,,38584,,,7.457121551,10,1341,,,12.09430714,17,140562,7.045379597,19.36415732,,,,,,,26.98145025,13.94170907,47.13116368,,,,,,,,,,11.52203961,11,99822,5.525265849,21.18944107,11.01961492,,,,,,,,,,,,,,,,,,,16.02853079,16,99822,9.161690262,26.02932981,,,,,,,,,,,,,,,,,,,30.59148276,43,140562,22.13920776,41.20652652,,,,,,,26.98145025,13.94170907,47.13116368,,,,30.58003779,20.32021303,44.1966689,,,,,,,,,,,0.64973262,9720,14960,,,0.557,,,,,16.03819534,,,,,0.747673782,5464,7308,0.699692149,0.795655416,0.132702134,883,6654,0.088203211,0.177201057,0.637794198,4661,7308,0.590328542,0.685259855,19308,,,,,0.25103584,4847,19308,,,0.192977004,3726,19308,,,0.30945722,5975,19308,,,0.003573648,69,19308,,,0.004298736,83,19308,,,0.000362544,7,19308,,,0.017712865,342,19308,,,0.655945722,12665,19308,,,0.001302013,24,18433,0,0.006751652,0.520302465,10046,19308,,,0.739961566,14632,19774,, -22,043,22043,LA,Grant Parish,2024,1,10033.37218,429,62721,8645.386731,11421.35763,0,,,,2,,,,2,11624.385,8001.69176,16324.95844,,,,,2,10431.89406,8797.219899,12066.56823,,,,,2,,0.213,,,0.18,0.246,4.527807395,,,3.561975371,5.55501892,5.926440996,,,4.776766413,7.192245093,0.107804604,192,1781,0.093400948,0.122208261,0,,,,,,,0.215962441,0.160700795,0.271224088,,,,0.092838196,0.078190777,0.107485616,,,,,,,0.236,,,0.194,0.281,0.388,,,0.309,0.468,7.2,0.088443258,0.13,,,0.307,,,0.259,0.362,0.705399432,15638,22169,,,0.189191096,,,0.151373788,0.232338787,0.393939394,13,33,0.304721321,0.4796795,476.7,106,22236,,,43.27545996,167,3859,36.71189893,49.839021,,,,,,,65.47619048,41.03357998,99.13173925,,,,43.2136336,36.10587475,50.32139244,,,,,,,0.093031992,1486,15973,0.07754263,0.108521353,4.49721E-05,1,22236,,,22236,0.000136364,3,22000,,,7333.333333,0.000727273,16,22000,,,1375,2621,,,,,,,3061,,2564,0.39,,,,,,,0.5,,0.38,0.39,,,,,,,0.37,,0.39,0.80445151,12650,15725,0.768924949,0.839978072,0.344391785,2398,6963,0.286038975,0.402744595,0.034548715,289,8365,,,0.237,1070,,0.145255319,0.328744681,,,,,,,0.550561798,0.362144547,0.738979049,0.404761905,0,0.959321874,0.10520548,0.053461915,0.156949044,4.628159837,117907,25476,3.266395087,5.989924586,0.284688995,1309,4598,0.202043692,0.367334299,10.79330815,24,22236,,,95.79487363,107,111697,77.64362727,113.94612,,,,,,,58.67855886,28.13864978,107.9119589,,,,111.3311692,90.0735642,136.0965811,,,,8.9,,,,,1,,,,,0.088589653,625,7055,0.060736172,0.116443134,0.07334294,0.044534043,0.102151836,0.008929837,0.001095563,0.016764111,0.008504607,0.000387745,0.016621468,0.864910459,6665,7706,0.812930138,0.916890781,,,,,,,,,,,,,0.805775181,0.695623142,0.915927219,0.374,,7706,0.301858296,0.446141705,74.22844163,,,73.10652233,75.35036093,,,,,,,72.47560931,69.14776449,75.80345413,,,,73.78600499,72.5325785,75.03943147,,,,549.7300324,429,62721,496.5124908,602.9475739,,,,,,,630.040558,471.9436122,824.1085623,,,,566.0863076,505.8280855,626.3445297,,,,63.91975612,13,20338,34.03457809,109.3047297,,,,,,,,,,,,,60.49606776,29.01021595,111.2544225,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.14,,,0.121,0.162,0.195,,,0.169,0.223,0.119,,,0.101,0.138,311.6,59,18937,,,0.13,2880,,,,0.088443258,1973.080649,22309,,,19.43808968,13,66879,10.3499641,33.23972535,,,,,,,,,,,,,19.59900437,9.398484401,36.04326684,,,,0.37,,,0.356,0.384,0.115714786,1321,11416,0.094267978,0.137161595,0.03776752,180,4766,0.025852626,0.049682414,0.000363636,8,22000,,,2750,0.975,180.375,185,,,0.197209302,212,1075,0.11970948,0.274709125,,,,,,,,,,,,,,,,,,,,,0.112495173,,,,,329.1094,,,,,0.741474612,40377,54455,0.490722843,0.992226381,52832,,,45373.2766,60290.7234,,,,,,,43333,25998.02128,60667.97872,,,,62446,54846.68085,70045.31915,,,,,,0.722530522,1953,2703,,,74.26873543,,,,,0.265520896,,52832,,,3.20256205,4,1249,,,,,,,,,,,,,,,,,,,,,,,,,,16.23566577,19,111697,9.622284501,25.65935154,17.01030466,,,,,,,,,,,,,20.59748979,11.99879684,32.97857646,,,,17.90558386,20,111697,10.93719579,27.65372204,,,,,,,,,,,,,22.26623384,13.4057273,34.77148231,,,,31.32892171,49,156405,23.17730875,41.41849595,,,,,,,,,,,,,36.78314663,26.72669065,49.37965748,,,,,,,,,,,0.546523131,9392,17185,,,0.507,,,,,5.063232662,,,,,0.818425361,5499,6719,0.768893252,0.86795747,0.05479881,350,6387,0.028812818,0.080784803,0.769757404,5172,6719,0.71071065,0.828804158,22000,,,,,0.207636364,4568,22000,,,0.158954546,3497,22000,,,0.151318182,3329,22000,,,0.014090909,310,22000,,,0.006272727,138,22000,,,0.0005,11,22000,,,0.056545455,1244,22000,,,0.757818182,16672,22000,,,0.021065675,442,20982,0.012888859,0.029242492,0.434181818,9552,22000,,,1,22169,22169,, -22,045,22045,LA,Iberia Parish,2024,1,12679.75102,1384,194700,11696.32944,13663.17261,0,,,,2,,,,2,18552.76075,16518.07222,20587.44928,,,,,2,10375.7911,9190.413639,11561.16856,,,,,2,,0.218,,,0.188,0.249,4.352060493,,,3.465916153,5.267572497,5.672450539,,,4.60566441,6.762238267,0.110757576,731,6600,0.103186094,0.118329058,0,,,,0.117647059,0.059758292,0.175535826,0.159609121,0.145952755,0.173265487,0.100719425,0.065341048,0.136097801,0.069578313,0.060923377,0.07823325,,,,0.159574468,0.085541789,0.233607147,0.235,,,0.195,0.276,0.433,,,0.36,0.506,6.9,0.058248367,0.156,,,0.328,,,0.278,0.38,0.686710807,48021,69929,,,0.164280987,,,0.130920309,0.200306496,0.209677419,13,62,0.145617882,0.279693756,761.1,525,68975,,,33.08298678,533,16111,30.27433966,35.8916339,,,,,,,46.75841486,41.30094561,52.2158841,23.33722287,14.25498201,36.04244796,26.13817646,22.62789812,29.64845481,,,,24.66367713,12.31201876,44.1301312,0.10281765,5802,56430,0.087328289,0.118307012,0.000463936,32,68975,,,2155.46875,0.000600056,41,68327,,,1666.512195,0.00159527,109,68327,,,626.853211,2827,,,,,,,4768,3214,2132,0.44,,,,,,0.27,0.44,,0.45,0.44,,,,,,0.35,0.41,0.3,0.45,0.827123955,38008,45952,0.809026011,0.8452219,0.459690058,7920,17229,0.398818095,0.52056202,0.042008308,1163,27685,,,0.332,5616,,0.248595745,0.415404255,,,,0.526436782,0.341740746,0.711132817,0.557720409,0.488157574,0.627283244,0.292060492,0.112149775,0.471971208,0.176167047,0.120915762,0.231418331,5.185445107,107878,20804,4.403428155,5.967462059,0.341039811,6048,17734,0.275002907,0.407076715,6.524102936,45,68975,,,99.73982155,350,350913,89.29043883,110.1892043,,,,,,,103.4665723,84.71821587,122.2149288,,,,107.0486682,92.90291753,121.1944189,,,,8.6,,,,,1,,,,,0.168814192,4520,26775,0.146604288,0.191024097,0.114563477,0.092555907,0.136571047,0.0410831,0.026665083,0.055501116,0.020728291,0.016605295,0.024851288,0.816007843,23306,28561,0.791218451,0.840797235,,,,,,,0.801960784,0.751797348,0.852124221,0.840749415,0.753790448,0.927708381,0.842826768,0.797581009,0.888072527,0.3,,28561,0.256908259,0.343091741,72.60578536,,,71.90901086,73.30255986,,,,78.22293501,74.2198195,82.22605052,67.99731582,66.74484934,69.2497823,96.10504285,73.52216133,118.6879244,74.44485203,73.57361633,75.31608772,,,,580.2650013,1384,194700,548.2399824,612.2900202,,,,,,,847.1811803,774.9714541,919.3909066,,,,490.6268936,453.4965862,527.7572011,,,,92.68198494,72,77685,72.51794515,116.7176212,,,,,,,135.7082273,96.95194722,184.7960881,,,,76.11948134,50.9784113,109.3202726,,,,8.488218938,58,6833,6.445460512,10.97299133,,,,,,,14.03016485,10.02335547,19.10510241,,,,,,,,,,,,,0.139,,,0.12,0.158,0.202,,,0.175,0.228,0.132,,,0.114,0.152,434.2,246,56653,,,0.156,10980,,,,0.058248367,4266.110404,73240,,,28.87447304,60,207796,22.03426483,37.1671704,,,,,,,14.87232112,7.13185606,27.35072806,,,,38.74307571,28.46695477,51.52007744,,,,0.394,,,0.381,0.407,0.129149982,5096,39458,0.108894663,0.149405301,0.043473383,775,17827,0.030367,0.056579766,0.000775682,53,68327,,,1289.188679,0.84,693,825,,,0.103747204,371,3576,0.046654185,0.160840223,,,,,,,,,,,,,,,,,,,,,0.144174278,,,,,-11795.65,,,,,0.648348292,38213,58939,0.537387769,0.759308815,45077,,,41087.89362,49066.10638,75625,62117.08511,89132.91489,56823,18610.74468,95035.25532,35204,29879.23404,40528.76596,65128,34801.02128,95454.97872,62747,57356.70213,68137.29787,,,,,,0.508734678,5271,10361,,,44.65435912,,,,,0.301129179,,45077,,,3.297609233,16,4852,,,13.84738575,69,498289,10.77409266,17.52475292,,,,,,,31.84474749,23.71050617,41.8699619,,,,4.787748835,2.61750684,8.033029011,,,,12.76090055,48,350913,9.272089873,17.13091336,13.6786041,,,,,,,,,,,,,16.39835152,11.28787065,23.02938237,,,,22.22773166,78,350913,17.57009949,27.74121507,,,,,,,41.56349487,30.53929268,55.27063702,,,,13.62437596,9.053298878,19.69101664,,,,23.07897626,115,498289,18.86081002,27.2971425,,,,,,,20.60542485,14.18382635,28.9376775,,,,25.99063653,20.47766545,32.53115729,,,,,,,,,,,0.637618166,32713,51305,,,0.596,,,,,31.57242174,,,,,0.685389924,18474,26954,0.665346625,0.705433222,0.130819788,3324,25409,0.106037102,0.155602475,0.843770869,22743,26954,0.81901513,0.868526608,68327,,,,,0.25075007,17133,68327,,,0.165688527,11321,68327,,,0.323181173,22082,68327,,,0.006790873,464,68327,,,0.026299999,1797,68327,,,0.000804953,55,68327,,,0.044930994,3070,68327,,,0.582185666,39779,68327,,,0.017422511,1136,65203,0.012142965,0.022702058,0.509520395,34814,68327,,,0.324371863,22683,69929,, -22,047,22047,LA,Iberville Parish,2024,1,12319.3599,695,87997,10924.59741,13714.1224,0,,,,2,,,,2,14708.63334,12542.74626,16874.52042,,,,,2,10522.56402,8644.819022,12400.30902,,,,,2,,0.227,,,0.194,0.262,4.389360113,,,3.473533497,5.331494314,6.080682773,,,4.91812771,7.258284922,0.130591054,327,2504,0.117393068,0.143789041,0,,,,,,,0.165572575,0.145897072,0.185248077,,,,0.09178744,0.074197219,0.10937766,,,,,,,0.226,,,0.182,0.27,0.411,,,0.333,0.492,7.9,0.019662202,0.129,,,0.321,,,0.265,0.377,0.589431566,17825,30241,,,0.168319526,,,0.133592543,0.207582482,0.268292683,11,41,0.186632551,0.353859022,1113.2,332,29824,,,30.01658375,181,6030,25.64359815,34.38956934,,,,,,,34.16518122,27.92077885,40.40958359,,,,24.17302799,18.30841534,31.31896158,,,,,,,0.087712611,1841,20989,0.073414739,0.102010484,0.00030177,9,29824,,,3313.777778,0.000406697,12,29506,,,2458.833333,0.003016336,89,29506,,,331.5280899,4072,,,,,,,5507,,3084,0.45,,,,,,,0.41,,0.48,0.44,,,,,,,0.35,0.5,0.48,0.796877921,17050,21396,0.764162592,0.82959325,0.484017718,4043,8353,0.402372929,0.565662507,0.044037747,616,13988,,,0.288,1704,,0.183148936,0.392851064,,,,,,,0.342592593,0.23590227,0.449282916,,,,0.06516184,0.005932213,0.124391467,5.37966466,125131,23260,4.149458199,6.609871122,0.435465587,2689,6175,0.321961793,0.548969382,7.376609442,22,29824,,,97.4068547,156,160153,82.12122648,112.6924829,,,,,,,91.22185154,71.1119085,115.2533216,,,,108.9410406,86.77093072,135.0488106,,,,8.5,,,,,1,,,,,0.128770824,1430,11105,0.092474369,0.165067279,0.108846688,0.074366572,0.143326805,0.025664115,0.010763583,0.040564647,0.003151734,0.000117016,0.006186451,0.828212174,9946,12009,0.778731989,0.877692359,,,,,,,0.863511029,0.805082485,0.921939574,,,,0.864660962,0.83043429,0.898887635,0.374,,12009,0.315012251,0.432987749,72.92626719,,,71.87760628,73.9749281,,,,,,,70.80343145,69.21533956,72.39152333,,,,74.26826603,72.85900498,75.67752708,,,,604.2224673,695,87997,557.7151681,650.7297665,,,,,,,720.0974179,643.3368926,796.8579433,,,,533.3522484,472.4092887,594.2952081,,,,94.19480882,27,28664,62.07497255,137.0485014,,,,,,,121.4989129,73.15028242,189.7356028,,,,,,,,,,8.675078864,22,2536,5.436625738,13.13417365,,,,,,,,,,,,,,,,,,,,,,0.139,,,0.119,0.16,0.193,,,0.166,0.22,0.135,,,0.116,0.156,910.6,233,25588,,,0.129,3940,,,,0.019662202,656.4619371,33387,,,39.19283936,37,94405,27.59537585,54.02216635,,,,,,,28.86900136,15.37152737,49.36687153,,,,53.41761446,34.22567352,79.48117606,,,,0.395,,,0.38,0.408,0.105900052,1619,15288,0.088027712,0.123772393,0.040345343,243,6023,0.02723896,0.053451726,0.000576154,17,29506,,,1735.647059,0.89,276.79,311,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.103656899,,,,,-4754.107,,,,,0.664486749,38814,58412,0.593207842,0.735765657,53205,,,45742.70213,60667.29787,,,,,,,41510,30672.21277,52347.78723,,,,72145,61848.14894,82441.85106,,,,,,0.553656025,2688,4855,,,35.8456543,,,,,0.351170003,,53205,,,6.731946144,11,1634,,,11.05372997,25,226168,7.153391217,16.31748598,,,,,,,17.49716822,10.53443826,27.32399559,,,,,,,,,,8.719431145,15,160153,4.766994145,14.62972386,9.366043721,,,,,,,,,,,,,18.58427133,9.895341787,31.77966996,,,,19.98089327,32,160153,13.66691621,28.20705955,,,,,,,20.85070892,11.91798172,33.86024499,,,,19.68813987,11.01930243,32.47259263,,,,26.08680273,59,226168,19.85848291,33.65007488,,,,,,,29.4689149,20.15671598,41.60131512,,,,24.14606512,15.7730114,35.37957994,,,,,,,,,,,0.650544747,16719,25700,,,0.549,,,,,29.83698942,,,,,0.745154863,8228,11042,0.711051519,0.779258208,0.114143426,1146,10040,0.081202625,0.147084228,0.812715088,8974,11042,0.785621014,0.839809161,29506,,,,,0.202196164,5966,29506,,,0.175828645,5188,29506,,,0.464820714,13715,29506,,,0.004236427,125,29506,,,0.004778689,141,29506,,,0.000203349,6,29506,,,0.03575544,1055,29506,,,0.48054633,14179,29506,,,0.016642775,476,28601,0.006121514,0.027164035,0.495831356,14630,29506,,,0.584702887,17682,30241,, -22,049,22049,LA,Jackson Parish,2024,1,12339.97207,330,41907,10129.90727,14550.03686,0,,,,2,,,,2,16447.57832,11962.69274,20932.4639,,,,,2,11302.60275,8610.573181,13994.63232,,,,,2,,0.221,,,0.19,0.253,4.571362026,,,3.66099958,5.563671355,5.913467945,,,4.799878204,7.102852592,0.099426386,104,1046,0.081292092,0.117560681,0,,,,,,,0.142857143,0.102372277,0.183342009,,,,0.084370678,0.064110533,0.104630822,,,,,,,0.239,,,0.197,0.284,0.441,,,0.363,0.527,6.5,0.107265768,0.15,,,0.323,,,0.27,0.381,0.166589049,2504,15031,,,0.167450825,,,0.133838758,0.20707612,0.272727273,6,22,0.159704728,0.392079091,436.9,65,14876,,,30.29235646,86,2839,24.22997508,37.4108138,,,,,,,29.09090909,18.63909437,43.28496678,,,,30.19067797,22.86612466,39.11552511,,,,,,,0.097489996,1072,10996,0.082000635,0.112979358,0.000201667,3,14876,,,4958.666667,0.00013478,2,14839,,,7419.5,0.00121302,18,14839,,,824.3888889,4343,,,,,,,6395,,3963,0.45,,,,,,,0.51,,0.44,0.34,,,,,,,0.26,,0.36,0.832528778,8968,10772,0.800880481,0.864177076,0.348440416,1307,3751,0.268256127,0.428624705,0.031835206,221,6942,,,0.369,1155,,0.280829787,0.457170213,,,,,,,0.624742268,0.56715349,0.682331046,0.256756757,0,0.888213011,0.352911897,0.252222269,0.453601524,4.979891243,87915,17654,3.773015876,6.18676661,0.350277264,1137,3246,0.253421392,0.447133136,15.46114547,23,14876,,,84.67835057,66,77942,65.4902302,107.7316241,,,,,,,77.37472122,45.07362646,123.8844241,,,,92.96148738,68.77342013,122.9000163,,,,9.3,,,,,1,,,,,0.13225256,775,5860,0.100440508,0.164064612,0.117060368,0.083286864,0.150833871,0.010238908,0,0.02140626,0.011945393,0.001509288,0.022381497,0.848572016,4130,4867,0.787653859,0.909490172,,,,,,,0.820295983,0.748952874,0.891639092,,,,0.856575145,0.76463876,0.948511529,0.347,,4867,0.280127825,0.413872175,73.57053666,,,71.92787709,75.21319623,,,,,,,69.23307366,66.19176576,72.27438156,,,,74.77360769,72.76580197,76.78141342,,,,577.0811235,330,41907,511.0980648,643.0641823,,,,,,,819.4323218,669.6005616,969.264082,,,,506.818821,431.6300075,582.0076345,,,,124.1293704,18,14501,73.5669318,196.1779206,,,,,,,,,,,,,128.3697048,66.33049967,224.2360403,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.141,,,0.121,0.162,0.198,,,0.172,0.228,0.125,,,0.108,0.145,493.5,63,12765,,,0.15,2280,,,,0.107265768,1745.643103,16274,,,,,,,,,,,,,,,,,,,,,,,,,,0.389,,,0.374,0.403,0.114109967,909,7966,0.095046138,0.133173797,0.055555556,177,3186,0.036491726,0.074619385,0.00114563,17,14839,,,872.8823529,0.925,154.475,167,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.200597555,,,,,-1348.853,,,,,0.78444899,36047,45952,0.426342915,1.142555065,43813,,,37371.80851,50254.19149,13963,11130.82979,16795.17021,20938,18373.91489,23502.08511,29818,25409.48936,34226.51064,,,,46981,37370.44681,56591.55319,,,,,,0.393809524,827,2100,,,35.24093149,,,,,0.320178942,,43813,,,2.496878901,2,801,,,,,,,,,,,,,,,,,,,,,,,,,,14.82443378,13,77942,7.660001256,25.89530245,16.67906905,,,,,,,,,,,,,19.75247298,9.860363346,35.34263036,,,,17.96207436,14,77942,9.820033199,30.13730867,,,,,,,,,,,,,,,,,,,21.89621196,24,109608,14.02931616,32.57982774,,,,,,,35.33909468,17.64114874,63.23140204,,,,17.5490699,9.344140623,30.00944399,,,,,,,,,,,0.617725617,7632,12355,,,0.531,,,,,14.39908972,,,,,0.685405603,3743,5461,0.645345315,0.725465892,0.106235566,506,4763,0.072627255,0.139843877,0.733565281,4006,5461,0.691557795,0.775572767,14839,,,,,0.212413235,3152,14839,,,0.206617697,3066,14839,,,0.265988274,3947,14839,,,0.004447739,66,14839,,,0.005054249,75,14839,,,0.00047173,7,14839,,,0.020419166,303,14839,,,0.686299616,10184,14839,,,0.006783691,97,14299,0,0.017044032,0.490868657,7284,14839,,,0.651054487,9786,15031,, -22,051,22051,LA,Jefferson Parish,2024,1,10214.8451,7368,1204182,9863.826744,10565.86346,0,,,,2,5503.441161,4319.699088,6687.183235,,14653.98794,13867.56331,15440.41256,,6320.696144,5636.146507,7005.245782,,9433.46219,8949.714057,9917.210322,,,,,2,,0.179,,,0.155,0.208,3.826097006,,,3.1163059,4.557872801,5.784880808,,,4.916040708,6.640329043,0.100030661,3915,39138,0.097058056,0.103003266,0,,,,0.10075275,0.086556361,0.11494914,0.146590344,0.140276091,0.152904596,0.078148634,0.07286592,0.083431347,0.076757629,0.072480006,0.081035251,,,,0.104783599,0.076132949,0.133434249,0.187,,,0.155,0.223,0.362,,,0.313,0.413,7.6,0.048312094,0.13,,,0.273,,,0.235,0.313,0.972555532,428684,440781,,,0.171164302,,,0.142353647,0.202642863,0.357142857,60,168,0.318944059,0.395223789,667.3,2894,433688,,,25.46434247,2051,80544,24.36228128,26.56640366,,,,3.270889087,1.632816047,5.85252409,28.26880412,26.29751665,30.2400916,60.94488189,56.65126955,65.23849423,12.42163581,11.24204857,13.60122304,,,,24.04371585,17.47020074,32.27756627,0.108315026,37619,347311,0.097591622,0.11903843,0.000922322,400,433688,,,1084.22,0.000878173,374,425884,,,1138.727273,0.003078303,1311,425884,,,324.8543097,3403,,,,,,2297,4597,2274,3170,0.44,,,,,,0.33,0.42,0.31,0.46,0.4,,,,,,0.46,0.28,0.3,0.43,0.872104175,267354,306562,0.865541113,0.878667236,0.648731725,75345,116142,0.625136051,0.672327399,0.035652723,7508,210587,,,0.211,19415,,0.153808511,0.268191489,0.2,0,0.439623788,0.155261645,0.066765731,0.243757558,0.33640508,0.301348508,0.371461651,0.319713735,0.272384621,0.367042848,0.11691604,0.09316652,0.14066556,4.961879814,126910,25577,4.721044571,5.202715056,0.343224129,33001,96150,0.317645357,0.368802901,6.917415285,300,433688,,,112.8193132,2450,2171614,108.3518963,117.2867301,,,,45.46438623,32.76673061,61.45464254,117.8454045,109.0649768,126.6258323,64.13639879,55.44104015,72.83175743,132.8640876,126.1290025,139.5991727,,,,7.7,,,,,1,,,,,0.16120892,27470,170400,0.149877453,0.172540387,0.139599274,0.129068888,0.150129659,0.025938967,0.021695982,0.030181952,0.005721831,0.003783882,0.00765978,0.783092341,159873,204156,0.768214409,0.797970274,0.792372881,0.655966945,0.928778818,0.789390839,0.722247913,0.856533765,0.775659284,0.769950781,0.781367788,0.676865765,0.637361982,0.716369549,0.823282236,0.811457472,0.835107,0.33,,204156,0.314602564,0.345397436,75.62260983,,,75.34070381,75.90451584,93.71017407,75.45754415,111.962804,82.14836388,80.30133893,83.99538882,71.2915962,70.71920491,71.86398749,82.57667025,81.56864711,83.58469339,76.1322221,75.75821952,76.50622468,,,,470.0104002,7368,1204182,458.7273849,481.2934155,,,,283.5607268,241.8647897,325.2566639,656.5089529,629.7239241,683.2939816,285.8058584,260.7166412,310.8950756,447.7013326,432.7267811,462.6758841,,,,65.12654015,271,416113,57.37247523,72.88060507,,,,,,,95.21089213,78.84381874,111.5779655,57.65859054,42.6561427,76.22771448,47.82635355,37.80474781,59.68945371,,,,5.927265421,236,39816,5.171034475,6.683496367,,,,,,,8.009060756,6.509369376,9.750744095,4.23509968,3.03918065,5.745390927,5.250194452,4.169412237,6.525512327,,,,,,,0.117,,,0.102,0.134,0.178,,,0.157,0.201,0.115,,,0.099,0.131,573.8,2089,364039,,,0.13,57310,,,,0.048312094,20897.49281,432552,,,56.44857596,733,1298527,52.36202354,60.53512839,,,,,,,51.90657944,44.40643598,59.4067229,21.9625309,15.89439251,29.58338499,74.02967181,67.50139711,80.55794652,,,,0.383,,,0.371,0.395,0.130843626,33200,253738,0.117737243,0.143950009,0.049683987,4866,97939,0.036577604,0.06279037,0.001761043,750,425884,,,567.8453333,0.778954515,2294.8,2946,,,0.09580039,1866,19478,0.069621998,0.121978783,,,,,,,,,,,,,,,,,,,,,0.14424672,,,,,-10360.44,,,,,0.840175663,46681,55561,0.805409505,0.87494182,61157,,,57561.08511,64752.91489,68141,41679.21277,94602.78723,75757,56129.59575,95384.40426,46689,44138.02128,49239.97872,55132,51356.17021,58907.82979,73365,71580.14894,75149.85106,,,,,,0.476194424,22974,48245,,,56.65461502,,,,,0.266265513,,61157,,,4.014494813,113,28148,,,14.4198617,439,3044412,13.0709457,15.7687777,,,,,,,39.40635911,35.10213926,43.71057896,5.9887943,3.94665318,8.713381283,5.2153598,4.154004969,6.465223151,,,,14.2598393,317,2171614,12.63750398,15.88217461,14.59743767,,,,,,,7.586942705,5.468000964,10.25534249,5.951701741,3.583313239,9.294319518,20.35670603,17.60250921,23.11090284,,,,21.36659646,464,2171614,19.42243455,23.31075836,,,,,,,40.87123857,35.70031344,46.0421637,7.058072594,4.474212576,10.59057437,16.97460918,14.56725954,19.38195883,,,,9.821272548,299,3044412,8.708033989,10.93451111,,,,7.780587434,3.731094103,14.30877731,11.01419975,8.856717271,13.53832144,10.64674542,7.850069608,14.11603981,9.425349036,7.916979045,10.93371903,,,,,,,,,,,0.625177082,193733,309885,,,0.661,,,,,148.1054271,,,,,0.626855505,110430,176165,0.615487818,0.638223191,0.160738237,27443,170731,0.150247956,0.171228519,0.855107428,150640,176165,0.844320238,0.865894617,425884,,,,,0.219141832,93329,425884,,,0.190603545,81175,425884,,,0.273424219,116447,425884,,,0.00720384,3068,425884,,,0.045817641,19513,425884,,,0.000605799,258,425884,,,0.157188342,66944,425884,,,0.50482291,214996,425884,,,0.04720334,19298,408827,0.042829053,0.051577627,0.514294972,219030,425884,,,0.015713019,6926,440781,, -22,053,22053,LA,Jefferson Davis Parish,2024,1,12341.03326,663,88158,10939.70944,13742.35708,0,,,,2,,,,2,16716.98238,12601.1757,20832.78906,,,,,2,11590.67778,10068.08282,13113.27274,,,,,2,,0.199,,,0.17,0.234,4.363177038,,,3.4816083,5.326400971,6.109082644,,,4.994736744,7.326500665,0.092654987,275,2968,0.082223535,0.103086438,0,,,,,,,0.150870406,0.120017234,0.181723578,,,,0.081163194,0.0700122,0.092314189,,,,,,,0.23,,,0.187,0.277,0.41,,,0.335,0.49,7.2,0.079756257,0.135,,,0.301,,,0.25,0.356,0.495534884,15981,32250,,,0.182071097,,,0.145051559,0.223216235,0.244444444,11,45,0.167294541,0.32687064,473,153,32345,,,33.02433372,228,6904,28.73763746,37.31102998,,,,,,,48.46526656,36.98410416,62.38440501,,,,29.07436709,24.37426086,33.77447332,,,,49.80842912,26.52089077,85.17393072,0.098905629,2639,26682,0.083416268,0.114394991,0.000371,12,32345,,,2695.416667,0.000218572,7,32026,,,4575.142857,0.001904702,61,32026,,,525.0163934,4499,,,,,,,5199,,4490,0.39,,,,,,,0.33,,0.4,0.38,,,,,,,0.36,,0.38,0.831306779,17844,21465,0.801564277,0.86104928,0.476995772,3836,8042,0.405867988,0.548123557,0.034919355,433,12400,,,0.221,1762,,0.135212766,0.306787234,,,,,,,0.218356773,0.106688641,0.330024905,0.164335664,0,0.467603233,0.158506944,0.113082719,0.20393117,5.786504634,122373,21148,4.957406514,6.615602754,0.200369458,1627,8120,0.147293995,0.253444921,9.275003865,30,32345,,,105.076592,166,157980,89.09176256,121.0614214,,,,,,,108.7420871,72.25832714,157.1625925,,,,110.5259736,91.95002647,129.1019207,,,,8.4,,,,,0,,,,,0.137051448,1585,11565,0.110467893,0.163635004,0.109210526,0.081474962,0.13694609,0.019887592,0.009443883,0.0303313,0.01253783,0.003722847,0.021352812,0.847829457,10937,12900,0.804181983,0.891476932,,,,,,,0.696893367,0.582322242,0.811464492,,,,0.841924399,0.78967068,0.894178117,0.48,,12900,0.402443286,0.557556714,71.98468435,,,71.01128673,72.95808197,,,,,,,68.68746929,66.13290479,71.2420338,,,,72.46773298,71.39515426,73.5403117,,,,602.2715447,663,88158,554.5114348,650.0316547,,,,,,,726.4366872,591.8654077,861.0079666,,,,585.6709786,533.2524232,638.0895341,,,,59.77796755,21,35130,37.00350408,91.37697334,,,,,,,,,,,,,51.04645227,27.18008596,87.29098802,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.135,,,0.116,0.157,0.197,,,0.172,0.228,0.112,,,0.096,0.13,147.1,39,26515,,,0.135,4340,,,,0.079756257,2519.819185,31594,,,46.35433676,44,94921,33.68113206,62.2285335,,,,,,,,,,,,,47.45119306,33.05149458,65.99312279,,,,0.343,,,0.327,0.357,0.124217232,2301,18524,0.102770423,0.14566404,0.043488399,373,8577,0.030382016,0.056594782,0.000593268,19,32026,,,1685.578947,0.98,380.24,388,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.07944509,,,,,-1207.749,,,,,0.543873657,34059,62623,0.433201967,0.654545347,52414,,,45125.65957,59702.34043,,,,,,,40833,20395.38298,61270.61702,121200,6136.680851,236263.3192,53164,45509.87234,60818.12766,,,,,,0.36724106,1982,5397,,,30.71017855,,,,,0.311214561,,52414,,,2.753556677,6,2179,,,13.13215476,29,220832,8.794810144,18.85996479,,,,,,,38.65161094,21.13119537,64.85083549,,,,8.713179555,4.876700454,14.37106462,,,,12.63282539,18,157980,7.359086323,20.22637721,11.39384732,,,,,,,,,,,,,15.93722963,9.284023566,25.51704851,,,,14.55880491,23,157980,9.229033445,21.84535568,,,,,,,,,,,,,14.62843768,8.669739273,23.11923824,,,,22.18881322,49,220832,16.41540617,29.3347878,,,,,,,,,,,,,22.65426684,16.10939832,30.96912855,,,,,,,,,,,0.636816134,14841,23305,,,0.578,,,,,21.45097245,,,,,0.776493751,9071,11682,0.74510709,0.807880412,0.098209441,1086,11058,0.068578995,0.127839888,0.774696114,9050,11682,0.735886015,0.813506212,32026,,,,,0.251826641,8065,32026,,,0.172359958,5520,32026,,,0.161493786,5172,32026,,,0.008649223,277,32026,,,0.005745332,184,32026,,,0.000343471,11,32026,,,0.026509711,849,32026,,,0.775838381,24847,32026,,,0.003778713,114,30169,0,0.009353496,0.50505839,16175,32026,,,0.709209302,22872,32250,, -22,055,22055,LA,Lafayette Parish,2024,1,9123.950643,3488,696149,8698.547787,9549.353498,0,,,,2,4008.024395,2375.409272,6334.406507,1,13454.49799,12473.44856,14435.54742,,4776.805508,3470.834195,6412.638435,,7831.094381,7346.033687,8316.155075,,,,,2,,0.172,,,0.144,0.202,3.878461018,,,3.119035721,4.661373382,5.358047767,,,4.484246121,6.238122059,0.091624849,2118,23116,0.087905739,0.095343958,0,,,,0.090604027,0.067558682,0.113649371,0.145362743,0.137399473,0.153326012,0.074956421,0.062515539,0.087397302,0.062611115,0.058436419,0.066785812,,,,0.088652482,0.055476868,0.121828097,0.188,,,0.149,0.23,0.391,,,0.336,0.444,7.4,0.092744521,0.118,,,0.268,,,0.224,0.314,0.82951194,200537,241753,,,0.209504278,,,0.174931314,0.245189175,0.347457627,41,118,0.301236716,0.393606464,671.2,1639,244205,,,23.62159906,1245,52706,22.30945751,24.93374061,,,,,,,37.45318352,34.6171758,40.28919124,55.27272727,46.48563531,64.05981923,12.79768903,11.5126239,14.08275415,,,,28.5935085,20.13246875,39.41238496,0.090709968,18429,203164,0.079986564,0.101433373,0.001076964,263,244205,,,928.5361217,0.000706027,175,247866,,,1416.377143,0.004006197,993,247866,,,249.6132931,2822,,,,,,,5047,949,2445,0.5,,,,,,0.34,0.47,0.37,0.51,0.47,,,,,,0.47,0.37,0.34,0.49,0.895444135,147391,164601,0.885343187,0.905545082,0.659980765,47349,71743,0.625889573,0.694071956,0.031543417,3682,116728,,,0.202,11752,,0.149574468,0.254425532,,,,0.012115564,0,0.090067525,0.45841785,0.401294414,0.515541286,0.351692484,0.242316112,0.461068856,0.118581525,0.088020753,0.149142296,5.473183391,132867,24276,5.029276226,5.917090556,0.291452076,16864,57862,0.256824711,0.326079441,7.616551668,186,244205,,,81.8597486,999,1220380,76.78349006,86.93600715,,,,,,,84.9229363,74.88568664,94.96018595,47.29291832,31.16633118,68.80871319,85.7609172,79.31964085,92.20219356,,,,8,,,,,1,,,,,0.144471479,13360,92475,0.127809159,0.161133798,0.116471171,0.103510321,0.129432021,0.030981346,0.020366941,0.041595752,0.004649905,0.002530218,0.006769593,0.83681563,97484,116494,0.820233838,0.853397422,,,,0.774784483,0.743844298,0.805724668,0.84361422,0.811254707,0.875973733,0.798375761,0.763984397,0.832767126,0.855096333,0.841046808,0.869145858,0.264,,116494,0.246733679,0.281266321,76.4919723,,,76.11594769,76.8679969,,,,86.46311366,80.96486258,91.96136474,72.03818563,71.25386902,72.82250224,86.77014367,82.51491873,91.02536862,77.64649751,77.21324794,78.07974709,,,,431.3002506,3488,696149,416.6388354,445.9616658,,,,211.5211807,140.5542885,305.7069993,636.5300246,599.4243504,673.6356989,201.5361661,151.4001707,262.9609799,383.1000273,366.4830683,399.7169864,,,,63.50774442,162,255087,53.72805073,73.28743811,,,,,,,113.6475936,91.61600055,139.3786849,,,,40.73094793,31.00628474,52.53995524,,,,5.954931026,139,23342,4.964953337,6.944908714,,,,,,,10.13603628,7.986043729,12.68676087,,,,3.84557382,2.863282298,5.056219377,,,,,,,0.116,,,0.098,0.136,0.178,,,0.153,0.203,0.111,,,0.095,0.128,416.6,844,202575,,,0.118,28410,,,,0.092744521,20550.14536,221578,,,38.90558322,286,735113,34.39653391,43.41463254,,,,,,,26.46727983,19.76703052,34.70831619,,,,46.57906166,40.45174508,52.70637824,,,,0.327,,,0.313,0.34,0.111458725,16317,146395,0.095969363,0.126948086,0.039871307,2367,59366,0.029147903,0.050594711,0.001896186,470,247866,,,527.3744681,0.840642329,1819.15,2164,,,0.076255708,835,10950,0.050946102,0.101565314,,,,,,,,,,,,,,,,,,,,,0.134171009,,,,,-5970.176,,,,,0.707959502,45451,64200,0.656139895,0.759779108,58641,,,53265,64017,,,,105938,91528.12766,120347.8723,39959,35345.55319,44572.44681,57788,41835.14894,73740.85106,79261,74249.59575,84272.40426,,,,,,0.436066234,15169,34786,,,46.99770422,,,,,0.231476271,,58641,,,5.01002004,80,15968,,,9.695183433,165,1701876,8.21583618,11.17453069,,,,,,,27.89618157,23.00576532,32.78659782,,,,3.146477518,2.191636879,4.375988544,,,,14.54609321,180,1220380,12.38098835,16.71119807,14.74950425,,,,,,,6.439007903,3.985847378,9.842707567,,,,18.26652078,15.26639913,21.26664243,,,,19.66600567,240,1220380,17.17791266,22.15409868,,,,,,,33.04274249,26.78179201,39.30369296,,,,15.99359249,13.21195688,18.7752281,,,,11.39918537,194,1701876,9.795094295,13.00327645,,,,,,,12.7206588,9.634502748,16.48108893,13.86176044,6.91974087,24.80251845,11.05762099,9.103438061,13.01180393,,,,,,,,,,,0.635468746,114521,180215,,,0.646,,,,,73.08674221,,,,,0.662968043,64768,97694,0.646517568,0.679418518,0.130295091,12085,92751,0.116567279,0.144022903,0.896298647,87563,97694,0.883202859,0.909394435,247866,,,,,0.237894669,58966,247866,,,0.150617673,37333,247866,,,0.271574157,67314,247866,,,0.004566984,1132,247866,,,0.020494945,5080,247866,,,0.000423616,105,247866,,,0.048703735,12072,247866,,,0.640341959,158719,247866,,,0.014428345,3279,227261,0.01131221,0.017544479,0.511921764,126888,247866,,,0.090799287,21951,241753,, -22,057,22057,LA,Lafourche Parish,2024,1,10241.28768,1638,272877,9503.456619,10979.11874,0,10445.59423,6190.721148,16508.54225,1,,,,2,17412.53351,14880.62848,19944.43853,,7213.394065,4465.204618,11026.43908,1,9172.271346,8381.929601,9962.613091,,,,,2,,0.201,,,0.17,0.235,4.458181155,,,3.621065107,5.343517268,6.463677325,,,5.46783871,7.503277656,0.092148509,757,8215,0.085893847,0.098403171,0,0.083333333,0.044238393,0.122428274,,,,0.160553217,0.142908446,0.178197989,0.074003795,0.051653546,0.096354044,0.073842303,0.066988545,0.080696061,,,,0.093959732,0.04710995,0.140809513,0.227,,,0.182,0.272,0.387,,,0.325,0.449,7.2,0.084330293,0.129,,,0.306,,,0.255,0.358,0.69447605,67751,97557,,,0.178923703,,,0.145711016,0.213608481,0.333333333,33,99,0.282314542,0.384507375,522,509,97504,,,22.55949379,492,21809,20.56605516,24.55293242,23.77972466,14.31694764,37.1349857,,,,35.45261168,29.77901218,41.12621117,35.91160221,25.53665975,49.09234242,17.47020585,15.33841673,19.60199497,,,,34.7826087,22.2858737,51.75376463,0.092074021,7329,79599,0.078967638,0.105180404,0.000502544,49,97504,,,1989.877551,0.000479816,46,95870,,,2084.130435,0.002044435,196,95870,,,489.1326531,3163,,,,,,,4486,,3071,0.44,,,,,,0.2,0.36,,0.45,0.43,,,,,,0.55,0.31,0.38,0.44,0.820352422,54423,66341,0.804676892,0.836027951,0.529649226,13514,25515,0.48779558,0.571502872,0.033997337,1379,40562,,,0.184,3921,,0.120851064,0.247148936,0.209109731,0.048190911,0.370028551,,,,0.55205321,0.399265958,0.704840462,0.199178645,0.082286135,0.316071155,0.151042376,0.115789968,0.186294785,5.637008352,120818,21433,4.898867226,6.375149477,0.229173259,5070,22123,0.175951084,0.282395434,4.512635379,44,97504,,,92.38536142,452,489255,83.86829535,100.9024275,87.28542333,45.10165194,152.4700687,,,,122.275548,96.95690489,152.1825039,59.55926147,31.71279833,101.848151,90.91296883,81.26347079,100.5624669,,,,8.5,,,,,0,,,,,0.125665166,4605,36645,0.106525893,0.144804439,0.102115224,0.083983388,0.120247061,0.021285305,0.013470964,0.029099646,0.005594215,0.002593467,0.008594963,0.801894142,32937,41074,0.78137066,0.822417625,,,,,,,0.674840839,0.596723274,0.752958405,0.777105118,0.641510287,0.912699949,0.800014183,0.775290543,0.824737824,0.384,,41074,0.348715013,0.419284987,75.18437631,,,74.59581054,75.77294207,78.97572086,71.31330922,86.63813249,,,,68.41865652,66.76996018,70.06735286,98.60081991,65.7258015,131.4758383,76.1364784,75.49813569,76.77482112,,,,482.2043273,1638,272877,457.9814809,506.4271736,496.6800042,349.7085594,684.6079602,,,,824.2139225,730.8046415,917.6232035,336.8615889,228.8811062,478.1481364,443.0076078,417.0538995,468.9613162,,,,66.15016087,66,99773,51.16052962,84.15922388,,,,,,,117.5709835,71.81541112,181.5788484,,,,51.55322502,35.90871014,71.69805625,,,,6.87937374,58,8431,5.223796902,8.893185831,,,,,,,12.4260355,7.691911825,18.99451523,,,,5.189413596,3.501275562,7.408210586,,,,,,,0.133,,,0.112,0.153,0.202,,,0.174,0.23,0.113,,,0.097,0.13,196,160,81642,,,0.129,12620,,,,0.084330293,8122.525122,96318,,,30.40510533,89,292714,24.41779626,37.41609844,,,,,,,38.36611505,21.47322335,63.27907223,,,,31.65502267,24.72283533,39.92850384,,,,0.359,,,0.344,0.372,0.111657914,6421,57506,0.094977063,0.128338765,0.043457601,1006,23149,0.031542707,0.055372494,0.000990925,95,95870,,,1009.157895,0.94,774.56,824,,,0.136009131,715,5257,0.080484421,0.19153384,,,,,,,,,,,,,,,,,,,,,0.123523576,,,,,-1371.209,,,,,0.628754462,40339,64157,0.576424563,0.68108436,59575,,,54552.87234,64597.12766,50000,32581.61702,67418.38298,52734,3582.680851,101885.3192,27541,15820.31915,39261.68085,50536,22339.40426,78732.59575,68876,64106.46809,73645.53192,,,,,,0.417379018,5908,14155,,,56.27827812,,,,,0.285858162,,59575,,,3.79976871,23,6053,,,8.310431049,57,685885,6.29423932,10.76712735,,,,,,,33.67113081,22.87789977,47.79348247,,,,3.804798612,2.324069838,5.876202869,,,,14.73751728,73,489255,11.46666811,18.65127134,14.92064465,,,,,,,,,,,,,16.75715769,12.81789785,21.52527008,,,,17.16896097,84,489255,13.69463567,21.25634194,,,,,,,39.73955308,25.95919545,58.22765274,,,,13.59695428,10.12382555,17.87748381,,,,19.97419393,137,685885,16.62943324,23.31895461,,,,,,,27.15413775,17.57272622,40.08486396,,,,18.83375313,15.30714519,22.92941866,,,,,,,,,,,0.615764482,45388,73710,,,0.637,,,,,37.88740572,,,,,0.78271967,28826,36828,0.763691692,0.801747648,0.110821643,3871,34930,0.091828065,0.129815222,0.825703269,30409,36828,0.807940038,0.843466501,95870,,,,,0.224460207,21519,95870,,,0.169208303,16222,95870,,,0.137769897,13208,95870,,,0.030541358,2928,95870,,,0.009074789,870,95870,,,0.000761448,73,95870,,,0.046604777,4468,95870,,,0.75915302,72780,95870,,,0.00774219,708,91447,0.004265032,0.011219347,0.504558256,48372,95870,,,0.233678772,22797,97557,, -22,059,22059,LA,LaSalle Parish,2024,1,9574.231043,286,41581,7921.532876,11226.92921,0,,,,2,,,,2,9863.520076,6319.743427,14676.13602,1,,,,2,9946.704149,8016.566152,11876.84215,,,,,2,,0.195,,,0.164,0.229,4.276629922,,,3.359047293,5.251892937,5.694951816,,,4.602123867,6.780607916,0.094355518,112,1187,0.07772548,0.110985556,0,,,,,,,0.13592233,0.069737379,0.202107282,,,,0.088092933,0.070808636,0.105377231,,,,,,,0.228,,,0.183,0.273,0.385,,,0.304,0.471,7.1,0.121107604,0.119,,,0.296,,,0.243,0.352,0.517612061,7656,14791,,,0.193600851,,,0.153922858,0.237287128,0.133333333,2,15,0.028850285,0.292021979,357.3,53,14834,,,32.8140537,99,3017,26.66964364,39.94993296,,,,,,,,,,,,,33.99433428,27.11521236,42.08729898,,,,,,,0.096857936,1082,11171,0.081368574,0.112347297,0.000539302,8,14834,,,1854.25,0.00020368,3,14729,,,4909.666667,0.000950506,14,14729,,,1052.071429,5405,,,,,,,11701,,5065,0.36,,,,,,,0.32,,0.37,0.2,,,,,,,0.18,,0.2,0.828855023,8267,9974,0.798023863,0.859686183,0.384269663,1539,4005,0.280203893,0.488335433,0.02640897,179,6778,,,0.225,698,,0.146361702,0.303638298,,,,,,,0.411504425,0.052987571,0.770021279,,,,0.244502423,0.169518151,0.319486694,6.213077424,133693,21518,4.218851235,8.207303612,0.381456129,1226,3214,0.283424876,0.479487383,12.80841311,19,14834,,,91.15648082,68,74597,70.7865742,115.5625604,,,,,,,,,,,,,100.6787698,77.18983548,129.0656391,,,,8.4,,,,,1,,,,,0.146817249,715,4870,0.101778956,0.191855541,0.081865285,0.044941427,0.118789143,0.044147844,0.018801714,0.069493974,0.023613963,0.005653948,0.041573979,0.672347882,4221,6278,0.601930863,0.7427649,,,,,,,,,,,,,0.76916221,0.675721821,0.8626026,0.338,,6278,0.247407623,0.428592377,74.45755738,,,73.16667553,75.74843922,,,,,,,73.06909111,69.40705066,76.73113156,,,,74.21806313,72.76233317,75.67379309,,,,530.0700757,286,41581,466.6150927,593.5250587,,,,,,,691.6306247,489.4389938,949.3170691,,,,526.7155703,457.3633154,596.0678252,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.132,,,0.112,0.153,0.191,,,0.165,0.219,0.108,,,0.092,0.125,362.3,45,12421,,,0.119,1760,,,,0.121107604,1803.292216,14890,,,22.3478669,10,44747,10.71667083,41.0985229,,,,,,,,,,,,,,,,,,,0.368,,,0.353,0.384,0.11827957,924,7812,0.098024251,0.138534889,0.048891416,172,3518,0.033402054,0.064380777,0.000814719,12,14729,,,1227.416667,0.975,167.7,172,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.089263271,,,,,1666.054,,,,,0.635746247,40066,63022,0.420311637,0.851180858,55633,,,48861.76596,62404.23404,,,,,,,46031,27896.53192,64165.46809,83394,76248.6383,90539.3617,60840,46165.61702,75514.38298,,,,,,0.298252427,768,2575,,,29.72771044,,,,,0.252152499,,55633,,,1.17370892,1,852,,,,,,,,,,,,,,,,,,,,,,,,,,15.57494802,12,74597,8.047802919,27.2062998,16.08643779,,,,,,,,,,,,,17.86227184,8.565653646,32.84935388,,,,16.08643779,12,74597,8.312097147,28.09976949,,,,,,,,,,,,,16.23851125,7.786997331,29.86320035,,,,28.67438326,30,104623,19.34648598,40.93446507,,,,,,,,,,,,,33.54811841,22.46770142,48.18069414,,,,,,,,,,,0.631311329,7077,11210,,,0.43,,,,,4.179436003,,,,,0.830653805,3875,4665,0.804155888,0.857151722,0.068885807,298,4326,0.030757248,0.107014366,0.866666667,4043,4665,0.833727856,0.899605478,14729,,,,,0.212845407,3135,14729,,,0.163554892,2409,14729,,,0.136601263,2012,14729,,,0.013646548,201,14729,,,0.00373413,55,14729,,,0.000475253,7,14729,,,0.041754362,615,14729,,,0.793876027,11693,14729,,,0.004012611,56,13956,0,0.011767575,0.452440763,6664,14729,,,1,14791,14791,, -22,061,22061,LA,Lincoln Parish,2024,1,10328.62864,698,132910,9210.462853,11446.79442,0,,,,2,,,,2,14006.15365,11927.62805,16084.67925,,,,,2,8353.111043,6975.231592,9730.990494,,,,,2,,0.209,,,0.179,0.241,4.294958264,,,3.419627252,5.239113444,5.673383116,,,4.579196137,6.831762577,0.111716621,410,3670,0.101524661,0.121908581,0,,,,,,,0.161892902,0.143877375,0.179908428,,,,0.078420149,0.065813782,0.091026516,,,,,,,0.215,,,0.173,0.26,0.437,,,0.354,0.519,5.7,0.193986982,0.148,,,0.307,,,0.254,0.363,0.762604348,36907,48396,,,0.17716925,,,0.140483018,0.21759647,0.219512195,9,41,0.139872546,0.307163907,814.1,392,48152,,,13.47010089,239,17743,11.76233643,15.17786534,,,,,,,15.83057011,13.28009101,18.38104922,35.4767184,20.27800988,57.61196807,9.356879283,7.30780035,11.80243004,,,,,,,0.09684828,3500,36139,0.081358919,0.112337642,0.000664562,32,48152,,,1504.75,0.00041555,20,48129,,,2406.45,0.004384051,211,48129,,,228.0995261,3465,,,,,,,4480,,3055,0.43,,,,,,,0.42,,0.43,0.4,,,,,,0.55,0.29,0.36,0.43,0.886569321,23315,26298,0.867067677,0.906070965,0.670437547,7171,10696,0.599898427,0.740976667,0.035035129,748,21350,,,0.381,3533,,0.317851064,0.444148936,,,,,,,0.570193741,0.49301573,0.647371752,0.666666667,0.361908442,0.971424892,0.184765712,0.10992117,0.259610254,6.620199719,98780,14921,5.608651717,7.63174772,0.400680924,3766,9399,0.336543978,0.464817869,12.46054162,60,48152,,,58.37909182,138,236386,48.63875752,68.11942613,,,,,,,52.6193934,39.05512801,69.37211032,,,,64.00531007,50.82945508,79.55275632,,,,9.6,,,,,1,,,,,0.177491601,3170,17860,0.148678464,0.206304739,0.149926794,0.119906284,0.179947304,0.021276596,0.011326659,0.031226533,0.027995521,0.015067597,0.040923444,0.793021033,16590,20920,0.756988466,0.829053599,,,,,,,0.768310476,0.667215208,0.869405743,0.632281553,0.406045585,0.858517522,0.823067812,0.786608784,0.859526839,0.215,,20920,0.174175186,0.255824814,74.79981725,,,73.90005098,75.69958352,,,,,,,71.6704925,70.10837131,73.2326137,,,,76.36752246,75.22667735,77.50836757,,,,514.6611376,698,132910,474.7907558,554.5315194,,,,,,,693.9834527,615.292869,772.6740364,,,,431.879135,384.6409591,479.1173109,,,,47.27573573,24,50766,30.29045593,70.34254736,,,,,,,67.23442403,37.63059674,110.8929577,,,,,,,,,,5.373455132,20,3722,3.282245993,8.298865638,,,,,,,,,,,,,,,,,,,,,,0.136,,,0.117,0.157,0.193,,,0.166,0.221,0.133,,,0.114,0.153,147.1,61,41466,,,0.148,7150,,,,0.193986982,9065.981625,46735,,,9.897770174,14,141446,5.411203057,16.60677652,,,,,,,,,,,,,13.17228025,6.316620383,24.22429238,,,,0.393,,,0.378,0.408,0.11376935,3072,27002,0.093514031,0.13402467,0.049787367,480,9641,0.033106515,0.066468218,0.001308982,63,48129,,,763.952381,0.856940299,344.49,402,,,0.090552895,416,4594,0.028444618,0.152661172,,,,,,,,,,,,,,,,,,,,,0.166845262,,,,,-7861.182,,,,,0.679791961,33199,48837,0.569983222,0.7896007,44752,,,38115.40426,51388.59575,,,,53892,11164,96620,25206,22726.51064,27685.48936,,,,53448,47139.06383,59756.93617,,,,,,0.451411636,2894,6411,,,51.77913528,,,,,0.355202002,,44752,,,7.20242608,19,2638,,,6.929693738,23,331905,4.392831394,10.39794305,,,,,,,13.424821,7.956399747,21.21700497,,,,,,,,,,12.09431215,26,236386,7.666756438,18.14740647,10.99895933,,,,,,,,,,,,,18.65867749,11.23374272,29.1378362,,,,15.2293283,36,236386,10.66643431,21.08380974,,,,,,,18.94298163,11.22681146,29.93807778,,,,14.22340224,8.429689598,22.47910761,,,,12.65422335,42,331905,9.120051139,17.10483385,,,,,,,11.18735084,6.261475338,18.45183388,,,,12.96410071,8.218127779,19.45251639,,,,,,,,,,,0.526423597,19275,36615,,,0.552,,,,,35.5293371,,,,,0.5191487,9367,18043,0.490370301,0.5479271,0.197515904,3260,16505,0.158325316,0.236706492,0.820927784,14812,18043,0.799816905,0.842038662,48129,,,,,0.195349997,9402,48129,,,0.144611357,6960,48129,,,0.397535789,19133,48129,,,0.004508716,217,48129,,,0.014253361,686,48129,,,0.0008311,40,48129,,,0.033306323,1603,48129,,,0.537659208,25877,48129,,,0.005810905,266,45776,0.001473527,0.010148284,0.509858921,24539,48129,,,0.404103645,19557,48396,, -22,063,22063,LA,Livingston Parish,2024,1,10357.63701,2345,408260,9774.196041,10941.07798,0,,,,2,,,,2,11800.65313,9644.565912,13956.74034,,6366.588834,4382.466808,8941.057795,,10656.51965,10008.43774,11304.60156,,,,,2,,0.166,,,0.138,0.196,4.054547307,,,3.247128889,4.927968771,5.514588886,,,4.594774703,6.483780099,0.084172996,1086,12902,0.079382057,0.088963936,0,,,,0.097902098,0.04919291,0.146611286,0.133090909,0.115136724,0.151045094,0.073248408,0.056610014,0.089886801,0.078199282,0.07301594,0.083382624,,,,,,,0.193,,,0.153,0.235,0.37,,,0.312,0.429,7.8,0.078057346,0.104,,,0.278,,,0.232,0.329,0.604644298,86030,142282,,,0.186853868,,,0.1548487,0.22366157,0.354166667,51,144,0.312684498,0.395529947,446.4,651,145830,,,23.04362719,740,32113,21.38331005,24.70394433,,,,,,,29.30127724,23.16144373,36.56932008,34.72630959,26.43527583,44.79440928,21.96574833,20.19328985,23.7382068,,,,23.39181287,12.08689105,40.86078957,0.085701912,10686,124688,0.073787018,0.097616806,0.000205719,30,145830,,,4861,0.000370558,55,148425,,,2698.636364,0.001212734,180,148425,,,824.5833333,2978,,,,,,,7358,,2892,0.42,,,,,,0.45,0.4,,0.43,0.41,,,,,,0.58,0.35,0.26,0.42,0.886906329,84202,94939,0.873545123,0.900267536,0.559754601,22810,40750,0.516788445,0.602720758,0.028464077,2053,72126,,,0.151,5575,,0.104531915,0.197468085,,,,0.028915663,0,0.248800262,0.21996124,0.117134871,0.32278761,0.118583367,0.01495987,0.222206863,0.125338301,0.095648137,0.155028465,4.318640698,139030,32193,3.833892074,4.803389323,0.217826397,7945,36474,0.179953284,0.25569951,6.720153604,98,145830,,,116.0769384,822,708151,108.141588,124.0122888,,,,,,,69.22057631,48.21466765,96.26906507,61.52584085,36.46411259,97.23735394,125.3005907,116.4328802,134.1683013,,,,9.5,,,,,1,,,,,0.094269871,4590,48690,0.0757545,0.112785241,0.067858628,0.04896321,0.086754046,0.024132265,0.015626939,0.032637592,0.005442596,0.002035302,0.00884989,0.853493174,55390,64898,0.8337729,0.873213448,,,,,,,0.764887064,0.678113079,0.851661049,0.637393768,0.437909114,0.836878421,0.796957672,0.76026036,0.833654984,0.596,,64898,0.554128006,0.637871995,74.80512714,,,74.31314875,75.29710553,,,,,,,73.12710434,70.93837171,75.31583697,88.17424233,77.94128359,98.40720107,74.48880362,73.966102,75.01150524,,,,497.0491813,2345,408260,476.6142036,517.4841589,,,,,,,647.4169843,545.3150654,749.5189031,323.3815297,229.9558802,442.0731967,503.8032129,481.9079884,525.6984375,,,,67.76741211,107,157893,54.92681902,80.6080052,,,,,,,113.0901894,64.64081463,183.6513825,,,,65.61987345,52.34098097,81.24186842,,,,7.120191936,92,12921,5.739879635,8.732283337,,,,,,,,,,,,,6.426006426,4.990045431,8.146494345,,,,,,,0.12,,,0.101,0.14,0.186,,,0.161,0.213,0.099,,,0.084,0.114,324,388,119758,,,0.104,14630,,,,0.078057346,9993.369731,128026,,,62.04165853,267,430356,54.59975837,69.4835587,,,,,,,,,,,,,69.67715349,61.15832431,78.19598267,,,,0.365,,,0.349,0.38,0.103562637,9087,87744,0.088073275,0.119051999,0.04526547,1752,38705,0.032159087,0.058371853,0.000384032,57,148425,,,2603.947368,0.91,1456,1600,,,0.111930044,896,8005,0.060728569,0.163131518,,,,,,,,,,,,,,,,,,,,,0.07098032,,,,,-112.5156,,,,,0.651673213,46289,71031,0.580219688,0.723126738,72887,,,65833.38298,79940.61702,63750,36200.38298,91299.61702,138250,40868.38298,235631.617,67740,54597.87234,80882.12766,62753,38335.80851,87170.19149,79719,74035.59575,85402.40426,,,,,,0.565149257,14786,26163,,,49.64098347,,,,,0.165681123,,72887,,,4.130883792,38,9199,,,7.098837109,70,986077,5.533891786,8.968953625,,,,,,,23.50590586,13.43565619,38.17211847,,,,5.720850515,4.232316705,7.563267772,,,,16.28579123,117,708151,13.29410478,19.27747767,16.52189999,,,,,,,,,,,,,17.48348954,14.16029945,20.80667963,,,,16.23947435,115,708151,13.27137032,19.20757838,,,,,,,21.75503827,10.86003672,38.92577283,,,,16.17308798,13.14468785,19.69015431,,,,20.58662762,203,986077,17.75462754,23.4186277,,,,,,,14.69119116,7.044997203,27.01762362,,,,21.94938565,18.81177164,25.08699966,,,,,,,,,,,0.637291779,65230,102355,,,0.599,,,,,34.00681574,,,,,0.822523609,40937,49770,0.804442617,0.8406046,0.079373009,3813,48039,0.063621067,0.095124952,0.89196303,44393,49770,0.868550486,0.915375574,148425,,,,,0.252208186,37434,148425,,,0.141121779,20946,148425,,,0.094094661,13966,148425,,,0.005127169,761,148425,,,0.008246589,1224,148425,,,0.000471619,70,148425,,,0.049034866,7278,148425,,,0.832204817,123520,148425,,,0.013074379,1755,134232,0.008165523,0.017983235,0.506376958,75159,148425,,,0.38756835,55144,142282,, -22,065,22065,LA,Madison Parish,2024,1,14868.39179,257,29544,12217.00808,17519.77551,0,,,,2,,,,2,18191.80306,14576.5834,21807.02272,,,,,2,10769.58455,6826.99278,16159.66465,1,,,,2,,0.298,,,0.26,0.342,5.200534168,,,4.363944319,6.15969814,6.352674301,,,5.139414187,7.737769675,0.147852148,148,1001,0.125862902,0.169841393,0,,,,,,,0.178335535,0.151066214,0.205604856,,,,0.058558559,0.027671864,0.089445253,,,,,,,0.288,,,0.241,0.341,0.458,,,0.372,0.55,6.6,0.030635603,0.183,,,0.394,,,0.332,0.459,0.835579515,8370,10017,,,0.149449607,,,0.117505013,0.185638187,0.285714286,6,21,0.169385198,0.406827936,1143,112,9799,,,55.1755586,121,2193,45.34427725,65.00683995,,,,,,,65.31678641,52.51469628,78.11887655,,,,37.59398496,22.96338268,58.06086072,,,,,,,0.088895409,606,6817,0.073406047,0.10438477,0.000204103,2,9799,,,4899.5,0.000316523,3,9478,,,3159.333333,0.008229584,78,9478,,,121.5128205,4188,,,,,,,4759,,3704,0.41,,,,,,,0.39,,0.42,0.18,,,,,,,0.16,,0.19,0.764968447,4970,6497,0.723748614,0.80618828,0.364024864,937,2574,0.287860076,0.440189653,0.050242649,176,3503,,,0.487,1138,,0.314234043,0.659765957,,,,,,,0.631046119,0.561107115,0.700985123,0.469230769,0.094635235,0.843826304,0.203180212,0.086102228,0.320258196,6.913449888,79878,11554,5.919985205,7.90691457,0.629875195,1615,2564,0.520761144,0.738989246,4.082049189,4,9799,,,87.2600349,47,53862,64.1153915,116.0373479,,,,,,,98.10041916,67.52781466,137.7694618,,,,77.37799149,42.30326798,129.8271217,,,,8.5,,,,,1,,,,,0.195710456,730,3730,0.119786915,0.271633997,0.132673267,0.060234414,0.20511212,0.092225201,0.018729769,0.165720633,0.022788204,0.002571699,0.043004709,0.824948312,2394,2902,0.790533601,0.859363022,,,,,,,0.749001332,0.662815514,0.835187149,,,,0.879098361,0.817827972,0.940368749,0.202,,2902,0.139064995,0.264935005,70.16088272,,,68.36959389,71.95217154,,,,,,,68.14397923,65.82989988,70.45805857,,,,72.73778484,69.57178245,75.90378722,,,,727.999797,257,29544,635.6851116,820.3144824,,,,,,,881.9776222,746.5191628,1017.436082,,,,546.1831169,426.5735457,688.9356834,,,,119.0912422,13,10916,63.41107082,203.6496511,,,,,,,142.5424388,71.15667186,255.0477972,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.171,,,0.15,0.197,0.22,,,0.193,0.252,0.174,,,0.152,0.2,405.8,33,8131,,,0.183,1890,,,,0.030635603,370.4763459,12093,,,,,,,,,,,,,,,,,,,,,,,,,,0.435,,,0.419,0.45,0.115558425,537,4647,0.094111616,0.137005233,0.03380158,77,2278,0.021886687,0.045716474,0.001055075,10,9478,,,947.8,0.775,62,80,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-38952.21,,,,,0.873815166,36875,42200,0.500754929,1.246875403,33403,,,28441.6383,38364.3617,,,,,,,26399,19032.02128,33765.97872,,,,57391,46634.23404,68147.76596,,,,,,0.310991957,348,1119,,,60.44823462,,,,,0.4758854,,33403,,,8.695652174,6,690,,,28.60709456,22,76904,17.92791386,43.31148495,,,,,,,45.87442918,28.74926053,69.45443707,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,35.27533326,19,53862,21.23805496,55.08680252,,,,,,,53.50931954,31.713014,84.56779413,,,,,,,,,,24.70612712,19,76904,14.87470244,38.5816779,,,,,,,,,,,,,42.26217919,21.09712758,75.61871259,,,,,,,,,,,0.555621654,4670,8405,,,0.497,,,,,24.20459828,,,,,0.554010349,1713,3092,0.508205817,0.599814882,0.133133882,356,2674,0.07961418,0.186653584,0.645536869,1996,3092,0.592713904,0.698359835,9478,,,,,0.250158261,2371,9478,,,0.178413167,1691,9478,,,0.610044313,5782,9478,,,0.004009285,38,9478,,,0.003587255,34,9478,,,0.000211015,2,9478,,,0.033867905,321,9478,,,0.333509179,3161,9478,,,0.007749435,72,9291,0,0.02289489,0.518674826,4916,9478,,,0.285314965,2858,10017,, -22,067,22067,LA,Morehouse Parish,2024,1,16532.3629,747,68309,14633.13058,18431.59522,0,,,,2,,,,2,20154.02494,17186.09097,23121.9589,,,,,2,13166.35613,10787.8557,15544.85656,,,,,2,,0.27,,,0.234,0.308,5.035482285,,,4.031807695,6.105740448,6.382456078,,,5.219704066,7.680700349,0.158891455,344,2165,0.143492069,0.174290841,0,,,,,,,0.208434712,0.185762029,0.231107396,,,,0.093959732,0.074833388,0.113086075,,,,,,,0.272,,,0.227,0.322,0.421,,,0.343,0.502,5.8,0.139189617,0.167,,,0.372,,,0.313,0.433,0.574895626,14734,25629,,,0.145870215,,,0.11601412,0.181277016,0.161290323,5,31,0.077077658,0.265177158,819.2,205,25025,,,45.76271186,243,5310,40.00878037,51.51664336,,,,,,,58.5898709,49.95825753,67.22148428,,,,30.36144578,23.33056858,38.84547821,,,,,,,0.092879581,1774,19100,0.078581709,0.107177454,0.00023976,6,25025,,,4170.833333,0.000368158,9,24446,,,2716.222222,0.003640677,89,24446,,,274.6741573,4006,,,,,,,6631,,3270,0.37,,,,,,,0.42,,0.35,0.42,,,,,,,0.36,,0.44,0.809460782,14066,17377,0.782702534,0.83621903,0.467594895,2821,6033,0.386479104,0.548710686,0.052377601,521,9947,,,0.397,2221,,0.26712766,0.52687234,,,,,,,0.595412844,0.518330448,0.67249524,,,,0.221700128,0.097802081,0.345598176,6.111324508,89097,14579,4.979357336,7.243291679,0.462336337,2719,5881,0.372165133,0.552507542,14.38561439,36,25025,,,136.6196621,171,125165,116.1424314,157.0968927,,,,,,,129.3226516,102.0594143,161.6311256,,,,148.2591766,119.3690407,182.0294155,,,,9.1,,,,,1,,,,,0.161190965,1570,9740,0.124730938,0.197650992,0.130785791,0.096226732,0.165344851,0.029774127,0.009180405,0.050367849,0.007186858,0.00063697,0.013736746,0.853632014,7850,9196,0.824427769,0.882836259,,,,,,,0.790266106,0.753696494,0.826835719,,,,0.901728844,0.837990197,0.965467492,0.388,,9196,0.323980311,0.452019689,68.70340971,,,67.5296038,69.87721561,,,,,,,66.20285813,64.46067117,67.94504509,,,,70.86564922,69.337504,72.39379445,,,,796.505912,747,68309,735.3991182,857.6127058,,,,,,,923.2588293,825.2721257,1021.245533,,,,706.6995714,627.0050447,786.394098,,,,122.9067445,32,26036,84.06812226,173.5076513,,,,,,,182.3537663,119.1195344,267.1905182,,,,,,,,,,12.30769231,28,2275,8.178372156,17.78804217,,,,,,,18.43317972,11.81048606,27.42711029,,,,,,,,,,,,,0.16,,,0.138,0.183,0.217,,,0.19,0.249,0.157,,,0.136,0.18,442.2,92,20806,,,0.167,4330,,,,0.139189617,3894.386303,27979,,,39.12257508,29,74126,26.20100253,56.18654378,,,,,,,28.35190383,13.59583991,52.14016059,,,,49.64284729,29.42149751,78.45710104,,,,0.418,,,0.404,0.432,0.118221097,1587,13424,0.097965777,0.138476416,0.034488532,206,5973,0.022573638,0.046403425,0.001022662,25,24446,,,977.84,0.71,180.34,254,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.274658353,,,,,-18941.74,,,,,0.693833,30512,43976,0.566028829,0.821637171,39493,,,34448.23404,44537.76596,,,,85833,25959.46809,145706.5319,27366,21969.74468,32762.25532,,,,51386,48466.85106,54305.14894,,,,,,0.026936027,88,3267,,,52.18240918,,,,,0.402501709,,39493,,,4.124926341,7,1697,,,22.51859191,40,177631,16.08761221,30.66393083,,,,,,,37.8864118,25.91427763,53.4843092,,,,,,,,,,15.91890921,23,125165,9.8540557,24.33374372,18.37574402,,,,,,,,,,,,,22.24387347,12.44972713,36.68788655,,,,36.75148804,46,125165,26.90670827,49.02133481,,,,,,,45.34690381,29.88389535,65.97736425,,,,30.9552127,18.63706017,48.34039911,,,,28.14823989,50,177631,20.8921662,37.10994515,,,,,,,27.23085848,17.26202839,40.85965795,,,,28.64082119,18.53482936,42.27950199,,,,,,,,,,,0.606921867,11574,19070,,,0.571,,,,,20.63818004,,,,,0.667405531,6323,9474,0.63658324,0.698227822,0.169733428,1439,8478,0.129061961,0.210404894,0.673527549,6381,9474,0.639247816,0.707807282,24446,,,,,0.23165344,5663,24446,,,0.200319071,4897,24446,,,0.479792195,11729,24446,,,0.002863454,70,24446,,,0.005563282,136,24446,,,0.00069541,17,24446,,,0.017344351,424,24446,,,0.480528512,11747,24446,,,0.002515301,60,23854,0,0.008819601,0.507649513,12410,24446,,,0.508213352,13025,25629,, -22,069,22069,LA,Natchitoches Parish,2024,1,13811.64885,811,104588,12405.20499,15218.09272,0,,,,2,,,,2,18079.01406,15599.34518,20558.68294,,,,,2,11012.52971,9317.418381,12707.64104,,,,,2,,0.233,,,0.202,0.268,4.571022531,,,3.686532861,5.554052012,5.990488785,,,4.868748971,7.185645021,0.1237366,404,3265,0.112441739,0.135031462,0,,,,,,,0.153707052,0.136351432,0.171062673,,,,0.092877095,0.077843185,0.107911005,,,,,,,0.24,,,0.198,0.286,0.424,,,0.346,0.505,6.2,0.152650649,0.144,,,0.33,,,0.277,0.388,0.708649873,26585,37515,,,0.169682375,,,0.135475577,0.208414485,0.12,6,50,0.059332716,0.19811466,1158.6,429,37026,,,24.4173141,308,12614,21.69035513,27.14427306,,,,,,,31.21967001,26.81507761,35.62426241,,,,17.70687237,14.25354905,21.16019569,,,,31.44654088,15.07983867,57.83130831,0.086040047,2445,28417,0.072933664,0.099146429,0.000540161,20,37026,,,1851.3,0.000245479,9,36663,,,4073.666667,0.004418624,162,36663,,,226.3148148,3378,,,,,,,4433,,2839,0.44,,,,,,,0.49,,0.42,0.4,,,,,,,0.34,0.4,0.41,0.875462942,19620,22411,0.858394404,0.89253148,0.500547379,4115,8221,0.439918621,0.561176137,0.039252112,655,16687,,,0.337,2735,,0.258361702,0.415638298,,,,,,,0.460365091,0.391018779,0.529711404,0.046783626,0,0.172989861,0.110236221,0.068177974,0.152294467,7.995567243,106421,13310,6.826868992,9.164265494,0.374941232,3190,8508,0.302590398,0.447292066,12.96386323,48,37026,,,100.7773503,192,190519,86.52231186,115.0323887,,,,,,,113.5943024,91.22555252,139.7875638,,,,98.58986616,80.1289783,120.0296245,,,,9.5,,,,,1,,,,,0.167539267,2400,14325,0.135356805,0.199721729,0.16392243,0.133818681,0.194026178,0.010471204,0.002118269,0.018824139,0.005933682,0.001646264,0.010221101,0.833095476,11675,14014,0.799924242,0.86626671,,,,,,,0.860521042,0.820882417,0.900159667,0.522352941,0.285261757,0.759444126,0.832724617,0.785845155,0.879604078,0.263,,14014,0.225096403,0.300903597,71.93684945,,,70.93518997,72.93850894,,,,,,,68.5413991,66.92164607,70.16115213,,,,73.76319013,72.49508094,75.03129932,,,,662.4347144,811,104588,614.3281352,710.5412936,,,,,,,849.4428353,760.6902245,938.1954462,,,,571.5086141,512.9454029,630.0718253,,,,87.12852635,37,42466,61.34652326,120.0951965,,,,,,,123.1527094,79.69794014,181.7976931,,,,59.44339368,29.67392795,106.3606513,,,,11.38747378,38,3337,8.058454194,15.63019746,,,,,,,15.92920354,10.49744551,23.17615484,,,,,,,,,,,,,0.145,,,0.126,0.167,0.201,,,0.176,0.229,0.142,,,0.122,0.164,437.1,136,31114,,,0.144,5470,,,,0.152650649,6039.775594,39566,,,19.49680518,22,112839,12.21854401,29.51839735,,,,,,,,,,,,,20.23745278,10.45698716,35.3507573,,,,0.39,,,0.376,0.403,0.107407042,2178,20278,0.089534702,0.125279383,0.035751475,309,8643,0.025028071,0.046474879,0.001009192,37,36663,,,990.8918919,0.748035055,405.435,542,,,0.098878695,291,2943,0.044414244,0.153343146,,,,,,,,,,,,,,,,,,,,,0.204226047,,,,,-5923.387,,,,,0.82106883,41083,50036,0.69146646,0.950671201,42178,,,38066.17021,46289.82979,88173,3543.893617,172802.1064,115819,88201.46809,143436.5319,24103,21687.85106,26518.14894,42784,40055.48936,45512.51064,52083,45799.08511,58366.91489,,,,,,0.822116301,4312,5245,,,43.49620246,,,,,0.33259045,,42178,,,6.358626537,15,2359,,,15.24957227,41,268860,10.94335635,20.68776671,,,,,,,30.73390764,21.28412448,42.94755538,,,,,,,,,,14.53477305,27,190519,9.312703348,21.62659017,14.17181489,,,,,,,,,,,,,14.43886063,8.081320687,23.81470481,,,,25.71921961,49,190519,19.02722025,34.00217227,,,,,,,37.01387382,24.78877221,53.15809703,,,,19.91714468,12.1659094,30.76041458,,,,20.82868407,56,268860,15.73376411,27.04777877,,,,,,,21.69452304,13.90009026,32.27973062,,,,22.52648622,15.4080999,31.80067726,,,,,,,,,,,0.563348647,16554,29385,,,0.485,,,,,35.31396855,,,,,0.571758258,7928,13866,0.54998154,0.593534976,0.17326772,2183,12599,0.146020797,0.200514642,0.735828646,10203,13866,0.704854406,0.766802885,36663,,,,,0.22395876,8211,36663,,,0.170280664,6243,36663,,,0.410141014,15037,36663,,,0.011292038,414,36663,,,0.007582576,278,36663,,,0.000518234,19,36663,,,0.027193629,997,36663,,,0.524397894,19226,36663,,,0.001165038,41,35192,0,0.004674734,0.513187682,18815,36663,,,0.495268559,18580,37515,, -22,071,22071,LA,Orleans Parish,2024,1,12522.66007,7175,1087777,12109.56611,12935.75404,0,,,,2,4690.364673,3492.284576,6166.963333,,16329.75999,15702.59318,16956.92681,,8534.561894,7093.364835,9975.758952,,7390.502356,6852.390006,7928.614706,,,,,2,,0.206,,,0.174,0.238,4.080961293,,,3.362320808,4.886885062,6.500914119,,,5.629022348,7.427399192,0.122962585,3855,31351,0.119327405,0.126597765,0,,,,0.088343558,0.06885946,0.107827657,0.157330089,0.152023011,0.162637167,0.085995086,0.076365116,0.095625057,0.068918302,0.06361476,0.074221845,,,,0.133333333,0.098217722,0.168448945,0.19,,,0.152,0.228,0.345,,,0.299,0.394,6.7,0.087829986,0.152,,,0.248,,,0.208,0.289,0.949921484,364767,383997,,,0.220642096,,,0.188459364,0.253950343,0.24,60,250,0.208149921,0.272916074,1147.3,4325,376971,,,20.85936997,1619,77615,19.84327609,21.87546384,,,,,,,23.4287769,22.12367216,24.73388163,79.95873098,71.05768351,88.85977845,2.513884829,1.819310916,3.386186367,,,,14.82479784,9.290621882,22.44492209,0.085849591,25452,296472,0.076317676,0.095381506,0.001116797,421,376971,,,895.4180523,0.000832998,308,369749,,,1200.483766,0.006469254,2392,369749,,,154.5773411,3362,,,,,,1250,4356,1430,2369,0.45,,,,,,0.27,0.42,0.34,0.48,0.38,,,,,,0.41,0.28,0.28,0.49,0.886811992,239778,270382,0.880240987,0.893382997,0.730906599,85337,116755,0.70938162,0.752431579,0.044773078,7911,176691,,,0.332,23489,,0.273617021,0.390382979,,,,0.138834316,0.061509607,0.216159025,0.441289863,0.414348888,0.468230838,0.221939702,0.169038471,0.274840934,0.038006059,0.025195872,0.050816246,7.906908665,121545,15372,7.388806983,8.425010347,0.508600794,37905,74528,0.481071962,0.536129627,10.37215064,391,376971,,,141.9452632,2755,1940889,136.6447713,147.2457551,,,,61.69357682,42.97183671,85.80083087,163.2341711,155.8277,170.6406421,90.89072915,73.87149966,110.6562015,120.2557684,111.4838741,129.0276627,,,,7.8,,,,,1,,,,,0.248280317,38440,154825,0.234903379,0.261657255,0.240482106,0.226670352,0.25429386,0.012368804,0.01026195,0.014475657,0.013305345,0.008844626,0.017766064,0.645487213,110652,171424,0.633499038,0.657475388,0.690647482,0.589230992,0.792063973,0.618499257,0.578825563,0.658172951,0.698221816,0.67930019,0.717143441,0.629550556,0.595491243,0.663609868,0.714698213,0.701615416,0.727781009,0.277,,171424,0.26097015,0.29302985,74.54423723,,,74.21018975,74.87828472,,,,85.48654809,82.86521181,88.10788438,71.41416871,70.96384202,71.8644954,80.78973936,78.98921075,82.59026796,79.04553409,78.52748346,79.56358472,,,,539.6043123,7175,1087777,526.644964,552.5636606,,,,226.2711887,180.2237387,280.4971821,685.5254321,666.1172901,704.9335741,341.9027081,293.7477735,390.0576427,348.2684075,330.3238009,366.2130141,,,,90.51116984,311,343604,80.45163139,100.5707083,,,,,,,112.5963943,98.85690147,126.3358871,73.06677491,43.30400154,115.4770054,46.92956425,32.50008749,65.57936217,,,,6.916568888,224,32386,6.0107888,7.822348975,,,,,,,8.899420748,7.557661927,10.24117957,,,,3.674014696,2.529022665,5.159682617,,,,,,,0.125,,,0.107,0.143,0.185,,,0.161,0.209,0.136,,,0.118,0.154,1502.5,4860,323459,,,0.152,58300,,,,0.087829986,30198.49616,343829,,,72.45430753,838,1156591,67.54863819,77.35997687,,,,,,,78.69058861,72.0224906,85.35868661,40.22588381,26.27688283,58.94023994,74.32750313,65.41191526,83.24309099,,,,0.394,,,0.379,0.409,0.102061596,23055,225893,0.090146702,0.113976489,0.035785881,2642,73828,0.025062476,0.046509285,0.001211633,448,369749,,,825.3325893,0.688551744,2448.49,3556,,,0.061156588,1158,18935,0.042010843,0.080302333,,,,,,,,,,,,,,,,,,,,,0.254589499,,,,,-7276.766,,,,,0.818577723,47931,58554,0.779812789,0.857342657,51913,,,49768.31915,54057.68085,56484,21366.04255,91601.95745,73505,58411.21277,88598.78723,33395,31935.42553,34854.57447,63737,58630.2766,68843.7234,87268,83210.97872,91325.02128,,,,,,0.63618097,29445,46284,,,66.2165839,,,,,0.313678655,,51913,,,5.902651653,130,22024,,,38.28066191,1042,2722001,35.95631124,40.60501258,,,,,,,59.92681438,56.13592033,63.71770843,14.40733464,9.028999916,21.81287779,5.453254348,3.992467563,7.273877099,,,,10.89865095,220,1940889,9.420648739,12.37665317,11.33501195,,,,,,,6.412284303,5.00804724,8.088224136,12.07425977,6.238946216,21.09130193,18.87884053,15.42638661,22.33129445,,,,41.83649864,812,1940889,38.95887901,44.71411827,,,,,,,60.70981496,56.19296936,65.22666056,13.7713226,7.707704718,22.71370235,15.32344971,12.3528632,18.79285078,,,,12.19690955,332,2722001,10.8849005,13.50891861,,,,,,,14.23261842,12.38516518,16.08007165,18.33660773,12.18454267,26.50150357,7.468587477,5.739067683,9.555567747,,,,,,,,,,,0.586900125,177819,302980,,,0.569,,,,,272.404411,,,,,0.492872698,76725,155669,0.481597834,0.504147562,0.247445406,36033,145620,0.236654118,0.258236694,0.815428891,126937,155669,0.805346663,0.825511119,369749,,,,,0.193409583,71513,369749,,,0.174364231,64471,369749,,,0.575482287,212784,369749,,,0.003607853,1334,369749,,,0.030772227,11378,369749,,,0.000513862,190,369749,,,0.05925371,21909,369749,,,0.317656032,117453,369749,,,0.012261929,4405,359242,0.010450806,0.014073052,0.529294197,195706,369749,,,0.004304721,1653,383997,, -22,073,22073,LA,Ouachita Parish,2024,1,12731.0308,3078,435240,12076.72252,13385.33907,0,,,,2,,,,2,16954.07391,15760.28594,18147.86188,,8112.738028,4884.398253,12669.04537,1,10398.6899,9619.215443,11178.16436,,,,,2,,0.212,,,0.18,0.243,4.232988019,,,3.365400515,5.114741244,5.834714053,,,4.816407311,6.911146315,0.128806755,1861,14448,0.123344415,0.134269096,0,,,,0.097938144,0.056111859,0.13976443,0.180105171,0.171002271,0.189208071,0.081218274,0.054244544,0.108192005,0.07956044,0.073140204,0.085980675,,,,0.171428571,0.10899781,0.233859333,0.218,,,0.176,0.26,0.371,,,0.305,0.443,6.2,0.154438033,0.145,,,0.312,,,0.26,0.367,0.743832934,119287,160368,,,0.1650176,,,0.13245179,0.2005959,0.26056338,37,142,0.217811329,0.304711735,721.8,1146,158768,,,31.22238586,1166,37345,29.43024194,33.01452978,,,,,,,44.46163919,41.27317723,47.65010115,46.10318332,33.22711936,62.31811062,18.67599569,16.71093894,20.64105245,,,,35.36067893,22.88356697,52.19933762,0.086324928,10958,126939,0.074410034,0.098239821,0.000938476,149,158768,,,1065.557047,0.00064679,102,157702,,,1546.098039,0.005389913,850,157702,,,185.5317647,4188,,,,,,,5073,13793,3866,0.43,,,,,,0.33,0.43,,0.43,0.42,,,,,,0.36,0.36,0.12,0.43,0.880061531,92109,104662,0.869395467,0.890727596,0.586816223,24641,41991,0.545128891,0.628503554,0.036470938,2577,70659,,,0.342,12873,,0.289574468,0.394425532,0.705882353,0.073304469,1,0.292857143,0,0.660417378,0.55594631,0.516774909,0.595117712,0.405194805,0.214286258,0.596103353,0.125205389,0.098047984,0.152362795,6.283754919,111788,17790,5.761633228,6.805876609,0.391655762,15264,38973,0.353209011,0.430102512,12.093117,192,158768,,,103.7640272,804,774835,96.59145602,110.9365983,,,,,,,88.1624669,77.3625647,98.96236909,72.69067323,38.70472205,124.303265,118.6944947,108.5987261,128.7902633,,,,7.3,,,,,1,,,,,0.154507945,8800,56955,0.139886833,0.169129057,0.13369467,0.120441222,0.146948119,0.025634273,0.018712803,0.032555742,0.008427706,0.005445431,0.011409981,0.805131329,54195,67312,0.791021528,0.81924113,,,,0.853159851,0.726609131,0.979710571,0.782599736,0.73847632,0.826723153,0.655597215,0.506412588,0.804781842,0.841665716,0.818089351,0.865242081,0.208,,67312,0.187294123,0.228705878,72.51364182,,,72.03558813,72.99169551,,,,,,,68.87602564,68.07129253,69.68075875,83.59567103,76.82827399,90.36306808,74.30921808,73.71965349,74.89878266,,,,594.1226176,3078,435240,572.4976267,615.7476085,,,,,,,777.9315864,735.2345779,820.6285949,278.5475993,180.2613195,411.191205,514.4722773,488.9573099,539.9872446,,,,100.8807896,171,169507,85.76027787,116.0013013,,,,,,,135.2202909,109.1059346,161.3346472,,,,71.83470712,54.68390736,92.66153844,,,,10.50206654,155,14759,8.84871582,12.15541725,,,,,,,15.51278368,12.5870558,18.43851156,,,,5.839623985,4.190614993,7.922109324,,,,,,,0.135,,,0.116,0.156,0.193,,,0.167,0.22,0.124,,,0.107,0.143,490.1,643,131198,,,0.145,23310,,,,0.154438033,23740.21448,153720,,,25.40442554,118,464486,20.82063835,29.98821273,,,,,,,14.30099592,9.254850525,21.11109111,,,,34.05930811,27.4224303,41.81728301,,,,0.381,,,0.367,0.395,0.105309537,9441,89650,0.089820175,0.120798899,0.04290429,1677,39087,0.029797908,0.056010673,0.001965733,310,157702,,,508.716129,0.897369976,1518.35,1692,,,0.102751456,900,8759,0.063582499,0.141920412,,,,,,,,,,,,,,,,,,,,,0.366060995,,,,,-16788.7335,,,,,0.731888171,41258,56372,0.69227217,0.771504173,47283,,,43308.19149,51257.80851,,,,68077,39746.95745,96407.04255,33047,31351.51064,34742.48936,46071,7987.425532,84154.57447,68127,63774.48936,72479.51064,,,,,,0.470801963,12569,26697,,,64.7698256,,,,,0.336188482,,47283,,,5.18134715,55,10615,,,15.15737489,165,1088579,12.84457482,17.47017496,,,,,,,31.2066915,25.77916518,36.63421783,,,,5.711756222,4.000443838,7.907478195,,,,15.81087755,123,774835,12.95958782,18.66216728,15.87434744,,,,,,,6.369315274,3.834743867,9.946474781,,,,21.6560441,17.47922255,26.53011709,,,,24.39228997,189,774835,20.91470506,27.86987489,,,,,,,34.094079,27.70998504,41.50831784,,,,19.67065072,15.77643708,24.23479185,,,,17.72953548,193,1088579,15.2281837,20.23088726,,,,,,,17.20053862,13.40866369,21.73184577,,,,18.40454783,15.05526187,21.75383379,,,,,,,,,,,0.601626582,69166,114965,,,0.589,,,,,50.08463281,,,,,0.59510026,35465,59595,0.5831106,0.60708992,0.181537588,10234,56374,0.16430729,0.198767887,0.798372347,47579,59595,0.782900834,0.81384386,157702,,,,,0.241772457,38128,157702,,,0.161678355,25497,157702,,,0.377230473,59490,157702,,,0.003386133,534,157702,,,0.010595934,1671,157702,,,0.000564356,89,157702,,,0.024603366,3880,157702,,,0.572636999,90306,157702,,,0.004007559,598,149218,0.002010542,0.006004577,0.51812913,81710,157702,,,0.251945525,40404,160368,, -22,075,22075,LA,Plaquemines Parish,2024,1,9191.239502,339,65558,7792.233905,10590.2451,0,,,,2,,,,2,12615.10523,9235.842527,16826.78253,,,,,2,9004.190351,7252.521648,10755.85905,,,,,2,,0.196,,,0.169,0.224,4.166583317,,,3.27264037,5.076434545,5.546162435,,,4.405637708,6.70725596,0.089005236,170,1910,0.076234818,0.101775653,0,,,,0.11627907,0.048528151,0.184029989,0.13667426,0.104541019,0.1688075,0.077720207,0.039947707,0.115492708,0.073878628,0.058674231,0.089083025,,,,,,,0.212,,,0.173,0.25,0.401,,,0.319,0.485,6,0.20326928,0.13,,,0.293,,,0.242,0.343,0.398086328,9361,23515,,,0.184935656,,,0.145143051,0.227825765,0.555555556,5,9,0.394493124,0.682965544,390.5,91,23303,,,14.85912775,77,5182,11.72659125,18.57136019,,,,,,,23.51916376,15.49927712,34.21914847,,,,13.02083333,9.302274232,17.73067935,,,,,,,0.097404253,1910,19609,0.081914891,0.112893615,0.000214565,5,23303,,,4660.6,0.000266477,6,22516,,,3752.666667,0.001820927,41,22516,,,549.1707317,2639,,,,,,,3604,,2116,0.45,,,,,,0.16,0.41,,0.49,0.3,,,,,,0.53,0.22,,0.3,0.862925542,13409,15539,0.832987241,0.892863844,0.655007187,4101,6261,0.558154874,0.751859501,0.032228455,316,9805,,,0.212,1141,,0.140510638,0.283489362,0.162162162,0,0.8226065,0.367088608,0.051574489,0.682602727,0.308366534,0.160489251,0.456243817,0.1816839,0,0.369541619,0.17265745,0.111250357,0.234064543,5.348389733,143984,26921,4.323374755,6.373404711,0.158599382,924,5826,0.113277224,0.20392154,6.43693945,15,23303,,,85.93206211,100,116371,69.08937794,102.7747463,,,,,,,70.94270333,41.32673901,113.5861404,,,,106.2655822,83.998533,132.6242559,,,,8.2,,,,,1,,,,,0.152906977,1315,8600,0.111823062,0.193990891,0.108839447,0.069681216,0.147997678,0.040116279,0.015535451,0.064697108,0.006976744,0,0.014470168,0.830870279,9108,10962,0.790816848,0.87092371,,,,,,,0.761127596,0.669642151,0.852613042,0.784797631,0.719166176,0.850429086,0.87167019,0.833332552,0.910007829,0.399,,10962,0.327540432,0.470459568,76.05994773,,,74.86027122,77.25962424,,,,,,,72.45706604,69.77554649,75.13858559,93.52796794,73.2689116,113.7870243,76.06150194,74.60451155,77.51849232,,,,440.9049704,339,65558,392.9455287,488.8644121,,,,,,,568.318407,452.0004947,705.432993,,,,437.2796017,378.5223423,496.036861,,,,73.1247354,19,25983,44.02586755,114.1933325,,,,,,,,,,,,,87.92100636,46.814233,150.3475985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.129,,,0.112,0.147,0.188,,,0.163,0.214,0.121,,,0.103,0.14,261.2,50,19142,,,0.13,3060,,,,0.20326928,4683.730753,23042,,,48.84145203,34,69613,33.82412536,68.25103371,,,,,,,,,,,,,54.78326371,35.10067076,81.5131539,,,,0.368,,,0.354,0.381,0.117309091,1613,13750,0.097053772,0.13756441,0.052563059,323,6145,0.035882208,0.069243911,0.000444129,10,22516,,,2251.6,0.92,303.6,330,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.104822376,,,,,1511.708,,,,,0.6486383,40656,62679,0.518773017,0.778503583,71876,,,63918.04255,79833.95745,,,,,,,48333,34517.68085,62148.31915,103922,75199.95745,132644.0426,80055,75522.57447,84587.42553,,,,,,0.541262659,2512,4641,,,48.30857749,,,,,0.226556848,,71876,,,5.747126437,8,1392,,,,,,,,,,,,,,,,,,,,,,,,,,21.0572599,24,116371,13.34849646,31.59622887,20.62369491,,,,,,,,,,,,,28.69836619,17.52970763,44.322299,,,,14.60845056,17,116371,8.509960789,23.38954449,,,,,,,,,,,,,17.71093037,9.430324507,30.28623032,,,,10.40837568,17,163330,6.063262395,16.66481774,,,,,,,,,,,,,,,,,,,,,,,,,,0.649410377,11014,16960,,,0.534,,,,,7.060282826,,,,,0.717816936,5866,8172,0.675305238,0.760328634,0.128672613,981,7624,0.085143573,0.172201653,0.87958884,7188,8172,0.850304179,0.908873501,22516,,,,,0.242449814,5459,22516,,,0.149005152,3355,22516,,,0.213892343,4816,22516,,,0.017454255,393,22516,,,0.045389945,1022,22516,,,0.002398295,54,22516,,,0.083851483,1888,22516,,,0.618315864,13922,22516,,,0.016326903,358,21927,0.007507754,0.025146051,0.486631729,10957,22516,,,0.331873272,7804,23515,, -22,077,22077,LA,Pointe Coupee Parish,2024,1,12209.3327,452,58046,10391.14624,14027.51916,0,,,,2,,,,2,16448.07657,12952.59445,19943.55869,,,,,2,10798.75973,8510.832047,13086.68742,,,,,2,,0.218,,,0.185,0.251,4.514905491,,,3.5745355,5.49813997,6.112365707,,,4.917464935,7.312784554,0.109101187,193,1769,0.094572677,0.123629697,0,,,,,,,0.148351648,0.122531025,0.174172272,,,,0.080338266,0.063016755,0.097659778,,,,,,,0.226,,,0.187,0.271,0.403,,,0.32,0.485,6.5,0.105418542,0.154,,,0.317,,,0.264,0.372,0.298294633,6192,20758,,,0.16703739,,,0.132664376,0.205228107,0.395348837,17,43,0.318230881,0.469929377,766.4,156,20356,,,26.93289993,116,4307,22.03161225,31.83418761,,,,,,,39.24914676,30.53817893,49.67230722,,,,20.08928571,14.65326285,26.88104487,,,,,,,0.095201486,1486,15609,0.080903614,0.109499359,0.000294753,6,20356,,,3392.666667,0.000347377,7,20151,,,2878.714286,0.001191008,24,20151,,,839.625,1727,,,,,,,4108,,1116,0.43,,,,,,,0.38,,0.45,0.34,,,,,,,0.27,,0.36,0.810040984,11859,14640,0.777230844,0.842851123,0.493327685,2329,4721,0.403240855,0.583414514,0.038730609,382,9863,,,0.249,1051,,0.15487234,0.34312766,,,,,,,0.344617092,0.245310311,0.443923874,0.049751244,0,0.11011618,0.15423341,0.067554385,0.240912434,7.915072737,117523,14848,4.66569316,11.16445231,0.407879754,1791,4391,0.297823091,0.517936417,5.403812144,11,20356,,,121.4954138,131,107823,100.6898108,142.3010168,,,,,,,113.7445773,82.31751458,153.2131992,,,,133.685731,107.0767902,164.9008553,,,,8.7,,,,,1,,,,,0.162341248,1470,9055,0.118475075,0.206207421,0.140677966,0.096686092,0.184669841,0.017117615,0.007179702,0.027055527,0.010491441,0.000550134,0.020432749,0.908371618,7118,7836,0.874131774,0.942611463,,,,,,,0.910607867,0.838192944,0.98302279,,,,0.834216503,0.610708773,1,0.506,,7836,0.431734744,0.580265256,73.50034421,,,72.19752815,74.80316026,,,,,,,70.27250603,67.96504163,72.57997044,,,,74.59369579,72.93848489,76.24890668,,,,548.4875564,452,58046,493.0662783,603.9088345,,,,,,,736.6385538,623.2286658,850.0484418,,,,483.2258768,417.4712766,548.9804771,,,,69.08121978,14,20266,37.76734568,115.9065485,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.139,,,0.118,0.16,0.199,,,0.172,0.225,0.126,,,0.107,0.146,365.4,63,17239,,,0.154,3220,,,,0.105418542,2403.753583,22802,,,36.15499489,23,63615,22.91916535,54.25024427,,,,,,,,,,,,,46.77754678,27.72333883,73.92869092,,,,0.382,,,0.369,0.394,0.113234129,1286,11357,0.094170299,0.132297959,0.048528421,216,4451,0.033039059,0.064017782,0.000794005,16,20151,,,1259.4375,0.825,136.95,166,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.108994973,,,,,-8895.158,,,,,0.669127408,41332,61770,0.526273041,0.811981775,56457,,,49652.40426,63261.59575,,,,,,,38557,27589.34043,49524.65957,,,,65787,55428.19149,76145.80851,,,,,,0.536500579,1389,2589,,,52.98950799,,,,,0.330942133,,56457,,,6.161971831,7,1136,,,14.45153153,22,152233,9.056697873,21.87979242,,,,,,,31.76560719,18.50463679,50.85981429,,,,,,,,,,14.99831128,15,107823,7.985969086,25.64756907,13.9116886,,,,,,,,,,,,,19.150806,9.183555861,35.21901408,,,,20.40380995,22,107823,12.78695907,30.89161347,,,,,,,31.74267273,16.4019022,55.44806118,,,,15.36617597,7.368678657,28.25894472,,,,34.81505324,53,152233,26.07886393,45.53894683,,,,,,,41.10843283,25.762436,62.23866134,,,,33.71837543,22.9100002,47.86054243,,,,,,,,,,,0.730067867,12371,16945,,,0.486,,,,,6.38095187,,,,,0.773619408,6346,8203,0.725839986,0.821398829,0.133763962,994,7431,0.090919705,0.176608218,0.79227112,6499,8203,0.748643052,0.835899189,20151,,,,,0.210957273,4251,20151,,,0.224405737,4522,20151,,,0.339586125,6843,20151,,,0.00382115,77,20151,,,0.004168528,84,20151,,,0.000148876,3,20151,,,0.034539229,696,20151,,,0.607860652,12249,20151,,,0.007945051,155,19509,0,0.017368866,0.515706417,10392,20151,,,0.6727045,13964,20758,, -22,079,22079,LA,Rapides Parish,2024,1,14467.80277,3019,359450,13718.55467,15217.05088,0,,,,2,,,,2,21046.41145,19461.31232,22631.51057,,6871.579133,4355.99172,10310.74261,1,12118.19233,11236.41244,12999.97222,,,,,2,,0.198,,,0.17,0.232,4.134294018,,,3.298844417,5.068497649,5.875543107,,,4.837798826,7.026989772,0.118139535,1397,11825,0.112321812,0.123957258,0,,,,0.080851064,0.045996636,0.115705491,0.168267132,0.157434847,0.179099418,0.062256809,0.041368182,0.083145437,0.087872071,0.080889935,0.094854207,,,,0.115942029,0.062525293,0.169358765,0.227,,,0.185,0.272,0.374,,,0.31,0.443,6,0.191260645,0.134,,,0.306,,,0.258,0.361,0.697722711,90720,130023,,,0.164058673,,,0.130142285,0.200512568,0.248,31,125,0.202433627,0.295450728,883,1136,128654,,,33.69009155,1001,29712,31.60300132,35.77718177,,,,,,,47.20598977,43.13680034,51.2751792,31.36882129,21.59285321,44.0534879,26.15470228,23.6621994,28.64720516,,,,28.98550725,18.57156142,43.12813719,0.096554273,9928,102823,0.08344789,0.109660656,0.000839461,108,128654,,,1191.240741,0.000526775,67,127189,,,1898.343284,0.005692316,724,127189,,,175.6754144,2883,,,,,,,4024,,2561,0.46,,,,,,0.49,0.46,0.24,0.46,0.41,,,,,,0.42,0.35,0.29,0.43,0.876365574,75647,86319,0.86307036,0.889660788,0.51912635,17018,32782,0.475962149,0.562290551,0.032191696,1815,56381,,,0.267,8254,,0.201468085,0.332531915,,,,0.094594595,0,0.301928119,0.41921282,0.356079203,0.482346438,0.412166356,0.302599856,0.521732857,0.101930549,0.074668669,0.129192428,5.36114265,118047,22019,4.932413126,5.789872173,0.321866784,10283,31948,0.285822793,0.357910774,12.59191319,162,128654,,,117.3971119,762,649079,109.0615286,125.7326953,,,,,,,135.0422552,119.1961092,150.8884011,69.3962526,38.84055578,114.4585652,116.6946801,106.0420545,127.3473058,,,,7.5,,,,,0,,,,,0.149566989,7340,49075,0.129237315,0.169896664,0.125946675,0.107476155,0.144417196,0.02363729,0.016350187,0.030924393,0.008863984,0.00450278,0.013225188,0.807154763,44065,54593,0.791534439,0.822775088,,,,,,,0.757773513,0.72871375,0.786833275,0.762467192,0.68849119,0.836443193,0.86537473,0.846179135,0.884570325,0.209,,54593,0.184407937,0.233592063,71.22905823,,,70.71409478,71.74402169,,,,86.40679306,78.21296645,94.60061967,66.34369861,65.41212504,67.27527217,87.6206232,79.11608387,96.12516253,72.94920917,72.31756181,73.58085652,,,,682.6192382,3019,359450,657.2609059,707.9775706,,,,,,,971.3885149,915.2668569,1027.510173,278.9478877,185.3588456,403.1573643,590.9083716,561.5412819,620.2754613,,,,74.18185968,104,140196,59.92456526,88.43915411,,,,,,,122.1474688,93.86146886,156.2796737,,,,53.84159802,38.465227,73.31697486,,,,6.047051027,73,12072,4.739922707,7.603258796,,,,,,,9.611277232,7.010531565,12.86064513,,,,3.863390512,2.500182638,5.703126518,,,,,,,0.132,,,0.113,0.153,0.199,,,0.172,0.229,0.128,,,0.11,0.148,406.8,432,106193,,,0.134,17450,,,,0.191260645,25172.38732,131613,,,45.75192119,177,386869,39.01162823,52.49221416,,,,,,,52.69130999,40.66604064,67.15939998,,,,44.70501079,36.15399663,53.25602496,,,,0.377,,,0.363,0.389,0.118911254,8554,71936,0.102230403,0.135592106,0.04631917,1500,32384,0.033212787,0.059425553,0.002122825,270,127189,,,471.0703704,0.87,1353.72,1556,,,0.091775256,655,7137,0.058527603,0.125022908,,,,,,,,,,,,,,,,,,,,,0.28260022,,,,,-6462.623,,,,,0.709133105,40639,57308,0.636315046,0.781951165,55870,,,50858.59575,60881.40426,,,,82525,30632.06383,134417.9362,36223,30955.42553,41490.57447,49712,24572.76596,74851.23404,67330,63358.76596,71301.23404,,,,,,0.398676706,8737,21915,,,60.8982851,,,,,0.251082871,,55870,,,5.739210285,50,8712,,,14.88544772,136,913644,12.38367116,17.38722428,,,,,,,36.8096049,29.83490801,43.78430179,,,,5.025657778,3.339513096,7.263474766,,,,15.55587548,99,649079,12.57073085,19.03645194,15.25238068,,,,,,,8.291621488,4.533106625,13.91193195,,,,20.60436723,16.23389787,25.78943807,,,,22.95560325,149,649079,19.26963451,26.64157198,,,,,,,39.68983843,31.56650636,49.26555461,,,,16.70683056,12.92106155,21.2551848,,,,19.81077969,181,913644,16.92463332,22.69692606,,,,,,,16.16870496,11.88015624,21.50094994,,,,22.25648445,18.33904949,26.1739194,,,,,,,,,,,0.60984201,58865,96525,,,0.577,,,,,42.0677511,,,,,0.658969183,31989,48544,0.640656508,0.677281857,0.128753324,5956,46259,0.112987692,0.144518956,0.844841793,41012,48544,0.831614446,0.85806914,127189,,,,,0.24699463,31415,127189,,,0.172632854,21957,127189,,,0.316285213,40228,127189,,,0.009827894,1250,127189,,,0.014285827,1817,127189,,,0.000526775,67,127189,,,0.037684077,4793,127189,,,0.605602686,77026,127189,,,0.00797958,966,121059,0.005442815,0.010516345,0.514903018,65490,127189,,,0.397760396,51718,130023,, -22,081,22081,LA,Red River Parish,2024,1,12806.55245,205,22258,10086.34407,15526.76083,0,,,,2,,,,2,13910.04387,9982.087642,18870.54519,,,,,2,13322.18165,9384.745356,17259.61793,,,,,2,,0.234,,,0.201,0.265,4.651082559,,,3.760097878,5.644773816,6.061485175,,,4.89464958,7.321147234,0.118233618,83,702,0.094348094,0.142119142,0,,,,,,,0.159021407,0.119384253,0.198658561,,,,0.075144509,0.047366342,0.102922676,,,,,,,0.248,,,0.206,0.29,0.424,,,0.34,0.51,7.7,0.038642153,0.128,,,0.345,,,0.287,0.4,0.524278215,3995,7620,,,0.157006545,,,0.122952315,0.196077238,0.428571429,6,14,0.287681515,0.555967845,832.9,63,7564,,,40.24024024,67,1665,31.18563347,51.10368266,,,,,,,30.23255814,19.74891072,44.29770242,,,,48.5021398,33.58914178,67.77687888,,,,,,,0.09506152,564,5933,0.079572159,0.110550882,0.000396616,3,7564,,,2521.333333,0.000269542,2,7420,,,3710,0.000808625,6,7420,,,1236.666667,5769,,,,,,,4204,,5471,0.38,,,,,,,0.44,,0.36,0.31,,,,,,,0.21,,0.34,0.796150825,4054,5092,0.744190146,0.848111504,0.333714286,584,1750,0.233285018,0.434143553,0.032871084,128,3894,,,0.366,620,,0.239702128,0.492297872,,,,,,,0.595652174,0.427070145,0.764234203,0.169642857,0,0.559876806,0.075443787,0,0.171966678,7.032388387,102701,14604,4.86759078,9.197185993,0.398776418,717,1798,0.250859484,0.546693353,10.5764146,8,7564,,,111.3666626,46,41305,81.53439392,148.5475214,,,,,,,104.4546851,60.84870335,167.2420695,,,,125.032336,83.73611769,179.5672908,,,,9.8,,,,,1,,,,,0.134146342,440,3280,0.079230913,0.18906177,0.111848341,0.059120642,0.164576041,0.015243902,0,0.035475298,0.013719512,0,0.028382482,0.934362934,2662,2849,0.881768428,0.986957441,,,,,,,0.866404715,0.74509665,0.987712781,,,,0.927330174,0.848906601,1,0.361,,2849,0.268853876,0.453146124,72.2261984,,,70.33067792,74.12171888,,,,,,,71.40906651,68.27420747,74.54392556,,,,71.87571177,69.29594814,74.45547541,,,,663.7116953,205,22258,566.3737546,761.049636,,,,,,,748.0404246,587.3726252,939.0962519,,,,662.5054556,533.2299765,791.7809346,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.144,,,0.125,0.164,0.203,,,0.176,0.23,0.133,,,0.114,0.153,,,,,,0.128,1000,,,,0.038642153,351.2958081,9091,,,,,,,,,,,,,,,,,,,,,,,,,,0.409,,,0.395,0.422,0.114991685,484,4209,0.094736365,0.135247004,0.048199446,87,1805,0.032710084,0.063688808,0.00148248,11,7420,,,674.5454546,0.675,68.175,101,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.006519939,,,,,-11600.24,,,,,0.673684417,34271,50871,0.378030567,0.969338268,44139,,,37763.34043,50514.65957,,,,,,,25679,17931.93617,33426.06383,,,,60266,48921.82979,71610.17021,,,,,,0.785986291,1032,1313,,,53.37348513,,,,,0.317814178,,44139,,,2.004008016,1,499,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,33.89420167,14,41305,18.53027545,56.86871111,,,,,,,,,,,,,,,,,,,32.50752806,19,58448,19.57165543,50.76453184,,,,,,,,,,,,,30.32416533,14.54161596,55.76721971,,,,,,,,,,,0.640123935,4132,6455,,,0.421,,,,,1.236796981,,,,,0.751874574,2206,2934,0.685282432,0.818466716,0.085803432,220,2564,0.036995731,0.134611133,0.752897069,2209,2934,0.692026447,0.813767691,7420,,,,,0.232614555,1726,7420,,,0.195283019,1449,7420,,,0.387466307,2875,7420,,,0.007816712,58,7420,,,0.003234501,24,7420,,,0.000539084,4,7420,,,0.033827493,251,7420,,,0.552695418,4101,7420,,,0.001116851,8,7163,,,0.508894879,3776,7420,,,1,7620,7620,, -22,083,22083,LA,Richland Parish,2024,1,12865.4093,421,55548,11079.18516,14651.63344,0,,,,2,,,,2,18115.50712,14562.96135,21668.05289,,,,,2,10351.07371,8363.124409,12339.02302,,,,,2,,0.255,,,0.221,0.291,4.951790661,,,4.005428398,5.976201663,6.236307461,,,5.019654051,7.528522666,0.143798024,262,1822,0.127686135,0.159909913,0,,,,,,,0.219725343,0.191050329,0.248400357,,,,0.084008097,0.066710571,0.101305623,,,,,,,0.269,,,0.224,0.318,0.43,,,0.345,0.514,6.7,0.067941197,0.16,,,0.355,,,0.297,0.414,0.524622063,10515,20043,,,0.155319493,,,0.122270529,0.191668648,0.270833333,13,48,0.195582836,0.349309145,848.3,168,19805,,,34.47493763,152,4409,28.99421572,39.95565954,,,,,,,48.22616408,38.62718045,59.48679522,,,,27.03844529,20.82289757,34.52749101,,,,,,,0.101581028,1542,15180,0.084900177,0.118261879,0.0006564,13,19805,,,1523.461539,0.000453949,9,19826,,,2202.888889,0.005951781,118,19826,,,168.0169492,6083,,,,,,,10253,,4857,0.42,,,,,,,0.45,,0.41,0.26,,,,,,,0.21,,0.28,0.80130438,10812,13493,0.773272618,0.829336142,0.42517144,2108,4958,0.354316472,0.496026408,0.040545433,336,8287,,,0.305,1418,,0.188234043,0.421765957,,,,,,,0.471837945,0.397101408,0.546574481,0.098039216,0,0.390252148,0.179330065,0.107648884,0.251011247,5.653135135,104583,18500,4.562366132,6.743904139,0.447201018,2109,4716,0.343040255,0.551361781,11.10830598,22,19805,,,94.48599618,95,100544,76.44481328,115.5042306,,,,,,,67.4612098,43.22367004,100.3769328,,,,116.3915346,90.90275414,146.8120836,,,,8.6,,,,,1,,,,,0.159286186,1205,7565,0.122426041,0.196146332,0.117123288,0.082938567,0.151308008,0.033046927,0.014826031,0.051267823,0.023132849,0.006541826,0.039723872,0.817105971,6076,7436,0.768674824,0.865537118,,,,,,,0.712344281,0.658819269,0.765869293,,,,0.817515003,0.756242273,0.878787734,0.36,,7436,0.299773778,0.420226222,72.46000212,,,71.20061891,73.71938534,,,,,,,68.48680387,66.19951988,70.77408786,,,,74.31055813,72.86516795,75.75594831,,,,600.8376353,421,55548,540.2099121,661.4653586,,,,,,,827.5032585,701.5710858,953.4354312,,,,511.8695502,442.2245068,581.5145937,,,,53.51235649,11,20556,26.71317556,95.7483874,,,,,,,117.2332943,56.21792141,215.5962021,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.157,,,0.135,0.179,0.215,,,0.187,0.243,0.144,,,0.124,0.165,78.7,13,16520,,,0.16,3220,,,,0.067941197,1408.081307,20725,,,30.02952904,18,59941,17.79740208,47.45960239,,,,,,,,,,,,,38.48374062,21.03941911,64.56917761,,,,0.398,,,0.384,0.412,0.126028422,1348,10696,0.103390124,0.14866672,0.044642857,210,4704,0.029153495,0.060132219,0.001614042,32,19826,,,619.5625,0.899901186,227.675,253,,,0.17761807,173,974,0.066928316,0.288307824,,,,,,,,,,,,,,,,,,,,,0.228576826,,,,,-10746.4,,,,,0.689131147,37865,54946,0.549626456,0.828635838,44470,,,38394.59575,50545.40426,,,,,,,24090,17727.44681,30452.55319,,,,60108,51532.85106,68683.14894,,,,,,0.591623037,2034,3438,,,53.19413554,,,,,0.357454464,,44470,,,6.339144216,8,1262,,,11.30766023,16,141497,6.463304843,18.36293179,,,,,,,23.95113968,12.37590338,41.83782094,,,,,,,,,,16.97437352,16,100544,9.500428003,27.99664774,15.91343094,,,,,,,,,,,,,24.67608294,13.13897491,42.19685335,,,,19.89178867,20,100544,12.15042129,30.72125428,,,,,,,28.10883742,13.47928012,51.69315281,,,,16.39317388,7.861164073,30.14763044,,,,27.56242182,39,141497,19.59957631,37.67873797,,,,,,,,,,,,,34.94589211,23.57784666,49.88743392,,,,,,,,,,,0.63984551,9940,15535,,,0.582,,,,,16.35259049,,,,,0.637971213,4654,7295,0.591183101,0.684759325,0.123283347,781,6335,0.088591154,0.157975539,0.618642906,4513,7295,0.571882298,0.665403514,19826,,,,,0.236608494,4691,19826,,,0.186623626,3700,19826,,,0.353021285,6999,19826,,,0.003682034,73,19826,,,0.003984667,79,19826,,,0.000252194,5,19826,,,0.024664582,489,19826,,,0.605164935,11998,19826,,,5.32964E-05,1,18763,0,0.006450638,0.508574599,10083,19826,,,1,20043,20043,, -22,085,22085,LA,Sabine Parish,2024,1,12401.90342,524,63507,10672.22337,14131.58347,0,6338.061158,3274.968688,11071.31733,1,,,,2,22577.21264,17090.72968,28063.69561,,,,,2,11606.52213,9532.299308,13680.74496,,,,,2,,0.227,,,0.196,0.261,4.680908175,,,3.741501492,5.772612492,6.164993728,,,4.948798106,7.437036733,0.093010753,173,1860,0.079810956,0.10621055,0,0.142857143,0.088804029,0.196910257,,,,0.121447028,0.088902498,0.153991559,,,,0.075536481,0.060361912,0.09071105,,,,,,,0.257,,,0.212,0.304,0.43,,,0.346,0.512,6.3,0.120549375,0.155,,,0.334,,,0.28,0.392,0.393139246,8710,22155,,,0.165131261,,,0.13053476,0.202786088,0.448275862,13,29,0.356402006,0.533757898,533.1,118,22135,,,33.15485997,161,4856,28.0334407,38.27627924,26.76864245,14.63466592,44.9132335,,,,35.12014787,24.85310688,48.20514688,,,,33.78626515,27.23649826,41.43585494,,,,,,,0.110704375,1875,16937,0.095215013,0.126193737,0.000135532,3,22135,,,7378.333333,9.09711E-05,2,21985,,,10992.5,0.00122811,27,21985,,,814.2592593,4459,,,,,,,7314,,4298,0.37,,,,,,,0.38,,0.37,0.31,,,,,0.33,,0.24,,0.32,0.858343258,12973,15114,0.839392897,0.877293619,0.374740772,1807,4822,0.314257361,0.435224182,0.032634536,302,9254,,,0.337,1682,,0.260744681,0.413255319,0.144615385,0.031640797,0.257589973,,,,0.654357459,0.541473743,0.767241176,0.162251656,0,0.338556676,0.248008313,0.180651913,0.315364714,5.871886793,93363,15900,5.041627561,6.702146024,0.352586542,1813,5142,0.286214056,0.418959029,12.64964988,28,22135,,,97.56345867,115,117872,79.73169338,115.395224,,,,,,,118.7341903,75.2672915,178.1595834,,,,106.9518717,85.42935641,132.2476456,,,,9.2,,,,,1,,,,,0.116862327,1095,9370,0.086134038,0.147590615,0.093191964,0.066593336,0.119790592,0.016008538,0.008829713,0.023187362,0.013340448,0,0.028816378,0.734310202,5312,7234,0.684957725,0.783662679,0.787234043,0.614509336,0.959958749,,,,0.799307959,0.67726976,0.921346157,,,,0.72951208,0.667703895,0.791320264,0.355,,7234,0.295832025,0.414167975,73.05395432,,,71.79653317,74.31137548,84.82028687,74.25761613,95.38295761,,,,64.87616001,61.70770864,68.04461138,,,,73.35826818,71.88103226,74.8355041,,,,587.6247123,524,63507,533.4809466,641.768478,402.2068046,262.7348383,589.3261583,,,,1019.813023,834.414254,1205.211793,,,,562.4142968,499.017952,625.8106417,,,,96.59401117,23,23811,61.23231715,144.938444,,,,,,,,,,,,,101.7663735,55.63662337,170.7466826,,,,10.62134891,20,1883,6.48779585,16.40381195,,,,,,,,,,,,,,,,,,,,,,0.147,,,0.127,0.17,0.206,,,0.18,0.235,0.128,,,0.109,0.148,150.6,28,18588,,,0.155,3460,,,,0.120549375,2921.272991,24233,,,,,,,,,,,,,,,,,,,,,,,,,,0.391,,,0.377,0.405,0.136356032,1630,11954,0.114909223,0.15780284,0.051076806,268,5247,0.035587444,0.066566168,0.000727769,16,21985,,,1374.0625,0.87,249.69,287,,,0.086219602,117,1357,0.031481379,0.140957826,,,,,,,,,,,,,,,,,,,,,0.154887528,,,,,-412.9756,,,,,0.625089619,33131,53002,0.538691324,0.711487915,45072,,,39243.23404,50900.76596,63947,49846.91489,78047.08511,,,,17662,13801.57447,21522.42553,48214,24808.38298,71619.61702,48425,40171.55319,56678.44681,,,,,,0.49383933,2004,4058,,,49.97252863,,,,,0.311235357,,45072,,,0.77579519,1,1289,,,9.63652242,16,166035,5.508105191,15.64910868,,,,,,,,,,,,,,,,,,,17.77200093,22,117872,10.85559987,27.44741404,18.66431383,,,,,,,,,,,,,21.56867901,12.32836366,35.02618343,,,,25.45133704,30,117872,17.17191023,36.33336619,,,,,,,,,,,,,27.6816609,17.34794951,41.91036727,,,,28.90956726,48,166035,21.31563274,38.329892,,,,,,,43.6474739,22.55328669,76.24335303,,,,31.21571845,21.74289165,43.41350782,,,,,,,,,,,0.581239715,10596,18230,,,0.379,,,,,6.100169294,,,,,0.732701763,6110,8339,0.704544554,0.760858971,0.126339764,943,7464,0.094955969,0.157723559,0.720110325,6005,8339,0.686141145,0.754079505,21985,,,,,0.229656584,5049,21985,,,0.213645668,4697,21985,,,0.157834887,3470,21985,,,0.095792586,2106,21985,,,0.004275643,94,21985,,,0.000500341,11,21985,,,0.045758472,1006,21985,,,0.673277235,14802,21985,,,0.008797093,184,20916,0.001059033,0.016535153,0.50507164,11104,21985,,,1,22155,22155,, -22,087,22087,LA,St. Bernard Parish,2024,1,12125.18726,811,133038,10979.3821,13270.99241,0,,,,2,,,,2,15285.06489,12697.9329,17872.19688,,5870.92596,3721.663445,8809.271538,1,12422.43949,10941.19964,13903.67934,,,,,2,,0.219,,,0.189,0.252,4.546741343,,,3.643180115,5.550177368,6.039349571,,,4.936408855,7.253409013,0.107588857,448,4164,0.098177183,0.11700053,0,,,,,,,0.138424821,0.119333235,0.157516407,0.111111111,0.086212057,0.136010165,0.089285714,0.077169908,0.101401521,,,,,,,0.232,,,0.192,0.275,0.406,,,0.331,0.487,5.8,0.161815657,0.158,,,0.325,,,0.272,0.38,0.652979618,28577,43764,,,0.19066207,,,0.152575998,0.232910271,0.233333333,7,30,0.139043554,0.336767009,625.9,277,44258,,,23.57664985,229,9713,20.52299165,26.63030805,,,,,,,24.22145329,19.11519215,30.27266074,52.78310941,39.76346159,68.70447215,17.69911504,14.15700746,21.8582631,,,,34.48275862,16.53582309,63.41502084,0.096140737,3667,38142,0.081842865,0.11043861,0.000248543,11,44258,,,4023.454546,0.000382203,17,44479,,,2616.411765,0.003462308,154,44479,,,288.8246753,3677,,,,,,,5805,3127,3454,0.35,,,,,,,0.39,0.27,0.36,0.34,,,,,,0.21,0.32,0.26,0.35,0.811736025,23641,29124,0.791687901,0.83178415,0.62490503,8225,13162,0.571985952,0.677824107,0.039826104,797,20012,,,0.291,3261,,0.219510638,0.362489362,0.25,0,0.75422434,0.412811388,0.109990392,0.715632384,0.386611619,0.306815229,0.466408009,0.396466431,0.293242914,0.499689948,0.204922418,0.145975783,0.263869054,5.479176947,111041,20266,4.850648627,6.107705267,0.395245559,4539,11484,0.318849928,0.47164119,4.970852727,22,44258,,,127.5466235,296,232072,113.0161695,142.0770774,,,,,,,132.6211089,103.7678499,167.0143379,45.66399602,22.79530228,81.70550257,147.4615547,127.5169592,167.4061502,,,,7.8,,,,,0,,,,,0.182657435,2770,15165,0.153439382,0.211875488,0.151174033,0.125496856,0.17685121,0.038575668,0.024673517,0.052477818,0.006264425,0.001377126,0.011151723,0.828929594,15341,18507,0.799099644,0.858759545,,,,,,,0.660553892,0.597306267,0.723801517,0.711852378,0.586080292,0.837624463,0.828541977,0.760563979,0.896519975,0.481,,18507,0.430688665,0.531311335,73.68163686,,,72.75620423,74.60706949,,,,,,,69.5319243,67.61416257,71.44968602,108.9790608,83.29288803,134.6652336,72.93926636,71.84997361,74.02855911,,,,551.6098314,811,133038,512.7753749,590.4442879,,,,,,,695.9359723,596.1020471,795.7698976,258.9072251,179.3007798,361.7968961,572.7440049,523.7919264,621.6960835,,,,71.92066016,38,52836,50.89533963,98.71672519,,,,,,,113.8952164,67.50152354,180.0035451,,,,48.09293034,25.60745992,82.24037556,,,,6.852551985,29,4232,4.589261611,9.841407712,,,,,,,,,,,,,,,,,,,,,,0.141,,,0.122,0.162,0.202,,,0.175,0.23,0.129,,,0.111,0.149,615.8,222,36052,,,0.158,6900,,,,0.161815657,5808.696629,35897,,,77.6146433,108,139149,62.97643713,92.25284946,,,,,,,42.24374642,23.09504926,70.87782844,,,,108.9002261,87.78895227,133.55646,,,,0.371,,,0.358,0.383,0.121442408,3260,26844,0.102378578,0.140506238,0.037791681,447,11828,0.025876787,0.049706574,0.000607028,27,44479,,,1647.37037,0.89,435.21,489,,,0.151392814,375,2477,0.083497918,0.219287709,,,,,,,,,,,,,,,,,,,,,0.050323106,,,,,-6300.24,,,,,0.685751609,43046,62772,0.586878453,0.784624765,51485,,,45502.53192,57467.46809,,,,67500,37306.46809,97693.53192,36290,28563.19149,44016.80851,42356,24052.34043,60659.65957,64243,57849.46809,70636.53192,,,,,,0.432411476,3346,7738,,,33.9970627,,,,,0.316286297,,51485,,,3.26690624,10,3061,,,9.592533914,31,323168,6.517661396,13.61583619,,,,,,,32.27802136,20.68113734,48.0271372,,,,,,,,,,13.223073,29,232072,8.786635982,19.11102215,12.49612189,,,,,,,,,,,,,13.83394186,8.328936692,21.60341385,,,,16.37422869,38,232072,11.58737876,22.47490818,,,,,,,44.20703629,28.32428229,65.77656584,,,,9.830770311,5.374573609,16.49436214,,,,16.40013863,53,323168,12.28482923,21.45178512,,,,,,,18.82884579,10.29390521,31.59160384,,,,18.48872188,13.01776645,25.48426767,,,,,,,,,,,0.532669383,17650,33135,,,0.625,,,,,49.27124824,,,,,0.719043987,11312,15732,0.696366175,0.741721798,0.153330203,2286,14909,0.126508949,0.180151458,0.829583016,13051,15732,0.806165052,0.853000979,44479,,,,,0.255221565,11352,44479,,,0.133591133,5942,44479,,,0.250207963,11129,44479,,,0.010656714,474,44479,,,0.022954653,1021,44479,,,0.000651993,29,44479,,,0.110411655,4911,44479,,,0.588817195,26190,44479,,,0.014567121,599,41120,0.009735978,0.019398264,0.50695834,22549,44479,,,0.053765652,2353,43764,, -22,089,22089,LA,St. Charles Parish,2024,1,9094.21409,754,150121,8116.575408,10071.85277,0,,,,2,,,,2,13756.9264,11455.80609,16058.0467,,7287.724375,4245.368009,11668.3527,1,7466.742901,6369.198179,8564.287622,,,,,2,,0.159,,,0.134,0.185,3.632949644,,,2.853924059,4.502633433,5.38591236,,,4.382309673,6.450899586,0.106840706,442,4137,0.097427314,0.116254098,0,,,,,,,0.144915933,0.125393348,0.164438518,0.111428571,0.078462553,0.14439459,0.087993421,0.076734459,0.099252384,,,,,,,0.168,,,0.134,0.205,0.371,,,0.303,0.44,7.7,0.112793071,0.094,,,0.263,,,0.215,0.311,0.802451046,42168,52549,,,0.201070711,,,0.162124884,0.244225947,0.371428571,13,35,0.283933479,0.456696423,480.1,251,52282,,,14.69723692,175,11907,12.51966382,16.87481002,,,,,,,24.12619858,19.0707588,30.11058771,23.90438247,15.3159889,35.56782629,9.242403025,7.14807383,11.75860278,,,,,,,0.06025535,2624,43548,0.050723436,0.069787265,0.000344287,18,52282,,,2904.555556,0.000470607,24,50998,,,2124.916667,0.00154908,79,50998,,,645.5443038,3415,,,,,,,4643,7633,2863,0.42,,,,,,,0.36,0.44,0.43,0.36,,,,,,0.46,0.28,0.3,0.39,0.906910061,31945,35224,0.891105407,0.922714716,0.637446049,8566,13438,0.571990813,0.702901284,0.033282295,826,24818,,,0.164,1976,,0.100851064,0.227148936,,,,,,,0.345055606,0.231215748,0.458895463,0.150369004,0,0.309380657,0.060046826,0.029753193,0.090340459,4.656939311,156231,33548,3.667208229,5.646670393,0.292530464,3697,12638,0.232999136,0.352061791,7.459546307,39,52282,,,75.37964447,199,263997,64.90634268,85.85294625,,,,,,,92.048742,70.73278074,117.7703271,76.90032535,40.94618451,131.5018984,69.03128053,56.57578537,81.48677569,,,,8.8,,,,,0,,,,,0.117814604,2275,19310,0.091587354,0.144041854,0.110091743,0.085290937,0.134892549,0.013723459,0.006941201,0.020505718,0.003107198,0,0.006804771,0.857720358,20581,23995,0.82587703,0.889563687,,,,,,,0.869860743,0.807440829,0.932280657,0.786246893,0.710007763,0.862486024,0.881118494,0.85225306,0.909983928,0.418,,23995,0.377647367,0.458352633,75.75549789,,,74.96499527,76.54600052,,,,,,,71.81701249,70.13190114,73.50212384,78.45697748,74.7659607,82.14799427,77.05058895,76.13910185,77.96207604,,,,410.7098068,754,150121,380.3273617,441.0922518,,,,,,,602.7088418,526.3550101,679.0626735,292.3047458,190.9431646,428.2941783,356.4559429,322.4440073,390.4678785,,,,80.16674683,45,56133,58.47417524,107.2694146,,,,,,,107.3096831,62.5118449,171.8131979,,,,66.88353145,41.91555307,101.2624704,,,,6.583588056,28,4253,4.374746451,9.515117786,,,,,,,,,,,,,,,,,,,,,,0.109,,,0.092,0.126,0.173,,,0.148,0.198,0.102,,,0.086,0.118,523.9,228,43518,,,0.094,4910,,,,0.112793071,5953.218272,52780,,,32.83470881,52,158369,24.52253105,43.05835217,,,,,,,41.44926123,24.14572212,66.36428248,,,,29.31634288,19.77961344,41.85090235,,,,0.346,,,0.33,0.361,0.072269721,2240,30995,0.060354827,0.084184615,0.031959311,421,13173,0.021235907,0.042682715,0.00056865,29,50998,,,1758.551724,0.9,632.7,703,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.06530351,,,,,5259.809,,,,,0.712398716,46598,65410,0.610717313,0.814080119,75223,,,64991.68085,85454.31915,173730,172897.1489,174562.8511,108835,80401.29787,137268.7021,45244,36989.3617,53498.6383,89959,68868.44681,111049.5532,93328,81346.38298,105309.617,,,,,,0.35296049,3225,9137,,,52.19754597,,,,,0.226393523,,75223,,,4.127966976,12,2907,,,7.84351909,29,369732,5.252927834,11.26460178,,,,,,,22.9422377,14.37777822,34.73482359,,,,,,,,,,14.5430183,38,263997,10.23962699,20.04563503,14.39410296,,,,,,,,,,,,,16.65424242,10.9752507,24.23104835,,,,15.15168733,40,263997,10.82458757,20.6322977,,,,,,,26.29964057,15.58683379,41.56477056,,,,10.53019534,6.240861125,16.64224847,,,,12.98237642,48,369732,9.572179531,17.21274766,,,,,,,18.77092176,11.12483787,29.66614901,,,,11.25515861,7.417220448,16.37566487,,,,,,,,,,,0.72543882,28517,39310,,,0.695,,,,,35.29478223,,,,,0.825614545,15349,18591,0.796415675,0.854813414,0.120833104,2193,18149,0.094301754,0.147364453,0.910386746,16925,18591,0.893950861,0.926822632,50998,,,,,0.239107416,12194,50998,,,0.154613906,7885,50998,,,0.252500098,12877,50998,,,0.005157065,263,50998,,,0.012020079,613,50998,,,0.000862779,44,50998,,,0.069041923,3521,50998,,,0.647554806,33024,50998,,,0.012947804,639,49352,0.006154776,0.019740831,0.506843406,25848,50998,,,0.177795962,9343,52549,, -22,091,22091,LA,St. Helena Parish,2024,1,16687.90988,268,28449,13627.73125,19748.08851,0,,,,2,,,,2,20514.59813,15827.4772,25201.71906,,,,,2,12695.51526,8830.507769,16560.52275,,,,,2,,0.259,,,0.223,0.294,4.81595312,,,3.825758602,5.841100208,6.10055893,,,4.847468182,7.409977681,0.108635098,78,718,0.085873293,0.131396902,0,,,,,,,0.139364303,0.105799827,0.172928779,,,,0.071186441,0.041843207,0.100529675,,,,,,,0.262,,,0.217,0.308,0.431,,,0.345,0.52,6.7,0.027409565,0.181,,,0.365,,,0.307,0.425,0.03525641,385,10920,,,0.148578456,,,0.116977126,0.184281117,0.444444444,16,36,0.362711109,0.521336837,1200.5,131,10912,,,27.93585101,54,1933,20.98627107,36.45022576,,,,,,,27.49140894,18.80410336,38.80966674,,,,32.15926493,19.90709186,49.15885258,,,,,,,0.110621051,928,8389,0.091557222,0.129684881,0.000183285,2,10912,,,5456,9.24044E-05,1,10822,,,10822,0.000831639,9,10822,,,1202.444444,3784,,,,,,,5081,,1721,0.35,,,,,,,0.3,,0.38,0.31,,,,,,,0.29,,0.33,0.791291493,5888,7441,0.73202372,0.850559266,0.413193039,1021,2471,0.31617038,0.510215698,0.053463505,230,4302,,,0.446,956,,0.311361702,0.580638298,,,,,,,0.58411215,0.465684402,0.702539897,,,,0.050387597,0,0.124498805,6.786626289,82919,12218,4.231633183,9.341619395,0.53963964,1198,2220,0.461084756,0.618194523,8.247800587,9,10912,,,154.589372,80,51750,122.5797577,192.399855,,,,,,,156.6170713,112.8758091,211.7007823,,,,161.5226787,113.726872,222.6377358,,,,8.4,,,,,1,,,,,0.131274131,510,3885,0.06465566,0.197892602,0.113428944,0.053650426,0.173207461,0.013899614,0,0.036838696,0.006435006,0,0.017908293,0.829062159,3041,3668,0.71679545,0.941328869,,,,,,,,,,,,,,,,0.543,,3668,0.394479047,0.691520953,70.94038449,,,68.87913894,73.00163004,,,,,,,68.37835154,65.37935894,71.37734414,,,,73.31525377,70.58500992,76.04549763,,,,715.0616967,268,28449,622.4792771,807.6441164,,,,,,,856.2366003,712.2242226,1000.248978,,,,595.0222912,472.3412613,717.7033211,,,,117.2457898,11,9382,58.52867584,209.7851046,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.155,,,0.133,0.177,0.21,,,0.183,0.238,0.151,,,0.13,0.174,1005.4,94,9350,,,0.181,1970,,,,0.027409565,307.069355,11203,,,44.97991968,14,31125,24.59094065,75.46866224,,,,,,,,,,,,,,,,,,,0.405,,,0.39,0.418,0.132768813,831,6259,0.108939026,0.1565986,0.047767857,107,2240,0.031087006,0.064448708,0.000739235,8,10822,,,1352.75,0.725,68.15,94,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.009453531,,,,,-41190.55,,,,,0.715388107,34672,48466,0.405392149,1.025384066,45024,,,38163.40426,51884.59575,,,,,,,22197,15715.29787,28678.70213,56250,22256.80851,90243.19149,67675,56262.91489,79087.08511,,,,,,0.866546438,961,1109,,,5.399392848,,,,,0.268212509,,45024,,,6.802721088,4,588,,,26.0885087,19,72829,15.70698645,40.74043797,,,,,,,42.27771172,24.16536518,68.65635513,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,36.71497585,19,51750,22.10481384,57.33498275,,,,,,,44.74773465,23.12180747,78.16528712,,,,,,,,,,49.43085859,36,72829,34.62076565,68.43314406,,,,,,,52.84713965,32.28040583,81.61812103,,,,46.52749775,26.04108729,76.74003186,,,,,,,,,,,0.777525253,6158,7920,,,0.453,,,,,1.225025993,,,,,0.765234765,3064,4004,0.701173211,0.82929632,0.06961326,252,3620,0.021643157,0.117583363,0.66008991,2643,4004,0.586250834,0.733928987,10822,,,,,0.201441508,2180,10822,,,0.216873036,2347,10822,,,0.507022732,5487,10822,,,0.005267049,57,10822,,,0.002217705,24,10822,,,0.000554426,6,10822,,,0.024302347,263,10822,,,0.449732027,4867,10822,,,0.017008456,175,10289,0.005337138,0.028679773,0.516817594,5593,10822,,,1,10920,10920,, -22,093,22093,LA,St. James Parish,2024,1,10674.53247,367,57062,8991.698244,12357.3667,0,,,,2,,,,2,14287.68341,11498.20319,17077.16363,,,,,2,6835.113096,5007.693019,8662.533172,,,,,2,,0.201,,,0.173,0.234,4.170231385,,,3.284577375,5.125188669,6.004230063,,,4.878230209,7.233378686,0.122340426,207,1692,0.106726794,0.137954057,0,,,,,,,0.154566745,0.130321597,0.178811892,,,,0.088348271,0.068444102,0.108252441,,,,,,,0.205,,,0.166,0.246,0.392,,,0.31,0.474,8,0.08671867,0.093,,,0.297,,,0.244,0.35,0.3381042,6827,20192,,,0.166685236,,,0.132051677,0.205630744,0.212121212,7,33,0.123895162,0.31120731,835.8,165,19742,,,18.11764706,77,4250,14.29816373,22.64395024,,,,,,,25.1878038,19.07699663,32.63372135,,,,9.413067553,5.483458732,15.07123301,,,,,,,0.067507562,1049,15539,0.056784157,0.078230966,0.000253267,5,19742,,,3948.4,0.000411883,8,19423,,,2427.875,0.000720795,14,19423,,,1387.357143,3050,,,,,,,3425,,2541,0.4,,,,,,,0.34,,0.43,0.41,,,,,,,0.31,,0.44,0.888920617,12452,14008,0.867539201,0.910302032,0.599287975,3030,5056,0.511988157,0.686587793,0.046081399,411,8919,,,0.234,988,,0.147021277,0.320978723,,,,,,,0.327608416,0.224874756,0.430342075,,,,0.014042126,0,0.039028218,5.575915828,145208,26042,4.569071166,6.582760491,0.334303627,1493,4466,0.258526746,0.410080509,7.091480093,14,19742,,,97.1443411,101,103969,78.19854359,116.0901386,,,,,,,109.3156838,82.35153334,142.2893884,,,,87.2029649,63.36180779,117.0659101,,,,8.8,,,,,0,,,,,0.101834282,805,7905,0.071915093,0.131753471,0.066836735,0.043153341,0.090520129,0.02972802,0.011700517,0.047755524,0.007590133,0,0.017663553,0.846374155,7388,8729,0.810054771,0.882693539,,,,,,,0.805555556,0.727725407,0.883385704,,,,0.89664293,0.8354469,0.95783896,0.456,,8729,0.39191382,0.52008618,75.11049595,,,73.75851956,76.46247233,,,,,,,71.45334217,69.47169091,73.43499344,,,,78.90346239,77.18099599,80.6259288,,,,484.0735554,367,57062,431.4287423,536.7183684,,,,,,,632.7484243,545.0584154,720.4384331,,,,345.9377852,283.9685589,407.9070116,,,,93.39362957,19,20344,56.22906589,145.8457215,,,,,,,116.2115049,60.04818041,202.998112,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.127,,,0.11,0.146,0.188,,,0.161,0.215,0.127,,,0.108,0.146,552.1,92,16665,,,0.093,1890,,,,0.08671867,1916.656042,22102,,,22.74019329,14,61565,12.43227528,38.15418033,,,,,,,,,,,,,,,,,,,0.398,,,0.385,0.411,0.081026095,916,11305,0.066728222,0.095323967,0.03272399,145,4431,0.022000586,0.043447394,0.000875251,17,19423,,,1142.529412,0.9,239.4,266,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.054050557,,,,,-3198.697,,,,,0.610211233,43361,71059,0.509318438,0.711104028,67938,,,59959.78723,75916.21277,,,,,,,41089,20402.3617,61775.6383,43298,34808.6383,51787.3617,85612,73616.08511,97607.91489,,,,,,0.408759124,1400,3425,,,40.78054285,,,,,0.250669728,,67938,,,4.201680672,5,1190,,,15.63636611,23,147093,9.91211481,23.46222655,,,,,,,30.80801008,19.3072159,46.6436975,,,,,,,,,,12.87668341,12,103969,6.65357022,22.49297454,11.54190191,,,,,,,,,,,,,23.29090584,11.62673628,41.67386415,,,,23.08380383,24,103969,14.79022868,34.34687031,,,,,,,33.78848409,19.68303713,54.09863617,,,,,,,,,,23.11462816,34,147093,16.00755195,32.30037602,,,,,,,28.00728189,17.10757539,43.25497536,,,,19.65601966,10.74612885,32.97946104,,,,,,,,,,,0.77620222,12590,16220,,,0.559,,,,,7.280541747,,,,,0.842224593,6315,7498,0.811468436,0.87298075,0.052900298,373,7051,0.027808604,0.077991991,0.818885036,6140,7498,0.782309739,0.855460334,19423,,,,,0.219276116,4259,19423,,,0.196879988,3824,19423,,,0.468722648,9104,19423,,,0.002728724,53,19423,,,0.003912887,76,19423,,,0.000257427,5,19423,,,0.019204037,373,19423,,,0.497657417,9666,19423,,,0.002271647,43,18929,0,0.00896932,0.512485198,9954,19423,,,0.495790412,10011,20192,, -22,095,22095,LA,St. John the Baptist Parish,2024,1,11370.83075,811,120457,10194.03451,12547.627,0,,,,2,,,,2,12561.98632,10966.01755,14157.9551,,,,,2,11796.82991,9508.464395,14085.19543,,,,,2,,0.216,,,0.186,0.248,4.181941038,,,3.339415335,5.113172272,5.851822057,,,4.755344727,7.032171676,0.134743875,484,3592,0.123577435,0.145910316,0,,,,,,,0.164012053,0.148953982,0.179070125,0.061971831,0.036890707,0.087052955,0.085846868,0.067145467,0.104548269,,,,,,,0.201,,,0.164,0.241,0.447,,,0.369,0.528,7.4,0.125583582,0.102,,,0.314,,,0.262,0.369,0.717376463,30472,42477,,,0.170229826,,,0.134819165,0.210195114,0.403846154,21,52,0.334722984,0.470746759,855.2,360,42094,,,21.46095718,213,9925,18.57881529,24.34309907,,,,,,,22.94515166,19.2232013,26.66710201,41.49933066,28.19678177,58.90498729,12.79069767,8.804527741,17.96289507,,,,,,,0.075566019,2600,34407,0.063651125,0.087480912,0.000332589,14,42094,,,3006.714286,0.000376279,15,39864,,,2657.6,0.003562111,142,39864,,,280.7323944,3813,,,,,,,4775,,2951,0.4,,,,,,,0.4,,0.41,0.32,,,,,,0.23,0.3,0.23,0.34,0.864106352,23985,27757,0.841373321,0.886839382,0.463834338,4771,10286,0.383635685,0.544032991,0.049898007,954,19119,,,0.262,2443,,0.157148936,0.366851064,,,,,,,0.189072848,0.109306025,0.26883967,0.086309524,0,0.181027407,0.149801587,0.052600481,0.247002694,4.102661064,117172,28560,3.402199664,4.803122465,0.406933594,4167,10240,0.30002495,0.513842238,5.226398062,22,42094,,,95.76217347,205,214072,82.65306566,108.8712813,,,,,,,91.9940733,75.03208738,108.9560592,,,,125.5413087,100.8199796,154.4893832,,,,8.8,,,,,0,,,,,0.140983607,2150,15250,0.107542926,0.174424287,0.114493713,0.085853335,0.143134091,0.032459016,0.012721593,0.05219644,0.005573771,0.000635272,0.010512269,0.866601975,15182,17519,0.832250726,0.900953224,,,,,,,0.822691198,0.767868017,0.877514378,0.786083956,0.722084213,0.8500837,0.819219219,0.687948056,0.950490383,0.508,,17519,0.447750211,0.568249789,73.49945172,,,72.61589624,74.38300719,,,,,,,72.43345783,71.20520695,73.66170872,81.54396052,78.43181941,84.65610162,73.2532427,71.6590593,74.8474261,,,,540.135888,811,120457,501.481091,578.790685,,,,,,,586.8009276,532.4083201,641.1935351,,,,557.8763016,490.3084681,625.4441351,,,,78.72293899,36,45730,55.13657865,108.9857304,,,,,,,92.48792519,60.95012548,134.5650753,,,,,,,,,,9.436505797,35,3709,6.572872042,13.12389522,,,,,,,11.64725458,7.73951608,16.83352577,,,,,,,,,,,,,0.13,,,0.112,0.149,0.185,,,0.161,0.211,0.134,,,0.116,0.155,217.3,76,34978,,,0.102,4340,,,,0.125583582,5767.300401,45924,,,29.8163158,38,127447,21.09979964,40.92522297,,,,,,,29.81878312,18.68727263,45.145996,,,,36.5194527,20.43966045,60.23328352,,,,0.43,,,0.417,0.444,0.093965727,2314,24626,0.077284876,0.110646578,0.030697494,316,10294,0.019974089,0.041420898,0.000627132,25,39864,,,1594.56,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.082975133,,,,,-12133.1,,,,,0.583855025,37212,63735,0.497361274,0.670348776,60569,,,53169.85106,67968.14894,,,,95950,75386.08511,116513.9149,59104,47626.38298,70581.61702,81305,60955.55319,101654.4468,70669,65536.06383,75801.93617,,,,,,0.477588569,2440,5109,,,41.31249778,,,,,0.281166934,,60569,,,2.619760479,7,2672,,,20.57551713,62,301329,15.775131,26.37688436,,,,,,,32.14325372,24.21469763,41.83886293,,,,,,,,,,8.187162919,18,214072,4.769324107,13.10844094,8.408385964,,,,,,,,,,,,,20.15084804,10.72947791,34.45856385,,,,22.88949512,49,214072,16.9337745,30.26112644,,,,,,,30.12195321,21.20863488,41.51914465,,,,16.92691803,8.746385551,29.56791933,,,,19.91179077,60,301329,15.19479405,25.6304217,,,,,,,23.37691179,16.70080852,31.83271889,,,,18.51112129,11.14490424,28.9074089,,,,,,,,,,,0.673644507,21432,31815,,,0.611,,,,,41.33818501,,,,,0.775210084,11808,15232,0.741066832,0.809353336,0.109758614,1596,14541,0.079613438,0.13990379,0.863839286,13158,15232,0.838399819,0.889278752,39864,,,,,0.23662954,9433,39864,,,0.15956753,6361,39864,,,0.582329922,23214,39864,,,0.006045555,241,39864,,,0.011313466,451,39864,,,0.001906482,76,39864,,,0.081903472,3265,39864,,,0.306768011,12229,39864,,,0.010606789,419,39503,0.004790615,0.016422964,0.509883604,20326,39864,,,0.117287002,4982,42477,, -22,097,22097,LA,St. Landry Parish,2024,1,15818.19045,1969,228996,14806.71477,16829.66613,0,,,,2,,,,2,20014.30291,18294.05054,21734.55528,,,,,2,13354.51438,12050.33248,14658.69628,,,,,2,,0.252,,,0.217,0.291,4.767893935,,,3.870970474,5.769967128,6.183034764,,,5.084732915,7.338227429,0.118300574,969,8191,0.111306321,0.125294826,0,,,,,,,0.165634675,0.153931116,0.177338234,0.066666667,0.036049941,0.097283392,0.073670558,0.065423983,0.081917132,,,,0.123188406,0.068353817,0.178022994,0.268,,,0.223,0.317,0.4,,,0.333,0.472,6.5,0.109248056,0.15,,,0.348,,,0.293,0.408,0.462684759,38190,82540,,,0.15771313,,,0.126133775,0.193398351,0.302752294,33,109,0.253805528,0.352464244,779.8,640,82071,,,38.09828718,714,18741,35.30373375,40.8928406,,,,,,,46.21264767,41.67813651,50.74715883,34.36426117,20.99058348,53.07281427,28.96781354,25.45341076,32.48221632,,,,84.83290488,58.39506831,119.136939,0.103397009,6885,66588,0.089099136,0.117694881,0.000670152,55,82071,,,1492.2,0.000317953,26,81773,,,3145.115385,0.002299047,188,81773,,,434.962766,3468,,,,,,,3628,,3372,0.45,,,,,,0.31,0.45,,0.46,0.44,,,,,,0.57,0.39,0.5,0.46,0.785495842,42123,53626,0.761880569,0.809111114,0.400629025,8025,20031,0.353468423,0.447789628,0.044388217,1421,32013,,,0.357,7621,,0.274787234,0.439212766,,,,,,,0.523361681,0.468187249,0.578536113,0.25511432,0.072791437,0.437437203,0.214408233,0.160083472,0.268732994,6.55335106,96118,14667,5.71925958,7.387442541,0.398230089,8685,21809,0.338456808,0.458003369,7.676280294,63,82071,,,113.620914,468,411896,103.3267419,123.9150861,,,,,,,115.6877254,99.53260342,131.8428473,,,,117.1258567,102.9431799,131.3085335,,,,8.7,,,,,1,,,,,0.142482374,4345,30495,0.119923784,0.165040964,0.11221567,0.091016812,0.133414528,0.040826365,0.027859226,0.053793504,0.004426955,0.001352739,0.007501171,0.814599807,24416,29973,0.791795532,0.837404081,,,,,,,0.814707249,0.761355929,0.868058569,,,,0.823616236,0.788480533,0.858751939,0.397,,29973,0.357680851,0.436319149,70.04762753,,,69.38879834,70.70645671,,,,,,,67.04527943,66.01938821,68.07117066,100.9568269,65.72089985,136.192754,71.81266598,70.929722,72.69560996,,,,707.7039256,1969,228996,674.8830118,740.5248395,,,,,,,907.7303568,847.8675167,967.593197,,,,601.3881575,561.5366719,641.2396432,,,,95.75318827,91,95036,77.09449419,117.5636968,,,,,,,107.1493708,78.72932739,142.4859483,,,,89.6458987,64.04434433,122.0722702,,,,9.298493409,79,8496,7.361704798,11.58869717,,,,,,,11.77059855,8.64859308,15.65240079,,,,7.427581084,5.011357767,10.60333384,,,,,,,0.156,,,0.134,0.178,0.212,,,0.185,0.241,0.14,,,0.12,0.161,411.3,274,66610,,,0.15,12450,,,,0.109248056,9109.539931,83384,,,32.56864861,80,245635,25.82491281,40.5345024,,,,,,,23.60276546,15.12273719,35.11904408,,,,41.35587103,31.15490178,53.83035068,,,,0.362,,,0.349,0.374,0.128800842,5871,45582,0.109737013,0.147864672,0.050142941,1105,22037,0.03465358,0.065632303,0.001063921,87,81773,,,939.9195402,0.798875453,660.67,827,,,0.132601537,604,4555,0.075654491,0.189548583,,,,,,,,,,,,,,,,,,,,,0.171045162,,,,,-13801.6,,,,,0.679880821,35141,51687,0.595327796,0.764433847,42765,,,38382.70213,47147.29787,,,,,,,32307,27455.25532,37158.74468,47634,29652.04255,65615.95745,54248,49272.34043,59223.65957,,,,,,0.660513963,8302,12569,,,46.42530243,,,,,0.317409096,,42765,,,5.179615706,31,5985,,,14.66460327,85,579627,11.71356424,18.13300904,,,,,,,28.42345939,22.07192839,36.03350756,,,,4.751722499,2.659503012,7.837243644,,,,23.15548919,90,411896,18.52140248,28.59684078,21.85017577,,,,,,,11.40051583,6.641220591,18.25333022,,,,31.9832379,24.63099042,40.84188078,,,,29.37634743,121,411896,24.14201643,34.61067842,,,,,,,31.71135619,23.82254676,41.37644104,,,,28.61089628,22.03387644,36.53547582,,,,22.945791,133,579627,19.04607227,26.84550973,,,,,,,28.42345939,22.07192839,36.03350756,,,,20.274016,15.61346275,25.88946581,,,,,,,,,,,0.684246405,41154,60145,,,0.532,,,,,35.52561756,,,,,0.686156436,21194,30888,0.667926019,0.704386853,0.143837033,4173,29012,0.120507543,0.167166523,0.687419062,21233,30888,0.663058269,0.711779856,81773,,,,,0.264023578,21590,81773,,,0.170459687,13939,81773,,,0.416200947,34034,81773,,,0.004133394,338,81773,,,0.005111712,418,81773,,,0.000293495,24,81773,,,0.028028812,2292,81773,,,0.533501278,43626,81773,,,0.005553383,426,76710,0.002222637,0.008884129,0.512663104,41922,81773,,,0.591955416,48860,82540,, -22,099,22099,LA,St. Martin Parish,2024,1,10267.89502,962,148030,9303.18564,11232.60441,0,,,,2,,,,2,13665.10443,11666.07426,15664.13461,,,,,2,9292.409266,8120.479401,10464.33913,,,,,2,,0.209,,,0.179,0.241,4.47612536,,,3.595697734,5.436284321,5.988608771,,,4.891736961,7.154565961,0.097077022,455,4687,0.088600998,0.105553045,0,,,,,,,0.139927624,0.123228909,0.156626338,0.056818182,0.022617,0.091019364,0.073572474,0.063782555,0.083362394,,,,,,,0.231,,,0.189,0.274,0.411,,,0.336,0.487,7.7,0.057163004,0.122,,,0.301,,,0.251,0.355,0.631154983,32673,51767,,,0.173921971,,,0.139396107,0.213322704,0.34375,22,64,0.279730142,0.407557345,712.1,367,51540,,,30.08070433,328,10904,26.82528341,33.33612525,,,,,,,33.41103341,27.64534558,39.17672124,74.18397626,48.00795801,109.5101831,25.80338768,21.84207617,29.7646992,,,,,,,0.091538242,3849,42048,0.07724037,0.105836114,0.000213427,11,51540,,,4685.454546,0.000195175,10,51236,,,5123.6,0.001112499,57,51236,,,898.877193,2754,,,,,,,4312,,2339,0.44,,,,,,,0.46,,0.44,0.4,,,,,,0.38,0.36,,0.41,0.827915435,29136,35192,0.806601706,0.849229164,0.461965617,6073,13146,0.402880498,0.521050736,0.03661679,810,22121,,,0.24,2909,,0.149446809,0.330553192,,,,,,,0.358030709,0.250588781,0.465472638,0.173992674,0.012782561,0.335202787,0.110345817,0.067840208,0.152851426,5.231174226,108301,20703,4.636323229,5.826025223,0.27560326,3415,12391,0.208394666,0.342811855,4.656577416,24,51540,,,86.55825559,230,265717,75.37159017,97.744921,,,,,,,98.69919522,78.01761807,123.1810625,,,,84.61619262,70.84328768,98.38909757,,,,8.9,,,,,1,,,,,0.11701857,2300,19655,0.095259205,0.138777936,0.083676622,0.064544075,0.102809169,0.037903841,0.025596447,0.050211235,0.00559654,0.000521622,0.010671458,0.850894174,18461,21696,0.821601232,0.880187116,,,,,,,0.792272025,0.685996383,0.898547667,,,,0.835591869,0.780757051,0.890426688,0.42,,21696,0.36982995,0.47017005,74.45831887,,,73.69434884,75.2222889,,,,,,,70.92141264,69.50783456,72.33499071,,,,75.4918067,74.55161093,76.43200247,,,,504.4490295,962,148030,471.3424407,537.5556183,,,,,,,654.8852915,582.0597513,727.7108316,,,,462.4348413,424.0033165,500.8663661,,,,58.13214162,32,55047,39.76234184,82.06523894,,,,,,,95.13742072,56.38446501,150.358141,,,,44.35854377,24.25122866,74.42609905,,,,7.479742364,36,4813,5.238719596,10.35511625,,,,,,,,,,,,,7.122507123,4.350612388,11.00013458,,,,,,,0.137,,,0.118,0.157,0.194,,,0.168,0.222,0.123,,,0.106,0.142,119.2,51,42796,,,0.122,6370,,,,0.057163004,2981.622273,52160,,,24.69526674,39,157925,17.56074877,33.75924259,,,,,,,,,,,,,30.41780325,20.66742153,43.17564368,,,,0.385,,,0.371,0.397,0.111868805,3363,30062,0.092804975,0.130932634,0.042108621,528,12539,0.029002238,0.055215004,0.000370833,19,51236,,,2696.631579,0.84,412.44,491,,,0.108188375,255,2357,0.041597416,0.174779334,,,,,,,,,,,,,,,,,,,,,0.050017169,,,,,-5985.064,,,,,0.654023695,37263,56975,0.57679825,0.73124914,54265,,,48738.87234,59791.12766,,,,,,,33059,29830.06383,36287.93617,56038,53745.57447,58330.42553,60197,56262.70213,64131.29787,,,,,,0.47092469,3458,7343,,,29.5587135,,,,,0.250142818,,54265,,,3.57568534,12,3356,,,13.65246186,51,373559,10.16515459,17.95046603,,,,,,,31.39604769,21.86849757,43.66430213,,,,6.643469884,3.797317057,10.78857888,,,,14.92876174,41,265717,10.61580898,20.40810875,15.42994991,,,,,,,,,,,,,19.16211019,13.10686918,27.05118214,,,,18.44067184,49,265717,13.64251055,24.37954613,,,,,,,26.57286025,16.44901932,40.61943961,,,,16.33967858,10.85759775,23.61538494,,,,19.54175913,73,373559,15.31761969,24.57082822,,,,,,,29.60198782,20.37664634,41.5721968,,,,15.36302411,10.81698676,21.17590502,,,,,,,,,,,0.673508532,27038,40145,,,0.566,,,,,19.65426913,,,,,0.781926135,15540,19874,0.760889519,0.80296275,0.102961842,1905,18502,0.079480697,0.126442987,0.810103653,16100,19874,0.795548948,0.824658358,51236,,,,,0.23934343,12263,51236,,,0.171461472,8785,51236,,,0.290264658,14872,51236,,,0.007221485,370,51236,,,0.010246702,525,51236,,,0.000507456,26,51236,,,0.034546022,1770,51236,,,0.645795925,33088,51236,,,0.008048745,391,48579,0.004016485,0.012081005,0.508099774,26033,51236,,,0.522089362,27027,51767,, -22,101,22101,LA,St. Mary Parish,2024,1,12335.98062,1056,135262,11199.94352,13472.01773,0,,,,2,,,,2,17156.6089,14729.83193,19583.38587,,5700.132173,3258.118047,9256.657535,1,10967.42618,9532.041219,12402.81114,,,,,2,,0.238,,,0.208,0.269,4.898043404,,,4.003656735,5.869813233,5.833974942,,,4.833811616,6.94295561,0.101866081,464,4555,0.093081982,0.11065018,0,,,,,,,0.138943249,0.121628364,0.156258133,0.075907591,0.054820335,0.096994847,0.08537693,0.073705105,0.097048755,,,,,,,0.243,,,0.205,0.284,0.391,,,0.322,0.464,6.5,0.103926367,0.154,,,0.348,,,0.299,0.4,0.849066915,41949,49406,,,0.165034858,,,0.132480305,0.203159596,0.319148936,15,47,0.243106125,0.395843272,626.1,302,48232,,,33.5828056,350,10422,30.06445573,37.10115548,,,,,,,34.88045007,28.74103058,41.01986957,53.69127517,39.58770786,71.18684137,29.45590994,24.84826837,34.06355152,,,,40.81632653,21.09039153,71.29790833,0.103163651,3962,38405,0.088865778,0.117461523,0.000435396,21,48232,,,2296.761905,0.000376656,18,47789,,,2654.944444,0.001318295,63,47789,,,758.5555556,2807,,,,,,,4409,,2340,0.41,,,,,,0.31,0.39,0.23,0.42,0.39,,,,,,0.4,0.31,0.27,0.41,0.800776273,27027,33751,0.780035504,0.821517043,0.417049515,4902,11754,0.358673982,0.475425049,0.04252564,821,19306,,,0.346,3905,,0.25306383,0.43893617,0.224215247,0.035599459,0.412831034,,,,0.370092379,0.250607927,0.489576831,0.194233687,0.09299027,0.295477105,0.176979975,0.117399917,0.236560032,6.195334407,103840,16761,5.046733859,7.343934956,0.343150685,4008,11680,0.289653878,0.396647492,6.634599436,32,48232,,,100.9499021,249,246657,88.41091949,113.4888847,,,,,,,117.6972723,94.76250177,144.5061693,,,,104.7498646,87.69981913,121.79991,,,,8.2,,,,,0,,,,,0.130634072,2565,19635,0.105008074,0.15626007,0.115767418,0.091059456,0.140475379,0.012172142,0.006224181,0.018120102,0.006875478,0.001968626,0.011782329,0.851118311,16287,19136,0.81827328,0.883963343,0.464285714,0.140813978,0.78775745,,,,0.881267044,0.817560068,0.944974021,0.803765387,0.680801889,0.926728886,0.844157781,0.809395749,0.878919813,0.237,,19136,0.201434492,0.272565508,72.88871512,,,72.05843744,73.7189928,,,,,,,69.14215282,67.5704619,70.71384374,82.73566461,76.40045053,89.0708787,73.81401341,72.75427158,74.87375525,,,,591.8803878,1056,135262,554.1679488,629.5928269,,,,,,,772.9380227,693.7365271,852.1395182,270.9039307,167.6938028,414.1054349,547.0640041,500.1717948,593.9562134,,,,84.59238275,43,50832,61.21992684,113.9453844,,,,,,,134.3457944,85.16370933,201.5846548,,,,78.29562781,47.13908256,122.2683215,,,,5.719127304,27,4721,3.76894093,8.321029961,,,,,,,,,,,,,,,,,,,,,,0.147,,,0.129,0.167,0.202,,,0.178,0.228,0.136,,,0.119,0.157,182.7,73,39955,,,0.154,7660,,,,0.103926367,5679.575933,54650,,,36.32376122,53,145910,27.20898974,47.51237402,,,,,,,37.1763471,21.65659218,59.52293303,,,,40.3201173,27.7545135,56.62443554,,,,0.37,,,0.358,0.381,0.128974227,3513,27238,0.108718908,0.149229546,0.042065664,492,11696,0.028959281,0.055172047,0.000899789,43,47789,,,1111.372093,0.95,546.25,575,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.172603881,,,,,-11242.09,,,,,0.776023136,40787,52559,0.661887137,0.890159135,48242,,,43101.91489,53382.08511,62132,31388,92876,60469,38895.89362,82042.10638,32436,26134.21277,38737.78723,36564,26703.23404,46424.76596,56924,52273.61702,61574.38298,,,,,,0.623025371,5206,8356,,,42.44398137,,,,,0.281373077,,48242,,,4.791853849,16,3339,,,10.24007282,36,351560,7.172021111,14.17657711,,,,,,,21.68041265,13.89104947,32.25873548,,,,6.084822425,3.144116539,10.62896023,,,,15.65123234,40,246657,11.01991195,21.57316211,16.21685174,,,,,,,,,,,,,20.89490301,13.8845113,30.19895254,,,,21.89274985,54,246657,16.44650749,28.56528961,,,,,,,28.4542856,17.8321493,43.08013036,,,,23.11721149,15.81215554,32.63460508,,,,18.77346683,66,351560,14.51939789,23.88445285,,,,,,,20.77706212,13.17087511,31.17579463,,,,18.76153581,13.20985263,25.86030573,,,,,,,,,,,0.628602413,23186,36885,,,0.546,,,,,34.06355273,,,,,0.694975306,12946,18628,0.671889387,0.718061225,0.156373419,2732,17471,0.12781714,0.184929697,0.8439446,15721,18628,0.816294563,0.871594636,47789,,,,,0.238506769,11398,47789,,,0.189813555,9071,47789,,,0.308627508,14749,47789,,,0.023206177,1109,47789,,,0.01550566,741,47789,,,0.00098349,47,47789,,,0.077653853,3711,47789,,,0.56048463,26785,47789,,,0.025818118,1185,45898,0.017955764,0.033680473,0.508485216,24300,47789,,,0.195178723,9643,49406,, -22,103,22103,LA,St. Tammany Parish,2024,1,8439.254317,3800,739629,8025.266264,8853.242371,0,,,,2,3907.452958,2136.240893,6556.04211,1,11822.62857,10552.10151,13093.15563,,5479.318786,4124.263378,6834.374194,,8267.754279,7797.998337,8737.510221,,,,,2,,0.149,,,0.125,0.175,3.499057735,,,2.794715139,4.271331022,5.355005554,,,4.540239374,6.219197046,0.087276602,1802,20647,0.083426732,0.091126472,0,,,,0.065104167,0.04042807,0.089780263,0.14365881,0.13214347,0.155174151,0.079035874,0.066516226,0.091555523,0.075080862,0.070796118,0.079365605,,,,0.1,0.065471451,0.134528549,0.159,,,0.126,0.196,0.348,,,0.299,0.397,7.7,0.07837681,0.11,,,0.219,,,0.182,0.26,0.814997921,215624,264570,,,0.179305729,,,0.150668324,0.210219898,0.319018405,52,163,0.279522917,0.358837896,411.3,1108,269388,,,14.52763836,851,58578,13.55155635,15.50372038,,,,,,,24.40618871,21.21000284,27.60237458,28.93890675,23.48099746,34.39681605,11.4902181,10.47386739,12.50656882,,,,14.6644106,9.579279873,21.48675921,0.08046701,17630,219096,0.070935095,0.089998925,0.000772121,208,269388,,,1295.134615,0.000819723,224,273263,,,1219.924107,0.002762906,755,273263,,,361.9377483,3078,,,,,,1361,4851,2309,2875,0.51,,,,,,0.41,0.45,0.37,0.51,0.41,,,,,,0.5,0.29,0.33,0.42,0.912540415,166806,182793,0.903992242,0.921088587,0.709927316,46004,64801,0.675609643,0.744244989,0.029477304,3532,119821,,,0.144,9089,,0.102297872,0.185702128,0.409174312,0.153113186,0.665235438,0.093275488,0,0.272241089,0.275177153,0.206333123,0.344021183,0.327811861,0.23393007,0.421693652,0.125734898,0.10477505,0.146694746,4.549528158,149452,32850,4.221947055,4.877109262,0.262254042,16447,62714,0.228978291,0.295529794,7.127266248,192,269388,,,108.0530492,1413,1307691,102.4189821,113.6871164,,,,63.65372374,32.89080792,111.1902453,107.6686708,91.85125902,123.4860827,55.50105839,40.16639116,74.75956143,115.4340428,108.8308204,122.0372653,,,,8.9,,,,,1,,,,,0.128820157,12245,95055,0.113325824,0.14431449,0.117656467,0.101873525,0.133439408,0.012203461,0.008724225,0.015682698,0.010204618,0.001782821,0.018626416,0.786301686,95424,121358,0.770553626,0.802049746,,,,0.522113728,0.421242232,0.622985224,0.750537121,0.696932544,0.804141698,0.64969419,0.601394805,0.697993575,0.769565217,0.743802848,0.795327587,0.483,,121358,0.45536361,0.51063639,76.87956315,,,76.53620452,77.22292179,,,,84.15674926,80.56338075,87.75011778,73.25421603,72.21889465,74.28953742,83.69274416,81.5395554,85.84593291,76.95267116,76.57239892,77.33294339,,,,390.4548201,3800,739629,377.38055,403.5290902,,,,221.1177322,146.9311273,319.5766881,554.348596,508.787969,599.909223,223.8547751,180.0899414,267.6196087,385.6593231,370.9909845,400.3276616,,,,47.65797703,130,272777,39.46541009,55.85054397,,,,,,,74.21061451,50.4225121,105.3360436,57.06676812,29.48723183,99.68415945,42.5204918,33.86733437,52.71054703,,,,5.295080389,110,20774,4.305542822,6.284617956,,,,,,,9.219245174,6.305956875,13.01482342,,,,4.126640509,3.156553008,5.30084237,,,,,,,0.108,,,0.091,0.125,0.166,,,0.143,0.19,0.095,,,0.081,0.11,263.8,595,225559,,,0.11,28860,,,,0.07837681,18319.79556,233740,,,49.03857912,389,793253,44.16532399,53.91183425,,,,,,,39.80427945,28.56423815,53.99899962,,,,55.28547036,49.40018899,61.17075173,,,,0.368,,,0.35,0.384,0.097694693,15218,155771,0.08458831,0.110801076,0.040845747,2720,66592,0.030122343,0.051569152,0.001280817,350,273263,,,780.7514286,0.83,2274.2,2740,,,0.079907483,1071,13403,0.055267123,0.104547844,,,,,,,,,,,,,,,,,,,,,0.113288408,,,,,-313.1982,,,,,0.710324458,49543,69747,0.665363484,0.755285433,78629,,,71700.48936,85557.51064,58590,47295.87234,69884.12766,72500,31721.2766,113278.7234,58257,53002.53192,63511.46809,72862,57634.76596,88089.23404,81323,78300.19149,84345.80851,,,,,,0.320422155,11871,37048,,,52.82271698,,,,,0.153582012,,78629,,,4.291008387,66,15381,,,5.41023672,98,1811381,4.392291687,6.593345646,,,,,,,17.32240097,12.31792046,23.68029238,,,,3.815820249,2.866561612,4.978817703,,,,18.1288615,242,1307691,15.7728237,20.48489929,18.50590086,,,,,,,6.319259028,3.154551339,11.30689996,,,,21.25454065,18.33900942,24.17007188,,,,16.05883959,210,1307691,13.88683577,18.2308434,,,,,,,25.40496728,18.30966582,34.34013548,,,,15.83039258,13.38507755,18.27570762,,,,13.4703853,244,1811381,11.78017332,15.16059729,,,,,,,20.87571399,15.33868944,27.76027411,10.46194231,5.222563906,18.71930467,12.79006417,10.92673532,14.65339302,,,,,,,,,,,0.73090065,140110,191695,,,0.677,,,,,61.65730787,,,,,0.790805438,80039,101212,0.777150474,0.804460402,0.121661481,12003,98659,0.11066551,0.132657451,0.913883729,92496,101212,0.905164573,0.922602885,273263,,,,,0.232977022,63664,273263,,,0.18705057,51114,273263,,,0.14251472,38944,273263,,,0.00589176,1610,273263,,,0.016006558,4374,273263,,,0.00056356,154,273263,,,0.064439752,17609,273263,,,0.754723472,206238,273263,,,0.013197334,3311,250884,,,0.510277645,139440,273263,,,0.229821975,60804,264570,, -22,105,22105,LA,Tangipahoa Parish,2024,1,12051.09851,2589,384286,11390.91796,12711.27906,0,,,,2,,,,2,16092.34075,14738.07736,17446.60415,,6971.80819,4799.071964,9791.010789,,10750.07528,9966.845672,11533.3049,,,,,2,,0.211,,,0.182,0.244,4.645249569,,,3.766631706,5.565119867,5.989214563,,,5.011386127,6.992933907,0.102658517,1394,13579,0.097553484,0.10776355,0,,,,0.129411765,0.058054222,0.200769307,0.152079804,0.142423756,0.161735853,0.054054054,0.039181112,0.068926996,0.071758288,0.06577555,0.077741026,,,,,,,0.219,,,0.18,0.264,0.405,,,0.345,0.467,5.9,0.166847871,0.149,,,0.34,,,0.291,0.395,0.623008929,82958,133157,,,0.185536656,,,0.152762547,0.222484882,0.308823529,42,136,0.265282399,0.352898736,943.7,1276,135217,,,28.71823103,939,32697,26.88135029,30.55511177,,,,,,,43.50961539,39.84994981,47.16928096,36.84598379,27.34779936,48.57683616,18.33998227,16.36419135,20.31577319,,,,25.04816956,13.33709536,42.83313279,0.097463876,10772,110523,0.084357493,0.110570259,0.000399358,54,135217,,,2504.018519,0.000503473,69,137048,,,1986.202899,0.002305762,316,137048,,,433.6962025,4730,,,,,,,6869,4089,4109,0.41,,,,,,0.38,0.39,0.25,0.42,0.37,,,,,,0.59,0.27,0.21,0.39,0.832489861,72872,87535,0.812454342,0.852525381,0.53814467,19596,36414,0.4868669,0.589422439,0.043217816,2453,56759,,,0.276,9034,,0.212851064,0.339148936,,,,,,,0.529336078,0.471307734,0.587364423,0.297390448,0.184728934,0.410051962,0.082619456,0.053984587,0.111254325,5.403064844,114237,21143,4.606116915,6.200012773,0.361445783,11730,32453,0.323731779,0.399159787,8.282982169,112,135217,,,114.7078664,772,673014,106.6161506,122.7995822,,,,,,,108.9673739,94.60069387,123.3340539,82.49463785,53.38618,121.778359,123.7039415,113.1120393,134.2958438,,,,7.8,,,,,1,,,,,0.155818744,7565,48550,0.132022557,0.17961493,0.133171145,0.111092154,0.155250136,0.024510814,0.014506134,0.034515494,0.010298661,0.004203876,0.016393447,0.824129172,46396,56297,0.802025478,0.846232867,,,,,,,0.783960368,0.739290867,0.828629868,0.718946048,0.589324334,0.848567762,0.827006153,0.803850627,0.850161679,0.445,,56297,0.399488849,0.490511151,72.99085814,,,72.50127683,73.48043946,,,,,,,69.33490782,68.40374692,70.26606872,84.64229586,77.47532673,91.80926498,74.04959106,73.46829981,74.63088231,,,,565.2561674,2589,384286,542.7549616,587.7573731,,,,,,,765.4076066,713.8649185,816.9502946,303.6305662,218.8302052,410.4203192,517.0185147,490.7087096,543.3283199,,,,76.95942753,114,148130,62.83192238,91.08693268,,,,,,,116.6588894,90.03486796,148.691331,,,,49.82242776,35.42861658,68.10889888,,,,8.4193572,115,13659,6.88054335,9.95817105,,,,,,,12.24566692,9.450947198,15.60810773,,,,6.079027356,4.417030583,8.160810484,,,,,,,0.139,,,0.12,0.16,0.203,,,0.178,0.231,0.122,,,0.106,0.14,249,277,111253,,,0.149,19730,,,,0.166847871,20204.77665,121097,,,52.36760584,213,406740,45.33479415,59.40041753,,,,,,,40.7388396,30.23715198,53.70908123,,,,61.06224827,51.48001889,70.64447765,,,,0.348,,,0.335,0.36,0.120783544,9471,78413,0.102911203,0.138655884,0.042419365,1423,33546,0.030504471,0.054334258,0.001444749,198,137048,,,692.1616162,0.75,958.5,1278,,,0.049260496,413,8384,0.021893749,0.076627244,,,,,,,,,,,,,,,,,,,,,0.085990131,,,,,-7867.275,,,,,0.703954355,39111,55559,0.616370369,0.79153834,54942,,,50162.93617,59721.06383,,,,44671,2787.765957,86554.23404,29741,26314.2766,33167.7234,57004,29956,84052,64773,60899.46809,68646.53192,,,,,,0.478726154,9260,19343,,,36.49279912,,,,,0.219795421,,54942,,,5.277329025,49,9285,,,11.58203027,108,932479,9.397646757,13.76641377,,,,,,,26.37553776,20.71047011,33.11207233,,,,5.606447755,3.859220665,7.873537103,,,,15.78183931,103,673014,12.6781711,18.88550752,15.30428788,,,,,,,6.738655784,3.481961777,11.77107553,,,,20.66622071,16.43645863,25.65222901,,,,20.50477405,138,673014,17.08362877,23.92591932,,,,,,,28.59777233,21.71548751,36.96925234,,,,18.4139455,14.55545978,22.98143734,,,,23.16406053,216,932479,20.07487575,26.25324531,,,,,,,24.59340683,19.13513847,31.12453035,26.84825852,13.40255392,48.03895075,22.93546809,19.06648532,26.80445085,,,,,,,,,,,0.581905339,57661,99090,,,0.549,,,,,39.68552215,,,,,0.727074685,35378,48658,0.705339353,0.748810016,0.138935358,6478,46626,0.11555008,0.162320636,0.8476304,41244,48658,0.828515246,0.866745554,137048,,,,,0.242017395,33168,137048,,,0.155558636,21319,137048,,,0.303594361,41607,137048,,,0.004961765,680,137048,,,0.007471835,1024,137048,,,0.000569144,78,137048,,,0.051135369,7008,137048,,,0.619885004,84954,137048,,,0.006770508,845,124806,0.004083314,0.009457702,0.51147773,70097,137048,,,0.459870679,61235,133157,, -22,107,22107,LA,Tensas Parish,2024,1,15399.10433,137,11210,11073.45238,19724.75628,0,,,,2,,,,2,18102.44522,12299.73326,25694.97601,,,,,2,13388.83034,7799.487069,21436.81438,1,,,,2,,0.29,,,0.255,0.328,5.219720699,,,4.272433915,6.312527776,6.383922965,,,5.19179564,7.714389332,0.124600639,39,313,0.088011925,0.161189353,0,,,,,,,0.172043011,0.117802721,0.226283301,,,,,,,,,,,,,0.287,,,0.243,0.335,0.457,,,0.37,0.542,3.1,0.388995935,0.174,,,0.389,,,0.331,0.452,0.180130215,747,4147,,,0.126553091,,,0.11430859,0.14161043,0.083333333,1,12,0.004083139,0.26580258,692.6,28,4043,,,39.37947494,33,838,27.10701858,55.30342395,,,,,,,42.55319149,26.66785855,64.4260433,,,,35.0877193,16.82592525,64.52756506,,,,,,,0.109003105,316,2899,0.089939275,0.128066934,0.000247341,1,4043,,,4043,0.000780031,3,3846,,,1282,0.001560062,6,3846,,,641,4284,,,,,,,4309,,2767,0.34,,,,,,,0.35,,0.33,0.3,,,,,,,0.19,,0.36,0.783508653,2309,2947,0.733761399,0.833255907,0.208128079,169,812,0.078230208,0.33802595,0.049698795,66,1328,,,0.55,445,,0.374851064,0.725148936,,,,,,,0.746666667,0.67173916,0.821594173,,,,0.158075601,0.040346225,0.275804978,5.16703065,68613,13279,2.893747632,7.440313668,0.548066298,496,905,0.383247597,0.712885,0,0,4043,,,87.83284024,19,21632,52.88110745,137.1618601,,,,,,,,,,,,,131.7523057,68.07833892,230.1447634,,,,8.3,,,,,1,,,,,0.154269973,280,1815,0.097824069,0.210715876,0.111484594,0.063292721,0.159676466,0.022038568,0,0.046891682,0.033057851,0.001362233,0.06475347,0.865684575,999,1154,0.825654299,0.905714852,,,,,,,0.869458128,0.726166244,1,,,,,,,0.409,,1154,0.27558511,0.54241489,71.0820543,,,68.30264422,73.86146439,,,,,,,69.41345419,65.53679857,73.29010982,,,,72.20928502,67.64794543,76.77062461,,,,775.8730549,137,11210,624.8479526,926.8981573,,,,,,,916.6430595,705.9268508,1170.532723,,,,668.2338167,470.4982753,921.0722927,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.168,,,0.148,0.192,0.218,,,0.189,0.249,0.167,,,0.146,0.19,,,,,,0.174,740,,,,0.388995935,2043.00665,5252,,,,,,,,,,,,,,,,,,,,,,,,,,0.421,,,0.404,0.438,0.133203695,274,2057,0.109373908,0.157033482,0.050448431,45,892,0.031384601,0.06951226,0.001820073,7,3846,,,549.4285714,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.002531759,,,,,-51987.92,,,,,0.643714831,25625,39808,0.22799154,1.059438123,33290,,,28202.34043,38377.65957,,,,,,,25946,23383.10638,28508.89362,,,,49970,42822.25532,57117.74468,,,,,,0.734939759,244,332,,,38.38195178,,,,,0.477500751,,33290,,,4.405286344,1,227,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,38.74842585,12,30969,20.02187707,67.68570199,,,,,,,,,,,,,,,,,,,,,,,,,,0.75339233,2554,3390,,,0.342,,,,,1.428940234,,,,,0.684871312,1091,1593,0.616685574,0.75305705,0.129814551,182,1402,0.069161706,0.190467396,0.572504708,912,1593,0.504900614,0.640108802,3846,,,,,0.211128445,812,3846,,,0.277431097,1067,3846,,,0.541341654,2082,3846,,,0.003120125,12,3846,,,0.003120125,12,3846,,,0,0,3846,,,0.028861154,111,3846,,,0.409776391,1576,3846,,,0,0,3918,0,0.017029965,0.50650026,1948,3846,,,1,4147,4147,, -22,109,22109,LA,Terrebonne Parish,2024,1,11342.61032,2054,309319,10628.33543,12056.88521,0,11848.99747,8966.315727,14731.67922,,,,,2,18016.00499,15950.12756,20081.88243,,6522.350123,4431.620465,9257.955369,,9864.250847,9042.181697,10686.32,,,,,2,,0.206,,,0.177,0.237,4.385621852,,,3.553937152,5.273805808,6.215168047,,,5.20008071,7.239021305,0.101858293,1025,10063,0.095948626,0.107767959,0,0.083455344,0.062713393,0.104197295,,,,0.160148209,0.145563268,0.17473315,0.063679245,0.047244256,0.080114235,0.085251046,0.078024142,0.092477951,,,,0.113924051,0.07347344,0.154374661,0.227,,,0.188,0.268,0.393,,,0.33,0.454,6.8,0.105801341,0.139,,,0.327,,,0.279,0.378,0.858523453,94077,109580,,,0.195154547,,,0.158110765,0.232916644,0.395604396,36,91,0.344135522,0.446076616,676.1,735,108708,,,30.7736673,747,24274,28.56680607,32.98052853,44.84783769,35.77239175,55.52467473,,,,40.54301963,35.19767112,45.88836814,47.37732657,35.78832334,61.52339933,24.09222698,21.56455739,26.61989657,,,,34.81624758,24.38487178,48.20036218,0.111578006,9984,89480,0.096088645,0.127067368,0.000478346,52,108708,,,2090.538462,0.000591682,62,104786,,,1690.096774,0.002433531,255,104786,,,410.9254902,3887,,,,,5040,,4134,2343,3720,0.36,,,,,,0.27,0.43,0.54,0.36,0.39,,,,,0.28,0.46,0.31,0.28,0.4,0.8237474,59795,72589,0.808682077,0.838812722,0.532372852,15335,28805,0.48558399,0.579161714,0.038711557,1727,44612,,,0.215,5467,,0.137553192,0.292446809,0.327063107,0.179544169,0.474582044,,,,0.273897969,0.172160624,0.375635314,0.343871806,0.195913648,0.491829964,0.13229202,0.091310901,0.173273139,4.85430738,117149,24133,4.337723362,5.370891398,0.243866716,6660,27310,0.205512332,0.282221099,4.323508849,47,108708,,,105.046773,580,552135,96.49758651,113.5959595,84.93771234,55.97448764,123.5799121,,,,130.9113148,108.9896782,152.8329513,72.77768151,45.05053192,111.248417,105.5706955,95.05243385,116.0889572,,,,7.5,,,,,0,,,,,0.139195046,5620,40375,0.116135637,0.162254456,0.105203334,0.085690785,0.124715883,0.019690403,0.011912784,0.027468021,0.019566564,0.006295846,0.032837281,0.813983656,37650,46254,0.793927794,0.834039517,0.797885835,0.709751168,0.886020503,,,,0.748897536,0.679744005,0.818051067,0.790697674,0.74664545,0.834749899,0.856750941,0.836534567,0.876967316,0.276,,46254,0.243851859,0.308148141,73.72493258,,,73.17409513,74.27577003,72.58015581,70.21535517,74.94495644,,,,68.69460005,67.33036501,70.05883508,85.8339536,77.35802447,94.30988272,74.79720998,74.14969365,75.44472631,,,,545.2972128,2054,309319,520.9663392,569.6280864,595.5881275,482.6015046,708.5747504,,,,801.76803,730.4740642,873.0619959,270.8500723,187.5715487,378.4858281,494.8555357,467.412379,522.2986924,,,,70.59390235,85,120407,56.38790187,87.29045348,,,,,,,144.4098199,102.1929834,198.2137604,,,,55.80602999,39.49166823,76.59813625,,,,7.486022932,79,10553,5.926754853,9.329818172,,,,,,,14.10658307,9.880077358,19.52945709,,,,5.45725153,3.756520849,7.664010132,,,,,,,0.134,,,0.116,0.155,0.205,,,0.18,0.232,0.119,,,0.102,0.137,157.6,141,89448,,,0.139,15360,,,,0.105801341,11834.93802,111860,,,44.06919776,145,329028,36.89609232,51.2423032,,,,,,,44.82940809,29.78881611,64.79097639,,,,48.20715302,38.98626165,57.4280444,,,,0.352,,,0.34,0.365,0.138834534,8727,62859,0.118579215,0.159089854,0.049434016,1380,27916,0.035136144,0.063731889,0.00128834,135,104786,,,776.1925926,0.9,1053.9,1171,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.090469846,,,,,-2595.751,,,,,0.577119448,38319,66397,0.523523465,0.630715432,57376,,,50503.48936,64248.51064,53761,24595.7234,82926.2766,84226,11829.91489,156622.0851,36656,32135.48936,41176.51064,45821,31394.44681,60247.55319,69534,65420.97872,73647.02128,,,,,,0.474268085,7225,15234,,,41.49249028,,,,,0.296813999,,57376,,,3.544165758,26,7336,,,11.54842576,90,779327,9.286298066,14.1949759,,,,,,,38.68629487,29.30062194,50.12258221,,,,5.011120834,3.273430501,7.342453075,,,,12.16080055,67,552135,9.365298245,15.52907081,12.13471343,,,,,,,,,,,,,14.03171911,10.41461238,18.49907235,,,,16.66259158,92,552135,13.43240055,20.4351894,,,,,,,39.17783872,28.11469348,53.14916204,,,,11.73007728,8.489115092,15.80033712,,,,15.52621685,121,779327,12.7597273,18.2927064,,,,,,,23.07603554,15.98082543,32.24644669,,,,13.87695,10.85785873,17.4757219,,,,,,,,,,,0.57019545,46240,81095,,,0.539,,,,,54.55261941,,,,,0.742031081,30798,41505,0.721109469,0.762952692,0.106571936,4200,39410,0.087103824,0.126040048,0.848572461,35220,41505,0.82595766,0.871187262,104786,,,,,0.245987059,25776,104786,,,0.160947073,16865,104786,,,0.185129693,19399,104786,,,0.062336572,6532,104786,,,0.010965205,1149,104786,,,0.000858893,90,104786,,,0.057097322,5983,104786,,,0.660517626,69213,104786,,,0.00566316,576,101710,0.002954914,0.008371406,0.504113145,52824,104786,,,0.20702683,22686,109580,, -22,111,22111,LA,Union Parish,2024,1,12788.50298,530,59501,11032.46486,14544.54109,0,,,,2,,,,2,19225.9375,14943.8174,23508.0576,,,,,2,11412.3511,9367.162031,13457.54018,,,,,2,,0.22,,,0.189,0.253,4.493052694,,,3.603262251,5.483895972,5.940828014,,,4.779902163,7.149226618,0.102759836,175,1703,0.088338191,0.117181481,0,,,,,,,0.159680639,0.127604246,0.191757032,0.071428571,0.028767113,0.114090029,0.076923077,0.060727864,0.09311829,,,,,,,0.242,,,0.197,0.289,0.421,,,0.336,0.505,6.1,0.154073855,0.146,,,0.327,,,0.273,0.386,0.517648174,10926,21107,,,0.167752384,,,0.130886285,0.20618348,0.473684211,9,19,0.359759274,0.575810986,630.6,133,21091,,,35.06343714,152,4335,29.48915735,40.63771693,,,,,,,46.80534918,35.96651545,59.88437391,53.33333333,30.48460818,86.60999199,25.95419847,20.15445067,32.90313098,,,,,,,0.096649885,1555,16089,0.081160523,0.112139247,0.000189654,4,21091,,,5272.75,9.65204E-05,2,20721,,,10360.5,0.001544327,32,20721,,,647.53125,4438,,,,,,,7285,,4081,0.36,,,,,,,0.38,,0.36,0.41,,,,,,,0.32,0.45,0.43,0.859168179,12787,14883,0.834623296,0.883713061,0.386138614,1833,4747,0.307359671,0.464917557,0.037864815,349,9217,,,0.34,1496,,0.244680851,0.435319149,,,,,,,0.636429086,0.546829694,0.726028478,0.675126904,0.376919193,0.973334614,0.377060932,0.260753666,0.493368198,6.46910981,98324,15199,5.652717998,7.285501622,0.418038183,1905,4557,0.296391664,0.539684702,11.85339718,25,21091,,,87.96590188,97,110270,71.33442058,107.3109404,,,,,,,84.76762614,53.73540352,127.1930597,,,,90.64158478,70.52456329,114.7127267,,,,9.6,,,,,1,,,,,0.094642857,795,8400,0.065233719,0.124051995,0.062653563,0.038415094,0.086892032,0.026785714,0.005982297,0.047589132,0.009404762,0.000610244,0.01819928,0.847945892,6770,7984,0.819628611,0.876263173,,,,,,,0.856915739,0.792858544,0.920972935,,,,0.734443123,0.69363052,0.775255727,0.504,,7984,0.423488462,0.584511538,72.54640474,,,71.29995822,73.79285126,,,,,,,67.21500669,64.58419937,69.84581401,,,,73.75841738,72.2783535,75.23848125,,,,617.3926835,530,59501,560.4338781,674.351489,,,,,,,960.3858006,810.5287579,1110.242843,,,,543.5546001,479.9158142,607.1933859,,,,57.62858378,12,20823,29.77753018,100.6655383,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.143,,,0.123,0.164,0.201,,,0.174,0.229,0.127,,,0.109,0.147,44.7,8,17879,,,0.146,3110,,,,0.154073855,3500.71206,22721,,,18.35732534,12,65369,9.485497879,32.06655303,,,,,,,,,,,,,24.36755128,12.16419381,43.60028026,,,,0.375,,,0.36,0.389,0.113806452,1323,11625,0.094742622,0.132870281,0.053248136,250,4695,0.034184307,0.072311966,0.000579123,12,20721,,,1726.75,0.931281407,185.325,199,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.216106396,,,,,-11695.72,,,,,0.76269428,38963,51086,0.579954986,0.945433574,48003,,,41237.7234,54768.2766,,,,,,,18155,14012.19149,22297.80851,,,,64222,53237.65957,75206.34043,,,,,,0.471957672,1338,2835,,,54.14630215,,,,,0.33114597,,48003,,,5.042016807,6,1190,,,9.018642823,14,155234,4.930575954,15.13175021,,,,,,,,,,,,,,,,,,,16.54876053,20,110270,9.807844298,26.15417624,18.13729936,,,,,,,,,,,,,21.39703196,11.97575636,35.29115025,,,,23.57848916,26,110270,15.40225194,34.54794965,,,,,,,,,,,,,24.95927697,15.02711519,38.97700275,,,,21.90241829,34,155234,15.16806137,30.60643422,,,,,,,33.65957227,17.92230462,57.55889368,,,,18.69211286,11.41762814,28.8684523,,,,,,,,,,,0.656565065,11201,17060,,,0.5,,,,,0.744075846,,,,,0.774229075,6327,8172,0.741295366,0.807162784,0.14232902,1078,7574,0.102362739,0.182295301,0.643906021,5262,8172,0.596867561,0.69094448,20721,,,,,0.214420154,4443,20721,,,0.224120458,4644,20721,,,0.229911684,4764,20721,,,0.008011196,166,20721,,,0.003329955,69,20721,,,0.001061725,22,20721,,,0.057043579,1182,20721,,,0.69600888,14422,20721,,,0.012042122,239,19847,0.003965269,0.020118976,0.505091453,10466,20721,,,1,21107,21107,, -22,113,22113,LA,Vermilion Parish,2024,1,9300.429183,995,164427,8433.033592,10167.82477,0,,,,2,,,,2,12195.68265,9603.926197,14787.43911,,,,,2,9197.686107,8206.531222,10188.84099,,,,,2,,0.197,,,0.166,0.233,4.321452006,,,3.419142336,5.220734711,5.818152968,,,4.749663986,6.914674953,0.097206054,501,5154,0.089118357,0.10529375,0,,,,,,,0.163053723,0.140825102,0.185282344,0.092105263,0.054569209,0.129641318,0.080369264,0.071589013,0.089149516,,,,,,,0.226,,,0.183,0.276,0.386,,,0.319,0.46,7.5,0.037031699,0.139,,,0.298,,,0.246,0.354,0.487909482,27986,57359,,,0.194312852,,,0.157422096,0.236285976,0.216216216,8,37,0.132577529,0.309084407,519.2,297,57204,,,31.70028818,429,13533,28.70049969,34.70007668,,,,,,,53.77720871,44.38713383,63.16728358,32.85714286,20.82861005,49.30184699,26.82578539,23.58365377,30.06791702,,,,41.91616767,22.91595891,70.32820695,0.099494558,4744,47681,0.085196685,0.11379243,0.000419551,24,57204,,,2383.5,0.000280938,16,56952,,,3559.5,0.000561877,32,56952,,,1779.75,2793,,,,,,,3860,,2590,0.44,,,,,,0.23,0.42,,0.44,0.39,,,,,,0.44,0.35,0.37,0.39,0.848002939,32314,38106,0.827746443,0.868259435,0.523665518,7446,14219,0.465607168,0.581723868,0.035291194,852,24142,,,0.268,3770,,0.190553192,0.345446809,,,,0.439252336,0.041169468,0.837335205,0.470362473,0.275496819,0.665228127,0.127979925,0.016752579,0.23920727,0.184319258,0.131333023,0.237305494,5.229125226,113038,21617,4.698308685,5.759941766,0.237142857,3403,14350,0.184972216,0.289313499,5.419201454,31,57204,,,76.3361357,226,296059,66.38363944,86.28863196,,,,,,,105.1952088,76.43499978,141.2196578,,,,75.93898993,64.71972112,87.15825874,,,,8.6,,,,,1,,,,,0.085662759,1900,22180,0.0694911,0.101834419,0.059267735,0.045078089,0.07345738,0.026149684,0.01542496,0.036874409,0.00405771,0.000911818,0.007203602,0.82454732,18488,22422,0.811806487,0.837288153,,,,,,,0.524810013,0.411074324,0.638545703,,,,0.81903175,0.783092959,0.854970542,0.453,,22422,0.401242163,0.504757837,74.99796631,,,74.30664046,75.68929215,,,,,,,71.80189432,69.96126821,73.64252043,100.8785451,56.62474061,145.1323496,75.08119349,74.30047859,75.86190839,,,,478.6442176,995,164427,447.7975512,509.4908839,,,,,,,649.225584,543.9722876,754.4788805,,,,469.7777745,435.9414961,503.6140529,,,,44.70548336,29,64869,29.93996383,64.20453135,,,,,,,,,,,,,41.09085404,24.73937837,64.1684586,,,,4.936396431,26,5267,3.22461804,7.232964512,,,,,,,,,,,,,,,,,,,,,,0.134,,,0.114,0.156,0.194,,,0.168,0.221,0.114,,,0.097,0.131,188.9,89,47105,,,0.139,8020,,,,0.037031699,2147.801486,57999,,,23.85103326,42,176093,17.18972687,32.23966812,,,,,,,,,,,,,28.28464506,20.11314764,38.66604092,,,,0.358,,,0.342,0.372,0.12241791,4101,33500,0.103354081,0.14148174,0.047670203,710,14894,0.03337233,0.061968075,0.000596994,34,56952,,,1675.058824,0.98,553.7,565,,,0.134475939,408,3034,0.063815893,0.205135986,,,,,,,,,,,,,,,,,,,,,0.159458695,,,,,-1153.748,,,,,0.559878994,34979,62476,0.496584475,0.623173512,50554,,,43312.12766,57795.87234,,,,46743,24833.89362,68652.10638,24600,17069.78723,32130.21277,95435,34445.04255,156424.9575,62512,54101.2766,70922.7234,,,,,,0.386195642,4023,10417,,,61.81627558,,,,,0.268504965,,50554,,,5.739273025,21,3659,,,6.007608035,25,416139,3.887807163,8.868414568,,,,,,,32.13911161,19.34984466,50.18920392,,,,,,,,,,18.64862151,54,296059,13.92768252,24.45518603,18.23960765,,,,,,,,,,,,,20.12497894,14.67929774,26.92880521,,,,17.56406662,52,296059,13.11768506,23.03293659,,,,,,,47.81600402,29.20725748,73.84794009,,,,13.37561754,9.088083179,18.98562143,,,,18.0228241,75,416139,14.17609445,22.59176608,,,,,,,27.06451504,15.46970881,43.95107683,,,,16.88857227,12.7227839,21.98279821,,,,,,,,,,,0.622414579,27324,43900,,,0.594,,,,,23.01169895,,,,,0.764974198,16603,21704,0.740868576,0.78907982,0.093563502,1897,20275,0.071260736,0.115866268,0.885643199,19222,21704,0.868331993,0.902954406,56952,,,,,0.24961371,14216,56952,,,0.168404973,9591,56952,,,0.141031044,8032,56952,,,0.004617924,263,56952,,,0.020947465,1193,56952,,,0.000316056,18,56952,,,0.040823852,2325,56952,,,0.778971766,44364,56952,,,0.010597213,568,53599,0.006217166,0.01497726,0.513344571,29236,56952,,,0.559336809,32083,57359,, -22,115,22115,LA,Vernon Parish,2024,1,9981.558278,772,135744,9032.552042,10930.56451,0,,,,2,,,,2,12523.75982,9612.622567,15434.89707,,4681.212986,2726.979073,7495.075467,1,10363.63702,9217.75034,11509.52371,,,,,2,,0.196,,,0.167,0.225,4.338387546,,,3.462014273,5.242558967,6.189116771,,,5.053311492,7.312484486,0.076747968,472,6150,0.070095051,0.083400884,0,,,,0.11627907,0.060960676,0.171597464,0.102715466,0.082269983,0.12316095,0.065789474,0.048163632,0.083415315,0.074208364,0.06622113,0.082195597,,,,,,,0.217,,,0.177,0.256,0.4,,,0.323,0.474,5.2,0.221693938,0.156,,,0.303,,,0.252,0.356,0.560205128,27310,48750,,,0.207935751,,,0.167021077,0.251214809,0.388888889,14,36,0.303559261,0.471308391,647.6,311,48027,,,45.5026455,430,9450,41.20175396,49.80353704,,,,,,,27.92915531,20.04244405,37.88905284,49.76076555,37.16371981,65.25462368,51.17476666,45.55007937,56.79945395,,,,31.32530121,16.67940359,53.56721908,0.088213971,3407,38622,0.075107588,0.101320354,0.000270681,13,48027,,,3694.384615,0.00059263,28,47247,,,1687.392857,0.002095371,99,47247,,,477.2424242,5191,,,,,,5092,5926,,5057,0.27,,,,,,0.22,0.28,0.23,0.28,0.29,,,,,,0.32,0.27,0.29,0.29,0.877914497,26470,30151,0.863552224,0.89227677,0.5737956,8242,14364,0.532591308,0.614999893,0.040474143,659,16282,,,0.23,2708,,0.170425532,0.289574468,0.11875,0.007174705,0.230325295,0.061403509,0,0.386578199,0.419005102,0.311758846,0.526251359,0.12482663,0.028053358,0.221599902,0.21972644,0.170242482,0.269210398,4.714931537,108467,23005,4.167920954,5.26194212,0.225382038,2758,12237,0.179791753,0.270972323,7.079351198,34,48027,,,78.2098989,190,242936,67.08897177,89.33082604,,,,,,,86.78477376,58.12112502,124.6374115,60.44644014,33.0466313,101.4188555,82.99683317,69.29722844,96.6964379,,,,8.9,,,,,1,,,,,0.109620325,1920,17515,0.090009982,0.129230669,0.095749047,0.078621219,0.112876876,0.012560662,0.007810212,0.017311113,0.003996574,0.001655329,0.00633782,0.809882667,16980,20966,0.78729938,0.832465955,,,,0.680942184,0.540913434,0.820970935,0.802318841,0.755769081,0.8488686,0.79577788,0.720613187,0.870942573,0.805649641,0.769946618,0.841352664,0.285,,20966,0.253476155,0.316523845,73.87827418,,,73.0890811,74.66746727,,,,,,,72.20275089,69.81194849,74.5935533,82.98745191,76.98766243,88.98724139,73.20882638,72.31165902,74.10599374,,,,556.7399366,772,135744,516.7152857,596.7645875,,,,,,,673.319395,548.344493,798.2942969,312.9745476,182.3192074,501.102569,577.5637608,530.9439589,624.1835627,,,,70.52455017,37,52464,49.65579172,97.2088025,,,,,,,,,,,,,81.07012566,53.87050975,117.1689037,,,,6.954322744,44,6327,5.053021552,9.335853687,,,,,,,,,,,,,7.30270907,4.961836509,10.3656126,,,,,,,0.133,,,0.114,0.15,0.19,,,0.163,0.215,0.118,,,0.1,0.135,140.4,55,39178,,,0.156,7680,,,,0.221693938,11602.13053,52334,,,16.04464597,23,143350,10.17092922,24.07484681,,,,,,,,,,,,,17.96174149,10.64526636,28.38729533,,,,0.371,,,0.358,0.385,0.107898736,2911,26979,0.090026396,0.125771077,0.044902009,543,12093,0.030604137,0.059199882,0.001820221,86,47247,,,549.3837209,0.98,420.42,429,,,0.152317881,391,2567,0.10479494,0.199840821,,,,,,,,,,,,,,,,,,,,,0.136328226,,,,,1167.549,,,,,0.826698843,38711,46826,0.744650641,0.908747044,52626,,,46461.23404,58790.76596,51736,30329.70213,73142.29787,56250,6779.361702,105720.6383,39598,30665.40426,48530.59575,49779,39937.29787,59620.70213,60509,56955.97872,64062.02128,,,,,,0.52877743,4217,7975,,,49.88904673,,,,,0.266560255,,52626,,,1.026694045,4,3896,,,7.841816048,27,344308,5.167806189,11.40943064,,,,,,,,,,,,,7.061149555,4.113379827,11.30558446,,,,20.05814823,50,242936,14.73797287,26.67308497,20.58155234,,,,,,,,,,,,,19.79536898,13.62622116,27.80005788,,,,17.70013502,43,242936,12.80967548,23.84196571,,,,,,,,,,,,,19.42479074,13.37113216,27.27962826,,,,20.91150946,72,344308,16.36196826,26.33458533,,,,,,,,,,,,,23.6756191,17.9316827,30.67451066,,,,,,,,,,,0.473160707,17268,36495,,,0.447,,,,,14.48068614,,,,,0.553367934,9809,17726,0.532457439,0.574278429,0.097320843,1631,16759,0.079404442,0.115237243,0.856199932,15177,17726,0.847298711,0.865101154,47247,,,,,0.252375812,11924,47247,,,0.135331344,6394,47247,,,0.130865452,6183,47247,,,0.017016954,804,47247,,,0.018794844,888,47247,,,0.005058522,239,47247,,,0.097847482,4623,47247,,,0.702203315,33177,47247,,,0.007204255,321,44557,0.003715636,0.010692875,0.478866383,22625,47247,,,0.578297436,28192,48750,, -22,117,22117,LA,Washington Parish,2024,1,17375.66082,1248,126753,15961.4378,18789.88385,0,,,,2,,,,2,18247.40009,15671.67624,20823.12394,,,,,2,17660.94722,15881.63196,19440.26248,,,,,2,,0.249,,,0.217,0.283,5.045304905,,,4.149963699,6.029217681,6.196497219,,,5.143834024,7.337968664,0.121862052,500,4103,0.111852355,0.131871749,0,,,,,,,0.172058824,0.151999105,0.192118542,0.080291971,0.03478721,0.125796732,0.097774245,0.086168565,0.109379925,,,,,,,0.266,,,0.223,0.311,0.446,,,0.374,0.517,6.8,0.038998026,0.169,,,0.366,,,0.312,0.42,0.489826892,22269,45463,,,0.151456931,,,0.120743244,0.185839187,0.44,22,50,0.371515086,0.505292591,642.5,290,45133,,,37.82025214,372,9836,33.97691023,41.66359404,,,,,,,35.63348416,29.41149733,41.85547099,59.28853755,33.1833444,97.78742637,38.82494417,33.7630543,43.88683403,,,,,,,0.090883044,3172,34902,0.076585172,0.105180916,0.000199411,9,45133,,,5014.777778,0.000355358,16,45025,,,2814.0625,0.001621322,73,45025,,,616.7808219,4183,,,,,,,5893,,3733,0.38,,,,,,,0.39,,0.38,0.4,,,,,,,0.34,0.47,0.42,0.830694081,26019,31322,0.807314878,0.854073283,0.425976305,4854,11395,0.357930365,0.494022246,0.041673973,713,17109,,,0.3,3127,,0.186808511,0.413191489,,,,,,,0.474181011,0.379964965,0.568397056,,,,0.258536585,0.18441328,0.332659891,5.224030179,92784,17761,4.20086924,6.247191117,0.40874036,4293,10503,0.338277372,0.479203348,7.976425232,36,45133,,,165.8598007,382,230315,149.2269944,182.492607,,,,,,,132.3265013,106.6738364,162.2867069,,,,189.5753512,167.5655809,211.5851215,,,,8.8,,,,,1,,,,,0.127563923,2270,17795,0.100096251,0.155031594,0.103575482,0.074971493,0.132179472,0.02051138,0.011448811,0.029573948,0.010115201,0.002226742,0.01800366,0.778975741,12716,16324,0.72432528,0.833626203,,,,,,,0.735980682,0.616887534,0.855073829,,,,0.824023891,0.774907665,0.873140117,0.4,,16324,0.339094029,0.460905971,69.45914102,,,68.56338576,70.35489628,,,,,,,67.72422681,66.12146408,69.32698953,,,,69.55277642,68.45451242,70.65104043,,,,771.5172382,1248,126753,726.1415619,816.8929146,,,,,,,861.8590388,775.136525,948.5815525,,,,767.8116297,711.6288273,823.9944322,,,,87.78163274,42,47846,63.26527972,118.6552664,,,,,,,150.5551722,96.46353964,224.0141622,,,,53.1858313,29.76770603,87.72194047,,,,8.898508899,37,4158,6.265371469,12.26542235,,,,,,,,,,,,,,,,,,,,,,0.159,,,0.137,0.18,0.212,,,0.185,0.242,0.142,,,0.122,0.162,396.3,149,37594,,,0.169,7750,,,,0.038998026,1839.458877,47168,,,86.7979577,119,137100,71.20271645,102.3931989,,,,,,,31.45034474,16.74598401,53.78104734,,,,117.6075269,95.11198085,140.1030729,,,,0.374,,,0.362,0.387,0.115729787,2837,24514,0.095474468,0.135985106,0.033786869,370,10951,0.023063465,0.044510273,0.000910605,41,45025,,,1098.170732,0.848970874,437.22,515,,,0.203513282,475,2334,0.114909623,0.292116941,,,,,,,,,,,,,,,,,,,,,0.158960782,,,,,-18276.613,,,,,0.646460626,32484,50249,0.517268423,0.775652829,41779,,,36105.12766,47452.87234,,,,,,,30544,22341.78723,38746.21277,69912,38187.40426,101636.5957,47706,41412.55319,53999.44681,,,,,,0.443964876,2983,6719,,,36.63763494,,,,,0.289044735,,41779,,,4.427792916,13,2936,,,12.38405429,40,322996,8.847349949,16.86356703,,,,,,,28.70322911,19.0730873,41.48415781,,,,5.676791856,2.93328119,9.91621294,,,,18.54001791,43,230315,13.24526061,25.24624226,18.67008228,,,,,,,,,,,,,24.67528058,17.18723703,34.31734201,,,,24.74871372,57,230315,18.74443409,32.06482921,,,,,,,31.64329378,19.83068374,47.90832706,,,,23.28118348,16.21619732,32.37849043,,,,25.69691266,83,322996,20.46744749,31.85518948,,,,,,,29.72834444,19.90953884,42.69486155,,,,24.12636539,17.96366373,31.72171485,,,,,,,,,,,0.558232013,19513,34955,,,0.394,,,,,7.119427693,,,,,0.675096143,11586,17162,0.628838227,0.721354059,0.110592,1728,15625,0.083681099,0.137502901,0.700617644,12024,17162,0.661763558,0.739471729,45025,,,,,0.234625208,10564,45025,,,0.193359245,8706,45025,,,0.300832871,13545,45025,,,0.005241533,236,45025,,,0.003664631,165,45025,,,0.000355358,16,45025,,,0.029450305,1326,45025,,,0.645952249,29084,45025,,,0.010022246,428,42705,0.003967097,0.016077395,0.500544142,22537,45025,,,0.757627081,34444,45463,, -22,119,22119,LA,Webster Parish,2024,1,14455.92973,930,102407,12953.3484,15958.51107,0,,,,2,,,,2,18016.1574,15302.27248,20730.04233,,,,,2,13131.79848,11214.1751,15049.42185,,,,,2,,0.26,,,0.227,0.294,5.129105286,,,4.173388892,6.123452259,6.227642383,,,5.078704073,7.427107271,0.131049654,417,3182,0.119324423,0.142774885,0,,,,,,,0.189825361,0.168645182,0.21100554,,,,0.089855073,0.0763596,0.103350545,,,,,,,0.273,,,0.227,0.321,0.439,,,0.36,0.517,5.6,0.186334519,0.158,,,0.364,,,0.309,0.417,0.602293938,22265,36967,,,0.149769786,,,0.118008472,0.185830963,0.340909091,15,44,0.262598167,0.41884339,655,237,36184,,,35.790314,269,7516,31.51325304,40.06737495,,,,,,,48.91304348,40.92391304,56.90217391,,,,28.6407767,23.47304617,33.80850722,,,,,,,0.082428716,2278,27636,0.069322333,0.095535099,0.00063564,23,36184,,,1573.217391,0.000308616,11,35643,,,3240.272727,0.002468928,88,35643,,,405.0340909,3746,,,,,,,5787,,3385,0.4,,,,,,,0.44,,0.39,0.37,,,,,,,0.34,,0.38,0.866781939,22057,25447,0.844599938,0.88896394,0.478461539,4043,8450,0.416477964,0.540445113,0.04148794,590,14221,,,0.345,2723,,0.26993617,0.42006383,,,,,,,0.571564281,0.497818606,0.645309957,0.545741325,0.402818532,0.688664118,0.23173913,0.173172179,0.290306082,5.200116309,80477,15476,4.53935834,5.860874278,0.346369381,2905,8387,0.284123202,0.408615561,13.81826222,50,36184,,,94.41731404,180,190643,80.62390992,108.2107182,,,,,,,72.35444441,53.16332425,96.21607245,,,,109.1126076,90.20981275,128.0154025,,,,9.9,,,,,1,,,,,0.171568628,2800,16320,0.142715537,0.200421718,0.142636616,0.114187353,0.171085879,0.026593137,0.012585118,0.040601157,0.009191177,0.001335758,0.017046595,0.859954874,11053,12853,0.826304382,0.893605367,,,,,,,0.887230514,0.824576574,0.949884454,,,,0.845766763,0.79708081,0.894452716,0.328,,12853,0.282551279,0.373448721,70.93340538,,,69.91679402,71.95001673,,,,,,,68.17269621,66.43684034,69.90855208,,,,71.78039462,70.46121735,73.09957189,,,,661.6236347,930,102407,616.4177382,706.8295313,,,,,,,813.5010622,725.5515719,901.4505524,,,,609.1017715,554.5440457,663.6594972,,,,150.2992566,56,37259,113.5344432,195.1760863,,,,,,,202.8103723,134.7660195,293.1174558,,,,135.0373764,89.73135595,195.1666069,,,,11.6101436,38,3273,8.216028611,15.93582918,,,,,,,,,,,,,,,,,,,,,,0.165,,,0.144,0.186,0.218,,,0.188,0.246,0.152,,,0.131,0.174,65.8,20,30408,,,0.158,5920,,,,0.186334519,7678.286509,41207,,,10.66979647,12,112467,5.513239536,18.63798719,,,,,,,,,,,,,,,,,,,0.381,,,0.367,0.394,0.101590196,2006,19746,0.084909344,0.118271047,0.036084963,299,8286,0.024170069,0.047999856,0.000953904,34,35643,,,1048.323529,0.9,356.4,396,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.073376869,,,,,-11105.67,,,,,0.76446963,27790,36352,0.56223258,0.966706681,43698,,,37460.55319,49935.44681,,,,,,,23606,21043.10638,26168.89362,,,,43328,39748.76596,46907.23404,,,,,,0.571218526,3108,5441,,,41.18105504,,,,,0.321021557,,43698,,,6.599208095,15,2273,,,5.178012679,14,270374,2.830867715,8.687825428,,,,,,,,,,,,,,,,,,,19.73476485,39,190643,13.82198668,27.32123302,20.45708471,,,,,,,,,,,,,29.24768461,20.00539462,41.28900396,,,,28.84973485,55,190643,21.73356849,37.55189542,,,,,,,21.5523877,11.78289091,36.16124438,,,,34.09768988,24.35988956,46.43137581,,,,24.78048925,67,270374,19.2045388,31.47034538,,,,,,,16.31161713,9.129488286,26.90353187,,,,30.55246037,22.74831353,40.17084299,,,,,,,,,,,0.610046886,18216,29860,,,0.562,,,,,20.54880281,,,,,0.670630363,9926,14801,0.640131001,0.701129724,0.181426128,2440,13449,0.151395628,0.211456628,0.591987028,8762,14801,0.55650357,0.627470486,35643,,,,,0.224588278,8005,35643,,,0.206520214,7361,35643,,,0.332211093,11841,35643,,,0.005779536,206,35643,,,0.005695368,203,35643,,,0.00042084,15,35643,,,0.025306512,902,35643,,,0.615660859,21944,35643,,,0.003061814,106,34620,0,0.007252967,0.516118172,18396,35643,,,0.497119052,18377,36967,, -22,121,22121,LA,West Baton Rouge Parish,2024,1,10636.02094,448,76455,9225.149105,12046.89278,0,,,,2,,,,2,13903.40906,11421.06683,16385.75129,,,,,2,8878.022146,7065.707132,10690.33716,,,,,2,,0.184,,,0.158,0.212,3.938185891,,,3.090154951,4.831139067,5.68846874,,,4.568546685,6.863286741,0.110366575,280,2537,0.098173305,0.122559844,0,,,,,,,0.149905123,0.128353613,0.171456633,0.094890511,0.045815801,0.143965221,0.082118189,0.06721096,0.097025418,,,,,,,0.2,,,0.162,0.241,0.417,,,0.335,0.499,8,0.072838967,0.1,,,0.279,,,0.229,0.332,0.854479944,23241,27199,,,0.182272988,,,0.14574662,0.224772691,0.383333333,23,60,0.318436309,0.446852866,834.8,232,27792,,,21.17647059,117,5525,17.33925041,25.01369077,,,,,,,22.86821705,17.40834637,29.49833386,,,,17.78808971,13.02311733,23.72681891,,,,,,,0.078789747,1789,22706,0.065683364,0.09189613,0.000179908,5,27792,,,5558.4,0.000178355,5,28034,,,5606.8,0.000963116,27,28034,,,1038.296296,3732,,,,,,,5065,,2682,0.47,,,,,,,0.43,,0.5,0.44,,,,,,,0.38,,0.46,0.885565737,17203,19426,0.861243564,0.90988791,0.627497729,5527,8808,0.546131282,0.708864177,0.032587859,459,14085,,,0.183,1256,,0.110319149,0.255680851,,,,,,,0.318572794,0.217562087,0.419583501,,,,0.093112245,0.031475321,0.154749169,4.402168698,137625,31263,3.541906856,5.262430539,0.335569423,2151,6410,0.230564253,0.440574592,5.037420841,14,27792,,,110.661652,148,133741,92.83284175,128.4904623,,,,,,,120.6454532,92.91169987,154.0615503,,,,106.3090322,84.03287839,132.6784834,,,,9,,,,,0,,,,,0.107700312,1035,9610,0.077799824,0.1376008,0.083315734,0.052386127,0.11424534,0.024453694,0.00931448,0.039592908,0.009885536,0,0.020621666,0.852353838,10628,12469,0.827264592,0.877443083,,,,,,,0.866185753,0.77094755,0.961423956,,,,0.848308217,0.811079103,0.885537332,0.39,,12469,0.313114308,0.466885692,75.30534914,,,74.08388705,76.52681123,,,,,,,71.32596938,69.49333608,73.15860267,,,,77.34727691,75.68245143,79.01210239,,,,487.9185246,448,76455,441.4470775,534.3899717,,,,,,,652.4781006,565.1894663,739.7667349,,,,403.706382,347.939007,459.4737569,,,,70.74136955,20,28272,43.21066633,109.2543078,,,,,,,80.93889114,38.81334436,148.8495026,,,,73.71913011,35.35118832,135.572105,,,,7.724990344,20,2589,4.718624792,11.93062105,,,,,,,,,,,,,,,,,,,,,,0.12,,,0.104,0.139,0.181,,,0.157,0.206,0.115,,,0.098,0.133,514.9,118,22916,,,0.1,2720,,,,0.072838967,1732.693338,23788,,,40.71611001,33,81049,28.02709666,57.18055654,,,,,,,,,,,,,56.72278441,36.7079953,83.73401937,,,,0.38,,,0.366,0.393,0.094962326,1525,16059,0.078281475,0.111643178,0.041048538,285,6943,0.027942155,0.054154921,0.000642078,18,28034,,,1557.444444,0.91,225.68,248,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.066482313,,,,,369.2832,,,,,0.741151104,47092,63539,0.598489027,0.883813181,71362,,,62217.31915,80506.68085,,,,,,,55931,46424.10638,65437.89362,86389,69411.46809,103366.5319,94622,82088.7234,107155.2766,,,,,,0.64626506,2682,4150,,,20.26151218,,,,,0.261820016,,71362,,,4.530011325,8,1766,,,14.05207917,26,185026,9.17928465,20.58955178,,,,,,,24.67139078,14.62182977,38.99143391,,,,,,,,,,13.08922712,20,133741,7.880569775,20.44044955,14.9542773,,,,,,,,,,,,,18.89425333,10.32966412,31.70134659,,,,19.44056049,26,133741,12.69921955,28.4849254,,,,,,,32.0464485,18.6682372,51.30946844,,,,,,,,,,23.78044167,44,185026,17.27890532,31.92413298,,,,,,,31.52455489,19.98386359,47.30231074,,,,14.66175335,8.206072051,24.18233246,,,,,,,,,,,0.70485,14097,20000,,,0.612,,,,,41.63265641,,,,,0.75218254,7582,10080,0.719218154,0.785146925,0.093302924,900,9646,0.060430744,0.126175103,0.881448413,8885,10080,0.850342185,0.91255464,28034,,,,,0.247092816,6927,28034,,,0.14988942,4202,28034,,,0.410216166,11500,28034,,,0.00256831,72,28034,,,0.006813156,191,28034,,,0.000499394,14,28034,,,0.035884997,1006,28034,,,0.531818506,14909,28034,,,0.006169224,158,25611,0,0.013524932,0.511165014,14330,28034,,,0.261039009,7100,27199,, -22,123,22123,LA,West Carroll Parish,2024,1,11942.91494,222,28322,9506.022406,14379.80748,0,,,,2,,,,2,13345.65622,7909.481677,21091.89048,1,,,,2,12418.29898,9551.927237,15284.67072,,,,,2,,0.229,,,0.195,0.265,4.669888442,,,3.721323866,5.736086302,6.03854157,,,4.824452586,7.356973317,0.080503145,64,795,0.061590422,0.099415867,0,,,,,,,0.134328358,0.076590041,0.192066675,,,,0.066985646,0.047417155,0.086554137,,,,,,,0.256,,,0.21,0.306,0.41,,,0.324,0.499,7.4,0.021626542,0.151,,,0.335,,,0.279,0.395,0.332888935,3246,9751,,,0.170856857,,,0.134743387,0.21067384,0.375,3,8,0.179126284,0.556186502,427.4,41,9594,,,36.15604187,76,2102,28.48684866,45.25467791,,,,,,,34.31372549,18.75963303,57.57260079,,,,36.41092328,27.50442015,47.28261249,,,,,,,0.110825787,820,7399,0.094144936,0.127506638,0.000521159,5,9594,,,1918.8,0.000211082,2,9475,,,4737.5,0.000633245,6,9475,,,1579.166667,7483,,,,,,,6182,,7682,0.39,,,,,,,0.36,,0.4,0.27,,,,,,,0.14,,0.28,0.815908759,5580,6839,0.777519195,0.854298322,0.375573156,901,2399,0.294194246,0.456952065,0.054848742,194,3537,,,0.305,645,,0.189425532,0.420574468,,,,,,,0.657074341,0.563179145,0.750969536,0.543046358,0.170681809,0.915410906,0.182656827,0.07144654,0.293867113,4.896586651,96688,19746,4.024774028,5.768399273,0.362910382,818,2254,0.252847109,0.472973654,20.84636231,20,9594,,,122.5651953,65,53033,94.59323012,156.2194027,,,,,,,,,,,,,137.6678582,104.2682914,178.3646783,,,,8.5,,,,,1,,,,,0.078787879,325,4125,0.043683204,0.113892553,0.043828715,0.017197957,0.070459474,0.021818182,0,0.045605127,0.013333333,0.00276988,0.023896787,0.909679235,3233,3554,0.864466815,0.954891655,,,,,,,,,,,,,0.843137255,0.798529764,0.887744746,0.31,,3554,0.235620137,0.384379863,73.06549222,,,71.30986593,74.82111851,,,,,,,,,,,,,72.79402664,70.78164779,74.80640549,,,,584.0591974,222,28322,503.0025674,665.1158274,,,,,,,684.7083273,479.5612946,947.9249388,,,,593.5227572,501.1759134,685.869601,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.149,,,0.128,0.172,0.206,,,0.178,0.235,0.124,,,0.106,0.144,208.8,17,8143,,,0.151,1510,,,,0.021626542,250.9543886,11604,,,,,,,,,,,,,,,,,,,,,,,,,,0.379,,,0.364,0.394,0.133371062,707,5301,0.110732764,0.15600936,0.056586691,125,2209,0.03871435,0.074459031,0.000738786,7,9475,,,1353.571429,0.975,121.875,125,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.024287973,,,,,-6836.531,,,,,0.780221604,37602,48194,0.620166538,0.940276671,41380,,,37249.10638,45510.89362,,,,,,,31053,15722.10638,46383.89362,,,,47089,33612.06383,60565.93617,,,,,,0.568432671,1030,1812,,,12.96516545,,,,,0.384146931,,41380,,,1.945525292,1,514,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,31.81336161,24,75440,20.38342107,47.33576033,,,,,,,,,,,,,33.78720816,20.63810451,52.1816027,,,,,,,,,,,0.600356506,5052,8415,,,0.545,,,,,0.300062961,,,,,0.754029062,2854,3785,0.717514586,0.790543538,0.083457972,279,3343,0.044750964,0.12216498,0.6,2271,3785,0.540080883,0.659919117,9475,,,,,0.22585752,2140,9475,,,0.210343008,1993,9475,,,0.143430079,1359,9475,,,0.010343008,98,9475,,,0.003905013,37,9475,,,0.000316623,3,9475,,,0.0446438,423,9475,,,0.787546174,7462,9475,,,0.004853322,45,9272,0,0.015897815,0.507968338,4813,9475,,,1,9751,9751,, -22,125,22125,LA,West Feliciana Parish,2024,1,11528.33544,317,43686,9163.581133,13893.08974,0,,,,2,,,,2,13196.89658,8792.318778,17601.47438,,,,,2,11287.62263,8344.929331,14230.31593,,,,,2,,0.187,,,0.156,0.222,3.795322631,,,2.944398821,4.724868546,5.316222589,,,4.203648361,6.539131186,0.08994709,68,756,0.069552168,0.110342012,0,,,,,,,0.162698413,0.117127428,0.208269398,,,,0.053830228,0.033703177,0.073957279,,,,,,,0.198,,,0.156,0.245,0.399,,,0.313,0.483,7.4,0.148571027,0.089,,,0.27,,,0.219,0.324,0.308817766,4728,15310,,,0.190634227,,,0.151678157,0.233491435,0.3125,5,16,0.177519792,0.449075671,574.4,89,15494,,,18.39389861,41,2229,13.19977921,24.95340043,,,,,,,21.9941349,12.30995034,36.27598075,,,,16.70146138,10.70094144,24.85045066,,,,,,,0.066031826,527,7981,0.050542464,0.081521187,0.000516329,8,15494,,,1936.75,0.000390092,6,15381,,,2563.5,0.000975229,15,15381,,,1025.4,1711,,,,,,,4852,,542,0.42,,,,,,,0.45,,0.41,0.41,,,,,,,0.32,,0.43,0.833501429,9917,11898,0.80505649,0.861946368,0.538461539,2611,4849,0.429049904,0.647873173,0.025767544,141,5472,,,0.174,426,,0.104893617,0.243106383,,,,,,,0.578313253,0.466530467,0.690096039,,,,0.100502513,0.046862274,0.154142752,6.046031622,155250,25678,3.943927702,8.148135543,0.445072698,1102,2476,0.234933674,0.655211722,5.808700142,9,15494,,,121.4988303,94,77367,98.18342239,148.6837977,,,,,,,108.101791,76.11363709,149.0040791,,,,137.9004654,104.1685296,179.0752247,,,,8.5,,,,,0,,,,,0.090476191,380,4200,0.037261747,0.143690634,0.075630252,0.020381796,0.130878708,0.003333333,0,0.013571086,0.013095238,0,0.02951721,0.875628141,4879,5572,0.79939327,0.951863012,,,,,,,0.922395614,0.91138989,0.933401337,,,,0.84084372,0.783555766,0.898131675,0.546,,5572,0.437032451,0.654967549,76.43425032,,,74.06909201,78.79940862,,,,,,,74.26400269,69.29415997,79.2338454,,,,76.96781304,74.31565772,79.61996836,,,,550.3367246,317,43686,486.6319111,614.041538,,,,,,,710.6314085,588.7660044,832.4968126,,,,506.5518818,422.6493093,590.4544543,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.116,,,0.099,0.136,0.165,,,0.142,0.192,0.12,,,0.101,0.14,761.4,105,13790,,,0.089,1360,,,,0.148571027,2321.422295,15625,,,53.73224149,25,46527,34.7726736,79.31938809,,,,,,,58.43396961,30.19368479,102.0723853,,,,53.42978094,28.4491081,91.36655262,,,,0.384,,,0.365,0.401,0.085361489,477,5588,0.06391468,0.106808297,0.021903624,55,2511,0.01118022,0.032627028,0.000585138,9,15381,,,1709,0.975,142.35,146,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.004343905,,,,,2622.351,,,,,0.761576243,47137,61894,0.451594253,1.071558234,68266,,,58491.02128,78040.97872,,,,,,,46629,9995.468085,83262.53192,180435,6809.978723,354060.0213,78500,61972.85106,95027.14894,,,,,,0.270457698,585,2163,,,36.69241509,,,,,0.273694079,,68266,,,7.751937985,5,645,,,12.95145056,14,108096,7.080678542,21.73033334,,,,,,,,,,,,,,,,,,,24.19654976,21,77367,14.56790358,37.78590973,27.14335569,,,,,,,,,,,,,26.77227248,12.83834528,49.23516229,,,,19.38811121,15,77367,10.85137867,31.97774099,,,,,,,,,,,,,,,,,,,13.87655417,15,108096,7.766602032,22.88726583,,,,,,,,,,,,,17.66472355,8.470921562,32.48605554,,,,,,,,,,,0.496082311,6268,12635,,,0.462,,,,,7.028620945,,,,,0.726582941,2777,3822,0.659023693,0.794142188,0.128300804,447,3484,0.041552774,0.215048833,0.787545788,3010,3822,0.734156855,0.84093472,15381,,,,,0.159937585,2460,15381,,,0.161953059,2491,15381,,,0.439568299,6761,15381,,,0.002470581,38,15381,,,0.008907093,137,15381,,,0.000520122,8,15381,,,0.017229049,265,15381,,,0.521942657,8028,15381,,,0.003455987,51,14757,,,0.339379754,5220,15381,,,1,15310,15310,, -22,127,22127,LA,Winn Parish,2024,1,11982.91278,325,37778,9904.987889,14060.83767,0,,,,2,,,,2,11233.86808,8130.006031,15131.94658,,,,,2,13100.45696,10271.30469,15929.60923,,,,,2,,0.228,,,0.197,0.263,4.609015707,,,3.723694011,5.6106607,5.918614545,,,4.761056328,7.18323894,0.111219512,114,1025,0.091971677,0.130467347,0,,,,,,,0.110032363,0.0751405,0.144924225,,,,0.111111111,0.087558964,0.134663258,,,,,,,0.247,,,0.206,0.292,0.398,,,0.318,0.485,7.3,0.056153336,0.141,,,0.328,,,0.276,0.389,0.723954926,9958,13755,,,0.170949041,,,0.135664087,0.211371901,0.25,6,24,0.143191653,0.365708158,734,99,13488,,,34.88786045,98,2809,28.3236515,42.5171272,,,,,,,35.75297942,24.61070593,50.21047592,,,,36.49205415,27.97824867,46.7811665,,,,,,,0.090052468,841,9339,0.075754596,0.104350341,0.00044484,6,13488,,,2248,0.000454373,6,13205,,,2200.833333,0.000378645,5,13205,,,2641,5470,,,,,,,7040,,5218,0.31,,,,,,,0.32,,0.31,0.38,,,,,,,0.31,,0.39,0.83911093,8230,9808,0.806773354,0.871448506,0.343892617,1281,3725,0.271206445,0.41657879,0.040008604,186,4649,,,0.311,827,,0.207340426,0.414659575,,,,,,,0.320330969,0.194697784,0.445964155,,,,0.289319249,0.208951525,0.369686973,5.753058063,107703,18721,4.399028489,7.107087638,0.41002845,1153,2812,0.308382188,0.511674711,11.12099644,15,13488,,,97.59458063,68,69676,75.78601061,123.724386,,,,,,,,,,,,,128.9404651,97.90990103,166.6854514,,,,9,,,,,1,,,,,0.063432836,340,5360,0.035469748,0.091395924,0.055769231,0.027227354,0.084311107,0.004664179,0,0.01306576,0.005410448,0,0.015484006,0.793650794,3800,4788,0.734401193,0.852900394,,,,,,,0.617166213,0.381325606,0.853006819,,,,0.8187841,0.724464431,0.913103768,0.417,,4788,0.333510682,0.500489318,72.52816253,,,71.00460352,74.05172154,,,,,,,72.31388678,69.68056235,74.94721121,,,,71.74371732,69.77610162,73.71133302,,,,626.3513364,325,37778,555.4875246,697.2151483,,,,,,,640.6213042,512.4143529,791.1620992,,,,654.0620671,564.5155291,743.6086051,,,,103.1173158,13,12607,54.90562775,176.3337504,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.144,,,0.125,0.167,0.198,,,0.173,0.227,0.13,,,0.112,0.151,233.7,27,11553,,,0.141,1960,,,,0.056153336,859.8760329,15313,,,24.2535956,10,41231,11.63054182,44.60322583,,,,,,,,,,,,,,,,,,,0.397,,,0.382,0.411,0.110372943,731,6623,0.091309113,0.129436773,0.042075736,120,2852,0.027777864,0.056373609,0.000984476,13,13205,,,1015.769231,0.875,115.5,132,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.085158889,,,,,-9786.859,,,,,0.82333591,41548,50463,0.55198166,1.094690159,45646,,,39090.42553,52201.57447,,,,,,,32179,24702.40426,39655.59575,55417,21284.40426,89549.59575,49706,40634,58778,,,,,,0.446446962,867,1942,,,57.68163956,,,,,0.307321562,,45646,,,2.72479564,2,734,,,,,,,,,,,,,,,,,,,,,,,,,,20.05092765,14,69676,10.67627451,34.28769694,20.09300189,,,,,,,,,,,,,32.54291568,17.32773202,55.64937692,,,,21.52821632,15,69676,12.04917925,35.5075189,,,,,,,,,,,,,24.45422614,12.20746158,43.75536551,,,,24.33583452,24,98620,15.59242837,36.20979273,,,,,,,,,,,,,26.65161634,15.52554866,42.67181955,,,,,,,,,,,0.558546433,6225,11145,,,0.447,,,,,16.448109,,,,,0.715075789,3491,4882,0.677542086,0.752609491,0.076923077,340,4420,0.041776969,0.112069185,0.766898812,3744,4882,0.70342772,0.830369904,13205,,,,,0.203104885,2682,13205,,,0.197425218,2607,13205,,,0.299810678,3959,13205,,,0.009238925,122,13205,,,0.002650511,35,13205,,,0.000227187,3,13205,,,0.022037107,291,13205,,,0.649981068,8583,13205,,,0.013373531,173,12936,0.001429484,0.025317578,0.46141613,6093,13205,,,0.660414395,9084,13755,, -23,000,23000,ME,Maine,2024,,7811.772639,20407,3717980,7630.892546,7992.652732,0,16137.35539,12847.20513,19427.50565,,2656.26601,1914.402898,3590.499986,,9488.757326,8098.989606,10878.52505,,3868.10522,2972.358258,4948.986887,,7834.875695,7645.57615,8024.17524,,,,,2,,0.137,,,0.127,0.147,3.493218246,,,3.241823426,3.744613066,5.206918086,,,4.909222581,5.504613591,0.073829546,6251,84668,0.07206815,0.075590942,0,0.08985025,0.066987161,0.112713339,0.073646209,0.059890125,0.087402294,0.093840867,0.084548291,0.103133444,0.079089924,0.066778468,0.09140138,0.072416999,0.070565791,0.074268207,,,,0.08,0.067007654,0.092992346,0.169,,,0.157,0.181,0.321,,,0.306,0.336,8.5,0.035417892,0.105,,,0.248,,,0.235,0.262,0.659893611,899012,1362359,,,0.204866497,,,0.191261302,0.219177203,0.334183674,262,784,0.316724951,0.351691557,245.7,3372,1372247,,,10.71403053,2849,265913,10.32060483,11.10745623,17.73948302,12.3561999,24.67132659,2.208255478,1.175803039,3.776184121,11.55345212,9.202260119,14.32224218,13.66507671,11.06362833,16.26652508,10.57050051,10.15472083,10.9862802,,,,15.34683855,12.65641913,18.03725797,0.07343863,77458,1054731,0.067481184,0.079396077,0.001073422,1473,1372247,,,931.6001358,0.000711017,985,1385340,,,1406.436548,0.005448482,7548,1385340,,,183.5373609,2004,,,,,5054,1477,2793,2830,1993,0.44,,,,,0.33,0.33,0.3,0.29,0.44,0.46,,,,,0.21,0.5,0.35,0.4,0.46,0.940594119,946201,1005961,0.93861598,0.942572257,0.696848855,226471,324993,0.68417131,0.7095264,0.029497358,19907,674874,,,0.124,29991,,0.110893617,0.137106383,0.168211921,0.120368719,0.216055122,0.081657281,0.023090498,0.140224064,0.303377386,0.234120555,0.372634218,0.124967149,0.088165712,0.161768585,0.127032043,0.118994179,0.135069907,4.542427794,131794,29014,4.449538481,4.635317107,0.190461324,47586,249846,0.18063006,0.200292589,10.69049522,1467,1372247,,,103.9325397,7006,6740911,101.4988089,106.3662705,180.5787549,143.187722,224.7458918,29.13039932,18.85165851,43.00221589,89.56602031,72.63200884,109.2629492,35.56805492,25.74077771,47.90993657,106.5693049,104.0128976,109.1257121,,,,5.4,,,,,0.5625,,,,,0.126994996,72330,569550,0.123027332,0.13096266,0.106741922,0.102969269,0.110514574,0.014388552,0.012897186,0.015879918,0.011956808,0.010356881,0.013556735,0.734577794,492292,670170,0.730129579,0.739026008,0.727210182,0.671198401,0.783221963,0.596680498,0.566295436,0.62706556,0.62112663,0.555732304,0.686520956,0.612780766,0.574659011,0.65090252,0.741862097,0.736991861,0.746732332,0.339,,670170,0.331186882,0.346813118,77.76018397,,,77.60933981,77.91102813,72.80132631,70.1227243,75.47992832,89.85320609,86.57664651,93.12976568,79.38562938,76.69095324,82.08030552,98.17728684,91.20519024,105.1493834,77.68365767,77.52788788,77.83942745,,,,369.6256545,20407,3717980,364.104294,375.147015,624.0778542,529.0998465,719.0558619,151.4360189,120.0793448,188.4752342,421.4421061,361.560576,481.3236362,164.1859261,132.0248734,201.8123779,371.5269645,365.8046379,377.2492911,,,,46.13761609,520,1127063,42.1720102,50.10322197,,,,,,,81.03970946,53.40567918,117.9085225,,,,45.7405732,41.52837719,49.95276922,,,,5.759868614,491,85245,5.25038772,6.269349508,,,,,,,6.772009029,4.338953966,10.07621264,,,,5.557891418,5.028232918,6.087549917,,,,,,,0.107939056,,,0.098792525,0.117821691,0.171366638,,,0.158943395,0.184547835,0.082,,,0.075,0.088,141.2,1693,1198640,,,0.105,144290,,,,0.035417892,47047.74622,1328361,,,36.34485811,1478,4066600,34.49191608,38.19780014,108.7119508,72.80609963,156.1284954,,,,51.75447676,36.04888935,71.9779487,21.05180059,12.03292298,34.18680525,36.30047032,34.37752648,38.22341415,,,,0.311556775,,,0.295353273,0.328235139,0.083367947,67239,806533,0.07621901,0.090516883,0.042969513,11226,261255,0.034629087,0.051309938,0.001823379,2526,1385340,,,548.432304,0.859119488,11806.02,13742,,,0.068969236,4477,64913,0.059688058,0.078250414,3.052920088,,,,,,3.349388823,2.385705721,2.818770204,3.082187148,3.020321003,,,,,,3.500082616,2.353862232,2.691864334,3.051053862,0.155540721,,,,,5593.024,,,,,0.827308552,48496,58619,0.809995684,0.84462142,69485,,,67801.42553,71168.57447,51797,37779.12766,65814.87234,66291,57555,75027,53407,48548.10638,58265.89362,65650,57618.17021,73681.82979,68812,68056.59575,69567.40426,,,,,,0.375970122,63219,168149,,,75.48927133,,,,,0.321149095,,,,,11.60287326,,,,,1.499725901,141,9401718,1.25217848,1.747273323,,,,,,,,,,,,,1.39369638,1.146384871,1.641007889,,,,18.52522323,1330,6740911,17.47379118,19.57665527,19.73027088,,,,,,,13.27731365,7.589131953,21.56152554,,,,18.94407646,17.83661449,20.05153844,,,,12.23870186,825,6740911,11.40355192,13.0738518,,,,,,,,,,,,,12.69062273,11.80844632,13.57279914,,,,12.13607981,1141,9401718,11.43188686,12.84027276,21.14921585,11.26106672,36.16580321,,,,8.931577248,4.755688722,15.27326911,,,,12.41760627,11.67939753,13.15581501,,,,7.219387755,,117600,,,849,,0.773675755,828305,1070610,,,,,,,,58.2445959,,,,,0.734676958,426239,580172,0.729367069,0.739986846,0.116139253,65390,563031,0.111924442,0.120354065,0.873344457,506690,580172,0.868640295,0.878048618,1385340,,,,,0.178943797,247898,1385340,,,0.225377164,312224,1385340,,,0.018715983,25928,1385340,,,0.00706397,9786,1385340,,,0.013818268,19143,1385340,,,0.000404955,561,1385340,,,0.020923383,28986,1385340,,,0.921945515,1277208,1385340,,,0.004882774,6366,1303767,0.004337823,0.005427725,0.506812768,702108,1385340,,,0.613678186,836050,1362359,, -23,001,23001,ME,Androscoggin County,2024,1,9478.519936,1850,303614,8807.00013,10150.03974,0,,,,2,,,,2,16518.34458,12477.77998,21450.44442,,,,,2,9121.651369,8434.999292,9808.303445,,,,,2,,0.147,,,0.124,0.174,3.660406994,,,3.00612887,4.378911272,5.370032589,,,4.616778153,6.161144849,0.087954573,728,8277,0.081852786,0.09405636,0,,,,,,,0.097407698,0.081119077,0.11369632,0.087209302,0.045043647,0.129374958,0.08470948,0.077960896,0.091458065,,,,0.1,0.056173068,0.143826932,0.186,,,0.151,0.226,0.357,,,0.311,0.404,8.2,0.02467142,0.115,,,0.307,,,0.262,0.353,0.775191427,86154,111139,,,0.17672943,,,0.150752908,0.20449,0.272727273,15,55,0.202623014,0.345581759,316.1,351,111034,,,14.66877646,343,23383,13.11637908,16.22117384,,,,,,,20.85354025,15.09181048,28.08958187,21.81818182,12.93083731,34.48213366,13.72070059,12.06557713,15.37582405,,,,19.73684211,11.0465607,32.55291957,0.071316144,6298,88311,0.061784229,0.080848059,0.000738513,82,111034,,,1354.073171,0.000601648,68,113023,,,1662.102941,0.005131699,580,113023,,,194.8672414,2045,,,,,,,,,2025,0.4,,,,,,0.29,0.3,,0.41,0.43,,,,,0.55,0.3,0.23,0.25,0.44,0.919715579,71140,77350,0.909773037,0.92965812,0.668094218,18096,27086,0.623354937,0.7128335,0.029857541,1574,52717,,,0.159,3591,,0.106574468,0.211425532,,,,,,,0.332087809,0.202188925,0.461986694,0.167597765,0.051441168,0.283754362,0.157859828,0.124522592,0.191197063,4.37025706,124277,28437,4.036630222,4.703883897,0.206752849,4862,23516,0.168395382,0.245110316,7.745375291,86,111034,,,106.0406342,576,543188,97.38064906,114.7006193,,,,,,,134.5159528,92.0088121,189.8963894,,,,108.2520762,99.03582356,117.4683288,,,,5.3,,,,,0,,,,,0.134516937,6175,45905,0.117490031,0.151543843,0.102552865,0.088828471,0.11627726,0.016229169,0.011000114,0.021458224,0.02189304,0.010940214,0.032845866,0.737769653,40356,54700,0.716026577,0.759512729,,,,,,,0.518604651,0.349246728,0.687962574,0.579005525,0.406243156,0.751767894,0.753182645,0.731088802,0.775276488,0.359,,54700,0.33154399,0.38645601,75.51059025,,,74.9832148,76.03796571,,,,,,,73.26837918,67.28853276,79.2482256,92.36988211,69.4512808,115.2884834,75.67581661,75.13834119,76.21329204,,,,455.5913484,1850,303614,433.6712494,477.5114474,,,,,,,650.6469908,482.9227376,857.7969433,,,,450.9685474,428.3893796,473.5477152,,,,47.75777258,50,104695,35.44673933,62.96266934,,,,,,,134.1727733,71.44135092,229.4395285,,,,37.66212367,25.76086471,53.16768128,,,,5.372492837,45,8376,3.918733141,7.188818111,,,,,,,,,,,,,5.092107234,3.526432288,7.115709465,,,,,,,0.114,,,0.098,0.133,0.177,,,0.155,0.201,0.084,,,0.072,0.096,155.7,147,94390,,,0.115,12710,,,,0.02467142,2657.161261,107702,,,45.14149418,148,327858,37.86870257,52.41428579,,,,,,,100.1803246,56.07016719,165.2322105,,,,43.78863329,36.23209988,51.34516669,,,,0.35,,,0.333,0.365,0.083390913,5431,65127,0.07028453,0.096497296,0.039232638,953,24291,0.028509233,0.049956042,0.002026136,229,113023,,,493.5502183,0.751290749,852.715,1135,,,0.099198397,594,5988,0.045922637,0.152474157,2.690259109,,,,,,,1.96982951,2.354939195,2.838745039,2.712279355,,,,,,,2.01865261,2.66455167,2.880855743,0.184612771,,,,,280.23775,,,,,0.846329594,45563,53836,0.798988372,0.893670816,62848,,,58104.68085,67591.31915,60788,59216.42553,62359.57447,35833,20927.46809,50738.53192,46389,37673.25532,55104.74468,52279,30093.46809,74464.53192,66449,62581.42553,70316.57447,,,,,,0.466640706,7190,15408,,,74.85185701,,,,,0.302746309,,62848,,,9.856915739,62,6290,,,1.583656663,12,757740,0.818298507,2.766329486,,,,,,,,,,,,,,,,,,,17.22222719,98,543188,13.88354584,21.12153281,18.04163568,,,,,,,,,,,,,17.56026811,14.04594784,21.68678827,,,,10.49360442,57,543188,7.947753515,13.59568168,,,,,,,,,,,,,10.82520762,8.108823347,14.1596381,,,,12.14136775,92,757740,9.787656025,14.89030974,,,,,,,,,,,,,12.1122617,9.64734883,15.01497073,,,,12.57142857,,10500,,,132,,0.715063543,59361,83015,,,0.639,,,,,114.1063621,,,,,0.664484452,30450,45825,0.646354295,0.682614608,0.11745543,5264,44817,0.101549378,0.133361482,0.871838516,39952,45825,0.857697598,0.885979435,113023,,,,,0.204383179,23100,113023,,,0.189518948,21420,113023,,,0.051927484,5869,113023,,,0.004556595,515,113023,,,0.01084735,1226,113023,,,0.000406997,46,113023,,,0.021783177,2462,113023,,,0.889137609,100493,113023,,,0.008504338,896,105358,0.005817854,0.011190821,0.507241889,57330,113023,,,0.453450184,50396,111139,, -23,003,23003,ME,Aroostook County,2024,1,8943.185762,1193,179304,8060.0055,9826.366025,0,13996.07367,7651.783716,23483.03341,1,,,,2,,,,2,,,,2,8922.508567,8002.381351,9842.635784,,,,,2,,0.156,,,0.133,0.184,3.747053589,,,3.075896689,4.485963191,5.305731776,,,4.529486934,6.14059903,0.074057038,322,4348,0.066273329,0.081840747,0,,,,,,,,,,,,,0.073328362,0.065273094,0.08138363,,,,,,,0.218,,,0.178,0.261,0.399,,,0.351,0.45,7.5,0.048566527,0.134,,,0.325,,,0.282,0.372,0.565382609,37940,67105,,,0.138549292,,,0.11449982,0.164304409,0.333333333,13,39,0.249594321,0.416968855,222.9,149,66859,,,17.15071596,212,12361,14.84200059,19.45943134,,,,,,,,,,,,,17.1990172,14.74697014,19.65106425,,,,,,,0.090407644,4409,48768,0.078492751,0.102322538,0.001121764,75,66859,,,891.4533333,0.000639358,43,67255,,,1564.069767,0.006438183,433,67255,,,155.3233256,2111,,,,,,,,,2115,0.48,,,,,0.67,0.29,,,0.48,0.39,,,,,0.34,0.45,0.29,0.38,0.39,0.906251244,45521,50230,0.897192772,0.915309716,0.624152759,8564,13721,0.579958957,0.66834656,0.041399582,1169,28237,,,0.165,1986,,0.100659575,0.229340426,0.341389728,0.219540905,0.463238551,,,,0.212598425,0,0.649306572,0.121107266,0.050026589,0.192187944,0.175237379,0.146493462,0.203981296,4.907604212,101131,20607,4.461946773,5.353261652,0.21342965,2600,12182,0.177027241,0.24983206,11.21763712,75,66859,,,92.70244007,311,335482,82.39936077,103.0055194,,,,,,,,,,,,,95.08000712,84.3027143,105.8572999,,,,6,,,,,1,,,,,0.111167427,3290,29595,0.095668937,0.126665917,0.097055803,0.08187409,0.112237516,0.01064369,0.006792496,0.014494883,0.007602636,0.005004697,0.010200575,0.784198614,22174,28276,0.765141614,0.803255613,0.650234742,0.564769686,0.735699797,,,,,,,,,,0.793039036,0.773971216,0.812106856,0.203,,28276,0.183567397,0.222432603,76.64969139,,,75.95601794,77.34336485,,,,,,,,,,,,,76.64045348,75.92248142,77.35842555,,,,420.9409559,1193,179304,394.0771049,447.8048069,591.8011187,366.33422,904.6308743,,,,,,,,,,419.3924644,391.7622591,447.0226697,,,,41.80374053,23,55019,26.49998553,62.72613623,,,,,,,,,,,,,40.96513867,25.02257094,63.2673342,,,,6.928922664,31,4474,4.707866781,9.835052638,,,,,,,,,,,,,6.526468455,4.300983837,9.49566895,,,,,,,0.119,,,0.103,0.137,0.183,,,0.161,0.208,0.1,,,0.087,0.115,73.8,43,58258,,,0.134,9040,,,,0.048566527,3490.476278,71870,,,34.37658805,69,200718,26.74703741,43.50577233,,,,,,,,,,,,,34.08661195,26.25084473,43.52784248,,,,0.346,,,0.33,0.361,0.104075593,3833,36829,0.088586231,0.119564954,0.049702735,627,12615,0.035404863,0.064000607,0.001813992,122,67255,,,551.2704918,0.876361732,627.475,716,,,0.071178901,224,3147,0.039034223,0.103323578,3.097983213,,,,,,,,,3.134304549,3.034808911,,,,,,,,,3.071238356,0.077179718,,,,,3159.548739,,,,,0.784893878,42232,53806,0.727436813,0.842350943,51562,,,47282.17021,55841.82979,32723,22320.10638,43125.89362,,,,,,,68313,5685.93617,130940.0638,51146,49211.02128,53080.97872,,,,,,0.478161445,4182,8746,,,74.18408566,,,,,0.317598231,,51562,,,7.857358719,26,3309,,,,,,,,,,,,,,,,,,,,,,,,,,16.98623841,57,335482,12.52431129,22.52128778,16.99047937,,,,,,,,,,,,,17.81781804,13.0918625,23.69392074,,,,16.09624361,54,335482,12.0919936,21.00210634,,,,,,,,,,,,,16.85364675,12.62453793,22.04498491,,,,12.2863395,58,472069,9.329532691,15.88294291,,,,,,,,,,,,,12.8550068,9.736256614,16.65515236,,,,14.73684211,,5700,,,84,,0.667650042,36210,54235,,,0.518,,,,,11.59351501,,,,,0.73519855,21495,29237,0.718680518,0.751716582,0.104423777,2953,28279,0.08982402,0.119023535,0.773642987,22619,29237,0.75360354,0.793682433,67255,,,,,0.184521597,12410,67255,,,0.258538399,17388,67255,,,0.010318935,694,67255,,,0.019626794,1320,67255,,,0.006155676,414,67255,,,0.000446064,30,67255,,,0.017322132,1165,67255,,,0.931767155,62666,67255,,,0.004718234,302,64007,0.002458681,0.006977787,0.501182068,33707,67255,,,0.856314731,57463,67105,, -23,005,23005,ME,Cumberland County,2024,1,5818.991572,3377,828225,5501.267451,6136.715692,0,21635.86936,12366.76875,35135.29635,1,2435.850813,1507.830045,3723.456717,1,6647.777748,5021.659869,8632.692359,,3342.75005,1779.873618,5716.20439,1,5828.422662,5490.638602,6166.206723,,,,,2,,0.1,,,0.082,0.12,2.856599309,,,2.357834159,3.457297432,4.686413587,,,4.056621421,5.409195654,0.065719269,1281,19492,0.062240602,0.069197937,0,0.181818182,0.079884363,0.283752001,0.079674797,0.058273029,0.101076565,0.09119171,0.078347978,0.104035442,0.057391304,0.038380044,0.076402565,0.06181592,0.058093656,0.065538185,,,,0.080357143,0.044756823,0.115957463,0.119,,,0.091,0.152,0.263,,,0.23,0.297,8.8,0.035127266,0.082,,,0.189,,,0.158,0.225,0.855151797,259170,303069,,,0.215015565,,,0.191366544,0.241009006,0.296296296,32,108,0.247057977,0.346449215,288.3,880,305231,,,4.862127559,289,59439,4.301552853,5.422702266,,,,,,,8.366800536,5.414552158,12.35104809,13.94628099,9.190687052,20.29110664,4.372453543,3.794663658,4.950243428,,,,4.454342984,2.1360306,8.191695342,0.057539609,13935,242181,0.050390673,0.064688545,0.001657761,506,305231,,,603.2233202,0.001105867,340,307451,,,904.2676471,0.008059821,2478,307451,,,124.0722357,1840,,,,,,1315,2113,,1836,0.43,,,,,,0.37,0.25,0.19,0.43,0.54,,,,,0.2,0.58,0.41,0.49,0.54,0.962519118,213968,222300,0.958357785,0.966680452,0.818934602,65767,80308,0.790582852,0.847286352,0.024055089,3888,161629,,,0.068,3640,,0.039404255,0.096595745,,,,0.134912461,0,0.273030702,0.32404739,0.22231026,0.425784521,0.047123288,0.000877544,0.093369031,0.047901605,0.034963084,0.060840126,4.370830404,167853,38403,4.169928115,4.571732693,0.16129792,8903,55196,0.139136961,0.183458879,12.97378051,396,305231,,,88.18365914,1309,1484402,83.4064488,92.96086949,256.7693744,128.1783466,459.4313379,34.07155026,17.6052672,59.51614153,56.17127919,36.69294449,82.30393865,33.63708642,16.79151235,60.18603912,92.23304965,87.08478219,97.38131712,,,,9.2,,,,,1,,,,,0.138225878,17055,123385,0.127900717,0.148551039,0.120207848,0.110511065,0.12990463,0.015358431,0.011874331,0.018842531,0.010981886,0.007591991,0.014371781,0.675492271,111388,164899,0.663531198,0.687453344,,,,0.559051307,0.498243108,0.619859506,0.666158795,0.577767192,0.754550397,0.579040853,0.515798498,0.642283208,0.718385482,0.707968486,0.728802478,0.315,,164899,0.299373764,0.330626237,79.82938632,,,79.53006861,80.12870404,,,,90.62961563,84.52626422,96.73296704,81.07409704,76.78668916,85.36150492,,,,79.76483252,79.45376439,80.07590065,,,,288.2432002,3377,828225,277.9732201,298.5131803,912.095795,595.8112554,1336.431668,144.6008339,98.90686332,204.1332325,333.5571229,252.6329075,432.1619418,132.5461013,79.80141147,206.9871559,289.6768103,278.9100853,300.4435352,,,,34.23319654,85,248297,27.34426151,42.32987765,,,,,,,68.14774431,32.67949227,125.3261281,,,,31.84836319,24.63152178,40.51892683,,,,5.024344763,97,19306,4.074405137,6.129274523,,,,,,,,,,,,,4.348636392,3.389975406,5.494240469,,,,,,,0.084,,,0.072,0.098,0.145,,,0.127,0.166,0.067,,,0.058,0.077,230.6,615,266683,,,0.082,24630,,,,0.035127266,9894.437499,281674,,,31.391058,282,898345,27.72720981,35.05490619,,,,,,,,,,,,,32.33968315,28.41620193,36.26316437,,,,0.298,,,0.281,0.315,0.064837798,12094,186527,0.056497373,0.073178224,0.035377681,2072,58568,0.027037255,0.043718106,0.002527232,777,307451,,,395.6898327,0.892867742,2767.89,3100,,,0.05545706,782,14101,0.033906626,0.077007494,3.280652676,,,,,,3.276512393,2.594756363,2.745537576,3.3536817,3.242035644,,,,,,3.626224447,2.551015887,2.625169188,3.319389038,0.138189284,,,,,9075.067292,,,,,0.866452336,57944,66875,0.829044731,0.903859942,88571,,,84572.3617,92569.6383,87841,30377.85106,145304.1489,67361,49917.59575,84804.40426,52344,44812.59575,59875.40426,66593,55225,77961,89988,87652.68085,92323.31915,,,,,,0.265040693,10128,38213,,,70.47466631,,,,,0.324699958,,88571,,,14.05382615,200,14231,,,0.967857454,20,2066420,0.591192477,1.49477734,,,,,,,,,,,,,0.804102854,0.450050264,1.326245374,,,,13.34706545,217,1484402,11.50547283,15.18865808,14.61868146,,,,,,,,,,,,,13.6025395,11.63895082,15.56612817,,,,7.275657133,108,1484402,5.903460283,8.647853984,,,,,,,,,,,,,7.480377101,6.014223189,8.946531013,,,,7.307323777,151,2066420,6.14178709,8.472860465,,,,,,,,,,,,,7.612173688,6.360126814,8.864220562,,,,7.362204724,,25400,,,187,,0.840976992,195914,232960,,,0.656,,,,,119.7215544,,,,,0.699205829,89627,128184,0.687382331,0.711029327,0.123183198,15425,125220,0.113395167,0.132971228,0.907960432,116386,128184,0.900421372,0.915499492,307451,,,,,0.178386149,54845,307451,,,0.206497946,63488,307451,,,0.035986222,11064,307451,,,0.003216773,989,307451,,,0.025795981,7931,307451,,,0.000361033,111,307451,,,0.024576274,7556,307451,,,0.891228196,274009,307451,,,0.009148229,2645,289127,0.007388926,0.010907532,0.512283258,157502,307451,,,0.376455527,114092,303069,, -23,007,23007,ME,Franklin County,2024,1,8185.981846,487,81791,6844.317249,9527.646442,0,,,,2,,,,2,,,,2,,,,2,8461.157732,7049.257973,9873.05749,,,,,2,,0.133,,,0.111,0.159,3.551325083,,,2.86911809,4.333549078,5.513884588,,,4.699938879,6.425488339,0.083281152,133,1597,0.069729412,0.096832892,0,,,,,,,,,,,,,0.080497382,0.066855894,0.094138871,,,,,,,0.178,,,0.138,0.22,0.317,,,0.269,0.369,8,0.055417094,0.107,,,0.269,,,0.225,0.318,0.346075502,10194,29456,,,0.183434765,,,0.154910463,0.216571898,0.285714286,6,21,0.169385198,0.406827936,208.8,62,29687,,,10.07658202,75,7443,7.92587098,12.63108282,,,,,,,,,,,,,10.08936293,7.865153374,12.74730309,,,,,,,0.080801611,1766,21856,0.067695228,0.093907994,0.001044228,31,29687,,,957.6451613,0.000360963,11,30474,,,2770.363636,0.003183041,97,30474,,,314.1649485,1666,,,,,,,,,1675,0.51,,,,,,,,,0.52,0.32,,,,,,,,,0.32,0.938983524,20175,21486,0.924752374,0.953214674,0.612611182,3857,6296,0.539191533,0.686030831,0.035771881,488,13642,,,0.163,817,,0.093893617,0.232106383,,,,,,,,,,0.223214286,0.038657715,0.407770857,0.14769821,0.095552121,0.199844299,4.253833115,110421,25958,3.68076827,4.82689796,0.196614082,1022,5198,0.148255204,0.244972961,11.11597669,33,29687,,,113.5172313,170,149757,96.45273782,130.5817247,,,,,,,,,,,,,116.7309736,99.02646225,134.4354849,,,,5.3,,,,,1,,,,,0.108651912,1350,12425,0.0884774,0.128826423,0.075528455,0.058294354,0.092762557,0.015694165,0.005707999,0.025680332,0.022535211,0.009254875,0.035815547,0.75126198,10269,13669,0.722796731,0.779727228,,,,,,,,,,,,,0.747038328,0.713282615,0.780794041,0.386,,13669,0.326976162,0.445023838,77.26807516,,,76.1920121,78.34413822,,,,,,,,,,,,,76.95633708,75.84508423,78.06758993,,,,381.5799608,487,81791,343.3771311,419.7827905,,,,,,,,,,,,,389.2146596,349.6155207,428.8137986,,,,56.04483587,14,24980,30.64023329,94.03371146,,,,,,,,,,,,,60.33962589,32.98823496,101.2396394,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.108,,,0.091,0.126,0.177,,,0.152,0.204,0.082,,,0.07,0.096,80.4,21,26110,,,0.107,3140,,,,0.055417094,1705.073143,30768,,,30.04272744,27,89872,19.79834668,43.71059111,,,,,,,,,,,,,30.31362947,19.8018692,44.41649071,,,,0.326,,,0.308,0.341,0.092165899,1540,16709,0.075485048,0.10884675,0.045278137,245,5411,0.030980265,0.05957601,0.00108289,33,30474,,,923.4545455,0.821296296,199.575,243,,,0.141545111,262,1851,0.053422594,0.229667628,2.762605933,,,,,,,,,2.773544215,2.659450638,,,,,,,,,2.656880197,0.047418812,,,,,6619.201,,,,,0.794244238,40597,51114,0.723023587,0.86546489,52159,,,47671.85106,56646.14894,,,,58036,34244.34043,81827.65957,109352,89497.02128,129206.9787,,,,56963,53872.2766,60053.7234,,,,,,0.370245547,1538,4154,,,,,,,,0.340861596,,52159,,,12.83987915,17,1324,,,,,,,,,,,,,,,,,,,,,,,,,,23.41134832,37,149757,16.01334492,33.04983852,24.70669151,,,,,,,,,,,,,24.51458227,16.76795613,34.60727569,,,,18.69695574,28,149757,12.4239913,27.02230677,,,,,,,,,,,,,19.57166024,13.00522609,28.28649831,,,,16.68661114,35,209749,11.62283606,23.20703668,,,,,,,,,,,,,16.95659113,11.74293229,23.6951365,,,,5,,2600,,,13,,0.721862182,17599,24380,,,0.405,,,,,11.75372726,,,,,0.75676116,9290,12276,0.730384058,0.783138262,0.078159551,919,11758,0.060852647,0.095466455,0.815167807,10007,12276,0.781995383,0.848340231,30474,,,,,0.169948153,5179,30474,,,0.236135722,7196,30474,,,0.006333268,193,30474,,,0.005381637,164,30474,,,0.005283192,161,30474,,,0.000656297,20,30474,,,0.01735906,529,30474,,,0.947824375,28884,30474,,,0.004210083,120,28503,0,0.008840507,0.510992978,15572,30474,,,1,29456,29456,, -23,009,23009,ME,Hancock County,2024,1,7892.833575,871,149560,6920.793499,8864.873652,0,,,,2,,,,2,,,,2,,,,2,7908.651272,6911.184698,8906.117845,,,,,2,,0.123,,,0.102,0.147,3.311396183,,,2.678548538,4.005743314,5.287090372,,,4.527256618,6.102947652,0.07439973,220,2957,0.064941109,0.08385835,0,,,,,,,,,,,,,0.073054332,0.0632819,0.082826764,,,,,,,0.165,,,0.126,0.203,0.286,,,0.246,0.329,8.6,0.016490713,0.097,,,0.229,,,0.189,0.269,0.722827067,40101,55478,,,0.186062092,,,0.160615844,0.216229482,0.448275862,26,58,0.385634806,0.508092982,119.2,67,56192,,,8.85720458,82,9258,7.044397653,10.99412628,,,,,,,,,,,,,8.993018578,7.085475787,11.25610377,,,,,,,0.089518427,3675,41053,0.076412044,0.10262481,0.001049972,59,56192,,,952.4067797,0.000493819,28,56701,,,2025.035714,0.004462002,253,56701,,,224.1146245,1894,,,,,,,,,1886,0.45,,,,,,,,,0.46,0.53,,,,,,0.38,,,0.54,0.950484773,40292,42391,0.942691619,0.958277927,0.663967273,7953,11978,0.606032956,0.721901591,0.03488454,991,28408,,,0.133,1177,,0.086531915,0.179468085,,,,,,,,,,0.07063197,0,0.258661301,0.132068588,0.098914307,0.16522287,4.541362708,124506,27416,4.158827791,4.923897625,0.195865071,1800,9190,0.144975438,0.246754704,11.56748292,65,56192,,,105.5973873,291,275575,93.46453948,117.7302351,,,,,,,,,,,,,108.3215537,95.67866257,120.9644448,,,,3.4,,,,,1,,,,,0.119013062,2870,24115,0.10284309,0.135183035,0.098244147,0.083983788,0.112504506,0.017831225,0.010558858,0.025103593,0.009330292,0.005981221,0.012679364,0.704613232,19138,27161,0.675956003,0.733270461,,,,,,,,,,,,,0.718910564,0.690193045,0.747628083,0.358,,27161,0.326274149,0.389725852,78.26842578,,,77.48345843,79.05339313,,,,,,,,,,,,,78.17571706,77.37626701,78.9751671,,,,358.1568756,871,149560,330.7005869,385.6131643,,,,,,,,,,,,,360.4548618,332.168507,388.7412165,,,,46.05614001,19,41254,27.72880488,71.9223677,,,,,,,,,,,,,45.41690043,26.45701817,72.71685719,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.099,,,0.084,0.115,0.161,,,0.139,0.185,0.074,,,0.063,0.085,134.5,67,49808,,,0.097,5390,,,,0.016490713,897.3916319,54418,,,25.86201712,43,166267,18.71647002,34.83596734,,,,,,,,,,,,,24.86848398,17.68392316,33.99603626,,,,0.311,,,0.293,0.327,0.098873513,3151,31869,0.083384152,0.114362875,0.058239371,563,9667,0.040367031,0.076111712,0.001446183,82,56701,,,691.4756098,0.891035857,447.3,502,,,0.063066614,160,2537,0.021533622,0.104599607,3.002967022,,,,,,,,,3.01670138,2.812583934,,,,,,,,,2.811456311,0.066762445,,,,,8872.421046,,,,,0.843946929,47007,55699,0.784578845,0.903315013,63879,,,58889.04255,68868.95745,28897,2466.191489,55327.80851,71698,48987.02128,94408.97872,46500,33274.46809,59725.53192,29537,8944.489362,50129.51064,64669,62159.7234,67178.2766,,,,,,0.346326091,2088,6029,,,61.03951581,,,,,0.346686705,,63879,,,13.69863014,33,2409,,,,,,,,,,,,,,,,,,,,,,,,,,17.98545396,55,275575,13.21503507,23.91684098,19.95826907,,,,,,,,,,,,,18.46871984,13.47121098,24.71260022,,,,12.70071668,35,275575,8.846514525,17.66362238,,,,,,,,,,,,,13.44416446,9.364353145,18.69757827,,,,16.63837277,64,384653,12.81357445,21.24683057,,,,,,,,,,,,,17.58652433,13.54376669,22.45759895,,,,4.318181818,,4400,,,19,,0.799372619,35676,44630,,,0.442,,,,,17.18645433,,,,,0.787145174,19411,24660,0.771992468,0.802297881,0.116177703,2772,23860,0.10010286,0.132252546,0.874249797,21559,24660,0.858421459,0.890078136,56701,,,,,0.160773179,9116,56701,,,0.269642511,15289,56701,,,0.011322552,642,56701,,,0.005167457,293,56701,,,0.013315462,755,56701,,,0.000317455,18,56701,,,0.018059646,1024,56701,,,0.938695967,53225,56701,,,0.001643171,88,53555,0,0.003859604,0.51050246,28946,56701,,,1,55478,55478,, -23,011,23011,ME,Kennebec County,2024,1,8788.923973,1939,339422,8136.672219,9441.175727,0,,,,2,,,,2,,,,2,,,,2,8846.914121,8166.407771,9527.42047,,,,,2,,0.135,,,0.112,0.16,3.335311503,,,2.712462426,4.015690718,5.291521324,,,4.538526052,6.102438327,0.074472169,582,7815,0.06865136,0.080292978,0,,,,0.091743119,0.037551276,0.145934962,,,,0.059171598,0.023598263,0.094744932,0.075010418,0.068925578,0.081095259,,,,0.065217391,0.033307217,0.097127566,0.18,,,0.144,0.218,0.343,,,0.298,0.387,8.3,0.01995,0.109,,,0.25,,,0.211,0.292,0.606290743,74963,123642,,,0.15852549,,,0.134512225,0.184175074,0.413333333,31,75,0.357046786,0.468041181,267.5,333,124486,,,12.70323173,318,25033,11.30700248,14.09946098,,,,,,,,,,18.18181818,9.394810771,31.75997735,12.43956044,10.99022842,13.88889246,,,,19.8938992,11.13446437,32.81196137,0.073226521,7075,96618,0.063694606,0.082758436,0.001108558,138,124486,,,902.0724638,0.000852318,107,125540,,,1173.271028,0.005552015,697,125540,,,180.1147776,1869,,,,,,,,,1833,0.41,,,,,,0.27,,,0.41,0.45,,,,,0.33,0.42,0.34,0.26,0.45,0.945622591,85124,90019,0.939775368,0.951469814,0.636852378,18598,29203,0.599606253,0.674098504,0.028254984,1722,60945,,,0.144,3280,,0.096340426,0.191659575,,,,,,,0.132075472,0,0.395928299,0.065826331,0,0.138048214,0.173378938,0.141752639,0.205005237,4.36619256,119721,27420,4.086399335,4.645985786,0.217764921,5119,23507,0.186020703,0.249509139,14.21846633,177,124486,,,105.4352095,647,613647,97.31084132,113.5595777,,,,,,,,,,,,,108.4742952,99.99024781,116.9583426,,,,6.1,,,,,1,,,,,0.114655747,6020,52505,0.102072411,0.127239083,0.100772201,0.089678419,0.111865983,0.013332064,0.008638858,0.018025269,0.006570803,0.003271425,0.009870181,0.758369207,44922,59235,0.740335664,0.776402751,,,,,,,,,,0.72299169,0.607233913,0.838749467,0.777701053,0.757232321,0.798169784,0.318,,59235,0.295613947,0.340386053,76.78388133,,,76.26053762,77.30722504,,,,,,,,,,90.85315169,79.92173332,101.7845701,76.71784602,76.17634278,77.25934925,,,,398.5685283,1939,339422,379.3014721,417.8355845,,,,,,,,,,,,,400.513038,380.6781017,420.3479742,,,,50.20555861,53,105566,37.60740857,65.67010679,,,,,,,,,,,,,52.19206681,38.73795797,68.80873347,,,,5.418346774,43,7936,3.921284427,7.298477547,,,,,,,,,,,,,4.928131417,3.451602658,6.822611155,,,,,,,0.104,,,0.089,0.12,0.168,,,0.145,0.193,0.085,,,0.073,0.097,133.3,144,108038,,,0.109,13490,,,,0.01995,2436.91246,122151,,,40.83917748,151,369743,34.32522503,47.35312994,,,,,,,,,,,,,41.06563897,34.33483973,47.79643822,,,,0.297,,,0.281,0.313,0.082698155,6065,73339,0.070783262,0.094613049,0.044484422,1088,24458,0.031378039,0.057590805,0.002389677,300,125540,,,418.4666667,0.868422983,1065.555,1227,,,0.037546095,224,5966,0.017760958,0.057331231,3.023521641,,,,,,,,2.696205889,3.026014406,2.98455243,,,,,,,,2.727849827,2.994111658,0.044936766,,,,,5692.984,,,,,0.85398804,47410,55516,0.801950792,0.906025287,63191,,,57716.10638,68665.89362,55976,39359.48936,72592.51064,43056,25317.10638,60794.89362,,,,68333,26103.04255,110562.9575,62680,60388.76596,64971.23404,,,,,,0.412631446,6553,15881,,,74.06452808,,,,,0.333180358,,63191,,,11.80637544,70,5929,,,1.990175557,17,854196,1.159350602,3.186463858,,,,,,,,,,,,,1.73472359,0.948389529,2.910571421,,,,18.72763139,117,613647,15.17242432,22.28283846,19.06633618,,,,,,,,,,,,,18.78135018,15.115169,22.44753137,,,,12.71089079,78,613647,10.0474317,15.86376696,,,,,,,,,,,,,13.12746248,10.34294734,16.43097683,,,,12.17519164,104,854196,9.835195143,14.51518814,,,,,,,,,,,,,12.63870044,10.18592152,15.09147937,,,,6.574074074,,10800,,,71,,0.745304321,72615,97430,,,0.611,,,,,54.22442062,,,,,0.724743695,38739,53452,0.70940419,0.740083201,0.109303952,5625,51462,0.096636752,0.121971153,0.877722068,46916,53452,0.866417556,0.88902658,125540,,,,,0.186506293,23414,125540,,,0.214569062,26937,125540,,,0.008355903,1049,125540,,,0.005822845,731,125540,,,0.009972917,1252,125540,,,0.000477935,60,125540,,,0.019690935,2472,125540,,,0.936777123,117603,125540,,,0.004080527,482,118122,0.002308443,0.005852611,0.508881631,63885,125540,,,0.622328982,76946,123642,, -23,013,23013,ME,Knox County,2024,1,7993.514637,577,107892,6858.678905,9128.35037,0,,,,2,,,,2,,,,2,,,,2,8158.587576,6961.493361,9355.68179,,,,,2,,0.123,,,0.101,0.147,3.225735829,,,2.597477788,3.908103508,5.116181756,,,4.307061816,5.963326913,0.073564309,155,2107,0.062417129,0.08471149,0,,,,,,,,,,,,,0.076152305,0.064515935,0.087788675,,,,,,,0.157,,,0.12,0.197,0.287,,,0.241,0.334,8.8,0.016617192,0.089,,,0.226,,,0.187,0.268,0.461127392,18725,40607,,,0.172431091,,,0.144695894,0.201754924,0.269230769,7,26,0.16570611,0.378587417,165.5,68,41084,,,10.55134493,71,6729,8.240687926,13.30908591,,,,,,,,,,,,,10.18533979,7.790977886,13.08349506,,,,,,,0.083870074,2422,28878,0.071955181,0.095784968,0.001070977,44,41084,,,933.7272727,0.000753085,31,41164,,,1327.870968,0.005368769,221,41164,,,186.2624434,1399,,,,,,,,,1407,0.42,,,,,,,,,0.42,0.52,,,,,,,,,0.53,0.936861056,29142,31106,0.92190361,0.951818502,0.64390974,5593,8686,0.578761026,0.709058454,0.029942243,591,19738,,,0.105,708,,0.054957447,0.155042553,,,,,,,,,,0.025974026,0,0.167963423,0.125823558,0.084027545,0.16761957,4.124915183,127662,30949,3.610732873,4.639097493,0.226730988,1598,7048,0.171660275,0.2818017,15.09103301,62,41084,,,121.2768506,243,200368,106.02822,136.5254812,,,,,,,,,,,,,125.4850074,109.5757847,141.3942301,,,,5.5,,,,,0,,,,,0.108888254,1905,17495,0.088817353,0.128959155,0.103259302,0.084021752,0.122496852,0.003943984,0.001286477,0.006601491,0.003658188,0.001140063,0.006176314,0.71306323,13499,18931,0.690072012,0.736054448,,,,,,,,,,,,,0.740056599,0.711883304,0.768229894,0.236,,18931,0.199605899,0.272394101,78.64245101,,,77.73038057,79.55452146,,,,,,,,,,,,,78.51010544,77.56193008,79.4582808,,,,344.5229494,577,107892,312.3743488,376.6715499,,,,,,,,,,,,,348.1131559,314.8275618,381.39875,,,,55.33493913,17,30722,32.2346412,88.59659793,,,,,,,,,,,,,60.58230284,35.29142393,96.99813555,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.1,,,0.083,0.118,0.16,,,0.137,0.185,0.072,,,0.06,0.084,90.8,33,36330,,,0.089,3600,,,,0.016617192,660.3007509,39736,,,31.45513091,38,120807,22.25952275,43.17462475,,,,,,,,,,,,,32.2645343,22.7172097,44.47241046,,,,0.315,,,0.298,0.332,0.095488172,2091,21898,0.079998811,0.110977534,0.049518383,365,7371,0.035220511,0.063816255,0.001190361,49,41164,,,840.0816327,0.876430085,413.675,472,,,0.09688196,174,1796,0.031331517,0.162432403,2.915779509,,,,,,,,,2.920347299,2.853665003,,,,,,,,,2.860134053,0.055892192,,,,,8016.055143,,,,,0.835105621,46649,55860,0.762014727,0.908196516,65615,,,58407.68085,72822.31915,,,,113750,113268.6383,114231.3617,,,,,,,69411,63525.04255,75296.95745,,,,,,0.286518171,1222,4265,,,,,,,,0.347024309,,65615,,,17.3053152,28,1618,,,,,,,,,,,,,,,,,,,,,,,,,,25.87137174,47,200368,18.64580914,34.97057882,23.45683942,,,,,,,,,,,,,27.50432183,19.82269593,37.17785297,,,,12.47704224,25,200368,8.074483874,18.41857567,,,,,,,,,,,,,13.1260468,8.494485405,19.37663443,,,,11.78710348,33,279967,8.113699676,16.55347568,,,,,,,,,,,,,12.00939735,8.2144189,16.95368579,,,,14.28571429,,3500,,,50,,0.803828933,26032,32385,,,0.552,,,,,29.2515886,,,,,0.792125984,14084,17780,0.773215312,0.811036657,0.126691554,2172,17144,0.103568127,0.149814981,0.885208099,15739,17780,0.870355334,0.900060864,41164,,,,,0.167597901,6899,41164,,,0.281702459,11596,41164,,,0.007725197,318,41164,,,0.004931494,203,41164,,,0.006510543,268,41164,,,0.000388689,16,41164,,,0.018924303,779,41164,,,0.945972209,38940,41164,,,0.002348976,92,39166,0,0.005557977,0.501311826,20636,41164,,,0.642229172,26079,40607,, -23,015,23015,ME,Lincoln County,2024,1,6370.192115,481,92778,5266.506342,7473.877889,0,,,,2,,,,2,,,,2,,,,2,6548.249174,5387.49059,7709.007758,,,,,2,,0.12,,,0.097,0.144,3.190871536,,,2.556027919,3.847940527,4.473540539,,,3.741215188,5.23182906,0.087305838,163,1867,0.074501174,0.100110502,0,,,,,,,,,,,,,0.087471783,0.074317071,0.100626496,,,,,,,0.163,,,0.124,0.204,0.274,,,0.235,0.316,8.7,0.009244005,0.098,,,0.232,,,0.191,0.273,0.407866731,14372,35237,,,0.187946843,,,0.161573019,0.216941571,0.375,9,24,0.267627328,0.478430601,153.5,55,35828,,,13.66172792,71,5197,10.66992285,17.23241084,,,,,,,,,,,,,14.12012645,10.94290405,17.93206146,,,,,,,0.091084736,2310,25361,0.077978353,0.104191119,0.001088534,39,35828,,,918.6666667,0.000331354,12,36215,,,3017.916667,0.002126191,77,36215,,,470.3246753,1827,,,,,,,,,1836,0.41,,,,,,,,,0.41,0.38,,,,,,,,,0.38,0.947849954,25900,27325,0.936286648,0.959413261,0.627734156,4477,7132,0.56659515,0.688873162,0.028923114,477,16492,,,0.119,680,,0.064191489,0.173808511,,,,,,,,,,0.254098361,0,0.70763887,0.138532286,0.095185475,0.181879097,4.018463167,129065,32118,3.577101081,4.459825254,0.159740692,961,6016,0.110789714,0.208691669,10.04800715,36,35828,,,109.3317528,190,173783,93.78550517,124.8780005,,,,,,,,,,,,,111.9012381,95.81944427,127.983032,,,,6.3,,,,,0,,,,,0.11362911,1780,15665,0.09373679,0.133521429,0.09929078,0.081344145,0.117237415,0.010469199,0.003771725,0.017166673,0.008937121,0.00443922,0.013435022,0.749362322,12339,16466,0.715223505,0.78350114,,,,,,,,,,,,,0.737964183,0.697595358,0.778333009,0.369,,16466,0.326605744,0.411394256,80.04109234,,,79.078591,81.00359368,,,,,,,,,,,,,79.86389423,78.86795994,80.85982851,,,,300.6415803,481,92778,269.0965998,332.1865609,,,,,,,,,,,,,304.6284183,271.9893675,337.2674691,,,,54.80310029,14,25546,29.9613649,91.95029015,,,,,,,,,,,,,58.97965202,32.24472459,98.95783428,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.098,,,0.082,0.115,0.156,,,0.134,0.181,0.068,,,0.058,0.079,82.1,26,31676,,,0.098,3450,,,,0.009244005,318.5206817,34457,,,36.10897308,38,105237,25.55285845,49.56238673,,,,,,,,,,,,,37.80304613,26.75168536,51.88763434,,,,0.291,,,0.273,0.307,0.100534814,1955,19446,0.083853963,0.117215665,0.061573179,382,6204,0.042509349,0.080637008,0.001463482,53,36215,,,683.3018868,0.853256705,222.7,261,,,0.141348497,174,1231,0.048914004,0.23378299,2.939913226,,,,,,,,,2.941316448,2.921479813,,,,,,,,,2.942270731,0.056672018,,,,,5091.506457,,,,,0.816186605,46188,56590,0.722616376,0.909756835,72657,,,65867.89362,79446.10638,,,,,,,,,,32794,12655.44681,52932.55319,69523,63940.87234,75105.12766,,,,,,0.373545274,1316,3523,,,,,,,,0.304802015,,72657,,,12.18686527,18,1477,,,,,,,,,,,,,,,,,,,,,,,,,,21.38669123,43,173783,14.72161418,30.03486598,24.74350195,,,,,,,,,,,,,22.3930199,15.41432453,31.44812557,,,,14.38575695,25,173783,9.309703393,21.23621511,,,,,,,,,,,,,15.040489,9.733411452,22.20272876,,,,14.8780004,36,241968,10.42036857,20.59742383,,,,,,,,,,,,,15.54806945,10.88967669,21.52508184,,,,4.444444444,,2700,,,12,,0.843003534,23857,28300,,,0.488,,,,,7.630493239,,,,,0.827990914,13122,15848,0.804498755,0.851483073,0.098609025,1510,15313,0.079709327,0.117508723,0.851211509,13490,15848,0.826175072,0.876247946,36215,,,,,0.163578628,5924,36215,,,0.295595748,10705,36215,,,0.007731603,280,36215,,,0.004694188,170,36215,,,0.008642828,313,36215,,,0.000414193,15,36215,,,0.018086428,655,36215,,,0.946734778,34286,36215,,,0.002679071,91,33967,0,0.006243049,0.507137926,18366,36215,,,0.912960808,32170,35237,, -23,017,23017,ME,Oxford County,2024,1,8896.963855,998,159356,7919.379671,9874.548038,0,,,,2,,,,2,,,,2,,,,2,9159.604399,8134.515724,10184.69308,,,,,2,,0.143,,,0.12,0.168,3.699308274,,,3.03316075,4.41193631,5.581040137,,,4.793690294,6.420796998,0.083021044,288,3469,0.073839246,0.092202841,0,,,,,,,,,,,,,0.083282675,0.07384091,0.09272444,,,,,,,0.203,,,0.162,0.245,0.34,,,0.296,0.387,7.7,0.054968261,0.12,,,0.263,,,0.221,0.305,0.374837738,21657,57777,,,0.183804037,,,0.157446233,0.214036503,0.384615385,20,52,0.31456618,0.452968,189.3,111,58629,,,16.01288611,169,10554,13.59863559,18.42713663,,,,,,,,,,,,,16.3278205,13.75731558,18.89832542,,,,,,,0.082982186,3722,44853,0.071067293,0.09489708,0.0006652,39,58629,,,1503.307692,0.000386587,23,59495,,,2586.73913,0.002874191,171,59495,,,347.9239766,1710,,,,,,,,,1707,0.44,,,,,,,,,0.44,0.32,,,,,,,,0.45,0.32,0.911230116,40157,44069,0.895114002,0.927346231,0.536188038,6912,12891,0.487527854,0.584848223,0.033032449,849,25702,,,0.16,1611,,0.092085106,0.227914894,,,,,,,,,,0.103703704,0.010401633,0.197005774,0.208199089,0.157933508,0.25846467,4.516677077,108468,24015,4.196570493,4.836783661,0.193504736,2002,10346,0.13943919,0.247570283,9.210458988,54,58629,,,108.3532038,314,289793,96.36834275,120.3380649,,,,,,,,,,,,,111.5025606,99.02953753,123.9755836,,,,4.5,,,,,0,,,,,0.125,2795,22360,0.107694737,0.142305263,0.103276836,0.085869092,0.12068458,0.014534884,0.009155995,0.019913773,0.012745975,0.00788501,0.01760694,0.77502346,19822,25576,0.757529487,0.792517432,,,,,,,,,,,,,0.766105306,0.732117157,0.800093455,0.434,,25576,0.402656809,0.465343192,76.67596973,,,75.91250137,77.43943809,,,,,,,,,,,,,76.39208262,75.60510455,77.17906069,,,,401.8293641,998,159356,373.8725877,429.7861405,,,,,,,,,,,,,410.2437253,381.2484039,439.2390467,,,,68.65184931,32,46612,46.95781411,96.9159274,,,,,,,,,,,,,71.58708569,48.2995061,102.1950161,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.115,,,0.098,0.132,0.186,,,0.163,0.212,0.091,,,0.077,0.105,73.7,38,51549,,,0.12,6960,,,,0.054968261,3178.979449,57833,,,28.04230382,49,174736,20.74585074,37.0734128,,,,,,,,,,,,,28.9652176,21.35666491,38.40367628,,,,0.335,,,0.317,0.35,0.094571181,3275,34630,0.080273309,0.108869053,0.045210799,489,10816,0.032104416,0.058317182,0.000773174,46,59495,,,1293.369565,0.825279823,560.365,679,,,0.129562776,323,2493,0.076742966,0.182382586,2.89981587,,,,,,,,,2.88595434,2.874314929,,,,,,,,,2.870146616,0.045331016,,,,,5254.43675,,,,,0.828214174,44842,54143,0.744842888,0.91158546,58842,,,51706.17021,65977.82979,,,,110972,73979.82979,147964.1702,,,,,,,56271,52919.34043,59622.65957,,,,,,0.561561192,4561,8122,,,,,,,,0.302148126,,58842,,,11.39937107,29,2544,,,,,,,,,,,,,,,,,,,,,,,,,,25.16600409,73,289793,19.38088969,32.1364254,25.19039452,,,,,,,,,,,,,25.574632,19.56256703,32.85168471,,,,15.52832539,45,289793,11.3264671,20.77812111,,,,,,,,,,,,,15.98082301,11.61169047,21.45350898,,,,16.08067054,65,404212,12.41072203,20.49613466,,,,,,,,,,,,,16.37775952,12.5851201,20.95426895,,,,6.923076923,,5200,,,36,,0.722899294,33810,46770,,,0.463,,,,,15.86918659,,,,,0.803476686,18627,23183,0.785150123,0.821803249,0.120727699,2681,22207,0.102373196,0.139082201,0.827546047,19185,23183,0.810523527,0.844568567,59495,,,,,0.173611228,10329,59495,,,0.238457013,14187,59495,,,0.005798807,345,59495,,,0.005311371,316,59495,,,0.006689638,398,59495,,,0.000655517,39,59495,,,0.017312379,1030,59495,,,0.94727288,56358,59495,,,0.000949651,53,55810,0,0.002990465,0.49950416,29718,59495,,,0.827682296,47821,57777,, -23,019,23019,ME,Penobscot County,2024,1,9153.826437,2559,421569,8574.703686,9732.949189,0,26805.82672,14654.99491,44975.62239,1,,,,2,17441.14277,10796.34227,26660.63941,1,,,,2,9027.604055,8428.619099,9626.58901,,,,,2,,0.143,,,0.119,0.169,3.524513872,,,2.87162252,4.239943982,5.137764036,,,4.387288875,5.943665601,0.072318671,679,9389,0.067079398,0.077557944,0,,,,,,,0.088435374,0.042536277,0.134334472,0.105590062,0.058119654,0.15306047,0.071118922,0.065666029,0.076571815,,,,0.081504702,0.051479183,0.111530222,0.188,,,0.15,0.231,0.364,,,0.32,0.409,7.8,0.05755578,0.117,,,0.263,,,0.222,0.305,0.654840045,99666,152199,,,0.167380445,,,0.142371041,0.194423518,0.321428571,27,84,0.265563006,0.377735051,326,498,152765,,,10.26488113,348,33902,9.186380571,11.34338169,,,,,,,,,,,,,10.15178717,9.023503297,11.28007105,,,,32.33532934,21.30918579,47.04620652,0.079350459,9304,117252,0.069818544,0.088882374,0.001355022,207,152765,,,737.9951691,0.000878312,135,153704,,,1138.548148,0.006512518,1001,153704,,,153.5504496,2609,,,,,527,,,,2605,0.41,,,,,0.21,0.14,0.45,,0.41,0.42,,,,,0.11,0.49,0.33,0.37,0.42,0.939230888,103337,110023,0.932822402,0.945639375,0.705319262,26599,37712,0.665179172,0.745459352,0.030909042,2306,74606,,,0.155,4012,,0.106148936,0.203851064,0.12345679,0,0.264733447,0.116847826,0,0.313123222,0.398340249,0.070357479,0.726323019,0.180628272,0.069398873,0.291857672,0.139465112,0.115647046,0.163283179,4.784559565,118681,24805,4.491640188,5.077478942,0.190986728,5166,27049,0.159826176,0.222147279,8.90256276,136,152765,,,113.0827084,859,759621,105.5203772,120.6450395,224.9839297,139.2685985,343.9118356,,,,196.2158374,107.2730242,329.2168342,,,,112.5161945,104.7143423,120.3180466,,,,4.3,,,,,0,,,,,0.119381689,7530,63075,0.107807709,0.130955668,0.098083247,0.087067453,0.10909904,0.016646849,0.012131157,0.021162542,0.010780817,0.007401052,0.014160581,0.770188486,55613,72207,0.755052237,0.785324735,0.74669868,0.640578419,0.85281894,0.606299213,0.524770555,0.687827871,0.540540541,0.369279702,0.711801379,0.59858156,0.500106803,0.697056318,0.782499222,0.766365016,0.798633428,0.266,,72207,0.248008905,0.283991095,76.07374349,,,75.61573837,76.5317486,64.90488389,56.47738646,73.33238131,88.73620738,81.33782701,96.13458775,,,,89.92003718,79.56428545,100.2757889,76.12536948,75.65499287,76.5957461,,,,434.7706206,2559,421569,416.701994,452.8392472,805.4774834,561.0445799,1120.224193,,,,781.1638783,489.5512436,1182.691499,,,,431.5251395,412.9987566,450.0515224,,,,52.34997498,68,129895,40.65180396,66.36606733,,,,,,,,,,,,,53.08991891,40.70373641,68.05888004,,,,6.335128286,60,9471,4.834370283,8.154565876,,,,,,,,,,,,,6.387921022,4.812256327,8.314757256,,,,,,,0.11,,,0.094,0.127,0.172,,,0.149,0.196,0.087,,,0.075,0.1,88.6,119,134322,,,0.117,17800,,,,0.05755578,8859.158254,153923,,,51.25194933,234,456568,44.68507764,57.81882102,,,,,,,,,,,,,49.05619634,42.40535175,55.70704093,,,,0.334,,,0.317,0.35,0.090799978,8246,90815,0.078885084,0.102714872,0.041906945,1170,27919,0.029992052,0.053821839,0.002836621,436,153704,,,352.5321101,0.862003745,1380.93,1602,,,0.049384124,433,8768,0.028548207,0.070220042,3.078263013,,,,,,,,2.621505312,3.078572094,3.114679276,,,,,,,,2.634940167,3.121010966,0.070358791,,,,,2629.885821,,,,,0.821103547,45834,55820,0.772621482,0.869585612,60761,,,56785,64737,72468,54723.14894,90212.85106,54476,35368.08511,73583.91489,46100,11537.2766,80662.7234,67083,56702.74468,77463.25532,59274,57316.38298,61231.61702,,,,,,0.396494726,7556,19057,,,68.01920133,,,,,0.332647586,,60761,,,10.92896175,76,6954,,,1.409616782,15,1064119,0.788951812,2.324948513,,,,,,,,,,,,,1.20446737,0.622365866,2.1039621,,,,17.60304267,144,759621,14.57738224,20.6287031,18.95682189,,,,,,,,,,,,,18.21067408,15.01080955,21.41053861,,,,13.55939343,103,759621,10.94074184,16.17804503,,,,,,,,,,,,,13.9413057,11.33080534,16.97303945,,,,13.25039775,141,1064119,11.06326356,15.43753194,,,,,,,,,,,,,13.0483965,10.80533315,15.29145986,,,,3.615384615,,13000,,,47,,0.704852701,86133,122200,,,0.588,,,,,55.97965812,,,,,0.698698322,44498,63687,0.687765728,0.709630915,0.113294517,7005,61830,0.101553234,0.1250358,0.862593622,54936,63687,0.851805393,0.87338185,153704,,,,,0.173684485,26696,153704,,,0.20365768,31303,153704,,,0.010058294,1546,153704,,,0.012914433,1985,153704,,,0.01231588,1893,153704,,,0.000409879,63,153704,,,0.018646229,2866,153704,,,0.929292666,142836,153704,,,0.002653811,387,145828,0.001468131,0.003839492,0.502504814,77237,153704,,,0.570621358,86848,152199,, -23,021,23021,ME,Piscataquis County,2024,1,9101.816904,370,45557,7225.217383,10978.41643,0,,,,2,,,,2,,,,2,,,,2,9252.846789,7271.47433,11234.21925,,,,,2,,0.159,,,0.136,0.187,4.065872815,,,3.38462115,4.844123628,5.44374938,,,4.672433131,6.263018446,0.075112108,67,892,0.057815013,0.092409202,0,,,,,,,,,,,,,0.075178998,0.057325999,0.093031996,,,,,,,0.204,,,0.166,0.244,0.366,,,0.321,0.414,7.7,0.016816371,0.141,,,0.302,,,0.259,0.346,0.52077381,8749,16800,,,0.167638372,,,0.141012092,0.197409586,0.25,4,16,0.11917111,0.394165016,168.9,29,17165,,,14.89001692,44,2955,10.81910909,19.98915272,,,,,,,,,,,,,16.92247147,12.24687651,22.79445801,,,,,,,0.092586598,1144,12356,0.078288725,0.10688447,0.000582581,10,17165,,,1716.5,0.000344491,6,17417,,,2902.833333,0.002296607,40,17417,,,435.425,2071,,,,,,,,,2085,0.39,,,,,,,,,0.39,0.36,,,,,,,,,0.36,0.920076482,12030,13075,0.903699801,0.936453163,0.58538029,1978,3379,0.503251619,0.667508962,0.038027005,276,7258,,,0.182,528,,0.105744681,0.258255319,,,,,,,,,,0.098039216,0,0.281092257,0.172043011,0.11540163,0.228684391,4.672374114,101512,21726,3.699917612,5.644830616,0.190858339,547,2866,0.136827959,0.24488872,9.903874163,17,17165,,,125.415587,106,84519,101.5399673,149.2912068,,,,,,,,,,,,,127.9333743,103.1054827,152.7612659,,,,4.8,,,,,0,,,,,0.146935933,1055,7180,0.119907318,0.173964548,0.122222222,0.093041471,0.151402973,0.017966574,0.008391432,0.027541716,0.013231198,0.007135647,0.019326749,0.766422309,5332,6957,0.728170195,0.804674422,,,,,,,,,,,,,0.79613496,0.753226575,0.839043345,0.343,,6957,0.298786272,0.387213728,75.97038567,,,74.52833595,77.41243539,,,,,,,,,,,,,75.74515902,74.25806618,77.23225185,,,,449.4936885,370,45557,396.0728203,502.9145567,,,,,,,,,,,,,454.8942129,399.6465908,510.1418349,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.123,,,0.107,0.141,0.184,,,0.162,0.21,0.088,,,0.076,0.101,59.7,9,15067,,,0.141,2370,,,,0.016816371,294.8750721,17535,,,45.14584069,23,50946,28.61859035,67.74092744,,,,,,,,,,,,,48.14838075,30.52194318,72.24621176,,,,0.333,,,0.316,0.348,0.106560847,1007,9450,0.088688506,0.124433187,0.049003594,150,3061,0.032322743,0.065684445,0.001033473,18,17417,,,967.6111111,0.763709677,94.7,124,,,,,,,,2.777143782,,,,,,,,,2.800732447,2.782864506,,,,,,,,,2.794491826,0.068694229,,,,,5477.375667,,,,,0.741915356,41617,56094,0.626778457,0.857052256,52529,,,48153.85106,56904.14894,63958,57006.85106,70909.14894,77604,11507.31915,143700.6809,,,,66250,31646.76596,100853.234,51664,49377.53192,53950.46809,,,,,,0.537122376,1049,1953,,,80.98954974,,,,,0.311751604,,52529,,,18.10584958,13,718,,,,,,,,,,,,,,,,,,,,,,,,,,30.47821146,28,84519,19.10053285,46.14437842,33.12864563,,,,,,,,,,,,,30.31491082,18.51713509,46.81892108,,,,23.66331831,20,84519,14.45416958,36.54607592,,,,,,,,,,,,,21.32222905,12.42098417,34.13895423,,,,18.59788829,22,118293,11.65519758,28.15742638,,,,,,,,,,,,,19.65198128,12.31579204,29.75333582,,,,4.285714286,,1400,,,6,,0.722254335,9996,13840,,,0.326,,,,,0.010328947,,,,,0.772014633,5909,7654,0.745495484,0.798533782,0.115201091,845,7335,0.084990104,0.145412077,0.807682258,6182,7654,0.783425395,0.831939121,17417,,,,,0.173680887,3025,17417,,,0.275305736,4795,17417,,,0.006143423,107,17417,,,0.007004651,122,17417,,,0.012229431,213,17417,,,0.000401906,7,17417,,,0.029281736,510,17417,,,0.929609003,16191,17417,,,0.001424766,23,16143,0,0.00652556,0.496813458,8653,17417,,,1,16800,16800,, -23,023,23023,ME,Sagadahoc County,2024,1,5584.72087,452,98512,4667.861274,6501.580467,0,,,,2,,,,2,,,,2,,,,2,5611.596206,4668.674795,6554.517618,,,,,2,,0.111,,,0.09,0.135,3.039757308,,,2.465614072,3.712638444,4.906677854,,,4.143345127,5.71334081,0.064411492,139,2158,0.054054003,0.074768981,0,,,,,,,,,,,,,0.063840156,0.053262502,0.07441781,,,,,,,0.152,,,0.113,0.192,0.286,,,0.246,0.33,8.7,0.028451972,0.088,,,0.208,,,0.168,0.25,0.554729012,20358,36699,,,0.184956163,,,0.158101363,0.212698262,0.125,2,16,0.026484325,0.278054433,223.9,83,37071,,,8.863564419,56,6318,6.695441308,11.51007566,,,,,,,,,,,,,9.543640465,7.189576084,12.42235988,,,,,,,0.06644156,1889,28431,0.055718156,0.077164965,0.000647406,24,37071,,,1544.625,0.000641831,24,37393,,,1558.041667,0.002299896,86,37393,,,434.8023256,1835,,,,,,,,,1825,0.35,,,,,,,,,0.35,0.43,,,,,,,,,0.43,0.942964824,26271,27860,0.927701153,0.958228496,0.699830221,6183,8835,0.624329209,0.775331233,0.023830959,450,18883,,,0.096,620,,0.053106383,0.138893617,,,,,,,,,,0.004444444,0,0.17699083,0.124143693,0.067525076,0.180762309,4.156246154,135078,32500,3.542255629,4.770236679,0.199644813,1349,6757,0.136465774,0.262823852,8.632084379,32,37071,,,78.33463891,141,179997,65.40458425,91.26469357,,,,,,,,,,,,,81.79068645,68.19339131,95.38798159,,,,6.8,,,,,0,,,,,0.115132605,1845,16025,0.091553053,0.138712158,0.105874961,0.082508724,0.129241198,0.000873635,0,0.003682238,0.009984399,0.001441648,0.018527151,0.75737157,14050,18551,0.732978361,0.78176478,,,,,,,,,,,,,0.702989517,0.666867656,0.739111379,0.362,,18551,0.313294457,0.410705544,80.31720347,,,79.43719122,81.19721573,,,,,,,,,,,,,80.18058684,79.28463002,81.07654365,,,,286.3152,452,98512,257.3519091,315.2784909,,,,,,,,,,,,,290.2673496,260.4018192,320.13288,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.095,,,0.079,0.112,0.152,,,0.13,0.175,0.078,,,0.067,0.091,98.7,32,32425,,,0.088,3210,,,,0.028451972,1004.155435,35293,,,22.94188362,25,108971,14.84677744,33.86674592,,,,,,,,,,,,,22.38421037,14.18966924,33.5873061,,,,0.324,,,0.305,0.342,0.073684696,1598,21687,0.060578313,0.086791079,0.044438194,316,7111,0.030140322,0.058736067,0.000615088,23,37393,,,1625.782609,0.900223881,301.575,335,,,,,,,,2.99463971,,,,,,,,,3.027895606,2.9970804,,,,,,,,,3.034364637,0.056042833,,,,,8643.862,,,,,0.856449047,50611,59094,0.756622799,0.956275296,73587,,,65159.59575,82014.40426,32563,5265.978723,59860.02128,,,,,,,86016,84667.23404,87364.76596,77175,72046.82979,82303.17021,,,,,,0.222317413,1038,4669,,,50.21627461,,,,,0.300949896,,73587,,,10.81665765,20,1849,,,,,,,,,,,,,,,,,,,,,,,,,,21.45606477,40,179997,15.02756398,29.70423766,22.2225926,,,,,,,,,,,,,22.45341456,15.63962593,31.22726423,,,,14.44468519,26,179997,9.435747938,21.16481057,,,,,,,,,,,,,15.29897732,9.993799922,22.41654648,,,,9.184606599,23,250419,5.822252719,13.7814195,,,,,,,,,,,,,9.715709881,6.158926641,14.57833519,,,,10.625,,3200,,,34,,0.853127196,24280,28460,,,0.659,,,,,38.23979855,,,,,0.767061021,12319,16060,0.749415377,0.784706665,0.119842956,1862,15537,0.095495134,0.144190777,0.914694894,14690,16060,0.894107228,0.93528256,37393,,,,,0.176984997,6618,37393,,,0.247158559,9242,37393,,,0.009520499,356,37393,,,0.00449282,168,37393,,,0.009868157,369,37393,,,0.000294173,11,37393,,,0.021100206,789,37393,,,0.940389913,35164,37393,,,0.002049005,72,35139,0,0.005489606,0.507875806,18991,37393,,,0.613858688,22528,36699,, -23,025,23025,ME,Somerset County,2024,1,9727.854412,998,138795,8658.108736,10797.60009,0,,,,2,,,,2,,,,2,,,,2,9711.944209,8623.448325,10800.44009,,,,,2,,0.172,,,0.143,0.202,3.885624513,,,3.192754961,4.603488257,5.49811126,,,4.713418757,6.315725869,0.079509742,253,3182,0.070109788,0.088909697,0,,,,,,,,,,,,,0.077964982,0.068413443,0.087516521,,,,,,,0.208,,,0.167,0.255,0.371,,,0.322,0.42,7.4,0.038989142,0.143,,,0.309,,,0.261,0.36,0.37290251,18823,50477,,,0.165234143,,,0.138230088,0.194456107,0.255813954,11,43,0.176455063,0.33980999,235.2,119,50592,,,21.77656234,215,9873,18.86566986,24.68745482,,,,,,,,,,,,,22.10128832,19.03051949,25.17205714,,,,,,,0.082904103,3203,38635,0.070989209,0.094818996,0.000573213,29,50592,,,1744.551724,0.000234843,12,51098,,,4258.166667,0.001898313,97,51098,,,526.7835052,1695,,,,,,,,,1693,0.44,,,,,,,,,0.45,0.41,,,,,,,0.23,,0.42,0.918017613,34713,37813,0.905447256,0.93058797,0.569825436,6398,11228,0.513538695,0.626112178,0.041213456,898,21789,,,0.19,1718,,0.117319149,0.262680851,,,,,,,,,,0.234234234,0,0.508208389,0.195882495,0.153833118,0.237931872,4.508248759,100836,22367,4.068402481,4.948095038,0.164301718,1540,9373,0.115460962,0.213142474,9.487666034,48,50592,,,125.7269827,318,252929,111.9081613,139.5458041,,,,,,,,,,,,,127.5372881,113.2937497,141.7808265,,,,5.6,,,,,1,,,,,0.137214137,2970,21645,0.115880258,0.158548016,0.107472476,0.088274448,0.126670504,0.022638023,0.013131439,0.032144606,0.014553015,0.008009237,0.021096793,0.759821187,16827,22146,0.726723022,0.792919351,,,,,,,,,,,,,0.755271001,0.725111665,0.785430337,0.417,,22146,0.37759069,0.45640931,75.33906194,,,74.53344992,76.14467397,,,,,,,,,,,,,75.24797854,74.43463909,76.061318,,,,463.3116458,998,138795,431.5955425,495.0277492,,,,,,,,,,,,,467.4164877,434.9310556,499.9019198,,,,64.69235193,27,41736,42.63266756,94.12397557,,,,,,,,,,,,,65.23838104,42.21884045,96.30471986,,,,8.403361345,27,3213,5.537868077,12.22644956,,,,,,,,,,,,,8.499509644,5.552161888,12.45375093,,,,,,,0.127,,,0.108,0.149,0.185,,,0.159,0.211,0.096,,,0.082,0.111,90.4,40,44247,,,0.143,7220,,,,0.038989142,2036.324914,52228,,,41.52632308,63,151711,31.90996684,53.13020631,,,,,,,,,,,,,42.14569976,32.23812083,54.13791449,,,,0.334,,,0.317,0.348,0.09563543,2831,29602,0.080146068,0.111124792,0.042729659,407,9525,0.029623276,0.055836042,0.001095933,56,51098,,,912.4642857,0.815378151,485.15,595,,,0.104363473,232,2223,0.051881631,0.156845315,2.795777223,,,,,,,,,2.79461797,2.735796109,,,,,,,,,2.742745024,0.065123938,,,,,6689.519857,,,,,0.753770885,40828,54165,0.688372157,0.819169614,55093,,,49668.14894,60517.85106,57045,40484.48936,73605.51064,65809,25946.53192,105671.4681,78824,61790.46809,95857.53192,,,,53104,49658.21277,56549.78723,,,,,,0.609051517,3795,6231,,,73.88109552,,,,,0.297242844,,55093,,,7.649808755,18,2353,,,,,,,,,,,,,,,,,,,,,,,,,,27.0427981,73,252929,20.82624977,34.53304945,28.86185451,,,,,,,,,,,,,26.69244734,20.36914935,34.3584708,,,,20.55912924,52,252929,15.35454108,26.96056274,,,,,,,,,,,,,20.70410521,15.36698595,27.29578161,,,,18.31207724,65,354957,14.13287461,23.34024567,,,,,,,,,,,,,18.5708685,14.27036526,23.76020802,,,,3.695652174,,4600,,,17,,0.686442556,27873,40605,,,0.469,,,,,23.83699792,,,,,0.768052913,16954,22074,0.748721767,0.787384058,0.110254361,2345,21269,0.089132024,0.131376697,0.832653801,18380,22074,0.81389449,0.851413112,51098,,,,,0.182433755,9322,51098,,,0.229578457,11731,51098,,,0.006164625,315,51098,,,0.005910212,302,51098,,,0.005381815,275,51098,,,0.000410975,21,51098,,,0.015245215,779,51098,,,0.951994207,48645,51098,,,0.001367904,66,48249,0,0.003748722,0.497690712,25431,51098,,,0.848782614,42844,50477,, -23,027,23027,ME,Waldo County,2024,1,8306.550646,676,109356,7181.19793,9431.903363,0,,,,2,,,,2,,,,2,,,,2,8090.498775,6965.391623,9215.605928,,,,,2,,0.134,,,0.111,0.16,3.242019874,,,2.652684939,3.96203136,5.067349921,,,4.330641916,5.954654015,0.076438471,182,2381,0.065765993,0.08711095,0,,,,,,,,,,,,,0.07773386,0.06673601,0.088731711,,,,,,,0.179,,,0.138,0.22,0.359,,,0.313,0.411,8.2,0.037799372,0.109,,,0.248,,,0.208,0.291,0.447850128,17738,39607,,,0.193117229,,,0.165785785,0.22458247,0.307692308,12,39,0.223582628,0.393170151,190.4,76,39912,,,15.13933548,113,7464,12.34792527,17.93074569,,,,,,,,,,,,,15.52043286,12.60672067,18.43414506,,,,,,,0.086567866,2576,29757,0.073461483,0.099674249,0.000801764,32,39912,,,1247.25,0.000347904,14,40241,,,2874.357143,0.003155985,127,40241,,,316.8582677,1474,,,,,,,,,1485,0.43,,,,,,,,,0.43,0.43,,,,,,,,,0.43,0.931530379,27659,29692,0.917929281,0.945131476,0.669342076,5921,8846,0.608354964,0.730329187,0.031616041,637,20148,,,0.162,1118,,0.096468085,0.227531915,,,,,,,0.82,0.315599785,1,0.076923077,0,0.286000974,0.160650983,0.116394251,0.204907715,4.238561373,115611,27276,3.73776566,4.739357085,0.215113843,1540,7159,0.146464169,0.283763516,8.268190018,33,39912,,,106.9943137,213,199076,92.62529976,121.3633277,,,,,,,,,,,,,106.5052567,91.81763664,121.1928768,,,,5.2,,,,,1,,,,,0.134002869,2335,17425,0.112409507,0.155596232,0.103232896,0.083179777,0.123286015,0.019512195,0.012208707,0.026815683,0.018077475,0.011859679,0.024295271,0.750707744,13524,18015,0.720867199,0.780548289,,,,,,,,,,,,,0.700314984,0.6653368,0.735293168,0.367,,18015,0.335140189,0.398859811,77.33119905,,,76.41997037,78.24242773,,,,,,,,,,,,,77.46356249,76.54556818,78.3815568,,,,385.3670599,676,109356,352.7805517,417.9535682,,,,,,,,,,,,,381.5325907,348.4655164,414.599665,,,,49.22168215,16,32506,28.13444427,79.93292807,,,,,,,,,,,,,46.29782731,25.31145301,77.6798873,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.101,,,0.086,0.118,0.17,,,0.147,0.194,0.079,,,0.067,0.092,111.8,39,34887,,,0.109,4320,,,,0.037799372,1466.086456,38786,,,25.93057298,31,119550,17.61856627,36.80637851,,,,,,,,,,,,,23.72917106,15.63767325,34.52469806,,,,0.339,,,0.322,0.356,0.097097672,2198,22637,0.08160831,0.112587034,0.053916309,402,7456,0.037235458,0.07059716,0.001167963,47,40241,,,856.1914894,0.815662651,203.1,249,,,,,,,,2.878679499,,,,,,,,,2.859173051,2.698537127,,,,,,,,,2.679721277,0.074171906,,,,,3039.403,,,,,0.87056512,46523,53440,0.776565387,0.964564852,63619,,,57374.40426,69863.59575,,,,145865,122196.0638,169533.9362,,,,44219,3966.914894,84471.08511,63436,57424.93617,69447.06383,,,,,,0.496246246,1983,3996,,,46.50733771,,,,,0.357911945,,63619,,,13.97428731,25,1789,,,,,,,,,,,,,,,,,,,,,,,,,,18.97474902,42,199076,13.35997441,26.15419206,21.09747031,,,,,,,,,,,,,17.74037487,12.28572532,24.79039572,,,,13.56265949,27,199076,8.937878063,19.73295749,,,,,,,,,,,,,13.18134365,8.530270612,19.45826349,,,,18.73232587,52,277595,13.99019694,24.56495317,,,,,,,,,,,,,18.13140738,13.36866848,24.03961568,,,,3.823529412,,3400,,,13,,0.770094044,24566,31900,,,0.539,,,,,9.343464478,,,,,0.805827492,13911,17263,0.79227605,0.819378935,0.117206235,1955,16680,0.096498678,0.137913792,0.870937844,15035,17263,0.848653373,0.893222315,40241,,,,,0.17668547,7110,40241,,,0.252155762,10147,40241,,,0.005864665,236,40241,,,0.005193708,209,40241,,,0.006510773,262,40241,,,0.000273353,11,40241,,,0.017469745,703,40241,,,0.950821302,38262,40241,,,0.002367051,90,38022,0,0.006031183,0.50398847,20281,40241,,,0.905218775,35853,39607,, -23,029,23029,ME,Washington County,2024,1,11389.7661,680,84715,9938.556328,12840.97587,0,21484.41149,13903.57833,31715.22954,1,,,,2,,,,2,,,,2,11342.73241,9767.596368,12917.86845,,,,,2,,0.163,,,0.137,0.193,3.886753845,,,3.159438769,4.689880583,5.888084748,,,5.069024698,6.783459788,0.072576465,140,1929,0.060998641,0.084154288,0,0.075581395,0.036078072,0.115084719,,,,,,,,,,0.070952092,0.058559921,0.083344263,,,,,,,0.216,,,0.174,0.26,0.37,,,0.324,0.417,7.1,0.047455398,0.151,,,0.302,,,0.258,0.348,0.395915742,12311,31095,,,0.165218487,,,0.139830573,0.193605772,0.413793103,12,29,0.319259257,0.503293401,157.4,49,31121,,,19.17672343,116,6049,15.68691585,22.666531,26.15694165,13.9274698,44.72916684,,,,,,,,,,19.13680782,15.46448868,23.41860622,,,,,,,0.105516014,2372,22480,0.091218142,0.119813887,0.000417724,13,31121,,,2393.923077,0.000508954,16,31437,,,1964.8125,0.006680027,210,31437,,,149.7,1900,,,,,1229,,,,1800,0.35,,,,,0.32,,,,0.35,0.32,,,,,0.06,,,0.42,0.33,0.909351643,20926,23012,0.899107344,0.919595941,0.601840102,3794,6304,0.552673853,0.65100635,0.042660828,565,13244,,,0.185,1042,,0.103978723,0.266021277,0.2225,0.135651851,0.309348149,,,,0.328947368,0,0.702912057,0.23,0.11418987,0.34581013,0.232130701,0.197764072,0.26649733,5.369612516,103655,19304,4.8650913,5.874133732,0.221229818,1288,5822,0.182885142,0.259574494,5.462549404,17,31121,,,150.2648737,236,157056,131.0933098,169.4364375,271.5714109,170.1923574,411.1623798,,,,,,,,,,147.6346364,127.5224559,167.7468168,,,,4.5,,,,,1,,,,,0.131236443,1815,13830,0.1156736,0.146799285,0.113313826,0.096948566,0.129679086,0.009761388,0.005315288,0.014207488,0.017715112,0.009891017,0.025539207,0.762544513,9422,12356,0.742989239,0.782099786,0.813141684,0.69921557,0.927067797,,,,,,,,,,0.755214947,0.734182562,0.776247331,0.264,,12356,0.23827928,0.28972072,74.25694033,,,73.24338618,75.27049449,,,,,,,,,,,,,74.2190053,73.12832372,75.30968689,,,,518.7749394,680,84715,473.9750531,563.5748258,868.6534244,601.5677483,1213.856093,,,,,,,,,,514.3604719,467.5870002,561.1339436,,,,56.62514156,15,26490,31.69266188,93.39455973,,,,,,,,,,,,,65.52159873,35.82126773,109.9341092,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.124,,,0.107,0.144,0.196,,,0.17,0.223,0.099,,,0.085,0.113,99.9,27,27025,,,0.151,4680,,,,0.047455398,1559.194557,32856,,,59.59158482,56,93973,45.01484276,77.38462964,,,,,,,,,,,,,56.14554838,41.25363712,74.66167689,,,,0.362,,,0.346,0.378,0.123525908,2074,16790,0.105653568,0.141398249,0.053878232,323,5995,0.036005891,0.071750572,0.001304196,41,31437,,,766.7560976,,,,,,0.079973118,119,1488,0.044658577,0.115287659,3.087411136,,,,,,,,,3.068172998,3.133760791,,,,,,,,,3.14659755,0.196638975,,,,,2541.162143,,,,,0.738013013,38680,52411,0.678422932,0.797603093,55381,,,52291.46809,58470.53192,35507,25248.2766,45765.7234,65125,3772.829787,126477.1702,75938,3799.276596,148076.7234,,,,52364,48670.38298,56057.61702,,,,,,0.506818814,1821,3593,,,74.55089252,,,,,0.399884437,,55381,,,7.978723404,12,1504,,,,,,,,,,,,,,,,,,,,,,,,,,24.16082204,37,157056,16.41610637,34.29435831,23.55847596,,,,,,,,,,,,,24.89683823,16.5437682,35.98286318,,,,17.82803586,28,157056,11.84660036,25.76647562,,,,,,,,,,,,,19.2566917,12.69028117,28.01747541,,,,19.07954809,42,220131,13.75086005,25.79000631,,,,,,,,,,,,,18.78611249,13.22715688,25.89418146,,,,3.793103448,,2900,,,11,,0.70576421,17570,24895,,,0.421,,,,,3.10389156,,,,,0.783584836,10645,13585,0.768357365,0.798812308,0.120831394,1558,12894,0.103661581,0.138001208,0.810084652,11005,13585,0.795928572,0.824240733,31437,,,,,0.184845882,5811,31437,,,0.263320291,8278,31437,,,0.00636193,200,31437,,,0.050800013,1597,31437,,,0.005916595,186,31437,,,0.000381716,12,31437,,,0.031046219,976,31437,,,0.886153259,27858,31437,,,0.003676223,109,29650,0,0.007816652,0.507491173,15954,31437,,,1,31095,31095,, -23,031,23031,ME,York County,2024,1,7109.286618,2899,577534,6668.833218,7549.740019,0,,,,2,,,,2,,,,2,4903.853437,2680.982306,8227.832804,1,7252.607577,6791.71741,7713.497744,,,,,2,,0.118,,,0.097,0.141,3.242362911,,,2.628058349,3.862538461,5.227391887,,,4.503766296,5.97355424,0.07175203,919,12808,0.067282473,0.076221587,0,,,,0.061320755,0.029024624,0.093616885,0.101449275,0.060318521,0.14258003,0.078125,0.048720614,0.107529386,0.071028037,0.066387331,0.075668743,,,,0.073275862,0.039743219,0.106808505,0.149,,,0.117,0.185,0.314,,,0.273,0.353,8.6,0.033422944,0.089,,,0.233,,,0.195,0.271,0.745810768,158091,211972,,,0.192330187,,,0.16775523,0.218207988,0.353535354,35,99,0.302983856,0.403857565,206,442,214591,,,8.184207233,327,39955,7.297135353,9.071279114,,,,,,,,,,13.94052045,7.802403469,22.99276847,7.94793686,7.028399177,8.867474542,,,,13.98601399,8.288998275,22.10393183,0.067630894,11358,167941,0.059290469,0.07597132,0.000675704,145,214591,,,1479.937931,0.000530609,115,216732,,,1884.626087,0.004503258,976,216732,,,222.0614754,2371,,,,,,2062,,,2357,0.49,,,,,,0.4,0.26,,0.5,0.52,,,,,,0.5,0.44,0.34,0.52,0.947133557,149846,158210,0.941410552,0.952856562,0.696290963,35781,51388,0.662921976,0.72965995,0.0271546,3026,111436,,,0.093,3462,,0.060829787,0.125170213,,,,0.060702875,0,0.302575328,0.088339223,0,0.208147595,0.218438538,0.046656734,0.390220342,0.093940124,0.071882084,0.115998164,3.918066592,142504,36371,3.631641844,4.204491339,0.188731519,7289,38621,0.158803481,0.218659557,7.036641798,151,214591,,,103.8668814,1082,1041718,97.67789497,110.0558679,,,,,,,,,,,,,107.1516574,100.664203,113.6391119,,,,7.3,,,,,1,,,,,0.132708238,11535,86920,0.12169601,0.143720465,0.111431871,0.100880517,0.121983224,0.013633226,0.008997698,0.018268754,0.012482743,0.00751925,0.017446235,0.753136681,83617,111025,0.741321179,0.764952183,,,,0.752817431,0.680241732,0.825393129,,,,0.637225845,0.4698111,0.804640589,0.712922681,0.696309958,0.729535405,0.416,,111025,0.391436818,0.440563183,78.8661467,,,78.47863586,79.25365754,,,,91.77459827,82.51014333,101.0390532,79.94180747,66.13387972,93.74973523,102.9240884,73.96816052,131.8800162,78.69395571,78.29575849,79.09215294,,,,335.1312486,2899,577534,321.8228503,348.4396469,,,,,,,,,,242.8826813,148.3590517,375.1126023,340.4965606,326.6387026,354.3544186,,,,43.80482904,75,171214,34.45527685,54.90973253,,,,,,,,,,,,,42.73531945,33.05149296,54.36980455,,,,5.919003115,76,12840,4.663501237,7.408515028,,,,,,,,,,,,,5.912162162,4.608820448,7.469661219,,,,,,,0.099,,,0.085,0.116,0.165,,,0.144,0.188,0.083,,,0.071,0.095,139.5,262,187829,,,0.089,18800,,,,0.033422944,6588.698375,197131,,,31.83916312,201,631298,27.43747075,36.24085549,,,,,,,,,,,,,32.80551403,28.18912869,37.42189938,,,,0.324,,,0.307,0.34,0.076251374,9850,129178,0.066719459,0.085783289,0.041042489,1674,40787,0.030319085,0.051765893,0.000982781,213,216732,,,1017.521127,0.881411526,1957.615,2221,,,0.055411255,512,9240,0.033145212,0.077677298,3.202960105,,,,,,3.203139881,2.887190515,3.139085329,3.213592086,3.171071416,,,,,,3.313776286,3.159565547,3.098594027,3.170286582,0.052059391,,,,,8252.96475,,,,,0.778971508,49594,63666,0.741729402,0.816213613,81315,,,76512.10638,86117.89362,74028,41605.19149,106450.8085,81490,31599.95745,131380.0426,64028,25498.80851,102557.1915,80278,57077.31915,103478.6809,79894,76569.74468,83218.25532,,,,,,0.296145461,7199,24309,,,71.34172249,,,,,0.303031421,,81315,,,11.31409591,109,9634,,,0.968703943,14,1445230,0.52959946,1.625320615,,,,,,,,,,,,,1.029738858,0.562967816,1.727726831,,,,19.80091469,222,1041718,17.03663154,22.56519785,21.3109498,,,,,,,,,,,,,20.04078714,17.15185624,22.92971804,,,,10.94346071,114,1041718,8.934560661,12.95236075,,,,,,,,,,,,,11.45132217,9.330507623,13.57213671,,,,10.93251593,158,1445230,9.227817166,12.6372147,,,,,,,,,,,,,11.10646911,9.334959103,12.87797913,,,,6.428571429,,18200,,,117,,0.796075573,131042,164610,,,0.597,,,,,36.65646192,,,,,0.751174444,67158,89404,0.738763388,0.7635855,0.120090133,10499,87426,0.108817811,0.131362455,0.901626325,80609,89404,0.891016557,0.912236094,216732,,,,,0.175793146,38100,216732,,,0.223880184,48522,216732,,,0.012522378,2714,216732,,,0.003239023,702,216732,,,0.014889356,3227,216732,,,0.000373734,81,216732,,,0.021644243,4691,216732,,,0.931048484,201788,216732,,,0.004184698,850,203121,0.002794924,0.005574472,0.507073252,109899,216732,,,0.51979035,110181,211972,, -24,000,24000,MD,Maryland,2024,,7921.431604,80445,17061283,7839.839283,8003.023925,0,5048.657323,3798.470592,6298.844054,,2697.771051,2518.853927,2876.688175,,11239.07277,11061.89906,11416.24647,,5523.690008,5323.59366,5723.786356,,7195.247932,7082.935989,7307.559876,,7299.440899,4085.44166,12039.3177,1,,0.131,,,0.123,0.14,2.847802796,,,2.687658787,3.007946806,4.393331755,,,4.191973691,4.594689819,0.087204795,42852,491395,0.086415939,0.08799365,0,0.100340136,0.076054811,0.124625461,0.088605728,0.085580758,0.091630698,0.125786582,0.124109389,0.127463776,0.071046083,0.06936777,0.072724396,0.065390962,0.064315599,0.066466325,0.083665339,0.049410727,0.117919951,0.086646195,0.08162306,0.09166933,0.102,,,0.094,0.11,0.342,,,0.33,0.355,8.8,0.035556219,0.097,,,0.212,,,0.202,0.222,0.919758131,5681552,6177224,,,0.151556136,,,0.141805775,0.16185048,0.29394387,796,2708,0.284490993,0.303444666,,,,,,13.3307787,17603,1320478,13.13384582,13.52771159,7.322175732,4.532542184,11.19272341,1.244167963,1.005046579,1.483289347,16.40225996,16.01328861,16.79123132,34.53639411,33.65393065,35.41885756,6.581610955,6.374220429,6.789001482,,,,14.0452304,13.08738611,15.0030747,0.069777246,349910,5014672,0.066202778,0.073351714,0.000847833,5227,6165129,,,1179.477521,0.00080783,4980,6164660,,,1237.883534,0.003427277,21128,6164660,,,291.7767891,2508,,,,,2080,1281,3513,1926,2226,0.43,,,,,0.44,0.35,0.42,0.36,0.45,0.51,,,,,0.47,0.55,0.4,0.42,0.54,0.909880648,3876178,4260095,0.908329175,0.911432121,0.711228709,1164972,1637971,0.705045638,0.71741178,0.03241703,102811,3171512,,,0.121,160856,,0.112659575,0.129340426,0.218863049,0.147827657,0.289898441,0.08945951,0.078017928,0.100901093,0.178336261,0.169787131,0.186885391,0.15179773,0.140940089,0.16265537,0.060408574,0.056773765,0.064043383,4.597471125,189071,41125,4.533906292,4.661035957,0.257335695,349440,1357915,0.250867491,0.263803899,8.848152245,5455,6165129,,,91.78069098,27866,30361506,90.70305998,92.85832199,66.5941832,49.26674334,88.04104185,24.43705726,22.2820859,26.59202863,111.8511782,109.6776158,114.0247406,41.54553096,39.32105362,43.7700083,103.0476426,101.432424,104.6628612,,,,7.35,,,,,0.125,,,,,0.154837987,345370,2230525,0.152244833,0.15743114,0.133143892,0.130731258,0.135556527,0.022633685,0.021590106,0.023677264,0.006615035,0.006116914,0.007113155,0.681942523,2114759,3101081,0.678250807,0.685634238,0.670195337,0.627731057,0.712659617,0.631368406,0.619553473,0.64318334,0.647357553,0.639986419,0.654728687,0.634955457,0.623911237,0.645999677,0.731995681,0.727931857,0.736059505,0.492,,3101081,0.48653991,0.49746009,78.02046699,,,77.94564145,78.09529254,93.67786032,88.53408169,98.82163895,88.1718325,87.70858476,88.63508024,74.54076781,74.39445123,74.6870844,85.75064556,85.15117768,86.35011344,78.53705888,78.43886379,78.63525396,88.74975992,76.56156049,100.9379594,375.4094603,80445,17061283,372.7322041,378.0867166,242.7059765,199.6770692,285.7348838,142.7139507,136.3494798,149.0784217,519.5642788,513.7620088,525.3665487,233.6760666,225.7598739,241.5922592,349.6334241,346.0483691,353.2184792,283.9757278,188.6998088,410.423993,50.27176976,3011,5989445,48.47610662,52.0674329,,,,28.39559576,23.01518829,33.77600324,81.66164839,77.52762055,85.79567623,43.72862142,39.55641649,47.90082635,34.5119201,32.20126683,36.82257338,,,,6.205563053,3081,496490,5.986438312,6.424687793,,,,3.428209265,2.812252946,4.044165584,10.41366671,9.901955825,10.9253776,4.85209132,4.390240085,5.313942555,3.892531446,3.624131441,4.160931452,,,,6.142820578,4.806378781,7.735865886,0.07948741,,,0.073383944,0.08605137,0.132404163,,,0.123748655,0.141567265,0.098,,,0.092,0.104,643.4,33467,5201701,,,0.097,600970,,,,0.035556219,205285.6795,5773552,,,43.12239419,7877,18266611,42.17008382,44.07470456,38.40332528,22.37135218,61.48744396,4.168226346,3.103518297,5.480447862,57.59244999,55.5859703,59.59892967,14.37436702,12.70549755,16.0432365,47.3971638,45.97832948,48.81599812,,,,0.340599055,,,0.328403474,0.353009477,0.080820842,297411,3679880,0.077246374,0.08439531,0.040691043,57011,1401070,0.035925086,0.045457001,0.001370716,8450,6164660,,,729.5455621,0.87166978,57399.455,65850,,,0.059960297,18908,315342,0.055253318,0.064667277,,,,,,,,,,,,,,,,,,,,,0.255302108,,,,,-1854.468,,,,,0.863422478,65507,75869,0.852425292,0.874419664,94957,,,93704.74468,96209.25532,73253,62248.40426,84257.59575,123123,119746.3192,126499.6809,79161,78054.10638,80267.89362,86721,84958.78723,88483.21277,110044,109264.766,110823.234,,,,,,0.419396633,369665,881421,,,63.23555366,,,,,0.234925493,,,,,6.174580264,,,,,9.869207869,4183,42384354,9.570123004,10.16829273,,,,1.466674823,1.052511175,1.989710009,26.66438085,25.76437819,27.56438351,5.679030761,4.973638616,6.384422905,2.299200149,2.096034491,2.502365807,,,,9.868004526,3142,30361506,9.515203647,10.22080541,10.34863027,,,,5.863777489,4.800535525,6.927019454,5.977986055,5.470923915,6.485048195,4.442484714,3.681457794,5.203511635,13.77550598,13.18200926,14.3690027,,,,12.92426008,3924,30361506,12.51987301,13.32864715,,,,2.127112272,1.539401698,2.865206271,26.27782522,25.22429611,27.33135433,4.619615009,3.877845938,5.36138408,8.686159692,8.217210086,9.155109298,,,,9.284086293,3935,42384354,8.994002897,9.574169689,,,,4.078071459,3.329456541,4.826686376,11.26040283,10.67553867,11.84526698,8.37029835,7.513923356,9.226673344,9.327649387,8.918437711,9.736861062,,,,10.97233725,,603700,,,2582,4042,0.704129445,3037030,4313170,,,,,,,,162.622282,,,,,0.674707652,1564056,2318124,0.670609155,0.678806148,0.140635728,318915,2267667,0.138122555,0.143148902,0.905635764,2099376,2318124,0.902791474,0.908480054,6164660,,,,,0.218436864,1346589,6164660,,,0.169386308,1044209,6164660,,,0.303888292,1873368,6164660,,,0.007030234,43339,6164660,,,0.070593188,435183,6164660,,,0.001240458,7647,6164660,,,0.114656121,706816,6164660,,,0.482762877,2976069,6164660,,,0.03355288,194713,5803168,0.032592354,0.034513406,0.513045488,3162751,6164660,,,0.143829008,888464,6177224,, -24,001,24001,MD,Allegany County,2024,1,10621.46462,1340,188726,9690.476916,11552.45232,0,,,,2,,,,2,13623.00638,8321.286211,21039.62846,1,,,,2,11149.30549,10110.15198,12188.459,,,,,2,,0.168,,,0.143,0.196,3.814324981,,,3.127290819,4.57029466,5.571788467,,,4.801211081,6.40823116,0.087363139,383,4384,0.079004532,0.095721746,0,,,,,,,0.136363636,0.082162242,0.190565031,,,,0.083815756,0.075198857,0.092432656,,,,0.088435374,0.042536277,0.134334472,0.199,,,0.162,0.237,0.419,,,0.369,0.469,6.7,0.097444599,0.148,,,0.278,,,0.236,0.319,0.666417056,45387,68106,,,0.162169222,,,0.135719833,0.191682908,0.206896552,6,29,0.113372568,0.31356155,,,,,,21.10440142,339,16063,18.85778328,23.35101956,,,,,,,13.05609284,8.604047453,18.99592962,,,,22.07853651,19.49242446,24.66464856,,,,33.42245989,21.62925381,49.33814398,0.063169745,3030,47966,0.05363783,0.07270166,0.00053153,36,67729,,,1881.361111,0.000773039,52,67267,,,1293.596154,0.003939525,265,67267,,,253.8377359,2768,,,,,,,4219,,2748,0.45,,,,,,0.31,0.49,,0.45,0.43,,,,,,0.46,0.34,0.04,0.43,0.90551822,43387,47914,0.894133673,0.916902767,0.549729427,8838,16077,0.504291231,0.595167623,0.040286798,1253,31102,,,0.198,2308,,0.12412766,0.27187234,,,,,,,,,,0.28,0.044304427,0.515695573,0.162774658,0.126920477,0.198628839,4.768823529,105391,22100,4.118303489,5.41934357,0.238437135,2856,11978,0.197051652,0.279822618,17.12707998,116,67729,,,112.6023399,395,350792,101.4976882,123.7069915,,,,,,,77.19839989,48.37982621,116.8793052,,,,121.4766824,109.0819884,133.8713764,,,,7.2,,,,,0,,,,,0.126233102,3455,27370,0.109063367,0.143402837,0.115703704,0.098214898,0.133192509,0.008037998,0.003806868,0.012269128,0.006759225,0.003224342,0.010294109,0.809802795,21148,26115,0.791214538,0.828391053,,,,,,,0.538341158,0.400351219,0.676331097,,,,0.836146146,0.825121925,0.847170367,0.218,,26115,0.191517826,0.244482175,74.21822996,,,73.53070358,74.90575635,,,,,,,70.92116316,66.62055519,75.22177112,,,,73.8446859,73.0996675,74.58970429,,,,520.0641221,1340,188726,490.5501791,549.5780651,,,,,,,632.7277799,477.9557652,821.6496516,,,,535.3540845,503.2622058,567.4459632,,,,59.60693484,35,58718,41.51841412,82.89881701,,,,,,,,,,,,,60.91494244,41.09905586,86.95986801,,,,8.026755853,36,4485,5.621841119,11.11241349,,,,,,,,,,,,,7.596177408,5.161234006,10.78216748,,,,,,,0.114,,,0.098,0.131,0.178,,,0.155,0.201,0.105,,,0.09,0.121,286.1,170,59423,,,0.148,10170,,,,0.097444599,7316.822627,75087,,,51.39239777,107,208202,41.65454816,61.13024738,,,,,,,88.02300335,49.26580678,145.1805579,,,,50.03891916,40.23720012,61.50632703,,,,0.347,,,0.331,0.362,0.074215296,2686,36192,0.061108913,0.087321679,0.030765523,383,12449,0.021233608,0.040297438,0.002274518,153,67267,,,439.6535948,0.9,541.8,602,,,0.051295752,192,3743,0.02614688,0.076444625,,,,,,,,,,,,,,,,,,,,,0.053419011,,,,,3883.018,,,,,0.780496454,44020,56400,0.711605801,0.849387107,50582,,,44448.21277,56715.78723,,,,101250,15066,187434,28281,20435.04255,36126.95745,50422,34239.19149,66604.80851,55997,52959.89362,59034.10638,,,,,,0.456468274,3712,8132,,,56.68007207,,,,,0.298426318,,50582,,,6.190941675,19,3069,,,3.229387426,16,495450,1.845873944,5.244322858,,,,,,,,,,,,,3.488396431,1.952429001,5.753579414,,,,15.34303144,57,350792,11.45890975,20.12034444,16.24894524,,,,,,,,,,,,,16.92782244,12.48123997,22.44383668,,,,10.26249173,36,350792,7.187723043,14.20761434,,,,,,,,,,,,,11.85138365,8.300563407,16.40731049,,,,11.10101928,55,495450,8.362806937,14.44950247,,,,,,,,,,,,,12.32566739,9.232770678,16.12227642,,,,40.72727273,,5500,,,71,153,0.527701714,30641,58065,,,0.637,,,,,72.75556666,,,,,0.701041439,19252,27462,0.682731204,0.719351674,0.111313515,2872,25801,0.095054617,0.127572414,0.82335591,22611,27462,0.805489437,0.841222383,67267,,,,,0.17707048,11911,67267,,,0.210876061,14185,67267,,,0.075861864,5103,67267,,,0.002423179,163,67267,,,0.010896874,733,67267,,,0.000698708,47,67267,,,0.022120802,1488,67267,,,0.865922369,58248,67267,,,0.00333318,217,65103,0.000820792,0.005845568,0.474972869,31950,67267,,,0.349851702,23827,68106,, -24,003,24003,MD,Anne Arundel County,2024,1,7007.190001,6782,1644060,6762.796723,7251.583278,0,,,,2,2959.180693,2320.629774,3597.731612,,8687.230375,8058.969527,9315.491223,,5186.848958,4481.897186,5891.800731,,7130.057909,6819.38461,7440.731207,,,,,2,,0.125,,,0.107,0.145,3.074236731,,,2.518540428,3.665214728,4.447479785,,,3.804709875,5.107724318,0.076297219,3676,48180,0.073926701,0.078667736,0,,,,0.086841107,0.07609288,0.097589335,0.117653619,0.110984711,0.124322526,0.069904241,0.064058858,0.075749624,0.063856638,0.060979081,0.066734196,,,,0.066616767,0.053245436,0.079988097,0.114,,,0.091,0.139,0.357,,,0.32,0.396,8.7,0.041371283,0.081,,,0.206,,,0.177,0.238,0.924963579,544120,588261,,,0.179071678,,,0.155813786,0.204189957,0.311403509,71,228,0.27814324,0.34498658,,,,,,10.40100689,1190,114412,9.810047039,10.99196674,,,,2.881152461,1.48873352,5.032793529,14.17308481,12.59786827,15.74830135,29.58857054,26.60963949,32.56750158,5.778836102,5.211089017,6.346583186,,,,13.38005734,10.67245775,16.56542144,0.054750184,26626,486318,0.048792737,0.060707631,0.000672498,397,590336,,,1486.992443,0.000729834,433,593286,,,1370.17552,0.00264965,1572,593286,,,377.408397,2520,,,,,,863,3667,1610,2408,0.44,,,,,0.64,0.32,0.44,0.36,0.44,0.52,,,,,0.44,0.53,0.43,0.42,0.54,0.935458084,382651,409052,0.931418833,0.939497334,0.767568097,125426,163407,0.745791418,0.789344776,0.028374045,8892,313385,,,0.076,9926,,0.053361702,0.098638298,0.258883249,0,0.656796431,0.09375765,0.03468692,0.15282838,0.143551256,0.113279089,0.173823423,0.107860664,0.079957566,0.135763762,0.039718175,0.030779305,0.048657044,3.696786105,206240,55789,3.564787141,3.828785069,0.199610635,26248,131496,0.179034831,0.220186438,8.046265178,475,590336,,,89.53640613,2598,2901613,86.093413,92.97939926,,,,28.89099839,20.12363895,40.18038497,80.84106175,73.02537456,88.65674894,42.71047228,34.50178378,50.91916078,104.4737079,99.91879659,109.0286192,,,,8.5,,,,,0,,,,,0.122348911,26075,213120,0.115588813,0.12910901,0.106039127,0.099086717,0.112991537,0.016868431,0.013961477,0.019775385,0.004762575,0.003198532,0.006326618,0.736456149,225863,306689,0.726229411,0.746682888,0.706879362,0.565342535,0.848416189,0.765863766,0.728100298,0.803627234,0.731778734,0.711173857,0.75238361,0.698323796,0.658391007,0.738256584,0.752821092,0.742068208,0.763573977,0.466,,306689,0.452156145,0.479843855,78.86404686,,,78.62816677,79.09992696,,,,86.57865497,84.68180741,88.47550253,76.04207204,75.45575973,76.62838434,83.78012052,81.99995898,85.56028205,78.81771225,78.53750902,79.09791549,,,,335.1505435,6782,1644060,326.965384,343.3357029,,,,165.9534182,138.3843924,193.522444,431.6263468,408.6651501,454.5875436,223.2536542,192.2239464,254.283362,337.0718809,327.1647673,346.9789946,,,,41.36352403,236,570551,36.08615333,46.64089474,,,,,,,69.79081367,54.8949022,87.48338927,50.4051801,35.84301047,68.90554052,32.09046455,25.95231556,38.22861354,,,,4.665823362,225,48223,4.056155776,5.275490948,,,,,,,7.84358304,6.102775782,9.926556337,5.059997109,3.524473385,7.037231078,3.632644424,2.931091646,4.334197202,,,,,,,0.086,,,0.074,0.098,0.143,,,0.125,0.162,0.091,,,0.079,0.103,288.9,1434,496331,,,0.081,47260,,,,0.041371283,22243.51864,537656,,,44.39759933,778,1752347,41.27780647,47.5173922,,,,,,,47.50003188,39.87297758,55.12708618,15.80559123,10.12694054,23.51746689,51.04127671,46.91916314,55.16339028,,,,0.337,,,0.324,0.351,0.064148005,22822,355771,0.05580758,0.072488431,0.030530886,4170,136583,0.02338195,0.037679822,0.001242234,737,593286,,,805.0013569,0.9,5298.3,5887,,,0.037935416,1015,26756,0.025649449,0.050221384,,,,,,,,,,,,,,,,,,,,,0.134120301,,,,,3727.926,,,,,0.818340663,69784,85275,0.794607651,0.842073674,112525,,,108073.5957,116976.4043,76641,52202.3617,101079.6383,109370,101756.383,116983.617,99667,94744.95745,104589.0426,98703,85778.91489,111627.0851,123410,120617.1489,126202.8511,,,,,,0.374144752,31115,83163,,,48.54377675,,,,,0.199129082,,112525,,,4.705082056,166,35281,,,4.387537015,177,4034154,3.74115356,5.03392047,,,,,,,12.23917949,9.776221867,15.13393497,6.411293646,3.968691817,9.800343381,2.390292031,1.844776926,3.046623412,,,,12.94780259,393,2901613,11.6434858,14.25211938,13.54419077,,,,,,,7.071211891,4.978785742,9.74673413,4.71097959,2.434231899,8.229133278,15.81803999,14.05127144,17.58480854,,,,8.340188716,242,2901613,7.289378549,9.390998883,,,,,,,13.17846992,10.21313318,16.73619096,7.802874743,4.697840314,12.18515547,7.909192136,6.655928375,9.162455896,,,,8.081000378,326,4034154,7.203772554,8.958228203,,,,,,,8.495430466,6.467115287,10.95848634,7.021893041,4.451277843,10.53628728,8.678598759,7.571338584,9.785858934,,,,9.355400697,,57400,,,176,361,0.723573265,309617,427900,,,0.746,,,,,122.5328498,,,,,0.750401436,166367,221704,0.741795684,0.759007189,0.111043987,24263,218499,0.103430095,0.118657878,0.942811136,209025,221704,0.936688215,0.948934056,593286,,,,,0.221962089,131687,593286,,,0.161842686,96019,593286,,,0.188868438,112053,593286,,,0.005142545,3051,593286,,,0.046471685,27571,593286,,,0.001254033,744,593286,,,0.094146836,55856,593286,,,0.637984041,378507,593286,,,0.0141455,7820,552826,0.01219234,0.01609866,0.504203706,299137,593286,,,0.07482393,44016,588261,, -24,005,24005,MD,Baltimore County,2024,1,8627.851512,12242,2312784,8395.429343,8860.273681,0,7711.415341,4492.18361,12346.72298,1,3358.621197,2795.50512,3921.737273,,10927.34213,10454.49235,11400.19191,,6322.345531,5525.881489,7118.809574,,8133.678899,7828.558479,8438.799319,,,,,2,,0.137,,,0.118,0.158,3.049134266,,,2.521229529,3.578071094,4.865486684,,,4.230236546,5.504236896,0.09219414,6183,67065,0.090004583,0.094383697,0,,,,0.090314136,0.082631965,0.097996307,0.129744992,0.125335935,0.134154048,0.071557862,0.066008239,0.077107485,0.069305231,0.066388761,0.072221702,,,,0.097075296,0.082599973,0.111550619,0.128,,,0.103,0.152,0.366,,,0.329,0.404,8.4,0.044240842,0.096,,,0.224,,,0.193,0.255,0.970814537,829595,854535,,,0.143647261,,,0.124423089,0.16443442,0.291666667,105,360,0.265250156,0.318427232,,,,,,11.81450425,2205,186635,11.3213676,12.30764089,,,,1.859559019,1.151096342,2.842533493,14.85180309,13.89468751,15.80891867,41.37330333,37.97674685,44.76985981,6.230907507,5.717120459,6.744694555,,,,13.8576779,11.27966525,16.43569056,0.063569081,42920,675171,0.057611634,0.069526528,0.000864225,734,849316,,,1157.106267,0.00079063,669,846161,,,1264.814649,0.004068966,3443,846161,,,245.7627069,3018,,,,,,1335,4135,2454,2706,0.48,,,,,0.46,0.37,0.46,0.38,0.49,0.55,,,,,0.51,0.56,0.44,0.42,0.58,0.917136892,540754,589611,0.913799629,0.920474155,0.71453829,157212,220019,0.697617547,0.731459032,0.033057255,14672,443836,,,0.145,25929,,0.117595745,0.172404255,0.01497006,0,0.173781039,0.146772541,0.100841969,0.192703114,0.188658774,0.166653167,0.210664381,0.200381477,0.158423223,0.242339731,0.082644737,0.070110168,0.095179305,4.398857588,169422,38515,4.249311574,4.548403602,0.286219197,52476,183342,0.267920522,0.304517872,8.253700625,701,849316,,,113.219275,4714,4163602,109.9871984,116.4513517,125.5267641,68.62665002,210.6125807,29.70670343,23.48191631,37.07531032,101.3893432,95.75958997,107.0190965,57.08700223,47.59657182,66.57743265,138.0681838,133.2858595,142.850508,,,,8.3,,,,,0,,,,,0.152309375,48030,315345,0.145117202,0.159501549,0.135303366,0.128795172,0.14181156,0.018265709,0.015600032,0.020931386,0.006786218,0.005338459,0.008233977,0.737529168,311640,422546,0.731596537,0.7434618,0.753263708,0.599308351,0.907219065,0.686800574,0.638416779,0.735184369,0.654980372,0.638521324,0.671439421,0.679564945,0.655291126,0.703838763,0.765518172,0.756486846,0.774549497,0.447,,422546,0.4342227,0.4597773,77.02363451,,,76.82563404,77.22163498,85.62528324,78.23856684,93.01199963,87.3672597,85.97300127,88.76151813,74.2697604,73.88096409,74.6585567,85.77857323,83.55197461,88.00517184,77.42322855,77.1719629,77.6744942,,,,409.7666866,12242,2312784,402.1981522,417.3352211,311.5986408,195.2772092,471.7640868,161.7270168,142.0767056,181.3773281,509.6465791,493.7929321,525.5002261,229.7586371,201.0757143,258.4415598,401.2473874,391.3309665,411.1638084,,,,55.26174251,449,812497,50.15013528,60.37334974,,,,46.13227045,29.85437306,68.10033159,90.72426382,79.45540727,101.9931204,51.23142861,36.76455768,69.50121777,31.34735365,25.56748814,37.12721916,,,,6.296634913,427,67814,5.699392493,6.893877334,,,,4.561211458,2.951775561,6.733247892,10.34158571,9.007949996,11.67522142,5.098789038,3.642649642,6.943103501,3.749170538,3.057893637,4.440447438,,,,,,,0.091,,,0.078,0.104,0.154,,,0.136,0.175,0.103,,,0.091,0.117,489.9,3520,718453,,,0.096,81700,,,,0.044240842,35615.16058,805029,,,51.02483195,1277,2502703,48.22622309,53.82344082,,,,6.942647421,3.465744578,12.42231399,45.10383862,40.30241829,49.90525894,21.22536697,14.51813529,29.96388509,63.51539139,59.3020376,67.72874518,,,,0.342,,,0.33,0.353,0.071679103,35457,494663,0.064530167,0.078828039,0.042408051,8032,189398,0.032876136,0.051939966,0.00137917,1167,846161,,,725.0736932,0.86,7215.4,8390,,,0.06766786,3100,45812,0.054491276,0.080844444,,,,,,,,,,,,,,,,,,,,,0.175729835,,,,,-2018.557,,,,,0.850540174,60857,71551,0.827493028,0.873587321,86198,,,82833.23404,89562.76596,56188,37157.53192,75218.46809,98942,93524.29787,104359.7021,75271,73126.31915,77415.68085,74005,66788.14894,81221.85106,97539,95562.31915,99515.68085,,,,,,0.378148765,42018,111115,,,58.09947917,,,,,0.21889139,,86198,,,5.343927081,265,49589,,,9.801303041,571,5825756,8.997366379,10.6052397,,,,,,,25.4296878,23.02608406,27.83329155,7.558807523,4.891661682,11.15829101,3.039047198,2.443393947,3.634700449,,,,10.34807079,450,4163602,9.361956644,11.33418493,10.80794946,,,,6.847685325,3.914043826,11.12021196,5.532304434,4.296050865,7.013514118,6.087360607,3.407049522,10.04017559,13.61902855,12.07663727,15.16141984,,,,13.44989267,560,4163602,12.33590373,14.5638816,,,,,,,26.36448411,23.49368473,29.23528349,6.160467867,3.4479671,10.16075489,8.968826429,7.749949033,10.18770383,,,,9.028871103,526,5825756,8.257263226,9.800478979,,,,4.401917035,2.516075926,7.148437484,10.64498559,9.089862046,12.20010914,9.675273629,6.61788,13.65859953,8.874017818,7.856165097,9.891870539,,,,15.80964153,,80900,,,464,815,0.680288883,414932,609935,,,0.722,,,,,180.811753,,,,,0.665254663,218610,328611,0.657548664,0.672960662,0.145858086,46896,321518,0.139097441,0.15261873,0.897368013,294885,328611,0.891010975,0.90372505,846161,,,,,0.21463764,181618,846161,,,0.184949436,156497,846161,,,0.309900835,262226,846161,,,0.005251956,4444,846161,,,0.065781808,55662,846161,,,0.000957265,810,846161,,,0.06575699,55641,846161,,,0.530650786,449016,846161,,,0.01928677,15465,801845,0.017387913,0.021185627,0.52434584,443681,846161,,,0.071291404,60921,854535,, -24,009,24009,MD,Calvert County,2024,1,6873.427817,1116,261803,6246.289124,7500.56651,0,,,,2,,,,2,9896.782602,7734.106606,12059.4586,,,,,2,6761.841247,6058.342017,7465.340477,,,,,2,,0.119,,,0.101,0.14,3.068404001,,,2.488741258,3.713086607,4.995317681,,,4.256465364,5.762983262,0.069677817,452,6487,0.063482007,0.075873627,0,,,,0.090163934,0.039339312,0.140988556,0.140277778,0.114911115,0.165644441,0.057575758,0.032442883,0.082708632,0.059054346,0.052582816,0.065525876,,,,0.091428571,0.048725654,0.134131489,0.13,,,0.103,0.161,0.354,,,0.305,0.403,8.8,0.052296372,0.072,,,0.191,,,0.159,0.228,0.780035136,72374,92783,,,0.179600831,,,0.151205257,0.210850924,0.317073171,13,41,0.235262051,0.399675377,,,,,,7.76333318,169,21769,6.592861408,8.933804952,,,,,,,13.34294987,9.394668073,18.39149879,7.209805335,3.457381901,13.25908871,6.973058637,5.669942731,8.276174544,,,,7.552870091,3.621894786,13.88999701,0.043628028,3445,78963,0.037670582,0.049585475,0.00047909,45,93928,,,2087.288889,0.000507544,48,94573,,,1970.270833,0.002357967,223,94573,,,424.0941704,2401,,,,,,,3230,,2284,0.43,,,,,,0.38,0.46,0.28,0.42,0.51,,,,,,0.56,0.42,0.48,0.52,0.944730117,60629,64176,0.935590156,0.953870078,0.725206703,16402,22617,0.677934105,0.772479301,0.029485673,1455,49346,,,0.059,1254,,0.033978723,0.084021277,,,,,,,0.057092666,0,0.121749162,0.129148629,0.030482926,0.227814333,0.036350297,0.021572714,0.051127879,3.456873402,216262,62560,3.164020983,3.74972582,0.15550495,3346,21517,0.124008182,0.187001717,5.962013457,56,93928,,,83.14796018,385,463030,74.8422398,91.45368055,,,,,,,78.29809919,57.53049822,104.1198733,,,,90.97759049,81.10157638,100.8536046,,,,7.6,,,,,0,,,,,0.095515971,3110,32560,0.077602349,0.113429592,0.086620263,0.069134957,0.104105569,0.005374693,0.002182363,0.008567023,0.005528256,0.001832274,0.009224238,0.770269144,36976,48004,0.747035041,0.793503247,,,,,,,0.779661017,0.677466277,0.881855757,0.535036496,0.417972386,0.652100607,0.709485246,0.67268821,0.746282283,0.604,,48004,0.563664961,0.644335039,78.61715175,,,78.02899391,79.20530958,,,,91.73323325,83.02953531,100.4369312,75.05728031,73.34560106,76.76895956,96.14331538,84.54400555,107.7426252,78.62465676,77.97609157,79.27322195,,,,330.7275761,1116,261803,310.4966036,350.9585485,,,,,,,448.148981,383.2932919,513.0046701,,,,330.3005652,307.5309175,353.070213,,,,33.91231547,32,94361,23.19599868,47.87407094,,,,,,,,,,,,,30.61179866,18.94918585,46.79338601,,,,4.661280298,30,6436,3.144946243,6.654267464,,,,,,,,,,,,,,,,,,,,,,0.09,,,0.078,0.104,0.152,,,0.132,0.174,0.094,,,0.081,0.107,163.2,129,79057,,,0.072,6630,,,,0.052296372,4640.623191,88737,,,36.49047491,102,279525,29.40880791,43.57214191,,,,,,,38.26182017,20.91809313,64.1968328,,,,39.0603203,31.15604121,48.35933438,,,,0.349,,,0.333,0.364,0.048275983,2761,57192,0.039935557,0.056616408,0.032591173,748,22951,0.023059258,0.042123087,0.000877629,83,94573,,,1139.433735,0.95,1263.5,1330,,,0.038994247,183,4693,0.012336974,0.065651519,,,,,,,,,,,,,,,,,,,,,0.01817904,,,,,4197.415,,,,,0.765496498,68972,90101,0.707496535,0.823496461,118110,,,107002.9362,129217.0638,83571,3151.425532,163990.5745,143508,97539.14894,189476.8511,83065,69862.10638,96267.89362,181314,154342.2553,208285.7447,130547,126000.2766,135093.7234,,,,,,0.21374789,3293,15406,,,16.34255208,,,,,0.189712979,,118110,,,8.382229673,40,4772,,,,,,,,,,,,,,,,,,,,,,,,,,10.74222212,50,463030,7.920466584,14.24262805,10.79843639,,,,,,,,,,,,,11.74791407,8.430505968,15.93737197,,,,6.69503056,31,463030,4.548948444,9.503061465,,,,,,,,,,,,,6.697736723,4.291366298,9.965701335,,,,12.25041713,79,644876,9.69877061,15.2676749,,,,,,,15.60511848,8.309068364,26.68522786,,,,12.36101336,9.477118067,15.84626127,,,,16.05769231,,10400,,,23,144,0.702065614,49113,69955,,,0.735,,,,,22.41749241,,,,,0.861404879,28671,33284,0.845663564,0.877146195,0.088569498,2884,32562,0.07154362,0.105595377,0.918429275,30569,33284,0.902449656,0.934408895,94573,,,,,0.228098929,21572,94573,,,0.164962516,15601,94573,,,0.136719783,12930,94573,,,0.00511774,484,94573,,,0.020449811,1934,94573,,,0.001564929,148,94573,,,0.051579203,4878,94573,,,0.754411936,71347,94573,,,0.003447029,305,88482,0.001356865,0.005537193,0.502257515,47500,94573,,,0.618906481,57424,92783,, -24,011,24011,MD,Caroline County,2024,1,8880.410118,548,93452,7740.445314,10020.37492,0,,,,2,,,,2,11829.11655,8450.894288,16107.89933,,,,,2,8847.177933,7532.047459,10162.30841,,,,,2,,0.171,,,0.145,0.198,3.801864145,,,3.043204831,4.600111725,5.499857845,,,4.58464615,6.387239695,0.07747686,226,2917,0.067774832,0.087178887,0,,,,,,,0.151670951,0.116024636,0.187317267,0.053571429,0.034921697,0.072221161,0.069805195,0.058187073,0.081423316,,,,,,,0.184,,,0.148,0.22,0.421,,,0.357,0.483,8,0.0402018,0.115,,,0.256,,,0.212,0.301,0.224852071,7486,33293,,,0.152816099,,,0.122799631,0.186433032,0.1875,6,32,0.100598348,0.289089816,,,,,,19.08609641,137,7178,15.89005129,22.28214152,,,,,,,19.46902655,12.20113529,29.47634017,57.53424658,41.46562429,77.76958737,12.3431809,9.441555354,15.85533224,,,,45.80152672,23.66631721,80.0060498,0.090925557,2510,27605,0.077819174,0.10403194,0.000299527,10,33386,,,3338.6,0.000687943,23,33433,,,1453.608696,0.000628122,21,33433,,,1592.047619,1824,,,,,,,793,,1903,0.4,,,,,,0.29,0.43,,0.39,0.45,,,,,,0.42,0.36,0.56,0.46,0.844200201,19279,22837,0.824088394,0.864312009,0.48932298,4033,8242,0.437192054,0.541453906,0.030747647,526,17107,,,0.195,1488,,0.139,0.251,0.823863636,0.354840009,1,,,,0.300288739,0.18124289,0.419334588,0.26156434,0.138074878,0.385053802,0.174438687,0.129468071,0.219409304,4.211363412,128156,30431,3.71406935,4.708657474,0.322262119,2513,7798,0.262043784,0.382480453,8.386748937,28,33386,,,109.1251402,182,166781,93.27090878,124.9793715,,,,,,,96.92483919,60.7422807,146.7453713,,,,119.739447,100.5771446,138.9017494,,,,7.4,,,,,0,,,,,0.149259868,1815,12160,0.125667053,0.172852684,0.118659495,0.095496707,0.141822283,0.030427632,0.019412199,0.041443064,0.005345395,0.001015343,0.009675447,0.815207052,12855,15769,0.782490283,0.847923821,,,,,,,0.763813651,0.645421026,0.882206277,,,,0.782556431,0.764209762,0.8009031,0.522,,15769,0.477117053,0.566882947,75.63376875,,,74.71941705,76.54812045,,,,,,,72.79586442,70.19366892,75.39805992,91.52062448,70.56925949,112.4719895,75.66389199,74.62717135,76.70061263,,,,444.7996915,548,93452,405.6990767,483.9003062,,,,,,,558.9519028,444.551036,693.8066916,,,,447.1326575,402.6670887,491.5982264,,,,37.75776939,13,34430,20.10442199,64.56693557,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.116,,,0.099,0.133,0.183,,,0.157,0.209,0.11,,,0.094,0.126,240.7,67,27840,,,0.115,3830,,,,0.0402018,1329.312701,33066,,,53.84707431,54,100284,40.45157949,70.25875154,,,,,,,,,,,,,61.24758671,44.84093124,81.69569764,,,,0.346,,,0.331,0.36,0.104606526,2071,19798,0.086734186,0.122478866,0.05704862,467,8186,0.03798479,0.076112449,0.001136602,38,33433,,,879.8157895,0.9,369,410,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.075378782,,,,,2368.885,,,,,0.766885561,45428,59237,0.677404281,0.856366841,65981,,,57947.97872,74014.02128,,,,208750,86374.51064,331125.4894,41114,33257.31915,48970.68085,51750,32382.34043,71117.65957,70252,64393.44681,76110.55319,,,,,,0.522608539,2901,5551,,,35.52511729,,,,,0.245570695,,65981,,,5.934718101,12,2022,,,,,,,,,,,,,,,,,,,,,,,,,,14.25347553,27,166781,9.224097833,21.04094164,16.18889442,,,,,,,,,,,,,17.5248884,11.10927595,26.29593724,,,,14.39012837,24,166781,9.220026774,21.41137036,,,,,,,,,,,,,15.9652596,9.751995327,24.65704858,,,,21.10158908,49,232210,15.61107177,27.89741983,,,,,,,,,,,,,18.8347564,12.96497967,26.45100068,,,,16.66666667,,3600,,,26,34,0.651836566,15794,24230,,,0.672,,,,,12.12507259,,,,,0.720719221,8658,12013,0.695468719,0.745969723,0.135509568,1565,11549,0.108371994,0.162647142,0.856072588,10284,12013,0.830994009,0.881151167,33433,,,,,0.233212694,7797,33433,,,0.176921006,5915,33433,,,0.131486854,4396,33433,,,0.00999013,334,33433,,,0.01214369,406,33433,,,0.003349984,112,33433,,,0.089253133,2984,33433,,,0.740376275,24753,33433,,,0.021473765,672,31294,0.014145472,0.028802058,0.510573386,17070,33433,,,0.849547953,28284,33293,, -24,013,24013,MD,Carroll County,2024,1,6489.387027,2152,474079,6048.158799,6930.615256,0,,,,2,,,,2,11098.89216,7865.148058,14332.63626,,2466.284032,1436.701334,3948.759649,1,6653.682748,6171.803209,7135.562287,,,,,2,,0.115,,,0.095,0.139,3.027669258,,,2.381336677,3.689957408,4.858630144,,,4.031743258,5.667263526,0.063453681,761,11993,0.059090682,0.067816681,0,,,,0.092715232,0.06000377,0.125426694,0.139344262,0.103864982,0.174823543,0.04377565,0.028943859,0.05860744,0.061315281,0.056691044,0.065939517,,,,0.054455446,0.023162817,0.085748074,0.126,,,0.096,0.161,0.314,,,0.262,0.366,8.7,0.030085234,0.088,,,0.186,,,0.15,0.224,0.853867466,147626,172891,,,0.181314596,,,0.150091204,0.212668887,0.301369863,22,73,0.240950704,0.362888331,,,,,,5.992568169,229,38214,5.216408069,6.768728269,,,,,,,12.574454,7.57064273,19.63656755,14.21366346,9.657494718,20.17516071,4.927952093,4.159540329,5.696363857,,,,12.34567901,7.316831811,19.51149538,0.046614872,6594,141457,0.040657426,0.052572319,0.000442852,77,173873,,,2258.090909,0.000559026,98,175305,,,1788.826531,0.002629703,461,175305,,,380.2711497,2644,,,,,,,3184,,2640,0.49,,,,,,0.38,0.53,0.48,0.49,0.54,,,,,,0.54,0.47,0.47,0.54,0.941812722,113544,120559,0.935880831,0.947744614,0.739588486,29906,40436,0.70601058,0.773166392,0.026549515,2511,94578,,,0.059,2221,,0.038744681,0.079255319,,,,0.155251142,0.037809314,0.272692969,0.156182213,0.040423291,0.271941134,0.157284768,0.082786789,0.231782747,0.0349713,0.02256425,0.04737835,4.023282553,195958,48706,3.771775146,4.274789959,0.145612163,5459,37490,0.123779141,0.167445186,9.604711485,167,173873,,,89.07272346,755,847622,82.71901436,95.42643255,,,,,,,104.7286576,72.090389,147.0779729,,,,94.80079799,87.82257333,101.7790226,,,,8.5,,,,,0,,,,,0.093617369,5735,61260,0.082588308,0.104646429,0.084470008,0.074681447,0.09425857,0.00734574,0.004288619,0.01040286,0.006284688,0.003799952,0.008769424,0.778428149,70085,90034,0.765944153,0.790912145,,,,0.643372158,0.576019606,0.710724709,0.7631786,0.667622974,0.858734225,0.589595376,0.467737768,0.711452983,0.717785776,0.700617687,0.734953864,0.579,,90034,0.554874179,0.603125821,78.25357915,,,77.86398827,78.64317004,,,,87.73987286,81.99358055,93.48616517,74.72023408,71.92464466,77.51582351,88.09190778,82.39616765,93.78764791,78.04348585,77.6301706,78.4568011,,,,334.1795551,2152,474079,319.3700206,348.9890896,,,,,,,542.6188757,441.3296629,643.9080885,172.1643549,105.1624607,265.8938827,339.2967536,323.4739403,355.119567,,,,32.305648,53,164058,24.19914721,42.256583,,,,,,,,,,,,,32.30851697,23.47541789,43.37267601,,,,3.108721223,37,11902,2.188826631,4.284962707,,,,,,,,,,,,,2.90866783,1.962465971,4.152304188,,,,,,,0.086,,,0.073,0.102,0.147,,,0.125,0.169,0.079,,,0.067,0.093,108.5,160,147447,,,0.088,15110,,,,0.030085234,5028.265552,167134,,,39.49848654,202,511412,34.05144307,44.94553002,,,,,,,56.41604267,28.16268524,100.9438841,,,,41.64829242,35.67886786,47.61771698,,,,0.281,,,0.264,0.298,0.052119246,5397,103551,0.04377882,0.060459671,0.03322634,1325,39878,0.023694425,0.042758255,0.000872765,153,175305,,,1145.784314,0.95,1953.2,2056,,,0.045934917,439,9557,0.022816402,0.069053432,,,,,,,,,,,,,,,,,,,,,0.033215053,,,,,6970.142,,,,,0.827694536,67448,81489,0.783044184,0.872344887,105096,,,98147.23404,112044.766,,,,95260,83741.87234,106778.1277,109559,97681.04255,121436.9575,99100,72769.2766,125430.7234,112052,107401.617,116702.383,,,,,,0.221068605,5536,25042,,,42.3586951,,,,,0.21320507,,105096,,,7.212055974,67,9290,,,1.437139923,17,1182905,0.837186965,2.301000234,,,,,,,,,,,,,1.430372336,0.800568538,2.359181643,,,,12.73831761,112,847622,10.29342388,15.18321133,13.21343712,,,,,,,,,,,,,13.87596075,11.15273766,16.59918385,,,,7.432558381,63,847622,5.711381936,9.509470883,,,,,,,,,,,,,8.156345102,6.238957721,10.4771665,,,,11.41258174,135,1182905,9.487393994,13.33776948,,,,,,,23.2067021,11.12851569,42.67795141,,,,11.72905315,9.656209861,13.80189644,,,,10.05847953,,17100,,,47,125,0.777758828,100327,128995,,,0.798,,,,,42.17246428,,,,,0.830411573,52580,63318,0.817383552,0.843439594,0.091577626,5691,62144,0.080634531,0.102520722,0.901560378,57085,63318,0.889304641,0.913816115,175305,,,,,0.216959014,38034,175305,,,0.180702205,31678,175305,,,0.040991415,7186,175305,,,0.00325718,571,175305,,,0.025099113,4400,175305,,,0.000713043,125,175305,,,0.046330681,8122,175305,,,0.864966772,151633,175305,,,0.006467792,1060,163889,0.004532593,0.008402991,0.500607513,87759,175305,,,0.422387516,73027,172891,, -24,015,24015,MD,Cecil County,2024,1,11082.39461,1929,291113,10335.97967,11828.80955,0,,,,2,,,,2,14723.49411,11602.81866,17844.16957,,6342.025332,4020.300035,9516.151903,1,11247.51069,10423.43441,12071.58696,,,,,2,,0.147,,,0.123,0.173,3.635979499,,,2.942399909,4.39542216,5.456957824,,,4.652326598,6.30959323,0.08,634,7925,0.074026961,0.085973039,0,,,,,,,0.154798762,0.126905223,0.1826923,0.081237911,0.057687868,0.104787954,0.071128405,0.064843208,0.077413602,,,,0.12745098,0.081688717,0.173213244,0.181,,,0.143,0.22,0.358,,,0.307,0.41,7.8,0.065409238,0.11,,,0.254,,,0.211,0.299,0.737980236,76547,103725,,,0.173013128,,,0.144106737,0.203365769,0.247706422,27,109,0.198805611,0.298765272,,,,,,16.74283904,370,22099,15.03681828,18.4488598,,,,,,,29.88505747,22.31959035,39.19027686,21.01694915,14.27999727,29.8318817,14.51926375,12.73366527,16.30486223,,,,30.45186641,20.6905658,43.22399362,0.065441066,5667,86597,0.055909151,0.074972981,0.000394591,41,103905,,,2534.268293,0.00040975,43,104942,,,2440.511628,0.002525204,265,104942,,,396.0075472,3395,,,,,,,4761,2018,3339,0.4,,,,,,0.44,0.48,0.39,0.4,0.46,,,,,,0.44,0.36,0.34,0.47,0.914491088,66029,72203,0.904210376,0.924771799,0.596014924,15016,25194,0.554541308,0.63748854,0.033276911,1789,53761,,,0.118,2670,,0.072723404,0.163276596,,,,0.154761905,0,0.546957905,0.413929041,0.150718083,0.677139998,0.076057847,0.008651975,0.143463719,0.097563867,0.066487625,0.128640109,4.223793285,152348,36069,3.81527037,4.6323162,0.19137058,4422,23107,0.159154479,0.223586682,7.025648429,73,103905,,,134.9488416,696,515751,124.9230052,144.974678,,,,,,,124.6211799,90.54994012,167.2981173,66.25533148,37.87064663,107.5945074,144.3899125,133.1057949,155.67403,,,,6.4,,,,,0,,,,,0.123877195,4620,37295,0.106222915,0.141531476,0.102509155,0.086337697,0.118680613,0.02544577,0.017211621,0.03367992,0.003753854,0.00140454,0.006103169,0.775433339,38294,49384,0.757895395,0.792971283,,,,0.773694391,0.536363846,1,0.749525617,0.681131743,0.817919491,0.756061356,0.662071049,0.850051663,0.765519771,0.744747285,0.786292257,0.474,,49384,0.438936997,0.509063004,74.19067818,,,73.6234362,74.75792015,,,,,,,70.53079155,68.27085813,72.79072497,89.27818974,78.68029732,99.87608216,73.99774492,73.38856266,74.60692717,,,,511.3807443,1929,291113,487.3424305,535.4190582,,,,,,,699.5586631,585.7760802,813.3412461,227.7040746,147.3580711,336.1361328,519.2020589,493.032072,545.3720458,,,,54.17064739,55,101531,40.80874508,70.51054355,,,,,,,,,,,,,49.74045685,35.37032725,67.99684195,,,,6.018808777,48,7975,4.437794461,7.980067233,,,,,,,,,,,,,4.426805068,2.96470083,6.357630505,,,,,,,0.106,,,0.09,0.123,0.174,,,0.15,0.197,0.095,,,0.081,0.11,175.2,154,87882,,,0.11,11370,,,,0.065409238,6613.397202,101108,,,83.82256697,260,310179,73.63359532,94.01153862,,,,,,,78.4893116,45.72291643,125.6689913,,,,90.05625642,78.54199647,101.5705164,,,,0.365,,,0.349,0.381,0.073346555,4660,63534,0.061431661,0.085261448,0.044806853,1088,24282,0.03170047,0.057913236,0.000609861,64,104942,,,1639.71875,0.92,1042.36,1133,,,0.107502374,566,5265,0.053955417,0.161049332,,,,,,,,,,,,,,,,,,,,,0.092689253,,,,,2664.174,,,,,0.784900326,54965,70028,0.734304898,0.835495754,84513,,,76708.74468,92317.25532,,,,97361,66721.85106,128000.1489,68053,54211.46809,81894.53192,62061,39437,84685,91593,86377.85106,96808.14894,,,,,,0.357036536,5277,14780,,,49.58331451,,,,,0.226793511,,84513,,,4.513888889,26,5760,,,4.439905874,32,720736,3.036892331,6.267822348,,,,,,,,,,,,,3.438204013,2.128302474,5.255660059,,,,16.72170841,94,515751,13.39340295,20.62616555,18.2258493,,,,,,,,,,,,,18.08736208,14.31993489,22.54224986,,,,12.6029809,65,515751,9.726714583,16.06353372,,,,,,,,,,,,,13.31417317,10.11000989,17.21165627,,,,15.81716468,114,720736,12.9135948,18.72073455,,,,,,,24.5594646,12.69023374,42.90044217,,,,15.71750406,12.73122875,19.19376261,,,,19.09090909,,11000,,,58,152,0.609072826,47462,77925,,,0.66,,,,,40.26194454,,,,,0.75143627,29560,39338,0.735592094,0.767280447,0.11983772,4608,38452,0.104069313,0.135606126,0.894275256,35179,39338,0.876604792,0.91194572,104942,,,,,0.219635608,23049,104942,,,0.173190906,18175,104942,,,0.077366545,8119,104942,,,0.004488194,471,104942,,,0.015046407,1579,104942,,,0.00092432,97,104942,,,0.052057327,5463,104942,,,0.828057403,86898,104942,,,0.009393837,921,98043,0.006171337,0.012616338,0.501362658,52614,104942,,,0.483480357,50149,103725,, -24,017,24017,MD,Charles County,2024,1,8384.849391,2205,470977,7873.768179,8895.930602,0,,,,2,4121.351664,2442.574194,6513.51245,1,9242.074266,8471.042635,10013.1059,,4389.993111,3136.27544,5977.924623,,8833.100969,7928.187133,9738.014805,,,,,2,,0.146,,,0.126,0.167,3.000810692,,,2.469595942,3.616903108,4.526403551,,,3.859804751,5.250218154,0.09968071,1280,12841,0.094499151,0.10486227,0,,,,0.118025751,0.088731699,0.147319803,0.126272578,0.117930199,0.134614957,0.067031464,0.054212432,0.079850496,0.070619426,0.06282394,0.078414913,,,,0.090425532,0.066756462,0.114094602,0.127,,,0.103,0.152,0.416,,,0.369,0.463,9,0.051839236,0.061,,,0.214,,,0.182,0.248,0.722267236,120342,166617,,,0.166246298,,,0.138902583,0.194423625,0.344537815,41,119,0.298456284,0.390594414,,,,,,11.36065488,433,38114,10.29057674,12.43073301,,,,,,,9.847295562,8.505804226,11.1887869,30.43322592,24.30897995,37.63115515,10.01133359,8.105455697,11.91721147,,,,10.94736842,7.151184512,16.04043119,0.052343832,7487,143035,0.045194896,0.059492768,0.000379376,64,168698,,,2635.90625,0.000629034,107,170102,,,1589.738318,0.001992922,339,170102,,,501.7758112,2397,,,,,,555,2922,738,2131,0.34,,,,,,0.27,0.37,0.21,0.33,0.43,,,,,,0.45,0.38,0.39,0.46,0.944446911,106357,112613,0.937973608,0.950920215,0.709135619,30568,43106,0.671170749,0.747100489,0.033230883,2876,86546,,,0.1,3979,,0.067829787,0.132170213,,,,0.072800809,0,0.168150949,0.057759894,0.035373645,0.080146143,0.031257572,0,0.081273724,0.089700688,0.05632672,0.123074655,3.479556356,195137,56081,3.287474272,3.67163844,0.238507628,9474,39722,0.204081089,0.272934168,5.749919975,97,168698,,,76.07687923,622,817594,70.09808554,82.05567293,,,,,,,66.14469151,58.16567979,74.12370324,46.16094784,29.57619029,68.68383135,105.3547106,93.82927062,116.8801506,,,,8.2,,,,,0,,,,,0.138961492,7975,57390,0.124887721,0.153035262,0.118365554,0.103984562,0.132746545,0.017860254,0.01150717,0.024213339,0.00627287,0.00319169,0.00935405,0.757734755,64265,84812,0.741690469,0.77377904,,,,0.691096901,0.577496253,0.804697549,0.612392846,0.567229402,0.65755629,0.699239651,0.66111117,0.737368131,0.776895435,0.739995991,0.813794879,0.681,,84812,0.645957247,0.716042753,77.03648661,,,76.56388517,77.50908806,,,,87.06149785,81.94445466,92.17854105,75.58598964,74.88807243,76.28390684,84.16809175,79.76331624,88.57286725,76.80402718,76.05807626,77.54997811,,,,398.2468768,2205,470977,381.2283604,415.2653932,,,,210.7524383,149.865586,288.1055211,436.3191849,410.0827906,462.5555792,205.5676885,146.8605705,279.9248464,414.1866077,386.0148245,442.3583909,,,,56.10309088,97,172896,45.4958273,68.44101306,,,,,,,69.6879777,53.42937291,89.33684232,,,,49.23278904,31.54437691,73.25448756,,,,7.148407148,92,12870,5.762625079,8.766886791,,,,,,,10.48078523,8.05372314,13.40947717,,,,,,,,,,,,,0.092,,,0.079,0.105,0.141,,,0.122,0.16,0.112,,,0.097,0.127,480.2,676,140764,,,0.061,10120,,,,0.051839236,7597.091842,146551,,,30.41956845,151,496391,25.56757008,35.27156681,,,,,,,25.02734843,19.18832454,32.08393118,,,,47.73698606,38.13060896,59.02752252,,,,0.404,,,0.392,0.417,0.05956872,6174,103645,0.050036805,0.069100635,0.034942806,1451,41525,0.024219401,0.04566621,0.000934733,159,170102,,,1069.823899,0.94,2078.34,2211,,,0.102425876,912,8904,0.065150884,0.139700868,,,,,,,,,,,,,,,,,,,,,0.096040478,,,,,-329.1035,,,,,0.90508091,69579,76876,0.843048141,0.967113679,112932,,,105588.8511,120275.1489,81969,9516.914894,154421.0851,130167,103866.0638,156467.9362,115418,110461.4043,120374.5957,115758,90984.55319,140531.4468,118824,115545.0213,122102.9787,,,,,,0.403832558,10853,26875,,,40.12037622,,,,,0.198411433,,112932,,,6.325176275,61,9644,,,7.601087839,86,1131417,6.079889134,9.387281646,,,,,,,12.98368878,10.12142237,16.40410968,,,,2.740057587,1.415827739,4.786329179,,,,10.58975752,84,817594,8.397019105,13.1798699,10.274048,,,,,,,6.885093123,4.455669245,10.16375566,,,,14.2742192,10.37166952,19.16247301,,,,13.82104076,113,817594,11.27269943,16.36938209,,,,,,,16.2856248,12.5689014,20.75736569,,,,13.78472849,9.934819808,18.63294838,,,,14.58348248,165,1131417,12.35825024,16.80871472,,,,,,,16.13687034,12.92497163,19.90476994,,,,15.07031673,11.65538187,19.17313795,,,,14.19354839,,18600,,,64,200,0.750255679,89498,119290,,,0.733,,,,,42.8150286,,,,,0.797990035,47245,59205,0.78253714,0.813442929,0.123593764,7174,58045,0.109223759,0.137963768,0.912980323,54053,59205,0.900306905,0.92565374,170102,,,,,0.236393458,40211,170102,,,0.138910771,23629,170102,,,0.519364852,88345,170102,,,0.007683625,1307,170102,,,0.035137741,5977,170102,,,0.001440312,245,170102,,,0.074978542,12754,170102,,,0.329149569,55989,170102,,,0.010371189,1632,157359,0.007238844,0.013503535,0.515614161,87707,170102,,,0.284148676,47344,166617,, -24,019,24019,MD,Dorchester County,2024,1,11269.94766,616,87230,9831.015497,12708.87983,0,,,,2,,,,2,18254.49107,14873.51427,21635.46787,,,,,2,9240.080397,7570.849582,10909.31121,,,,,2,,0.175,,,0.151,0.2,3.941021269,,,3.213583498,4.754272292,5.066694375,,,4.23661143,5.984459039,0.102245389,255,2494,0.090354659,0.114136119,0,,,,,,,0.16745283,0.142321885,0.192583775,0.051282051,0.025116734,0.077447368,0.069803922,0.055816807,0.083791037,,,,,,,0.188,,,0.154,0.222,0.386,,,0.328,0.446,7.7,0.049893125,0.126,,,0.263,,,0.222,0.305,0.664873505,21629,32531,,,0.133022829,,,0.107268287,0.161775102,0.3,6,20,0.18023908,0.422795722,,,,,,26.57463331,154,5795,22.37740115,30.77186546,,,,,,,39.8063475,31.25654451,49.97322405,27.93296089,15.63386617,46.07117108,17.87455314,13.46555963,23.26618784,,,,39.0625,18.73198709,71.83732829,0.085559989,2123,24813,0.072453606,0.098666372,0.000338576,11,32489,,,2953.545455,0.000672248,22,32726,,,1487.545455,0.00271955,89,32726,,,367.7078652,1150,,,,,,,1795,,899,0.43,,,,,,,0.45,0.25,0.43,0.51,,,,,,0.45,0.43,0.44,0.54,0.877609637,20472,23327,0.858279606,0.896939668,0.517820565,3792,7323,0.449451685,0.586189446,0.035975724,575,15983,,,0.226,1523,,0.139021277,0.312978723,,,,0.114864865,0,0.548628012,0.40860735,0.268708781,0.54850592,0.1053316,0,0.240887379,0.158878505,0.099539778,0.218217232,4.738301422,119282,25174,4.096807683,5.379795161,0.379587659,2596,6839,0.294568203,0.464607115,9.849487519,32,32489,,,100.9779905,162,160431,85.42817333,116.5278077,,,,,,,131.2978458,99.95000362,169.364655,,,,101.9174469,82.13843819,121.6964556,,,,5.9,,,,,0,,,,,0.151470041,2035,13435,0.127801391,0.175138691,0.135309768,0.110586735,0.160032801,0.005954596,0.001601127,0.010308066,0.015630815,0.004708236,0.026553394,0.804168653,11806,14681,0.773951688,0.834385619,,,,,,,0.678222222,0.637225436,0.719219009,0.632632633,0.459064543,0.806200722,0.821900826,0.78737985,0.856421803,0.39,,14681,0.345101241,0.434898759,74.79550799,,,73.74222149,75.84879448,,,,,,,68.83210854,66.70528065,70.95893644,,,,76.55219021,75.30563763,77.79874279,,,,499.5797797,616,87230,455.9356488,543.2239105,,,,,,,778.4082484,672.7062339,884.1102629,,,,428.9925365,378.2569092,479.7281638,,,,95.62514941,28,29281,63.54221733,138.2049655,,,,,,,154.7388781,88.44663882,251.2862437,,,,80.34475203,40.10781073,143.7589549,,,,9.504950495,24,2525,6.090001131,14.14261291,,,,,,,,,,,,,,,,,,,,,,0.118,,,0.102,0.135,0.172,,,0.15,0.196,0.111,,,0.095,0.127,534.3,148,27699,,,0.126,4090,,,,0.049893125,1627.413955,32618,,,55.05292352,53,96271,41.23841752,72.01057944,,,,,,,81.52677413,51.0923953,123.4325158,,,,50.12698837,33.82046856,71.55939279,,,,0.359,,,0.346,0.371,0.098937985,1798,18173,0.082257134,0.115618836,0.049476552,345,6973,0.032795701,0.066157404,0.000763919,25,32726,,,1309.04,0.8,252.8,316,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.149520874,,,,,-451.9414,,,,,0.871490056,45965,52743,0.775028518,0.967951593,54206,,,48351.02128,60060.97872,,,,36379,35628.3617,37129.6383,37098,30961.82979,43234.17021,58424,38035.23404,78812.76596,66747,62700.70213,70793.29787,,,,,,1,4573,4573,,,44.61439405,,,,,0.298915249,,54206,,,8.690614137,15,1726,,,8.44170558,19,225073,5.082458209,13.18276896,,,,,,,27.02659735,15.74398892,43.27220047,,,,,,,,,,14.07526267,26,160431,8.820892178,21.31011683,16.20634416,,,,,,,,,,,,,20.62953059,12.42032503,32.21556744,,,,15.58302323,25,160431,10.084511,23.00361632,,,,,,,,,,,,,16.98624115,9.895111429,27.19661756,,,,12.88470852,29,225073,8.629091511,18.50459071,,,,,,,15.89799844,7.623708202,29.23698517,,,,12.03505741,7.01086445,19.26929278,,,,73.66666667,,3000,,,75,146,0.650794297,15977,24550,,,0.61,,,,,20.22782404,,,,,0.684473366,9046,13216,0.661170923,0.707775808,0.145351134,1840,12659,0.118226187,0.17247608,0.857142857,11328,13216,0.850184175,0.864101539,32726,,,,,0.20861089,6827,32726,,,0.231008984,7560,32726,,,0.280816476,9190,32726,,,0.006264133,205,32726,,,0.010939314,358,32726,,,0.000488908,16,32726,,,0.064108049,2098,32726,,,0.618101815,20228,32726,,,0.016523292,509,30805,0.00913054,0.023916043,0.527317729,17257,32726,,,0.539577634,17553,32531,, -24,021,24021,MD,Frederick County,2024,1,5768.02877,2722,755568,5440.333912,6095.723628,0,,,,2,2416.584976,1548.351592,3595.686889,1,8115.04542,6946.316213,9283.774626,,3876.889802,3073.867764,4679.91184,,5996.342203,5591.380121,6401.304285,,,,,2,,0.115,,,0.096,0.137,2.711946205,,,2.207853745,3.267974684,4.584937183,,,3.912978117,5.249731032,0.06768696,1402,20713,0.064265843,0.071108077,0,,,,0.086267606,0.069940835,0.102594376,0.117144079,0.104111029,0.130177128,0.069478908,0.061203834,0.077753982,0.057410392,0.053415941,0.061404843,,,,0.055662188,0.03597512,0.075349256,0.122,,,0.096,0.151,0.332,,,0.293,0.371,8.7,0.031136978,0.088,,,0.18,,,0.15,0.213,0.902196035,245142,271717,,,0.172399326,,,0.148281054,0.198292147,0.309734513,35,113,0.261777168,0.358291941,,,,,,8.635749366,524,60678,7.896330619,9.375168112,,,,,,,10.97200732,8.672916473,13.69356169,25.88015855,22.47571202,29.28460507,4.841228527,4.145475374,5.53698168,,,,11.27320955,7.807025326,15.7531804,0.060886041,14300,234865,0.053737105,0.068034977,0.000561045,157,279835,,,1782.388535,0.000665322,191,287079,,,1503.031414,0.00290164,833,287079,,,344.6326531,2124,,,,,,891,2726,1614,2082,0.43,,,,,,0.38,0.41,0.39,0.43,0.53,,,,,,0.5,0.41,0.42,0.55,0.932692977,174200,186771,0.92690614,0.938479814,0.75140348,54074,71964,0.723572022,0.779234937,0.029505183,4013,136010,,,0.061,3973,,0.038361702,0.083638298,,,,0.028833967,0,0.066548381,0.119579311,0.081177988,0.157980634,0.170102061,0.116802158,0.223401964,0.042837365,0.033181788,0.052492941,3.720164985,203839,54793,3.557685105,3.882644864,0.18080672,11408,63095,0.159153259,0.202460182,9.505601515,266,279835,,,67.29090475,883,1312213,62.85244703,71.72936247,,,,22.94174327,12.84031955,37.83891665,58.64432597,46.28118496,73.29534539,32.57918552,23.76348148,43.59351348,78.65187699,72.97725441,84.32649957,,,,8.5,,,,,0,,,,,0.119989396,11315,94300,0.109672733,0.130306058,0.104364023,0.094972227,0.11375582,0.013573701,0.009949621,0.017197781,0.00747614,0.004586032,0.010366248,0.719258027,102910,143078,0.707516229,0.730999825,,,,0.573944832,0.498833916,0.649055748,0.689569307,0.643078599,0.736060016,0.67817846,0.618938542,0.737418377,0.708549687,0.694539987,0.722559386,0.487,,143078,0.468930169,0.505069831,79.94702399,,,79.6085492,80.28549878,,,,88.79262127,85.38457663,92.20066591,76.5967747,75.39614238,77.79740701,84.77963242,82.6638516,86.89541323,79.64583353,79.26037495,80.03129211,,,,289.7777642,2722,755568,278.628425,300.9271034,,,,127.1993437,93.12590635,169.6660992,419.7583142,373.5336678,465.9829606,180.4202009,144.8062647,216.0341371,298.9865911,285.8730717,312.1001106,,,,38.98535107,106,271897,31.56363069,46.40707146,,,,,,,57.10659899,33.84498979,90.25304653,42.16444132,24.98932017,66.63799547,36.16941755,27.60107601,46.55721002,,,,4.255111024,87,20446,3.408169497,5.248663728,,,,,,,9.843400447,6.168806654,14.90302657,,,,3.261529126,2.360384801,4.393258329,,,,,,,0.08,,,0.068,0.093,0.144,,,0.125,0.164,0.084,,,0.072,0.096,222.8,522,234277,,,0.088,23650,,,,0.031136978,7266.903706,233385,,,24.8588329,200,804543,21.41357444,28.30409137,,,,,,,25.21946943,15.61124907,38.55063797,,,,28.73770934,24.32592356,33.14949513,,,,0.313,,,0.3,0.325,0.069579877,11845,170236,0.060047963,0.079111792,0.039246677,2657,67700,0.028523272,0.049970081,0.001215693,349,287079,,,822.5759312,0.94,3026.8,3220,,,0.036621507,519,14172,0.022038841,0.051204174,,,,,,,,,,,,,,,,,,,,,0.113350936,,,,,3527.551,,,,,0.79205166,68320,86257,0.757137612,0.826965707,116796,,,109431.4043,124160.5957,93516,42931.31915,144100.6809,136732,125254.383,148209.617,97762,83273.48936,112250.5106,91336,80066.89362,102605.1064,118967,115842.9149,122091.0851,,,,,,0.278151261,12578,45220,,,40.62380132,,,,,0.201462379,,116796,,,5.872590323,92,15666,,,2.326707388,42,1805126,1.676886031,3.145032468,,,,,,,8.535870573,4.777461963,14.07862042,,,,1.683809635,1.055234533,2.549308022,,,,12.19399747,163,1312213,10.28720071,14.10079424,12.42176385,,,,,,,,,,7.431013649,3.70953524,13.29613608,13.97554665,11.54531186,16.40578143,,,,6.858642614,90,1312213,5.515158601,8.430436201,,,,,,,,,,,,,8.099651289,6.381603974,10.13792139,,,,7.534100113,136,1805126,6.267854353,8.800345872,,,,,,,6.828696459,3.528487107,11.92835847,,,,8.801732181,7.193031295,10.41043307,,,,4.561403509,,28500,,,52,78,0.784774993,145615,185550,,,0.76,,,,,82.38019008,,,,,0.764212992,76338,99891,0.754614041,0.773811943,0.105032313,10369,98722,0.095153198,0.114911428,0.91843109,91743,99891,0.909130482,0.927731698,287079,,,,,0.230027275,66036,287079,,,0.155197698,44554,287079,,,0.111979629,32147,287079,,,0.005514162,1583,287079,,,0.0634355,18211,287079,,,0.001051975,302,287079,,,0.119106587,34193,287079,,,0.675514405,193926,287079,,,0.017175469,4430,257926,0.014166312,0.020184626,0.504080758,144711,287079,,,0.27541155,74834,271717,, -24,023,24023,MD,Garrett County,2024,1,8793.233384,484,78046,7408.723953,10177.74282,0,,,,2,,,,2,,,,2,,,,2,8977.80809,7540.691627,10414.92455,,,,,2,,0.155,,,0.129,0.187,3.75912856,,,3.011303412,4.614605102,5.357177515,,,4.471444054,6.345234753,0.079197466,150,1894,0.067035466,0.091359465,0,,,,,,,,,,,,,0.08012994,0.067748155,0.092511726,,,,,,,0.168,,,0.133,0.211,0.44,,,0.376,0.507,7.8,0.041647706,0.124,,,0.248,,,0.203,0.303,0.578698882,16670,28806,,,0.148947699,,,0.119938175,0.180918295,0.28125,9,32,0.188019808,0.378196141,,,,,,18.61217884,92,4943,15.00404304,22.82618511,,,,,,,,,,,,,18.46349745,14.78850457,22.7746559,,,,,,,0.074260139,1626,21896,0.063536735,0.084983543,0.000487771,14,28702,,,2050.142857,0.00048987,14,28579,,,2041.357143,0.002274397,65,28579,,,439.6769231,2133,,,,,,,,,2146,0.46,,,,,,,,,0.46,0.37,,,,,,,,,0.37,0.905130597,19406,21440,0.885879424,0.92438177,0.555677197,3553,6394,0.484589627,0.626764768,0.034505773,517,14983,,,0.198,978,,0.134851064,0.261148936,,,,,,,,,,0.219298246,0.062818328,0.375778164,0.147631134,0.102599002,0.192663265,4.313069495,126856,29412,3.809183801,4.81695519,0.20233463,1040,5140,0.138486258,0.266183003,13.23949551,38,28702,,,82.77917276,120,144964,67.96809949,97.59024603,,,,,,,,,,,,,84.58720726,69.3249154,99.84949912,,,,5.6,,,,,0,,,,,0.114947038,1465,12745,0.093446369,0.136447708,0.09976247,0.078234562,0.121290379,0.009258533,0.001640632,0.016876434,0.011769321,0.004544152,0.018994491,0.779266732,10351,13283,0.756110945,0.802422519,,,,,,,,,,,,,0.790849673,0.765077929,0.816621418,0.309,,13283,0.269789318,0.348210682,76.65897374,,,75.59259849,77.72534898,,,,,,,,,,,,,76.4446325,75.3553883,77.53387669,,,,401.7643035,484,78046,362.0196807,441.5089263,,,,,,,,,,,,,407.7426754,366.9569817,448.5283691,,,,59.85463874,14,23390,32.72308797,100.4259133,,,,,,,,,,,,,60.28566129,32.09957564,103.0903168,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.109,,,0.092,0.128,0.168,,,0.143,0.196,0.097,,,0.082,0.114,55.8,14,25111,,,0.124,3600,,,,0.041647706,1253.471004,30097,,,26.56870899,23,86568,16.84228241,39.8661086,,,,,,,,,,,,,27.63327046,17.51712306,41.4634735,,,,0.346,,,0.327,0.362,0.082579724,1388,16808,0.068281852,0.096877596,0.048320896,259,5360,0.032831534,0.063810257,0.001784527,51,28579,,,560.372549,0.92,253,275,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.047428011,,,,,7846.214,,,,,0.803127598,45400,56529,0.716201869,0.890053328,59080,,,52369.53192,65790.46809,,,,202865,10792.14894,394937.8511,,,,,,,64693,58460.31915,70925.68085,,,,,,0.474014849,1660,3502,,,73.08031453,,,,,0.255501016,,59080,,,9.665427509,13,1345,,,,,,,,,,,,,,,,,,,,,,,,,,15.33321978,25,144964,9.609247203,23.21467902,17.24566099,,,,,,,,,,,,,14.98817011,9.155163686,23.14801312,,,,13.79652879,20,144964,8.427278211,21.30761976,,,,,,,,,,,,,14.33681479,8.757298934,22.14204766,,,,19.62236754,40,203849,14.01850705,26.72009525,,,,,,,,,,,,,19.8718014,14.13079339,27.16540669,,,,21.2,,2500,,,8,45,0.66036379,15611,23640,,,0.516,,,,,12.44578002,,,,,0.801494216,9977,12448,0.782547346,0.820441086,0.089926539,1065,11843,0.07032169,0.109531388,0.827281491,10298,12448,0.797004976,0.857558006,28579,,,,,0.175933378,5028,28579,,,0.241401029,6899,28579,,,0.009832394,281,28579,,,0.002624305,75,28579,,,0.004723748,135,28579,,,3.49907E-05,1,28579,,,0.013506421,386,28579,,,0.959410756,27419,28579,,,0.003023019,83,27456,0,0.00726033,0.500927254,14316,28579,,,0.842116226,24258,28806,, -24,025,24025,MD,Harford County,2024,1,7280.291395,3310,723201,6893.764521,7666.818269,0,,,,2,2444.640815,1513.271195,3736.893169,1,10440.35168,9266.883961,11613.81939,,4942.931537,3691.617696,6481.997086,,7108.479994,6659.662664,7557.297325,,,,,2,,0.126,,,0.107,0.148,3.16689352,,,2.566038294,3.85776524,4.981079968,,,4.255919712,5.733714721,0.074893203,1385,18493,0.071099446,0.07868696,0,,,,0.091917591,0.069375026,0.114460157,0.124183007,0.112779498,0.135586515,0.075514874,0.061212078,0.08981767,0.060832025,0.056681442,0.064982608,,,,0.096078431,0.070501449,0.121655414,0.135,,,0.109,0.168,0.322,,,0.278,0.369,8.6,0.046620522,0.086,,,0.213,,,0.179,0.251,0.937161779,244528,260924,,,0.16061652,,,0.134184151,0.189431543,0.302325581,26,86,0.246901221,0.358688212,,,,,,9.005628518,480,53300,8.199972824,9.811284212,,,,,,,14.95726496,12.47959052,17.4349394,18.26869028,14.09938947,23.28494542,6.357064499,5.528247844,7.185881154,,,,15.60283688,11.33704516,20.94608024,0.05124932,11121,216998,0.045291874,0.057206767,0.000539971,142,262977,,,1851.950704,0.000655633,173,263867,,,1525.242775,0.002580846,681,263867,,,387.4698972,2243,,,,,,1563,3178,2178,2124,0.48,,,,,,0.36,0.45,0.42,0.49,0.53,,,,,,0.52,0.42,0.43,0.54,0.941696006,171448,182063,0.936387519,0.947004494,0.740107586,48705,65808,0.710384987,0.769830184,0.029675288,4150,139847,,,0.082,4741,,0.052212766,0.111787234,,,,0.02045728,0,0.06584306,0.209934291,0.152156965,0.267711618,0.082110743,0.038971396,0.12525009,0.069164188,0.05208728,0.086241095,4.112847751,188936,45938,3.856037725,4.369657777,0.194466035,11259,57897,0.169417383,0.219514686,6.882731189,181,262977,,,87.01834565,1115,1281339,81.91059768,92.12609363,,,,38.5475291,21.57475942,63.57828713,92.54290377,78.59028135,106.4955262,56.67649059,39.47725233,78.82327844,92.36405166,86.28896379,98.43913953,,,,7,,,,,0,,,,,0.120563647,11465,95095,0.111738542,0.129388752,0.104543286,0.095063222,0.11402335,0.01472212,0.011079655,0.018364586,0.007203323,0.004750388,0.009656258,0.781090062,105305,134818,0.76756215,0.794617974,,,,0.748800959,0.675560188,0.822041731,0.716959841,0.681580236,0.752339445,0.595705968,0.532904966,0.65850697,0.749641042,0.728833365,0.770448719,0.53,,134818,0.507677454,0.552322546,78.05639197,,,77.71170404,78.40107991,,,,85.69083097,82.98175932,88.39990262,74.37489521,73.3623943,75.38739612,84.13875383,80.94754823,87.32995942,78.23085287,77.84298606,78.61871968,,,,349.8174935,3310,723201,337.3861726,362.2488145,,,,152.7657721,110.1001314,206.4949446,505.1853228,463.605231,546.7654146,205.0681339,156.48859,263.9633377,341.4072849,327.3954782,355.4190916,,,,40.57150131,102,251408,32.69783393,48.44516868,,,,,,,78.49837231,54.36240479,109.6936072,,,,34.70040982,26.34947601,44.85832645,,,,4.522937756,84,18572,3.607672288,5.599704704,,,,,,,10.08509297,6.898196127,14.23714216,,,,3.076686409,2.198029878,4.189573645,,,,,,,0.091,,,0.078,0.105,0.154,,,0.134,0.176,0.093,,,0.08,0.106,238.6,530,222141,,,0.086,22370,,,,0.046620522,11413.91579,244826,,,41.40744018,321,775223,36.87760982,45.93727054,,,,,,,53.16603754,40.57128764,68.43522906,,,,42.75360939,37.42172923,48.08548955,,,,0.328,,,0.313,0.342,0.056230946,8927,158756,0.04789052,0.064571371,0.038822895,2376,61201,0.028099491,0.049546299,0.00106872,282,263867,,,935.6985816,0.89,2428.81,2729,,,0.074854993,955,12758,0.050666714,0.099043272,,,,,,,,,,,,,,,,,,,,,0.138809601,,,,,2822.16,,,,,0.751255803,63113,84010,0.71098664,0.791524966,100334,,,93086.17021,107581.8298,,,,123646,103708.8085,143583.1915,92704,86615.48936,98792.51064,102462,83094.34043,121829.6596,108889,105233.5106,112544.4894,,,,,,0.35564346,13486,37920,,,52.25575536,,,,,0.234516714,,100334,,,5.354286906,77,14381,,,4.319385458,77,1782661,3.408791456,5.398490711,,,,,,,16.88482938,12.16909985,22.82338419,,,,2.153538375,1.442258448,3.092840334,,,,12.3729727,169,1281339,10.44491888,14.30102652,13.18932773,,,,,,,9.342421186,5.536910886,14.76505323,,,,13.51383513,11.16006775,15.86760252,,,,9.911506635,127,1281339,8.187678809,11.63533446,,,,,,,20.26087242,14.26552397,27.92694375,,,,8.841153594,7.061999474,10.93222333,,,,8.021715851,143,1782661,6.706929076,9.336502625,,,,,,,8.844434439,5.542759975,13.39058003,,,,8.465633612,6.911590316,10.01967691,,,,8.917910448,,26800,,,106,133,0.763805989,148186,194010,,,0.76,,,,,62.64217939,,,,,0.799528445,79011,98822,0.788009919,0.811046971,0.104043194,10059,96681,0.094096585,0.113989802,0.925917306,91501,98822,0.920382024,0.931452588,263867,,,,,0.220391334,58154,263867,,,0.175376231,46276,263867,,,0.153205971,40426,263867,,,0.003736731,986,263867,,,0.032482273,8571,263867,,,0.001000504,264,263867,,,0.053147987,14024,263867,,,0.731766382,193089,263867,,,0.008687267,2144,246798,0.006372629,0.011001904,0.50688036,133749,263867,,,0.209286995,54608,260924,, -24,027,24027,MD,Howard County,2024,1,4432.572804,2336,931086,4155.719699,4709.42591,0,,,,2,2441.213363,2005.09879,2877.327936,,7590.080893,6782.866759,8397.295027,,3421.067763,2661.79492,4329.580207,,4039.271857,3659.714615,4418.829099,,,,,2,,0.097,,,0.083,0.112,2.419799856,,,1.953638215,2.935653088,3.973838092,,,3.381576921,4.583359202,0.084678273,1999,23607,0.0811268,0.088229747,0,,,,0.100490196,0.092398881,0.108581511,0.118316927,0.109522067,0.127111788,0.0761352,0.066530289,0.085740111,0.059747102,0.054978361,0.064515843,,,,0.08438061,0.061296811,0.10746441,0.081,,,0.064,0.1,0.275,,,0.237,0.313,9.1,0.018904111,0.075,,,0.163,,,0.137,0.189,0.980756326,325922,332317,,,0.135645045,,,0.113649928,0.159563944,0.286885246,35,122,0.240626886,0.334160355,,,,,,5.162726456,385,74573,4.647017324,5.678435588,,,,0.925596298,0.492841046,1.582797858,7.929356641,6.5766393,9.282073982,25.91463415,22.0190132,29.8102551,1.452814442,1.067473406,1.931935221,,,,4.170141785,2.547230939,6.440445768,0.044544415,12585,282527,0.038586968,0.050501862,0.001835416,614,334529,,,544.8355049,0.000897407,301,335411,,,1114.322259,0.003980192,1335,335411,,,251.2441948,1593,,,,,,1161,2572,,1485,0.49,,,,,,0.39,0.46,0.39,0.52,0.59,,,,,,0.61,0.48,0.46,0.61,0.952258763,214502,225256,0.947221084,0.957296443,0.855902639,74829,87427,0.828943539,0.882861739,0.026299218,4928,187382,,,0.062,4856,,0.040553192,0.083446809,,,,0.04670981,0.025440773,0.067978847,0.18982342,0.147583037,0.232063803,0.045256203,0.007311022,0.083201383,0.015277593,0.00794966,0.022605526,,,,,,0.184059265,14634,79507,0.162473259,0.205645271,8.698797414,291,334529,,,47.28282972,772,1632728,43.94740701,50.61825242,,,,22.80321145,17.84210857,28.71687091,60.55775892,52.0140349,69.10148295,24.34560688,16.30463502,34.96435252,57.16270651,51.98923058,62.33618245,,,,7.4,,,,,0,,,,,0.12541325,14605,116455,0.116228422,0.134598078,0.107366149,0.098235125,0.116497172,0.0167876,0.012608896,0.020966305,0.008629943,0.005802008,0.011457878,0.705259701,122395,173546,0.69384806,0.716671342,,,,0.560873296,0.51989173,0.601854862,0.695956595,0.668746597,0.723166593,0.698881234,0.643537733,0.754224734,0.745507942,0.73624125,0.754774634,0.461,,173546,0.441861847,0.480138153,82.5293526,,,82.20191648,82.85678872,,,,88.53469667,87.26535431,89.80403903,78.57868707,77.74846147,79.40891268,90.12987638,85.53881503,94.72093774,82.41741176,82.01761342,82.81721011,,,,208.0697599,2336,931086,199.4339922,216.7055276,,,,120.9736829,105.2101941,136.7371716,334.8377393,308.7679726,360.9075059,175.4938965,138.4970387,219.3372597,199.5003369,188.0180018,210.9826719,,,,37.14945601,129,347246,30.73863465,43.56027736,,,,22.23024981,12.70650854,36.10053297,76.7358171,58.26872312,99.19883804,33.40478245,17.26073855,58.35143236,22.30745429,15.1568329,31.66365073,,,,5.496106924,132,24017,4.558492502,6.433721346,,,,4.245108896,2.691034891,6.369747674,10.3374293,7.743443911,13.52161204,,,,3.336703741,2.296833324,4.685972626,,,,,,,0.07,,,0.061,0.08,0.12,,,0.104,0.136,0.082,,,0.071,0.093,255.4,713,279161,,,0.075,24650,,,,0.018904111,5427.086681,287085,,,14.66989202,145,988419,12.2820863,17.05769774,,,,,,,22.97676794,16.7594122,30.74472326,,,,16.79340224,13.35629117,20.84504014,,,,0.324,,,0.313,0.335,0.049486755,10071,203509,0.042337819,0.056635691,0.033186533,2758,83106,0.023654618,0.042718448,0.001311823,440,335411,,,762.2977273,0.94,4246.92,4518,,,0.037647328,658,17478,0.022871708,0.052422949,,,,,,,,,,,,,,,,,,,,,0.090504332,,,,,5355.669,,,,,0.782202507,84815,108431,0.752725675,0.811679339,133068,,,125930.9787,140205.0213,,,,168130,157939.1915,178320.8085,112037,105683.9787,118390.0213,109466,99558.76596,119373.234,152771,147798.9149,157743.0851,,,,,,0.209280419,11997,57325,,,36.61125319,,,,,0.248527069,,133068,,,7.215463212,137,18987,,,2.960181145,67,2263375,2.294099728,3.759325416,,,,,,,10.35718478,7.554601649,13.85872811,,,,1.293557309,0.723994206,2.133526062,,,,7.50695437,126,1632728,6.175439309,8.838469431,7.717145783,,,,7.068956368,4.317902196,10.91742978,5.855136821,3.470125159,9.253640479,,,,9.172005658,7.226497249,11.48013279,,,,5.328505422,87,1632728,4.267914407,6.572691752,,,,,,,10.66820624,7.388042944,14.90774891,,,,5.606576758,4.104718837,7.478387708,,,,6.317998564,143,2263375,5.282456904,7.353540225,,,,3.268622392,1.786986278,5.484192971,8.515907485,5.995984765,11.7380567,7.477147967,3.863551464,13.06107275,6.812735158,5.393706582,8.490700717,,,,3.842105263,,38000,,,77,69,0.8280351,183062,221080,,,0.782,,,,,139.8790339,,,,,0.720800134,85941,119230,0.710667586,0.730932682,0.116601529,13724,117700,0.106723478,0.126479581,0.957888115,114209,119230,0.952421813,0.963354418,335411,,,,,0.235314286,78927,335411,,,0.154297265,51753,335411,,,0.204602711,68626,335411,,,0.00471362,1581,335411,,,0.205330177,68870,335411,,,0.000837778,281,335411,,,0.079001583,26498,335411,,,0.475392876,159452,335411,,,0.035687277,11184,313389,0.031534268,0.039840286,0.506065693,169740,335411,,,0.118775145,39471,332317,, -24,029,24029,MD,Kent County,2024,1,9380.832976,355,50719,7646.689126,11114.97683,0,,,,2,,,,2,12377.24998,8289.238563,17775.7956,,,,,2,9103.500655,7050.923724,11156.07759,,,,,2,,0.144,,,0.12,0.169,3.197406226,,,2.518080224,3.931999069,5.093622621,,,4.207234089,6.002592604,0.084745763,90,1062,0.067995421,0.101496105,0,,,,,,,0.172222222,0.117062599,0.227381846,,,,0.064343164,0.046735726,0.081950601,,,,,,,0.151,,,0.119,0.188,0.347,,,0.289,0.409,8.3,0.003858838,0.12,,,0.215,,,0.175,0.256,0.432232524,8298,19198,,,0.148289739,,,0.119430216,0.181257418,0.291666667,7,24,0.183021186,0.403882272,,,,,,8.681607107,43,4953,6.28292211,11.6940678,,,,,,,,,,,,,6.380806534,4.129321554,9.419329172,,,,,,,0.084510303,1095,12957,0.07140392,0.097616686,0.000726518,14,19270,,,1376.428571,0.000465839,9,19320,,,2146.666667,0.002122153,41,19320,,,471.2195122,1393,,,,,,,1138,,1354,0.42,,,,,,,0.39,,0.43,0.56,,,,,,0.46,0.44,,0.57,0.905358934,12637,13958,0.884653729,0.926064139,0.606966539,2213,3646,0.514085447,0.69984763,0.035956441,350,9734,,,0.185,531,,0.112319149,0.257680851,,,,,,,0.182608696,0.040477207,0.324740185,0.099601594,0,0.287714005,0.034035656,0.004302626,0.063768687,4.63111645,146510,31636,3.942876996,5.319355903,0.414012739,1235,2983,0.308681168,0.51934431,15.04929943,29,19270,,,88.97993813,86,96651,71.1724651,109.8894997,,,,,,,116.0345203,66.32375411,188.4327913,,,,88.96915293,68.94987149,112.9876793,,,,6,,,,,0,,,,,0.137160121,1135,8275,0.110093467,0.164226774,0.128033981,0.099050643,0.157017318,0.007613293,0,0.016128795,0.002416918,0,0.006804523,0.715867968,6528,9119,0.673806238,0.757929698,,,,,,,0.656548135,0.525576585,0.787519686,0.5944334,0.410992735,0.777874065,0.759366357,0.715978513,0.802754201,0.358,,9119,0.302356044,0.413643956,76.38401527,,,75.04375943,77.7242711,,,,,,,71.77512661,68.67824779,74.87200543,,,,76.93599834,75.37528805,78.49670863,,,,439.313447,355,50719,386.9358248,491.6910692,,,,,,,671.5854778,517.2026521,857.5996621,,,,414.2225462,355.6429456,472.8021467,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.098,,,0.083,0.114,0.158,,,0.136,0.183,0.096,,,0.083,0.112,291.2,50,17173,,,0.12,2330,,,,0.003858838,77.93694749,20197,,,36.27945546,21,57884,22.45755474,55.45700148,,,,,,,,,,,,,33.29855484,18.63694837,54.92090233,,,,0.348,,,0.332,0.363,0.090509051,905,9999,0.075019689,0.105998413,0.065573771,204,3111,0.045318451,0.08582909,0.000828157,16,19320,,,1207.5,0.975,143.325,147,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.033742277,,,,,-393.125,,,,,0.864314273,54476,63028,0.734347426,0.99428112,69695,,,59853.29787,79536.70213,,,,,,,34243,19151.59575,49334.40426,85938,52419.02128,119456.9787,79957,68645,91269,,,,,,0.534154535,954,1786,,,20.29710117,,,,,0.232484396,,69695,,,5.305039788,4,754,,,,,,,,,,,,,,,,,,,,,,,,,,15.45677519,14,96651,7.986741294,26.99987565,14.48510621,,,,,,,,,,,,,20.83122434,10.39887214,37.27281453,,,,10.34650443,10,96651,4.961551041,19.02759003,,,,,,,,,,,,,,,,,,,19.82844721,27,136168,13.06707166,28.84934966,,,,,,,,,,,,,16.95937288,10.0511992,26.80312078,,,,,,1400,,,-888,22,0.683380817,10794,15795,,,0.633,,,,,16.96385826,,,,,0.698149254,5847,8375,0.657182622,0.739115885,0.141783567,1132,7984,0.110894763,0.172672371,0.794029851,6650,8375,0.758688001,0.829371701,19320,,,,,0.150828157,2914,19320,,,0.281573499,5440,19320,,,0.136283644,2633,19320,,,0.004658385,90,19320,,,0.014596273,282,19320,,,0.000569358,11,19320,,,0.049741201,961,19320,,,0.778519669,15041,19320,,,0.010711018,199,18579,0.00393563,0.017486406,0.516252588,9974,19320,,,0.696270445,13367,19198,, -24,031,24031,MD,Montgomery County,2024,1,4629.064282,7854,2935068,4472.711742,4785.416821,0,,,,2,2445.415523,2158.361944,2732.469102,,6969.956142,6542.181372,7397.730911,,4735.376702,4405.912962,5064.840443,,4374.65689,4129.912644,4619.401137,,,,,2,,0.114,,,0.098,0.132,2.568268488,,,2.112612473,3.06975687,4.421199995,,,3.883627533,5.024168038,0.073829046,6294,85251,0.072073689,0.075584403,0,,,,0.082032218,0.077143673,0.086920763,0.095768129,0.091486667,0.100049591,0.070683616,0.067532217,0.073835016,0.058198765,0.055440717,0.060956812,,,,0.086486487,0.072985032,0.099987941,0.085,,,0.069,0.105,0.247,,,0.219,0.278,8.8,0.018318878,0.089,,,0.168,,,0.145,0.195,0.998615899,1060591,1062061,,,0.128874096,,,0.112031477,0.147554106,0.236842105,45,190,0.200211692,0.274920549,,,,,,8.925712275,1979,221719,8.532455642,9.318968909,,,,0.808434668,0.517979346,1.202886704,7.829481436,7.012707788,8.646255083,27.66450328,26.23809115,29.09091542,1.208336324,0.972677766,1.443994882,,,,4.716981132,3.512102279,6.201959062,0.073061231,63679,871584,0.067103784,0.079018678,0.00134714,1421,1054827,,,742.3131598,0.001269333,1336,1052521,,,787.8151198,0.004046475,4259,1052521,,,247.1286687,1533,,,,,,1141,2539,1440,1332,0.43,,,,,0.58,0.37,0.4,0.39,0.45,0.56,,,,,0.58,0.56,0.41,0.44,0.6,0.912564293,666046,729862,0.908767715,0.916360871,0.781254306,215459,275786,0.766767772,0.79574084,0.02902089,15869,546813,,,0.097,22673,,0.07793617,0.11606383,0.082634731,0,0.176832321,0.072507846,0.053946421,0.091069272,0.14657335,0.126468966,0.166677733,0.134545922,0.11490677,0.154185074,0.024471707,0.019067107,0.029876306,4.564344572,247602,54247,4.404698699,4.723990446,0.195237623,47260,242064,0.18034859,0.210126656,8.98725573,948,1054827,,,45.77972437,2412,5268708,43.95271576,47.60673297,,,,22.92565712,19.63973655,26.21157769,48.35319207,44.00474272,52.70164143,30.97748747,27.60957667,34.34539827,62.16306251,58.91487251,65.4112525,,,,6.1,,,,,0,,,,,0.167598739,62485,372825,0.161304732,0.173892747,0.139120915,0.133329002,0.144912828,0.031408838,0.028354441,0.034463235,0.006142292,0.004789383,0.007495201,0.568657545,313452,551214,0.560635745,0.576679345,0.637795276,0.545960128,0.729630423,0.559044498,0.540507703,0.577581292,0.643956475,0.623335734,0.664577216,0.601965753,0.581385126,0.622546379,0.597117606,0.587674287,0.606560925,0.521,,551214,0.507732136,0.534267864,83.53787833,,,83.34541569,83.73034097,95.18629412,79.03023225,111.342356,88.76335911,88.0973367,89.42938152,79.85708658,79.36210543,80.35206772,87.09447741,86.17825202,88.0107028,83.25134874,82.99438012,83.50831735,,,,214.9858633,7854,2935068,210.0997353,219.8719913,,,,128.1623167,118.9296958,137.3949377,328.3641161,313.9756362,342.7525961,204.2375195,192.0688685,216.4061705,207.731966,200.5575415,214.9063904,,,,34.51726288,366,1060339,30.98094026,38.05358549,,,,24.27895086,16.81387927,33.92740029,65.07094606,54.25322466,75.88866745,33.49292418,27.09777574,40.94336298,24.03613709,19.25196048,29.6484863,,,,5.017301038,435,86700,4.545801141,5.488800935,,,,3.510731668,2.550903005,4.7129934,8.720615318,7.373545013,10.06768562,4.831487155,3.977631725,5.685342586,3.206596427,2.581751418,3.936989849,,,,,,,0.073,,,0.063,0.084,0.127,,,0.112,0.143,0.079,,,0.07,0.09,445.2,3943,885720,,,0.089,93590,,,,0.018318878,17801.86428,971777,,,14.28421664,451,3157331,12.96588635,15.60254692,,,,3.665517459,2.172417955,5.793097885,20.53979248,16.89500503,24.18457994,7.902327235,5.86525959,10.4182333,18.98537679,16.65511239,21.3156412,,,,0.301,,,0.292,0.312,0.087496237,55507,634393,0.0803473,0.094645173,0.036374076,9059,249051,0.02922514,0.043523012,0.001180974,1243,1052521,,,846.7586484,0.91,11172.98,12278,,,0.042605947,2251,52833,0.033361119,0.051850775,,,,,,,,,,,,,,,,,,,,,0.126717435,,,,,1022.785,,,,,0.863477321,80698,93457,0.839065112,0.88788953,118020,,,114027.3192,122012.6809,98313,73209.51064,123416.4894,138040,131778.7234,144301.2766,89022,84869.65957,93174.34043,90657,86297.34043,95016.65957,156499,153774.0638,159223.9362,,,,,,0.391082601,61881,158230,,,46.68562466,,,,,0.280215218,,118020,,,5.469504784,351,64174,,,2.611290267,192,7352687,2.241921128,2.980659406,,,,,,,6.119689326,4.874298389,7.58627566,3.872894373,2.925542788,5.029275486,1.375047267,0.999111449,1.845936775,,,,7.418009868,408,5268708,6.682011958,8.154007778,7.743833972,,,,5.038057978,3.599262483,6.860405035,4.847919875,3.562069177,6.446705709,3.788910536,2.706853236,5.159420759,11.1790363,9.758315725,12.59975687,,,,4.403356572,232,5268708,3.836731309,4.969981836,,,,1.471165163,0.760172507,2.569829473,7.227529763,5.644760708,9.116545354,2.764145036,1.851191312,3.969773353,5.21339117,4.272725315,6.154057024,,,,5.372185706,395,7352687,4.84238987,5.901981542,,,,4.06024342,2.972608487,5.415795734,6.26715172,5.0059782,7.749430155,7.054200465,5.685199411,8.42320152,4.906418658,4.138931976,5.673905341,,,,4.061371841,,110800,,,223,227,0.792267957,533743,673690,,,0.754,,,,,218.0547769,,,,,0.655249115,252457,385284,0.648376097,0.662122133,0.144237578,54587,378452,0.13824639,0.150228766,0.947329762,364991,385284,0.942928768,0.951730756,1052521,,,,,0.225049191,236869,1052521,,,0.172259746,181307,1052521,,,0.192085479,202174,1052521,,,0.008516695,8964,1052521,,,0.162031922,170542,1052521,,,0.001007106,1060,1052521,,,0.203251052,213926,1052521,,,0.414024993,435770,1052521,,,0.066232929,65876,994611,0.063220986,0.069244873,0.512161753,539061,1052521,,,0.02679413,28457,1062061,, -24,033,24033,MD,Prince George's County,2024,1,8067.09514,12284,2627909,7858.921551,8275.268728,0,,,,2,2708.430236,2230.314447,3186.546025,,9262.571539,8965.175667,9559.967411,,6569.479511,6160.283461,6978.675562,,6785.644604,6251.108972,7320.180237,,,,,2,,0.159,,,0.136,0.185,2.99091054,,,2.513778582,3.531420357,4.481231179,,,3.922850122,5.126778422,0.095703675,7821,81721,0.093686661,0.097720689,0,0.129411765,0.058054222,0.200769307,0.097180763,0.086607648,0.107753878,0.11623044,0.11318553,0.119275351,0.071474347,0.068374187,0.074574507,0.06496199,0.05928287,0.070641111,,,,0.082909461,0.070720338,0.095098584,0.11,,,0.09,0.134,0.398,,,0.362,0.436,8.9,0.034591464,0.074,,,0.237,,,0.206,0.271,0.975643119,943643,967201,,,0.125789888,,,0.108651387,0.144847239,0.317843866,171,538,0.296518718,0.339295862,,,,,,17.21360338,3494,202979,16.64282645,17.78438031,,,,1.177856302,0.587981622,2.107510281,11.56466131,10.94336331,12.18595932,41.5200563,39.67575858,43.36435402,4.059170212,3.279022814,4.83931761,,,,14.50832886,11.52170733,18.03252806,0.107773239,83956,779006,0.100624303,0.114922175,0.000496176,474,955306,,,2015.413502,0.000633599,600,946971,,,1578.285,0.002182749,2067,946971,,,458.137881,3076,,,,,,1921,3427,3003,2395,0.39,,,,,,0.29,0.41,0.32,0.36,0.4,,,,,0.43,0.49,0.35,0.37,0.5,0.8714026,571817,656203,0.866712337,0.876092862,0.641883407,170214,265179,0.626280295,0.657486519,0.035351776,17557,496637,,,0.143,28941,,0.113212766,0.172787234,0.459898477,0.340005616,0.579791338,0.171390685,0.114754557,0.228026812,0.110288662,0.097042139,0.123535185,0.166435594,0.146128709,0.186742479,0.081428888,0.050790655,0.112067122,3.889915726,176785,45447,3.775532151,4.004299301,0.325850324,68642,210655,0.30771662,0.343984028,7.693869818,735,955306,,,64.2036904,2951,4596309,61.88719491,66.52018588,,,,22.02248342,15.93778045,29.66414064,69.82435351,66.74952601,72.89918101,42.35181057,38.08789646,46.61572468,93.61865409,85.62559255,101.6117156,,,,7.2,,,,,0,,,,,0.190552379,60145,315635,0.183098343,0.198006414,0.151735157,0.144911713,0.158558601,0.042786763,0.038968755,0.046604772,0.006368115,0.005266852,0.007469378,0.624549125,307686,492653,0.616353307,0.632744942,0.723011364,0.614045733,0.831976995,0.68349588,0.640949373,0.726042388,0.596059728,0.585907262,0.606212194,0.610606294,0.588953177,0.632259411,0.759265524,0.742969473,0.775561574,0.612,,492653,0.597603179,0.626396821,77.87143596,,,77.67028375,78.07258817,94.82532482,82.50087794,107.1497717,87.17329293,85.75636152,88.59022433,76.74701286,76.48473858,77.00928713,82.63816066,81.47151399,83.80480734,78.30175318,77.82910523,78.77440113,,,,384.452665,12284,2627909,377.4954594,391.4098706,,,,179.7082125,157.9478083,201.4686167,426.7008114,417.5134182,435.8882046,288.9820178,271.5811098,306.3829257,367.8256274,348.7456745,386.9055802,,,,57.4575573,530,922420,52.56579556,62.34931903,,,,,,,69.01724234,61.74487807,76.28960662,54.2480995,45.53751165,62.95868734,18.2217957,10.19860073,30.05408092,,,,7.380295934,613,83059,6.796044738,7.964547131,,,,,,,9.982717846,9.048877556,10.91655814,4.9170252,4.065194044,5.768856356,,,,,,,,,,0.091,,,0.079,0.105,0.133,,,0.118,0.15,0.122,,,0.109,0.137,1006,8078,802948,,,0.074,70930,,,,0.034591464,29866.96195,863420,,,21.48332249,596,2774245,19.75853978,23.2081052,,,,,,,24.7687953,22.40836722,27.12922338,11.03970493,8.444499523,14.18096283,32.6791507,26.5441646,38.81413681,,,,0.408,,,0.395,0.422,0.126476701,72908,576454,0.116944786,0.136008616,0.056020378,11898,212387,0.044105484,0.067935272,0.000835295,791,946971,,,1197.182048,0.78,7508.28,9626,,,0.067330661,3326,49398,0.055650662,0.07901066,,,,,,,,,,,,,,,,,,,,,0.198798808,,,,,-9997.275,,,,,1.075667775,66970,62259,1.040667618,1.110667932,93833,,,91110.44681,96555.55319,74926,47084.46809,102767.5319,109004,101625.1064,116382.8936,97416,95473.87234,99358.12766,86744,82906.21277,90581.78723,110497,105495.1277,115498.8723,,,,,,0.554251767,71371,128770,,,49.31519749,,,,,0.238796585,,93833,,,4.476931593,275,61426,,,12.23905669,785,6413893,11.38286858,13.09524479,,,,,,,16.49958839,15.23599155,17.76318523,8.331484184,6.706617408,9.95635096,2.10259423,1.224838622,3.366457044,,,,6.326711812,298,4596309,5.595530306,7.057893318,6.483463144,,,,,,,5.44132466,4.566878866,6.315770454,4.326953354,2.772360659,6.438163606,14.62224852,11.61217598,18.1741198,,,,12.66233406,582,4596309,11.63358762,13.6910805,,,,,,,16.56610103,15.06839201,18.06381006,6.257787314,4.727065286,8.126257341,8.526936236,6.287089654,11.30548037,,,,10.78907927,692,6413893,9.985206332,11.59295221,,,,6.162926012,3.590131513,9.867441558,12.21725247,11.12992903,13.30457591,9.321363493,7.602678466,11.04004852,8.781422962,6.858364188,11.07657019,,,,5.6612529,,86200,,,323,165,0.706742966,424855,601145,,,0.679,,,,,192.7512342,,,,,0.624200647,212888,341057,0.617367756,0.631033538,0.16436561,55061,334991,0.157194424,0.171536796,0.920086672,313802,341057,0.915542454,0.924630889,946971,,,,,0.217217845,205699,946971,,,0.15258123,144490,946971,,,0.611749462,579309,946971,,,0.01421902,13465,946971,,,0.043589508,41278,946971,,,0.002239773,2121,946971,,,0.209422464,198317,946971,,,0.113883107,107844,946971,,,0.074353525,66685,896864,0.070993828,0.077713223,0.516560697,489168,946971,,,0.024345508,23547,967201,, -24,035,24035,MD,Queen Anne's County,2024,1,6410.010243,637,139913,5561.395501,7258.624984,0,,,,2,,,,2,10518.74122,6332.969344,16426.31739,1,,,,2,6179.789364,5288.205106,7071.373623,,,,,2,,0.118,,,0.098,0.14,3.079542276,,,2.448714479,3.762603937,4.941279516,,,4.166514335,5.727425673,0.072521247,256,3530,0.06396559,0.081076903,0,,,,,,,0.150289017,0.097037467,0.203540568,0.047979798,0.026929378,0.069030218,0.071706111,0.062202099,0.081210123,,,,,,,0.136,,,0.104,0.17,0.35,,,0.301,0.399,8.6,0.036081599,0.09,,,0.195,,,0.158,0.231,0.719813931,35900,49874,,,0.172787372,,,0.143424809,0.202730319,0.4375,14,32,0.349686521,0.519975784,,,,,,8.959728379,95,10603,7.248955302,10.95280332,,,,,,,29.79515829,17.03050736,48.38547039,35.37414966,23.107569,51.83132528,5.753739931,4.270536679,7.585588799,,,,,,,0.061103455,2483,40636,0.05157154,0.07063537,0.000314973,16,50798,,,3174.875,0.000464118,24,51711,,,2154.625,0.001527721,79,51711,,,654.5696203,1561,,,,,,,1373,,1538,0.43,,,,,,0.29,0.45,,0.43,0.54,,,,,,0.57,0.44,0.5,0.55,0.932623524,33636,36066,0.921711407,0.94353564,0.696057348,7768,11160,0.63804429,0.754070405,0.027637922,774,28005,,,0.076,804,,0.046212766,0.105787234,,,,0.09,0,0.830132956,0.333333333,0.066902592,0.599764075,0.396895787,0.271624276,0.522167298,0.035016085,0.017387128,0.052645043,4.138268038,194780,47068,3.653857568,4.622678508,0.189687618,2016,10628,0.14349436,0.235880875,7.874325761,40,50798,,,79.24966418,200,252367,68.26622109,90.23310727,,,,,,,155.6824079,99.7486563,231.6430825,,,,78.18284668,66.42999948,89.93569389,,,,7.5,,,,,1,,,,,0.114473684,2175,19000,0.093462602,0.135484766,0.107037731,0.08555682,0.128518642,0.008947368,0.004082036,0.013812701,0.002368421,0,0.004941147,0.789242206,20278,25693,0.773620713,0.804863699,,,,,,,0.789873418,0.703543306,0.87620353,0.712158809,0.575838629,0.848478989,0.725790416,0.69706534,0.754515491,0.516,,25693,0.474060252,0.557939749,79.52563606,,,78.73804463,80.31322749,,,,,,,74.51536122,71.04442686,77.98629558,97.56131139,71.17642922,123.9461936,79.64922123,78.82794919,80.47049327,,,,315.0146338,637,139913,288.6634748,341.3657928,,,,,,,529.075614,399.658033,687.0486926,,,,306.4107255,278.5639616,334.2574894,,,,44.28137652,21,47424,27.41086999,67.68878782,,,,,,,,,,,,,34.00826663,18.10796968,58.15517166,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.091,,,0.077,0.105,0.152,,,0.131,0.174,0.081,,,0.07,0.093,129,56,43422,,,0.09,4490,,,,0.036081599,1724.628271,47798,,,41.3532354,63,152346,31.77696152,52.90875198,,,,,,,,,,,,,42.71418111,32.26583337,55.46791708,,,,0.316,,,0.3,0.333,0.067535426,2016,29851,0.056812022,0.07825883,0.044280443,504,11382,0.03117406,0.057386826,0.000792868,41,51711,,,1261.243902,0.96,551.04,574,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.027066533,,,,,4661.449,,,,,0.78614773,63869,81243,0.713123766,0.859171693,109436,,,99669.3617,119202.6383,,,,,,,58571,32945.6383,84196.3617,70357,16035.80851,124678.1915,113098,108217.6596,117978.3404,,,,,,0.239784946,1784,7440,,,20.39680176,,,,,0.175143463,,109436,,,5.649717514,14,2478,,,,,,,,,,,,,,,,,,,,,,,,,,11.1309147,31,252367,7.335342922,16.19489649,12.28369795,,,,,,,,,,,,,11.62507215,7.44840308,17.29718588,,,,7.924966418,20,252367,4.840775373,12.23946788,,,,,,,,,,,,,6.898486472,3.861030511,11.37800435,,,,13.42090234,47,350200,9.861174234,17.84695498,,,,,,,,,,,,,12.90642839,9.177732271,17.64351249,,,,10.94339623,,5300,,,14,44,0.786957651,30290,38490,,,0.679,,,,,30.91784992,,,,,0.814428195,15760,19351,0.789282698,0.839573692,0.122849076,2306,18771,0.101230939,0.144467213,0.864296419,16725,19351,0.840337711,0.888255127,51711,,,,,0.205778268,10641,51711,,,0.207364004,10723,51711,,,0.058807604,3041,51711,,,0.004969929,257,51711,,,0.013188683,682,51711,,,0.001140957,59,51711,,,0.049409217,2555,51711,,,0.855581985,44243,51711,,,0.010728178,513,47818,0.00577612,0.015680236,0.501073273,25911,51711,,,0.590267474,29439,49874,, -24,037,24037,MD,St. Mary's County,2024,1,7646.526376,1483,323906,7078.995863,8214.05689,0,,,,2,2879.172184,1533.037929,4923.47212,1,11997.27777,10034.41,13960.14555,,4862.168238,3204.199507,7074.199513,,7397.790087,6744.011141,8051.569034,,,,,2,,0.13,,,0.11,0.153,3.148239209,,,2.559056108,3.794508833,4.96473903,,,4.238988109,5.724950352,0.068395495,662,9679,0.063366626,0.073424365,0,,,,0.070336391,0.042620098,0.098052685,0.138772664,0.120879285,0.156666043,0.066945607,0.048651508,0.085239705,0.053460972,0.048110293,0.058811651,,,,0.067204301,0.041760827,0.092647775,0.144,,,0.114,0.177,0.356,,,0.31,0.402,8.4,0.041559851,0.094,,,0.211,,,0.177,0.249,0.725498124,82545,113777,,,0.171540531,,,0.144480131,0.200065081,0.451219512,37,82,0.399457215,0.501059263,,,,,,11.31171702,307,27140,10.04635319,12.57708085,,,,,,,25.67901235,20.74366506,30.61435963,13.13432836,8.231213655,19.88553098,8.02686113,6.75495194,9.298770321,,,,16.74937965,11.03794673,24.36946802,0.057760877,5605,97038,0.049420452,0.066101303,0.000366915,42,114468,,,2725.428571,0.000513593,59,114877,,,1947.067797,0.001445024,166,114877,,,692.0301205,3374,,,,,,1452,4094,1483,3194,0.37,,,,,,0.29,0.39,0.41,0.36,0.43,,,,,,0.42,0.4,0.45,0.44,0.918162834,69908,76139,0.906565596,0.929760072,0.670689488,20729,30907,0.627372826,0.714006149,0.030713468,1771,57662,,,0.092,2476,,0.056255319,0.127744681,,,,0.122562674,0,0.325932122,0.220122699,0.106867245,0.333378154,0.133928571,0.032711018,0.235146125,0.036447639,0.019900683,0.052994594,4.167268452,198512,47636,3.672907327,4.661629578,0.195948178,5339,27247,0.16223627,0.229660086,6.289967502,72,114468,,,79.5780252,452,567996,72.24167572,86.91437468,,,,,,,81.75716901,63.36068301,103.8287146,44.89769739,24.54598896,75.33070721,87.15598527,78.20228409,96.10968645,,,,7.5,,,,,0,,,,,0.131177326,5415,41280,0.11054022,0.151814431,0.112722398,0.095512515,0.129932282,0.014656008,0.006838021,0.022473995,0.006056202,0.002009826,0.010102578,0.769369835,44685,58080,0.746763258,0.791976411,,,,0.844393593,0.76416464,0.924622546,0.721796276,0.676609941,0.766982611,0.762644628,0.638650744,0.886638512,0.777727307,0.753047114,0.8024075,0.383,,58080,0.352622863,0.413377138,77.47880989,,,76.94522084,78.01239894,,,,89.99769565,82.42306383,97.57232747,72.98365305,71.52324091,74.4440652,88.44870399,80.95345461,95.94395337,77.64457716,77.0372857,78.25186861,,,,390.3117403,1483,323906,370.0099139,410.6135667,,,,182.5860415,113.0236374,279.1021597,552.9536756,488.0626883,617.8446629,244.3692718,162.3816064,353.1816366,381.5166657,358.5788291,404.4545024,,,,42.91455876,52,121171,32.05064512,56.27673432,,,,,,,93.51963912,54.4786361,149.7340016,,,,37.68630407,25.6060152,53.49270041,,,,5.767844268,56,9709,4.356967575,7.490025544,,,,,,,,,,,,,5.075406033,3.535206265,7.058661161,,,,,,,0.091,,,0.078,0.106,0.157,,,0.137,0.18,0.098,,,0.085,0.112,159.5,152,95315,,,0.094,10670,,,,0.041559851,4370.059841,105151,,,33.2686443,114,342665,27.16149202,39.37579659,,,,,,,46.18102964,29.27481134,69.29421913,,,,33.88438647,27.06564442,41.89856861,,,,0.371,,,0.355,0.387,0.065117412,4545,69797,0.054394008,0.075840816,0.040002802,1142,28548,0.028087909,0.051917696,0.000696397,80,114877,,,1435.9625,0.91,1175.72,1292,,,0.039416058,270,6850,0.015208315,0.063623802,,,,,,,,,,,,,,,,,,,,,0.087620246,,,,,4687.198,,,,,0.736758786,65156,88436,0.660410202,0.81310737,112154,,,106891.1915,117416.8085,,,,138111,99046.82979,177175.1702,70689,57855.46809,83522.53192,105000,70403.91489,139596.0851,121487,114258.234,128715.766,,,,,,0.304691076,5326,17480,,,43.4429331,,,,,0.170898943,,112154,,,2.837281884,20,7049,,,2.777791807,22,791996,1.740827337,4.205610178,,,,,,,10.58023788,5.466963303,18.48154634,,,,1.708137396,0.819118276,3.141325488,,,,12.89650385,77,567996,10.12652936,16.1903796,13.5564335,,,,,,,,,,,,,15.00328347,11.57921743,19.12291639,,,,11.44374256,65,567996,8.83203891,14.58598931,,,,,,,,,,,,,13.1691736,9.920823809,17.1414896,,,,14.0152223,111,791996,11.40790088,16.62254372,,,,,,,15.87035682,9.405779261,25.0820059,,,,14.51916786,11.5973956,17.95317591,,,,19.6031746,,12600,,,26,221,0.668809324,55665,83230,,,0.689,,,,,24.16159718,,,,,0.724685157,29865,41211,0.703401824,0.74596849,0.114308375,4612,40347,0.095879031,0.132737719,0.901409818,37148,41211,0.88698086,0.915838776,114877,,,,,0.237453973,27278,114877,,,0.141760318,16285,114877,,,0.150299886,17266,114877,,,0.005249093,603,114877,,,0.030249745,3475,114877,,,0.001201285,138,114877,,,0.059872733,6878,114877,,,0.722424854,82990,114877,,,0.008039082,859,106853,0.005257563,0.010820601,0.495643166,56938,114877,,,0.567443332,64562,113777,, -24,039,24039,MD,Somerset County,2024,1,9848.611548,450,70305,8379.206692,11318.0164,0,,,,2,,,,2,9952.430382,7581.4307,12323.43006,,,,,2,11149.34199,8861.419961,13437.26403,,,,,2,,0.204,,,0.176,0.235,4.069563462,,,3.286625852,4.918113221,5.286750905,,,4.395969369,6.269837026,0.110240964,183,1660,0.095174556,0.125307372,0,,,,,,,0.151937985,0.124235214,0.179640755,,,,0.084541063,0.065591718,0.103490407,,,,,,,0.206,,,0.17,0.245,0.467,,,0.399,0.536,7.4,0.054742669,0.138,,,0.288,,,0.242,0.336,0.097684809,2405,24620,,,0.141872734,,,0.113375118,0.174278466,0.260869565,6,23,0.151021274,0.378411613,,,,,,15.37356322,107,6960,12.46057505,18.28655139,,,,,,,11.86728021,8.779479232,15.68917379,,,,22.15657312,16.16115647,29.64723806,,,,,,,0.067480305,1045,15486,0.055565411,0.079395198,0.000366092,9,24584,,,2731.555556,0.002199951,54,24546,,,454.5555556,0.003299927,81,24546,,,303.037037,1460,,,,,,,1945,,1311,0.45,,,,,,,0.47,,0.44,0.4,,,,,,0.35,0.34,0.43,0.42,0.846616364,14362,16964,0.824742928,0.8684898,0.456156156,3038,6660,0.38550079,0.526811523,0.047788003,431,9019,,,0.279,1149,,0.170574468,0.387425532,,,,0.66,0.126473468,1,0.304505814,0.170928122,0.438083506,0.198113208,0.018884316,0.377342099,0.116983068,0.045311009,0.188655128,5.337163357,102655,19234,4.306915657,6.367411056,0.294290615,1201,4081,0.188033073,0.400548157,11.38952164,28,24584,,,89.59024252,114,127246,73.14408832,106.0363967,,,,,,,57.60700501,38.86720437,82.23758165,,,,126.7214266,100.9329089,157.0902742,,,,7,,,,,0,,,,,0.200352526,1705,8510,0.149444942,0.251260111,0.182963407,0.131355899,0.234570916,0.012808461,0.001564879,0.024052042,0.025146886,0,0.05147367,0.732013623,6878,9396,0.681143642,0.782883604,,,,,,,0.674493063,0.588470522,0.760515604,,,,0.825816797,0.763829636,0.887803958,0.374,,9396,0.305378074,0.442621926,74.67289837,,,73.5220928,75.82370393,,,,,,,74.07499249,72.08710883,76.06287615,,,,73.73368915,72.09586298,75.37151533,,,,500.1086155,450,70305,451.3771203,548.8401107,,,,,,,552.3539747,460.6317369,644.0762124,,,,525.7444195,459.1252908,592.3635482,,,,44.80086018,10,22321,21.48375385,82.39037696,,,,,,,,,,,,,,,,,,,14.05867971,23,1636,8.911996966,21.09492231,,,,,,,,,,,,,,,,,,,,,,0.126,,,0.11,0.144,0.18,,,0.156,0.203,0.13,,,0.113,0.149,496.2,107,21565,,,0.138,3430,,,,0.054742669,1449.03845,26470,,,48.90751193,37,75653,34.43540186,67.41256281,,,,,,,32.63175069,15.64819284,60.01095135,,,,66.67179527,43.55223021,97.68962762,,,,0.387,,,0.374,0.401,0.079834522,907,11361,0.06434516,0.095323883,0.034640973,151,4359,0.022726079,0.046555866,0.000814797,20,24546,,,1227.3,0.775,148.8,192,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.059771481,,,,,-3486.092,,,,,0.826606689,39692,48018,0.668327076,0.984886303,53590,,,47645.65957,59534.34043,,,,,,,36417,29906.70213,42927.29787,61389,40241.25532,82536.74468,64573,59853.51064,69292.48936,,,,,,0.573464912,1569,2736,,,39.95210238,,,,,0.302351185,,53590,,,8.042895442,9,1119,,,,,,,,,,,,,,,,,,,,,,,,,,11.66232923,14,127246,6.209699145,19.94293817,11.00231049,,,,,,,,,,,,,15.49164544,7.083766763,29.40796861,,,,9.430551845,12,127246,4.872903752,16.47327621,,,,,,,,,,,,,,,,,,,13.97100737,25,178942,9.04129933,20.6239629,,,,,,,,,,,,,18.4606029,10.75398149,29.55721355,,,,76.84210526,,1900,,,42,104,0.485618569,10147,20895,,,0.532,,,,,21.8486299,,,,,0.675284261,5642,8355,0.637090459,0.713478063,0.175220786,1369,7813,0.130995675,0.219445896,0.809335727,6762,8355,0.771799697,0.846871758,24546,,,,,0.171351748,4206,24546,,,0.180884869,4440,24546,,,0.397131916,9748,24546,,,0.00505174,124,24546,,,0.009492382,233,24546,,,0.001140715,28,24546,,,0.042899047,1053,24546,,,0.520247698,12770,24546,,,0.012843881,303,23591,0.002200826,0.023486937,0.453801027,11139,24546,,,0.597278635,14705,24620,, -24,041,24041,MD,Talbot County,2024,1,8324.735562,532,95623,7103.924839,9545.546285,0,,,,2,,,,2,13281.52341,9384.739565,17178.30725,,,,,2,7672.125739,6289.606437,9054.645041,,,,,2,,0.13,,,0.109,0.153,3.084035507,,,2.423727259,3.815540744,4.649166759,,,3.85257787,5.502350009,0.077999152,184,2359,0.067177273,0.088821032,0,,,,,,,0.15483871,0.114568416,0.195109003,0.067729084,0.045747303,0.089710865,0.06366782,0.05107865,0.076256991,,,,,,,0.136,,,0.106,0.168,0.341,,,0.291,0.397,8.3,0.032515587,0.107,,,0.195,,,0.161,0.234,0.712572616,26740,37526,,,0.161246225,,,0.132804491,0.192650473,0.32,8,25,0.213480444,0.427129614,,,,,,14.31070122,90,6289,11.50749374,17.59028141,,,,,,,19.51779564,11.36983521,31.24988153,52.4822695,36.95236109,72.33989524,6.996268657,4.720353083,9.987608534,,,,,,,0.076489839,2010,26278,0.064574946,0.088404733,0.001169404,44,37626,,,855.1363636,0.000817252,31,37932,,,1223.612903,0.004824423,183,37932,,,207.2786885,903,,,,,,,1206,,867,0.48,,,,,,,0.48,0.29,0.48,0.52,,,,,,0.52,0.38,0.37,0.53,0.922020753,26391,28623,0.909007135,0.93503437,0.682095344,4922,7216,0.611255808,0.752934879,0.033632672,588,17483,,,0.142,956,,0.089574468,0.194425532,0.036363636,0,0.899964562,0.069767442,0,0.948806344,0.141955836,0.031242702,0.25266897,0.098678414,0.004569992,0.192786836,0.105652925,0.059171822,0.152134028,5.107269422,165736,32451,4.269586313,5.944952531,0.237068338,1627,6863,0.17508744,0.299049235,11.95981502,45,37626,,,96.85230024,180,185850,82.70316954,111.001431,,,,,,,127.5678529,85.43419319,183.2087161,,,,100.0277855,83.68991387,116.3656571,,,,7.2,,,,,1,,,,,0.158239143,2660,16810,0.132103294,0.184374993,0.146319569,0.118639846,0.173999293,0.009161214,0.002790539,0.015531889,0.015764426,0.00702819,0.024500662,0.72427886,12228,16883,0.696192927,0.752364793,,,,,,,0.777939042,0.712870089,0.843007995,0.58697318,0.457968015,0.715978346,0.770904191,0.749061561,0.79274682,0.309,,16883,0.272664458,0.345335542,78.8781432,,,77.89661961,79.85966679,,,,,,,72.98655464,70.29441483,75.67869445,,,,79.58656824,78.48643833,80.68669814,,,,360.7608654,532,95623,324.9361213,396.5856095,,,,,,,632.9562582,502.5804231,763.3320932,,,,333.4406365,293.4108683,373.4704047,,,,64.34570577,19,29528,38.74031822,100.4837902,,,,,,,,,,,,,74.05056596,40.48413348,124.244267,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.091,,,0.078,0.106,0.149,,,0.128,0.172,0.085,,,0.073,0.098,240.1,79,32905,,,0.107,4020,,,,0.032515587,1228.503918,37782,,,40.25800911,45,111779,29.36446809,53.86838359,,,,,,,80.76951318,40.31984997,144.5189699,,,,39.34001342,27.24410291,54.97372561,,,,0.299,,,0.284,0.313,0.084076237,1641,19518,0.069778365,0.09837411,0.055797611,397,7115,0.03792527,0.073669951,0.002161763,82,37932,,,462.5853659,0.96,336.96,351,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.064972646,,,,,1198.808,,,,,0.815473102,55011,67459,0.723582231,0.907363973,76583,,,67399,85767,106181,105186.1064,107175.8936,156985,12912.48936,301057.5106,52730,42564.21277,62895.78723,55142,36190.17021,74093.82979,90074,83407.61702,96740.38298,,,,,,0.510037503,2312,4533,,,26.82170458,,,,,0.250277477,,76583,,,10.21711367,16,1566,,,,,,,,,,,,,,,,,,,,,,,,,,12.83928065,27,185850,7.842566174,19.82922763,14.52784504,,,,,,,,,,,,,12.29703566,6.882557509,20.28209024,,,,6.456820016,12,185850,3.336333123,11.27876516,,,,,,,,,,,,,,,,,,,9.208103131,24,260640,5.899805423,13.70092756,,,,,,,,,,,,,8.40003953,4.893332577,13.44927701,,,,22.5,,3200,,,16,56,0.777088717,22555,29025,,,0.667,,,,,39.18253273,,,,,0.729440688,11868,16270,0.715117388,0.743763988,0.155920802,2457,15758,0.128822977,0.183018628,0.880762139,14330,16270,0.868444494,0.893079784,37932,,,,,0.180243594,6837,37932,,,0.30538859,11584,37932,,,0.121928715,4625,37932,,,0.004692608,178,37932,,,0.015395972,584,37932,,,0.002504482,95,37932,,,0.078535274,2979,37932,,,0.76457872,29002,37932,,,0.020067075,724,36079,0.010820749,0.029313401,0.523067595,19841,37932,,,0.519453179,19493,37526,, -24,043,24043,MD,Washington County,2024,1,10124.96148,2618,422436,9536.980248,10712.94272,0,,,,2,,,,2,13460.06018,11561.72728,15358.39309,,4332.906029,2982.57314,6085.011022,,10147.45794,9472.002944,10822.91293,,,,,2,,0.16,,,0.137,0.187,3.831677435,,,3.237111232,4.558030838,5.314882332,,,4.658034192,6.048997448,0.093596059,1083,11571,0.088288922,0.098903196,0,,,,0.064516129,0.035688676,0.093343582,0.132209981,0.115308975,0.149110987,0.084837545,0.068430539,0.101244551,0.087349771,0.081189845,0.093509696,,,,0.112380952,0.085364017,0.139397888,0.174,,,0.143,0.207,0.396,,,0.355,0.439,7.5,0.054969613,0.13,,,0.259,,,0.221,0.294,0.80959245,125248,154705,,,0.151478457,,,0.129082765,0.175716903,0.282051282,22,78,0.223617099,0.34215829,,,,,,21.03275379,646,30714,19.41080944,22.65469815,,,,,,,28.73708092,23.46179144,34.0123704,31.08003108,24.6445317,38.68178903,16.71619614,14.98939519,18.44299709,,,,46.39737991,37.06057915,57.37107878,0.068069205,8270,121494,0.05853729,0.07760112,0.00054861,85,154937,,,1822.788235,0.000559162,87,155590,,,1788.390805,0.003046468,474,155590,,,328.2489452,2949,,,,,,,4033,1739,2906,0.39,,,,,,0.25,0.36,0.27,0.39,0.5,,,,,,0.48,0.37,0.41,0.51,0.884322637,95735,108258,0.874808197,0.893837076,0.573524169,22520,39266,0.538631304,0.608417033,0.033219879,2401,72276,,,0.151,4957,,0.098574468,0.203425532,,,,0.043301759,0,0.173699855,0.331882481,0.24472722,0.419037742,0.253212617,0.158999024,0.34742621,0.10592686,0.080662358,0.131191362,4.659928538,140851,30226,4.32125538,4.998601697,0.238654358,7988,33471,0.205078042,0.272230673,12.26304885,190,154937,,,130.3655508,989,758636,122.2405995,138.4905022,,,,,,,132.8271144,109.0613282,156.5929007,48.10445539,29.77741607,73.53276998,142.0181218,132.3794585,151.6567851,,,,7,,,,,0,,,,,0.132351637,7460,56365,0.118430433,0.14627284,0.115125975,0.102685645,0.127566305,0.014281913,0.009476093,0.019087732,0.008161093,0.00438505,0.011937136,0.767874731,53795,70057,0.752755967,0.782993494,,,,0.663469225,0.519637599,0.80730085,0.649692544,0.579776753,0.719608335,0.749156939,0.671273775,0.827040103,0.808380583,0.791051371,0.825709794,0.394,,70057,0.367652185,0.420347815,75.05352248,,,74.59513205,75.51191291,,,,87.09520354,80.76741527,93.42299181,72.09915611,70.36071318,73.83759903,87.41408007,80.63807709,94.19008306,74.97766426,74.46929196,75.48603656,,,,479.199813,2618,422436,460.1105872,498.2890388,,,,,,,639.2363852,562.2764701,716.1963004,229.9363318,157.2762808,324.6014939,486.8262196,465.2507574,508.4016818,,,,53.74751073,78,145123,42.48517685,67.07932585,,,,,,,102.6852185,62.72279912,158.5889916,,,,43.09327642,31.05784322,58.2495909,,,,6.950403295,81,11654,5.519623476,8.638716679,,,,,,,14.445174,9.052713639,21.87016703,,,,4.710144928,3.349373489,6.438923172,,,,,,,0.111,,,0.096,0.127,0.171,,,0.15,0.193,0.11,,,0.096,0.124,371.8,489,131538,,,0.13,20070,,,,0.054969613,8104.170031,147430,,,63.00149629,288,457132,55.7251947,70.27779788,,,,,,,84.06668098,61.76903514,111.7908642,,,,67.37909592,58.78252502,75.97566682,,,,0.359,,,0.344,0.371,0.077522634,6833,88142,0.06560774,0.089437528,0.044381142,1558,35105,0.031274759,0.057487525,0.001368983,213,155590,,,730.4694836,0.91,1582.49,1739,,,0.09326212,681,7302,0.059267052,0.127257188,,,,,,,,,,,,,,,,,,,,,0.093956019,,,,,4240.094,,,,,0.828365631,51637,62336,0.78232371,0.874407553,69271,,,64845.80851,73696.19149,,,,73766,37659.10638,109872.8936,50733,46712.91489,54753.08511,64918,46321.23404,83514.76596,75696,73106.89362,78285.10638,,,,,,0.517477786,11473,22171,,,40.67173497,,,,,0.276695876,,69271,,,6.391632772,55,8605,,,4.818079702,51,1058513,3.587376805,6.334885011,,,,,,,17.10501666,10.58827491,26.14683495,,,,3.142301543,2.052655694,4.604199817,,,,14.82619945,117,758636,12.0613805,17.5910184,15.42241602,,,,,,,,,,,,,16.01700191,12.71979582,19.314208,,,,12.39065903,94,758636,10.01291376,15.16302861,,,,,,,22.13785241,13.52237538,34.19011756,,,,11.57941521,8.991868995,14.67966794,,,,11.62007458,123,1058513,9.56649077,13.67365838,,,,,,,8.145246027,3.905962073,14.97939745,,,,12.69006392,10.262754,15.11737385,,,,11.12582782,,15100,,,38,130,0.591930483,67779,114505,,,0.7,,,,,73.31451599,,,,,0.653926267,38615,59051,0.638186348,0.669666187,0.118040438,6778,57421,0.104035794,0.132045082,0.857055765,50610,59051,0.846074418,0.868037113,155590,,,,,0.215148789,33475,155590,,,0.182396041,28379,155590,,,0.126859053,19738,155590,,,0.004100521,638,155590,,,0.021029629,3272,155590,,,0.000931937,145,155590,,,0.072164021,11228,155590,,,0.747303811,116273,155590,,,0.010535828,1539,146073,0.007784759,0.013286897,0.490410695,76303,155590,,,0.32227142,49857,154705,, -24,045,24045,MD,Wicomico County,2024,1,9908.080936,1671,290886,9201.569732,10614.59214,0,,,,2,,,,2,12664.61768,11226.34048,14102.89487,,8869.409003,6336.435827,12077.6177,,9377.363436,8455.069627,10299.65725,,,,,2,,0.17,,,0.145,0.195,3.813167204,,,3.129458381,4.537376926,5.551213023,,,4.78925791,6.328754717,0.09299757,842,9054,0.087015165,0.098979976,0,,,,0.069518717,0.033065155,0.105972278,0.124373711,0.113269496,0.135477925,0.067759563,0.051474299,0.084044826,0.074432892,0.066524838,0.082340947,,,,0.080808081,0.049811889,0.111804273,0.178,,,0.146,0.212,0.376,,,0.332,0.422,7.3,0.090547575,0.121,,,0.27,,,0.231,0.309,0.730741013,75696,103588,,,0.166014714,,,0.139978114,0.194321621,0.245901639,15,61,0.179926193,0.315736979,,,,,,16.94201198,563,33231,15.54253146,18.3414925,,,,,,,32.84803273,28.9514481,36.74461735,42.89693593,33.85359101,53.61380975,8.057079066,6.83139186,9.282766272,,,,28.64583333,20.81410635,38.45569419,0.086903408,7185,82678,0.074988515,0.098818302,0.000644355,67,103980,,,1551.940299,0.000802568,84,104664,,,1246,0.004165711,436,104664,,,240.0550459,1467,,,,,,1613,1801,,1390,0.46,,,,,,0.38,0.47,0.17,0.46,0.46,,,,,,0.6,0.38,0.37,0.47,0.885470398,58194,65721,0.870981316,0.899959479,0.612477479,14618,23867,0.56615624,0.658798719,0.038477354,1965,51069,,,0.164,3704,,0.098468085,0.229531915,,,,0.020484171,0,0.181608161,0.191356383,0.127756039,0.254956727,0.222916667,0.085977697,0.359855637,0.127599059,0.081437901,0.173760216,4.424490478,132425,29930,3.966292992,4.882687964,0.288131148,6591,22875,0.24588804,0.330374255,8.655510675,90,103980,,,86.92343205,450,517697,78.89211668,94.95474742,,,,,,,81.34509932,66.2797761,96.41042254,55.6057552,31.78349362,90.30026273,98.82470306,87.94562837,109.7037778,,,,7.4,,,,,0,,,,,0.16819612,6415,38140,0.148824164,0.187568075,0.148378557,0.12908667,0.167670445,0.022155218,0.014230702,0.030079734,0.00812795,0.004216041,0.012039859,0.807852999,40799,50503,0.789713235,0.825992763,,,,0.719476744,0.547288046,0.891665443,0.799836971,0.761370051,0.838303892,0.693142361,0.612061971,0.774222752,0.843904448,0.825761135,0.862047761,0.269,,50503,0.242625259,0.295374741,75.0312106,,,74.47766665,75.58475456,,,,83.00516462,80.07466204,85.9356672,72.20733287,71.1333146,73.28135114,81.25053255,75.01599336,87.48507173,75.54562909,74.84069235,76.25056583,,,,477.910969,1671,290886,453.8690471,501.9528909,,,,,,,641.1061306,586.1816091,696.0306521,386.7773799,275.036527,528.7374109,446.3506147,417.1045065,475.5967228,,,,57.09493818,64,112094,43.97005955,72.90896142,,,,,,,86.69016934,58.48949321,123.7556071,,,,45.34910087,29.6235383,66.44693995,,,,8.65557554,77,8896,6.830844858,10.81798432,,,,,,,10.50030883,7.271769112,14.67312912,,,,8.212106992,5.720033412,11.42105288,,,,,,,0.113,,,0.097,0.13,0.175,,,0.153,0.197,0.11,,,0.096,0.126,304.9,267,87568,,,0.121,12470,,,,0.090547575,8940.03375,98733,,,38.19256112,119,311579,31.3303927,45.05472954,,,,,,,35.94062609,24.2489895,51.30747852,,,,44.30290679,35.38758841,54.78123033,,,,0.361,,,0.348,0.374,0.09793943,5889,60129,0.082450069,0.113428792,0.058549288,1394,23809,0.039485458,0.077613118,0.00239815,251,104664,,,416.9880478,0.83,884.78,1066,,,0.042371752,318,7505,0.015914579,0.068828925,,,,,,,,,,,,,,,,,,,,,0.090462538,,,,,723.2402,,,,,0.816643233,47046,57609,0.758695003,0.874591463,68851,,,63559.59575,74142.40426,75946,24260.38298,127631.617,72545,57646.61702,87443.38298,60512,55202.7234,65821.2766,64550,55895.02128,73204.97872,72909,68258.61702,77559.38298,,,,,,0.62322695,9139,14664,,,39.76417747,,,,,0.235334273,,68851,,,7.655970028,47,6139,,,5.673609689,41,722644,4.071480268,7.696892186,,,,,,,14.23652671,9.381960808,20.71339892,,,,2.880324723,1.533651607,4.925442998,,,,11.77962503,63,517697,8.944763154,15.22789696,12.16928049,,,,,,,,,,,,,15.98735433,11.82753275,21.13613028,,,,11.39662776,59,517697,8.675641085,14.70081947,,,,,,,13.79961506,8.30826972,21.54980831,,,,11.53474452,8.121524634,15.8991259,,,,13.56131096,98,722644,11.00972776,16.52689433,,,,,,,15.29108424,10.2406791,21.96054765,,,,12.6291161,9.5651692,16.36248475,,,,31.37254902,,10200,,,95,225,0.607106732,46216,76125,,,0.653,,,,,63.08036177,,,,,0.596534715,23825,39939,0.579314734,0.613754697,0.138941083,5398,38851,0.118543103,0.159339062,0.864318085,34520,39939,0.845035552,0.883600618,104664,,,,,0.218661622,22886,104664,,,0.170316441,17826,104664,,,0.27177444,28445,104664,,,0.004767637,499,104664,,,0.032561339,3408,104664,,,0.001586028,166,104664,,,0.060345487,6316,104664,,,0.604352977,63254,104664,,,0.023713431,2315,97624,0.01717977,0.030247092,0.524229917,54868,104664,,,0.268699077,27834,103588,, -24,047,24047,MD,Worcester County,2024,1,7102.283384,827,138364,6204.124039,8000.44273,0,,,,2,,,,2,11118.42599,8192.241668,14044.6103,,,,,2,6918.553749,5891.83382,7945.273677,,,,,2,,0.133,,,0.111,0.158,3.239386696,,,2.612609379,3.945367347,5.029430349,,,4.254777906,5.851503235,0.065961199,187,2835,0.056824144,0.075098255,0,,,,,,,0.1,0.071308538,0.128691462,0.06097561,0.024352884,0.097598335,0.060491493,0.050333785,0.070649202,,,,,,,0.167,,,0.133,0.208,0.377,,,0.324,0.429,7.6,0.060310399,0.124,,,0.21,,,0.174,0.25,0.845787267,44370,52460,,,0.179504166,,,0.149592414,0.211713909,0.355932203,21,59,0.289430155,0.421791405,,,,,,11.47959184,99,8624,9.330045786,13.97599116,,,,,,,31.49606299,23.22271051,41.75921009,,,,6.432459179,4.574107288,8.793383451,,,,,,,0.076109044,2884,37893,0.06419415,0.088023938,0.000846947,45,53132,,,1180.711111,0.000612631,33,53866,,,1632.30303,0.002840382,153,53866,,,352.0653595,2029,,,,,,,2404,,1954,0.49,,,,,,0.43,0.49,,0.49,0.53,,,,,,0.52,0.39,0.45,0.54,0.935168165,37648,40258,0.926692873,0.943643457,0.6791292,7175,10565,0.616668728,0.741589672,0.050268017,1266,25185,,,0.144,1301,,0.086808511,0.201191489,,,,0.21641791,0,0.775711565,0.227001985,0.116702827,0.337301144,0.180428135,0.063895925,0.296960344,0.051840845,0.024188906,0.079492784,4.496945642,145022,32249,3.900894474,5.09299681,0.281997343,2547,9032,0.228058906,0.33593578,16.37431303,87,53132,,,88.77868087,232,261324,77.35461321,100.2027485,,,,,,,75.64983206,48.95658259,111.6740754,,,,95.11018922,81.89551141,108.324867,,,,7.3,,,,,0,,,,,0.156443072,3545,22660,0.134176511,0.178709632,0.133556299,0.111357616,0.155754982,0.020079435,0.010783526,0.029375344,0.005736982,0.002073501,0.009400462,0.782412206,18871,24119,0.760341844,0.804482568,,,,,,,0.706726014,0.507730798,0.90572123,0.684279191,0.523187775,0.845370607,0.779105799,0.754306801,0.803904797,0.275,,24119,0.241278536,0.308721465,79.13343937,,,78.35782158,79.90905716,,,,,,,74.16810125,71.83714015,76.49906235,,,,79.32032201,78.46045784,80.18018617,,,,350.3327162,827,138364,322.6713906,377.9940417,,,,,,,562.6271142,460.9590585,664.29517,,,,339.3004051,308.7094401,369.8913702,,,,25.35689834,10,39437,12.15961837,46.63223887,,,,,,,,,,,,,,,,,,,7.754670427,22,2837,4.859810671,11.74066422,,,,,,,,,,,,,,,,,,,,,,0.097,,,0.083,0.114,0.159,,,0.137,0.183,0.099,,,0.085,0.114,187.5,88,46922,,,0.124,6480,,,,0.060310399,3103.211271,51454,,,34.21814702,54,157811,25.70572519,44.64725931,,,,,,,,,,,,,37.2070931,27.33837252,49.47754619,,,,0.311,,,0.296,0.325,0.084891289,2452,28884,0.070593417,0.099189162,0.049143944,465,9462,0.033654583,0.064633306,0.001225263,66,53866,,,816.1515152,0.92,477.48,519,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.074367794,,,,,7561.405,,,,,0.805844701,51869,64366,0.754392814,0.857296588,75969,,,67491.55319,84446.44681,,,,95875,79403.85106,112346.1489,49250,35172.55319,63327.44681,46304,5526.468085,87081.53192,81494,75902.34043,87085.65957,,,,,,0.451418492,3071,6803,,,51.52963493,,,,,0.19869947,,75969,,,6.158218854,13,2111,,,,,,,,,,,,,,,,,,,,,,,,,,11.42159731,35,261324,7.589568466,16.50738819,13.39333548,,,,,,,,,,,,,12.58973639,8.066481662,18.7325298,,,,8.418668014,22,261324,5.275934423,12.74596455,,,,,,,,,,,,,10.03675364,6.212908691,15.34224409,,,,11.25421347,41,364308,8.076217889,15.26761135,,,,,,,,,,,,,9.943561715,6.659359339,14.28061329,,,,82.3255814,,4300,,,43,311,0.761528295,31691,41615,,,0.357,,,,,51.31052371,,,,,0.765698939,17961,23457,0.74715588,0.784241997,0.143513812,3247,22625,0.120009589,0.167018036,0.884128405,20739,23457,0.865807302,0.902449508,53866,,,,,0.169438978,9127,53866,,,0.290071659,15625,53866,,,0.12156091,6548,53866,,,0.004121338,222,53866,,,0.016708128,900,53866,,,0.000482679,26,53866,,,0.038874244,2094,53866,,,0.801396057,43168,53866,,,0.006485954,329,50725,0.002512258,0.010459649,0.509170906,27427,53866,,,0.409588258,21487,52460,, -24,510,24510,MD,Baltimore city,2024,1,15617.99473,13952,1654029,15260.35046,15975.639,0,9750.91801,4867.623138,17447.0858,1,3399.846778,2381.210885,4706.821022,,19260.23088,18738.70193,19781.75983,,8588.270186,7462.480562,9714.059809,,10753.09681,10204.97075,11301.22286,,,,,2,,0.196,,,0.169,0.226,3.73928107,,,3.095402632,4.412524199,5.754452168,,,5.010338831,6.493894962,0.120417288,6464,53680,0.117664121,0.123170455,0,0.142857143,0.060881537,0.224832749,0.082608696,0.06916145,0.096055941,0.15452524,0.150443932,0.158606548,0.075270433,0.068932188,0.081608677,0.072077876,0.067789438,0.076366313,,,,0.114314115,0.094651247,0.133976984,0.183,,,0.151,0.218,0.365,,,0.326,0.404,7.7,0.018111101,0.14,,,0.275,,,0.238,0.315,0.988116946,578748,585708,,,0.165777507,,,0.141322291,0.191718703,0.206896552,48,232,0.174251918,0.241198692,,,,,,28.12305151,3473,123493,27.1877188,29.05838422,,,,,,,30.06476044,28.8845684,31.24495247,77.02165834,70.86377155,83.17954513,10.41584158,9.156995703,11.67468747,,,,25.44311035,20.43290685,31.30993665,0.068624285,31664,461411,0.061475349,0.075773221,0.00115872,668,576498,,,863.0209581,0.000857999,489,569931,,,1165.503068,0.006304272,3593,569931,,,158.6225995,3878,,,,,,1343,4515,2101,3220,0.43,,,,,,0.35,0.42,0.34,0.44,0.48,,,,,0.28,0.54,0.42,0.39,0.55,0.87061852,357146,410221,0.864642785,0.876594256,0.667521068,123962,185705,0.649290296,0.685751841,0.042671946,11682,273763,,,0.242,27517,,0.180042553,0.303957447,,,,0.268085106,0.144333822,0.391836391,0.305294478,0.283912676,0.32667628,0.219181323,0.165903961,0.272458686,0.092645411,0.069861588,0.115429234,6.332353388,124931,19729,5.965910062,6.698796715,0.480846097,57263,119088,0.452261624,0.50943057,10.25155335,591,576498,,,215.5028748,6401,2970262,210.2234668,220.7822828,134.8039216,67.29363195,241.2014524,23.68929618,14.26250379,36.99377043,256.4548308,249.127581,263.7820805,90.52522497,76.13379694,104.916653,180.465191,171.2770974,189.6532847,,,,8.6,,,,,1,,,,,0.208371134,50530,242500,0.199886645,0.216855623,0.192383883,0.184178648,0.200589117,0.019319588,0.016379361,0.022259814,0.006350516,0.005077895,0.007623136,0.575251751,155666,270605,0.565305241,0.585198261,0.593360996,0.465315577,0.721406415,0.689598239,0.656428371,0.722768106,0.62085051,0.605166219,0.636534801,0.617046819,0.584090811,0.650002826,0.726924718,0.718350157,0.73549928,0.416,,270605,0.400103549,0.431896451,71.03006014,,,70.77655265,71.28356763,,,,89.35749211,85.60474675,93.11023748,68.37767736,68.04600993,68.70934479,88.08306033,82.6249715,93.54114916,74.7420924,74.29691802,75.18726678,,,,718.5352182,13952,1654029,706.1997844,730.870652,445.7763733,282.5839815,668.8834341,177.4457878,136.046668,227.4774916,854.1671246,837.1177508,871.2164985,304.6965191,264.4606784,344.9323597,535.4517695,515.4979477,555.4055914,,,,92.8025446,503,542011,84.69233714,100.9127521,,,,,,,111.427962,100.4668401,122.3890838,54.17118093,36.27929005,77.79885202,55.31195945,41.66853752,71.99611808,,,,8.761269024,483,55129,7.979911997,9.54262605,,,,,,,11.61282157,10.42470024,12.8009429,4.829362524,3.258350615,6.894215292,4.321460933,3.313239317,5.539917884,,,,,,,0.116,,,0.101,0.132,0.174,,,0.152,0.196,0.124,,,0.11,0.14,2087.8,10252,491041,,,0.14,82780,,,,0.018111101,11246.28733,620961,,,137.5760982,2416,1756119,132.090164,143.0620324,,,,,,,158.9551839,151.4429942,166.4673735,60.57467783,46.44225815,77.65400318,124.8609503,114.9113641,134.8105365,,,,0.398,,,0.383,0.412,0.079396551,27751,349524,0.069864636,0.088928466,0.035681056,4180,117149,0.024957652,0.04640446,0.003412694,1945,569931,,,293.0236504,0.690994187,3447.37,4989,,,0.097716043,2828,28941,0.076271221,0.119160865,,,,,,,,,,,,,,,,,,,,,0.283728087,,,,,-22287.45,,,,,0.948991696,56000,59010,0.922289726,0.975693666,54735,,,51714.57447,57755.42553,36641,23735.97872,49546.02128,69081,65624.48936,72537.51064,46523,45254.06383,47791.93617,66911,58247.68085,75574.31915,91250,88791.95745,93708.04255,,,,,,0.662191192,51786,78204,,,67.34689805,,,,,0.429889467,,54735,,,6.490838879,237,36513,,,46.11608655,1940,4206775,44.0639434,48.1682297,,,,,,,70.25914876,67.0400566,73.47824092,11.7900841,7.769739715,17.15395337,5.910570499,4.598776645,7.480205251,,,,9.199322729,282,2970262,8.093215969,10.30542949,9.494111967,,,,,,,6.950862771,5.720419973,8.181305568,,,,16.46039106,13.60710633,19.3136758,,,,44.87819593,1333,2970262,42.46897633,47.28741553,,,,,,,67.08370095,63.33618009,70.83122181,7.742288978,4.122442806,13.23954995,10.47233902,8.376519463,12.9332535,,,,9.793725597,412,4206775,8.848021229,10.73942997,,,,,,,12.01700195,10.68568937,13.34831452,8.733395632,5.334584939,13.48802123,6.510193593,5.129292092,8.148478068,,,,12.00404858,,49400,,,511,82,0.523589659,237461,453525,,,0.556,,,,,373.1098826,,,,,0.477575718,118072,247232,0.468670307,0.48648113,0.205292709,48958,238479,0.195654356,0.214931063,0.810287503,200329,247232,0.802313088,0.818261919,569931,,,,,0.203193018,115806,569931,,,0.156806701,89369,569931,,,0.612026719,348813,569931,,,0.005340997,3044,569931,,,0.028284126,16120,569931,,,0.001063287,606,569931,,,0.063383111,36124,569931,,,0.272329457,155209,569931,,,0.016260089,8929,549136,0.014072127,0.01844805,0.535029679,304930,569931,,,0,0,585708,, -25,000,25000,MA,Massachusetts,2024,,5856.410045,74987,19282426,5791.9175,5920.90259,0,6089.853278,4254.854856,7924.851701,,2338.719365,2193.674592,2483.764138,,8137.939869,7865.35223,8410.527508,,6085.27378,5908.32151,6262.226049,,5871.385738,5792.607649,5950.163826,,,,,2,,0.114,,,0.104,0.124,2.742446712,,,2.521111852,2.963781572,4.428778802,,,4.177269316,4.680288288,0.075594414,36461,482324,0.074848373,0.076340455,0,0.088172043,0.062399843,0.113944243,0.083704662,0.081047843,0.086361481,0.110766588,0.107951006,0.113582169,0.08390891,0.082177032,0.085640787,0.064419601,0.063503751,0.065335451,0.074626866,0.030132019,0.119121713,0.078145042,0.072919562,0.083370522,0.108,,,0.098,0.119,0.275,,,0.26,0.29,9.2,0.039275695,0.081,,,0.206,,,0.194,0.219,0.945758819,6648606,7029917,,,0.19217319,,,0.179949511,0.205019612,0.311493615,561,1801,0.299941546,0.323095115,385.8,26950,6984723,,,6.906256752,10900,1578279,6.776602865,7.035910639,7.494646681,4.63930442,11.45636357,1.471891747,1.257458237,1.686325257,9.734970709,9.193773989,10.27616743,24.31807049,23.70810286,24.92803811,2.846782783,2.74331308,2.950252486,,,,6.316935217,5.630150197,7.003720238,0.029144703,162727,5583416,0.026761724,0.031527682,0.001009775,7053,6984723,,,990.3194385,0.001093387,7634,6981974,,,914.5892062,0.007372557,51475,6981974,,,135.6381544,3158,,,,,3744,1939,4519,4280,3085,0.53,,,,,0.31,0.41,0.43,0.4,0.54,0.56,,,,,0.29,0.53,0.39,0.38,0.58,0.912280866,4488514,4920101,0.910558414,0.914003317,0.748221531,1397181,1867336,0.742474115,0.753968946,0.037593999,140749,3743922,,,0.116,153014,,0.107659575,0.124340426,0.247961957,0.160651502,0.335272411,0.081519754,0.070918671,0.092120837,0.211454598,0.196129733,0.226779462,0.261176724,0.250768644,0.271584804,0.062727069,0.059152567,0.066301571,5.467740135,195931,35834,5.388485367,5.546994903,0.234177536,318847,1361561,0.228500108,0.239854964,8.995345986,6283,6984723,,,72.54269336,25051,34532768,71.64436065,73.44102607,85.24189398,63.85202801,111.4984961,17.78407935,16.11855724,19.44960147,66.79952746,63.61375586,69.98529906,58.43098894,56.14095213,60.72102574,81.05457591,79.92808644,82.18106537,,,,6.75,,,,,0.642857143,,,,,0.169479936,448610,2646980,0.167383563,0.171576308,0.148826632,0.146596934,0.15105633,0.020172045,0.019265395,0.021078695,0.008806262,0.008232088,0.009380436,0.642075121,2308427,3595260,0.639688787,0.644461455,0.505257255,0.452638969,0.557875541,0.488399773,0.479549536,0.497250011,0.596762837,0.586289556,0.607236119,0.571436669,0.563225286,0.579648053,0.680151925,0.677269054,0.683034795,0.432,,3595260,0.427704024,0.436295976,79.89856531,,,79.83507877,79.96205185,95.79346444,88.49505874,103.0918701,87.81331131,87.37962535,88.24699727,78.06379056,77.7682438,78.35933733,82.60036841,82.21927025,82.98146658,79.78196079,79.70934679,79.85457479,89.44342685,80.31065458,98.57619913,296.936508,74987,19282426,294.7273687,299.1456473,257.8762325,206.1988087,309.5536562,132.6756116,126.5785019,138.7727213,394.226427,384.2558437,404.1970103,295.2087185,287.6018287,302.8156083,298.7739702,296.1936885,301.3542518,,,,30.559671,1909,6246795,29.18878361,31.93055839,,,,17.2494937,13.69858788,21.43954567,63.67650135,56.97656731,70.3764354,37.16245521,33.67812142,40.64678899,25.14598126,23.54944713,26.7425154,,,,3.864133535,1883,487302,3.689598331,4.038668739,,,,1.814197865,1.431736585,2.267436055,7.808872568,7.013183218,8.604561917,4.616757273,4.187800916,5.045713629,3.090109875,2.884889292,3.295330457,,,,4.970673029,3.689329331,6.553212711,0.083079884,,,0.074899915,0.092064298,0.135939268,,,0.125755762,0.14680894,0.078,,,0.07,0.086,349.9,21122,6036095,,,0.081,564030,,,,0.039275695,257162.679,6547629,,,34.16815915,7097,20770800,33.37320835,34.96310995,66.25500225,42.87674409,97.80545331,3.836981222,2.913580709,4.960187995,36.91730135,33.88123086,39.95337183,36.26395733,33.95790338,38.57001128,36.34028866,35.36430204,37.31627528,,,,0.316350672,,,0.300661234,0.332469608,0.03493061,148117,4240321,0.032547632,0.037313589,0.011361991,16087,1415861,0.008979012,0.01374497,0.001680614,11734,6981974,,,595.0207943,0.898880283,66734.67,74242,,,0.049783739,18773,377091,0.045598879,0.0539686,3.366854071,,,,,,3.770331827,2.936497358,2.941648447,3.53268803,3.233961263,,,,,,3.930373882,2.682759871,2.751035947,3.409631597,0.249424954,,,,,5722.673,,,,,0.83366886,67914,81464,0.82572909,0.84160863,94538,,,93091.53192,95984.46809,60146,52016.46809,68275.53192,118767,116566.3192,120967.6809,67044,64882.6383,69205.3617,59292,57504.76596,61079.23404,104576,103842.0426,105309.9575,,,,,,,,,,,62.60431607,,,,,0.394275956,,,,,7.719246291,,,,,2.258045867,1087,48138969,2.123808304,2.39228343,,,,0.656723083,0.41156486,0.99428664,11.34206903,10.22211487,12.46202319,5.102989321,4.522622594,5.683356048,1.025889332,0.919019542,1.132759121,,,,8.877593359,3287,34532768,8.565219127,9.189967591,9.518495592,,,,3.993719317,3.202748857,4.784689778,5.372906115,4.476134461,6.269677769,4.939766245,4.233210015,5.646322474,10.30987792,9.905107633,10.71464821,,,,3.712415987,1282,34532768,3.509194936,3.915637038,,,,0.933867181,0.591991684,1.401259295,11.3507782,10.03754831,12.6640081,4.766062272,4.112027709,5.420096836,3.052434881,2.833829137,3.271040626,,,,5.835189366,2809,48138969,5.619397457,6.050981275,,,,2.208977643,1.734522567,2.773169146,6.390708946,5.550032996,7.231384895,5.515352094,4.911991702,6.118712487,6.193009892,5.930433555,6.455586228,,,,,,,,,,,0.727095191,3658005,5030985,,,,,,,,563.5794753,,,,,0.624350282,1711341,2740995,0.621159568,0.627540995,0.161756008,432653,2674726,0.159325934,0.164186082,0.906703952,2485271,2740995,0.904712787,0.908695118,6981974,,,,,0.191555282,1337434,6981974,,,0.180541778,1260538,6981974,,,0.075402028,526455,6981974,,,0.005289049,36928,6981974,,,0.077090662,538245,6981974,,,0.001115587,7789,6981974,,,0.13085497,913626,6981974,,,0.695529803,4856171,6981974,,,0.048342401,320655,6632997,0.047326896,0.049357906,0.510460795,3564024,6981974,,,0.087201883,613022,7029917,, -25,001,25001,MA,Barnstable County,2024,1,7228.375133,3014,569931,6738.23759,7718.512676,0,,,,2,,,,2,8358.621106,6261.180788,10933.28221,,4510.670916,2972.560556,6562.789363,,7303.091828,6763.976847,7842.206809,,,,,2,,0.107,,,0.087,0.128,2.965590348,,,2.32836166,3.686213857,4.863278059,,,4.048360545,5.733040985,0.061696658,648,10503,0.057095133,0.066298184,0,,,,0.101351351,0.066970237,0.135732466,0.10259434,0.082171588,0.123017091,0.066666667,0.05157858,0.081754754,0.052758402,0.047824035,0.057692769,,,,0.098684211,0.065158221,0.1322102,0.131,,,0.099,0.167,0.289,,,0.238,0.344,8.5,0.091467361,0.069,,,0.177,,,0.145,0.215,0.900600884,206234,228996,,,0.177168187,,,0.145926788,0.210863706,0.338235294,23,68,0.276112503,0.400334218,218.1,507,232411,,,5.776237448,195,33759,4.965493336,6.58698156,,,,,,,16.55379985,10.37417823,25.06265191,22.77777778,16.34572659,30.90062754,3.891328407,3.160793947,4.621862867,,,,11.85495119,6.905945934,18.98092526,0.03171724,4966,156571,0.026951283,0.036483198,0.000899269,209,232411,,,1112.014354,0.000967921,225,232457,,,1033.142222,0.005256886,1222,232457,,,190.2266776,2267,,,,,4758,2152,2543,3351,2237,0.53,,,,,0.34,0.45,0.32,0.26,0.53,0.57,,,,,0.29,0.46,0.38,0.34,0.57,0.959020531,172874,180261,0.954394569,0.963646494,0.704668317,29329,41621,0.666769797,0.742566836,0.047415531,5292,111609,,,0.089,2812,,0.056829787,0.121170213,0.357142857,0,0.760173253,0.050432277,0,0.178299626,0.076530612,0.003603682,0.149457543,0.275039746,0.1553386,0.394740891,0.061616873,0.044399331,0.078834415,4.561133457,176899,38784,4.291736578,4.830530337,0.232856971,7756,33308,0.200749645,0.264964298,11.40221418,265,232411,,,99.68473092,1082,1085422,93.74494104,105.6245208,292.0987294,178.4214924,451.1227969,,,,69.61768289,44.60536304,103.5855938,63.29636459,40.12446552,94.97562511,101.122012,94.80044107,107.4435829,,,,6.1,,,,,0,,,,,0.162580847,15585,95860,0.151727485,0.17343421,0.148638705,0.138630386,0.158647024,0.01215314,0.008970043,0.015336237,0.006363447,0.004246591,0.008480303,0.746542247,83123,111344,0.731585313,0.761499182,,,,0.737659457,0.643372278,0.831946635,0.756111267,0.640221939,0.872000595,0.602953953,0.525039161,0.680868745,0.755723268,0.738455543,0.772990992,0.288,,111344,0.269426519,0.306573481,79.47241365,,,79.07636454,79.86846276,,,,87.45311968,83.13722422,91.76901515,77.08088013,74.78971403,79.37204623,89.79400675,84.09231661,95.49569689,79.52645206,79.09804287,79.95486126,,,,311.6029463,3014,569931,297.8698901,325.3360025,,,,,,,405.2410494,325.8616588,498.1100497,196.1773615,138.1269668,270.4046512,312.0709351,297.1878338,326.9540365,,,,29.80543291,43,144269,21.57033958,40.14772253,,,,,,,,,,,,,25.37937794,16.99696772,36.44902022,,,,4.286530768,45,10498,3.126624956,5.735715422,,,,,,,,,,,,,3.532677265,2.347438387,5.105702239,,,,,,,0.088,,,0.074,0.104,0.158,,,0.137,0.183,0.072,,,0.06,0.084,381.8,801,209817,,,0.069,15800,,,,0.091467361,19746.70572,215888,,,39.6316233,261,658565,34.82347694,44.43976966,,,,,,,,,,,,,39.2912605,34.22431722,44.35820378,,,,0.3,,,0.284,0.318,0.037004641,4569,123471,0.031047194,0.042962088,0.012471817,437,35039,0.008897349,0.016046285,0.001109883,258,232457,,,900.996124,0.914623969,1885.04,2061,,,0.055261677,491,8885,0.032539349,0.077984005,3.400992051,,,,,,,2.894223816,,3.467038761,3.25181508,,,,,,,2.48849875,,3.334819342,0.071788705,,,,,17010.77139,,,,,0.828646121,61493,74209,0.765438665,0.891853577,89774,,,83594.93617,95953.06383,60370,38580.04255,82159.95745,106600,30096.85106,183103.1489,59909,38135.7234,81682.2766,84559,61569.21277,107548.7872,91722,88868.38298,94575.61702,,,,,,,,,,,61.04147784,,,,,0.354389912,,89774,,,9.514515736,78,8198,,,1.320976915,20,1514031,0.806887018,2.040141708,,,,,,,,,,,,,0.955003188,0.508498977,1.633084537,,,,14.33465214,155,1085422,11.74809372,16.92121056,14.28016016,,,,,,,,,,,,,14.80061145,11.96401798,17.63720493,,,,3.961592818,43,1085422,2.867024366,5.336239528,,,,,,,,,,,,,4.21770345,3.026696815,5.721790977,,,,7.727714954,117,1514031,6.327437054,9.127992855,,,,,,,,,,,,,7.419640155,5.972607848,8.866672462,,,,14.86842105,,15200,,,226,,0.871434734,151512,173865,,,0.527,,,,,130.6055239,,,,,0.813592214,81334,99969,0.805618874,0.821565554,0.16045192,15693,97805,0.148894635,0.172009205,0.928227751,92794,99969,0.922907023,0.933548478,232457,,,,,0.138249225,32137,232457,,,0.331872131,77146,232457,,,0.034092327,7925,232457,,,0.007425029,1726,232457,,,0.0172462,4009,232457,,,0.000752827,175,232457,,,0.037116542,8628,232457,,,0.888955807,206644,232457,,,0.015047645,3332,221430,0.011314822,0.018780468,0.518108726,120438,232457,,,0.027934986,6397,228996,, -25,003,25003,MA,Berkshire County,2024,1,9213.329169,2036,338930,8518.772239,9907.886098,0,,,,2,,,,2,19678.19738,15016.53768,25329.7407,,6217.906968,4061.74327,9110.67437,,9150.377155,8402.860554,9897.893756,,,,,2,,0.125,,,0.102,0.151,3.108382845,,,2.444682538,3.796756723,5.120523335,,,4.22919684,6.002715274,0.087565938,581,6635,0.08076445,0.094367427,0,,,,0.091603053,0.042204614,0.141001493,0.13740458,0.103366585,0.171442576,0.102564103,0.077978687,0.127149518,0.081659471,0.074305534,0.089013407,,,,0.101910828,0.054587406,0.14923425,0.151,,,0.116,0.19,0.313,,,0.256,0.37,8.4,0.060128014,0.089,,,0.208,,,0.167,0.254,0.887642801,114529,129026,,,0.168246454,,,0.138172841,0.200978412,0.212121212,14,66,0.149946537,0.279744308,150,193,128657,,,9.17025743,249,27153,8.031220185,10.30929468,,,,,,,16.77270098,11.23294109,24.08839644,12.16333623,8.082448591,17.57940745,8.453410183,7.204498638,9.702321727,,,,11.65501166,6.523221548,19.22316929,0.031140793,2905,93286,0.026374835,0.03590675,0.001095937,141,128657,,,912.4609929,0.000899428,115,127859,,,1111.817391,0.009737289,1245,127859,,,102.697992,2176,,,,,,,5955,266,2105,0.49,,,,,,0.4,0.42,0.38,0.49,0.52,,,,,,0.39,0.32,0.34,0.52,0.934017473,89378,95692,0.924071145,0.9439638,0.67487367,18831,27903,0.632936087,0.716811252,0.043591937,2701,61961,,,0.158,3096,,0.110340426,0.205659575,,,,0.077405858,0,0.326187094,0.426253687,0.203158854,0.649348521,0.365239295,0.232938095,0.497540494,0.127685977,0.095793143,0.159578812,5.154766683,141287,27409,4.741239018,5.568294347,0.273489364,5644,20637,0.228577348,0.31840138,9.6380298,124,128657,,,110.9643915,700,630833,102.7440344,119.1847487,,,,,,,114.4278607,72.53744795,171.6979746,30.8680084,14.80240985,56.76736647,118.9656139,109.8755994,128.0556283,,,,7.2,,,,,1,,,,,0.141827143,7770,54785,0.128303564,0.155350721,0.133738043,0.120785234,0.146690852,0.004106964,0.002439761,0.005774166,0.006844939,0.003253963,0.010435915,0.735610353,45702,62128,0.715478146,0.75574256,,,,0.586826347,0.417846565,0.755806129,0.62935883,0.520910323,0.737807337,0.538752363,0.435632674,0.641872052,0.75730618,0.736333619,0.778278742,0.258,,62128,0.237570213,0.278429787,77.33463875,,,76.78765447,77.88162302,,,,89.54949117,80.0864714,99.01251094,67.57910605,64.46252528,70.69568683,83.11305933,78.21911278,88.00700588,77.37653323,76.79584984,77.95721662,,,,402.0208364,2036,338930,382.3543606,421.6873121,,,,,,,907.1931289,734.829347,1107.838082,231.8894127,160.5901593,324.0422114,400.1717437,379.2405233,421.102964,,,,45.10831121,44,97543,32.77576798,60.55580234,,,,,,,,,,,,,41.69636973,28.33066025,59.18466852,,,,5.267008047,36,6835,3.688947684,7.291759252,,,,,,,,,,,,,4.008746356,2.512259999,6.069290158,,,,,,,0.098,,,0.083,0.116,0.165,,,0.141,0.188,0.078,,,0.065,0.092,172,197,114559,,,0.089,11450,,,,0.060128014,7889.937861,131219,,,51.03497879,193,378172,43.8347656,58.23519198,,,,,,,,,,,,,54.79004214,46.80791909,62.77216519,,,,0.313,,,0.296,0.331,0.036521286,2662,72889,0.02937235,0.043670222,0.012371421,267,21582,0.008796953,0.015945889,0.001446906,185,127859,,,691.1297297,0.908695827,1132.235,1246,,,0.063727018,409,6418,0.031219999,0.096234037,3.214225937,,,,,,,2.968872545,2.913476452,3.278349047,3.042546477,,,,,,,2.621502009,2.683917207,3.142160908,0.095531507,,,,,12769.20355,,,,,0.781021682,52915,67751,0.720898274,0.841145091,71102,,,64557.14894,77646.85106,76932,42340.68085,111523.3192,67991,35842.23404,100139.766,41042,31370.68085,50713.31915,65139,57470.57447,72807.42553,71410,67734.25532,75085.74468,,,,,,,,,,,65.88570162,,,,,0.418244213,,71102,,,9.444654326,50,5294,,,2.597214882,23,885564,1.646411444,3.897097544,,,,,,,,,,,,,1.794446189,0.98104043,3.010775793,,,,15.36204659,97,630833,12.25336999,19.01925898,15.37649425,,,,,,,,,,,,,16.98993832,13.45109417,21.17453242,,,,5.865260695,37,630833,4.129684808,8.084489261,,,,,,,,,,,,,5.604762964,3.808164509,7.955513641,,,,11.29223862,100,885564,9.078959849,13.50551739,,,,,,,,,,,,,11.40755077,9.16119999,14.03797284,,,,8.8,,10000,,,88,,0.702054192,71771,102230,,,0.629,,,,,174.5710357,,,,,0.702236171,39380,56078,0.691117086,0.713355256,0.152968742,8422,55057,0.137500996,0.168436487,0.877331574,49199,56078,0.868176695,0.886486453,127859,,,,,0.158361946,20248,127859,,,0.25501529,32606,127859,,,0.034060958,4355,127859,,,0.003902737,499,127859,,,0.017918176,2291,127859,,,0.000680437,87,127859,,,0.055498635,7096,127859,,,0.868308058,111021,127859,,,0.006699517,828,123591,0.004202105,0.009196929,0.51226742,65498,127859,,,0.346868073,44755,129026,, -25,005,25005,MA,Bristol County,2024,1,7780.024889,7801,1586195,7516.121271,8043.928506,0,14170.48223,6117.808435,27921.49909,1,2198.212036,1531.135226,3057.18081,,7396.301043,6358.621241,8433.980845,,7240.415892,6430.786653,8050.045131,,7814.49396,7512.589837,8116.398084,,,,,2,,0.14,,,0.116,0.166,3.250513153,,,2.629987466,3.967643248,4.994079176,,,4.240383105,5.798259843,0.084154508,3305,39273,0.081408772,0.086900245,0,,,,0.093312597,0.077414889,0.109210305,0.114402174,0.104118044,0.124686304,0.099141178,0.091951233,0.106331123,0.074624032,0.07144999,0.077798073,,,,0.096805421,0.078773317,0.114837525,0.169,,,0.135,0.207,0.301,,,0.258,0.347,8.5,0.040967604,0.091,,,0.266,,,0.225,0.312,0.899425069,520947,579200,,,0.188206031,,,0.159232407,0.218980801,0.322727273,71,220,0.288979741,0.356697486,344.9,2001,580164,,,10.61457497,1309,123321,10.03954715,11.18960279,,,,2.639218791,1.265607996,4.853617324,20.45069689,17.25169603,23.64969775,36.68150032,33.68844147,39.67455916,5.532503458,5.051391768,6.013615148,,,,11.52368758,8.405456796,15.41960064,0.035112375,16515,470347,0.030346417,0.039878332,0.00050503,293,580164,,,1980.081911,0.000684403,397,580068,,,1461.128464,0.005732087,3325,580068,,,174.4565414,3671,,,,,,1649,4594,4839,3618,0.58,,,,,,0.5,0.49,0.51,0.59,0.54,,,,,0.36,0.47,0.38,0.45,0.55,0.860883572,350600,407256,0.854954372,0.866812772,0.622519625,91356,146752,0.604229271,0.640809979,0.046440593,13866,298575,,,0.149,17173,,0.121595745,0.176404255,0.178571429,0,0.376495873,0.110856769,0.036803196,0.184910343,0.235186745,0.175138514,0.295234976,0.324619997,0.282438573,0.366801421,0.09397797,0.081538909,0.106417031,5.342466214,158917,29746,5.123035779,5.561896649,0.272806587,32207,118058,0.253406514,0.292206659,7.291041843,423,580164,,,92.36512876,2621,2837651,88.8289794,95.90127813,,,,24.67558859,14.37443968,39.50800769,73.77740304,59.66552593,87.88928014,63.07582121,53.14573233,73.00591009,96.89107347,92.88392934,100.8982176,,,,6.7,,,,,1,,,,,0.156762644,34545,220365,0.148932012,0.164593276,0.138358428,0.131345793,0.145371064,0.014589431,0.012171632,0.017007231,0.009643092,0.007894997,0.011391187,0.773080538,220430,285132,0.763571884,0.782589193,,,,0.613445378,0.539117626,0.68777313,0.729268536,0.68228103,0.776256042,0.63646215,0.599750057,0.673174243,0.783791114,0.772338367,0.79524386,0.402,,285132,0.389334294,0.414665706,77.71800892,,,77.48844083,77.94757701,,,,86.00258975,83.58359106,88.42158845,80.30866891,78.67656638,81.94077144,81.27393259,79.48914196,83.05872323,77.86540564,77.61010276,78.12070851,,,,376.0633301,7801,1586195,367.3566029,384.7700574,467.620766,272.4063286,748.7061455,155.224585,118.7345081,199.3924732,333.7939029,293.5157786,374.0720273,375.3245164,335.0465714,415.6024615,374.3895166,364.8826847,383.8963484,,,,36.57574799,192,524938,31.4020786,41.74941739,,,,,,,55.04940684,33.62560784,85.01934409,44.05124628,30.85295133,60.98549306,32.34091125,26.53012576,38.15169674,,,,4.010661251,158,39395,3.38528194,4.636040563,,,,,,,,,,4.830165161,3.281862882,6.85603389,3.613066637,2.929953648,4.407634892,,,,,,,0.104,,,0.09,0.121,0.166,,,0.144,0.188,0.088,,,0.075,0.101,278.7,1387,497740,,,0.091,52560,,,,0.040967604,22461.92248,548285,,,49.52848647,848,1712146,46.19488866,52.86208428,,,,,,,35.8399583,24.67057819,50.3326266,40.43355202,31.00017249,51.83398889,51.44868084,47.67221509,55.22514659,,,,0.35,,,0.334,0.366,0.042535574,15000,352646,0.036578127,0.048493021,0.013307847,1650,123987,0.009733379,0.016882315,0.001146417,665,580068,,,872.2827068,0.914631211,5890.225,6440,,,0.064756861,1883,29078,0.050233562,0.07928016,3.331907421,,,,,,3.639153863,3.081251934,2.984469406,3.442585164,3.184040854,,,,,,3.500325833,2.890950369,2.883155802,3.295246389,0.131207097,,,,,6694.852059,,,,,0.80748101,57617,71354,0.785922584,0.829039437,80702,,,75972.97872,85431.02128,,,,94639,80447.17021,108830.8298,71473,65939.7234,77006.2766,50711,47489.21277,53932.78723,85888,84012.59575,87763.40426,,,,,,,,,,,49.01687827,,,,,0.394228148,,80702,,,7.637935078,228,29851,,,2.049207804,81,3952747,1.627366791,2.546978195,,,,,,,11.18717204,6.925035817,17.10078083,4.875596118,2.786824449,7.917662639,1.227791176,0.877152017,1.671903103,,,,12.02126606,351,2837651,10.72650292,13.3160292,12.36938581,,,,,,,8.458308086,4.503692825,14.46396443,,,,13.299243,11.77711505,14.82137094,,,,4.581254002,130,2837651,3.793720992,5.368787012,,,,,,,11.24227094,6.425929211,18.25674368,4.476348602,2.234577094,8.009424144,4.184520982,3.393364626,5.104760731,,,,8.626911867,341,3952747,7.711251866,9.542571867,,,,,,,7.990837173,4.472410906,13.17967071,7.922843691,5.175464542,11.6088017,8.962875585,7.934830849,9.990920321,,,,6.910420475,,54700,,,378,,0.663218933,281364,424240,,,0.687,,,,,347.9973374,,,,,0.618573834,142186,229861,0.608991963,0.628155705,0.154032294,34437,223570,0.145613676,0.162450912,0.868594498,199656,229861,0.861405045,0.875783952,580068,,,,,0.202009075,117179,580068,,,0.179756511,104271,580068,,,0.062790914,36423,580068,,,0.006871608,3986,580068,,,0.026621017,15442,580068,,,0.001418799,823,580068,,,0.096455933,55951,580068,,,0.790931408,458794,580068,,,0.042029703,23005,547351,0.038700732,0.045358674,0.510431536,296085,580068,,,0.104438881,60491,579200,, -25,007,25007,MA,Dukes County,2024,1,5387.766745,176,50657,3876.464438,6899.069052,0,,,,2,,,,2,,,,2,,,,2,4794.132943,3245.846182,6342.419704,,,,,2,,0.112,,,0.092,0.134,2.864710775,,,2.196796805,3.639138114,5.212874026,,,4.2009722,6.314742289,0.057613169,70,1215,0.044510993,0.070715344,0,,,,,,,0.144736842,0.065634616,0.223839068,,,,0.051336898,0.037191308,0.065482489,,,,,,,0.128,,,0.096,0.163,0.276,,,0.211,0.346,8.5,0.088272416,0.07,,,0.181,,,0.141,0.224,0.938932039,19342,20600,,,0.174424371,,,0.140067366,0.212762141,0.333333333,2,6,0.110000414,0.553214291,227.5,48,21097,,,5.405405405,15,2775,3.025364372,8.915394188,,,,,,,,,,,,,,,,,,,,,,0.040613661,638,15709,0.033464725,0.047762597,0.000474001,10,21097,,,2109.7,0.000575043,12,20868,,,1739,0.006229634,130,20868,,,160.5230769,2021,,,,,,,3683,,1916,0.47,,,,,0.38,,0.57,,0.47,0.4,,,,,0.28,,0.47,0.26,0.41,0.94187969,14812,15726,0.909895126,0.973864254,0.6051271,2809,4642,0.472653353,0.737600848,0.052439533,503,9592,,,0.1,354,,0.065446809,0.134553192,,,,0.131428571,0,0.544343072,0.338461539,0,0.951808754,,,,0.030534351,0,0.067085207,4.321890479,188469,43608,3.040735035,5.603045923,0.207724138,753,3625,0.089272422,0.326175854,16.5900365,35,21097,,,69.56176091,63,90567,53.45316704,88.99970992,,,,,,,,,,,,,66.02503873,49.31065695,86.58305409,,,,5.4,,,,,0,,,,,0.230936819,1590,6885,0.183246504,0.278627134,0.212068212,0.166068994,0.258067429,0.020188816,0,0.040914566,0.011619463,0.0003345,0.022904425,0.65390718,6594,10084,0.580836916,0.726977444,,,,,,,,,,,,,0.614898264,0.522560848,0.70723568,0.103,,10084,0.057317608,0.148682392,82.1266267,,,80.70362237,83.54963103,,,,,,,,,,,,,82.76776251,81.28591309,84.24961193,,,,214.8286739,176,50657,178.1031219,251.554226,,,,,,,,,,,,,197.5557402,159.6663199,235.4451605,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.089,,,0.074,0.104,0.154,,,0.13,0.181,0.072,,,0.06,0.085,270.3,50,18498,,,0.07,1430,,,,0.088272416,1459.5844,16535,,,25.04920379,14,55890,13.69463281,42.02830761,,,,,,,,,,,,,22.7010071,11.33226095,40.61837237,,,,0.301,,,0.283,0.319,0.046973728,565,12028,0.037441813,0.056505643,0.020350335,79,3882,0.013201399,0.027499271,0.000862565,18,20868,,,1159.333333,0.917473118,170.65,186,,,,,,,,3.48404546,,,,,,,,,3.551057097,3.337015448,,,,,,,,,3.510626444,0.038429364,,,,,14948.734,,,,,1.078635294,68763,63750,0.684056296,1.473214292,89136,,,78409.02128,99862.97872,,,,,,,49850,21622.42553,78077.57447,56818,9439.617021,104196.383,95831,85829.6383,105832.3617,,,,,,,,,,,25.47896954,,,,,0.356926494,,89136,,,14.6878825,12,817,,,,,,,,,,,,,,,,,,,,,,,,,,15.76568334,13,90567,8.146358639,27.53947601,14.35401416,,,,,,,,,,,,,16.37901703,7.854375314,30.12159549,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1500,,,,,0.949686463,12873,13555,,,0.335,,,,,28.52799683,,,,,0.766053051,5285,6899,0.658381082,0.87372502,0.204167315,1313,6431,0.150501413,0.257833216,0.892158284,6155,6899,0.844058699,0.940257868,20868,,,,,0.172944221,3609,20868,,,0.270078589,5636,20868,,,0.0477765,997,20868,,,0.012459268,260,20868,,,0.014040636,293,20868,,,0.000766724,16,20868,,,0.037186122,776,20868,,,0.864769024,18046,20868,,,0.050093609,990,19763,0.018094562,0.082092657,0.506085873,10561,20868,,,0.317281553,6536,20600,, -25,009,25009,MA,Essex County,2024,1,5867.167967,8804,2211693,5676.491281,6057.844654,0,,,,2,3187.249021,2516.953042,3857.544999,,7250.158164,6176.450897,8323.865431,,5437.287255,5065.6951,5808.87941,,6005.723837,5764.910627,6246.537046,,,,,2,,0.127,,,0.106,0.149,2.928061111,,,2.359979043,3.536284232,5.088553811,,,4.34776158,5.852926496,0.074440846,4390,58973,0.072322303,0.076559388,0,,,,0.090658258,0.079485431,0.101831085,0.103541186,0.091825756,0.115256616,0.080975385,0.077348646,0.084602125,0.064284743,0.061481956,0.06708753,,,,0.083798883,0.065645437,0.101952329,0.124,,,0.097,0.153,0.301,,,0.257,0.345,8.8,0.041017444,0.077,,,0.224,,,0.189,0.262,0.9726646,787692,809829,,,0.179124969,,,0.153046518,0.206388445,0.25698324,46,179,0.21906089,0.296084825,424.5,3426,807074,,,9.655164639,1713,177418,9.197932159,10.11239712,,,,2.252252252,1.287356764,3.657516554,6.056338028,4.383001861,8.157847579,26.95126347,25.51142865,28.39109828,2.338901269,2.051260062,2.626542476,,,,3.41997264,1.914132725,5.640724777,0.031460402,20485,651136,0.027885933,0.03503487,0.000740948,598,807074,,,1349.622074,0.000924681,746,806765,,,1081.454424,0.006592998,5319,806765,,,151.6760669,3301,,,,,,2208,5312,4478,3244,0.53,,,,,,0.42,0.4,0.34,0.54,0.56,,,,,0.31,0.54,0.41,0.28,0.58,0.899434502,506262,562867,0.895127635,0.90374137,0.691335812,138328,200088,0.673951374,0.708720251,0.039288913,16538,420933,,,0.115,18869,,0.092361702,0.137638298,0.292168675,0.044141375,0.540195975,0.13540128,0.079884081,0.190918479,0.175031766,0.108910109,0.241153423,0.219863112,0.196000497,0.243725727,0.066697545,0.054661881,0.078733209,5.416224799,191014,35267,5.200138602,5.632310997,0.262740449,44323,168695,0.24538669,0.280094208,8.26442185,667,807074,,,77.15959825,3058,3963214,74.42478743,79.89440906,,,,18.86868741,12.53810576,27.27050686,68.15396997,55.07534523,83.40319869,52.56698317,47.77871319,57.35525314,89.26073753,85.71968269,92.80179237,,,,6.5,,,,,1,,,,,0.192881533,57335,297255,0.185340576,0.200422489,0.164992266,0.157725387,0.172259144,0.028023078,0.024529765,0.031516391,0.011925788,0.009563701,0.014287874,0.703885639,290022,412030,0.696823775,0.710947504,,,,0.690962866,0.648969333,0.732956399,0.65549539,0.641764892,0.669225888,0.628696404,0.602202797,0.655190012,0.720423973,0.712478314,0.728369632,0.427,,412030,0.415633916,0.438366084,79.70932155,,,79.52651509,79.89212801,,,,86.51169351,84.67733324,88.34605379,78.50305156,77.13147915,79.87462397,83.36483868,82.55353524,84.17614212,79.41661029,79.20387102,79.62934956,,,,296.5345967,8804,2211693,290.0507814,303.018412,,,,172.1750474,144.8564319,199.4936628,367.9491635,325.6020497,410.2962773,258.8762087,243.4601574,274.2922601,306.2111613,298.4222269,314.0000958,,,,29.96596344,226,754189,26.05908321,33.87284366,,,,,,,65.56148731,40.58359397,100.2176977,39.3477903,31.94443814,47.95235316,22.91027287,18.55739458,27.97736441,,,,3.790699249,224,59092,3.294276824,4.287121673,,,,,,,8.768585589,5.558531085,13.15718372,5.147822802,4.181401683,6.11424392,2.570265038,2.028412973,3.212390296,,,,,,,0.093,,,0.079,0.107,0.16,,,0.139,0.183,0.084,,,0.072,0.096,289.6,1996,689171,,,0.077,62340,,,,0.041017444,30482.48271,743159,,,37.15383994,887,2387371,34.70873238,39.59894749,,,,,,,48.21260583,34.59819834,65.4058438,32.05907714,27.2955081,36.82264618,40.14944174,37.07465547,43.224228,,,,0.303,,,0.291,0.316,0.03823507,18526,484529,0.033469112,0.043001027,0.012331488,2167,175729,0.00875702,0.015905956,0.001186219,957,806765,,,843.0146291,0.892997785,8063.77,9030,,,0.062155017,2680,43118,0.049226646,0.075083387,3.317079962,,,,,,3.650409957,3.163318274,2.964758851,3.499437444,3.164188034,,,,,,3.721603274,2.842595342,2.782302829,3.36247088,0.288809525,,,,,9413.210345,,,,,0.78506423,62886,80103,0.762621829,0.807506631,92118,,,88758,95478,81250,24404.04255,138095.9575,131596,116813.1915,146378.8085,74023,66261.6383,81784.3617,59388,56398.55319,62377.44681,106057,103658.5319,108455.4681,,,,,,,,,,,55.86347749,,,,,0.410831759,,92118,,,7.800557504,347,44484,,,1.957133343,108,5518275,1.588015866,2.326250821,,,,,,,6.407415516,3.310805096,11.19246544,4.215506826,3.128830419,5.557620217,1.115520733,0.807307886,1.502599107,,,,9.129490916,378,3963214,8.177234606,10.08174723,9.537713583,,,,,,,8.350334221,4.314739543,14.58635341,4.241638846,2.919749011,5.956837964,11.03311791,9.746647888,12.31958793,,,,3.128773768,124,3963214,2.578068298,3.679479238,,,,,,,,,,3.746674826,2.579038555,5.261724455,2.961949914,2.352215776,3.681433298,,,,4.747860518,262,5518275,4.172945865,5.322775171,,,,,,,5.33951293,2.560503995,9.819554387,4.721367645,3.56647038,6.131088605,4.929045099,4.228167688,5.629922509,,,,8.823529412,,76500,,,675,,0.74738871,424599,568110,,,0.693,,,,,548.8236393,,,,,0.636559494,197371,310059,0.630233479,0.642885508,0.180212446,54544,302665,0.172384187,0.188040705,0.902354068,279783,310059,0.896980253,0.907727883,806765,,,,,0.205835652,166061,806765,,,0.185474085,149634,806765,,,0.03679882,29688,806765,,,0.009834338,7934,806765,,,0.040847087,32954,806765,,,0.001732847,1398,806765,,,0.238550259,192454,806765,,,0.669442775,540083,806765,,,0.069314633,52840,762321,0.065789562,0.072839704,0.512983335,413857,806765,,,0.05154545,41743,809829,, -25,011,25011,MA,Franklin County,2024,1,6537.771098,960,193577,5803.084839,7272.457356,0,,,,2,,,,2,,,,2,,,,2,5718.311304,4967.815892,6468.806716,,,,,2,,0.124,,,0.101,0.149,3.247173396,,,2.507555818,4.114148364,5.544321375,,,4.544926695,6.645552154,0.061585198,223,3621,0.053754916,0.06941548,0,,,,,,,,,,0.064393939,0.034784982,0.094002897,0.061004382,0.052392271,0.069616492,,,,0.125,0.061437871,0.188562129,0.144,,,0.106,0.185,0.278,,,0.216,0.343,8.5,0.053411922,0.087,,,0.198,,,0.156,0.246,0.695955173,49433,71029,,,0.191432878,,,0.154127756,0.22874427,0.2,7,35,0.115443134,0.296296308,143.6,102,71015,,,7.671326287,90,11732,6.168652244,9.42936241,,,,,,,,,,24.20382166,14.57228174,37.7972657,6.242568371,4.796960939,7.986956727,,,,,,,0.027994271,1505,53761,0.023228314,0.032760228,0.000633669,45,71015,,,1578.111111,0.000691173,49,70894,,,1446.816327,0.009436624,669,70894,,,105.9701046,2876,,,,,,,1423,571,2872,0.42,,,,,,0.35,0.23,0.18,0.42,0.56,,,,,,0.42,0.49,0.28,0.56,0.936869154,50679,54094,0.928344963,0.945393345,0.691595358,11800,17062,0.65067535,0.732515367,0.033733619,1354,40138,,,0.162,1831,,0.119106383,0.204893617,,,,0.634361234,0.055009565,1,0.552147239,0.256884384,0.847410094,0.231953802,0.089236464,0.37467114,0.123218143,0.093135912,0.153300374,4.451764949,129395,29066,4.005297411,4.898232486,0.261758001,3100,11843,0.220394675,0.303121326,10.84277969,77,71015,,,80.99069173,286,353127,71.60409494,90.37728853,,,,,,,,,,,,,72.46104043,63.11657101,81.80550984,,,,6.7,,,,,1,,,,,0.159954531,4925,30790,0.142530597,0.177378465,0.147246282,0.129206997,0.165285567,0.01266645,0.008118609,0.017214291,0.00422215,0.002125352,0.006318949,0.722380885,25547,35365,0.705546029,0.739215741,,,,0.610204082,0.385033701,0.835374463,,,,0.67268623,0.569424244,0.775948216,0.706699157,0.689464,0.723934314,0.349,,35365,0.325773597,0.372226404,79.66336851,,,79.00842738,80.31830963,,,,,,,,,,95.52396036,69.59911538,121.4488053,81.43807644,80.72084663,82.15530625,,,,309.9380492,960,193577,287.9030675,331.9730308,,,,,,,,,,,,,268.1426166,246.4962731,289.7889601,,,,28.26136107,15,53076,15.81766925,46.61281723,,,,,,,,,,,,,25.14228246,12.55093682,44.98648834,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.099,,,0.082,0.116,0.165,,,0.139,0.192,0.077,,,0.064,0.091,152.7,96,62884,,,0.087,6220,,,,0.053411922,3812.115719,71372,,,39.25055093,83,211462,31.26284472,48.65696333,,,,,,,,,,,,,33.6125627,25.88576904,42.92249217,,,,0.305,,,0.288,0.323,0.032697483,1373,41991,0.026740036,0.03865493,0.011655949,145,12440,0.008081481,0.015230417,0.001142551,81,70894,,,875.2345679,0.822142857,604.275,735,,,0.070079011,204,2911,0.030759244,0.109398778,3.241716459,,,,,,,,,3.29141545,2.96712324,,,,,,,,2.355637277,3.057207787,0.0717468,,,,,12059.81413,,,,,0.902469898,57037,63201,0.837434634,0.967505161,69929,,,62747.89362,77110.10638,,,,71576,5853.446809,137298.5532,,,,62438,32574.51064,92301.48936,71272,68626.89362,73917.10638,,,,,,,,,,,63.70671203,,,,,0.425259907,,69929,,,6.93962526,20,2882,,,,,,,,,,,,,,,,,,,,,,,,,,11.00398822,48,353127,7.861410516,14.98430874,13.59284337,,,,,,,,,,,,,9.14166682,6.167844215,13.05029781,,,,3.681395079,13,353127,1.960187834,6.295297703,,,,,,,,,,,,,3.764209892,1.94502218,6.57531715,,,,8.50013155,42,494110,6.12614716,11.48970852,,,,,,,,,,,,,7.598257764,5.262014384,10.61780363,,,,21.55172414,,5800,,,125,,0.754306262,43003,57010,,,0.719,,,,,82.99391822,,,,,0.695940321,21737,31234,0.683435823,0.70844482,0.154846104,4729,30540,0.136984173,0.172708034,0.880642889,27506,31234,0.869484858,0.89180092,70894,,,,,0.164174683,11639,70894,,,0.249203036,17667,70894,,,0.014204305,1007,70894,,,0.005106215,362,70894,,,0.017899963,1269,70894,,,0.001974779,140,70894,,,0.049242531,3491,70894,,,0.894236466,63396,70894,,,0.010716275,731,68214,0.00703954,0.014393011,0.506812988,35930,70894,,,0.548536513,38962,71029,, -25,013,25013,MA,Hampden County,2024,1,8496.89936,6667,1290848,8189.470414,8804.328306,0,,,,2,3362.547524,2196.527681,4926.91121,,12337.77677,11062.78099,13612.77255,,9487.548112,8892.735551,10082.36067,,7896.268817,7499.56427,8292.973364,,,,,2,,0.168,,,0.144,0.196,3.683493137,,,3.007236507,4.437863998,5.867337289,,,5.068648947,6.742658806,0.089282551,3024,33870,0.086245699,0.092319403,0,,,,0.086999023,0.069728278,0.104269767,0.136308069,0.124551255,0.148064882,0.098512871,0.093438017,0.103587725,0.071814571,0.067731394,0.075897749,,,,0.089655172,0.068859273,0.110451072,0.159,,,0.13,0.193,0.358,,,0.311,0.407,8.1,0.04800976,0.109,,,0.271,,,0.231,0.312,0.954725487,444735,465825,,,0.161932969,,,0.136391622,0.191247098,0.313084112,67,214,0.278731967,0.347759427,531,2457,462718,,,15.64798354,1734,110813,14.91145445,16.38451263,,,,6.677796327,4.078971481,10.31331483,15.37817763,12.89217104,17.86418423,31.8718985,30.10217677,33.64162023,4.862613297,4.284728389,5.440498205,,,,11.77240026,8.245244414,16.29796419,0.037129653,13779,371105,0.032363696,0.041895611,0.000665632,308,462718,,,1502.331169,0.000913151,421,461041,,,1095.109264,0.011157359,5144,461041,,,89.62694401,3608,,,,,,1854,4523,6060,3412,0.48,,,,,,0.4,0.43,0.41,0.49,0.53,,,,,0.21,0.49,0.39,0.35,0.56,0.86660093,275963,318443,0.859874289,0.873327571,0.610642562,71607,117265,0.588035274,0.63324985,0.049233842,10995,223322,,,0.233,21934,,0.197255319,0.268744681,0.520599251,0.181033812,0.86016469,0.071740714,0.019120811,0.124360616,0.323883242,0.264595852,0.383170631,0.378578568,0.350007417,0.407149719,0.079406053,0.062879232,0.095932875,5.566836631,136471,24515,5.318362892,5.815310369,0.359198565,35246,98124,0.333980041,0.384417089,8.320402491,385,462718,,,94.20134573,2198,2333300,90.26313153,98.13955994,,,,16.61405549,7.96708539,30.55383958,100.9115122,86.29070867,115.5323157,84.21655034,76.96403528,91.4690654,101.306229,96.09357958,106.5188784,,,,7.7,,,,,1,,,,,0.173472215,31310,180490,0.164490843,0.182453586,0.153695299,0.144976745,0.162413853,0.019945703,0.016702011,0.023189396,0.010554601,0.008207822,0.012901381,0.781991425,164140,209900,0.773559799,0.79042305,,,,0.684422639,0.624886949,0.743958329,0.755540834,0.713038692,0.798042975,0.691039974,0.660266599,0.72181335,0.822638421,0.809755982,0.835520859,0.275,,209900,0.261893617,0.288106383,76.88380301,,,76.62668612,77.14091989,,,,85.65421374,82.97939539,88.32903208,73.24888755,72.26635714,74.23141797,76.10185578,75.4410314,76.76268017,77.44003578,77.12081497,77.75925659,,,,402.6875267,6667,1290848,392.5719655,412.8030879,,,,159.7820232,120.6976232,207.4902475,579.4268175,534.0593511,624.794284,461.7326853,436.6946967,486.7706739,378.9989663,366.8160022,391.1819305,,,,44.89571146,203,452159,38.7196315,51.07179143,,,,,,,73.99658085,49.55667153,106.2714333,50.60728745,40.69423534,62.20494815,35.811419,28.11966639,44.95795715,,,,5.469727387,188,34371,4.687842483,6.25161229,,,,,,,10.53283767,7.294296278,14.71858491,6.234507624,4.965750522,7.728610215,3.812428517,2.909284595,4.907351214,,,,,,,0.118,,,0.103,0.137,0.187,,,0.166,0.211,0.106,,,0.092,0.122,489.7,1934,394940,,,0.109,50950,,,,0.04800976,22252.04354,463490,,,49.38711169,688,1393076,45.69669436,53.07752901,,,,,,,50.58587642,38.108205,65.8444714,52.7536325,45.38689275,60.12037226,49.55214301,44.81306489,54.29122113,,,,0.371,,,0.357,0.384,0.045402201,12498,275273,0.038253265,0.052551137,0.013764544,1396,101420,0.010190075,0.017339012,0.001930414,890,461041,,,518.0235955,0.868144542,4636.76,5341,,,0.09264934,2449,26433,0.073569153,0.111729527,3.148274879,,,,,,3.340784345,3.060095109,2.918963784,3.394764847,2.955826918,,,,,,3.360154327,2.734736887,2.647269872,3.300153488,0.258032818,,,,,4867.69,,,,,0.878346144,56338,64141,0.834013272,0.922679015,64030,,,61084.6383,66975.3617,,,,68056,61056,75056,52928,49450.04255,56405.95745,36843,34535.08511,39150.91489,79743,78147.59575,81338.40426,,,,,,,,,,,60.11530369,,,,,0.464438544,,64030,,,6.762939094,170,25137,,,5.286547692,173,3272457,4.498767287,6.074328097,,,,,,,21.63769838,16.30047563,28.16443863,9.252087354,7.313391116,11.54702374,1.673568496,1.158994834,2.338644227,,,,10.45035766,254,2333300,9.122139433,11.77857588,10.8858698,,,,,,,,,,6.698593085,4.716427716,9.23312819,12.96773377,11.05199821,14.88346932,,,,8.271546736,193,2333300,7.10456477,9.438528703,,,,,,,22.05716113,15.75795929,30.03559307,10.56771385,8.155938442,13.4694188,5.794911788,4.615614892,7.183665037,,,,9.411888376,308,3272457,8.360755836,10.46302092,,,,,,,10.22873014,6.681746129,14.98745961,9.963786381,7.947506235,12.33584553,9.549184948,8.20542556,10.89294434,,,,8.976034858,,45900,,,412,,0.624723775,220793,353425,,,0.691,,,,,322.541948,,,,,0.617199258,113182,183380,0.608469304,0.625929212,0.166408156,29611,177942,0.156850097,0.175966214,0.85486967,156766,183380,0.846375631,0.863363708,461041,,,,,0.207599758,95712,461041,,,0.182510883,84145,461041,,,0.079392071,36603,461041,,,0.007851796,3620,461041,,,0.027995341,12907,461041,,,0.001900048,876,461041,,,0.276639171,127542,461041,,,0.597165979,275318,461041,,,0.055680568,24497,439956,0.051523513,0.059837623,0.51256179,236312,461041,,,0.095273976,44381,465825,, -25,015,25015,MA,Hampshire County,2024,1,5644.36879,1658,449643,5157.27723,6131.46035,0,,,,2,,,,2,9148.641458,5229.239067,14856.82056,1,6868.241489,4906.772415,9352.595523,,5593.766968,5071.449215,6116.084721,,,,,2,,0.116,,,0.096,0.138,3.092415488,,,2.438044795,3.912725698,5.37225083,,,4.529202633,6.41481888,0.073608618,492,6684,0.067348256,0.079868979,0,,,,0.049382716,0.028280945,0.070484487,0.189189189,0.132750343,0.245628036,0.088888889,0.068101534,0.109676244,0.067893903,0.060956891,0.074830916,,,,0.110526316,0.065942353,0.155110279,0.128,,,0.096,0.161,0.264,,,0.218,0.328,8.2,0.124956948,0.067,,,0.192,,,0.156,0.234,0.917065086,148847,162308,,,0.195988473,,,0.165610675,0.237194574,0.435897436,17,39,0.357090593,0.510531978,226.5,366,161572,,,1.55774072,112,71899,1.269243101,1.846238338,,,,,,,,,,7.324665812,5.232848643,9.974115906,1.241192308,0.95792602,1.582001486,,,,,,,0.024784954,2720,109744,0.020018997,0.029550912,0.001281163,207,161572,,,780.5410628,0.000762664,124,162588,,,1311.193548,0.010794155,1755,162588,,,92.64273504,2482,,,,,,1061,2150,6163,2442,0.49,,,,,,0.29,0.44,0.41,0.49,0.61,,,,,,0.58,0.43,0.48,0.61,0.952373791,94985,99735,0.944852687,0.959894894,0.771982867,24512,31752,0.733995209,0.809970526,0.03382038,3016,89177,,,0.091,2012,,0.060021277,0.121978723,,,,0.03931848,0,0.173971212,0.451104101,0.219409545,0.682798657,0.243254462,0.144139017,0.342369908,0.063230887,0.043414834,0.083046939,4.94711089,158733,32086,4.583117683,5.311104096,0.224007315,5145,22968,0.191695568,0.256319061,8.664867675,140,161572,,,61.33889803,495,806992,55.93522029,66.74257578,,,,24.34597849,12.15342474,43.56168057,63.61862753,35.60686289,104.9292513,72.47127032,50.47889513,100.7899935,62.98129322,56.97927289,68.98331354,,,,5.5,,,,,0,,,,,0.150910159,8995,59605,0.13538275,0.166437568,0.1410039,0.125156564,0.156851237,0.010905125,0.006744656,0.015065595,0.004613707,0.0025953,0.006632114,0.686455239,51537,75077,0.670702191,0.702208288,,,,0.409603703,0.328867473,0.490339932,0.653877888,0.512322568,0.795433208,0.651537335,0.578034125,0.725040546,0.701845693,0.682268096,0.721423291,0.364,,75077,0.340379644,0.387620356,80.27633482,,,79.82361578,80.72905386,,,,88.77299405,84.49387256,93.05211553,75.47566236,71.82586922,79.12545549,83.29666273,78.97583416,87.61749129,80.20277764,79.72717072,80.67838455,,,,283.8633804,1658,449643,268.9133532,298.8134077,,,,,,,498.0895151,364.6641263,664.3816125,256.9206691,191.8806444,336.9172759,285.9278445,269.8593489,301.99634,,,,22.71241268,33,145295,15.63417982,31.89667178,,,,,,,,,,,,,18.19687196,11.11512213,28.10359288,,,,5.991524185,41,6843,4.2996212,8.128179098,,,,,,,,,,,,,4.815100154,3.116078938,7.108037692,,,,,,,0.093,,,0.079,0.109,0.162,,,0.14,0.188,0.075,,,0.064,0.089,132,193,146172,,,0.067,10840,,,,0.124956948,19753.19438,158080,,,28.11061527,136,483803,23.38610314,32.8351274,,,,,,,,,,46.92318005,25.65333918,78.72912295,28.13471799,22.94720239,33.3222336,,,,0.311,,,0.297,0.327,0.028726449,2499,86993,0.023960492,0.033492407,0.010225539,248,24253,0.006651071,0.013800007,0.001353113,220,162588,,,739.0363636,0.934020339,1377.68,1475,,,0.016770777,247,14728,0.006412243,0.02712931,3.322633579,,,,,,,2.931304994,2.909216291,3.399631248,3.09899631,,,,,,,2.479603985,2.563886406,3.179908009,0.080873263,,,,,8963.075529,,,,,0.921022147,66787,72514,0.87483589,0.967208405,81878,,,77001.23404,86754.76596,68403,34773.21277,102032.7872,85078,53436.80851,116719.1915,29340,4061.361702,54618.6383,62033,51463.29787,72602.70213,86194,83273.65957,89114.34043,,,,,,,,,,,50.45029355,,,,,0.363198906,,81878,,,10.23114816,54,5278,,,,,,,,,,,,,,,,,,,,,,,,,,9.21263878,78,806992,7.181703889,11.63961487,9.665523326,,,,,,,,,,,,,9.130815119,6.933410734,11.80369591,,,,3.46967504,28,806992,2.305573866,5.014646483,,,,,,,,,,,,,3.573406707,2.289549104,5.316945928,,,,5.132289178,58,1130100,3.897162347,6.6346739,,,,,,,,,,,,,4.557117104,3.298008244,6.138406833,,,,,,11500,,,,,0.674290076,88332,131000,,,0.73,,,,,174.1716594,,,,,0.688784316,42301,61414,0.678347125,0.699221508,0.142640642,8565,60046,0.128528605,0.156752679,0.901048621,55337,61414,0.888694213,0.913403028,162588,,,,,0.138485005,22516,162588,,,0.192855561,31356,162588,,,0.02994686,4869,162588,,,0.003364332,547,162588,,,0.05680616,9236,162588,,,0.000811868,132,162588,,,0.065023249,10572,162588,,,0.825208503,134169,162588,,,0.011178664,1664,148855,0.008499892,0.013857436,0.532013433,86499,162588,,,0.285469601,46334,162308,, -25,017,25017,MA,Middlesex County,2024,1,4324.309989,13407,4512152,4212.556592,4436.063386,0,,,,2,2126.819962,1920.102755,2333.537169,,6225.559582,5662.045592,6789.073573,,4867.657128,4480.336414,5254.977841,,4553.922609,4412.28513,4695.560088,,,,,2,,0.102,,,0.085,0.122,2.850778221,,,2.334218076,3.455052543,4.556938075,,,3.91640446,5.25812573,0.070839275,8097,114301,0.069351924,0.072326627,0,,,,0.084687812,0.08073006,0.088645565,0.09369259,0.087371844,0.100013337,0.076313419,0.072281178,0.080345661,0.06151717,0.059680605,0.063353735,,,,0.065076799,0.055357,0.074796598,0.094,,,0.071,0.12,0.234,,,0.202,0.268,9.3,0.02573334,0.061,,,0.176,,,0.148,0.206,0.973376871,1588553,1632002,,,0.190810733,,,0.167423962,0.216544418,0.291304348,67,230,0.258028543,0.325103899,293.2,4735,1614742,,,3.890618053,1365,350844,3.684218694,4.097017411,,,,2.003472686,1.61102863,2.462608072,3.851274249,3.058467668,4.786782245,20.0207939,18.58887838,21.45270943,1.554550594,1.394628812,1.714472375,,,,4.219727225,3.187536597,5.479666793,0.024149202,31725,1313708,0.021766223,0.026532181,0.00124602,2012,1614742,,,802.555666,0.00105188,1701,1617105,,,950.6790124,0.006878341,11123,1617105,,,145.3838892,2937,,,,,,2013,3523,3135,2968,0.55,,,,,,0.43,0.4,0.44,0.56,0.59,,,,,0.32,0.55,0.42,0.43,0.61,0.934242078,1069866,1145170,0.931410066,0.93707409,0.83077045,387743,466727,0.819724664,0.841816237,0.030693035,27912,909392,,,0.079,24170,,0.067085106,0.090914894,0.28358209,0,0.663857361,0.065247137,0.050733105,0.07976117,0.172910961,0.135332077,0.210489844,0.18855081,0.16394411,0.21315751,0.042422303,0.036484101,0.048360504,4.953077341,237084,47866,4.824195338,5.081959344,0.161444342,51024,316047,0.151712701,0.171175984,9.277023822,1498,1614742,,,55.97579482,4508,8053481,54.34174841,57.60984122,,,,15.2179351,12.85989162,17.57597857,42.86922296,36.64097364,49.09747228,43.30090245,38.31717802,48.28462688,66.72788919,64.6123644,68.84341397,,,,6.9,,,,,1,,,,,0.155691755,95260,611850,0.151097484,0.160286025,0.1359285,0.1311788,0.140678199,0.018068154,0.016331216,0.019805092,0.008882896,0.007607663,0.010158129,0.580891591,511823,881099,0.575005433,0.586777749,0.549393414,0.461136664,0.637650164,0.506199787,0.490731744,0.52166783,0.640960679,0.613791565,0.668129793,0.596132347,0.577201667,0.615063028,0.668173779,0.662198876,0.674148683,0.473,,881099,0.464574898,0.481425102,81.70207876,,,81.57415728,81.83000025,,,,87.73507768,87.03800356,88.4321518,79.98695029,79.24821463,80.72568594,86.02571669,84.65250385,87.39892952,81.2993526,81.1540398,81.4446654,,,,234.7991087,13407,4512152,230.7294171,238.8688004,,,,126.8297088,117.3661853,136.2932324,326.7503006,303.9807627,349.5198386,253.5815867,234.9871899,272.1759834,243.8271171,239.023348,248.6308861,,,,23.67501044,343,1448785,21.16948284,26.18053804,,,,14.35394857,9.613064636,20.61466451,53.62693166,39.67349927,70.89764763,25.00444524,18.23841393,33.45791502,22.11765487,19.05230429,25.18300544,,,,2.845465363,330,115974,2.538455446,3.15247528,,,,1.66475913,1.138694013,2.350143173,5.594927266,4.08097834,7.486452878,3.043478261,2.251581972,4.023639664,2.67162615,2.28240855,3.060843749,,,,,,,0.081,,,0.069,0.094,0.132,,,0.114,0.15,0.071,,,0.061,0.082,288.2,4014,1392660,,,0.061,99660,,,,0.02573334,38679.39673,1503085,,,22.43673255,1085,4835820,21.10167246,23.77179264,,,,2.617446358,1.524758959,4.190785175,24.89148867,19.16947936,31.78587533,24.27976172,19.73339224,29.5597387,25.97883927,24.26819797,27.68948057,,,,0.285,,,0.271,0.299,0.028524329,28533,1000304,0.024949861,0.032098797,0.010618496,3497,329331,0.008235518,0.013001475,0.001217608,1969,1617105,,,821.2823768,0.927876268,15733.07,16956,,,0.042103034,3578,84982,0.033949107,0.05025696,3.53540947,,,,,,3.813124749,3.102324262,3.004370381,3.639241582,3.456504891,,,,,,3.993492234,2.839974038,2.803942263,3.554965501,0.1602399,,,,,10856.10932,,,,,0.810827244,78677,97033,0.794202041,0.827452447,118494,,,115607.0213,121380.9787,52857,13697.51064,92016.48936,137922,133978.1702,141865.8298,81178,74636.7234,87719.2766,82217,77379.55319,87054.44681,127367,125681.0426,129052.9575,,,,,,,,,,,51.81026031,,,,,0.394323763,,118494,,,9.042936239,766,84707,,,0.970753253,109,11228394,0.788509908,1.152996597,,,,,,,3.25447233,1.959404939,5.082261682,1.852231176,1.078992917,2.965601541,0.781552386,0.600566313,0.99994501,,,,7.754005599,681,8053481,7.159571871,8.348439328,8.455970778,,,,3.600995993,2.522093323,4.985296323,6.435401868,4.240970381,9.363171846,5.808013858,4.130065622,7.939746141,8.739397662,7.98787048,9.490924844,,,,1.837714648,148,8053481,1.541638589,2.133790706,,,,,,,2.590996992,1.293416363,4.636009326,1.493134567,0.716016063,2.745927631,2.025231592,1.656677048,2.393786136,,,,3.758329107,422,11228394,3.399742015,4.1169162,,,,1.619123111,1.026385162,2.429479649,4.624776469,3.047756835,6.728806952,4.031326677,2.838426014,5.556652794,4.069034646,3.628671935,4.509397358,,,,3.983228512,,143100,,,570,,0.767218685,869347,1133115,,,0.723,,,,,580.3382437,,,,,0.614995832,387309,629775,0.609561065,0.620430599,0.148454247,91555,616722,0.143746782,0.153161711,0.934052638,588243,629775,0.930585224,0.937520052,1617105,,,,,0.192593555,311444,1617105,,,0.165618806,267823,1617105,,,0.054321148,87843,1617105,,,0.002896534,4684,1617105,,,0.143421114,231927,1617105,,,0.000678991,1098,1617105,,,0.087943578,142214,1617105,,,0.691396044,1118060,1617105,,,0.043476567,66968,1540324,0.041192748,0.045760386,0.505668463,817719,1617105,,,0.035377408,57736,1632002,, -25,019,25019,MA,Nantucket County,2024,1,4561.486713,92,35056,3339.581574,6084.384043,0,,,,2,,,,2,,,,2,,,,2,4993.301871,3392.706362,7087.593428,,,,,2,,0.105,,,0.087,0.125,2.708900688,,,2.071973604,3.502494406,4.542689355,,,3.574417977,5.637980556,0.05608365,59,1052,0.042179864,0.069987437,0,,,,,,,,,,0.060518732,0.035429908,0.085607556,0.042477876,0.025848052,0.0591077,,,,,,,0.109,,,0.083,0.139,0.273,,,0.205,0.352,9.3,0.028491757,0.062,,,0.181,,,0.143,0.224,0.944791301,13468,14255,,,0.199026002,,,0.158882644,0.245530667,0.333333333,1,3,0.04092282,0.635504717,448.6,65,14491,,,9.56480153,20,2091,5.842429261,14.77206021,,,,,,,,,,29.26829268,15.12335392,51.12581719,,,,,,,,,,0.041446935,503,12136,0.033106509,0.04978736,0.00041405,6,14491,,,2415.166667,0.00062409,9,14421,,,1602.333333,0.004160599,60,14421,,,240.35,2342,,,,,,,,,2188,0.43,,,,,,,,,0.44,0.14,,,,,,,,,0.15,0.972741903,9671,9942,0.906974618,1,0.822185522,2987,3633,0.725451061,0.918919983,0.06316726,497,7868,,,0.046,132,,0.02812766,0.06387234,,,,,,,,,,,,,0.01297097,0,0.041975072,4.300039772,248667,57829,3.391251805,5.20882774,0.07497657,240,3201,0.02243992,0.127513219,14.4917535,21,14491,,,56.83527799,34,59822,39.36008222,79.42160425,,,,,,,,,,,,,72.43836897,49.21835724,102.8204825,,,,5.1,,,,,0,,,,,0.157681941,585,3710,0.109408545,0.205955336,0.135317997,0.08967045,0.180965544,0.013207547,0,0.026720823,0.009433962,0,0.027717472,0.696683742,5168,7418,0.63559615,0.757771335,,,,,,,,,,,,,0.662173547,0.610089705,0.714257388,0.106,,7418,0.051987276,0.160012724,83.15106244,,,81.48862548,84.8134994,,,,,,,,,,,,,82.53364742,80.66152857,84.40576627,,,,210.6347079,92,35056,168.9351951,259.5078513,,,,,,,,,,,,,222.4803394,172.4192072,282.5421667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.083,,,0.069,0.097,0.143,,,0.122,0.166,0.074,,,0.062,0.087,194.3,24,12353,,,0.062,850,,,,0.028491757,289.8181517,10172,,,,,,,,,,,,,,,,,,,,,,,,,,0.31,,,0.295,0.325,0.047898977,440,9186,0.038367062,0.057430892,0.021172638,65,3070,0.012832213,0.029513064,0.000693433,10,14421,,,1442.1,0.925,107.3,116,,,,,,,,2.949191051,,,,,,,,2.987402469,3.036514801,2.780740358,,,,,,,,2.565823506,3.023338689,0.005938496,,,,,14490.09,,,,,1.063937008,84450,79375,0.768654821,1.359219195,107613,,,92373.85106,122852.1489,,,,134688,41695.82979,227680.1702,,,,,,,136509,117272.4043,155745.5957,,,,,,,,,,,39.19785698,,,,,0.29564272,,107613,,,6.329113924,4,632,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1000,,,,,0.873051755,7338,8405,,,0.346,,,,,38.29724765,,,,,0.711096802,3313,4659,0.669939467,0.752254137,0.177605322,801,4510,0.116641028,0.238569615,0.927666881,4322,4659,0.896300437,0.959033326,14421,,,,,0.200263505,2888,14421,,,0.169613758,2446,14421,,,0.095416407,1376,14421,,,0.004992719,72,14421,,,0.01775189,256,14421,,,0.00145621,21,14421,,,0.158657513,2288,14421,,,0.708758061,10221,14421,,,0.009081357,121,13324,0,0.022970594,0.478954303,6907,14421,,,0.15741845,2244,14255,, -25,021,25021,MA,Norfolk County,2024,1,4662.420687,6626,1980100,4485.627545,4839.213829,0,,,,2,2229.484735,1883.956981,2575.012489,,6706.438287,5902.226035,7510.65054,,3549.547623,2892.268566,4206.82668,,4914.7659,4701.371903,5128.159897,,,,,2,,0.104,,,0.086,0.124,2.702391124,,,2.14840655,3.352181483,4.572539867,,,3.871384822,5.375468692,0.06898283,3435,49795,0.066756894,0.071208765,0,,,,0.079958598,0.073911727,0.086005468,0.101449275,0.092745856,0.110152695,0.080191051,0.071751187,0.088630915,0.059098126,0.0564936,0.061702653,,,,0.066866268,0.051399566,0.082332969,0.109,,,0.082,0.136,0.247,,,0.208,0.29,9.3,0.035993975,0.055,,,0.18,,,0.15,0.216,0.936812396,680108,725981,,,0.193297809,,,0.164928888,0.224329403,0.269230769,49,182,0.231605533,0.307822377,264,1913,724505,,,2.008401072,317,157837,1.787307109,2.229495035,,,,0.934528063,0.544397035,1.496269959,4.240948716,3.1859312,5.533518134,9.768836445,7.863646753,11.67402614,1.121552808,0.924144714,1.318960902,,,,1.932536894,0.964715455,3.457842325,0.023897425,14027,586967,0.020322957,0.027471893,0.001196679,867,724505,,,835.6459054,0.001233579,895,725531,,,810.649162,0.006894261,5002,725531,,,145.0481807,3193,,,,,,1738,4638,3613,3178,0.54,,,,,,0.4,0.45,0.44,0.56,0.6,,,,,,0.55,0.41,0.46,0.61,0.942383002,480081,509433,0.939031648,0.945734356,0.843120873,157425,186717,0.824166533,0.862075212,0.03333962,13081,392356,,,0.053,7618,,0.039893617,0.066106383,,,,0.066280964,0.048635982,0.083925946,0.122780055,0.08337624,0.16218387,0.108982954,0.06858878,0.149377127,0.044047506,0.036521918,0.051573093,5.004950187,241644,48281,4.785486613,5.224413762,0.150758642,22386,148489,0.13784775,0.163669534,9.482336216,687,724505,,,61.35801414,2176,3546399,58.77992505,63.93610323,,,,19.96969305,15.95108154,24.69283471,42.80458742,34.8414374,50.76773743,35.56609366,27.32996291,45.50448375,72.88350735,69.60970947,76.15730523,,,,7.7,,,,,1,,,,,0.154124606,41300,267965,0.146976173,0.161273039,0.134843094,0.127746624,0.141939565,0.018584517,0.015846605,0.021322428,0.007836844,0.00630802,0.009365668,0.606312476,230001,379344,0.597708606,0.614916347,,,,0.485208875,0.463240135,0.507177615,0.636863257,0.599970619,0.673755896,0.599185148,0.560934945,0.637435351,0.71365751,0.703960862,0.723354158,0.514,,379344,0.499702128,0.528297872,81.2703713,,,81.07916134,81.46158126,,,,88.18774759,87.19397869,89.18151649,79.62971804,78.71716939,80.5422667,87.53448039,85.32580336,89.74315741,80.76651713,80.55272911,80.98030514,,,,249.9008671,6626,1980100,243.6783781,256.123356,,,,124.1642175,110.5427611,137.7856739,317.1411512,289.4878463,344.794456,165.6676387,137.4136249,193.9216525,264.6334634,257.2533642,272.0135627,,,,23.29493199,154,661088,19.61570013,26.97416386,,,,19.92335369,11.60608772,31.89921926,65.83880466,46.11268936,91.1486576,,,,18.86512781,15.04756477,23.35631191,,,,3.13730192,157,50043,2.646549375,3.628054465,,,,,,,9.52170062,6.890901951,12.82566825,,,,2.409713964,1.901708577,3.011729001,,,,,,,0.081,,,0.069,0.095,0.138,,,0.119,0.159,0.072,,,0.061,0.083,234.1,1455,621410,,,0.055,39710,,,,0.035993975,24146.55801,670850,,,23.6372495,506,2140689,21.57767384,25.69682517,,,,,,,13.60460083,8.525930909,20.59752915,20.61559974,13.06852181,30.93352177,28.67143498,26.01345479,31.32941516,,,,0.294,,,0.28,0.308,0.029202732,12824,439137,0.024436774,0.033968689,0.008640723,1346,155774,0.006257744,0.011023702,0.001211527,879,725531,,,825.4050057,0.912647059,7617.865,8347,,,0.037714255,1417,37572,0.0261325,0.04929601,3.674024898,,,,,,3.902243865,3.071626048,3.28639512,3.734502147,3.577964173,,,,,,4.088453052,2.778652469,3.065497807,3.621351881,0.127392032,,,,,10589.73894,,,,,0.818582842,79608,97251,0.786416379,0.850749305,115770,,,110482.1702,121057.8298,,,,128730,119653.234,137806.766,86492,78022.89362,94961.10638,111090,97900.21277,124279.7872,124280,121234.5532,127325.4468,,,,,,,,,,,54.93332525,,,,,0.403601969,,115770,,,9.721048183,368,37856,,,1.234917057,61,4939603,0.944613698,1.586302622,,,,,,,7.402999354,4.835884962,10.8471093,,,,0.761063347,0.505721067,1.099948436,,,,7.842760257,300,3546399,6.929096272,8.756424242,8.459285038,,,,4.480492326,2.610051891,7.173702246,3.921692337,1.957694685,7.016990874,,,,9.166272394,7.994710543,10.33783424,,,,2.058426026,73,3546399,1.613477415,2.588161687,,,,,,,8.483792101,5.316747342,12.8445632,,,,1.64600358,1.191220952,2.21715602,,,,5.121869106,253,4939603,4.490731168,5.753007043,,,,3.997566699,2.534114372,5.998312835,6.264076376,3.925663315,9.483886913,,,,5.436166763,4.682752488,6.189581038,,,,3.784570597,,68700,,,260,,0.8058383,411042,510080,,,0.725,,,,,430.6652992,,,,,0.683075126,190649,279104,0.67512103,0.691029223,0.151822987,41533,273562,0.144644013,0.159001961,0.933881277,260650,279104,0.929428107,0.938334447,725531,,,,,0.202327675,146795,725531,,,0.179387235,130151,725531,,,0.079319836,57549,725531,,,0.002560883,1858,725531,,,0.130407936,94615,725531,,,0.000566482,411,725531,,,0.056893503,41278,725531,,,0.712155649,516691,725531,,,0.037651643,25782,684751,0.035013093,0.040290193,0.513933933,372875,725531,,,0.020222292,14681,725981,, -25,023,25023,MA,Plymouth County,2024,1,6358.389492,6521,1456727,6107.508828,6609.270157,0,,,,2,3154.832497,1837.806189,5051.192441,1,7114.465853,6360.357332,7868.574374,,5066.446064,4086.405377,6046.48675,,6414.879774,6130.835479,6698.92407,,,,,2,,0.115,,,0.095,0.137,2.790726512,,,2.197807463,3.460659377,4.712724356,,,3.940306632,5.529236758,0.071795297,2601,36228,0.069136998,0.074453595,0,,,,0.083211679,0.062527539,0.103895819,0.101440753,0.094265828,0.108615677,0.074839147,0.065348465,0.084329828,0.061496786,0.058502717,0.064490854,,,,0.087988827,0.067239051,0.108738602,0.138,,,0.105,0.172,0.288,,,0.244,0.34,9.2,0.048051628,0.056,,,0.19,,,0.155,0.227,0.931908994,494675,530819,,,0.189401707,,,0.161407789,0.220833953,0.375,66,176,0.338136735,0.411589608,358.2,1909,533003,,,5.775317131,677,117223,5.340268732,6.210365529,,,,,,,16.51764385,14.4365269,18.5987608,27.18676123,22.98723202,31.38629044,2.563734212,2.233832113,2.89363631,,,,9.228937184,6.270615058,13.09973966,0.026881327,11394,423863,0.023306859,0.030455795,0.000634143,338,533003,,,1576.931953,0.00073724,393,533069,,,1356.409669,0.006198072,3304,533069,,,161.3404964,3454,,,,,2471,2558,3762,3239,3433,0.57,,,,,,0.4,0.45,0.37,0.57,0.57,,,,,0.29,0.53,0.39,0.36,0.58,0.93112677,346868,372525,0.926303663,0.935949877,0.716474208,86616,120892,0.694920256,0.738028161,0.0397376,11261,283384,,,0.08,8594,,0.06093617,0.09906383,,,,0.060913706,0,0.126643768,0.167368179,0.122875448,0.21186091,0.156296598,0.105796069,0.206797126,0.044237593,0.033247782,0.055227405,4.645428265,199261,42894,4.436009637,4.854846893,0.196153222,21753,110898,0.177901922,0.214404522,8.63034542,460,533003,,,79.46486255,2075,2611217,76.04568103,82.88404407,,,,33.77400367,18.46456209,56.66703928,56.74275567,48.0048171,65.48069424,52.969004,40.22158549,68.47472077,86.09964819,82.14938517,90.04991122,,,,6.8,,,,,1,,,,,0.149693993,28495,190355,0.140725303,0.158662683,0.136203657,0.127639138,0.144768176,0.012949489,0.010351512,0.015547466,0.005358409,0.003357477,0.007359341,0.731713763,196591,268672,0.721554646,0.741872879,,,,0.704673517,0.644181479,0.765165554,0.702440655,0.667455875,0.737425435,0.621807466,0.559191657,0.684423275,0.730676604,0.715509009,0.7458442,0.484,,268672,0.470156145,0.497843855,79.04264052,,,78.81349663,79.27178441,,,,88.12554936,84.52587407,91.72522465,79.96365747,78.96672505,80.96058989,86.28330757,82.427988,90.13862713,78.8565679,78.60816497,79.10497083,,,,318.2505765,6521,1456727,310.0431381,326.458015,,,,123.2897364,85.38172647,172.2850489,338.1466068,310.3509464,365.9422671,269.1416099,223.4752952,314.8079246,323.1782424,314.0568,332.2996848,,,,27.19453836,134,492746,22.59000777,31.79906896,,,,,,,62.20927767,45.20135639,83.51305162,,,,20.99575112,16.54226386,26.27931337,,,,3.227586207,117,36250,2.642740924,3.81243149,,,,,,,5.78291815,4.11222012,7.905439482,,,,2.489160109,1.908424783,3.190990922,,,,,,,0.088,,,0.074,0.103,0.153,,,0.133,0.177,0.07,,,0.059,0.082,250.6,1145,456985,,,0.056,29290,,,,0.048051628,23781.66376,494919,,,35.74273595,564,1577943,32.79285621,38.6926157,,,,,,,31.01264752,23.36297032,40.36722357,27.8066414,16.74141457,43.42351501,37.79850802,34.42051933,41.17649671,,,,0.335,,,0.319,0.351,0.03252136,10216,314132,0.027755403,0.037287318,0.01122936,1301,115857,0.007654892,0.014803828,0.001076784,574,533069,,,928.6916376,0.908935012,5846.27,6432,,,0.05268082,1464,27790,0.038376414,0.066985227,3.321381731,,,,,,3.684961459,2.622608837,2.806343729,3.522517276,3.134792372,,,,,,3.740083839,2.364056615,2.518513977,3.360533298,0.283408377,,,,,8743.692321,,,,,0.803696992,66522,82770,0.772871973,0.834522011,102647,,,98451.76596,106842.234,62209,4677.93617,119740.0638,118313,99859.21277,136766.7872,81074,73528.29787,88619.70213,78199,61414.48936,94983.51064,109620,106942.7234,112297.2766,,,,,,,,,,,84.23741892,,,,,0.309945736,,102647,,,7.631368559,210,27518,,,1.92562944,70,3635175,1.501122617,2.432916953,,,,,,,6.488214807,4.198830525,9.577884971,,,,1.346815405,0.962184671,1.83398032,,,,9.5642435,261,2611217,8.347482869,10.78100413,9.995339338,,,,,,,4.712524108,2.509220615,8.058559746,,,,10.90001306,9.434195267,12.36583086,,,,3.484965057,91,2611217,2.805876474,4.278764841,,,,,,,6.30475063,3.736594797,9.964224137,,,,3.25527437,2.532797765,4.119758057,,,,7.812553729,284,3635175,6.903917773,8.721189684,,,,,,,7.007271991,4.617836396,10.19521285,8.105369808,4.188162856,14.15844988,8.181903582,7.153159638,9.210647527,,,,4.185606061,,52800,,,221,,0.779413651,303870,389870,,,0.695,,,,,205.24474,,,,,0.77331517,153841,198937,0.764546854,0.782083486,0.148583141,28996,195150,0.13938843,0.157777853,0.909267758,180887,198937,0.903160446,0.91537507,533069,,,,,0.203949207,108719,533069,,,0.199054907,106110,533069,,,0.116682831,62200,533069,,,0.003397309,1811,533069,,,0.018014554,9603,533069,,,0.001361925,726,533069,,,0.046795068,24945,533069,,,0.796979378,424845,533069,,,0.027759034,13946,502395,0.024825521,0.030692548,0.509905847,271815,533069,,,0.124650776,66167,530819,, -25,025,25025,MA,Suffolk County,2024,1,5917.768215,7256,2251760,5729.265963,6106.270466,0,,,,2,2254.515103,1901.799551,2607.230655,,9441.87789,8889.557714,9994.198067,,5317.214721,4952.796474,5681.632968,,5407.6329,5129.346241,5685.919559,,,,,2,,0.148,,,0.128,0.172,3.078524454,,,2.535389146,3.670704695,5.077879667,,,4.399704416,5.813661586,0.083698066,5125,61232,0.081504535,0.085891598,0,,,,0.075248362,0.067731429,0.082765295,0.125697865,0.119810417,0.131585314,0.083591668,0.079591054,0.087592282,0.061872117,0.058771443,0.064972791,,,,0.083003953,0.06780044,0.098207465,0.127,,,0.102,0.155,0.254,,,0.219,0.293,8.7,0.002097383,0.101,,,0.242,,,0.209,0.278,0.998111377,796429,797936,,,0.20380242,,,0.177682077,0.231225182,0.322580645,40,124,0.27707463,0.36841895,807.8,6230,771245,,,7.618137065,1498,196636,7.232348859,8.003925272,,,,,,,10.40858374,9.374220894,11.44294658,19.61260059,18.37834419,20.84685699,0.986181137,0.781980308,1.227387791,,,,5.595383808,3.827238383,7.899012429,0.032744593,20473,625233,0.027978635,0.03751055,0.001574078,1214,771245,,,635.2924218,0.002450478,1878,766381,,,408.0835996,0.01061091,8132,766381,,,94.24262174,3746,,,,,,1965,5214,3673,3382,0.46,,,,,,0.35,0.42,0.39,0.5,0.49,,,,,0.05,0.49,0.39,0.41,0.54,0.871060162,480070,551133,0.866254756,0.875865567,0.781064213,221634,283759,0.766460137,0.795668289,0.036264122,16425,452927,,,0.202,24304,,0.171021277,0.232978723,0.037950664,0,0.154048517,0.156300485,0.108591413,0.204009556,0.260585006,0.22901643,0.292153582,0.318369286,0.29339285,0.343345722,0.082028155,0.064437143,0.099619168,7.703487429,189968,24660,7.362125818,8.04484904,0.378742959,48545,128174,0.357602003,0.399883915,10.1264838,781,771245,,,64.49142061,2568,3981925,61.99705273,66.98578849,,,,20.86410331,16.43854036,26.11453651,85.18259382,78.79412793,91.5710597,54.97490627,50.20829079,59.74152175,69.64715636,65.786115,73.50819772,,,,8.1,,,,,0,,,,,0.237235606,74250,312980,0.228928933,0.24554228,0.206188435,0.197948032,0.214428837,0.037446482,0.034279989,0.040612976,0.009936737,0.007948241,0.011925234,0.376120429,159832,424949,0.367423603,0.384817254,0.267899761,0.18680781,0.348991713,0.315487451,0.297774636,0.333200266,0.465448117,0.444417269,0.486478966,0.386679784,0.3716207,0.401738867,0.443889227,0.436248971,0.451529484,0.496,,424949,0.479619729,0.512380271,80.40056381,,,80.18206807,80.61905954,,,,88.00786502,87.05977446,88.95595558,77.0098812,76.48773967,77.53202273,85.26395229,84.3006669,86.22723769,80.13227918,79.84363844,80.42091992,,,,306.174557,7256,2251760,298.9860632,313.3630509,,,,135.6304101,119.4912209,151.7695992,444.6660935,426.1398386,463.1923484,245.4014018,230.979979,259.8228246,297.1574073,286.6771146,307.6377,,,,38.59856573,252,652874,33.83286279,43.36426867,,,,,,,65.13914258,52.82345652,79.46422984,34.12938221,26.84492414,42.78147614,28.37206842,21.59813304,36.59790112,,,,4.554898514,285,62570,4.026073065,5.083723962,,,,,,,8.774728781,7.134919159,10.4145384,4.421915444,3.51688058,5.488763004,2.782814015,2.152228158,3.540421742,,,,,,,0.096,,,0.084,0.111,0.152,,,0.134,0.172,0.099,,,0.086,0.113,832.2,5659,680007,,,0.101,80250,,,,0.002097383,1514.358629,722023,,,37.65671716,895,2376734,35.1896157,40.12381862,,,,6.822895819,3.818722996,11.25332906,50.46154366,44.06393527,56.85915205,34.60356506,29.7215596,39.48557053,39.53647918,35.76871356,43.3042448,,,,0.329,,,0.318,0.341,0.038177506,19221,503464,0.033411549,0.042943464,0.010779423,1383,128300,0.007204955,0.014353891,0.0045617,3496,766381,,,219.2165332,0.779518659,4720.765,6056,,,0.039824554,1825,45826,0.028776482,0.050872626,3.029576483,,,,,,3.519724821,2.844787043,2.84899799,3.640598062,2.920918053,,,,,,3.820472973,2.646025627,2.755169753,3.532748787,0.220857451,,,,,-3010.76775,,,,,0.926052663,70092,75689,0.897964774,0.954140552,84548,,,81185.61702,87910.38298,71359,50888.02128,91829.97872,71334,63485.65957,79182.34043,57030,53033.74468,61026.25532,57045,54004.31915,60085.68085,117583,114402.9149,120763.0851,,,,,,,,,,,70.2155242,,,,,0.479597389,,84548,,,6.720931969,270,40173,,,5.897974776,327,5544276,5.258703625,6.537245927,,,,,,,18.86013608,16.32130993,21.39896223,6.413931685,5.101190212,7.961380398,0.994580333,0.643639951,1.46819677,,,,5.831672046,250,3981925,5.081296976,6.582047117,6.278370386,,,,4.534181865,2.806730038,6.930978626,5.379437852,3.923798883,7.198111087,3.528310457,2.362964888,5.067242368,7.684896105,6.345473834,9.024318375,,,,6.17791646,246,3981925,5.405892909,6.949940011,,,,,,,19.70549022,16.63282835,22.7781521,5.379149341,3.992508323,7.091737806,1.727249478,1.17358222,2.45169276,,,,4.238605726,235,5544276,3.696673271,4.780538181,,,,,,,6.04947761,4.697656072,7.66915435,4.30202735,3.24087575,5.599679927,4.057887758,3.27037787,4.845397646,,,,7.5,,54000,,,405,,0.607667012,337240,554975,,,0.568,,,,,1753.934509,,,,,0.362159301,115640,319307,0.355284387,0.369034216,0.214173106,65888,307639,0.2062182,0.222128011,0.891383528,284625,319307,0.885657955,0.8971091,766381,,,,,0.160756856,123201,766381,,,0.134703235,103234,766381,,,0.195153586,149562,766381,,,0.007761153,5948,766381,,,0.097053554,74380,766381,,,0.001585373,1215,766381,,,0.239482712,183535,766381,,,0.445985743,341795,766381,,,0.100870963,75280,746300,0.096454131,0.105287796,0.51644939,395797,766381,,,4.51164E-05,36,797936,, -25,027,25027,MA,Worcester County,2024,1,6499.768572,9969,2355157,6304.312034,6695.225109,0,,,,2,2786.09043,2236.712985,3335.467875,,7469.71389,6566.968511,8372.459269,,7231.919692,6679.886404,7783.95298,,6434.691934,6203.729918,6665.65395,,,,,2,,0.127,,,0.107,0.15,3.027813415,,,2.448648894,3.624326643,5.027588129,,,4.306614174,5.772211453,0.07483628,4411,58942,0.072712013,0.076960546,0,,,,0.091938883,0.082747093,0.101130674,0.104468219,0.095785293,0.113151145,0.080727396,0.075805444,0.085649348,0.067898234,0.065335735,0.070460732,,,,0.058532564,0.045321825,0.071743302,0.134,,,0.106,0.165,0.312,,,0.27,0.354,8.7,0.051208809,0.077,,,0.206,,,0.173,0.241,0.90894792,783614,862111,,,0.177208121,,,0.151341994,0.202772484,0.351351351,91,259,0.320765035,0.381923662,310.8,2679,862029,,,8.245284375,1606,194778,7.842020852,8.648547898,,,,1.109775271,0.573437077,1.93855406,6.786278702,5.319359201,8.532726614,25.15078033,23.41764181,26.88391885,4.817378246,4.446459045,5.188297447,,,,9.236752552,6.995826181,11.9672843,0.030137887,21092,699850,0.026563419,0.033712355,0.000933843,805,862029,,,1070.843478,0.000775268,669,862927,,,1289.875934,0.005811616,5015,862927,,,172.0691924,3196,,,,,,1513,3592,4516,3155,0.53,,,,,,0.41,0.48,0.4,0.54,0.55,,,,,0.34,0.5,0.38,0.38,0.56,0.913989736,546405,597824,0.910038755,0.917940717,0.696512495,152204,218523,0.6808964,0.712128591,0.039097513,17308,442688,,,0.117,20115,,0.095553192,0.138446809,0.428571429,0.167806549,0.689336308,0.07862603,0.050858011,0.106394049,0.189159755,0.145307651,0.23301186,0.237484299,0.20832272,0.266645878,0.076421301,0.064403726,0.088438876,5.069961003,174214,34362,4.897684107,5.242237899,0.229444376,40725,177494,0.213556277,0.245332474,8.039172696,693,862029,,,76.26558515,3187,4178818,73.61773352,78.91343678,,,,14.36942904,9.828678826,20.28534636,50.25695098,40.50363886,60.0102631,71.82593329,64.45723259,79.194634,81.36531762,78.22075742,84.50987782,,,,8.2,,,,,1,,,,,0.148592715,46670,314080,0.14236197,0.15482346,0.129482842,0.123687937,0.135277747,0.017224911,0.015057221,0.019392601,0.008166709,0.006499712,0.009833706,0.734697886,317917,432718,0.728609026,0.740786747,0.588235294,0.243942479,0.932528109,0.621684265,0.587108165,0.656260364,0.632822086,0.591028906,0.674615266,0.647761546,0.613530137,0.681992954,0.75008141,0.743289515,0.756873306,0.448,,432718,0.43781991,0.45818009,79.01085265,,,78.82636397,79.19534133,,,,88.33846192,86.52567307,90.15125076,78.77578937,77.46619651,80.08538223,80.21422176,79.27800904,81.15043449,79.10910684,78.90107842,79.31713526,,,,325.4203353,9969,2355157,318.77763,332.0630405,,,,145.5046785,123.9777666,167.0315904,355.0985178,319.5097765,390.6872591,351.1245609,326.9599927,375.2891292,322.0832362,314.6066386,329.5598338,,,,32.96310648,262,794828,28.97163015,36.95458282,,,,31.17854916,17.45039728,51.42427535,74.66939144,52.84050548,102.4895736,34.6691139,25.81343247,45.58348212,29.22058445,24.55982707,33.88134183,,,,4.728569986,281,59426,4.175687628,5.281452345,,,,,,,8.631851532,6.166721287,11.75413184,4.431445538,3.289104293,5.842308488,4.307155692,3.64592525,4.968386134,,,,,,,0.095,,,0.081,0.11,0.165,,,0.144,0.188,0.084,,,0.072,0.097,275,2032,738900,,,0.077,65740,,,,0.051208809,40892.89695,798552,,,36.83784567,929,2521863,34.46896907,39.20672228,,,,,,,27.07092583,18.74740309,37.82890546,49.60475188,41.82049689,57.38900687,36.6447168,33.91832852,39.37110508,,,,0.331,,,0.316,0.345,0.036604626,19191,524278,0.031838668,0.041370583,0.011371675,2106,185197,0.007797206,0.014946143,0.001771876,1529,862927,,,564.3734467,0.911186743,8948.765,9821,,,0.044434178,2116,47621,0.034796826,0.054071531,3.309376301,,,,,,3.822045592,2.973217501,,3.413199044,3.16354198,,,,,,3.968634086,2.684650864,,3.290770051,0.190522279,,,,,7239.856886,,,,,0.796533013,61067,76666,0.774183844,0.818882183,86078,,,82858.59575,89297.40426,62631,36159.68085,89102.31915,119329,112332.5745,126325.4255,70034,61916.38298,78151.61702,57914,53258.85106,62569.14894,93587,91833.12766,95340.87234,,,,,,,,,,,52.99581513,,,,,0.384105114,,86078,,,5.78508733,261,45116,,,1.718989853,100,5817370,1.382067842,2.055911864,,,,,,,5.447770409,3.049075743,8.985268819,5.095927189,3.549500003,7.087201123,1.059007206,0.778118662,1.408255082,,,,9.221511685,412,4178818,8.304228167,10.1387952,9.85924728,,,,,,,,,,6.652448879,4.45524942,9.554026273,10.18882532,9.063950317,11.31370033,,,,3.469880718,145,4178818,2.905091215,4.03467022,,,,,,,,,,4.329234336,2.713108109,6.554512811,3.479854175,2.829543664,4.130164686,,,,6.480591745,377,5817370,5.826407532,7.134775958,,,,,,,3.995031633,1.994305397,7.148215134,4.513535511,3.066728397,6.406603376,7.075069416,6.292501655,7.857637177,,,,6.243842365,,81200,,,507,,0.711701849,434921,611100,,,0.684,,,,,361.3290774,,,,,0.659401972,217813,330319,0.651855035,0.66694891,0.144128362,46566,323087,0.13722088,0.151035843,0.90623912,299348,330319,0.900511782,0.911966459,862927,,,,,0.203129581,175286,862927,,,0.171872012,148313,862927,,,0.053374156,46058,862927,,,0.004196184,3621,862927,,,0.05685649,49063,862927,,,0.000777586,671,862927,,,0.130782789,112856,862927,,,0.738287248,637088,862927,,,0.037659837,30671,814422,0.03501226,0.040307415,0.502627685,433731,862927,,,0.211758115,182559,862111,, -26,000,26000,MI,Michigan,2024,,8467.638336,153391,27834019,8401.066468,8534.210204,0,10018.86191,9024.404927,11013.31889,,2992.479485,2781.407902,3203.551069,,15708.77009,15470.48726,15947.05292,,7931.774751,7659.944015,8203.605487,,7348.021444,7276.501755,7419.541134,,6401.335433,3729.013786,10249.15814,1,,0.152,,,0.143,0.162,3.603507589,,,3.38554822,3.821466957,5.292072632,,,5.033672628,5.550472636,0.088247551,66494,753494,0.08760707,0.088888031,0,0.084644981,0.074441593,0.094848368,0.093106114,0.089804148,0.09640808,0.150856501,0.148961319,0.152751683,0.076633691,0.074307569,0.078959813,0.072046239,0.071339145,0.072753332,0.073929961,0.041939414,0.105920508,0.099704365,0.095233428,0.104175302,0.179,,,0.167,0.19,0.346,,,0.332,0.36,7.2,0.063779088,0.117,,,0.222,,,0.21,0.233,0.856060896,8626809,10077331,,,0.189970616,,,0.178053401,0.202488959,0.301535509,1571,5210,0.294757453,0.30833551,452.4,45473,10050811,,,14.65144778,32568,2222852,14.49232181,14.81057375,15.03316139,12.97019901,17.09612376,1.899074351,1.603885821,2.19426288,32.67637018,32.06485624,33.28788412,21.60166244,20.92080504,22.28251984,10.29642007,10.13511151,10.45772862,21.43950995,11.7211796,35.9718547,17.60969977,16.74302445,18.47637509,0.060214916,486048,8071887,0.057831938,0.062597895,0.000783519,7875,10050811,,,1276.29346,0.000802463,8052,10034113,,,1246.164059,0.003363925,33754,10034113,,,297.2718196,3246,,,,,4292,2157,6282,3004,2922,0.44,,,,,0.38,0.35,0.38,0.31,0.45,0.45,,,,,0.29,0.49,0.32,0.34,0.47,0.91750277,6366037,6938439,0.916429264,0.918576276,0.684515246,1713866,2503766,0.680261,0.688769493,0.042065578,203428,4835973,,,0.178,370055,,0.170851064,0.185148936,0.274528665,0.236054597,0.313002733,0.103370621,0.091280786,0.115460457,0.364101098,0.35437974,0.373822456,0.248195694,0.237305353,0.259086034,0.125922907,0.122781286,0.129064529,4.613392489,134139,29076,4.575111142,4.651673835,0.252359631,541134,2144297,0.247777582,0.25694168,9.464907857,9513,10050811,,,84.22325335,42080,49962449,83.4185233,85.0279834,93.14997496,81.95564779,104.3443021,21.88505269,19.63055714,24.13954824,123.2792603,120.655819,125.9027016,60.28369863,57.33072005,63.2366772,82.13549941,81.21607704,83.05492177,,,,6.8,,,,,0.361445783,,,,,0.134432131,535095,3980410,0.132694142,0.136170121,0.116336293,0.114617697,0.118054889,0.016058647,0.015498082,0.016619212,0.008489075,0.008040851,0.008937299,0.771116843,3557290,4613166,0.76906007,0.773173615,0.750429461,0.727209734,0.773649188,0.674606691,0.661810553,0.68740283,0.717232297,0.710771249,0.723693346,0.718996493,0.70851775,0.729475236,0.789021959,0.786993756,0.791050162,0.334,,4613166,0.331617021,0.336382979,76.64935105,,,76.59400925,76.70469284,77.23853146,76.23215093,78.244912,87.73110742,87.10322155,88.35899329,70.41890997,70.25293355,70.58488638,78.78266903,78.41105833,79.15427974,77.58439426,77.52403345,77.64475507,90.58463116,76.18042894,104.9888334,413.602151,153391,27834019,411.4253762,415.7789258,466.7899346,435.4243702,498.1554989,161.9238905,153.6329699,170.2148111,727.5065398,719.3648226,735.648257,376.4498648,365.2364642,387.6632653,372.3820519,370.0464198,374.7176841,333.3677454,229.4750167,468.1722594,54.32821717,5234,9634036,52.85636339,55.80007094,35.68497306,21.79730861,55.11254666,36.21908656,29.76550386,42.67266926,117.643908,112.2105458,123.0772702,52.3783658,47.43905741,57.31767418,41.01997396,39.45342646,42.58652145,,,,6.487369694,4963,765025,6.306879928,6.66785946,8.185538881,5.244629214,12.17943301,3.454521063,2.787368277,4.121673849,13.3424127,12.73944223,13.94538317,8.384251844,7.586188326,9.182315362,4.391526981,4.211619704,4.571434258,,,,11.40112275,9.80902188,12.99322362,0.110826754,,,0.102493568,0.119747069,0.164572761,,,0.153859013,0.175877476,0.093,,,0.086,0.1,202.6,17313,8546565,,,0.117,1177820,,,,0.063779088,630369.5462,9883640,,,27.43947077,8233,30004223,26.84674645,28.03219509,29.1237819,21.61623228,38.39607567,3.482555878,2.42572777,4.843392186,47.66231829,45.5565107,49.76812588,23.95984551,21.58491062,26.33478039,25.09802209,24.44125084,25.75479335,,,,0.355268394,,,0.339356257,0.371507072,0.071276215,424317,5953136,0.068893236,0.073659194,0.030054368,67010,2229626,0.027671389,0.032437347,0.001404609,14094,10034113,,,711.942174,0.816193377,94054.86,115236,,,0.07062923,37458,530347,0.067479474,0.073778985,2.956890595,,,,,,3.469297489,2.26981566,2.720766101,3.158793731,2.828463679,,,,,,3.650067175,2.068747659,2.516172645,3.052576167,0.336283888,,,,,-2473.785,,,,,0.779938522,48970,62787,0.772769256,0.787107789,66926,,,66131.2766,67720.7234,53373,50452.65957,56293.34043,103758,100887.7021,106628.2979,42171,41526.40426,42815.59575,60514,59024.6383,62003.3617,73276,72879.23404,73672.76596,,,,,,0.511230069,713874,1396385,,,73.08709926,,,,,0.320018502,,,,,8.889564819,,,,,6.617647849,4620,69813325,6.426821326,6.808474371,4.015147143,2.295003514,6.52034741,1.155306523,0.754684578,1.692791735,33.79430664,32.6335066,34.95510667,5.310759213,4.56149666,6.060021766,2.024416954,1.90248766,2.146346247,,,,14.33068597,7402,49962449,13.99329358,14.66807835,14.81512646,17.7366522,13.12167294,23.44879483,5.993201997,4.850285335,7.136118659,9.160030383,8.425711468,9.894349298,10.7596414,9.428579682,12.09070311,15.6900031,15.28035055,16.09965564,,,,13.34202012,6666,49962449,13.02172892,13.66231133,9.805260522,6.515524408,14.1713315,2.780973546,2.036022156,3.709428994,36.27313848,34.85009256,37.6961844,8.698022725,7.576338481,9.819706969,10.10552234,9.783022873,10.4280218,,,,10.40632286,7265,69813325,10.1670268,10.64561893,14.053015,10.61549651,18.24900889,3.599224167,2.858303521,4.473507008,13.77304819,13.03199279,14.51410359,9.685944264,8.674069639,10.69781889,10.15840575,9.885274842,10.43153666,,,,18.51903761,,856200,,,15856,,0.735729271,5539302,7528995,,,,,,,,107.6166571,,,,,0.724940531,2906470,4009253,0.722097371,0.727783692,0.123099791,480344,3902070,0.121409811,0.12478977,0.878209981,3520966,4009253,0.875835728,0.880584234,10034113,,,,,0.210252266,2109695,10034113,,,0.187394242,1880335,10034113,,,0.137702954,1381727,10034113,,,0.007414407,74397,10034113,,,0.03512458,352444,10034113,,,0.000468602,4702,10034113,,,0.057156422,573514,10034113,,,0.739837891,7423617,10034113,,,0.01414175,134419,9505118,0.013720584,0.014562915,0.503439517,5051569,10034113,,,0.265256049,2673073,10077331,, -26,001,26001,MI,Alcona County,2024,1,10660.87032,252,26146,7734.94302,13586.79761,0,,,,2,,,,2,,,,2,,,,2,10873.62899,7806.544127,13940.71384,,,,,2,,0.163,,,0.135,0.193,3.815301461,,,3.017700057,4.697353052,5.487353219,,,4.391703507,6.626264283,0.08008658,37,462,0.055335826,0.104837334,0,,,,,,,,,,,,,0.077097506,0.052201203,0.101993808,,,,,,,0.206,,,0.162,0.252,0.359,,,0.279,0.443,7,0.061626304,0.149,,,0.232,,,0.185,0.281,0.695091964,7067,10167,,,0.145563304,,,0.114799554,0.180402962,0.5,3,6,0.280972677,0.671334317,195.4,20,10235,,,18.28298887,23,1258,11.58984661,27.43346017,,,,,,,,,,,,,20.12248469,12.75592917,30.19360708,,,,,,,0.084157663,553,6571,0.07105128,0.097264045,0.00048852,5,10235,,,2047,9.59969E-05,1,10417,,,10417,0.001055966,11,10417,,,947,2314,,,,,,,,,2327,0.49,,,,,,,,,0.49,0.25,,,,,,,,,0.25,0.912203792,7699,8440,0.901904651,0.922502932,0.569767442,882,1548,0.498878483,0.640656401,0.069513148,267,3841,,,0.254,332,,0.157489362,0.350510638,,,,,,,,,,0.355555556,0,0.98573917,0.239205527,0.176433058,0.301977996,4.272452114,94575,22136,3.883202487,4.661701741,0.2121673,279,1315,0.15404362,0.27029098,13.67855398,14,10235,,,113.7722242,59,51858,86.6086884,146.7578799,,,,,,,,,,,,,117.3020528,89.07236663,151.6401047,,,,6.1,,,,,0,,,,,0.103616813,530,5115,0.089170092,0.118063535,0.09632572,0.078816229,0.113835211,0.008602151,0.00298309,0.014221211,0.004692082,0.001148853,0.008235311,0.767266396,2644,3446,0.735303105,0.799229687,,,,,,,,,,,,,0.745446266,0.681998392,0.80889414,0.349,,3446,0.304882703,0.393117297,75.37703484,,,73.35823161,77.39583808,,,,,,,,,,,,,75.12907468,73.03117065,77.22697872,,,,489.2036277,252,26146,409.1619224,569.2453331,,,,,,,,,,,,,496.4475778,413.4393554,579.4558003,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.118,,,0.101,0.137,0.18,,,0.154,0.207,0.092,,,0.078,0.108,53.5,5,9352,,,0.149,1510,,,,0.061626304,674.3150226,10942,,,,,,,,,,,,,,,,,,,,,,,,,,0.34,,,0.321,0.356,0.092365693,490,5305,0.075684842,0.109046544,0.050445104,68,1348,0.034955742,0.065934466,0.000959969,10,10417,,,1041.7,,,,,,,,,,,2.783885628,,,,,,,,,2.782442104,2.376654758,,,,,,,,,2.391732329,0.015015865,,,,,754.248,,,,,0.788292759,40508,51387,0.707272263,0.869313255,53788,,,47908,59668,,,,93088,84235.23404,101940.766,,,,46250,10124.04255,82375.95745,50382,47815.53192,52948.46809,,,,,,0.631884058,436,690,,,,,,,,0.339109095,,53788,,,9.433962264,3,318,,,,,,,,,,,,,,,,,,,,,,,,,,28.26135246,15,51858,12.92288996,53.64885023,28.92514173,,,,,,,,,,,,,30.0338741,13.73339972,57.01364844,,,,21.2117706,11,51858,10.58883946,37.95371691,,,,,,,,,,,,,22.24694105,11.10559282,39.80592277,,,,15.16007663,11,72559,7.567855631,27.12556473,,,,,,,,,,,,,15.86752063,7.921009127,28.39137746,,,,20,,500,,,10,,0.784017758,7064,9010,,,0.382,,,,,2.38224481,,,,,0.896730133,4333,4832,0.884355687,0.909104578,0.104548394,485,4639,0.085041271,0.124055517,0.792425497,3829,4832,0.770871284,0.81397971,10417,,,,,0.127963905,1333,10417,,,0.363636364,3788,10417,,,0.007007776,73,10417,,,0.00844773,88,10417,,,0.004607853,48,10417,,,0.001151963,12,10417,,,0.019871364,207,10417,,,0.944705769,9841,10417,,,0.000505408,5,9893,0,0.008309728,0.492944226,5135,10417,,,0.929084292,9446,10167,, -26,003,26003,MI,Alger County,2024,1,6501.949161,130,24157,4444.994721,8558.9036,0,,,,2,,,,2,,,,2,,,,2,6539.295093,4190.787659,8887.802528,,,,,2,,0.17,,,0.143,0.2,3.839435016,,,2.984109557,4.793806081,5.373163231,,,4.269025094,6.588967838,0.088305489,37,419,0.061136869,0.115474109,0,,,,,,,,,,,,,0.078212291,0.05039803,0.106026551,,,,,,,0.208,,,0.168,0.252,0.363,,,0.281,0.447,7.5,0.048934575,0.134,,,0.242,,,0.196,0.293,0.802420267,7095,8842,,,0.165467677,,,0.131650957,0.203846365,0,0,10,0,0.200587713,147.4,13,8821,,,16.40513552,23,1402,10.39944867,24.61575813,,,,,,,,,,,,,15.25423729,9.04062778,24.10827141,,,,,,,0.057999291,327,5638,0.048467376,0.067531205,0.000793561,7,8821,,,1260.142857,0.000454184,4,8807,,,2201.75,0.000794822,7,8807,,,1258.142857,2565,,,,,,,,,2670,0.52,,,,,0.45,,,,0.52,0.38,,,,,0.08,,,,0.39,0.937366657,6151,6562,0.921292797,0.953440516,0.509660574,976,1915,0.432986228,0.586334921,0.074039653,239,3228,,,0.154,195,,0.095617021,0.212382979,,,,,,,,,,0.290909091,0,0.746231696,0.052777778,0.016124654,0.089430901,3.768294623,94750,25144,3.282329136,4.25426011,0.104440275,167,1599,0.045142073,0.163738477,11.33658315,10,8821,,,64.21327665,29,45162,43.00463916,92.22097657,,,,,,,,,,,,,66.51058849,43.04214603,98.18274901,,,,4.9,,,,,0,,,,,0.123266564,400,3245,0.091410622,0.155122506,0.085331672,0.057270999,0.113392346,0.018181818,0.005727907,0.03063573,0.024653313,0.00767859,0.041628035,0.727591036,2078,2856,0.678874312,0.776307761,,,,,,,,,,,,,0.726806159,0.665182994,0.788429323,0.327,,2856,0.25369677,0.40030323,79.51477258,,,77.71526444,81.31428072,,,,,,,,,,,,,79.23521296,77.24905025,81.22137568,,,,321.5294683,130,24157,258.0568648,385.0020718,,,,,,,,,,,,,324.026677,254.496864,393.5564899,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.118,,,0.101,0.137,0.172,,,0.148,0.196,0.096,,,0.08,0.112,138.7,11,7932,,,0.134,1190,,,,0.048934575,469.8208559,9601,,,,,,,,,,,,,,,,,,,,,,,,,,0.354,,,0.339,0.369,0.067064768,292,4354,0.055149874,0.078979662,0.028529627,39,1367,0.018997712,0.038061542,0.001816737,16,8807,,,550.4375,,,,,,,,,,,2.944449085,,,,,,,,,2.949113758,2.709804691,,,,,,,,,2.775170374,0.035567457,,,,,-1706.482,,,,,0.749967916,40907,54545,0.670262991,0.829672842,59390,,,53442.08511,65337.91489,,,,,,,,,,81205,73326.87234,89083.12766,55183,51762.23404,58603.76596,,,,,,0.50621118,489,966,,,,,,,,0.293820509,,59390,,,20.2020202,6,297,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15,,600,,,9,,0.670765206,5128,7645,,,0.422,,,,,16.74624397,,,,,0.819486866,2683,3274,0.781428257,0.857545475,0.092675159,291,3140,0.0609926,0.124357719,0.83048259,2719,3274,0.796992665,0.863972516,8807,,,,,0.145793119,1284,8807,,,0.274100148,2414,8807,,,0.075621665,666,8807,,,0.047462246,418,8807,,,0.004428296,39,8807,,,0.000113546,1,8807,,,0.021573748,190,8807,,,0.823208811,7250,8807,,,0,0,8550,0,0.008361329,0.438855456,3865,8807,,,1,8842,8842,, -26,005,26005,MI,Allegan County,2024,1,6977.853966,1613,334102,6432.671509,7523.036423,0,,,,2,,,,2,7924.684254,3955.973827,14179.44916,1,8958.272726,6819.45226,11555.51913,,6674.535142,6113.131411,7235.938872,,,,,2,,0.148,,,0.123,0.174,3.518900285,,,2.743615142,4.325064494,5.359038713,,,4.392050629,6.398335929,0.068869912,621,9017,0.063643003,0.074096822,0,,,,,,,0.1328125,0.074019304,0.191605696,0.060324826,0.044430601,0.076219051,0.068925385,0.063279085,0.074571684,,,,,,,0.176,,,0.138,0.217,0.381,,,0.313,0.453,8.5,0.047275383,0.087,,,0.238,,,0.195,0.286,0.583957113,70368,120502,,,0.169684825,,,0.136903872,0.20638343,0.259259259,21,81,0.202086143,0.318853122,262.9,318,120950,,,14.33412535,368,25673,12.86957819,15.7986725,,,,,,,,,,23.8887209,18.9129253,29.77247389,12.70207852,11.16983109,14.23432595,,,,17.8041543,9.199666333,31.10027455,0.062415919,6217,99606,0.054075493,0.070756344,0.000206697,25,120950,,,4838,0.000346506,42,121210,,,2885.952381,0.001080769,131,121210,,,925.2671756,2098,,,,,,,1303,593,2077,0.4,,,,,,,,0.3,0.4,0.44,,,,,0.68,,0.25,0.27,0.44,0.916749642,75498,82354,0.9055413,0.927957984,0.59716161,17378,29101,0.561874579,0.63244864,0.037157071,2293,61711,,,0.126,3466,,0.090255319,0.161744681,0.509433962,0.319069703,0.699798222,0.047337278,0,0.467022573,0.126506024,0.025851283,0.227160765,0.33847981,0.256193627,0.420765993,0.112627374,0.08929273,0.135962017,3.837452664,132749,34593,3.622870019,4.052035309,0.203312775,5769,28375,0.161222563,0.245402988,9.838776354,119,120950,,,73.85100012,437,591732,66.92676615,80.77523408,,,,,,,,,,55.79983483,36.110711,82.37156373,74.82861369,67.40198917,82.25523822,,,,7,,,,,1,,,,,0.096755834,4250,43925,0.085216381,0.108295286,0.070403124,0.06074439,0.080061858,0.024359704,0.016833165,0.031886243,0.003984064,0.001088469,0.006879658,0.813714672,45721,56188,0.798321078,0.829108266,,,,0.732600733,0.599995979,0.865205487,0.7625,0.648658885,0.876341115,0.724713017,0.664172574,0.78525346,0.77867374,0.76765456,0.78969292,0.329,,56188,0.305439823,0.352560177,77.6394319,,,77.16309117,78.11577264,,,,,,,,,,77.16782905,74.49504265,79.84061544,77.8313548,77.34164815,78.32106145,,,,355.5669143,1613,334102,337.2896114,373.8442172,,,,,,,508.49038,314.7635596,777.2815605,383.0814853,301.8246393,479.4836032,348.9985209,330.0444406,367.9526013,,,,41.260133,51,123606,30.72087912,54.24945502,,,,,,,,,,87.06717568,46.35960412,148.8875221,33.79956856,23.40718379,47.23150925,,,,4.574166848,42,9182,3.296657126,6.182944759,,,,,,,,,,,,,4.321850769,2.993007294,6.03935326,,,,,,,0.109,,,0.093,0.126,0.169,,,0.145,0.194,0.087,,,0.074,0.103,121.6,123,101122,,,0.087,10400,,,,0.047275383,5266.855893,111408,,,13.4093944,48,357958,9.887028876,17.77891154,,,,,,,,,,,,,13.34383896,9.617065414,18.03699382,,,,0.319,,,0.302,0.336,0.073731943,5252,71231,0.063008538,0.084455347,0.035000504,1042,29771,0.025468589,0.044532419,0.000338256,41,121210,,,2956.341463,0.82970073,1136.69,1370,,,0.072158262,445,6167,0.042060306,0.102256218,3.173653927,,,,,,,,2.460910424,3.270464869,3.139889344,,,,,,,,2.382236283,3.244592315,0.118548552,,,,,2157.207622,,,,,0.768028645,45902,59766,0.739004499,0.797052791,75893,,,71386.78723,80399.21277,60765,50526.53192,71003.46809,100694,25892.29787,175495.7021,76534,64149.65957,88918.34043,61823,57079.68085,66566.31915,76996,73672.93617,80319.06383,,,,,,0.431120747,7755,17988,,,64.90200069,,,,,0.271869606,,75893,,,7.650577271,55,7189,,,1.338354189,11,821905,0.668101589,2.394685336,,,,,,,,,,,,,,,,,,,15.88671216,96,591732,12.77479265,19.52746642,16.22356067,,,,,,,,,,,,,16.06932856,12.76136641,19.97270816,,,,9.463743722,56,591732,7.148810303,12.28945841,,,,,,,,,,,,,10.36088497,7.783415672,13.51870742,,,,13.99188471,115,821905,11.43457475,16.54919466,,,,,,,,,,24.41565206,13.66525512,40.26990506,12.82304066,10.34984877,15.70909113,,,,28.27586207,,11600,,,328,,0.774221094,67094,86660,,,0.722,,,,,32.01205408,,,,,0.851415253,37991,44621,0.839890177,0.862940329,0.072781816,3154,43335,0.06245106,0.083112573,0.885435109,39509,44621,0.873796421,0.897073797,121210,,,,,0.23031103,27916,121210,,,0.184151473,22321,121210,,,0.013257982,1607,121210,,,0.007251877,879,121210,,,0.009075159,1100,121210,,,0.000511509,62,121210,,,0.080339906,9738,121210,,,0.874432803,105990,121210,,,0.007943591,899,113173,,,0.496031681,60124,121210,,,0.675781315,81433,120502,, -26,007,26007,MI,Alpena County,2024,1,7701.955905,502,76566,6463.200849,8940.710961,0,,,,2,,,,2,,,,2,,,,2,7827.856216,6528.882672,9126.829759,,,,,2,,0.166,,,0.14,0.197,3.958578101,,,3.154735357,4.871385805,5.734523384,,,4.686689666,6.878024706,0.076195773,137,1798,0.063932211,0.088459335,0,,,,,,,,,,,,,0.077283372,0.064618835,0.08994791,,,,,,,0.209,,,0.167,0.254,0.406,,,0.328,0.489,7.2,0.06100529,0.14,,,0.238,,,0.193,0.29,0.681219082,19692,28907,,,0.166202971,,,0.133211167,0.205113656,0.333333333,3,9,0.150331965,0.513162068,235.4,68,28893,,,18.20620928,95,5218,14.72991051,22.25614673,,,,,,,,,,,,,19.08317776,15.38373465,23.40382348,,,,,,,0.064001848,1385,21640,0.053278444,0.074725253,0.00076143,22,28893,,,1313.318182,0.000970638,28,28847,,,1030.25,0.004021215,116,28847,,,248.6810345,2002,,,,,,,,,2014,0.52,,,,,,,,,0.52,0.37,,,,,,,,,0.37,0.927931275,19983,21535,0.917433516,0.938429034,0.636755549,3988,6263,0.570307065,0.703204032,0.050030321,660,13192,,,0.218,1127,,0.156042553,0.279957447,,,,,,,0.016949153,0,0.59110933,0.588652482,0.26490929,0.912395675,0.208324394,0.161019902,0.255628886,4.537893491,95863,21125,4.053421745,5.022365237,0.244494214,1310,5358,0.186767866,0.302220562,12.80586993,37,28893,,,82.88961632,118,142358,67.93362525,97.84560739,,,,,,,,,,,,,84.62976318,69.16190161,100.0976248,,,,6.1,,,,,0,,,,,0.090446359,1155,12770,0.073199911,0.107692806,0.083730159,0.067134808,0.100325509,0.005090055,0.001017496,0.009162613,0.003054033,0,0.006266374,0.807281594,9601,11893,0.78148319,0.833079998,,,,,,,,,,,,,0.828218382,0.800276074,0.856160689,0.149,,11893,0.123584663,0.174415337,77.21639427,,,76.21467811,78.21811044,,,,,,,,,,,,,77.09584222,76.06086744,78.130817,,,,394.1287887,502,76566,355.68014,432.5774374,,,,,,,,,,,,,395.6360556,356.1099323,435.1621789,,,,59.80350278,14,23410,32.69513147,100.3401159,,,,,,,,,,,,,65.28023874,35.68931398,109.5291482,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.122,,,0.104,0.141,0.186,,,0.161,0.212,0.096,,,0.081,0.113,43.7,11,25161,,,0.14,4050,,,,0.06100529,1805.634576,29598,,,,,,,,,,,,,,,,,,,,,,,,,,0.348,,,0.331,0.365,0.074824105,1223,16345,0.061717722,0.087930488,0.031362007,175,5580,0.020638603,0.042085411,0.001767948,51,28847,,,565.627451,0.81,204.12,252,,,0.104150352,133,1277,0.045265176,0.163035529,2.798027641,,,,,,,,,2.806605019,2.681103612,,,,,,,,,2.700481559,0.018697522,,,,,1385.458,,,,,0.835879084,41809,50018,0.734337247,0.93742092,54161,,,48024.82979,60297.17021,,,,,,,,,,45350,14468.97872,76231.02128,49466,46832.80851,52099.19149,,,,,,0.56058952,2054,3664,,,72.27781654,,,,,0.297834235,,54161,,,8.136094675,11,1352,,,,,,,,,,,,,,,,,,,,,,,,,,18.81515753,29,142358,12.05522645,27.99546299,20.37117689,,,,,,,,,,,,,17.80248926,11.15672524,26.95318268,,,,10.53681563,15,142358,5.897375724,17.378875,,,,,,,,,,,,,10.30275378,5.632611363,17.2862702,,,,8.005403648,16,199865,4.575779878,13.00027398,,,,,,,,,,,,,8.375428586,4.787281102,13.6011713,,,,55.23809524,,2100,,,116,,0.740842611,16969,22905,,,0.68,,,,,42.35551259,,,,,0.790503891,10056,12721,0.769940432,0.811067351,0.085461051,1051,12298,0.067902659,0.103019443,0.822655452,10465,12721,0.795176674,0.850134229,28847,,,,,0.182895968,5276,28847,,,0.254827192,7351,28847,,,0.006759802,195,28847,,,0.008077096,233,28847,,,0.005477173,158,28847,,,0.000381322,11,28847,,,0.015876868,458,28847,,,0.950393455,27416,28847,,,0.001232867,34,27578,0,0.004271947,0.502062606,14483,28847,,,0.466392223,13482,28907,, -26,009,26009,MI,Antrim County,2024,1,6737.160477,350,62387,5447.339894,8026.981059,0,,,,2,,,,2,,,,2,,,,2,6694.295242,5411.124544,7977.465939,,,,,2,,0.14,,,0.115,0.169,3.508672904,,,2.720212531,4.386911376,5.221237874,,,4.201120803,6.298133388,0.05770751,73,1265,0.044857015,0.070558004,0,,,,,,,,,,,,,0.059563758,0.046127645,0.072999872,,,,,,,0.173,,,0.132,0.217,0.356,,,0.282,0.436,8.4,0.000613777,0.115,,,0.21,,,0.165,0.259,0.59749904,14000,23431,,,0.166133853,,,0.132407407,0.202846056,0.3125,5,16,0.177519792,0.449075671,218.4,52,23813,,,15.10643168,66,4369,11.68331317,19.21908502,,,,,,,,,,,,,15.22335912,11.64466348,19.55504166,,,,,,,0.075823274,1294,17066,0.063908381,0.087738168,0.000671902,16,23813,,,1488.3125,0.000329911,8,24249,,,3031.125,0.000536105,13,24249,,,1865.307692,2693,,,,,,,,,2714,0.41,,,,,,,,,0.4,0.39,,,,,,,,,0.39,0.94251916,16971,18006,0.932079918,0.952958403,0.631884058,2834,4485,0.570729299,0.693038817,0.058305286,589,10102,,,0.149,590,,0.091808511,0.206191489,,,,,,,,,,0.35106383,0,0.753716287,0.12521103,0.089792335,0.160629724,3.755967925,122253,32549,3.423899137,4.088036714,0.195977434,799,4077,0.138773939,0.253180929,12.59816067,30,23813,,,74.20485658,87,117243,59.43504818,91.53141645,,,,,,,,,,,,,77.62293306,62.088327,95.86369086,,,,6,,,,,0,,,,,0.110673881,1125,10165,0.093493894,0.127853868,0.093977103,0.077852966,0.11010124,0.012297098,0.006921072,0.017673124,0.007378259,0.003404751,0.011351767,0.753244275,7894,10480,0.727581482,0.778907068,,,,,,,,,,,,,0.732757493,0.704567272,0.760947713,0.384,,10480,0.344735047,0.423264953,79.48435613,,,78.39049265,80.5782196,,,,,,,,,,,,,79.39450025,78.30678787,80.48221264,,,,329.5498786,350,62387,288.6200688,370.4796884,,,,,,,,,,,,,333.216504,291.1135965,375.3194114,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.106,,,0.089,0.125,0.168,,,0.142,0.194,0.083,,,0.07,0.098,90.3,19,21051,,,0.115,2690,,,,0.000613777,14.47287114,23580,,,17.00053835,12,70586,8.784426244,29.69651921,,,,,,,,,,,,,16.51056676,8.242015441,29.54196463,,,,0.322,,,0.303,0.343,0.083985874,1094,13026,0.069688002,0.098283747,0.050327715,215,4272,0.034838354,0.065817077,0.000494866,12,24249,,,2020.75,0.887209302,228.9,258,,,0.087562189,88,1005,0.029054442,0.146069936,2.839191669,,,,,,,,,2.826285553,2.641321067,,,,,,,,,2.667947,0.055393808,,,,,-774.3858,,,,,0.7434483,42723,57466,0.678923117,0.807973483,71945,,,66408.14894,77481.85106,45125,25361.76596,64888.23404,,,,,,,44880,26969.53192,62790.46809,69679,66025.89362,73332.10638,,,,,,0.540492958,1535,2840,,,,,,,,0.299895754,,71945,,,11.34020619,11,970,,,,,,,,,,,,,,,,,,,,,,,,,,12.80101857,15,117243,6.61447309,22.36080328,12.79394079,,,,,,,,,,,,,13.59361417,7.024018803,23.74530829,,,,8.52929386,10,117243,4.090127936,15.68567509,,,,,,,,,,,,,9.025922449,4.328280649,16.59899275,,,,17.1210889,28,163541,11.37683924,24.74474043,,,,,,,,,,,,,16.79640815,10.97197146,24.6106296,,,,12.77777778,,1800,,,23,,0.843862434,15949,18900,,,0.462,,,,,9.688273353,,,,,0.870310027,9348,10741,0.851331268,0.889288786,0.091483859,955,10439,0.076214319,0.106753398,0.860999907,9248,10741,0.843679005,0.878320809,24249,,,,,0.166852241,4046,24249,,,0.286486041,6947,24249,,,0.004123881,100,24249,,,0.012907749,313,24249,,,0.003670254,89,24249,,,0.00070106,17,24249,,,0.024248423,588,24249,,,0.941399645,22828,24249,,,0.000439889,10,22733,0,0.004275311,0.498865933,12097,24249,,,1,23431,23431,, -26,011,26011,MI,Arenac County,2024,1,10209.48985,315,40213,8116.103453,12302.87624,0,,,,2,,,,2,,,,2,,,,2,9866.761231,7749.05046,11984.472,,,,,2,,0.17,,,0.143,0.202,4.000275976,,,3.159909924,4.942626469,5.585648597,,,4.487751958,6.763517937,0.074561404,68,912,0.057512773,0.091610034,0,,,,,,,,,,,,,0.064935065,0.048340155,0.081529975,,,,,,,0.218,,,0.175,0.267,0.379,,,0.3,0.463,7.8,1.81107E-05,0.144,,,0.243,,,0.198,0.295,0.469337422,7041,15002,,,0.160195456,,,0.12744885,0.197813241,0.333333333,8,24,0.22460658,0.441421063,240.4,36,14975,,,20.92846271,55,2628,15.76618226,27.24127092,,,,,,,,,,,,,21.18644068,15.72498464,27.93168079,,,,,,,0.075819859,830,10947,0.063904966,0.087734753,0.000400668,6,14975,,,2495.833333,0.000530188,8,15089,,,1886.125,0.002187024,33,15089,,,457.2424242,3583,,,,,,,,,3576,0.49,,,,,,,,,0.49,0.34,,,,,,,,,0.34,0.893662159,10110,11313,0.880663639,0.906660678,0.581939799,1740,2990,0.532821788,0.63105781,0.073786072,427,5787,,,0.19,514,,0.118510638,0.261489362,,,,,,,,,,0.18556701,0,0.444439624,0.142798691,0.102140801,0.18345658,3.630338399,95801,26389,3.295638566,3.965038232,0.232499093,641,2757,0.167055606,0.29794258,6.677796327,10,14975,,,97.46718827,73,74897,76.3987168,122.5503561,,,,,,,,,,,,,97.79327352,76.08900401,123.7636466,,,,6.7,,,,,0,,,,,0.096431283,635,6585,0.081554417,0.111308149,0.077563608,0.063297608,0.091829608,0.008048595,0.002164608,0.013932582,0.013667426,0.006351654,0.020983198,0.815540428,4912,6023,0.793455963,0.837624894,,,,,,,,,,,,,0.791737649,0.757492846,0.825982452,0.372,,6023,0.330897934,0.413102066,75.17529274,,,73.6571081,76.69347738,,,,,,,,,,,,,75.20262018,73.66777177,76.73746858,,,,468.823725,315,40213,408.2097803,529.4376697,,,,,,,,,,,,,464.4490769,402.7070212,526.1911325,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.123,,,0.106,0.144,0.184,,,0.159,0.211,0.094,,,0.08,0.111,69,9,13051,,,0.144,2160,,,,1.81107E-05,0.287942372,15899,,,,,,,,,,,,,,,,,,,,,,,,,,0.351,,,0.334,0.367,0.086029323,710,8253,0.07173145,0.100327195,0.044734061,127,2839,0.030436189,0.059031934,0.001458016,22,15089,,,685.8636364,0.879362416,131.025,149,,,,,,,,3.144146592,,,,,,,,,3.122178299,2.704060485,,,,,,,,,2.707744595,0.044052328,,,,,-1457.8607,,,,,0.818450573,40420,49386,0.740965073,0.895936073,53615,,,49381.6383,57848.3617,52813,33217.76596,72408.23404,,,,28438,11017.23404,45858.76596,38500,13580,63420,54011,51393.29787,56628.70213,,,,,,0.590361446,1127,1909,,,,,,,,0.3171314,,53615,,,8.771929825,6,684,,,,,,,,,,,,,,,,,,,,,,,,,,13.09613172,10,74897,5.653980139,25.80460029,13.35166963,,,,,,,,,,,,,14.00106133,6.044664518,27.58767239,,,,,,,,,,,,,,,,,,,,,,,,,,,18.99696049,20,105280,11.60383699,29.33926473,,,,,,,,,,,,,18.11174949,10.73417061,28.62437265,,,,17.27272727,,1100,,,19,,0.721486928,8831,12240,,,0.553,,,,,16.40050273,,,,,0.850668765,5406,6355,0.833082337,0.868255193,0.091876209,570,6204,0.07488626,0.108866158,0.830055075,5275,6355,0.809123152,0.850986997,15089,,,,,0.182318245,2751,15089,,,0.269666645,4069,15089,,,0.006362251,96,15089,,,0.01385115,209,15089,,,0.00404268,61,15089,,,0.000530188,8,15089,,,0.022930612,346,15089,,,0.935781033,14120,15089,,,0.004526147,65,14361,0,0.010783963,0.486778448,7345,15089,,,0.875416611,13133,15002,, -26,013,26013,MI,Baraga County,2024,1,8331.242187,154,22243,6126.644353,10535.84002,0,18150.59099,9923.096992,30453.60753,1,,,,2,,,,2,,,,2,6555.039544,4382.641466,8727.437622,,,,,2,,0.185,,,0.16,0.213,4.077005355,,,3.251686643,4.987468604,5.584580869,,,4.51215221,6.721307847,0.066801619,33,494,0.044783862,0.088819377,0,,,,,,,,,,,,,0.069444444,0.043184444,0.095704445,,,,,,,0.225,,,0.187,0.265,0.393,,,0.316,0.48,7.5,0.045129068,0.138,,,0.25,,,0.207,0.299,0.178720275,1458,8158,,,0.165311591,,,0.131793598,0.204012521,0.625,5,8,0.470053641,0.740226608,267.8,22,8215,,,19.82815598,30,1513,13.37797358,28.30592558,35.33568905,16.94483638,64.98359025,,,,,,,,,,16.61779081,9.680475532,26.60669288,,,,,,,0.079556141,423,5317,0.066449758,0.092662524,0.000730371,6,8215,,,1369.166667,0.0007249,6,8277,,,1379.5,0.001570617,13,8277,,,636.6923077,1066,,,,,,,,,930,0.4,,,,,0.3,,,,0.4,0.28,,,,,0.09,,,,0.3,0.91301567,5710,6254,0.893412671,0.932618669,0.484729064,984,2030,0.41658669,0.552871438,0.07310705,224,3064,,,0.187,266,,0.119085106,0.254914894,0.138755981,0.034558752,0.24295321,,,,,,,,,,0.138185654,0.058511492,0.217859816,4.625394502,101125,21863,3.96550395,5.285285054,0.154448399,217,1405,0.096289596,0.212607201,6.086427267,5,8215,,,101.5744033,42,41349,73.20589551,137.2990853,,,,,,,,,,,,,107.2242327,73.34129578,151.3686238,,,,4.9,,,,,1,,,,,0.10815047,345,3190,0.08470369,0.131597251,0.08288,0.058416175,0.107343825,0.021316614,0.008756995,0.033876234,0.009090909,0.000651844,0.017529974,0.837819421,2459,2935,0.810687062,0.86495178,0.81300813,0.7317785,0.89423776,,,,,,,,,,0.842611972,0.808042091,0.877181852,0.189,,2935,0.147331929,0.230668071,76.01985919,,,74.23239431,77.80732407,,,,,,,,,,,,,77.38978047,75.56372222,79.21583872,,,,438.7782251,154,22243,363.7009405,513.8555096,840.0228256,548.7307989,1230.828069,,,,,,,,,,384.9989911,305.9527405,464.0452418,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.127,,,0.111,0.145,0.182,,,0.159,0.207,0.108,,,0.092,0.126,96.1,7,7287,,,0.138,1140,,,,0.045129068,399.8435394,8860,,,,,,,,,,,,,,,,,,,,,,,,,,0.358,,,0.344,0.372,0.092187893,367,3981,0.075507041,0.108868744,0.043816254,62,1415,0.029518382,0.058114127,0.001449801,12,8277,,,689.75,,,,,,,,,,,2.920844012,,,,,,,,,2.923191299,2.969334371,,,,,,,,,2.913296308,0.065918799,,,,,-4467.596,,,,,0.769816282,44500,57806,0.653252433,0.886380131,52491,,,46271.42553,58710.57447,42738,25862.93617,59613.06383,60875,35750.06383,85999.93617,,,,,,,53411,50398.91489,56423.08511,,,,,,0.644444444,580,900,,,,,,,,0.316225639,,52491,,,15.06024096,5,332,,,,,,,,,,,,,,,,,,,,,,,,,,21.80645512,10,41349,9.971299862,41.39544441,24.18438173,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.11537474,10,58427,8.207487456,31.47578353,,,,,,,,,,,,,,,,,,,11.66666667,,600,,,7,,0.591648352,4038,6825,,,0.49,,,,,9.578143544,,,,,0.768589941,2491,3241,0.715867285,0.821312597,0.075830913,235,3099,0.049766335,0.101895492,0.801604443,2598,3241,0.777168324,0.826040562,8277,,,,,0.176150779,1458,8277,,,0.228101969,1888,8277,,,0.077685152,643,8277,,,0.141718014,1173,8277,,,0.003986952,33,8277,,,0.000120817,1,8277,,,0.019693126,163,8277,,,0.720430108,5963,8277,,,0.002151899,17,7900,0,0.01067564,0.447021868,3700,8277,,,1,8158,8158,, -26,015,26015,MI,Barry County,2024,1,6799.379817,827,172770,6008.061353,7590.698281,0,,,,2,,,,2,,,,2,,,,2,6927.629327,6096.157398,7759.101256,,,,,2,,0.136,,,0.113,0.162,3.453513434,,,2.674964083,4.267121756,5.101351794,,,4.115294742,6.149622898,0.070763501,304,4296,0.063095331,0.078431671,0,,,,,,,,,,,,,0.070027316,0.062145358,0.077909273,,,,,,,0.171,,,0.135,0.21,0.367,,,0.299,0.442,8.9,6.67917E-05,0.093,,,0.213,,,0.174,0.259,0.577463435,36047,62423,,,0.18635769,,,0.151413325,0.227673674,0.113636364,5,44,0.050780815,0.197540846,250.8,158,62992,,,12.99303944,168,12930,11.02826732,14.95781157,,,,,,,,,,22.72727273,12.72028202,37.48518011,12.53864651,10.50474321,14.57254982,,,,,,,0.057271329,2904,50706,0.048930903,0.065611754,0.000301626,19,62992,,,3315.368421,0.00023602,15,63554,,,4236.933333,0.001274507,81,63554,,,784.617284,1845,,,,,,,,,1863,0.46,,,,,,,,,0.46,0.42,,,,,,,,0.38,0.42,0.931268677,41136,44172,0.921061165,0.94147619,0.581675464,8596,14778,0.534008229,0.629342698,0.038569226,1226,31787,,,0.099,1325,,0.064446809,0.133553192,,,,,,,,,,0.290666667,0.135064495,0.446268838,0.086349578,0.058566921,0.114132235,3.741912396,130705,34930,3.335412966,4.148411827,0.179215658,2454,13693,0.13981299,0.218618325,9.366268733,59,62992,,,77.1860183,238,308346,67.37969447,86.99234214,,,,,,,,,,,,,78.49510702,68.28369668,88.70651737,,,,8.4,,,,,1,,,,,0.108874281,2650,24340,0.089132053,0.128616509,0.087722937,0.068658344,0.106787529,0.018282662,0.010057677,0.026507648,0.004108463,0,0.008916373,0.818383051,23292,28461,0.799392939,0.837373162,,,,,,,,,,,,,0.752364865,0.731443208,0.773286521,0.464,,28461,0.427586401,0.500413599,78.13956786,,,77.4672244,78.81191131,,,,,,,,,,83.60295805,71.12457263,96.08134347,78.01189602,77.31751072,78.70628132,,,,332.6359676,827,172770,308.3096244,356.9623108,,,,,,,,,,,,,335.9961758,310.7876184,361.2047331,,,,43.40712545,26,59898,28.35497548,63.60149602,,,,,,,,,,,,,42.65024941,27.03659955,63.99631519,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.104,,,0.088,0.121,0.165,,,0.141,0.191,0.081,,,0.069,0.095,59.8,32,53471,,,0.093,5770,,,,6.67917E-05,3.952266174,59173,,,15.00511782,28,186603,9.970791818,21.68657307,,,,,,,,,,,,,14.89262987,9.728360273,21.82115331,,,,0.34,,,0.321,0.358,0.064683332,2396,37042,0.053959928,0.075406737,0.037611235,541,14384,0.025696341,0.049526128,0.000692325,44,63554,,,1444.409091,0.858234443,593.04,691,,,,,,,,3.078522392,,,,,,,,2.819670458,3.098025265,3.027331403,,,,,,,,2.464554937,3.071789291,0.027291106,,,,,1276.37355,,,,,0.787192547,48839,62042,0.722873244,0.85151185,71173,,,63447.38298,78898.61702,,,,210857,157318.617,264395.383,,,,57604,19388.17021,95819.82979,75284,72204,78364,,,,,,0.436865022,3612,8268,,,71.0929508,,,,,0.303429671,,71173,,,8.461770928,28,3309,,,2.807923961,12,427362,1.450895285,4.904878077,,,,,,,,,,,,,2.986441555,1.543137931,5.216712388,,,,15.36462558,51,308346,11.28934896,20.43169484,16.53986107,,,,,,,,,,,,,15.9399967,11.62674297,21.32896971,,,,13.62106205,42,308346,9.816863437,18.41171891,,,,,,,,,,,,,14.52332377,10.46713432,19.63131463,,,,17.3155311,74,427362,13.59641621,21.73806363,,,,,,,,,,,,,17.17203894,13.36087128,21.73231432,,,,14.18181818,,5500,,,78,,0.763773665,35905,47010,,,0.735,,,,,12.55307375,,,,,0.862307502,20942,24286,0.84339507,0.881219935,0.090874827,2170,23879,0.07376532,0.107984335,0.837107799,20330,24286,0.816097084,0.858118513,63554,,,,,0.214274475,13618,63554,,,0.199971678,12709,63554,,,0.007175001,456,63554,,,0.006482676,412,63554,,,0.005900494,375,63554,,,0.000393366,25,63554,,,0.037275388,2369,63554,,,0.927337382,58936,63554,,,0.002666622,158,59251,0.000388688,0.004944556,0.493422916,31359,63554,,,0.8711853,54382,62423,, -26,017,26017,MI,Bay County,2024,1,9385.110286,1989,281161,8695.985061,10074.23551,0,,,,2,,,,2,14727.14051,8579.102058,23579.5786,1,11432.76304,8429.616952,15158.18514,,9071.609252,8364.87045,9778.348054,,,,,2,,0.158,,,0.133,0.186,3.935788289,,,3.161843044,4.80980773,5.538667324,,,4.587020013,6.557951198,0.078180737,526,6728,0.071765897,0.084595578,0,,,,,,,0.085271318,0.037075556,0.13346708,0.082995951,0.058667936,0.107323967,0.077056277,0.070178126,0.083934428,,,,0.092307692,0.057122683,0.127492702,0.189,,,0.15,0.233,0.388,,,0.32,0.458,7.5,0.05254439,0.131,,,0.232,,,0.189,0.279,0.770124018,79982,103856,,,0.166088393,,,0.134282423,0.201105671,0.265306122,13,49,0.190947939,0.34316441,383.6,395,102985,,,17.05619095,343,20110,15.25113337,18.86124853,,,,,,,29.97275204,14.96228983,53.62953273,25.79582876,18.9538047,34.30298372,14.64435146,12.8105886,16.47811433,,,,41.84100418,29.89182682,56.97557214,0.060289081,4876,80877,0.051948655,0.068629507,0.000446667,46,102985,,,2238.804348,0.000700246,72,102821,,,1428.069444,0.002927418,301,102821,,,341.5980066,4126,,,,,,,5948,4848,4080,0.49,,,,,,,0.27,0.41,0.49,0.48,,,,,0.27,0.58,0.34,0.37,0.49,0.909716308,68367,75152,0.896508663,0.922923953,0.646065831,16036,24821,0.607164279,0.684967384,0.051896045,2540,48944,,,0.178,3471,,0.127957447,0.228042553,,,,,,,0.350961539,0.076183497,0.62573958,0.303631961,0.208791095,0.398472827,0.198473282,0.165323484,0.231623081,4.304793197,111365,25870,3.982795631,4.626790762,0.262538308,5397,20557,0.222291755,0.302784862,9.418847405,97,102985,,,84.38818565,436,516660,76.46692186,92.30944945,,,,,,,161.1232593,88.08758518,270.3374511,62.6479187,37.12912704,99.01072069,85.20110697,76.79871841,93.60349552,,,,6.8,,,,,0,,,,,0.110588235,4935,44625,0.097224991,0.123951479,0.098094374,0.0851314,0.111057348,0.007282913,0.004039978,0.010525848,0.011316527,0.006785163,0.01584789,0.836060715,39493,47237,0.820366067,0.851755363,,,,,,,0.889626556,0.786447364,0.992805748,0.832407407,0.773022834,0.891791981,0.824553866,0.801979176,0.847128555,0.272,,47237,0.248834799,0.295165201,75.25193296,,,74.723664,75.78020192,,,,,,,69.69544852,64.91762279,74.47327425,74.51745838,71.48220251,77.55271425,75.4308342,74.88896921,75.97269918,,,,477.7265576,1989,281161,455.0387991,500.414316,,,,,,,767.4694051,540.3692876,1057.855479,559.8050595,441.7893986,699.6602742,469.2784452,445.8679308,492.6889595,,,,39.86490228,36,90305,27.92088746,55.18982835,,,,,,,,,,,,,32.24722875,20.66140793,47.98132025,,,,4.835164835,33,6825,3.328304992,6.790369124,,,,,,,,,,,,,4.260395365,2.757103246,6.289183998,,,,,,,0.117,,,0.1,0.137,0.18,,,0.155,0.207,0.094,,,0.08,0.11,107.6,96,89251,,,0.131,13600,,,,0.05254439,5662.761444,107771,,,34.68417948,107,308498,28.11220895,41.25615001,,,,,,,,,,,,,32.93569216,26.51776482,40.43773161,,,,0.339,,,0.321,0.355,0.07000411,4258,60825,0.059280706,0.080727514,0.031758766,673,21191,0.022226851,0.04129068,0.00098229,101,102821,,,1018.029703,0.778851409,912.035,1171,,,0.036334913,184,5064,0.016072761,0.056597065,2.967346379,,,,,,,2.466594791,2.845753209,3.00017906,2.777079673,,,,,,,2.040142711,2.629507018,2.84254914,0.060676046,,,,,739.031925,,,,,0.762718797,44751,58673,0.718646197,0.806791398,56388,,,51692.34043,61083.65957,87130,79244.7234,95015.2766,,,,41250,13960.12766,68539.87234,55037,47253,62821,58375,55439.17021,61310.82979,,,,,,0.529164115,6913,13064,,,58.28151453,,,,,0.311289636,,56388,,,10.31746032,52,5040,,,2.063086432,15,727066,1.154693815,3.402747326,,,,,,,,,,,,,1.83654448,0.948969333,3.20807361,,,,15.06856162,82,516660,11.83206188,18.91719922,15.87117253,,,,,,,,,,,,,14.51327259,11.20103739,18.49835731,,,,10.064646,52,516660,7.516759029,13.19844419,,,,,,,,,,,,,9.922154229,7.26426394,13.23476328,,,,11.55328402,84,727066,9.215351803,14.30375176,,,,,,,,,,,,,12.0905845,9.572229605,15.06847574,,,,24.65116279,,8600,,,212,,0.734190325,60255,82070,,,0.775,,,,,76.96439246,,,,,0.756216805,34029,44999,0.742891267,0.769542342,0.105914875,4636,43771,0.092439197,0.119390553,0.876419476,39438,44999,0.862462386,0.890376566,102821,,,,,0.193423522,19888,102821,,,0.219264547,22545,102821,,,0.018420362,1894,102821,,,0.006856576,705,102821,,,0.006185507,636,102821,,,0.000233415,24,102821,,,0.059433384,6111,102821,,,0.890742164,91587,102821,,,0.001427834,141,98751,6.96639E-05,0.002786003,0.504537011,51877,102821,,,0.28939108,30055,103856,, -26,019,26019,MI,Benzie County,2024,1,8526.218017,282,47789,6723.342034,10329.094,0,,,,2,,,,2,,,,2,,,,2,8557.559805,6659.764838,10455.35477,,,,,2,,0.135,,,0.11,0.16,3.388121551,,,2.609611217,4.17296657,5.297760389,,,4.234359101,6.314527806,0.065827686,68,1033,0.050705183,0.08095019,0,,,,,,,,,,,,,0.070103093,0.054035301,0.086170885,,,,,,,0.169,,,0.128,0.21,0.337,,,0.259,0.408,,,0.109,,,0.213,,,0.169,0.258,0.62198108,11177,17970,,,0.172356048,,,0.136413203,0.208682134,0.363636364,4,11,0.198476333,0.520352029,126.2,23,18223,,,16.1498708,50,3096,11.98674539,21.2915913,,,,,,,,,,,,,15.02683363,10.83001994,20.3119137,,,,,,,0.067414028,890,13202,0.056690624,0.078137432,0.000603633,11,18223,,,1656.636364,0.000601192,11,18297,,,1663.363636,0.001694267,31,18297,,,590.2258065,1731,,,,,,,,,1732,0.45,,,,,,,,,0.45,0.47,,,,,0.05,,,,0.48,0.934440496,12885,13789,0.92233609,0.946544902,0.654409806,2456,3753,0.583741855,0.725077756,0.053185406,465,8743,,,0.134,406,,0.087531915,0.180468085,,,,,,,,,,0.685185185,0.334592983,1,0.097297297,0.059029213,0.135565382,3.800219746,121056,31855,3.451415628,4.149023863,0.141706924,440,3105,0.096767533,0.186646316,13.71892663,25,18223,,,90.8407819,81,89167,72.1406933,112.9067976,,,,,,,,,,,,,88.70987077,69.65632866,111.3671192,,,,6,,,,,1,,,,,0.117435159,815,6940,0.097462295,0.137408022,0.103127273,0.082474182,0.123780364,0.01426513,0.005764884,0.022765375,0.006340058,0.001079418,0.011600697,0.795946802,6284,7895,0.768532694,0.82336091,,,,,,,,,,,,,0.747102213,0.702939589,0.791264837,0.397,,7895,0.35175477,0.44224523,77.59562484,,,76.16683051,79.02441917,,,,,,,,,,,,,77.56029751,76.06631866,79.05427635,,,,368.8309798,282,47789,318.7206898,418.9412698,,,,,,,,,,,,,365.6369853,313.8623697,417.4116009,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.103,,,0.087,0.121,0.164,,,0.138,0.189,0.081,,,0.067,0.095,62.6,10,15980,,,0.109,1960,,,,,,17525,,,18.57320629,10,53841,8.906574351,34.15678766,,,,,,,,,,,,,,,,,,,0.332,,,0.312,0.35,0.074925075,750,10010,0.061818692,0.088031458,0.044470798,150,3373,0.030172925,0.05876867,0.001366344,25,18297,,,731.88,0.89261745,133,149,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.027195553,,,,,1163.31395,,,,,0.78297198,43480,55532,0.704413241,0.86153072,65846,,,59651.44681,72040.55319,105481,92659.38298,118302.617,,,,56406,15850.08511,96961.91489,81875,28306.82979,135443.1702,70797,65665.25532,75928.74468,,,,,,0.57677665,909,1576,,,,,,,,0.332533487,,65846,,,10.40312094,8,769,,,,,,,,,,,,,,,,,,,,,,,,,,16.70255086,15,89167,8.630451759,29.17599503,16.82236702,,,,,,,,,,,,,15.98978293,7.66772243,29.40578011,,,,15.70087589,14,89167,8.58381495,26.34340184,,,,,,,,,,,,,16.78294852,9.175394131,28.15893587,,,,15.2983993,19,124196,9.210635741,23.89034556,,,,,,,,,,,,,16.33537382,9.83496214,25.50970972,,,,41.53846154,,1300,,,54,,0.851232211,12262,14405,,,0.524,,,,,8.537684723,,,,,0.8806636,6317,7173,0.863319303,0.898007897,0.100290276,691,6890,0.081895741,0.11868481,0.903527116,6481,7173,0.894991906,0.912062325,18297,,,,,0.169208067,3096,18297,,,0.282723944,5173,18297,,,0.006831721,125,18297,,,0.014811171,271,18297,,,0.005192108,95,18297,,,0.00043723,8,18297,,,0.025359349,464,18297,,,0.933486364,17080,18297,,,0.000173661,3,17275,0,0.004723193,0.495163142,9060,18297,,,0.855147468,15367,17970,, -26,021,26021,MI,Berrien County,2024,1,8465.521499,2432,419812,7912.705569,9018.337429,0,,,,2,,,,2,15830.74376,13929.75596,17731.73156,,5138.6169,3579.23495,7146.572177,,7194.116015,6616.201488,7772.030541,,,,,2,,0.164,,,0.139,0.191,3.586822232,,,2.836598066,4.437935365,5.343253176,,,4.446849945,6.366890234,0.081884315,923,11272,0.076822519,0.086946111,0,,,,0.077181208,0.046879861,0.107482555,0.135902637,0.122374347,0.149430927,0.072251309,0.05583058,0.088672037,0.064122137,0.058465574,0.069778701,,,,0.092198582,0.058431847,0.125965316,0.179,,,0.143,0.218,0.371,,,0.311,0.435,7.3,0.095625034,0.122,,,0.23,,,0.189,0.274,0.80166023,123709,154316,,,0.171166388,,,0.14017021,0.208559077,0.333333333,35,105,0.283871643,0.382951364,595,911,153101,,,22.95934154,742,32318,21.30732821,24.61135487,,,,,,,56.42787046,50.47344059,62.38230033,26.03800141,20.44543147,32.68832636,13.57904947,11.98850276,15.16959617,,,,23.75,16.80691353,32.59873058,0.074444417,8867,119109,0.064912502,0.083976331,0.00079686,122,153101,,,1254.92623,0.000562459,86,152900,,,1777.906977,0.002969261,454,152900,,,336.784141,2489,,,,,,,4259,1434,2357,0.47,,,,,,0.43,0.37,0.27,0.48,0.45,,,,,0.62,0.44,0.26,0.17,0.47,0.916325775,99009,108050,0.908698104,0.923953446,0.685936273,24455,35652,0.653102645,0.7187699,0.045574498,3264,71619,,,0.209,6631,,0.162531915,0.255468085,0.639072848,0.20728975,1,0.003030303,0,0.213215988,0.519830509,0.456061242,0.583599775,0.2,0.128713753,0.271286247,0.177909231,0.142841767,0.212976695,5.00894397,124888,24933,4.726260696,5.291627244,0.313555219,10363,33050,0.273298008,0.353812431,11.6916284,179,153101,,,73.57470176,565,767927,67.50789227,79.64151126,,,,,,,105.6509725,86.50679823,124.7951468,29.21217024,15.55425035,49.95370077,72.65023529,65.67714852,79.62332205,,,,8.6,,,,,1,,,,,0.138116734,8720,63135,0.125329374,0.150904094,0.120482897,0.106678702,0.134287093,0.01473034,0.011128743,0.018331937,0.010691376,0.006618118,0.014764633,0.784076699,54549,69571,0.768316111,0.799837286,,,,0.673509934,0.56649696,0.780522908,0.734513274,0.685071775,0.783954773,0.629762562,0.566152804,0.69337232,0.797854111,0.779639116,0.816069105,0.235,,69571,0.218793993,0.251206007,76.90852142,,,76.45562035,77.36142248,,,,86.12863608,81.19470347,91.06256869,70.29265546,68.95271105,71.63259987,84.62520286,80.77898779,88.47141794,77.96091075,77.47772169,78.44409981,,,,409.171332,2432,419812,391.7384047,426.6042593,,,,,,,722.7402056,657.4788725,788.0015386,226.5222026,162.5562435,307.3029459,369.9921083,351.3509381,388.6332785,,,,63.32863476,93,146853,51.11438154,77.58185602,,,,,,,169.0100327,124.182215,224.7475146,,,,34.68045215,23.7214036,48.95845074,,,,6.709677419,78,11625,5.303721566,8.37398108,,,,,,,12.31242786,8.42169154,17.38147444,,,,4.321404456,2.955837449,6.100533704,,,,,,,0.113,,,0.097,0.131,0.171,,,0.148,0.195,0.104,,,0.089,0.12,182.1,237,130158,,,0.122,18850,,,,0.095625034,14995.24842,156813,,,19.15012611,88,459527,15.35896112,23.59349097,,,,,,,24.40922058,13.9519786,39.63904499,,,,19.23177789,14.87385563,24.46753689,,,,0.347,,,0.332,0.362,0.088954192,7719,86775,0.077039298,0.100869086,0.036473807,1240,33997,0.025750402,0.047197211,0.001092217,167,152900,,,915.5688623,0.653838157,1603.865,2453,,,0.071009076,532,7492,0.044037667,0.097980486,2.847168027,,,,,,,1.953075111,2.753942469,3.132324461,2.797463111,,,,,,4.051945136,1.550286569,2.699237097,3.140253318,0.247373913,,,,,-4308.49036,,,,,0.752362824,45454,60415,0.712296967,0.79242868,61790,,,57242.08511,66337.91489,67644,11005.3617,124282.6383,97986,64493.23404,131478.766,29073,24071.12766,34074.87234,56318,52739.95745,59896.04255,68132,65575.06383,70688.93617,,,,,,0.561610504,12233,21782,,,72.66540235,,,,,0.329486972,,61790,,,6.744970345,58,8599,,,6.1305643,66,1076573,4.741377985,7.799580933,,,,,,,29.33243211,21.47502688,39.12535388,,,,2.357276229,1.419234278,3.681178833,,,,13.88401778,108,767927,11.13258305,16.63545252,14.0638368,,,,,,,,,,,,,15.99150118,12.73714143,19.82387172,,,,14.58471964,112,767927,11.88359176,17.28584752,,,,,,,38.8289899,28.10073252,52.30239458,,,,11.49859839,8.893015162,14.62903648,,,,12.35401594,133,1076573,10.25440702,14.45362485,,,,,,,16.57920076,10.83008437,24.29237043,,,,11.91044832,9.647501376,14.54469594,,,,40.22556391,,13300,,,535,,0.708069783,82391,116360,,,0.671,,,,,54.54590052,,,,,0.729925054,46359,63512,0.718024285,0.741825823,0.138923958,8583,61782,0.124866228,0.152981689,0.826300542,52480,63512,0.816548946,0.836052138,152900,,,,,0.210941792,32253,152900,,,0.215559189,32959,152900,,,0.13735121,21001,152900,,,0.006860693,1049,152900,,,0.021648136,3310,152900,,,0.001137999,174,152900,,,0.061720079,9437,152900,,,0.747410072,114279,152900,,,0.006140574,894,145589,,,0.507423152,77585,152900,,,0.300966847,46444,154316,, -26,023,26023,MI,Branch County,2024,1,8203.882524,730,121880,7235.836553,9171.928495,0,,,,2,,,,2,9746.130172,5953.189506,15052.10759,1,,,,2,8435.078391,7379.424324,9490.732457,,,,,2,,0.174,,,0.146,0.204,4.102732107,,,3.267008094,4.992235349,5.564327065,,,4.511633669,6.647221645,0.073233626,284,3878,0.065034027,0.081433224,0,,,,,,,,,,0.082733813,0.05035038,0.115117246,0.073554665,0.064898817,0.082210513,,,,,,,0.212,,,0.172,0.257,0.402,,,0.325,0.477,7.8,0.063889599,0.115,,,0.258,,,0.209,0.312,0.605033213,27143,44862,,,0.16617921,,,0.131417508,0.203600574,0.238095238,5,21,0.124889996,0.363491167,282.3,127,44985,,,24.14880888,222,9193,20.97211549,27.32550226,,,,,,,,,,26.12826603,16.37444522,39.55850877,24.57466919,21.12540511,28.02393327,,,,,,,0.080561968,2827,35091,0.068647074,0.092476861,0.000355674,16,44985,,,2811.5625,0.000471582,21,44531,,,2120.52381,0.001706676,76,44531,,,585.9342105,3597,,,,,,,,,3602,0.45,,,,,,,,,0.45,0.46,,,,,,0.26,,0.19,0.46,0.88815322,27499,30962,0.872563283,0.903743157,0.517614921,5495,10616,0.472155889,0.563073953,0.041241843,809,19616,,,0.228,2328,,0.176765957,0.279234043,,,,,,,,,,0.045595855,0,0.100124987,0.233025404,0.190281766,0.275769043,3.783342653,108249,28612,3.40799807,4.158687237,0.20007699,2079,10391,0.157115353,0.243038626,9.336445482,42,44985,,,81.29412947,178,218958,69.35135434,93.2369046,,,,,,,,,,,,,84.85254964,71.98301829,97.722081,,,,8.4,,,,,0,,,,,0.107089441,1790,16715,0.090108753,0.124070129,0.07806354,0.062614436,0.093512645,0.020341011,0.013768499,0.026913524,0.019144481,0.012684053,0.025604909,0.796971783,15054,18889,0.767738193,0.826205372,,,,,,,,,,0.637075718,0.517698839,0.756452597,0.807684503,0.777937244,0.837431761,0.256,,18889,0.230612608,0.281387392,76.12114209,,,75.33193938,76.91034481,,,,,,,,,,81.54880084,73.18989747,89.9077042,75.97073488,75.13181435,76.80965541,,,,424.1854934,730,121880,391.714214,456.6567728,,,,,,,1033.659363,622.3304598,1614.187137,,,,427.2579874,392.8800576,461.6359171,,,,58.58890867,26,44377,38.27222033,85.84632599,,,,,,,,,,,,,63.06329979,40.40584611,93.83319125,,,,7.118375956,27,3793,4.691054609,10.35686329,,,,,,,,,,,,,7.003209805,4.487088665,10.42022107,,,,,,,0.123,,,0.105,0.141,0.185,,,0.159,0.211,0.099,,,0.083,0.115,66.4,25,37653,,,0.115,5160,,,,0.063889599,2890.876572,45248,,,11.37001046,15,131926,6.363708543,18.75310316,,,,,,,,,,,,,10.99319268,5.85341211,18.79869428,,,,0.354,,,0.337,0.37,0.092179674,2282,24756,0.077881801,0.106477546,0.052985625,575,10852,0.036304774,0.069666476,0.000718601,32,44531,,,1391.59375,0.853701826,420.875,493,,,0.114455084,251,2193,0.069724075,0.159186094,2.762708474,,,,,,,,2.724598422,2.760288455,2.78124689,,,,,,,,2.760693419,2.783854648,0.054710291,,,,,-2097.43075,,,,,0.818469941,41061,50168,0.7652887,0.871651182,63634,,,57016.46809,70251.53192,110417,33378.87234,187455.1277,,,,64559,53360.19149,75757.80851,73214,47669.65957,98758.34043,59868,57512.42553,62223.57447,,,,,,0.617951844,4055,6562,,,48.49506812,,,,,0.291950844,,63634,,,5.850091408,16,2735,,,,,,,,,,,,,,,,,,,,,,,,,,16.98262711,38,218958,11.82902202,23.61872323,17.35492652,,,,,,,,,,,,,17.84269487,12.20439008,25.18856139,,,,10.50429763,23,218958,6.658823627,15.761604,,,,,,,,,,,,,10.67008109,6.604948369,16.31035238,,,,16.99074331,52,306049,12.68949979,22.28109935,,,,,,,,,,,,,17.76192496,13.14036986,23.48220675,,,,70.97560976,,4100,,,291,,0.636775194,20536,32250,,,0.636,,,,,28.99267455,,,,,0.774345519,12985,16769,0.755072499,0.793618538,0.09598173,1555,16201,0.078490955,0.113472504,0.82968573,13913,16769,0.812510674,0.846860786,44531,,,,,0.233814646,10412,44531,,,0.196110575,8733,44531,,,0.017515888,780,44531,,,0.005905998,263,44531,,,0.007141093,318,44531,,,0.000426669,19,44531,,,0.063057196,2808,44531,,,0.89191799,39718,44531,,,0.029245328,1230,42058,0.021641307,0.036849349,0.484987986,21597,44531,,,0.694150952,31141,44862,, -26,025,26025,MI,Calhoun County,2024,1,10268.91035,2589,371338,9659.006986,10878.8137,0,,,,2,,,,2,14234.73704,12078.71723,16390.75686,,9750.569279,7324.927738,12722.37783,,9966.838386,9280.568878,10653.1079,,,,,2,,0.174,,,0.15,0.202,3.867733132,,,3.089477657,4.737643544,5.420854581,,,4.518815217,6.432073476,0.090355805,965,10680,0.084918493,0.095793117,0,,,,0.061965812,0.040122497,0.083809127,0.156850192,0.138815428,0.174884956,0.075,0.053924303,0.096075697,0.079673942,0.073588292,0.085759591,,,,0.093670886,0.064936442,0.12240533,0.197,,,0.161,0.239,0.399,,,0.338,0.464,6.9,0.113983445,0.13,,,0.254,,,0.214,0.3,0.803670613,107941,134310,,,0.165192345,,,0.134385343,0.200306524,0.383838384,38,99,0.33420691,0.432742257,665.8,891,133819,,,23.33097667,693,29703,21.59388646,25.06806688,,,,11.72332943,5.621792141,21.55962021,40.93389933,34.02876226,47.83903641,20.13422819,14.99125537,26.4727917,20.38483521,18.45357233,22.31609808,,,,33.10197544,25.37909476,42.43523859,0.065618024,7025,107059,0.056086109,0.075149939,0.000575404,77,133819,,,1737.909091,0.00072024,96,133289,,,1388.427083,0.00387879,517,133289,,,257.8123791,2969,,,,,,,4301,2805,2806,0.47,,,,,,0.33,0.52,0.36,0.47,0.45,,,,,0.25,0.42,0.35,0.38,0.46,0.911387146,83350,91454,0.902640659,0.920133632,0.577207348,18821,32607,0.546666183,0.607748513,0.048253023,2885,59789,,,0.197,5780,,0.141,0.253,0.107692308,0,0.235769254,0.271555996,0.119436616,0.423675376,0.468405797,0.335596695,0.601214899,0.196041822,0.110435517,0.281648127,0.184378806,0.154520392,0.214237221,4.21537319,113520,26930,3.890920516,4.539825864,0.325397865,9937,30538,0.289552599,0.361243131,10.46189256,140,133819,,,106.9873003,717,670173,99.15609296,114.8185076,,,,,,,133.3759395,108.0349392,162.8748503,56.95687551,35.25720365,87.06463449,112.6439985,103.4922804,121.7957167,,,,8.5,,,,,1,,,,,0.136166282,7370,54125,0.124215857,0.148116707,0.122273998,0.11013066,0.134417337,0.01291455,0.009182786,0.016646314,0.00812933,0.004418132,0.011840528,0.808334336,47020,58169,0.793516805,0.823151867,,,,0.76,0.638542579,0.881457421,0.7465993,0.686782131,0.80641647,0.730376516,0.670894074,0.789858957,0.830807523,0.816270584,0.845344462,0.227,,58169,0.211103549,0.242896451,74.35398666,,,73.88661239,74.82136092,,,,97.31642796,78.76126414,115.8715918,70.6886411,69.18032593,72.19695628,75.42172618,72.73273967,78.11071269,74.59692852,74.07888371,75.11497334,,,,520.7603957,2589,371338,499.667558,541.8532334,,,,,,,694.5450396,617.316004,771.7740752,489.5027697,383.6920315,615.4762417,511.1742053,487.876323,534.4720877,,,,47.89130883,65,135724,36.96150108,61.04140448,,,,,,,91.89592786,52.52646289,149.2332296,,,,38.40330049,26.74930589,53.4096945,,,,6.346578366,69,10872,4.938016792,8.032001113,,,,,,,,,,,,,4.764971024,3.354979339,6.567884886,,,,,,,0.119,,,0.102,0.137,0.178,,,0.154,0.204,0.1,,,0.086,0.116,180.4,203,112507,,,0.13,17470,,,,0.113983445,15518.39007,136146,,,39.84480449,160,401558,33.67078807,46.01882091,,,,,,,62.77172018,41.36695913,91.32955722,,,,40.16779774,33.09773528,47.23786019,,,,0.369,,,0.353,0.385,0.078647313,6063,77091,0.066732419,0.090562207,0.032865044,1034,31462,0.023333129,0.042396958,0.001425474,190,133289,,,701.5210526,0.749885236,1208.815,1612,,,0.073940366,553,7479,0.045763086,0.102117647,2.65515557,,,,,,2.916001299,2.075345377,2.578084073,2.807715464,2.546647444,,,,,,3.073614534,1.821041379,2.556196788,2.725819306,0.139891795,,,,,-1458.895033,,,,,0.824495906,44611,54107,0.77357589,0.875415922,59652,,,55964.34043,63339.65957,53125,13971.46809,92278.53192,85976,76639.48936,95312.51064,35071,31373.80851,38768.19149,51094,32629.48936,69558.51064,61785,59410.3617,64159.6383,,,,,,0.583564743,11348,19446,,,59.49016964,,,,,0.324850801,,59652,,,7.270903849,58,7977,,,6.60366205,62,938873,5.062989828,8.465596718,,,,,,,29.67799377,20.02361777,42.36718148,,,,4.125974246,2.783777497,5.890084788,,,,19.52897613,130,670173,16.05598876,23.0019635,19.39797634,,,,,,,,,,,,,21.22638701,17.09652182,25.3562522,,,,15.36916587,103,670173,12.40100281,18.33732894,,,,,,,27.78665407,16.97281018,42.91423358,,,,14.70952558,11.58943312,18.41116472,,,,15.97660173,150,938873,13.41981296,18.53339051,,,,,,,17.80679626,10.553436,28.14241506,,,,16.64142946,13.6762293,19.60662962,,,,24.04958678,,12100,,,291,,0.658627714,66281,100635,,,0.705,,,,,49.26355009,,,,,0.716644675,38018,53050,0.701523947,0.731765403,0.114282422,5950,52064,0.101873057,0.126691787,0.870329878,46171,53050,0.85663989,0.884019865,133289,,,,,0.227093008,30269,133289,,,0.18631695,24834,133289,,,0.107540757,14334,133289,,,0.008432804,1124,133289,,,0.028742057,3831,133289,,,0.000547682,73,133289,,,0.059967439,7993,133289,,,0.762073389,101576,133289,,,0.009858697,1244,126183,,,0.505968234,67440,133289,,,0.323423423,43439,134310,, -26,027,26027,MI,Cass County,2024,1,8895.834841,893,141808,7872.808753,9918.86093,0,,,,2,,,,2,11362.08073,6733.88913,17956.98604,1,13691.2527,8243.028499,21380.58706,1,8539.921699,7458.38406,9621.459338,,,,,2,,0.159,,,0.133,0.188,3.671079776,,,2.850323177,4.524016023,5.396006332,,,4.32734484,6.442353571,0.074277017,244,3285,0.065309832,0.083244202,0,,,,,,,0.095541401,0.049558497,0.141524305,0.067357513,0.031996228,0.102718798,0.071950329,0.062271087,0.081629571,,,,0.076335878,0.030864113,0.121807643,0.194,,,0.153,0.238,0.367,,,0.295,0.445,8.1,0.032304844,0.112,,,0.227,,,0.184,0.277,0.629145748,32457,51589,,,0.167641997,,,0.13351284,0.206290126,0.457627119,27,59,0.396165002,0.516171348,322.4,166,51483,,,21.59059852,237,10977,18.84177676,24.33942029,,,,,,,46.08294931,31.09197238,65.78627557,29.27580894,17.62594941,45.71780211,18.45733166,15.6150476,21.29961573,,,,34.36988543,21.27550079,52.53802084,0.072271682,2890,39988,0.061548277,0.082995086,0.000213663,11,51483,,,4680.272727,0.000291812,15,51403,,,3426.866667,0.001069977,55,51403,,,934.6,2299,,,,,,,1675,,2253,0.41,,,,,,,0.33,,0.42,0.46,,,,,0.56,0.41,0.31,,0.47,0.896765798,33079,36887,0.885666715,0.907864881,0.600402525,6563,10931,0.552155878,0.648649172,0.044505073,1044,23458,,,0.167,1688,,0.120531915,0.213468085,0.445121951,0.153315758,0.736928145,,,,0.134361234,0.012685334,0.256037134,0.364175564,0.225753162,0.502597965,0.190870856,0.145064079,0.236677633,4.339150303,131038,30199,3.83253702,4.845763586,0.205809759,2168,10534,0.158216773,0.253402745,8.934988249,46,51483,,,81.81846383,211,257888,70.77853776,92.85838989,,,,,,,,,,,,,83.66205926,71.63863562,95.68548289,,,,8.6,,,,,1,,,,,0.097526502,2070,21225,0.083515955,0.111537049,0.073188233,0.06026153,0.086114935,0.020023557,0.011811943,0.028235171,0.006124853,0.00280117,0.009448535,0.805743459,18939,23505,0.779358793,0.832128125,,,,,,,0.564593301,0.304395459,0.824791144,0.861182519,0.743084556,0.979280483,0.755731157,0.718290032,0.793172282,0.372,,23505,0.339566093,0.404433907,76.81586881,,,75.99428518,77.63745243,,,,,,,74.15651522,70.27475161,78.03827883,87.49537474,65.29223582,109.6985137,76.97552102,76.11424149,77.83680055,,,,417.5341161,893,141808,387.2430399,447.8251924,,,,,,,548.6307482,403.1132378,729.5625893,490.1019005,303.380801,749.1728162,404.983885,373.1968447,436.7709252,,,,59.50104127,28,47058,39.53800981,85.9955713,,,,,,,,,,,,,53.97527932,32.96950285,83.36044126,,,,8.062108092,27,3349,5.312980033,11.729944,,,,,,,,,,,,,7.502679528,4.644276879,11.46864264,,,,,,,0.112,,,0.096,0.132,0.172,,,0.148,0.2,0.092,,,0.078,0.107,54.2,24,44301,,,0.112,5760,,,,0.032304844,1689.31719,52293,,,16.79000865,26,154854,10.96779109,24.60125285,,,,,,,,,,,,,17.98439853,11.52294349,26.75935945,,,,0.345,,,0.328,0.362,0.08338426,2456,29454,0.070277877,0.096490643,0.041873477,464,11081,0.029958584,0.053788371,0.000447445,23,51403,,,2234.913044,0.811309524,374.825,462,,,0.035701406,99,2773,0.013486884,0.057915929,3.017434389,,,,,,,2.502557549,2.690349435,3.115632154,2.902232158,,,,,,,2.305870149,2.61732366,3.031299881,0.105461088,,,,,-1148.319945,,,,,0.781384462,45400,58102,0.730707433,0.83206149,65703,,,58020.2766,73385.7234,53333,29356.65957,77309.34043,44135,11517.97872,76752.02128,46543,39116.44681,53969.55319,50000,25588.76596,74411.23404,66734,62553.06383,70914.93617,,,,,,0.549836844,3707,6742,,,53.94409198,,,,,0.296166081,,65703,,,5.559968229,14,2518,,,3.045876437,11,361144,1.520490543,5.449914304,,,,,,,,,,,,,,,,,,,21.69750774,57,257888,16.10430846,28.605459,22.10261819,,,,,,,,,,,,,20.93496716,15.08808291,28.29799388,,,,14.73507879,38,257888,10.42741874,20.22504689,,,,,,,,,,,,,14.39347256,9.845124576,20.31928864,,,,15.7831779,57,361144,11.95402481,20.44893765,,,,,,,,,,,,,16.37023698,12.18871668,21.5238384,,,,36.52173913,,4600,,,168,,0.647308642,26216,40500,,,0.642,,,,,13.92759059,,,,,0.815390539,16943,20779,0.796629041,0.834152036,0.095276382,1896,19900,0.078978131,0.111574633,0.865922325,17993,20779,0.845142343,0.886702308,51403,,,,,0.200494135,10306,51403,,,0.227438087,11691,51403,,,0.048012762,2468,51403,,,0.012508998,643,51403,,,0.008579266,441,51403,,,0.000700348,36,51403,,,0.043869035,2255,51403,,,0.858724199,44141,51403,,,0.001627505,80,49155,0,0.004190243,0.496955431,25545,51403,,,0.741030065,38229,51589,, -26,029,26029,MI,Charlevoix County,2024,1,7833.110131,390,70284,6479.06601,9187.154253,0,,,,2,,,,2,,,,2,,,,2,7961.642696,6525.608668,9397.676724,,,,,2,,0.133,,,0.109,0.159,3.326399933,,,2.57465994,4.163567929,5.001218722,,,3.95838062,6.100047995,0.067729084,102,1506,0.055037896,0.080420271,0,,,,,,,,,,,,,0.062947067,0.050215781,0.075678354,,,,,,,0.164,,,0.126,0.206,0.329,,,0.255,0.406,8.6,0.003992485,0.107,,,0.197,,,0.155,0.244,0.781876104,20371,26054,,,0.182711708,,,0.14629921,0.22450485,0.1875,3,16,0.067648579,0.337423465,153.3,40,26086,,,14.93440969,74,4955,11.72672376,18.74878375,,,,,,,,,,,,,14.23487545,10.96258865,18.17761815,,,,,,,0.063643431,1228,19295,0.054111516,0.073175346,0.000843364,22,26086,,,1185.727273,0.001369186,36,26293,,,730.3611111,0.003004602,79,26293,,,332.8227848,2151,,,,,,,,,2176,0.45,,,,,,,,,0.45,0.38,,,,,0.13,,,,0.39,0.946978219,18521,19558,0.938170211,0.955786226,0.66005291,3493,5292,0.608838609,0.711267211,0.047324781,605,12784,,,0.119,532,,0.073723404,0.164276596,0.02,0,0.69754233,,,,,,,0.010204082,0,0.183819903,0.118989801,0.077309477,0.160670125,4.223269218,130423,30882,3.823969336,4.622569101,0.237273875,1128,4754,0.179399679,0.295148071,15.33389558,40,26086,,,87.97631525,115,130717,71.8968012,104.0558293,,,,,,,,,,,,,90.77972423,73.89152121,107.6679272,,,,5.9,,,,,0,,,,,0.092537313,1085,11725,0.076161133,0.108913494,0.077188443,0.06289313,0.091483757,0.010575693,0.005033157,0.016118229,0.009808102,0.002114895,0.01750131,0.763077418,9482,12426,0.739104413,0.787050424,,,,,,,,,,,,,0.756870443,0.724911383,0.788829503,0.234,,12426,0.209610821,0.258389179,78.35230717,,,77.24898467,79.45562968,,,,,,,,,,,,,78.25481587,77.10121183,79.4084199,,,,351.6247594,390,70284,311.4883793,391.7611395,,,,,,,,,,,,,353.9514753,312.219395,395.6835557,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.102,,,0.086,0.121,0.164,,,0.141,0.191,0.08,,,0.067,0.096,47.9,11,22954,,,0.107,2800,,,,0.003992485,103.6009852,25949,,,25.5316976,20,78334,15.59542419,39.4316362,,,,,,,,,,,,,23.24118886,13.53884897,37.21139477,,,,0.325,,,0.306,0.344,0.071866903,1054,14666,0.059952009,0.083781797,0.038626609,189,4893,0.026711716,0.050541503,0.001026889,27,26293,,,973.8148148,0.824458204,266.3,323,,,,,,,,3.163321939,,,,,,,,,3.186454188,3.058010328,,,,,,,,,3.11224447,0.036406002,,,,,2147.8563,,,,,0.694636072,42593,61317,0.632473968,0.756798176,71362,,,65745.31915,76978.68085,53250,30425.82979,76074.17021,68958,57051.44681,80864.55319,,,,57102,51028.97872,63175.02128,70254,67338.42553,73169.57447,,,,,,0.459180666,1558,3393,,,,,,,,0.300930467,,71362,,,14.85608171,16,1077,,,,,,,,,,,,,,,,,,,,,,,,,,18.80829714,24,130717,11.48859652,29.04788948,18.36027449,,,,,,,,,,,,,20.2309987,12.35761959,31.24513665,,,,11.47517155,15,130717,6.422566409,18.92655039,,,,,,,,,,,,,12.2675303,6.866043585,20.23342564,,,,12.01338947,22,183129,7.528727221,18.18841603,,,,,,,,,,,,,12.24197131,7.577973187,18.71315355,,,,33,,2000,,,66,,0.807025872,17000,21065,,,0.536,,,,,12.96244453,,,,,0.816710268,9990,12232,0.809269247,0.824151289,0.083792355,1004,11982,0.066877599,0.100707111,0.8661707,10595,12232,0.848880028,0.883461372,26293,,,,,0.172973795,4548,26293,,,0.275814856,7252,26293,,,0.005742973,151,26293,,,0.01722892,453,26293,,,0.006655764,175,26293,,,0.000874758,23,26293,,,0.026014529,684,26293,,,0.928536112,24414,26293,,,0.005061172,127,25093,0.000973784,0.009148561,0.498345567,13103,26293,,,0.698011822,18186,26054,, -26,031,26031,MI,Cheboygan County,2024,1,9713.196453,481,67729,7957.42122,11468.97169,0,,,,2,,,,2,,,,2,,,,2,9539.798301,7685.714938,11393.88166,,,,,2,,0.163,,,0.136,0.192,3.743786881,,,2.983904638,4.627574503,5.477799187,,,4.484260266,6.562307261,0.090775988,124,1366,0.075540665,0.106011311,0,,,,,,,,,,,,,0.092622951,0.076355131,0.108890771,,,,,,,0.205,,,0.16,0.25,0.335,,,0.264,0.412,7.5,0.038733831,0.137,,,0.231,,,0.185,0.282,0.649790844,16621,25579,,,0.157816249,,,0.126802407,0.192723495,0.4,6,15,0.262274328,0.527864126,167,43,25752,,,16.02104256,67,4182,12.41608793,20.34615773,,,,,,,,,,,,,15.91657519,12.08612285,20.57586437,,,,,,,0.084884423,1546,18213,0.07177804,0.097990806,0.000543647,14,25752,,,1839.428571,0.000385505,10,25940,,,2594,0.001349268,35,25940,,,741.1428571,2527,,,,,,,,,2570,0.41,,,,,0.42,,,,0.41,0.3,,,,,0.22,,,,0.3,0.896983666,17902,19958,0.879381309,0.914586023,0.525248509,2642,5030,0.47051925,0.579977768,0.083106796,856,10300,,,0.206,786,,0.13212766,0.27987234,0.14516129,0,0.747668344,,,,,,,0.145454546,0,0.310488948,0.204329775,0.158894183,0.249765366,3.941879699,104854,26600,3.58128785,4.302471548,0.163735447,661,4037,0.120145989,0.207324905,12.42621932,32,25752,,,85.70866916,109,127175,69.61824198,101.7990963,,,,,,,,,,,,,85.64723616,68.86037788,102.4340945,,,,5.7,,,,,0,,,,,0.117201426,1315,11220,0.097603905,0.136798947,0.098232895,0.078973275,0.117492516,0.017825312,0.009728622,0.025922002,0.003921569,0.00059173,0.007251407,0.765672372,7829,10225,0.738761676,0.792583068,,,,,,,,,,,,,0.730051886,0.706648113,0.75345566,0.357,,10225,0.317089553,0.396910448,75.82911998,,,74.53971591,77.11852405,,,,,,,,,,,,,75.87406636,74.52469599,77.22343674,,,,409.9481509,481,67729,366.4753748,453.420927,,,,,,,,,,,,,405.6457729,360.4113887,450.8801572,,,,115.4099802,21,18196,71.44059675,176.4164142,,,,,,,,,,,,,120.8882102,72.78259951,188.7819149,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.118,,,0.1,0.137,0.182,,,0.155,0.209,0.092,,,0.077,0.107,78.3,18,22991,,,0.137,3530,,,,0.038733831,1012.967155,26152,,,19.6353069,15,76393,10.98973222,32.38545269,,,,,,,,,,,,,19.9960008,10.93199971,33.54989162,,,,0.346,,,0.327,0.363,0.096311907,1371,14235,0.080822546,0.111801269,0.044935806,189,4206,0.030637934,0.059233678,0.00073246,19,25940,,,1365.263158,0.790311005,165.175,209,,,0.114146342,117,1025,0.037454287,0.190838396,3.072598946,,,,,,,,,,2.730129183,,,,,,,,,,0.029634334,,,,,-1826.841567,,,,,0.891690202,43255,48509,0.806918324,0.97646208,60849,,,56429.76596,65268.23404,61083,48054.06383,74111.93617,70000,67387.06383,72612.93617,72143,64112.3617,80173.6383,37153,13316.06383,60989.93617,59716,56460.85106,62971.14894,,,,,,0.677121029,1684,2487,,,64.17851553,,,,,0.303143848,,60849,,,6.603773585,7,1060,,,,,,,,,,,,,,,,,,,,,,,,,,22.45966164,32,127175,14.67139665,32.9086081,25.1621781,,,,,,,,,,,,,23.27625006,14.91353261,34.63321505,,,,14.15372518,18,127175,8.388394559,22.36898783,,,,,,,,,,,,,13.70355779,7.832767308,22.25371932,,,,10.11218912,18,178003,5.99312415,15.98161844,,,,,,,,,,,,,9.782701738,5.591659301,15.88649473,,,,52.94117647,,1700,,,90,,0.751325758,15868,21120,,,0.51,,,,,7.897039595,,,,,0.848826291,9040,10650,0.81356523,0.884087352,0.102361446,1062,10375,0.083392343,0.121330548,0.836338028,8907,10650,0.813955305,0.858720752,25940,,,,,0.150655359,3908,25940,,,0.290516577,7536,25940,,,0.008558211,222,25940,,,0.032575174,845,25940,,,0.004317656,112,25940,,,0.000616808,16,25940,,,0.017848882,463,25940,,,0.912220509,23663,25940,,,0.003116273,77,24709,0,0.007169116,0.492713955,12781,25940,,,0.788498378,20169,25579,, -26,033,26033,MI,Chippewa County,2024,1,6775.135856,524,102483,5726.647484,7823.624227,0,11517.65248,8506.16615,14529.13881,,,,,2,,,,2,,,,2,6370.756447,5106.62295,7634.889945,,,,,2,,0.177,,,0.15,0.205,4.007146949,,,3.197588285,4.905706342,5.658587619,,,4.648251008,6.762536253,0.066321731,141,2126,0.055743794,0.076899668,0,0.049907579,0.031558105,0.068257052,,,,,,,,,,0.059593023,0.047084602,0.072101444,,,,0.139705882,0.081439582,0.197972182,0.21,,,0.172,0.25,0.401,,,0.325,0.482,6.9,0.081391862,0.147,,,0.242,,,0.197,0.289,0.770422727,28340,36785,,,0.18275674,,,0.147126534,0.22325443,0.4,8,20,0.28271818,0.510327518,211.9,78,36816,,,14.2148317,106,7457,11.50872535,16.92093806,20.01053186,14.16064331,27.46601839,,,,,,,,,,11.87648456,8.946993516,15.45887713,,,,19.23076923,9.599930712,34.40915824,0.0784496,1941,24742,0.066534706,0.090364494,0.000706215,26,36816,,,1416,0.000606178,22,36293,,,1649.681818,0.004408564,160,36293,,,226.83125,3320,,,,,4251,,,,3239,0.42,,,,,0.39,,,,0.43,0.36,,,,,0.27,,,,0.37,0.922713795,23651,25632,0.909719326,0.935708264,0.590069407,5526,9365,0.540222919,0.639915896,0.06360115,1018,16006,,,0.175,1117,,0.114234043,0.235765957,0.340807175,0.253340627,0.428273722,,,,0.94017094,0.02944733,1,0.631147541,0.366484355,0.895810727,0.190293392,0.123194889,0.257391894,4.520886212,105088,23245,4.047167759,4.994604665,0.227765065,1493,6555,0.161366833,0.294163297,7.877009996,29,36816,,,76.2002887,142,186351,63.66689979,88.73367761,87.73705878,57.31275972,128.5551194,,,,,,,,,,83.75469181,67.95846582,99.55091781,,,,5.9,,,,,0,,,,,0.120767888,1730,14325,0.099353164,0.142182613,0.098516949,0.078558724,0.118475174,0.014659686,0.008119527,0.021199844,0.015357766,0.007747882,0.02296765,0.754837461,11703,15504,0.730636313,0.77903861,0.729200653,0.65858202,0.799819285,,,,,,,,,,0.766640007,0.743022753,0.790257261,0.197,,15504,0.168779052,0.225220948,77.9199218,,,76.99536365,78.84447995,72.88159032,70.28612303,75.47705761,,,,,,,,,,78.56157264,77.4853347,79.63781058,,,,361.3101649,524,102483,328.6485166,393.9718131,591.2909971,476.8452848,705.7367094,,,,,,,,,,345.6449335,307.8587733,383.4310936,,,,55.24143758,17,30774,32.1801731,88.44689288,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.124,,,0.106,0.142,0.177,,,0.153,0.202,0.108,,,0.091,0.125,65.2,21,32222,,,0.147,5440,,,,0.081391862,3135.214517,38520,,,12.59865194,14,111123,6.887800254,21.1383972,,,,,,,,,,,,,,,,,,,0.358,,,0.342,0.371,0.092873389,1715,18466,0.078575517,0.107171261,0.036874717,244,6617,0.026151312,0.047598121,0.001322569,48,36293,,,756.1041667,0.818362573,279.88,342,,,0.07360673,140,1902,0.03753661,0.10967685,2.957291262,,,,,,,,,3.058210919,2.818930694,,,,,,,,,2.991239114,0.058301615,,,,,-2341.929,,,,,0.928223449,42870,46185,0.843587832,1.012859066,58924,,,53537.2766,64310.7234,47244,38685.53192,55802.46809,113094,72576.21277,153611.7872,40385,25691.55319,55078.44681,,,,59856,56992.85106,62719.14894,,,,,,0.564844587,2635,4665,,,65.47466656,,,,,0.307311113,,58924,,,9.2272203,16,1734,,,,,,,,,,,,,,,,,,,,,,,,,,16.66273662,34,186351,11.39729951,23.5228124,18.24513955,,,,,,,,,,,,,18.69386357,11.97751112,27.81498718,,,,10.73243503,20,186351,6.555650136,16.57537545,,,,,,,,,,,,,11.63259609,6.510675724,19.18619821,,,,10.68261938,28,262108,7.098522997,15.43935933,,,,,,,,,,,,,10.43646391,6.283433028,16.29783118,,,,65.18518519,,2700,,,176,,0.588164694,17642,29995,,,0.506,,,,,19.09827856,,,,,0.736160617,10120,13747,0.714793695,0.757527539,0.111785687,1473,13177,0.090658021,0.132913354,0.858660071,11804,13747,0.83431059,0.883009553,36293,,,,,0.178546827,6480,36293,,,0.197531204,7169,36293,,,0.060700411,2203,36293,,,0.166175296,6031,36293,,,0.007329237,266,36293,,,0.000661285,24,36293,,,0.022511228,817,36293,,,0.693797702,25180,36293,,,0.003401166,119,34988,0,0.007146654,0.450362329,16345,36293,,,0.511295365,18808,36785,, -26,035,26035,MI,Clare County,2024,1,11540.68967,727,84009,10086.85959,12994.51975,0,,,,2,,,,2,,,,2,,,,2,11903.53898,10373.19381,13433.88415,,,,,2,,0.195,,,0.166,0.225,4.438592655,,,3.547680489,5.38873678,6.393681449,,,5.272827874,7.567073103,0.071077336,159,2237,0.060429081,0.08172559,0,,,,,,,,,,,,,0.067748092,0.056989,0.078507183,,,,,,,0.244,,,0.198,0.29,0.374,,,0.3,0.453,6.8,0.013248966,0.183,,,0.264,,,0.216,0.314,0.647718434,19986,30856,,,0.152292805,,,0.120337439,0.188898756,0.222222222,6,27,0.123749407,0.332441015,196.4,61,31065,,,25.42215624,137,5389,21.16511193,29.67920056,,,,,,,,,,62.1761658,32.12733217,108.609249,24.53485995,20.14501651,28.92470339,,,,,,,0.082136232,1904,23181,0.070221339,0.094051126,0.000289715,9,31065,,,3451.666667,0.000287063,9,31352,,,3483.555556,0.001275836,40,31352,,,783.8,2615,,,,,,,,,2504,0.45,,,,,,,,,0.45,0.29,,,,,0.36,,,0.42,0.3,0.871107988,19836,22771,0.853875176,0.8883408,0.464083176,2946,6348,0.412318573,0.515847779,0.069763303,784,11238,,,0.259,1541,,0.173212766,0.344787234,,,,,,,,,,0.744,0.63269567,0.85530433,0.302183568,0.251906901,0.352460235,4.0776218,88884,21798,3.615977004,4.539266596,0.19216907,1173,6104,0.142942693,0.241395446,10.30098181,32,31065,,,101.8184648,157,154196,85.89150846,117.7454212,,,,,,,,,,,,,104.2516855,87.67806607,120.825305,,,,6.7,,,,,0,,,,,0.142098816,1740,12245,0.122531633,0.161665999,0.114747307,0.095721309,0.133773306,0.018783177,0.012166629,0.025399725,0.015924867,0.007955099,0.023894636,0.764887064,8195,10714,0.734583066,0.795191062,,,,,,,,,,,,,0.752063016,0.722805422,0.781320609,0.399,,10714,0.357434266,0.440565734,73.29712246,,,72.29884978,74.29539513,,,,,,,,,,,,,73.02577871,71.99271711,74.0588403,,,,549.3075468,727,84009,503.6655659,594.9495277,,,,,,,,,,,,,561.5050477,513.8987261,609.1113693,,,,71.1370699,19,26709,42.82916307,111.0893466,,,,,,,,,,,,,70.01647447,40.78717656,112.1031582,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.138,,,0.119,0.157,0.201,,,0.174,0.227,0.105,,,0.089,0.122,145.9,39,26728,,,0.183,5640,,,,0.013248966,409.7375188,30926,,,32.33246395,30,92786,21.81457765,46.15660272,,,,,,,,,,,,,34.24266636,23.1033832,48.88353544,,,,0.375,,,0.358,0.392,0.095710534,1640,17135,0.080221172,0.111199896,0.043815248,277,6322,0.029517376,0.058113121,0.000988773,31,31352,,,1011.354839,0.745338983,219.875,295,,,0.134238311,178,1326,0.074739969,0.193736653,2.760539589,,,,,,,,,2.789045027,2.430869355,,,,,,,,,2.440899279,0.026047058,,,,,-3613.695683,,,,,0.789518795,38688,49002,0.692134435,0.886903155,47973,,,43070.02128,52875.97872,41250,26838.93617,55661.06383,,,,33750,18828.97872,48671.02128,37006,28078.17021,45933.82979,48536,46193.53192,50878.46809,,,,,,0.625906736,2416,3860,,,60.80943319,,,,,0.376857816,,47973,,,10.4679803,17,1624,,,5.113734095,11,215107,2.552757636,9.149882855,,,,,,,,,,,,,5.403413975,2.697364788,9.668200179,,,,20.6537394,31,154196,13.61094441,30.05010646,20.10428286,,,,,,,,,,,,,21.8700917,14.28627,32.04475154,,,,16.86165659,26,154196,11.0145939,24.70623368,,,,,,,,,,,,,17.83252515,11.64879748,26.12878107,,,,19.99005146,43,215107,14.46689936,26.92646814,,,,,,,,,,,,,19.15755864,13.62289696,26.18901332,,,,25.6,,2500,,,64,,0.665209397,16281,24475,,,0.465,,,,,15.01766888,,,,,0.85052367,10151,11935,0.842289105,0.858758235,0.112054771,1293,11539,0.090888693,0.133220849,0.791286133,9444,11935,0.775167902,0.807404365,31352,,,,,0.193512376,6067,31352,,,0.253668028,7953,31352,,,0.007272263,228,31352,,,0.008803266,276,31352,,,0.003285277,103,31352,,,0.000414647,13,31352,,,0.024017607,753,31352,,,0.942013269,29534,31352,,,0.003118116,92,29505,0,0.006965499,0.495789742,15544,31352,,,0.876976925,27060,30856,, -26,037,26037,MI,Clinton County,2024,1,5011.778557,824,221921,4432.912674,5590.64444,0,,,,2,,,,2,,,,2,8455.020133,4732.210585,13945.26991,1,4884.099124,4284.916216,5483.282031,,,,,2,,0.127,,,0.105,0.151,3.303479602,,,2.545682916,4.086796437,5.31132448,,,4.316629712,6.342405366,0.061139504,323,5283,0.054678839,0.06760017,0,,,,0.121495327,0.059591713,0.183398942,,,,0.057377049,0.02819611,0.086557989,0.059084195,0.052371085,0.065797305,,,,,,,0.156,,,0.119,0.194,0.38,,,0.31,0.448,8,0.098577554,0.087,,,0.191,,,0.152,0.234,0.756243049,59840,79128,,,0.180132008,,,0.145122578,0.21852907,0.205128205,8,39,0.124539557,0.295665403,280.8,223,79426,,,8.297279678,140,16873,6.922833358,9.671725997,,,,,,,,,,10.26045777,5.463261635,17.54569528,7.821307779,6.366271043,9.276344515,,,,,,,0.044153532,2877,65159,0.037004596,0.051302468,0.000302168,24,79426,,,3309.416667,0.000313488,25,79748,,,3189.92,0.001366805,109,79748,,,731.6330275,2766,,,,,,,,,2696,0.48,,,,,,,,,0.48,0.48,,,,,,0.5,0.05,0.54,0.48,0.951051487,52460,55160,0.943601984,0.958500989,0.761865371,14736,19342,0.721029878,0.802700864,0.039041815,1563,40034,,,0.084,1400,,0.058978723,0.109021277,0.084033613,0,0.368151809,,,,0.197879859,0,0.412809692,0.217734855,0.114527726,0.320941984,0.109650953,0.079732113,0.139569792,4.003951197,149976,37457,3.732467399,4.275434996,0.155870563,2683,17213,0.131450086,0.18029104,7.176491325,57,79426,,,57.74822279,229,396549,50.26864724,65.22779835,,,,,,,,,,59.28001725,29.59237102,106.0683257,58.87091777,50.88943216,66.85240337,,,,8.3,,,,,0,,,,,0.082007952,2475,30180,0.072165078,0.091850826,0.070580365,0.060864713,0.080296016,0.009609013,0.005945112,0.013272913,0.004638834,0.001907431,0.007370237,0.794590004,30873,38854,0.780670869,0.808509138,,,,,,,,,,0.673251029,0.51609173,0.830410328,0.722487177,0.696879291,0.748095064,0.297,,38854,0.27681489,0.31718511,80.09474525,,,79.52975213,80.65973836,,,,,,,,,,79.83551276,74.93042358,84.74060193,80.15214033,79.5711961,80.73308457,,,,263.6907496,824,221921,244.8337986,282.5477006,,,,,,,,,,311.0947077,206.720174,449.6184696,261.1638782,241.6281605,280.6995958,,,,26.00306836,20,76914,15.8833497,40.15963011,,,,,,,,,,,,,22.95543585,12.84798319,37.86150048,,,,4.103711994,22,5361,2.571774459,6.213069276,,,,,,,,,,,,,,,,,,,,,,0.097,,,0.082,0.113,0.159,,,0.136,0.183,0.079,,,0.067,0.093,103.6,70,67564,,,0.087,6840,,,,0.098577554,7430.973188,75382,,,13.40179417,32,238774,9.166817288,18.91933463,,,,,,,,,,,,,12.65330415,8.338607167,18.40989322,,,,0.319,,,0.301,0.336,0.050197571,2401,47831,0.041857145,0.058537996,0.028385117,518,18249,0.020044692,0.036725543,0.000489041,39,79748,,,2044.820513,0.784990329,811.68,1034,,,0.051083591,198,3876,0.027527504,0.074639679,3.407153988,,,,,,,,3.321261729,3.427610914,3.307247432,,,,,,,,3.156536677,3.34227957,0.122453365,,,,,1607.93315,,,,,0.74731635,52422,70147,0.693022854,0.801609846,80212,,,74548.85106,85875.14894,,,,68917,26060.31915,111773.6809,63009,38168.82979,87849.17021,71875,55604.02128,88145.97872,83279,80698.23404,85859.76596,,,,,,0.342692519,3747,10934,,,54.59335626,,,,,0.282414103,,80212,,,7.189239332,31,4312,,,,,,,,,,,,,,,,,,,,,,,,,,13.03137611,55,396549,9.732454978,17.08891603,13.8696605,,,,,,,,,,,,,13.17894138,9.683390421,17.5251982,,,,10.84355275,43,396549,7.847532893,14.6061944,,,,,,,,,,,,,11.2671613,8.049425218,15.34267577,,,,7.792297224,43,551827,5.639324138,10.49617322,,,,,,,,,,,,,8.082783872,5.774459301,11.00645753,,,,13.05555556,,7200,,,94,,0.795204911,47927,60270,,,0.773,,,,,31.99343839,,,,,0.82015454,25474,31060,0.809002674,0.831306406,0.085887759,2617,30470,0.073396919,0.098378598,0.888892466,27609,31060,0.877864574,0.899920359,79748,,,,,0.211403421,16859,79748,,,0.190801023,15216,79748,,,0.019172895,1529,79748,,,0.005830867,465,79748,,,0.017429904,1390,79748,,,0.000689673,55,79748,,,0.050157998,4000,79748,,,0.88928876,70919,79748,,,0.004195972,315,75072,0.001897483,0.006494461,0.503285349,40136,79748,,,0.513193813,40608,79128,, -26,039,26039,MI,Crawford County,2024,1,8662.173792,264,36783,6614.579058,10709.76853,0,,,,2,,,,2,,,,2,,,,2,8838.725472,6670.088366,11007.36258,,,,,2,,0.158,,,0.131,0.189,3.843933437,,,3.024841231,4.743289919,5.714538408,,,4.652052949,6.897276018,0.082382763,65,789,0.063197554,0.101567972,0,,,,,,,,,,,,,0.081117021,0.061603608,0.100630435,,,,,,,0.194,,,0.154,0.24,0.376,,,0.301,0.464,7.5,0.021868672,0.146,,,0.231,,,0.185,0.284,0.775716046,10075,12988,,,0.167592091,,,0.136080358,0.208619515,0.444444444,4,9,0.264827841,0.599456043,143.9,19,13204,,,24.70152326,60,2429,18.84986453,31.79575686,,,,,,,,,,,,,27.96528447,21.23521296,36.15161511,,,,,,,0.067721714,659,9731,0.05699831,0.078445118,0.000757346,10,13204,,,1320.4,0.000370617,5,13491,,,2698.2,0.001853087,25,13491,,,539.64,2128,,,,,,,,,2137,0.44,,,,,,,,,0.44,0.33,,,,,,,,,0.33,0.909938504,9174,10082,0.889107096,0.930769913,0.623874755,1594,2555,0.534549934,0.713199577,0.065510949,359,5480,,,0.212,484,,0.132170213,0.291829787,,,,,,,,,,,,,0.117588441,0.070212339,0.164964542,4.639992791,102980,22194,3.915244705,5.364740877,0.237804878,546,2296,0.16685033,0.308759426,8.330808846,11,13204,,,124.5979543,86,69022,99.6622805,153.8774599,,,,,,,,,,,,,121.5029453,96.19502601,151.4289226,,,,6,,,,,0,,,,,0.126726239,780,6155,0.096292388,0.157160089,0.101153213,0.079943115,0.12236331,0.01056052,0.002603659,0.018517381,0.018683997,0,0.043659967,0.806451613,4125,5115,0.771268034,0.841635192,,,,,,,,,,,,,0.842620943,0.810940345,0.874301541,0.276,,5115,0.222608512,0.329391488,76.49859335,,,74.92170202,78.07548468,,,,,,,,,,,,,76.25854691,74.63034547,77.88674834,,,,415.63139,264,36783,357.5160926,473.7466875,,,,,,,,,,,,,421.3624686,361.1781452,481.5467921,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.117,,,0.1,0.137,0.179,,,0.154,0.205,0.092,,,0.078,0.108,51.7,6,11596,,,0.146,1910,,,,0.021868672,307.7796889,14074,,,,,,,,,,,,,,,,,,,,,,,,,,0.332,,,0.313,0.35,0.078297072,583,7446,0.065190689,0.091403455,0.034180909,82,2399,0.022266015,0.046095802,0.001927211,26,13491,,,518.8846154,0.775,101.525,131,,,,,,,,3.118586254,,,,,,,,,3.133447595,3.174014676,,,,,,,,,3.22263755,0.039002703,,,,,-1141.629,,,,,0.868208295,44566,51331,0.722081709,1.014334882,57600,,,51316.08511,63883.91489,,,,,,,,,,,,,59714,55970.34043,63457.65957,,,,,,0.560859189,940,1676,,,,,,,,0.343732639,,57600,,,7.473841555,5,669,,,,,,,,,,,,,,,,,,,,,,,,,,31.90230393,20,69022,18.58426768,51.07867902,28.97626844,,,,,,,,,,,,,26.07608392,14.25603773,43.75123797,,,,18.83457448,13,69022,10.02861767,32.20769598,,,,,,,,,,,,,16.91813162,8.445470351,30.27121074,,,,12.42660536,12,96567,6.421008325,21.70677876,,,,,,,,,,,,,13.16135825,6.800665865,22.9902442,,,,54,,1000,,,54,,0.696588392,7861,11285,,,0.438,,,,,16.7181119,,,,,0.821018344,4789,5833,0.795938748,0.84609794,0.118121527,659,5579,0.093855432,0.142387623,0.88547917,5165,5833,0.858392967,0.912565373,13491,,,,,0.174783189,2358,13491,,,0.269661256,3638,13491,,,0.006893485,93,13491,,,0.008301831,112,13491,,,0.007486473,101,13491,,,0.000667111,9,13491,,,0.024386628,329,13491,,,0.936995034,12641,13491,,,0.001664421,21,12617,0,0.008004253,0.4834334,6522,13491,,,0.998383123,12967,12988,, -26,041,26041,MI,Delta County,2024,1,8715.216378,648,97077,7484.476012,9945.956745,0,10605.34059,5479.934238,18525.39572,1,,,,2,,,,2,,,,2,8598.837292,7300.205506,9897.469079,,,,,2,,0.156,,,0.131,0.186,3.779422942,,,2.993478984,4.677355776,5.625296347,,,4.615624865,6.725892711,0.063608827,147,2311,0.053658361,0.073559294,0,,,,,,,,,,,,,0.065802113,0.055151979,0.076452247,,,,,,,0.2,,,0.16,0.245,0.371,,,0.297,0.447,7.5,0.050529518,0.131,,,0.225,,,0.182,0.274,0.764924261,28228,36903,,,0.17202881,,,0.138668215,0.212143227,0.217391304,5,23,0.111350026,0.338101853,130.3,48,36826,,,16.58090337,116,6996,13.56348684,19.5983199,,,,,,,,,,,,,16.48172324,13.26733743,19.69610904,,,,,,,0.072599875,1979,27259,0.061876471,0.08332328,0.000814642,30,36826,,,1227.533333,0.000653221,24,36741,,,1530.875,0.001660271,61,36741,,,602.3114754,1166,,,,,,,,,1138,0.52,,,,,0.62,,,,0.52,0.4,,,,,0.14,,,,0.4,0.923297649,25098,27183,0.911150072,0.935445226,0.666840799,5106,7657,0.603916619,0.72976498,0.055753334,924,16573,,,0.141,960,,0.088574468,0.193425532,0.132352941,0,0.295072408,,,,,,,,,,0.17144337,0.126735754,0.216150987,4.698410642,108787,23154,4.087496166,5.309325118,0.222206665,1587,7142,0.150278338,0.294134992,14.12045837,52,36826,,,71.64915243,129,180044,59.28477444,84.01353042,,,,,,,,,,,,,72.64431303,59.70041726,85.58820881,,,,5.6,,,,,1,,,,,0.10368307,1675,16155,0.083239275,0.124126865,0.086252354,0.069296099,0.103208609,0.015103683,0.007216047,0.022991319,0.004952027,0.000121168,0.009782887,0.804530088,11899,14790,0.778479853,0.830580323,,,,,,,,,,,,,0.8075,0.776573099,0.838426901,0.162,,14790,0.137639943,0.186360058,76.48564734,,,75.53578203,77.43551264,,,,,,,,,,,,,76.60115873,75.60904537,77.59327208,,,,409.4128252,648,97077,373.8985004,444.9271501,648.0152986,401.1316833,990.5602197,,,,,,,,,,398.7818735,362.3110215,435.2527256,,,,67.64810102,21,31043,41.87524074,103.4073084,,,,,,,,,,,,,74.20599584,45.32695008,114.6051421,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.116,,,0.1,0.136,0.18,,,0.156,0.206,0.093,,,0.079,0.108,62.6,20,31924,,,0.131,4820,,,,0.050529518,1873.078713,37069,,,9.24026538,10,108222,4.431066416,16.99317703,,,,,,,,,,,,,,,,,,,0.359,,,0.341,0.376,0.085196913,1722,20212,0.07089904,0.099494785,0.037446121,278,7424,0.026722716,0.048169525,0.000925397,34,36741,,,1080.617647,0.855057804,295.85,346,,,,,,,,3.175312354,,,,,,,,,3.166110833,3.019384596,,,,,,,,,3.027663092,0.067110137,,,,,-1100.0594,,,,,0.688579622,40819,59280,0.606719651,0.770439593,57019,,,49556.70213,64481.29787,40286,32532.97872,48039.02128,,,,,,,80707,6060.191489,155353.8085,54060,50185.2766,57934.7234,,,,,,0.513743456,2355,4584,,,,,,,,0.289552605,,57019,,,9.736540664,17,1746,,,,,,,,,,,,,,,,,,,,,,,,,,21.25885763,40,180044,14.72237691,29.70712271,22.21679145,,,,,,,,,,,,,20.67685214,13.95058531,29.51749211,,,,13.33007487,24,180044,8.540830494,19.83409477,,,,,,,,,,,,,14.40878936,9.231983223,21.43913643,,,,12.66709682,32,252623,8.664284848,17.8821612,,,,,,,,,,,,,12.38004167,8.291108201,17.77980492,,,,37.14285714,,2800,,,104,,0.738125982,21151,28655,,,0.628,,,,,44.32876393,,,,,0.783862217,12425,15851,0.761023318,0.806701116,0.097462851,1502,15411,0.079789126,0.115136576,0.837108069,13269,15851,0.812987754,0.861228384,36741,,,,,0.189570235,6965,36741,,,0.262513269,9645,36741,,,0.004463678,164,36741,,,0.027897989,1025,36741,,,0.005634033,207,36741,,,0.000381046,14,36741,,,0.015704526,577,36741,,,0.919898751,33798,36741,,,0.000171047,6,35078,0,0.00289073,0.497917857,18294,36741,,,0.426631981,15744,36903,, -26,043,26043,MI,Dickinson County,2024,1,8167.571322,401,68344,6750.876041,9584.266602,0,,,,2,,,,2,,,,2,,,,2,8287.330431,6813.187297,9761.473565,,,,,2,,0.137,,,0.115,0.162,3.376346146,,,2.678304718,4.200113701,5.375782204,,,4.404521401,6.423964156,0.064685315,111,1716,0.053047293,0.076323336,0,,,,,,,,,,,,,0.066795119,0.054393664,0.079196574,,,,,,,0.171,,,0.133,0.211,0.353,,,0.283,0.425,7.8,0.076438032,0.108,,,0.206,,,0.165,0.249,0.65271515,16936,25947,,,0.174899849,,,0.141077081,0.211874085,0.190476191,4,21,0.083840113,0.319045344,236.6,61,25787,,,15.14522822,73,4820,11.87144127,19.04285066,,,,,,,,,,,,,13.34841629,10.16143295,17.21848447,,,,,,,0.04986178,974,19534,0.041521354,0.058202205,0.000736805,19,25787,,,1357.210526,0.001082167,28,25874,,,924.0714286,0.003710288,96,25874,,,269.5208333,1675,,,,,,,,,1690,0.59,,,,,,,,,0.6,0.42,,,,,,,,,0.42,0.959773133,18276,19042,0.948526024,0.971020243,0.74459725,4169,5599,0.6677302,0.821464299,0.043492532,530,12186,,,0.149,748,,0.095382979,0.202617021,,,,,,,,,,,,,0.092012357,0.043666703,0.14035801,3.845195426,112645,29295,3.276122766,4.414268086,0.161094819,824,5115,0.101270699,0.22091894,16.28727654,42,25787,,,97.68702338,124,126936,80.49281819,114.8812286,,,,,,,,,,,,,99.64542835,81.81659906,117.4742577,,,,5.6,,,,,0,,,,,0.098781549,1135,11490,0.073644967,0.123918132,0.079346867,0.055167645,0.103526089,0.016013925,0.007482739,0.024545111,0.006962576,0.002422436,0.011502717,0.802978723,9435,11750,0.76387029,0.842087157,,,,,,,,,,,,,0.830163782,0.797415019,0.862912545,0.137,,11750,0.107741718,0.166258282,77.23323058,,,76.10148684,78.36497433,,,,,,,,,,,,,77.06719526,75.89877479,78.23561573,,,,380.7160683,401,68344,339.2853526,422.146784,,,,,,,,,,,,,386.1014685,343.3223613,428.8805758,,,,54.0784137,12,22190,27.94310549,94.46410567,,,,,,,,,,,,,49.87531172,23.9171506,91.72247403,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.105,,,0.089,0.121,0.169,,,0.144,0.194,0.083,,,0.07,0.096,,,,,,0.108,2800,,,,0.076438032,2000.230412,26168,,,22.32787833,17,76138,13.00681193,35.74909614,,,,,,,,,,,,,23.58228831,13.73755198,37.75752804,,,,0.326,,,0.308,0.344,0.058020007,841,14495,0.047296603,0.068743411,0.027159562,144,5302,0.017627648,0.036691477,0.002705419,70,25874,,,369.6285714,0.856968641,245.95,287,,,,,,,,3.090614976,,,,,,,,,3.103805934,3.218758927,,,,,,,,,3.238762588,0.062418974,,,,,-2122.5463,,,,,0.729006581,42313,58042,0.641832207,0.816180956,56349,,,48387.46809,64310.53192,56265,56209,56321,,,,,,,51111,31953.04255,70268.95745,59733,56350.3617,63115.6383,,,,,,0.428964758,1558,3632,,,,,,,,0.339118707,,56349,,,11.22754491,15,1336,,,,,,,,,,,,,,,,,,,,,,,,,,19.173207,23,126936,11.71149294,29.61146317,18.11936724,,,,,,,,,,,,,19.22951601,11.5774248,30.02927125,,,,13.39257579,17,126936,7.801668927,21.44281119,,,,,,,,,,,,,13.28605711,7.5941296,21.57572438,,,,14.58551882,26,178259,9.527745144,21.37116448,,,,,,,,,,,,,14.75283107,9.547254408,21.77808892,,,,19,,2000,,,38,,0.720800395,14589,20240,,,0.658,,,,,48.63970987,,,,,0.831920415,9617,11560,0.801783521,0.86205731,0.065132397,733,11254,0.04474198,0.085522815,0.854844291,9882,11560,0.823350566,0.886338015,25874,,,,,0.197418258,5108,25874,,,0.242482801,6274,25874,,,0.005410837,140,25874,,,0.011169514,289,25874,,,0.007807065,202,25874,,,0.000888923,23,25874,,,0.019749556,511,25874,,,0.941060524,24349,25874,,,0.001702956,42,24663,0,0.005713911,0.489951303,12677,25874,,,0.352487764,9146,25947,, -26,045,26045,MI,Eaton County,2024,1,7246.988498,1548,304187,6647.09292,7846.884077,0,,,,2,,,,2,9216.14624,6609.310712,11822.98177,,8687.500808,6016.346857,12139.91161,,7205.774851,6536.121262,7875.42844,,,,,2,,0.132,,,0.11,0.156,3.244697538,,,2.565508315,4.013808743,4.885976456,,,3.984975905,5.845667593,0.080930971,612,7562,0.074783886,0.087078055,0,,,,0.09602649,0.062796824,0.129256156,0.107964602,0.082374997,0.133554207,0.077108434,0.051442427,0.10277444,0.077370081,0.070622472,0.084117691,,,,0.105263158,0.059264636,0.15126168,0.157,,,0.124,0.195,0.344,,,0.278,0.412,7.8,0.08796475,0.102,,,0.2,,,0.162,0.244,0.75791161,82745,109175,,,0.179708782,,,0.14594575,0.218295427,0.285714286,22,77,0.226886936,0.346107397,322.2,351,108944,,,13.24387142,302,22803,11.75015706,14.73758578,,,,,,,23.82335851,17.09605338,32.31907587,15.8045977,10.87915784,22.19553126,11.71014493,10.095256,13.32503386,,,,18.81950385,11.79408287,28.49295499,0.053958654,4693,86974,0.045618229,0.06229908,0.000330445,36,108944,,,3026.222222,0.000697299,76,108992,,,1434.105263,0.002192822,239,108992,,,456.0334728,3009,,,,,,,1865,,3030,0.43,,,,,,,,,0.43,0.43,,,,,,0.42,0.25,0.33,0.43,0.947638776,73424,77481,0.942209623,0.953067929,0.748374845,20492,27382,0.710894756,0.785854933,0.044344427,2473,55768,,,0.122,2632,,0.086255319,0.157744681,,,,0.035196687,0,0.187124315,0.263488738,0.170996828,0.355980647,0.132236095,0.073311157,0.191161034,0.073244187,0.056691683,0.089796692,3.50792764,131863,37590,3.315048119,3.700807161,0.193079709,4319,22369,0.161131576,0.225027842,11.74915553,128,108944,,,81.35523966,446,548213,73.80476645,88.90571287,,,,,,,61.86454355,39.21681381,92.82719053,77.93219899,49.93263039,115.9569347,86.09185049,77.53639151,94.64730947,,,,8.4,,,,,1,,,,,0.100366382,4520,45035,0.088448266,0.112284497,0.082293987,0.071178392,0.093409582,0.015432441,0.010457706,0.020407177,0.005773287,0.003383873,0.008162702,0.764567393,40269,52669,0.748584711,0.780550074,,,,0.713509844,0.535249621,0.891770067,0.613679891,0.568318815,0.659040966,0.735645253,0.702886924,0.768403582,0.778830353,0.764607037,0.793053669,0.272,,52669,0.253274275,0.290725725,77.58824099,,,77.08054219,78.09593978,,,,87.86132207,79.97275729,95.74988684,75.71619158,73.56354258,77.86884058,78.16770388,75.04401391,81.29139385,77.54976685,76.99418932,78.10534439,,,,360.1161009,1548,304187,341.057592,379.1746097,,,,,,,419.9732145,337.2156303,502.7307986,365.3972759,276.0171754,474.4987561,360.8049954,340.066061,381.5439297,,,,49.62089635,50,100764,36.8295857,65.41896577,,,,,,,,,,,,,44.27256273,30.6600367,61.86646887,,,,4.66140101,36,7723,3.26478796,6.453343842,,,,,,,,,,,,,3.538684253,2.217674581,5.357610485,,,,,,,0.099,,,0.084,0.115,0.164,,,0.142,0.189,0.085,,,0.072,0.1,111.5,104,93283,,,0.102,11150,,,,0.08796475,9478.993502,107759,,,19.43162497,64,329360,14.96471902,24.81375128,,,,,,,44.30660168,21.24673769,81.481418,,,,18.12572595,13.40951184,23.96317096,,,,0.34,,,0.324,0.356,0.062358119,4038,64755,0.052826204,0.071890034,0.030273229,708,23387,0.020741314,0.039805144,0.000633074,69,108992,,,1579.594203,0.772361927,1314.56,1702,,,0.089095993,478,5365,0.06094328,0.117248705,3.004037392,,,,,,2.874092633,2.401934235,2.876954885,3.091689639,2.891722385,,,,,,3.133885161,2.200873094,2.463641471,3.010439445,0.144843531,,,,,-268.1319375,,,,,0.849758638,51226,60283,0.798163148,0.901354129,71499,,,67841.12766,75156.87234,,,,95722,76835.70213,114608.2979,53518,43181.82979,63854.17021,74858,62328.29787,87387.70213,78402,75774.76596,81029.23404,,,,,,0.485702117,7983,16436,,,67.3644433,,,,,0.311025329,,71499,,,8.59549596,50,5817,,,2.218817136,17,766174,1.292542747,3.552541174,,,,,,,,,,,,,2.209881961,1.208163032,3.707806427,,,,19.73297215,108,548213,15.89241398,23.57353031,19.70037194,,,,,,,,,,,,,22.20705476,17.87973523,27.26534228,,,,12.40393789,68,548213,9.632143118,15.7249469,,,,,,,,,,,,,13.50026447,10.32663261,17.34165449,,,,13.18238416,101,766174,10.61145951,15.75330881,,,,,,,,,,,,,13.10144305,10.43522626,16.24120985,,,,21.91011236,,8900,,,195,,0.757411986,64327,84930,,,0.779,,,,,49.04945222,,,,,0.739066667,33258,45000,0.72401579,0.754117544,0.091970342,4081,44373,0.079502094,0.10443859,0.888888889,40000,45000,0.8794095,0.898368278,108992,,,,,0.201950602,22011,108992,,,0.202831401,22107,108992,,,0.069803288,7608,108992,,,0.005706841,622,108992,,,0.024653186,2687,108992,,,0.000587199,64,108992,,,0.061032002,6652,108992,,,0.815133221,88843,108992,,,0.005135347,531,103401,,,0.505202217,55063,108992,,,0.379848867,41470,109175,, -26,047,26047,MI,Emmet County,2024,1,6354.895275,447,91602,5291.433064,7418.357486,0,14585.03368,8496.319592,23352.05179,1,,,,2,,,,2,,,,2,5987.818085,4929.494212,7046.141958,,,,,2,,0.127,,,0.105,0.15,3.368341315,,,2.632970101,4.214979986,5.310463893,,,4.319454837,6.428654273,0.067914439,127,1870,0.05651078,0.079318097,0,,,,,,,,,,,,,0.067978533,0.05593127,0.080025796,,,,,,,0.161,,,0.125,0.198,0.328,,,0.26,0.402,8,0.063182837,0.105,,,0.191,,,0.153,0.233,0.742348734,25323,34112,,,0.185907351,,,0.149411835,0.225540063,0.4,6,15,0.262274328,0.527864126,169.5,58,34225,,,10.1087456,66,6529,7.818103112,12.86080295,,,,,,,,,,,,,8.991188635,6.673433508,11.85376131,,,,,,,0.073934643,1905,25766,0.063211238,0.084658047,0.001168736,40,34225,,,855.625,0.001170857,40,34163,,,854.075,0.004156544,142,34163,,,240.584507,2589,,,,,5198,,,,2415,0.53,,,,,0.48,,,,0.54,0.44,,,,,0.13,0.73,,0.27,0.45,0.955495077,23874,24986,0.948504367,0.962485787,0.708437213,5399,7621,0.647520057,0.769354369,0.055608592,932,16760,,,0.105,634,,0.06806383,0.14193617,0.044585987,0,0.123702329,,,,,,,,,,0.10754717,0.068453419,0.146640921,4.218886921,135768,32181,3.882877114,4.554896728,0.184843178,1161,6281,0.135444819,0.234241536,15.48575603,53,34225,,,73.44028946,123,167483,60.46138918,86.41918974,,,,,,,,,,,,,77.44967412,63.47522611,91.42412214,,,,5.7,,,,,1,,,,,0.111659035,1585,14195,0.092331875,0.130986195,0.100970176,0.083439586,0.118500766,0.009510391,0.00392836,0.015092422,0.005988024,0.001745343,0.010230705,0.760683252,12781,16802,0.730172843,0.791193661,0.894348894,0.791045816,0.997651973,,,,,,,0.572008114,0.407420536,0.736595691,0.785837172,0.759834249,0.811840095,0.216,,16802,0.190473192,0.241526808,79.09844074,,,78.1835928,80.01328868,,,,,,,,,,,,,79.33471866,78.41341998,80.25601734,,,,306.0989746,447,91602,274.3655255,337.8324237,763.7588899,518.9371105,1084.094779,,,,,,,,,,293.5425755,261.1922829,325.8928681,,,,46.41530991,13,28008,24.7141977,79.37159354,,,,,,,,,,,,,45.40763674,22.66732866,81.24680501,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.098,,,0.084,0.114,0.16,,,0.138,0.185,0.079,,,0.067,0.092,43.4,13,29930,,,0.105,3580,,,,0.063182837,2065.699669,32694,,,11.88330594,12,100982,6.140277583,20.757744,,,,,,,,,,,,,13.08714951,6.762321125,22.86061646,,,,0.315,,,0.295,0.333,0.082358974,1606,19500,0.068061102,0.096656847,0.048423593,321,6629,0.034125721,0.062721466,0.002400258,82,34163,,,416.6219512,0.872229064,354.125,406,,,,,,,,3.180961176,,,,,,,,,3.20141449,3.049317662,,,,,,,,,3.067112316,0.037291751,,,,,3545.92816,,,,,0.849367665,46677,54955,0.755133122,0.943602207,69805,,,62103.21277,77506.78723,59844,24635.48936,95052.51064,,,,,,,60417,11081,109753,70732,65910.04255,75553.95745,,,,,,0.406206253,1741,4286,,,75.81131439,,,,,0.33878662,,69805,,,13.1661442,21,1595,,,,,,,,,,,,,,,,,,,,,,,,,,19.07714304,31,167483,12.57195747,27.75624153,18.50934125,,,,,,,,,,,,,19.42111933,12.56832443,28.6694033,,,,10.74735943,18,167483,6.369566332,16.98546137,,,,,,,,,,,,,10.50165073,6.002600769,17.05402285,,,,8.981037182,21,233826,5.559403567,13.72846935,,,,,,,,,,,,,9.389186474,5.735159023,14.500837,,,,38.07692308,,2600,,,99,,0.834506115,22177,26575,,,0.569,,,,,36.86506187,,,,,0.759738472,11039,14530,0.74336986,0.776107084,0.099957314,1405,14056,0.079856681,0.120057946,0.891534756,12954,14530,0.867008632,0.91606088,34163,,,,,0.179960776,6148,34163,,,0.248719375,8497,34163,,,0.007932559,271,34163,,,0.037408893,1278,34163,,,0.006410444,219,34163,,,0.001375757,47,34163,,,0.022539004,770,34163,,,0.906214325,30959,34163,,,0.001290442,42,32547,0,0.004543843,0.500687879,17105,34163,,,0.631302767,21535,34112,, -26,049,26049,MI,Genesee County,2024,1,11364.96236,7865,1124555,10978.47299,11751.45173,0,6827.480233,3274.042153,12555.97924,1,5163.20167,2577.451671,9238.394011,1,19566.50575,18431.55302,20701.45848,,10847.33431,8922.746671,12771.92194,,9351.637698,8945.593489,9757.681907,,,,,2,,0.181,,,0.156,0.207,4.107312706,,,3.342851211,4.917766875,5.549752171,,,4.720871792,6.420874688,0.104734938,3329,31785,0.101368531,0.108101345,0,,,,0.079037801,0.048038785,0.110036816,0.158075996,0.15041489,0.165737102,0.074040219,0.058524307,0.089556132,0.083679412,0.079929618,0.087429206,,,,0.124605678,0.098896854,0.150314503,0.208,,,0.17,0.248,0.424,,,0.37,0.477,6.7,0.114141692,0.139,,,0.258,,,0.217,0.3,0.856724707,348011,406211,,,0.171529261,,,0.142527728,0.202396709,0.294820717,74,251,0.263034509,0.327056433,667.5,2698,404208,,,21.29094192,1863,87502,20.32412439,22.25775946,,,,,,,42.20701536,39.42149446,44.99253626,14.21107628,11.03545679,18.01592542,14.80772978,13.80394313,15.81151642,,,,17.25412867,13.45043976,21.79955357,0.064048429,20917,326581,0.056899493,0.071197365,0.000828781,335,404208,,,1206.591045,0.000768689,309,401983,,,1300.915858,0.00349766,1406,401983,,,285.9054054,3538,,,,,,,5412,4562,3185,0.46,,,,,,0.52,0.45,0.33,0.46,0.44,,,,,0.31,0.54,0.36,0.37,0.46,0.909970623,254931,280153,,,0.645770647,63312,98041,,,0.0559009,9955,178083,,,0.237,20493,,0.194106383,0.279893617,0.296296296,0.076356891,0.516235702,0.21316166,0.013343366,0.412979954,0.424374267,0.387132436,0.461616098,0.208375894,0.141927998,0.27482379,0.16147078,0.14460276,0.1783388,4.591380058,116543,25383,4.373279809,4.809480306,0.329164955,29639,90043,0.305002699,0.35332721,9.128963306,369,404208,,,111.3305853,2259,2029092,106.7395308,115.9216398,,,,,,,165.271343,152.7660934,177.7765927,95.32888465,74.3135423,120.4423108,100.4626191,95.33212499,105.5931132,,,,7.5,,,,,1,,,,,0.1455622,24830,170580,0.136057339,0.15506706,0.130092924,0.121009864,0.139175984,0.012223004,0.009799077,0.014646931,0.012897174,0.007945684,0.017848665,0.804197901,136782,170085,0.794069309,0.814326493,,,,0.724533716,0.674279396,0.774788036,0.777288732,0.752472122,0.802105342,0.694642857,0.638062782,0.751222932,0.805984392,0.793051287,0.818917497,0.344,,170085,0.329603179,0.358396821,73.89439299,,,73.6075655,74.18122049,79.24098509,74.95193331,83.53003687,88.2461786,82.5545984,93.9377588,67.94317086,67.24052252,68.6458192,75.26408635,73.32524547,77.20292724,75.39100834,75.07640565,75.70561102,,,,530.0938586,7865,1124555,517.736741,542.4509763,334.9571379,216.7665987,494.4628118,216.950498,145.2951534,311.5771043,831.446438,794.7645772,868.1282989,514.3746443,438.6781411,590.0711476,465.09445,451.9029506,478.2859494,,,,66.03962377,264,399760,58.07328634,74.00596121,,,,,,,135.1337304,111.9037865,158.3636743,50.98966301,25.45385606,91.23459191,45.1497401,36.89767955,53.40180064,,,,7.719733375,249,32255,6.760865654,8.678601095,,,,,,,13.96276596,11.52471793,16.40081399,,,,4.518072289,3.65965306,5.517339561,,,,,,,0.125,,,0.108,0.143,0.176,,,0.152,0.199,0.106,,,0.091,0.121,172.3,588,341206,,,0.139,56300,,,,0.114141692,48600.39083,425790,,,46.42682219,564,1214815,42.59517532,50.25846907,,,,,,,67.4611173,57.13617396,77.78606065,46.32489191,28.67583823,70.81251817,42.26421991,37.95768406,46.57075576,,,,0.401,,,0.387,0.416,0.078831229,18791,238370,0.069299314,0.088363144,0.025129796,2333,92838,0.01798086,0.032278732,0.001206519,485,401983,,,828.8309278,0.77845447,3770.055,4843,,,0.077770672,1581,20329,0.060016749,0.095524596,2.833781594,,,,,,3.267017938,2.256022508,3.0114461,3.065675601,2.663435131,,,,,,3.360924071,2.073309061,2.686626071,2.904523275,0.268598349,,,,,-6616.03751,,,,,0.753423725,44287,58781,0.718453979,0.788393472,57443,,,53944.78723,60941.21277,55699,28508.02128,82889.97872,79268,41927.91489,116608.0851,38151,36319.68085,39982.31915,54139,48174.40426,60103.59575,65291,63042.65957,67539.34043,,,,,,0.608242263,36455,59935,,,68.02223297,,,,,0.341503752,,57443,,,7.630028401,180,23591,,,13.8315694,394,2848556,12.46579358,15.19734522,,,,,,,53.65510082,47.65307445,59.65712718,9.923292946,4.758604682,18.24928904,3.445934501,2.691303435,4.346577489,,,,14.7803252,311,2029092,13.07590441,16.48474599,15.32705269,,,,,,,8.923857311,6.14277276,12.53241352,16.27847464,7.806161329,29.93669445,16.48105353,14.37369234,18.58841472,,,,20.94532924,425,2029092,18.95397374,22.93668474,,,,,,,57.14299789,49.78981954,64.49617624,,,,12.27649113,10.48302131,14.06996096,,,,14.14751895,403,2848556,12.76623225,15.52880566,,,,,,,20.79790553,17.06108542,24.53472564,14.88493942,8.330987599,24.55044394,12.76451794,11.22181391,14.30722198,,,,12.03296703,,36400,,,438,,0.710979781,221360,311345,,,0.694,,,,,72.86932698,,,,,0.703854029,116882,166060,0.696492279,0.711215778,0.135769358,21818,160699,0.12718151,0.144357206,0.858737806,142602,166060,0.851228518,0.866247094,401983,,,,,0.219009262,88038,401983,,,0.189716978,76263,401983,,,0.19996368,80382,401983,,,0.005649493,2271,401983,,,0.011010416,4426,401983,,,0.000345786,139,401983,,,0.040039007,16095,401983,,,0.716284022,287934,401983,,,0.004742163,1813,382315,,,0.514675994,206891,401983,,,0.181991625,73927,406211,, -26,051,26051,MI,Gladwin County,2024,1,11287.00149,589,67902,9610.318254,12963.68472,0,,,,2,,,,2,,,,2,,,,2,11535.18863,9782.38835,13287.98891,,,,,2,,0.178,,,0.149,0.209,4.079271302,,,3.204877023,5.060611589,5.994187988,,,4.86059986,7.297044332,0.079207921,136,1717,0.066433653,0.091982189,0,,,,,,,,,,,,,0.077586207,0.064574981,0.090597433,,,,,,,0.226,,,0.18,0.276,0.382,,,0.303,0.466,7.2,0.055768816,0.143,,,0.254,,,0.204,0.307,0.564129835,14321,25386,,,0.159486527,,,0.126360768,0.19827842,0.571428571,8,14,0.451249496,0.671070391,200.1,51,25485,,,16.98369565,75,4416,13.35875401,21.28920957,,,,,,,,,,,,,16.64254703,12.94889497,21.06220842,,,,,,,0.076030369,1402,18440,0.064115475,0.087945262,0.000156955,4,25485,,,6371.25,0.000233209,6,25728,,,4288,0.001438122,37,25728,,,695.3513514,2411,,,,,,,,,2412,0.49,,,,,,,,,0.49,0.36,,,,,,,,,0.36,0.890499789,16891,18968,0.876434163,0.904565415,0.562045357,2627,4674,0.510299879,0.613790836,0.060590734,599,9886,,,0.214,1027,,0.135361702,0.292638298,,,,,,,,,,0.218934911,0.037295772,0.40057405,0.180785613,0.139134577,0.222436649,4.275143108,102317,23933,3.903188114,4.647098102,0.162552301,777,4780,0.116404317,0.208700285,7.455365902,19,25485,,,102.4194629,130,126929,84.81321185,120.0257139,,,,,,,,,,,,,106.4602383,88.08856773,124.831909,,,,6.8,,,,,0,,,,,0.132379249,1480,11180,0.117967212,0.146791285,0.099364791,0.085987841,0.112741742,0.025044723,0.015544986,0.034544459,0.016100179,0.010276729,0.021923629,0.812068777,7415,9131,0.790111808,0.834025745,,,,,,,,,,,,,0.738330266,0.705152064,0.771508469,0.441,,9131,0.3979907,0.4840093,74.10493428,,,72.91822605,75.29164251,,,,,,,,,,,,,73.78228033,72.5537265,75.01083416,,,,521.4392733,589,67902,472.1653482,570.7131985,,,,,,,,,,,,,530.881846,480.0721281,581.6915639,,,,62.33816055,13,20854,33.19244505,106.6001531,,,,,,,,,,,,,67.32263076,35.84646552,115.1237489,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.128,,,0.109,0.148,0.191,,,0.163,0.221,0.098,,,0.083,0.115,58.8,13,22090,,,0.143,3620,,,,0.055768816,1432.812412,25692,,,24.88278897,19,76358,14.98106441,38.85755726,,,,,,,,,,,,,24.74566951,14.66585205,39.10882632,,,,0.353,,,0.335,0.371,0.086848996,1194,13748,0.072551124,0.101146869,0.044946105,221,4917,0.030648233,0.059243978,0.000349813,9,25728,,,2858.666667,0.825,169.125,205,,,0.138539043,165,1191,0.070267204,0.206810882,2.960623514,,,,,,,,,2.972009923,2.706320155,,,,,,,,,2.72346524,0.029371552,,,,,-2732.8185,,,,,0.776247626,42106,54243,0.709333581,0.843161672,55017,,,49321.68085,60712.31915,38056,5714.212766,70397.78723,,,,,,,,,,53861,52051.12766,55670.87234,,,,,,0.548474314,1420,2589,,,,,,,,0.314902666,,55017,,,8.208955224,11,1340,,,,,,,,,,,,,,,,,,,,,,,,,,15.81405941,26,126929,9.521096809,24.69561269,20.48389257,,,,,,,,,,,,,16.54361686,9.960338052,25.83490702,,,,19.69605055,25,126929,12.74624542,29.07525601,,,,,,,,,,,,,20.63182914,13.35183198,30.4566498,,,,15.23573061,27,177215,10.04044248,22.16718813,,,,,,,,,,,,,15.93117731,10.49874624,23.17902657,,,,56.11111111,,1800,,,101,,0.714607291,14603,20435,,,0.527,,,,,0.351736808,,,,,0.876968413,9523,10859,0.861154962,0.892781865,0.108586576,1147,10563,0.092303631,0.12486952,0.820977991,8915,10859,0.802720591,0.83923539,25728,,,,,0.189560012,4877,25728,,,0.275108831,7078,25728,,,0.005169465,133,25728,,,0.006452114,166,25728,,,0.004586443,118,25728,,,0.000310945,8,25728,,,0.023243159,598,25728,,,0.949549129,24430,25728,,,0.005053643,122,24141,0.000593626,0.009513661,0.492420709,12669,25728,,,1,25386,25386,, -26,053,26053,MI,Gogebic County,2024,1,9271.908547,288,37050,7249.384204,11294.43289,0,,,,2,,,,2,,,,2,,,,2,8685.735941,6667.735264,10703.73662,,,,,2,,0.162,,,0.137,0.19,3.892610647,,,3.069442431,4.799153499,5.774571691,,,4.677703776,6.949085841,0.066502463,54,812,0.049364725,0.083640202,0,,,,,,,,,,,,,0.06618705,0.047703724,0.084670377,,,,,,,0.206,,,0.166,0.252,0.344,,,0.268,0.425,7.7,0.048630427,0.126,,,0.235,,,0.189,0.285,0.871279555,12529,14380,,,0.153919589,,,0.122672014,0.189519848,0.142857143,1,7,0.008995928,0.386311364,236.8,34,14361,,,16.10796691,37,2297,11.34149524,22.20271055,,,,,,,,,,,,,12.5,8.089340924,18.45246585,,,,,,,0.068238337,686,10053,0.057514933,0.078961741,0.000835596,12,14361,,,1196.75,0.000488861,7,14319,,,2045.571429,0.002164956,31,14319,,,461.9032258,1479,,,,,,,,,1463,0.45,,,,,,,,,0.45,0.33,,,,,,,,,0.33,0.962030905,10895,11325,0.950216795,0.973845015,0.623230373,1937,3108,0.538635195,0.707825552,0.052112676,296,5680,,,0.24,557,,0.151829787,0.328170213,0.092592593,0,0.386691857,,,,,,,0.153846154,0,0.560310047,0.175730111,0.110612883,0.240847338,4.782952044,99935,20894,4.287798033,5.278106054,0.190615836,455,2387,0.124179188,0.257052483,12.5339461,18,14361,,,86.75773934,63,72616,66.66702902,111.0008363,,,,,,,,,,,,,84.72909385,64.00344694,110.027776,,,,5.3,,,,,0,,,,,0.103698332,715,6895,0.079083847,0.128312818,0.10191458,0.076568453,0.127260708,0.002610587,0,0.007717828,0.00275562,0,0.007422753,0.80457105,4858,6038,0.769212429,0.839929671,,,,,,,,,,,,,0.846526355,0.819211375,0.873841335,0.161,,6038,0.125374667,0.196625333,76.60981522,,,75.0348897,78.18474074,,,,,,,,,,,,,76.84998459,75.24291351,78.45705567,,,,444.884749,288,37050,384.8913788,504.8781192,,,,,,,,,,,,,434.3941121,373.6307414,495.1574828,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.119,,,0.102,0.138,0.182,,,0.158,0.208,0.094,,,0.079,0.109,47.3,6,12682,,,0.126,1870,,,,0.048630427,798.8520273,16427,,,,,,,,,,,,,,,,,,,,,,,,,,0.346,,,0.327,0.363,0.078482329,604,7696,0.064184456,0.092780201,0.036231884,90,2484,0.02431699,0.048146778,0.001187234,17,14319,,,842.2941177,,,,,,,,,,,2.896703603,,,,,,,,,2.898860997,2.973603093,,,,,,,,,2.984983965,0.241786655,,,,,-3393.898667,,,,,0.77825783,43412,55781,0.703930674,0.852584986,50142,,,44881.57447,55402.42553,11723,1851.510638,21594.48936,,,,,,,,,,49297,44003.21277,54590.78723,,,,,,0.617588275,927,1501,,,53.4050983,,,,,0.322883012,,50142,,,10.47120419,6,573,,,,,,,,,,,,,,,,,,,,,,,,,,16.90753121,10,72616,7.731199898,32.09576084,13.77106974,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.6177752,12,103290,6.003073975,20.29391524,,,,,,,,,,,,,10.68513057,5.123935436,19.65033556,,,,39,,1000,,,39,,0.669854133,8266,12340,,,0.497,,,,,37.60671336,,,,,0.826293787,5732,6937,0.812795267,0.839792307,0.098704039,655,6636,0.071884562,0.125523515,0.816779588,5666,6937,0.784532916,0.849026259,14319,,,,,0.164885816,2361,14319,,,0.289056498,4139,14319,,,0.00796145,114,14319,,,0.032264823,462,14319,,,0.005237796,75,14319,,,0.000698373,10,14319,,,0.021928906,314,14319,,,0.91375096,13084,14319,,,0.00156818,22,14029,0,0.007105617,0.486207137,6962,14319,,,0.640820584,9215,14380,, -26,055,26055,MI,Grand Traverse County,2024,1,6257.815421,1192,259484,5647.602385,6868.028457,0,14238.37371,7784.251401,23889.5717,1,,,,2,,,,2,,,,2,6142.456027,5508.121181,6776.790872,,,,,2,,0.128,,,0.106,0.152,3.381385248,,,2.606076569,4.243308127,5.343885621,,,4.312037606,6.410257878,0.069767442,438,6278,0.063465599,0.076069285,0,,,,,,,,,,0.083682008,0.048574802,0.118789215,0.068292683,0.061766985,0.074818381,,,,,,,0.155,,,0.116,0.193,0.298,,,0.236,0.366,8,0.053598354,0.107,,,0.18,,,0.143,0.221,0.777315777,74030,95238,,,0.187364212,,,0.151742135,0.226533396,0.348837209,15,43,0.269780573,0.427139369,242,232,95860,,,10.86125969,199,18322,9.352188488,12.37033089,,,,,,,,,,16.29072682,8.674125929,27.857639,10.4147294,8.83984232,11.98961649,,,,,,,0.054421678,4085,75062,0.046081253,0.062762104,0.001324849,127,95860,,,754.8031496,0.001057389,102,96464,,,945.7254902,0.005380246,519,96464,,,185.8651252,2480,,,,,7713,,,,2459,0.48,,,,,0.23,0.62,,0.36,0.48,0.54,,,,,0.24,0.52,0.38,0.26,0.55,0.949006075,65452,68969,0.942009306,0.956002844,0.763420428,17677,23155,0.71714689,0.809693965,0.03767054,1861,49402,,,0.102,1851,,0.072212766,0.131787234,0.14673913,0,0.506613462,,,,0.184210526,0,0.395274813,0.096320346,0,0.198274701,0.170733229,0.130467864,0.210998595,3.809206717,131570,34540,3.526488708,4.091924726,0.221789052,4153,18725,0.178349191,0.265228914,10.64051742,102,95860,,,72.17510494,337,466920,64.4691131,79.88109679,,,,,,,,,,,,,71.45516478,63.48787787,79.42245168,,,,6.2,,,,,0,,,,,0.128096995,4860,37940,0.110811404,0.145382587,0.110325507,0.094025738,0.126625276,0.014891935,0.009631239,0.020152631,0.006062204,0.002633006,0.009491401,0.730568646,34881,47745,0.709482748,0.751654544,0.703213611,0.336551616,1,,,,,,,0.612417119,0.482002609,0.742831629,0.761120359,0.744006584,0.778234135,0.205,,47745,0.184157449,0.225842552,79.14959049,,,78.61343764,79.68574334,,,,,,,,,,86.48838154,76.94403321,96.03272987,79.20995833,78.65785435,79.76206232,,,,306.1150031,1192,259484,287.3040954,324.9259107,625.3645273,381.9888998,965.8247923,,,,,,,,,,302.6364945,283.3838783,321.8891106,,,,44.73461492,37,82710,31.49729726,61.66077396,,,,,,,,,,,,,41.36903941,27.91151717,59.05687608,,,,5.877680699,37,6295,4.138429637,8.101608601,,,,,,,,,,,,,5.553627213,3.798676902,7.840064575,,,,,,,0.099,,,0.084,0.116,0.164,,,0.14,0.189,0.078,,,0.065,0.091,103.9,86,82806,,,0.107,10080,,,,0.053598354,4662.306376,86986,,,14.86515184,42,282540,10.71349392,20.09336688,,,,,,,,,,,,,13.39287423,9.328627614,18.62624597,,,,0.294,,,0.275,0.312,0.061100846,3439,56284,0.051568931,0.070632761,0.035389742,701,19808,0.024666337,0.046113146,0.002778239,268,96464,,,359.9402985,0.851666667,850.815,999,,,,,,,,3.292306121,,,,,,,,2.396294807,3.347398744,3.130791033,,,,,,,,2.109896747,3.191270702,0.046234694,,,,,1976.7184,,,,,0.842748172,47949,56896,0.778549299,0.906947046,74746,,,68071.2766,81420.7234,65368,19631.48936,111104.5106,56750,20307.10638,93192.89362,,,,73506,56371.19149,90640.80851,76125,73428.65957,78821.34043,,,,,,0.365263667,4530,12402,,,67.8802648,,,,,0.340713884,,74746,,,12.0950324,56,4630,,,1.998032706,13,650640,1.063868267,3.416696778,,,,,,,,,,,,,1.825832206,0.911448859,3.266918163,,,,16.82782506,78,466920,13.16673673,21.19186067,16.70521717,,,,,,,,,,,,,17.24420094,13.36401887,21.89952564,,,,8.780947486,41,466920,6.30135952,11.91234678,,,,,,,,,,,,,9.249859518,6.608235252,12.59568331,,,,8.760604943,57,650640,6.635196632,11.35037984,,,,,,,,,,,,,8.631206792,6.44619807,11.31867938,,,,16.44736842,,7600,,,125,,0.824078254,60236,73095,,,0.718,,,,,46.32168106,,,,,0.759410972,29292,38572,0.742448489,0.776373454,0.115098154,4327,37594,0.098091766,0.132104542,0.896142279,34566,38572,0.88532297,0.906961589,96464,,,,,0.192133853,18534,96464,,,0.222466412,21460,96464,,,0.007774921,750,96464,,,0.012740504,1229,96464,,,0.008624979,832,96464,,,0.000922624,89,96464,,,0.032540637,3139,96464,,,0.921919058,88932,96464,,,0.002866751,260,90695,0.000711917,0.005021586,0.504001493,48618,96464,,,0.431728932,41117,95238,, -26,057,26057,MI,Gratiot County,2024,1,8083.654727,634,112859,7093.387719,9073.921736,0,,,,2,,,,2,,,,2,11827.21603,7653.950609,17459.30399,1,8410.865264,7299.675128,9522.0554,,,,,2,,0.167,,,0.142,0.195,3.864341766,,,3.029418057,4.752993868,5.53765312,,,4.4308915,6.667264347,0.067340067,180,2673,0.05783938,0.076840755,0,,,,,,,,,,0.078431373,0.045432832,0.111429913,0.064350064,0.054388762,0.074311367,,,,,,,0.209,,,0.17,0.254,0.371,,,0.296,0.451,6.4,0.165485004,0.127,,,0.253,,,0.207,0.304,0.7004861,29253,41761,,,0.182940302,,,0.146226752,0.224099922,0.074074074,2,27,0.013612486,0.183911121,214.2,89,41544,,,13.62672858,135,9907,11.32803653,15.92542062,,,,,,,,,,13.26899879,6.62383639,23.74190412,13.75772415,11.27538186,16.24006643,,,,,,,0.058319683,1709,29304,0.048787768,0.067851598,0.000481417,20,41544,,,2077.2,0.000413625,17,41100,,,2417.647059,0.002141119,88,41100,,,467.0454546,3148,,,,,,,,,3029,0.48,,,,,,,,,0.48,0.42,,,,,,,,0.23,0.42,0.918951091,26248,28563,0.907990765,0.929911416,0.560531905,6070,10829,0.519934876,0.601128934,0.046421552,803,17298,,,0.164,1272,,0.109191489,0.218808511,,,,,,,,,,0.592039801,0.499935072,0.68414453,0.152253544,0.114820491,0.189686596,4.029158892,110129,27333,3.674811284,4.383506501,0.260666498,2065,7922,0.207912787,0.313420209,12.03543231,50,41544,,,72.00411452,147,204155,60.36406795,83.64416109,,,,,,,,,,91.40071597,47.2280837,159.6586568,75.08368105,62.22590137,87.94146073,,,,7.6,,,,,0,,,,,0.098110706,1480,15085,0.081279916,0.114941496,0.087000677,0.071137579,0.102863775,0.008551541,0.002361617,0.014741466,0.006297647,0.00221975,0.010375544,0.80574425,13522,16782,0.779332189,0.832156311,,,,,,,,,,0.725274725,0.639814652,0.810734799,0.799689326,0.77290198,0.826476672,0.318,,16782,0.286229433,0.349770567,76.06477061,,,75.25953056,76.87001066,,,,,,,76.43619873,70.98858305,81.88381442,75.79481446,70.04327014,81.54635878,75.82344207,74.94977582,76.69710832,,,,426.2927736,634,112859,392.0145676,460.5709795,,,,,,,,,,591.4671367,411.9785321,822.5876077,433.8092908,396.6858528,470.9327288,,,,50.9601974,19,37284,30.68136778,79.5806608,,,,,,,,,,,,,48.42927711,27.10549877,79.8767277,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.118,,,0.102,0.137,0.176,,,0.151,0.201,0.096,,,0.082,0.113,111.4,40,35921,,,0.127,5310,,,,0.165485004,7029.141013,42476,,,13.0571741,16,122538,7.463303182,21.20403271,,,,,,,,,,,,,14.36176324,8.038169864,23.6875444,,,,0.33,,,0.314,0.344,0.069266507,1476,21309,0.057351614,0.081181401,0.029751279,250,8403,0.020219364,0.039283194,0.001411192,58,41100,,,708.6206897,0.813210901,343.175,422,,,0.065420561,168,2568,0.032768979,0.098072143,2.905648857,,,,,,,,2.648023168,2.958737937,2.65314177,,,,,,,,2.381255425,2.69617663,0.037989254,,,,,-3008.18125,,,,,0.755518838,39324,52049,0.68948664,0.821551036,58074,,,53262.76596,62885.23404,,,,68896,68526.6383,69265.3617,,,,39694,27856.55319,51531.44681,58310,55467.10638,61152.89362,,,,,,0.584725537,3185,5447,,,,,,,,0.305851155,,58074,,,7.555315704,14,1853,,,,,,,,,,,,,,,,,,,,,,,,,,16.24713574,33,204155,11.03914048,23.0615123,16.16418897,,,,,,,,,,,,,17.73307478,11.78349941,25.62923042,,,,7.837182533,16,204155,4.479626976,12.72709343,,,,,,,,,,,,,8.597368059,4.811881639,14.18005117,,,,14.29084306,41,286897,10.25535571,19.38714227,,,,,,,,,,,,,14.62368387,10.2422484,20.24534256,,,,36.5625,,3200,,,117,,0.589157554,19127,32465,,,0.73,,,,,23.44821688,,,,,0.781842911,11497,14705,0.760050116,0.803635706,0.095005239,1360,14315,0.076879991,0.113130488,0.829309759,12195,14705,0.808857387,0.84976213,41100,,,,,0.192871046,7927,41100,,,0.178223844,7325,41100,,,0.060072993,2469,41100,,,0.007688565,316,41100,,,0.005596107,230,41100,,,0.000583942,24,41100,,,0.068345499,2809,41100,,,0.848613139,34878,41100,,,0.003515516,139,39539,0.000370971,0.006660062,0.460705596,18935,41100,,,0.582936232,24344,41761,, -26,059,26059,MI,Hillsdale County,2024,1,8828.613124,807,125557,7802.937279,9854.28897,0,,,,2,,,,2,,,,2,,,,2,8934.384781,7871.94976,9996.819801,,,,,2,,0.175,,,0.146,0.206,4.034077346,,,3.220366493,4.925349531,5.337414699,,,4.36077125,6.391366583,0.073812217,261,3536,0.065194076,0.082430358,0,,,,,,,,,,,,,0.074229273,0.065340186,0.08311836,,,,,,,0.209,,,0.167,0.251,0.384,,,0.313,0.456,7.9,0.022616055,0.128,,,0.252,,,0.205,0.301,0.608927557,27856,45746,,,0.171988504,,,0.140162874,0.210211034,0.184210526,7,38,0.104657938,0.276519114,234.9,107,45546,,,16.99007422,190,11183,14.57419873,19.40594971,,,,,,,,,,,,,16.8313925,14.31596448,19.34682053,,,,42.55319149,20.40590935,78.25683422,0.075505232,2634,34885,0.064781827,0.086228636,0.000197602,9,45546,,,5060.666667,0.000371487,17,45762,,,2691.882353,0.001638914,75,45762,,,610.16,2364,,,,,,,,,2377,0.41,,,,,,,,,0.41,0.4,,,,,,,,0.31,0.4,0.902932961,28446,31504,0.891421995,0.914443927,0.555933601,5392,9699,0.509885702,0.601981501,0.04590392,924,20129,,,0.196,1885,,0.141191489,0.250808511,,,,,,,,,,0.203747073,0.098268692,0.309225454,0.251478261,0.207962433,0.294994089,3.854150422,108741,28214,3.615165171,4.093135673,0.196247309,1914,9753,0.154613575,0.237881042,11.19747069,51,45546,,,78.35858464,179,228437,66.87926527,89.83790402,,,,,,,,,,,,,80.63918137,68.65722987,92.62113288,,,,8.5,,,,,1,,,,,0.122387239,2225,18180,0.109235469,0.135539008,0.080233204,0.068816053,0.091650355,0.024752475,0.01784302,0.031661931,0.024752475,0.017539482,0.031965469,0.770183812,15168,19694,0.748489602,0.791878023,,,,,,,,,,0.579207921,0.516027665,0.642388177,0.731412509,0.704774174,0.758050844,0.357,,19694,0.327188946,0.386811054,75.58773228,,,74.78614913,76.38931543,,,,,,,,,,,,,75.40546294,74.5864241,76.22450178,,,,440.7832753,807,125557,407.7857991,473.7807514,,,,,,,,,,,,,448.2343552,414.2050502,482.2636602,,,,55.80357143,25,44800,36.11312913,82.37707968,,,,,,,,,,,,,59.05075905,37.83493555,87.86284869,,,,7.262569832,26,3580,4.744151736,10.64134751,,,,,,,,,,,,,7.372456503,4.771065128,10.88320015,,,,,,,0.124,,,0.105,0.144,0.183,,,0.157,0.211,0.094,,,0.079,0.109,54.1,21,38823,,,0.128,5830,,,,0.022616055,1055.898383,46688,,,16.0808134,22,136809,10.07776014,24.34654474,,,,,,,,,,,,,17.05730479,10.6897221,25.82496444,,,,0.362,,,0.343,0.378,0.087192603,2216,25415,0.072894731,0.101490475,0.044306335,442,9976,0.030008463,0.058604208,0.000633714,29,45762,,,1578,0.839689579,378.7,451,,,0.114691216,299,2607,0.070814795,0.158567637,2.657706419,,,,,,,,,2.675533114,2.579342133,,,,,,,,,2.608421319,0.053448828,,,,,-2509.288285,,,,,0.758606511,40590,53506,0.715728823,0.8014842,60070,,,54514.08511,65625.91489,,,,25469,11837.17021,39100.82979,,,,54545,43258.02128,65831.97872,59482,56498.51064,62465.48936,,,,,,0.563794379,3049,5408,,,59.53082795,,,,,0.304944232,,60070,,,7.2769054,19,2611,,,,,,,,,,,,,,,,,,,,,,,,,,19.53423437,45,228437,14.01810384,26.50039465,19.69908553,,,,,,,,,,,,,19.94165919,14.24661369,27.15487985,,,,16.19702588,37,228437,11.40420097,22.3254666,,,,,,,,,,,,,16.22052499,11.29818998,22.55882367,,,,18.74109798,60,320152,14.30143212,24.12350802,,,,,,,,,,,,,19.14134564,14.53482625,24.74462796,,,,54.5,,4000,,,218,,0.655471167,23302,35550,,,0.66,,,,,19.34151144,,,,,0.798761786,14063,17606,0.786832661,0.810690911,0.089030672,1521,17084,0.076240804,0.10182054,0.820288538,14442,17606,0.804829184,0.835747892,45762,,,,,0.213321096,9762,45762,,,0.213189983,9756,45762,,,0.00677418,310,45762,,,0.005987501,274,45762,,,0.004829334,221,45762,,,0.000327783,15,45762,,,0.028866745,1321,45762,,,0.938966828,42969,45762,,,0.004979849,215,43174,0.001778083,0.008181615,0.498710721,22822,45762,,,0.767367639,35104,45746,, -26,061,26061,MI,Houghton County,2024,1,6528.041623,453,99865,5587.42727,7468.655975,0,,,,2,,,,2,,,,2,,,,2,6714.091812,5718.732774,7709.45085,,,,,2,,0.154,,,0.127,0.184,3.767245255,,,2.955235887,4.695751336,5.489591629,,,4.447322559,6.591889555,0.06466877,164,2536,0.055096576,0.074240963,0,,,,,,,,,,,,,0.061702128,0.051973702,0.071430554,,,,,,,0.186,,,0.144,0.235,0.354,,,0.285,0.43,7.8,0.050958563,0.12,,,0.231,,,0.186,0.283,0.766735366,28646,37361,,,0.199787394,,,0.161751401,0.242025615,0.166666667,3,18,0.057993584,0.308188518,160.8,60,37313,,,10.61137072,109,10272,8.619256157,12.60348528,,,,,,,,,,,,,10.58710298,8.604674886,12.889418,,,,,,,0.075591276,2135,28244,0.062484893,0.088697659,0.000696808,26,37313,,,1435.115385,0.00072904,27,37035,,,1371.666667,0.002214122,82,37035,,,451.6463415,1722,,,,,,,,,1607,0.46,,,,,,0.38,,,0.46,0.29,,,,,,0.36,,,0.29,0.942207463,20428,21681,0.932995071,0.951419855,0.71345723,5413,7587,0.647357056,0.779557403,0.048403009,785,16218,,,0.13,940,,0.084723404,0.175276596,,,,,,,0.764705882,0.308810071,1,0.171974522,0,0.417208662,0.113680154,0.084815849,0.142544459,5.326677869,107780,20234,4.634837648,6.01851809,0.148122867,1085,7325,0.113214387,0.183031347,11.52413368,43,37313,,,71.40998743,129,180647,59.08688176,83.73309311,,,,,,,,,,,,,73.20248889,60.21270268,86.19227509,,,,5.1,,,,,0,,,,,0.154291923,2130,13805,0.134375856,0.17420799,0.132166791,0.111746894,0.152586688,0.020282506,0.012982423,0.027582589,0.011952191,0.006915477,0.016988905,0.653068702,10694,16375,0.624169828,0.681967577,,,,0.314900154,0.192885577,0.43691473,,,,,,,0.69730375,0.666744456,0.727863043,0.115,,16375,0.095458122,0.134541879,77.98089209,,,77.11627955,78.84550463,,,,,,,,,,,,,77.67324074,76.78113513,78.56534635,,,,368.9820171,453,99865,332.3502828,405.6137514,,,,,,,,,,,,,378.8671945,340.5455221,417.188867,,,,46.82865914,18,38438,27.75363125,74.00947049,,,,,,,,,,,,,51.01462419,30.23449943,80.62509995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.113,,,0.095,0.133,0.172,,,0.148,0.198,0.092,,,0.078,0.108,49.9,16,32051,,,0.12,4500,,,,0.050958563,1866.510226,36628,,,,,,,,,,,,,,,,,,,,,,,,,,0.328,,,0.308,0.348,0.088837389,1840,20712,0.072156538,0.10551824,0.040504732,321,7925,0.027398349,0.053611115,0.001053058,39,37035,,,949.6153846,0.82960373,355.9,429,,,0.053355336,194,3636,0.024814775,0.081895896,3.494250789,,,,,,,,,3.492703948,3.434571235,,,,,,,,,3.439988371,0.11611207,,,,,432.5817167,,,,,0.75288125,41090,54577,0.671462486,0.834300015,55623,,,49069.80851,62176.19149,,,,31250,15301.91489,47198.08511,,,,25904,23873.70213,27934.29787,53840,51240.17021,56439.82979,,,,,,0.454268293,2384,5248,,,78.49201913,,,,,0.365298528,,55623,,,10.92611863,21,1922,,,,,,,,,,,,,,,,,,,,,,,,,,19.05212324,34,180647,12.75950594,27.36202702,18.821237,,,,,,,,,,,,,19.48911522,12.73093711,28.55606933,,,,9.964184293,18,180647,5.905407109,15.747707,,,,,,,,,,,,,9.600326411,5.487416044,15.59032863,,,,7.492645377,19,253582,4.51106197,11.70069389,,,,,,,,,,,,,7.694543714,4.560274259,12.16069639,,,,16.66666667,,3000,,,50,,0.672763636,18501,27500,,,0.597,,,,,65.91055699,,,,,0.689903337,9778,14173,0.671804192,0.708002483,0.127050688,1727,13593,0.104412852,0.149688524,0.847526988,12012,14173,0.832017215,0.863036761,37035,,,,,0.197974889,7332,37035,,,0.181746996,6731,37035,,,0.01071959,397,37035,,,0.008478466,314,37035,,,0.024571351,910,37035,,,0.000378021,14,37035,,,0.018928041,701,37035,,,0.923531794,34203,37035,,,0.006657303,237,35600,0.002537932,0.010776675,0.45381396,16807,37035,,,0.45210246,16891,37361,, -26,063,26063,MI,Huron County,2024,1,7984.582426,567,82558,6761.138869,9208.025982,0,,,,2,,,,2,,,,2,,,,2,7785.207943,6557.79634,9012.619545,,,,,2,,0.161,,,0.135,0.19,3.835991434,,,3.007075112,4.791084019,5.557501921,,,4.503146787,6.77296624,0.073514602,146,1986,0.062036435,0.084992769,0,,,,,,,,,,,,,0.07073955,0.059106325,0.082372775,,,,,,,0.202,,,0.161,0.247,0.388,,,0.313,0.471,7.5,0.08016444,0.118,,,0.233,,,0.186,0.282,0.657783297,20659,31407,,,0.165945707,,,0.133039247,0.20428596,0.263157895,5,19,0.14192256,0.393259063,182.4,57,31252,,,11.95426195,69,5772,9.301129341,15.12888359,,,,,,,,,,56.87203792,29.38661189,99.34400497,10.46728972,7.906878165,13.59264636,,,,,,,0.066153981,1514,22886,0.056622066,0.075685896,0.000575963,18,31252,,,1736.222222,0.000544035,17,31248,,,1838.117647,0.001600102,50,31248,,,624.96,2047,,,,,,,,,2050,0.5,,,,,,,,,0.5,0.36,,,,,,,,0.25,0.36,0.913365484,21212,23224,0.904769611,0.921961357,0.597130607,3621,6064,0.553025085,0.641236129,0.04711622,705,14963,,,0.152,882,,0.097191489,0.206808511,,,,,,,,,,0.161716172,0.014076592,0.309355752,0.142147849,0.117379821,0.166915876,4.224087561,102658,24303,3.862053363,4.58612176,0.152054567,914,6011,0.118020081,0.186089052,16.31895559,51,31252,,,92.06087606,143,155332,76.97178234,107.1499698,,,,,,,,,,,,,93.5168432,77.91390579,109.1197806,,,,7.3,,,,,0,,,,,0.093457944,1300,13910,0.082843312,0.104072576,0.083278926,0.072210463,0.09434739,0.010783609,0.007439963,0.014127255,0.005751258,0.003184689,0.008317828,0.803499327,10746,13374,0.787580638,0.819418016,,,,,,,,,,0.574519231,0.430203817,0.718834645,0.806372549,0.785718049,0.827027049,0.219,,13374,0.198885345,0.239114656,76.93250336,,,75.95762558,77.90738113,,,,,,,,,,,,,76.98661938,76.00611058,77.96712818,,,,403.830972,567,82558,365.8867994,441.7751447,,,,,,,,,,,,,401.2487307,362.7443127,439.7531486,,,,38.41278377,10,26033,18.42042291,70.64247702,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.118,,,0.1,0.138,0.179,,,0.154,0.206,0.092,,,0.077,0.108,33.1,9,27157,,,0.118,3730,,,,0.08016444,2654.885909,33118,,,12.91906208,12,92886,6.675467895,22.56700154,,,,,,,,,,,,,13.62073075,7.038030339,23.79267551,,,,0.357,,,0.34,0.374,0.076245818,1299,17037,0.064330924,0.088160712,0.037613489,232,6168,0.026890085,0.048336893,0.001184076,37,31248,,,844.5405405,0.895843829,355.65,397,,,0.066566941,89,1337,0.027434643,0.105699239,3.049571889,,,,,,,,,3.07221278,2.939338782,,,,,,,,,2.942539013,0.06919906,,,,,-1327.974475,,,,,0.780555114,39315,50368,0.740045991,0.821064238,50177,,,46031.80851,54322.19149,,,,,,,,,,60000,46097.70213,73902.29787,54626,52556.38298,56695.61702,,,,,,0.509544128,2269,4453,,,,,,,,0.344201527,,50177,,,15.12163051,23,1521,,,,,,,,,,,,,,,,,,,,,,,,,,15.60802221,24,155332,9.533785449,24.10532441,15.4507764,,,,,,,,,,,,,15.34916925,9.241202562,23.96962911,,,,10.94429995,17,155332,6.375458032,17.52288441,,,,,,,,,,,,,11.52019083,6.71093569,18.4449415,,,,17.37571789,38,218696,12.29609213,23.84953036,,,,,,,,,,,,,17.30261798,12.11854092,23.95411658,,,,30.83333333,,2400,,,74,,0.738070456,18437,24980,,,0.582,,,,,10.79530807,,,,,0.818315341,11143,13617,0.807586919,0.829043763,0.08872077,1161,13086,0.075541785,0.101899755,0.785341852,10694,13617,0.770879318,0.799804386,31248,,,,,0.188716078,5897,31248,,,0.270513313,8453,31248,,,0.00672043,210,31248,,,0.004480287,140,31248,,,0.006336406,198,31248,,,0.000128008,4,31248,,,0.02796979,874,31248,,,0.945916539,29558,31248,,,0.004202942,126,29979,0.001058885,0.007346999,0.496767793,15523,31248,,,1,31407,31407,, -26,065,26065,MI,Ingham County,2024,1,9310.916342,4004,819850,8894.252064,9727.580621,0,,,,2,2974.326599,2047.389574,4177.060388,,17076.38822,15493.21238,18659.56406,,12532.72351,10829.74478,14235.70223,,8157.897938,7693.726865,8622.069011,,,,,2,,0.151,,,0.128,0.175,3.710721797,,,3.0015477,4.478059874,6.041947357,,,5.195983943,6.909872921,0.088818398,1904,21437,0.085010126,0.092626671,0,,,,0.092682927,0.077678841,0.107687012,0.137713998,0.126997172,0.148430824,0.079132474,0.066322669,0.091942278,0.073710258,0.06927539,0.078145126,,,,0.11928934,0.096657993,0.141920687,0.157,,,0.125,0.19,0.368,,,0.317,0.421,6.7,0.143165782,0.124,,,0.213,,,0.179,0.25,0.913839944,260353,284900,,,0.186846853,,,0.154304535,0.220935079,0.314814815,34,108,0.265772595,0.36437307,629.5,1788,284034,,,11.10577238,1017,91574,10.42320683,11.78833793,,,,1.898820019,1.038102574,3.185897345,29.80983382,26.67780316,32.94186448,17.46980889,14.66469117,20.2749266,6.786050895,6.117667594,7.454434197,,,,18.86432927,15.33199597,22.96664401,0.060432401,13867,229463,0.052091975,0.068772826,0.001154791,328,284034,,,865.9573171,0.000806032,229,284108,,,1240.646288,0.004892506,1390,284108,,,204.3942446,3310,,,,,14312,1020,4650,2513,3148,0.41,,,,,,0.36,0.37,0.27,0.42,0.47,,,,,0.47,0.45,0.32,0.38,0.49,0.935825499,162945,174119,0.929536893,0.942114104,0.77142504,56169,72812,0.744601412,0.798248668,0.044433768,6474,145700,,,0.189,10118,,0.141340426,0.236659575,0.047021944,0,0.200103632,0.111468037,0.056652133,0.166283942,0.360877327,0.284232785,0.43752187,0.223499764,0.164426436,0.282573092,0.103954953,0.081075441,0.126834464,4.85075621,123801,25522,4.596851851,5.10466057,0.26926714,14807,54990,0.240734513,0.297799766,13.58992233,386,284034,,,90.07082905,1306,1449970,85.18578322,94.95587489,,,,24.24022059,15.53116672,36.06752678,136.7899561,119.1114174,154.4684947,98.18360334,80.15995885,116.2072478,89.33954399,83.49619757,95.18289042,,,,7.1,,,,,1,,,,,0.161989796,18415,113680,0.151269803,0.172709789,0.145601075,0.13533788,0.155864269,0.018121042,0.014177769,0.022064314,0.005629838,0.003905633,0.007354043,0.690760724,95316,137987,0.676019971,0.705501477,0.764900662,0.560602104,0.969199221,0.568810636,0.521176911,0.616444361,0.643946771,0.587928345,0.699965197,0.72289379,0.657679078,0.788108501,0.758367414,0.74359474,0.773140087,0.184,,137987,0.171278375,0.196721625,76.09047852,,,75.73732384,76.4436332,,,,85.79685618,83.28029584,88.31341653,69.19588643,68.12907994,70.26269291,74.51375776,72.81898483,76.20853068,77.03907858,76.6421676,77.43598956,,,,444.0103913,4004,819850,429.7535865,458.2671961,,,,151.9145564,114.1228903,198.2155431,770.3608866,712.8652569,827.8565163,520.3574606,459.2136103,581.5013108,408.1400913,392.2773564,424.0028262,,,,55.77782522,162,290438,47.18847835,64.36717208,,,,,,,126.2055007,94.53658038,165.0799022,71.57031784,44.85273715,108.3583213,39.8243113,30.98569127,50.40021476,,,,6.947301065,152,21879,5.842840034,8.051762096,,,,,,,13.59883439,10.27241335,17.65921758,,,,4.489500362,3.442074184,5.755336848,,,,,,,0.108,,,0.092,0.123,0.173,,,0.152,0.197,0.098,,,0.084,0.112,187.5,458,244203,,,0.124,35360,,,,0.143165782,40214.55219,280895,,,38.40613391,333,867049,34.28103329,42.53123453,,,,,,,72.01412661,56.44757956,90.54695241,55.2533152,39.29050846,75.5331008,35.69647322,30.9137583,40.47918814,,,,0.325,,,0.31,0.339,0.070085136,12200,174074,0.060553221,0.079617051,0.031483229,1835,58285,0.021951314,0.041015144,0.001738775,494,284108,,,575.1174089,0.780253304,2479.645,3178,,,0.031947979,678,21222,0.020564174,0.043331783,3.058388015,,,,,,,2.441042325,2.74086991,3.395557496,2.960376003,,,,,,3.585524234,2.240289011,2.524216036,3.331346303,0.166699766,,,,,251.3703636,,,,,0.862922197,50254,58237,0.825445577,0.900398818,60571,,,56498.48936,64643.51064,65833,30066.87234,101599.1277,61211,52613.21277,69808.78723,42287,36552.3617,48021.6383,53641,49735.29787,57546.70213,67963,65718.23404,70207.76596,,,,,,0.484910712,18655,38471,,,48.83369778,,,,,0.412061878,,60571,,,8.825786646,138,15636,,,6.373184013,129,2024106,5.273373988,7.472994039,,,,,,,27.76413301,21.42777171,35.38766667,9.367915514,5.2431512,15.45095201,2.695893941,1.907775004,3.700325062,,,,13.59471385,198,1449970,11.62511067,15.56431704,13.65545494,,,,11.45137549,4.604046868,23.59421017,11.14051846,6.602577289,17.60682214,11.29685053,6.015097128,19.31795845,14.27201754,11.87428346,16.66975163,,,,11.79334745,171,1449970,10.0257022,13.5609927,,,,,,,32.71064166,24.64213188,42.57739634,13.78015485,7.876549151,22.37810816,9.351800819,7.557206995,11.44423578,,,,9.041028484,183,2024106,7.731097653,10.35095932,,,,,,,11.53279371,7.600183727,16.77960936,17.48677563,11.61983541,25.27325956,8.655238441,7.119365841,10.19111104,,,,16.57534247,,21900,,,363,,0.661056868,144550,218665,,,0.713,,,,,139.7201396,,,,,0.587887382,67988,115648,0.577607145,0.59816762,0.154556524,17389,112509,0.142895615,0.166217434,0.881519784,101946,115648,0.871875129,0.891164439,284108,,,,,0.192395146,54661,284108,,,0.148253481,42120,284108,,,0.117874189,33489,284108,,,0.0063145,1794,284108,,,0.066284652,18832,284108,,,0.000872908,248,284108,,,0.083390823,23692,284108,,,0.688231236,195532,284108,,,0.01540665,4120,267417,0.012657361,0.018155939,0.510094753,144922,284108,,,0.145675676,41503,284900,, -26,067,26067,MI,Ionia County,2024,1,6597.293445,882,184968,5914.787364,7279.799525,0,,,,2,,,,2,,,,2,6283.530001,3435.264323,10542.69565,1,6719.496093,5991.186109,7447.806076,,,,,2,,0.154,,,0.129,0.183,3.662913833,,,2.820894151,4.644150336,5.089775795,,,3.987362907,6.304064551,0.074246924,350,4714,0.066762677,0.081731171,0,,,,,,,,,,,,,0.075258918,0.06741469,0.083103147,,,,,,,0.195,,,0.153,0.243,0.363,,,0.279,0.451,8,0.068601174,0.1,,,0.238,,,0.19,0.293,0.698326448,46651,66804,,,0.193630124,,,0.149918267,0.242257753,0.355555556,16,45,0.278624636,0.431514197,302.1,203,67197,,,18.42493975,237,12863,16.07915599,20.77072351,,,,,,,,,,29.11737944,19.91626598,41.10505194,17.73776629,15.27326834,20.20226424,,,,,,,0.06092756,3170,52029,0.051395645,0.070459475,0.000252988,17,67197,,,3952.764706,0.000419105,28,66809,,,2386.035714,0.001556677,104,66809,,,642.3942308,3164,,,,,,,,,3097,0.43,,,,,,,,,0.43,0.37,,,,,,,,0.27,0.37,0.913140264,42251,46270,0.902661684,0.923618843,0.569099968,10509,18466,0.524120802,0.614079133,0.039059135,1179,30185,,,0.131,1769,,0.084531915,0.177468085,,,,,,,0.234782609,0,0.604502413,0.139329806,0.042114652,0.23654496,0.120766827,0.091230316,0.150303339,3.459389272,115893,33501,3.160563923,3.758214621,0.204635387,2896,14152,0.159426953,0.249843822,7.738440704,52,67197,,,70.16507257,228,324948,61.05735349,79.27279164,,,,,,,,,,,,,73.38474925,63.4592528,83.31024571,,,,8.2,,,,,0,,,,,0.088859991,2050,23070,0.074974173,0.10274581,0.071958133,0.058665986,0.085250281,0.015604681,0.010066694,0.021142669,0.00390117,0.001049943,0.006752398,0.810006671,24284,29980,0.789964693,0.83004865,,,,,,,,,,0.777840588,0.634344255,0.92133692,0.758425073,0.737811251,0.779038895,0.434,,29980,0.400257493,0.467742508,77.8404255,,,77.19470137,78.48614963,,,,,,,80.59710812,66.26546469,94.92875155,79.70714987,73.8070187,85.60728104,77.6984236,77.02786788,78.36897931,,,,368.2295581,882,184968,343.2496017,393.2095145,,,,,,,,,,421.1902752,257.2739623,650.4942195,372.0864592,345.717188,398.4557305,,,,39.52694156,25,63248,25.57975248,58.34956314,,,,,,,,,,,,,38.39824465,23.76911864,58.69579582,,,,4.533278385,22,4853,2.840981428,6.863437953,,,,,,,,,,,,,4.472271914,2.731779872,6.907061248,,,,,,,0.111,,,0.094,0.13,0.17,,,0.144,0.198,0.089,,,0.073,0.106,119.1,68,57111,,,0.1,6650,,,,0.068601174,4383.958007,63905,,,17.30746715,34,196447,11.98592414,24.18545058,,,,,,,,,,,,,17.37488634,11.72276285,24.80373062,,,,0.35,,,0.333,0.366,0.071801011,2699,37590,0.059886117,0.083715905,0.033278419,505,15175,0.022555014,0.044001823,0.000718466,48,66809,,,1391.854167,0.801722615,453.775,566,,,0.064618036,225,3482,0.03432617,0.094909901,3.066922672,,,,,,,,,3.083649822,2.874994774,,,,,,,,,2.890400218,0.036923137,,,,,-241.136,,,,,0.792722835,42876,54087,0.728219607,0.857226064,74391,,,70089.7234,78692.2766,81071,36061.29787,126080.7021,88750,75268.29787,102231.7021,17448,5618.893617,29277.10638,68446,51717.48936,85174.51064,70975,67604.2766,74345.7234,,,,,,0.462991937,3847,8309,,,,,,,,0.261402589,,74391,,,6.273867976,23,3666,,,,,,,,,,,,,,,,,,,,,,,,,,16.07409592,55,324948,12.00490367,21.07903825,16.92578505,,,,,,,,,,,,,17.01770787,12.54751439,22.56301172,,,,8.616763298,28,324948,5.725776634,12.4536221,,,,,,,,,,,,,9.08573086,5.935101049,13.31270083,,,,13.8949235,63,453403,10.67724073,17.77764313,,,,,,,,,,,,,14.01327758,10.58547929,18.19740655,,,,21.01694915,,5900,,,124,,0.649375,32209,49600,,,0.745,,,,,29.77194396,,,,,0.771008127,17552,22765,0.750798958,0.791217295,0.074474312,1654,22209,0.058737955,0.090210669,0.856709862,19503,22765,0.83921047,0.874209253,66809,,,,,0.206813453,13817,66809,,,0.159484501,10655,66809,,,0.058929186,3937,66809,,,0.007289437,487,66809,,,0.004984358,333,66809,,,0.000404137,27,66809,,,0.054049604,3611,66809,,,0.860737326,57505,66809,,,0.003119458,197,63152,0.000436625,0.00580229,0.446631442,29839,66809,,,0.610173044,40762,66804,, -26,069,26069,MI,Iosco County,2024,1,12119.91092,580,66001,10261.86241,13977.95944,0,,,,2,,,,2,,,,2,,,,2,12598.98434,10609.21345,14588.75524,,,,,2,,0.177,,,0.15,0.208,4.070414762,,,3.239425177,5.051441638,5.847825585,,,4.736709079,7.049278452,0.082740789,128,1547,0.069012488,0.096469089,0,,,,,,,,,,,,,0.077410275,0.063515144,0.091305405,,,,,,,0.217,,,0.177,0.262,0.391,,,0.313,0.472,7.3,0.052867244,0.142,,,0.261,,,0.215,0.311,0.77675635,19603,25237,,,0.151378215,,,0.119672716,0.186330654,0.04,1,25,0.001564887,0.150972868,145.8,37,25369,,,30.34940066,119,3921,24.89643567,35.80236566,,,,,,,,,,,,,31.13289132,25.26119415,37.0045885,,,,,,,0.072259749,1273,17617,0.060344856,0.084174643,0.000315346,8,25369,,,3171.125,0.000626935,16,25521,,,1595.0625,0.002155088,55,25521,,,464.0181818,2117,,,,,,,,,2124,0.5,,,,,,,,,0.5,0.28,,,,,,,,,0.28,0.898205729,17621,19618,0.885086123,0.911325336,0.600294985,2849,4746,0.531871459,0.668718512,0.064106323,656,10233,,,0.262,1094,,0.178595745,0.345404255,,,,,,,,,,0.020408163,0,0.197406287,0.211784325,0.155623109,0.26794554,4.138633948,85678,20702,3.691526929,4.585740968,0.229251864,953,4157,0.173836618,0.284667111,15.37309315,39,25369,,,111.2179156,140,125879,92.79464188,129.6411894,,,,,,,,,,,,,113.2155778,93.97418797,132.4569676,,,,6.5,,,,,0,,,,,0.101954121,1200,11770,0.08618032,0.117727922,0.082444062,0.067141529,0.097746595,0.0144435,0.007451626,0.021435375,0.014868309,0.007677051,0.022059568,0.816210296,7452,9130,0.79134097,0.841079622,,,,,,,,,,,,,0.813382239,0.785736974,0.841027503,0.244,,9130,0.210089618,0.277910382,73.82890673,,,72.52955433,75.12825913,,,,,,,,,,,,,73.37173446,72.0055513,74.73791762,,,,519.2222301,580,66001,468.1883468,570.2561135,,,,,,,,,,,,,537.2342719,482.9076832,591.5608606,,,,97.7570195,18,18413,57.93700527,154.4982364,,,,,,,,,,,,,98.47971933,56.28966858,159.9248944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.127,,,0.11,0.147,0.19,,,0.165,0.217,0.1,,,0.085,0.116,53.9,12,22259,,,0.142,3590,,,,0.052867244,1368.574343,25887,,,42.30789571,32,75636,28.93856935,59.72612523,,,,,,,,,,,,,42.6009287,28.7426677,60.81547464,,,,0.354,,,0.336,0.37,0.083358321,1112,13340,0.069060449,0.097656193,0.037756926,169,4476,0.024650543,0.050863309,0.00137142,35,25521,,,729.1714286,0.746264368,194.775,261,,,,,,,,3.070679427,,,,,,,,,3.073991892,3.017332489,,,,,,,,,3.026696031,0.025481566,,,,,-4334.9855,,,,,0.770132528,37249,48367,0.702956869,0.837308188,46129,,,41950.44681,50307.55319,36618,22596.55319,50639.44681,33882,11666.68085,56097.31915,24231,11180.61702,37281.38298,62212,40547.14894,83876.85106,46450,43447.44681,49452.55319,,,,,,0.663846588,2354,3546,,,59.54880217,,,,,0.374514947,,46129,,,10.31814273,12,1163,,,,,,,,,,,,,,,,,,,,,,,,,,24.13785607,32,125879,15.46557984,35.91521651,25.42123786,,,,,,,,,,,,,24.56612551,15.39546007,37.19340925,,,,15.88827366,20,125879,9.704970317,24.53815005,,,,,,,,,,,,,16.17365397,9.737596224,25.25716414,,,,14.7266229,26,176551,9.619919012,21.57791464,,,,,,,,,,,,,15.73954682,10.28159455,23.06208288,,,,26.875,,1600,,,43,,0.737011274,15363,20845,,,0.493,,,,,15.33506834,,,,,0.810520851,9368,11558,0.784170623,0.83687108,0.106619959,1187,11133,0.087535935,0.125703982,0.8154525,9425,11558,0.792624348,0.838280653,25521,,,,,0.167940128,4286,25521,,,0.307472278,7847,25521,,,0.008346068,213,25521,,,0.009247287,236,25521,,,0.008306885,212,25521,,,0.000862035,22,25521,,,0.029034912,741,25521,,,0.927353944,23667,25521,,,0.003063675,74,24154,0,0.007335389,0.496649818,12675,25521,,,0.497523477,12556,25237,, -26,071,26071,MI,Iron County,2024,1,11326.147,242,29291,8557.611329,14094.68266,0,,,,2,,,,2,,,,2,,,,2,11484.94472,8524.302973,14445.58646,,,,,2,,0.167,,,0.139,0.196,3.968985158,,,3.118079808,4.920482206,5.63930584,,,4.525399117,6.83696028,0.097879282,60,613,0.074355695,0.12140287,0,,,,,,,,,,,,,0.099818512,0.074789088,0.124847936,,,,,,,0.21,,,0.167,0.254,0.353,,,0.271,0.439,7.3,0.057884618,0.14,,,0.245,,,0.197,0.296,0.823059066,9573,11631,,,0.154018531,,,0.120842691,0.190406502,0.285714286,2,7,0.086061846,0.500925625,223.5,26,11635,,,22.23489168,39,1754,15.81118158,30.39582889,,,,,,,,,,,,,22.42152466,15.61741346,31.18291311,,,,,,,0.076797386,611,7956,0.064882492,0.088712279,0.000687581,8,11635,,,1454.375,0.000344175,4,11622,,,2905.5,0.001118568,13,11622,,,894,2017,,,,,,,,,2034,0.52,,,,,,,,,0.52,0.28,,,,,,,,,0.28,0.927323628,8281,8930,0.910938683,0.943708574,0.544315992,1130,2076,0.466507451,0.622124534,0.060118544,284,4724,,,0.214,424,,0.131787234,0.296212766,0.215686275,0,0.856638664,,,,,,,0.153061225,0,0.42752422,0.219435737,0.148053738,0.290817735,4.403678346,98409,22347,3.762386222,5.04497047,0.365423387,725,1984,0.254789565,0.476057209,11.17318436,13,11635,,,114.2693901,64,56008,88.00135435,145.9194601,,,,,,,,,,,,,117.7654947,90.29012952,150.9700493,,,,5.3,,,,,0,,,,,0.119417476,615,5150,0.092792005,0.146042946,0.106614018,0.07977061,0.133457426,0.008543689,0.002031683,0.015055696,0.006601942,0.001213954,0.01198993,0.80370454,3558,4427,0.776879801,0.830529279,,,,,,,,,,,,,0.779442149,0.746656215,0.812228082,0.227,,4427,0.186209975,0.267790025,74.58461027,,,72.61728082,76.55193973,,,,,,,,,,,,,74.31553655,72.22787431,76.40319878,,,,490.8170431,242,29291,414.8484617,566.7856245,,,,,,,,,,,,,491.8457849,413.1943162,570.4972536,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.121,,,0.103,0.139,0.182,,,0.158,0.208,0.094,,,0.08,0.11,107.7,11,10217,,,0.14,1620,,,,0.057884618,684.0225327,11817,,,,,,,,,,,,,,,,,,,,,,,,,,0.347,,,0.327,0.365,0.086490111,516,5966,0.072192238,0.100787983,0.048991355,102,2082,0.033501993,0.064480716,0.000602306,7,11622,,,1660.285714,,,,,,,,,,,3.083141828,,,,,,,,,3.062744451,2.92496738,,,,,,,,,2.903949215,0.031897331,,,,,-1087.41015,,,,,0.780008721,37566,48161,0.696770179,0.863247262,54149,,,48166.53192,60131.46809,,,,155625,101117.9362,210132.0638,14000,2458.042553,25541.95745,,,,51910,47780.29787,56039.70213,,,,,,0.63456985,804,1267,,,,,,,,0.306543057,,54149,,,12.37113402,6,485,,,,,,,,,,,,,,,,,,,,,,,,,,23.87903503,11,56008,10.91901537,45.32984667,19.64005142,,,,,,,,,,,,,25.01252628,10.79863351,49.28464808,,,,,,,,,,,,,,,,,,,,,,,,,,,19.09587402,15,78551,10.68781573,31.49574018,,,,,,,,,,,,,18.91150765,10.33909721,31.7302964,,,,36.25,,800,,,29,,0.735536295,6789,9230,,,0.493,,,,,14.26946094,,,,,0.841233141,4366,5190,0.820843613,0.861622669,0.114777328,567,4940,0.085881844,0.143672812,0.770520231,3999,5190,0.741431075,0.799609388,11622,,,,,0.174066426,2023,11622,,,0.313715367,3646,11622,,,0.005420754,63,11622,,,0.016090174,187,11622,,,0.005420754,63,11622,,,0.000258131,3,11622,,,0.025210807,293,11622,,,0.934176562,10857,11622,,,0.000719554,8,11118,0,0.007355296,0.497590776,5783,11622,,,1,11631,11631,, -26,073,26073,MI,Isabella County,2024,1,8431.192089,862,193540,7588.111436,9274.272742,0,29610.82189,22047.20183,38932.76229,,,,,2,,,,2,8531.836985,5056.507317,13483.98073,1,7524.169019,6647.041618,8401.29642,,,,,2,,0.175,,,0.149,0.206,4.00865599,,,3.183173723,4.852780637,5.74182011,,,4.731240327,6.788707931,0.081043639,351,4331,0.072915916,0.089171362,0,0.156756757,0.104365384,0.209148129,,,,0.138613861,0.07122352,0.206004203,0.080168776,0.045595654,0.114741898,0.07498601,0.066351393,0.083620627,,,,0.1015625,0.049231177,0.153893823,0.208,,,0.167,0.254,0.399,,,0.327,0.476,7.3,0.049667837,0.142,,,0.255,,,0.208,0.305,0.781889617,50349,64394,,,0.187209727,,,0.151083135,0.228987197,0.408163265,20,49,0.33700307,0.476815259,424.3,275,64813,,,7.661219469,218,28455,6.644208287,8.678230652,26.31578947,16.07436788,40.6426025,,,,,,,12.87208367,7.357508008,20.90345744,6.797012671,5.750326121,7.843699221,,,,14.37371663,7.858244637,24.11665413,0.078111835,4079,52220,0.065005452,0.091218218,0.000493728,32,64813,,,2025.40625,0.000729281,47,64447,,,1371.212766,0.003739507,241,64447,,,267.4149378,1893,,,,,,,,,1892,0.47,,,,,0.49,0.46,0.42,,0.47,0.43,,,,,0.5,0.38,0.49,0.18,0.42,0.926380878,33409,36064,0.915330315,0.937431442,0.681722836,9750,14302,0.639779821,0.723665851,0.04874665,1546,31715,,,0.174,1934,,0.126340426,0.221659575,0.203991131,0,0.445132418,,,,0.078740158,0,0.299931451,0.060532688,0,0.121077892,0.218798334,0.175763902,0.261832767,5.33215,106643,20000,4.803743067,5.860556933,0.244166141,2710,11099,0.196496066,0.291836216,9.10311203,59,64813,,,57.54538567,199,345814,49.54998857,65.54078277,289.4602418,200.4596321,404.4916746,,,,,,,,,,51.23993865,43.06703839,59.41283891,,,,7.2,,,,,1,,,,,0.181945556,4545,24980,0.160667403,0.20322371,0.171299898,0.149576111,0.193023684,0.013010408,0.008967067,0.01705375,0.007005605,0.004375425,0.009635784,0.776831457,23806,30645,0.764564288,0.789098626,0.856074766,0.701579761,1,,,,0.699167658,0.612183634,0.786151681,0.730501393,0.647410527,0.813592259,0.796849812,0.781596424,0.8121032,0.201,,30645,0.181458122,0.220541879,76.19418352,,,75.47420475,76.91416229,60.92853568,56.9325376,64.92453376,,,,74.16330003,66.75268111,81.57391895,76.05924158,70.9172874,81.20119576,76.94696019,76.18363392,77.71028647,,,,423.3003533,862,193540,393.7455654,452.8551413,1158.670587,915.8810171,1446.07333,,,,,,,391.2852294,235.5792686,611.040355,391.5411061,361.4949545,421.5872576,,,,43.84746927,30,68419,29.58370339,62.59498881,,,,,,,,,,,,,44.01731348,28.20272331,65.49427334,,,,7.013574661,31,4420,4.765383706,9.95520939,,,,,,,,,,,,,7.138934651,4.663389131,10.46019332,,,,,,,0.126,,,0.108,0.146,0.188,,,0.162,0.215,0.103,,,0.088,0.12,77.4,44,56821,,,0.142,9290,,,,0.049667837,3492.195272,70311,,,16.16149744,33,204189,11.1248312,22.69675118,172.4881414,89.1271397,301.3020706,,,,,,,,,,10.35417014,6.136537439,16.36405278,,,,0.339,,,0.322,0.356,0.087382675,3575,40912,0.071893313,0.102872037,0.045443175,545,11993,0.031145303,0.059741048,0.00119478,77,64447,,,836.974026,0.789392713,389.96,494,,,0.055612619,379,6815,0.03601579,0.075209448,3.129118527,,,,,,,,3.063525151,3.184049001,2.863392554,,,,,,,,2.854907942,2.9157773,0.056117116,,,,,-104.4569,,,,,0.812363919,41788,51440,0.74813904,0.876588798,54642,,,48645.23404,60638.76596,59130,29116.38298,89143.61702,80781,45060.14894,116501.8511,38472,20497.19149,56446.80851,41591,35446.48936,47735.51064,53431,50470.14894,56391.85106,,,,,,0.498888395,3366,6747,,,50.78978193,,,,,0.379982431,,54642,,,9.647371923,29,3006,,,,,,,,,,,,,,,,,,,,,,,,,,14.72106266,48,345814,10.65370604,19.82917479,13.88029403,,,,,,,,,,,,,13.99132628,9.745471394,19.4585479,,,,9.253529354,32,345814,6.329407228,13.06322245,,,,,,,,,,,,,9.162108235,6.037887059,13.33038645,,,,10.45523315,51,487794,7.784607814,13.74670073,,,,,,,,,,,,,9.847862533,7.066996178,13.35973751,,,,25.09803922,,5100,,,128,,0.51597685,29421,57020,,,0.652,,,,,37.15572209,,,,,0.616683417,15340,24875,0.603973555,0.629393279,0.175916625,4203,23892,0.152323672,0.199509578,0.816603015,20313,24875,0.798398506,0.834807525,64447,,,,,0.17581889,11331,64447,,,0.141263364,9104,64447,,,0.025959315,1673,64447,,,0.039334647,2535,64447,,,0.016959672,1093,64447,,,0.000527565,34,64447,,,0.048086024,3099,64447,,,0.846494018,54554,64447,,,0.004063992,252,62008,,,0.509441867,32832,64447,,,0.52265739,33656,64394,, -26,075,26075,MI,Jackson County,2024,1,9547.364021,2791,439983,8982.40308,10112.32496,0,,,,2,,,,2,15670.45667,13225.96409,18114.94925,,8349.407072,5937.244634,11413.91433,,8810.685376,8227.557794,9393.812959,,,,,2,,0.157,,,0.133,0.182,3.666573977,,,2.938878512,4.462399859,5.359998598,,,4.468515082,6.276722812,0.09170928,1094,11929,0.086529955,0.096888605,0,,,,0.117241379,0.064877295,0.169605464,0.153061225,0.131567816,0.174554633,0.090534979,0.065023295,0.116046664,0.082042217,0.076557347,0.087527087,,,,0.131736527,0.102121231,0.161351823,0.197,,,0.16,0.236,0.358,,,0.303,0.416,7.3,0.108549373,0.114,,,0.226,,,0.186,0.269,0.729481312,116984,160366,,,0.16490807,,,0.135166104,0.197383513,0.252747253,23,91,0.198997132,0.308887154,515.5,825,160050,,,21.68696383,723,33338,20.10613197,23.26779568,,,,,,,42.22853087,34.64120804,49.81585371,29.86666667,22.56095903,38.78435094,17.56577702,15.9674544,19.16409964,,,,39.66480447,30.97854137,50.03175369,0.061472567,7621,123974,0.053132141,0.069812992,0.000431115,69,160050,,,2319.565217,0.000680969,109,160066,,,1468.495413,0.003398598,544,160066,,,294.2389706,2723,,,,,,,4368,,2679,0.49,,,,,,0.48,0.39,0.29,0.49,0.5,,,,,,0.62,0.31,0.38,0.5,0.920094175,103172,112132,0.912996265,0.927192085,0.576762857,22845,39609,0.545368234,0.60815748,0.044720901,3300,73791,,,0.177,5772,,0.129340426,0.224659575,0.276923077,0,0.958592039,,,,0.351333976,0.254798765,0.447869188,0.239047619,0.141833016,0.336262222,0.137445285,0.114494401,0.160396168,4.209512536,117357,27879,3.988438965,4.430586108,0.301780222,10205,33816,0.265315986,0.338244459,9.184629803,147,160050,,,74.02801967,587,792943,68.03931147,80.01672787,,,,,,,101.0668164,77.66251672,129.3083617,47.90255252,26.18877122,80.37234354,72.8434314,66.38039569,79.30646712,,,,8.6,,,,,1,,,,,0.119665676,7445,62215,0.106229766,0.133101585,0.103389417,0.09167215,0.115106685,0.013099735,0.008706147,0.017493322,0.008840312,0.005211353,0.012469271,0.809621813,55468,68511,0.797569225,0.8216744,,,,0.927044025,0.825939597,1,0.722334585,0.634433451,0.81023572,0.794169611,0.731568223,0.856770999,0.806965502,0.794483935,0.819447069,0.28,,68511,0.259055528,0.300944472,75.35367107,,,74.91087999,75.79646215,,,,,,,68.72367448,67.05766131,70.38968764,79.36078983,75.80350383,82.91807583,75.95550215,75.49493066,76.41607363,,,,462.1137239,2791,439983,443.998739,480.2287087,,,,,,,743.4188001,651.4807852,835.356815,389.9534001,291.235851,511.3720035,442.9403881,423.9914422,461.8893339,,,,61.25003329,92,150204,49.37617158,75.11772856,,,,,,,136.819702,81.08802661,216.2341158,,,,44.04259178,32.79260243,57.90787445,,,,7.134561142,86,12054,5.706727994,8.81112497,,,,,,,21.44772118,13.74195966,31.91250902,,,,4.412066489,3.193034395,5.943024606,,,,,,,0.113,,,0.097,0.13,0.178,,,0.156,0.204,0.095,,,0.081,0.11,178.4,243,136242,,,0.114,18300,,,,0.108549373,17394.81995,160248,,,19.13855472,91,475480,15.40917042,23.49790421,,,,,,,34.95187396,18.61040085,59.76876894,,,,18.7032419,14.71128621,23.44467567,,,,0.356,,,0.34,0.37,0.07394859,6657,90022,0.063225186,0.084671995,0.029288234,1046,35714,0.020947809,0.03762866,0.001386928,222,160066,,,721.018018,0.791345584,1335,1687,,,0.059034654,477,8080,0.034947118,0.083122189,2.858504081,,,,,,,2.368195506,2.812485783,2.955949019,2.724593794,,,,,,,2.11753568,2.605805682,2.836219994,0.139434076,,,,,-95.94026083,,,,,0.806890597,46723,57905,0.772327773,0.84145342,61299,,,55361.80851,67236.19149,37212,22582.89362,51841.10638,88095,78103.17021,98086.82979,29593,25994.70213,33191.29787,46154,32164.7234,60143.2766,64958,62398.68085,67517.31915,,,,,,0.562628889,12550,22306,,,65.15630183,,,,,0.323822575,,61299,,,6.921187765,62,8958,,,6.211196898,69,1110897,4.832681928,7.860667199,,,,,,,36.38472296,24.88712357,51.36437262,,,,3.511344302,2.41704785,4.931232904,,,,17.35648883,143,792943,14.3988518,20.31412586,18.03408316,,,,,,,16.40764751,7.502621239,31.14682587,,,,17.33091665,14.08811489,20.57371841,,,,17.15129587,136,792943,14.26870135,20.03389038,,,,,,,52.93976097,36.44129554,74.34710719,,,,13.73277805,11.07055734,16.8420332,,,,11.16215095,124,1110897,9.197465084,13.12683681,,,,,,,13.64427111,7.050193986,23.83379578,,,,11.17245914,9.03543122,13.30948707,,,,26.11940299,,13400,,,350,,0.660278447,80861,122465,,,0.718,,,,,59.09321455,,,,,0.744356177,46194,62059,0.730958764,0.757753591,0.113000132,6846,60584,0.100521965,0.125478299,0.884948195,54919,62059,0.872202055,0.897694334,160066,,,,,0.207326978,33186,160066,,,0.192683018,30842,160066,,,0.0796359,12747,160066,,,0.004716804,755,160066,,,0.008646433,1384,160066,,,0.000599753,96,160066,,,0.039971012,6398,160066,,,0.83806055,134145,160066,,,0.003548574,539,151892,0.002186031,0.004911117,0.485181113,77661,160066,,,0.472843371,75828,160366,, -26,077,26077,MI,Kalamazoo County,2024,1,7544.508543,3320,741598,7168.244105,7920.772981,0,,,,2,,,,2,14875.223,13359.13264,16391.31335,,7765.281399,6157.385206,9664.56488,,6599.704188,6206.736024,6992.672353,,,,,2,,0.142,,,0.119,0.166,3.358541365,,,2.699626411,4.096436897,5.249999028,,,4.470688876,6.106484889,0.08093675,1652,20411,0.077195045,0.084678455,0,,,,0.071960298,0.046729365,0.09719123,0.142258318,0.131176473,0.153340163,0.064039409,0.051309905,0.076768913,0.066343273,0.062223198,0.070463348,,,,0.081920904,0.061719718,0.10212209,0.164,,,0.126,0.199,0.349,,,0.297,0.403,7.7,0.080717193,0.111,,,0.196,,,0.159,0.231,0.910444453,238236,261670,,,0.184083267,,,0.154180285,0.217633313,0.31292517,46,147,0.271163005,0.355126594,728.4,1902,261108,,,16.15577104,1033,63940,15.17055017,17.1409919,,,,,,,45.72072072,41.27332143,50.16812001,25.28420227,20.92094851,29.64745604,9.576326957,8.662637084,10.49001683,,,,19.39132777,15.17251971,24.42016807,0.051437195,11077,215350,0.044288259,0.058586131,0.000988097,258,261108,,,1012.046512,0.000761947,199,261173,,,1312.427136,0.005065608,1323,261173,,,197.409675,2315,,,,,,,4595,,2150,0.47,,,,,0.4,0.37,0.38,0.38,0.48,0.52,,,,,0.51,0.48,0.35,0.34,0.54,0.943661459,155606,164896,0.937866696,0.949456223,0.767586714,51142,66627,0.739160555,0.796012873,0.039494507,5191,131436,,,0.135,7297,,0.089723404,0.180276596,0.040650407,0,0.297171551,0.0373599,0,0.113671868,0.254035459,0.195945346,0.312125572,0.218512595,0.14852748,0.28849771,0.084444568,0.066872194,0.102016943,4.705554976,135280,28749,4.459658498,4.951451453,0.240187989,13390,55748,0.214423405,0.265952573,10.22565375,267,261108,,,82.80196391,1093,1320017,77.8930363,87.71089153,,,,,,,106.1932718,89.68679021,122.6997533,63.68873578,46.27633292,85.49915508,84.42305989,78.77403464,90.07208515,,,,7.3,,,,,0,,,,,0.133534714,13925,104280,0.122083144,0.144986285,0.118099198,0.107452205,0.12874619,0.012945915,0.009491221,0.016400609,0.008822401,0.006446128,0.011198674,0.78953037,101896,129059,0.776732082,0.802328658,,,,0.695350242,0.595965752,0.794734732,0.728834976,0.68661737,0.771052582,0.697108766,0.654734707,0.739482824,0.815014868,0.79858308,0.831446656,0.201,,129059,0.1882227,0.2137773,77.6681078,,,77.32630718,78.00990842,,,,89.40369266,85.32284187,93.48454346,70.81645954,69.65876315,71.97415593,80.29825586,77.28546854,83.31104318,78.46719397,78.10465275,78.82973519,,,,382.0313423,3320,741598,368.588954,395.4737307,,,,,,,712.5329755,653.1240804,771.9418706,378.3637942,303.0538886,466.7103423,349.1977613,335.0459185,363.349604,,,,40.3277965,106,262846,32.65051206,48.00508095,,,,,,,113.8274479,82.70719793,152.8080359,,,,27.74113558,20.52304482,36.67525241,,,,5.778690482,121,20939,4.749032905,6.808348059,,,,,,,13.35730799,9.975876496,17.51633233,,,,3.456858407,2.56574694,4.557436855,,,,,,,0.104,,,0.088,0.12,0.163,,,0.141,0.187,0.089,,,0.076,0.102,185.7,411,221309,,,0.111,29030,,,,0.080717193,20206.0157,250331,,,20.95530965,166,792162,17.76747263,24.14314667,,,,,,,43.35983101,30.83307854,59.27431638,25.72678158,12.84271667,46.03231872,18.42829665,15.01532835,21.84126495,,,,0.339,,,0.323,0.356,0.060186201,9600,159505,0.051845776,0.068526627,0.028007432,1643,58663,0.019667007,0.036347858,0.001849349,483,261173,,,540.7308489,0.744237686,1903.76,2558,,,0.063243458,957,15132,0.044256438,0.082230478,2.97270172,,,,,,3.557473037,2.230396077,2.707256928,3.26353497,2.862191541,,,,,,3.721477272,2.097075867,2.561520851,3.158345159,0.153564694,,,,,601.4875122,,,,,0.833546169,50913,61080,0.789408653,0.877683685,69689,,,65730.87234,73647.12766,,,,95568,72666.38298,118469.617,37345,34119.6383,40570.3617,57889,47469.42553,68308.57447,73211,70880.44681,75541.55319,,,,,,0.476793745,16221,34021,,,51.4388292,,,,,0.337686005,,69689,,,9.909381316,152,15339,,,5.700529986,105,1841934,4.610153051,6.790906922,,,,,,,25.04744564,18.70663044,32.84639256,,,,2.669519775,1.889111074,3.664124459,,,,14.93959308,201,1320017,12.80907797,17.0701082,15.22707662,,,,,,,8.585417725,4.43621062,14.99699699,,,,16.18489879,13.68263474,18.68716283,,,,12.72710882,168,1320017,10.80255,14.65166763,,,,,,,30.05469955,21.92210409,40.21555264,15.92218395,7.948296858,28.48918524,10.42988852,8.444329479,12.41544756,,,,11.23818769,207,1841934,9.707215929,12.76915945,,,,,,,19.26726588,13.76481722,26.23654758,10.62800906,5.096543449,19.54528705,10.53757806,8.851214352,12.22394176,,,,39.37219731,,22300,,,878,,0.718579016,143414,199580,,,0.742,,,,,93.46490279,,,,,0.640178833,67729,105797,0.630118421,0.650239245,0.124662505,12882,103335,0.112862611,0.1364624,0.890904279,94255,105797,0.881585344,0.900223214,261173,,,,,0.210994245,55106,261173,,,0.163332351,42658,261173,,,0.113576059,29663,261173,,,0.005260881,1374,261173,,,0.029026737,7581,261173,,,0.000673883,176,261173,,,0.057597837,15043,261173,,,0.76140719,198859,261173,,,0.006660231,1642,246538,,,0.509114648,132967,261173,,,0.216387052,56622,261670,, -26,079,26079,MI,Kalkaska County,2024,1,8542.118973,350,49792,7009.257266,10074.98068,0,,,,2,,,,2,,,,2,,,,2,9018.843823,7360.914176,10676.77347,,,,,2,,0.177,,,0.149,0.209,4.118851844,,,3.296937869,5.075093236,5.876079052,,,4.74897242,7.098294159,0.068879668,83,1205,0.054580493,0.083178843,0,,,,,,,,,,,,,0.071872227,0.056793019,0.086951436,,,,,,,0.22,,,0.178,0.265,0.384,,,0.302,0.468,7.6,0.018040772,0.142,,,0.249,,,0.201,0.3,0.432577067,7760,17939,,,0.164764543,,,0.129105791,0.203316245,0.4375,7,16,0.30773596,0.555081272,305.9,55,17979,,,24.70265325,81,3279,19.6174724,30.70314248,,,,,,,,,,,,,23.4375,18.23577397,29.66165628,,,,,,,0.070320214,997,14178,0.05959681,0.081043619,0.000222482,4,17979,,,4494.75,0.000384996,7,18182,,,2597.428571,0.000879991,16,18182,,,1136.375,2252,,,,,,,,,2168,0.33,,,,,,,,,0.33,0.3,,,,,,,,,0.3,0.884467365,11491,12992,0.86879111,0.900143619,0.537288931,2291,4264,0.473495631,0.601082231,0.059781226,470,7862,,,0.167,585,,0.107425532,0.226574468,,,,,,,,,,0.447852761,0,0.917426579,0.172381546,0.122858597,0.221904496,4.061626504,104331,25687,3.586560581,4.536692426,0.199945445,733,3666,0.129738864,0.270152025,7.23065799,13,17979,,,96.11301102,86,89478,76.87800269,118.6987867,,,,,,,,,,,,,101.4501402,81.03476876,125.4446695,,,,6,,,,,0,,,,,0.126829268,910,7175,0.103842258,0.149816279,0.10325779,0.08017453,0.126341051,0.020905923,0.012781054,0.029030793,0.008362369,0.001920958,0.014803781,0.818902931,6091,7438,0.784239635,0.853566227,,,,,,,,,,,,,0.803713528,0.7569626,0.850464456,0.432,,7438,0.381929086,0.482070914,75.37161268,,,74.20559336,76.537632,,,,,,,,,,,,,74.99513503,73.76500693,76.22526314,,,,447.3956163,350,49792,396.4193949,498.3718378,,,,,,,,,,,,,462.194345,408.5008474,515.8878425,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.127,,,0.109,0.146,0.189,,,0.164,0.217,0.098,,,0.084,0.115,123.2,19,15423,,,0.142,2530,,,,0.018040772,309.4533612,17153,,,,,,,,,,,,,,,,,,,,,,,,,,0.348,,,0.329,0.364,0.081609414,860,10538,0.067311541,0.095907286,0.038120104,146,3830,0.026205211,0.050034998,0.000934991,17,18182,,,1069.529412,0.69788961,107.475,154,,,,,,,,2.64445794,,,,,,,,,2.657515916,2.680689084,,,,,,,,,2.684163546,0.048780461,,,,,-1752.26805,,,,,0.816255693,40683,49841,0.744350815,0.888160571,59160,,,53112,65208,88375,81634.74468,95115.25532,77857,11318.2766,144395.7234,,,,79213,48454.70213,109971.2979,55633,51842.87234,59423.12766,,,,,,0.642243847,1122,1747,,,,,,,,0.321348884,,59160,,,11.95652174,11,920,,,,,,,,,,,,,,,,,,,,,,,,,,20.50437345,20,89478,12.1521912,32.40575001,22.35186303,,,,,,,,,,,,,21.74359581,12.88663292,34.36425561,,,,17.88149042,16,89478,10.2208168,29.03842017,,,,,,,,,,,,,19.09649699,10.91529803,31.01151471,,,,16.12890219,20,124001,9.851952473,24.90978129,,,,,,,,,,,,,17.180507,10.49430001,26.53389963,,,,15.33333333,,1500,,,23,,0.759899929,10631,13990,,,0.483,,,,,14.19900625,,,,,0.862410194,6362,7377,0.847001754,0.877818634,0.101758272,735,7223,0.079571214,0.12394533,0.833401112,6148,7377,0.809376857,0.857425366,18182,,,,,0.199483005,3627,18182,,,0.214717853,3904,18182,,,0.007644924,139,18182,,,0.010229898,186,18182,,,0.007204928,131,18182,,,0.000934991,17,18182,,,0.028324717,515,18182,,,0.924430756,16808,18182,,,0.00088085,15,17029,0,0.005257082,0.487570124,8865,18182,,,1,17939,17939,, -26,081,26081,MI,Kent County,2024,1,6497.160804,7125,1860979,6276.485624,6717.835984,0,8960.471926,5798.74498,13227.42418,1,3013.450442,2198.031431,4032.233783,,13761.67918,12761.85916,14761.4992,,6334.369516,5674.868583,6993.870449,,5557.787521,5323.343134,5792.231908,,,,,2,,0.142,,,0.119,0.166,3.354093599,,,2.710190043,4.057003109,4.980488609,,,4.220665632,5.750867615,0.085361498,5019,58797,0.083102925,0.087620072,0,0.11827957,0.052644656,0.183914483,0.090515166,0.078175704,0.102854628,0.158663366,0.150696755,0.166629978,0.086204752,0.08006932,0.092340183,0.069204418,0.066689215,0.07171962,,,,0.100713719,0.08410287,0.117324568,0.147,,,0.114,0.182,0.316,,,0.271,0.36,8.5,0.038549755,0.094,,,0.21,,,0.175,0.248,0.944821528,621668,657974,,,0.195324228,,,0.164400704,0.225817365,0.328947368,100,304,0.300476017,0.357550886,586.7,3861,658046,,,16.25665856,2414,148493,15.60814551,16.90517162,,,,4.413928396,2.908806626,6.422034076,41.2857225,38.26581432,44.30563068,29.87265442,27.73895913,32.00634971,8.46788584,7.874755439,9.061016242,,,,16.67633411,13.62838481,19.72428341,0.06353304,35390,557033,0.057575593,0.069490487,0.000936105,616,658046,,,1068.256494,0.000796561,525,659083,,,1255.396191,0.004852196,3198,659083,,,206.0922452,2193,,,,,5260,882,3879,2062,2094,0.46,,,,,0.17,0.29,0.37,0.33,0.47,0.49,,,,,0.27,0.52,0.34,0.36,0.5,0.924139899,404801,438030,0.920327278,0.92795252,0.730599836,138182,189135,0.713143291,0.748056382,0.034928546,12558,359534,,,0.135,20340,,0.111170213,0.158829787,0.325136612,0.172205396,0.478067828,0.052498419,0.010638645,0.094358192,0.38266674,0.33311993,0.43221355,0.255965537,0.225667617,0.286263456,0.063855591,0.055023229,0.072687954,4.084384037,141238,34580,3.949314561,4.219453513,0.233053279,36144,155089,0.21754996,0.248556598,11.99004325,789,658046,,,67.39743639,2208,3276089,64.58618351,70.20868928,100.0545752,49.94688346,179.025273,20.55479254,12.88157905,31.12020292,109.6587696,98.15376682,121.1637723,45.95601113,38.92243045,52.98959181,67.38226971,64.09692436,70.66761506,,,,8.1,,,,,1,,,,,0.123817888,30310,244795,0.11762491,0.130010867,0.102055952,0.096064633,0.10804727,0.020384403,0.017566123,0.023202684,0.00921179,0.007183675,0.011239904,0.760380867,255545,336075,0.752548117,0.768213618,0.728125,0.652939448,0.803310552,0.76563773,0.727264542,0.804010917,0.692471258,0.659523101,0.725419416,0.705982447,0.681470119,0.730494774,0.805695729,0.796856742,0.814534716,0.217,,336075,0.207847997,0.226152003,78.69839063,,,78.48639432,78.91038694,73.93151049,70.89469342,76.96832756,88.02380914,85.18721925,90.86039904,71.3865641,70.62788507,72.14524314,80.90853149,79.64288955,82.17417344,79.51715156,79.28908901,79.74521411,,,,326.0886813,7125,1860979,318.3378712,333.8394915,509.5026145,352.8453718,711.978835,149.9192029,119.0574873,186.3358807,661.800281,623.1714819,700.4290802,300.1822598,270.4247103,329.9398094,294.8452981,286.590788,303.0998081,,,,49.46183219,343,693464,44.2272839,54.69638049,,,,41.34965266,19.8287657,76.04348347,115.7142341,93.72890109,141.306885,48.30073034,36.67676958,62.43989453,37.22101794,31.43545323,43.00658265,,,,5.782187511,345,59666,5.172034589,6.392340432,,,,,,,11.61243498,9.406109618,14.18077065,6.565596276,4.946105643,8.546026021,4.097630501,3.464670994,4.730590007,,,,15.77060932,9.883356898,23.87689203,0.098,,,0.084,0.114,0.161,,,0.14,0.184,0.088,,,0.075,0.101,200.3,1097,547616,,,0.094,61290,,,,0.038549755,23230.93032,602622,,,16.71979,330,1973709,14.91581747,18.52376253,,,,,,,36.85057352,28.78060365,46.48198428,15.57639535,10.78710659,21.76645124,14.52739735,12.55783042,16.49696428,,,,0.32,,,0.306,0.334,0.076779194,30909,402570,0.068438768,0.085119619,0.030410035,4926,161986,0.023261099,0.037558972,0.002486789,1639,659083,,,402.1250763,0.849208085,6133.83,7223,,,0.068870839,2408,34964,0.053097143,0.084644535,3.120932969,,,,,,3.284476704,2.473370598,2.729566131,3.397959285,3.018324656,,,,,,3.379466782,2.230687409,2.511590182,3.341022929,0.246703859,,,,,-2374.953764,,,,,0.803911686,49447,61508,0.777310108,0.830513265,76923,,,73671.42553,80174.57447,67841,56301.42553,79380.57447,83654,73794.42553,93513.57447,41936,39387.40426,44484.59575,60702,56884.46809,64519.53192,82261,80790.70213,83731.29787,,,,,,0.497525572,49563,99619,,,59.05067895,,,,,0.31948832,,76923,,,7.196268254,307,42661,,,4.083755633,186,4554631,3.49686207,4.670649195,,,,,,,23.58249907,19.05008866,28.11490947,6.13190964,4.137173685,8.753682292,1.432813153,1.056443311,1.899702368,,,,11.09119487,366,3276089,9.933732586,12.24865715,11.17185766,,,,,,,7.910502629,5.014580096,11.86963796,8.001683243,5.273159677,11.64202901,11.92259512,10.52022093,13.3249693,,,,8.058389134,264,3276089,7.086308383,9.030469885,,,,,,,24.19405518,19.09356999,30.2384178,7.846148242,5.213708526,11.33986879,6.296239311,5.291973161,7.30050546,,,,9.726364221,443,4554631,8.820621742,10.6321067,,,,,,,16.09959071,12.57391391,20.30744302,7.971482532,5.668503342,10.89727904,9.492387135,8.449066125,10.53570815,,,,25.06535948,,61200,,,1534,,0.773776535,361048,466605,,,0.766,,,,,149.3190469,,,,,0.700075981,176905,252694,0.692454275,0.707697687,0.108911807,27066,248513,0.102547629,0.115275986,0.898086223,226941,252694,0.891429984,0.904742461,659083,,,,,0.231975335,152891,659083,,,0.151056847,99559,659083,,,0.098849462,65150,659083,,,0.007085602,4670,659083,,,0.035302079,23267,659083,,,0.000878493,579,659083,,,0.113183013,74597,659083,,,0.722827019,476403,659083,,,0.026913369,16569,615642,0.024250462,0.029576275,0.50278493,331377,659083,,,0.161886336,106517,657974,, -26,083,26083,MI,Keweenaw County,2024,1,10823.08612,40,5415,4672.640386,21325.7943,1,,,,2,,,,2,,,,2,,,,2,11294.1314,4876.004304,22253.94129,1,,,,2,,0.12,,,0.099,0.144,3.158053912,,,2.398601614,3.990442562,4.985624162,,,3.925711663,6.107628317,,,,,,0,,,,,,,,,,,,,,,,,,,,,,0.15,,,0.113,0.19,0.334,,,0.253,0.413,8,0.072424227,0.1,,,0.184,,,0.146,0.231,0.76686217,1569,2046,,,0.155706158,,,0.123114331,0.190291444,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.045824095,62,1353,0.037483669,0.05416452,,0,2107,,,,0,0,2180,,,-2180,0.000458716,1,2180,,,2180,1589,,,,,,,,,1597,0.43,,,,,,,,,0.44,0.26,,,,,,,,,0.26,0.980968858,1701,1734,0.960944823,1,0.556650246,226,406,0.410049947,0.703250546,0.060840708,55,904,,,0.16,55,,0.099234043,0.220765957,,,,,,,,,,,,,0.096345515,0,0.221248317,3.925852593,115000,29293,2.872312036,4.979393149,0.290734824,91,313,0.089481225,0.491988424,0,0,2107,,,104.1666667,11,10560,51.99962469,186.3829405,,,,,,,,,,,,,108.0762429,53.95127105,193.3782522,,,,4.8,,,,,0,,,,,0.111111111,120,1080,0.070038905,0.152183317,0.089719626,0.041817527,0.137621726,0.017592593,0,0.043000351,0.009259259,0,0.029767356,0.720930233,558,774,0.647250017,0.794610448,,,,,,,,,,,,,0.64520202,0.515489354,0.774914687,0.285,,774,0.203952445,0.366047555,76.98166937,,,71.31897761,82.64436113,,,,,,,,,,,,,76.5488318,70.70511893,82.39254466,,,,404.3428953,40,5415,253.3995398,612.1800028,,,,,,,,,,,,,414.4657327,256.560821,633.5548993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.095,,,0.079,0.111,0.157,,,0.133,0.183,0.076,,,0.063,0.089,,,,,,0.1,210,,,,0.072424227,156.1466344,2156,,,,,,,,,,,,,,,,,,,,,,,,,,0.315,,,0.294,0.335,0.050147493,51,1017,0.039424088,0.060870897,0.031339031,11,351,0.018232648,0.044445414,0,0,2180,,,-2180,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1.141924345,51591,45179,0.797894474,1.485954217,57103,,,48845.97872,65360.02128,,,,,,,,,,,,,54063,44023.51064,64102.48936,,,,,,0.769230769,60,78,,,,,,,,0.328966955,,57103,,,,,81,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,100,,,-888,,0.877183099,1557,1775,,,0.331,,,,,0.894613399,,,,,0.933333333,994,1065,0.903447693,0.963218974,0.099229287,103,1038,0.047124328,0.151334247,0.820657277,874,1065,0.73973193,0.901582624,2180,,,,,0.158715596,346,2180,,,0.360091743,785,2180,,,0.003211009,7,2180,,,0.004587156,10,2180,,,0.002293578,5,2180,,,0,0,2180,,,0.015137615,33,2180,,,0.958256881,2089,2180,,,0.00146771,3,2044,0,0.026410976,0.493119266,1075,2180,,,1,2046,2046,, -26,085,26085,MI,Lake County,2024,1,11221.08022,279,31758,8544.942996,13897.21745,0,,,,2,,,,2,16979.80538,6826.762412,34984.88867,1,,,,2,11368.99357,8346.152449,14391.83469,,,,,2,,0.213,,,0.182,0.249,4.499579704,,,3.532177587,5.558466601,5.970287437,,,4.759162909,7.266005899,0.106038292,72,679,0.082879708,0.129196876,0,,,,,,,0.303571429,0.183142508,0.42400035,,,,0.080843585,0.058445163,0.103242008,,,,,,,0.253,,,0.206,0.303,0.401,,,0.32,0.491,7.1,0.00596877,0.171,,,0.296,,,0.244,0.355,0.800099206,9678,12096,,,0.134889497,,,0.106562436,0.168681687,0.125,1,8,0.007330353,0.353459145,138.1,17,12308,,,32.71291596,58,1773,24.8402886,42.28902975,,,,,,,66.66666667,33.2797598,119.2850819,,,,31.27272727,22.63222779,42.12415841,,,,,,,0.080394922,684,8508,0.068480029,0.092309816,0.000081248,1,12308,,,12308,0.000873432,11,12594,,,1144.909091,0.000873432,11,12594,,,1144.909091,1588,,,,,,,,,1597,0.41,,,,,,,0.38,,0.41,0.33,,,,,,,0.22,,0.34,0.822547189,7931,9642,0.803896595,0.841197784,0.426722338,1022,2395,0.34027449,0.513170186,0.070527671,274,3885,,,0.323,569,,0.203851064,0.442148936,,,,,,,0.375690608,0.169232404,0.582148811,0.130434783,0.020959857,0.239909709,0.245614035,0.185374383,0.305853688,4.195069614,84065,20039,3.742005613,4.648133616,0.226528384,415,1832,0.159799917,0.293256852,8.12479688,10,12308,,,90.54022333,54,59642,68.01660235,118.1353516,,,,,,,,,,,,,97.94319295,72.69532564,129.1258897,,,,6.4,,,,,0,,,,,0.138415246,690,4985,0.108735739,0.168094752,0.125434116,0.096437998,0.154430235,0.006820461,0,0.013844762,0.008826479,0.002750958,0.014902001,0.767217281,3019,3935,0.719947863,0.814486699,,,,,,,,,,,,,0.760343901,0.701338018,0.819349784,0.461,,3935,0.399054011,0.522945989,75.19633571,,,73.25017606,77.14249536,,,,,,,,,,,,,74.77593515,72.6230906,76.92877971,,,,487.8128257,279,31758,416.3589294,559.266722,,,,,,,645.2718625,333.4213874,1127.160085,,,,488.0503319,411.2444436,564.8562201,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.143,,,0.122,0.165,0.2,,,0.174,0.229,0.112,,,0.095,0.131,220.4,24,10888,,,0.171,2100,,,,0.00596877,68.87363322,11539,,,,,,,,,,,,,,,,,,,,,,,,,,0.364,,,0.349,0.379,0.091563313,598,6531,0.076073952,0.107052675,0.044422984,92,2071,0.030125112,0.058720856,0.000794029,10,12594,,,1259.4,,,,,,,,,,,2.741102124,,,,,,,,,2.727307829,2.466620554,,,,,,,,,2.476541528,0.017004239,,,,,-12257.75,,,,,0.865744649,40000,46203,0.723124767,1.00836453,48545,,,43925.59575,53164.40426,53566,52817.74468,54314.25532,,,,31000,20175.31915,41824.68085,54792,32030.97872,77553.02128,45856,43034.55319,48677.44681,,,,,,0.977272727,430,440,,,43.38199372,,,,,0.356164384,,48545,,,6.085192698,3,493,,,,,,,,,,,,,,,,,,,,,,,,,,24.0507023,12,59642,11.5332466,44.23009784,20.12004963,,,,,,,,,,,,,24.4973932,11.2017681,46.5036831,,,,,,,,,,,,,,,,,,,,,,,,,,,16.95695356,14,82562,9.270524305,28.45088675,,,,,,,,,,,,,17.00559768,8.787040472,29.70535683,,,,47.14285714,,700,,,33,,0.643234995,6323,9830,,,0.259,,,,,4.982215573,,,,,0.842382941,3832,4549,0.821069846,0.863696037,0.127038824,553,4353,0.098777609,0.155300039,0.74367993,3383,4549,0.712597655,0.774762204,12594,,,,,0.143560426,1808,12594,,,0.287994283,3627,12594,,,0.104017786,1310,12594,,,0.010401779,131,12594,,,0.003255519,41,12594,,,0.000317612,4,12594,,,0.03763697,474,12594,,,0.817214547,10292,12594,,,0.001692334,20,11818,0,0.008308912,0.446720661,5626,12594,,,1,12096,12096,, -26,087,26087,MI,Lapeer County,2024,1,8405.405245,1455,244543,7649.531665,9161.278825,0,,,,2,,,,2,,,,2,8564.793552,5367.51052,12967.20037,1,8230.29898,7457.387005,9003.210956,,,,,2,,0.152,,,0.128,0.179,3.752118748,,,2.942868045,4.643542205,5.112931,,,4.085307165,6.178157713,0.076993083,423,5494,0.069943879,0.084042287,0,,,,,,,,,,0.109271523,0.074084805,0.144458242,0.074727453,0.067471401,0.081983505,,,,,,,0.185,,,0.149,0.228,0.369,,,0.297,0.446,8.4,0.020691751,0.106,,,0.226,,,0.184,0.273,0.689378124,61092,88619,,,0.175345237,,,0.140299047,0.214649498,0.271186441,16,59,0.203621976,0.341406716,190.9,169,88513,,,10.98540744,201,18297,9.466699684,12.5041152,,,,,,,,,,13.07639367,7.872843196,20.42040852,10.14249269,8.585426865,11.69955851,,,,25.75107296,13.30595517,44.98194216,0.064897508,4578,70542,0.056557082,0.073237933,0.000361529,32,88513,,,2766.03125,0.000540662,48,88780,,,1849.583333,0.001531877,136,88780,,,652.7941177,2957,,,,,,,,9039,2862,0.4,,,,,,,,0.3,0.4,0.41,,,,,,,,0.37,0.41,0.919797688,58558,63664,0.910664769,0.928930607,0.602191809,11924,19801,0.564403591,0.639980026,0.042857854,1721,40156,,,0.14,2416,,0.106638298,0.173361702,,,,,,,,,,0.292151163,0.163100272,0.421202054,0.11389327,0.092321496,0.135465045,3.954809611,136785,34587,3.607292779,4.302326442,0.184958436,3293,17804,0.148897325,0.221019548,9.264175884,82,88513,,,70.23413652,309,439957,62.40299488,78.06527816,,,,,,,,,,65.82349899,35.98631942,110.4406466,69.96320729,61.7973605,78.12905409,,,,8.5,,,,,1,,,,,0.112661575,3835,34040,0.099359534,0.125963615,0.097798789,0.085517656,0.110079922,0.01512926,0.010287944,0.019970575,0.003084606,0.001186856,0.004982357,0.803866301,32227,40090,0.786301773,0.821430829,,,,,,,,,,0.506446991,0.393915985,0.618977998,0.77362973,0.750923676,0.796335785,0.542,,40090,0.510051195,0.573948805,76.02481117,,,75.43640486,76.61321748,,,,,,,,,,75.1583733,71.91095664,78.40578995,76.16427986,75.56406188,76.76449785,,,,404.0529756,1455,244543,381.5632311,426.5427201,,,,,,,,,,440.5721976,321.3563841,589.5202636,400.7067666,377.5198922,423.893641,,,,55.55695851,44,79198,40.3677711,74.58262365,,,,,,,,,,,,,49.3848679,34.20045664,69.01040292,,,,5.819239862,32,5499,3.980355758,8.215030384,,,,,,,,,,,,,5.357142857,3.530390899,7.794361596,,,,,,,0.11,,,0.094,0.127,0.171,,,0.147,0.197,0.088,,,0.074,0.103,85,65,76463,,,0.106,9370,,,,0.020691751,1827.474735,88319,,,18.9569866,50,263755,14.07024084,24.99242352,,,,,,,,,,,,,18.65153544,13.60455793,24.95722187,,,,0.344,,,0.326,0.361,0.073759187,3904,52929,0.063035783,0.084482591,0.03937557,734,18641,0.028652166,0.050098974,0.000709619,63,88780,,,1409.206349,0.851571582,791.11,929,,,0.096199525,405,4210,0.060697682,0.131701368,3.09440047,,,,,,,,2.735440116,3.131984204,2.912634144,,,,,,,,2.699380124,2.937724026,0.069676639,,,,,-449.59762,,,,,0.683819749,45221,66130,0.626510121,0.741129377,72737,,,66833.17021,78640.82979,84313,73369.17021,95256.82979,,,,47250,23856.29787,70643.70213,60720,44070.12766,77369.87234,75948,72952.59575,78943.40426,,,,,,0.470603675,5379,11430,,,,,,,,0.282071023,,72737,,,7.502930832,32,4265,,,,,,,,,,,,,,,,,,,,,,,,,,14.21082026,72,439957,10.94406322,18.14690022,16.36523569,,,,,,,,,,,,,14.98380413,11.4614229,19.24732325,,,,11.81933689,52,439957,8.827246117,15.49948785,,,,,,,,,,,,,12.65292047,9.420930371,16.63625369,,,,11.67561256,72,616670,9.135447758,14.70350172,,,,,,,,,,,,,10.43328182,7.94229752,13.45817339,,,,13.2,,7500,,,99,,0.767101333,52650,68635,,,0.783,,,,,25.01989257,,,,,0.855398814,29288,34239,0.845739745,0.865057884,0.096026589,3207,33397,0.082606495,0.109446683,0.866672508,29674,34239,0.850869454,0.882475562,88780,,,,,0.19724037,17511,88780,,,0.20257941,17985,88780,,,0.012637982,1122,88780,,,0.00548547,487,88780,,,0.00711872,632,88780,,,0.000135166,12,88780,,,0.052241496,4638,88780,,,0.909348953,80732,88780,,,0.009556476,808,84550,0.005685448,0.013427503,0.484624916,43025,88780,,,0.859499656,76168,88619,, -26,089,26089,MI,Leelanau County,2024,1,5332.795859,238,57395,3968.660863,6696.930854,0,30630.94955,16309.69058,52379.8566,1,,,,2,,,,2,,,,2,4279.987548,2981.295309,5578.679787,,,,,2,,0.112,,,0.091,0.136,2.967101091,,,2.261178726,3.766169635,4.80748872,,,3.845412785,5.839648899,0.065753425,72,1095,0.051072989,0.080433861,0,,,,,,,,,,,,,0.061571125,0.04622072,0.076921531,,,,,,,0.136,,,0.099,0.174,0.327,,,0.252,0.409,8.9,0.011366013,0.086,,,0.172,,,0.134,0.213,0.656697009,14645,22301,,,0.160403283,,,0.128805098,0.197836071,0.214285714,3,14,0.080830645,0.373240293,198.9,45,22623,,,6.44028103,22,3416,4.036089834,9.750662877,,,,,,,,,,,,,5.630630631,3.151421221,9.286868946,,,,,,,0.072200491,1089,15083,0.061477086,0.082923895,0.000442028,10,22623,,,2262.3,0.000437254,10,22870,,,2287,0.00056843,13,22870,,,1759.230769,3073,,,,,13266,,,,2082,0.51,,,,,0.3,,,,0.52,0.55,,,,,0.13,,,0.29,0.56,0.9624758,16903,17562,0.953246614,0.971704986,0.766,3064,4000,0.69356058,0.83843942,0.042621359,439,10300,,,0.101,344,,0.065255319,0.136744681,0.563636364,0.202198018,0.925074709,,,,,,,0.5830721,0.307705497,0.858438703,0.038545455,0.022649189,0.05444172,3.941246077,153212,38874,3.432710679,4.449781475,0.169588962,590,3479,0.115653496,0.223524428,14.58692481,33,22623,,,83.98145105,92,109548,67.70090259,102.9957945,,,,,,,,,,,,,80.08515383,63.40417047,99.80999662,,,,6.1,,,,,0,,,,,0.1125,1035,9200,0.091920438,0.133079562,0.09911194,0.078583303,0.119640576,0.009673913,0.004333539,0.015014287,0.004782609,0,0.009871345,0.770960929,7301,9470,0.748443246,0.793478613,,,,,,,,,,,,,0.734640862,0.682217984,0.787063741,0.297,,9470,0.256947522,0.337052478,81.66737456,,,80.46804553,82.86670359,,,,,,,,,,,,,82.53884917,81.36275756,83.71494079,,,,229.4059657,238,57395,192.749192,266.0627395,1161.73323,688.5167388,1836.039356,,,,,,,,,,196.0382831,161.2475152,230.8290509,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.089,,,0.075,0.105,0.148,,,0.126,0.172,0.073,,,0.06,0.087,34.7,7,20201,,,0.086,1910,,,,0.011366013,246.7334076,21708,,,,,,,,,,,,,,,,,,,,,,,,,,0.319,,,0.3,0.339,0.078005005,904,11589,0.064898622,0.091111388,0.053731343,198,3685,0.038241982,0.069220705,0.000524705,12,22870,,,1905.833333,0.820400943,173.925,212,,,0.183233533,153,835,0.071639288,0.294827778,3.016316585,,,,,,,,,,2.811208689,,,,,,,,,,0.153589221,,,,,5958.221,,,,,0.888420522,52901,59545,0.752625183,1.024215862,89007,,,78287.17021,99726.82979,36224,26981.61702,45466.38298,,,,,,,66926,24348.12766,109503.8723,84151,78664.19149,89637.80851,,,,,,0.459895833,883,1920,,,,,,,,0.297673217,,89007,,,8.353221957,7,838,,,,,,,,,,,,,,,,,,,,,,,,,,15.9241604,18,109548,8.70588667,26.71803531,16.43115347,,,,,,,,,,,,,16.32503577,8.435384201,28.51655213,,,,10.04126045,11,109548,5.012561039,17.96658863,,,,,,,,,,,,,11.15109737,5.56658763,19.95239344,,,,13.04682506,20,153294,7.969339691,20.14976314,,,,,,,,,,,,,10.85352088,6.074633247,17.90123214,,,,19.28571429,,1400,,,27,,0.943343567,16900,17915,,,0.534,,,,,6.39254845,,,,,0.898875189,8311,9246,0.881465473,0.916284906,0.098240956,888,9039,0.07764669,0.118835221,0.90709496,8387,9246,0.892799834,0.921390086,22870,,,,,0.15080892,3449,22870,,,0.340445999,7786,22870,,,0.005334499,122,22870,,,0.031832094,728,22870,,,0.006296458,144,22870,,,0.000699607,16,22870,,,0.045474421,1040,22870,,,0.902623524,20643,22870,,,0.003281871,71,21634,0,0.008022783,0.501136861,11461,22870,,,0.875835164,19532,22301,, -26,091,26091,MI,Lenawee County,2024,1,7750.633337,1563,272163,7119.639253,8381.627421,0,,,,2,,,,2,9675.54636,6574.064325,13733.66573,,9580.324946,7251.602347,11909.04755,,7635.598439,6955.713912,8315.482967,,,,,2,,0.151,,,0.127,0.179,3.61289396,,,2.903748497,4.422296873,5.279691325,,,4.387208086,6.255391294,0.078285459,526,6719,0.071862391,0.084708527,0,,,,,,,0.153846154,0.088468229,0.219224078,0.083916084,0.061193993,0.106638175,0.075781115,0.068966015,0.082596215,,,,0.096153846,0.049891851,0.142415841,0.182,,,0.144,0.223,0.352,,,0.292,0.419,7.5,0.103063561,0.108,,,0.235,,,0.192,0.284,0.722116613,71795,99423,,,0.166500772,,,0.134314824,0.202556994,0.338028169,24,71,0.277309508,0.398742273,242.5,240,98956,,,15.82235192,347,21931,14.15755075,17.4871531,,,,,,,22.59887006,11.67716593,39.47567806,17.22925457,12.74629738,22.77798825,15.00906208,13.20194334,16.81618081,,,,23.52941177,13.44909184,38.21029059,0.061963473,4699,75835,0.053623048,0.070303899,0.000222321,22,98956,,,4498,0.000486978,48,98567,,,2053.479167,0.002688527,265,98567,,,371.9509434,3254,,,,,,9027,5389,4047,3133,0.48,,,,,,0.27,0.45,0.45,0.48,0.45,,,,,,0.42,0.35,0.35,0.45,0.911294036,63324,69488,0.898724588,0.923863485,0.596081451,13934,23376,0.559066034,0.633096869,0.046688697,2091,44786,,,0.153,3004,,0.112489362,0.193510638,,,,,,,0.43902439,0.112001162,0.766047619,0.263936291,0.192931154,0.334941429,0.115801946,0.091459033,0.140144858,3.876249265,118683,30618,3.625764007,4.126734524,0.1938205,3952,20390,0.16235522,0.225285781,11.82343668,117,98956,,,74.98414969,369,492104,67.33325262,82.63504676,,,,,,,80.26970621,38.49244418,147.6188477,68.65437426,45.62033311,99.22468601,76.44073139,68.1300004,84.75146237,,,,8.4,,,,,1,,,,,0.105698411,4090,38695,0.093120951,0.11827587,0.092672751,0.079678926,0.105666576,0.010466469,0.006134277,0.01479866,0.005168626,0.001946017,0.008391236,0.822141857,35237,42860,0.807994994,0.83628872,,,,,,,,,,0.791465677,0.725854996,0.857076359,0.786699989,0.76702775,0.806372228,0.397,,42860,0.370517826,0.423482175,76.65213755,,,76.13704341,77.16723169,,,,,,,73.47462924,67.77360395,79.17565453,75.5467294,73.3136371,77.7798217,76.70305692,76.15593463,77.25017921,,,,400.8176067,1563,272163,379.6781135,421.9571,,,,,,,780.7202587,530.4615377,1108.170088,492.5360625,396.8932732,588.1788518,396.2318947,373.9146101,418.5491792,,,,35.47052185,33,93035,24.41627514,49.81380047,,,,,,,,,,,,,34.9561032,22.83448718,51.21879036,,,,4.659289458,32,6868,3.18695054,6.577526511,,,,,,,,,,,,,4.535528305,2.988941732,6.598955559,,,,,,,0.111,,,0.095,0.131,0.168,,,0.145,0.192,0.089,,,0.075,0.104,84.9,72,84800,,,0.108,10750,,,,0.103063561,10295.22519,99892,,,25.74394933,76,295215,20.28330399,32.22239147,,,,,,,,,,48.18503052,24.8979084,84.16955127,23.17296854,17.64033732,29.89144107,,,,0.359,,,0.343,0.373,0.072664796,4039,55584,0.061941391,0.0833882,0.033556732,716,21337,0.024024818,0.043088647,0.00079134,78,98567,,,1263.679487,0.862664618,982.575,1139,,,0.083572385,437,5229,0.055237844,0.111906926,3.063209893,,,,,,,3.00295314,2.848714156,3.090779393,2.930188089,,,,,,,2.697090714,2.607946777,2.973451489,0.103211624,,,,,666.4032455,,,,,0.828833899,45653,55081,0.773323426,0.884344372,67486,,,62194.59575,72777.40426,,,,135938,19478.25532,252397.7447,17309,7607.893617,27010.10638,44888,37472.17021,52303.82979,67528,65615.65957,69440.34043,,,,,,0.483665118,6973,14417,,,64.70808565,,,,,0.292742198,,67486,,,9.589566552,50,5214,,,2.321596214,16,689181,1.32699283,3.770126802,,,,,,,,,,,,,1.676333523,0.803867083,3.082837034,,,,12.82352837,65,492104,9.808983109,16.47235866,13.20859005,,,,,,,,,,,,,13.8805541,10.45673296,18.0674491,,,,8.941199421,44,492104,6.496689187,12.00314289,,,,,,,,,,,,,9.643292267,6.920193023,13.08221484,,,,14.94527562,103,689181,12.05897617,17.83157508,,,,,,,,,,,,,14.91936836,11.98147788,18.35956657,,,,24.57831325,,8300,,,204,,0.698442816,53375,76420,,,0.725,,,,,43.40351716,,,,,0.786413297,30376,38626,0.770634651,0.802191943,0.113363224,4273,37693,0.099963981,0.126762467,0.859550562,33201,38626,0.84432846,0.874772664,98567,,,,,0.203191738,20028,98567,,,0.203709152,20079,98567,,,0.024227175,2388,98567,,,0.005914759,583,98567,,,0.005082837,501,98567,,,0.000466688,46,98567,,,0.088619924,8735,98567,,,0.859009608,84670,98567,,,0.010089639,950,94156,0.006167341,0.014011936,0.491868475,48482,98567,,,0.568610885,56533,99423,, -26,093,26093,MI,Livingston County,2024,1,5380.761388,2118,538729,4996.501453,5765.021323,0,,,,2,,,,2,,,,2,4896.717142,3104.098623,7347.479979,1,5470.387642,5067.785741,5872.989544,,,,,2,,0.112,,,0.093,0.133,2.947946174,,,2.312787718,3.602645957,4.862504111,,,4.066615322,5.694212135,0.064372369,780,12117,0.060002587,0.068742152,0,,,,0.092857143,0.044780121,0.140934164,,,,0.066091954,0.039988811,0.092195097,0.063588927,0.059091062,0.068086792,,,,0.088,0.038336214,0.137663786,0.139,,,0.107,0.175,0.297,,,0.248,0.349,8.9,0.036188841,0.076,,,0.168,,,0.136,0.202,0.874552526,169546,193866,,,0.199381639,,,0.167472012,0.235306275,0.279069767,24,86,0.22354265,0.336223829,165.1,322,195014,,,3.838261919,159,41425,3.241649738,4.434874101,,,,,,,,,,,,,3.671553329,3.063359661,4.279746997,,,,,,,0.040724352,6470,158873,0.034766905,0.046681799,0.000492272,96,195014,,,2031.395833,0.000627036,123,196161,,,1594.804878,0.002339915,459,196161,,,427.3660131,2612,,,,,,,,,2637,0.46,,,,,,0.35,0.25,,0.46,0.51,,,,,,0.57,0.45,0.34,0.51,0.960844136,132903,138319,0.956570299,0.965117972,0.763889517,33796,44242,0.734625757,0.793153277,0.028499099,2927,102705,,,0.053,2039,,0.036319149,0.069680851,0.385964912,0,0.800512148,0.156342183,0,0.38044608,0.090909091,0,0.343830299,0.029878049,0,0.070367711,0.051821908,0.037477928,0.066165888,3.794381875,173168,45638,3.677691019,3.91107273,0.136294486,5465,40097,0.117567564,0.155021408,7.127693396,139,195014,,,68.9426058,662,960219,63.69072609,74.19448552,,,,,,,,,,52.24240476,27.81688029,89.33610319,71.0373444,65.54224851,76.53244029,,,,9.1,,,,,1,,,,,0.089980111,6560,72905,0.080588288,0.099371934,0.081918412,0.073344851,0.090491974,0.007063987,0.005080459,0.009047516,0.004937933,0.002374797,0.007501069,0.800903209,77855,97209,0.789905732,0.811900685,,,,0.810043668,0.677471374,0.942615962,0.695579183,0.620452749,0.770705617,0.70532491,0.625812935,0.784836884,0.743864325,0.725965162,0.761763489,0.511,,97209,0.493087987,0.528912013,80.00810794,,,79.63871302,80.37750286,,,,116.0143155,66.53364757,165.4949835,,,,82.18289869,78.68334679,85.68245058,79.88606832,79.50639572,80.26574093,,,,271.9352922,2118,538729,259.5558357,284.3147486,,,,,,,,,,251.898218,171.1526179,357.5494134,274.1920194,261.3961826,286.9878562,,,,30.98504268,55,177505,23.34217457,40.33129206,,,,,,,,,,,,,33.28730644,25.00644909,43.43271427,,,,2.946954813,36,12216,2.064010922,4.079827643,,,,,,,,,,,,,2.80185623,1.916467587,3.955385,,,,,,,0.089,,,0.075,0.104,0.152,,,0.13,0.174,0.071,,,0.06,0.083,56,94,167818,,,0.076,14650,,,,0.036188841,6548.986011,180967,,,20.19525532,117,579344,16.53583337,23.85467727,,,,,,,,,,,,,20.93052717,17.08829316,24.77276119,,,,0.312,,,0.293,0.329,0.047050888,5580,118595,0.039901951,0.054199824,0.023108504,985,42625,0.017151058,0.029065951,0.00049959,98,196161,,,2001.642857,0.914053398,2071.245,2266,,,0.052055635,509,9778,0.032384107,0.071727163,3.294398628,,,,,,,,3.042230445,3.303295006,3.197304738,,,,,,,,2.822446286,3.213735243,0.025235379,,,,,3648.329,,,,,0.712388276,57068,80108,0.680444895,0.744331656,101227,,,94831.08511,107622.9149,68967,47980.10638,89953.89362,106944,69626.55319,144261.4468,49200,13595.91489,84804.08511,86786,83538,90034,96589,94253.68085,98924.31915,,,,,,0.22172702,5572,25130,,,71.19598986,,,,,0.263546287,,101227,,,8.51948052,82,9625,,,1.047779493,14,1336159,0.572830799,1.757995951,,,,,,,,,,,,,1.032322002,0.549667989,1.765302063,,,,14.51892182,149,960219,12.06831809,16.96952554,15.51729345,,,,,,,,,,,,,14.65048976,12.10499225,17.19598727,,,,7.81071818,75,960219,6.143625329,9.790802874,,,,,,,,,,,,,7.85615491,6.135722164,9.909470441,,,,8.756442908,117,1336159,7.169757379,10.34312844,,,,,,,,,,,,,8.814441708,7.174647335,10.45423608,,,,7.964071856,,16700,,,133,,0.856401279,127197,148525,,,0.806,,,,,43.04896414,,,,,0.858753892,64270,74841,0.848947072,0.868560711,0.081945928,6059,73939,0.073618115,0.090273742,0.916663326,68604,74841,0.908664857,0.924661796,196161,,,,,0.20009584,39251,196161,,,0.197832393,38807,196161,,,0.006622111,1299,196161,,,0.004837863,949,196161,,,0.010267077,2014,196161,,,0.000530177,104,196161,,,0.028033095,5499,196161,,,0.937913245,183982,196161,,,0.002748219,508,184847,0.00181676,0.003679678,0.495083121,97116,196161,,,0.395128594,76602,193866,, -26,095,26095,MI,Luce County,2024,1,10345.31422,110,15953,6523.284215,14167.34423,0,,,,2,,,,2,,,,2,,,,2,12578.21769,7750.972349,17405.46302,,,,,2,,0.178,,,0.15,0.207,3.956948135,,,3.107384983,4.863137639,5.358711072,,,4.249785657,6.521546171,0.092485549,32,346,0.061958717,0.123012381,0,,,,,,,,,,,,,0.091872792,0.058219337,0.125526246,,,,,,,0.214,,,0.172,0.257,0.391,,,0.309,0.478,6.6,0.109163465,0.148,,,0.247,,,0.199,0.297,0.657613785,3511,5339,,,0.176349317,,,0.140775003,0.218203155,0.6,3,5,0.381076261,0.751373291,94.2,5,5309,,,28.63688431,25,873,18.53228161,42.27369038,,,,,,,,,,,,,24.75928473,14.67392129,39.13034425,,,,,,,0.070799149,233,3291,0.058884256,0.082714043,0.001318516,7,5309,,,758.4285714,0.000562852,3,5330,,,1776.666667,0.001876173,10,5330,,,533,2541,,,,,13636,,,,2241,0.48,,,,,,,,,0.48,0.18,,,,,0.14,,,,0.19,0.917575758,3785,4125,0.892704632,0.942446884,0.472006221,607,1286,0.374803237,0.569209204,0.062352386,132,2117,,,0.265,265,,0.168489362,0.361510638,0.032258065,0,0.332182556,,,,,,,,,,0.263093788,0.175642304,0.350545272,4.237673205,94195,22228,3.335401191,5.139945219,0.173095945,175,1011,0.102887699,0.24330419,18.83593897,10,5309,,,102.2933509,31,30305,69.50336901,145.1972463,,,,,,,,,,,,,123.4935911,82.70559612,177.3573966,,,,4.8,,,,,0,,,,,0.095132743,215,2260,0.057945031,0.132320456,0.081923419,0.0426478,0.121199039,0.003539823,0,0.016407052,0.011061947,0,0.026403497,0.757939308,1074,1417,0.680050917,0.8358277,,,,,,,,,,,,,0.79200542,0.754117278,0.829893562,0.121,,1417,0.070155364,0.171844636,75.55622125,,,72.71125559,78.40118691,,,,,,,,,,,,,73.66985644,70.31200774,77.02770514,,,,465.3894036,110,15953,370.9167648,559.8620425,,,,,,,,,,,,,533.8760743,418.4551114,649.2970372,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.122,,,0.105,0.141,0.173,,,0.149,0.199,0.105,,,0.089,0.123,127.8,6,4694,,,0.148,820,,,,0.109163465,723.8629351,6631,,,,,,,,,,,,,,,,,,,,,,,,,,0.364,,,0.348,0.379,0.083607908,203,2428,0.068118546,0.099097269,0.033076075,30,907,0.021161181,0.044990969,0.00206379,11,5330,,,484.5454546,,,,,,,,,,,2.493714155,,,,,,,,,2.62446279,2.327779058,,,,,,,,,2.359073581,,,,,,-5997.895,,,,,0.778524723,42386,54444,0.454035444,1.103014001,49371,,,42349.55319,56392.44681,28125,20561.42553,35688.57447,,,,,,,,,,51461,46469.85106,56452.14894,,,,,,0.605363985,316,522,,,,,,,,0.374896194,,49371,,,12.76595745,3,235,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,75,,400,,,30,,0.578784957,3001,5185,,,0.439,,,,,2.279321861,,,,,0.823728814,1701,2065,0.720901561,0.926556067,0.114114114,228,1998,0.062314037,0.165914192,0.801452785,1655,2065,0.72941238,0.873493189,5330,,,,,0.19249531,1026,5330,,,0.264727955,1411,5330,,,0.009756098,52,5330,,,0.068855535,367,5330,,,0.002251407,12,5330,,,0.001125704,6,5330,,,0.020450281,109,5330,,,0.862476548,4597,5330,,,0.007341577,38,5176,0,0.022030826,0.479174484,2554,5330,,,1,5339,5339,, -26,097,26097,MI,Mackinac County,2024,1,6594.760417,198,28717,4769.553037,8419.967797,0,6188.070184,3089.06234,11072.16688,1,,,,2,,,,2,,,,2,7173.446521,4665.10616,9681.786882,,,,,2,,0.176,,,0.15,0.203,4.01556094,,,3.178843926,4.938699433,5.574930719,,,4.464590229,6.718172918,0.069491525,41,590,0.048972527,0.090010524,0,,,,,,,,,,,,,0.059808612,0.037075551,0.082541674,,,,,,,0.213,,,0.174,0.253,0.367,,,0.289,0.447,6.1,0.139790101,0.154,,,0.24,,,0.194,0.286,0.727339856,7880,10834,,,0.152617105,,,0.120768381,0.188431684,0.266666667,4,15,0.129817183,0.413965161,247.6,27,10906,,,10.20408163,18,1764,6.047585476,16.12684822,,,,,,,,,,,,,11.61665053,6.002492845,20.29195068,,,,,,,0.116135938,868,7474,0.099455087,0.132816789,0.000641849,7,10906,,,1558,0.000822594,9,10941,,,1215.666667,0.002010785,22,10941,,,497.3181818,2134,,,,,,,,,2013,0.48,,,,,0.23,,,,0.52,0.28,,,,,0.16,,,,0.29,0.926321974,7883,8510,0.906853874,0.945790074,0.537071362,1159,2158,0.463344808,0.610797917,0.090855457,462,5085,,,0.211,343,,0.147851064,0.274148936,0.45508982,0.340879681,0.56929996,,,,,,,0.049180328,0,0.520917163,0.189949749,0.108855665,0.271043833,4.319045532,108421,25103,3.875366858,4.762724207,0.206079027,339,1645,0.146124279,0.266033776,17.42160279,19,10906,,,92.51892012,50,54043,68.66932579,121.9746622,,,,,,,,,,,,,101.7578672,72.69731217,138.5653336,,,,5.5,,,,,1,,,,,0.142314991,750,5270,0.111637297,0.172992684,0.116332378,0.086147378,0.146517378,0.010056926,0.002750649,0.017363203,0.033206831,0.013773608,0.052640055,0.630510847,2703,4287,0.59251796,0.668503734,0.762081784,0.668774093,0.855389476,,,,,,,,,,0.635267275,0.577856662,0.692677888,0.278,,4287,0.230132369,0.325867631,77.74913626,,,76.27368494,79.22458759,76.78001493,73.6442603,79.91576957,,,,,,,,,,77.58278837,75.63653775,79.52903899,,,,354.2491392,198,28717,296.4291039,412.0691745,433.4184527,292.42561,618.7317911,,,,,,,,,,356.9088844,284.8937046,428.9240642,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.124,,,0.106,0.141,0.182,,,0.157,0.206,0.103,,,0.087,0.119,92.5,9,9732,,,0.154,1660,,,,0.139790101,1553.487395,11113,,,,,,,,,,,,,,,,,,,,,,,,,,0.344,,,0.329,0.357,0.131226383,764,5822,0.109779574,0.152673191,0.063817664,112,1755,0.042370855,0.085264472,0.001096792,12,10941,,,911.75,,,,,,,,,,,2.947420306,,,,,,,,,2.910362757,2.69747106,,,,,,,,,2.756966091,0.084355179,,,,,-5462.894333,,,,,0.743233048,40391,54345,0.62352265,0.862943446,56942,,,50552.04255,63331.95745,48155,37859.34043,58450.65957,,,,,,,81083,71184.10638,90981.89362,62289,57486.10638,67091.89362,,,,,,0.555944056,636,1144,,,62.91498994,,,,,0.308243476,,56942,,,16.50943396,7,424,,,,,,,,,,,,,,,,,,,,,,,,,,28.09716087,14,54043,14.51821303,49.0800856,25.90529763,,,,,,,,,,,,,28.42600103,11.42872671,58.56842638,,,,,,,,,,,,,,,,,,,,,,,,,,,13.20079733,10,75753,6.330295429,24.27673629,,,,,,,,,,,,,,,,,,,22.85714286,,700,,,16,,0.794001132,7015,8835,,,0.345,,,,,6.096778352,,,,,0.760237275,3973,5226,0.708746993,0.811727558,0.119264159,577,4838,0.088924368,0.14960395,0.810562572,4236,5226,0.75087038,0.870254764,10941,,,,,0.151448679,1657,10941,,,0.301891966,3303,10941,,,0.034731743,380,10941,,,0.161868202,1771,10941,,,0.01087652,119,10941,,,0.000274198,3,10941,,,0.027511196,301,10941,,,0.718672882,7863,10941,,,0.007098321,74,10425,0,0.022180467,0.493921945,5404,10941,,,0.746723279,8090,10834,, -26,099,26099,MI,Macomb County,2024,1,8194.869344,13580,2428904,7977.025805,8412.712883,0,5233.003953,2928.872588,8631.04421,1,3612.826712,3001.310962,4224.342462,,12918.65562,12195.7824,13641.52883,,6197.999023,5030.227744,7365.770302,,7683.502014,7443.143619,7923.860408,,,,,2,,0.149,,,0.126,0.173,3.697576801,,,3.033243968,4.423145699,5.603571985,,,4.850523042,6.434872827,0.091603657,5791,63218,0.089354966,0.093852348,0,,,,0.103224129,0.09360836,0.112839898,0.14628821,0.139940794,0.152635626,0.077916296,0.066830917,0.089001674,0.076231951,0.07374187,0.078722031,,,,0.094134685,0.078733083,0.109536287,0.19,,,0.154,0.226,0.376,,,0.334,0.419,8,0.058525773,0.105,,,0.227,,,0.192,0.263,0.967569849,852639,881217,,,0.181451345,,,0.15492176,0.210156264,0.269076305,67,249,0.237063717,0.30180864,378,3314,876792,,,9.421357754,1643,174391,8.965792298,9.876923209,,,,2.089478859,1.217198435,3.345458065,24.34744462,22.49829376,26.19659547,14.01804303,11.28414209,16.75194396,6.203403795,5.764665531,6.642142059,,,,11.49114506,9.178718535,14.20897882,0.061016533,43748,716986,0.055059086,0.06697398,0.000542888,476,876792,,,1842,0.000938006,820,874195,,,1066.091463,0.002317561,2026,874195,,,431.488154,4109,,,,,,3350,7629,446,3896,0.43,,,,,,0.32,0.4,0.33,0.44,0.48,,,,,0.35,0.47,0.34,0.36,0.48,0.906310224,565282,623718,0.902772108,0.909848339,0.681940677,153601,225241,0.666818335,0.697063019,0.037012292,16287,440043,,,0.131,23183,,0.107170213,0.154829787,0.489361702,0.107932133,0.870791271,0.137585557,0.099703106,0.175468008,0.242902319,0.212441645,0.273362993,0.180110915,0.12837861,0.23184322,0.10838793,0.096941842,0.119834019,4.210339277,138617,32923,4.103007951,4.317670603,0.223443103,40752,182382,0.209843884,0.237042322,5.42888165,476,876792,,,90.59710982,3957,4367689,87.7742625,93.41995715,,,,24.29058011,17.71771582,32.50270732,93.2426705,85.11819158,101.3671494,72.07774455,57.73131864,88.90763161,95.65491586,92.36876218,98.94106953,,,,7.3,,,,,1,,,,,0.135297991,47265,349340,0.129037655,0.141558326,0.114809734,0.108860543,0.120758924,0.019279212,0.016823412,0.021735012,0.006497968,0.00514683,0.007849106,0.795089879,336067,422678,0.788120711,0.802059047,0.775374376,0.630477172,0.92027158,0.686306781,0.660850361,0.7117632,0.736909273,0.714303191,0.759515355,0.757950692,0.716626092,0.799275292,0.782809167,0.772973332,0.792645002,0.422,,422678,0.41181991,0.43218009,76.54673684,,,76.3662397,76.72723398,82.77228498,77.07653067,88.46803929,84.63268759,83.08567709,86.1796981,71.19736465,70.65172634,71.74300297,82.56770302,80.48922812,84.64617792,77.02081601,76.82302213,77.2186099,,,,413.7143956,13580,2428904,406.4369151,420.9918761,353.9703726,237.0595139,508.3605002,229.702336,201.949535,257.455137,645.5171306,617.262199,673.7720621,277.5512289,233.0734455,322.0290122,395.3731882,387.4414783,403.304898,,,,47,376,800000,42.24927374,51.75072626,,,,38.62793572,21.61976239,63.71090562,96.86448887,80.01763526,113.7113425,60.40036816,37.38877987,92.32837878,34.43700927,29.54029573,39.33372281,,,,5.532460226,354,63986,4.956128217,6.108792235,,,,,,,10.38325173,8.548248223,12.21825524,10.05684303,6.375175792,15.0902024,4.095334005,3.501971835,4.688696174,,,,,,,0.111,,,0.096,0.128,0.175,,,0.151,0.198,0.089,,,0.077,0.102,175.2,1314,750088,,,0.105,92700,,,,0.058525773,49218.88724,840978,,,34.63593173,908,2621555,32.38304155,36.88882191,,,,,,,29.00951931,23.52476593,35.38915341,30.83564601,19.54715446,46.26860917,37.77083914,35.0942483,40.44742997,,,,0.355,,,0.342,0.369,0.073012781,39201,536906,0.065863845,0.080161717,0.026219933,4974,189703,0.020262487,0.03217738,0.000911696,797,874195,,,1096.856964,0.854678633,8404.055,9833,,,0.067174845,2820,41980,0.055468028,0.078881662,2.961898259,,,,,,3.053492603,2.385303847,2.871517495,3.120238737,2.812477006,,,,,,3.041491437,2.141136701,2.59608679,3.004957448,0.21051769,,,,,-6284.791667,,,,,0.748335006,49215,65766,0.72497944,0.771690572,73927,,,71244.95745,76609.04255,59063,36460.44681,81665.55319,92452,84482.12766,100421.8723,54960,51160.34043,58759.65957,75419,70211,80627,76718,75532.46809,77903.53192,,,,,,0.521219142,61188,117394,,,50.90713718,,,,,0.321979791,,73927,,,6.064166859,289,47657,,,4.983394967,304,6100259,4.423193053,5.543596882,,,,,,,25.16281423,21.5465612,28.77906726,,,,2.151078379,1.73565236,2.566504399,,,,14.48535418,684,4367689,13.36102589,15.60968247,15.66045568,,,,5.364083111,2.45280037,10.18270063,10.71119675,8.069139264,13.94209487,11.95633195,5.968557831,21.39318054,15.42551383,14.1107635,16.74026415,,,,11.88271418,519,4367689,10.86039139,12.90503697,,,,,,,30.40521864,25.76581424,35.04462304,,,,9.609572192,8.568007501,10.65113688,,,,7.278379492,444,6100259,6.601362947,7.955396037,,,,,,,11.90498738,9.548147999,14.66727742,,,,6.870920261,6.128460312,7.613380209,,,,12.33926129,,73100,,,902,,0.750875061,494256,658240,,,0.808,,,,,167.819087,,,,,0.747834163,264921,354251,0.740657394,0.755010931,0.123719702,43014,347673,0.118000673,0.129438731,0.911528831,322910,354251,0.907034244,0.916023419,874195,,,,,0.204674014,178925,874195,,,0.183684418,160576,874195,,,0.135032802,118045,874195,,,0.003270437,2859,874195,,,0.049908773,43630,874195,,,0.000415239,363,874195,,,0.030349064,26531,874195,,,0.756414759,661254,874195,,,0.022771519,18937,831609,0.020980239,0.024562799,0.509655169,445538,874195,,,0.032099925,28287,881217,, -26,101,26101,MI,Manistee County,2024,1,9497.75871,466,66635,7987.759553,11007.75787,0,,,,2,,,,2,,,,2,,,,2,9558.019694,7897.314915,11218.72447,,,,,2,,0.155,,,0.131,0.184,3.649742498,,,2.854043008,4.477235475,5.264465112,,,4.237383847,6.355077409,0.082369942,114,1384,0.067885352,0.096854533,0,,,,,,,,,,,,,0.083752094,0.068039125,0.099465062,,,,,,,0.193,,,0.155,0.235,0.336,,,0.265,0.412,8,0.021300865,0.122,,,0.224,,,0.182,0.271,0.79825823,19982,25032,,,0.168557325,,,0.135426963,0.206098243,0.388888889,7,18,0.263815024,0.50698808,189.3,48,25350,,,24.72406181,112,4530,20.14510148,29.30302214,,,,,,,,,,30.12048193,14.44394186,55.39263868,21.10261145,16.73305845,26.26402663,,,,59.11330049,30.54470497,103.2590397,0.06938307,1209,17425,0.058659666,0.080106475,0.000512821,13,25350,,,1950,0.000711828,18,25287,,,1404.833333,0.001502748,38,25287,,,665.4473684,2151,,,,,,,,,2090,0.4,,,,,,,,,0.41,0.45,,,,,,,,0.27,0.45,0.903131064,17220,19067,0.888676705,0.917585423,0.552996291,2833,5123,0.497567568,0.608425015,0.059173418,577,9751,,,0.196,802,,0.131659575,0.260340426,,,,,,,,,,0.02173913,0,0.132367042,0.168831169,0.133736552,0.203925786,3.893696983,108786,27939,3.521819765,4.2655742,0.172316384,732,4248,0.128302178,0.21633059,8.678500986,22,25350,,,110.8405272,137,123601,92.27982636,129.401228,,,,,,,,,,,,,108.5023934,89.00745316,127.9973337,,,,5,,,,,0,,,,,0.105154639,1020,9700,0.088864501,0.121444778,0.087395833,0.072408626,0.102383041,0.013814433,0.006923491,0.020705375,0.009278351,0.002463712,0.016092989,0.792553749,7557,9535,0.765020782,0.820086717,,,,,,,,,,,,,0.769192913,0.738346255,0.800039571,0.26,,9535,0.229552842,0.290447158,76.2449128,,,75.0796953,77.4101303,,,,,,,,,,,,,76.16553146,74.90934665,77.42171626,,,,430.9804738,466,66635,385.7957524,476.1651952,,,,,,,,,,,,,433.0686598,384.3982214,481.7390982,,,,53.00821627,10,18865,25.41950011,97.48399704,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.112,,,0.096,0.13,0.169,,,0.144,0.193,0.09,,,0.077,0.105,89,20,22471,,,0.122,3030,,,,0.021300865,526.8342994,24733,,,32.15175629,24,74646,20.60023693,47.83926479,,,,,,,,,,,,,27.24836888,16.14911031,43.06417031,,,,0.333,,,0.315,0.35,0.079521357,1050,13204,0.066414974,0.09262774,0.038718291,174,4494,0.026803397,0.050633185,0.001225926,31,25287,,,815.7096774,0.6427306,438.985,683,,,0.160860656,157,976,0.075522933,0.246198379,2.722283734,,,,,,,,,2.754585058,2.746053886,,,,,,,,,2.762644211,0.057156541,,,,,-4288.32525,,,,,0.812378477,42199,51945,0.739762108,0.884994847,55788,,,50508.51064,61067.48936,39688,9837.617021,69538.38298,,,,,,,71223,67948.78723,74497.21277,58755,56188.53192,61321.46809,,,,,,0.713084427,4240,5946,,,,,,,,0.331164408,,55788,,,12.87553648,12,932,,,,,,,,,,,,,,,,,,,,,,,,,,29.7941792,33,123601,19.95362941,42.78941124,26.69881312,,,,,,,,,,,,,33.79057743,22.26820345,49.16351609,,,,17.79920874,22,123601,11.15466936,26.94821594,,,,,,,,,,,,,18.23569638,11.1388371,28.16355405,,,,14.49821672,25,172435,9.382481427,21.40222791,,,,,,,,,,,,,13.05159295,7.972252043,20.15712676,,,,22.22222222,,1800,,,40,,0.728741919,14655,20110,,,0.558,,,,,26.93894051,,,,,0.860985192,8547,9927,0.843494987,0.878475397,0.091785937,885,9642,0.075649678,0.107922195,0.827138108,8211,9927,0.808489371,0.845786846,25287,,,,,0.165381421,4182,25287,,,0.280974414,7105,25287,,,0.034088662,862,25287,,,0.023727607,600,25287,,,0.004310515,109,25287,,,0.00039546,10,25287,,,0.037212797,941,25287,,,0.885118836,22382,25287,,,0.003861164,93,24086,0,0.007958054,0.480444497,12149,25287,,,0.676693832,16939,25032,, -26,103,26103,MI,Marquette County,2024,1,7249.103918,947,183031,6482.325582,8015.882253,0,,,,2,,,,2,,,,2,,,,2,7362.187298,6555.10593,8169.268666,,,,,2,,0.144,,,0.118,0.172,3.62463459,,,2.865056209,4.508850057,5.266211582,,,4.305982557,6.33593995,0.064283941,259,4029,0.056710719,0.071857164,0,,,,,,,,,,,,,0.061079156,0.053311122,0.068847191,,,,0.090909091,0.045504159,0.136314023,0.178,,,0.137,0.223,0.341,,,0.274,0.409,7.7,0.051045469,0.122,,,0.197,,,0.157,0.241,0.84678189,55902,66017,,,0.187606606,,,0.1523892,0.226606746,0.466666667,14,30,0.378142281,0.548478646,290.5,192,66103,,,7.422927267,124,16705,6.116394115,8.729460419,,,,,,,,,,,,,6.673340007,5.365365365,7.981314648,,,,17.48807631,8.729984686,31.29099923,0.054518042,2712,49745,0.046177617,0.062858468,0.001149721,76,66103,,,869.7763158,0.000900077,60,66661,,,1111.016667,0.004650395,310,66661,,,215.0354839,1924,,,,,,,,,1909,0.48,,,,,0.43,,,,0.48,0.47,,,,,0.19,0.48,,,0.48,0.954119321,42236,44267,0.946807268,0.961431375,0.745325723,11361,15243,0.700317462,0.790333985,0.049768919,1583,31807,,,0.102,1169,,0.060297872,0.143702128,0.142011834,0,0.393603458,,,,0.411764706,0.213371662,0.61015775,0.170212766,0.013678627,0.326746905,0.124069722,0.090900818,0.157238626,3.952095808,111540,28223,3.64847707,4.255714547,0.199193963,2323,11662,0.158136955,0.240250972,14.52279019,96,66103,,,76.58583946,254,331654,67.16721047,86.00446845,,,,,,,,,,,,,77.94895981,68.04570583,87.85221378,,,,5.3,,,,,1,,,,,0.123091076,3345,27175,0.107985707,0.138196446,0.110384759,0.095218628,0.12555089,0.008647654,0.005350159,0.011945149,0.006807728,0.003487025,0.010128431,0.774542593,23622,30498,0.75307561,0.796009576,0.680790961,0.506056536,0.855525385,,,,,,,,,,0.777572246,0.75284156,0.802302933,0.184,,30498,0.163089447,0.204910553,77.94741293,,,77.2728195,78.62200637,,,,,,,,,,,,,77.78653103,77.08962477,78.4834373,,,,372.3746321,947,183031,346.6670981,398.0821661,,,,,,,,,,,,,377.8958567,351.0674196,404.7242939,,,,36.34412696,21,57781,22.49758742,55.55585873,,,,,,,,,,,,,34.98474277,20.73417578,55.2909764,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.109,,,0.093,0.128,0.168,,,0.144,0.193,0.086,,,0.072,0.101,74.3,43,57898,,,0.122,8110,,,,0.051045469,3423.976894,67077,,,15.10300248,30,198636,10.18993235,21.56047514,,,,,,,,,,,,,15.32239971,10.18162333,22.14513374,,,,0.317,,,0.3,0.335,0.062241208,2375,38158,0.051517803,0.072964612,0.03002461,366,12190,0.020492695,0.039556525,0.002025172,135,66661,,,493.7851852,0.870235935,479.5,551,,,0.063886857,262,4101,0.028762523,0.099011191,3.095174568,,,,,,,,,3.107734429,2.927507457,,,,,,,,,2.97806671,0.04425929,,,,,-78.2346,,,,,0.769639813,41539,53972,0.704527623,0.834752004,61598,,,57097.74468,66098.25532,62500,20760.93617,104239.0638,105815,39321.55319,172308.4468,,,,61736,29259.57447,94212.42553,63132,59954.29787,66309.70213,,,,,,0.383675029,3013,7853,,,77.98815677,,,,,0.336796649,,61598,,,10.21416804,31,3035,,,,,,,,,,,,,,,,,,,,,,,,,,21.98607269,72,331654,17.00402702,27.97167519,21.70937182,,,,,,,,,,,,,23.4478295,18.09653978,29.88618352,,,,11.45772401,38,331654,8.108167441,15.72662139,,,,,,,,,,,,,12.44563224,8.807270098,17.08260262,,,,7.736877396,36,465304,5.418813812,10.71109952,,,,,,,,,,,,,7.231163984,4.913225094,10.26406007,,,,31.06382979,,4700,,,146,,0.69431934,37462,53955,,,0.645,,,,,41.7024138,,,,,0.712122874,19473,27345,0.696687716,0.727558033,0.120190696,3227,26849,0.102884748,0.137496644,0.836313769,22869,27345,0.824336698,0.848290839,66661,,,,,0.175109884,11673,66661,,,0.205982509,13731,66661,,,0.013891181,926,66661,,,0.020401734,1360,66661,,,0.00799568,533,66661,,,0.000420036,28,66661,,,0.018196547,1213,66661,,,0.920793267,61381,66661,,,0.002776989,176,63378,0.000831152,0.004722826,0.493946986,32927,66661,,,0.454988867,30037,66017,, -26,105,26105,MI,Mason County,2024,1,8355.583123,490,78990,7038.138339,9673.027907,0,,,,2,,,,2,,,,2,,,,2,8577.890021,7137.696759,10018.08328,,,,,2,,0.158,,,0.132,0.184,3.757044041,,,2.944125784,4.63838275,5.60482226,,,4.507877884,6.699845534,0.075125209,135,1797,0.06293766,0.087312757,0,,,,,,,,,,,,,0.075159236,0.062117635,0.088200837,,,,,,,0.193,,,0.151,0.235,0.375,,,0.296,0.451,7.1,0.09045112,0.134,,,0.239,,,0.191,0.29,0.8627289,25064,29052,,,0.160450789,,,0.127700464,0.197897066,0.352941177,12,34,0.263338918,0.441188858,132.7,39,29383,,,18.75820672,100,5331,15.0815982,22.43481523,,,,,,,,,,,,,19.03269145,15.20263793,23.53421772,,,,,,,0.065093088,1423,21861,0.055561173,0.074625003,0.000782766,23,29383,,,1277.521739,0.000612058,18,29409,,,1633.833333,0.003434323,101,29409,,,291.1782178,2821,,,,,,,,,2840,0.48,,,,,,,,,0.48,0.35,,,,,,,,0.05,0.35,0.935020424,19915,21299,0.923837451,0.946203396,0.625080386,3888,6220,0.56983799,0.680322782,0.053059056,699,13174,,,0.161,902,,0.096659575,0.225340426,,,,,,,,,,0.225609756,0.144786199,0.306433313,0.257996633,0.205035691,0.310957575,4.113871038,113946,27698,3.713324311,4.514417764,0.209644323,1226,5848,0.15366405,0.265624596,11.91164959,35,29383,,,104.8922284,153,145864,88.27136163,121.5130951,,,,,,,,,,,,,106.8102839,89.24217685,124.3783909,,,,6.6,,,,,0,,,,,0.09150061,1125,12295,0.075512414,0.107488806,0.08080559,0.064585616,0.097025563,0.010166734,0.004776311,0.015557157,0.005286702,0.001082584,0.00949082,0.780163934,9518,12200,0.75119932,0.809128549,,,,,,,,,,0.564450475,0.408351536,0.720549414,0.802513128,0.774757924,0.830268332,0.192,,12200,0.168773597,0.215226404,77.12464695,,,76.08289012,78.16640377,,,,,,,,,,,,,76.92567746,75.81443752,78.0369174,,,,390.5845011,490,78990,351.261979,429.9070231,,,,,,,,,,,,,392.7007459,351.1750127,434.2264791,,,,46.66174126,12,25717,24.11080262,81.50867149,,,,,,,,,,,,,55.29953917,28.57407884,96.59716612,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.114,,,0.097,0.132,0.176,,,0.152,0.203,0.093,,,0.078,0.109,71.1,18,25312,,,0.134,3900,,,,0.09045112,2596.3994,28705,,,21.66698977,19,87691,13.04494323,33.83568847,,,,,,,,,,,,,23.78925227,14.32268388,37.14986424,,,,0.327,,,0.31,0.346,0.075578855,1211,16023,0.062472472,0.088685238,0.037151703,228,6137,0.025236809,0.049066596,0.001054099,31,29409,,,948.6774194,0.861357143,301.475,350,,,0.112387203,137,1219,0.041888983,0.182885422,3.009751519,,,,,,,,2.243005881,3.064041787,2.89576722,,,,,,,,2.318940696,2.923708897,0.042722813,,,,,-3012.816667,,,,,0.813151611,41883,51507,0.707324671,0.91897855,64014,,,58485.48936,69542.51064,,,,,,,,,,61477,40073.08511,82880.91489,60691,57646.74468,63735.25532,,,,,,0.569649212,2241,3934,,,,,,,,0.302636923,,64014,,,6.821282401,10,1466,,,,,,,,,,,,,,,,,,,,,,,,,,21.20782215,31,145864,13.97608843,30.85626777,21.25267372,,,,,,,,,,,,,22.24392435,14.5304699,32.59250299,,,,12.34026216,18,145864,7.313621442,19.50293442,,,,,,,,,,,,,12.03496156,6.879020395,19.54402359,,,,20.1451433,41,203523,14.45650264,27.3291616,,,,,,,,,,,,,19.92761429,14.03087949,27.46759131,,,,36,,2500,,,90,,0.753943631,17254,22885,,,0.593,,,,,28.12901106,,,,,0.78147365,9609,12296,0.758900801,0.804046499,0.080342886,956,11899,0.065852007,0.094833765,0.824007807,10132,12296,0.801813974,0.846201641,29409,,,,,0.195076337,5737,29409,,,0.261824612,7700,29409,,,0.009112857,268,29409,,,0.010779013,317,29409,,,0.00904485,266,29409,,,0.000272026,8,29409,,,0.049848686,1466,29409,,,0.904757047,26608,29409,,,0.002772477,77,27773,0,0.005947146,0.500969091,14733,29409,,,0.590974804,17169,29052,, -26,107,26107,MI,Mecosta County,2024,1,7659.994589,619,117823,6632.522819,8687.46636,0,,,,2,,,,2,,,,2,,,,2,7603.785403,6529.952057,8677.618748,,,,,2,,0.17,,,0.143,0.2,3.974192841,,,3.067210954,4.951505593,5.688095551,,,4.569216545,6.896924698,0.067348378,191,2836,0.05812423,0.076572526,0,,,,,,,,,,,,,0.068060837,0.058435396,0.077686277,,,,,,,0.205,,,0.161,0.25,0.351,,,0.274,0.429,6.3,0.1536835,0.137,,,0.236,,,0.19,0.287,0.575313492,22848,39714,,,0.173998562,,,0.137592367,0.213703266,0.263157895,5,19,0.14192256,0.393259063,359.7,144,40031,,,12.25472318,168,13709,10.40159723,14.10784912,,,,,,,,,,,,,11.87468418,9.914627717,13.83474065,,,,26.80965148,12.85626996,49.3039036,0.065058946,1937,29773,0.055527031,0.074590861,0.000474632,19,40031,,,2106.894737,0.000442043,18,40720,,,2262.222222,0.001719057,70,40720,,,581.7142857,2192,,,,,,,,,2127,0.46,,,,,,,,,0.46,0.37,,,,,,,0.03,0.25,0.37,0.919544121,24447,26586,0.908605476,0.930482766,0.568500412,4826,8489,0.515466451,0.621534374,0.055418246,1009,18207,,,0.257,1965,,0.198617021,0.315382979,0.574712644,0.014520569,1,,,,0.69005848,0.287526197,1,0.439528024,0.285713442,0.593342605,0.163387896,0.127738466,0.199037326,4.235964333,102612,24224,3.8965032,4.575425465,0.162739797,1264,7767,0.123712411,0.201767182,11.9907072,48,40031,,,66.72047852,143,214327,55.78476298,77.65619407,,,,,,,,,,,,,69.16656847,57.49886409,80.83427284,,,,7,,,,,0,,,,,0.143164363,2330,16275,0.124348122,0.161980603,0.12008693,0.102272208,0.137901652,0.024884793,0.015081276,0.03468831,0.007987711,0.005071827,0.010903596,0.790845674,12924,16342,0.77001664,0.811674708,,,,,,,,,,,,,0.795462311,0.768753922,0.822170701,0.322,,16342,0.293628539,0.350371461,76.99388043,,,76.1535287,77.83423217,,,,,,,,,,,,,77.02848237,76.15750728,77.89945745,,,,393.2737373,619,117823,359.305718,427.2417566,,,,,,,,,,,,,390.2214895,355.1786579,425.2643212,,,,49.87886561,21,42102,30.87580396,76.24514449,,,,,,,,,,,,,46.35436549,27.00312611,74.21782957,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.124,,,0.105,0.143,0.184,,,0.159,0.213,0.095,,,0.08,0.111,83.1,29,34880,,,0.137,5470,,,,0.1536835,6577.346443,42798,,,10.20480254,13,127391,5.433627565,17.45052313,,,,,,,,,,,,,10.35697024,5.351597657,18.09154271,,,,0.36,,,0.342,0.378,0.073947263,1663,22489,0.06203237,0.085862157,0.038226499,294,7691,0.026311605,0.050141392,0.000933202,38,40720,,,1071.578947,0.771868251,357.375,463,,,0.07472712,178,2382,0.037556076,0.111898164,2.989582118,,,,,,,,,3.017468869,2.988850847,,,,,,,,,3.019762711,0.035993998,,,,,-295.8316333,,,,,0.81301693,39811,48967,0.730083956,0.895949904,56096,,,51007.14894,61184.85106,24728,4907.574468,44548.42553,78750,615.7021277,156884.2979,23113,17810.87234,28415.12766,36250,9452.212766,63047.78723,56277,53017.08511,59536.91489,,,,,,0.605019815,3206,5299,,,52.99250248,,,,,0.323659441,,56096,,,10.07556675,20,1985,,,,,,,,,,,,,,,,,,,,,,,,,,13.13750037,29,214327,8.581851416,19.24948195,13.53072641,,,,,,,,,,,,,12.59815715,7.895198012,19.07376132,,,,7.931805139,17,214327,4.62056879,12.69958839,,,,,,,,,,,,,8.197519226,4.685590531,13.31225765,,,,11.31014753,34,300615,7.832605953,15.80479753,,,,,,,,,,,,,12.41029909,8.594492888,17.34214906,,,,0,,3300,,,0,,0.598663254,21049,35160,,,0.59,,,,,26.91452644,,,,,0.75948581,12230,16103,0.747198201,0.77177342,0.124549434,1935,15536,0.104191986,0.144906881,0.783953301,12624,16103,0.764009814,0.803896787,40720,,,,,0.191502947,7798,40720,,,0.203143419,8272,40720,,,0.023845776,971,40720,,,0.008300589,338,40720,,,0.008718075,355,40720,,,0.000368369,15,40720,,,0.029101179,1185,40720,,,0.907342829,36947,40720,,,0.004020708,153,38053,0.00066339,0.007378026,0.495162083,20163,40720,,,0.744775142,29578,39714,, -26,109,26109,MI,Menominee County,2024,1,7680.255361,380,61269,6214.801463,9145.709259,0,,,,2,,,,2,,,,2,,,,2,7237.393117,5758.064699,8716.721535,,,,,2,,0.155,,,0.128,0.185,3.747644252,,,2.930026867,4.697593181,5.280219166,,,4.211747197,6.482981503,0.055938697,73,1305,0.043470402,0.068406993,0,,,,,,,,,,,,,0.054954955,0.041548182,0.068361728,,,,,,,0.197,,,0.153,0.242,0.371,,,0.29,0.459,7.9,0.0534395,0.112,,,0.231,,,0.183,0.284,0.713258446,16763,23502,,,0.167600153,,,0.131544313,0.207259436,0.533333333,8,15,0.411396465,0.637148333,150.2,35,23299,,,19.23076923,80,4160,15.24880399,23.93435696,,,,,,,,,,,,,17.2460991,13.25237607,22.06525247,,,,,,,0.062584316,1067,17049,0.053052401,0.072116231,0.000343362,8,23299,,,2912.375,0.000515774,12,23266,,,1938.833333,0.001418379,33,23266,,,705.030303,2098,,,,,,,,,2092,0.51,,,,,0.47,,,,0.51,0.33,,,,,,,,,0.34,0.926680361,16241,17526,0.914978243,0.938382478,0.572532189,2668,4660,0.508047894,0.637016484,0.042653138,454,10644,,,0.16,635,,0.095659575,0.224340426,0.378378378,0.230950242,0.525806515,,,,,,,0.079545455,0,0.232983096,0.081064912,0.056001969,0.106127855,4.146541238,102262,24662,3.614910105,4.67817237,0.159683984,667,4177,0.118702814,0.200665154,10.30087128,24,23299,,,108.9647477,125,114716,89.86238521,128.0671102,,,,,,,,,,,,,108.322972,88.52468033,128.1212637,,,,6.5,,,,,1,,,,,0.092743873,965,10405,0.074910052,0.110577694,0.070611057,0.053545988,0.087676127,0.012013455,0.006047777,0.017979134,0.012493993,0.005448811,0.019539175,0.78270342,8263,10557,0.761299583,0.804107256,0.820276498,0.726622639,0.913930356,,,,,,,,,,0.769737645,0.729642584,0.809832706,0.25,,10557,0.221829402,0.278170598,78.1262326,,,76.88709051,79.36537469,,,,,,,,,,,,,78.38520383,77.13317726,79.63723041,,,,366.8591343,380,61269,324.884943,408.8333257,,,,,,,,,,,,,357.2433406,314.7091683,399.777513,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.115,,,0.097,0.134,0.178,,,0.152,0.205,0.089,,,0.074,0.105,48.8,10,20503,,,0.112,2620,,,,0.0534395,1284.097735,24029,,,,,,,,,,,,,,,,,,,,,,,,,,0.338,,,0.319,0.354,0.071582347,931,13006,0.059667453,0.08349724,0.034450652,148,4296,0.023727248,0.045174056,0.000644718,15,23266,,,1551.066667,0.777242525,233.95,301,,,,,,,,3.13516535,,,,,,,,,3.198481984,3.009934461,,,,,,,,,3.083654664,0.269653776,,,,,-1435.3589,,,,,0.727998702,40385,55474,0.661759402,0.794238003,50564,,,47261.19149,53866.80851,40625,23810.70213,57439.29787,,,,36094,34806,37382,,,,54714,50939.3617,58488.6383,,,,,,0.568298969,2205,3880,,,,,,,,0.317815046,,50564,,,9.803921569,10,1020,,,,,,,,,,,,,,,,,,,,,,,,,,26.88648063,33,114716,17.86587112,38.85845042,28.7666934,,,,,,,,,,,,,24.9646316,15.99531052,37.14539296,,,,18.30607762,21,114716,11.33175057,27.98278421,,,,,,,,,,,,,18.83877774,11.50721486,29.0949643,,,,12.38045127,20,161545,7.562301269,19.12060287,,,,,,,,,,,,,11.34907071,6.611251916,18.17096161,,,,18.23529412,,1700,,,31,,0.676522672,12607,18635,,,0.587,,,,,43.99468003,,,,,0.805836927,8035,9971,0.785108299,0.826565555,0.082735288,807,9754,0.062879355,0.102591222,0.807240999,8049,9971,0.784624616,0.829857382,23266,,,,,0.173686925,4041,23266,,,0.269363019,6267,23266,,,0.007220837,168,23266,,,0.031290295,728,23266,,,0.004856873,113,23266,,,0.000429812,10,23266,,,0.024026476,559,23266,,,0.918937505,21380,23266,,,0.000846929,19,22434,0,0.004587759,0.482506662,11226,23266,,,0.63169092,14846,23502,, -26,111,26111,MI,Midland County,2024,1,6134.911788,1017,228997,5533.87696,6735.946617,0,,,,2,,,,2,,,,2,5634.584125,3153.633962,9293.389633,1,6447.350793,5787.645483,7107.056104,,,,,2,,0.131,,,0.107,0.158,3.29668524,,,2.518345918,4.109107516,5.197415587,,,4.217169777,6.256050201,0.064746976,380,5869,0.058451213,0.071042738,0,,,,0.096969697,0.051817043,0.142122351,,,,0.080188679,0.043629701,0.116747657,0.060970948,0.054487244,0.067454652,,,,0.134328358,0.076590041,0.192066675,0.159,,,0.12,0.204,0.335,,,0.269,0.409,8.1,0.047249357,0.108,,,0.196,,,0.157,0.241,0.760114499,63465,83494,,,0.186116793,,,0.150495323,0.227974898,0.425925926,23,54,0.359410861,0.489811698,188.1,157,83457,,,9.230252853,165,17876,7.821847401,10.63865831,,,,,,,,,,12.83697048,6.155826311,23.60764575,9.04890258,7.555274644,10.54253052,,,,20.04008016,9.609997387,36.85442093,0.049007138,3275,66827,0.041858202,0.056156074,0.001006506,84,83457,,,993.5357143,0.000752922,63,83674,,,1328.15873,0.003370223,282,83674,,,296.7163121,2492,,,,,,,,,2520,0.52,,,,,,0.35,0.5,,0.52,0.52,,,,,,0.57,0.49,0.55,0.52,0.949865983,56347,59321,0.941777378,0.957954589,0.746353283,15401,20635,0.704231968,0.788474599,0.043464093,1734,39895,,,0.098,1670,,0.05987234,0.13612766,0.727272727,0.185343012,1,,,,0.130319149,0,0.309986226,0.151338766,0.051786757,0.250890776,0.120837298,0.095338878,0.146335718,4.725857,146270,30951,4.304288169,5.147425831,0.164533925,2893,17583,0.135062988,0.194004862,9.465952527,79,83457,,,55.67902005,232,416674,48.51422681,62.84381329,,,,,,,,,,,,,58.13693484,50.4719365,65.80193318,,,,7.5,,,,,1,,,,,0.106699752,3655,34255,0.091394921,0.122004582,0.093335291,0.079000698,0.107669883,0.013866589,0.008088071,0.019645107,0.003649102,0.001185936,0.006112268,0.805612777,30113,37379,0.784407288,0.826818267,,,,0.778409091,0.646451912,0.91036627,,,,0.847349823,0.74941875,0.945280897,0.819501356,0.804846215,0.834156498,0.308,,37379,0.283874179,0.332125821,79.51841472,,,78.93262951,80.10419993,,,,104.5726865,78.29856198,130.846811,,,,82.63123817,73.72700913,91.53546722,79.17963512,78.56462372,79.79464652,,,,319.179768,1017,228997,298.5475338,339.8120023,,,,,,,,,,364.4090256,219.3980382,569.0698336,327.5910998,305.7576509,349.4245486,,,,29.20672009,23,78749,18.51455515,43.82442049,,,,,,,,,,,,,33.61786717,21.31084401,50.44330697,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.1,,,0.083,0.117,0.162,,,0.137,0.19,0.083,,,0.069,0.098,59,42,71245,,,0.108,8970,,,,0.047249357,3951.416487,83629,,,15.19671751,38,250054,10.75410177,20.85868209,,,,,,,,,,,,,16.25080705,11.44206788,22.39959687,,,,0.315,,,0.296,0.331,0.057594281,2836,49241,0.048062366,0.067126196,0.026050375,483,18541,0.017709949,0.0343908,0.001864378,156,83674,,,536.3717949,0.820020243,810.18,988,,,0.057191949,233,4074,0.030829968,0.08355393,3.260707765,,,,,,3.671075927,2.966830712,3.114418227,3.256709757,3.13002004,,,,,,4.30950428,2.901699674,3.062228933,3.109454389,0.0452083,,,,,-304.9761,,,,,0.772024409,52124,67516,0.687834803,0.856214015,77595,,,71363.51064,83826.48936,60167,3733.297872,116600.7021,88984,30990.6383,146977.3617,64849,30372.06383,99325.93617,62528,41116.93617,83939.06383,74064,70363.23404,77764.76596,,,,,,0.398188469,4572,11482,,,63.81134251,,,,,0.282595528,,77595,,,10.20851434,47,4604,,,,,,,,,,,,,,,,,,,,,,,,,,12.37161753,50,416674,9.090199223,16.45162862,11.9997888,,,,,,,,,,,,,13.3192914,9.751395309,17.7660682,,,,7.679864834,32,416674,5.253021862,10.84167769,,,,,,,,,,,,,8.154954661,5.54089604,11.57530719,,,,11.30586123,66,583768,8.743952258,14.38382756,,,,,,,,,,,,,11.43868676,8.74968901,14.69347168,,,,17.22222222,,7200,,,124,,0.762887559,49088,64345,,,0.781,,,,,47.04282699,,,,,0.779619059,26769,34336,0.764549943,0.794688174,0.095293279,3207,33654,0.079419872,0.111166685,0.86902959,29839,34336,0.852849677,0.885209503,83674,,,,,0.206288692,17261,83674,,,0.203802854,17053,83674,,,0.013253818,1109,83674,,,0.00543777,455,83674,,,0.022575711,1889,83674,,,0.000872434,73,83674,,,0.03354686,2807,83674,,,0.908633506,76029,83674,,,0.003466731,274,79037,0.001284434,0.005649028,0.503071444,42094,83674,,,0.43216279,36083,83494,, -26,113,26113,MI,Missaukee County,2024,1,7328.657194,240,41490,5810.414366,8846.900021,0,,,,2,,,,2,,,,2,,,,2,7159.375523,5602.238821,8716.512225,,,,,2,,0.169,,,0.142,0.198,3.991843419,,,3.14298541,4.89589519,5.63763962,,,4.533248024,6.774923545,0.060067682,71,1182,0.046521526,0.073613838,0,,,,,,,,,,,,,0.057460612,0.043574514,0.07134671,,,,,,,0.213,,,0.173,0.26,0.392,,,0.309,0.479,8.1,0.017282231,0.122,,,0.252,,,0.207,0.304,0.175524847,2642,15052,,,0.170901232,,,0.135809279,0.212407192,0.285714286,2,7,0.086061846,0.500925625,165.2,25,15130,,,23.89078498,70,2930,18.62403895,30.18456957,,,,,,,,,,,,,22.63137706,17.22805279,29.19282753,,,,,,,0.085068713,1009,11861,0.07196233,0.098175096,0.000198282,3,15130,,,5043.333333,0.0001972,3,15213,,,5071,0.000460133,7,15213,,,2173.285714,2306,,,,,,,,,2326,0.44,,,,,,,,,0.44,0.42,,,,,,,,,0.42,0.903522781,9618,10645,0.890276426,0.916769135,0.558636626,1934,3462,0.507184026,0.610089227,0.050522905,343,6789,,,0.168,552,,0.109617021,0.226382979,,,,,,,,,,0.144927536,0.054617653,0.235237419,0.146838885,0.103151726,0.190526044,3.986073856,108481,27215,3.505313075,4.466834638,0.160475483,540,3365,0.115491257,0.205459709,8.592200925,13,15130,,,59.59396644,45,75511,43.46824805,79.74141582,,,,,,,,,,,,,56.58268853,40.42350225,77.04956214,,,,5.8,,,,,0,,,,,0.126715093,785,6195,0.107460361,0.145969825,0.089537713,0.071040654,0.108034772,0.034705408,0.022753928,0.046656888,0.014527845,0.007746343,0.021309347,0.794364882,5103,6424,0.772784354,0.81594541,,,,,,,,,,,,,0.765053763,0.724061159,0.806046368,0.291,,6424,0.258962449,0.323037552,77.31957422,,,76.07089824,78.56825019,,,,,,,,,,,,,77.339047,76.06547028,78.61262371,,,,387.2545244,240,41490,333.7590869,440.7499619,,,,,,,,,,,,,380.7424994,326.728456,434.7565427,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.122,,,0.105,0.141,0.183,,,0.159,0.208,0.094,,,0.08,0.11,,,,,,0.122,1830,,,,0.017282231,256.623844,14849,,,,,,,,,,,,,,,,,,,,,,,,,,0.335,,,0.316,0.353,0.09466901,808,8535,0.079179648,0.110158372,0.060710195,212,3492,0.040454876,0.080965514,0.000328666,5,15213,,,3042.6,0.860185185,139.35,162,,,0.169491525,120,708,0.059564763,0.279418288,3.17802281,,,,,,,,,3.17074085,3.088260457,,,,,,,,,3.108293225,0.027496384,,,,,292.71325,,,,,0.775200834,40143,51784,0.707492656,0.842909012,59230,,,52218.08511,66241.91489,,,,,,,,,,69706,55653.57447,83758.42553,57955,53334.40426,62575.59575,,,,,,0.639443156,1378,2155,,,,,,,,0.33942259,,59230,,,11.90476191,11,924,,,,,,,,,,,,,,,,,,,,,,,,,,15.43051662,10,75511,7.055814777,29.29192708,13.24310365,,,,,,,,,,,,,16.58502454,7.583729311,31.48354272,,,,,,,,,,,,,,,,,,,,,,,,,,,18.95447136,20,105516,11.57788353,29.27364372,,,,,,,,,,,,,18.18953495,10.78027121,28.74730721,,,,19.23076923,,1300,,,25,,0.760642919,8755,11510,,,0.52,,,,,0.599354475,,,,,0.809834938,4710,5816,0.790023605,0.829646272,0.085322408,479,5614,0.064962632,0.105682184,0.834594223,4854,5816,0.811100645,0.858087801,15213,,,,,0.220535069,3355,15213,,,0.217971472,3316,15213,,,0.005718793,87,15213,,,0.008150924,124,15213,,,0.006507592,99,15213,,,0.000131467,2,15213,,,0.033786893,514,15213,,,0.932426214,14185,15213,,,0.005059022,72,14232,0,0.010193255,0.48859528,7433,15213,,,1,15052,15052,, -26,115,26115,MI,Monroe County,2024,1,8514.367491,2440,421899,7951.64547,9077.089513,0,,,,2,,,,2,13001.4956,9330.097717,17637.99687,,8550.170465,5533.219508,12621.73828,,8511.80621,7919.325477,9104.286943,,,,,2,,0.148,,,0.125,0.175,3.707440559,,,2.960773977,4.56423396,5.475379633,,,4.577658467,6.469012187,0.078116134,826,10574,0.073001143,0.083231125,0,,,,,,,0.134328358,0.100993125,0.167663591,0.075471698,0.048592192,0.102351204,0.074897724,0.069613631,0.080181817,,,,0.13836478,0.084694729,0.192034831,0.178,,,0.141,0.216,0.407,,,0.347,0.467,8.1,0.032141184,0.113,,,0.27,,,0.223,0.316,0.816128261,126344,154809,,,0.184347792,,,0.150975311,0.221372152,0.414414414,46,111,0.368815618,0.459013581,220.3,342,155274,,,14.21830568,455,32001,12.91183935,15.524772,,,,,,,34.32282004,24.16643281,47.30948622,15.74074074,10.90092055,21.99610745,13.43430298,12.0635537,14.80505226,,,,12.59181532,6.506374721,21.99536731,0.047605414,5986,125742,0.040456478,0.05475435,0.000354213,55,155274,,,2823.163636,0.000462698,72,155609,,,2161.236111,0.00190863,297,155609,,,523.9360269,3324,,,,,,,7839,2591,3294,0.44,,,,,,0.33,0.45,0.44,0.44,0.47,,,,,,0.57,0.36,0.29,0.47,0.916703053,100775,109932,0.908696285,0.924709821,0.650199182,23993,36901,0.61540589,0.684992474,0.048245202,3592,74453,,,0.117,3719,,0.077680851,0.156319149,,,,,,,0.231281198,0.082192362,0.380370034,0.193566591,0.094146506,0.292986677,0.136587699,0.111443681,0.161731717,4.324861913,139373,32226,4.073510793,4.576213032,0.200036834,6517,32579,0.167251907,0.23282176,7.72827389,120,155274,,,82.22836218,622,756430,75.76613057,88.69059378,,,,,,,78.36171769,43.85845854,129.2457365,52.45305452,29.35757643,86.51333661,84.44595604,77.5792752,91.31263688,,,,9.7,,,,,0,,,,,0.108297015,6585,60805,0.09691295,0.119681081,0.091955927,0.080794098,0.103117757,0.012005592,0.008319029,0.015692155,0.009045309,0.005920841,0.012169777,0.841023213,58621,69702,0.822330388,0.859716039,,,,,,,0.811510791,0.668694077,0.954327506,0.757156048,0.634350472,0.879961624,0.803981968,0.787746825,0.820217112,0.415,,69702,0.390962607,0.439037394,76.61502652,,,76.15576927,77.07428376,,,,,,,72.65972001,69.45009343,75.86934658,77.89704268,73.90039798,81.89368738,76.60528394,76.1262054,77.08436247,,,,409.1232698,2440,421899,391.8036537,426.4428859,,,,,,,611.3185002,478.3190768,769.8544782,365.3904769,269.4100933,484.4547617,408.4302499,390.4119605,426.4485392,,,,53.1635879,75,141074,41.81653437,66.6410178,,,,,,,,,,,,,54.50536382,42.15444443,69.34418687,,,,6.634442233,70,10551,5.171873198,8.382218636,,,,,,,,,,,,,6.198781257,4.718799499,7.995976189,,,,,,,0.111,,,0.095,0.128,0.173,,,0.147,0.197,0.087,,,0.074,0.102,88.2,117,132705,,,0.113,17420,,,,0.032141184,4886.134877,152021,,,32.21268259,147,456342,27.00524232,37.42012286,,,,,,,,,,,,,32.59664906,27.09792225,38.09537588,,,,0.33,,,0.313,0.347,0.054575156,5078,93046,0.046234731,0.062915582,0.028750653,990,34434,0.020410228,0.037091079,0.000668342,104,155609,,,1496.240385,0.838042071,1553.73,1854,,,0.055866685,409,7321,0.03260506,0.07912831,3.076977736,,,,,,,2.09407421,3.009915793,3.1309204,2.905447644,,,,,,,2.000681871,2.67714294,2.965801631,0.093816729,,,,,1721.18295,,,,,0.731997541,50013,68324,0.689606821,0.774388262,72166,,,65702.17021,78629.82979,50000,2155.744681,97844.25532,,,,29370,20381.40426,38358.59575,83835,56763.17021,110906.8298,73542,71027.95745,76056.04255,,,,,,0.400219665,8381,20941,,,58.11385368,,,,,0.281240473,,72166,,,8.832807571,70,7925,,,1.990132732,21,1055206,1.231923528,3.042129284,,,,,,,,,,,,,1.767346506,1.029544469,2.829692962,,,,14.0670486,115,756430,11.36418784,16.76990935,15.20299301,,,,,,,,,,,,,14.73322474,11.81964325,17.64680623,,,,10.04719538,76,756430,7.916047206,12.57556323,,,,,,,,,,,,,10.31955745,8.059659986,13.01671755,,,,12.79371042,135,1055206,10.63554016,14.95188068,,,,,,,,,,,,,13.09915646,10.81190387,15.38640905,,,,25.41984733,,13100,,,333,,0.747025544,87148,116660,,,0.765,,,,,38.44231671,,,,,0.807615681,50266,62240,0.793926864,0.821304499,0.097393128,5944,61031,0.086098075,0.108688181,0.86153599,53622,62240,0.851484378,0.871587601,155609,,,,,0.207577968,32301,155609,,,0.199654262,31068,155609,,,0.02834669,4411,155609,,,0.004305664,670,155609,,,0.006979031,1086,155609,,,0.000340597,53,155609,,,0.042780302,6657,155609,,,0.90022428,140083,155609,,,0.001912814,281,146904,0.000679486,0.003146142,0.500671555,77909,155609,,,0.377213211,58396,154809,, -26,117,26117,MI,Montcalm County,2024,1,8911.635338,1091,180254,8064.790307,9758.48037,0,,,,2,,,,2,,,,2,11544.54858,6461.396202,19040.97724,1,8910.801504,8030.55896,9791.044049,,,,,2,,0.168,,,0.142,0.196,3.946348464,,,3.139438608,4.876288099,5.31605128,,,4.327691203,6.396002684,0.074059085,366,4942,0.066758032,0.081360139,0,,,,,,,,,,0.08045977,0.040043502,0.120876038,0.074233923,0.066685958,0.081781889,,,,,,,0.202,,,0.162,0.243,0.37,,,0.304,0.441,8.2,0.010433884,0.121,,,0.247,,,0.202,0.297,0.596931576,39764,66614,,,0.17885487,,,0.14442786,0.216470788,0.315789474,24,76,0.256803912,0.3754005,316.9,213,67220,,,22.16195273,286,12905,19.59344381,24.73046166,,,,,,,,,,24.11167513,14.51680351,37.65336748,22.38354507,19.65748727,25.10960287,,,,,,,0.073154427,3830,52355,0.062431022,0.083877831,0.000312407,21,67220,,,3200.952381,0.000459716,31,67433,,,2175.258065,0.002936248,198,67433,,,340.5707071,2587,,,,,,,,,2569,0.45,,,,,,,,,0.45,0.36,,,,,,,,0.34,0.36,0.881369528,41754,47374,0.870339625,0.89239943,0.491459136,8545,17387,0.453106202,0.52981207,0.045199164,1255,27766,,,0.194,2674,,0.136808511,0.251191489,,,,,,,0.096153846,0,0.549713402,0.172413793,0.050917753,0.293909834,0.154543955,0.12665521,0.1824327,3.692945914,106379,28806,3.412784027,3.973107801,0.161573288,2284,14136,0.130335202,0.192811374,10.26480214,69,67220,,,93.13819846,300,322102,82.59861912,103.6777778,,,,,,,,,,102.1711367,52.79331723,178.4724142,95.66164273,84.4963696,106.8269159,,,,7.8,,,,,0,,,,,0.118036861,2850,24145,0.103964941,0.13210878,0.089139045,0.076909445,0.101368646,0.017187824,0.011432223,0.022943424,0.014702837,0.008470246,0.020935429,0.821968366,23385,28450,0.809502673,0.834434058,,,,,,,,,,0.839423077,0.702589638,0.976256516,0.803187293,0.784426318,0.821948267,0.489,,28450,0.451002883,0.526997117,76.14443373,,,75.45594036,76.8329271,,,,,,,,,,77.27802469,71.00119814,83.55485123,76.06961942,75.36310506,76.77613378,,,,442.0804732,1091,180254,414.4335302,469.7274163,,,,,,,,,,371.5970555,226.9811353,573.9015139,446.0108991,417.1407864,474.8810118,,,,59.52380952,37,62160,41.9102551,82.0457306,,,,,,,,,,,,,54.13794348,36.52664313,77.28528061,,,,4.860267315,24,4938,3.114064977,7.231692506,,,,,,,,,,,,,4.533678757,2.806418606,6.930209571,,,,,,,0.12,,,0.103,0.139,0.178,,,0.154,0.205,0.093,,,0.078,0.108,77.1,44,57066,,,0.121,8050,,,,0.010433884,660.903066,63342,,,13.36183859,26,194584,8.728396587,19.57818941,,,,,,,,,,,,,13.49664271,8.647553652,20.08193452,,,,0.359,,,0.342,0.375,0.088003803,3332,37862,0.073705931,0.102301676,0.034863108,531,15231,0.024139704,0.045586512,0.001186363,80,67433,,,842.9125,0.489916546,675.105,1378,,,0.091310251,269,2946,0.05440065,0.128219853,2.98257956,,,,,,,,,3.002033838,2.804063408,,,,,,,,,2.829261468,0.032967885,,,,,-1178.6342,,,,,0.756293632,39325,51997,0.69871649,0.813870774,61590,,,56782.34043,66397.65957,41290,40526.25532,42053.74468,,,,51176,32060.93617,70291.06383,57089,42270.44681,71907.55319,62090,59430.59575,64749.40426,,,,,,0.644341194,7350,11407,,,65.37744175,,,,,0.306624452,,61590,,,6.236442516,23,3688,,,2.23203823,10,448021,1.07034909,4.104797776,,,,,,,,,,,,,,,,,,,23.36828824,77,322102,18.25082699,29.47591592,23.90547094,,,,,,,,,,,,,23.81535644,18.38018931,30.35462677,,,,15.52303308,50,322102,11.52149435,20.46518391,,,,,,,,,,,,,15.94360712,11.71476282,21.20161754,,,,20.08834407,90,448021,16.15340087,24.69198537,,,,,,,,,,,,,19.72545095,15.66485533,24.51693447,,,,35.2631579,,5700,,,201,,0.655369539,32100,48980,,,0.681,,,,,17.8046019,,,,,0.815752168,19565,23984,0.799321277,0.832183059,0.096453473,2241,23234,0.082223854,0.110683093,0.810623749,19442,23984,0.792953463,0.828294035,67433,,,,,0.208814675,14081,67433,,,0.18603651,12545,67433,,,0.038912699,2624,67433,,,0.00732579,494,67433,,,0.004345054,293,67433,,,0.000519034,35,67433,,,0.039921107,2692,67433,,,0.895347975,60376,67433,,,0.005681818,360,63360,0.001735937,0.0096277,0.463422953,31250,67433,,,0.845903264,56349,66614,, -26,119,26119,MI,Montmorency County,2024,1,11614.9554,230,24429,8558.310388,14671.60041,0,,,,2,,,,2,,,,2,,,,2,12076.0733,8828.217413,15323.92919,,,,,2,,0.176,,,0.146,0.207,4.034687254,,,3.173355709,4.959600471,5.763778736,,,4.640805689,6.957329521,0.078277887,40,511,0.054988118,0.101567655,0,,,,,,,,,,,,,0.076131687,0.05255267,0.099710705,,,,,,,0.221,,,0.175,0.266,0.365,,,0.285,0.451,7.2,0.011900349,0.167,,,0.253,,,0.204,0.304,0.164645471,1507,9153,,,0.141925048,,,0.112638808,0.176575908,0.5,1,2,0.104528646,0.771195053,96.8,9,9297,,,24.19354839,30,1240,16.3232855,34.53779467,,,,,,,,,,,,,21.55172414,13.94713952,31.81459629,,,,,,,0.078160546,481,6154,0.065054163,0.091266929,0.000752931,7,9297,,,1328.142857,0.000418017,4,9569,,,2392.25,0.001463058,14,9569,,,683.5,2207,,,,,,,,,2215,0.43,,,,,,,,,0.44,0.3,,,,,,,,,0.3,0.881510772,6465,7334,0.856095008,0.906926536,0.571139582,847,1483,0.472736065,0.669543099,0.081510934,246,3018,,,0.35,498,,0.285659575,0.414340426,,,,,,,,,,,,,0.330327869,0.24602742,0.414628318,4.402139646,85177,19349,3.856099834,4.948179457,0.213043478,294,1380,0.116917137,0.30916982,10.7561579,10,9297,,,116.1865009,54,46477,87.28287534,151.5981806,,,,,,,,,,,,,119.5255063,89.53280622,156.3423051,,,,5.8,,,,,0,,,,,0.121380846,545,4490,0.095631784,0.147129909,0.108886389,0.080375852,0.137396926,0.007572383,0.000289953,0.014854813,0.006681515,0.000673837,0.012689192,0.763081862,2377,3115,0.732947311,0.793216413,,,,,,,,,,,,,0.754141566,0.701368847,0.806914285,0.424,,3115,0.354749966,0.493250034,73.97483615,,,71.95430263,75.99536966,,,,,,,,,,,,,73.51614481,71.40374224,75.62854738,,,,512.6946213,230,24429,426.5240433,598.8651993,,,,,,,,,,,,,526.5191006,436.2775588,616.7606425,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.126,,,0.108,0.146,0.188,,,0.162,0.216,0.097,,,0.081,0.113,132.4,11,8311,,,0.167,1530,,,,0.011900349,116.2069091,9765,,,,,,,,,,,,,,,,,,,,,,,,,,0.356,,,0.338,0.373,0.088408232,421,4762,0.07291887,0.103897594,0.043180261,63,1459,0.028882388,0.057478133,0.001567562,15,9569,,,637.9333333,,,,,,,,,,,2.675857218,,,,,,,,,2.687163385,2.670415925,,,,,,,,,2.71391682,0.045879021,,,,,-7175.769,,,,,0.731242624,34696,47448,0.594564538,0.867920709,50680,,,45355.23404,56004.76596,34205,33051.6383,35358.3617,,,,,,,108510,72104.04255,144915.9575,46383,42037.6383,50728.3617,,,,,,0.60969697,503,825,,,,,,,,0.345737964,,50680,,,12.42236025,4,322,,,,,,,,,,,,,,,,,,,,,,,,,,27.78926456,13,46477,12.70702131,52.75268033,27.97082428,,,,,,,,,,,,,29.18756554,13.34641356,55.40709116,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10,,600,,,6,,0.741176471,5859,7905,,,0.378,,,,,2.26921056,,,,,0.84245404,3941,4678,0.814887733,0.870020347,0.152706041,680,4453,0.115935651,0.18947643,0.802907225,3756,4678,0.758985889,0.846828561,9569,,,,,0.15215801,1456,9569,,,0.328978995,3148,9569,,,0.005434215,52,9569,,,0.00961438,92,9569,,,0.003448636,33,9569,,,0.000104504,1,9569,,,0.016407148,157,9569,,,0.948061448,9072,9569,,,0.001008742,9,8922,0,0.008437019,0.482495559,4617,9569,,,1,9153,9153,, -26,121,26121,MI,Muskegon County,2024,1,9258.445344,2953,487503,8735.739471,9781.151217,0,,,,2,,,,2,15255.7711,13501.72012,17009.82208,,9242.319999,7196.584536,11288.05546,,8112.0608,7549.074168,8675.047432,,,,,2,,0.168,,,0.145,0.195,3.747628099,,,2.993071988,4.532749103,5.496172276,,,4.535304754,6.437702257,0.098759198,1369,13862,0.093792676,0.103725719,0,,,,,,,0.168792198,0.154573593,0.183010803,0.064612326,0.049420479,0.079804174,0.082405345,0.07671785,0.08809284,,,,0.090124641,0.072745566,0.107503715,0.191,,,0.155,0.23,0.42,,,0.354,0.489,6.6,0.173225978,0.118,,,0.229,,,0.191,0.272,0.868379743,152682,175824,,,0.177633044,,,0.143138428,0.215715949,0.274509804,28,102,0.223711228,0.326824874,773.9,1366,176511,,,26.86947563,991,36882,25.19654306,28.54240819,,,,,,,60.59556787,54.24718795,66.94394778,28.27254736,22.73112808,33.81396664,16.30239342,14.72049949,17.88428734,,,,65.93951413,54.73285935,77.14616891,0.057276133,8104,141490,0.050127196,0.064425069,0.000560872,99,176511,,,1782.939394,0.000713618,126,176565,,,1401.309524,0.002582618,456,176565,,,387.2039474,2452,,,,,,,4207,455,2326,0.46,,,,,,0.31,0.4,0.33,0.47,0.44,,,,,0.25,0.4,0.33,0.34,0.45,0.92143451,111946,121491,0.912802008,0.930067011,0.564765689,25441,45047,0.533680911,0.595850467,0.050971032,3908,76671,,,0.207,7941,,0.154574468,0.259425532,0.36,0,0.828237202,,,,0.432879046,0.364359778,0.501398314,0.191749427,0.127858553,0.255640301,0.106976188,0.085381668,0.128570707,4.108641156,111451,27126,3.885540318,4.331741995,0.300297724,11902,39634,0.270569014,0.330026434,9.744435191,172,176511,,,98.70977146,860,871241,92.11245994,105.307083,,,,,,,134.0448883,113.2744177,154.8153589,77.92258391,55.66903637,106.1084428,94.28108414,86.89535337,101.6668149,,,,7.9,,,,,0,,,,,0.111935215,7395,66065,0.100641649,0.123228782,0.089636711,0.079763998,0.099509425,0.018239613,0.013757779,0.022721446,0.009081965,0.006340769,0.011823161,0.837447768,63131,75385,0.821518282,0.853377255,,,,,,,0.82714994,0.773159926,0.881139954,0.829162805,0.759112085,0.899213525,0.836933634,0.821157757,0.852709511,0.247,,75385,0.229692617,0.264307383,75.61155805,,,75.1959174,76.02719869,,,,,,,70.01055036,68.7975706,71.22353013,75.75151797,73.26095833,78.24207762,76.68603799,76.23089405,77.14118193,,,,454.4631212,2953,487503,437.1695774,471.756665,,,,,,,745.2893882,680.7851091,809.7936674,483.7827654,388.6095441,578.9559867,409.6633337,391.3439841,427.9826834,,,,52.09048862,91,174696,41.94001208,63.95557707,,,,,,,131.542509,93.08730838,180.552371,,,,33.92808985,24.12618856,46.38081572,,,,7.026758464,99,14089,5.711002545,8.554826301,,,,,,,17.15328467,12.60358838,22.81023224,,,,3.533959139,2.417225435,4.988895867,,,,,,,0.118,,,0.103,0.136,0.178,,,0.153,0.203,0.101,,,0.086,0.117,127.5,189,148249,,,0.118,20680,,,,0.173225978,29827.43464,172188,,,33.39949615,175,523960,28.45095755,38.34803475,,,,,,,56.40476056,40.2963879,76.80727475,,,,30.5723035,25.14724634,35.99736066,,,,0.337,,,0.323,0.35,0.067870461,6916,101900,0.058338546,0.077402376,0.030643882,1275,41607,0.022303457,0.038984308,0.001614136,285,176565,,,619.5263158,0.823381386,1627.825,1977,,,0.083428311,732,8774,0.061870619,0.104986003,2.809725206,,,,,,,1.963405268,2.713201593,3.060093088,2.628313219,,,,,,,2.004923037,2.470297308,2.846277383,0.224202408,,,,,-511.4672182,,,,,0.806094804,43143,53521,0.760524701,0.851664907,58303,,,54467.59575,62138.40426,42847,36628.61702,49065.38298,67917,41575.55319,94258.44681,34373,31202.44681,37543.55319,70652,49713.95745,91590.04255,66106,63689.65957,68522.34043,,,,,,0.62373855,16070,25764,,,71.86733068,,,,,0.328473663,,58303,,,7.628492419,80,10487,,,7.228288235,88,1217439,5.797298532,8.905453271,,,,,,,36.87184062,28.26942878,47.26803561,,,,2.26121076,1.3997251,3.456500845,,,,16.71281391,146,871241,13.91700732,19.50862049,16.75770539,,,,,,,,,,,,,17.95347476,14.62295599,21.28399353,,,,14.46212931,126,871241,11.9368871,16.98737151,,,,,,,41.05124704,30.36993855,54.27192563,,,,9.78956944,7.555383018,12.47760987,,,,13.55304044,165,1217439,11.48503902,15.62104186,,,,,,,11.89414214,7.265251017,18.36953786,14.19708392,6.808053574,26.1089428,13.45958786,11.10001807,15.81915764,,,,29.30379747,,15800,,,463,,0.699564872,92444,132145,,,0.732,,,,,59.28620263,,,,,0.772730686,51460,66595,0.760760699,0.784700672,0.109222702,7082,64840,0.098310171,0.120135233,0.845033411,56275,66595,0.832849535,0.857217287,176565,,,,,0.221374565,39087,176565,,,0.184175799,32519,176565,,,0.135955597,24005,176565,,,0.009288364,1640,176565,,,0.006869991,1213,176565,,,0.000458755,81,176565,,,0.064033076,11306,176565,,,0.755665053,133424,176565,,,0.003639173,603,165697,,,0.496734914,87706,176565,,,0.260135135,45738,175824,, -26,123,26123,MI,Newaygo County,2024,1,8914.94966,771,136979,7888.791882,9941.107437,0,,,,2,,,,2,,,,2,,,,2,9065.345592,7956.741668,10173.94952,,,,,2,,0.17,,,0.144,0.201,3.891035942,,,3.08305629,4.845350163,5.514472737,,,4.484687934,6.669652519,0.082878953,304,3668,0.073956652,0.091801254,0,,,,,,,,,,0.105504587,0.064724086,0.146285088,0.081576535,0.072199033,0.090954038,,,,,,,0.208,,,0.167,0.253,0.393,,,0.32,0.472,7.9,0.017756536,0.131,,,0.255,,,0.21,0.305,0.813517948,40658,49978,,,0.159982955,,,0.127423738,0.196583322,0.339622642,18,53,0.268709563,0.410351751,234.6,118,50296,,,21.20622568,218,10280,18.39114269,24.02130868,,,,,,,,,,21.35231317,13.68082994,31.77054946,20.82128398,17.7795073,23.86306066,,,,,,,0.07399227,2948,39842,0.063268865,0.084715674,0.000357881,18,50296,,,2794.222222,0.000569901,29,50886,,,1754.689655,0.002161695,110,50886,,,462.6,1523,,,,,,,,,1523,0.43,,,,,,,,,0.43,0.31,,,,,,,0.35,0.18,0.31,0.894302019,31500,35223,0.883704489,0.904899548,0.544071077,6185,11368,0.499016515,0.589125639,0.04740728,1098,23161,,,0.182,1981,,0.123617021,0.240382979,,,,0.78125,0.14740668,1,,,,0.326568266,0.231563762,0.42157277,0.201683464,0.156009032,0.247357897,4.064950241,107835,26528,3.75686186,4.373038623,0.217986843,2419,11097,0.171491143,0.264482544,12.52584699,63,50296,,,105.3882274,259,245758,92.55315603,118.2232989,,,,,,,,,,,,,108.1266163,94.44671185,121.8065207,,,,7.4,,,,,0,,,,,0.135812032,2630,19365,0.119511439,0.152112625,0.100576218,0.086538184,0.114614252,0.029692745,0.021400644,0.037984846,0.00929512,0.005328467,0.013261773,0.793922574,16878,21259,0.772733218,0.815111931,,,,,,,,,,0.690561529,0.52980272,0.851320339,0.779227519,0.751775369,0.806679668,0.433,,21259,0.402999064,0.463000936,76.49325104,,,75.6960011,77.29050097,,,,,,,,,,79.13500895,75.87182897,82.39818892,76.3171217,75.46913966,77.16510374,,,,401.6427103,771,136979,370.6773429,432.6080777,,,,,,,,,,,,,403.9402441,371.488322,436.3921661,,,,56.12022199,27,48111,36.98357991,81.65197657,,,,,,,,,,,,,61.47037128,39.7803832,90.74239414,,,,5.698778833,21,3685,3.527633917,8.711188802,,,,,,,,,,,,,,,,,,,,,,0.121,,,0.103,0.141,0.182,,,0.157,0.209,0.095,,,0.08,0.111,65.6,28,42657,,,0.131,6490,,,,0.017756536,860.4817221,48460,,,15.47529336,23,148624,9.810008503,23.22053834,,,,,,,,,,,,,14.92659845,9.117554117,23.05292069,,,,0.325,,,0.309,0.342,0.085447309,2469,28895,0.072340926,0.098553692,0.044120202,508,11514,0.031013819,0.057226585,0.000903981,46,50886,,,1106.217391,0.848471074,513.325,605,,,0.09021652,225,2494,0.05725625,0.123176789,2.687038117,,,,,,,,2.578557678,2.699759467,2.622134858,,,,,,,,2.532245693,2.65446136,0.055547744,,,,,-2083.38396,,,,,0.764561946,41557,54354,0.716136927,0.812986965,57992,,,51637.78723,64346.21277,,,,15667,8240.446809,23093.55319,39803,6356.702128,73249.29787,60052,53833.61702,66270.38298,59382,57115.78723,61648.21277,,,,,,0.680648372,4787,7033,,,55.62867364,,,,,0.328734998,,57992,,,8.599068434,24,2791,,,3.219725796,11,341644,1.607275517,5.76097883,,,,,,,,,,,,,,,,,,,18.92805495,46,245758,13.64167712,25.58523159,18.71760024,,,,,,,,,,,,,19.5504047,13.83502995,26.83445792,,,,15.46236542,38,245758,10.94209004,21.2233046,,,,,,,,,,,,,15.76846487,10.98331354,21.93011748,,,,21.07456885,72,341644,16.48955219,26.53993164,,,,,,,,,,,,,21.36752137,16.52563948,27.18472625,,,,36.66666667,,4500,,,165,,0.730036285,27161,37205,,,0.599,,,,,0.437359416,,,,,0.855620308,16297,19047,0.84025052,0.870990096,0.097204091,1787,18384,0.082852291,0.11155589,0.803643618,15307,19047,0.785663195,0.821624042,50886,,,,,0.217623708,11074,50886,,,0.207679912,10568,50886,,,0.010710215,545,50886,,,0.009649019,491,50886,,,0.005227371,266,50886,,,0.000314428,16,50886,,,0.0627088,3191,50886,,,0.896828204,45636,50886,,,0.006860303,325,47374,0.003623479,0.010097128,0.491215659,24996,50886,,,0.896654528,44813,49978,, -26,125,26125,MI,Oakland County,2024,1,5946.246112,14494,3511699,5790.230032,6102.262193,0,7846.745489,3387.667757,15461.21674,1,2287.513383,1954.157666,2620.869099,,10628.73715,10048.66532,11208.80897,,5600.980158,4918.801333,6283.158982,,5499.373427,5321.932946,5676.813909,,,,,2,,0.111,,,0.093,0.13,2.705839024,,,2.182504136,3.271951295,4.66846827,,,4.013864366,5.317217286,0.083034126,7516,90517,0.081236515,0.084831738,0,,,,0.091217257,0.085497776,0.096936739,0.14383916,0.13792573,0.149752591,0.072184429,0.065211765,0.079157094,0.068649734,0.066631106,0.070668361,,,,0.092619392,0.077335015,0.10790377,0.123,,,0.095,0.153,0.297,,,0.262,0.335,8.6,0.04370924,0.086,,,0.181,,,0.152,0.212,0.959130411,1222311,1274395,,,0.179318183,,,0.155643537,0.205214064,0.235109718,75,319,0.207026346,0.26408319,253.9,3224,1270017,,,6.769557784,1758,259692,6.453106446,7.086009121,,,,0.867762619,0.514291124,1.371439053,17.78936181,16.47432237,19.10440125,15.31172358,13.46816384,17.15528332,4.051419164,3.749991218,4.35284711,,,,7.227007227,5.66482001,9.086876565,0.045751282,47523,1038725,0.042176814,0.04932575,0.001377934,1750,1270017,,,725.724,0.001124126,1427,1269431,,,889.5802383,0.004308229,5469,1269431,,,232.1139148,3406,,,,,,1864,5433,4244,3133,0.45,,,,,,0.36,0.41,0.33,0.46,0.52,,,,,0.49,0.53,0.37,0.37,0.54,0.947445779,859267,906930,0.944921592,0.949969966,0.818294303,270488,330551,0.805713532,0.830875074,0.029855532,19831,664232,,,0.093,23239,,0.07512766,0.11087234,0.139473684,0,0.334482292,0.041934046,0.024403674,0.059464419,0.16937416,0.140376182,0.198372138,0.234467338,0.200578739,0.268355937,0.060893074,0.053637198,0.06814895,4.676739737,180915,38684,4.553631815,4.79984766,0.18597746,48417,260338,0.175937372,0.196017548,7.913279901,1005,1270017,,,59.40140487,3737,6291097,57.49685987,61.30594988,,,,16.99870138,13.59676694,20.99325792,70.46473113,64.8635956,76.06586665,42.60044785,34.88115877,50.31973693,64.06090098,61.72205229,66.39974966,,,,7.8,,,,,1,,,,,0.122392512,62370,509590,0.117730678,0.127054346,0.109465697,0.104954776,0.113976618,0.010871485,0.009614833,0.012128136,0.006348241,0.005134153,0.007562328,0.757495925,489381,646051,0.751612682,0.763379169,0.740458015,0.620658744,0.860257287,0.662236106,0.641360895,0.683111318,0.731844033,0.715703925,0.747984142,0.738333281,0.720917912,0.755748651,0.788825001,0.782246084,0.795403919,0.413,,646051,0.405186882,0.420813118,79.37390936,,,79.22716222,79.52065651,78.0439843,73.82764859,82.26032,88.29457818,87.20941283,89.37974353,74.67538395,74.22720922,75.12355867,81.17986179,80.00626127,82.35346232,79.76033162,79.59518497,79.92547827,,,,302.5156035,14494,3511699,297.3755185,307.6556885,272.595459,170.8341229,412.7128009,126.542185,113.1368869,139.9474832,501.7049768,483.4517967,519.9581569,281.527367,251.0329891,312.0217448,284.4886243,278.6797685,290.2974801,,,,39.84393011,458,1149485,36.19483232,43.4930279,,,,29.40686356,19.84068736,41.98012625,76.80875245,63.23455298,90.38295192,37.75607142,25.65341873,53.5917296,32.38083055,28.3094573,36.4522038,,,,5.113221329,469,91723,4.650452347,5.575990312,,,,3.399258344,2.339893034,4.773822545,11.93386053,10.118416,13.74930507,5.963473723,4.079011612,8.418645561,3.402918657,2.940456744,3.865380571,,,,18.49112426,11.96648066,27.29654711,0.084,,,0.072,0.098,0.139,,,0.12,0.16,0.072,,,0.062,0.084,199.4,2174,1090015,,,0.086,109430,,,,0.04370924,52554.32875,1202362,,,16.74133709,633,3781060,15.4371366,18.04553757,,,,,,,20.57078095,16.65467964,24.48688226,12.85827839,8.058214612,19.46758801,17.97672682,16.37516389,19.57828976,,,,0.338,,,0.324,0.353,0.052741382,41131,779862,0.047975425,0.05750734,0.025580466,6975,272669,0.020814508,0.030346423,0.00183468,2329,1269431,,,545.0541005,0.868826775,13070.63,15044,,,0.055255011,3391,61370,0.046628077,0.063881944,3.147661128,,,,,,3.760659417,2.461289329,2.790509728,3.312501611,3.057675675,,,,,,4.072041853,2.273393986,2.58075301,3.229704048,0.26934697,,,,,155.701063,,,,,0.706876296,61371,86820,0.692645959,0.721106633,90801,,,88174.95745,93427.04255,62000,49091.40426,74908.59575,130077,123710.8723,136443.1277,58926,56377.40426,61474.59575,75795,68880.78723,82709.21277,97370,95846.08511,98893.91489,,,,,,0.344738749,59948,173894,,,65.70045901,,,,,0.320018502,,90801,,,8.587179828,581,67659,,,3.600166838,316,8777371,3.203217431,3.997116245,,,,,,,16.31777129,14.04485041,18.59069217,4.039631478,2.260951073,6.662757795,1.442479696,1.16139467,1.771045421,,,,11.76721473,785,6291097,10.91782823,12.61660123,12.47795098,,,,3.894596954,2.378920998,6.014889125,7.428571135,5.682268303,9.542310395,10.67411319,7.201779345,15.23796029,13.4176355,12.33942604,14.49584496,,,,8.583558639,540,6291097,7.859578637,9.30753864,,,,,,,18.42745436,15.56312567,21.29178305,8.374447013,5.308681038,12.56578234,7.601952857,6.796262455,8.40764326,,,,5.206570396,457,8777371,4.729206338,5.683934453,,,,2.946601684,1.799860859,4.550787318,7.417168768,5.964279585,9.116959669,4.578249008,2.666998761,7.330220164,5.135861773,4.576623491,5.695100055,,,,10.1725791,,104300,,,1061,,0.832600366,770351,925235,,,0.777,,,,,133.4431034,,,,,0.71911457,377364,524762,0.7134013,0.72482784,0.11567981,59505,514394,0.1113791,0.119980519,0.926038852,485950,524762,0.922743293,0.92933441,1269431,,,,,0.200003781,253891,1269431,,,0.185131764,235012,1269431,,,0.136663592,173485,1269431,,,0.003303842,4194,1269431,,,0.086270148,109514,1269431,,,0.000319828,406,1269431,,,0.048298017,61311,1269431,,,0.704393543,894179,1269431,,,0.017220337,20770,1206132,0.015937547,0.018503128,0.505325614,641476,1269431,,,0.055422377,70630,1274395,, -26,127,26127,MI,Oceana County,2024,1,8610.596104,416,73292,7206.618525,10014.57368,0,,,,2,,,,2,,,,2,10967.89787,7595.588116,15326.53794,,7753.716599,6233.532507,9273.900691,,,,,2,,0.174,,,0.144,0.206,3.769581534,,,2.96947712,4.612406901,5.419106702,,,4.372341162,6.496835012,0.074855034,142,1897,0.063012687,0.086697382,0,,,,,,,,,,0.064039409,0.040224688,0.08785413,0.077826725,0.063598912,0.092054539,,,,,,,0.196,,,0.154,0.24,0.361,,,0.284,0.441,7.8,0.043702937,0.124,,,0.254,,,0.207,0.306,0.851532316,22701,26659,,,0.16353741,,,0.129263253,0.200423016,0.555555556,10,18,0.449513997,0.646460596,283.4,76,26815,,,24.21574023,132,5451,20.08462932,28.34685114,,,,,,,,,,27.3381295,19.34608752,37.52371865,20.32308494,16.06455529,25.36412977,,,,,,,0.093125749,1944,20875,0.080019366,0.106232132,0.000484803,13,26815,,,2062.692308,0.000296593,8,26973,,,3371.625,0.000333667,9,26973,,,2997,1630,,,,,,,,,1621,0.46,,,,,,,,0.34,0.47,0.31,,,,,,,,0.13,0.32,0.896861702,16861,18800,0.883381638,0.910341767,0.483367627,2819,5832,0.437549717,0.529185537,0.065573771,748,11407,,,0.224,1250,,0.159659575,0.288340426,,,,,,,0.492063492,0.065094769,0.919032215,0.226415094,0.165272211,0.287557977,0.172680412,0.135350973,0.210009852,3.757489002,107622,28642,3.424268076,4.090709928,0.206283446,1195,5793,0.156269093,0.256297798,9.696065635,26,26815,,,88.60987625,118,133168,72.62176367,104.5979888,,,,,,,,,,,,,93.28530526,75.09212504,111.4784855,,,,6.9,,,,,0,,,,,0.136630754,1395,10210,0.116842257,0.156419251,0.096790124,0.07971083,0.113869417,0.040156709,0.027825612,0.052487806,0.006366308,0.002907534,0.009825081,0.788657036,8844,11214,0.7621892,0.815124872,,,,,,,,,,0.700781805,0.628846149,0.772717462,0.800245432,0.769191467,0.831299398,0.289,,11214,0.257702135,0.320297865,77.1322162,,,75.99637336,78.26805903,,,,,,,,,,74.09864171,69.51267906,78.68460435,77.91024385,76.68893294,79.13155476,,,,388.8841883,416,73292,347.5621978,430.2061788,,,,,,,,,,533.4797437,382.8342746,723.7255108,360.2544101,316.7842936,403.7245266,,,,53.89797883,14,25975,29.46652657,90.43165013,,,,,,,,,,,,,55.80045756,26.75848834,102.6190282,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.12,,,0.102,0.14,0.175,,,0.15,0.202,0.098,,,0.083,0.114,43.7,10,22878,,,0.124,3290,,,,0.043702937,1161.187028,26570,,,16.22951024,13,80101,8.641530681,27.75295679,,,,,,,,,,,,,15.38153908,7.376045862,28.28719801,,,,0.349,,,0.332,0.364,0.109428496,1662,15188,0.092747645,0.126109347,0.050091835,300,5989,0.034602473,0.065581197,0.00081563,22,26973,,,1226.045455,0.836098655,186.45,223,,,,,,,,2.718694751,,,,,,,,2.346728057,2.978058471,2.586972602,,,,,,,,2.185553723,2.948405761,0.032170803,,,,,-10325.79775,,,,,0.859667757,40468,47074,0.80107396,0.918261554,56853,,,50623.89362,63082.10638,,,,73542,60972.97872,86111.02128,,,,59444,45900.34043,72987.65957,60889,57244.23404,64533.76596,,,,,,0.692908042,2042,2947,,,,,,,,0.333104674,,56853,,,10.82251082,15,1386,,,,,,,,,,,,,,,,,,,,,,,,,,14.03256785,19,133168,8.174487888,22.46750048,14.26769194,,,,,,,,,,,,,13.57755041,7.015718424,23.71724813,,,,9.011173856,12,133168,4.656205026,15.74070726,,,,,,,,,,,,,,,,,,,16.72962763,31,185300,11.36697031,23.74637102,,,,,,,,,,,,,15.21949154,9.647852091,22.83671001,,,,41.6,,2500,,,104,,0.725780645,14062,19375,,,0.517,,,,,2.631656003,,,,,0.847222222,8418,9936,0.830981518,0.863462927,0.104924164,1010,9626,0.08904289,0.120805437,0.786533816,7815,9936,0.767546845,0.805520788,26973,,,,,0.211656101,5709,26973,,,0.222815408,6010,26973,,,0.010195381,275,26973,,,0.014755496,398,26973,,,0.003781559,102,26973,,,0.000407815,11,26973,,,0.155822489,4203,26973,,,0.808178549,21799,26973,,,0.016172932,410,25351,0.008720861,0.023625003,0.487672858,13154,26973,,,1,26659,26659,, -26,129,26129,MI,Ogemaw County,2024,1,10643.73232,486,55787,8868.141649,12419.32299,0,,,,2,,,,2,,,,2,,,,2,10948.55052,9057.10838,12839.99266,,,,,2,,0.183,,,0.155,0.216,4.250082597,,,3.322139504,5.232703146,5.836091115,,,4.678245173,7.057649566,0.077042802,99,1285,0.062462674,0.091622929,0,,,,,,,,,,,,,0.07569386,0.060658862,0.090728859,,,,,,,0.228,,,0.184,0.276,0.383,,,0.302,0.467,7.4,0.000236508,0.16,,,0.267,,,0.218,0.323,0.458064516,9514,20770,,,0.151671939,,,0.119387125,0.187176564,0.208333333,5,24,0.105577141,0.326751616,154.4,32,20726,,,22.95436133,85,3703,18.33512855,28.38342326,,,,,,,,,,,,,21.42647491,16.79493599,26.94057534,,,,,,,0.079941376,1200,15011,0.068026483,0.09185627,0.000144746,3,20726,,,6908.666667,0.000429185,9,20970,,,2330,0.000810682,17,20970,,,1233.529412,2546,,,,,,,,,2570,0.47,,,,,,,,,0.47,0.28,,,,,,,,,0.28,0.881768378,13842,15698,0.865373656,0.8981631,0.585791544,2383,4068,0.530414694,0.641168394,0.069996354,576,8229,,,0.224,822,,0.14893617,0.29906383,,,,,,,,,,0.398692811,0.141765619,0.655620002,0.234398328,0.176294694,0.292501962,4.259788095,93677,21991,3.882804597,4.636771593,0.209715954,790,3767,0.15389058,0.265541329,8.202258033,17,20726,,,130.045229,136,104579,108.1887077,151.9017503,,,,,,,,,,,,,134.7667927,111.8626973,157.670888,,,,6.4,,,,,1,,,,,0.127214171,1185,9315,0.10801541,0.146412932,0.103542234,0.087933693,0.119150776,0.021363392,0.012147826,0.030578959,0.007514761,0.002216074,0.012813449,0.834803529,6246,7482,0.803583222,0.866023835,,,,,,,,,,,,,0.830833833,0.802920188,0.858747479,0.335,,7482,0.295196408,0.374803592,74.42624987,,,73.14005209,75.71244765,,,,,,,,,,,,,74.09766289,72.74642792,75.44889787,,,,513.4469722,486,55787,460.1099632,566.7839813,,,,,,,,,,,,,520.5424699,465.2414905,575.8434493,,,,83.17984671,14,16831,45.47519622,139.5616489,,,,,,,,,,,,,91.82736456,50.2028747,154.0707144,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.131,,,0.113,0.152,0.193,,,0.167,0.219,0.1,,,0.084,0.116,55.1,10,18157,,,0.16,3310,,,,0.000236508,5.131996552,21699,,,30.3291511,19,62646,18.2601302,47.36272639,,,,,,,,,,,,,32.17884664,19.37376774,50.2512551,,,,0.349,,,0.332,0.364,0.09086899,1030,11335,0.076571118,0.105166862,0.047152796,183,3881,0.032854923,0.061450668,0.001669051,35,20970,,,599.1428571,0.670967742,124.8,186,,,0.155241936,154,992,0.067486962,0.242996909,3.244000061,,,,,,,,,3.245317586,3.052080027,,,,,,,,,3.070993945,0.033012507,,,,,729.8115,,,,,0.780748663,38544,49368,0.69766177,0.863835556,53480,,,47845.44681,59114.55319,29375,14166.82979,44583.17021,,,,,,,66750,21861.82979,111638.1702,50180,47201.2766,53158.7234,,,,,,0.672592593,1362,2025,,,,,,,,0.344745699,,53480,,,7.667031763,7,913,,,,,,,,,,,,,,,,,,,,,,,,,,32.29479116,36,104579,21.62832849,46.38070715,34.42373708,,,,,,,,,,,,,33.88402607,22.32978669,49.29947896,,,,21.99294313,23,104579,13.94163937,33.00021314,,,,,,,,,,,,,22.29225142,13.97043528,33.75073654,,,,20.48900423,30,146420,13.82384512,29.24932755,,,,,,,,,,,,,20.95436284,14.03346566,30.0939604,,,,30,,1600,,,48,,0.703100089,11907,16935,,,0.464,,,,,3.089055358,,,,,0.822532732,7476,9089,0.81125648,0.833808984,0.111175182,964,8671,0.093349512,0.129000851,0.826053471,7508,9089,0.805735919,0.846371024,20970,,,,,0.17858846,3745,20970,,,0.278445398,5839,20970,,,0.005627086,118,20970,,,0.010205055,214,20970,,,0.007153076,150,20970,,,0.000476872,10,20970,,,0.021649976,454,20970,,,0.941297091,19739,20970,,,0.002161456,43,19894,0,0.006615252,0.497567954,10434,20970,,,1,20770,20770,, -26,131,26131,MI,Ontonagon County,2024,1,11116.87397,130,14531,6463.714601,15770.03334,1,,,,2,,,,2,,,,2,,,,2,11209.10995,6320.702309,16097.5176,1,,,,2,,0.164,,,0.138,0.193,3.869076318,,,3.129854723,4.815903409,5.477047447,,,4.519344042,6.702065962,0.116751269,23,197,0.071908206,0.161594333,0,,,,,,,,,,,,,0.104972376,0.060317127,0.149627625,,,,,,,0.209,,,0.166,0.257,0.386,,,0.318,0.476,6.6,0.131980856,0.137,,,0.237,,,0.194,0.291,0.603679505,3511,5816,,,0.139253396,,,0.113232944,0.177281341,0.666666667,4,6,0.494967173,0.784226735,136.3,8,5868,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.086743044,318,3666,0.072445172,0.101040917,0.000340832,2,5868,,,2934,0.000511683,3,5863,,,1954.333333,0.000341122,2,5863,,,2931.5,972,,,,,,,,,992,0.42,,,,,,,,,0.42,0.25,,,,,,,,,0.25,0.935881628,4554,4866,0.922346126,0.949417129,0.521197008,418,802,0.432260564,0.610133451,0.074925075,150,2002,,,0.226,162,,0.143787234,0.308212766,,,,,,,,,,,,,0.190697674,0.103023539,0.27837181,3.835526316,88033,22952,3.342301945,4.328750687,0.121661721,82,674,0.06160636,0.181717082,11.92910702,7,5868,,,121.0235131,35,28920,84.29731121,168.31441,,,,,,,,,,,,,124.3599122,86.12285437,173.7805124,,,,5,,,,,0,,,,,0.113274336,320,2825,0.0878726,0.138676073,0.091696751,0.063444662,0.11994884,0.012035398,0,0.024855624,0.01380531,0.005230885,0.022379735,0.778614458,1551,1992,0.737870692,0.819358224,,,,,,,,,,,,,0.762812089,0.719793251,0.805830928,0.301,,1992,0.239122802,0.362877198,75.38567766,,,72.080696,78.69065932,,,,,,,,,,,,,75.16647885,71.75586232,78.57709538,,,,449.0086097,130,14531,340.0569135,557.9603059,,,,,,,,,,,,,454.2716283,341.1130783,567.4301782,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.119,,,0.102,0.139,0.182,,,0.16,0.211,0.093,,,0.08,0.11,,,,,,0.137,810,,,,0.131980856,894.8302008,6780,,,,,,,,,,,,,,,,,,,,,,,,,,0.356,,,0.336,0.374,0.094818828,280,2953,0.076946488,0.112691169,0.055263158,42,760,0.038582307,0.071944009,0.000341122,2,5863,,,2931.5,,,,,,,,,,,2.645972111,,,,,,,,,2.609691863,2.794349035,,,,,,,,,2.754318809,,,,,,-5341.55,,,,,0.815988425,40043,49073,0.701792929,0.930183922,45694,,,42027.78723,49360.21277,63750,2627.787234,124872.2128,,,,,,,96250,49312.46809,143187.5319,48112,43723.74468,52500.25532,,,,,,0.598393574,298,498,,,,,,,,0.363264324,,45694,,,6.849315069,1,146,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,300,,,-888,,0.745882353,3804,5100,,,0.436,,,,,1.687281029,,,,,0.883704735,2538,2872,0.868570884,0.898838587,0.091272727,251,2750,0.063664653,0.118880802,0.818593315,2351,2872,0.789156673,0.848029957,5863,,,,,0.123997953,727,5863,,,0.371311615,2177,5863,,,0.004775712,28,5863,,,0.019614532,115,5863,,,0.006822446,40,5863,,,0.000170561,1,5863,,,0.017226676,101,5863,,,0.937404059,5496,5863,,,0.002276708,13,5710,0,0.013950882,0.484393655,2840,5863,,,1,5816,5816,, -26,133,26133,MI,Osceola County,2024,1,7549.442845,353,63816,6231.221644,8867.664046,0,,,,2,,,,2,,,,2,,,,2,7593.663033,6232.879678,8954.446388,,,,,2,,0.172,,,0.145,0.203,3.985092812,,,3.203533356,4.815235164,5.633815619,,,4.56571278,6.705926856,0.077566964,139,1792,0.065182053,0.089951875,0,,,,,,,,,,,,,0.074777448,0.062218174,0.087336722,,,,,,,0.216,,,0.174,0.262,0.37,,,0.296,0.446,8.1,0.000269464,0.131,,,0.249,,,0.206,0.301,0.419466166,9602,22891,,,0.16820854,,,0.135535443,0.204176644,0.4,12,30,0.306339297,0.489449435,255.4,59,23105,,,22.63540825,112,4948,18.44327197,26.82754452,,,,,,,,,,,,,22.26720648,18.09768665,27.10952491,,,,,,,0.085038755,1525,17933,0.071932372,0.098145138,0.000302965,7,23105,,,3300.714286,0.000171866,4,23274,,,5818.5,0.001589757,37,23274,,,629.027027,1217,,,,,,,,,1200,0.46,,,,,,,,,0.46,0.33,,,,,,,,,0.33,0.89317818,14507,16242,0.875481438,0.910874922,0.56871663,2876,5057,0.523830831,0.61360243,0.047230837,533,11285,,,0.205,997,,0.140659575,0.269340426,,,,,,,,,,0.233160622,0.07806529,0.388255953,0.193360251,0.155330899,0.231389603,3.903817801,100617,25774,3.621925099,4.185710503,0.172180152,864,5018,0.145021896,0.199338407,15.58104306,36,23105,,,84.02496742,98,116632,68.21553011,102.3995218,,,,,,,,,,,,,84.68942657,68.35529739,103.7502691,,,,6.5,,,,,0,,,,,0.121114684,1130,9330,0.105384321,0.136845046,0.098642042,0.082956585,0.1143275,0.020900322,0.014138432,0.027662211,0.006430868,0.002542522,0.010319214,0.803273176,7166,8921,0.772597656,0.833948695,,,,,,,,,,,,,0.795485824,0.765548985,0.825422664,0.338,,8921,0.304510882,0.371489118,77.6380088,,,76.52101873,78.75499886,,,,,,,,,,,,,77.50433547,76.36230557,78.64636538,,,,373.9827823,353,63816,331.3592411,416.6063236,,,,,,,,,,,,,377.4550276,333.6054766,421.3045785,,,,61.48981026,14,22768,33.61705146,103.1694533,,,,,,,,,,,,,58.6281024,30.29399604,102.4114962,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.123,,,0.106,0.143,0.185,,,0.161,0.211,0.094,,,0.081,0.11,96.9,19,19600,,,0.131,3000,,,,0.000269464,6.339946811,23528,,,18.56320772,13,70031,9.884126303,31.74365055,,,,,,,,,,,,,18.23154057,9.420503052,31.84683234,,,,0.345,,,0.327,0.362,0.093470896,1214,12988,0.077981535,0.108960258,0.062595712,327,5224,0.042340393,0.082851031,0.000988227,23,23274,,,1011.913044,0.856963087,255.375,298,,,0.145231846,166,1143,0.090422012,0.20004168,2.842025001,,,,,,,,,2.81383707,2.577576619,,,,,,,,,2.585309693,0.054000973,,,,,-1482.905525,,,,,0.822815873,41242,50123,0.754207983,0.891423763,54727,,,49887.17021,59566.82979,,,,24036,23120.93617,24951.06383,,,,76250,44192.97872,108307.0213,54936,52401.70213,57470.29787,,,,,,0.613969608,2303,3751,,,,,,,,0.320499936,,54727,,,12.92407108,16,1238,,,,,,,,,,,,,,,,,,,,,,,,,,16.66694889,19,116632,9.709111923,26.68539972,16.29055491,,,,,,,,,,,,,15.3260533,8.577875688,25.2779942,,,,11.14616915,13,116632,5.934865638,19.0602887,,,,,,,,,,,,,10.92766795,5.646485488,19.08843675,,,,19.04176904,31,162800,12.93795822,27.02827119,,,,,,,,,,,,,20.17953275,13.71101346,28.64323595,,,,70.45454546,,2200,,,155,,0.684564131,12329,18010,,,0.544,,,,,7.542928121,,,,,0.833389659,7398,8877,0.818801572,0.847977746,0.09567757,819,8560,0.078525454,0.112829686,0.799143855,7094,8877,0.780112833,0.818174877,23274,,,,,0.221362894,5152,23274,,,0.221663659,5159,23274,,,0.00966744,225,23274,,,0.007776918,181,23274,,,0.003609178,84,23274,,,0.000558563,13,23274,,,0.026295437,612,23274,,,0.93387471,21735,23274,,,0.002204565,48,21773,0,0.00642003,0.489988829,11404,23274,,,1,22891,22891,, -26,135,26135,MI,Oscoda County,2024,1,11203.88294,209,22106,8274.586833,14133.17905,0,,,,2,,,,2,,,,2,,,,2,11330.05808,8276.632803,14383.48336,,,,,2,,0.183,,,0.151,0.215,4.206512725,,,3.237960113,5.15038774,5.857395426,,,4.60596338,7.021823592,0.069084629,40,579,0.04842785,0.089741408,0,,,,,,,,,,,,,0.07027027,0.049004861,0.09153568,,,,,,,0.227,,,0.181,0.274,0.361,,,0.277,0.447,7.6,0.005588271,0.151,,,0.258,,,0.206,0.314,0.877357343,7211,8219,,,0.15018551,,,0.117999245,0.186360109,0.416666667,5,12,0.261828357,0.556653137,72.2,6,8311,,,25.1572327,32,1272,17.20752855,35.51450635,,,,,,,,,,,,,24.3697479,16.32080264,34.99902306,,,,,,,0.100762066,595,5905,0.085272704,0.116251428,0.000120323,1,8311,,,8311,0.000237982,2,8404,,,4202,0.000713946,6,8404,,,1400.666667,2863,,,,,,,,,2891,0.37,,,,,,,,,0.37,0.23,,,,,,,,,0.23,0.854220779,5262,6160,0.829371849,0.87906971,0.544715447,804,1476,0.44840736,0.641023534,0.079051383,220,2783,,,0.246,393,,0.162595745,0.329404255,,,,,,,,,,0.195652174,0,0.440495412,0.163237311,0.100940498,0.225534125,3.349953496,82841,24729,2.790891259,3.909015733,0.188271605,305,1620,0.104669693,0.271873517,9.625797136,8,8311,,,149.4588145,62,41483,114.589216,191.5994549,,,,,,,,,,,,,152.0912548,116.0616501,195.7715929,,,,6,,,,,0,,,,,0.126005362,470,3730,0.099303257,0.152707467,0.100108225,0.073119697,0.127096754,0.022788204,0.007977094,0.037599313,0.017426274,0.003207604,0.031644943,0.709819787,1930,2719,0.638600824,0.78103875,,,,,,,,,,,,,0.71611929,0.65439433,0.777844251,0.303,,2719,0.228458079,0.377541921,73.82643104,,,71.80216874,75.85069334,,,,,,,,,,,,,73.65472328,71.55625772,75.75318884,,,,541.0929711,209,22106,451.7030433,630.4828989,,,,,,,,,,,,,543.8243028,451.5963662,636.0522394,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.13,,,0.11,0.15,0.192,,,0.162,0.22,0.097,,,0.082,0.113,125.5,9,7174,,,0.151,1240,,,,0.005588271,48.28266435,8640,,,,,,,,,,,,,,,,,,,,,,,,,,0.356,,,0.338,0.372,0.113421113,491,4329,0.094357284,0.132484943,0.065741858,109,1658,0.045486539,0.085997177,0.000594955,5,8404,,,1680.8,,,,,,0.268361582,95,354,0.098155996,0.438567168,2.555679969,,,,,,,,,2.615958715,2.683766351,,,,,,,,,2.76852155,,,,,,-7285.0135,,,,,0.720384756,33477,46471,0.587546109,0.853223403,46626,,,40089.48936,53162.51064,36250,15894.59575,56605.40426,,,,,,,,,,48586,45420.21277,51751.78723,,,,,,0.684810127,541,790,,,,,,,,0.411958993,,46626,,,6.802721088,3,441,,,,,,,,,,,,,,,,,,,,,,,,,,33.63469123,16,41483,16.79031668,60.18175347,38.57001663,,,,,,,,,,,,,35.57096755,17.75689884,63.64628665,,,,,,,,,,,,,,,,,,,,,,,,,,,25.86296079,15,57998,14.47530283,42.65702071,,,,,,,,,,,,,27.13360588,15.18647323,44.75275654,,,,36.66666667,,600,,,22,,0.730187266,4874,6675,,,0.322,,,,,4.586868101,,,,,0.873142857,3056,3500,0.853039785,0.893245929,0.109814482,367,3342,0.078916384,0.14071258,0.754,2639,3500,0.721070785,0.786929215,8404,,,,,0.192884341,1621,8404,,,0.291170871,2447,8404,,,0.006068539,51,8404,,,0.010590195,89,8404,,,0.003093765,26,8404,,,0.000475964,4,8404,,,0.022965255,193,8404,,,0.942051404,7917,8404,,,0.004214021,33,7831,0,0.012675819,0.488100904,4102,8404,,,1,8219,8219,, -26,137,26137,MI,Otsego County,2024,1,8254.086915,425,68275,6899.642304,9608.531525,0,,,,2,,,,2,,,,2,,,,2,8019.35806,6662.802755,9375.913365,,,,,2,,0.147,,,0.122,0.175,3.619717428,,,2.793418145,4.573717787,5.366018588,,,4.250140576,6.581667521,0.069575472,118,1696,0.057466374,0.08168457,0,,,,,,,,,,,,,0.06840796,0.05606898,0.08074694,,,,,,,0.183,,,0.14,0.228,0.347,,,0.265,0.437,7.1,0.105969646,0.127,,,0.218,,,0.172,0.27,0.801960863,20122,25091,,,0.173021941,,,0.135284507,0.216234804,0.318181818,7,22,0.204127461,0.433005911,237.3,60,25289,,,18.14918229,91,5014,14.61258945,22.2831741,,,,,,,,,,,,,19.45355191,15.62279959,23.93926959,,,,,,,0.064976631,1279,19684,0.054253227,0.075700035,0.000869944,22,25289,,,1149.5,0.000701919,18,25644,,,1424.666667,0.002963656,76,25644,,,337.4210526,2774,,,,,,,,,2768,0.4,,,,,,,,,0.4,0.33,,,,,,,,,0.33,0.943407686,17087,18112,0.930462278,0.956353093,0.66304928,3727,5621,0.581879259,0.7442193,0.054152882,622,11486,,,0.16,824,,0.114723404,0.205276596,,,,,,,0.073529412,0,0.578406542,0.466666667,0.290767511,0.642565822,0.133790738,0.092175679,0.175405797,3.964207603,114189,28805,3.585764501,4.342650705,0.301843756,1588,5261,0.22654497,0.377142542,9.490292222,24,25289,,,71.81763163,89,123925,57.67545543,88.37777559,,,,,,,,,,,,,74.47418656,59.65077045,91.86363398,,,,5.8,,,,,0,,,,,0.132198297,1320,9985,0.09890563,0.165490965,0.110717897,0.080625952,0.140809842,0.015923886,0.006593093,0.025254678,0.009514271,0.002105225,0.016923318,0.775028219,8926,11517,0.737267284,0.812789155,,,,,,,,,,,,,0.797986634,0.766833194,0.829140074,0.229,,11517,0.188735416,0.269264584,76.63227908,,,75.54564695,77.7189112,,,,,,,,,,,,,76.65704344,75.57276909,77.74131779,,,,413.4859254,425,68275,370.2396801,456.7321706,,,,,,,,,,,,,409.0540681,365.1561018,452.9520344,,,,56.7958408,13,22889,30.24139321,97.12261749,,,,,,,,,,,,,57.9766161,29.95736356,101.2734808,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.11,,,0.092,0.129,0.172,,,0.145,0.2,0.086,,,0.071,0.102,78.6,17,21622,,,0.127,3180,,,,0.105969646,2560.65053,24164,,,,,,,,,,,,,,,,,,,,,,,,,,0.336,,,0.317,0.356,0.074529018,1080,14491,0.061422635,0.087635401,0.038771032,212,5468,0.025664649,0.051877414,0.001676806,43,25644,,,596.372093,0.763411371,228.26,299,,,,,,,,2.993639624,,,,,,,,,2.995269506,2.77425297,,,,,,,,,2.810459478,0.020777406,,,,,1836.072233,,,,,0.777625596,42582,54759,0.677742131,0.877509061,65915,,,59098.48936,72731.51064,,,,70724,47033.61702,94414.38298,,,,57404,11131.31915,103676.6809,62509,55045.51064,69972.48936,,,,,,0.531466513,1841,3464,,,61.64950194,,,,,0.311780323,,65915,,,7.710100231,10,1297,,,,,,,,,,,,,,,,,,,,,,,,,,15.75959614,20,123925,9.340135465,24.90695628,16.13879363,,,,,,,,,,,,,16.65751349,9.872298192,26.3260528,,,,12.9110349,16,123925,7.379772002,20.9667118,,,,,,,,,,,,,13.69640213,7.82867723,22.24209897,,,,10.42583754,18,172648,6.179012083,16.47731817,,,,,,,,,,,,,11.05556033,6.552225718,17.47255167,,,,98.0952381,,2100,,,206,,0.764017603,14757,19315,,,0.57,,,,,28.05545208,,,,,0.761285529,8196,10766,0.728717565,0.793853492,0.104784689,1095,10450,0.077337733,0.132231645,0.900984581,9700,10766,0.872139396,0.929829766,25644,,,,,0.205467166,5269,25644,,,0.225276868,5777,25644,,,0.006200281,159,25644,,,0.00896896,230,25644,,,0.00698019,179,25644,,,0.000506941,13,25644,,,0.020199657,518,25644,,,0.940063953,24107,25644,,,0.001253028,30,23942,0,0.005364044,0.495359538,12703,25644,,,0.66218963,16615,25091,, -26,139,26139,MI,Ottawa County,2024,1,4800.391207,2544,827932,4513.237159,5087.545255,0,,,,2,4874.689433,3264.656019,7000.867164,,10401.67184,7431.106861,14164.12478,,6166.932476,5166.88818,7166.976771,,4496.948062,4194.772672,4799.123452,,,,,2,,0.125,,,0.104,0.15,3.339668432,,,2.65396068,4.093785823,4.771716501,,,3.945785046,5.668027812,0.062941439,1408,22370,0.059758893,0.066123986,0,,,,0.088777219,0.065961616,0.111592823,0.127853881,0.096580805,0.159126957,0.064975678,0.055970391,0.073980964,0.05974187,0.05625444,0.0632293,,,,0.091370558,0.062919102,0.119822015,0.142,,,0.109,0.179,0.331,,,0.28,0.389,8.4,0.078570119,0.077,,,0.184,,,0.15,0.224,0.865742741,256433,296200,,,0.20091855,,,0.166816638,0.238808337,0.299065421,32,107,0.249608911,0.349380972,336.3,1006,299157,,,7.236302307,635,87752,6.673461067,7.799143546,,,,5.768578215,3.360409389,9.236052533,15.68989386,10.86570761,21.92505404,22.10314802,19.2527585,24.95353755,4.576988399,4.073925461,5.080051337,,,,8.502024292,5.262887038,12.99624726,0.04710257,11578,245804,0.041145123,0.053060016,0.00066186,198,299157,,,1510.893939,0.000614877,185,300873,,,1626.340541,0.002482775,747,300873,,,402.7751004,1956,,,,,,994,462,1784,1933,0.49,,,,,,0.42,0.44,0.34,0.5,0.5,,,,,0.25,0.43,0.33,0.33,0.51,0.941783922,175832,186701,0.936779262,0.946788582,0.738143205,52761,71478,0.711644034,0.764642375,0.033103158,5350,161616,,,0.067,4509,,0.046744681,0.087255319,,,,0.093843395,0.015429926,0.172256865,0.127860027,0.018739883,0.236980171,0.143686502,0.092264067,0.195108937,0.04201697,0.029881819,0.054152121,3.741640582,150616,40254,3.592705277,3.890575888,0.148954628,10302,69162,0.128134496,0.16977476,11.46555153,343,299157,,,56.27354275,823,1462499,52.42886087,60.11822463,,,,31.41993958,16.72979454,53.72905358,42.83389017,20.54051528,78.7730491,35.1508105,26.25230657,46.09561138,60.06350507,55.71525256,64.41175758,,,,8.3,,,,,1,,,,,0.104317063,10910,104585,0.09464731,0.113986816,0.082098171,0.074214586,0.089981757,0.017928001,0.013928493,0.021927509,0.008940097,0.006551452,0.011328742,0.798169336,120336,150765,0.788811962,0.807526711,,,,0.712995961,0.640130955,0.785860968,0.771078309,0.707492113,0.834664505,0.716858883,0.673974707,0.759743059,0.78952611,0.779807094,0.799245126,0.249,,150765,0.234952548,0.263047452,80.54063734,,,80.24593888,80.83533579,,,,83.81022217,80.18644841,87.43399593,73.45893473,70.12795849,76.78991096,80.07491417,78.25918337,81.89064497,80.81779893,80.51086518,81.12473268,,,,254.551817,2544,827932,244.3302915,264.7733426,,,,240.2859158,180.5101753,313.5209976,584.5565293,437.8729535,764.6143328,323.4863434,276.8401539,370.1325328,243.7447981,233.0369772,254.4526191,,,,32.14174202,105,326678,25.99378486,38.28969918,,,,,,,,,,35.57006256,20.72087224,56.95111589,29.91134278,23.52716855,37.49412719,,,,4.512475668,102,22604,3.636744396,5.38820694,,,,,,,,,,7.085020243,4.385739198,10.83020605,3.789145213,2.942419523,4.803644442,,,,,,,0.095,,,0.081,0.112,0.155,,,0.133,0.178,0.08,,,0.068,0.094,58.3,146,250266,,,0.077,22700,,,,0.078570119,20726.87592,263801,,,11.29149908,100,885622,9.078365262,13.5046329,,,,,,,,,,10.97152888,5.261274558,20.17703225,12.07242915,9.695151922,14.85616289,,,,0.3,,,0.284,0.316,0.055800076,9800,175627,0.047459651,0.064140502,0.026697385,1970,73790,0.019548448,0.033846321,0.000857505,258,300873,,,1166.174419,0.915823738,3101.895,3387,,,0.032345265,694,21456,0.016227455,0.048463074,3.445990208,,,,,,3.442754763,2.771899452,2.981908016,3.59352102,3.369902471,,,,,,3.572816959,2.785698416,2.755402525,3.546446714,0.137838136,,,,,3622.4952,,,,,0.732803079,48738,66509,0.691536956,0.774069203,85968,,,80246.46809,91689.53192,93333,70987.80851,115678.1915,82479,65633.7234,99324.2766,44681,30130.53192,59231.46809,69433,60610.02128,78255.97872,86000,83811.23404,88188.76596,,,,,,0.350080779,15385,43947,,,66.35222913,,,,,0.27799879,,85968,,,6.900878294,121,17534,,,1.333528259,27,2024704,0.878803525,1.940213604,,,,,,,,,,,,,0.885532524,0.495625831,1.460551231,,,,10.00497825,148,1462499,8.352509507,11.65744699,10.11966504,,,,,,,,,,9.217508311,4.601346938,16.49266851,9.98569428,8.183156089,11.78823247,,,,5.33333698,78,1462499,4.215781563,6.656245922,,,,,,,,,,,,,5.408173717,4.182681161,6.88052299,,,,7.556660134,153,2024704,6.359257399,8.754062869,,,,,,,,,,7.95398619,4.546390359,12.91677525,7.379437699,6.085765231,8.673110166,,,,25.90106007,,28300,,,733,,0.787605621,168713,214210,,,0.775,,,,,62.20197785,,,,,0.781620863,84698,108362,0.770832469,0.792409258,0.085819601,9150,106619,0.077330601,0.0943086,0.903859287,97944,108362,0.896673168,0.911045405,300873,,,,,0.227793787,68537,300873,,,0.166645063,50139,300873,,,0.017273069,5197,300873,,,0.005440834,1637,300873,,,0.029042154,8738,300873,,,0.000594935,179,300873,,,0.104612245,31475,300873,,,0.829050796,249439,300873,,,0.011984155,3346,279202,0.009550617,0.014417693,0.502298312,151128,300873,,,0.211988521,62791,296200,, -26,141,26141,MI,Presque Isle County,2024,1,8060.50762,223,33147,6011.806386,10109.20886,0,,,,2,,,,2,,,,2,,,,2,8215.777578,6048.48857,10383.06659,,,,,2,,0.162,,,0.135,0.192,3.909703087,,,3.080874971,4.837379633,5.66074971,,,4.545944175,6.856346882,0.066365008,44,663,0.047417267,0.085312749,0,,,,,,,,,,,,,0.0656,0.046189604,0.085010396,,,,,,,0.203,,,0.16,0.247,0.379,,,0.301,0.464,7.3,0.062679686,0.137,,,0.236,,,0.188,0.286,0.423740564,5501,12982,,,0.151808174,,,0.119949158,0.187243588,0.5,5,10,0.338551574,0.634481032,84,11,13093,,,12.10428305,26,2148,7.90691956,17.73557918,,,,,,,,,,,,,12.11509339,7.762368932,18.02629863,,,,,,,0.070787293,615,8688,0.060063889,0.081510697,0.000152753,2,13093,,,6546.5,0.000224534,3,13361,,,4453.666667,0.000374224,5,13361,,,2672.2,2540,,,,,,,,,2524,0.53,,,,,,,,,0.53,0.32,,,,,,,,,0.32,0.921029626,9482,10295,0.908322296,0.933736956,0.667424932,1467,2198,0.584790285,0.750059579,0.076938776,377,4900,,,0.191,383,,0.119510638,0.262489362,,,,,,,,,,0.293333333,0,0.732150169,0.191347754,0.132517368,0.25017814,3.876507181,100952,26042,3.525901432,4.227112929,0.16511514,337,2041,0.109684031,0.220546248,16.03910487,21,13093,,,79.83844456,51,63879,59.44496601,104.9728101,,,,,,,,,,,,,82.13552361,60.96256877,108.2854483,,,,5.8,,,,,0,,,,,0.09535865,565,5925,0.077041202,0.113676097,0.080102477,0.062157703,0.09804725,0.014345992,0.006542012,0.022149972,0.003375527,0,0.007677076,0.776983095,3585,4614,0.742118472,0.811847718,,,,,,,,,,,,,0.77533164,0.74087028,0.809793,0.356,,4614,0.314212853,0.397787147,78.17747864,,,76.53813499,79.81682229,,,,,,,,,,,,,78.07993982,76.37049852,79.78938113,,,,372.6664644,223,33147,311.959435,433.3734937,,,,,,,,,,,,,373.1979732,310.5313754,435.8645709,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.12,,,0.102,0.139,0.181,,,0.154,0.207,0.091,,,0.077,0.107,,,,,,0.137,1780,,,,0.062679686,838.4034807,13376,,,,,,,,,,,,,,,,,,,,,,,,,,0.341,,,0.322,0.359,0.078161939,529,6768,0.065055556,0.091268322,0.046328241,94,2029,0.032030368,0.060626113,0.000748447,10,13361,,,1336.1,0.858269231,111.575,130,,,,,,,,3.115117194,,,,,,,,,3.142503572,3.055328401,,,,,,,,,3.045331455,0.06159564,,,,,-1493.806533,,,,,0.682524924,39639,58077,0.571847612,0.793202236,56375,,,50444.95745,62305.04255,44583,8440.361702,80725.6383,,,,,,,27727,12697.55319,42756.44681,55735,51476.61702,59993.38298,,,,,,0.567747298,683,1203,,,,,,,,0.294439024,,56375,,,13.86138614,7,505,,,,,,,,,,,,,,,,,,,,,,,,,,23.97842117,14,63879,11.96994145,42.90401899,21.91643576,,,,,,,,,,,,,25.55063436,12.75478461,45.71714268,,,,15.65459697,10,63879,7.506987736,28.7893612,,,,,,,,,,,,,16.42710472,7.87743523,30.21003046,,,,12.29297512,11,89482,6.13660889,21.99552817,,,,,,,,,,,,,11.70055929,5.610872974,21.51774512,,,,60,,800,,,48,,0.78494826,8344,10630,,,0.503,,,,,3.6316825,,,,,0.893944354,5462,6110,0.888048598,0.899840109,0.084547611,499,5902,0.065558099,0.103537123,0.817839607,4997,6110,0.793737518,0.841941696,13361,,,,,0.152832872,2042,13361,,,0.337100516,4504,13361,,,0.005912731,79,13361,,,0.010253724,137,13361,,,0.006361799,85,13361,,,0.000449068,6,13361,,,0.018336951,245,13361,,,0.948357159,12671,13361,,,0.005187136,65,12531,0,0.011011313,0.494498915,6607,13361,,,1,12982,12982,, -26,143,26143,MI,Roscommon County,2024,1,11997.51933,604,62264,9989.678693,14005.35996,0,,,,2,,,,2,,,,2,,,,2,12089.78718,10044.59391,14134.98045,,,,,2,,0.168,,,0.139,0.2,3.858101709,,,3.057724005,4.743805729,5.691228992,,,4.626906108,6.81697986,0.073909172,83,1123,0.058607385,0.089210959,0,,,,,,,,,,,,,0.07497657,0.059174535,0.090778605,,,,,,,0.209,,,0.165,0.257,0.363,,,0.286,0.443,6.6,0.058865009,0.171,,,0.248,,,0.2,0.301,0.684470779,16057,23459,,,0.147280544,,,0.115853881,0.180644695,0.434782609,10,23,0.328901221,0.532879371,122.7,29,23633,,,26.54867257,87,3277,21.26439839,32.74768953,,,,,,,,,,,,,27.6298269,22.0070029,34.2513275,,,,,,,0.072485112,1132,15617,0.060570219,0.084400006,0.000465451,11,23633,,,2148.454546,0.000421799,10,23708,,,2370.8,0.001012317,24,23708,,,987.8333333,2300,,,,,,,,,2320,0.48,,,,,,,,,0.48,0.36,,,,,,,,,0.36,0.906864819,17147,18908,0.89331786,0.920411778,0.641871166,2511,3912,0.564332115,0.719410216,0.085245902,676,7930,,,0.256,854,,0.169021277,0.342978723,,,,,,,,,,0.276595745,0.047933673,0.505257817,0.253061225,0.206941089,0.29918136,4.015166921,94774,23604,3.593846718,4.436487124,0.209077599,714,3415,0.157778565,0.260376633,11.84783989,28,23633,,,103.837812,124,119417,85.56098688,122.1146372,,,,,,,,,,,,,108.9681689,89.71052424,128.2258135,,,,6.2,,,,,0,,,,,0.123029772,1405,11420,0.100822906,0.145236639,0.101943463,0.083322018,0.120564908,0.015323993,0.008114325,0.022533661,0.009632224,0.001614262,0.017650187,0.730422643,5755,7879,0.69451825,0.766327035,,,,,,,,,,,,,0.728734288,0.693344368,0.764124209,0.34,,7879,0.290213421,0.389786579,74.00462313,,,72.62889133,75.38035493,,,,,,,,,,,,,73.87221025,72.48672534,75.25769516,,,,522.2961362,604,62264,468.5232678,576.0690046,,,,,,,,,,,,,529.7643344,473.751558,585.7771108,,,,84.48141409,13,15388,44.98279498,144.465791,,,,,,,,,,,,,80.14571949,40.00845441,143.4028307,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.122,,,0.104,0.142,0.185,,,0.16,0.211,0.096,,,0.08,0.112,65.9,14,21229,,,0.171,4010,,,,0.058865009,1439.190594,24449,,,33.5017728,24,71638,21.46521798,49.84798235,,,,,,,,,,,,,35.48773455,22.73766114,52.80293601,,,,0.351,,,0.332,0.368,0.082663605,1008,12194,0.068365733,0.096961477,0.036995828,133,3595,0.025080934,0.048910721,0.001223216,29,23708,,,817.5172414,0.775603865,160.55,207,,,,,,,,2.49968202,,,,,,,,,2.510960555,2.342039329,,,,,,,,,2.320201657,0.031663104,,,,,-4087.3205,,,,,0.749189189,42966,57350,0.623347267,0.875031111,49151,,,43355.59575,54946.40426,,,,,,,,,,46650,33790.25532,59509.74468,50725,46594.10638,54855.89362,,,,,,0.714850773,1988,2781,,,,,,,,0.363837969,,49151,,,13.79310345,12,870,,,,,,,,,,,,,,,,,,,,,,,,,,32.25454614,38,119417,21.43291167,46.61679969,31.82126498,,,,,,,,,,,,,32.86561372,21.65864653,47.81774245,,,,20.09764104,24,119417,12.87693784,29.90369679,,,,,,,,,,,,,21.26208174,13.62301696,31.63629224,,,,13.77121815,23,167015,8.729771001,20.66358884,,,,,,,,,,,,,14.54895089,9.222786843,21.83056981,,,,80,,1500,,,120,,0.74420218,15018,20180,,,0.422,,,,,14.25431004,,,,,0.831132242,9440,11358,0.816411841,0.845852642,0.109033137,1201,11015,0.087160266,0.130906007,0.865381229,9829,11358,0.848561561,0.882200897,23708,,,,,0.143495866,3402,23708,,,0.342120803,8111,23708,,,0.005989539,142,23708,,,0.009701367,230,23708,,,0.007212755,171,23708,,,0.000253079,6,23708,,,0.023072381,547,23708,,,0.941370002,22318,23708,,,0.005548461,126,22709,0.000384483,0.010712439,0.493504302,11700,23708,,,0.438722878,10292,23459,, -26,145,26145,MI,Saginaw County,2024,1,9976.517468,3324,522111,9434.327736,10518.7072,0,,,,2,,,,2,17756.64148,16132.07555,19381.20742,,11836.16977,9903.246432,13769.09311,,7435.57848,6887.141479,7984.015482,,,,,2,,0.174,,,0.149,0.199,3.812799579,,,3.062884586,4.58778376,5.317166314,,,4.442226516,6.228218888,0.101470086,1484,14625,0.096576317,0.106363854,0,,,,0.07960199,0.04218164,0.11702234,0.158174905,0.146787827,0.169561983,0.091349062,0.077460086,0.105238038,0.075577764,0.069787377,0.081368151,,,,0.101740295,0.080061096,0.123419493,0.187,,,0.151,0.223,0.426,,,0.363,0.488,6.8,0.113765587,0.136,,,0.249,,,0.206,0.29,0.665076476,126447,190124,,,0.163200951,,,0.132009791,0.195786165,0.255102041,25,98,0.203349053,0.309007311,658.3,1248,189591,,,21.56553124,956,44330,20.19847216,22.93259033,,,,,,,44.38834543,40.15319537,48.62349549,31.73719376,26.98026619,36.49412134,10.55330534,9.325907357,11.78070332,,,,45.92145015,36.18087968,57.47754258,0.059123364,8653,146355,0.050782939,0.06746379,0.00086502,164,189591,,,1156.042683,0.000807094,152,188330,,,1239.013158,0.003387671,638,188330,,,295.1880878,3450,,,,,,1889,5094,3798,3184,0.48,,,,,,0.29,0.44,0.32,0.5,0.44,,,,,,0.48,0.29,0.31,0.47,0.905491806,118681,131068,0.89762592,0.913357692,0.632711621,28224,44608,0.601686232,0.66373701,0.055677292,4599,82601,,,0.251,9819,,0.202148936,0.299851064,,,,0.020790021,0,0.171282898,0.509115117,0.440536814,0.577693419,0.447377502,0.373962565,0.520792439,0.127393159,0.098474989,0.156311328,4.703277273,114379,24319,4.384830705,5.021723841,0.296469714,11967,40365,0.267648563,0.325290865,11.23471051,213,189591,,,96.14456112,916,952732,89.91821791,102.3709043,,,,,,,135.9460766,118.7105801,153.1815732,75.46717777,57.9910515,96.55530341,89.58283903,82.34809374,96.81758432,,,,7.9,,,,,0,,,,,0.125474804,9910,78980,0.113787948,0.13716166,0.115586915,0.105431907,0.125741922,0.011268676,0.00738358,0.015153771,0.005887567,0.003701864,0.008073269,0.807889987,64447,79772,0.791545724,0.824234249,,,,0.783487784,0.652073854,0.914901714,0.777693041,0.720307181,0.835078902,0.756812189,0.697663884,0.815960493,0.839132284,0.824070619,0.854193949,0.243,,79772,0.226750252,0.259249748,75.33009919,,,74.91089322,75.74930516,,,,84.47850207,79.43926394,89.51774019,68.83872507,67.78339623,69.8940539,74.22118147,72.58087162,75.86149131,77.44003649,76.99030161,77.88977138,,,,469.6696815,3324,522111,452.631243,486.7081201,,,,,,,778.80834,725.7953633,831.8213166,541.904684,472.1365923,611.6727756,387.3604314,369.3849932,405.3358697,,,,73.17073171,135,184500,60.82756527,85.51389814,,,,,,,146.1567951,111.7983673,187.7445177,86.44400786,54.1739995,130.8772668,40.75211342,29.49250655,54.89282934,,,,8.480235043,127,14976,7.005336657,9.955133429,,,,,,,15.23715901,11.68224244,19.53335018,13.47393087,8.541316366,20.21751195,4.291845494,2.98942764,5.968918132,,,,,,,0.121,,,0.104,0.137,0.178,,,0.154,0.202,0.108,,,0.093,0.124,147.4,237,160822,,,0.136,25900,,,,0.113765587,22772.34374,200169,,,30.35098369,173,569998,25.82820027,34.8737671,,,,,,,44.73974793,32.87308397,59.49438025,33.34968122,19.42741828,53.39607026,26.51721834,21.42077306,31.61366363,,,,0.373,,,0.358,0.387,0.070620806,7525,106555,0.059897402,0.08134421,0.029024943,1216,41895,0.020684518,0.037365369,0.001815961,342,188330,,,550.6725146,0.782165242,1647.24,2106,,,0.065826071,710,10786,0.042667084,0.088985058,2.860792015,,,,,,3.694638038,2.296957236,2.596322128,3.227253701,2.73998789,,,,,,3.985884357,2.208308502,2.374252972,3.104322431,0.296017288,,,,,-7398.524692,,,,,0.784416961,44398,56600,0.749801382,0.81903254,54064,,,51081.70213,57046.29787,25962,8995.191489,42928.80851,170450,117265.4894,223634.5106,34565,30583.04255,38546.95745,54688,46525.10638,62850.89362,62773,60527.04255,65018.95745,,,,,,0.589410434,15106,25629,,,65.4001426,,,,,0.365159811,,54064,,,9.156670635,100,10921,,,10.90883279,146,1338365,9.139302798,12.67836279,,,,,,,44.07762515,35.80275839,52.35249191,10.38925059,5.368277383,18.14792998,2.267612873,1.403688109,3.466287155,,,,13.81778001,135,952732,11.38549616,16.25006386,14.16977702,,,,,,,,,,,,,16.18300758,12.98918559,19.37682957,,,,18.05334554,172,952732,15.35529834,20.75139273,,,,,,,49.48664714,39.63677571,61.04159642,,,,11.25488979,8.837509239,14.12948348,,,,11.65601312,156,1338365,9.826886376,13.48513987,,,,,,,11.72707458,7.853805896,16.84203527,11.25502147,5.992824916,19.24642949,11.87797219,9.658232577,14.09771181,,,,0,,16100,,,0,,0.696938432,103349,148290,,,0.728,,,,,80.81901043,,,,,0.727435897,56740,78000,0.71443827,0.740433525,0.122315186,9254,75657,0.11104606,0.133584312,0.861230769,67176,78000,0.849091096,0.873370442,188330,,,,,0.211432061,39819,188330,,,0.204757606,38562,188330,,,0.182509425,34372,188330,,,0.005941698,1119,188330,,,0.013258642,2497,188330,,,0.00062656,118,188330,,,0.093123772,17538,188330,,,0.68482982,128974,188330,,,0.003886358,696,179088,0.001950227,0.005822488,0.511920565,96410,188330,,,0.326150302,62009,190124,, -26,147,26147,MI,St. Clair County,2024,1,9604.196709,3003,441044,9025.656566,10182.73685,0,,,,2,,,,2,20082.56233,14798.14745,25366.9772,,5985.719265,3873.641905,8836.102426,,9365.878041,8773.139459,9958.616623,,,,,2,,0.154,,,0.128,0.182,3.925687945,,,3.116376989,4.781703494,5.46260906,,,4.468061103,6.450337823,0.073855525,776,10507,0.068854632,0.078856418,0,,,,,,,0.110803324,0.078423254,0.143183394,0.064748201,0.041128948,0.088367455,0.071923282,0.066696124,0.07715044,,,,0.079051383,0.045803175,0.112299592,0.196,,,0.154,0.238,0.356,,,0.291,0.42,7,0.122467737,0.12,,,0.233,,,0.189,0.28,0.75070924,120401,160383,,,0.18746337,,,0.151899657,0.225115116,0.263157895,25,95,0.210493627,0.317782777,211.2,338,160053,,,15.08561696,496,32879,13.75798313,16.41325079,,,,,,,35.55555556,24.31997368,50.19383564,21.39800285,15.60785011,28.63221136,13.92103108,12.54115815,15.30090402,,,,17.25377426,11.05481873,25.67224845,0.060356386,7743,128288,0.05201596,0.068696811,0.000437355,70,160053,,,2286.471429,0.000630655,101,160151,,,1585.653465,0.002734919,438,160151,,,365.6415525,4117,,,,,,,6381,2943,4097,0.37,,,,,,0.5,0.28,0.35,0.37,0.43,,,,,0.64,0.47,0.33,0.32,0.43,0.91921466,105342,114600,0.911850004,0.926579316,0.642969809,23235,36137,0.610684632,0.675254987,0.038973103,2895,74282,,,0.171,5390,,0.125723404,0.216276596,,,,,,,0.440537746,0.296698162,0.584377329,0.200215866,0.10443968,0.295992052,0.151507353,0.132355314,0.170659392,4.184892157,127476,30461,3.994966009,4.374818306,0.228076056,7485,32818,0.20009903,0.256053082,8.497185307,136,160053,,,98.59990642,786,797161,91.70669972,105.4931131,,,,,,,186.9935591,130.9679899,258.8779061,49.89842107,27.27993113,83.72107183,99.97504071,92.69760031,107.2524811,,,,7.6,,,,,0,,,,,0.114588092,7525,65670,0.105145721,0.124030463,0.101159131,0.092151281,0.110166981,0.010811634,0.00794015,0.013683118,0.007766103,0.004771246,0.01076096,0.825828413,59439,71975,0.816944062,0.834712763,,,,,,,0.738764045,0.647851658,0.829676432,0.743996375,0.660282322,0.827710429,0.803712913,0.79134677,0.816079056,0.43,,71975,0.410861847,0.449138153,75.1343918,,,74.69223565,75.57654795,,,,,,,66.914516,63.69938747,70.12964454,78.86272529,76.15689693,81.56855365,75.27035496,74.81775489,75.72295502,,,,467.2801664,3003,441044,449.2547797,485.305553,,,,,,,858.4557561,689.3400691,1027.571443,333.8139534,242.5497296,448.1296515,462.297543,443.6620162,480.9330699,,,,54.61118907,79,144659,43.23619267,68.06183588,,,,,,,,,,,,,48.70050811,37.16361825,62.68720752,,,,5.955757232,63,10578,4.576567385,7.620000689,,,,,,,,,,,,,4.654114661,3.381686837,6.247931699,,,,,,,0.116,,,0.098,0.135,0.177,,,0.151,0.203,0.089,,,0.075,0.104,77.7,107,137746,,,0.12,19160,,,,0.122467737,19967.13984,163040,,,37.61959898,180,478474,32.12376024,43.11543771,,,,,,,95.26283883,47.55486592,170.451533,,,,37.71233308,31.94044969,43.48421647,,,,0.333,,,0.316,0.349,0.070325488,6726,95641,0.060793573,0.079857403,0.032012991,1104,34486,0.022481076,0.041544906,0.000874175,140,160151,,,1143.935714,0.826547455,1802.7,2181,,,0.067952918,560,8241,0.048188556,0.087717281,2.974551428,,,,,,,2.400165701,2.476224488,3.061851692,2.847470881,,,,,,,2.297532639,2.456535893,2.923885531,0.11616207,,,,,220.6302571,,,,,0.726009574,45197,62254,0.680923249,0.771095898,64894,,,59806.34043,69981.65957,,,,58229,17063.04255,99394.95745,39545,25471.12766,53618.87234,71538,44915.3617,98160.6383,67946,65822.76596,70069.23404,,,,,,0.465818249,10139,21766,,,67.81142922,,,,,0.313033562,,64894,,,5.781799899,46,7956,,,1.791114817,20,1116623,1.094059462,2.766231566,,,,,,,,,,,,,1.474991519,0.825541556,2.432774201,,,,21.35766162,179,797161,18.04319823,24.67212501,22.45468607,,,,,,,,,,,,,21.82797498,18.31117772,25.34477223,,,,11.66640114,93,797161,9.416291405,14.29212957,,,,,,,,,,,,,12.54859132,10.10334296,15.40688944,,,,11.82135779,132,1116623,9.804680221,13.83803536,,,,,,,,,,,,,11.99659769,9.86780068,14.12539469,,,,16.66666667,,13800,,,230,,0.739380798,92064,124515,,,0.758,,,,,49.41486539,,,,,0.802770159,52974,65989,0.791437811,0.814102506,0.107261671,6932,64627,0.096962323,0.117561018,0.884692903,58380,65989,0.873981496,0.895404311,160151,,,,,0.201054005,32199,160151,,,0.205275022,32875,160151,,,0.023896198,3827,160151,,,0.005494814,880,160151,,,0.005900681,945,160151,,,0.000362158,58,160151,,,0.037995392,6085,160151,,,0.905838865,145071,160151,,,0.002861418,436,152372,0.00171183,0.004011006,0.498423363,79823,160151,,,0.395060574,63361,160383,, -26,149,26149,MI,St. Joseph County,2024,1,10022.87249,1060,168787,9089.01273,10956.73226,0,,,,2,,,,2,22364.31723,14177.05869,33557.45662,1,7159.968567,4830.800725,10221.30034,,10132.95279,9107.680284,11158.2253,,,,,2,,0.174,,,0.145,0.204,3.957241453,,,3.133581408,4.829661624,5.423424655,,,4.393005996,6.512107951,0.066823899,340,5088,0.059962223,0.073685576,0,,,,,,,0.091549296,0.044115259,0.138983333,0.062883436,0.044249817,0.081517055,0.065949821,0.058430125,0.073469516,,,,,,,0.206,,,0.165,0.25,0.385,,,0.311,0.46,7.8,0.055103229,0.119,,,0.261,,,0.216,0.314,0.61955398,37755,60939,,,0.169331632,,,0.135160434,0.206884848,0.287878788,19,66,0.224103765,0.353358293,325.9,198,60758,,,24.1881299,324,13395,21.55431131,26.82194849,,,,,,,64.1025641,39.15551149,99.00121123,29.42722018,22.22900588,38.21369312,22.76190476,19.87610813,25.6477014,,,,,,,0.090220064,4440,49213,0.07830517,0.102134957,0.000279799,17,60758,,,3574,0.000328548,20,60874,,,3043.7,0.002069849,126,60874,,,483.1269841,2464,,,,,,,,1639,2415,0.38,,,,,,,0.26,,0.38,0.45,,,,,,0.54,0.23,0.27,0.46,0.872243161,35871,41125,0.860936614,0.883549708,0.510728422,7355,14401,0.472736803,0.54872004,0.042642643,1207,28305,,,0.187,2674,,0.139340426,0.234659575,,,,,,,0.116788321,0,0.265821747,0.205895901,0.11128481,0.300506991,0.155975073,0.119960909,0.191989238,3.963649323,111220,28060,3.687890047,4.239408599,0.195090614,2885,14788,0.157285262,0.232895966,12.67322822,77,60758,,,98.17441555,299,304560,87.04637238,109.3024587,,,,,,,179.2856158,95.4620396,306.5838632,47.22550177,24.4021059,82.49344765,103.471448,91.15198002,115.790916,,,,8.6,,,,,1,,,,,0.11328125,2755,24320,0.098234748,0.128327752,0.087355372,0.074603457,0.100107287,0.021381579,0.014372698,0.02839046,0.008223684,0.004414289,0.01203308,0.745768934,20314,27239,0.726704798,0.76483307,,,,,,,0.791044776,0.704314253,0.877775299,0.654117647,0.563859308,0.744375986,0.766289834,0.740653735,0.791925934,0.283,,27239,0.259560645,0.306439355,75.15966303,,,74.42678692,75.89253915,,,,,,,,,,77.39859372,72.22421849,82.57296894,75.06885509,74.28452727,75.8531829,,,,475.4093444,1060,168787,445.0211111,505.7975776,,,,,,,906.2301577,634.7124613,1254.604527,415.0886173,273.5460143,603.9321451,478.4999409,446.0454532,510.9544287,,,,74.3114579,48,64593,54.79140282,98.5262121,,,,,,,,,,,,,74.74143504,52.62486782,103.0212228,,,,5.994971959,31,5171,4.073292589,8.509384162,,,,,,,,,,,,,6.121968448,3.999073044,8.970102209,,,,,,,0.121,,,0.103,0.141,0.182,,,0.158,0.21,0.093,,,0.079,0.108,69.4,35,50416,,,0.119,7250,,,,0.055103229,3377.55243,61295,,,14.241113,26,182570,9.302767824,20.86653014,,,,,,,,,,,,,13.41338784,8.303098482,20.50378816,,,,0.344,,,0.328,0.36,0.106771963,3691,34569,0.091282602,0.122261325,0.051463891,791,15370,0.035974529,0.066953252,0.000919933,56,60874,,,1087.035714,0.837581914,639.075,763,,,0.071584189,230,3213,0.040542337,0.102626041,2.858337709,,,,,,,,2.607575072,2.929603087,2.648609687,,,,,,,,2.357892272,2.731099463,0.122938308,,,,,-2844.806689,,,,,0.705390385,39219,55599,0.664917168,0.745863601,60489,,,54972.40426,66005.59575,,,,88235,72493.04255,103976.9575,53257,45397.93617,61116.06383,80294,64905.91489,95682.08511,62102,59928.7234,64275.2766,,,,,,0.573186464,5776,10077,,,61.57987179,,,,,0.303972623,,60489,,,6.659836066,26,3904,,,3.517567907,15,426431,1.968756055,5.801693327,,,,,,,,,,,,,3.537636369,1.883642375,6.049465931,,,,24.08917891,68,304560,18.59151972,30.70363599,22.32729183,,,,,,,,,,,,,23.92442572,17.97276493,31.21618591,,,,12.80535855,39,304560,9.105861732,17.50534669,,,,,,,,,,,,,12.98165768,8.990175323,18.14056543,,,,21.10540744,90,426431,16.97123993,25.94212892,,,,,,,,,,,,,21.77006996,17.26231154,27.09473653,,,,14.83333333,,6000,,,89,,0.629260052,27936,44395,,,0.688,,,,,26.43366967,,,,,0.745123094,17494,23478,0.726439031,0.763807157,0.099951693,2276,22771,0.085623601,0.114279785,0.850966863,19979,23478,0.837234153,0.864699572,60874,,,,,0.239264711,14565,60874,,,0.192742386,11733,60874,,,0.023671847,1441,60874,,,0.006406676,390,60874,,,0.007063771,430,60874,,,0.00031212,19,60874,,,0.090892664,5533,60874,,,0.851184414,51815,60874,,,0.01335062,762,57076,0.009543954,0.017157287,0.495022506,30134,60874,,,0.637194572,38830,60939,, -26,151,26151,MI,Sanilac County,2024,1,8895.282439,764,111100,7791.06694,9999.497939,0,,,,2,,,,2,,,,2,12064.81159,7150.371978,19067.60377,1,8769.878767,7628.520387,9911.237147,,,,,2,,0.172,,,0.146,0.201,3.949994798,,,3.133835985,4.891963176,5.452031328,,,4.397032677,6.609970987,0.068245125,196,2872,0.059022586,0.077467665,0,,,,,,,,,,,,,0.067307692,0.057863729,0.076751655,,,,,,,0.215,,,0.175,0.259,0.355,,,0.281,0.43,7.5,0.049061319,0.136,,,0.255,,,0.207,0.301,0.404988796,16447,40611,,,0.157931789,,,0.125374037,0.194100301,0.333333333,9,27,0.231289482,0.434909506,128.4,52,40506,,,16.51162791,142,8600,13.79580284,19.22745297,,,,,,,,,,,,,16.50548034,13.64605175,19.36490892,,,,,,,0.071809536,2235,31124,0.062277621,0.081341451,0.00032094,13,40506,,,3115.846154,0.000344344,14,40657,,,2904.071429,0.001844701,75,40657,,,542.0933333,2733,,,,,,,,,2731,0.4,,,,,,,,,0.41,0.38,,,,,,,,0.37,0.38,0.908552949,26408,29066,0.900366978,0.916738919,0.561834562,4802,8547,0.520614039,0.603055085,0.052528045,988,18809,,,0.197,1640,,0.142191489,0.251808511,,,,,,,,,,0.141434263,0.08158727,0.201281256,0.239023088,0.202650567,0.275395609,4.081624788,105910,25948,3.821297434,4.341952142,0.195300686,1679,8597,0.15962809,0.230973283,9.381326223,38,40506,,,72.23952283,148,204874,60.60094052,83.87810514,,,,,,,,,,125.7071025,60.28144181,231.1798371,71.37349699,59.42171222,83.32528176,,,,7.9,,,,,0,,,,,0.102957589,1845,17920,0.090467669,0.11544751,0.081004798,0.069810642,0.092198954,0.015569196,0.010304463,0.02083393,0.014508929,0.010260233,0.018757625,0.775110068,13204,17035,0.75172401,0.798496125,,,,,,,,,,0.632302406,0.493375131,0.77122968,0.746300211,0.728754551,0.763845872,0.396,,17035,0.366093854,0.425906146,75.90597864,,,75.05086859,76.76108868,,,,,,,,,,,,,75.89363699,75.01461208,76.77266189,,,,442.9494899,764,111100,408.2621798,477.6368,,,,,,,,,,546.5997492,350.2167731,813.2970996,439.9681253,404.4706474,475.4656032,,,,47.24781479,18,38097,28.00204945,74.67191713,,,,,,,,,,,,,49.28536225,28.71053973,78.91063931,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.124,,,0.107,0.142,0.183,,,0.158,0.211,0.096,,,0.081,0.111,69.3,24,34656,,,0.136,5550,,,,0.049061319,2115.2297,43114,,,15.51995949,19,122423,9.344029443,24.23633923,,,,,,,,,,,,,14.85170139,8.651663364,23.77901264,,,,0.34,,,0.323,0.357,0.082650093,1875,22686,0.06954371,0.095756476,0.042749466,380,8889,0.029643083,0.055855849,0.000713284,29,40657,,,1401.965517,0.868832599,394.45,454,,,0.136476427,275,2015,0.092116343,0.180836511,3.00517213,,,,,,,,3.188052315,3.003976961,2.868583595,,,,,,,,2.895560622,2.873462861,0.051356347,,,,,-2834.507714,,,,,0.790064227,40840,51692,0.724116139,0.856012315,56079,,,50240.70213,61917.29787,46000,43776.68085,48223.31915,33854,25492.12766,42215.87234,,,,59286,22498.76596,96073.23404,56166,53642.42553,58689.57447,,,,,,0.573554863,3314,5778,,,,,,,,0.323329589,,56079,,,10.06229037,21,2087,,,,,,,,,,,,,,,,,,,,,,,,,,14.14009905,31,204874,9.236782159,20.71852131,15.1312514,,,,,,,,,,,,,15.1334795,9.88569125,22.17405383,,,,10.25020256,21,204874,6.345036942,15.66852345,,,,,,,,,,,,,10.94046304,6.772319057,16.72365992,,,,15.98565461,46,287758,11.7035083,21.32262308,,,,,,,,,,,,,15.18996721,10.90058273,20.60690572,,,,28.05555556,,3600,,,101,,0.700233973,22446,32055,,,0.631,,,,,10.38836371,,,,,0.797120722,13787,17296,0.788282667,0.805958776,0.094114801,1556,16533,0.080086499,0.108143103,0.81232655,14050,17296,0.796228859,0.82842424,40657,,,,,0.207516541,8437,40657,,,0.233932656,9511,40657,,,0.006370367,259,40657,,,0.006616327,269,40657,,,0.004476474,182,40657,,,0.000319748,13,40657,,,0.043411959,1765,40657,,,0.929483238,37790,40657,,,0.005419495,210,38749,0.00240689,0.0084321,0.4956834,20153,40657,,,0.936445791,38030,40611,, -26,153,26153,MI,Schoolcraft County,2024,1,7761.58476,150,21598,5099.766911,10423.40261,0,,,,2,,,,2,,,,2,,,,2,7765.158507,4742.051982,10788.26503,,,,,2,,0.178,,,0.151,0.208,4.082082813,,,3.267642626,5.03432774,5.693355953,,,4.601802354,6.861127628,0.088300221,40,453,0.062171762,0.114428679,0,,,,,,,,,,,,,0.082386364,0.053662534,0.111110193,,,,,,,0.221,,,0.181,0.264,0.387,,,0.305,0.474,5.8,0.185750287,0.148,,,0.251,,,0.205,0.301,0.673915745,5423,8047,,,0.153346766,,,0.121394419,0.189372584,0.428571429,3,7,0.219826693,0.607881191,149.4,12,8030,,,19.74723539,25,1266,12.77936955,29.15081493,,,,,,,,,,,,,18.09045226,10.72154852,28.59071384,,,,,,,0.085046067,480,5644,0.071939684,0.09815245,0.000747198,6,8030,,,1338.333333,0.00073278,6,8188,,,1364.666667,0.002808989,23,8188,,,356,1186,,,,,,,,,1250,0.51,,,,,0.53,,,,0.51,0.12,,,,,0.06,,,,0.12,0.889552721,5509,6193,0.865401962,0.913703479,0.60875513,890,1462,0.51403573,0.70347453,0.077591758,241,3106,,,0.194,279,,0.121319149,0.266680851,0.436170213,0.172783745,0.699556681,,,,,,,,,,0.24566474,0.159520374,0.331809106,4.690783535,103929,22156,3.805667976,5.575899094,0.249821556,350,1401,0.140084826,0.359558286,8.717310087,7,8030,,,79.31590036,32,40345,54.25201713,111.9703856,,,,,,,,,,,,,81.28429181,54.0128216,117.4784334,,,,4.2,,,,,0,,,,,0.100680272,370,3675,0.074646896,0.126713648,0.095435685,0.065192988,0.125678381,0.004897959,0,0.013113384,0.010884354,0.001176867,0.020591841,0.832329636,2626,3155,0.804763005,0.859896266,,,,,,,,,,,,,0.809850626,0.762709675,0.856991577,0.208,,3155,0.158056836,0.257943164,77.29140922,,,75.20212592,79.38069252,,,,,,,,,,,,,77.2267171,74.88734014,79.56609407,,,,370.7253063,150,21598,300.0612273,441.3893852,,,,,,,,,,,,,368.4581949,292.009881,444.9065089,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.127,,,0.109,0.147,0.187,,,0.163,0.216,0.099,,,0.085,0.116,,,,,,0.148,1190,,,,0.185750287,1576.091183,8485,,,,,,,,,,,,,,,,,,,,,,,,,,0.346,,,0.33,0.362,0.096706377,414,4281,0.080025526,0.113387228,0.047585724,68,1429,0.032096363,0.063075086,0.001465559,12,8188,,,682.3333333,0.875,58.625,67,,,,,,,,2.791310612,,,,,,,,,2.892963929,2.593224103,,,,,,,,,2.624827911,0.029967553,,,,,-321.6523,,,,,0.617454546,39054,63250,0.430683824,0.804225267,56707,,,49294.74468,64119.25532,42308,29986.80851,54629.19149,44583,33253.12766,55912.87234,,,,36776,14771.57447,58780.42553,55765,48869.85106,62660.14894,,,,,,0.718881119,514,715,,,,,,,,0.300685982,,56707,,,9.090909091,3,330,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,38.33333333,,600,,,23,,0.712997746,4745,6655,,,0.48,,,,,7.948825261,,,,,0.842800528,3190,3785,0.815522381,0.870078676,0.082462892,300,3638,0.05551588,0.109409903,0.845442536,3200,3785,0.815531677,0.875353395,8188,,,,,0.179286761,1468,8188,,,0.285906204,2341,8188,,,0.004396678,36,8188,,,0.093429409,765,8188,,,0.002564729,21,8188,,,0,0,8188,,,0.017220322,141,8188,,,0.847703957,6941,8188,,,0.006739243,52,7716,0,0.015898194,0.497923791,4077,8188,,,1,8047,8047,, -26,155,26155,MI,Shiawassee County,2024,1,7646.533029,1095,188196,6880.658269,8412.407789,0,,,,2,,,,2,,,,2,11458.56112,6264.501993,19225.51853,1,7568.376316,6784.56157,8352.191063,,,,,2,,0.155,,,0.128,0.182,3.798493159,,,2.957892162,4.632145832,5.663702669,,,4.56330478,6.706970366,0.079154579,382,4826,0.071537407,0.086771752,0,,,,,,,,,,,,,0.079091108,0.07127235,0.086909866,,,,,,,0.192,,,0.153,0.235,0.355,,,0.283,0.426,7.3,0.096703855,0.119,,,0.238,,,0.192,0.287,0.719857844,49018,68094,,,0.175810854,,,0.139061273,0.213071272,0.378378378,14,37,0.293800947,0.460584183,231.3,157,67877,,,16.92785823,256,15123,14.8541956,19.00152086,,,,,,,,,,,,,17.83374582,15.60060761,20.06688402,,,,,,,0.055479856,3013,54308,0.04713943,0.063820281,0.000368313,25,67877,,,2715.08,0.000441034,30,68022,,,2267.4,0.001999353,136,68022,,,500.1617647,2998,,,,,,,,,3003,0.41,,,,,,,,,0.41,0.45,,,,,,0.46,,0.4,0.45,0.921062939,44678,48507,0.911739751,0.930386128,0.667808646,10721,16054,0.626757421,0.708859871,0.04772113,1536,32187,,,0.153,2083,,0.107723404,0.198276596,,,,,,,0.128712871,0,0.590209717,0.288851351,0.079078335,0.498624367,0.129333759,0.099102718,0.159564801,3.914401991,116383,29732,3.607905469,4.220898513,0.1843292,2616,14192,0.1542092,0.214449199,9.870795704,67,67877,,,79.03048109,269,340375,69.58607708,88.4748851,,,,,,,,,,,,,79.16120413,69.40663249,88.91577576,,,,8.1,,,,,1,,,,,0.106087896,2945,27760,0.087677277,0.124498516,0.088654161,0.071109245,0.106199077,0.012788184,0.008036155,0.017540214,0.006664265,0.002554972,0.010773559,0.815730909,25658,31454,0.792802126,0.838659691,,,,,,,,,,0.793557833,0.68134694,0.905768726,0.773247893,0.74701379,0.799481997,0.447,,31454,0.416090093,0.477909907,76.55211283,,,75.92524558,77.17898008,,,,,,,,,,77.70278629,71.03904372,84.36652886,76.50784917,75.86861398,77.14708437,,,,397.2678807,1095,188196,372.1858783,422.3498831,,,,,,,,,,428.9677311,271.9287442,643.6622178,397.9311262,372.265872,423.5963805,,,,52.08415537,33,63359,35.85233601,73.14551882,,,,,,,,,,,,,52.37247303,35.33548763,74.76496176,,,,5.994212485,29,4838,4.014418176,8.608689012,,,,,,,,,,,,,5.887483646,3.879888821,8.5659796,,,,,,,0.115,,,0.097,0.133,0.176,,,0.151,0.201,0.086,,,0.073,0.101,80.8,47,58141,,,0.119,8100,,,,0.096703855,6831.933975,70648,,,17.66983906,36,203737,12.37573804,24.46250533,,,,,,,,,,,,,17.26925915,11.88736339,24.25246049,,,,0.34,,,0.323,0.356,0.065010649,2625,40378,0.054287245,0.075734054,0.028526689,419,14688,0.020186263,0.036867114,0.000984975,67,68022,,,1015.253731,0.874229452,765.825,876,,,0.052735477,187,3546,0.025115775,0.080355179,3.000652524,,,,,,,,3.038792597,2.997254154,2.803639673,,,,,,,,2.858370376,2.812294729,0.034392619,,,,,70.83057375,,,,,0.77654321,44030,56700,0.735475273,0.817611147,61959,,,58434.57447,65483.42553,,,,70658,51591.78723,89724.21277,,,,69940,15797.53192,124082.4681,62019,58791.25532,65246.74468,,,,,,0.498004561,5241,10524,,,70.463454,,,,,0.303200504,,61959,,,6.783493499,24,3538,,,,,,,,,,,,,,,,,,,,,,,,,,16.14388951,57,340375,12.05702886,21.17056325,16.74623577,,,,,,,,,,,,,15.08823854,11.04648695,20.1255958,,,,12.04553801,41,340375,8.644086043,16.34113245,,,,,,,,,,,,,12.20271526,8.677323441,16.68151347,,,,12.354779,59,477548,9.405030202,15.93676476,,,,,,,,,,,,,12.47657857,9.424673366,16.20187505,,,,28.79310345,,5800,,,167,,0.733364495,39224,53485,,,0.752,,,,,37.50147001,,,,,0.77908684,21756,27925,0.759596188,0.798577492,0.10363244,2833,27337,0.087528259,0.11973662,0.847162041,23657,27925,0.832775774,0.861548309,68022,,,,,0.204463262,13908,68022,,,0.20052336,13640,68022,,,0.006836024,465,68022,,,0.005601129,381,68022,,,0.005263003,358,68022,,,0.000808562,55,68022,,,0.031739731,2159,68022,,,0.936388227,63695,68022,,,0.00337524,218,64588,0.001002172,0.005748308,0.501999353,34147,68022,,,0.597835345,40709,68094,, -26,157,26157,MI,Tuscola County,2024,1,9186.224342,1018,143384,8200.392325,10172.05636,0,,,,2,,,,2,,,,2,,,,2,9074.574122,8055.086164,10094.06208,,,,,2,,0.167,,,0.14,0.197,3.948283049,,,3.09330775,4.880818341,5.458493764,,,4.373184451,6.590787714,0.069792803,256,3668,0.061546931,0.078038674,0,,,,,,,,,,0.090277778,0.043469824,0.137085732,0.069191769,0.0606017,0.077781837,,,,,,,0.211,,,0.168,0.26,0.411,,,0.335,0.495,7.4,0.067971194,0.131,,,0.236,,,0.191,0.287,0.545486938,29087,53323,,,0.166216614,,,0.132940234,0.204313584,0.44,22,50,0.371515086,0.505292591,185.2,98,52917,,,17.91867678,182,10157,15.31536422,20.52198933,,,,,,,,,,,,,18.56407962,15.74000967,21.38814958,,,,,,,0.060839552,2503,41141,0.052499126,0.069179977,0.00030236,16,52917,,,3307.3125,0.000358863,19,52945,,,2786.578947,0.003022004,160,52945,,,330.90625,2670,,,,,,,,,2683,0.45,,,,,,,,,0.45,0.35,,,,,,,0.62,0.23,0.35,0.91534364,35227,38485,0.904700368,0.925986912,0.55959109,6733,12032,0.518336565,0.600845616,0.054268985,1242,22886,,,0.19,1931,,0.139957447,0.240042553,0.042253521,0,0.66655745,0.161290323,0,0.877589782,0.441558442,0.079848918,0.803267965,0.140405616,0.037019708,0.243791524,0.143109736,0.117069292,0.169150179,3.933646357,108073,27474,3.589270567,4.278022147,0.178285067,1890,10601,0.145991463,0.210578672,11.71646163,62,52917,,,92.49003734,243,262731,80.86088956,104.1191851,,,,,,,,,,,,,92.42144177,80.37178737,104.4710962,,,,7.7,,,,,0,,,,,0.104511971,2270,21720,0.09260579,0.116418151,0.087817377,0.075965826,0.099668928,0.01519337,0.010755752,0.019630989,0.006675875,0.003939644,0.009412106,0.837654211,18740,22372,0.822527086,0.852781336,,,,,,,,,,0.823281907,0.689824139,0.956739676,0.829837345,0.804244537,0.855430152,0.418,,22372,0.384787568,0.451212432,75.3017993,,,74.54023145,76.06336715,,,,,,,,,,77.73114433,70.2031191,85.25916957,75.30714958,74.52566873,76.08863043,,,,465.9275853,1018,143384,434.9156005,496.9395701,,,,,,,,,,,,,463.841013,432.0184786,495.6635474,,,,53.59631257,25,46645,34.68470757,79.11873019,,,,,,,,,,,,,53.57229825,33.5734741,81.10910336,,,,6.13660619,23,3748,3.89008192,9.207922331,,,,,,,,,,,,,,,,,,,,,,0.121,,,0.103,0.14,0.179,,,0.154,0.205,0.096,,,0.081,0.112,28.5,13,45674,,,0.131,6990,,,,0.067971194,3787.96667,55729,,,19.05354682,30,157451,12.85534803,27.20012283,,,,,,,,,,,,,17.0971735,11.06438922,25.2388008,,,,0.374,,,0.356,0.39,0.071486465,2205,30845,0.059571571,0.083401358,0.029395503,319,10852,0.021055078,0.037735929,0.000849939,45,52945,,,1176.555556,0.798305785,482.975,605,,,0.064276885,156,2427,0.036248759,0.092305012,3.03198409,,,,,,,,3.047052553,3.024287467,3.041775352,,,,,,,,2.810520891,3.048480593,0.050807175,,,,,-935.092575,,,,,0.788476602,43285,54897,0.721207141,0.855746062,61978,,,57113.14894,66842.85106,,,,,,,28833,2190.106383,55475.89362,52891,38308.3617,67473.6383,60272,57940.25532,62603.74468,,,,,,0.598574131,4114,6873,,,69.01591642,,,,,0.301526348,,61978,,,8.064516129,21,2604,,,,,,,,,,,,,,,,,,,,,,,,,,19.06846259,51,262731,13.90866746,25.51510321,19.41148932,,,,,,,,,,,,,17.09415275,12.15561366,23.36826954,,,,13.70222775,36,262731,9.596871864,18.96965889,,,,,,,,,,,,,14.31305514,9.969567338,19.90599487,,,,18.65641375,69,369846,14.51580349,23.61088564,,,,,,,,,,,,,19.72586845,15.3179087,25.00723857,,,,43.63636364,,4400,,,192,,0.705438428,29445,41740,,,0.736,,,,,8.329172723,,,,,0.849288967,18275,21518,0.835379597,0.863198337,0.088954852,1858,20887,0.075946013,0.101963691,0.793289339,17070,21518,0.777293458,0.80928522,52945,,,,,0.199886675,10583,52945,,,0.218736425,11581,52945,,,0.011502503,609,52945,,,0.007517235,398,52945,,,0.003985268,211,52945,,,0.000415526,22,52945,,,0.040041553,2120,52945,,,0.924922089,48970,52945,,,0.001444058,73,50552,0,0.00350717,0.490622344,25976,52945,,,0.899049191,47940,53323,, -26,159,26159,MI,Van Buren County,2024,1,8715.712548,1262,210528,7950.597084,9480.828012,0,,,,2,,,,2,15428.56849,10078.45318,22606.42757,,7689.509505,5823.959407,9962.651467,,8398.939473,7558.578339,9239.300607,,,,,2,,0.167,,,0.14,0.196,3.703546405,,,2.940996887,4.527538271,5.288039225,,,4.307321297,6.296904828,0.076356788,446,5841,0.069546141,0.083167436,0,,,,,,,0.096045198,0.052636114,0.139454282,0.068226121,0.052798001,0.08365424,0.076766765,0.068926232,0.084607297,,,,0.082089552,0.035611516,0.128567589,0.195,,,0.154,0.236,0.371,,,0.303,0.438,8.2,0.017066961,0.117,,,0.24,,,0.195,0.286,0.599944435,45348,75587,,,0.173366013,,,0.140330188,0.208846181,0.375,30,80,0.319080416,0.430131446,310.6,235,75658,,,21.58894646,350,16212,19.32715011,23.85074281,,,,,,,14.00560224,6.716230667,25.75680118,29.53724975,23.75143687,36.30629465,20.03833421,17.44860849,22.62805992,,,,24.28571429,14.14732353,38.88378117,0.087494672,5337,60998,0.075579778,0.099409566,0.00050226,38,75658,,,1991,0.000343497,26,75692,,,2911.230769,0.001426835,108,75692,,,700.8518519,2500,,,,,,,3119,1739,2458,0.43,,,,,0.45,,0.36,0.29,0.44,0.4,,,,,0.65,0.4,0.22,0.17,0.41,0.884303371,46219,52266,0.871958478,0.896648264,0.573469738,10034,17497,0.532846841,0.614092634,0.050935825,1739,34141,,,0.182,3064,,0.135531915,0.228468085,,,,,,,0.611788618,0.455922822,0.767654413,0.243753632,0.17039943,0.317107833,0.160936847,0.128235764,0.193637929,4.371425488,121530,27801,4.0016169,4.741234077,0.255476971,4443,17391,0.213210258,0.297743684,9.516508499,72,75658,,,96.13092874,363,377610,86.24162088,106.0202366,,,,,,,110.2373778,61.69902354,181.8197903,33.59011107,18.80013018,55.40177999,103.1549026,91.76314681,114.5466585,,,,8.3,,,,,0,,,,,0.123828648,3700,29880,0.107870007,0.139787289,0.099169351,0.083900639,0.114438063,0.02476573,0.018156456,0.031375003,0.009370817,0.003978127,0.014763506,0.783167031,26529,33874,0.759618349,0.806715713,,,,,,,0.793621013,0.70654584,0.880696186,0.65748278,0.603039207,0.711926354,0.762503392,0.746426052,0.778580731,0.328,,33874,0.302004771,0.353995229,76.10620572,,,75.48962397,76.72278748,,,,,,,70.50709066,66.66248842,74.35169291,78.80750522,75.74709011,81.86792032,76.33703785,75.66425031,77.00982539,,,,427.7088617,1262,210528,402.4023885,453.015335,,,,,,,692.6605201,525.966173,895.4243447,406.965809,317.2498133,514.1768168,414.1279244,386.950096,441.3057529,,,,40.52446501,31,76497,27.53440786,57.52124332,,,,,,,,,,,,,33.39517625,19.79209792,52.77877601,,,,4.556962025,27,5925,3.003066689,6.630140497,,,,,,,,,,,,,,,,,,,,,,0.118,,,0.102,0.137,0.174,,,0.15,0.199,0.096,,,0.082,0.112,118.4,75,63369,,,0.117,8860,,,,0.017066961,1301.492325,76258,,,26.45397669,60,226809,20.18717112,34.0515118,,,,,,,,,,,,,27.30599093,20.26703279,35.9995449,,,,0.355,,,0.337,0.369,0.105728487,4616,43659,0.090239125,0.121217848,0.042079208,765,18180,0.028972825,0.055185591,0.00073984,56,75692,,,1351.642857,0.722386896,926.1,1282,,,0.061927242,223,3601,0.024829519,0.099024966,2.980778202,,,,,,,2.461194265,2.613966163,3.119484771,2.843283883,,,,,,,2.355297075,2.360848891,3.024997553,0.151552112,,,,,-6071.107936,,,,,0.776624909,44760,57634,0.722777113,0.830472704,61638,,,55492.29787,67783.70213,44219,33120.2766,55317.7234,,,,41058,19733.91489,62382.08511,50746,44490.68085,57001.31915,68771,65688.61702,71853.38298,,,,,,0.540350157,7901,14622,,,60.60311611,,,,,0.311285246,,61638,,,9.454705365,43,4548,,,3.220245875,17,527910,1.875911892,5.155925596,,,,,,,,,,,,,2.571108685,1.283488192,4.600423652,,,,17.78526976,69,377610,13.66668962,22.75508597,18.27282117,,,,,,,,,,,,,19.7374802,14.90948043,25.63075978,,,,11.1225868,42,377610,8.016182234,15.03450618,,,,,,,,,,,,,11.13417997,7.7107433,15.5589005,,,,15.91180315,84,527910,12.69187735,19.69989501,,,,,,,,,,,,,16.82907503,13.16771475,21.1934348,,,,23.71428571,,7000,,,166,,0.702436393,39066,55615,,,0.643,,,,,21.81854276,,,,,0.80147928,23731,29609,0.786175089,0.816783471,0.112903226,3234,28644,0.096900484,0.128905968,0.868114425,25704,29609,0.857081554,0.879147296,75692,,,,,0.226734662,17162,75692,,,0.200047561,15142,75692,,,0.033649527,2547,75692,,,0.012062041,913,75692,,,0.007147387,541,75692,,,0.000594515,45,75692,,,0.123262696,9330,75692,,,0.803691275,60833,75692,,,0.015897069,1133,71271,0.011549051,0.020245087,0.499801829,37831,75692,,,0.780517814,58997,75587,, -26,161,26161,MI,Washtenaw County,2024,1,5624.085835,3337,1039467,5330.647591,5917.52408,0,,,,2,2480.865265,1816.305176,3309.126603,,10815.47524,9671.685098,11959.26538,,3749.419903,2839.77402,4857.808378,,5210.929489,4877.674277,5544.184702,,,,,2,,0.116,,,0.098,0.138,3.01893049,,,2.452023936,3.669198706,5.15152706,,,4.454719593,5.903300327,0.076199592,1831,24029,0.072844893,0.079554292,0,,,,0.069777044,0.059630484,0.079923603,0.137673426,0.126642366,0.148704485,0.062823356,0.049893953,0.075752758,0.062589367,0.058761927,0.066416807,,,,0.098930481,0.077533649,0.120327314,0.116,,,0.091,0.148,0.287,,,0.251,0.327,8.2,0.060622713,0.096,,,0.158,,,0.132,0.188,0.901278146,335508,372258,,,0.172945543,,,0.147941579,0.201732628,0.344594595,51,148,0.303499169,0.385693804,393.1,1452,369390,,,4.696900398,534,113692,4.298521071,5.095279725,,,,,,,15.9244848,13.82493913,18.02403046,8.737712592,6.60037419,11.34664659,2.487431234,2.132800596,2.842061871,,,,8.710503843,6.485542244,11.45270391,0.05054954,14989,296521,0.044592093,0.056506986,0.001775901,656,369390,,,563.0945122,0.002066183,757,366376,,,483.984148,0.007137476,2615,366376,,,140.1055449,3036,,,,,,978,5930,1663,2793,0.45,,,,,,0.39,0.41,0.39,0.46,0.54,,,,,,0.56,0.39,0.45,0.56,0.9576209,224474,234408,0.953367686,0.961874115,0.858050715,82227,95830,0.836464727,0.879636703,0.036341064,7084,194931,,,0.102,6604,,0.076978723,0.127021277,,,,0.085895286,0.045277143,0.126513429,0.299167478,0.235414851,0.362920105,0.141096979,0.092459447,0.189734512,0.059634858,0.047959664,0.071310053,5.174378723,171986,33238,4.889879652,5.458877794,0.217424918,14624,67260,0.195135196,0.239714641,9.85408376,364,369390,,,63.89606385,1177,1842054,60.24565133,67.54647637,,,,18.65573751,12.76051065,26.33633501,90.90086831,78.33402864,103.467708,40.60089322,28.5867757,55.96298311,67.74433057,63.25558489,72.23307626,,,,8.7,,,,,0,,,,,0.165163591,23625,143040,0.15619013,0.174137051,0.15208385,0.14307486,0.16109284,0.01216443,0.009981789,0.01434707,0.006606544,0.004936028,0.00827706,0.633640066,116854,184417,0.623433419,0.643846712,0.804100228,0.624907228,0.983293228,0.5404872,0.505087449,0.575886951,0.704597084,0.668801441,0.740392727,0.620406321,0.571519444,0.669293198,0.709843725,0.700877614,0.718809836,0.319,,184417,0.304851848,0.333148152,80.44858114,,,80.14677341,80.75038887,,,,92.21498487,89.47884454,94.9511252,74.70357949,73.74696892,75.66019005,85.72641076,82.67886196,88.77395955,80.68733386,80.35302012,81.0216476,,,,278.1147236,3337,1039467,268.344233,287.8852143,,,,114.4292924,91.14229266,141.8523244,500.3441207,461.4546254,539.233616,208.8660415,162.1926539,264.7874765,263.9498203,252.8920777,275.0075629,,,,39.67421799,140,352874,33.1021745,46.24626148,,,,37.94226452,19.60532175,66.27750039,89.01133835,64.15154336,120.3174712,,,,29.23316104,22.60892463,37.19174847,,,,5.14369693,126,24496,4.245552522,6.041841339,,,,,,,14.09553641,10.58900078,18.39161744,,,,3.234193671,2.40806962,4.25236739,,,,,,,0.087,,,0.074,0.101,0.153,,,0.133,0.174,0.081,,,0.07,0.094,186.2,600,322240,,,0.096,35650,,,,0.060622713,20902.16585,344791,,,20.39033444,225,1103464,17.72599741,23.05467147,,,,,,,34.11623781,24.88461797,45.65021038,,,,21.59715487,18.32152835,24.87278138,,,,0.338,,,0.324,0.352,0.057546331,13138,228303,0.049205905,0.065886757,0.028516688,2054,72028,0.021367752,0.035665624,0.003769352,1381,366376,,,265.2976104,0.865035714,3148.73,3640,,,0.039845934,1169,29338,0.023199279,0.056492588,3.207628189,,,,,,,2.369546273,2.769064243,3.415407016,3.205424912,,,,,,4.051704524,2.185765428,2.628617548,3.450930602,0.159899652,,,,,1155.141175,,,,,0.766330439,60019,78320,0.728813593,0.803847285,80941,,,75681.76596,86200.23404,78654,53433.74468,103874.2553,92160,81856,102464,51306,48297.48936,54314.51064,68922,55224.6383,82619.3617,90411,87549.04255,93272.95745,,,,,,0.316876994,13710,43266,,,57.73127735,,,,,0.363894689,,80941,,,10.23089395,183,17887,,,3.274033059,84,2565643,2.611496991,4.053475708,,,,,,,17.68795868,13.32499115,23.02330951,,,,1.109739966,0.677858001,1.713903372,,,,11.53520139,218,1842054,9.954067167,13.11633562,11.83461506,,,,5.668591889,2.718310147,10.42474231,8.892532927,5.353885722,13.8867917,,,,12.45038837,10.49088266,14.40989407,,,,7.708785953,142,1842054,6.440848338,8.976723569,,,,,,,21.70767004,16.00552226,28.78122114,,,,6.193767367,4.911272315,7.708679633,,,,6.431136366,165,2565643,5.449836324,7.412436409,,,,,,,10.29117596,7.039156738,14.52806985,,,,6.602952796,5.416581083,7.789324509,,,,8.644688645,,27300,,,236,,0.778972375,216418,277825,,,0.749,,,,,112.5427872,,,,,0.612337261,91057,148704,0.60298874,0.621685781,0.161711805,23466,145110,0.151669643,0.171753967,0.930620562,138387,148704,0.92580005,0.935441073,366376,,,,,0.179515034,65770,366376,,,0.159218945,58334,366376,,,0.120654737,44205,366376,,,0.004055943,1486,366376,,,0.094211957,34517,366376,,,0.000614123,225,366376,,,0.053450554,19583,366376,,,0.694892679,254592,366376,,,0.013610453,4804,352964,0.01149729,0.015723616,0.500936197,183531,366376,,,0.17194795,64009,372258,, -26,163,26163,MI,Wayne County,2024,1,12150.522,34812,4926251,11962.57336,12338.47064,0,9396.79952,5569.138934,14850.99445,1,3408.17873,2903.542581,3912.814879,,18219.57987,17848.31496,18590.84478,,9558.98392,8900.125027,10217.84281,,8559.749693,8336.723606,8782.77578,,,,,2,,0.2,,,0.176,0.226,4.037028309,,,3.471784109,4.678677954,5.698268276,,,5.075128208,6.398972118,0.112153428,17491,155956,0.110587289,0.113719567,0,0.087209302,0.045043647,0.129374958,0.107312119,0.099419702,0.115204536,0.154469986,0.151749999,0.157189974,0.078947368,0.073972322,0.083922414,0.075959822,0.073965562,0.077954083,,,,0.108602569,0.096570793,0.120634346,0.221,,,0.189,0.256,0.368,,,0.334,0.404,7.5,0.045342199,0.138,,,0.275,,,0.244,0.307,0.959253128,1720479,1793561,,,0.163086405,,,0.142702807,0.186056179,0.277258567,267,963,0.261237247,0.293452726,777.5,13799,1774816,,,21.11544222,8093,383274,20.65539598,21.57548845,,,,2.199463881,1.504431666,3.10498674,34.68554422,33.75399886,35.61708957,22.49915417,20.93808978,24.06021856,10.46083735,9.966028602,10.95564611,,,,14.27868045,12.31443333,16.24292758,0.066370293,96459,1453346,0.061604336,0.071136251,0.000701481,1245,1774816,,,1425.55502,0.000770044,1353,1757043,,,1298.627495,0.003465482,6089,1757043,,,288.5601905,4882,,,,,,2809,7336,3430,3800,0.4,,,,,0.26,0.31,0.35,0.25,0.43,0.44,,,,,0.31,0.46,0.3,0.33,0.5,0.877808842,1058102,1205390,0.874612205,0.881005479,0.620580866,289550,466579,0.610242083,0.63091965,0.046387211,36642,789916,,,0.315,128008,,0.291170213,0.338829787,0.285271318,0.201097842,0.369444794,0.2003861,0.164742592,0.236029609,0.411803982,0.397181242,0.426426723,0.316217668,0.290649794,0.341785543,0.206160576,0.193686698,0.218634454,5.556114444,120401,21670,5.389296575,5.722932313,0.376294806,157806,419368,0.365653918,0.386935693,6.930295873,1230,1774816,,,107.9649547,9471,8772291,105.790547,110.1393623,79.19292084,50.20151857,118.8282646,18.61668251,14.10009353,24.12007153,145.1951294,141.1171631,149.2730958,73.35116918,66.13564547,80.5666929,90.70275935,87.86620681,93.53931188,,,,12.7,,,,,1,,,,,0.181849581,126360,694860,0.177040424,0.186658738,0.160824392,0.156039502,0.165609282,0.021349624,0.01979798,0.022901269,0.011203696,0.010204717,0.012202674,0.745437623,553436,742431,0.740145481,0.750729766,0.750528541,0.643522329,0.857534753,0.700412172,0.676795879,0.724028465,0.701796073,0.692371741,0.711220405,0.733476234,0.71116562,0.755786847,0.807170303,0.80148028,0.812860325,0.352,,742431,0.344655166,0.359344834,73.43563811,,,73.29376614,73.57751008,76.78405164,73.19391196,80.37419132,86.7911505,85.45125676,88.13104423,68.77045433,68.52854485,69.01236381,76.75233875,76.02386422,77.48081327,76.42724876,76.24515406,76.60934346,,,,572.1820985,34812,4926251,565.948304,578.4158929,411.8210603,320.4213662,521.1859089,187.5917557,167.8248499,207.3586614,834.3823095,821.9049574,846.8596617,442.4418529,415.9866708,468.8970349,426.6862345,419.3134552,434.0590138,,,,80.58829455,1464,1816641,76.46012527,84.71646383,,,,34.76776712,21.78877455,52.63881724,128.45802,120.3149466,136.6010934,57.09677609,46.30163907,69.65322475,46.94437225,42.05404439,51.8347001,,,,9.498597586,1507,158655,9.019019937,9.978175235,,,,3.449465333,2.10702304,5.327419438,14.07768374,13.199857,14.95551047,9.545695598,7.745367023,11.34602417,5.051984185,4.518884402,5.585083969,,,,9.731413001,6.297657395,14.36548529,0.126,,,0.111,0.142,0.178,,,0.159,0.198,0.117,,,0.105,0.131,490.3,7235,1475612,,,0.138,247170,,,,0.045342199,82549.28108,1820584,,,46.93451695,2471,5264782,45.08391911,48.78511479,,,,,,,58.2992175,54.95860681,61.63982818,35.33323468,28.93077963,41.73568974,42.42326307,39.91620843,44.9303177,,,,0.389,,,0.377,0.4,0.081916397,86044,1050388,0.07595895,0.087873843,0.026547001,11240,423400,0.021781043,0.031312958,0.001128032,1982,1757043,,,886.5,0.789088811,16241.815,20583,,,0.107769424,9675,89775,0.096779303,0.118759544,2.589811708,,,,,,3.332301512,2.140207,2.550784928,3.02557716,2.440670447,,,,,,3.483995197,1.943818008,2.341330551,2.931014867,0.46744013,,,,,-9240.616009,,,,,0.823090647,48443,58855,0.805243116,0.840938177,55928,,,54383.82979,57472.17021,47857,40517.42553,55196.57447,102197,97626.44681,106767.5532,39190,38307.10638,40072.89362,56162,53319.10638,59004.89362,73656,72254.80851,75057.19149,,,,,,0.658863005,171027,259579,,,76.80885037,,,,,0.392343728,,55928,,,6.847781147,795,116096,,,18.28028224,2245,12280992,17.52409248,19.03647201,,,,,,,41.90417318,40.0555867,43.75275966,8.73451639,6.741115348,11.13285815,2.944687742,2.513299003,3.376076482,,,,12.34146577,1077,8772291,11.5852413,13.09769025,12.2772945,,,,6.245359756,3.814827989,9.645451614,9.427128974,8.338067517,10.51619043,13.14940873,10.14843605,16.76000086,14.71812964,13.55079091,15.88546837,,,,22.4000777,1965,8772291,21.40964649,23.39050891,,,,,,,43.1411401,40.91827338,45.36400682,12.93345552,10.08226308,16.34064298,9.629086214,8.704870988,10.55330144,,,,10.0561909,1235,12280992,9.49532879,10.61705301,,,,2.392607799,1.147348439,4.400090929,15.1992847,14.08595778,16.31261162,6.584481586,4.871235726,8.705033849,7.139633967,6.467915708,7.811352226,,,,7.934508816,,158800,,,1260,,0.683413035,872469,1276635,,,0.648,,,,,205.7051526,,,,,0.640124858,440701,688461,0.635188567,0.64506115,0.166835579,110129,660105,0.161969226,0.171701933,0.856728268,589824,688461,0.852431271,0.861025264,1757043,,,,,0.234446738,411933,1757043,,,0.16639035,292355,1757043,,,0.378092625,664325,1757043,,,0.004741489,8331,1757043,,,0.03651362,64156,1757043,,,0.000186108,327,1757043,,,0.066098553,116138,1757043,,,0.489819543,860634,1757043,,,0.026822696,44735,1667804,0.025394079,0.028251313,0.514810395,904544,1757043,,,0.008968192,16085,1793561,, -26,165,26165,MI,Wexford County,2024,1,10157.58872,594,93205,8852.845982,11462.33146,0,,,,2,,,,2,,,,2,,,,2,10235.46589,8890.611904,11580.31987,,,,,2,,0.163,,,0.135,0.192,3.839438859,,,3.081444941,4.761088839,5.381393473,,,4.393839542,6.494303814,0.073843762,190,2573,0.063738788,0.083948737,0,,,,,,,,,,,,,0.074307305,0.063774735,0.084839875,,,,,,,0.202,,,0.159,0.247,0.361,,,0.286,0.44,7.3,0.084014784,0.126,,,0.226,,,0.181,0.275,0.826567279,27833,33673,,,0.167294503,,,0.13548518,0.205126727,0.076923077,2,26,0.014260974,0.189644139,179.9,61,33901,,,22.7305632,157,6907,19.17493418,26.28619221,,,,,,,,,,39.37007874,18.87948306,72.40297654,21.13898091,17.55976647,24.71819535,,,,,,,0.070080663,1894,27026,0.059357259,0.080804067,0.000855432,29,33901,,,1169,0.00073108,25,34196,,,1367.84,0.00274886,94,34196,,,363.787234,2976,,,,,,,,,2957,0.43,,,,,,,,,0.43,0.42,,,,,,,,,0.42,0.899749692,21208,23571,0.884206482,0.915292903,0.557500639,4363,7826,0.505662625,0.609338653,0.049008326,724,14773,,,0.16,1204,,0.100425532,0.219574468,,,,,,,,,,0.433070866,0.324050208,0.542091524,0.162403331,0.128621919,0.196184744,3.8820322,105370,27143,3.414851457,4.349212942,0.194282758,1502,7731,0.146798885,0.241766631,11.50408543,39,33901,,,92.25256968,155,168017,77.72915645,106.7759829,,,,,,,,,,,,,92.91271893,77.89262761,107.9328103,,,,6.2,,,,,0,,,,,0.127176382,1680,13210,0.107611801,0.146740963,0.094180704,0.075427079,0.11293433,0.026873581,0.017985826,0.035761336,0.011355034,0.00442089,0.018289178,0.77817893,10777,13849,0.748431054,0.807926806,,,,,,,,,,,,,0.804918249,0.774136201,0.835700297,0.296,,13849,0.264724823,0.327275177,75.409021,,,74.38966011,76.4283819,,,,,,,,,,,,,75.31061983,74.27337417,76.34786549,,,,464.0374833,594,93205,423.8941603,504.1808063,,,,,,,,,,,,,468.5348328,427.0303706,510.0392951,,,,71.15116658,24,33731,45.58789498,105.8672959,,,,,,,,,,,,,61.99628022,37.32581057,96.81487118,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.118,,,0.1,0.137,0.179,,,0.154,0.207,0.091,,,0.077,0.106,73.8,21,28452,,,0.126,4240,,,,0.084014784,2750.223959,32735,,,29.62231548,30,101275,19.98605186,42.28769726,,,,,,,,,,,,,30.49004868,20.41966412,43.78879589,,,,0.345,,,0.325,0.364,0.082344406,1589,19297,0.069238023,0.095450789,0.0398667,323,8102,0.027951806,0.051781593,0.001432916,49,34196,,,697.877551,0.712352941,339.08,476,,,0.127224786,193,1517,0.062568276,0.191881296,3.051819492,,,,,,,,,3.043208691,3.004323606,,,,,,,,,3.003962064,0.027199099,,,,,-1344.91855,,,,,0.821538089,40722,49568,0.724363225,0.918712953,56379,,,50954.14894,61803.85106,,,,,,,,,,50769,31706.3617,69831.6383,58866,54951.95745,62780.04255,,,,,,0.656914894,5187,7896,,,62.85576526,,,,,0.327994466,,56379,,,8.946322068,18,2012,,,,,,,,,,,,,,,,,,,,,,,,,,20.87166214,32,168017,14.0820228,29.7955955,19.04569181,,,,,,,,,,,,,20.43601793,13.46746459,29.73333316,,,,11.30837951,19,168017,6.808383178,17.6594354,,,,,,,,,,,,,11.37706762,6.742771315,17.9806718,,,,14.09154379,33,234183,9.699970353,19.78976667,,,,,,,,,,,,,14.48973493,9.910967965,20.45518238,,,,20.9375,,3200,,,67,,0.715152702,18265,25540,,,0.648,,,,,29.50420246,,,,,0.807549176,10633,13167,0.792575465,0.822522887,0.09501132,1217,12809,0.076549256,0.113473385,0.849775955,11189,13167,0.828966842,0.870585068,34196,,,,,0.225026319,7695,34196,,,0.210141537,7186,34196,,,0.007106094,243,34196,,,0.008012633,274,34196,,,0.007076851,242,34196,,,0.000614107,21,34196,,,0.026084922,892,34196,,,0.933851913,31934,34196,,,0.001980572,63,31809,0,0.005339247,0.496578547,16981,34196,,,0.63745434,21465,33673,, -27,000,27000,MN,Minnesota,2024,,6116.794799,60251,15839912,6042.504303,6191.085295,0,27146.75084,25630.68024,28662.82143,,4709.034248,4449.489612,4968.578883,,10759.81362,10407.7257,11111.90155,,5260.700023,4980.414218,5540.985828,,5484.051444,5404.359904,5563.742985,,7802.044959,4829.588799,11926.2545,1,,0.117,,,0.111,0.123,2.721412252,,,2.589848897,2.852975607,4.331564658,,,4.171696693,4.491432622,0.068812402,31862,463027,0.068083272,0.069541532,0,0.087743733,0.08084548,0.094641985,0.081962658,0.079128714,0.084796602,0.103051186,0.100533337,0.105569036,0.07188442,0.069246176,0.074522664,0.059633188,0.058804612,0.060461765,0.091533181,0.064496139,0.118570222,0.088299848,0.083190374,0.093409322,0.139,,,0.132,0.146,0.324,,,0.315,0.334,9.1,0.056944651,0.068,,,0.196,,,0.188,0.204,0.864273055,4931969,5706494,,,0.207583913,,,0.199120545,0.216309847,0.298740554,593,1985,0.287695033,0.309845303,395.5,22573,5707390,,,10.08660222,12566,1245811,9.910241268,10.26296318,41.02808754,37.96229244,44.09388264,9.766814007,9.062152079,10.47147594,19.54635923,18.70674153,20.38597693,27.29418846,26.30112374,28.28725318,5.802170077,5.643439391,5.960900764,34.88372093,22.35065822,51.90421162,17.45532161,16.35398451,18.55665871,0.052986543,247589,4672677,0.050603564,0.055369522,0.000881839,5033,5707390,,,1133.993642,0.000776781,4441,5717184,,,1287.364107,0.003352525,19167,5717184,,,298.2826733,2225,,,,,5243,1748,4152,2347,2129,0.52,,,,,0.24,0.31,0.29,0.28,0.53,0.53,,,,,0.32,0.49,0.33,0.38,0.54,0.937222408,3631167,3874392,0.936046865,0.938397951,0.756084158,1136489,1503125,0.750946361,0.761221955,0.026834374,82583,3077508,,,0.109,138469,,0.100659575,0.117340426,0.360402494,0.33009706,0.390707929,0.159946411,0.143057949,0.176834874,0.290930507,0.273712127,0.308148886,0.188745554,0.173879553,0.203611555,0.061677984,0.059053403,0.064302566,4.270609174,158367,37083,4.23066512,4.310553229,0.196158466,255568,1302865,0.19103102,0.201285912,12.40321758,7079,5707390,,,73.36439659,20683,28192149,72.36454704,74.36424614,268.109031,249.5762971,286.6417649,28.96096186,26.19447887,31.72744486,89.23196066,84.99388034,93.47004098,38.89992283,35.82547412,41.97437155,75.43952072,74.29894844,76.580093,,,,6.1,,,,,0.24137931,,,,,0.125659537,277455,2207990,0.123849717,0.127469356,0.101758364,0.10007787,0.103438859,0.02266994,0.021806008,0.023533871,0.007971051,0.007493274,0.008448827,0.719601197,2111728,2934581,0.716722496,0.722479898,0.661247476,0.636072173,0.68642278,0.608862858,0.595675052,0.622050664,0.646974081,0.632797689,0.661150472,0.6635283,0.656159468,0.670897133,0.739825828,0.737272869,0.742378786,0.302,,2934581,0.298847616,0.305152385,79.67848188,,,79.60556715,79.7513966,63.70536616,62.84981422,64.5609181,82.27775438,81.74777458,82.80773418,75.73262154,75.25751029,76.2077328,85.50456439,84.38271602,86.62641277,80.19139475,80.11419305,80.26859644,78.12965875,73.94011446,82.31920303,300.7555256,60251,15839912,298.267916,303.2431353,1092.928527,1041.629864,1144.22719,262.1637433,249.5389021,274.7885845,514.2788862,498.8972692,529.6605033,263.4035045,249.4778212,277.3291879,281.5415395,278.9172411,284.1658379,370.047503,247.8266204,531.4499413,43.33553061,2510,5792014,41.64016516,45.03089607,142.7508205,116.8840772,168.6175638,37.41353317,31.10224645,43.72481988,88.56009878,80.91134732,96.20885023,43.66703978,38.01126532,49.32281423,33.78893046,31.97502169,35.60283924,,,,4.816612948,2261,469417,4.618073166,5.015152729,11.85185185,9.397781421,14.75065555,4.369452307,3.690272895,5.048631719,8.749596586,7.973288357,9.525904816,5.522383876,4.751214898,6.293552854,3.566018092,3.359372283,3.772663901,,,,12.24243469,10.22880459,14.2560648,0.079642921,,,0.07445348,0.085160788,0.131019284,,,0.124156281,0.138201792,0.079,,,0.075,0.084,193,9223,4778751,,,0.068,390000,,,,0.056944651,302030.159,5303925,,,18.80693686,3198,17004364,18.15510601,19.4587677,163.9989141,145.3157173,182.6821109,4.392564627,3.12354285,6.004780447,45.27834399,41.45225147,49.10443652,14.73786188,12.32227571,17.15344805,15.57334571,14.90422887,16.24246254,,,,0.277843472,,,0.26889321,0.286974711,0.061698722,208310,3376245,0.059315743,0.0640817,0.031459399,42794,1360293,0.027884931,0.035033867,0.001518755,8683,5717184,,,658.4341817,0.839106094,57016.42,67949,,,0.04645042,13819,297500,0.043062556,0.049838284,3.134524843,,,,,,2.971873925,2.523336151,2.565710284,3.364414311,3.300090818,,,,,,3.135663012,2.46922375,2.605651904,3.590065957,0.24044071,,,,,1501.714,,,,,0.825853281,56547,68471,0.819163873,0.832542689,82343,,,81463.68085,83222.31915,45289,41915.89362,48662.10638,97976,95240.34043,100711.6596,49738,47931.70213,51544.29787,68240,66322.89362,70157.10638,87978,87494.25532,88461.74468,,,,,,0.315380193,272620,864417,,,62.69592257,,,,,0.298729769,,,,,5.683991605,,,,,2.772839287,1087,39201695,2.607997999,2.937680574,18.93054407,14.98749002,23.59310621,1.459587299,0.977508522,2.096210833,18.33517402,16.67576026,19.99458778,3.248838772,2.532629207,4.10471234,1.28318328,1.157431319,1.408935242,,,,13.66096429,3910,28192149,13.2230812,14.09884738,13.86910945,41.01770903,33.55597819,48.47943988,9.454628298,7.768123966,11.14113263,6.920792835,5.720489904,8.121095766,7.104330697,5.665787723,8.542873671,14.32731545,13.82116562,14.83346528,,,,8.701003957,2453,28192149,8.356672529,9.045335385,20.67507453,15.85146109,26.50451246,4.058662114,3.08964165,5.23537842,19.70124322,17.7098557,21.69263074,4.93364875,3.899844603,6.157416922,8.160719307,7.785584318,8.535854295,,,,8.055774119,3158,39201695,7.774805842,8.336742396,27.55712112,22.52048012,32.59376212,3.724464143,2.924505426,4.675723666,8.366156162,7.245234785,9.487077538,6.03355772,4.996368804,7.070746636,8.292571947,7.972892257,8.612251637,,,,14.54207503,,591800,,,8606,,0.796696447,3277171,4113450,,,,,,,,134.8021815,,,,,0.723231327,1631701,2256126,0.719927265,0.726535388,0.110316289,244246,2214052,0.108417111,0.112215467,0.897119221,2024014,2256126,0.895374673,0.898863769,5717184,,,,,0.226363538,1294162,5717184,,,0.174479604,997532,5717184,,,0.074007413,423114,5717184,,,0.013797877,78885,5717184,,,0.054786237,313223,5717184,,,0.000878929,5025,5717184,,,0.059717162,341414,5717184,,,0.77628112,4438142,5717184,,,0.019164308,102620,5354746,0.018531028,0.019797588,0.49779192,2845968,5717184,,,0.281212948,1604740,5706494,, -27,001,27001,MN,Aitkin County,2024,1,7683.163921,287,40728,5761.342331,9604.98551,0,,,,2,,,,2,,,,2,,,,2,7684.256078,5628.744343,9739.767813,,,,,2,,0.151,,,0.127,0.178,3.38907518,,,2.694159667,4.220137825,4.927218297,,,4.038784422,5.92059313,0.05875,47,800,0.042454507,0.075045493,0,,,,,,,,,,,,,0.051675978,0.035460779,0.067891177,,,,,,,0.207,,,0.166,0.249,0.378,,,0.309,0.453,7.7,0.113392671,0.096,,,0.245,,,0.198,0.293,0.486080143,7630,15697,,,0.180324612,,,0.146577168,0.218350314,0.1875,3,16,0.067648579,0.337423465,170,27,15887,,,14.11859621,35,2479,9.834119565,19.63554956,,,,,,,,,,,,,13.90176089,9.379459695,19.84562808,,,,,,,0.070832934,739,10433,0.06010953,0.081556338,0.000881224,14,15887,,,1134.785714,0.000310058,5,16126,,,3225.2,0.000930175,15,16126,,,1075.066667,3837,,,,,,,,,3877,0.53,,,,,,,,,0.54,0.32,,,,,,,,,0.32,0.925773362,11462,12381,0.915329174,0.936217551,0.620592949,1549,2496,0.566473066,0.674712832,0.045180319,337,7459,,,0.178,428,,0.123191489,0.232808511,0.18627451,0.067486019,0.305063001,,,,,,,0.114285714,0,0.248787873,0.141746685,0.104197563,0.179295807,4.580053283,106587,23272,4.201177919,4.958928647,0.267600156,688,2571,0.210891604,0.324308707,16.36558192,26,15887,,,128.5411836,102,79352,103.5953351,153.4870321,,,,,,,,,,,,,125.0268875,100.9128344,153.1663839,,,,4.8,,,,,0,,,,,0.145490454,1105,7595,0.126131001,0.164849907,0.122841966,0.104063597,0.141620334,0.013693219,0.006397842,0.020988597,0.017116524,0.010351033,0.023882015,0.764814815,4543,5940,0.741651722,0.787977908,,,,,,,,,,,,,0.735324408,0.695906228,0.774742588,0.336,,5940,0.304998372,0.367001628,78.1616531,,,76.65023739,79.6730688,,,,,,,,,,,,,78.2060859,76.60552532,79.80664648,,,,369.3011139,287,40728,315.2526439,423.349584,,,,,,,,,,,,,364.4431509,308.6818532,420.2044486,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.103,,,0.087,0.12,0.162,,,0.14,0.187,0.09,,,0.076,0.106,42.2,6,14217,,,0.096,1510,,,,0.113392671,1837.188054,16202,,,25.19896684,12,47621,13.02067388,44.01752388,,,,,,,,,,,,,,,,,,,0.298,,,0.283,0.313,0.079702846,633,7942,0.066596463,0.092809229,0.043859649,115,2622,0.029561777,0.058157522,0.000806152,13,16126,,,1240.461539,0.836290323,129.625,155,,,,,,,,3.0538019,,,,,,,,,3.137458198,3.080870976,,,,,,,,,3.168928845,0.095972185,,,,,-1035.476933,,,,,0.815292096,45552,55872,0.769146336,0.861437857,59064,,,52062.80851,66065.19149,46429,30160.40426,62697.59575,116667,51661.7234,181672.2766,,,,50250,46080.97872,54419.02128,56560,53743.31915,59376.68085,,,,,,0.33428246,587,1756,,,,,,,,0.32530814,,59064,,,1.751313485,1,571,,,,,,,,,,,,,,,,,,,,,,,,,,30.62202606,24,79352,17.83845864,49.02883012,30.24498437,,,,,,,,,,,,,28.060574,15.70529025,46.28164949,,,,18.90311523,15,79352,10.5799301,31.17781388,,,,,,,,,,,,,18.82125188,10.28975354,31.57886255,,,,19.88484865,22,110637,12.46172878,30.10589982,,,,,,,,,,,,,18.32066957,11.03023987,28.60999496,,,,25.38461539,,1300,,,33,,0.760622155,10025,13180,,,0.397,,,,,15.8933361,,,,,0.846108577,5751,6797,0.834653379,0.857563776,0.131878266,858,6506,0.113170259,0.150586273,0.811093129,5513,6797,0.790134705,0.832051554,16126,,,,,0.152052586,2452,16126,,,0.340940097,5498,16126,,,0.005084956,82,16126,,,0.023750465,383,16126,,,0.003472653,56,16126,,,0.000434082,7,16126,,,0.014820786,239,16126,,,0.938236388,15130,16126,,,0.000719895,11,15280,0,0.004985889,0.491504403,7926,16126,,,1,15697,15697,, -27,003,27003,MN,Anoka County,2024,1,5859.709352,3651,1022052,5571.229735,6148.188969,0,18064.71948,11451.48254,27105.94892,1,5427.838007,4295.86028,6559.815734,,7979.479395,6826.465019,9132.49377,,3505.526999,2648.037422,4552.218393,,5669.455739,5345.695182,5993.216295,,,,,2,,0.119,,,0.101,0.139,2.756624195,,,2.230887235,3.333029605,4.30909943,,,3.701273594,4.938004137,0.065355657,1901,29087,0.06251531,0.068196004,0,0.131578947,0.069526056,0.193631839,0.074074074,0.063830442,0.084317706,0.09604207,0.086434204,0.105649937,0.07120085,0.059582358,0.082819342,0.057986926,0.054750903,0.061222948,,,,0.063170441,0.046709209,0.079631673,0.163,,,0.131,0.195,0.353,,,0.317,0.392,9.3,0.06511664,0.043,,,0.209,,,0.179,0.242,0.945950254,344219,363887,,,0.202696857,,,0.178504622,0.229343075,0.336448598,36,107,0.287538161,0.385458116,332.1,1219,367018,,,7.462008643,575,77057,6.85208159,8.071935696,,,,4.990236494,3.16338187,7.487804924,14.79099679,12.08763236,17.49436121,17.90843048,14.49916623,21.31769473,4.871208207,4.283596012,5.458820403,,,,14.56188802,11.05745209,18.82461706,0.049736262,15426,310156,0.043778815,0.055693709,0.000471367,173,367018,,,2121.49133,0.000656068,242,368864,,,1524.231405,0.002152555,794,368864,,,464.5642317,2236,,,,,,2639,3903,803,2180,0.47,,,,,0.25,0.27,0.16,0.33,0.48,0.53,,,,,0.43,0.43,0.37,0.44,0.54,0.941721806,234549,249064,0.937338435,0.946105178,0.724567055,70625,97472,0.703470708,0.745663402,0.026385809,5236,198440,,,0.081,6887,,0.059553192,0.102446809,0.047619048,0,0.138934452,0.07206045,0.035857103,0.108263797,0.167723952,0.120604791,0.214843113,0.121772301,0.069010669,0.174533932,0.05589795,0.044958009,0.066837892,3.501196632,163849,46798,3.400682426,3.601710838,0.186233781,16004,85935,0.167988181,0.204479382,6.784408394,249,367018,,,60.42326469,1081,1789046,56.82123398,64.0252954,143.3306459,81.92584837,232.7599892,25.36895281,16.08173991,38.06588526,56.10378432,43.97641099,70.54208566,29.63233115,19.35682252,43.41823082,64.9032962,60.7138428,69.0927496,,,,6.9,,,,,0,,,,,0.100572268,13005,129310,0.09372662,0.107417917,0.081391737,0.074648603,0.08813487,0.018598716,0.015315859,0.021881573,0.005258681,0.003507509,0.007009853,0.764848638,145605,190371,0.755711489,0.773985786,0.71291866,0.534517892,0.891319429,0.684072126,0.631378173,0.736766079,0.688497749,0.553850218,0.82314528,0.728704011,0.714255323,0.743152698,0.731226223,0.715877989,0.746574458,0.404,,190371,0.390625565,0.417374435,80.27420681,,,79.96301082,80.58540279,68.88824058,63.94257402,73.83390714,83.16344922,80.43382756,85.89307089,76.99681964,75.1878047,78.80583458,87.76589346,82.65018874,92.88159817,80.42106421,80.08837615,80.75375228,,,,289.4192046,3651,1022052,279.7598789,299.0785304,768.2517848,572.0139149,1010.109217,278.8433582,228.8008913,328.8858251,392.3919302,336.903494,447.8803665,213.2493322,161.0862538,276.9219957,284.381848,273.8896809,294.8740151,,,,40.55193602,151,372362,34.08379931,47.02007273,,,,47.41788085,23.67083528,84.84368701,64.41761703,42.45161553,93.72425072,37.46976871,18.70477354,67.04376644,34.76556944,27.8830033,42.8321539,,,,4.057555919,119,29328,3.328523058,4.78658878,,,,,,,9.598603839,6.607237223,13.48000851,,,,2.905287624,2.217040526,3.739681068,,,,,,,0.083,,,0.071,0.097,0.133,,,0.117,0.152,0.081,,,0.07,0.093,145.4,445,306007,,,0.043,15350,,,,0.06511664,21543.4497,330844,,,16.88409942,183,1083860,14.43780668,19.33039217,,,,,,,22.49851983,13.54557864,35.13422566,,,,17.29733292,14.50107937,20.09358646,,,,0.305,,,0.291,0.318,0.060147254,13471,223967,0.051806828,0.068487679,0.02395494,2169,90545,0.017997493,0.029912386,0.000851262,314,368864,,,1174.726115,0.872757601,4277.385,4901,,,0.041702679,772,18512,0.028872306,0.054533052,3.190351909,,,,,,3.073404788,2.817775001,2.509849028,3.363989819,3.398246553,,,,,,3.276508233,2.726193539,2.581653503,3.645930956,0.107245119,,,,,-401.9363333,,,,,0.828940398,57899,69847,0.809129317,0.84875148,92249,,,88071.6383,96426.3617,112650,77115.02128,148184.9787,116667,106809.8085,126524.1915,67913,58770.70213,77055.29787,79420,72758.38298,86081.61702,97956,96141.3617,99770.6383,,,,,,0.314321282,17927,57034,,,48.47712871,,,,,0.390866026,,92249,,,6.626994861,147,22182,,,2.016817027,50,2479154,1.496920471,2.65892182,,,,,,,12.42949223,7.694051591,18.9997992,,,,1.105502084,0.69281227,1.673743441,,,,13.20447397,239,1789046,11.49653003,14.9124179,13.35907517,,,,11.58040951,5.553256485,21.2967854,,,,,,,14.28529673,12.27895638,16.29163707,,,,9.055105347,162,1789046,7.660690265,10.44952043,,,,,,,18.44507978,11.81811065,27.44481662,,,,8.728859793,7.192465283,10.2652543,,,,7.542895681,187,2479154,6.461777006,8.624014357,,,,,,,7.102566986,3.670000005,12.40675516,,,,7.889264871,6.655186382,9.12334336,,,,10.32828283,,39600,,,409,,0.81325039,211132,259615,,,0.82,,,,,99.84965076,,,,,0.802224868,107811,134390,0.793671332,0.810778404,0.095018777,12626,132879,0.087954284,0.10208327,0.92753181,124651,134390,0.920610018,0.934453603,368864,,,,,0.23425707,86409,368864,,,0.155515312,57364,368864,,,0.089556042,33034,368864,,,0.008583109,3166,368864,,,0.060992669,22498,368864,,,0.00066149,244,368864,,,0.054925393,20260,368864,,,0.760310033,280451,368864,,,0.021240583,7266,342081,0.018911405,0.023569762,0.49542921,182746,368864,,,0.159024642,57867,363887,, -27,005,27005,MN,Becker County,2024,1,8455.83059,535,95112,7257.214975,9654.446205,0,34292.8708,25904.46607,44532.14517,,,,,2,,,,2,,,,2,6080.906935,5035.485157,7126.328713,,,,,2,,0.138,,,0.116,0.163,3.079800749,,,2.438608979,3.802519959,4.732399554,,,3.923888905,5.577860238,0.06798971,185,2721,0.058531177,0.077448242,0,0.086642599,0.053514059,0.11977114,,,,,,,0.133333333,0.056398883,0.210267784,0.059849199,0.049756407,0.069941991,,,,0.092307692,0.051679543,0.132935842,0.184,,,0.148,0.225,0.42,,,0.361,0.481,7.9,0.127632715,0.076,,,0.226,,,0.185,0.269,0.61589404,21669,35183,,,0.202940656,,,0.167776723,0.240435178,0.444444444,12,27,0.348480628,0.533596575,301,106,35219,,,15.42553192,116,7520,12.61837154,18.23269229,27.02702703,16.73015571,41.31368177,,,,,,,48.67256637,24.29716977,87.08866599,11.62983884,9.066029923,14.69360173,,,,32.41895262,17.26172691,55.43739631,0.065823534,1780,27042,0.056291619,0.075355449,0.000795025,28,35219,,,1257.821429,0.000706794,25,35371,,,1414.84,0.002459642,87,35371,,,406.5632184,2494,,,,,7618,,,,2003,0.57,,,,,0.16,,,,0.59,0.53,,,,,0.34,,,,0.54,0.931412271,22529,24188,0.921133712,0.941690829,0.708214193,5449,7694,0.659425209,0.757003176,0.029495179,572,19393,,,0.12,976,,0.072340426,0.167659575,0.555555556,0.477548588,0.633562523,,,,0.610294118,0.263076375,0.957511861,0.209809264,0.094220507,0.325398022,0.109032774,0.073327975,0.144737573,4.168596141,125308,30060,3.82442772,4.512764562,0.162528217,1368,8417,0.128802744,0.19625369,15.04869531,53,35219,,,85.18430523,147,172567,71.41357439,98.95503606,294.3282157,207.2342261,405.6926747,,,,,,,,,,67.96175301,54.70735655,81.21614947,,,,5.2,,,,,1,,,,,0.119081779,1660,13940,0.101782529,0.136381029,0.092779783,0.075848063,0.109711504,0.022955524,0.015409502,0.030501545,0.008249641,0.005228532,0.011270751,0.767351711,12471,16252,0.747626211,0.78707721,0.666089965,0.603440771,0.72873916,,,,,,,,,,0.765195184,0.738753376,0.791636992,0.254,,16252,0.233466244,0.274533756,76.84242386,,,75.8511244,77.83372331,58.03798956,53.95923874,62.11674038,,,,,,,,,,78.92499985,77.9871262,79.8628735,,,,392.2728133,535,95112,355.691467,428.8541596,1379.195358,1107.607124,1697.218567,,,,,,,,,,320.8820303,286.740543,355.0235176,,,,38.59832924,14,36271,21.10206577,64.76143785,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.096,,,0.081,0.111,0.151,,,0.13,0.174,0.09,,,0.076,0.104,40.9,12,29373,,,0.076,2670,,,,0.127632715,4148.573756,32504,,,12.48823224,13,104098,6.649457714,21.35525747,,,,,,,,,,,,,,,,,,,0.295,,,0.279,0.309,0.076381164,1442,18879,0.064466271,0.088296058,0.042672263,366,8577,0.030757369,0.054587157,0.001243957,44,35371,,,803.8863636,0.827122396,317.615,384,,,0.076200994,138,1811,0.038390679,0.114011309,3.088546933,,,,,,,,,3.23898629,3.257114393,,,,,,,,,3.42643882,0.149689257,,,,,1203.063767,,,,,0.829268727,46551,56135,0.784499114,0.874038341,67448,,,62025.53192,72870.46809,34125,27221.51064,41028.48936,71250,63572.04255,78927.95745,63472,47354.7234,79589.2766,48177,33240.48936,63113.51064,71854,68340.29787,75367.70213,,,,,,0.329600676,1560,4733,,,70.85746598,,,,,0.33296762,,67448,,,6.152389967,13,2113,,,4.172107791,10,239687,2.000687854,7.672654771,,,,,,,,,,,,,,,,,,,21.58699135,35,172567,14.7654861,30.47439082,20.28197744,,,,,,,,,,,,,15.3085461,9.350857662,23.64280785,,,,16.80506702,29,172567,11.25461713,24.13487946,,,,,,,,,,,,,14.80355016,9.277306072,22.41275285,,,,17.10564194,41,239687,12.27530399,23.2057348,62.95427231,31.42654591,112.6425829,,,,,,,,,,13.06297807,8.608584859,19.00594726,,,,29.47368421,,3800,,,112,,0.753729604,19401,25740,,,0.561,,,,,22.9281612,,,,,0.781731994,11049,14134,0.764949361,0.798514626,0.100554178,1379,13714,0.085021678,0.116086678,0.863379086,12203,14134,0.851850267,0.874907905,35371,,,,,0.233496367,8259,35371,,,0.22738967,8043,35371,,,0.006191513,219,35371,,,0.075287665,2663,35371,,,0.005682621,201,35371,,,0.000621979,22,35371,,,0.023748268,840,35371,,,0.861100902,30458,35371,,,0.00205525,68,33086,0,0.005069081,0.496706341,17569,35371,,,0.709120882,24949,35183,, -27,007,27007,MN,Beltrami County,2024,1,11822.33197,719,131511,10641.12472,13003.53922,0,31419.06405,27224.90575,35613.22236,,,,,2,,,,2,,,,2,6435.208904,5441.708221,7428.709588,,,,,2,,0.16,,,0.134,0.188,3.575913665,,,2.84547442,4.346916429,5.098807914,,,4.232963844,6.006193669,0.066267833,288,4346,0.058872227,0.073663438,0,0.079874214,0.066548686,0.093199741,,,,,,,,,,0.055049669,0.045954946,0.064144391,,,,0.052083333,0.020653656,0.083513011,0.205,,,0.167,0.247,0.332,,,0.276,0.39,7.1,0.157308526,0.099,,,0.235,,,0.192,0.278,0.772497188,35711,46228,,,0.195621475,,,0.162030276,0.232756483,0.357142857,10,28,0.257736274,0.454444222,515.3,239,46380,,,26.44073346,323,12216,23.55717801,29.32428892,73.33767927,63.75488918,82.92046936,,,,,,,30.67484663,14.70978128,56.4121351,7.144647781,5.411286458,9.256719905,,,,39.86135182,25.26867771,59.81159947,0.086465417,3039,35147,0.074550523,0.09838031,0.001078051,50,46380,,,927.6,0.000790615,37,46799,,,1264.837838,0.004145388,194,46799,,,241.2319588,2268,,,,,5023,,,,1816,0.52,,,,,0.35,,,,0.54,0.5,,,,,0.23,,0.31,,0.53,0.924383199,26564,28737,0.911149658,0.937616741,0.688962594,7478,10854,0.636381428,0.741543761,0.032792778,821,25036,,,0.222,2482,,0.160042553,0.283957447,0.341594506,0.266699364,0.416489647,,,,0.541062802,0.378274509,0.703851095,0.32412523,0.182441962,0.465808498,0.099801061,0.072805788,0.126796334,4.430648316,120075,27101,3.882433465,4.978863166,0.291028446,3325,11425,0.242090363,0.33996653,11.85855972,55,46380,,,112.2157273,263,234370,98.65347165,125.7779829,259.0096926,214.1385527,303.8808326,,,,,,,,,,74.87520799,61.80119715,87.94921882,,,,6,,,,,0,,,,,0.159116331,2845,17880,0.137292667,0.180939995,0.133971292,0.111130329,0.156812255,0.022651007,0.015012221,0.030289793,0.010067114,0.004888167,0.015246062,0.754891227,15858,21007,0.727463174,0.78231928,0.786432161,0.712485371,0.860378951,,,,,,,0.731660232,0.651578068,0.811742395,0.774106983,0.750604618,0.797609348,0.191,,21007,0.165169126,0.216830874,75.08917311,,,74.15961624,76.01872998,62.96791675,60.21606387,65.71976962,,,,,,,,,,79.2342675,78.32692704,80.14160795,,,,490.3673483,719,131511,452.4767262,528.2579704,1211.07061,1063.1763,1358.96492,,,,,,,,,,323.3439691,289.6670831,357.0208551,,,,66.31666206,36,54285,46.44737481,91.81021367,117.6193837,71.84497521,181.6535986,,,,,,,,,,35.70732974,17.82497035,63.89027629,,,,9.123275478,41,4494,6.547019997,12.37675335,13.0952381,8.206715995,19.82634785,,,,,,,,,,,,,,,,,,,0.109,,,0.094,0.127,0.165,,,0.142,0.19,0.103,,,0.087,0.119,89.6,34,37951,,,0.099,4560,,,,0.157308526,6991.105503,44442,,,39.00432593,55,141010,29.38339619,50.76949151,124.1735745,87.4296559,171.1569156,,,,,,,,,,13.86317051,7.579124319,23.26004448,,,,0.319,,,0.304,0.332,0.102054934,2508,24575,0.086565572,0.117544296,0.051235793,568,11086,0.036937921,0.065533665,0.001666702,78,46799,,,599.9871795,0.679689034,415.29,611,,,0.043700922,128,2929,0.01670983,0.070692013,2.740192187,,,,,,,,,3.003874213,2.976863607,,,,,,,,,3.34466368,0.260843671,,,,,3363.70675,,,,,0.969617552,51796,53419,0.888496428,1.050738676,59882,,,53481.31915,66282.68085,53540,46200.42553,60879.57447,92045,57933.85106,126156.1489,,,,51620,38261.02128,64978.97872,66680,63709.61702,69650.38298,,,,,,0.43104101,3416,7925,,,71.38315389,,,,,0.320864367,,59882,,,6.497725796,20,3078,,,6.745403927,22,326148,4.227308729,10.21262261,24.89091921,14.4998777,39.85277287,,,,,,,,,,,,,,,,21.7032847,47,234370,15.76963989,29.13564671,20.05376115,47.67422424,29.12065471,73.62897272,,,,,,,,,,14.34256826,8.988411172,21.71482072,,,,14.50697615,34,234370,10.0465027,20.2720451,34.3997248,20.03910737,55.07729176,,,,,,,,,,10.1022106,5.884909953,16.17461779,,,,16.55690055,54,326148,12.43805327,21.60316372,35.14012123,22.51493873,52.28571495,,,,,,,,,,11.90790089,7.912713664,17.21023227,,,,17.88461539,,5200,,,93,,0.698397575,24189,34635,,,0.589,,,,,34.63226643,,,,,0.677895915,12114,17870,0.655487092,0.700304738,0.123851886,2144,17311,0.103435431,0.144268341,0.868998321,15529,17870,0.852352056,0.885644586,46799,,,,,0.245411227,11485,46799,,,0.174384068,8161,46799,,,0.007948888,372,46799,,,0.220453429,10317,46799,,,0.008012992,375,46799,,,0.000683775,32,46799,,,0.026581765,1244,46799,,,0.713348576,33384,46799,,,0.002798982,121,43230,0.000349567,0.005248398,0.494604586,23147,46799,,,0.678787748,31379,46228,, -27,009,27009,MN,Benton County,2024,1,5974.097232,447,115609,5146.015017,6802.179447,0,,,,2,,,,2,,,,2,,,,2,5566.676217,4731.94641,6401.406024,,,,,2,,0.132,,,0.11,0.158,3.176104687,,,2.470870076,3.943238133,4.549207632,,,3.651437347,5.468860019,0.066885965,244,3648,0.058778903,0.074993027,0,,,,,,,0.136246787,0.102155826,0.170337748,,,,0.057572784,0.04931543,0.065830137,,,,,,,0.185,,,0.144,0.228,0.397,,,0.332,0.466,8.5,0.079218773,0.073,,,0.219,,,0.177,0.265,0.614055439,25409,41379,,,0.205934949,,,0.169088229,0.246219523,0.227272727,5,22,0.117752454,0.350313422,369,153,41459,,,10.44267877,92,8810,8.418272959,12.8070185,,,,,,,37.5,22.22487663,59.26616722,27.2479564,13.06645421,50.10996197,8.434226636,6.466473199,10.8122979,,,,,,,0.057265993,2033,35501,0.048925567,0.065606418,0.000217082,9,41459,,,4606.555556,0.00033765,14,41463,,,2961.642857,0.000217061,9,41463,,,4607,2341,,,,,,,,,2188,0.59,,,,,,,,,0.6,0.47,,,,,,,,,0.47,0.916516957,24998,27275,0.901526377,0.931507537,0.709900489,8418,11858,0.659948618,0.759852361,0.034385413,743,21608,,,0.106,1082,,0.075021277,0.136978723,0.2,0,0.53082096,0.025974026,0,0.71899249,0.392045455,0.171468142,0.612622768,0.161554192,0.032642675,0.290465709,0.076596776,0.049539202,0.10365435,3.549447846,129853,36584,3.291596552,3.80729914,0.217733523,2296,10545,0.160125283,0.275341763,10.85409682,45,41459,,,73.11519815,149,203788,61.37513052,84.85526577,,,,,,,,,,,,,74.67020659,62.07409382,87.26631935,,,,6.1,,,,,0,,,,,0.113470874,1870,16480,0.093527024,0.133414724,0.088570558,0.072342703,0.104798413,0.025182039,0.014152057,0.036212021,0.006067961,0.000535155,0.011600768,0.816133721,17968,22016,0.792701549,0.839565893,,,,,,,,,,,,,0.798664441,0.768812899,0.828515983,0.248,,22016,0.224773597,0.271226404,77.68918594,,,76.91444944,78.46392244,,,,,,,74.50955745,69.19658271,79.82253218,,,,77.9401481,77.15347639,78.72681982,,,,331.0323782,447,115609,299.8506158,362.2141406,,,,,,,,,,,,,323.0828487,291.3099955,354.8557018,,,,46.56216048,21,45101,28.82271121,71.17520839,,,,,,,,,,,,,40.48473725,22.65900012,66.77341738,,,,6.415396953,24,3741,4.110465879,9.545602137,,,,,,,,,,,,,,,,,,,,,,0.094,,,0.08,0.111,0.151,,,0.129,0.175,0.083,,,0.07,0.097,88.3,30,33981,,,0.073,3000,,,,0.079218773,3046.04104,38451,,,13.78683925,17,123306,8.031341921,22.07406518,,,,,,,,,,,,,15.66776956,9.127053141,25.08561682,,,,0.31,,,0.293,0.325,0.065859198,1653,25099,0.055135793,0.076582602,0.037668408,411,10911,0.025753514,0.049583302,7.23537E-05,3,41463,,,13821,0.875477707,412.35,471,,,,,,,,3.023508476,,,,,,,2.117130775,2.567777536,3.166193329,3.261598811,,,,,,,2.06490616,2.568161169,3.44275951,0.158824031,,,,,3563.584,,,,,0.802831498,48031,59827,0.746197004,0.859465992,71493,,,62899.97872,80086.02128,48580,34010.46809,63149.53192,50764,24930.12766,76597.87234,46471,43476.78723,49465.21277,56912,26452.76596,87371.23404,75551,68444.95745,82657.04255,,,,,,0.286603438,1934,6748,,,78.8645416,,,,,0.314128656,,71493,,,5.69476082,15,2634,,,,,,,,,,,,,,,,,,,,,,,,,,16.95719785,35,203788,11.74335246,23.69598433,17.17471097,,,,,,,,,,,,,15.34777894,10.19848764,22.1818138,,,,12.75835672,26,203788,8.334182197,18.69394865,,,,,,,,,,,,,10.50914019,6.327188896,16.41132419,,,,9.876891601,28,283490,6.56312274,14.27485835,,,,,,,,,,,,,9.455966715,6.058616298,14.06972893,,,,16.95652174,,4600,,,78,,0.757400476,22260,29390,,,0.757,,,,,59.32899599,,,,,0.664664051,10842,16312,0.643786683,0.685541419,0.094318465,1514,16052,0.077309323,0.111327607,0.893084846,14568,16312,0.871768484,0.914401207,41463,,,,,0.250536623,10388,41463,,,0.142560837,5911,41463,,,0.058124111,2410,41463,,,0.006198297,257,41463,,,0.011938355,495,41463,,,0.00079589,33,41463,,,0.033644454,1395,41463,,,0.867472204,35968,41463,,,0.009350864,362,38713,0.00194421,0.016757518,0.493548465,20464,41463,,,0.450349211,18635,41379,, -27,011,27011,MN,Big Stone County,2024,1,7468.167295,73,13065,4734.177438,11205.91778,1,,,,2,,,,2,,,,2,,,,2,7332.100573,4594.988393,11100.88838,1,,,,2,,0.141,,,0.118,0.167,3.185503007,,,2.522781722,3.974794144,4.627420086,,,3.748839325,5.648681047,0.069977427,31,443,0.046221065,0.093733789,0,,,,,,,,,,,,,0.06372549,0.040023535,0.087427446,,,,,,,0.192,,,0.151,0.235,0.38,,,0.308,0.458,8,0.098389444,0.085,,,0.239,,,0.193,0.292,0.068524971,354,5166,,,0.176199118,,,0.14240917,0.214228526,0.25,1,4,0.023230216,0.544021398,,,,,,10.74113856,10,931,5.150793444,19.75333624,,,,,,,,,,,,,,,,,,,,,,0.065625827,248,3779,0.054902423,0.076349231,0.001749271,9,5145,,,571.6666667,0.000388803,2,5144,,,2572,0.001166408,6,5144,,,857.3333333,883,,,,,,,,,883,0.58,,,,,,,,,0.58,0.5,,,,,,,,,0.5,0.933529098,3497,3746,0.916351085,0.95070711,0.725790988,757,1043,0.636480919,0.815101057,0.032513547,78,2399,,,0.137,148,,0.084574468,0.189425532,,,,,,,,,,0.151515152,0,0.643611984,0.136363636,0.09041242,0.182314853,4.843233927,120829,24948,3.666110496,6.020357357,0.080406654,87,1082,0.0465447,0.114268609,25.26724976,13,5145,,,87.74028875,22,25074,54.98637183,132.8398516,,,,,,,,,,,,,87.75595487,54.3223192,134.1442989,,,,5.9,,,,,0,,,,,0.091503268,210,2295,0.063918482,0.119088054,0.071840355,0.041085303,0.102595407,0.003485839,0,0.010952558,0.016993464,0.004814448,0.02917248,0.781471631,1763,2256,0.744212989,0.818730273,,,,,,,,,,,,,0.772434308,0.721980351,0.822888266,0.201,,2256,0.15845532,0.24354468,77.97844181,,,75.35556471,80.6013189,,,,,,,,,,,,,78.01514611,75.37575065,80.65454156,,,,356.479046,73,13065,269.9937482,461.859952,,,,,,,,,,,,,360.2603934,271.3974314,468.9284212,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.099,,,0.084,0.116,0.156,,,0.135,0.18,0.087,,,0.074,0.102,0,0,4325,,,0.085,440,,,,0.098389444,518.4139796,5269,,,,,,,,,,,,,,,,,,,,,,,,,,0.289,,,0.271,0.305,0.072534945,192,2647,0.059428562,0.085641328,0.049747049,59,1186,0.034257687,0.065236411,0.001360809,7,5144,,,734.8571429,,,,,,,,,,,3.390004677,,,,,,,,,3.425686238,3.370476743,,,,,,,,,3.338726323,0.051315722,,,,,-984.7852,,,,,0.901220075,46831,51964,0.800774154,1.001665997,57821,,,49528.23404,66113.76596,,,,,,,,,,58438,34666.59575,82209.40426,62641,55981.76596,69300.23404,,,,,,0.304130163,243,799,,,,,,,,0.323671331,,57821,,,3.194888179,1,313,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16,,500,,,8,,0.768475452,2974,3870,,,0.598,,,,,2.978360413,,,,,0.7573595,1698,2242,0.73171934,0.782999661,0.092401501,197,2132,0.063977953,0.120825049,0.870651204,1952,2242,0.834020287,0.907282122,5144,,,,,0.214618974,1104,5144,,,0.265746501,1367,5144,,,0.00466563,24,5144,,,0.008553655,44,5144,,,0.004082426,21,5144,,,0,0,5144,,,0.022356143,115,5144,,,0.949261275,4883,5144,,,0.004934211,24,4864,0,0.015662252,0.489502333,2518,5144,,,1,5166,5166,, -27,013,27013,MN,Blue Earth County,2024,1,5941.38527,596,192479,5246.252236,6636.518304,0,,,,2,,,,2,,,,2,,,,2,5781.484763,5042.751907,6520.21762,,,,,2,,0.133,,,0.111,0.157,2.941805411,,,2.326523917,3.662312707,4.661889008,,,3.861393341,5.526033253,0.06511254,324,4976,0.058257218,0.071967862,0,,,,0.119402985,0.064499506,0.174306465,0.103529412,0.074565214,0.132493609,0.076923077,0.042780569,0.111065584,0.05805336,0.050849543,0.065257176,,,,,,,0.172,,,0.135,0.211,0.363,,,0.304,0.426,7.5,0.169889428,0.074,,,0.205,,,0.167,0.249,0.82168075,56788,69112,,,0.224275756,,,0.186583883,0.265226672,0.105263158,2,19,0.021173544,0.243494433,541.3,375,69280,,,6.460371705,138,21361,5.382482719,7.538260692,,,,,,,,,,16.14763553,8.828062602,27.09298861,5.918481295,4.791768002,7.045194588,,,,,,,0.054007123,3048,56437,0.045666698,0.062347549,0.000923788,64,69280,,,1082.5,0.000933492,65,69631,,,1071.246154,0.004782353,333,69631,,,209.1021021,1792,,,,,,,,,1825,0.6,,,,,,0.21,,,0.61,0.64,,,,,0.27,0.57,0.33,0.45,0.64,0.948346853,38464,40559,0.938989911,0.957703795,0.754603026,12869,17054,0.710604738,0.798601314,0.022623985,911,40267,,,0.129,1732,,0.09087234,0.16712766,,,,,,,0.185185185,0.031840583,0.338529788,0.13225058,0.05293113,0.21157003,0.115830856,0.083196449,0.148465263,4.420219871,129066,29199,3.983146255,4.857293486,0.187007581,2516,13454,0.15024227,0.223772893,11.69168591,81,69280,,,57.42489119,195,339574,49.36481872,65.48496366,,,,,,,,,,,,,60.5595158,51.68771156,69.43132003,,,,7.2,,,,,1,,,,,0.14873058,3925,26390,0.12916791,0.16829325,0.126932621,0.109317414,0.144547827,0.023304282,0.014153861,0.032454703,0.00795756,0.00371875,0.01219637,0.774157243,28890,37318,0.751506415,0.796808072,,,,0.567955801,0.343432244,0.792479358,0.390199637,0.262207176,0.518192098,0.768907563,0.661560152,0.876254974,0.8034559,0.782310183,0.824601618,0.15,,37318,0.132692617,0.167307383,79.73406027,,,79.03630159,80.43181895,,,,,,,,,,,,,79.7252605,79.00314866,80.44737234,,,,297.2046377,596,192479,272.4281961,321.9810793,,,,,,,,,,,,,295.6036932,269.6849826,321.5224038,,,,39.20885249,27,68862,25.83888085,57.04682183,,,,,,,,,,,,,35.91051101,21.93507305,55.46087173,,,,6.354249404,32,5036,4.346301889,8.970304226,,,,,,,,,,,,,5.797101449,3.714312284,8.625627438,,,,,,,0.094,,,0.08,0.11,0.151,,,0.129,0.173,0.088,,,0.075,0.103,75.7,45,59464,,,0.074,5070,,,,0.169889428,10875.13195,64013,,,15.10912689,31,205174,10.26591867,21.44619957,,,,,,,,,,,,,12.38208875,7.759789095,18.74663116,,,,0.315,,,0.298,0.331,0.06249562,2675,42803,0.051772215,0.073219024,0.028942046,415,14339,0.019410131,0.038473961,0.002240381,156,69631,,,446.3525641,0.860374841,677.115,787,,,,,,,,3.346355294,,,,,,,2.611789014,3.024166617,3.499979094,3.538385635,,,,,,,2.52848959,3.388037961,3.729760286,0.074275052,,,,,2708.65525,,,,,0.799438163,46102,57668,0.750094787,0.84878154,68279,,,61960.53192,74597.46809,,,,59375,25940.61702,92809.38298,31406,21203.2766,41608.7234,54492,39062.21277,69921.78723,73994,70700.7234,77287.2766,,,,,,0.276051598,2461,8915,,,44.54310461,,,,,0.328915186,,68279,,,9.343226161,34,3639,,,2.119533194,10,471802,1.016398552,3.897897008,,,,,,,,,,,,,,,,,,,14.01804856,45,339574,10.10297639,18.94832934,13.25189797,,,,,,,,,,,,,14.69531731,10.49855013,20.01085126,,,,6.773192294,23,339574,4.293622903,10.16311405,,,,,,,,,,,,,7.781390298,4.932733953,11.67590607,,,,5.722739624,27,471802,3.771321472,8.326285697,,,,,,,,,,,,,6.296436217,4.113041183,9.225737914,,,,31.33333333,,6000,,,188,,0.69335513,36051,51995,,,0.705,,,,,66.14618599,,,,,0.613611214,16635,27110,0.596829185,0.630393242,0.138665762,3677,26517,0.118539843,0.15879168,0.887200295,24052,27110,0.872212948,0.902187643,69631,,,,,0.195344028,13602,69631,,,0.152202324,10598,69631,,,0.050106993,3489,69631,,,0.004610016,321,69631,,,0.025735664,1792,69631,,,0.000832962,58,69631,,,0.043658715,3040,69631,,,0.855179446,59547,69631,,,0.011552391,756,65441,0.006567627,0.016537155,0.494793985,34453,69631,,,0.335730409,23203,69112,, -27,015,27015,MN,Brown County,2024,1,6000.271017,303,67952,4830.991707,7169.550328,0,,,,2,,,,2,,,,2,,,,2,6191.759843,4932.706765,7450.812921,,,,,2,,0.128,,,0.105,0.154,2.992341091,,,2.307672569,3.786011448,4.314252572,,,3.469692888,5.290321433,0.062165059,116,1866,0.051209447,0.073120671,0,,,,,,,,,,,,,0.059763314,0.048461487,0.071065141,,,,,,,0.174,,,0.137,0.215,0.358,,,0.289,0.432,9.3,0.040433302,0.057,,,0.212,,,0.173,0.26,0.823054955,21327,25912,,,0.192573173,,,0.156480175,0.233313342,0.333333333,3,9,0.150331965,0.513162068,244,63,25819,,,12.12866936,69,5689,9.436828715,15.34960733,,,,,,,,,,71.22507123,46.09311068,105.1422556,7.852375344,5.60985207,10.69270651,,,,,,,0.051025641,995,19500,0.042685216,0.059366067,0.000929548,24,25819,,,1075.791667,0.000622011,16,25723,,,1607.6875,0.002215916,57,25723,,,451.2807018,1307,,,,,,,,,1326,0.6,,,,,,,,,0.6,0.52,,,,,,,,,0.52,0.929825552,16470,17713,0.917486604,0.9421645,0.711918195,4038,5672,0.653460358,0.770376032,0.027154578,374,13773,,,0.085,474,,0.052829787,0.117170213,,,,,,,,,,0.17954071,0.031421982,0.327659437,0.079423116,0.050493513,0.108352719,3.726086957,120837,32430,3.406692434,4.045481479,0.161617962,907,5612,0.115489732,0.207746191,17.42902514,45,25819,,,70.64725587,89,125978,56.73554759,86.9375275,,,,,,,,,,,,,73.38322255,58.69710584,90.62768287,,,,6.7,,,,,0,,,,,0.07468295,795,10645,0.05700965,0.092356249,0.057708628,0.041244152,0.074173104,0.011178957,0.001835472,0.020522443,0.006575857,0.002505112,0.010646603,0.818311552,10895,13314,0.795722792,0.840900311,,,,,,,,,,0.81004902,0.687439099,0.93265894,0.827762939,0.805908103,0.849617776,0.171,,13314,0.14971932,0.192280681,79.36899324,,,78.3285487,80.40943777,,,,,,,,,,,,,79.1626042,78.07147858,80.25372983,,,,314.5449984,303,67952,276.2436369,352.8463599,,,,,,,,,,,,,319.1299009,279.2313366,359.0284652,,,,60.05284651,15,24978,33.61112232,99.04803776,,,,,,,,,,,,,58.6589658,31.2334288,100.308618,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.092,,,0.077,0.107,0.148,,,0.127,0.173,0.083,,,0.07,0.098,45.7,10,21880,,,0.057,1490,,,,0.040433302,1046.939485,25893,,,,,,,,,,,,,,,,,,,,,,,,,,0.295,,,0.278,0.311,0.058641754,816,13915,0.047918349,0.069365158,0.033043775,194,5871,0.02232037,0.043767179,0.000894141,23,25723,,,1118.391304,0.784075343,228.95,292,,,,,,,,3.126309912,,,,,,,,,3.175061345,3.302289538,,,,,,,,,3.363194212,0.100630928,,,,,1560.6195,,,,,0.776045568,44552,57409,0.735030791,0.817060345,64093,,,57635.12766,70550.87234,,,,,,,39063,5034.06383,73091.93617,67668,43872.76596,91463.23404,67640,63602.04255,71677.95745,,,,,,0.281792717,1006,3570,,,64.1274826,,,,,0.299783128,,64093,,,7.857142857,11,1400,,,,,,,,,,,,,,,,,,,,,,,,,,21.68037427,26,125978,13.74349753,32.53120637,20.63852419,,,,,,,,,,,,,22.53335114,14.12153119,34.11576442,,,,15.08199844,19,125978,9.080348287,23.55240881,,,,,,,,,,,,,15.35927914,9.102882237,24.27428282,,,,9.625075019,17,176622,5.606960894,15.4106775,,,,,,,,,,,,,10.31979215,6.011659222,16.52298692,,,,25,,2600,,,65,,0.755549819,14635,19370,,,0.77,,,,,49.20371015,,,,,0.786472634,8593,10926,0.76465282,0.808292448,0.081086125,869,10717,0.063462433,0.098709817,0.850723046,9295,10926,0.828788753,0.872657339,25723,,,,,0.219103526,5636,25723,,,0.221358318,5694,25723,,,0.006025736,155,25723,,,0.00326556,84,25723,,,0.007308634,188,25723,,,0.000427633,11,25723,,,0.051743576,1331,25723,,,0.9238036,23763,25723,,,0.006082377,149,24497,0.002009824,0.010154931,0.495004471,12733,25723,,,0.481514356,12477,25912,, -27,017,27017,MN,Carlton County,2024,1,7059.074463,485,100046,6045.316311,8072.832615,0,26189.43556,18793.99112,35528.92654,,,,,2,,,,2,,,,2,5879.435996,4933.896968,6824.975025,,,,,2,,0.137,,,0.115,0.161,3.414427682,,,2.720776422,4.156592653,4.680939664,,,3.897388069,5.494423279,0.059218318,150,2533,0.050026299,0.068410338,0,0.064377682,0.032864224,0.095891141,,,,,,,,,,0.053470919,0.043921251,0.063020587,,,,0.1,0.0412,0.1588,0.196,,,0.157,0.237,0.402,,,0.347,0.458,8.7,0.042196892,0.083,,,0.218,,,0.178,0.256,0.687878035,24906,36207,,,0.201800259,,,0.168753054,0.237101097,0.263157895,5,19,0.14192256,0.393259063,329.6,120,36409,,,14.00249549,101,7213,11.27162676,16.73336423,65.5105973,45.36799303,91.54449344,,,,,,,,,,9.260790475,6.995501601,12.02590673,,,,,,,0.055071748,1562,28363,0.046731323,0.063412174,0.000878904,32,36409,,,1137.78125,0.000653808,24,36708,,,1529.5,0.001988667,73,36708,,,502.8493151,4170,,,,,7255,,,,3948,0.45,,,,,0.3,,,,0.46,0.5,,,,,0.44,,,,0.5,0.941298235,24101,25604,0.930552862,0.952043608,0.712401055,6480,9096,0.653022403,0.771779708,0.036010923,633,17578,,,0.101,788,,0.070021277,0.131978723,0.306282723,0.211681971,0.400883474,,,,,,,0.241525424,0.117092783,0.365958065,0.157537347,0.112338845,0.20273585,3.734305375,132411,35458,3.41107718,4.057533571,0.262783737,2107,8018,0.198768415,0.326799059,11.26095196,41,36409,,,84.17696116,151,179384,70.75052222,97.6034001,221.1499799,138.593515,334.8237273,,,,,,,,,,79.17856985,65.29795455,93.05918515,,,,3.1,,,,,0,,,,,0.101737871,1405,13810,0.083832178,0.119643564,0.080480699,0.064019839,0.096941559,0.014844316,0.008720453,0.020968178,0.009413469,0.004585677,0.01424126,0.806673149,13273,16454,0.7823185,0.831027799,0.750507099,0.66808267,0.832931529,,,,,,,,,,0.77242979,0.756616235,0.788243345,0.308,,16454,0.274278536,0.341721465,77.27886024,,,76.41787612,78.13984437,61.81048783,57.42992416,66.19105151,,,,,,,,,,78.29652171,77.46011643,79.13292699,,,,355.7611248,485,100046,322.7109101,388.8113395,1059.154077,810.1689449,1360.527721,,,,,,,,,,323.418507,290.6311411,356.205873,,,,48.33115369,17,35174,28.15467809,77.38285898,,,,,,,,,,,,,34.12619868,16.36483874,62.75929441,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.099,,,0.084,0.114,0.15,,,0.13,0.171,0.091,,,0.077,0.106,48.5,15,30908,,,0.083,3010,,,,0.042196892,1493.179221,35386,,,25.91416857,28,108049,17.21977682,37.45318878,168.2935039,80.70327661,309.4977456,,,,,,,,,,15.78764564,8.836225419,26.03932058,,,,0.327,,,0.313,0.342,0.063633254,1302,20461,0.052909849,0.074356658,0.033916587,283,8344,0.023193183,0.044639991,0.000871745,32,36708,,,1147.125,0.901375267,422.745,469,,,,,,,,3.362271741,,,,,,,,,3.390643108,3.519440845,,,,,,,,,3.610599992,0.080358547,,,,,1993.754343,,,,,0.725582653,48318,66592,0.659068201,0.792097104,78478,,,72814.85106,84141.14894,41902,34418.25532,49385.74468,93977,73442.87234,114511.1277,,,,,,,77524,72912.93617,82135.06383,,,,,,0.270892914,1705,6294,,,75.68668274,,,,,0.286169372,,78478,,,9.15455035,17,1857,,,,,,,,,,,,,,,,,,,,,,,,,,14.26471828,26,179384,9.231373546,21.05753815,14.49404629,,,,,,,,,,,,,14.05585599,8.700796392,21.48586896,,,,10.59180306,19,179384,6.376957345,16.54041251,,,,,,,,,,,,,10.7682855,6.272923127,17.24106822,,,,10.37133363,26,250691,6.774899464,15.19640677,,,,,,,,,,,,,10.86794093,6.963294822,16.17063464,,,,10.75,,4000,,,43,,0.743529841,20369,27395,,,0.716,,,,,26.08919696,,,,,0.795868068,10979,13795,0.776835627,0.814900509,0.095433824,1277,13381,0.076471451,0.114396197,0.838637187,11569,13795,0.812728466,0.864545909,36708,,,,,0.217445788,7982,36708,,,0.185599869,6813,36708,,,0.018551814,681,36708,,,0.057480658,2110,36708,,,0.006592568,242,36708,,,0.000245178,9,36708,,,0.019532527,717,36708,,,0.875503977,32138,36708,,,0.005039826,174,34525,0.001265654,0.008813999,0.468753405,17207,36708,,,0.635070567,22994,36207,, -27,019,27019,MN,Carver County,2024,1,3864.98764,709,304152,3435.896604,4294.078676,0,,,,2,,,,2,,,,2,,,,2,3840.752293,3386.343733,4295.160854,,,,,2,,0.096,,,0.078,0.116,2.390677223,,,1.876499995,3.017310618,4.047316082,,,3.376554897,4.803067826,0.055089968,447,8114,0.05012553,0.060054406,0,,,,0.087078652,0.057789715,0.116367588,0.067510549,0.03556652,0.099454577,0.076404494,0.051722717,0.101086271,0.051552347,0.046344273,0.05676042,,,,,,,0.12,,,0.089,0.155,0.312,,,0.265,0.366,9.8,0.037681719,0.031,,,0.171,,,0.137,0.209,0.966545706,103345,106922,,,0.215665764,,,0.18446276,0.251711756,0.28125,9,32,0.188019808,0.378196141,168.5,183,108626,,,3.457972336,91,26316,2.78414362,4.245623762,,,,,,,,,,12.88515406,8.168082374,19.33405764,2.725043147,2.079495002,3.507670697,,,,,,,0.030811249,2888,93732,0.026045292,0.035577207,0.000846943,92,108626,,,1180.717391,0.000518022,57,110034,,,1930.421053,0.002208408,243,110034,,,452.8148148,2543,,,,,,,,,2576,0.5,,,,,,0.19,,,0.51,0.59,,,,,,0.49,0.22,0.24,0.59,0.962938377,68177,70801,0.954784199,0.971092554,0.841532866,22904,27217,0.801846211,0.88121952,0.021569256,1278,59251,,,0.04,1085,,0.026893617,0.053106383,,,,0.030940594,0,0.105955812,0.179755672,0.005015482,0.354495862,0.025043681,0,0.058460934,0.034667393,0.022832466,0.046502319,3.820848612,211526,55361,3.589015309,4.052681915,0.140716401,3897,27694,0.114831407,0.166601394,9.482076114,103,108626,,,46.58237475,245,525950,40.74933879,52.41541071,,,,,,,,,,,,,50.37533933,43.92078699,56.82989168,,,,7.2,,,,,0,,,,,0.087200749,3260,37385,0.07460804,0.099793458,0.075382962,0.063622318,0.087143605,0.007195399,0.003409294,0.010981504,0.007355891,0.003950172,0.010761611,0.724430888,42038,58029,0.708274536,0.74058724,,,,0.576178451,0.471532217,0.680824686,0.700699301,0.55447113,0.846927471,0.655304348,0.544392119,0.766216577,0.687037497,0.662640496,0.711434498,0.38,,58029,0.355756778,0.404243222,82.50590295,,,81.95569066,83.05611524,,,,95.37292278,81.06472425,109.6811213,87.68686884,63.22538711,112.1483506,86.83091033,74.68901622,98.97280445,82.41404964,81.85112165,82.97697763,,,,197.8622693,709,304152,182.9812669,212.7432718,,,,,,,,,,,,,198.8679718,183.2429998,214.4929438,,,,23.03370324,28,121561,15.30572853,33.29011438,,,,,,,,,,,,,20.74176503,12.83947947,31.70599115,,,,3.565719907,29,8133,2.388018583,5.120968577,,,,,,,,,,,,,3.153669725,1.976388026,4.774693863,,,,,,,0.072,,,0.06,0.085,0.127,,,0.11,0.147,0.067,,,0.057,0.079,61.5,55,89432,,,0.031,3230,,,,0.037681719,3430.619042,91042,,,10.92793805,35,320280,7.611709255,15.19811645,,,,,,,,,,,,,11.35391941,7.76607247,16.02834651,,,,0.253,,,0.237,0.268,0.034875943,2294,65776,0.028918496,0.040833389,0.022177557,651,29354,0.01622011,0.028135004,0.000708872,78,110034,,,1410.692308,0.927341536,1243.565,1341,,,0.079202862,465,5871,0.044430478,0.113975245,3.334820206,,,,,,3.620557132,2.550652958,2.72384923,3.399530845,3.531222084,,,,,,3.709924496,2.426706899,2.58575842,3.630600206,0.06190262,,,,,2276.39365,,,,,0.774777917,66634,86004,0.720205383,0.829350452,117602,,,110314.8511,124889.1489,68150,44105.74468,92194.25532,139250,58798.25532,219701.7447,,,,81087,58185.38298,103988.617,117241,113176.8298,121305.1702,,,,,,0.110731412,2009,18143,,,53.90546982,,,,,0.306601929,,117602,,,8.012093726,53,6615,,,,,,,,,,,,,,,,,,,,,,,,,,11.79679809,63,525950,9.002199725,15.18481754,11.97832494,,,,,,,,,,,,,12.32641551,9.285943083,16.04452411,,,,7.034889248,37,525950,4.95321125,9.696668151,,,,,,,,,,,,,7.319493749,5.0689622,10.22825886,,,,5.379659095,39,724953,3.825463511,7.35417108,,,,,,,,,,,,,5.447521689,3.794398454,7.57618396,,,,8.195488722,,13300,,,109,,0.89981017,66361,73750,,,0.817,,,,,44.32032589,,,,,0.819866134,32215,39293,0.802574495,0.837157773,0.077382792,3004,38820,0.064415864,0.090349721,0.931641768,36607,39293,0.921457822,0.941825715,110034,,,,,0.248868532,27384,110034,,,0.144855227,15939,110034,,,0.022665722,2494,110034,,,0.003844266,423,110034,,,0.038269989,4211,110034,,,0.000499846,55,110034,,,0.046131196,5076,110034,,,0.87295745,96055,110034,,,0.008381248,844,100701,0.005315015,0.01144748,0.497355363,54726,110034,,,0.246506799,26357,106922,, -27,021,27021,MN,Cass County,2024,1,11821.40012,551,80834,10158.48464,13484.3156,0,43571.84702,35387.04941,51756.64464,,,,,2,,,,2,,,,2,7247.522036,5842.571484,8652.472589,,,,,2,,0.147,,,0.123,0.173,3.32716548,,,2.638246797,4.044411637,4.515733379,,,3.673946998,5.386706293,0.060112073,118,1963,0.049596939,0.070627207,0,0.076512456,0.0545354,0.098489511,,,,,,,,,,0.051219512,0.038899699,0.063539325,,,,,,,0.195,,,0.157,0.235,0.363,,,0.3,0.429,8.5,0.052107727,0.084,,,0.244,,,0.202,0.291,0.514035788,15455,30066,,,0.17676907,,,0.144220549,0.211417061,0.529411765,18,34,0.453068294,0.598754094,352.5,108,30639,,,23.36361951,126,5393,19.28408206,27.44315695,79.51070336,62.84991152,99.23295622,,,,,,,,,,8.018623901,5.448265903,11.38179656,,,,41.37931035,21.38129348,72.28132775,0.081935484,1778,21700,0.07121208,0.092658888,0.000293743,9,30639,,,3404.333333,0.000671484,21,31274,,,1489.238095,0.000927288,29,31274,,,1078.413793,2170,,,,,2515,,,,1994,0.5,,,,,0.1,,,,0.54,0.44,,,,,0.15,,,,0.46,0.938859124,20853,22211,0.933527253,0.944190995,0.643164972,3731,5801,0.60596248,0.680367464,0.042025935,619,14729,,,0.199,1232,,0.144191489,0.253808511,0.407071623,0.33186516,0.482278085,,,,,,,0.342019544,0.150036445,0.534002643,0.135315223,0.102751846,0.1678786,4.089265498,119198,29149,3.786708021,4.391822975,0.244309073,1524,6238,0.206057902,0.282560245,18.27735892,56,30639,,,130.6795336,195,149220,112.3375483,149.0215189,381.3706229,294.9520121,485.19694,,,,,,,,,,101.1007854,83.37703623,118.8245345,,,,4.2,,,,,0,,,,,0.134716981,1785,13250,0.122071966,0.147361996,0.106849315,0.094164146,0.119534484,0.023018868,0.017356597,0.028681139,0.011320755,0.007548827,0.015092682,0.734236007,9327,12703,0.716054561,0.752417454,0.713423831,0.602584738,0.824262924,,,,,,,,,,0.736784262,0.707019025,0.766549499,0.317,,12703,0.295920401,0.338079599,75.79136523,,,74.51304218,77.06968829,55.27361116,52.14837905,58.39884327,,,,,,,,,,79.53614614,78.31943255,80.75285972,,,,466.2589458,551,80834,420.7372074,511.7806842,1809.857238,1516.784415,2102.930062,,,,,,,,,,328.074477,287.8874529,368.2615012,,,,99.67145336,27,27089,65.68411581,145.0167317,318.7919463,191.9335766,497.8331136,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.1,,,0.086,0.116,0.158,,,0.137,0.182,0.092,,,0.078,0.107,45.8,12,26207,,,0.084,2500,,,,0.052107727,1488.561427,28567,,,28.7782525,26,90346,18.79890999,42.1668077,125.3012048,66.71761437,214.2688763,,,,,,,,,,17.36899768,9.248259748,29.701515,,,,0.289,,,0.274,0.303,0.091924126,1449,15763,0.077626254,0.106221999,0.05662496,353,6234,0.039944109,0.073305811,0.00070346,22,31274,,,1421.545455,0.686461794,206.625,301,,,0.080378251,102,1269,0.043965473,0.116791028,2.935972384,,,,,,,,,3.08803767,3.037053763,,,,,,,,,3.269267612,0.418768909,,,,,1704.203654,,,,,0.78964843,42810,54214,0.736306268,0.842990592,67121,,,63192.65957,71049.34043,38977,30921.34043,47032.65957,68462,61639.53192,75284.46809,105179,51277.21277,159080.7872,83365,45825.93617,120904.0638,65314,62996.55319,67631.44681,,,,,,0.512441157,2286,4461,,,,,,,,0.286259144,,67121,,,4.495825305,7,1557,,,6.282651666,13,206919,3.345247411,10.74352569,,,,,,,,,,,,,,,,,,,25.35314875,35,149220,17.10566299,36.19319629,23.4553009,82.49492037,45.10074062,138.4124589,,,,,,,,,,13.06870865,7.144784629,21.92707248,,,,17.42393781,26,149220,11.38189466,25.53010594,,,,,,,,,,,,,15.36731937,9.252130124,23.99797279,,,,18.847955,39,206919,13.40273851,25.76577495,45.69055036,22.80855812,81.75301563,,,,,,,,,,16.30124705,10.83206028,23.55984068,,,,36.55172414,,2900,,,106,,0.788318966,18289,23200,,,0.415,,,,,10.22393787,,,,,0.840890883,10496,12482,0.838883398,0.842898368,0.110423883,1339,12126,0.098658618,0.122189147,0.851546227,10629,12482,0.839862418,0.863230035,31274,,,,,0.202020848,6318,31274,,,0.270352369,8455,31274,,,0.004508537,141,31274,,,0.1173179,3669,31274,,,0.00505212,158,31274,,,0.000223828,7,31274,,,0.024685042,772,31274,,,0.83209695,26023,31274,,,0.0021875,63,28800,0,0.005019233,0.484971542,15167,31274,,,1,30066,30066,, -27,023,27023,MN,Chippewa County,2024,1,8196.906482,164,32317,6151.160958,10242.65201,0,,,,2,,,,2,,,,2,,,,2,6748.723978,4846.157628,8651.290327,,,,,2,,0.146,,,0.121,0.173,3.228698614,,,2.510815584,4.034196013,4.579448287,,,3.605389289,5.560654326,0.0625,67,1072,0.048009468,0.076990532,0,,,,,,,,,,0.066298343,0.030051333,0.102545352,0.051144011,0.035303864,0.066984158,,,,,,,0.19,,,0.151,0.231,0.384,,,0.309,0.463,8.6,0.050833888,0.08,,,0.248,,,0.201,0.297,0.569376091,7173,12598,,,0.179906672,,,0.144885805,0.217904697,0.25,2,8,0.070127692,0.458326521,259,32,12357,,,19.23076923,45,2340,14.02705504,25.73228226,,,,,,,,,,57.61316872,31.49765546,96.6651075,11.54855643,7.237418831,17.48465322,,,,,,,0.07408176,714,9638,0.062166866,0.085996653,0.00097111,12,12357,,,1029.75,0.00048844,6,12284,,,2047.333333,0.00073266,9,12284,,,1364.888889,2085,,,,,,,,,2102,0.63,,,,,,,,,0.63,0.56,,,,,,,,,0.56,0.907327837,7813,8611,0.889253349,0.925402324,0.657912923,1904,2894,0.577922786,0.73790306,0.024382716,158,6480,,,0.124,364,,0.078723404,0.169276596,0.909090909,0.771092036,1,,,,,,,0.157782516,0.033730185,0.281834847,0.097127223,0.043577332,0.150677114,4.64001545,120130,25890,3.85720231,5.42282859,0.148928818,431,2894,0.099797399,0.198060237,27.51476896,34,12357,,,96.95916013,58,59819,73.62515535,125.3421985,,,,,,,,,,,,,98.87169943,73.61647443,129.9980252,,,,6.1,,,,,0,,,,,0.128529698,660,5135,0.098106811,0.158952586,0.102829268,0.074096333,0.131562204,0.023174294,0.007527626,0.038820962,0.009737098,0.000208182,0.019266015,0.795556321,4619,5806,0.764974453,0.826138189,,,,,,,,,,0.643207856,0.394395526,0.892020186,0.834341463,0.799414922,0.869268005,0.181,,5806,0.140859008,0.221140992,76.99073473,,,75.38183762,78.59963185,,,,,,,,,,,,,77.87422539,76.33497405,79.41347673,,,,377.1678068,164,32317,314.8156014,439.5200121,,,,,,,,,,,,,357.6909003,294.8196118,420.5621888,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.101,,,0.085,0.117,0.158,,,0.134,0.18,0.093,,,0.078,0.108,,,,,,0.08,1000,,,,0.050833888,632.4243949,12441,,,,,,,,,,,,,,,,,,,,,,,,,,0.287,,,0.272,0.301,0.085916341,571,6646,0.070426979,0.101405702,0.048866177,153,3131,0.033376815,0.064355539,0.000976881,12,12284,,,1023.666667,0.838844622,210.55,251,,,,,,,,3.130937656,,,,,,,,2.828201966,3.195923612,3.234353422,,,,,,,,2.877725515,3.326898098,0.02242278,,,,,353.25075,,,,,0.801023519,43357,54127,0.68754816,0.914498878,61878,,,53622.17021,70133.82979,,,,4133,1244.829787,7021.170213,,,,57619,17620.70213,97617.29787,63741,58695.04255,68786.95745,,,,,,0.380111055,753,1981,,,,,,,,0.310514238,,61878,,,6.281407035,5,796,,,,,,,,,,,,,,,,,,,,,,,,,,28.2023236,14,59819,15.01654954,48.22683226,23.40393521,,,,,,,,,,,,,24.45596663,11.72758659,44.97539337,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20.83333333,,1200,,,25,,0.763394919,6611,8660,,,0.723,,,,,18.44356839,,,,,0.707837111,3685,5206,0.661380284,0.754293938,0.109455701,551,5034,0.084394924,0.134516478,0.83154053,4329,5206,0.793208339,0.869872721,12284,,,,,0.243161837,2987,12284,,,0.22378704,2749,12284,,,0.008466298,104,12284,,,0.015304461,188,12284,,,0.013025073,160,12284,,,0.017583849,216,12284,,,0.085151417,1046,12284,,,0.847525236,10411,12284,,,0.014994431,175,11671,0.007307683,0.022681178,0.497476392,6111,12284,,,0.572074933,7207,12598,, -27,025,27025,MN,Chisago County,2024,1,5488.441734,636,159820,4805.272116,6171.611351,0,,,,2,,,,2,,,,2,,,,2,5446.545641,4750.680215,6142.411067,,,,,2,,0.119,,,0.1,0.142,2.906633471,,,2.235921138,3.657239787,4.426430858,,,3.594602144,5.334646586,0.071909572,299,4158,0.064057174,0.07976197,0,,,,0.102040816,0.042108882,0.161972751,,,,0.161904762,0.091445528,0.232363996,0.068264721,0.06028573,0.076243713,,,,,,,0.17,,,0.135,0.21,0.361,,,0.301,0.428,9.3,0.048904735,0.051,,,0.208,,,0.167,0.251,0.703661186,39842,56621,,,0.205888898,,,0.170512828,0.246274411,0.41025641,16,39,0.32976758,0.487355277,167,96,57469,,,7.989907485,95,11890,6.464312285,9.767247571,,,,,,,,,,,,,7.39918609,5.867094394,9.208927578,,,,,,,0.043738167,2056,47007,0.03778072,0.049695614,0.000487219,28,57469,,,2052.464286,0.000431124,25,57988,,,2319.52,0.001621025,94,57988,,,616.893617,1827,,,,,,,,,1833,0.44,,,,,,,,,0.44,0.47,,,,,,0.47,,,0.47,0.95195452,37844,39754,0.944471531,0.959437509,0.657691505,9453,14373,0.61233968,0.70304333,0.030811389,922,29924,,,0.065,820,,0.041170213,0.088829787,,,,,,,,,,0.294117647,0.16236718,0.425868114,0.05861201,0.039574802,0.077649218,3.449478802,157517,45664,3.197650717,3.701306886,0.136831436,1755,12826,0.106431762,0.167231111,9.222363361,53,57469,,,62.04089736,175,282072,52.84878937,71.23300535,,,,,,,,,,,,,65.35123422,55.556068,75.14640044,,,,6.6,,,,,1,,,,,0.095729013,1950,20370,0.080754882,0.110703145,0.083395384,0.069419072,0.097371695,0.011536573,0.006558288,0.016514859,0.002209131,0.000718295,0.003699967,0.76822093,22588,29403,0.748158949,0.788282911,,,,,,,,,,,,,0.725513034,0.711424777,0.73960129,0.525,,29403,0.491510882,0.558489118,79.30585533,,,78.63773667,79.97397399,,,,,,,,,,,,,79.26354797,78.58961604,79.93747991,,,,293.8012113,636,159820,270.0397698,317.5626528,,,,,,,,,,,,,294.178209,269.6986634,318.6577545,,,,30.36798857,17,55980,17.69047244,48.62209149,,,,,,,,,,,,,23.92153736,12.36060743,41.78611165,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.087,,,0.074,0.101,0.148,,,0.128,0.171,0.076,,,0.064,0.089,51.6,25,48489,,,0.051,2870,,,,0.048904735,2635.329467,53887,,,9.950714695,17,170842,5.796658005,15.93205817,,,,,,,,,,,,,10.76051524,6.268396664,17.22862729,,,,0.268,,,0.252,0.282,0.050735015,1736,34217,0.042394589,0.05907544,0.025951814,349,13448,0.018802878,0.033100751,0.000517348,30,57988,,,1932.933333,0.81744582,528.07,646,,,0.033419857,103,3082,0.011479542,0.055360172,3.077950587,,,,,,,,,3.103706751,3.341716779,,,,,,,,,3.378245522,0.028418442,,,,,2680.096333,,,,,0.802811327,54771,68224,0.751969872,0.853652783,98183,,,91719.17021,104646.8298,100208,4381.276596,196034.7234,147841,42015.29787,253666.7021,,,,,,,97102,92465.91489,101738.0851,,,,,,0.166731949,1277,7659,,,,,,,,0.249381257,,98183,,,4.152028106,13,3131,,,,,,,,,,,,,,,,,,,,,,,,,,13.33818654,38,282072,9.341901872,18.4656724,13.47173771,,,,,,,,,,,,,14.4847258,10.08914224,20.1447472,,,,8.508465924,24,282072,5.451534663,12.65992285,,,,,,,,,,,,,8.789932088,5.572062935,13.18921395,,,,10.7385845,42,391113,7.739427156,14.51544663,,,,,,,,,,,,,10.99200057,7.852846363,14.96798496,,,,14.5,,6000,,,87,,0.809033466,34570,42730,,,0.79,,,,,32.01728893,,,,,0.864855818,18085,20911,0.848663404,0.881048231,0.084058112,1730,20581,0.069063458,0.099052765,0.914446942,19122,20911,0.901991446,0.926902438,57988,,,,,0.221942471,12870,57988,,,0.171725185,9958,57988,,,0.015089329,875,57988,,,0.008536249,495,57988,,,0.021021591,1219,57988,,,0.000431124,25,57988,,,0.02785059,1615,57988,,,0.914051183,53004,57988,,,0.002735494,147,53738,0.000685325,0.004785664,0.47884045,27767,57988,,,0.656558521,37175,56621,, -27,027,27027,MN,Clay County,2024,1,6670.190013,615,182789,5955.424748,7384.955278,0,31446.58782,19707.40917,47610.51187,1,,,,2,9991.358209,6261.530996,15127.0364,1,13775.87511,9422.688377,19447.42531,,5730.377631,5028.415829,6432.339434,,,,,2,,0.131,,,0.109,0.154,3.1268965,,,2.462952236,3.899893416,4.561387456,,,3.735976137,5.461245435,0.070181274,422,6013,0.063724431,0.076638117,0,0.115384615,0.060463975,0.170305256,,,,0.087931035,0.064883366,0.110978703,0.074550129,0.04844764,0.100652617,0.064473394,0.05732064,0.071626147,,,,0.103825137,0.059629626,0.148020648,0.167,,,0.129,0.208,0.354,,,0.292,0.417,8.8,0.045595836,0.074,,,0.214,,,0.175,0.258,0.878517407,57383,65318,,,0.206525611,,,0.17121538,0.246240584,0.25,5,20,0.13289271,0.377758007,466.6,306,65574,,,7.495864351,145,19344,6.275768953,8.715959749,38.31417625,18.37313677,70.46113426,,,,15.66579635,8.094745573,27.36499354,24.71315093,16.42170932,35.71738389,4.391933688,3.430136648,5.539826742,,,,22.98850575,13.13991732,37.3318931,0.04709637,2553,54208,0.039947433,0.054245306,0.000198249,13,65574,,,5044.153846,0.000485371,32,65929,,,2060.28125,0.002897056,191,65929,,,345.1780105,2628,,,,,2763,,,8106,2538,0.6,,,,,,,,,0.61,0.58,,,,,0.41,0.53,0.25,0.49,0.59,0.94256045,37578,39868,0.932762291,0.952358608,0.76559932,13509,17645,0.71819928,0.81299936,0.021550004,810,37587,,,0.119,1898,,0.076106383,0.161893617,0.570422535,0.249685728,0.891159342,,,,0.566561014,0.416667076,0.716454952,0.225429017,0.051284639,0.399573395,0.125797481,0.090527754,0.161067208,4.986999386,138095,27691,4.442633787,5.531364985,0.17306975,2784,16086,0.128200127,0.217939374,10.97996157,72,65574,,,67.07866215,216,322010,58.13297743,76.02434688,226.4492754,108.5912295,416.4482799,,,,97.29810643,51.80714386,166.3827252,98.4445757,55.09868171,162.3693566,62.82042025,53.48610886,72.15473163,,,,6.8,,,,,1,,,,,0.141729095,3500,24695,0.121585997,0.161872193,0.126324368,0.105657387,0.146991349,0.019639603,0.01089771,0.028381497,0.008301276,0.004806141,0.01179641,0.767300471,25746,33554,0.749046093,0.785554849,,,,,,,0.597272727,0.389656856,0.804888599,,,,0.727007822,0.711321369,0.742694274,0.174,,33554,0.154421832,0.193578168,78.90392886,,,78.19886685,79.60899088,,,,,,,74.40531277,65.02293341,83.78769213,,,,79.6805537,78.96929036,80.39181704,,,,320.9891471,615,182789,295.1631633,346.815131,1418.396582,942.5142276,2049.97798,,,,570.4354187,311.8623516,957.0937043,654.3964677,444.6306506,928.8635504,292.4929279,266.5866753,318.3991806,,,,49.06836417,37,75405,34.54865668,67.63427643,,,,,,,,,,,,,28.68714141,16.71131703,45.93089237,,,,3.966942149,24,6050,2.541694687,5.90249547,,,,,,,,,,,,,,,,,,,,,,0.092,,,0.078,0.107,0.151,,,0.13,0.174,0.085,,,0.071,0.099,104.4,56,53646,,,0.074,4800,,,,0.045595836,2690.108731,58999,,,14.39692317,28,194486,9.566650893,20.80756247,,,,,,,,,,,,,12.03854743,7.353457522,18.59256012,,,,0.294,,,0.279,0.309,0.056229965,2140,38058,0.04669805,0.06576188,0.02671168,451,16884,0.018371254,0.035052105,0.000318525,21,65929,,,3139.476191,0.878208279,678.855,773,,,,,,,,3.047254781,,,,,,,2.571560137,2.488788003,3.156566886,3.318411106,,,,,,,2.257627949,2.558956299,3.485224433,0.065056141,,,,,1574.61826,,,,,0.79023374,50070,63361,0.731178111,0.849289369,79357,,,74048.91489,84665.08511,9296,7493.276596,11098.7234,64420,28390.55319,100449.4468,43125,24185.08511,62064.91489,88696,75571.74468,101820.2553,76668,72433.44681,80902.55319,,,,,,0.296603298,3292,11099,,,49.72700678,,,,,0.282999609,,79357,,,4.566210046,21,4599,,,,,,,,,,,,,,,,,,,,,,,,,,18.18961048,57,322010,13.70290393,23.67627827,17.70131362,,,,,,,,,,,,,17.40603922,12.78930292,23.14634221,,,,7.763734046,25,322010,5.024279323,11.46080299,,,,,,,,,,,,,8.303848653,5.263927734,12.45985013,,,,5.590227388,25,447209,3.617700415,8.252278397,,,,,,,,,,,,,5.928446232,3.758126363,8.895580187,,,,23.62318841,,6900,,,163,,0.683536521,32239,47165,,,0.747,,,,,88.80788669,,,,,0.660630292,16854,25512,0.642467358,0.678793225,0.150742674,3755,24910,0.125722665,0.175762682,0.877430229,22385,25512,0.858932881,0.895927577,65929,,,,,0.246355928,16242,65929,,,0.141895069,9355,65929,,,0.052329021,3450,65929,,,0.019202475,1266,65929,,,0.014318434,944,65929,,,0.000940406,62,65929,,,0.050857741,3353,65929,,,0.842755085,55562,65929,,,0.005992546,365,60909,0.002753018,0.009232074,0.500750808,33014,65929,,,0.257922778,16847,65318,, -27,029,27029,MN,Clearwater County,2024,1,10757.14893,146,23922,8036.329895,13477.96796,0,31070.36124,16543.6588,53131.26397,1,,,,2,,,,2,,,,2,9203.189006,6473.654447,11932.72357,,,,,2,,0.16,,,0.132,0.19,3.488155193,,,2.614014394,4.45957961,5.20412138,,,4.028301567,6.435416927,0.048387097,36,744,0.032967801,0.063806393,0,,,,,,,,,,,,,0.047377327,0.030249271,0.064505382,,,,,,,0.212,,,0.17,0.258,0.374,,,0.285,0.47,7.1,0.151487194,0.101,,,0.249,,,0.197,0.301,0.594321915,5066,8524,,,0.178944907,,,0.136802345,0.227442411,0.75,6,8,0.637522074,0.828479176,151.6,13,8576,,,31.47432358,57,1811,23.83834531,40.77863689,59.7826087,29.84326287,106.9676006,,,,,,,,,,21.84637068,14.84354896,31.00917935,,,,119.6581197,65.41820749,200.7659925,0.092305398,619,6706,0.079199015,0.105411781,0.000349813,3,8576,,,2858.666667,0.000346861,3,8649,,,2883,0.000231241,2,8649,,,4324.5,1071,,,,,,,,,602,0.49,,,,,,,,,0.53,0.3,,,,,0.19,,,,0.3,0.875712066,5073,5793,0.855529635,0.895894498,0.531835206,994,1869,0.479261973,0.58440844,0.065941385,297,4504,,,0.161,346,,0.096659575,0.225340426,0.390532544,0.264156293,0.516908796,,,,,,,0.130952381,0.054164963,0.207739799,0.066420664,0.040836372,0.092004956,4.913107033,121000,24628,4.240616482,5.585597584,0.159849553,340,2127,0.117934082,0.201765025,15.15858209,13,8576,,,99.77550511,44,44099,72.49703476,133.9439586,282.631038,141.0883959,505.7049978,,,,,,,,,,83.55344725,56.77051366,118.5974489,,,,5.6,,,,,0,,,,,0.153623188,530,3450,0.128569461,0.178676916,0.107917889,0.089347318,0.12648846,0.04057971,0.022401442,0.058757978,0.026086957,0.012779282,0.039394631,0.760626398,2720,3576,0.730353297,0.7908995,0.77173913,0.609127238,0.934351023,,,,,,,,,,0.732718894,0.681439379,0.783998409,0.375,,3576,0.335375141,0.414624859,75.1910751,,,73.1146595,77.2674907,,,,,,,,,,,,,76.28173475,74.15592847,78.40754103,,,,472.4461052,146,23922,389.5980868,555.2941236,1050.26092,632.3256815,1640.112525,,,,,,,,,,427.4822363,344.2260017,510.7384709,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.109,,,0.092,0.127,0.165,,,0.14,0.191,0.095,,,0.079,0.113,,,,,,0.101,860,,,,0.151487194,1317.181152,8695,,,,,,,,,,,,,,,,,,,,,,,,,,0.316,,,0.3,0.331,0.104815864,481,4589,0.088135013,0.121496715,0.065736155,146,2221,0.045480836,0.085991474,0.000578102,5,8649,,,1729.8,0.833413462,86.675,104,,,,,,,,2.912874308,,,,,,,,,2.995668164,3.144579092,,,,,,,,,3.306795768,0.011067361,,,,,2039.9795,,,,,0.851274419,45756,53750,0.783834447,0.918714391,64716,,,57459.82979,71972.17021,39196,29202.97872,49189.02128,,,,,,,93750,64353.57447,123146.4255,63582,59454.68085,67709.31915,,,,,,0.455797101,629,1380,,,,,,,,0.296897212,,64716,,,1.876172608,1,533,,,,,,,,,,,,,,,,,,,,,,,,,,28.38283851,11,44099,13.6106743,52.19705057,24.94387628,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.54545455,,1100,,,16,,0.708502634,4708,6645,,,0.519,,,,,6.299194988,,,,,0.818836045,2617,3196,0.810706398,0.826965692,0.10110175,312,3086,0.080936873,0.121266627,0.838548185,2680,3196,0.821595323,0.855501048,8649,,,,,0.251358539,2174,8649,,,0.209388369,1811,8649,,,0.007168459,62,8649,,,0.097236675,841,8649,,,0.00393109,34,8649,,,0.000231241,2,8649,,,0.026014568,225,8649,,,0.83188808,7195,8649,,,0.001621554,13,8017,0,0.008931198,0.487917678,4220,8649,,,1,8524,8524,, -27,031,27031,MN,Cook County,2024,1,4105.107257,63,14691,2346.423492,6666.437,1,,,,2,,,,2,,,,2,,,,2,2574.397898,1440.870961,4246.07783,1,,,,2,,0.115,,,0.095,0.137,2.784179839,,,2.126779926,3.557365586,4.238969405,,,3.361358104,5.239884861,0.086466165,23,266,0.052690752,0.120241579,0,,,,,,,,,,,,,0.065989848,0.031321167,0.100658529,,,,,,,0.151,,,0.117,0.189,0.312,,,0.243,0.389,8.3,0.089290309,0.076,,,0.19,,,0.151,0.233,0.885357143,4958,5600,,,0.179222411,,,0.144386106,0.217471252,1,2,2,,,124.6,7,5617,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.08676622,337,3884,0.072468348,0.101064093,0.001602279,9,5617,,,624.1111111,0.000525578,3,5708,,,1902.666667,0.001051156,6,5708,,,951.3333333,2377,,,,,,,,,2439,0.35,,,,,,,,,0.36,0.25,,,,,0.31,,,,0.25,0.972012439,4376,4502,0.959878652,0.984146226,0.726767276,915,1259,0.600573007,0.852961544,0.035438597,101,2850,,,0.151,125,,0.092617021,0.209382979,0.245098039,0.028547026,0.461649053,,,,,,,,,,0.067323481,0.013455188,0.121191774,3.365250121,132325,39321,2.673428047,4.057072195,0.189511323,159,839,0.074831909,0.304190737,17.80309774,10,5617,,,73.29228965,20,27288,44.7688346,113.193997,,,,,,,,,,,,,60.56149154,33.10953098,101.6118922,,,,4.4,,,,,0,,,,,0.153256705,400,2610,0.109808209,0.196705201,0.094757282,0.053907678,0.135606885,0.061302682,0.024650641,0.097954723,0.030651341,0.005222604,0.056080078,0.603335751,1664,2758,0.55532987,0.651341631,0.781914894,0.679654187,0.8841756,,,,,,,,,,0.589630225,0.534379067,0.644881383,0.248,,2758,0.172286499,0.323713501,83.21057444,,,80.80501517,85.61613371,,,,,,,,,,,,,84.50575267,82.42629229,86.58521306,,,,219.0314616,63,14691,159.7630511,293.0813285,,,,,,,,,,,,,171.3774765,120.0306776,237.2586654,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.084,,,0.071,0.1,0.139,,,0.118,0.159,0.08,,,0.067,0.094,,,,,,0.076,420,,,,0.089290309,462.1666384,5176,,,,,,,,,,,,,,,,,,,,,,,,,,0.271,,,0.256,0.288,0.095516569,294,3078,0.077644229,0.11338891,0.055489965,47,847,0.035234645,0.075745284,0.000175193,1,5708,,,5708,,,,,,,,,,,3.203819065,,,,,,,,,3.421968234,3.185387419,,,,,,,,,3.148913663,0.099397628,,,,,919.6172,,,,,0.877756701,53214,60625,0.72816491,1.027348492,69279,,,61469.97872,77088.02128,45250,26014.59575,64485.40426,213571,181312.617,245829.383,,,,41667,16719.59575,66614.40426,74531,66189.38298,82872.61702,,,,,,0.276083467,172,623,,,,,,,,0.324167497,,69279,,,3.831417625,1,261,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,400,,,-888,,0.871935853,3806,4365,,,0.347,,,,,12.84825387,,,,,0.780688623,2086,2672,0.699987338,0.861389908,0.089334908,227,2541,0.053920951,0.124748864,0.916916168,2450,2672,0.889839802,0.943992534,5708,,,,,0.147161878,840,5708,,,0.3100911,1770,5708,,,0.01419061,81,5708,,,0.079537491,454,5708,,,0.01033637,59,5708,,,0.000525578,3,5708,,,0.027505256,157,5708,,,0.844604065,4821,5708,,,0.00818148,44,5378,0,0.01994438,0.499124036,2849,5708,,,1,5600,5600,, -27,033,27033,MN,Cottonwood County,2024,1,7366.198064,149,30211,5504.332238,9228.06389,0,,,,2,,,,2,,,,2,,,,2,7140.868147,5145.118893,9136.617401,,,,,2,,0.148,,,0.123,0.174,3.253565643,,,2.528185358,4.066537019,4.543155275,,,3.615708137,5.566195269,0.071060762,69,971,0.054900253,0.087221271,0,,,,,,,,,,0.088235294,0.045597555,0.130873033,0.065527066,0.047221581,0.083832551,,,,,,,0.194,,,0.154,0.236,0.375,,,0.302,0.451,9,0.020626604,0.076,,,0.253,,,0.206,0.306,0.675609968,7781,11517,,,0.179959449,,,0.145388069,0.218970859,0.125,1,8,0.007330353,0.353459145,216.1,25,11569,,,17.00680272,40,2352,12.1499092,23.15843834,,,,,,,,,,33.33333333,16.6398799,59.64254095,12.88244767,8.254027297,19.16806097,,,,,,,0.070450976,628,8914,0.059727572,0.08117438,0.000605065,7,11569,,,1652.714286,0.000528355,6,11356,,,1892.666667,0.001232829,14,11356,,,811.1428571,769,,,,,,,,,786,0.55,,,,,,,,,0.56,0.28,,,,,,,,,0.28,0.913076923,7122,7800,0.898047178,0.928106668,0.609580838,1527,2505,0.530942217,0.68821946,0.028061225,187,6664,,,0.166,469,,0.112382979,0.219617021,,,,0.255639098,0,0.54297063,,,,0.196242171,0.080089622,0.312394721,0.129331381,0.068844275,0.189818487,3.874350813,115630,29845,3.468918071,4.279783554,0.197600565,560,2834,0.139524411,0.255676718,20.74509465,24,11569,,,79.53480974,45,56579,58.01323599,106.423833,,,,,,,,,,,,,79.49291885,56.25392056,109.1102419,,,,6.3,,,,,0,,,,,0.092573754,455,4915,0.070169173,0.114978334,0.063039014,0.045087521,0.080990508,0.021363174,0.005776695,0.036949653,0.010986775,0.002992092,0.018981459,0.77308354,4044,5231,0.73537341,0.810793671,,,,,,,,,,0.6359375,0.602318182,0.669556818,0.77613473,0.733116334,0.819153126,0.177,,5231,0.143937512,0.210062488,77.86767039,,,76.3016049,79.43373588,,,,,,,,,,,,,77.94029737,76.29363558,79.58695916,,,,363.8801525,149,30211,300.5211963,427.2391087,,,,,,,,,,,,,360.879599,293.0257713,428.7334266,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.1,,,0.085,0.116,0.152,,,0.13,0.177,0.094,,,0.079,0.11,84.8,8,9432,,,0.076,870,,,,0.020626604,241.0631213,11687,,,,,,,,,,,,,,,,,,,,,,,,,,0.296,,,0.28,0.31,0.080220147,481,5996,0.065922274,0.094518019,0.050980392,156,3060,0.034299541,0.067661243,0.001144769,13,11356,,,873.5384615,0.955514706,129.95,136,,,,,,,,3.27722295,,,,,,,,2.870095486,3.457668682,3.503080803,,,,,,,,2.892399023,3.703956567,0.049373926,,,,,-2492.459467,,,,,0.861722985,44832,52026,0.780190838,0.943255131,59981,,,52283.97872,67678.02128,,,,37768,13537.87234,61998.12766,,,,54083,29323.85106,78842.14894,65332,57814.89362,72849.10638,,,,,,0.447714136,852,1903,,,57.28918064,,,,,0.320334773,,59981,,,7.957559682,6,754,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.58838162,14,79598,9.615731898,29.51031574,,,,,,,,,,,,,19.17771844,10.21132738,32.7944826,,,,35.83333333,,1200,,,43,,0.758162632,6107,8055,,,0.726,,,,,15.89910071,,,,,0.766746152,3537,4613,0.738658122,0.794834182,0.073579353,325,4417,0.052389189,0.094769517,0.830045524,3829,4613,0.803283247,0.856807801,11356,,,,,0.25211342,2863,11356,,,0.232740402,2643,11356,,,0.01391335,158,11356,,,0.009862628,112,11356,,,0.045174357,513,11356,,,0.008629799,98,11356,,,0.101884466,1157,11356,,,0.817981684,9289,11356,,,0.010989011,118,10738,0.003329578,0.018648444,0.496125396,5634,11356,,,1,11517,11517,, -27,035,27035,MN,Crow Wing County,2024,1,6727.137036,878,178646,5955.493326,7498.780746,0,,,,2,,,,2,,,,2,,,,2,6410.451614,5652.474287,7168.42894,,,,,2,,0.131,,,0.108,0.155,3.12591955,,,2.4858417,3.853419063,4.546622623,,,3.780663793,5.396113906,0.060791603,278,4573,0.053865989,0.067717216,0,,,,,,,,,,,,,0.062221179,0.054966443,0.069475914,,,,,,,0.175,,,0.137,0.215,0.316,,,0.264,0.371,8.8,0.037304278,0.079,,,0.221,,,0.181,0.262,0.80539298,53255,66123,,,0.173221169,,,0.142870656,0.206444872,0.2,8,40,0.120862308,0.289399317,255.7,172,67270,,,13.55822775,168,12391,11.50798938,15.60846611,,,,,,,,,,,,,12.61885719,10.54331329,14.6944011,,,,,,,0.067254364,3456,51387,0.057722449,0.076786279,0.001010852,68,67270,,,989.2647059,0.00082416,56,67948,,,1213.357143,0.003782304,257,67948,,,264.3891051,1987,,,,,,,21429,,1956,0.55,,,,,,,,,0.56,0.53,,,,,0.35,0.42,0.23,,0.53,0.943074556,45360,48098,0.935633524,0.950515588,0.69508817,10288,14801,0.651863607,0.738312732,0.032470054,1087,33477,,,0.121,1635,,0.081680851,0.160319149,0.218181818,0,0.613136086,,,,,,,0.105882353,0,0.27041149,0.126756015,0.098130079,0.155381951,4.043144556,123793,30618,3.653058116,4.433230995,0.197842503,2751,13905,0.156911912,0.238773093,14.71681284,99,67270,,,84.94203775,278,327282,74.95684739,94.92722812,,,,,,,,,,,,,86.14765127,75.81423602,96.48106652,,,,4.3,,,,,0,,,,,0.110487231,3050,27605,0.09616449,0.124809972,0.099432961,0.084803555,0.114062368,0.01068647,0.007048337,0.014324603,0.007426191,0,0.015761805,0.772597807,23599,30545,0.754071652,0.791123962,,,,,,,,,,,,,0.788390889,0.773705682,0.803076097,0.239,,30545,0.219205492,0.258794508,79.03535539,,,78.35741748,79.71329329,,,,,,,,,,,,,79.2141863,78.54188142,79.88649118,,,,323.4028222,878,178646,299.7235083,347.0821362,,,,,,,,,,,,,317.879172,293.9675158,341.7908283,,,,41.07315951,25,60867,26.58038321,60.63208586,,,,,,,,,,,,,36.07828989,22.03755675,55.71999261,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.094,,,0.079,0.109,0.151,,,0.129,0.174,0.08,,,0.068,0.093,57.4,33,57501,,,0.079,5180,,,,0.037304278,2331.517355,62500,,,11.61798059,23,197969,7.364803094,17.43267527,,,,,,,,,,,,,11.74579954,7.361030038,17.78328166,,,,0.286,,,0.269,0.302,0.0761737,2854,37467,0.064258806,0.088088593,0.044057377,645,14640,0.030950994,0.05716376,0.001574734,107,67948,,,635.0280374,0.847810026,642.64,758,,,0.059189012,181,3058,0.025150333,0.093227692,3.275646718,,,,,,,,,3.287141661,3.399327833,,,,,,,,,3.414350355,0.026008347,,,,,1511.944633,,,,,0.80430577,45317,56343,0.7656794,0.84293214,67373,,,61774.19149,72971.80851,56141,54719.55319,57562.44681,,,,,,,92500,50445.19149,134554.8085,65880,63206.29787,68553.70213,,,,,,0.284931507,2704,9490,,,70.14306273,,,,,0.333338281,,67373,,,7.042253521,25,3550,,,,,,,,,,,,,,,,,,,,,,,,,,19.30195184,59,327282,14.45848645,25.24742824,18.02726701,,,,,,,,,,,,,19.6020083,14.5949827,25.77302084,,,,10.38859455,34,327282,7.194403721,14.5170196,,,,,,,,,,,,,10.9701129,7.597122083,15.32963321,,,,12.31716705,56,454650,9.304255621,15.99486594,,,,,,,,,,,,,12.52862443,9.411888266,16.34713719,,,,20.60606061,,6600,,,136,,0.794246738,40173,50580,,,0.546,,,,,39.83201149,,,,,0.772751501,21746,28141,0.75758857,0.787914433,0.105473723,2900,27495,0.09191624,0.119031205,0.862833588,24281,28141,0.847240629,0.878426547,67948,,,,,0.202861011,13784,67948,,,0.246026373,16717,67948,,,0.008182728,556,67948,,,0.010346147,703,67948,,,0.005224584,355,67948,,,0.000367928,25,67948,,,0.017410373,1183,67948,,,0.94330959,64096,67948,,,0.001836024,116,63180,5.48091E-05,0.003617239,0.499013952,33907,67948,,,0.687143657,45436,66123,, -27,037,27037,MN,Dakota County,2024,1,5004.496889,3788,1225797,4762.259597,5246.734181,0,,,,2,2703.388459,2067.877964,3472.615572,,6402.288782,5455.419732,7349.157832,,5077.040908,4207.99473,5946.087086,,4855.674026,4579.780065,5131.567987,,,,,2,,0.106,,,0.088,0.126,2.632631835,,,2.116974557,3.195863541,4.195799121,,,3.584025074,4.845394223,0.066294468,2363,35644,0.063711574,0.068877361,0,,,,0.09529321,0.083989436,0.106596984,0.085804416,0.077843644,0.093765189,0.077642171,0.069190008,0.086094334,0.056974797,0.053997892,0.059951703,,,,0.073913044,0.057006743,0.090819344,0.13,,,0.101,0.162,0.321,,,0.287,0.356,9.5,0.046555981,0.041,,,0.184,,,0.155,0.217,0.96860067,426070,439882,,,0.180808331,,,0.158443865,0.204552782,0.240963855,20,83,0.18479349,0.300204892,328.9,1454,442038,,,6.793624776,630,92734,6.263122376,7.324127176,,,,4.338842975,2.685812187,6.632382383,12.78515919,10.30395717,15.2663612,20.74047121,18.04827154,23.43267088,3.102704235,2.669429529,3.535978942,,,,14.24614167,11.14672847,17.94065771,0.043921248,16437,374238,0.039155291,0.048687205,0.000604021,267,442038,,,1655.573034,0.000742092,329,443341,,,1347.541033,0.00234808,1041,443341,,,425.8799232,2323,,,,,8945,1493,2772,1711,2258,0.51,,,,,,0.31,0.37,0.24,0.53,0.57,,,,,0.23,0.5,0.34,0.37,0.58,0.955816377,285272,298459,0.952092671,0.959540082,0.786301183,92252,117324,0.76625493,0.806347436,0.023891011,5780,241932,,,0.067,6988,,0.04912766,0.08487234,0.095652174,0,0.329091727,0.077801194,0.038604419,0.116997969,0.173639357,0.132124903,0.215153811,0.180110406,0.133575615,0.226645198,0.03448689,0.02669014,0.04228364,3.822217008,179197,46883,3.703763383,3.940670634,0.194068086,20454,105396,0.175978563,0.212157609,8.257208656,365,442038,,,61.02212052,1312,2150040,57.72012523,64.32411581,,,,21.44158954,13.738031,31.90338562,49.0781699,38.66801581,61.42864807,32.27488269,24.10442613,42.32421469,67.97316811,64.00285837,71.94347784,,,,7,,,,,1,,,,,0.106108341,17345,163465,0.098409583,0.113807099,0.086979263,0.080285505,0.093673021,0.018689016,0.01577833,0.021599702,0.004679901,0.002935881,0.006423921,0.721387553,170215,235955,0.711460054,0.731315051,0.699530516,0.646844816,0.752216217,0.632315948,0.587747826,0.676884071,0.601936756,0.5592507,0.644622811,0.632732663,0.602200303,0.663265022,0.725082604,0.712655938,0.737509271,0.347,,235955,0.335144831,0.35885517,81.11385064,,,80.84526804,81.38243324,,,,84.97966568,83.03428483,86.92504652,80.48948155,78.03707888,82.94188423,83.42763809,81.21957532,85.63570087,81.17094974,80.88154217,81.46035731,,,,249.0908272,3788,1225797,240.9426988,257.2389557,,,,168.2923233,136.3173222,205.513731,302.8736767,261.4322658,344.3150877,242.9809534,203.1193708,282.8425361,248.2956317,239.2850567,257.3062067,,,,35.3180157,161,455858,29.86245454,40.77357686,,,,,,,60.71009881,40.65850598,87.18982884,47.31085122,30.61708839,69.84014931,27.22136279,21.64995766,33.78888875,,,,3.916122761,141,36005,3.269720581,4.562524941,,,,,,,5.663254193,3.699425662,8.297979543,5.71273123,3.53627067,8.732516522,2.831445703,2.198728379,3.58953211,,,,,,,0.08,,,0.068,0.093,0.129,,,0.111,0.146,0.076,,,0.065,0.087,147.4,541,367064,,,0.041,18030,,,,0.046555981,18554.9795,398552,,,13.73894169,179,1302866,11.72622413,15.75165925,,,,,,,17.16547518,9.99952186,27.48358861,14.03452493,7.672805378,23.54754809,13.47424308,11.19280834,15.75567782,,,,0.264,,,0.251,0.278,0.052933145,14190,268074,0.045784209,0.060082082,0.022476953,2504,111403,0.016519506,0.0284344,0.000685702,304,443341,,,1458.358553,0.859304619,5097.395,5932,,,0.034330419,746,21730,0.024139317,0.04452152,3.261390801,,,,,,3.50903992,2.79068881,2.660899777,3.450855171,3.430818941,,,,,,3.841083401,2.790358396,2.679576227,3.654626497,0.078851618,,,,,2753.796889,,,,,0.81415861,63414,77889,0.788704797,0.839612424,97727,,,93992.87234,101461.1277,87059,59843,114275,113653,100302.3617,127003.6383,73950,64465.74468,83434.25532,71996,60636.34043,83355.65957,105812,103861.5319,107762.4681,,,,,,0.230495681,16917,73394,,,46.14984724,,,,,0.368956379,,97727,,,7.510885341,207,27560,,,2.11252587,63,2982212,1.623322882,2.702838272,,,,,,,11.31472144,7.172562803,16.97763763,,,,1.336317488,0.9079629,1.896796007,,,,11.76659439,253,2150040,10.29152977,13.24165902,11.76722294,,,,9.949409731,4.96670949,17.80224232,7.68428534,3.970582368,13.42290006,,,,12.68989551,10.93512167,14.44466935,,,,6.558017525,141,2150040,5.475539502,7.640495549,,,,,,,14.85260405,9.415276896,22.28619863,,,,6.217794241,5.016985597,7.418602884,,,,4.761566247,142,2982212,3.978385991,5.544746502,,,,,,,,,,,,,4.784878749,3.894723988,5.67503351,,,,10.56367432,,47900,,,506,,0.859076913,262259,305280,,,0.808,,,,,112.912587,,,,,0.759025761,128582,169404,0.75072657,0.767324952,0.096994478,16249,167525,0.089812683,0.104176274,0.932492739,157968,169404,0.927026522,0.937958957,443341,,,,,0.236874099,105016,443341,,,0.160977667,71368,443341,,,0.084693272,37548,443341,,,0.006561541,2909,443341,,,0.057035104,25286,443341,,,0.001012764,449,443341,,,0.080094104,35509,443341,,,0.746736711,331059,443341,,,0.016802381,6927,412263,0.014482787,0.019121975,0.502360486,222717,443341,,,0.049811086,21911,439882,, -27,039,27039,MN,Dodge County,2024,1,5563.924132,184,58801,4358.736276,6769.111988,0,,,,2,,,,2,,,,2,,,,2,5664.258515,4371.753435,6956.763594,,,,,2,,0.112,,,0.093,0.134,2.840118074,,,2.180692175,3.555106784,4.253471174,,,3.367425883,5.207694673,0.066551922,116,1743,0.054850658,0.078253186,0,,,,,,,,,,,,,0.061901723,0.049970166,0.07383328,,,,,,,0.155,,,0.12,0.193,0.356,,,0.283,0.434,9.7,0.033564679,0.039,,,0.199,,,0.158,0.242,0.720276034,15030,20867,,,0.212967175,,,0.17291933,0.256980343,0.3125,5,16,0.177519792,0.449075671,229.3,48,20935,,,7.130124777,36,5049,4.993851736,9.871098136,,,,,,,,,,,,,6.540369869,4.380188349,9.39306212,,,,,,,0.046987067,832,17707,0.039838131,0.054136003,0.000429902,9,20935,,,2326.111111,0.000190649,4,20981,,,5245.25,0.00042896,9,20981,,,2331.222222,3593,,,,,,,,,3478,0.55,,,,,,,,,0.55,0.55,,,,,,,,,0.55,0.957541739,13306,13896,0.947617438,0.96746604,0.744728916,3956,5312,0.67450129,0.814956541,0.026539011,316,11907,,,0.061,313,,0.038361702,0.083638298,,,,,,,0.839285714,0.620927078,1,0.160465116,0.032069024,0.288861208,0.037662634,0.022208172,0.053117096,3.212664699,154587,48118,2.870127235,3.555202164,0.161728628,857,5299,0.100348,0.223109256,14.80773824,31,20935,,,84.25890463,88,104440,67.57810539,103.8093271,,,,,,,,,,,,,89.69264625,71.7425396,110.7696885,,,,7.6,,,,,0,,,,,0.070096463,545,7775,0.052663458,0.087529468,0.052876535,0.037317787,0.068435284,0.015819936,0.006088567,0.025551305,0.002572347,0,0.005605899,0.76980965,8695,11295,0.747975351,0.79164395,,,,,,,,,,,,,0.729582268,0.684085922,0.775078614,0.353,,11295,0.319005992,0.386994008,80.75765811,,,79.50444532,82.0108709,,,,,,,,,,,,,80.64937001,79.35885029,81.93988972,,,,257.73802,184,58801,219.5507034,295.9253365,,,,,,,,,,,,,258.7365479,219.1346328,298.3384629,,,,68.60475088,16,23322,39.21354281,111.4098173,,,,,,,,,,,,,74.06310176,41.45255583,122.1558232,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.083,,,0.07,0.097,0.139,,,0.117,0.159,0.074,,,0.062,0.087,28.9,5,17296,,,0.039,810,,,,0.033564679,674.213715,20087,,,,,,,,,,,,,,,,,,,,,,,,,,0.284,,,0.267,0.301,0.054543996,680,12467,0.045012081,0.064075911,0.030110648,166,5513,0.020578733,0.039642563,,0,20981,,,,0.971007605,255.375,263,,,,,,,,3.162556798,,,,,,,,,3.178547191,3.315654909,,,,,,,,,3.33203136,0.037380673,,,,,707.4096667,,,,,0.86313947,54244,62845,0.755687202,0.970591738,88994,,,82189.40426,95798.59575,,,,78542,3312.553192,153771.4468,,,,73945,57507.21277,90382.78723,93874,87912.97872,99835.02128,,,,,,0.177562762,679,3824,,,,,,,,0.252354091,,88994,,,7.830853563,10,1277,,,,,,,,,,,,,,,,,,,,,,,,,,19.98859864,21,104440,12.20955534,30.87076943,20.10723861,,,,,,,,,,,,,20.52562695,12.35776825,32.05330904,,,,10.53236308,11,104440,5.257717701,18.84530689,,,,,,,,,,,,,11.47231522,5.726938422,20.5271409,,,,13.07549377,19,145310,7.8723014,20.41900322,,,,,,,,,,,,,13.4704324,7.983431952,21.28909065,,,,15.76923077,,2600,,,41,,0.811655012,12187,15015,,,0.775,,,,,18.85009707,,,,,0.871726076,6823,7827,0.85306127,0.890390883,0.072908573,563,7722,0.053162187,0.092654959,0.890762744,6972,7827,0.87149435,0.910031139,20981,,,,,0.2477003,5197,20981,,,0.160621515,3370,20981,,,0.007435299,156,20981,,,0.005099852,107,20981,,,0.008245556,173,20981,,,0.000285973,6,20981,,,0.053381631,1120,20981,,,0.911157714,19117,20981,,,0.008770588,172,19611,0.0023523,0.015188876,0.492350222,10330,20981,,,0.63344036,13218,20867,, -27,041,27041,MN,Douglas County,2024,1,6129.998907,462,103725,5220.968982,7039.028831,0,,,,2,,,,2,,,,2,,,,2,6010.972805,5095.682364,6926.263246,,,,,2,,0.12,,,0.098,0.142,2.920299751,,,2.259064814,3.617866394,4.337397766,,,3.496802803,5.169435217,0.064926142,189,2911,0.055975221,0.073877063,0,,,,,,,,,,,,,0.063272727,0.054173499,0.072371956,,,,,,,0.167,,,0.127,0.207,0.373,,,0.307,0.436,8.8,0.069210049,0.062,,,0.218,,,0.173,0.263,0.744654669,29046,39006,,,0.196899163,,,0.160700246,0.235397865,0.1,3,30,0.030565485,0.20471433,257.4,101,39238,,,10.11946592,72,7115,7.917858846,12.74379256,,,,,,,,,,,,,8.627213561,6.534167302,11.17755584,,,,,,,0.044328074,1329,29981,0.037179138,0.051477011,0.001121362,44,39238,,,891.7727273,0.000756277,30,39668,,,1322.266667,0.002420087,96,39668,,,413.2083333,1474,,,,,,,,,1447,0.64,,,,,,,,,0.64,0.59,,,,,0.23,,,0.23,0.59,0.956503076,26740,27956,0.948951759,0.964054394,0.745970488,6572,8810,0.693342056,0.79859892,0.023548537,507,21530,,,0.089,737,,0.058021277,0.119978723,,,,,,,,,,0.197324415,0.023356943,0.371291887,0.071119843,0.046100942,0.096138744,3.935316407,131900,33517,3.665735776,4.204897038,0.202863962,1700,8380,0.160676107,0.245051817,20.13354401,79,39238,,,79.47878648,152,191246,66.84348803,92.11408494,,,,,,,,,,,,,79.79668243,66.85280239,92.74056246,,,,5.8,,,,,0,,,,,0.109756098,1845,16810,0.091107262,0.128404934,0.095608007,0.077773509,0.113442506,0.007674004,0.002971079,0.012376928,0.01635931,0.00622668,0.02649194,0.800843535,15570,19442,0.775817986,0.825869083,,,,,,,,,,,,,0.803080144,0.779852649,0.826307638,0.178,,19442,0.158277342,0.197722658,79.33846074,,,78.5243998,80.15252168,,,,,,,,,,,,,79.36517786,78.54731598,80.18303973,,,,300.9030244,462,103725,270.8801753,330.9258735,,,,,,,,,,,,,299.2939248,268.8480738,329.7397758,,,,27.75310835,10,36032,13.30869421,51.03895438,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.088,,,0.074,0.103,0.141,,,0.121,0.162,0.076,,,0.064,0.089,45.1,15,33265,,,0.062,2390,,,,0.069210049,2492.184639,36009,,,13.82803115,16,115707,7.903914589,22.45585626,,,,,,,,,,,,,13.57269536,7.596534559,22.38609692,,,,0.283,,,0.267,0.3,0.050761892,1096,21591,0.042421466,0.059102317,0.029084299,256,8802,0.020743874,0.037424725,0.00098316,39,39668,,,1017.128205,0.870136674,381.99,439,,,,,,,,3.309186653,,,,,,,,,3.33990128,3.609109835,,,,,,,,,3.656146479,0.038575503,,,,,3464.6865,,,,,0.772856276,47111,60957,0.717564493,0.828148059,73521,,,66398.2766,80643.7234,,,,,,,,,,77733,49437.51064,106028.4894,72119,67217.21277,77020.78723,,,,,,0.214607131,1240,5778,,,,,,,,0.305463745,,73521,,,8.960573477,20,2232,,,,,,,,,,,,,,,,,,,,,,,,,,15.20259861,30,191246,9.930842146,22.27532934,15.6866026,,,,,,,,,,,,,15.1202705,9.785041833,22.320502,,,,9.411961557,18,191246,5.578124918,14.874957,,,,,,,,,,,,,9.291394529,5.412579712,14.87642271,,,,13.16893486,35,265777,9.17264564,18.31480052,,,,,,,,,,,,,13.35034848,9.245504421,18.65577387,,,,20.52631579,,3800,,,78,,0.815696203,24165,29625,,,0.635,,,,,25.05908661,,,,,0.75701368,13060,17252,0.74244015,0.771587209,0.089934238,1518,16879,0.073420058,0.106448417,0.852828658,14713,17252,0.832439598,0.873217717,39668,,,,,0.212740748,8439,39668,,,0.244806897,9711,39668,,,0.007714026,306,39668,,,0.004915801,195,39668,,,0.006680448,265,39668,,,0.000529394,21,39668,,,0.020974085,832,39668,,,0.950110921,37689,39668,,,0.002903821,107,36848,0,0.006396922,0.495235454,19645,39668,,,0.513997847,20049,39006,, -27,043,27043,MN,Faribault County,2024,1,7217.93716,215,36624,5532.907293,8902.967027,0,,,,2,,,,2,,,,2,,,,2,7333.035937,5545.605859,9120.466015,,,,,2,,0.147,,,0.124,0.174,3.303894543,,,2.66053043,4.182358905,4.789321992,,,3.977335501,5.908749011,0.066599395,66,991,0.051075938,0.082122851,0,,,,,,,,,,0.083333333,0.038190385,0.128476282,0.056441718,0.040597831,0.072285605,,,,,,,0.193,,,0.154,0.239,0.387,,,0.324,0.479,8.8,0.044651395,0.077,,,0.25,,,0.206,0.305,0.539400905,7509,13921,,,0.173780369,,,0.145165362,0.217797511,0.230769231,3,13,0.089378268,0.394382228,302,42,13909,,,8.884150675,25,2814,5.749353891,13.11475895,,,,,,,,,,,,,7.623318386,4.440863888,12.20567122,,,,,,,0.06605662,693,10491,0.056524705,0.075588535,0.000503271,7,13909,,,1987,0.000359041,5,13926,,,2785.2,0.000718081,10,13926,,,1392.6,1071,,,,,,,,,1104,0.52,,,,,,,,,0.52,0.58,,,,,,,,0.46,0.58,0.932559314,9237,9905,0.920281648,0.944836979,0.662458472,1994,3010,0.59946232,0.725454624,0.031555115,223,7067,,,0.147,439,,0.098148936,0.195851064,,,,,,,,,,0.36318408,0.193950969,0.53241719,0.118622978,0.085383674,0.151862282,4.274264812,118021,27612,3.802138653,4.746390971,0.177440633,538,3032,0.127397129,0.227484138,24.44460421,34,13909,,,69.86391092,48,68705,51.51213278,92.62941006,,,,,,,,,,,,,76.05424124,55.8817958,101.1360179,,,,7,,,,,0,,,,,0.095473251,580,6075,0.077903246,0.113043256,0.07909699,0.062191411,0.096002569,0.009547325,0.002388819,0.016705831,0.009876543,0.002723759,0.017029327,0.800980975,5389,6728,0.77975638,0.82220557,,,,,,,,,,0.718446602,0.536320292,0.900572912,0.781514297,0.746852658,0.816175936,0.28,,6728,0.250046422,0.309953578,78.66350928,,,77.18481219,80.14220637,,,,,,,,,,,,,78.50791914,76.98443549,80.03140279,,,,380.6273545,215,36624,324.8377761,436.4169328,,,,,,,,,,,,,385.7342925,326.6743785,444.7942065,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.101,,,0.087,0.119,0.155,,,0.136,0.18,0.091,,,0.078,0.108,93.4,11,11781,,,0.077,1080,,,,0.044651395,649.8117545,14553,,,,,,,,,,,,,,,,,,,,,,,,,,0.306,,,0.29,0.323,0.076206942,573,7519,0.063100559,0.089313325,0.041346154,129,3120,0.028239771,0.054452537,0.000646273,9,13926,,,1547.333333,0.865217391,119.4,138,,,,,,,,3.184004342,,,,,,,,2.554333138,3.352153117,3.399385558,,,,,,,,2.582231676,3.599179359,0.011794264,,,,,602.18815,,,,,0.765177089,41934,54803,0.710139318,0.82021486,67302,,,60682.08511,73921.91489,,,,56176,55187.06383,57164.93617,,,,46176,31452.76596,60899.23404,67006,62267.44681,71744.55319,,,,,,0.390647832,802,2053,,,,,,,,0.285489287,,67302,,,9.536784741,7,734,,,,,,,,,,,,,,,,,,,,,,,,,,21.004037,14,68705,10.85309242,36.68982566,20.37697402,,,,,,,,,,,,,21.93319991,10.94897437,39.24455321,,,,,,,,,,,,,,,,,,,,,,,,,,,16.54772986,16,96690,9.458457393,26.87247657,,,,,,,,,,,,,17.16286414,9.605924773,28.30753435,,,,29.28571429,,1400,,,41,,0.753714286,7914,10500,,,0.703,,,,,5.695488355,,,,,0.804195804,4830,6006,0.786241294,0.822150315,0.081029717,469,5788,0.06302413,0.099035303,0.840492841,5048,6006,0.81880753,0.862178151,13926,,,,,0.21872756,3046,13926,,,0.238402987,3320,13926,,,0.008545167,119,13926,,,0.007970702,111,13926,,,0.004739337,66,13926,,,0.000430849,6,13926,,,0.081789459,1139,13926,,,0.887261238,12356,13926,,,0.006359301,84,13209,0,0.013106447,0.493968117,6879,13926,,,1,13921,13921,, -27,045,27045,MN,Fillmore County,2024,1,6333.059192,235,57230,4991.943255,7674.175128,0,,,,2,,,,2,,,,2,,,,2,6061.577982,4734.442816,7388.713148,,,,,2,,0.131,,,0.108,0.156,3.148830212,,,2.446667491,3.953312775,4.659425713,,,3.741107211,5.708312539,0.053386912,93,1742,0.04283003,0.063943793,0,,,,,,,,,,,,,0.053333333,0.042491268,0.064175398,,,,,,,0.182,,,0.144,0.224,0.338,,,0.268,0.412,9.5,0.007425907,0.06,,,0.218,,,0.175,0.266,0.7866026,16698,21228,,,0.191906709,,,0.154810576,0.233529665,0.428571429,6,14,0.287681515,0.555967845,141,30,21271,,,5.333951763,23,4312,3.381267866,8.00354659,,,,,,,,,,,,,4.944375773,3.020153173,7.636187368,,,,,,,0.077821246,1293,16615,0.067097842,0.08854465,0.000282074,6,21271,,,3545.166667,0.000560381,12,21414,,,1784.5,0.000420286,9,21414,,,2379.333333,2641,,,,,,,,,2659,0.54,,,,,,,,,0.54,0.57,,,,,,,,,0.57,0.91882805,13391,14574,0.907804987,0.929851113,0.699048031,3231,4622,0.658000718,0.740095344,0.02625361,300,11427,,,0.108,555,,0.065106383,0.150893617,,,,,,,0.129032258,0,0.81100578,0.102040816,0,0.420161839,0.120787105,0.094427117,0.147147093,3.802202344,128792,33873,3.514519692,4.089884996,0.132140796,687,5199,0.103474859,0.160806734,31.02816041,66,21271,,,85.29916312,90,105511,68.59060016,104.8471532,,,,,,,,,,,,,86.86810855,69.67076323,107.0239393,,,,8,,,,,0,,,,,0.115606936,1000,8650,0.102156069,0.129057804,0.081670534,0.069248926,0.094092141,0.015028902,0.008958633,0.021099171,0.031213873,0.024094788,0.038332958,0.729816905,7693,10541,0.708492134,0.751141677,,,,,,,,,,,,,0.698645923,0.671769471,0.725522376,0.447,,10541,0.415162477,0.478837523,79.93168891,,,78.71512657,81.14825125,,,,,,,,,,,,,80.01239579,78.80146891,81.22332268,,,,293.6042864,235,57230,253.2025468,334.0060259,,,,,,,,,,,,,289.4158882,248.877833,329.9539434,,,,57.81375078,13,22486,30.7833874,98.86327456,,,,,,,,,,,,,56.74027141,29.31852621,99.1138354,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.095,,,0.08,0.111,0.15,,,0.128,0.175,0.082,,,0.07,0.096,28.4,5,17601,,,0.06,1260,,,,0.007425907,154.9489718,20866,,,,,,,,,,,,,,,,,,,,,,,,,,0.267,,,0.251,0.284,0.084701362,970,11452,0.071594979,0.097807745,0.063298168,342,5403,0.044234338,0.082361998,0.000233492,5,21414,,,4282.8,,,,,,0.061105723,63,1031,0.026783758,0.095427687,3.352713101,,,,,,,,,3.369511225,3.496342279,,,,,,,,,3.517455893,0.050848814,,,,,-785.8516,,,,,0.911948662,50449,55320,0.853233231,0.970664093,72065,,,66251.7234,77878.2766,,,,64375,47653.6383,81096.3617,,,,120208,15384.34043,225031.6596,72544,69359.14894,75728.85106,,,,,,0.190294627,549,2885,,,,,,,,0.266620412,,72065,,,6.854531607,9,1313,,,,,,,,,,,,,,,,,,,,,,,,,,20.81266632,20,105511,12.5305847,32.50155657,18.95536958,,,,,,,,,,,,,21.75587207,12.8939086,34.38365739,,,,12.32099023,13,105511,6.560408385,21.06926853,,,,,,,,,,,,,11.84565117,6.120820814,20.6919687,,,,16.96663681,25,147348,10.97991276,25.0461029,,,,,,,,,,,,,16.92202472,10.84226054,25.17863143,,,,3.333333333,,2400,,,8,,0.773065903,12141,15705,,,0.705,,,,,14.92983716,,,,,0.821276596,6948,8460,0.800917121,0.841636071,0.084445523,696,8242,0.070077857,0.098813189,0.833096927,7048,8460,0.819554743,0.846639111,21414,,,,,0.241944522,5181,21414,,,0.222050995,4755,21414,,,0.006631176,142,21414,,,0.002895302,62,21414,,,0.006584477,141,21414,,,0.000326889,7,21414,,,0.020360512,436,21414,,,0.954515737,20440,21414,,,0.005650283,113,19999,0.001933017,0.009367549,0.49290184,10555,21414,,,1,21228,21228,, -27,047,27047,MN,Freeborn County,2024,1,6185.028871,383,81661,5113.025741,7257.032,0,,,,2,,,,2,,,,2,4923.149359,2867.915925,7882.439037,1,6377.464273,5101.833826,7653.09472,,,,,2,,0.156,,,0.133,0.182,3.383883682,,,2.650057809,4.198338052,4.933430252,,,3.975998564,5.949446642,0.075139147,162,2156,0.064011508,0.086266785,0,,,,0.082872928,0.042708843,0.123037014,,,,0.080838323,0.051604377,0.110072269,0.06948052,0.056780922,0.082180118,,,,,,,0.2,,,0.164,0.24,0.364,,,0.295,0.434,8.6,0.082956944,0.069,,,0.261,,,0.215,0.31,0.611069752,18879,30895,,,0.168433503,,,0.135280914,0.204306203,0.363636364,4,11,0.198476333,0.520352029,331.7,102,30749,,,17.31890092,104,6005,13.99031532,20.64748651,,,,,,,,,,30.82851638,21.08668238,43.52066674,13.48011683,10.28674926,17.35158243,,,,,,,0.076151197,1791,23519,0.065427793,0.086874601,0.000650428,20,30749,,,1537.45,0.000423205,13,30718,,,2362.923077,0.001432385,44,30718,,,698.1363636,2211,,,,,,,,,2253,0.48,,,,,,,,0.44,0.48,0.52,,,,,,,,0.37,0.52,0.885149597,19437,21959,0.870295059,0.900004135,0.60035524,4056,6756,0.55010622,0.65060426,0.026832502,425,15839,,,0.178,1161,,0.135106383,0.220893617,,,,0.407624633,0.067116321,0.748132946,,,,0.213181448,0.117251492,0.309111404,0.063907356,0.03263854,0.095176172,4.165474903,119420,28669,3.777279015,4.553670792,0.208104498,1402,6737,0.156605518,0.259603477,17.56154672,54,30749,,,79.41039423,121,152373,65.2609058,93.55988266,,,,,,,,,,,,,86.91226559,70.74354512,103.0809861,,,,7.2,,,,,0,,,,,0.096501346,1255,13005,0.076528337,0.116474354,0.080667702,0.061428549,0.099906854,0.013302576,0.007149526,0.019455626,0.014225298,0.005419521,0.023031075,0.811218837,11714,14440,0.791374053,0.831063621,,,,,,,,,,0.732690622,0.623097795,0.842283449,0.811110142,0.777714064,0.84450622,0.218,,14440,0.191652185,0.244347815,79.63223561,,,78.67139046,80.59308076,,,,,,,,,,80.24027294,74.79279152,85.68775436,79.56968487,78.48983271,80.64953704,,,,313.0228842,383,81661,279.0081968,347.0375716,,,,,,,,,,384.5146973,231.502966,600.4673306,311.8947911,274.7084101,349.0811722,,,,65.22037622,19,29132,39.26692697,101.8496965,,,,,,,,,,,,,72.21607048,40.41878645,119.109426,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.103,,,0.088,0.119,0.155,,,0.133,0.178,0.093,,,0.079,0.108,49.8,13,26089,,,0.069,2140,,,,0.082956944,2592.819294,31255,,,14.2241285,13,91394,7.573749361,24.32369293,,,,,,,,,,,,,14.49294457,7.234825712,25.9318812,,,,0.306,,,0.291,0.32,0.089774676,1518,16909,0.075476804,0.104072549,0.042672414,297,6960,0.029566031,0.055778797,0.001692819,52,30718,,,590.7307692,0.752634731,251.38,334,,,0.109190888,139,1273,0.039146578,0.179235197,2.991773333,,,,,,,,2.582496503,3.211461185,3.1127875,,,,,,,,2.668425354,3.289965586,0.058663031,,,,,3184.333,,,,,0.7888361,44996,57041,0.741750055,0.835922146,65632,,,60512.17021,70751.82979,66176,55159.48936,77192.51064,55170,41759.78723,68580.21277,56016,52297.3617,59734.6383,51462,33159.53192,69764.46809,66827,64060.3617,69593.6383,,,,,,0.455678007,1902,4174,,,62.35915802,,,,,0.342180644,,65632,,,4.211793021,7,1662,,,,,,,,,,,,,,,,,,,,,,,,,,16.02113705,22,152373,9.78612673,24.74334679,14.4382535,,,,,,,,,,,,,18.14776567,10.75551608,28.68129373,,,,7.875410998,12,152373,4.069339784,13.75675812,,,,,,,,,,,,,8.612927221,4.299542236,15.41090593,,,,14.0559991,30,213432,9.483523568,20.06581272,,,,,,,,,,,,,14.964335,9.861591059,21.77232177,,,,30.64516129,,3100,,,95,,0.739252747,16818,22750,,,0.755,,,,,39.63727139,,,,,0.783553142,10100,12890,0.764051737,0.803054547,0.084,1050,12500,0.064031781,0.103968219,0.829247479,10689,12890,0.808155017,0.85033994,30718,,,,,0.216518003,6651,30718,,,0.233055538,7159,30718,,,0.013835536,425,30718,,,0.006478286,199,30718,,,0.04043232,1242,30718,,,0.00286477,88,30718,,,0.110000651,3379,30718,,,0.817533694,25113,30718,,,0.02207672,644,29171,0.014475908,0.029677532,0.49736311,15278,30718,,,0.417640395,12903,30895,, -27,049,27049,MN,Goodhue County,2024,1,6459.760264,597,128291,5596.524423,7322.996105,0,33796.46567,18476.84227,56704.7267,1,,,,2,,,,2,,,,2,6072.682509,5190.095226,6955.269791,,,,,2,,0.122,,,0.101,0.148,3.048318219,,,2.400847338,3.794065986,4.310946373,,,3.50899656,5.201107278,0.062140391,216,3476,0.054114891,0.070165891,0,,,,,,,0.1625,0.081659281,0.243340719,,,,0.058900098,0.050575741,0.067224454,,,,,,,0.166,,,0.127,0.207,0.374,,,0.311,0.443,9.3,0.030056785,0.059,,,0.226,,,0.184,0.275,0.839519146,39946,47582,,,0.18842466,,,0.153901966,0.227739677,0.172413793,5,29,0.083591127,0.280159851,248.1,119,47968,,,10.38757958,93,8953,8.38411736,12.72548677,,,,,,,,,,24.20856611,12.89004188,41.39738532,8.493401281,6.555027797,10.82553715,,,,,,,0.060581263,2295,37883,0.052240838,0.068921689,0.000813042,39,47968,,,1229.948718,0.000499865,24,48013,,,2000.541667,0.001228834,59,48013,,,813.779661,3432,,,,,,,,,3413,0.5,,,,,,,,,0.5,0.51,,,,,0.07,,0.28,,0.52,0.944775633,31855,33717,0.935713681,0.953837584,0.671279671,7664,11417,0.620770719,0.721788622,0.025749625,687,26680,,,0.106,1083,,0.080978723,0.131021277,0.390728477,0.188029044,0.593427909,0.09009009,0,0.5821835,0.770889488,0.558112523,0.983666453,0.221879815,0.134263802,0.309495828,0.078179961,0.047161227,0.109198696,4.178179178,138093,33051,3.593644935,4.76271342,0.150936187,1580,10468,0.114294479,0.187577894,18.97098065,91,47968,,,94.28584898,220,233333,81.82661772,106.7450802,366.4345914,175.7196298,673.8862602,,,,,,,,,,92.5882628,79.69153862,105.484987,,,,7.9,,,,,0,,,,,0.10955414,2150,19625,0.091891356,0.127216924,0.096193416,0.079441698,0.112945134,0.013248408,0.006376323,0.020120493,0.003057325,0.001297212,0.004817438,0.798448955,18841,23597,0.780886734,0.816011177,,,,,,,,,,0.769010043,0.626846547,0.911173539,0.792457363,0.772060372,0.812854353,0.343,,23597,0.314231021,0.371768979,78.66163563,,,77.91216787,79.4111034,,,,,,,,,,88.24068831,81.58074799,94.90062862,78.93755595,78.172904,79.7022079,,,,322.491933,597,128291,294.7310381,350.252828,1564.623352,968.5265153,2391.692997,,,,,,,,,,310.9713105,282.9124724,339.0301486,,,,51.10429721,23,45006,32.39574065,76.68153778,,,,,,,,,,,,,54.70602027,33.86388878,83.62396315,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.089,,,0.075,0.104,0.143,,,0.123,0.166,0.077,,,0.066,0.091,66.5,27,40591,,,0.059,2810,,,,0.030056785,1388.112518,46183,,,21.33318163,30,140626,14.39340806,30.45444327,,,,,,,,,,,,,14.76565354,8.889887987,23.05839705,,,,0.292,,,0.274,0.307,0.069455579,1906,27442,0.057540685,0.081370473,0.038078714,417,10951,0.026163821,0.049993608,0.000916419,44,48013,,,1091.204546,0.889250493,450.85,507,,,,,,,,3.201638659,,,,,,,,2.702356203,3.306134799,3.157059833,,,,,,,,2.550054293,3.293413174,0.062505177,,,,,2980.0476,,,,,0.820151027,50395,61446,0.752164566,0.888137488,82091,,,77202.31915,86979.68085,76375,34789.6383,117960.3617,,,,21114,6673.148936,35554.85106,77295,62653.97872,91936.02128,79224,75326.6383,83121.3617,,,,,,0.182330013,1263,6927,,,61.15091937,,,,,0.273574448,,82091,,,7.479431563,20,2674,,,,,,,,,,,,,,,,,,,,,,,,,,16.96571013,39,233333,11.81723873,23.59519581,16.71430959,,,,,,,,,,,,,17.25714006,11.87902117,24.23544079,,,,12.85716123,30,233333,8.674672687,18.3543971,,,,,,,,,,,,,12.6256722,8.320397537,18.36969018,,,,12.55958143,41,326444,9.012972476,17.03849039,,,,,,,,,,,,,13.00884602,9.250561211,17.78352075,,,,20.83333333,,4800,,,100,,0.81121813,28636,35300,,,0.78,,,,,34.65129809,,,,,0.775276321,15221,19633,0.75287053,0.797682111,0.099319015,1896,19090,0.081695056,0.116942975,0.890286762,17479,19633,0.876766662,0.903806862,48013,,,,,0.218170079,10475,48013,,,0.207714577,9973,48013,,,0.014870972,714,48013,,,0.014475246,695,48013,,,0.008206111,394,48013,,,0.000853935,41,48013,,,0.037677296,1809,48013,,,0.911086581,43744,48013,,,0.006946448,313,45059,0.00408488,0.009808016,0.497198675,23872,48013,,,0.669118574,31838,47582,, -27,051,27051,MN,Grant County,2024,1,7633.740616,75,16137,5030.683168,11106.69181,0,,,,2,,,,2,,,,2,,,,2,7944.076267,5140.9873,11727.02368,1,,,,2,,0.137,,,0.115,0.162,3.241974122,,,2.551225314,4.099164162,4.72858584,,,3.795122532,5.793836981,0.069620253,33,474,0.046708157,0.092532349,0,,,,,,,,,,,,,0.066210046,0.042923474,0.089496618,,,,,,,0.186,,,0.148,0.229,0.37,,,0.291,0.45,7.9,0.142848455,0.07,,,0.239,,,0.194,0.289,0.477609483,2901,6074,,,0.191771671,,,0.153312574,0.232414148,0.166666667,1,6,0.011498194,0.426636125,195,12,6153,,,9.900990099,11,1111,4.942538584,17.71560622,,,,,,,,,,,,,,,,,,,,,,0.068458093,321,4689,0.057734689,0.079181498,0.000325045,2,6153,,,3076.5,0.000325945,2,6136,,,3068,0.000162973,1,6136,,,6136,1125,,,,,,,,,1131,0.56,,,,,,,,,0.56,0.5,,,,,,,,,0.5,0.932703388,4047,4339,0.915634535,0.949772241,0.693968727,932,1343,0.621315581,0.766621873,0.029438822,96,3261,,,0.14,194,,0.097106383,0.182893617,,,,,,,,,,0.166666667,0,0.499434828,0.150897227,0.091728363,0.21006609,4.217962029,113750,26968,3.661943091,4.773980967,0.160573477,224,1395,0.110553857,0.210593097,29.25402243,18,6153,,,79.69979743,24,30113,51.06516406,118.586981,,,,,,,,,,,,,80.65364519,51.1274925,121.0200684,,,,5.7,,,,,1,,,,,0.085271318,220,2580,0.066322967,0.104219669,0.072876072,0.050822068,0.094930075,0.008914729,0.00053395,0.017295507,0.003875969,0,0.01144855,0.754539106,2161,2864,0.726334501,0.782743711,,,,,,,,,,,,,0.722725107,0.666123549,0.779326666,0.333,,2864,0.287348695,0.378651305,78.7089238,,,76.09382485,81.32402275,,,,,,,,,,,,,78.48004627,75.72051089,81.23958165,,,,325.1415519,75,16137,249.2841634,416.8167955,,,,,,,,,,,,,331.3419154,252.8487881,426.5027249,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.097,,,0.083,0.113,0.155,,,0.133,0.18,0.085,,,0.072,0.099,116.2,6,5162,,,0.07,420,,,,0.142848455,859.6620001,6018,,,,,,,,,,,,,,,,,,,,,,,,,,0.281,,,0.266,0.296,0.077646345,256,3297,0.063348473,0.091944218,0.047325103,69,1458,0.031835741,0.062814465,0.000977836,6,6136,,,1022.666667,0.917777778,82.6,90,,,,,,,,3.288410747,,,,,,,,,3.308242452,3.377834166,,,,,,,,,3.364059406,0.076442448,,,,,3077.9975,,,,,0.743643228,43138,58009,0.682823348,0.804463108,68381,,,60778.10638,75983.89362,183750,55414.68085,312085.3192,,,,,,,54417,41164.06383,67669.93617,69400,63336.51064,75463.48936,,,,,,0.277725119,293,1055,,,,,,,,0.328424562,,68381,,,8.982035928,3,334,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15,,600,,,9,,0.80131579,3654,4560,,,0.614,,,,,4.764260161,,,,,0.799212598,2030,2540,0.772964143,0.825461054,0.101791531,250,2456,0.076079845,0.127503217,0.848818898,2156,2540,0.823836926,0.873800869,6136,,,,,0.23011734,1412,6136,,,0.23940678,1469,6136,,,0.008474576,52,6136,,,0.007496741,46,6136,,,0.003911343,24,6136,,,0.001303781,8,6136,,,0.028194263,173,6136,,,0.936277705,5745,6136,,,0.003125,18,5760,0,0.013670585,0.492177314,3020,6136,,,1,6074,6074,, -27,053,27053,MN,Hennepin County,2024,1,6175.625189,12739,3576841,6018.87157,6332.378808,0,35409.81953,31060.09616,39759.54289,,4138.34126,3704.030734,4572.651786,,12552.43189,11974.33438,13130.52939,,5235.864554,4704.546339,5767.182768,,4781.744131,4617.338283,4946.14998,,,,,2,,0.111,,,0.093,0.13,2.697959747,,,2.266111677,3.17653703,4.661424262,,,4.121716913,5.213987825,0.076342383,8242,107961,0.074758362,0.077926404,0,0.125148987,0.102758898,0.147539075,0.080799705,0.075672613,0.085926797,0.112525089,0.10847753,0.116572647,0.074836765,0.069667818,0.080005713,0.059169492,0.057265633,0.06107335,,,,0.100521437,0.090490409,0.110552465,0.122,,,0.097,0.149,0.277,,,0.253,0.302,9.2,0.038150787,0.061,,,0.176,,,0.152,0.201,0.991240398,1270339,1281565,,,0.216278857,,,0.1969526,0.235625049,0.330769231,86,260,0.299924466,0.361747753,602.2,7632,1267416,,,9.877562688,2488,251884,9.48942959,10.26569579,27.65388046,21.20207158,35.45102671,6.345362073,5.258744231,7.431979916,21.57410235,20.22950993,22.91869478,26.59630607,24.7004014,28.49221074,2.001930433,1.767439509,2.236421357,,,,17.46074716,15.33011223,19.59138208,0.052226488,55560,1063828,0.04746053,0.056992445,0.001202447,1524,1267416,,,831.6377953,0.001057041,1332,1260121,,,946.0367868,0.005569306,7018,1260121,,,179.5555714,2211,,,,,5520,2133,4540,1327,1982,0.5,,,,,0.2,0.32,0.28,0.3,0.52,0.59,,,,,0.41,0.51,0.32,0.4,0.62,0.938203738,831150,885895,0.935665746,0.940741729,0.822469403,319948,389009,0.811080278,0.833858528,0.024750808,17414,703573,,,0.122,32181,,0.10293617,0.14106383,0.357331922,0.213051669,0.501612174,0.079371166,0.057990352,0.100751979,0.296755779,0.269699877,0.32381168,0.170246085,0.140077159,0.200415011,0.033913488,0.028218714,0.039608261,4.621858225,184255,39866,4.500385614,4.743330836,0.23156878,63294,273327,0.21925016,0.243887401,10.80150479,1369,1267416,,,79.61199528,5026,6313119,77.41097858,81.81301198,414.4492064,353.2182491,475.6801638,27.86291446,23.10960984,32.61621908,107.501643,100.5398127,114.4634734,38.62617319,32.8366913,44.41565507,81.72275082,79.02527292,84.42022871,,,,8.3,,,,,0,,,,,0.147589951,75845,513890,0.14320682,0.151973083,0.12131183,0.117026641,0.125597018,0.027535076,0.025254259,0.029815893,0.006878904,0.005694666,0.008063142,0.640669302,442657,690929,0.634736799,0.646601805,0.596103896,0.531363804,0.660843989,0.595142529,0.5754852,0.614799858,0.654414503,0.632830441,0.675998564,0.629925067,0.614084442,0.645765691,0.707061365,0.700923446,0.713199284,0.273,,690929,0.266695231,0.279304769,79.88574373,,,79.72564731,80.04584015,58.8671406,57.01411334,60.72016787,83.52031543,82.55837584,84.48225501,74.15527538,73.5066842,74.80386657,83.62828103,81.90048534,85.35607672,81.10867702,80.93792419,81.27942984,,,,297.6496826,12739,3576841,292.356948,302.9424172,1431.906654,1275.887695,1587.925613,228.5106969,207.8591078,249.1622861,592.2887765,568.4289946,616.1485584,254.8251714,228.5692238,281.0811191,252.7707415,247.1967138,258.3447691,,,,47.96119816,585,1219736,44.07461323,51.84778309,110.9877913,55.40470555,198.5878167,37.6023217,26.73892659,51.40361162,100.4048194,87.98332726,112.8263116,41.95764411,31.94010271,54.12230395,27.63268004,23.55021245,31.71514763,,,,5.113307269,565,110496,4.6916751,5.534939438,,,,3.524539607,2.517982769,4.799422589,9.939029483,8.676296363,11.2017626,5.09061291,3.778351022,6.711338492,2.877602659,2.45002769,3.305177629,,,,11.86342593,8.513399268,16.09407684,0.076,,,0.065,0.087,0.137,,,0.121,0.153,0.076,,,0.067,0.085,435.1,4652,1069166,,,0.061,76870,,,,0.038150787,43965.92056,1152425,,,26.35685872,1002,3801667,24.72487486,27.98884257,357.3555688,287.3560776,439.2506642,5.950734916,3.46652238,9.527703057,59.3726102,52.75253423,65.99268618,17.17815238,12.57656654,22.91324798,19.43879466,17.73999795,21.13759136,,,,0.254,,,0.243,0.265,0.060253525,47680,791323,0.055487567,0.065019482,0.030089371,8582,285217,0.024131924,0.036046817,0.002352155,2964,1260121,,,425.1420378,0.794860159,10316.49,12979,,,0.04469478,2690,60186,0.036433194,0.052956365,3.090682604,,,,,,3.1913258,2.459607649,2.401001173,3.605547577,3.230758147,,,,,,3.451178342,2.432682418,2.450734717,3.839181998,0.210223918,,,,,2860.900673,,,,,0.837156197,65623,78388,0.817746043,0.856566352,89418,,,86994.51064,91841.48936,44329,33348.23404,55309.76596,108202,101632.1277,114771.8723,47569,44755.89362,50382.10638,72243,67651,76835,102926,101598.6809,104253.3192,,,,,,0.35325026,60439,171094,,,54.44890039,,,,,0.403240958,,89418,,,8.640124942,686,79397,,,4.801139866,421,8768751,4.342513116,5.259766615,31.56827886,19.00616606,49.29777788,,,,23.18685676,20.41595065,25.95776287,4.252980358,2.778187971,6.231601621,1.410244648,1.126453336,1.743789346,,,,10.9285679,730,6313119,10.1185792,11.73855659,11.56322255,27.42083888,14.16874758,47.89868719,7.84059424,5.327303385,11.12909767,6.414941004,4.805231014,8.390900778,5.822665879,3.604321951,8.900563312,12.10039406,11.07360587,13.12718226,,,,8.157615911,515,6313119,7.453059598,8.862172223,,,,3.58840565,2.090378528,5.74538506,23.23725472,20.00051114,26.47399829,4.517681074,2.759516966,6.977192013,5.910181922,5.184766423,6.635597421,,,,5.086243183,446,8768751,4.614195617,5.55829075,,,,2.755862715,1.633298903,4.355451214,8.878238833,7.163633056,10.59284461,6.052318201,4.261390556,8.342323394,4.529373986,3.992078825,5.066669147,,,,13.3557047,,119200,,,1592,,0.832125088,755969,908480,,,0.775,,,,,304.6101741,,,,,0.629651683,333104,529029,0.623754929,0.635548436,0.130011663,67666,520461,0.125096913,0.134926412,0.914528315,483812,529029,0.911039059,0.918017571,1260121,,,,,0.212926378,268313,1260121,,,0.158050695,199163,1260121,,,0.14166338,178513,1260121,,,0.011144962,14044,1260121,,,0.076891029,96892,1260121,,,0.000535663,675,1260121,,,0.07187167,90567,1260121,,,0.672321944,847207,1260121,,,0.026892484,32105,1193828,0.025148923,0.028636045,0.501725628,632235,1260121,,,0.023880958,30605,1281565,, -27,055,27055,MN,Houston County,2024,1,4680.624269,189,50579,3453.375147,5907.873391,0,,,,2,,,,2,,,,2,,,,2,4720.20423,3433.386991,6007.021468,,,,,2,,0.118,,,0.098,0.142,2.877633991,,,2.190146654,3.591605118,4.336071272,,,3.46444058,5.243629714,0.048411498,64,1322,0.036841342,0.059981653,0,,,,,,,,,,,,,0.046751189,0.035103873,0.058398505,,,,,,,0.162,,,0.125,0.205,0.348,,,0.283,0.42,9.5,0.025492123,0.054,,,0.2,,,0.159,0.245,0.961099613,18110,18843,,,0.188102111,,,0.152515001,0.228239478,0.181818182,2,11,0.044108943,0.367070091,186.4,35,18778,,,4.983388704,18,3612,2.953471977,7.875902621,,,,,,,,,,,,,3.636363636,1.878962154,6.351995469,,,,,,,0.044530494,644,14462,0.037381558,0.05167943,0.000585792,11,18778,,,1707.090909,0.000531915,10,18800,,,1880,0.00037234,7,18800,,,2685.714286,1406,,,,,,,,,1410,0.58,,,,,,,,,0.58,0.62,,,,,,,,,0.62,0.948153093,12783,13482,0.934817126,0.96148906,0.754684838,3101,4109,0.675249031,0.834120646,0.022768583,238,10453,,,0.074,293,,0.043021277,0.104978723,,,,,,,,,,,,,0.063991323,0.04002456,0.087958087,3.550429783,127219,35832,3.245796446,3.855063121,0.155105032,635,4094,0.104872117,0.205337947,14.37852807,27,18778,,,71.851407,67,93248,55.68385351,91.24874703,,,,,,,,,,,,,72.91000662,56.27040384,92.92978858,,,,8.1,,,,,0,,,,,0.094749547,785,8285,0.074531924,0.11496717,0.076970067,0.059680953,0.094259181,0.005310803,0.002201467,0.008420138,0.01931201,0.007946433,0.030677587,0.777529686,7661,9853,0.750527341,0.804532032,,,,,,,,,,,,,0.706772467,0.660375927,0.753169008,0.309,,9853,0.271152626,0.346847374,81.36893323,,,80.19083705,82.54702942,,,,,,,,,,,,,81.31811648,80.10413706,82.5320959,,,,236.6200866,189,50579,199.7908126,273.4493606,,,,,,,,,,,,,236.6452445,199.1382009,274.1522881,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.087,,,0.073,0.103,0.143,,,0.122,0.165,0.076,,,0.063,0.089,37.7,6,15920,,,0.054,1010,,,,0.025492123,485.038625,19027,,,,,,,,,,,,,,,,,,,,,,,,,,0.292,,,0.274,0.307,0.051747312,539,10416,0.042215397,0.061279227,0.026976308,115,4263,0.018635882,0.035316733,0.000319149,6,18800,,,3133.333333,0.726349892,336.3,463,,,,,,,,3.313242032,,,,,,,,,3.342194895,3.446166094,,,,,,,,,3.47172431,0.049936217,,,,,2683.989125,,,,,0.841200835,49148,58426,0.78558505,0.896816621,76170,,,67774.76596,84565.23404,71250,7138.340426,135361.6596,,,,,,,,,,72809,65750.61702,79867.38298,,,,,,0.263878875,1098,4161,,,,,,,,0.252251543,,76170,,,9.319664492,10,1073,,,,,,,,,,,,,,,,,,,,,,,,,,12.76927437,13,93248,6.374375758,22.84775909,13.94131778,,,,,,,,,,,,,11.78924904,5.653403159,21.68084874,,,,,,,,,,,,,,,,,,,,,,,,,,,9.171857683,12,130835,4.739232704,16.02138957,,,,,,,,,,,,,9.572965944,4.946491196,16.72204498,,,,10.52631579,,1900,,,20,,0.787607573,11440,14525,,,0.763,,,,,13.19718837,,,,,0.828724464,6653,8028,0.804106591,0.853342338,0.072703918,566,7785,0.05489786,0.090509976,0.867588441,6965,8028,0.843392194,0.891784687,18800,,,,,0.21462766,4035,18800,,,0.232819149,4377,18800,,,0.007606383,143,18800,,,0.003404255,64,18800,,,0.010585106,199,18800,,,0.000212766,4,18800,,,0.015957447,300,18800,,,0.948457447,17831,18800,,,0.005553063,99,17828,0,0.013302448,0.493191489,9272,18800,,,0.710184153,13382,18843,, -27,057,27057,MN,Hubbard County,2024,1,6299.211205,277,58297,4928.764129,7669.658281,0,,,,2,,,,2,,,,2,,,,2,5435.073065,4143.9773,6726.16883,,,,,2,,0.128,,,0.104,0.154,3.018231109,,,2.344957015,3.733522221,4.390036717,,,3.563534902,5.269800994,0.066901409,95,1420,0.053905899,0.079896918,0,,,,,,,,,,,,,0.06746988,0.053536457,0.081403302,,,,,,,0.177,,,0.138,0.22,0.364,,,0.3,0.433,8.6,0.063027635,0.077,,,0.202,,,0.163,0.245,0.566529235,12092,21344,,,0.165765832,,,0.134519584,0.20111843,0.2,2,10,0.05050879,0.392851974,225.7,49,21715,,,18.83948757,75,3981,14.81845207,23.6154608,,,,,,,,,,,,,18.65889213,14.36962057,23.82698869,,,,,,,0.067794494,1086,16019,0.058262579,0.077326409,0.000598665,13,21715,,,1670.384615,0.000273224,6,21960,,,3660,0.001411658,31,21960,,,708.3870968,1425,,,,,,,,,1460,0.57,,,,,,,,,0.57,0.38,,,,,0.21,,,,0.38,0.941165197,14733,15654,0.930942875,0.95138752,0.676853826,2857,4221,0.625308297,0.728399355,0.041990363,427,10169,,,0.138,619,,0.089148936,0.186851064,0.330434783,0.154615683,0.506253882,,,,0.166666667,0,0.738280344,0.327510917,0.133569025,0.521452809,0.081708945,0.056169433,0.107248457,4.021654382,122761,30525,3.642290756,4.401018007,0.141972579,642,4522,0.103983115,0.179962042,10.13124568,22,21715,,,71.73534317,77,107339,56.61241101,89.65687076,,,,,,,,,,,,,69.55084267,54.11470704,88.02104275,,,,5.4,,,,,0,,,,,0.116609784,1025,8790,0.099589957,0.13362961,0.088026557,0.072120448,0.103932666,0.025028441,0.015062853,0.03499403,0.011945393,0.005663081,0.018227704,0.760901936,7154,9402,0.743403128,0.778400743,,,,,,,,,,,,,0.720572396,0.698036414,0.743108378,0.278,,9402,0.250777662,0.305222338,79.99710091,,,78.75053158,81.24367023,,,,,,,,,,,,,80.5508659,79.34107409,81.76065771,,,,290.2137643,277,58297,250.6675919,329.7599366,,,,,,,,,,,,,271.0160665,232.291039,309.741094,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.094,,,0.08,0.11,0.149,,,0.127,0.172,0.082,,,0.069,0.095,43.3,8,18496,,,0.077,1630,,,,0.063027635,1287.528519,20428,,,,,,,,,,,,,,,,,,,,,,,,,,0.311,,,0.294,0.328,0.079396897,911,11474,0.066290514,0.09250328,0.040008423,190,4749,0.028093529,0.051923316,0.000774135,17,21960,,,1291.764706,0.843558282,137.5,163,,,,,,,,3.372282191,,,,,,,,,3.421566496,3.688738828,,,,,,,,,3.760869955,0.035509806,,,,,1693.163467,,,,,0.82472154,46351,56202,0.778310128,0.871132953,67797,,,61015.04255,74578.95745,56500,48732.68085,64267.31915,101786,31713.31915,171858.6809,,,,,,,68173,65343.21277,71002.78723,,,,,,0.415030212,1099,2648,,,,,,,,0.331253595,,67797,,,3.493449782,4,1145,,,,,,,,,,,,,,,,,,,,,,,,,,17.94557869,18,107339,10.04400416,29.59850297,16.769301,,,,,,,,,,,,,15.062743,7.783139111,26.31158071,,,,11.179534,12,107339,5.776628354,19.52839606,,,,,,,,,,,,,10.07983227,4.833671373,18.53717043,,,,10.08661036,15,148712,5.64539925,16.63632987,,,,,,,,,,,,,7.984843316,3.986005014,14.28709033,,,,42.72727273,,2200,,,94,,0.776114936,12965,16705,,,0.511,,,,,17.88146023,,,,,0.817840055,7179,8778,0.797337973,0.838342136,0.105755732,904,8548,0.084696642,0.126814823,0.851902484,7478,8778,0.829720754,0.874084213,21960,,,,,0.208287796,4574,21960,,,0.267577414,5876,21960,,,0.004371585,96,21960,,,0.027140255,596,21960,,,0.005191257,114,21960,,,0.001001822,22,21960,,,0.028642987,629,21960,,,0.917213115,20142,21960,,,0.003826906,78,20382,0,0.008265838,0.490027322,10761,21960,,,1,21344,21344,, -27,059,27059,MN,Isanti County,2024,1,6558.666638,462,115318,5619.959408,7497.373869,0,,,,2,,,,2,,,,2,,,,2,6670.554128,5676.309905,7664.79835,,,,,2,,0.133,,,0.111,0.157,3.12234852,,,2.451737711,3.832269099,4.590993605,,,3.764445077,5.46069938,0.062658228,198,3160,0.054208347,0.071108108,0,,,,,,,,,,,,,0.061464088,0.052716407,0.07021177,,,,,,,0.186,,,0.15,0.227,0.332,,,0.275,0.396,8.7,0.077611702,0.067,,,0.221,,,0.184,0.264,0.484016045,19910,41135,,,0.197683026,,,0.162599752,0.237911399,0.178571429,5,28,0.087257021,0.288336239,219.5,92,41906,,,8.680142687,73,8410,6.803846245,10.91397624,,,,,,,,,,,,,8.334453556,6.389977751,10.68439332,,,,,,,0.061474821,2140,34811,0.051942906,0.071006736,0.000692025,29,41906,,,1445.034483,0.000444684,19,42727,,,2248.789474,0.002012779,86,42727,,,496.8255814,1749,,,,,,,,,1757,0.47,,,,,,,,,0.47,0.49,,,,,,,,,0.49,0.924630113,26560,28725,0.91083582,0.938424406,0.634040547,6724,10605,0.575113427,0.692967667,0.033580543,729,21709,,,0.079,760,,0.050404255,0.107595745,,,,0.010344828,0,0.195176301,0.822222222,0.336464473,1,0.609195402,0.365351221,0.853039584,0.086223507,0.055172502,0.117274512,3.675440208,140060,38107,3.368940969,3.981939447,0.183018868,1746,9540,0.127514088,0.238523648,9.306543216,39,41906,,,80.59799783,164,203479,68.26245116,92.9335445,,,,,,,,,,,,,82.79979326,69.84783317,95.75175336,,,,6.2,,,,,0,,,,,0.109756098,1665,15170,0.091187039,0.128325156,0.094772322,0.077515392,0.112029251,0.013843111,0.007515302,0.020170921,0.003955175,0.000746935,0.007163414,0.797139959,16500,20699,0.775004738,0.819275179,,,,,,,,,,,,,0.736129588,0.700449282,0.771809893,0.531,,20699,0.491861796,0.570138204,78.84926321,,,77.98556683,79.71295959,,,,,,,,,,,,,78.68212661,77.7897005,79.57455272,,,,309.43238,462,115318,279.984298,338.8804619,,,,,,,,,,,,,312.3667226,281.9021566,342.8312887,,,,52.71607601,22,41733,33.03688417,79.8127726,,,,,,,,,,,,,51.45704691,30.98050364,80.35655284,,,,6.666666667,21,3150,4.126771741,10.19070817,,,,,,,,,,,,,,,,,,,,,,0.094,,,0.08,0.108,0.149,,,0.129,0.172,0.082,,,0.069,0.095,48.4,17,35116,,,0.067,2710,,,,0.077611702,2934.964106,37816,,,16.13801228,20,123931,9.857517155,24.9238511,,,,,,,,,,,,,14.78350856,8.611938526,23.66982931,,,,0.313,,,0.297,0.328,0.071840108,1808,25167,0.059925215,0.083755002,0.035446288,359,10128,0.024722883,0.046169692,0.000280853,12,42727,,,3560.583333,0.793965517,368.4,464,,,,,,,,3.083796551,,,,,,,,,3.120801937,3.383083366,,,,,,,,,3.440438623,0.019320725,,,,,190.488,,,,,0.806317962,52351,64926,0.735040998,0.877594926,83212,,,74180.51064,92243.48936,,,,107849,88837.59575,126860.4043,33453,31469.17021,35436.82979,,,,85990,80945.23404,91034.76596,,,,,,0.219631502,1347,6133,,,63.23843913,,,,,0.294248426,,83212,,,6.276150628,15,2390,,,,,,,,,,,,,,,,,,,,,,,,,,19.65742468,38,203479,13.76781858,27.21416163,18.67514584,,,,,,,,,,,,,20.5410729,14.3076099,28.56765992,,,,10.32047533,21,203479,6.388536893,15.77594284,,,,,,,,,,,,,11.07513158,6.855681007,16.92951509,,,,13.17040006,37,280933,9.27317708,18.1536616,,,,,,,,,,,,,13.70321873,9.597565934,18.97103082,,,,10.86956522,,4600,,,50,,0.803414553,24235,30165,,,0.782,,,,,26.11784975,,,,,0.840226047,13084,15572,0.819038411,0.861413682,0.108793429,1669,15341,0.089450536,0.128136323,0.890893912,13873,15572,0.870603751,0.911184073,42727,,,,,0.230790835,9861,42727,,,0.170969176,7305,42727,,,0.010836239,463,42727,,,0.008612821,368,42727,,,0.018372458,785,42727,,,0.000655323,28,42727,,,0.02614272,1117,42727,,,0.916024996,39139,42727,,,0.003316451,129,38897,0.000361793,0.006271109,0.489854191,20930,42727,,,0.592828492,24386,41135,, -27,061,27061,MN,Itasca County,2024,1,9461.671975,746,121943,8312.77042,10610.57353,0,36186.70531,25478.78005,49878.60654,,,,,2,,,,2,,,,2,8481.703587,7337.75231,9625.654864,,,,,2,,0.137,,,0.113,0.163,3.245181668,,,2.550196141,4.041117057,4.366209131,,,3.552687279,5.285780337,0.074428133,218,2929,0.064922741,0.083933524,0,0.099378882,0.053166192,0.145591572,,,,,,,,,,0.07373817,0.063566448,0.083909893,,,,,,,0.196,,,0.152,0.242,0.405,,,0.343,0.473,8.1,0.087040194,0.086,,,0.216,,,0.175,0.261,0.660705558,29741,45014,,,0.160352292,,,0.130508953,0.194415362,0.290322581,9,31,0.195384033,0.388273114,233,105,45070,,,16.55440119,145,8759,13.85985553,19.24894684,53.7084399,33.2463708,82.09905559,,,,,,,,,,14.22494018,11.52959351,16.92028685,,,,28.13299233,14.04388841,50.33769441,0.053665707,1789,33336,0.045325281,0.062006132,0.001020635,46,45070,,,979.7826087,0.000796372,36,45205,,,1255.694444,0.003428824,155,45205,,,291.6451613,2982,,,,,5385,,,,2853,0.46,,,,,0.23,,,,0.47,0.43,,,,,0.19,,,,0.44,0.944161352,30943,32773,0.935246694,0.953076011,0.700427808,6549,9350,0.648433109,0.752422506,0.045013117,978,21727,,,0.127,1113,,0.081723404,0.172276596,0.662207358,0.495781585,0.828633131,,,,0.209677419,0,0.647225067,0.050847458,0,0.192554258,0.116650465,0.085374601,0.14792633,4.544614381,125395,27592,4.126877993,4.962350769,0.168375786,1527,9069,0.135545135,0.201206437,11.98136233,54,45070,,,112.9753271,255,225713,99.10873983,126.8419143,234.5968638,141.2426369,366.3520629,,,,,,,,,,109.857669,95.5663102,124.1490278,,,,5.2,,,,,0,,,,,0.139016897,2715,19530,0.120592658,0.157441136,0.111397628,0.093072498,0.129722757,0.021505376,0.015347963,0.02766279,0.015360983,0.010530287,0.020191679,0.761874334,14308,18780,0.740470667,0.783278002,0.676712329,0.55831988,0.795104778,,,,,,,,,,0.763442928,0.73608813,0.790797726,0.287,,18780,0.258255705,0.315744295,77.07450214,,,76.16681069,77.98219359,,,,,,,,,,,,,77.88922585,76.96206513,78.81638657,,,,410.7985212,746,121943,377.4262241,444.1708182,1407.183072,1062.97097,1827.344267,,,,,,,,,,379.7154812,346.7146822,412.7162802,,,,51.28956624,21,40944,31.74904988,78.40155025,,,,,,,,,,,,,43.55527164,24.3775549,71.83779689,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.096,,,0.081,0.112,0.152,,,0.13,0.175,0.086,,,0.073,0.1,43.9,17,38732,,,0.086,3850,,,,0.087040194,3921.857057,45058,,,25.83635988,35,135468,17.9959713,35.93212225,,,,,,,,,,,,,19.3729618,12.41262218,28.82543153,,,,0.309,,,0.293,0.325,0.06255897,1525,24377,0.053027055,0.072090884,0.030756178,290,9429,0.021224263,0.040288093,0.001106072,50,45205,,,904.1,0.86015625,440.4,512,,,0.08786018,186,2117,0.039300999,0.13641936,3.10620317,,,,,,,,,3.107214021,3.176591905,,,,,,,,,3.202854895,0.084056641,,,,,2544.137325,,,,,0.762825231,47672,62494,0.69469716,0.830953302,66958,,,61558.17021,72357.82979,32500,25150.89362,39849.10638,,,,143466,121875.0213,165056.9787,95833,70862.95745,120803.0426,65169,61433.68085,68904.31915,,,,,,0.385665017,2572,6669,,,73.61881518,,,,,0.286956002,,66958,,,7.005253941,16,2284,,,,,,,,,,,,,,,,,,,,,,,,,,26.28076581,58,225713,19.50609094,34.64791338,25.6963489,,,,,,,,,,,,,25.12843683,18.18557433,33.8478395,,,,16.39249844,37,225713,11.54183169,22.59489978,,,,,,,,,,,,,16.45445262,11.39518678,22.99344827,,,,12.95869022,41,316390,9.299379838,17.57992654,,,,,,,,,,,,,13.4494353,9.56386326,18.3858208,,,,28.22222222,,4500,,,127,,0.745467303,26561,35630,,,0.548,,,,,23.33095972,,,,,0.824568181,14942,18121,0.811056725,0.838079636,0.121817977,2163,17756,0.103034865,0.140601089,0.845979802,15330,18121,0.828835321,0.863124284,45205,,,,,0.199756664,9030,45205,,,0.258135162,11669,45205,,,0.004910961,222,45205,,,0.036677359,1658,45205,,,0.003871253,175,45205,,,0.001636987,74,45205,,,0.018183829,822,45205,,,0.91483243,41355,45205,,,0.001353117,58,42864,0,0.003296719,0.492910076,22282,45205,,,0.770115964,34666,45014,, -27,063,27063,MN,Jackson County,2024,1,7960.528035,114,26406,5426.617362,10494.43871,0,,,,2,,,,2,,,,2,,,,2,5999.514702,3909.288721,8089.740684,,,,,2,,0.132,,,0.111,0.159,3.011682596,,,2.355485648,3.725203148,4.304301049,,,3.432486915,5.207325448,0.058655222,41,699,0.041235341,0.076075103,0,,,,,,,,,,,,,0.051612903,0.034197554,0.069028253,,,,,,,0.185,,,0.147,0.227,0.351,,,0.282,0.426,9,0.05386117,0.062,,,0.231,,,0.189,0.278,0.616678346,6160,9989,,,0.193940095,,,0.158819889,0.234247429,0.333333333,2,6,0.110000414,0.553214291,300.3,30,9990,,,13.38329765,25,1868,8.660964587,19.75638742,,,,,,,,,,79.13669065,39.50475084,141.5973994,6.875,3.43197523,12.30127407,,,,,,,0.054436794,419,7697,0.046096368,0.062777219,0.0001001,1,9990,,,9990,0.000404326,4,9893,,,2473.25,0.000909734,9,9893,,,1099.222222,1047,,,,,,,,,1053,0.52,,,,,,,,,0.53,0.31,,,,,,,,,0.31,0.934503902,6706,7176,0.920100352,0.948907452,0.682184423,1524,2234,0.611278117,0.753090728,0.025110783,136,5416,,,0.126,259,,0.078340426,0.173659575,,,,,,,,,,0.096153846,0,0.229849855,0.093229745,0.043973375,0.142486115,3.549465607,116568,32841,3.141545611,3.957385603,0.129809921,280,2157,0.081430569,0.178189273,20.02002002,20,9990,,,86.93718283,43,49461,62.91687029,117.1038147,,,,,,,,,,,,,83.90187896,59.37396314,115.1618841,,,,6.4,,,,,1,,,,,0.081473214,365,4480,0.060671986,0.102274443,0.063815495,0.043496544,0.084134446,0.011160714,0.000398955,0.021922474,0.0078125,0.001840628,0.013784372,0.769112267,3994,5193,0.734494671,0.803729863,,,,,,,,,,,,,0.784968685,0.742210619,0.82772675,0.175,,5193,0.147235486,0.202764515,79.52832607,,,77.34921378,81.70743836,,,,,,,,,,,,,80.88716273,78.93472275,82.8396027,,,,306.3176243,114,26406,244.8297776,367.805471,,,,,,,,,,,,,278.2154949,218.5866629,337.8443269,,,,107.5731497,10,9296,51.58550663,197.8308524,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.094,,,0.08,0.109,0.149,,,0.128,0.172,0.083,,,0.071,0.097,82.5,7,8489,,,0.062,620,,,,0.05386117,552.9387735,10266,,,,,,,,,,,,,,,,,,,,,,,,,,0.309,,,0.292,0.327,0.061568839,343,5571,0.050845434,0.072292243,0.037136465,83,2235,0.025221572,0.049051359,0.001010816,10,9893,,,989.3,0.918932039,94.65,103,,,,,,,,3.181767815,,,,,,,,,3.193456022,3.283073067,,,,,,,,,3.312680519,0.040750314,,,,,805.35655,,,,,0.80846721,45946,56831,0.744905778,0.872028641,66694,,,58254.68085,75133.31915,,,,,,,,,,109347,101993.1277,116700.8723,68293,64081.08511,72504.91489,,,,,,0.280082988,405,1446,,,,,,,,0.288091882,,66694,,,5.093378608,3,589,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.70934316,13,69484,9.961937268,31.9935466,,,,,,,,,,,,,15.63550511,7.497832444,28.75425058,,,,23,,1000,,,23,,0.765154504,5819,7605,,,0.719,,,,,9.137131318,,,,,0.808471874,3550,4391,0.784301608,0.83264214,0.073812882,314,4254,0.050586007,0.097039757,0.849237076,3729,4391,0.82171029,0.876763862,9893,,,,,0.21146265,2092,9893,,,0.236126554,2336,9893,,,0.009703831,96,9893,,,0.006165976,61,9893,,,0.019003336,188,9893,,,0.002122713,21,9893,,,0.045789953,453,9893,,,0.90488224,8952,9893,,,0.00830494,78,9392,0,0.016614002,0.482866673,4777,9893,,,1,9989,9989,, -27,065,27065,MN,Kanabec County,2024,1,7779.127121,262,44786,6087.967418,9470.286824,0,,,,2,,,,2,,,,2,,,,2,7863.655774,6081.826339,9645.485209,,,,,2,,0.152,,,0.127,0.181,3.431815829,,,2.684268872,4.280582842,4.848419224,,,3.874831527,5.870323654,0.064430715,73,1133,0.050134352,0.078727078,0,,,,,,,,,,,,,0.061302682,0.046751162,0.075854202,,,,,,,0.205,,,0.163,0.251,0.395,,,0.32,0.472,8.7,0.043057969,0.08,,,0.242,,,0.196,0.294,0.442178144,7089,16032,,,0.190693776,,,0.152839493,0.229945429,0.235294118,4,17,0.110052656,0.376271045,383.7,62,16159,,,16.29766298,53,3252,12.20806794,21.31774444,,,,,,,,,,,,,16.58374793,12.30877736,21.8636042,,,,,,,0.067071248,851,12688,0.057539334,0.076603163,0.00099016,16,16159,,,1009.9375,0.000485938,8,16463,,,2057.875,0.00212598,35,16463,,,470.3714286,2058,,,,,,,,,2089,0.45,,,,,,,,,0.45,0.42,,,,,,,,,0.42,0.913322911,10516,11514,0.899299848,0.927345975,0.5997114,2078,3465,0.539334569,0.660088231,0.046880087,432,9215,,,0.135,466,,0.084957447,0.185042553,,,,,,,,,,0.119565217,0.025729366,0.213401069,0.111074597,0.074501961,0.147647233,3.795896328,123025,32410,3.44837395,4.143418707,0.108280255,374,3454,0.071268117,0.145292393,13.61470388,22,16159,,,101.0561601,82,81143,80.37296312,125.4373404,,,,,,,,,,,,,104.3582619,82.74961138,129.8828904,,,,5.3,,,,,0,,,,,0.114630468,760,6630,0.094390154,0.134870781,0.081762918,0.064373099,0.099152737,0.020361991,0.011112011,0.029611971,0.01719457,0.009291777,0.025097363,0.766943477,5726,7466,0.746461393,0.787425561,,,,,,,,,,,,,0.747093661,0.71674948,0.777437842,0.427,,7466,0.391255319,0.462744681,77.20085237,,,75.82760622,78.57409852,,,,,,,,,,,,,77.09241041,75.65967592,78.52514491,,,,380.0160284,262,44786,329.6590092,430.3730476,,,,,,,,,,,,,382.6472715,330.7714821,434.5230609,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.106,,,0.09,0.123,0.159,,,0.137,0.184,0.088,,,0.075,0.103,50.9,7,13763,,,0.08,1280,,,,0.043057969,699.2183542,16239,,,20.4448806,10,48912,9.804114933,37.59886335,,,,,,,,,,,,,21.68303736,10.39785923,39.87587771,,,,0.304,,,0.288,0.32,0.075469661,699,9262,0.062363278,0.088576044,0.045064971,163,3617,0.030767099,0.059362843,0.000911134,15,16463,,,1097.533333,0.86849711,150.25,173,,,,,,,,3.354392936,,,,,,,,,3.37756797,3.433582311,,,,,,,,,3.464977651,0.042768738,,,,,-284.52879,,,,,0.847486971,46994,55451,0.777986554,0.916987387,69588,,,63972.51064,75203.48936,,,,,,,,,,,,,69508,65756,73260,,,,,,0.32739212,698,2132,,,,,,,,0.276110824,,69588,,,6.112469438,5,818,,,,,,,,,,,,,,,,,,,,,,,,,,25.33635861,21,81143,15.25414297,39.56586244,25.88023613,,,,,,,,,,,,,23.76839779,13.58569301,38.59838892,,,,,,,,,,,,,,,,,,,,,,,,,,,21.27470969,24,112810,13.63110793,31.65508164,,,,,,,,,,,,,22.47801369,14.40208751,33.44550261,,,,14.11764706,,1700,,,24,,0.726858042,9242,12715,,,0.671,,,,,11.25434419,,,,,0.846732126,5519,6518,0.825936782,0.867527471,0.090125392,575,6380,0.072628303,0.107622481,0.826480516,5387,6518,0.804590527,0.848370504,16463,,,,,0.214966896,3539,16463,,,0.220069246,3623,16463,,,0.006377938,105,16463,,,0.009050598,149,16463,,,0.009050598,149,16463,,,0.00054668,9,16463,,,0.019923465,328,16463,,,0.937313977,15431,16463,,,0.001829468,28,15305,0,0.006099151,0.494259855,8137,16463,,,1,16032,16032,, -27,067,27067,MN,Kandiyohi County,2024,1,5479.698361,466,119206,4685.05894,6274.337783,0,,,,2,,,,2,,,,2,5622.311845,3672.680761,8237.989517,,5418.644629,4500.535225,6336.754032,,,,,2,,0.142,,,0.118,0.167,3.231031125,,,2.543773571,4.065223978,4.409381284,,,3.569181057,5.386211815,0.05826972,229,3930,0.050945784,0.065593656,0,,,,,,,0.066666667,0.047635875,0.085697459,0.065909091,0.049515203,0.082302979,0.051808843,0.042628077,0.060989609,,,,,,,0.175,,,0.139,0.216,0.365,,,0.301,0.435,8,0.13199516,0.069,,,0.227,,,0.185,0.272,0.626109028,27381,43732,,,0.183266845,,,0.149931953,0.221126613,0.214285714,3,14,0.080830645,0.373240293,351.9,154,43767,,,18.08582341,161,8902,15.29211279,20.87953404,,,,,,,,,,47.59206799,37.9612973,58.92221857,9.956125548,7.579064062,12.84267657,,,,,,,0.071737501,2488,34682,0.062205586,0.081269416,0.000845386,37,43767,,,1182.891892,0.000798376,35,43839,,,1252.542857,0.005109606,224,43839,,,195.7098214,1302,,,,,,,,,1271,0.57,,,,,,,,0.23,0.59,0.6,,,,,,,,0.41,0.61,0.901322066,26452,29348,0.88696971,0.915674422,0.673809049,6761,10034,0.628945084,0.718673014,0.02869082,666,23213,,,0.124,1277,,0.078723404,0.169276596,,,,0.006802721,0,0.369623349,0.778006167,0.583324903,0.97268743,0.21557971,0.111686485,0.319472935,0.059533014,0.039836613,0.079229415,4.078850429,128443,31490,3.641989759,4.515711099,0.21749409,2300,10575,0.157907737,0.277080443,19.64950762,86,43767,,,61.19780801,132,215694,50.75770046,71.63791555,,,,,,,,,,36.45377661,17.48100283,67.0397931,68.19598114,55.78557888,80.60638341,,,,6.2,,,,,1,,,,,0.127855236,2155,16855,0.110017742,0.145692729,0.105833333,0.089152117,0.12251455,0.021061999,0.011607835,0.030516164,0.003856422,0.001308709,0.006404136,0.788124713,17189,21810,0.763258951,0.812990476,,,,,,,,,,0.661091549,0.528382986,0.793800112,0.818253509,0.797005585,0.839501434,0.146,,21810,0.127274275,0.164725725,80.32569116,,,79.52421629,81.12716603,,,,,,,87.88666456,71.94439589,103.8289332,81.58868738,73.54603887,89.63133589,80.31719571,79.43653702,81.19785439,,,,286.10712,466,119206,258.4393182,313.7749217,,,,,,,,,,331.7474532,214.6894599,489.724684,285.7590867,255.5518702,315.9663032,,,,41.11931093,19,46207,24.75651127,64.21289755,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.097,,,0.083,0.113,0.147,,,0.126,0.169,0.088,,,0.075,0.103,55.2,20,36214,,,0.069,3000,,,,0.13199516,5575.343559,42239,,,,,,,,,,,,,,,,,,,,,,,,,,0.3,,,0.286,0.314,0.084766686,2060,24302,0.071660303,0.097873069,0.042217328,460,10896,0.029110945,0.05532371,0.001208969,53,43839,,,827.1509434,0.777159091,376.145,484,,,,,,,,2.86220525,,,,,,,2.265239079,2.399502539,3.176876502,3.108092139,,,,,,,2.278199009,2.502879561,3.509876449,0.139310459,,,,,-193.444,,,,,0.811176118,46031,56746,0.76612498,0.856227257,72281,,,64665,79897,9178,8286.765957,10069.23404,78750,16296.89362,141203.1064,39213,4892.148936,73533.85106,58607,40648.87234,76565.12766,77526,72578.93617,82473.06383,,,,,,0.467829039,3032,6481,,,68.0675895,,,,,0.310704058,,72281,,,5.496392992,16,2911,,,,,,,,,,,,,,,,,,,,,,,,,,13.60299367,29,215694,8.885927093,19.93153748,13.44497297,,,,,,,,,,,,,15.54506448,9.854237407,23.32522927,,,,6.490676607,14,215694,3.5485133,10.89025245,,,,,,,,,,,,,8.230549448,4.499717972,13.80946344,,,,7.98055405,24,300731,5.113291565,11.87443183,,,,,,,,,,,,,8.751166822,5.417110191,13.37708809,,,,20.20833333,,4800,,,97,,0.760026021,23367,30745,,,0.695,,,,,55.56651878,,,,,0.739140589,12660,17128,0.720277798,0.758003379,0.110253649,1843,16716,0.091253965,0.129253333,0.866184026,14836,17128,0.846660025,0.885708027,43839,,,,,0.239877734,10516,43839,,,0.204635142,8971,43839,,,0.06076781,2664,43839,,,0.005406145,237,43839,,,0.015214763,667,43839,,,0.001573941,69,43839,,,0.138119026,6055,43839,,,0.772326011,33858,43839,,,0.036280734,1480,40793,0.025955753,0.046605716,0.493898127,21652,43839,,,0.429616757,18788,43732,, -27,069,27069,MN,Kittson County,2024,1,8873.906335,69,11187,5342.671297,13857.70397,1,,,,2,,,,2,,,,2,,,,2,9358.890976,5546.671928,14791.0826,1,,,,2,,0.126,,,0.105,0.15,2.988825163,,,2.286698393,3.799469407,4.452841867,,,3.487784515,5.480702976,0.05483871,17,310,0.029494906,0.080182514,1,,,,,,,,,,,,,0.057823129,0.031142294,0.084503965,,,,,,,0.174,,,0.136,0.217,0.358,,,0.28,0.441,8.7,0.081016397,0.062,,,0.215,,,0.171,0.262,0.593296886,2496,4207,,,0.17771353,,,0.142411814,0.21687431,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.051076132,159,3113,0.042735707,0.059416558,,0,4146,,,,0.000492732,2,4059,,,2029.5,0.000246366,1,4059,,,4059,783,,,,,,,,,787,0.5,,,,,,,,,0.51,0.21,,,,,,,,,0.21,0.960415968,2863,2981,0.948442075,0.97238986,0.766623207,588,767,0.673218362,0.860028053,0.028276481,63,2228,,,0.124,108,,0.077531915,0.170468085,,,,,,,,,,,,,0.075358852,0.040403576,0.110314127,3.696120556,118712,32118,3.063604135,4.328636976,0.154774973,141,911,0.101584581,0.207965364,41.00337675,17,4146,,,99.26262053,21,21156,61.4451266,151.7334597,,,,,,,,,,,,,104.4360454,64.64755811,159.6415891,,,,5.7,,,,,0,,,,,0.070844687,130,1835,0.042057404,0.099631969,0.0651341,0.033327837,0.096940362,0.004359673,0,0.017961744,0.007629428,0,0.016280084,0.72364532,1469,2030,0.679154771,0.768135869,,,,,,,,,,,,,0.721291866,0.666441376,0.776142356,0.295,,2030,0.24168834,0.34831166,76.36327994,,,73.31154594,79.41501395,,,,,,,,,,,,,75.95921015,72.73513063,79.18328966,,,,386.5325695,69,11187,291.1892299,503.1252697,,,,,,,,,,,,,398.1440491,298.237214,520.7822191,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.091,,,0.078,0.106,0.149,,,0.128,0.172,0.082,,,0.069,0.096,,,,,,0.062,260,,,,0.081016397,368.7866369,4552,,,,,,,,,,,,,,,,,,,,,,,,,,0.282,,,0.264,0.298,0.056802565,124,2183,0.046079161,0.06752597,0.039054471,38,973,0.027139577,0.050969364,0.000739098,3,4059,,,1353,,,,,,,,,,,3.261201286,,,,,,,,,3.299998586,3.342395876,,,,,,,,,3.393918529,,,,,,2915.041,,,,,0.819635539,44798,54656,0.735513777,0.9037573,65244,,,56024.25532,74463.74468,,,,52917,44217.93617,61616.06383,,,,,,,66906,61478.76596,72333.23404,,,,,,0.398373984,245,615,,,,,,,,0.34421556,,65244,,,4.115226337,1,243,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,400,,,0,,0.794879518,2639,3320,,,0.573,,,,,2.428789068,,,,,0.81068525,1396,1722,0.75312001,0.86825049,0.062195122,102,1640,0.032259675,0.092130569,0.825203252,1421,1722,0.79044435,0.859962155,4059,,,,,0.21606307,877,4059,,,0.260408968,1057,4059,,,0.010593742,43,4059,,,0.00443459,18,4059,,,0.007883715,32,4059,,,0,0,4059,,,0.025375708,103,4059,,,0.940133038,3816,4059,,,0.001258178,5,3974,0,0.011917653,0.495688593,2012,4059,,,1,4207,4207,, -27,071,27071,MN,Koochiching County,2024,1,6982.451954,192,32115,5113.308516,8851.595392,0,,,,2,,,,2,,,,2,,,,2,7202.298223,5177.913347,9226.683099,,,,,2,,0.142,,,0.118,0.167,3.307050737,,,2.586058732,4.094200082,4.685401682,,,3.741832211,5.702450648,0.083090379,57,686,0.062435025,0.103745733,0,,,,,,,,,,,,,0.087912088,0.065921897,0.109902279,,,,,,,0.194,,,0.154,0.235,0.357,,,0.286,0.435,7.5,0.13868583,0.092,,,0.235,,,0.189,0.282,0.703780468,8489,12062,,,0.171460638,,,0.137496032,0.210066349,0.333333333,2,6,0.110000414,0.553214291,150.7,18,11941,,,10.36682616,26,2508,6.77195503,15.18980227,,,,,,,,,,,,,11.15241636,7.145563594,16.59391152,,,,,,,0.059992983,513,8551,0.050461068,0.069524898,0.00033498,4,11941,,,2985.25,0.000337724,4,11844,,,2961,0.00177305,21,11844,,,564,1532,,,,,,,,,1565,0.4,,,,,,,,,0.4,0.28,,,,,,,,,0.28,0.927107311,8458,9123,0.902390605,0.951824018,0.694112628,1627,2344,0.58548446,0.802740796,0.040254602,234,5813,,,0.165,333,,0.103042553,0.226957447,0.318181818,0,0.668348603,,,,,,,,,,0.225436681,0.150853426,0.300019936,3.646612131,111889,30683,3.129667736,4.163556525,0.293029872,618,2109,0.200202275,0.385857469,15.9115652,19,11941,,,99.6780888,61,61197,76.24583977,128.0406751,,,,,,,,,,,,,105.3629755,80.40305017,135.6230348,,,,5,,,,,0,,,,,0.111302847,645,5795,0.081090269,0.141515425,0.096707106,0.067636008,0.125778204,0.00672994,0.00149612,0.011963759,0.009490941,0.003333072,0.015648809,0.742733345,4114,5539,0.692415281,0.79305141,,,,,,,,,,,,,0.73259849,0.677640851,0.787556128,0.151,,5539,0.110419335,0.191580665,78.61844718,,,77.11960874,80.11728562,,,,,,,,,,,,,78.30573603,76.7274799,79.88399216,,,,342.978439,192,32115,286.1528616,399.8040165,,,,,,,,,,,,,348.0843017,288.5487625,407.6198409,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.101,,,0.086,0.117,0.158,,,0.137,0.181,0.09,,,0.076,0.105,0,0,10522,,,0.092,1120,,,,0.13868583,1846.04708,13311,,,,,,,,,,,,,,,,,,,,,,,,,,0.304,,,0.288,0.319,0.068545903,445,6492,0.056631009,0.080460796,0.034435262,75,2178,0.022520368,0.046350155,0.001013171,12,11844,,,987,0.853043478,98.1,115,,,,,,,,3.324487678,,,,,,,,,3.334508506,3.58681379,,,,,,,,,3.615767976,0.087268087,,,,,5147.162133,,,,,0.808877411,50114,61955,0.626742604,0.991012218,63035,,,55069.89362,71000.10638,57813,3154.617021,112471.383,,,,,,,55282,48565.57447,61998.42553,59765,54611.80851,64918.19149,,,,,,0.312378484,482,1543,,,,,,,,0.304814785,,63035,,,4.255319149,2,470,,,,,,,,,,,,,,,,,,,,,,,,,,29.70493538,18,61197,16.62562684,48.99377352,29.41320653,,,,,,,,,,,,,29.70985924,15.81924878,50.80476412,,,,17.97473732,11,61197,8.972924109,32.16177021,,,,,,,,,,,,,19.3165455,9.642749916,34.56263568,,,,12.69240533,11,86666,6.336003008,22.71021913,,,,,,,,,,,,,,,,,,,13,,1000,,,13,,0.703098019,6922,9845,,,0.555,,,,,19.26056954,,,,,0.806768368,4601,5703,0.772485794,0.841050941,0.078136201,436,5580,0.050529757,0.105742645,0.848500789,4839,5703,0.816428151,0.880573428,11844,,,,,0.174012158,2061,11844,,,0.284785545,3373,11844,,,0.007767646,92,11844,,,0.026764607,317,11844,,,0.006585613,78,11844,,,0.000253293,3,11844,,,0.014775414,175,11844,,,0.923167849,10934,11844,,,0.001292546,15,11605,0,0.007004377,0.491810199,5825,11844,,,0.454899685,5487,12062,, -27,073,27073,MN,Lac qui Parle County,2024,1,6736.19806,106,17069,4360.887345,9111.508776,0,,,,2,,,,2,,,,2,,,,2,6629.692852,4155.533224,9103.85248,,,,,2,,0.129,,,0.11,0.153,3.132185976,,,2.4270658,3.917135093,4.511478284,,,3.576525929,5.512921948,0.043209877,21,486,0.025132401,0.061287352,1,,,,,,,,,,,,,0.04454343,0.025461153,0.063625707,,,,,,,0.18,,,0.147,0.221,0.365,,,0.294,0.438,9.2,0.034012918,0.063,,,0.226,,,0.186,0.273,0.306146748,2057,6719,,,0.177038305,,,0.14358391,0.212788807,0.666666667,2,3,0.391498614,0.824051859,134.6,9,6684,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.060355519,292,4838,0.050823604,0.069887434,0.000748055,5,6684,,,1336.8,0.000448498,3,6689,,,2229.666667,0.000298998,2,6689,,,3344.5,2552,,,,,,,,,2575,0.62,,,,,,,,,0.62,0.21,,,,,,,,,0.21,0.941152432,4606,4894,0.925879572,0.956425292,0.686774942,888,1293,0.619259992,0.754289892,0.027058824,92,3400,,,0.12,167,,0.075914894,0.164085106,,,,,,,,,,0.391304348,0.134823906,0.647784789,0.09375,0.060325947,0.127174053,3.875197472,117744,30384,3.395202885,4.35519206,0.172218285,243,1411,0.119789398,0.224647171,17.95332136,12,6684,,,90.42408898,30,33177,61.00875312,129.0860096,,,,,,,,,,,,,95.80379383,64.63841739,136.7658728,,,,5.9,,,,,0,,,,,0.08852459,270,3050,0.056770391,0.12027879,0.073573078,0.040484521,0.106661636,0.007213115,0,0.014949985,0.006229508,0,0.014124472,0.726607257,2283,3142,0.696206134,0.757008379,,,,,,,,,,,,,0.712634823,0.680411696,0.74485795,0.195,,3142,0.162391481,0.227608519,80.20524178,,,77.96840793,82.44207563,,,,,,,,,,,,,80.16911904,77.86776033,82.47047776,,,,366.494684,106,17069,286.8951207,446.0942473,,,,,,,,,,,,,362.0216333,281.4212103,442.6220563,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.094,,,0.081,0.109,0.149,,,0.13,0.171,0.08,,,0.069,0.094,,,,,,0.063,420,,,,0.034012918,246.8997689,7259,,,,,,,,,,,,,,,,,,,,,,,,,,0.286,,,0.27,0.301,0.067425569,231,3426,0.055510676,0.079340463,0.045576408,68,1492,0.031278535,0.05987428,0.001345493,9,6689,,,743.2222222,,,,,,,,,,,3.081537753,,,,,,,,,3.149225079,3.706018405,,,,,,,,,3.727614873,0.083815922,,,,,-210.295,,,,,0.794519038,43256,54443,0.719823019,0.869215058,67556,,,60769.2766,74342.7234,,,,,,,,,,51250,23327.44681,79172.55319,67653,63100.31915,72205.68085,,,,,,0.361183638,415,1149,,,,,,,,0.284415892,,67556,,,12.01201201,4,333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,27.14285714,,700,,,19,,0.768060837,4040,5260,,,0.666,,,,,4.037347269,,,,,0.832980973,2364,2838,0.814331666,0.851630279,0.096641791,259,2680,0.065240093,0.128043489,0.837209302,2376,2838,0.814307201,0.860111404,6689,,,,,0.21094334,1411,6689,,,0.279114965,1867,6689,,,0.005830468,39,6689,,,0.005979967,40,6689,,,0.008670952,58,6689,,,0.003288982,22,6689,,,0.030647331,205,6689,,,0.93631335,6263,6689,,,0.006721901,43,6397,0,0.015617503,0.48736732,3260,6689,,,1,6719,6719,, -27,075,27075,MN,Lake County,2024,1,4122.699265,141,28502,2770.427966,5474.970565,0,,,,2,,,,2,,,,2,,,,2,4290.539704,2845.137522,5735.941885,,,,,2,,0.123,,,0.102,0.146,2.957857011,,,2.242091258,3.752209229,4.333825204,,,3.427554971,5.339301123,0.057228916,38,664,0.039561098,0.074896734,0,,,,,,,,,,,,,0.057507987,0.039270213,0.075745761,,,,,,,0.171,,,0.134,0.212,0.353,,,0.284,0.43,9.1,0.034778267,0.068,,,0.21,,,0.166,0.254,0.791013297,8626,10905,,,0.189353601,,,0.153695767,0.229170999,0.2,2,10,0.05050879,0.392851974,172.9,19,10986,,,15.24926686,26,1705,9.961327399,22.34370914,,,,,,,,,,,,,14.59390863,9.251286191,21.89802849,,,,,,,0.054584062,437,8006,0.046243636,0.062924488,0.000910249,10,10986,,,1098.6,0.00045708,5,10939,,,2187.8,0.001279825,14,10939,,,781.3571429,3506,,,,,,,,,3364,0.47,,,,,,,,,0.47,0.51,,,,,,,,,0.51,0.9287107,7621,8206,0.904024493,0.953396906,0.756903576,1672,2209,0.663296862,0.850510291,0.049850075,266,5336,,,0.094,193,,0.058255319,0.129744681,,,,,,,,,,,,,0.060126582,0.018693268,0.101559897,4.517506465,129282,28618,3.534426975,5.500585954,0.193220339,399,2065,0.114190772,0.272249906,13.65374113,15,10986,,,86.06496034,46,53448,63.01036785,114.7985962,,,,,,,,,,,,,84.5607756,61.19705259,113.9028098,,,,4.2,,,,,0,,,,,0.123671498,640,5175,0.093312902,0.154030093,0.100562998,0.072580581,0.128545414,0.007729469,0,0.016687858,0.017391304,0.006834319,0.027948289,0.748659794,3631,4850,0.698095558,0.79922403,,,,,,,,,,,,,0.748023082,0.696784831,0.799261333,0.4,,4850,0.330627073,0.469372927,80.74884745,,,79.389652,82.10804289,,,,,,,,,,,,,80.65613814,79.23385518,82.0784211,,,,258.8187362,141,28502,210.5663612,307.0711112,,,,,,,,,,,,,263.3725545,213.1736729,313.5714361,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.09,,,0.076,0.105,0.146,,,0.125,0.169,0.08,,,0.067,0.094,63.2,6,9494,,,0.068,730,,,,0.034778267,377.9006476,10866,,,,,,,,,,,,,,,,,,,,,,,,,,0.301,,,0.283,0.319,0.060810811,360,5920,0.050087407,0.071534215,0.037037037,81,2187,0.023930654,0.05014342,0.000365664,4,10939,,,2734.75,0.925,95.275,103,,,,,,,,3.095502487,,,,,,,,,3.069021555,3.29667455,,,,,,,,,3.277770326,0.02862674,,,,,3285.289,,,,,0.691966486,46332,66957,0.560588005,0.823344967,73724,,,67284,80164,,,,,,,,,,76053,63075.29787,89030.70213,73943,69652.44681,78233.55319,,,,,,0.208832335,279,1336,,,,,,,,0.304622647,,73724,,,9.652509653,5,518,,,,,,,,,,,,,,,,,,,,,,,,,,16.98381478,11,53448,7.332405746,33.46488576,20.58075139,,,,,,,,,,,,,17.87309015,7.716331733,35.21711275,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9,,1000,,,9,,0.829245826,7202,8685,,,0.524,,,,,23.26406149,,,,,0.830420969,4182,5036,0.810224079,0.85061786,0.111900894,551,4924,0.080414014,0.143387773,0.86477363,4355,5036,0.827609442,0.901937818,10939,,,,,0.191425176,2094,10939,,,0.277904745,3040,10939,,,0.004662218,51,10939,,,0.009415852,103,10939,,,0.005576378,61,10939,,,0.000182832,2,10939,,,0.018831703,206,10939,,,0.944876131,10336,10939,,,0.002019231,21,10400,0,0.008442098,0.484962062,5305,10939,,,1,10905,10905,, -27,077,27077,MN,Lake of the Woods County,2024,1,5740.395936,63,10212,3281.132267,9322.043364,1,,,,2,,,,2,,,,2,,,,2,5844.394284,3195.18474,9805.90053,1,,,,2,,0.132,,,0.111,0.152,3.149456288,,,2.452453499,3.872310939,4.573016243,,,3.635763355,5.537739226,0.060836502,16,263,0.031947608,0.089725396,1,,,,,,,,,,,,,0.057142857,0.028077414,0.086208301,,,,,,,0.182,,,0.145,0.22,0.378,,,0.3,0.455,8.3,0.087312828,0.077,,,0.222,,,0.179,0.267,0.564709009,2125,3763,,,0.18002069,,,0.145273421,0.218017633,0.333333333,1,3,0.04092282,0.635504717,156.9,6,3823,,,23.54788069,15,637,13.17957007,38.83864815,,,,,,,,,,,,,29.35420744,16.42932707,48.41530112,,,,,,,0.059135977,167,2824,0.049604062,0.068667892,0.000261575,1,3823,,,3823,0.000258331,1,3871,,,3871,0.000258331,1,3871,,,3871,992,,,,,,,,,993,0.47,,,,,,,,,0.47,0.26,,,,,,,,,0.27,0.960082588,2790,2906,0.938826499,0.981338677,0.699530516,596,852,0.531770102,0.867290931,0.032459426,78,2403,,,0.144,106,,0.092765957,0.195234043,,,,,,,,,,,,,0.1616,0.057695231,0.265504769,4.355628183,114614,26314,3.264537266,5.446719099,0.193732194,136,702,0.067492757,0.319971631,36.62045514,14,3823,,,74.39290079,14,18819,40.67129112,124.8186467,,,,,,,,,,,,,80.58017728,44.05393275,135.1998453,,,,5.2,,,,,0,,,,,0.105263158,160,1520,0.060343311,0.150183005,0.094736842,0.04477316,0.144700525,0.006578947,0,0.025831922,0,0,0.009977095,0.768305439,1469,1912,0.709898394,0.826712484,,,,,,,,,,,,,0.766516998,0.72143816,0.811595837,0.241,,1912,0.139807544,0.342192456,78.87909696,,,76.34826269,81.40993123,,,,,,,,,,,,,78.62347439,75.92530982,81.32163897,,,,329.9980773,63,10212,242.4701748,438.8274856,,,,,,,,,,,,,328.1318751,237.470665,441.9914824,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.095,,,0.081,0.109,0.152,,,0.129,0.176,0.087,,,0.073,0.101,,,,,,0.077,290,,,,0.087312828,353.1803897,4045,,,,,,,,,,,,,,,,,,,,,,,,,,0.288,,,0.271,0.304,0.06510292,136,2089,0.053188026,0.077017814,0.043984476,34,773,0.029686604,0.058282348,0.001033325,4,3871,,,967.75,,,,,,,,,,,2.753883007,,,,,,,,,2.915492783,2.939735138,,,,,,,,,3.05137106,0.027431741,,,,,3446.863,,,,,0.978191362,52927,54107,0.7233915,1.232991224,62143,,,52939.93617,71346.06383,,,,,,,,,,,,,62634,55738.85106,69529.14894,,,,,,0.221991701,107,482,,,,,,,,0.309190094,,62143,,,,,229,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,300,,,-888,,0.804006678,2408,2995,,,0.316,,,,,9.627645746,,,,,0.826593137,1349,1632,0.717766086,0.935420188,0.105031447,167,1590,0.052516087,0.157546806,0.795343137,1298,1632,0.714915167,0.875771108,3871,,,,,0.194006717,751,3871,,,0.259881168,1006,3871,,,0.008266598,32,3871,,,0.014724877,57,3871,,,0.016791527,65,3871,,,0,0,3871,,,0.021699819,84,3871,,,0.917075691,3550,3871,,,0.000279486,1,3578,0,0.011929878,0.476621028,1845,3871,,,1,3763,3763,, -27,079,27079,MN,Le Sueur County,2024,1,6400.883957,321,79963,5243.72468,7558.043235,0,,,,2,,,,2,,,,2,,,,2,6660.893239,5372.353771,7949.432708,,,,,2,,0.123,,,0.102,0.145,2.877958423,,,2.213339961,3.590847866,4.128024925,,,3.263170119,5.02809572,0.067369386,147,2182,0.05685183,0.077886942,0,,,,,,,,,,0.066666667,0.035107668,0.098225665,0.066558442,0.055193944,0.077922939,,,,,,,0.164,,,0.128,0.204,0.359,,,0.29,0.433,9.5,0.014798203,0.058,,,0.209,,,0.169,0.254,0.732649787,21008,28674,,,0.210810222,,,0.171378913,0.253114303,0.3125,5,16,0.177519792,0.449075671,135.2,39,28841,,,10.31909827,65,6299,7.964062189,13.15253783,,,,,,,,,,24.74690664,15.50875464,37.46711405,7.372914241,5.217512931,10.11990084,,,,,,,0.055057564,1296,23539,0.046717139,0.06339799,0.000138691,4,28841,,,7210.25,0.000308716,9,29153,,,3239.222222,0.000480225,14,29153,,,2082.357143,2615,,,,,,,,,2636,0.56,,,,,,,,,0.57,0.56,,,,,,,,0.44,0.56,0.948580315,18909,19934,0.937963747,0.959196883,0.660909614,4592,6948,0.610550198,0.711269031,0.035790666,569,15898,,,0.073,485,,0.045595745,0.100404255,,,,,,,0.78125,0.387523313,1,0.424,0.295523973,0.552476027,0.051156905,0.033499442,0.068814368,3.585000614,146035,40735,3.232591518,3.937409709,0.171896112,1145,6661,0.122623247,0.221168976,13.52241601,39,28841,,,63.60344996,91,143074,51.20953038,78.09094239,,,,,,,,,,,,,67.81176072,54.38701503,83.54598581,,,,7,,,,,0,,,,,0.09204647,1030,11190,0.075263754,0.108829186,0.077074922,0.062072513,0.09207733,0.011081323,0.005385501,0.016777145,0.007596068,0.004291212,0.010900924,0.817947532,12378,15133,0.801406185,0.834488879,,,,,,,,,,,,,0.758732362,0.725318243,0.792146481,0.387,,15133,0.357141362,0.416858638,79.54492735,,,78.49560146,80.59425324,,,,,,,,,,94.08530667,66.21884842,121.9517649,79.31617017,78.1931405,80.43919984,,,,300.6012855,321,79963,265.8714842,335.3310868,,,,,,,,,,,,,304.434599,267.9047065,340.9644914,,,,40.47490556,12,29648,20.91397433,70.7015146,,,,,,,,,,,,,44.30303274,22.11591432,79.27036334,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.088,,,0.074,0.103,0.144,,,0.122,0.168,0.079,,,0.065,0.092,53.7,13,24221,,,0.058,1660,,,,0.014798203,409.9546109,27703,,,,,,,,,,,,,,,,,,,,,,,,,,0.278,,,0.262,0.291,0.062596325,1056,16870,0.051872921,0.073319729,0.036920884,259,7015,0.02500599,0.048835777,0.000171509,5,29153,,,5830.6,0.892508711,256.15,287,,,,,,,,3.091320278,,,,,,,,2.569549158,3.207036723,3.393021043,,,,,,,,2.659729511,3.605387265,0.059334407,,,,,1421.858667,,,,,0.776604181,48968,63054,0.711669697,0.841538665,86864,,,77927.82979,95800.17021,,,,147000,62329.19149,231670.8085,,,,62716,31102.21277,94329.78723,89412,84288.59575,94535.40426,,,,,,0.273917995,962,3512,,,59.25842865,,,,,0.221196353,,86864,,,4.115226337,7,1701,,,,,,,,,,,,,,,,,,,,,,,,,,15.80176682,20,143074,9.652129693,24.40454726,13.97878021,,,,,,,,,,,,,17.502284,10.53751829,27.3319845,,,,7.688329116,11,143074,3.837986194,13.75654453,,,,,,,,,,,,,8.47647009,4.231423328,15.16674643,,,,10.58852003,21,198328,6.554460784,16.18567763,,,,,,,,,,,,,11.09133157,6.774873468,17.12966205,,,,17.8125,,3200,,,57,,0.790133897,16818,21285,,,0.735,,,,,8.313495303,,,,,0.813756614,9228,11340,0.793583398,0.83392983,0.077537468,864,11143,0.06150356,0.093571375,0.880687831,9987,11340,0.863672832,0.89770283,29153,,,,,0.229787672,6699,29153,,,0.187219154,5458,29153,,,0.008746956,255,29153,,,0.005419682,158,29153,,,0.007580695,221,29153,,,0.00058313,17,29153,,,0.068123349,1986,29153,,,0.899735876,26230,29153,,,0.011287764,306,27109,0.004267495,0.018308034,0.4875313,14213,29153,,,0.857745693,24595,28674,, -27,081,27081,MN,Lincoln County,2024,1,6764.714974,74,14561,4418.936414,9911.874791,0,,,,2,,,,2,,,,2,,,,2,6491.131698,4114.820681,9739.884662,1,,,,2,,0.135,,,0.113,0.16,3.130091833,,,2.440726176,3.883699508,4.415812901,,,3.47662961,5.35237389,0.071111111,32,450,0.047364566,0.094857656,0,,,,,,,,,,,,,0.070422535,0.04612569,0.094719381,,,,,,,0.188,,,0.151,0.229,0.361,,,0.285,0.44,9.1,0.029255698,0.068,,,0.232,,,0.189,0.28,0.390070922,2200,5640,,,0.181753345,,,0.145285924,0.22169704,0,0,2,0,0.510593623,,,,,,14.35406699,15,1045,8.033862328,23.6748506,,,,,,,,,,,,,15.19756839,8.50596366,25.06607788,,,,,,,0.062604941,261,4169,0.053073026,0.072136856,0.00053889,3,5567,,,1855.666667,0.000537634,3,5580,,,1860,0.000358423,2,5580,,,2790,911,,,,,,,,,911,0.53,,,,,,,,,0.53,0.2,,,,,,,,,0.2,0.932589965,3680,3946,0.921708919,0.94347101,0.695652174,800,1150,0.625594289,0.765710059,0.029052493,88,3029,,,0.103,133,,0.06487234,0.14112766,,,,,,,,,,,,,0.044240401,0.023814449,0.064666353,4.675315076,126500,27057,3.872891152,5.477738999,0.116615854,153,1312,0.069872464,0.163359243,25.14819472,14,5567,,,88.88888889,25,28125,57.52420213,131.2175349,,,,,,,,,,,,,93.04056569,60.21094845,137.3462289,,,,5.4,,,,,0,,,,,0.113821138,280,2460,0.090187824,0.137454452,0.111201962,0.084067917,0.138336008,0.011788618,0,0.023888194,0.001626016,0,0.008087665,0.695400217,1920,2761,0.669350443,0.721449991,,,,,,,,,,,,,0.63933518,0.603367688,0.675302672,0.381,,2761,0.335333149,0.426666851,79.12520025,,,76.94062803,81.30977247,,,,,,,,,,,,,79.36929635,77.14351212,81.59508059,,,,346.251098,74,14561,265.4687314,443.878281,,,,,,,,,,,,,331.1859182,251.4833528,428.1345987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.096,,,0.082,0.112,0.152,,,0.131,0.175,0.082,,,0.069,0.096,107.4,5,4654,,,0.068,380,,,,0.029255698,172.4915939,5896,,,,,,,,,,,,,,,,,,,,,,,,,,0.304,,,0.285,0.322,0.068762958,199,2894,0.056848064,0.080677852,0.047868362,64,1337,0.032379,0.063357724,0.00125448,7,5580,,,797.1428571,,,,,,,,,,,3.137391323,,,,,,,,,3.189790017,3.378080693,,,,,,,,,3.452814207,0.066283379,,,,,6127.051,,,,,0.866424642,46300,53438,0.791696344,0.941152939,64860,,,58066.12766,71653.87234,,,,,,,,,,37656,13249.53192,62062.46809,65159,60060.61702,70257.38298,,,,,,0.27507756,266,967,,,,,,,,0.296238051,,64860,,,,,330,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,600,,,-888,,0.726954492,3115,4285,,,0.646,,,,,3.023320689,,,,,0.820386354,1996,2433,0.799659922,0.841112787,0.102763385,238,2316,0.076582993,0.128943778,0.838882039,2041,2433,0.807157645,0.870606432,5580,,,,,0.233333333,1302,5580,,,0.246774194,1377,5580,,,0.004121864,23,5580,,,0.005017921,28,5580,,,0.007526882,42,5580,,,0.000896057,5,5580,,,0.024910394,139,5580,,,0.945698925,5277,5580,,,0.002833932,15,5293,0,0.014068981,0.488888889,2728,5580,,,1,5640,5640,, -27,083,27083,MN,Lyon County,2024,1,6374.648845,264,70120,5245.943403,7503.354286,0,,,,2,,,,2,,,,2,,,,2,6017.862329,4797.739163,7237.985494,,,,,2,,0.137,,,0.114,0.161,3.127853844,,,2.451463042,3.914561395,4.617218214,,,3.693079793,5.609973402,0.050247117,122,2428,0.04155766,0.058936574,0,,,,0.074257426,0.038100171,0.110414681,,,,0.041791045,0.020361873,0.063220217,0.050351288,0.039980807,0.06072177,,,,,,,0.176,,,0.138,0.215,0.371,,,0.296,0.454,7.9,0.14548982,0.071,,,0.237,,,0.193,0.286,0.824686375,20839,25269,,,0.191835313,,,0.153195275,0.235384108,0.416666667,5,12,0.261828357,0.556653137,289.3,73,25231,,,12.83406311,85,6623,10.25139378,15.86951779,,,,,,,,,,64.85671192,46.937124,87.36156533,5.505980634,3.687441644,7.907506634,,,,,,,0.069190729,1409,20364,0.058467325,0.079914133,0.00083231,21,25231,,,1201.476191,0.000554192,14,25262,,,1804.428571,0.002216768,56,25262,,,451.1071429,915,,,,,,,,,898,0.43,,,,,,,,,0.43,0.51,,,,,0.5,0.31,0.29,0.3,0.52,0.928231734,15029,16191,0.911675049,0.944788419,0.805474765,4708,5845,0.736797573,0.874151957,0.024963595,360,14421,,,0.113,743,,0.072489362,0.153510638,,,,0.054736842,0,0.175966354,0.302816901,0.020370907,0.585262896,0.412735849,0.278542217,0.546929481,0.067752443,0.040011222,0.095493664,4.510308735,128413,28471,4.122200819,4.898416652,0.193450576,1276,6596,0.133342701,0.253558452,16.64618921,42,25231,,,65.91543991,84,127436,52.57673635,81.60779981,,,,,,,,,,,,,73.64326447,58.21194457,91.91012694,,,,5.9,,,,,0,,,,,0.126179831,1270,10065,0.099659339,0.152700323,0.101037303,0.078092267,0.123982339,0.022354695,0.009363856,0.035345533,0.007451565,0.001117478,0.013785652,0.753473601,9490,12595,0.728269877,0.778677325,,,,,,,,,,0.736725664,0.690242466,0.783208861,0.780874921,0.757943053,0.803806789,0.124,,12595,0.102752701,0.145247299,79.35890819,,,78.29013327,80.42768311,,,,,,,,,,92.36323542,63.80384443,120.9226264,79.63610844,78.5091211,80.76309577,,,,316.890294,264,70120,277.2498306,356.5307575,,,,,,,,,,,,,305.8150055,264.3997841,347.2302269,,,,47.32607667,14,29582,25.87360651,79.40511501,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.096,,,0.082,0.111,0.15,,,0.129,0.172,0.087,,,0.073,0.102,68.3,14,20483,,,0.071,1810,,,,0.14548982,3761.930283,25857,,,,,,,,,,,,,,,,,,,,,,,,,,0.284,,,0.268,0.3,0.079414088,1106,13927,0.066307705,0.092520471,0.04782415,322,6733,0.032334788,0.063313511,0.001147969,29,25262,,,871.1034483,0.829004975,333.26,402,,,,,,,,3.121362823,,,,,,2.422162253,,2.516349334,3.333003157,3.264035282,,,,,,2.756512498,,2.631063248,3.496065202,0.084447713,,,,,2183.180875,,,,,0.79314828,46975,59226,0.737052391,0.849244168,70958,,,66853.31915,75062.68085,,,,52941,20360.91489,85521.08511,35781,9680.234043,61881.76596,47284,35937.44681,58630.55319,71371,67511.76596,75230.23404,,,,,,0.362700965,1692,4665,,,55.72364177,,,,,0.270779898,,70958,,,9.081196581,17,1872,,,,,,,,,,,,,,,,,,,,,,,,,,12.74863536,18,127436,7.426549898,20.41180019,14.12473712,,,,,,,,,,,,,14.21694849,8.126214456,23.08743366,,,,8.631783797,11,127436,4.308955372,15.44464556,,,,,,,,,,,,,10.38558858,5.1844484,18.58268676,,,,10.06666368,18,178808,5.966142891,15.90966862,,,,,,,,,,,,,10.68376068,6.106692344,17.34975801,,,,14.82758621,,2900,,,43,,0.707628979,12893,18220,,,0.719,,,,,24.41771806,,,,,0.700725514,6954,9924,0.677709141,0.723741887,0.101507642,983,9684,0.077522258,0.125493025,0.884119307,8774,9924,0.857490478,0.910748136,25262,,,,,0.263162062,6648,25262,,,0.177776898,4491,25262,,,0.030797245,778,25262,,,0.009658776,244,25262,,,0.053439949,1350,25262,,,0.000831288,21,25262,,,0.082535033,2085,25262,,,0.816087404,20616,25262,,,0.030506173,719,23569,0.019512047,0.0415003,0.498337424,12589,25262,,,0.465431952,11761,25269,, -27,085,27085,MN,McLeod County,2024,1,5487.869887,407,98816,4636.292868,6339.446906,0,,,,2,,,,2,,,,2,,,,2,5498.594966,4592.392253,6404.79768,,,,,2,,0.128,,,0.106,0.152,3.090889956,,,2.431326763,3.822468103,4.402386162,,,3.567041628,5.280710535,0.05664488,156,2754,0.048011278,0.065278483,0,,,,,,,,,,0.062068966,0.034298716,0.089839215,0.053473684,0.044425516,0.062521852,,,,,,,0.182,,,0.143,0.221,0.384,,,0.316,0.452,8.3,0.119269433,0.061,,,0.235,,,0.188,0.281,0.743303147,27332,36771,,,0.198172467,,,0.16264941,0.23725052,0.45,9,20,0.336869521,0.553114298,228.7,84,36735,,,11.03920822,87,7881,8.841953247,13.61682256,,,,,,,,,,27.486911,17.01483113,42.01666327,9.502598367,7.318158656,12.13460597,,,,,,,0.053327919,1576,29553,0.044987494,0.061668345,0.000734994,27,36735,,,1360.555556,0.000789889,29,36714,,,1266,0.002533094,93,36714,,,394.7741936,4742,,,,,38462,,,,4785,0.44,,,,,,0.21,,,0.45,0.51,,,,,,0.59,0.52,0.37,0.51,0.935089849,23885,25543,0.922828222,0.947351475,0.67238422,5880,8745,0.614779043,0.729989396,0.028872618,556,19257,,,0.085,665,,0.055212766,0.114787234,0.320754717,0.244759864,0.39674957,,,,,,,0.204440333,0.082158834,0.326721832,0.060157195,0.03180402,0.088510369,3.872985894,131240,33886,3.551729486,4.194242302,0.136141636,1115,8190,0.09718156,0.175101712,16.06097727,59,36735,,,66.63150004,120,180095,54.70961201,78.55338808,,,,,,,,,,,,,69.39412177,56.59914406,82.18909947,,,,6.3,,,,,1,,,,,0.092975908,1370,14735,0.074042198,0.111909617,0.080562222,0.063043906,0.098080537,0.011469291,0.004305441,0.018633141,0.003393281,0.000432948,0.006353615,0.817634844,15356,18781,0.796289209,0.838980479,,,,,,,,,,0.737638749,0.701938219,0.773339278,0.825354882,0.810120093,0.840589672,0.303,,18781,0.271095661,0.334904339,79.522514,,,78.71859621,80.3264318,,,,,,,,,,82.0750447,74.31862319,89.83146621,79.50297363,78.6698278,80.33611947,,,,296.0217807,407,98816,265.9774792,326.0660822,,,,,,,,,,,,,295.7548786,264.5230739,326.9866833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.092,,,0.078,0.107,0.147,,,0.126,0.168,0.082,,,0.069,0.095,83.6,26,31113,,,0.061,2230,,,,0.119269433,4371.344003,36651,,,9.230371615,10,108338,4.42632197,16.97498204,,,,,,,,,,,,,,,,,,,0.296,,,0.281,0.309,0.062049062,1333,21483,0.051325658,0.072772466,0.03094959,264,8530,0.021417675,0.040481505,0.000571989,21,36714,,,1748.285714,0.870632184,378.725,435,,,,,,,,3.129976113,,,,,,,,2.816488954,3.228812957,3.287539093,,,,,,,,2.706510406,3.413470836,0.036766218,,,,,580.4984667,,,,,0.787527363,47128,59843,0.724883829,0.850170897,80874,,,74809.31915,86938.68085,71136,53988.08511,88283.91489,101667,57033.80851,146300.1915,,,,54539,39553.6383,69524.3617,74798,69462.51064,80133.48936,,,,,,0.259769681,1376,5297,,,,,,,,0.277691223,,80874,,,8.353808354,17,2035,,,,,,,,,,,,,,,,,,,,,,,,,,15.53471381,27,180095,10.0532477,22.93230209,14.99208751,,,,,,,,,,,,,15.77211504,9.998167985,23.66591659,,,,5.552625004,10,180095,2.662699518,10.21147508,,,,,,,,,,,,,6.141072723,2.944883072,11.29365139,,,,9.925794758,25,251869,6.423451019,14.6524311,,,,,,,,,,,,,10.93268962,7.075060282,16.13880654,,,,22.56410256,,3900,,,88,,0.776014829,20933,26975,,,0.788,,,,,35.18117032,,,,,0.76836425,11391,14825,0.748921727,0.787806772,0.086189135,1255,14561,0.067142684,0.105235587,0.85767285,12715,14825,0.836142424,0.879203276,36714,,,,,0.2164297,7946,36714,,,0.201939315,7414,36714,,,0.008089557,297,36714,,,0.006073977,223,36714,,,0.008470883,311,36714,,,0.001062265,39,36714,,,0.074058942,2719,36714,,,0.89480852,32852,36714,,,0.008981519,312,34738,0.003511793,0.014451245,0.496595304,18232,36714,,,0.444997416,16363,36771,, -27,087,27087,MN,Mahnomen County,2024,1,19956.15867,131,15167,15199.5713,24712.74605,0,38220.45818,29022.39631,49408.80522,,,,,2,,,,2,,,,2,6692.749312,3340.996343,11975.17725,1,,,,2,,0.229,,,0.196,0.261,4.460921517,,,3.523704693,5.444903235,5.605945146,,,4.499250515,6.775421907,0.085578447,54,631,0.063751308,0.107405586,0,0.097791798,0.065093056,0.13049054,,,,,,,,,,,,,,,,0.092592593,0.037924556,0.147260629,0.296,,,0.249,0.345,0.444,,,0.36,0.532,6.4,0.166282663,0.13,,,0.315,,,0.261,0.371,0.483090002,2614,5411,,,0.169435538,,,0.136464762,0.209589824,0.25,1,4,0.023230216,0.544021398,387.9,21,5414,,,46.88763137,58,1237,35.60374429,60.61313641,48.29545455,33.44600623,67.48805695,,,,,,,,,,,,,,,,65.57377049,33.88292409,114.5441806,0.093333333,378,4050,0.08022695,0.106439716,0.000184706,1,5414,,,5414,,0,5328,,,,,0,5328,,,,2248,,,,,2349,,,,736,0.37,,,,,0.08,,,,0.49,0.29,,,,,0.22,,,,0.31,0.869404137,2816,3239,0.851792437,0.887015837,0.557065217,615,1104,0.500805601,0.613324834,0.048791406,109,2234,,,0.248,408,,0.165787234,0.330212766,0.379834254,0.320211836,0.439456673,,,,,,,0.318471338,0.176414352,0.460528323,0.057017544,0.019944989,0.094090099,5.004393794,109341,21849,4.338752851,5.670034737,0.374334713,633,1691,0.316702677,0.431966749,7.388252678,4,5414,,,203.4218461,56,27529,153.6626764,264.1601875,351.8029903,251.3332141,479.055822,,,,,,,,,,113.4246131,62.01029147,190.3072278,,,,5.6,,,,,0,,,,,0.163682865,320,1955,0.138091023,0.189274706,0.126098191,0.093084824,0.159111558,0.038363171,0.023698508,0.053027835,0.00971867,0,0.020090432,0.739684157,1452,1963,0.709241865,0.770126449,0.741312741,0.679504575,0.803120907,,,,,,,,,,0.78302583,0.712962882,0.853088779,0.236,,1963,0.200494417,0.271505583,68.66971132,,,65.68701683,71.65240581,56.93904716,52.92431655,60.95377776,,,,,,,,,,79.25299552,75.79327254,82.7127185,,,,809.8610979,131,15167,661.4810848,958.241111,1536.264686,1218.162352,1912.014384,,,,,,,,,,385.512852,265.3693087,541.4033764,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.143,,,0.123,0.163,0.194,,,0.169,0.219,0.132,,,0.114,0.152,,,,,,0.13,710,,,,0.166282663,900.088052,5413,,,103.5701231,17,16414,60.33341336,165.8258,221.402214,123.9171385,365.1692822,,,,,,,,,,,,,,,,0.339,,,0.328,0.351,0.114992151,293,2548,0.09711981,0.132864491,0.057814485,91,1574,0.039942145,0.075686826,0.002064565,11,5328,,,484.3636364,0.603989362,56.775,94,,,0.147435897,46,312,0.089004709,0.205867086,2.708839659,,,,,,,,,,2.870806111,,,,,,,,,,0.069815758,,,,,846.5365,,,,,1.007023265,48177,47841,0.89729382,1.116752709,52926,,,46674.25532,59177.74468,40234,34056.12766,46411.87234,,,,,,,56250,16882,95618,62163,58182.23404,66143.76596,,,,,,0.670569867,859,1281,,,,,,,,0.288780562,,52926,,,2.188183807,1,457,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,31.20855114,12,38451,16.12591378,54.51505825,,,,,,,,,,,,,,,,,,,65.71428571,,700,,,46,,0.610331126,2304,3775,,,0.397,,,,,4.016415755,,,,,0.708355508,1331,1879,0.678198268,0.738512749,0.124792932,226,1811,0.093123109,0.156462755,0.817988292,1537,1879,0.782076869,0.853899714,5328,,,,,0.316441441,1686,5328,,,0.173423423,924,5328,,,0.005067568,27,5328,,,0.432057057,2302,5328,,,0.000563063,3,5328,,,0.000563063,3,5328,,,0.049737237,265,5328,,,0.438250751,2335,5328,,,0.003435037,17,4949,0,0.013566728,0.486674174,2593,5328,,,1,5411,5411,, -27,089,27089,MN,Marshall County,2024,1,6216.716988,111,24725,4344.644082,8088.789894,0,,,,2,,,,2,,,,2,,,,2,6392.419462,4377.731616,8407.107308,,,,,2,,0.136,,,0.112,0.16,3.143914808,,,2.410578547,3.906940989,4.383980477,,,3.443702762,5.331460794,0.050802139,38,748,0.035065041,0.066539237,0,,,,,,,,,,,,,0.048991355,0.032931992,0.065050717,,,,,,,0.187,,,0.149,0.228,0.381,,,0.304,0.461,7.9,0.156158339,0.062,,,0.227,,,0.185,0.273,0.336061947,3038,9040,,,0.192525588,,,0.155987121,0.23475946,0.111111111,1,9,0.006152008,0.326116915,111.3,10,8988,,,8.501594049,16,1882,4.859395565,13.80605611,,,,,,,,,,,,,6.845052894,3.417025742,12.24769043,,,,,,,0.067830856,470,6929,0.057107452,0.07855426,0.00011126,1,8988,,,8988,0.000225708,2,8861,,,4430.5,,0,8861,,,,1712,,,,,,,,,1729,0.53,,,,,,,,,0.54,0.43,,,,,,,,,0.43,0.926002218,5844,6311,0.91170232,0.940302117,0.587939699,1170,1990,0.535463658,0.640415739,0.040134404,215,5357,,,0.097,193,,0.061255319,0.132744681,,,,,,,,,,0.118012422,0.002546201,0.233478644,0.099479468,0.063555676,0.13540326,3.781947758,123647,32694,3.306697592,4.257197924,0.202392345,423,2090,0.142784158,0.262000531,32.26524255,29,8988,,,58.20094415,27,46391,38.35478893,84.67931807,,,,,,,,,,,,,62.58547553,41.24422274,91.05858104,,,,6.1,,,,,1,,,,,0.084810127,335,3950,0.066715229,0.102905025,0.069359756,0.052230829,0.086488684,0.00835443,0.000137529,0.016571332,0.013924051,0.005617384,0.022230717,0.757361602,3215,4245,0.729166037,0.785557167,,,,,,,,,,,,,0.704632532,0.663357238,0.745907827,0.383,,4245,0.348058673,0.417941327,80.96479669,,,79.02790349,82.9016899,,,,,,,,,,,,,80.72869292,78.72994632,82.72743953,,,,312.8392973,111,24725,249.8654158,375.8131787,,,,,,,,,,,,,316.0146703,250.8401116,381.1892289,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.095,,,0.081,0.111,0.152,,,0.13,0.175,0.082,,,0.07,0.096,,,,,,0.062,560,,,,0.156158339,1473.978562,9439,,,,,,,,,,,,,,,,,,,,,,,,,,0.287,,,0.271,0.302,0.075692308,369,4875,0.062585925,0.088798691,0.051222889,111,2167,0.035733527,0.066712251,0.000677125,6,8861,,,1476.833333,,,,,,,,,,,3.049282432,,,,,,,,,3.106348167,3.321697865,,,,,,,,,3.391344217,0.107574813,,,,,5684.8035,,,,,0.810412676,46542,57430,0.771372782,0.84945257,70606,,,62282.25532,78929.74468,,,,,,,95938,78126.42553,113749.5745,48194,37664.80851,58723.19149,70142,66083.78723,74200.21277,,,,,,0.274604267,399,1453,,,,,,,,0.272129847,,70606,,,1.818181818,1,550,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,23.02803279,15,65138,12.88861514,37.9812381,,,,,,,,,,,,,24.73451619,13.84372095,40.79582295,,,,7,,1000,,,7,,0.713110181,5113,7170,,,0.63,,,,,4.387782662,,,,,0.853176722,3196,3746,0.835180857,0.871172587,0.069375346,251,3618,0.051365127,0.087385564,0.848104645,3177,3746,0.823221983,0.872987307,8861,,,,,0.227739533,2018,8861,,,0.23293082,2064,8861,,,0.006884099,61,8861,,,0.010269721,91,8861,,,0.004175601,37,8861,,,0.00056427,5,8861,,,0.051574314,457,8861,,,0.919986458,8152,8861,,,0.005885815,50,8495,0,0.013451916,0.489448144,4337,8861,,,1,9040,9040,, -27,091,27091,MN,Martin County,2024,1,5797.945644,260,52342,4549.795378,7046.095911,0,,,,2,,,,2,,,,2,,,,2,5488.695657,4225.53677,6751.854544,,,,,2,,0.141,,,0.117,0.165,3.130039559,,,2.441155292,3.93149095,4.396453507,,,3.515570502,5.404703412,0.0575,92,1600,0.04609302,0.06890698,0,,,,,,,,,,,,,0.0625,0.049401704,0.075598296,,,,,,,0.193,,,0.153,0.232,0.373,,,0.301,0.449,8.3,0.07630971,0.085,,,0.237,,,0.192,0.284,0.635605493,12728,20025,,,0.173360095,,,0.138244725,0.210974063,0.555555556,5,9,0.394493124,0.682965544,266.1,53,19915,,,18.2310914,74,4059,14.31532797,22.88746576,,,,,,,,,,86.70520231,58.4996359,123.7770676,11.26443255,8.047475765,15.33896,,,,,,,0.054817387,821,14977,0.046476961,0.063157812,0.000803415,16,19915,,,1244.6875,0.000763359,15,19650,,,1310,0.001068702,21,19650,,,935.7142857,1778,,,,,,,,,1783,0.49,,,,,,,,,0.49,0.54,,,,,,,,0.32,0.55,0.94032054,13377,14226,0.922499997,0.958141083,0.696715584,2991,4293,0.62582811,0.767603057,0.027032647,260,9618,,,0.154,667,,0.099191489,0.208808511,,,,,,,0.566666667,0.090808359,1,0.384439359,0.176781876,0.592096843,0.113093604,0.072335601,0.153851607,4.392975003,115812,26363,3.969025038,4.816924968,0.192413163,842,4376,0.116136863,0.268689462,18.57896058,37,19915,,,69.89677563,69,98717,54.38386353,88.45884305,,,,,,,,,,,,,72.42798354,56.01579722,92.14615357,,,,6.7,,,,,1,,,,,0.10368272,915,8825,0.073359725,0.134005714,0.091106043,0.060736421,0.121475665,0.009065156,0.001824566,0.016305746,0.007932011,0.000788502,0.01507552,0.815574195,7876,9657,0.776798975,0.854349415,,,,,,,,,,0.83074266,0.658312119,1,0.818580094,0.783555398,0.85360479,0.152,,9657,0.123553581,0.180446419,79.82688347,,,78.66096971,80.99279724,,,,,,,,,,,,,80.01243641,78.83109261,81.19378022,,,,314.015033,260,52342,272.0502054,355.9798607,,,,,,,,,,,,,307.751383,265.0922469,350.4105191,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.098,,,0.083,0.113,0.153,,,0.13,0.175,0.087,,,0.073,0.101,83.5,14,16771,,,0.085,1700,,,,0.07630971,1590.29436,20840,,,,,,,,,,,,,,,,,,,,,,,,,,0.267,,,0.252,0.281,0.062434865,659,10555,0.051711461,0.073158269,0.037389237,173,4627,0.025474344,0.049304131,0.001679389,33,19650,,,595.4545455,0.841232228,177.5,211,,,,,,,,2.999419694,,,,,,,,2.579743446,3.061519658,3.19006883,,,,,,,,2.830616378,3.265298711,0.070054988,,,,,2195.8603,,,,,0.776825298,44857,57744,0.700255469,0.853395127,61721,,,55651.55319,67790.44681,125893,18899.6383,232886.3617,,,,,,,50625,27429.08511,73820.91489,63813,56840.40426,70785.59575,,,,,,0.44370229,1395,3144,,,,,,,,0.311304094,,61721,,,4.284490146,5,1167,,,,,,,,,,,,,,,,,,,,,,,,,,12.26669196,10,98717,5.609112676,23.28600235,10.12996748,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.381675423,13,138568,4.995347043,16.04295069,,,,,,,,,,,,,8.571384045,4.278804033,15.33657372,,,,7,,2000,,,14,,0.71487013,11009,15400,,,0.72,,,,,19.73740733,,,,,0.725704622,6437,8870,0.69795485,0.753454394,0.086120499,739,8581,0.060906767,0.111334231,0.850394589,7543,8870,0.820367693,0.880421484,19650,,,,,0.223918575,4400,19650,,,0.249262087,4898,19650,,,0.006717557,132,19650,,,0.006259542,123,19650,,,0.007175573,141,19650,,,0.002544529,50,19650,,,0.060152672,1182,19650,,,0.910076336,17883,19650,,,0.003715696,70,18839,0,0.008394608,0.499745547,9820,19650,,,0.581173533,11638,20025,, -27,093,27093,MN,Meeker County,2024,1,5324.494518,267,63656,4228.932697,6420.05634,0,,,,2,,,,2,,,,2,,,,2,5418.837273,4257.640046,6580.034501,,,,,2,,0.129,,,0.109,0.153,2.966983108,,,2.3391478,3.7056882,4.540370523,,,3.689698866,5.49737452,0.055921053,102,1824,0.045376322,0.066465783,0,,,,,,,,,,,,,0.057988166,0.046844949,0.069131383,,,,,,,0.183,,,0.146,0.224,0.337,,,0.27,0.408,8.8,0.078239863,0.059,,,0.228,,,0.186,0.274,0.510598291,11948,23400,,,0.204198069,,,0.165246158,0.244572498,0.454545455,5,11,0.295654521,0.592841645,179.7,42,23376,,,11.72791243,60,5116,8.949632711,15.09614805,,,,,,,,,,,,,11.29698023,8.437125179,14.81448658,,,,,,,0.053035666,974,18365,0.04588673,0.060184602,0.000513347,12,23376,,,1948,0.000425604,10,23496,,,2349.6,0.000808648,19,23496,,,1236.631579,5805,,,,,,,,,5918,0.5,,,,,,,,,0.5,0.29,,,,,,,,,0.29,0.940847724,14983,15925,0.931887368,0.949808079,0.663681592,3335,5025,0.611034339,0.716328845,0.029370526,398,13551,,,0.092,505,,0.061021277,0.122978723,,,,,,,,,,0.080939948,0.006261547,0.155618349,0.081360049,0.057922716,0.104797381,3.880717624,128704,33165,3.615724611,4.145710637,0.159885796,896,5604,0.114759767,0.205011825,14.54483231,34,23376,,,61.09576546,71,116211,47.71629971,77.0639949,,,,,,,,,,,,,62.4902359,48.52611334,79.22126428,,,,6,,,,,0,,,,,0.092190889,850,9220,0.077045575,0.107336204,0.073024523,0.058643357,0.087405689,0.018438178,0.009647911,0.027228445,0.004338395,0.0011097,0.007567089,0.810650379,9423,11624,0.787671549,0.833629208,,,,,,,,,,,,,0.778670749,0.744558506,0.812782992,0.324,,11624,0.294022734,0.353977266,80.25907195,,,79.17457517,81.34356873,,,,,,,,,,,,,80.26391518,79.14531458,81.38251578,,,,285.2288002,267,63656,248.4897726,321.9678278,,,,,,,,,,,,,283.9207828,245.9855596,321.8560059,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.093,,,0.079,0.108,0.151,,,0.13,0.174,0.082,,,0.069,0.096,71.8,14,19498,,,0.059,1380,,,,0.078239863,1822.988814,23300,,,,,,,,,,,,,,,,,,,,,,,,,,0.286,,,0.271,0.302,0.061751439,794,12858,0.052219524,0.071283354,0.033918733,197,5808,0.023195329,0.044642137,0.000383044,9,23496,,,2610.666667,0.930691057,228.95,246,,,,,,,,3.314261421,,,,,,,,,3.35819039,3.578703207,,,,,,,,,3.620956643,0.046764381,,,,,1162.515333,,,,,0.763720172,45895,60094,0.720731146,0.806709197,76506,,,70749.91489,82262.08511,,,,,,,,,,54063,28642.57447,79483.42553,76634,73580.21277,79687.78723,,,,,,0.300807537,894,2972,,,,,,,,0.293545604,,76506,,,5.003573981,7,1399,,,,,,,,,,,,,,,,,,,,,,,,,,12.95796635,14,116211,6.89957134,22.15851709,12.04705234,,,,,,,,,,,,,13.94012113,7.20306401,24.35058623,,,,8.605037389,10,116211,4.126449902,15.82497013,,,,,,,,,,,,,9.189740574,4.406837807,16.90026011,,,,13.54487973,22,162423,8.488504013,20.50711069,,,,,,,,,,,,,13.78215015,8.531368163,21.06748052,,,,21.85185185,,2700,,,59,,0.779769452,13529,17350,,,0.698,,,,,19.33030345,,,,,0.819832869,7358,8975,0.795291894,0.844373845,0.088368923,778,8804,0.073526535,0.103211312,0.85816156,7702,8975,0.844047801,0.872275319,23496,,,,,0.237189309,5573,23496,,,0.211227443,4963,23496,,,0.005617978,132,23496,,,0.004000681,94,23496,,,0.004937011,116,23496,,,0.000808648,19,23496,,,0.044390535,1043,23496,,,0.933180116,21926,23496,,,0.003636364,80,22000,0,0.007449066,0.482890705,11346,23496,,,0.719273504,16831,23400,, -27,095,27095,MN,Mille Lacs County,2024,1,10385.08875,449,72917,8910.042637,11860.13486,0,61148.38733,45804.3382,79983.59618,,,,,2,,,,2,,,,2,7709.989418,6407.96638,9012.012457,,,,,2,,0.147,,,0.123,0.174,3.468612484,,,2.747336399,4.26179129,4.658018764,,,3.811356078,5.562650751,0.077033493,161,2090,0.065601665,0.088465321,0,0.13,0.083390722,0.176609278,,,,,,,,,,0.068828214,0.056993854,0.080662574,,,,,,,0.208,,,0.169,0.251,0.394,,,0.33,0.46,8.7,0.026195138,0.088,,,0.241,,,0.2,0.287,0.657432254,17395,26459,,,0.193919187,,,0.158680812,0.235393761,0.315789474,6,19,0.192486042,0.440144871,253.1,68,26867,,,19.08617698,99,5187,15.51230284,23.23673564,47.89272031,30.99364339,70.69910287,,,,,,,,,,14.72334362,11.28830313,18.87466205,,,,,,,0.075098998,1612,21465,0.064375594,0.085822403,0.000632747,17,26867,,,1580.411765,0.000513197,14,27280,,,1948.571429,0.002602639,71,27280,,,384.2253521,4932,,,,,10223,,,,4658,0.4,,,,,,,,,0.41,0.34,,,,,0.13,,,,0.35,0.90648886,16722,18447,0.893590724,0.919386996,0.587773063,3740,6363,0.532209402,0.643336725,0.044998816,570,12667,,,0.121,742,,0.078106383,0.163893617,0.396355353,0.273920221,0.518790485,,,,,,,0.134545455,0,0.297127397,0.112926281,0.078898115,0.146954448,4.332077689,125353,28936,3.944505351,4.719650026,0.219645733,1364,6210,0.179402208,0.259889257,19.35459858,52,26867,,,121.0958028,159,131301,102.2729,139.9187056,546.9583778,392.5067752,742.0108,,,,,,,,,,98.00802978,80.01661548,115.9994441,,,,5.8,,,,,0,,,,,0.126245847,1330,10535,0.107331851,0.145159843,0.106141522,0.088426709,0.123856335,0.02135738,0.01528977,0.027424991,0.003701946,0.00073421,0.006669682,0.760587727,9680,12727,0.736740026,0.784435428,0.720116618,0.600650055,0.839583181,,,,,,,,,,0.737955347,0.707194108,0.768716585,0.462,,12727,0.423538694,0.500461306,74.56997784,,,73.46980868,75.670147,,,,,,,,,,,,,76.43596649,75.39289175,77.47904123,,,,475.2674097,449,72917,428.752838,521.7819814,2046.199894,1601.025396,2576.850121,,,,,,,,,,400.3565998,356.6701634,444.0430363,,,,77.57092199,21,27072,48.01762332,118.5753943,,,,,,,,,,,,,50.44714515,25.1830331,90.26387761,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.104,,,0.089,0.12,0.156,,,0.134,0.181,0.088,,,0.074,0.102,93.5,21,22463,,,0.088,2330,,,,0.026195138,683.6145167,26097,,,44.1417581,35,79290,30.74635188,61.3904999,419.4260486,252.52188,654.9857301,,,,,,,,,,22.83072445,13.04973167,37.07566615,,,,0.296,,,0.281,0.31,0.08727085,1352,15492,0.072972977,0.101568722,0.044394762,278,6262,0.031288379,0.057501145,0.000916422,25,27280,,,1091.2,0.83447205,403.05,483,,,0.073076923,95,1300,0.031792741,0.114361105,3.190544789,,,,,,,,,3.248260694,3.366091152,,,,,,,,,3.443079928,0.167116318,,,,,-1706.910483,,,,,0.78787563,45358,57570,0.747907751,0.827843509,65294,,,59403.2766,71184.7234,55121,48716.74468,61525.25532,35625,393.8510638,70856.14894,,,,82250,39222.93617,125277.0638,69089,65612.23404,72565.76596,,,,,,0.320266139,1781,5561,,,,,,,,0.343951971,,65294,,,3.708281829,6,1618,,,,,,,,,,,,,,,,,,,,,,,,,,25.88984385,33,131301,17.5908928,36.74856675,25.13309114,,,,,,,,,,,,,25.0001169,16.33090638,36.63096367,,,,13.70895881,18,131301,8.124797816,21.6660652,,,,,,,,,,,,,12.89579339,7.217677668,21.26965007,,,,19.13038725,35,182955,13.32501566,26.60573768,,,,,,,,,,,,,19.07469281,12.96032832,27.07500385,,,,39.65517241,,2900,,,115,,0.749821337,14689,19590,,,0.643,,,,,19.62603958,,,,,0.761995069,8036,10546,0.739643481,0.784346657,0.114374939,1172,10247,0.093674455,0.135075423,0.84970605,8961,10546,0.834457036,0.864955064,27280,,,,,0.231928153,6327,27280,,,0.182441349,4977,27280,,,0.006561584,179,27280,,,0.058870968,1606,27280,,,0.00766129,209,27280,,,0.000403226,11,27280,,,0.027785924,758,27280,,,0.883870968,24112,27280,,,0.005257917,132,25105,0.001579227,0.008936607,0.490615836,13384,27280,,,0.818473865,21656,26459,, -27,097,27097,MN,Morrison County,2024,1,7142.478428,468,91754,6099.939222,8185.017634,0,,,,2,,,,2,,,,2,,,,2,7207.528251,6141.094941,8273.96156,,,,,2,,0.14,,,0.116,0.167,3.190241378,,,2.494389718,4.009367452,4.543492603,,,3.709471262,5.55319744,0.06129666,156,2545,0.051977114,0.070616206,0,,,,,,,,,,,,,0.060150376,0.050625872,0.06967488,,,,,,,0.203,,,0.158,0.247,0.374,,,0.306,0.446,8.3,0.093405979,0.075,,,0.241,,,0.195,0.29,0.462422817,15727,34010,,,0.203993552,,,0.16719923,0.244935234,0.333333333,9,27,0.231289482,0.434909506,282.4,96,33992,,,11.19515885,74,6610,8.790607601,14.05449675,,,,,,,,,,,,,9.881743075,7.558750455,12.69351238,,,,,,,0.057859856,1554,26858,0.04951943,0.066200281,0.000558955,19,33992,,,1789.052632,0.000379606,13,34246,,,2634.307692,0.001314022,45,34246,,,761.0222222,1629,,,,,,,,,1640,0.57,,,,,,,,,0.57,0.42,,,,,,,,,0.42,0.923946991,21892,23694,0.913143209,0.934750773,0.630881206,4854,7694,0.586167142,0.67559527,0.044167873,763,17275,,,0.112,862,,0.069106383,0.154893617,,,,,,,,,,0.092682927,0.033232916,0.152132938,0.094948352,0.069909118,0.119987585,4.160956668,121088,29101,3.628073124,4.693840212,0.184250765,1446,7848,0.145087019,0.22341451,16.18027771,55,33992,,,83.33433255,139,166798,69.48041391,97.18825118,,,,,,,,,,,,,85.86327058,71.4851138,100.2414274,,,,5.6,,,,,1,,,,,0.108237902,1465,13535,0.092103996,0.124371807,0.088880625,0.073341328,0.104419922,0.01403768,0.010212464,0.017862896,0.008496491,0.004798791,0.012194191,0.783262984,12804,16347,0.765445298,0.80108067,,,,,,,,,,,,,0.751903606,0.729619916,0.774187297,0.413,,16347,0.387196621,0.43880338,78.6319149,,,77.70619534,79.55763446,,,,,,,,,,,,,78.5385925,77.60173667,79.47544834,,,,357.90744,468,91754,323.0751652,392.7397149,,,,,,,,,,,,,362.5910073,326.8727315,398.3092831,,,,35.57769279,12,33729,18.38351303,62.14706943,,,,,,,,,,,,,35.21014052,17.57677529,63.00066744,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.099,,,0.084,0.116,0.155,,,0.134,0.181,0.085,,,0.072,0.1,45.5,13,28573,,,0.075,2540,,,,0.093405979,3100.891693,33198,,,9.943817432,10,100565,4.768446971,18.2870343,,,,,,,,,,,,,10.40257984,4.988441377,19.1307147,,,,0.298,,,0.282,0.312,0.067018663,1282,19129,0.056295259,0.077742067,0.036181773,293,8098,0.025458369,0.046905178,0.000759213,26,34246,,,1317.153846,0.877530864,355.4,405,,,,,,,,2.947718515,,,,,,,,,2.995206685,3.140936631,,,,,,,,,3.19908149,0.073154027,,,,,2185.89084,,,,,0.768290772,44136,57447,0.712573772,0.824007773,64588,,,58118.21277,71057.78723,,,,64464,54403.06383,74524.93617,,,,80000,36274.7234,123725.2766,65947,62560.78723,69333.21277,,,,,,0.310916543,1669,5368,,,,,,,,0.297485601,,64588,,,5.073566717,10,1971,,,,,,,,,,,,,,,,,,,,,,,,,,14.76628082,23,166798,9.140560561,22.57182879,13.78913416,,,,,,,,,,,,,15.44883808,9.563074263,23.61519007,,,,7.194330867,12,166798,3.717415742,12.5670482,,,,,,,,,,,,,7.520870415,3.886143491,13.13744707,,,,16.35154092,38,232394,11.57132355,22.44376745,,,,,,,,,,,,,16.62936296,11.70860618,22.92138632,,,,10.54054054,,3700,,,39,,0.779669125,19558,25085,,,0.687,,,,,27.26576376,,,,,0.801064295,10989,13718,0.779631247,0.822497344,0.095195128,1266,13299,0.081020573,0.109369682,0.829129611,11374,13718,0.811495584,0.846763638,34246,,,,,0.228377037,7821,34246,,,0.213192782,7301,34246,,,0.006891316,236,34246,,,0.003854465,132,34246,,,0.004204871,144,34246,,,0.000525609,18,34246,,,0.018045903,618,34246,,,0.955323249,32716,34246,,,0.002460523,79,32107,0,0.006030023,0.491239853,16823,34246,,,0.723287269,24599,34010,, -27,099,27099,MN,Mower County,2024,1,6996.908351,470,110098,6034.42868,7959.388021,0,,,,2,,,,2,,,,2,,,,2,6848.456084,5714.199677,7982.712491,,,,,2,,0.151,,,0.127,0.177,3.151241727,,,2.421510178,3.893331018,4.276509692,,,3.420773259,5.201342705,0.065656566,234,3564,0.057524899,0.073788232,0,,,,0.093939394,0.062461795,0.125416993,0.098939929,0.064152245,0.133727614,0.070921986,0.051973346,0.089870626,0.052958015,0.043370393,0.062545637,,,,0.128205128,0.054011156,0.202399101,0.187,,,0.15,0.225,0.347,,,0.282,0.417,8.8,0.05837426,0.071,,,0.267,,,0.22,0.318,0.769467136,30801,40029,,,0.184489935,,,0.149197592,0.22346342,0.090909091,1,11,0.004610648,0.283082638,408.4,164,40158,,,19.88703224,169,8498,16.88867969,22.8853848,,,,24.47552448,13.38099699,41.06577119,,,,47.78972521,37.89427992,59.4784498,10.04484305,7.58776649,13.04406422,,,,,,,0.079975373,2598,32485,0.069251969,0.090698778,0.000423328,17,40158,,,2362.235294,0.000548082,22,40140,,,1824.545455,0.00159442,64,40140,,,627.1875,3206,,,,,,,10345,1457,3198,0.53,,,,,,,,,0.54,0.56,,,,,,0.4,0.25,0.33,0.56,0.909660007,24267,26677,0.894726823,0.924593191,0.588052521,5867,9977,0.54265051,0.633454532,0.025450689,528,20746,,,0.125,1222,,0.077340426,0.172659575,,,,0.357988166,0.245557111,0.47041922,0.212349398,0.041005667,0.383693129,0.341229839,0.217160707,0.46529897,0.10159701,0.067982439,0.135211581,3.654108457,121627,33285,3.284960344,4.023256571,0.225079114,2276,10112,0.173618286,0.276539942,12.45081926,50,40158,,,84.52239844,169,199947,71.77902144,97.26577543,,,,,,,,,,,,,94.22559557,78.88857637,109.5626148,,,,7.5,,,,,0,,,,,0.125079365,1970,15750,0.102069905,0.148088826,0.088640715,0.070325381,0.106956049,0.035238095,0.019262817,0.051213374,0.006031746,0.002465826,0.009597667,0.771023409,14789,19181,0.744142574,0.797904243,,,,0.624161074,0.452740573,0.795581575,,,,0.646118722,0.521322083,0.77091536,0.804703938,0.778810102,0.830597773,0.25,,19181,0.221058824,0.278941176,78.97850662,,,78.08009482,79.87691841,,,,78.32485565,68.0067427,88.64296859,,,,87.31476919,75.94532123,98.68421715,79.05502956,78.05692517,80.05313396,,,,337.7043148,470,110098,305.90034,369.5082895,,,,,,,,,,,,,335.4430503,300.3507859,370.5353148,,,,54.27776647,24,44217,34.77678914,80.76101408,,,,,,,,,,,,,40.56196762,20.24838809,72.57656445,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.1,,,0.085,0.116,0.152,,,0.13,0.174,0.092,,,0.077,0.107,197.3,65,32945,,,0.071,2830,,,,0.05837426,2286.111138,39163,,,19.93852289,24,120370,12.77498783,29.66694159,,,,,,,,,,,,,22.95684114,14.21064649,35.09197028,,,,0.323,,,0.309,0.337,0.093133351,2105,22602,0.078835479,0.107431223,0.050857253,528,10382,0.035367891,0.066346615,0.001121076,45,40140,,,892,0.8,405.6,507,,,0.06980126,144,2063,0.029620174,0.109982347,2.992773592,,,,,,2.795270061,2.775013774,2.740979824,3.192397844,3.084214564,,,,,,2.945402893,,2.664965501,3.433895907,0.092848423,,,,,647.93486,,,,,0.927309836,47252,50956,0.890703421,0.963916251,68718,,,61684.6383,75751.3617,95417,54422.61702,136411.383,60341,44653.85106,76028.14894,44256,33911.48936,54600.51064,77725,59362.95745,96087.04255,68675,63104.78723,74245.21277,,,,,,0.457697437,3089,6749,,,60.00784825,,,,,0.326813935,,68718,,,5.67322239,15,2644,,,,,,,,,,,,,,,,,,,,,,,,,,17.58858441,33,199947,12.03057871,24.82983323,16.50437366,,,,,,,,,,,,,15.38390757,9.522881255,23.51593689,,,,8.002120562,16,199947,4.573903311,12.99494246,,,,,,,,,,,,,7.797980323,4.029330224,13.62150231,,,,6.469560717,18,278226,3.8342717,10.22469513,,,,,,,,,,,,,6.44561284,3.523876519,10.81464311,,,,24.68085106,,4700,,,116,,0.710821238,19345,27215,,,0.737,,,,,50.1158438,,,,,0.750271513,11744,15653,0.726630074,0.773912953,0.090665447,1387,15298,0.075464233,0.10586666,0.869226346,13606,15653,0.850247693,0.888205,40140,,,,,0.249451918,10013,40140,,,0.187219731,7515,40140,,,0.040707524,1634,40140,,,0.007125062,286,40140,,,0.060089686,2412,40140,,,0.007772795,312,40140,,,0.132137519,5304,40140,,,0.740931739,29741,40140,,,0.051801982,1939,37431,0.039261346,0.064342619,0.491928251,19746,40140,,,0.363486472,14550,40029,, -27,101,27101,MN,Murray County,2024,1,6333.755566,95,21432,4208.734576,9154.040278,0,,,,2,,,,2,,,,2,,,,2,6910.835255,4514.387033,10125.97486,,,,,2,,0.133,,,0.11,0.159,3.180087837,,,2.446294937,3.929605353,4.569618044,,,3.618107275,5.5401558,0.073555166,42,571,0.052143307,0.094967026,0,,,,,,,,,,,,,0.077669903,0.054553406,0.1007864,,,,,,,0.179,,,0.138,0.219,0.354,,,0.277,0.43,9.3,0.037542587,0.054,,,0.231,,,0.188,0.277,0.566572931,4634,8179,,,0.178640662,,,0.142997648,0.216809028,1,3,3,,,135.1,11,8144,,,9.518143962,16,1681,5.440441674,15.45686948,,,,,,,,,,,,,6.877579092,3.298066504,12.64811282,,,,,,,0.077220077,460,5957,0.065305184,0.089134971,0.000368369,3,8144,,,2714.666667,0.000248139,2,8060,,,4030,0.000868486,7,8060,,,1151.428571,1148,,,,,,,,,1151,0.55,,,,,,,,,0.55,0.4,,,,,,,,,0.4,0.912295787,5305,5815,0.896240329,0.928351244,0.687100894,1076,1566,0.615616499,0.758585289,0.033089815,154,4654,,,0.12,206,,0.079489362,0.160510638,,,,,,,,,,0.245901639,0.164862596,0.326940682,0.057065217,0.036883538,0.077246897,3.871504273,126393,32647,3.412285586,4.33072296,0.127109111,226,1778,0.08424007,0.169978153,35.60903733,29,8144,,,80.26267786,33,41115,55.24913431,112.7186411,,,,,,,,,,,,,84.46391807,57.77325743,119.2378506,,,,5.8,,,,,0,,,,,0.06420765,235,3660,0.050573967,0.077841334,0.056028564,0.03970036,0.072356767,0.006010929,0.002042787,0.009979071,0.008196721,0.000886719,0.015506724,0.767278211,3053,3979,0.74209248,0.792463941,,,,,,,,,,,,,0.759898293,0.71947365,0.800322936,0.285,,3979,0.249037543,0.320962457,81.95221437,,,79.67629155,84.22813719,,,,,,,,,,,,,81.35640275,78.88481629,83.8279892,,,,284.4876937,95,21432,222.9929387,357.7005634,,,,,,,,,,,,,296.2208276,229.5670727,376.18998,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.094,,,0.079,0.109,0.147,,,0.125,0.169,0.082,,,0.069,0.094,,,,,,0.054,440,,,,0.037542587,327.559068,8725,,,,,,,,,,,,,,,,,,,,,,,,,,0.283,,,0.266,0.298,0.085151803,359,4216,0.07085393,0.099449675,0.059758772,109,1824,0.040694942,0.078822602,0.001116625,9,8060,,,895.5555556,,,,,,,,,,,3.024792409,,,,,,,,,3.000160108,3.242508854,,,,,,,,,3.24883266,0.090566361,,,,,2187.3512,,,,,0.834871776,45675,54709,0.75616685,0.913576702,68665,,,61007.29787,76322.70213,,,,70417,54004.23404,86829.76596,,,,68750,52763.78723,84736.21277,71625,65916.57447,77333.42553,,,,,,0.32195572,349,1084,,,,,,,,0.327066191,,68665,,,2.188183807,1,457,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,24.19759061,14,57857,13.22904796,40.59944539,,,,,,,,,,,,,24.28862358,12.93266912,41.53428604,,,,33.75,,800,,,27,,0.775911252,4896,6310,,,0.662,,,,,4.781571298,,,,,0.824178935,2911,3532,0.798968205,0.849389666,0.06577381,221,3360,0.047157851,0.084389768,0.802944507,2836,3532,0.774494312,0.831394702,8060,,,,,0.215508685,1737,8060,,,0.271091811,2185,8060,,,0.00471464,38,8060,,,0.005707196,46,8060,,,0.018486352,149,8060,,,0.00235732,19,8060,,,0.049627792,400,8060,,,0.910297767,7337,8060,,,0.015883265,123,7744,0.0065017,0.025264829,0.495409429,3993,8060,,,1,8179,8179,, -27,103,27103,MN,Nicollet County,2024,1,4799.272945,303,96010,3924.629632,5673.916258,0,,,,2,,,,2,,,,2,,,,2,4252.657656,3363.319709,5141.995604,,,,,2,,0.119,,,0.1,0.142,2.831477334,,,2.18853904,3.552099892,4.56369855,,,3.690081615,5.520844671,0.068058455,163,2395,0.057971997,0.078144913,0,,,,,,,0.077981651,0.042386256,0.113577047,,,,0.06725756,0.056048139,0.078466981,,,,,,,0.157,,,0.122,0.193,0.349,,,0.278,0.422,8.5,0.097774123,0.064,,,0.202,,,0.161,0.247,0.845010739,29114,34454,,,0.215567232,,,0.175419448,0.258954478,0.166666667,2,12,0.039062389,0.344663233,180.6,62,34332,,,5.254451688,54,10277,3.947305826,6.855919665,,,,,,,,,,25.07836991,14.33445526,40.72570156,3.531489111,2.382680874,5.041420294,,,,,,,0.045337377,1196,26380,0.038188441,0.052486313,0.000844693,29,34332,,,1183.862069,0.000783949,27,34441,,,1275.592593,0.003019657,104,34441,,,331.1634615,1823,,,,,,,,,1806,0.61,,,,,,,,,0.61,0.61,,,,,,,0.28,,0.62,0.950909254,21230,22326,0.941856541,0.959961967,0.769058824,6537,8500,0.712839441,0.825278206,0.020050368,414,20648,,,0.1,718,,0.069021277,0.130978723,,,,,,,0.180672269,0,0.480495495,0.463210702,0.281766395,0.64465501,0.053724054,0.02368685,0.083761258,3.907200627,139616,35733,3.269517088,4.544884166,0.223569024,1660,7425,0.156568265,0.290569783,9.612023768,33,34332,,,59.55369758,102,171274,47.99617591,71.11121926,,,,,,,,,,,,,60.52584321,48.7316334,74.31232327,,,,7,,,,,1,,,,,0.106864275,1370,12820,0.085362749,0.1283658,0.10097924,0.076936624,0.125021856,0.000624025,0,0.003384169,0.008190328,0,0.016423104,0.723463538,13502,18663,0.695445877,0.751481198,,,,,,,0.675,0.432591616,0.917408384,0.665926748,0.577676534,0.754176962,0.737777501,0.717147556,0.758407446,0.146,,18663,0.124652713,0.167347287,80.73287566,,,79.83660925,81.62914208,,,,,,,,,,91.28351984,61.16609045,121.4009492,81.0979396,80.18376387,82.01211534,,,,251.8860486,303,96010,222.4063793,281.3657179,,,,,,,,,,,,,236.2260324,206.6004247,265.8516402,,,,47.04449856,17,36136,27.40515406,75.32279947,,,,,,,,,,,,,34.4815696,16.53525291,63.41283419,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.087,,,0.074,0.101,0.14,,,0.119,0.163,0.08,,,0.067,0.094,68.7,20,29095,,,0.064,2190,,,,0.097774123,3199.853715,32727,,,,,,,,,,,,,,,,,,,,,,,,,,0.276,,,0.261,0.292,0.052108131,985,18903,0.042576216,0.061640046,0.02921291,229,7839,0.019680995,0.038744825,0.000435527,15,34441,,,2296.066667,0.928699552,207.1,223,,,,,,,,3.329751,,,,,,,2.699986992,2.836933536,3.461844594,3.419630051,,,,,,,2.913908931,3.011305281,3.521719591,0.038022576,,,,,2097.45,,,,,0.806086812,48470,60130,0.73754826,0.874625364,78091,,,69847.08511,86334.91489,53795,53484.02128,54105.97872,74318,29951.70213,118684.2979,,,,66900,41548.68085,92251.31915,80238,73806.34043,86669.65957,,,,,,0.253782229,1191,4693,,,54.58830053,,,,,0.246046279,,78091,,,10.30927835,20,1940,,,,,,,,,,,,,,,,,,,,,,,,,,9.817554329,16,171274,5.494810631,16.19256286,9.341756484,,,,,,,,,,,,,10.01392334,5.331992429,17.12411388,,,,5.838597802,10,171274,2.79983459,10.73738924,,,,,,,,,,,,,,,,,,,10.07573595,24,238196,6.455714141,14.99189642,,,,,,,,,,,,,9.502045315,5.804096135,14.67513833,,,,18.33333333,,3600,,,66,,0.740991864,19125,25810,,,0.8,,,,,59.281759,,,,,0.742275227,9585,12913,0.717221192,0.767329261,0.099018453,1261,12735,0.077086755,0.120950151,0.877565244,11332,12913,0.856516225,0.898614264,34441,,,,,0.212537383,7320,34441,,,0.18062774,6221,34441,,,0.044539938,1534,34441,,,0.006678087,230,34441,,,0.016346796,563,34441,,,0.000377457,13,34441,,,0.052669783,1814,34441,,,0.865363956,29804,34441,,,0.007081499,230,32479,0.001079985,0.013083013,0.49423652,17022,34441,,,0.252104255,8686,34454,, -27,105,27105,MN,Nobles County,2024,1,7258.594487,240,59872,5898.035058,8619.153916,0,,,,2,,,,2,,,,2,5303.48759,3551.828874,7616.692845,,9441.014153,6968.47929,11913.54902,,,,,2,,0.18,,,0.153,0.208,3.466614126,,,2.747034507,4.242489535,4.136152163,,,3.273898951,5.066375759,0.072168906,188,2605,0.062231759,0.082106053,0,,,,,,,0.067901235,0.029160454,0.106642015,0.07606264,0.061873743,0.090251537,0.070077864,0.053390416,0.086765313,,,,,,,0.192,,,0.159,0.228,0.383,,,0.311,0.459,8.5,0.098941269,0.066,,,0.297,,,0.247,0.35,0.548811126,12233,22290,,,0.165716123,,,0.132879064,0.202910762,0.25,2,8,0.070127692,0.458326521,436.5,96,21991,,,47.17364782,232,4918,41.10332847,53.24396718,,,,33.40757238,18.69796466,55.10071018,,,,85.76998051,73.09827566,98.44168536,15.24090462,10.35545525,21.63324754,,,,,,,0.129573086,2334,18013,0.111700746,0.147445427,0.000636624,14,21991,,,1570.785714,0.000729029,16,21947,,,1371.6875,0.001366929,30,21947,,,731.5666667,1009,,,,,,,,,1045,0.56,,,,,,,,0.27,0.57,0.59,,,,,,0.42,0.31,0.31,0.61,0.793722294,11101,13986,0.76825186,0.819192728,0.511232663,2617,5119,0.452977339,0.569487987,0.022548931,250,11087,,,0.137,835,,0.090531915,0.183468085,,,,0.489417989,0.058988268,0.919847711,0.136460554,0,0.292400223,0.214644652,0.129575924,0.299713379,0.079435128,0.049902915,0.108967341,4.024547938,116402,28923,3.378899757,4.670196119,0.31640625,1944,6144,0.220551732,0.412260768,15.46087036,34,21991,,,71.63323782,78,108888,56.62310191,89.40152271,,,,,,,,,,34.37392582,17.15933992,61.50444834,91.08050238,68.98348305,118.0053552,,,,6.1,,,,,0,,,,,0.129746835,1025,7900,0.100569547,0.158924124,0.099236641,0.074582448,0.123890834,0.03164557,0.015741833,0.047549307,0.005696203,0.000160295,0.01123211,0.729558541,7602,10420,0.698805963,0.760311119,,,,,,,,,,0.592944369,0.501993048,0.683895691,0.830143875,0.811603017,0.848684733,0.191,,10420,0.152244531,0.22975547,79.42355275,,,78.09889562,80.74820988,,,,,,,,,,,,,77.76867576,75.80208855,79.73526298,,,,335.9370179,240,59872,291.9955573,379.8784786,,,,,,,,,,296.9340586,188.2307218,445.5468811,375.6108099,314.0720552,437.1495646,,,,56.98222155,15,26324,31.89251684,93.98350886,,,,,,,,,,,,,98.02960494,47.00900594,180.2799338,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.108,,,0.094,0.124,0.147,,,0.127,0.168,0.107,,,0.091,0.124,189,33,17457,,,0.066,1460,,,,0.098941269,2115.166443,21378,,,,,,,,,,,,,,,,,,,,,,,,,,0.315,,,0.304,0.327,0.152871551,1834,11997,0.130233253,0.175509849,0.083386277,525,6296,0.058365,0.108407554,0.000729029,16,21947,,,1371.6875,0.763479624,243.55,319,,,,,,,,2.914916546,,,,,,2.802119165,,2.738243953,3.234419336,2.965670188,,,,,,2.774251877,,2.78029959,3.373811222,0.131297785,,,,,-676.9363333,,,,,0.883636515,42601,48211,0.78569032,0.981582709,65374,,,58266.76596,72481.23404,,,,41250,13266.68085,69233.31915,58372,46586.97872,70157.02128,63534,48990.68085,78077.31915,67655,61240.02128,74069.97872,,,,,,0.561442385,2787,4964,,,61.98618875,,,,,0.293908893,,65374,,,2.759381899,5,1812,,,,,,,,,,,,,,,,,,,,,,,,,,16.76323063,17,108888,9.581634705,27.22243633,15.61237235,,,,,,,,,,,,,16.87553134,7.285656644,33.25152422,,,,,,,,,,,,,,,,,,,,,,,,,,,11.80281432,18,152506,6.995095787,18.65353512,,,,,,,,,,,,,14.60772636,7.777999069,24.97965696,,,,26,,2500,,,65,,0.664,8715,13125,,,0.673,,,,,42.34926094,,,,,0.744700221,5726,7689,0.726162215,0.763238227,0.10810447,803,7428,0.079276439,0.1369325,0.836909871,6435,7689,0.816357255,0.857462488,21947,,,,,0.283045519,6212,21947,,,0.177062924,3886,21947,,,0.046748986,1026,21947,,,0.014580581,320,21947,,,0.070670251,1551,21947,,,0.003417324,75,21947,,,0.317355447,6965,21947,,,0.55100925,12093,21947,,,0.106253676,2168,20404,0.083043025,0.129464327,0.479883355,10532,21947,,,0.380888291,8490,22290,, -27,107,27107,MN,Norman County,2024,1,7267.77145,102,17170,4878.269207,9657.273693,0,,,,2,,,,2,,,,2,,,,2,6960.985108,4696.547422,9937.239075,,,,,2,,0.138,,,0.115,0.164,3.104672869,,,2.404628178,3.806592773,4.396364821,,,3.498133867,5.318144311,0.072265625,37,512,0.049837199,0.094694051,0,,,,,,,,,,,,,0.06855792,0.044475915,0.092639924,,,,,,,0.185,,,0.147,0.226,0.376,,,0.3,0.455,8.4,0.091759531,0.073,,,0.232,,,0.189,0.279,0.404440304,2605,6441,,,0.183458454,,,0.147789079,0.22274397,0.25,1,4,0.023230216,0.544021398,218.2,14,6416,,,15.7480315,22,1397,9.869207496,23.84270894,,,,,,,,,,,,,11.32404181,6.029575341,19.36445638,,,,,,,0.068253968,344,5040,0.057530564,0.078977373,,0,6416,,,,0.000627254,4,6377,,,1594.25,,0,6377,,,,1592,,,,,,,,,1655,0.52,,,,,,,,,0.53,0.25,,,,,,,,,0.25,0.92829935,4143,4463,0.909325133,0.947273568,0.615099926,831,1351,0.547523309,0.682676543,0.035736677,114,3190,,,0.126,186,,0.077148936,0.174851064,0.181818182,0,0.877813558,,,,,,,0.078571429,0,0.171473884,0.091728092,0.057104741,0.126351443,4.327732299,120536,27852,3.85951056,4.795954039,0.149282921,229,1534,0.101284483,0.197281358,17.1446384,11,6416,,,124.2197447,40,32201,88.74440683,169.1520355,,,,,,,,,,,,,115.1832461,79.28684668,161.7601022,,,,6,,,,,1,,,,,0.106498195,295,2770,0.080980727,0.132015663,0.076330275,0.051581562,0.101078988,0.024909747,0.011776986,0.038042508,0.009025271,0.000495533,0.017555009,0.747209455,2276,3046,0.717230075,0.777188835,,,,,,,,,,,,,0.735337605,0.69221334,0.77846187,0.344,,3046,0.304952583,0.383047417,77.94626349,,,75.79352356,80.09900342,,,,,,,,,,,,,78.24254958,76.03607056,80.44902859,,,,406.2446386,102,17170,322.0850591,490.4042181,,,,,,,,,,,,,390.6883926,308.8229618,487.5967954,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.097,,,0.082,0.112,0.15,,,0.129,0.173,0.086,,,0.073,0.1,,,,,,0.073,480,,,,0.091759531,628.7363037,6852,,,,,,,,,,,,,,,,,,,,,,,,,,0.289,,,0.273,0.304,0.078492491,277,3529,0.065386108,0.091598874,0.045969773,73,1588,0.030480412,0.061459135,0.000784068,5,6377,,,1275.4,,,,,,,,,,,3.272811961,,,,,,,,,3.390871021,3.316906583,,,,,,,,,3.389786738,0.018298313,,,,,-7544.42,,,,,0.798680883,46742,58524,0.73535738,0.862004386,64319,,,57123.59575,71514.40426,53438,23473.23404,83402.76596,,,,,,,46696,40544.34043,52847.65957,66923,61917.55319,71928.44681,,,,,,0.398479913,367,921,,,,,,,,0.298729769,,64319,,,2.808988764,1,356,,,,,,,,,,,,,,,,,,,,,,,,,,38.78512535,12,32201,19.36139483,69.3973028,37.26592342,,,,,,,,,,,,,35.27668454,16.1307465,66.96613575,,,,,,,,,,,,,,,,,,,,,,,,,,,32.99749219,15,45458,18.46844589,54.42434527,,,,,,,,,,,,,27.15110826,13.55373542,48.58083259,,,,11.42857143,,700,,,8,,0.705846154,3441,4875,,,0.612,,,,,0.382131489,,,,,0.810526316,2156,2660,0.783313009,0.837739622,0.093640265,240,2563,0.062733025,0.124547506,0.845112782,2248,2660,0.819142053,0.871083511,6377,,,,,0.235377137,1501,6377,,,0.218911714,1396,6377,,,0.006899796,44,6377,,,0.025560608,163,6377,,,0.007213423,46,6377,,,0.000313627,2,6377,,,0.057550572,367,6377,,,0.8784695,5602,6377,,,0.001478318,9,6088,0,0.011645881,0.490355967,3127,6377,,,1,6441,6441,, -27,109,27109,MN,Olmsted County,2024,1,5129.324345,1273,446753,4712.761497,5545.887193,0,,,,2,4061.696114,2740.409312,5798.323758,,10205.31068,8099.357095,12311.26427,,4504.521808,3016.74895,6469.244707,,4657.56557,4215.183732,5099.947409,,,,,2,,0.113,,,0.093,0.135,2.672565583,,,2.091118477,3.30644776,4.53206036,,,3.77405347,5.29921102,0.064561601,916,14188,0.060517796,0.068605407,0,,,,0.093173432,0.075869309,0.110477555,0.092020967,0.078348332,0.105693602,0.066115703,0.050461994,0.081769411,0.057027081,0.052508532,0.061545629,,,,0.05,0.023507911,0.076492089,0.136,,,0.103,0.173,0.295,,,0.247,0.344,9.6,0.024484826,0.05,,,0.192,,,0.157,0.231,0.880863633,143446,162847,,,0.164292731,,,0.136760617,0.19453257,0.125,6,48,0.062215498,0.205205239,351.8,575,163436,,,9.164908049,304,33170,8.134646738,10.19516936,,,,6.63423264,3.713129647,10.94215784,12.06715635,8.834675081,16.09589552,24.13515688,18.41766732,31.06673106,6.575774846,5.523431701,7.62811799,,,,18.97983393,12.98219236,26.79386244,0.041347064,5633,136237,0.035389618,0.047304511,0.002312832,378,163436,,,432.3703704,0.001329106,218,164020,,,752.3853211,0.004975003,816,164020,,,201.004902,2595,,,,,,1199,7780,644,2497,0.62,,,,,,0.49,0.25,0.38,0.63,0.62,,,,,0.4,0.57,0.39,0.5,0.62,0.949321094,104244,109809,0.94284318,0.955799008,0.799008374,36259,45380,0.766283158,0.831733589,0.021820059,1987,91063,,,0.089,3390,,0.062787234,0.115212766,,,,0.071764203,0.024667896,0.11886051,0.337598425,0.229511648,0.445685203,0.079534738,0.016207336,0.142862139,0.041355588,0.028206309,0.054504867,4.177423665,171972,41167,3.928127893,4.426719437,0.164836007,6453,39148,0.133528795,0.196143219,10.64636922,174,163436,,,61.72418755,489,792234,56.25330963,67.19506547,,,,,,,76.13826709,54.39429428,103.6787098,36.15677578,20.23667293,59.6351031,67.70340162,61.25898465,74.14781859,,,,7.6,,,,,0,,,,,0.128303965,8155,63560,0.115059959,0.14154797,0.099151265,0.088649295,0.109653235,0.026195721,0.018153076,0.034238365,0.006922593,0.004478799,0.009366387,0.684549759,58414,85332,0.670952081,0.698147436,,,,0.54682023,0.484327052,0.609313409,0.614916998,0.563706856,0.666127139,0.700253632,0.637290481,0.763216782,0.734510005,0.722298478,0.746721532,0.125,,85332,0.112278375,0.137721625,81.82017248,,,81.36274141,82.27760355,,,,89.35151775,84.15608971,94.54694578,78.61591884,74.58636641,82.64547127,90.65316255,80.75007908,100.556246,82.08062377,81.60524865,82.55599889,,,,238.9674902,1273,446753,225.4661024,252.4688779,,,,171.0801178,126.9789609,225.5478073,434.6334488,345.3111768,523.9557208,183.6261498,122.018243,265.3909129,230.3692378,215.8806522,244.8578235,,,,47.50142504,80,168416,37.66567582,59.11963529,,,,,,,106.4843356,64.11052606,166.2884805,,,,36.28321642,26.14975097,49.04436814,,,,4.941880699,71,14367,3.859649826,6.233510065,,,,,,,,,,,,,3.860631213,2.75809154,5.257083965,,,,,,,0.079,,,0.066,0.093,0.134,,,0.114,0.153,0.078,,,0.066,0.091,165.6,224,135277,,,0.05,8100,,,,0.024484826,3531.887235,144248,,,17.46263723,84,481027,13.92888336,21.61993314,,,,,,,41.67410847,22.7836229,69.92207276,,,,17.23520755,13.30176932,21.96768685,,,,0.27,,,0.256,0.284,0.046727812,4519,96709,0.039578876,0.053876749,0.029388327,1217,41411,0.019856412,0.038920242,0.007249116,1189,164020,,,137.9478553,0.841,1656.77,1970,,,0.053099594,418,7872,0.028942167,0.07725702,3.242251015,,,,,,3.358873619,2.47794359,2.585440771,3.430362407,3.436677356,,,,,,3.754542956,2.609642875,2.628036383,3.655986444,0.127630681,,,,,2557.23786,,,,,0.829331612,60377,72802,0.775026707,0.883636516,88032,,,81247.65957,94816.34043,90739,79679.59575,101798.4043,97720,74947.06383,120492.9362,39317,29459.80851,49174.19149,65793,52976.14894,78609.85106,97582,93939.61702,101224.383,,,,,,0.31420776,7831,24923,,,53.65081652,,,,,0.409589695,,88032,,,8.013417816,86,10732,,,1.732356406,19,1096772,1.042991722,2.705289119,,,,,,,,,,,,,1.14504385,0.549093033,2.105776408,,,,11.61046642,95,792234,9.348023307,14.25507995,11.99140658,,,,,,,,,,,,,12.84402426,10.18451243,15.9855,,,,5.427689294,43,792234,3.928045655,7.311061859,,,,,,,,,,,,,6.067757692,4.293906478,8.328471503,,,,7.567662194,83,1096772,6.027600695,9.381255885,,,,,,,,,,,,,7.900802561,6.147295986,9.998971304,,,,14.48275862,,17400,,,252,,0.821548973,91385,111235,,,0.76,,,,,88.7436949,,,,,0.707927846,46702,65970,0.695940326,0.719915366,0.098266609,6372,64844,0.086952506,0.109580713,0.902228286,59520,65970,0.894269961,0.91018661,164020,,,,,0.236672357,38819,164020,,,0.17007682,27896,164020,,,0.076472381,12543,164020,,,0.004743324,778,164020,,,0.067071089,11001,164020,,,0.000884039,145,164020,,,0.055548104,9111,164020,,,0.7731801,126817,164020,,,0.02188325,3324,151897,0.017172916,0.026593584,0.509785392,83615,164020,,,0.173684501,28284,162847,, -27,111,27111,MN,Otter Tail County,2024,1,6318.549957,764,158542,5540.530678,7096.569236,0,,,,2,,,,2,,,,2,,,,2,6178.74409,5381.014769,6976.473412,,,,,2,,0.131,,,0.109,0.156,3.213407531,,,2.515696916,3.949890084,4.51227832,,,3.666837229,5.389064117,0.059990979,266,4434,0.053001139,0.066980818,0,,,,,,,,,,0.092936803,0.058239752,0.127633854,0.058082755,0.050733295,0.065432215,,,,,,,0.175,,,0.138,0.218,0.368,,,0.309,0.434,8.9,0.059728008,0.065,,,0.249,,,0.206,0.298,0.508580084,30556,60081,,,0.173857595,,,0.142202199,0.210207028,0.34375,11,32,0.250875654,0.43568959,208.2,125,60046,,,13.4041022,149,11116,11.25181279,15.5563916,,,,,,,,,,31.20356612,19.31549923,47.69796543,12.09253418,9.882370307,14.30269804,,,,,,,0.061235867,2746,44843,0.052895442,0.069576293,0.000532925,32,60046,,,1876.4375,0.000693997,42,60519,,,1440.928571,0.001487136,90,60519,,,672.4333333,1870,,,,,,,,,1865,0.56,,,,,,,,0.33,0.56,0.48,,,,,0.3,,,0.06,0.48,0.931815531,39946,42869,0.924506299,0.939124763,0.719006919,8833,12285,0.677236184,0.760777654,0.030168702,946,31357,,,0.105,1338,,0.063297872,0.146702128,0.269230769,0.140118116,0.398343423,,,,0.068181818,0,0.302610356,0.421115065,0.200433624,0.641796506,0.06110242,0.047418199,0.074786642,4.17362315,125192,29996,3.87518287,4.47206343,0.159932271,2078,12993,0.125249751,0.194614791,18.31928855,110,60046,,,75.3334012,222,294690,65.4235494,85.243253,,,,,,,,,,,,,78.76566112,68.21241401,89.31890822,,,,6,,,,,1,,,,,0.113990686,2815,24695,0.100815406,0.127165967,0.094633748,0.082751503,0.106515994,0.0155902,0.01101729,0.020163111,0.011338328,0.007020632,0.015656023,0.75093606,20858,27776,0.730151725,0.771720394,,,,,,,,,,0.716794731,0.577321144,0.856268318,0.744880433,0.721302558,0.768458309,0.258,,27776,0.240367568,0.275632432,79.61971662,,,78.93221542,80.30721782,,,,,,,,,,86.9087727,66.06225394,107.7552915,79.6736624,78.97166085,80.37566394,,,,310.3959281,764,158542,285.5720522,335.2198039,,,,,,,,,,,,,308.3644209,282.7051765,334.0236653,,,,40.95295752,23,56162,25.96066208,61.44954399,,,,,,,,,,,,,29.13025385,15.92578085,48.87561615,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.096,,,0.082,0.113,0.153,,,0.132,0.177,0.081,,,0.069,0.095,37.4,19,50800,,,0.065,3900,,,,0.059728008,3422.594057,57303,,,7.885857841,14,177533,4.311271863,13.23112949,,,,,,,,,,,,,8.562481652,4.681188397,14.36638928,,,,0.258,,,0.243,0.273,0.071491201,2283,31934,0.060767796,0.082214605,0.03708081,502,13538,0.027548895,0.046612725,0.000859234,52,60519,,,1163.826923,0.791352848,500.135,632,,,,,,,,3.237945497,,,,,,,2.689679272,2.947375398,3.293357096,3.412425224,,,,,,,2.734804165,2.81569695,3.486656997,0.120200473,,,,,1186.152888,,,,,0.77815112,46549,59820,0.742571063,0.813731177,65076,,,59945.44681,70206.55319,51750,5006.680851,98493.31915,,,,96358,95389.31915,97326.68085,57537,40024.48936,75049.51064,68227,65497.29787,70956.70213,,,,,,0.286376387,2348,8199,,,79.82320099,,,,,0.295254779,,65076,,,3.838204901,13,3387,,,,,,,,,,,,,,,,,,,,,,,,,,20.39967662,53,294690,14.98891508,27.12724532,17.98500119,,,,,,,,,,,,,20.3033807,14.63289095,27.44427247,,,,13.5735858,40,294690,9.6971687,18.48337133,,,,,,,,,,,,,12.8822343,8.972948192,17.91606944,,,,11.20609222,46,410491,8.204267916,14.94735663,,,,,,,,,,,,,12.1245987,8.876730104,16.17251557,,,,17.75862069,,5800,,,103,,0.808327782,36399,45030,,,0.576,,,,,26.90621431,,,,,0.801405058,19963,24910,0.785095159,0.817714957,0.093775899,2263,24132,0.081351741,0.106200058,0.836611803,20840,24910,0.823217912,0.850005693,60519,,,,,0.214676383,12992,60519,,,0.255638725,15471,60519,,,0.014557412,881,60519,,,0.008988913,544,60519,,,0.005766784,349,60519,,,0.000925329,56,60519,,,0.038698591,2342,60519,,,0.92030602,55696,60519,,,0.00869994,494,56782,0.005639864,0.011760016,0.493051769,29839,60519,,,0.779198083,46815,60081,, -27,113,27113,MN,Pennington County,2024,1,6686.727683,163,38068,5081.596124,8291.859242,0,,,,2,,,,2,,,,2,,,,2,6508.067115,4865.213011,8150.921219,,,,,2,,0.129,,,0.11,0.152,3.087047328,,,2.422398581,3.818029723,5.041916475,,,4.1455462,5.967330835,0.055505005,61,1099,0.041967983,0.069042026,0,,,,,,,,,,,,,0.055958549,0.041456774,0.070460325,,,,,,,0.181,,,0.146,0.218,0.342,,,0.277,0.41,8.8,0.05040061,0.075,,,0.224,,,0.183,0.268,0.680031447,9515,13992,,,0.214055872,,,0.176149218,0.255206966,0.285714286,2,7,0.086061846,0.500925625,275.8,38,13780,,,19.5104647,55,2819,14.6979521,25.39555161,,,,,,,,,,,,,18.51851852,13.45558391,24.86024675,,,,,,,0.041829946,459,10973,0.03468101,0.048978882,0.000798258,11,13780,,,1252.727273,0.000577826,8,13845,,,1730.625,0.003105814,43,13845,,,321.9767442,896,,,,,,,,,750,0.53,,,,,,,,,0.53,0.51,,,,,,,,,0.52,0.952970297,9240,9696,0.940218897,0.965721697,0.713800905,2524,3536,0.629748154,0.797853656,0.033238798,293,8815,,,0.099,297,,0.063255319,0.134744681,,,,,,,,,,0.05785124,0,0.214078619,0.140492687,0.089600564,0.19138481,3.80004821,126116,33188,3.170780427,4.429315993,0.152056105,477,3137,0.09872556,0.20538665,13.06240929,18,13780,,,91.18237901,64,70189,70.22154262,116.4378624,,,,,,,,,,,,,93.099585,70.87171765,120.0916816,,,,5.9,,,,,0,,,,,0.107112971,640,5975,0.078634038,0.135591903,0.088427399,0.060925383,0.115929416,0.009707113,0,0.021019763,0.010878661,0,0.022171188,0.780511138,5711,7317,0.74732674,0.813695537,,,,,,,,,,,,,0.806248543,0.776883286,0.835613799,0.093,,7317,0.068035526,0.117964475,79.55136269,,,78.0315908,81.07113459,,,,,,,,,,,,,79.68553926,78.14448738,81.22659114,,,,325.1843071,163,38068,272.7812672,377.587347,,,,,,,,,,,,,320.6484196,266.3443523,374.9524869,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.094,,,0.081,0.109,0.155,,,0.134,0.179,0.082,,,0.069,0.095,69.1,8,11581,,,0.075,1050,,,,0.05040061,702.0805023,13930,,,,,,,,,,,,,,,,,,,,,,,,,,0.295,,,0.279,0.31,0.048309788,383,7928,0.038777873,0.057841703,0.025953721,83,3198,0.017613296,0.034294147,0.001155652,16,13845,,,865.3125,0.866666667,143,165,,,,,,,,3.0673448,,,,,,,,,3.105985194,3.16495358,,,,,,,,,3.307639389,0.02023513,,,,,2560.7655,,,,,0.764387025,44138,57743,0.727736118,0.801037933,76423,,,71063.68085,81782.31915,,,,,,,,,,53438,19378.08511,87497.91489,72750,67751.70213,77748.29787,,,,,,0.313059877,664,2121,,,,,,,,0.251416458,,76423,,,5.720823799,5,874,,,,,,,,,,,,,,,,,,,,,,,,,,19.14850364,13,70189,9.894311255,33.44858231,18.52142074,,,,,,,,,,,,,20.99435462,10.84808939,36.67291249,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.85714286,,1400,,,25,,0.679775806,7277,10705,,,0.706,,,,,50.79948984,,,,,0.726341463,4467,6150,0.694005947,0.75867698,0.090998686,554,6088,0.061534461,0.120462911,0.891219512,5481,6150,0.870062551,0.912376473,13845,,,,,0.222824124,3085,13845,,,0.196460816,2720,13845,,,0.010834236,150,13845,,,0.021090646,292,13845,,,0.011412062,158,13845,,,0.000433369,6,13845,,,0.047453955,657,13845,,,0.890935356,12335,13845,,,0.003114082,41,13166,0,0.008665473,0.497797039,6892,13845,,,0.364493997,5100,13992,, -27,115,27115,MN,Pine County,2024,1,8012.96837,467,80402,6703.448351,9322.488388,0,24351.13356,14185.43267,38988.52376,1,,,,2,,,,2,,,,2,7788.241244,6371.179515,9205.302974,,,,,2,,0.155,,,0.132,0.181,3.408307098,,,2.709129866,4.185197585,4.725077433,,,3.865907373,5.633642683,0.06838565,122,1784,0.056672891,0.08009841,0,,,,,,,,,,,,,0.069300518,0.056632596,0.081968441,,,,,,,0.209,,,0.171,0.251,0.416,,,0.345,0.487,8.6,0.043070027,0.087,,,0.235,,,0.194,0.28,0.55554786,16042,28876,,,0.19359657,,,0.157171978,0.233463134,0.379310345,11,29,0.282732448,0.472571138,245.7,72,29302,,,16.73876246,89,5317,13.44260074,20.59848757,49.5049505,23.739548,91.04136655,,,,,,,,,,16.27446668,12.77895673,20.4311026,,,,,,,0.067685284,1453,21467,0.05815337,0.077217199,0.000170637,5,29302,,,5860.4,0.000373565,11,29446,,,2676.909091,0.00213951,63,29446,,,467.3968254,3254,,,,,,,,,3116,0.39,,,,,,,,,0.4,0.3,,,,,0.06,,,,0.3,0.911789376,19567,21460,0.902234408,0.921344344,0.549115768,3695,6729,0.507796423,0.590435113,0.044478421,640,14389,,,0.141,782,,0.090957447,0.191042553,0.76331361,0.597498119,0.9291291,0.266666667,0,0.811074794,0.129032258,0,0.483559142,0.195454546,0.063465614,0.327443477,0.094793057,0.067531986,0.122054129,4.125241321,117524,28489,3.771215802,4.47926684,0.1536,864,5625,0.117645728,0.189554272,13.99221896,41,29302,,,105.4952833,155,146926,88.88705661,122.1035101,,,,,,,,,,,,,109.3222024,91.40391797,127.2404867,,,,5.5,,,,,1,,,,,0.124438455,1385,11130,0.110054407,0.138822503,0.100545951,0.086973445,0.114118456,0.016621743,0.011261373,0.021982113,0.016621743,0.010195712,0.023047775,0.767017989,9679,12619,0.749608246,0.784427732,,,,,,,,,,,,,0.762585939,0.740103584,0.785068294,0.436,,12619,0.407206359,0.464793642,77.41711356,,,76.31876306,78.51546407,,,,,,,,,,,,,77.49362707,76.32346494,78.66378921,,,,376.2080997,467,80402,338.7611949,413.6550045,1011.410602,654.5316137,1493.041567,,,,,,,,,,366.7669808,327.786355,405.7476065,,,,48.0807757,12,24958,24.84403842,83.98743909,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.103,,,0.088,0.118,0.157,,,0.135,0.179,0.093,,,0.079,0.108,109.9,28,25481,,,0.087,2530,,,,0.043070027,1281.333299,29750,,,29.4650952,26,88240,19.24757844,43.17319139,,,,,,,,,,,,,26.77000739,16.5710565,40.92079996,,,,0.345,,,0.33,0.359,0.077481992,1237,15965,0.065567098,0.089396886,0.04033092,234,5802,0.028416027,0.052245814,0.000509407,15,29446,,,1963.066667,0.777508651,224.7,289,,,0.072794118,99,1360,0.034379746,0.111208489,3.11018601,,,,,,,,,3.133480114,3.102264449,,,,,,,,,3.211015672,0.082135517,,,,,1799.0211,,,,,0.789283775,45061,57091,0.746239031,0.832328519,65139,,,58433.29787,71844.70213,28681,21210.3617,36151.6383,71250,8359.617021,134140.383,71786,40524.89362,103047.1064,,,,65761,63053.93617,68468.06383,,,,,,0.34723315,1324,3813,,,36.01703152,,,,,0.344770414,,65139,,,4.454342984,6,1347,,,,,,,,,,,,,,,,,,,,,,,,,,16.10277328,23,146926,9.967870461,24.61479949,15.65413882,,,,,,,,,,,,,17.65939695,10.63211055,27.57733585,,,,10.20922097,15,146926,5.714023476,16.83855742,,,,,,,,,,,,,11.46736388,6.418196515,18.91367282,,,,17.57220468,36,204869,12.30735612,24.3273382,,,,,,,,,,,,,19.16432588,13.34865516,26.65293809,,,,19.64285714,,2800,,,55,,0.68351132,16001,23410,,,0.526,,,,,7.621652866,,,,,0.836379613,9518,11380,0.823409126,0.8493501,0.105854416,1159,10949,0.091231629,0.120477203,0.83374341,9488,11380,0.815599226,0.851887593,29446,,,,,0.192521905,5669,29446,,,0.226584256,6672,29446,,,0.018610338,548,29446,,,0.032330368,952,29446,,,0.010188141,300,29446,,,0.000271684,8,29446,,,0.031651158,932,29446,,,0.887862528,26144,29446,,,0.002630536,73,27751,4.05214E-05,0.00522055,0.467907356,13778,29446,,,1,28876,28876,, -27,117,27117,MN,Pipestone County,2024,1,5955.853526,124,24607,4221.363339,7690.343712,0,,,,2,,,,2,,,,2,,,,2,5513.030245,3739.468347,7286.592144,,,,,2,,0.146,,,0.122,0.171,3.270572038,,,2.536291528,4.056905826,4.591450965,,,3.61199833,5.66178783,0.078037904,70,897,0.060484184,0.095591625,0,,,,,,,,,,,,,0.076704546,0.057046034,0.096363057,,,,,,,0.195,,,0.155,0.234,0.372,,,0.295,0.451,8.3,0.092178893,0.076,,,0.248,,,0.201,0.296,0.508701189,4794,9424,,,0.180637635,,,0.144525992,0.220401085,0,0,3,0,0.420755624,279.2,26,9313,,,19.124308,38,1987,13.53349856,26.24960691,,,,,,,,,,48.88888889,24.40515719,87.47572673,12.87553648,7.970160015,19.68162522,,,,,,,0.080592105,588,7296,0.068677212,0.092506999,0.000536884,5,9313,,,1862.6,0.000427579,4,9355,,,2338.75,0.001282737,12,9355,,,779.5833333,2132,,,,,,,,,2196,0.48,,,,,,,,,0.49,0.31,,,,,,,,,0.31,0.926809737,5787,6244,0.906764938,0.946854537,0.658937198,1364,2070,0.57485108,0.743023317,0.025311025,118,4662,,,0.135,335,,0.093297872,0.176702128,,,,,,,,,,0.39295393,0.170920743,0.614987116,0.091743119,0.041651875,0.141834364,4.100048333,118762,28966,3.577542739,4.622553926,0.153937008,391,2540,0.094328633,0.213545383,23.62289273,22,9313,,,59.08872062,27,45694,38.93983922,85.97098622,,,,,,,,,,,,,60.3075686,38.64019714,89.73288168,,,,5.5,,,,,0,,,,,0.115,460,4000,0.085450839,0.144549161,0.090265487,0.065079381,0.115451592,0.011,0.002241194,0.019758806,0.01725,0.003154727,0.031345273,0.795787546,3476,4368,0.747783629,0.843791462,,,,,,,,,,,,,0.795180723,0.741035582,0.849325863,0.209,,4368,0.168788337,0.249211663,79.41819122,,,77.74970611,81.08667632,,,,,,,,,,,,,79.62779209,77.93124163,81.32434256,,,,349.296849,124,24607,284.9080654,413.6856325,,,,,,,,,,,,,341.7672658,276.4615534,407.0729782,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.102,,,0.086,0.117,0.154,,,0.133,0.176,0.09,,,0.076,0.104,79.6,6,7541,,,0.076,710,,,,0.092178893,884.5486606,9596,,,,,,,,,,,,,,,,,,,,,,,,,,0.299,,,0.282,0.314,0.094308609,459,4867,0.078819247,0.109797971,0.054574009,139,2547,0.036701668,0.072446349,0.000320684,3,9355,,,3118.333333,0.899,112.375,125,,,,,,,,3.103631594,,,,,,,,2.830710794,3.194707354,3.205796683,,,,,,,,2.637264926,3.325106551,0.017619693,,,,,284.588,,,,,0.771089608,44067,57149,0.697531385,0.844647831,65499,,,57369.46809,73628.53192,,,,58203,56839.93617,59566.06383,,,,45521,14239.6383,76802.3617,71576,65342.12766,77809.87234,,,,,,0.414096916,658,1589,,,49.70573549,,,,,0.29334799,,65499,,,8.077544427,5,619,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.45454546,,1100,,,17,,0.758832565,4940,6510,,,0.717,,,,,12.02483301,,,,,0.795208071,3153,3965,0.759783978,0.830632164,0.084994753,324,3812,0.061024137,0.10896537,0.856746532,3397,3965,0.82871454,0.884778525,9355,,,,,0.269588455,2522,9355,,,0.212292892,1986,9355,,,0.013468733,126,9355,,,0.020951363,196,9355,,,0.010048103,94,9355,,,0.000320684,3,9355,,,0.077071085,721,9355,,,0.867557456,8116,9355,,,0.009529277,83,8710,0.002957494,0.01610106,0.501229289,4689,9355,,,1,9424,9424,, -27,119,27119,MN,Polk County,2024,1,7012.648681,446,85321,5968.523176,8056.774186,0,,,,2,,,,2,,,,2,,,,2,6691.989814,5594.853421,7789.126207,,,,,2,,0.138,,,0.116,0.165,3.016099463,,,2.377863799,3.863990331,4.141202497,,,3.357719432,5.164910218,0.05489774,153,2787,0.046440975,0.063354504,0,,,,,,,0.053811659,0.024195371,0.083427947,0.065217391,0.033307217,0.097127566,0.052800735,0.043408525,0.062192945,,,,,,,0.183,,,0.145,0.225,0.399,,,0.336,0.478,8.2,0.085637012,0.082,,,0.236,,,0.194,0.282,0.718998461,22427,31192,,,0.205106255,,,0.171872325,0.250520615,0.411764706,7,17,0.284189348,0.52988216,191.8,59,30757,,,13.67240908,100,7314,10.9926169,16.35220126,,,,,,,,,,51.98776758,36.00304034,72.64769434,9.53840913,7.20521175,12.38641765,,,,,,,0.066343308,1614,24328,0.056811393,0.075875223,0.00055272,17,30757,,,1809.235294,0.000455566,14,30731,,,2195.071429,0.002538154,78,30731,,,393.9871795,1642,,,,,,,30769,,1530,0.57,,,,,0.21,,,0.25,0.58,0.56,,,,,0.35,,,0.5,0.56,0.934276999,19603,20982,0.922421771,0.946132227,0.714664545,5390,7542,0.657886465,0.771442626,0.029604238,475,16045,,,0.14,1030,,0.091148936,0.188851064,0.134146342,0,0.576832231,,,,0.607438017,0.228577856,0.986298178,0.424242424,0.293376157,0.555108691,0.083722539,0.055049857,0.112395221,4.732602355,128192,27087,4.213889416,5.251315295,0.189363099,1442,7615,0.144853529,0.23387267,21.45852977,66,30757,,,67.23485455,105,156169,54.37441266,80.09529644,,,,,,,,,,,,,71.35530482,57.798026,87.13704009,,,,6.7,,,,,1,,,,,0.123613312,1560,12620,0.104118871,0.143107754,0.103130016,0.084008623,0.122251409,0.020206022,0.010805253,0.029606791,0.007131537,0.003811198,0.010451876,0.775536108,11609,14969,0.757057015,0.794015201,,,,,,,,,,0.769010043,0.587591143,0.950428943,0.753496194,0.7347931,0.772199288,0.206,,14969,0.178057098,0.233942902,77.3505751,,,76.44865387,78.25249634,,,,,,,,,,80.40773247,65.35822768,95.45723727,77.59332816,76.65384524,78.53281109,,,,383.9871201,446,85321,346.4468886,421.5273515,,,,,,,,,,,,,377.7906672,338.7272185,416.8541159,,,,41.35771469,14,33851,22.61064747,69.39121775,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.097,,,0.083,0.114,0.15,,,0.131,0.177,0.091,,,0.078,0.109,94.7,24,25354,,,0.082,2570,,,,0.085637012,2706.129585,31600,,,15.05036497,14,93021,8.22817458,25.25195507,,,,,,,,,,,,,13.76393599,6.870907253,24.62748347,,,,0.307,,,0.29,0.322,0.072748886,1224,16825,0.060833992,0.084663779,0.051928217,408,7857,0.035247366,0.068609068,0.001171456,36,30731,,,853.6388889,0.843033854,323.725,384,,,,,,,,3.065893349,,,,,,,,2.4912711,3.255432909,3.193990438,,,,,,,,2.599912502,3.377072755,0.090101083,,,,,624.2627429,,,,,0.769000784,47069,61208,0.707860628,0.830140941,69538,,,63044.38298,76031.61702,53920,17815.48936,90024.51064,53679,53297.7234,54060.2766,,,,44042,32109.23404,55974.76596,73241,67357.42553,79124.57447,,,,,,0.371968191,1871,5030,,,53.70688285,,,,,0.276309356,,69538,,,3.822264692,8,2093,,,,,,,,,,,,,,,,,,,,,,,,,,14.90221185,23,156169,9.224704008,22.7796138,14.72763481,,,,,,,,,,,,,15.50755011,9.190757013,24.50861488,,,,8.964647273,14,156169,4.901056084,15.04115485,,,,,,,,,,,,,10.40598195,5.689047166,17.45946953,,,,13.67602411,30,219362,9.227156035,19.52337479,,,,,,,,,,,,,15.786981,10.65140979,22.53689701,,,,21.76470588,,3400,,,74,,0.667837259,15594,23350,,,0.662,,,,,35.97023157,,,,,0.715602951,8925,12472,0.703338514,0.727867387,0.097901513,1171,11961,0.080448712,0.115354314,0.878527903,10957,12472,0.863165264,0.893890541,30731,,,,,0.244476262,7513,30731,,,0.193452865,5945,30731,,,0.027008558,830,30731,,,0.019979825,614,30731,,,0.009859751,303,30731,,,0.000520647,16,30731,,,0.070970681,2181,30731,,,0.856333995,26316,30731,,,0.005566054,162,29105,0.002082556,0.009049552,0.495428069,15225,30731,,,0.465343678,14515,31192,, -27,121,27121,MN,Pope County,2024,1,8180.601467,147,30298,5959.994741,10401.20819,0,,,,2,,,,2,,,,2,,,,2,8433.596922,6091.349488,10775.84436,,,,,2,,0.126,,,0.106,0.149,3.119913631,,,2.432616664,3.905235422,4.638990858,,,3.744082961,5.659923087,0.070294785,62,882,0.053423197,0.087166373,0,,,,,,,,,,,,,0.062126643,0.045773381,0.078479904,,,,,,,0.176,,,0.14,0.214,0.343,,,0.274,0.422,9.3,0.030296219,0.062,,,0.215,,,0.174,0.263,0.649628582,7346,11308,,,0.186570811,,,0.15169233,0.229281597,0,0,3,0,0.420755624,228,26,11403,,,10.8577633,20,1842,6.632203901,16.7689348,,,,,,,,,,,,,11.02941177,6.536728419,17.43122565,,,,,,,0.056249271,482,8569,0.047908845,0.064589696,0.001140051,13,11403,,,877.1538462,0.000262444,3,11431,,,3810.333333,0.001399703,16,11431,,,714.4375,1859,,,,,,,,,1872,0.57,,,,,,,,,0.58,0.25,,,,,,,,,0.25,0.952323036,7830,8222,0.937681067,0.966965004,0.75792039,1866,2462,0.69258184,0.82325894,0.024454014,159,6502,,,0.099,242,,0.06206383,0.13593617,,,,,,,,,,0.305882353,0,0.708488163,0.103083295,0.057810343,0.148356247,4.491117973,135259,30117,3.905175364,5.077060583,0.103071098,245,2377,0.069150218,0.136991978,26.30886609,30,11403,,,78.57704122,44,55996,57.09419844,105.4860102,,,,,,,,,,,,,82.10027429,59.65418498,110.2157862,,,,5.8,,,,,0,,,,,0.099800399,500,5010,0.076680331,0.122920467,0.089156627,0.06554799,0.112765263,0.006786427,0,0.01390769,0.004790419,0.001483808,0.008097031,0.762652705,4370,5730,0.744920295,0.780385115,,,,,,,,,,,,,0.75760823,0.724416308,0.790800152,0.263,,5730,0.229510882,0.296489118,78.66144902,,,76.80858323,80.5143148,,,,,,,,,,,,,78.41126847,76.49046396,80.33207298,,,,336.6190121,147,30298,275.3436576,397.8943667,,,,,,,,,,,,,344.6678492,281.0212139,408.3144845,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.093,,,0.08,0.108,0.149,,,0.127,0.172,0.08,,,0.068,0.094,51.8,5,9644,,,0.062,690,,,,0.030296219,333.1069288,10995,,,,,,,,,,,,,,,,,,,,,,,,,,0.269,,,0.252,0.285,0.063274625,388,6132,0.052551221,0.073998029,0.040344693,103,2553,0.028429799,0.052259586,0.001137258,13,11431,,,879.3076923,0.925,86.025,93,,,,,,,,3.247889024,,,,,,,,,3.248563234,3.644794301,,,,,,,,,3.687158272,0.039146162,,,,,2419.982,,,,,0.787785066,46358,58846,0.728243055,0.847327077,68888,,,62195.40426,75580.59575,83750,2580.978723,164919.0213,,,,,,,,,,71260,68695.91489,73824.08511,,,,,,0.257060101,355,1381,,,,,,,,0.326007432,,68888,,,5.042016807,3,595,,,,,,,,,,,,,,,,,,,,,,,,,,26.90389602,14,55996,13.90163566,46.99569204,25.00178584,,,,,,,,,,,,,28.45671799,14.70400144,49.70815953,,,,,,,,,,,,,,,,,,,,,,,,,,,12.80639295,10,78086,6.1411632,23.5514126,,,,,,,,,,,,,13.35523592,6.404354737,24.56075436,,,,8.181818182,,1100,,,9,,0.800684151,7022,8770,,,0.62,,,,,17.27325813,,,,,0.805391056,3944,4897,0.778278328,0.832503784,0.103134265,487,4722,0.079950084,0.126318446,0.831529508,4072,4897,0.805431471,0.857627545,11431,,,,,0.21590412,2468,11431,,,0.254833348,2913,11431,,,0.004461552,51,11431,,,0.005948736,68,11431,,,0.006736069,77,11431,,,0.000174963,2,11431,,,0.020908057,239,11431,,,0.951885224,10881,11431,,,0.000466461,5,10719,0,0.006744605,0.487096492,5568,11431,,,0.628404669,7106,11308,, -27,123,27123,MN,Ramsey County,2024,1,7136.672494,6226,1541743,6883.605686,7389.739303,0,28756.89065,22003.48027,35510.30103,,7118.468162,6514.680513,7722.255811,,13008.36447,12085.76794,13930.961,,6706.54695,5826.784328,7586.309573,,5793.594662,5493.615305,6093.574019,,,,,2,,0.13,,,0.111,0.151,2.994507448,,,2.488869954,3.524582236,4.910316385,,,4.314188366,5.518082686,0.081161727,4080,50270,0.078774483,0.083548971,0,0.099616858,0.063282632,0.135951084,0.078506036,0.073760957,0.083251115,0.114609818,0.108435608,0.120784029,0.076639965,0.068968201,0.08431173,0.065382034,0.062027561,0.068736508,,,,0.099544937,0.085549475,0.1135404,0.146,,,0.118,0.176,0.319,,,0.288,0.351,8.6,0.052141529,0.08,,,0.198,,,0.17,0.226,0.998665706,551615,552352,,,0.184223362,,,0.163678447,0.205840757,0.324324324,36,111,0.276125709,0.372845014,577.8,3139,543257,,,13.58177032,1651,121560,12.92662308,14.23691756,15.15151515,8.067543696,25.90955235,18.94051495,17.18659872,20.69443117,26.77787533,24.40200751,29.15374315,25.12562814,22.49330636,27.75794992,3.638119213,3.14722064,4.129017786,,,,20.00876296,16.65821355,23.35931237,0.060209787,26921,447120,0.05425234,0.066167234,0.001100768,598,543257,,,908.4565217,0.000956353,513,536413,,,1045.639376,0.00532612,2857,536413,,,187.7539377,2214,,,,,1096,1458,3213,2281,2112,0.48,,,,,0.44,0.26,0.33,0.25,0.5,0.59,,,,,0.39,0.49,0.36,0.38,0.61,0.911926815,335538,367944,0.908027621,0.915826009,0.74904775,120351,160672,0.731893351,0.766202148,0.026968917,7689,285106,,,0.187,22576,,0.153638298,0.220361702,0.432503277,0.248541116,0.616465437,0.304390428,0.265836934,0.342943922,0.331831472,0.284133883,0.379529062,0.205952788,0.164153761,0.247751815,0.04589302,0.036024801,0.055761238,4.495703842,154351,34333,4.343122924,4.648284759,0.242640464,30571,125993,0.224035002,0.261245927,11.72557372,637,543257,,,82.05382775,2248,2739665,78.66182057,85.44583493,326.0302556,241.9859399,429.8302469,39.85604094,33.81110097,45.9009809,112.523381,101.2392749,123.8074872,59.53952897,49.05978619,70.01927175,88.19705331,83.69141587,92.70269075,,,,8.1,,,,,0,,,,,0.169894262,35750,210425,0.162283012,0.177505511,0.12902144,0.12246137,0.135581509,0.043721041,0.039521397,0.047920685,0.008340264,0.006748041,0.009932487,0.657454955,182188,277111,0.648753566,0.666156344,0.614296352,0.509866154,0.718726549,0.637787088,0.622680144,0.652894033,0.641306948,0.595897874,0.686716023,0.629054054,0.602283164,0.655824944,0.744427466,0.740049763,0.74880517,0.267,,277111,0.256889878,0.277110123,78.37561522,,,78.13833936,78.61289108,61.06473125,57.73686724,64.39259525,77.08848781,76.30711761,77.869858,72.98351136,72.05916411,73.90785861,79.96741495,78.36580268,81.56902723,79.68550254,79.40998502,79.96102006,,,,345.6569561,6226,1541743,336.8149958,354.4989163,1251.57697,1009.232277,1493.921663,418.9554527,385.6988178,452.2120877,616.0721599,577.0512202,655.0930996,337.5081608,295.9669336,379.0493879,296.1791413,286.3427331,306.0155495,,,,48.96240074,279,569825,43.21704831,54.70775316,,,,39.14611496,28.76309285,52.0560342,99.0923144,79.67022078,118.514408,39.69223254,25.9282841,58.15831718,29.81662774,23.32967487,37.549108,,,,5.804247389,299,51514,5.146337534,6.462157244,,,,5.3471668,4.143980824,6.79071282,9.797264526,7.886530583,11.70799847,6.605019815,4.456379133,9.429076485,3.076216713,2.384025699,3.906686484,,,,13.08304892,8.293530738,19.6309971,0.085,,,0.073,0.098,0.141,,,0.123,0.158,0.093,,,0.082,0.106,313.8,1418,451877,,,0.08,43790,,,,0.052141529,26521.26738,508640,,,28.20623571,463,1641481,25.63696003,30.77551139,248.0854277,157.2648801,372.2499503,4.745934316,2.452293516,8.29019215,61.07971624,50.45661742,71.70281507,30.39586616,21.50992397,41.72070112,24.98717896,21.87727156,28.09708636,,,,0.282,,,0.271,0.293,0.071758588,23266,324226,0.063418163,0.080099014,0.031042129,3990,128535,0.022701703,0.039382554,0.001826951,980,536413,,,547.3602041,0.773604011,5477.89,7081,,,0.056068901,1608,28679,0.042841731,0.069296071,2.793718186,,,,,,2.528994161,2.408813678,2.396234022,3.538483744,2.844275766,,,,,,2.562042398,2.31966993,2.402947892,3.737013354,0.24224704,,,,,175.60532,,,,,0.901078257,57077,63343,0.872811334,0.929345179,75041,,,71420.06383,78661.93617,33587,15590.74468,51583.25532,77784,71454.80851,84113.19149,44406,41665.57447,47146.42553,59438,52783.53192,66092.46809,87128,85633.87234,88622.12766,,,,,,0.507259366,45280,89264,,,51.50422918,,,,,0.480497328,,75041,,,6.326718218,234,36986,,,4.923467577,188,3818447,4.219669252,5.627265902,,,,3.305256053,1.989980058,5.161566756,23.76893141,19.32702518,28.21083764,4.863204991,2.658759423,8.15963162,1.318923316,0.896144403,1.872106368,,,,12.98071011,364,2739665,11.61414077,14.34727945,13.28629595,,,,12.61610569,9.053535259,17.11517193,6.880073356,4.311705343,10.41651374,12.43644372,7.487551522,19.4210474,13.2744421,11.53913754,15.00974667,,,,10.0742244,276,2739665,8.885686186,11.26276262,,,,5.489155338,3.479653619,8.236428158,26.51074422,21.31776901,32.58620551,9.603149833,5.865853401,14.83128606,7.429643078,6.121927854,8.737358301,,,,5.68293864,217,3818447,4.926803936,6.439073344,,,,4.696942812,3.095314909,6.833805193,8.643247787,6.174862938,11.76965031,5.557948561,3.176847828,9.025760257,5.190601438,4.269528889,6.111673986,,,,8.874538745,,54200,,,481,,0.762257591,295977,388290,,,0.774,,,,,280.1321445,,,,,0.610294558,132415,216969,0.603198786,0.61739033,0.138471069,29505,213077,0.131425208,0.14551693,0.906488945,196680,216969,0.901091178,0.911886713,536413,,,,,0.228398641,122516,536413,,,0.160437946,86061,536413,,,0.131402483,70486,536413,,,0.009845026,5281,536413,,,0.158761999,85162,536413,,,0.000900426,483,536413,,,0.07840414,42057,536413,,,0.59392483,318589,536413,,,0.045438817,23243,511523,0.042015863,0.048861771,0.508321014,272670,536413,,,0.000200959,111,552352,, -27,125,27125,MN,Red Lake County,2024,1,7777.097403,59,10838,4873.865538,11774.61893,1,,,,2,,,,2,,,,2,,,,2,6578.728552,3898.971478,10397.22737,1,,,,2,,0.136,,,0.114,0.161,3.222695375,,,2.518195531,4.023494916,4.82708694,,,3.859541152,5.864365945,0.080645161,25,310,0.050333763,0.110956559,0,,,,,,,,,,,,,0.084558824,0.051493993,0.117623655,,,,,,,0.185,,,0.147,0.224,0.385,,,0.308,0.463,6.6,0.262556481,0.071,,,0.235,,,0.192,0.283,0.547141042,2153,3935,,,0.190032424,,,0.152462853,0.230089417,0.333333333,1,3,0.04092282,0.635504717,305.1,12,3933,,,18.05869075,16,886,10.32210209,29.32618239,,,,,,,,,,,,,16.30434783,8.424694441,28.48041447,,,,,,,0.065153011,198,3039,0.054429607,0.075876415,,0,3933,,,,0,0,3874,,,-3874,,0,3874,,,,1162,,,,,,,,,1162,0.59,,,,,,,,,0.59,0.5,,,,,,,,,0.5,0.950256035,2598,2734,0.934423641,0.96608843,0.714768884,634,887,0.617011518,0.812526249,0.038213628,83,2172,,,0.114,102,,0.071106383,0.156893617,,,,,,,,,,0.237288136,0,0.529980281,0.072772898,0.036597428,0.108948369,4.309905354,126138,29267,3.471653828,5.148156881,0.19412382,185,953,0.120726557,0.267521082,22.8832952,9,3933,,,89.71739022,18,20063,53.17221144,141.7921561,,,,,,,,,,,,,92.51197214,53.89163294,148.1206292,,,,5.8,,,,,0,,,,,0.090379009,155,1715,0.064289654,0.116468363,0.068035191,0.043261272,0.09280911,0.019825073,0.004906716,0.03474343,0.008746356,0,0.022106878,0.746529563,1452,1945,0.698583409,0.794475717,,,,,,,,,,,,,0.679183674,0.617391312,0.740976035,0.323,,1945,0.273657377,0.372342623,81.90044228,,,77.89727648,85.90360807,,,,,,,,,,,,,82.58815155,78.64063862,86.53566449,,,,386.9242854,59,10838,287.1826625,510.1114337,,,,,,,,,,,,,362.91417,264.7120859,485.6077127,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.097,,,0.083,0.112,0.153,,,0.133,0.177,0.086,,,0.073,0.101,,,,,,0.071,280,,,,0.262556481,1073.593449,4089,,,,,,,,,,,,,,,,,,,,,,,,,,0.297,,,0.28,0.312,0.07275321,153,2103,0.059646827,0.085859593,0.047959184,47,980,0.031278333,0.064640035,0.000258131,1,3874,,,3874,,,,,,,,,,,3.450141353,,,,,,,,,3.47743144,3.640590292,,,,,,,,,3.742823031,0.027619244,,,,,6736.977,,,,,0.781007469,48203,61719,0.683770353,0.878244586,74120,,,65435.23404,82804.76596,58824,54873.02128,62774.97872,,,,,,,65938,25877.74468,105998.2553,75430,68688.55319,82171.44681,,,,,,0.298820446,228,763,,,,,,,,0.259228279,,74120,,,4.545454546,1,220,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.5,,400,,,5,,0.728358209,2196,3015,,,0.701,,,,,1.042674855,,,,,0.823565324,1349,1638,0.796383982,0.850746665,0.066413662,105,1581,0.038532337,0.094294988,0.799145299,1309,1638,0.759529561,0.838761037,3874,,,,,0.23515746,911,3874,,,0.235415591,912,3874,,,0.008518327,33,3874,,,0.020392359,79,3874,,,0.003871967,15,3874,,,0.000774393,3,3874,,,0.041300981,160,3874,,,0.907847186,3517,3874,,,0.001626457,6,3689,0,0.012622164,0.485802788,1882,3874,,,1,3935,3935,, -27,127,27127,MN,Redwood County,2024,1,6158.084428,200,40909,4776.236628,7539.932228,0,,,,2,,,,2,,,,2,,,,2,5598.452684,4251.26841,6945.636958,,,,,2,,0.142,,,0.12,0.167,3.177609247,,,2.497036158,3.993637985,4.556417862,,,3.651704468,5.560347493,0.066171004,89,1345,0.052885976,0.079456032,0,,,,,,,,,,,,,0.065963061,0.05153499,0.080391132,,,,,,,0.192,,,0.153,0.233,0.376,,,0.303,0.459,8.3,0.116646649,0.065,,,0.252,,,0.205,0.301,0.459902755,7094,15425,,,0.190650627,,,0.154499028,0.233690944,0.071428571,1,14,0.003307818,0.237195967,169.2,26,15366,,,13.20233344,43,3257,9.55459417,17.7834565,,,,,,,,,,,,,8.890606881,5.635882117,13.34027557,,,,,,,0.068468924,813,11874,0.058937009,0.078000839,0.000455551,7,15366,,,2195.142857,0.0003906,6,15361,,,2560.166667,0.0004557,7,15361,,,2194.428571,1069,,,,,,,,,1085,0.56,,,,,,,,,0.57,0.39,,,,,,,,,0.39,0.930073303,9643,10368,0.918473146,0.941673459,0.646916566,2140,3308,0.591496486,0.702336646,0.026461295,201,7596,,,0.133,504,,0.09606383,0.16993617,0.113207547,0.059160796,0.167254298,0.561643836,0.372306955,0.750980717,,,,0.043650794,0,0.15403269,0.078726968,0.054886642,0.102567295,4.118053626,118567,28792,3.598996775,4.637110477,0.115055714,444,3859,0.087857713,0.142253715,21.47598594,33,15366,,,69.61227278,53,76136,52.1443692,91.05456674,,,,,,,,,,,,,71.33966789,52.41770463,94.8666348,,,,6.3,,,,,0,,,,,0.091054313,570,6260,0.072308793,0.109799833,0.077652733,0.058721915,0.096583552,0.011182109,0.005249359,0.017114859,0.005591054,0,0.011562793,0.780292575,5654,7246,0.763610018,0.796975133,0.821100917,0.756724331,0.885477503,,,,,,,,,,0.773685008,0.747212921,0.800157096,0.196,,7246,0.169437536,0.222562464,79.31088916,,,77.96646832,80.65530999,,,,,,,,,,,,,79.51363419,78.18518551,80.84208287,,,,343.0154152,200,40909,292.3744387,393.6563917,,,,,,,,,,,,,336.5257064,284.172247,388.8791657,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.099,,,0.085,0.115,0.153,,,0.132,0.174,0.088,,,0.074,0.103,79,10,12662,,,0.065,1000,,,,0.116646649,1873.22853,16059,,,,,,,,,,,,,,,,,,,,,,,,,,0.293,,,0.276,0.308,0.080629302,656,8136,0.067522919,0.093735685,0.042882517,169,3941,0.030967624,0.054797411,0.000976499,15,15361,,,1024.066667,0.939772727,186.075,198,,,,,,,,3.146229865,,,,,,,,,3.25343237,3.293260806,,,,,,,,,3.461227029,0.190310128,,,,,368.9299,,,,,0.82999329,45765,55139,0.765894538,0.894092041,66582,,,59815.53192,73348.46809,41691,35445.21277,47936.78723,38750,6240.212766,71259.78723,26125,15556.48936,36693.51064,78750,10444.29787,147055.7021,67993,66000.82979,69985.17021,,,,,,0.348562426,885,2539,,,,,,,,0.288576492,,66582,,,4.048582996,4,988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,19.65004211,21,106870,12.16368577,30.0371767,,,,,,,,,,,,,19.40052381,11.49797995,30.6611917,,,,28.33333333,,1800,,,51,,0.730833701,8284,11335,,,0.711,,,,,17.98177243,,,,,0.800658436,4864,6075,0.792116169,0.809200704,0.087794068,515,5866,0.067367122,0.108221013,0.82617284,5019,6075,0.807061036,0.845284643,15361,,,,,0.249397826,3831,15361,,,0.215220363,3306,15361,,,0.00911399,140,15361,,,0.052665842,809,15361,,,0.02688627,413,15361,,,0.000585899,9,15361,,,0.042965953,660,15361,,,0.855673459,13144,15361,,,0.006235278,90,14434,0.001369186,0.01110137,0.497037953,7635,15361,,,0.701264182,10817,15425,, -27,129,27129,MN,Renville County,2024,1,7107.810996,203,39147,5389.226926,8826.395066,0,,,,2,,,,2,,,,2,,,,2,6929.207931,5062.459088,8795.956773,,,,,2,,0.147,,,0.123,0.173,3.359024805,,,2.65046474,4.152061736,4.53273054,,,3.611356884,5.50661224,0.088065844,107,1215,0.072130794,0.104000893,0,,,,,,,,,,0.103960396,0.06187049,0.146050302,0.087606838,0.069494348,0.105719328,,,,,,,0.187,,,0.15,0.226,0.382,,,0.308,0.464,8.5,0.092988959,0.067,,,0.237,,,0.193,0.286,0.550499219,8105,14723,,,0.181543698,,,0.145856825,0.222174016,0.2,3,15,0.07369192,0.354373303,314.9,46,14608,,,24.38209753,73,2994,19.11167232,30.65682705,,,,,,,,,,64.453125,44.36656557,90.51615092,15.67944251,10.98168877,21.70695753,,,,,,,0.075969401,864,11373,0.065245997,0.086692806,0.000273823,4,14608,,,3652,0.000619621,9,14525,,,1613.888889,0.00020654,3,14525,,,4841.666667,2013,,,,,,,,,2022,0.54,,,,,0.38,,,,0.55,0.31,,,,,,,,,0.32,0.913712505,9382,10268,0.899826885,0.927598124,0.625956535,2045,3267,0.577715203,0.674197867,0.035969451,292,8118,,,0.139,456,,0.10087234,0.17712766,,,,,,,,,,0.368983957,0.214109039,0.523858875,0.082712662,0.055160923,0.110264401,4.074084025,121314,29777,3.677873038,4.470295011,0.152944624,522,3413,0.111277828,0.194611419,27.3822563,40,14608,,,83.77279719,61,72816,64.07955197,107.6096626,,,,,,,,,,,,,88.30579034,66.70524502,114.6724139,,,,6.3,,,,,0,,,,,0.088723051,535,6030,0.070962948,0.106483155,0.08083682,0.062379692,0.099293948,0.008789386,0.003078289,0.014500484,0.006467662,0.00137169,0.011563633,0.802252638,5627,7014,0.777434528,0.827070748,,,,,,,,,,,,,0.748111295,0.72090853,0.775314061,0.253,,7014,0.226410826,0.279589174,78.09614461,,,76.64835836,79.54393086,,,,,,,,,,,,,78.18874493,76.64204303,79.73544684,,,,358.2956628,203,39147,305.2921696,411.299156,,,,,,,,,,,,,355.5047804,300.0450701,410.9644906,,,,67.81959986,10,14745,32.52213426,124.7226588,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.101,,,0.086,0.117,0.151,,,0.13,0.174,0.088,,,0.074,0.103,57.4,7,12203,,,0.067,980,,,,0.092988959,1462.716317,15730,,,,,,,,,,,,,,,,,,,,,,,,,,0.303,,,0.288,0.317,0.085799552,690,8042,0.072693169,0.098905935,0.053428571,187,3500,0.03674772,0.070109423,0.000481928,7,14525,,,2075,,,,,,,,,,,3.053219994,,,,,,,,2.432559219,3.152242865,3.336650204,,,,,,,,2.805758031,3.443836217,0.089535748,,,,,-2386.141,,,,,0.789331125,45752,57963,0.7552725,0.82338975,66568,,,59627.57447,73508.42553,37500,15468.17021,59531.82979,,,,,,,52528,34065.87234,70990.12766,69428,66799.57447,72056.42553,,,,,,0.343085106,645,1880,,,,,,,,0.288637183,,66568,,,6.703910615,6,895,,,,,,,,,,,,,,,,,,,,,,,,,,21.63173958,15,72816,11.51799028,36.99093348,20.59986816,,,,,,,,,,,,,25.33064169,13.48749988,43.31616875,,,,15.10656999,11,72816,7.541145308,27.02982657,,,,,,,,,,,,,,,,,,,18.56048765,19,102368,11.17462602,28.9845006,,,,,,,,,,,,,20.08502661,11.90365969,31.74300123,,,,22,,1500,,,33,,0.741944318,8128,10955,,,0.697,,,,,15.86745272,,,,,0.788121171,4631,5876,0.768091089,0.808151253,0.086879746,492,5663,0.070631335,0.103128157,0.806671205,4740,5876,0.781754161,0.831588249,14525,,,,,0.230086059,3342,14525,,,0.219552496,3189,14525,,,0.006746988,98,14525,,,0.016936317,246,14525,,,0.008950086,130,14525,,,0.000344234,5,14525,,,0.101755594,1478,14525,,,0.858450947,12469,14525,,,0.005767013,80,13872,0.000505844,0.011028181,0.484612737,7039,14525,,,1,14723,14723,, -27,131,27131,MN,Rice County,2024,1,5539.564577,637,187746,4863.701001,6215.428153,0,,,,2,,,,2,,,,2,4629.424731,2934.658163,6946.410123,1,5894.571528,5081.266423,6707.876633,,,,,2,,0.131,,,0.11,0.155,2.844036244,,,2.263427,3.548694974,4.418020831,,,3.662455945,5.289612899,0.058279743,290,4976,0.051770422,0.064789063,0,,,,,,,0.053097345,0.037471018,0.068723672,0.057233704,0.039080274,0.075387135,0.060677467,0.052646695,0.068708238,,,,,,,0.173,,,0.139,0.214,0.375,,,0.316,0.44,9,0.06332842,0.057,,,0.222,,,0.183,0.267,0.844151005,56640,67097,,,0.192774344,,,0.15792716,0.231207183,0.285714286,6,21,0.169385198,0.406827936,243.8,164,67262,,,6.353861193,130,20460,5.26161103,7.446111355,,,,,,,13.18458418,7.020235792,22.54604049,23.70872142,17.90931337,30.78774683,3.678644157,2.778808263,4.777025423,,,,,,,0.063621533,3159,49653,0.054089619,0.073153448,0.0008623,58,67262,,,1159.689655,0.000576131,39,67693,,,1735.717949,0.002023843,137,67693,,,494.1094891,2675,,,,,,,,,2682,0.47,,,,,,0.19,,0.16,0.49,0.55,,,,,,0.35,0.23,0.49,0.56,0.924694945,39785,43025,0.915001686,0.934388204,0.618602022,9850,15923,0.575557594,0.66164645,0.025885995,970,37472,,,0.107,1485,,0.073638298,0.140361702,0.801801802,0.366854613,1,,,,0.318082789,0.102436312,0.533729265,0.235463719,0.137398884,0.333528555,0.070829544,0.044602067,0.097057022,4.172892762,145104,34773,3.864381118,4.481404405,0.183279967,2633,14366,0.130553087,0.236006846,10.40706491,70,67262,,,62.01150958,207,333809,53.56371777,70.45930138,,,,,,,,,,,,,71.02900044,61.00795296,81.05004792,,,,7.4,,,,,0,,,,,0.116885918,2710,23185,0.100673635,0.133098201,0.10100349,0.085155856,0.116851125,0.020487384,0.011977526,0.028997242,0.0064697,0.000977382,0.011962018,0.702635965,22764,32398,0.68183859,0.72343334,,,,0.325581395,0.199961943,0.451200848,0.592162554,0.392727248,0.791597861,0.698128898,0.591182696,0.8050751,0.710252722,0.69020927,0.730296175,0.323,,32398,0.297501014,0.348498986,79.84943573,,,79.1936248,80.50524665,,,,,,,,,,86.09154679,75.05037175,97.13272184,79.54896542,78.81590903,80.28202181,,,,275.0712127,637,187746,252.9157586,297.2266669,,,,,,,,,,290.2619652,181.9056283,439.4601036,283.4002896,258.8097009,307.9908782,,,,35.4037443,25,70614,22.91143661,52.26291061,,,,,,,,,,,,,37.37508852,22.5022448,58.36583046,,,,6.359300477,32,5032,4.349756819,8.977434833,,,,,,,,,,,,,5.732301519,3.501438689,8.853074779,,,,,,,0.092,,,0.079,0.107,0.142,,,0.123,0.163,0.086,,,0.073,0.101,106.7,61,57193,,,0.057,3810,,,,0.06332842,4062.011518,64142,,,10.92798458,22,201318,6.848509757,16.54509999,,,,,,,,,,,,,7.996604519,4.257855121,13.67443727,,,,0.287,,,0.273,0.3,0.075581232,2682,35485,0.063666338,0.087496125,0.03482687,520,14931,0.024103466,0.045550275,0.000620448,42,67693,,,1611.738095,0.820486787,589.93,719,,,,,,,,3.082331243,,,,,,,2.219567239,2.468457983,3.412475298,3.167477686,,,,,,,2.279106462,2.474773104,3.514093399,0.127661422,,,,,-387.8225,,,,,0.818143142,50000,61114,0.747724511,0.888561774,77962,,,71032.29787,84891.70213,,,,,,,33783,25870.31915,41695.68085,58155,39012.53192,77297.46809,83908,79575.74468,88240.25532,,,,,,0.381018842,3276,8598,,,60.62737042,,,,,0.288063416,,77962,,,6.172839506,23,3726,,,,,,,,,,,,,,,,,,,,,,,,,,11.22417173,35,333809,7.726203361,15.76291021,10.48503785,,,,,,,,,,,,,12.81057721,8.643242648,18.28789553,,,,6.890167731,23,333809,4.367775296,10.33863464,,,,,,,,,,,,,8.096569999,5.074077312,12.25830428,,,,8.390146096,39,464831,5.966214063,11.46960591,,,,,,,,,,,,,9.703085581,6.831867704,13.37442533,,,,10.29850746,,6700,,,69,,0.730522006,35686,48850,,,0.759,,,,,47.58107123,,,,,0.755039759,17566,23265,0.732398558,0.777680961,0.105617089,2403,22752,0.087702067,0.12353211,0.903073286,21010,23265,0.888356457,0.917790115,67693,,,,,0.208943318,14144,67693,,,0.167875556,11364,67693,,,0.067362947,4560,67693,,,0.007312425,495,67693,,,0.022040684,1492,67693,,,0.001462485,99,67693,,,0.092166103,6239,67693,,,0.796241857,53900,67693,,,0.025064591,1591,63476,0.018872369,0.031256813,0.482871198,32687,67693,,,0.321877282,21597,67097,, -27,133,27133,MN,Rock County,2024,1,7713.168732,135,25528,5481.774112,9944.563352,0,,,,2,,,,2,,,,2,,,,2,8152.819057,5709.132523,10596.50559,,,,,2,,0.128,,,0.106,0.152,3.033371405,,,2.341044274,3.824707156,4.500239084,,,3.584192681,5.545818993,0.065502183,45,687,0.047001203,0.084003164,0,,,,,,,,,,,,,0.056761269,0.038231094,0.075291444,,,,,,,0.175,,,0.137,0.214,0.353,,,0.28,0.433,9.3,0.04217364,0.056,,,0.216,,,0.174,0.262,0.576669415,5596,9704,,,0.196515605,,,0.15981161,0.24094163,0.285714286,2,7,0.086061846,0.500925625,144.6,14,9680,,,8.640291041,19,2199,5.202019629,13.49288475,,,,,,,,,,,,,6.636038795,3.533411175,11.34782844,,,,,,,0.052974948,406,7664,0.044634522,0.061315373,0.000929752,9,9680,,,1075.555556,0.000314564,3,9537,,,3179,0.001887386,18,9537,,,529.8333333,2273,,,,,,,,,2302,0.57,,,,,,,,,0.57,0.6,,,,,,,,,0.61,0.939734895,6097,6488,0.92482843,0.95464136,0.75403784,1634,2167,0.65662171,0.851453971,0.016805325,101,6010,,,0.102,229,,0.061489362,0.142510638,0.930232558,0.059632683,1,,,,,,,0.274193548,0.003327566,0.545059531,0.072041985,0.039840492,0.104243477,4.627895165,136671,29532,3.858958101,5.396832228,0.117963576,285,2416,0.06931889,0.166608262,23.76033058,23,9680,,,72.03389831,34,47200,49.88556861,100.6601527,,,,,,,,,,,,,72.83486969,49.81899695,102.8211041,,,,5.6,,,,,0,,,,,0.077694236,310,3990,0.055086159,0.100302312,0.052578362,0.033768945,0.071387779,0.021303258,0.005136162,0.037470355,0.006015038,0.000944056,0.011086019,0.806267806,3962,4914,0.780530312,0.8320053,,,,,,,,,,,,,0.758226815,0.721080555,0.795373076,0.307,,4914,0.257801444,0.356198557,77.29785689,,,75.49565412,79.10005966,,,,,,,,,,,,,76.97424164,75.05296501,78.89551826,,,,387.9691036,135,25528,318.4851065,457.4531007,,,,,,,,,,,,,397.9320882,325.2706061,470.5935703,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.092,,,0.078,0.107,0.148,,,0.126,0.17,0.082,,,0.069,0.097,86.4,7,8100,,,0.056,540,,,,0.04217364,408.5360531,9687,,,,,,,,,,,,,,,,,,,,,,,,,,0.288,,,0.272,0.305,0.060202551,321,5332,0.049479146,0.070925955,0.037743507,93,2464,0.025828613,0.0496584,0.000733983,7,9537,,,1362.428571,0.931889764,118.35,127,,,,,,,,3.576547499,,,,,,,,,3.591260074,3.708972553,,,,,,,,,3.683441328,0.029977426,,,,,2323.6835,,,,,0.902336075,49596,54964,0.775135392,1.029536757,69835,,,60833.29787,78836.70213,,,,,,,,,,45817,10749.08511,80884.91489,75948,69273.2766,82622.7234,,,,,,0.188741722,285,1510,,,,,,,,0.275134245,,69835,,,1.550387597,1,645,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,19.58893376,13,66364,10.43028222,33.49767331,,,,,,,,,,,,,19.36170899,10.00447757,33.82100915,,,,6.666666667,,1200,,,8,,0.748571429,5240,7000,,,0.768,,,,,2.822583736,,,,,0.771093551,3025,3923,0.745576455,0.796610647,0.078830593,302,3831,0.054278679,0.103382506,0.881468264,3458,3923,0.858874712,0.904061816,9537,,,,,0.240012583,2289,9537,,,0.205620216,1961,9537,,,0.009856349,94,9537,,,0.009017511,86,9537,,,0.008178673,78,9537,,,0.000838838,8,9537,,,0.034602076,330,9537,,,0.925238545,8824,9537,,,0.000767628,7,9119,0,0.007005192,0.502883506,4796,9537,,,0.504534213,4896,9704,, -27,135,27135,MN,Roseau County,2024,1,8340.252176,223,41939,6574.586821,10105.91753,0,,,,2,,,,2,,,,2,,,,2,8056.901158,6230.047589,9883.754727,,,,,2,,0.129,,,0.107,0.153,3.04219424,,,2.370865607,3.812179486,4.207866026,,,3.358832087,5.126665884,0.065108514,78,1198,0.051137525,0.079079503,0,,,,,,,,,,,,,0.065402844,0.050483821,0.080321867,,,,,,,0.182,,,0.142,0.226,0.358,,,0.284,0.432,8.7,0.09046139,0.059,,,0.227,,,0.18,0.275,0.595003588,9122,15331,,,0.190539534,,,0.153370386,0.230321239,0,0,6,0,0.28246769,104.9,16,15258,,,9.207009207,31,3367,6.255716062,13.06861464,,,,,,,,,,,,,8.65950814,5.603977086,12.78314226,,,,,,,0.056260163,692,12300,0.047919737,0.064600588,0.000524315,8,15258,,,1907.25,0.000588543,9,15292,,,1699.111111,0.000392362,6,15292,,,2548.666667,1705,,,,,,,,,1737,0.57,,,,,,,,,0.58,0.53,,,,,,0.13,,,0.53,0.929366968,9763,10505,0.914735076,0.94399886,0.647148058,2133,3296,0.588341132,0.705954985,0.025528169,203,7952,,,0.12,427,,0.085446809,0.154553192,,,,0.028985507,0,0.32270096,0.060606061,0,0.468223833,0.174757282,0,0.416419729,0.143193277,0.097715234,0.188671321,3.88775448,127565,32812,3.501899693,4.273609267,0.214246575,782,3650,0.16369243,0.264800721,14.41866562,22,15258,,,72.352237,55,76017,54.5056066,94.17638157,,,,,,,,,,,,,73.39185494,54.64505661,96.49673532,,,,6,,,,,1,,,,,0.113636364,675,5940,0.089050898,0.13822183,0.081643002,0.064048658,0.099237346,0.00993266,0.002870215,0.016995105,0.023569024,0.006270958,0.040867089,0.720489691,5591,7760,0.69902478,0.741954602,,,,,,,,,,,,,0.731546336,0.700747864,0.762344809,0.153,,7760,0.126384144,0.179615856,77.09047328,,,75.6088142,78.57213235,,,,,,,,,,,,,77.16778728,75.63692216,78.6986524,,,,391.8574184,223,41939,336.819256,446.8955808,,,,,,,,,,,,,383.9693296,327.6127713,440.3258878,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.093,,,0.078,0.108,0.147,,,0.126,0.17,0.085,,,0.071,0.099,,,,,,0.059,910,,,,0.09046139,1413.82106,15629,,,,,,,,,,,,,,,,,,,,,,,,,,0.3,,,0.284,0.314,0.063457581,555,8746,0.052734176,0.074180985,0.039519359,148,3745,0.027604466,0.051434253,0.000653937,10,15292,,,1529.2,0.846966527,202.425,239,,,,,,,,3.369799881,,,,,,,,,3.364760751,3.27399538,,,,,,,,,3.314947396,0.074858433,,,,,2582.997,,,,,0.812892648,47099,57940,0.762674103,0.863111192,71794,,,62972.21277,80615.78723,,,,51667,3507,99827,153125,107097.766,199152.234,18229,8065.595745,28392.40426,70375,67576.19149,73173.80851,,,,,,0.213182674,566,2655,,,,,,,,0.312811656,,71794,,,1.165501166,1,858,,,,,,,,,,,,,,,,,,,,,,,,,,26.56923452,18,76017,15.47755821,42.53991826,23.67891393,,,,,,,,,,,,,26.38587398,14.76797337,43.51948649,,,,15.78594262,12,76017,8.156826906,27.5748649,,,,,,,,,,,,,15.82961577,7.90208716,28.32355521,,,,,,,,,,,,,,,,,,,,,,,,,,,10,,1700,,,17,,0.741938326,8421,11350,,,0.61,,,,,18.60387445,,,,,0.803703069,4688,5833,0.77821991,0.829186228,0.113227513,642,5670,0.090506996,0.135948031,0.802503,4681,5833,0.778947214,0.826058787,15292,,,,,0.235809574,3606,15292,,,0.1942192,2970,15292,,,0.006343186,97,15292,,,0.021579911,330,15292,,,0.027857703,426,15292,,,0.000196181,3,15292,,,0.019814282,303,15292,,,0.907271776,13874,15292,,,0.005671601,82,14458,0,0.011428529,0.477112216,7296,15292,,,1,15331,15331,, -27,137,27137,MN,St. Louis County,2024,1,7826.322105,2881,548163,7356.000391,8296.643819,0,24054.2776,18796.68712,29311.86808,,,,,2,15893.31453,11454.50316,21483.14415,,,,,2,7367.174414,6885.383886,7848.964942,,,,,2,,0.136,,,0.114,0.16,3.227426217,,,2.617485741,3.915857721,5.135474962,,,4.410851838,5.881417112,0.071947397,941,13079,0.067518836,0.076375958,0,0.06763285,0.043443276,0.091822425,0.093333333,0.046779799,0.139886867,0.154639175,0.1186625,0.190615851,0.079310345,0.048209039,0.110411651,0.067034139,0.062412465,0.071655813,,,,0.101083033,0.075981507,0.126184558,0.183,,,0.146,0.221,0.346,,,0.304,0.389,8.1,0.091498136,0.085,,,0.224,,,0.186,0.262,0.81016426,162220,200231,,,0.211213357,,,0.181101727,0.24164249,0.402439024,33,82,0.348309029,0.455321483,391.6,780,199182,,,10.89259981,514,47188,9.95091393,11.8342857,25.4724733,17.30730976,36.15614257,,,,44.05286344,31.4720115,59.98749666,17.56954612,11.25713972,26.14209194,8.445655643,7.553151543,9.338159743,,,,35.42914172,27.67045362,44.68904147,0.051839639,7955,153454,0.045882192,0.057797086,0.001235051,246,199182,,,809.6829268,0.000977287,195,199532,,,1023.241026,0.003448069,688,199532,,,290.0174419,4064,,,,,4801,,336,13510,4026,0.45,,,,,0.43,0.2,0.24,,0.46,0.48,,,,,0.52,0.41,0.3,0.31,0.48,0.948941307,130506,137528,0.943937058,0.953945555,0.770663891,35533,46107,0.742160888,0.799166893,0.032704641,3279,100261,,,0.135,4827,,0.09687234,0.17312766,0.46875,0.356097256,0.581402744,0.010489511,0,0.216039301,0.355392157,0.201925802,0.508858512,0.148773006,0.044945882,0.25260013,0.117439236,0.099499898,0.135378574,4.614156408,127443,27620,4.374734944,4.853577873,0.228339472,8494,37199,0.201931249,0.254747694,14.65995923,292,199182,,,95.02841821,947,996544,88.97592122,101.0809152,258.4575622,195.2360649,335.6286427,,,,153.1393568,98.11927549,227.8592241,,,,92.53717499,86.2717534,98.80259658,,,,6.1,,,,,0,,,,,0.13481387,11625,86230,0.125983875,0.143643865,0.111579687,0.103875647,0.119283728,0.015539835,0.012455024,0.018624646,0.014670068,0.011557476,0.017782661,0.771091551,73411,95204,0.760352572,0.78183053,0.53992674,0.456497076,0.623356404,0.670953101,0.560851109,0.781055094,0.556415929,0.415764357,0.697067502,0.760601181,0.66470869,0.856493672,0.791908611,0.781750213,0.802067009,0.197,,95204,0.186544723,0.207455277,77.66377642,,,77.26918671,78.05836614,66.05501982,62.96973782,69.14030183,,,,72.42752622,64.41657201,80.43848042,107.4688359,67.2210636,147.7166081,77.98364731,77.57843342,78.38886121,,,,374.3088039,2881,548163,359.4856638,389.131944,1005.807518,824.8851779,1186.729857,,,,856.5423578,631.5467181,1135.6509,,,,359.1308489,344.1239685,374.1377294,,,,44.79885315,80,178576,35.52270439,55.75605063,,,,,,,,,,,,,40.44475975,30.9370365,51.95298589,,,,5.966767372,79,13240,4.723945918,7.436372445,,,,,,,,,,,,,5.518570428,4.24062104,7.060648851,,,,,,,0.095,,,0.081,0.11,0.162,,,0.141,0.186,0.088,,,0.075,0.102,92.5,160,173059,,,0.085,16970,,,,0.091498136,18320.30578,200226,,,27.81547948,166,596790,23.58403567,32.04692329,176.8278619,112.093696,265.3286146,,,,,,,,,,23.44384553,19.36644794,27.52124312,,,,0.317,,,0.3,0.332,0.060038231,7004,116659,0.051697806,0.068378657,0.027923751,1084,38820,0.020774815,0.035072687,0.002170078,433,199532,,,460.812933,0.823399158,1563.635,1899,,,0.033490805,397,11854,0.018690173,0.048291437,3.190388605,,,,,,,2.155025511,3.171920915,3.268184718,3.321513137,,,,,,,1.955258398,3.128463123,3.432997502,0.087561195,,,,,2672.4171,,,,,0.768786038,49599,64516,0.730390545,0.80718153,63141,,,59082.78723,67199.21277,35911,17251.08511,54570.91489,66172,43552.76596,88791.23404,35030,25816.21277,44243.78723,58056,38150.97872,77961.02128,67907,65960.10638,69853.89362,,,,,,0.302080257,7159,23699,,,71.28882365,,,,,0.355680144,,63141,,,7.693865155,76,9878,,,2.290696551,32,1396955,1.566834745,3.233780049,,,,,,,,,,,,,1.966512649,1.2726233,2.9029606,,,,22.0731174,224,996544,19.04213682,25.10409798,22.47768287,61.79049155,32.90083438,105.6636224,,,,,,,,,,21.10731298,17.99885134,24.21577462,,,,12.94473701,129,996544,10.71088475,15.17858928,,,,,,,,,,,,,12.91986811,10.57876134,15.26097488,,,,10.73764008,150,1396955,9.019259784,12.45602038,,,,,,,,,,,,,10.38318679,8.611855588,12.15451799,,,,18.50574713,,17400,,,322,,0.747349006,119531,159940,,,0.661,,,,,55.43704029,,,,,0.718906749,61629,85726,0.707436787,0.730376712,0.11800036,9843,83415,0.107888121,0.128112598,0.861990528,73895,85726,0.85412496,0.869856096,199532,,,,,0.183704869,36655,199532,,,0.214231301,42746,199532,,,0.015280757,3049,199532,,,0.023956057,4780,199532,,,0.011386645,2272,199532,,,0.000526231,105,199532,,,0.019575807,3906,199532,,,0.905934888,180763,199532,,,0.003216548,613,190577,0.002134083,0.004299012,0.495960548,98960,199532,,,0.392876228,78666,200231,, -27,139,27139,MN,Scott County,2024,1,4283.759197,1060,432596,3910.42059,4657.097805,0,13032.32019,6939.161631,22285.66443,1,3788.341199,2555.977899,5408.09262,,5253.384389,3679.405841,7272.898367,,4116.519566,2777.398464,5876.587644,,4147.783159,3727.51463,4568.051687,,,,,2,,0.103,,,0.085,0.123,2.502807805,,,1.970387825,3.02934936,3.927105952,,,3.264722685,4.540782755,0.065601966,801,12210,0.061210367,0.069993564,0,,,,0.095744681,0.076934412,0.11455495,0.082585278,0.066421323,0.098749234,0.055819477,0.04031274,0.071326215,0.060426673,0.055490942,0.065362403,,,,0.108786611,0.069310379,0.148262843,0.124,,,0.097,0.156,0.333,,,0.287,0.38,9.8,0.042730248,0.032,,,0.181,,,0.147,0.216,0.951420545,143596,150928,,,0.200584229,,,0.170613794,0.231798078,0.230769231,9,39,0.148393644,0.320454524,274.7,421,153268,,,4.935860928,182,36873,4.218755034,5.652966822,,,,,,,10.89233347,7.115233857,15.95979224,19.84843017,14.95255394,25.83546011,2.629944844,2.057769869,3.311980277,,,,12.31527094,7.522487429,19.01993713,0.041422719,5561,134250,0.035465272,0.047380166,0.000489339,75,153268,,,2043.573333,0.000465959,72,154520,,,2146.111111,0.001261973,195,154520,,,792.4102564,2232,,,,,,3013,,,2214,0.51,,,,,,0.36,0.28,0.16,0.52,0.56,,,,,,0.49,0.28,0.28,0.57,0.949051375,93492,98511,0.941191556,0.956911194,0.78610945,31545,40128,0.746756652,0.825462248,0.022649035,1908,84242,,,0.05,1936,,0.03212766,0.06787234,0.084507042,0.004146088,0.164867996,0.007032967,0,0.033043189,0.370104439,0.256879842,0.483329036,0.140180879,0.056284745,0.224077012,0.030740821,0.011426748,0.050054895,3.845576962,208188,54137,3.552606414,4.13854751,0.160412875,6434,40109,0.131726064,0.189099686,7.176971057,110,153268,,,50.79217023,379,746178,45.6784939,55.90584656,,,,,,,31.10984367,16.07491019,54.34263617,27.13704206,13.54671362,48.55566427,55.37191469,49.39759247,61.34623692,,,,6.8,,,,,1,,,,,0.10181242,5140,50485,0.089323504,0.114301335,0.075581164,0.063796908,0.08736542,0.026740616,0.019997294,0.033483939,0.00584332,0.001779568,0.009907071,0.740100317,61677,83336,0.724201558,0.755999076,,,,0.554328733,0.410815737,0.697841729,0.683877766,0.625369463,0.742386069,0.59031556,0.519747535,0.660883586,0.72045996,0.701418898,0.739501022,0.414,,83336,0.387304256,0.440695744,81.57203526,,,81.10401906,82.04005145,,,,83.24890513,80.9573283,85.54048196,88.86609886,71.80297507,105.9292227,85.38455242,78.20590224,92.56320261,81.59482484,81.09856506,82.09108463,,,,220.8358262,1060,432596,207.3593565,234.3122959,539.7192547,329.6745423,833.552615,186.2339328,139.5019953,243.5985694,255.0787541,176.6494524,356.4469917,232.0927756,155.4361744,333.3239407,218.1245445,203.5451951,232.7038939,,,,26.19664569,46,175595,19.17923711,34.94265424,,,,,,,,,,,,,24.43850563,16.60477889,34.68850799,,,,3.32468375,41,12332,2.38585046,4.510308917,,,,,,,,,,,,,3.159729789,2.11612063,4.537899045,,,,,,,0.077,,,0.065,0.09,0.123,,,0.106,0.142,0.073,,,0.062,0.085,105.1,132,125616,,,0.032,4730,,,,0.042730248,5551.855624,129928,,,12.14208447,55,452970,9.147079712,15.80459191,,,,,,,,,,,,,12.8327447,9.395181976,17.11708309,,,,0.273,,,0.258,0.287,0.04823257,4541,94148,0.041083634,0.055381506,0.026381969,1112,42150,0.019233033,0.033530905,0.000427129,66,154520,,,2341.212121,0.899460038,1890.665,2102,,,0.03937097,348,8839,0.013832428,0.064909511,3.271414668,,,,,,3.432080865,2.798401992,2.677237421,3.399286934,3.568195576,,,,,,3.764389152,2.716291132,2.817682492,3.748098891,0.098570908,,,,,2134.5152,,,,,0.794124528,64498,81219,0.753147748,0.835101307,115687,,,104938.5745,126435.4255,,,,119482,99344.6383,139619.3617,80433,43869.76596,116996.234,81031,58566.65957,103495.3404,120739,116449.6383,125028.3617,,,,,,0.199024907,5266,26459,,,51.42457846,,,,,0.311677198,,115687,,,5.573905863,54,9688,,,1.357223044,14,1031518,0.742006468,2.277189649,,,,,,,,,,,,,,,,,,,9.769688878,71,746178,7.601401092,12.36416655,9.515155901,,,,,,,,,,,,,9.016066831,6.733629955,11.82337212,,,,4.958602371,37,746178,3.491313677,6.834780192,,,,,,,,,,,,,4.698223065,3.121935107,6.790240439,,,,5.719725686,59,1031518,4.354120202,7.378029406,,,,,,,,,,,,,6.379101582,4.778384827,8.344021931,,,,9.583333333,,19200,,,184,,0.854651445,87965,102925,,,0.811,,,,,64.16644743,,,,,0.834572,44244,53014,0.81856178,0.85058222,0.083994747,4413,52539,0.072202501,0.095786992,0.936846871,49666,53014,0.924869939,0.948823802,154520,,,,,0.256206316,39589,154520,,,0.12597722,19466,154520,,,0.067046337,10360,154520,,,0.010950039,1692,154520,,,0.069188455,10691,154520,,,0.001158426,179,154520,,,0.059875744,9252,154520,,,0.772877297,119425,154520,,,0.020620518,2927,141946,,,0.497217189,76830,154520,,,0.181020089,27321,150928,, -27,141,27141,MN,Sherburne County,2024,1,5242.950523,920,281941,4746.330051,5739.570996,0,,,,2,,,,2,,,,2,,,,2,5114.771759,4597.079974,5632.463544,,,,,2,,0.112,,,0.092,0.134,2.866393565,,,2.269648942,3.60713241,3.979903046,,,3.280495869,4.771801621,0.059805452,498,8327,0.054712249,0.064898656,0,,,,,,,0.077302632,0.056073557,0.098531706,0.063197026,0.03411984,0.092274213,0.057455157,0.052055774,0.06285454,,,,0.08,0.032440205,0.127559795,0.16,,,0.126,0.197,0.382,,,0.328,0.44,9.6,0.038695809,0.041,,,0.192,,,0.156,0.23,0.850632312,82667,97183,,,0.204436143,,,0.170895289,0.241629916,0.280701754,16,57,0.211839682,0.351834237,319,316,99074,,,6.939090208,162,23346,5.870524833,8.007655583,,,,,,,18.93491124,10.82293782,30.74910958,13.17233809,6.806339307,23.00942376,5.959475566,4.893190095,7.025761038,,,,13.51351351,6.982629627,23.60538857,0.044712073,3824,85525,0.037563136,0.051861009,0.000373458,37,99074,,,2677.675676,0.000406649,41,100824,,,2459.121951,0.00224153,226,100824,,,446.1238938,2382,,,,,,,,10572,2358,0.49,,,,,,,,,0.49,0.51,,,,,,0.33,0.38,0.41,0.51,0.944025549,60597,64190,0.932546035,0.955505063,0.699672546,18803,26874,0.656042404,0.743302688,0.028800151,1529,53090,,,0.063,1609,,0.041553192,0.084446809,,,,0.029569893,0,0.199836878,0.140765766,0,0.330392007,0.084848485,0,0.173088853,0.045474107,0.023436485,0.067511729,3.355236908,161454,48120,3.107229644,3.603244172,0.175549331,4450,25349,0.131226355,0.219872308,8.175707047,81,99074,,,60.1158259,292,485729,53.22052118,67.01113063,,,,,,,,,,,,,62.00702138,54.63795466,69.37608811,,,,6.6,,,,,0,,,,,0.096218359,3155,32790,0.079580823,0.112855895,0.077910174,0.062522702,0.093297647,0.014181153,0.007875346,0.020486959,0.010978957,0.004697635,0.017260279,0.781004338,41230,52791,0.758214797,0.803793879,,,,,,,,,,,,,0.728745931,0.707740764,0.749751099,0.509,,52791,0.477274149,0.540725852,79.39721671,,,78.87114859,79.92328483,,,,,,,88.94667331,65.96269573,111.9306509,94.72349617,69.79197167,119.6550207,79.36694013,78.83077465,79.90310561,,,,286.983978,920,281941,268.2145082,305.7534479,,,,,,,,,,,,,285.3344534,266.0499264,304.6189803,,,,42.94494994,48,111771,31.66421596,56.93877319,,,,,,,,,,,,,37.53479789,26.28891099,51.9639817,,,,3.448685932,29,8409,2.309639094,4.952888267,,,,,,,,,,,,,3.149821967,1.996716932,4.726279498,,,,,,,0.083,,,0.071,0.097,0.138,,,0.119,0.159,0.075,,,0.063,0.087,78.9,64,81127,,,0.041,3930,,,,0.038695809,3424.540383,88499,,,13.89251261,41,295123,9.969506907,18.84676205,,,,,,,,,,,,,13.5928562,9.520269372,18.81824255,,,,0.269,,,0.254,0.283,0.052083854,3128,60057,0.043743428,0.060424279,0.028479713,763,26791,0.020139288,0.036820139,0.00057526,58,100824,,,1738.344828,0.885553423,1384.12,1563,,,0.05926202,318,5366,0.020889646,0.097634394,3.191728372,,,,,,,2.248895984,2.907884736,3.285990085,3.367092472,,,,,,,2.145042488,3.061747885,3.500050301,0.095576522,,,,,3719.812667,,,,,0.802094003,56384,70296,0.762600302,0.841587703,97999,,,90466.40426,105531.5957,,,,66250,14130.68085,118369.3192,75175,22619.59575,127730.4043,88333,50431.7234,126234.2766,101041,96651.55319,105430.4468,,,,,,0.170529077,2730,16009,,,72.97009704,,,,,0.249849488,,97999,,,4.728132388,30,6345,,,,,,,,,,,,,,,,,,,,,,,,,,14.32287103,70,485729,11.14404859,18.12650998,14.41132813,,,,,,,,,,,,,14.012872,10.69329758,18.03734394,,,,6.382159599,31,485729,4.336367806,9.058966111,,,,,,,,,,,,,6.839009711,4.614251133,9.763111612,,,,9.240463692,62,670962,7.084610527,11.84585742,,,,,,,,,,,,,9.690829683,7.377108557,12.50046423,,,,9.25,,12000,,,111,,0.80103709,55612,69425,,,0.79,,,,,34.28259808,,,,,0.833503011,28655,34379,0.81618014,0.850825881,0.093130488,3171,34049,0.076507116,0.109753861,0.926728526,31860,34379,0.916375764,0.937081288,100824,,,,,0.255941046,25805,100824,,,0.12419662,12522,100824,,,0.045187654,4556,100824,,,0.006466714,652,100824,,,0.016662699,1680,100824,,,0.000505832,51,100824,,,0.033444418,3372,100824,,,0.878699516,88594,100824,,,0.010749631,983,91445,0.007082071,0.014417191,0.482643022,48662,100824,,,0.509286604,49494,97183,, -27,143,27143,MN,Sibley County,2024,1,6396.593572,147,40622,4806.766021,7986.421124,0,,,,2,,,,2,,,,2,,,,2,6517.877576,4778.180831,8257.574321,,,,,2,,0.134,,,0.113,0.157,3.142978783,,,2.441921313,3.969631827,4.74665319,,,3.79521259,5.790174416,0.055938038,65,1162,0.042724873,0.069151203,0,,,,,,,,,,0.07027027,0.033437501,0.10710304,0.052238806,0.037999109,0.066478503,,,,,,,0.181,,,0.145,0.22,0.375,,,0.299,0.454,9.5,0.008019395,0.059,,,0.226,,,0.184,0.271,0.60373416,8957,14836,,,0.200599094,,,0.160518867,0.244399179,0.090909091,1,11,0.004610648,0.283082638,187.7,28,14917,,,8.615384615,28,3250,5.72486051,12.45162952,,,,,,,,,,27.13987474,14.45084027,46.41001236,5.458089669,2.983988412,9.157747026,,,,,,,0.064724919,780,12051,0.055193004,0.074256834,0.000134075,2,14917,,,7458.5,0.000334336,5,14955,,,2991,0.000601805,9,14955,,,1661.666667,5557,,,,,,,,,5601,0.5,,,,,,,,,0.51,0.36,,,,,,,,0.2,0.36,0.931501585,9696,10409,0.914309851,0.948693319,0.651717286,2296,3523,0.601924075,0.701510498,0.032062392,259,8078,,,0.099,326,,0.06206383,0.13593617,,,,,,,,,,0.340425532,0.121891838,0.558959225,0.052040434,0.033525368,0.070555501,3.615678142,130761,36165,3.277227501,3.954128783,0.074722709,256,3426,0.047971491,0.101473926,16.08902594,24,14917,,,77.96327661,58,74394,59.20078458,100.7856141,,,,,,,,,,,,,82.54608823,62.01116202,107.7047394,,,,6.5,,,,,1,,,,,0.103906899,625,6015,0.083343393,0.124470406,0.08746453,0.067796396,0.107132665,0.014962594,0.00673285,0.023192337,0.007315046,0.001025049,0.013605042,0.820718161,6354,7742,0.799570766,0.841865555,,,,,,,,,,,,,0.75390625,0.711622414,0.796190087,0.414,,7742,0.381873947,0.446126053,80.49919832,,,78.99454192,82.00385472,,,,,,,,,,,,,80.4342553,78.84594288,82.02256772,,,,279.1970666,147,40622,231.2947379,327.0993953,,,,,,,,,,,,,279.8329499,229.0285873,330.6373124,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.095,,,0.081,0.109,0.149,,,0.128,0.172,0.083,,,0.071,0.097,39.7,5,12587,,,0.059,880,,,,0.008019395,122.1033023,15226,,,,,,,,,,,,,,,,,,,,,,,,,,0.294,,,0.278,0.308,0.073632297,642,8719,0.061717404,0.085547191,0.043056744,151,3507,0.029950361,0.056163127,0.000468071,7,14955,,,2136.428571,0.877985075,176.475,201,,,,,,,,2.938168786,,,,,,,,2.433663512,3.125141137,3.23212139,,,,,,,,2.854338818,3.40208904,0.066449626,,,,,-2901.7885,,,,,0.805561371,46178,57324,0.771254322,0.839868419,75596,,,67331.82979,83860.17021,,,,43021,25510.87234,60531.12766,50500,23715.31915,77284.68085,51563,8647.93617,94478.06383,76482,72716.89362,80247.10638,,,,,,0.266203704,575,2160,,,40.95520625,,,,,0.254166887,,75596,,,4.624277457,4,865,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.25238242,19,104096,10.98912654,28.50335611,,,,,,,,,,,,,18.5060199,10.78043856,29.62993057,,,,26.875,,1600,,,43,,0.777195402,8452,10875,,,0.708,,,,,1.686416202,,,,,0.812988779,4782,5882,0.786796734,0.839180825,0.09206626,528,5735,0.070787602,0.113344917,0.824379463,4849,5882,0.809473716,0.83928521,14955,,,,,0.223938482,3349,14955,,,0.1963223,2936,14955,,,0.00855901,128,14955,,,0.006486125,97,14955,,,0.008826479,132,14955,,,0.000534938,8,14955,,,0.092611167,1385,14955,,,0.873553995,13064,14955,,,0.012279083,173,14089,0.003557174,0.021000992,0.487729856,7294,14955,,,1,14836,14836,, -27,145,27145,MN,Stearns County,2024,1,5990.270527,1572,449765,5552.099164,6428.44189,0,,,,2,,,,2,9554.40743,7680.906777,11427.90808,,5078.054481,3182.389708,7688.235511,1,5599.828735,5132.179408,6067.478062,,,,,2,,0.137,,,0.113,0.162,3.080972317,,,2.48128997,3.743329315,4.663465231,,,3.968011197,5.422432934,0.063690224,903,14178,0.059670514,0.067709935,0,,,,0.066390042,0.034957336,0.097822747,0.071197411,0.062130264,0.080264558,0.078021978,0.06059572,0.095448236,0.059730647,0.055020967,0.064440326,,,,0.076923077,0.035107216,0.118738938,0.17,,,0.134,0.207,0.408,,,0.358,0.459,8.6,0.07351221,0.073,,,0.229,,,0.191,0.27,0.775118136,122695,158292,,,0.220145151,,,0.187079558,0.255108706,0.298507463,20,67,0.235276574,0.363018424,436,693,158947,,,8.272344201,373,45090,7.432825737,9.111862664,,,,,,,16.71442216,13.02971206,21.11766687,38.41000447,30.72304567,47.43604305,5.227113906,4.477914832,5.976312981,,,,13.76146789,8.155918028,21.74905219,0.054732351,7055,128900,0.047583415,0.061881287,0.000975168,155,158947,,,1025.464516,0.000816683,131,160405,,,1224.465649,0.004002369,642,160405,,,249.8520249,1783,,,,,2806,,6181,,1659,0.6,,,,,,0.41,0.27,0.42,0.6,0.47,,,,,0.27,0.49,0.22,0.19,0.48,0.927066848,90796,97939,0.919357594,0.934776101,0.719630423,26871,37340,0.687566496,0.75169435,0.027174825,2430,89421,,,0.113,4146,,0.07606383,0.14993617,,,,0.248898678,0.023038303,0.474759054,0.45892575,0.355447684,0.562403817,0.187206823,0.1044915,0.269922146,0.071860412,0.051625813,0.09209501,4.289532365,134657,31392,4.011498522,4.567566208,0.203536453,7482,36760,0.172274618,0.234798287,13.21195115,210,158947,,,66.07119171,528,799138,60.4354478,71.70693562,,,,,,,78.1327925,57.40903708,103.9000504,41.48803762,21.43747445,72.47125241,66.61386901,60.45906152,72.76867649,,,,5.5,,,,,0,,,,,0.126059589,7510,59575,0.112577416,0.139541762,0.101313003,0.08830118,0.114324826,0.030465799,0.023035369,0.037896229,0.00268569,0.001576554,0.003794827,0.762849916,63032,82627,0.748201042,0.77749879,,,,0.640406607,0.539850119,0.740963096,0.610228661,0.539866844,0.680590478,0.751346215,0.685967919,0.816724511,0.802590286,0.791272089,0.813908483,0.23,,82627,0.215504906,0.244495094,80.4721574,,,80.00544069,80.93887411,,,,89.77389689,77.22573697,102.3220568,77.77935429,73.46819636,82.09051222,92.10852679,75.45919024,108.7578633,80.76157205,80.27517933,81.24796477,,,,296.8000883,1572,449765,281.5817682,312.0184083,,,,,,,478.5094684,365.9139757,591.1049611,246.3465656,152.4924068,376.5668938,286.627045,270.7578843,302.4962058,,,,44.55895207,78,175049,35.22200253,55.61158878,,,,,,,80.2425107,47.55679735,126.8177615,,,,39.75656748,29.69210618,52.1354489,,,,5.112547043,72,14083,4.000253191,6.438406877,,,,,,,6.894174423,4.211140843,10.64749325,,,,4.238998789,3.05509747,5.729894911,,,,,,,0.095,,,0.08,0.111,0.152,,,0.133,0.174,0.09,,,0.077,0.105,101.3,134,132281,,,0.073,11570,,,,0.07351221,11074.02631,150642,,,14.10612787,68,482060,10.95396024,17.88287831,,,,,,,,,,,,,13.15270288,9.852277014,17.2040592,,,,0.308,,,0.294,0.323,0.06474001,5970,92215,0.055208095,0.074271925,0.030859395,1190,38562,0.02251897,0.039199821,0.002107166,338,160405,,,474.5710059,0.829172152,1637.615,1975,,,0.053910539,599,11111,0.031508232,0.076312846,3.080404617,,,,,,3.142142489,2.274186793,2.449084053,3.292480292,3.317906122,,,,,,3.508212804,2.248263151,2.604887142,3.586750466,0.265537243,,,,,-27.697776,,,,,0.8295328,48419,58369,0.797654406,0.861411194,72378,,,67783.61702,76972.38298,65417,5156.234043,125677.766,50103,15825.04255,84380.95745,39879,26890.57447,52867.42553,70585,63050.02128,78119.97872,76475,74464.95745,78485.04255,,,,,,0.347798422,8199,23574,,,66.61641398,,,,,0.338293404,,72378,,,6.506309148,66,10144,,,1.982878743,22,1109498,1.242659552,3.002102247,,,,,,,,,,,,,1.264735486,0.653507281,2.209238371,,,,13.31121549,105,799138,10.68493043,15.93750056,13.13915744,,,,,,,,,,,,,14.08088275,11.29327971,17.34804137,,,,8.008629298,64,799138,6.167620429,10.22684082,,,,,,,18.28639825,9.128504118,32.71941768,,,,7.401541001,5.493566394,9.758009084,,,,9.193346901,102,1109498,7.409204011,10.97748979,,,,,,,14.74392483,7.360114155,26.38095422,,,,8.431569906,6.685710554,10.4938186,,,,22.14285714,,16800,,,372,,0.719306427,84835,117940,,,0.74,,,,,73.69357942,,,,,0.674593862,40819,60509,0.660909328,0.688278396,0.122890837,7305,59443,0.10934857,0.136433103,0.879621213,53225,60509,0.870896036,0.888346391,160405,,,,,0.23247405,37290,160405,,,0.163199402,26178,160405,,,0.09486612,15217,160405,,,0.005205573,835,160405,,,0.023334684,3743,160405,,,0.001390231,223,160405,,,0.041226894,6613,160405,,,0.818677722,131320,160405,,,0.015538007,2308,148539,0.011706909,0.019369105,0.492441009,78990,160405,,,0.379886539,60133,158292,, -27,147,27147,MN,Steele County,2024,1,5683.43483,383,101425,4796.456706,6570.412955,0,,,,2,,,,2,,,,2,,,,2,5569.158994,4602.008655,6536.309332,,,,,2,,0.133,,,0.11,0.159,2.960666589,,,2.297967664,3.716491913,4.563160699,,,3.671844227,5.528040176,0.062937063,180,2860,0.054036639,0.071837486,0,,,,,,,0.060483871,0.030814924,0.090152819,0.071856287,0.044159918,0.099552657,0.060786106,0.050774199,0.070798014,,,,,,,0.179,,,0.139,0.222,0.405,,,0.338,0.478,9.1,0.051229764,0.057,,,0.229,,,0.187,0.276,0.70207988,26262,37406,,,0.198173558,,,0.161639214,0.239210441,0.4,4,10,0.227273625,0.556899967,174,65,37349,,,14.13083201,116,8209,11.55928298,16.70238105,,,,,,,,,,38.18827709,27.63704548,51.43935862,9.428032684,7.194582173,12.13574692,,,,,,,0.05107144,1542,30193,0.043922504,0.058220377,0.000589039,22,37349,,,1697.681818,0.000855661,32,37398,,,1168.6875,0.002914594,109,37398,,,343.1009174,1654,,,,,,,,,1646,0.56,,,,,,,,0.25,0.57,0.58,,,,,,0.36,0.26,0.34,0.59,0.926500337,23358,25211,0.912274767,0.940725907,0.666101886,5897,8853,0.611554386,0.720649387,0.028365484,547,19284,,,0.1,889,,0.066638298,0.133361702,,,,,,,0.350515464,0.193530971,0.507499957,0.10591133,0.03978878,0.17203388,0.069682863,0.045359938,0.094005788,4.158479857,142141,34181,3.785968981,4.530990733,0.197166213,1809,9175,0.151637298,0.242695127,15.26145278,57,37349,,,68.37272905,126,184284,56.43412047,80.31133763,,,,,,,,,,,,,74.60185999,61.14125055,88.06246942,,,,7.3,,,,,0,,,,,0.115604988,1715,14835,0.095083407,0.136126569,0.086918111,0.069359302,0.10447692,0.022514324,0.011895725,0.033132923,0.018200202,0.00800293,0.028397474,0.823328713,15444,18758,0.7934337,0.853223726,,,,,,,,,,0.725846926,0.608339209,0.843354643,0.843507803,0.812510911,0.874504695,0.196,,18758,0.170251697,0.221748303,80.52293233,,,79.63088813,81.41497652,,,,,,,,,,90.31043788,72.55657445,108.0643013,80.47170299,79.53326016,81.41014582,,,,287.689098,383,101425,257.6188585,317.7593375,,,,,,,,,,,,,286.8125517,255.2001499,318.4249536,,,,35.3660385,14,39586,19.33494234,59.33820321,,,,,,,,,,,,,43.08916142,22.94316371,73.68377832,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.093,,,0.078,0.108,0.15,,,0.129,0.173,0.084,,,0.071,0.099,61.2,19,31052,,,0.057,2140,,,,0.051229764,1873.779853,36576,,,,,,,,,,,,,,,,,,,,,,,,,,0.293,,,0.278,0.309,0.059156792,1253,21181,0.049624877,0.068688706,0.033080489,314,9492,0.022357085,0.043803893,0.001069576,40,37398,,,934.95,0.872602996,465.97,534,,,,,,,,3.082993134,,,,,,,2.630787063,2.597187844,3.231880168,3.184251536,,,,,,,2.610777489,2.54122742,3.361511348,0.079504576,,,,,2018.993667,,,,,0.789458819,50313,63731,0.716334513,0.862583125,75474,,,65422.59575,85525.40426,,,,89821,45135.38298,134506.617,45250,25808.46809,64691.53192,52321,36556.40426,68085.59575,81476,77807.40426,85144.59575,,,,,,0.344527188,2452,7117,,,48.30011843,,,,,0.324416355,,75474,,,4.039497307,9,2228,,,,,,,,,,,,,,,,,,,,,,,,,,12.60808914,23,184284,7.901422341,19.08879848,12.48073626,,,,,,,,,,,,,14.05647646,8.586060996,21.70908784,,,,5.969047774,11,184284,2.979727143,10.68027529,,,,,,,,,,,,,6.954410677,3.471616753,12.44336171,,,,5.817471029,15,257844,3.255994374,9.595033769,,,,,,,,,,,,,5.849031985,3.114363194,10.00202283,,,,14.88372093,,4300,,,64,,0.79012715,21128,26740,,,0.771,,,,,39.55952985,,,,,0.774365465,11624,15011,0.755010483,0.793720448,0.097482993,1433,14700,0.07807766,0.116888326,0.864832456,12982,15011,0.845237396,0.884427516,37398,,,,,0.240280229,8986,37398,,,0.192871277,7213,37398,,,0.03596449,1345,37398,,,0.005508316,206,37398,,,0.010615541,397,37398,,,0.000775443,29,37398,,,0.08615434,3222,37398,,,0.851061554,31828,37398,,,0.014448324,509,35229,0.008116259,0.020780389,0.499304776,18673,37398,,,0.297492381,11128,37406,, -27,149,27149,MN,Stevens County,2024,1,5576.371074,86,26843,4018.957779,7537.633726,0,,,,2,,,,2,,,,2,,,,2,5785.353987,4006.525817,8084.452317,,,,,2,,0.135,,,0.112,0.159,3.087320648,,,2.377481529,3.886103134,4.539003728,,,3.610482464,5.564245039,0.061915888,53,856,0.045770773,0.078061002,0,,,,,,,,,,,,,0.066176471,0.047491784,0.084861157,,,,,,,0.175,,,0.138,0.214,0.341,,,0.266,0.416,9.1,0.034411529,0.068,,,0.232,,,0.186,0.278,0.723916865,7001,9671,,,0.213528858,,,0.171380248,0.256463613,0.2,1,5,0.015594715,0.47750127,185.6,18,9700,,,5.284015852,20,3785,3.227614157,8.160733924,,,,,,,,,,,,,,,,,,,,,,0.061474845,446,7255,0.050751441,0.072198249,0.000618557,6,9700,,,1616.666667,0.000933901,9,9637,,,1070.777778,0.001764035,17,9637,,,566.8823529,4138,,,,,,,,,4115,0.6,,,,,,,,,0.6,0.43,,,,,,,,,0.43,0.936030429,5414,5784,0.914607345,0.957453512,0.733212341,1616,2204,0.657542695,0.808881988,0.021873247,117,5349,,,0.083,175,,0.050829787,0.115170213,,,,,,,0.088888889,0,0.58901538,0.21875,0.024063858,0.413436142,0.049227247,0.019454489,0.079000005,4.437979452,129589,29200,3.69913619,5.176822715,0.081565299,173,2121,0.049653076,0.113477522,23.71134021,23,9700,,,45.21446041,22,48657,28.33566162,68.45523643,,,,,,,,,,,,,52.56995388,32.94531022,79.59154194,,,,5.9,,,,,0,,,,,0.13568521,500,3685,0.102088046,0.169282375,0.104275862,0.072657558,0.135894166,0.025237449,0.008645587,0.041829312,0.006784261,0,0.014159504,0.742799597,3688,4965,0.701710154,0.78388904,,,,,,,,,,0.490990991,0.378306258,0.603675724,0.808356546,0.76762593,0.849087162,0.098,,4965,0.071092382,0.124907618,81.24982765,,,79.36843305,83.13122225,,,,,,,,,,,,,81.03517359,79.0143945,83.05595268,,,,292.1460728,86,26843,230.557112,365.1324652,,,,,,,,,,,,,292.4528172,227.9813184,369.4965407,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.094,,,0.08,0.111,0.147,,,0.125,0.171,0.087,,,0.073,0.101,,,,,,0.068,650,,,,0.034411529,334.6865272,9726,,,,,,,,,,,,,,,,,,,,,,,,,,0.286,,,0.272,0.302,0.069943657,360,5147,0.056837274,0.08305004,0.041195111,91,2209,0.026897239,0.055492983,0.001245201,12,9637,,,803.0833333,0.869318182,95.625,110,,,,,,,,3.415184192,,,,,,,,,3.48152587,3.760830491,,,,,,,,,3.828203673,0.05299622,,,,,160.3089,,,,,0.808698365,46653,57689,0.714564714,0.902832017,69171,,,61143.93617,77198.06383,14500,3736.085106,25263.91489,,,,17813,3789.170213,31836.82979,100000,68016.85106,131983.1489,75136,68365.95745,81906.04255,,,,,,0.215770171,353,1636,,,26.02151736,,,,,0.277775368,,69171,,,7.181328546,4,557,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.44444444,,900,,,13,,0.69372442,5085,7330,,,0.744,,,,,16.32827853,,,,,0.677988415,2575,3798,0.645820119,0.710156711,0.087837838,325,3700,0.054535179,0.121140497,0.888888889,3376,3798,0.86138913,0.916388648,9637,,,,,0.223202241,2151,9637,,,0.181176715,1746,9637,,,0.012763308,123,9637,,,0.017329044,167,9637,,,0.017121511,165,9637,,,0.0006226,6,9637,,,0.092871226,895,9637,,,0.840821833,8103,9637,,,0.03272927,298,9105,0.022228075,0.043230464,0.492061845,4742,9637,,,0.479888326,4641,9671,, -27,151,27151,MN,Swift County,2024,1,8355.02975,143,25163,6148.889997,10561.1695,0,,,,2,,,,2,,,,2,,,,2,8737.960722,6275.490669,11200.43078,,,,,2,,0.151,,,0.127,0.177,3.407620036,,,2.660647513,4.252834136,4.711863724,,,3.729562263,5.76227585,0.066073698,52,787,0.04871811,0.083429285,0,,,,,,,,,,,,,0.062295082,0.04311497,0.081475194,,,,,,,0.199,,,0.158,0.241,0.377,,,0.295,0.458,8.3,0.072930958,0.087,,,0.253,,,0.204,0.303,0.584061801,5746,9838,,,0.182414057,,,0.145453529,0.221611461,0.692307692,9,13,0.594539345,0.768533476,235.9,23,9749,,,15.47491996,29,1874,10.36379677,22.2245664,,,,,,,,,,,,,10.48088779,6.105503372,16.78091666,,,,,,,0.080100956,603,7528,0.068186063,0.09201585,0.000410299,4,9749,,,2437.25,0.000410046,4,9755,,,2438.75,0.001025115,10,9755,,,975.5,1081,,,,,,,,,1100,0.51,,,,,,,,,0.51,0.3,,,,,,,,,0.3,0.931155705,6357,6827,0.91537755,0.946933861,0.669865643,1396,2084,0.582771117,0.756960169,0.030385016,146,4805,,,0.112,240,,0.064340426,0.159659575,,,,,,,,,,0.488789238,0.339992287,0.637586188,0.07396622,0.048552457,0.099379983,4.688845789,118459,25264,3.556398196,5.821293382,0.294957608,661,2241,0.220990013,0.368925204,17.43768592,17,9749,,,89.47020855,42,46943,64.48225664,120.9377304,,,,,,,,,,,,,92.39078935,65.69888299,126.3012505,,,,6,,,,,0,,,,,0.093050648,395,4245,0.071550299,0.114550997,0.081829122,0.058912673,0.10474557,0.012720848,0.002867601,0.022574095,0.003297998,0,0.007663363,0.76486014,3500,4576,0.738468817,0.791251463,,,,,,,,,,,,,0.790704147,0.759489931,0.821918363,0.275,,4576,0.227849528,0.322150472,78.59702597,,,76.60262836,80.59142359,,,,,,,,,,,,,78.45415983,76.31145768,80.59686197,,,,403.0275327,143,25163,331.6092151,474.4458503,,,,,,,,,,,,,414.2096267,337.7530554,490.666198,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.104,,,0.087,0.12,0.156,,,0.134,0.18,0.094,,,0.079,0.111,,,,,,0.087,860,,,,0.072930958,713.4835623,9783,,,,,,,,,,,,,,,,,,,,,,,,,,0.294,,,0.278,0.31,0.091630455,485,5293,0.076141094,0.107119817,0.05451448,128,2348,0.037833629,0.071195332,0.001025115,10,9755,,,975.5,0.965983607,117.85,122,,,,,,,,2.94169533,,,,,,,,,3.07965018,3.354722452,,,,,,,,,3.555716727,0.119751658,,,,,940.2471,,,,,0.750239973,43769,58340,0.687125821,0.813354124,67166,,,58200.04255,76131.95745,,,,,,,,,,28424,23752.17021,33095.82979,61155,56442.65957,65867.34043,,,,,,0.372767857,668,1792,,,,,,,,0.286067356,,67166,,,5.464480874,3,549,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,28.91844997,19,65702,17.41079596,45.15974182,,,,,,,,,,,,,30.23685537,17.9202768,47.78726737,,,,22,,1000,,,22,,0.742918455,5193,6990,,,0.682,,,,,20.62939615,,,,,0.737361579,3063,4154,0.697262188,0.77746097,0.126410835,504,3987,0.095665383,0.157156287,0.799229658,3320,4154,0.777214867,0.821244449,9755,,,,,0.223782676,2183,9755,,,0.237416709,2316,9755,,,0.008508457,83,9755,,,0.007175807,70,9755,,,0.009226038,90,9755,,,0.011071246,108,9755,,,0.064787289,632,9755,,,0.882726807,8611,9755,,,0.013746076,127,9239,0.004491663,0.02300049,0.490620195,4786,9755,,,1,9838,9838,, -27,153,27153,MN,Todd County,2024,1,7891.155143,304,67352,6471.096591,9311.213694,0,,,,2,,,,2,,,,2,,,,2,7807.612631,6291.172762,9324.0525,,,,,2,,0.161,,,0.134,0.189,3.387780043,,,2.681052793,4.183054699,4.797164466,,,3.915890561,5.775558536,0.051166966,114,2228,0.042017659,0.060316273,0,,,,,,,,,,0.063953488,0.038097706,0.089809271,0.050056243,0.039920204,0.060192282,,,,,,,0.21,,,0.169,0.253,0.397,,,0.33,0.468,8,0.113845607,0.081,,,0.259,,,0.215,0.306,0.469915288,11871,25262,,,0.179611557,,,0.145267471,0.215772705,0.230769231,3,13,0.089378268,0.394382228,281.3,71,25237,,,21.49393488,101,4699,17.30203102,25.68583874,,,,,,,,,,53.19148936,35.88807451,75.9341585,17.32042792,13.44999,21.95776953,,,,,,,0.08683068,1680,19348,0.074915787,0.098745574,0.000832112,21,25237,,,1201.761905,0.000469888,12,25538,,,2128.166667,0.000313259,8,25538,,,3192.25,1782,,,,,,,,,1788,0.5,,,,,,,,,0.5,0.22,,,,,,,,,0.22,0.890268915,15626,17552,0.878596501,0.901941329,0.502545729,2665,5303,0.468771017,0.536320441,0.031978681,432,13509,,,0.146,871,,0.094765957,0.197234043,,,,,,,,,,0.277631579,0.116623354,0.438639804,0.173313534,0.136864848,0.20976222,3.832230052,107678,28098,3.532007886,4.132452218,0.14967462,897,5993,0.117170844,0.182178396,18.6234497,47,25237,,,83.2457771,103,123730,67.16897481,99.32257938,,,,,,,,,,,,,85.02564194,68.79082176,103.9394381,,,,5.7,,,,,0,,,,,0.135490394,1340,9890,0.119475353,0.151505436,0.083851248,0.070988862,0.096713634,0.042467139,0.032421293,0.052512984,0.032355915,0.023089731,0.041622099,0.745566413,8240,11052,0.729513248,0.761619579,,,,,,,,,,0.618083671,0.460244723,0.775922618,0.700482386,0.67059997,0.730364801,0.332,,11052,0.306893761,0.357106239,80.7724607,,,79.37788011,82.16704129,,,,,,,,,,,,,80.68809095,79.25193703,82.12424486,,,,329.2811012,304,67352,288.0752819,370.4869205,,,,,,,,,,,,,329.9505837,286.8177799,373.0833876,,,,54.49167056,14,25692,29.79110336,91.42776398,,,,,,,,,,,,,52.09073259,26.00350603,93.20470954,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.107,,,0.091,0.124,0.162,,,0.14,0.185,0.094,,,0.08,0.109,23.9,5,20878,,,0.081,2020,,,,0.113845607,2834.18639,24895,,,,,,,,,,,,,,,,,,,,,,,,,,0.301,,,0.285,0.315,0.093950231,1261,13422,0.079652359,0.108248103,0.070449782,437,6203,0.049002974,0.091896591,0.000391573,10,25538,,,2553.8,0.902199074,194.875,216,,,0.109025916,122,1119,0.034392149,0.183659683,2.788367192,,,,,,,,2.538711741,2.838654491,2.940986578,,,,,,,,2.403772343,3.099720889,0.218452329,,,,,-5772.187,,,,,0.779632562,40866,52417,0.737157085,0.822108039,66300,,,61796.17021,70803.82979,41625,13533.25532,69716.74468,,,,,,,75990,56245.82979,95734.17021,64060,59850.46809,68269.53192,,,,,,0.443162538,1306,2947,,,,,,,,0.289803922,,66300,,,5.977286312,10,1673,,,,,,,,,,,,,,,,,,,,,,,,,,17.4676703,19,123730,10.17556165,27.96743226,15.35601713,,,,,,,,,,,,,18.29169022,10.45528142,29.70455893,,,,9.698537137,12,123730,5.011375664,16.94139259,,,,,,,,,,,,,9.84507433,4.914625634,17.61555747,,,,15.67762165,27,172220,10.33165145,22.81011639,,,,,,,,,,,,,15.38047449,9.854560218,22.88492688,,,,16.92307692,,2600,,,44,,0.72800659,13257,18210,,,0.6,,,,,13.90193357,,,,,0.834852053,8154,9767,0.823205063,0.846499042,0.091828138,872,9496,0.07585004,0.107806236,0.764615542,7468,9767,0.748086021,0.781145063,25538,,,,,0.238507322,6091,25538,,,0.236745242,6046,25538,,,0.004542251,116,25538,,,0.008497142,217,25538,,,0.005051296,129,25538,,,0.002584384,66,25538,,,0.084305741,2153,25538,,,0.888440755,22689,25538,,,0.028497629,673,23616,0.018476888,0.038518369,0.478972512,12232,25538,,,0.994220568,25116,25262,, -27,155,27155,MN,Traverse County,2024,1,8543.510366,59,8460,5354.172461,12934.97737,1,,,,2,,,,2,,,,2,,,,2,9059.669226,5369.334155,14318.18324,1,,,,2,,0.141,,,0.119,0.164,3.300614326,,,2.57507876,4.108001654,4.624420866,,,3.681709602,5.61352057,0.041984733,11,262,0.017699776,0.06626969,1,,,,,,,,,,,,,,,,,,,,,,0.194,,,0.159,0.233,0.381,,,0.303,0.462,9,0.037058224,0.07,,,0.239,,,0.195,0.287,0.596726191,2005,3360,,,0.176001649,,,0.140041898,0.212698928,0,0,1,0,0.662081041,152.2,5,3286,,,16,10,625,7.672621914,29.42456967,,,,,,,,,,,,,,,,,,,,,,0.060504202,144,2380,0.050972287,0.070036117,,0,3286,,,,0.000610687,2,3275,,,1637.5,,0,3275,,,,403,,,,,,,,,408,0.51,,,,,,,,,0.51,0.14,,,,,,,,,0.14,0.938487826,2197,2341,0.914430891,0.962544761,0.600303951,395,658,0.490871282,0.709736621,0.025030525,41,1638,,,0.188,132,,0.116510638,0.259489362,0.47761194,0.150495773,0.804728108,,,,,,,,,,0.032015066,0,0.065936809,4.705380602,123568,26261,3.244661333,6.166099872,0.163661581,118,721,0.079385379,0.247937783,21.30249544,7,3286,,,140.3294692,23,16390,88.95684586,210.5631049,,,,,,,,,,,,,139.7917104,85.38840837,215.8969589,,,,5.8,,,,,1,,,,,0.088050315,140,1590,0.053216568,0.122884061,0.071292171,0.042824311,0.099760031,0.021383648,0,0.05090721,0,0,0.009537851,0.704907584,1106,1569,0.680351799,0.72946337,,,,,,,,,,,,,0.719364599,0.698949868,0.73977933,0.195,,1569,0.141595219,0.248404781,76.34780056,,,73.65390147,79.04169965,,,,,,,,,,,,,76.13321683,73.14519598,79.12123767,,,,459.9915672,59,8460,337.9845017,611.6912695,,,,,,,,,,,,,470.8719746,337.9058586,638.7910026,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.1,,,0.086,0.114,0.154,,,0.132,0.176,0.088,,,0.074,0.102,,,,,,0.07,230,,,,0.037058224,131.8531614,3558,,,,,,,,,,,,,,,,,,,,,,,,,,0.305,,,0.29,0.319,0.068102445,117,1718,0.054996062,0.081208828,0.040057225,28,699,0.026950842,0.053163608,0.001221374,4,3275,,,818.75,,,,,,,,,,,3.034523166,,,,,,,,,3.168299959,3.199234122,,,,,,,,,3.391932983,0.208157641,,,,,-527.7885,,,,,0.808693333,45489,56250,0.73693954,0.880447127,63913,,,54976.82979,72849.17021,44650,26102.08511,63197.91489,,,,,,,52667,47059.85106,58274.14894,64853,56871.21277,72834.78723,,,,,,0.387681159,214,552,,,,,,,,0.300627415,,63913,,,,,200,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,300,,,-888,,0.715547025,1864,2605,,,0.547,,,,,0.192044109,,,,,0.794836008,1139,1433,0.754817926,0.83485409,0.076923077,105,1365,0.044110769,0.109735385,0.793440335,1137,1433,0.752020377,0.834860293,3275,,,,,0.219847328,720,3275,,,0.255877863,838,3275,,,0.009160305,30,3275,,,0.062900763,206,3275,,,0.00610687,20,3275,,,0.000610687,2,3275,,,0.051603053,169,3275,,,0.85740458,2808,3275,,,0.01024,32,3125,0,0.023258988,0.487938931,1598,3275,,,1,3360,3360,, -27,157,27157,MN,Wabasha County,2024,1,5638.7533,220,58442,4346.45002,6931.056581,0,,,,2,,,,2,,,,2,,,,2,5670.625017,4346.432973,6994.817062,,,,,2,,0.12,,,0.1,0.143,2.878076934,,,2.229718304,3.648708234,4.100963313,,,3.27747314,5.050624642,0.051186018,82,1602,0.040394289,0.061977746,0,,,,,,,,,,,,,0.051665534,0.040353753,0.062977314,,,,,,,0.166,,,0.128,0.206,0.367,,,0.295,0.443,9.5,0.021517714,0.055,,,0.22,,,0.178,0.269,0.898630009,19219,21387,,,0.19778599,,,0.159796468,0.239330839,0.375,6,16,0.240765683,0.502616143,195.3,42,21509,,,11.45311382,48,4191,8.444622005,15.18516731,,,,,,,,,,48.07692308,23.05475335,88.41517328,9.138381201,6.365217338,12.70927608,,,,,,,0.051411715,854,16611,0.04307129,0.059752141,0.000790367,17,21509,,,1265.235294,0.000784929,17,21658,,,1274,0.000323206,7,21658,,,3094,1456,,,,,,,,,1467,0.58,,,,,,,,,0.58,0.47,,,,,,,,,0.47,0.94517714,14620,15468,0.934701538,0.955652742,0.71790468,3344,4658,0.658780582,0.777028779,0.025976161,316,12165,,,0.082,379,,0.052212766,0.111787234,,,,,,,,,,0.398601399,0.13019702,0.667005778,0.063239199,0.039669534,0.086808863,4.033490973,135610,33621,3.647082669,4.419899277,0.168357436,780,4633,0.109418877,0.227295995,19.52670975,42,21509,,,73.12715795,79,108031,57.8954596,91.13825769,,,,,,,,,,,,,76.4421098,60.42431565,95.40321258,,,,7.9,,,,,0,,,,,0.120044053,1090,9080,0.094579649,0.145508456,0.09673492,0.076663813,0.116806027,0.008700441,0.001186893,0.016213988,0.018171806,0.004999057,0.031344556,0.755314337,8350,11055,0.726313228,0.784315447,,,,,,,,,,,,,0.724267166,0.692369212,0.756165121,0.418,,11055,0.380814841,0.455185159,81.39333589,,,80.15406135,82.63261042,,,,,,,,,,,,,81.29676484,80.03914659,82.55438309,,,,254.4276549,220,58442,217.4010365,291.4542733,,,,,,,,,,,,,258.5630118,220.2153959,296.9106277,,,,48.92367906,10,20440,23.46080575,89.97238768,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.087,,,0.074,0.102,0.142,,,0.12,0.163,0.076,,,0.064,0.09,65.9,12,18204,,,0.055,1180,,,,0.021517714,466.4179776,21676,,,,,,,,,,,,,,,,,,,,,,,,,,0.281,,,0.263,0.298,0.058335429,696,11931,0.048803514,0.067867344,0.034623218,170,4910,0.023899814,0.045346622,0.001015791,22,21658,,,984.4545455,0.93161157,338.175,363,,,,,,,,3.29365292,,,,,,,,2.918278696,3.326116691,3.503400003,,,,,,,,2.631220986,3.600553451,0.029943348,,,,,3138.506667,,,,,0.773158255,47458,61382,0.702469682,0.843846828,78953,,,72807.29787,85098.70213,,,,,,,,,,37159,21362.23404,52955.76596,76685,73151.04255,80218.95745,,,,,,0.217256886,773,3558,,,,,,,,0.284447709,,78953,,,7.731958763,9,1164,,,,,,,,,,,,,,,,,,,,,,,,,,10.19655582,11,108031,4.889644853,18.7518292,10.1822625,,,,,,,,,,,,,10.78519286,5.171919191,19.83435366,,,,,,,,,,,,,,,,,,,,,,,,,,,13.9495028,21,150543,8.634962093,21.32329682,,,,,,,,,,,,,14.05935861,8.587821492,21.71353909,,,,14.54545455,,2200,,,32,,0.782761706,13123,16765,,,0.728,,,,,13.45355184,,,,,0.814497779,7517,9229,0.796909025,0.832086533,0.111160466,1001,9005,0.089475542,0.132845391,0.845812114,7806,9229,0.828400057,0.863224171,21658,,,,,0.216132607,4681,21658,,,0.237602733,5146,21658,,,0.006602641,143,21658,,,0.004201681,91,21658,,,0.006556469,142,21658,,,0.000738757,16,21658,,,0.033613445,728,21658,,,0.939652784,20351,21658,,,0.008120079,165,20320,0.002733889,0.013506268,0.49759904,10777,21658,,,0.811801562,17362,21387,, -27,159,27159,MN,Wadena County,2024,1,7139.023194,196,37511,5497.074402,8780.971987,0,,,,2,,,,2,,,,2,,,,2,6789.662884,5145.259963,8434.065804,,,,,2,,0.154,,,0.129,0.181,3.615815922,,,2.841729535,4.519659795,4.794731579,,,3.795499417,5.916202683,0.066030814,90,1363,0.052846798,0.079214831,0,,,,,,,,,,,,,0.063895304,0.05059541,0.077195198,,,,,,,0.208,,,0.166,0.254,0.407,,,0.329,0.487,8.6,0.022513305,0.094,,,0.257,,,0.208,0.308,0.325062211,4572,14065,,,0.172515605,,,0.137974871,0.211613585,0.272727273,3,11,0.11266692,0.445445377,310.4,44,14177,,,21.32622459,64,3001,16.42379159,27.2331127,,,,,,,,,,,,,19.79472141,14.87040395,25.82781759,,,,,,,0.059991019,668,11135,0.050459104,0.069522934,0.000493758,7,14177,,,2025.285714,0.000768854,11,14307,,,1300.636364,0.00370448,53,14307,,,269.9433962,1657,,,,,,,,,1671,0.53,,,,,,,,,0.53,0.22,,,,,,,,,0.22,0.924775928,8667,9372,0.903968664,0.945583193,0.665793781,2034,3055,0.584074747,0.747512814,0.041364535,251,6068,,,0.144,532,,0.089191489,0.198808511,,,,,,,,,,,,,0.14589856,0.090483953,0.201313166,4.701236233,104579,22245,4.121780815,5.280691651,0.195253506,724,3708,0.123431804,0.267075208,18.33956408,26,14177,,,104.1847543,72,69108,81.51815375,131.2034555,,,,,,,,,,,,,104.9075117,81.46478772,132.9952686,,,,5.2,,,,,0,,,,,0.133913044,770,5750,0.106481039,0.161345048,0.083887916,0.062095341,0.105680491,0.046956522,0.024150647,0.069762397,0.006956522,0.00161677,0.012296273,0.782437746,4776,6104,0.758600568,0.806274923,,,,,,,,,,,,,0.788190364,0.760506406,0.815874323,0.253,,6104,0.212506887,0.293493113,77.10077651,,,75.75382381,78.44772921,,,,,,,,,,,,,77.39177875,76.03023391,78.75332359,,,,372.214252,196,37511,316.5121651,427.916339,,,,,,,,,,,,,362.3274483,306.0388908,418.6160059,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.108,,,0.092,0.125,0.163,,,0.141,0.188,0.092,,,0.078,0.108,78.1,9,11530,,,0.094,1320,,,,0.022513305,311.6516843,13843,,,,,,,,,,,,,,,,,,,,,,,,,,0.298,,,0.282,0.314,0.070641955,526,7446,0.058727062,0.082556849,0.039190241,151,3853,0.026083858,0.052296624,0.002795834,40,14307,,,357.675,0.786592742,195.075,248,,,,,,,,3.068233831,,,,,,,,,3.107271866,3.477131287,,,,,,,,,3.498251523,0.048605725,,,,,-796.704,,,,,0.757174474,41397,54673,0.688568265,0.825780682,57527,,,50409.04255,64644.95745,,,,,,,76518,60786.76596,92249.23404,64143,40254.82979,88031.17021,55301,51776.57447,58825.42553,,,,,,0.416510903,1337,3210,,,,,,,,0.333999687,,57527,,,3.211991435,3,934,,,,,,,,,,,,,,,,,,,,,,,,,,21.46268486,13,69108,11.09008246,37.49099117,18.81113619,,,,,,,,,,,,,22.97984179,11.87401959,40.14115901,,,,18.81113619,13,69108,10.01613777,32.16761579,,,,,,,,,,,,,20.05584782,10.67889429,34.29611058,,,,20.67311668,20,96744,12.62767674,31.92795202,,,,,,,,,,,,,20.88600638,12.57474021,32.61608615,,,,27.05882353,,1700,,,46,,0.767316342,7677,10005,,,0.646,,,,,25.98158085,,,,,0.722706662,4144,5734,0.690824281,0.754589043,0.083378747,459,5505,0.06342599,0.103331503,0.823508894,4722,5734,0.791991173,0.855026616,14307,,,,,0.263297686,3767,14307,,,0.20472496,2929,14307,,,0.010065003,144,14307,,,0.009715524,139,14307,,,0.005032502,72,14307,,,0.000139792,2,14307,,,0.024463549,350,14307,,,0.932131125,13336,14307,,,0.001138347,15,13177,0,0.006213263,0.498706927,7135,14307,,,0.718450053,10105,14065,, -27,161,27161,MN,Waseca County,2024,1,5781.925069,212,51807,4501.314708,7062.53543,0,,,,2,,,,2,,,,2,,,,2,5680.370051,4379.103751,6981.636351,,,,,2,,0.134,,,0.111,0.159,3.149648878,,,2.447291563,3.925726204,4.240224819,,,3.358928924,5.212853611,0.06681191,92,1377,0.053623251,0.080000569,0,,,,,,,,,,,,,0.071726439,0.057120681,0.086332197,,,,,,,0.175,,,0.136,0.215,0.363,,,0.288,0.444,8.3,0.126930875,0.061,,,0.222,,,0.177,0.27,0.832560101,15792,18968,,,0.194064902,,,0.153775651,0.237684891,0.142857143,1,7,0.008995928,0.386311364,215.8,41,19000,,,10.7301143,46,4287,7.855792258,14.31246879,,,,,,,,,,29.1005291,14.52687928,52.06888496,9.01393062,6.204775081,12.65890993,,,,,,,0.057541709,845,14685,0.049201284,0.065882135,0.000263158,5,19000,,,3800,0.000582226,11,18893,,,1717.545455,0.000582226,11,18893,,,1717.545455,992,,,,,,,,,955,0.6,,,,,,,,,0.6,0.58,,,,,,,,,0.58,0.929248166,12162,13088,0.913555091,0.944941242,0.644562334,3159,4901,0.577661907,0.711462761,0.034810861,300,8618,,,0.099,416,,0.06206383,0.13593617,,,,,,,,,,0.307881773,0.072898549,0.542864998,0.024229075,0.009732729,0.038725421,3.904939834,132725,33989,3.46339256,4.346487107,0.183214859,799,4361,0.12047879,0.245950928,15.78947368,30,19000,,,70.4826997,66,93640,54.51131484,89.67127557,,,,,,,,,,,,,75.88167277,58.30956084,97.08562258,,,,7.1,,,,,0,,,,,0.122597747,925,7545,0.097422065,0.147773429,0.100134409,0.074106923,0.126161894,0.021206097,0.007453271,0.034958923,0.016434725,0.004492089,0.028377361,0.817333192,7705,9427,0.785964442,0.848701942,,,,,,,,,,,,,0.793907746,0.753855288,0.833960203,0.267,,9427,0.227285674,0.306714326,79.49137628,,,78.27416614,80.70858641,,,,,,,,,,,,,79.50182351,78.26651461,80.7371324,,,,299.8498684,212,51807,257.5331057,342.1666311,,,,,,,,,,,,,304.6970122,260.1012613,349.2927631,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.095,,,0.08,0.111,0.15,,,0.128,0.172,0.083,,,0.069,0.098,49.9,8,16022,,,0.061,1160,,,,0.126930875,2428.949229,19136,,,,,,,,,,,,,,,,,,,,,,,,,,0.298,,,0.283,0.314,0.066647432,693,10398,0.054732539,0.078562326,0.036849073,167,4532,0.02493418,0.048763967,0.000317578,6,18893,,,3148.833333,0.841778524,250.85,298,,,,,,,,3.173360683,,,,,,,,,3.296581245,3.186703653,,,,,,,,,3.343160933,0.052081631,,,,,1307.824033,,,,,0.784747912,45185,57579,0.717352221,0.852143602,71519,,,63997.12766,79040.87234,,,,46719,42974.14894,50463.85106,,,,42102,17081.91489,67122.08511,73872,69465.87234,78278.12766,,,,,,0.288373612,883,3062,,,,,,,,0.268655882,,71519,,,6.523765145,7,1073,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.602250266,10,131540,3.645574499,13.98080891,,,,,,,,,,,,,,,,,,,24.28571429,,2100,,,51,,0.747141316,10389,13905,,,0.759,,,,,22.32164464,,,,,0.814093154,6100,7493,0.785642058,0.842544249,0.101942416,740,7259,0.072590967,0.131293866,0.854130522,6400,7493,0.828919705,0.879341339,18893,,,,,0.224845181,4248,18893,,,0.192928598,3645,18893,,,0.020324988,384,18893,,,0.007304293,138,18893,,,0.009103901,172,18893,,,0.000741015,14,18893,,,0.070237654,1327,18893,,,0.880273117,16631,18893,,,0.008509685,152,17862,0.002821435,0.014197936,0.51003017,9636,18893,,,0.514392661,9757,18968,, -27,163,27163,MN,Washington County,2024,1,4663.211103,2205,749988,4356.346101,4970.076106,0,,,,2,3027.739802,2267.98488,3960.358208,,6309.876571,4890.067674,8013.320199,,3253.748529,2278.885468,4504.559463,,4665.596198,4318.119053,5013.073342,,,,,2,,0.098,,,0.081,0.117,2.661958708,,,2.142233374,3.222984551,4.303472302,,,3.692234569,4.971242748,0.065184802,1261,19345,0.061706176,0.068663429,0,,,,0.077062557,0.065933428,0.088191685,0.096420745,0.080784851,0.112056639,0.071356784,0.055361697,0.087351871,0.058865048,0.054989291,0.062740805,,,,0.0951417,0.069267417,0.121015984,0.125,,,0.096,0.155,0.309,,,0.271,0.346,9.5,0.061060722,0.035,,,0.172,,,0.143,0.204,0.946002512,253120,267568,,,0.207817074,,,0.181653079,0.236484428,0.244444444,11,45,0.167294541,0.32687064,247.6,674,272256,,,4.906511073,296,60328,4.347548153,5.465473993,,,,4.095710282,2.46588514,6.395958951,6.564551422,4.206031962,9.767532165,12.67674305,9.46759805,16.62386196,3.775428622,3.207886794,4.34297045,,,,10.55806938,7.015760428,15.2593499,0.034012198,7724,227095,0.02924624,0.038778155,0.001043136,284,272256,,,958.6478873,0.000771985,213,275912,,,1295.361502,0.00320392,884,275912,,,312.1176471,1836,,,,,,,,,1842,0.48,,,,,,0.4,0.21,,0.49,0.6,,,,,,0.53,0.27,0.46,0.6,0.961967771,175208,182135,0.956803872,0.96713167,0.810386437,54398,67126,0.78214665,0.838626225,0.022764509,3293,144655,,,0.056,3636,,0.040510638,0.071489362,,,,0.048409647,0.018471029,0.078348265,0.103033342,0.040097616,0.165969067,0.107260726,0.046798894,0.167722559,0.027146925,0.017977678,0.036316171,3.700306492,199206,53835,3.516383251,3.884229734,0.143697142,9311,64796,0.123437172,0.163957112,7.346027269,200,272256,,,54.79885173,721,1315721,50.7988526,58.79885087,,,,19.90958705,11.59806815,31.87717754,40.21779483,26.27159884,58.9283877,27.24053391,15.57031881,44.23692045,60.25615874,55.60589423,64.90642325,,,,8,,,,,0,,,,,0.100735947,9650,95795,0.090357323,0.111114571,0.085197799,0.075103998,0.0952916,0.013518451,0.00983528,0.017201622,0.005584843,0.003396629,0.007773056,0.720507619,100152,139002,0.707334314,0.733680923,,,,0.544782034,0.515308719,0.57425535,0.653758068,0.586309543,0.721206592,0.714948215,0.679389833,0.750506597,0.695476262,0.681093855,0.709858669,0.381,,139002,0.363488754,0.398511246,81.50633535,,,81.17017199,81.84249871,,,,83.74833196,81.60935214,85.88731177,79.09569815,76.95266165,81.23873465,98.4170426,84.71177207,112.1223131,81.43390048,81.07294387,81.79485709,,,,231.3909906,2205,749988,221.4073887,241.3745924,,,,184.8190553,143.2322293,234.7136671,286.2803697,228.9873431,353.5539276,186.2360544,133.0497677,253.6006475,232.1880513,221.2874707,243.0886319,,,,35.21590194,99,281123,28.62174737,42.87409702,,,,,,,74.35734013,40.65184978,124.758982,,,,31.79105938,24.53566846,40.52031489,,,,3.98468226,77,19324,3.144648926,4.980169142,,,,,,,,,,,,,3.384912959,2.504177242,4.475034443,,,,,,,0.076,,,0.064,0.089,0.13,,,0.112,0.148,0.073,,,0.063,0.085,101,229,226762,,,0.035,9150,,,,0.061060722,14540.75609,238136,,,14.87180256,119,800172,12.19974259,17.54386254,,,,,,,,,,,,,15.49731664,12.45984258,18.5347907,,,,0.272,,,0.259,0.286,0.039241448,6332,161360,0.033284001,0.045198895,0.022257897,1539,69144,0.01630045,0.028215343,0.000964076,266,275912,,,1037.263158,0.909934471,2985.495,3281,,,0.032622062,451,13825,0.018006654,0.047237469,3.305268221,,,,,,3.285515144,2.961165761,2.888584925,3.393439409,3.54873189,,,,,,3.508228553,2.974034221,3.079547966,3.675099335,0.070969468,,,,,5035.541,,,,,0.805234465,67502,83829,0.758070688,0.852398243,107649,,,101424.6596,113873.3404,75208,56602.89362,93813.10638,122602,101600.8085,143603.1915,93324,75875.82979,110772.1702,91108,74462.89362,107753.1064,112343,109386.9149,115299.0851,,,,,,0.18143498,8049,44363,,,47.49685453,,,,,0.334949698,,107649,,,7.948400547,122,15349,,,1.37329814,25,1820435,0.888726148,2.027258963,,,,,,,,,,,,,1.005698961,0.562882074,1.658747494,,,,12.2558104,164,1315721,10.33745464,14.17416617,12.46464866,,,,,,,,,,,,,13.75517105,11.48331698,16.02702511,,,,6.536340151,86,1315721,5.22822842,8.072326913,,,,,,,,,,,,,7.099950487,5.593953446,8.886646765,,,,4.943873305,90,1820435,3.975457961,6.07685964,,,,,,,,,,,,,5.497820986,4.372580186,6.824245467,,,,9.935064935,,30800,,,306,,0.876345103,166786,190320,,,0.808,,,,,74.49274507,,,,,0.814602133,82419,101177,0.804643118,0.824561148,0.096577164,9661,100034,0.086925074,0.106229254,0.936230566,94725,101177,0.929208139,0.943252994,275912,,,,,0.237448897,65515,275912,,,0.167654905,46258,275912,,,0.055213256,15234,275912,,,0.005922178,1634,275912,,,0.07754284,21395,275912,,,0.000735742,203,275912,,,0.049744121,13725,275912,,,0.788758735,217628,275912,,,0.011503643,2915,253398,0.00939605,0.013611235,0.501728812,138433,275912,,,0.133663218,35764,267568,, -27,165,27165,MN,Watonwan County,2024,1,6439.897215,140,29532,4708.026495,8171.767935,0,,,,2,,,,2,,,,2,,,,2,6748.470613,4635.02556,8861.915665,,,,,2,,0.157,,,0.134,0.183,3.326602758,,,2.59675332,4.148917668,4.387952444,,,3.462317891,5.405198707,0.052540913,61,1161,0.039706707,0.065375119,0,,,,,,,,,,0.05380334,0.034755005,0.072851674,0.051666667,0.033954725,0.069378608,,,,,,,0.181,,,0.147,0.219,0.365,,,0.289,0.447,9.2,0.011010797,0.072,,,0.262,,,0.216,0.315,0.714831601,8044,11253,,,0.181796767,,,0.147020654,0.22342594,0.571428571,4,7,0.387251166,0.710103252,296.4,33,11135,,,31.38832998,78,2485,24.81117232,39.17405636,,,,,,,,,,46.76870748,35.23259096,60.87590134,17.5,10.83277582,26.75060895,,,,,,,0.10682832,934,8743,0.091338958,0.122317682,0.000538842,6,11135,,,1855.833333,0.000541761,6,11075,,,1845.833333,0.000632054,7,11075,,,1582.142857,1504,,,,,,,,,1580,0.57,,,,,,,,0.19,0.6,0.5,,,,,,,,0.21,0.52,0.878255122,6644,7565,0.854698664,0.90181158,0.556369556,1367,2457,0.48774843,0.624990683,0.025306749,165,6520,,,0.311,854,,0.281212766,0.340787234,,,,,,,,,,0.268023749,0.1407737,0.395273798,0.157894737,0.084628915,0.231160559,4.556478042,125130,27462,3.511260244,5.601695841,0.148485954,407,2741,0.093327797,0.203644112,19.75752133,22,11135,,,86.01127297,47,54644,63.19784819,114.3767593,,,,,,,,,,,,,100.9525782,71.78715182,138.0054977,,,,6.5,,,,,0,,,,,0.107551487,470,4370,0.075719961,0.139383014,0.082909931,0.05812449,0.107695371,0.02402746,0.000693285,0.047361635,0.005720824,0,0.012490037,0.778098537,4043,5196,0.745475572,0.810721503,,,,,,,,,,0.731019523,0.498081052,0.963957994,0.772972973,0.720761974,0.825183972,0.271,,5196,0.22669005,0.31530995,79.19600891,,,77.5758264,80.81619143,,,,,,,,,,90.66525161,63.46337716,117.8671261,78.93524895,77.12066022,80.74983767,,,,343.6400352,140,29532,282.9143412,404.3657293,,,,,,,,,,,,,366.184661,292.338302,440.0310199,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.101,,,0.087,0.116,0.147,,,0.126,0.17,0.094,,,0.08,0.11,65.8,6,9122,,,0.072,810,,,,0.011010797,123.4420487,11211,,,,,,,,,,,,,,,,,,,,,,,,,,0.284,,,0.271,0.297,0.120119621,723,6019,0.101055791,0.139183451,0.077867415,222,2851,0.051654649,0.104080181,0.001173815,13,11075,,,851.9230769,0.865811966,101.3,117,,,0.277894737,132,475,0.099534486,0.456254988,2.985807037,,,,,,,,2.795148118,3.08395018,3.199485868,,,,,,,,2.89449062,3.576846501,0.02961685,,,,,-6811.269667,,,,,0.705013689,41201,58440,0.647929776,0.762097603,61295,,,53882.74468,68707.25532,,,,38385,25491.89362,51278.10638,,,,63404,46273.95745,80534.04255,68138,61315.53192,74960.46809,,,,,,0.466735967,898,1924,,,,,,,,0.313467656,,61295,,,3.601440576,3,833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.27272727,,1100,,,19,,0.705220339,5201,7375,,,0.691,,,,,2.429832941,,,,,0.799581493,3439,4301,0.771804946,0.827358039,0.082756976,347,4193,0.053356082,0.112157869,0.806091607,3467,4301,0.777364836,0.834818377,11075,,,,,0.251828442,2789,11075,,,0.213002257,2359,11075,,,0.006862303,76,11075,,,0.013814898,153,11075,,,0.013002257,144,11075,,,0.000541761,6,11075,,,0.280993228,3112,11075,,,0.691647856,7660,11075,,,0.075228475,782,10395,0.048498702,0.101958249,0.498148984,5517,11075,,,1,11253,11253,, -27,167,27167,MN,Wilkin County,2024,1,7817.567094,86,17064,5445.221917,10872.34339,0,,,,2,,,,2,,,,2,,,,2,7051.760228,4722.674498,10127.50398,,,,,2,,0.133,,,0.112,0.157,3.147069381,,,2.430711611,3.944224131,4.45100791,,,3.532410342,5.426600556,0.052313883,26,497,0.032738124,0.071889643,0,,,,,,,,,,,,,0.034324943,0.017254854,0.051395031,,,,,,,0.183,,,0.144,0.224,0.39,,,0.309,0.471,8.6,0.056798929,0.078,,,0.227,,,0.183,0.274,0.567783584,3694,6506,,,0.195839097,,,0.157380938,0.235866449,0.285714286,2,7,0.086061846,0.500925625,203.3,13,6395,,,11.3735783,13,1143,6.055951436,19.44916528,,,,,,,,,,,,,10.81612586,5.399371059,19.35303689,,,,,,,0.045777427,232,5068,0.037437002,0.054117853,0.000312744,2,6395,,,3197.5,0.000314961,2,6350,,,3175,0.002677165,17,6350,,,373.5294118,2366,,,,,,,,,1978,0.5,,,,,,,,,0.51,0.52,,,,,,,,,0.52,0.933333333,4214,4515,0.911178408,0.955488259,0.700538358,1041,1486,0.597060012,0.804016704,0.022385862,76,3395,,,0.121,170,,0.075723404,0.166276596,,,,,,,,,,,,,0.119281046,0.053098296,0.185463796,3.767909458,122182,32427,2.925052101,4.610766816,0.123110151,171,1389,0.065789162,0.18043114,14.07349492,9,6395,,,108.4840943,34,31341,75.12838896,151.5956482,,,,,,,,,,,,,99.87257637,66.88623183,143.4336792,,,,5.9,,,,,0,,,,,0.0625,175,2800,0.035835103,0.089164897,0.055016181,0.025415486,0.084616876,0.012142857,0,0.024945982,0.001428571,0,0.006976433,0.776043326,2436,3139,0.730801104,0.821285548,,,,,,,,,,,,,0.719125683,0.653500568,0.784750798,0.225,,3139,0.183828913,0.266171087,76.77074413,,,74.71358768,78.82790058,,,,,,,,,,,,,77.50531193,75.41168499,79.59893888,,,,371.8647794,86,17064,291.9938341,466.8421773,,,,,,,,,,,,,343.633786,264.6398878,438.8126732,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.095,,,0.082,0.111,0.15,,,0.127,0.172,0.085,,,0.072,0.099,,,,,,0.078,510,,,,0.056798929,373.5097555,6576,,,,,,,,,,,,,,,,,,,,,,,,,,0.278,,,0.262,0.294,0.052157291,191,3662,0.042625376,0.061689206,0.029871012,44,1473,0.019147607,0.040594416,0.000472441,3,6350,,,2116.666667,,,,,,,,,,,3.109561857,,,,,,,,,3.176011107,3.328234294,,,,,,,,,3.41139658,0.045886403,,,,,-1672.489333,,,,,0.784209033,47000,59933,0.632590498,0.935827569,71924,,,61863.06383,81984.93617,,,,,,,,,,,,,68966,62663.02128,75268.97872,,,,,,0.337016575,366,1086,,,,,,,,0.267143096,,71924,,,4.22832981,2,473,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,22.6783082,10,44095,10.87513028,41.70621622,,,,,,,,,,,,,24.36290991,11.68296228,44.80425874,,,,58.33333333,,600,,,35,,0.701431493,3430,4890,,,0.724,,,,,15.85606411,,,,,0.803524559,2143,2667,0.767582118,0.839467001,0.06587057,171,2596,0.03356419,0.098176951,0.811023622,2163,2667,0.768010654,0.85403659,6350,,,,,0.226614173,1439,6350,,,0.197007874,1251,6350,,,0.007401575,47,6350,,,0.022834646,145,6350,,,0.00519685,33,6350,,,0.000314961,2,6350,,,0.040944882,260,6350,,,0.911811024,5790,6350,,,0.002137455,13,6082,0,0.011782618,0.47007874,2985,6350,,,0.479557332,3120,6506,, -27,169,27169,MN,Winona County,2024,1,5224.171889,478,139282,4445.705821,6002.637958,0,,,,2,,,,2,,,,2,,,,2,5247.895775,4427.928031,6067.863519,,,,,2,,0.13,,,0.108,0.154,3.018887657,,,2.369035584,3.76742971,4.654088322,,,3.807897267,5.638130601,0.075881612,241,3176,0.066671861,0.085091363,0,,,,,,,0.18018018,0.108679974,0.251680387,0.075757576,0.030616169,0.120898983,0.071878474,0.062134043,0.081622904,,,,,,,0.168,,,0.129,0.206,0.386,,,0.317,0.455,9.2,0.030245435,0.065,,,0.223,,,0.18,0.27,0.925167603,45954,49671,,,0.206403456,,,0.169540675,0.247215305,0.095238095,2,21,0.018632442,0.225063028,304.3,151,49630,,,4.934021802,86,17430,3.946580565,6.093476786,,,,,,,32.86384977,17.96697248,55.13995569,,,,3.829646748,2.908011336,4.950706487,,,,,,,0.05263018,1980,37621,0.044289754,0.060970606,0.000362684,18,49630,,,2757.222222,0.000666963,33,49478,,,1499.333333,0.002485953,123,49478,,,402.2601626,2037,,,,,,,,7286,1954,0.55,,,,,,,,,0.55,0.39,,,,,,,0.21,0.73,0.39,0.931495809,28895,31020,0.922519156,0.940472462,0.72663659,7892,10861,0.673973443,0.779299737,0.021808398,616,28246,,,0.124,1042,,0.088255319,0.159744681,,,,,,,0.77631579,0.564456407,0.988175172,0.151802657,0.053973119,0.249632194,0.054788849,0.033614694,0.075963005,4.548346895,124088,27282,4.13030633,4.966387461,0.123143214,1086,8819,0.087444481,0.158841947,12.49244409,62,49630,,,64.60639643,163,252297,54.68808394,74.52470892,,,,,,,,,,,,,69.36083338,58.57951647,80.14215028,,,,8.2,,,,,0,,,,,0.125610069,2445,19465,0.107808801,0.143411338,0.096491228,0.080551442,0.112431014,0.012329823,0.006698957,0.017960689,0.025687131,0.015517726,0.035856536,0.76068787,20569,27040,0.741544107,0.779831632,,,,,,,,,,0.656028369,0.514607774,0.797448963,0.769889593,0.749211801,0.790567384,0.21,,27040,0.188094735,0.231905265,80.63133044,,,79.85159258,81.4110683,,,,,,,,,,,,,80.56141795,79.75591716,81.36691874,,,,271.0363089,478,139282,245.0893684,296.9832495,,,,,,,,,,,,,272.7513143,245.8334953,299.6691333,,,,31.54574133,15,47550,17.65591195,52.02990299,,,,,,,,,,,,,29.49707487,15.24156902,51.52545364,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.093,,,0.078,0.108,0.15,,,0.129,0.173,0.088,,,0.073,0.102,62.1,27,43473,,,0.065,3260,,,,0.030245435,1556.460353,51461,,,13.28030067,20,150599,8.111952659,20.51034728,,,,,,,,,,,,,14.63079197,8.936867829,22.59607156,,,,0.289,,,0.273,0.304,0.059349846,1718,28947,0.048626442,0.070073251,0.03127734,286,9144,0.021745425,0.040809255,0.000848862,42,49478,,,1178.047619,0.855,320.625,375,,,,,,,,3.15845705,,,,,,,,,3.272377204,3.289369161,,,,,,,,,3.43175504,0.06049499,,,,,1686.553,,,,,0.814182593,45455,55829,0.747848361,0.880516826,65699,,,59162.48936,72235.51064,32436,5762.12766,59109.87234,78263,59578.06383,96947.93617,,,,43281,11142.95745,75419.04255,67690,63382.76596,71997.23404,,,,,,0.274250995,1309,4773,,,59.50861905,,,,,0.341831687,,65699,,,9.671993272,23,2378,,,,,,,,,,,,,,,,,,,,,,,,,,10.30203346,26,252297,6.530605497,15.45810845,10.30531477,,,,,,,,,,,,,10.3226646,6.389892082,15.77928937,,,,6.341732165,16,252297,3.624847879,10.29857573,,,,,,,,,,,,,6.979706503,3.989505337,11.33460608,,,,6.494790049,23,354130,4.117139761,9.745373986,,,,,,,,,,,,,6.82549384,4.277500651,10.3338797,,,,15.23809524,,4200,,,64,,0.668544716,27173,40645,,,0.734,,,,,71.67124836,,,,,0.687162998,13891,20215,0.673046686,0.70127931,0.117945625,2347,19899,0.09755403,0.138337221,0.906158793,18318,20215,0.890059985,0.922257601,49478,,,,,0.173450827,8582,49478,,,0.189174987,9360,49478,,,0.01853349,917,49478,,,0.005093173,252,49478,,,0.027345487,1353,49478,,,0.000161688,8,49478,,,0.034419338,1703,49478,,,0.90185537,44622,49478,,,0.006674808,317,47492,0.003957511,0.009392106,0.499939367,24736,49478,,,0.403414467,20038,49671,, -27,171,27171,MN,Wright County,2024,1,4863.278906,1246,401148,4467.979575,5258.578238,0,,,,2,,,,2,8262.984288,4897.16817,13059.07756,1,,,,2,4768.521615,4361.796256,5175.246974,,,,,2,,0.112,,,0.092,0.133,2.819762338,,,2.24781851,3.50029698,4.271761549,,,3.582622734,5.030717228,0.054121633,671,12398,0.05013888,0.058104385,0,,,,0.126086957,0.083186556,0.168987357,0.09602649,0.062796824,0.129256156,0.060747664,0.038117374,0.083377954,0.051243205,0.047163433,0.055322977,,,,,,,0.154,,,0.121,0.189,0.34,,,0.293,0.392,9.7,0.029097661,0.04,,,0.185,,,0.15,0.221,0.795941615,112496,141337,,,0.213446813,,,0.181499843,0.249138493,0.315789474,12,38,0.230581269,0.401886528,197.5,286,144845,,,5.494013317,184,33491,4.700166208,6.287860426,,,,,,,,,,12.57861635,7.683345651,19.42665277,5.140075569,4.320220471,5.959930668,,,,,,,0.044390322,5559,125230,0.038432875,0.050347769,0.000393524,57,144845,,,2541.140351,0.000398641,59,148003,,,2508.525424,0.001283758,190,148003,,,778.9631579,1850,,,,,,,2310,5613,1749,0.5,,,,,,,0.27,,0.5,0.52,,,,,,0.54,0.16,0.35,0.53,0.949278564,88094,92801,0.942288409,0.956268718,0.748397265,28017,37436,0.709882182,0.786912347,0.025875588,1980,76520,,,0.049,1938,,0.032319149,0.065680851,,,,0.046632124,0,0.219229532,0.027363184,0,0.137575686,0.182735426,0.092115289,0.273355563,0.042613465,0.027155856,0.058071074,3.295531348,165785,50306,3.091122638,3.499940058,0.123545508,4831,39103,0.097377005,0.149714011,9.527425869,138,144845,,,51.14492599,355,694106,45.82452398,56.46532801,,,,,,,,,,,,,52.83567163,47.18612412,58.48521913,,,,5.5,,,,,0,,,,,0.092982992,4565,49095,0.079134679,0.106831305,0.078182562,0.065875793,0.090489332,0.012221204,0.008753391,0.015689016,0.006110602,0.002999175,0.009222029,0.794369694,60160,75733,0.77891996,0.809819427,,,,,,,,,,0.761081081,0.656836137,0.865326025,0.753870684,0.73387982,0.773861547,0.514,,75733,0.485829402,0.542170598,80.10255383,,,79.66206772,80.54303994,,,,91.91733618,72.54876866,111.2859037,82.8249149,70.82689371,94.82293608,87.553406,76.16193413,98.94487787,80.07117161,79.62626719,80.51607604,,,,268.6906708,1246,401148,253.560224,283.8211176,,,,,,,380.7115221,221.7784913,609.556027,,,,268.5804606,253.0297984,284.1311229,,,,26.84820028,45,167609,19.58326151,35.92500432,,,,,,,,,,,,,25.89084963,18.32190614,35.53721395,,,,2.925877763,36,12304,2.049248815,4.050648122,,,,,,,,,,,,,2.76169265,1.876436167,3.920002272,,,,,,,0.085,,,0.072,0.099,0.136,,,0.117,0.159,0.073,,,0.062,0.085,65.6,77,117429,,,0.04,5530,,,,0.029097661,3628.478293,124700,,,9.68189085,41,423471,6.947892032,13.13457818,,,,,,,,,,,,,9.840251289,6.963547474,13.50651371,,,,0.27,,,0.255,0.284,0.051666919,4437,85877,0.043326493,0.060007345,0.029594261,1221,41258,0.021253835,0.037934686,0.000527016,78,148003,,,1897.474359,0.909389045,1942.455,2136,,,0.034797216,290,8334,0.018287847,0.051306585,3.412076098,,,,,,3.231284624,3.027900705,3.074536455,3.443774301,3.636550311,,,,,,3.468979859,2.917236357,2.966991516,3.691082371,0.049267958,,,,,4112.067333,,,,,0.782884246,57935,74002,0.733760766,0.832007727,95259,,,88335.25532,102182.7447,,,,123696,110213.1064,137178.8936,128029,67618.10638,188439.8936,87649,57895.12766,117402.8723,102054,97762.25532,106345.7447,,,,,,0.131332421,3645,27754,,,65.49298678,,,,,0.235757251,,95259,,,4.433653542,42,9473,,,1.148265024,11,957967,0.573209763,2.054563311,,,,,,,,,,,,,,,,,,,13.00734691,90,694106,10.43227258,16.02541519,12.96631927,,,,,,,,,,,,,13.31209941,10.60301288,16.5023501,,,,6.915370275,48,694106,5.098848133,9.168777706,,,,,,,,,,,,,6.918956999,5.027324747,9.288376825,,,,6.889590143,66,957967,5.328408517,8.76524791,,,,,,,,,,,,,6.810280345,5.196961361,8.766180762,,,,13.44086022,,18600,,,250,,0.848571576,82426,97135,,,0.771,,,,,42.07602378,,,,,0.831628593,42848,51523,0.818640015,0.844617172,0.081460343,4139,50810,0.069479485,0.0934412,0.91176756,46977,51523,0.900775843,0.922759277,148003,,,,,0.269345892,39864,148003,,,0.138044499,20431,148003,,,0.024702202,3656,148003,,,0.004695851,695,148003,,,0.017972609,2660,148003,,,0.00047972,71,148003,,,0.036188456,5356,148003,,,0.898860158,133034,148003,,,0.005133486,683,133048,0.003140607,0.007126364,0.48974683,72484,148003,,,0.391680876,55359,141337,, -27,173,27173,MN,Yellow Medicine County,2024,1,6053.782816,112,25701,4279.41254,7828.153093,0,,,,2,,,,2,,,,2,,,,2,5008.728601,3488.762991,6965.928995,,,,,2,,0.139,,,0.117,0.166,3.216066307,,,2.545860556,4.007406446,4.652719059,,,3.718662195,5.663800258,0.050377834,40,794,0.035163919,0.065591749,0,,,,,,,,,,,,,0.043668122,0.028386682,0.058949562,,,,,,,0.192,,,0.152,0.237,0.38,,,0.301,0.464,8.5,0.094507041,0.064,,,0.238,,,0.191,0.289,0.464525609,4426,9528,,,0.188291602,,,0.15161542,0.229852701,0.375,3,8,0.179126284,0.556186502,148.8,14,9411,,,15.92193118,31,1947,10.81817975,22.59991038,,,,,,,,,,,,,8.392511298,4.468658806,14.35144992,,,,,,,0.063357826,457,7213,0.052634422,0.07408123,0.000531293,5,9411,,,1882.2,0.000421674,4,9486,,,2371.5,0.001054185,10,9486,,,948.6,957,,,,,,,,,812,0.51,,,,,,,,,0.52,0.38,,,,,,,,,0.38,0.925892317,6122,6612,0.908894971,0.942889664,0.654021938,1431,2188,0.589054293,0.718989583,0.028196982,142,5036,,,0.125,270,,0.082106383,0.167893617,0.05952381,0,0.259479724,,,,,,,0.151351351,0.014940099,0.287762604,0.076838032,0.049826944,0.10384912,3.954856449,123700,31278,3.613591666,4.296121231,0.184151283,409,2221,0.121817793,0.246484774,25.50207204,24,9411,,,68.23539142,33,48362,46.97010374,95.82785921,,,,,,,,,,,,,62.79653921,41.38331503,91.36566761,,,,6.1,,,,,0,,,,,0.100244499,410,4090,0.078209613,0.122279385,0.072749692,0.052757766,0.092741618,0.024205379,0.008060121,0.040350637,0.003422983,0,0.008987615,0.783807063,3640,4644,0.760362272,0.807251854,,,,,,,,,,,,,0.758229599,0.724943258,0.79151594,0.289,,4644,0.246122935,0.331877065,80.68290483,,,78.86348998,82.50231967,,,,,,,,,,,,,81.57698188,79.76955875,83.384405,,,,316.2839707,112,25701,252.9842951,379.5836463,,,,,,,,,,,,,277.2272906,219.136669,345.9922052,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.098,,,0.083,0.115,0.153,,,0.131,0.175,0.087,,,0.074,0.104,,,,,,0.064,620,,,,0.094507041,986.4644897,10438,,,,,,,,,,,,,,,,,,,,,,,,,,0.305,,,0.289,0.32,0.072841198,372,5107,0.059734815,0.085947581,0.041027953,91,2218,0.02792157,0.054134336,0.000843348,8,9486,,,1185.75,,,,,,,,,,,3.047146609,,,,,,,,,3.051788592,3.213337385,,,,,,,,,3.309820063,0.092822549,,,,,-829.886535,,,,,0.722291539,41102,56905,0.67470502,0.769878057,67543,,,58929.7234,76156.2766,70417,36405.93617,104428.0638,,,,11417,11023.80851,11810.19149,68333,37527.04255,99138.95745,70625,64696.14894,76553.85106,,,,,,0.347119646,470,1354,,,,,,,,0.362509809,,67543,,,4.830917874,3,621,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10,,1000,,,10,,0.748037889,5528,7390,,,0.699,,,,,6.726893247,,,,,0.829059829,3298,3978,0.804316901,0.853802757,0.081558442,314,3850,0.061513906,0.101602978,0.835093012,3322,3978,0.815752856,0.854433167,9486,,,,,0.231709888,2198,9486,,,0.21884883,2076,9486,,,0.006852203,65,9486,,,0.038794012,368,9486,,,0.006852203,65,9486,,,0.00073793,7,9486,,,0.056504322,536,9486,,,0.878347038,8332,9486,,,0.007889766,71,8999,0.001139882,0.01463965,0.490723171,4655,9486,,,1,9528,9528,, -28,000,28000,MS,Mississippi,2024,,12697.46147,62211,8303141,12549.80137,12845.12158,0,24941.88774,22097.34799,27786.42749,,4486.016773,3685.213642,5286.819904,,15896.10058,15631.13196,16161.0692,,6781.08662,6201.270302,7360.902938,,10947.1838,10762.93311,11131.4345,,,,,2,,0.209,,,0.195,0.224,3.731889649,,,3.424932126,4.038847173,4.670144623,,,4.264108485,5.076180762,0.120456746,30603,254058,0.119191037,0.121722455,0,0.064475348,0.052372786,0.076577909,0.096346589,0.085947741,0.106745437,0.169275838,0.167030856,0.171520821,0.073948046,0.069275413,0.078620678,0.085476498,0.083944595,0.087008401,0.084745763,0.034494736,0.134996789,0.101412714,0.088122543,0.114702886,0.203,,,0.185,0.223,0.394,,,0.374,0.415,4,0.113741429,0.163,,,0.302,,,0.283,0.321,0.5767697,1707976,2961279,,,0.156712125,,,0.139933924,0.1750925,0.186006826,654,3516,0.177853102,0.1942947,750,22126,2949965,,,28.64634976,20079,700927,28.25011341,29.04258612,53.23371469,46.32375648,60.14367289,3.079076277,1.92964071,4.661758487,34.40801144,33.74661535,35.06940753,37.84933617,35.54006736,40.15860498,23.51285593,23.0019637,24.02374816,,,,18.53473438,16.25530795,20.81416082,0.14331294,335624,2341896,0.137355493,0.149270386,0.000533227,1573,2949965,,,1875.37508,0.000515636,1516,2940057,,,1939.351583,0.002160502,6352,2940057,,,462.8553212,3423,,,,,9272,2962,4581,3794,3063,0.4,,,,,0.17,0.3,0.41,0.25,0.4,0.4,,,,,0.37,0.39,0.3,0.28,0.42,0.862268978,1697223,1968322,0.858786436,0.86575152,0.617381904,459171,743739,0.6082555,0.626508308,0.03928526,49147,1251029,,,0.264,175888,,0.250893617,0.277106383,0.419147694,0.334424262,0.503871127,0.144057413,0.103342797,0.184772029,0.421150046,0.410002437,0.432297654,0.328078122,0.296948404,0.35920784,0.133455986,0.125828186,0.141083786,5.332295114,109568,20548,5.229864393,5.434725835,0.362993683,250417,689866,0.354540858,0.371446508,12.45438505,3674,2949965,,,99.90224395,14849,14863530,98.29536667,101.5091212,108.5267163,86.18587812,134.8887992,46.84630664,36.84759191,58.72225103,95.85959461,93.28800078,98.43118843,49.03645378,42.88354873,55.18935883,108.0709315,105.8448312,110.2970318,,,,9,,,,,0.256097561,,,,,0.141928984,158485,1116650,0.138200039,0.145657929,0.116601334,0.113375106,0.119827561,0.023700354,0.022255252,0.025145456,0.009658353,0.008730083,0.010586623,0.836006866,1030651,1232826,0.832862382,0.839151349,0.734481997,0.654322166,0.814641828,0.722225804,0.681479611,0.762971998,0.834023003,0.827871428,0.840174578,0.769869606,0.74719105,0.792548162,0.843346832,0.838951429,0.847742236,0.337,,1232826,0.33153991,0.34246009,72.52806566,,,72.42140523,72.6347261,70.93524278,67.21629996,74.65418561,83.25003759,81.86040891,84.63966626,69.92898931,69.74763413,70.11034449,88.85159412,86.37066453,91.33252371,73.82683966,73.69142762,73.96225171,,,,601.0725925,62211,8303141,596.1667243,605.9784607,1034.968977,936.7596208,1133.178333,235.5645623,205.6317081,265.4974166,735.6676192,726.5269657,744.8082726,283.0104205,260.0811406,305.9397004,538.7849383,532.7645729,544.8053037,,,,84.53920995,2634,3115714,81.31066847,87.76775144,103.502751,62.31541736,161.6323668,35.99005366,17.96610512,64.39614747,110.8237618,105.1036261,116.5438974,56.04478429,44.88957473,69.13103437,68.10297274,63.96785118,72.23809431,,,,8.726700369,2251,257944,8.366189479,9.08721126,,,,,,,11.93583122,11.2889793,12.58268313,4.515634319,3.382519974,5.90656087,6.421559192,5.985732789,6.857385594,,,,,,,0.11842241,,,0.106786985,0.131139487,0.152364666,,,0.136676905,0.16949954,0.137,,,0.124,0.149,399.8,9873,2469222,,,0.163,480600,,,,0.113741429,337504.602,2967297,,,19.86978376,1767,8892900,18.94331466,20.79625286,,,,,,,10.19770959,9.113734627,11.28168456,12.53976425,8.873883514,17.21180616,27.35925036,25.90941991,28.80908081,,,,0.353365152,,,0.336422149,0.370684783,0.175898937,294436,1673893,0.167558512,0.184239363,0.065047068,45654,701861,0.056706642,0.073387493,0.001539426,4526,2940057,,,649.5927972,0.886363553,28891.02,32595,,,0.089944705,15567,173073,0.081875338,0.098014073,2.997091054,,,,,,3.447544425,2.697026566,2.86378256,3.337449585,2.995309012,,,,,,3.794430231,2.696948026,2.983675252,3.317407664,0.277930066,,,,,-11395.64,,,,,0.75578466,39000,51602,0.742392417,0.769176902,52788,,,51741.87234,53834.12766,44258,38872.46809,49643.53192,73869,65998.02128,81739.97872,36263,35557.6383,36968.3617,48652,45034.6383,52269.3617,65751,64696.53192,66805.46809,,,,,,0.996373279,440394,441997,,,51.62505338,,,,,0.170564801,,,,,6.425381425,,,,,14.71844804,3068,20844589,14.19762473,15.23927134,11.55090097,5.968519087,20.17709942,4.948757862,2.470402094,8.854694803,29.50878008,28.30331491,30.71424525,7.346448213,5.452675464,9.685376111,5.829881512,5.39393076,6.265832264,,,,14.61739021,2187,14863530,13.99028132,15.2444991,14.71386676,18.28413851,9.735533698,31.26643369,7.33304916,3.789093508,12.80936114,6.186960683,5.515458109,6.858463258,5.391697781,3.553162812,7.844637196,20.60650389,19.60852151,21.60448628,,,,25.58611582,3803,14863530,24.772916,26.39931563,,,,12.49234844,7.630650967,19.29341897,35.68246806,34.11350751,37.25142861,9.445546425,6.940232233,12.56057436,20.66167245,19.68831354,21.63503137,,,,25.41666809,5298,20844589,24.73225436,26.10108181,40.4281534,29.13705696,54.6471188,12.59683819,8.370507498,18.20593848,26.85529725,25.70530736,28.00528714,17.33761778,14.20934589,20.46588967,25.44951187,24.53866096,26.36036278,,,,,,,,,,,0.586988274,1313759,2238135,,,,,,,,41.11510673,,,,,0.691595862,775465,1121269,0.686243387,0.696948336,0.130536446,138003,1057199,0.126960532,0.134112359,0.800234377,897278,1121269,0.794184396,0.806284359,2940057,,,,,0.230628522,678061,2940057,,,0.172629306,507540,2940057,,,0.373676089,1098629,2940057,,,0.006426406,18894,2940057,,,0.011625285,34179,2940057,,,0.00068264,2007,2940057,,,0.035672438,104879,2940057,,,0.560325871,1647390,2940057,,,0.00713587,19842,2780600,0.006551294,0.007720446,0.514031191,1511281,2940057,,,0.537095289,1590489,2961279,, -28,001,28001,MS,Adams County,2024,1,13186.50876,741,82551,11638.32415,14734.69336,0,,,,2,,,,2,17999.80036,15509.71191,20489.88881,,,,,2,10056.56866,7785.913245,12327.22408,,,,,2,,0.273,,,0.239,0.31,4.252637408,,,3.421706303,5.156768619,4.871825789,,,3.869725082,5.887096539,0.136938509,314,2293,0.122867096,0.151009922,0,,,,,,,0.167878387,0.149045045,0.18671173,,,,0.073270014,0.05445684,0.092083188,,,,,,,0.228,,,0.189,0.27,0.443,,,0.373,0.515,5.3,0.15403407,0.185,,,0.367,,,0.313,0.421,0.586532602,17325,29538,,,0.12600889,,,0.099302036,0.156750382,0.347826087,8,23,0.236887913,0.456754526,681.9,196,28742,,,36.39268596,205,5633,31.41080609,41.37456582,,,,,,,41.42931124,35.00977295,47.84884952,,,,27.11426727,19.54157891,36.65061251,,,,,,,0.165345023,3357,20303,0.142706725,0.187983321,0.00076543,22,28742,,,1306.454546,0.00052802,15,28408,,,1893.866667,0.001232047,35,28408,,,811.6571429,3185,,,,,,,4287,,2344,0.45,,,,,,,0.45,,0.46,0.45,,,,,,,0.38,,0.51,0.825189637,16753,20302,0.797353606,0.853025667,0.53837124,3669,6815,0.471894362,0.604848118,0.051581647,543,10527,,,0.447,2525,,0.343340426,0.550659575,,,,,,,0.542368555,0.460209192,0.624527919,,,,0.088036117,0.037522284,0.138549951,6.287019699,83938,13351,4.89401554,7.680023858,0.469301008,2981,6352,0.374633113,0.563968902,14.26483891,41,28742,,,128.3697048,195,151905,110.3519236,146.3874859,,,,,,,126.0467496,101.4641937,150.6293055,,,,164.9553323,132.472677,202.9917307,,,,8.4,,,,,0,,,,,0.139263253,1550,11130,0.112289888,0.166236617,0.136078615,0.106899341,0.165257889,0.008086253,0.000285943,0.015886564,0.004941599,0.000997546,0.008885653,0.9020572,8989,9965,0.877712645,0.926401755,,,,,,,0.891749671,0.843074673,0.940424669,,,,0.904592902,0.868720606,0.940465198,0.2,,9965,0.133671381,0.266328619,72.05215716,,,70.96763276,73.13668156,,,,,,,68.55150102,66.98033626,70.12266577,94.92452371,69.25739594,120.5916515,74.57890718,72.94178882,76.21602553,,,,623.1534064,741,82551,575.2175117,671.089301,,,,,,,811.3704031,732.6733096,890.0674967,,,,510.8701254,438.6523678,583.0878829,,,,113.1605749,30,26511,76.34896466,161.5437569,,,,,,,159.9817164,106.3066887,231.2181233,,,,,,,,,,9.51986755,23,2416,6.034779403,14.28447554,,,,,,,13.81909548,8.660353563,20.92227663,,,,,,,,,,,,,0.142,,,0.124,0.164,0.172,,,0.149,0.197,0.159,,,0.138,0.181,477.8,118,24694,,,0.185,5530,,,,0.15403407,4974.838342,32297,,,13.37643518,12,89710,6.911799252,23.36594031,,,,,,,,,,,,,,,,,,,0.373,,,0.361,0.384,0.200618321,2985,14879,0.172022576,0.229214066,0.071316204,408,5721,0.048677906,0.093954501,0.001795269,51,28408,,,557.0196078,0.9,199.8,222,,,0.210978836,319,1512,0.109133479,0.312824193,2.447927645,,,,,,,2.4235711,,2.506002551,2.676417206,,,,,,,2.633469133,,2.857478733,0.033852236,,,,,-25188.25,,,,,0.834528382,37593,45047,0.625227119,1.043829644,39547,,,33786.14894,45307.85106,,,,140611,44021.7234,237200.2766,26527,23124.10638,29929.89362,,,,50435,43126.40426,57743.59575,,,,,,1,2829,2829,,,54.16573556,,,,,0.201785218,,39547,,,7.492507493,15,2002,,,27.0513556,58,214407,20.54122845,34.97015011,,,,,,,41.5473286,30.52741431,55.2491393,,,,,,,,,,12.07005313,19,151905,7.031250745,19.32532431,12.50781739,,,,,,,,,,,,,29.05683545,15.01409088,50.75644395,,,,40.15667687,61,151905,30.71667592,51.58293138,,,,,,,51.16749242,36.71867597,69.41448111,,,,37.06861401,22.64247245,57.24946789,,,,23.32013414,50,214407,17.30865305,30.74468962,,,,,,,27.40355716,18.61938756,38.89716197,,,,24.58846672,14.80386319,38.3979366,,,,38.51851852,,2700,,,78,26,0.610019951,13759,22555,,,0.576,,,,,56.12819312,,,,,0.650025822,7552,11618,0.616034625,0.684017019,0.14478504,1502,10374,0.111510977,0.178059102,0.813048718,9446,11618,0.771446517,0.854650918,28408,,,,,0.203076598,5769,28408,,,0.21381301,6074,28408,,,0.545128133,15486,28408,,,0.006441847,183,28408,,,0.005843424,166,28408,,,0.00024641,7,28408,,,0.067269783,1911,28408,,,0.366481273,10411,28408,,,0.040950308,1129,27570,0.020573582,0.061327035,0.493874965,14030,28408,,,0.364784346,10775,29538,, -28,003,28003,MS,Alcorn County,2024,1,12760.18572,790,99475,11399.46747,14120.90398,0,,,,2,,,,2,14757.92606,10835.31482,18680.53731,,,,,2,12785.43085,11252.48873,14318.37298,,,,,2,,0.221,,,0.185,0.257,4.068533252,,,3.186431631,4.98576076,5.136605124,,,4.018313256,6.239154644,0.118567455,341,2876,0.106752314,0.130382596,0,,,,,,,0.191588785,0.154303678,0.228873892,0.103658537,0.057006197,0.150310876,0.106999554,0.094206971,0.119792138,,,,,,,0.22,,,0.178,0.267,0.387,,,0.309,0.464,6.2,0.078058532,0.179,,,0.304,,,0.25,0.36,0.525331031,18250,34740,,,0.155690668,,,0.122139382,0.190964646,0.210526316,8,38,0.128437926,0.302220151,395.9,136,34349,,,35.31550247,272,7702,31.11852141,39.51248352,,,,,,,46.31379962,34.26320392,61.22929924,62.71777004,37.17052537,99.12111592,33.13648294,28.56679232,37.70617356,,,,,,,0.147407299,4031,27346,0.128343469,0.166471129,0.000436694,15,34349,,,2289.933333,0.000584727,20,34204,,,1710.2,0.003186762,109,34204,,,313.7981651,4218,,,,,,,5287,,4077,0.35,,,,,,,0.33,,0.35,0.42,,,,,,0.27,0.37,0.23,0.42,0.818978769,19712,24069,0.787437099,0.85052044,0.505479133,4336,8578,0.436709345,0.57424892,0.035934088,543,15111,,,0.248,1850,,0.161021277,0.334978723,,,,0.375,0,0.946085343,0.540677966,0.208302246,0.873053687,0.041666667,0,0.170410054,0.120797227,0.073916762,0.167677692,5.164283375,94620,18322,4.286836937,6.041729813,0.28600483,2250,7867,0.23124745,0.340762211,10.18952517,35,34349,,,106.4028169,194,182326,91.42983391,121.3758,,,,,,,111.691909,72.28111445,164.879291,,,,107.75217,91.15918239,124.3451576,,,,8.3,,,,,0,,,,,0.10403833,1520,14610,0.073834287,0.134242372,0.084650509,0.057346881,0.111954138,0.013347023,0.004490275,0.022203771,0.009240246,0,0.018868572,0.87960688,12530,14245,0.856573224,0.902640535,,,,,,,0.681936042,0.498469633,0.86540245,,,,0.905657238,0.864998255,0.946316221,0.268,,14245,0.22607718,0.30992282,72.37023561,,,71.40437882,73.3360924,,,,,,,70.91452411,68.08856722,73.74048099,,,,72.29015399,71.21680413,73.36350385,,,,601.5008681,790,99475,557.6207606,645.3809756,,,,,,,724.5068573,582.845637,866.1680776,,,,597.9893441,550.2088117,645.7698765,,,,94.71015906,34,35899,65.58953838,132.3479543,,,,,,,,,,,,,101.944222,67.74119514,147.3377847,,,,10.48714479,31,2956,7.125506082,14.88566492,,,,,,,,,,,,,9.598603839,6.015393923,14.53240157,,,,,,,0.131,,,0.111,0.152,0.177,,,0.153,0.204,0.114,,,0.097,0.132,179,52,29049,,,0.179,6260,,,,0.078058532,2892.615028,37057,,,13.8643695,15,108191,7.75978236,22.86716905,,,,,,,,,,,,,13.48390359,6.967329747,23.55366599,,,,0.331,,,0.315,0.345,0.1776216,3513,19778,0.152600323,0.202642876,0.072378324,577,7972,0.050931516,0.093825133,0.00216349,74,34204,,,462.2162162,0.934060774,338.13,362,,,,,,,,3.063121212,,,,,,,2.653514447,,3.234093782,2.799657081,,,,,,,2.294056811,,2.996072842,0.171275509,,,,,-4226.1655,,,,,0.740062796,33234,44907,0.605282998,0.874842595,49627,,,44280.78723,54973.21277,,,,63571,62680.95745,64461.04255,20064,16656.34043,23471.65957,,,,50101,45125.34043,55076.65957,,,,,,0.994140625,5599,5632,,,47.37141289,,,,,0.163701211,,49627,,,5.5,11,2000,,,10.89417862,28,257018,7.239102575,15.74512133,,,,,,,41.16920543,21.92086801,70.40059511,,,,6.129762354,3.263840292,10.48208031,,,,21.53812266,42,182326,15.3157107,29.4433227,23.0356614,,,,,,,,,,,,,23.86293472,16.71330611,33.0363602,,,,25.77800204,47,182326,18.9407063,34.27927796,,,,,,,49.14443998,24.53272737,87.93297821,,,,22.61465297,15.66130459,31.6017108,,,,26.45729093,68,257018,20.54512165,33.54092054,,,,,,,,,,,,,27.3481705,20.76661245,35.3538522,,,,17.69230769,,3900,,,31,38,0.557957958,15793,28305,,,0.605,,,,,28.2501729,,,,,0.659105546,9211,13975,0.62291258,0.695298512,0.108598315,1431,13177,0.079850585,0.137346046,0.731949911,10229,13975,0.6890254,0.774874421,34204,,,,,0.222400889,7607,34204,,,0.191147234,6538,34204,,,0.12364051,4229,34204,,,0.004940943,169,34204,,,0.006665887,228,34204,,,0.000438545,15,34204,,,0.03777336,1292,34204,,,0.814875453,27872,34204,,,0.002437464,80,32821,0,0.006982372,0.508946322,17408,34204,,,0.641220495,22276,34740,, -28,005,28005,MS,Amite County,2024,1,14426.8897,310,33191,11764.65122,17089.12817,0,,,,2,,,,2,19684.50339,14940.25472,24428.75207,,,,,2,11418.56016,8187.172116,14649.94821,,,,,2,,0.264,,,0.232,0.298,4.375992996,,,3.478676772,5.382693208,5.007796126,,,3.927976889,6.240996476,0.117441861,101,860,0.095924452,0.138959269,0,,,,,,,0.166666667,0.127843747,0.205489586,,,,0.065439673,0.043520414,0.087358932,,,,,,,0.238,,,0.199,0.281,0.419,,,0.336,0.504,5.5,0.068106303,0.217,,,0.359,,,0.304,0.413,0.263757862,3355,12720,,,0.119530916,,,0.092071749,0.151219664,0.260869565,6,23,0.151021274,0.378411613,411.5,52,12637,,,23.38435374,55,2352,17.61629548,30.43795067,,,,,,,22.47191011,14.39817683,33.43642097,,,,24.79338843,16.72799506,35.39410363,,,,,,,0.156694538,1443,9209,0.135247729,0.178141347,0.000158265,2,12637,,,6318.5,0.000237737,3,12619,,,4206.333333,0.000158491,2,12619,,,6309.5,3796,,,,,,,4240,,3578,0.37,,,,,,,0.39,,0.37,0.2,,,,,,,0.14,,0.23,0.875410554,7996,9134,0.839986154,0.910834954,0.56525497,1308,2314,0.450318357,0.680191583,0.052386496,225,4295,,,0.282,711,,0.178340426,0.385659575,,,,,,,0.618421053,0.456573517,0.780268589,,,,0.171792948,0.064989033,0.278596864,5.521974714,73376,13288,3.812744433,7.231204995,0.440384615,1145,2600,0.307674624,0.573094607,13.45255994,17,12637,,,85.60537537,53,61912,64.12430051,111.9739387,,,,,,,114.2344254,75.90794605,165.1005505,,,,69.97313032,45.28292053,103.2941438,,,,8.4,,,,,0,,,,,0.131117267,710,5415,0.086066098,0.176168435,0.117475728,0.071258438,0.163693018,0.018467221,0,0.036957469,0.002585411,0,0.007428689,0.79189044,2949,3724,0.697014764,0.886766117,,,,,,,,,,,,,0.812238055,0.693791261,0.930684849,0.495,,3724,0.360673115,0.629326885,73.07973863,,,71.22304743,74.93642983,,,,,,,69.53051498,66.48321972,72.57781024,,,,75.22549657,72.87960276,77.57139038,,,,637.6311935,310,33191,556.5991909,718.6631961,,,,,,,869.2552264,716.2397415,1022.270711,,,,511.3902573,417.352416,605.4280985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.146,,,0.127,0.167,0.184,,,0.16,0.211,0.147,,,0.127,0.17,276.4,30,10853,,,0.217,2770,,,,0.068106303,894.3038683,13131,,,,,,,,,,,,,,,,,,,,,,,,,,0.361,,,0.348,0.374,0.186423054,1255,6732,0.157827309,0.215018799,0.078967643,205,2596,0.053946366,0.103988919,0.000871701,11,12619,,,1147.181818,0.725,45.675,63,,,,,,,,2.600740147,,,,,,,2.605655889,,,2.29963353,,,,,,,2.326366132,,,0.004704619,,,,,-32470.71,,,,,0.51683688,28947,56008,0.316143751,0.71753001,45433,,,38709.42553,52156.57447,,,,,,,20602,15084.21277,26119.78723,,,,51753,44033.34043,59472.65957,,,,,,0.996613996,883,886,,,22.93790372,,,,,0.16622279,,45433,,,4.784688995,2,418,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.15195762,10,61912,7.745491498,29.70402514,,,,,,,,,,,,,,,,,,,29.90430622,26,86944,19.53448566,43.81673731,,,,,,,34.7705146,17.96643228,60.73709159,,,,27.89011296,15.24778428,46.79487045,,,,,,1200,,,-888,-888,0.736917563,7196,9765,,,0.438,,,,,0.311621149,,,,,0.809393212,4722,5834,0.757775445,0.861010979,0.089902653,471,5239,0.046635132,0.133170174,0.687521426,4011,5834,0.635564497,0.739478356,12619,,,,,0.203185672,2564,12619,,,0.260797211,3291,12619,,,0.384737301,4855,12619,,,0.00412077,52,12619,,,0.002535859,32,12619,,,0.000237737,3,12619,,,0.016800063,212,12619,,,0.58475315,7379,12619,,,0.003245402,39,12017,0,0.011923176,0.513669863,6482,12619,,,1,12720,12720,, -28,007,28007,MS,Attala County,2024,1,12944.07639,411,49314,10980.24273,14907.91005,0,,,,2,,,,2,17323.35009,14004.62728,20642.0729,,,,,2,9946.586872,7464.369023,12428.80472,,,,,2,,0.257,,,0.225,0.294,4.332087883,,,3.459613223,5.249325641,4.959462188,,,3.920397754,6.048811457,0.139375,223,1600,0.122404466,0.156345534,0,,,,,,,0.192583732,0.165852961,0.219314503,,,,0.080711354,0.060964831,0.100457878,,,,,,,0.23,,,0.193,0.271,0.432,,,0.357,0.508,5.3,0.154084511,0.184,,,0.336,,,0.285,0.39,0.351221421,6283,17889,,,0.122083698,,,0.095755208,0.152026224,0.157894737,3,19,0.054083319,0.295484356,676.4,120,17742,,,30.51643193,130,4260,25.27055438,35.76230947,,,,,,,36.00576092,28.32081503,45.1335331,,,,27.17948718,20.35930099,35.55143843,,,,,,,0.159126927,2209,13882,0.137680118,0.180573736,0.000507271,9,17742,,,1971.333333,0.000342681,6,17509,,,2918.166667,0.000399794,7,17509,,,2501.285714,2977,,,,,,,4114,,2722,0.47,,,,,,,0.46,,0.49,0.45,,,,,,,0.37,,0.48,0.840846995,9848,11712,0.804332637,0.877361353,0.529578189,2059,3888,0.433368435,0.625787944,0.042528401,292,6866,,,0.33,1422,,0.225148936,0.434851064,,,,,,,0.515179823,0.415384552,0.614975093,0.286624204,0,0.860974735,0.225690891,0.13790292,0.313478861,6.948602403,106397,15312,5.335143225,8.562061582,0.487299465,2187,4488,0.385724059,0.588874872,12.96358922,23,17742,,,95.85509354,87,90762,76.77600046,118.2369038,,,,,,,89.02001679,62.00570339,123.8052938,,,,107.9823906,80.64641416,141.6045389,,,,9.2,,,,,0,,,,,0.152394775,1050,6890,0.112093802,0.192695749,0.119676946,0.079742452,0.159611439,0.025399129,0.009976279,0.040821979,0.013788099,0.003509396,0.024066801,0.830816149,5721,6886,0.820765256,0.840867041,,,,,,,0.790530108,0.720865491,0.860194725,,,,0.864272891,0.799800072,0.928745709,0.355,,6886,0.288468361,0.421531639,71.78137596,,,70.44985049,73.11290142,,,,,,,68.96149413,66.83823125,71.084757,,,,73.80195699,72.04857285,75.55534114,,,,629.3056283,411,49314,565.0836179,693.5276387,,,,,,,813.5592624,698.7842525,928.3342722,,,,514.1703309,437.8605775,590.4800842,,,,80.98805426,16,19756,46.29167065,131.5195262,,,,,,,,,,,,,,,,,,,15.2998776,25,1634,9.901274081,22.58563751,,,,,,,,,,,,,,,,,,,,,,0.141,,,0.124,0.162,0.181,,,0.158,0.207,0.145,,,0.125,0.165,313.9,46,14653,,,0.184,3310,,,,0.154084511,3014.509364,19564,,,,,,,,,,,,,,,,,,,,,,,,,,0.375,,,0.362,0.388,0.198812129,1908,9597,0.170216384,0.227407874,0.072492773,326,4497,0.049854475,0.095131071,0.001028043,18,17509,,,972.7222222,0.875,182.875,209,,,,,,,,3.036035758,,,,,,,2.79887772,,3.38736323,3.173462459,,,,,,,3.016278553,,3.439605668,0.132441284,,,,,-14036.58,,,,,0.736062454,34037,46242,0.659490319,0.812634589,44404,,,38938.6383,49869.3617,,,,,,,29089,24242.02128,33935.97872,42714,14383.95745,71044.04255,50020,44016.08511,56023.91489,,,,,,0.9953125,3185,3200,,,33.72698545,,,,,0.156900279,,44404,,,5.249343832,6,1143,,,12.4282463,16,128739,7.103816601,20.18269335,,,,,,,19.85667094,9.91237859,35.52906929,,,,,,,,,,10.11027066,10,90762,4.623059544,19.19244301,11.01782684,,,,,,,,,,,,,,,,,,,20.933871,19,90762,12.60355784,32.6908327,,,,,,,,,,,,,20.76584434,9.958029521,38.18912709,,,,38.83826968,50,128739,28.82651235,51.20341673,,,,,,,43.32364569,27.75827726,64.46215065,,,,37.76928776,24.67215273,55.34075754,,,,17.72727273,,2200,,,15,24,0.647559633,8823,13625,,,0.529,,,,,13.7793274,,,,,0.752020282,4746,6311,0.717601693,0.786438871,0.148371937,884,5958,0.100778073,0.195965801,0.771193155,4867,6311,0.732301783,0.810084527,17509,,,,,0.250099949,4379,17509,,,0.194471415,3405,17509,,,0.43697527,7651,17509,,,0.004169284,73,17509,,,0.004968873,87,17509,,,0.000171341,3,17509,,,0.023987664,420,17509,,,0.52156034,9132,17509,,,0.001969326,33,16757,0,0.00811108,0.519789822,9101,17509,,,0.62457376,11173,17889,, -28,009,28009,MS,Benton County,2024,1,13751.13336,194,22303,10703.54858,16798.71815,0,,,,2,,,,2,14244.28551,9387.073905,20724.68756,,,,,2,14794.53795,10568.62962,19020.44629,,,,,2,,0.239,,,0.205,0.275,4.209072398,,,3.360312009,5.177502534,5.034988783,,,3.996797405,6.176355719,0.093603744,60,641,0.071054462,0.116153026,0,,,,,,,0.131707317,0.085414121,0.178000513,,,,0.079710145,0.053620089,0.105800201,,,,,,,0.224,,,0.183,0.266,0.431,,,0.349,0.511,5.9,0.169567968,0.152,,,0.327,,,0.273,0.38,0.66518441,5086,7646,,,0.144513924,,,0.113505415,0.177819286,0.15,3,20,0.050642257,0.283837277,497,38,7646,,,42.6152948,73,1713,33.4035884,53.58233519,,,,,,,28.10650888,16.92195439,43.89179522,,,,57.36782902,42.7141168,75.42810054,,,,,,,0.175735657,1069,6083,0.153097359,0.198373955,0.000130787,1,7646,,,7646,0.000264901,2,7550,,,3775,0.000529801,4,7550,,,1887.5,4596,,,,,,,8157,,3946,0.3,,,,,,,0.25,,0.31,0.39,,,,,,,0.3,,0.41,0.779992617,4226,5418,0.732487711,0.827497523,0.608337905,1109,1823,0.449946993,0.766728816,0.049459548,151,3053,,,0.36,555,,0.255148936,0.464851064,,,,,,,0.347747748,0.150588405,0.544907091,,,,0.242456897,0.161544154,0.323369639,4.883509324,86946,17804,3.379249695,6.387768952,0.331464175,532,1605,0.202551789,0.46037656,7.847240387,6,7646,,,139.5724675,57,40839,105.7108239,180.8323206,,,,,,,139.8992725,85.45411014,216.0630799,,,,149.9432647,105.573896,206.677039,,,,8.4,,,,,0,,,,,0.098901099,315,3185,0.055803566,0.141998632,0.083992095,0.038670317,0.129313873,0.020094192,0.001696862,0.038491521,0.001255887,0,0.008604831,0.900465116,2904,3225,0.823092359,0.977837873,,,,,,,,,,,,,0.837445573,0.69159695,0.983294197,0.528,,3225,0.417018666,0.638981334,71.56080023,,,69.54340017,73.5782003,,,,,,,70.41294694,66.80261985,74.02327403,,,,71.20982545,68.56079062,73.85886028,,,,643.9234422,194,22303,546.9688048,740.8780796,,,,,,,715.260137,553.1821381,909.9862678,,,,652.7842567,523.4151531,782.1533604,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.133,,,0.115,0.153,0.176,,,0.152,0.2,0.128,,,0.11,0.147,354.6,23,6486,,,0.152,1170,,,,0.169567968,1480.158793,8729,,,,,,,,,,,,,,,,,,,,,,,,,,0.351,,,0.339,0.363,0.20954495,944,4505,0.179757716,0.239332184,0.082134293,137,1668,0.055921527,0.108347059,0.001059603,8,7550,,,943.75,0.825,73.425,89,,,,,,,,3.106457927,,,,,,,2.765944116,,3.383805096,3.36962952,,,,,,,3.34062487,,3.301105039,0.319619096,,,,,-15119.11,,,,,0.925165728,33355,36053,0.763485767,1.08684569,43247,,,36872.53192,49621.46809,,,,,,,53384,45222.29787,61545.70213,21213,21067.6383,21358.3617,38984,36046.97872,41921.02128,,,,,,1,917,917,,,49.63537636,,,,,0.151316854,,43247,,,5.813953488,2,344,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,54.11538797,31,57285,36.76878062,76.8124736,,,,,,,,,,,,,63.58565277,39.84879006,96.26944243,,,,,,800,,,-888,-888,0.690104586,4289,6215,,,0.511,,,,,7.238276694,,,,,0.809786131,2499,3086,0.753807069,0.865765193,0.103205354,293,2839,0.04597842,0.160432288,0.617952042,1907,3086,0.551825788,0.684078295,7550,,,,,0.20807947,1571,7550,,,0.194966887,1472,7550,,,0.341192053,2576,7550,,,0.004635762,35,7550,,,0.002516556,19,7550,,,0.000397351,3,7550,,,0.034437086,260,7550,,,0.605165563,4569,7550,,,0.01012035,74,7312,0,0.023955275,0.503178808,3799,7550,,,1,7646,7646,, -28,011,28011,MS,Bolivar County,2024,1,17975.70102,916,85431,16277.96641,19673.43563,0,,,,2,,,,2,21125.46582,18828.73017,23422.20147,,,,,2,12489.37949,10072.67274,14906.08625,,,,,2,,0.285,,,0.245,0.33,4.489954047,,,3.578215762,5.506653631,5.398422695,,,4.306636237,6.627052043,0.143402778,413,2880,0.130602278,0.156203278,0,,,,,,,0.168141593,0.151888243,0.184394943,,,,0.085078534,0.065294662,0.104862406,,,,,,,0.233,,,0.189,0.283,0.448,,,0.371,0.528,3.8,0.278196699,0.197,,,0.374,,,0.315,0.436,0.41481362,12853,30985,,,0.116150248,,,0.090086845,0.147284605,0.055555556,2,36,0.009606159,0.144960019,1052.5,319,30308,,,36.68341709,292,7960,32.47581725,40.89101692,,,,,,,46.47647837,40.66854359,52.28441315,,,,16.14273577,11.4235606,22.15716607,,,,,,,0.144975146,3354,23135,0.124719827,0.165230465,0.000494919,15,30308,,,2020.533333,0.000442629,13,29370,,,2259.230769,0.000885257,26,29370,,,1129.615385,4826,,,,,,,5018,11033,4613,0.33,,,,,,,0.33,,0.33,0.36,,,,,,0.73,0.29,,0.42,0.822311989,16489,20052,0.802007175,0.842616803,0.63053994,4823,7649,0.554762712,0.706317168,0.047948903,533,11116,,,0.392,2762,,0.257361702,0.526638298,,,,,,,0.596673148,0.557327927,0.636018368,,,,0.172969622,0.070057907,0.275881337,6.768492843,90312,13343,5.7197311,7.817254585,0.442592346,3319,7499,0.374327953,0.510856738,14.847565,45,30308,,,102.3607764,158,154356,86.39973958,118.3218132,,,,,,,112.0824927,91.13666583,133.0283196,,,,91.92278486,67.29903163,122.6121133,,,,9.1,,,,,1,,,,,0.171275279,2075,12115,0.138997888,0.20355267,0.140008485,0.112703283,0.167313688,0.030953364,0.014297522,0.047609205,0.009079653,0.00463869,0.013520616,0.841278796,8947,10635,0.793816318,0.888741275,,,,,,,0.812596799,0.76063209,0.864561508,,,,0.822096049,0.761831421,0.882360678,0.212,,10635,0.173853728,0.250146272,68.11079877,,,67.07421256,69.14738498,,,,,,,65.65285194,64.35962785,66.94607603,,,,72.36265913,70.68815544,74.03716282,,,,864.0398663,916,85431,805.4599441,922.6197885,,,,,,,996.7559992,917.495852,1076.016147,,,,654.0701751,566.2205218,741.9198284,,,,103.8236777,35,33711,72.31699565,144.3936026,,,,,,,134.1875162,91.17390693,190.4684681,,,,,,,,,,8.66377874,26,3001,5.659467916,12.69444321,,,,,,,10.81843838,6.857961918,16.23296938,,,,,,,,,,,,,0.151,,,0.129,0.176,0.185,,,0.158,0.214,0.174,,,0.15,0.2,476.8,119,24959,,,0.197,6160,,,,0.278196699,9499.026272,34145,,,10.9795999,10,91078,5.265144927,20.19187514,,,,,,,,,,,,,,,,,,,0.368,,,0.352,0.382,0.18236099,2932,16078,0.154956735,0.209765246,0.062178272,459,7382,0.043114442,0.081242101,0.001327886,39,29370,,,753.0769231,0.822464789,291.975,355,,,0.089125561,159,1784,0.034666119,0.143585002,2.651179011,,,,,,,2.550307636,,3.189566038,2.536509177,,,,,,,2.43299342,,2.996933409,0.193479584,,,,,-23082.91,,,,,0.737893747,34529,46794,0.579530434,0.89625706,39984,,,35926.97872,44041.02128,,,,106250,78715.87234,133784.1277,27280,24644.42553,29915.57447,,,,67463,55581.46809,79344.53192,,,,,,1,4650,4650,,,55.69451031,,,,,0.216361545,,39984,,,8.687258687,18,2072,,,24.49924007,54,220415,18.40458316,31.96619395,,,,,,,34.25097401,25.25396442,45.41182242,,,,,,,,,,9.298437052,13,154356,4.804638111,16.24249826,8.422089196,,,,,,,,,,,,,19.6792597,8.99861066,37.35736489,,,,33.04050377,51,154356,24.60082526,43.44216058,,,,,,,41.77620183,29.9793237,56.67413499,,,,19.9832141,9.582727901,36.74984222,,,,31.30458453,69,220415,24.35683531,39.61795526,,,,,,,37.81878381,28.32886425,49.46790037,,,,19.54897717,10.68760773,32.79986193,,,,21.5625,,3200,,,26,43,0.59343696,13744,23160,,,0.561,,,,,36.98493478,,,,,0.596035543,6976,11704,0.569023419,0.623047668,0.14957265,1610,10764,0.119676102,0.179469197,0.746240602,8734,11704,0.71701029,0.775470913,29370,,,,,0.243820225,7161,29370,,,0.173884917,5107,29370,,,0.632822608,18586,29370,,,0.001906708,56,29370,,,0.009703779,285,29370,,,0.000578822,17,29370,,,0.023765747,698,29370,,,0.325059585,9547,29370,,,0.006687565,192,28710,0.000264059,0.013111071,0.532039496,15626,29370,,,0.537001775,16639,30985,, -28,013,28013,MS,Calhoun County,2024,1,14437.63192,338,38047,12092.51657,16782.74727,0,,,,2,,,,2,16893.67346,12498.03263,22334.33223,,,,,2,12939.07539,10190.53883,15687.61196,,,,,2,,0.252,,,0.218,0.289,4.313828493,,,3.42096989,5.286197432,4.951556388,,,3.901508796,6.101755589,0.1255449,144,1147,0.106369578,0.144720221,0,,,,,,,0.217008798,0.173256991,0.260760605,0.083969466,0.036475756,0.131463175,0.08819133,0.066702745,0.109679915,,,,,,,0.238,,,0.196,0.282,0.417,,,0.338,0.496,6.9,0.01149334,0.179,,,0.337,,,0.285,0.392,0.154454998,2049,13266,,,0.129487603,,,0.101532337,0.162018004,0.3,6,20,0.18023908,0.422795722,614.5,80,13018,,,39.06762968,119,3046,32.04823515,46.08702421,,,,,,,41.9921875,30.38995431,56.56320099,90.12875537,55.7911201,137.7713765,32.03261503,24.13134943,41.69485147,,,,,,,0.17713114,1814,10241,0.154492842,0.199769437,0.000153633,2,13018,,,6509,0.000234723,3,12781,,,4260.333333,7.82411E-05,1,12781,,,12781,2043,,,,,,,2740,,1900,0.39,,,,,,,0.47,,0.38,0.35,,,,,,,0.31,,0.35,0.783157437,7198,9191,0.755612234,0.810702639,0.522689076,1555,2975,0.439508465,0.605869686,0.041235207,223,5408,,,0.34,946,,0.257787234,0.422212766,,,,,,,0.394426581,0.249702794,0.539150368,0.558333333,0.403023005,0.713643662,0.180656934,0.10864003,0.252673839,4.261516195,85388,20037,3.620317492,4.902714898,0.338693467,1011,2985,0.256641122,0.420745813,13.0588416,17,13018,,,119.0678687,84,70548,94.97319519,147.4141234,,,,,,,96.58888719,58.15281971,150.835512,,,,134.3701126,102.7824891,172.6040309,,,,9,,,,,1,,,,,0.109185442,630,5770,0.080525349,0.137845535,0.082155477,0.055238376,0.109072578,0.027556326,0.013561891,0.04155076,0.004159445,0,0.010202542,0.865511699,4846,5599,0.831684242,0.899339155,,,,,,,0.924703892,0.876884994,0.97252279,,,,0.833673053,0.766845965,0.900500142,0.407,,5599,0.343347253,0.470652747,71.21905502,,,69.62477263,72.81333741,,,,,,,69.79983307,66.68379246,72.91587368,,,,72.09904744,70.23912888,73.95896601,,,,663.5613383,338,38047,588.6865909,738.4360857,,,,,,,718.5410873,574.7401216,887.3923974,,,,633.7937827,545.3481614,722.239404,,,,77.84304013,11,14131,38.85896516,139.2827013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.142,,,0.122,0.164,0.181,,,0.157,0.207,0.134,,,0.115,0.154,163.5,18,11007,,,0.179,2400,,,,0.01149334,171.9633495,14962,,,,,,,,,,,,,,,,,,,,,,,,,,0.352,,,0.34,0.365,0.212211669,1564,7370,0.182424435,0.241998903,0.090879157,276,3037,0.062283412,0.119474902,0.000625929,8,12781,,,1597.625,0.875,137.375,157,,,,,,,,3.112316743,,,,,,,2.858097571,,3.390891819,3.090168975,,,,,,,2.709709286,,3.357730604,0.116149236,,,,,-10688.44,,,,,0.69003207,31629,45837,0.630996727,0.749067413,44172,,,37732,50612,,,,,,,31913,27518.78723,36307.21277,37450,14795.02128,60104.97872,51204,44830.7234,57577.2766,,,,,,0.991743119,2162,2180,,,32.80254604,,,,,0.159920312,,44172,,,11.69590643,8,684,,,12.01501877,12,99875,6.208335528,20.98781982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,22.67959404,16,70548,12.96334758,36.83023983,,,,,,,,,,,,,,,,,,,48.06007509,48,99875,35.43570546,63.72068704,,,,,,,46.67025669,24.84994612,79.80756029,,,,52.77208667,36.54620411,73.74370164,,,,13.75,,1600,,,13,9,0.616463985,6590,10690,,,0.494,,,,,0.868270336,,,,,0.711753235,4015,5641,0.673717649,0.749788822,0.08288221,444,5357,0.054254592,0.111509828,0.76068073,4291,5641,0.713995853,0.807365608,12781,,,,,0.220952977,2824,12781,,,0.203896409,2606,12781,,,0.273452782,3495,12781,,,0.003990298,51,12781,,,0.002190752,28,12781,,,0.000391206,5,12781,,,0.068852203,880,12781,,,0.638447696,8160,12781,,,0.018342771,230,12539,0.006108259,0.030577282,0.514200767,6572,12781,,,1,13266,13266,, -28,015,28015,MS,Carroll County,2024,1,13790.08018,247,26409,10958.64821,16621.51215,0,,,,2,,,,2,16324.47932,11493.93995,22501.14438,,,,,2,13096.73619,9574.117963,16619.35441,,,,,2,,0.234,,,0.201,0.27,4.084759557,,,3.233056407,5.041100204,4.957242557,,,3.93212501,6.131602325,0.128747795,73,567,0.101179724,0.156315867,0,,,,,,,0.178403756,0.12698785,0.229819661,,,,0.092261905,0.0613178,0.12320601,,,,,,,0.216,,,0.176,0.259,0.404,,,0.325,0.487,5.6,0.204190313,0.148,,,0.319,,,0.264,0.376,0.132926585,1329,9998,,,0.131682431,,,0.103546974,0.164510077,0.095238095,2,21,0.018632442,0.225063028,485.9,48,9879,,,30.22126282,56,1853,22.82881715,39.24482353,,,,,,,31.97674419,20.03965534,48.41317498,,,,30.58387396,21.05253158,42.95113,,,,,,,0.14594672,1019,6982,0.125691401,0.166202039,0.00020245,2,9879,,,4939.5,0.000205529,2,9731,,,4865.5,,0,9731,,,,2253,,,,,,,3003,,2064,0.38,,,,,,,0.38,,0.38,0.32,,,,,,,0.23,,0.34,0.788120687,5825,7391,0.723601399,0.852639976,0.610205832,1423,2332,0.451591524,0.76882014,0.044994041,151,3356,,,0.243,399,,0.152446809,0.333553192,,,,,,,0.300546448,0.146565601,0.454527295,,,,0.207328833,0.043403506,0.37125416,6.166837195,102462,16615,4.016852441,8.316821949,0.435347261,771,1771,0.256025501,0.614669022,8.097985626,8,9879,,,106.8376068,53,49608,80.02869886,139.7462202,,,,,,,110.6398672,65.57219731,174.85869,,,,110.0421304,76.64837579,153.0419649,,,,8.9,,,,,0,,,,,0.106965174,430,4020,0.061280292,0.152650057,0.069924812,0.027896786,0.111952839,0.028358209,0.007153551,0.049562867,0.012189055,0,0.028200817,0.840567376,2963,3525,0.769754641,0.911380111,,,,,,,,,,,,,0.676334107,0.329122935,1,0.526,,3525,0.382209397,0.669790603,73.70907848,,,71.66728493,75.75087203,,,,,,,72.38556985,68.72525049,76.04588922,,,,73.89152525,71.39713825,76.38591224,,,,622.121943,247,26409,536.1437945,708.1000916,,,,,,,749.7270539,591.6728665,937.0301808,,,,584.3640121,480.5839483,688.1440758,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.132,,,0.113,0.152,0.173,,,0.149,0.2,0.128,,,0.11,0.149,391.4,34,8686,,,0.148,1490,,,,0.204190313,2163.804745,10597,,,,,,,,,,,,,,,,,,,,,,,,,,0.35,,,0.336,0.363,0.169847328,890,5240,0.144826052,0.194868605,0.077299946,142,1837,0.052278669,0.102321222,0.000411057,4,9731,,,2432.75,,,,,,,,,,,2.654946768,,,,,,,2.629483888,,2.561825271,2.502042418,,,,,,,2.580252759,,2.296952343,0.002907534,,,,,-14703.8,,,,,0.741578611,41828,56404,0.500073602,0.983083621,49397,,,41928.74468,56865.25532,,,,,,,26211,14173.38298,38248.61702,,,,54814,34700.46809,74927.53192,,,,,,1,851,851,,,32.76783213,,,,,0.124744418,,49397,,,4.728132388,2,423,,,15.69052578,11,70106,7.832653934,28.07468478,,,,,,,,,,,,,,,,,,,20.26973053,10,49608,9.268611522,38.47826245,20.15803903,,,,,,,,,,,,,31.7966969,13.72755686,62.65216873,,,,30.23705854,15,49608,16.92345213,49.87142975,,,,,,,,,,,,,,,,,,,28.52822868,20,70106,17.42578322,44.05953542,,,,,,,,,,,,,26.67615152,13.78395676,46.59786824,,,,,,900,,,-888,5,0.705132962,5701,8085,,,0.447,,,,,8.329982527,,,,,0.823135992,3323,4037,0.776054986,0.870216998,0.041473467,161,3882,0.004325404,0.078621531,0.623730493,2518,4037,0.544654377,0.702806609,9731,,,,,0.171513719,1669,9731,,,0.251258863,2445,9731,,,0.337067105,3280,9731,,,0.001952523,19,9731,,,0.002671873,26,9731,,,0.000205529,2,9731,,,0.016750591,163,9731,,,0.629637242,6127,9731,,,0,0,9527,,,0.477957045,4651,9731,,,1,9998,9998,, -28,017,28017,MS,Chickasaw County,2024,1,14065.73853,383,47075,11954.48747,16176.98958,0,,,,2,,,,2,15946.89284,12653.29881,19240.48687,,,,,2,13329.98265,10297.30634,16362.65896,,,,,2,,0.266,,,0.231,0.302,4.298020664,,,3.411539872,5.220487429,5.014510836,,,3.942009048,6.143371905,0.141979103,231,1627,0.125019197,0.158939009,0,,,,,,,0.187088274,0.159343566,0.214832982,0.111111111,0.054164796,0.168057426,0.101078167,0.079388956,0.122767379,,,,,,,0.234,,,0.194,0.277,0.448,,,0.37,0.534,6.7,0.057992403,0.165,,,0.363,,,0.307,0.423,0.516543903,8836,17106,,,0.132428292,,,0.104045065,0.165723089,0.041666667,1,24,0.001646445,0.156024312,1040.5,177,17011,,,46.38321369,168,3622,39.36927014,53.39715724,,,,,,,41.68922577,32.90048503,52.10437926,84.82142857,51.06804091,132.4591677,48.61580014,38.03886947,61.22355439,,,,,,,0.167601152,2212,13198,0.146154343,0.18904796,0.000587855,10,17011,,,1701.1,0.000416369,7,16812,,,2401.714286,0.000297407,5,16812,,,3362.4,2744,,,,,,,4363,,2264,0.4,,,,,,,0.44,,0.39,0.4,,,,,,,0.35,,0.41,0.7603767,8720,11468,0.721935271,0.79881813,0.508780488,2086,4100,0.411779206,0.60578177,0.045179813,299,6618,,,0.32,1303,,0.22587234,0.41412766,,,,,,,0.592592593,0.502486456,0.68269873,0.006134969,0,0.121911887,0.214653692,0.127137601,0.302169783,5.963085129,84968,14249,4.964186512,6.961983746,0.377930381,1596,4223,0.281726337,0.474134426,10.58138851,18,17011,,,101.895013,87,85382,81.61372835,125.6871221,,,,,,,93.27115257,64.96677522,129.7175946,,,,117.0512637,86.59516924,154.7479781,,,,9.4,,,,,0,,,,,0.17394636,1135,6525,0.130082893,0.217809828,0.155226209,0.112535384,0.197917034,0.015325671,0.001394873,0.029256468,0.007509579,0,0.016469507,0.844958879,5548,6566,0.77461694,0.915300818,,,,,,,0.856068205,0.761028441,0.951107968,,,,0.880997475,0.823349851,0.938645099,0.382,,6566,0.304847039,0.459152961,71.96106387,,,70.48124694,73.44088079,,,,,,,69.9183948,67.72902898,72.10776061,,,,72.70904853,70.61375045,74.8043466,,,,649.7631976,383,47075,581.5669203,717.9594748,,,,,,,738.9656989,628.2863552,849.6450425,,,,616.7265169,523.1327362,710.3202975,,,,129.5546559,24,18525,83.00811258,192.7670585,,,,,,,147.4424407,78.50689,252.1310641,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.142,,,0.123,0.163,0.18,,,0.156,0.207,0.146,,,0.126,0.169,271.5,38,13997,,,0.165,2830,,,,0.057992403,1008.603871,17392,,,,,,,,,,,,,,,,,,,,,,,,,,0.38,,,0.367,0.392,0.212835625,1950,9162,0.181856902,0.243814349,0.067076051,284,4234,0.045629243,0.08852286,0.001249108,21,16812,,,800.5714286,0.906056701,175.775,194,,,,,,,,2.897780936,,,,,,,2.787309708,,3.152162309,3.148647131,,,,,,,3.019571354,,3.355341676,0.113190813,,,,,-38671.2,,,,,0.657810423,30181,45881,0.616527998,0.699092848,43776,,,38535.82979,49016.17021,,,,,,,29107,21543.42553,36670.57447,,,,46913,40865,52961,,,,,,0.99341142,2714,2732,,,24.98689048,,,,,0.169841923,,43776,,,8.116883117,10,1232,,,15.00550202,18,119956,8.893211495,23.71516245,,,,,,,22.80415036,11.78323726,39.83426143,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,24.59534797,21,85382,15.22490804,37.59660202,,,,,,,29.31379081,14.63333875,52.45046906,,,,,,,,,,37.51375504,45,119956,27.36279035,50.19635575,,,,,,,36.1065714,21.73851462,56.38488384,,,,40.51795452,25.96061799,60.28750459,,,,3.157894737,,1900,,,6,0,0.646111111,8141,12600,,,0.574,,,,,0.773126074,,,,,0.67829171,4590,6767,0.646441485,0.710141934,0.147100874,926,6295,0.100594197,0.19360755,0.682577213,4619,6767,0.628326511,0.736827915,16812,,,,,0.246728527,4148,16812,,,0.185581727,3120,16812,,,0.435760171,7326,16812,,,0.004163693,70,16812,,,0.004817987,81,16812,,,0.000713776,12,16812,,,0.05305734,892,16812,,,0.490423507,8245,16812,,,0.016315389,257,15752,0.00395478,0.028675997,0.506780871,8520,16812,,,1,17106,17106,, -28,019,28019,MS,Choctaw County,2024,1,11991.86885,183,21898,9200.046612,14783.6911,0,,,,2,,,,2,16616.47857,10950.36408,24176.10392,,,,,2,10452.15899,7251.796346,13652.52163,,,,,2,,0.224,,,0.19,0.258,4.053810124,,,3.226354211,5.020712783,4.817078783,,,3.800299299,5.968423785,0.119127517,71,596,0.093120202,0.145134831,0,,,,,,,0.214285714,0.156840088,0.271731341,,,,0.074550129,0.04844764,0.100652617,,,,,,,0.212,,,0.172,0.255,0.384,,,0.309,0.467,6.7,0.063562342,0.165,,,0.315,,,0.262,0.375,0.115571186,953,8246,,,0.133209078,,,0.104042859,0.166087615,0.083333333,1,12,0.004083139,0.26580258,308.4,25,8106,,,33.85416667,52,1536,25.28391094,44.39523551,,,,,,,44.94382023,27.452853,69.41208518,,,,28.8184438,19.44368302,41.14012046,,,,,,,0.147291835,911,6185,0.127036516,0.167547154,0.000123365,1,8106,,,8106,0.000373274,3,8037,,,2679,0.001493094,12,8037,,,669.75,4297,,,,,,,3564,,4365,0.4,,,,,,,0.45,,0.38,0.31,,,,,,,0.23,,0.34,0.869421775,5007,5759,0.837941733,0.900901817,0.563043478,1036,1840,0.458704455,0.667382502,0.036715247,131,3568,,,0.288,474,,0.180765957,0.395234043,,,,,,,0.472222222,0.35272889,0.591715555,,,,0.195327103,0.055978683,0.334675523,4.882383528,93898,19232,3.694034507,6.070732548,0.289366647,498,1721,0.185451933,0.393281362,8.635578584,7,8106,,,122.1448638,50,40935,90.65827223,161.0327755,,,,,,,107.713978,57.35315677,184.1941828,,,,134.8494788,94.94647776,185.8722434,,,,9.2,,,,,0,,,,,0.077496274,260,3355,0.04210896,0.112883589,0.065943993,0.030883129,0.101004857,0.010134128,0,0.02695993,0.002980626,0,0.012776268,0.809006707,2533,3131,0.760439795,0.85757362,,,,,,,,,,,,,0.796343001,0.705706277,0.886979726,0.528,,3131,0.43338344,0.62261656,74.04174014,,,72.04063051,76.04284977,,,,,,,70.22729864,66.20660313,74.24799416,,,,75.10615045,72.76490734,77.44739357,,,,588.4581628,183,21898,495.4819346,681.4343911,,,,,,,741.9165149,550.6647377,978.1244327,,,,538.2150485,433.1881436,643.2419533,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.129,,,0.109,0.149,0.172,,,0.148,0.197,0.123,,,0.105,0.143,101.3,7,6913,,,0.165,1370,,,,0.063562342,543.2673344,8547,,,,,,,,,,,,,,,,,,,,,,,,,,0.351,,,0.336,0.364,0.174765939,784,4486,0.148553173,0.200978704,0.07687991,137,1782,0.051858634,0.101901187,0.001244245,10,8037,,,803.7,,,,,,,,,,,3.190082754,,,,,,,2.813358205,,3.404264892,3.035199726,,,,,,,2.718081971,,3.208509466,0.055610074,,,,,-11736.76,,,,,0.720129664,36211,50284,0.60985509,0.830404238,49225,,,42751.6383,55698.3617,,,,,,,24395,17574.91489,31215.08511,,,,62823,54607.68085,71038.31915,,,,,,0.992610837,1209,1218,,,34.37359622,,,,,0.152463179,,49225,,,5.434782609,2,368,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,26.87187004,11,40935,13.4143407,48.08119827,,,,,,,,,,,,,,,,,,,38.27684599,22,57476,23.9878956,57.95160482,,,,,,,,,,,,,44.07913501,25.67772051,70.57496517,,,,0,,800,,,0,0,0.657788162,4223,6420,,,0.516,,,,,0.807526025,,,,,0.762174405,2692,3532,0.710590567,0.813758244,0.094827586,308,3248,0.050023684,0.139631488,0.795866365,2811,3532,0.741633289,0.850099441,8037,,,,,0.20928207,1682,8037,,,0.231678487,1862,8037,,,0.289660321,2328,8037,,,0.003110613,25,8037,,,0.005225831,42,8037,,,0.000248849,2,8037,,,0.019907926,160,8037,,,0.669155157,5378,8037,,,0,0,7848,0,0.012145661,0.508896354,4090,8037,,,1,8246,8246,, -28,021,28021,MS,Claiborne County,2024,1,17051.35613,205,25044,13674.22907,20428.48318,0,,,,2,,,,2,17902.05836,14283.59773,21520.51899,,,,,2,19117.89309,6207.527847,44614.78504,1,,,,2,,0.324,,,0.28,0.372,4.768659743,,,3.792795257,5.853348251,5.253971703,,,4.096585414,6.493879549,0.169811321,135,795,0.143711097,0.195911545,0,,,,,,,0.174324324,0.146989018,0.201659631,,,,,,,,,,,,,0.253,,,0.203,0.306,0.512,,,0.423,0.602,5.8,0.091487904,0.192,,,0.406,,,0.343,0.47,0.356431308,3256,9135,,,0.111177789,,,0.085794141,0.140708294,0.466666667,7,15,0.335227351,0.582964744,0,0,8908,,,30.05058018,101,3361,24.18989699,35.91126338,,,,,,,30.81861958,24.96318081,37.63480931,,,,,,,,,,,,,0.138598595,809,5837,0.115960297,0.161236893,0.000449035,4,8908,,,2227,0.000340716,3,8805,,,2935,0.000340716,3,8805,,,2935,7357,,,,,,,8548,,5185,0.41,,,,,,,0.44,,0.34,0.37,,,,,,,0.31,,0.45,0.821449502,4205,5119,0.770137789,0.872761215,0.52886836,916,1732,0.374039365,0.683697356,0.081955923,238,2904,,,0.431,802,,0.270148936,0.591851064,,,,,,,0.36132466,0.230781332,0.491867988,,,,0.481927711,0.020534199,0.943321223,5.751220293,71873,12497,2.985799624,8.516640962,0.411734164,793,1926,0.259733761,0.563734567,5.612932196,5,8908,,,98.30425166,44,44759,71.42801975,131.9688695,,,,,,,107.0524035,76.82265299,145.2286732,,,,,,,,,,8.4,,,,,0,,,,,0.110344828,320,2900,0.065181755,0.1555079,0.092130518,0.047130757,0.13713028,0.024137931,0,0.049524169,0.002758621,0,0.005711969,0.847120844,2089,2466,0.78887353,0.905368157,,,,,,,0.821801892,0.72672418,0.916879603,,,,0.907385698,0.818783117,0.995988278,0.433,,2466,0.298398612,0.567601388,69.55667012,,,67.42115715,71.69218309,,,,,,,68.60897906,66.39943133,70.8185268,,,,,,,,,,753.4325337,205,25044,642.1540223,864.7110451,,,,,,,830.3700431,702.7163483,958.0237378,,,,550.3732143,293.050557,941.1549581,,,,100.0800641,10,9992,47.99228079,184.0508011,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.16,,,0.138,0.185,0.191,,,0.164,0.22,0.198,,,0.171,0.225,395.5,30,7585,,,0.192,1750,,,,0.091487904,878.6498329,9604,,,,,,,,,,,,,,,,,,,,,,,,,,0.417,,,0.397,0.436,0.173439768,717,4134,0.143652534,0.203227002,0.0537514,96,1786,0.033496081,0.074006719,0.00124929,11,8805,,,800.4545455,0.875,88.375,101,,,,,,,,3.229718947,,,,,,,3.205803704,,,3.065677594,,,,,,,3.039100978,,,,,,,,-36767.9,,,,,0.9407044,31063,33021,0.210581289,1.670827511,35591,,,30284.10638,40897.89362,,,,,,,33040,26514.21277,39565.78723,,,,43125,17802.2766,68447.7234,,,,,,1,1233,1233,,,30.723759,,,,,0.234132224,,35591,,,13.13320826,7,533,,,23.79139703,15,63048,13.31586431,39.24029132,,,,,,,27.90593838,15.61874188,46.02660156,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,29.04443799,13,44759,15.46493999,49.66687352,,,,,,,31.33241077,16.18991386,54.73141609,,,,,,,,,,41.23842152,26,63048,26.93830608,60.42384228,,,,,,,46.50989731,30.09875325,68.65778333,,,,,,,,,,,,800,,,-888,7,0.633760684,4449,7020,,,0.448,,,,,10.92234178,,,,,0.754573171,1980,2624,0.714932118,0.794214224,0.114234717,256,2241,0.049553827,0.178915606,0.740091463,1942,2624,0.671505375,0.808677552,8805,,,,,0.214196479,1886,8805,,,0.181601363,1599,8805,,,0.851448041,7497,8805,,,0.002612152,23,8805,,,0.007382169,65,8805,,,0.000454287,4,8805,,,0.018852925,166,8805,,,0.110959682,977,8805,,,0,0,8492,0,0.011224582,0.527654742,4646,8805,,,1,9135,9135,, -28,023,28023,MS,Clarke County,2024,1,13870.01063,355,42164,11551.11455,16188.90671,0,,,,2,,,,2,21319.45372,16244.92028,26393.98716,,,,,2,9724.944302,7452.377786,11997.51082,,,,,2,,0.234,,,0.202,0.267,4.067623975,,,3.251013541,5.030769344,5.245937748,,,4.20478489,6.386025578,0.118215613,159,1345,0.10096067,0.135470557,0,,,,,,,0.178423237,0.144242428,0.212604045,,,,0.084134615,0.065272188,0.102997043,,,,,,,0.213,,,0.177,0.253,0.451,,,0.378,0.529,6.5,0.06393414,0.171,,,0.327,,,0.276,0.381,0.3584374,5597,15615,,,0.133154003,,,0.105085484,0.164821434,0.130434783,3,23,0.042432852,0.254040702,447.4,69,15421,,,37.60529483,125,3324,31.01279598,44.19779368,,,,,,,40.71058475,30.66878384,52.99042189,,,,35.53854565,27.42789925,45.29679378,,,,,,,0.159083221,1881,11824,0.137636412,0.180530029,0.00019454,3,15421,,,5140.333333,0.000130967,2,15271,,,7635.5,0.000458385,7,15271,,,2181.571429,3389,,,,,,,3314,,3280,0.44,,,,,,,0.42,,0.44,0.31,,,,,,,0.21,,0.33,0.856664808,9216,10758,0.82108251,0.892247105,0.607038123,2070,3410,0.499135286,0.71494096,0.047058824,264,5610,,,0.303,997,,0.192191489,0.413808511,,,,,,,0.511645963,0.39990179,0.623390135,,,,0.099898063,0.035356905,0.164439222,6.159524596,93286,15145,4.33989466,7.979154531,0.345910138,1201,3472,0.261781203,0.430039074,16.8601258,26,15421,,,119.7019037,93,77693,96.61488516,146.642919,,,,,,,112.1411483,75.66116186,160.0884622,,,,124.4288512,95.17821182,159.8340648,,,,9.2,,,,,0,,,,,0.118305356,740,6255,0.082968033,0.153642678,0.085643564,0.055776813,0.115510316,0.015027978,0.002703243,0.027352713,0.020783373,0.005691596,0.035875151,0.833946488,4987,5980,0.793166549,0.874726428,,,,,,,0.688092729,0.608650999,0.767534459,,,,0.866352201,0.795837921,0.936866482,0.496,,5980,0.398866209,0.593133791,71.88771056,,,70.3416205,73.43380062,,,,,,,66.30400383,63.3016491,69.30635857,,,,74.89349762,73.24586079,76.54113445,,,,610.8229872,355,42164,541.6878455,679.9581289,,,,,,,823.6049975,684.1806019,963.0293931,,,,505.053248,428.0218125,582.0846835,,,,100.9693053,15,14856,56.51175372,166.5335142,,,,,,,210.5632567,108.8011074,367.8116345,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.132,,,0.114,0.152,0.177,,,0.153,0.202,0.127,,,0.109,0.147,474.1,62,13076,,,0.171,2680,,,,0.06393414,1069.746029,16732,,,,,,,,,,,,,,,,,,,,,,,,,,0.358,,,0.345,0.37,0.192711983,1650,8562,0.164116239,0.221307728,0.073434757,251,3418,0.050796459,0.096073055,0.00091677,14,15271,,,1090.785714,0.911666667,191.45,210,,,,,,,,,,,,,,,,,,2.807281719,,,,,,,2.471735216,,3.005878337,0.190974393,,,,,-11333.896,,,,,0.835237267,41310,49459,0.562004109,1.108470425,46524,,,39818.29787,53229.70213,,,,,,,25722,18780.38298,32663.61702,,,,57834,49947.53192,65720.46809,,,,,,0.996439873,2519,2528,,,35.46394982,,,,,0.160433325,,46524,,,7.838745801,7,893,,,9.125169956,10,109587,4.375873686,16.78151244,,,,,,,,,,,,,,,,,,,13.50356407,12,77693,6.475483848,24.8335351,15.44540692,,,,,,,,,,,,,16.40046303,7.080555865,32.31545025,,,,21.88099314,17,77693,12.74648484,35.03358966,,,,,,,,,,,,,26.51762402,14.11951797,45.34594468,,,,38.32571382,42,109587,27.62180344,51.80523126,,,,,,,29.21801955,14.58553009,52.27910782,,,,44.7608184,30.41280445,63.5344088,,,,,,1600,,,15,-888,0.687670103,8338,12125,,,0.523,,,,,3.293404336,,,,,0.856956024,5242,6117,0.821567953,0.892344096,0.129941561,756,5818,0.086822027,0.173061095,0.755762629,4623,6117,0.721456765,0.790068493,15271,,,,,0.221072621,3376,15271,,,0.216619737,3308,15271,,,0.332460219,5077,15271,,,0.004845786,74,15271,,,0.002881278,44,15271,,,0.000261934,4,15271,,,0.017615087,269,15271,,,0.631130902,9638,15271,,,0.001367147,20,14629,0,0.008320267,0.522821033,7984,15271,,,1,15615,15615,, -28,025,28025,MS,Clay County,2024,1,11116.07286,410,52745,9391.525378,12840.62034,0,,,,2,,,,2,13008.18983,10616.93025,15399.44941,,,,,2,8571.399186,6199.383606,10943.41477,,,,,2,,0.249,,,0.214,0.285,4.174101472,,,3.339172905,5.136362468,4.828484651,,,3.82345658,5.912082994,0.159270517,262,1645,0.141586987,0.176954046,0,,,,,,,0.198915009,0.17538882,0.222441198,,,,0.074148297,0.051158925,0.097137668,,,,,,,0.211,,,0.173,0.253,0.448,,,0.373,0.524,6.8,0.112213359,0.138,,,0.351,,,0.297,0.408,0.663930028,12373,18636,,,0.118100615,,,0.092611711,0.147305795,0.3125,5,16,0.177519792,0.449075671,1165.4,216,18535,,,30.40854225,131,4308,25.20120117,35.61588332,,,,,,,34.43708609,27.81849123,41.05568096,,,,21.27659575,13.76909093,31.40845251,,,,,,,0.147042411,2108,14336,0.125595602,0.168489219,0.000377664,7,18535,,,2647.857143,0.000217628,4,18380,,,4595,0.002448313,45,18380,,,408.4444444,2626,,,,,,,3052,,2524,0.48,,,,,,,0.49,,0.47,0.35,,,,,,,0.26,,0.39,0.816746524,10398,12731,0.781925095,0.851567954,0.576888889,2596,4500,0.474982781,0.678794997,0.041187299,358,8692,,,0.338,1375,,0.218851064,0.457148936,,,,,,,0.428028996,0.340925582,0.515132409,,,,0.014754098,0,0.049976087,5.328083132,81525,15301,3.87237936,6.783786904,0.472710014,1992,4214,0.366272087,0.579147942,15.10655517,28,18535,,,70.66476842,68,96229,54.8739577,89.58443209,,,,,,,53.09452595,35.8226537,75.79573721,,,,102.797165,72.7453921,141.0971404,,,,9.8,,,,,0,,,,,0.108020699,835,7730,0.075748347,0.14029305,0.111570248,0.076083719,0.147056777,0.006468305,0,0.015643235,0.001293661,0,0.005362692,0.847829202,5917,6979,0.787776574,0.90788183,,,,,,,0.860315761,0.770329778,0.950301744,,,,0.822153423,0.7618337,0.882473145,0.222,,6979,0.168581929,0.275418071,73.93264438,,,72.62694072,75.23834803,,,,,,,71.93557179,70.1792041,73.69193948,,,,76.01273711,74.15656622,77.868908,,,,563.5831201,410,52745,505.7803024,621.3859377,,,,,,,642.389623,559.4306105,725.3486355,,,,486.6281106,403.6546705,569.6015507,,,,84.3303642,16,18973,48.20208957,136.9472282,,,,,,,110.2275411,60.26242246,184.9430842,,,,,,,,,,13.38199513,22,1644,8.386425105,20.26050145,,,,,,,,,,,,,,,,,,,,,,0.135,,,0.116,0.155,0.172,,,0.15,0.198,0.149,,,0.128,0.17,383,60,15667,,,0.138,2590,,,,0.112213359,2315.410454,20634,,,,,,,,,,,,,,,,,,,,,,,,,,0.343,,,0.329,0.357,0.178815599,1857,10385,0.150219855,0.207411344,0.066410933,277,4171,0.044964124,0.087857741,0.000652884,12,18380,,,1531.666667,0.875,161.875,185,,,0.172,215,1250,0.054935413,0.289064587,2.747485364,,,,,,,2.604996357,,3.239678189,2.677874102,,,,,,,2.517882999,,3.157455511,0.006004638,,,,,,,,,,0.863944899,34620,40072,0.670595716,1.057294083,43451,,,37319.59575,49582.40426,,,,,,,29837,25816.91489,33857.08511,31125,24707.6383,37542.3617,45662,33256.21277,58067.78723,,,,,,0.995607614,2720,2732,,,20.31355077,,,,,0.206876712,,43451,,,9.018036072,9,998,,,7.346081233,10,136127,3.522731491,13.50970494,,,,,,,12.54028567,6.013554414,23.06203183,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.62700433,16,96229,9.503769606,27.00121335,,,,,,,,,,,,,,,,,,,22.77285182,31,136127,15.47304795,32.32424538,,,,,,,20.06445707,11.46857085,32.58342124,,,,28.4797509,15.93990038,46.97301804,,,,6.666666667,,2100,,,8,6,0.679946613,10189,14985,,,0.586,,,,,27.07858241,,,,,0.682933263,5178,7582,0.650552745,0.715313781,0.154385965,1056,6840,0.112420378,0.196351552,0.793590082,6017,7582,0.74986304,0.837317124,18380,,,,,0.225190424,4139,18380,,,0.198367791,3646,18380,,,0.595865071,10952,18380,,,0.003264418,60,18380,,,0.005168662,95,18380,,,0.000272035,5,18380,,,0.018661589,343,18380,,,0.370565832,6811,18380,,,0.000856213,15,17519,0,0.006603467,0.530576714,9752,18380,,,0.563532947,10502,18636,, -28,027,28027,MS,Coahoma County,2024,1,21519.82451,707,60395,19285.772,23753.87702,0,,,,2,,,,2,23943.97294,21326.63366,26561.31223,,,,,2,12435.08063,8412.854216,16457.30704,,,,,2,,0.316,,,0.271,0.365,4.695798353,,,3.721482038,5.70649135,5.295018289,,,4.161893569,6.533774645,0.175341297,411,2344,0.159947119,0.190735475,0,,,,,,,0.190571715,0.173332722,0.207810709,,,,0.085245902,0.053906183,0.11658562,,,,,,,0.256,,,0.206,0.307,0.51,,,0.425,0.598,4.7,0.159494997,0.211,,,0.391,,,0.329,0.453,0.731182796,15640,21390,,,0.110480781,,,0.08499443,0.141341894,0.233333333,7,30,0.139043554,0.336767009,1826,380,20810,,,50.098761,279,5569,44.22006564,55.97745636,,,,,,,53.4591195,46.89754925,60.02068974,,,,34.48275862,21.61016124,52.20731095,,,,,,,0.153441446,2479,16156,0.131994637,0.174888254,0.000432484,9,20810,,,2312.222222,0.000495123,10,20197,,,2019.7,0.005644403,114,20197,,,177.1666667,3926,,,,,,,5221,,2343,0.32,,,,,,,0.31,,0.34,0.37,,,,,,,0.3,,0.45,0.812923398,10920,13433,0.781729665,0.84411713,0.601895735,3048,5064,0.503501721,0.700289748,0.056276483,425,7552,,,0.504,2708,,0.37412766,0.63387234,,,,,,,0.565379552,0.494661016,0.636098089,,,,0.054347826,0,0.115496045,5.964326979,82594,13848,4.919837032,7.008816926,0.574867257,3248,5650,0.495253458,0.654481055,8.64968765,18,20810,,,120.6021037,133,110280,100.1053476,141.0988599,,,,,,,120.2192233,96.88840865,143.5500379,,,,130.144056,87.15951684,186.9085735,,,,8.8,,,,,1,,,,,0.153221126,1320,8615,0.119946704,0.186495548,0.139545998,0.107492226,0.17159977,0.015089959,0.005604447,0.024575471,0.012768427,0.004407877,0.021128977,0.778302523,5768,7411,0.76069873,0.795906316,,,,,,,0.794093851,0.753565616,0.834622087,,,,0.870122929,0.787865982,0.952379876,0.239,,7411,0.188660456,0.289339544,66.20758551,,,64.94977445,67.46539658,,,,,,,64.23046835,62.86367558,65.59726111,,,,73.24183108,70.36626055,76.11740161,,,,1003.188311,707,60395,925.2477127,1081.12891,,,,,,,1143.002397,1047.262475,1238.742318,,,,606.5601187,477.2049342,735.9153032,,,,95.23809524,25,26250,61.63307371,140.590216,,,,,,,109.1107474,69.90931467,162.3481433,,,,,,,,,,9.554140127,24,2512,6.121517856,14.21580318,,,,,,,10.76275152,6.822661225,16.14941174,,,,,,,,,,,,,0.16,,,0.138,0.186,0.193,,,0.163,0.221,0.189,,,0.164,0.216,1003.7,168,16738,,,0.211,4600,,,,0.159494997,4170.953659,26151,,,,,,,,,,,,,,,,,,,,,,,,,,0.392,,,0.375,0.408,0.198724374,2181,10975,0.16893714,0.228511608,0.058628319,318,5424,0.038372999,0.078883638,0.002030005,41,20197,,,492.6097561,0.853793103,247.6,290,,,0.146816479,196,1335,0.059716692,0.233916267,2.413425305,,,,,,,2.404888618,,,2.467541276,,,,,,,2.451733284,,,0.077113153,,,,,-42179.84,,,,,0.716008533,32892,45938,0.548068143,0.883948923,36071,,,32464.3617,39677.6383,,,,,,,29718,21041.57447,38394.42553,52714,36166.59575,69261.40426,60787,43229.21277,78344.78723,,,,,,1,3615,3615,,,45.97590343,,,,,0.214271853,,36071,,,12.53731343,21,1675,,,36.54487143,58,158709,27.75005304,47.24272079,,,,,,,40.36144082,29.85961611,53.35996523,,,,,,,,,,11.08180858,13,110280,5.726132203,19.35768942,11.78817555,,,,,,,,,,,,,,,,,,,38.9916576,43,110280,28.21845594,52.5215069,,,,,,,43.60893394,30.70471397,60.10917101,,,,,,,,,,27.72369557,44,158709,20.14407964,37.21776729,,,,,,,29.65330346,20.76880919,41.05267126,,,,,,,,,,38.8,,2500,,,35,62,0.515212121,8501,16500,,,0.523,,,,,41.52434148,,,,,0.534040777,4479,8387,0.501382216,0.566699339,0.154188482,1178,7640,0.117634787,0.190742177,0.739239299,6200,8387,0.699970905,0.778507693,20197,,,,,0.271376937,5481,20197,,,0.169084518,3415,20197,,,0.773728772,15627,20197,,,0.002673664,54,20197,,,0.005248304,106,20197,,,0.000594148,12,20197,,,0.019260286,389,20197,,,0.193791157,3914,20197,,,0.013858572,273,19699,0.005391785,0.022325358,0.53062336,10717,20197,,,0.326414212,6982,21390,, -28,029,28029,MS,Copiah County,2024,1,13805.14095,645,77737,12164.98144,15445.30046,0,,,,2,,,,2,16504.95825,14098.95395,18910.96255,,,,,2,11374.86303,8955.438648,13794.28741,,,,,2,,0.242,,,0.207,0.275,4.082606806,,,3.197458672,4.997044323,5.044258445,,,3.946505832,6.208224272,0.145134228,346,2384,0.130994638,0.159273819,0,,,,,,,0.191455696,0.169765245,0.213146148,0.080882353,0.04847944,0.113285266,0.093862816,0.074033884,0.113691748,,,,,,,0.211,,,0.174,0.251,0.437,,,0.361,0.517,6.4,0.136225772,0.145,,,0.33,,,0.277,0.384,0.55678934,15795,28368,,,0.131016975,,,0.101850485,0.162418924,0.083333333,4,48,0.030794629,0.160927434,1214.5,340,27995,,,32,236,7375,27.91727575,36.08272425,,,,,,,34.27321342,28.61601592,39.93041091,102.9411765,68.40366418,148.7786616,22.15189873,17.02212721,28.3419013,,,,,,,0.151176226,3271,21637,0.132112396,0.170240056,0.000250045,7,27995,,,3999.285714,0.000432916,12,27719,,,2309.916667,0.000649374,18,27719,,,1539.944444,2934,,,,,,,3600,,2674,0.41,,,,,,,0.36,,0.42,0.44,,,,,,,0.34,,0.48,0.848877375,15728,18528,0.81649731,0.88125744,0.629719657,3886,6171,0.533544723,0.72589459,0.044083527,475,10775,,,0.417,2490,,0.320489362,0.513510638,,,,,,,0.455205135,0.371493465,0.538916806,0.552204176,0.416934487,0.687473866,0.242863828,0.158525888,0.327201768,5.538072148,103933,18767,4.284140533,6.792003763,0.442222922,2809,6352,0.35169364,0.532752204,11.07340597,31,27995,,,93.58250858,132,141052,77.61769732,109.5473198,,,,,,,99.58919457,77.92241129,125.4161086,,,,92.46792012,70.0342997,119.8029158,,,,9,,,,,0,,,,,0.12539185,1200,9570,0.09719357,0.153590129,0.078663793,0.054917427,0.10241016,0.023510972,0.008382582,0.038639361,0.029258098,0.013241178,0.045275018,0.873373231,9194,10527,0.854985561,0.8917609,,,,,,,0.864412568,0.622638806,1,,,,0.827488152,0.765473431,0.889502873,0.47,,10527,0.403543085,0.536456915,72.22368646,,,71.04921204,73.39816088,,,,,,,69.64165659,67.99934527,71.2839679,,,,74.49380692,72.73194829,76.25566555,,,,630.4514749,645,77737,578.4782103,682.4247395,,,,,,,793.0890728,710.5416549,875.6364907,,,,503.8675669,433.5091977,574.2259361,,,,84.36255652,25,29634,54.59499847,124.5357755,,,,,,,94.97239865,54.28493176,154.2292254,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.132,,,0.114,0.151,0.172,,,0.15,0.196,0.138,,,0.118,0.158,439.2,104,23682,,,0.145,4130,,,,0.136225772,4011.712755,29449,,,,,,,,,,,,,,,,,,,,,,,,,,0.37,,,0.356,0.382,0.186588175,2916,15628,0.160375409,0.212800941,0.06233401,399,6401,0.042078691,0.08258933,0.00039684,11,27719,,,2519.909091,0.808707865,215.925,267,,,,,,,,2.805680137,,,,,,,2.628192366,,3.319668688,2.750459289,,,,,,,2.683569055,,2.97943052,0.300072508,,,,,-18592.89,,,,,0.756121176,35143,46478,0.650480461,0.861761891,43308,,,37603.14894,49012.85106,,,,,,,39678,35433.91489,43922.08511,42424,29004.25532,55843.74468,63750,53739.10638,73760.89362,,,,,,0.999191593,3708,3711,,,42.33355408,,,,,0.190888519,,43308,,,8.670520231,15,1730,,,15.63232765,31,198307,10.62140821,22.18884129,,,,,,,26.58893506,17.52227575,38.68550455,,,,,,,,,,14.21216619,20,141052,8.55665245,22.194058,14.17916797,,,,,,,,,,,,,23.33663254,12.05837857,40.76440065,,,,29.77625273,42,141052,21.46010389,40.24884353,,,,,,,38.72913122,25.73522644,55.97437784,,,,22.71141898,12.4165441,38.10590192,,,,32.27319258,64,198307,24.85429085,41.21214642,,,,,,,32.4975873,22.36984379,45.63869504,,,,32.1480648,21.36215559,46.46290451,,,,21.66666667,,3000,,,43,22,0.596021282,12883,21615,,,0.547,,,,,13.72975841,,,,,0.762625749,7505,9841,0.723406831,0.801844668,0.090617038,818,9027,0.060405071,0.120829005,0.708058124,6968,9841,0.667301406,0.748814843,27719,,,,,0.21995743,6097,27719,,,0.196183124,5438,27719,,,0.499909809,13857,27719,,,0.002850031,79,27719,,,0.005194993,144,27719,,,0.000468992,13,27719,,,0.040694109,1128,27719,,,0.44060031,12213,27719,,,0.001769578,47,26560,0,0.006727196,0.516324543,14312,27719,,,0.821735759,23311,28368,, -28,031,28031,MS,Covington County,2024,1,15695.85579,465,51436,13605.35236,17786.35922,0,,,,2,,,,2,20120.90247,16212.99468,24028.81027,,,,,2,13419.97964,10952.2975,15887.66178,,,,,2,,0.229,,,0.2,0.263,4.007857073,,,3.18512027,4.947474238,5.116201509,,,4.107675536,6.291942075,0.125711035,221,1758,0.110213564,0.141208506,0,,,,,,,0.179523142,0.151351984,0.207694299,,,,0.089757128,0.07155198,0.107962275,,,,,,,0.212,,,0.175,0.255,0.421,,,0.344,0.502,,,0.163,,,0.319,,,0.268,0.376,0.27742639,5088,18340,,,0.142876889,,,0.113257513,0.176314515,0.25,10,40,0.167808311,0.33763196,744,136,18279,,,42.62295082,169,3965,36.19672131,49.04918033,,,,,,,55.10440835,44.582757,67.36228168,,,,32.55146003,25.27748241,41.266732,,,,,,,0.163144831,2432,14907,0.140506533,0.185783129,0.000437661,8,18279,,,2284.875,0.000331528,6,18098,,,3016.333333,0.00104984,19,18098,,,952.5263158,4366,,,,,,,4564,,4267,0.43,,,,,,,0.43,,0.43,0.41,,,,,,,0.31,,0.43,0.828545634,10095,12184,0.780567111,0.876524156,0.633303611,2841,4486,0.50684319,0.759764032,0.035109106,288,8203,,,0.308,1350,,0.196,0.42,,,,,,,0.534883721,0.386523837,0.683243605,,,,0.187005414,0.097443794,0.276567035,6.823329722,94469,13845,3.952478187,9.694181257,0.28750841,1282,4459,0.182626645,0.392390175,11.48859347,21,18279,,,139.2384727,130,93365,115.3029097,163.1740356,,,,,,,132.0409327,95.94114383,177.2587891,,,,144.2564559,114.5604488,179.2976032,,,,9.2,,,,,0,,,,,0.155539773,1095,7040,0.104642129,0.206437416,0.126111908,0.082374866,0.16984895,0.008380682,0,0.021729964,0.036931818,0.006166696,0.06769694,0.868739449,6175,7108,0.824403711,0.913075187,,,,,,,0.879261364,0.747746984,1,,,,0.909365559,0.866516697,0.952214421,0.377,,7108,0.278005947,0.475994053,69.50720898,,,68.1780185,70.83639946,,,,,,,66.96816214,64.57980938,69.35651491,,,,70.84862782,69.25011665,72.44713898,,,,725.9355148,465,51436,657.2966854,794.5743443,,,,,,,844.0593773,715.5726214,972.5461333,,,,679.7055699,596.5196284,762.8915115,,,,90.3795943,18,19916,53.56467554,142.838724,,,,,,,137.6720901,68.72541136,246.3333982,,,,,,,,,,11.82432432,21,1776,7.319443122,18.07473577,,,,,,,,,,,,,,,,,,,,,,0.131,,,0.114,0.151,0.176,,,0.153,0.202,0.13,,,0.112,0.149,351.5,53,15077,,,0.163,3010,,,,,,19568,,,27.05969368,15,55433,15.14510514,44.63084962,,,,,,,,,,,,,42.09007276,23.01103444,70.61999014,,,,0.365,,,0.352,0.377,0.200170843,2109,10536,0.170383609,0.229958077,0.076134381,349,4584,0.051113104,0.101155657,0.000828821,15,18098,,,1206.533333,0.875,175,200,,,,,,,,2.695817169,,,,,,,2.334803889,,3.148053078,2.581615139,,,,,,,2.167391738,,3.068060744,0.180825583,,,,,-16920.41,,,,,0.656942439,31842,48470,0.416203255,0.897681623,46630,,,40072.04255,53187.95745,,,,,,,24431,13223.85106,35638.14894,,,,49760,36622.6383,62897.3617,,,,,,0.997696737,2599,2605,,,39.03978003,,,,,0.176281364,,46630,,,2.446982056,3,1226,,,16.60665625,22,132477,10.40730306,25.14267713,,,,,,,29.67673556,16.22454749,49.7925196,,,,,,,,,,18.59131036,17,93365,10.62654022,30.19112328,18.20810796,,,,,,,,,,,,,24.99824299,13.31051156,42.74775684,,,,29.98982488,28,93365,19.92802084,43.34364692,,,,,,,42.01302404,22.96891119,70.49071549,,,,21.3713268,11.04287642,37.33140703,,,,40.76179261,54,132477,30.62151315,53.18529737,,,,,,,40.27556969,24.24852393,62.89529109,,,,40.03653334,27.38495916,56.51963927,,,,23,,2000,,,39,7,0.662186063,9360,14135,,,0.503,,,,,22.26521459,,,,,0.753666954,5241,6954,0.694719463,0.812614446,0.142972146,888,6211,0.097044495,0.188899797,0.604256543,4202,6954,0.530130071,0.678383016,18098,,,,,0.247154382,4473,18098,,,0.172339485,3119,18098,,,0.356503481,6452,18098,,,0.002320698,42,18098,,,0.005083435,92,18098,,,0.000552547,10,18098,,,0.026356504,477,18098,,,0.598077136,10824,18098,,,0.000466826,8,17137,0,0.006261416,0.509448558,9220,18098,,,1,18340,18340,, -28,033,28033,MS,DeSoto County,2024,1,10041.22747,2853,533030,9514.504033,10567.95091,0,,,,2,,,,2,10579.37194,9615.800171,11542.9437,,5921.083316,4267.396043,8003.584537,,10238.75245,9548.348417,10929.15649,,,,,2,,0.177,,,0.153,0.204,3.628737775,,,2.909972645,4.459323041,4.669120913,,,3.834582066,5.634286803,0.097710225,1485,15198,0.092989531,0.102430919,0,,,,0.087121212,0.053102128,0.121140297,0.142829344,0.133262711,0.152395978,0.071134021,0.054957489,0.087310552,0.07423784,0.068695148,0.079780533,,,,0.084158416,0.045872473,0.122444358,0.16,,,0.131,0.194,0.406,,,0.347,0.47,7.4,0.109866784,0.108,,,0.25,,,0.21,0.297,0.520306075,96420,185314,,,0.14967716,,,0.120666229,0.18302035,0.204918033,25,122,0.1596891,0.25334932,542.9,1024,188633,,,19.60401198,903,46062,18.32534587,20.8826781,,,,,,,24.43083873,22.0688733,26.79280417,21.34756504,16.44022633,27.26036398,16.39210236,14.7876806,17.99652412,,,,24.1187384,15.75516068,35.33953997,0.113630157,18309,161128,0.101715264,0.125545051,0.000259764,49,188633,,,3849.653061,0.000385974,74,191723,,,2590.851351,0.001288317,247,191723,,,776.2064777,3312,,,,,,4177,5174,1387,3030,0.35,,,,,,0.38,0.39,0.14,0.35,0.47,,,,,,0.45,0.38,0.28,0.48,0.91213208,111655,122411,0.902442458,0.921821701,0.669091636,33478,50035,0.632112942,0.70607033,0.032407655,3033,93589,,,0.127,5913,,0.091255319,0.162744681,0.065789474,0,0.806566663,0.057324841,0,0.262497913,0.189990913,0.156490741,0.223491085,0.176659842,0.114841584,0.2384781,0.09588414,0.066318565,0.125449715,4.024802546,141665,35198,3.680678752,4.36892634,0.267119049,12518,46863,0.235535532,0.298702566,7.527845075,142,188633,,,82.70061402,763,922605,76.83244605,88.56878199,,,,,,,60.09506605,50.9530739,69.2370582,49.23050579,31.20791763,73.86993064,98.99182791,90.82194442,107.1617114,,,,8.2,,,,,1,,,,,0.113620489,7320,64425,0.097605551,0.129635427,0.08939465,0.075558017,0.103231284,0.021497866,0.015697035,0.027298697,0.007450524,0.004124304,0.010776743,0.836634792,77080,92131,0.82179756,0.851472023,,,,0.890491803,0.723244032,1,0.815544298,0.778619462,0.852469135,0.776621297,0.718813262,0.834429332,0.79158394,0.782886769,0.800281111,0.415,,92131,0.388410826,0.441589174,74.76079828,,,74.33277868,75.18881787,,,,81.19832857,78.04981103,84.3468461,74.01728976,73.1529936,74.88158592,84.43542145,76.9141014,91.9567415,74.54581225,74.01514809,75.07647641,,,,468.4855628,2853,533030,451.0599232,485.9112025,,,,,,,459.9439551,426.7166521,493.1712581,243.9597121,177.2615002,327.5045265,490.1406835,467.954795,512.326572,,,,70.93396386,147,207235,59.46691578,82.40101193,,,,,,,91.27675111,70.44546948,116.3397122,65.96306069,31.63185156,121.3084172,61.98514153,48.22813996,78.44616374,,,,7.378615192,112,15179,6.012076535,8.745153849,,,,,,,9.979633401,7.382987729,13.1936046,,,,6.455997282,4.889709295,8.364493307,,,,,,,0.105,,,0.091,0.122,0.152,,,0.132,0.175,0.109,,,0.094,0.126,272.6,427,156613,,,0.108,19700,,,,0.109866784,17716.23858,161252,,,28.65518205,161,561853,24.22882641,33.08153769,,,,,,,10.30691709,6.108532284,16.28937258,,,,39.47062237,32.78752719,46.15371755,,,,0.32,,,0.308,0.333,0.139905167,15992,114306,0.123224316,0.156586018,0.054693514,2700,49366,0.040395641,0.068991386,0.000933639,179,191723,,,1071.078212,0.92,2280.68,2479,,,0.069251035,736,10628,0.041853771,0.096648299,3.17262745,,,,,,3.35142075,2.84880445,2.818560674,3.459583118,3.250240402,,,,,,3.727367036,2.951851901,3.035174449,3.496212523,0.111771585,,,,,-6365.5,,,,,0.822394155,47726,58033,0.779126011,0.865662299,79967,,,75563.25532,84370.74468,53889,26158.2766,81619.7234,77989,38420.82979,117557.1702,68228,62378.97872,74077.02128,66406,56647.70213,76164.29787,87182,83306.08511,91057.91489,,,,,,0.996605646,34352,34469,,,30.21014108,,,,,0.149636725,,79967,,,6.160353071,67,10876,,,9.437382573,120,1271539,7.748820582,11.12594456,,,,,,,21.77747773,17.26818544,27.10395614,,,,4.249203274,2.942696792,5.937835668,,,,14.45400608,134,922605,11.98211065,16.92590151,14.52409211,,,,,,,4.567612008,2.432061024,7.810755641,,,,20.59720491,16.7891934,24.40521643,,,,20.59386195,190,922605,17.66555183,23.52217206,,,,,,,26.06532985,20.39451531,32.82496915,,,,19.48243422,15.85802021,23.10684823,,,,16.90864378,215,1271539,14.64845031,19.16883725,,,,,,,15.51645288,11.75200989,20.10336446,17.28662801,8.629422418,30.93055256,17.99662563,15.05717678,20.93607449,,,,22.26495727,,23400,,,380,141,0.576893638,76124,131955,,,0.712,,,,,64.32279869,,,,,0.764487294,52255,68353,0.74858343,0.780391158,0.112357208,7544,67143,0.097943919,0.126770497,0.908314193,62086,68353,0.90013687,0.916491515,191723,,,,,0.248107947,47568,191723,,,0.137098835,26285,191723,,,0.336313327,64479,191723,,,0.003327718,638,191723,,,0.017447046,3345,191723,,,0.001001445,192,191723,,,0.053608592,10278,191723,,,0.574406827,110127,191723,,,0.008019896,1406,175314,0.005850593,0.010189198,0.517522676,99221,191723,,,0.219012055,40586,185314,, -28,035,28035,MS,Forrest County,2024,1,13196.9626,1504,214385,12274.04704,14119.87816,0,,,,2,,,,2,16915.03757,15241.52526,18588.54987,,,,,2,11220.75755,10086.15755,12355.35756,,,,,2,,0.21,,,0.179,0.242,3.717200371,,,2.924108417,4.57943105,4.793281264,,,3.848814965,5.826401546,0.132845483,944,7106,0.124953882,0.140737084,0,,,,,,,0.185243825,0.171693937,0.198793713,0.069114471,0.046009884,0.092219058,0.093438162,0.083518432,0.103357891,,,,0.106382979,0.044052002,0.168713956,0.19,,,0.153,0.229,0.4,,,0.335,0.47,6.1,0.090223797,0.18,,,0.296,,,0.248,0.343,0.753371376,58882,78158,,,0.158730274,,,0.127270962,0.194103144,0.075949367,6,79,0.035204936,0.132640628,1140.3,888,77875,,,24.28652429,514,21164,22.18690827,26.38614031,,,,,,,31.30259172,27.62947891,34.97570453,57.73955774,42.42485524,76.78137143,16.97190526,14.47155969,19.47225084,,,,,,,0.146849626,9332,63548,0.127785796,0.165913455,0.000873194,68,77875,,,1145.220588,0.000435284,34,78110,,,2297.352941,0.004839329,378,78110,,,206.6402116,3560,,,,,,,5683,,3058,0.44,,,,,,0.38,0.39,,0.45,0.48,,,,,,0.45,0.38,0.35,0.5,0.89519475,42289,47240,0.878065658,0.912323843,0.703252033,14186,20172,0.642387947,0.764116118,0.037568265,1252,33326,,,0.284,4880,,0.20893617,0.35906383,,,,,,,0.511709438,0.431566495,0.59185238,0.437308869,0.26508626,0.609531477,0.088854154,0.052702819,0.125005489,5.068125259,97754,19288,4.433600284,5.702650235,0.377492551,6588,17452,0.315920746,0.439064357,13.09791332,102,77875,,,88.55686673,335,378288,79.07364489,98.04008856,,,,,,,75.66222122,61.32571692,89.99872552,,,,101.2775842,87.83319248,114.7219759,,,,8.9,,,,,0,,,,,0.172683621,4855,28115,0.149191812,0.19617543,0.144412192,0.120611403,0.16821298,0.02632047,0.011493115,0.041147825,0.011559666,0.004643169,0.018476162,0.837594028,29619,35362,0.822126119,0.853061936,,,,,,,0.827415942,0.786512463,0.868319421,0.792785235,0.688478134,0.897092336,0.837437212,0.810585828,0.864288597,0.205,,35362,0.175596515,0.234403486,71.96478197,,,71.29616595,72.63339798,,,,,,,68.79500142,67.66348612,69.92651672,,,,73.53949593,72.69179228,74.38719959,,,,643.6549318,1504,214385,610.2794247,677.0304389,,,,,,,852.1692963,786.0679206,918.270672,,,,551.7246722,512.2365253,591.212819,,,,95.32888465,77,80773,75.23206499,119.1447495,,,,,,,127.5103602,92.64922294,171.176707,,,,74.05326728,49.59463532,106.3528445,,,,11.06806862,80,7228,8.776290065,13.77516948,,,,,,,14.91628615,11.03515061,19.72012134,,,,8.059701493,5.311394069,11.72644252,,,,,,,0.122,,,0.104,0.141,0.166,,,0.142,0.19,0.126,,,0.109,0.146,680.6,441,64796,,,0.18,13990,,,,0.090223797,6760.829969,74934,,,19.75581809,45,227781,14.41002928,26.43483895,,,,,,,,,,,,,28.53551129,20.09163336,39.33244344,,,,0.334,,,0.32,0.347,0.182813522,8382,45850,0.156600756,0.209026288,0.056522209,1046,18506,0.039841358,0.07320306,0.003136602,245,78110,,,318.8163265,0.927593931,641.895,692,,,,,,,,3.082074669,,,,,,,2.77987682,2.87576227,3.480922356,3.037070448,,,,,,,2.739495136,3.117840266,3.384290711,0.27966812,,,,,-10751.664,,,,,0.695731193,32156,46219,0.613058331,0.778404054,51344,,,47182.12766,55505.87234,,,,,,,31519,28616.53192,34421.46809,53639,46905.89362,60372.10638,62174,58551.87234,65796.12766,,,,,,0.996339747,10616,10655,,,54.45877639,,,,,0.197413525,,51344,,,9.092667827,47,5169,,,12.44787453,66,530211,9.627185256,15.83674847,,,,,,,23.25287502,17.024027,31.01607669,,,,5.95917962,3.531787516,9.418072956,,,,14.65013995,56,378288,10.97396013,19.16274375,14.80353593,,,,,,,,,,,,,23.08970739,17.08189264,30.52581768,,,,23.52704818,89,378288,18.89415158,28.95205727,,,,,,,23.33507757,16.06279368,32.7711248,,,,25.08710801,18.84620765,32.7332341,,,,17.91739515,95,530211,14.49624264,21.90308644,,,,,,,20.7253886,14.87289669,28.11632987,,,,16.55327672,12.28616104,21.82343171,,,,13.8961039,,7700,,,32,75,0.559851433,31654,56540,,,0.598,,,,,68.99331267,,,,,0.558958809,16406,29351,0.537092974,0.580824644,0.152475176,4192,27493,0.12707761,0.177872741,0.820857892,24093,29351,0.798900667,0.842815118,78110,,,,,0.224260658,17517,78110,,,0.14203047,11094,78110,,,0.365100499,28518,78110,,,0.003789528,296,78110,,,0.011125336,869,78110,,,0.000806555,63,78110,,,0.034054539,2660,78110,,,0.571860197,44668,78110,,,0.005643836,412,73000,0.002529629,0.008758042,0.529676098,41373,78110,,,0.345965864,27040,78158,, -28,037,28037,MS,Franklin County,2024,1,10950.34961,183,21005,8240.456608,13660.24261,0,,,,2,,,,2,14185.91574,9638.64149,20135.77504,,,,,2,9430.147326,6148.624238,12711.67041,,,,,2,,0.25,,,0.217,0.286,4.318703182,,,3.455866696,5.276539189,5.086245222,,,4.051364868,6.265632289,0.1184,74,625,0.093070437,0.143729563,0,,,,,,,0.16967509,0.125472343,0.213877838,,,,0.080118694,0.051133651,0.109103737,,,,,,,0.234,,,0.194,0.277,0.429,,,0.348,0.51,5.2,0.150322595,0.19,,,0.34,,,0.287,0.397,0.700716612,5378,7675,,,0.12738404,,,0.099387711,0.159657901,0.142857143,1,7,0.008995928,0.386311364,442.9,34,7676,,,39.79533826,70,1759,31.02241848,50.27901582,,,,,,,54.17956656,37.73805326,75.35066156,,,,33.30161751,23.19579677,46.31448846,,,,,,,0.165068147,981,5943,0.14242985,0.187706445,0.000130276,1,7676,,,7676,0.000130856,1,7642,,,7642,0.000130856,1,7642,,,7642,3009,,,,,,,3285,,2861,0.35,,,,,,,0.36,,0.35,0.26,,,,,,,0.16,,0.28,0.843167111,4430,5254,0.799821746,0.886512475,0.622686567,1043,1675,0.491451113,0.753922021,0.053571429,141,2632,,,0.269,467,,0.170106383,0.367893617,,,,,,,0.462466488,0.345021754,0.579911222,,,,0.301925025,0.17425878,0.42959127,4.802197802,85652,17836,3.931045773,5.673349832,0.369222097,655,1774,0.232205142,0.506239052,23.44971339,18,7676,,,119.1740719,46,38599,87.25039874,158.9615112,,,,,,,97.92106056,52.1388407,167.4479958,,,,136.0319881,93.6381614,191.0394875,,,,8.4,,,,,0,,,,,0.075907591,230,3030,0.035854202,0.11596098,0.056932351,0.019618075,0.094246627,0.021122112,0.001056566,0.041187658,0.001320132,0,0.008883351,0.902332938,2282,2529,0.851842644,0.952823232,,,,,,,,,,,,,0.887922705,0.786260618,0.989584793,0.491,,2529,0.363727964,0.618272036,73.21929634,,,71.24785912,75.19073355,,,,,,,69.56353075,66.33257951,72.79448198,,,,74.95063817,72.45955847,77.44171788,,,,573.6997548,183,21005,484.3359808,663.0635288,,,,,,,780.2453797,612.6604417,979.5266238,,,,485.7320976,380.4895369,590.9746582,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.141,,,0.122,0.161,0.183,,,0.158,0.209,0.14,,,0.12,0.16,215.6,14,6493,,,0.19,1460,,,,0.150322595,1220.318826,8118,,,,,,,,,,,,,,,,,,,,,,,,,,0.36,,,0.346,0.373,0.198204583,839,4233,0.168417349,0.227991817,0.085872576,155,1805,0.058468321,0.113276832,0.000915991,7,7642,,,1091.714286,0.775,75.95,98,,,,,,,,3.095350283,,,,,,,2.789700159,,3.53716381,3.035367233,,,,,,,2.869001097,,3.267646366,0.011679625,,,,,-17387.66,,,,,0.791186963,39034,49336,0.547151195,1.035222731,47165,,,40557,53773,,,,,,,22625,5377,39873,,,,52378,49218.17021,55537.82979,,,,,,0.989941324,1181,1193,,,14.77558116,,,,,0.150408142,,47165,,,2.364066194,1,423,,,18.47609194,10,54124,8.860004242,33.9781909,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,28.49814762,11,38599,14.22617261,50.99105809,,,,,,,,,,,,,,,,,,,38.79979307,21,54124,24.01768344,59.30960523,,,,,,,,,,,,,50.03826456,29.14913307,80.11610884,,,,17.77777778,,900,,,8,8,0.755461473,4461,5905,,,0.373,,,,,7.476016737,,,,,0.758910558,2257,2974,0.724571501,0.793249615,0.102755026,276,2686,0.047632394,0.157877658,0.828177539,2463,2974,0.774822983,0.881532094,7642,,,,,0.229913635,1757,7642,,,0.216304632,1653,7642,,,0.341664486,2611,7642,,,0.003140539,24,7642,,,0.001308558,10,7642,,,0.000261712,2,7642,,,0.013739859,105,7642,,,0.628238681,4801,7642,,,0,0,7254,,,0.503009683,3844,7642,,,1,7675,7675,, -28,039,28039,MS,George County,2024,1,12897.38622,565,69664,11352.78705,14441.98539,0,,,,2,,,,2,17719.74435,11353.37456,26365.57501,1,,,,2,12658.68303,11026.74833,14290.61774,,,,,2,,0.217,,,0.184,0.248,4.066413588,,,3.17940755,5.018438624,5.010055819,,,3.917189436,6.160197502,0.083468396,206,2468,0.072556046,0.094380745,0,,,,,,,0.192982456,0.133831956,0.252132956,,,,0.074342702,0.063395639,0.085289764,,,,,,,0.214,,,0.172,0.256,0.393,,,0.314,0.477,6.2,0.056774833,0.192,,,0.314,,,0.258,0.37,0.349650924,8514,24350,,,0.155834348,,,0.121880932,0.192398728,0.166666667,7,42,0.092975613,0.254046475,464.4,115,24762,,,37.75639862,208,5509,32.6252456,42.88755164,,,,,,,55.69620253,34.9045136,84.32471997,,,,37.64805415,32.11724586,43.17886243,,,,,,,0.146708616,3031,20660,0.126453297,0.166963935,0.000444229,11,24762,,,2251.090909,0.000317385,8,25206,,,3150.75,0.000555423,14,25206,,,1800.428571,3576,,,,,,,,,3629,0.34,,,,,,,0.15,,0.35,0.22,,,,,,,0.15,,0.22,0.860229031,13897,16155,0.829882935,0.890575128,0.541193182,3429,6336,0.442388528,0.639997836,0.050045809,437,8732,,,0.205,1346,,0.13112766,0.27887234,,,,,,,0.716346154,0.405548248,1,0.5625,0.155343007,0.969656994,0.212805329,0.135583091,0.290027568,5.16776933,104668,20254,3.876278048,6.459260612,0.243593702,1578,6478,0.16473318,0.322454224,9.288425814,23,24762,,,113.905483,139,122031,94.96926256,132.8417035,,,,,,,138.2684535,73.62212818,236.4432665,,,,113.225706,92.96705674,133.4843553,,,,9.2,,,,,0,,,,,0.117501546,950,8085,0.080400489,0.154602603,0.088328076,0.055117026,0.121539126,0.025974026,0.008898946,0.043049106,0.014100186,0,0.02826399,0.798270893,6648,8328,0.755762725,0.840779061,,,,,,,,,,,,,0.783240494,0.747522257,0.818958731,0.504,,8328,0.414368634,0.593631366,70.90380394,,,69.88442334,71.92318454,,,,,,,69.37937821,64.74169566,74.01706075,,,,70.87587994,69.8105652,71.94119467,,,,673.7970589,565,69664,616.4536489,731.1404688,,,,,,,740.343546,533.5745082,1000.729401,,,,676.8623755,615.8585135,737.8662375,,,,57.00848001,16,28066,32.58527205,92.57819995,,,,,,,,,,,,,50.40110882,26.0429884,88.0405941,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.131,,,0.111,0.15,0.176,,,0.152,0.203,0.114,,,0.098,0.133,159.7,32,20035,,,0.192,4670,,,,0.056774833,1281.862183,22578,,,18.99928074,14,73687,10.38708358,31.87756473,,,,,,,,,,,,,20.32043767,10.81977724,34.74856728,,,,0.326,,,0.31,0.342,0.183139535,2583,14104,0.15573528,0.21054379,0.070602021,482,6827,0.047963724,0.093240319,0.000396731,10,25206,,,2520.6,0.94,229.36,244,,,,,,,,3.032277698,,,,,,,2.46695472,,3.096648667,2.852146422,,,,,,,2.43983537,,2.898787047,0.055716277,,,,,-2263.582,,,,,0.723603623,41469,57309,0.61956569,0.827641555,61956,,,55529.10638,68382.89362,,,,,,,22757,15224.40426,30289.59575,,,,54712,45390.97872,64033.02128,,,,,,0.994121969,4059,4083,,,62.55418771,,,,,0.134337272,,61956,,,3.727369542,7,1878,,,7.687804186,13,169099,4.093431949,13.14637929,,,,,,,,,,,,,,,,,,,15.75747607,19,122031,9.338878976,24.90360565,15.56981423,,,,,,,,,,,,,18.18751786,10.77907575,28.74411933,,,,14.75035032,18,122031,8.741992429,23.31191277,,,,,,,,,,,,,12.26611815,6.531191315,20.97543561,,,,49.08367288,83,169099,39.09487147,60.84659744,,,,,,,,,,,,,48.22288482,37.66247312,60.82660756,,,,16.07142857,,2800,,,30,15,0.633907057,11049,17430,,,0.547,,,,,4.874499283,,,,,0.819113388,7354,8978,0.79034275,0.847884026,0.131357966,1095,8336,0.091942695,0.170773236,0.755067944,6779,8978,0.708852544,0.801283344,25206,,,,,0.265293978,6687,25206,,,0.149369198,3765,25206,,,0.075934301,1914,25206,,,0.004800444,121,25206,,,0.007577561,191,25206,,,7.93462E-05,2,25206,,,0.033960168,856,25206,,,0.863405538,21763,25206,,,0.005165335,117,22651,0,0.013848632,0.49333492,12435,25206,,,1,24350,24350,, -28,041,28041,MS,Greene County,2024,1,8196.574892,246,38019,6695.638106,9697.511678,0,,,,2,,,,2,7881.279845,5390.78958,11126.01558,,,,,2,8496.95476,6668.019092,10325.89043,,,,,2,,0.217,,,0.183,0.253,4.009078702,,,3.149811154,4.934821675,4.975080432,,,3.875258786,6.110737555,0.062753036,62,988,0.047630592,0.077875481,0,,,,,,,0.157534247,0.098440264,0.216628229,,,,0.047387606,0.032871617,0.061903596,,,,,,,0.213,,,0.172,0.257,0.388,,,0.306,0.471,7.1,0.016900523,0.168,,,0.291,,,0.238,0.344,0.142054693,1922,13530,,,0.163983535,,,0.130411298,0.202189505,0.238095238,5,21,0.124889996,0.363491167,557.6,76,13630,,,36.87013519,90,2441,29.6479427,45.31965579,,,,,,,46.18937644,28.2136711,71.33574573,,,,36.53444676,28.48039359,46.15907559,,,,,,,0.131949839,1189,9011,0.11169452,0.152205158,7.33676E-05,1,13630,,,13630,0.00014758,2,13552,,,6776,0.000516529,7,13552,,,1936,3078,,,,,,,3826,,2565,0.27,,,,,,,0.21,,0.28,0.25,,,,,,,0.21,,0.25,0.811177645,8128,10020,0.779449488,0.842905802,0.388953353,1676,4309,0.317507304,0.460399403,0.057867049,242,4182,,,0.267,655,,0.171680851,0.362319149,,,,,,,0.422,0.197466804,0.646533196,,,,0.198079838,0.121754033,0.274405644,5.022634156,100523,20014,3.50822947,6.537038842,0.252941177,645,2550,0.147462659,0.358419694,7.336757153,10,13630,,,59.15059742,40,67624,42.25805401,80.54632522,,,,,,,,,,,,,69.63075222,48.22132009,97.30199696,,,,9,,,,,0,,,,,0.108496732,415,3825,0.054199544,0.16279392,0.078804348,0.034891846,0.12271685,0.035294118,0,0.075885698,0.003921569,0,0.014815603,0.673615433,2165,3214,0.57888696,0.768343905,,,,,,,,,,,,,0.648648649,0.565603526,0.731693771,0.559,,3214,0.421932108,0.696067892,76.12890532,,,74.6539315,77.60387914,,,,,,,77.80125164,73.62073208,81.98177119,,,,75.5503492,73.91201027,77.18868813,,,,511.9662497,246,38019,447.2016455,576.7308539,,,,,,,544.0142631,401.1131725,721.2839876,,,,515.1735607,440.4508502,589.8962711,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.126,,,0.108,0.146,0.164,,,0.141,0.188,0.117,,,0.099,0.136,707.8,84,11868,,,0.168,2290,,,,0.016900523,243.3675358,14400,,,,,,,,,,,,,,,,,,,,,,,,,,0.348,,,0.333,0.361,0.16429895,1064,6476,0.136894695,0.191703205,0.052828775,141,2669,0.033764945,0.071892605,0.000885478,12,13552,,,1129.333333,0.825,111.375,135,,,,,,,,3.064729061,,,,,,,2.72989415,,3.145015471,2.865172198,,,,,,,2.700464783,,2.915516938,0.061948348,,,,,-5308.407,,,,,0.707635897,38598,54545,0.531588119,0.883683675,52585,,,46700.23404,58469.76596,,,,,,,35250,8252.042553,62247.95745,,,,53760,48094.46809,59425.53192,,,,,,0.990958409,1644,1659,,,46.00126561,,,,,0.151754303,,52585,,,1.443001443,1,693,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,27.49751465,26,94554,17.9622895,40.29023001,,,,,,,,,,,,,32.14682331,20.14624302,48.67067682,,,,,,1300,,,7,-888,0.53715342,5812,10820,,,0.463,,,,,0.904410254,,,,,0.761636829,2978,3910,0.707343889,0.815929768,0.10758166,359,3337,0.038283736,0.176879584,0.684654732,2677,3910,0.591394798,0.777914665,13552,,,,,0.184253247,2497,13552,,,0.159090909,2156,13552,,,0.257895514,3495,13552,,,0.003541913,48,13552,,,0.002066116,28,13552,,,7.37898E-05,1,13552,,,0.015053129,204,13552,,,0.71133412,9640,13552,,,0.001465145,19,12968,0,0.009276484,0.411747344,5580,13552,,,1,13530,13530,, -28,043,28043,MS,Grenada County,2024,1,16043.59456,542,58138,14008.89027,18078.29886,0,,,,2,,,,2,20635.20582,17185.33113,24085.08051,,,,,2,12234.96162,9820.781841,14649.1414,,,,,2,,0.238,,,0.204,0.276,4.086501351,,,3.252614832,5.004574478,5.098022118,,,4.05619132,6.231017025,0.120945575,220,1819,0.105961063,0.135930086,0,,,,,,,0.137787056,0.115960521,0.159613591,,,,0.102189781,0.081482829,0.122896733,,,,,,,0.212,,,0.173,0.256,0.428,,,0.35,0.509,6.8,0.059171713,0.163,,,0.321,,,0.27,0.379,0.699477553,15129,21629,,,0.13078857,,,0.101868084,0.162928427,0.151515152,5,33,0.071469852,0.25177508,936.1,200,21365,,,39.04506917,175,4482,33.26007076,44.83006757,,,,,,,45.01452081,36.33252794,55.14582915,,,,34.37358661,27.08247665,43.02366936,,,,,,,0.147527391,2491,16885,0.127272072,0.16778271,0.000374444,8,21365,,,2670.625,0.000474203,10,21088,,,2108.8,0.000663885,14,21088,,,1506.285714,2880,,,,,,,3749,,2591,0.38,,,,,,,0.38,,0.39,0.39,,,,,,,0.32,,0.41,0.820362146,12006,14635,0.784035359,0.856688932,0.60527293,3260,5386,,,0.037453184,330,8811,,,0.271,1342,,0.167340426,0.374659575,,,,,,,0.511811024,0.398783788,0.624838259,,,,0.146023468,0.065849195,0.226197741,5.094076655,99416,19516,3.662507865,6.525645445,0.422603943,2165,5123,0.333836917,0.511370969,12.63749122,27,21365,,,112.5148987,118,104875,92.21354016,132.8162572,,,,,,,125.0306995,94.44684673,162.3627632,,,,107.5875692,82.29596557,138.2007336,,,,9,,,,,1,,,,,0.166961652,1415,8475,0.123288402,0.210634902,0.151367781,0.1067568,0.195978762,0.014159292,0.003333304,0.02498528,0.006489676,0,0.013819768,0.898674455,8000,8902,0.848247008,0.949101903,,,,,,,0.869960124,0.809317815,0.930602433,,,,0.904070939,0.856081933,0.952059946,0.229,,8902,0.175039869,0.282960132,69.46461092,,,68.18345108,70.74577076,,,,,,,66.28728465,64.3133335,68.2612358,,,,71.97378285,70.32924743,73.61831827,,,,727.6791134,542,58138,662.9917435,792.3664834,,,,,,,911.7612074,799.3625549,1024.15986,,,,599.5444451,521.5916659,677.4972244,,,,95.90354843,21,21897,59.36580803,146.5987612,,,,,,,107.5268817,53.67703194,192.3952934,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.134,,,0.115,0.155,0.173,,,0.149,0.199,0.132,,,0.114,0.153,462.2,82,17742,,,0.163,3520,,,,0.059171713,1296.215542,21906,,,15.94057354,10,62733,7.644124617,29.3152823,,,,,,,,,,,,,,,,,,,0.371,,,0.358,0.384,0.183985228,2192,11914,0.157772462,0.210197993,0.063145809,330,5226,0.04289049,0.083401129,0.001754552,37,21088,,,569.945946,0.85,232.9,274,,,,,,,,3.149342112,,,,,,,2.818207193,,3.535490759,3.561695292,,,,,,,3.247088114,,3.972341003,0.002956693,,,,,-13779.62,,,,,0.938841503,40066,42676,0.745101003,1.132582003,46718,,,40380.46809,53055.53192,,,,,,,31089,26450.53192,35727.46809,,,,62374,50361.40426,74386.59575,,,,,,0.997635313,3797,3806,,,42.57492372,,,,,0.190633161,,46718,,,6.701414743,9,1343,,,20.30759233,30,147728,13.70144727,28.99035078,,,,,,,34.96948118,21.91518768,52.94421476,,,,,,,,,,18.12113365,18,104875,10.55622814,29.0136904,17.16328963,,,,,,,,,,,,,19.81091715,9.500104818,36.432982,,,,34.32657926,36,104875,24.04191411,47.52245482,,,,,,,44.65382125,27.27571409,68.96420528,,,,28.21969029,16.12999128,45.82700906,,,,30.4613885,45,147728,22.2187458,40.75973444,,,,,,,34.96948118,21.91518768,52.94421476,,,,27.43073739,17.19069708,41.53046606,,,,41.73913044,,2300,,,67,29,0.690788224,10911,15795,,,0.542,,,,,44.88700993,,,,,0.682594261,5757,8434,0.64808632,0.717102203,0.141569325,1115,7876,0.096204994,0.186933655,0.76108608,6419,8434,0.708925475,0.813246686,21088,,,,,0.239093323,5042,21088,,,0.186930956,3942,21088,,,0.433848634,9149,21088,,,0.003509105,74,21088,,,0.004884294,103,21088,,,0.000284522,6,21088,,,0.01555387,328,21088,,,0.531439681,11207,21088,,,0,0,20178,,,0.520770106,10982,21088,,,0.524897129,11353,21629,, -28,045,28045,MS,Hancock County,2024,1,10177.90689,992,130012,9108.766517,11247.04726,0,,,,2,,,,2,12342.13417,8734.028701,16940.54343,,,,,2,10590.3444,9387.366328,11793.32247,,,,,2,,0.184,,,0.153,0.216,3.717647529,,,2.925383963,4.613342613,4.912149029,,,3.913587082,6.017198588,0.084875558,266,3134,0.075118072,0.094633045,0,,,,,,,0.165517241,0.122742502,0.208291981,,,,0.07651715,0.066401792,0.086632508,,,,,,,0.185,,,0.146,0.23,0.372,,,0.303,0.449,5.8,0.154476184,0.164,,,0.263,,,0.215,0.316,0.553471001,25489,46053,,,0.150006564,,,0.119117606,0.186302711,0.111111111,5,45,0.049461387,0.193782528,347.4,160,46055,,,21.81025082,200,9170,18.78750427,24.83299736,,,,,,,23.1092437,14.48243999,34.98767268,,,,22.91666667,19.41990891,26.41342442,,,,,,,0.118165493,4277,36195,0.101484641,0.134846344,0.000434263,20,46055,,,2302.75,0.000260338,12,46094,,,3841.166667,0.000433896,20,46094,,,2304.7,2896,,,,,,,406,8419,2902,0.43,,,,,,0.31,0.59,,0.42,0.39,,,,,,0.38,0.3,0.31,0.4,0.903650633,30397,33638,0.883663764,0.923637502,0.550906963,5649,10254,0.470276096,0.63153783,0.040775472,774,18982,,,0.225,1909,,0.142787234,0.307212766,,,,,,,0.63165075,0.349911631,0.913389869,0.273542601,0.022285816,0.524799386,0.178410577,0.118641406,0.238179748,4.60565498,125587,27268,3.760057432,5.451252529,0.312779267,2800,8952,0.245183277,0.380375257,6.296819021,29,46055,,,102.0866339,241,236074,89.19771665,114.9755511,,,,,,,72.85595337,39.83102767,122.2399101,,,,111.3144634,96.67142564,125.9575011,,,,7.6,,,,,1,,,,,0.154454524,3320,21495,0.125885704,0.183023345,0.123174753,0.09517088,0.151178626,0.025354734,0.014933308,0.03577616,0.011863224,0.002527143,0.021199305,0.781070839,16076,20582,0.731060872,0.831080805,,,,,,,0.900481541,0.782302678,1,,,,0.777748708,0.744085014,0.811412403,0.504,,20582,0.434097034,0.573902966,75.49063331,,,74.60784464,76.37342197,,,,,,,72.05506926,68.89194965,75.21818887,93.30341612,80.023346,106.5834862,75.05730208,74.10317157,76.0114326,,,,502.3387355,992,130012,468.4040104,536.2734606,,,,,,,636.8038578,510.0537851,785.495206,,,,516.7082288,479.2353076,554.18115,,,,48.38397523,20,41336,29.55418905,74.72512556,,,,,,,,,,,,,46.08294931,25.79227691,76.00681681,,,,6.57688694,21,3193,4.071196675,10.05347032,,,,,,,,,,,,,,,,,,,,,,0.115,,,0.097,0.134,0.166,,,0.142,0.191,0.105,,,0.09,0.122,228,91,39911,,,0.164,7520,,,,0.154476184,6785.98427,43929,,,45.87576842,65,141687,35.40594954,58.47243277,,,,,,,,,,,,,52.73643502,40.52412466,67.47280917,,,,0.35,,,0.334,0.366,0.140419129,3826,27247,0.11897232,0.161865937,0.053846972,506,9397,0.037166121,0.070527824,0.000802708,37,46094,,,1245.783784,0.888019068,419.145,472,,,,,,,,3.027382689,,,,,,,2.639496805,,3.074641459,2.989298822,,,,,,,2.553722907,,3.048724505,0.066227163,,,,,-4047.9325,,,,,0.640744154,40331,62944,0.500050225,0.781438082,59874,,,53596.04255,66151.95745,,,,,,,34602,20928.46809,48275.53192,62277,11985.42553,112568.5745,66568,61084.76596,72051.23404,,,,,,0.996933561,5852,5870,,,60.3881893,,,,,0.160854461,,59874,,,4.992319508,13,2604,,,8.806960536,29,329285,5.898159691,12.6482644,,,,,,,,,,,,,7.188297452,4.39079883,11.10174241,,,,20.76659479,57,236074,15.41336693,27.37816633,24.14497149,,,,,,,,,,,,,22.24957305,16.22899126,29.77167928,,,,23.29777951,55,236074,17.55107592,30.32526241,,,,,,,,,,,,,24.06799208,17.7458374,31.91066572,,,,15.18441472,50,329285,11.27016528,20.01875781,,,,,,,,,,,,,17.61132876,13.02895797,23.28311059,,,,19.34782609,,4600,,,36,53,0.559898477,20957,37430,,,0.58,,,,,27.84996815,,,,,0.806974105,15644,19386,0.781129188,0.832819022,0.104315778,1953,18722,0.080195601,0.128435955,0.844526978,16372,19386,0.811166287,0.877887669,46094,,,,,0.188093895,8670,46094,,,0.226493687,10440,46094,,,0.083351412,3842,46094,,,0.007441316,343,46094,,,0.009046731,417,46094,,,0.000672539,31,46094,,,0.040590966,1871,46094,,,0.840543238,38744,46094,,,0.001419511,62,43677,0,0.004498348,0.510239945,23519,46094,,,0.382602654,17620,46053,, -28,047,28047,MS,Harrison County,2024,1,11745.99437,4184,588580,11224.75657,12267.23216,0,,,,2,6375.944238,4270.069923,9156.919486,,14437.26967,13308.17384,15566.3655,,7371.463616,5724.229934,9345.086618,,11419.58578,10768.90384,12070.26772,,,,,2,,0.204,,,0.174,0.233,3.762830062,,,2.999243841,4.638738957,5.193131163,,,4.264127693,6.220488749,0.107344009,1944,18110,0.102835553,0.111852465,0,,,,0.1,0.072584359,0.127415641,0.161807055,0.152123258,0.171490853,0.056716418,0.045639366,0.06779347,0.086093386,0.080560301,0.091626471,,,,0.09190372,0.065416861,0.118390579,0.2,,,0.163,0.241,0.358,,,0.301,0.417,5.7,0.148323324,0.169,,,0.29,,,0.244,0.338,0.681240144,142121,208621,,,0.158309607,,,0.127474115,0.191032079,0.176136364,31,176,0.139528986,0.215686179,605.1,1267,209396,,,26.13654364,1155,44191,24.62919666,27.64389062,,,,,,,32.93562906,29.92905732,35.94220081,46.72589668,39.04044239,54.41135096,20.80890973,18.97943168,22.63838778,,,,22.98288509,16.8869595,30.56236496,0.144374982,24595,170355,0.12888562,0.159864343,0.00055875,117,209396,,,1789.709402,0.000724967,153,211044,,,1379.372549,0.00255397,539,211044,,,391.5473098,3760,,,,,,2840,5338,3373,3498,0.36,,,,,,0.19,0.38,0.39,0.36,0.34,,,,,,0.33,0.27,0.26,0.36,0.890951674,124776,140048,0.882608975,0.899294372,0.628097067,34502,54931,0.590756598,0.665437536,0.03786699,3307,87332,,,0.248,11950,,0.193191489,0.302808511,,,,0.271916791,0.14870131,0.395132271,0.4375807,0.388440664,0.486720736,0.378720238,0.296036755,0.461403722,0.141381639,0.114855678,0.1679076,4.843585993,112594,23246,4.445672273,5.241499714,0.341236446,16868,49432,0.307849971,0.374622921,9.025960381,189,209396,,,92.29696114,958,1037954,86.4522814,98.14164088,,,,74.62433432,46.76667302,112.982139,80.70658043,69.86792984,91.54523102,53.68802064,36.47840526,76.20585979,104.4802982,96.65600371,112.3045927,,,,9.2,,,,,1,,,,,0.163181222,13070,80095,0.148899962,0.177462483,0.135609324,0.12195706,0.149261587,0.028029215,0.022122944,0.033935486,0.007615956,0.005455688,0.009776224,0.811498731,74158,91384,0.800120007,0.822877454,,,,0.681972789,0.610363973,0.753581605,0.837021475,0.803691934,0.870351017,0.788576026,0.715916226,0.861235826,0.838330626,0.82925106,0.847410192,0.272,,91384,0.250786135,0.293213865,73.08444674,,,72.69919553,73.46969796,,,,78.76243383,76.58981271,80.93505494,70.78712292,69.94833692,71.62590893,82.40451848,79.0312835,85.77775345,73.23228203,72.76452788,73.70003618,,,,576.8603272,4184,588580,558.7291774,594.991477,,,,327.231286,254.1078977,414.8436283,692.0015903,649.9979351,734.0052456,314.4995852,248.1981544,393.0705203,572.1983951,550.1500425,594.2467478,,,,63.54191724,140,220327,53.01618379,74.0676507,,,,,,,102.5460725,79.93969428,129.5607935,,,,51.31801776,39.16105386,66.05646129,,,,7.389296387,136,18405,6.147387589,8.631205185,,,,,,,13.1294964,10.2914293,16.50837054,,,,5.496662741,4.152119963,7.137873774,,,,,,,0.117,,,0.099,0.135,0.166,,,0.143,0.19,0.118,,,0.101,0.136,391.9,684,174545,,,0.169,35020,,,,0.148323324,27752.03554,187105,,,30.33801337,190,626277,26.02414977,34.65187697,,,,,,,23.0141008,16.20405083,31.7219064,,,,36.32410244,30.37045731,42.27774756,,,,0.354,,,0.341,0.366,0.178642706,21751,121757,0.158387387,0.198898026,0.062931576,3208,50976,0.046250725,0.079612427,0.001937985,409,211044,,,516,0.895311081,1971.475,2202,,,0.079797048,865,10840,0.051420715,0.108173381,3.298882504,,,,,,3.61326209,2.951390423,3.042721432,3.558574501,3.356209653,,,,,,3.91515538,2.991102747,3.222741735,3.625190776,0.118102357,,,,,-7125.191,,,,,0.789325458,40359,51131,0.739321624,0.839329292,55916,,,51814.89362,60017.10638,51165,34339.97872,67990.02128,65298,39325.91489,91270.08511,36078,32968.21277,39187.78723,54158,44997.82979,63318.17021,65286,61486.34043,69085.65957,,,,,,0.995437407,31417,31561,,,46.5136988,,,,,0.184151227,,55916,,,7.144468677,95,13297,,,9.011519495,130,1442598,7.462408909,10.56063008,,,,,,,20.98879309,16.53678172,26.27060436,,,,5.127388327,3.767412084,6.818339505,,,,20.46775166,212,1037954,17.64830748,23.28719583,20.42479725,,,,,,,7.418185757,4.39648702,11.72393167,,,,27.40210764,23.27182147,31.5323938,,,,19.84673695,206,1037954,17.13647308,22.55700081,,,,,,,23.87096041,18.3431014,30.54132794,,,,20.28595571,16.83828544,23.73362598,,,,16.84460952,243,1442598,14.7266684,18.96255064,,,,,,,16.57009981,12.6447318,21.32900303,18.77111751,10.50605197,30.96010371,17.23675225,14.54903878,19.92446571,,,,26.63716814,,22600,,,246,356,0.493699094,75768,153470,,,0.64,,,,,76.77897249,,,,,0.596413563,47827,80191,0.583291458,0.609535667,0.15123662,11600,76701,0.136095208,0.166378033,0.859448068,68920,80191,0.843387216,0.87550892,211044,,,,,0.232605523,49090,211044,,,0.168239798,35506,211044,,,0.258903357,54640,211044,,,0.00456303,963,211044,,,0.029245086,6172,211044,,,0.001312523,277,211044,,,0.058054245,12252,211044,,,0.623272872,131538,211044,,,0.011491082,2249,195717,0.008793046,0.014189117,0.511068782,107858,211044,,,0.191735252,40000,208621,, -28,049,28049,MS,Hinds County,2024,1,14573.04193,4856,642102,13992.5384,15153.54547,0,,,,2,9032.16366,4809.24675,15445.27494,1,15814.69808,15113.15329,16516.24287,,13130.57495,8981.303546,18536.45403,,10922.24749,9865.084337,11979.41065,,,,,2,,0.233,,,0.196,0.272,3.797053169,,,3.004581914,4.610181556,4.936265859,,,4.040214254,5.846655459,0.148560591,3055,20564,0.143699532,0.153421651,0,,,,0.130612245,0.088416201,0.172808289,0.172362842,0.166429364,0.178296321,0.069018405,0.049560984,0.088475826,0.071128674,0.063211279,0.079046069,,,,,,,0.187,,,0.147,0.228,0.437,,,0.376,0.497,6.4,0.14847584,0.137,,,0.322,,,0.269,0.375,0.755495253,172058,227742,,,0.124103693,,,0.098883929,0.151532175,0.180451128,48,266,0.150607268,0.212163338,1310,2917,222679,,,26.53462105,1621,61090,25.24287408,27.82636803,,,,,,,30.14061416,28.58058185,31.70064647,45.27402701,34.29010593,58.6577533,11.36983809,9.376617593,13.36305859,,,,,,,0.146092314,25514,174643,0.131794442,0.160390186,0.000893663,199,222679,,,1118.98995,0.001051761,229,217730,,,950.7860262,0.004128967,899,217730,,,242.1913237,3447,,,,,,1724,4406,,2443,0.46,,,,,,0.34,0.45,,0.47,0.42,,,,,,0.42,0.32,0.21,0.49,0.889388349,131376,147715,0.878697317,0.900079381,0.687348653,40590,59053,0.650606715,0.724090591,0.039345004,4003,101741,,,0.306,15088,,0.233319149,0.378680851,0.316901409,0.094570309,0.539232508,0.124579125,0,0.435235506,0.360457508,0.330097388,0.390817629,0.278225807,0.151102135,0.405349478,0.048009233,0.027991743,0.068026722,4.76415597,98356,20645,4.399395293,5.128916647,0.49195497,26264,53387,0.45252429,0.531385651,13.96629229,311,222679,,,115.7827805,1342,1159067,109.5880304,121.9775305,,,,,,,112.7520025,105.5857835,119.9182215,104.585237,62.96714463,163.3228027,129.0131932,115.6488173,142.3775691,,,,9.8,,,,,1,,,,,0.166328943,14775,88830,0.152705405,0.179952481,0.143471283,0.130852071,0.156090494,0.02741191,0.021388847,0.033434974,0.005234718,0.003267725,0.007201711,0.790508145,76337,96567,0.773574151,0.807442139,,,,0.837700146,0.713347279,0.962053012,0.80026178,0.779166256,0.821357304,0.74069834,0.638104401,0.84329228,0.84793771,0.826716116,0.869159305,0.289,,96567,0.267987856,0.310012144,71.85407397,,,71.43586083,72.27228711,,,,,,,70.9346249,70.42541194,71.44383785,74.84151503,69.71764603,79.96538404,74.54227807,73.76034491,75.32421123,,,,640.9555596,4856,642102,622.2929739,659.6181453,,,,455.0424718,269.6870079,719.1632861,683.4462708,660.6098818,706.2826598,497.5407404,335.6886483,710.270344,531.5297253,498.0736432,564.9858074,,,,103.3739321,257,248612,90.73528619,116.012578,,,,,,,113.9404313,98.91808418,128.9627785,,,,75.90132827,51.91645235,107.1500287,,,,9.679541397,206,21282,8.35770641,11.00137638,,,,,,,10.65279326,9.060748234,12.24483829,,,,7.182188173,4.845792201,10.25302021,,,,,,,0.124,,,0.105,0.144,0.168,,,0.146,0.193,0.151,,,0.13,0.173,1192.4,2217,185935,,,0.137,31720,,,,0.14847584,36418.89636,245285,,,18.02237412,123,682485,14.83732953,21.20741871,,,,,,,12.83115404,9.881552118,16.38509726,,,,34.65989973,26.18171578,45.00876277,,,,0.372,,,0.357,0.388,0.185512565,23254,125350,0.165257246,0.205767884,0.049352002,2559,51852,0.036245619,0.062458385,0.003054242,665,217730,,,327.4135338,0.872403131,2228.99,2555,,,0.097752333,1383,14148,0.06038597,0.135118695,2.793334075,,,,,,3.68045839,2.71741886,2.776778009,3.513900783,2.64455799,,,,,,4.048474017,2.548468291,2.814818227,3.478970678,0.240781928,,,,,-16085.01633,,,,,0.821949882,38967,47408,0.766889281,0.877010483,47479,,,43228.95745,51729.04255,46081,44862.10638,47299.89362,56048,23934.97872,88161.02128,42386,40414.08511,44357.91489,46167,36184.70213,56149.29787,75005,68688.91489,81321.08511,,,,,,0.997664788,32042,32117,,,58.72965902,,,,,0.222266686,,47479,,,13.44526345,197,14652,,,35.66240483,586,1643187,32.77493211,38.54987754,,,,,,,45.18406828,41.36238881,49.00574776,,,,9.000765065,6.304025197,12.4608528,,,,12.22806398,140,1159067,10.15239295,14.30373501,12.07868053,,,,,,,7.868277074,6.046200144,10.06694437,,,,23.78250556,18.10434514,30.67769942,,,,48.74610355,565,1159067,44.72660613,52.76560097,,,,,,,56.43528201,51.36533647,61.50522755,,,,27.7486477,21.89879883,34.68104858,,,,25.19494129,414,1643187,22.76794423,27.62193836,,,,,,,25.3266379,22.46542375,28.18785206,50.18529957,26.72155841,85.81839067,24.75210393,20.11728868,30.1347984,,,,6,,25000,,,128,22,0.566800816,99995,176420,,,0.606,,,,,97.70726698,,,,,0.57783111,51765,89585,0.562594118,0.593068102,0.160952526,13741,85373,0.146507642,0.17539741,0.866997823,77670,89585,0.856102068,0.877893579,217730,,,,,0.231075185,50312,217730,,,0.164864741,35896,217730,,,0.732448445,159476,217730,,,0.000785376,171,217730,,,0.007224544,1573,217730,,,0.000188307,41,217730,,,0.016639875,3623,217730,,,0.233835484,50913,217730,,,0.004259144,905,212484,0.002927465,0.005590823,0.533077665,116067,217730,,,0.175799809,40037,227742,, -28,051,28051,MS,Holmes County,2024,1,19535.91351,482,46838,17035.69683,22036.13018,0,,,,2,,,,2,21307.20013,18476.49355,24137.90672,,,,,2,10613.24746,6290.083076,16773.50663,1,,,,2,,0.343,,,0.301,0.391,4.921945909,,,4.035095881,5.976714415,5.351519217,,,4.326993702,6.50946299,0.170961659,272,1591,0.152462259,0.18946106,0,,,,,,,0.178374656,0.158683271,0.19806604,,,,0.103174603,0.050060341,0.156288865,,,,,,,0.269,,,0.223,0.32,0.506,,,0.433,0.582,3.6,0.184739885,0.248,,,0.414,,,0.357,0.477,0.396647059,6743,17000,,,0.111888861,,,0.088025173,0.139561107,0.25,10,40,0.167808311,0.33763196,1648.9,272,16496,,,31.85121847,149,4678,26.73688563,36.96555131,,,,,,,36.59820958,30.51393913,42.68248004,,,,,,,,,,,,,0.138483848,1719,12413,0.118228528,0.158739167,0.000545587,9,16496,,,1832.888889,0.000434216,7,16121,,,2303,0.000434216,7,16121,,,2303,3196,,,,,,,3756,,1971,0.36,,,,,,,0.33,,0.4,0.3,,,,,,,0.21,,0.42,0.810365683,8709,10747,0.775325597,0.84540577,0.545098039,2224,4080,0.448359673,0.641836406,0.066019033,333,5044,,,0.444,1727,,0.279574468,0.608425532,,,,,,,0.488476821,0.419613545,0.557340098,,,,,,,7.854893982,73349,9338,5.716048685,9.993739278,0.59871398,2514,4199,0.510881152,0.686546807,10.30552861,17,16496,,,140.1983807,120,85593,115.1137076,165.2830538,,,,,,,144.7321745,116.644158,172.8201911,,,,137.2369625,81.3353216,216.8935672,,,,9,,,,,1,,,,,0.184748428,1175,6360,0.146572751,0.222924104,0.150627615,0.111217022,0.190038208,0.025157233,0.009382979,0.040931487,0.021226415,0.008271315,0.034181515,0.863421103,4558,5279,0.860178853,0.866663352,,,,,,,0.853497165,0.753757785,0.953236544,,,,0.84592145,0.731144058,0.960698842,0.601,,5279,0.490589367,0.711410633,67.22554048,,,65.75056104,68.70051992,,,,,,,65.83978133,64.23157562,67.44798704,,,,73.55769608,70.23889298,76.87649917,,,,869.4749258,482,46838,787.9820747,950.967777,,,,,,,943.9556177,850.1634575,1037.747778,,,,572.3316913,415.8570831,768.3285817,,,,138.9103257,27,19437,91.54277991,202.1072308,,,,,,,160.2564103,105.6099842,233.1646631,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.166,,,0.144,0.192,0.194,,,0.168,0.223,0.204,,,0.179,0.231,487.7,67,13739,,,0.248,4280,,,,0.184739885,3546.636305,19198,,,,,,,,,,,,,,,,,,,,,,,,,,0.433,,,0.417,0.45,0.17789014,1548,8702,0.149294396,0.206485885,0.048168076,188,3903,0.030295735,0.066040416,0.001302649,21,16121,,,767.6666667,0.925,179.45,194,,,,,,,,2.579115822,,,,,,,2.589512508,,,2.408862688,,,,,,,2.410415689,,,,,,,,,,,,,1.105227387,37402,33841,0.885664923,1.32478985,31972,,,27611.14894,36332.85106,,,,,,,26409,21811.04255,31006.95745,,,,52661,41260.82979,64061.17021,,,,,,0.998800959,2499,2502,,,23.63825226,,,,,0.219004129,,31972,,,10.58201058,12,1134,,,34.4454286,42,121932,24.82523516,46.56021289,,,,,,,36.91988385,25.99500541,50.88919659,,,,,,,,,,11.67920455,10,85593,5.340476022,22.17076824,11.68319839,,,,,,,,,,,,,,,,,,,47.90111341,41,85593,34.374666,64.98326915,,,,,,,53.91982973,38.15688066,74.00917903,,,,,,,,,,43.46685038,53,121932,32.55965369,56.8557105,,,,,,,45.90039614,33.60485887,61.22469612,,,,,,,,,,13,,2000,,,7,19,0.625674634,8115,12970,,,0.494,,,,,2.369675911,,,,,0.624525699,3621,5798,0.5781572,0.670894198,0.225474684,1140,5056,0.176313504,0.274635863,0.629527423,3650,5798,0.586823043,0.672231804,16121,,,,,0.245022021,3950,16121,,,0.166614974,2686,16121,,,0.821226971,13239,16121,,,0.001736865,28,16121,,,0.00279139,45,16121,,,6.20309E-05,1,16121,,,0.01457726,235,16121,,,0.151603499,2444,16121,,,0.000507872,8,15752,0,0.006835054,0.517957943,8350,16121,,,1,17000,17000,, -28,053,28053,MS,Humphreys County,2024,1,20644.4344,246,21715,16708.22331,24580.6455,0,,,,2,,,,2,22983.80451,18390.45493,27577.15408,,,,,2,17095.61413,8198.011475,31439.44306,1,,,,2,,0.346,,,0.302,0.394,4.980202672,,,3.934226319,6.142208034,5.459630866,,,4.139453492,6.844282059,0.187958884,128,681,0.158615989,0.217301779,0,,,,,,,0.196917808,0.164664658,0.229170959,,,,0.120879121,0.053900636,0.187857606,,,,,,,0.28,,,0.229,0.335,0.506,,,0.412,0.599,4.5,0.118708431,0.24,,,0.423,,,0.358,0.492,0.009890816,77,7785,,,0.102742307,,,0.078000504,0.132143208,0.277777778,5,18,0.152183671,0.410166986,1377.3,104,7551,,,41.382923,79,1909,32.76324985,51.57546944,,,,,,,46.29042486,36.28430369,58.20325947,,,,,,,,,,,,,0.162317858,958,5902,0.138488071,0.186147646,0.000529731,4,7551,,,1887.75,0.00027274,2,7333,,,3666.5,,0,7333,,,,2618,,,,,,,3344,,809,0.29,,,,,,,0.25,,0.36,0.17,,,,,,,0.17,,0.18,0.747689282,3802,5085,0.700354995,0.79502357,0.506387921,872,1722,0.374502338,0.638273504,0.076064909,150,1972,,,0.498,889,,0.307361702,0.688638298,,,,,,,0.627039627,0.532410523,0.721668731,,,,0.0234375,0,0.16140236,4.72378432,71400,15115,3.190280234,6.257288407,0.719219219,1437,1998,0.558657963,0.879780476,11.91895113,9,7551,,,112.3848056,45,40041,81.97424837,150.379712,,,,,,,106.7912565,73.04514037,150.7573906,,,,148.5148515,76.73979095,259.4255575,,,,8.7,,,,,1,,,,,0.164319249,525,3195,0.117486081,0.211152417,0.155877617,0.103745987,0.208009246,0.026604069,0.005601632,0.047606506,0,0,0.010020466,0.718427323,1809,2518,0.660052813,0.776801833,,,,,,,0.656918688,0.528717213,0.785120162,,,,0.871841155,0.624312675,1,0.248,,2518,0.168072464,0.327927536,67.24179783,,,64.91978218,69.56381348,,,,,,,65.4199885,62.86747599,67.97250101,,,,,,,,,,904.054386,246,21715,783.784604,1024.324168,,,,,,,1034.073196,883.8249057,1184.321486,,,,706.9407802,480.3319616,1003.446008,,,,122.7130745,11,8964,61.25792467,219.5675872,,,,,,,135.6300014,65.03985754,249.4284015,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.172,,,0.149,0.199,0.2,,,0.172,0.232,0.198,,,0.173,0.226,350.5,22,6276,,,0.24,1900,,,,0.118708431,1112.891537,9375,,,,,,,,,,,,,,,,,,,,,,,,,,0.406,,,0.39,0.423,0.206314775,856,4149,0.174144562,0.238484987,0.060949299,113,1854,0.04069398,0.081204618,0.000545479,4,7333,,,1833.25,0.925,108.225,117,,,,,,,,2.275655759,,,,,,,2.298085704,,,2.280232943,,,,,,,2.300168775,,,,,,,,-41373.05,,,,,0.737129564,29152,39548,0.482326299,0.991932829,33148,,,28197.3617,38098.6383,,,,,,,26911,22540.61702,31281.38298,,,,67578,42436.38298,92719.61702,,,,,,1,1257,1257,,,39.37827416,,,,,0.21008809,,33148,,,27.71362587,12,433,,,20.97058875,12,57223,10.83580922,36.6313983,,,,,,,28.09186038,14.51547419,49.07082672,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,37.46160186,15,40041,20.96697418,61.78721528,,,,,,,36.70949441,18.32524735,65.68342571,,,,,,,,,,34.95098125,20,57223,21.34896735,53.97895584,,,,,,,30.43284875,16.20421025,52.0410982,,,,,,,,,,,,1000,,,21,-888,0.701675042,4189,5970,,,0.521,,,,,15.89378726,,,,,0.599465062,1793,2991,0.54140182,0.657528304,0.191080493,527,2758,0.128751681,0.253409305,0.701437646,2098,2991,0.643167792,0.7597075,7333,,,,,0.24778399,1817,7333,,,0.184099277,1350,7333,,,0.745397518,5466,7333,,,0.002181917,16,7333,,,0.005454793,40,7333,,,0.000681849,5,7333,,,0.04104732,301,7333,,,0.19869085,1457,7333,,,0.00068157,5,7336,0,0.013329237,0.530069549,3887,7333,,,1,7785,7785,, -28,055,28055,MS,Issaquena County,2024,1,8334.708642,25,3506,4437.881327,14252.60561,1,,,,2,,,,2,,,,2,,,,2,,,,2,,,,2,,0.311,,,0.273,0.352,4.681483643,,,3.853520763,5.544758203,5.101795127,,,3.962164949,6.248986964,0.191780822,14,73,0.101465423,0.282096221,1,,,,,,,0.215686275,0.102803638,0.328568911,,,,,,,,,,,,,0.275,,,0.233,0.321,0.454,,,0.373,0.537,4.4,0.154204826,0.229,,,0.397,,,0.34,0.455,0.080717489,108,1338,,,0.131702291,,,0.103516831,0.163105355,0.333333333,2,6,0.110000414,0.553214291,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.197831978,146,738,0.165661766,0.230002191,0,0,1280,,,-1280,0,0,1273,,,-1273,,0,1273,,,,,,,,,,,,,,0.39,,,,,,,,,,0.32,,,,,,,0.29,,0.54,0.643403442,673,1046,0.449641017,0.837165866,0.262096774,130,496,0.123886001,0.400307547,0.073248408,23,314,,,0.887,55,,0.51287234,1,,,,,,,0.230769231,0,0.494029119,,,,,,,5.647826087,64950,11500,4.82093058,6.474721594,0.380530974,43,113,0.083495451,0.677566496,0,0,1280,,,,,,,,,,,,,,,,,,,,,,,,,,8.3,,,,,1,,,,,0.141304348,65,460,0.050620207,0.231988489,0.087719298,0,0.213434544,0.041304348,0,0.13486286,0.008695652,0,0.053217896,0.770114943,134,174,0.525685808,1,,,,,,,,,,,,,,,,0.299,,174,0,0.684398465,,,,,,,,,,,,,,,,,,,,,,,,504.2030482,25,3506,315.9813659,763.3694742,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.157,,,0.136,0.179,0.183,,,0.159,0.209,0.164,,,0.143,0.186,,,,,,0.229,250,,,,0.154204826,216.8119856,1406,,,,,,,,,,,,,,,,,,,,,,,,,,0.399,,,0.385,0.411,0.209230769,136,650,0.174677578,0.243783961,0.107526882,10,93,0.069399222,0.145654541,0,0,1273,,,-1273,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.822750654,29271,35577,0.177257298,1.468244009,36922,,,31230.25532,42613.74468,,,,,,,16025,13143.97872,18906.02128,,,,57292,38782.21277,75801.78723,,,,,,,,,,,,,,,,0.182519907,,36922,,,27.02702703,1,37,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,100,,,,,0.640758294,676,1055,,,0.402,,,,,0.532980554,,,,,0.507653061,199,392,0.34324162,0.672064502,0.06360424,18,283,0,0.302849613,0.359693878,141,392,0.278316781,0.441070975,1273,,,,,0.076983504,98,1273,,,0.167321288,213,1273,,,0.648075412,825,1273,,,0.00392773,5,1273,,,0.00785546,10,1273,,,0.000785546,1,1273,,,0.021209741,27,1273,,,0.31657502,403,1273,,,0,0,1184,0,0.056354227,0.318931658,406,1273,,,1,1338,1338,, -28,057,28057,MS,Itawamba County,2024,1,10721.92644,498,64873,9223.630196,12220.22268,0,,,,2,,,,2,17205.71148,10906.94516,25817.01515,1,,,,2,10552.3949,8969.057186,12135.73261,,,,,2,,0.19,,,0.16,0.223,3.875331843,,,3.041248949,4.820773076,4.967224257,,,3.941853827,6.146735196,0.109814324,207,1885,0.095699671,0.123928976,0,,,,,,,0.201754386,0.128085618,0.275423154,,,,0.102923977,0.088521708,0.117326246,,,,,,,0.2,,,0.159,0.243,0.359,,,0.286,0.433,7.3,0.066057939,0.133,,,0.281,,,0.231,0.337,0.397896325,9495,23863,,,0.158098038,,,0.125263196,0.194858062,0.15625,5,32,0.074172521,0.258294933,0,0,23838,,,30.93977498,187,6044,26.50519575,35.37435422,,,,,,,12.75510204,6.116567215,23.45708679,,,,33.52509423,28.47054156,38.5796469,,,,,,,0.159182377,3006,18884,0.138927058,0.179437696,0.000167799,4,23838,,,5959.5,0.000167343,4,23903,,,5975.75,0.00029285,7,23903,,,3414.714286,2679,,,,,,,,,2657,0.43,,,,,,,0.42,,0.43,0.49,,,,,,,0.33,,0.49,0.852472339,13637,15997,0.831536205,0.873408472,0.5745205,3265,5683,0.479964344,0.669076655,0.034207192,351,10261,,,0.173,847,,0.107468085,0.238531915,,,,,,,,,,,,,0.082328802,0.033895067,0.130762537,4.007908203,103388,25796,3.230629616,4.78518679,0.199166832,1004,5041,0.099803162,0.298530502,10.487457,25,23838,,,97.86068043,115,117514,79.97459164,115.7467692,,,,,,,,,,,,,101.5527125,82.31046881,120.7949562,,,,9,,,,,0,,,,,0.083284458,710,8525,0.055293316,0.111275599,0.062032086,0.039823995,0.084240177,0.006334311,0,0.013149718,0.017008798,0.001085265,0.03293233,0.862464723,9168,10630,0.823613515,0.90131593,,,,,,,,,,,,,0.86236254,0.819913528,0.904811551,0.41,,10630,0.342221114,0.477778886,72.92179599,,,71.83874874,74.00484325,,,,,,,,,,,,,72.87441821,71.74213815,74.00669826,,,,577.1007041,498,64873,524.5893687,629.6120395,,,,,,,811.6335538,565.3325086,1128.785797,,,,575.1936674,520.6203869,629.7669479,,,,79.70132975,19,23839,47.98540696,124.4634992,,,,,,,,,,,,,92.62418954,55.76581273,144.6441455,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.12,,,0.102,0.139,0.17,,,0.147,0.196,0.104,,,0.089,0.121,202.9,41,20211,,,0.133,3180,,,,0.066057939,1545.821827,23401,,,,,,,,,,,,,,,,,,,,,,,,,,0.324,,,0.31,0.339,0.18919708,2592,13700,0.162984314,0.215409846,0.083593607,455,5443,0.05857233,0.108614883,0.001171401,28,23903,,,853.6785714,0.87,204.45,235,,,,,,,,2.921001535,,,,,,,2.533841554,,2.951365732,3.002183687,,,,,,,2.687009535,,3.031331204,0.086228847,,,,,-1888.494,,,,,0.673103585,33985,50490,0.57315293,0.77305424,56484,,,48717.87234,64250.12766,,,,,,,61758,43155.2766,80360.7234,36750,11799.02128,61700.97872,56660,46966.04255,66353.95745,,,,,,0.994691831,3373,3391,,,69.99520509,,,,,0.140924864,,56484,,,7.722007722,10,1295,,,,,,,,,,,,,,,,,,,,,,,,,,15.19311535,17,117514,8.684178161,24.67266748,14.46636146,,,,,,,,,,,,,14.92834844,8.161467009,25.04723207,,,,17.87021121,21,117514,11.06194239,27.3165161,,,,,,,,,,,,,17.08363388,10.12484414,26.99950673,,,,29.15239414,48,164652,21.49467412,38.65184521,,,,,,,,,,,,,30.4360471,22.20026161,40.72582566,,,,,,2400,,,-888,29,0.591363761,10819,18295,,,0.618,,,,,5.81450836,,,,,0.797682709,7160,8976,0.762640148,0.832725271,0.065963679,563,8535,0.037541688,0.09438567,0.784090909,7038,8976,0.734054706,0.834127112,23903,,,,,0.209178764,5000,23903,,,0.177299921,4238,23903,,,0.073254403,1751,23903,,,0.003472368,83,23903,,,0.005313141,127,23903,,,0.000418358,10,23903,,,0.020122997,481,23903,,,0.886750617,21196,23903,,,0.002428578,55,22647,0,0.007892557,0.502907585,12021,23903,,,1,23863,23863,, -28,059,28059,MS,Jackson County,2024,1,11305.4912,2810,403687,10671.77395,11939.20844,0,,,,2,4594.95289,2293.783927,8221.639977,1,15072.23405,13483.52283,16660.94528,,4628.483347,3306.656362,6302.680636,,11159.74019,10383.77654,11935.70385,,,,,2,,0.192,,,0.165,0.222,3.616005113,,,2.914488103,4.420968049,4.905588668,,,4.011204412,5.891927449,0.103327966,1155,11178,0.097685099,0.108970832,0,,,,0.098540146,0.063249421,0.133830871,0.169522421,0.155480688,0.183564153,0.066737288,0.050816803,0.082657774,0.082396471,0.07596733,0.088825612,,,,0.084415584,0.040506314,0.128324855,0.177,,,0.142,0.214,0.354,,,0.297,0.418,6.3,0.116169928,0.156,,,0.27,,,0.226,0.317,0.765280764,109628,143252,,,0.164304617,,,0.1331167,0.20078232,0.261538462,34,130,0.216784628,0.307788446,707.7,1019,143987,,,23.11474363,724,31322,21.43100038,24.79848689,,,,,,,28.95903992,25.14957706,32.76850278,25.16904583,19.50566481,31.96379851,21.64592701,19.56080203,23.73105199,,,,14.78743068,8.452294319,24.013861,0.136464419,16187,118617,0.120975057,0.151953781,0.000458375,66,143987,,,2181.621212,0.000420762,61,144975,,,2376.639344,0.001752026,254,144975,,,570.7677165,3299,,,,,,,5452,,3009,0.4,,,,,,0.32,0.46,0.15,0.39,0.36,,,,,,0.27,0.33,0.18,0.37,0.887375536,87694,98824,0.874759846,0.899991226,0.669000997,24838,37127,0.623387438,0.714614555,0.042561553,2491,58527,,,0.216,6920,,0.158808511,0.273191489,,,,,,,0.399147936,0.342250781,0.456045091,0.19556213,0.119365656,0.271758604,0.119960618,0.08815657,0.151764666,4.650325038,112310,24151,4.140191598,5.160458479,0.337325349,11154,33066,0.292795533,0.381855166,8.472987145,122,143987,,,103.9290771,745,716835,96.46605024,111.392104,,,,,,,89.25914906,74.20202845,104.3162697,40.54327995,24.76488868,62.61580763,119.6437184,109.8897341,129.3977027,,,,8.6,,,,,1,,,,,0.134094284,7225,53880,0.116299301,0.151889267,0.120551855,0.103030806,0.138072905,0.016982183,0.009883717,0.024080648,0.002969562,0.000542665,0.005396459,0.849834796,52213,61439,0.834321681,0.86534791,,,,0.75815739,0.627643566,0.888671213,0.842773805,0.79645884,0.88908877,0.879807692,0.792393216,0.967222169,0.834376029,0.806720212,0.862031846,0.356,,61439,0.32681459,0.38518541,73.79163416,,,73.30681124,74.27645708,,,,85.86489616,77.55969761,94.17009471,70.76668619,69.62390495,71.90946743,87.36304655,80.78279943,93.94329367,73.81046949,73.23425224,74.38668674,,,,541.6373307,2810,403687,520.8168872,562.4577742,,,,209.9076001,131.5479754,317.8026291,673.0428511,621.1105516,724.9751506,238.3591614,173.1921316,319.9860487,542.4192316,517.4667228,567.3717404,,,,76.96060579,112,145529,62.70730213,91.21390945,,,,,,,125.1489869,90.1963818,169.1650738,,,,74.07069763,57.16620066,94.40918456,,,,7.355547678,83,11284,5.858652667,9.118308029,,,,,,,12.63537906,8.801004477,17.57275356,,,,5.767337178,4.138740733,7.824044108,,,,,,,0.115,,,0.098,0.132,0.163,,,0.14,0.186,0.114,,,0.098,0.132,236.8,287,121221,,,0.156,22330,,,,0.116169928,16225.22153,139668,,,42.65123805,184,431406,36.48842772,48.81404838,,,,,,,33.04328671,22.29416678,47.1713464,,,,50.64512239,42.45792938,58.83231541,,,,0.345,,,0.333,0.357,0.16682418,14298,85707,0.146568861,0.187079499,0.06123156,2121,34639,0.043359219,0.0791039,0.001317469,191,144975,,,759.0314136,0.889301347,1584.735,1782,,,0.116537468,902,7740,0.080000224,0.153074711,3.203678375,,,,,,3.429012197,2.834278773,2.951331532,3.399469351,3.161781752,,,,,,3.75051746,2.768857148,2.920457946,3.35716196,0.17425788,,,,,-7043.511025,,,,,0.714705167,41137,57558,0.669423778,0.759986556,61515,,,55963.85106,67066.14894,23649,22055.97872,25242.02128,88763,79671.93617,97854.06383,36888,28853.78723,44922.21277,52418,42190.25532,62645.74468,66104,63648.34043,68559.65957,,,,,,0.997466253,22833,22891,,,58.02740536,,,,,0.162529464,,61515,,,6.63064833,54,8144,,,7.803894143,78,999501,6.168654479,9.739613072,,,,,,,24.05217908,17.90842715,31.62417356,,,,3.702425681,2.396014687,5.465510675,,,,16.62461837,117,716835,13.55262388,19.69661286,16.32174768,,,,,,,,,,,,,21.30499481,17.02544223,25.58454739,,,,18.1352752,130,716835,15.01776025,21.25279016,,,,,,,33.72012298,25.1068464,44.33573432,,,,15.52470394,12.21116448,19.46035083,,,,17.70883671,177,999501,15.09992446,20.31774896,,,,,,,12.73350657,8.391461067,18.52658353,,,,20.43738976,17.02748731,23.84729222,,,,20.25157233,,15900,,,135,187,0.505168102,54543,107970,,,0.651,,,,,46.84218601,,,,,0.711357521,39390,55373,0.692681346,0.730033696,0.136933389,7232,52814,0.119001375,0.154865403,0.863850613,47834,55373,0.847673312,0.880027915,144975,,,,,0.225390585,32676,144975,,,0.173416106,25141,144975,,,0.208339369,30204,144975,,,0.005000862,725,144975,,,0.023335058,3383,144975,,,0.001000172,145,144975,,,0.074971547,10869,144975,,,0.668791171,96958,144975,,,0.011665954,1583,135694,0.008215264,0.015116645,0.508804966,73764,144975,,,0.303409377,43464,143252,, -28,061,28061,MS,Jasper County,2024,1,15042.0729,417,44702,12815.83905,17268.30674,0,,,,2,,,,2,18361.73807,15105.33931,21618.13684,,,,,2,10731.28217,7796.089708,13666.47463,,,,,2,,0.249,,,0.216,0.285,4.100169159,,,3.276919791,4.998631551,5.243530244,,,4.167192448,6.366149233,0.131636364,181,1375,0.113765585,0.149507142,0,,,,,,,0.16934487,0.143499771,0.19518997,,,,0.078899083,0.056265807,0.101532358,,,,,,,0.218,,,0.179,0.26,0.435,,,0.36,0.511,7.2,0.052377981,0.148,,,0.332,,,0.28,0.387,0.322722552,5282,16367,,,0.123448239,,,0.09638036,0.155141089,0.097560976,4,41,0.037042144,0.18413126,712,116,16291,,,32.53012048,108,3320,26.39490437,38.6653366,,,,,,,34.07934893,26.41102733,43.27956848,,,,29.98379255,21.11135702,41.32870838,,,,,,,0.131866367,1642,12452,0.111611048,0.152121686,0.000184151,3,16291,,,5430.333333,0.000309272,5,16167,,,3233.4,0.000185563,3,16167,,,5389,6089,,,,,,,7353,,4824,0.37,,,,,,,0.42,,0.35,0.38,,,,,,,0.31,,0.4,0.886317463,10034,11321,0.855198939,0.917435988,0.518588362,1925,3712,0.410292204,0.62688452,0.050394241,294,5834,,,0.295,1069,,0.180617021,0.409382979,,,,,,,0.346513605,0.198659183,0.494368028,,,,0.145684877,0.032268602,0.259101153,4.665218911,93449,20031,3.170583636,6.159854185,0.526344231,1948,3701,0.421076906,0.631611556,10.43520963,17,16291,,,90.22629731,74,82016,70.84704965,113.2708539,,,,,,,89.83277284,63.87988319,122.8043577,,,,90.60706735,62.36973607,127.2460099,,,,9.3,,,,,1,,,,,0.105064248,695,6615,0.072451367,0.137677129,0.055791962,0.028964065,0.082619859,0.027059713,0.009616068,0.044503358,0.023431595,0.006300631,0.040562559,0.916693063,5788,6314,0.881819476,0.95156665,,,,,,,0.906458797,0.788288622,1,,,,0.870750988,0.790376641,0.951125335,0.535,,6314,0.43453971,0.63546029,70.94901374,,,69.44861755,72.44940992,,,,,,,69.11350092,66.95477845,71.2722234,,,,73.69234931,71.60036589,75.78433272,,,,688.9846199,417,44702,618.0130373,759.9562025,,,,,,,825.0294841,715.9759971,934.0829712,,,,532.0986277,442.2540303,621.943225,,,,124.2158872,20,16101,75.87429095,191.8413633,,,,,,,147.2444258,80.49989773,247.0511267,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.134,,,0.116,0.153,0.175,,,0.151,0.199,0.146,,,0.127,0.168,389,53,13624,,,0.148,2430,,,,0.052377981,893.6731165,17062,,,,,,,,,,,,,,,,,,,,,,,,,,0.374,,,0.361,0.388,0.163012929,1450,8895,0.136800163,0.189225695,0.055959107,208,3717,0.035703788,0.076214426,0.000494835,8,16167,,,2020.875,0.900791139,142.325,158,,,,,,,,3.096842124,,,,,,,3.069828613,,3.169069202,3.161091467,,,,,,,3.112674078,,3.321081496,0.477708169,,,,,-23311.195,,,,,0.641848498,31681,49359,0.467380875,0.81631612,44810,,,38441.48936,51178.51064,,,,,,,35227,28435.51064,42018.48936,,,,60881,45868.23404,75893.76596,,,,,,0.990042674,2088,2109,,,41.36742861,,,,,0.189020308,,44810,,,5.08646999,5,983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.06984003,14,82016,9.332240388,28.64029107,,,,,,,,,,,,,,,,,,,35.60171236,41,115163,25.54840345,48.29774282,,,,,,,44.44151825,29.28724056,64.66007579,,,,23.33041703,12.05516693,40.7535434,,,,,,1700,,,14,-888,0.68598351,8736,12735,,,0.385,,,,,2.738926236,,,,,0.843337987,5437,6447,0.807245658,0.879430315,0.079583058,481,6044,0.04049031,0.118675805,0.552505041,3562,6447,0.490517736,0.614492346,16167,,,,,0.228057154,3687,16167,,,0.216119255,3494,16167,,,0.518277974,8379,16167,,,0.004824643,78,16167,,,0.001979341,32,16167,,,0.000742253,12,16167,,,0.01997897,323,16167,,,0.4440527,7179,16167,,,0,0,15368,,,0.507886435,8211,16167,,,1,16367,16367,, -28,063,28063,MS,Jefferson County,2024,1,15712.05163,186,19553,12341.20833,19082.89494,0,,,,2,,,,2,17031.29026,13375.37879,20687.20173,,,,,2,,,,2,,,,2,,0.297,,,0.256,0.345,4.369659432,,,3.471322055,5.336243566,5.050916961,,,3.93911047,6.218989368,0.149200711,84,563,0.119769991,0.17863143,0,,,,,,,0.159533074,0.127876771,0.191189377,,,,,,,,,,,,,0.236,,,0.189,0.287,0.472,,,0.383,0.554,6.2,0.045120655,0.194,,,0.379,,,0.32,0.444,0.626170799,4546,7260,,,0.110233124,,,0.084988175,0.138436382,0.25,4,16,0.11917111,0.394165016,1179.7,85,7205,,,29.73977695,40,1345,21.24653267,40.49713529,,,,,,,30.78202995,21.67338982,42.4289735,,,,,,,,,,,,,0.148831021,783,5261,0.125001234,0.172660808,0.000277585,2,7205,,,3602.5,,0,7087,,,,0.000564414,4,7087,,,1771.75,4949,,,,,,,5947,,,0.38,,,,,,,0.42,,0.25,0.3,,,,,,,0.28,,0.38,0.75862769,3737,4926,0.694457616,0.822797764,0.431918936,682,1579,0.233040358,0.630797514,0.130016051,243,1869,,,0.489,750,,0.341255319,0.636744681,,,,,,,0.596832253,0.489594431,0.704070076,,,,0.545454546,0.060669553,1,4.494184962,72262,16079,2.630914167,6.357455756,0.69186419,1080,1561,0.57401427,0.80971411,4.163775156,3,7205,,,112.4859393,40,35560,80.36160417,153.1739229,,,,,,,109.4454763,75.33722994,153.7021401,,,,,,,,,,8.2,,,,,0,,,,,0.092337918,235,2545,0.042267408,0.142408427,0.046843177,0.000525938,0.093160417,0.021611002,0,0.047233146,0.039292731,0.003648583,0.074936879,0.925784967,1946,2102,0.798727724,1,,,,,,,0.892561984,0.738702951,1,,,,,,,0.351,,2102,0.205243299,0.496756701,72.20696067,,,69.60139433,74.81252701,,,,,,,70.61508024,67.92225411,73.30790637,,,,,,,,,,729.5756919,186,19553,618.594735,840.5566487,,,,,,,818.6449444,691.2774604,946.0124283,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.145,,,0.126,0.168,0.178,,,0.154,0.206,0.177,,,0.153,0.202,329.5,20,6070,,,0.194,1410,,,,0.045120655,348.6021802,7726,,,,,,,,,,,,,,,,,,,,,,,,,,0.418,,,0.398,0.437,0.185272537,707,3816,0.154293813,0.21625126,0.055372446,84,1517,0.036308616,0.074436275,0.001693241,12,7087,,,590.5833333,0.975,99.45,102,,,,,,,,2.240343387,,,,,,,2.229567356,,,2.053483086,,,,,,,2.042195873,,,,,,,,-40113.7,,,,,1.032799235,35645,34513,0.610544803,1.455053667,33852,,,28826.29787,38877.70213,,,,,,,27413,20489.25532,34336.74468,48032,42132.93617,53931.06383,,,,,,,,,1,1037,1037,,,25.5076003,,,,,0.201908307,,33852,,,7.281553398,3,412,,,21.84099754,11,50364,10.90294728,39.0795777,,,,,,,25.76052083,12.85955918,46.09268756,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,28.12148481,10,35560,13.48534504,51.71641182,,,,,,,,,,,,,,,,,,,49.63863077,25,50364,32.12350458,73.27641112,,,,,,,51.52104166,32.28796251,78.00347624,,,,,,,,,,,,700,,,-888,-888,0.708612874,3908,5515,,,0.435,,,,,5.260534465,,,,,0.722529644,1828,2530,0.630969974,0.814089314,0.087542088,182,2079,0.016992709,0.158091466,0.869565217,2200,2530,0.801866711,0.937263724,7087,,,,,0.219839142,1558,7087,,,0.195146042,1383,7087,,,0.845068435,5989,7087,,,0.002539862,18,7087,,,0.002680965,19,7087,,,0.000282207,2,7087,,,0.008607309,61,7087,,,0.13249612,939,7087,,,0.005431591,37,6812,0,0.022641384,0.505714689,3584,7087,,,1,7260,7260,, -28,065,28065,MS,Jefferson Davis County,2024,1,19291.08399,328,29815,16122.45293,22459.71505,0,,,,2,,,,2,22113.24528,17882.09643,26344.39413,,,,,2,14963.31584,10029.1159,19897.51578,,,,,2,,0.264,,,0.229,0.303,4.371509647,,,3.524694274,5.337435138,5.035089974,,,3.988762497,6.204763917,0.143705463,121,842,0.120010925,0.167400002,0,,,,,,,0.185468451,0.15215695,0.218779952,,,,0.072368421,0.043242371,0.101494471,,,,,,,0.226,,,0.187,0.27,0.441,,,0.364,0.523,6.7,0.095682789,0.15,,,0.357,,,0.303,0.415,0.255542797,2893,11321,,,0.11273157,,,0.088435636,0.140522723,0.166666667,5,30,0.080208315,0.272453563,961,107,11134,,,39.12601626,77,1968,30.87764017,48.90080717,,,,,,,33.28402367,24.27759526,44.53664238,,,,56.98529412,38.71874261,80.88607629,,,,,,,0.158761366,1292,8138,0.136123069,0.181399664,0.000269445,3,11134,,,3711.333333,0.00036075,4,11088,,,2772,0.001172439,13,11088,,,852.9230769,3940,,,,,,,5303,,2714,0.44,,,,,,,0.45,,0.44,0.39,,,,,,,0.35,,0.41,0.854930624,6901,8072,0.819186964,0.890674285,0.622114216,1536,2469,0.49457032,0.749658113,0.050309598,195,3876,,,0.533,1156,,0.400744681,0.665255319,,,,,,,0.412740544,0.289401305,0.536079784,,,,0.409763314,0.292170536,0.527356091,5.310542118,93747,17653,4.443297102,6.177787133,0.371097235,832,2242,0.240732013,0.501462456,11.67594755,13,11134,,,172.3518851,96,55700,139.6055803,210.4711508,,,,,,,187.41876,143.6928886,240.2623919,,,,153.1760088,104.7722766,216.2388209,,,,8.9,,,,,0,,,,,0.204767064,945,4615,0.148037099,0.261497029,0.165363129,0.11315229,0.217573967,0.02383532,0.006433236,0.041237403,0.024918743,0.003796152,0.046041335,0.88761002,3933,4431,0.842922548,0.932297493,,,,,,,0.858202803,0.729880205,0.986525401,,,,0.898116438,0.782370024,1,0.605,,4431,0.501169376,0.708830624,70.02118182,,,67.98229578,72.06006786,,,,,,,67.97154146,65.35776282,70.5853201,,,,73.00594062,69.61372657,76.39815468,,,,810.6767562,328,29815,714.5856183,906.7678941,,,,,,,934.7690944,802.1425302,1067.395659,,,,639.9511553,496.8452066,783.0571041,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.14,,,0.121,0.161,0.178,,,0.155,0.205,0.153,,,0.133,0.175,334.2,32,9574,,,0.15,1700,,,,0.095682789,1194.790986,12487,,,,,,,,,,,,,,,,,,,,,,,,,,0.379,,,0.365,0.392,0.191191026,1159,6062,0.161403792,0.22097826,0.066391941,145,2184,0.043753644,0.089030239,0.001172439,13,11088,,,852.9230769,0.925,74,80,,,,,,,,2.622984729,,,,,,,2.600780331,,,2.645205407,,,,,,,2.646776387,,,0.030955255,,,,,-30247.88,,,,,1.245695581,38056,30550,0.739704793,1.751686369,36642,,,31249.31915,42034.68085,,,,,,,33144,24498.55319,41789.44681,,,,47206,28590.17021,65821.82979,,,,,,0.997654418,1276,1279,,,17.45887825,,,,,0.188717865,,36642,,,4.958677686,3,605,,,27.93650794,22,78750,17.50766079,42.29620875,,,,,,,42.84306585,26.16965765,66.16764042,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,37.70197487,21,55700,23.33811667,57.63147349,,,,,,,54.41189807,32.24793924,85.99425733,,,,,,,,,,62.22222222,49,78750,46.03234254,82.26107758,,,,,,,66.40675207,45.12016619,94.25908381,,,,57.17360597,33.30573239,91.54048166,,,,,,1000,,,5,-888,0.694577977,6213,8945,,,0.478,,,,,3.34049955,,,,,0.819222996,3648,4453,0.77778754,0.860658452,0.164578728,670,4071,0.104544,0.224613455,0.704019762,3135,4453,0.647009493,0.761030031,11088,,,,,0.199585137,2213,11088,,,0.243326118,2698,11088,,,0.587391775,6513,11088,,,0.002976191,33,11088,,,0.002525253,28,11088,,,0.000901876,10,11088,,,0.019209957,213,11088,,,0.379238817,4205,11088,,,0.000654573,7,10694,,,0.524170274,5812,11088,,,1,11321,11321,, -28,067,28067,MS,Jones County,2024,1,13240.91802,1431,188276,12226.89549,14254.94055,0,,,,2,,,,2,15200.61251,13248.69722,17152.52779,,,,,2,12573.77809,11315.54856,13832.00762,,,,,2,,0.229,,,0.196,0.265,4.205141196,,,3.34598516,5.163742678,5.050643378,,,4.051236672,6.16559864,0.118819652,757,6371,0.110874013,0.12676529,0,,,,,,,0.171621622,0.155936786,0.187306457,0.081125828,0.059351478,0.102900178,0.091700522,0.082064476,0.101336569,,,,,,,0.21,,,0.17,0.255,0.396,,,0.331,0.468,6.4,0.090534717,0.165,,,0.304,,,0.255,0.36,0.515049222,34635,67246,,,0.140468566,,,0.111522232,0.174051042,0.066666667,4,60,0.023803297,0.132608282,798.6,533,66744,,,36.40256959,612,16812,33.51845574,39.28668345,,,,,,,39.69465649,34.60861158,44.7807014,76.92307692,59.36760678,98.04477611,31.13723064,27.62540793,34.64905336,,,,,,,0.155946339,8265,52999,0.13569102,0.176201658,0.000494427,33,66744,,,2022.545455,0.000570836,38,66569,,,1751.81579,0.001622377,108,66569,,,616.3796296,4345,,,,,,,5995,,4010,0.36,,,,,,0.38,0.4,,0.36,0.46,,,,,,0.39,0.41,0.3,0.46,0.861304939,38018,44140,0.842722215,0.879887662,0.572860305,9317,16264,0.513212051,0.632508559,0.041326305,1027,24851,,,0.255,4070,,0.165638298,0.344361702,,,,,,,0.610463061,0.53712724,0.683798883,0.62306701,0.490447367,0.755686654,0.114100593,0.068646406,0.15955478,5.289204978,104118,19685,4.644623921,5.933786036,0.34107734,5667,16615,0.281061238,0.401093442,14.23348915,95,66744,,,97.28027922,330,339226,86.7842771,107.7762814,,,,,,,80.74935401,64.02921571,100.4995609,,,,110.7749209,96.81799296,124.7318489,,,,9.7,,,,,0,,,,,0.141822571,3525,24855,0.113703514,0.169941628,0.107616908,0.082632059,0.132601758,0.022329511,0.012907684,0.031751339,0.02051901,0.008330129,0.032707892,0.846131671,23481,27751,0.813393161,0.878870181,,,,,,,0.845020004,0.811369566,0.878670443,,,,0.879604477,0.840811979,0.918396975,0.275,,27751,0.228318548,0.321681452,72.25915233,,,71.54376625,72.97453841,,,,,,,70.78442629,69.42140297,72.1474496,,,,72.58841,71.70632428,73.47049571,,,,608.1323789,1431,188276,575.0933388,641.1714191,,,,,,,695.6577668,627.1263317,764.1892019,,,,586.280739,546.8953765,625.6661015,,,,94.72936347,72,76006,74.11989276,119.2959556,,,,,,,110.0023572,73.09576749,158.9840337,,,,90.62075215,64.1286377,124.3840625,,,,9.683369198,63,6506,7.440966768,12.38923567,,,,,,,12.66375546,8.481115781,18.18726526,,,,8.806818182,5.983805676,12.50057543,,,,,,,0.132,,,0.113,0.153,0.172,,,0.149,0.201,0.128,,,0.111,0.15,319.7,176,55054,,,0.165,11110,,,,0.090534717,6134.722963,67761,,,12.81830059,26,202835,8.37333952,18.78178031,,,,,,,,,,,,,16.88333615,10.58069688,25.56157382,,,,0.355,,,0.342,0.368,0.195159629,7201,36898,0.168946863,0.221372395,0.069265865,1169,16877,0.047819056,0.090712673,0.001742553,116,66569,,,573.8706897,0.901855053,678.195,752,,,0.119205298,504,4228,0.047167684,0.191242912,3.092473933,,,,,,,2.810860084,3.087394097,3.321542576,2.95577058,,,,,,,2.746781908,2.910666643,3.147200449,0.206077948,,,,,-14293.298,,,,,0.698022539,32828,47030,0.579470586,0.816574492,58000,,,55130.89362,60869.10638,,,,,,,29778,24187.53192,35368.46809,33412,23216.42553,43607.57447,62081,55451.55319,68710.44681,,,,,,0.997619258,11314,11341,,,59.04914516,,,,,0.139517241,,58000,,,4.853298037,22,4533,,,8.834777048,42,475394,6.3673302,11.94205202,,,,,,,17.29031886,11.07823355,25.72662392,,,,4.565286863,2.49588481,7.659775623,,,,19.22456675,65,339226,14.70527027,24.69476024,19.16126712,,,,,,,11.23310655,5.136491611,21.32393529,,,,24.04203119,17.78642702,31.78484024,,,,23.58309799,80,339226,18.69993002,29.35120686,,,,,,,26.24354005,17.14315166,38.45286669,,,,23.34512796,17.38198115,30.69453192,,,,27.97679399,133,475394,23.22203842,32.73154955,,,,,,,26.65590825,18.76821936,36.74165824,,,,30.32654845,24.47743859,37.15207069,,,,34.67532468,,7700,,,169,98,0.604236948,30091,49800,,,0.545,,,,,45.64370874,,,,,0.746453974,18156,24323,0.716771667,0.776136281,0.126314874,2906,23006,0.098591047,0.154038702,0.673272212,16376,24323,0.633683728,0.712860695,66569,,,,,0.245264312,16327,66569,,,0.184425183,12277,66569,,,0.28969941,19285,66569,,,0.007060343,470,66569,,,0.005152549,343,66569,,,0.000510748,34,66569,,,0.048641259,3238,66569,,,0.642581382,42776,66569,,,0.011789635,740,62767,0.00681519,0.01676408,0.513422164,34178,66569,,,0.62524165,42045,67246,, -28,069,28069,MS,Kemper County,2024,1,10160.94447,187,25283,7786.127275,12535.76166,0,,,,2,,,,2,9911.309953,7241.626841,12580.99307,,,,,2,11397.45291,6379.067872,18798.3653,1,,,,2,,0.258,,,0.223,0.295,4.140998374,,,3.28703065,5.108921989,4.755867789,,,3.68367787,5.912560723,0.142857143,86,602,0.114903693,0.170810593,0,,,,,,,0.162412993,0.127591869,0.197234117,,,,0.088050315,0.044004119,0.13209651,,,,,,,0.218,,,0.179,0.259,0.431,,,0.348,0.513,4.7,0.239701469,0.172,,,0.334,,,0.28,0.39,0.073653761,662,8988,,,0.127484156,,,0.09971924,0.158772409,0.285714286,8,28,0.18563205,0.389524284,464.4,41,8829,,,20.75989033,53,2553,15.55058243,27.15444768,,,,,,,21.13821138,15.03133468,28.89663082,,,,23.98523985,12.77113006,41.01549062,,,,,,,0.165609349,992,5990,0.141779562,0.189439136,0.000113263,1,8829,,,8829,0.000231107,2,8654,,,4327,,0,8654,,,,3171,,,,,,,3027,,2866,0.41,,,,,,,0.45,,0.39,0.26,,,,,,,0.25,,0.28,0.8,4744,5930,0.762830137,0.837169863,0.556349643,1012,1819,0.428276565,0.68442272,0.059058751,192,3251,,,0.435,651,,0.292021277,0.577978723,0.639175258,0.07514451,1,,,,0.531222515,0.438126225,0.624318806,,,,0.071794872,0,0.236592844,4.825716097,83731,17351,2.396264708,7.255167486,0.504587156,825,1635,0.322157964,0.687016348,11.32631102,10,8829,,,66.66388901,32,48002,45.59805073,94.1095206,,,,,,,68.66717023,41.9436915,106.0508752,,,,74.14272475,38.3106278,129.5124192,,,,9.2,,,,,0,,,,,0.191744341,720,3755,0.119081796,0.264406885,0.093150685,0.034878314,0.151423056,0.082556591,0.037297002,0.12781618,0.019973369,0,0.042924848,0.854010025,2726,3192,0.8198534,0.88816665,,,,,,,0.849780702,0.756132763,0.94342864,,,,0.915039063,0.790609169,1,0.606,,3192,0.459345131,0.752654869,76.53457369,,,74.4505375,78.61860988,,,,,,,75.62088121,73.16287665,78.07888578,,,,76.06272899,71.6660908,80.45936718,,,,529.8791958,187,25283,449.0210435,610.7373481,,,,,,,539.6074188,433.7806854,645.4341522,,,,544.9737027,410.5487747,709.3581829,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.134,,,0.116,0.154,0.17,,,0.147,0.194,0.153,,,0.131,0.174,220.2,17,7721,,,0.172,1580,,,,0.239701469,2506.318557,10456,,,,,,,,,,,,,,,,,,,,,,,,,,0.385,,,0.371,0.399,0.202378281,902,4457,0.170208069,0.234548494,0.062153846,101,1625,0.041898527,0.082409165,0.000577768,5,8654,,,1730.8,0.925,59.2,64,,,,,,,,2.684904243,,,,,,,2.665122364,,,2.855304892,,,,,,,2.857983247,,,,,,,,-31067.24,,,,,0.87695149,35613,40610,0.606897783,1.147005197,39856,,,34195.23404,45516.76596,,,,,,,35298,18911.44681,51684.55319,,,,60841,44191.12766,77490.87234,,,,,,0.993442623,909,915,,,11.78889449,,,,,0.169083701,,39856,,,3.95256917,2,506,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,32.41634373,22,67867,20.31515003,49.07873398,,,,,,,46.1512303,27.78605544,72.07086296,,,,,,,,,,,,900,,,,,0.592485911,4731,7985,,,0.465,,,,,1.18698548,,,,,0.76773783,2413,3143,0.709151654,0.826324006,0.116462976,324,2782,0.048338447,0.184587505,0.703468024,2211,3143,0.624313468,0.782622581,8654,,,,,0.175641322,1520,8654,,,0.22244049,1925,8654,,,0.601918188,5209,8654,,,0.039634851,343,8654,,,0.002542177,22,8654,,,0.000462214,4,8654,,,0.012364225,107,8654,,,0.333256298,2884,8654,,,0.002241095,19,8478,0,0.013015911,0.496533395,4297,8654,,,1,8988,8988,, -28,071,28071,MS,Lafayette County,2024,1,8280.726407,681,156821,7347.761788,9213.691025,0,,,,2,,,,2,11903.84985,9785.958304,14021.7414,,,,,2,6975.888584,5936.062367,8015.714802,,,,,2,,0.182,,,0.154,0.212,3.637093133,,,2.901495113,4.525952393,4.805314083,,,3.871236443,5.858440968,0.083267871,318,3819,0.074505106,0.092030637,0,,,,,,,0.134883721,0.114463104,0.155304338,0.068085106,0.035879141,0.100291072,0.063113006,0.053270908,0.072955104,,,,,,,0.166,,,0.131,0.206,0.359,,,0.293,0.428,6.3,0.167986383,0.133,,,0.26,,,0.213,0.311,0.771146507,43040,55813,,,0.170492611,,,0.13761471,0.20920495,0.163636364,9,55,0.099324711,0.238647704,682.1,388,56884,,,9.854596396,204,20701,8.50227528,11.20691751,,,,,,,21.24919511,17.27029724,25.87013259,24.82269504,13.57079836,41.6482644,5.91112923,4.734572193,7.291356066,,,,,,,0.139539607,6183,44310,0.119284288,0.159794927,0.000703185,40,56884,,,1422.1,0.000503341,29,57615,,,1986.724138,0.007012063,404,57615,,,142.6113861,3547,,,,,,,6162,,2959,0.46,,,,,,0.38,0.47,,0.46,0.52,,,,,,0.59,0.37,,0.55,0.91771995,29624,32280,0.900605548,0.934834353,0.770411472,10691,13877,0.696385191,0.844437754,0.031776635,890,28008,,,0.178,1809,,0.125574468,0.230425532,,,,0.141818182,0,0.539077143,0.232469776,0.104264374,0.360675177,0.107142857,0,0.337163531,0.136541599,0.084800855,0.188282342,5.638281044,128316,22758,4.791384803,6.485177285,0.246477476,2484,10078,0.185244176,0.307710776,12.12994867,69,56884,,,63.39305882,174,274478,53.97366067,72.81245698,,,,,,,58.89190236,41.67541518,80.83373719,,,,67.98696311,56.34446796,79.62945826,,,,9.1,,,,,0,,,,,0.178638687,3320,18585,0.151240423,0.206036952,0.16908078,0.140920601,0.197240959,0.015603982,0.005178121,0.026029842,0.004304547,0.000842873,0.007766221,0.821325882,20281,24693,0.79154002,0.851111744,,,,,,,0.84025755,0.790716132,0.889798969,,,,0.835538552,0.807364276,0.863712827,0.218,,24693,0.176742799,0.259257201,76.42437503,,,75.62676635,77.2219837,,,,,,,72.56363229,70.88462114,74.24264345,,,,77.6139632,76.7083396,78.5195868,,,,401.4264435,681,156821,370.410671,432.442216,,,,,,,600.6106163,521.3915235,679.829709,,,,345.704592,311.8227759,379.5864081,,,,61.44504283,34,55334,42.55247838,85.86328857,,,,,,,78.38666002,39.13033825,140.2553874,,,,46.30134002,26.97223682,74.13293065,,,,10.06451613,39,3875,7.156854836,13.75852487,,,,,,,,,,,,,,,,,,,,,,0.113,,,0.096,0.132,0.158,,,0.135,0.183,0.114,,,0.097,0.133,204.4,101,49403,,,0.133,7410,,,,0.167986383,7954.323217,47351,,,15.72793099,26,165311,10.2740067,23.04506299,,,,,,,,,,,,,18.12892254,11.22208878,27.71198385,,,,0.324,,,0.309,0.339,0.161620343,5466,33820,0.136599066,0.18664162,0.073197378,804,10984,0.05055908,0.095835676,0.001614163,93,57615,,,619.516129,0.904055046,492.71,545,,,,,,,,3.268754246,,,,,,,2.913456856,2.671097006,3.479051018,3.530347922,,,,,,,3.194883498,3.470775451,3.682434211,0.037238998,,,,,-2484.129,,,,,0.780951691,43114,55207,0.668398529,0.893504853,61736,,,54577.53192,68894.46809,,,,52817,30110.78723,75523.21277,36466,34452.38298,38479.61702,,,,70233,60475.89362,79990.10638,,,,,,0.996002665,7475,7505,,,30.14074447,,,,,0.188722949,,61736,,,4.945249029,14,2831,,,4.981280871,19,381428,2.999056484,7.778887122,,,,,,,12.24644297,6.113380204,21.91226928,,,,,,,,,,11.51381915,29,274478,7.587679373,16.75200237,10.5655098,,,,,,,,,,,,,12.36728816,7.750513644,18.72422289,,,,11.29416565,31,274478,7.673837604,16.03116662,,,,,,,18.59744285,9.609570103,32.48599,,,,9.860704573,5.936788298,15.39871166,,,,20.71164152,79,381428,16.39760163,25.81288504,,,,,,,24.49288593,15.34956121,37.08252364,,,,20.89279385,15.78219195,27.13103065,,,,9.111111111,,4500,,,17,24,0.547010743,23423,42820,,,0.513,,,,,59.21629034,,,,,0.643834884,12041,18702,0.62151546,0.666154309,0.172226004,3036,17628,0.139120751,0.205331257,0.889958293,16644,18702,0.86380435,0.916112236,57615,,,,,0.179154734,10322,57615,,,0.140380109,8088,57615,,,0.236153779,13606,57615,,,0.0031589,182,57615,,,0.022771848,1312,57615,,,0.000971969,56,57615,,,0.026625011,1534,57615,,,0.699869826,40323,57615,,,0.003798155,203,53447,0.000228099,0.007368212,0.516150308,29738,57615,,,0.399458907,22295,55813,, -28,073,28073,MS,Lamar County,2024,1,8252.137903,831,181605,7445.425234,9058.850572,0,,,,2,,,,2,8905.07381,7106.583686,10703.56394,,,,,2,8371.897777,7414.187883,9329.607671,,,,,2,,0.181,,,0.153,0.212,3.510782501,,,2.775687098,4.35926755,4.716614387,,,3.78395144,5.73682959,0.098742604,534,5408,0.090791738,0.10669347,0,,,,,,,0.161029412,0.141494449,0.180564375,0.06763285,0.033423626,0.101842075,0.077932732,0.069244431,0.086621033,,,,0.151898734,0.072750094,0.231047375,0.17,,,0.135,0.21,0.386,,,0.321,0.458,6.6,0.104082681,0.149,,,0.26,,,0.217,0.311,0.620099032,39824,64222,,,0.165084735,,,0.133267639,0.203174979,0.142857143,8,56,0.081647408,0.216763567,628.9,411,65353,,,20.86642599,289,13850,18.46064982,23.27220217,,,,,,,23.84291725,19.04487546,29.48213642,,,,20.19871165,17.28803557,23.10938773,,,,33.53658537,16.74134258,60.00621498,0.145608446,7999,54935,0.126544617,0.164672276,0.001239423,81,65353,,,806.8271605,0.001094508,72,65783,,,913.6527778,0.000592858,39,65783,,,1686.74359,3995,,,,,,,9406,,3731,0.41,,,,,,,0.48,,0.4,0.45,,,,,,,0.38,,0.45,0.911932408,39504,43319,0.896799589,0.927065228,0.686259666,12691,18493,0.625735929,0.746783403,0.030514358,967,31690,,,0.195,3015,,0.146148936,0.243851064,,,,0.510752688,0.074369884,0.947135492,0.650668121,0.595401724,0.705934518,0.200792602,0.075949584,0.325635621,0.093478261,0.059429043,0.127527479,4.660336389,135215,29014,3.98834593,5.332326849,0.221240064,3479,15725,0.172562435,0.269917693,9.486940156,62,65353,,,66.31257855,210,316682,57.34361333,75.28154376,,,,,,,37.66705338,24.37613091,55.60400129,,,,77.71450282,66.36120863,89.06779702,,,,9.3,,,,,0,,,,,0.112397062,2525,22465,0.08931894,0.135475185,0.094772727,0.071083827,0.118461628,0.020698865,0.011524313,0.029873417,0.008012464,0.001391929,0.014632999,0.819938486,24526,29912,0.791723809,0.848153164,,,,,,,0.832677165,0.776544926,0.888809405,,,,0.848544233,0.816270708,0.880817758,0.307,,29912,0.269567508,0.344432492,78.14115191,,,77.33189822,78.95040561,,,,,,,76.05972849,73.96738611,78.15207087,82.80443552,75.78363532,89.82523571,78.08755691,77.17755984,78.99755397,,,,390.5598219,831,181605,363.5175183,417.6021254,,,,,,,445.5884481,373.9755034,517.2013927,,,,394.4746375,363.3071394,425.6421356,,,,60.20292792,41,68103,43.20266048,81.67206961,,,,,,,93.75915617,53.59145886,152.2589956,,,,51.29120021,32.51422113,76.96198407,,,,6.741982507,37,5488,4.746977873,9.292934793,,,,,,,,,,,,,5.663430421,3.505752693,8.657154999,,,,,,,0.109,,,0.094,0.128,0.16,,,0.137,0.186,0.105,,,0.09,0.122,88.5,48,54243,,,0.149,9510,,,,0.104082681,5793.033869,55658,,,19.18480149,37,192861,13.50787073,26.44372172,,,,,,,,,,,,,23.57277559,16.22641406,33.10494119,,,,0.329,,,0.314,0.344,0.175803162,6895,39220,0.150781885,0.200824438,0.074626866,1230,16482,0.053180057,0.096073674,0.000273627,18,65783,,,3654.611111,0.89,677.29,761,,,0.116345878,405,3481,0.0525766,0.180115156,3.31414316,,,,,,,2.9635447,2.798091848,3.473946956,3.351623432,,,,,,,3.032747504,2.965400848,3.485363582,0.111660582,,,,,-4582.264,,,,,0.753301753,45003,59741,0.693941537,0.812661968,62326,,,56731.95745,67920.04255,,,,82045,26697.93617,137392.0638,42393,32855.12766,51930.87234,42232,19357.78723,65106.21277,76230,69096.55319,83363.44681,,,,,,0.99535109,10277,10325,,,42.08172193,,,,,0.188348362,,62326,,,5.712866369,23,4026,,,6.389572218,28,438214,4.245824336,9.234710882,,,,,,,13.13557003,6.787340713,22.94519736,,,,4.975480212,2.843916839,8.079868149,,,,13.5463621,43,316682,9.763026282,18.31074627,13.57828989,,,,,,,,,,,,,16.55681344,11.65752462,22.82138636,,,,15.78870918,50,316682,11.71868428,20.81544473,,,,,,,,,,,,,18.13338399,13.06894819,24.51106731,,,,15.74573154,69,438214,12.25111899,19.92723101,,,,,,,10.94630836,5.249180336,20.1306508,,,,18.03611577,13.69557888,23.31586206,,,,13.78378378,,7400,,,49,53,0.613768584,28485,46410,,,0.615,,,,,34.61282058,,,,,0.671473329,16717,24896,0.646818293,0.696128365,0.108075212,2575,23826,0.084574022,0.131576402,0.886166452,22062,24896,0.864300573,0.908032332,65783,,,,,0.239134731,15731,65783,,,0.154584011,10169,65783,,,0.221044951,14541,65783,,,0.003906784,257,65783,,,0.014137391,930,65783,,,0.001140112,75,65783,,,0.032075156,2110,65783,,,0.716522506,47135,65783,,,0.006565565,397,60467,0.002698585,0.010432544,0.519830351,34196,65783,,,0.537494939,34519,64222,, -28,075,28075,MS,Lauderdale County,2024,1,14000.06809,1669,203474,12995.98003,15004.15616,0,,,,2,,,,2,16264.15661,14709.28112,17819.03209,,,,,2,12223.5053,10852.22703,13594.78357,,,,,2,,0.238,,,0.205,0.274,3.855357952,,,3.085464553,4.694094773,4.847272893,,,3.924056706,5.840641452,0.138560857,880,6351,0.130063818,0.147057895,0,,,,,,,0.174603175,0.161476396,0.187729954,0.072727273,0.038411236,0.10704331,0.102305476,0.091031942,0.113579009,,,,,,,0.211,,,0.174,0.252,0.433,,,0.373,0.498,5.4,0.173443342,0.172,,,0.33,,,0.282,0.384,0.603611751,44054,72984,,,0.137661777,,,0.111203229,0.169702272,0.114942529,10,87,0.068816768,0.171369304,545.2,393,72088,,,31.65958466,529,16709,28.96163744,34.35753187,,,,,,,39.17338481,35.03969749,43.30707213,25.92592593,14.17394496,43.49929837,23.39688042,19.79394465,26.99981618,,,,,,,0.133965262,7335,54753,0.117284411,0.150646113,0.001012651,73,72088,,,987.5068493,0.000733386,52,70904,,,1363.538462,0.00346948,246,70904,,,288.2276423,3596,,,,,,,5185,,2962,0.48,,,,,,0.29,0.45,,0.49,0.35,,,,,,0.31,0.27,,0.37,0.841934962,41632,49448,0.823158076,0.860711848,0.628193881,11457,18238,0.569663063,0.686724699,0.040510544,1168,28832,,,0.348,5646,,0.258638298,0.437361702,,,,0.707317073,0.365462482,1,0.531281407,0.457702332,0.604860482,0.317307692,0.040712173,0.593903211,0.16295588,0.104144072,0.221767689,6.433719598,101048,15706,5.869225448,6.998213747,0.453868262,7738,17049,0.398292509,0.509444015,16.23016313,117,72088,,,97.19036389,361,371436,87.16441056,107.2163172,,,,,,,92.57102221,77.80570923,107.3363352,,,,104.4910351,90.04538556,118.9366846,,,,9.6,,,,,0,,,,,0.167395693,4975,29720,0.142138147,0.19265324,0.152035733,0.126366758,0.177704708,0.016655451,0.009102271,0.024208631,0.009925976,0.002497547,0.017354404,0.808075016,23957,29647,0.785410388,0.830739645,,,,,,,0.775974287,0.731275029,0.820673545,,,,0.864375314,0.828966211,0.899784416,0.213,,29647,0.177614571,0.248385429,71.62580101,,,70.92738334,72.32421869,,,,,,,69.96138429,68.89015231,71.03261628,,,,72.73806303,71.77049482,73.70563123,,,,645.8097322,1669,203474,613.3990223,678.2204422,,,,,,,751.1359375,696.8337474,805.4381277,,,,578.2745634,536.849546,619.6995808,,,,99.21930077,76,76598,78.17352395,124.1877503,,,,,,,113.1191961,81.86492308,152.3708148,,,,81.18591575,53.50203004,118.121245,,,,10.17262639,66,6488,7.867508511,12.94207498,,,,,,,12.27747084,8.771205169,16.71843062,,,,7.638888889,4.787250997,11.56536958,,,,,,,0.127,,,0.11,0.147,0.168,,,0.146,0.192,0.133,,,0.116,0.154,482.1,291,60363,,,0.172,12670,,,,0.173443342,13920.73608,80261,,,8.637777091,19,219964,5.200506067,13.48895891,,,,,,,,,,,,,9.725304358,4.854836895,17.4012559,,,,0.382,,,0.368,0.394,0.16570661,6415,38713,0.143068312,0.188344908,0.0606799,1021,16826,0.04280756,0.078552241,0.002270676,161,70904,,,440.3975155,0.889848867,706.54,794,,,0.099126161,363,3662,0.050111972,0.14814035,2.804808022,,,,,,,2.431004387,2.904934382,3.382378156,2.825975935,,,,,,,2.511236621,2.990258094,3.306884252,0.328772527,,,,,-12999.288,,,,,0.781984752,36618,46827,0.71550107,0.848468435,49351,,,43803.42553,54898.57447,,,,54500,45155.14894,63844.85106,25697,20637.93617,30756.06383,37031,24554.91489,49507.08511,64808,59518.97872,70097.02128,,,,,,0.996613677,10595,10631,,,55.42820641,,,,,0.186014468,,49351,,,6.767426122,30,4433,,,20.65508845,109,527715,16.77742707,24.53274983,,,,,,,35.61640266,28.326782,44.20934676,,,,9.094282243,5.885339962,13.4249546,,,,14.25374223,52,371436,10.54499697,18.84420314,13.99972001,,,,,,,6.278670544,3.010866575,11.54669868,,,,21.01844313,14.72105917,29.09838485,,,,30.69169386,114,371436,25.05759448,36.32579324,,,,,,,42.9137189,33.45334918,54.21890216,,,,21.83394763,15.73598897,29.51315432,,,,21.79206579,115,527715,17.80910939,25.7750222,,,,,,,17.37385495,12.4121367,23.6582593,,,,26.19153286,20.49326139,32.98390095,,,,19.24050633,,7900,,,85,67,0.547520589,31247,57070,,,0.568,,,,,42.10976344,,,,,0.626688772,17766,28349,0.601279649,0.652097895,0.175927992,4730,26886,0.148631243,0.203224741,0.811457194,23004,28349,0.789105203,0.833809186,70904,,,,,0.233019294,16522,70904,,,0.186689044,13237,70904,,,0.447210313,31709,70904,,,0.004005416,284,70904,,,0.008137764,577,70904,,,0.000535936,38,70904,,,0.023623491,1675,70904,,,0.508617285,36063,70904,,,0.002661441,182,68384,0,0.00599065,0.514329234,36468,70904,,,0.536761482,39175,72984,, -28,077,28077,MS,Lawrence County,2024,1,13222.35147,297,34091,10870.59727,15574.10567,0,,,,2,,,,2,14378.59192,10601.63862,19063.92685,,,,,2,12863.60828,9881.583718,15845.63284,,,,,2,,0.249,,,0.213,0.284,4.205839484,,,3.33034422,5.14390092,5.416128776,,,4.312898,6.578833184,0.121298949,127,1047,0.101523251,0.141074648,0,,,,,,,0.167525773,0.130366568,0.204684979,,,,0.09591195,0.073025984,0.118797915,,,,,,,0.226,,,0.185,0.269,0.431,,,0.352,0.508,6.1,0.082086521,0.181,,,0.339,,,0.285,0.395,,,12016,,,0.134056384,,,0.104200257,0.165632165,0.25,3,12,0.099776571,0.4182543,626.5,74,11812,,,39.193729,105,2679,31.69689306,46.69056495,,,,,,,36.48915187,25.69173034,50.29548929,,,,42.00626959,32.55428196,53.34647751,,,,,,,0.148566557,1394,9383,0.128311237,0.168821876,0.000169319,2,11812,,,5906,0.00017075,2,11713,,,5856.5,8.53752E-05,1,11713,,,11713,4949,,,,,,,6161,,4671,0.36,,,,,,,0.46,,0.33,0.36,,,,,,,0.33,,0.36,0.829087311,6704,8086,0.789794915,0.868379708,0.485218034,1313,2706,0.382969805,0.587466263,0.04688154,224,4778,,,0.307,847,,0.205723404,0.408276596,,,,,,,0.401475237,0.289606662,0.513343812,0.495283019,0.068104713,0.922461325,0.181303116,0.092154608,0.270451624,4.690035685,85429,18215,3.484461134,5.895610236,0.344196874,1035,3007,0.236193217,0.452200532,16.08533695,19,11812,,,114.560475,71,61976,89.47268145,144.5024511,,,,,,,75.4565119,42.23243691,124.4540413,,,,140.3262586,106.0009477,182.2253189,,,,8.8,,,,,0,,,,,0.202191235,1015,5020,0.146979326,0.257403144,0.110753121,0.072840936,0.148665307,0.02689243,0.0097154,0.04406946,0.0687251,0.026356384,0.111093815,0.892742135,3604,4037,0.846407744,0.939076527,,,,,,,,,,,,,0.877202956,0.80655978,0.947846133,0.488,,4037,0.397540922,0.578459078,71.39181798,,,69.82017685,72.96345912,,,,,,,71.53060122,68.78570453,74.27549791,,,,71.24855684,69.26353981,73.23357387,,,,647.5819355,297,34091,569.320024,725.843847,,,,,,,709.4977733,569.0379611,874.1211004,,,,635.49007,540.3777892,730.6023509,,,,83.93742846,11,13105,41.90126186,150.1872454,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.138,,,0.118,0.158,0.182,,,0.158,0.207,0.136,,,0.117,0.155,417.4,41,9823,,,0.181,2190,,,,0.082086521,1061.296629,12929,,,,,,,,,,,,,,,,,,,,,,,,,,0.365,,,0.35,0.377,0.182439617,1201,6583,0.155035362,0.209843873,0.071282401,209,2932,0.048644103,0.093920699,0.001536754,18,11713,,,650.7222222,0.825,117.975,143,,,,,,,,2.733730844,,,,,,,2.578582566,,2.831656578,2.857953756,,,,,,,2.633220217,,2.998608861,0.066926776,,,,,-10148.72,,,,,0.798630479,35222,44103,0.593413407,1.00384755,46407,,,39532.10638,53281.89362,80625,33013.08511,128236.9149,,,,33558,21401.23404,45714.76596,,,,47190,38288.38298,56091.61702,,,,,,0.991525424,1755,1770,,,27.14384047,,,,,0.195660138,,46407,,,2.69541779,2,742,,,13.73830813,12,87347,7.098784284,23.99805952,,,,,,,,,,,,,,,,,,,19.49080509,12,61976,9.729739675,34.87443422,19.36233381,,,,,,,,,,,,,29.96571458,14.95877675,53.61694076,,,,35.49761198,22,61976,22.24616444,53.74381113,,,,,,,,,,,,,45.10486882,26.73200386,71.28513862,,,,32.0560523,28,87347,21.30101395,46.32992083,,,,,,,39.3686697,19.65269807,70.44142484,,,,30.14451636,17.56029164,48.26429083,,,,,,1400,,,19,-888,0.698310454,6613,9470,,,0.472,,,,,1.245547209,,,,,0.786720322,3519,4473,0.745968772,0.827471872,0.097497639,413,4236,0.055190423,0.139804855,0.593337805,2654,4473,0.533749957,0.652925652,11713,,,,,0.238623751,2795,11713,,,0.195936139,2295,11713,,,0.31998634,3748,11713,,,0.003158883,37,11713,,,0.005037138,59,11713,,,0.00017075,2,11713,,,0.025527192,299,11713,,,0.635703919,7446,11713,,,0.005179034,58,11199,0,0.015393236,0.509775463,5971,11713,,,1,12016,12016,, -28,079,28079,MS,Leake County,2024,1,12903.99354,463,62173,11217.54716,14590.43992,0,36605.22454,25904.03552,50243.53063,,,,,2,12667.74118,10156.85331,15178.62905,,,,,2,10904.81851,8495.816731,13313.8203,,,,,2,,0.255,,,0.223,0.291,4.388637799,,,3.540883162,5.375758441,5.219751572,,,4.186170116,6.434861157,0.112385321,245,2180,0.099126807,0.125643835,0,0.077669903,0.041119512,0.114220294,,,,0.137813212,0.115012158,0.160614266,0.101123596,0.064959577,0.137287614,0.088888889,0.069290383,0.108487395,,,,,,,0.231,,,0.192,0.273,0.442,,,0.365,0.526,5.9,0.113986093,0.175,,,0.33,,,0.279,0.387,0.343971798,7318,21275,,,0.137797188,,,0.108511775,0.173348429,0.222222222,8,36,0.136980963,0.316281106,924.7,196,21196,,,55.22682446,224,4056,47.99442951,62.45921941,103.0640669,72.56661439,142.06024,,,,39.76945245,30.94300781,50.33078738,137.8091873,97.99580385,188.3896956,48.93350063,38.67990163,61.07122337,,,,,,,0.173481159,2707,15604,0.150842861,0.196119457,0.000235894,5,21196,,,4239.2,0.000283889,6,21135,,,3522.5,9.46298E-05,2,21135,,,10567.5,2717,,,,,8807,,2236,,2642,0.41,,,,,,,0.42,,0.41,0.35,,,,,0.45,,0.26,,0.36,0.813273419,11764,14465,0.779742082,0.846804756,0.500282008,2661,5319,0.41316931,0.587394706,0.04145012,327,7889,,,0.323,1522,,0.207425532,0.438574468,0.592286501,0.391306697,0.793266305,,,,0.425861208,0.334524271,0.517198146,0.532038835,0.286369415,0.777708255,0.101971831,0.015268751,0.188674911,4.526294229,88394,19529,3.874648127,5.177940332,0.360883797,1764,4888,0.276550999,0.445216596,13.21003963,28,21196,,,106.9509184,120,112201,87.81497112,126.0868658,227.0884023,124.1513427,381.0157522,,,,61.77441687,41.37129649,88.71836711,,,,134.1381623,104.5672782,169.4754984,,,,9.4,,,,,0,,,,,0.098582871,800,8115,0.070616969,0.126548774,0.068404323,0.044200561,0.092608085,0.034504005,0.01452235,0.05448566,0.002464572,0,0.005999414,0.834414774,6687,8014,0.785691218,0.88313833,,,,,,,0.79057187,0.681797315,0.899346425,,,,0.814540559,0.794626977,0.83445414,0.433,,8014,0.364709883,0.501290117,72.51198201,,,71.27334642,73.7506176,,,,,,,72.63763733,70.66948979,74.60578487,,,,74.02879098,72.27935036,75.7782316,,,,605.3412117,463,62173,548.0816535,662.6007699,1558.073641,1156.432288,2054.125856,,,,616.267337,523.3895367,709.1451372,,,,527.2009127,452.4037366,601.9980888,,,,72.74784788,18,24743,43.11498517,114.9729631,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.14,,,0.122,0.162,0.18,,,0.154,0.207,0.14,,,0.121,0.162,339.8,60,17655,,,0.175,3750,,,,0.113986093,2713.438941,23805,,,,,,,,,,,,,,,,,,,,,,,,,,0.374,,,0.362,0.386,0.214707698,2435,11341,0.183728974,0.245686421,0.066458519,298,4484,0.0462032,0.086713838,0.000946298,20,21135,,,1056.75,0.825,143.55,174,,,,,,,,2.736593048,,,,,,,2.630650494,2.632754511,3.116675209,2.71154026,,,,,,,2.619870626,2.767577587,2.878770658,0.035051067,,,,,-19694.54,,,,,0.816328303,37596,46055,0.687370146,0.94528646,46429,,,40118.87234,52739.12766,46818,14915.87234,78720.12766,,,,41362,31794.34043,50929.65957,21447,10506.74468,32387.25532,50845,43357.68085,58332.31915,,,,,,1,2577,2577,,,41.07816835,,,,,0.165715393,,46429,,,6.237006237,9,1443,,,17.76830135,28,157584,11.80690721,25.68014262,,,,,,,21.30119895,11.64556369,35.73979235,,,,13.56852103,6.506633238,24.95299327,,,,16.59373353,18,112201,9.666461281,26.56817485,16.04263777,,,,,,,,,,,,,27.08534749,14.42180681,46.3167691,,,,26.73772961,30,112201,18.03983389,38.16977157,,,,,,,,,,,,,34.49267031,20.44254246,54.51328977,,,,32.36369175,51,157584,24.09689425,42.55227775,,,,,,,19.77968474,10.53184908,33.8238633,,,,35.27815468,23.04486189,51.6906704,,,,,,2900,,,-888,7,0.553716521,9200,16615,,,0.559,,,,,1.685748627,,,,,0.760075994,5601,7369,0.729802946,0.790349042,0.086421561,590,6827,0.057103536,0.115739587,0.704437509,5191,7369,0.654855744,0.754019273,21135,,,,,0.227206056,4802,21135,,,0.182966643,3867,21135,,,0.394132955,8330,21135,,,0.070309913,1486,21135,,,0.006150935,130,21135,,,0.000378519,8,21135,,,0.053655075,1134,21135,,,0.476508162,10071,21135,,,0.01919712,384,20003,0.003498362,0.034895879,0.506032647,10695,21135,,,1,21275,21275,, -28,081,28081,MS,Lee County,2024,1,12135.02291,1659,238039,11284.13637,12985.90945,0,,,,2,,,,2,16282.25082,14531.89476,18032.60689,,8883.611422,5264.991143,14039.936,1,10019.68944,9086.258889,10953.11999,,,,,2,,0.184,,,0.156,0.214,3.423021453,,,2.694221414,4.188079322,4.968319252,,,4.06325787,5.936226365,0.130692814,1013,7751,0.123188868,0.13819676,0,,,,0.132530121,0.059584114,0.205476127,0.19529957,0.181162856,0.209436284,0.102803738,0.069579752,0.136027724,0.088028169,0.079519673,0.096536665,,,,,,,0.177,,,0.142,0.215,0.358,,,0.299,0.423,7.3,0.068920573,0.133,,,0.267,,,0.223,0.315,0.488271361,40694,83343,,,0.160352676,,,0.129937569,0.195536217,0.138613861,14,101,0.093038625,0.191401774,856.6,710,82883,,,33.21872521,628,18905,30.62060517,35.81684524,,,,,,,45.82825822,40.65092432,51.00559213,33.98058252,21.03451616,51.94292999,26.58762238,23.55868903,29.61655574,,,,,,,0.139977067,9644,68897,0.123296216,0.156657918,0.00118239,98,82883,,,845.744898,0.000747357,62,82959,,,1338.048387,0.007979846,662,82959,,,125.31571,2715,,,,,,,4417,,2414,0.45,,,,,,0.22,0.46,,0.45,0.52,,,,,,0.44,0.45,0.27,0.53,0.872730554,48358,55410,0.856128227,0.889332881,0.685918265,14988,21851,0.63492012,0.73691641,0.033339058,1359,40763,,,0.178,3598,,0.110085106,0.245914894,,,,,,,0.373305671,0.304274519,0.442336823,0.167158309,0,0.343000595,0.072757887,0.045911279,0.099604496,4.792862281,119927,25022,4.257975255,5.327749308,0.307651512,6381,20741,0.252520093,0.36278293,13.27172038,110,82883,,,100.2547651,425,423920,90.72314703,109.7863831,,,,,,,90.48432515,74.01785814,106.9507922,,,,110.4600552,98.00178181,122.9183285,,,,9.6,,,,,0,,,,,0.141534599,4510,31865,0.120183528,0.162885671,0.111766582,0.092773925,0.130759238,0.031539306,0.022049869,0.041028744,0.00957163,0.003015036,0.016128224,0.883795505,33624,38045,0.859053047,0.908537963,,,,,,,0.900262676,0.861117405,0.939407948,0.761489699,0.646608895,0.876370503,0.88794932,0.864470691,0.911427948,0.211,,38045,0.186639943,0.235360058,72.3936815,,,71.77952027,73.00784274,,,,,,,68.90815374,67.73075296,70.08555451,79.65610506,72.27746629,87.03474382,73.96254765,73.26824875,74.65684656,,,,575.8758541,1659,238039,547.4330928,604.3186154,,,,,,,713.3994024,652.1416153,774.6571895,455.7164287,274.3710595,711.6576539,523.512117,490.9536216,556.0706124,,,,86.28220753,80,92719,68.41642446,107.385676,,,,,,,124.4914071,89.33718306,168.8866508,,,,61.78679693,42.26212336,87.22452179,,,,10.26876268,81,7888,8.154879817,12.7631344,,,,,,,17.30329742,12.96135714,22.63313906,,,,5.495763682,3.52123949,8.177260727,,,,,,,0.111,,,0.096,0.129,0.16,,,0.138,0.184,0.11,,,0.094,0.127,334.4,229,68486,,,0.133,11090,,,,0.068920573,5714.204707,82910,,,20.09575034,51,253785,14.96260608,26.42220044,,,,,,,,,,,,,26.46642457,19.15388269,35.65010021,,,,0.319,,,0.306,0.332,0.168408278,8187,48614,0.146961469,0.189855086,0.075021153,1596,21274,0.054765833,0.095276472,0.003411324,283,82959,,,293.1413428,0.873151876,954.355,1093,,,0.059271804,280,4724,0.021674749,0.096868858,3.109594974,,,,,,,2.780830319,2.944244133,3.36832938,3.226755867,,,,,,,3.018315782,3.565945741,3.33915184,0.13479863,,,,,-7781.24975,,,,,0.699809068,39218,56041,0.637177422,0.762440714,58266,,,51958.25532,64573.74468,,,,,,,42996,38063.23404,47928.76596,71667,32662.40426,110671.5957,77033,71452.06383,82613.93617,,,,,,0.995160315,14805,14877,,,41.72951989,,,,,0.16270209,,58266,,,12.34343801,68,5509,,,11.26806043,67,594601,8.732592062,14.31003843,,,,,,,25.89565178,18.95887174,34.54117055,,,,5.174269393,3.160578169,7.991239419,,,,14.28055552,58,423920,10.78737817,18.54448917,13.68182676,,,,,,,,,,,,,20.31859812,15.12853089,26.71520411,,,,19.81505945,84,423920,15.80526744,24.53239191,,,,,,,27.301305,19.01635926,37.96950629,,,,17.55656506,12.94482514,23.27745817,,,,25.05882096,149,594601,21.0351397,29.08250222,,,,,,,34.33988606,26.26729186,44.11102024,,,,21.99064492,17.56534611,27.19177299,,,,24.84848485,,9900,,,151,95,0.589754229,36954,62660,,,0.633,,,,,37.52899836,,,,,0.699446892,22383,32001,0.679994947,0.718898838,0.110691496,3400,30716,0.090969128,0.130413865,0.810412175,25934,32001,0.792509017,0.828315332,82959,,,,,0.24807435,20580,82959,,,0.15634229,12970,82959,,,0.30998445,25716,82959,,,0.003917598,325,82959,,,0.010354513,859,82959,,,0.000421895,35,82959,,,0.031822949,2640,82959,,,0.631601152,52397,82959,,,0.009433236,735,77916,0.004379952,0.014486519,0.521341868,43250,82959,,,0.517259998,43110,83343,, -28,083,28083,MS,Leflore County,2024,1,19132.50482,800,78502,17259.97361,21005.03603,0,,,,2,,,,2,21219.82229,18961.60566,23478.03892,,,,,2,13965.06425,10316.13097,17613.99753,,,,,2,,0.305,,,0.263,0.348,4.59649185,,,3.732425364,5.53311263,5.212069109,,,4.20122337,6.290147205,0.15098242,438,2901,0.13795364,0.1640112,0,,,,,,,0.163793103,0.148733388,0.178852819,0.099099099,0.043512776,0.154685422,0.102396514,0.074661105,0.130131924,,,,,,,0.249,,,0.201,0.299,0.497,,,0.422,0.574,4.8,0.208332765,0.18,,,0.407,,,0.343,0.471,0.581001447,16465,28339,,,0.122264754,,,0.096444869,0.152949994,0.214285714,6,28,0.11834453,0.322712758,1458.8,402,27557,,,39.95268761,304,7609,35.46145779,44.44391743,,,,,,,43.77478192,38.61031474,48.9392491,,,,19.21132457,11.56647236,30.00086307,,,,,,,0.141919873,3050,21491,0.121664554,0.162175193,0.000798345,22,27557,,,1252.590909,0.000489274,13,26570,,,2043.846154,0.005269101,140,26570,,,189.7857143,3143,,,,,,,3757,,2634,0.41,,,,,,,0.42,,0.4,0.42,,,,,,0.53,0.34,,0.5,0.831944843,14480,17405,0.806955165,0.856934522,0.563178959,3940,6996,0.47385042,0.652507499,0.053667831,507,9447,,,0.462,3357,,0.329744681,0.594255319,,,,,,,0.526930132,0.453345516,0.600514748,0.312217195,0,0.961308109,0.069892473,0,0.197095998,7.062448712,86063,12186,5.927368443,8.19752898,0.594040248,4605,7752,0.516635765,0.671444731,11.24941031,31,27557,,,137.5797257,195,141736,118.2692397,156.8902117,,,,,,,134.9886876,112.7858095,157.1915656,,,,170.0791522,127.0232459,223.0361802,,,,9.1,,,,,0,,,,,0.165656566,1640,9900,0.135090944,0.196222187,0.14155496,0.109800565,0.173309355,0.022222222,0.009781101,0.034663344,0.015151515,0.005683334,0.024619696,0.848242188,8686,10240,0.81721027,0.879274105,,,,,,,0.869128393,0.815646507,0.922610278,,,,0.845027981,0.792466862,0.8975891,0.118,,10240,0.075857643,0.160142357,67.07691078,,,65.96771101,68.18611054,,,,,,,65.72925083,64.43256927,67.02593238,,,,70.40393056,68.06845712,72.73940401,,,,894.347003,800,78502,830.0560195,958.6379865,,,,,,,1004.161692,923.473643,1084.849741,,,,676.8094929,560.8595505,792.7594353,,,,118.2033097,41,34686,84.82473583,160.3561367,,,,,,,128.2803108,89.35193668,178.4068589,,,,,,,,,,9.486424599,29,3057,6.353207438,13.62408814,,,,,,,10.23331969,6.62246494,15.10639857,,,,,,,,,,,,,0.156,,,0.134,0.181,0.187,,,0.161,0.216,0.182,,,0.158,0.208,458.4,102,22249,,,0.18,5130,,,,0.208332765,6732.689966,32317,,,,,,,,,,,,,,,,,,,,,,,,,,0.38,,,0.364,0.397,0.186544977,2698,14463,0.157949232,0.215140722,0.052125643,385,7386,0.034253303,0.069997984,0.001317275,35,26570,,,759.1428571,0.96,271.68,283,,,,,,,,2.447185387,,,,,,,2.424314443,,2.697523163,2.657513576,,,,,,,2.638858339,,2.852961823,0.148993281,,,,,,,,,,0.804637741,30952,38467,0.6576619,0.951613583,35520,,,30526.46809,40513.53192,,,,,,,25705,21719.46809,29690.53192,,,,73324,50870.38298,95777.61702,,,,,,0.999281093,4170,4173,,,59.93256782,,,,,0.213147523,,35520,,,12.42236025,28,2254,,,40.47563811,82,202591,32.19147616,50.2409392,,,,,,,51.47678197,40.62467132,64.33714518,,,,,,,,,,13.44849805,19,141736,7.970432266,21.25442492,13.40520404,,,,,,,11.47451805,5.502477417,21.10204724,,,,,,,,,,56.44296438,80,141736,44.75576042,70.248155,,,,,,,66.54371922,51.87409368,84.073986,,,,32.70752927,15.68453162,60.15031086,,,,27.14829385,55,202591,20.45181028,35.33723609,,,,,,,27.40971507,19.66968477,37.1843735,,,,29.14275466,15.51728948,49.83499802,,,,18,,3500,,,40,23,0.528145455,10893,20625,,,0.549,,,,,52.42793407,,,,,0.548777962,5299,9656,0.505949219,0.591606705,0.192232338,1668,8677,0.150177612,0.234287065,0.547017399,5282,9656,0.505676044,0.588358753,26570,,,,,0.278095597,7389,26570,,,0.150997365,4012,26570,,,0.742039895,19716,26570,,,0.004779827,127,26570,,,0.006586376,175,26570,,,0.000150546,4,26570,,,0.032028604,851,26570,,,0.212118931,5636,26570,,,0.002021694,52,25721,0,0.008186206,0.533835152,14184,26570,,,0.312784502,8864,28339,, -28,085,28085,MS,Lincoln County,2024,1,13554.83425,807,95739,12124.27013,14985.39838,0,,,,2,,,,2,18081.02994,15198.2592,20963.80068,,,,,2,11829.426,10166.05558,13492.79642,,,,,2,,0.213,,,0.182,0.244,4.012330769,,,3.204344774,4.876323981,5.003183967,,,4.032101197,6.020551162,0.113267467,321,2834,0.101599234,0.124935699,0,,,,,,,0.173333333,0.148602368,0.198064299,,,,0.085820896,0.073145783,0.098496008,,,,,,,0.201,,,0.163,0.24,0.418,,,0.351,0.489,6.8,0.073723918,0.156,,,0.311,,,0.263,0.366,0.45821755,15995,34907,,,0.142350298,,,0.112298076,0.174241292,0.127659575,6,47,0.063760496,0.208951463,578.1,202,34943,,,31.89154293,247,7745,27.91429078,35.86879509,,,,,,,44.63913225,36.18089376,53.09737073,,,,26.8977884,22.36040206,31.43517475,,,,,,,0.148219373,4162,28080,0.127964054,0.168474692,0.000400653,14,34943,,,2495.928571,0.000432065,15,34717,,,2314.466667,0.001324999,46,34717,,,754.7173913,2498,,,,,,,2250,,2356,0.35,,,,,,,0.41,,0.34,0.44,,,,,,,0.38,,0.46,0.873383824,20873,23899,0.849311529,0.897456118,0.611201867,5238,8570,0.52402119,0.698382544,0.037104623,549,14796,,,0.276,2147,,0.198553192,0.353446809,,,,,,,0.412355212,0.326027141,0.498683284,,,,0.248045348,0.177977025,0.318113671,6.5169227,106480,16339,5.326542772,7.707302629,0.296083811,2374,8018,0.224811102,0.367356521,15.7399193,55,34943,,,107.2361059,184,171584,91.74122673,122.7309851,,,,,,,122.3063483,93.98355619,156.4829495,,,,104.2019434,85.55785009,122.8460366,,,,8.8,,,,,0,,,,,0.166857143,2190,13125,0.124224692,0.209489594,0.119226214,0.083771895,0.154680533,0.039619048,0.012388556,0.066849539,0.013714286,0.002507815,0.024920756,0.880047418,11878,13497,0.842034005,0.918060831,,,,,,,0.949904883,0.91442026,0.985389505,,,,0.8711176,0.804657343,0.937577857,0.294,,13497,0.23559271,0.35240729,71.46532777,,,70.48925347,72.44140207,,,,,,,67.87937256,66.14765513,69.61108998,,,,72.80881268,71.62291425,73.99471111,,,,646.6782457,807,95739,600.0921721,693.2643192,,,,,,,877.6916186,777.5893447,977.7938924,,,,564.0559661,511.3851714,616.7267607,,,,74.56479968,26,34869,48.70820275,109.2547079,,,,,,,99.8185118,49.82904145,178.6028903,,,,63.00063001,34.44303067,105.7043521,,,,9.151707145,26,2841,5.97819895,13.40937138,,,,,,,,,,,,,,,,,,,,,,0.126,,,0.108,0.145,0.174,,,0.151,0.199,0.12,,,0.103,0.139,186.9,55,29425,,,0.156,5450,,,,0.073723918,2570.679311,34869,,,18.44087274,19,103032,11.10261003,28.79770709,,,,,,,,,,,,,24.62019725,14.34217218,39.4193208,,,,0.336,,,0.323,0.348,0.178574958,3614,20238,0.152362192,0.204787724,0.072780204,600,8244,0.050141906,0.095418502,0.001584238,55,34717,,,631.2181818,0.905605381,403.9,446,,,,,,,,3.041312403,,,,,,,2.553356808,,3.361823164,2.849730477,,,,,,,2.434069471,,3.126892258,0.190817808,,,,,-7945.134,,,,,0.677036423,35931,53071,0.584823704,0.769249142,48596,,,42332.34043,54859.65957,,,,42279,10279.17021,74278.82979,30066,18808.80851,41323.19149,16522,15515.19149,17528.80851,58837,52537.59575,65136.40426,,,,,,0.994578966,5504,5534,,,48.77470748,,,,,0.172997778,,48596,,,5.873715125,12,2043,,,22.01398927,53,240756,16.48998859,28.79483998,,,,,,,52.2696011,36.98908067,71.74411131,,,,9.291262497,5.200249088,15.32452452,,,,17.69677661,29,171584,11.75937954,25.57676945,16.90134278,,,,,,,19.1742955,9.19481999,35.26221211,,,,17.43888695,10.33538962,27.56095973,,,,35.55110034,61,171584,27.19377481,45.66687565,,,,,,,69.88934188,48.94963583,96.75630846,,,,21.7087382,14.04875075,32.04638002,,,,27.41364701,66,240756,21.20171261,34.87688051,,,,,,,17.88170564,9.521255146,30.57826124,,,,31.59029249,23.52104771,41.53540056,,,,15.40540541,,3700,,,40,17,0.645943868,16801,26010,,,0.563,,,,,28.87411404,,,,,0.754858455,9866,13070,0.72826758,0.781449329,0.132583129,1567,11819,0.096557611,0.168608647,0.80489671,10520,13070,0.768844055,0.840949365,34717,,,,,0.228936832,7948,34717,,,0.178730881,6205,34717,,,0.294841144,10236,34717,,,0.002707607,94,34717,,,0.005299997,184,34717,,,0.000518478,18,34717,,,0.013653253,474,34717,,,0.673589308,23385,34717,,,0.001643936,54,32848,0,0.005996974,0.516404067,17928,34717,,,0.709170081,24755,34907,, -28,087,28087,MS,Lowndes County,2024,1,13213.14958,1224,163372,12129.93767,14296.3615,0,,,,2,,,,2,15878.66652,14116.9696,17640.36344,,,,,2,11289.05284,9890.208884,12687.89679,,,,,2,,0.213,,,0.181,0.246,3.492070058,,,2.758567452,4.32961104,4.235797051,,,3.388981553,5.185516178,0.126490313,679,5368,0.11759805,0.135382576,0,,,,,,,0.175371712,0.160818267,0.189925157,0.118181818,0.057853032,0.178510604,0.078540262,0.068038697,0.089041826,,,,,,,0.18,,,0.145,0.218,0.412,,,0.347,0.479,6.1,0.147786359,0.151,,,0.305,,,0.258,0.354,0.596800217,35139,58879,,,0.129491444,,,0.103381175,0.159107094,0.137254902,7,51,0.074115139,0.215085382,894.2,520,58150,,,25.5904017,337,13169,22.85816561,28.32263779,,,,,,,31.89815477,27.71148024,36.0848293,,,,18.91941059,15.28321694,22.55560424,,,,,,,0.140493026,6537,46529,0.122620685,0.158365366,0.000481513,28,58150,,,2076.785714,0.000572887,33,57603,,,1745.545455,0.002794993,161,57603,,,357.7826087,2075,,,,,,,2619,,1740,0.45,,,,,,0.26,0.48,,0.43,0.37,,,,,,0.33,0.29,0.38,0.4,0.880321884,34241,38896,0.863701634,0.896942134,0.639019161,9538,14926,0.574259364,0.703778958,0.041176231,1011,24553,,,0.281,3753,,0.190446809,0.371553192,,,,,,,0.475569044,0.399722984,0.551415104,0.314903846,0.102573172,0.52723452,0.058743633,0.027284731,0.090202535,6.073764217,111077,18288,5.404525961,6.743002473,0.417550487,5748,13766,0.357224,0.477876974,13.41358556,78,58150,,,96.18992394,282,293170,84.96299177,107.4168561,,,,,,,77.93755826,62.81230063,93.0628159,,,,115.698942,98.45794376,132.9399402,,,,9.9,,,,,0,,,,,0.14495658,3255,22455,0.121433642,0.168479517,0.136878613,0.112593179,0.161164046,0.014250724,0.007972365,0.020529082,0.004676019,0.001564885,0.007787153,0.865306454,21290,24604,0.841699281,0.888913628,,,,,,,0.89369387,0.853218052,0.934169687,,,,0.875627002,0.84835687,0.902897134,0.173,,24604,0.14705944,0.19894056,72.25658453,,,71.48243184,73.03073722,,,,,,,69.97908376,68.78782832,71.1703392,,,,73.67350647,72.64029511,74.70671784,,,,615.5346679,1224,163372,579.5423202,651.5270156,,,,,,,719.9842122,660.9754424,778.992982,,,,554.0332183,506.9507563,601.1156804,,,,99.21118972,61,61485,75.88869897,127.4409237,,,,,,,112.3038811,77.77370234,156.9334173,,,,87.67123288,56.17261317,130.4478451,,,,9.650400583,53,5492,7.22881226,12.62296157,,,,,,,12.85930409,8.9054419,17.96958854,,,,,,,,,,,,,0.119,,,0.101,0.138,0.16,,,0.138,0.184,0.125,,,0.108,0.144,338.6,163,48144,,,0.151,8900,,,,0.147786359,8834.520757,59779,,,17.13756898,30,175054,11.56264582,24.46494533,,,,,,,,,,,,,23.62284442,14.62291302,36.11002704,,,,0.347,,,0.334,0.359,0.171847099,5678,33041,0.148017312,0.195676886,0.067090845,949,14145,0.046835526,0.087346164,0.002083225,120,57603,,,480.025,0.895758355,696.9,778,,,,,,,,2.828318628,,,,,,,2.532678703,,3.383744529,2.754098678,,,,,,,2.474455737,,3.281072612,0.321625969,,,,,-14411.8635,,,,,0.68431683,37608,54957,0.59769564,0.770938019,49344,,,44009.70213,54678.29787,,,,96226,19021.06383,173430.9362,32839,29475.42553,36202.57447,118404,68398.38298,168409.617,76598,71273.23404,81922.76596,,,,,,0.996914286,8723,8750,,,45.8796605,,,,,0.2057393,,49344,,,9.384775808,36,3836,,,11.39443661,47,412482,8.372203434,15.15218515,,,,,,,23.46623591,16.98263128,31.60886577,,,,,,,,,,14.62626087,43,293170,10.49605732,19.84217441,14.66725791,,,,,,,,,,,,,22.00005679,14.94797122,31.22732452,,,,21.83033735,64,293170,16.81201983,27.87685343,,,,,,,28.27146721,19.90572197,38.96849347,,,,17.3882803,11.35860199,25.47785943,,,,18.66748125,77,412482,14.73208427,23.33114863,,,,,,,18.55469816,12.84966786,25.92833089,,,,18.90287702,13.50449248,25.74035337,,,,18.70967742,,6200,,,67,49,0.614227734,27241,44350,,,0.618,,,,,38.55734727,,,,,0.618559887,14011,22651,0.595979301,0.641140473,0.149563214,3116,20834,0.12561575,0.173510678,0.848395214,19217,22651,0.832749727,0.864040702,57603,,,,,0.236827943,13642,57603,,,0.175511692,10110,57603,,,0.449941843,25918,57603,,,0.00333316,192,57603,,,0.009305071,536,57603,,,0.00079857,46,57603,,,0.024998698,1440,57603,,,0.498480982,28714,57603,,,0.002923015,160,54738,0,0.006493551,0.520250681,29968,57603,,,0.543215748,31984,58879,, -28,089,28089,MS,Madison County,2024,1,7986.692457,1479,307381,7372.687887,8600.697026,0,,,,2,,,,2,11673.33012,10511.27864,12835.38161,,9603.010714,6018.155688,14539.07363,1,5511.287193,4826.687039,6195.887348,,,,,2,,0.149,,,0.124,0.176,2.997860067,,,2.30403074,3.740646947,4.71421549,,,3.78339078,5.682308885,0.10995167,1001,9104,0.103525567,0.116377772,0,,,,0.087719298,0.057737696,0.1177009,0.171234812,0.158823218,0.183646406,0.071129707,0.05231491,0.089944504,0.070151921,0.062669592,0.077634251,,,,,,,0.126,,,0.096,0.157,0.358,,,0.293,0.428,8.2,0.04207337,0.104,,,0.212,,,0.17,0.257,0.845068487,92235,109145,,,0.165075086,,,0.132325924,0.202479083,0.304347826,21,69,0.242135795,0.367605258,601,660,109813,,,15.01524684,389,25907,13.5230925,16.50740119,,,,,,,21.18501013,18.5641256,23.80589465,70.42253521,54.89782103,88.97463665,5.481727575,4.239567709,6.974101532,,,,,,,0.109450939,9999,91356,0.096344556,0.122557322,0.001293107,142,109813,,,773.3309859,0.000773987,86,111113,,,1292.011628,0.002393959,266,111113,,,417.7180451,2660,,,,,,,4635,9135,2190,0.51,,,,,,0.41,0.5,,0.51,0.51,,,,,,0.55,0.3,0.27,0.55,0.925592637,67783,73232,0.915404383,0.935780891,0.766800749,22113,28838,0.70984058,0.823760918,0.031328509,1671,53338,,,0.139,3649,,0.091340426,0.186659575,,,,0.014563107,0,0.125454672,0.220878179,0.166771247,0.274985111,0.317854807,0.170395373,0.465314241,0.054493159,0.02940801,0.079578309,4.636797745,161189,34763,4.252848482,5.020747007,0.256709013,6830,26606,0.213975349,0.299442677,11.83830694,130,109813,,,65.26582696,348,533204,58.40854047,72.12311346,,,,,,,73.99697106,62.15498938,85.83895274,60.43391551,28.98041153,111.1401223,61.90623586,52.91219668,70.90027505,,,,10.3,,,,,0,,,,,0.118840219,4775,40180,0.098715582,0.138964857,0.099181875,0.082088223,0.116275528,0.017794923,0.010216072,0.025373774,0.008586361,0.00227649,0.014896232,0.827349237,43943,53113,0.80752684,0.847171634,,,,0.611713666,0.473694307,0.749733025,0.819987331,0.794919871,0.845054791,0.711413365,0.580075595,0.842751135,0.820607237,0.788217175,0.8529973,0.298,,53113,0.271013358,0.324986642,75.47066972,,,74.98353939,75.95780005,,,,83.63052332,80.24173741,87.01930922,71.82104152,70.96640014,72.67568291,84.17467846,70.73193781,97.61741911,77.68551311,77.10757832,78.2634479,,,,390.2259495,1479,307381,369.8136077,410.6382913,,,,,,,576.501022,534.1258663,618.8761778,372.9235476,230.8455537,570.0532564,295.2807911,272.5038186,318.0577637,,,,51.29301133,60,116975,39.14197132,66.02427306,,,,,,,69.15194568,47.60101752,97.11504216,,,,33.23072618,20.00706794,51.89389529,,,,5.703005045,52,9118,4.259276947,7.478732369,,,,,,,7.502083912,4.94392057,10.91513822,,,,4.445432318,2.715385549,6.865609669,,,,,,,0.09,,,0.076,0.106,0.139,,,0.119,0.161,0.1,,,0.085,0.116,296.2,270,91161,,,0.104,11290,,,,0.04207337,4005.511005,95203,,,12.07594843,39,322956,8.587179829,16.50821904,,,,,,,,,,,,,16.88666235,11.39336018,24.10676052,,,,0.298,,,0.285,0.313,0.128980966,8355,64777,0.112300114,0.145661817,0.065071805,1817,27923,0.047199464,0.082944145,0.001367977,152,111113,,,731.006579,0.905251858,1096.26,1211,,,,,,,,3.29745691,,,,,,3.800745977,2.955681548,2.913599725,3.74150949,3.222221718,,,,,,4.095745251,2.81274269,2.851036942,3.730124997,0.251595061,,,,,-11708.319,,,,,0.735091644,51255,69726,0.668559138,0.80162415,80641,,,72119.46809,89162.53192,,,,117950,84444.12766,151455.8723,46813,41508.48936,52117.51064,59273,56338.3617,62207.6383,109152,101724.2553,116579.7447,,,,,,0.995901385,16037,16103,,,46.31607073,,,,,0.150543768,,80641,,,7.426110204,50,6733,,,10.91963553,81,741783,8.67176681,13.57210993,,,,,,,21.60852439,16.52880897,27.75705356,,,,2.924888854,1.511332752,5.109192206,,,,10.64113158,58,533204,8.03819644,13.81839448,10.87763783,,,,,,,4.707023355,2.257200659,8.656383541,,,,14.07165755,10.09806441,19.08979239,,,,18.94209346,101,533204,15.24786832,22.6363186,,,,,,,26.14559644,19.58484588,34.19908388,,,,13.60576612,9.720158794,18.52719179,,,,12.40254899,92,741783,9.998204969,15.21062535,,,,,,,19.83733386,14.98490881,25.76042806,,,,7.799703611,5.334991496,11.01085428,,,,15.44,,12500,,,185,8,0.72978903,56212,77025,,,0.686,,,,,45.91475067,,,,,0.724740411,30571,42182,0.705792181,0.74368864,0.102788171,4258,41425,0.086405097,0.119171246,0.911668484,38456,42182,0.892882503,0.930454465,111113,,,,,0.239251933,26584,111113,,,0.155832351,17315,111113,,,0.380297535,42256,111113,,,0.002888951,321,111113,,,0.028880509,3209,111113,,,0.000764987,85,111113,,,0.032030456,3559,111113,,,0.548531675,60949,111113,,,0.007756621,796,102622,0.004607209,0.010906034,0.520398153,57823,111113,,,0.257574786,28113,109145,, -28,091,28091,MS,Marion County,2024,1,15297.44538,642,67524,13465.38152,17129.50924,0,,,,2,,,,2,18489.46572,14941.94758,22036.98386,,,,,2,14287.43103,12062.93382,16511.92823,,,,,2,,0.259,,,0.224,0.294,4.356672064,,,3.522951585,5.342722644,5.002723995,,,3.9976762,6.180644518,0.120951417,239,1976,0.10657421,0.135328624,0,,,,,,,0.171073095,0.141965953,0.200180237,,,,0.098814229,0.082369463,0.115258996,,,,,,,0.248,,,0.207,0.293,0.428,,,0.354,0.501,6.4,0.061150044,0.181,,,0.343,,,0.291,0.398,0.404893417,9896,24441,,,0.133762928,,,0.105679741,0.165885509,0.09375,3,32,0.028265387,0.194075914,627.6,153,24378,,,33.03536728,170,5146,28.06932114,38.00141341,,,,,,,33.14917127,25.29630992,42.66955437,,,,34.47154472,27.9091268,41.03396263,,,,,,,0.167519654,3175,18953,0.146072845,0.188966462,0.000369185,9,24378,,,2708.666667,0.0002079,5,24050,,,4810,0.000706861,17,24050,,,1414.705882,3870,,,,,,,5212,,3599,0.38,,,,,,,0.53,,0.35,0.34,,,,,,,0.38,,0.33,0.827776445,13804,16676,0.793882049,0.861670842,0.492623902,2972,6033,0.417190746,0.568057058,0.038199585,387,10131,,,0.335,1817,,0.234914894,0.435085106,,,,,,,0.395240559,0.251376537,0.539104581,,,,0.298384542,0.182066021,0.414703064,4.822449323,85883,17809,4.01036778,5.634530866,0.348759458,1982,5683,0.251238252,0.446280664,19.68988432,48,24378,,,122.588816,151,123176,103.0355887,142.1420433,,,,,,,110.8818979,80.2457793,149.3571888,,,,132.2866877,107.1030026,157.4703729,,,,8.8,,,,,0,,,,,0.173490276,1695,9770,0.139014503,0.20796605,0.150684932,0.112973254,0.188396609,0.021494371,0.00667076,0.036317982,0.012794268,0.002014286,0.023574251,0.845340909,7439,8800,0.804605174,0.886076645,,,,,,,0.860900757,0.786769831,0.935031683,,,,0.836556457,0.830645404,0.842467509,0.411,,8800,0.341821754,0.480178246,70.27590756,,,69.066301,71.48551412,,,,,,,67.78272424,65.60271298,69.9627355,,,,70.98487654,69.50135237,72.46840072,,,,712.9561248,642,67524,654.9927826,770.919467,,,,,,,824.7769073,711.1361875,938.417627,,,,680.6396796,611.5356639,749.7436953,,,,101.4816318,25,24635,65.67356139,149.8069076,,,,,,,121.8769043,58.44471293,224.1359664,,,,99.8003992,55.85752583,164.6055813,,,,11.77047572,24,2039,7.541565892,17.51353487,,,,,,,,,,,,,,,,,,,,,,0.145,,,0.125,0.166,0.187,,,0.162,0.214,0.141,,,0.122,0.162,341.8,70,20480,,,0.181,4450,,,,0.061150044,1656.432395,27088,,,20.4381949,15,73392,11.43910254,33.70969434,,,,,,,,,,,,,25.13773383,12.98903389,43.91056214,,,,0.358,,,0.345,0.371,0.208197208,2804,13468,0.178409974,0.237984442,0.070502851,408,5787,0.049056043,0.09194966,0.000790021,19,24050,,,1265.789474,0.894074074,241.4,270,,,,,,,,3.041453005,,,,,,,2.911718975,,3.164082806,3.215242652,,,,,,,2.985064855,,3.439548868,0.070919034,,,,,-13668.35,,,,,0.705944578,34035,48212,0.555849172,0.856039984,44129,,,38689.85106,49568.14894,,,,,,,29818,24559.95745,35076.04255,,,,46000,41055.31915,50944.68085,,,,,,0.99829303,3509,3515,,,31.56935042,,,,,0.181309343,,44129,,,7.477906186,11,1471,,,16.66762458,29,173990,11.16256977,23.93748919,,,,,,,27.22817208,15.23940122,44.90872912,,,,12.36978591,6.762677066,20.75439889,,,,10.7455979,14,123176,5.721578319,18.37529967,11.36585049,,,,,,,,,,,,,12.3885869,5.940808959,22.7830524,,,,25.16724037,31,123176,17.0999188,35.7228888,,,,,,,28.36513667,14.15977403,50.75306476,,,,23.71176478,14.27603136,37.02885793,,,,33.90999483,59,173990,25.8138592,43.7414227,,,,,,,32.6738065,19.36456849,51.63870079,,,,35.34224547,25.24901832,48.12610729,,,,,,2700,,,27,-888,0.643945003,12177,18910,,,0.555,,,,,13.80076839,,,,,0.793671721,7224,9102,0.758543344,0.828800097,0.158152889,1322,8359,0.115568561,0.200737217,0.723577236,6586,9102,0.673459309,0.773695163,24050,,,,,0.229272349,5514,24050,,,0.188690229,4538,24050,,,0.312765073,7522,24050,,,0.002869023,69,24050,,,0.004615385,111,24050,,,0.0004158,10,24050,,,0.018128898,436,24050,,,0.64989605,15630,24050,,,0.003270682,75,22931,0,0.009498256,0.514178794,12366,24050,,,0.744854957,18205,24441,, -28,093,28093,MS,Marshall County,2024,1,15823.00186,914,97052,14239.76064,17406.24309,0,,,,2,,,,2,17607.00637,15156.23037,20057.78237,,,,,2,14783.14517,12542.14875,17024.14159,,,,,2,,0.252,,,0.22,0.286,4.27481012,,,3.430335338,5.265408405,4.896952241,,,3.887006589,6.097833404,0.11502849,323,2808,0.103227325,0.126829655,0,,,,,,,0.147771697,0.128322825,0.167220568,0.071942446,0.028985962,0.11489893,0.089837997,0.074629175,0.105046819,,,,,,,0.225,,,0.187,0.268,0.443,,,0.366,0.527,6.5,0.10186543,0.153,,,0.337,,,0.288,0.394,0.35660109,12036,33752,,,0.129079602,,,0.101155707,0.161901796,0.181818182,16,88,0.129577321,0.239654735,699.8,236,33725,,,29.88194786,243,8132,26.12476928,33.63912644,,,,,,,26.71837966,22.01559226,31.42116706,20.99236641,10.47931368,37.5611422,37.23986857,30.01276755,44.46696958,,,,,,,0.146561886,3730,25450,0.127498056,0.165625716,0.000148258,5,33725,,,6745,0.000146585,5,34110,,,6822,0.000293169,10,34110,,,3411,3974,,,,,,,4259,,3807,0.33,,,,,,,0.39,,0.31,0.39,,,,,,,0.31,0.41,0.42,0.827666217,19619,23704,0.793123295,0.862209139,0.519483712,4226,8135,0.437604748,0.601362677,0.040700127,579,14226,,,0.283,1966,,0.180531915,0.385468085,,,,,,,0.403710813,0.322422223,0.484999402,0.5562249,0.192062068,0.920387731,0.160861759,0.059043373,0.262680146,4.802760256,113446,23621,4.039504895,5.566015617,0.349599313,2443,6988,0.248204237,0.450994389,7.412898443,25,33725,,,122.0137978,214,175390,105.6660425,138.3615532,,,,,,,115.1523318,93.05480565,140.9172909,,,,137.0026209,111.9625228,162.0427191,,,,8.9,,,,,1,,,,,0.145003757,1930,13310,0.115183251,0.174824262,0.125662377,0.093322921,0.158001833,0.020210368,0.007537517,0.03288322,0.002253944,0,0.004923362,0.871602082,12056,13832,0.841090489,0.902113675,,,,,,,0.860080058,0.777843247,0.942316869,,,,0.845106602,0.773419922,0.916793281,0.516,,13832,0.427420158,0.604579842,70.53402342,,,69.49880479,71.56924204,,,,,,,69.35911659,67.79040009,70.92783309,,,,71.11180631,69.66365328,72.55995934,,,,704.2656863,914,97052,655.5078777,753.023495,,,,,,,767.6344358,691.5183819,843.7504896,,,,677.4519178,609.4196707,745.4841649,,,,106.8930764,35,32743,74.45494427,148.6623931,,,,,,,112.9518072,66.94239948,178.5125519,,,,103.7421267,56.71678604,174.0616608,,,,10.51156272,30,2854,7.092107225,15.00590939,,,,,,,,,,,,,,,,,,,,,,0.137,,,0.12,0.157,0.175,,,0.152,0.203,0.144,,,0.125,0.167,281.1,81,28819,,,0.153,5210,,,,0.10186543,3783.689521,37144,,,18.21319018,19,104320,10.96553026,28.44215258,,,,,,,,,,,,,23.95687762,12.37886826,41.84784398,,,,0.372,,,0.36,0.384,0.178520058,3351,18771,0.153498781,0.203541334,0.05966961,419,7022,0.04060578,0.07873344,0.000967458,33,34110,,,1033.636364,0.889741036,223.325,251,,,,,,,,2.637231746,,,,,,,2.50243476,2.631895507,2.831796412,2.495517562,,,,,,,2.396623572,2.428164509,2.640974083,0.147049898,,,,,-23793.3015,,,,,0.720172638,36543,50742,0.622268507,0.818076769,52162,,,46522.68085,57801.31915,,,,,,,43224,37541.78723,48906.21277,40296,5254.297872,75337.70213,60308,49134.21277,71481.78723,,,,,,0.992957747,3807,3834,,,41.43979128,,,,,0.144894751,,52162,,,3.90625,8,2048,,,16.18731966,40,247107,11.56445849,22.042535,,,,,,,26.78532855,18.19933121,38.01963581,,,,,,,,,,18.5340879,34,175390,12.59301351,26.30765833,19.38536975,,,,,,,,,,,,,31.32190439,20.06853516,46.60451095,,,,29.07805462,51,175390,21.6505216,38.23227172,,,,,,,29.40059536,18.83751621,43.7457554,,,,32.16583274,21.19748646,46.79959786,,,,44.51512907,110,247107,36.19620107,52.83405708,,,,,,,41.47405711,30.5796957,54.9885827,,,,49.12881066,37.30556569,63.51038036,,,,10.60606061,,3300,,,28,7,0.572768423,15817,27615,,,0.589,,,,,18.69558493,,,,,0.77440025,9910,12797,0.745963801,0.802836699,0.133404658,1621,12151,0.100279443,0.166529873,0.779323279,9973,12797,0.740964942,0.817681616,34110,,,,,0.207270595,7070,34110,,,0.191380827,6528,34110,,,0.450688948,15373,34110,,,0.005218411,178,34110,,,0.003488713,119,34110,,,0.000703606,24,34110,,,0.046907065,1600,34110,,,0.484637936,16531,34110,,,0.011393515,364,31948,0.0040058,0.018781229,0.500351803,17067,34110,,,0.835298649,28193,33752,, -28,095,28095,MS,Monroe County,2024,1,13451.94739,824,95429,12021.92318,14881.97159,0,,,,2,,,,2,16318.02811,13473.91346,19162.14276,,,,,2,12250.55484,10580.73702,13920.37267,,,,,2,,0.23,,,0.199,0.264,4.116171475,,,3.289122021,5.072976417,5.137361821,,,4.102176452,6.291383204,0.148056537,419,2830,0.134971287,0.161141787,0,,,,,,,0.208333333,0.18197553,0.234691137,,,,0.12,0.105090723,0.134909277,,,,,,,0.212,,,0.173,0.251,0.391,,,0.317,0.467,7.4,0.03869468,0.142,,,0.323,,,0.273,0.374,0.394909304,13498,34180,,,0.138569417,,,0.108967271,0.173358758,0.232142857,13,56,0.163632583,0.305695748,906.1,307,33883,,,30.05826271,227,7552,26.14799026,33.96853517,,,,,,,29.75724354,23.44532337,37.24562763,,,,29.92731937,24.96985191,34.88478682,,,,,,,0.144546205,3851,26642,0.125482376,0.163610035,0.000501727,17,33883,,,1993.117647,0.000476517,16,33577,,,2098.5625,0.000208476,7,33577,,,4796.714286,2867,,,,,,,5214,,2336,0.38,,,,,,,0.41,,0.37,0.43,,,,,,,0.31,,0.45,0.849098053,20099,23671,0.827774582,0.870421523,0.474142281,3759,7928,0.409726013,0.538558548,0.039725324,619,15582,,,0.207,1538,,0.123595745,0.290404255,,,,,,,0.281085814,0.180007333,0.382164296,,,,0.11651512,0.060108312,0.172921927,5.063915622,104185,20574,4.537200697,5.590630547,0.272786205,2104,7713,0.192188619,0.353383792,12.39559661,42,33883,,,106.4350519,187,175694,91.17978025,121.6903235,,,,,,,78.75787579,56.76174942,106.4577685,,,,120.8346098,100.959788,140.7094315,,,,9.6,,,,,0,,,,,0.091617211,1235,13480,0.070657941,0.11257648,0.069412662,0.049591242,0.089234082,0.015875371,0.006835309,0.024915433,0.009272997,0.002777655,0.015768339,0.86562963,11686,13500,0.836757955,0.894501304,,,,,,,0.80909864,0.786766709,0.83143057,,,,0.846581362,0.820447018,0.872715707,0.307,,13500,0.256127451,0.35787255,71.88079452,,,70.89591549,72.86567356,,,,,,,70.36500329,68.39917352,72.33083305,,,,72.55290448,71.39599455,73.70981441,,,,638.9849824,824,95429,592.5992728,685.370692,,,,,,,724.0476517,633.039683,815.0556204,,,,606.1370796,551.4953979,660.7787613,,,,84.30232558,29,34400,56.45859052,121.0722019,,,,,,,125.3357207,68.5222048,210.2920423,,,,69.53780539,38.9197818,114.692035,,,,7.389162562,21,2842,4.574008087,11.29511989,,,,,,,,,,,,,,,,,,,,,,0.13,,,0.112,0.149,0.176,,,0.154,0.203,0.123,,,0.105,0.142,181.4,52,28674,,,0.142,4910,,,,0.03869468,1431.27751,36989,,,11.50990811,12,104258,5.947337479,20.10549315,,,,,,,,,,,,,,,,,,,0.332,,,0.318,0.344,0.175901358,3381,19221,0.150880081,0.200922635,0.06686345,521,7792,0.046608131,0.087118769,0.001161509,39,33577,,,860.948718,0.853846154,266.4,312,,,,,,,,3.172935019,,,,,,,3.072392255,,3.207050178,3.297702499,,,,,,,3.211427785,,3.349760884,0.375321714,,,,,-13631.25967,,,,,0.612231399,34247,55938,0.492022079,0.732440719,51754,,,47584.97872,55923.02128,,,,,,,33831,23963.08511,43698.91489,31955,17356.87234,46553.12766,61310,57760.55319,64859.44681,,,,,,0.99491202,4693,4717,,,53.23625095,,,,,0.152606562,,51754,,,7.349081365,14,1905,,,8.488483957,21,247394,5.254505358,12.97554942,,,,,,,15.93646662,8.234604854,27.83780004,,,,,,,,,,20.30265902,33,175694,13.79467179,28.81800387,18.78265621,,,,,,,,,,,,,26.05812827,17.02203453,38.18119547,,,,25.04354161,44,175694,18.19667567,33.6197857,,,,,,,24.37743774,12.97995892,41.68616096,,,,26.37938664,17.92351338,37.44343366,,,,29.50758709,73,247394,23.12923795,37.10136066,,,,,,,19.92058328,11.14939924,32.85597268,,,,34.4425444,26.08644678,44.62431124,,,,24.21052632,,3800,,,55,37,0.628285402,17259,27470,,,0.598,,,,,19.01818841,,,,,0.755779269,10135,13410,0.732825993,0.778732546,0.091390205,1157,12660,0.068173383,0.114607028,0.834079046,11185,13410,0.808504105,0.859653986,33577,,,,,0.225034994,7556,33577,,,0.202400453,6796,33577,,,0.304613277,10228,33577,,,0.003008011,101,33577,,,0.003395181,114,33577,,,0.000238258,8,33577,,,0.01649939,554,33577,,,0.662239033,22236,33577,,,0.003910129,126,32224,0,0.009632805,0.518599041,17413,33577,,,0.825131656,28203,34180,, -28,097,28097,MS,Montgomery County,2024,1,16458.5797,294,26326,13393.9756,19523.1838,0,,,,2,,,,2,18047.28175,13572.33013,22522.23338,,,,,2,15833.79935,11326.48198,20341.11672,,,,,2,,0.267,,,0.232,0.308,4.375675261,,,3.498499151,5.350799618,5.31099161,,,4.257911354,6.533544769,0.122334456,109,891,0.100818723,0.143850188,0,,,,,,,0.158562368,0.125644134,0.191480602,,,,0.07518797,0.049313555,0.101062385,,,,,,,0.238,,,0.198,0.285,0.452,,,0.375,0.533,6.1,0.100009765,0.176,,,0.356,,,0.303,0.411,0.044288332,435,9822,,,0.121279877,,,0.094839955,0.153218753,0.125,2,16,0.026484325,0.278054433,812,79,9729,,,40.6710727,80,1967,32.24963121,50.61867055,,,,,,,53.62776025,39.92938995,70.51060082,,,,29.5728368,19.4886858,43.02692491,,,,,,,0.15469538,1135,7337,0.133248571,0.176142188,0.000513927,5,9729,,,1945.8,0.000314795,3,9530,,,3176.666667,0.000314795,3,9530,,,3176.666667,3929,,,,,,,4879,,3293,0.42,,,,,,,0.48,,0.39,0.21,,,,,,,0.2,,0.21,0.756478999,5079,6714,0.708427947,0.804530051,0.525352113,1119,2130,0.401372675,0.64933155,0.042575019,166,3899,,,0.333,708,,0.210276596,0.455723404,,,,,,,0.5,0.369111274,0.630888726,,,,0.153361345,0.029894029,0.276828661,5.389369759,79698,14788,3.532909103,7.245830415,0.52631579,1170,2223,0.382570919,0.67006066,12.3342584,12,9729,,,99.26865339,49,49361,73.43949626,131.2384243,,,,,,,54.63734463,28.23191326,95.44044551,,,,139.5944007,97.77020209,193.2574915,,,,9,,,,,0,,,,,0.16838488,735,4365,0.118419704,0.218350056,0.126426077,0.077377815,0.175474339,0.042382589,0.019323885,0.065441293,0.011454754,0,0.025076836,0.779846336,2639,3384,0.695170026,0.864522645,,,,,,,0.775577558,0.57376668,0.977388435,,,,0.732066217,0.606100311,0.858032123,0.43,,3384,0.323670005,0.536329995,69.84115611,,,67.90348161,71.7788306,,,,,,,67.76053901,65.21167656,70.30940145,,,,70.99815201,68.03211418,73.96418983,,,,771.3567575,294,26326,674.7276006,867.9859144,,,,,,,921.496628,762.096901,1080.896355,,,,683.60544,557.5372319,809.6736481,,,,125.3656498,12,9572,64.77826064,218.9885609,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.145,,,0.125,0.166,0.187,,,0.162,0.212,0.152,,,0.132,0.174,305,25,8197,,,0.176,1750,,,,0.100009765,1092.606682,10925,,,,,,,,,,,,,,,,,,,,,,,,,,0.366,,,0.352,0.38,0.187476136,982,5238,0.160071881,0.214880391,0.075488859,166,2199,0.051659071,0.099318646,0.001259182,12,9530,,,794.1666667,0.875,65.625,75,,,,,,,,2.644603072,,,,,,,2.490307371,,2.927651381,2.887069183,,,,,,,2.774354159,,3.228962738,0.00624043,,,,,,,,,,0.685315171,29583,43167,0.494343671,0.876286672,42195,,,35709.7234,48680.2766,,,,,,,25265,20015.29787,30514.70213,,,,49963,40193.97872,59732.02128,,,,,,1,1176,1176,,,28.01988959,,,,,0.161583126,,42195,,,13.2231405,8,605,,,24.3902439,17,69700,14.20821588,39.05114321,,,,,,,38.49979146,19.89340405,67.25138775,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,34.44014505,17,49361,20.06265365,55.1420085,,,,,,,,,,,,,42.65384466,21.29264558,76.31951031,,,,20.08608321,14,69700,10.9812486,33.70103461,,,,,,,,,,,,,30.23722477,15.09431366,54.1027475,,,,30,,1000,,,20,10,0.665573771,5075,7625,,,0.519,,,,,8.095560217,,,,,0.666318538,2552,3830,0.610678882,0.721958193,0.211340206,738,3492,0.133275947,0.289404466,0.719321149,2755,3830,0.66358132,0.775060978,9530,,,,,0.226128017,2155,9530,,,0.228016789,2173,9530,,,0.437145855,4166,9530,,,0.003882476,37,9530,,,0.006715635,64,9530,,,0.000314795,3,9530,,,0.019517314,186,9530,,,0.52339979,4988,9530,,,0,0,9407,0,0.010132789,0.519622246,4952,9530,,,1,9822,9822,, -28,099,28099,MS,Neshoba County,2024,1,20105.21954,844,81435,18206.60745,22003.83164,0,53026.96634,45944.43994,60109.49274,,,,,2,21009.07385,16772.41434,25245.73337,,,,,2,11986.84594,10006.74299,13966.94888,,,,,2,,0.264,,,0.233,0.301,4.681748936,,,3.78744937,5.677785305,5.468507991,,,4.42498503,6.614309594,0.086081794,261,3032,0.076097881,0.096065707,0,0.061904762,0.045607977,0.078201546,,,,0.136363636,0.110607624,0.162119649,,,,0.078376487,0.064441402,0.092311572,,,,,,,0.257,,,0.217,0.302,0.436,,,0.364,0.511,6.6,0.020099453,0.19,,,0.363,,,0.312,0.419,0.540310104,15716,29087,,,0.136216719,,,0.107227915,0.167075441,0.196721312,12,61,0.132887976,0.267513702,796.7,231,28993,,,42.63771186,322,7552,37.98054257,47.29488116,73.87706856,60.92584741,86.8282897,,,,37.55605381,29.10542586,47.69486078,,,,31.88879804,26.11048201,37.66711406,,,,57.80346821,27.7190098,106.3026361,0.172345571,3920,22745,0.149707273,0.194983868,0.000551857,16,28993,,,1812.0625,0.000592892,17,28673,,,1686.647059,0.001360165,39,28673,,,735.2051282,3871,,,,,9870,,3880,,3085,0.38,,,,,0.07,,0.37,,0.41,0.2,,,,,0.32,0.25,0.18,,0.19,0.82314086,14954,18167,0.796893712,0.849388008,0.537174171,3627,6752,0.455791508,0.618556833,0.043768997,432,9870,,,0.323,2523,,0.233638298,0.412361702,0.514184397,0.374214611,0.654154183,,,,0.664702995,0.566551536,0.762854454,,,,0.234567901,0.16653194,0.302603863,5.367684888,100161,18660,4.721290142,6.014079633,0.394136808,3146,7982,0.30386612,0.484407496,11.0371469,32,28993,,,118.8178653,173,145601,101.1120974,136.5236331,165.4054501,118.1680786,225.2352767,,,,107.2473188,73.82411951,150.6151098,,,,113.8952164,92.25549095,139.0855531,,,,9.6,,,,,0,,,,,0.158170557,1660,10495,0.125236742,0.191104373,0.088062622,0.062134405,0.113990839,0.061934254,0.040865116,0.083003393,0.017151024,0.001398909,0.03290314,0.784335561,8452,10776,0.731687665,0.836983456,0.728777363,0.621308137,0.836246588,,,,0.783077561,0.707146058,0.859009064,,,,0.847786811,0.792256057,0.903317565,0.32,,10776,0.262858178,0.377141822,66.9349651,,,65.81960004,68.05033016,52.22364046,50.17804536,54.26923556,,,,67.43111564,64.7140769,70.14815438,,,,72.12824937,70.74246957,73.51402916,,,,894.8337052,844,81435,832.0188196,957.6485907,2607.831613,2288.544033,2927.119192,,,,887.3477166,748.0406003,1026.654833,,,,592.497858,530.3495737,654.6461423,,,,104.6409684,37,35359,73.67689858,144.233791,164.7446458,87.71958549,281.7183617,,,,148.5148515,76.73979095,259.4255575,,,,72.75813982,37.59519256,127.093828,,,,10.23778071,31,3028,6.95607529,14.53171252,,,,,,,,,,,,,,,,,,,,,,0.15,,,0.131,0.172,0.192,,,0.168,0.221,0.145,,,0.126,0.166,226.3,53,23416,,,0.19,5530,,,,0.020099453,596.47138,29676,,,11.48013363,10,87107,5.505170303,21.11237448,,,,,,,,,,,,,,,,,,,0.333,,,0.322,0.344,0.225626192,3432,15211,0.194647468,0.256604915,0.068247761,541,7927,0.046800952,0.089694569,0.001569421,45,28673,,,637.1777778,0.874658385,281.64,322,,,,,,,,3.12287288,,,,,,,2.76669824,,3.37519336,3.31354797,,,,,,,2.759314064,,3.606910014,0.153428761,,,,,-17792.2095,,,,,0.781879778,36004,46048,0.620993286,0.94276627,50331,,,46463.42553,54198.57447,52123,30533.21277,73712.78723,38214,15833.06383,60594.93617,28011,13430.74468,42591.25532,,,,56099,51490.31915,60707.68085,,,,,,0.997702323,3908,3917,,,41.78675538,,,,,0.152907751,,50331,,,5.774783446,12,2078,,,12.22691192,25,204467,7.912612719,18.04933397,,,,,,,27.73540424,14.3312881,48.44816958,,,,,,,,,,19.03225598,26,145601,12.31667258,28.09536428,17.85702021,,,,,,,,,,,,,20.81717053,11.65121232,34.33475701,,,,24.72510491,36,145601,17.31715951,34.22996716,,,,,,,45.49886253,24.87465153,76.33936016,,,,23.72817008,14.49378273,36.64623422,,,,37.65888872,77,204467,29.71980606,47.06714947,68.29181389,43.29115187,102.4712518,,,,27.73540424,14.3312881,48.44816958,,,,32.81557646,23.33508279,44.8599733,,,,,,3800,,,51,-888,0.560086145,11703,20895,,,0.547,,,,,20.50673325,,,,,0.720462791,7348,10199,0.682410292,0.758515289,0.10753964,997,9271,0.074257513,0.140821766,0.755858418,7709,10199,0.718531865,0.79318497,28673,,,,,0.277124821,7946,28673,,,0.162138597,4649,28673,,,0.212220556,6085,28673,,,0.17322917,4967,28673,,,0.005091898,146,28673,,,0.000592892,17,28673,,,0.02538974,728,28673,,,0.574163848,16463,28673,,,0.00513221,138,26889,0,0.010444776,0.523802881,15019,28673,,,0.755423385,21973,29087,, -28,101,28101,MS,Newton County,2024,1,15079.74076,470,58468,13130.11212,17029.3694,0,43080.90014,29834.77571,60201.23984,,,,,2,17027.51999,13487.90985,20567.13012,,,,,2,12291.07164,9912.805395,14669.33789,,,,,2,,0.24,,,0.208,0.274,4.170286771,,,3.286918883,5.075247205,5.217397313,,,4.127368097,6.313922917,0.124507874,253,2032,0.11015236,0.138863388,0,0.051724138,0.023225372,0.080222904,,,,0.195876289,0.166024281,0.225728297,,,,0.093422307,0.075810816,0.111033798,,,,,,,0.216,,,0.176,0.255,0.427,,,0.348,0.504,6.1,0.089903679,0.177,,,0.327,,,0.276,0.381,0.638250904,13589,21291,,,0.138122056,,,0.108767039,0.172655249,0.375,9,24,0.267627328,0.478430601,588.9,124,21056,,,29.82177519,169,5667,25.32556908,34.3179813,106.5573771,75.77271172,145.6674423,,,,26.5,19.85031847,34.66265247,,,,23.94227616,18.76692257,30.10381771,,,,,,,0.166111549,2743,16513,0.14466474,0.187558357,0.000142477,3,21056,,,7018.666667,0.000237767,5,21029,,,4205.8,0.000332874,7,21029,,,3004.142857,3640,,,,,,,5256,,3441,0.42,,,,,,,0.42,,0.43,0.28,,,,,0.32,,0.22,,0.29,0.857394108,11700,13646,0.827853789,0.886934427,0.635626689,3058,4811,0.54732685,0.723926528,0.042814221,342,7988,,,0.258,1300,,0.16506383,0.35093617,,,,,,,0.476576056,0.344764444,0.608387667,0.769230769,0.430346641,1,0.210287443,0.14379425,0.276780636,4.839960286,102370,21151,4.019319967,5.660600604,0.393915604,2007,5095,0.298377873,0.489453334,15.6724924,33,21056,,,107.9872689,114,105568,88.16395747,127.8105803,199.6732619,99.67617294,357.270621,,,,107.3191672,74.75173214,149.2549823,,,,103.625316,80.14381187,131.8368097,,,,9.4,,,,,0,,,,,0.107886435,855,7925,0.078559528,0.137213343,0.076673164,0.050703163,0.102643166,0.030914827,0.014429152,0.047400501,0.010725552,0.000382091,0.021069013,0.841618223,7094,8429,0.810631874,0.872604572,,,,,,,0.820754717,0.73365326,0.907856174,,,,0.862485616,0.823496773,0.901474459,0.461,,8429,0.387803365,0.534196635,70.53667542,,,69.22139087,71.85195998,,,,,,,68.44037823,66.1292938,70.75146267,,,,72.64764059,70.966828,74.32845317,,,,664.3418531,470,58468,602.1058691,726.577837,1823.939624,1308.890565,2474.380053,,,,799.1885158,675.2845437,923.0924879,,,,545.3473297,474.5175282,616.1771313,,,,95.59434747,23,24060,60.59861611,143.4384576,,,,,,,,,,,,,117.9152582,65.99627492,194.4832865,,,,10.44256589,21,2011,6.464112871,15.96257123,,,,,,,,,,,,,,,,,,,,,,0.135,,,0.117,0.154,0.179,,,0.155,0.204,0.135,,,0.116,0.155,269,47,17475,,,0.177,3800,,,,0.089903679,1952.707901,21720,,,,,,,,,,,,,,,,,,,,,,,,,,0.324,,,0.312,0.335,0.205905273,2378,11549,0.177309529,0.234501018,0.07658518,401,5236,0.052755392,0.100414967,0.001046174,22,21029,,,955.8636364,0.886641221,232.3,262,,,,,,,,3.135893629,,,,,,,2.876887104,,3.317897292,3.200852834,,,,,,,2.903818308,,3.435445783,0.253381074,,,,,-17501.965,,,,,0.790765428,35828,45308,0.679997048,0.901533808,47320,,,40779.91489,53860.08511,29200,334.9787234,58065.02128,,,,35720,27504.68085,43935.31915,,,,61006,54975.87234,67036.12766,,,,,,0.995684695,3461,3476,,,35.25674517,,,,,0.166462384,,47320,,,6.711409396,9,1341,,,13.43426948,20,148873,8.20600081,20.74813962,,,,,,,24.05054988,12.00594785,43.03307719,,,,,,,,,,15.73600349,16,105568,8.8073217,25.9541447,15.15610791,,,,,,,,,,,,,13.51579209,6.180280793,25.65718348,,,,19.89239163,21,105568,12.31370395,30.40763369,,,,,,,,,,,,,20.41104709,10.86802294,34.90351214,,,,41.64623538,62,148873,31.92992986,53.38859422,,,,,,,50.28751339,31.87796978,75.45596103,,,,33.20016379,22.40001109,47.39529819,,,,,,2500,,,7,-888,0.639635678,10183,15920,,,0.577,,,,,5.920560782,,,,,0.796132884,6135,7706,0.761406906,0.830858861,0.073840549,527,7137,0.044033481,0.103647618,0.691149753,5326,7706,0.644281941,0.738017566,21029,,,,,0.243663512,5124,21029,,,0.176137715,3704,21029,,,0.311712397,6555,21029,,,0.056350754,1185,21029,,,0.005040658,106,21029,,,0.000380427,8,21029,,,0.022397641,471,21029,,,0.596414475,12542,21029,,,0.00015064,3,19915,0,0.006189788,0.518331828,10900,21029,,,1,21291,21291,, -28,103,28103,MS,Noxubee County,2024,1,15104.83517,235,28578,12321.20561,17888.46474,0,,,,2,,,,2,17563.73433,14091.19434,21036.27431,,,,,2,8964.921581,4773.443175,15330.28893,1,,,,2,,0.294,,,0.255,0.335,4.456048508,,,3.56628435,5.478264643,5.109597889,,,4.063710731,6.338538847,0.130671506,144,1102,0.110771754,0.150571259,0,,,,,,,0.159846547,0.134161307,0.185531788,,,,0.055363322,0.028996935,0.081729709,,,,,,,0.245,,,0.2,0.29,0.478,,,0.401,0.562,6.2,0.072178948,0.181,,,0.385,,,0.327,0.444,0.453962081,4669,10285,,,0.117747217,,,0.092555389,0.149269312,0.037037037,1,27,0.001422895,0.141831346,1254.6,127,10123,,,36.17686467,81,2239,28.72965252,44.96453961,,,,,,,41.1036036,32.21866381,51.68161046,,,,,,,,,,,,,0.16774112,1327,7911,0.143911333,0.191570907,9.87849E-05,1,10123,,,10123,0.0004004,4,9990,,,2497.5,0.002102102,21,9990,,,475.7142857,3362,,,,,,,4253,,1464,0.38,,,,,,,0.34,,0.42,0.35,,,,,,,0.3,,0.4,0.810899835,5416,6679,0.764782477,0.857017194,0.43507109,918,2110,0.328445823,0.541696357,0.059705882,203,3400,,,0.405,1015,,0.262021277,0.547978723,,,,,,,0.444666002,0.345267201,0.544064803,,,,,,,5.227615589,74849,14318,3.579779134,6.875452044,0.642464678,1637,2548,0.529422664,0.755506693,11.85419342,12,10123,,,117.1882504,61,52053,89.63972597,150.5332102,,,,,,,117.6093232,85.45511429,157.8850269,,,,120.4003311,68.81919222,195.5225946,,,,9.3,,,,,0,,,,,0.171855542,690,4015,0.115670019,0.228041065,0.129770992,0.076522088,0.183019897,0.03486924,0.009817093,0.059921388,0.01743462,0,0.037080554,0.87750792,3324,3788,0.836219116,0.918796723,,,,,,,0.924844721,0.792698254,1,,,,0.953846154,0.888072188,1,0.45,,3788,0.330535736,0.569464264,71.06476244,,,69.23199057,72.8975343,,,,,,,68.81673399,66.66524373,70.96822424,,,,76.66973244,73.05607716,80.28338772,,,,674.665591,235,28578,583.1744892,766.1566929,,,,,,,789.7678036,673.5645615,905.9710457,,,,396.860176,267.7598942,566.5425779,,,,90.30160737,10,11074,43.30313072,166.0678711,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.149,,,0.128,0.171,0.185,,,0.16,0.21,0.17,,,0.148,0.194,421.2,35,8310,,,0.181,1880,,,,0.072178948,833.3059557,11545,,,,,,,,,,,,,,,,,,,,,,,,,,0.395,,,0.379,0.41,0.211925287,1180,5568,0.179755075,0.2440955,0.064581641,159,2462,0.043134832,0.08602845,0.001301301,13,9990,,,768.4615385,0.875,83.125,95,,,,,,,,2.662364654,,,,,,,2.640657875,,,2.358484969,,,,,,,2.320337797,,,0.02246149,,,,,-34871.09,,,,,0.69140579,35205,50918,0.537624539,0.845187041,36608,,,31235.57447,41980.42553,,,,,,,32632,23164.42553,42099.57447,,,,54852,33626.80851,76077.19149,,,,,,1,1391,1391,,,25.77920967,,,,,0.209271198,,36608,,,6.613756614,5,756,,,18.88472226,14,74134,10.32445339,31.68535506,,,,,,,22.58355917,11.66925457,39.44893302,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,30.73790175,16,52053,17.56936671,49.91642671,,,,,,,32.07526997,16.57376005,56.02904161,,,,,,,,,,40.46726199,30,74134,27.30309173,57.76953273,,,,,,,37.63926528,22.99104108,58.1307925,,,,,,,,,,,,1100,,,8,-888,0.677108434,5339,7885,,,0.442,,,,,10.56438818,,,,,0.746482684,2759,3696,0.675113093,0.817852275,0.15902233,527,3314,0.089156607,0.228888052,0.695616883,2571,3696,0.628759604,0.762474162,9990,,,,,0.253753754,2535,9990,,,0.17947948,1793,9990,,,0.71951952,7188,9990,,,0.003303303,33,9990,,,0.002802803,28,9990,,,0.0002002,2,9990,,,0.015415415,154,9990,,,0.252852853,2526,9990,,,0.00547426,52,9499,,,0.524124124,5236,9990,,,1,10285,10285,, -28,105,28105,MS,Oktibbeha County,2024,1,10179.46955,677,143349,9097.374947,11261.56415,0,,,,2,,,,2,13975.03792,12070.70773,15879.36811,,,,,2,7709.887785,6350.38982,9069.385751,,,,,2,,0.214,,,0.184,0.245,3.781512796,,,2.997539756,4.604019428,4.762631933,,,3.837484651,5.748283272,0.11658238,438,3757,0.10632031,0.126844449,0,,,,0.075675676,0.03756378,0.113787571,0.185396463,0.167204106,0.203588821,,,,0.053675613,0.043005741,0.064345484,,,,,,,0.176,,,0.141,0.211,0.449,,,0.383,0.513,5.5,0.194059667,0.156,,,0.285,,,0.239,0.332,0.752838495,38988,51788,,,0.1688778,,,0.13533871,0.205400729,0.425,17,40,0.346546866,0.499712189,885.4,459,51842,,,10.02465959,187,18654,8.587831195,11.46148799,,,,,,,20.02338498,16.67038705,23.3763829,,,,4.409832989,3.240179411,5.864143023,,,,,,,0.141036215,5643,40011,0.117206428,0.164866002,0.000405077,21,51842,,,2468.666667,0.000408346,21,51427,,,2448.904762,0.002255625,116,51427,,,443.3362069,1544,,,,,,,2231,,1284,0.43,,,,,,0.27,0.42,,0.44,0.48,,,,,,0.56,0.36,,0.51,0.909362779,23718,26082,0.88977718,0.928948378,0.767688881,8962,11674,0.689255034,0.846122729,0.040917938,904,22093,,,0.252,2188,,0.167404255,0.336595745,,,,,,,0.364052953,0.252201121,0.475904785,,,,0.100506532,0.046474287,0.154538777,8.344798722,109659,13141,6.771753956,9.917843487,0.377184083,3346,8871,0.300527456,0.45384071,10.41626481,54,51842,,,62.24662432,156,250616,52.47853603,72.01471261,,,,,,,62.94541885,47.91696926,81.19500423,,,,65.89108841,53.18261235,80.72103486,,,,9.7,,,,,0,,,,,0.219893899,4145,18850,0.187907121,0.251880678,0.216052184,0.179047546,0.253056822,0.016976127,0.005856701,0.028095554,0.001856764,0,0.003968313,0.817364995,17830,21814,0.78858482,0.84614517,,,,,,,0.819117647,0.763841029,0.874394266,,,,0.825549659,0.799398882,0.851700436,0.201,,21814,0.162946881,0.239053119,75.52345162,,,74.57232703,76.47457621,,,,,,,71.42258157,69.97231616,72.87284698,,,,78.26526961,76.99026789,79.54027134,,,,526.2355301,677,143349,484.9468731,567.5241871,,,,,,,738.5453625,662.1645228,814.9262022,,,,395.6592004,346.5390664,444.7793344,,,,63.37010119,32,50497,43.34510231,89.45967499,,,,,,,83.56933934,49.52848684,132.0755851,,,,47.35595896,24.46951503,82.7213301,,,,10.79231377,41,3799,7.744750689,14.64099225,,,,,,,17.55379388,11.92695129,24.91620923,,,,,,,,,,,,,0.119,,,0.102,0.137,0.16,,,0.138,0.183,0.132,,,0.113,0.151,161,73,45331,,,0.156,8020,,,,0.194059667,9251.018387,47671,,,,,,,,,,,,,,,,,,,,,,,,,,0.334,,,0.321,0.347,0.164271047,5120,31168,0.133292324,0.195249771,0.064477933,599,9290,0.041839635,0.087116231,0.001011142,52,51427,,,988.9807692,0.86,298.42,347,,,,,,,,2.898475969,,,,,,,2.620728645,,3.617808156,2.837464462,,,,,,,2.593578085,,3.392626094,0.010365025,,,,,,,,,,0.764741932,39931,52215,0.639237969,0.890245896,47284,,,40684.34043,53883.65957,,,,24292,3530.297872,45053.70213,34470,28172.97872,40767.02128,32266,10014.93617,54517.06383,49470,41609.74468,57330.25532,,,,,,0.995716034,4881,4902,,,22.60439863,,,,,0.227751459,,47284,,,7.71307366,20,2593,,,6.566756793,23,350249,4.162760504,9.853359437,,,,,,,15.31862745,9.357015614,23.65837768,,,,,,,,,,12.88062487,29,250616,8.252859401,19.16534881,11.57148785,,,,,,,,,,,,,16.77408617,9.587839583,27.24006504,,,,15.16263926,38,250616,10.72998597,20.81190703,,,,,,,20.27055861,12.20420045,31.65498823,,,,12.75311389,7.558303539,20.15541814,,,,14.56106941,51,350249,10.84167259,19.14511715,,,,,,,22.97794118,15.50312042,32.80243979,,,,10.12166238,6.182574336,15.63208663,,,,,,3800,,,17,-888,0.502020074,19757,39355,,,0.506,,,,,63.57503973,,,,,0.474935034,10052,21165,0.451945925,0.497924144,0.219490459,4187,19076,0.178014134,0.260966784,0.806803685,17076,21165,0.780251977,0.833355393,51427,,,,,0.171252455,8807,51427,,,0.12337877,6345,51427,,,0.371186342,19089,51427,,,0.002897311,149,51427,,,0.033445466,1720,51427,,,0.000894472,46,51427,,,0.018317226,942,51427,,,0.562544967,28930,51427,,,0.007779074,380,48849,0.002567066,0.012991083,0.497345752,25577,51427,,,0.366416931,18976,51788,, -28,107,28107,MS,Panola County,2024,1,13164.14246,762,94428,11762.64231,14565.64261,0,,,,2,,,,2,14967.93176,12923.68094,17012.18258,,,,,2,11501.91688,9492.050819,13511.78294,,,,,2,,0.267,,,0.232,0.306,4.302148916,,,3.402836728,5.212191285,4.836425766,,,3.818600567,5.901997637,0.123250152,405,3286,0.112010474,0.13448983,0,,,,,,,0.152996845,0.136818483,0.169175208,,,,0.086687307,0.071344235,0.102030378,,,,,,,0.233,,,0.194,0.277,0.419,,,0.346,0.493,6.2,0.106212661,0.165,,,0.349,,,0.295,0.408,0.339105035,11261,33208,,,0.131510266,,,0.103995545,0.165216697,0.295774648,21,71,0.234426663,0.358439747,992.4,326,32851,,,46.12159329,352,7632,41.30334649,50.93984009,,,,,,,51.88576412,45.2937852,58.47774303,,,,39.7810219,32.31277345,47.24927035,,,,,,,0.16013146,4239,26472,0.138684651,0.181578268,0.000213083,7,32851,,,4693,0.000459263,15,32661,,,2177.4,0.001040997,34,32661,,,960.6176471,3628,,,,,,,3696,,3510,0.32,,,,,,,0.36,,0.31,0.45,,,,,,,0.34,,0.49,0.818703411,18122,22135,0.782720406,0.854686416,0.557474835,4486,8047,0.467753403,0.647196268,0.046703965,576,12333,,,0.333,2593,,0.226957447,0.439042553,,,,,,,0.347045455,0.255286032,0.438804878,0.052631579,0,0.723022065,0.099709584,0.035545824,0.163873344,5.259726604,100040,19020,4.191709854,6.327743353,0.425362141,3465,8146,0.329549812,0.521174469,12.4805942,41,32851,,,115.3416182,195,169063,99.15243993,131.5307965,,,,,,,95.01977599,75.34477283,118.2603363,,,,144.6131598,118.0664036,171.159916,,,,9,,,,,1,,,,,0.117766087,1455,12355,0.084486866,0.151045307,0.095850622,0.06563425,0.126066995,0.016592473,0.00560925,0.027575695,0.014973695,0.001462455,0.028484935,0.872356952,10108,11587,0.841725708,0.902988196,,,,,,,0.846663815,0.796027274,0.897300357,,,,0.862555721,0.802363261,0.92274818,0.434,,11587,0.360813063,0.507186937,71.67801279,,,70.70548875,72.65053683,,,,,,,69.93571731,68.5567354,71.31469923,,,,72.98756833,71.57079525,74.40434141,,,,632.651659,762,94428,585.6088368,679.6944811,,,,,,,707.8312566,634.4267064,781.2358067,,,,575.9653289,512.6003794,639.3302785,,,,95.80379383,35,36533,66.73085266,133.2398855,,,,,,,114.3837575,73.28783174,170.1939643,,,,80.55657268,40.21355084,144.1379606,,,,9.00090009,30,3333,6.072869493,12.84934455,,,,,,,12.20132181,7.81761711,18.15459969,,,,,,,,,,,,,0.143,,,0.124,0.165,0.181,,,0.156,0.207,0.149,,,0.128,0.172,284.5,77,27068,,,0.165,5500,,,,0.106212661,3686.32282,34707,,,,,,,,,,,,,,,,,,,,,,,,,,0.374,,,0.36,0.387,0.198611111,3718,18720,0.170015366,0.227206856,0.07002081,572,8169,0.048574002,0.091467619,0.001194085,39,32661,,,837.4615385,0.869652406,325.25,374,,,,,,,,2.943931558,,,,,,,2.731134224,,3.316659422,3.066616999,,,,,,,2.933786279,,3.274339701,0.145974463,,,,,-28308.495,,,,,0.738001471,34106,46214,0.681156652,0.794846291,40595,,,35694.40426,45495.59575,,,,,,,36555,26121.12766,46988.87234,,,,57313,46520.48936,68105.51064,,,,,,0.996190822,5492,5513,,,37.29386941,,,,,0.19827565,,40595,,,5.291005291,12,2268,,,17.69210679,42,237394,12.7509144,23.91458873,,,,,,,27.93485254,19.22906712,39.23091903,,,,,,,,,,8.225656809,14,169063,4.379815818,14.06612366,8.280936692,,,,,,,,,,,,,,,,,,,22.47682817,38,169063,15.90594136,30.85120276,,,,,,,32.0691744,21.133788,46.65896505,,,,13.95390138,6.965737295,24.96738404,,,,40.86034188,97,237394,33.1349847,49.84615194,,,,,,,37.24647005,27.06334216,50.00164755,,,,47.69875983,35.72964427,62.39115227,,,,19.45945946,,3700,,,32,40,0.617667984,15627,25300,,,0.56,,,,,20.30323374,,,,,0.709167205,8788,12392,0.663392821,0.754941589,0.108818342,1234,11340,0.077894987,0.139741698,0.713847644,8846,12392,0.661429222,0.766266066,32661,,,,,0.24255228,7922,32661,,,0.177643061,5802,32661,,,0.494014268,16135,32661,,,0.003459784,113,32661,,,0.002081994,68,32661,,,9.18527E-05,3,32661,,,0.020207587,660,32661,,,0.469214047,15325,32661,,,0.000258849,8,30906,0,0.004742337,0.518722636,16942,32661,,,0.811099735,26935,33208,, -28,109,28109,MS,Pearl River County,2024,1,14199.7787,1343,155105,13005.7043,15393.85311,0,,,,2,,,,2,19195.71555,15134.07319,23257.35792,,,,,2,14040.59418,12728.32567,15352.86269,,,,,2,,0.196,,,0.165,0.227,3.843026058,,,3.049398463,4.732209393,4.737273107,,,3.776258221,5.797373559,0.099264706,432,4352,0.090380724,0.108148687,0,,,,,,,0.170556553,0.139320506,0.2017926,,,,0.090450854,0.081043217,0.099858491,,,,,,,0.197,,,0.157,0.236,0.391,,,0.319,0.466,6.9,0.057191995,0.16,,,0.278,,,0.229,0.329,0.595600677,33440,56145,,,0.151645543,,,0.12102504,0.186164336,0.27027027,20,74,0.21024571,0.332489813,502.6,284,56503,,,26.05837703,333,12779,23.25951611,28.85723794,,,,,,,20.36949313,14.74150318,27.43757357,19.96007984,9.571634124,36.70729749,28.53303008,25.16675638,31.89930379,,,,,,,0.146896211,6536,44494,0.127832381,0.165960041,0.000247775,14,56503,,,4035.928571,0.000227031,13,57261,,,4404.692308,0.000611236,35,57261,,,1636.028571,3346,,,,,,,5943,,3151,0.43,,,,,,,0.46,,0.42,0.37,,,,,,0.55,0.3,0.56,0.37,0.86886646,33573,38640,0.849616678,0.888116242,0.595860483,7773,13045,0.525413369,0.666307596,0.038799727,909,23428,,,0.232,2936,,0.148595745,0.315404255,,,,,,,0.372370665,0.200884883,0.543856448,0.104918033,0,0.231058485,0.165610477,0.119218918,0.212002037,5.022310541,111204,22142,4.121705101,5.922915982,0.308621506,3909,12666,0.25084195,0.366401063,7.78719714,44,56503,,,130.3078928,363,278571,116.9026871,143.7130984,,,,,,,144.423485,106.8452893,190.9355064,,,,134.4357652,119.3728101,149.4987203,,,,8.9,,,,,0,,,,,0.124061914,2645,21320,0.099130236,0.148993592,0.090448902,0.069919073,0.110978731,0.023921201,0.010432181,0.037410221,0.011491557,0.0035091,0.019474015,0.77368163,17356,22433,0.740240486,0.807122773,,,,,,,0.896873286,0.800049194,0.993697377,,,,0.77076382,0.695666469,0.845861172,0.47,,22433,0.411362258,0.528637742,71.26295073,,,70.46010868,72.06579278,,,,,,,66.99926195,64.51572217,69.48280174,86.90304449,74.11071552,99.69537346,71.34786058,70.47679757,72.21892359,,,,645.9726859,1343,155105,609.1415451,682.8038267,,,,,,,844.1249859,720.2362713,968.0137006,,,,642.5176262,602.172225,682.8630274,,,,96.86509334,55,56780,72.97204468,126.0832335,,,,,,,189.9936669,106.3380131,313.3656602,,,,87.10601719,61.64140205,119.5598141,,,,7.875839704,34,4317,5.454247946,11.00569657,,,,,,,,,,,,,5.664117814,3.45979031,8.747770576,,,,,,,0.12,,,0.102,0.138,0.166,,,0.143,0.191,0.106,,,0.09,0.123,245.9,117,47576,,,0.16,8960,,,,0.057191995,3193.257841,55834,,,55.38549496,93,167914,44.70324257,67.85097313,,,,,,,64.0236395,34.08989161,109.4823734,,,,54.71457231,43.036482,68.58519019,,,,0.325,,,0.312,0.339,0.179731472,5716,31803,0.154710195,0.204752749,0.068142589,908,13325,0.04788727,0.088397908,0.000890659,51,57261,,,1122.764706,0.876753671,537.45,613,,,,,,,,3.034698778,,,,,,,2.548106837,,3.167873623,2.881901572,,,,,,,2.458000142,,2.982736543,0.109347346,,,,,-2705.759,,,,,0.705278507,36276,51435,0.603060429,0.807496585,55830,,,50235.95745,61424.04255,41663,40902.82979,42423.17021,101196,100639.5745,101752.4255,35541,25206.02128,45875.97872,46691,8290.489362,85091.51064,56587,51445.7234,61728.2766,,,,,,0.997169478,8455,8479,,,57.96928696,,,,,0.155812287,,55830,,,5.660377359,18,3180,,,8.22469877,32,389072,5.62568787,11.61082064,,,,,,,20.89034657,10.01773318,38.41809113,,,,6.605102914,4.088662808,10.09660143,,,,18.65348422,52,278571,13.75360673,24.73181383,18.66669539,,,,,,,,,,,,,21.01507136,15.26958302,28.21175242,,,,19.0256703,53,278571,14.25153262,24.88604518,,,,,,,32.42159868,16.18474525,58.01119581,,,,18.01263521,12.92617801,24.43617357,,,,27.24431468,106,389072,22.05775921,32.43087014,,,,,,,22.97938123,11.47122432,41.11646058,,,,29.88022747,24.17488836,36.52702859,,,,7.966101695,,5900,,,31,16,0.562043966,24033,42760,,,0.566,,,,,19.77901393,,,,,0.802671323,17007,21188,0.77619586,0.829146787,0.115135771,2349,20402,0.087134385,0.143137157,0.803190485,17018,21188,0.769464268,0.836916703,57261,,,,,0.225371544,12905,57261,,,0.196311626,11241,57261,,,0.118265486,6772,57261,,,0.007666649,439,57261,,,0.004732715,271,57261,,,0.000925586,53,57261,,,0.035766054,2048,57261,,,0.81645448,46751,57261,,,0.006073484,323,53182,0.002099828,0.010047139,0.50690697,29026,57261,,,0.709662481,39844,56145,, -28,111,28111,MS,Perry County,2024,1,14798.85031,318,32599,12203.94467,17393.75596,0,,,,2,,,,2,23294.58903,15716.7614,33254.47429,,,,,2,13112.05972,10415.66709,15808.45236,,,,,2,,0.238,,,0.207,0.271,4.346807555,,,3.445852868,5.32699696,5.440992755,,,4.314371155,6.663291025,0.083070452,79,951,0.065529342,0.100611563,0,,,,,,,0.173652695,0.116198743,0.231106647,,,,0.062750334,0.045382293,0.080118375,,,,,,,0.236,,,0.195,0.277,0.411,,,0.329,0.498,5.5,0.098779423,0.201,,,0.329,,,0.273,0.384,0.365215881,4204,11511,,,0.138863057,,,0.107426459,0.173219091,0.115384615,3,26,0.036426626,0.23013617,587.7,68,11571,,,38.85567891,91,2342,31.28416887,47.7061635,,,,,,,25.24271845,13.44068445,43.16581732,,,,42.17926186,33.00267469,53.11779968,,,,,,,0.155519481,1437,9240,0.132881183,0.178157778,0.000086423,1,11571,,,11571,8.79662E-05,1,11368,,,11368,0.000791696,9,11368,,,1263.111111,3869,,,,,,,2118,,4048,0.34,,,,,,,0.33,,0.34,0.37,,,,,,,0.28,,0.38,0.859356838,6654,7743,0.815550274,0.903163403,0.449811321,1192,2650,0.337923078,0.561699563,0.047954866,204,4254,,,0.273,671,,0.171723404,0.374276596,,,,,,,0.342281879,0.087796226,0.596767532,0.951149425,0.849910932,1,0.13904068,0.044465472,0.233615889,4.205783796,91623,21785,3.318139339,5.093428253,0.387210671,987,2549,0.25015661,0.524264731,7.778065854,9,11571,,,92.64094056,55,59369,69.78983471,120.584918,,,,,,,168.1862441,101.2591056,262.6436538,,,,76.0968822,53.00426665,105.832342,,,,9.2,,,,,0,,,,,0.081610446,375,4595,0.049055894,0.114164998,0.043956044,0.018170367,0.069741721,0.029379761,0.006992995,0.051766526,0.010663765,0,0.021970077,0.815206445,3238,3972,0.767610091,0.8628028,,,,,,,,,,,,,0.878504673,0.747281125,1,0.46,,3972,0.362639935,0.557360066,71.00508062,,,69.23628625,72.77387499,,,,,,,67.35851074,61.6561196,73.06090188,,,,71.80119877,69.96092606,73.64147148,,,,710.1520285,318,32599,627.4715446,792.8325124,,,,,,,890.056266,679.2066976,1145.678844,,,,674.0422045,584.6010838,763.4833253,,,,95.72709077,11,11491,47.78661881,171.2822079,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.141,,,0.122,0.16,0.185,,,0.16,0.212,0.127,,,0.109,0.146,265.6,26,9788,,,0.201,2340,,,,0.098779423,1210.047925,12250,,,,,,,,,,,,,,,,,,,,,,,,,,0.339,,,0.326,0.352,0.187472169,1263,6737,0.158876424,0.216067913,0.072623574,191,2630,0.048793787,0.096453361,0.001319493,15,11368,,,757.8666667,0.803448276,93.2,116,,,,,,,,2.695991415,,,,,,,2.237124715,,2.923618992,2.666828074,,,,,,,2.394200716,,2.770486302,0.032949381,,,,,-9997.5745,,,,,0.649960064,35805,55088,0.491381038,0.80853909,45071,,,39319.68085,50822.31915,,,,,,,31222,21139.61702,41304.38298,,,,48750,37088.89362,60411.10638,,,,,,0.988188976,1506,1524,,,22.48656119,,,,,0.160147323,,45071,,,3.401360544,2,588,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,33.3766435,28,83891,22.17853722,48.2385428,,,,,,,68.33571473,34.11294258,122.2714699,,,,26.17438298,15.24754264,41.9077227,,,,8.333333333,,1200,,,10,0,0.641300813,5916,9225,,,0.46,,,,,4.468417499,,,,,0.80076199,3573,4462,0.754083116,0.847440864,0.065773738,275,4181,0.031174469,0.100373008,0.749663828,3345,4462,0.701358996,0.79796866,11368,,,,,0.220091485,2502,11368,,,0.191326531,2175,11368,,,0.188423645,2142,11368,,,0.004838142,55,11368,,,0.001759324,20,11368,,,0.000791696,9,11368,,,0.020672062,235,11368,,,0.770672062,8761,11368,,,0,0,10936,0,0.009587698,0.509588318,5793,11368,,,1,11511,11511,, -28,113,28113,MS,Pike County,2024,1,14868.97704,971,110070,13458.80968,16279.1444,0,,,,2,,,,2,16909.97417,14926.41344,18893.53489,,,,,2,12941.88477,10821.91686,15061.85268,,,,,2,,0.268,,,0.233,0.306,4.17007019,,,3.34544792,5.07768212,5.563944629,,,4.532265,6.678455806,0.135187225,491,3632,0.124067039,0.14630741,0,,,,,,,0.157318142,0.142379213,0.172257072,,,,0.096260939,0.079955406,0.112566472,,,,,,,0.23,,,0.19,0.273,0.451,,,0.383,0.519,6,0.057048141,0.199,,,0.363,,,0.311,0.419,0.567974407,22903,40324,,,0.122186109,,,0.0965991,0.151760247,0.271186441,16,59,0.203621976,0.341406716,1063.2,425,39973,,,34.36220158,344,10011,30.73093752,37.99346564,,,,,,,39.4804307,34.3890923,44.57176909,,,,27.36122073,22.10256341,32.61987806,,,,,,,0.147266737,4604,31263,0.127011418,0.167522056,0.000375253,15,39973,,,2664.866667,0.000554939,22,39644,,,1802,0.004716981,187,39644,,,212,3536,,,,,,,5589,,2551,0.34,,,,,,,0.29,,0.36,0.33,,,,,,0.31,0.23,,0.37,0.827064185,21416,25894,0.802593142,0.851535227,0.497435349,4655,9358,0.429415838,0.565454861,0.048369837,678,14017,,,0.363,3577,,0.259340426,0.466659575,,,,,,,0.532459016,0.452660897,0.612257136,0.807692308,0.200697114,1,0.280945758,0.192861803,0.369029713,6.200832875,78918,12727,5.023621545,7.378044205,0.44244254,4543,10268,0.368279075,0.516606005,15.76063843,63,39973,,,102.8947382,203,197289,88.74002026,117.0494561,,,,,,,95.24078946,76.66623646,113.8153425,,,,116.3674361,94.47270955,141.8146318,,,,8.7,,,,,0,,,,,0.164148352,2390,14560,0.133276004,0.1950207,0.154447339,0.122636282,0.186258396,0.01820055,0.006839744,0.029561355,0.009615385,0.002520286,0.016710483,0.813285949,11900,14632,0.775997552,0.850574346,,,,,,,0.806073649,0.742758959,0.869388339,,,,0.82892562,0.800629473,0.857221766,0.295,,14632,0.244183293,0.345816707,70.33120941,,,69.39662161,71.26579721,,,,,,,68.77099531,67.50190412,70.04008651,,,,71.56498323,70.12444358,73.00552289,,,,703.9695842,971,110070,657.4985518,750.4406165,,,,,,,795.5978816,726.3630382,864.832725,,,,630.8344256,565.4286693,696.2401819,,,,86.01676224,39,45340,61.16632662,117.5877456,,,,,,,91.82399177,59.42364596,135.5503258,,,,87.71929825,47.95695662,147.1780772,,,,9.474824039,35,3694,6.599562101,13.17718662,,,,,,,11.23110151,7.336528387,16.45616591,,,,,,,,,,,,,0.143,,,0.124,0.164,0.186,,,0.162,0.212,0.154,,,0.134,0.175,465.9,153,32841,,,0.199,8000,,,,0.057048141,2304.973074,40404,,,25.36826261,30,118258,17.11586026,36.21477227,,,,,,,15.60939061,7.485309528,28.70622509,,,,37.94611652,22.84604095,59.25756141,,,,0.404,,,0.39,0.416,0.188759672,4074,21583,0.161355417,0.216163927,0.058131556,593,10201,0.039067726,0.077195386,0.001866613,74,39644,,,535.7297297,0.827536998,391.425,473,,,,,,,,2.74252167,,,,,,,2.533774538,,3.346606446,2.633000169,,,,,,,2.437103471,,3.258304975,0.207690604,,,,,-19054.81033,,,,,0.707577734,33634,47534,0.607251777,0.807903691,40945,,,36055.12766,45834.87234,,,,196691,49486.06383,343895.9362,32707,27811.17021,37602.82979,,,,51146,45126.59575,57165.40426,,,,,,0.999011532,6064,6070,,,32.96138975,,,,,0.191671755,,40945,,,9.022556391,24,2660,,,18.41740336,51,276912,13.71296652,24.21548412,,,,,,,27.69577876,19.87496901,37.57245119,,,,,,,,,,8.261486025,17,197289,4.722153083,13.41613572,8.616800734,,,,,,,,,,,,,14.47110387,7.477430537,25.27810621,,,,29.39849662,58,197289,22.32351103,38.00437416,,,,,,,33.94721209,23.77621,46.99725074,,,,24.93587917,15.43570222,38.11714013,,,,32.50130005,90,276912,26.13488333,39.94961569,,,,,,,30.39780595,22.17236825,40.674656,,,,36.03633804,26.07967652,48.54071085,,,,25.65217391,,4600,,,33,85,0.598619261,17342,28970,,,0.51,,,,,38.05582705,,,,,0.6508647,9597,14745,0.618230768,0.683498632,0.16800242,2222,13226,0.132802836,0.203202003,0.769345541,11344,14745,0.729521269,0.809169813,39644,,,,,0.252623348,10015,39644,,,0.177504793,7037,39644,,,0.546085158,21649,39644,,,0.004464736,177,39644,,,0.006457472,256,39644,,,0.00050449,20,39644,,,0.017051761,676,39644,,,0.417995157,16571,39644,,,0.001120687,42,37477,0,0.004931683,0.523761477,20764,39644,,,0.619903779,24997,40324,, -28,115,28115,MS,Pontotoc County,2024,1,11027.99882,622,89967,9775.132087,12280.86556,0,,,,2,,,,2,11389.32389,8275.500171,15289.63572,,,,,2,11178.77598,9747.336367,12610.21559,,,,,2,,0.208,,,0.175,0.243,3.758004673,,,2.961013902,4.6904654,4.966290538,,,3.938070075,6.129043938,0.098990557,304,3071,0.088427789,0.109553324,0,,,,,,,0.165841584,0.129572518,0.202110651,0.073248408,0.044429865,0.10206695,0.090674688,0.079007652,0.102341725,,,,,,,0.198,,,0.159,0.242,0.374,,,0.304,0.45,7.1,0.061655784,0.145,,,0.298,,,0.245,0.353,0.522864289,16305,31184,,,0.163141372,,,0.13003887,0.201172955,0.229166667,11,48,0.15515517,0.309266469,610.6,192,31445,,,35.01180173,267,7626,30.81213429,39.21146917,,,,,,,30.35019455,21.58195525,41.48971507,33.96226415,22.38134608,49.41331125,36.74832962,31.62961309,41.86704615,,,,,,,0.177832606,4685,26345,0.156385797,0.199279414,0.000190809,6,31445,,,5240.833333,9.55749E-05,3,31389,,,10463,0.0003823,12,31389,,,2615.75,3225,,,,,,,4012,,3151,0.44,,,,,,,0.49,,0.44,0.33,,,,,,,0.29,0.2,0.33,0.800526855,16410,20499,0.771209172,0.829844538,0.633053567,5129,8102,0.562854559,0.703252575,0.034512858,514,14893,,,0.23,1832,,0.169234043,0.290765957,,,,,,,0.435443038,0.221776429,0.649109647,0.517857143,0.325773795,0.709940491,0.181221157,0.123568017,0.238874297,4.216907675,106148,25172,3.582235605,4.851579745,0.231173594,1891,8180,0.168258482,0.294088707,9.540467483,30,31445,,,96.51965178,154,159553,81.27521241,111.7640912,,,,,,,75.76714232,44.90441041,119.74475,,,,108.7413192,90.19047395,127.2921645,,,,9.4,,,,,0,,,,,0.099769053,1080,10825,0.074725045,0.124813062,0.056422233,0.035288233,0.077556232,0.042032333,0.024195388,0.059869278,0.011547344,0.002537685,0.020557003,0.850224149,11569,13607,0.824094328,0.876353971,,,,,,,0.929646482,0.887364651,0.971928314,,,,0.852055144,0.802164129,0.90194616,0.377,,13607,0.32145819,0.432541811,73.39026449,,,72.42091499,74.35961399,,,,,,,73.7066809,71.02415041,76.38921138,,,,73.0612274,71.98571352,74.13674128,,,,568.3819919,622,89967,522.5393106,614.2246731,,,,,,,540.3737183,429.7752545,670.746266,,,,588.4184211,536.1197763,640.7170658,,,,59.92917461,22,36710,37.55729467,90.73349057,,,,,,,,,,,,,54.71100864,29.91101753,91.79577601,,,,6.898817346,21,3044,4.27047667,10.54557514,,,,,,,,,,,,,,,,,,,,,,0.124,,,0.106,0.144,0.171,,,0.147,0.198,0.114,,,0.097,0.132,93.4,24,25688,,,0.145,4520,,,,0.061655784,1847.022328,29957,,,16.65278934,16,96080,9.518507966,27.04308659,,,,,,,,,,,,,20.62479375,11.5435405,34.01746077,,,,0.328,,,0.314,0.342,0.222515391,4048,18192,0.193919647,0.251111136,0.082310301,704,8553,0.058480513,0.106140088,0.000987607,31,31389,,,1012.548387,0.864150327,396.645,459,,,,,,,,3.024507808,,,,,,,2.843177704,2.68337801,3.14339853,3.053591125,,,,,,,3.020680285,2.784670636,3.131496224,0.054710332,,,,,-6651.7595,,,,,0.815739837,37626,46125,0.742800191,0.888679484,51086,,,43926.34043,58245.65957,,,,,,,34564,22117.70213,47010.29787,36983,31498.57447,42467.42553,61926,55822,68030,,,,,,0.993760832,5734,5770,,,38.47425423,,,,,0.162040481,,51086,,,4.128440367,9,2180,,,4.954709451,11,222011,2.473373106,8.86534384,,,,,,,,,,,,,,,,,,,17.02452519,26,159553,11.01737507,25.13155757,16.29552563,,,,,,,,,,,,,17.65408212,10.783572,27.26529801,,,,13.78852168,22,159553,8.641193128,20.87598753,,,,,,,,,,,,,14.00456384,8.158174521,22.42266335,,,,30.62911297,68,222011,23.7847047,38.82969905,,,,,,,42.22972973,23.08738621,70.85431082,,,,31.86780761,23.94007788,41.58057621,,,,16.25,,4000,,,44,21,0.633899801,14361,22655,,,0.598,,,,,4.196128691,,,,,0.721496131,8391,11630,0.683139465,0.759852796,0.074080899,804,10853,0.04718042,0.100981379,0.725193465,8434,11630,0.682976156,0.767410774,31389,,,,,0.260154831,8166,31389,,,0.15540476,4878,31389,,,0.15371627,4825,31389,,,0.005925643,186,31389,,,0.004396445,138,31389,,,0.000541591,17,31389,,,0.075918315,2383,31389,,,0.747937175,23477,31389,,,0.025348237,737,29075,0.0146332,0.036063275,0.508235369,15953,31389,,,1,31184,31184,, -28,117,28117,MS,Prentiss County,2024,1,12673.48141,565,68953,11086.14112,14260.8217,0,,,,2,,,,2,18204.98957,13175.04122,24522.00148,,,,,2,11896.26737,10242.8,13549.73475,,,,,2,,0.215,,,0.183,0.25,4.18569417,,,3.32657832,5.134718999,5.42578744,,,4.321595039,6.611708228,0.11815562,246,2082,0.104290013,0.132021226,0,,,,,,,0.179930796,0.135642889,0.224218702,,,,0.109707065,0.095026578,0.124387551,,,,,,,0.211,,,0.17,0.255,0.404,,,0.329,0.483,7.1,0.032354799,0.16,,,0.303,,,0.251,0.359,0.605566219,15144,25008,,,0.143643255,,,0.114416535,0.178137058,0.333333333,9,27,0.231289482,0.434909506,368.1,92,24996,,,36.94493783,208,5630,31.92406359,41.96581208,,,,,,,26.02230483,17.29163258,37.60947578,,,,40.02808989,34.02848179,46.02769798,,,,,,,0.152694156,3018,19765,0.131247348,0.174140965,0.000320051,8,24996,,,3124.5,0.000403356,10,24792,,,2479.2,0.001492417,37,24792,,,670.0540541,3226,,,,,,,2814,,3195,0.42,,,,,,,0.44,,0.41,0.47,,,,,,,0.48,,0.47,0.834895109,13810,16541,0.80978004,0.860010179,0.569888907,3437,6031,0.48508461,0.654693205,0.033271392,376,11301,,,0.229,1222,,0.145595745,0.312404255,,,,,,,0.058974359,0,0.173243924,0.325203252,0,0.709951122,0.228868018,0.148528749,0.309207286,5.199594937,102692,19750,3.73908056,6.660109313,0.243920145,1344,5510,0.160775155,0.327065135,9.601536246,24,24996,,,105.7982197,133,125711,87.81743627,123.7790032,,,,,,,71.99822774,38.33602399,123.1191622,,,,114.7640586,94.14406675,135.3840504,,,,8.7,,,,,0,,,,,0.100486224,930,9255,0.070041402,0.130931045,0.074626866,0.043911113,0.105342618,0.02539168,0.009814505,0.040968856,0.004862237,0,0.011253647,0.883831985,9069,10261,0.838686139,0.928977831,,,,,,,,,,,,,0.897609382,0.84566686,0.949551904,0.337,,10261,0.27426834,0.39973166,72.52526083,,,71.37589072,73.67463095,,,,,,,68.18755378,64.67266592,71.70244164,,,,73.08508702,71.87448159,74.29569244,,,,640.9226684,565,68953,585.6992097,696.146127,,,,,,,778.2318411,618.0284162,967.2711209,,,,624.2938274,565.2419723,683.3456825,,,,67.12469399,17,25326,39.10260787,107.4731376,,,,,,,,,,,,,60.39863096,31.20885398,105.5042533,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.13,,,0.111,0.15,0.179,,,0.155,0.205,0.118,,,0.101,0.136,71.5,15,20967,,,0.16,4000,,,,0.032354799,817.7998902,25276,,,26.61875291,20,75135,16.25942581,41.11050496,,,,,,,,,,,,,24.22089456,13.55625082,39.94868218,,,,0.338,,,0.323,0.352,0.185962934,2639,14191,0.158558679,0.21336719,0.070644719,412,5832,0.048006421,0.093283017,0.000927719,23,24792,,,1077.913044,0.895746888,215.875,241,,,,,,,,3.202141477,,,,,,,2.61564455,,3.307411378,3.121590224,,,,,,,2.863689353,,3.18661597,0.153133614,,,,,-4628.266,,,,,0.850891163,39004,45839,0.69777121,1.004011115,49217,,,43422.78723,55011.21277,,,,,,,41991,23439.51064,60542.48936,,,,53230,45305.40426,61154.59575,,,,,,0.991762357,3973,4006,,,64.16516258,,,,,0.163337871,,49217,,,5.882352941,9,1530,,,6.801718568,12,176426,3.514547237,11.88123352,,,,,,,,,,,,,6.859745641,3.28951467,12.61531647,,,,17.04241695,23,125711,10.5495247,26.05114465,18.29593274,,,,,,,,,,,,,18.97362658,11.42336264,29.62966821,,,,16.70498206,21,125711,10.34064719,25.53533958,,,,,,,,,,,,,18.32367322,11.03204826,28.61468553,,,,36.84264224,65,176426,28.43437347,46.95897193,,,,,,,,,,,,,38.41457559,29.01795757,49.88452168,,,,21.2,,2500,,,41,12,0.557131641,10644,19105,,,0.615,,,,,18.69859892,,,,,0.775925129,7213,9296,0.743409292,0.808440966,0.064446219,565,8767,0.039496136,0.089396301,0.785929432,7306,9296,0.745567458,0.826291406,24792,,,,,0.220232333,5460,24792,,,0.180905131,4485,24792,,,0.15154082,3757,24792,,,0.002823491,70,24792,,,0.004920942,122,24792,,,8.06712E-05,2,24792,,,0.014359471,356,24792,,,0.814012585,20181,24792,,,0.005673819,133,23441,0,0.013255562,0.505606647,12535,24792,,,0.74256238,18570,25008,, -28,119,28119,MS,Quitman County,2024,1,19691.7732,218,17977,15689.28879,23694.2576,0,,,,2,,,,2,20375.39824,15752.45942,24998.33706,,,,,2,20145.7916,11735.666,32255.36391,1,,,,2,,0.334,,,0.29,0.38,4.942985592,,,3.936539995,6.046248801,5.627799881,,,4.419278351,6.988521286,0.169340464,95,561,0.138304407,0.20037652,0,,,,,,,0.189066059,0.152437205,0.225694914,,,,0.103448276,0.048027018,0.158869534,,,,,,,0.276,,,0.226,0.329,0.483,,,0.397,0.57,0,0.625999177,0.203,,,0.422,,,0.357,0.49,0.027687824,171,6176,,,0.107629969,,,0.084070669,0.135368693,0.2,3,15,0.07369192,0.354373303,1499.6,89,5935,,,43.71963914,63,1441,33.59537113,55.93641033,,,,,,,46.07046071,34.30248405,60.57414759,,,,47.43083004,24.50820201,82.85211482,,,,,,,0.151038251,691,4575,0.128399954,0.173676549,,0,5935,,,,0.000175408,1,5701,,,5701,0.000350816,2,5701,,,2850.5,4945,,,,,,,5275,,4588,0.26,,,,,,,0.26,,0.27,0.29,,,,,,,0.27,,0.29,0.752036416,3139,4174,0.711835764,0.792237068,0.550209205,789,1434,0.431016313,0.669402097,0.056399132,130,2305,,,0.474,612,,0.300042553,0.647957447,,,,,,,0.479166667,0.361327681,0.597005652,,,,0.339920949,0.10287192,0.576969977,5.413287738,66486,12282,4.463291439,6.363284037,0.578494624,807,1395,0.450182155,0.706807093,11.79443976,7,5935,,,121.2766587,41,33807,87.03022412,164.5254816,,,,,,,99.67605283,63.86432783,148.3100656,,,,198.8071571,115.8124953,318.3095172,,,,8.7,,,,,0,,,,,0.170529801,515,3020,0.117799374,0.223260228,0.144312394,0.089439826,0.199184962,0.028145695,0.012053275,0.044238116,0.003311258,0,0.012860727,0.811382879,1725,2126,0.762622549,0.860143208,,,,,,,0.819133034,0.655658523,0.982607546,,,,0.883239171,0.764885668,1,0.505,,2126,0.406552403,0.603447597,66.99157953,,,64.7132027,69.26995637,,,,,,,66.30902025,63.72177304,68.89626745,,,,,,,,,,925.634934,218,17977,795.3497235,1055.920145,,,,,,,961.85603,803.1518151,1120.560245,,,,910.0478235,668.6689107,1210.170682,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.168,,,0.145,0.193,0.199,,,0.171,0.229,0.191,,,0.165,0.219,400.3,20,4996,,,0.203,1290,,,,0.625999177,5147.591235,8223,,,,,,,,,,,,,,,,,,,,,,,,,,0.4,,,0.384,0.415,0.190047962,634,3336,0.160260728,0.219835196,0.04787234,63,1316,0.031191489,0.064553192,0.000877039,5,5701,,,1140.2,0.775,58.125,75,,,,,,,,3.06974594,,,,,,,3.089951835,,,3.002893277,,,,,,,2.988011407,,,,,,,,-46067.17,,,,,0.832184779,32967,39615,0.6669527,0.997416857,40255,,,36674.57447,43835.42553,,,,,,,26131,21032.61702,31229.38298,,,,57214,47604.6383,66823.3617,,,,,,1,898,898,,,33.79913812,,,,,0.192299093,,40255,,,5.361930295,2,373,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,43.17256692,21,48642,26.72449937,65.99385456,,,,,,,46.47245055,26.56302087,75.46834819,,,,,,,,,,21.42857143,,700,,,6,9,0.59851577,3226,5390,,,0.468,,,,,3.664643475,,,,,0.573418675,1523,2656,0.53017862,0.616658729,0.160137753,372,2323,0.097948623,0.222326883,0.632906627,1681,2656,0.571874633,0.693938621,5701,,,,,0.230310472,1313,5701,,,0.18295036,1043,5701,,,0.721627785,4114,5701,,,0.00403438,23,5701,,,0.002631117,15,5701,,,0.000526224,3,5701,,,0.019645676,112,5701,,,0.239782494,1367,5701,,,0.000348311,2,5742,,,0.524469391,2990,5701,,,1,6176,6176,, -28,121,28121,MS,Rankin County,2024,1,8174.909136,2334,439085,7677.769998,8672.048274,0,,,,2,,,,2,9107.832126,8013.589812,10202.07444,,,,,2,8195.432898,7604.149445,8786.716351,,,,,2,,0.159,,,0.135,0.186,3.165597812,,,2.489301726,3.945168642,4.346636865,,,3.475964743,5.322608729,0.100098377,1221,12198,0.094772112,0.105424642,0,,,,0.097744361,0.062056057,0.133432665,0.154887218,0.141137925,0.168636511,0.087971275,0.064447708,0.111494842,0.084415584,0.078547961,0.090283208,,,,,,,0.158,,,0.125,0.193,0.362,,,0.297,0.427,7.6,0.082548758,0.113,,,0.262,,,0.217,0.308,0.758837427,119161,157031,,,0.148783353,,,0.117664151,0.18251188,0.147727273,13,88,0.098074418,0.205042533,385.2,609,158096,,,16.80317996,558,33208,15.40896271,18.1973972,,,,,,,16.64486981,13.88764324,19.40209639,29.0964778,20.59039942,39.93718907,16.62536607,14.92902138,18.32171077,,,,,,,0.121101469,15322,126522,0.107995086,0.134207852,0.000562949,89,158096,,,1776.359551,0.000660465,105,158979,,,1514.085714,0.002226709,354,158979,,,449.0932203,2807,,,,,,,4813,,2619,0.44,,,,,,0.25,0.39,0.45,0.45,0.45,,,,,,0.46,0.36,0.26,0.46,0.900213972,98027,108893,0.889063155,0.911364788,0.688114633,30158,43827,0.645295502,0.730933764,0.029314174,2244,76550,,,0.136,4683,,0.095489362,0.176510638,,,,0.021645022,0,0.216209154,0.210977702,0.141168415,0.280786988,0.255524862,0.146530238,0.364519486,0.084754119,0.055625405,0.113882832,3.884657542,138220,35581,3.565161913,4.204153171,0.212072514,7522,35469,0.178748305,0.245396723,10.62645481,168,158096,,,71.71195526,556,775324,65.75107718,77.67283335,,,,,,,50.05035186,39.86482588,62.04494148,,,,81.45059634,74.02332394,88.87786873,,,,10.2,,,,,1,,,,,0.09207274,5215,56640,0.0775178,0.10662768,0.071460473,0.057096642,0.085824305,0.016507768,0.011641609,0.021373928,0.006355932,0.002561853,0.010150011,0.836545381,63938,76431,0.820974497,0.852116265,,,,0.690364827,0.519143465,0.861586189,0.844849848,0.818444615,0.871255081,0.67927544,0.582692883,0.775857997,0.812677678,0.787842392,0.837512964,0.384,,76431,0.353251263,0.414748737,77.38343898,,,76.91200339,77.85487457,,,,96.2514619,60.89708504,131.6058388,74.93247898,73.89180523,75.97315274,93.57388271,78.74671529,108.4010501,77.54640571,77.00517925,78.08763216,,,,421.176343,2334,439085,403.7054937,438.6471923,,,,,,,497.6299484,453.7926484,541.4672485,,,,416.3868909,396.3098364,436.4639454,,,,58.21399464,90,154602,46.81092621,71.55488273,,,,,,,80.89712118,54.17807169,116.1817603,,,,51.87309013,39.07791053,67.51995697,,,,5.048859935,62,12280,3.870931961,6.472410576,,,,,,,8.66616428,5.493604762,13.00350147,,,,3.998172264,2.784873475,5.560489761,,,,,,,0.1,,,0.086,0.115,0.152,,,0.131,0.175,0.097,,,0.083,0.113,295.7,396,133931,,,0.113,17680,,,,0.082548758,11690.30747,141617,,,21.51948899,101,469342,17.32260138,25.71637659,,,,,,,,,,,,,26.36111209,21.19744711,32.40228223,,,,0.328,,,0.314,0.342,0.141472019,12913,91276,0.124791168,0.15815287,0.071773954,2657,37019,0.052710124,0.090837784,0.00137125,218,158979,,,729.2614679,0.931645047,1580.07,1696,,,0.082949309,684,8246,0.044830964,0.121067654,3.280592517,,,,,,3.106351187,3.018639196,3.113697781,3.40646406,3.257584899,,,,,,3.369911754,2.954956953,2.99710221,3.40007886,0.055561987,,,,,-4190.2515,,,,,0.779511172,46819,60062,0.727251407,0.831770937,72906,,,67807.61702,78004.38298,56548,55680.59575,57415.40426,89623,78591,100655,66888,60324.08511,73451.91489,65750,26566.68085,104933.3192,80286,75921.57447,84650.42553,,,,,,0.995634536,22579,22678,,,30.75821279,,,,,0.164060571,,72906,,,7.280172904,64,8791,,,5.769637006,62,1074591,4.423547609,7.396414252,,,,,,,11.02326791,7.13367778,16.27251798,,,,4.554500289,3.18991601,6.305348184,,,,14.01065367,113,775324,11.38839699,16.63291036,14.57455206,,,,,,,,,,,,,17.4943605,14.03213186,20.95658914,,,,16.89616212,131,775324,14.00276203,19.78956222,,,,,,,13.26635832,8.313956132,20.08542593,,,,18.86409915,15.28972301,22.4384753,,,,14.42409252,155,1074591,12.15329337,16.69489166,,,,,,,13.2279215,8.924823086,18.88368045,,,,15.43469542,12.69580776,18.17358309,,,,35.77380952,,16800,,,201,400,0.605648894,70655,116660,,,0.683,,,,,46.45724905,,,,,0.769404225,45381,58982,0.753759118,0.785049332,0.092116949,5290,57427,0.076222303,0.108011594,0.892696077,52653,58982,0.879159337,0.906232817,158979,,,,,0.220274376,35019,158979,,,0.16885878,26845,158979,,,0.225381969,35831,158979,,,0.002082036,331,158979,,,0.014360387,2283,158979,,,0.0008932,142,158979,,,0.027588549,4386,158979,,,0.718805628,114275,158979,,,0.004679158,695,148531,0.002470169,0.006888147,0.515998968,82033,158979,,,0.329985799,51818,157031,, -28,123,28123,MS,Scott County,2024,1,13585.61343,591,78574,12007.00387,15164.22299,0,,,,2,,,,2,14551.41613,11952.75111,17150.08115,,10439.71244,6688.920745,15533.46458,1,13519.32302,11173.02935,15865.61668,,,,,2,,0.273,,,0.238,0.311,4.394392978,,,3.498003685,5.369984522,5.055855223,,,4.022209164,6.179690036,0.127942064,424,3314,0.11656948,0.139314648,0,,,,,,,0.181974249,0.159818749,0.204129749,0.076566125,0.058815091,0.09431716,0.111467522,0.093999905,0.12893514,,,,,,,0.236,,,0.197,0.281,0.429,,,0.351,0.505,5.6,0.162088184,0.167,,,0.369,,,0.313,0.427,0.706538049,19776,27990,,,0.13001091,,,0.101301727,0.161533644,0.138461539,9,65,0.082035714,0.206219068,739.2,204,27598,,,58.12774586,344,5918,51.98503135,64.27046038,,,,,,,52.59057265,43.71907204,61.46207327,125.8278146,99.13800642,157.4922731,49.49729312,40.92232457,58.07226166,,,,,,,0.173868858,3935,22632,0.15123056,0.196507156,0.000181173,5,27598,,,5519.6,0.000433104,12,27707,,,2308.916667,0.000433104,12,27707,,,2308.916667,4132,,,,,,,5164,7272,3704,0.38,,,,,,,0.31,,0.41,0.31,,,,,,,0.23,0.13,0.33,0.776630374,13838,17818,0.742202011,0.811058737,0.51798452,3413,6589,0.440457285,0.595511754,0.035370038,433,12242,,,0.308,2313,,0.209106383,0.406893617,,,,,,,0.467000835,0.345530748,0.588470923,0.322105263,0.173425316,0.47078521,0.170353252,0.087240465,0.253466038,4.62408958,93328,20183,3.709584377,5.538594784,0.410526316,3120,7600,0.325094385,0.495958247,13.04442351,36,27598,,,118.8696704,167,140490,100.8407844,136.8985565,,,,,,,106.5185552,80.46297184,138.3232039,61.22199094,29.35832433,112.5894211,146.7063694,118.0946238,175.3181149,,,,9.5,,,,,0,,,,,0.131964809,1350,10230,0.094867224,0.169062395,0.111055023,0.072564091,0.149545954,0.027859238,0.015609079,0.040109396,0.002932551,0,0.007047275,0.778713969,8780,11275,0.752798007,0.804629931,,,,,,,0.794143433,0.711265473,0.877021394,,,,0.839767157,0.80808724,0.871447074,0.402,,11275,0.326511838,0.477488162,71.86806919,,,70.76353565,72.97260273,,,,,,,70.80543923,69.05355214,72.55732632,75.66948935,69.28593541,82.05304328,72.06791625,70.46433082,73.67150169,,,,627.5203594,591,78574,575.087131,679.9535877,,,,,,,689.7685355,598.847327,780.6897439,462.8574034,302.353823,678.1933379,619.3341854,546.4201364,692.2482344,,,,128.4835878,42,32689,92.5996688,173.6724855,,,,,,,127.7853207,73.04035184,207.515355,,,,136.7781155,81.06337979,216.1683911,,,,10.21327726,34,3329,7.072991404,14.27203127,,,,,,,,,,,,,,,,,,,,,,0.148,,,0.128,0.17,0.182,,,0.158,0.209,0.156,,,0.134,0.178,347.3,77,22169,,,0.167,4690,,,,0.162088184,4581.260424,28264,,,,,,,,,,,,,,,,,,,,,,,,,,0.358,,,0.346,0.369,0.222084932,3415,15377,0.191106209,0.253063655,0.074191419,562,7575,0.049170143,0.099212696,0.000974483,27,27707,,,1026.185185,0.799270833,268.555,336,,,0.216944172,443,2042,0.107748824,0.32613952,2.839851188,,,,,,,2.704462007,2.515245571,3.275653809,3.071531838,,,,,,,2.908167051,2.801534338,3.488105449,0.14635569,,,,,-21423.055,,,,,0.826129053,38396,46477,0.610835511,1.041422595,45764,,,39248.93617,52279.06383,,,,,,,25551,22189.80851,28912.19149,36509,8850.957447,64167.04255,69304,62274.21277,76333.78723,,,,,,0.99403147,5496,5529,,,26.71516997,,,,,0.174941002,,45764,,,3.108348135,7,2252,,,12.69280369,25,196962,8.214113305,18.73708213,,,,,,,17.63261763,9.388626271,30.15231315,,,,10.32332659,4.950436363,18.98496515,,,,13.7855031,18,140490,8.030563565,22.07192588,12.81229981,,,,,,,,,,,,,23.74826472,13.29172349,39.16915114,,,,19.21844971,27,140490,12.66507946,27.96183532,,,,,,,,,,,,,24.69315128,14.38467059,39.53612727,,,,47.21722972,93,196962,38.11039831,57.84429638,,,,,,,48.82878728,34.19908231,67.5996236,,,,48.51963497,35.65040278,64.5208287,,,,5.882352941,,3400,,,12,8,0.547881572,10733,19590,,,0.543,,,,,3.837239335,,,,,0.733704621,7114,9696,0.696139409,0.771269832,0.111401317,981,8806,0.07280641,0.149996225,0.74339934,7208,9696,0.69652026,0.79027842,27707,,,,,0.276897535,7672,27707,,,0.162666474,4507,27707,,,0.371097557,10282,27707,,,0.008878623,246,27707,,,0.006352185,176,27707,,,0.003609196,100,27707,,,0.123073592,3410,27707,,,0.484065399,13412,27707,,,0.028739666,737,25644,0.013242459,0.044236873,0.514057819,14243,27707,,,1,27990,27990,, -28,125,28125,MS,Sharkey County,2024,1,18985.39339,139,11143,13988.2834,23982.50339,0,,,,2,,,,2,21781.56978,15346.15789,28216.98167,,,,,2,12365.35408,6760.25414,20746.96302,1,,,,2,,0.292,,,0.251,0.333,4.498130119,,,3.574430629,5.515825009,5.196240066,,,4.056100284,6.444713616,0.144329897,56,388,0.109361837,0.179297957,0,,,,,,,0.14893617,0.110464656,0.187407684,,,,,,,,,,,,,0.239,,,0.196,0.283,0.478,,,0.388,0.564,6.5,0.04652635,0.183,,,0.383,,,0.321,0.446,0.012368421,47,3800,,,0.107024945,,,0.083535574,0.135678017,0.25,2,8,0.070127692,0.458326521,1283.1,47,3663,,,67.05202312,58,865,50.91541235,86.68028872,,,,,,,87.3015873,65.76750313,113.6350158,,,,,,,,,,,,,0.171314741,473,2761,0.146293464,0.196336018,0.000273,1,3663,,,3663,0,0,3488,,,-3488,0.000286697,1,3488,,,3488,3275,,,,,,,5145,,737,0.36,,,,,,,0.32,,0.4,0.35,,,,,,,0.22,,0.44,0.797291916,2002,2511,0.719160157,0.875423674,0.321428571,270,840,0.208027654,0.434829489,0.059090909,78,1320,,,0.543,450,,0.353553192,0.732446809,,,,,,,0.391363023,0.25735309,0.525372956,,,,,,,6.314737416,104250,16509,4.979481058,7.649993774,0.534632035,494,924,0.388637343,0.680626727,21.84002184,8,3663,,,143.1570911,30,20956,96.58748817,204.365649,,,,,,,128.6739808,77.47014198,200.9403601,,,,184.9796522,88.70493334,340.1841665,,,,8.5,,,,,1,,,,,0.105413105,185,1755,0.050130856,0.160695355,0.030769231,0,0.064822543,0.056980057,0.016587239,0.097372875,0.017094017,0,0.049700669,0.78358209,1155,1474,0.729100192,0.838063987,,,,,,,0.709637046,0.560374233,0.85889986,,,,0.932432432,0.873249304,0.991615561,0.367,,1474,0.259646875,0.474353125,68.49922405,,,65.48183455,71.51661354,,,,,,,67.06319005,63.30945689,70.81692322,,,,,,,,,,908.2265998,139,11143,741.6186083,1074.834591,,,,,,,1026.540029,813.3828335,1239.697224,,,,705.6036103,460.9237047,1033.872774,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.147,,,0.126,0.17,0.182,,,0.156,0.207,0.17,,,0.147,0.196,,,,,,0.183,760,,,,0.04652635,228.7235354,4916,,,,,,,,,,,,,,,,,,,,,,,,,,0.388,,,0.371,0.403,0.210444674,407,1934,0.178274462,0.242614887,0.085155351,74,869,0.057751096,0.112559606,0.000860092,3,3488,,,1162.666667,,,,,,,,,,,2.450545617,,,,,,,2.432975431,,,2.299509094,,,,,,,2.284300652,,,,,,,,-43617.61,,,,,0.71198,35599,50000,0.394854829,1.029105171,36375,,,30991.85106,41758.14894,,,,,,,28036,23234.29787,32837.70213,,,,108333,89111.89362,127554.1064,,,,,,1,618,618,,,21.41368688,,,,,0.196233677,,36375,,,4.608294931,1,217,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,39.87638321,12,30093,20.6047091,69.65601651,,,,,,,,,,,,,,,,,,,,,500,,,,,0.648736999,2183,3365,,,0.486,,,,,8.928638902,,,,,0.579330422,796,1374,0.496984229,0.661676615,0.092093832,106,1151,0.029372435,0.154815228,0.580786026,798,1374,0.49329203,0.668280022,3488,,,,,0.240538991,839,3488,,,0.214736239,749,3488,,,0.711009174,2480,3488,,,0.002580275,9,3488,,,0.009747706,34,3488,,,0,0,3488,,,0.026662844,93,3488,,,0.242832569,847,3488,,,0.000272554,1,3669,0,0.017892763,0.522649083,1823,3488,,,1,3800,3800,, -28,127,28127,MS,Simpson County,2024,1,14383.67087,623,73057,12680.48503,16086.85671,0,,,,2,,,,2,17476.16347,14365.68677,20586.64016,,,,,2,12762.263,10698.34966,14826.17634,,,,,2,,0.233,,,0.201,0.267,4.004773312,,,3.192842997,4.94409348,5.097089262,,,4.045234313,6.322078495,0.11437613,253,2212,0.1011127,0.127639561,0,,,,,,,0.155995343,0.131729928,0.180260759,,,,0.088006231,0.072509995,0.103502466,,,,,,,0.22,,,0.181,0.262,0.444,,,0.363,0.528,6.9,0.065248222,0.155,,,0.307,,,0.256,0.361,0.337007206,8745,25949,,,0.146343632,,,0.115400894,0.181955026,0.139534884,6,43,0.070756518,0.22547155,489.3,126,25750,,,32.55895811,185,5682,27.86714499,37.25077124,,,,,,,35.26785714,27.92189463,43.95427284,,,,32.10272873,25.8105939,38.39486356,,,,,,,0.165582496,3360,20292,0.144135687,0.187029304,0.00031068,8,25750,,,3218.75,0.000351741,9,25587,,,2843,0.001211553,31,25587,,,825.3870968,4984,,,,,,,5455,,4790,0.4,,,,,,,0.39,,0.4,0.33,,,,,,,0.28,,0.34,0.801009128,14129,17639,0.766723461,0.835294794,0.57752256,3520,6095,0.489634674,0.665410445,0.037764351,400,10592,,,0.267,1510,,0.159765957,0.374234043,,,,,,,0.36444633,0.251534514,0.477358146,0.218181818,0,0.588581337,0.136004857,0.061625231,0.210384484,4.537899784,103151,22731,3.657380648,5.418418921,0.282615894,1707,6040,0.2049327,0.360299089,13.2038835,34,25750,,,97.93433879,130,132742,81.09909574,114.7695818,,,,,,,90.5601794,65.26781175,122.4110543,,,,104.2727284,83.28935192,128.9348434,,,,9.2,,,,,0,,,,,0.094349404,910,9645,0.065932089,0.122766719,0.064465409,0.038960911,0.089969906,0.022291343,0.009546219,0.035036466,0.017625713,0.004464391,0.030787035,0.800880196,8189,10225,0.756938192,0.8448222,,,,,,,0.899050299,0.82909569,0.969004908,,,,0.840455229,0.781218956,0.899691502,0.431,,10225,0.356097099,0.505902901,71.70859154,,,70.52016098,72.8970221,,,,,,,69.25183234,67.15797563,71.34568905,,,,72.90857957,71.451735,74.36542414,,,,651.1775571,623,73057,596.9468856,705.4082286,,,,,,,766.2315052,666.2085324,866.254478,,,,595.1725867,529.6718832,660.6732902,,,,92.05051732,25,27159,59.57024135,135.8847222,,,,,,,144.286264,80.75592663,237.97825,,,,66.4893617,31.88423335,122.2763035,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.132,,,0.113,0.152,0.176,,,0.151,0.203,0.128,,,0.11,0.149,328.4,71,21620,,,0.155,4050,,,,0.065248222,1794.521845,27503,,,21.50891355,17,79037,12.52973477,34.43785419,,,,,,,,,,,,,28.93159744,15.81717354,48.54230445,,,,0.348,,,0.335,0.361,0.199890208,2913,14573,0.171294463,0.228485953,0.080658573,485,6013,0.056828786,0.10448836,0.000586235,15,25587,,,1705.8,0.89,210.93,237,,,,,,,,2.966041387,,,,,,,2.748835136,,3.181270313,2.917788759,,,,,,,2.741937827,,3.060139772,0.036717964,,,,,-15150.77,,,,,0.726769661,35329,48611,0.630742822,0.8227965,50994,,,46430.59575,55557.40426,,,,,,,35299,27332.70213,43265.29787,,,,58380,50420.85106,66339.14894,,,,,,0.993324857,3125,3146,,,20.51646579,,,,,0.161058164,,50994,,,7.99467022,12,1501,,,10.70228387,20,186876,6.537233024,16.52880943,,,,,,,21.37894174,11.68806639,35.87023154,,,,,,,,,,16.23857581,22,132742,9.918943972,25.07916331,16.57350349,,,,,,,,,,,,,24.55897009,14.7861043,38.35187398,,,,22.60023203,30,132742,15.24828165,32.2632365,,,,,,,,,,,,,24.53475962,14.98646857,37.89194635,,,,25.68548128,48,186876,18.93844626,34.05522174,,,,,,,35.12254715,22.26468205,52.70106573,,,,21.78839115,14.10029793,32.16396348,,,,34.66666667,,3000,,,87,17,0.578316202,11815,20430,,,0.544,,,,,13.32113966,,,,,0.814873086,7769,9534,0.78072011,0.849026061,0.09013114,811,8998,0.06284518,0.1174171,0.731277533,6972,9534,0.691340584,0.771214482,25587,,,,,0.229882362,5882,25587,,,0.192558721,4927,25587,,,0.345370696,8837,25587,,,0.003673741,94,25587,,,0.00500254,128,25587,,,0.0013288,34,25587,,,0.021378044,547,25587,,,0.612029546,15660,25587,,,0.005459322,133,24362,0,0.01263519,0.51432368,13160,25587,,,1,25949,25949,, -28,129,28129,MS,Smith County,2024,1,13120.76522,327,41792,10940.79255,15300.73789,0,,,,2,,,,2,15137.59011,10764.30636,20693.58401,,,,,2,12810.1461,10264.30751,15355.98469,,,,,2,,0.225,,,0.194,0.258,4.100133927,,,3.336337367,4.98336527,4.874597372,,,3.918166223,5.94354701,0.105628373,137,1297,0.088900706,0.122356041,0,,,,,,,0.152284264,0.116806144,0.187762384,,,,0.084841629,0.066472754,0.103210504,,,,,,,0.214,,,0.174,0.256,0.416,,,0.341,0.494,7.2,0.054327956,0.145,,,0.315,,,0.265,0.371,0.447181364,6354,14209,,,0.146512074,,,0.115981516,0.18120209,0.133333333,2,15,0.028850285,0.292021979,606,86,14191,,,37.3245745,125,3349,30.78128809,43.86786091,,,,,,,43.47826087,30.76780509,59.67730998,,,,36.25632378,29.00037911,44.77626492,,,,,,,0.163675521,1824,11144,0.142228712,0.185122329,7.04672E-05,1,14191,,,14191,0.000425774,6,14092,,,2348.666667,0.000141925,2,14092,,,7046,3521,,,,,,,3098,,3280,0.36,,,,,,,0.41,,0.35,0.39,,,,,,,0.33,,0.41,0.820408163,8040,9800,0.778758718,0.862057609,0.509218055,1602,3146,0.407392805,0.611043304,0.036729142,243,6616,,,0.26,819,,0.164680851,0.355319149,,,,,,,0.556948798,0.465905166,0.647992431,,,,0.099103139,0.031747135,0.166459143,5.359202965,99783,18619,4.173019738,6.545386191,0.321265592,1056,3287,0.238263896,0.404267288,11.2747516,16,14191,,,114.1523228,89,77966,91.67368871,140.474256,,,,,,,120.139799,75.29097244,181.8930995,,,,116.5582269,90.33102489,148.024828,,,,9.3,,,,,1,,,,,0.071307301,420,5890,0.042472353,0.100142248,0.050397878,0.026267393,0.074528363,0.009847199,0.001631631,0.018062766,0.016129032,0.000131976,0.032126089,0.841260853,4457,5298,0.796935157,0.885586549,,,,,,,,,,,,,0.723865878,0.654401641,0.793330114,0.444,,5298,0.353902603,0.534097397,73.73100011,,,72.10558643,75.35641379,,,,,,,71.09307665,67.96209141,74.22406189,,,,74.01641858,72.07648487,75.9563523,,,,590.2693565,327,41792,521.5285598,659.0101533,,,,,,,679.2405092,532.4161313,854.0429629,,,,575.3845281,496.7877864,653.9812699,,,,90.03794456,14,15549,49.22458214,151.0683717,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.13,,,0.112,0.15,0.173,,,0.151,0.199,0.119,,,0.102,0.138,185.4,22,11867,,,0.145,2090,,,,0.054327956,895.9223198,16491,,,30.51039533,14,45886,16.68031704,51.19125904,,,,,,,,,,,,,38.41834624,20.45615134,65.69654211,,,,0.327,,,0.315,0.34,0.19637883,1551,7898,0.167783085,0.224974575,0.086419753,294,3402,0.060206987,0.112632519,0.000993472,14,14092,,,1006.571429,0.825,149.325,181,,,0.387055838,305,788,0.202137309,0.571974367,3.19462573,,,,,,,2.806409695,,3.323732354,2.900610043,,,,,,,2.493347831,,3.083363634,0.079352446,,,,,-5467.448,,,,,0.659815867,38557,58436,0.597186202,0.722445531,51746,,,44094.25532,59397.74468,,,,,,,26447,21011.42553,31882.57447,,,,62679,55476.44681,69881.55319,,,,,,0.995151515,2463,2475,,,34.07796493,,,,,0.13802033,,51746,,,5.701254276,5,877,,,10.91564029,12,109934,5.640270625,19.06742686,,,,,,,,,,,,,,,,,,,22.87656605,18,77966,13.07593411,37.15011004,23.08698664,,,,,,,,,,,,,26.56035993,14.52079593,44.56377082,,,,29.50003848,23,77966,18.70049385,44.2645421,,,,,,,,,,,,,27.83480046,15.90999348,45.20197209,,,,28.19873742,31,109934,19.15967397,40.02585688,,,,,,,,,,,,,29.54537061,18.93027644,43.9611695,,,,,,1700,,,-888,-888,0.685067873,8327,12155,,,0.447,,,,,1.901367271,,,,,0.870825688,4746,5450,0.840017749,0.901633627,0.070833333,357,5040,0.0345367,0.107129966,0.544770642,2969,5450,0.484428145,0.605113139,14092,,,,,0.227150156,3201,14092,,,0.211112688,2975,14092,,,0.233465796,3290,14092,,,0.00283849,40,14092,,,0.001915981,27,14092,,,0.000425774,6,14092,,,0.020720976,292,14092,,,0.732827136,10327,14092,,,0.001562035,21,13444,,,0.515824581,7269,14092,,,1,14209,14209,, -28,131,28131,MS,Stone County,2024,1,13747.43125,428,52015,11798.74165,15696.12085,0,,,,2,,,,2,13873.50096,9607.802722,19386.82702,,,,,2,14091.78357,11834.14592,16349.42122,,,,,2,,0.227,,,0.193,0.263,4.117287812,,,3.23386623,5.122125021,5.254052082,,,4.121852623,6.551416416,0.117765814,175,1486,0.101376974,0.134154655,0,,,,,,,0.231939164,0.180928256,0.282950071,,,,0.093613298,0.076726066,0.110500531,,,,,,,0.218,,,0.176,0.263,0.412,,,0.327,0.5,5.8,0.125792659,0.177,,,0.305,,,0.252,0.362,0.761686576,13964,18333,,,0.150411264,,,0.117138108,0.188234163,0.208333333,5,24,0.105577141,0.326751616,402.3,75,18644,,,23.97798742,122,5088,19.72309206,28.23288278,,,,,,,16.48351648,10.2035565,25.19680591,,,,27.32394366,22.15787763,33.33289407,,,,,,,0.164837469,2358,14305,0.142199172,0.187475767,0.000321819,6,18644,,,3107.333333,0.000214259,4,18669,,,4667.25,0.000374953,7,18669,,,2667,3363,,,,,,,1946,,3385,0.35,,,,,,,0.28,,0.36,0.33,,,,,,,0.23,,0.33,0.856070193,10147,11853,0.827446283,0.884694104,0.558073654,2167,3883,0.433132076,0.683015233,0.04155284,289,6955,,,0.248,966,,0.162212766,0.333787234,,,,,,,0.562616822,0.305939304,0.819294341,0.460992908,0,0.997030602,0.232948583,0.120502056,0.345395111,4.757108221,107915,22685,3.397740774,6.116475669,0.251450189,997,3965,0.1619648,0.340935578,5.363655868,10,18644,,,95.47678721,88,92169,76.57517524,117.6300722,,,,,,,62.32647742,31.11315297,111.5192845,,,,103.6593159,81.25235636,130.3360268,,,,9,,,,,0,,,,,0.143536876,905,6305,0.092990355,0.194083396,0.114423077,0.067907639,0.160938515,0.035527359,0.004836807,0.066217911,0.012688343,0,0.029218979,0.855769231,5696,6656,0.790780887,0.920757574,,,,,,,,,,,,,0.818679885,0.692733531,0.94462624,0.551,,6656,0.429170577,0.672829423,71.49351149,,,70.18557838,72.80144459,,,,,,,72.18276125,68.68667442,75.67884807,,,,71.17563538,69.70040294,72.65086782,,,,642.6825381,428,52015,578.3688225,706.9962537,,,,,,,614.6503402,472.3141979,786.4047901,,,,657.9627096,584.2626163,731.662803,,,,77.41535921,15,19376,43.32878888,127.6848621,,,,,,,,,,,,,71.61271842,34.34108204,131.6983389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.133,,,0.113,0.154,0.178,,,0.152,0.206,0.122,,,0.104,0.141,222.2,35,15749,,,0.177,3260,,,,0.125792659,2237.348237,17786,,,32.52620166,18,55340,19.27708851,51.40542152,,,,,,,,,,,,,42.46585038,25.16795428,67.11435173,,,,0.334,,,0.32,0.348,0.198181642,2049,10339,0.169585898,0.226777387,0.08,332,4150,0.054978723,0.105021277,0.001178424,22,18669,,,848.5909091,0.925,163.725,177,,,,,,,,3.270860118,,,,,,,3.009901303,,3.381509001,3.39120951,,,,,,,3.073183155,,3.513285719,0.016471256,,,,,-3442.004,,,,,0.640707729,33641,52506,0.432603655,0.848811802,54283,,,46912.44681,61653.55319,,,,,,,22883,7397.212766,38368.78723,117840,33542.12766,202137.8723,61048,47528.17021,74567.82979,,,,,,0.995022812,2399,2411,,,41.4929333,,,,,0.149512739,,54283,,,6.178287732,7,1133,,,,,,,,,,,,,,,,,,,,,,,,,,15.17080212,14,92169,8.077813194,25.94253366,15.18948887,,,,,,,,,,,,,19.20504365,10.2258769,32.84120953,,,,19.52934284,18,92169,11.57432627,30.86478129,,,,,,,,,,,,,19.87986879,10.86850926,33.35504185,,,,29.6293986,38,128251,20.9675259,40.66866451,,,,,,,,,,,,,29.57734987,19.80841541,42.47800816,,,,19.44444444,,1800,,,20,15,0.552067274,7878,14270,,,0.561,,,,,9.244613443,,,,,0.779346325,5079,6517,0.733109158,0.825583493,0.127793975,789,6174,0.083985031,0.171602918,0.742979899,4842,6517,0.677553672,0.808406125,18669,,,,,0.213294767,3982,18669,,,0.173335476,3236,18669,,,0.181691574,3392,18669,,,0.005892121,110,18669,,,0.005517168,103,18669,,,0.000696342,13,18669,,,0.024746907,462,18669,,,0.767582624,14330,18669,,,0.002201112,38,17264,0,0.009178506,0.494723874,9236,18669,,,1,18333,18333,, -28,133,28133,MS,Sunflower County,2024,1,18191.05424,753,71029,16308.26794,20073.84054,0,,,,2,,,,2,19891.54023,17613.06299,22170.01747,,,,,2,14329.86324,10842.57113,17817.15535,,,,,2,,0.302,,,0.26,0.345,4.610590732,,,3.685734772,5.676848959,4.882728369,,,3.874357621,6.055192212,0.15,300,2000,0.134350655,0.165649345,0,,,,,,,0.165126309,0.147062251,0.183190368,,,,0.09118541,0.060078388,0.122292433,,,,,,,0.257,,,0.21,0.306,0.509,,,0.433,0.582,4.1,0.249413697,0.193,,,0.378,,,0.318,0.436,0.23699511,6155,25971,,,0.133169417,,,0.105192256,0.165823963,0.096774194,3,31,0.029372466,0.199247034,976.3,248,25402,,,35.19256308,212,6024,30.45517418,39.92995199,,,,,,,42.77608031,36.78742907,48.76473156,,,,10.32702238,5.336123157,18.03922982,,,,,,,0.144611916,2437,16852,0.124356596,0.164867235,0.000354303,9,25402,,,2822.444444,0.000403047,10,24811,,,2481.1,0.000362742,9,24811,,,2756.777778,4398,,,,,,,4578,,4319,0.37,,,,,,,0.38,,0.35,0.19,,,,,,,0.15,,0.23,0.770330855,13574,17621,0.744354757,0.796306954,0.478352693,3624,7576,0.415261303,0.541444082,0.057799443,415,7180,,,0.421,2187,,0.278021277,0.563978723,,,,,,,0.46709223,0.407927682,0.526256778,0.72815534,0.021636762,1,0.160609613,0.046886143,0.274333084,6.251271468,84811,13567,5.336013222,7.166529713,0.604365867,3350,5543,0.528482288,0.680249446,11.02275411,28,25402,,,114.9896037,146,126968,96.33705335,133.642154,,,,,,,107.6252489,86.5307001,128.7197977,,,,143.242613,103.6653893,192.9468597,,,,9.1,,,,,1,,,,,0.167765129,1400,8345,0.132243709,0.203286549,0.131414574,0.100607163,0.162221986,0.03055722,0.015906365,0.045208075,0.014979029,0.00508776,0.024870299,0.845563438,7271,8599,0.798428867,0.892698009,,,,,,,0.833049404,0.777529068,0.88856974,,,,0.899699957,0.845333928,0.954065986,0.221,,8599,0.170702776,0.271297224,67.71779695,,,66.56556363,68.87003026,,,,,,,66.70111686,65.32847013,68.07376359,,,,69.75372404,67.48911713,72.01833096,,,,898.3877166,753,71029,832.7599659,964.0154674,,,,,,,971.7458213,889.8504247,1053.641218,,,,770.9985706,655.322429,886.6747123,,,,108.503456,27,24884,71.50446123,157.8668319,,,,,,,112.2735392,70.36122925,169.9834876,,,,,,,,,,12.74509804,26,2040,8.325521184,18.67452161,,,,,,,12.71186441,7.868844421,19.43143507,,,,,,,,,,,,,0.15,,,0.129,0.173,0.179,,,0.154,0.205,0.177,,,0.153,0.201,622.4,135,21691,,,0.193,5080,,,,0.249413697,7345.233366,29450,,,,,,,,,,,,,,,,,,,,,,,,,,0.387,,,0.371,0.402,0.184397163,2184,11844,0.155801418,0.212992908,0.053050398,280,5278,0.035178058,0.070922738,0.001450969,36,24811,,,689.1944444,0.85,218.45,257,,,0.160947712,197,1224,0.06834093,0.253554495,2.724022598,,,,,,,2.728605919,,,2.964381068,,,,,,,2.960699657,,,0.072487193,,,,,,,,,,0.937176426,34937,37279,0.778949942,1.095402911,38423,,,33275.76596,43570.23404,,,,,,,31285,24666.2766,37903.7234,49329,31134.95745,67523.04255,83413,68910.19149,97915.80851,,,,,,1,3059,3059,,,30.29297066,,,,,0.21388231,,38423,,,12.36263736,18,1456,,,33.26311121,60,180380,25.38325809,42.81621766,,,,,,,39.46809157,29.47665857,51.75715112,,,,,,,,,,8.9017386,12,126968,4.443715836,15.92766927,9.451200302,,,,,,,,,,,,,,,,,,,34.65440111,44,126968,25.1799409,46.52191598,,,,,,,40.89759458,28.94157202,56.13514386,,,,,,,,,,23.83856303,43,180380,17.25208627,32.11038797,,,,,,,25.80605987,17.87144665,36.06138206,,,,,,,,,,34,,2500,,,70,15,0.483083832,9681,20040,,,0.575,,,,,25.34865881,,,,,0.559980334,4556,8136,0.52146099,0.598499678,0.140113606,1036,7394,0.107411665,0.172815546,0.675393314,5495,8136,0.634443112,0.716343516,24811,,,,,0.212728225,5278,24811,,,0.151827818,3767,24811,,,0.729716658,18105,24811,,,0.003708033,92,24811,,,0.00403047,100,24811,,,0.000443352,11,24811,,,0.020112047,499,24811,,,0.237515618,5893,24811,,,0.008585446,210,24460,0.001322025,0.015848866,0.46838096,11621,24811,,,0.640329598,16630,25971,, -28,135,28135,MS,Tallahatchie County,2024,1,13884.46098,309,37194,11621.76481,16147.15714,0,,,,2,,,,2,16725.13212,13420.75665,20029.50759,,,,,2,12363.81301,8732.58376,15995.04227,,,,,2,,0.294,,,0.259,0.332,4.50599236,,,3.593025075,5.525488996,4.817143037,,,3.742420892,6.014202073,0.135214008,139,1028,0.114310235,0.156117781,0,,,,,,,0.164539007,0.13717,0.191908014,,,,0.072100314,0.043715907,0.10048472,,,,,,,0.247,,,0.206,0.289,0.469,,,0.385,0.554,4,0.313831228,0.168,,,0.37,,,0.311,0.428,0.300668502,3823,12715,,,0.135188755,,,0.105166834,0.168760661,0.15,3,20,0.050642257,0.283837277,946.1,117,12366,,,54.22715628,127,2342,44.79586754,63.65844502,,,,,,,56.83192261,45.92597848,69.54788013,,,,49.9194847,33.91786792,70.85672384,,,,,,,0.147505968,1174,7959,0.12605916,0.168952777,8.08669E-05,1,12366,,,12366,0.000249273,3,12035,,,4011.666667,0.000498546,6,12035,,,2005.833333,2898,,,,,,,3234,,2430,0.31,,,,,,,0.3,,0.32,0.29,,,,,,,0.18,,0.36,0.781332416,6814,8721,0.725967623,0.836697209,0.500135318,1848,3695,0.390609691,0.609660945,0.042323472,196,4631,,,0.405,956,,0.257255319,0.552744681,,,,,,,0.491399083,0.403326808,0.579471357,,,,0.173160173,0.038724639,0.307595708,4.208805312,75426,17921,3.256581646,5.161028979,0.576758648,1484,2573,0.491845892,0.661671403,16.98204755,21,12366,,,105.8916963,72,67994,82.85373076,133.3530665,,,,,,,115.9725883,84.2658602,155.6877867,,,,114.2083668,75.26403338,166.1671776,,,,8.9,,,,,1,,,,,0.121527778,525,4320,0.077477579,0.165577977,0.099056604,0.059024247,0.139088961,0.021990741,0.006986969,0.036994513,0.013888889,0,0.029931671,0.833446789,3673,4407,0.779253026,0.887640553,,,,,,,0.727953891,0.602116193,0.853791588,,,,0.857518057,0.747696452,0.967339661,0.425,,4407,0.318436613,0.531563388,71.36175625,,,69.76722325,72.95628924,,,,,,,68.74662576,66.61012055,70.88313096,,,,73.16336898,70.70580222,75.62093574,,,,692.3605311,309,37194,612.9604058,771.7606564,,,,,,,799.045952,681.5781311,916.5137729,,,,640.7774739,516.9808216,764.5741262,,,,95.72709077,11,11491,47.78661881,171.2822079,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.152,,,0.131,0.172,0.177,,,0.152,0.202,0.168,,,0.145,0.191,356.4,38,10662,,,0.168,2170,,,,0.313831228,4826.096619,15378,,,,,,,,,,,,,,,,,,,,,,,,,,0.379,,,0.367,0.391,0.182182008,1047,5747,0.153586263,0.210777753,0.058798098,136,2313,0.037351289,0.080244906,0.000997092,12,12035,,,1002.916667,0.779054054,86.475,111,,,,,,,,2.515888576,,,,,,,2.419401372,,3.244221797,2.596586027,,,,,,,2.590423029,,2.790499876,0.109896064,,,,,-42442.685,,,,,0.731779397,32933,45004,0.642245548,0.821313247,39009,,,33271.97872,44746.02128,,,,,,,32775,28539.25532,37010.74468,,,,45802,37285.23404,54318.76596,,,,,,1,1459,1459,,,46.9093552,,,,,0.172755005,,39009,,,6.849315069,5,730,,,19.59247649,19,96976,11.79595071,30.596079,,,,,,,27.73976403,15.52573535,45.75252223,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20.59005206,14,67994,11.25677306,34.5466087,,,,,,,28.99314707,14.47327456,51.87674885,,,,,,,,,,40.21613595,39,96976,28.59760404,54.97678175,,,,,,,51.78089285,34.40802725,74.83780734,,,,32.33582221,16.14192594,57.85771801,,,,21.66666667,,1200,,,8,18,0.514014467,5685,11060,,,0.368,,,,,0.562060356,,,,,0.637061149,2740,4301,0.577897509,0.696224789,0.094994893,372,3916,0.054279529,0.135710257,0.661009068,2843,4301,0.601398312,0.720619823,12035,,,,,0.199833818,2405,12035,,,0.172829248,2080,12035,,,0.558869963,6726,12035,,,0.004403822,53,12035,,,0.008973826,108,12035,,,0.00083091,10,12035,,,0.060822601,732,12035,,,0.356211051,4287,12035,,,0.006647034,79,11885,,,0.463813876,5582,12035,,,1,12715,12715,, -28,137,28137,MS,Tate County,2024,1,12479.90907,601,79407,10940.21446,14019.60368,0,,,,2,,,,2,16417.38536,13181.16648,19653.60423,,,,,2,10568.54596,8871.605729,12265.48618,,,,,2,,0.208,,,0.178,0.239,3.849694088,,,3.027649047,4.758786728,4.800621673,,,3.779713115,5.906756839,0.093310609,219,2347,0.081542836,0.105078383,0,,,,,,,0.147355164,0.122699734,0.172010594,,,,0.066575154,0.053774798,0.079375511,,,,,,,0.198,,,0.16,0.238,0.401,,,0.325,0.481,6.4,0.140710665,0.142,,,0.298,,,0.247,0.352,0.422035348,11844,28064,,,0.151234661,,,0.11866194,0.187341926,0.185185185,10,54,0.118210671,0.261010549,591.5,167,28234,,,23.62684204,194,8211,20.30207758,26.95160651,,,,,,,29.55348538,23.82428036,36.24472631,,,,20.82419991,16.84802128,25.45650452,,,,,,,0.143587444,3202,22300,0.123332125,0.163842763,0.000247928,7,28234,,,4033.428571,0.000388748,11,28296,,,2572.363636,0.000353407,10,28296,,,2829.6,4416,,,,,,,6175,,4091,0.27,,,,,,,0.3,,0.26,0.48,,,,,,,0.38,,0.49,0.835494283,15272,18279,0.808094361,0.862894205,0.593420046,3878,6535,0.487227787,0.699612305,0.039175258,475,12125,,,0.267,1635,,0.195510638,0.338489362,,,,,,,0.37936345,0.277842624,0.480884276,0.20123839,0,0.41077475,0.169230769,0.055525201,0.282936338,4.326972406,111333,25730,3.581038084,5.072906727,0.300602792,1895,6304,0.20445558,0.396750004,13.1047673,37,28234,,,116.6598732,166,142294,98.91293132,134.4068151,,,,,,,89.21218776,63.43858654,121.9559975,,,,132.4546451,108.9505601,155.9587302,,,,8.9,,,,,0,,,,,0.139744197,1475,10555,0.103537136,0.175951259,0.093840231,0.063403316,0.124277146,0.045002369,0.024067557,0.06593718,0.014211274,0.004127638,0.024294911,0.914285714,10720,11725,0.911420996,0.917150433,,,,,,,0.886730205,0.823922555,0.949537856,,,,0.858113618,0.839727722,0.876499513,0.609,,11725,0.535532337,0.682467663,72.17227978,,,71.07759424,73.26696531,,,,,,,69.79817953,67.56431013,72.03204893,,,,73.26270377,72.03016056,74.49524699,,,,588.3005729,601,79407,539.0269099,637.5742359,,,,,,,706.340225,603.3800726,809.3003773,,,,543.6699385,486.7907321,600.5491449,,,,81.96990065,25,30499,53.04659775,121.0037434,,,,,,,112.8880527,58.33090413,197.1927098,,,,62.32294618,31.11139018,111.5129661,,,,10.02087683,24,2395,6.420564866,14.91027039,,,,,,,,,,,,,,,,,,,,,,0.123,,,0.106,0.141,0.168,,,0.145,0.194,0.118,,,0.1,0.136,155.5,37,23796,,,0.142,3990,,,,0.140710665,4064.568263,28886,,,31.72961666,27,85094,20.91001731,46.16492637,,,,,,,,,,,,,45.34324839,29.34375959,66.93557939,,,,0.37,,,0.358,0.382,0.173766816,2790,16056,0.14755405,0.199979582,0.069169961,455,6578,0.047723152,0.090616769,0.00102488,29,28296,,,975.7241379,0.796384615,258.825,325,,,,,,,,2.843195345,,,,,,,2.524143473,,3.098952643,2.73514016,,,,,,,2.383537015,,3.008105344,0.103284256,,,,,-10624.9115,,,,,0.788766835,41288,52345,0.644157436,0.933376235,58623,,,50015.68085,67230.31915,,,,,,,39688,35348.59575,44027.40426,63370,33151.44681,93588.55319,67725,62725.51064,72724.48936,,,,,,0.992676973,3660,3687,,,26.32413769,,,,,0.145847193,,58623,,,4.83968542,8,1653,,,9.557776761,19,198791,5.754405966,14.92565235,,,,,,,19.57873097,10.11661599,34.20010287,,,,,,,,,,13.43526632,19,142294,7.962590302,21.23351307,13.35263609,,,,,,,,,,,,,18.77919386,10.93957246,30.06730854,,,,21.08310962,30,142294,14.22468553,30.09744992,,,,,,,25.16241193,12.56098538,45.02250552,,,,19.54248863,11.5821173,30.88555731,,,,36.21894351,72,198791,28.33909266,45.61176514,,,,,,,32.63121829,19.93199587,50.39627009,,,,35.77622748,26.19269497,47.72047389,,,,31.33333333,,3000,,,38,56,0.604897205,13093,21645,,,0.639,,,,,21.8562759,,,,,0.736947409,7735,10496,0.694480987,0.77941383,0.111532701,1117,10015,0.077443546,0.145621856,0.799923781,8396,10496,0.756543467,0.843304094,28296,,,,,0.223317783,6319,28296,,,0.169317218,4791,28296,,,0.295554142,8363,28296,,,0.003216002,91,28296,,,0.00307464,87,28296,,,0.000848176,24,28296,,,0.036224201,1025,28296,,,0.645073509,18253,28296,,,0.00487768,129,26447,0,0.010052178,0.51289935,14513,28296,,,0.757090935,21247,28064,, -28,139,28139,MS,Tippah County,2024,1,12556.30672,490,60912,10901.6072,14211.00623,0,,,,2,,,,2,15557.39139,11208.18195,19906.60083,,,,,2,12406.66357,10521.87855,14291.44858,,,,,2,,0.243,,,0.208,0.283,4.207872376,,,3.332866623,5.188594882,5.230022208,,,4.169694187,6.414931125,0.107742285,199,1847,0.093601912,0.121882658,0,,,,,,,0.176271186,0.13278735,0.219755023,,,,0.097114708,0.081718356,0.11251106,,,,,,,0.237,,,0.194,0.284,0.4,,,0.321,0.48,6.7,0.01853508,0.184,,,0.33,,,0.276,0.389,0.44978226,9812,21815,,,0.146361491,,,0.113978513,0.180198987,0.217391304,5,23,0.111350026,0.338101853,439.1,95,21635,,,34.27381178,181,5281,29.28060914,39.26701442,,,,,,,29.44162437,19.71751791,42.28308369,34.81012658,17.37708977,62.284932,37.09591945,30.95097171,43.24086718,,,,,,,0.15921899,2797,17567,0.138963671,0.179474309,9.24428E-05,2,21635,,,10817.5,0.000186646,4,21431,,,5357.75,0.001306519,28,21431,,,765.3928571,4177,,,,,,,4356,,4177,0.32,,,,,,,0.32,,0.32,0.43,,,,,,,0.39,,0.43,0.792540139,11304,14263,0.762334374,0.822745903,0.578071066,2847,4925,0.481177074,0.674965059,0.034065258,332,9746,,,0.22,1077,,0.143744681,0.296255319,,,,,,,0.164688427,0.048185915,0.281190939,0.549333333,0.339139588,0.759527079,0.224697987,0.143126918,0.306269055,4.106100208,92687,22573,3.596531959,4.615668458,0.260634184,1348,5172,0.177161581,0.344106787,18.4885602,40,21635,,,89.61065087,98,109362,72.75025793,109.2066808,,,,,,,111.0062719,67.80551471,171.4401837,,,,89.27402364,70.21968278,111.9057617,,,,8.5,,,,,0,,,,,0.131377551,1030,7840,0.088216213,0.174538889,0.100912647,0.064913986,0.136911308,0.02869898,0.001289513,0.056108446,0.007653061,0.001326136,0.013979987,0.841978022,7662,9100,0.796278478,0.887677566,,,,,,,0.908752328,0.86610227,0.951402386,,,,0.870558799,0.830989141,0.910128457,0.308,,9100,0.243110304,0.372889696,71.93341103,,,70.8092386,73.05758346,,,,,,,68.87013796,66.17955655,71.56071937,,,,72.10561457,70.84643806,73.36479108,,,,633.7448849,490,60912,575.157758,692.3320118,,,,,,,858.3658969,691.7547853,1024.977008,,,,615.1589171,549.5205927,680.7972415,,,,47.1293916,11,23340,23.52682248,84.32750006,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.14,,,0.12,0.163,0.183,,,0.158,0.21,0.126,,,0.108,0.145,171.5,31,18076,,,0.184,4020,,,,0.01853508,412.0718903,22232,,,,,,,,,,,,,,,,,,,,,,,,,,0.361,,,0.346,0.375,0.195298082,2434,12463,0.167893827,0.222702338,0.074267587,398,5359,0.051629289,0.096905885,0.001213196,26,21431,,,824.2692308,0.925,259,280,,,,,,,,3.085049359,,,,,,,2.65707163,3.00909976,3.217534784,2.969706129,,,,,,,2.745753574,3.004256124,3.063993017,0.137652802,,,,,-9451.0095,,,,,0.700976134,33895,48354,0.614327584,0.787624684,52635,,,47008.78723,58261.21277,38500,23333.53192,53666.46809,,,,42217,29058.19149,55375.80851,37857,5951.297872,69762.70213,49043,43012.87234,55073.12766,,,,,,0.993728769,3803,3827,,,39.59512416,,,,,0.129989551,,52635,,,5.291005291,6,1134,,,12.36311108,19,153683,7.443400483,19.3065294,,,,,,,,,,,,,12.68949648,7.102214852,20.92939469,,,,19.12058562,21,109362,11.67935044,29.53019372,19.20228233,,,,,,,,,,,,,19.53346428,11.1650626,31.72112222,,,,29.26062069,32,109362,20.01424289,41.30726585,,,,,,,,,,,,,29.75800788,19.25781368,43.92868993,,,,26.02760227,40,153683,18.59450066,35.44220699,,,,,,,43.604075,21.76699714,78.01973486,,,,22.84109367,15.05242465,33.23259208,,,,16.8,,2500,,,23,19,0.613543881,10102,16465,,,0.56,,,,,13.86965366,,,,,0.726609813,5879,8091,0.689466645,0.763752982,0.10328068,765,7407,0.062716411,0.14384495,0.73760969,5968,8091,0.678557166,0.796662214,21431,,,,,0.232980262,4993,21431,,,0.176473333,3782,21431,,,0.15944193,3417,21431,,,0.005272736,113,21431,,,0.002893006,62,21431,,,0.000279968,6,21431,,,0.048154543,1032,21431,,,0.771032616,16524,21431,,,0.012739779,263,20644,0.00531773,0.020161828,0.511921982,10971,21431,,,1,21815,21815,, -28,141,28141,MS,Tishomingo County,2024,1,13495.51198,522,52362,11611.66268,15379.36128,0,,,,2,,,,2,17605.38854,7078.279287,36273.82907,1,,,,2,13833.47388,11832.80954,15834.13822,,,,,2,,0.225,,,0.191,0.264,4.345323975,,,3.416984047,5.372335011,5.186120403,,,4.087499692,6.338958993,0.105857445,150,1417,0.089838452,0.121876439,0,,,,,,,,,,,,,0.107680723,0.091008782,0.124352663,,,,,,,0.232,,,0.186,0.28,0.385,,,0.31,0.465,,,0.196,,,0.325,,,0.269,0.381,0.510557029,9624,18850,,,0.148144584,,,0.116825906,0.185022328,0.28125,9,32,0.188019808,0.378196141,160,30,18750,,,28.04940813,109,3886,22.7835819,33.31523437,,,,,,,,,,,,,29.49517867,23.82638784,35.16396951,,,,,,,0.171362618,2524,14729,0.14991581,0.192809427,0.000266667,5,18750,,,3750,5.37086E-05,1,18619,,,18619,0.00112788,21,18619,,,886.6190476,4355,,,,,,,922,,4429,0.36,,,,,,,0.43,,0.36,0.41,,,,,,,0.47,,0.41,0.814847943,10932,13416,0.785103136,0.844592749,0.572801876,2443,4265,0.472534338,0.673069413,0.036618392,311,8493,,,0.197,765,,0.124319149,0.269680851,,,,,,,0.709677419,0.067633718,1,0.783783784,0.746275396,0.821292172,0.217330342,0.143253258,0.291407427,5.971731669,95697,16025,5.470485726,6.472977612,0.273131014,1107,4053,0.189701285,0.356560743,6.4,12,18750,,,134.8491764,130,96404,111.6681483,158.0302045,,,,,,,,,,,,,144.2888461,119.3891541,169.1885382,,,,8.1,,,,,0,,,,,0.146725441,1165,7940,0.097128252,0.19632263,0.109846547,0.069117763,0.150575332,0.018765743,0.002737295,0.034794191,0.023299748,0,0.049740548,0.907960535,6718,7399,0.87347062,0.94245045,,,,,,,,,,,,,0.896471758,0.853033355,0.93991016,0.338,,7399,0.271064168,0.404935832,70.81522709,,,69.59152774,72.03892645,,,,,,,,,,,,,70.52455909,69.24245848,71.80665971,,,,685.5114892,522,52362,622.5705333,748.4524452,,,,,,,982.2369771,561.433301,1595.091314,,,,694.4650224,628.6674772,760.2625676,,,,60.83397854,11,18082,30.36810291,108.8487917,,,,,,,,,,,,,67.32770229,33.6097464,120.4678572,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.138,,,0.117,0.161,0.183,,,0.157,0.21,0.115,,,0.098,0.133,68.8,11,15982,,,0.196,3710,,,,,,19593,,,24.38684504,14,57408,13.33251511,40.91698217,,,,,,,,,,,,,26.34153684,14.40116331,44.19662287,,,,0.341,,,0.323,0.356,0.200801715,2154,10727,0.17339746,0.228205971,0.095498928,401,4199,0.066903184,0.124094673,0.0018798,35,18619,,,531.9714286,0.92,217.12,236,,,,,,,,3.202749162,,,,,,,,,3.222907052,3.33317739,,,,,,,,,3.330761122,0.069491474,,,,,-1035.046,,,,,0.753922346,38971,51691,0.677832636,0.830012056,51652,,,44475.65957,58828.34043,130192,75810.04255,184573.9575,,,,,,,16788,10542.21277,23033.78723,49879,40921.38298,58836.61702,,,,,,0.993778085,2875,2893,,,57.45931131,,,,,0.135270658,,51652,,,11.78781925,12,1018,,,,,,,,,,,,,,,,,,,,,,,,,,32.07904982,29,96404,21.14029596,46.67333327,30.08173935,,,,,,,,,,,,,34.82498918,22.94988731,50.66853087,,,,29.04443799,28,96404,19.29981812,41.97729964,,,,,,,,,,,,,31.31850924,20.81092195,45.26396576,,,,38.39140033,52,135447,28.67253405,50.3452138,,,,,,,,,,,,,41.31903059,30.85902837,54.1844114,,,,23.5,,2000,,,25,22,0.612056263,9138,14930,,,0.514,,,,,14.46341035,,,,,0.736145575,6230,8463,0.70176745,0.7705237,0.142964824,1138,7960,0.103442414,0.182487234,0.713694907,6040,8463,0.668001493,0.759388321,18619,,,,,0.2129008,3964,18619,,,0.212632257,3959,18619,,,0.026907997,501,18619,,,0.004511521,84,18619,,,0.002148343,40,18619,,,0.000483377,9,18619,,,0.03662925,682,18619,,,0.920994683,17148,18619,,,0.017037494,304,17843,0.007654245,0.026420742,0.509157312,9480,18619,,,1,18850,18850,, -28,143,28143,MS,Tunica County,2024,1,22837.48537,284,27413,19322.94782,26352.02292,0,,,,2,,,,2,24739.06693,20686.32091,28791.81294,,,,,2,23192.71175,13745.47086,36654.48355,1,,,,2,,0.31,,,0.269,0.352,4.634624254,,,3.6811036,5.691168211,5.15679233,,,4.045575205,6.452146888,0.156450137,171,1093,0.134912932,0.177987342,0,,,,,,,0.162191192,0.138511976,0.185870409,,,,0.115107914,0.062050458,0.168165369,,,,,,,0.252,,,0.204,0.302,0.486,,,0.401,0.578,6.1,0.084289779,0.183,,,0.397,,,0.337,0.462,0.705683909,6903,9782,,,0.113284756,,,0.088717623,0.144412282,0.260869565,6,23,0.151021274,0.378411613,1382,134,9696,,,64.95204882,149,2294,54.52273365,75.381364,,,,,,,69.40222898,57.78054112,81.02391683,,,,,,,,,,,,,0.14519995,1151,7927,0.121370162,0.169029737,0.000103135,1,9696,,,9696,,0,9458,,,,0.000317192,3,9458,,,3152.666667,4588,,,,,,,6760,,1954,0.25,,,,,,,0.24,,0.26,0.34,,,,,,,0.26,,0.4,0.836322508,5176,6189,0.788715347,0.883929669,0.344313454,993,2884,0.249455953,0.439170954,0.045159741,188,4163,,,0.422,1087,,0.275446809,0.568553192,,,,,,,0.567369781,0.437870711,0.69686885,,,,0.107255521,0,0.246425604,5.297691208,77786,14683,3.379277485,7.21610493,0.663203153,1851,2791,0.473652326,0.85275398,3.094059406,3,9696,,,135.5570161,66,48688,104.8397864,172.4617615,,,,,,,133.8150676,99.32012241,176.4184843,,,,153.6941486,84.02602126,257.8726657,,,,8.6,,,,,0,,,,,0.286254729,1135,3965,0.208455507,0.364053951,0.208020699,0.130996444,0.285044954,0.085498108,0.028000857,0.14299536,0.003530895,0,0.011321664,0.831310066,3287,3954,0.783147252,0.87947288,,,,,,,0.793442623,0.706908859,0.879976387,,,,0.769273743,0.487235213,1,0.517,,3954,0.382361702,0.651638298,65.444829,,,63.46499605,67.42466194,,,,,,,64.41763062,62.26913712,66.56612413,,,,64.83541088,58.63040681,71.04041494,,,,954.9946684,284,27413,841.0670933,1068.922244,,,,,,,1073.923675,930.9865455,1216.860804,,,,782.9132948,564.2550388,1058.271334,,,,166.0164356,20,12047,101.4071519,256.3989201,,,,,,,149.5364371,83.69440866,246.6376121,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.156,,,0.133,0.179,0.189,,,0.163,0.217,0.181,,,0.157,0.207,777.7,60,7715,,,0.183,1830,,,,0.084289779,908.4752382,10778,,,,,,,,,,,,,,,,,,,,,,,,,,0.398,,,0.382,0.413,0.192095588,1045,5440,0.158733886,0.22545729,0.044478528,116,2608,0.027797677,0.061159379,0.000740114,7,9458,,,1351.142857,0.875,99.75,114,,,,,,,,2.459402829,,,,,,,2.432679703,,,2.881609112,,,,,,,2.846296944,,,0.037286691,,,,,-34159.3,,,,,0.987791712,35682,36123,0.803589436,1.171993987,37694,,,32630.17021,42757.82979,,,,,,,35476,26305.10638,44646.89362,,,,70952,58658.21277,83245.78723,,,,,,1,1667,1667,,,11.62432204,,,,,0.255637502,,37694,,,5.630630631,5,888,,,30.3183426,21,69265,18.76753192,46.34480724,,,,,,,37.81218687,23.09666607,58.39785587,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,41.07788367,20,48688,25.09143852,63.44145971,,,,,,,50.84972568,30.61485659,79.40814552,,,,,,,,,,25.9871508,18,69265,15.40163254,41.070902,,,,,,,34.03096818,20.16890851,53.78360136,,,,,,,,,,40,,1100,,,22,22,0.514739884,3562,6920,,,0.458,,,,,30.77989785,,,,,0.436995828,1571,3595,0.382864519,0.491127137,0.253229974,882,3483,0.173314362,0.333145586,0.839777469,3019,3595,0.764557887,0.914997051,9458,,,,,0.276379784,2614,9458,,,0.138612815,1311,9458,,,0.771727638,7299,9458,,,0.002643265,25,9458,,,0.008141256,77,9458,,,0.000845845,8,9458,,,0.027278494,258,9458,,,0.180799323,1710,9458,,,0.00123346,11,8918,0,0.011889236,0.527278494,4987,9458,,,1,9782,9782,, -28,145,28145,MS,Union County,2024,1,11051.02432,539,79722,9664.839963,12437.20867,0,,,,2,,,,2,14288.85227,10605.46157,18838.07037,,,,,2,10745.03557,9205.316598,12284.75454,,,,,2,,0.216,,,0.182,0.252,4.100562457,,,3.236657047,5.065701402,5.32479966,,,4.252238006,6.493134912,0.103130016,257,2492,0.091189053,0.115070979,0,,,,,,,0.178173719,0.14277849,0.213568949,,,,0.089640365,0.076668335,0.102612395,,,,,,,0.21,,,0.171,0.256,0.41,,,0.337,0.489,7.2,0.057042481,0.143,,,0.311,,,0.258,0.367,0.375022501,10417,27777,,,0.153078045,,,0.12071778,0.190349619,0.085714286,3,35,0.025377483,0.180112953,522.3,146,27953,,,35.12917454,223,6348,30.51842444,39.73992465,,,,,,,47.86150713,35.1668352,63.64565819,36.61971831,19.49845772,62.62083357,34.2005875,28.95014586,39.45102914,,,,,,,0.17038189,3944,23148,0.148935082,0.191828699,0.000357743,10,27953,,,2795.3,0.000462222,13,28125,,,2163.461539,0.000355556,10,28125,,,2812.5,2327,,,,,,,1740,,2375,0.42,,,,,,,0.46,,0.42,0.45,,,,,,,0.3,,0.46,0.77576707,14361,18512,0.737779191,0.813754949,0.49971607,3520,7044,0.42945639,0.569975751,0.029387644,430,14632,,,0.191,1309,,0.126659575,0.255340426,,,,,,,0.19396903,0.050797388,0.337140672,0.284313726,0.140308742,0.428318709,0.114191826,0.068865176,0.159518475,3.950325297,103222,26130,2.916969341,4.983681252,0.320446735,2238,6984,0.221455869,0.419437602,14.3097342,40,27953,,,95.24076305,136,142796,79.23378006,111.247746,,,,,,,73.76671277,42.16405004,119.79252,,,,104.6855823,85.63475016,123.7364144,,,,9.1,,,,,0,,,,,0.10964467,1080,9850,0.075219052,0.144070288,0.088250385,0.056624441,0.119876329,0.019695432,0.008558401,0.030832462,0.0035533,0,0.009257452,0.926209711,11121,12007,0.898066709,0.954352713,,,,,,,0.947352404,0.882838011,1,,,,0.924339107,0.899400505,0.949277709,0.341,,12007,0.292660174,0.389339826,73.83913625,,,72.77158689,74.90668561,,,,,,,71.31234606,68.38436092,74.2403312,,,,74.00072409,72.83647266,75.16497552,,,,544.0033336,539,79722,496.6000245,591.4066427,,,,,,,659.2127635,528.0023999,813.1365083,,,,541.4231682,488.6574106,594.1889259,,,,57.74598184,18,31171,34.22392859,91.2635471,,,,,,,,,,,,,54.27653897,28.04547971,94.81019064,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.127,,,0.109,0.147,0.173,,,0.149,0.199,0.11,,,0.094,0.127,147.6,34,23031,,,0.143,3970,,,,0.057042481,1547.790677,27134,,,14.01312563,12,85634,7.240786497,24.47811039,,,,,,,,,,,,,15.10619656,7.244008423,27.78083332,,,,0.337,,,0.324,0.351,0.207470163,3355,16171,0.178874418,0.236065907,0.087628161,641,7315,0.061415395,0.113840927,0.002417778,68,28125,,,413.6029412,0.931375358,325.05,349,,,0.129277567,170,1315,0.052479944,0.20607519,3.210586113,,,,,,,2.74303776,2.865496844,3.357150202,3.350122506,,,,,,,2.818556708,3.003560299,3.491057083,0.101121834,,,,,-4966.858,,,,,0.858861249,37771,43978,0.782472649,0.935249848,56050,,,48418.51064,63681.48936,,,,,,,39150,12750.17021,65549.82979,,,,58175,50976.02128,65373.97872,,,,,,0.995861253,5053,5074,,,41.91106364,,,,,0.149295272,,56050,,,3.244997296,6,1849,,,,,,,,,,,,,,,,,,,,,,,,,,21.46900793,28,142796,14.26599986,31.02869401,19.60839239,,,,,,,,,,,,,24.26233704,15.54533715,36.10043432,,,,21.70929158,31,142796,14.75041036,30.8146065,,,,,,,,,,,,,22.5615479,14.60064422,33.30529537,,,,25.55929757,51,199536,19.03057586,33.60575604,,,,,,,,,,,,,26.41684493,18.95718401,35.83743303,,,,6.363636364,,3300,,,16,5,0.608151522,12683,20855,,,0.633,,,,,23.77106453,,,,,0.745673218,7626,10227,0.711686256,0.77966018,0.091553638,891,9732,0.058423038,0.124684237,0.746553241,7635,10227,0.707771121,0.785335362,28125,,,,,0.248426667,6987,28125,,,0.168533333,4740,28125,,,0.15424,4338,28125,,,0.003306667,93,28125,,,0.010666667,300,28125,,,0.000533333,15,28125,,,0.046968889,1321,28125,,,0.770595556,21673,28125,,,0.008237864,215,26099,0.002610771,0.013864957,0.50656,14247,28125,,,0.756525183,21014,27777,, -28,147,28147,MS,Walthall County,2024,1,14784.56034,340,38748,12434.10568,17135.01501,0,,,,2,,,,2,21034.67507,16733.71175,25335.63839,,,,,2,10682.49586,7983.211348,13381.78038,,,,,2,,0.248,,,0.214,0.283,4.178889336,,,3.305427321,5.179872972,4.879969998,,,3.783807877,6.066787365,0.111111111,130,1170,0.093103105,0.129119117,0,,,,,,,0.160211268,0.130045564,0.190376971,,,,0.064912281,0.044686362,0.085138199,,,,,,,0.225,,,0.187,0.266,0.43,,,0.348,0.514,5.7,0.12038089,0.183,,,0.326,,,0.273,0.382,0.21434745,2976,13884,,,0.128054408,,,0.098975807,0.161621611,0.363636364,4,11,0.198476333,0.520352029,607.1,84,13836,,,30.92783505,96,3104,25.05164569,37.76818009,,,,,,,33.53867214,24.81209428,44.33990321,,,,30.53435115,22.18630629,40.99094121,,,,,,,0.180122494,1941,10776,0.156292707,0.203952282,0.000505927,7,13836,,,1976.571429,0.000218007,3,13761,,,4587,7.26691E-05,1,13761,,,13761,2707,,,,,,,1994,,2605,0.33,,,,,,,0.29,,0.35,0.28,,,,,,,0.23,,0.29,0.814759198,7596,9323,0.759996968,0.869521428,0.575612862,1808,3141,0.424231004,0.72699472,0.049287169,242,4910,,,0.305,927,,0.179893617,0.430106383,,,,,,,0.156849315,0.025160628,0.288538002,0.822485207,0.489968364,1,0.070163005,0,0.144236316,7.054740039,97560,13829,5.013328169,9.096151909,0.360989355,1153,3194,0.247347624,0.474631087,13.00954033,18,13836,,,93.8638274,67,71380,72.74317698,119.2037428,,,,,,,78.45957697,50.27053142,116.7416313,,,,111.7377887,80.53076975,151.0370299,,,,8.5,,,,,0,,,,,0.237510955,1355,5705,0.176856714,0.298165197,0.172197309,0.114943095,0.229451524,0.055214724,0.018701116,0.091728332,0.014022787,0,0.030997529,0.787339677,3806,4834,0.718000471,0.856678884,,,,,,,,,,,,,0.811756935,0.63382235,0.98969152,0.512,,4834,0.372082415,0.651917586,71.90966841,,,70.29225906,73.52707776,,,,,,,67.94908179,65.28170519,70.61645839,,,,74.55518715,72.54804029,76.56233402,,,,667.8307673,340,38748,592.0969552,743.5645794,,,,,,,908.3982739,768.6302803,1048.166268,,,,526.2140172,437.8465546,614.5814797,,,,85.02798838,12,14113,43.93520236,148.5267842,,,,,,,147.1453796,70.56192902,270.6055921,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.136,,,0.117,0.156,0.176,,,0.153,0.202,0.142,,,0.122,0.165,264.9,31,11703,,,0.183,2560,,,,0.12038089,1859.042079,15443,,,,,,,,,,,,,,,,,,,,,,,,,,0.351,,,0.337,0.363,0.219496532,1709,7786,0.188517809,0.250475256,0.079949239,252,3152,0.054927962,0.104970515,0.000726691,10,13761,,,1376.1,0.825,99,120,,,,,,,,2.826033149,,,,,,,2.582177233,,3.222685239,2.841213988,,,,,,,2.699421647,,3.100964192,0.164116145,,,,,-16676.75,,,,,0.578128246,36181,62583,0.400920079,0.755336412,40828,,,34789.53192,46866.46809,,,,,,,30063,20733.6383,39392.3617,,,,45929,38726.44681,53131.55319,,,,,,0.991119005,1674,1689,,,28.26174279,,,,,0.188865485,,40828,,,9.661835749,8,828,,,9.938678355,10,100617,4.765982584,18.27758335,,,,,,,,,,,,,,,,,,,12.2162299,10,71380,5.58603821,23.19020964,14.00952648,,,,,,,,,,,,,22.28741024,9.622121829,43.91508311,,,,16.81143177,12,71380,8.686712117,29.36618808,,,,,,,,,,,,,,,,,,,32.79763857,33,100617,22.57638528,46.06007858,,,,,,,48.55154556,30.05417193,74.2161948,,,,22.64108224,11.69897758,39.54941425,,,,23.33333333,,1500,,,21,14,0.645421578,7119,11030,,,0.516,,,,,2.501641241,,,,,0.820226843,4339,5290,0.773786608,0.866667079,0.145944833,709,4858,0.090397751,0.201491915,0.712287335,3768,5290,0.679120268,0.745454402,13761,,,,,0.223966282,3082,13761,,,0.206017005,2835,13761,,,0.419446261,5772,13761,,,0.005595524,77,13761,,,0.005958869,82,13761,,,0.001090037,15,13761,,,0.025506867,351,13761,,,0.528885982,7278,13761,,,0.00586622,77,13126,0,0.01489941,0.513262118,7063,13761,,,1,13884,13884,, -28,149,28149,MS,Warren County,2024,1,14029.84459,1010,124613,12715.74922,15343.93996,0,,,,2,,,,2,16316.72843,14352.98515,18280.47171,,,,,2,12237.13957,10412.37724,14061.90191,,,,,2,,0.21,,,0.179,0.243,3.715340907,,,2.907776884,4.631982328,4.560150808,,,3.54923519,5.691676441,0.135741936,526,3875,0.124957462,0.146526409,0,,,,,,,0.163284133,0.147724927,0.178843339,,,,0.099104859,0.084295977,0.113913742,,,,,,,0.188,,,0.152,0.231,0.419,,,0.343,0.499,6.8,0.085555694,0.151,,,0.296,,,0.245,0.35,0.460757569,20606,44722,,,0.13243298,,,0.103948368,0.165604421,0.1,5,50,0.043746813,0.177010777,933.9,407,43579,,,34.55103455,349,10101,30.92606458,38.17600453,,,,,,,40.59492563,35.37115826,45.81869301,,,,28.80658436,23.47153028,34.14163845,,,,,,,0.135619732,4682,34523,0.117747391,0.153492072,0.000665458,29,43579,,,1502.724138,0.000633075,27,42649,,,1579.592593,0.005814908,248,42649,,,171.9717742,3490,,,,,,,5221,,2822,0.46,,,,,,0.36,0.46,,0.45,0.43,,,,,,0.58,0.34,,0.47,0.876592065,26360,30071,0.853947963,0.899236168,0.660702637,7090,10731,0.577362,0.744043275,0.041997612,809,19263,,,0.303,2953,,0.192191489,0.413808511,,,,,,,0.437766775,0.360565283,0.514968266,,,,0.043939394,0.000424747,0.087454041,5.548661969,120467,21711,4.75248537,6.344838567,0.418148958,4396,10513,0.349471041,0.486826876,14.22703596,62,43579,,,99.67143708,226,226745,86.67654815,112.666326,,,,,,,82.88736328,66.81891342,101.653993,,,,121.3786355,100.4325213,142.3247497,,,,8.9,,,,,0,,,,,0.178403756,3230,18105,0.148874074,0.207933437,0.155097493,0.1253234,0.184871586,0.020160177,0.010354834,0.029965519,0.01380834,0.005700715,0.021915965,0.900046975,17244,19159,0.871661289,0.928432662,,,,,,,0.915704388,0.799814262,1,,,,0.870831128,0.844837533,0.896824722,0.222,,19159,0.18122738,0.26277262,71.8935967,,,70.97536873,72.81182467,,,,,,,69.98279336,68.65480034,71.31078638,,,,73.14559475,71.85319931,74.4379902,,,,626.7396766,1010,124613,585.9065745,667.5727787,,,,,,,712.6660012,649.0667037,776.2652986,,,,575.7001129,519.7387329,631.661493,,,,111.2823147,52,46728,83.11095532,145.9319503,,,,,,,118.49247,80.50988449,168.1906028,,,,100.5418086,59.5874478,158.8994038,,,,10.17117341,41,4031,7.299009642,13.79834522,,,,,,,11.34380454,7.410149745,16.62130196,,,,,,,,,,,,,0.119,,,0.102,0.137,0.16,,,0.138,0.184,0.132,,,0.113,0.153,437,159,36385,,,0.151,6830,,,,0.085555694,4172.807882,48773,,,10.46329998,14,133801,5.720383462,17.55563944,,,,,,,,,,,,,20.73001547,11.03786017,35.44895779,,,,0.336,,,0.322,0.349,0.166470708,4106,24665,0.14264092,0.190300495,0.061668915,640,10378,0.042605085,0.080732745,0.001242702,53,42649,,,804.6981132,0.88,469.92,534,,,0.141881029,353,2488,0.076036096,0.207725962,2.746955953,,,,,,,2.467812122,,3.350389207,2.818181929,,,,,,,2.499265723,,3.538785448,0.136552231,,,,,-14312.13,,,,,0.736028581,40380,54862,0.596688258,0.875368903,52117,,,45910.53192,58323.46809,,,,44167,10070.14894,78263.85106,37117,30121.76596,44112.23404,39500,5191.06383,73808.93617,78665,70192.31915,87137.68085,,,,,,0.998705967,6946,6955,,,34.89920958,,,,,0.17128768,,52117,,,10.51524711,30,2853,,,17.73656533,57,321370,13.43350137,22.97977764,,,,,,,29.3436589,21.48324631,39.14032885,,,,7.271381166,3.629847279,13.01050947,,,,14.95116602,35,226745,10.29169474,20.99699588,15.43584203,,,,,,,,,,,,,26.02422739,16.67421354,38.7219875,,,,29.98963594,68,226745,23.28812576,38.01900953,,,,,,,36.93893364,26.50801653,50.11183448,,,,25.40483068,16.7419435,36.96269484,,,,24.58225721,79,321370,19.46200453,30.63682707,,,,,,,21.05088573,14.49046113,29.5632702,,,,28.42449001,20.57094436,38.28760151,,,,24.89795918,,4900,,,112,10,0.606802133,21053,34695,,,0.599,,,,,38.46134359,,,,,0.7177079,12074,16823,0.687523936,0.747891864,0.136876911,2194,16029,0.108567203,0.165186619,0.784640076,13200,16823,0.75259464,0.816685512,42649,,,,,0.232572862,9919,42649,,,0.189148632,8067,42649,,,0.487678492,20799,42649,,,0.003634317,155,42649,,,0.00822997,351,42649,,,0.000281367,12,42649,,,0.021266618,907,42649,,,0.47131234,20101,42649,,,0.011550006,481,41645,0.00567699,0.017423022,0.520387348,22194,42649,,,0.424958633,19005,44722,, -28,151,28151,MS,Washington County,2024,1,19417.24815,1296,122357,17859.87508,20974.62122,0,,,,2,,,,2,21479.09002,19581.51688,23376.66317,,,,,2,14133.70827,11360.98153,16906.43502,,,,,2,,0.287,,,0.247,0.329,4.362636532,,,3.496123141,5.279529749,5.202341251,,,4.219198582,6.232520302,0.142414122,597,4192,0.131834729,0.152993516,0,,,,,,,0.156268746,0.143943052,0.168594441,,,,0.087811271,0.067729071,0.107893471,,,,,,,0.238,,,0.193,0.287,0.442,,,0.375,0.508,4.6,0.176469266,0.206,,,0.368,,,0.311,0.425,0.735229954,33028,44922,,,0.113866233,,,0.089684696,0.142875303,0.215384615,14,65,0.152573199,0.283527275,895,391,43687,,,41.65048544,429,10300,37.70911284,45.59185803,,,,,,,45.51954242,40.95473692,50.08434792,,,,24.42078898,17.36556825,33.38402246,,,,,,,0.144615923,4957,34277,0.125552093,0.163679753,0.000412022,18,43687,,,2427.055556,0.00042339,18,42514,,,2361.888889,0.001764125,75,42514,,,566.8533333,4341,,,,,,,5155,,3655,0.44,,,,,,0.2,0.45,,0.45,0.37,,,,,,0.24,0.29,,0.45,0.800987066,23533,29380,0.781218341,0.820755791,0.533668437,5627,10544,0.469864321,0.597472553,0.057573495,848,14729,,,0.396,4203,,0.254212766,0.537787234,,,,,,,0.528470588,0.491210861,0.565730316,0.767918089,0.731871242,0.803964936,0.095375723,0.04478118,0.145970265,5.464880094,83405,15262,4.858609642,6.071150546,0.5597802,6316,11283,0.486935201,0.632625199,15.56527113,68,43687,,,133.9545457,297,221717,118.7197967,149.1892946,,,,,,,129.6350804,111.9749689,147.2951918,,,,158.8518843,127.2338474,195.9432124,,,,9.1,,,,,1,,,,,0.217841163,3895,17880,0.187367971,0.248314356,0.196644489,0.166667619,0.22662136,0.032997763,0.020648648,0.045346878,0.00950783,0.003896467,0.015119193,0.851795403,13972,16403,0.826229325,0.877361482,,,,,,,0.847611449,0.79998432,0.895238579,,,,0.871993941,0.852694274,0.891293607,0.193,,16403,0.156978378,0.229021622,67.44193697,,,66.52593994,68.357934,,,,,,,65.96079846,64.88616076,67.03543616,,,,71.02559471,69.26717487,72.78401454,,,,853.2643201,1296,122357,803.8910864,902.6375538,,,,,,,931.5608007,870.1953817,992.9262198,,,,680.9385971,594.8144482,767.062746,,,,142.479137,70,49130,111.0694771,180.0138181,,,,,,,163.6229283,125.4487609,209.7572096,,,,,,,,,,12.41664751,54,4349,9.327767756,16.20103159,,,,,,,14.82989241,11.04182897,19.49856975,,,,,,,,,,,,,0.146,,,0.125,0.168,0.18,,,0.156,0.207,0.165,,,0.143,0.187,551.6,197,35717,,,0.206,9380,,,,0.176469266,9024.108876,51137,,,,,,,,,,,,,,,,,,,,,,,,,,0.382,,,0.367,0.396,0.185284505,4422,23866,0.159071739,0.211497271,0.053103007,581,10941,0.036422156,0.069783858,0.00169356,72,42514,,,590.4722222,0.787242798,382.6,486,,,,,,,,2.691409152,,,,,,,2.638626549,,3.044494613,2.739049345,,,,,,,2.734550735,,2.807076717,0.376081847,,,,,-24786.84,,,,,0.735296596,34906,47472,0.648511434,0.822081758,39690,,,35407.78723,43972.21277,38125,5873.765957,70376.23404,84156,73138.29787,95173.70213,30091,27624.61702,32557.38298,60629,13379.29787,107878.7021,62037,49554.95745,74519.04255,,,,,,0.998621535,6520,6529,,,49.11747877,,,,,0.215696649,,39690,,,18.18181818,58,3190,,,42.2608948,134,317078,35.10535568,49.41643392,,,,,,,54.44016631,44.85797864,64.02235397,,,,12.61288532,6.048368771,23.19554518,,,,11.07176093,24,221717,7.018546683,16.61307758,10.82460975,,,,,,,,,,,,,22.68876637,11.32615043,40.59647033,,,,53.22099794,118,221717,43.61819357,62.82380231,,,,,,,60.12061699,48.69789278,73.41756336,,,,38.34355828,23.73526692,58.6122019,,,,26.4919042,84,317078,21.13098031,32.79878004,,,,,,,24.14684796,18.19071048,31.4304417,,,,35.31607891,23.46727796,51.04156695,,,,49.375,,4800,,,182,55,0.540294029,18008,33330,,,0.549,,,,,55.14346105,,,,,0.577559283,9986,17290,0.548228632,0.606889933,0.20487536,3345,16327,0.174002986,0.235747734,0.571255061,9877,17290,0.541767848,0.600742274,42514,,,,,0.254222139,10808,42514,,,0.180528767,7675,42514,,,0.725525709,30845,42514,,,0.002563861,109,42514,,,0.007432846,316,42514,,,0.000470433,20,42514,,,0.018582114,790,42514,,,0.240226749,10213,42514,,,0.007819267,325,41564,0.003210683,0.012427851,0.533471327,22680,42514,,,0.348492943,15655,44922,, -28,153,28153,MS,Wayne County,2024,1,13707.14355,404,55697,11771.85689,15642.4302,0,,,,2,,,,2,18119.62475,14686.74613,21552.50336,,,,,2,10984.89126,8668.167144,13301.61537,,,,,2,,0.241,,,0.208,0.28,4.050826267,,,3.253580887,4.956638786,5.229669314,,,4.170546156,6.386284415,0.141440501,271,1916,0.1258367,0.157044302,0,,,,,,,0.190899001,0.165236625,0.216561378,,,,0.097938144,0.079232861,0.116643428,,,,,,,0.212,,,0.173,0.255,0.421,,,0.345,0.502,6.9,0.070537777,0.153,,,0.326,,,0.275,0.383,0.417361848,8255,19779,,,0.134871234,,,0.106483529,0.168528531,0.107142857,3,28,0.033251579,0.216648149,801.7,158,19709,,,51.2935883,228,4445,44.6354666,57.95171001,,,,,,,50.2607871,40.69253908,59.82903512,131.5789474,63.09721969,241.978369,51.35387488,41.75693118,60.95081859,,,,,,,0.167763574,2651,15802,0.145125276,0.190401872,0.000304429,6,19709,,,3284.833333,0.000152431,3,19681,,,6560.333333,0.000558915,11,19681,,,1789.181818,4445,,,,,,,5356,,4217,0.32,,,,,,,0.33,,0.32,0.37,,,,,,,0.3,,0.38,0.824514082,10393,12605,0.78798544,0.861042724,0.549028896,2318,4222,0.443540227,0.654517566,0.048663177,344,7069,,,0.397,1894,,0.282617021,0.511382979,,,,,,,0.328636135,0.194719544,0.462552725,0.386819484,0.016928412,0.756710556,0.250919493,0.148865686,0.3529733,6.32458679,98341,15549,4.627306755,8.021866826,0.369466281,1786,4834,0.269565842,0.469366719,12.17717794,24,19709,,,102.0276763,103,100953,82.32362835,121.7317241,,,,,,,109.6573209,79.67717722,147.209835,,,,102.3239681,77.89374545,131.9904637,,,,9.2,,,,,0,,,,,0.102950408,820,7965,0.065571976,0.14032884,0.087989724,0.052079626,0.123899822,0.013810421,0,0.02769187,0.012554928,0,0.02519906,0.83711814,6193,7398,0.771173833,0.903062447,,,,,,,0.801554094,0.642358101,0.960750088,,,,0.835249042,0.730251611,0.940246474,0.42,,7398,0.328000354,0.511999646,72.79581768,,,71.38797869,74.20365666,,,,,,,69.48366579,67.17279985,71.79453173,,,,74.65948433,72.89800434,76.42096432,,,,591.2965279,404,55697,530.46576,652.1272958,,,,,,,764.1110604,651.2076714,877.0144494,,,,500.203776,427.6725675,572.7349845,,,,107.1911264,23,21457,67.9499792,160.83932,,,,,,,134.7569193,71.75238407,230.438436,,,,93.057882,44.62487154,171.1367583,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.132,,,0.114,0.153,0.176,,,0.152,0.202,0.13,,,0.111,0.149,215.1,35,16273,,,0.153,3040,,,,0.070537777,1463.44725,20747,,,21.59145643,13,60209,11.4965412,36.92204806,,,,,,,,,,,,,29.09937436,13.95428109,53.51478551,,,,0.38,,,0.365,0.394,0.209997308,2340,11143,0.179018584,0.240976031,0.069310979,339,4891,0.046672682,0.091949277,0.000863777,17,19681,,,1157.705882,0.89,179.78,202,,,,,,,,2.975508891,,,,,,,2.782645557,,3.154736682,2.847621678,,,,,,,2.665352956,,3.011259216,0.190809333,,,,,-17652.67,,,,,0.625592917,29675,47435,0.486655194,0.76453064,43562,,,37195.87234,49928.12766,,,,,,,22315,20029.7234,24600.2766,,,,51611,43272.95745,59949.04255,,,,,,1,2851,2851,,,48.00242377,,,,,0.150429273,,43562,,,3.802281369,5,1315,,,14.08460623,20,141999,8.603243393,21.75253199,,,,,,,23.08566558,12.29214464,39.47719122,,,,,,,,,,17.64825334,16,100953,9.877593423,29.10811002,15.84895942,,,,,,,,,,,,,30.74334167,16.80767097,51.58210341,,,,26.74511902,27,100953,17.62520196,38.912744,,,,,,,29.90654206,15.45314669,52.2407104,,,,26.01456816,14.56015632,42.90707401,,,,35.91574589,51,141999,26.74163187,47.22257296,,,,,,,42.6196903,27.30723976,63.41472083,,,,33.2070645,21.88366475,48.3145354,,,,30.90909091,,2200,,,59,9,0.665079365,10056,15120,,,0.538,,,,,3.029030778,,,,,0.872874494,6468,7410,0.833355838,0.91239315,0.116269285,829,7130,0.072352199,0.16018637,0.781646424,5792,7410,0.72655281,0.836740038,19681,,,,,0.246024084,4842,19681,,,0.182511051,3592,19681,,,0.398302932,7839,19681,,,0.003201057,63,19681,,,0.002692953,53,19681,,,0.000254052,5,19681,,,0.017936081,353,19681,,,0.567654083,11172,19681,,,0.01684815,311,18459,,,0.513286927,10102,19681,,,1,19779,19779,, -28,155,28155,MS,Webster County,2024,1,14293.94564,238,27248,11557.77838,17030.1129,0,,,,2,,,,2,20356.44792,13526.71181,29420.73503,,,,,2,12919.9431,10002.53771,15837.34848,,,,,2,,0.204,,,0.172,0.239,3.885360121,,,3.065718881,4.916559784,5.076892561,,,4.008047318,6.322731191,0.122827347,106,863,0.100927516,0.144727177,0,,,,,,,0.191860465,0.133012999,0.250707932,,,,0.105341246,0.082164415,0.128518077,,,,,,,0.195,,,0.156,0.239,0.378,,,0.3,0.464,6.9,0.03607006,0.169,,,0.297,,,0.243,0.355,0.080394922,798,9926,,,0.157785064,,,0.12360736,0.196798582,0.166666667,1,6,0.011498194,0.426636125,500.9,50,9983,,,27.44912447,58,2113,20.84327103,35.48435861,,,,,,,38.36317136,21.47157579,63.27421706,,,,25,17.94043163,33.91532291,,,,,,,0.160269773,1307,8155,0.138822965,0.181716582,0.000400681,4,9983,,,2495.75,0.00030021,3,9993,,,3331,0.00070049,7,9993,,,1427.571429,3852,,,,,,,4522,,3669,0.4,,,,,,,0.52,,0.39,0.32,,,,,,,0.24,,0.33,0.848260548,5730,6755,0.811078911,0.885442185,0.590828924,1340,2268,0.471830841,0.709827008,0.038967742,151,3875,,,0.271,633,,0.189978723,0.352021277,,,,,,,0.494969819,0.379744658,0.61019498,,,,0.140240412,0.078777039,0.201703785,4.233056737,100497,23741,3.46017822,5.005935254,0.279643009,658,2353,0.189156916,0.370129102,14.02384053,14,9983,,,114.5170855,56,48901,86.50497573,148.709961,,,,,,,,,,,,,128.0175567,94.70809319,169.245999,,,,9.1,,,,,0,,,,,0.102702703,380,3700,0.067949521,0.137455884,0.0957476,0.060157443,0.131337756,0.006216216,0,0.016053674,0.006486487,0,0.014620852,0.916290727,3656,3990,0.890313252,0.942268202,,,,,,,,,,,,,0.884353742,0.651695365,1,0.562,,3990,0.454382718,0.669617282,70.4355629,,,68.68114589,72.18997991,,,,,,,66.4629381,62.35394002,70.57193618,,,,71.23967991,69.32496714,73.15439267,,,,665.2543868,238,27248,576.0798066,754.4289669,,,,,,,916.2843971,680.0839407,1208.006748,,,,619.6898707,523.909289,715.4704523,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.123,,,0.105,0.143,0.17,,,0.145,0.197,0.11,,,0.094,0.129,216.6,18,8309,,,0.169,1680,,,,0.03607006,369.8263232,10253,,,,,,,,,,,,,,,,,,,,,,,,,,0.33,,,0.315,0.343,0.187176836,1086,5802,0.15977258,0.214581091,0.096512571,238,2466,0.066725337,0.126299805,0.002001401,20,9993,,,499.65,0.925,116.55,126,,,,,,,,3.177884935,,,,,,,2.959525318,,3.299559993,3.473236244,,,,,,,3.128482588,,3.615108628,0.044617973,,,,,-7120.133,,,,,0.744077221,40547,54493,0.533150012,0.95500443,51249,,,43631.80851,58866.19149,,,,,,,32708,10291.31915,55124.68085,22731,6518.404255,38943.59575,59559,53690.91489,65427.08511,,,,,,0.993174061,1746,1758,,,44.57101148,,,,,0.132080626,,51249,,,3.327787022,2,601,,,,,,,,,,,,,,,,,,,,,,,,,,23.11449861,11,48901,11.08430054,42.50838592,22.49442752,,,,,,,,,,,,,25.72886038,11.76487331,48.8413914,,,,28.62927139,14,48901,15.65188907,48.0350527,,,,,,,,,,,,,28.73863518,14.34622314,51.42135676,,,,36.46068809,25,68567,23.5954349,53.82316814,,,,,,,,,,,,,42.91925582,27.20712653,64.39995688,,,,,,1100,,,-888,0,0.727088949,5395,7420,,,0.54,,,,,7.540719351,,,,,0.778843788,3166,4065,0.750250773,0.807436804,0.079908093,313,3917,0.042092178,0.117724008,0.763591636,3104,4065,0.708388324,0.818794948,9993,,,,,0.236865806,2367,9993,,,0.186930852,1868,9993,,,0.177224057,1771,9993,,,0.004403082,44,9993,,,0.002101471,21,9993,,,0.00010007,1,9993,,,0.019213449,192,9993,,,0.785149605,7846,9993,,,0.000643777,6,9320,0,0.010278702,0.513459422,5131,9993,,,1,9926,9926,, -28,157,28157,MS,Wilkinson County,2024,1,16127.22572,235,23439,13014.61126,19239.84018,0,,,,2,,,,2,16910.12953,13210.30036,20609.95871,,,,,2,14369.58312,9109.083058,21561.43007,1,,,,2,,0.303,,,0.264,0.345,4.581644119,,,3.657786734,5.554084232,5.103972098,,,4.016319741,6.307335631,0.146774194,91,620,0.118918302,0.174630086,0,,,,,,,0.162393162,0.128978497,0.195807828,,,,0.103448276,0.053877996,0.153018556,,,,,,,0.254,,,0.211,0.302,0.458,,,0.373,0.546,6.3,0.084987184,0.171,,,0.396,,,0.335,0.461,0.104693141,899,8587,,,0.120473095,,,0.094036536,0.152439111,0.133333333,2,15,0.028850285,0.292021979,733.6,61,8315,,,26.76399027,44,1644,19.4467563,35.92940771,,,,,,,32.40740741,23.35640874,43.80540029,,,,,,,,,,,,,0.158710142,881,5551,0.136071844,0.18134844,0.000360794,3,8315,,,2771.666667,0.00024561,2,8143,,,4071.5,0.00024561,2,8143,,,4071.5,4402,,,,,,,5997,,1855,0.49,,,,,,,0.5,,0.48,0.18,,,,,,,0.11,,0.24,0.853122967,5245,6148,0.808365583,0.897880351,0.320715474,771,2404,0.221658456,0.419772492,0.063565892,164,2580,,,0.395,638,,0.24487234,0.54512766,,,,,,,0.388730385,0.276363842,0.501096929,,,,0.044077135,0,0.172674827,3.512033978,74420,21190,2.771635414,4.252432542,0.657303371,1170,1780,0.500210666,0.814396076,10.82381239,9,8315,,,151.5434114,65,42892,116.9580055,193.1545179,,,,,,,153.0374609,112.0426556,204.1305267,,,,151.1842768,89.60138401,238.9363369,,,,8.2,,,,,0,,,,,0.086696562,290,3345,0.037985667,0.135407457,0.089939024,0.039848527,0.140029521,0,0,0.013535604,0,0,0.009571118,0.806707537,2237,2773,0.740092433,0.873322641,,,,,,,,,,,,,0.826180258,0.695875274,0.956485242,0.619,,2773,0.4567167,0.781283301,70.01684467,,,68.02440881,72.00928054,,,,,,,69.25348907,66.90504963,71.60192851,,,,71.26397271,67.34017106,75.18777435,,,,770.5170502,235,23439,666.0424828,874.9916176,,,,,,,848.0079402,714.475884,981.5399964,,,,649.494315,487.9201191,847.4491937,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.153,,,0.132,0.175,0.18,,,0.156,0.207,0.176,,,0.152,0.202,350.7,25,7128,,,0.171,1490,,,,0.084987184,839.5034063,9878,,,,,,,,,,,,,,,,,,,,,,,,,,0.386,,,0.369,0.4,0.193564733,764,3947,0.163777499,0.223351967,0.076196102,129,1693,0.051174825,0.101217378,0.000614024,5,8143,,,1628.6,0.825,67.65,82,,,,,,,,2.851201491,,,,,,,2.851376241,,,2.419922635,,,,,,,2.41700614,,,,,,,,-36018.49,,,,,0.619026141,32939,53211,0.492620512,0.745431771,36798,,,31281.40426,42314.59575,,,,,,,29163,26602.48936,31723.51064,,,,54189,49276.48936,59101.51064,,,,,,0.997047244,1013,1016,,,7.086303227,,,,,0.173596391,,36798,,,7.843137255,4,510,,,37.66725078,23,61061,23.87780586,56.51937062,,,,,,,46.76830979,28.56729863,72.22986134,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,39.63443066,17,42892,23.08851644,63.45856294,,,,,,,49.90351986,27.93062124,82.30826692,,,,,,,,,,44.21807701,27,61061,29.13999137,64.3349805,,,,,,,51.44514077,32.24039583,77.88856138,,,,,,,,,,25,,800,,,9,11,0.600290909,4127,6875,,,0.345,,,,,3.982329549,,,,,0.821078431,2680,3264,0.765208288,0.876948575,0.083789881,260,3103,0.029024712,0.13855505,0.707720588,2310,3264,0.633399063,0.782042114,8143,,,,,0.201645585,1642,8143,,,0.193294855,1574,8143,,,0.694461501,5655,8143,,,0.002578902,21,8143,,,0.000859634,7,8143,,,0,0,8143,,,0.011666462,95,8143,,,0.281223136,2290,8143,,,0,0,8105,0,0.011760537,0.463342748,3773,8143,,,1,8587,8587,, -28,159,28159,MS,Winston County,2024,1,13252.96671,390,48690,11254.36351,15251.56991,0,,,,2,,,,2,15069.29942,12074.3448,18064.25405,,,,,2,11915.54428,8990.094226,14840.99434,,,,,2,,0.246,,,0.212,0.279,4.120151626,,,3.269474054,5.043852085,5.251367486,,,4.17733281,6.367575707,0.128334535,178,1387,0.110732433,0.145936637,0,,,,,,,0.17862166,0.150466373,0.206776946,,,,0.077557756,0.056261563,0.098853949,,,,,,,0.223,,,0.183,0.262,0.42,,,0.345,0.494,6,0.102586738,0.178,,,0.337,,,0.283,0.389,0.63176019,11191,17714,,,0.125171453,,,0.09803928,0.156172998,0.272727273,6,22,0.159704728,0.392079091,915,161,17596,,,32.09414282,120,3739,26.35177206,37.83651357,,,,,,,36.77581864,28.82637125,46.24007062,,,,24.61139896,17.4164907,33.78106795,,,,,,,0.150303951,1978,13160,0.130048632,0.170559271,0.000284156,5,17596,,,3519.2,0.000285014,5,17543,,,3508.6,0.001881092,33,17543,,,531.6060606,2497,,,,,,,2802,,2426,0.42,,,,,,,0.39,,0.44,0.25,,,,,,,0.23,,0.25,0.854732744,10538,12329,0.825680946,0.883784542,0.545158053,2173,3986,0.450067774,0.640248332,0.043569627,311,7138,,,0.309,1176,,0.193425532,0.424574468,,,,,,,0.580614657,0.434269616,0.726959699,,,,0.320838628,0.230466269,0.411210987,5.172176995,93394,18057,4.040364656,6.303989334,0.428534505,1658,3869,0.318597388,0.538471623,18.75426233,33,17596,,,109.1228969,98,89807,88.59124241,132.9858589,,,,,,,93.27911983,66.3305728,127.5156275,,,,125.6647892,94.92583126,163.1861814,,,,9.4,,,,,0,,,,,0.138028169,980,7100,0.101528407,0.174527931,0.114775161,0.081714599,0.147835722,0.021126761,0.004828658,0.037424863,0.008450704,0,0.018537099,0.857255521,5435,6340,0.822917557,0.891593485,,,,,,,0.843137255,0.801480529,0.884793981,,,,0.858070501,0.810160702,0.9059803,0.354,,6340,0.280532337,0.427467663,72.46175578,,,71.07728068,73.84623088,,,,,,,71.25693972,69.22339275,73.2904867,,,,73.23486325,71.17864477,75.29108172,,,,600.0524179,390,48690,536.2626072,663.8422286,,,,,,,673.0556992,572.1919694,773.9194289,,,,540.280787,455.4014838,625.1600903,,,,90.72866459,16,17635,51.85927107,147.3376671,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.135,,,0.116,0.153,0.176,,,0.152,0.2,0.144,,,0.125,0.164,287,43,14982,,,0.178,3180,,,,0.102586738,1969.460188,19198,,,,,,,,,,,,,,,,,,,,,,,,,,0.372,,,0.358,0.385,0.183269882,1733,9456,0.155865626,0.210674137,0.06926629,270,3898,0.047819482,0.090713099,0.001197059,21,17543,,,835.3809524,0.875,166.25,190,,,,,,,,2.772355149,,,,,,,2.560258899,,3.315054907,2.902805775,,,,,,,2.694727449,,3.386159081,0.26137029,,,,,-11916.46,,,,,0.747114131,38380,51371,0.554078114,0.940150147,50082,,,44870.42553,55293.57447,,,,,,,33271,27897.38298,38644.61702,,,,59638,50428.97872,68847.02128,,,,,,1,2625,2625,,,24.01132826,,,,,0.17143884,,50082,,,7.667031763,7,913,,,14.25358715,18,126284,8.447579092,22.52681279,,,,,,,27.26699501,15.58544361,44.27989161,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,21.15648001,19,89807,12.737583,33.03846423,,,,,,,33.48481225,18.30645845,56.18182521,,,,,,,,,,33.25837002,42,126284,23.96970775,44.95565454,,,,,,,25.56280782,14.30730949,42.16196403,,,,41.33282462,26.99997332,60.5621647,,,,10.47619048,,2100,,,22,0,0.660185847,9236,13990,,,0.599,,,,,2.792830359,,,,,0.71462628,5096,7131,0.674260042,0.754992518,0.123302143,817,6626,0.086530193,0.160074094,0.695133922,4957,7131,0.645758531,0.744509314,17543,,,,,0.219688765,3854,17543,,,0.217978681,3824,17543,,,0.464002736,8140,17543,,,0.01305364,229,17543,,,0.003705182,65,17543,,,0.000570028,10,17543,,,0.018012883,316,17543,,,0.492732144,8644,17543,,,0.001487299,25,16809,0,0.00796107,0.507324859,8900,17543,,,1,17714,17714,, -28,161,28161,MS,Yalobusha County,2024,1,15792.07347,348,33471,13156.85903,18427.28792,0,,,,2,,,,2,12512.84375,8955.803984,16069.88351,,,,,2,18928.37311,14939.04746,22917.69875,,,,,2,,0.242,,,0.211,0.274,4.080712961,,,3.270717392,5.005510317,5.011377999,,,3.979664023,6.15830763,0.117481203,125,1064,0.09813341,0.136828996,0,,,,,,,0.145199063,0.111782904,0.178615223,,,,0.101472995,0.077530122,0.125415869,,,,,,,0.229,,,0.19,0.271,0.434,,,0.355,0.519,6.4,0.092220135,0.165,,,0.33,,,0.276,0.384,0.402772214,5027,12481,,,0.127534439,,,0.099391475,0.16017455,0.130434783,3,23,0.042432852,0.254040702,636.3,79,12415,,,45.16640254,114,2524,36.87516903,53.45763604,,,,,,,36.90685413,26.59921418,49.88734515,,,,49.2845787,37.78620388,63.18060563,,,,,,,0.131025829,1253,9563,0.111961999,0.150089659,8.05477E-05,1,12415,,,12415,0.00016176,2,12364,,,6182,0.00024264,3,12364,,,4121.333333,5318,,,,,,,8293,,4473,0.32,,,,,,,0.33,,0.31,0.31,,,,,,,0.19,,0.33,0.844660194,7569,8961,0.806760505,0.882559883,0.42162508,1318,3126,0.322595186,0.520654974,0.040850705,194,4749,,,0.305,801,,0.188234043,0.421765957,,,,,,,0.543442623,0.439968054,0.646917192,,,,0.162481536,0.030731853,0.294231219,4.897082484,91311,18646,4.02957711,5.764587858,0.420974889,1140,2708,0.311408773,0.530541006,13.69311317,17,12415,,,125.4194221,77,61394,98.97904658,156.7527584,,,,,,,71.89984774,41.8843109,115.1186213,,,,165.8841061,126.2786674,213.9784108,,,,8.9,,,,,0,,,,,0.107632094,550,5110,0.075073602,0.140190586,0.087349398,0.054852013,0.119846782,0.017221135,0,0.035126592,0.005675147,0,0.01348603,0.892406331,4454,4991,0.852003905,0.932808758,,,,,,,,,,,,,0.922401171,0.861654133,0.983148209,0.42,,4991,0.328611912,0.511388088,69.85302147,,,68.19544895,71.51059398,,,,,,,71.48382561,69.01661674,73.95103449,,,,68.16351921,65.84237781,70.48466061,,,,727.6011825,348,33471,644.825049,810.377316,,,,,,,630.5465461,509.9345568,751.1585354,,,,825.3414596,706.741624,943.9412952,,,,119.4437335,14,11721,65.30100057,200.4062889,,,,,,,,,,,,,170.0102006,81.52649942,312.654812,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.135,,,0.117,0.154,0.178,,,0.154,0.204,0.135,,,0.116,0.155,284.4,30,10550,,,0.165,2070,,,,0.092220135,1169.16687,12678,,,,,,,,,,,,,,,,,,,,,,,,,,0.357,,,0.345,0.369,0.160970707,1121,6964,0.13594943,0.185991983,0.053304126,146,2739,0.035431785,0.071176466,0.00113232,14,12364,,,883.1428571,,,,,,,,,,,2.885677097,,,,,,,2.651399979,,3.218148902,2.535942502,,,,,,,2.384858546,,2.725377078,0.085219735,,,,,-23214.285,,,,,0.692081417,35056,50653,0.532843753,0.85131908,45658,,,38874.85106,52441.14894,,,,,,,28951,21507.76596,36394.23404,67963,60076.53192,75849.46809,55446,45756.80851,65135.19149,,,,,,0.995918367,1464,1470,,,22.01895739,,,,,0.153620395,,45658,,,3.901170351,3,769,,,,,,,,,,,,,,,,,,,,,,,,,,22.79244796,14,61394,11.77719046,39.81381971,22.80353129,,,,,,,,,,,,,35.0657501,16.81539017,64.48716292,,,,29.31882594,18,61394,17.37619438,46.3363851,,,,,,,,,,,,,36.55073523,19.46172714,62.50287041,,,,40.55056076,35,86312,28.24495134,56.39601373,,,,,,,36.0262992,18.61531451,62.93069455,,,,46,29.16005407,69.02258579,,,,14.16666667,,1200,,,5,12,0.68644958,6535,9520,,,0.534,,,,,4.397973885,,,,,0.696631414,3557,5106,0.653232838,0.74002999,0.09937621,462,4649,0.059398041,0.139354379,0.715236976,3652,5106,0.659022195,0.771451758,12364,,,,,0.21772889,2692,12364,,,0.216596571,2678,12364,,,0.385716597,4769,12364,,,0.003316079,41,12364,,,0.002426399,30,12364,,,0.00008088,1,12364,,,0.017874474,221,12364,,,0.576674216,7130,12364,,,0.003998299,47,11755,0,0.014915599,0.509624717,6301,12364,,,1,12481,12481,, -28,163,28163,MS,Yazoo County,2024,1,12988.95631,566,78318,11442.19239,14535.72022,0,,,,2,,,,2,15945.00407,13725.58623,18164.4219,,,,,2,11655.7325,9074.385424,14237.07957,,,,,2,,0.299,,,0.263,0.338,4.489667285,,,3.597551953,5.516017128,4.707422106,,,3.648420336,5.84347288,0.144874715,318,2195,0.130149896,0.159599535,0,,,,,,,0.162341983,0.143698572,0.180985394,,,,0.108066971,0.084326682,0.13180726,,,,,,,0.245,,,0.205,0.289,0.459,,,0.373,0.543,4.7,0.203426204,0.191,,,0.385,,,0.327,0.443,0.654451632,17502,26743,,,0.134895393,,,0.104530496,0.168499942,0.068965517,2,29,0.012471029,0.173466731,803.9,212,26373,,,43.75118889,230,5257,38.09684768,49.4055301,,,,,,,55.15449033,47.33244617,62.97653449,,,,22.60232132,15.91412008,31.15432263,,,,,,,0.146637574,2621,17874,0.125190766,0.168084383,0.000227505,6,26373,,,4395.5,0.00026977,7,25948,,,3706.857143,0.001965469,51,25948,,,508.7843137,2612,,,,,,,3434,,2202,0.34,,,,,,,0.33,,0.34,0.36,,,,,,0.42,0.28,,0.4,0.770397894,14928,19377,,,0.363398693,3336,9180,,,0.045172919,401,8877,,,0.494,2706,,0.377234043,0.610765957,,,,,,,0.539372105,0.472494399,0.606249811,,,,0.145141451,0.056497105,0.233785798,5.482696377,88085,16066,3.647235168,7.318157587,0.438940489,2552,5814,0.340869108,0.537011869,7.20433777,19,26373,,,117.8171305,163,138350,99.72995674,135.9043042,,,,,,,109.5778704,87.64815214,135.3277785,,,,157.9679009,124.2517749,198.0141317,,,,9.1,,,,,0,,,,,0.171428571,1470,8575,0.132778997,0.210078146,0.135135135,0.098151941,0.17211833,0.039650146,0.020162701,0.05913759,0.012827988,0.000566527,0.02508945,0.773971054,6845,8844,0.730912556,0.817029551,,,,,,,0.710834371,0.621596931,0.800071811,,,,0.815180266,0.782318658,0.848041874,0.452,,8844,0.370246116,0.533753884,71.76330245,,,70.62273878,72.90386612,,,,,,,69.5487444,67.9810758,71.11641301,94.65126461,70.38459686,118.9179324,72.80051699,70.95588233,74.64515164,,,,636.9459132,566,78318,583.7441856,690.1476409,,,,,,,775.2960923,692.5131452,858.0790394,,,,562.6457945,482.8106891,642.4808999,,,,122.1280818,32,26202,83.53551756,172.4084119,,,,,,,135.7542847,86.98033178,201.9916149,,,,,,,,,,12.77372263,28,2192,8.48804592,18.46158574,,,,,,,14.43569554,9.046773538,21.85581653,,,,,,,,,,,,,0.151,,,0.132,0.173,0.176,,,0.152,0.203,0.164,,,0.142,0.187,489.4,110,22475,,,0.191,5320,,,,0.203426204,5709.156401,28065,,,20.47082907,17,83045,11.92501231,32.77578038,,,,,,,,,,,,,38.98497307,19.46115809,69.75488557,,,,0.381,,,0.367,0.393,0.187265619,2347,12533,0.156286895,0.218244342,0.053399786,300,5618,0.035527446,0.071272127,0.000924927,24,25948,,,1081.166667,0.875,230.125,263,,,,,,,,2.263836092,,,,,,,2.17793141,,2.667718547,2.407378446,,,,,,,2.311029211,,2.879673423,0.338034609,,,,,-24080.665,,,,,0.735096508,30963,42121,0.576402952,0.893790063,39620,,,33850.80851,45389.19149,,,,,,,31442,25174.76596,37709.23404,,,,60758,52230.51064,69285.48936,,,,,,1,3494,3494,,,57.15240805,,,,,0.190307925,,39620,,,6.064690027,9,1484,,,26.94286558,52,193001,20.12222071,35.33198364,,,,,,,40.13499954,29.16215211,53.87936357,,,,,,,,,,7.774972212,12,138350,4.017441598,13.58131177,8.673653777,,,,,,,,,,,,,,,,,,,31.80339718,44,138350,23.10839708,42.69457628,,,,,,,43.32148363,30.00138678,60.53743116,,,,21.06238679,10.10023315,38.73447922,,,,23.31594137,45,193001,17.00680763,31.198564,,,,,,,16.41886345,9.730859054,25.94888285,,,,40.27866872,26.54389649,58.60334827,,,,32.4137931,,2900,,,48,46,0.501008161,10436,20830,,,0.521,,,,,15.67659729,,,,,0.574202339,5057,8807,0.530731552,0.617673126,0.182140047,1389,7626,0.140463084,0.223817011,0.743953673,6552,8807,0.710310543,0.777596804,25948,,,,,0.215161091,5583,25948,,,0.143209496,3716,25948,,,0.560505627,14544,25948,,,0.005588099,145,25948,,,0.006281794,163,25948,,,0.000655157,17,25948,,,0.075766919,1966,25948,,,0.344535224,8940,25948,,,0.011895138,309,25977,,,0.420803145,10919,25948,,,0.436861983,11683,26743,, -29,000,29000,MO,Missouri,2024,,9478.099781,100260,17111659,9389.512104,9566.687457,0,6286.764051,5051.483578,7522.044525,,3038.01037,2711.156534,3364.864207,,17399.91364,17048.11108,17751.7162,,5793.616577,5477.936698,6109.296456,,8710.862096,8615.319559,8806.404633,,15497.07746,12688.00474,18306.15018,,,0.164,,,0.154,0.175,3.671901503,,,3.447208322,3.896594685,5.19712714,,,4.927123189,5.46713109,0.087973065,44027,500460,0.087188281,0.088757849,0,0.084456424,0.068119724,0.100793124,0.095178823,0.089939248,0.100418399,0.156690888,0.154012059,0.159369716,0.076518412,0.073576495,0.07946033,0.074382153,0.073532001,0.075232305,0.089285714,0.075171227,0.103400202,0.104698772,0.099861121,0.109536422,0.181,,,0.169,0.192,0.376,,,0.362,0.391,6.9,0.072361907,0.116,,,0.242,,,0.23,0.255,0.768944906,4732789,6154913,,,0.19348738,,,0.181339713,0.206243793,0.277871622,1316,4736,0.270715444,0.285063778,517.4,31915,6168187,,,20.0466593,26904,1342069,19.8071129,20.2862057,13.69102683,10.75040079,17.18783044,2.853380158,2.297363712,3.503318541,30.87904676,30.06251021,31.69558331,29.96545568,28.8102836,31.12062777,17.09675691,16.83904378,17.35447003,32.33168505,25.82540168,39.97862926,30.84230267,29.28818678,32.39641857,0.113581279,564179,4967183,0.110006811,0.117155748,0.000703935,4342,6168187,,,1420.586596,0.000626583,3871,6177957,,,1595.958925,0.002463436,15219,6177957,,,405.9371181,3016,,,,,5169,1839,5232,2595,2856,0.45,,,,,0.37,0.34,0.41,0.34,0.46,0.45,,,,,0.39,0.48,0.35,0.36,0.46,0.913085609,3834146,4199109,0.911765762,0.914405457,0.671252468,1062594,1583002,0.665593604,0.676911333,0.02513451,76944,3061289,,,0.168,224201,,0.159659575,0.176340426,0.193035372,0.15695012,0.229120623,0.086994728,0.069750428,0.104239027,0.34352067,0.327796579,0.359244761,0.240612401,0.224862527,0.256362275,0.125819932,0.121667523,0.129972342,4.542044168,128340,28256,4.490927755,4.59316058,0.239896218,328701,1370180,0.233736969,0.246055468,11.43772068,7055,6168187,,,100.0320975,30707,30697147,98.91323486,101.15096,53.74297423,42.05056743,67.68038161,24.06938114,20.30432749,27.83443479,172.9457383,168.6222496,177.269227,46.14848441,42.53044323,49.76652559,96.25934965,95.02540603,97.49329327,69.78031233,46.73297033,100.2161684,7.6,,,,,0.373913044,,,,,0.127198069,310390,2440210,0.12501076,0.129385379,0.106258231,0.104201255,0.108315208,0.018051725,0.0171818,0.01892165,0.009273792,0.00864418,0.009903404,0.780121725,2278106,2920193,0.777299257,0.782944193,0.746939261,0.710505799,0.783372723,0.678574728,0.661554727,0.695594729,0.72273917,0.713634173,0.731844168,0.735828579,0.721912023,0.749745135,0.795917434,0.792867409,0.79896746,0.317,,2920193,0.31323218,0.32076782,75.83518562,,,75.76269706,75.90767418,95.1169477,89.80183658,100.4320588,87.41648939,86.44341257,88.38956621,69.58933289,69.34879043,69.82987535,85.09959452,84.19986552,85.99932353,76.35739752,76.27915109,76.43564395,74.20692585,69.19592363,79.21792808,455.994023,100260,17111659,453.0490264,458.9390197,269.0454679,233.9100298,304.180906,161.9020927,148.841758,174.9624273,753.8055241,742.0271424,765.5839058,281.0208807,266.9493826,295.0923788,432.4550149,429.2940721,435.6159577,690.0259259,573.9318952,806.1199566,60.61978095,3714,6126713,58.67016314,62.56939876,,,,28.52891058,20.08698586,39.32334524,126.9614264,119.2598857,134.6629671,44.24799262,37.97271476,50.52327049,51.60083456,49.4845954,53.71707372,135.7312521,77.58213822,220.4190499,6.140838847,3113,506934,5.925116959,6.356560734,,,,2.904805378,2.023303378,4.0398811,12.1397525,11.33628908,12.94321592,5.164878824,4.354377164,5.975380485,5.072311997,4.843569925,5.301054069,,,,7.86112021,6.45458734,9.267653079,0.11664169,,,0.10787353,0.126021868,0.17053784,,,0.159389817,0.182296486,0.099,,,0.092,0.107,252.3,13103,5193508,,,0.116,715170,,,,0.072361907,433370.1808,5988927,,,30.41095752,5613,18457163,29.61536875,31.2065463,14.83881339,7.667431412,25.92042074,5.249763761,3.24968651,8.024821567,66.08942321,62.63974586,69.53910055,11.53977918,9.347258186,14.09204549,27.46252765,26.61156147,28.31349384,,,,0.341511382,,,0.327585184,0.355716417,0.134776229,485740,3604048,0.130010272,0.139542187,0.059404639,84950,1430023,0.054638682,0.064170596,0.001302858,8049,6177957,,,767.5434215,0.900466703,58480.81,64945,,,0.073078303,23835,326157,0.068345444,0.077811161,3.047392962,,,,,,3.357778958,2.387578715,2.781084778,3.214212595,2.980200584,,,,,,3.515967379,2.268465945,2.743879171,3.155815385,0.27941432,,,,,-1916.137,,,,,0.792490016,45840,57843,0.78605132,0.798928713,64783,,,63920.3617,65645.6383,51107,43734.06383,58479.93617,89367,85699.59575,93034.40426,44293,43214.70213,45371.29787,58288,55970.55319,60605.44681,69746,69289.65957,70202.34043,,,,,,0.442151306,388972,879726,,,70.87866441,,,,,0.242318761,,,,,8.806262231,,,,,10.59154539,4541,42873819,10.28348231,10.89960847,,,,1.572355298,0.859621273,2.638145016,58.85670646,56.72335042,60.99006251,6.910077755,5.712967859,8.10718765,4.143879496,3.927504191,4.360254801,,,,18.62116987,5821,30697147,18.12985043,19.1124893,18.96267428,13.2660093,7.987004193,20.71651681,6.977044464,5.126469841,9.277990054,10.20671356,9.142393929,11.27103319,9.090075803,7.349320905,10.8308307,20.74899686,20.16426797,21.33372575,,,,21.85870889,6710,30697147,21.33568766,22.38173012,9.703592569,5.166754366,16.59343882,4.445936644,2.977513547,6.385106639,66.454829,63.7747804,69.1348776,11.37098656,9.575038149,13.16693497,16.80359338,16.28803845,17.3191483,,,,15.51063133,6650,42873819,15.13783234,15.88343031,9.669361554,5.730676469,15.28175997,5.840176823,4.361723391,7.658614906,21.51772203,20.22779985,22.80764421,9.123462035,7.747924682,10.49899939,15.50793228,15.08934977,15.92651479,19.44871727,9.708729587,34.79912748,22.67556694,,546800,,,2267,10132,0.653539275,3025962,4630115,,,,,,,,102.0362235,,,,,0.676010973,1661854,2458324,0.672291821,0.679730126,0.115150905,274438,2383290,0.112981829,0.117319981,0.865701185,2128174,2458324,0.863267932,0.868134438,6177957,,,,,0.220931936,1364908,6177957,,,0.180375972,1114355,6177957,,,0.114788433,709158,6177957,,,0.006128725,37863,6177957,,,0.023085787,142623,6177957,,,0.001908074,11788,6177957,,,0.048314516,298485,6177957,,,0.784255701,4845098,6177957,,,0.008272516,47933,5794247,0.007869781,0.008675251,0.505528931,3123136,6177957,,,0.305325193,1879250,6154913,, -29,001,29001,MO,Adair County,2024,1,8862.008876,356,70761,7403.722429,10320.29532,0,,,,2,,,,2,,,,2,,,,2,9032.011113,7462.671496,10601.35073,,,,,2,,0.192,,,0.165,0.224,4.108838633,,,3.368693,4.94470563,5.464967701,,,4.601546398,6.395270637,0.083588175,164,1962,0.071341327,0.095835024,0,,,,,,,0.08974359,0.05312246,0.126364719,,,,0.079127726,0.065921382,0.09233407,,,,,,,0.206,,,0.166,0.25,0.374,,,0.319,0.431,6.9,0.115329158,0.129,,,0.274,,,0.231,0.321,0.771351821,19526,25314,,,0.170565478,,,0.139720891,0.204166926,0.25,4,16,0.11917111,0.394165016,321.6,81,25185,,,8.512544803,95,11160,6.887157085,10.40614459,,,,,,,,,,,,,8.525418377,6.770412798,10.59631662,,,,,,,0.137300016,2566,18689,0.118236186,0.156363846,0.001747072,44,25185,,,572.3863636,0.00087423,22,25165,,,1143.863636,0.002900854,73,25165,,,344.7260274,2520,,,,,,,,,2518,0.39,,,,,,,,,0.4,0.52,,,,,,0.75,,,0.52,0.919959619,12758,13868,0.905295122,0.934624117,0.672665467,3364,5001,0.591995142,0.753335792,0.029875013,294,9841,,,0.24,1040,,0.172085106,0.307914894,,,,,,,0.036809816,0,0.169627419,0.161676647,0,0.426010816,0.136351672,0.088441075,0.184262268,6.076155111,99813,16427,4.791900746,7.360409475,0.136763413,622,4548,0.082851833,0.190674992,11.91185229,30,25185,,,61.59045506,78,126643,48.68469888,76.86767532,,,,,,,,,,,,,65.43113815,51.37751666,82.14280213,,,,7.5,,,,,1,,,,,0.136563877,1240,9080,0.104114568,0.169013185,0.12422645,0.091426065,0.157026834,0.005396476,0,0.011244645,0.016519824,0.006356219,0.026683429,0.762132536,7648,10035,0.722969578,0.801295494,,,,,,,,,,,,,0.786447031,0.752772611,0.820121451,0.167,,10035,0.13107704,0.20292296,75.81699102,,,74.61213596,77.02184608,,,,,,,,,,,,,75.52006728,74.25087049,76.78926408,,,,473.6320645,356,70761,421.8619451,525.4021839,,,,,,,,,,,,,485.5358937,430.7838936,540.2878939,,,,60.29999246,16,26534,34.46665581,97.92340996,,,,,,,,,,,,,52.85179476,27.30929359,92.32144923,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.133,,,0.115,0.155,0.182,,,0.157,0.209,0.106,,,0.091,0.122,213.8,47,21984,,,0.129,3270,,,,0.115329158,2953.233744,25607,,,,,,,,,,,,,,,,,,,,,,,,,,0.32,,,0.301,0.337,0.159997207,2291,14319,0.13497593,0.185018483,0.065598614,303,4619,0.045343295,0.085853934,0.000953706,24,25165,,,1048.541667,0.859756098,176.25,205,,,,,,,,2.779605132,,,,,,,,,2.785606875,2.536794581,,,,,,,,,2.576465738,0.044130761,,,,,-3447.961967,,,,,0.913796438,42529,46541,0.808544868,1.019048008,46433,,,40236.06383,52629.93617,,,,,,,59360,31399.31915,87320.68085,,,,51958,47668.6383,56247.3617,,,,,,0.403334516,1137,2819,,,45.56032419,,,,,0.293175113,,46433,,,10.38575668,14,1348,,,,,,,,,,,,,,,,,,,,,,,,,,13.92967566,18,126643,7.615483305,23.37162883,14.21318194,,,,,,,,,,,,,15.49923141,8.473574039,26.00507668,,,,11.84431828,15,126643,6.62917503,19.53540178,,,,,,,,,,,,,12.37886397,6.767640126,20.76963033,,,,13.53027399,24,177380,8.669101846,20.13197519,,,,,,,,,,,,,13.8288243,8.666450563,20.93700618,,,,33.88888889,,1800,,,9,52,0.521493441,10336,19820,,,0.608,,,,,75.25490499,,,,,0.618569495,5483,8864,0.594661126,0.642477863,0.122754115,977,7959,0.092658092,0.152850138,0.808551444,7167,8864,0.774488213,0.842614675,25165,,,,,0.176673952,4446,25165,,,0.156526922,3939,25165,,,0.037711107,949,25165,,,0.00472879,119,25165,,,0.027776674,699,25165,,,0.000913968,23,25165,,,0.030399364,765,25165,,,0.8795152,22133,25165,,,0.01291914,309,23918,0.00522399,0.020614291,0.516749454,13004,25165,,,0.334518448,8468,25314,, -29,003,29003,MO,Andrew County,2024,1,6691.542038,248,48868,5347.030482,8036.053594,0,,,,2,,,,2,,,,2,,,,2,6897.246633,5477.355378,8317.137889,,,,,2,,0.155,,,0.13,0.186,3.782745232,,,2.989997811,4.690013149,4.943716948,,,3.978242901,6.006569083,0.07,91,1300,0.05613005,0.08386995,0,,,,,,,,,,,,,0.070331447,0.056081604,0.08458129,,,,,,,0.183,,,0.145,0.229,0.38,,,0.311,0.454,8.5,0.046210287,0.089,,,0.235,,,0.192,0.285,0.479900744,8703,18135,,,0.172957245,,,0.140154377,0.210580439,0.190476191,4,21,0.083840113,0.319045344,244.4,44,18002,,,14.94189264,54,3614,11.22480962,19.49592872,,,,,,,,,,,,,15.26032316,11.36231294,20.0645067,,,,,,,0.107009281,1545,14438,0.092711409,0.121307153,0.000111099,2,18002,,,9001,0.000277732,5,18003,,,3600.6,0.000222185,4,18003,,,4500.75,2055,,,,,,,,,2067,0.46,,,,,,,,,0.47,0.48,,,,,,,,,0.48,0.944703373,11959,12659,0.927367466,0.96203928,0.64931123,2781,4283,0.567609586,0.731012875,0.021170213,199,9400,,,0.102,407,,0.061489362,0.142510638,,,,,,,,,,0.013245033,0,0.227425941,0.033798883,0.018001942,0.049595824,4.061642704,122885,30255,3.324325843,4.798959564,0.209802028,869,4142,0.133574551,0.286029505,7.776913676,14,18002,,,64.43444643,57,88462,48.80202049,83.48229907,,,,,,,,,,,,,64.97569428,48.81174132,84.77918659,,,,7.9,,,,,0,,,,,0.089705882,610,6800,0.057116991,0.122294774,0.084047267,0.051303303,0.116791232,0.003382353,0,0.008693356,0.002205882,0,0.006447079,0.864101659,7344,8499,0.834060109,0.894143209,,,,,,,,,,,,,0.762114537,0.681829552,0.842399523,0.265,,8499,0.211132029,0.318867971,78.63792865,,,77.38758436,79.88827293,,,,,,,,,,,,,78.39501216,77.11244788,79.67757644,,,,357.8780012,248,48868,310.7801637,404.9758388,,,,,,,,,,,,,366.0413877,316.9697182,415.1130572,,,,67.73538045,12,17716,34.9998595,118.3200782,,,,,,,,,,,,,68.79299562,34.34121556,123.0896718,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.113,,,0.096,0.133,0.168,,,0.145,0.192,0.089,,,0.075,0.104,251.5,38,15109,,,0.089,1600,,,,0.046210287,799.0220667,17291,,,,,,,,,,,,,,,,,,,,,,,,,,0.319,,,0.301,0.338,0.124321179,1282,10312,0.105257349,0.143385009,0.064889919,280,4315,0.045826089,0.083953749,5.55463E-05,1,18003,,,18003,0.921282051,179.65,195,,,,,,,,3.239164196,,,,,,,,,3.23139827,3.132279895,,,,,,,,,3.108098655,0.047060934,,,,,1406.619433,,,,,0.725238257,42615,58760,0.63750627,0.812970245,72630,,,63984.55319,81275.44681,,,,,,,,,,109412,54010.12766,164813.8723,68447,62596.78723,74297.21277,,,,,,0.234271811,674,2877,,,,,,,,0.215613383,,72630,,,3.795066414,4,1054,,,,,,,,,,,,,,,,,,,,,,,,,,19.26777169,17,88462,11.01319632,31.2896541,19.21729104,,,,,,,,,,,,,19.76912049,11.06462667,32.60615786,,,,13.56514662,12,88462,7.009309205,23.69558121,,,,,,,,,,,,,14.43904317,7.460864308,25.22210262,,,,18.6827826,23,123108,11.84328154,28.03334706,,,,,,,,,,,,,18.10126364,11.20496749,27.66970429,,,,,,1700,,,-888,8,0.723442137,9752,13480,,,0.696,,,,,16.23960676,,,,,0.78412236,5383,6865,0.746237263,0.822007457,0.075321223,510,6771,0.043358635,0.10728381,0.795775674,5463,6865,0.760182673,0.831368675,18003,,,,,0.22490696,4049,18003,,,0.201744154,3632,18003,,,0.012664556,228,18003,,,0.004332611,78,18003,,,0.006943287,125,18003,,,0.000555463,10,18003,,,0.029161806,525,18003,,,0.930456035,16751,18003,,,0.000117378,2,17039,0,0.005280164,0.497861468,8963,18003,,,0.604135649,10956,18135,, -29,005,29005,MO,Atchison County,2024,1,10509.40515,116,13612,7125.818099,13892.99221,0,,,,2,,,,2,,,,2,,,,2,10570.26421,7076.41972,14064.10871,,,,,2,,0.187,,,0.156,0.222,4.176843993,,,3.29358705,5.068849297,5.271559019,,,4.248281435,6.332656479,0.032258065,11,341,0.01350476,0.051011369,1,,,,,,,,,,,,,0.034055728,0.014275744,0.053835711,,,,,,,0.224,,,0.18,0.274,0.388,,,0.314,0.46,8.1,0.015394526,0.122,,,0.28,,,0.228,0.335,0.384731386,2041,5305,,,0.161279568,,,0.128816934,0.197467873,0.333333333,2,6,0.110000414,0.553214291,133.7,7,5234,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.153234086,597,3896,0.132978767,0.173489405,0.000382117,2,5234,,,2617,0.000385951,2,5182,,,2591,0.000578927,3,5182,,,1727.333333,4188,,,,,,,,,4117,0.43,,,,,,,,,0.43,0.35,,,,,,,,,0.35,0.90666321,3497,3857,0.884436844,0.928889576,0.553345389,612,1106,0.466303628,0.640387149,0.023884103,61,2554,,,0.17,174,,0.106851064,0.233148936,,,,,,,,,,,,,0.169772257,0.112554669,0.226989844,4.600828786,112136,24373,3.986145202,5.21551237,0.202380952,221,1092,0.111442475,0.29331943,28.65876958,15,5234,,,81.02164435,21,25919,50.15367485,123.85019,,,,,,,,,,,,,84.36445444,52.22292698,128.9600303,,,,7.4,,,,,0,,,,,0.08627451,220,2550,0.059397796,0.113151224,0.065346535,0.036841013,0.093852056,0.019215686,0.000641631,0.037789742,0.005490196,0,0.015487308,0.789369298,1990,2521,0.754431068,0.824307527,,,,,,,,,,,,,0.789606458,0.752241801,0.826971115,0.231,,2521,0.1849462,0.2770538,74.49078735,,,71.99656216,76.98501254,,,,,,,,,,,,,74.34883335,71.79246283,76.90520387,,,,533.1199287,116,13612,425.86467,640.3751874,,,,,,,,,,,,,541.2268132,431.0203606,651.4332657,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.13,,,0.11,0.152,0.184,,,0.158,0.21,0.1,,,0.085,0.116,,,,,,0.122,650,,,,0.015394526,87.51788011,5685,,,,,,,,,,,,,,,,,,,,,,,,,,0.334,,,0.315,0.353,0.166607961,473,2839,0.142778173,0.190437748,0.117011701,130,1111,0.08126702,0.152756382,0.002315708,12,5182,,,431.8333333,,,,,,,,,,,3.459480274,,,,,,,,,3.479294144,3.486481582,,,,,,,,,3.472549736,,,,,,673.6588333,,,,,0.639877144,35000,54698,0.532429293,0.747324994,57883,,,50589.89362,65176.10638,,,,,,,,,,,,,58835,54525.38298,63144.61702,,,,,,0.338842975,287,847,,,,,,,,0.102154346,,57883,,,3.773584906,1,265,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,30.12213155,11,36518,15.03685954,53.89681394,,,,,,,,,,,,,31.31048617,15.63008188,56.0231086,,,,,,400,,,-888,5,0.678072289,2814,4150,,,0.626,,,,,7.88208094,,,,,0.720119098,1693,2351,0.680929264,0.759308933,0.075102412,165,2197,0.041804228,0.108400596,0.806465334,1896,2351,0.7641666,0.848764068,5182,,,,,0.201852567,1046,5182,,,0.258008491,1337,5182,,,0.005982246,31,5182,,,0.003473562,18,5182,,,0.003473562,18,5182,,,0.000578927,3,5182,,,0.019297569,100,5182,,,0.956001544,4954,5182,,,0.001793543,9,5018,0,0.016490099,0.496912389,2575,5182,,,1,5305,5305,, -29,007,29007,MO,Audrain County,2024,1,9008.243843,438,69281,7628.957201,10387.53049,0,,,,2,,,,2,17538.34753,10559.23089,27388.30217,1,,,,2,8364.443975,6988.737742,9740.150207,,,,,2,,0.213,,,0.181,0.248,4.768570931,,,3.853711552,5.742362341,5.569232297,,,4.564311954,6.655063543,0.097209302,209,2150,0.084686997,0.109731608,0,,,,,,,0.20610687,0.136836473,0.275377268,,,,0.088046958,0.075217312,0.100876605,,,,,,,0.242,,,0.195,0.291,0.424,,,0.352,0.496,7,0.093891532,0.135,,,0.313,,,0.26,0.368,0.737240606,18403,24962,,,0.146365288,,,0.117203404,0.179019877,0.15,3,20,0.050642257,0.283837277,620.4,155,24982,,,24.83844911,123,4952,20.44881835,29.22807988,,,,,,,41.66666667,20.79984988,74.55317619,,,,23.62768496,19.20341643,28.76585865,,,,,,,0.132669114,2530,19070,0.114796773,0.150541454,0.000400288,10,24982,,,2498.2,0.000491119,12,24434,,,2036.166667,0.002373742,58,24434,,,421.2758621,2597,,,,,,,4905,,2489,0.42,,,,,,,0.42,,0.42,0.32,,,,,,,0.28,,0.32,0.867962621,15047,17336,0.84155326,0.894371983,0.51170412,3279,6408,0.440136091,0.583272149,0.029678068,295,9940,,,0.259,1389,,0.181553192,0.336446809,,,,,,,0.282828283,0.053316613,0.512339953,0.711229947,0.342467509,1,0.27242377,0.202808278,0.342039263,4.022254512,105190,26152,3.50262118,4.541887844,0.234926864,1317,5606,0.174230534,0.295623194,9.206628773,23,24982,,,66.49830984,84,126319,53.04165624,82.32943245,,,,,,,,,,,,,66.24439645,51.92503214,83.29238297,,,,7.9,,,,,0,,,,,0.096256685,900,9350,0.074499968,0.118013401,0.081066377,0.058871352,0.103261402,0.010160428,0.001815967,0.018504889,0.00855615,0.002065594,0.015046706,0.831216141,8899,10706,0.812265322,0.850166959,,,,,,,,,,,,,0.829605429,0.802466712,0.856744145,0.332,,10706,0.284744264,0.379255736,74.9035426,,,73.83603663,75.97104856,,,,,,,,,,,,,75.3886054,74.31429342,76.46291738,,,,466.3873954,438,69281,420.7759331,511.9988577,,,,,,,785.1432897,555.6141211,1077.670508,,,,452.6970411,405.3258315,500.0682506,,,,87.73678963,22,25075,54.98417895,132.8345539,,,,,,,,,,,,,69.12556165,37.7915878,115.9809466,,,,9.425493716,21,2228,5.834529167,14.40786837,,,,,,,,,,,,,,,,,,,,,,0.147,,,0.126,0.169,0.196,,,0.169,0.223,0.118,,,0.1,0.137,142.5,30,21056,,,0.135,3400,,,,0.093891532,2396.95693,25529,,,,,,,,,,,,,,,,,,,,,,,,,,0.357,,,0.34,0.372,0.156955303,2128,13558,0.134317005,0.179593601,0.074367361,432,5809,0.050537574,0.098197148,0.000777605,19,24434,,,1286,0.889269406,194.75,219,,,0.121235521,157,1295,0.043441775,0.199029267,2.897531748,,,,,,,2.294463286,,2.949380856,2.988246483,,,,,,,2.15350557,,3.087596893,0.030528751,,,,,-1610.423733,,,,,0.725854062,36885,50816,0.604105617,0.847602506,56305,,,48768.82979,63841.17021,,,,,,,36118,11399.3617,60836.6383,50625,39099.7234,62150.2766,52279,48758.14894,55799.85106,,,,,,0.719471947,2398,3333,,,47.96171979,,,,,0.225503952,,56305,,,14.00381922,22,1571,,,,,,,,,,,,,,,,,,,,,,,,,,18.61325803,24,126319,11.79920893,27.92902607,18.9995171,,,,,,,,,,,,,19.29921205,11.94651644,29.50089569,,,,11.87469819,15,126319,6.646178431,19.58550881,,,,,,,,,,,,,11.79694731,6.281377603,20.17313918,,,,15.13147571,27,178436,9.97173784,22.01550273,,,,,,,,,,,,,14.77541371,9.366344843,22.17037523,,,,28.26086957,,2300,,,20,45,0.55098242,10656,19340,,,0.649,,,,,43.46424506,,,,,0.720227476,6459,8968,0.683035596,0.757419355,0.082027107,696,8485,0.05603143,0.108022784,0.808652988,7252,8968,0.79152319,0.825782787,24434,,,,,0.227879185,5568,24434,,,0.188958009,4617,24434,,,0.055660146,1360,24434,,,0.007612344,186,24434,,,0.006302693,154,24434,,,0.001186871,29,24434,,,0.035769829,874,24434,,,0.873455022,21342,24434,,,0.007201955,168,23327,0,0.014635423,0.520135876,12709,24434,,,0.545268809,13611,24962,, -29,009,29009,MO,Barry County,2024,1,9425.012604,727,96692,8303.901867,10546.12334,0,,,,2,,,,2,,,,2,5599.30448,3261.801201,8965.028886,1,10150.20609,8859.183607,11441.22857,,,,,2,,0.211,,,0.176,0.246,4.548579219,,,3.676434655,5.500536544,5.547506321,,,4.490354739,6.688468221,0.078910615,226,2864,0.069036727,0.088784502,0,,,,,,,,,,0.065645514,0.042938693,0.088352335,0.080288678,0.068977024,0.091600333,,,,,,,0.234,,,0.187,0.281,0.404,,,0.327,0.48,7,0.084664092,0.142,,,0.31,,,0.256,0.368,0.544796433,18814,34534,,,0.153010694,,,0.122512123,0.187428248,0.25,13,52,0.178235064,0.326001514,184.4,64,34712,,,34.10699123,241,7066,29.80082332,38.41315913,,,,,,,,,,37.47714808,26.89424851,50.84198315,34.10740203,29.23182764,38.98297642,,,,,,,0.159469303,4291,26908,0.140405473,0.178533133,0.000749021,26,34712,,,1335.076923,0.000314952,11,34926,,,3175.090909,0.001173911,41,34926,,,851.8536585,2210,,,,,,,,,2256,0.39,,,,,,,,0.27,0.4,0.35,,,,,,0.4,,0.23,0.35,0.855252918,20881,24415,0.835052615,0.875453221,0.446718147,3471,7770,0.382183681,0.511252612,0.027404016,389,14195,,,0.236,1808,,0.154978723,0.317021277,0.075,0,0.456263869,,,,,,,0.252804787,0.137839956,0.367769618,0.310053299,0.24988435,0.370222248,4.256396466,110794,26030,3.521580079,4.991212852,0.162533727,1265,7783,0.109989715,0.21507774,13.25190136,46,34712,,,97.2604049,173,177873,82.76704445,111.7537653,,,,,,,,,,,,,107.4655381,90.9166895,124.0143866,,,,8.3,,,,,0,,,,,0.14852199,2060,13870,0.123104788,0.173939192,0.095429616,0.074079729,0.116779503,0.044340303,0.027849209,0.060831397,0.019105984,0.008793893,0.029418075,0.786173307,11622,14783,0.759976877,0.812369737,,,,,,,,,,0.785492228,0.678476944,0.892507512,0.795098123,0.757126297,0.83306995,0.274,,14783,0.226504538,0.321495462,75.52818089,,,74.61753105,76.43883073,,,,,,,,,,82.17076139,74.67731089,89.6642119,74.80834891,73.81697396,75.79972387,,,,502.8756055,727,96692,463.2613976,542.4898134,,,,,,,,,,293.5579757,176.7410779,458.4271427,534.0783543,489.991807,578.1649016,,,,45.48814465,16,35174,26.000405,73.86989708,,,,,,,,,,,,,49.37521364,26.29022177,84.43311906,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.142,,,0.122,0.164,0.189,,,0.164,0.216,0.111,,,0.094,0.129,151,44,29135,,,0.142,4910,,,,0.084664092,3013.787691,35597,,,11.28678787,12,106319,5.832047996,19.715747,,,,,,,,,,,,,13.35380917,6.900108064,23.32641723,,,,0.36,,,0.344,0.376,0.196569647,3782,19240,0.17154837,0.221590923,0.068218398,551,8077,0.047963079,0.088473717,0.001059383,37,34926,,,943.945946,0.926705653,475.4,513,,,0.111460957,177,1588,0.049883233,0.173038681,2.798997516,,,,,,,,2.403983863,2.887345132,2.637978934,,,,,,,,2.111158255,2.75454916,0.14906021,,,,,-7175.604857,,,,,0.773914374,35412,45757,0.701862608,0.84596614,49968,,,44205.95745,55730.04255,49792,28705.02128,70878.97872,,,,,,,65833,50566.44681,81099.55319,57031,50899.59575,63162.40426,,,,,,0.585865983,3200,5462,,,,,,,,0.255183317,,49968,,,2.964426878,6,2024,,,,,,,,,,,,,,,,,,,,,,,,,,20.36857582,34,177873,13.83945905,28.9115675,19.11476166,,,,,,,,,,,,,21.53780311,14.19354796,31.33637275,,,,16.3037673,29,177873,10.91888884,23.41492944,,,,,,,,,,,,,18.57429053,12.34248116,26.84502139,,,,28.86535116,72,249434,22.58535953,36.35113258,,,,,,,,,,,,,32.00602466,24.85393051,40.57526271,,,,25.45454546,,3300,,,13,71,0.582232176,15598,26790,,,0.495,,,,,17.69488713,,,,,0.7320164,9820,13415,0.7046069,0.759425899,0.099921692,1276,12770,0.077399859,0.122443524,0.807081625,10827,13415,0.774108853,0.840054398,34926,,,,,0.224703659,7848,34926,,,0.219664433,7672,34926,,,0.005926817,207,34926,,,0.013313864,465,34926,,,0.027143103,948,34926,,,0.002233293,78,34926,,,0.100927676,3525,34926,,,0.839145622,29308,34926,,,0.016285749,533,32728,0.009989999,0.0225815,0.493958655,17252,34926,,,0.825157816,28496,34534,, -29,011,29011,MO,Barton County,2024,1,8664.001766,197,31677,6711.150932,10616.8526,0,,,,2,,,,2,,,,2,,,,2,8986.08255,6895.989227,11076.17587,,,,,2,,0.224,,,0.191,0.259,4.806169911,,,3.865112352,5.794459555,5.685505797,,,4.618310008,6.855920807,0.081168831,75,924,0.063559916,0.098777746,0,,,,,,,,,,,,,0.080924856,0.062750271,0.09909944,,,,,,,0.252,,,0.202,0.304,0.43,,,0.356,0.509,4.5,0.272831986,0.166,,,0.312,,,0.258,0.367,0.476153648,5541,11637,,,0.149414103,,,0.119436694,0.185769055,0.25,2,8,0.070127692,0.458326521,231.6,27,11658,,,26.08018684,67,2569,20.21178658,33.12091539,,,,,,,,,,,,,27.47492368,21.11248574,35.15236253,,,,,,,0.150463721,1379,9165,0.130208402,0.17071904,0.000343112,4,11658,,,2914.5,0.000171028,2,11694,,,5847,0.000769625,9,11694,,,1299.333333,2574,,,,,,,,,2600,0.37,,,,,,,,,0.37,0.36,,,,,,,,,0.36,0.866324872,6928,7997,0.83683363,0.895816113,0.544241037,1427,2622,0.433815745,0.65466633,0.023305085,121,5192,,,0.21,560,,0.128978723,0.291021277,,,,,,,,,,0.387755102,0.183617237,0.591892968,0.220083682,0.145699169,0.294468195,5.116430846,97995,19153,4.180164152,6.052697541,0.213168425,586,2749,0.111484161,0.314852689,12.00892091,14,11658,,,80.13366978,47,58652,58.87920645,106.5607931,,,,,,,,,,,,,81.36696501,59.12136134,109.2313527,,,,8.1,,,,,0,,,,,0.119047619,575,4830,0.076005591,0.162089647,0.10125261,0.05328406,0.14922116,0.012215321,0.001988936,0.022441706,0.00931677,0,0.021132969,0.831631545,3828,4603,0.777792541,0.885470549,,,,,,,,,,,,,0.804863926,0.743375318,0.866352534,0.348,,4603,0.286618058,0.409381943,76.1773802,,,74.55666191,77.79809849,,,,,,,,,,,,,75.72774729,74.03740049,77.4180941,,,,431.7135517,197,31677,367.1252745,496.3018288,,,,,,,,,,,,,447.6742756,379.4988618,515.8496894,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.149,,,0.127,0.173,0.198,,,0.171,0.226,0.117,,,0.099,0.137,92.1,9,9776,,,0.166,1940,,,,0.272831986,3383.662296,12402,,,,,,,,,,,,,,,,,,,,,,,,,,0.353,,,0.334,0.372,0.180089658,1165,6469,0.153876892,0.206302424,0.080463809,229,2846,0.055442532,0.105485086,0.000598598,7,11694,,,1670.571429,0.917258065,142.175,155,,,,,,,,2.874080516,,,,,,,,,2.997951045,2.787290158,,,,,,,,,2.843498245,0.054449956,,,,,-2959.910667,,,,,0.850467716,37276,43830,0.683689049,1.017246383,49857,,,42792.65957,56921.34043,56250,13940.21277,98559.78723,,,,,,,14867,5725.893617,24008.10638,48679,43185.04255,54172.95745,,,,,,0.503260225,849,1687,,,,,,,,0.245301563,,49857,,,15.4494382,11,712,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,19.40805434,16,82440,11.09337998,31.51746434,,,,,,,,,,,,,19.7243846,11.03958833,32.53237281,,,,40,,1100,,,9,35,0.683577053,6077,8890,,,0.633,,,,,3.793814842,,,,,0.702255975,3144,4477,0.662058904,0.742453046,0.139985812,592,4229,0.085866192,0.194105432,0.816171543,3654,4477,0.778836197,0.85350689,11694,,,,,0.233110997,2726,11694,,,0.210364289,2460,11694,,,0.00607149,71,11694,,,0.016076621,188,11694,,,0.007097657,83,11694,,,0.000940653,11,11694,,,0.035231743,412,11694,,,0.914999145,10700,11694,,,0.002092812,23,10990,0,0.010265085,0.500085514,5848,11694,,,1,11637,11637,, -29,013,29013,MO,Bates County,2024,1,9313.050391,306,44268,7661.523238,10964.57754,0,,,,2,,,,2,,,,2,,,,2,9661.297816,7910.832111,11411.76352,,,,,2,,0.2,,,0.17,0.233,4.528385034,,,3.645492897,5.449324324,5.426054163,,,4.42281353,6.494071928,0.062695925,80,1276,0.04939473,0.075997119,0,,,,,,,,,,,,,0.059117402,0.045778811,0.072455993,,,,,,,0.245,,,0.201,0.291,0.408,,,0.339,0.479,7,0.086535333,0.141,,,0.297,,,0.248,0.349,0.42432365,6807,16042,,,0.157647689,,,0.126628056,0.193487472,0.1875,3,16,0.067648579,0.337423465,223.5,36,16105,,,25.06714414,84,3351,19.99453588,31.03483013,,,,,,,,,,,,,24.80670103,19.57706052,31.00412001,,,,,,,0.148698304,1902,12791,0.129634474,0.167762133,0.000124185,2,16105,,,8052.5,0.000247265,4,16177,,,4044.25,0.000618162,10,16177,,,1617.7,2757,,,,,,,,,2688,0.39,,,,,,,,,0.39,0.27,,,,,,,,,0.27,0.88508447,9797,11069,0.86269836,0.90747058,0.426792964,1577,3695,0.358564574,0.495021353,0.027076521,207,7645,,,0.205,749,,0.143042553,0.266957447,,,,,,,0.51,0.290713415,0.729286585,0.617834395,0.226848631,1,0.284108648,0.219334839,0.348882457,4.571668064,109080,23860,3.767460612,5.375875516,0.214985438,812,3777,0.151692329,0.278278547,14.90220428,24,16105,,,99.78687495,81,81173,79.2451825,124.0259744,,,,,,,,,,,,,105.3019534,83.4979,131.0573961,,,,7.4,,,,,0,,,,,0.139375476,915,6565,0.109434992,0.16931596,0.088450962,0.060653597,0.116248328,0.03960396,0.021722736,0.057485185,0.012947449,0.002638031,0.023256866,0.781632653,5362,6860,0.75119291,0.812072396,,,,,,,,,,,,,0.738636364,0.691287218,0.785985509,0.515,,6860,0.452711197,0.577288803,75.14539175,,,73.86497234,76.42581116,,,,,,,,,,,,,74.78878994,73.45946195,76.11811794,,,,490.5639765,306,44268,431.9572017,549.1707514,,,,,,,,,,,,,504.3769877,443.2134092,565.5405662,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.14,,,0.121,0.161,0.189,,,0.164,0.215,0.106,,,0.091,0.123,155.7,21,13488,,,0.141,2270,,,,0.086535333,1475.340896,17049,,,24.73257899,12,48519,12.77968447,43.20283816,,,,,,,,,,,,,26.51289189,13.69959813,46.31268653,,,,0.347,,,0.331,0.365,0.174782896,1590,9097,0.150953108,0.198612683,0.086015967,334,3883,0.06099469,0.111037244,0.000618162,10,16177,,,1617.7,0.927822581,172.575,186,,,,,,,,3.090134947,,,,,,,,,3.140736723,3.006894237,,,,,,,,,3.033097537,0.095358916,,,,,-2384.30545,,,,,0.721330109,34903,48387,0.618684547,0.823975672,57291,,,49557.04255,65024.95745,,,,78500,25457.2766,131542.7234,39196,19321.95745,59070.04255,46367,32016.70213,60717.29787,55130,49031.95745,61228.04255,,,,,,0.402874903,1037,2574,,,41.23423116,,,,,0.230716867,,57291,,,7.056451613,7,992,,,,,,,,,,,,,,,,,,,,,,,,,,14.9013202,13,81173,7.699729594,26.02960756,16.01517746,,,,,,,,,,,,,15.98366778,8.258994379,27.92025095,,,,,,,,,,,,,,,,,,,,,,,,,,,28.93823003,33,114036,19.91974602,40.64003409,,,,,,,,,,,,,30.85352057,21.2381439,43.3298141,,,,21.25,,1600,,,0,34,0.677344064,8416,12425,,,0.555,,,,,7.496287126,,,,,0.731151965,4335,5929,0.702993253,0.759310677,0.104813394,601,5734,0.076083575,0.133543213,0.777196829,4608,5929,0.750773423,0.803620235,16177,,,,,0.232490573,3761,16177,,,0.196760833,3183,16177,,,0.014774062,239,16177,,,0.010446931,169,16177,,,0.003894418,63,16177,,,0.000679978,11,16177,,,0.029980837,485,16177,,,0.924893367,14962,16177,,,0,0,15088,0,0.00600167,0.49774371,8052,16177,,,1,16042,16042,, -29,015,29015,MO,Benton County,2024,1,11698.66278,495,51402,9660.922519,13736.40305,0,,,,2,,,,2,,,,2,,,,2,11640.94723,9529.962975,13751.93147,,,,,2,,0.203,,,0.173,0.235,4.503487142,,,3.661979195,5.439520495,5.325732508,,,4.371814802,6.380519878,0.071490846,82,1147,0.05658033,0.086401362,0,,,,,,,,,,,,,0.072477064,0.057084696,0.087869433,,,,,,,0.232,,,0.189,0.274,0.431,,,0.364,0.499,6.9,0.051778124,0.162,,,0.296,,,0.248,0.346,0.326080231,6324,19394,,,0.13445255,,,0.108438061,0.16510093,0.47826087,11,23,0.376622098,0.570307191,170.8,34,19908,,,28.25947335,88,3114,22.66492398,34.81646154,,,,,,,,,,,,,29.64771538,23.68154203,36.6598592,,,,,,,0.15142187,2066,13644,0.131166551,0.17167719,0.000251155,5,19908,,,3981.6,0.000148339,3,20224,,,6741.333333,0.000741693,15,20224,,,1348.266667,2786,,,,,,,,,2785,0.4,,,,,,,,,0.4,0.34,,,,,,,,,0.34,0.876204939,13271,15146,0.852871014,0.899538863,0.53501827,1757,3284,0.440072934,0.629963607,0.036184667,261,7213,,,0.251,857,,0.153297872,0.348702128,,,,,,,0.025,0,0.430826297,0.324324324,0.004689259,0.64395939,0.323117921,0.246544233,0.399691609,4.661558961,97958,21014,4.026028534,5.297089388,0.246611668,837,3394,0.182825101,0.310398234,13.56238698,27,19908,,,135.6210829,132,97330,112.4846547,158.7575111,,,,,,,,,,,,,139.3515797,115.2101502,163.4930092,,,,7.4,,,,,0,,,,,0.143920596,1160,8060,0.108014239,0.179826952,0.125405946,0.088986501,0.16182539,0.023573201,0.009933376,0.037213026,0.015508685,0.007268968,0.023748402,0.825118552,5742,6959,0.790638123,0.85959898,,,,,,,,,,,,,0.793045564,0.747174765,0.838916362,0.43,,6959,0.367460995,0.492539006,74.33112115,,,72.88449643,75.77774586,,,,,,,,,,,,,74.21151934,72.71988728,75.7031514,,,,532.8462607,495,51402,475.2029362,590.4895852,,,,,,,,,,,,,534.6128135,475.2943114,593.9313156,,,,67.27664155,10,14864,32.26176464,123.7241391,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.14,,,0.121,0.16,0.187,,,0.163,0.213,0.106,,,0.09,0.123,234.4,41,17493,,,0.162,3140,,,,0.051778124,986.6839242,19056,,,,,,,,,,,,,,,,,,,,,,,,,,0.365,,,0.347,0.382,0.17713114,1814,10241,0.152109863,0.202152416,0.0756396,272,3596,0.053001302,0.098277897,0.000692247,14,20224,,,1444.571429,0.936748634,171.425,183,,,,,,,,3.026136679,,,,,,,,,3.020476907,3.041401222,,,,,,,,,3.047418788,0.032221341,,,,,-5445.229667,,,,,0.73868057,36838,49870,0.623003162,0.854357977,51473,,,44862.61702,58083.38298,28281,4249.851064,52312.14894,,,,,,,,,,50658,45254.59575,56061.40426,,,,,,0.727970897,1801,2474,,,,,,,,0.287840227,,51473,,,10.38062284,9,867,,,9.641127567,13,134839,5.133494383,16.48662176,,,,,,,,,,,,,10.19823806,5.430132256,17.43929767,,,,32.38098069,30,97330,20.52676409,48.58736995,30.82297339,,,,,,,,,,,,,32.609489,20.43619314,49.37115823,,,,29.79554094,29,97330,19.95454139,42.79136694,,,,,,,,,,,,,31.57184227,21.14415827,45.34243195,,,,23.73200632,32,134839,16.23267475,33.50251194,,,,,,,,,,,,,23.53439552,15.87855783,33.59681297,,,,36.42857143,,1400,,,5,46,0.660321462,10476,15865,,,0.422,,,,,7.688231957,,,,,0.826417874,6732,8146,0.802167561,0.850668187,0.124364837,979,7872,0.091253805,0.15747587,0.79388657,6467,8146,0.762217633,0.825555507,20224,,,,,0.172616693,3491,20224,,,0.311313291,6296,20224,,,0.00741693,150,20224,,,0.00885087,179,20224,,,0.005092959,103,20224,,,0.000939478,19,20224,,,0.024723101,500,20224,,,0.935324367,18916,20224,,,0.001755973,33,18793,0,0.006833968,0.492731408,9965,20224,,,1,19394,19394,, -29,017,29017,MO,Bollinger County,2024,1,10005.68774,228,31743,7848.497696,12162.87778,0,,,,2,,,,2,,,,2,,,,2,10380.92477,8130.475685,12631.37385,,,,,2,,0.211,,,0.178,0.248,4.627192235,,,3.720540733,5.620872773,5.710514217,,,4.603704499,6.846909532,0.079913607,74,926,0.062448339,0.097378875,0,,,,,,,,,,,,,0.079329609,0.06162386,0.097035358,,,,,,,0.253,,,0.205,0.303,0.42,,,0.34,0.499,6.9,0.116041814,0.131,,,0.299,,,0.245,0.355,0.270086117,2854,10567,,,0.1538656,,,0.12271346,0.188699143,0.125,1,8,0.007330353,0.353459145,284.2,30,10556,,,26.46926873,59,2229,20.14963375,34.14342816,,,,,,,,,,,,,27.16627635,20.62849259,35.11871182,,,,,,,0.153604637,1272,8281,0.134540807,0.172668467,0.000189466,2,10556,,,5278,0.000285225,3,10518,,,3506,0.000570451,6,10518,,,1753,3534,,,,,,,,,3550,0.41,,,,,,,,,0.41,0.37,,,,,,,,,0.37,0.842962185,6420,7616,0.804988127,0.880936243,0.393704183,913,2319,0.289458556,0.49794981,0.026111637,138,5285,,,0.234,516,,0.144638298,0.323361702,,,,,,,,,,,,,0.215600775,0.125876596,0.305324954,4.721219296,95718,20274,3.443757856,5.998680735,0.20913884,476,2276,0.107556015,0.310721666,7.578628268,8,10556,,,79.29143821,47,59275,58.26036637,105.4408036,,,,,,,,,,,,,82.80770993,60.84399057,110.1166996,,,,8.1,,,,,0,,,,,0.133333333,590,4425,0.092466503,0.174200164,0.110985278,0.072426855,0.1495437,0.029378531,0.008762382,0.04999468,0.003389831,0,0.011420391,0.739695341,3302,4464,0.669861684,0.809528997,,,,,,,,,,,,,0.58137045,0.489697016,0.673043883,0.615,,4464,0.510128629,0.719871371,75.19349304,,,73.52030951,76.86667658,,,,,,,,,,,,,74.72208049,73.01689008,76.4272709,,,,485.1253612,228,31743,417.1519514,553.098771,,,,,,,,,,,,,500.6381383,430.26282,571.0134565,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.145,,,0.125,0.167,0.198,,,0.171,0.225,0.11,,,0.094,0.128,224,20,8927,,,0.131,1410,,,,0.116041814,1434.624942,12363,,,,,,,,,,,,,,,,,,,,,,,,,,0.36,,,0.341,0.376,0.180023229,1085,6027,0.155001952,0.205044505,0.084989429,201,2365,0.061159642,0.108819216,0.00019015,2,10518,,,5259,,,,,,,,,,,2.941678218,,,,,,,,,2.936901423,2.788952557,,,,,,,,,2.799182438,,,,,,-4703.229,,,,,0.80193715,37258,46460,0.613287315,0.990586986,53932,,,46592.42553,61271.57447,,,,,,,,,,76250,64563.87234,87936.12766,52271,42447.17021,62094.82979,,,,,,0.595930233,1025,1720,,,,,,,,0.250407921,,53932,,,3.590664273,2,557,,,,,,,,,,,,,,,,,,,,,,,,,,21.46806033,11,59275,10.29476938,39.4805273,18.55757065,,,,,,,,,,,,,22.41237372,10.74760436,41.21715324,,,,,,,,,,,,,,,,,,,,,,,,,,,17.96213582,15,83509,10.05327106,29.62581144,,,,,,,,,,,,,18.71257485,10.47328609,30.8635465,,,,9.090909091,,1100,,,0,10,0.627477714,5983,9535,,,0.405,,,,,4.380297316,,,,,0.805064627,3052,3791,0.776751317,0.833377936,0.083379966,298,3574,0.046214255,0.120545678,0.749406489,2841,3791,0.69515342,0.803659558,10518,,,,,0.215915573,2271,10518,,,0.215345123,2265,10518,,,0.006179882,65,10518,,,0.008841985,93,10518,,,0.002757178,29,10518,,,0.000285225,3,10518,,,0.018159346,191,10518,,,0.949990493,9992,10518,,,0.001980786,20,10097,0,0.011449849,0.49572162,5214,10518,,,1,10567,10567,, -29,019,29019,MO,Boone County,2024,1,7087.29426,1931,521859,6640.041322,7534.547197,0,,,,2,2292.212593,1282.933988,3780.656083,1,13642.58381,11737.48078,15547.68685,,4026.231214,2459.326624,6218.187564,1,6574.500947,6090.651475,7058.350419,,,,,2,,0.156,,,0.13,0.183,3.805552418,,,3.094264963,4.596599775,5.504865661,,,4.714859819,6.343664607,0.086151029,1223,14196,0.081535297,0.09076676,0,,,,0.081743869,0.061923235,0.101564504,0.155532359,0.139304538,0.17176018,0.082568807,0.061474661,0.103662954,0.07121108,0.066215416,0.076206743,,,,0.126245847,0.099714396,0.152777298,0.158,,,0.125,0.197,0.331,,,0.284,0.379,7.5,0.099881037,0.11,,,0.231,,,0.192,0.273,0.882272207,161994,183610,,,0.197032863,,,0.166616318,0.229849112,0.283950617,23,81,0.226659467,0.342796978,661.9,1230,185840,,,8.766505402,482,54982,7.983870778,9.549140025,,,,,,,23.99706906,19.88766709,28.10647103,25.65236621,19.47891715,33.16163191,5.754203173,5.030703854,6.477702492,,,,18.37270341,13.24142858,24.83455765,0.109828393,16896,153840,0.09672201,0.122934776,0.001183814,220,185840,,,844.7272727,0.000745911,140,187690,,,1340.642857,0.004304971,808,187690,,,232.289604,2216,,,,,,,4374,,2136,0.46,,,,,,0.29,0.4,0.17,0.47,0.54,,,,,,0.49,0.38,0.41,0.55,0.947635348,105197,111010,0.940815702,0.954454994,0.7909054,38960,49260,0.752740763,0.829070037,0.019708534,1965,99703,,,0.127,4631,,0.092446809,0.161553192,,,,0.025307798,0,0.077471023,0.512497283,0.401079365,0.623915201,0.342248638,0.221403096,0.46309418,0.073314618,0.053586697,0.09304254,4.929801719,132518,26881,4.637216476,5.222386962,0.1985346,7316,36850,0.170958507,0.226110693,9.954799828,185,185840,,,63.24581024,574,907570,58.07174518,68.41987531,,,,,,,114.6591756,92.18597718,137.132374,,,,61.87292146,56.0915569,67.65428601,,,,8.1,,,,,0,,,,,0.160595106,11550,71920,0.145881161,0.175309051,0.141891416,0.127227029,0.156555804,0.020091769,0.014899365,0.025284173,0.007021691,0.004068457,0.009974924,0.770114581,73395,95304,0.758413258,0.781815903,,,,0.711830357,0.650900948,0.772759767,0.799450927,0.743550112,0.855351741,0.664064845,0.574085561,0.75404413,0.782641866,0.765646677,0.799637055,0.16,,95304,0.14327665,0.17672335,78.69139035,,,78.24409247,79.13868823,,,,87.41249978,83.53740769,91.28759187,71.7613111,70.11232948,73.41029271,103.2794333,74.55028865,132.0085779,79.09761448,78.62113968,79.57408928,,,,346.0916381,1931,521859,330.2555365,361.9277397,,,,95.52668989,58.3501839,147.5332249,650.9063927,574.8825264,726.9302591,230.3348427,149.0605655,340.0196655,329.4659016,312.3936284,346.5381749,,,,54.94864206,101,183808,44.23215735,65.66512677,,,,,,,100.4454538,63.67380137,150.7174989,,,,43.68485592,33.08648326,56.59879783,,,,5.745113151,82,14273,4.569258983,7.131200248,,,,,,,10.85832472,6.721474139,16.59810276,,,,4.290589956,3.11754923,5.759916751,,,,,,,0.111,,,0.094,0.131,0.162,,,0.139,0.186,0.098,,,0.084,0.115,161.4,256,158586,,,0.11,20080,,,,0.099881037,16244.85161,162642,,,20.75391321,114,549294,16.94410036,24.56372605,,,,,,,37.49039309,22.90010607,57.90087147,,,,21.19270691,17.06304562,26.01994791,,,,0.306,,,0.29,0.321,0.126912147,14693,115773,0.110231296,0.143592998,0.060334438,2403,39828,0.043653587,0.077015289,0.002237732,420,187690,,,446.8809524,0.905698895,1639.315,1810,,,0.04698921,675,14365,0.024606204,0.069372216,2.99860113,,,,,,,1.968484212,2.721389211,3.268168042,2.946147127,,,,,,3.590571887,1.863902333,2.777897384,3.207341176,0.102108202,,,,,-120.3930333,,,,,0.831260007,47243,56833,0.793875586,0.868644429,63981,,,59069.68085,68892.31915,96335,92849.89362,99820.10638,72913,54558.10638,91267.89362,37264,26904,47624,55839,47462.82979,64215.17021,69741,67610.61702,71871.38298,,,,,,0.39116304,9508,24307,,,45.34595258,,,,,0.279004705,,63981,,,15.65066177,162,10351,,,6.115294749,77,1259138,4.826094984,7.643069187,,,,,,,38.29854549,28.03934877,51.08489265,,,,2.624656019,1.714512452,3.845729188,,,,14.63809952,133,907570,12.066496,17.20970304,14.65451701,,,,,,,11.08472485,5.315556426,20.38520367,,,,15.57546451,12.59196541,18.55896361,,,,15.75636039,143,907570,13.17383882,18.33888197,,,,,,,56.18299604,41.56448977,74.2769003,,,,12.23396402,9.798903659,15.09054942,,,,8.497877119,107,1259138,6.887696373,10.10805787,,,,,,,9.99092491,5.162456692,17.45213518,,,,8.27776129,6.583549208,10.27488438,,,,21.80555556,,14400,,,125,189,0.668044259,91168,136470,,,0.657,,,,,96.58142467,,,,,0.575650675,42753,74269,0.5622949,0.589006451,0.153081182,11114,72602,0.137806411,0.168355953,0.890129125,66109,74269,0.879045024,0.901213226,187690,,,,,0.198433587,37244,187690,,,0.138840642,26059,187690,,,0.098028664,18399,187690,,,0.004598007,863,187690,,,0.051499814,9666,187690,,,0.001172146,220,187690,,,0.038398423,7207,187690,,,0.775560765,145565,187690,,,0.010130221,1762,173935,0.007141878,0.013118564,0.514737066,96611,187690,,,0.227542073,41779,183610,, -29,021,29021,MO,Buchanan County,2024,1,10184.15041,1503,239333,9407.12942,10961.17139,0,,,,2,,,,2,14211.77461,10366.16592,19016.47258,,5740.604852,3678.113848,8541.564979,1,10490.94522,9618.999753,11362.89068,,,,,2,,0.193,,,0.166,0.225,4.279679793,,,3.53833213,5.134317264,5.946874166,,,5.119874457,6.896916463,0.093930055,701,7463,0.087311206,0.100548904,0,,,,0.125,0.065826878,0.184173122,0.157360406,0.121403971,0.193316841,0.080357143,0.059803288,0.100910997,0.090233362,0.082850021,0.097616704,0.088757396,0.045879645,0.131635148,0.105960265,0.071246435,0.140674095,0.224,,,0.183,0.269,0.385,,,0.334,0.439,6.8,0.115672686,0.134,,,0.289,,,0.245,0.337,0.729836189,61885,84793,,,0.16996236,,,0.141427078,0.201121701,0.357142857,20,56,0.288794333,0.424753829,620.1,520,83853,,,31.16086325,579,18581,28.62266073,33.69906576,,,,,,,18.63799283,12.17495571,27.30897784,38.74643875,30.08812579,49.12034368,29.5254833,26.70171902,32.34924759,,,,70.76101469,53.00485572,92.55714944,0.12930671,8587,66408,0.113817348,0.144796072,0.00065591,55,83853,,,1524.6,0.000771912,64,82911,,,1295.484375,0.002134819,177,82911,,,468.4237288,3111,,,,,,,1516,1390,3119,0.5,,,,,,0.29,0.57,0.32,0.5,0.53,,,,,,0.48,0.4,0.38,0.53,0.89622444,51368,57316,0.887561226,0.904887654,0.527033856,11473,21769,0.486257256,0.567810455,0.023959916,1009,42112,,,0.214,3845,,0.152042553,0.275957447,,,,0.363636364,0,0.792505851,0.612637363,0.429568321,0.795706404,0.287699434,0.153642329,0.421756539,0.180930542,0.148041465,0.21381962,4.835048849,110858,22928,4.342258826,5.327838871,0.278293919,5272,18944,0.235125582,0.321462256,12.76042598,107,83853,,,84.29359897,367,435383,75.66942247,92.91777547,,,,,,,158.4657267,112.6846227,216.627865,36.6483425,18.29472053,65.57400804,85.66191911,76.09507906,95.22875915,,,,8.6,,,,,0,,,,,0.148335315,4990,33640,0.126587535,0.170083095,0.118373494,0.098679836,0.138067152,0.024078478,0.016726589,0.031430367,0.014565993,0.008321889,0.020810097,0.809219654,30913,38201,0.788549709,0.829889599,,,,0.39964943,0.322896337,0.476402524,0.726566294,0.684638542,0.768494047,0.825956739,0.722909699,0.929003778,0.838164676,0.821563274,0.854766079,0.139,,38201,0.121733679,0.156266321,74.6427692,,,74.03457361,75.2509648,,,,,,,72.29341319,68.70624448,75.8805819,89.94883655,81.07668192,98.82099118,74.24890336,73.59160814,74.90619858,,,,490.4918934,1503,239333,464.7385733,516.2452135,,,,,,,651.6653299,515.9295785,812.1694379,231.630182,157.3814707,328.7805541,506.6745884,478.3314918,535.017685,,,,71.61503454,62,86574,54.90683633,91.80724222,,,,,,,,,,,,,64.5518259,46.52327821,87.25531596,,,,7.070839335,54,7637,5.311832129,9.225911535,,,,,,,,,,,,,5.634736493,3.902218824,7.873979466,,,,,,,0.132,,,0.114,0.152,0.192,,,0.166,0.219,0.109,,,0.094,0.125,180.3,127,70438,,,0.134,11420,,,,0.115672686,10318.11927,89201,,,25.6065056,66,257747,19.80406958,32.57775355,,,,,,,,,,,,,28.69588943,21.95008165,36.86107046,,,,0.348,,,0.332,0.362,0.154829546,7412,47872,0.135765716,0.173893375,0.064804814,1260,19443,0.046932474,0.082677155,0.001640313,136,82911,,,609.6397059,0.801059371,688.11,859,,,0.118713577,550,4633,0.070726389,0.166700764,3.024360795,,,,,,,2.52096631,2.648426714,3.117599025,2.800859208,,,,,,2.623695473,2.143764639,2.539611899,2.919151517,0.061820473,,,,,226.5402,,,,,0.901819628,45348,50285,0.845114397,0.958524859,56751,,,51496.53192,62005.46809,,,,,,,22756,14081.95745,31430.04255,64722,34584.46809,94859.53192,60104,57209.87234,62998.12766,,,,,,0.628054452,7428,11827,,,51.02693545,,,,,0.270885095,,56751,,,7.2679836,39,5366,,,9.129129912,56,613421,6.896046628,11.85493454,,,,,,,40.21717273,21.98710257,67.47758215,,,,7.07542998,4.955544173,9.795377482,,,,19.17189012,87,435383,15.27030347,23.76644232,19.9824063,,,,,,,,,,,,,19.08840152,14.79324899,24.24159517,,,,16.76684666,73,435383,13.14253127,21.0817924,,,,,,,40.63223762,19.4847373,74.72413166,,,,15.8530175,12.00692064,20.53942295,,,,11.24839221,69,613421,8.75192055,14.23556026,,,,,,,,,,,,,11.20276414,8.484864154,14.51448034,,,,68.93333333,,7500,,,53,464,0.549932382,36598,66550,,,0.644,,,,,86.97110493,,,,,0.633875851,21148,33363,0.613580598,0.654171103,0.136896961,4387,32046,0.117051243,0.156742678,0.830800588,27718,33363,0.81298925,0.848611925,82911,,,,,0.22337205,18520,82911,,,0.177214121,14693,82911,,,0.055264078,4582,82911,,,0.008189504,679,82911,,,0.015450302,1281,82911,,,0.006187358,513,82911,,,0.074984019,6217,82911,,,0.816936233,67733,82911,,,0.014454036,1147,79355,0.009370734,0.019537338,0.493408595,40909,82911,,,0.137499558,11659,84793,, -29,023,29023,MO,Butler County,2024,1,14151.35575,1034,116118,12858.83789,15443.87361,0,,,,2,,,,2,30734.166,23088.45141,40101.41982,,,,,2,13513.81508,12185.74301,14841.88715,,,,,2,,0.231,,,0.198,0.267,5.061901555,,,4.219871005,6.028081645,5.966499093,,,5.090585727,6.970980034,0.103643725,384,3705,0.093829098,0.113458352,0,,,,,,,0.235521236,0.183843445,0.287199026,0.12037037,0.059000682,0.181740059,0.092146928,0.082059088,0.102234769,,,,,,,0.279,,,0.232,0.327,0.427,,,0.376,0.485,6.3,0.086204784,0.172,,,0.332,,,0.283,0.383,0.679681937,28635,42130,,,0.153177089,,,0.126872541,0.185393275,0.192307692,10,52,0.123477648,0.269688581,589.1,248,42101,,,43.0713722,382,8869,38.7520749,47.3906695,,,,,,,34.88372093,22.35065822,51.90421162,63.29113924,38.65987211,97.74803134,41.84841876,37.16712455,46.52971297,,,,67.1641791,44.26161724,97.72035434,0.146347298,4894,33441,0.128474958,0.164219639,0.000950096,40,42101,,,1052.525,0.000734963,31,42179,,,1360.612903,0.003248062,137,42179,,,307.8759124,3329,,,,,,,410,,3369,0.43,,,,,,,0.42,,0.43,0.23,,,,,,,0.16,,0.23,0.835937231,24238,28995,0.809369033,0.862505428,0.529423701,5218,9856,0.461360355,0.597487048,0.029342854,526,17926,,,0.265,2533,,0.173255319,0.356744681,,,,,,,0.253048781,0.016077433,0.490020128,0.408719346,0.215500576,0.601938116,0.261379755,0.21311741,0.3096421,4.969184838,93207,18757,3.824328944,6.114040732,0.296743805,2898,9766,0.211376256,0.382111354,8.075817677,34,42101,,,109.4019674,232,212062,95.32408891,123.4798458,,,,,,,212.1520706,137.2936342,313.178307,,,,106.413698,91.62850255,121.1988934,,,,8.5,,,,,1,,,,,0.119498778,1955,16360,0.098753144,0.140244411,0.102844639,0.082563324,0.123125954,0.012836186,0.0056643,0.020008072,0.011919315,0.005895879,0.017942752,0.793841488,13612,17147,0.754083121,0.833599856,,,,,,,,,,,,,0.805719745,0.785589404,0.825850085,0.18,,17147,0.144614571,0.215385429,71.41629669,,,70.52361924,72.30897413,,,,,,,61.28938079,56.74298421,65.83577738,,,,71.65685114,70.74041006,72.57329221,,,,675.4995426,1034,116118,632.1517124,718.8473727,,,,,,,1216.786626,960.2689768,1520.774509,,,,667.0788409,621.9774166,712.1802653,,,,76.22127266,33,43295,52.46721694,107.0430056,,,,,,,,,,,,,64.78873239,41.0704987,97.21490956,,,,6.920415225,26,3757,4.520644987,10.14001173,,,,,,,,,,,,,,,,,,,,,,0.157,,,0.137,0.18,0.209,,,0.184,0.238,0.113,,,0.098,0.131,131.2,46,35068,,,0.172,7270,,,,0.086204784,3689.047523,42794,,,37.86773117,48,126757,27.92067564,50.2071177,,,,,,,,,,,,,37.67322958,27.15155019,50.92326212,,,,0.343,,,0.327,0.358,0.175427539,4175,23799,0.151597752,0.199257326,0.075507175,763,10105,0.054060366,0.096953983,0.002418265,102,42179,,,413.5196078,0.903661972,384.96,426,,,0.127508361,305,2392,0.04565414,0.209362583,3.322866008,,,,,,,3.251777086,,3.328400995,3.2758917,,,,,,,3.169029651,,3.304338823,0.04540298,,,,,-5211.593,,,,,0.752492472,33738,44835,0.655730183,0.849254762,44853,,,39003.97872,50702.02128,,,,37917,3734.361702,72099.6383,22043,5195.340426,38890.65957,42171,976.4468085,83365.55319,50009,44833.17021,55184.82979,,,,,,0.776830344,5284,6802,,,48.98356007,,,,,0.29188683,,44853,,,8.254716981,21,2544,,,8.396249228,25,297752,5.433609799,12.39452017,,,,,,,,,,,,,7.603493045,4.644411085,11.74297833,,,,18.69930868,38,212062,13.09676591,25.88772522,17.91928776,,,,,,,,,,,,,19.31561452,13.29598027,27.12630425,,,,20.74864898,44,212062,15.07600011,27.8540928,,,,,,,,,,,,,19.78546143,13.93079076,27.27165232,,,,19.47929821,58,297752,14.79144781,25.18151003,,,,,,,,,,,,,20.14925657,15.09317584,26.35572369,,,,54.87179487,,3900,,,21,193,0.561553939,18141,32305,,,0.56,,,,,40.32942528,,,,,0.653758682,10636,16269,0.62212053,0.685396834,0.108967443,1717,15757,0.087335868,0.130599018,0.807302231,13134,16269,0.78421683,0.830387632,42179,,,,,0.233528533,9850,42179,,,0.194646625,8210,42179,,,0.058773323,2479,42179,,,0.007942341,335,42179,,,0.009459684,399,42179,,,0.000403044,17,42179,,,0.025960786,1095,42179,,,0.873254463,36833,42179,,,0.000202087,8,39587,0,0.003138608,0.513241186,21648,42179,,,0.51462141,21681,42130,, -29,025,29025,MO,Caldwell County,2024,1,11471.13989,155,24552,8653.358573,14288.92121,0,,,,2,,,,2,,,,2,,,,2,11913.51817,8905.908014,14921.12832,,,,,2,,0.208,,,0.178,0.244,4.586684026,,,3.683203182,5.53253094,5.450959937,,,4.382676237,6.560750348,0.087896254,61,694,0.066830178,0.108962329,0,,,,,,,,,,,,,0.088280061,0.066586271,0.109973851,,,,,,,0.243,,,0.196,0.29,0.4,,,0.327,0.476,7.1,0.078398145,0.138,,,0.3,,,0.25,0.358,0.363698242,3206,8815,,,0.160656778,,,0.128260086,0.196421654,0.25,2,8,0.070127692,0.458326521,101.2,9,8897,,,27.14932127,54,1989,20.39540572,35.42397506,,,,,,,,,,,,,28.14569536,20.9563189,37.00639149,,,,,,,0.153373356,1073,6996,0.133118037,0.173628675,0.000112397,1,8897,,,8897,0.000223889,2,8933,,,4466.5,0.000335833,3,8933,,,2977.666667,3697,,,,,,,,,3734,0.36,,,,,,,,,0.36,0.39,,,,,,,,,0.39,0.898486344,5461,6078,0.876852627,0.920120062,0.510204082,975,1911,0.437189465,0.583218698,0.027522936,117,4251,,,0.182,372,,0.115276596,0.248723404,,,,,,,,,,,,,0.220955483,0.159750768,0.282160199,3.764984168,101071,26845,3.227459457,4.30250888,0.182862614,382,2089,0.129684273,0.236040955,15.73564123,14,8897,,,130.6003188,59,45176,99.4190137,168.4648959,,,,,,,,,,,,,134.3990946,101.7925618,174.1296159,,,,7.1,,,,,1,,,,,0.126855601,470,3705,0.096224277,0.157486924,0.092749658,0.062775309,0.122724007,0.02294197,0.009723617,0.036160324,0.014574899,0,0.030958134,0.804643715,3015,3747,0.766292036,0.842995394,,,,,,,,,,,,,0.758668516,0.704264591,0.813072441,0.529,,3747,0.470386473,0.587613527,74.39268535,,,72.31417354,76.47119716,,,,,,,,,,,,,73.98074683,71.81381448,76.14767918,,,,476.0370031,155,24552,396.2860732,555.7879329,,,,,,,,,,,,,491.0936886,407.3600424,574.8273349,,,,107.4575543,10,9306,51.5300741,197.6182682,,,,,,,,,,,,,117.260788,56.23110572,215.6467641,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.145,,,0.125,0.167,0.193,,,0.167,0.22,0.108,,,0.093,0.126,187.5,14,7467,,,0.138,1230,,,,0.078398145,738.8241209,9424,,,,,,,,,,,,,,,,,,,,,,,,,,0.381,,,0.363,0.397,0.17177665,846,4925,0.146755373,0.196797926,0.110548135,240,2171,0.077186432,0.143909837,0.000111945,1,8933,,,8933,,,,,,,,,,,2.967843154,,,,,,,,,2.963840744,2.755034417,,,,,,,,,2.781731556,0.152361278,,,,,-3377.247,,,,,0.781403928,38549,49333,0.690646065,0.872161792,56660,,,50999.23404,62320.76596,,,,,,,,,,71563,25359.42553,117766.5745,58449,54396.74468,62501.25532,,,,,,0.474400519,732,1543,,,,,,,,0.200317684,,56660,,,7.82778865,4,511,,,,,,,,,,,,,,,,,,,,,,,,,,38.80495542,17,45176,22.1803849,63.01681647,37.63060032,,,,,,,,,,,,,41.51023777,23.72668751,67.41002552,,,,28.77634142,13,45176,15.32218986,49.20842022,,,,,,,,,,,,,30.65242508,16.32112539,52.41658041,,,,36.36248656,23,63252,23.05069727,54.56158366,,,,,,,,,,,,,35.2858151,21.84247569,53.93811664,,,,,,900,,,-888,29,0.680523256,4682,6880,,,0.536,,,,,6.541277363,,,,,0.8,2784,3480,0.771950074,0.828049926,0.088775203,295,3323,0.059021735,0.118528672,0.804310345,2799,3480,0.779631416,0.828989273,8933,,,,,0.233628121,2087,8933,,,0.201052278,1796,8933,,,0.010298892,92,8933,,,0.008843614,79,8933,,,0.00526139,47,8933,,,0.001343334,12,8933,,,0.029889175,267,8933,,,0.924437479,8258,8933,,,0.001073601,9,8383,0,0.009528939,0.488413747,4363,8933,,,1,8815,8815,, -29,027,29027,MO,Callaway County,2024,1,8395.649291,717,125466,7431.596028,9359.702555,0,,,,2,,,,2,10089.46349,5213.373012,17624.26225,1,,,,2,8627.457485,7590.819414,9664.095556,,,,,2,,0.165,,,0.139,0.194,3.906814878,,,3.131017824,4.805471339,4.857218912,,,3.964765435,5.886799284,0.076577924,256,3343,0.067563462,0.085592386,0,,,,,,,0.150442478,0.084525319,0.216359637,,,,0.073901465,0.064546089,0.08325684,,,,,,,0.203,,,0.162,0.247,0.37,,,0.299,0.442,7.9,0.078192532,0.101,,,0.265,,,0.216,0.317,0.684596798,30316,44283,,,0.173720019,,,0.140393869,0.21112305,0.177777778,8,45,0.105224985,0.261788114,470.5,210,44638,,,17.66913852,193,10923,15.17630777,20.16196926,,,,,,,,,,,,,17.71202334,15.04946099,20.37458569,,,,,,,0.116105201,3929,33840,0.100615839,0.131594563,0.000380841,17,44638,,,2625.764706,0.000268085,12,44762,,,3730.166667,0.001921273,86,44762,,,520.4883721,2385,,,,,,,,,2432,0.44,,,,,,,0.33,,0.45,0.49,,,,,,,0.36,,0.49,0.901710509,27834,30868,0.886411274,0.917009744,0.593755391,6884,11594,0.530259294,0.657251488,0.022925158,495,21592,,,0.149,1308,,0.097765957,0.200234043,,,,,,,0.563758389,0.258935568,0.86858121,,,,0.10813621,0.048029715,0.168242705,3.808257953,123776,32502,3.301980581,4.314535326,0.192076831,1760,9163,0.139703618,0.244450043,8.288901833,37,44638,,,78.95124203,177,224189,67.31993809,90.58254598,,,,,,,,,,,,,83.35028453,70.74628097,95.95428809,,,,7.9,,,,,0,,,,,0.07052664,1145,16235,0.053146858,0.087906422,0.059116366,0.042296804,0.075935928,0.00578996,0.000300411,0.011279509,0.009547274,0.003450199,0.01564435,0.81093528,16552,20411,0.789134449,0.832736111,,,,,,,,,,,,,0.788355914,0.759942355,0.816769472,0.323,,20411,0.278834461,0.367165539,76.38337335,,,75.5728432,77.19390349,,,,,,,72.27968084,68.18138829,76.3779734,,,,76.20098018,75.34691496,77.0550454,,,,428.9558681,717,125466,396.1421278,461.7696083,,,,,,,561.984338,381.841092,797.6919088,,,,436.5424773,401.9039272,471.1810274,,,,58.14764851,25,42994,37.63009222,85.83739986,,,,,,,,,,,,,59.22575782,37.11646711,89.66850909,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.119,,,0.102,0.138,0.172,,,0.147,0.198,0.094,,,0.08,0.11,222.9,85,38141,,,0.101,4480,,,,0.078192532,3466.431343,44332,,,20.85381476,28,134268,13.85720846,30.13956858,,,,,,,,,,,,,20.74809325,13.42707199,30.62827857,,,,0.337,,,0.32,0.356,0.13698851,3398,24805,0.117924681,0.15605234,0.060673209,575,9477,0.042800868,0.078545549,0.000357446,16,44762,,,2797.625,0.9022,338.325,375,,,,,,,,3.133137063,,,,,,,,,3.187668254,3.137749677,,,,,,,,,3.220199708,0.080116726,,,,,573.9277925,,,,,0.845339806,43535,51500,0.790652857,0.900026755,72398,,,67338.93617,77457.06383,,,,,,,,,,,,,70722,68168.6383,73275.3617,,,,,,0.381845183,2057,5387,,,46.7211902,,,,,0.200185088,,72398,,,11.30179992,27,2389,,,3.183689323,10,314101,1.526702779,5.854918018,,,,,,,,,,,,,,,,,,,18.30031994,42,224189,13.07401687,24.91984165,18.73419303,,,,,,,,,,,,,19.72513057,14.02649609,26.96490284,,,,11.59735759,26,224189,7.575779015,16.99281592,,,,,,,,,,,,,11.90718351,7.629157147,17.71694521,,,,21.01234953,66,314101,16.25094961,26.73286059,,,,,,,,,,,,,21.58963414,16.51435943,27.73278825,,,,51.08108108,,3700,,,41,148,0.600681818,21144,35200,,,0.645,,,,,29.64769614,,,,,0.77291784,12352,15981,0.75316313,0.79267255,0.075160462,1171,15580,0.054802528,0.095518397,0.885113572,14145,15981,0.865333828,0.904893316,44762,,,,,0.204325097,9146,44762,,,0.180800679,8093,44762,,,0.048746705,2182,44762,,,0.00647871,290,44762,,,0.007975515,357,44762,,,0.000625531,28,44762,,,0.024060587,1077,44762,,,0.892565122,39953,44762,,,0.001140007,48,42105,0,0.004236801,0.480340467,21501,44762,,,0.601133618,26620,44283,, -29,029,29029,MO,Camden County,2024,1,8307.729866,880,121103,7222.219771,9393.239961,0,,,,2,,,,2,,,,2,,,,2,8167.195022,7066.905611,9267.484433,,,,,2,,0.173,,,0.146,0.203,4.158777756,,,3.372304579,5.071455846,5.482297771,,,4.556376051,6.490292188,0.070068545,184,2626,0.060305266,0.079831825,0,,,,,,,,,,0.092715232,0.046454239,0.138976225,0.068383284,0.058219226,0.078547343,,,,,,,0.206,,,0.162,0.25,0.371,,,0.31,0.432,7.5,0.061768891,0.13,,,0.267,,,0.22,0.315,0.537793894,22988,42745,,,0.165158191,,,0.134899556,0.198138656,0.298245614,17,57,0.229391736,0.36856609,269.4,117,43436,,,19.92446933,153,7679,16.7673055,23.08163317,,,,,,,,,,22.57336343,10.82480518,41.51321906,20.28516831,16.90066344,23.66967318,,,,,,,0.148321139,4541,30616,0.130448799,0.16619348,0.000759739,33,43436,,,1316.242424,0.000616889,27,43768,,,1621.037037,0.001987754,87,43768,,,503.0804598,2399,,,,,,,,,2416,0.45,,,,,,,,,0.45,0.35,,,,,,,,,0.35,0.917410647,30314,33043,0.903089822,0.931731471,0.583029082,4631,7943,0.514133854,0.651924311,0.031343362,598,19079,,,0.199,1406,,0.129893617,0.268106383,,,,,,,,,,0.530938124,0.238386754,0.823489493,0.188560349,0.137353822,0.239766876,4.570980335,125286,27409,3.872790545,5.269170125,0.14334378,1052,7339,0.102559568,0.184127992,12.66230776,55,43436,,,97.9780494,223,227602,85.11830227,110.8377965,,,,,,,,,,,,,99.75412715,86.35744842,113.1508059,,,,7.5,,,,,0,,,,,0.127745665,2210,17300,0.102247942,0.153243388,0.112061339,0.089665653,0.134457025,0.013583815,0.00607294,0.02109469,0.006936416,0.000740338,0.013132494,0.774897374,13780,17783,0.742374582,0.807420166,,,,,,,,,,,,,0.786842425,0.756388193,0.817296658,0.267,,17783,0.227089553,0.306910448,77.92223794,,,77.02471369,78.81976219,,,,,,,,,,,,,77.89857882,76.99095218,78.80620545,,,,398.2994375,880,121103,366.5241583,430.0747167,,,,,,,,,,,,,398.4371285,365.6500328,431.2242241,,,,66.28624128,23,34698,42.01979087,99.46190816,,,,,,,,,,,,,65.72245408,40.14498237,101.5029999,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.126,,,0.108,0.145,0.177,,,0.152,0.201,0.097,,,0.082,0.113,117.2,45,38383,,,0.13,5580,,,,0.061768891,2717.954742,44002,,,21.29925453,29,136155,14.26444504,30.58928239,,,,,,,,,,,,,20.37873088,13.31206359,29.85956239,,,,0.328,,,0.31,0.344,0.169452301,3954,23334,0.146814004,0.192090599,0.081894874,631,7705,0.059256576,0.104533171,0.000936757,41,43768,,,1067.512195,0.894976303,377.68,422,,,,,,,,3.135975692,,,,,,,,2.991461478,3.175108393,2.984248946,,,,,,,,3.061140295,2.997758212,0.0384264,,,,,-2674.63125,,,,,0.778529063,39378,50580,0.666837411,0.890220714,63703,,,57155.76596,70250.23404,,,,112500,27769.61702,197230.383,37188,12395.48936,61980.51064,67500,30480.42553,104519.5745,59322,56263.44681,62380.55319,,,,,,0.443673146,2237,5042,,,61.68089433,,,,,0.225248418,,63703,,,10.28138528,19,1848,,,,,,,,,,,,,,,,,,,,,,,,,,23.18316845,55,227602,16.70838866,31.33690891,24.16498976,,,,,,,,,,,,,23.70322672,16.93393269,32.27706721,,,,17.57453801,40,227602,12.55550762,23.93153266,,,,,,,,,,,,,17.79651095,12.59387034,24.42710171,,,,21.18001113,67,316336,16.41421771,26.89786544,,,,,,,,,,,,,21.1989165,16.2898295,27.12262304,,,,17.27272727,,3300,,,7,50,0.66618338,24812,37245,,,0.376,,,,,14.34304608,,,,,0.818964472,13508,16494,0.802937801,0.834991143,0.10759334,1706,15856,0.086898874,0.128287806,0.822784043,13571,16494,0.791181856,0.854386229,43768,,,,,0.169347469,7412,43768,,,0.298140194,13049,43768,,,0.00799671,350,43768,,,0.007813928,342,43768,,,0.007174191,314,43768,,,0.00070828,31,43768,,,0.033997441,1488,43768,,,0.930177299,40712,43768,,,0.004349402,180,41385,0.001322191,0.007376613,0.50121093,21937,43768,,,0.562521932,24045,42745,, -29,031,29031,MO,Cape Girardeau County,2024,1,9177.553242,1243,222488,8407.771467,9947.335017,0,,,,2,,,,2,19853.17123,15864.3201,23842.02236,,,,,2,8424.116304,7628.932096,9219.300513,,,,,2,,0.171,,,0.143,0.2,4.14340004,,,3.34114449,4.952942711,5.17833027,,,4.263796945,6.068309526,0.08520465,535,6279,0.078299002,0.092110299,0,,,,0.112068966,0.054662689,0.169475242,0.144057623,0.120211161,0.167904085,0.090909091,0.056230502,0.12558768,0.07095573,0.063717795,0.078193665,,,,0.146919431,0.099150064,0.194688798,0.192,,,0.151,0.236,0.38,,,0.32,0.436,7.5,0.095193297,0.114,,,0.235,,,0.193,0.279,0.740166442,60479,81710,,,0.176925528,,,0.144850065,0.208923524,0.230769231,12,52,0.15966014,0.307394816,518.8,426,82113,,,16.05578238,350,21799,14.37367575,17.737889,,,,,,,41.33685136,33.40438364,50.58583717,42.95532646,27.79842242,63.41053556,11.46723238,9.877955059,13.05650971,,,,35.80246914,23.97747548,51.41831783,0.116419888,7556,64903,0.102122016,0.130717761,0.000901197,74,82113,,,1109.635135,0.000711709,59,82899,,,1405.067797,0.002883026,239,82899,,,346.8577406,2040,,,,,,,2152,,1986,0.5,,,,,,0.3,0.43,,0.5,0.47,,,,,,0.37,0.28,0.29,0.47,0.918403304,48477,52784,0.906468581,0.930338027,0.700861591,13910,19847,0.650092437,0.751630745,0.022257985,899,40390,,,0.164,2797,,0.113957447,0.214042553,,,,,,,0.514629948,0.385701367,0.64355853,0.496473907,0.331611197,0.661336617,0.108876939,0.079020154,0.138733723,4.42943571,118607,26777,4.047364704,4.811506715,0.167808811,2914,17365,0.135344881,0.200272741,13.03082338,107,82113,,,78.50834151,312,397410,69.79680869,87.21987434,,,,,,,131.2422075,93.76135718,178.7146367,,,,76.70627375,67.40019542,86.01235208,,,,9.1,,,,,0,,,,,0.129571405,3915,30215,0.111777119,0.147365691,0.116972864,0.098434574,0.135511154,0.012411054,0.006634381,0.018187728,0.007446633,0.003466032,0.011427233,0.819076681,33284,40636,0.802783021,0.835370341,,,,,,,0.697368421,0.605929239,0.788807603,0.797178131,0.702231662,0.892124599,0.838348676,0.81786362,0.858833731,0.197,,40636,0.174869067,0.219130933,75.72146532,,,75.09567306,76.34725757,,,,,,,68.45247096,65.30220429,71.60273763,,,,76.25036852,75.60189597,76.89884108,,,,453.9598591,1243,222488,427.6074556,480.3122627,,,,,,,886.9292717,731.0358099,1042.822734,,,,429.9645827,402.9733178,456.9558475,,,,67.18506998,54,80375,50.47149235,87.66194264,,,,,,,192.0036142,111.8491808,307.416386,,,,49.71773159,33.78078647,70.5703514,,,,6.228042159,39,6262,4.428746804,8.513938656,,,,,,,,,,,,,,,,,,,,,,0.122,,,0.105,0.142,0.175,,,0.152,0.199,0.1,,,0.085,0.116,103.3,72,69693,,,0.114,9210,,,,0.095193297,7203.657591,75674,,,19.95875191,48,240496,14.71600809,26.46240943,,,,,,,,,,,,,18.50652355,13.09631752,25.40164948,,,,0.326,,,0.308,0.342,0.137146346,6515,47504,0.118082516,0.156210175,0.061822957,1130,18278,0.043950616,0.079695297,0.002424637,201,82899,,,412.4328358,0.930622517,702.62,755,,,0.065590519,321,4894,0.024978645,0.106202393,3.129788193,,,,,,,2.69318587,2.658519913,3.226054112,2.901737007,,,,,,,2.253078747,2.730456196,3.023366465,0.184110799,,,,,307.83836,,,,,0.741496969,40855,55098,0.667544718,0.81544922,64118,,,56933.31915,71302.68085,40521,23289.68085,57752.31915,104417,39194.87234,169639.1277,32128,24899.23404,39356.76596,45540,17118.21277,73961.78723,67123,64140.70213,70105.29787,,,,,,0.597002575,6493,10876,,,53.89038633,,,,,0.239199601,,64118,,,7.493042175,35,4671,,,5.406428243,30,554895,3.647694433,7.718012488,,,,,,,42.37986486,25.11699381,66.97845753,,,,2.10020498,1.007129922,3.862351734,,,,18.54118098,75,397410,14.45376018,23.42566674,18.87219748,,,,,,,,,,,,,19.59460713,15.09023514,25.02187586,,,,16.60753378,66,397410,12.84426542,21.12885495,,,,,,,39.37266225,20.34442913,68.77611736,,,,15.282476,11.41368405,20.04093404,,,,14.95778481,83,554895,11.9137921,18.54242475,,,,,,,30.60768017,16.29730062,52.34006526,,,,14.07137337,10.90512108,17.87014677,,,,28.38235294,,6800,,,36,157,0.665423645,40328,60605,,,0.661,,,,,67.27712695,,,,,0.671511812,21205,31578,0.649940158,0.693083467,0.119234145,3668,30763,0.099551974,0.138916315,0.882323136,27862,31578,0.866102357,0.898543915,82899,,,,,0.210943437,17487,82899,,,0.177312151,14699,82899,,,0.079639079,6602,82899,,,0.004282319,355,82899,,,0.019252343,1596,82899,,,0.000518704,43,82899,,,0.02822712,2340,82899,,,0.846234575,70152,82899,,,0.00281639,217,77049,0.000696689,0.004936091,0.511489885,42402,82899,,,0.322004651,26311,81710,, -29,033,29033,MO,Carroll County,2024,1,8453.194388,143,23109,6200.879313,10705.50946,0,,,,2,,,,2,,,,2,,,,2,8720.615151,6343.6597,11097.5706,,,,,2,,0.183,,,0.154,0.214,4.180363622,,,3.326694657,5.104495869,5.106493978,,,4.079480401,6.195876125,0.074960128,47,627,0.054348244,0.095572011,0,,,,,,,,,,,,,0.069139966,0.048720918,0.089559015,,,,,,,0.217,,,0.172,0.264,0.408,,,0.333,0.48,7.6,0.091277192,0.11,,,0.271,,,0.221,0.323,0.476162449,4045,8495,,,0.163744799,,,0.129040098,0.198863696,0.235294118,4,17,0.110052656,0.376271045,95.5,8,8376,,,18.44046365,35,1898,12.84445859,25.64622095,,,,,,,,,,,,,18.07909605,12.36608831,25.52228931,,,,,,,0.130981595,854,6520,0.113109255,0.148853936,0.000358166,3,8376,,,2792,0.000356168,3,8423,,,2807.666667,0.00047489,4,8423,,,2105.75,2556,,,,,,,,,2593,0.47,,,,,,,,,0.46,0.43,,,,,,,,,0.43,0.913706434,5453,5968,0.893622027,0.933790841,0.520867209,961,1845,0.421196497,0.620537921,0.026189934,115,4391,,,0.198,355,,0.12293617,0.27306383,,,,,,,,,,,,,0.121894859,0.063265138,0.180524579,4.065002902,105060,25845,3.491141205,4.638864599,0.235978836,446,1890,0.139315142,0.33264253,16.71442216,14,8376,,,122.8330398,53,43148,92.01037576,160.6686403,,,,,,,,,,,,,127.5072336,95.22850081,167.2087728,,,,7,,,,,0,,,,,0.065340909,230,3520,0.042280982,0.088400836,0.059428571,0.034871356,0.083985787,0.007954546,0,0.019024091,0.008238636,0,0.018462801,0.773476328,2957,3823,0.725753082,0.821199573,,,,,,,,,,,,,0.746748555,0.685053859,0.808443251,0.335,,3823,0.276012251,0.393987749,76.37699496,,,74.53568626,78.21830366,,,,,,,,,,,,,76.00405395,74.0915745,77.9165334,,,,427.5364608,143,23109,352.0285551,503.0443664,,,,,,,,,,,,,437.8736027,359.5091393,516.2380661,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.13,,,0.112,0.15,0.181,,,0.156,0.205,0.102,,,0.086,0.119,112.6,8,7107,,,0.11,940,,,,0.091277192,848.4215013,9295,,,,,,,,,,,,,,,,,,,,,,,,,,0.346,,,0.329,0.362,0.150995341,713,4722,0.128357043,0.173633639,0.079831933,152,1904,0.056002146,0.10366172,0.000712335,6,8423,,,1403.833333,0.909545455,100.05,110,,,,,,,,3.505658371,,,,,,,,,3.462680769,3.128727318,,,,,,,,,3.105698007,0.102170665,,,,,-853.5070225,,,,,0.803858871,36955,45972,0.663944231,0.94377351,56818,,,50050.34043,63585.65957,,,,,,,,,,,,,60366,56989.31915,63742.68085,,,,,,0.400462963,519,1296,,,26.99120525,,,,,0.238322363,,56818,,,15.55555556,7,450,,,,,,,,,,,,,,,,,,,,,,,,,,21.67411101,11,43148,10.3935787,39.85946184,25.49364976,,,,,,,,,,,,,22.81087517,10.9387013,41.95001161,,,,,,,,,,,,,,,,,,,,,,,,,,,36.03426531,22,61053,22.58248222,54.55631073,,,,,,,,,,,,,36.37497402,22.51668223,55.60301174,,,,,,800,,,-888,7,0.671905115,4532,6745,,,0.578,,,,,3.63921415,,,,,0.711018711,2394,3367,0.66028671,0.761750712,0.065966525,201,3047,0.037554231,0.094378818,0.777843778,2619,3367,0.737959723,0.817727832,8423,,,,,0.218449484,1840,8423,,,0.227472397,1916,8423,,,0.020657723,174,8423,,,0.003680399,31,8423,,,0.002018283,17,8423,,,0.001543393,13,8423,,,0.021963671,185,8423,,,0.93517749,7877,8423,,,0.000866122,7,8082,0,0.010707227,0.499940639,4211,8423,,,1,8495,8495,, -29,035,29035,MO,Carter County,2024,1,12968.3626,141,15849,9533.093052,16403.63215,0,,,,2,,,,2,,,,2,,,,2,13704.12137,10024.27709,17383.96565,,,,,2,,0.209,,,0.177,0.24,4.632247705,,,3.778154649,5.632688683,5.356785315,,,4.315015151,6.500032835,0.08438061,47,557,0.061296811,0.10746441,0,,,,,,,,,,,,,0.08490566,0.061174477,0.108636844,,,,,,,0.246,,,0.2,0.291,0.399,,,0.327,0.474,4.1,0.263422589,0.187,,,0.294,,,0.245,0.345,0.784698193,4082,5202,,,0.153669491,,,0.122809915,0.189770956,0.272727273,3,11,0.11266692,0.445445377,225.6,12,5320,,,38.00475059,48,1263,28.02170295,50.38878558,,,,,,,,,,,,,41.66666667,30.61509944,55.40783364,,,,,,,0.151242604,639,4225,0.129795795,0.172689412,0.00018797,1,5320,,,5320,0.000379651,2,5268,,,2634,0.001518603,8,5268,,,658.5,3351,,,,,,,,,3375,0.36,,,,,,,,,0.36,0.3,,,,,,,,,0.3,0.834076966,2991,3586,0.781308461,0.886845471,0.393410853,406,1032,0.249777174,0.537044531,0.035685646,89,2494,,,0.315,389,,0.192276596,0.437723404,,,,,,,,,,,,,0.378977821,0.243084848,0.514870793,5.186527467,104327,20115,2.318045982,8.055008952,0.203783319,237,1163,0.082390638,0.325176,9.398496241,5,5320,,,101.6397886,30,29516,68.57593855,145.0971182,,,,,,,,,,,,,104.8331707,70.20841969,150.5579201,,,,7.3,,,,,0,,,,,0.072805139,170,2335,0.035596524,0.110013754,0.049568966,0.013690329,0.085447602,0.017130621,0,0.04243528,0.006423983,0,0.019807402,0.718303765,1660,2311,0.626205453,0.810402077,,,,,,,,,,,,,0.743083004,0.664808603,0.821357405,0.318,,2311,0.193479386,0.442520615,71.78691236,,,69.43279206,74.14103266,,,,,,,,,,,,,71.04927324,68.60392002,73.49462645,,,,620.9214387,141,15849,510.2351813,731.6076961,,,,,,,,,,,,,649.9590716,533.2424287,766.6757146,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.144,,,0.124,0.164,0.192,,,0.168,0.218,0.108,,,0.093,0.125,,,,,,0.187,1000,,,,0.263422589,1650.342518,6265,,,,,,,,,,,,,,,,,,,,,,,,,,0.35,,,0.333,0.367,0.180174146,538,2986,0.151578401,0.208769891,0.083206107,109,1310,0.05818483,0.108227384,0.000759301,4,5268,,,1317,,,,,,,,,,,3.306511724,,,,,,,,,3.292367269,3.21915296,,,,,,,,,3.215512763,0.077147867,,,,,-5443.996,,,,,0.63081338,28796,45649,0.338074618,0.923552143,42907,,,36441.97872,49372.02128,,,,,,,,,,,,,48036,33598.7234,62473.2766,,,,,,0.56525497,654,1157,,,,,,,,0.125270935,,42907,,,9.900990099,3,303,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,38.1433714,16,41947,21.80223247,61.94244546,,,,,,,,,,,,,40.57103735,23.18985332,65.88482288,,,,36.66666667,,600,,,0,22,0.629098806,2897,4605,,,0.299,,,,,5.550065227,,,,,0.693506494,1335,1925,0.598311965,0.788701022,0.113789238,203,1784,0.053157668,0.174420807,0.801038961,1542,1925,0.719150364,0.882927559,5268,,,,,0.238800304,1258,5268,,,0.207099469,1091,5268,,,0.007023538,37,5268,,,0.011769172,62,5268,,,0.00284738,15,5268,,,0.000189825,1,5268,,,0.032270311,170,5268,,,0.923690205,4866,5268,,,0,0,4975,0,0.016285684,0.512528474,2700,5268,,,1,5202,5202,, -29,037,29037,MO,Cass County,2024,1,7515.992237,1478,297907,6909.703132,8122.281341,0,,,,2,,,,2,8873.367177,6180.62536,12340.70572,,4994.287254,3091.542526,7634.298588,1,7671.17904,7008.254882,8334.103198,,,,,2,,0.152,,,0.128,0.178,3.694996666,,,2.885624172,4.567676445,5.168655959,,,4.23085864,6.168551705,0.074512707,604,8106,0.068795904,0.080229509,0,,,,,,,0.125319693,0.092502455,0.158136931,0.049504951,0.030585452,0.068424449,0.073434757,0.067251122,0.079618393,,,,0.080645161,0.046755988,0.114534334,0.182,,,0.145,0.225,0.381,,,0.32,0.444,8,0.084858593,0.095,,,0.225,,,0.183,0.271,0.693871494,74816,107824,,,0.165861697,,,0.13344271,0.201119974,0.295774648,21,71,0.234426663,0.358439747,370.3,406,109638,,,16.03559735,382,23822,14.42751038,17.64368432,,,,,,,24.30044183,16.72730602,34.12685513,25.95155709,18.92924382,34.7252252,14.95067818,13.23288659,16.66846976,,,,10.88139282,5.218050812,20.01126882,0.096124989,8712,90632,0.084210095,0.108039883,0.000246265,27,109638,,,4060.666667,0.000407631,45,110394,,,2453.2,0.001222893,135,110394,,,817.7333333,3262,,,,,,,4448,,3173,0.46,,,,,,0.5,0.48,,0.46,0.46,,,,,,0.61,0.41,0.33,0.46,0.940889767,69496,73862,0.932243906,0.949535628,0.650535607,17247,26512,0.609261774,0.69180944,0.02391814,1316,55021,,,0.104,2596,,0.074212766,0.133787234,,,,,,,0.267432322,0.048622921,0.486241723,0.06125498,0.00972299,0.11278697,0.090817863,0.069844547,0.111791178,3.70593673,144324,38944,3.409654732,4.002218728,0.19596598,5023,25632,0.164769993,0.227161967,8.756088218,96,109638,,,82.5011019,438,530902,74.77467384,90.22752996,,,,,,,47.3668346,23.64535317,84.75235118,40.22202558,19.28802468,73.96973712,88.18418391,79.62727931,96.7410885,,,,6.3,,,,,1,,,,,0.096794158,3910,40395,0.084239013,0.109349302,0.076292247,0.063886139,0.088698354,0.017328877,0.01175281,0.022904944,0.007302884,0.002222585,0.012383183,0.809867293,43451,53652,0.792257667,0.827476919,,,,,,,0.586270872,0.434434199,0.738107545,0.73553719,0.612355511,0.858718869,0.731180409,0.698425042,0.763935776,0.492,,53652,0.461136056,0.522863945,77.6416484,,,77.10741829,78.1758785,,,,,,,75.79407626,72.90893919,78.67921334,82.62169453,76.10073539,89.14265367,77.48611096,76.91762747,78.05459445,,,,377.6651168,1478,297907,357.6096324,397.7206012,,,,,,,448.1044308,346.5639343,570.0987061,292.5322322,194.3855439,422.7905243,382.7013523,361.2451113,404.1575934,,,,54.02096013,60,111068,41.22368364,69.53568391,,,,,,,,,,,,,51.13611099,37.43806017,68.20840601,,,,5.072374119,41,8083,3.640023242,6.881248245,,,,,,,,,,,,,4.349086692,2.934310528,6.208591678,,,,,,,0.11,,,0.095,0.129,0.169,,,0.145,0.195,0.092,,,0.078,0.107,98.1,90,91735,,,0.095,10210,,,,0.084858593,8441.563133,99478,,,15.51715577,50,322224,11.5171321,20.45743541,,,,,,,,,,,,,17.16854865,12.65873247,22.7630047,,,,0.303,,,0.288,0.318,0.113201126,7318,64646,0.098903254,0.127498999,0.055282825,1509,27296,0.040984953,0.069580698,0.000643151,71,110394,,,1554.84507,0.896997848,1250.415,1394,,,0.053235908,306,5748,0.027565283,0.078906534,3.051790074,,,,,,,2.700082223,2.92550628,3.09045029,2.992280202,,,,,,,2.539299019,2.85533314,3.030310288,0.069285993,,,,,629.39386,,,,,0.7582875,50461,66546,0.717581687,0.798993314,77805,,,72791.21277,82818.78723,50000,38107.74468,61892.25532,,,,57014,47090.08511,66937.91489,104656,73990.6383,135321.3617,84362,80138.17021,88585.82979,,,,,,0.292347866,5150,17616,,,52.79179782,,,,,0.253209948,,77805,,,9.272581935,58,6255,,,4.215679608,31,735350,2.864349763,5.983820698,,,,,,,,,,,,,4.352645087,2.89230105,6.290784043,,,,22.15124985,121,530902,18.07717428,26.22532542,22.7914003,,,,,,,,,,,,,22.88159746,18.42466917,27.33852575,,,,20.71945482,110,530902,16.84743071,24.59147892,,,,,,,,,,,,,21.18149515,17.19616163,25.81345809,,,,13.05500782,96,735350,10.57459825,15.94239899,,,,,,,,,,,,,13.99064492,11.25013068,17.19687788,,,,32,,10500,,,132,204,0.729314616,57408,78715,,,0.746,,,,,37.90072753,,,,,0.761535498,31622,41524,0.74315857,0.779912426,0.084626511,3452,40791,0.070456633,0.098796389,0.897721799,37277,41524,0.882221096,0.913222503,110394,,,,,0.231742667,25583,110394,,,0.181350436,20020,110394,,,0.049866841,5505,110394,,,0.007246771,800,110394,,,0.008850119,977,110394,,,0.001349711,149,110394,,,0.051144084,5646,110394,,,0.859394532,94872,110394,,,0.001864372,190,101911,0.000204349,0.003524395,0.507283005,56001,110394,,,0.296612999,31982,107824,, -29,039,29039,MO,Cedar County,2024,1,10891.30042,300,38761,8859.186683,12923.41416,0,,,,2,,,,2,,,,2,,,,2,11424.9493,9261.833253,13588.06535,,,,,2,,0.221,,,0.187,0.257,4.804840123,,,3.872597462,5.827285423,5.709814906,,,4.617018282,6.868649079,0.059646539,81,1358,0.047050199,0.072242879,0,,,,,,,,,,,,,0.058411215,0.045583411,0.071239019,,,,,,,0.252,,,0.203,0.299,0.407,,,0.336,0.484,6.4,0.109804174,0.156,,,0.304,,,0.25,0.357,0.591767691,8396,14188,,,0.141594002,,,0.11318523,0.173994784,0.153846154,2,13,0.034991468,0.324991408,186.3,27,14496,,,34.69026549,98,2825,28.16323436,42.27632223,,,,,,,,,,,,,35.0269438,28.2015102,43.00532522,,,,,,,0.148846015,1651,11092,0.128590696,0.169101334,0.000482892,7,14496,,,2070.857143,0.000342442,5,14601,,,2920.2,0.00089035,13,14601,,,1123.153846,1248,,,,,,,,,1257,0.35,,,,,,,,,0.35,0.29,,,,,,,,,0.29,0.858065819,8500,9906,0.817551315,0.898580323,0.579191991,1620,2797,0.452357757,0.706026226,0.027137283,153,5638,,,0.241,825,,0.14806383,0.33393617,,,,,,,,,,0.027777778,0,0.188918897,0.214146658,0.121172356,0.30712096,4.083700037,89090,21816,3.331255913,4.836144161,0.152173913,525,3450,0.075434929,0.228912897,11.72737307,17,14496,,,102.2337371,73,71405,80.13493022,128.5435756,,,,,,,,,,,,,106.9201069,83.65839871,134.6481795,,,,7.5,,,,,0,,,,,0.119282511,665,5575,0.080448548,0.158116474,0.091412742,0.055142257,0.127683228,0.026726457,0.005622923,0.047829992,0.01793722,0.003925709,0.03194873,0.763544892,3946,5168,0.700774269,0.826315514,,,,,,,,,,,,,0.767232238,0.690794827,0.843669648,0.332,,5168,0.246287266,0.417712734,74.52466382,,,72.98745607,76.06187157,,,,,,,,,,,,,73.94792228,72.36509517,75.53074939,,,,530.3808016,300,38761,464.5724989,596.1891043,,,,,,,,,,,,,549.1101049,479.9942733,618.2259365,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.152,,,0.131,0.176,0.199,,,0.171,0.229,0.117,,,0.101,0.136,58.5,7,11968,,,0.156,2220,,,,0.109804174,1535.281954,13982,,,,,,,,,,,,,,,,,,,,,,,,,,0.35,,,0.331,0.367,0.182887002,1400,7655,0.155482747,0.210291257,0.074626866,270,3618,0.050797078,0.098456653,0.000616396,9,14601,,,1622.333333,0.882055215,143.775,163,,,,,,,,2.8939505,,,,,,,,,2.895097033,2.962701283,,,,,,,,,2.963010938,0.043908413,,,,,-1844.540225,,,,,0.618244757,30362,49110,0.445673969,0.790815545,45952,,,39825.3617,52078.6383,,,,,,,,,,,,,43840,40806.46809,46873.53192,,,,,,0.590705988,1322,2238,,,,,,,,0.29663562,,45952,,,7.717750827,7,907,,,,,,,,,,,,,,,,,,,,,,,,,,24.04315385,19,71405,14.00602314,38.49541841,26.6087809,,,,,,,,,,,,,25.34745866,14.76582875,40.58373676,,,,19.60647014,14,71405,10.71903967,32.89632536,,,,,,,,,,,,,20.79002079,11.36609783,34.88212225,,,,21.13632932,21,99355,13.08372098,32.30912459,,,,,,,,,,,,,22.37517847,13.85058813,34.2028371,,,,32.30769231,,1300,,,0,42,0.662964706,7044,10625,,,0.547,,,,,2.796646066,,,,,0.735573411,4028,5476,0.680354325,0.790792498,0.101717815,527,5181,0.061298861,0.14213677,0.794192842,4349,5476,0.735560902,0.852824781,14601,,,,,0.241079378,3520,14601,,,0.234915417,3430,14601,,,0.006985823,102,14601,,,0.010204781,149,14601,,,0.006095473,89,14601,,,0.000684885,10,14601,,,0.028217245,412,14601,,,0.92931991,13569,14601,,,0,0,13393,0,0.006761233,0.495719471,7238,14601,,,1,14188,14188,, -29,041,29041,MO,Chariton County,2024,1,8138.367002,141,19506,5828.985779,10447.74823,0,,,,2,,,,2,,,,2,,,,2,8004.636235,5637.335657,10371.93681,,,,,2,,0.172,,,0.144,0.202,4.086885511,,,3.223194979,5.069663084,5.186366117,,,4.120558199,6.270403644,0.074782609,43,575,0.053282317,0.0962829,0,,,,,,,,,,,,,0.072859745,0.051118398,0.094601092,,,,,,,0.212,,,0.17,0.255,0.391,,,0.315,0.467,8.1,0.025053685,0.116,,,0.255,,,0.21,0.304,0.386069115,2860,7408,,,0.162464091,,,0.130664398,0.19854236,0.25,1,4,0.023230216,0.544021398,258.3,19,7356,,,23.62204724,33,1397,16.2603304,33.17413691,,,,,,,,,,,,,24.10575428,16.3786905,34.21619402,,,,,,,0.128013148,701,5476,0.111332297,0.144693999,0.000135943,1,7356,,,7356,0.000135391,1,7386,,,7386,0.000676956,5,7386,,,1477.2,2509,,,,,,,,,2588,0.4,,,,,,,,,0.4,0.38,,,,,,,0.29,,0.38,0.920795868,4813,5227,0.89888041,0.942711326,0.649377593,939,1446,0.552421661,0.746333526,0.020646563,76,3681,,,0.162,269,,0.101234043,0.222765957,,,,,,,,,,,,,0.182642487,0.118745356,0.246539618,3.923007115,108071,27548,3.372588389,4.473425841,0.145858343,243,1666,0.085245287,0.2064714,16.3132137,12,7356,,,62.03975939,23,37073,39.32788562,93.09010033,,,,,,,,,,,,,59.84611,37.04568534,91.48113632,,,,7.3,,,,,1,,,,,0.086238532,235,2725,0.063696424,0.108780641,0.075248986,0.044521743,0.105976228,0.009908257,0.001475089,0.018341424,0.011009174,0,0.024574458,0.79665826,2527,3172,0.762671475,0.830645045,,,,,,,,,,,,,0.811948052,0.759920937,0.863975167,0.366,,3172,0.296524829,0.435475172,76.83255244,,,74.87753849,78.78756639,,,,,,,,,,,,,76.86187995,74.85658302,78.86717688,,,,457.544869,141,19506,374.5209035,540.5688344,,,,,,,,,,,,,450.6636541,366.6073409,534.7199673,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.123,,,0.106,0.142,0.179,,,0.155,0.204,0.097,,,0.082,0.113,146.1,9,6162,,,0.116,860,,,,0.025053685,196.1954103,7831,,,,,,,,,,,,,,,,,,,,,,,,,,0.343,,,0.326,0.361,0.146379853,558,3812,0.124933045,0.167826662,0.086981567,151,1736,0.06196029,0.112002843,0.000676956,5,7386,,,1477.2,,,,,,,,,,,3.199458038,,,,,,,,,3.237086953,3.102104183,,,,,,,,,3.150381346,,,,,,1049.788,,,,,0.764875036,39632,51815,0.62838859,0.901361482,56633,,,51029.42553,62236.57447,,,,,,,26875,1461.723404,52288.2766,44000,23876.93617,64123.06383,62689,55623.46809,69754.53192,,,,,,0.379821959,384,1011,,,34.81042718,,,,,0.166475377,,56633,,,17.69911504,8,452,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,22.99819847,12,52178,11.88350475,40.17322444,,,,,,,,,,,,,20.22326484,9.697841563,37.19130408,,,,0,,700,,,0,0,0.710897995,4077,5735,,,0.567,,,,,4.654233024,,,,,0.816673099,2116,2591,0.785098455,0.848247743,0.07549505,183,2424,0.043542266,0.107447833,0.813199537,2107,2591,0.782951452,0.843447621,7386,,,,,0.228405091,1687,7386,,,0.250744652,1852,7386,,,0.024505822,181,7386,,,0.004467912,33,7386,,,0.002437043,18,7386,,,0,0,7386,,,0.01272678,94,7386,,,0.942458706,6961,7386,,,0,0,6985,0,0.011599324,0.494042784,3649,7386,,,1,7408,7408,, -29,043,29043,MO,Christian County,2024,1,7255.004299,1152,253150,6622.349521,7887.659077,0,,,,2,,,,2,,,,2,,,,2,7464.467941,6789.403658,8139.532224,,,,,2,,0.152,,,0.126,0.18,3.795612529,,,3.029497926,4.701118385,5.144202743,,,4.17948273,6.194373876,0.063327815,459,7248,0.057720718,0.068934911,0,,,,,,,,,,0.097902098,0.063459501,0.132344695,0.060624432,0.054866144,0.06638272,,,,0.086538462,0.048328718,0.124748205,0.179,,,0.139,0.221,0.348,,,0.28,0.42,8,0.068440442,0.101,,,0.237,,,0.19,0.286,0.601438509,53433,88842,,,0.168592574,,,0.137247708,0.206869194,0.345454546,19,55,0.27608659,0.414454934,228.4,209,91499,,,14.14182521,278,19658,12.4794114,15.80423902,,,,,,,,,,14.20765027,7.5649754,24.29551467,13.8778747,12.14008991,15.61565949,,,,16.2601626,7.797379994,29.90301796,0.116389146,8926,76691,0.102091274,0.130687018,0.000415305,38,91499,,,2407.868421,0.000311446,29,93114,,,3210.827586,0.001192087,111,93114,,,838.8648649,2424,,,,,,,,,2400,0.44,,,,,,,,,0.44,0.5,,,,,0.45,0.55,,0.4,0.5,0.92812108,56233,60588,0.918662012,0.937580149,0.722304159,17141,23731,0.674125974,0.770482345,0.020352696,966,47463,,,0.098,2239,,0.06106383,0.13493617,0.174418605,0,0.762708279,0.213166144,0,0.477298123,,,,0.103265666,0.010887555,0.195643778,0.103276906,0.074141084,0.132412729,3.730840046,129684,34760,3.399454016,4.062226076,0.143835008,3236,22498,0.114473432,0.173196583,8.415392518,77,91499,,,71.07978085,315,443164,63.23019263,78.92936907,,,,,,,,,,,,,73.90533796,65.59736476,82.21331116,,,,8.2,,,,,0,,,,,0.108049869,3510,32485,0.088535469,0.127564269,0.075858853,0.063446592,0.088271114,0.030321687,0.016419949,0.044223425,0.007080191,0.002320576,0.011839805,0.816508645,35136,43032,0.795999203,0.837018087,,,,,,,,,,,,,0.713277548,0.668355038,0.758200059,0.394,,43032,0.359405747,0.428594253,77.76045065,,,77.18801247,78.33288884,,,,,,,,,,86.55217158,76.41036671,96.69397645,77.46427319,76.87127155,78.05727482,,,,363.356287,1152,253150,341.7313916,384.9811824,,,,,,,,,,,,,370.1926945,347.6950925,392.6902964,,,,49.13501894,48,97690,36.22828419,65.14590663,,,,,,,,,,,,,53.78251267,39.51736737,71.51934035,,,,5.340271122,39,7303,3.797454812,7.300326423,,,,,,,,,,,,,5.538922156,3.89991236,7.634674572,,,,,,,0.114,,,0.096,0.133,0.167,,,0.142,0.194,0.086,,,0.073,0.102,114.2,86,75287,,,0.101,8830,,,,0.068440442,5298.795925,77422,,,15.88186845,43,270749,11.49378694,21.39277257,,,,,,,,,,,,,16.3589717,11.73948053,22.1927923,,,,0.311,,,0.293,0.329,0.138121547,7400,53576,0.120249207,0.155993887,0.067530639,1631,24152,0.049658299,0.08540298,0.000612153,57,93114,,,1633.578947,0.938955513,970.88,1034,,,,,,,,3.318399783,,,,,,,,3.197108988,3.323773545,3.266409331,,,,,,,,3.104443233,3.280819095,0.032977721,,,,,-1364.531154,,,,,0.752277324,45008,59829,0.69336235,0.811192297,73616,,,67172.42553,80059.57447,,,,83284,42432.59575,124135.4043,93043,20019,166067,,,,75709,71891.46809,79526.53192,,,,,,0.303907381,4830,15893,,,66.00413764,,,,,0.228591611,,73616,,,8.258396036,45,5449,,,3.928990053,24,610844,2.517378063,5.84602576,,,,,,,,,,,,,3.872912148,2.427133424,5.863635536,,,,20.93524354,94,443164,16.83440805,25.73296859,21.21110921,,,,,,,,,,,,,21.33545025,17.06560625,26.34910749,,,,18.72895813,83,443164,14.91751061,23.21736147,,,,,,,,,,,,,19.44877315,15.42166754,24.20568171,,,,13.26034143,81,610844,10.53062517,16.48139364,,,,,,,,,,,,,13.90727544,11.01052094,17.3326147,,,,26.31578947,,9500,,,31,219,0.730945693,46839,64080,,,0.78,,,,,30.39151001,,,,,0.759270899,25368,33411,0.73684317,0.781698628,0.092464184,3027,32737,0.077745895,0.107182473,0.899763551,30062,33411,0.883866473,0.915660629,93114,,,,,0.25089675,23362,93114,,,0.169555599,15788,93114,,,0.009397083,875,93114,,,0.009955538,927,93114,,,0.008602358,801,93114,,,0.000859162,80,93114,,,0.037266147,3470,93114,,,0.917251971,85409,93114,,,0.006299774,530,84130,0.002409683,0.010189865,0.507227699,47230,93114,,,0.422491614,37535,88842,, -29,045,29045,MO,Clark County,2024,1,6562.914238,115,18434,4487.834815,8637.99366,0,,,,2,,,,2,,,,2,,,,2,6717.905927,4559.899619,8875.912235,,,,,2,,0.213,,,0.181,0.249,4.632163409,,,3.748391689,5.591783776,5.449126304,,,4.377467934,6.565553892,0.077634011,42,541,0.055084606,0.100183416,0,,,,,,,,,,,,,0.078947368,0.05603282,0.101861917,,,,,,,0.247,,,0.202,0.297,0.384,,,0.313,0.455,7.7,0.044880964,0.125,,,0.321,,,0.267,0.376,0.436991257,2899,6634,,,0.162932481,,,0.130482694,0.198685298,0.333333333,3,9,0.150331965,0.513162068,207.8,14,6736,,,25.93440122,34,1311,17.96032676,36.24072624,,,,,,,,,,,,,25.6,17.51038105,36.13956166,,,,,,,0.149820518,793,5293,0.129565199,0.170075837,0.000296912,2,6736,,,3368,0.000297486,2,6723,,,3361.5,0.000297486,2,6723,,,3361.5,3061,,,,,,,,,3074,0.44,,,,,,,,,0.44,0.34,,,,,,,,,0.34,0.896244845,4129,4607,0.857473172,0.935016518,0.561391058,791,1409,0.40912882,0.713653295,0.031687792,95,2998,,,0.192,293,,0.11693617,0.26706383,,,,,,,,,,,,,0.13823934,0.046134555,0.230344124,4.132805478,96563,23365,2.89383587,5.371775087,0.086930091,143,1645,0.01794689,0.155913293,10.39192399,7,6736,,,50.10610705,17,33928,29.18865383,80.22473124,,,,,,,,,,,,,51.8308485,30.19337928,82.98620938,,,,7.9,,,,,0,,,,,0.098671727,260,2635,0.065050649,0.132292804,0.058486239,0.028865945,0.088106532,0.026565465,0.002252434,0.050878496,0.026185958,0.005840899,0.046531017,0.814265537,2306,2832,0.754869351,0.873661722,,,,,,,,,,,,,0.763705104,0.685813691,0.841596517,0.414,,2832,0.329765831,0.498234169,77.66256633,,,75.88859816,79.43653449,,,,,,,,,,,,,77.50538815,75.70517838,79.30559792,,,,400.3122464,115,18434,322.2593769,478.3651159,,,,,,,,,,,,,407.1482911,327.2439129,487.0526692,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.147,,,0.126,0.17,0.192,,,0.166,0.219,0.11,,,0.093,0.127,124,7,5645,,,0.125,830,,,,0.044880964,320.4051999,7139,,,,,,,,,,,,,,,,,,,,,,,,,,0.364,,,0.346,0.381,0.172964343,650,3758,0.147943066,0.197985619,0.094198378,151,1603,0.065602633,0.122794123,0.000743716,5,6723,,,1344.6,0.975,63.375,65,,,,,,,,2.921698724,,,,,,,,,2.922879098,2.863914717,,,,,,,,,2.908817941,,,,,,-3463.943,,,,,0.741782907,33875,45667,0.551886486,0.931679328,63249,,,58149.42553,68348.57447,,,,,,,,,,,,,53879,44985.7234,62772.2766,,,,,,0.5,568,1136,,,,,,,,0.164682446,,63249,,,22.16748769,9,406,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,25.28871281,12,47452,13.06704693,44.17429202,,,,,,,,,,,,,26.13240418,13.50299458,45.64805106,,,,31.42857143,,700,,,16,6,0.650814957,3394,5215,,,0.534,,,,,3.413467839,,,,,0.784347826,1804,2300,0.731572904,0.837122749,0.061851016,137,2215,0.025386749,0.098315283,0.716956522,1649,2300,0.663327974,0.770585069,6723,,,,,0.233377956,1569,6723,,,0.212553919,1429,6723,,,0.005057266,34,6723,,,0.002677376,18,6723,,,0.004313551,29,6723,,,0.000148743,1,6723,,,0.010412018,70,6723,,,0.960880559,6460,6723,,,0.000955566,6,6279,0,0.013116362,0.480291537,3229,6723,,,1,6634,6634,, -29,047,29047,MO,Clay County,2024,1,6733.300792,3015,714843,6377.136252,7089.465331,0,,,,2,2772.775649,1584.880861,4502.813939,1,10001.57515,8341.846203,11661.30409,,5553.707205,4312.574159,6794.84025,,6568.49753,6178.220689,6958.774371,,,,,2,,0.147,,,0.124,0.172,3.664996319,,,2.967124607,4.43008306,5.370164647,,,4.569791035,6.194436796,0.074212645,1567,21115,0.07067711,0.07774818,0,,,,0.094664372,0.070859487,0.118469257,0.111660079,0.097938965,0.125381193,0.070473876,0.058109106,0.082838646,0.067925005,0.064006638,0.071843371,0.089108911,0.049819621,0.128398201,0.090277778,0.069344624,0.111210931,0.161,,,0.126,0.197,0.402,,,0.35,0.453,8.1,0.058610143,0.1,,,0.237,,,0.198,0.28,0.892300709,226051,253335,,,0.198518018,,,0.16831509,0.231835618,0.394230769,41,104,0.34624445,0.44139057,445.4,1138,255518,,,13.71559375,731,53297,12.72130621,14.70988129,,,,,,,17.88109075,14.17859289,22.25456526,18.60465116,14.95813954,22.25116279,12.04911939,10.9597819,13.13845688,36.06557377,18.00380448,64.53127381,24.71557474,18.99212624,31.62195657,0.087630193,19065,217562,0.078098278,0.097162108,0.00059487,152,255518,,,1681.039474,0.000641941,165,257033,,,1557.775758,0.001606798,413,257033,,,622.3559322,3186,,,,,,,2538,850,3195,0.5,,,,,,0.33,0.47,0.4,0.5,0.55,,,,,0.69,0.53,0.37,0.44,0.55,0.938005453,161684,172370,0.931614713,0.944396194,0.725055894,52212,72011,0.69502491,0.755086879,0.024883214,3457,138929,,,0.088,5186,,0.057021277,0.118978723,0.038095238,0,0.491474279,0.121118012,0.021560177,0.220675848,0.289333333,0.209809742,0.368856925,0.156089478,0.098750407,0.213428549,0.083759107,0.063190912,0.104327302,3.719205605,144387,38822,3.54366447,3.89474674,0.20452917,12274,60011,0.181497376,0.227560963,8.570824756,219,255518,,,73.22732196,914,1248168,68.47991869,77.97472524,,,,,,,83.54315816,65.36737604,105.2087814,44.97515123,32.13090742,61.24339086,77.96577303,72.49419295,83.4373531,,,,6.2,,,,,1,,,,,0.101064692,9350,92515,0.091225389,0.110903995,0.084771519,0.075758868,0.093784169,0.015889315,0.011407914,0.020370716,0.004810031,0.00261031,0.007009751,0.777456516,102447,131772,0.765275098,0.789637933,,,,0.741023682,0.657237596,0.824809768,0.778208393,0.739054366,0.81736242,0.718285909,0.657385097,0.77918672,0.77121988,0.753821143,0.788618617,0.299,,131772,0.283283176,0.314716824,78.50192354,,,78.15263767,78.85120941,,,,91.56710277,83.10876201,100.0254435,75.16324921,73.55965109,76.76684734,82.45222019,80.16205189,84.74238849,78.54538156,78.17207057,78.91869255,,,,348.5862292,3015,714843,335.9080709,361.2643876,,,,180.3129727,118.8273852,262.3459084,451.0627448,386.80648,515.3190097,281.5445854,228.2640337,334.8251371,346.5361832,332.7702128,360.3021536,,,,44.21725922,116,262341,36.17053909,52.26397934,,,,,,,123.3860662,81.98914492,178.3272196,53.6953937,29.3557714,90.09174672,34.64821562,26.79692745,44.08102561,,,,4.957507082,105,21180,4.009252904,5.905761261,,,,,,,11.14488349,6.984439145,16.87348753,,,,3.679221751,2.800794065,4.745927997,,,,,,,0.108,,,0.092,0.125,0.161,,,0.137,0.184,0.091,,,0.078,0.106,199.6,425,212899,,,0.1,24950,,,,0.058610143,13007.87644,221939,,,18.18351914,138,758929,15.14966662,21.21737167,,,,,,,23.96269193,12.75912424,40.97693299,,,,19.51939285,15.99745756,23.04132814,,,,0.336,,,0.32,0.352,0.101277454,15872,156718,0.08936256,0.113192347,0.05466374,3487,63790,0.040365868,0.068961613,0.001030996,265,257033,,,969.9358491,0.955138046,3148.135,3296,,,0.053157935,691,12999,0.031784349,0.074531521,3.289729726,,,,,,3.293069093,2.741984864,3.133295362,3.404967953,3.255015169,,,,,,3.489372093,2.756791412,3.0933001,3.375265141,0.076279164,,,,,2487.46894,,,,,0.812238657,52058,64092,0.77864752,0.845829794,78930,,,72963.02128,84896.97872,44030,20014.34043,68045.65957,104449,85745,123153,55167,43240.19149,67093.80851,72542,66782.34043,78301.65957,85922,83534.25532,88309.74468,,,,,,0.298610434,12249,41020,,,39.52678946,,,,,0.27980489,,78930,,,5.900266464,93,15762,,,4.179024778,72,1722890,3.269829513,5.262790082,,,,,,,24.34147614,16.17473412,35.18021033,,,,2.664162834,1.875816499,3.672197527,,,,19.22790677,244,1248168,16.7819977,21.67381583,19.5486505,,,,,,,12.77649942,6.126828087,23.49643732,14.3559196,6.884221455,26.40104727,21.1405743,18.27077546,24.01037314,,,,16.66442338,208,1248168,14.39970244,18.92914431,,,,,,,31.32868431,20.64580037,45.58159085,14.61692415,7.782896502,24.99538546,16.29284744,13.79158501,18.79410987,,,,10.27343591,177,1722890,8.759926403,11.78694542,,,,,,,10.4320612,5.390398252,18.22271151,,,,10.72865574,9.005961316,12.45135016,,,,12.31404959,,24200,,,46,252,0.692769568,126569,182700,,,0.732,,,,,100.492833,,,,,0.681902694,67850,99501,0.670210986,0.693594403,0.100074583,9795,97877,0.089079896,0.11106927,0.905900443,90138,99501,0.896017311,0.915783575,257033,,,,,0.233471967,60010,257033,,,0.153898527,39557,257033,,,0.076550482,19676,257033,,,0.006598375,1696,257033,,,0.026179518,6729,257033,,,0.004711457,1211,257033,,,0.07717297,19836,257033,,,0.78429618,201590,257033,,,0.01081452,2569,237551,0.008565111,0.013063929,0.504371034,129640,257033,,,0.08092052,20500,253335,, -29,049,29049,MO,Clinton County,2024,1,7756.335137,337,57340,6408.411134,9104.25914,0,,,,2,,,,2,,,,2,,,,2,7648.718154,6271.744417,9025.691892,,,,,2,,0.165,,,0.138,0.194,3.890617596,,,3.130643196,4.719341265,5.090174096,,,4.166388649,6.092643636,0.078692494,130,1652,0.06570815,0.091676838,0,,,,,,,,,,,,,0.078862314,0.065431327,0.092293302,,,,,,,0.205,,,0.161,0.249,0.366,,,0.298,0.436,8.1,0.030681633,0.117,,,0.245,,,0.197,0.294,0.428153323,9070,21184,,,0.181723015,,,0.148847517,0.219230729,0.3125,5,16,0.177519792,0.449075671,234.9,50,21287,,,20.38530466,91,4464,16.41297569,25.02863685,,,,,,,,,,,,,20.16031091,16.0575751,24.9917386,,,,,,,0.115957875,2015,17377,0.100468514,0.131447237,0.000610701,13,21287,,,1637.461539,0.000421981,9,21328,,,2369.777778,0.000328207,7,21328,,,3046.857143,3510,,,,,,,,,3528,0.44,,,,,,,,,0.45,0.45,,,,,,,0.53,,0.45,0.938076057,13740,14647,0.922834653,0.95331746,0.511912034,2514,4911,0.437839858,0.585984211,0.028211397,300,10634,,,0.146,692,,0.101914894,0.190085106,,,,,,,,,,,,,0.130049031,0.073227051,0.186871012,3.843788922,117274,30510,3.15488049,4.532697353,0.146489104,726,4956,0.086429216,0.206548992,6.576783953,14,21287,,,64.89041268,67,103251,50.28917853,82.40853031,,,,,,,,,,,,,67.40780686,52.02392223,85.91678332,,,,7.6,,,,,0,,,,,0.103703704,840,8100,0.077992534,0.129414873,0.085882648,0.059454792,0.112310504,0.013580247,0.002255981,0.024904513,0.010493827,0.000428419,0.020559235,0.799889746,7255,9070,0.783108832,0.816670661,,,,,,,,,,,,,0.712926249,0.652217601,0.773634897,0.517,,9070,0.448897236,0.585102764,76.38113497,,,75.26640597,77.49586397,,,,,,,,,,,,,76.34281173,75.2031941,77.48242936,,,,426.7208082,337,57340,378.6930538,474.7485626,,,,,,,,,,,,,425.9267875,376.7461702,475.1074048,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.118,,,0.1,0.136,0.171,,,0.148,0.196,0.093,,,0.079,0.109,72.6,13,17908,,,0.117,2460,,,,0.030681633,636.4291126,20743,,,,,,,,,,,,,,,,,,,,,,,,,,0.335,,,0.317,0.352,0.132833081,1664,12527,0.113769251,0.15189691,0.074059561,378,5104,0.052612753,0.09550637,0.000843961,18,21328,,,1184.888889,0.898148148,266.75,297,,,0.120539255,152,1261,0.042155238,0.198923271,3.065559303,,,,,,,,,3.106567232,3.000064213,,,,,,,,,3.032286209,0.041303747,,,,,210.384275,,,,,0.78108272,45088,57725,0.699031918,0.863133522,68337,,,58714.53192,77959.46809,,,,63750,25748.6383,101751.3617,,,,72303,18602.57447,126003.4255,66911,62558.48936,71263.51064,,,,,,0.297026788,1009,3397,,,74.41145455,,,,,0.246498968,,68337,,,9.883198562,11,1113,,,,,,,,,,,,,,,,,,,,,,,,,,17.05596739,19,103251,10.10844723,26.95578175,18.40175882,,,,,,,,,,,,,18.06825424,10.52542393,28.92902534,,,,13.55919071,14,103251,7.412935736,22.75001804,,,,,,,,,,,,,14.51860456,7.937456212,24.35975144,,,,7.614037516,11,144470,3.800900095,13.62361633,,,,,,,,,,,,,8.143322476,4.06511724,14.57065333,,,,,,2000,,,-888,7,0.698172491,10888,15595,,,0.685,,,,,18.92440098,,,,,0.759413446,6111,8047,0.721506763,0.797320129,0.08847603,681,7697,0.060117431,0.116834628,0.831987076,6695,8047,0.79224612,0.871728032,21328,,,,,0.227494374,4852,21328,,,0.185343211,3953,21328,,,0.012565641,268,21328,,,0.008674044,185,21328,,,0.005251313,112,21328,,,0.000937734,20,21328,,,0.025787697,550,21328,,,0.930138785,19838,21328,,,0.001746246,35,20043,0,0.007332966,0.4939985,10536,21328,,,0.757741692,16052,21184,, -29,051,29051,MO,Cole County,2024,1,7961.008821,1089,213850,7242.693587,8679.324055,0,,,,2,,,,2,12543.90033,10074.44702,15013.35364,,10289.21543,5993.847158,16474.03064,1,7264.756068,6502.807331,8026.704804,,,,,2,,0.155,,,0.129,0.185,3.940832887,,,3.151667047,4.793759995,5.059024943,,,4.155641451,6.002272133,0.088654265,529,5967,0.081442037,0.095866493,0,,,,0.092307692,0.042548575,0.14206681,0.14994233,0.126177602,0.173707058,0.082706767,0.049605862,0.115807672,0.076169265,0.068410029,0.083928502,,,,0.111111111,0.06630599,0.155916232,0.179,,,0.141,0.223,0.365,,,0.304,0.428,8,0.089010636,0.092,,,0.254,,,0.207,0.304,0.628113718,48540,77279,,,0.166001372,,,0.135339585,0.199190442,0.125,5,40,0.056811768,0.214221075,607.5,469,77205,,,18.01267998,304,16877,15.9878078,20.03755216,,,,,,,22.28915663,17.501782,27.98199503,25.77319588,15.74293761,39.8046107,15.30655391,13.07660862,17.53649921,,,,39.70588235,26.16642666,57.76997418,0.104397258,6244,59810,0.091290875,0.117503641,0.000699437,54,77205,,,1429.722222,0.000662604,51,76969,,,1509.196078,0.002364588,182,76969,,,422.9065934,2316,,,,,,,4231,,2136,0.54,,,,,,,0.38,,0.55,0.56,,,,,,0.42,0.4,0.34,0.56,0.925173764,49383,53377,0.914536234,0.935811294,0.651007037,13414,20605,0.602757819,0.699256256,0.019593836,768,39196,,,0.134,2200,,0.092297872,0.175702128,,,,,,,0.410688493,0.320572709,0.500804277,0.039906103,0,0.103445333,0.063124845,0.041185681,0.085064009,4.172948007,130100,31177,3.691737826,4.654158188,0.205045278,3487,17006,0.169387867,0.24070269,22.53740043,174,77205,,,70.63822023,271,383645,62.2279263,79.04851416,,,,,,,94.14752699,68.1350321,126.816101,,,,69.49693189,60.25012396,78.74373981,,,,7.9,,,,,0,,,,,0.081379993,2465,30290,0.067176312,0.095583675,0.064984965,0.051857846,0.078112084,0.012380324,0.005529966,0.019230681,0.006107626,0.001804231,0.010411021,0.82155838,30967,37693,0.799962718,0.843154041,,,,,,,0.716470588,0.620964855,0.811976322,0.732112192,0.594829926,0.869394458,0.854888949,0.842892155,0.866885743,0.168,,37693,0.14446997,0.19153003,77.49190629,,,76.85604474,78.12776784,,,,,,,72.87801476,70.30113158,75.45489794,84.39704119,72.48094883,96.31313354,77.979179,77.3100036,78.6483544,,,,391.7100337,1089,213850,367.4932658,415.9268016,,,,,,,627.0071623,515.3055053,738.7088193,423.0823491,261.8946424,646.7263127,369.7845892,344.4330341,395.1361443,,,,57.81941944,44,76099,42.01167868,77.61987185,,,,,,,104.2118975,53.84780815,182.0372128,,,,46.75081814,30.53918656,68.50078053,,,,5.428524428,33,6079,3.736746434,7.623666601,,,,,,,,,,,,,4.61234351,2.855113328,7.050457003,,,,,,,0.112,,,0.095,0.13,0.168,,,0.144,0.192,0.091,,,0.077,0.106,150.1,98,65291,,,0.092,7100,,,,0.089010636,6763.918212,75990,,,16.51161679,38,230141,11.68460276,22.66348409,,,,,,,40.58441558,20.25959404,72.61673005,,,,13.8836232,9.069243618,20.34272476,,,,0.294,,,0.279,0.309,0.122845181,5252,42753,0.106164329,0.139526032,0.060771938,1088,17903,0.044091087,0.077452789,0.001260248,97,76969,,,793.4948454,0.765616438,782.46,1022,,,,,,,,3.016833262,,,,,,3.617484963,2.31763056,2.608713162,3.250455822,2.875477525,,,,,,4.119641489,2.075822743,2.507482947,3.143591039,0.095441851,,,,,744.53445,,,,,0.791966933,44069,55645,0.740343578,0.843590289,70837,,,62938.61702,78735.38298,70250,25435.70213,115064.2979,97406,43766.34043,151045.6596,55030,38591.02128,71468.97872,83333,49081.25532,117584.7447,73669,70380.48936,76957.51064,,,,,,0.386726353,3974,10276,,,54.49324712,,,,,0.198512077,,70837,,,13.65569734,61,4467,,,5.772854919,31,536996,3.922374837,8.194106754,,,,,,,31.33470162,19.1400498,48.39390525,,,,2.284241929,1.095382792,4.200802235,,,,16.04397068,62,383645,12.21341384,20.69555323,16.16077363,,,,,,,,,,,,,17.83002887,13.31631838,23.38171069,,,,15.63945835,60,383645,11.93455433,20.13108301,,,,,,,39.41059269,23.35721494,62.28572738,,,,12.490232,8.881775948,17.07455832,,,,11.91815209,64,536996,9.178429364,15.21921415,,,,,,,,,,,,,12.33490642,9.266361333,16.0943772,,,,32.60869565,,6900,,,41,184,0.677156317,39529,58375,,,0.713,,,,,61.73673523,,,,,0.672581341,20279,30151,0.652122759,0.693039922,0.074734796,2191,29317,0.05948316,0.089986431,0.832741866,25108,30151,0.815730929,0.849752803,76969,,,,,0.217750003,16760,76969,,,0.18448986,14200,76969,,,0.113812054,8760,76969,,,0.004495316,346,76969,,,0.014759189,1136,76969,,,0.00127324,98,76969,,,0.03254557,2505,76969,,,0.812950669,62572,76969,,,0.004935684,358,72533,0.002076493,0.007794876,0.492016266,37870,76969,,,0.342965101,26504,77279,, -29,053,29053,MO,Cooper County,2024,1,6952.184481,258,47656,5630.280719,8274.088243,0,,,,2,,,,2,15189.23186,7582.40982,27177.7315,1,,,,2,6836.631072,5429.56226,8243.699884,,,,,2,,0.18,,,0.152,0.211,4.164527543,,,3.322230123,5.08515231,5.284140349,,,4.236213716,6.397565859,0.070096943,94,1341,0.056431929,0.083761956,0,,,,,,,,,,,,,0.067880795,0.053695715,0.082065875,,,,,,,0.207,,,0.165,0.252,0.4,,,0.322,0.48,7.4,0.100187859,0.112,,,0.267,,,0.22,0.317,0.530023972,9065,17103,,,0.173738008,,,0.139854352,0.212448943,0.136363636,3,22,0.044872665,0.263216149,216.2,37,17115,,,18.51851852,66,3564,14.32222088,23.56009608,,,,,,,,,,,,,16.1343431,11.93627585,21.33045723,,,,66.66666667,31.96925797,122.6023736,0.107325644,1405,13091,0.091836282,0.122815005,0.000233713,4,17115,,,4278.75,0.000298116,5,16772,,,3354.4,0.001252087,21,16772,,,798.6666667,3088,,,,,,,,,3080,0.37,,,,,,,0.6,,0.37,0.44,,,,,,,0.38,,0.44,0.904560007,10454,11557,0.887341878,0.921778136,0.53907767,2221,4120,0.479027517,0.599127823,0.023903819,169,7070,,,0.151,545,,0.092617021,0.209382979,,,,,,,0.277310924,0,0.597903011,0.080882353,0,0.354059022,0.174710425,0.12816655,0.221254299,4.351594314,113272,26030,3.870711678,4.832476951,0.190590751,713,3741,0.139624297,0.241557205,11.68565586,20,17115,,,43.59147901,38,87173,30.84792498,59.83271072,,,,,,,,,,,,,46.85913623,32.81956293,64.87279631,,,,7.6,,,,,0,,,,,0.126182965,800,6340,0.099591071,0.152774859,0.104928458,0.078277695,0.131579221,0.014195584,0.004969291,0.023421877,0.009463722,0.002456885,0.01647056,0.80058447,5753,7186,0.773128991,0.828039948,,,,,,,,,,,,,0.759524387,0.706348936,0.812699838,0.445,,7186,0.396777789,0.493222211,77.76512456,,,76.58237906,78.94787006,,,,,,,,,,,,,77.80954431,76.5703404,79.04874821,,,,396.1154187,258,47656,345.1701931,447.0606443,,,,,,,827.3758078,498.1342842,1292.049813,,,,387.8378757,335.1198655,440.5558859,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.125,,,0.107,0.144,0.176,,,0.152,0.201,0.098,,,0.083,0.114,324.1,47,14501,,,0.112,1950,,,,0.100187859,1763.406506,17601,,,,,,,,,,,,,,,,,,,,,,,,,,0.334,,,0.314,0.351,0.125318878,1179,9408,0.106255048,0.144382707,0.063081696,244,3868,0.042826377,0.083337015,0.000476986,8,16772,,,2096.5,0.941538462,183.6,195,,,,,,,,2.691542245,,,,,,,,,2.73151726,2.559940245,,,,,,,,,2.587862007,0.06880534,,,,,-1406.5115,,,,,0.775674541,40650,52406,0.710888199,0.840460884,63247,,,57470.65957,69023.34043,,,,69306,34972.04255,103639.9575,51875,19816.78723,83933.21277,62069,41219.12766,82918.87234,63466,59729.48936,67202.51064,,,,,,0.668527265,1557,2329,,,50.56094761,,,,,0.205574968,,63247,,,10.89108911,11,1010,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.87449297,17,122527,8.082403446,22.21440729,,,,,,,,,,,,,14.80371203,8.461600516,24.04030088,,,,46,,1500,,,10,59,0.638486963,8693,13615,,,0.659,,,,,37.03016647,,,,,0.768653061,4708,6125,0.748057588,0.789248535,0.100764656,593,5885,0.072462304,0.129067008,0.840979592,5151,6125,0.813734022,0.868225162,16772,,,,,0.220426902,3697,16772,,,0.197293108,3309,16772,,,0.053839733,903,16772,,,0.007274028,122,16772,,,0.006916289,116,16772,,,0.000655855,11,16772,,,0.022477939,377,16772,,,0.887908419,14892,16772,,,0.001572426,25,15899,0,0.006843935,0.495289769,8307,16772,,,0.53025785,9069,17103,, -29,055,29055,MO,Crawford County,2024,1,13821.73886,544,64634,12014.10405,15629.37366,0,,,,2,,,,2,,,,2,,,,2,14028.64419,12146.13686,15911.15151,,,,,2,,0.212,,,0.178,0.246,4.56208332,,,3.692006352,5.53724608,5.710818448,,,4.642678636,6.840661421,0.093516925,163,1743,0.079848064,0.107185786,0,,,,,,,,,,,,,0.095151515,0.080993255,0.109309775,,,,,,,0.254,,,0.207,0.301,0.377,,,0.309,0.449,7.3,0.035426578,0.152,,,0.301,,,0.249,0.354,0.703417765,16218,23056,,,0.157588831,,,0.125654268,0.19379496,0.323529412,11,34,0.233210018,0.414257608,214.8,49,22807,,,26.4388855,130,4917,21.89395194,30.98381906,,,,,,,,,,,,,27.34288864,22.53017943,32.15559786,,,,,,,0.152298371,2740,17991,0.133234542,0.171362201,4.38462E-05,1,22807,,,22807,0.000132398,3,22659,,,7553,0.000397193,9,22659,,,2517.666667,2939,,,,,,,,,2964,0.41,,,,,,,,,0.41,0.3,,,,,,,,,0.3,0.842147585,13615,16167,0.820382742,0.863912427,0.503326364,2648,5261,0.430613429,0.576039299,0.028218695,304,10773,,,0.206,995,,0.124978723,0.287021277,,,,,,,,,,0.106951872,0,0.346382716,0.155550632,0.106969723,0.20413154,4.325951341,97083,22442,3.319739488,5.332163195,0.184399922,948,5141,0.128579616,0.240220228,10.96154689,25,22807,,,128.2429867,152,118525,107.8553024,148.6306711,,,,,,,,,,,,,131.5660808,110.369337,152.7628247,,,,7.2,,,,,0,,,,,0.13622449,1335,9800,0.10529019,0.167158789,0.121631389,0.091859096,0.151403682,0.015306122,0.006058466,0.024553779,0.004081633,0,0.008847871,0.762126762,6866,9009,0.716498414,0.80775511,,,,,,,,,,,,,0.763011849,0.707826822,0.818196877,0.338,,9009,0.286420757,0.389579243,71.85102492,,,70.60521874,73.09683109,,,,,,,,,,,,,71.62413829,70.34337998,72.90489659,,,,616.2929697,544,64634,560.3573915,672.2285478,,,,,,,,,,,,,624.1310832,566.4307625,681.8314039,,,,68.8172043,16,23250,39.3349783,111.7548284,,,,,,,,,,,,,74.55384185,42.61396232,121.0707684,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.145,,,0.125,0.166,0.193,,,0.167,0.221,0.109,,,0.093,0.126,155.4,30,19303,,,0.152,3520,,,,0.035426578,874.8947746,24696,,,48.25021996,34,70466,33.41467997,67.42484616,,,,,,,,,,,,,49.419693,34.01824272,69.40362302,,,,0.359,,,0.343,0.376,0.181495759,2354,12970,0.157665972,0.205325547,0.077988615,411,5270,0.054158828,0.101818402,0.000573724,13,22659,,,1743,0.975,198.9,204,,,,,,,,3.274636319,,,,,,,,,3.289216619,3.177684694,,,,,,,,,3.180585025,0.041260882,,,,,-5096.088,,,,,0.768046688,37771,49178,0.624437918,0.911655457,52536,,,46963.40426,58108.59575,,,,,,,,,,69762,45739.19149,93784.80851,52725,49920.23404,55529.76596,,,,,,0.416325244,1321,3173,,,,,,,,0.2680067,,52536,,,8.641005499,11,1273,,,16.73110133,28,167353,11.11769532,24.1810998,,,,,,,,,,,,,16.33884246,10.67307435,23.94018983,,,,27.57625009,30,118525,18.32421792,39.85535934,25.3111158,,,,,,,,,,,,,29.05084744,19.30407715,41.98656307,,,,26.15481966,31,118525,17.77093101,37.12467876,,,,,,,,,,,,,25.77984017,17.26516356,37.02415077,,,,20.91387666,35,167353,14.56728138,29.0861397,,,,,,,,,,,,,21.3661786,14.7966998,29.857093,,,,,,2300,,,-888,33,0.594903768,10973,18445,,,0.529,,,,,19.22464277,,,,,0.731717824,6794,9285,0.702828461,0.760607188,0.105795455,931,8800,0.07675433,0.13483658,0.758750673,7045,9285,0.717274853,0.800226493,22659,,,,,0.218897568,4960,22659,,,0.208570546,4726,22659,,,0.006310958,143,22659,,,0.006840549,155,22659,,,0.003795401,86,22659,,,0.000926784,21,22659,,,0.024758374,561,22659,,,0.943510305,21379,22659,,,0.00069083,15,21713,0,0.005548382,0.498345029,11292,22659,,,0.932035045,21489,23056,, -29,057,29057,MO,Dade County,2024,1,13343.80034,172,20381,9827.333383,16860.2673,0,,,,2,,,,2,,,,2,,,,2,13738.1631,10002.09827,17474.22794,,,,,2,,0.211,,,0.18,0.245,4.630316435,,,3.698392846,5.680746704,5.660409696,,,4.529306095,6.909333404,0.082474227,40,485,0.057991856,0.106956597,0,,,,,,,,,,,,,0.083690987,0.05854762,0.108834354,,,,,,,0.253,,,0.207,0.303,0.406,,,0.326,0.49,7.7,0.039261133,0.131,,,0.313,,,0.259,0.37,0.179283921,1357,7569,,,0.147092047,,,0.116103948,0.180777389,0.125,2,16,0.026484325,0.278054433,171.1,13,7599,,,22.41503977,31,1383,15.22993202,31.81635973,,,,,,,,,,,,,24.19354839,16.3232855,34.53779467,,,,,,,0.153859557,883,5739,0.133604238,0.174114877,0.000657981,5,7599,,,1519.8,0.000130548,1,7660,,,7660,0.000652742,5,7660,,,1532,1607,,,,,,,,,1632,0.37,,,,,,,,,0.37,0.4,,,,,,,,,0.4,0.894100668,4956,5543,0.868434366,0.919766969,0.5,787,1574,0.397626781,0.602373219,0.021758051,75,3447,,,0.229,354,,0.15393617,0.30406383,,,,,,,,,,0.452830189,0,0.981447468,0.208775655,0.141040542,0.276510767,4.246292397,94773,22319,3.293833084,5.198751709,0.142201835,217,1526,0.088112114,0.196291555,14.47558889,11,7599,,,89.74528177,34,37885,62.15121654,125.4100359,,,,,,,,,,,,,96.2382179,66.64776355,134.4832633,,,,7.7,,,,,0,,,,,0.108910891,330,3030,0.075346752,0.14247503,0.083885942,0.05443693,0.113334953,0.024422442,0.008718775,0.040126109,0.00330033,0,0.011958352,0.786252046,2402,3055,0.750823222,0.82168087,,,,,,,,,,,,,0.721854305,0.663111093,0.780597516,0.401,,3055,0.329859005,0.472140995,72.94744487,,,70.55118262,75.34370712,,,,,,,,,,,,,72.44753736,69.94359183,74.95148289,,,,570.7222356,172,20381,475.1573374,666.2871338,,,,,,,,,,,,,584.6519729,484.9810475,684.3228983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.146,,,0.127,0.169,0.198,,,0.172,0.225,0.113,,,0.097,0.131,122.4,8,6535,,,0.131,990,,,,0.039261133,309.4955075,7883,,,,,,,,,,,,,,,,,,,,,,,,,,0.35,,,0.332,0.366,0.18045292,757,4195,0.154240154,0.206665686,0.082923833,135,1628,0.057902556,0.10794511,0.000913838,7,7660,,,1094.285714,,,,,,,,,,,2.88564702,,,,,,,,,2.904403166,3.079652527,,,,,,,,,3.0628181,,,,,,-3050.184325,,,,,0.71330838,34303,48090,0.538456861,0.888159899,49386,,,42229.91489,56542.08511,,,,,,,,,,,,,48529,42214.10638,54843.89362,,,,,,0.652468538,674,1033,,,,,,,,0.261227878,,49386,,,5.208333333,2,384,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.82849127,10,53111,9.028993422,34.62626582,,,,,,,,,,,,,20.14869739,9.662083569,37.05417187,,,,,,700,,,-888,7,0.687646077,4119,5990,,,0.556,,,,,0.158316048,,,,,0.762913907,2304,3020,0.732643005,0.793184809,0.092915628,261,2809,0.058333983,0.127497274,0.792384106,2393,3020,0.74926537,0.835502842,7660,,,,,0.207310705,1588,7660,,,0.245300261,1879,7660,,,0.00535248,41,7660,,,0.010704961,82,7660,,,0.004830287,37,7660,,,0.000261097,2,7660,,,0.025326371,194,7660,,,0.928198433,7110,7660,,,0.003455903,25,7234,0,0.014513357,0.494125326,3785,7660,,,1,7569,7569,, -29,059,29059,MO,Dallas County,2024,1,12313.82623,404,46978,10276.5928,14351.05966,0,,,,2,,,,2,,,,2,,,,2,12503.92636,10377.22111,14630.63162,,,,,2,,0.22,,,0.187,0.258,4.807783072,,,3.851515459,5.870876846,5.960300135,,,4.842266159,7.227155137,0.076770351,116,1511,0.063346551,0.090194151,0,,,,,,,,,,,,,0.071977638,0.058586599,0.085368677,,,,,,,0.259,,,0.212,0.313,0.418,,,0.338,0.502,6,0.141285128,0.157,,,0.316,,,0.264,0.376,0.117977857,2014,17071,,,0.15175961,,,0.121070365,0.188201096,0.2,5,25,0.10034726,0.316172705,161.5,28,17341,,,26.06970813,92,3529,21.0158642,31.97218277,,,,,,,,,,,,,26.20353443,20.95944523,32.36115185,,,,,,,0.161200789,2207,13691,0.13975398,0.182647597,5.76668E-05,1,17341,,,17341,0.000283672,5,17626,,,3525.2,0.000283672,5,17626,,,3525.2,2592,,,,,,,,,2538,0.36,,,,,,,,,0.37,0.25,,,,,,,,,0.25,0.888888889,10600,11925,0.868088105,0.909689673,0.426857289,1672,3917,0.329643998,0.52407058,0.026873528,194,7219,,,0.224,926,,0.135829787,0.312170213,,,,,,,,,,0.455782313,0.221226096,0.69033853,0.334316354,0.223642152,0.444990556,4.442294176,94803,21341,3.309808225,5.574780126,0.213222737,874,4099,0.081119626,0.345325849,5.19001211,9,17341,,,101.3278663,86,84873,81.04921382,125.1390906,,,,,,,,,,,,,98.73889188,78.17251054,123.0581199,,,,7.4,,,,,0,,,,,0.113104524,725,6410,0.069727928,0.156481121,0.081767068,0.045828844,0.117705292,0.016380655,0.003554228,0.029207082,0.022620905,0,0.045723394,0.75631855,4758,6291,0.726395304,0.786241797,,,,,,,,,,,,,0.697253433,0.635811212,0.758695655,0.526,,6291,0.435407623,0.616592377,72.30453222,,,70.85561154,73.75345291,,,,,,,,,,,,,71.98034807,70.48394209,73.47675405,,,,581.4346909,404,46978,520.6486099,642.2207719,,,,,,,,,,,,,590.6707769,527.9431473,653.3984066,,,,130.7115254,23,17596,82.85989451,196.1314668,,,,,,,,,,,,,141.7827642,89.8781102,212.7437609,,,,13.6275146,21,1541,8.435646323,20.83110366,,,,,,,,,,,,,14.31492843,8.861166315,21.88188871,,,,,,,0.151,,,0.13,0.176,0.198,,,0.171,0.228,0.115,,,0.097,0.134,125.1,18,14393,,,0.157,2670,,,,0.141285128,2370.340593,16777,,,,,,,,,,,,,,,,,,,,,,,,,,0.369,,,0.351,0.386,0.19351149,1861,9617,0.166107235,0.220915745,0.085440075,365,4272,0.059227309,0.111652841,0.000453875,8,17626,,,2203.25,0.975,106.275,109,,,,,,,,2.727117706,,,,,,,,,2.723612705,2.783860053,,,,,,,,,2.809281151,0.004173424,,,,,-2255.247,,,,,0.87712305,40488,46160,0.783387356,0.970858745,49830,,,43307.78723,56352.21277,71250,70776.97872,71723.02128,,,,,,,,,,45850,39331.3617,52368.6383,,,,,,0.546612623,944,1727,,,,,,,,0.228858118,,49830,,,5.277044855,6,1137,,,,,,,,,,,,,,,,,,,,,,,,,,18.68872084,16,84873,10.21729759,31.35649798,18.85169606,,,,,,,,,,,,,18.23112944,9.707308601,31.17578657,,,,16.49523406,14,84873,9.018097954,27.67619988,,,,,,,,,,,,,16.24817208,8.651467324,27.7848691,,,,22.93694888,27,117714,15.11559384,33.37205638,,,,,,,,,,,,,22.50265531,14.56253204,33.21835829,,,,,,1700,,,-888,22,0.637859111,8104,12705,,,0.584,,,,,6.115244564,,,,,0.756208359,4994,6604,0.725485211,0.786931506,0.101048149,617,6106,0.059595051,0.142501248,0.766656572,5063,6604,0.710062848,0.823250295,17626,,,,,0.239192103,4216,17626,,,0.205038012,3614,17626,,,0.004141609,73,17626,,,0.008850562,156,17626,,,0.005616703,99,17626,,,0.001248156,22,17626,,,0.026778623,472,17626,,,0.9324861,16436,17626,,,0.002990468,48,16051,0,0.00953547,0.501645297,8842,17626,,,1,17071,17071,, -29,061,29061,MO,Daviess County,2024,1,8046.680079,130,22803,5753.122125,10340.23803,0,,,,2,,,,2,,,,2,,,,2,8333.99646,5939.309506,10728.68341,,,,,2,,0.192,,,0.161,0.228,4.349543068,,,3.462056984,5.332139439,5.343686947,,,4.277312679,6.465396051,0.065296252,54,827,0.048458487,0.082134016,0,,,,,,,,,,,,,0.0675,0.050114492,0.084885508,,,,,,,0.223,,,0.179,0.272,0.372,,,0.295,0.449,8,0.054237995,0.109,,,0.274,,,0.222,0.328,0.108778173,917,8430,,,0.165662995,,,0.131091496,0.202013847,0.157894737,3,19,0.054083319,0.295484356,226.2,19,8399,,,15.54907677,32,2058,10.635557,21.95065699,,,,,,,,,,,,,15.47189273,10.43882105,22.08708891,,,,,,,0.160807894,1043,6486,0.140552575,0.181063213,0.000119062,1,8399,,,8399,0.000237107,2,8435,,,4217.5,0.000237107,2,8435,,,4217.5,2801,,,,,,,,,2821,0.33,,,,,,,,,0.33,0.35,,,,,,,,,0.35,0.870686588,4895,5622,0.846358958,0.895014219,0.488372093,861,1763,0.418657389,0.558086797,0.024242424,96,3960,,,0.228,468,,0.148170213,0.307829787,,,,,,,,,,,,,0.177286742,0.125408717,0.229164768,4.031144263,104842,26008,3.487061055,4.575227472,0.167613636,354,2112,0.109972044,0.225255229,7.143707584,6,8399,,,81.6640246,34,41634,56.55471102,114.117289,,,,,,,,,,,,,85.34993473,59.10731094,119.267979,,,,7.2,,,,,0,,,,,0.11,330,3000,0.07971779,0.14028221,0.077874332,0.04721004,0.108538623,0.031666667,0.013842069,0.049491264,0.002666667,0,0.009429052,0.704551724,2554,3625,0.659889821,0.749213627,,,,,,,,,,,,,0.608523726,0.549852533,0.667194919,0.385,,3625,0.318340456,0.451659544,77.07549016,,,75.18657064,78.96440969,,,,,,,,,,,,,76.77599665,74.842968,78.7090253,,,,397.6652026,130,22803,323.2374554,472.0929499,,,,,,,,,,,,,408.8577583,331.7893078,485.9262088,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.134,,,0.114,0.156,0.183,,,0.157,0.21,0.102,,,0.086,0.12,172.6,12,6951,,,0.109,920,,,,0.054237995,457.3890125,8433,,,,,,,,,,,,,,,,,,,,,,,,,,0.34,,,0.322,0.357,0.180790961,800,4425,0.155769684,0.205812237,0.117944011,257,2179,0.084582309,0.151305713,0.000592768,5,8435,,,1687,,,,,,,,,,,2.836506781,,,,,,,,,2.901469779,2.891993637,,,,,,,,,2.935298862,,,,,,-3490.108725,,,,,0.70038504,36198,51683,0.608505024,0.792265056,53639,,,47544.53192,59733.46809,,,,,,,,,,18750,5376.723404,32123.2766,59743,56766.65957,62719.34043,,,,,,0.520547945,608,1168,,,,,,,,0.230690356,,53639,,,3.418803419,2,585,,,,,,,,,,,,,,,,,,,,,,,,,,32.99331418,13,41634,17.04812689,57.63268009,31.22447999,,,,,,,,,,,,,34.56599308,17.86075302,60.37983364,,,,24.01883076,10,41634,11.51796295,44.17148495,,,,,,,,,,,,,25.10292198,12.03782683,46.16516729,,,,17.21288901,10,58096,8.254249339,31.65511574,,,,,,,,,,,,,17.96945193,8.617050667,33.04646189,,,,18.75,,800,,,7,8,0.638009788,3911,6130,,,0.544,,,,,5.018449496,,,,,0.780172414,2353,3016,0.747664455,0.812680373,0.10095498,296,2932,0.068241606,0.133668353,0.779177719,2350,3016,0.740113175,0.818242262,8435,,,,,0.248488441,2096,8435,,,0.219442798,1851,8435,,,0.005809129,49,8435,,,0.005809129,49,8435,,,0.002133966,18,8435,,,0.000474215,4,8435,,,0.019205691,162,8435,,,0.951511559,8026,8435,,,0.001785487,14,7841,0,0.011883437,0.50112626,4227,8435,,,1,8430,8430,, -29,063,29063,MO,DeKalb County,2024,1,8690.462652,194,31637,6786.003923,10594.92138,0,,,,2,,,,2,,,,2,,,,2,9745.259473,7522.586411,11967.93253,,,,,2,,0.188,,,0.159,0.218,4.236112168,,,3.399384351,5.191716568,4.972796431,,,3.971323218,6.048684471,0.070301291,49,697,0.051321456,0.089281127,0,,,,,,,,,,,,,0.06676783,0.047709193,0.085826467,,,,,,,0.215,,,0.173,0.257,0.384,,,0.312,0.463,7.9,0.064041433,0.107,,,0.275,,,0.225,0.328,0.494605132,5455,11029,,,0.179714584,,,0.144691635,0.219834373,0,0,15,0,0.14910456,207.2,23,11098,,,18.5387132,34,1834,12.83859781,25.90599351,,,,,,,,,,,,,18.87905605,12.91326036,26.65159415,,,,,,,0.112196446,827,7371,0.096707084,0.127685807,0.000270319,3,11098,,,3699.333333,8.82145E-05,1,11336,,,11336,8.82145E-05,1,11336,,,11336,3384,,,,,,,,,3410,0.41,,,,,,,,,0.41,0.38,,,,,,,,,0.38,0.892304163,7780,8719,0.868813192,0.915795134,0.367513612,1215,3306,0.302595357,0.432431867,0.025812857,104,4029,,,0.125,266,,0.074957447,0.175042553,,,,,,,,,,0.341463415,0,0.887048871,0.082291667,0.038880431,0.125702902,4.333955433,116111,26791,3.34993578,5.317975086,0.18805413,403,2143,0.115106303,0.261001957,9.911695801,11,11098,,,80.25816376,48,59807,59.17603428,106.4106813,,,,,,,,,,,,,92.21834164,67.75856879,122.6308448,,,,7.5,,,,,1,,,,,0.071052632,270,3800,0.042183849,0.099921415,0.065499867,0.033811777,0.097187958,0.003157895,0,0.011627344,0.002105263,0,0.005479844,0.776378327,3267,4208,0.728760649,0.823996006,,,,,,,,,,,,,0.771794109,0.721673834,0.821914384,0.432,,4208,0.349236504,0.514763496,77.30057894,,,75.54980257,79.05135532,,,,,,,,,,,,,76.51635195,74.61060954,78.42209437,,,,466.6624381,194,31637,399.3993999,533.9254764,,,,,,,,,,,,,493.3239817,418.9969353,567.6510282,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.127,,,0.109,0.146,0.173,,,0.148,0.197,0.105,,,0.089,0.122,104.7,10,9553,,,0.107,1240,,,,0.064041433,825.6221546,12892,,,,,,,,,,,,,,,,,,,,,,,,,,0.335,,,0.32,0.351,0.133307722,694,5206,0.111860913,0.15475453,0.062912451,143,2273,0.042657131,0.08316777,8.82145E-05,1,11336,,,11336,,,,,,,,,,,3.044134804,,,,,,,,,3.062643247,2.905319528,,,,,,,,,2.942676465,0.089286476,,,,,301.0114333,,,,,0.852583256,43087,50537,0.729224053,0.975942459,66880,,,60594.89362,73165.10638,,,,200573,11214.3617,389931.6383,,,,85125,14930.78723,155319.2128,68398,57710.34043,79085.65957,,,,,,0.318477252,343,1077,,,,,,,,0.070648923,,66880,,,4.901960784,3,612,,,,,,,,,,,,,,,,,,,,,,,,,,22.63087582,13,59807,12.04998825,38.69948688,21.73658602,,,,,,,,,,,,,28.13929217,14.98298796,48.1190466,,,,18.39249586,11,59807,9.181467666,32.90925563,,,,,,,,,,,,,21.58301613,10.77416389,38.6179777,,,,17.62487222,15,85107,9.864507188,29.06954642,,,,,,,,,,,,,20.74947089,11.61332134,34.22309675,,,,,,900,,,-888,12,0.49544757,4843,9775,,,0.616,,,,,17.94456933,,,,,0.698519516,2595,3715,0.649973635,0.747065396,0.047804336,172,3598,0.019822052,0.07578662,0.777119785,2887,3715,0.723087442,0.831152127,11336,,,,,0.191249118,2168,11336,,,0.190543402,2160,11336,,,0.082921666,940,11336,,,0.007498236,85,11336,,,0.0048518,55,11336,,,0.001058575,12,11336,,,0.028846154,327,11336,,,0.865913903,9816,11336,,,0.001511245,17,11249,0,0.009288223,0.418225124,4741,11336,,,0.699156769,7711,11029,, -29,065,29065,MO,Dent County,2024,1,14155.24679,387,40890,11740.61809,16569.87549,0,,,,2,,,,2,,,,2,,,,2,14614.95209,12092.45884,17137.44534,,,,,2,,0.218,,,0.185,0.254,4.725852514,,,3.819254039,5.749670239,5.927388928,,,4.837275546,7.099109986,0.092792793,103,1110,0.075723916,0.10986167,0,,,,,,,,,,,,,0.089595376,0.072220672,0.10697008,,,,,,,0.253,,,0.203,0.302,0.399,,,0.325,0.475,6.8,0.076309171,0.152,,,0.324,,,0.269,0.38,0.668677623,9643,14421,,,0.151887982,,,0.121678203,0.18563862,0.1875,3,16,0.067648579,0.337423465,110.9,16,14432,,,28.47571189,85,2985,22.74538727,35.21065873,,,,,,,,,,,,,28.57142857,22.65536593,35.55961606,,,,,,,0.143330943,1599,11156,0.124267113,0.162394773,0.000277162,4,14432,,,3608,0.000207369,3,14467,,,4822.333333,0.00145158,21,14467,,,688.9047619,4187,,,,,,,,,4185,0.36,,,,,,,,,0.36,0.27,,,,,,,,,0.27,0.856024273,8746,10217,0.8239252,0.888123347,0.544720697,1687,3097,0.426385373,0.663056022,0.031173093,190,6095,,,0.242,756,,0.155021277,0.328978723,,,,,,,,,,0.805555556,0.579803757,1,0.196502058,0.137019511,0.255984605,4.788305876,100564,21002,3.997224579,5.579387172,0.224253504,736,3282,0.160537656,0.287969352,12.47228381,18,14432,,,125.6429385,96,76407,101.7711836,153.4315325,,,,,,,,,,,,,132.2935524,107.033384,161.7220076,,,,6.9,,,,,0,,,,,0.13375295,850,6355,0.098618225,0.168887676,0.093301435,0.062782116,0.123820755,0.038552321,0.016609094,0.060495548,0.010857592,0.001307172,0.020408013,0.843839784,4993,5917,0.782364028,0.905315539,,,,,,,,,,,,,0.822626263,0.758190344,0.887062182,0.287,,5917,0.226269097,0.347730904,71.83715136,,,70.17520434,73.49909837,,,,,,,,,,,,,71.34839653,69.64658975,73.0502033,,,,650.8280327,387,40890,579.9989109,721.6571546,,,,,,,,,,,,,671.5054468,597.5721609,745.4387326,,,,67.58126647,10,14797,32.40784413,124.2843552,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.149,,,0.127,0.171,0.198,,,0.172,0.225,0.111,,,0.095,0.129,246.9,30,12152,,,0.152,2210,,,,0.076309171,1194.772695,15657,,,63.75588093,29,45486,42.69831407,91.56408002,,,,,,,,,,,,,67.93796561,45.49912181,97.57025123,,,,0.353,,,0.334,0.369,0.171204774,1377,8043,0.146183498,0.196226051,0.072693952,238,3274,0.051247144,0.094140761,0.00096772,14,14467,,,1033.357143,0.975,130.65,134,,,,,,,,2.83365112,,,,,,,,,2.847928583,2.932120621,,,,,,,,,2.968025617,0.065691492,,,,,-3264.9774,,,,,0.848412908,38596,45492,0.636123955,1.06070186,52945,,,47665.51064,58224.48936,33438,10205.14894,56670.85106,,,,,,,48929,7154.191489,90703.80851,53536,48730.7234,58341.2766,,,,,,0.509057971,1124,2208,,,82.27292737,,,,,0.219794126,,52945,,,7.299270073,6,822,,,,,,,,,,,,,,,,,,,,,,,,,,21.70414367,17,76407,12.14764445,35.79768432,22.24927036,,,,,,,,,,,,,23.0233059,12.88596954,37.97344182,,,,19.63170914,15,76407,10.98771858,32.37951872,,,,,,,,,,,,,20.88845565,11.69111006,34.45233097,,,,26.07391956,28,107387,17.32593019,37.68407344,,,,,,,,,,,,,26.69857311,17.59452791,38.84502215,,,,16.42857143,,1400,,,6,17,0.597406943,7142,11955,,,0.502,,,,,0.07005316,,,,,0.748497854,4360,5825,0.703379297,0.793616411,0.08441443,475,5627,0.055217502,0.113611359,0.728583691,4244,5825,0.692572421,0.764594961,14467,,,,,0.22119306,3200,14467,,,0.223266745,3230,14467,,,0.005806318,84,14467,,,0.011820004,171,14467,,,0.008018248,116,14467,,,0.000622106,9,14467,,,0.021773692,315,14467,,,0.934471556,13519,14467,,,0.001094651,15,13703,0,0.007772915,0.499066842,7220,14467,,,0.675195895,9737,14421,, -29,067,29067,MO,Douglas County,2024,1,10916.69493,262,34190,8601.37461,13232.01525,0,,,,2,,,,2,,,,2,,,,2,10702.07952,8363.904307,13040.25472,,,,,2,,0.211,,,0.177,0.248,4.637284038,,,3.745874004,5.67760694,5.656381265,,,4.572764286,6.877775097,0.060963619,62,1017,0.046258377,0.07566886,0,,,,,,,,,,,,,0.062827225,0.047437242,0.078217209,,,,,,,0.252,,,0.205,0.3,0.422,,,0.343,0.503,5.3,0.196519843,0.163,,,0.311,,,0.257,0.366,0.509759889,5902,11578,,,0.151383756,,,0.121059634,0.184920035,0.230769231,6,26,0.129644728,0.34280412,144.9,17,11732,,,33.56247473,83,2473,26.73232378,41.60573708,,,,,,,,,,,,,33.56282272,26.53001859,41.88792171,,,,,,,0.137693632,1200,8715,0.118629802,0.156757462,0.000170474,2,11732,,,5866,0.000250522,3,11975,,,3991.666667,0.001002088,12,11975,,,997.9166667,3076,,,,,,,,,3105,0.33,,,,,,,,,0.33,0.32,,,,,,,,,0.32,0.84758759,7185,8477,0.808338224,0.886836956,0.541217091,1254,2317,0.424735048,0.657699134,0.027032283,139,5142,,,0.251,669,,0.153297872,0.348702128,,,,,,,,,,,,,0.16680779,0.090011902,0.243603678,5.229203703,85304,16313,3.536071584,6.922335821,0.287286528,757,2635,0.177921158,0.396651897,10.22843505,12,11732,,,109.3417932,71,64934,85.39684765,137.9197941,,,,,,,,,,,,,110.821382,86.05713943,140.4925084,,,,7.4,,,,,0,,,,,0.097836312,520,5315,0.064327867,0.131344758,0.078805395,0.045099594,0.112511196,0.01392286,0.000924714,0.026921006,0.016745061,0.001886257,0.031603865,0.803604869,3433,4272,0.736388843,0.870820895,,,,,,,,,,,,,0.800399202,0.723675899,0.877122505,0.325,,4272,0.256471233,0.393528767,74.50571023,,,72.84047126,76.17094919,,,,,,,,,,,,,74.43607218,72.7602276,76.11191675,,,,498.2713776,262,34190,429.8810729,566.6616824,,,,,,,,,,,,,498.5793075,428.5186274,568.6399875,,,,89.72267537,11,12260,44.78923627,160.5386502,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.145,,,0.124,0.168,0.195,,,0.171,0.224,0.11,,,0.094,0.127,221.3,22,9940,,,0.163,1920,,,,0.196519843,2689.177536,13684,,,,,,,,,,,,,,,,,,,,,,,,,,0.341,,,0.323,0.357,0.17039559,1051,6168,0.145374314,0.195416867,0.060029829,161,2682,0.040965999,0.079093658,0.001085595,13,11975,,,921.1538462,0.925,86.95,94,,,,,,,,2.946718132,,,,,,,,,2.933011264,2.820991545,,,,,,,,,2.77659481,0.058826225,,,,,-5796.014,,,,,0.834779887,40011,47930,0.679815833,0.989743942,43694,,,37360.04255,50027.95745,125463,40838.65957,210087.3404,,,,,,,38719,3315.085106,74122.91489,47761,42802.02128,52719.97872,,,,,,0.604005168,935,1548,,,,,,,,0.289353229,,43694,,,2.994011976,2,668,,,,,,,,,,,,,,,,,,,,,,,,,,22.33747706,15,64934,11.54210036,39.0190771,23.10037885,,,,,,,,,,,,,23.63704631,12.21360675,41.28916304,,,,24.6404041,16,64934,14.08411996,40.01447254,,,,,,,,,,,,,26.0756193,14.90446945,42.3451721,,,,18.54579174,17,91665,10.80360712,29.69360914,,,,,,,,,,,,,16.12030352,8.813119942,27.04713015,,,,,,1200,,,-888,-888,0.677966102,7000,10325,,,0.425,,,,,0.46830777,,,,,0.812824957,3752,4616,0.764149354,0.86150056,0.128890938,559,4337,0.08022541,0.177556467,0.745233969,3440,4616,0.694702239,0.795765699,11975,,,,,0.228559499,2737,11975,,,0.250772443,3003,11975,,,0.007599165,91,11975,,,0.011858038,142,11975,,,0.00526096,63,11975,,,0,0,11975,,,0.021377871,256,11975,,,0.931607516,11156,11975,,,0,0,11163,0,0.008111905,0.492442589,5897,11975,,,1,11578,11578,, -29,069,29069,MO,Dunklin County,2024,1,15415.97811,787,78609,13814.7338,17017.22241,0,,,,2,,,,2,27119.11752,20792.0719,34765.48474,,,,,2,14831.71549,13088.62553,16574.80544,,,,,2,,0.252,,,0.217,0.287,5.159493739,,,4.205677547,6.12746944,6.30929679,,,5.215269108,7.428104692,0.130584192,342,2619,0.117679508,0.143488877,0,,,,,,,0.214123007,0.175749387,0.252496626,0.080321285,0.046562268,0.114080302,0.115616438,0.100945606,0.130287271,,,,0.154929578,0.070762836,0.239096319,0.268,,,0.221,0.314,0.453,,,0.387,0.52,6.7,0.053967731,0.168,,,0.375,,,0.317,0.43,0.688965103,19486,28283,,,0.141708027,,,0.114632042,0.174234695,0.2,8,40,0.120862308,0.289399317,577.3,160,27717,,,48.25818127,320,6631,42.97066115,53.54570139,,,,,,,72.21006565,55.84725954,91.86890858,41.11245466,28.47156999,57.45053458,42.28375188,36.37907041,48.18843334,,,,105.8201058,64.63766976,163.4305709,0.152569206,3373,22108,0.134696865,0.170441546,0.000252553,7,27717,,,3959.571429,0.000255419,7,27406,,,3915.142857,0.00244472,67,27406,,,409.0447761,4172,,,,,,,2962,,4187,0.35,,,,,,,0.27,0.33,0.36,0.36,,,,,,,0.31,0.21,0.36,0.800300542,14912,18633,0.775874329,0.824726755,0.405824331,2592,6387,0.34786324,0.463785421,0.040358744,441,10927,,,0.346,2394,,0.249489362,0.442510638,,,,,,,0.71143617,0.503660597,0.919211743,0.331422018,0.216746397,0.44609764,0.225443531,0.169657743,0.281229319,5.18755787,89641,17280,4.529860147,5.845255594,0.327196653,2346,7170,0.264387303,0.390006002,13.34920807,37,27717,,,112.8947876,164,145268,95.61620797,130.1733672,,,,,,,118.7256777,70.36436106,187.6377565,,,,122.8182463,102.6171569,143.0193357,,,,8.6,,,,,1,,,,,0.146864687,1780,12120,0.117867234,0.175862139,0.112458194,0.087503327,0.137413062,0.031765677,0.01583188,0.047699473,0.008663366,0.002109251,0.015217482,0.786924494,8546,10860,0.762877662,0.810971325,,,,,,,,,,,,,0.819111709,0.784064412,0.854159007,0.356,,10860,0.302728299,0.409271701,69.76787264,,,68.76145142,70.77429387,,,,,,,62.25482708,59.01687013,65.49278404,,,,70.10228395,69.01201961,71.19254828,,,,781.2005133,787,78609,723.6096014,838.7914251,,,,,,,1181.021849,945.9500868,1456.786088,,,,772.3055344,710.1131841,834.4978847,,,,40.37392466,13,32199,21.49741449,69.04064076,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.161,,,0.14,0.184,0.212,,,0.186,0.241,0.133,,,0.115,0.152,141.8,32,22562,,,0.168,4800,,,,0.053967731,1724.430899,31953,,,16.33110142,14,85726,8.928365113,27.4008132,,,,,,,,,,,,,16.22873667,8.101326872,29.03769274,,,,0.393,,,0.377,0.406,0.191443075,2904,15169,0.166421798,0.216464351,0.068266446,495,7251,0.048011127,0.088521765,0.001058162,29,27406,,,945.0344828,0.924143302,296.65,321,,,,,,,,2.879857878,,,,,,,2.573070374,2.671980049,2.970130698,3.001530652,,,,,,,2.835109527,2.635504827,3.08629429,0.14413468,,,,,-9230.743143,,,,,0.684885142,34197,49931,0.60328874,0.766481543,39688,,,34756.42553,44619.57447,,,,,,,21111,14217.04255,28004.95745,46607,26900.95745,66313.04255,47931,41913.97872,53948.02128,,,,,,0.926929876,4719,5091,,,49.76983226,,,,,0.284620036,,39688,,,10.90342679,21,1926,,,9.675952356,20,206698,5.910323073,14.94372365,,,,,,,,,,,,,,,,,,,25.01829251,33,145268,16.99871595,35.5114692,22.71663408,,,,,,,,,,,,,30.83814071,20.80636404,44.02336337,,,,22.71663408,33,145268,15.63708564,31.90260021,,,,,,,,,,,,,22.48784791,14.68980887,32.94990753,,,,27.57646421,57,206698,20.8861447,35.72850797,,,,,,,,,,,,,32.01991276,23.98511191,41.88283426,,,,17.5862069,,2900,,,22,29,0.487324602,10419,21380,,,0.537,,,,,29.46183164,,,,,0.625022454,6959,11134,0.593345995,0.656698913,0.115253917,1221,10594,0.090427597,0.140080237,0.858900665,9563,11134,0.838482497,0.879318833,27406,,,,,0.259724148,7118,27406,,,0.1871488,5129,27406,,,0.106217617,2911,27406,,,0.005436766,149,27406,,,0.008939648,245,27406,,,0.000328395,9,27406,,,0.075238999,2062,27406,,,0.786689046,21560,27406,,,0.012050483,317,26306,0.006212024,0.017888942,0.517842808,14192,27406,,,0.626630838,17723,28283,, -29,071,29071,MO,Franklin County,2024,1,9657.576243,1745,290194,8952.820526,10362.33196,0,,,,2,,,,2,20006.22823,10337.51006,34946.85454,1,,,,2,9675.600884,8951.305998,10399.89577,,,,,2,,0.164,,,0.138,0.194,3.859609532,,,3.043953687,4.76553531,5.073251419,,,4.071628549,6.11962103,0.081632653,672,8232,0.075717805,0.087547501,0,,,,,,,,,,0.085308057,0.047616221,0.122999893,0.080502982,0.074431462,0.086574501,,,,0.113772455,0.065612173,0.161932737,0.199,,,0.159,0.245,0.377,,,0.313,0.446,8.3,0.029889529,0.105,,,0.254,,,0.21,0.304,0.698897614,73162,104682,,,0.187276776,,,0.151366338,0.226314518,0.291262136,30,103,0.2407566,0.342841321,182.5,192,105231,,,20.28617152,431,21246,18.37095654,22.20138649,,,,,,,,,,42.80821918,27.70322234,63.19337619,19.40616133,17.46260863,21.34971403,,,,27.07581227,15.15412659,44.65743479,0.117298703,10062,85781,0.10419232,0.130405086,0.000598683,63,105231,,,1670.333333,0.00053835,57,105879,,,1857.526316,0.001520604,161,105879,,,657.6335404,3059,,,,,,,,,3042,0.46,,,,,,,,,0.46,0.49,,,,,,0.67,0.3,,0.49,0.904236383,66040,73034,0.894303117,0.91416965,0.649749677,16093,24768,0.604033487,0.695465867,0.023107976,1225,53012,,,0.102,2330,,0.06506383,0.13893617,,,,0.011494253,0,0.869795262,0.033088235,0,0.220218993,0.239940388,0.0794008,0.400479975,0.098703099,0.078129723,0.119276475,3.826577467,125837,32885,3.546611444,4.10654349,0.165989504,3922,23628,0.131509069,0.200469939,15.01458696,158,105231,,,133.2905677,694,520667,123.3736718,143.2074636,,,,,,,203.8320424,97.7453872,374.8543833,,,,136.7894939,126.4776705,147.1013173,,,,8,,,,,1,,,,,0.104316109,4290,41125,0.088795609,0.11983661,0.089860397,0.073789751,0.105931042,0.010212766,0.005542875,0.014882657,0.007051672,0.003071372,0.011031971,0.794616354,39084,49186,0.779471566,0.809761143,,,,,,,,,,,,,0.761553076,0.738453045,0.784653107,0.455,,49186,0.425596515,0.484403486,75.48044776,,,74.92887334,76.03202218,,,,,,,,,,96.05021022,67.20865879,124.8917617,75.40364194,74.84247254,75.96481133,,,,447.8679598,1745,290194,425.5211902,470.2147295,,,,,,,761.0943884,492.5401587,1123.525457,,,,450.5585575,427.6258586,473.4912564,,,,52.3621131,54,103128,39.33603093,68.32119928,,,,,,,,,,,,,51.63765123,38.20181865,68.26771339,,,,5.743000718,48,8358,4.23443537,7.61438576,,,,,,,,,,,,,5.610813568,4.076825728,7.532255328,,,,,,,0.118,,,0.101,0.137,0.174,,,0.15,0.199,0.095,,,0.081,0.111,83.5,74,88571,,,0.105,10950,,,,0.029889529,3033.548059,101492,,,46.54617795,146,313667,38.99588732,54.09646858,,,,,,,,,,,,,46.73588509,38.96627646,54.50549372,,,,0.34,,,0.323,0.358,0.136603494,8491,62158,0.119922643,0.153284345,0.069187969,1716,24802,0.051315628,0.087060309,0.000821693,87,105879,,,1217,0.913734336,1093.74,1197,,,0.09294998,472,5078,0.051152641,0.13474732,3.180917335,,,,,,,,3.513453553,3.18532061,3.131393547,,,,,,,,3.359265561,3.150728676,0.050863946,,,,,798.4699667,,,,,0.789924767,45254,57289,0.744160295,0.83568924,65779,,,59223.42553,72334.57447,,,,86219,74083.68085,98354.31915,33873,14929.51064,52816.48936,92829,44470.02128,141187.9787,70770,66821.40426,74718.59575,,,,,,0.367584058,5663,15406,,,66.98178778,,,,,0.226880919,,65779,,,8.806262231,54,6132,,,4.408132453,32,725931,3.015159335,6.222967759,,,,,,,,,,,,,4.495483489,3.054462925,6.380979972,,,,22.46474496,117,520667,18.22697683,26.70251309,22.4711764,,,,,,,,,,,,,23.24828168,18.81755643,27.67900693,,,,17.09345897,89,520667,13.72745116,21.03497214,,,,,,,,,,,,,17.60456505,14.10053492,21.71516595,,,,20.52536674,149,725931,17.22961976,23.82111372,,,,,,,,,,,,,21.31729268,17.87118017,24.76340518,,,,20.31578947,,9500,,,22,171,0.678697851,53685,79100,,,0.708,,,,,41.17399125,,,,,0.775823858,32206,41512,0.760702894,0.790944823,0.088974094,3620,40686,0.073400255,0.104547933,0.880058778,36533,41512,0.863095284,0.897022273,105879,,,,,0.221054222,23405,105879,,,0.192068304,20336,105879,,,0.009746975,1032,105879,,,0.004731817,501,105879,,,0.005704625,604,105879,,,0.000774469,82,105879,,,0.020740657,2196,105879,,,0.945012703,100057,105879,,,0.00112305,111,98838,2.7803695E-6,0.002243319,0.49770965,52697,105879,,,0.549893965,57564,104682,, -29,073,29073,MO,Gasconade County,2024,1,12007.183,321,39560,9752.886156,14261.47984,0,,,,2,,,,2,,,,2,,,,2,12271.58129,9928.731879,14614.43069,,,,,2,,0.17,,,0.143,0.2,4.006618232,,,3.218557945,4.912848833,5.130368253,,,4.171312215,6.206172499,0.085308057,90,1055,0.068451755,0.102164359,0,,,,,,,,,,,,,0.085170341,0.067852047,0.102488635,,,,,,,0.204,,,0.164,0.25,0.363,,,0.294,0.437,8.2,0.027977302,0.113,,,0.258,,,0.212,0.306,0.55860484,8264,14794,,,0.172938959,,,0.140299483,0.209508428,0.266666667,4,15,0.129817183,0.413965161,229.9,34,14791,,,20.74542897,59,2844,15.79238173,26.7600919,,,,,,,,,,,,,20.53004853,15.46604217,26.7226801,,,,,,,0.134652595,1531,11370,0.116780254,0.152524935,0.000473261,7,14791,,,2113,0.000203142,3,14768,,,4922.666667,0.000609426,9,14768,,,1640.888889,2253,,,,,,,,,2268,0.43,,,,,,,,,0.43,0.45,,,,,,,,,0.45,0.889231921,9505,10689,0.863604424,0.914859418,0.601932367,1869,3105,0.522560798,0.681303936,0.022661397,172,7590,,,0.189,560,,0.133,0.245,,,,,,,,,,,,,0.203147877,0.145345529,0.260950226,3.919320822,109643,27975,3.382792628,4.455849016,0.193326791,591,3057,0.119627358,0.267026224,14.87390981,22,14791,,,130.622908,96,73494,105.8049749,159.5129276,,,,,,,,,,,,,133.6309228,107.9873881,163.5304063,,,,7.5,,,,,0,,,,,0.069861901,430,6155,0.047696761,0.092027041,0.047415915,0.028108287,0.066723542,0.011372868,0.003414135,0.019331601,0.013809911,0.004215167,0.023404654,0.849313108,5935,6988,0.841016467,0.857609749,,,,,,,,,,,,,0.842499543,0.815362995,0.869636091,0.395,,6988,0.34151553,0.44848447,73.47941423,,,71.89552932,75.06329914,,,,,,,,,,,,,73.19713741,71.57306145,74.82121338,,,,545.1106958,321,39560,478.7433923,611.4779993,,,,,,,,,,,,,557.4485698,488.889483,626.0076566,,,,97.77376655,13,13296,52.06041284,167.1961185,,,,,,,,,,,,,105.2205585,56.02551591,179.9303595,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.123,,,0.105,0.143,0.18,,,0.156,0.206,0.095,,,0.08,0.11,47.4,6,12659,,,0.113,1680,,,,0.027977302,425.8704858,15222,,,49.92851145,22,44063,31.28993231,75.59236636,,,,,,,,,,,,,49.89782826,30.88754214,76.27413091,,,,0.339,,,0.32,0.359,0.154058598,1283,8328,0.1314203,0.176696895,0.082838387,265,3199,0.05781711,0.107859664,0.000609426,9,14768,,,1640.888889,0.896330275,195.4,218,,,,,,,,2.90018098,,,,,,,,,2.889011622,2.938178414,,,,,,,,,2.956467135,0.048489452,,,,,-2208.139,,,,,0.737196953,37067,50281,0.6784836,0.795910306,59287,,,51554.23404,67019.76596,,,,,,,,,,,,,62563,57849.46809,67276.53192,,,,,,0.425981873,1128,2648,,,68.80210931,,,,,0.195523471,,59287,,,11.47959184,9,784,,,,,,,,,,,,,,,,,,,,,,,,,,23.45748207,18,73494,13.12897465,38.68954938,24.49179525,,,,,,,,,,,,,24.52885952,13.72861647,40.45662354,,,,23.13113996,17,73494,13.47474143,37.03519582,,,,,,,,,,,,,24.16729454,14.07833966,38.69417969,,,,26.17293525,27,103160,17.24812925,38.08024665,,,,,,,,,,,,,27.31549396,18.00108264,39.74260959,,,,11.66666667,,1200,,,0,14,0.681841652,7923,11620,,,0.554,,,,,1.946225626,,,,,0.807035176,4818,5970,0.782323355,0.831746997,0.071404051,416,5826,0.046980767,0.095827335,0.824288107,4921,5970,0.79238786,0.856188355,14768,,,,,0.20469935,3023,14768,,,0.234764355,3467,14768,,,0.007651679,113,14768,,,0.005010834,74,14768,,,0.004536836,67,14768,,,0.000406284,6,14768,,,0.020585049,304,14768,,,0.94840195,14006,14768,,,0.002493588,35,14036,0,0.00947869,0.49471831,7306,14768,,,1,14794,14794,, -29,075,29075,MO,Gentry County,2024,1,9852.523878,110,17369,6802.228138,12902.81962,0,,,,2,,,,2,,,,2,,,,2,10300.34188,7092.78264,13507.90112,,,,,2,,0.201,,,0.17,0.237,4.36212441,,,3.492047177,5.317253106,5.250476552,,,4.25442149,6.311254817,0.053448276,31,580,0.035142797,0.071753755,0,,,,,,,,,,,,,0.051327434,0.0331319,0.069522967,,,,,,,0.236,,,0.19,0.288,0.36,,,0.293,0.428,7.2,0.096868318,0.124,,,0.286,,,0.235,0.339,0.338364168,2085,6162,,,0.162537905,,,0.130133204,0.197625348,0.166666667,1,6,0.011498194,0.426636125,275.4,17,6173,,,25.30730297,35,1383,17.62746378,35.19633215,,,,,,,,,,,,,22.86585366,15.42749544,32.64242789,,,,,,,0.166129032,824,4960,0.144682224,0.187575841,0.000323992,2,6173,,,3086.5,0.00047977,3,6253,,,2084.333333,0.000319847,2,6253,,,3126.5,4114,,,,,,,,,4126,0.42,,,,,,,,,0.42,0.43,,,,,,,,,0.43,0.876160991,3679,4199,0.847729262,0.90459272,0.505939902,724,1431,0.427828556,0.584051249,0.021397105,68,3178,,,0.176,284,,0.111659575,0.240340426,,,,,,,,,,,,,0.158653846,0.105879175,0.211428518,4.064606742,102737,25276,3.173646962,4.955566522,0.138799225,215,1549,0.080099579,0.197498872,14.57962093,9,6173,,,92.24808585,30,32521,62.23939615,131.6898785,,,,,,,,,,,,,96.70244657,65.24473462,138.0487554,,,,7.3,,,,,1,,,,,0.126252505,315,2495,0.090022705,0.162482305,0.094331984,0.055272268,0.1333917,0.025651303,0.007159745,0.044142861,0.022044088,0.009275649,0.034812527,0.760877382,2116,2781,0.715715407,0.806039358,,,,,,,,,,,,,0.768959436,0.703133083,0.834785788,0.341,,2781,0.279352658,0.402647342,74.56917425,,,72.29709225,76.84125626,,,,,,,,,,,,,74.15235809,71.8165398,76.48817639,,,,475.784026,110,17369,381.6140446,569.9540074,,,,,,,,,,,,,492.3026959,394.1839813,590.4214106,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.14,,,0.119,0.163,0.188,,,0.164,0.214,0.106,,,0.09,0.123,120,6,4998,,,0.124,770,,,,0.096868318,652.6987287,6738,,,,,,,,,,,,,,,,,,,,,,,,,,0.347,,,0.327,0.366,0.192627824,648,3364,0.164032079,0.221223569,0.110843374,184,1660,0.078673161,0.143013586,0.001119463,7,6253,,,893.2857143,,,,,,,,,,,3.129411255,,,,,,,,,3.131439491,3.162402098,,,,,,,,,3.198338502,,,,,,-36.364,,,,,0.818644144,36541,44636,0.687438665,0.949849622,52653,,,45107.29787,60198.70213,,,,,,,,,,,,,53339,49215.25532,57462.74468,,,,,,0.365025467,430,1178,,,,,,,,0.127457125,,52653,,,18.30663616,8,437,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,600,,,-888,-888,0.666735324,3237,4855,,,0.565,,,,,4.030426222,,,,,0.756284619,1775,2347,0.717723017,0.79484622,0.084723442,193,2278,0.046771552,0.122675331,0.796335748,1869,2347,0.757961451,0.834710045,6253,,,,,0.263713418,1649,6253,,,0.18727011,1171,6253,,,0.009115625,57,6253,,,0.004477851,28,6253,,,0.006077083,38,6253,,,0.000159923,1,6253,,,0.023828562,149,6253,,,0.941468095,5887,6253,,,0.000690369,4,5794,0,0.014286085,0.51431313,3216,6253,,,1,6162,6162,, -29,077,29077,MO,Greene County,2024,1,9816.411104,4709,823459,9412.921912,10219.9003,0,,,,2,4107.850986,2751.092275,5899.559239,,19641.10597,16615.20633,22667.00562,,7003.166051,5404.895708,8926.110018,,9765.634705,9331.259497,10200.00991,,,,,2,,0.167,,,0.141,0.196,4.167516615,,,3.391518646,5.018138469,6.000311382,,,5.116252226,6.902818683,0.080070035,1875,23417,0.07659385,0.083546219,0,,,,0.096192385,0.07032133,0.12206344,0.144721234,0.120971308,0.16847116,0.078294574,0.06363494,0.092954207,0.07601833,0.072311726,0.079724934,,,,0.096153846,0.077267466,0.115040227,0.185,,,0.147,0.226,0.339,,,0.29,0.391,7.3,0.079773446,0.128,,,0.234,,,0.195,0.277,0.823635482,246197,298915,,,0.174722207,,,0.14722445,0.205071063,0.265957447,50,188,0.228958977,0.303942112,645.1,1941,300865,,,20.50951495,1400,68261,19.43516086,21.58386904,,,,,,,21.60821821,16.52857477,27.75666026,26.12442769,21.18515098,31.8695863,19.83172021,18.67489036,20.98855007,,,,32.49222261,26.2570233,39.76225155,0.118494938,28699,242196,0.106580044,0.130409832,0.000933974,281,300865,,,1070.69395,0.000764937,232,303293,,,1307.297414,0.004609404,1398,303293,,,216.9477826,2836,,,,,,977,4273,513,2786,0.44,,,,,,0.4,0.33,0.45,0.44,0.52,,,,,0.39,0.51,0.36,0.31,0.52,0.931310018,183103,196608,0.925962108,0.936657928,0.696843939,54404,78072,0.669732934,0.723954944,0.020428555,3169,155126,,,0.171,10365,,0.13287234,0.20912766,0.015267176,0,0.377034145,0.032539683,0,0.091558221,0.253710247,0.123947936,0.383472559,0.172085065,0.098181524,0.245988605,0.130561695,0.111119576,0.150003813,4.412374969,106753,24194,4.181917567,4.642832371,0.206648945,12749,61694,0.178925381,0.234372508,12.23139947,368,300865,,,99.75004692,1467,1470676,94.64553616,104.8545577,113.122172,54.24647846,208.0357018,33.76615404,16.85594244,60.41697674,134.2171013,103.5859252,171.0707135,32.5593351,19.60284665,50.84543496,104.4963091,98.89707056,110.0955475,,,,7.2,,,,,0,,,,,0.166117776,21185,127530,0.153820116,0.178415437,0.138512568,0.126600592,0.150424545,0.025993884,0.021398116,0.030589652,0.010546538,0.007518358,0.013574718,0.794958302,113338,142571,0.780272862,0.809643741,0.761904762,0.578723606,0.945085918,0.730838865,0.667740217,0.793937514,0.748157781,0.67028332,0.826032242,0.733806147,0.658035307,0.809576986,0.822587382,0.811327912,0.833846851,0.191,,142571,0.176023211,0.205976789,75.63428936,,,75.30139199,75.96718672,92.3766033,60.071563,124.6816436,87.50667199,82.6541079,92.35923608,67.7680023,65.52610609,70.00989851,82.21947189,78.23268625,86.20625753,75.61357245,75.2629859,75.96415901,,,,480.3752374,4709,823459,466.1481984,494.6022764,,,,199.0031855,138.6130102,276.7652573,925.3430817,800.9611287,1049.725035,346.4676892,271.5753613,435.6311025,479.7610598,464.7489034,494.7732161,,,,49.25148375,139,282225,41.06366934,57.43929815,,,,,,,112.1559831,59.71833743,191.7901468,,,,49.9706313,40.79748158,59.14378101,,,,6.575896809,156,23723,5.543970318,7.6078233,,,,,,,,,,,,,6.142935624,5.057311514,7.228559734,,,,,,,0.124,,,0.106,0.144,0.182,,,0.158,0.206,0.098,,,0.084,0.113,236,605,256410,,,0.128,38090,,,,0.079773446,21951.57809,275174,,,34.98517349,311,888948,31.0968722,38.87347477,,,,,,,54.07049441,30.90595943,87.80709539,,,,36.28164926,32.03189247,40.53140605,,,,0.323,,,0.307,0.339,0.140860215,25414,180420,0.125370853,0.156349577,0.055987895,3626,64764,0.041690022,0.070285767,0.002275028,690,303293,,,439.5550725,0.94561105,2584.355,2733,,,0.098325099,1632,16598,0.07496321,0.121686989,3.065252859,,,,,,3.15619945,2.659291361,2.719912794,3.131550547,2.913141665,,,,,,3.045024493,2.343085249,2.597432802,2.992410166,0.06917768,,,,,283.5679286,,,,,0.835037259,41574,49787,0.798509955,0.871564562,55751,,,52327.85106,59174.14894,62632,38647.31915,86616.68085,59016,54782.6383,63249.3617,39648,22802.7234,56493.2766,46813,40487.38298,53138.61702,55916,54380.17021,57451.82979,,,,,,0.405399018,15438,38081,,,48.44359132,,,,,0.301806246,,55751,,,8.643694164,149,17238,,,6.495923198,133,2047438,5.391917964,7.599928432,,,,,,,34.54542724,21.89883753,51.8351025,,,,5.815208335,4.697561275,6.932855396,,,,22.57307788,338,1470676,20.1011243,25.04503147,22.9826284,,,,,,,,,,,,,23.36307839,20.66543735,26.06071943,,,,19.31084753,284,1470676,17.06490708,21.55678797,,,,,,,45.4273266,28.46906373,68.7775184,,,,19.05612811,16.66503866,21.44721755,,,,13.5291032,277,2047438,11.93584855,15.12235786,,,,,,,19.52567626,10.39660027,33.38950107,,,,14.14661259,12.40340836,15.88981682,,,,10.16949153,,23600,,,87,153,0.625441073,141800,226720,,,0.689,,,,,111.2588099,,,,,0.56745151,74398,131109,0.554948217,0.579954803,0.141349377,17879,126488,0.130664564,0.152034191,0.82276579,107872,131109,0.812664398,0.832867183,303293,,,,,0.204966814,62165,303293,,,0.17316918,52521,303293,,,0.033828674,10260,303293,,,0.007975786,2419,303293,,,0.023581158,7152,303293,,,0.001388097,421,303293,,,0.044755402,13574,303293,,,0.861609071,261320,303293,,,0.005489929,1549,282153,0.004017336,0.006962523,0.509708434,154591,303293,,,0.141414784,42271,298915,, -29,079,29079,MO,Grundy County,2024,1,9482.555908,178,25938,7143.494176,11821.61764,0,,,,2,,,,2,,,,2,,,,2,9412.196881,6966.927477,11857.46629,,,,,2,,0.193,,,0.162,0.228,4.361651097,,,3.488871856,5.32801351,5.525218703,,,4.470798883,6.678077598,0.077160494,75,972,0.060384683,0.093936305,0,,,,,,,,,,,,,0.079868709,0.062293674,0.097443744,,,,,,,0.227,,,0.182,0.275,0.371,,,0.297,0.445,6.6,0.136927079,0.132,,,0.281,,,0.229,0.335,0.487969005,4786,9808,,,0.151195404,,,0.120334198,0.186012726,0.181818182,2,11,0.044108943,0.367070091,298.4,29,9720,,,29.5503212,69,2335,22.99191373,37.39782274,,,,,,,,,,,,,30.78358209,23.80802016,39.1642642,,,,,,,0.168647043,1249,7406,0.147200234,0.190093851,0.000205761,2,9720,,,4860,0.000508233,5,9838,,,1967.6,0.002846107,28,9838,,,351.3571429,2473,,,,,,,,,2488,0.47,,,,,,,,,0.47,0.4,,,,,,,,,0.4,0.85440096,5698,6669,0.82099316,0.88780876,0.511285122,1110,2171,0.415949103,0.606621141,0.02631579,106,4028,,,0.222,533,,0.133829787,0.310170213,,,,,,,,,,0.62745098,0.425522456,0.829379505,0.147571036,0.101138659,0.194003413,5.071982397,96814,19088,3.712758685,6.431206109,0.173613922,429,2471,0.102672556,0.244555287,20.57613169,20,9720,,,112.1807947,55,49028,84.50992692,146.018724,,,,,,,,,,,,,113.0655998,84.44279794,148.2704915,,,,7.2,,,,,0,,,,,0.119230769,465,3900,0.084805758,0.153655781,0.084405558,0.051081142,0.117729974,0.015384615,0.004736709,0.026032522,0.034615385,0.015448189,0.053782581,0.788891681,3139,3979,0.755131111,0.822652251,,,,,,,,,,,,,0.781222321,0.748024163,0.814420479,0.237,,3979,0.186281165,0.287718835,75.73824717,,,73.80971491,77.66677943,,,,,,,,,,,,,75.56713811,73.56563606,77.56864015,,,,477.9444868,178,25938,403.0738934,552.8150801,,,,,,,,,,,,,473.8570367,398.0119684,549.702105,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.134,,,0.115,0.155,0.187,,,0.161,0.213,0.102,,,0.086,0.118,75.1,6,7992,,,0.132,1310,,,,0.136927079,1405.008755,10261,,,,,,,,,,,,,,,,,,,,,,,,,,0.34,,,0.321,0.357,0.204053522,1037,5082,0.176649267,0.231457778,0.09218107,224,2430,0.064776815,0.119585325,0.000711527,7,9838,,,1405.428571,0.903935185,97.625,108,,,,,,,,3.119512624,,,,,,,,,3.116378806,2.895429439,,,,,,,,,2.887155602,0.059957916,,,,,-4921.54,,,,,0.781766826,40132,51335,0.671983143,0.891550509,48457,,,42115.89362,54798.10638,,,,63750,8978.425532,118521.5745,,,,29344,546.893617,58141.10638,51420,46819.65957,56020.34043,,,,,,0.418424754,595,1422,,,,,,,,0.250531399,,48457,,,7.267441861,5,688,,,,,,,,,,,,,,,,,,,,,,,,,,28.14901337,13,49028,14.54500597,49.17066149,26.51546055,,,,,,,,,,,,,27.40925094,13.68259931,49.04272115,,,,22.43615893,11,49028,11.2000497,40.14448583,,,,,,,,,,,,,21.74338458,10.42679806,39.98685839,,,,24.53456487,17,69290,14.29228817,39.28221506,,,,,,,,,,,,,24.56059559,14.0385025,39.88486852,,,,56.66666667,,900,,,18,33,0.608224812,4437,7295,,,0.573,,,,,46.41546819,,,,,0.682606411,2598,3806,0.644926213,0.720286609,0.096988118,351,3619,0.060757395,0.133218841,0.751182344,2859,3806,0.713044145,0.789320543,9838,,,,,0.250050823,2460,9838,,,0.221183167,2176,9838,,,0.009148201,90,9838,,,0.004980687,49,9838,,,0.012400895,122,9838,,,0.000711527,7,9838,,,0.029477536,290,9838,,,0.928339093,9133,9838,,,0.009153318,84,9177,0,0.019501792,0.506810327,4986,9838,,,0.44677814,4382,9808,, -29,081,29081,MO,Harrison County,2024,1,7103.311267,125,22148,5028.490629,9178.131905,0,,,,2,,,,2,,,,2,,,,2,7338.016973,5137.047387,9538.986558,,,,,2,,0.198,,,0.169,0.227,4.307772779,,,3.482472861,5.265812924,5.286798757,,,4.282841797,6.386115214,0.064516129,42,651,0.045644131,0.083388127,0,,,,,,,,,,,,,0.067961165,0.048118078,0.087804253,,,,,,,0.233,,,0.186,0.276,0.437,,,0.363,0.512,6.3,0.14762572,0.143,,,0.282,,,0.232,0.332,0.437415717,3568,8157,,,0.153592673,,,0.123385606,0.189054826,0.4,4,10,0.227273625,0.556899967,232.7,19,8164,,,18.47575058,32,1732,12.63739972,26.08224716,,,,,,,,,,,,,18.61042184,12.55637346,26.56753436,,,,,,,0.120917636,759,6277,0.104236785,0.137598487,0.000244978,2,8164,,,4082,0.000365898,3,8199,,,2733,0.000853763,7,8199,,,1171.285714,1159,,,,,,,,,1162,0.43,,,,,,,,,0.43,0.34,,,,,,,,,0.34,0.907588413,5107,5627,0.886568748,0.928608079,0.519838988,904,1739,0.423459818,0.616218158,0.024099648,89,3693,,,0.233,462,,0.146021277,0.319978723,,,,,,,,,,0.636363636,0.112468015,1,0.169284468,0.098431357,0.240137579,4.488982934,97586,21739,3.597613386,5.380352482,0.182186235,360,1976,0.107224003,0.257148467,8.57422832,7,8164,,,81.38839019,34,41775,56.36382618,113.7321175,,,,,,,,,,,,,85.95843657,59.52871615,120.1182993,,,,7.2,,,,,1,,,,,0.130952381,440,3360,0.085008417,0.176896345,0.103177005,0.057399273,0.148954736,0.019047619,0.002380737,0.035714501,0.025297619,0.004444187,0.046151051,0.8011994,2672,3335,0.767509674,0.834889127,,,,,,,,,,,,,0.774352247,0.728841506,0.819862987,0.324,,3335,0.265982909,0.382017091,77.83651515,,,76.00669478,79.66633552,,,,,,,,,,,,,77.49466121,75.60969852,79.3796239,,,,384.9337764,125,22148,312.15021,457.7173428,,,,,,,,,,,,,392.3659406,317.1028085,467.6290726,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.136,,,0.118,0.155,0.19,,,0.166,0.217,0.108,,,0.092,0.124,73.8,5,6778,,,0.143,1180,,,,0.14762572,1322.283576,8957,,,,,,,,,,,,,,,,,,,,,,,,,,0.354,,,0.336,0.372,0.148413985,641,4319,0.125775687,0.171052283,0.061890838,127,2052,0.041635519,0.082146157,0.001097695,9,8199,,,911,0.883564815,95.425,108,,,,,,,,3.0790367,,,,,,,,,3.063790706,2.968656445,,,,,,,,,2.975268976,0.074712286,,,,,-3882.45075,,,,,0.700973914,34476,49183,0.582463983,0.819483844,51910,,,47698.08511,56121.91489,78393,77544.65957,79241.34043,138750,137705.0638,139794.9362,,,,,,,51853,47454.02128,56251.97872,,,,,,0.472361809,658,1393,,,,,,,,0.220728183,,51910,,,9.746588694,5,513,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,23.75055135,14,58946,12.98464743,39.84938948,,,,,,,,,,,,,25.01921118,13.67823557,41.9779851,,,,37.77777778,,900,,,10,24,0.607783956,3826,6295,,,0.568,,,,,9.144244146,,,,,0.713574511,2150,3013,0.674036009,0.753113012,0.101635921,292,2873,0.054364904,0.148906937,0.813806837,2452,3013,0.778833939,0.848779735,8199,,,,,0.24600561,2017,8199,,,0.227100866,1862,8199,,,0.005122576,42,8199,,,0.005732406,47,8199,,,0.005122576,42,8199,,,0.001341627,11,8199,,,0.028174168,231,8199,,,0.941212343,7717,8199,,,0.001690727,13,7689,0,0.012399813,0.497011831,4075,8199,,,1,8157,8157,, -29,083,29083,MO,Henry County,2024,1,9692.226253,453,59823,8193.897341,11190.55517,0,,,,2,,,,2,,,,2,,,,2,10331.39217,8698.016403,11964.76794,,,,,2,,0.193,,,0.163,0.225,4.373166965,,,3.540599101,5.288713998,5.606973507,,,4.615854534,6.644229379,0.082548477,149,1805,0.069852574,0.095244379,0,,,,,,,,,,,,,0.078255675,0.065389736,0.091121614,,,,,,,0.231,,,0.187,0.279,0.381,,,0.316,0.454,6.2,0.158708929,0.143,,,0.283,,,0.235,0.338,0.616057596,13520,21946,,,0.157248527,,,0.127411187,0.19217979,0.2,4,20,0.089212428,0.331567708,306.2,68,22206,,,33.84330088,146,4314,28.35355352,39.33304824,,,,,,,,,,46.72897196,22.40835839,85.93624319,32.51612903,26.83846569,38.19379237,,,,,,,0.136398022,2344,17185,0.118525681,0.154270362,0.000765559,17,22206,,,1306.235294,0.000713076,16,22438,,,1402.375,0.003520813,79,22438,,,284.0253165,1018,,,,,,,,,1004,0.36,,,,,,,,,0.36,0.29,,,,,,,0.55,,0.29,0.891478793,13998,15702,0.871205861,0.911751724,0.526273566,2624,4986,0.448463254,0.604083879,0.026002167,264,10153,,,0.197,957,,0.119553192,0.274446809,,,,,,,,,,0.296577947,0.056112852,0.537043042,0.178354768,0.128092415,0.228617122,4.250898634,100521,23647,3.670457976,4.831339293,0.250522794,1198,4782,0.169134596,0.331910992,13.96019094,31,22206,,,117.6835499,129,109616,97.37509058,137.9920091,,,,,,,,,,,,,124.2552026,102.6445047,145.8659005,,,,7.4,,,,,0,,,,,0.115778137,1075,9285,0.08971369,0.141842584,0.090038106,0.066932758,0.113143454,0.021970921,0.01089218,0.033049662,0.010231556,0.003671595,0.016791517,0.834320825,7604,9114,0.796730072,0.871911579,,,,,,,,,,,,,0.858747406,0.814780819,0.902713992,0.305,,9114,0.25970773,0.350292271,74.70102606,,,73.56838951,75.83366262,,,,,,,,,,,,,74.15769216,72.96285362,75.3525307,,,,502.4483106,453,59823,452.0547348,552.8418864,,,,,,,,,,,,,523.2400128,469.8744475,576.6055781,,,,47.25897921,10,21160,22.66251747,86.91094538,,,,,,,,,,,,,53.22263026,25.52231995,97.878312,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.136,,,0.117,0.157,0.187,,,0.162,0.214,0.105,,,0.089,0.122,75.1,14,18651,,,0.143,3130,,,,0.158708929,3534.765256,22272,,,22.69082988,15,66106,12.69988523,37.42507317,,,,,,,,,,,,,24.37478672,13.6423831,40.20250389,,,,0.353,,,0.336,0.371,0.163005593,2011,12337,0.140367295,0.185643891,0.070516598,359,5091,0.050261279,0.090771917,0.001203316,27,22438,,,831.037037,0.894878049,183.45,205,,,,,,,,2.765474236,,,,,,,,,2.752014756,2.720140763,,,,,,,,,2.723712611,0.056027741,,,,,-4078.6586,,,,,0.761511424,38997,51210,0.647083776,0.875939071,54177,,,49470.61702,58883.38298,29500,25712.25532,33287.74468,,,,51944,595.5744681,103292.4255,72500,37115.14894,107884.8511,54774,49585.06383,59962.93617,,,,,,0.46933243,1385,2951,,,51.01971588,,,,,0.242649095,,54177,,,7.109004739,9,1266,,,,,,,,,,,,,,,,,,,,,,,,,,33.1628647,33,109616,22.5325576,47.07203929,30.10509415,,,,,,,,,,,,,34.25296069,22.93974536,49.19296523,,,,23.71916509,26,109616,15.49414612,34.75407247,,,,,,,,,,,,,24.45968555,15.82901882,36.10732098,,,,20.92228027,32,152947,14.31082421,29.5360171,,,,,,,,,,,,,21.71142021,14.75185666,30.81762793,,,,7.368421053,,1900,,,5,9,0.641570027,10788,16815,,,0.628,,,,,30.29044499,,,,,0.721675143,6669,9241,0.696735415,0.746614872,0.077789035,691,8883,0.054985489,0.100592581,0.838978466,7753,9241,0.80705716,0.870899771,22438,,,,,0.222925394,5002,22438,,,0.225777699,5066,22438,,,0.012122293,272,22438,,,0.008690614,195,22438,,,0.004456725,100,22438,,,0.000713076,16,22438,,,0.030528568,685,22438,,,0.925483555,20766,22438,,,0.003848374,80,20788,0,0.008867033,0.503387111,11295,22438,,,0.596008384,13080,21946,, -29,085,29085,MO,Hickory County,2024,1,11314.64399,245,23767,8603.970829,14025.31715,0,,,,2,,,,2,,,,2,,,,2,11882.6621,8982.774157,14782.55005,,,,,2,,0.218,,,0.187,0.253,4.640248379,,,3.756997857,5.615119621,5.670572274,,,4.555345732,6.862112425,0.087323944,62,710,0.066557989,0.108089898,0,,,,,,,,,,,,,0.082934609,0.061347706,0.104521513,,,,,,,0.255,,,0.207,0.302,0.376,,,0.298,0.456,7.6,0.018345506,0.144,,,0.316,,,0.262,0.372,0.274066916,2269,8279,,,0.138770823,,,0.10914864,0.171439303,0.277777778,5,18,0.152183671,0.410166986,151,13,8607,,,27.49360614,43,1564,19.89725909,37.03370704,,,,,,,,,,,,,24.81047553,17.37695205,34.34815609,,,,,,,0.147357549,856,5809,0.12591074,0.168804357,0.000116185,1,8607,,,8607,0.000115875,1,8630,,,8630,0.000926999,8,8630,,,1078.75,2045,,,,,,,,,2056,0.38,,,,,,,,,0.38,0.27,,,,,,,,,0.27,0.893939394,5782,6468,0.858510487,0.929368301,0.513573001,700,1363,0.363130318,0.664015683,0.027424582,110,4011,,,0.321,472,,0.197085106,0.444914894,,,,,,,,,,,,,0.119047619,0.05282386,0.185271378,4.210710354,65026,15443,3.044317046,5.377103663,0.123335669,176,1427,0.027549699,0.219121639,11.6184501,10,8607,,,124.1411785,58,46721,94.26560151,160.4812606,,,,,,,,,,,,,131.569993,99.9066118,170.084726,,,,7.3,,,,,1,,,,,0.167082294,670,4010,0.115729716,0.218434873,0.149685535,0.095877319,0.20349375,0.012219451,0,0.026425142,0.019950125,0.002324717,0.037575532,0.756658596,1875,2478,0.662292034,0.851025157,,,,,,,,,,,,,0.793021881,0.716783451,0.869260311,0.371,,2478,0.258078486,0.483921515,74.97316251,,,72.95739557,76.98892945,,,,,,,,,,,,,74.35090667,72.25128832,76.45052503,,,,552.4613487,245,23767,468.5085168,636.4141805,,,,,,,,,,,,,573.4978515,484.8448273,662.1508758,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.148,,,0.128,0.169,0.2,,,0.174,0.227,0.114,,,0.097,0.132,66.2,5,7554,,,0.144,1210,,,,0.018345506,176.6121814,9627,,,,,,,,,,,,,,,,,,,,,,,,,,0.352,,,0.335,0.368,0.174133949,754,4330,0.146729694,0.201538205,0.069210867,107,1546,0.046572569,0.091849165,0.000347625,3,8630,,,2876.666667,,,,,,,,,,,3.244459223,,,,,,,,,3.274933851,3.343377975,,,,,,,,,3.37628636,0.155485031,,,,,-5781.604,,,,,0.748664383,31250,41741,0.439323232,1.058005533,43468,,,37243.65957,49692.34043,,,,,,,,,,,,,34016,29551.48936,38480.51064,,,,,,0.493790656,835,1691,,,,,,,,0.285911475,,43468,,,14.12429379,5,354,,,,,,,,,,,,,,,,,,,,,,,,,,26.22596283,10,46721,11.32250929,51.67560182,21.40365146,,,,,,,,,,,,,27.89505304,12.04310397,54.96437492,,,,,,,,,,,,,,,,,,,,,,,,,,,41.41675998,27,65191,27.2939058,60.25921131,,,,,,,,,,,,,43.80556817,28.86814545,63.73480181,,,,54.28571429,,700,,,7,31,0.645079365,5080,7875,,,0.284,,,,,5.167282137,,,,,0.824486301,2889,3504,0.772481093,0.87649151,0.205795387,696,3382,0.129706007,0.281884768,0.63869863,2238,3504,0.587671117,0.689726144,8630,,,,,0.175202781,1512,8630,,,0.32433372,2799,8630,,,0.007184241,62,8630,,,0.010312862,89,8630,,,0.002665122,23,8630,,,0.001274623,11,8630,,,0.022827347,197,8630,,,0.935110081,8070,8630,,,0.009730262,79,8119,0,0.024644238,0.507300116,4378,8630,,,1,8279,8279,, -29,087,29087,MO,Holt County,2024,1,4115.307752,74,11290,2579.041458,6230.625392,1,,,,2,,,,2,,,,2,,,,2,4250.924458,2596.575095,6565.208055,1,,,,2,,0.174,,,0.149,0.204,4.146321921,,,3.378290421,5.00516047,5.309354308,,,4.396702542,6.335863445,0.075709779,24,317,0.046588757,0.104830801,0,,,,,,,,,,,,,0.08,0.049300285,0.110699716,,,,,,,0.207,,,0.165,0.251,0.401,,,0.333,0.472,7.2,0.120587049,0.113,,,0.27,,,0.223,0.32,0.64693346,2732,4223,,,0.15175284,,,0.123402186,0.185307592,0.25,1,4,0.023230216,0.544021398,189.3,8,4226,,,12.65822785,10,790,6.070112274,23.2789317,,,,,,,,,,,,,,,,,,,,,,0.124682741,393,3152,0.106810401,0.142555082,,0,4226,,,,0.000234632,1,4262,,,4262,0.000469263,2,4262,,,2131,4382,,,,,,,,,4195,0.47,,,,,,,,,0.47,0.34,,,,,,,,,0.34,0.936279219,2924,3123,0.913144102,0.959414335,0.592088999,479,809,0.487749885,0.696428112,0.018572018,45,2423,,,0.169,148,,0.098702128,0.239297872,,,,,,,,,,,,,0.141221374,0.071615981,0.210826767,3.790379379,104406,27545,2.999185914,4.581572845,0.23515716,202,859,0.151722709,0.31859161,18.93043067,8,4226,,,50.74268844,11,21678,25.33056724,90.7926862,,,,,,,,,,,,,53.24040463,26.57741817,95.26179039,,,,7.7,,,,,0,,,,,0.054726368,110,2010,0.03231904,0.077133697,0.04759519,0.018598251,0.07659213,0.005970149,0,0.017103521,0.00199005,0,0.009200858,0.791970803,1519,1918,0.765943277,0.817998329,,,,,,,,,,,,,0.791484033,0.693444814,0.889523251,0.348,,1918,0.287597247,0.408402753,79.46431959,,,77.50110062,81.42753856,,,,,,,,,,,,,79.4420628,77.40155614,81.48256947,,,,334.1526663,74,11290,258.9637266,424.3620742,,,,,,,,,,,,,336.2516853,259.5119518,428.5803757,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.125,,,0.107,0.144,0.179,,,0.157,0.204,0.099,,,0.084,0.114,0,0,3619,,,0.113,480,,,,0.120587049,592.3235834,4912,,,,,,,,,,,,,,,,,,,,,,,,,,0.335,,,0.316,0.353,0.142981691,328,2294,0.121534883,0.1644285,0.077936334,71,911,0.054106547,0.101766121,0.001173158,5,4262,,,852.4,,,,,,,,,,,3.164451222,,,,,,,,,3.206289326,3.000247143,,,,,,,,,3.079427275,,,,,,-46.2805,,,,,0.601050857,33517,55764,0.54413177,0.657969944,51295,,,45232.70213,57357.29787,,,,,,,,,,,,,54896,49391.31915,60400.68085,,,,,,0.291525424,172,590,,,,,,,,0.230373331,,51295,,,9.389671362,2,213,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,300,,,-888,23,0.674244604,2343,3475,,,0.477,,,,,7.579171683,,,,,0.786123853,1371,1744,0.754870385,0.817377321,0.056969697,94,1650,0.026840977,0.087098417,0.757454128,1321,1744,0.72996483,0.784943427,4262,,,,,0.208118254,887,4262,,,0.253402159,1080,4262,,,0.006335054,27,4262,,,0.012670108,54,4262,,,0.003284843,14,4262,,,0.000234632,1,4262,,,0.015016424,64,4262,,,0.948850305,4044,4262,,,0.001230012,5,4065,0,0.015052844,0.507273581,2162,4262,,,1,4223,4223,, -29,089,29089,MO,Howard County,2024,1,9344.215673,162,27623,7163.265065,11525.16628,0,,,,2,,,,2,,,,2,,,,2,9318.961415,7001.966768,11635.95606,,,,,2,,0.169,,,0.142,0.2,4.063641751,,,3.265480117,4.946331311,5.175427505,,,4.185159812,6.273207542,0.074468085,56,752,0.055703976,0.093232194,0,,,,,,,,,,,,,0.078635015,0.058313786,0.098956243,,,,,,,0.2,,,0.158,0.245,0.389,,,0.315,0.471,8.3,0.063180091,0.092,,,0.245,,,0.197,0.296,0.459856172,4668,10151,,,0.178994408,,,0.144604018,0.218842333,0.333333333,5,15,0.193378406,0.471634149,285.2,29,10168,,,17.32851986,48,2770,12.77668261,22.97510332,,,,,,,,,,,,,17.00276789,12.30498743,22.90261677,,,,,,,0.124451536,936,7521,0.106579195,0.142323876,0.000393391,4,10168,,,2542,0.000295043,3,10168,,,3389.333333,0.000786782,8,10168,,,1271,3814,,,,,,,8901,,3471,0.4,,,,,,,0.42,,0.4,0.46,,,,,,,0.41,,0.46,0.885308491,5797,6548,0.859991829,0.910625153,0.573908963,1223,2131,0.48210934,0.665708586,0.023940678,113,4720,,,0.166,353,,0.106425532,0.225574468,,,,,,,,,,,,,0.165723982,0.099412977,0.232034987,4.064418686,115714,28470,3.497015201,4.631822171,0.189569161,418,2205,0.128916031,0.250222291,10.81825334,11,10168,,,93.16893312,47,50446,68.45702765,123.8949299,,,,,,,,,,,,,96.6374558,70.21692332,129.7312738,,,,7.5,,,,,0,,,,,0.091040462,315,3460,0.061332361,0.120748564,0.076744186,0.04633101,0.107157363,0.006936416,0,0.017749886,0.01300578,0.001513792,0.024497769,0.75944937,3255,4286,0.723745304,0.795153437,,,,,,,,,,,,,0.701838529,0.647482339,0.756194719,0.432,,4286,0.363140573,0.500859427,76.44045118,,,74.64701293,78.23388943,,,,,,,,,,,,,76.34635967,74.45662915,78.23609019,,,,446.4944118,162,27623,372.3772819,520.6115418,,,,,,,,,,,,,439.2807292,362.1958631,516.3655953,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.122,,,0.104,0.142,0.173,,,0.148,0.2,0.096,,,0.082,0.112,104.5,9,8610,,,0.092,940,,,,0.063180091,640.8988471,10144,,,,,,,,,,,,,,,,,,,,,,,,,,0.336,,,0.316,0.354,0.146776922,781,5321,0.124138624,0.16941522,0.070838766,163,2301,0.048200468,0.093477064,0.000688434,7,10168,,,1452.571429,,,,,,,,,,,3.229227792,,,,,,,,,3.195030133,3.156885121,,,,,,,,,3.231117051,0.040869313,,,,,-2156.66,,,,,0.743615994,38497,51770,0.663888446,0.823343541,53862,,,46535.53192,61188.46809,51667,8835.340426,94498.65957,,,,41827,15060.19149,68593.80851,65375,2372.617021,128377.383,57863,51580.2766,64145.7234,,,,,,0.40848991,587,1437,,,33.26338185,,,,,0.274404961,,53862,,,17.30103806,10,578,,,,,,,,,,,,,,,,,,,,,,,,,,32.63718531,18,50446,18.65497137,53.00074421,35.68171907,,,,,,,,,,,,,35.9292438,20.53666724,58.34684096,,,,33.69940134,17,50446,19.63114314,53.95600606,,,,,,,,,,,,,37.33719883,21.75029424,59.78047224,,,,21.23352632,15,70643,11.8842435,35.02147258,,,,,,,,,,,,,20.35990039,10.84078948,34.81604974,,,,7.777777778,,900,,,0,7,0.649075845,5092,7845,,,0.584,,,,,3.163522732,,,,,0.817014925,2737,3350,0.806190736,0.827839115,0.094461539,307,3250,0.056772217,0.13215086,0.84238806,2822,3350,0.802833321,0.881942798,10168,,,,,0.216266719,2199,10168,,,0.200236035,2036,10168,,,0.049075531,499,10168,,,0.008851298,90,10168,,,0.004032258,41,10168,,,0.001081825,11,10168,,,0.022324941,227,10168,,,0.893784422,9088,10168,,,0.004285117,41,9568,0,0.013165981,0.494590873,5029,10168,,,1,10151,10151,, -29,091,29091,MO,Howell County,2024,1,11610.3371,826,110079,10351.29596,12869.37825,0,,,,2,,,,2,,,,2,,,,2,11858.24602,10543.19424,13173.2978,,,,,2,,0.22,,,0.186,0.256,4.629294176,,,3.793233538,5.535055647,5.869876992,,,4.922604729,6.849142157,0.07795299,262,3361,0.068889098,0.087016883,0,,,,,,,,,,,,,0.077917981,0.068586941,0.087249021,,,,,,,0.263,,,0.211,0.315,0.423,,,0.362,0.485,6.1,0.104135546,0.174,,,0.311,,,0.258,0.362,0.624679245,24831,39750,,,0.150146507,,,0.121451302,0.182328979,0.153846154,6,39,0.079396717,0.24495263,277.7,111,39975,,,37.96728972,325,8560,33.83943896,42.09514048,,,,,,,,,,39.47368421,20.39662865,68.9525824,38.62825089,34.27874623,42.97775555,,,,,,,0.147223364,4658,31639,0.129351023,0.165095704,0.000875547,35,39975,,,1142.142857,0.000393788,16,40631,,,2539.4375,0.002485787,101,40631,,,402.2871287,2531,,,,,,,,,2539,0.33,,,,,,,,,0.33,0.35,,,,,,,,,0.35,0.861970281,23493,27255,0.84320638,0.880734181,0.526092167,4829,9179,0.458439208,0.593745126,0.029441369,468,15896,,,0.251,2388,,0.160446809,0.341553192,,,,,,,,,,0.114006515,0,0.289279401,0.298262206,0.237422499,0.359101913,4.830354187,87555,18126,4.053606074,5.607102301,0.234827946,2252,9590,0.162185765,0.307470126,13.00813008,52,39975,,,102.2275635,205,200533,88.23339337,116.2217337,,,,,,,,,,,,,104.4760289,89.8865555,119.0655022,,,,7.6,,,,,0,,,,,0.156541305,2435,15555,0.126892394,0.186190216,0.118456376,0.091826771,0.14508598,0.014079074,0.006002806,0.022155343,0.039858566,0.023954992,0.05576214,0.824503526,12746,15459,0.792983981,0.85602307,,,,,,,,,,,,,0.832839092,0.805597538,0.860080647,0.198,,15459,0.15859069,0.23740931,73.1048248,,,72.19856481,74.0110848,,,,,,,,,,,,,72.77479039,71.84256217,73.70701862,,,,552.3698937,826,110079,512.3555233,592.384264,,,,,,,,,,,,,563.538157,522.0108535,605.0654605,,,,83.38693922,35,41973,58.08205847,115.9710466,,,,,,,,,,,,,85.9755621,59.18162096,120.7416546,,,,7.301401869,25,3424,4.725082315,10.77830949,,,,,,,,,,,,,7.711289328,4.990339867,11.38338424,,,,,,,0.149,,,0.128,0.171,0.201,,,0.174,0.231,0.117,,,0.099,0.134,48.2,16,33172,,,0.174,6920,,,,0.104135546,4207.076047,40400,,,10.801469,13,120354,5.751327327,18.47084095,,,,,,,,,,,,,10.61298853,5.483886042,18.53875514,,,,0.341,,,0.324,0.358,0.179825743,4004,22266,0.154804467,0.20484702,0.070593022,694,9831,0.049146214,0.092039831,0.001452093,59,40631,,,688.661017,0.934016129,289.545,310,,,0.08410758,172,2045,0.028869744,0.139345415,2.779314665,,,,,,,,,2.784851069,2.809261834,,,,,,,,,2.816875756,0.048825362,,,,,-3318.902164,,,,,0.805511346,35428,43982,0.699294034,0.911728657,44858,,,38402.51064,51313.48936,,,,,,,,,,,,,47106,42716.55319,51495.44681,,,,,,0.527725962,3112,5897,,,83.03600566,,,,,0.274644434,,44858,,,6.578947368,17,2584,,,5.696788436,16,280860,3.256206813,9.251227515,,,,,,,,,,,,,5.673651562,3.17549971,9.35782543,,,,25.70769155,51,200533,18.8890448,34.18577992,25.43222313,,,,,,,,,,,,,25.04237709,18.12329247,33.73191759,,,,23.43753896,47,200533,17.22102206,31.16695823,,,,,,,,,,,,,22.80441239,16.50366632,30.71739383,,,,24.21135085,68,280860,18.8010613,30.69365633,,,,,,,,,,,,,24.20758,18.64278635,30.91253923,,,,15.8974359,,3900,,,19,43,0.616427037,18650,30255,,,0.607,,,,,25.54563417,,,,,0.688394998,10624,15433,0.661545713,0.715244283,0.122605364,1760,14355,0.096151504,0.149059224,0.801917968,12376,15433,0.776468702,0.827367234,40631,,,,,0.240038394,9753,40631,,,0.198912161,8082,40631,,,0.005980655,243,40631,,,0.009450912,384,40631,,,0.007555807,307,40631,,,0.000689129,28,40631,,,0.026260737,1067,40631,,,0.933966676,37948,40631,,,0.002025964,76,37513,0,0.004935786,0.508872536,20676,40631,,,0.701836478,27898,39750,, -29,093,29093,MO,Iron County,2024,1,14456.69232,257,26853,11653.49045,17259.8942,0,,,,2,,,,2,,,,2,,,,2,14308.17073,11502.8555,17113.48596,,,,,2,,0.213,,,0.18,0.249,4.63945335,,,3.739241327,5.578245296,5.700160877,,,4.624848764,6.82094884,0.102941177,70,680,0.080100622,0.125781731,0,,,,,,,,,,,,,0.099236641,0.076339735,0.122133547,,,,,,,0.256,,,0.21,0.308,0.398,,,0.323,0.477,5.7,0.12644324,0.179,,,0.306,,,0.252,0.362,0.789975883,7534,9537,,,0.145941021,,,0.116083967,0.179095156,0.166666667,2,12,0.039062389,0.344663233,95.7,9,9408,,,28.19738167,56,1986,21.29999909,36.61664552,,,,,,,,,,,,,28.99343545,21.71807272,37.92412742,,,,,,,0.146290636,1053,7198,0.127226807,0.165354466,0.000106293,1,9408,,,9408,0.00021245,2,9414,,,4707,0.001274697,12,9414,,,784.5,3614,,,,,,,,,3650,0.34,,,,,,,,,0.34,0.34,,,,,,,,,0.34,0.863418182,5936,6875,0.835454736,0.891381628,0.581151833,1221,2101,0.490878274,0.671425391,0.039895924,138,3459,,,0.261,501,,0.158531915,0.363468085,,,,,,,,,,0.530864198,0.07031242,0.991415975,0.249708285,0.182294982,0.317121588,5.145308284,101059,19641,4.201094221,6.089522347,0.283324886,559,1973,0.181661296,0.384988476,15.94387755,15,9408,,,111.9238918,56,50034,84.54610501,145.3424831,,,,,,,,,,,,,116.8149863,88.00103428,152.0507614,,,,7.2,,,,,1,,,,,0.114634146,470,4100,0.084632036,0.144636256,0.091697646,0.062207508,0.121187783,0.023170732,0.01084328,0.035498183,0.01097561,0.001474789,0.020476431,0.792214488,3073,3879,0.754507576,0.8299214,,,,,,,,,,,,,0.758949881,0.708052282,0.809847479,0.395,,3879,0.328639284,0.461360716,71.13324806,,,69.2984809,72.96801523,,,,,,,,,,,,,70.99705571,69.1674741,72.82663732,,,,672.0423267,257,26853,582.5924998,761.4921537,,,,,,,,,,,,,681.6915165,589.641248,773.741785,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.146,,,0.126,0.169,0.197,,,0.171,0.223,0.111,,,0.094,0.129,173.8,14,8056,,,0.179,1720,,,,0.12644324,1344.09164,10630,,,,,,,,,,,,,,,,,,,,,,,,,,0.35,,,0.333,0.366,0.174069174,921,5291,0.150239387,0.197898961,0.070044709,141,2013,0.048597901,0.091491518,0.000849798,8,9414,,,1176.75,0.884210526,100.8,114,,,,,,,,3.088383631,,,,,,,,,3.111532198,3.163232422,,,,,,,,,3.148887079,0.055615512,,,,,-6658.6445,,,,,0.668576976,35815,53569,0.556105061,0.78104889,44329,,,38673,49985,,,,,,,,,,,,,55402,45697.31915,65106.68085,,,,,,0.72722063,1269,1745,,,,,,,,0.268199147,,44329,,,3.616636528,2,553,,,,,,,,,,,,,,,,,,,,,,,,,,21.67193873,14,50034,11.19820699,37.85651557,27.98097294,,,,,,,,,,,,,19.919725,9.94385495,35.64189042,,,,29.97961386,15,50034,16.7793623,49.44681391,,,,,,,,,,,,,29.73472379,16.25625019,49.88981399,,,,25.6479674,18,70181,15.20061096,40.534846,,,,,,,,,,,,,27.25084402,16.15057723,43.0680821,,,,,,900,,,-888,0,0.571499689,4592,8035,,,0.441,,,,,0.054903993,,,,,0.780947396,2984,3821,0.744585753,0.817309039,0.115154807,424,3682,0.080246594,0.15006302,0.77990055,2980,3821,0.743062183,0.816738917,9414,,,,,0.208519227,1963,9414,,,0.224240493,2111,9414,,,0.016677289,157,9414,,,0.009454005,89,9414,,,0.001593372,15,9414,,,0.000318674,3,9414,,,0.022094753,208,9414,,,0.933078394,8784,9414,,,0,0,9033,0,0.008969476,0.494901211,4659,9414,,,1,9537,9537,, -29,095,29095,MO,Jackson County,2024,1,10326.16644,11542,1990911,10053.96691,10598.36596,0,11051.02725,7005.403308,16581.96688,1,4865.708063,3675.503581,6318.526644,,16913.27138,16173.6708,17652.87195,,7731.784515,6991.235591,8472.333439,,8416.481058,8106.994372,8725.967743,,18910.35822,12462.04522,27513.57838,,,0.179,,,0.155,0.206,3.805715162,,,3.183273491,4.484212297,5.511371376,,,4.835962099,6.266193438,0.097304236,6064,62320,0.09497733,0.099631143,0,0.080882353,0.035057713,0.126706993,0.111190818,0.094687798,0.127693837,0.15648739,0.150936117,0.162038663,0.075209849,0.069741355,0.080678343,0.071339758,0.068527049,0.074152466,0.047169811,0.01863152,0.075708103,0.111678832,0.099885101,0.123472563,0.179,,,0.146,0.214,0.386,,,0.345,0.428,7.6,0.078321831,0.115,,,0.242,,,0.208,0.279,0.917642679,658137,717204,,,0.200506187,,,0.17504455,0.229414428,0.347826087,184,529,0.326626644,0.369044997,879.4,6304,716862,,,24.95773886,3691,147890,24.15256571,25.76291201,,,,9.270704574,6.254905445,13.23450723,36.1185847,34.24193011,37.99523929,36.05366126,33.51365396,38.59366857,15.32893336,14.44373262,16.2141341,,,,38.1270903,33.70052063,42.55365998,0.133275637,79462,596223,0.123743722,0.142807552,0.000843956,605,716862,,,1184.895868,0.000939248,673,716531,,,1064.682021,0.002953117,2116,716531,,,338.6252363,3588,,,,,8763,2053,5624,3704,3180,0.49,,,,,0.5,0.3,0.44,0.37,0.5,0.5,,,,,0.48,0.42,0.35,0.39,0.53,0.917491404,447489,487731,0.912570542,0.922412267,0.679584731,137989,203049,0.663748802,0.69542066,0.028531331,10287,360551,,,0.198,31620,,0.162255319,0.233744681,0.084690554,0.027462126,0.141918982,0.108726753,0.058721812,0.158731693,0.36291712,0.333756161,0.392078079,0.26872106,0.235774062,0.301668059,0.092776858,0.079591272,0.105962444,4.671860246,128635,27534,4.489939169,4.853781322,0.3156115,52454,166198,0.296101063,0.335121936,10.75520812,771,716862,,,110.3546099,3890,3525000,106.8866685,113.8225513,97.13090257,51.71811485,166.0968015,41.48209603,27.56455156,59.95317848,165.5214417,156.6852447,174.3576386,62.57309053,54.02812989,71.11805118,102.1394027,97.90671338,106.372092,,,,9.6,,,,,0,,,,,0.147772099,43080,291530,0.140935741,0.154608457,0.128411166,0.121670217,0.135152116,0.019329057,0.016866029,0.021792085,0.007049017,0.005517946,0.008580089,0.77131454,274426,355790,0.764736026,0.777893053,0.709424084,0.610539418,0.80830875,0.760504202,0.7273654,0.793643004,0.731106908,0.709580699,0.752633118,0.759236339,0.732564079,0.785908599,0.806768761,0.802326361,0.81121116,0.32,,355790,0.308696539,0.331303461,75.53267546,,,75.30509949,75.76025144,77.35039635,72.82786102,81.87293169,85.46008178,82.65509497,88.26506858,70.04851101,69.53581279,70.56120923,80.44594349,79.21142148,81.6804655,77.10386131,76.83638793,77.37133469,67.50923832,62.20416356,72.81431309,480.5881624,11542,1990911,471.5415315,489.6347933,460.9279961,329.2937181,627.6531074,238.7994807,193.428346,291.6150379,721.3114915,697.4707418,745.1522413,356.778146,325.4436076,388.1126844,418.3131645,408.0025581,428.6237709,735.2411011,520.3003625,1009.175855,72.17885949,521,721818,65.98092153,78.37679746,,,,,,,129.4876882,113.3716344,145.603742,56.94654493,43.55959462,73.15021931,49.4030238,42.16561528,56.64043232,,,,6.699292061,423,63141,6.060859837,7.337724285,,,,,,,11.63066698,10.00237361,13.25896036,4.624277457,3.303651612,6.296953406,4.91698789,4.159810385,5.674165394,,,,8.205893323,5.142589658,12.42382111,0.119,,,0.103,0.136,0.183,,,0.161,0.207,0.11,,,0.096,0.125,494.4,2956,597843,,,0.115,81950,,,,0.078321831,52801.28869,674158,,,26.76641901,569,2125798,24.56708996,28.96574806,,,,,,,31.29711187,26.33787767,36.25634607,16.38383858,11.27788061,23.00900082,27.08762505,24.27771193,29.89753818,,,,0.388,,,0.374,0.401,0.159421194,68979,432684,0.147506301,0.171336088,0.065660131,11255,171413,0.052553748,0.078766514,0.001790572,1283,716531,,,558.4809041,0.882714286,6549.74,7420,,,0.072597865,2550,35125,0.058944431,0.086251299,2.879286793,,,,,,3.074228096,2.343230714,2.622022166,3.339395464,2.83674992,,,,,,3.227982388,2.232791266,2.603528241,3.339156533,0.224933786,,,,,-3233.728181,,,,,0.818164927,48437,59202,0.794388085,0.841941769,62509,,,60529.93617,64488.06383,55430,39342.51064,71517.48936,62887,55138.74468,70635.25532,41896,39596.42553,44195.57447,55642,53056.46809,58227.53192,76181,74241.25532,78120.74468,,,,,,0.519411641,54452,104834,,,58.16683973,,,,,0.311235182,,62509,,,8.524275655,391,45869,,,22.30639113,1094,4904424,20.98455772,23.62822453,,,,,,,70.35082196,65.47575872,75.2258852,15.68721028,12.25184138,19.78728123,6.58219624,5.672222481,7.492169999,,,,20.6778455,733,3525000,19.14605662,22.20963438,20.79432624,,,,,,,12.02237258,9.66740728,14.777537,10.08828604,6.854500911,14.31951676,25.96852084,23.79821974,28.13882194,,,,34.35460993,1211,3525000,32.41966316,36.2895567,,,,,,,77.48073419,71.43519391,83.52627447,21.56645353,16.84357914,27.20314661,22.23598083,20.26106823,24.21089344,,,,14.41555624,707,4904424,13.35293677,15.47817571,,,,15.15266308,8.284101909,25.42359391,23.56752536,20.74587851,26.38917221,8.616918325,6.127471286,11.77961102,12.11648064,10.88186521,13.35109608,,,,15.84758943,,64300,,,270,749,0.381149943,196418,515330,,,0.626,,,,,161.944566,,,,,0.58534064,174963,298908,0.577666797,0.593014483,0.1408721,40887,290242,0.133133994,0.148610206,0.880909845,263311,298908,0.875318358,0.886501332,716531,,,,,0.228880537,164000,716531,,,0.161299372,115576,716531,,,0.227268604,162845,716531,,,0.006524491,4675,716531,,,0.020308961,14552,716531,,,0.003149899,2257,716531,,,0.100782799,72214,716531,,,0.614394911,440233,716531,,,0.01607625,10783,670741,0.014367503,0.017784997,0.513507441,367944,716531,,,0.042689388,30617,717204,, -29,097,29097,MO,Jasper County,2024,1,10145.8517,2154,341188,9523.850807,10767.85259,0,5899.302942,3048.255915,10304.89503,1,,,,2,15244.92104,10285.68421,21763.07271,,6776.985732,5119.262192,8800.479674,,10659.89709,9951.070403,11368.72378,,,,,2,,0.196,,,0.165,0.229,4.457497991,,,3.634569006,5.379436381,6.154098897,,,5.257790294,7.16742366,0.077013468,852,11063,0.07204525,0.081981686,0,,,,0.116788321,0.063007442,0.1705692,0.182352941,0.124307123,0.240398759,0.075297226,0.062005429,0.088589023,0.073475646,0.067921927,0.079029364,0.152941177,0.076422825,0.229459528,0.079044118,0.056371022,0.101717213,0.218,,,0.175,0.261,0.401,,,0.348,0.456,6.9,0.090770469,0.14,,,0.297,,,0.248,0.345,0.713744593,87620,122761,,,0.157037193,,,0.129804554,0.187292757,0.137931035,12,87,0.088982055,0.195329129,583.8,719,123155,,,33.31188791,932,27978,31.17320026,35.45057556,,,,,,,26.44628099,15.11633463,42.94710347,47.85827604,40.88601186,54.83054023,30.33545806,28.00692273,32.66399338,,,,55.64648118,43.21167001,70.54517443,0.153216582,15538,101412,0.13772722,0.168705944,0.000820105,101,123155,,,1219.356436,0.00066895,83,124075,,,1494.879518,0.002635503,327,124075,,,379.4342508,3208,,,,,7621,1912,554,1689,3158,0.48,,,,,0.44,0.48,0.4,0.43,0.48,0.48,,,,,0.43,0.48,0.39,0.28,0.49,0.882783883,71336,80808,0.871533033,0.894034732,0.584462287,18853,32257,0.548700191,0.620224384,0.023265637,1322,56822,,,0.248,7262,,0.199148936,0.296851064,0.04375,0,0.17126957,0.053742802,0,0.189414189,0.33481153,0.099524379,0.570098681,0.434439179,0.356166023,0.512712334,0.232962384,0.19099422,0.274930548,4.347956381,104464,24026,3.979344758,4.716568003,0.215138783,6503,30227,0.182492414,0.247785153,11.53018554,142,123155,,,76.27878165,463,606984,69.33062944,83.22693386,,,,,,,147.0227885,87.1350223,232.3593912,27.33040508,14.94178678,45.85577574,81.82757451,73.95472951,89.70041951,,,,9,,,,,1,,,,,0.125807146,5845,46460,0.108951077,0.142663215,0.09845181,0.084616928,0.112286692,0.024860095,0.01570135,0.034018839,0.011730521,0.006347547,0.017113495,0.800184064,45212,56502,0.78719595,0.813172179,0.892290249,0.782512209,1,0.784226191,0.63342939,0.935022991,0.780701754,0.674489413,0.886914096,0.710056596,0.630061219,0.790051972,0.806305494,0.796231369,0.816379618,0.158,,56502,0.138567397,0.177432603,74.56508115,,,74.06077189,75.06939042,85.84142247,74.2159896,97.46685534,,,,70.04708324,65.5903974,74.50376908,90.68157978,75.71096468,105.6521949,74.06086492,73.51423727,74.60749256,,,,519.753971,2154,341188,497.2079449,542.2999971,359.347313,219.4986744,554.9827801,,,,810.7258239,599.7794276,1071.822534,327.1315739,246.4402707,425.8067089,538.7721309,514.1609061,563.3833556,,,,64.72540623,86,132869,51.77197032,79.93535014,,,,,,,,,,58.02912007,28.96792766,103.8301251,67.07109536,51.97917765,85.17792022,,,,5.120373697,57,11132,3.878121035,6.634038035,,,,,,,,,,,,,5.571677307,4.108115011,7.387235773,,,,,,,0.137,,,0.118,0.158,0.19,,,0.166,0.216,0.109,,,0.093,0.125,181,184,101685,,,0.14,17140,,,,0.090770469,10656.81615,117404,,,16.9338297,62,366131,12.98307013,21.70840543,,,,,,,,,,,,,19.02100838,14.44344913,24.58906415,,,,0.356,,,0.34,0.371,0.189309825,13572,71692,0.167863017,0.210756634,0.0683736,2131,31167,0.05050126,0.086245941,0.001861777,231,124075,,,537.1212121,0.859282438,1311.265,1526,,,0.036072144,234,6487,0.017079326,0.055064963,3.051503695,,,,,,2.737950516,2.553066438,2.637221667,3.149208024,3.029478597,,,,,,3.079505935,2.532247469,2.764232374,3.104021937,0.109930654,,,,,-3059.220157,,,,,0.737985375,37745,51146,0.689704258,0.786266492,53548,,,51520.08511,55575.91489,43469,27961.76596,58976.23404,52159,9270.148936,95047.85106,42500,27338.29787,57661.70213,43388,33281.78723,53494.21277,57558,54772.29787,60343.70213,,,,,,0.509350625,10840,21282,,,48.62731328,,,,,0.294464779,,53548,,,8.026673253,65,8098,,,4.97223245,42,844691,3.583547798,6.721013812,,,,,,,,,,,,,4.38038717,2.976260559,6.217609934,,,,20.73672565,127,606984,17.06553653,24.40791477,20.92312153,,,,,,,,,,,,,22.74347634,18.51716974,26.96978294,,,,17.29864379,105,606984,13.98982123,20.60746634,,,,,,,,,,,,,18.14008881,14.62347185,22.2472086,,,,14.67992438,124,844691,12.09606397,17.26378478,,,,,,,,,,,,,15.26070369,12.38251837,18.13888901,,,,13.27731092,,11900,,,72,86,0.599747967,52352,87290,,,0.653,,,,,71.00625027,,,,,0.632126535,30014,47481,0.612812285,0.651440785,0.11913055,5404,45362,0.104102798,0.134158301,0.873465176,41473,47481,0.858846006,0.888084346,124075,,,,,0.242869232,30134,124075,,,0.163497884,20286,124075,,,0.021027604,2609,124075,,,0.019504332,2420,124075,,,0.012774532,1585,124075,,,0.006310699,783,124075,,,0.091476929,11350,124075,,,0.824880113,102347,124075,,,0.012402669,1424,114814,0.008595519,0.016209819,0.507144872,62924,124075,,,0.234667362,28808,122761,, -29,099,29099,MO,Jefferson County,2024,1,9663.111776,3770,639570,9192.546017,10133.67753,0,,,,2,,,,2,13602.36136,8964.041849,19790.72163,,,,,2,9857.438714,9367.33671,10347.54072,,,,,2,,0.158,,,0.133,0.19,3.892158929,,,3.122729747,4.773890527,5.29991612,,,4.366417784,6.287317458,0.079503464,1377,17320,0.075474567,0.083532362,0,,,,0.153846154,0.097227211,0.210465097,0.133333333,0.090325668,0.176340999,0.058823529,0.035991892,0.081655167,0.077095808,0.072966704,0.081224913,,,,0.123324397,0.089955211,0.156693583,0.195,,,0.154,0.237,0.373,,,0.315,0.434,7.9,0.083489515,0.1,,,0.246,,,0.201,0.293,0.727034167,164847,226739,,,0.176768237,,,0.146036055,0.212913569,0.31147541,57,183,0.27419788,0.349139488,252,574,227771,,,15.57413672,732,47001,14.44588887,16.70238457,,,,,,,15.64945227,7.504520651,28.77989991,19.10408432,12.7943051,27.4366518,14.9845747,13.8290367,16.14011271,,,,29.55271566,20.80783911,40.73452567,0.097118106,18565,191159,0.086394702,0.10784151,0.000254642,58,227771,,,3927.086207,0.00042296,97,229336,,,2364.28866,0.001042139,239,229336,,,959.5648536,3238,,,,,,,,,3247,0.47,,,,,,0.48,0.64,,0.47,0.51,,,,,,0.55,0.46,0.43,0.51,0.911836078,143916,157831,0.903146121,0.920526035,0.685829013,40479,59022,0.654363467,0.717294559,0.023548305,2786,118310,,,0.103,5150,,0.069638298,0.136361702,,,,0.113752122,0,0.331339069,0.316085489,0.103744969,0.528426009,0.176918571,0.084452812,0.269384329,0.081942337,0.06808939,0.095795284,3.709397924,134002,36125,3.518695774,3.900100073,0.227234883,11736,51647,0.195530002,0.258939764,7.463636723,170,227771,,,128.7745488,1452,1127552,122.150816,135.3982815,,,,,,,140.4056162,83.21326662,221.9014061,,,,133.1914384,126.2466135,140.1362633,,,,6.6,,,,,1,,,,,0.096728642,8220,84980,0.085922021,0.107535263,0.080697799,0.070635936,0.090759662,0.013650271,0.010060484,0.017240058,0.006766298,0.004082556,0.00945004,0.827281588,94210,113879,0.813701354,0.840861823,,,,,,,,,,0.630588235,0.485821142,0.775355329,0.73398683,0.715629794,0.752343867,0.54,,113879,0.515206713,0.564793288,75.25038493,,,74.8754961,75.62527376,,,,89.2597637,74.83165061,103.6878768,71.56387031,67.56424289,75.56349774,97.33175996,82.96802157,111.6954984,75.01080511,74.62728763,75.39432258,,,,454.6560913,3770,639570,439.5218673,469.7903153,,,,,,,584.8422609,415.8800194,799.4986234,,,,463.5607848,447.8769479,479.2446217,,,,52.31702343,118,225548,42.87732555,61.7567213,,,,,,,,,,,,,50.25983849,40.55343037,59.9662466,,,,5.346985211,94,17580,4.320908328,6.54335573,,,,,,,,,,,,,4.95049505,3.931407652,6.153013335,,,,,,,0.115,,,0.098,0.136,0.173,,,0.149,0.198,0.094,,,0.08,0.11,100.6,193,191842,,,0.1,22670,,,,0.083489515,18261.91208,218733,,,49.30857601,335,679395,44.02830603,54.58884599,,,,,,,,,,,,,51.25142822,45.69637573,56.80648072,,,,0.345,,,0.327,0.361,0.116220832,16197,139364,0.103114449,0.129327215,0.04827218,2622,54317,0.036357286,0.060187074,0.000466564,107,229336,,,2143.327103,0.896462412,2289.565,2554,,,0.048174912,520,10794,0.029479499,0.066870325,3.243907261,,,,,,,2.887087491,3.156547965,3.261782272,3.221685058,,,,,,,2.718091563,3.108006069,3.241157973,0.042849149,,,,,342.0593727,,,,,0.745040014,46828,62853,0.705397222,0.784682806,78297,,,73965.93617,82628.06383,106607,58413.6383,154800.3617,98693,44239.55319,153146.4468,53423,37323.59575,69522.40426,60151,40892.95745,79409.04255,78013,75447.7234,80578.2766,,,,,,0.31126325,10366,33303,,,64.98222027,,,,,0.239281199,,78297,,,6.335394245,83,13101,,,4.251533408,67,1575902,3.294879994,5.399297141,,,,,,,,,,,,,4.039791951,3.082786847,5.200013022,,,,25.27829426,286,1127552,22.27344536,28.28314316,25.36468385,,,,,,,,,,,,,26.47154765,23.29995615,29.64313915,,,,19.06785674,215,1127552,16.51903935,21.61667413,,,,,,,,,,,,,19.98342884,17.29339248,22.67346519,,,,17.83105802,281,1575902,15.74618301,19.91593304,,,,,,,,,,,,,18.38105338,16.20060834,20.56149841,,,,22.80373832,,21400,,,102,386,0.680793466,116688,171400,,,0.739,,,,,52.88079732,,,,,0.807113527,69779,86455,0.792777792,0.821449262,0.083163411,7015,84352,0.073016621,0.0933102,0.902342259,78012,86455,0.89293069,0.911753829,229336,,,,,0.223671818,51296,229336,,,0.167889036,38503,229336,,,0.012575435,2884,229336,,,0.0033706,773,229336,,,0.009065302,2079,229336,,,0.000392437,90,229336,,,0.024113092,5530,229336,,,0.934035651,214208,229336,,,0.003031152,649,214110,,,0.498495657,114323,229336,,,0.347716979,78841,226739,, -29,101,29101,MO,Johnson County,2024,1,7700.388858,707,153665,6876.707971,8524.069744,0,,,,2,,,,2,9950.070219,5439.795978,16694.52711,1,,,,2,7932.37534,7022.042923,8842.707757,,,,,2,,0.166,,,0.14,0.194,3.81835222,,,3.061440849,4.642141973,5.116595786,,,4.21034307,6.062073266,0.070829069,346,4885,0.063634954,0.078023183,0,,,,,,,0.117647059,0.069213842,0.166080276,0.072022161,0.045353307,0.098691014,0.067779716,0.060002384,0.075557048,,,,0.074257426,0.038100171,0.110414681,0.196,,,0.156,0.236,0.356,,,0.298,0.42,7.3,0.115536058,0.11,,,0.257,,,0.215,0.304,0.639790421,34557,54013,,,0.196143401,,,0.160376953,0.235337484,0.11627907,5,43,0.052169737,0.201453513,559.6,303,54150,,,13.48909255,209,15494,11.66029487,15.31789024,,,,,,,,,,25.99009901,16.08828092,39.72862715,12.97994715,11.01128695,14.94860734,,,,17.33102253,8.310898953,31.87236749,0.109664712,4844,44171,0.09417535,0.125154074,0.000350877,19,54150,,,2850,0.000515009,28,54368,,,1941.714286,0.002041642,111,54368,,,489.8018018,2702,,,,,,,,,2752,0.39,,,,,,0.39,0.35,,0.4,0.35,,,,,,0.3,0.24,0.33,0.36,0.923645242,29129,31537,0.909679913,0.937610571,0.647356457,8828,13637,0.595505725,0.699207189,0.02645317,603,22795,,,0.122,1423,,0.075531915,0.168468085,,,,0.392670157,0.050546601,0.734793713,0.189393939,0,0.533728377,0.109134045,0.023752361,0.194515729,0.084676989,0.059751369,0.109602609,3.523240614,115897,32895,3.250100449,3.79638078,0.182516647,2138,11714,0.144724032,0.220309261,9.602954755,52,54150,,,61.1156382,165,269980,51.79026007,70.44101632,,,,,,,,,,,,,65.55327397,55.09736041,76.00918754,,,,7.2,,,,,0,,,,,0.127947817,2550,19930,0.107054987,0.148840647,0.095153963,0.076619627,0.113688299,0.02082288,0.011109847,0.030535913,0.015805319,0.005509188,0.026101449,0.80664392,21514,26671,0.792727755,0.820560086,,,,,,,0.774463007,0.595927106,0.952998909,0.75129199,0.660755901,0.841828079,0.802816188,0.774665509,0.830966867,0.306,,26671,0.26742812,0.34457188,76.355825,,,75.61595967,77.09569032,,,,,,,75.01519417,70.76469497,79.26569337,80.77188467,73.37085295,88.17291638,76.0367846,75.2491983,76.8243709,,,,435.7080556,707,153665,402.6502643,468.7658468,,,,,,,521.7711307,330.7581388,782.9128833,,,,445.019449,409.8667706,480.1721274,,,,44.02416046,25,56787,28.49011543,64.98834539,,,,,,,,,,,,,49.32235375,31.26614136,74.00774767,,,,4.297114794,21,4887,2.659981785,6.568596426,,,,,,,,,,,,,,,,,,,,,,0.118,,,0.101,0.136,0.172,,,0.148,0.198,0.096,,,0.081,0.113,116.3,53,45586,,,0.11,5910,,,,0.115536058,6076.618985,52595,,,11.69727454,19,162431,7.042523388,18.26674315,,,,,,,,,,,,,13.01650203,7.714404047,20.57168496,,,,0.324,,,0.307,0.341,0.129088785,4199,32528,0.110024955,0.148152615,0.05811755,707,12165,0.041436699,0.074798401,0.000625368,34,54368,,,1599.058824,0.897729008,470.41,524,,,0.045648357,182,3987,0.019075057,0.072221657,3.1459044,,,,,,,2.643273615,3.064035908,3.183253442,3.076071705,,,,,,,2.560689938,3.060716192,3.126128123,0.049610659,,,,,-1423.140857,,,,,0.856175588,41349,48295,0.787639344,0.924711831,60086,,,55472.55319,64699.44681,99750,37377.91489,162122.0851,56061,21977.25532,90144.74468,47174,12694.68085,81653.31915,54211,32977.46809,75444.53192,64504,60051.40426,68956.59575,,,,,,0.33579288,2594,7725,,,49.67087919,,,,,0.272592617,,60086,,,7.789095267,26,3338,,,3.175670133,12,377873,1.640915098,5.547256631,,,,,,,,,,,,,,,,,,,17.81662082,51,269980,13.09098283,23.69232869,18.89028817,,,,,,,,,,,,,19.72354845,14.38649158,26.39165963,,,,15.5567079,42,269980,11.21190671,21.02814978,,,,,,,,,,,,,15.19446748,10.58350332,21.13182606,,,,15.87835066,60,377873,12.11685433,20.43858476,,,,,,,,,,,,,16.72401352,12.56359367,21.82120989,,,,28.8372093,,4300,,,50,74,0.557046495,23123,41510,,,0.603,,,,,34.47037532,,,,,0.631397662,13015,20613,0.609819698,0.652975626,0.095586418,1934,20233,0.078038042,0.113134795,0.893222724,18412,20613,0.872326245,0.914119202,54368,,,,,0.219081077,11911,54368,,,0.130701884,7106,54368,,,0.042764126,2325,54368,,,0.007504414,408,54368,,,0.017620659,958,54368,,,0.003788994,206,54368,,,0.052622866,2861,54368,,,0.851640671,46302,54368,,,0.004975419,252,50649,0.001732211,0.008218627,0.485267069,26383,54368,,,0.527687779,28502,54013,, -29,103,29103,MO,Knox County,2024,1,11192.77266,66,10472,7311.49071,16400.00527,0,,,,2,,,,2,,,,2,,,,2,11714.31492,7652.179428,17164.18551,,,,,2,,0.221,,,0.187,0.257,4.581732287,,,3.690845726,5.532197516,5.305093749,,,4.290406353,6.426892652,0.050139276,18,359,0.027564272,0.07271428,1,,,,,,,,,,,,,0.051873199,0.02853883,0.075207568,,,,,,,0.255,,,0.21,0.306,0.414,,,0.338,0.494,7.7,0.078466557,0.111,,,0.315,,,0.264,0.376,0.104967949,393,3744,,,0.144064211,,,0.113732778,0.177839074,0,0,1,0,0.662081041,315.1,12,3808,,,16.94915254,14,826,9.266259414,28.43779797,,,,,,,,,,,,,16.29072682,8.674125929,27.857639,,,,,,,0.1714869,504,2939,0.147657113,0.195316688,,0,3808,,,,0.000529661,2,3776,,,1888,0.000529661,2,3776,,,1888,3260,,,,,,,,,3265,0.44,,,,,,,,,0.44,0.37,,,,,,,,,0.37,0.851881505,2128,2498,0.806853191,0.896909819,0.539597315,402,745,0.386244131,0.6929505,0.026050918,44,1689,,,0.266,235,,0.157574468,0.374425532,,,,,,,,,,,,,0.117139334,0.050283723,0.183994945,5.553273355,98143,17673,4.098973672,7.007573038,0.144456887,129,893,0.045660755,0.243253019,13.1302521,5,3808,,,91.69171209,18,19631,54.3423197,144.9124358,,,,,,,,,,,,,90.3534414,52.63420925,144.6646124,,,,7.5,,,,,0,,,,,0.096428571,135,1400,0.051330223,0.14152692,0.079504012,0.034042975,0.124965048,0.007142857,0,0.02846328,0.017142857,0,0.0373288,0.710429448,1158,1630,0.665938951,0.754919944,,,,,,,,,,,,,0.687453043,0.596293894,0.778612192,0.347,,1630,0.248473123,0.445526877,75.67334095,,,72.48355824,78.86312367,,,,,,,,,,,,,75.12649532,71.83831696,78.41467367,,,,472.9602173,66,10472,355.3022716,617.1104896,,,,,,,,,,,,,491.3972412,369.1527315,641.1668066,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.149,,,0.128,0.174,0.198,,,0.17,0.226,0.112,,,0.095,0.131,158.1,5,3163,,,0.111,420,,,,0.078466557,324.1453449,4131,,,,,,,,,,,,,,,,,,,,,,,,,,0.344,,,0.325,0.362,0.200389105,412,2056,0.169410382,0.231367829,0.102702703,95,925,0.07053249,0.134872916,0.000264831,1,3776,,,3776,,,,,,,,,,,2.792380943,,,,,,,,,2.847218343,2.964733002,,,,,,,,,2.989927641,,,,,,-4909.146,,,,,0.730948716,29917,40929,0.506891597,0.955005836,49552,,,42753.3617,56350.6383,,,,,,,,,,,,,50000,39130.04255,60869.95745,,,,,,0.575555556,259,450,,,,,,,,0.231595092,,49552,,,16.39344262,4,244,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.5,,400,,,0,5,0.621105528,1854,2985,,,0.478,,,,,9.574968448,,,,,0.850086655,981,1154,0.840161152,0.860012158,0.111009174,121,1090,0.048572325,0.173446024,0.619584056,715,1154,0.573174424,0.665993687,3776,,,,,0.240730932,909,3776,,,0.217690678,822,3776,,,0.010063559,38,3776,,,0.005826271,22,3776,,,0.005561441,21,3776,,,0.000264831,1,3776,,,0.019067797,72,3776,,,0.943061441,3561,3776,,,0.001143838,4,3497,0,0.016570471,0.498675848,1883,3776,,,1,3744,3744,, -29,105,29105,MO,Laclede County,2024,1,11526.03395,753,99579,10249.80573,12802.26217,0,,,,2,,,,2,,,,2,,,,2,11858.47466,10513.90706,13203.04226,,,,,2,,0.207,,,0.175,0.241,4.334074887,,,3.51825417,5.225497662,5.291698266,,,4.393221664,6.299330988,0.081218274,272,3349,0.071966361,0.090470187,0,,,,,,,,,,0.109243698,0.053195682,0.165291713,0.079258549,0.069793013,0.088724085,,,,,,,0.233,,,0.186,0.278,0.386,,,0.326,0.446,6.1,0.169331088,0.139,,,0.294,,,0.243,0.343,0.615111407,22168,36039,,,0.153722388,,,0.124854932,0.186747599,0.125,5,40,0.056811768,0.214221075,354.2,128,36133,,,38.585209,300,7775,34.21888157,42.95153644,,,,,,,,,,51.05105105,29.73911853,81.73767813,39.07915305,34.46029232,43.69801378,,,,,,,0.12630861,3704,29325,0.109627759,0.142989462,0.000553511,20,36133,,,1806.65,0.00033046,12,36313,,,3026.083333,0.001652301,60,36313,,,605.2166667,2100,,,,,,,,,2094,0.41,,,,,,,,,0.42,0.33,,,,,,,,,0.33,0.873188555,21270,24359,0.852911862,0.893465247,0.565110565,4830,8547,0.482670748,0.647550383,0.02525742,417,16510,,,0.201,1754,,0.128319149,0.273680851,,,,,,,,,,0.315521629,0.158656285,0.472386972,0.22578912,0.17209091,0.279487331,3.848281851,93063,24183,3.236975259,4.459588443,0.235439345,2098,8911,0.160110762,0.310767927,11.62372347,42,36133,,,107.877277,193,178907,92.65753144,123.0970226,,,,,,,,,,,,,111.6553811,95.60892035,127.7018418,,,,7.3,,,,,0,,,,,0.094346167,1360,14415,0.071903461,0.116788873,0.073218673,0.052065895,0.094371452,0.015608741,0.007174775,0.024042707,0.008671523,0.001497529,0.015845516,0.800635992,12337,15409,0.766330545,0.834941439,,,,,,,,,,,,,0.811716621,0.776482461,0.846950782,0.251,,15409,0.198385254,0.303614746,72.81447839,,,71.88509917,73.74385761,,,,,,,,,,,,,72.44672687,71.48490628,73.40854747,,,,567.5646605,753,99579,525.0601434,610.0691776,,,,,,,,,,,,,583.5564759,539.1879255,627.9250263,,,,72.49190939,28,38625,48.17034733,104.7709927,,,,,,,,,,,,,78.17250065,51.51617051,113.7368842,,,,6.235154394,21,3368,3.859658843,9.531095824,,,,,,,,,,,,,6.647673314,4.115014557,10.16167481,,,,,,,0.139,,,0.119,0.159,0.19,,,0.165,0.216,0.107,,,0.092,0.124,36.9,11,29802,,,0.139,4970,,,,0.169331088,6023.276113,35571,,,27.84196898,30,107751,18.78485956,39.74614193,,,,,,,,,,,,,29.96823367,20.21944141,42.78151699,,,,0.346,,,0.33,0.362,0.154635147,3166,20474,0.133188339,0.176081956,0.061933535,574,9268,0.042869705,0.080997365,0.000963842,35,36313,,,1037.514286,0.941465969,359.64,382,,,0.133963313,241,1799,0.054833789,0.213092837,3.015699914,,,,,,,,2.753074919,3.017306942,2.786971257,,,,,,,,2.462921942,2.790381196,0.026374993,,,,,-2909.234667,,,,,0.784056684,36185,46151,0.689437887,0.87867548,53224,,,46697.02128,59750.97872,35500,15297.10638,55702.89362,105395,68639.93617,142150.0638,63628,43764.68085,83491.31915,49231,36405.80851,62056.19149,48759,46346.23404,51171.76596,,,,,,0.598806479,3512,5865,,,77.48578948,,,,,0.266909665,,53224,,,6.055712556,15,2477,,,5.602913515,14,249870,3.063164956,9.400736832,,,,,,,,,,,,,5.577938823,2.970017502,9.538445265,,,,28.65704703,47,178907,20.90264675,38.3453836,26.27063223,,,,,,,,,,,,,27.58448029,19.7950993,37.42146225,,,,22.35798488,40,178907,15.97287219,30.44522962,,,,,,,,,,,,,22.81131441,16.14264374,31.31031127,,,,21.21102974,53,249870,15.8885168,27.74454914,,,,,,,,,,,,,22.31175529,16.66348604,29.25889863,,,,19.71428571,,3500,,,12,57,0.627775701,16793,26750,,,0.62,,,,,33.85985004,,,,,0.701359359,10061,14345,0.667200712,0.735518005,0.080383053,1108,13784,0.055950522,0.104815584,0.755663994,10840,14345,0.717625783,0.793702206,36313,,,,,0.248037893,9007,36313,,,0.184396773,6696,36313,,,0.010354419,376,36313,,,0.007710737,280,36313,,,0.007435354,270,36313,,,0.000991381,36,36313,,,0.029631262,1076,36313,,,0.922754936,33508,36313,,,0.00413346,139,33628,0.000059503,0.008207418,0.500426844,18172,36313,,,0.591831072,21329,36039,, -29,107,29107,MO,Lafayette County,2024,1,9778.410548,583,89960,8523.449998,11033.3711,0,,,,2,,,,2,,,,2,,,,2,9796.699423,8471.916306,11121.48254,,,,,2,,0.17,,,0.144,0.201,4.034083007,,,3.255471034,4.916804575,5.14916363,,,4.260732887,6.178030787,0.087610961,227,2591,0.076724377,0.098497545,0,,,,,,,,,,,,,0.0852979,0.07396326,0.096632539,,,,0.133333333,0.06310211,0.203564556,0.211,,,0.167,0.258,0.403,,,0.339,0.472,7.7,0.068139134,0.114,,,0.26,,,0.215,0.309,0.345167354,11385,32984,,,0.187724567,,,0.152364224,0.22630516,0.363636364,12,33,0.27296452,0.452301555,292.5,96,32817,,,23.94324564,162,6766,20.25617392,27.63031736,,,,,,,,,,34.12969283,16.36651432,62.76572028,23.34172964,19.46128309,27.22217619,,,,37.67123288,18.80534372,67.40424148,0.121131372,3182,26269,0.10564201,0.136620733,0.000243776,8,32817,,,4102.125,0.000333728,11,32961,,,2996.454546,0.001486605,49,32961,,,672.6734694,3591,,,,,,,,,3610,0.46,,,,,,,,,0.46,0.39,,,,,,,0.38,,0.39,0.917009182,20972,22870,0.897474106,0.936544259,0.568076328,4406,7756,0.496140708,0.640011948,0.026246719,440,16764,,,0.138,1009,,0.086765957,0.189234043,,,,0.30952381,0.015495286,0.603552333,,,,0.181818182,0.001755326,0.361881038,0.094479666,0.054078329,0.134881003,3.66826361,128635,35067,2.979407668,4.357119551,0.18061089,1360,7530,0.117054308,0.244167472,14.32184539,47,32817,,,98.91921597,162,163770,83.68643388,114.1519981,,,,,,,,,,,,,101.9823231,85.82255004,118.1420961,,,,7.2,,,,,0,,,,,0.103855232,1320,12710,0.078691708,0.129018757,0.083748517,0.060605885,0.106891149,0.016522423,0.006259392,0.026785455,0.005900866,0.000860122,0.010941609,0.807291667,12400,15360,0.776423289,0.838160045,,,,,,,,,,,,,0.763112683,0.718790269,0.807435097,0.437,,15360,0.390776969,0.483223031,75.26757523,,,74.28041408,76.25473637,,,,,,,,,,,,,75.1764252,74.15016283,76.20268756,,,,482.5911418,583,89960,441.327458,523.8548255,,,,,,,,,,,,,481.3696871,438.6447519,524.0946223,,,,60.34820917,20,33141,36.86225396,93.20291453,,,,,,,,,,,,,62.59780908,37.0994289,98.93152588,,,,8.193523215,21,2563,5.071920009,12.5246706,,,,,,,,,,,,,8.594757198,5.249900982,13.27390542,,,,,,,0.123,,,0.105,0.143,0.172,,,0.148,0.199,0.101,,,0.087,0.118,47.2,13,27537,,,0.114,3720,,,,0.068139134,2274.552419,33381,,,15.2236352,15,98531,8.520553057,25.10907113,,,,,,,,,,,,,16.66963016,9.329865457,27.49401991,,,,0.335,,,0.317,0.352,0.138696624,2605,18782,0.118441305,0.158951944,0.07829408,615,7855,0.055655782,0.100932378,0.000576439,19,32961,,,1734.789474,0.914032698,335.45,367,,,,,,,,2.914471055,,,,,,,,,2.939932806,2.850254141,,,,,,,,,2.867879318,0.0456818,,,,,-769.9432233,,,,,0.725360118,42752,58939,0.636159852,0.814560384,70457,,,64151.6383,76762.3617,,,,,,,66607,23012.78723,110201.2128,,,,78488,70331.06383,86644.93617,,,,,,0.391660172,2010,5132,,,54.82726165,,,,,0.212583562,,70457,,,10.24811219,19,1854,,,,,,,,,,,,,,,,,,,,,,,,,,22.20463738,35,163770,15.28465068,31.18356648,21.37143555,,,,,,,,,,,,,24.30029201,16.72720289,34.12664473,,,,16.486536,27,163770,10.86473111,23.9870443,,,,,,,,,,,,,17.33032941,11.32074655,25.39294794,,,,19.20650926,44,229089,13.95547903,25.78384221,,,,,,,,,,,,,19.98734135,14.40511758,27.01707908,,,,28.38709677,,3100,,,12,76,0.679346744,17055,25105,,,0.662,,,,,11.76933087,,,,,0.755774764,9194,12165,0.731298235,0.780251292,0.075706595,900,11888,0.055524062,0.095889128,0.827620222,10068,12165,0.801204309,0.854036135,32961,,,,,0.228391129,7528,32961,,,0.194108189,6398,32961,,,0.02041807,673,32961,,,0.006704894,221,32961,,,0.005794727,191,32961,,,0.001456267,48,32961,,,0.035587513,1173,32961,,,0.909711477,29985,32961,,,0.006350537,197,31021,0.000661594,0.012039479,0.499165681,16453,32961,,,0.693154257,22863,32984,, -29,109,29109,MO,Lawrence County,2024,1,9852.464917,708,105387,8737.409564,10967.52027,0,,,,2,,,,2,,,,2,,,,2,10300.84709,9080.496654,11521.19752,,,,,2,,0.213,,,0.182,0.248,4.621078761,,,3.717771113,5.598113472,5.524307154,,,4.447014733,6.65298253,0.072135785,255,3535,0.063607161,0.080664409,0,,,,,,,,,,0.087301587,0.058844864,0.115758311,0.067948293,0.058968265,0.076928321,,,,,,,0.238,,,0.196,0.283,0.404,,,0.326,0.484,7.3,0.059772949,0.139,,,0.307,,,0.258,0.361,0.494144891,18778,38001,,,0.156109346,,,0.124706032,0.192399777,0.189655172,11,58,0.124680563,0.262502607,198.3,76,38321,,,30.62386157,269,8784,26.96420877,34.28351436,,,,,,,,,,38.87269193,27.77122103,52.93357334,30.43597477,26.43222618,34.43972337,,,,,,,0.158529138,4932,31111,0.138273819,0.178784457,0.00039143,15,38321,,,2554.733333,0.000387767,15,38683,,,2578.866667,0.001215004,47,38683,,,823.0425532,2974,,,,,,,,,2912,0.39,,,,,,,,,0.39,0.36,,,,,,,,0.35,0.36,0.858283512,21821,25424,0.834680054,0.88188697,0.486891386,4420,9078,0.422482602,0.55130017,0.024388814,416,17057,,,0.177,1697,,0.106702128,0.247297872,,,,,,,,,,0.509090909,0.405442639,0.61273918,0.137456586,0.088090092,0.186823079,4.338366679,103431,23841,3.829866454,4.846866904,0.162010008,1554,9592,0.113584639,0.210435378,13.83053678,53,38321,,,86.09713844,165,191644,72.9599383,99.23433859,,,,,,,,,,,,,92.04245753,77.59864051,106.4862746,,,,8.2,,,,,1,,,,,0.120538721,1790,14850,0.096280032,0.14479741,0.091623932,0.069457652,0.113790211,0.033333333,0.019721815,0.046944851,0.003973064,0.000115472,0.007830656,0.761526718,12470,16375,0.730586796,0.792466639,,,,,,,,,,,,,0.71494491,0.658428155,0.771461665,0.364,,16375,0.314170667,0.413829333,74.28952883,,,73.43535462,75.14370305,,,,,,,,,,,,,73.81290854,72.91404917,74.7117679,,,,514.5802093,708,105387,474.945141,554.2152776,,,,,,,,,,,,,536.6014665,494.0180139,579.1849191,,,,61.22400923,26,42467,39.9935555,89.70735885,,,,,,,,,,,,,63.95534754,40.08047581,96.82916476,,,,7.114399545,25,3514,4.604064271,10.50225717,,,,,,,,,,,,,,,,,,,,,,0.145,,,0.126,0.167,0.193,,,0.167,0.221,0.112,,,0.096,0.129,57.3,18,31438,,,0.139,5290,,,,0.059772949,2309.268115,38634,,,19.15525333,22,114851,12.00449528,29.00128374,,,,,,,,,,,,,20.76945901,12.85662248,31.74832434,,,,0.343,,,0.326,0.359,0.195809383,4224,21572,0.169596617,0.222022149,0.07631684,765,10024,0.053678542,0.098955138,0.000775535,30,38683,,,1289.433333,0.915577889,364.4,398,,,0.108786611,234,2151,0.040245453,0.177327769,2.849203744,,,,,,,,2.680136202,2.913587841,2.775593011,,,,,,,,2.620412972,2.836741195,0.144433827,,,,,-4603.661833,,,,,0.755209868,35877,47506,0.659863883,0.850555853,58031,,,52297.55319,63764.44681,51250,6216.468085,96283.53192,,,,,,,45944,29658.7234,62229.2766,53802,48437.91489,59166.08511,,,,,,0.561537333,3828,6817,,,,,,,,0.242318761,,58031,,,5.430566331,14,2578,,,,,,,,,,,,,,,,,,,,,,,,,,19.60988429,37,191644,13.65900292,27.27260199,19.30663105,,,,,,,,,,,,,20.51878086,14.03483092,28.96639634,,,,15.13222433,29,191644,10.13428813,21.73239832,,,,,,,,,,,,,16.5204411,10.97771313,23.87663711,,,,24.60804236,66,268205,19.03185818,31.30746349,,,,,,,,,,,,,25.62196264,19.59877122,32.9124829,,,,35.38461539,,3900,,,11,127,0.644644464,17905,27775,,,0.624,,,,,23.57498086,,,,,0.708045663,10358,14629,0.672206725,0.743884601,0.097633767,1374,14073,0.074195343,0.121072191,0.833618156,12195,14629,0.811948886,0.855287426,38683,,,,,0.254737223,9854,38683,,,0.179432826,6941,38683,,,0.005661402,219,38683,,,0.013287491,514,38683,,,0.008013856,310,38683,,,0.00157692,61,38683,,,0.085825815,3320,38683,,,0.871442236,33710,38683,,,0.012349828,441,35709,0.005582594,0.019117062,0.496652276,19212,38683,,,0.715296966,27182,38001,, -29,111,29111,MO,Lewis County,2024,1,9317.856522,162,26980,6878.137255,11757.57579,0,,,,2,,,,2,,,,2,,,,2,9089.464824,6580.737142,11598.19251,,,,,2,,0.209,,,0.179,0.245,4.59744233,,,3.725685214,5.565589405,5.861359237,,,4.796806945,6.972445047,0.089692102,67,747,0.069200919,0.110183285,0,,,,,,,,,,,,,0.087866109,0.067143879,0.108588339,,,,,,,0.248,,,0.205,0.296,0.451,,,0.38,0.525,6.7,0.13000134,0.134,,,0.315,,,0.264,0.368,0.297647528,2986,10032,,,0.181134762,,,0.146802893,0.218901252,0.428571429,3,7,0.219826693,0.607881191,310,31,10000,,,11.10260337,29,2612,7.435587725,15.94519044,,,,,,,,,,,,,11.5248227,7.528396815,16.8865355,,,,,,,0.148834111,1117,7505,0.128578791,0.16908943,0.0002,2,10000,,,5000,0.000101102,1,9891,,,9891,0.000303306,3,9891,,,3297,3293,,,,,,,,,3211,0.39,,,,,,,,,0.38,0.28,,,,,,,,,0.28,0.864185901,5504,6369,0.835506301,0.8928655,0.567554479,1172,2065,0.473358295,0.661750664,0.023049271,109,4729,,,0.194,399,,0.117744681,0.270255319,,,,,,,0.048076923,0,0.345032372,,,,0.183902191,0.098675567,0.269128814,4.252684456,92279,21699,3.365330514,5.140038397,0.145116279,312,2150,0.068704245,0.221528314,11,11,10000,,,85.00647668,42,49408,61.26519133,114.9040617,,,,,,,,,,,,,85.3223654,60.67254258,116.6384823,,,,8,,,,,0,,,,,0.09596662,345,3595,0.065270421,0.126662819,0.074609929,0.045037978,0.10418188,0.021974965,0.004204066,0.039745864,0.018080668,0.004261421,0.031899915,0.787243948,3382,4296,0.741931439,0.832556457,,,,,,,,,,,,,0.720819612,0.649399464,0.79223976,0.44,,4296,0.361642021,0.518357979,75.58629743,,,73.72790976,77.44468509,,,,,,,,,,,,,75.58617796,73.69512011,77.47723581,,,,457.6015716,162,26980,382.3864756,532.8166676,,,,,,,,,,,,,452.6461535,375.7560672,529.5362398,,,,98.25112989,10,10178,47.11523577,180.687326,,,,,,,,,,,,,109.2537966,52.39144211,200.9216218,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.143,,,0.124,0.165,0.196,,,0.169,0.224,0.111,,,0.095,0.128,59.3,5,8428,,,0.134,1350,,,,0.13000134,1327.443684,10211,,,,,,,,,,,,,,,,,,,,,,,,,,0.345,,,0.328,0.361,0.173929376,926,5324,0.147716611,0.200142142,0.089169204,205,2299,0.061764949,0.116573459,0.000202204,2,9891,,,4945.5,0.967410714,108.35,112,,,,,,,,3.065981371,,,,,,,,,3.046357845,3.154834082,,,,,,,,,3.127404911,0.037640185,,,,,-3777.5485,,,,,0.815921528,39511,48425,0.704535979,0.927307078,57053,,,50643.97872,63462.02128,,,,,,,,,,,,,49418,43750.08511,55085.91489,,,,,,0.373587571,529,1416,,,43.36763646,,,,,0.190752458,,57053,,,10.65719361,6,563,,,,,,,,,,,,,,,,,,,,,,,,,,24.1807242,10,49408,11.59559715,44.46921273,20.23963731,,,,,,,,,,,,,26.49178505,12.70384066,48.71933593,,,,,,,,,,,,,,,,,,,,,,,,,,,17.20454774,12,69749,8.88984087,30.05288255,,,,,,,,,,,,,,,,,,,,,900,,,-888,16,0.606048652,4609,7605,,,0.579,,,,,8.399644202,,,,,0.766296185,2551,3329,0.727187075,0.805405295,0.095326524,308,3231,0.060526779,0.130126269,0.740462601,2465,3329,0.696423524,0.784501679,9891,,,,,0.213426347,2111,9891,,,0.193205945,1911,9891,,,0.031746032,314,9891,,,0.006773835,67,9891,,,0.006066121,60,9891,,,0.001112122,11,9891,,,0.020523708,203,9891,,,0.919927207,9099,9891,,,0,0,9462,0,0.008562807,0.49448994,4891,9891,,,1,10032,10032,, -29,113,29113,MO,Lincoln County,2024,1,8926.007867,898,171065,8065.186679,9786.829054,0,,,,2,,,,2,27703.39997,14750.89373,47373.65767,1,,,,2,8693.965599,7819.754347,9568.176851,,,,,2,,0.169,,,0.143,0.198,4.170992853,,,3.319540488,4.99064939,5.44566572,,,4.5397623,6.321096261,0.075485393,416,5511,0.068510634,0.082460152,0,,,,,,,,,,,,,0.074764521,0.067543223,0.081985819,,,,0.113475177,0.061122078,0.165828277,0.199,,,0.161,0.237,0.43,,,0.376,0.485,8.3,0.02642449,0.109,,,0.246,,,0.204,0.287,0.406956055,24244,59574,,,0.186927006,,,0.155151732,0.22128387,0.321428571,18,56,0.252186461,0.391192284,280.9,173,61586,,,18.11736904,230,12695,15.77590613,20.45883196,,,,,,,,,,21.42857143,11.07245555,37.43140187,17.02240254,14.62081582,19.42398926,,,,41.66666667,24.69430736,65.85129692,0.122447818,6453,52700,0.106958456,0.13793718,4.87124E-05,3,61586,,,20528.66667,0.000158341,10,63155,,,6315.5,0.001060882,67,63155,,,942.6119403,3030,,,,,,,,,3028,0.42,,,,,,,0.27,,0.42,0.41,,,,,,,0.36,,0.41,0.907444071,36668,40408,0.894221589,0.920666552,0.582889664,9525,16341,0.529095355,0.636683973,0.026151591,767,29329,,,0.109,1674,,0.07087234,0.14712766,,,,,,,0.148688047,0,0.36749499,,,,0.141579848,0.108757207,0.174402489,3.897385269,130274,33426,3.379894146,4.414876392,0.217106569,3282,15117,0.164992535,0.269220603,6.982106323,43,61586,,,100.4796546,296,294587,89.03274243,111.9265667,,,,,,,175.8087201,84.30711491,323.3184958,,,,101.2430601,89.32017249,113.1659477,,,,8.6,,,,,1,,,,,0.116801211,2315,19820,0.093378723,0.140223699,0.099923722,0.076416893,0.123430552,0.013067609,0.006624654,0.019510563,0.006306761,0.001207001,0.011406521,0.820340423,23182,28259,0.791172815,0.84950803,,,,,,,,,,,,,0.725788012,0.711006405,0.74056962,0.55,,28259,0.5045669,0.5954331,76.05564319,,,75.32059556,76.79069082,,,,,,,,,,,,,76.13328476,75.39057224,76.87599727,,,,435.3417687,898,171065,405.8926385,464.7908989,,,,,,,1029.107035,703.9084502,1452.792076,,,,430.2809271,400.1663379,460.3955163,,,,58.02501183,38,65489,41.06195185,79.64386221,,,,,,,,,,,,,52.80190768,35.87633449,74.94809318,,,,6.275378368,34,5418,4.345881946,8.769212273,,,,,,,,,,,,,5.796522087,3.882021814,8.324772624,,,,,,,0.124,,,0.106,0.142,0.175,,,0.15,0.2,0.096,,,0.082,0.111,115.1,58,50388,,,0.109,6400,,,,0.02642449,1389.02974,52566,,,33.75424695,61,180718,25.81932434,43.3587423,,,,,,,,,,,,,33.40371974,25.23281091,43.37750856,,,,0.328,,,0.312,0.346,0.140611565,5233,37216,0.121547735,0.159675395,0.080180514,1297,16176,0.057542217,0.102818812,0.00042752,27,63155,,,2339.074074,0.925282875,605.135,654,,,0.174175127,549,3152,0.085005379,0.263344875,2.979468297,,,,,,,,2.631284104,2.993732452,2.9903268,,,,,,,,2.601042345,3.011963889,0.035210441,,,,,-1846.514775,,,,,0.656141684,43161,65780,0.603157566,0.709125803,77913,,,69872.82979,85953.17021,,,,51875,14905.46809,88844.53192,,,,78650,7842.170213,149457.8298,83633,80550.61702,86715.38298,,,,,,0.267781997,2609,9743,,,42.14588668,,,,,0.220823226,,77913,,,4.536290323,18,3968,,,3.707823508,15,404550,2.075240671,6.115491008,,,,,,,,,,,,,3.989011603,2.232619513,6.579268009,,,,20.68628397,57,294587,15.58374009,26.926042,19.34912267,,,,,,,,,,,,,21.70157146,16.3028884,28.31584328,,,,13.91778999,41,294587,9.987646389,18.88105367,,,,,,,,,,,,,14.61993648,10.44469696,19.90820396,,,,24.22444692,98,404550,19.66657696,29.52184163,,,,,,,,,,,,,23.1362673,18.53120166,28.53850023,,,,20.6779661,,5900,,,17,105,0.678466215,29018,42770,,,0.696,,,,,17.86852935,,,,,0.791494012,17382,21961,0.764598636,0.818389388,0.106949627,2293,21440,0.082143906,0.131755348,0.898684031,19736,21961,0.878901956,0.918466106,63155,,,,,0.248167208,15673,63155,,,0.148143457,9356,63155,,,0.020188425,1275,63155,,,0.004956061,313,63155,,,0.004845222,306,63155,,,0.000665031,42,63155,,,0.028453804,1797,63155,,,0.923727338,58338,63155,,,0.002777382,156,56168,0,0.006365126,0.492265062,31089,63155,,,0.72019673,42905,59574,, -29,115,29115,MO,Linn County,2024,1,8370.117347,202,32272,6474.066897,10266.1678,0,,,,2,,,,2,,,,2,,,,2,8140.422648,6228.613765,10052.23153,,,,,2,,0.185,,,0.156,0.216,4.185127907,,,3.357327214,5.065237647,5.417942119,,,4.41469256,6.511484465,0.06122449,57,931,0.045824349,0.076624631,0,,,,,,,,,,,,,0.061784897,0.045822698,0.077747096,,,,,,,0.223,,,0.178,0.271,0.383,,,0.315,0.455,7.3,0.080461627,0.129,,,0.267,,,0.219,0.316,0.662287351,7864,11874,,,0.15539589,,,0.125451023,0.191269539,0.181818182,2,11,0.044108943,0.367070091,253.3,30,11843,,,19.63690256,53,2699,14.70938753,25.68555203,,,,,,,,,,,,,19.78998385,14.64073899,26.16340816,,,,,,,0.126787827,1179,9299,0.108915486,0.144660167,0.000337752,4,11843,,,2960.75,0.000253807,3,11820,,,3940,0.00033841,4,11820,,,2955,2323,,,,,,,,,2338,0.38,,,,,,,,,0.39,0.39,,,,,,,,,0.39,0.903766202,7391,8178,0.881022667,0.926509737,0.493855607,1286,2604,0.41519149,0.572519724,0.029429076,150,5097,,,0.192,522,,0.11693617,0.26706383,,,,,,,,,,0.745614035,0.565424295,0.925803776,0.248143806,0.174627999,0.321659614,4.644654599,114435,24638,3.783579585,5.505729612,0.164280601,459,2794,0.096346962,0.232214241,16.88761294,20,11843,,,93.60791656,56,59824,70.71041419,121.5576658,,,,,,,,,,,,,91.99794774,68.7084677,120.6430687,,,,7.3,,,,,0,,,,,0.084,420,5000,0.060704131,0.107295869,0.068080808,0.042388851,0.093772766,0.0136,0.00153277,0.02566723,0.009,0.001141518,0.016858482,0.824995419,4502,5457,0.790844368,0.859146469,,,,,,,,,,,,,0.810026385,0.796020902,0.824031868,0.281,,5457,0.233609269,0.328390731,75.87353774,,,74.39165371,77.35542177,,,,,,,,,,,,,75.81906411,74.32809937,77.31002885,,,,432.6484542,202,32272,367.9871784,497.30973,,,,,,,,,,,,,432.9826558,367.2168981,498.7484135,,,,81.9000819,10,12210,39.2742727,150.6171666,,,,,,,,,,,,,89.28571429,42.8159705,164.1996075,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.13,,,0.111,0.15,0.183,,,0.157,0.208,0.1,,,0.085,0.117,,,,,,0.129,1540,,,,0.080461627,1026.770822,12761,,,,,,,,,,,,,,,,,,,,,,,,,,0.331,,,0.314,0.348,0.149294911,974,6524,0.126656613,0.171933209,0.075239398,220,2924,0.0526011,0.097877696,0.001184433,14,11820,,,844.2857143,0.872435897,136.1,156,,,,,,,,3.412778983,,,,,,,,,3.394997169,3.124707132,,,,,,,,,3.127458976,0.071569845,,,,,-5021.1484,,,,,0.747255883,39281,52567,0.672148238,0.822363528,52831,,,47744.53192,57917.46809,16172,15939.65957,16404.34043,48929,45229.42553,52628.57447,,,,19323,3458.319149,35187.68085,59713,55582.10638,63843.89362,,,,,,0.377385496,791,2096,,,,,,,,0.220268403,,52831,,,13.5501355,10,738,,,,,,,,,,,,,,,,,,,,,,,,,,28.03492604,18,59824,16.02438255,45.5269635,30.08825889,,,,,,,,,,,,,25.36011936,13.86461324,42.54997109,,,,31.75982883,19,59824,19.12149165,49.59690688,,,,,,,,,,,,,30.07625215,17.52052522,48.15499322,,,,17.79443865,15,84296,9.959412229,29.34922045,,,,,,,,,,,,,17.53221545,9.585025329,29.41607845,,,,,,1200,,,-888,-888,0.6261345,5726,9145,,,0.614,,,,,4.72698815,,,,,0.769327467,3672,4773,0.74239829,0.796256645,0.085533493,392,4583,0.059227141,0.111839846,0.745443118,3558,4773,0.703435098,0.787451137,11820,,,,,0.2357022,2786,11820,,,0.21285956,2516,11820,,,0.010575296,125,11820,,,0.004145516,49,11820,,,0.002284264,27,11820,,,0.000507614,6,11820,,,0.031049069,367,11820,,,0.937817259,11085,11820,,,0.001788589,20,11182,0,0.009138511,0.508544839,6011,11820,,,0.674162035,8005,11874,, -29,117,29117,MO,Livingston County,2024,1,7540.871054,245,40121,6082.696507,8999.045601,0,,,,2,,,,2,,,,2,,,,2,7857.367978,6275.840829,9438.895126,,,,,2,,0.185,,,0.154,0.217,4.431963898,,,3.531980874,5.411626855,5.855809299,,,4.790591795,6.970138415,0.072128228,81,1123,0.056997396,0.08725906,0,,,,,,,,,,,,,0.070208729,0.054783768,0.085633689,,,,,,,0.219,,,0.173,0.268,0.41,,,0.339,0.487,8.1,0.036874657,0.113,,,0.269,,,0.219,0.325,0.650889606,9475,14557,,,0.158769766,,,0.127883014,0.193790977,0.545454546,6,11,0.400988881,0.66352243,338.9,50,14755,,,26.27840909,74,2816,20.63420321,32.99013619,,,,,,,,,,,,,26.58326818,20.64294791,33.70062672,,,,,,,0.121888254,1322,10846,0.104015913,0.139760594,0.00074551,11,14755,,,1341.363636,0.000624913,9,14402,,,1600.222222,0.000833218,12,14402,,,1200.166667,2089,,,,,,,,,2026,0.44,,,,,,,,,0.44,0.45,,,,,,,,,0.45,0.875209794,8865,10129,0.848759332,0.901660255,0.512088477,1991,3888,0.437748688,0.586428267,0.019774405,142,7181,,,0.167,513,,0.101468085,0.232531915,0.666666667,0.021111604,1,,,,,,,0.041666667,0,0.244774618,0.075525472,0.03813467,0.112916274,3.856874101,104556,27109,3.136213914,4.577534288,0.201594896,632,3135,0.119539915,0.283649878,16.26567265,24,14755,,,96.36748133,72,74714,75.40161909,121.358894,,,,,,,,,,,,,101.7338352,79.30651548,128.5345805,,,,7.1,,,,,0,,,,,0.110922947,655,5905,0.080831725,0.141014169,0.086468085,0.058472379,0.114463791,0.012701101,0.00475131,0.020650892,0.016934801,0.005661272,0.02820833,0.84896428,5205,6131,0.807602123,0.890326436,,,,,,,,,,,,,0.861425339,0.820665181,0.902185498,0.176,,6131,0.132108533,0.219891467,76.92076633,,,75.60810637,78.23342629,,,,,,,,,,,,,76.77687337,75.39291624,78.16083051,,,,442.763511,245,40121,385.3874994,500.1395226,,,,,,,,,,,,,446.0402791,386.2976271,505.7829311,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.132,,,0.113,0.154,0.188,,,0.16,0.215,0.099,,,0.084,0.115,88.3,11,12456,,,0.113,1690,,,,0.036874657,560.3104119,15195,,,,,,,,,,,,,,,,,,,,,,,,,,0.353,,,0.333,0.371,0.148922187,1133,7608,0.1250924,0.172751974,0.060076946,203,3379,0.041013116,0.079140776,0.000833218,12,14402,,,1200.166667,0.966946309,144.075,149,,,,,,,,2.915743912,,,,,,,,,2.947503243,3.084157365,,,,,,,,,3.148556525,0.030220137,,,,,-4466.632,,,,,0.682898184,37795,55345,0.605168305,0.760628063,56654,,,51952.38298,61355.61702,,,,96083,95335.93617,96830.06383,,,,,,,59019,55234.82979,62803.17021,,,,,,0.413826212,862,2083,,,87.78998126,,,,,0.239329968,,56654,,,15.6062425,13,833,,,,,,,,,,,,,,,,,,,,,,,,,,16.43073343,13,74714,8.489999727,28.70118468,17.39968413,,,,,,,,,,,,,17.96255689,9.281515259,31.37697199,,,,14.72280965,11,74714,7.34957353,26.34317332,,,,,,,,,,,,,15.98674554,7.980525771,28.60470376,,,,13.33625461,14,104977,7.291054494,22.37596914,,,,,,,,,,,,,14.46146536,7.906217683,24.26388158,,,,35.38461539,,1300,,,6,40,0.576867264,6758,11715,,,0.655,,,,,35.7654119,,,,,0.695405455,3799,5463,0.656883967,0.733926943,0.085450781,454,5313,0.054968549,0.115933014,0.722130697,3945,5463,0.678300242,0.765961153,14402,,,,,0.218164144,3142,14402,,,0.202471879,2916,14402,,,0.029232051,421,14402,,,0.005763089,83,14402,,,0.009512568,137,14402,,,0.000416609,6,14402,,,0.023677267,341,14402,,,0.918205805,13224,14402,,,0.000073373,1,13629,0,0.006511893,0.544438273,7841,14402,,,0.373359896,5435,14557,, -29,119,29119,MO,McDonald County,2024,1,12504.45998,500,64775,10865.60627,14143.3137,0,,,,2,,,,2,,,,2,,,,2,12684.03055,10774.33556,14593.72554,,,,,2,,0.249,,,0.213,0.282,4.918569692,,,4.020844085,5.92188262,5.56818624,,,4.502212977,6.757179236,0.081675836,193,2363,0.070633295,0.092718377,0,,,,,,,,,,0.051219512,0.029880971,0.072558054,0.082721815,0.068776901,0.096666728,0.141104295,0.087659846,0.194548743,,,,0.274,,,0.228,0.318,0.445,,,0.371,0.52,7.8,0.018037896,0.136,,,0.349,,,0.295,0.406,0.386345106,9003,23303,,,0.156514023,,,0.124964439,0.192536178,0.11627907,5,43,0.052169737,0.201453513,333.6,78,23383,,,44.95655459,238,5294,39.2449174,50.66819178,,,,,,,,,,51.28205128,37.54490681,68.40306991,43.00213675,36.35961219,49.64466132,72.72727273,37.57924308,127.0399094,,,,0.207764682,4019,19344,0.183934894,0.231594469,8.55322E-05,2,23383,,,11691.5,0.000211972,5,23588,,,4717.6,0.000169578,4,23588,,,5897,3510,,,,,,,,,3515,0.34,,,,,,,,0.2,0.36,0.3,,,,,0.26,,,0.07,0.3,0.792780062,12342,15568,0.766139205,0.819420918,0.40321173,2310,5729,0.340432096,0.465991364,0.024319682,269,11061,,,0.227,1303,,0.13406383,0.31993617,0.18699187,0.008002388,0.365981352,0.048859935,0,0.237548637,0.513888889,0.060151712,0.967626066,0.26344086,0.142150335,0.384731386,0.250809538,0.174180998,0.327438078,4.290223109,94608,22052,3.751622661,4.828823557,0.248484849,1476,5940,0.173688201,0.323281496,6.41491682,15,23383,,,99.97739642,115,115026,81.70443345,118.2503594,,,,,,,,,,,,,112.1000068,91.10935396,136.477736,,,,8.6,,,,,1,,,,,0.145920191,1225,8395,0.115771294,0.176069087,0.065861027,0.044802797,0.086919257,0.078618225,0.055489533,0.101746918,0.012507445,0.003485522,0.021529367,0.795654912,7581,9528,0.777218357,0.814091467,,,,,,,,,,0.714509804,0.665423787,0.763595821,0.75372621,0.685487709,0.82196471,0.392,,9528,0.332342186,0.451657814,72.43204795,,,71.23678611,73.6273098,,,,,,,,,,82.0165133,69.86278652,94.17024008,71.9815902,70.64324579,73.31993461,,,,610.3037314,500,64775,554.8648449,665.7426179,,,,,,,,,,,,,638.4615887,575.4566131,701.4665643,,,,81.73750584,21,25692,50.59680439,124.9444603,,,,,,,,,,,,,70.8926567,36.63127021,123.8352044,,,,8.378718056,20,2387,5.117938662,12.94025048,,,,,,,,,,,,,,,,,,,,,,0.159,,,0.137,0.181,0.198,,,0.172,0.225,0.126,,,0.108,0.144,146.1,28,19168,,,0.136,3170,,,,0.018037896,416.3687568,23083,,,14.46759259,10,69120,6.937772998,26.60641789,,,,,,,,,,,,,18.93150581,9.078392897,34.81571323,,,,0.351,,,0.338,0.366,0.252272061,3442,13644,0.221293338,0.283250784,0.103085905,618,5995,0.072107182,0.134064628,0.000720705,17,23588,,,1387.529412,0.92,218.96,238,,,,,,,,2.92355439,,,,,,2.293897226,,2.650111202,3.050082128,2.923957538,,,,,,2.840215145,,2.928081326,2.915076259,0.140261392,,,,,-9000.16,,,,,0.767689162,33786,44010,0.674118854,0.861259469,50100,,,44812.17021,55387.82979,33785,20723.89362,46846.10638,53750,32783.3617,74716.6383,40909,27398.70213,54419.29787,46250,24125.23404,68374.76596,46808,42398.29787,51217.70213,,,,,,0.693523316,2677,3860,,,63.88103492,,,,,0.264191617,,50100,,,6.176652255,10,1619,,,,,,,,,,,,,,,,,,,,,,,,,,22.60962061,24,115026,14.33255999,33.92553214,20.86484795,,,,,,,,,,,,,27.12855578,16.7930036,41.46887925,,,,18.25674195,21,115026,11.30121102,27.90736941,,,,,,,,,,,,,22.64646602,13.83304978,34.97563003,,,,33.68914898,54,160289,25.30832557,43.95703161,,,,,,,,,,,,,33.95777916,24.47378034,45.90105251,,,,47.82608696,,2300,,,30,80,0.581438664,9053,15570,,,0.485,,,,,4.574674001,,,,,0.666507918,5598,8399,0.628730519,0.704285316,0.083675565,652,7792,0.05721304,0.110138089,0.716394809,6017,8399,0.678525643,0.754263975,23588,,,,,0.250423944,5907,23588,,,0.161395625,3807,23588,,,0.017593692,415,23588,,,0.030523995,720,23588,,,0.017678481,417,23588,,,0.037603866,887,23588,,,0.117898932,2781,23588,,,0.752967611,17761,23588,,,0.048552583,1060,21832,0.033063519,0.064041648,0.490206885,11563,23588,,,0.998927177,23278,23303,, -29,121,29121,MO,Macon County,2024,1,7938.143263,268,40676,6324.177174,9552.109351,0,,,,2,,,,2,,,,2,,,,2,8269.097535,6535.315338,10002.87973,,,,,2,,0.179,,,0.152,0.21,4.108782604,,,3.2834861,4.970488067,5.064331214,,,4.102788463,6.067596245,0.085456039,104,1217,0.069749357,0.101162722,0,,,,,,,,,,,,,0.082465278,0.066580664,0.098349891,,,,,,,0.218,,,0.176,0.263,0.416,,,0.346,0.486,7.1,0.124940672,0.115,,,0.273,,,0.225,0.323,0.571437964,8691,15209,,,0.170772609,,,0.13756933,0.207128713,0.066666667,1,15,0.003015681,0.225205905,223.9,34,15183,,,23.28469419,75,3221,18.31488907,29.1875658,,,,,,,,,,,,,22.31668438,17.14875303,28.55273372,,,,,,,0.135927323,1586,11668,0.118054982,0.153799663,0.000395179,6,15183,,,2530.5,0.000398698,6,15049,,,2508.166667,0.000598046,9,15049,,,1672.111111,3001,,,,,,,,,2958,0.46,,,,,,,,,0.46,0.4,,,,,,,0.42,,0.4,0.912585067,9521,10433,0.894799295,0.930370838,0.56865285,1756,3088,0.486197037,0.651108662,0.025251116,181,7168,,,0.188,642,,0.120085106,0.255914894,,,,,,,0.296875,0,0.920179796,0.228571429,0,0.544943107,0.11296,0.070804483,0.155115517,3.929660359,96147,24467,3.454119932,4.405200785,0.145578618,512,3517,0.093285205,0.197872031,11.19673319,17,15183,,,79.15671711,60,75799,60.40491425,101.8903856,,,,,,,,,,,,,84.82363752,64.72937153,109.1848355,,,,7.6,,,,,0,,,,,0.10321489,610,5910,0.075157827,0.131271953,0.075278015,0.050504266,0.100051765,0.01607445,0.006126858,0.026022042,0.015228426,0.002986475,0.027470378,0.807556443,5258,6511,0.770041715,0.845071171,,,,,,,,,,,,,0.792049541,0.752819565,0.831279516,0.316,,6511,0.267381978,0.364618022,76.29956152,,,75.02157303,77.57755,,,,,,,,,,,,,75.99564127,74.65591221,77.33537032,,,,438.8483337,268,40676,382.1853714,495.5112961,,,,,,,,,,,,,446.9976312,387.6470778,506.3481846,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.127,,,0.109,0.146,0.178,,,0.154,0.204,0.097,,,0.082,0.112,54.8,7,12771,,,0.115,1740,,,,0.124940672,1944.826497,15566,,,,,,,,,,,,,,,,,,,,,,,,,,0.339,,,0.322,0.356,0.155193384,1276,8222,0.132555086,0.177831682,0.090484048,329,3636,0.063079793,0.117888304,0.000863845,13,15049,,,1157.615385,0.896837349,148.875,166,,,,,,,,3.363331316,,,,,,,,,3.406660113,3.398485192,,,,,,,,,3.470477519,0.08304568,,,,,-3098.67316,,,,,0.761960303,37237,48870,0.65207007,0.871850536,52847,,,47555.59575,58138.40426,,,,,,,,,,34018,22478.42553,45557.57447,54495,49999.51064,58990.48936,,,,,,0.41582248,862,2073,,,56.53042561,,,,,0.23753477,,52847,,,8.073817762,7,867,,,,,,,,,,,,,,,,,,,,,,,,,,32.91370629,24,75799,20.37410295,50.31209633,31.66268684,,,,,,,,,,,,,35.31702698,21.86179634,53.9858273,,,,30.34340822,23,75799,19.23511793,45.53001081,,,,,,,,,,,,,32.51572772,20.61218214,48.78955665,,,,13.16977724,14,106304,7.200039769,22.09664841,,,,,,,,,,,,,14.08691627,7.701448212,23.63545186,,,,,,1500,,,-888,16,0.679029463,7836,11540,,,0.637,,,,,27.65056714,,,,,0.76880985,4496,5848,0.746089213,0.791530487,0.080218618,455,5672,0.055285003,0.105152233,0.75119699,4393,5848,0.718163739,0.784230242,15049,,,,,0.232241345,3495,15049,,,0.22313775,3358,15049,,,0.025383746,382,15049,,,0.003588278,54,15049,,,0.009369393,141,15049,,,0.000930294,14,15049,,,0.018605887,280,15049,,,0.924712606,13916,15049,,,0.004810038,69,14345,0,0.011739895,0.496976543,7479,15049,,,0.647642843,9850,15209,, -29,123,29123,MO,Madison County,2024,1,10855.81018,274,33762,8780.58153,12931.03884,0,,,,2,,,,2,,,,2,,,,2,10885.76803,8757.452677,13014.08339,,,,,2,,0.188,,,0.157,0.222,4.40370148,,,3.526850081,5.434574224,5.642883727,,,4.593058488,6.834792597,0.0907173,86,948,0.072434343,0.109000256,0,,,,,,,,,,,,,0.092222222,0.073318715,0.111125729,,,,,,,0.221,,,0.176,0.272,0.391,,,0.313,0.473,6.9,0.102060462,0.137,,,0.287,,,0.237,0.348,0.843418343,10649,12626,,,0.160428934,,,0.127454659,0.196845286,0.076923077,1,13,0.003657611,0.250631766,181.8,23,12652,,,27.5974026,68,2464,21.43046297,34.98628375,,,,,,,,,,,,,27.57432141,21.23558748,35.21179285,,,,,,,0.127319639,1283,10077,0.109447298,0.145191979,0.000316156,4,12652,,,3163,0.000235239,3,12753,,,4251,0.001960323,25,12753,,,510.12,3250,,,,,,,,,3265,0.31,,,,,,,,,0.31,0.32,,,,,,,,,0.32,0.882427599,7648,8667,0.853205933,0.911649265,0.470792768,1354,2876,0.363978934,0.577606602,0.028885576,155,5366,,,0.264,715,,0.181787234,0.346212766,,,,,,,,,,,,,0.176242236,0.092597578,0.259886894,4.096946361,107467,26231,3.025830828,5.168061894,0.228494624,680,2976,0.138771502,0.318217746,11.0654442,14,12652,,,97.9048365,60,61284,74.71170444,126.0229316,,,,,,,,,,,,,100.0897356,76.00233257,129.3891933,,,,7.4,,,,,0,,,,,0.141237113,685,4850,0.099409398,0.183064829,0.103664922,0.062170239,0.145159605,0.029896907,0.008607642,0.051186173,0.031958763,0.013404526,0.050513,0.791998518,4276,5399,0.730481871,0.853515166,,,,,,,,,,,,,0.734983952,0.673558481,0.796409424,0.316,,5399,0.253290974,0.378709026,73.24777095,,,71.75931467,74.73622723,,,,,,,,,,,,,73.12970851,71.62743294,74.63198407,,,,574.344151,274,33762,502.0935562,646.5947458,,,,,,,,,,,,,583.4502286,508.8553292,658.045128,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.133,,,0.114,0.156,0.187,,,0.162,0.215,0.103,,,0.087,0.12,,,,,,0.137,1730,,,,0.102060462,1247.791211,12226,,,29.84831628,11,36853,14.90017195,53.40688279,,,,,,,,,,,,,28.71995175,13.7723332,52.81701382,,,,0.334,,,0.317,0.351,0.15383556,1117,7261,0.130005773,0.177665347,0.060513861,179,2958,0.041450031,0.079577691,0.001019368,13,12753,,,981,0.865322581,134.125,155,,,,,,,,3.105259478,,,,,,,,,3.132209825,2.821916407,,,,,,,,,2.826909215,0.033905908,,,,,-4888.4055,,,,,1.036872601,41337,39867,0.786535858,1.287209345,47068,,,40439.74468,53696.25532,,,,,,,,,,11426,11011.3617,11840.6383,55356,47069.19149,63642.80851,,,,,,0.610945274,1228,2010,,,,,,,,0.314778618,,47068,,,9.88700565,7,708,,,,,,,,,,,,,,,,,,,,,,,,,,25.94069028,14,61284,13.81232505,44.35937041,22.84446185,,,,,,,,,,,,,27.62911301,14.71133905,47.24662469,,,,19.5809673,12,61284,10.11777154,34.20400928,,,,,,,,,,,,,20.70822116,10.70024006,36.17309493,,,,25.54130145,22,86135,16.00659763,38.66983733,,,,,,,,,,,,,25.7944063,15.96714405,39.42949005,,,,18.33333333,,1200,,,6,16,0.608686327,5676,9325,,,0.543,,,,,7.576875812,,,,,0.783509605,3630,4633,0.75440176,0.81261745,0.087824351,396,4509,0.050178728,0.125469974,0.799050291,3702,4633,0.755327534,0.842773049,12753,,,,,0.223947307,2856,12753,,,0.197914216,2524,12753,,,0.007135576,91,12753,,,0.005880969,75,12753,,,0.009880028,126,12753,,,0.000548891,7,12753,,,0.027679762,353,12753,,,0.934682036,11920,12753,,,8.32848E-05,1,12007,0,0.00739157,0.493844586,6298,12753,,,0.605100586,7640,12626,, -29,125,29125,MO,Maries County,2024,1,9234.322323,169,23400,6876.945309,11591.69934,0,,,,2,,,,2,,,,2,,,,2,9354.740683,6897.996081,11811.48529,,,,,2,,0.19,,,0.16,0.222,4.170419918,,,3.301237035,5.096519904,5.47371372,,,4.398095542,6.59861002,0.07568438,47,621,0.054881496,0.096487264,0,,,,,,,,,,,,,0.076271186,0.054853007,0.097689366,,,,,,,0.228,,,0.185,0.273,0.406,,,0.326,0.486,7.8,0.019107657,0.136,,,0.286,,,0.234,0.341,0.075426945,636,8432,,,0.168163611,,,0.133588044,0.205333655,0.375,6,16,0.240765683,0.502616143,83.3,7,8406,,,27.4049217,49,1788,20.27431194,36.23075984,,,,,,,,,,,,,25.85688515,18.71275599,34.82905461,,,,,,,0.17558299,1152,6561,0.152944693,0.198221288,,0,8406,,,,0.00035583,3,8431,,,2810.333333,0.00035583,3,8431,,,2810.333333,4592,,,,,,,,,4618,0.42,,,,,,,,,0.42,0.35,,,,,,,,,0.35,0.870361207,5277,6063,0.839660764,0.901061651,0.558726674,1018,1822,0.424662758,0.692790591,0.025306548,97,3833,,,0.203,344,,0.132702128,0.273297872,,,,,,,,,,0.139534884,0,0.519837688,0.173089071,0.083915625,0.262262518,4.979942693,99066,19893,2.991103525,6.968781862,0.110277136,191,1732,0.042613464,0.177940808,16.6547704,14,8406,,,89.58515184,39,43534,63.70380045,122.4658517,,,,,,,,,,,,,94.30540443,67.06036148,128.9185924,,,,7.3,,,,,0,,,,,0.108923885,415,3810,0.069793399,0.14805437,0.080533333,0.044115914,0.116950753,0.017060368,0.004409443,0.029711292,0.014435696,0.000745268,0.028126123,0.759662889,2614,3441,0.712378323,0.806947455,,,,,,,,,,,,,0.769754768,0.665993451,0.873516086,0.515,,3441,0.40760721,0.62239279,75.11506224,,,73.31561787,76.91450661,,,,,,,,,,,,,74.89960594,73.05812067,76.74109121,,,,467.0379787,169,23400,391.1596097,542.9163478,,,,,,,,,,,,,470.2193139,392.6484245,547.7902032,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.133,,,0.115,0.153,0.188,,,0.163,0.215,0.102,,,0.086,0.119,165.7,12,7242,,,0.136,1150,,,,0.019107657,175.3318577,9176,,,,,,,,,,,,,,,,,,,,,,,,,,0.343,,,0.324,0.36,0.194701171,948,4869,0.167296915,0.222105426,0.121773288,217,1782,0.084837118,0.158709459,0.00035583,3,8431,,,2810.333333,,,,,,,,,,,2.931841134,,,,,,,,,2.95630159,3.161417472,,,,,,,,,3.158542888,,,,,,-1593.1001,,,,,0.755448712,38024,50333,0.512580724,0.998316699,54815,,,46884.44681,62745.55319,,,,,,,,,,78088,47206.97872,108969.0213,57346,47949.91489,66742.08511,,,,,,0.645645646,645,999,,,,,,,,0.191006112,,54815,,,10.41666667,4,384,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,24.44788526,15,61355,13.68329579,40.32306882,,,,,,,,,,,,,25.69505113,14.38132506,42.38007926,,,,,,800,,,0,-888,0.691449275,4771,6900,,,0.481,,,,,4.544061437,,,,,0.746529706,2689,3602,0.701595216,0.791464195,0.127860412,447,3496,0.081241143,0.174479681,0.7523598,2710,3602,0.699705554,0.805014046,8431,,,,,0.206262602,1739,8431,,,0.218123592,1839,8431,,,0.008184083,69,8431,,,0.009370182,79,8431,,,0.004032736,34,8431,,,0.00047444,4,8431,,,0.02170561,183,8431,,,0.939034516,7917,8431,,,0.005457703,44,8062,0,0.015940425,0.493417151,4160,8431,,,1,8432,8432,, -29,127,29127,MO,Marion County,2024,1,10687.30044,533,78711,9278.036225,12096.56465,0,,,,2,,,,2,23747.83109,15368.34415,35056.48338,1,,,,2,10126.99607,8674.082609,11579.90953,,,,,2,,0.188,,,0.157,0.222,4.229807959,,,3.432789075,5.135029607,5.30306998,,,4.35066255,6.296975617,0.087755955,210,2393,0.076419467,0.099092443,0,,,,,,,0.211678832,0.143274108,0.280083557,,,,0.078732597,0.06716664,0.090298554,,,,0.130434783,0.061615531,0.199254034,0.219,,,0.172,0.269,0.41,,,0.344,0.477,7.3,0.067477166,0.136,,,0.283,,,0.233,0.335,0.812725679,23183,28525,,,0.183312835,,,0.149697312,0.221082273,0.2,5,25,0.10034726,0.316172705,473.4,135,28518,,,20.59925094,132,6408,17.08509901,24.11340287,,,,,,,37.35632184,19.89066808,63.88044804,,,,18.76480233,15.14085854,22.38874612,,,,44.2804428,22.88035096,77.34902232,0.116349404,2616,22484,0.100860042,0.131838766,0.001016902,29,28518,,,983.3793103,0.000843941,24,28438,,,1184.916667,0.003199944,91,28438,,,312.5054945,4550,,,,,,,4954,,4508,0.52,,,,,,,0.41,,0.52,0.2,,,,,,,0.18,,0.2,0.896932769,17370,19366,0.872250595,0.921614943,0.593116253,4153,7002,0.526597608,0.659634897,0.023596242,324,13731,,,0.158,1012,,0.097234043,0.218765957,,,,,,,0.193633952,0.060523613,0.326744292,,,,0.132798574,0.081759759,0.183837389,4.513741386,111354,24670,3.567486542,5.459996231,0.276035323,1813,6568,0.19918378,0.352886865,17.18213058,49,28518,,,93.90526781,134,142697,78.00539582,109.8051398,,,,,,,178.2001782,92.07863244,311.2798493,,,,92.63295554,75.98932328,109.2765878,,,,8.1,,,,,0,,,,,0.102297356,1180,11535,0.07833889,0.126255822,0.091474245,0.066658076,0.116290414,0.011183355,0.003228105,0.019138605,0.005635024,0.000183342,0.011086705,0.791777693,10400,13135,0.757975594,0.825579793,,,,,,,,,,,,,0.808680378,0.767995126,0.849365629,0.213,,13135,0.176723111,0.249276889,74.50324313,,,73.43352109,75.57296516,,,,,,,,,,,,,74.81403273,73.70456219,75.92350327,,,,517.5083882,533,78711,471.3252326,563.6915438,,,,,,,973.6106594,678.1554975,1354.05674,,,,499.838782,452.7923962,546.8851677,,,,64.49641875,19,29459,38.83105728,100.7191472,,,,,,,,,,,,,67.94292794,39.5792593,108.7832094,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.133,,,0.113,0.156,0.184,,,0.158,0.212,0.104,,,0.089,0.121,96.5,23,23831,,,0.136,3900,,,,0.067477166,1942.060327,28781,,,25.73972459,22,85471,16.13094836,38.97025235,,,,,,,,,,,,,19.51828864,10.92423798,32.19244886,,,,0.359,,,0.341,0.377,0.140563257,2241,15943,0.119116448,0.162010065,0.059364061,407,6856,0.04149172,0.077236401,0.001265912,36,28438,,,789.9444444,0.948489426,313.95,331,,,,,,,,3.211873992,,,,,,,2.497348398,,3.280579894,3.007074515,,,,,,,2.267246019,,3.081203685,0.047325868,,,,,-121.6435333,,,,,0.681575841,35795,52518,0.605576106,0.757575575,57635,,,50875.68085,64394.31915,,,,,,,32602,10669.06383,54534.93617,105536,40822.6383,170249.3617,63282,59043.87234,67520.12766,,,,,,0.470408163,2305,4900,,,41.68994044,,,,,0.235880975,,57635,,,13.98992725,25,1787,,,,,,,,,,,,,,,,,,,,,,,,,,21.42747415,30,142697,14.23840096,30.96866613,21.02356742,,,,,,,,,,,,,23.70038517,15.74873383,34.25365539,,,,13.31492603,19,142697,8.016455261,20.79290635,,,,,,,,,,,,,13.23327936,7.70887289,21.18776219,,,,14.46593273,29,200471,9.688062182,20.77549244,,,,,,,,,,,,,14.39510124,9.403358054,21.09215859,,,,38.84615385,,2600,,,7,94,0.615115207,13348,21700,,,0.669,,,,,73.14299207,,,,,0.688711819,7779,11295,0.656856953,0.720566686,0.095211633,1028,10797,0.070491422,0.119931844,0.858698539,9699,11295,0.83213865,0.885258428,28438,,,,,0.230395949,6552,28438,,,0.189183487,5380,28438,,,0.04536184,1290,28438,,,0.002742809,78,28438,,,0.007489978,213,28438,,,0.000984598,28,28438,,,0.020149096,573,28438,,,0.897214994,25515,28438,,,0.000709061,19,26796,0,0.004408234,0.509177861,14480,28438,,,0.389517967,11111,28525,, -29,129,29129,MO,Mercer County,2024,1,6952.1955,63,9519,4541.404918,10186.5772,0,,,,2,,,,2,,,,2,,,,2,7264.955688,4701.496269,10724.50774,,,,,2,,0.201,,,0.169,0.241,4.464430799,,,3.558830139,5.553630652,5.422083823,,,4.29059142,6.727303526,0.050445104,17,337,0.027077689,0.073812519,1,,,,,,,,,,,,,0.050793651,0.026545098,0.075042204,,,,,,,0.233,,,0.187,0.287,0.398,,,0.316,0.492,4.5,0.377674145,0.115,,,0.289,,,0.237,0.352,0.463821368,1641,3538,,,0.155994465,,,0.121929878,0.19514897,0.25,1,4,0.023230216,0.544021398,286.7,10,3488,,,19.37984496,15,774,10.84675211,31.96410707,,,,,,,,,,,,,18.30985916,9.749228861,31.31041679,,,,,,,0.148037383,396,2675,0.127782064,0.168292702,0.000286697,1,3488,,,3488,0,0,3437,,,-3437,0.000581903,2,3437,,,1718.5,1649,,,,,,,,,1649,0.4,,,,,,,,,0.4,0.3,,,,,,,,,0.29,0.910033168,2195,2412,0.87322568,0.946840655,0.515277778,371,720,0.396188147,0.634367409,0.024317912,41,1686,,,0.193,156,,0.122702128,0.263297872,,,,,,,,,,,,,0.232804233,0.090558947,0.375049518,4.315657744,101733,23573,3.713495881,4.917819607,0.089179548,75,841,0.027444114,0.150914983,14.33486239,5,3488,,,83.41675008,15,17982,46.68772179,137.5832436,,,,,,,,,,,,,88.53213717,49.55076511,146.0202967,,,,7.1,,,,,0,,,,,0.108614232,145,1335,0.067773469,0.149454996,0.059046177,0.020953506,0.097138848,0.020973783,0,0.043591172,0.033707865,0.00664913,0.0607666,0.711590297,1056,1484,0.65291668,0.770263913,,,,,,,,,,,,,0.692810458,0.631417238,0.754203677,0.295,,1484,0.209196219,0.380803781,77.46609508,,,74.98683303,79.94535714,,,,,,,,,,,,,77.04946183,74.50684346,79.5920802,,,,426.528973,63,9519,320.4216919,556.5277877,,,,,,,,,,,,,443.3890912,333.0875316,578.5265846,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.138,,,0.118,0.163,0.188,,,0.161,0.218,0.107,,,0.09,0.126,,,,,,0.115,410,,,,0.377674145,1429.496638,3785,,,,,,,,,,,,,,,,,,,,,,,,,,0.335,,,0.316,0.353,0.17167382,320,1864,0.146652543,0.196695096,0.094405594,81,858,0.063426871,0.125384318,0.000581903,2,3437,,,1718.5,,,,,,,,,,,3.142620215,,,,,,,,,3.176353009,3.110428769,,,,,,,,,3.144568947,,,,,,771.46345,,,,,1.10852344,44219,39890,0.793777509,1.42326937,49715,,,43565.7234,55864.2766,,,,,,,,,,,,,55461,43731.97872,67190.02128,,,,,,0.380582524,196,515,,,,,,,,0.054048074,,49715,,,4.444444444,1,225,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,300,,,-888,0,0.656457565,1779,2710,,,0.447,,,,,5.615735594,,,,,0.793296089,994,1253,0.762409242,0.824182937,0.059210526,72,1216,0.013441923,0.10497913,0.76217079,955,1253,0.698597067,0.825744513,3437,,,,,0.23916206,822,3437,,,0.23305208,801,3437,,,0.004364271,15,3437,,,0.006400931,22,3437,,,0.00814664,28,3437,,,0.000290951,1,3437,,,0.034041315,117,3437,,,0.932499273,3205,3437,,,0.009818963,32,3259,0,0.028959471,0.502182136,1726,3437,,,1,3538,3538,, -29,131,29131,MO,Miller County,2024,1,9248.33105,479,70212,7936.434293,10560.22781,0,,,,2,,,,2,,,,2,,,,2,9395.925325,8031.261064,10760.58959,,,,,2,,0.19,,,0.159,0.221,4.235489,,,3.421676307,5.141496849,5.495169976,,,4.562501361,6.569496155,0.085256712,181,2123,0.073377299,0.097136125,0,,,,,,,,,,,,,0.081795511,0.069799598,0.093791425,,,,,,,0.226,,,0.182,0.273,0.399,,,0.336,0.474,7.9,0.016891878,0.133,,,0.272,,,0.226,0.326,0.585025483,14463,24722,,,0.174758898,,,0.143198737,0.214067132,0.551724138,16,29,0.470883419,0.623858893,252.9,63,24909,,,28.54967644,150,5254,23.98077665,33.11857622,,,,,,,,,,,,,28.38472534,23.66590582,33.10354486,,,,,,,0.138682466,2762,19916,0.120810126,0.156554807,0.000321169,8,24909,,,3113.625,0.000236193,6,25403,,,4233.833333,0.000551116,14,25403,,,1814.5,1766,,,,,,,,,1751,0.46,,,,,,,,,0.46,0.39,,,,,,,,,0.39,0.891392729,15348,17218,0.869911534,0.912873923,0.584302326,3417,5848,0.511631914,0.656972737,0.025326412,322,12714,,,0.177,1040,,0.106702128,0.247297872,,,,,,,,,,0.593457944,0.141449569,1,0.217007697,0.137913927,0.296101466,4.568989426,105434,23076,3.549793648,5.588185205,0.172104264,997,5793,0.104040248,0.240168279,8.832149022,22,24909,,,83.54153039,106,126883,67.63755974,99.44550103,,,,,,,,,,,,,86.65655674,70.00170272,103.3114108,,,,7.6,,,,,1,,,,,0.092822967,970,10450,0.064446113,0.12119982,0.065206813,0.042750585,0.087663041,0.024880383,0.010046096,0.03971467,0.00861244,0,0.017434434,0.814531377,9047,11107,0.782079429,0.846983325,,,,,,,,,,,,,0.794779478,0.737058982,0.852499974,0.465,,11107,0.402245713,0.527754287,75.40684203,,,74.3685892,76.44509487,,,,,,,,,,,,,75.13262201,74.06895815,76.19628587,,,,490.3376772,479,70212,443.4757413,537.199613,,,,,,,,,,,,,498.1190455,449.8418777,546.3962133,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.132,,,0.114,0.152,0.187,,,0.162,0.216,0.103,,,0.088,0.119,29,6,20692,,,0.133,3290,,,,0.016891878,418.0401982,24748,,,13.10289705,10,76319,6.28334844,24.09669419,,,,,,,,,,,,,13.87289652,6.652593117,25.51275064,,,,0.353,,,0.335,0.37,0.166063702,2341,14097,0.142233914,0.189893489,0.073995078,451,6095,0.052548269,0.095441886,0.000472385,12,25403,,,2116.916667,0.947030387,342.825,362,,,,,,,,3.112800815,,,,,,,,,3.102597684,2.964498965,,,,,,,,,2.958950304,0.061091314,,,,,-623.48074,,,,,0.843948019,39290,46555,0.776368824,0.911527213,61711,,,56613.80851,66808.19149,,,,60625,34517.08511,86732.91489,,,,32174,20508.12766,43839.87234,55181,49296.23404,61065.76596,,,,,,0.440781682,2233,5066,,,88.99257688,,,,,0.211275137,,61711,,,12.22651223,19,1554,,,,,,,,,,,,,,,,,,,,,,,,,,13.7717732,16,126883,7.707956915,22.71444554,12.61004232,,,,,,,,,,,,,14.57819677,8.159306069,24.04451859,,,,12.61004232,16,126883,7.207728737,20.47791871,,,,,,,,,,,,,13.33177796,7.620263014,21.64997217,,,,24.83041952,44,177202,18.04182084,33.33367924,,,,,,,,,,,,,25.02502503,18.03583687,33.82656393,,,,33.33333333,,2400,,,19,61,0.645063819,12382,19195,,,0.541,,,,,7.084878847,,,,,0.753163306,7619,10116,0.723085399,0.783241212,0.076939094,739,9605,0.052601679,0.10127651,0.796658758,8059,10116,0.755738297,0.83757922,25403,,,,,0.236979884,6020,25403,,,0.199622092,5071,25403,,,0.007715624,196,25403,,,0.006495296,165,25403,,,0.005432429,138,25403,,,0.001889541,48,25403,,,0.023146872,588,25403,,,0.939337874,23862,25403,,,0.001540239,36,23373,0,0.006083787,0.497736488,12644,25403,,,0.764622603,18903,24722,, -29,133,29133,MO,Mississippi County,2024,1,12536.65706,317,35311,10420.32406,14652.99006,0,,,,2,,,,2,14620.18368,10293.95854,20151.99735,,,,,2,11780.3186,9407.73363,14152.90356,,,,,2,,0.27,,,0.233,0.31,5.150353065,,,4.18046853,6.23089188,5.918552526,,,4.786365935,7.171772006,0.117760618,122,1036,0.098132916,0.13738832,0,,,,,,,0.180076628,0.133458898,0.226694359,,,,0.095172414,0.07381122,0.116533608,,,,,,,0.287,,,0.239,0.336,0.434,,,0.357,0.517,7,0.013052567,0.174,,,0.363,,,0.306,0.42,0.814343643,10242,12577,,,0.142345799,,,0.112719794,0.176215926,0.272727273,3,11,0.11266692,0.445445377,853.4,107,12538,,,41.95519348,103,2455,33.8526161,50.05777086,,,,,,,58.73493976,41.76628387,80.29259618,,,,34.25480769,25.94425683,44.38107656,,,,,,,0.144711593,1282,8859,0.124456274,0.164966912,0.000159515,2,12538,,,6269,0.000256674,3,11688,,,3896,0.000513347,6,11688,,,1948,3416,,,,,,,3079,,3403,0.38,,,,,,,0.48,,0.37,0.27,,,,,,,0.19,,0.28,0.793187067,6869,8660,0.762598897,0.823775237,0.307767306,947,3077,0.231180505,0.384354106,0.03179527,164,5158,,,0.352,915,,0.243574468,0.460425532,,,,,,,0.409733124,0.15583987,0.663626378,0.315068493,0,0.798377734,0.185612301,0.120522092,0.25070251,5.735167725,89417,15591,4.730314097,6.740021353,0.387394029,1051,2713,0.274335611,0.500452446,9.570904451,12,12538,,,131.6373544,86,65331,105.292892,162.5710618,,,,,,,100.1941261,57.26960019,162.7089836,,,,148.3009865,115.3870195,187.6843899,,,,8.6,,,,,1,,,,,0.115,575,5000,0.07268065,0.15731935,0.10822335,0.065064166,0.151382534,0.0088,0,0.019893984,0.0008,0,0.005481679,0.810114727,3460,4271,0.744946892,0.875282562,,,,,,,,,,,,,0.821470245,0.742418099,0.900522391,0.263,,4271,0.19074032,0.33525968,71.67563829,,,70.21671127,73.13456531,,,,,,,70.94103774,67.34500521,74.53707028,,,,71.96099075,70.34133491,73.58064658,,,,673.2965683,317,35311,596.5307064,750.0624303,,,,,,,719.5684046,556.514152,915.4674405,,,,669.2201788,580.8831096,757.5572479,,,,90.8940671,11,12102,45.37399081,162.6345936,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.167,,,0.145,0.191,0.205,,,0.179,0.233,0.141,,,0.122,0.161,459.7,49,10659,,,0.174,2250,,,,0.013052567,187.4087566,14358,,,,,,,,,,,,,,,,,,,,,,,,,,0.386,,,0.373,0.399,0.176367125,1103,6254,0.14896287,0.20377138,0.069256138,189,2729,0.047809329,0.090702946,0.000598905,7,11688,,,1669.714286,0.908522727,119.925,132,,,,,,,,2.754596049,,,,,,,2.105821447,,3.010431173,2.855020605,,,,,,,2.207550235,,3.116769379,0.282728946,,,,,-12784.9055,,,,,0.722143646,32677,45250,0.642999016,0.801288277,42364,,,36429.19149,48298.80851,,,,,,,22168,14650.89362,29685.10638,,,,49289,40925.93617,57652.06383,,,,,,0.969448991,1777,1833,,,72.81632948,,,,,0.290812954,,42364,,,6.546644845,4,611,,,12.88023528,12,93166,6.655405522,22.49917894,,,,,,,,,,,,,,,,,,,18.35418588,12,65331,9.483875674,32.06106902,18.36800294,,,,,,,,,,,,,19.8776421,9.089323724,37.73395647,,,,26.0213375,17,65331,15.15838801,41.66268206,,,,,,,,,,,,,,,,,,,27.90717644,26,93166,18.22989418,40.89047945,,,,,,,,,,,,,30.06388576,18.36380246,46.43123323,,,,70,,1200,,,16,68,0.456868396,4756,10410,,,0.564,,,,,24.14803055,,,,,0.599089332,2763,4612,0.545601104,0.652577561,0.128285779,571,4451,0.083953807,0.172617751,0.821118821,3787,4612,0.779055557,0.863182084,11688,,,,,0.22784052,2663,11688,,,0.191392882,2237,11688,,,0.224075975,2619,11688,,,0.004962355,58,11688,,,0.002994524,35,11688,,,0.000171116,2,11688,,,0.027635181,323,11688,,,0.723990418,8462,11688,,,0.003842541,45,11711,0,0.014036406,0.490075291,5728,11688,,,1,12577,12577,, -29,135,29135,MO,Moniteau County,2024,1,8283.73111,243,43914,6648.846851,9918.615369,0,,,,2,,,,2,,,,2,,,,2,7954.048309,6298.13351,9609.963108,,,,,2,,0.186,,,0.156,0.217,4.177662005,,,3.307669527,5.152461019,5.314379106,,,4.267366494,6.503326798,0.059506531,82,1378,0.04701569,0.071997372,0,,,,,,,,,,,,,0.059342422,0.046228842,0.072456001,,,,,,,0.209,,,0.168,0.256,0.418,,,0.336,0.498,8.2,0.039921129,0.106,,,0.28,,,0.229,0.334,0.581205972,8993,15473,,,0.177095422,,,0.142125564,0.217674076,0.272727273,3,11,0.11266692,0.445445377,251.9,39,15484,,,18.97479468,67,3531,14.70520525,24.0973185,,,,,,,,,,29.85074627,14.31459312,54.8965852,17.86874594,13.46118485,23.25862897,,,,,,,0.153683008,1884,12259,0.134619179,0.172746838,6.45828E-05,1,15484,,,15484,0.000328515,5,15220,,,3044,0.000459921,7,15220,,,2174.285714,2167,,,,,,,,,2088,0.44,,,,,,,,,0.43,0.47,,,,,,,,,0.47,0.863684771,8921,10329,0.839179234,0.888190308,0.487537388,1956,4012,0.418457411,0.556617365,0.022624434,160,7072,,,0.153,573,,0.094617021,0.211382979,,,,,,,,,,0.033670034,0,0.158852359,0.145006017,0.092836683,0.19717535,3.770635757,107350,28470,3.138490283,4.402781231,0.14728077,566,3843,0.081064145,0.213497395,16.79152674,26,15484,,,62.98419097,50,79385,46.74808054,83.03680376,,,,,,,,,,,,,59.39333946,42.80549492,80.28254087,,,,7.6,,,,,1,,,,,0.086238532,470,5450,0.057797802,0.114679262,0.058552753,0.034394476,0.082711029,0.025688073,0.009414111,0.041962036,0.011009174,0.001337817,0.020680532,0.77757901,5216,6708,0.748919221,0.8062388,,,,,,,,,,,,,0.762690028,0.713585081,0.811794975,0.404,,6708,0.347332185,0.460667815,76.23015221,,,74.82172567,77.63857875,,,,,,,,,,,,,76.37442656,74.94519669,77.80365643,,,,440.0702096,243,43914,383.3025063,496.8379129,,,,,,,,,,,,,438.1227552,378.9996063,497.2459041,,,,58.75440658,10,17020,28.17502172,108.0514456,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.128,,,0.109,0.148,0.179,,,0.155,0.206,0.099,,,0.084,0.116,180.4,23,12749,,,0.106,1670,,,,0.039921129,623.0490582,15607,,,,,,,,,,,,,,,,,,,,,,,,,,0.339,,,0.323,0.356,0.173707254,1468,8451,0.149877466,0.197537041,0.109359359,437,3996,0.078380636,0.140338083,0.000394218,6,15220,,,2536.666667,0.951589595,164.625,173,,,,,,,,3.011528391,,,,,,,,,3.048591455,2.880861665,,,,,,,,,2.898621163,0.087153478,,,,,-1475.16103,,,,,0.752406259,38226,50805,0.70109307,0.803719449,64519,,,57112.70213,71925.29787,,,,,,,,,,100543,27458.23404,173627.766,65015,57158.31915,72871.68085,,,,,,0.398909396,951,2384,,,,,,,,0.207923247,,64519,,,20.34883721,21,1032,,,,,,,,,,,,,,,,,,,,,,,,,,23.85997545,17,79385,13.89931497,38.20213205,21.41462493,,,,,,,,,,,,,21.08763353,11.22827673,36.06049556,,,,15.11620583,12,79385,7.810764135,26.40496951,,,,,,,,,,,,,15.55539843,7.765198851,27.83290464,,,,12.57116176,14,111366,6.872771112,21.09227334,,,,,,,,,,,,,11.08077888,5.531484892,19.82657424,,,,10.66666667,,1500,,,5,11,0.605243129,7157,11825,,,0.655,,,,,8.47800216,,,,,0.767703391,4369,5691,0.733100407,0.802306376,0.069552617,384,5521,0.044383763,0.094721471,0.767351959,4367,5691,0.732996256,0.801707663,15220,,,,,0.251051248,3821,15220,,,0.16826544,2561,15220,,,0.025032852,381,15220,,,0.005190539,79,15220,,,0.004599212,70,15220,,,0.000919842,14,15220,,,0.057227333,871,15220,,,0.892247043,13580,15220,,,0.013866741,200,14423,0.003381816,0.024351665,0.478975033,7290,15220,,,1,15473,15473,, -29,137,29137,MO,Monroe County,2024,1,9779.91615,156,23280,7259.026718,12300.80558,0,,,,2,,,,2,,,,2,,,,2,9615.946996,6995.905717,12235.98828,,,,,2,,0.191,,,0.16,0.223,4.392668143,,,3.532908832,5.393019873,5.486354287,,,4.420736474,6.667439456,0.094029851,63,670,0.071929026,0.116130676,0,,,,,,,,,,,,,0.092985318,0.069995254,0.115975382,,,,,,,0.224,,,0.177,0.269,0.413,,,0.337,0.493,7.5,0.057914,0.128,,,0.285,,,0.233,0.339,0.474498038,4112,8666,,,0.153901074,,,0.122903247,0.189128301,0.166666667,1,6,0.011498194,0.426636125,241,21,8712,,,27.30970366,47,1721,20.06614304,36.31611641,,,,,,,,,,,,,25.4735467,18.1141819,34.82317692,,,,,,,0.142749016,943,6606,0.123685186,0.161812846,0.000344353,3,8712,,,2904,0.00011558,1,8652,,,8652,0.00023116,2,8652,,,4326,3689,,,,,,,,,3770,0.45,,,,,,,,,0.45,0.33,,,,,,,0.38,,0.33,0.899737877,5492,6104,0.876345583,0.923130171,0.481721698,817,1696,0.396504725,0.566938672,0.026788106,100,3733,,,0.187,341,,0.119085106,0.254914894,,,,,,,,,,0.109090909,0,0.511084407,0.183192261,0.109809399,0.256575124,5.281303694,98359,18624,4.104701022,6.457906366,0.241944004,458,1893,0.135420965,0.348467043,9.182736456,8,8712,,,62.34989839,27,43304,41.08897592,90.71582867,,,,,,,,,,,,,62.33325853,40.33879833,92.01618595,,,,7.7,,,,,1,,,,,0.115281501,430,3730,0.07542618,0.155136823,0.096300326,0.053976209,0.138624444,0.01152815,0.003595231,0.019461069,0.014745308,0.006185704,0.023304913,0.820991091,2949,3592,0.790042605,0.851939577,,,,,,,,,,,,,0.801652893,0.74313191,0.860173875,0.384,,3592,0.315089051,0.452910949,76.25740079,,,74.29350873,78.22129284,,,,,,,,,,,,,76.34420138,74.31820862,78.37019414,,,,460.3118574,156,23280,379.3415003,541.2822144,,,,,,,,,,,,,450.6067286,367.6668426,533.5466146,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.132,,,0.113,0.151,0.186,,,0.16,0.213,0.104,,,0.088,0.12,271.9,20,7354,,,0.128,1110,,,,0.057914,511.9597632,8840,,,,,,,,,,,,,,,,,,,,,,,,,,0.354,,,0.336,0.371,0.163837012,772,4712,0.140007225,0.187666799,0.091913611,183,1991,0.064509356,0.119317867,0.000577901,5,8652,,,1730.4,0.943554688,120.775,128,,,,,,,,2.962371536,,,,,,,,,2.944265317,3.087090365,,,,,,,,,3.070496733,0.088289431,,,,,-2833.082,,,,,0.7395455,37262,50385,0.631239703,0.847851296,50276,,,44425.78723,56126.21277,80000,23012.25532,136987.7447,,,,35132,8013.702128,62250.29787,60357,42901.68085,77812.31915,50456,46400.17021,54511.82979,,,,,,0.352387844,487,1382,,,41.64789157,,,,,0.247553505,,50276,,,14.55301455,7,481,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.54396559,10,60445,7.933474557,30.42494175,,,,,,,,,,,,,,,,,,,,,800,,,0,-888,0.665133531,4483,6740,,,0.53,,,,,14.48814569,,,,,0.758540146,2598,3425,0.734246642,0.78283365,0.112641567,368,3267,0.070711981,0.154571154,0.80729927,2765,3425,0.769857076,0.844741465,8652,,,,,0.216019418,1869,8652,,,0.250346741,2166,8652,,,0.02727693,236,8652,,,0.00566343,49,8652,,,0.004507628,39,8652,,,0.000346741,3,8652,,,0.019533056,169,8652,,,0.921058715,7969,8652,,,0.005358013,44,8212,0,0.015152443,0.490984743,4248,8652,,,1,8666,8666,, -29,139,29139,MO,Montgomery County,2024,1,10618.44323,225,30935,8475.3759,12761.51057,0,,,,2,,,,2,,,,2,,,,2,11140.07804,8841.944927,13438.21115,,,,,2,,0.197,,,0.164,0.23,4.376552911,,,3.503451336,5.293248508,5.559582378,,,4.509942766,6.642263456,0.070215176,62,883,0.053361973,0.087068378,0,,,,,,,,,,,,,0.064362336,0.047757108,0.080967564,,,,,,,0.231,,,0.185,0.278,0.436,,,0.365,0.506,7.4,0.059058351,0.134,,,0.288,,,0.24,0.338,0.330153683,3738,11322,,,0.162170035,,,0.130270348,0.197041162,0.333333333,6,18,0.206402932,0.459068619,201.5,23,11415,,,27.71362587,60,2165,21.14841614,35.67292998,,,,,,,,,,,,,26.79900744,20.13223919,34.96689151,,,,,,,0.138475316,1237,8933,0.120602976,0.156347657,0.000175208,2,11415,,,5707.5,0.000174368,2,11470,,,5735,0.000348736,4,11470,,,2867.5,2800,,,,,,,,,2739,0.42,,,,,,,,,0.42,0.38,,,,,,,,,0.38,0.877444265,7045,8029,0.854555091,0.900333438,0.567817014,1415,2492,0.476882959,0.65875107,0.024243466,141,5816,,,0.189,457,,0.117510638,0.260489362,,,,,,,,,,0.414285714,0,0.992730285,0.185739437,0.135695569,0.235783305,5.099370787,113461,22250,4.26269145,5.936050123,0.230799683,583,2526,0.170944752,0.290654615,7.008322383,8,11415,,,106.5837294,61,57232,81.52810763,136.9112593,,,,,,,,,,,,,113.8633267,87.09642275,146.2622066,,,,7.8,,,,,1,,,,,0.119119119,595,4995,0.087080214,0.151158024,0.083333333,0.05652804,0.110138626,0.031031031,0.01254204,0.049520023,0.008008008,0,0.017433845,0.785771383,3932,5004,0.759775985,0.811766781,,,,,,,,,,,,,0.737020316,0.611951462,0.86208917,0.448,,5004,0.385665631,0.510334369,73.80892376,,,72.26562307,75.35222445,,,,,,,,,,,,,73.31088427,71.69636631,74.92540223,,,,519.8773344,225,30935,446.4573341,593.2973347,,,,,,,,,,,,,540.5469154,463.1784505,617.9153803,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.138,,,0.117,0.158,0.192,,,0.167,0.218,0.103,,,0.087,0.119,82.6,8,9683,,,0.134,1520,,,,0.059058351,722.6379868,12236,,,,,,,,,,,,,,,,,,,,,,,,,,0.344,,,0.326,0.361,0.161141805,1050,6516,0.138503507,0.183780103,0.079009434,201,2544,0.055179647,0.102839221,0.00043592,5,11470,,,2294,0.905040323,112.225,124,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.028438789,,,,,107.89245,,,,,0.774148494,41571,53699,0.70004371,0.848253279,56538,,,49120.97872,63955.02128,,,,,,,,,,,,,62593,55015.12766,70170.87234,,,,,,0.366,549,1500,,,46.09570573,,,,,0.244260497,,56538,,,4.405286344,3,681,,,,,,,,,,,,,,,,,,,,,,,,,,34.42787413,18,57232,19.67850475,55.90871068,31.45093654,,,,,,,,,,,,,37.06357215,21.1850339,60.18891914,,,,27.95638804,16,57232,15.97949129,45.3994227,,,,,,,,,,,,,29.8657906,17.07087983,48.50017284,,,,23.58636956,19,80555,14.20053524,36.83303777,,,,,,,,,,,,,25.12363473,15.12606929,39.23366775,,,,22,,1000,,,8,14,0.655909091,5772,8800,,,0.554,,,,,14.27612501,,,,,0.74332472,3452,4644,0.711346825,0.775302615,0.087932647,376,4276,0.059633058,0.116232237,0.778854436,3617,4644,0.737555044,0.820153828,11470,,,,,0.21717524,2491,11470,,,0.204010462,2340,11470,,,0.015693113,180,11470,,,0.00374891,43,11470,,,0.005666957,65,11470,,,0.000523104,6,11470,,,0.022929381,263,11470,,,0.934088928,10714,11470,,,0.000929973,10,10753,0,0.008967749,0.494681779,5674,11470,,,1,11322,11322,, -29,141,29141,MO,Morgan County,2024,1,10113.37573,453,56394,8474.384806,11752.36665,0,,,,2,,,,2,,,,2,,,,2,10108.7225,8424.210893,11793.2341,,,,,2,,0.219,,,0.185,0.253,4.465156728,,,3.662422623,5.452111194,5.670072012,,,4.738134548,6.789394711,0.072289157,132,1826,0.060411013,0.084167301,0,,,,,,,,,,,,,0.071469411,0.059396295,0.083542527,,,,,,,0.256,,,0.209,0.304,0.41,,,0.35,0.483,7.4,0.014044292,0.155,,,0.311,,,0.262,0.369,0.441445301,9273,21006,,,0.152304126,,,0.125849782,0.189328,0.4,10,25,0.296401693,0.498317032,140.3,30,21379,,,25.41106129,102,4014,20.47956411,30.34255847,,,,,,,,,,,,,24.56331878,19.75180899,30.19248903,,,,,,,0.22027907,3552,16125,0.195257793,0.245300346,0.000280649,6,21379,,,3563.166667,0.000183613,4,21785,,,5446.25,0.000459031,10,21785,,,2178.5,2801,,,,,,,,,2830,0.41,,,,,,,,,0.41,0.37,,,,,,,,,0.37,0.797293676,11902,14928,0.76602451,0.828562842,0.397371565,1663,4185,0.323911273,0.470831858,0.029685049,246,8287,,,0.253,1227,,0.175553192,0.330446809,,,,,,,,,,,,,0.247494757,0.17312712,0.321862393,5.133874135,99361,19354,4.46519378,5.802554489,0.146722164,705,4805,0.081491031,0.211953298,13.09696431,28,21379,,,81.37563575,84,103225,64.90839403,100.7485743,,,,,,,,,,,,,80.49037211,63.62429902,100.4556272,,,,7.4,,,,,1,,,,,0.130890052,1000,7640,0.10684023,0.154939874,0.110759076,0.085327293,0.136190858,0.015052356,0.006036728,0.024067984,0.015052356,0.00679424,0.023310472,0.665319953,5105,7673,0.612219182,0.718420724,,,,,,,,,,,,,0.67475648,0.624741267,0.724771693,0.347,,7673,0.283839824,0.410160176,74.8438556,,,73.59599601,76.0917152,,,,,,,,,,,,,74.72434076,73.46010365,75.98857787,,,,509.8288076,453,56394,457.2799068,562.3777083,,,,,,,,,,,,,515.8288249,461.3962949,570.261355,,,,67.96776386,14,20598,37.15860897,114.0383587,,,,,,,,,,,,,63.83657836,32.98529157,111.5096555,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.15,,,0.128,0.172,0.198,,,0.172,0.227,0.113,,,0.097,0.13,,,,,,0.155,3230,,,,0.014044292,288.8208739,20565,,,,,,,,,,,,,,,,,,,,,,,,,,0.35,,,0.333,0.366,0.246720085,2802,11357,0.215741361,0.277698808,0.157188626,785,4994,0.116677988,0.197699265,0.000550838,12,21785,,,1815.416667,0.966791045,129.55,134,,,0.306829766,301,981,0.130545465,0.483114066,2.754763886,,,,,,,,,2.75443499,2.755654594,,,,,,,,,2.751343738,0.050955399,,,,,-3944.6615,,,,,0.871415903,41272,47362,0.668384229,1.074447577,51700,,,45270.7234,58129.2766,,,,33494,32439.53192,34548.46809,,,,116066,115426.1702,116705.8298,48047,43085.6383,53008.3617,,,,,,0.725352113,1545,2130,,,,,,,,0.238646035,,51700,,,2.840909091,4,1408,,,,,,,,,,,,,,,,,,,,,,,,,,23.54085314,22,103225,14.17313139,36.76195824,21.31266651,,,,,,,,,,,,,24.58041587,14.56791227,38.84765433,,,,14.53136353,15,103225,8.133093856,23.96727428,,,,,,,,,,,,,14.44698987,7.898303796,24.23959417,,,,24.37173158,35,143609,16.97580403,33.89517883,,,,,,,,,,,,,25.18630458,17.44224809,35.19533616,,,,12.63157895,,1900,,,5,19,0.603882877,9487,15710,,,0.404,,,,,6.336940836,,,,,0.798209719,6242,7820,0.761552616,0.834866822,0.119012675,892,7495,0.091084788,0.146940563,0.726214834,5679,7820,0.691939634,0.760490034,21785,,,,,0.228138628,4970,21785,,,0.23722745,5168,21785,,,0.008262566,180,21785,,,0.00803305,175,21785,,,0.004773927,104,21785,,,0.000688547,15,21785,,,0.027679596,603,21785,,,0.93197154,20303,21785,,,0.007133101,141,19767,0.000514243,0.013751959,0.49226532,10724,21785,,,1,21006,21006,, -29,143,29143,MO,New Madrid County,2024,1,14166.11038,453,45660,12041.30976,16290.911,0,,,,2,,,,2,16197.82849,11005.63859,22991.52459,,,,,2,14025.00525,11666.57212,16383.43839,,,,,2,,0.241,,,0.207,0.277,5.116079813,,,4.19416132,6.145549966,5.933787884,,,4.826438993,7.140859979,0.10976431,163,1485,0.093865086,0.125663534,0,,,,,,,0.213592233,0.167894626,0.25928984,,,,0.084714549,0.068153096,0.101276002,,,,,,,0.263,,,0.219,0.31,0.467,,,0.39,0.543,7.3,0.025341054,0.156,,,0.334,,,0.282,0.388,0.453450164,7452,16434,,,0.142929065,,,0.113168184,0.177373105,0.225806452,7,31,0.133616464,0.327772988,667.3,107,16035,,,43.28878559,149,3442,36.33792882,50.23964236,,,,,,,52.63157895,36.86251084,72.86429019,,,,37.4800638,30.2877067,45.86610595,,,,66.22516556,31.75754103,121.7904374,0.140449885,1767,12581,0.122577544,0.158322225,6.23636E-05,1,16035,,,16035,6.37146E-05,1,15695,,,15695,0.000318573,5,15695,,,3139,3943,,,,,,,,,4124,0.37,,,,,,,0.2,,0.38,0.34,,,,,,,0.26,,0.35,0.833214222,9327,11194,0.803611873,0.86281657,0.431680441,1567,3630,0.355843035,0.507517846,0.029767787,241,8096,,,0.248,905,,0.143148936,0.352851064,,,,,,,0.141242938,0.057686868,0.224799008,0.319148936,0,0.691711412,0.200307574,0.135334679,0.265280469,4.997173959,95486,19108,4.184816246,5.809531672,0.377963011,1451,3839,0.309947545,0.445978478,11.84908014,19,16035,,,113.3652961,96,84682,91.82625377,138.4384297,,,,,,,104.8375019,57.31563783,175.8995142,,,,120.1637788,95.42738547,149.3526053,,,,8.6,,,,,1,,,,,0.120192308,875,7280,0.093175393,0.147209223,0.094011142,0.068467881,0.119554403,0.021978022,0.011901154,0.03205489,0.008928571,0.001381575,0.016475568,0.87110415,5562,6385,0.842454462,0.899753839,,,,,,,0.908185841,0.834379603,0.981992079,,,,0.865113658,0.834499251,0.895728064,0.275,,6385,0.226425798,0.323574203,70.50193621,,,69.12063608,71.88323635,,,,,,,68.86323266,65.06157808,72.66488724,,,,70.54811099,69.03796265,72.05825932,,,,701.4616868,453,45660,632.5162529,770.4071207,,,,,,,758.7135836,584.3019104,968.8603081,,,,704.9761285,628.5995856,781.3526714,,,,106.2197569,18,16946,62.95255978,167.87301,,,,,,,,,,,,,82.57638315,39.59858544,151.8609087,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.156,,,0.135,0.179,0.205,,,0.178,0.231,0.127,,,0.11,0.146,89.8,12,13360,,,0.156,2610,,,,0.025341054,480.3650104,18956,,,20.07870854,10,49804,9.628521195,36.92545989,,,,,,,,,,,,,,,,,,,0.351,,,0.337,0.364,0.172526115,1536,8903,0.147504838,0.197547391,0.06401249,246,3843,0.044948661,0.08307632,0.000573431,9,15695,,,1743.888889,0.943195266,159.4,169,,,,,,,,2.844484031,,,,,,,2.220857613,,3.126405891,2.789257705,,,,,,,2.244881073,,3.07783086,0.092271073,,,,,-5756.24425,,,,,0.768404774,35279,45912,0.674823533,0.861986016,48162,,,41371.70213,54952.29787,,,,,,,32782,23776.7234,41787.2766,63750,41090.25532,86409.74468,48052,42650.97872,53453.02128,,,,,,0.901698591,2495,2767,,,26.98069448,,,,,0.264004817,,48162,,,14.98127341,16,1068,,,9.933363685,12,120805,5.132713968,17.35158731,,,,,,,,,,,,,,,,,,,20.08010025,19,84682,11.69739837,32.15018568,22.43688151,,,,,,,,,,,,,23.78493666,13.5951464,38.62524701,,,,21.25599301,18,84682,12.59764859,33.59363297,,,,,,,,,,,,,20.76904818,11.35463191,34.84693378,,,,24.83340921,30,120805,16.75499691,35.45123579,,,,,,,,,,,,,26.99755984,17.63570242,39.55768037,,,,33.125,,1600,,,8,45,0.549242424,7250,13200,,,0.523,,,,,14.54137528,,,,,0.648397104,4389,6769,0.618953064,0.677841145,0.116650687,730,6258,0.083170037,0.150131337,0.814743684,5515,6769,0.785295327,0.844192042,15695,,,,,0.238228735,3739,15695,,,0.200828289,3152,15695,,,0.159350112,2501,15695,,,0.00363173,57,15695,,,0.004141446,65,15695,,,0.000637146,10,15695,,,0.02236381,351,15695,,,0.788977381,12383,15695,,,0.001764821,27,15299,0,0.007390552,0.523351386,8214,15695,,,0.874285019,14368,16434,, -29,145,29145,MO,Newton County,2024,1,9693.797088,1107,162344,8801.695034,10585.89914,0,,,,2,,,,2,,,,2,,,,2,10116.8458,9113.822882,11119.86871,,,,,2,,0.187,,,0.156,0.221,4.214296712,,,3.414942196,5.101932434,5.461620452,,,4.540363924,6.475366088,0.075602779,370,4894,0.068196121,0.083009437,0,,,,,,,,,,0.088114754,0.062964605,0.113264904,0.070418778,0.062228734,0.078608823,0.07960199,0.04218164,0.11702234,0.093220339,0.056126115,0.130314563,0.217,,,0.175,0.264,0.408,,,0.347,0.473,7.7,0.056952482,0.121,,,0.275,,,0.23,0.327,0.532686537,31241,58648,,,0.160387493,,,0.130258789,0.193653352,0.333333333,26,78,0.275465947,0.391340428,362,215,59386,,,31.85350466,414,12997,28.78509654,34.92191277,26.52519894,12.71986392,48.78078526,,,,,,,54.07801418,41.36539589,69.46547156,27.64574644,24.43606477,30.8554281,142.8571429,92.44961056,210.885324,46.15384615,30.41567544,67.15142298,0.149569155,7134,47697,0.132888304,0.166250006,0.000117873,7,59386,,,8483.714286,0.000249954,15,60011,,,4000.733333,0.0003666,22,60011,,,2727.772727,2506,,,,,,,,,2486,0.39,,,,,0.25,0.27,,,0.39,0.38,,,,,0.38,0.4,,0.28,0.38,0.893430584,35890,40171,0.880320495,0.906540674,0.580310505,7999,13784,0.532929321,0.627691689,0.02422531,652,26914,,,0.196,2701,,0.14,0.252,0.109289618,0,0.395871083,0.244239631,0.093576361,0.394902902,,,,0.361131255,0.238623063,0.483639446,0.175209051,0.132986878,0.217431223,3.921210401,110535,28189,3.346950992,4.49546981,0.142467131,1983,13919,0.100848686,0.184085576,11.45051022,68,59386,,,82.35684092,241,292629,71.95890277,92.75477906,,,,,,,,,,,,,89.91440149,78.16558636,101.6632166,,,,8.9,,,,,0,,,,,0.117966102,2610,22125,0.098844184,0.137088019,0.083200727,0.067118363,0.099283092,0.024632768,0.015046104,0.034219432,0.015367232,0.009016645,0.021717819,0.795595795,20738,26066,0.76737715,0.823814441,0.696902655,0.593643551,0.800161759,,,,,,,0.896888889,0.79889747,0.994880308,0.810792952,0.786376344,0.83520956,0.263,,26066,0.234181717,0.291818283,74.97179647,,,74.26395092,75.67964203,,,,,,,,,,91.35526358,63.93250651,118.7780207,74.48760082,73.72642098,75.24878065,,,,502.2455308,1107,162344,471.0632526,533.427809,,,,,,,,,,,,,521.721797,487.8745673,555.5690267,,,,44.17394719,27,61122,29.11090954,64.27077394,,,,,,,,,,,,,52.73482819,34.1272003,77.8470093,,,,5.347593583,26,4862,3.493225672,7.835463612,,,,,,,,,,,,,6.095944872,3.864306132,9.146910388,,,,,,,0.13,,,0.111,0.15,0.179,,,0.155,0.206,0.105,,,0.09,0.122,24.2,12,49535,,,0.121,7100,,,,0.056952482,3309.73656,58114,,,18.74222624,33,176073,12.90128616,26.32105392,,,,,,,,,,,,,21.30620343,14.57342738,30.07800206,,,,0.329,,,0.313,0.344,0.185281436,6274,33862,0.162643139,0.207919734,0.064371773,935,14525,0.046499432,0.082244113,0.000349936,21,60011,,,2857.666667,0.903792517,531.43,588,,,0.096497253,281,2912,0.049587833,0.143406672,2.965561592,,,,,,2.326132592,,2.660408236,3.090651725,2.723084319,,,,,,2.204130032,,2.347444846,2.832740133,0.075135588,,,,,-3676.6964,,,,,0.769020679,39420,51260,0.685736692,0.852304666,57423,,,51016.3617,63829.6383,77315,50150.23404,104479.766,58750,43763.44681,73736.55319,,,,44395,34355.51064,54434.48936,62343,57808.19149,66877.80851,,,,,,0.497968783,4658,9354,,,68.50312451,,,,,0.244257528,,57423,,,9.319401299,33,3541,,,3.415150584,14,409938,1.867094604,5.730042378,,,,,,,,,,,,,3.411290804,1.762663737,5.958838526,,,,19.26499661,54,292629,14.34405536,25.32991271,18.45340004,,,,,,,,,,,,,21.5722477,15.95926761,28.51965549,,,,10.93534817,32,292629,7.479770054,15.43744881,,,,,,,,,,,,,11.98858687,8.088649215,17.1144532,,,,18.78332821,77,409938,14.82350889,23.47593746,,,,,,,,,,,,,19.61492212,15.26158021,24.82393933,,,,24.38596491,,5700,,,8,131,0.655474789,28405,43335,,,0.647,,,,,34.40006991,,,,,0.743122186,16342,21991,0.724654273,0.7615901,0.084463916,1793,21228,0.067206092,0.101721739,0.844845619,18579,21991,0.82226197,0.867429267,60011,,,,,0.235473497,14131,60011,,,0.190498409,11432,60011,,,0.010364767,622,60011,,,0.026411825,1585,60011,,,0.016513639,991,60011,,,0.014430688,866,60011,,,0.062588525,3756,60011,,,0.84114579,50478,60011,,,0.014664817,814,55507,0.008581542,0.020748092,0.497192181,29837,60011,,,0.632280726,37082,58648,, -29,147,29147,MO,Nodaway County,2024,1,5172.871532,210,60179,4090.415192,6255.327872,0,,,,2,,,,2,,,,2,,,,2,5343.240121,4196.519282,6489.96096,,,,,2,,0.172,,,0.147,0.201,3.898308436,,,3.187196978,4.68780094,4.950974916,,,4.161845178,5.835058665,0.070517126,105,1489,0.057513133,0.083521118,0,,,,,,,,,,,,,0.071277347,0.05788089,0.084673803,,,,,,,0.196,,,0.158,0.24,0.397,,,0.344,0.454,5.2,0.313131495,0.115,,,0.249,,,0.208,0.296,0.643802081,13675,21241,,,0.194220496,,,0.162087695,0.229444254,0.166666667,2,12,0.039062389,0.344663233,775,164,21160,,,4.04470463,38,9395,2.862273725,5.551673115,,,,,,,,,,,,,4.474543476,3.150491543,6.167568768,,,,,,,0.105121294,1560,14840,0.088440443,0.121802145,0.000378072,8,21160,,,2645,0.000387034,8,20670,,,2583.75,0.001306241,27,20670,,,765.5555556,1772,,,,,,,,,1779,0.48,,,,,,,,,0.48,0.38,,,,,,,,,0.38,0.941882805,11766,12492,0.931679014,0.952086596,0.642474319,2877,4478,0.566879796,0.718068842,0.021940696,239,10893,,,0.154,506,,0.107531915,0.200468085,,,,,,,,,,0.363636364,0.027196975,0.700075752,0.172527111,0.121542816,0.223511407,4.489520503,103461,23045,3.941371689,5.037669318,0.255182482,874,3425,0.181835958,0.328529005,13.23251418,28,21160,,,53.74825774,59,109771,40.91566409,69.33133648,,,,,,,,,,,,,56.15542245,42.53156857,72.75586322,,,,7.4,,,,,1,,,,,0.125146886,1065,8510,0.090502999,0.159790774,0.108422301,0.074008667,0.142835936,0.013513514,0.006419356,0.020607671,0.009400705,0.003271485,0.015529925,0.829554656,8196,9880,0.798517462,0.86059185,,,,,,,,,,,,,0.813123644,0.805046384,0.821200904,0.16,,9880,0.132934565,0.187065436,80.47244932,,,79.26244258,81.68245606,,,,,,,,,,,,,80.20230753,78.96490508,81.43970997,,,,318.23453,210,60179,272.9788943,363.4901658,,,,,,,,,,,,,324.4878962,277.6490158,371.3267766,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.125,,,0.108,0.145,0.174,,,0.151,0.198,0.105,,,0.09,0.121,63.8,12,18815,,,0.115,2480,,,,0.313131495,7317.883049,23370,,,,,,,,,,,,,,,,,,,,,,,,,,0.304,,,0.287,0.32,0.117652099,1373,11670,0.09739678,0.137907419,0.060678883,202,3329,0.041615053,0.079742712,0.00067731,14,20670,,,1476.428571,0.910163551,194.775,214,,,,,,,,3.109299585,,,,,,,,,3.098823583,3.078047831,,,,,,,,,3.07247912,0.093478671,,,,,-614.9902286,,,,,0.830478812,42234,50855,0.758765335,0.90219229,57507,,,50920.44681,64093.55319,,,,,,,,,,49950,19842.25532,80057.74468,54784,51403.74468,58164.25532,,,,,,0.32306338,734,2272,,,61.76812877,,,,,0.230789295,,57507,,,9.661835749,10,1035,,,,,,,,,,,,,,,,,,,,,,,,,,20.55104617,19,109771,11.97174172,32.90421572,17.30876097,,,,,,,,,,,,,20.14848323,11.51659906,32.71987446,,,,10.02086161,11,109771,5.002378012,17.93008947,,,,,,,,,,,,,10.83701135,5.40979702,19.3904068,,,,13.52648292,21,155251,8.373106121,20.676666,,,,,,,,,,,,,13.92767359,8.50738486,21.51016226,,,,48.46153846,,1300,,,9,54,0.537663044,9893,18400,,,0.621,,,,,34.68623403,,,,,0.634184723,5239,8261,0.627109879,0.641259568,0.114128394,912,7991,0.086363432,0.141893357,0.842755114,6962,8261,0.811106064,0.874404165,20670,,,,,0.165021771,3411,20670,,,0.179632317,3713,20670,,,0.019061442,394,20670,,,0.003870344,80,20670,,,0.014610547,302,20670,,,0.000290276,6,20670,,,0.018626028,385,20670,,,0.93357523,19297,20670,,,0.002587322,52,20098,0,0.008219608,0.500387034,10343,20670,,,0.472152912,10029,21241,, -29,149,29149,MO,Oregon County,2024,1,10848.40829,218,26499,8399.374255,13297.44232,0,,,,2,,,,2,,,,2,,,,2,11197.08561,8613.738201,13780.43303,,,,,2,,0.25,,,0.214,0.285,5.206186564,,,4.25792312,6.310562386,6.207829217,,,5.054775002,7.471303256,0.093830334,73,778,0.073340301,0.114320368,0,,,,,,,,,,,,,0.094086022,0.073107463,0.11506458,,,,,,,0.293,,,0.242,0.343,0.421,,,0.341,0.502,5.9,0.086895082,0.189,,,0.357,,,0.3,0.415,0.65940938,5694,8635,,,0.138848506,,,0.109671838,0.171589843,0.153846154,4,26,0.064169884,0.268836156,289.7,25,8631,,,32.91608716,71,2157,25.70773716,41.51916509,,,,,,,,,,,,,34.50025368,26.79079693,43.73729232,,,,,,,0.147264438,969,6580,0.127009119,0.167519757,,0,8631,,,,0.000114521,1,8732,,,8732,0.000458085,4,8732,,,2183,3426,,,,,,,,,3416,0.27,,,,,,,,,0.27,0.26,,,,,,,,,0.26,0.85762987,5283,6160,0.817673002,0.897586739,0.501398993,896,1787,0.386438527,0.616359458,0.031408038,118,3757,,,0.313,617,,0.202191489,0.423808511,,,,,,,,,,0.565789474,0.278948979,0.852629969,0.353881279,0.270954495,0.436808062,4.226752227,76407,18077,3.029375038,5.424129415,0.303509639,614,2023,0.196205749,0.41081353,3.475842892,3,8631,,,118.4132623,60,50670,90.36179386,152.4213409,,,,,,,,,,,,,126.2998358,96.38008031,162.5729243,,,,7.5,,,,,0,,,,,0.173255814,745,4300,0.129013798,0.21749783,0.141866029,0.101086469,0.182645589,0.027906977,0.007720581,0.048093372,0.009069767,0,0.023982391,0.760686428,2438,3205,0.711457885,0.80991497,,,,,,,,,,,,,0.752221463,0.699806695,0.80463623,0.284,,3205,0.205560535,0.362439465,73.75514845,,,71.9236161,75.5866808,,,,,,,,,,,,,73.18376366,71.30140458,75.06612274,,,,534.0356998,218,26499,456.2462804,611.8251191,,,,,,,,,,,,,552.6415735,471.5811184,633.7020287,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.166,,,0.143,0.189,0.214,,,0.187,0.242,0.126,,,0.108,0.147,151.6,11,7255,,,0.189,1680,,,,0.086895082,945.5053846,10881,,,,,,,,,,,,,,,,,,,,,,,,,,0.365,,,0.346,0.382,0.182890223,853,4664,0.155485968,0.210294478,0.061133201,123,2012,0.042069371,0.080197031,0.000458085,4,8732,,,2183,,,,,,,,,,,2.869689156,,,,,,,,,2.872702638,3.124247965,,,,,,,,,3.130861226,0.076994612,,,,,-8569.14075,,,,,0.885642415,32039,36176,0.69739956,1.07388527,45273,,,40926.44681,49619.55319,18182,12826.25532,23537.74468,,,,,,,,,,42608,34688.17021,50527.82979,,,,,,0.629004077,1080,1717,,,,,,,,0.312990082,,45273,,,9.861932939,5,507,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,19.73554371,10,50670,9.463960324,36.29436756,,,,,,,,,,,,,21.04997264,10.09428008,38.71164914,,,,40.04861073,29,72412,26.82118314,57.51648544,,,,,,,,,,,,,42.70294945,28.59883544,61.32855861,,,,,,1000,,,-888,6,0.58111588,4739,8155,,,0.418,,,,,10.92409756,,,,,0.709133905,2399,3383,0.645730902,0.772536907,0.105467486,326,3091,0.065885986,0.145048987,0.71149867,2407,3383,0.683431719,0.739565621,8732,,,,,0.231333028,2020,8732,,,0.230187815,2010,8732,,,0.004695373,41,8732,,,0.014658727,128,8732,,,0.004351809,38,8732,,,0.001145213,10,8732,,,0.021873569,191,8732,,,0.932546954,8143,8732,,,0,0,8260,0,0.009808871,0.499198351,4359,8732,,,1,8635,8635,, -29,151,29151,MO,Osage County,2024,1,5829.730007,178,37348,4497.853266,7161.606748,0,,,,2,,,,2,,,,2,,,,2,5903.49526,4534.840143,7272.150377,,,,,2,,0.153,,,0.129,0.181,3.77200063,,,3.0098468,4.632225318,5.016587505,,,4.054582662,6.065163693,0.075069509,81,1079,0.059346644,0.090792374,0,,,,,,,,,,,,,0.076704546,0.060653438,0.092755653,,,,,,,0.185,,,0.145,0.225,0.329,,,0.263,0.402,8.8,0.03639646,0.081,,,0.239,,,0.194,0.285,0.313921953,4167,13274,,,0.185263363,,,0.150185909,0.224604273,0.25,3,12,0.099776571,0.4182543,127.1,17,13379,,,6.662225183,20,3002,4.069460222,10.28926646,,,,,,,,,,,,,5.878284924,3.42431759,9.411703602,,,,,,,0.098548297,1059,10746,0.084250425,0.112846169,0.000224232,3,13379,,,4459.666667,0.000223897,3,13399,,,4466.333333,7.46324E-05,1,13399,,,13399,3163,,,,,,,,,3172,0.57,,,,,,,,,0.57,0.56,,,,,,,,,0.56,0.927624309,8395,9050,0.910990264,0.944258355,0.616366612,1883,3055,0.531013983,0.701719242,0.019148936,135,7050,,,0.087,259,,0.051255319,0.122744681,,,,,,,,,,0.054545455,0,0.660114194,0.061188811,0.023748223,0.098629399,3.638083116,122909,33784,2.895277302,4.380888931,0.106168831,327,3080,0.060116492,0.152221171,8.221840197,11,13379,,,98.66725573,67,67905,76.46576795,125.303927,,,,,,,,,,,,,99.88346929,77.24986791,127.0762632,,,,7.5,,,,,1,,,,,0.072037915,380,5275,0.047790589,0.096285241,0.046507177,0.024885368,0.068128986,0.022369668,0.006158811,0.038580526,0.004739337,0.000168771,0.009309902,0.775501047,5185,6686,0.743385234,0.80761686,,,,,,,,,,,,,0.722440538,0.659678028,0.785203048,0.362,,6686,0.308224348,0.415775652,78.53103262,,,77.23275267,79.82931258,,,,,,,,,,,,,78.36398785,77.05503494,79.67294075,,,,338.7845578,178,37348,286.7845912,390.7845245,,,,,,,,,,,,,341.4851087,288.5430548,394.4271627,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.114,,,0.097,0.131,0.168,,,0.145,0.192,0.087,,,0.074,0.102,,,,,,0.081,1080,,,,0.03639646,505.1100754,13878,,,,,,,,,,,,,,,,,,,,,,,,,,0.32,,,0.302,0.341,0.110420712,853,7725,0.093739861,0.127101563,0.06998739,222,3172,0.048540581,0.091434198,7.46324E-05,1,13399,,,13399,0.964534884,165.9,172,,,,,,,,3.038138079,,,,,,,,,3.076998221,3.067091684,,,,,,,,,3.085674343,,,,,,335.1979333,,,,,0.860561008,44454,51657,0.78566231,0.935459707,69094,,,59792.04255,78395.95745,11964,6297.276596,17630.7234,,,,,,,63241,58402.3617,68079.6383,71322,67114.85106,75529.14894,,,,,,0.316095669,489,1547,,,,,,,,0.153877327,,69094,,,28.76712329,21,730,,,,,,,,,,,,,,,,,,,,,,,,,,28.58693694,20,67905,16.94243058,45.17968494,29.45291216,,,,,,,,,,,,,29.2907128,17.35953275,46.29195421,,,,29.45291216,20,67905,17.99060391,45.48763405,,,,,,,,,,,,,30.26771797,18.48830847,46.74603554,,,,14.70634579,14,95197,8.040096092,24.67474933,,,,,,,,,,,,,15.09499062,8.252571837,25.32682932,,,,,,1300,,,-888,8,0.719027182,7539,10485,,,0.548,,,,,16.29768309,,,,,0.831800766,4342,5220,0.809447872,0.85415366,0.063485804,322,5072,0.039509221,0.087462388,0.78467433,4096,5220,0.759900169,0.809448491,13399,,,,,0.225539219,3022,13399,,,0.182625569,2447,13399,,,0.004328681,58,13399,,,0.005373535,72,13399,,,0.001716546,23,13399,,,0.001044854,14,13399,,,0.010970968,147,13399,,,0.969102172,12985,13399,,,0.001105933,14,12659,0,0.007723312,0.486752743,6522,13399,,,1,13274,13274,, -29,153,29153,MO,Ozark County,2024,1,11292.33587,205,23703,8154.25983,14430.41191,0,,,,2,,,,2,,,,2,,,,2,11284.61973,8064.307701,14504.93176,,,,,2,,0.242,,,0.207,0.283,5.08589848,,,4.148640753,6.122343948,6.059694632,,,4.951085335,7.252201475,0.097069597,53,546,0.072236636,0.121902558,0,,,,,,,,,,,,,0.097142857,0.07180958,0.122476134,,,,,,,0.278,,,0.23,0.332,0.4,,,0.325,0.48,5.2,0.177406226,0.179,,,0.339,,,0.284,0.401,0.29416579,2516,8553,,,0.137109082,,,0.107889989,0.169342054,0.333333333,5,15,0.193378406,0.471634149,136.6,12,8782,,,29.96941896,49,1635,22.17154113,39.62116122,,,,,,,,,,,,,29.96742671,21.93992274,39.97234769,,,,,,,0.177695287,1101,6196,0.1538655,0.201525075,0.000113869,1,8782,,,8782,0.000559284,5,8940,,,1788,0.000111857,1,8940,,,8940,2506,,,,,,,,,2457,0.35,,,,,,,,,0.35,0.35,,,,,,,,,0.35,0.809371184,5303,6552,0.764519439,0.85422293,0.440711463,669,1518,0.330040946,0.551381979,0.037146226,126,3392,,,0.314,527,,0.193659575,0.434340426,,,,,,,,,,0.7625,0.526191252,0.998808749,0.257565568,0.172686384,0.342444753,4.707698076,75342,16004,3.340476953,6.074919198,0.196978852,326,1655,0.099700338,0.294257366,10.24823503,9,8782,,,108.3064409,49,45242,80.12570123,143.1868587,,,,,,,,,,,,,109.2794531,80.29443179,145.3185062,,,,7.5,,,,,1,,,,,0.115196078,470,4080,0.07290401,0.157488147,0.071446863,0.037099382,0.105794344,0.020833333,0.004839214,0.036827453,0.032843137,0.007790926,0.057895348,0.727178423,2103,2892,0.652564694,0.801792152,,,,,,,,,,,,,0.628390075,0.54124921,0.715530941,0.522,,2892,0.408934,0.635066,74.35990367,,,72.03040651,76.68940084,,,,,,,,,,,,,74.07207332,71.70084106,76.44330558,,,,497.5539492,205,23703,415.9551259,579.1527724,,,,,,,,,,,,,503.5009297,420.0809667,586.9208927,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.162,,,0.14,0.187,0.21,,,0.183,0.238,0.122,,,0.105,0.142,,,,,,0.179,1550,,,,0.177406226,1724.920734,9723,,,,,,,,,,,,,,,,,,,,,,,,,,0.344,,,0.326,0.36,0.21071115,960,4556,0.179732427,0.241689874,0.086805556,150,1728,0.0594013,0.114209811,0.000671141,6,8940,,,1490,,,,,,,,,,,3.040791814,,,,,,,,,3.012116773,3.02245352,,,,,,,,,3.002906686,,,,,,-12477.551,,,,,0.94578446,34349,36318,0.842711716,1.048857203,44242,,,38261.91489,50222.08511,21696,9520.170213,33871.82979,,,,,,,,,,41567,34732.61702,48401.38298,,,,,,0.708392603,996,1406,,,,,,,,0.258170969,,44242,,,8.219178082,3,365,,,,,,,,,,,,,,,,,,,,,,,,,,36.1609619,14,45242,18.68489669,63.16592319,30.94469741,,,,,,,,,,,,,38.51149913,19.89945358,67.27183869,,,,26.52402635,12,45242,13.70535146,46.33213618,,,,,,,,,,,,,27.90113697,14.41692462,48.7376713,,,,26.60906587,17,63888,15.50076144,42.60369211,,,,,,,,,,,,,26.32358264,15.04620192,42.74784903,,,,7.142857143,,700,,,0,5,0.659078591,4864,7380,,,0.397,,,,,0.469180555,,,,,0.79228243,2895,3654,0.750226063,0.834338798,0.115396676,368,3189,0.066166719,0.164626634,0.744937055,2722,3654,0.691347417,0.798526693,8940,,,,,0.192505593,1721,8940,,,0.288255034,2577,8940,,,0.003914989,35,8940,,,0.012751678,114,8940,,,0.002572707,23,8940,,,0,0,8940,,,0.025615213,229,8940,,,0.939373602,8398,8940,,,0,0,8339,0,0.009715946,0.492729307,4405,8940,,,1,8553,8553,, -29,155,29155,MO,Pemiscot County,2024,1,19658.91698,474,43113,17106.31413,22211.51984,0,,,,2,,,,2,24970.72434,19161.82321,30779.62546,,,,,2,18857.57696,15746.24633,21968.90759,,,,,2,,0.268,,,0.232,0.305,5.192419944,,,4.199320551,6.272658126,5.813133968,,,4.698090475,7.0834284,0.121230769,197,1625,0.105360904,0.137100635,0,,,,,,,0.144758735,0.116627711,0.17288976,,,,0.100783875,0.08103884,0.12052891,,,,,,,0.28,,,0.232,0.331,0.436,,,0.36,0.516,6,0.06096308,0.198,,,0.367,,,0.309,0.426,0.451056765,7064,15661,,,0.139062481,,,0.110731019,0.172694299,0.272727273,6,22,0.159704728,0.392079091,938.6,143,15236,,,51.26760563,182,3550,43.81919842,58.71601285,,,,,,,64.9122807,50.97010197,81.49142412,67.79661017,35.03149779,118.4270342,39.75678204,31.75630543,49.15987667,,,,,,,0.138560158,1686,12168,0.120687817,0.156432498,0.000393804,6,15236,,,2539.333333,6.73809E-05,1,14841,,,14841,0.001886665,28,14841,,,530.0357143,6459,,,,,,,6547,,6433,0.33,,,,,,,0.29,,0.33,0.34,,,,,,,0.21,,0.35,0.822185495,8457,10286,0.794224594,0.850146395,0.400219599,1458,3643,0.329807313,0.470631885,0.037972479,218,5741,,,0.404,1532,,0.257446809,0.550553192,,,,,,,0.657534247,0.591744292,0.723324202,0.284090909,0,0.572873673,0.271723476,0.181112031,0.36233492,6.047600743,94397,15609,5.049529609,7.045671877,0.484651859,1942,4007,0.414842987,0.554460732,13.78314518,21,15236,,,114.1223241,91,79739,91.8841765,140.1169251,,,,,,,92.09442102,55.44685747,143.8168464,,,,124.6037418,96.75968107,157.9649335,,,,8.1,,,,,1,,,,,0.1875,1245,6640,0.149613778,0.225386222,0.162015504,0.12680524,0.197225768,0.039006024,0.018830461,0.059181587,0.007530121,0,0.015159546,0.829578488,4566,5504,0.796875115,0.862281862,,,,,,,0.75951087,0.674335149,0.84468659,,,,0.821709234,0.787218839,0.856199628,0.239,,5504,0.197263844,0.280736156,67.40010736,,,65.89461983,68.9055949,,,,,,,64.04002404,61.13617922,66.94386885,,,,67.8234467,65.94016733,69.70672608,,,,891.1403949,474,43113,806.4248497,975.8559401,,,,,,,1167.47193,957.0959263,1377.847934,,,,837.8274025,741.8889793,933.7658257,,,,96.29000283,17,17655,56.09247505,154.1696223,,,,,,,,,,,,,109.8681582,54.84578873,196.5844838,,,,13.48182884,23,1706,8.546322999,20.22936278,,,,,,,,,,,,,,,,,,,,,,0.166,,,0.145,0.19,0.21,,,0.184,0.24,0.141,,,0.122,0.161,153.7,19,12361,,,0.198,3150,,,,0.06096308,1115.380519,18296,,,,,,,,,,,,,,,,,,,,,,,,,,0.418,,,0.405,0.432,0.170731707,1435,8405,0.145710431,0.195752984,0.067642605,268,3962,0.046195796,0.089089413,0.00148238,22,14841,,,674.5909091,0.881314433,170.975,194,,,,,,,,3.093742331,,,,,,,2.984370504,,3.204592905,2.861398131,,,,,,,2.735213108,,2.987528025,0.214061069,,,,,-9522.004714,,,,,0.629623188,32583,51750,0.537730887,0.72151549,38456,,,32968,43944,,,,,,,22062,15932.97872,28191.02128,,,,47228,39075.82979,55380.17021,,,,,,0.904076739,2639,2919,,,41.19639025,,,,,0.337164552,,38456,,,10.25641026,12,1170,,,21.87341418,25,114294,14.15532036,32.28947425,,,,,,,50.35922917,28.18567828,83.05989012,,,,12.7638935,6.12078306,23.47325459,,,,14.89549297,12,79739,7.696718581,26.01942857,15.04909768,,,,,,,,,,,,,19.61225557,9.404838868,36.06763628,,,,36.36865273,29,79739,24.35665752,52.23145191,,,,,,,63.01197228,33.55122142,107.7523916,,,,25.65371154,14.02512282,43.04256889,,,,32.37265298,37,114294,22.79333523,44.62143782,,,,,,,,,,,,,33.1861231,21.67827741,48.62535941,,,,78,,1500,,,41,76,0.47593361,5735,12050,,,0.477,,,,,19.92990428,,,,,0.562549801,3530,6275,0.528166437,0.596933165,0.159863365,936,5855,0.120995645,0.198731085,0.805577689,5055,6275,0.769455636,0.841699742,14841,,,,,0.260292433,3863,14841,,,0.183680345,2726,14841,,,0.257597197,3823,14841,,,0.006266424,93,14841,,,0.00518833,77,14841,,,0.000808571,12,14841,,,0.033892595,503,14841,,,0.675560946,10026,14841,,,0.002630486,38,14446,0,0.008313149,0.520315343,7722,14841,,,0.660366516,10342,15661,, -29,157,29157,MO,Perry County,2024,1,8566.698871,286,52404,6963.749649,10169.64809,0,,,,2,,,,2,,,,2,,,,2,8614.992922,6953.988114,10275.99773,,,,,2,,0.18,,,0.154,0.212,4.259578602,,,3.411771626,5.16128078,5.581100331,,,4.540786278,6.671465757,0.05815508,87,1496,0.046295378,0.070014783,0,,,,,,,,,,,,,0.059201141,0.046847486,0.071554797,,,,,,,0.208,,,0.167,0.252,0.373,,,0.3,0.446,8.2,0.048505571,0.103,,,0.273,,,0.226,0.326,0.486706056,9226,18956,,,0.187472262,,,0.150309124,0.226604899,0.090909091,2,22,0.017567586,0.216903757,264.2,50,18922,,,18.75316777,74,3946,14.72527021,23.54288482,,,,,,,,,,,,,17.07577375,13.15042651,21.80538186,,,,,,,0.123320158,1872,15180,0.106639307,0.140001009,0.00036994,7,18922,,,2703.142857,0.000530279,10,18858,,,1885.8,0.000901474,17,18858,,,1109.294118,3946,,,,,,,,,3975,0.5,,,,,,,,,0.5,0.34,,,,,,,,,0.34,0.856400856,11212,13092,0.832603602,0.880198109,0.591597018,2619,4427,0.50879281,0.674401226,0.020839879,199,9549,,,0.141,579,,0.093340426,0.188659575,,,,,,,,,,0.124324324,0,0.308060287,0.130992926,0.073892297,0.188093556,4.116772901,113026,27455,3.459676342,4.77386946,0.12011943,523,4354,0.07184579,0.16839307,13.21213402,25,18922,,,70.06389409,67,95627,54.29855556,88.97866882,,,,,,,,,,,,,72.81312401,56.31366484,92.63614669,,,,8.3,,,,,0,,,,,0.084488449,640,7575,0.061360583,0.107616315,0.060788243,0.039081649,0.082494837,0.015181518,0.003776954,0.026586082,0.00990099,0.001478772,0.018323209,0.86492838,7729,8936,0.827390044,0.902466715,,,,,,,,,,,,,0.86703059,0.840398089,0.893663091,0.254,,8936,0.213471844,0.294528156,76.77972467,,,75.43989649,78.11955284,,,,,,,,,,,,,76.46055806,75.1011852,77.81993091,,,,400.8479748,286,52404,351.8783261,449.8176235,,,,,,,,,,,,,403.4736265,353.3628977,453.5843552,,,,62.48047485,12,19206,32.2845731,109.1408156,,,,,,,,,,,,,68.0349246,35.15463833,118.8433215,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.127,,,0.109,0.147,0.182,,,0.157,0.21,0.097,,,0.082,0.113,,,,,,0.103,1960,,,,0.048505571,920.1991893,18971,,,22.70663034,13,57252,12.09032434,38.82902941,,,,,,,,,,,,,24.01270826,12.78575583,41.06246244,,,,0.349,,,0.33,0.366,0.142320381,1553,10912,0.122065062,0.1625757,0.076016893,342,4499,0.053378595,0.098655191,0.00100753,19,18858,,,992.5263158,0.825,150.975,183,,,,,,,,3.057901879,,,,,,,,,3.096336141,3.054808848,,,,,,,,,3.076944054,0.017312092,,,,,-121.4585,,,,,0.774942515,38083,49143,0.669808656,0.880076373,63127,,,55799.34043,70454.65957,,,,,,,,,,60727,44566.82979,76887.17021,62865,56694.2766,69035.7234,,,,,,0.421235857,968,2298,,,62.21265872,,,,,0.249497046,,63127,,,17.44719927,19,1089,,,,,,,,,,,,,,,,,,,,,,,,,,16.43947522,16,95627,9.201049488,27.11441434,16.7316762,,,,,,,,,,,,,16.06612016,8.783497392,26.95621967,,,,11.50302739,11,95627,5.742269827,20.58209346,,,,,,,,,,,,,11.03229152,5.290412603,20.2887769,,,,11.18609941,15,134095,6.260774923,18.44976984,,,,,,,,,,,,,11.78198613,6.594288197,19.43259437,,,,,,1900,,,-888,31,0.6499484,9447,14535,,,0.68,,,,,32.82260538,,,,,0.776777187,5693,7329,0.752179037,0.801375336,0.075431645,533,7066,0.048570887,0.102292402,0.837358439,6137,7329,0.805291304,0.869425574,18858,,,,,0.222664121,4199,18858,,,0.203255913,3833,18858,,,0.006681515,126,18858,,,0.005355817,101,18858,,,0.011931276,225,18858,,,0.001219642,23,18858,,,0.026248807,495,18858,,,0.941351151,17752,18858,,,0.007416908,133,17932,0.00015192,0.014681897,0.492576095,9289,18858,,,0.574699304,10894,18956,, -29,159,29159,MO,Pettis County,2024,1,9128.393783,721,118560,8132.169195,10124.61837,0,,,,2,,,,2,11811.23035,6610.655967,19480.82827,1,,,,2,9769.157966,8621.270927,10917.04501,,,,,2,,0.197,,,0.168,0.228,4.396284919,,,3.600716008,5.354933377,5.668550626,,,4.744867407,6.723138918,0.077494429,313,4039,0.069248514,0.085740345,0,,,,,,,0.119047619,0.062500905,0.175594333,0.046428571,0.029001222,0.063855921,0.08044164,0.070973678,0.089909603,,,,,,,0.22,,,0.178,0.266,0.42,,,0.357,0.486,7.3,0.062840172,0.135,,,0.301,,,0.253,0.351,0.620381573,26664,42980,,,0.17130892,,,0.139325043,0.205514105,0.255813954,11,43,0.176455063,0.33980999,370.5,160,43188,,,32.12722809,301,9369,28.49773411,35.75672207,,,,,,,40.37267081,21.49674687,69.03849664,46.17834395,35.06515261,59.69621795,29.0237467,25.08882221,32.9586712,,,,49.58677686,29.38826661,78.36848559,0.152416357,5371,35239,0.134544017,0.170288697,0.00055571,24,43188,,,1799.5,0.000553595,24,43353,,,1806.375,0.001245589,54,43353,,,802.8333333,4018,,,,,,,1146,,4067,0.39,,,,,,,0.36,0.16,0.39,0.46,,,,,,,0.36,0.14,0.47,0.875572653,25037,28595,0.859451795,0.89169351,0.57785628,6216,10757,0.52107579,0.634636769,0.025669252,513,19985,,,0.184,1932,,0.117276596,0.250723404,,,,,,,0.309859155,0.086258568,0.533459742,0.286787727,0.178041929,0.395533525,0.147166477,0.104511899,0.189821056,3.928924093,110611,28153,3.514747997,4.34310019,0.202999063,2166,10670,0.161109707,0.244888419,9.26183199,40,43188,,,91.49903574,195,213117,78.65636693,104.3417046,,,,,,,151.8141794,72.8008,279.1916812,,,,98.6358165,84.10452944,113.1671036,,,,7.4,,,,,1,,,,,0.113615313,1840,16195,0.094636112,0.132594515,0.084371108,0.066925646,0.101816571,0.017289287,0.010023306,0.024555268,0.020685397,0.010584899,0.030785895,0.813530272,16138,19837,0.780607507,0.846453037,,,,,,,,,,0.708564387,0.625690905,0.791437869,0.824919786,0.79263122,0.857208352,0.19,,19837,0.162261063,0.217738937,75.5171364,,,74.69042683,76.34384596,,,,,,,,,,101.4414289,72.61146173,130.271396,74.85127852,73.95104992,75.75150712,,,,477.7479019,721,118560,441.432571,514.0632329,,,,,,,570.9117853,357.7873763,864.367304,,,,502.2708019,462.4107843,542.1308195,,,,43.03944565,20,46469,26.28961154,66.4709331,,,,,,,,,,,,,48.47862663,28.24058651,77.61897743,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.135,,,0.116,0.155,0.19,,,0.165,0.217,0.112,,,0.096,0.129,79.1,28,35382,,,0.135,5780,,,,0.062840172,2651.918098,42201,,,8.592608794,11,128017,4.289399351,15.37455066,,,,,,,,,,,,,9.305528414,4.462362577,17.11319807,,,,0.331,,,0.316,0.348,0.182782588,4497,24603,0.1589528,0.206612375,0.083512931,930,11136,0.059683144,0.107342718,0.000668927,29,43353,,,1494.931035,0.896550117,384.62,429,,,,,,,,3.118728186,,,,,,,2.959104678,2.680352522,3.201773949,3.105246725,,,,,,,2.804312335,2.717026581,3.196877242,0.071850573,,,,,-3996.751617,,,,,0.738319424,37246,50447,0.665590012,0.811048836,58827,,,53081.6383,64572.3617,,,,,,,41385,28594.3617,54175.6383,57424,47506.04255,67341.95745,58776,54622.46809,62929.53192,,,,,,0.54015467,3632,6724,,,46.37597337,,,,,0.255834906,,58827,,,8.86464371,26,2933,,,3.696422871,11,297585,1.845240979,6.613921573,,,,,,,,,,,,,,,,,,,14.98039975,29,213117,9.954366838,21.65084857,13.60754891,,,,,,,,,,,,,17.32430744,11.41682777,25.20595776,,,,12.19987143,26,213117,7.969361063,17.8756383,,,,,,,,,,,,,12.259819,7.683163297,18.5615133,,,,19.15419124,57,297585,14.50719739,24.81647644,,,,,,,,,,,,,19.49170409,14.42006999,25.7690665,,,,42.43902439,,4100,,,39,135,0.633189655,19097,30160,,,0.623,,,,,77.72922613,,,,,0.699808337,11684,16696,0.678860699,0.720755976,0.081749863,1338,16367,0.064430173,0.099069552,0.860146143,14361,16696,0.844862917,0.875429369,43353,,,,,0.250086499,10842,43353,,,0.177081171,7677,43353,,,0.032569834,1412,43353,,,0.008811386,382,43353,,,0.009549512,414,43353,,,0.004613291,200,43353,,,0.09531059,4132,43353,,,0.831338085,36041,43353,,,0.023788173,955,40146,0.017617906,0.02995844,0.49749729,21568,43353,,,0.394067008,16937,42980,, -29,161,29161,MO,Phelps County,2024,1,11466.87643,797,123994,10288.1739,12645.57895,0,,,,2,,,,2,,,,2,,,,2,12110.99763,10817.75051,13404.24474,,,,,2,,0.186,,,0.154,0.218,4.193150392,,,3.405934155,5.111908267,5.305176336,,,4.396147907,6.305082279,0.082401789,258,3131,0.072769951,0.092033626,0,,,,0.080246914,0.038411086,0.122082741,0.131578947,0.055579987,0.207577908,0.101851852,0.044808814,0.15889489,0.079759218,0.069459632,0.090058803,,,,0.110091743,0.051330251,0.168853235,0.205,,,0.162,0.252,0.4,,,0.337,0.464,6.8,0.092788958,0.143,,,0.273,,,0.226,0.325,0.856557193,38235,44638,,,0.166738055,,,0.135554982,0.200297249,0.235294118,12,51,0.163289696,0.312600154,322.7,145,44937,,,18.76649399,192,10231,16.1119581,21.42102988,,,,,,,,,,28.57142857,13.70111056,52.54387441,18.81155251,15.98370328,21.63940173,,,,,,,0.14155986,4926,34798,0.12249603,0.16062369,0.000823375,37,44937,,,1214.513514,0.000750337,34,45313,,,1332.735294,0.003530996,160,45313,,,283.20625,3757,,,,,,,8385,,3791,0.43,,,,,,0.33,,,0.43,0.37,,,,,,0.39,0.42,,0.37,0.917699872,25758,28068,0.902226224,0.93317352,0.627150117,6417,10232,0.557329374,0.696970861,0.024666033,493,19987,,,0.183,1683,,0.115085106,0.250914894,,,,0.045662101,0,0.363906944,,,,0.48960739,0.164779767,0.814435013,0.152593565,0.103706288,0.201480842,5.090795901,106306,20882,4.473664877,5.707926925,0.245583985,2294,9341,0.182106699,0.30906127,12.46189109,56,44937,,,106.9829902,239,223400,93.41948761,120.5464927,,,,,,,,,,,,,111.68272,96.95803825,126.4074018,,,,7.3,,,,,0,,,,,0.13999451,2550,18215,0.114898406,0.165090614,0.119540874,0.095129621,0.143952126,0.018885534,0.010176035,0.027595033,0.009332967,0.002264672,0.016401262,0.750106792,14048,18728,0.725314104,0.77489948,,,,,,,,,,,,,0.786934994,0.757407671,0.816462318,0.182,,18728,0.15029653,0.21370347,73.89607507,,,73.01246463,74.77968551,,,,,,,,,,,,,73.27213586,72.33459663,74.20967508,,,,534.4119291,797,123994,495.4514796,573.3723786,,,,,,,,,,,,,558.7594128,516.7059709,600.8128547,,,,67.7122013,31,45782,46.00715561,96.11206479,,,,,,,,,,,,,65.6631983,42.89338119,96.21179938,,,,9.313877678,30,3221,6.284034158,13.29613952,,,,,,,,,,,,,9.548292325,6.237261556,13.99046055,,,,,,,0.128,,,0.11,0.149,0.172,,,0.15,0.197,0.107,,,0.091,0.124,31.3,12,38285,,,0.143,6410,,,,0.092788958,4189.978184,45156,,,55.25521938,74,133924,43.38723175,69.36786797,,,,,,,,,,,,,58.20034414,45.28334168,73.65626041,,,,0.339,,,0.32,0.357,0.168238194,4300,25559,0.143216917,0.193259471,0.070242393,681,9695,0.048795585,0.091689202,0.001522742,69,45313,,,656.7101449,0.92531185,445.075,481,,,,,,,,3.26892127,,,,,,,,,3.292080395,3.17394214,,,,,,,,,3.186580882,0.037141393,,,,,-3879.141,,,,,0.710396896,36979,52054,0.604852536,0.815941255,54740,,,48551.40426,60928.59575,,,,26009,20325.59575,31692.40426,21111,5707.425532,36514.57447,,,,56281,51966.61702,60595.38298,,,,,,0.347033375,2246,6472,,,72.05011391,,,,,0.252612349,,54740,,,7.154882155,17,2376,,,4.795365759,15,312802,2.683929813,7.909226562,,,,,,,,,,,,,5.051853669,2.761895411,8.476152047,,,,20.18205008,46,223400,14.60584971,27.18508901,20.5908684,,,,,,,,,,,,,21.96465576,15.76221619,29.7975357,,,,16.11459266,36,223400,11.28646259,22.30938876,,,,,,,,,,,,,16.17125358,11.06112547,22.82898499,,,,16.30424358,51,312802,12.13958026,21.43706926,,,,,,,,,,,,,17.68148784,13.08086204,23.37586462,,,,,,3800,,,-888,44,0.579020565,19568,33795,,,0.582,,,,,73.22966704,,,,,0.60107163,10657,17730,0.574501999,0.627641261,0.135774218,2314,17043,0.109065482,0.162482954,0.88071066,15615,17730,0.858931407,0.902489913,45313,,,,,0.209454241,9491,45313,,,0.172467062,7815,45313,,,0.024650763,1117,45313,,,0.009136451,414,45313,,,0.035773398,1621,45313,,,0.00103723,47,45313,,,0.030322424,1374,45313,,,0.877518593,39763,45313,,,0.003224743,137,42484,0.000113221,0.006336266,0.473969942,21477,45313,,,0.538285766,24028,44638,, -29,163,29163,MO,Pike County,2024,1,8094.107885,303,49274,6638.056708,9550.159063,0,,,,2,,,,2,10998.35554,5683.010798,19211.91375,1,,,,2,7659.243003,6197.854874,9120.631132,,,,,2,,0.21,,,0.179,0.245,4.544184528,,,3.690773027,5.476698518,5.310578483,,,4.331622552,6.385171234,0.086836664,126,1451,0.072347339,0.10132599,0,,,,,,,,,,,,,0.083952452,0.069137193,0.098767711,,,,0.25,0.115807973,0.384192027,0.241,,,0.197,0.285,0.424,,,0.354,0.498,7.1,0.099238727,0.129,,,0.296,,,0.246,0.348,0.30818218,5420,17587,,,0.170452982,,,0.136416467,0.207232587,0.272727273,3,11,0.11266692,0.445445377,180.2,32,17761,,,25.51928783,86,3370,20.41213627,31.51611287,,,,,,,,,,,,,24.54991817,19.31006799,30.77353501,,,,,,,0.131516858,1728,13139,0.113644518,0.149389199,0.000168909,3,17761,,,5920.333333,0.000339674,6,17664,,,2944,0.000679348,12,17664,,,1472,2801,,,,,,,,,2728,0.41,,,,,,,,,0.41,0.28,,,,,,,0.27,,0.28,0.864223442,10706,12388,0.842374049,0.886072835,0.376398333,1716,4559,0.314881896,0.43791477,0.024913495,180,7225,,,0.201,785,,0.124744681,0.277255319,,,,,,,0.064516129,0,0.594891958,0.114285714,0,0.500301022,0.200679309,0.126859723,0.274498896,4.779814497,108736,22749,3.842996843,5.716632152,0.225205071,906,4023,0.142383634,0.308026507,12.9497213,23,17761,,,73.88130472,67,90686,57.25699637,93.82664538,,,,,,,,,,,,,78.49684767,60.31913304,100.4315673,,,,8.1,,,,,0,,,,,0.11419985,760,6655,0.08761841,0.14078129,0.081530782,0.054172998,0.108888566,0.016528926,0.005541901,0.02751595,0.022539444,0.009882833,0.035196055,0.830903352,5528,6653,0.789214231,0.872592472,,,,,,,,,,,,,0.81513997,0.768727799,0.861552142,0.302,,6653,0.247438113,0.356561887,76.45500264,,,75.21728361,77.69272166,,,,,,,,,,,,,76.63548381,75.37608611,77.8948815,,,,448.8540393,303,49274,396.2343451,501.4737335,,,,,,,638.385767,384.3499339,996.9184534,,,,439.9647015,385.5214521,494.4079509,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.141,,,0.122,0.163,0.184,,,0.161,0.212,0.108,,,0.093,0.127,94,14,14899,,,0.129,2330,,,,0.099238727,1837.504272,18516,,,26.1120955,14,53615,14.27572559,43.81165928,,,,,,,,,,,,,27.2799765,14.52543856,46.64959063,,,,0.35,,,0.333,0.365,0.157156938,1435,9131,0.133327151,0.180986725,0.074470616,313,4203,0.051832318,0.097108914,0.000962409,17,17664,,,1039.058824,0.891467066,148.875,167,,,,,,,,3.050552675,,,,,,,,,3.095158469,3.141116779,,,,,,,,,3.212934395,0.070186244,,,,,-1937.034,,,,,0.807714359,40855,50581,0.729686188,0.88574253,59081,,,51312.48936,66849.51064,,,,41094,40556.6383,41631.3617,34286,31194.08511,37377.91489,90786,40.9787234,181531.0213,54354,49135.2766,59572.7234,,,,,,0.452380952,1159,2562,,,53.99426288,,,,,0.22007075,,59081,,,15.53398058,16,1030,,,,,,,,,,,,,,,,,,,,,,,,,,17.67069044,18,90686,10.29382836,28.29248717,19.84870873,,,,,,,,,,,,,18.47415132,10.33984225,30.47030313,,,,13.23247249,12,90686,6.837411628,23.11446645,,,,,,,,,,,,,14.95178051,7.725803171,26.11775156,,,,14.90523409,19,127472,8.973924599,23.27636938,,,,,,,,,,,,,15.08295626,8.786377846,24.14927408,,,,,,1600,,,-888,34,0.549446626,7695,14005,,,0.609,,,,,14.08517522,,,,,0.736958935,4648,6307,0.702199985,0.771717884,0.077076412,464,6020,0.047703602,0.106449222,0.824797844,5202,6307,0.792286266,0.857309422,17664,,,,,0.227128623,4012,17664,,,0.193161232,3412,17664,,,0.057971015,1024,17664,,,0.002774004,49,17664,,,0.004415761,78,17664,,,0.000283062,5,17664,,,0.023833786,421,17664,,,0.893002717,15774,17664,,,0.006039586,101,16723,0,0.01392341,0.463088768,8180,17664,,,1,17587,17587,, -29,165,29165,MO,Platte County,2024,1,6190.87502,1122,300225,5641.931974,6739.818065,0,,,,2,,,,2,6346.873254,4710.771664,8367.561142,,3125.761009,1852.524074,4940.049991,1,6573.440791,5921.098887,7225.782695,,,,,2,,0.132,,,0.11,0.155,3.146973539,,,2.511206938,3.875602526,4.565529297,,,3.751429304,5.464197337,0.073783173,620,8403,0.068193661,0.079372685,0,,,,0.08045977,0.047460026,0.113459515,0.123756906,0.102301892,0.14521192,0.072347267,0.051987882,0.092706652,0.063401978,0.057319968,0.069483988,,,,0.129032258,0.089694994,0.168369522,0.149,,,0.116,0.186,0.365,,,0.306,0.428,8.3,0.063208217,0.092,,,0.206,,,0.168,0.249,0.816703836,87157,106718,,,0.191106015,,,0.157560198,0.227446835,0.310344828,18,58,0.242222913,0.379412489,419.1,455,108569,,,9.022556391,204,22610,7.784414001,10.26069878,,,,,,,12.80081925,8.284015283,18.89653441,15.00234412,10.26159227,21.17883361,7.413211186,6.103094771,8.723327601,,,,15.57935735,8.904948835,25.29990029,0.084546137,7767,91867,0.073822733,0.095269542,0.000810544,88,108569,,,1233.738636,0.000606148,67,110534,,,1649.761194,0.001447518,160,110534,,,690.8375,3013,,,,,,,2703,,2936,0.56,,,,,,0.32,0.53,0.44,0.56,0.56,,,,,,0.48,0.42,0.36,0.57,0.963693851,70712,73376,0.958232304,0.969155398,0.790683544,23424,29625,0.748328002,0.833039087,0.02183217,1311,60049,,,0.09,2238,,0.066170213,0.113829787,,,,0.035714286,0,0.195426702,0.197122302,0.094141317,0.300103287,0.156642729,0.07711715,0.236168308,0.082208658,0.057509566,0.106907749,3.856913411,163294,42338,3.510673957,4.203152865,0.209280947,5236,25019,0.171990763,0.24657113,9.118625022,99,108569,,,69.50663655,364,523691,62.36608674,76.64718636,,,,,,,70.11530072,46.20642498,102.0140814,29.72209838,14.25290146,54.65999715,75.54165992,67.22568896,83.85763087,,,,8.4,,,,,1,,,,,0.101452906,4050,39920,0.085569951,0.11733586,0.078490566,0.06541897,0.091562162,0.018161323,0.011055002,0.025267643,0.008391784,0.00510453,0.011679037,0.783353105,44243,56479,0.768677574,0.798028636,,,,0.716106014,0.583400258,0.84881177,0.6705,0.55171892,0.78928108,0.808,0.7559077,0.8600923,0.772061941,0.747914312,0.796209569,0.335,,56479,0.312112237,0.357887763,79.57264183,,,79.02913483,80.11614882,,,,86.81771343,82.48679135,91.14863551,80.93809861,77.10870487,84.76749236,85.16696278,80.86735075,89.46657482,79.14833399,78.54695872,79.74970926,,,,302.0387352,1122,300225,283.9382689,320.1392015,,,,,,,366.6871502,283.001401,467.372874,168.0393323,108.7461958,248.0592033,313.7155039,293.3648496,334.0661582,,,,51.56300355,56,108605,38.95013874,66.95884905,,,,,,,,,,,,,50.15233773,35.82956536,68.29324945,,,,5.450236967,46,8440,3.990258461,7.269852335,,,,,,,,,,,,,4.620777565,3.094607256,6.636207368,,,,,,,0.097,,,0.083,0.113,0.149,,,0.129,0.172,0.086,,,0.073,0.1,161.7,147,90886,,,0.092,9640,,,,0.063208217,5645.884311,89322,,,16.90040342,54,319519,12.6961032,22.05136045,,,,,,,,,,,,,19.26077916,14.24923045,25.46377149,,,,0.325,,,0.309,0.342,0.098786122,6543,66234,0.08448825,0.113083994,0.049396963,1327,26864,0.03509909,0.063694835,0.000796135,88,110534,,,1256.068182,0.924954338,1215.39,1314,,,,,,,,3.288106562,,,,,,2.867910347,2.718390036,3.063710894,3.442895983,3.202909235,,,,,,3.107481866,2.479385235,2.924146106,3.36443131,0.040130904,,,,,3871.990525,,,,,0.768144568,54834,71385,0.710552175,0.825736961,93925,,,86250.61702,101599.383,108750,76673.91489,140826.0851,98158,74020.80851,122295.1915,77500,59855.23404,95144.76596,69480,49202.04255,89757.95745,94413,90719.38298,98106.61702,,,,,,0.221308175,3847,17383,,,40.41609132,,,,,0.231354804,,93925,,,6.869009585,43,6260,,,3.34217152,24,718096,2.141392356,4.972886299,,,,,,,,,,,,,2.418960504,1.322468217,4.058604696,,,,15.77431839,85,523691,12.54578355,19.58008838,16.23094535,,,,,,,,,,,,,18.50544532,14.58018613,23.16232432,,,,11.83904249,62,523691,9.07692599,15.17711816,,,,,,,,,,,,,12.62999361,9.460731904,16.52034261,,,,7.798400214,56,718096,5.890827714,10.12687134,,,,,,,,,,,,,7.77523019,5.671306254,10.40386973,,,,11.78217822,,10100,,,18,101,0.749411149,57270,76420,,,0.697,,,,,95.31487251,,,,,0.664249167,28301,42606,0.646844533,0.681653801,0.106451766,4478,42066,0.090461512,0.12244202,0.926207576,39462,42606,0.9099404,0.942474752,110534,,,,,0.22900646,25313,110534,,,0.161244504,17823,110534,,,0.082191905,9085,110534,,,0.005943873,657,110534,,,0.029248919,3233,110534,,,0.006079577,672,110534,,,0.069381367,7669,110534,,,0.78515208,86786,110534,,,0.007159999,722,100838,0.004266895,0.010053104,0.504107334,55721,110534,,,0.1364156,14558,106718,, -29,167,29167,MO,Polk County,2024,1,10365.39523,578,88980,9109.779,11621.01145,0,,,,2,,,,2,,,,2,,,,2,10752.60334,9419.767239,12085.43944,,,,,2,,0.189,,,0.161,0.22,4.411816782,,,3.524393102,5.379433278,5.475230835,,,4.40713601,6.651899052,0.066160521,183,2766,0.056897224,0.075423817,0,,,,,,,,,,,,,0.063984674,0.054595762,0.073373587,,,,,,,0.228,,,0.184,0.272,0.387,,,0.313,0.465,8,0.010406301,0.129,,,0.285,,,0.234,0.337,0.448872109,14148,31519,,,0.168393465,,,0.135936519,0.204773489,0.16,4,25,0.067364287,0.277512739,330.8,106,32043,,,21.22046341,185,8718,18.16255079,24.27837603,,,,,,,,,,,,,22.36302646,19.09601697,25.63003596,,,,,,,0.132554918,3349,25265,0.114682577,0.150427258,0.00081141,26,32043,,,1232.423077,0.000428226,14,32693,,,2335.214286,0.002324657,76,32693,,,430.1710526,1850,,,,,,,,,1868,0.4,,,,,,,,,0.4,0.26,,,,,,,,,0.26,0.879073101,18399,20930,0.859718963,0.898427239,0.590909091,4212,7128,0.516639625,0.665178557,0.024281064,358,14744,,,0.223,1624,,0.158659575,0.287340426,,,,,,,,,,0.022801303,0,0.166517715,0.212016357,0.161789234,0.262243481,4.92170656,107746,21892,4.167502561,5.675910558,0.159470752,1145,7180,0.109650672,0.209290832,8.738257966,28,32043,,,87.75369219,141,160677,73.26891186,102.2384725,,,,,,,,,,,,,92.71797061,77.30406879,108.1318724,,,,7.7,,,,,0,,,,,0.149133925,1765,11835,0.117178422,0.181089428,0.117043998,0.086940595,0.147147402,0.027038445,0.011854263,0.042222627,0.01478665,0.005539427,0.024033873,0.797531399,11049,13854,0.762934372,0.832128426,,,,,,,,,,,,,0.788064193,0.748622662,0.827505723,0.437,,13854,0.376140664,0.497859336,74.6589216,,,73.6819935,75.6358497,,,,,,,,,,,,,74.26479366,73.25543893,75.27414839,,,,515.3404824,578,88980,471.0911928,559.589772,,,,,,,,,,,,,527.8571675,481.7191921,573.9951428,,,,61.07491857,21,34384,37.8063372,93.35950074,,,,,,,,,,,,,64.08818534,39.14672857,98.9790044,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.133,,,0.114,0.153,0.186,,,0.161,0.213,0.103,,,0.088,0.12,78.4,21,26781,,,0.129,4080,,,,0.010406301,324.0209929,31137,,,19.65205519,19,96682,11.83182099,30.68911852,,,,,,,,,,,,,21.09400153,12.69996688,32.94089635,,,,0.346,,,0.327,0.363,0.160249682,2901,18103,0.136419895,0.18407947,0.063781625,479,7510,0.044717795,0.082845454,0.001131741,37,32693,,,883.5945946,0.848648649,314,370,,,0.08030303,159,1980,0.036141943,0.124464118,3.078280469,,,,,,,,,3.092655488,2.951885954,,,,,,,,,2.965107691,0.073171685,,,,,-4405.47896,,,,,0.855595593,41078,48011,0.735519591,0.975671594,53693,,,48921.08511,58464.91489,,,,57292,20613.19149,93970.80851,,,,,,,53649,48091.89362,59206.10638,,,,,,0.542462018,2785,5134,,,72.27556828,,,,,0.251522545,,53693,,,7.668711656,15,1956,,,,,,,,,,,,,,,,,,,,,,,,,,20.44312291,32,160677,13.69108025,29.35973458,19.91573156,,,,,,,,,,,,,20.96739292,13.93268032,30.30372065,,,,18.04863173,29,160677,12.08745193,25.92084582,,,,,,,,,,,,,19.34403703,12.9550052,27.78126393,,,,17.02577613,38,223191,12.04845251,23.36920795,,,,,,,,,,,,,18.22874193,12.89974271,25.0203725,,,,39.66666667,,3000,,,20,99,0.613854931,15064,24540,,,0.629,,,,,24.29751595,,,,,0.716851648,8461,11803,0.687047616,0.74665568,0.109145854,1228,11251,0.081085931,0.137205776,0.785647717,9273,11803,0.754227955,0.817067478,32693,,,,,0.230232772,7527,32693,,,0.183311412,5993,32693,,,0.008350411,273,32693,,,0.008289236,271,32693,,,0.009910378,324,32693,,,0.000672927,22,32693,,,0.031872266,1042,32693,,,0.92392867,30206,32693,,,0.004952317,148,29885,0,0.010160621,0.502645826,16433,32693,,,0.672451537,21195,31519,, -29,169,29169,MO,Pulaski County,2024,1,10006.93469,718,153244,9078.312135,10935.55724,0,,,,2,,,,2,8073.726979,5684.648882,11128.56912,,4915.642145,2913.321073,7768.833851,1,11546.86742,10345.8251,12747.90974,,,,,2,,0.188,,,0.163,0.216,4.35924398,,,3.529398469,5.251318594,5.051076731,,,4.134182769,5.997480161,0.077379774,391,5053,0.070012504,0.084747045,0,,,,,,,0.106557377,0.079181298,0.133933457,0.07530648,0.053661704,0.096951256,0.074516496,0.065836047,0.083196945,,,,0.09561753,0.059237417,0.131997643,0.203,,,0.168,0.243,0.407,,,0.342,0.474,5.7,0.220498222,0.136,,,0.273,,,0.23,0.321,0.689352238,37194,53955,,,0.187883024,,,0.151819023,0.227230252,0.225806452,7,31,0.133616464,0.327772988,616.9,332,53816,,,21.13022113,258,12210,18.55182132,23.70862094,,,,,,,15.10383889,9.677314572,22.47331504,10.24473534,6.071679443,16.19109862,24.33713334,20.87655494,27.79771174,,,,34.48275862,21.61016124,52.20731095,0.116050466,4498,38759,0.099369615,0.132731317,0.000278728,15,53816,,,3587.733333,0.001279175,69,53941,,,781.7536232,0.002669583,144,53941,,,374.5902778,2769,,,,,,,2726,,2868,0.31,,,,,,0.19,0.16,0.27,0.32,0.2,,,,,,0.11,0.1,0.08,0.21,0.94504749,27860,29480,0.93328932,0.956805659,0.692185313,10877,15714,0.623047019,0.761323606,0.029482676,428,14517,,,0.14,1599,,0.086382979,0.193617021,0.20952381,0,0.699179366,0.357142857,0,0.832770148,0.732959851,0.584568837,0.881350864,0.160462131,0.013683553,0.307240709,0.09529703,0.052179374,0.138414686,4.181306388,115864,27710,3.518225794,4.844386981,0.216838069,2488,11474,0.153553108,0.280123029,8.361825479,45,53816,,,92.70340609,244,263205,81.07134031,104.3354719,,,,,,,71.58928206,44.31489393,109.4318222,,,,114.9115621,99.33230813,130.490816,,,,7.3,,,,,1,,,,,0.135126162,2035,15060,0.102061207,0.168191117,0.111927832,0.079536627,0.144319036,0.030544489,0.012468586,0.048620391,0.006640106,0.001108183,0.01217203,0.641330698,17196,26813,0.619670217,0.662991179,,,,0.466491459,0.255017889,0.677965028,0.353635799,0.218001784,0.489269813,0.477827764,0.327151125,0.628504402,0.70801566,0.667830537,0.748200784,0.277,,26813,0.225269599,0.328730401,74.22714636,,,73.39671798,75.05757473,,,,,,,74.7848333,72.14638318,77.42328342,86.57484498,64.55041478,108.5992752,73.06609499,72.10547971,74.02671026,,,,546.627603,718,153244,505.8340077,587.4211983,,,,,,,413.9899656,297.0863469,561.6241345,332.4745629,193.678685,532.3239825,604.6402676,556.0353852,653.24515,,,,54.02485143,34,62934,37.41378013,75.49431483,,,,,,,,,,,,,64.05360794,41.84194333,93.85337657,,,,5.04952418,26,5149,3.298516841,7.398722875,,,,,,,,,,,,,,,,,,,,,,0.129,,,0.112,0.146,0.169,,,0.148,0.192,0.109,,,0.093,0.125,71.2,32,44930,,,0.136,7290,,,,0.220498222,11526.32407,52274,,,50.90113868,81,159132,40.42285147,63.26546778,,,,,,,,,,,,,61.89357945,48.06278626,78.46486006,,,,0.357,,,0.342,0.371,0.138096468,3742,27097,0.11545817,0.160734766,0.06630381,804,12126,0.044857002,0.087750619,0.001705567,92,53941,,,586.3152174,0.875981818,481.79,550,,,0.129751807,826,6366,0.054591935,0.204911678,2.991354238,,,,,,3.359400076,2.803463095,2.874242632,3.031758199,2.840747375,,,,,,3.2254082,2.573193999,2.766721868,2.888848428,0.079211905,,,,,-2281.7776,,,,,0.914361347,38341,41932,0.797300431,1.031422263,61718,,,54862.17021,68573.82979,,,,74000,23230.6383,124769.3617,62143,39634.57447,84651.42553,64833,33206.10638,96459.89362,62905,58351.12766,67458.87234,,,,,,0.40956341,3546,8658,,,37.15313326,,,,,0.300301371,,61718,,,4.986149585,18,3610,,,4.064159532,15,369080,2.274679238,6.70321309,,,,,,,,,,,,,5.491402033,3.002200592,9.213639514,,,,17.8421078,49,263205,12.85902193,24.11734652,18.61666762,,,,,,,,,,,,,20.75904349,14.53937885,28.73926641,,,,16.71700766,44,263205,12.14660335,22.4418025,,,,,,,,,,,,,19.24356303,13.40384674,26.76313778,,,,14.08908638,52,369080,10.5224036,18.47596232,,,,,,,,,,,,,19.21990712,14.21899309,25.40973649,,,,10.24390244,,4100,,,7,35,0.363118781,14414,39695,,,0.484,,,,,16.62919376,,,,,0.572030921,8954,15653,0.537625508,0.606436333,0.118636182,1785,15046,0.085927842,0.151344523,0.830511723,13000,15653,0.796824611,0.864198835,53941,,,,,0.218164291,11768,53941,,,0.096086465,5183,53941,,,0.107840048,5817,53941,,,0.010900799,588,53941,,,0.030607516,1651,53941,,,0.008119983,438,53941,,,0.115867337,6250,53941,,,0.693646762,37416,53941,,,0.008797889,440,50012,0.00319132,0.014404458,0.429636084,23175,53941,,,0.412992308,22283,53955,, -29,171,29171,MO,Putnam County,2024,1,10698.85761,102,12535,7236.549628,14161.1656,0,,,,2,,,,2,,,,2,,,,2,11032.14189,7684.291043,15343.03876,,,,,2,,0.167,,,0.14,0.198,3.983058152,,,3.154097966,4.950236597,5.328656705,,,4.272279826,6.527878711,0.072815534,30,412,0.047725425,0.097905643,0,,,,,,,,,,,,,0.074257426,0.048690386,0.099824466,,,,,,,0.204,,,0.163,0.252,0.381,,,0.308,0.461,7.5,0.102097898,0.108,,,0.26,,,0.212,0.313,0.587908567,2752,4681,,,0.163078973,,,0.130848932,0.199183361,0.142857143,1,7,0.008995928,0.386311364,339.6,16,4712,,,26.26262626,26,990,17.15561941,38.48083241,,,,,,,,,,,,,29.34537246,19.16937158,42.99776985,,,,,,,0.12742616,453,3555,0.108362331,0.14648999,0.000636672,3,4712,,,1570.666667,0.000428633,2,4666,,,2333,0.000642949,3,4666,,,1555.333333,2665,,,,,,,,,2674,0.37,,,,,,,,,0.37,0.42,,,,,,,,,0.42,0.9344115,3120,3339,0.913132327,0.955690674,0.632653061,589,931,0.453394539,0.811911583,0.023126735,50,2162,,,0.219,230,,0.140361702,0.297638298,,,,,,,,,,0.727272727,0.079293201,1,0.208588957,0.075037013,0.342140902,4.18543017,94281,22526,2.908675018,5.462185321,0.166353384,177,1064,0.046691968,0.286014799,0,0,4712,,,88.74239351,21,23664,54.93294026,135.6521752,,,,,,,,,,,,,93.1925091,57.68763195,142.4546496,,,,7.2,,,,,0,,,,,0.097058824,165,1700,0.053311894,0.140805753,0.072523585,0.028848656,0.116198514,0.026470588,0,0.058227218,0.008235294,0,0.018537529,0.772771318,1595,2064,0.71616299,0.829379645,,,,,,,,,,,,,0.76933423,0.68780424,0.85086422,0.289,,2064,0.181488303,0.396511697,73.95376742,,,71.42152967,76.48600517,,,,,,,,,,,,,73.72230268,71.08586676,76.35873861,,,,540.571067,102,12535,424.7821214,656.3600126,,,,,,,,,,,,,546.8267674,433.599618,680.5732465,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.121,,,0.103,0.141,0.175,,,0.151,0.201,0.092,,,0.078,0.108,,,,,,0.108,510,,,,0.102097898,508.3454348,4979,,,,,,,,,,,,,,,,,,,,,,,,,,0.349,,,0.33,0.369,0.148978775,372,2497,0.125148987,0.172808562,0.077617329,86,1108,0.050213073,0.105021584,0.001071582,5,4666,,,933.2,,,,,,,,,,,3.139699849,,,,,,,,,3.230562918,2.781274176,,,,,,,,,2.775311864,0.028105217,,,,,-1080.123,,,,,0.907922388,44500,49013,0.465879683,1.349965093,49532,,,42456.93617,56607.06383,,,,,,,,,,,,,50944,41787.40426,60100.59575,,,,,,0.463076923,301,650,,,,,,,,0.220806751,,49532,,,10.67615658,3,281,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,400,,,-888,-888,0.646849315,2361,3650,,,0.487,,,,,0.065856352,,,,,0.812782805,1437,1768,0.745249562,0.880316049,0.082840237,140,1690,0.036930294,0.12875018,0.71040724,1256,1768,0.636696996,0.784117484,4666,,,,,0.229747107,1072,4666,,,0.244963566,1143,4666,,,0.002786112,13,4666,,,0.002143163,10,4666,,,0.005357908,25,4666,,,0.000428633,2,4666,,,0.028075439,131,4666,,,0.944920703,4409,4666,,,0.003617454,16,4423,0,0.017356079,0.489069867,2282,4666,,,1,4681,4681,, -29,173,29173,MO,Ralls County,2024,1,10656.62095,189,28200,8059.144067,13254.09782,0,,,,2,,,,2,,,,2,,,,2,10946.8167,8239.796475,13653.83692,,,,,2,,0.183,,,0.155,0.214,4.19738717,,,3.37269148,5.147812485,5.321322079,,,4.304271988,6.443658639,0.102898551,71,690,0.080228268,0.125568833,0,,,,,,,,,,,,,0.099547511,0.076757481,0.122337542,,,,,,,0.225,,,0.182,0.273,0.39,,,0.316,0.47,8.4,0.015575911,0.107,,,0.267,,,0.22,0.322,0.119942057,1242,10355,,,0.170317118,,,0.137731404,0.208215898,0.4,6,15,0.262274328,0.527864126,260.6,27,10361,,,16.71018277,32,1915,11.42975264,23.58979221,,,,,,,,,,,,,15.93406593,10.67129403,22.88397662,,,,,,,0.109127232,874,8009,0.09482936,0.123425104,9.65158E-05,1,10361,,,10361,9.59693E-05,1,10420,,,10420,0.000575816,6,10420,,,1736.666667,4052,,,,,,,,,3965,0.53,,,,,,,,,0.53,0.2,,,,,,,,,0.19,0.914859221,6791,7423,0.8895894,0.940129042,0.507455732,1089,2146,0.419432841,0.595478622,0.023126735,125,5405,,,0.131,273,,0.080957447,0.181042553,,,,,,,,,,,,,0.099489796,0.051859245,0.147120347,4.684840205,113167,24156,3.387191096,5.982489315,0.186229205,403,2164,0.114777216,0.257681194,8.68642023,9,10361,,,106.9934831,55,51405,80.60213398,139.266725,,,,,,,,,,,,,110.2625883,82.83264992,143.8687597,,,,8,,,,,1,,,,,0.119854722,495,4130,0.083719231,0.155990212,0.112167764,0.072588767,0.151746761,0.013075061,0.000166675,0.025983447,0.006053269,0,0.013816671,0.818282426,3697,4518,0.787384064,0.849180788,,,,,,,,,,,,,0.79775641,0.752154121,0.8433587,0.263,,4518,0.205178997,0.320821004,75.45423687,,,73.44286617,77.46560758,,,,,,,,,,,,,75.12849636,73.06072522,77.1962675,,,,456.3904831,189,28200,383.8180022,528.9629641,,,,,,,,,,,,,467.0177921,391.4434353,542.5921489,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.13,,,0.112,0.15,0.182,,,0.159,0.209,0.097,,,0.083,0.114,,,,,,0.107,1100,,,,0.015575911,158.3602874,10167,,,,,,,,,,,,,,,,,,,,,,,,,,0.349,,,0.331,0.366,0.124299542,732,5889,0.105235712,0.143363371,0.068376068,152,2223,0.04692926,0.089822877,,0,10420,,,,,,,,,,,,,,3.041474947,,,,,,,,,3.105795686,2.915621867,,,,,,,,,2.936172138,,,,,,-1237.894,,,,,0.765745253,40694,53143,0.688289167,0.843201339,65016,,,56144.17021,73887.82979,,,,,,,38500,7005.361702,69994.6383,,,,62206,56370.08511,68041.91489,,,,,,0.306148055,244,797,,,,,,,,0.214624093,,65016,,,18.01801802,10,555,,,,,,,,,,,,,,,,,,,,,,,,,,21.20390854,11,51405,10.16809833,38.99474276,21.39869663,,,,,,,,,,,,,22.18696857,10.63951383,40.80262515,,,,,,,,,,,,,,,,,,,,,,,,,,,22.27636617,16,71825,12.73286802,36.17542304,,,,,,,,,,,,,21.89109908,12.25228198,36.10603884,,,,,,900,,,0,-888,0.703791175,5662,8045,,,0.591,,,,,12.56319379,,,,,0.869706029,3491,4014,0.836848854,0.902563204,0.117874645,457,3877,0.078606204,0.157143087,0.841305431,3377,4014,0.793433578,0.889177284,10420,,,,,0.204702495,2133,10420,,,0.22975048,2394,10420,,,0.013339731,139,10420,,,0.002879079,30,10420,,,0.003646833,38,10420,,,0.00134357,14,10420,,,0.015547025,162,10420,,,0.949040307,9889,10420,,,0,0,9822,0,0.009219425,0.497888676,5188,10420,,,0.9750845,10097,10355,, -29,175,29175,MO,Randolph County,2024,1,10219.64269,501,68475,8833.978654,11605.30673,0,,,,2,,,,2,17118.99391,6282.369052,37260.84271,1,,,,2,10377.00366,8897.269033,11856.73828,,,,,2,,0.195,,,0.165,0.228,4.33636307,,,3.499592272,5.229640812,5.634928467,,,4.60105502,6.640565704,0.08940231,178,1991,0.076869223,0.101935398,0,,,,,,,0.244897959,0.124490488,0.365305431,,,,0.082589286,0.06984455,0.095334021,,,,,,,0.222,,,0.177,0.269,0.422,,,0.351,0.493,7.3,0.060162802,0.137,,,0.295,,,0.244,0.349,0.601634569,14870,24716,,,0.163025347,,,0.131238321,0.19845639,0.25,5,20,0.13289271,0.377758007,375.6,93,24760,,,31.37632339,163,5195,26.55946009,36.19318669,,,,,,,,,,,,,31.92904656,26.71396896,37.14412417,,,,,,,0.111225207,2058,18503,0.095735845,0.126714568,0.000282714,7,24760,,,3537.142857,0.000406141,10,24622,,,2462.2,0.001299651,32,24622,,,769.4375,3839,,,,,,,3911,,3823,0.42,,,,,,,0.53,,0.42,0.37,,,,,,,0.35,,0.37,0.896381196,15407,17188,0.880450429,0.912311963,0.497111584,3270,6578,0.434586621,0.559636547,0.025512707,260,10191,,,0.209,1094,,0.142276596,0.275723404,,,,,,,0.1,0,0.830370345,0.562189055,0.222462193,0.901915917,0.241753276,0.165278189,0.318228363,3.900792522,95979,24605,3.32078798,4.480797064,0.301155423,1616,5366,0.218398401,0.383912445,12.92407108,32,24760,,,75.22750253,93,123625,60.71830352,92.15877292,,,,,,,,,,,,,81.15402852,65.17334878,99.86701535,,,,7.6,,,,,0,,,,,0.095828636,850,8870,0.073318774,0.118338498,0.084872521,0.061048599,0.108696444,0.00789177,0.001592149,0.014191391,0.003945885,7.45592E-05,0.007817211,0.840973401,8916,10602,0.810124757,0.871822046,,,,,,,,,,,,,0.848313511,0.823810718,0.872816304,0.274,,10602,0.227899985,0.320100015,73.80745333,,,72.72437321,74.89053344,,,,,,,,,,,,,73.63223701,72.49579529,74.76867874,,,,561.3876238,501,68475,510.8603269,611.9149208,,,,,,,870.915647,583.2658773,1250.780145,,,,567.4144217,514.0779418,620.7509016,,,,59.34969689,14,23589,32.44703157,99.57870669,,,,,,,,,,,,,59.57108817,30.78125054,104.0587026,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.134,,,0.115,0.154,0.185,,,0.159,0.212,0.107,,,0.091,0.123,99.9,21,21012,,,0.137,3400,,,,0.060162802,1528.977453,25414,,,17.58729386,13,73917,9.364493271,30.07480812,,,,,,,,,,,,,18.31054688,9.461326765,31.98484047,,,,0.362,,,0.344,0.378,0.132133715,1755,13282,0.111878396,0.152389034,0.059176985,325,5492,0.041304644,0.077049325,0.000934124,23,24622,,,1070.521739,0.925683594,236.975,256,,,,,,,,3.082801589,,,,,,,,,3.050774149,2.850884816,,,,,,,,,2.829127156,0.04604619,,,,,-402.001475,,,,,0.796956183,36813,46192,0.739280782,0.854631584,48762,,,43178.68085,54345.31915,,,,,,,,,,,,,51601,45143.12766,58058.87234,,,,,,0.476578411,1638,3437,,,60.66860704,,,,,0.270702596,,48762,,,10.58201058,16,1512,,,,,,,,,,,,,,,,,,,,,,,,,,22.54928562,31,123625,15.21390832,32.19050733,25.07583418,,,,,,,,,,,,,25.15401146,16.84603625,36.12535635,,,,21.03134479,26,123625,13.73837267,30.81579299,,,,,,,,,,,,,23.70791845,15.48679945,34.73759354,,,,10.93726614,19,173718,6.58494869,17.07989591,,,,,,,,,,,,,12.318305,7.416424297,19.23655916,,,,31.42857143,,2100,,,18,48,0.556683938,10744,19300,,,0.616,,,,,34.13696676,,,,,0.682232722,6209,9101,0.649753878,0.714711566,0.091073446,806,8850,0.067035177,0.115111716,0.818371608,7448,9101,0.783650101,0.853093114,24622,,,,,0.217894566,5365,24622,,,0.17131021,4218,24622,,,0.055032085,1355,24622,,,0.006213955,153,24622,,,0.007432378,183,24622,,,0.000284299,7,24622,,,0.023596783,581,24622,,,0.883559418,21755,24622,,,0.001382588,32,23145,0,0.005532335,0.473966372,11670,24622,,,0.507889626,12553,24716,, -29,177,29177,MO,Ray County,2024,1,10018.07897,439,63291,8505.676156,11530.48178,0,,,,2,,,,2,,,,2,,,,2,10429.41797,8817.325661,12041.51027,,,,,2,,0.183,,,0.156,0.213,4.291817562,,,3.474700886,5.258217119,5.494215521,,,4.504448363,6.669489328,0.070673345,127,1797,0.058824007,0.082522682,0,,,,,,,,,,,,,0.070165094,0.058008648,0.08232154,,,,,,,0.223,,,0.182,0.266,0.365,,,0.294,0.444,8.2,0.02137694,0.116,,,0.275,,,0.226,0.329,0.601476812,13929,23158,,,0.167988699,,,0.133976754,0.206681122,0.310344828,9,29,0.211895015,0.410210813,352.1,81,23008,,,28.44214609,132,4641,23.59002681,33.29426537,,,,,,,,,,,,,28.01977867,22.98538363,33.05417371,,,,,,,0.118364264,2194,18536,0.102874902,0.133853626,0.000217316,5,23008,,,4601.6,0.000129831,3,23107,,,7702.333333,0.000432769,10,23107,,,2310.7,4016,,,,,,,,,4080,0.36,,,,,,,,,0.36,0.43,,,,,,,,,0.44,0.896607431,14430,16094,0.871184125,0.922030737,0.477332334,2548,5338,0.409855559,0.544809109,0.033363886,364,10910,,,0.167,851,,0.124106383,0.209893617,,,,,,,0.204081633,0,0.792559176,0.047619048,0,0.120951743,0.174727669,0.12740833,0.222047007,4.320221886,128505,29745,3.753634081,4.886809692,0.185086042,968,5230,0.128708649,0.241463435,10.43115438,24,23008,,,97.66391406,112,114679,79.57630405,115.7515241,,,,,,,,,,,,,101.6392831,82.55813883,120.7204274,,,,7.1,,,,,0,,,,,0.101540217,890,8765,0.075381823,0.12769861,0.082406877,0.056842825,0.107970929,0.01699943,0.008009217,0.025989642,0.003308614,0,0.007305319,0.82788691,9019,10894,0.795671012,0.860102809,,,,,,,,,,,,,0.763974067,0.702865584,0.82508255,0.505,,10894,0.446072449,0.563927551,74.5197379,,,73.3483581,75.69111771,,,,,,,,,,,,,74.097635,72.87827429,75.31699572,,,,495.2155004,439,63291,446.0977963,544.3332045,,,,,,,,,,,,,508.8856097,457.5500834,560.2211359,,,,53.24577362,12,22537,27.51286821,93.00965101,,,,,,,,,,,,,59.11621262,30.54620971,103.2641266,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.128,,,0.111,0.147,0.181,,,0.156,0.207,0.1,,,0.085,0.116,36.1,7,19387,,,0.116,2680,,,,0.02137694,502.2298318,23494,,,,,,,,,,,,,,,,,,,,,,,,,,0.348,,,0.332,0.365,0.136750224,1833,13404,0.117686394,0.155814054,0.071958457,388,5392,0.051703138,0.092213776,0.000346215,8,23107,,,2888.375,0.881,198.225,225,,,,,,,,2.969939558,,,,,,,,,3.005317145,2.957446085,,,,,,,,,2.953425426,0.07549408,,,,,-462.087025,,,,,0.701182325,43115,61489,0.556106877,0.846257774,70506,,,62506.34043,78505.65957,,,,23750,22957.65957,24542.34043,,,,84423,59989.12766,108856.8723,69879,64214.65957,75543.34043,,,,,,0.407183821,1349,3313,,,36.51061044,,,,,0.213967606,,70506,,,5.426356589,7,1290,,,,,,,,,,,,,,,,,,,,,,,,,,28.98749968,30,114679,19.26198302,41.89500792,26.15997698,,,,,,,,,,,,,28.6076703,18.68748003,41.91686525,,,,15.69598619,18,114679,9.302436174,24.80642512,,,,,,,,,,,,,15.85199828,9.234373165,25.38058486,,,,23.71398439,38,160243,16.78142674,32.54929633,,,,,,,,,,,,,25.33840101,17.93096062,34.77893507,,,,26.19047619,,2100,,,8,47,0.659813084,11649,17655,,,0.691,,,,,15.93368837,,,,,0.7852502,6889,8773,0.7608715,0.809628899,0.077784325,660,8485,0.054649943,0.100918708,0.836201983,7336,8773,0.801645731,0.870758235,23107,,,,,0.225169862,5203,23107,,,0.191284027,4420,23107,,,0.011944432,276,23107,,,0.007140693,165,23107,,,0.004327693,100,23107,,,0.000952092,22,23107,,,0.028952266,669,23107,,,0.931752283,21530,23107,,,0.00077821,17,21845,0,0.005379251,0.499372485,11539,23107,,,0.740694361,17153,23158,, -29,179,29179,MO,Reynolds County,2024,1,11670.81267,135,16613,8240.44878,15101.17655,0,,,,2,,,,2,,,,2,,,,2,11808.15103,8188.338005,15427.96406,,,,,2,,0.216,,,0.182,0.254,4.930232482,,,3.980050013,5.974432989,5.704353788,,,4.594218165,6.897864193,0.088036117,39,443,0.061650123,0.114422112,0,,,,,,,,,,,,,0.085918854,0.059084838,0.11275287,,,,,,,0.255,,,0.208,0.305,0.396,,,0.32,0.473,5.6,0.182456012,0.158,,,0.308,,,0.256,0.364,0.502624672,3064,6096,,,0.155548629,,,0.124114596,0.190807712,0.190476191,4,21,0.083840113,0.319045344,98.6,6,6087,,,38.57008467,41,1063,27.67855867,52.32467504,,,,,,,,,,,,,39.41908714,27.89529216,54.10577689,,,,,,,0.163105103,748,4586,0.140466805,0.1857434,0.000328569,2,6087,,,3043.5,0.000499501,3,6006,,,2002,0.001831502,11,6006,,,546,2623,,,,,,,,,2638,0.38,,,,,,,,,0.38,0.25,,,,,,,,,0.25,0.78737028,3566,4529,0.745048196,0.829692365,0.521052632,693,1330,0.400348529,0.641756735,0.02889761,81,2803,,,0.298,322,,0.189574468,0.406425532,,,,,,,,,,,,,0.337688442,0.2532824,0.422094484,4.384436349,86654,19764,3.316556496,5.452316202,0.188486537,203,1077,0.088005367,0.288967706,18.07129949,11,6087,,,131.9006563,41,31084,94.65418823,178.938134,,,,,,,,,,,,,134.4966721,95.64028172,183.8613783,,,,7,,,,,0,,,,,0.07751938,200,2580,0.049682529,0.105356231,0.053875969,0.022595758,0.08515618,0.020930233,0.004884545,0.03697592,0.003875969,0,0.014041839,0.789852009,1868,2365,0.728044647,0.85165937,,,,,,,,,,,,,0.778804084,0.734164318,0.823443849,0.326,,2365,0.243502805,0.408497195,73.74100503,,,71.25774196,76.2242681,,,,,,,,,,,,,73.2614518,70.68602835,75.83687525,,,,532.8556962,135,16613,432.9444589,632.7669335,,,,,,,,,,,,,541.0576261,437.829193,644.2860593,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.15,,,0.129,0.173,0.197,,,0.171,0.224,0.109,,,0.092,0.126,94.6,5,5283,,,0.158,970,,,,0.182456012,1221.725459,6696,,,,,,,,,,,,,,,,,,,,,,,,,,0.338,,,0.321,0.354,0.190835267,658,3448,0.162239522,0.219431012,0.079734219,96,1204,0.054712943,0.104755496,0.000666001,4,6006,,,1501.5,,,,,,,,,,,3.290932229,,,,,,,,,3.272512335,3.334293543,,,,,,,,,3.336456212,,,,,,-7926.154667,,,,,0.587774359,28654,48750,0.447096787,0.728451931,44409,,,38204.91489,50613.08511,,,,,,,,,,14241,6644.06383,21837.93617,44592,36199.14894,52984.85106,,,,,,0.622198506,583,937,,,,,,,,0.26003738,,44409,,,7.518796993,2,266,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,32.17089178,10,31084,15.42719308,59.1634154,,,,,,,,,,,,,34.48632617,16.53753387,63.42158169,,,,47.75875009,21,43971,29.56341904,73.0043227,,,,,,,,,,,,,51.03776795,31.59318277,78.01664982,,,,,,500,,,-888,0,0.647301276,3298,5095,,,0.353,,,,,0.109350474,,,,,0.803811174,1856,2309,0.756822085,0.850800262,0.067056706,149,2222,0.029281841,0.10483157,0.75054136,1733,2309,0.690076893,0.811005827,6006,,,,,0.192141192,1154,6006,,,0.241924742,1453,6006,,,0.012654013,76,6006,,,0.014985015,90,6006,,,0.002664003,16,6006,,,0.0001665,1,6006,,,0.016650017,100,6006,,,0.930735931,5590,6006,,,0,0,5817,0,0.013928361,0.482350982,2897,6006,,,1,6096,6096,, -29,181,29181,MO,Ripley County,2024,1,16468.54239,374,33779,13920.9353,19016.14949,0,,,,2,,,,2,,,,2,,,,2,16772.26429,14140.56473,19403.96384,,,,,2,,0.245,,,0.21,0.287,5.219257602,,,4.256139709,6.28773387,6.256994992,,,5.201469167,7.393097254,0.093333333,98,1050,0.075737751,0.110928915,0,,,,,,,,,,,,,0.092793682,0.074926191,0.110661174,,,,,,,0.287,,,0.237,0.338,0.444,,,0.376,0.514,6.7,0.039681178,0.177,,,0.334,,,0.282,0.392,0.59219028,6324,10679,,,0.143581121,,,0.115791877,0.175386332,0.235294118,4,17,0.110052656,0.376271045,310.8,33,10617,,,39.74895398,95,2390,32.15927743,48.59103499,,,,,,,,,,,,,41.62936437,33.6002698,50.99878381,,,,,,,0.151182231,1266,8374,0.132118401,0.170246061,9.41886E-05,1,10617,,,10617,,0,10703,,,,0.000840886,9,10703,,,1189.222222,2557,,,,,,,,,2569,0.36,,,,,,,,,0.36,0.25,,,,,,,,,0.25,0.821722946,6181,7522,0.795866541,0.847579351,0.486582478,1233,2534,0.387344775,0.585820182,0.031535105,159,5042,,,0.323,802,,0.207425532,0.438574468,,,,,,,,,,0.259036145,0,0.579227709,0.195557491,0.14151479,0.249600193,4.567779961,81375,17815,3.707724776,5.427835145,0.241271087,615,2549,0.144260256,0.338281918,14.12828483,15,10617,,,113.7603241,73,64170,89.16993443,143.0365283,,,,,,,,,,,,,114.9481912,89.60775425,145.2301244,,,,8,,,,,0,,,,,0.115577889,575,4975,0.083598695,0.147557084,0.100283631,0.065906466,0.134660795,0.012663317,0.004300957,0.021025676,0.007035176,0.000267228,0.013803124,0.768240343,3222,4194,0.710468659,0.826012028,,,,,,,,,,,,,0.743851684,0.659885126,0.827818241,0.471,,4194,0.38816792,0.55383208,70.01831821,,,68.39395038,71.64268604,,,,,,,,,,,,,69.57608921,67.92837347,71.22380496,,,,808.2689183,374,33779,720.2696927,896.2681439,,,,,,,,,,,,,828.4499047,737.3414877,919.5583218,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.162,,,0.14,0.186,0.211,,,0.184,0.24,0.128,,,0.11,0.148,,,,,,0.177,1950,,,,0.039681178,559.5046097,14100,,,,,,,,,,,,,,,,,,,,,,,,,,0.386,,,0.369,0.403,0.184898028,1097,5933,0.158685262,0.211110794,0.070620367,181,2563,0.050365048,0.090875686,0.000654022,7,10703,,,1529,0.880597015,118,134,,,,,,,,3.008089639,,,,,,,,,3.029134206,2.930185998,,,,,,,,,2.962223917,0.07957751,,,,,-7488.84725,,,,,0.745339531,31106,41734,0.60169822,0.888980842,41587,,,35752.2766,47421.7234,,,,,,,,,,,,,42239,34978.06383,49499.93617,,,,,,0.897187644,1946,2169,,,,,,,,0.301849136,,41587,,,5.517241379,4,725,,,11.9840068,11,91789,5.982373016,21.44269849,,,,,,,,,,,,,11.46710089,5.498920597,21.08840681,,,,19.68630697,13,64170,10.17220208,34.38801649,20.25868786,,,,,,,,,,,,,20.6808085,10.68607553,36.12521052,,,,20.25868786,13,64170,10.78689807,34.64297322,,,,,,,,,,,,,19.70540421,10.1820699,34.42137552,,,,32.6836549,30,91789,22.05152472,46.65794964,,,,,,,,,,,,,33.25459257,22.27112256,47.75914208,,,,26.66666667,,1200,,,10,22,0.549183477,5717,10410,,,0.359,,,,,0.288730391,,,,,0.796493902,3135,3936,0.764879676,0.828108129,0.097502015,363,3723,0.061741114,0.133262916,0.78074187,3073,3936,0.75577238,0.80571136,10703,,,,,0.239559002,2564,10703,,,0.202092871,2163,10703,,,0.006633654,71,10703,,,0.011865832,127,10703,,,0.003830702,41,10703,,,0.000560591,6,10703,,,0.026628048,285,10703,,,0.93263571,9982,10703,,,9.84155E-05,1,10161,0,0.008734434,0.507988415,5437,10703,,,1,10679,10679,, -29,183,29183,MO,St. Charles County,2024,1,6114.916059,4429,1138872,5834.864664,6394.967454,0,,,,2,3286.005965,2105.406025,4889.316405,1,9882.74398,8336.914427,11428.57353,,2664.780158,1876.251152,3673.048427,,6102.975253,5799.744449,6406.206058,,,,,2,,0.125,,,0.103,0.148,3.288536815,,,2.632441883,3.948028361,4.960605459,,,4.218214423,5.723550435,0.075785275,2280,30085,0.072794664,0.078775886,0,,,,0.105347167,0.088348329,0.122346005,0.141330166,0.124691613,0.15796872,0.082872928,0.06867278,0.097073077,0.068504763,0.065358999,0.071650528,,,,0.095172414,0.07381122,0.116533608,0.134,,,0.103,0.168,0.37,,,0.321,0.421,8.8,0.049082642,0.072,,,0.208,,,0.17,0.246,0.871154957,353046,405262,,,0.195379394,,,0.165133338,0.227797377,0.34939759,58,166,0.310793491,0.387963174,265.1,1087,409981,,,6.96177738,622,89345,6.414659371,7.508895389,,,,,,,11.51869573,8.889886183,14.68152327,13.41991342,10.28897067,17.20372335,6.064405348,5.500943795,6.627866901,,,,13.14945478,9.436275776,17.83872019,0.062164641,21352,343475,0.056207194,0.068122088,0.000468314,192,409981,,,2135.317708,0.000652484,270,413803,,,1532.603704,0.002155615,892,413803,,,463.9047085,2710,,,,,,,4051,1146,2656,0.5,,,,,,0.41,0.42,0.36,0.5,0.56,,,,,,0.48,0.43,0.48,0.57,0.954371385,266659,279408,0.950829364,0.957913406,0.801825063,86023,107284,0.778500621,0.825149504,0.020540277,4715,229549,,,0.059,5350,,0.03993617,0.07806383,,,,0.061704589,0.014849624,0.108559554,0.120629728,0.058628383,0.182631074,0.129486134,0.080063261,0.178909007,0.040478685,0.032079955,0.048877416,3.583544936,172175,48046,3.456051688,3.711038184,0.158646779,14678,92520,0.142351751,0.174941807,6.390540049,262,409981,,,82.41868793,1659,2012893,78.45263437,86.38474149,,,,21.86947568,11.30027721,38.20157287,87.60951189,70.53771397,107.5650668,24.50980392,14.277864,39.24257038,87.22791523,82.84126833,91.61456213,,,,9.6,,,,,0,,,,,0.081454473,12175,149470,0.073660139,0.089248806,0.071030173,0.063496231,0.078564115,0.0076604,0.005611365,0.009709435,0.005854018,0.003231208,0.008476827,0.783665157,168546,215074,0.773789251,0.793541063,,,,0.667789891,0.597435805,0.738143977,0.753109453,0.705944044,0.800274861,0.730413325,0.676646246,0.784180404,0.741184856,0.732880776,0.749488936,0.374,,215074,0.360625565,0.387374435,79.29055886,,,79.01972254,79.56139519,,,,86.28735172,83.2087437,89.36595973,75.18929144,73.81928491,76.55929798,89.35040481,83.98903026,94.71177936,79.25375097,78.96759721,79.53990472,,,,305.0176171,4429,1138872,295.7418672,314.293367,,,,139.7071592,101.1067639,188.1846267,435.6505781,383.8553815,487.4457746,176.7508818,128.923306,236.5065862,306.4275255,296.53874,316.316311,,,,37.65456097,154,408981,31.70735062,43.60177132,,,,,,,71.11780455,41.42874192,113.8664944,,,,37.19702424,30.64985712,43.74419136,,,,4.935509345,150,30392,4.14566335,5.72535534,,,,,,,,,,,,,4.51109968,3.682993416,5.339205943,,,,,,,0.098,,,0.083,0.113,0.151,,,0.13,0.173,0.079,,,0.068,0.092,104.2,360,345454,,,0.072,29080,,,,0.049082642,17693.55608,360485,,,27.00690441,329,1218207,24.08858429,29.92522453,,,,,,,47.89346023,32.54128259,67.98094382,,,,27.6274411,24.44765626,30.80722594,,,,0.323,,,0.305,0.339,0.072214713,17952,248592,0.063874288,0.080555139,0.038258443,3811,99612,0.028726528,0.047790358,0.000688734,285,413803,,,1451.940351,0.94419181,4381.05,4640,,,0.032066855,660,20582,0.021511669,0.04262204,3.363135469,,,,,,3.683964701,2.847715979,3.063043274,3.426205806,3.260274165,,,,,,3.798361625,2.511741754,2.960634246,3.341557089,0.029989306,,,,,3241.7824,,,,,0.766319139,58287,76061,0.742196195,0.790442082,98925,,,96108.31915,101741.6809,92404,84555.65957,100252.3404,112952,96891.91489,129012.0851,89060,80007.06383,98112.93617,81509,66331.80851,96686.19149,100369,98438.78723,102299.2128,,,,,,0.151618834,8907,58746,,,32.64040264,,,,,0.212615618,,98925,,,7.351033469,170,23126,,,2.473649361,69,2789401,1.924646853,3.130561583,,,,,,,14.9665391,9.26452359,22.87794483,,,,1.569408754,1.110607041,2.154136132,,,,14.32741166,295,2012893,12.65866588,15.99615745,14.65552317,,,,,,,,,,,,,15.32161048,13.46124149,17.18197948,,,,10.97922244,221,2012893,9.531679292,12.42676559,,,,,,,21.18032156,13.27359476,32.06726137,,,,10.85324291,9.305906686,12.40057913,,,,8.066247915,225,2789401,7.012258187,9.120237642,,,,,,,10.69038507,5.98332737,17.63216443,,,,8.218745844,7.076827411,9.360664278,,,,15.92689295,,38300,,,37,573,0.742854753,222017,298870,,,0.798,,,,,95.8391181,,,,,0.807361508,126256,156381,0.799019337,0.815703679,0.075307297,11616,154248,0.068277576,0.082337019,0.936597157,146466,156381,0.930622312,0.942572002,413803,,,,,0.223043332,92296,413803,,,0.171112824,70807,413803,,,0.057967197,23987,413803,,,0.002307862,955,413803,,,0.03123467,12925,413803,,,0.000732233,303,413803,,,0.037624184,15569,413803,,,0.850416744,351905,413803,,,0.004795538,1840,383690,0.003815208,0.005775868,0.504699096,208846,413803,,,0.056585616,22932,405262,, -29,185,29185,MO,St. Clair County,2024,1,9543.988536,222,24897,7194.141457,11893.83562,0,,,,2,,,,2,,,,2,,,,2,9803.647207,7341.037695,12266.25672,,,,,2,,0.208,,,0.177,0.241,4.634427373,,,3.722577185,5.554514538,5.82598606,,,4.776750893,6.916397111,0.046258503,34,735,0.031073198,0.061443809,0,,,,,,,,,,,,,0.043103448,0.028015161,0.058191736,,,,,,,0.248,,,0.203,0.295,0.387,,,0.318,0.464,7.4,0.035817167,0.147,,,0.288,,,0.241,0.341,0.348664369,3237,9284,,,0.145469489,,,0.116458127,0.179629541,0.25,2,8,0.070127692,0.458326521,160,15,9376,,,26.43678161,46,1740,19.35504679,35.2629619,,,,,,,,,,,,,26.15193026,18.84801104,35.34981244,,,,,,,0.146790342,997,6792,0.126535022,0.167045661,0.000426621,4,9376,,,2344,0.000313283,3,9576,,,3192,0.000208856,2,9576,,,4788,2533,,,,,,,,,2549,0.32,,,,,,,,,0.32,0.2,,,,,,,,,0.2,0.893526655,6101,6828,0.872948931,0.914104379,0.437397485,800,1829,0.353553598,0.521241372,0.029054411,110,3786,,,0.289,567,,0.184148936,0.393851064,,,,,,,,,,0.566666667,0.116344088,1,0.105578884,0.058985495,0.152172274,4.372340976,84478,19321,3.349634369,5.395047584,0.210137276,398,1894,0.104797279,0.315477273,11.73208191,11,9376,,,101.6539952,48,47219,74.95163139,134.7784497,,,,,,,,,,,,,107.7320166,79.43308456,142.8370243,,,,7.4,,,,,0,,,,,0.10315534,425,4120,0.073847601,0.132463079,0.075624082,0.047958739,0.103289426,0.015776699,0,0.032439124,0.013106796,0.003554914,0.022658679,0.774678112,2888,3728,0.740083929,0.809272294,,,,,,,,,,,,,0.71942446,0.673634289,0.765214632,0.399,,3728,0.326328916,0.471671084,75.99692869,,,74.07581177,77.91804561,,,,,,,,,,,,,75.55710121,73.58345742,77.530745,,,,512.8016124,222,24897,437.4831091,588.1201157,,,,,,,,,,,,,523.7727734,445.7167905,601.8287564,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.144,,,0.124,0.165,0.194,,,0.169,0.221,0.108,,,0.091,0.125,,,,,,0.147,1350,,,,0.035817167,351.1873182,9805,,,,,,,,,,,,,,,,,,,,,,,,,,0.355,,,0.337,0.372,0.173265306,849,4900,0.14824403,0.198286583,0.079838302,158,1979,0.054817026,0.104859579,0.000626566,6,9576,,,1596,,,,,,,,,,,2.810681387,,,,,,,,,2.815853983,2.704098844,,,,,,,,,2.714331642,0.0774632,,,,,-5363.477433,,,,,0.930871598,38822,41705,0.827659552,1.034083644,45174,,,38657.74468,51690.25532,,,,,,,,,,,,,44466,41259.70213,47672.29787,,,,,,0.507960576,670,1319,,,,,,,,0.227409572,,45174,,,3.937007874,2,508,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,36.40169268,24,65931,23.32325136,54.16283326,,,,,,,,,,,,,38.56970671,24.71233886,57.38866628,,,,,,800,,,-888,19,0.658807947,4974,7550,,,0.458,,,,,6.007446596,,,,,0.764348925,3023,3955,0.73661533,0.792082521,0.084238411,318,3775,0.053737988,0.114738833,0.768647282,3040,3955,0.734418967,0.802875597,9576,,,,,0.209482038,2006,9576,,,0.258563074,2476,9576,,,0.006787803,65,9576,,,0.008563074,82,9576,,,0.003446115,33,9576,,,0.000104428,1,9576,,,0.024749373,237,9576,,,0.940267335,9004,9576,,,0.002152243,19,8828,0,0.01085631,0.485902256,4653,9576,,,1,9284,9284,, -29,186,29186,MO,Ste. Genevieve County,2024,1,7626.313,287,49881,6111.498054,9141.127947,0,,,,2,,,,2,,,,2,,,,2,7550.092657,6022.381417,9077.803897,,,,,2,,0.169,,,0.141,0.2,4.190786884,,,3.332855469,5.083752708,5.33437037,,,4.310806268,6.39769359,0.084659913,117,1382,0.069983085,0.099336741,0,,,,,,,,,,,,,0.087121212,0.071907415,0.102335009,,,,,,,0.21,,,0.166,0.255,0.395,,,0.319,0.473,7.3,0.124279847,0.106,,,0.261,,,0.213,0.311,0.345040316,6376,18479,,,0.184440257,,,0.148723078,0.223871998,0.413793103,12,29,0.319259257,0.503293401,204.4,38,18588,,,19.02097902,68,3575,14.77053448,24.11362326,,,,,,,,,,,,,19.38325991,14.99101181,24.66025916,,,,,,,0.108172912,1579,14597,0.09387504,0.122470785,0.000430385,8,18588,,,2323.5,0.00016091,3,18644,,,6214.666667,0.001180004,22,18644,,,847.4545455,3973,,,,,,,,,4004,0.44,,,,,,,,,0.44,0.42,,,,,,,,,0.42,0.914614744,12072,13199,0.89535483,0.933874657,0.610705596,2510,4110,0.517508388,0.703902804,0.022553146,209,9267,,,0.131,505,,0.080957447,0.181042553,,,,,,,,,,,,,0.106815579,0.055032559,0.158598598,4.772606986,126245,26452,4.115864592,5.429349381,0.219011407,864,3945,0.133908482,0.304114332,12.37357435,23,18588,,,105.3951208,95,90137,85.27094652,128.8400697,,,,,,,,,,,,,107.9938687,87.16498992,132.2997852,,,,7.8,,,,,0,,,,,0.091034483,660,7250,0.060296729,0.121772236,0.074182324,0.045024392,0.103340257,0.013793103,0.00090894,0.026677267,0.005517241,0,0.011724278,0.857523302,7084,8261,0.829361909,0.885684695,,,,,,,,,,,,,0.844294839,0.786121869,0.902467808,0.418,,8261,0.354313807,0.481686193,77.72381094,,,76.39271164,79.05491023,,,,,,,,,,,,,77.75083865,76.41407118,79.08760612,,,,380.3840687,287,49881,332.7065512,428.0615862,,,,,,,,,,,,,379.0091774,330.4197002,427.5986546,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.122,,,0.104,0.142,0.176,,,0.151,0.204,0.093,,,0.079,0.109,248.6,39,15685,,,0.106,1940,,,,0.124279847,2255.057826,18145,,,33.08458626,18,54406,19.60802261,52.28790991,,,,,,,,,,,,,32.67408561,19.03385894,52.31437624,,,,0.353,,,0.335,0.372,0.125591968,1326,10558,0.106528138,0.144655798,0.064592174,274,4242,0.045528344,0.083656003,0.000858185,16,18644,,,1165.25,0.875,123.375,141,,,,,,,,3.255536659,,,,,,,,,3.219417928,3.328194081,,,,,,,,,3.31666248,0.044826407,,,,,2927.914,,,,,0.747181531,41621,55704,0.614141372,0.88022169,63786,,,54990.42553,72581.57447,,,,,,,46280,45927.31915,46632.68085,,,,61374,55421.31915,67326.68085,,,,,,0.3125,565,1808,,,63.33913044,,,,,0.209466027,,63786,,,13.05220884,13,996,,,,,,,,,,,,,,,,,,,,,,,,,,15.04291813,17,90137,8.419407086,24.81100581,18.86017951,,,,,,,,,,,,,15.54165875,8.698548421,25.6336026,,,,13.31306789,12,90137,6.879056446,23.2552504,,,,,,,,,,,,,13.93469274,7.200259079,24.34110392,,,,23.79328395,30,126086,16.05322877,33.9663923,,,,,,,,,,,,,24.16324354,16.18250343,34.70244835,,,,25,,1600,,,5,35,0.676945039,9484,14010,,,0.63,,,,,7.604138163,,,,,0.813088049,5790,7121,0.778247113,0.847928986,0.069086139,474,6861,0.039998129,0.09817415,0.806909142,5746,7121,0.773712002,0.840106282,18644,,,,,0.211596224,3945,18644,,,0.21181077,3949,18644,,,0.017485518,326,18644,,,0.003540013,66,18644,,,0.003164557,59,18644,,,0.006221841,116,18644,,,0.014320961,267,18644,,,0.944647071,17612,18644,,,0.001888412,33,17475,0,0.007356628,0.478277194,8917,18644,,,0.730071974,13491,18479,, -29,187,29187,MO,St. Francois County,2024,1,11812.7281,1438,186849,10880.40598,12745.05021,0,,,,2,,,,2,7885.46358,5196.570187,11472.93551,,,,,2,12244.82761,11253.68711,13235.9681,,,,,2,,0.198,,,0.169,0.233,4.470073352,,,3.64253298,5.360513869,5.753029577,,,4.804117989,6.814526137,0.094386694,454,4810,0.086124216,0.102649172,0,,,,,,,,,,,,,0.092617153,0.084169506,0.1010648,,,,,,,0.251,,,0.205,0.3,0.421,,,0.364,0.486,6.8,0.078241573,0.151,,,0.307,,,0.259,0.362,0.67790861,45367,66922,,,0.177171846,,,0.145977759,0.215473089,0.24137931,14,58,0.173787737,0.313284967,288.7,195,67541,,,29.82349361,392,13144,26.87111837,32.77586885,,,,,,,,,,53.84615385,29.43819337,90.34469662,29.86779827,26.80781721,32.92777933,,,,,,,0.127439133,6433,50479,0.110758282,0.144119984,0.000666262,45,67541,,,1500.911111,0.000433036,29,66969,,,2309.275862,0.003165644,212,66969,,,315.8915094,2773,,,,,,,1393,,2740,0.38,,,,,,,,,0.38,0.41,,,,,,,0.32,0.33,0.41,0.868629407,40922,47111,0.854846703,0.882412111,0.529525967,9819,18543,0.478639224,0.580412709,0.032504107,831,25566,,,0.227,3090,,0.161468085,0.292531915,,,,,,,,,,0.144522145,0,0.298789684,0.204275345,0.158262081,0.250288609,4.659526938,106377,22830,3.991503695,5.327550181,0.229711532,3241,14109,0.185037932,0.274385131,11.40048267,77,67541,,,108.1765968,362,334638,97.03275083,119.3204428,,,,,,,,,,,,,114.2793887,102.323815,126.2349624,,,,7.6,,,,,1,,,,,0.131257631,3225,24570,0.107303749,0.155211514,0.098831249,0.077264361,0.120398136,0.025234025,0.012814676,0.037653375,0.017094017,0.009358498,0.024829536,0.800364216,21096,26358,0.775190052,0.82553838,,,,,,,,,,,,,0.82879641,0.80499922,0.8525936,0.281,,26358,0.24226285,0.31973715,72.59247382,,,71.91331702,73.27163062,,,,,,,79.3813635,63.42226995,95.34045706,,,,72.21394566,71.50811232,72.91977899,,,,596.1957253,1438,186849,564.466122,627.9253286,,,,,,,711.884963,406.9037656,1156.05658,,,,611.4824894,578.1612307,644.8037482,,,,66.19522749,41,61938,47.50283811,89.8013006,,,,,,,,,,,,,65.0035137,45.76847254,89.59878099,,,,6.553348351,32,4883,4.482485421,9.251372533,,,,,,,,,,,,,6.304347826,4.222120682,9.054095095,,,,,,,0.138,,,0.118,0.16,0.189,,,0.165,0.217,0.106,,,0.091,0.124,90.2,52,57625,,,0.151,10170,,,,0.078241573,5113.790976,65359,,,48.20091333,97,201241,39.08769365,58.8010266,,,,,,,,,,,,,50.8823211,41.11809484,62.26707466,,,,0.345,,,0.329,0.36,0.153905033,5630,36581,0.131266735,0.176543331,0.059757684,873,14609,0.043076833,0.076438535,0.00117965,79,66969,,,847.7088608,0.911580278,721.06,791,,,,,,,,3.119124308,,,,,,,,,3.128360543,3.250665134,,,,,,,,,3.260124732,0.036455176,,,,,-2967.27858,,,,,0.78704157,36976,46981,0.70538541,0.86869773,48574,,,44235.78723,52912.21277,,,,,,,28170,24807.61702,31532.38298,,,,54016,49359.65957,58672.34043,,,,,,0.505198717,5199,10291,,,,,,,,0.276547124,,48574,,,8.650065531,33,3815,,,6.199429225,29,467785,4.151855048,8.903414483,,,,,,,,,,,,,6.051099205,3.952778901,8.866262349,,,,19.36455131,68,334638,14.94515188,24.68171027,20.3204657,,,,,,,,,,,,,20.7724753,15.96214037,26.5770195,,,,16.43567079,55,334638,12.38159652,21.39328468,,,,,,,,,,,,,16.93027981,12.64434275,22.2018095,,,,20.09470163,94,467785,16.23856438,24.59082564,,,,,,,,,,,,,21.87705097,17.67888408,26.77196985,,,,37.36842105,,5700,,,54,159,0.537601997,28001,52085,,,0.609,,,,,45.86605777,,,,,0.691402828,16575,23973,0.664150486,0.718655171,0.101217004,2362,23336,0.081010648,0.12142336,0.845451133,20268,23973,0.822208394,0.868693871,66969,,,,,0.210007616,14064,66969,,,0.173154743,11596,66969,,,0.039212173,2626,66969,,,0.004823127,323,66969,,,0.004584211,307,66969,,,0.000836208,56,66969,,,0.021427825,1435,66969,,,0.914318565,61231,66969,,,0.002656547,168,63240,0.000112352,0.005200741,0.474010363,31744,66969,,,0.409760617,27422,66922,, -29,189,29189,MO,St. Louis County,2024,1,9071.227765,14396,2746805,8846.119718,9296.335811,0,,,,2,2629.220974,2088.782999,3169.658948,,17959.04029,17345.56851,18572.51207,,5509.233981,4574.881505,6443.586457,,6310.299395,6077.580238,6543.018553,,,,,2,,0.146,,,0.126,0.17,3.318294342,,,2.748860919,3.917479275,5.1453146,,,4.499505591,5.813574718,0.099967665,7729,77315,0.097853285,0.102082045,0,,,,0.091991595,0.083335918,0.100647272,0.155452344,0.150977849,0.15992684,0.078924291,0.0698892,0.087959382,0.06776141,0.065340614,0.070182206,,,,0.105917667,0.093427601,0.118407734,0.162,,,0.131,0.196,0.341,,,0.305,0.377,8.5,0.050488771,0.089,,,0.219,,,0.19,0.252,0.952726005,956656,1004125,,,0.186540737,,,0.163704924,0.211279676,0.308558559,137,444,0.284946813,0.3323653,620,6183,997187,,,12.77122052,2757,215876,12.29449314,13.24794789,,,,,,,28.54275839,27.22121018,29.8643066,22.86018076,19.80444004,25.91592147,4.256664721,3.892543606,4.620785836,,,,21.87871582,18.71739197,25.04003966,0.076677621,61132,797260,0.070720174,0.082635068,0.001214416,1211,997187,,,823.4409579,0.000893566,885,990414,,,1119.111864,0.003608592,3574,990414,,,277.1163962,2989,,,,,5572,2043,5265,2203,2499,0.52,,,,,,0.41,0.43,0.37,0.53,0.57,,,,,0.45,0.55,0.37,0.41,0.6,0.941917884,652929,693191,0.939297655,0.944538113,0.781989164,196578,251382,0.765980098,0.79799823,0.02439889,12871,527524,,,0.143,30200,,0.117978723,0.168021277,0.011363636,0,0.280705443,0.052086569,0.027597155,0.076575984,0.304757959,0.278197552,0.331318366,0.149013599,0.109113168,0.18891403,0.050542196,0.042136998,0.058947394,4.72079289,161470,34204,4.591267962,4.850317817,0.288184451,62983,218551,0.27157092,0.304797982,10.24882996,1022,997187,,,104.4971534,5203,4979083,101.6577074,107.3365994,,,,20.77004959,15.31419495,27.53807245,172.1848388,164.855192,179.5144856,51.79145308,40.93899445,64.63807738,89.53014053,86.27773842,92.78254265,,,,9.2,,,,,0,,,,,0.126275448,51730,409660,0.121395486,0.13115541,0.112744917,0.107573783,0.117916051,0.010630767,0.008881468,0.012380066,0.007860177,0.006511146,0.009209208,0.758849859,373150,491731,0.751754901,0.765944817,0.683788122,0.531286537,0.836289707,0.633978189,0.606441569,0.661514809,0.7112918,0.693238779,0.729344822,0.738391449,0.704508075,0.772274823,0.81741029,0.811599804,0.823220775,0.309,,491731,0.300244377,0.317755623,76.77712685,,,76.59279705,76.96145665,,,,87.0344289,85.65179532,88.41706248,69.07997377,68.68000506,69.47994249,82.67063022,81.06295766,84.27830278,79.25793216,79.05324829,79.46261603,,,,404.5063451,14396,2746805,397.5502872,411.4624031,,,,129.9381524,110.4748254,149.4014793,763.8168766,743.6640801,783.9696731,254.3608353,215.5666913,293.1549793,308.794982,301.5258284,316.0641355,,,,62.1522617,603,970198,57.19143162,67.11309179,,,,35.46765142,20.66121397,56.78714572,126.924827,114.009194,139.84046,41.38441768,24.91612286,64.62689458,32.99462579,28.13377102,37.85548056,,,,6.27250404,493,78597,5.718805266,6.826202813,,,,,,,11.21137544,9.914273772,12.50847712,,,,3.877244102,3.285631736,4.468856468,,,,,,,0.101,,,0.087,0.115,0.151,,,0.133,0.171,0.094,,,0.082,0.107,345.5,2910,842270,,,0.089,89050,,,,0.050488771,50435.95939,998954,,,38.45365397,1148,2985412,36.22920349,40.67810444,,,,,,,74.29991545,68.09596113,80.50386977,15.22367935,8.322927162,25.54274714,29.29908642,26.8895362,31.70863663,,,,0.313,,,0.301,0.326,0.091733782,53089,578729,0.083393357,0.100074208,0.038916456,8933,229543,0.03057603,0.047256881,0.001327728,1315,990414,,,753.1665399,0.884923873,9066.93,10246,,,0.058322222,3018,51747,0.046346072,0.070298371,3.110522329,,,,,,3.795102223,2.48370773,2.993947354,3.526626222,3.018222764,,,,,,4.05632989,2.318480284,2.934806531,3.448988209,0.294122588,,,,,-4320.7216,,,,,0.756250436,54174,71635,0.736529155,0.775971717,79609,,,76439.6383,82778.3617,60714,23203.53192,98224.46809,110596,103475.6596,117716.3404,49857,48053.08511,51660.91489,65054,59237.14894,70870.85106,91021,89351.7234,92690.2766,,,,,,0.36859765,48116,130538,,,73.83538276,,,,,0.336858898,,79609,,,8.136919987,474,58253,,,15.6280753,1091,6981026,14.70071352,16.55543708,,,,,,,54.35918635,50.86734762,57.85102509,7.732456988,4.419767279,12.55702571,2.854263693,2.365482466,3.343044919,,,,13.9179809,726,4979083,12.86864828,14.96731353,14.58099815,,,,7.276607495,4.238892017,11.6505535,10.18368108,8.352923532,12.01443862,11.77465213,6.269506355,20.13501374,15.8768767,14.48211501,17.27163839,,,,23.53847084,1172,4979083,22.19084133,24.88610035,,,,,,,62.70127149,58.27820193,67.12434104,9.959894824,5.574477526,16.42733186,11.44115846,10.27849345,12.60382347,,,,11.40233542,796,6981026,10.61021109,12.19445974,,,,3.815143577,1.971340358,6.664288046,21.83709527,19.62392341,24.05026713,10.1488498,6.282297982,15.51359498,8.301331808,7.467763189,9.134900427,,,,22.272203,,86700,,,217,1714,0.718032941,536446,747105,,,0.742,,,,,180.7806778,,,,,0.684837398,283007,413247,0.678502534,0.691172261,0.124781164,50463,404412,0.118960707,0.13060162,0.912955206,377276,413247,0.909300127,0.916610285,990414,,,,,0.217344464,215261,990414,,,0.19312227,191271,990414,,,0.249542111,247150,990414,,,0.002101142,2081,990414,,,0.050372874,49890,990414,,,0.000193858,192,990414,,,0.032693399,32380,990414,,,0.642591886,636432,990414,,,0.010166629,9584,942692,0.009101375,0.011231884,0.520677212,515686,990414,,,0.013546122,13602,1004125,, -29,195,29195,MO,Saline County,2024,1,9278.080019,398,63116,7856.267584,10699.89245,0,,,,2,,,,2,10388.02733,4981.462881,19103.95211,1,,,,2,9765.085554,8082.050074,11448.12104,,,,,2,,0.189,,,0.16,0.22,4.153847598,,,3.359569068,4.981247411,4.997250332,,,4.088854,5.964096108,0.090648308,158,1743,0.077169447,0.104127168,0,,,,,,,0.181818182,0.079884363,0.283752001,0.08974359,0.05312246,0.126364719,0.092463093,0.076636656,0.10828953,,,,,,,0.202,,,0.162,0.244,0.371,,,0.306,0.44,6.8,0.141753155,0.121,,,0.273,,,0.225,0.323,0.654052201,15261,23333,,,0.168888053,,,0.136308237,0.205545522,0.157894737,3,19,0.054083319,0.295484356,459.4,107,23289,,,18.4729064,105,5684,14.93947511,22.0063377,,,,,,,,,,20.57142857,12.19193232,32.51172602,18.5,14.52647906,23.22505588,,,,,,,0.127561877,2278,17858,0.110881026,0.144242728,0.000515265,12,23289,,,1940.75,0.000391185,9,23007,,,2556.333333,0.001434346,33,23007,,,697.1818182,3444,,,,,,,4374,,3144,0.42,,,,,,,0.22,,0.43,0.42,,,,,,,0.37,0.12,0.42,0.879291627,12959,14738,0.859983982,0.898599272,0.603295076,3259,5402,0.526067362,0.68052279,0.024714272,253,10237,,,0.192,903,,0.125276596,0.258723404,,,,,,,0.133928571,0,0.62778084,0.16229117,0.040869129,0.28371321,0.161813269,0.109842845,0.213783693,4.10894421,101343,24664,3.548416218,4.669472203,0.151365255,765,5054,0.10365612,0.199074391,9.017132552,21,23289,,,77.75438351,89,114463,62.44315468,95.68345963,,,,,,,,,,,,,91.33927589,72.75122339,113.228775,,,,7.3,,,,,0,,,,,0.083181542,685,8235,0.059042877,0.107320207,0.066176471,0.044472027,0.087880914,0.01335762,0.006659687,0.020055553,0.005464481,0.001683226,0.009245736,0.823231832,8462,10279,0.787835219,0.858628445,,,,,,,,,,0.877748461,0.781639241,0.973857681,0.813222725,0.772975736,0.853469714,0.181,,10279,0.145674802,0.216325198,75.47336521,,,74.33085349,76.61587694,,,,,,,,,,84.25668298,75.23130437,93.28206159,75.02526048,73.73308243,76.31743852,,,,482.2340677,398,63116,432.3838824,532.0842531,,,,,,,601.6097468,367.4788627,929.1374605,,,,495.1107044,439.1436394,551.0777695,,,,46.01740295,11,23904,22.97172175,82.33784519,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.128,,,0.109,0.147,0.172,,,0.147,0.196,0.106,,,0.09,0.123,40.7,8,19644,,,0.121,2810,,,,0.141753155,3312.771243,23370,,,14.51210309,10,68908,6.959117513,26.68827428,,,,,,,,,,,,,,,,,,,0.357,,,0.342,0.373,0.150853668,1935,12827,0.12940686,0.172300477,0.070026425,371,5298,0.048579617,0.091473234,0.000825836,19,23007,,,1210.894737,0.869852941,236.6,272,,,,,,,,2.709621884,,,,,,,,2.458901934,2.818146451,2.695927181,,,,,,,,2.503920086,2.845756729,0.098789543,,,,,-2144.993,,,,,0.893488672,38806,43432,0.780997926,1.005979418,54623,,,46981.97872,62264.02128,38854,37899.61702,39808.38298,,,,48281,31654.95745,64907.04255,65962,54155.53192,77768.46809,57202,51115.87234,63288.12766,,,,,,0.495293466,1789,3612,,,39.28566173,,,,,0.236072717,,54623,,,5.372217959,7,1303,,,,,,,,,,,,,,,,,,,,,,,,,,12.18008225,13,114463,6.293626234,21.27615249,11.35738186,,,,,,,,,,,,,14.06369369,7.020545221,25.16383281,,,,9.610092344,11,114463,4.797323473,17.19510979,,,,,,,,,,,,,12.10520524,6.04287484,21.65955597,,,,16.80138892,27,160701,11.07222116,24.44513876,,,,,,,,,,,,,19.51173826,12.62696823,28.80317471,,,,46,,2000,,,6,86,0.560270748,9519,16990,,,0.582,,,,,38.39500994,,,,,0.724257172,5655,7808,0.702295079,0.746219266,0.076892693,584,7595,0.053168315,0.10061707,0.837218238,6537,7808,0.81166817,0.862768306,23007,,,,,0.212587473,4891,23007,,,0.182596601,4201,23007,,,0.056634937,1303,23007,,,0.009953492,229,23007,,,0.011822489,272,23007,,,0.019385404,446,23007,,,0.117616378,2706,23007,,,0.768244447,17675,23007,,,0.024477911,538,21979,0.014727762,0.03422806,0.49050289,11285,23007,,,0.422663181,9862,23333,, -29,197,29197,MO,Schuyler County,2024,1,9503.094932,72,11954,6456.891947,13488.8847,0,,,,2,,,,2,,,,2,,,,2,9757.789703,6583.539737,13929.85154,,,,,2,,0.183,,,0.156,0.214,4.234127314,,,3.360062033,5.152038568,5.309829662,,,4.285456382,6.360689928,0.077405858,37,478,0.05344875,0.101362965,0,,,,,,,,,,,,,0.076433121,0.05243813,0.100428112,,,,,,,0.223,,,0.184,0.268,0.424,,,0.35,0.499,4.5,0.373383515,0.117,,,0.284,,,0.235,0.337,0.267361111,1078,4032,,,0.173540955,,,0.139129903,0.211180417,0,0,1,0,0.662081041,422.4,17,4025,,,21.29925453,20,939,13.010138,32.89497114,,,,,,,,,,,,,20.64220184,12.23387704,32.62357829,,,,,,,0.13003096,420,3230,0.11096713,0.14909479,0.000248447,1,4025,,,4025,0.000249875,1,4002,,,4002,,0,4002,,,,2006,,,,,,,,,2009,0.37,,,,,,,,,0.37,0.4,,,,,,,,,0.4,0.923823749,2474,2678,0.898520675,0.949126824,0.420689655,366,870,0.309761337,0.531617973,0.029983343,54,1801,,,0.233,238,,0.136489362,0.329510638,,,,,,,,,,,,,0.065261044,0.023762499,0.10675959,3.823103956,93559,24472,3.249698182,4.396509729,0.086501901,91,1052,0.041826359,0.131177443,17.39130435,7,4025,,,80.62348831,18,22326,47.78258882,127.4198704,,,,,,,,,,,,,83.49568606,49.48483524,131.9591811,,,,7.4,,,,,0,,,,,0.090277778,130,1440,0.056239475,0.124316081,0.057651246,0.024415586,0.090886906,0.0125,0,0.02879451,0.024305556,0,0.050530152,0.857322439,1364,1591,0.784669643,0.929975234,,,,,,,,,,,,,0.831432193,0.737464055,0.92540033,0.427,,1591,0.331665959,0.522334041,75.58560416,,,72.81876856,78.35243976,,,,,,,,,,,,,75.35725435,72.52654021,78.1879685,,,,446.7086302,72,11954,344.76029,569.3668193,,,,,,,,,,,,,450.5864446,347.0064673,575.3888305,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.132,,,0.113,0.151,0.184,,,0.159,0.209,0.095,,,0.08,0.11,,,,,,0.117,480,,,,0.373383515,1654.462355,4431,,,,,,,,,,,,,,,,,,,,,,,,,,0.347,,,0.33,0.364,0.154549611,338,2187,0.129528335,0.179570888,0.077562327,84,1083,0.050158072,0.104966582,0.000749625,3,4002,,,1334,,,,,,0.38317757,82,214,0.175712435,0.590642705,3.25002183,,,,,,,,,3.229101946,3.071736562,,,,,,,,,3.078215424,,,,,,-3462.825,,,,,0.744276543,37679,50625,0.602926228,0.885626858,49508,,,42233.95745,56782.04255,,,,,,,,,,,,,53882,51174.93617,56589.06383,,,,,,0.404886562,232,573,,,,,,,,0.150177749,,49508,,,9.259259259,3,324,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,400,,,-888,-888,0.593481482,2003,3375,,,0.486,,,,,8.474862954,,,,,0.741297468,937,1264,0.717196546,0.765398391,0.047029703,57,1212,0.009815919,0.084243487,0.625791139,791,1264,0.578663353,0.672918925,4002,,,,,0.264117941,1057,4002,,,0.200149925,801,4002,,,0.002998501,12,4002,,,0.002498751,10,4002,,,0.003748126,15,4002,,,0,0,4002,,,0.014242879,57,4002,,,0.962768616,3853,4002,,,0,0,3744,0,0.015275505,0.49850075,1995,4002,,,1,4032,4032,, -29,199,29199,MO,Scotland County,2024,1,7832.382724,82,13139,5391.451876,10999.57739,0,,,,2,,,,2,,,,2,,,,2,8060.445856,5513.338999,11378.94453,,,,,2,,0.206,,,0.171,0.244,4.488806603,,,3.617805616,5.467468121,5.339856859,,,4.337847529,6.402509585,0.065026362,37,569,0.044766133,0.085286591,0,,,,,,,,,,,,,0.066787004,0.045997814,0.087576193,,,,,,,0.236,,,0.188,0.284,0.393,,,0.32,0.466,8.3,0.03704333,0.103,,,0.295,,,0.24,0.349,0.003816794,18,4716,,,0.16308482,,,0.131625523,0.199679923,0.285714286,2,7,0.086061846,0.500925625,213.1,10,4693,,,14.36265709,16,1114,8.20949951,23.32405529,,,,,,,,,,,,,14.21800948,7.957711974,23.45044443,,,,,,,0.214380826,805,3755,0.185785081,0.24297657,0.001704667,8,4693,,,586.625,0.000215378,1,4643,,,4643,0.000430756,2,4643,,,2321.5,3174,,,,,,,,,3176,0.4,,,,,,,,,0.4,0.32,,,,,,,,,0.32,0.83236401,2433,2923,0.779077719,0.8856503,0.458582408,537,1171,0.307761965,0.609402851,0.02125775,48,2258,,,0.163,213,,0.093893617,0.232106383,,,,,,,,,,,,,0.052227343,0.014431104,0.090023582,4.04230754,102234,25291,2.677254282,5.407360799,0.120257695,168,1397,0.038962713,0.201552678,19.1774984,9,4693,,,69.68641115,17,24395,40.59490252,111.5746949,,,,,,,,,,,,,71.76932495,41.80827656,114.9096416,,,,7.6,,,,,1,,,,,0.139465875,235,1685,0.090703131,0.18822862,0.118381916,0.06725821,0.169505621,0.022551929,0,0.048881226,0.004747775,0,0.014356858,0.839833593,1615,1923,0.756023989,0.923643198,,,,,,,,,,,,,0.800460035,0.760758312,0.840161757,0.246,,1923,0.16975399,0.32224601,76.65700646,,,74.15426021,79.1597527,,,,,,,,,,,,,76.4090878,73.86237464,78.95580097,,,,466.4404106,82,13139,366.8849721,584.6870938,,,,,,,,,,,,,476.286276,374.6293698,597.0289713,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.141,,,0.12,0.164,0.191,,,0.165,0.218,0.104,,,0.088,0.121,,,,,,0.103,490,,,,0.03704333,179.4008492,4843,,,,,,,,,,,,,,,,,,,,,,,,,,0.336,,,0.317,0.353,0.239488871,581,2426,0.206127168,0.272850573,0.167867435,233,1388,0.117824882,0.217909988,0.001723024,8,4643,,,580.375,,,,,,,,,,,3.091020708,,,,,,,,,3.090062657,3.349917486,,,,,,,,,3.355409824,,,,,,-2763.119,,,,,0.658679989,34281,52045,0.484593985,0.832765992,54961,,,47862.10638,62059.89362,,,,,,,,,,,,,58781,49875.80851,67686.19149,,,,,,0.550695825,277,503,,,,,,,,0.153909136,,54961,,,12.69035533,5,394,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,35.10722331,12,34181,18.14041458,61.32525394,,,,,,,,,,,,,36.12064295,18.6640633,63.0954941,,,,,,500,,,-888,-888,0.569296987,1984,3485,,,0.592,,,,,0.018787748,,,,,0.801571709,1224,1527,0.738073112,0.865070306,0.086867305,127,1462,0.035681731,0.138052879,0.768172888,1173,1527,0.714323681,0.822022095,4643,,,,,0.289468016,1344,4643,,,0.192332544,893,4643,,,0.000646134,3,4643,,,0.004092182,19,4643,,,0.002584536,12,4643,,,0,0,4643,,,0.013138057,61,4643,,,0.966401034,4487,4643,,,0.000459876,2,4349,0,0.013204569,0.500753823,2325,4643,,,1,4716,4716,, -29,201,29201,MO,Scott County,2024,1,11679.31879,791,105304,10433.7599,12924.87769,0,,,,2,,,,2,15321.21512,11604.13871,19850.41129,,,,,2,11763.26792,10361.80094,13164.7349,,,,,2,,0.199,,,0.169,0.233,4.245111122,,,3.45953735,5.054379422,5.582893596,,,4.672080272,6.543552617,0.111242254,377,3389,0.100655889,0.12182862,0,,,,,,,0.182971015,0.150716062,0.215225967,,,,0.098934551,0.087519035,0.110350067,,,,,,,0.223,,,0.18,0.268,0.359,,,0.302,0.421,7.2,0.076243453,0.136,,,0.302,,,0.254,0.352,0.703118842,26760,38059,,,0.164751082,,,0.134101918,0.198790059,0.171428571,6,35,0.090320108,0.268290996,597.3,226,37840,,,35.97215059,279,7756,31.7511018,40.19319939,,,,,,,62.22611744,48.59911398,78.48978011,52.08333333,29.15064629,85.90353775,29.50983661,25.16237012,33.8573031,,,,54.47470817,29.78182987,91.39930398,0.135552324,4101,30254,0.118871473,0.152233175,0.000502114,19,37840,,,1991.578947,0.000607822,23,37840,,,1645.217391,0.002061311,78,37840,,,485.1282051,2964,,,,,,,1117,,2993,0.39,,,,,,,0.33,,0.4,0.37,,,,,,,0.31,,0.38,0.863712212,22257,25769,0.843832519,0.883591906,0.557545033,5169,9271,0.502059534,0.613030532,0.023795181,474,19920,,,0.233,2066,,0.154361702,0.311638298,,,,,,,0.50650477,0.386913854,0.626095686,0.185614849,0.007527106,0.363702593,0.146182357,0.102109011,0.190255704,4.618766854,101054,21879,4.094113603,5.143420105,0.281181137,2552,9076,0.227515524,0.334846751,15.59196617,59,37840,,,84.11395613,161,191407,71.12090364,97.10700862,,,,,,,83.52382627,50.28679956,130.432801,,,,88.73393664,74.08735542,103.3805179,,,,9,,,,,0,,,,,0.130704042,2005,15340,0.105998686,0.155409398,0.103848706,0.080708868,0.126988545,0.030899609,0.019151424,0.042647794,0.001303781,0,0.003942194,0.839132716,14397,17157,0.820802884,0.857462547,,,,,,,0.826450893,0.765504229,0.887397557,,,,0.854122765,0.825408239,0.882837292,0.238,,17157,0.203180775,0.272819225,73.26516837,,,72.3545576,74.17577914,,,,,,,69.99794115,67.27795916,72.71792314,,,,73.1836746,72.17626138,74.19108781,,,,569.5771753,791,105304,527.8304717,611.323879,,,,,,,725.821659,585.1146987,890.1558324,,,,567.715719,522.5858454,612.8455926,,,,60.1775237,24,39882,38.55687492,89.53938517,,,,,,,,,,,,,69.98367048,43.32099505,106.9774744,,,,5.880623346,20,3401,3.592037514,9.082145811,,,,,,,,,,,,,,,,,,,,,,0.137,,,0.118,0.158,0.19,,,0.166,0.216,0.113,,,0.098,0.13,47.8,15,31368,,,0.136,5200,,,,0.076243453,2988.057146,39191,,,18.35535977,21,114408,11.362257,28.05811721,,,,,,,,,,,,,21.10684284,12.89260795,32.5978069,,,,0.369,,,0.353,0.384,0.165588676,3533,21336,0.144141868,0.187035485,0.065189467,609,9342,0.047317127,0.083061807,0.001479915,56,37840,,,675.7142857,0.942756696,422.355,448,,,,,,,,2.788558846,,,,,,,2.399927676,,2.9012682,2.797000865,,,,,,,2.377523494,,2.9267878,0.158579465,,,,,-5852.399,,,,,0.688733936,33978,49334,0.616312525,0.761155347,57678,,,54096.38298,61259.61702,,,,48194,18672.46809,77715.53192,26058,22745.65957,29370.34043,27969,1980.234043,53957.76596,60286,57408.55319,63163.44681,,,,,,0.701425872,4083,5821,,,65.60434493,,,,,0.24846562,,57678,,,11.79245283,30,2544,,,7.058998365,19,269160,4.249978141,11.02350036,,,,,,,34.61187502,17.2781233,61.9302052,,,,,,,,,,19.27511144,36,191407,13.26809981,27.06942288,18.80808957,,,,,,,,,,,,,22.79484271,15.69092086,32.01243419,,,,14.10606718,27,191407,9.295987154,20.52358714,,,,,,,,,,,,,12.58637399,7.688084219,19.43863381,,,,17.09020657,46,269160,12.51217915,22.7959406,,,,,,,,,,,,,17.41405716,12.38309697,23.80558941,,,,48.37837838,,3700,,,28,151,0.608377682,17719,29125,,,0.623,,,,,36.64466524,,,,,0.685949868,10399,15160,0.658972697,0.712927039,0.124501307,1810,14538,0.098723767,0.150278847,0.848218997,12859,15160,0.828788488,0.867649506,37840,,,,,0.239640592,9068,37840,,,0.187922833,7111,37840,,,0.120877378,4574,37840,,,0.00467759,177,37840,,,0.004624736,175,37840,,,0.000343552,13,37840,,,0.027589852,1044,37840,,,0.824603594,31203,37840,,,0.000084194,3,35632,0,0.003219422,0.512315011,19386,37840,,,0.459970047,17506,38059,, -29,203,29203,MO,Shannon County,2024,1,14216.11847,196,21130,11024.36246,17407.87447,0,,,,2,,,,2,,,,2,,,,2,15105.12131,11669.90762,18540.33499,,,,,2,,0.221,,,0.186,0.258,4.790584924,,,3.896882533,5.878046374,5.678992422,,,4.637153729,6.908016665,0.0832,52,625,0.061547152,0.104852848,0,,,,,,,,,,,,,0.078364566,0.056623718,0.100105413,,,,,,,0.257,,,0.208,0.307,0.42,,,0.346,0.497,6.5,0.049253467,0.179,,,0.306,,,0.252,0.36,0.667614849,4694,7031,,,0.151660786,,,0.120889514,0.186202409,0.315789474,6,19,0.192486042,0.440144871,168.9,12,7106,,,32.32189974,49,1516,23.91191936,42.73126556,,,,,,,,,,,,,32.88062902,24.07275297,43.85815133,,,,,,,0.163763066,893,5453,0.141124768,0.186401364,0.000140726,1,7106,,,7106,,0,7193,,,,0.000139024,1,7193,,,7193,2677,,,,,,,,,2690,0.29,,,,,,,,,0.29,0.26,,,,,,,,,0.26,0.859481583,4410,5131,0.823131238,0.895831927,0.494983278,740,1495,0.348675469,0.641291086,0.036436007,119,3266,,,0.359,562,,0.219595745,0.498404255,,,,,,,,,,,,,0.133982036,0.058910018,0.209054054,3.959385811,83547,21101,2.907681508,5.011090114,0.089916506,140,1557,0.026581208,0.153251804,9.850830284,7,7106,,,120.2615689,48,39913,88.67138733,159.4493929,,,,,,,,,,,,,128.6139171,94.82974953,170.5233948,,,,7.1,,,,,0,,,,,0.197389886,605,3065,0.117583586,0.277196186,0.114478115,0.05852485,0.170431379,0.086133768,0.032225881,0.140041656,0.0045677,0,0.009970452,0.756736527,2022,2672,0.718525849,0.794947205,,,,,,,,,,,,,0.759241245,0.690051644,0.828430846,0.38,,2672,0.282895445,0.477104556,71.85907526,,,69.71094607,74.00720446,,,,,,,,,,,,,71.086922,68.85159937,73.32224462,,,,647.2535848,196,21130,546.2106582,748.2965114,,,,,,,,,,,,,679.191174,571.6559944,786.7263537,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.149,,,0.128,0.172,0.198,,,0.172,0.226,0.114,,,0.097,0.132,,,,,,0.179,1290,,,,0.049253467,415.7485151,8441,,,,,,,,,,,,,,,,,,,,,,,,,,0.355,,,0.338,0.371,0.200101704,787,3933,0.171505959,0.228697448,0.071069182,113,1590,0.048430885,0.09370748,0.000278048,2,7193,,,3596.5,0.948966942,114.825,121,,,,,,,,2.948663019,,,,,,,,,2.96683441,2.98848422,,,,,,,,,2.975296017,,,,,,-7710.129667,,,,,0.72111463,31649,43889,0.576944972,0.865284289,39671,,,34216.3617,45125.6383,,,,,,,,,,,,,46250,33728.6383,58771.3617,,,,,,0.686318131,1234,1798,,,,,,,,0.251695193,,39671,,,4.926108374,2,406,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,47.92417331,27,56339,31.58233219,69.72715605,,,,,,,,,,,,,51.15380243,33.71067813,74.42609686,,,,21.42857143,,700,,,0,15,0.607937743,3906,6425,,,0.355,,,,,3.954562655,,,,,0.817290229,2250,2753,0.792070594,0.842509864,0.091962906,238,2588,0.044022359,0.139903452,0.776244097,2137,2753,0.725922887,0.826565308,7193,,,,,0.223133602,1605,7193,,,0.229667733,1652,7193,,,0.006673155,48,7193,,,0.013902405,100,7193,,,0.003197553,23,7193,,,0.000139024,1,7193,,,0.024885305,179,7193,,,0.926595301,6665,7193,,,0,0,6741,0,0.012019178,0.497150007,3576,7193,,,1,7031,7031,, -29,205,29205,MO,Shelby County,2024,1,7754.774174,94,16013,5401.484348,10785.01364,0,,,,2,,,,2,,,,2,,,,2,8081.258625,5562.766595,11349.09169,,,,,2,,0.202,,,0.169,0.238,4.422947671,,,3.512574684,5.427455978,5.582485624,,,4.486567809,6.803803657,0.076458753,38,497,0.053096236,0.09982127,0,,,,,,,,,,,,,0.075949367,0.0521,0.099798735,,,,,,,0.237,,,0.188,0.287,0.395,,,0.318,0.479,6.7,0.152134653,0.122,,,0.296,,,0.241,0.353,0.356709815,2177,6103,,,0.152693046,,,0.120820674,0.187851787,0,0,3,0,0.420755624,133.9,8,5976,,,20.67824649,25,1209,13.38187084,30.52517097,,,,,,,,,,,,,20.92811647,13.26663061,31.40245031,,,,,,,0.14620267,668,4569,0.125947351,0.166457989,0.000167336,1,5976,,,5976,0.000334336,2,5982,,,2991,,0,5982,,,,2950,,,,,,,,,2957,0.42,,,,,,,,,0.42,0.35,,,,,,,,,0.35,0.884698535,3683,4163,0.853119764,0.916277306,0.50074184,675,1348,0.412122334,0.589361346,0.023200273,68,2931,,,0.208,288,,0.131744681,0.284255319,,,,,,,,,,,,,0.162393162,0.098919371,0.225866953,4.417602587,101088,22883,3.904425008,4.930780166,0.143262411,202,1410,0.08736165,0.199163173,26.77376171,16,5976,,,97.00294354,29,29896,64.96439369,139.3124078,,,,,,,,,,,,,102.4228297,68.59417651,147.0962684,,,,7.6,,,,,0,,,,,0.080482897,200,2485,0.054430074,0.106535721,0.071776156,0.038601127,0.104951185,0.006438632,0,0.0160582,0.003219316,0.001712283,0.004726349,0.827016886,2204,2665,0.77464434,0.879389432,,,,,,,,,,,,,0.785189076,0.72068552,0.849692631,0.288,,2665,0.233075054,0.342924946,76.78615913,,,74.68185183,78.89046642,,,,,,,,,,,,,76.48478388,74.31044202,78.65912575,,,,400.7738058,94,16013,317.7887028,498.7976931,,,,,,,,,,,,,410.4314212,323.9060592,512.9688555,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.141,,,0.12,0.164,0.191,,,0.164,0.218,0.107,,,0.091,0.124,,,,,,0.122,740,,,,0.152134653,969.5541461,6373,,,,,,,,,,,,,,,,,,,,,,,,,,0.323,,,0.305,0.34,0.16976378,539,3175,0.144742503,0.194785056,0.09377139,137,1461,0.065175645,0.122367134,0.000501505,3,5982,,,1994,,,,,,,,,,,3.067153997,,,,,,,,,3.065552739,3.089692113,,,,,,,,,3.053026083,0.043811886,,,,,-108.2036,,,,,0.699729249,34631,49492,0.57030925,0.829149248,54264,,,46432.34043,62095.65957,,,,,,,,,,,,,51304,46000.68085,56607.31915,,,,,,0.430278885,432,1004,,,,,,,,0.208499189,,54264,,,10.55408971,4,379,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,30.8744597,13,42106,16.43934948,52.79626637,,,,,,,,,,,,,32.50243768,17.30617919,55.58015831,,,,15,,600,,,0,9,0.738699008,3350,4535,,,0.578,,,,,6.349487909,,,,,0.737510584,1742,2362,0.703933865,0.771087304,0.072310406,164,2268,0.028860762,0.11576005,0.784504657,1853,2362,0.741821336,0.827187978,5982,,,,,0.245235707,1467,5982,,,0.220661986,1320,5982,,,0.011200268,67,5982,,,0.0036777,22,5982,,,0.002507523,15,5982,,,0.000334336,2,5982,,,0.026412571,158,5982,,,0.942494149,5638,5982,,,0.001939351,11,5672,0,0.015557985,0.497325309,2975,5982,,,1,6103,6103,, -29,207,29207,MO,Stoddard County,2024,1,10111.3589,584,78591,8818.308897,11404.4089,0,,,,2,,,,2,,,,2,,,,2,10241.37018,8907.815737,11574.92462,,,,,2,,0.219,,,0.187,0.256,4.92499045,,,4.0497043,5.948978171,5.401015825,,,4.454853484,6.476398567,0.089705254,210,2341,0.078129339,0.101281169,0,,,,,,,,,,,,,0.088275862,0.076353038,0.100198687,,,,,,,0.262,,,0.216,0.311,0.411,,,0.35,0.475,7.2,0.031920493,0.156,,,0.334,,,0.285,0.388,0.684500558,19626,28672,,,0.149119664,,,0.120490609,0.181383223,0.08,2,25,0.014970891,0.19576483,228.2,65,28479,,,34.79629306,199,5719,29.96167118,39.63091494,,,,,,,,,,,,,33.38992643,28.47083494,38.30901792,,,,,,,0.15752937,3540,22472,0.13846554,0.1765932,0.00049159,14,28479,,,2034.214286,0.000246679,7,28377,,,4053.857143,0.000669556,19,28377,,,1493.526316,2900,,,,,,,,,2912,0.42,,,,,,,,,0.42,0.3,,,,,,,0.47,,0.3,0.814536963,16395,20128,0.79014058,0.838933347,0.457271147,3157,6904,0.398975769,0.515566526,0.029037695,379,13052,,,0.196,1176,,0.118553192,0.273446809,0.093023256,0,0.953534789,,,,0.921875,0.116957184,1,0.339622642,0.134683915,0.544561368,0.192966305,0.135253193,0.250679416,4.497066715,98886,21989,3.953311032,5.040822398,0.21245012,1331,6265,0.149010242,0.275889998,13.34316514,38,28479,,,82.02371106,119,145080,67.28627258,96.76114954,,,,,,,,,,,,,85.54692031,70.11146491,100.9823757,,,,8.7,,,,,1,,,,,0.098744045,1140,11545,0.075122043,0.122366047,0.07584989,0.05521789,0.096481889,0.015937635,0.005953672,0.025921599,0.011260286,0.003998626,0.018521946,0.865975879,10196,11774,0.83520731,0.896744448,,,,,,,,,,,,,0.84810366,0.822534307,0.873673013,0.334,,11774,0.29067826,0.377321741,74.53266999,,,73.54470943,75.52063055,,,,,,,,,,,,,74.31524646,73.31204377,75.31844915,,,,528.7735394,584,78591,483.3831777,574.163901,,,,,,,,,,,,,537.0147762,490.2721203,583.7574321,,,,39.47746196,11,27864,19.70700677,70.63608424,,,,,,,,,,,,,39.05334687,18.72759781,71.82049536,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.151,,,0.131,0.175,0.197,,,0.171,0.225,0.115,,,0.099,0.133,24.9,6,24104,,,0.156,4500,,,,0.031920493,956.5933449,29968,,,,,,,,,,,,,,,,,,,,,,,,,,0.359,,,0.342,0.374,0.183798336,3004,16344,0.159968549,0.207628123,0.08872716,573,6458,0.063705884,0.113748437,0.001127674,32,28377,,,886.78125,0.945530303,312.025,330,,,0.140734949,180,1279,0.045910674,0.235559225,3.306380556,,,,,,,,,3.333464513,3.370054846,,,,,,,,,3.374216512,0.065753989,,,,,-3204.981129,,,,,0.707998324,35487,50123,0.662095328,0.753901321,53391,,,48265.21277,58516.78723,,,,,,,18750,17937.40426,19562.59575,36667,12492.87234,60841.12766,52847,47829.6383,57864.3617,,,,,,0.531710311,2599,4888,,,52.35609228,,,,,0.239497294,,53391,,,13.18944844,22,1668,,,,,,,,,,,,,,,,,,,,,,,,,,19.28734259,32,145080,12.91703604,27.69984125,22.05679625,,,,,,,,,,,,,20.10014772,13.46138439,28.867165,,,,22.74607113,33,145080,15.65734875,31.94394077,,,,,,,,,,,,,23.92413873,16.46827628,33.59838568,,,,19.06810737,39,204530,13.55928836,26.06673049,,,,,,,,,,,,,20.02824496,14.24204005,27.37927018,,,,47.69230769,,2600,,,35,89,0.588472496,13426,22815,,,0.608,,,,,19.9471232,,,,,0.712430265,8173,11472,0.682267495,0.742593035,0.072264537,778,10766,0.051795299,0.092733774,0.82374477,9450,11472,0.806093531,0.841396009,28377,,,,,0.216125736,6133,28377,,,0.208972055,5930,28377,,,0.013179688,374,28377,,,0.00542693,154,28377,,,0.004440216,126,28377,,,0.000387638,11,28377,,,0.021566762,612,28377,,,0.944003947,26788,28377,,,0.000333074,9,27021,0,0.004005418,0.503435881,14286,28377,,,0.663957868,19037,28672,, -29,209,29209,MO,Stone County,2024,1,12361.78977,675,84071,10611.55197,14112.02757,0,,,,2,,,,2,,,,2,,,,2,12874.76102,11000.75426,14748.76779,,,,,2,,0.185,,,0.156,0.215,4.208253618,,,3.357620833,5.144876492,5.405398293,,,4.334502055,6.559138784,0.089673913,165,1840,0.076618858,0.102728968,0,,,,,,,,,,,,,0.090584029,0.076850972,0.104317085,,,,,,,0.22,,,0.177,0.265,0.412,,,0.332,0.496,7.5,0.047156218,0.136,,,0.272,,,0.223,0.322,0.653301583,20302,31076,,,0.14512943,,,0.115227025,0.180227624,0.333333333,11,33,0.241734343,0.424691959,180.7,57,31548,,,28.65818941,151,5269,24.08713547,33.22924335,,,,,,,,,,,,,27.07692308,22.45770552,31.69614063,,,,,,,0.142484148,3056,21448,0.124611807,0.160356488,0.000253582,8,31548,,,3943.5,0.000155589,5,32136,,,6427.2,0.000466766,15,32136,,,2142.4,2247,,,,,,,,,2244,0.45,,,,,,,,,0.45,0.34,,,,,,,,,0.34,0.903148992,21998,24357,0.885236287,0.921061697,0.566229985,3112,5496,0.485116353,0.647343618,0.037614266,502,13346,,,0.2,1025,,0.117787234,0.282212766,,,,,,,,,,0.694690266,0.565500304,0.823880227,0.163306452,0.112957542,0.213655362,4.301236174,105776,24592,3.818507123,4.783965226,0.167481902,856,5111,0.116213559,0.218750244,11.09420566,35,31548,,,107.8958429,172,159413,91.77096033,124.0207254,,,,,,,,,,,,,111.5604518,94.69058341,128.4303202,,,,8.1,,,,,0,,,,,0.114263199,1450,12690,0.089139916,0.139386483,0.089120835,0.067167875,0.111073795,0.020882585,0.010037473,0.031727696,0.01142632,0.003965267,0.018887373,0.792944785,9306,11736,0.757605621,0.828283949,,,,,,,,,,,,,0.771108594,0.703233374,0.838983815,0.463,,11736,0.406797559,0.519202441,75.66438755,,,74.37714379,76.95163131,,,,,,,,,,,,,75.19934782,73.85126962,76.54742603,,,,490.2934613,675,84071,444.2071334,536.3797892,,,,,,,,,,,,,504.7582974,456.1713905,553.3452043,,,,103.8421599,24,23112,66.53363125,154.5089027,,,,,,,,,,,,,115.4290112,73.95754547,171.7492189,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.131,,,0.112,0.15,0.183,,,0.157,0.209,0.102,,,0.086,0.118,132.2,37,27979,,,0.136,4230,,,,0.047156218,1518.524537,32202,,,21.88297817,21,95965,13.54590839,33.45045666,,,,,,,,,,,,,22.09334438,13.49518872,34.12137852,,,,0.332,,,0.313,0.351,0.164437114,2692,16371,0.141798817,0.187075412,0.073584203,395,5368,0.052137394,0.095031011,0.000466766,15,32136,,,2142.4,0.947708333,227.45,240,,,0.088766693,113,1273,0.033034543,0.144498843,2.96443641,,,,,,,,,2.978947741,2.99732405,,,,,,,,,3.022892532,0.056340044,,,,,-3458.6994,,,,,0.781508253,36219,46345,0.71742428,0.845592227,56418,,,49378.68085,63457.31915,,,,21369,16344.48936,26393.51064,,,,51563,25530.14894,77595.85106,58864,56021.10638,61706.89362,,,,,,0.539332202,1906,3534,,,,,,,,0.275975752,,56418,,,7.556675063,9,1191,,,5.419980759,12,221403,2.800583149,9.467615637,,,,,,,,,,,,,5.250396166,2.620978849,9.39440905,,,,25.46431784,36,159413,17.18066832,36.35189709,22.58285083,,,,,,,,,,,,,26.53113832,17.76831972,38.10314024,,,,20.07364519,32,159413,13.73035845,28.33799758,,,,,,,,,,,,,20.58555956,13.98688898,29.21955861,,,,28.90656405,64,221403,22.26157665,36.91303696,,,,,,,,,,,,,30.07045077,23.10696002,38.47316918,,,,39.56521739,,2300,,,7,84,0.700246259,18483,26395,,,0.486,,,,,6.011572429,,,,,0.848106239,10793,12726,0.831728229,0.86448425,0.107854344,1321,12248,0.083245747,0.132462941,0.883938394,11249,12726,0.863661659,0.904215128,32136,,,,,0.16523525,5310,32136,,,0.320481703,10299,32136,,,0.004605427,148,32136,,,0.008930794,287,32136,,,0.005850137,188,32136,,,0.001275828,41,32136,,,0.028752801,924,32136,,,0.936333084,30090,32136,,,0.001527732,46,30110,0,0.005518346,0.50220936,16139,32136,,,0.829289484,25771,31076,, -29,211,29211,MO,Sullivan County,2024,1,11683.79795,119,16450,8385.172798,14982.42309,0,,,,2,,,,2,,,,2,,,,2,14114.8033,9667.807117,18561.79948,,,,,2,,0.218,,,0.189,0.252,4.516942275,,,3.659011215,5.4825722,5.600241816,,,4.611875497,6.723668948,0.092558984,51,551,0.068359909,0.116758059,0,,,,,,,,,,0.108695652,0.056763583,0.160627721,0.090666667,0.061604645,0.119728688,,,,,,,0.224,,,0.185,0.266,0.441,,,0.367,0.518,7.2,0.105121448,0.119,,,0.325,,,0.274,0.381,0.470911819,2825,5999,,,0.151467347,,,0.121543375,0.187745587,0.25,3,12,0.099776571,0.4182543,202.2,12,5934,,,36.0738255,43,1192,26.10680639,48.59120622,,,,,,,,,,40,20.6685837,69.87195016,35.58718861,24.01052672,50.80292455,,,,,,,0.148258919,694,4681,0.1280036,0.168514238,0.000337041,2,5934,,,2967,0.000171233,1,5840,,,5840,,0,5840,,,,2557,,,,,,,,,2638,0.34,,,,,,,,,0.34,0.37,,,,,,,,0.14,0.37,0.857558845,3534,4121,0.823214481,0.891903209,0.380769231,495,1300,0.293416754,0.468121708,0.027777778,70,2520,,,0.196,252,,0.118553192,0.273446809,,,,,,,,,,0.141361257,0.052048322,0.230674191,0.259174312,0.154118493,0.364230131,3.773421249,96143,25479,2.868871464,4.677971034,0.171641791,230,1340,0.094217221,0.249066362,15.16683519,9,5934,,,124.5656592,38,30506,88.15007423,170.9760995,,,,,,,,,,,,,153.6360533,107.6048029,212.6970574,,,,7.3,,,,,1,,,,,0.092342342,205,2220,0.055790418,0.128894267,0.058476881,0.02366182,0.093291942,0.023873874,0,0.048421501,0.011261261,0,0.027914376,0.661198016,1733,2621,0.623753426,0.698642606,,,,,,,,,,0.410958904,0.252429104,0.569488704,0.757254721,0.641416993,0.87309245,0.26,,2621,0.191897236,0.328102764,74.41984949,,,71.91421393,76.92548506,,,,,,,,,,,,,72.58602492,69.59538177,75.57666807,,,,534.2652936,119,16450,430.4287234,638.1018638,,,,,,,,,,,,,610.6258173,478.7684552,742.4831794,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.143,,,0.125,0.163,0.186,,,0.163,0.211,0.119,,,0.102,0.138,121.6,6,4936,,,0.119,720,,,,0.105121448,705.7854035,6714,,,,,,,,,,,,,,,,,,,,,,,,,,0.35,,,0.336,0.365,0.175959233,587,3336,0.149746467,0.202171999,0.081618169,115,1409,0.055405403,0.107830935,0.000684932,4,5840,,,1460,,,,,,,,,,,2.900268581,,,,,,,,2.508344763,3.098794139,2.819994313,,,,,,,,2.243938923,3.150183831,0.190069425,,,,,-5115.534,,,,,0.9248,41616,45000,0.713735711,1.135864289,52384,,,46773.2766,57994.7234,,,,,,,81250,20448.29787,142051.7021,56806,35135.19149,78476.80851,51204,45520.59575,56887.40426,,,,,,0.498130841,533,1070,,,57.65010972,,,,,0.246487477,,52384,,,7.159904535,3,419,,,,,,,,,,,,,,,,,,,,,,,,,,35.23406882,10,30506,16.11125988,66.88523784,32.78043664,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,32.46677953,14,43121,17.74989049,54.4737393,,,,,,,,,,,,,36.03711823,18.62090486,62.94959323,,,,,,500,,,-888,-888,0.541292443,2471,4565,,,0.484,,,,,4.383505245,,,,,0.742340532,1478,1991,0.706739292,0.777941773,0.093048128,174,1870,0.048389522,0.137706735,0.740331492,1474,1991,0.701165975,0.779497008,5840,,,,,0.225,1314,5840,,,0.213013699,1244,5840,,,0.023116438,135,5840,,,0.018835616,110,5840,,,0.007534247,44,5840,,,0.004109589,24,5840,,,0.191609589,1119,5840,,,0.761472603,4447,5840,,,0.044416696,249,5606,0.023424384,0.065409009,0.486472603,2841,5840,,,1,5999,5999,, -29,213,29213,MO,Taney County,2024,1,11072.1569,1064,152422,10012.01508,12132.29871,0,,,,2,,,,2,,,,2,,,,2,12014.12078,10805.95277,13222.28879,,,,,2,,0.186,,,0.158,0.217,4.244481389,,,3.409906835,5.167701373,5.702178029,,,4.639267287,6.852209426,0.088883732,383,4309,0.080386727,0.097380737,0,,,,,,,0.216216216,0.122420613,0.310011819,0.048165138,0.028066805,0.06826347,0.09057971,0.081188369,0.099971052,,,,0.085470086,0.034809621,0.13613055,0.214,,,0.172,0.261,0.37,,,0.297,0.444,5.9,0.174576054,0.149,,,0.273,,,0.228,0.325,0.620554347,34792,56066,,,0.160212645,,,0.127214426,0.195604571,0.25,14,56,0.180936287,0.323011669,243,137,56387,,,25.58048013,325,12705,22.79933865,28.36162161,,,,,,,,,,34.34343434,23.78382665,47.99150717,24.89207312,21.92838503,27.8557612,,,,31.25,16.14733101,54.58746106,0.153855293,6475,42085,0.134791463,0.172919123,0.000798056,45,56387,,,1253.044444,0.000369582,21,56821,,,2705.761905,0.000897556,51,56821,,,1114.137255,2605,,,,,,,,,2628,0.4,,,,,,,,,0.41,0.34,,,,,,0.21,0.05,,0.34,0.898342598,34906,38856,0.880133326,0.91655187,0.587971641,7215,12271,0.527146893,0.648796388,0.040237056,1032,25648,,,0.189,2143,,0.121085106,0.256914894,,,,,,,,,,0.602573808,0.446050975,0.759096641,0.178091323,0.131187552,0.224995094,4.430397664,100158,22607,3.848487904,5.012307425,0.231060933,2681,11603,0.164937303,0.297184562,13.12359232,74,56387,,,90.47799561,253,279626,79.32892203,101.6270692,,,,,,,,,,,,,95.61585116,83.4166901,107.8150122,,,,8.1,,,,,1,,,,,0.144930773,3245,22390,0.120635217,0.169226329,0.103597122,0.081105452,0.126088793,0.027244306,0.017253749,0.037234862,0.018311746,0.008315735,0.028307758,0.753579686,18578,24653,0.722931485,0.784227887,,,,,,,,,,0.790740741,0.678154805,0.903326676,0.782711664,0.752926747,0.812496581,0.237,,24653,0.205251783,0.268748217,75.68403074,,,74.83407139,76.53399009,,,,,,,,,,91.23713821,80.05805898,102.4162174,74.8076912,73.89124429,75.72413812,,,,499.1960739,1064,152422,466.4446486,531.9474991,,,,,,,,,,,,,528.9276687,492.81879,565.0365474,,,,67.70608038,36,53171,47.42050632,93.73375428,,,,,,,,,,,,,71.50600881,48.58486374,101.4970717,,,,7.326007326,32,4368,5.010983588,10.34213647,,,,,,,,,,,,,7.107709131,4.642991584,10.4144407,,,,,,,0.13,,,0.112,0.15,0.184,,,0.159,0.211,0.106,,,0.09,0.123,66.5,32,48136,,,0.149,8330,,,,0.174576054,9021.2176,51675,,,29.68786182,50,168419,22.03490327,39.13974472,,,,,,,,,,,,,32.38604162,23.8789105,42.93919263,,,,0.335,,,0.317,0.35,0.190839445,5829,30544,0.165818168,0.215860721,0.05822764,707,12142,0.041546789,0.074908491,0.001495926,85,56821,,,668.4823529,0.948646209,525.55,554,,,0.058047493,198,3411,0.019297432,0.096797555,3.103953929,,,,,,,,2.867973507,3.155870671,3.048128063,,,,,,,,2.786717058,3.132470778,0.053855402,,,,,-4151.542,,,,,0.77852273,34371,44149,0.707346661,0.849698799,53009,,,47294.61702,58723.38298,41667,30395.51064,52938.48936,,,,,,,37193,27929.17021,46456.82979,55868,52284,59452,,,,,,0.550666331,4380,7954,,,76.4211255,,,,,0.295761097,,53009,,,6.525285481,20,3065,,,3.34230614,13,388953,1.779637255,5.71544529,,,,,,,,,,,,,3.483561942,1.800007289,6.08508166,,,,19.31792081,54,279626,14.24350983,25.61276036,19.31150894,,,,,,,,,,,,,21.07825573,15.37462437,28.20436456,,,,15.37768305,43,279626,11.12890547,20.71363815,,,,,,,,,,,,,16.61122838,11.92050428,22.53500698,,,,17.73993259,69,388953,13.80272644,22.45102007,,,,,,,,,,,,,18.57899702,14.3080916,23.72496443,,,,18.75,,4800,,,8,82,0.608729883,26288,43185,,,0.505,,,,,33.83679989,,,,,0.66686733,14401,21595,0.646030473,0.687704188,0.124922193,2609,20885,0.09502647,0.154817916,0.857050243,18508,21595,0.834362649,0.879737838,56821,,,,,0.204554654,11623,56821,,,0.22884145,13003,56821,,,0.016296792,926,56821,,,0.011034653,627,56821,,,0.011439433,650,56821,,,0.001302335,74,56821,,,0.064817585,3683,56821,,,0.87782686,49879,56821,,,0.009840306,525,53352,0.003096692,0.01658392,0.512046603,29095,56821,,,0.371722613,20841,56066,, -29,215,29215,MO,Texas County,2024,1,11751.43764,548,68289,10193.90307,13308.97222,0,,,,2,,,,2,,,,2,,,,2,12665.7047,10941.50311,14389.90629,,,,,2,,0.225,,,0.191,0.259,4.840038167,,,3.963771851,5.789117729,5.572595234,,,4.609215971,6.573448108,0.07337096,143,1949,0.061794781,0.084947138,0,,,,,,,,,,,,,0.073250136,0.06135474,0.085145531,,,,,,,0.258,,,0.209,0.305,0.428,,,0.364,0.493,6.9,0.050808992,0.159,,,0.314,,,0.263,0.365,0.674766203,16523,24487,,,0.153822168,,,0.125511193,0.186097994,0.275862069,8,29,0.177833165,0.378478493,188.1,47,24987,,,31.07705407,146,4698,26.03602169,36.11808644,,,,,,,,,,,,,31.69828783,26.39027954,37.00629612,,,,,,,0.161194195,2921,18121,0.139747386,0.182641003,0.000400208,10,24987,,,2498.7,0.000157878,4,25336,,,6334,0.000355226,9,25336,,,2815.111111,4011,,,,,,,,,4026,0.31,,,,,,,,,0.32,0.32,,,,,,,,,0.32,0.848997849,14995,17662,0.826482627,0.87151307,0.518602225,2983,5752,0.439899962,0.597304489,0.029689759,267,8993,,,0.253,1344,,0.171978723,0.334021277,,,,,,,,,,0.698630137,0.459853251,0.937407023,0.265331665,0.210432692,0.320230638,4.533131226,83736,18472,3.771219867,5.295042585,0.196923661,1037,5266,0.129180202,0.26466712,11.60603514,29,24987,,,126.9686048,161,126803,107.3558102,146.5813995,,,,,,,,,,,,,136.9423715,115.5890533,158.2956898,,,,7.2,,,,,1,,,,,0.14822335,1460,9850,0.112466827,0.183979873,0.117653277,0.084649244,0.15065731,0.022335025,0.009727194,0.034942857,0.01928934,0.007159619,0.031419062,0.768708241,6903,8980,0.718726765,0.818689716,,,,,,,,,,0.855467114,0.696368741,1,0.809880952,0.767218271,0.852543633,0.348,,8980,0.280158308,0.415841693,73.73562184,,,72.61182614,74.85941753,,,,,,,,,,,,,72.86068341,71.66463287,74.05673395,,,,565.706648,548,68289,514.7457541,616.6675419,,,,,,,,,,,,,601.1504142,545.9814517,656.3193768,,,,59.3773857,14,23578,32.4621693,99.62516381,,,,,,,,,,,,,60.448247,32.18614569,103.3683433,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.151,,,0.131,0.173,0.2,,,0.174,0.228,0.119,,,0.102,0.138,51.8,11,21251,,,0.159,3950,,,,0.050808992,1321.440271,26008,,,42.38579016,32,75497,28.9918491,59.83608896,,,,,,,,,,,,,43.69992717,29.48415735,62.38436328,,,,0.346,,,0.33,0.362,0.199722287,2589,12963,0.171126542,0.228318031,0.0657822,357,5427,0.044335392,0.087229009,0.000670982,17,25336,,,1490.352941,0.900714286,252.2,280,,,,,,,,2.79239035,,,,,,,,,2.784825095,2.783675262,,,,,,,,,2.77253762,0.084116326,,,,,-6904.155286,,,,,0.792003334,34209,43193,0.683867803,0.900138865,46622,,,41291.2766,51952.7234,,,,,,,,,,35786,31233.31915,40338.68085,44410,39136.46809,49683.53192,,,,,,0.699264506,2567,3671,,,,,,,,0.243061216,,46622,,,11.4416476,15,1311,,,10.65811026,19,178268,6.416878612,16.64395942,,,,,,,,,,,,,11.71147848,7.051075092,18.28892438,,,,18.62538341,26,126803,11.80689538,27.9472201,20.50424675,,,,,,,,,,,,,20.68730389,12.96462321,31.32082669,,,,18.13837212,23,126803,11.498172,27.21646404,,,,,,,,,,,,,19.93464902,12.63685747,29.91176135,,,,21.87717369,39,178268,15.55680912,29.90681663,,,,,,,,,,,,,24.03935057,17.09432825,32.86258359,,,,24.09090909,,2200,,,7,46,0.56575,11315,20000,,,0.531,,,,,7.442034141,,,,,0.762828066,7121,9335,0.729707776,0.795948357,0.11173763,971,8690,0.084535661,0.138939598,0.789180504,7367,9335,0.753711486,0.824649521,25336,,,,,0.215385223,5457,25336,,,0.214398484,5432,25336,,,0.038048627,964,25336,,,0.009946321,252,25336,,,0.003946953,100,25336,,,0.000789391,20,25336,,,0.026918219,682,25336,,,0.902273445,22860,25336,,,0.00170663,40,23438,0,0.006090312,0.469568993,11897,25336,,,0.993833463,24336,24487,, -29,217,29217,MO,Vernon County,2024,1,10820.06863,421,55195,9185.650059,12454.48719,0,,,,2,,,,2,,,,2,,,,2,11329.59919,9584.960367,13074.23802,,,,,2,,0.205,,,0.172,0.241,4.531690283,,,3.606914175,5.4782658,5.816787589,,,4.739281576,6.90982828,0.066548881,113,1698,0.054693831,0.078403931,0,,,,,,,,,,,,,0.062853551,0.050927694,0.074779409,,,,,,,0.249,,,0.201,0.303,0.372,,,0.303,0.444,6.3,0.161560224,0.133,,,0.293,,,0.244,0.351,0.645861877,12728,19707,,,0.154079871,,,0.123936802,0.188869315,0.3125,5,16,0.177519792,0.449075671,296,58,19595,,,26.05459057,147,5642,21.8426556,30.26652554,,,,,,,,,,,,,28.00324675,23.3310092,32.6754843,,,,,,,0.149013879,2244,15059,0.129950049,0.168077709,0.000255167,5,19595,,,3919,0.000610656,12,19651,,,1637.583333,0.003765712,74,19651,,,265.5540541,2424,,,,,,,,,2384,0.36,,,,,,,,,0.36,0.3,,,,,,,,,0.3,0.883647799,11802,13356,0.861703514,0.905592084,0.539231665,2316,4295,0.451371109,0.627092221,0.025038606,227,9066,,,0.229,1027,,0.150361702,0.307638298,,,,,,,,,,0.151685393,0,0.372808037,0.239200999,0.179985653,0.298416344,3.712565486,94960,25578,3.09393535,4.331195622,0.155981067,725,4648,0.084842865,0.227119269,11.22735392,22,19595,,,90.63057206,92,101511,73.06103256,111.1503512,,,,,,,,,,,,,95.74311386,77.08638291,117.5513277,,,,8,,,,,0,,,,,0.110307414,915,8295,0.080590848,0.14002398,0.085540705,0.056067714,0.115013696,0.016274864,0.008080827,0.024468902,0.025919229,0.011783322,0.040055135,0.748207559,6157,8229,0.700624856,0.795790262,,,,,,,,,,,,,0.747111515,0.698507169,0.795715861,0.22,,8229,0.173501374,0.266498626,74.38235592,,,73.12540377,75.63930806,,,,,,,,,,,,,73.91800422,72.61504285,75.22096558,,,,550.3318417,421,55195,494.4797659,606.1839175,,,,,,,,,,,,,568.6231084,510.0396372,627.2065797,,,,69.60879855,15,21549,38.95951614,114.8091274,,,,,,,,,,,,,77.40337479,43.32208129,127.6650956,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.142,,,0.122,0.165,0.197,,,0.169,0.226,0.113,,,0.095,0.132,152.6,25,16378,,,0.133,2640,,,,0.161560224,3418.452785,21159,,,,,,,,,,,,,,,,,,,,,,,,,,0.33,,,0.311,0.347,0.172400863,1839,10667,0.148571075,0.19623065,0.092584562,427,4612,0.065180307,0.119988817,0.000610656,12,19651,,,1637.583333,0.903292683,185.175,205,,,0.229110512,255,1113,0.124951685,0.333269339,2.778624771,,,,,,,,,2.778080798,2.597768263,,,,,,,,,2.612719326,0.042564061,,,,,-5705.4935,,,,,0.870138858,38977,44794,0.785508628,0.954769088,51900,,,46626.46809,57173.53192,,,,,,,,,,,,,53299,49177.6383,57420.3617,,,,,,0.525995949,1558,2962,,,,,,,,0.244296725,,51900,,,14.41899915,17,1179,,,,,,,,,,,,,,,,,,,,,,,,,,27.80947026,26,101511,17.81805233,41.37828737,25.61298776,,,,,,,,,,,,,29.83439963,19.11546278,44.39122176,,,,20.68741319,21,101511,12.80583482,31.62290859,,,,,,,,,,,,,22.09456474,13.67688381,33.77388921,,,,13.28114078,19,143060,7.996114333,20.74014649,,,,,,,,,,,,,13.42472088,7.956340407,21.21684673,,,,76.84210526,,1900,,,21,125,0.592198582,9185,15510,,,0.594,,,,,28.23828724,,,,,0.710648148,5526,7776,0.669530649,0.751765647,0.081220285,615,7572,0.053734827,0.108705743,0.836805556,6507,7776,0.801869578,0.871741533,19651,,,,,0.235611419,4630,19651,,,0.206707038,4062,19651,,,0.008650959,170,19651,,,0.008345631,164,19651,,,0.006411887,126,19651,,,0.000559768,11,19651,,,0.029209709,574,19651,,,0.929265686,18261,19651,,,0.003009944,56,18605,0,0.008329226,0.508320187,9989,19651,,,0.567209621,11178,19707,, -29,219,29219,MO,Warren County,2024,1,9207.958287,550,100544,8001.088681,10414.82789,0,,,,2,,,,2,22557.22611,12010.77288,38573.54364,1,,,,2,8946.950974,7704.733128,10189.16882,,,,,2,,0.17,,,0.143,0.201,3.849086894,,,3.088292496,4.659612342,5.04303985,,,4.170675896,5.932734198,0.079837618,236,2956,0.070066599,0.089608638,0,,,,,,,0.147058824,0.062879254,0.231238393,,,,0.078587699,0.068311028,0.088864371,,,,,,,0.207,,,0.167,0.251,0.411,,,0.352,0.473,8.2,0.038828616,0.108,,,0.271,,,0.224,0.32,0.847489587,30113,35532,,,0.198484063,,,0.165665793,0.236184645,0.388888889,7,18,0.263815024,0.50698808,254.7,93,36518,,,21.01293103,156,7424,17.71546442,24.31039765,,,,,,,,,,29.91452992,16.35455187,50.19149812,19.11220715,15.74820649,22.47620782,,,,46.0251046,22.97556639,82.35162558,0.11724855,3496,29817,0.101759188,0.132737911,0.00021907,8,36518,,,4564.75,0.000241546,9,37260,,,4140,0.000563607,21,37260,,,1774.285714,2768,,,,,,,,,2800,0.45,,,,,,,,,0.45,0.5,,,,,,,0.07,,0.5,0.882662777,21785,24681,0.859169277,0.906156277,0.578990418,4955,8558,0.504745974,0.653234863,0.024785916,466,18801,,,0.113,950,,0.068914894,0.157085106,0.02631579,0,0.582613762,,,,0.012711864,0,0.1954948,0.129032258,0,0.346118956,0.135851852,0.082605756,0.189097948,3.657005994,136655,37368,3.011480649,4.30253134,0.226692133,1899,8377,0.146972812,0.306411454,7.667451668,28,36518,,,109.0837527,194,177845,93.73350894,124.4339965,,,,,,,,,,,,,110.4762139,94.33676868,126.615659,,,,8.2,,,,,1,,,,,0.121477532,1595,13130,0.095710961,0.147244104,0.080963303,0.059359068,0.102567537,0.051713633,0.029428351,0.073998915,0.003046459,0,0.00740883,0.823745048,13932,16913,0.794396782,0.853093314,,,,,,,,,,,,,0.779029559,0.729880081,0.828179038,0.526,,16913,0.468486721,0.583513279,76.88797795,,,75.87705901,77.89889689,,,,,,,,,,,,,76.90714107,75.87891958,77.93536256,,,,413.8726328,550,100544,377.0489576,450.6963079,,,,,,,850.4676855,512.037103,1328.11064,,,,408.6222612,370.8611241,446.3833984,,,,65.37015852,24,36714,41.88389403,97.26561419,,,,,,,,,,,,,65.94441828,40.82063427,100.8030483,,,,7.17948718,21,2925,4.444215721,10.9746088,,,,,,,,,,,,,,,,,,,,,,0.12,,,0.103,0.139,0.171,,,0.148,0.196,0.091,,,0.078,0.106,42.5,13,30575,,,0.108,3780,,,,0.038828616,1262.434803,32513,,,37.69733636,41,108761,27.05225942,51.14069342,,,,,,,,,,,,,36.1689088,25.33225907,50.07301547,,,,0.361,,,0.342,0.378,0.137104685,2935,21407,0.116849366,0.157360005,0.06816895,602,8831,0.047913631,0.088424269,0.000402577,15,37260,,,2484,0.903848239,333.52,369,,,,,,,,3.107235465,,,,,,,,2.977286569,3.156234651,3.043468745,,,,,,,,2.617077711,3.111169249,0.026915638,,,,,-1606.3745,,,,,0.728050526,43228,59375,0.620670571,0.835430482,74355,,,65435.51064,83274.48936,,,,,,,,,,78650,25837.23404,131462.766,76324,70415.40426,82232.59575,,,,,,0.409554267,2049,5003,,,52.60564393,,,,,0.23090579,,74355,,,6.906758757,14,2027,,,4.078968837,10,245160,1.956024105,7.501368919,,,,,,,,,,,,,,,,,,,22.21035496,43,177845,15.79373358,30.36228639,24.17835756,,,,,,,,,,,,,23.06788136,16.32420578,31.66246945,,,,17.43090894,31,177845,11.84345693,24.74178386,,,,,,,,,,,,,17.18518882,11.41943317,24.83738266,,,,18.76325665,46,245160,13.73706209,25.02755495,,,,,,,,,,,,,19.5839305,14.22971388,26.2905126,,,,8.857142857,,3500,,,5,26,0.688073395,18375,26705,,,0.646,,,,,38.35405201,,,,,0.803703987,10502,13067,0.770495938,0.836912036,0.087619641,1126,12851,0.061933922,0.11330536,0.885666182,11573,13067,0.863737931,0.907594433,37260,,,,,0.229898014,8566,37260,,,0.18510467,6897,37260,,,0.02259796,842,37260,,,0.005555556,207,37260,,,0.00461621,172,37260,,,0.000536769,20,37260,,,0.038996243,1453,37260,,,0.910144928,33912,37260,,,0.000148421,5,33688,0,0.003594976,0.496269458,18491,37260,,,0.735506023,26134,35532,, -29,221,29221,MO,Washington County,2024,1,14204.24619,647,67817,12498.69703,15909.79535,0,,,,2,,,,2,,,,2,,,,2,14872.79631,13058.43555,16687.15707,,,,,2,,0.224,,,0.188,0.261,4.870670443,,,3.9272299,5.918458294,5.838226359,,,4.737868227,7.029058865,0.100779221,194,1925,0.087331169,0.114227273,0,,,,,,,,,,,,,0.096195652,0.082722721,0.109668584,,,,,,,0.259,,,0.212,0.31,0.431,,,0.357,0.508,6.7,0.069325871,0.163,,,0.321,,,0.269,0.378,0.602322021,14163,23514,,,0.162204158,,,0.129674061,0.198740356,0.277777778,10,36,0.190187864,0.368993994,259.6,61,23502,,,40.26310544,202,5017,34.7106171,45.81559378,,,,,,,,,,,,,40.25423729,34.53035264,45.97812194,,,,,,,0.146035027,2685,18386,0.126971197,0.165098856,0.000297847,7,23502,,,3357.428571,0.000383943,9,23441,,,2604.555556,0.000895866,21,23441,,,1116.238095,3659,,,,,,,,,3637,0.35,,,,,,,,,0.35,0.31,,,,,,,,,0.31,0.816511514,13332,16328,0.786435658,0.84658737,0.417104802,2380,5706,0.344412127,0.489797478,0.031911721,321,10059,,,0.255,1311,,0.165638298,0.344361702,,,,,,,,,,0.211678832,0,0.525990063,0.267497404,0.196233842,0.338760966,4.09020982,95715,23401,3.39742144,4.7829982,0.278851364,1544,5537,0.198004504,0.359698223,7.658922645,18,23502,,,131.9207498,162,122801,111.6059908,152.2355089,,,,,,,,,,,,,137.7935696,116.3751975,159.2119418,,,,7.2,,,,,1,,,,,0.120150862,1115,9280,0.092268331,0.148033393,0.089655172,0.064783618,0.114526727,0.025323276,0.011340128,0.039306424,0.015086207,0.004382439,0.025789975,0.814506276,7333,9003,0.771974967,0.857037584,,,,,,,,,,,,,0.812297117,0.752120467,0.872473767,0.506,,9003,0.437388419,0.574611582,71.01182898,,,69.850388,72.17326996,,,,,,,,,,,,,70.390035,69.19138763,71.58868238,,,,703.9899953,647,67817,646.9239496,761.056041,,,,,,,,,,,,,732.3883837,672.2413479,792.5354195,,,,70.31185375,17,24178,40.95924588,112.5760891,,,,,,,,,,,,,74.85689124,43.60689771,119.8531344,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.153,,,0.131,0.177,0.199,,,0.172,0.227,0.119,,,0.101,0.138,146.6,29,19783,,,0.163,3890,,,,0.069325871,1746.66533,25195,,,53.5449503,39,72836,38.07569401,73.19770974,,,,,,,,,,,,,55.59782291,39.3443285,76.31235577,,,,0.358,,,0.343,0.375,0.177828226,2350,13215,0.152806949,0.202849502,0.065564738,357,5445,0.045309419,0.085820057,0.000853206,20,23441,,,1172.05,0.938461539,256.2,273,,,,,,,,3.201999853,,,,,,,,,3.211175475,3.151678653,,,,,,,,,3.171331661,0.0595457,,,,,-4309.7705,,,,,0.683869647,36745,53731,0.605118943,0.762620351,47636,,,41954.97872,53317.02128,,,,,,,,,,,,,49320,44733.95745,53906.04255,,,,,,0.890291554,2962,3327,,,,,,,,0.26162986,,47636,,,7.48502994,10,1336,,,,,,,,,,,,,,,,,,,,,,,,,,24.46842444,30,122801,16.25909034,35.36368597,24.42976849,,,,,,,,,,,,,25.30126582,16.6736936,36.8120134,,,,21.98679164,27,122801,14.48943423,31.98962748,,,,,,,,,,,,,23.39890805,15.42002785,34.04418272,,,,30.73746723,53,172428,23.0244722,40.20536394,,,,,,,,,,,,,32.66644478,24.46940876,42.72851407,,,,16.52173913,,2300,,,8,30,0.525882973,9976,18970,,,0.449,,,,,10.55928662,,,,,0.785761736,7097,9032,0.756255421,0.815268051,0.095947557,805,8390,0.06720965,0.124685464,0.759521701,6860,9032,0.715605868,0.803437533,23441,,,,,0.225246363,5280,23441,,,0.181135617,4246,23441,,,0.026790666,628,23441,,,0.005588499,131,23441,,,0.003668786,86,23441,,,0.000469263,11,23441,,,0.018045305,423,23441,,,0.930677019,21816,23441,,,0.000853013,19,22274,0,0.005241018,0.482189326,11303,23441,,,1,23514,23514,, -29,223,29223,MO,Wayne County,2024,1,11609.91403,294,32567,9319.299654,13900.5284,0,,,,2,,,,2,,,,2,,,,2,11897.16944,9517.251656,14277.08723,,,,,2,,0.235,,,0.203,0.273,5.090695537,,,4.134849315,6.077206607,5.54171025,,,4.505568984,6.636683348,0.089285714,80,896,0.070614003,0.107957426,0,,,,,,,,,,,,,0.085580305,0.066806977,0.104353632,,,,,,,0.279,,,0.234,0.328,0.41,,,0.343,0.48,4.9,0.177656334,0.19,,,0.322,,,0.276,0.377,0.684527064,7512,10974,,,0.13897093,,,0.110777592,0.171378475,0.230769231,3,13,0.089378268,0.394382228,119.1,13,10914,,,36.08695652,83,2300,28.74305943,44.73521209,,,,,,,,,,,,,36.88141923,29.19936693,45.96525265,,,,,,,0.164036697,1341,8175,0.143781378,0.184292016,0.000458127,5,10914,,,2182.8,9.26612E-05,1,10792,,,10792,0.001204596,13,10792,,,830.1538462,3427,,,,,,,,,3439,0.39,,,,,,,,,0.38,0.19,,,,,,,,,0.19,0.8215672,6773,8244,0.789224748,0.853909653,0.429213483,955,2225,0.329837156,0.52858981,0.035510463,168,4731,,,0.364,774,,0.244851064,0.483148936,,,,,,,,,,0.101694915,0,0.670525226,0.37557486,0.262839407,0.488310312,4.65231438,79201,17024,3.886637995,5.417990764,0.099815157,216,2164,0.029883354,0.16974696,14.66006964,16,10914,,,119.0967701,75,62974,93.67716471,149.2888326,,,,,,,,,,,,,124.3300459,97.62582746,156.0849872,,,,7.6,,,,,1,,,,,0.157169118,855,5440,0.112343227,0.201995009,0.104477612,0.065152167,0.143803057,0.048713235,0.019641083,0.077785388,0.006433824,0,0.012987254,0.709677419,2596,3658,0.649334605,0.770020234,,,,,,,,,,,,,0.740587505,0.66725692,0.81391809,0.481,,3658,0.381640931,0.580359069,73.57131111,,,71.94738731,75.1952349,,,,,,,,,,,,,73.11461342,71.46149221,74.76773463,,,,570.0317737,294,32567,497.0702894,642.993258,,,,,,,,,,,,,586.7601909,511.0607985,662.4595832,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.158,,,0.138,0.182,0.203,,,0.178,0.228,0.12,,,0.104,0.138,,,,,,0.19,2150,,,,0.177656334,2402.091291,13521,,,,,,,,,,,,,,,,,,,,,,,,,,0.359,,,0.342,0.376,0.193516375,1170,6046,0.167303609,0.21972914,0.081056874,181,2233,0.057227087,0.104886661,0.000833951,9,10792,,,1199.111111,,,,,,,,,,,2.586904174,,,,,,,,,2.569746138,2.552985947,,,,,,,,,2.576905304,0.028961876,,,,,-6148.696,,,,,0.805478213,33847,42021,0.645682538,0.965273889,41724,,,35876.17021,47571.82979,,,,,,,,,,,,,43613,35696.74468,51529.25532,,,,,,0.616387337,993,1611,,,,,,,,0.269437254,,41724,,,9.191176471,5,544,,,,,,,,,,,,,,,,,,,,,,,,,,23.4257944,15,62974,12.1044498,40.92014846,23.81935402,,,,,,,,,,,,,24.54904771,12.68485118,42.88224595,,,,23.81935402,15,62974,13.33151163,39.28640212,,,,,,,,,,,,,25.20203633,14.10538842,41.56692631,,,,30.16153176,27,89518,19.87663948,43.88344517,,,,,,,,,,,,,31.82761222,20.97459701,46.30750477,,,,,,1100,,,0,-888,0.564920711,5878,10405,,,0.336,,,,,7.743862676,,,,,0.743207127,3337,4490,0.704808067,0.781606187,0.120987063,505,4174,0.083043619,0.158930506,0.768596882,3451,4490,0.710246337,0.826947427,10792,,,,,0.200982209,2169,10792,,,0.248888065,2686,10792,,,0.008617494,93,10792,,,0.006856931,74,10792,,,0.003706449,40,10792,,,0.000463306,5,10792,,,0.020570793,222,10792,,,0.938194959,10125,10792,,,0,0,10578,0,0.008560521,0.50222387,5420,10792,,,1,10974,10974,, -29,225,29225,MO,Webster County,2024,1,9160.593039,639,111299,8111.826194,10209.35989,0,,,,2,,,,2,,,,2,,,,2,9569.175212,8460.106238,10678.24419,,,,,2,,0.196,,,0.164,0.23,4.442284169,,,3.522826317,5.417673226,5.572779317,,,4.496102711,6.736276902,0.07106599,294,4137,0.063236443,0.078895537,0,,,,,,,,,,,,,0.069148936,0.061234858,0.077063015,,,,,,,0.23,,,0.181,0.279,0.367,,,0.293,0.446,8,0.032207535,0.117,,,0.28,,,0.225,0.335,0.533017782,20833,39085,,,0.168298696,,,0.133259805,0.20522379,0.342105263,13,38,0.257407185,0.426212837,188.8,75,39735,,,33.74198628,300,8891,29.92372109,37.56025147,,,,,,,,,,39.0625,18.73198709,71.83732829,33.64100073,29.67926873,37.60273273,,,,,,,0.145457312,4779,32855,0.127584972,0.163329653,0.000377501,15,39735,,,2649,0.000247924,10,40335,,,4033.5,0.000818148,33,40335,,,1222.272727,2810,,,,,,,,,2842,0.38,,,,,,,,,0.38,0.42,,,,,,,,,0.42,0.87910265,22258,25319,0.862608104,0.895597197,0.548522763,5217,9511,0.482239612,0.614805914,0.021898224,386,17627,,,0.235,2569,,0.157553192,0.312446809,,,,,,,,,,0.18452381,0,0.426468305,0.217279175,0.167426501,0.267131848,3.654282492,110162,30146,2.986654471,4.321910513,0.159502897,1707,10702,0.112558393,0.2064474,9.06002265,36,39735,,,99.51259139,196,196960,85.5808286,113.4443542,,,,,,,,,,,,,103.6582732,88.9957259,118.3208206,,,,7.6,,,,,1,,,,,0.106973348,1465,13695,0.085925439,0.128021257,0.055728012,0.037043068,0.074412956,0.040525739,0.026991706,0.054059772,0.033588901,0.020614193,0.046563609,0.79766317,12698,15919,0.770740109,0.82458623,,,,,,,,,,,,,0.742915856,0.7132065,0.772625211,0.477,,15919,0.424873192,0.529126809,75.37285112,,,74.51263459,76.23306765,,,,,,,,,,,,,74.9033488,74.02099715,75.78570045,,,,472.4883844,639,111299,434.6813399,510.2954288,,,,,,,,,,,,,490.2084778,450.6436853,529.7732704,,,,49.35516405,23,46601,31.28694027,74.05697924,,,,,,,,,,,,,53.18410951,33.71416325,79.80227742,,,,5.376344086,22,4092,3.369326215,8.139849557,,,,,,,,,,,,,5.633802817,3.530674231,8.52964517,,,,,,,0.138,,,0.117,0.159,0.188,,,0.162,0.214,0.102,,,0.086,0.119,75.1,24,31961,,,0.117,4570,,,,0.032207535,1165.977193,36202,,,20.97561794,25,119186,13.57431397,30.9641499,,,,,,,,,,,,,22.33578729,14.45454386,32.97202818,,,,0.35,,,0.333,0.368,0.173787633,3856,22188,0.149957846,0.19761742,0.087818443,979,11148,0.061605677,0.114031209,0.000644602,26,40335,,,1551.346154,0.879385081,436.175,496,,,0.18674429,417,2233,0.112725341,0.26076324,2.906243283,,,,,,,,,2.942289744,3.02091763,,,,,,,,,3.045181491,0.048046902,,,,,-4205.650008,,,,,0.671847239,37436,55721,0.596733638,0.74696084,59784,,,52505.19149,67062.80851,56000,16035.06383,95964.93617,,,,,,,68056,12076.25532,124035.7447,65282,62762,67802,,,,,,0.420113703,2143,5101,,,,,,,,0.214187743,,59784,,,3.886925795,11,2830,,,4.035971513,11,272549,2.014742438,7.221467888,,,,,,,,,,,,,4.28625981,2.139685454,7.669302787,,,,20.25766013,40,196960,14.33552598,27.80522125,20.30869212,,,,,,,,,,,,,20.26551972,14.19372087,28.05602149,,,,20.30869212,40,196960,14.5088274,27.65467454,,,,,,,,,,,,,21.05558675,14.97258049,28.78368023,,,,20.91367057,57,272549,15.83980986,27.09608599,,,,,,,,,,,,,21.82095903,16.48331795,28.33633034,,,,31.86046512,,4300,,,11,126,0.66274925,18779,28335,,,0.661,,,,,24.8050156,,,,,0.766348327,10512,13717,0.746552701,0.786143953,0.062770727,826,13159,0.04301782,0.082523635,0.792957644,10877,13717,0.762391139,0.823524149,40335,,,,,0.276360481,11147,40335,,,0.157679435,6360,40335,,,0.00912359,368,40335,,,0.00870212,351,40335,,,0.004239494,171,40335,,,0.000371886,15,40335,,,0.024246932,978,40335,,,0.938192637,37842,40335,,,0.012838097,468,36454,0.004584171,0.021092023,0.494607661,19950,40335,,,0.807163874,31548,39085,, -29,227,29227,MO,Worth County,2024,1,4210.871959,27,5182,1925.478798,7993.546643,1,,,,2,,,,2,,,,2,,,,2,4173.576245,1908.424822,7922.747759,1,,,,2,,0.186,,,0.156,0.217,4.341897903,,,3.467200343,5.304303275,5.303409794,,,4.250067578,6.469855116,0.080745342,13,161,0.038661072,0.122829611,1,,,,,,,,,,,,,0.078431373,0.03583044,0.121032305,,,,,,,0.223,,,0.178,0.268,0.432,,,0.353,0.512,7.5,0.05325686,0.131,,,0.285,,,0.235,0.34,0.548910289,1083,1973,,,0.156829641,,,0.125161822,0.192842144,0.5,1,2,0.104528646,0.771195053,302.6,6,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.12905452,187,1449,0.108799201,0.14930984,0.000504286,1,1983,,,1983,0.000511509,1,1955,,,1955,,0,1955,,,,2805,,,,,,,,,2812,0.42,,,,,,,,,0.42,0.34,,,,,,,,,0.34,0.94,1316,1400,0.909906383,0.970093617,0.456582633,163,357,0.293395494,0.619769772,0.019332162,22,1138,,,0.219,79,,0.135595745,0.302404255,,,,,,,,,,,,,0.328611898,0.156539002,0.500684794,4.111869862,94536,22991,3.197962185,5.025777539,0.42394015,170,401,0.197459516,0.650420784,20.17145739,4,1983,,,109.4963169,11,10046,54.66016691,195.919157,,,,,,,,,,,,,114.013267,56.9150121,204.0012284,,,,7.1,,,,,0,,,,,0.111111111,90,810,0.053404879,0.168817343,0.071960298,0.008113168,0.135807427,0.004938272,0,0.035647623,0.043209877,0,0.08782797,0.772522523,686,888,0.712152265,0.83289278,,,,,,,,,,,,,0.773071104,0.653269268,0.892872941,0.383,,888,0.283683805,0.482316195,80.68227707,,,77.68942433,83.67512982,,,,,,,,,,,,,80.66167026,77.67066831,83.65267221,,,,290.6468513,27,5182,182.1468343,440.0428258,,,,,,,,,,,,,288.1295547,178.3567356,440.4366311,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.131,,,0.112,0.151,0.182,,,0.159,0.209,0.1,,,0.084,0.116,0,0,1711,,,0.131,260,,,,0.05325686,115.6206425,2171,,,,,,,,,,,,,,,,,,,,,,,,,,0.344,,,0.325,0.362,0.14471243,156,1078,0.120882643,0.168542218,0.086075949,34,395,0.058671694,0.113480205,0,0,1955,,,-1955,,,,,,,,,,,3.35226593,,,,,,,,,3.256452929,2.856895661,,,,,,,,,2.865715477,,,,,,-4327.963,,,,,0.534804124,25938,48500,0.328340439,0.741267809,48397,,,41082.44681,55711.55319,,,,,,,,,,,,,43607,37655.51064,49558.48936,,,,,,0.518518519,140,270,,,,,,,,0.188813356,,48397,,,9.900990099,1,101,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,100,,,-888,-888,0.700632911,1107,1580,,,0.55,,,,,0.027168391,,,,,0.799482536,618,773,0.785192477,0.813772594,0.034682081,24,692,0,0.105598864,0.811125485,627,773,0.788203863,0.834047107,1955,,,,,0.187212276,366,1955,,,0.271611253,531,1955,,,0.00971867,19,1955,,,0.003580563,7,1955,,,0.002557545,5,1955,,,0,0,1955,,,0.020971867,41,1955,,,0.954475703,1866,1955,,,0,0,1874,0,0.030518404,0.50230179,982,1955,,,1,1973,1973,, -29,229,29229,MO,Wright County,2024,1,11601.63159,370,50483,9734.461996,13468.80118,0,,,,2,,,,2,,,,2,,,,2,11781.78198,9842.775238,13720.78872,,,,,2,,0.238,,,0.202,0.276,4.941930909,,,3.955424883,6.021711895,5.708498383,,,4.596400083,6.911299502,0.074755607,130,1739,0.062394527,0.087116686,0,,,,,,,,,,,,,0.072738386,0.060153555,0.085323218,,,,,,,0.27,,,0.218,0.319,0.423,,,0.35,0.502,6.6,0.101069758,0.149,,,0.329,,,0.273,0.387,0.333626567,6068,18188,,,0.142702324,,,0.113696207,0.175680962,0.25,3,12,0.099776571,0.4182543,166.6,31,18610,,,32.08314505,142,4426,26.80612391,37.36016619,,,,,,,,,,,,,32.8106152,27.2961806,38.3250498,,,,,,,0.170446033,2503,14685,0.148999225,0.191892842,0.000161204,3,18610,,,6203.333333,0.000417624,8,19156,,,2394.5,0.001200668,23,19156,,,832.8695652,2244,,,,,,,,,2262,0.31,,,,,,,,,0.32,0.3,,,,,,,,,0.3,0.824060397,10042,12186,0.790944365,0.85717643,0.448844885,1768,3939,0.35186691,0.545822859,0.027288383,206,7549,,,0.316,1552,,0.224255319,0.407744681,,,,,,,,,,,,,0.337094838,0.258961069,0.415228607,3.809486566,82803,21736,3.241160877,4.377812255,0.186313374,893,4793,0.120033944,0.252592804,10.74691026,20,18610,,,89.1953923,82,91933,70.9397425,110.7150002,,,,,,,,,,,,,90.83487599,71.91482674,113.2073578,,,,7.2,,,,,0,,,,,0.137634409,960,6975,0.107726717,0.1675421,0.107038123,0.076246285,0.137829961,0.023655914,0.010013861,0.037297967,0.021505376,0.007845726,0.035165027,0.844186388,5743,6803,0.800606607,0.88776617,,,,,,,,,,,,,0.832957958,0.775887473,0.890028443,0.406,,6803,0.335904366,0.476095634,73.67989163,,,72.3051489,75.05463435,,,,,,,,,,,,,73.35506703,71.94520414,74.76492991,,,,545.9417623,370,50483,486.5363674,605.3471571,,,,,,,,,,,,,555.1851868,493.8887909,616.4815828,,,,106.5117405,22,20655,66.7503407,161.2600551,,,,,,,,,,,,,110.1957286,68.21289282,168.4458768,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.159,,,0.137,0.182,0.204,,,0.177,0.233,0.12,,,0.102,0.139,,,,,,0.149,2720,,,,0.101069758,1901.627487,18815,,,,,,,,,,,,,,,,,,,,,,,,,,0.36,,,0.341,0.376,0.207963277,2084,10021,0.179367532,0.236559022,0.089869281,440,4896,0.062465026,0.117273536,0.001096262,21,19156,,,912.1904762,0.928571429,201.5,217,,,,,,,,3.364926353,,,,,,,,,3.372881394,3.209678186,,,,,,,,,3.203451589,0.04536962,,,,,-4942.383,,,,,0.754929703,33882,44881,0.600892972,0.908966434,45017,,,38610.3617,51423.6383,,,,,,,,,,34211,29742.91489,38679.08511,44129,40529.51064,47728.48936,,,,,,0.522094431,1725,3304,,,,,,,,0.236577293,,45017,,,10.34208433,13,1257,,,,,,,,,,,,,,,,,,,,,,,,,,23.02312007,20,91933,13.64496008,36.38645557,21.75497373,,,,,,,,,,,,,24.19820077,14.34138738,38.24358969,,,,16.3162303,15,91933,9.132070239,26.91114058,,,,,,,,,,,,,17.24712835,9.653086814,28.44651536,,,,23.34866562,30,128487,15.75324665,33.33167199,,,,,,,,,,,,,22.99908004,15.28272166,33.24007421,,,,17.36842105,,1900,,,7,26,0.645420975,8739,13540,,,0.544,,,,,6.227043875,,,,,0.774212454,5284,6825,0.737117071,0.811307837,0.1071875,686,6400,0.079154932,0.135220068,0.74989011,5118,6825,0.715084711,0.784695509,19156,,,,,0.262528712,5029,19156,,,0.198214659,3797,19156,,,0.00668198,128,19156,,,0.008248069,158,19156,,,0.005690123,109,19156,,,0.00088745,17,19156,,,0.028659428,549,19156,,,0.934641888,17904,19156,,,0.007735257,133,17194,0,0.017196217,0.502088119,9618,19156,,,0.776336046,14120,18188,, -29,510,29510,MO,St. Louis city,2024,1,14717.39555,6509,842457,14214.44728,15220.34382,0,,,,2,2702.040284,1848.193554,3814.474667,,23499.99022,22525.2413,24474.73914,,6020.24055,4626.118137,7702.502864,,8769.842675,8206.40508,9333.28027,,,,,2,,0.202,,,0.173,0.23,4.281574116,,,3.590177373,5.061951062,6.156337514,,,5.373071546,6.958102598,0.126905223,3472,27359,0.122960864,0.130849582,0,,,,0.091205212,0.072611376,0.109799048,0.172185911,0.165879906,0.178491917,0.087421384,0.073537803,0.101304964,0.073708589,0.068569426,0.078847753,,,,0.11790393,0.097019125,0.138788735,0.203,,,0.166,0.24,0.365,,,0.322,0.406,7.5,0.035847449,0.14,,,0.266,,,0.229,0.305,0.981696278,296058,301578,,,0.193355309,,,0.165678382,0.22294308,0.280373832,90,321,0.25230234,0.308916262,1246.1,3655,293310,,,28.8189831,1540,53437,27.37960675,30.25835945,,,,4.577611319,2.285127078,8.190611117,38.95676228,36.73679509,41.17672946,41.54829546,34.01965856,49.07693235,8.059477696,6.668666705,9.450288687,,,,45.61003421,36.16592052,56.76563567,0.126072041,29841,236698,0.112965658,0.139178424,0.000968259,284,293310,,,1032.78169,0.000666485,191,286578,,,1500.408377,0.00534235,1531,286578,,,187.1835402,4050,,,,,,1520,6147,1345,2766,0.38,,,,,,0.2,0.31,0.17,0.43,0.46,,,,,,0.54,0.31,0.39,0.55,0.899764413,194018,215632,0.89419445,0.905334377,0.73690274,74198,100689,0.713470185,0.760335295,0.031025901,4625,149069,,,0.333,16815,,0.243638298,0.422361702,,,,0.105515588,0.027519441,0.183511734,0.391691976,0.353293726,0.430090227,0.290322581,0.21390559,0.366739572,0.132973571,0.098000122,0.167947021,6.058887088,112150,18510,5.62150472,6.496269456,0.471544863,25951,55034,0.430998238,0.512091489,14.25113361,418,293310,,,184.0990822,2767,1502995,177.2394139,190.9587505,,,,28.81124791,16.12543675,47.51977195,275.2780501,262.774371,287.7817291,74.11378832,54.45602398,98.55562688,120.9281684,112.6104247,129.245912,,,,10.7,,,,,0,,,,,0.194929126,27985,143565,0.182692968,0.207165285,0.174612804,0.163808208,0.1854174,0.021558179,0.016738289,0.02637807,0.00867203,0.005923686,0.011420374,0.682484901,103621,151829,0.668644423,0.696325379,,,,0.621106879,0.562482508,0.679731249,0.726128942,0.702226871,0.750031014,0.665926396,0.625356713,0.706496079,0.80293859,0.794658619,0.811218561,0.259,,151829,0.244023211,0.273976789,72.37488897,,,71.99347371,72.75630423,,,,96.88426666,86.78405747,106.9844758,66.20712269,65.62402153,66.79022385,90.28654275,83.35953989,97.21354561,77.0203495,76.50877611,77.53192288,,,,649.1205996,6509,842457,632.7726539,665.4685452,,,,182.8278843,135.2570753,241.7081589,959.3419618,928.8287745,989.8551492,252.5563656,196.5039273,319.6262446,442.2489681,422.8342325,461.6637036,,,,109.6303265,275,250843,96.67284997,122.5878031,,,,,,,156.9715058,136.3687904,177.5742212,,,,57.34907402,41.15468566,77.80049455,,,,8.562242259,245,28614,7.490079938,9.63440458,,,,,,,13.22461286,11.35883307,15.09039264,,,,3.662650602,2.591909556,5.027274113,,,,,,,0.127,,,0.11,0.144,0.181,,,0.159,0.205,0.125,,,0.109,0.142,1073.6,2717,253077,,,0.14,42260,,,,0.035847449,11445.8754,319294,,,92.87394381,828,891531,86.54786219,99.20002543,,,,,,,135.8037157,124.3280844,147.279347,28.60114405,14.27758806,51.17534715,66.2098354,58.25304787,74.16662293,,,,0.357,,,0.345,0.37,0.148744314,27630,185755,0.133254952,0.164233675,0.044797986,2385,53239,0.032883093,0.05671288,0.00349992,1003,286578,,,285.7208375,0.74716479,1459.96,1954,,,0.086936127,1112,12791,0.059838413,0.114033841,2.166599883,,,,,,2.39857713,1.974091742,2.444944604,3.165374419,2.222640362,,,,,,2.635579493,2.040369286,2.391110786,3.161966986,0.298648514,,,,,-21573.84,,,,,0.855559848,48719,56944,0.819537273,0.891582423,52278,,,49270.68085,55285.31915,,,,59826,50732.55319,68919.44681,34977,32940.74468,37013.25532,61926,52548.97872,71303.02128,69534,66815.02128,72252.97872,,,,,,0.917703786,28168,30694,,,62.83705567,,,,,0.372145071,,52278,,,12.25065048,226,18448,,,48.54268658,1034,2130084,45.58385932,51.50151384,,,,,,,95.28705872,89.1396917,101.4344257,,,,9.723287909,7.838342387,11.92474947,,,,12.71492891,204,1502995,10.90680608,14.52305173,13.57289944,,,,,,,9.219591136,7.018379941,11.89260084,,,,16.08073474,13.07933983,19.08212966,,,,55.55574037,835,1502995,51.78747245,59.32400829,,,,,,,102.7487888,95.10972075,110.3878569,17.34578025,8.658951002,31.03639226,17.42437894,14.26704551,20.58171237,,,,16.71295592,356,2130084,14.97681753,18.44909431,,,,,,,25.29288124,22.12571154,28.46005094,11.33478419,5.435469596,20.84507168,10.04035165,8.123244055,12.27380923,,,,31.65803109,,19300,,,96,515,0.567160954,133867,236030,,,0.526,,,,,354.0274524,,,,,0.448577161,64173,143059,0.437502795,0.459651526,0.180445639,24716,136972,0.169169092,0.191722185,0.829636723,118687,143059,0.81851643,0.840757016,286578,,,,,0.17993705,51566,286578,,,0.157318426,45084,286578,,,0.433037428,124099,286578,,,0.003049781,874,286578,,,0.036782307,10541,286578,,,0.000467587,134,286578,,,0.045108138,12927,286578,,,0.458109136,131284,286578,,,0.014461019,4055,280409,0.011976663,0.016945376,0.514725485,147509,286578,,,0,0,301578,, -30,000,30000,MT,Montana,2024,,8418.076915,15846,3007018,8212.391062,8623.762769,0,27992.5228,26516.80948,29468.23613,,3518.912403,2178.262239,5379.031406,1,14543.75344,10986.19505,18886.27357,,6810.818301,5938.499267,7683.137335,,7167.713779,6962.288916,7373.138641,,,,,2,,0.137,,,0.126,0.149,3.580386788,,,3.302056396,3.85871718,4.87602677,,,4.560279414,5.191774127,0.076392978,6097,79811,0.074550107,0.07823585,0,0.089324619,0.082996237,0.095653,0.089371981,0.069940222,0.108803739,0.107798165,0.078687638,0.136908692,0.087619048,0.07906801,0.096170085,0.073019104,0.071001225,0.075036984,0.145454546,0.079568876,0.211340215,0.08981289,0.078385864,0.101239916,0.153,,,0.14,0.166,0.318,,,0.301,0.334,8,0.072508015,0.085,,,0.199,,,0.185,0.212,0.737282391,799380,1084225,,,0.244364097,,,0.22897507,0.260438037,0.454183267,456,1004,0.440263074,0.467980036,364.9,4029,1104271,,,16.67739829,3652,218979,16.13649579,17.21830079,51.46163216,48.29410279,54.62916152,,,,9.174311927,5.015681701,15.39293652,22.47546692,19.86146667,25.08946717,12.18851259,11.66893036,12.70809482,,,,23.43577272,20.28100478,26.59054066,0.104989991,90685,863749,0.097841055,0.112138928,0.000833129,920,1104271,,,1200.294565,0.00074096,832,1122867,,,1349.59976,0.003754674,4216,1122867,,,266.3346774,1846,,,,,4309,3148,3180,1574,1738,0.44,,,,,0.23,0.33,0.3,0.32,0.44,0.41,,,,,0.24,0.38,0.28,0.34,0.42,0.944762596,716319,758200,0.941848025,0.947677166,0.694440828,192024,276516,0.681293108,0.707588549,0.02632302,14946,567792,,,0.138,31626,,0.124893617,0.151106383,0.416613261,0.388594286,0.444632236,0.19599724,0.087391634,0.304602846,0.064887811,0,0.135630412,0.194807743,0.159929388,0.229686097,0.111040901,0.102465064,0.119616738,4.405040442,126896,28807,4.299354491,4.510726392,0.203767942,46876,230046,0.192268322,0.215267562,13.69229111,1512,1104271,,,99.28399247,5328,5366424,96.61803513,101.9499498,197.108865,181.8496141,212.3681159,37.30879244,22.11155491,58.96397684,103.9825309,70.15657697,148.4415285,53.11379631,43.44807163,62.77952099,95.83144088,93.00429691,98.65858485,,,,4.6,,,,,0.339285714,,,,,0.140740741,61370,436050,0.134956673,0.146524809,0.115929275,0.111082123,0.120776428,0.018793716,0.017029798,0.020557634,0.012750831,0.01118622,0.014315443,0.726871979,383039,526969,0.721830826,0.731913132,0.681547765,0.659740759,0.703354772,0.603664417,0.524703432,0.682625401,0.680751174,0.610403874,0.751098474,0.66534718,0.631864506,0.698829854,0.733259347,0.72770234,0.738816355,0.183,,526969,0.176695231,0.189304769,77.22459955,,,77.05149977,77.39769933,62.50664631,61.76181467,63.25147796,88.49674103,84.41445372,92.57902833,71.91992716,68.40365056,75.43620376,81.562595,79.75004097,83.37514903,78.24404828,78.06610523,78.42199133,,,,389.9867106,15846,3007018,383.4929571,396.4804641,1188.713319,1136.123215,1241.303423,160.632212,117.1662377,214.9385378,685.6616401,545.3270503,851.0868854,345.8022221,308.0184279,383.5860162,347.4827682,341.0297754,353.935761,,,,60.58144552,622,1026717,55.82041999,65.34247106,132.0303566,109.0673893,154.9933239,,,,,,,39.6161634,26.10730131,57.63943781,52.82990523,47.78933492,57.87047555,,,,5.315091415,432,81278,4.813875403,5.816307426,10.65891473,8.548761297,13.13208106,,,,,,,7.322431047,4.940413479,10.45322563,4.277383718,3.774564481,4.780202956,,,,9.235936188,5.788112037,13.98331838,0.111168701,,,0.100701478,0.122575626,0.159948544,,,0.146740607,0.174102737,0.076,,,0.069,0.083,76.9,722,939263,,,0.085,93720,,,,0.072508015,71740.51739,989415,,,15.49040978,504,3253626,14.1380143,16.84280525,42.83332229,34.16553536,53.03056758,,,,,,,13.2097488,7.828934326,20.87709816,13.66920103,12.29662404,15.04177802,,,,0.297379649,,,0.282174154,0.313047187,0.116741854,74270,636190,0.108401428,0.125082279,0.074150857,17705,238770,0.063427452,0.084874261,0.001540699,1730,1122867,,,649.0560694,0.85106811,8884.3,10439,,,0.077642912,4273,55034,0.067806105,0.087479719,3.088448928,,,,,,3.186978695,2.596705726,2.785823178,3.223722344,3.029081658,,,,,,3.140074302,2.50878675,2.70198938,3.161134775,0.25320755,,,,,636.8231,,,,,0.788671062,44735,56722,0.771388553,0.805953572,67915,,,66224.2766,69605.7234,39077,36006.53192,42147.46809,62390,48535.3617,76244.6383,50676,44549.3617,56802.6383,54890,51494.25532,58285.74468,68239,67359.68085,69118.31915,,,,,,,,,,,80.6016918,,,,,0.275606838,,,,,3.641660597,,,,,4.165606789,310,7441893,3.701889277,4.6293243,17.70201316,14.0365955,22.0316877,,,,,,,,,,3.108880979,2.67693083,3.540831129,,,,27.64708723,1515,5366424,26.20453105,29.0896434,28.2310902,43.6612253,36.20399699,51.1184536,,,,,,,17.51845679,11.81962923,25.00868636,26.67166491,25.14640986,28.19691995,,,,21.5599811,1157,5366424,20.31764882,22.80231337,29.52020443,23.91146036,36.04922217,,,,,,,12.82057152,8.51917667,18.52929544,21.68908234,20.34410643,23.03405824,,,,18.01960872,1341,7441893,17.05514246,18.98407498,53.99114014,47.21654016,60.76574013,,,,,,,12.60905125,8.877935717,17.37991622,15.87247776,14.89646849,16.84848704,,,,25.99618685,,104900,,,423,2304,0.732796388,603674,823795,,,,,,,,62.31534261,,,,,0.690291203,306432,443917,0.684590068,0.695992338,0.122824465,52611,428343,0.118196392,0.127452539,0.866175434,384510,443917,0.860217733,0.872133135,1122867,,,,,0.208175145,233753,1122867,,,0.200492133,225126,1122867,,,0.005526033,6205,1122867,,,0.064523225,72451,1122867,,,0.010761738,12084,1122867,,,0.00098676,1108,1122867,,,0.045169196,50719,1122867,,,0.852855236,957643,1122867,,,0.002678061,2766,1032837,0.002159101,0.00319702,0.492508017,553021,1122867,,,0.465814753,505048,1084225,, -30,001,30001,MT,Beaverhead County,2024,1,4038.905817,109,25726,2705.68277,5372.128865,0,,,,2,,,,2,,,,2,,,,2,4393.251368,2868.031764,5918.470971,,,,,2,,0.143,,,0.119,0.17,3.529869505,,,2.787741297,4.379778576,5.028944577,,,4.094051953,6.067099701,0.056338028,32,568,0.037375731,0.075300326,0,,,,,,,,,,,,,0.055876686,0.036115997,0.075637375,,,,,,,0.17,,,0.132,0.212,0.338,,,0.274,0.408,8.4,0.071374087,0.083,,,0.232,,,0.189,0.28,0.706861594,6624,9371,,,0.20873418,,,0.170851858,0.25025859,0.384615385,5,13,0.234541684,0.524881883,315,30,9524,,,6.260434057,15,2396,3.503917418,10.32563392,,,,,,,,,,,,,6.704980843,3.66567542,11.24981855,,,,,,,0.11459085,794,6929,0.09671851,0.132463191,0.001469971,14,9524,,,680.2857143,0.000411565,4,9719,,,2429.75,0.002057825,20,9719,,,485.95,449,,,,,,,,,457,0.49,,,,,,,,,0.49,0.52,,,,,,,,,0.52,0.942971026,6151,6523,0.926322398,0.959619654,0.766938972,1596,2081,0.638152598,0.895725345,0.023242841,125,5378,,,0.162,253,,0.092893617,0.231106383,,,,,,,,,,,,,0.139097744,0.067859266,0.210336223,4.902287364,110375,22515,3.231658884,6.572915844,0.140974967,214,1518,0.037409997,0.244539937,12.59974801,12,9524,,,78.22740919,37,47298,55.07931534,107.826179,,,,,,,,,,,,,82.36069277,57.36724022,114.5437862,,,,3.8,,,,,1,,,,,0.164090369,690,4205,0.123966252,0.204214485,0.143370894,0.104998022,0.181743766,0.012841855,0,0.026583219,0.011890606,0,0.023889786,0.735468305,3353,4559,0.690038503,0.780898106,,,,,,,,,,,,,0.772392794,0.722279736,0.822505852,0.189,,4559,0.13151141,0.24648859,80.60346697,,,79.14880593,82.058128,,,,,,,,,,,,,80.18376318,78.64256908,81.72495728,,,,253.0491247,109,25726,201.2174969,304.8807526,,,,,,,,,,,,,263.9741477,207.8389971,320.1092982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.111,,,0.095,0.129,0.161,,,0.136,0.186,0.085,,,0.072,0.099,,,,,,0.083,780,,,,0.071374087,659.9248038,9246,,,,,,,,,,,,,,,,,,,,,,,,,,0.32,,,0.302,0.337,0.121273463,659,5434,0.099826655,0.142720272,0.091139241,144,1580,0.062543496,0.119734985,0.001337586,13,9719,,,747.6153846,0.864942529,75.25,87,,,,,,,,3.136610724,,,,,,,,,3.163645211,3.121720655,,,,,,,,,3.141503734,0.050613756,,,,,1095.273,,,,,0.695125627,39203,56397,0.544385883,0.845865372,57497,,,52392.65957,62601.34043,,,,,,,,,,,,,54303,48658.91489,59947.08511,,,,,,,,,,,,,,,,0.283736543,,57497,,,5.076142132,2,394,,,,,,,,,,,,,,,,,,,,,,,,,,25.48356103,14,47298,12.72130185,45.59712997,29.59956024,,,,,,,,,,,,,26.90070408,12.89993323,49.47135258,,,,21.14254303,10,47298,10.13867118,38.88188939,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,800,,,-888,41,0.72716763,5661,7785,,,0.551,,,,,4.583792256,,,,,0.664231799,2728,4107,0.627752037,0.700711562,0.165807117,643,3878,0.113646061,0.217968173,0.859751644,3531,4107,0.82932523,0.890178057,9719,,,,,0.172137051,1673,9719,,,0.236444079,2298,9719,,,0.003498302,34,9719,,,0.021915835,213,9719,,,0.006379257,62,9719,,,0.005864801,57,9719,,,0.057413314,558,9719,,,0.886099393,8612,9719,,,0.00022097,2,9051,0,0.00788677,0.483485955,4699,9719,,,0.527371679,4942,9371,, -30,003,30003,MT,Big Horn County,2024,1,24310.83204,365,37391,21036.0633,27585.60078,0,33904.36102,29169.60784,38639.11419,,,,,2,,,,2,,,,2,7388.23485,4303.919065,11829.27971,1,,,,2,,0.231,,,0.2,0.265,4.708356704,,,3.906630605,5.662216472,5.927100781,,,5.031155178,6.919203022,0.081550802,122,1496,0.067682223,0.095419381,0,0.078465562,0.062903409,0.094027716,,,,,,,0.147058824,0.062879254,0.231238393,0.077922078,0.043354882,0.112489274,,,,,,,0.267,,,0.225,0.314,0.395,,,0.342,0.451,5.2,0.236674131,0.152,,,0.292,,,0.25,0.336,0.333053947,4371,13124,,,0.185952239,,,0.154680703,0.219710996,0.621212121,41,66,0.576406239,0.662407211,1296.6,168,12957,,,56.33415774,205,3639,48.62244318,64.0458723,65.2173913,55.68979731,74.7449853,,,,,,,,,,25.42372881,13.13681167,44.41013781,,,,,,,0.154415829,1397,9047,0.13296902,0.175862637,0.000540249,7,12957,,,1851,0.000700335,9,12851,,,1427.888889,0.001089409,14,12851,,,917.9285714,4245,,,,,6228,,,,1122,0.31,,,,,0.2,,,,0.43,0.32,,,,,0.2,,,,0.4,0.89303014,6637,7432,0.864750964,0.921309316,0.55472973,1642,2960,0.462918748,0.646540712,0.04389313,207,4716,,,0.261,1068,,0.145425532,0.376574468,0.343251534,0.286948108,0.39955496,,,,,,,0.428571429,0.151293563,0.705849294,0.0625,0,0.143183621,4.927607828,103736,21052,4.136864243,5.718351413,0.303973972,1308,4303,0.221407551,0.386540392,6.174268735,8,12957,,,202.9165468,134,66037,168.55908,237.2740136,256.4778638,207.8803479,305.0753797,,,,,,,,,,148.2748788,96.85807366,217.2570521,,,,4.9,,,,,0,,,,,0.220994475,800,3620,0.170682876,0.271306074,0.072292546,0.039838263,0.104746828,0.133977901,0.098442612,0.169513189,0.026243094,0.015249136,0.037237052,0.705188679,3289,4664,0.653984077,0.756393281,0.696307094,0.634227849,0.758386339,,,,,,,,,,0.624295011,0.550910886,0.697679136,0.287,,4664,0.22924041,0.34475959,65.04766537,,,63.18257192,66.91275881,58.6509705,56.57889756,60.72304345,,,,,,,,,,78.53651166,75.61735843,81.45566489,,,,963.5616799,365,37391,860.6956643,1066.427696,1403.460652,1237.263745,1569.657559,,,,,,,,,,391.3466637,288.5481365,518.8688997,,,,152.278933,29,19044,101.9835914,218.6979492,147.4408481,91.26820883,225.3789984,,,,,,,,,,,,,,,,15.58603491,25,1604,10.08646001,23.00806216,,,,,,,,,,,,,,,,,,,,,,0.158,,,0.138,0.18,0.2,,,0.175,0.227,0.139,,,0.121,0.158,110.8,11,9925,,,0.152,2010,,,,0.236674131,3044.812698,12865,,,,,,,,,,,,,,,,,,,,,,,,,,0.363,,,0.349,0.376,0.20024527,1143,5708,0.169266546,0.231223993,0.077075659,272,3529,0.054437361,0.099713957,0.001478484,19,12851,,,676.3684211,0.695873786,143.35,206,,,0.130511464,148,1134,0.052783015,0.208239913,,,,,,,,,,,2.060239638,,,,,,,,,,0.117848929,,,,,-23732.71445,,,,,0.880717704,40299,45757,0.755550943,1.005884466,49113,,,42575.29787,55650.70213,42167,34661.80851,49672.19149,,,,,,,30104,2753.361702,57454.6383,66571,59040.78723,74101.21277,,,,,,,,,,,,,,,,0.333394417,,49113,,,0.917431193,1,1090,,,20.51348492,19,92622,12.35045795,32.03434775,30.84832905,18.28267486,48.75365941,,,,,,,,,,,,,,,,39.01347229,24,66037,24.73119482,58.53936387,36.34326211,31.28890822,16.66002586,53.50498597,,,,,,,,,,52.61755691,21.15498686,108.4122774,,,,37.8575647,25,66037,24.49941979,55.88523358,38.3518301,21.92138463,62.28096934,,,,,,,,,,,,,,,,86.37256807,80,92622,68.48807475,107.4981376,121.6795201,95.03271475,153.4821579,,,,,,,,,,,,,,,,29.5,,2000,,,11,48,0.545185185,4784,8775,,,0.314,,,,,6.616177534,,,,,0.665930425,2412,3622,0.61794737,0.71391348,0.083460715,273,3271,0.041105898,0.125815533,0.768360022,2783,3622,0.720824975,0.81589507,12851,,,,,0.323943662,4163,12851,,,0.135008949,1735,12851,,,0.004279823,55,12851,,,0.667341063,8576,12851,,,0.007625866,98,12851,,,0.00031126,4,12851,,,0.065987083,848,12851,,,0.256633725,3298,12851,,,0.000331648,4,12061,0,0.006862912,0.502762431,6461,12851,,,1,13124,13124,, -30,005,30005,MT,Blaine County,2024,1,20358.16577,150,18893,16000.81798,24715.51355,0,30198.38939,23051.86088,37344.91791,,,,,2,,,,2,,,,2,8089.458213,4179.941103,14130.65553,1,,,,2,,0.203,,,0.176,0.236,4.511107177,,,3.638717576,5.468983537,6.025800521,,,5.026024491,7.065835718,0.087155963,57,654,0.065538037,0.10877389,0,0.097727273,0.069980879,0.125473666,,,,,,,,,,0.055555556,0.02364933,0.087461781,,,,,,,0.257,,,0.214,0.302,0.394,,,0.33,0.459,5.7,0.184202282,0.15,,,0.273,,,0.23,0.319,0.379187961,2671,7044,,,0.209694542,,,0.170907348,0.24877272,0.833333333,5,6,0.737313514,0.893476419,573.1,40,6980,,,35.26734926,62,1758,27.03927445,45.2111501,56.16850552,42.42908544,72.93947644,,,,,,,,,,,,,,,,,,,0.159054487,794,4992,0.1352247,0.182884274,0.000573066,4,6980,,,1745,0.000865052,6,6936,,,1156,0.00216263,15,6936,,,462.4,1615,,,,,3383,,,,544,0.41,,,,,0.33,,,,0.43,0.19,,,,,0.12,,,,0.21,0.89110958,3879,4353,0.862126352,0.920092807,0.613431151,1087,1772,0.514333524,0.712528778,0.031488979,70,2223,,,0.224,443,,0.12987234,0.31812766,0.328278999,0.25025932,0.406298679,,,,,,,,,,0.083969466,0,0.172719897,5.464071388,104708,19163,4.211707589,6.716435186,0.300287356,627,2088,0.200216427,0.400358286,7.163323782,5,6980,,,151.1379801,51,33744,112.5321534,198.7185318,228.8605155,161.9553219,314.1289383,,,,,,,,,,,,,,,,4.7,,,,,1,,,,,0.191666667,460,2400,0.153700439,0.229632895,0.106873428,0.071552635,0.142194222,0.0725,0.044949914,0.100050086,0.022916667,0.010432459,0.035400874,0.642996489,1648,2563,0.585318363,0.700674614,0.656874266,0.564081663,0.749666868,,,,,,,,,,0.603387438,0.525713561,0.681061316,0.204,,2563,0.148586137,0.259413863,68.47289984,,,65.72489344,71.22090623,61.67427131,58.05962678,65.28891584,,,,,,,,,,77.71248565,74.02954521,81.3954261,,,,747.6933551,150,18893,622.257123,873.1295872,1213.67924,969.8167577,1457.541722,,,,,,,,,,327.152925,220.7287047,467.0311428,,,,193.6218679,17,8780,112.7918732,310.0073669,207.0393375,103.3532913,370.4505649,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.142,,,0.123,0.163,0.191,,,0.167,0.217,0.119,,,0.102,0.137,90.8,5,5506,,,0.15,1060,,,,0.184202282,1195.657011,6491,,,,,,,,,,,,,,,,,,,,,,,,,,0.336,,,0.321,0.35,0.186451022,611,3277,0.155472299,0.217429746,0.106512141,193,1812,0.075533418,0.137490865,0.000865052,6,6936,,,1156,,,,,,,,,,,2.897053966,,,,,,,,,2.9971121,3.033458508,,,,,,,,,2.894842893,0.574506024,,,,,-6156.60282,,,,,0.936010906,46004,49149,0.795017303,1.077004508,53577,,,47462.2766,59691.7234,48802,34582.76596,63021.23404,,,,,,,83625,55393.85106,111856.1489,62353,49848.31915,74857.68085,,,,,,,,,,,,,,,,0.252048454,,53577,,,1.769911504,1,565,,,,,,,,,,,,,,,,,,,,,,,,,,63.33346533,19,33744,38.13088335,98.90305136,56.30630631,97.65849143,53.39080602,163.8543545,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,34.09914326,16,46922,19.49060665,55.37487234,56.81073286,30.2493226,97.14808337,,,,,,,,,,,,,,,,,,900,,,-888,25,0.666737968,3117,4675,,,0.455,,,,,3.741839584,,,,,0.627917217,1426,2271,0.589012027,0.666822407,0.124693176,254,2037,0.081836733,0.16754962,0.789520035,1793,2271,0.736146871,0.842893199,6936,,,,,0.291089965,2019,6936,,,0.160899654,1116,6936,,,0.005046136,35,6936,,,0.51138985,3547,6936,,,0.002739331,19,6936,,,0.000144175,1,6936,,,0.036908881,256,6936,,,0.431228374,2991,6936,,,0.002772643,18,6492,0,0.013672338,0.487168397,3379,6936,,,1,7044,7044,, -30,007,30007,MT,Broadwater County,2024,1,5613.669583,85,18195,3596.784026,8352.695361,1,,,,2,,,,2,,,,2,,,,2,5910.175854,3703.875742,8948.077269,1,,,,2,,0.14,,,0.118,0.166,3.566286762,,,2.784349962,4.44029067,4.959740908,,,3.972644456,6.030858014,0.068281938,31,454,0.045080051,0.091483826,0,,,,,,,,,,,,,0.063529412,0.04033966,0.086719163,,,,,,,0.183,,,0.145,0.224,0.331,,,0.261,0.405,9.2,0.038207479,0.061,,,0.226,,,0.182,0.272,0.509300266,3450,6774,,,0.21110841,,,0.170440089,0.256074915,0.333333333,4,12,0.175768434,0.488588466,96,7,7288,,,13.7987013,17,1232,8.038252005,22.09305748,,,,,,,,,,,,,14.15929204,8.093258809,22.99380318,,,,,,,0.117351516,654,5573,0.099479176,0.135223857,0.000137212,1,7288,,,7288,0.000384961,3,7793,,,2597.666667,0.000641601,5,7793,,,1558.6,1827,,,,,,,,,1873,0.38,,,,,,,,,0.38,0.42,,,,,,,,,0.42,0.933267717,4741,5080,0.907664099,0.958871334,0.707725948,971,1372,0.526567039,0.888884856,0.033595425,94,2798,,,0.1,152,,0.058297872,0.141702128,,,,,,,,,,,,,0.042735043,0.002140229,0.083329856,4.262568688,124889,29299,3.143600874,5.381536503,0.158256881,207,1308,0.043652457,0.272861304,5.488474204,4,7288,,,84.40137543,27,31990,55.62103824,122.79957,,,,,,,,,,,,,87.47728955,57.14306983,128.1744973,,,,4.2,,,,,0,,,,,0.067761807,165,2435,0.030116828,0.105406786,0.065702479,0.022258513,0.109146445,0.001642711,0,0.015857887,0.001642711,0,0.00899813,0.771510516,2421,3138,0.714900663,0.82812037,,,,,,,,,,,,,0.711301553,0.600456149,0.822146957,0.342,,3138,0.239386546,0.444613455,80.28874691,,,78.16216082,82.41533301,,,,,,,,,,,,,79.98907622,77.71363164,82.26452081,,,,272.8828731,85,18195,211.9042285,345.9440647,,,,,,,,,,,,,277.8981356,214.015427,354.8697152,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.11,,,0.095,0.127,0.164,,,0.14,0.187,0.08,,,0.067,0.093,0,0,6272,,,0.061,410,,,,0.038207479,214.4203738,5612,,,,,,,,,,,,,,,,,,,,,,,,,,0.299,,,0.282,0.316,0.12287017,512,4167,0.101423362,0.144316979,0.10094851,149,1476,0.071161275,0.130735744,0.000256641,2,7793,,,3896.5,,,,,,,,,,,3.035774494,,,,,,,,,3.002066836,3.179340064,,,,,,,,,3.178614047,0.018355462,,,,,1135.78,,,,,0.842465876,47216,56045,0.526620922,1.15831083,67927,,,58463,77391,,,,,,,,,,,,,64000,57654.12766,70345.87234,,,,,,,,,,,,,,,,0.24878178,,67927,,,3.144654088,1,318,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,600,,,-888,8,0.843872297,4097,4855,,,0.605,,,,,12.32495485,,,,,0.830431755,2385,2872,0.775391769,0.885471741,0.129682997,360,2776,0.072384322,0.186981672,0.784818942,2254,2872,0.715481496,0.854156387,7793,,,,,0.196715001,1533,7793,,,0.238547414,1859,7793,,,0.006544335,51,7793,,,0.015398435,120,7793,,,0.00449121,35,7793,,,0.001154883,9,7793,,,0.033748236,263,7793,,,0.923136148,7194,7793,,,0,0,6660,0,0.010734138,0.477094829,3718,7793,,,1,6774,6774,, -30,009,30009,MT,Carbon County,2024,1,5974.375336,148,29228,4307.373723,7641.376949,0,,,,2,,,,2,,,,2,,,,2,5813.264211,4116.444389,7510.084034,,,,,2,,0.121,,,0.1,0.144,3.252084599,,,2.488390065,4.038306592,4.786659438,,,3.798349832,5.795061297,0.066666667,36,540,0.045627335,0.087705999,0,,,,,,,,,,,,,0.056751468,0.036690714,0.076812221,,,,,,,0.153,,,0.119,0.192,0.312,,,0.248,0.388,8.9,0.033414549,0.078,,,0.207,,,0.167,0.255,0.463668481,4856,10473,,,0.20782917,,,0.169192702,0.251336728,0.470588235,8,17,0.348761796,0.579131995,110.6,12,10847,,,10.97092704,20,1823,6.701327255,16.94370702,,,,,,,,,,,,,11.02265769,6.532725524,17.4205513,,,,,,,0.112541004,892,7926,0.095860153,0.129221855,0.00064534,7,10847,,,1549.571429,0.000626174,7,11179,,,1597,0.001252348,14,11179,,,798.5,656,,,,,,,,,663,0.45,,,,,,,,,0.45,0.46,,,,,,,,,0.46,0.958236941,7870,8213,0.943765581,0.972708302,0.603587444,1346,2230,0.52812373,0.679051158,0.026415746,153,5792,,,0.114,219,,0.062765957,0.165234043,,,,,,,,,,0.107142857,0,0.474545972,0.134996801,0.0722372,0.197756402,4.49928422,122574,27243,3.722643837,5.275924603,0.245425188,456,1858,0.179428881,0.311421496,12.90679451,14,10847,,,109.4558744,59,53903,83.32288301,141.1901033,,,,,,,,,,,,,110.6610019,83.59213157,143.7025156,,,,3.9,,,,,1,,,,,0.108287293,490,4525,0.076760483,0.139814103,0.096345515,0.062143064,0.130547966,0.010607735,0.000289564,0.020925906,0.002209945,0,0.008922126,0.694958147,3570,5137,0.651148558,0.738767736,,,,,,,,,,,,,0.619571684,0.556476078,0.682667289,0.412,,5137,0.353738729,0.470261271,81.26310699,,,79.5385757,82.98763827,,,,,,,,,,,,,81.12269617,79.3862529,82.85913945,,,,295.8394804,148,29228,240.5871472,351.0918136,,,,,,,,,,,,,293.5409709,237.0643133,350.0176284,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.1,,,0.084,0.117,0.152,,,0.129,0.178,0.072,,,0.061,0.086,104.1,10,9602,,,0.078,820,,,,0.033414549,336.7518202,10078,,,,,,,,,,,,,,,,,,,,,,,,,,0.316,,,0.298,0.335,0.119086728,725,6088,0.098831409,0.139342047,0.092650104,179,1932,0.065245848,0.120054359,0.00026836,3,11179,,,3726.333333,,,,,,,,,,,3.078873648,,,,,,,,,3.018304015,3.025648899,,,,,,,,,3.052141391,0.093487612,,,,,-1085.7057,,,,,0.759931099,42794,56313,0.58162195,0.938240249,67062,,,57980.46809,76143.53192,75833,29287.46809,122378.5319,,,,,,,30694,3638.851064,57749.14894,68806,61686.85106,75925.14894,,,,,,,,,,,,,,,,0.292639647,,67062,,,2.732240437,1,366,,,,,,,,,,,,,,,,,,,,,,,,,,34.56696995,15,53903,18.89808413,57.99750196,27.82776469,,,,,,,,,,,,,37.55079573,19.99421723,64.21300431,,,,24.11739606,13,53903,12.84149767,41.24148177,,,,,,,,,,,,,25.68916115,13.67839639,43.92924794,,,,20.0612537,15,74771,11.22813141,33.08798715,,,,,,,,,,,,,18.49112426,9.845744895,31.62038564,,,,,,900,,,0,-888,0.806403659,7052,8745,,,0.459,,,,,5.258499905,,,,,0.738064516,3432,4650,0.702893637,0.773235395,0.147118188,656,4459,0.107780839,0.186455537,0.831612903,3867,4650,0.805824762,0.857401045,11179,,,,,0.173808033,1943,11179,,,0.270596654,3025,11179,,,0.008855891,99,11179,,,0.015296538,171,11179,,,0.007335182,82,11179,,,0.000715628,8,11179,,,0.030593076,342,11179,,,0.926379819,10356,11179,,,0.005549065,57,10272,0,0.014819147,0.483943108,5410,11179,,,1,10473,10473,, -30,011,30011,MT,Carter County,2024,0,,,,,,2,,,,2,,,,2,,,,2,,,,2,,,,2,,,,2,,0.149,,,0.122,0.178,3.695889056,,,2.890323119,4.604526783,4.972743302,,,3.982717605,6.075373896,,,,,,0,,,,,,,,,,,,,,,,,,,,,,0.183,,,0.142,0.228,0.344,,,0.267,0.423,5.2,0.342681557,0.098,,,0.242,,,0.195,0.295,0.198586572,281,1415,,,0.19607395,,,0.157459262,0.238094323,0,0,1,0,0.662081041,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.107142857,111,1036,0.089270517,0.125015198,0,0,1428,,,-1428,0,0,1382,,,-1382,,0,1382,,,,3159,,,,,,,,,3174,0.45,,,,,,,,,0.45,0.21,,,,,,,,,0.21,0.942655936,937,994,0.902335147,0.982976724,0.774509804,158,204,0.635566186,0.913453422,0.020588235,14,680,,,0.144,41,,0.082042553,0.205957447,,,,,,,,,,,,,0.252380952,0.071956309,0.432805596,4.553598089,91500,20094,2.773169958,6.33402622,0.116666667,28,240,0,0.261342643,0,0,1428,,,,,,,,,,,,,,,,,,,,,,,,,,4.2,,,,,0,,,,,0.130769231,85,650,0.069113222,0.192425239,0.095975232,0.016299605,0.17565086,0.018461539,0,0.052322744,0.012307692,0,0.040777119,0.526234568,341,648,0.440794466,0.61167467,,,,,,,,,,,,,0.536912752,0.443594899,0.630230604,0.34,,648,0.233763505,0.446236495,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.115,,,0.097,0.134,0.169,,,0.144,0.194,0.083,,,0.069,0.097,0,0,1192,,,0.098,130,,,,0.342681557,397.5106058,1160,,,,,,,,,,,,,,,,,,,,,,,,,,0.307,,,0.289,0.324,0.114911081,84,731,0.093464272,0.136357889,0.08490566,27,318,0.055118426,0.114692894,0.002170767,3,1382,,,460.6666667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.973307885,34167,35104,0.154690661,1.791925109,50597,,,44864.74468,56329.25532,,,,,,,,,,,,,47196,41133.70213,53258.29787,,,,,,,,,,,,,,,,0.338023994,,50597,,,,,71,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,100,,,0,0,0.822857143,864,1050,,,0.398,,,,,0.209295268,,,,,0.635451505,380,598,0.579155395,0.691747615,0.136986301,70,511,0.042051144,0.231921458,0.824414716,493,598,0.743274215,0.905555216,1382,,,,,0.209117221,289,1382,,,0.282199711,390,1382,,,0.002894356,4,1382,,,0.008683068,12,1382,,,0.000723589,1,1382,,,0,0,1382,,,0.013024602,18,1382,,,0.94934877,1312,1382,,,0,0,1270,0,0.041279946,0.486251809,672,1382,,,1,1415,1415,, -30,013,30013,MT,Cascade County,2024,1,9106.645218,1346,226719,8345.139592,9868.150843,0,24456.471,18947.13443,29965.80756,,,,,2,,,,2,9471.975722,6343.530798,13603.33714,,7904.295206,7128.162034,8680.428377,,,,,2,,0.147,,,0.125,0.172,3.883593557,,,3.229862473,4.614990421,4.956318007,,,4.233742276,5.686667175,0.079514632,557,7005,0.073179088,0.085850177,0,0.082262211,0.0549573,0.109567122,,,,0.115107914,0.062050458,0.168165369,0.082585278,0.059725993,0.105444563,0.078339282,0.071120679,0.085557886,,,,0.077253219,0.053011541,0.101494897,0.181,,,0.145,0.219,0.356,,,0.313,0.402,8,0.098691568,0.085,,,0.246,,,0.206,0.285,0.777880446,65664,84414,,,0.217972101,,,0.189737604,0.249601044,0.547169811,29,53,0.489205127,0.600773952,375.1,317,84511,,,22.50230962,341,15154,20.11391559,24.89070366,50.81081081,37.33387261,67.56760686,,,,,,,21.80376611,13.66430414,33.01116391,17.91994641,15.51898107,20.32091175,,,,54.14364641,40.05576768,71.58077193,0.105891732,7040,66483,0.092785349,0.118998115,0.000745465,63,84511,,,1341.444444,0.000954468,81,84864,,,1047.703704,0.003865008,328,84864,,,258.7317073,2298,,,,,4225,,,,2221,0.52,,,,,0.27,0.47,0.54,,0.53,0.43,,,,,0.34,0.33,0.22,0.2,0.43,0.933678237,53961,57794,0.92572168,0.941634793,0.646246491,14273,22086,0.603783572,0.68870941,0.026310422,1032,39224,,,0.169,3107,,0.118957447,0.219042553,0.642688679,0.486061928,0.799315431,0.72,0.40540799,1,,,,0.320855615,0.210898316,0.430812915,0.124653148,0.09041613,0.158890167,4.235568174,116368,27474,3.826346286,4.644790061,0.226552074,4244,18733,0.183311456,0.269792692,12.18776254,103,84511,,,105.2323882,432,410520,95.30891674,115.1558596,153.9250898,101.4376041,223.9529243,,,,,,,101.4661864,61.97818267,156.7062955,100.8009512,90.25545194,111.3464504,,,,5,,,,,1,,,,,0.131242741,4520,34440,0.113824568,0.148660914,0.109933775,0.093527669,0.12633988,0.018292683,0.012375192,0.024210174,0.011324042,0.00669417,0.015953914,0.796988565,32129,40313,0.781803837,0.812173292,0.621594349,0.535280227,0.707908472,,,,,,,0.724103586,0.630003778,0.818203393,0.814958017,0.797517739,0.832398295,0.12,,40313,0.102247208,0.137752792,76.16582153,,,75.5433173,76.78832575,63.99794824,60.97562708,67.02026941,,,,,,,74.53656975,69.67416854,79.39897095,77.23293872,76.58171975,77.88415769,,,,448.4085803,1346,226719,422.964893,473.8522677,1175.503297,961.7574017,1389.249193,,,,,,,517.163549,358.1507917,722.6842231,405.0190787,379.379643,430.6585144,,,,54.43927546,44,80824,39.55566089,73.08218633,,,,,,,,,,,,,47.95319768,32.35382111,68.45617141,,,,5.659075224,41,7245,4.061050085,7.677174543,,,,,,,,,,,,,4.66954023,3.05029871,6.841958348,,,,,,,0.112,,,0.096,0.128,0.161,,,0.141,0.184,0.084,,,0.073,0.097,77.7,55,70751,,,0.085,7170,,,,0.098691568,8026.289136,81327,,,15.77523127,39,247223,11.21773156,21.56526046,,,,,,,,,,,,,14.33993289,9.675092503,20.47114585,,,,0.31,,,0.294,0.324,0.122633192,5842,47638,0.105952341,0.139314043,0.066056911,1300,19680,0.04937606,0.082737762,0.00192072,163,84864,,,520.6380368,0.825950311,664.89,805,,,,,,,,3.19508582,,,,,,,,2.97702664,3.318301474,3.085496757,,,,,,,,2.779137416,3.228543153,0.054653355,,,,,-2275.2008,,,,,0.824937174,42674,51730,0.770542458,0.879331889,59184,,,53449.3617,64918.6383,34453,15520.23404,53385.76596,73405,27800.74468,119009.2553,61086,54096.7234,68075.2766,54667,39337.29787,69996.70213,63635,60528.78723,66741.21277,,,,,,,,,,,67.01642574,,,,,0.285414977,,59184,,,8.34845735,46,5510,,,4.525257026,26,574553,2.956048131,6.630550025,,,,,,,,,,,,,3.273282243,1.870963624,5.315605291,,,,29.36638548,123,410520,23.94990411,34.78286684,29.96199942,,,,,,,,,,,,,27.0020252,21.41353202,32.59051839,,,,21.92341421,90,410520,17.62901397,26.94759812,,,,,,,,,,,,,22.11302917,17.45125681,27.63749235,,,,14.79410951,85,574553,11.81700922,18.29314551,44.97689823,22.45230555,80.47609483,,,,,,,,,,12.88854883,9.903914804,16.49005276,,,,50.63291139,,7900,,,79,321,0.635820182,39885,62730,,,0.68,,,,,91.6653514,,,,,0.680134193,23517,34577,0.665409407,0.69485898,0.112199917,3767,33574,0.095482986,0.128916847,0.846863522,29282,34577,0.83094969,0.862777354,84864,,,,,0.220694287,18729,84864,,,0.197775264,16784,84864,,,0.014305241,1214,84864,,,0.048866422,4147,84864,,,0.011866045,1007,84864,,,0.001425811,121,84864,,,0.054546097,4629,84864,,,0.839932127,71280,84864,,,0.000984463,78,79231,0,0.002567547,0.490832391,41654,84864,,,0.205143697,17317,84414,, -30,015,30015,MT,Chouteau County,2024,1,8873.396783,78,15753,6069.396831,12526.58868,0,22093.24808,12365.42324,36439.45287,1,,,,2,,,,2,,,,2,3843.739527,2151.311835,6339.663813,1,,,,2,,0.164,,,0.138,0.193,3.910777636,,,3.089797558,4.802366583,5.290946343,,,4.233512456,6.383303683,0.080246914,26,324,0.050664517,0.109829311,0,,,,,,,,,,,,,0.085616438,0.053523652,0.117709225,,,,,,,0.196,,,0.158,0.238,0.336,,,0.267,0.411,6.7,0.224637958,0.087,,,0.25,,,0.202,0.302,0.327735369,1932,5895,,,0.195738067,,,0.157691669,0.237691288,0.733333333,11,15,0.654068828,0.795548278,135.2,8,5916,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.142988718,621,4343,0.121541909,0.164435526,,0,5916,,,,0.000169549,1,5898,,,5898,0.000847745,5,5898,,,1179.6,384,,,,,,,,,389,0.45,,,,,,,,,0.45,0.28,,,,,,,,,0.28,0.923265506,3766,4079,0.906799199,0.939731813,0.548558422,723,1318,0.466469185,0.630647659,0.022891566,57,2490,,,0.241,293,,0.154021277,0.327978723,0.495238095,0.310988818,0.679487373,,,,,,,0.132231405,0,0.278876812,0.09787234,0.047621522,0.148123159,4.350417163,109500,25170,3.411922491,5.288911836,0.213030747,291,1366,0.133617456,0.292444037,8.451656525,5,5916,,,118.2197497,34,28760,81.8706133,165.2002507,192.2707172,92.20128237,353.5926945,,,,,,,,,,99.72801451,62.49901574,150.9894125,,,,4.7,,,,,1,,,,,0.084782609,195,2300,0.05579741,0.113767807,0.067952652,0.035920819,0.099984486,0.01826087,0.003659567,0.032862172,0.006086957,0,0.015715971,0.656913828,1639,2495,0.606622453,0.707205203,,,,,,,,,,,,,0.643343653,0.597620232,0.689067074,0.294,,2495,0.22708538,0.36091462,77.69502245,,,75.07219407,80.31785082,,,,,,,,,,,,,81.19407558,79.10502173,83.28312943,,,,350.7629128,78,15753,270.7114108,447.0761263,696.3642288,412.7095752,1100.555702,,,,,,,,,,235.6851645,169.861136,318.5778747,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.118,,,0.102,0.139,0.171,,,0.147,0.196,0.09,,,0.076,0.106,0,0,5091,,,0.087,520,,,,0.224637958,1305.82045,5813,,,,,,,,,,,,,,,,,,,,,,,,,,0.327,,,0.312,0.343,0.154803703,485,3133,0.129782426,0.179824979,0.113707165,146,1284,0.079153974,0.148260357,0.001525941,9,5898,,,655.3333333,,,,,,,,,,,3.599222445,,,,,,,,,3.52957807,3.557478986,,,,,,,,,3.47624279,0.078481862,,,,,1026.639667,,,,,0.750467147,39359,52446,0.585410758,0.915523537,51137,,,44538.53192,57735.46809,34598,23545.74468,45650.25532,,,,,,,80583,18552.87234,142613.1277,57287,44122.23404,70451.76596,,,,,,,,,,,,,,,,0.277880986,,51137,,,,,285,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,34.75152659,14,40286,18.99898296,58.30715664,,,,,,,,,,,,,,,,,,,,,700,,,0,-888,0.675398633,2965,4390,,,0.479,,,,,2.08176736,,,,,0.68452381,1495,2184,0.650578627,0.718468992,0.078051336,149,1909,0.039949915,0.116152757,0.723443223,1580,2184,0.670915578,0.775970869,5898,,,,,0.208884368,1232,5898,,,0.229399797,1353,5898,,,0.001865039,11,5898,,,0.182434724,1076,5898,,,0.006103764,36,5898,,,0.000678196,4,5898,,,0.031875212,188,5898,,,0.766870126,4523,5898,,,0,0,5533,0,0.012920543,0.493726687,2912,5898,,,1,5895,5895,, -30,017,30017,MT,Custer County,2024,1,10237.76244,189,31623,7791.585907,12683.93897,0,,,,2,,,,2,,,,2,,,,2,10043.40513,7471.594032,12615.21622,,,,,2,,0.133,,,0.11,0.158,3.382847654,,,2.616635786,4.165352557,4.697324284,,,3.758602637,5.681694228,0.069167644,59,853,0.052139442,0.086195845,0,,,,,,,,,,,,,0.061760841,0.044657651,0.078864031,,,,,,,0.164,,,0.127,0.206,0.343,,,0.277,0.412,8.3,0.045418035,0.101,,,0.223,,,0.179,0.272,0.861127496,10219,11867,,,0.217699411,,,0.178238542,0.258247952,0.333333333,2,6,0.110000414,0.553214291,386,46,11916,,,20.43536206,46,2251,14.9612534,27.25790925,,,,,,,,,,,,,18.29587036,12.74374407,25.4451267,,,,,,,0.106841308,987,9238,0.091351946,0.122330669,0.000671366,8,11916,,,1489.5,0.000581782,7,12032,,,1718.857143,0.003740027,45,12032,,,267.3777778,2528,,,,,,,,,2534,0.39,,,,,,,,,0.4,0.38,,,,,0.45,,,,0.38,0.944289044,8102,8580,0.929476792,0.959101297,0.621416235,1799,2895,0.537443993,0.705388477,0.024318005,156,6415,,,0.148,335,,0.083659575,0.212340426,,,,,,,,,,,,,0.066493507,0.027649695,0.105337318,4.306572753,119839,27827,3.692770643,4.920374863,0.125807841,292,2321,0.076051571,0.175564112,7.552870091,9,11916,,,94.96348223,55,57917,71.53949095,123.6080252,,,,,,,,,,,,,94.78672986,70.35253789,124.9644866,,,,4.7,,,,,1,,,,,0.13753878,665,4835,0.102670297,0.172407263,0.115328467,0.08275325,0.147903684,0.014477766,0.007067549,0.021887983,0.010341262,0.001231473,0.01945105,0.722926829,4446,6150,0.684263645,0.761590014,,,,,,,,,,,,,0.722031448,0.67981379,0.764249106,0.105,,6150,0.074646239,0.135353762,75.82003407,,,73.93279014,77.70727799,,,,,,,,,,,,,75.76825102,73.81553619,77.72096585,,,,430.6208883,189,31623,364.4833057,496.7584708,,,,,,,,,,,,,427.1227653,358.4714263,495.7741042,,,,93.47541597,10,10698,44.82509531,171.9046181,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.106,,,0.089,0.124,0.159,,,0.136,0.181,0.079,,,0.066,0.094,78,8,10257,,,0.101,1210,,,,0.045418035,531.3455931,11699,,,,,,,,,,,,,,,,,,,,,,,,,,0.325,,,0.308,0.342,0.112903226,784,6944,0.093839396,0.131967056,0.089700997,216,2408,0.063488231,0.115913763,0.001662234,20,12032,,,601.6,0.925,105.45,114,,,,,,,,2.98587629,,,,,,,,,2.944539315,2.925168093,,,,,,,,,2.922719845,0.043124329,,,,,-1325.794,,,,,0.818086053,45043,55059,0.677452426,0.95871968,64743,,,57663.17021,71822.82979,100956,68816.76596,133095.234,,,,,,,,,,63342,53593.23404,73090.76596,,,,,,,,,,,,,,,,0.239531687,,64743,,,3.25732899,2,614,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.85829999,13,81976,8.443876855,27.11817595,,,,,,,,,,,,,16.00661607,8.270852097,27.960337,,,,61,,1000,,,10,51,0.645730028,5860,9075,,,0.595,,,,,49.34841118,,,,,0.672938351,3362,4996,0.651747284,0.694129417,0.119949759,573,4777,0.082884383,0.157015136,0.830864692,4151,4996,0.79559987,0.866129514,12032,,,,,0.192902261,2321,12032,,,0.20603391,2479,12032,,,0.007729388,93,12032,,,0.027426862,330,12032,,,0.006482713,78,12032,,,0.00049867,6,12032,,,0.037732713,454,12032,,,0.901180186,10843,12032,,,0.004658522,53,11377,0,0.013260875,0.499750665,6013,12032,,,0.222465661,2640,11867,, -30,019,30019,MT,Daniels County,2024,0,,,,,,2,,,,2,,,,2,,,,2,,,,2,,,,2,,,,2,,0.144,,,0.119,0.173,3.585507242,,,2.808463294,4.431871175,5.03376354,,,4.000059268,6.104585645,,,,,,0,,,,,,,,,,,,,,,,,,,,,,0.179,,,0.14,0.22,0.335,,,0.261,0.415,8.9,0.052158853,0.07,,,0.23,,,0.183,0.28,0.672486454,1117,1661,,,0.200254781,,,0.162481269,0.241762378,0,0,2,0,0.510593623,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.101694915,126,1239,0.085014064,0.118375766,0,0,1686,,,-1686,0.001842752,3,1628,,,542.6666667,0.000614251,1,1628,,,1628,2103,,,,,,,,,2130,0.34,,,,,,,,,0.33,0.06,,,,,,,,,0.06,0.961864407,1135,1180,0.93231208,0.991416734,0.737201365,216,293,0.555205959,0.919196771,0.019230769,17,884,,,0.109,37,,0.062531915,0.155468085,,,,,,,,,,,,,0.237704918,0.018077857,0.457331979,4.159658818,103875,24972,2.605590002,5.713727634,0.254480287,71,279,0.075394373,0.4335662,0,0,1686,,,,,,,,,,,,,,,,,,,,,,,,,,4.5,,,,,0,,,,,0.086549708,74,855,0.033586821,0.139512595,0.079532164,0.014483408,0.14458092,0.009356725,0,0.036215388,0,0,0.021678625,0.69816273,532,762,0.610993694,0.785331765,,,,,,,,,,,,,0.725201072,0.650708041,0.799694104,0.165,,762,0.069554339,0.260445661,82.93158376,,,78.94910075,86.91406676,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.112,,,0.094,0.131,0.165,,,0.141,0.19,0.083,,,0.069,0.098,,,,,,0.07,120,,,,0.052158853,91.33015135,1751,,,,,,,,,,,,,,,,,,,,,,,,,,0.304,,,0.286,0.32,0.106214689,94,885,0.08715086,0.125278519,0.088948787,33,371,0.060353042,0.117544532,0.003685504,6,1628,,,271.3333333,,,,,,,,,,,2.615072013,,,,,,,,,2.59216693,2.634835374,,,,,,,,,2.746408547,,,,,,-571.5811,,,,,1.028571429,45000,43750,0.635141411,1.422001446,57141,,,48536.06383,65745.93617,,,,,,,,,,,,,60938,34988.55319,86887.44681,,,,,,,,,,,,,,,,0.323550515,,57141,,,,,89,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,200,,,0,0,0.756716418,1014,1340,,,0.448,,,,,,,,,,0.806722689,576,714,0.73759767,0.875847708,0.125,85,680,0.04879609,0.20120391,0.801120448,572,714,0.733936213,0.868304684,1628,,,,,0.211302211,344,1628,,,0.264742015,431,1628,,,0.001842752,3,1628,,,0.033169533,54,1628,,,0.001842752,3,1628,,,0,0,1628,,,0.044226044,72,1628,,,0.901105651,1467,1628,,,0,0,1466,0,0.035760936,0.477272727,777,1628,,,1,1661,1661,, -30,021,30021,MT,Dawson County,2024,1,8850.727082,154,23786,6554.974209,11146.47996,0,,,,2,,,,2,,,,2,,,,2,9327.685052,6838.053808,11817.3163,,,,,2,,0.131,,,0.109,0.154,3.314018067,,,2.560946521,4.136506498,4.627493458,,,3.673320183,5.62426776,0.066246057,42,634,0.046885953,0.085606161,0,,,,,,,,,,,,,0.068376068,0.047923375,0.088828762,,,,,,,0.168,,,0.133,0.205,0.348,,,0.284,0.417,8.1,0.11997639,0.072,,,0.233,,,0.19,0.277,0.839485459,7505,8940,,,0.224221722,,,0.186059924,0.266852506,0.363636364,4,11,0.198476333,0.520352029,190.9,17,8904,,,14.10658307,27,1914,9.296327133,20.52433775,,,,,,,,,,,,,14.07624633,9.01891663,20.94433877,,,,,,,0.093876329,627,6679,0.079578457,0.108174201,0.000449236,4,8904,,,2226,0.000679502,6,8830,,,1471.666667,0.002491506,22,8830,,,401.3636364,2427,,,,,,,,,2456,0.41,,,,,,,,,0.41,0.35,,,,,,,,,0.35,0.952105432,5924,6222,0.934030452,0.970180413,0.752698264,1604,2131,0.606955647,0.898440881,0.023184602,106,4572,,,0.145,273,,0.083042553,0.206957447,,,,,,,,,,,,,0.070875521,0.025803879,0.115947164,3.341153971,124037,37124,2.829174202,3.853133739,0.160146062,307,1917,0.070454028,0.249838096,15.72327044,14,8904,,,91.52899181,40,43702,65.38965366,124.6365085,,,,,,,,,,,,,96.88478164,68.89455083,132.4446859,,,,4.3,,,,,0,,,,,0.104113111,405,3890,0.055817091,0.15240913,0.077182077,0.027423733,0.126940421,0.022879177,0.005472999,0.040285356,0.031876607,0.000046735,0.063706478,0.804994325,3546,4405,0.738254268,0.871734382,,,,,,,,,,,,,0.770120724,0.696805344,0.843436105,0.157,,4405,0.106702776,0.207297224,76.1949687,,,74.33725444,78.05268297,,,,,,,,,,,,,75.80187344,73.84069375,77.76305312,,,,454.4786033,154,23786,377.3984727,531.5587339,,,,,,,,,,,,,471.0760476,389.5080237,552.6440715,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.104,,,0.089,0.12,0.158,,,0.136,0.183,0.08,,,0.067,0.093,79.5,6,7545,,,0.072,650,,,,0.11997639,1075.708309,8966,,,,,,,,,,,,,,,,,,,,,,,,,,0.307,,,0.29,0.324,0.101086049,484,4788,0.083213708,0.118958389,0.076147252,151,1983,0.051125975,0.101168528,0.001812005,16,8830,,,551.875,0.728048781,59.7,82,,,,,,,,2.664316751,,,,,,,,,2.665616045,2.636621227,,,,,,,,,2.644361584,0.032122689,,,,,-988.4785,,,,,0.616721569,39316,63750,0.476936893,0.756506244,60763,,,51844.70213,69681.29787,,,,,,,,,,56250,26941.74468,85558.25532,69310,60197.48936,78422.51064,,,,,,,,,,,,,,,,0.245231473,,60763,,,7.662835249,4,522,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.55674019,11,62654,8.764261447,31.41385788,,,,,,,,,,,,,17.32081616,8.306004601,31.85359761,,,,,,800,,,-888,23,0.695244957,4825,6940,,,0.615,,,,,24.91733017,,,,,0.722015915,2722,3770,0.672749669,0.771282161,0.080898268,299,3696,0.03770674,0.124089797,0.870291777,3281,3770,0.823912904,0.916670651,8830,,,,,0.214382786,1893,8830,,,0.211211778,1865,8830,,,0.006342016,56,8830,,,0.025028313,221,8830,,,0.006795017,60,8830,,,0.000339751,3,8830,,,0.037712344,333,8830,,,0.912684032,8059,8830,,,0,0,8442,0,0.008468297,0.479501699,4234,8830,,,0.253355705,2265,8940,, -30,023,30023,MT,Deer Lodge County,2024,1,11065.93144,182,25172,8165.894782,13965.9681,0,,,,2,,,,2,,,,2,,,,2,11757.29411,8525.584319,14989.0039,,,,,2,,0.173,,,0.145,0.204,4.056337837,,,3.248884608,4.991508514,4.998609252,,,4.053593613,6.100457837,0.098231827,50,509,0.072375267,0.124088387,0,,,,,,,,,,,,,0.092631579,0.066559202,0.118703956,,,,,,,0.209,,,0.166,0.257,0.364,,,0.294,0.438,7.7,0.027436247,0.136,,,0.27,,,0.221,0.324,0.962424371,9067,9421,,,0.195904604,,,0.159733697,0.235917947,0.375,3,8,0.179126284,0.556186502,221.3,21,9491,,,14.63057791,20,1367,8.936737078,22.59574097,,,,,,,,,,,,,13.66353544,7.809891079,22.18872553,,,,,,,0.111966733,727,6493,0.095285882,0.128647585,0.000842904,8,9491,,,1186.375,0.00084122,8,9510,,,1188.75,0.006098843,58,9510,,,163.9655172,2183,,,,,,,,,2200,0.43,,,,,,,,,0.43,0.45,,,,,0.25,,,,0.45,0.904697442,6683,7387,0.864553315,0.944841568,0.486725664,1045,2147,0.372344539,0.601106788,0.024588649,133,5409,,,0.18,208,,0.101361702,0.258638298,,,,,,,,,,,,,0.296224589,0.181167073,0.411282104,5.451630735,88758,16281,4.152658024,6.750603446,0.396797153,446,1124,0.24523736,0.548356947,7.375408282,7,9491,,,115.0373329,53,46072,86.17085634,150.4716638,,,,,,,,,,,,,123.4717347,91.93281646,162.3425285,,,,4.7,,,,,0,,,,,0.176904177,720,4070,0.117099833,0.236708521,0.149098988,0.091466175,0.2067318,0.011056511,0,0.022564029,0.024570025,0.007546923,0.041593126,0.749266145,3063,4088,0.685081073,0.813451216,,,,,,,,,,,,,0.737157534,0.690953368,0.7833617,0.286,,4088,0.208948307,0.363051693,74.93721302,,,72.81257187,77.06185417,,,,,,,,,,,,,74.28605684,71.98187051,76.59024316,,,,454.2453935,182,25172,379.3407795,529.1500076,,,,,,,,,,,,,472.9472382,391.9737276,553.9207487,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.127,,,0.109,0.149,0.172,,,0.148,0.199,0.098,,,0.083,0.115,80.7,7,8676,,,0.136,1280,,,,0.027436247,255.1022267,9298,,,,,,,,,,,,,,,,,,,,,,,,,,0.336,,,0.317,0.352,0.118694918,633,5333,0.098439599,0.138950238,0.082071713,103,1255,0.057050437,0.10709299,0.001156677,11,9510,,,864.5454546,0.875,67.375,77,,,,,,,,2.881419852,,,,,,,,,2.835956214,2.86573745,,,,,,,,,,0.036454275,,,,,-5662.2685,,,,,0.927544703,42847,46194,0.753503137,1.101586269,52848,,,45590.6383,60105.3617,31083,25902.40426,36263.59575,,,,,,,,,,47105,42153.17021,52056.82979,,,,,,,,,,,,,,,,0.251892219,,52848,,,10.03344482,3,299,,,,,,,,,,,,,,,,,,,,,,,,,,32.56974968,15,46072,17.34201999,55.69526387,32.55773572,,,,,,,,,,,,,37.83158824,20.14372742,64.69316805,,,,23.87567286,11,46072,11.91864987,42.72017389,,,,,,,,,,,,,26.63115846,13.29417835,47.65049876,,,,18.66368048,12,64296,9.643796051,32.6016938,,,,,,,,,,,,,20.74796411,10.72077582,36.24251785,,,,,,600,,,-888,28,0.627856226,4891,7790,,,0.512,,,,,79.94299967,,,,,0.659132841,2858,4336,0.610270169,0.707995514,0.165289256,700,4235,0.105493477,0.225085035,0.775138376,3361,4336,0.726413963,0.82386279,9510,,,,,0.123449001,1174,9510,,,0.266771819,2537,9510,,,0.004626709,44,9510,,,0.031125131,296,9510,,,0.005047319,48,9510,,,0.00126183,12,9510,,,0.040273396,383,9510,,,0.900525762,8564,9510,,,0,0,9113,0,0.007844767,0.472134595,4490,9510,,,0.28914128,2724,9421,, -30,025,30025,MT,Fallon County,2024,1,6833.262517,41,8049,3824.525159,11270.42735,1,,,,2,,,,2,,,,2,,,,2,7071.750764,3866.191949,11865.19615,1,,,,2,,0.127,,,0.107,0.15,3.276631134,,,2.617327199,4.0773168,4.660330805,,,3.778118981,5.694141412,0.068965517,18,261,0.038223335,0.0997077,1,,,,,,,,,,,,,0.073469388,0.040798862,0.106139914,,,,,,,0.164,,,0.131,0.199,0.33,,,0.263,0.41,8.7,0.050251013,0.077,,,0.213,,,0.173,0.258,0.702197442,2141,3049,,,0.236589688,,,0.195490395,0.284038828,,,,,,132.6,4,3017,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.127694185,314,2459,0.107438866,0.147949504,0.000994365,3,3017,,,1005.666667,0.000332116,1,3011,,,3011,,0,3011,,,,3917,,,,,,,,,3787,0.38,,,,,,,,,0.38,0.34,,,,,,,,,0.34,0.96503856,1877,1945,0.92731283,1,0.71770972,539,751,0.558446811,0.87697263,0.015634396,26,1663,,,0.119,92,,0.067765957,0.170234043,,,,,,,,,,,,,0.062857143,0,0.14322199,5.637103967,145364,25787,2.141361342,9.132846592,0.162234043,122,752,0.079577334,0.244890751,26.51640703,8,3017,,,,,,,,,,,,,,,,,,,,,,,,,,4.2,,,,,0,,,,,0.082352941,105,1275,0.035353556,0.129352326,0.058039216,0.007933223,0.108145208,0.014901961,0,0.048043046,0.015686275,0,0.034802255,0.808151792,1150,1423,0.684540921,0.931762663,,,,,,,,,,,,,0.831229236,0.732512849,0.929945623,0.145,,1423,0.069239638,0.220760362,77.78902715,,,74.73773043,80.84032388,,,,,,,,,,,,,77.4203292,74.25312505,80.58753334,,,,366.6592064,41,8049,258.1619187,505.3914175,,,,,,,,,,,,,372.9932698,259.8034789,518.7433458,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.103,,,0.088,0.119,0.157,,,0.136,0.181,0.076,,,0.065,0.09,0,0,2454,,,0.077,240,,,,0.050251013,145.225427,2890,,,,,,,,,,,,,,,,,,,,,,,,,,0.305,,,0.287,0.32,0.128297362,214,1668,0.105659064,0.15093566,0.125755744,104,827,0.086436595,0.165074893,0.001328462,4,3011,,,752.75,,,,,,,,,,,,,,,,,,,,,3.389226886,,,,,,,,,3.368582139,,,,,,5708.59,,,,,0.68196036,47311,69375,0.570811316,0.793109405,65637,,,55869.17021,75404.82979,,,,,,,,,,,,,80859,63188.02128,98529.97872,,,,,,,,,,,,,,,,0.246644423,,65637,,,,,235,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,300,,,-888,14,0.734265734,1575,2145,,,0.369,,,,,,,,,,0.720790378,839,1164,0.653385711,0.788195045,0.07360157,75,1019,0.003330761,0.14387238,0.878865979,1023,1164,0.820690333,0.937041626,3011,,,,,0.259714381,782,3011,,,0.190302225,573,3011,,,0.003653271,11,3011,,,0.01428097,43,3011,,,0.008635005,26,3011,,,0.001328462,4,3011,,,0.019926935,60,3011,,,0.936233809,2819,3011,,,0,0,2758,0,0.019008532,0.488874128,1472,3011,,,1,3049,3049,, -30,027,30027,MT,Fergus County,2024,1,7522.603591,166,30255,5523.52879,9521.678392,0,,,,2,,,,2,,,,2,,,,2,7247.627591,5185.428987,9309.826195,,,,,2,,0.134,,,0.112,0.159,3.259798357,,,2.503355058,4.055794952,4.754692975,,,3.769085399,5.755430526,0.074441687,60,806,0.056320004,0.092563371,0,,,,,,,,,,,,,0.072083879,0.053732562,0.090435197,,,,,,,0.174,,,0.137,0.215,0.32,,,0.252,0.387,7.6,0.119230421,0.096,,,0.219,,,0.177,0.266,0.700331994,8016,11446,,,0.211109958,,,0.170076028,0.253973027,0.642857143,9,14,0.537681028,0.727334143,284.1,33,11617,,,16.64066563,32,1923,11.38220297,23.49165475,,,,,,,,,,,,,17.03577513,11.49396594,24.31962828,,,,,,,0.111589983,958,8585,0.094909132,0.128270834,0.000860807,10,11617,,,1161.7,0.000943154,11,11663,,,1060.272727,0.002829461,33,11663,,,353.4242424,1380,,,,,,,,,1401,0.49,,,,,,,,,0.48,0.42,,,,,,,,,0.42,0.946428571,8109,8568,0.923546853,0.96931029,0.746929661,2007,2687,0.626259095,0.867600227,0.02829712,168,5937,,,0.15,354,,0.094,0.206,,,,,,,,,,,,,0.246959776,0.140802408,0.353117143,3.883736021,101750,26199,3.2159684,4.551503641,0.171605484,388,2261,0.064479745,0.278731224,16.35534131,19,11617,,,129.9510458,73,56175,101.8608757,163.39393,,,,,,,,,,,,,127.2530436,98.61936093,161.6068672,,,,3.8,,,,,1,,,,,0.127596439,645,5055,0.087522134,0.167670745,0.122580645,0.079510737,0.165650554,0.00652819,0,0.013768961,0.002769535,0,0.00584063,0.618732092,3455,5584,0.56589202,0.671572164,,,,,,,,,,,,,0.590069513,0.53618302,0.643956007,0.258,,5584,0.181068161,0.33493184,77.14533672,,,75.55783625,78.73283718,,,,,,,,,,,,,77.21279119,75.58360013,78.84198225,,,,350.4826585,166,30255,290.6765229,410.288794,,,,,,,,,,,,,341.2940492,280.5177313,402.0703671,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.106,,,0.09,0.123,0.161,,,0.137,0.185,0.079,,,0.065,0.092,50.6,5,9890,,,0.096,1100,,,,0.119230421,1381.403658,11586,,,,,,,,,,,,,,,,,,,,,,,,,,0.294,,,0.275,0.31,0.12029711,745,6193,0.100041791,0.140552429,0.090003983,226,2511,0.062599727,0.117408238,0.000771671,9,11663,,,1295.888889,0.897277228,90.625,101,,,,,,,,,,,,,,,,,,3.011134137,,,,,,,,,3.02636084,0.081053554,,,,,-872.0246667,,,,,0.858864722,40474,47125,0.571236047,1.146493396,60466,,,52671.2766,68260.7234,88681,88212.74468,89149.25532,,,,,,,36126,35231.19149,37020.80851,58330,52457.14894,64202.85106,,,,,,,,,,,,,,,,0.290526908,,60466,,,3.384094755,2,591,,,,,,,,,,,,,,,,,,,,,,,,,,20.99367796,12,56175,10.0672846,38.60812123,21.36181575,,,,,,,,,,,,,22.48634682,10.78307734,41.35319241,,,,23.14196707,13,56175,12.32212281,39.57346848,,,,,,,,,,,,,24.69088906,13.14685854,42.22217226,,,,22.78048472,18,79015,13.501159,36.00298711,,,,,,,,,,,,,21.58778132,12.33928228,35.05720438,,,,,,1100,,,-888,18,0.743232439,6507,8755,,,0.579,,,,,36.35068771,,,,,0.673351331,3492,5186,0.620719197,0.725983464,0.113807172,530,4657,0.078851358,0.148762986,0.863478596,4478,5186,0.823298363,0.90365883,11663,,,,,0.207751008,2423,11663,,,0.250964589,2927,11663,,,0.003686873,43,11663,,,0.017319729,202,11663,,,0.007030781,82,11663,,,8.57412E-05,1,11663,,,0.021692532,253,11663,,,0.934493698,10899,11663,,,0.000549501,6,10919,0,0.007833668,0.491211524,5729,11663,,,0.473702604,5422,11446,, -30,029,30029,MT,Flathead County,2024,1,7793.424385,1477,294604,7148.203632,8438.645138,0,18760.2047,8099.324829,36965.08206,1,,,,2,,,,2,,,,2,7857.687036,7181.61963,8533.754443,,,,,2,,0.125,,,0.103,0.148,3.286265351,,,2.641127785,3.939381864,4.472978267,,,3.779501218,5.218312695,0.068268497,537,7866,0.062694912,0.073842083,0,,,,,,,,,,0.090909091,0.05759098,0.124227202,0.067083333,0.061304787,0.072861879,,,,0.084848485,0.042329524,0.127367446,0.151,,,0.118,0.189,0.316,,,0.271,0.362,9,0.040747431,0.069,,,0.186,,,0.151,0.226,0.801211227,83612,104357,,,0.208456482,,,0.178802995,0.241767062,0.405063291,32,79,0.349955407,0.458821516,221.3,240,108454,,,18.68336611,361,19322,16.7560294,20.61070283,,,,,,,,,,22.57336343,13.78839682,34.86272901,18.45491064,16.42330978,20.48651149,,,,22.69503546,12.97217369,36.85531574,0.108439886,9346,86186,0.095333503,0.121546269,0.00092205,100,108454,,,1084.54,0.000697587,78,111814,,,1433.512821,0.003523709,394,111814,,,283.7918782,1407,,,,,2603,,,,1377,0.43,,,,,0.34,0.25,,0.24,0.43,0.41,,,,,0.34,0.33,,0.3,0.41,0.955907591,72410,75750,0.947163736,0.964651445,0.685869235,18085,26368,0.641711735,0.730026736,0.030701421,1616,52636,,,0.116,2760,,0.074297872,0.157702128,0.2,0.0261394,0.373860601,0.038216561,0,0.486543407,,,,0.182904412,0.064235966,0.301572858,0.103978163,0.07863403,0.129322296,4.274249287,127394,29805,3.829854049,4.718644525,0.169596013,3879,22872,0.13519037,0.204001656,12.26326369,133,108454,,,93.03809756,484,520217,84.74924887,101.3269463,,,,,,,,,,63.41958397,30.41215561,116.6308729,96.38233877,87.61244078,105.1522368,,,,6.7,,,,,1,,,,,0.157420163,6285,39925,0.139883967,0.174956359,0.119222026,0.103128613,0.135315439,0.024671259,0.018559316,0.030783201,0.019536631,0.012410998,0.026662265,0.748897819,38390,51262,0.729672026,0.768123612,,,,,,,,,,0.623106061,0.448273944,0.797938177,0.751360014,0.730304384,0.772415643,0.242,,51262,0.216865504,0.267134496,77.6820924,,,77.14154123,78.22264357,,,,,,,,,,90.63161412,79.26878827,101.99444,77.54178099,76.98357692,78.09998505,,,,353.2882188,1477,294604,333.7775306,372.7989069,565.9501976,329.686846,906.1410908,,,,,,,,,,358.730987,338.3640307,379.0979433,,,,53.46892245,53,99123,40.05189203,69.93866704,,,,,,,,,,,,,53.15238903,39.05437621,70.68140949,,,,4.476275739,35,7819,3.117890063,6.225415957,,,,,,,,,,,,,4.315144766,2.931931512,6.12500355,,,,,,,0.102,,,0.086,0.119,0.153,,,0.131,0.177,0.075,,,0.062,0.087,60.9,56,91969,,,0.069,7180,,,,0.040747431,3705.08243,90928,,,13.2029386,42,318111,9.515516827,17.84653746,,,,,,,,,,,,,13.61159981,9.724326461,18.53513561,,,,0.294,,,0.277,0.31,0.121959358,7676,62939,0.105278506,0.138640209,0.073560199,1792,24361,0.054496369,0.092624029,0.00159193,178,111814,,,628.1685393,0.858737601,952.34,1109,,,0.077947902,392,5029,0.039399287,0.116496518,3.212542227,,,,,,,,2.968288042,3.230699158,3.111370919,,,,,,,,2.869904323,3.141295092,0.037864602,,,,,547.4934345,,,,,0.815743592,43980,53914,0.749220041,0.882267142,66395,,,62357.04255,70432.95745,42292,19384.42553,65199.57447,66250,3269.06383,129230.9362,33000,11188.59575,54811.40426,49552,27982.46809,71121.53192,68356,65162.80851,71549.19149,,,,,,,,,,,89.81858721,,,,,0.294886663,,66395,,,3.342716397,19,5684,,,2.65933623,19,714464,1.60109413,4.15288294,,,,,,,,,,,,,2.567502666,1.495664918,4.110820486,,,,28.73670851,149,520217,23.90858647,33.56483056,28.64189367,,,,,,,,,,,,,29.04729176,23.98662214,34.10796139,,,,21.91393207,114,520217,17.89117361,25.93669053,,,,,,,,,,,,,22.43382023,18.20277733,26.66486313,,,,15.95601738,114,714464,13.0269582,18.88507656,,,,,,,,,,,,,16.00913427,12.9614429,19.05682564,,,,20.76190476,,10500,,,29,189,0.759260198,59936,78940,,,0.566,,,,,60.28289481,,,,,0.743179769,31328,42154,0.723316286,0.763043253,0.143243243,5883,41070,0.126581496,0.159904991,0.884542392,37287,42154,0.868152466,0.900932318,111814,,,,,0.214731608,24010,111814,,,0.208855778,23353,111814,,,0.00295133,330,111814,,,0.013012682,1455,111814,,,0.010884147,1217,111814,,,0.00099272,111,111814,,,0.036337131,4063,111814,,,0.916620459,102491,111814,,,0.003091961,310,100260,0.001426929,0.004756993,0.499329243,55832,111814,,,0.514953477,53739,104357,, -30,031,30031,MT,Gallatin County,2024,1,4444.786116,774,337636,3995.999008,4893.573224,0,,,,2,,,,2,,,,2,,,,2,4343.136604,3880.607732,4805.665476,,,,,2,,0.101,,,0.083,0.121,2.874275624,,,2.284710056,3.574173125,4.559046919,,,3.840028993,5.396267201,0.075398743,624,8276,0.069710147,0.08108734,0,,,,0.112781955,0.059021214,0.166542696,,,,0.087260035,0.064152161,0.110367909,0.073609597,0.067633871,0.079585322,,,,0.084745763,0.034494736,0.134996789,0.121,,,0.091,0.154,0.242,,,0.202,0.286,9.2,0.043666198,0.057,,,0.146,,,0.116,0.178,0.8683423,103298,118960,,,0.267977622,,,0.23177842,0.306762088,0.558139535,24,43,0.494138568,0.616534099,471.8,579,122713,,,5.816400719,152,26133,4.891726825,6.741074614,,,,,,,,,,26.87296417,18.49811203,37.73963296,5.036470997,4.119926796,5.953015198,,,,,,,0.080386835,8412,104644,0.069663431,0.09111024,0.000782313,96,122713,,,1278.260417,0.000696797,87,124857,,,1435.137931,0.004332957,541,124857,,,230.7892791,1650,,,,,,,,,1649,0.43,,,,,,0.35,,,0.43,0.49,,,,,0.45,0.42,0.25,0.36,0.5,0.975777155,75209,77076,0.969764715,0.981789595,0.825342183,29969,36311,0.782839595,0.867844771,0.018642392,1452,77887,,,0.066,1509,,0.042170213,0.089829787,0.035502959,0,0.306476248,0.348148148,0.071557007,0.624739289,,,,0.080546075,0.024090158,0.137001992,0.077734535,0.046834821,0.10863425,4.164132606,156384,37555,3.775321422,4.552943789,0.149319683,3413,22857,0.106604612,0.192034754,11.24575228,138,122713,,,58.74774902,337,573639,52.47536916,65.02012888,,,,,,,,,,,,,59.64967288,53.03075732,66.26858844,,,,0.9,,,,,1,,,,,0.156011925,7065,45285,0.13843134,0.173592509,0.137954824,0.12213118,0.153778468,0.015678481,0.009833515,0.021523446,0.006845534,0.003740024,0.009951044,0.682086848,45929,67336,0.663209574,0.700964123,,,,0.347750865,0.219964012,0.475537718,,,,0.612935997,0.498285585,0.72758641,0.691610556,0.670821152,0.71239996,0.145,,67336,0.126657254,0.163342746,82.03486224,,,81.501763,82.56796148,,,,86.46408887,75.73911381,97.18906393,,,,92.52152454,71.7639933,113.2790558,82.06597595,81.5238355,82.60811639,,,,207.1414108,774,337636,192.1791594,222.1036622,,,,,,,,,,,,,204.5449147,189.1834495,219.90638,,,,40.7362145,44,108012,29.59899581,54.68646658,,,,,,,,,,,,,38.92769969,27.40869305,53.65670624,,,,3.479304139,29,8335,2.330144588,4.99686112,,,,,,,,,,,,,3.088077336,1.957576133,4.633632236,,,,,,,0.087,,,0.072,0.101,0.138,,,0.118,0.16,0.064,,,0.054,0.075,68.9,73,105985,,,0.057,6690,,,,0.043666198,3908.69238,89513,,,7.063084647,25,353953,4.570855975,10.42650626,,,,,,,,,,,,,6.834187089,4.282948664,10.34704138,,,,0.24,,,0.226,0.255,0.087612022,7078,80788,0.074505639,0.100718405,0.058917772,1471,24967,0.04342841,0.074407133,0.001593823,199,124857,,,627.4221106,0.891211313,835.065,937,,,0.034445928,258,7490,0.012712998,0.056178858,3.495995251,,,,,,,,,3.560721898,3.460888631,,,,,,,,2.780446638,3.535179534,0.055424229,,,,,1424.093,,,,,0.765872576,48384,63175,0.705255476,0.826489677,83520,,,77867.57447,89172.42553,,,,58727,44058.57447,73395.42553,210772,67894.55319,353649.4468,81923,50242.48936,113603.5106,83923,80117.38298,87728.61702,,,,,,,,,,,88.48301419,,,,,0.279489943,,83520,,,6.5199674,40,6135,,,1.540673788,12,778880,0.796088628,2.691247053,,,,,,,,,,,,,1.685042997,0.870686305,2.943431007,,,,22.53702893,133,573639,18.60214896,26.4719089,23.18531341,,,,,,,,,,,,,23.03055216,18.87914742,27.1819569,,,,17.25824081,99,573639,14.02664652,21.01128894,,,,,,,,,,,,,17.9713758,14.52270098,21.99241259,,,,10.01437962,78,778880,7.915951521,12.49839899,,,,,,,,,,,,,10.11025798,7.910654203,12.73219668,,,,15.39215686,,10200,,,18,139,0.80984654,70979,87645,,,0.655,,,,,77.14130138,,,,,0.613527176,29372,47874,0.596805252,0.630249099,0.142728674,6666,46704,0.127017161,0.158440188,0.914128755,43763,47874,0.903246361,0.925011148,124857,,,,,0.185948725,23217,124857,,,0.136836541,17085,124857,,,0.004645314,580,124857,,,0.010580104,1321,124857,,,0.018164781,2268,124857,,,0.000889017,111,124857,,,0.04570829,5707,124857,,,0.902568538,112692,124857,,,0.002566108,292,113791,0.001186261,0.003945956,0.477306038,59595,124857,,,0.347562206,41346,118960,, -30,033,30033,MT,Garfield County,2024,0,,,,,,2,,,,2,,,,2,,,,2,,,,2,,,,2,,,,2,,0.136,,,0.111,0.162,3.518116426,,,2.717650617,4.453515078,4.933278123,,,3.859284361,6.097396166,,,,,,0,,,,,,,,,,,,,,,,,,,,,,0.176,,,0.134,0.218,0.327,,,0.247,0.412,7.8,0.184659863,0.055,,,0.23,,,0.181,0.282,0.091219096,107,1173,,,0.208807909,,,0.165524462,0.254901728,0.5,3,6,0.280972677,0.671334317,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.13442623,123,915,0.11417091,0.154681549,0,0,1209,,,-1209,0,0,1218,,,-1218,0.000821018,1,1218,,,1218,2965,,,,,,,,,2977,0.39,,,,,,,,,0.39,0.2,,,,,,,,,0.2,0.970887919,667,687,0.928499163,1,0.791489362,186,235,0.621151123,0.961827601,0.028947368,22,760,,,0.197,54,,0.113595745,0.280404255,,,,,,,,,,,,,0.077625571,0,0.231430567,4.811451059,124708,25919,3.661994547,5.960907571,0.114155251,25,219,0.031889342,0.19642116,0,0,1209,,,,,,,,,,,,,,,,,,,,,,,,,,4.3,,,,,0,,,,,0.137931035,60,435,0.056421381,0.219440688,0.104408353,0,0.212482522,0.027586207,0,0.091702486,0,0,0.042609712,0.462282399,239,517,0.353537791,0.571027006,,,,,,,,,,,,,0.535714286,0.415869245,0.655559327,0.26,,517,0.127348112,0.392651888,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.107,,,0.09,0.125,0.161,,,0.136,0.187,0.077,,,0.064,0.091,0,0,1015,,,0.055,50,,,,0.184659863,222.699795,1206,,,,,,,,,,,,,,,,,,,,,,,,,,0.309,,,0.289,0.326,0.141744548,91,642,0.117914761,0.165574336,0.121527778,35,288,0.084591608,0.158463948,0.002463054,3,1218,,,406,,,,,,,,,,,3.296398622,,,,,,,,,3.244101244,2.868139136,,,,,,,,,2.88105543,,,,,,,,,,,0.640670051,31553,49250,0.477872019,0.803468083,50762,,,43477.23404,58046.76596,,,,,,,,,,,,,63594,48250,78938,,,,,,,,,,,,,,,,0.27719554,,50762,,,,,70,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,100,,,0,-888,0.997546012,813,815,,,0.424,,,,,4.58583013,,,,,0.694174757,286,412,0.624382898,0.763966616,0.084745763,30,354,0,0.224929674,0.922330097,380,412,0.849431715,0.99522848,1218,,,,,0.225779967,275,1218,,,0.256157636,312,1218,,,0.004926108,6,1218,,,0.006568145,8,1218,,,0.000821018,1,1218,,,0.001642036,2,1218,,,0.010673235,13,1218,,,0.964696223,1175,1218,,,0,0,907,0,0.057801028,0.493431856,601,1218,,,1,1173,1173,, -30,035,30035,MT,Glacier County,2024,1,19689.14303,332,39132,16929.71528,22448.57079,0,27868.31095,23741.76384,31994.85807,,,,,2,,,,2,,,,2,5549.816761,3341.352229,8666.726341,1,,,,2,,0.244,,,0.209,0.278,4.800195094,,,3.92712564,5.788408837,5.898179867,,,4.913187893,6.986513963,0.094565985,134,1417,0.079330123,0.109801846,0,0.104007634,0.085525156,0.122490111,,,,,,,,,,0.07641196,0.046400119,0.106423802,,,,,,,0.289,,,0.24,0.336,0.451,,,0.384,0.521,6,0.15113127,0.152,,,0.308,,,0.26,0.363,0.325228625,4481,13778,,,0.216463325,,,0.17852744,0.259142619,0.545454546,12,22,0.449731478,0.629320844,856,118,13785,,,40.302267,144,3573,33.71956339,46.88497061,49.72804973,41.11310464,58.34299482,,,,,,,,,,,,,,,,,,,0.176656151,1736,9827,0.150443386,0.202868917,0.000797969,11,13785,,,1253.181818,0.000438564,6,13681,,,2280.166667,0.002558293,35,13681,,,390.8857143,2284,,,,,3376,,,,782,0.2,,,,,0.08,,,,0.33,0.21,,,,,0.19,,,,0.22,0.866999169,7301,8421,0.821600875,0.912397462,0.547308782,1932,3530,0.464577088,0.630040476,0.049515236,286,5776,,,0.262,1046,,0.160723404,0.363276596,0.394002068,0.320655968,0.467348168,,,,,,,,,,0.176949942,0,0.368211399,6.708403127,96118,14328,5.315945408,8.100860846,0.392883618,1590,4047,0.281468377,0.504298858,5.077983315,7,13785,,,140.1071236,96,68519,113.4872199,171.0947781,169.5230133,132.8789813,213.149738,,,,,,,,,,72.31703789,40.47529714,119.2759564,,,,5.8,,,,,0,,,,,0.138221154,575,4160,0.102662478,0.17377983,0.079545455,0.049444595,0.109646314,0.056490385,0.032151348,0.080829421,0.009615385,0,0.019541408,0.672670808,3249,4830,0.640193802,0.705147813,0.68687231,0.643029056,0.730715564,,,,,,,,,,0.576301616,0.497294185,0.655309046,0.227,,4830,0.168653507,0.285346493,68.86064005,,,67.0300614,70.69121869,62.9188391,60.81118899,65.0264892,,,,,,,,,,81.41536154,78.32606348,84.5046596,,,,830.8189091,332,39132,738.2390213,923.3987968,1164.900091,1019.763492,1310.03669,,,,,,,,,,323.0771473,239.794086,425.9369418,,,,107.2328562,20,18651,65.50061437,165.6124492,147.1385426,88.58701436,229.7750606,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.162,,,0.14,0.184,0.203,,,0.177,0.231,0.143,,,0.124,0.164,46.4,5,10768,,,0.152,2110,,,,0.15113127,2025.007889,13399,,,,,,,,,,,,,,,,,,,,,,,,,,0.353,,,0.339,0.366,0.221065714,1423,6437,0.185321033,0.256810395,0.091998885,330,3587,0.06459463,0.11940314,0.001023317,14,13681,,,977.2142857,0.704473684,133.85,190,,,0.383989145,283,737,0.219296647,0.548681643,2.167279681,,,,,,,,,3.09616852,2.316571512,,,,,,,,,3.001998988,0.416949898,,,,,-7083.74125,,,,,0.925390703,36949,39928,0.810229191,1.040552216,46270,,,39604.80851,52935.19149,34266,28800.6383,39731.3617,46429,4661.340426,88196.65957,,,,,,,61632,51212.42553,72051.57447,,,,,,,,,,,,,,,,0.286622001,,46270,,,1.743679163,2,1147,,,,,,,,,,,,,,,,,,,,,,,,,,37.48064175,25,68519,24.01455439,55.76822395,36.4862301,47.67883143,28.70577111,74.45640135,,,,,,,,,,,,,,,,23.35118726,16,68519,13.34722114,37.92086516,23.22233059,11.13601016,42.70669277,,,,,,,,,,,,,,,,37.55476737,36,95860,26.30289737,51.99162788,48.36396384,32.39010563,69.45871959,,,,,,,,,,,,,,,,,,1800,,,-888,17,0.603978495,5617,9300,,,0.399,,,,,11.49285732,,,,,0.635928144,2655,4175,0.588062468,0.683793819,0.0995996,398,3996,0.062604182,0.136595018,0.799760479,3339,4175,0.753037153,0.846483805,13681,,,,,0.30246327,4138,13681,,,0.130472919,1785,13681,,,0.003143045,43,13681,,,0.649879395,8891,13681,,,0.003800892,52,13681,,,0.000219282,3,13681,,,0.035962284,492,13681,,,0.293911264,4021,13681,,,0.00985649,125,12682,0,0.02242768,0.509904247,6976,13681,,,1,13778,13778,, -30,037,30037,MT,Golden Valley County,2024,1,11788.69899,22,2178,5089.523485,23228.4366,1,,,,2,,,,2,,,,2,,,,2,13229.92245,5711.741482,26068.22137,1,,,,2,,0.152,,,0.127,0.182,3.660227974,,,2.92623035,4.426351589,5.132907296,,,4.05308324,6.294855398,,,,,,0,,,,,,,,,,,,,,,,,,,,,,0.187,,,0.148,0.231,0.352,,,0.271,0.439,4.7,0.40331492,0.091,,,0.248,,,0.199,0.302,0.027946537,23,823,,,0.187487444,,,0.149349108,0.230506897,0.25,1,4,0.023230216,0.544021398,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.125862069,73,580,0.10560675,0.146117388,0.001203369,1,831,,,831,0,0,835,,,-835,0,0,835,,,-835,1059,,,,,,,,,1067,0.49,,,,,,,,,0.49,0.37,,,,,,,,,0.37,0.912844037,597,654,0.841151982,0.984536091,0.563380282,80,142,0.302648562,0.824112001,0.031914894,12,376,,,0.294,37,,0.16412766,0.42387234,,,,,,,,,,,,,0.113636364,0,0.287720688,3.684210526,87500,23750,2.727209923,4.64121113,0,0,133,0,0.139362591,0,0,831,,,,,,,,,,,,,,,,,,,,,,,,,,3.9,,,,,1,,,,,0.083333333,30,360,0.034131988,0.132534679,0.057971015,0,0.169271374,0.022222222,0,0.085497641,0.011111111,0,0.062558103,0.562334218,212,377,0.462719826,0.661948609,,,,,,,,,,,,,0.520588235,0.347230733,0.693945737,0.548,,377,0.380774988,0.715225012,,,,,,,,,,,,,,,,,,,,,,,,641.126097,22,2178,358.8334096,1057.439998,,,,,,,,,,,,,708.3796718,387.2777584,1188.540722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.116,,,0.099,0.136,0.171,,,0.145,0.196,0.086,,,0.072,0.101,,,,,,0.091,70,,,,0.40331492,356.5303895,884,,,,,,,,,,,,,,,,,,,,,,,,,,0.314,,,0.298,0.33,0.135391924,57,421,0.110370647,0.160413201,0.095238095,16,168,0.059493414,0.130982776,0.001197605,1,835,,,835,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.650406504,30000,46125,0.498050083,0.802762925,45622,,,38756.6383,52487.3617,,,,,,,,,,118750,18656.55319,218843.4468,52917,41168.91489,64665.08511,,,,,,,,,,,,,,,,0.429792644,,45622,,,,,26,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,100,,,0,-888,0.750746269,503,670,,,0.454,,,,,9.415345165,,,,,0.856338028,304,355,0.679479568,1,0.065420561,21,321,0,0.188041736,0.785915493,279,355,0.714163879,0.857667107,835,,,,,0.174850299,146,835,,,0.329341317,275,835,,,0.004790419,4,835,,,0.022754491,19,835,,,0.007185629,6,835,,,0.00239521,2,835,,,0.045508982,38,835,,,0.901796407,753,835,,,0,0,810,0,0.064722879,0.528143713,441,835,,,1,823,823,, -30,039,30039,MT,Granite County,2024,1,6542.55783,39,8793,3137.410786,12031.99679,1,,,,2,,,,2,,,,2,,,,2,6696.483766,3062.058793,12712.01211,1,,,,2,,0.148,,,0.122,0.178,3.536071063,,,2.745841341,4.407086291,5.037837344,,,4.013575536,6.150645477,,,,,,0,,,,,,,,,,,,,,,,,,,,,,0.182,,,0.139,0.229,0.334,,,0.258,0.409,5.5,0.338206135,0.088,,,0.232,,,0.184,0.285,0.370504684,1226,3309,,,0.18996801,,,0.15085906,0.232027417,0.307692308,4,13,0.157450571,0.460702037,119.6,4,3344,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.162810626,380,2334,0.140172328,0.185448923,0.000299043,1,3344,,,3344,0,0,3502,,,-3502,0.000285551,1,3502,,,3502,1976,,,,,,,,,1981,0.33,,,,,,,,,0.33,0.41,,,,,,,,,0.41,0.903913212,2333,2581,0.854323518,0.953502906,0.637478109,364,571,0.479988487,0.79496773,0.038323353,64,1670,,,0.156,75,,0.089276596,0.222723404,,,,,,,,,,,,,0.004739337,0,0.049464905,3.898929024,101571,26051,2.676518032,5.121340016,0.076190476,40,525,0.001752392,0.150628561,8.971291866,3,3344,,,95.3743443,16,16776,54.51467843,154.8819599,,,,,,,,,,,,,101.580852,58.06223385,164.9609396,,,,4.7,,,,,0,,,,,0.084870849,115,1355,0.043292303,0.126449394,0.066914498,0.021713759,0.112115238,0.017712177,0,0.044235994,0.00295203,0,0.013237881,0.641965679,823,1282,0.562280846,0.721650511,,,,,,,,,,,,,0.552238806,0.518905384,0.585572228,0.432,,1282,0.29596134,0.56803866,83.2278749,,,79.35403612,87.10171368,,,,,,,,,,,,,83.07287082,79.03608653,87.1096551,,,,264.3345567,39,8793,171.0633878,390.2099504,,,,,,,,,,,,,263.2134186,166.8547287,394.9493645,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.113,,,0.094,0.132,0.165,,,0.14,0.192,0.085,,,0.071,0.099,,,,,,0.088,290,,,,0.338206135,1041.336689,3079,,,,,,,,,,,,,,,,,,,,,,,,,,0.307,,,0.288,0.325,0.163243243,302,1850,0.137030477,0.189456009,0.164383562,84,511,0.117915477,0.210851647,0.000571102,2,3502,,,1751,,,,,,,,,,,3.608761446,,,,,,,,,3.642939147,3.560070686,,,,,,,,,3.517126642,,,,,,-357.6705,,,,,0.85834,42917,50000,0.415485241,1.301194759,58186,,,50670.08511,65701.91489,,,,,,,,,,125417,79037.08511,171796.9149,53116,46434.12766,59797.87234,,,,,,,,,,,,,,,,0.254459836,,58186,,,,,185,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,200,,,0,0,0.76996337,2102,2730,,,0.315,,,,,6.930836424,,,,,0.765450484,1028,1343,0.708419731,0.822481237,0.088818398,112,1261,0.033365144,0.144271653,0.816827997,1097,1343,0.746380963,0.887275031,3502,,,,,0.13849229,485,3502,,,0.312964021,1096,3502,,,0.005425471,19,3502,,,0.009708738,34,3502,,,0.00770988,27,3502,,,0.000285551,1,3502,,,0.024557396,86,3502,,,0.930896631,3260,3502,,,0,0,3194,0,0.016413755,0.480582524,1683,3502,,,1,3309,3309,, -30,041,30041,MT,Hill County,2024,1,11186.08693,275,46061,9293.239251,13078.93461,0,21198.7023,16428.70311,26921.60258,,,,,2,,,,2,,,,2,8370.433777,6264.705626,10476.16193,,,,,2,,0.167,,,0.142,0.195,4.000159751,,,3.216724196,4.832360691,5.644310068,,,4.697517377,6.618137321,0.068887634,122,1771,0.057092077,0.080683192,0,0.073239437,0.054075569,0.092403304,,,,,,,,,,0.059793814,0.044872404,0.074715225,,,,,,,0.204,,,0.168,0.245,0.338,,,0.283,0.399,6.8,0.214067994,0.086,,,0.238,,,0.198,0.282,0.718315041,11715,16309,,,0.233720404,,,0.196933742,0.275485816,0.384615385,5,13,0.234541684,0.524881883,797.3,129,16179,,,40.19709544,155,3856,33.86882697,46.5253639,82.66452649,66.69997796,98.62907501,,,,,,,,,,20.26114363,14.77861719,27.11100428,,,,,,,0.120130386,1511,12578,0.103449535,0.136811238,0.000679894,11,16179,,,1470.818182,0.000871297,14,16068,,,1147.714286,0.003920836,63,16068,,,255.0476191,2236,,,,,4089,,,,1809,0.41,,,,,0.21,,,,0.45,0.28,,,,,0.12,,,,0.3,0.904276579,9050,10008,0.880585434,0.927967724,0.559150657,2212,3956,0.470021659,0.648279656,0.024538259,186,7580,,,0.222,970,,0.151702128,0.292297872,0.407835581,0.304618024,0.511053139,,,,,,,0.159259259,0,0.463929515,0.09799098,0.032979721,0.163002239,4.075117716,110778,27184,3.649386259,4.500849174,0.264653641,1192,4504,0.198325869,0.330981414,9.889362754,16,16179,,,86.76418472,71,81831,67.76354811,109.4412131,120.8300499,76.59588672,181.3044019,,,,,,,,,,76.66387349,55.48202537,103.2657345,,,,4.9,,,,,0,,,,,0.127511592,825,6470,0.102301605,0.152721579,0.113352095,0.086745515,0.139958675,0.013137558,0.005424704,0.020850412,0.007727975,0,0.015802867,0.731491562,5375,7348,0.689501361,0.773481764,0.595387841,0.520517018,0.670258663,,,,,,,,,,0.780927835,0.739077811,0.822777859,0.084,,7348,0.051851859,0.116148141,74.04488727,,,72.5975581,75.49221644,64.50859139,61.74613078,67.27105199,,,,,,,,,,77.01773517,75.31661601,78.71885432,,,,517.9012283,275,46061,453.7746716,582.0277849,1156.467099,935.6509434,1413.721058,,,,,,,,,,376.2493879,311.8593656,440.6394101,,,,69.21441637,14,20227,37.8401655,116.1300298,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.121,,,0.104,0.14,0.181,,,0.157,0.206,0.097,,,0.083,0.112,,,,,,0.086,1400,,,,0.214067994,3445.638438,16096,,,,,,,,,,,,,,,,,,,,,,,,,,0.331,,,0.317,0.345,0.138098051,1169,8465,0.115459753,0.160736349,0.084398977,363,4301,0.06056919,0.108228764,0.001618123,26,16068,,,618,0.684054054,126.55,185,,,0.119920714,121,1009,0.050300715,0.189540712,2.937296374,,,,,,,,,3.214319311,2.949713288,,,,,,,,,3.292022548,0.330615222,,,,,-8663.785167,,,,,0.755023561,41820,55389,0.635979275,0.874067847,50518,,,44971.61702,56064.38298,42528,32412.25532,52643.74468,,,,,,,91333,20715.80851,161950.1915,66474,59647.95745,73300.04255,,,,,,,,,,,,,,,,0.297577101,,50518,,,3.641660597,5,1373,,,,,,,,,,,,,,,,,,,,,,,,,,20.2513065,14,81831,10.78296781,34.63035088,17.10843079,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20.87955109,24,114945,13.37792236,31.06711696,,,,,,,,,,,,,15.09661836,7.800643001,26.37075414,,,,57.22222222,,1800,,,17,86,0.610195412,7182,11770,,,0.561,,,,,40.62361791,,,,,0.659054358,4098,6218,0.620337634,0.697771083,0.100837464,590,5851,0.072882539,0.128792388,0.814088131,5062,6218,0.786608368,0.841567895,16068,,,,,0.277632562,4461,16068,,,0.161314414,2592,16068,,,0.005476724,88,16068,,,0.246701519,3964,16068,,,0.008277321,133,16068,,,0.000622355,10,16068,,,0.040453074,650,16068,,,0.68266119,10969,16068,,,0.000538684,8,14851,0,0.00589427,0.49128703,7894,16068,,,0.397510577,6483,16309,, -30,043,30043,MT,Jefferson County,2024,1,9031.3462,230,34426,6735.408004,11327.2844,0,,,,2,,,,2,,,,2,,,,2,9231.26954,6780.759438,11681.77964,,,,,2,,0.114,,,0.094,0.138,3.223272463,,,2.486889672,4.048441484,4.844458293,,,3.890430024,5.886427729,0.069016153,47,681,0.049977818,0.088054488,0,,,,,,,,,,,,,0.068910256,0.049035515,0.088784998,,,,,,,0.143,,,0.108,0.182,0.296,,,0.233,0.367,8.5,0.108497628,0.057,,,0.189,,,0.15,0.233,0.498800166,6028,12085,,,0.212612764,,,0.173366382,0.258548834,0.366666667,11,30,0.271290675,0.459572241,192.5,24,12470,,,9.0765588,23,2534,5.753759683,13.61929475,,,,,,,,,,,,,9.316770186,5.767227588,14.24167291,,,,,,,0.095088491,908,9549,0.080790619,0.109386363,0.00064154,8,12470,,,1558.75,0.0004678,6,12826,,,2137.666667,0.001247466,16,12826,,,801.625,1112,,,,,,,,,1126,0.45,,,,,,,,,0.45,0.44,,,,,,,,,0.44,0.936915888,8421,8988,0.917451368,0.956380408,0.704372242,1756,2493,0.60110968,0.807634805,0.025335077,155,6118,,,0.092,231,,0.05387234,0.13012766,,,,,,,,,,,,,0.052259887,0.021577681,0.082942093,4.129883872,152211,36856,3.434161492,4.825606253,0.152737752,371,2429,0.096913072,0.208562432,7.217321572,9,12470,,,111.4041842,68,61039,86.50970814,141.2313491,,,,,,,,,,,,,117.0544835,90.52992909,148.9220035,,,,5.1,,,,,1,,,,,0.104611924,465,4445,0.075337288,0.13388656,0.069248292,0.041807569,0.096689014,0.024746907,0.010994576,0.038499237,0.013498313,0.003445927,0.023550699,0.734769004,3992,5433,0.703475937,0.766062072,,,,,,,,,,,,,0.64906238,0.567986483,0.730138278,0.278,,5433,0.217024142,0.338975858,75.85739618,,,74.02699227,77.6878001,,,,,,,,,,,,,75.4634036,73.5395275,77.3872797,,,,402.9880082,230,34426,342.8874607,463.0885557,,,,,,,,,,,,,408.8950869,345.5134423,472.2767315,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.094,,,0.079,0.111,0.151,,,0.129,0.175,0.068,,,0.057,0.082,83,9,10847,,,0.057,690,,,,0.108497628,1237.523947,11406,,,,,,,,,,,,,,,,,,,,,,,,,,0.298,,,0.28,0.314,0.101994942,726,7118,0.085314091,0.118675794,0.076142132,195,2561,0.054695324,0.097588941,0.000311867,4,12826,,,3206.5,0.805128205,94.2,117,,,,,,,,3.248723062,,,,,,,,,3.249562935,3.238416444,,,,,,,,,3.243262148,0.060155961,,,,,-1336.9725,,,,,0.784622877,51556,65708,0.664110604,0.90513515,83697,,,72049,95345,,,,,,,,,,56667,37654.40426,75679.59575,74125,62817.76596,85432.23404,,,,,,,,,,,,,,,,0.233640393,,83697,,,11.81102362,6,508,,,,,,,,,,,,,,,,,,,,,,,,,,46.8361892,27,61039,29.6901263,70.27728015,44.23401432,,,,,,,,,,,,,46.01082649,28.10460815,71.05998981,,,,27.85104605,17,61039,16.22426067,44.5922227,,,,,,,,,,,,,26.60329171,14.88966042,43.87808398,,,,13.01205389,11,84537,6.495570422,23.28215872,,,,,,,,,,,,,14.06182088,7.019610318,25.16048183,,,,,,1300,,,-888,16,0.862539683,8151,9450,,,0.618,,,,,10.53910266,,,,,0.831019013,3890,4681,0.798203782,0.863834244,0.091627172,406,4431,0.060311144,0.122943201,0.890408033,4168,4681,0.852128801,0.928687264,12826,,,,,0.200296273,2569,12826,,,0.233276158,2992,12826,,,0.004989864,64,12826,,,0.019959457,256,12826,,,0.006081397,78,12826,,,0.001091533,14,12826,,,0.032668018,419,12826,,,0.912053641,11698,12826,,,0.002046036,24,11730,0,0.008522263,0.490020271,6285,12826,,,1,12085,12085,, -30,045,30045,MT,Judith Basin County,2024,1,6576.017106,26,5326,3006.973765,12483.32886,1,,,,2,,,,2,,,,2,,,,2,6829.119939,3122.708497,12963.79688,1,,,,2,,0.139,,,0.114,0.164,3.482458155,,,2.666463846,4.324016584,4.833406454,,,3.770894203,5.908721993,,,,,,0,,,,,,,,,,,,,,,,,,,,,,0.172,,,0.134,0.213,0.332,,,0.257,0.41,6.5,0.22164991,0.098,,,0.223,,,0.176,0.27,0.11863569,240,2023,,,0.191139526,,,0.154592336,0.232284483,0.333333333,2,6,0.110000414,0.553214291,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.102920723,148,1438,0.085048383,0.120793064,,0,2044,,,,0,0,2105,,,-2105,,0,2105,,,,2444,,,,,,,,,2444,0.52,,,,,,,,,0.52,0.54,,,,,,,,,0.54,0.94214876,1368,1452,0.917668776,0.966628745,0.70846395,226,319,0.578184429,0.83874347,0.024464832,24,981,,,0.179,73,,0.101553192,0.256446809,,,,,,,,,,0.275362319,0,0.869508612,0.275362319,0.081371577,0.469353061,5.058695652,116350,23000,2.189823803,7.927567502,0.325910931,161,494,0.088357139,0.563464724,0,0,2044,,,110.4639486,11,9958,55.14320513,197.6505173,,,,,,,,,,,,,115.6555567,57.73483721,206.9397383,,,,3.8,,,,,0,,,,,0.131147541,120,915,0.068105759,0.194189323,0.125416204,0.05143228,0.199400129,0,0,0.028647832,0.010928962,0,0.031163585,0.55715757,541,971,0.49684016,0.617474979,,,,,,,,,,,,,0.486772487,0.383045775,0.590499199,0.401,,971,0.257135369,0.544864631,80.82978202,,,76.69914787,84.96041616,,,,,,,,,,,,,80.59507657,76.33686505,84.85328809,,,,308.7041456,26,5326,182.9576413,487.8856404,,,,,,,,,,,,,313.8162322,182.8095198,502.4501876,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.108,,,0.091,0.126,0.163,,,0.139,0.187,0.081,,,0.068,0.096,,,,,,0.098,200,,,,0.22164991,459.2586144,2072,,,,,,,,,,,,,,,,,,,,,,,,,,0.301,,,0.283,0.319,0.107824428,113,1048,0.087569108,0.128079747,0.087378641,36,412,0.055208428,0.119548854,0,0,2105,,,-2105,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1163.46675,,,,,0.749297183,35982,48021,0.608656063,0.889938302,60677,,,53292.14894,68061.85106,,,,,,,,,,,,,63207,49856.3617,76557.6383,,,,,,,,,,,,,,,,0.255286188,,60677,,,,,73,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,200,,,0,0,0.872727273,1344,1540,,,0.407,,,,,3.160549124,,,,,0.768374165,690,898,0.732927814,0.803820516,0.144132653,113,784,0.055557746,0.23270756,0.846325167,760,898,0.824698292,0.867952043,2105,,,,,0.194774347,410,2105,,,0.278859858,587,2105,,,0.000950119,2,2105,,,0.010926366,23,2105,,,0.004750594,10,2105,,,0,0,2105,,,0.028028504,59,2105,,,0.946793349,1993,2105,,,0.001016777,2,1967,0,0.02693647,0.480285036,1011,2105,,,1,2023,2023,, -30,047,30047,MT,Lake County,2024,1,10949.06858,535,84854,9442.317009,12455.82015,0,22205.10695,18092.20278,26318.01112,,,,,2,,,,2,,,,2,8562.873877,6744.323722,10381.42403,,,,,2,,0.156,,,0.132,0.182,3.82683169,,,3.078883017,4.606610679,5.277277229,,,4.397669687,6.158286172,0.081437671,179,2198,0.07000338,0.092871961,0,0.086757991,0.065234086,0.108281896,,,,,,,,,,0.079899075,0.064487261,0.095310889,,,,0.088541667,0.048358171,0.128725162,0.194,,,0.16,0.232,0.347,,,0.289,0.409,8.4,0.019112226,0.106,,,0.232,,,0.194,0.276,0.600950729,18710,31134,,,0.196507973,,,0.161224587,0.234652297,0.541666667,26,48,0.479892234,0.598607854,536.9,172,32033,,,25.2631579,168,6650,21.4429318,29.08338399,34.82587065,27.14847468,44.00039245,,,,,,,43.08390023,25.93932237,67.2808471,18.25028969,14.0240237,23.35004846,,,,22.86585366,12.79784472,37.71374828,0.155477795,3599,23148,0.135222476,0.175733114,0.000749227,24,32033,,,1334.708333,0.000821843,27,32853,,,1216.777778,0.002587283,85,32853,,,386.5058824,2058,,,,,3945,,,,1698,0.39,,,,,0.33,,,,0.4,0.33,,,,,0.13,,,0.33,0.36,0.922951414,20364,22064,0.907157691,0.938745138,0.588722806,3978,6757,0.527177235,0.650268377,0.03031778,436,14381,,,0.242,1690,,0.180042553,0.303957447,0.391674551,0.281785902,0.5015632,,,,,,,0.460405157,0.309616861,0.611193453,0.122796165,0.064668662,0.180923667,5.198328541,115694,22256,4.635937087,5.760719995,0.300084531,2130,7098,0.23909982,0.361069242,9.677520057,31,32033,,,120.7792208,186,154000,103.421535,138.1369066,192.7447427,149.3745281,244.7790099,,,,,,,,,,104.7130861,84.6839425,124.7422298,,,,7.9,,,,,0,,,,,0.145324347,1725,11870,0.123731261,0.166917433,0.115414341,0.094693212,0.13613547,0.02148273,0.013369401,0.029596059,0.01305813,0.004715351,0.021400908,0.69972175,9053,12938,0.662964118,0.736479381,0.635309278,0.610945053,0.659673503,,,,,,,,,,0.694951379,0.646330155,0.743572602,0.25,,12938,0.215860139,0.284139861,76.14498387,,,74.94114015,77.3488276,64.85052492,62.59031647,67.11073336,,,,,,,,,,78.4626582,76.96616627,79.95915012,,,,456.8383272,535,84854,413.5958594,500.080795,1006.777286,860.6176814,1152.936891,,,,,,,,,,355.5074327,308.9870313,402.0278341,,,,89.47116153,28,31295,59.45293707,129.3107396,136.9059261,74.84774375,229.7048809,,,,,,,,,,87.64241893,46.66589693,149.8712055,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.119,,,0.103,0.137,0.167,,,0.145,0.19,0.095,,,0.081,0.11,85,23,27048,,,0.106,3290,,,,0.019112226,549.4000411,28746,,,25.67476492,24,93477,16.45030634,38.20201503,76.00589046,43.44393356,123.4288043,,,,,,,,,,,,,,,,0.327,,,0.314,0.34,0.179916571,2976,16541,0.153703805,0.206129337,0.096271961,674,7001,0.070059195,0.122484727,0.001065352,35,32853,,,938.6571429,0.871513605,256.225,294,,,0.08535688,116,1359,0.033255762,0.137457998,,,,,,,,,,,,,,,,,,,,,0.092209296,,,,,-7152.216163,,,,,0.769009152,40839,53106,0.677013629,0.861004674,57225,,,52349.42553,62100.57447,36827,28301.89362,45352.10638,64023,52125.97872,75920.02128,,,,47813,6041.765957,89584.23404,62731,55832.2766,69629.7234,,,,,,,,,,,,,,,,0.295168196,,57225,,,3.984063745,7,1757,,,6.097132003,13,213215,3.246466004,10.42628142,,,,,,,,,,,,,,,,,,,38.89058094,56,154000,28.95659196,51.13393167,36.36363636,43.55178343,23.81016527,73.07249228,,,,,,,,,,34.5004388,22.92529103,49.8627399,,,,27.27272727,42,154000,19.65578294,36.8648044,28.76787204,13.79531284,52.90514094,,,,,,,,,,27.92348964,18.55495608,40.35721717,,,,24.38852801,52,213215,18.21451924,31.98230975,31.11387679,17.41420065,51.31760811,,,,,,,,,,22.30617017,15.15596041,31.66182803,,,,27.35294118,,3400,,,5,88,0.726184757,16626,22895,,,0.445,,,,,20.02711212,,,,,0.719419087,8669,12050,0.69606291,0.742775264,0.132995285,1495,11241,0.111399412,0.154591159,0.819917012,9880,12050,0.797718275,0.84211575,32853,,,,,0.216996926,7129,32853,,,0.239430189,7866,32853,,,0.004261407,140,32853,,,0.236690713,7776,32853,,,0.008522814,280,32853,,,0.001461054,48,32853,,,0.047514687,1561,32853,,,0.654582534,21505,32853,,,0.008079386,241,29829,0.002616252,0.01354252,0.505859435,16619,32853,,,0.821288623,25570,31134,, -30,049,30049,MT,Lewis and Clark County,2024,1,6958.120134,953,196591,6237.524525,7678.715743,0,15047.94789,8601.202415,24436.92462,1,,,,2,,,,2,,,,2,6780.965936,6025.499374,7536.432497,,,,,2,,0.117,,,0.096,0.14,3.206350872,,,2.566174799,3.897081525,4.560859275,,,3.772136779,5.355907646,0.07828333,394,5033,0.070862099,0.085704561,0,,,,,,,,,,0.079812207,0.043417421,0.116206992,0.077384923,0.069575246,0.0851946,,,,0.094339623,0.038693759,0.149985487,0.133,,,0.101,0.17,0.305,,,0.257,0.355,9,0.042666426,0.068,,,0.192,,,0.156,0.232,0.73564595,52211,70973,,,0.216668009,,,0.18404258,0.253746901,0.315789474,12,38,0.230581269,0.401886528,243.7,176,72223,,,13.45799688,190,14118,11.54435929,15.37163448,58.44155844,34.63617137,92.36285801,,,,,,,24.42528736,14.22862999,39.10725117,11.49702525,9.612623327,13.38142716,,,,20.92050209,10.03219393,38.47354821,0.085277681,4883,57260,0.073362787,0.097192574,0.000941528,68,72223,,,1062.102941,0.000866833,64,73832,,,1153.625,0.005580236,412,73832,,,179.2038835,1741,,,,,1159,,,,1696,0.48,,,,,0.39,,,,0.48,0.49,,,,,0.26,0.54,0.25,0.35,0.49,0.950298054,48144,50662,0.938829384,0.961766724,0.770565193,13770,17870,0.71616815,0.824962236,0.023691545,918,38748,,,0.099,1505,,0.057297872,0.140702128,0.568047337,0.323949421,0.812145254,,,,0.149253731,0,0.584368426,0.189655172,0.06986714,0.309443205,0.096141879,0.061242073,0.131041686,4.144523944,139600,33683,3.789474324,4.499573563,0.223016819,3368,15102,0.168918489,0.277115149,20.07670687,145,72223,,,87.84092181,306,348357,77.99872053,97.6831231,,,,,,,,,,,,,90.50915341,80.03768406,100.9806228,,,,8.7,,,,,1,,,,,0.108245614,3085,28500,0.091111741,0.125379488,0.098377997,0.081094026,0.115661968,0.008245614,0.004126762,0.012364466,0.006491228,0.002152246,0.01083021,0.698085911,25092,35944,0.671490119,0.724681704,,,,,,,,,,0.630618893,0.494600007,0.766637779,0.715357295,0.69222215,0.73849244,0.121,,35944,0.103448266,0.138551734,78.38315086,,,77.74215316,79.02414857,,,,,,,,,,82.3812947,75.79036967,88.97221973,78.53394232,77.87125517,79.19662946,,,,341.8282058,953,196591,318.5195523,365.1368593,742.6815927,514.3285928,1037.823085,,,,,,,,,,331.7050147,307.809555,355.6004744,,,,49.62406015,33,66500,34.15891966,69.69063048,,,,,,,,,,,,,50.53849639,33.84642421,72.58171106,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.096,,,0.081,0.113,0.147,,,0.125,0.173,0.072,,,0.061,0.085,61.9,38,61351,,,0.068,4760,,,,0.042666426,2704.838101,63395,,,11.32695248,24,211884,7.257392184,16.85360744,,,,,,,,,,,,,11.4276216,7.161629616,17.30155644,,,,0.284,,,0.267,0.3,0.094914851,3985,41985,0.080616978,0.109212723,0.06086195,973,15987,0.044181099,0.077542801,0.001611767,119,73832,,,620.4369748,0.867092867,644.25,743,,,0.059399878,194,3266,0.020294832,0.098504924,,,,,,,,,,,3.097061834,,,,,,,,2.717694733,3.114326522,0.034293201,,,,,-1444.056067,,,,,0.838853638,51691,61621,0.772615462,0.905091813,72491,,,68319.59575,76662.40426,40296,16721.19149,63870.80851,94917,56147.12766,133686.8723,58214,39079.87234,77348.12766,63056,43296.34043,82815.65957,73405,68965.51064,77844.48936,,,,,,,,,,,57.60472034,,,,,0.286118277,,72491,,,8.822788001,35,3967,,,3.733998262,18,482057,2.213004018,5.901327077,,,,,,,,,,,,,3.641503122,2.081433672,5.913572929,,,,25.2939484,86,348357,20.0870461,31.43806836,24.6873179,,,,,,,,,,,,,25.97695455,20.43252262,32.56233747,,,,19.23314301,67,348357,14.90542166,24.42541176,,,,,,,,,,,,,20.18322585,15.54354327,25.77352882,,,,13.27643826,64,482057,10.22447523,16.95371527,,,,,,,,,,,,,14.1108246,10.81868831,18.0894403,,,,25.73529412,,6800,,,32,143,0.788894074,42265,53575,,,0.687,,,,,77.259161,,,,,0.705194677,21354,30281,0.687975073,0.72241428,0.105961157,3148,29709,0.088169843,0.12375247,0.870942175,26373,30281,0.853304011,0.888580339,73832,,,,,0.20977354,15488,73832,,,0.203218117,15004,73832,,,0.004577961,338,73832,,,0.021074873,1556,73832,,,0.008952758,661,73832,,,0.000907466,67,73832,,,0.039467981,2914,73832,,,0.905176617,66831,73832,,,0.001109878,75,67575,0,0.002896385,0.500880377,36981,73832,,,0.261972863,18593,70973,, -30,051,30051,MT,Liberty County,2024,0,,,,,,2,,,,2,,,,2,,,,2,,,,2,,,,2,,,,2,,0.191,,,0.153,0.231,4.281930544,,,3.321520888,5.410042928,5.275714732,,,4.157852481,6.541170125,0.065088757,11,169,0.02789664,0.102280875,1,,,,,,,,,,,,,0.060606061,0.024198129,0.097013992,,,,,,,0.228,,,0.174,0.283,0.375,,,0.297,0.456,6.2,0.192086039,0.126,,,0.283,,,0.225,0.345,0.447677386,877,1959,,,0.189101963,,,0.151731244,0.231004979,1,1,1,,,0,0,1946,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.192178018,285,1483,0.162390784,0.221965252,0.000513875,1,1946,,,1946,0.001014199,2,1972,,,986,,0,1972,,,,302,,,,,,,,,308,0.43,,,,,,,,,0.43,0.35,,,,,,,,,0.35,0.765957447,1044,1363,0.670239935,0.861674959,0.485483871,301,620,0.297279292,0.67368845,0.023397762,23,983,,,0.247,97,,0.142148936,0.351851064,,,,,,,,,,,,,0.347474748,0.187471276,0.507478219,4.986906786,108550,21767,3.172956449,6.800857123,0.188212928,99,526,0.060358448,0.316067407,25.69373073,5,1946,,,,,,,,,,,,,,,,,,,,,,,,,,4.8,,,,,0,,,,,0.243243243,225,925,0.152466553,0.334019933,0.09771987,0.030447113,0.164992627,0,0,0.028338125,0.151351351,0.073207651,0.229495052,0.472409152,351,743,0.364282646,0.580535659,,,,,,,,,,,,,0.455172414,0.334625644,0.575719184,0.18,,743,0.067601434,0.292398567,89.37061563,,,84.56986202,94.17136923,,,,,,,,,,,,,89.38021957,84.54000681,94.22043234,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.138,,,0.114,0.164,0.188,,,0.16,0.218,0.098,,,0.082,0.114,0,0,1645,,,0.126,260,,,,0.192086039,449.2892445,2339,,,,,,,,,,,,,,,,,,,,,,,,,,0.321,,,0.304,0.341,0.197392924,212,1074,0.162839732,0.231946115,0.179310345,78,435,0.122118856,0.236501834,0.002028398,4,1972,,,493,,,,,,,,,,,3.551639147,,,,,,,,,3.540637489,3.156287877,,,,,,,,,3.211552567,,,,,,,,,,,0.789367553,43060,54550,0.314904751,1.263830354,53601,,,45659.7234,61542.2766,,,,,,,,,,,,,48906,37523.70213,60288.29787,,,,,,,,,,,,,,,,0.256207907,,53601,,,,,96,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,200,,,-888,9,0.568503937,1083,1905,,,0.484,,,,,7.309017245,,,,,0.624123422,445,713,0.532360756,0.715886089,0.148086523,89,601,0.055633506,0.240539539,0.67601683,482,713,0.595881108,0.756152553,1972,,,,,0.222616633,439,1972,,,0.237322515,468,1972,,,0.005578093,11,1972,,,0.010649087,21,1972,,,0.002535497,5,1972,,,0.000507099,1,1972,,,0.012677485,25,1972,,,0.941176471,1856,1972,,,0.002714441,5,1842,0,0.030641258,0.507099392,1000,1972,,,1,1959,1959,, -30,053,30053,MT,Lincoln County,2024,1,9151.937256,393,53931,7374.536662,10929.33785,0,,,,2,,,,2,,,,2,,,,2,9277.687799,7400.280323,11155.09528,,,,,2,,0.167,,,0.141,0.197,4.072727916,,,3.277084754,4.996117437,5.77481285,,,4.784231446,6.845763674,0.069846678,82,1174,0.055266186,0.08442717,0,,,,,,,,,,,,,0.066420664,0.051596553,0.081244775,,,,,,,0.204,,,0.164,0.247,0.332,,,0.272,0.4,7.9,0.027128231,0.128,,,0.264,,,0.219,0.316,0.627331402,12344,19677,,,0.188156008,,,0.154279144,0.226386766,0.4,8,20,0.28271818,0.510327518,185.1,38,20525,,,19.58679903,73,3727,15.35292378,24.62745913,,,,,,,,,,,,,23.24774462,18.01668276,29.52381389,,,,,,,0.134235245,1915,14266,0.115171415,0.153299074,0.000730816,15,20525,,,1368.333333,0.000696864,15,21525,,,1435,0.002555168,55,21525,,,391.3636364,1710,,,,,9541,,,,1651,0.35,,,,,,,,,0.35,0.19,,,,,0.25,,,,0.19,0.923890609,14324,15504,0.904167677,0.943613541,0.521207178,1917,3678,0.432923679,0.609490677,0.047673883,414,8684,,,0.243,900,,0.142914894,0.343085106,,,,,,,,,,0.07239819,0,0.268696542,0.32209377,0.197332902,0.446854638,4.760083838,102199,21470,3.968333518,5.551834158,0.189655172,682,3596,0.101469598,0.277840747,15.590743,32,20525,,,105.9131512,106,100082,85.75024972,126.0760527,,,,,,,,,,,,,112.4445886,90.83343443,134.0557428,,,,11.6,,,,,1,,,,,0.173433875,1495,8620,0.133350706,0.213517044,0.152961877,0.111449506,0.194474248,0.008700696,0.002067856,0.015333536,0.015661253,0.00718409,0.024138416,0.64,4704,7350,0.591298222,0.688701778,,,,,,,,,,,,,0.682910875,0.631422336,0.734399414,0.175,,7350,0.124267172,0.225732828,77.03456651,,,75.68438582,78.38474719,,,,,,,,,,,,,76.60126607,75.19211731,78.01041483,,,,411.2226928,393,53931,361.4822968,460.9630889,,,,,,,,,,,,,422.1361264,369.7098326,474.5624202,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.125,,,0.106,0.145,0.179,,,0.155,0.205,0.09,,,0.076,0.106,44.5,8,17971,,,0.128,2520,,,,0.027128231,534.0734744,19687,,,,,,,,,,,,,,,,,,,,,,,,,,0.312,,,0.297,0.327,0.146602763,1560,10641,0.122772976,0.17043255,0.098981457,379,3829,0.069194223,0.128768691,0.001347271,29,21525,,,742.2413793,0.873262032,163.3,187,,,,,,,,3.276594204,,,,,,,,,3.271817182,3.373568395,,,,,,,,,3.395876725,0.032963974,,,,,-5804.56192,,,,,0.723215543,35959,49721,0.567246464,0.879184622,48432,,,41402.21277,55461.78723,,,,,,,,,,59476,10615.40426,108336.5957,45891,40706.82979,51075.17021,,,,,,,,,,,,,,,,0.336698877,,48432,,,4.459308807,4,897,,,,,,,,,,,,,,,,,,,,,,,,,,30.66208025,30,100082,19.64577338,45.62274493,29.97542016,,,,,,,,,,,,,33.6394915,21.32455198,50.47575408,,,,28.97623948,29,100082,19.40584235,41.61471337,,,,,,,,,,,,,31.35474105,20.99876218,45.03063838,,,,25.29029648,35,138393,17.61561813,35.17268024,,,,,,,,,,,,,24.97171173,17.08063234,35.25260609,,,,26.66666667,,1800,,,8,40,0.732813475,11747,16030,,,0.422,,,,,17.64709354,,,,,0.757824814,6731,8882,0.720158601,0.795491028,0.145922747,1224,8388,0.105516443,0.186329051,0.841814907,7477,8882,0.809418072,0.874211741,21525,,,,,0.176538908,3800,21525,,,0.299744483,6452,21525,,,0.00445993,96,21525,,,0.013751452,296,21525,,,0.005110337,110,21525,,,0.001207898,26,21525,,,0.036747968,791,21525,,,0.916190476,19721,21525,,,0.00492713,95,19281,0,0.011695678,0.497746806,10714,21525,,,0.779387102,15336,19677,, -30,055,30055,MT,McCone County,2024,1,5704.611615,20,4429,2093.491922,12416.53787,1,,,,2,,,,2,,,,2,,,,2,,,,2,,,,2,,0.128,,,0.107,0.153,3.339521639,,,2.606329801,4.101000181,4.834653308,,,3.836669149,5.847093285,,,,,,0,,,,,,,,,,,,,,,,,,,,,,0.164,,,0.129,0.202,0.333,,,0.26,0.412,8.8,0.127866484,0.036,,,0.216,,,0.172,0.264,0.124349335,215,1729,,,0.211028349,,,0.172446521,0.253808715,0.4,2,5,0.149190828,0.619170557,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.111650485,138,1236,0.093778145,0.129522826,0,0,1718,,,-1718,0,0,1709,,,-1709,,0,1709,,,,1052,,,,,,,,,1052,0.39,,,,,,,,,0.39,0.33,,,,,,,,,0.33,0.969402985,1299,1340,0.968119062,0.970686909,0.708708709,236,333,0.529098243,0.888319174,0.018404908,18,978,,,0.161,52,,0.091893617,0.230106383,,,,,,,,,,,,,0.022222222,0,0.087500193,3.48608155,124481,35708,2.714972918,4.257190183,0.077966102,23,295,0,0.156115406,17.46216531,3,1718,,,142.4670545,12,8423,73.61480599,248.8612733,,,,,,,,,,,,,151.4004542,78.23082398,264.4661248,,,,4.3,,,,,0,,,,,0.128048781,105,820,0.073663882,0.182433679,0.08902439,0.022606659,0.155442121,0.035365854,0,0.072566781,0.012195122,0,0.0380097,0.646017699,584,904,0.58311231,0.708923089,,,,,,,,,,,,,0.614518148,0.514233063,0.714803232,0.287,,904,0.181514492,0.392485508,81.01817393,,,76.52092484,85.51542301,,,,,,,,,,,,,,,,,,,274.9110139,20,4429,153.8656076,453.4239102,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.103,,,0.088,0.12,0.158,,,0.135,0.182,0.076,,,0.064,0.09,0,0,1474,,,0.036,60,,,,0.127866484,221.7204825,1734,,,,,,,,,,,,,,,,,,,,,,,,,,0.302,,,0.286,0.318,0.119774011,106,885,0.098327203,0.14122082,0.092140921,34,369,0.063545177,0.120736666,0.001170275,2,1709,,,854.5,,,,,,,,,,,2.932281095,,,,,,,,,,3.05325359,,,,,,,,,,,,,,,-1269.642,,,,,0.759745455,41786,55000,0.554081904,0.965409005,59086,,,51672.55319,66499.44681,,,,,,,,,,,,,79511,63769.04255,95252.95745,,,,,,,,,,,,,,,,0.25075314,,59086,,,,,92,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,200,,,0,-888,0.786062718,1128,1435,,,0.468,,,,,5.498927463,,,,,0.891304348,697,782,0.82448572,0.958122975,0.046113307,35,759,0,0.10387309,0.83887468,656,782,0.759394544,0.918354817,1709,,,,,0.191925102,328,1709,,,0.293739029,502,1709,,,0.005851375,10,1709,,,0.009947338,17,1709,,,0.004095963,7,1709,,,0,0,1709,,,0.018139263,31,1709,,,0.941486249,1609,1709,,,0.004219409,7,1659,0,0.036003998,0.482738444,825,1709,,,1,1729,1729,, -30,057,30057,MT,Madison County,2024,1,5174.317818,113,23641,2859.733317,7488.902319,1,,,,2,,,,2,,,,2,,,,2,5625.911933,3085.990967,8165.832899,1,,,,2,,0.117,,,0.096,0.14,3.044045792,,,2.355566786,3.920489877,4.440735058,,,3.525991602,5.515398823,0.075268817,35,465,0.051289054,0.099248581,0,,,,,,,,,,,,,0.078886311,0.053437067,0.104335555,,,,,,,0.144,,,0.111,0.181,0.308,,,0.246,0.377,8.5,0.098616474,0.065,,,0.198,,,0.161,0.241,0.299431752,2582,8623,,,0.199781225,,,0.162192326,0.241699108,0.333333333,5,15,0.193378406,0.471634149,112.1,10,8917,,,8.352315869,11,1317,4.169445989,14.94460024,,,,,,,,,,,,,8.547008547,4.098622817,15.71825303,,,,,,,0.13296,831,6250,0.11389617,0.15202383,0.000560727,5,8917,,,1783.4,0.000215866,2,9265,,,4632.5,0.000539665,5,9265,,,1853,1634,,,,,,,,,1604,0.42,,,,,,,,,0.42,0.22,,,,,,,,,0.22,0.963890088,6700,6951,0.953243678,0.974536498,0.666666667,1230,1845,0.539818289,0.793515044,0.022162782,116,5234,,,0.129,182,,0.075382979,0.182617021,,,,,,,,,,,,,0.070364238,0.04315773,0.097570747,3.219586038,110596,34351,2.588650338,3.850521738,0.041315991,54,1307,0.014879637,0.067752345,12.33598744,11,8917,,,85.21614961,37,43419,60.00003355,117.4592371,,,,,,,,,,,,,92.63663904,65.22474291,127.6874043,,,,3.9,,,,,0,,,,,0.130904184,485,3705,0.094726645,0.167081722,0.108571429,0.071465066,0.145677791,0.014844804,0.004684348,0.02500526,0.010796221,0.001360538,0.020231905,0.624179707,2473,3962,0.546682963,0.701676451,,,,,,,,,,,,,0.65510901,0.59901136,0.71120666,0.414,,3962,0.326015146,0.501984854,80.49065812,,,78.52306736,82.45824888,,,,,,,,,,,,,79.92117074,77.84092346,82.00141803,,,,240.2062321,113,23641,185.5753916,294.8370727,,,,,,,,,,,,,254.0524205,194.8685631,313.236278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.096,,,0.081,0.111,0.147,,,0.125,0.171,0.07,,,0.059,0.082,88.1,7,7947,,,0.065,550,,,,0.098616474,758.4593004,7691,,,,,,,,,,,,,,,,,,,,,,,,,,0.284,,,0.267,0.302,0.136764404,667,4877,0.114126107,0.159402702,0.120689655,175,1450,0.084944974,0.156434336,0.000539665,5,9265,,,1853,,,,,,,,,,,3.316074499,,,,,,,,,3.315953496,3.067402767,,,,,,,,,3.047575897,0.089656382,,,,,633.506,,,,,0.728298504,41438,56897,0.53899287,0.917604139,72487,,,62142.48936,82831.51064,,,,,,,,,,48260,43839.57447,52680.42553,64133,58320.91489,69945.08511,,,,,,,,,,,,,,,,0.246140687,,72487,,,3.03030303,1,330,,,,,,,,,,,,,,,,,,,,,,,,,,17.0523049,11,43419,7.361974918,33.5998386,25.33453097,,,,,,,,,,,,,18.23575875,7.872906291,35.93171446,,,,,,,,,,,,,,,,,,,,,,,,,,,16.8753586,10,59258,8.092390388,31.0343853,,,,,,,,,,,,,18.24784219,8.750549618,33.55843149,,,,,,600,,,-888,8,0.867712046,6087,7015,,,0.376,,,,,2.124029561,,,,,0.776060691,2762,3559,0.739683446,0.812437937,0.107142857,357,3332,0.068317809,0.145967906,0.855858387,3046,3559,0.814714006,0.897002768,9265,,,,,0.153480842,1422,9265,,,0.298327037,2764,9265,,,0.004749056,44,9265,,,0.008526713,79,9265,,,0.005504587,51,9265,,,0.000755532,7,9265,,,0.053211009,493,9265,,,0.909552078,8427,9265,,,0,0,8430,0,0.008480351,0.481165677,4458,9265,,,1,8623,8623,, -30,059,30059,MT,Meagher County,2024,1,4205.263208,30,4985,2099.252242,7524.377493,1,,,,2,,,,2,,,,2,,,,2,4367.237144,2094.259963,8031.5046,1,,,,2,,0.129,,,0.106,0.155,3.38526334,,,2.605617654,4.265250428,4.918185884,,,3.866611581,6.073251275,0.086614173,11,127,0.03769537,0.135532977,1,,,,,,,,,,,,,0.084033613,0.034185483,0.133881744,,,,,,,0.162,,,0.126,0.204,0.33,,,0.255,0.413,5,0.410468668,0.077,,,0.217,,,0.172,0.269,0.776855215,1497,1927,,,0.194770542,,,0.156262082,0.237386829,0.333333333,1,3,0.04092282,0.635504717,203.7,4,1964,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.146905295,197,1341,0.124266997,0.169543592,0.00101833,2,1964,,,982,0,0,2013,,,-2013,0.000993542,2,2013,,,1006.5,1292,,,,,,,,,1292,0.25,,,,,,,,,0.25,0.13,,,,,,,,,0.13,0.972483222,1449,1490,0.942598161,1,0.641860465,138,215,0.335491005,0.948229925,0.022637795,23,1016,,,0.195,64,,0.110404255,0.279595745,,,,,,,,,,,,,0.171428571,0.024642853,0.31821429,4.574392067,125471,27429,0,9.672048607,0,0,298,0,0.06219874,0,0,1964,,,,,,,,,,,,,,,,,,,,,,,,,,3.7,,,,,0,,,,,0.103947368,79,760,0.017301965,0.190592772,0.096052632,0,0.195965998,0,0,0.034490482,0,0,0.024388453,0.686196624,691,1007,0.588666559,0.783726689,,,,,,,,,,,,,0.608974359,0.512005713,0.705943005,0.219,,1007,0.109201815,0.328798185,83.30592236,,,79.12185209,87.48999263,,,,,,,,,,,,,82.8904614,78.71176117,87.06916163,,,,291.5559195,30,4985,182.7165425,441.419166,,,,,,,,,,,,,297.0955766,183.9068445,454.142148,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.103,,,0.087,0.121,0.158,,,0.135,0.183,0.077,,,0.065,0.091,,,,,,0.077,150,,,,0.410468668,776.1962502,1891,,,,,,,,,,,,,,,,,,,,,,,,,,0.315,,,0.296,0.333,0.156122449,153,980,0.128718194,0.183526704,0.125326371,48,383,0.084815733,0.165837009,0.001490313,3,2013,,,671,,,,,,,,,,,,,,,,,,,,,2.973790602,,,,,,,,,3.051758534,,,,,,-605.4785,,,,,0.8350435,43864,52529,0.253180295,1.416906705,53724,,,46617.95745,60830.04255,,,,,,,,,,135833,31265.51064,240400.4894,55634,45173.91489,66094.08511,,,,,,,,,,,,,,,,0.297036706,,53724,,,,,150,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,200,,,0,-888,0.776223776,1110,1430,,,0.308,,,,,,,,,,0.853717026,712,834,0.760144512,0.947289541,0.123056995,95,772,0.003057366,0.243056624,0.775779377,647,834,0.665853955,0.885704798,2013,,,,,0.181818182,366,2013,,,0.317933433,640,2013,,,0.004470939,9,2013,,,0.012916046,26,2013,,,0.004470939,9,2013,,,0,0,2013,,,0.022354695,45,2013,,,0.944361649,1901,2013,,,0,0,1890,0,0.027738377,0.476900149,960,2013,,,1,1927,1927,, -30,061,30061,MT,Mineral County,2024,1,10914.12191,113,12198,7043.761729,14784.4821,0,,,,2,,,,2,,,,2,,,,2,10649.85169,6590.572275,14709.1311,,,,,2,,0.149,,,0.122,0.179,3.729254798,,,2.907400042,4.617800206,5.105545542,,,4.082297288,6.199170467,0.092936803,25,269,0.058239752,0.127633854,0,,,,,,,,,,,,,0.089068826,0.053545531,0.124592121,,,,,,,0.186,,,0.143,0.231,0.372,,,0.297,0.455,7.6,0.090893313,0.11,,,0.234,,,0.186,0.283,0.942227122,4273,4535,,,0.187836652,,,0.151432047,0.229262305,0.277777778,5,18,0.152183671,0.410166986,82.3,4,4860,,,13.90820584,10,719,6.669525308,25.57768573,,,,,,,,,,,,,,,,,,,,,,0.130460105,448,3434,0.110204786,0.150715424,0.000411523,2,4860,,,2430,0.000197707,1,5058,,,5058,0.002965599,15,5058,,,337.2,1021,,,,,,,,,1038,0.33,,,,,,,,,0.34,0.31,,,,,,,,,0.31,0.930904886,3220,3459,0.904892641,0.956917131,0.647260274,567,876,0.522580896,0.771939652,0.050993022,95,1863,,,0.177,169,,0.100744681,0.253255319,,,,,,,,,,,,,0.236702128,0.139712513,0.333691742,3.67248252,112400,30606,2.692474726,4.652490314,0.126819127,122,962,0.064570433,0.189067821,0,0,4860,,,111.7468264,25,22372,72.31665407,164.9603598,,,,,,,,,,,,,117.3938564,75.21645889,174.6727529,,,,7.5,,,,,1,,,,,0.096103896,185,1925,0.060486295,0.131721498,0.087700535,0.049243479,0.12615759,0.017142857,0.002490423,0.031795291,0.002077922,0,0.009321602,0.685714286,1296,1890,0.613726919,0.757701652,,,,,,,,,,,,,0.626046512,0.518003476,0.734089547,0.433,,1890,0.339819742,0.526180258,76.43944982,,,73.12719472,79.75170491,,,,,,,,,,,,,76.51553558,73.0385756,79.99249556,,,,533.1013356,113,12198,415.381112,650.8215593,,,,,,,,,,,,,530.6356226,409.1457227,652.1255226,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.116,,,0.098,0.137,0.166,,,0.141,0.192,0.087,,,0.072,0.102,,,,,,0.11,490,,,,0.090893313,383.8424589,4223,,,,,,,,,,,,,,,,,,,,,,,,,,0.333,,,0.314,0.35,0.142630745,360,2524,0.117609468,0.167652021,0.097046414,92,948,0.06725918,0.126833648,0.001383946,7,5058,,,722.5714286,,,,,,,,,,,2.912019821,,,,,,,,,2.84456465,3.000542136,,,,,,,,,2.956716374,0.05385143,,,,,-3443.161733,,,,,0.868671407,44833,51611,0.523277376,1.214065438,55979,,,48374.91489,63583.08511,,,,,,,,,,,,,55841,50551.97872,61130.02128,,,,,,,,,,,,,,,,0.253487915,,55979,,,,,243,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,35.70617068,11,30807,17.82439175,63.8882024,,,,,,,,,,,,,39.12363067,19.53037547,70.00298234,,,,25,,400,,,0,10,0.732285714,2563,3500,,,0.421,,,,,15.46342764,,,,,0.802694899,1668,2078,0.768156972,0.837232826,0.105552776,211,1999,0.060570087,0.150535466,0.782001925,1625,2078,0.715722715,0.848281134,5058,,,,,0.192566232,974,5058,,,0.285092922,1442,5058,,,0.005535785,28,5058,,,0.022340846,113,5058,,,0.008303677,42,5058,,,0.000790826,4,5058,,,0.036575722,185,5058,,,0.899367339,4549,5058,,,0,0,4346,0,0.012062939,0.484578885,2451,5058,,,1,4535,4535,, -30,063,30063,MT,Missoula County,2024,1,6471.758952,1338,338843,5945.789362,6997.728543,0,18163.35913,13144.91306,24465.92555,,,,,2,,,,2,7926.101053,5024.468159,11893.04326,1,6089.554471,5562.717058,6616.391884,,,,,2,,0.128,,,0.105,0.152,3.477584239,,,2.807270509,4.274598888,4.918457973,,,4.152962303,5.783328125,0.072640166,561,7723,0.066851538,0.078428793,0,0.120300752,0.081206174,0.15939533,,,,,,,0.063013699,0.038085337,0.087942061,0.069549441,0.063418636,0.075680245,,,,0.110671937,0.072013386,0.149330487,0.147,,,0.112,0.183,0.315,,,0.27,0.362,8.6,0.049669449,0.083,,,0.172,,,0.141,0.206,0.916894218,108122,117922,,,0.254938867,,,0.221493869,0.291788898,0.382352941,26,68,0.321639472,0.441917434,397.4,475,119533,,,7.954767011,204,25645,6.863154633,9.046379389,23.94526796,14.82249827,36.60288567,,,,,,,13.65461847,7.95431845,21.86236692,6.937378596,5.827166799,8.047590393,,,,12.21498371,6.836633659,20.14675804,0.089647681,8748,97582,0.077732787,0.101562575,0.001154493,138,119533,,,866.1811594,0.000908783,110,121041,,,1100.372727,0.006146678,744,121041,,,162.6895161,1630,,,,,2336,,2471,,1582,0.46,,,,,0.31,0.34,,0.45,0.46,0.52,,,,,0.36,0.55,0.49,0.3,0.53,0.963837138,78119,81050,0.957371786,0.970302489,0.767922584,26822,34928,0.726194755,0.809650413,0.026348827,1763,66910,,,0.099,2086,,0.054914894,0.143085106,0.464765101,0.198936449,0.730593753,,,,,,,0.059836066,0,0.135678411,0.081206497,0.055992038,0.106420956,4.444308154,130436,29349,4.107806479,4.780809828,0.205809014,4457,21656,0.170648519,0.240969508,11.3776112,136,119533,,,79.56515549,475,596995,72.40978406,86.72052691,154.1155867,96.58341767,233.3328504,,,,,,,67.25272614,36.7676912,112.8386469,79.64796728,72.05763857,87.238296,,,,8.5,,,,,1,,,,,0.164285714,8165,49700,0.1464438,0.182127629,0.141600081,0.122794528,0.160405634,0.016901409,0.010701958,0.023100859,0.012273642,0.006786753,0.017760531,0.715879113,46404,64821,0.696465559,0.735292668,0.698388335,0.555544056,0.841232613,,,,,,,0.61407671,0.493542281,0.734611139,0.733317849,0.713445175,0.753190522,0.146,,64821,0.128774838,0.163225162,78.8969568,,,78.39803265,79.39588096,67.60634702,64.24935707,70.96333697,104.692005,75.57126562,133.8127443,,,,80.80493553,74.52595739,87.08391367,79.15694639,78.64986435,79.66402842,,,,319.1954865,1338,338843,301.3408759,337.050097,812.6188793,615.4696035,1052.842013,,,,,,,338.727107,223.2232979,492.8301569,310.3502307,292.0261915,328.6742699,,,,47.1122136,49,104007,34.85387498,62.28484486,,,,,,,,,,,,,37.88618073,26.07910356,53.20628368,,,,5.200405885,41,7884,3.731901049,7.054937794,,,,,,,,,,,,,4.576321228,3.109388246,6.49572269,,,,,,,0.099,,,0.084,0.115,0.157,,,0.135,0.181,0.074,,,0.063,0.087,126.6,132,104270,,,0.083,9790,,,,0.049669449,5428.821155,109299,,,14.13670471,51,360763,10.5257052,18.58715594,,,,,,,,,,,,,13.12467188,9.459109064,17.7407436,,,,0.265,,,0.249,0.279,0.10023307,7612,75943,0.085935197,0.114530942,0.055075784,1250,22696,0.040777912,0.069373657,0.001891921,229,121041,,,528.5633188,0.897765641,904.05,1007,,,0.051434065,321,6241,0.018765356,0.084102775,3.303356597,,,,,,3.004194296,,3.042514116,3.36064468,3.175124748,,,,,,,,2.977761185,3.23318398,0.043458273,,,,,539.2688856,,,,,0.840256232,46041,54794,0.782052817,0.898459648,68210,,,62851.87234,73568.12766,59052,43600.76596,74503.23404,46680,32883.74468,60476.25532,87879,48768.3617,126989.6383,63710,46161.74468,81258.25532,67523,65060.19149,69985.80851,,,,,,,,,,,83.70749283,,,,,0.307535552,,68210,,,7.528011205,43,5712,,,3.62622778,30,827306,2.446600656,5.176665635,,,,,,,,,,,,,3.254585915,2.085274606,4.84256586,,,,21.296653,135,596995,17.60868948,24.98461652,22.61325472,,,,,,,,,,,,,20.71874051,16.89276605,24.54471496,,,,17.75559259,106,596995,14.37542441,21.13576078,,,,,,,,,,,,,17.51125522,14.13384299,21.45247069,,,,13.29616853,110,827306,10.81139827,15.78093879,54.75633431,27.3341648,97.97420734,,,,,,,,,,12.34030493,9.93564375,15.15115991,,,,24.27184466,,10300,,,55,195,0.750603675,71495,95250,,,0.706,,,,,112.4558968,,,,,0.588193316,29672,50446,0.571053788,0.605332843,0.136549188,6757,49484,0.121127305,0.151971071,0.914938746,46155,50446,0.90505914,0.924818353,121041,,,,,0.17755967,21492,121041,,,0.172916615,20930,121041,,,0.004543915,550,121041,,,0.027073471,3277,121041,,,0.019555357,2367,121041,,,0.001074016,130,121041,,,0.038581968,4670,121041,,,0.884055816,107007,121041,,,0.004345556,491,112989,0.001399903,0.007291208,0.495418908,59966,121041,,,0.252819661,29813,117922,, -30,065,30065,MT,Musselshell County,2024,1,9828.302781,104,12784,6275.323102,13381.28246,0,,,,2,,,,2,,,,2,,,,2,10322.81306,6338.040075,14307.58605,,,,,2,,0.152,,,0.127,0.179,3.665543495,,,2.949741154,4.610916053,4.848715554,,,3.963783188,6.001334194,0.088135593,26,295,0.055784731,0.120486456,0,,,,,,,,,,,,,0.083636364,0.050915767,0.116356961,,,,,,,0.184,,,0.145,0.227,0.339,,,0.269,0.42,7.7,0.127863469,0.088,,,0.249,,,0.203,0.303,0.513530655,2429,4730,,,0.187719986,,,0.152221624,0.231975644,0.2,1,5,0.015594715,0.47750127,143,7,4896,,,18.84700665,17,902,10.97907591,30.17588339,,,,,,,,,,,,,20.5655527,11.7549903,33.39716915,,,,,,,0.126074499,440,3490,0.107010669,0.145138328,0.000204248,1,4896,,,4896,,0,5197,,,,0.000384837,2,5197,,,2598.5,1768,,,,,,,,,1779,0.36,,,,,,,,,0.36,0.3,,,,,,,,,0.3,0.911159263,3364,3692,0.881754674,0.940563853,0.606481482,524,864,0.464221796,0.748741168,0.028862479,68,2356,,,0.23,234,,0.129914894,0.330085106,,,,,,,,,,,,,0.125326371,0.020089101,0.230563641,3.814418159,95452,25024,2.714106103,4.914730214,0.174482007,160,917,0.074458389,0.274505624,8.169934641,4,4896,,,153.2697548,36,23488,107.348252,212.1899459,,,,,,,,,,,,,170.1001701,119.1360679,235.490335,,,,4.3,,,,,0,,,,,0.119909502,265,2210,0.075492661,0.164326344,0.082110092,0.041246492,0.122973692,0.031674208,0.004155454,0.059192963,0.013574661,0,0.028526519,0.723293382,1388,1919,0.672940044,0.77364672,,,,,,,,,,,,,0.675616836,0.631789325,0.719444347,0.411,,1919,0.284331735,0.537668265,75.82601323,,,73.30399008,78.34803637,,,,,,,,,,,,,75.26569126,72.54175716,77.98962536,,,,470.9150728,104,12784,361.0560865,580.7740592,,,,,,,,,,,,,486.96657,368.1953324,605.7378076,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.115,,,0.098,0.135,0.167,,,0.144,0.193,0.087,,,0.074,0.103,,,,,,0.088,420,,,,0.127863469,580.2444211,4538,,,,,,,,,,,,,,,,,,,,,,,,,,0.33,,,0.312,0.347,0.139694657,366,2620,0.115864869,0.163524444,0.086056645,79,918,0.059843879,0.112269411,0.000192419,1,5197,,,5197,,,,,,0.373188406,103,276,0.145263113,0.601113699,2.997613853,,,,,,,,,3.066163226,3.039338865,,,,,,,,,3.162309083,0.035372068,,,,,-7369.96,,,,,0.767884167,37548,48898,0.606284479,0.929483855,55291,,,48218.31915,62363.68085,34211,4461.893617,63960.10638,,,,,,,,,,54764,50603.31915,58924.68085,,,,,,,,,,,,,,,,0.261850934,,55291,,,,,185,,,,,,,,,,,,,,,,,,,,,,,,,,61.76798499,14,23488,30.83435556,110.5199872,59.60490463,,,,,,,,,,,,,68.95110508,34.42014323,123.3725733,,,,55.34741144,13,23488,29.47016558,94.64575919,,,,,,,,,,,,,61.42506143,32.70625823,105.0387258,,,,,,,,,,,,,,,,,,,,,,,,,,,,,400,,,-888,16,0.775504711,2881,3715,,,0.493,,,,,16.92992047,,,,,0.808142256,1727,2137,0.770017295,0.846267216,0.094472362,188,1990,0.047849169,0.141095555,0.801591015,1713,2137,0.752673967,0.850508064,5197,,,,,0.19876852,1033,5197,,,0.269193766,1399,5197,,,0.010198191,53,5197,,,0.020011545,104,5197,,,0.013661728,71,5197,,,0.000769675,4,5197,,,0.042909371,223,5197,,,0.893977295,4646,5197,,,0.002742616,13,4740,0,0.014467825,0.484702713,2519,5197,,,1,4730,4730,, -30,067,30067,MT,Park County,2024,1,7856.339073,266,46294,6137.884603,9574.793543,0,,,,2,,,,2,,,,2,,,,2,7890.036622,6064.676291,9715.396953,,,,,2,,0.126,,,0.105,0.15,3.303214352,,,2.59786859,4.090446548,4.91865322,,,4.017413352,5.900115428,0.082677165,84,1016,0.065743027,0.099611304,0,,,,,,,,,,,,,0.082802548,0.065203714,0.100401382,,,,,,,0.151,,,0.117,0.189,0.279,,,0.221,0.34,7.9,0.123986246,0.078,,,0.214,,,0.174,0.262,0.754580885,12972,17191,,,0.212732944,,,0.175600502,0.253511705,0.5,13,26,0.407555742,0.583535853,85.8,15,17473,,,6.095238095,16,2625,3.48395522,9.898284799,,,,,,,,,,,,,5.572224604,2.966974921,9.528673776,,,,,,,0.097164774,1292,13297,0.081675412,0.112654136,0.001087392,19,17473,,,919.631579,0.000618325,11,17790,,,1617.272727,0.003541315,63,17790,,,282.3809524,2697,,,,,,,,,2713,0.33,,,,,,,,,0.33,0.28,,,,,0.21,,,,0.28,0.968995698,13064,13482,0.956155271,0.981836125,0.741565452,3297,4446,0.644137459,0.838993445,0.027193944,273,10039,,,0.116,339,,0.070723404,0.161276596,,,,,,,,,,0.312,0,0.716408674,0.174566474,0.103721773,0.245411175,3.998178157,125091,31287,3.367216586,4.629139728,0.172581768,496,2874,0.085503291,0.259660244,11.44623133,20,17473,,,121.5327424,102,83928,97.94701449,145.1184702,,,,,,,,,,,,,126.7816666,103.0418826,154.35213,,,,3.5,,,,,0,,,,,0.14321608,1140,7960,0.113735856,0.172696305,0.115555556,0.087523614,0.143587497,0.021356784,0.006463266,0.036250302,0.015703518,0.004254523,0.027152513,0.648156425,5801,8950,0.595884225,0.700428624,,,,,,,,,,,,,0.656426239,0.594540089,0.718312389,0.357,,8950,0.294392931,0.419607069,78.61085572,,,77.14527032,80.07644111,,,,,,,,,,,,,78.53625878,77.01539265,80.05712492,,,,357.7824072,266,46294,309.2748325,406.289982,,,,,,,,,,,,,355.5817767,305.3879674,405.7755861,,,,86.62099378,11,12699,43.240888,154.9888851,,,,,,,,,,,,,97.97808854,48.91030879,175.3098647,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.101,,,0.086,0.119,0.157,,,0.134,0.182,0.076,,,0.064,0.09,91,14,15381,,,0.078,1330,,,,0.123986246,1938.648938,15636,,,,,,,,,,,,,,,,,,,,,,,,,,0.281,,,0.263,0.298,0.104273175,1081,10367,0.086400834,0.122145515,0.073773156,227,3077,0.051134858,0.096411454,0.001124227,20,17790,,,889.5,0.845905172,98.125,116,,,,,,,,2.879790731,,,,,,,,,2.884240323,2.776077842,,,,,,,,,2.771882524,0.045582955,,,,,1726.748667,,,,,0.831712915,44569,53587,0.756406409,0.907019422,68594,,,60213.06383,76974.93617,,,,,,,,,,37250,18299.3617,56200.6383,69293,63190.19149,75395.80851,,,,,,,,,,,,,,,,0.274018136,,68594,,,6.821282401,5,733,,,,,,,,,,,,,,,,,,,,,,,,,,42.87462844,38,83928,29.13122989,60.85711271,45.27690401,,,,,,,,,,,,,44.3579924,29.9281512,63.32379232,,,,28.59593938,24,83928,18.32195793,42.54849108,,,,,,,,,,,,,30.73494948,19.69246207,45.73116856,,,,18.96322858,22,116014,11.88415439,28.71055596,,,,,,,,,,,,,19.42843398,12.02650685,29.69842513,,,,,,1300,,,-888,50,0.857375834,11566,13490,,,0.557,,,,,42.01725793,,,,,0.702420857,5658,8055,0.666264241,0.738577472,0.128759276,989,7681,0.099524593,0.15799396,0.871011794,7016,8055,0.849639741,0.892383846,17790,,,,,0.166554244,2963,17790,,,0.245250141,4363,17790,,,0.004440697,79,17790,,,0.0128724,229,17790,,,0.004946599,88,17790,,,0.000730748,13,17790,,,0.035806633,637,17790,,,0.9257448,16469,17790,,,0.00054279,9,16581,0,0.005006135,0.493198426,8774,17790,,,0.456110756,7841,17191,, -30,069,30069,MT,Petroleum County,2024,0,,,,,,2,,,,2,,,,2,,,,2,,,,2,,,,2,,,,2,,0.133,,,0.111,0.157,3.38079745,,,2.65548316,4.101905964,4.817944177,,,3.812539283,5.783568911,,,,,,0,,,,,,,,,,,,,,,,,,,,,,0.168,,,0.131,0.209,0.332,,,0.255,0.414,6.9,0.295942723,0.042,,,0.22,,,0.176,0.268,0.100806452,50,496,,,0.190568519,,,0.15249814,0.231406456,,,,,,0,0,519,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.069705094,26,373,0.056598711,0.082811477,0,0,519,,,-519,0,0,524,,,-524,0,0,524,,,-524,,,,,,,,,,,0.4,,,,,,,,,0.4,0.48,,,,,,,,,0.48,0.996904025,322,323,0.942348764,1,0.764705882,65,85,0.377302128,1,0.029520295,8,271,,,0.185,15,,0.103978723,0.266021277,,,,,,,,,,,,,,,,4.604966231,113867,24727,1.797808142,7.41212432,0.041666667,3,72,0,0.240243439,0,0,519,,,,,,,,,,,,,,,,,,,,,,,,,,4.2,,,,,0,,,,,0.090476191,19,210,0.038126795,0.142825586,0.057142857,0,0.242521791,0.019047619,0,0.128323396,0.019047619,0,0.107117451,0.570212766,134,235,0.396213573,0.744211959,,,,,,,,,,,,,0.556603774,0.354029672,0.759177875,0.299,,235,0,0.611081521,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.105,,,0.089,0.122,0.158,,,0.135,0.182,0.08,,,0.067,0.094,0,0,467,,,0.042,20,,,,0.295942723,146.195705,494,,,,,,,,,,,,,,,,,,,,,,,,,,0.322,,,0.303,0.341,0.072607261,22,303,0.057117899,0.088096622,0.054054054,4,74,0.037373203,0.070734905,0,0,524,,,-524,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1.028702439,52721,51250,0.547139826,1.510265052,48991,,,41751.51064,56230.48936,,,,,,,,,,,,,58173,30007.38298,86338.61702,,,,,,,,,,,,,,,,0.27954114,,48991,,,,,27,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,,0,-888,0.915789474,348,380,,,0.333,,,,,0.380327338,,,,,0.703703704,133,189,0.551748201,0.855659206,0.092105263,14,152,0,0.381580782,0.888888889,168,189,0.800630418,0.97714736,524,,,,,0.154580153,81,524,,,0.309160305,162,524,,,0.001908397,1,524,,,0.01908397,10,524,,,0,0,524,,,0,0,524,,,0.022900763,12,524,,,0.940839695,493,524,,,0,0,379,0,0.138325942,0.469465649,246,524,,,1,496,496,, -30,071,30071,MT,Phillips County,2024,1,9509.700933,78,10850,6028.33464,14269.22062,1,,,,2,,,,2,,,,2,,,,2,5384.329998,3136.570642,8620.833914,1,,,,2,,0.146,,,0.122,0.174,3.601919177,,,2.791811883,4.629950338,4.957475073,,,3.859441641,6.186079513,0.060240964,20,332,0.034646783,0.085835145,1,,,,,,,,,,,,,,,,,,,,,,0.178,,,0.141,0.221,0.375,,,0.293,0.463,7.9,0.132840164,0.075,,,0.233,,,0.186,0.288,0.608252312,2565,4217,,,0.199777269,,,0.15632274,0.250684713,0.454545455,5,11,0.295654521,0.592841645,238.5,10,4192,,,26.51515152,21,792,16.4132967,40.53122568,,,,,,,,,,,,,,,,,,,,,,0.128507653,403,3136,0.108252334,0.148762972,0.00023855,1,4192,,,4192,,0,4240,,,,0.001179245,5,4240,,,848,3055,,,,,1485,,,,2787,0.33,,,,,0.17,,,,0.35,0.2,,,,,0.13,,,,0.2,0.931638045,2821,3028,0.894572704,0.968703386,0.623172104,554,889,0.476265412,0.770078795,0.036632039,67,1829,,,0.201,199,,0.115212766,0.286787234,,,,,,,,,,,,,0.044137931,0.003713206,0.084562657,3.684764524,108520,29451,2.534659317,4.834869732,0.094567404,94,994,0,0.189330409,9.541984733,4,4192,,,113.5353934,23,20258,71.97170025,170.3588355,,,,,,,,,,,,,106.9836553,63.40529439,169.0802988,,,,4,,,,,0,,,,,0.085470086,150,1755,0.049917142,0.121023029,0.056733524,0.021465501,0.092001548,0.03019943,0,0.061352202,0.002279202,0,0.011129574,0.615219721,1148,1866,0.521292496,0.709146946,,,,,,,,,,,,,0.614647502,0.505669223,0.72362578,0.179,,1866,0.103174081,0.254825919,74.91408597,,,72.0336723,77.79449964,,,,,,,,,,,,,77.73107651,75.34917331,80.11297971,,,,460.5275415,78,10850,351.4310304,592.7902333,,,,,,,,,,,,,371.9459293,276.0654379,490.3643386,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.113,,,0.096,0.132,0.165,,,0.14,0.193,0.085,,,0.07,0.102,,,,,,0.075,320,,,,0.132840164,564.969219,4253,,,,,,,,,,,,,,,,,,,,,,,,,,0.337,,,0.322,0.352,0.142726021,311,2179,0.117704745,0.167747298,0.099099099,99,999,0.068120376,0.130077823,0.000707547,3,4240,,,1413.333333,,,,,,,,,,,2.86706617,,,,,,,,,3.002008897,2.816052186,,,,,,,,,2.966752915,0.20945517,,,,,158.8193,,,,,0.735165138,34702,47203,0.471488422,0.998841853,56043,,,49315.85106,62770.14894,18385,15029.76596,21740.23404,,,,,,,,,,58333,45230.19149,71435.80851,,,,,,,,,,,,,,,,0.242920615,,56043,,,3.649635037,1,274,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,38.51540616,11,28560,19.22675199,68.91470068,,,,,,,,,,,,,,,,,,,,,400,,,-888,6,0.786138614,2382,3030,,,0.374,,,,,12.25320149,,,,,0.800457404,1400,1749,0.757526548,0.843388261,0.053178484,87,1636,0.013869808,0.09248716,0.823327616,1440,1749,0.767908236,0.878746995,4240,,,,,0.238207547,1010,4240,,,0.238679245,1012,4240,,,0.001650943,7,4240,,,0.102830189,436,4240,,,0.003301887,14,4240,,,0,0,4240,,,0.03254717,138,4240,,,0.824764151,3497,4240,,,0,0,4002,0,0.013099833,0.494575472,2097,4240,,,1,4217,4217,, -30,073,30073,MT,Pondera County,2024,1,7487.746041,89,15994,5121.612749,10570.46327,0,28404.20174,16834.13012,44890.88454,1,,,,2,,,,2,,,,2,4324.985195,2472.102732,7023.504996,1,,,,2,,0.153,,,0.128,0.178,3.739196743,,,2.971261757,4.64043503,5.181061325,,,4.213705271,6.320023073,0.09487666,50,527,0.069856831,0.11989649,0,,,,,,,,,,,,,0.098701299,0.0689078,0.128494798,,,,,,,0.187,,,0.151,0.225,0.373,,,0.301,0.453,7.2,0.129207567,0.109,,,0.247,,,0.204,0.294,0.446592065,2634,5898,,,0.214101998,,,0.172414163,0.25765019,0.444444444,4,9,0.264827841,0.599456043,333.7,20,5994,,,21.4559387,28,1305,14.25731545,31.00980532,63.43283582,36.95196444,101.562115,,,,,,,,,,,,,,,,,,,0.121540846,549,4517,0.102477016,0.140604676,0.000500501,3,5994,,,1998,,0,6078,,,,0.002138862,13,6078,,,467.5384615,1102,,,,,2333,,,,624,0.36,,,,,,,,,0.38,0.31,,,,,0.23,,,,0.31,0.879582423,3623,4119,0.860752119,0.898412727,0.551437216,729,1322,0.452257552,0.650616881,0.025845686,68,2631,,,0.282,381,,0.199787234,0.364212766,0.436578171,0.346472589,0.526683753,,,,,,,0.854545455,0.545119321,1,0.237060041,0.157881863,0.316238219,3.918694005,110660,28239,2.97477999,4.86260802,0.151428571,212,1400,0.096350136,0.206507007,13.34668001,8,5994,,,101.2863365,30,29619,68.33746589,144.5925433,,,,,,,,,,,,,95.98931597,60.84899227,144.0311043,,,,5.1,,,,,0,,,,,0.120192308,250,2080,0.082914451,0.157470164,0.066473988,0.032020574,0.100927403,0.033653846,0.012098164,0.055209529,0.021153846,0.005739656,0.036568036,0.703891051,1809,2570,0.645950002,0.7618321,0.769953052,0.61289784,0.927008264,,,,,,,,,,0.683461117,0.616977695,0.749944539,0.212,,2570,0.158568643,0.265431357,78.19375213,,,75.86741732,80.52008694,,,,,,,,,,,,,81.24630104,79.04210936,83.45049272,,,,391.1464003,89,15994,308.178875,489.5780469,1375.660198,921.3012248,1975.677516,,,,,,,,,,267.3736019,196.4560658,355.5502092,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.118,,,0.101,0.136,0.172,,,0.147,0.198,0.089,,,0.075,0.104,,,,,,0.109,650,,,,0.129207567,795.0141576,6153,,,,,,,,,,,,,,,,,,,,,,,,,,0.322,,,0.306,0.337,0.137735849,438,3180,0.113906062,0.161565636,0.083214794,117,1406,0.057002028,0.10942756,0.001645278,10,6078,,,607.8,,,,,,,,,,,2.991034985,,,,,,,,,3.304658554,2.814377138,,,,,,,,,3.017995473,0.530590162,,,,,-2906.00525,,,,,0.803912283,39042,48565,0.628238926,0.97958564,51057,,,43822.2766,58291.7234,37679,26910.31915,48447.68085,,,,,,,,,,63237,53537.08511,72936.91489,,,,,,,,,,,,,,,,0.286366218,,51057,,,,,417,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,23.87375558,10,41887,11.44839376,43.90468652,,,,,,,,,,,,,,,,,,,10,,600,,,0,6,0.676072235,2995,4430,,,0.571,,,,,1.687565052,,,,,0.666976312,1436,2153,0.611182079,0.722770546,0.088008235,171,1943,0.048867117,0.127149352,0.830004645,1787,2153,0.782616625,0.877392665,6078,,,,,0.237907206,1446,6078,,,0.218986509,1331,6078,,,0.006087529,37,6078,,,0.153998026,936,6078,,,0.005100362,31,6078,,,0.000822639,5,6078,,,0.027805199,169,6078,,,0.79088516,4807,6078,,,0.012513407,70,5594,0,0.026533514,0.494570582,3006,6078,,,1,5898,5898,, -30,075,30075,MT,Powder River County,2024,0,,,,,,2,,,,2,,,,2,,,,2,,,,2,,,,2,,,,2,,0.139,,,0.116,0.168,3.520982899,,,2.731522659,4.419183829,4.881729143,,,3.811980688,6.003547861,,,,,,0,,,,,,,,,,,,,,,,,,,,,,0.174,,,0.135,0.216,0.333,,,0.259,0.417,6.6,0.207809944,0.099,,,0.226,,,0.181,0.275,0.433293979,734,1694,,,0.191151536,,,0.151972734,0.232037879,0.25,1,4,0.023230216,0.544021398,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.149957877,178,1187,0.12612809,0.173787664,0,0,1702,,,-1702,0,0,1725,,,-1725,,0,1725,,,,1146,,,,,,,,,1146,0.4,,,,,,,,,0.4,0.3,,,,,,,,,0.3,0.892935178,1226,1373,0.873106997,0.91276336,0.743523316,287,386,0.534449848,0.952596784,0.021912351,22,1004,,,0.163,47,,0.093893617,0.232106383,,,,,,,,,,,,,0.121107266,0.014795243,0.22741929,4.678807706,128714,27510,3.634746338,5.722869075,0.050167224,15,299,0.003810901,0.096523547,0,0,1702,,,,,,,,,,,,,,,,,,,,,,,,,,5.3,,,,,0,,,,,0.04,30,750,0.006735028,0.073264972,0.044836957,0,0.099340585,0,0,0.034950355,0,0,0.024713633,0.494407159,442,894,0.372026841,0.616787477,,,,,,,,,,,,,0.462130937,0.365211686,0.559050189,0.401,,894,0.225559513,0.576440487,78.40217283,,,72.81828906,83.98605661,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.11,,,0.093,0.129,0.163,,,0.139,0.189,0.082,,,0.069,0.096,0,0,1499,,,0.099,170,,,,0.207809944,362.212732,1743,,,,,,,,,,,,,,,,,,,,,,,,,,0.3,,,0.283,0.317,0.154015402,140,909,0.126611146,0.181419657,0.14137931,41,290,0.096102715,0.186655906,0.00115942,2,1725,,,862.5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5847.446,,,,,1.25803313,51719,41111,0.861951587,1.654114673,54102,,,46046.34043,62157.65957,,,,,,,,,,,,,60781,51163.29787,70398.70213,,,,,,,,,,,,,,,,0.287013419,,54102,,,,,134,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,100,,,0,-888,0.835294118,1136,1360,,,0.402,,,,,9.436827009,,,,,0.788203753,588,746,0.692157831,0.884249676,0.059467919,38,639,0,0.131668896,0.761394102,568,746,0.708494767,0.814293437,1725,,,,,0.171594203,296,1725,,,0.303188406,523,1725,,,0.00173913,3,1725,,,0.021449275,37,1725,,,0.00173913,3,1725,,,0,0,1725,,,0.030144928,52,1725,,,0.92,1587,1725,,,0,0,1664,0,0.031505728,0.489275362,844,1725,,,1,1694,1694,, -30,077,30077,MT,Powell County,2024,1,9126.439697,135,18973,6635.45717,11617.42222,0,,,,2,,,,2,,,,2,,,,2,8865.34706,6249.458672,11481.23545,,,,,2,,0.161,,,0.134,0.188,3.653247255,,,2.887472377,4.494653056,4.661614429,,,3.672704279,5.686311129,0.069565217,24,345,0.042718848,0.096411587,0,,,,,,,,,,,,,0.065830721,0.038617006,0.093044436,,,,,,,0.199,,,0.157,0.241,0.357,,,0.282,0.435,8.2,0.058668196,0.099,,,0.254,,,0.206,0.305,0.832853441,5785,6946,,,0.218582491,,,0.17754204,0.263066909,0.555555556,10,18,0.449513997,0.646460596,457.2,32,6999,,,25.36997886,24,946,16.25502416,37.74851754,,,,,,,,,,,,,23.69668246,14.47454927,36.59760415,,,,,,,0.10218607,402,3934,0.08431373,0.120058411,0.000714388,5,6999,,,1399.8,0.000283648,2,7051,,,3525.5,0.001418239,10,7051,,,705.1,2487,,,,,,,,,2446,0.41,,,,,,,,,0.41,0.31,,,,,,,,,0.31,0.925122973,5078,5489,0.903648794,0.946597152,0.388455538,747,1923,0.287063019,0.489848058,0.026360257,78,2959,,,0.186,191,,0.107361702,0.264638298,,,,,,,,,,,,,0.060689655,0,0.130369077,3.887378983,110421,28405,2.977528826,4.797229139,0.101936799,100,981,0,0.217542458,10.00142878,7,6999,,,121.8486176,42,34469,87.81776591,164.7039333,,,,,,,,,,,,,121.2995443,85.40607339,167.1954435,,,,5.2,,,,,0,,,,,0.097415507,245,2515,0.050683366,0.144147648,0.057291667,0.01957349,0.095009843,0.04333996,0.009836198,0.076843722,0.007554672,0,0.02163027,0.754451346,1822,2415,0.686185448,0.822717243,,,,,,,,,,,,,0.723633233,0.645544786,0.80172168,0.188,,2415,0.116292531,0.259707469,76.45198228,,,74.38814815,78.51581641,,,,,,,,,,,,,76.29290157,74.16143841,78.42436474,,,,465.8184913,135,18973,382.4242326,549.2127499,,,,,,,,,,,,,469.0277491,381.2142237,556.8412745,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.116,,,0.099,0.134,0.158,,,0.136,0.182,0.09,,,0.075,0.104,159.1,10,6285,,,0.099,690,,,,0.058668196,412.2614128,7027,,,,,,,,,,,,,,,,,,,,,,,,,,0.328,,,0.31,0.345,0.114392397,337,2946,0.092945588,0.135839205,0.066602317,69,1036,0.042772529,0.090432104,0.001134591,8,7051,,,881.375,,,,,,,,,,,3.234132523,,,,,,,,,3.309956149,3.016955209,,,,,,,,,3.055039693,0.047431466,,,,,-964.80465,,,,,0.879549671,41250,46899,0.631259532,1.127839809,60350,,,53342.85106,67357.14894,,,,136205,135933.3404,136476.6596,,,,,,,60015,52037.97872,67992.02128,,,,,,,,,,,,,,,,0.233869097,,60350,,,3.984063745,1,251,,,,,,,,,,,,,,,,,,,,,,,,,,45.04322502,16,34469,25.21035111,74.29194971,46.41852099,,,,,,,,,,,,,39.96318452,20.6495606,69.80764092,,,,,,,,,,,,,,,,,,,,,,,,,,,22.8372122,11,48167,11.40025405,40.86208091,,,,,,,,,,,,,25.68053416,12.81963012,45.9495693,,,,,,500,,,-888,6,0.539270568,3179,5895,,,0.552,,,,,8.07303792,,,,,0.698868581,1606,2298,0.620495559,0.777241604,0.085338175,188,2203,0.040232263,0.130444088,0.806788512,1854,2298,0.737094072,0.876482951,7051,,,,,0.146362218,1032,7051,,,0.208481067,1470,7051,,,0.011204085,79,7051,,,0.057580485,406,7051,,,0.00439654,31,7051,,,0.000567295,4,7051,,,0.034746844,245,7051,,,0.876045951,6177,7051,,,0,0,6744,0,0.010600439,0.367040136,2588,7051,,,1,6946,6946,, -30,079,30079,MT,Prairie County,2024,1,4192.156921,20,2794,1361.181941,9783.095817,1,,,,2,,,,2,,,,2,,,,2,4642.727204,1507.480886,10834.57655,1,,,,2,,0.183,,,0.149,0.224,4.126396203,,,3.047484048,5.369163819,5.364699619,,,4.050743708,6.861391892,,,,,,0,,,,,,,,,,,,,,,,,,,,,,0.213,,,0.163,0.273,0.355,,,0.263,0.462,4.9,0.347593583,0.111,,,0.275,,,0.212,0.347,,,1088,,,0.160573411,,,0.120246088,0.207808133,0.666666667,2,3,0.391498614,0.824051859,0,0,1091,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.173793103,126,725,0.147580338,0.200005869,0,0,1091,,,-1091,0,0,1107,,,-1107,,0,1107,,,,,,,,,,,,,,0.35,,,,,,,,,0.35,0.28,,,,,,,,,0.28,0.862105263,819,950,0.779093357,0.945117169,0.344322344,94,273,0.16208393,0.526560759,0.030241936,15,496,,,0.141,32,,0.081425532,0.200574468,,,,,,,,,,,,,0.126394052,0,0.257524073,5.451811684,88472,16228,4.11264607,6.790977297,0.037931035,11,290,0,0.12380997,0,0,1091,,,,,,,,,,,,,,,,,,,,,,,,,,4.3,,,,,0,,,,,0.06,30,500,0,0.120724059,0.068548387,0,0.161161114,0,0,0.052425532,0,0,0.037070449,0.488288288,271,555,0.342895601,0.633680976,,,,,,,,,,,,,0.394014963,0.245709461,0.542320465,0.358,,555,0.179538916,0.536461084,,,,,,,,,,,,,,,,,,,,,,,,312.7125608,20,2794,166.5062684,534.7480027,,,,,,,,,,,,,337.2711597,179.582688,576.7439547,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.133,,,0.109,0.161,0.179,,,0.15,0.215,0.102,,,0.083,0.125,0,0,917,,,0.111,140,,,,0.347593583,409.812834,1179,,,,,,,,,,,,,,,,,,,,,,,,,,0.319,,,0.3,0.337,0.183632735,92,501,0.15503699,0.212228479,0.14893617,35,235,0.097702128,0.200170213,0.000903342,1,1107,,,1107,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3212.906,,,,,0.31546179,18646,59107,0,0.646181691,49838,,,42198.17021,57477.82979,,,,,,,,,,,,,41196,32334.89362,50057.10638,,,,,,,,,,,,,,,,0.331955536,,49838,,,,,58,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,100,,,0,-888,0.865116279,744,860,,,0.445,,,,,4.58944438,,,,,0.750515464,364,485,0.63063633,0.870394598,0.213270142,90,422,0.062864363,0.363675922,0.843298969,409,485,0.752988761,0.933609177,1107,,,,,0.209575429,232,1107,,,0.350496838,388,1107,,,0.004516712,5,1107,,,0.014453478,16,1107,,,0.008130081,9,1107,,,0,0,1107,,,0.045167118,50,1107,,,0.884372177,979,1107,,,0,0,1234,0,0.042484224,0.484191509,536,1107,,,1,1088,1088,, -30,081,30081,MT,Ravalli County,2024,1,6506.257451,658,120820,5549.882328,7462.632573,0,,,,2,,,,2,,,,2,,,,2,6657.348787,5632.578652,7682.118921,,,,,2,,0.127,,,0.105,0.154,3.319879961,,,2.634806201,4.115616541,4.773446584,,,3.922837805,5.713492947,0.077409751,208,2687,0.067305026,0.087514476,0,,,,,,,,,,0.107692308,0.054403739,0.160980876,0.074724377,0.064310118,0.085138637,,,,,,,0.166,,,0.127,0.207,0.303,,,0.248,0.36,9,0.00892819,0.085,,,0.212,,,0.172,0.257,0.622311767,27490,44174,,,0.203349301,,,0.169908901,0.241538105,0.423076923,11,26,0.323312525,0.516642852,148,68,45959,,,10.76452599,88,8175,8.63346462,13.26219709,,,,,,,,,,,,,10.80781488,8.543129168,13.4886421,,,,,,,0.126001305,4247,33706,0.109320454,0.142682157,0.000609239,28,45959,,,1641.392857,0.000486279,23,47298,,,2056.434783,0.002346822,111,47298,,,426.1081081,1438,,,,,,,,,1423,0.43,,,,,,,,,0.43,0.37,,,,,0.5,0.33,,0.3,0.37,0.930224966,31343,33694,0.917037845,0.943412087,0.635360891,5933,9338,0.558937265,0.711784517,0.028391455,622,21908,,,0.139,1198,,0.085382979,0.192617021,,,,,,,,,,0.171428571,0.006339647,0.336517496,0.120535079,0.082849478,0.15822068,4.280812443,126879,29639,3.706849381,4.854775505,0.181926278,1530,8410,0.125270343,0.238582213,9.791335756,45,45959,,,114.7381883,253,220502,100.5996733,128.8767034,,,,,,,,,,,,,121.5418168,106.4147071,136.6689264,,,,4.6,,,,,0,,,,,0.15483871,2760,17825,0.128116987,0.181560433,0.131339031,0.104998903,0.15767916,0.016493689,0.007603475,0.025383902,0.012622721,0.005310355,0.019935087,0.728224606,14188,19483,0.692266411,0.764182801,,,,,,,,,,,,,0.694401134,0.638031768,0.7507705,0.32,,19483,0.276303031,0.363696969,78.57665882,,,77.77904262,79.37427501,,,,,,,,,,85.67014131,78.71492299,92.62535962,78.3860532,77.54522755,79.22687885,,,,312.6989141,658,120820,285.0691785,340.3286496,,,,,,,,,,,,,317.2094446,288.2310329,346.1878564,,,,62.40842242,23,36854,39.56158636,93.64327589,,,,,,,,,,,,,68.15576691,42.71285626,103.1886502,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.104,,,0.088,0.122,0.156,,,0.133,0.179,0.076,,,0.064,0.09,52.4,21,40084,,,0.085,3720,,,,0.00892819,359.0203583,40212,,,13.35638547,18,134767,7.91584051,21.10884732,,,,,,,,,,,,,13.6545088,7.95425456,21.86219132,,,,0.324,,,0.308,0.34,0.136279051,3442,25257,0.116023732,0.156534371,0.097402597,870,8932,0.071189831,0.123615363,0.000782274,37,47298,,,1278.324324,0.923640662,390.7,423,,,,,,,,,,,,,,,,,,3.044003231,,,,,,,,2.682004693,3.082368849,0.033242257,,,,,-1065.0607,,,,,0.75789343,42727,56376,0.653626831,0.862160029,65789,,,59047.55319,72530.44681,40313,6001.680851,74624.31915,,,,,,,72656,39058.38298,106253.617,67720,63261.44681,72178.55319,,,,,,,,,,,,,,,,0.279423612,,65789,,,3.617571059,7,1935,,,4.276836326,13,303963,2.27723522,7.313520369,,,,,,,,,,,,,4.614838481,2.457207132,7.891514348,,,,31.00687971,79,220502,23.82653773,39.67126858,35.82733944,,,,,,,,,,,,,32.76212545,25.06043001,42.08432074,,,,30.83872255,68,220502,23.94747474,39.09542914,,,,,,,,,,,,,33.32598201,25.87892904,42.24862317,,,,16.12038307,49,303963,11.92594814,21.31200133,,,,,,,,,,,,,17.03940362,12.56351112,22.59177713,,,,24.25,,4000,,,5,92,0.815534258,28507,34955,,,0.633,,,,,17.85409476,,,,,0.774181567,14591,18847,0.75532281,0.793040324,0.109788868,2002,18235,0.088839649,0.130738087,0.861038892,16228,18847,0.844410964,0.87766682,47298,,,,,0.18415155,8710,47298,,,0.271047402,12820,47298,,,0.004143938,196,47298,,,0.011839824,560,47298,,,0.008287877,392,47298,,,0.00116284,55,47298,,,0.042665652,2018,47298,,,0.914584126,43258,47298,,,0.000443025,19,42887,0,0.002896355,0.49492579,23409,47298,,,0.844478653,37304,44174,, -30,083,30083,MT,Richland County,2024,1,7718.993751,155,31109,5810.044802,9627.942699,0,,,,2,,,,2,,,,2,,,,2,8066.876336,5947.829225,10185.92345,,,,,2,,0.128,,,0.108,0.151,3.213414469,,,2.513166059,3.983173514,4.660600306,,,3.755981635,5.614662133,0.05876494,59,1004,0.044217137,0.073312743,0,,,,,,,,,,,,,0.05733945,0.041908159,0.07277074,,,,,,,0.166,,,0.133,0.202,0.352,,,0.288,0.418,8.1,0.115860552,0.074,,,0.233,,,0.191,0.278,0.549125403,6310,11491,,,0.22842587,,,0.189628872,0.271060642,0.5,3,6,0.280972677,0.671334317,248.2,28,11283,,,19.00647948,44,2315,13.81013709,25.51531157,,,,,,,,,,,,,18.48049281,12.94350997,25.58479183,,,,,,,0.095348592,904,9481,0.08105072,0.109646464,0.000265887,3,11283,,,3761,0.000355967,4,11237,,,2809.25,0.001334876,15,11237,,,749.1333333,1185,,,,,,,,,1170,0.45,,,,,,,,,0.46,0.44,,,,,,,,0.58,0.44,0.957178841,7220,7543,0.945846126,0.968511557,0.611862643,1764,2883,0.511830125,0.711895161,0.026261586,153,5826,,,0.111,311,,0.066914894,0.155085106,,,,,,,,,,,,,0.053344623,0.013945229,0.092744018,4.675098306,123647,26448,2.97360173,6.376594882,0.136221837,393,2885,0.061455609,0.210988065,20.38464947,23,11283,,,94.40641964,52,55081,70.50722972,123.8014592,,,,,,,,,,,,,100.1778668,74.11213736,132.4404526,,,,4.5,,,,,0,,,,,0.134920635,595,4410,0.084692146,0.185149124,0.113956171,0.059846629,0.168065712,0.02154195,0.004971721,0.03811218,0.004535147,0,0.011026067,0.761695102,4152,5451,0.70852724,0.814862964,,,,,,,,,,,,,0.748668189,0.683848572,0.813487806,0.255,,5451,0.19747438,0.31252562,76.81659237,,,75.13824767,78.49493707,,,,,,,,,,,,,76.31910006,74.54459927,78.09360085,,,,394.1579518,155,31109,329.8134592,458.5024444,,,,,,,,,,,,,403.2754316,334.7599679,471.7908954,,,,91.59796819,11,12009,45.7253757,163.8940671,,,,,,,,,,,,,108.5026633,54.16413856,194.1412361,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.103,,,0.088,0.118,0.158,,,0.136,0.181,0.077,,,0.065,0.09,,,,,,0.074,840,,,,0.115860552,1129.176944,9746,,,,,,,,,,,,,,,,,,,,,,,,,,0.3,,,0.285,0.315,0.100060187,665,6646,0.083379336,0.116741038,0.085579515,254,2968,0.060558238,0.110600791,0.001067901,12,11237,,,936.4166667,0.912413793,132.3,145,,,,,,,,3.17444861,,,,,,,,,3.163185718,3.137693407,,,,,,,,,3.119740221,0.049676122,,,,,2085.58065,,,,,0.676289403,41278,61036,0.568137339,0.784441467,72974,,,62375.70213,83572.29787,,,,,,,,,,,,,68474,60178.85106,76769.14894,,,,,,,,,,,,,,,,0.250500178,,72974,,,2.721088435,2,735,,,,,,,,,,,,,,,,,,,,,,,,,,36.92054572,19,55081,21.88145529,58.35037964,34.49465333,,,,,,,,,,,,,34.73069527,19.4385065,57.28300017,,,,23.60160491,13,55081,12.56686061,40.35946319,,,,,,,,,,,,,22.48890888,11.22638229,40.23887006,,,,,,,,,,,,,,,,,,,,,,,,,,,26.66666667,,1200,,,7,25,0.715802469,5798,8100,,,0.542,,,,,44.55751681,,,,,0.691543387,3132,4529,0.645382184,0.737704591,0.134304207,581,4326,0.082175116,0.186433298,0.835283727,3783,4529,0.788739416,0.881828038,11237,,,,,0.252113553,2833,11237,,,0.169885201,1909,11237,,,0.006496396,73,11237,,,0.026430542,297,11237,,,0.006229421,70,11237,,,0.000711934,8,11237,,,0.060959331,685,11237,,,0.877458396,9860,11237,,,0.003097428,33,10654,0,0.010383845,0.48011035,5395,11237,,,0.432425376,4969,11491,, -30,085,30085,MT,Roosevelt County,2024,1,31620.97601,380,31378,27608.17943,35633.7726,0,49862.33419,43282.02949,56442.63888,,,,,2,,,,2,,,,2,8458.578324,5092.616703,13209.11784,1,,,,2,,0.241,,,0.21,0.275,4.909793774,,,3.96206092,5.846933404,5.849743135,,,4.740517785,6.92194445,0.090441177,123,1360,0.075197662,0.105684691,0,0.091814159,0.072990067,0.110638252,,,,,,,,,,0.059027778,0.03180851,0.086247046,,,,0.12,0.056307539,0.183692461,0.283,,,0.239,0.329,0.407,,,0.339,0.475,6.8,0.083279013,0.152,,,0.299,,,0.251,0.349,0.194459885,2099,10794,,,0.210987997,,,0.17154195,0.252211818,0.590909091,13,22,0.502053418,0.667413818,1173.6,127,10821,,,62.09922376,184,2963,53.12631335,71.07213417,73.95348837,62.45829785,85.44867889,,,,,,,,,,18.58108108,9.275608728,33.24668668,,,,84.61538462,42.23969513,151.4002963,0.155801245,1226,7869,0.133162948,0.178439543,0.00064689,7,10821,,,1545.857143,0.000662126,7,10572,,,1510.285714,0.002080969,22,10572,,,480.5454546,2776,,,,,3786,,,,2155,0.37,,,,,0.24,,,,0.46,0.31,,,,,0.33,,,,0.3,0.932222582,5763,6182,0.914339141,0.950106023,0.547919762,1475,2692,0.473181355,0.62265817,0.034593356,151,4365,,,0.277,973,,0.162617021,0.391382979,0.502160761,0.415218653,0.589102868,,,,,,,0.506726457,0.309151142,0.704301773,0.063400576,0.019221821,0.107579332,5.890113997,94554,16053,4.559672091,7.220555904,0.302793296,1084,3580,0.232707672,0.37287892,4.620645042,5,10821,,,191.0967131,105,54946,154.5444191,227.6490072,259.1401542,206.4036863,321.2432102,,,,,,,,,,109.4271489,66.84094537,169.0013564,,,,4.7,,,,,0,,,,,0.118461539,385,3250,0.08845277,0.148470307,0.083278689,0.052358083,0.114199295,0.044615385,0.02482552,0.064405249,0.004615385,0,0.013172256,0.78630137,2870,3650,0.745849592,0.826753148,0.794871795,0.737884829,0.851858761,,,,,,,,,,0.781336278,0.743431282,0.819241274,0.275,,3650,0.222439246,0.327560754,61.17339452,,,59.29531115,63.05147789,53.52028155,51.47664056,55.56392255,,,,,,,,,,76.1925251,73.23825607,79.14679413,,,,1277.233219,380,31378,1144.023943,1410.442494,2070.289796,1831.963244,2308.616348,,,,,,,,,,415.3897749,311.155446,543.340053,,,,112.7183919,18,15969,66.80406275,178.143655,139.4181615,78.03128667,229.9490554,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.161,,,0.141,0.183,0.204,,,0.179,0.229,0.135,,,0.116,0.156,,,,,,0.152,1660,,,,0.083279013,868.1837103,10425,,,,,,,,,,,,,,,,,,,,,,,,,,0.358,,,0.345,0.37,0.196202532,961,4898,0.164032319,0.228372744,0.088988476,278,3124,0.06277571,0.115201242,0.001418842,15,10572,,,704.8,0.715030675,116.55,163,,,,,,,,2.274545567,,,,,,,,,3.247849913,2.003962599,,,,,,,,,,0.375872332,,,,,-6598.471588,,,,,0.848755439,41157,48491,0.714566365,0.982944514,48712,,,41891.91489,55532.08511,33807,26555.59575,41058.40426,105417,8763.382979,202070.617,,,,70278,19654,120902,67901,62571.46809,73230.53192,,,,,,,,,,,,,,,,0.268373296,,48712,,,,,1035,,,15.43865066,12,77727,7.977376084,26.96821574,,,,,,,,,,,,,,,,,,,36.01708524,18,54946,20.98127943,57.6668425,32.75943654,58.84946869,33.63755615,95.56785022,,,,,,,,,,,,,,,,23.65959306,13,54946,12.59773685,40.45862468,37.4660464,19.35925289,65.44564316,,,,,,,,,,,,,,,,36.02351821,28,77727,23.93736624,52.06401372,44.58016628,27.23072373,68.85045116,,,,,,,,,,,,,,,,,,1600,,,-888,8,0.549897331,4017,7305,,,0.413,,,,,17.14427964,,,,,0.656393443,2002,3050,0.615580923,0.697205962,0.1008881,284,2815,0.066853079,0.13492312,0.67704918,2065,3050,0.628639285,0.725459075,10572,,,,,0.336927734,3562,10572,,,0.118898978,1257,10572,,,0.004824064,51,10572,,,0.612561483,6476,10572,,,0.006999622,74,10572,,,0.000662126,7,10572,,,0.038214151,404,10572,,,0.323117669,3416,10572,,,0.001120734,11,9815,0,0.009292139,0.491392357,5195,10572,,,1,10794,10794,, -30,087,30087,MT,Rosebud County,2024,1,21380.21443,229,24330,17558.80418,25201.62467,0,50458.6105,41058.19384,59859.02716,,,,,2,,,,2,,,,2,4656.130559,2712.367634,7454.916071,1,,,,2,,0.193,,,0.164,0.226,4.325210674,,,3.436431747,5.252361987,5.667948041,,,4.575020615,6.766175833,0.080697928,74,917,0.063068764,0.098327092,0,0.102079395,0.076279601,0.12787919,,,,,,,,,,0.053156146,0.027811353,0.078500939,,,,,,,0.237,,,0.193,0.281,0.364,,,0.286,0.439,7.1,0.107095993,0.125,,,0.255,,,0.208,0.309,0.509304839,4242,8329,,,0.201604192,,,0.157816762,0.247364327,0.44,11,25,0.339407154,0.5333173,923.2,75,8124,,,36.02811951,82,2276,28.65423263,44.72039593,58.77268799,45.63929192,74.50838648,,,,,,,,,,,,,,,,,,,0.153871829,922,5992,0.132425021,0.175318638,0.000492368,4,8124,,,2031,0.0006182,5,8088,,,1617.6,0.002472799,20,8088,,,404.4,3254,,,,,7053,,,,1517,0.35,,,,,0.18,,,,0.4,0.3,,,,,0.31,,,,0.3,0.896766654,4604,5134,0.861960921,0.931572387,0.629951167,1161,1843,0.527512031,0.732390303,0.034482759,125,3625,,,0.247,581,,0.157638298,0.336361702,0.488076312,0.343366509,0.632786115,,,,,,,,,,0.018158236,0,0.049291713,5.843394849,112088,19182,3.702419076,7.984370623,0.290456432,700,2410,0.194485553,0.38642731,16.00196947,13,8124,,,187.7488237,83,44208,149.5408901,232.7429149,328.967786,246.4194459,430.2979637,,,,,,,,,,112.4484611,74.10424444,163.6066072,,,,4.3,,,,,1,,,,,0.177743431,575,3235,0.132942643,0.22254422,0.092429022,0.052981183,0.131876861,0.055641422,0.029909957,0.081372887,0.038639876,0.014180027,0.063099726,0.798877456,2562,3207,0.75091025,0.846844662,0.786690975,0.686987759,0.886394191,,,,,,,,,,0.81272242,0.762373255,0.863071585,0.144,,3207,0.100825976,0.187174024,67.63299991,,,65.34580647,69.92019335,52.92569971,49.93721346,55.91418596,,,,,,,,,,80.43605089,78.05915227,82.8129495,,,,852.2086208,229,24330,733.7115661,970.7056755,2097.372431,1758.596407,2436.148455,,,,,,,,,,290.7901822,220.2416442,376.7524096,,,,99.70089731,11,11033,49.77032872,178.3924455,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.136,,,0.116,0.158,0.184,,,0.158,0.21,0.112,,,0.094,0.131,,,,,,0.125,1060,,,,0.107095993,988.8173026,9233,,,,,,,,,,,,,,,,,,,,,,,,,,0.325,,,0.313,0.336,0.178227848,704,3950,0.149632103,0.206823593,0.107391911,231,2151,0.077604677,0.137179145,0.001730959,14,8088,,,577.7142857,,,,,,,,,,,2.584074709,,,,,,,,,3.374307395,,,,,,,,,,,0.384006227,,,,,-2455.17336,,,,,0.693988519,41225,59403,0.527287793,0.860689245,64003,,,54702.23404,73303.76596,36758,24146.08511,49369.91489,,,,,,,81389,4704.744681,158073.2553,65116,56692.17021,73539.82979,,,,,,,,,,,,,,,,0.223302033,,64003,,,3.262642741,2,613,,,15.90002067,10,62893,7.624677939,29.24070412,44.24582983,21.21759522,81.3696564,,,,,,,,,,,,,,,,40.24808381,18,44208,23.44599201,64.44108107,40.71661238,,,,,,,,,,,,,,,,,,,36.19254434,16,44208,20.68716625,58.77442453,62.06939358,29.76468684,114.1478247,,,,,,,,,,,,,,,,60.42007855,38,62893,42.7568436,82.93127839,110.6145746,71.58392039,163.2889328,,,,,,,,,,34.64003233,17.89901019,60.50916531,,,,11.81818182,,1100,,,0,13,0.583153014,3773,6470,,,0.4,,,,,4.559428088,,,,,0.64344397,1958,3043,0.596148323,0.690739616,0.136267606,387,2840,0.0875471,0.184988112,0.704896484,2145,3043,0.654162663,0.755630305,8088,,,,,0.293892186,2377,8088,,,0.167779426,1357,8088,,,0.003214639,26,8088,,,0.389713155,3152,8088,,,0.018545994,150,8088,,,0.00074184,6,8088,,,0.058852621,476,8088,,,0.534124629,4320,8088,,,0.008504514,65,7643,0,0.021916713,0.492952522,3987,8088,,,1,8329,8329,, -30,089,30089,MT,Sanders County,2024,1,11424.66064,287,32562,8636.442814,14212.87846,0,,,,2,,,,2,,,,2,,,,2,11519.87727,8468.105529,14571.64901,,,,,2,,0.171,,,0.144,0.2,4.112684728,,,3.270528795,5.093097861,4.919570031,,,3.943850182,5.976875514,0.069541029,50,719,0.050947544,0.088134514,0,,,,,,,,,,,,,0.061488673,0.042548709,0.080428637,,,,,,,0.213,,,0.17,0.258,0.321,,,0.255,0.389,7,0.12960023,0.12,,,0.265,,,0.217,0.315,0.760564516,9431,12400,,,0.172129541,,,0.137984602,0.208437478,0.681818182,15,22,0.608922455,0.742765176,115.7,15,12959,,,14.77330616,29,1963,9.893914996,21.21693196,,,,,,,,,,,,,15.05646173,9.646959131,22.40282158,,,,,,,0.159944367,1380,8628,0.137306069,0.182582665,0.000771665,10,12959,,,1295.9,0.000297575,4,13442,,,3360.5,0.002678173,36,13442,,,373.3888889,1376,,,,,,,,,1293,0.34,,,,,0.31,,,,0.34,0.21,,,,,0.03,,,,0.21,0.90649404,8822,9732,0.886362793,0.926625288,0.564114608,1201,2129,0.45937578,0.668853436,0.042941393,233,5426,,,0.248,540,,0.168170213,0.327829787,0.438202247,0.285860751,0.590543743,0.714285714,0.10476406,1,,,,0.100840336,0,0.400868196,0.225376593,0.127162711,0.323590475,4.362200386,95000,21778,3.675985281,5.04841549,0.199356913,434,2177,0.107067581,0.291646246,6.173315842,8,12959,,,123.3877336,75,60784,97.05227971,154.6675925,,,,,,,,,,,,,130.0342485,101.5578269,164.0205108,,,,8.8,,,,,0,,,,,0.159090909,840,5280,0.125608052,0.192573767,0.14381207,0.106645975,0.180978165,0.011363636,6.6242659E-6,0.022720649,0.017045455,0.008439239,0.02565167,0.634363412,2566,4045,0.572953636,0.695773187,,,,,,,,,,,,,0.642166344,0.571784446,0.712548242,0.283,,4045,0.215662401,0.350337599,75.46254523,,,73.39732063,77.52776984,,,,,,,,,,,,,75.2267993,73.01149662,77.44210199,,,,477.1296583,287,32562,407.6497016,546.6096151,,,,,,,,,,,,,472.664553,398.4413591,546.8877469,,,,118.1652165,11,9309,58.98765031,211.4302128,,,,,,,,,,,,,128.3532281,61.55036191,236.0461564,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.128,,,0.11,0.147,0.176,,,0.15,0.2,0.094,,,0.079,0.109,61.2,7,11438,,,0.12,1470,,,,0.12960023,1479.127425,11413,,,,,,,,,,,,,,,,,,,,,,,,,,0.341,,,0.324,0.357,0.17395292,1138,6542,0.146548664,0.201357175,0.11775445,258,2191,0.085584237,0.149924663,0.000818331,11,13442,,,1222,,,,,,,,,,,,,,,,,,,,,3.3852679,,,,,,,,,3.525396549,0.155643098,,,,,-3259.19392,,,,,0.79520081,37679,47383,0.655037716,0.935363905,47976,,,42448.68085,53503.31915,24861,9166.702128,40555.29787,,,,,,,29583,1860.617021,57305.38298,48906,42439.78723,55372.21277,,,,,,,,,,,,,,,,0.33531349,,47976,,,,,482,,,,,,,,,,,,,,,,,,,,,,,,,,32.13143457,22,60784,17.98372001,52.99591492,36.19373519,,,,,,,,,,,,,35.59199228,19.45847338,59.71731526,,,,31.25822585,19,60784,18.81949389,48.81359169,,,,,,,,,,,,,34.79789747,20.95060743,54.3412274,,,,35.86200301,30,83654,24.19594284,51.19523919,,,,,,,,,,,,,35.92814371,23.6768731,52.2735628,,,,,,1000,,,-888,16,0.78984456,7622,9650,,,0.43,,,,,0.056258465,,,,,0.780276498,4233,5425,0.745156076,0.815396919,0.150975564,797,5279,0.115375734,0.186575393,0.827281106,4488,5425,0.792488889,0.862073323,13442,,,,,0.168427317,2264,13442,,,0.325249219,4372,13442,,,0.003198929,43,13442,,,0.038535932,518,13442,,,0.005579527,75,13442,,,0.000892724,12,13442,,,0.037717602,507,13442,,,0.894956108,12030,13442,,,0.004294681,52,12108,0,0.011331845,0.488022616,6560,13442,,,1,12400,12400,, -30,091,30091,MT,Sheridan County,2024,1,7962.681895,51,9040,4456.652611,13133.23286,1,,,,2,,,,2,,,,2,,,,2,6763.970172,3697.925435,11348.79262,1,,,,2,,0.131,,,0.109,0.157,3.313893131,,,2.55834608,4.167861033,4.811329809,,,3.778788035,5.907400463,0.06614786,17,257,0.035760955,0.096534765,1,,,,,,,,,,,,,0.069767442,0.035714157,0.103820727,,,,,,,0.166,,,0.131,0.209,0.328,,,0.255,0.407,7.9,0.118104308,0.08,,,0.232,,,0.187,0.286,0.632099463,2237,3539,,,0.21084459,,,0.170541665,0.255343873,0.6,3,5,0.381076261,0.751373291,0,0,3527,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.110022607,292,2654,0.092150267,0.127894948,0.000283527,1,3527,,,3527,0.000280584,1,3564,,,3564,0.001964085,7,3564,,,509.1428571,2061,,,,,,,,,1942,0.42,,,,,,,,,0.42,0.38,,,,,,,,,0.38,0.904653803,2391,2643,0.85429694,0.955010665,0.642092747,540,841,0.520069549,0.764115945,0.019263456,34,1765,,,0.173,125,,0.09912766,0.24687234,,,,,,,,,,,,,0.051169591,0.007638871,0.09470031,4.571219818,131386,28742,3.997927492,5.144512143,0.058385093,47,805,0.016036462,0.100733724,22.68216615,8,3527,,,141.2595645,24,16990,90.50766836,210.1830347,,,,,,,,,,,,,149.1472667,94.5465731,223.7941307,,,,4.5,,,,,0,,,,,0.110032363,170,1545,0.071159248,0.148905477,0.103448276,0.064670061,0.142226491,0.00776699,0,0.02580785,0.005177994,0,0.014581132,0.708912037,1225,1728,0.638528252,0.779295822,,,,,,,,,,,,,0.68697479,0.632602254,0.741347325,0.17,,1728,0.119169327,0.220830673,77.27595759,,,74.1114053,80.44050987,,,,,,,,,,,,,77.97549868,75.06353272,80.88746465,,,,351.8090215,51,9040,252.4642278,477.2686626,,,,,,,,,,,,,339.9564518,239.3607151,468.5851877,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.104,,,0.089,0.123,0.156,,,0.134,0.181,0.077,,,0.065,0.092,,,,,,0.08,280,,,,0.118104308,399.6649765,3384,,,,,,,,,,,,,,,,,,,,,,,,,,0.323,,,0.305,0.34,0.113812726,220,1933,0.093557407,0.134068046,0.101333333,76,750,0.069163121,0.133503546,0.001122335,4,3564,,,891,,,,,,,,,,,3.052782535,,,,,,,,,3.168502643,2.88526569,,,,,,,,,2.973905534,,,,,,-147.5293,,,,,0.678534737,40288,59375,0.449809438,0.907260036,62982,,,56250.08511,69713.91489,,,,,,,,,,,,,68500,61508.34043,75491.65957,,,,,,,,,,,,,,,,0.26096345,,62982,,,,,218,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,300,,,-888,16,0.771863118,2030,2630,,,0.518,,,,,15.20282658,,,,,0.77275886,1112,1439,0.723381618,0.822136103,0.100292826,137,1366,0.056041873,0.144543779,0.84086171,1210,1439,0.810425388,0.871298031,3564,,,,,0.206228956,735,3564,,,0.258417508,921,3564,,,0.003367003,12,3564,,,0.025252525,90,3564,,,0.007856341,28,3564,,,0,0,3564,,,0.03956229,141,3564,,,0.902076319,3215,3564,,,0.000577201,2,3465,0,0.015263028,0.467732884,1667,3564,,,1,3539,3539,, -30,093,30093,MT,Silver Bow County,2024,1,9558.163095,647,97066,8383.301619,10733.02457,0,22348.15012,12217.94163,37496.39851,1,,,,2,,,,2,11091.87144,6208.036245,18294.35514,1,9468.081666,8216.449228,10719.7141,,,,,2,,0.146,,,0.12,0.175,3.562284393,,,2.833432101,4.368230373,5.366638165,,,4.444237476,6.354752947,0.100370218,244,2431,0.088424894,0.112315542,0,,,,,,,,,,0.120967742,0.063571637,0.178363847,0.09901915,0.086366977,0.111671323,,,,0.149253731,0.063927749,0.234579713,0.178,,,0.14,0.22,0.322,,,0.263,0.38,8.4,0.021905779,0.104,,,0.236,,,0.192,0.282,0.839694874,29501,35133,,,0.231116091,,,0.192384642,0.272818658,0.105263158,2,19,0.021173544,0.243494433,406.7,144,35411,,,16.99970176,114,6706,13.87905258,20.12035094,,,,,,,,,,21.59827214,10.35721101,39.71999145,15.84813654,12.75993095,19.45799981,,,,,,,0.092070879,2572,27935,0.078964496,0.105177262,0.000790715,28,35411,,,1264.678571,0.000914938,33,36068,,,1092.969697,0.006071864,219,36068,,,164.6940639,1736,,,,,,,,,1732,0.46,,,,,0.2,,,0.47,0.46,0.49,,,,,0.24,,,0.32,0.49,0.935345891,22742,24314,0.921476286,0.949215497,0.615825152,5269,8556,0.552351662,0.679298642,0.028855833,516,17882,,,0.169,1193,,0.109425532,0.228574468,,,,,,,,,,0.263157895,0.051025588,0.475290201,0.173116793,0.124158112,0.222075475,4.94944513,112392,22708,4.228683746,5.670206513,0.276799549,1965,7099,0.201581331,0.352017768,8.754341871,31,35411,,,115.3619911,202,175101,99.452982,131.2710002,,,,,,,,,,,,,119.8881044,102.7957747,136.9804342,,,,5.8,,,,,0,,,,,0.125457571,1885,15025,0.099668572,0.15124657,0.112656939,0.086394456,0.138919423,0.007986689,0.002217708,0.01375567,0.011980033,0.003662934,0.020297132,0.785100638,12794,16296,0.745943572,0.824257704,,,,,,,,,,,,,0.799591944,0.762064568,0.837119321,0.118,,16296,0.091092382,0.144907618,74.80816037,,,73.90451682,75.71180393,,,,,,,,,,,,,74.79928821,73.84411596,75.75446046,,,,485.2680909,647,97066,445.2714064,525.2647754,1258.832668,788.9037309,1905.887787,,,,,,,601.9709273,381.5979303,903.251956,476.7144617,435.4749701,517.9539532,,,,46.78289617,15,32063,26.18403185,77.16127272,,,,,,,,,,,,,55.14503143,30.86425548,90.95334316,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.112,,,0.095,0.131,0.166,,,0.142,0.192,0.087,,,0.074,0.102,59.5,18,30276,,,0.104,3630,,,,0.021905779,749.1776248,34200,,,32.22565541,34,105506,22.31720318,45.03212338,,,,,,,,,,,,,29.47958013,19.58896691,42.60620118,,,,0.33,,,0.312,0.346,0.103260089,2157,20889,0.086579238,0.11994094,0.060757781,449,7390,0.04288544,0.078630121,0.001358545,49,36068,,,736.0816327,0.86,282.08,328,,,,,,,,3.265026199,,,,,,,,3.097522224,3.271847284,3.133993309,,,,,,,,2.953585094,3.168096625,0.032046251,,,,,2416.903333,,,,,0.705206551,43275,61365,0.618997245,0.791415857,58898,,,53031.10638,64764.89362,24464,6371.234043,42556.76596,,,,,,,,,,57229,54290.78723,60167.21277,,,,,,,,,,,,,,,,0.266155048,,58898,,,4.88997555,10,2045,,,4.093730043,10,244276,1.963102677,7.528515303,,,,,,,,,,,,,,,,,,,36.91380554,63,175101,28.03020018,47.71965368,35.97923484,,,,,,,,,,,,,39.3022065,29.68846442,51.03718424,,,,25.69945346,45,175101,18.7453577,34.3878907,,,,,,,,,,,,,26.64180099,19.20106677,36.01197535,,,,14.32805515,35,244276,9.980015394,19.92685625,,,,,,,,,,,,,14.51629,9.929131613,20.49267022,,,,40,,3200,,,26,102,0.679213688,18658,27470,,,0.682,,,,,75.16651259,,,,,0.701458886,10578,15080,0.670688168,0.732229604,0.12844164,1852,14419,0.097856289,0.15902699,0.831697613,12542,15080,0.802724571,0.860670654,36068,,,,,0.19759898,7127,36068,,,0.196517689,7088,36068,,,0.005739159,207,36068,,,0.023095265,833,36068,,,0.00881668,318,36068,,,0.00102584,37,36068,,,0.045414218,1638,36068,,,0.900576689,32482,36068,,,0.004084943,136,33293,0,0.008964027,0.488383054,17615,36068,,,0.138758432,4875,35133,, -30,095,30095,MT,Stillwater County,2024,1,7675.454329,139,26096,5338.549371,10012.35929,0,,,,2,,,,2,,,,2,,,,2,8052.060608,5479.931868,10624.18935,,,,,2,,0.126,,,0.103,0.152,3.169884298,,,2.43354057,3.964686729,4.75790048,,,3.769461486,5.797688516,0.079365079,45,567,0.057115439,0.10161472,0,,,,,,,,,,,,,0.08,0.056793196,0.103206804,,,,,,,0.156,,,0.119,0.195,0.33,,,0.26,0.404,9.3,0.039999673,0.055,,,0.209,,,0.166,0.255,0.37163896,3331,8963,,,0.220190151,,,0.177951687,0.264660687,0.333333333,4,12,0.175768434,0.488588466,165.9,15,9044,,,11.85185185,24,2025,7.593705113,17.6346161,,,,,,,,,,,,,12.18836565,7.638383863,18.45333207,,,,,,,0.099143562,683,6889,0.08484569,0.113441435,0.000331712,3,9044,,,3014.666667,0.000326904,3,9177,,,3059,0.000653808,6,9177,,,1529.5,1489,,,,,,,,,1461,0.47,,,,,,,,,0.47,0.34,,,,,,,,,0.34,0.929336188,6076,6538,0.904708059,0.953964318,0.602046617,1059,1759,0.508121039,0.695972196,0.0224904,123,5469,,,0.096,177,,0.056680851,0.135319149,,,,,,,,,,0.2375,0,0.684011509,0.059802713,0.022784012,0.096821414,4.450259114,148563,33383,3.755855827,5.144662401,0.209051724,388,1856,0.122357018,0.29574643,14.37417072,13,9044,,,98.89115661,47,47527,72.66150224,131.5042741,,,,,,,,,,,,,102.5127002,74.77346695,137.1700583,,,,4,,,,,0,,,,,0.087239583,335,3840,0.059904322,0.114574844,0.074670185,0.050410688,0.098929682,0.009895833,0,0.02120837,0.009114583,0,0.019529468,0.619608767,2629,4243,0.579892789,0.659324746,,,,,,,,,,,,,0.550602747,0.503708043,0.597497452,0.353,,4243,0.287413949,0.418586051,78.13708922,,,76.08236667,80.19181176,,,,,,,,,,,,,77.68282569,75.49371215,79.87193923,,,,338.1865032,139,26096,273.7720606,402.6009458,,,,,,,,,,,,,345.275948,276.6789985,413.8728976,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.1,,,0.084,0.116,0.152,,,0.129,0.177,0.075,,,0.062,0.088,,,,,,0.055,490,,,,0.039999673,364.6770201,9117,,,,,,,,,,,,,,,,,,,,,,,,,,0.312,,,0.294,0.329,0.104537278,523,5003,0.087856427,0.121218129,0.086258776,172,1994,0.0612375,0.111280053,0.000435872,4,9177,,,2294.25,,,,,,,,,,,,,,,,,,,,,2.981309804,,,,,,,,,3.043751542,0.048420942,,,,,-273.01166,,,,,0.515873425,40039,77614,0.399095994,0.632650856,81147,,,71405.38298,90888.61702,,,,,,,,,,72944,10357.44681,135530.5532,80612,73374.89362,87849.10638,,,,,,,,,,,,,,,,0.210137159,,81147,,,2.525252525,1,396,,,,,,,,,,,,,,,,,,,,,,,,,,31.84183787,14,47527,16.95443761,54.45051252,29.45694027,,,,,,,,,,,,,34.9526409,18.61080921,59.77008042,,,,25.24880594,12,47527,13.04642647,44.10458276,,,,,,,,,,,,,27.33672005,14.12528216,47.75174852,,,,25.59508574,17,66419,14.91008065,40.98021171,,,,,,,,,,,,,26.00442075,14.86377333,42.22955012,,,,,,1100,,,-888,-888,0.765752508,5724,7475,,,0.567,,,,,9.31585539,,,,,0.837148119,3182,3801,0.783014737,0.891281501,0.082401091,302,3665,0.057684805,0.107117378,0.840042094,3193,3801,0.805913111,0.874171077,9177,,,,,0.203770295,1870,9177,,,0.249427918,2289,9177,,,0.002615234,24,9177,,,0.013838945,127,9177,,,0.006864989,63,9177,,,0.000653808,6,9177,,,0.046202463,424,9177,,,0.913588319,8384,9177,,,0.001045053,9,8612,0,0.00902643,0.486869347,4468,9177,,,1,8963,8963,, -30,097,30097,MT,Sweet Grass County,2024,1,5203.523412,39,9765,2844.81467,8730.628103,1,,,,2,,,,2,,,,2,,,,2,4972.739346,2482.373565,8897.604303,1,,,,2,,0.125,,,0.104,0.149,3.245631638,,,2.42754139,4.19112699,5.11116855,,,3.968630057,6.359018253,0.056122449,11,196,0.023900325,0.088344574,1,,,,,,,,,,,,,0.055248619,0.021964561,0.088532676,,,,,,,0.161,,,0.126,0.203,0.335,,,0.253,0.427,9.3,0.051040949,0.05,,,0.213,,,0.168,0.266,0.728113105,2678,3678,,,0.205938349,,,0.159879889,0.256634855,0.375,3,8,0.179126284,0.556186502,134.3,5,3723,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.10436079,280,2683,0.087679939,0.121041641,0.000805802,3,3723,,,1241,0.000269179,1,3715,,,3715,0.001615074,6,3715,,,619.1666667,1709,,,,,,,,,1714,0.41,,,,,,,,,0.42,0.23,,,,,,,,,0.23,0.960277671,2490,2593,0.9499923,0.970563041,0.593947037,471,793,0.464002069,0.723892004,0.02027027,39,1924,,,0.13,90,,0.074,0.186,,,,,,,,,,,,,0.039492243,0,0.108154256,3.299970282,111044,33650,2.240584683,4.359355882,0.053691275,40,745,0,0.10848123,13.43002955,5,3723,,,70.09975735,13,18545,37.32516846,119.87272,,,,,,,,,,,,,75.34484757,40.1179581,128.841984,,,,3.4,,,,,0,,,,,0.108910891,165,1515,0.065865764,0.151956019,0.086519115,0.044255894,0.128782336,0.009240924,0,0.025843755,0.015841584,0,0.033145149,0.741215839,1329,1793,0.684055642,0.798376037,,,,,,,,,,,,,0.663656885,0.596695803,0.730617967,0.269,,1793,0.189490959,0.348509041,82.5819567,,,79.71275445,85.45115895,,,,,,,,,,,,,82.51633764,79.59204311,85.44063217,,,,255.3234902,39,9765,170.9941485,366.687122,,,,,,,,,,,,,243.4905782,159.0561297,356.7701127,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.1,,,0.084,0.118,0.156,,,0.13,0.183,0.075,,,0.061,0.09,0,0,3247,,,0.05,180,,,,0.051040949,186.3505042,3651,,,,,,,,,,,,,,,,,,,,,,,,,,0.317,,,0.3,0.335,0.106924644,210,1964,0.087860814,0.125988473,0.099601594,75,753,0.066239892,0.132963296,0.000538358,2,3715,,,1857.5,,,,,,,,,,,2.829319723,,,,,,,,,2.947816001,2.688549648,,,,,,,,,2.743252998,,,,,,576.157,,,,,0.765521908,36200,47288,0.571027086,0.960016731,68006,,,58178.59575,77833.40426,,,,,,,,,,,,,64455,59438.82979,69471.17021,,,,,,,,,,,,,,,,0.252433609,,68006,,,,,204,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,37.5,,400,,,0,15,0.843448276,2446,2900,,,0.466,,,,,8.858502435,,,,,0.762793914,1103,1446,0.705167747,0.820420082,0.090974729,126,1385,0.048412776,0.133536683,0.858229599,1241,1446,0.818584811,0.897874387,3715,,,,,0.188963661,702,3715,,,0.285868102,1062,3715,,,0.004306864,16,3715,,,0.011843876,44,3715,,,0.009421265,35,3715,,,0.000269179,1,3715,,,0.029340511,109,3715,,,0.924629879,3435,3715,,,0.002581756,9,3486,0,0.01770966,0.489636608,1819,3715,,,1,3678,3678,, -30,099,30099,MT,Teton County,2024,1,10365.34648,92,16608,7370.774625,14169.76986,0,,,,2,,,,2,,,,2,,,,2,9709.943418,6800.724996,13442.65456,,,,,2,,0.141,,,0.117,0.168,3.39271293,,,2.628621229,4.254417424,5.058769987,,,4.033630049,6.179115771,0.100970874,52,515,0.07494907,0.126992677,0,,,,,,,,,,,,,0.10403397,0.076461291,0.13160665,,,,,,,0.179,,,0.14,0.223,0.323,,,0.256,0.397,7.1,0.182966565,0.087,,,0.239,,,0.193,0.291,0.51493736,3206,6226,,,0.2181413,,,0.176613383,0.264247909,0.75,3,4,0.567659215,0.8560462,,,,,,11.53846154,15,1300,6.457989333,19.03093759,,,,,,,,,,,,,8.278145695,3.969692629,15.22380467,,,,,,,0.123602485,597,4830,0.104538655,0.142666314,0.00031903,2,6269,,,3134.5,0.000471106,3,6368,,,2122.666667,0.001413317,9,6368,,,707.5555556,1422,,,,,,,,,1448,0.48,,,,,,,,,0.47,0.32,,,,,,,,,0.32,0.898424641,3821,4253,0.873310363,0.92353892,0.634012539,809,1276,0.540143623,0.727881455,0.026699893,75,2809,,,0.136,196,,0.077617021,0.194382979,,,,,,,,,,,,,0.235682819,0.141012656,0.330352983,3.472574421,100788,29024,2.839650295,4.105498547,0.092207792,142,1540,0.031861913,0.152553671,22.33211038,14,6269,,,132.6345756,41,30912,95.18086138,179.9337784,,,,,,,,,,,,,135.4354772,96.3078639,185.1447558,,,,5,,,,,0,,,,,0.114228457,285,2495,0.076449412,0.152007502,0.09233871,0.056590141,0.128087278,0.024048096,0.005088632,0.043007561,0.008016032,0,0.016142517,0.656228008,1865,2842,0.602739538,0.709716479,,,,,,,,,,,,,0.629688747,0.576307004,0.683070491,0.291,,2842,0.232265496,0.349734504,76.25381694,,,73.63682988,78.870804,,,,,,,,,,,,,76.49059085,73.89700692,79.08417477,,,,428.0917828,92,16608,337.8433404,535.0412774,,,,,,,,,,,,,424.1898441,331.9024282,534.1969055,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.109,,,0.092,0.127,0.165,,,0.141,0.193,0.081,,,0.067,0.095,,,,,,0.087,530,,,,0.182966565,1111.155952,6073,,,,,,,,,,,,,,,,,,,,,,,,,,0.312,,,0.294,0.33,0.13204703,438,3317,0.110600222,0.153493839,0.10727729,171,1594,0.073915588,0.140638992,0.002198493,14,6368,,,454.8571429,,,,,,,,,,,3.498580218,,,,,,,,,3.511133617,3.389406815,,,,,,,,,3.432911571,0.122472018,,,,,67.964725,,,,,0.71063821,34429,48448,0.607761627,0.813514793,57054,,,49224.7234,64883.2766,,,,,,,,,,51146,49975.95745,52316.04255,66418,59362,73474,,,,,,,,,,,,,,,,0.273740667,,57054,,,,,430,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,32.34989648,10,30912,15.51303279,59.49261142,,,,,,,,,,,,,,,,,,,34.82540862,15,43072,19.49151684,57.43921543,,,,,,,,,,,,,34.79298176,19.02164689,58.37671137,,,,10,,700,,,0,7,0.797183099,3679,4615,,,0.527,,,,,0.424888863,,,,,0.760146104,1873,2464,0.723997775,0.796294433,0.11135182,257,2308,0.067126157,0.155577483,0.823457792,2029,2464,0.784125924,0.86278966,6368,,,,,0.244346734,1556,6368,,,0.233668342,1488,6368,,,0.002512563,16,6368,,,0.019943467,127,6368,,,0.012719849,81,6368,,,0,0,6368,,,0.02245603,143,6368,,,0.920697236,5863,6368,,,0.001205857,7,5805,0,0.013305299,0.503140704,3204,6368,,,1,6226,6226,, -30,101,30101,MT,Toole County,2024,1,7440.027858,88,13299,5152.435575,10396.6932,0,,,,2,,,,2,,,,2,,,,2,6928.769575,4674.811737,9891.249399,,,,,2,,0.152,,,0.126,0.179,3.679008088,,,2.87100377,4.462162068,4.762936145,,,3.762346826,5.725641734,0.118090452,47,398,0.086385,0.149795904,0,,,,,,,,,,,,,0.113314448,0.080247342,0.146381553,,,,,,,0.189,,,0.147,0.233,0.319,,,0.251,0.389,8.3,0.078892909,0.081,,,0.239,,,0.192,0.287,0.666063166,3311,4971,,,0.225869398,,,0.183097354,0.269063181,0,0,2,0,0.510593623,139.7,7,5011,,,16.68806162,13,779,8.885689976,28.53709361,,,,,,,,,,,,,14.64128843,7.021066905,26.92585072,,,,,,,0.120454546,424,3520,0.101390716,0.139518375,0.000598683,3,5011,,,1670.333333,0.000787092,4,5082,,,1270.5,0.001574183,8,5082,,,635.25,1365,,,,,,,,,1383,0.34,,,,,,,,,0.34,0.18,,,,,,,,,0.18,0.873663478,3105,3554,0.830085651,0.917241305,0.510309278,693,1358,0.395836761,0.624781796,0.019971469,42,2103,,,0.17,175,,0.099702128,0.240297872,,,,,,,,,,,,,0.138554217,0.049178515,0.227929919,4.320765496,105889,24507,2.729592382,5.911938609,0.077444337,80,1033,0,0.15976556,7.982438635,4,5011,,,66.1922886,16,24172,37.83461217,107.4921297,,,,,,,,,,,,,71.96660749,40.27916391,118.6979747,,,,5.3,,,,,0,,,,,0.131506849,240,1825,0.07616144,0.186852258,0.082191781,0.02912947,0.135254092,0.023013699,0.004522699,0.041504699,0.043287671,0.013954347,0.072620995,0.739693193,1543,2086,0.67279485,0.806591535,,,,,,,,,,,,,0.732325695,0.665719761,0.798931628,0.143,,2086,0.086734446,0.199265554,77.20796598,,,74.71171829,79.70421367,,,,,,,,,,,,,77.39848044,74.8620187,79.93494218,,,,458.5598407,88,13299,363.0461442,571.5023816,,,,,,,,,,,,,451.7476441,352.818658,569.8181842,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.114,,,0.096,0.133,0.159,,,0.135,0.182,0.086,,,0.073,0.101,,,,,,0.081,410,,,,0.078892909,420.0258488,5324,,,,,,,,,,,,,,,,,,,,,,,,,,0.331,,,0.314,0.347,0.136345136,335,2457,0.112515349,0.160174924,0.082733813,92,1112,0.055329558,0.110138068,0.000787092,4,5082,,,1270.5,,,,,,,,,,,3.039465372,,,,,,,,,3.056220989,3.131566576,,,,,,,,,3.258482616,0.072446455,,,,,1673.525633,,,,,0.995600408,40054,40231,0.612039245,1.37916157,49850,,,42845.23404,56854.76596,32969,31161.51064,34776.48936,,,,,,,86711,38126.82979,135295.1702,54598,44224.89362,64971.10638,,,,,,,,,,,,,,,,0.285777332,,49850,,,3.378378378,1,296,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,27.5,,400,,,0,11,0.548253558,2119,3865,,,0.471,,,,,8.451188812,,,,,0.64902507,1165,1795,0.580771785,0.717278355,0.102781137,170,1654,0.03148078,0.174081494,0.870194986,1562,1795,0.814902673,0.925487299,5082,,,,,0.210547029,1070,5082,,,0.17965368,913,5082,,,0.014954742,76,5082,,,0.065131838,331,5082,,,0.00806769,41,5082,,,0.000590319,3,5082,,,0.044470681,226,5082,,,0.841794569,4278,5082,,,0.00296359,14,4724,0,0.018379999,0.40850059,2076,5082,,,1,4971,4971,, -30,103,30103,MT,Treasure County,2024,0,,,,,,2,,,,2,,,,2,,,,2,,,,2,,,,2,,,,2,,0.149,,,0.122,0.179,3.647889454,,,2.818138305,4.573843995,4.946617425,,,3.872710579,6.086092239,,,,,,0,,,,,,,,,,,,,,,,,,,,,,0.179,,,0.139,0.224,0.344,,,0.266,0.429,4.4,0.447876448,0.083,,,0.238,,,0.19,0.293,,,762,,,0.183282555,,,0.145684575,0.223063028,0.2,1,5,0.015594715,0.47750127,0,0,768,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.133828996,72,538,0.113573677,0.154084315,0,0,768,,,-768,0,0,758,,,-758,0,0,758,,,-758,,,,,,,,,,,0.3,,,,,,,,,0.31,0.43,,,,,,,,,0.44,0.940520446,506,538,0.890359454,0.990681438,0.797202797,114,143,0.574466652,1,0.02,7,350,,,0.174,30,,0.09893617,0.24906383,,,,,,,,,,0.785714286,0.644058599,0.927369972,0.086538462,0.010232002,0.162844922,2.944541213,94667,32150,1.835897209,4.053185217,0.237288136,28,118,0.066639399,0.407936872,0,0,768,,,,,,,,,,,,,,,,,,,,,,,,,,4.6,,,,,1,,,,,0.119402985,40,335,0.033494039,0.205311931,0.129909366,0,0.260024099,0,0,0.078247063,0,0,0.055329029,0.71468144,258,361,0.604109025,0.825253856,,,,,,,,,,,,,0.679054054,0.547344333,0.810763775,0.151,,361,0.008792862,0.293207138,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.113,,,0.095,0.133,0.165,,,0.14,0.192,0.085,,,0.071,0.1,0,0,626,,,0.083,60,,,,0.447876448,321.5752897,718,,,,,,,,,,,,,,,,,,,,,,,,,,0.312,,,0.293,0.329,0.144772118,54,373,0.119750841,0.169793395,0.105882353,18,170,0.071329162,0.140435544,0,0,758,,,-758,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1.118499477,49167,43958,0.792758307,1.444240647,60454,,,52615.19149,68292.80851,,,,,,,,,,26250,10350.76596,42149.23404,71538,62458.85106,80617.14894,,,,,,,,,,,,,,,,0.247047342,,60454,,,,,42,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,,-888,-888,0.844036697,460,545,,,0.543,,,,,1.138475969,,,,,0.681681682,227,333,0.61817696,0.745186404,0.101886793,27,265,0,0.270706506,0.744744745,248,333,0.646156764,0.843332726,758,,,,,0.22823219,173,758,,,0.310026385,235,758,,,0,0,758,,,0.029023747,22,758,,,0.01055409,8,758,,,0,0,758,,,0.055408971,42,758,,,0.886543536,672,758,,,0,0,651,0,0.080530771,0.492084433,373,758,,,1,762,762,, -30,105,30105,MT,Valley County,2024,1,9335.610502,126,19868,6757.926023,11913.29498,0,31441.00321,18315.54301,50340.09188,1,,,,2,,,,2,,,,2,7543.279226,5192.446331,10593.5686,,,,,2,,0.151,,,0.128,0.178,3.640378275,,,2.887154328,4.513122289,4.834309314,,,3.897854218,5.874171558,0.057450628,32,557,0.038125254,0.076776003,0,,,,,,,,,,,,,0.046357616,0.026995167,0.065720065,,,,,,,0.186,,,0.15,0.225,0.365,,,0.3,0.435,7.5,0.143809041,0.089,,,0.25,,,0.207,0.3,0.593428345,4497,7578,,,0.205093023,,,0.168474259,0.245382081,0.384615385,5,13,0.234541684,0.524881883,119.4,9,7537,,,21.16402116,32,1512,14.47617481,29.87728312,44.24778761,21.21853405,81.37325682,,,,,,,,,,16.20162016,9.602106913,25.6055448,,,,,,,0.106761566,600,5620,0.091272204,0.122250928,0.000928752,7,7537,,,1076.714286,0.000266205,2,7513,,,3756.5,0.001331026,10,7513,,,751.3,1616,,,,,,,,,1531,0.52,,,,,0.26,,,,0.54,0.18,,,,,0.24,,,,0.18,0.93263863,5012,5374,0.905620794,0.959656467,0.672150411,1144,1702,0.56555022,0.778750603,0.024919013,100,4013,,,0.144,231,,0.083234043,0.204765957,0.45,0.262559939,0.637440061,,,,,,,0.222222222,0.018417674,0.426026771,0.110055424,0.039839239,0.180271609,3.98459379,116386,29209,3.062379815,4.906807764,0.161574618,275,1702,0.05487607,0.268273166,11.94109062,9,7537,,,137.2369625,51,37162,102.1819327,180.4412609,,,,,,,,,,,,,130.3615147,93.54967368,176.8501147,,,,4.6,,,,,0,,,,,0.082706767,275,3325,0.050320375,0.115093159,0.078220859,0.046457432,0.109984285,0.006616541,0.00020178,0.013031302,0.001203008,0,0.006765391,0.675402025,2268,3358,0.614964388,0.735839662,,,,,,,,,,,,,0.669371197,0.591964237,0.746778156,0.171,,3358,0.126963224,0.215036776,77.07847179,,,74.9638051,79.19313849,,,,,,,,,,,,,78.74512921,76.57930269,80.91095573,,,,450.5002339,126,19868,362.9356281,538.0648397,1612.723233,1062.794773,2346.427633,,,,,,,,,,368.3190053,288.703305,463.1058518,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.116,,,0.1,0.133,0.17,,,0.147,0.193,0.086,,,0.073,0.1,,,,,,0.089,670,,,,0.143809041,1059.728823,7369,,,,,,,,,,,,,,,,,,,,,,,,,,0.347,,,0.331,0.362,0.11997992,478,3984,0.099724601,0.140235239,0.075986079,131,1724,0.053347781,0.098624377,0.001996539,15,7513,,,500.8666667,,,,,,,,,,,2.889371912,,,,,,,,,3.058974775,2.906499192,,,,,,,,,3.054208042,0.283227466,,,,,3667.374,,,,,0.744154952,40072,53849,0.595647041,0.892662863,79703,,,76432.3617,82973.6383,31667,14449.97872,48884.02128,,,,,,,,,,61393,54018.87234,68767.12766,,,,,,,,,,,,,,,,0.176706021,,79703,,,2.173913044,1,460,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,28.64782277,15,52360,16.03396893,47.25022703,,,,,,,,,,,,,31.57348729,17.26151931,52.97494671,,,,41.25,,800,,,0,33,0.743630018,4261,5730,,,0.423,,,,,19.55259194,,,,,0.7571479,2145,2833,0.710455992,0.803839808,0.068696621,185,2693,0.035504473,0.101888769,0.834804095,2365,2833,0.781817686,0.887790503,7513,,,,,0.216824171,1629,7513,,,0.248103288,1864,7513,,,0.005457208,41,7513,,,0.09037668,679,7513,,,0.009050978,68,7513,,,0.000532411,4,7513,,,0.027818448,209,7513,,,0.84160788,6323,7513,,,0.000140213,1,7132,0,0.009858596,0.494742446,3717,7513,,,1,7578,7578,, -30,107,30107,MT,Wheatland County,2024,1,13444.65379,41,5669,7524.870664,22174.91182,1,,,,2,,,,2,,,,2,,,,2,14084.79899,7499.562266,24085.43523,1,,,,2,,0.175,,,0.148,0.205,4.063118199,,,3.216753457,5.031279117,5.325904084,,,4.261452217,6.529636022,0.077348066,14,181,0.038429175,0.116266958,1,,,,,,,,,,,,,0.073863636,0.035222264,0.112505009,,,,,,,0.21,,,0.169,0.254,0.371,,,0.292,0.456,6.6,0.163446499,0.119,,,0.263,,,0.216,0.313,0.606089899,1254,2069,,,0.193162423,,,0.15611983,0.23597646,0,0,2,0,0.510593623,194.3,4,2059,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.170409511,258,1514,0.144196745,0.196622277,,0,2059,,,,0,0,2032,,,-2032,0.001476378,3,2032,,,677.3333333,,,,,,,,,,,0.29,,,,,,,,,0.29,0.31,,,,,,,,,0.3,0.923784494,1406,1522,0.894379295,0.953189693,0.439506173,178,405,0.273019089,0.605993257,0.037037037,28,756,,,0.209,97,,0.118446809,0.299553192,,,,,,,,,,,,,0.289325843,0.129622561,0.449029125,9.309248307,108611,11667,0,22.60362761,0.208816705,90,431,0.15373323,0.263900181,0,0,2059,,,149.2815824,16,10718,85.32732276,242.4239373,,,,,,,,,,,,,155.0708157,86.79195837,255.765728,,,,3.7,,,,,0,,,,,0.173184358,155,895,0.093885025,0.25248369,0.141975309,0.050783006,0.233167612,0.026815643,0,0.06257914,0.027932961,0,0.056243391,0.506097561,415,820,0.398029266,0.614165856,,,,,,,,,,,,,0.500667557,0.407574502,0.593760612,0.176,,820,0.07850879,0.27349121,74.21925764,,,69.35527049,79.08324478,,,,,,,,,,,,,73.59687841,68.40265912,78.7910977,,,,509.5106518,41,5669,346.1877681,723.2096998,,,,,,,,,,,,,536.5524134,359.3375721,770.578767,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.129,,,0.111,0.149,0.178,,,0.153,0.204,0.095,,,0.081,0.112,0,0,1735,,,0.119,250,,,,0.163446499,354.3520089,2168,,,,,,,,,,,,,,,,,,,,,,,,,,0.328,,,0.31,0.346,0.183111955,193,1054,0.152133231,0.214090678,0.13877551,68,490,0.092307425,0.185243595,0.001476378,3,2032,,,677.3333333,,,,,,,,,,,2.891812447,,,,,,,,,2.944901569,2.939090194,,,,,,,,,2.99359484,,,,,,-10798.92,,,,,0.769230769,37500,48750,0.305985555,1.232475984,44002,,,38027.87234,49976.12766,,,,,,,,,,,,,48208,35435.23404,60980.76596,,,,,,,,,,,,,,,,0.320167265,,44002,,,,,92,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,200,,,0,0,0.631952663,1068,1690,,,0.327,,,,,3.071330257,,,,,0.773714286,677,875,0.687218001,0.860210571,0.131914894,93,705,0.024135553,0.239694234,0.771428571,675,875,0.717136068,0.825721075,2032,,,,,0.246555118,501,2032,,,0.25,508,2032,,,0.00492126,10,2032,,,0.026574803,54,2032,,,0.005905512,12,2032,,,0,0,2032,,,0.047244095,96,2032,,,0.897637795,1824,2032,,,0,0,2000,0,0.026212766,0.486220472,988,2032,,,1,2069,2069,, -30,109,30109,MT,Wibaux County,2024,0,,,,,,2,,,,2,,,,2,,,,2,,,,2,,,,2,,,,2,,0.141,,,0.116,0.167,3.506490551,,,2.665898941,4.363819228,4.940284676,,,3.848488792,6.064673109,,,,,,0,,,,,,,,,,,,,,,,,,,,,,0.175,,,0.136,0.217,0.33,,,0.251,0.412,4.5,0.442493412,0.081,,,0.229,,,0.181,0.28,,,937,,,0.195774264,,,0.155745211,0.238028422,0,0,1,0,0.662081041,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.112716763,78,692,0.093652933,0.131780593,0,0,934,,,-934,0,0,919,,,-919,0,0,919,,,-919,1656,,,,,,,,,1678,0.26,,,,,,,,,0.27,0.31,,,,,,,,,0.31,0.95084088,735,773,0.879664418,1,0.411764706,84,204,0.259718288,0.563811124,0.024444444,11,450,,,0.191,37,,0.120702128,0.261297872,,,,,,,,,,0.617647059,0.089386339,1,0.285123967,0.064834081,0.505413853,4.934303935,123027,24933,2.056251983,7.812355886,0.040133779,12,299,0,0.113227366,0,0,934,,,,,,,,,,,,,,,,,,,,,,,,,,4,,,,,1,,,,,0.061052632,29,475,0,0.137662073,0.059447983,0,0.153506308,0.008421053,0,0.06358821,0,0,0.039021525,0.832310838,407,489,0.700816367,0.96380531,,,,,,,,,,,,,0.805232558,0.652901912,0.957563205,0.236,,489,0.099893526,0.372106474,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.109,,,0.091,0.127,0.162,,,0.137,0.187,0.08,,,0.066,0.095,0,0,799,,,0.081,80,,,,0.442493412,450.0158,1017,,,,,,,,,,,,,,,,,,,,,,,,,,0.305,,,0.287,0.324,0.118343195,60,507,0.096896387,0.139790004,0.102564103,20,195,0.065627932,0.139500273,0,0,919,,,-919,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6290.862,,,,,0.72234074,44018,60938,0.458256651,0.986424828,56317,,,48163.6383,64470.3617,,,,,,,,,,60278,20222.51064,100333.4894,56667,21649.12766,91684.87234,,,,,,,,,,,,,,,,0.305378483,,56317,,,,,55,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,100,,,0,-888,0.776623377,598,770,,,0.421,,,,,4.707214518,,,,,0.744635193,347,466,0.66883653,0.820433856,0.122891566,51,415,0,0.246408904,0.800429185,373,466,0.689987458,0.910870911,919,,,,,0.213275299,196,919,,,0.241566921,222,919,,,0.004352557,4,919,,,0.014145811,13,919,,,0.008705114,8,919,,,0.001088139,1,919,,,0.034820457,32,919,,,0.916213275,842,919,,,0.006815969,7,1027,0,0.05785239,0.487486398,448,919,,,1,937,937,, -30,111,30111,MT,Yellowstone County,2024,1,9119.863579,2433,456155,8582.500509,9657.226649,0,28213.59269,23780.83652,32646.34885,,,,,2,26223.69196,16232.87864,40085.69879,1,9814.941603,7572.540393,12057.34281,,8223.528825,7663.630708,8783.426941,,,,,2,,0.133,,,0.112,0.157,3.631797176,,,3.000111549,4.332771902,5.199625306,,,4.460594164,5.94007459,0.077023499,1003,13022,0.072443934,0.081603063,0,0.088621444,0.070196686,0.107046202,0.084745763,0.034494736,0.134996789,,,,0.09214355,0.074488547,0.109798553,0.074173713,0.069139145,0.07920828,,,,0.070422535,0.04612569,0.094719381,0.155,,,0.123,0.188,0.327,,,0.287,0.369,8.6,0.063663362,0.074,,,0.204,,,0.17,0.239,0.80828138,133149,164731,,,0.230450943,,,0.200942758,0.261118929,0.454545455,45,99,0.407933936,0.499577418,442.7,740,167146,,,17.18860372,584,33976,15.79451553,18.58269191,44.64285714,35.89812903,54.87365069,,,,,,,30.28193526,24.25458877,37.35265527,13.40462664,12.02183358,14.7874197,,,,24.375,17.33300781,33.32142742,0.09604624,13011,135466,0.085322836,0.106769645,0.001076903,180,167146,,,928.5888889,0.001000871,170,169852,,,999.1294118,0.00425076,722,169852,,,235.2520776,2103,,,,,3090,2242,,2373,2048,0.49,,,,,0.33,0.32,,0.34,0.5,0.52,,,,,0.4,0.48,0.17,0.43,0.52,0.953024924,108175,113507,0.946860321,0.959189527,0.698978214,31057,44432,0.659886118,0.73807031,0.024281467,2107,86774,,,0.102,3862,,0.06387234,0.14012766,0.474007826,0.407373052,0.5406426,0.321715818,0.073857244,0.569574391,,,,0.198711832,0.117589068,0.279834596,0.094905201,0.076539957,0.113270444,4.294833972,136842,31862,4.029074756,4.560593187,0.208961485,7970,38141,0.179423344,0.238499626,13.10231773,219,167146,,,102.7693439,833,810553,95.79028032,109.7484075,233.6168683,184.6644399,291.5644245,,,,,,,49.91992013,31.98463476,74.27688415,100.1893104,92.75122652,107.6273942,,,,6,,,,,1,,,,,0.138143875,9400,68045,0.122834396,0.153453355,0.114568704,0.101105261,0.128032147,0.01778235,0.012923897,0.022640802,0.01499008,0.010394178,0.019585982,0.786458145,65173,82869,0.773690838,0.799225452,0.632023504,0.553799654,0.710247353,,,,,,,0.742245989,0.680458524,0.804033455,0.806996562,0.797259969,0.816733154,0.139,,82869,0.123238077,0.154761923,76.32550297,,,75.88455774,76.76644819,62.51067672,60.24355677,64.77779667,,,,,,,73.41345642,71.34027368,75.48663917,77.12420005,76.65779917,77.59060092,,,,424.4730224,2433,456155,406.8532579,442.092787,1162.918649,994.408878,1331.428419,,,,1711.31721,957.8112517,2822.557489,540.1523714,431.8374433,648.4672995,390.8296187,373.0061645,408.6530729,,,,56.79689671,94,165502,45.89767399,69.5050173,131.1938642,69.8552073,224.3455033,,,,,,,,,,55.1063947,42.95813812,69.62361453,,,,5.750605327,76,13216,4.530822933,7.197740085,,,,,,,,,,,,,4.817228677,3.58674316,6.333766069,,,,,,,0.109,,,0.094,0.126,0.163,,,0.141,0.185,0.08,,,0.069,0.093,100.8,141,139939,,,0.074,12160,,,,0.063663362,9420.395044,147972,,,25.63914732,126,491436,21.16227842,30.11601621,87.95934324,52.13028137,139.0136839,,,,,,,,,,22.36114679,18.07008278,27.36438053,,,,0.309,,,0.293,0.324,0.109226246,10624,97266,0.094928373,0.123524118,0.06511244,2603,39977,0.049623078,0.080601801,0.002095942,356,169852,,,477.1123596,0.834614225,1384.625,1659,,,0.063016027,519,8236,0.031495719,0.094536336,2.837786021,,,,,,,,2.449566983,2.97038464,2.889465991,,,,,,,,2.552059181,3.001440197,0.051898447,,,,,-592.3615643,,,,,0.730667263,45750,62614,0.691964187,0.769370339,78216,,,74267.40426,82164.59575,41933,24363.29787,59502.70213,75313,6801.170213,143824.8298,34571,5317.553192,63824.44681,51769,43578.70213,59959.29787,73920,70670.80851,77169.19149,,,,,,,,,,,75.08340481,,,,,0.248350721,,78216,,,3.652968037,36,9855,,,4.617961383,52,1126038,3.448914442,6.055841965,24.11487449,12.03805846,43.14817168,,,,,,,,,,3.506864688,2.428605741,4.900491899,,,,26.8895432,221,810553,23.24782873,30.53125768,27.26533614,49.07877729,28.05276179,79.70085952,,,,,,,,,,26.09515445,22.22888671,29.96142218,,,,19.986355,162,810553,16.90861335,23.06409664,35.94105667,18.57126845,62.781793,,,,,,,,,,19.54913373,16.26353793,22.83472953,,,,14.91956755,168,1126038,12.66347108,17.17566401,43.84522635,26.78180332,67.71539604,,,,,,,,,,13.71802951,11.38660164,16.04945738,,,,24.59770115,,17400,,,82,346,0.689742851,83821,121525,,,0.726,,,,,96.38686638,,,,,0.695317908,47210,67897,0.680402376,0.71023344,0.112788486,7531,66771,0.099823431,0.125753541,0.89080519,60483,67897,0.874683329,0.906927051,169852,,,,,0.227774769,38688,169852,,,0.180486541,30656,169852,,,0.00606999,1031,169852,,,0.051892236,8814,169852,,,0.008554506,1453,169852,,,0.001030309,175,169852,,,0.065610061,11144,169852,,,0.848450416,144111,169852,,,0.002668052,416,155919,0.001361923,0.003974181,0.503838636,85578,169852,,,0.164844504,27155,164731,, -31,000,31000,NE,Nebraska,2024,,6820.30377,23072,5439767,6688.696107,6951.911433,0,21570.85945,19046.07202,24095.64688,,3155.071684,2645.638992,3664.504375,,12244.55243,11469.4647,13019.64016,,5427.379576,5088.899704,5765.859449,,6625.714486,6476.383982,6775.044991,,13872.85491,7929.535242,22528.64724,1,,0.133,,,0.126,0.142,2.936924856,,,2.772084133,3.10176558,4.288800684,,,4.086006295,4.491595073,0.075001422,13189,175850,0.073770331,0.076232513,0,0.0774942,0.066205301,0.088783099,0.085648529,0.078615965,0.092681093,0.141778087,0.13540761,0.148148563,0.0734621,0.070548643,0.076375558,0.067535811,0.066118448,0.068953173,0.112149533,0.069871202,0.154427864,0.095812322,0.087270195,0.104354449,0.139,,,0.131,0.148,0.363,,,0.351,0.375,8,0.056493586,0.1,,,0.235,,,0.225,0.245,0.842119618,1651821,1961504,,,0.221028033,,,0.210513232,0.231913753,0.321551724,373,1160,0.307168011,0.335992233,453.1,8897,1963692,,,16.00841856,7302,456135,15.6412347,16.37560243,45.61403509,39.60010428,51.62796589,8.677119805,7.084253815,10.2699858,30.47994846,28.30863583,32.6512611,37.31106357,35.90446336,38.71766377,9.412677257,9.079058471,9.746296044,,,,28.10424119,25.47819961,30.73028276,0.084520599,135758,1606212,0.079754641,0.089286556,0.000744516,1462,1963692,,,1343.154583,0.000821679,1617,1967923,,,1217.021027,0.003200329,6298,1967923,,,312.4679263,2249,,,,,5459,1360,3749,2217,2188,0.5,,,,,0.22,0.42,0.43,0.31,0.51,0.49,,,,,0.26,0.51,0.4,0.35,0.5,0.918726549,1178988,1283285,0.916688868,0.920764231,0.722391812,364909,505140,0.713246234,0.731537391,0.023456608,24839,1058934,,,0.135,63073,,0.123085106,0.146914894,0.2666346,0.219922342,0.313346858,0.1140832,0.082841079,0.14532532,0.304692419,0.268051693,0.341333144,0.207236992,0.192443523,0.222030462,0.074860346,0.070057914,0.079662778,4.227073002,134683,31862,4.15797789,4.296168115,0.2035845,97507,478951,0.196209009,0.210959992,13.56628229,2664,1963692,,,62.86011889,6088,9684996,61.28107592,64.43916186,141.8457212,115.9204451,167.7709973,17.64581324,12.87097726,23.61148644,76.57275575,68.68458936,84.46092215,39.09039451,35.40840814,42.77238088,67.08168397,65.23697367,68.92639426,,,,5.8,,,,,0.244444444,,,,,0.122322005,93780,766665,0.119180811,0.1254632,0.097825299,0.094932351,0.100718247,0.019571782,0.018244178,0.020899385,0.012691332,0.011436823,0.013945841,0.783088817,786720,1004637,0.779383087,0.786794548,0.766263751,0.730426801,0.802100702,0.65172209,0.628951135,0.674493046,0.722292562,0.698005642,0.746579482,0.761048746,0.748017704,0.774079789,0.797228627,0.793336472,0.801120783,0.19,,1004637,0.18623218,0.19376782,78.43790985,,,78.31425108,78.56156863,67.31381462,65.52001938,69.10760986,86.97391185,85.2308669,88.71695679,72.99065167,72.32553822,73.65576511,82.97525701,82.11402927,83.83648475,78.54502979,78.40975025,78.68030934,,,,345.1639836,23072,5439767,340.5608478,349.7671194,948.5841847,855.0983037,1042.070066,173.9450423,149.8058223,198.0842623,581.2758564,551.191688,611.3600249,272.5538348,256.103762,289.0039077,339.5973954,334.5831303,344.6116606,648.0868605,401.1759812,990.6696096,50.54580061,1075,2126784,47.52420098,53.56740024,107.9214332,69.84106129,159.3133248,18.68238251,9.326178038,33.42794292,107.0995073,89.03289774,125.166117,45.82653096,39.05609366,52.59696825,47.93476452,44.36839011,51.50113892,,,,5.638718075,1005,178232,5.290097174,5.987338977,13.79617268,9.373829986,19.58256587,,,,11.70798898,9.740243507,13.67573446,5.22383125,4.409283278,6.038379223,5.127830652,4.728041315,5.527619988,,,,7.208830818,4.930834943,10.1767182,0.086868492,,,0.080492464,0.093698116,0.13617767,,,0.127616543,0.145217516,0.086,,,0.081,0.092,147.1,2384,1621037,,,0.1,195670,,,,0.056493586,103176.5525,1826341,,,10.09313098,589,5835652,9.278005757,10.90825621,,,,,,,21.14524007,16.17443317,27.16194547,4.993347099,3.458038024,6.977702076,10.54998225,9.605181902,11.49478259,,,,0.289103802,,,0.27727633,0.30122551,0.100680438,113740,1129713,0.094722992,0.106637885,0.048336083,24146,499544,0.041187146,0.055485019,0.001577298,3104,1967923,,,633.9958119,0.863248592,20696.385,23975,,,0.04164857,4603,110520,0.035761411,0.04753573,3.118975253,,,,,,3.154993866,2.462127502,2.716759362,3.321490877,3.187647137,,,,,,3.29468767,2.396159286,2.718172622,3.41597838,0.259210706,,,,,769.336,,,,,0.794637128,47060,59222,0.785664973,0.803609283,69828,,,68479.23404,71176.76596,51824,41835.74468,61812.25532,80914,76025.31915,85802.68085,45287,42267.76596,48306.23404,61091,59111.93617,63070.06383,74978,74315.53192,75640.46809,,,,,,0.412942424,135116,327203,,,64.77629579,,,,,0.283517382,,,,,7.400289112,,,,,3.128636948,422,13488302,2.830129607,3.427144289,15.08549929,8.787859252,24.15334571,,,,24.12897475,20.35459917,27.90335033,3.911364503,2.977511884,5.045375233,1.649795388,1.405358282,1.894232493,,,,14.79727207,1426,9684996,14.01220472,15.58233943,14.72380577,32.6341427,21.31770548,47.81658024,6.166033309,3.451082036,10.16993424,9.57319238,6.899515021,12.94017504,8.573414229,6.683396992,10.83199311,16.10791815,15.17997388,17.03586242,,,,9.757360767,945,9684996,9.135243107,10.37947843,14.80129265,7.648043897,25.85487955,,,,22.84491056,18.53633557,27.15348554,4.965292605,3.74053791,6.463010825,9.98302226,9.271387401,10.69465712,,,,12.46265097,1681,13488302,11.86687546,13.05842648,35.49529244,25.35835732,48.33451382,,,,15.36877373,12.35649408,18.38105338,13.98810017,12.10065833,15.87554201,12.3310421,11.66277208,12.99931212,,,,16.71669794,,213200,,,3564,,0.696280468,956383,1373560,,,,,,,,125.8270392,,,,,0.665462358,516651,776379,0.661217148,0.669707568,0.108912427,82168,754441,0.105609076,0.112215778,0.883635441,686036,776379,0.881234134,0.886036748,1967923,,,,,0.2422234,476677,1967923,,,0.169242394,333056,1967923,,,0.049986204,98369,1967923,,,0.016435602,32344,1967923,,,0.028248565,55591,1967923,,,0.001400969,2757,1967923,,,0.123235005,242517,1967923,,,0.769364452,1514050,1967923,,,0.025767255,47196,1831627,0.024491673,0.027042837,0.49659006,977251,1967923,,,0.269946429,529501,1961504,, -31,001,31001,NE,Adams County,2024,1,7617.228658,434,86123,6515.197716,8719.259599,0,,,,2,,,,2,,,,2,,,,2,7910.885746,6683.290029,9138.481462,,,,,2,,0.13,,,0.109,0.153,3.127470092,,,2.508532042,3.757980441,4.105212651,,,3.418804118,4.796571293,0.073251942,198,2703,0.06342941,0.083074475,0,,,,,,,,,,0.076305221,0.052987679,0.099622763,0.072041985,0.060972754,0.083111215,,,,,,,0.17,,,0.134,0.207,0.376,,,0.324,0.421,7.3,0.121812124,0.11,,,0.278,,,0.234,0.324,0.849222881,26500,31205,,,0.185479083,,,0.154588966,0.215526574,0.45,9,20,0.336869521,0.553114298,373.9,116,31027,,,19.93730408,159,7975,16.8382872,23.03632096,,,,,,,,,,46.19124797,34.98480013,59.84611945,14.42612556,11.61501641,17.71208543,,,,,,,0.091964989,2217,24107,0.078858606,0.105071372,0.00090244,28,31027,,,1108.107143,0.000678076,21,30970,,,1474.761905,0.004036164,125,30970,,,247.76,1850,,,,,,,,,1858,0.54,,,,,,0.64,,0.33,0.54,0.58,,,,,,0.58,,0.47,0.59,0.924150814,18800,20343,0.909106899,0.939194729,0.70430927,5083,7217,0.639180803,0.769437737,0.022291522,386,17316,,,0.132,939,,0.083148936,0.180851064,,,,,,,0.028985507,0,0.305125171,0.291028446,0.147877222,0.434179671,0.096586647,0.058982203,0.134191091,4.897932248,122463,25003,4.334991026,5.460873471,0.256168745,1931,7538,0.182907231,0.329430259,13.21429723,41,31027,,,69.47100064,109,156900,56.42893515,82.51306613,,,,,,,,,,,,,71.969413,58.29545559,87.88697129,,,,6.3,,,,,1,,,,,0.138052405,1765,12785,0.113002052,0.163102759,0.103829451,0.08197646,0.125682442,0.025811498,0.01332832,0.038294676,0.018771998,0.011858433,0.025685564,0.835090957,12670,15172,0.813315766,0.856866148,,,,,,,,,,0.84858681,0.841229615,0.855944005,0.840860706,0.814159692,0.867561719,0.167,,15172,0.140868598,0.193131402,77.55064704,,,76.57549261,78.52580148,,,,,,,,,,91.80314983,71.70380894,111.9024907,77.21489966,76.16985775,78.25994157,,,,387.8813038,434,86123,349.2716029,426.4910048,,,,,,,,,,,,,404.6872027,362.0480428,447.3263626,,,,59.05628064,20,33866,36.07311045,91.20763569,,,,,,,,,,,,,62.28831705,35.60315511,101.1523245,,,,7.997091967,22,2751,5.011734959,12.10769334,,,,,,,,,,,,,,,,,,,,,,0.097,,,0.082,0.112,0.135,,,0.116,0.155,0.093,,,0.08,0.107,30.9,8,25889,,,0.11,3440,,,,0.121812124,3820.515456,31364,,,10.67110585,10,93711,5.117210035,19.62454359,,,,,,,,,,,,,,,,,,,0.32,,,0.306,0.335,0.110129564,1870,16980,0.093448713,0.126810415,0.05130946,384,7484,0.035820099,0.066798822,0.001743623,54,30970,,,573.5185185,0.892538071,351.66,394,,,,,,,,3.142072824,,,,,,,,2.853582173,3.226330624,2.931180288,,,,,,,,2.730805043,2.992243174,0.08390553,,,,,2584.772625,,,,,0.760041079,40704,53555,0.706805724,0.813276434,64212,,,58302.21277,70121.78723,11806,6569.404255,17042.59575,,,,,,,44098,22659.53192,65536.46809,62615,58320.87234,66909.12766,,,,,,0.512103917,2602,5081,,,,,,,,0.269887249,,64212,,,5.445544555,11,2020,,,,,,,,,,,,,,,,,,,,,,,,,,20.26522469,29,156900,13.35491077,29.48483796,18.48311026,,,,,,,,,,,,,21.3183881,13.65909351,31.72007165,,,,7.010834927,11,156900,3.499783536,12.54432028,,,,,,,,,,,,,7.496813854,3.595013641,13.7869076,,,,15.89673481,35,220171,11.07265825,22.10850992,,,,,,,,,,,,,15.39539625,10.31053849,22.11035709,,,,55.75757576,,3300,,,184,,0.635283881,14602,22985,,,0.723,,,,,77.58882045,,,,,0.6834159,8691,12717,0.656345064,0.710486736,0.110068943,1373,12474,0.087033094,0.133104793,0.862388928,10967,12717,0.840084443,0.884693414,30970,,,,,0.234840168,7273,30970,,,0.194446238,6022,30970,,,0.010074265,312,30970,,,0.015240555,472,30970,,,0.014175008,439,30970,,,0.001549887,48,30970,,,0.123312883,3819,30970,,,0.83567969,25881,30970,,,0.021224798,619,29164,0.012388285,0.030061311,0.50045205,15499,30970,,,0.205031245,6398,31205,, -31,003,31003,NE,Antelope County,2024,1,4478.998655,65,16716,2806.964611,6781.257791,1,,,,2,,,,2,,,,2,,,,2,4725.781789,2925.333411,7223.859464,1,,,,2,,0.132,,,0.11,0.156,3.168495346,,,2.509612299,3.930284849,4.036621717,,,3.251581524,4.91395764,0.044067797,26,590,0.027506121,0.060629472,0,,,,,,,,,,,,,0.046345811,0.028948772,0.06374285,,,,,,,0.173,,,0.137,0.212,0.364,,,0.3,0.43,8.2,0.038642517,0.105,,,0.251,,,0.209,0.301,0.32533757,2048,6295,,,0.184657417,,,0.150867175,0.220722689,0,0,10,0,0.200587713,,,,,,11.31770412,14,1237,6.18749416,18.98918442,,,,,,,,,,,,,11.75406872,6.258546556,20.09981548,,,,,,,0.102542373,484,4720,0.087053011,0.118031735,0.000318522,2,6279,,,3139.5,0.000317813,2,6293,,,3146.5,0.00047672,3,6293,,,2097.666667,2072,,,,,,,,,2076,0.52,,,,,,,,,0.52,0.28,,,,,,,,,0.28,0.936333955,4015,4288,0.917304962,0.955362948,0.774919614,964,1244,0.678689086,0.871150142,0.019246408,71,3689,,,0.169,259,,0.103468085,0.234531915,,,,,,,0.258064516,0.043335263,0.47279377,0.084337349,0,0.169219314,0.127031019,0.070166503,0.183895536,3.574966975,108250,30280,3.21572284,3.93421111,0.113071895,173,1530,0.057735707,0.168408084,27.0743749,17,6279,,,79.26693935,25,31539,51.29738371,117.0136393,,,,,,,,,,,,,83.64001338,54.12740665,123.4691592,,,,5.7,,,,,1,,,,,0.095412844,260,2725,0.062854669,0.127971019,0.071851852,0.044401275,0.099302429,0.023853211,0.002496516,0.045209906,0.008807339,0,0.01876983,0.732259064,2363,3227,0.688638007,0.775880122,,,,,,,,,,,,,0.73018236,0.684263117,0.776101602,0.209,,3227,0.169089553,0.248910448,81.44791772,,,79.48393853,83.41189692,,,,,,,,,,,,,81.11095269,79.08624598,83.13565939,,,,251.0996741,65,16716,186.9602004,330.1496987,,,,,,,,,,,,,260.5800713,193.4075516,343.5423384,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.096,,,0.083,0.112,0.139,,,0.12,0.161,0.085,,,0.072,0.099,,,,,,0.105,670,,,,0.038642517,258.3252282,6685,,,,,,,,,,,,,,,,,,,,,,,,,,0.276,,,0.261,0.291,0.118722877,383,3226,0.098467558,0.138978196,0.06954282,108,1553,0.046904523,0.092181118,0.001271254,8,6293,,,786.625,,,,,,,,,,,3.2751691,,,,,,,,,3.277927052,3.549321745,,,,,,,,,3.551714405,0.035413592,,,,,4352.518,,,,,0.738140671,38683,52406,0.638251128,0.838030214,63250,,,54449.65957,72050.34043,,,,,,,,,,,,,61973,58509.34043,65436.65957,,,,,,0.375908619,362,963,,,,,,,,0.273992095,,63250,,,9.615384615,4,416,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,25,,600,,,15,,0.756705385,3583,4735,,,0.597,,,,,13.46048753,,,,,0.752589183,1962,2607,0.730182601,0.774995765,0.078131459,189,2419,0.048107628,0.10815529,0.797851937,2080,2607,0.765802829,0.829901045,6293,,,,,0.246782139,1553,6293,,,0.244557445,1539,6293,,,0.004449388,28,6293,,,0.006515176,41,6293,,,0.004926108,31,6293,,,0.000158907,1,6293,,,0.040521214,255,6293,,,0.939774353,5914,6293,,,0.01207483,71,5880,0,0.025365509,0.497695853,3132,6293,,,1,6295,6295,, -31,005,31005,NE,Arthur County,2024,0,,,,,,2,,,,2,,,,2,,,,2,,,,2,,,,2,,,,2,,0.134,,,0.113,0.161,3.115750731,,,2.426994743,3.959565278,4.216214054,,,3.323723814,5.237591681,,,,,,0,,,,,,,,,,,,,,,,,,,,,,0.166,,,0.13,0.208,0.389,,,0.311,0.472,4.7,0.344497612,0.119,,,0.255,,,0.21,0.308,,,434,,,0.191451927,,,0.152560159,0.233875812,,,,,,0,0,439,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.080229226,28,349,0.067122843,0.093335609,0,0,439,,,-439,0,0,433,,,-433,0,0,433,,,-433,,,,,,,,,,,0.77,,,,,,,,,0.77,0.28,,,,,,,,,0.28,0.965079365,304,315,0.922278752,1,0.716049383,58,81,0.358611011,1,0.021367521,5,234,,,0.202,20,,0.122170213,0.281829787,,,,,,,,,,,,,0.079136691,0,0.217754097,4.026628914,119458,29667,2.071453532,5.981804297,0.12987013,20,154,0,0.289717309,0,0,439,,,,,,,,,,,,,,,,,,,,,,,,,,4.4,,,,,,,,,,0.131578947,25,190,0.036802157,0.226355738,0.139784946,0,0.332373845,0.021052632,0,0.130319437,0.021052632,0,0.083950793,0.648401827,142,219,0.568824099,0.727979554,,,,,,,,,,,,,0.564705882,0.487955147,0.641456618,0.366,,219,0.189603229,0.542396771,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.099,,,0.084,0.115,0.142,,,0.121,0.166,0.091,,,0.077,0.107,0,0,365,,,0.119,60,,,,0.344497612,158.4689013,460,,,,,,,,,,,,,,,,,,,,,,,,,,0.287,,,0.268,0.304,0.095041322,23,242,0.08074345,0.109339195,0.042735043,5,117,0.022479724,0.062990362,0,0,433,,,-433,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7362.857,,,,,1.065735211,47292,44375,0.666462148,1.465008275,57018,,,48889.65957,65146.34043,,,,,,,,,,,,,65833,44746.02128,86919.97872,,,,,,0.049180328,6,122,,,,,,,,0.303939107,,57018,,,,,30,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,100,,,0,,0.873846154,284,325,,,0.467,,,,,,,,,,0.741573034,132,178,0.656241792,0.826904276,0.116438356,17,146,0,0.382426223,0.825842697,147,178,0.716378854,0.935306539,433,,,,,0.230946882,100,433,,,0.224018476,97,433,,,0,0,433,,,0.009237875,4,433,,,0.002309469,1,433,,,0,0,433,,,0.041570439,18,433,,,0.937644342,406,433,,,0,0,453,0,0.105208774,0.501154734,217,433,,,1,434,434,, -31,007,31007,NE,Banner County,2024,0,,,,,,2,,,,2,,,,2,,,,2,,,,2,,,,2,,,,2,,0.116,,,0.094,0.139,2.849418848,,,2.294236276,3.525597334,4.064528488,,,3.16174297,5.063490502,,,,,,0,,,,,,,,,,,,,,,,,,,,,,0.141,,,0.108,0.178,0.373,,,0.289,0.462,6.4,0.275457583,0.076,,,0.228,,,0.183,0.28,0.050445104,34,674,,,0.192921963,,,0.154744602,0.236067566,0,0,2,0,0.510593623,867.1,6,692,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.067567568,35,518,0.053269695,0.08186544,0,0,692,,,-692,0,0,660,,,-660,0,0,660,,,-660,,,,,,,,,,,0.27,,,,,,,,,0.27,0.42,,,,,,,,,0.42,0.911764706,465,510,0.8714116,0.952117812,0.992307692,129,130,0.773004296,1,0.030690537,12,391,,,0.174,25,,0.107276596,0.240723404,,,,,,,,,,,,,0.007633588,0,0.141285725,3.279839276,135500,41313,2.022039369,4.537639182,0.028776978,4,139,0,0.138149487,0,0,692,,,,,,,,,,,,,,,,,,,,,,,,,,3.8,,,,,0,,,,,0.106382979,25,235,0.011269399,0.201496558,0.060606061,0,0.23608632,0,0,0.10140335,0.017021277,0,0.088664211,0.643678161,224,348,0.518757273,0.768599049,,,,,,,,,,,,,0.502283105,0.197990008,0.806576202,0.599,,348,0.397043432,0.800956568,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.087,,,0.073,0.103,0.132,,,0.112,0.155,0.08,,,0.068,0.094,0,0,570,,,0.076,50,,,,0.275457583,190.0657325,690,,,,,,,,,,,,,,,,,,,,,,,,,,0.292,,,0.274,0.309,0.081460674,29,356,0.064779823,0.098141525,0.035502959,6,169,0.01405615,0.056949767,0,0,660,,,-660,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.021499669,,,,,12034.91,,,,,1.522740153,64485,42348,0.959078429,2.086401877,66584,,,56724.42553,76443.57447,,,,,,,,,,41336,41053.61702,41618.38298,77188,47704.59575,106671.4043,,,,,,0.744827586,108,145,,,,,,,,0.260272738,,66584,,,,,54,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,100,,,0,,0.88172043,410,465,,,0.524,,,,,0.427070696,,,,,0.694779117,173,249,0.640715734,0.748842499,0.02247191,4,178,0,0.265971666,0.734939759,183,249,0.663198123,0.806681396,660,,,,,0.21969697,145,660,,,0.265151515,175,660,,,0.013636364,9,660,,,0.006060606,4,660,,,0.003030303,2,660,,,0,0,660,,,0.083333333,55,660,,,0.890909091,588,660,,,0.013136289,8,609,0,0.088801904,0.496969697,328,660,,,1,674,674,, -31,009,31009,NE,Blaine County,2024,0,,,,,,2,,,,2,,,,2,,,,2,,,,2,,,,2,,,,2,,0.127,,,0.105,0.154,3.08728935,,,2.390570239,3.872434543,4.050082432,,,3.227459966,4.947469178,,,,,,0,,,,,,,,,,,,,,,,,,,,,,0.167,,,0.131,0.211,0.372,,,0.294,0.461,5.9,0.25625,0.11,,,0.254,,,0.205,0.311,0.076566125,33,431,,,0.192338222,,,0.154211897,0.236711673,0,0,2,0,0.510593623,0,0,461,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.071038251,26,366,0.057931868,0.084144634,0,0,461,,,-461,0,0,453,,,-453,0,0,453,,,-453,,,,,,,,,,,0.43,,,,,,,,,0.43,0.29,,,,,,,,,0.29,0.903726708,291,322,0.824180378,0.983273038,0.421875,27,64,0,0.999879798,0.039525692,10,253,,,0.304,28,,0.183659575,0.424340426,,,,,,,,,,,,,0.263157895,0.101994483,0.424321306,3.160060477,77333,24472,2.362036173,3.958084782,0,0,57,0,0.295617617,0,0,461,,,,,,,,,,,,,,,,,,,,,,,,,,4.6,,,,,0,,,,,0.085106383,20,235,0,0.17895346,0.080851064,0,0.249496175,0.017021277,0,0.104907084,0,0,0.071702996,0.55,110,200,0.44428637,0.65571363,,,,,,,,,,,,,0.49704142,0.338954459,0.655128381,0.364,,200,0.212483961,0.515516039,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.094,,,0.079,0.111,0.14,,,0.12,0.164,0.083,,,0.07,0.099,,,,,,0.11,40,,,,0.25625,122.4874999,478,,,,,,,,,,,,,,,,,,,,,,,,,,0.29,,,0.272,0.308,0.080882353,22,272,0.063010013,0.098754693,0.042105263,4,95,0.02899888,0.055211646,0,0,453,,,-453,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.909078888,34375,37813,0.525520122,1.292637655,54936,,,48157.61702,61714.38298,,,,,,,,,,,,,52083,41507.34043,62658.65957,,,,,,0.342105263,13,38,,,,,,,,0.315457988,,54936,,,,,13,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,,0,,0.834210526,317,380,,,0.387,,,,,1.268111282,,,,,0.776119403,156,201,0.711614034,0.840624772,0.167664671,28,167,0,0.428627496,0.845771144,170,201,0.733391344,0.958150945,453,,,,,0.205298013,93,453,,,0.23178808,105,453,,,0.004415011,2,453,,,0.004415011,2,453,,,0,0,453,,,0,0,453,,,0.028697572,13,453,,,0.938189846,425,453,,,0.008174387,3,367,0,0.134282118,0.48785872,221,453,,,1,431,431,, -31,011,31011,NE,Boone County,2024,1,5553.275239,50,13843,3291.222855,8776.569039,1,,,,2,,,,2,,,,2,,,,2,5838.252261,3460.118299,9226.955595,1,,,,2,,0.124,,,0.104,0.146,2.937025903,,,2.324089108,3.646042448,4.191219096,,,3.354806385,5.135360653,0.071428571,33,462,0.047944212,0.094912931,0,,,,,,,,,,,,,0.070257611,0.046015517,0.094499706,,,,,,,0.167,,,0.132,0.204,0.421,,,0.355,0.495,8.8,0.034852295,0.083,,,0.254,,,0.207,0.303,0.433537832,2332,5379,,,0.191231278,,,0.156338786,0.231033184,0.5,1,2,0.104528646,0.771195053,130,7,5386,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.074083012,307,4144,0.062168118,0.085997905,0.001485332,8,5386,,,673.25,0.000557103,3,5385,,,1795,0.000742804,4,5385,,,1346.25,4487,,,,,,,,,4487,0.6,,,,,,,,,0.6,0.35,,,,,,,,,0.35,0.939418201,3520,3747,0.91715502,0.961681383,0.776851852,839,1080,0.672742374,0.88096133,0.018421053,56,3040,,,0.123,158,,0.077723404,0.168276596,,,,,,,,,,,,,0.041420118,0.015606055,0.067234181,3.650909091,125500,34375,3.061928166,4.239890016,0.08770556,112,1277,0.036382344,0.139028776,11.13999257,6,5386,,,72.33961546,19,26265,43.55317405,112.9672704,,,,,,,,,,,,,75.46870035,45.43708756,117.8537241,,,,5.9,,,,,0,,,,,0.099557522,225,2260,0.07000151,0.129113534,0.07747106,0.043011441,0.111930678,0.013274336,0,0.02969614,0.011061947,0.001693416,0.020430478,0.739810772,2033,2748,0.691357324,0.788264219,,,,,,,,,,,,,0.75,0.697066812,0.802933188,0.171,,2748,0.131089553,0.210910448,80.09199001,,,77.85235603,82.33162399,,,,,,,,,,,,,79.81172663,77.45201087,82.17144238,,,,256.5468759,50,13843,184.1024675,348.0348055,,,,,,,,,,,,,264.9684579,189.2973511,360.8118348,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.092,,,0.079,0.106,0.137,,,0.117,0.159,0.082,,,0.069,0.096,0,0,4452,,,0.083,450,,,,0.034852295,191.8618811,5505,,,,,,,,,,,,,,,,,,,,,,,,,,0.283,,,0.266,0.299,0.085983922,246,2861,0.07049456,0.101473283,0.050822123,68,1338,0.034141272,0.067502974,0.002228412,12,5385,,,448.75,,,,,,,,,,,3.427740477,,,,,,,,,3.51896604,3.472918951,,,,,,,,,3.600972456,0.07531766,,,,,1125.4465,,,,,0.80170907,41280,51490,0.687156214,0.916261925,68533,,,63303.55319,73762.44681,,,,,,,,,,,,,68085,62081.08511,74088.91489,,,,,,0.292008197,285,976,,,,,,,,0.25287088,,68533,,,3.003003003,1,333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,22,,500,,,11,,0.808291457,3217,3980,,,0.665,,,,,0.001153642,,,,,0.806696429,1807,2240,0.764442145,0.848950712,0.081688848,178,2179,0.045367156,0.118010541,0.820535714,1838,2240,0.7931643,0.847907128,5385,,,,,0.241968431,1303,5385,,,0.236954503,1276,5385,,,0.006128134,33,5385,,,0.003528319,19,5385,,,0.005013928,27,5385,,,0.000185701,1,5385,,,0.036954503,199,5385,,,0.942061281,5073,5385,,,0.001771654,9,5080,0,0.015089192,0.489507892,2636,5385,,,1,5379,5379,, -31,013,31013,NE,Box Butte County,2024,1,9313.844808,169,29595,7045.163593,11582.52602,0,,,,2,,,,2,,,,2,,,,2,8466.012179,6058.198242,10873.82612,,,,,2,,0.148,,,0.125,0.174,3.504367176,,,2.789076441,4.335259237,4.592940255,,,3.743903508,5.573372653,0.087599545,77,879,0.068909717,0.106289373,0,,,,,,,,,,0.080536913,0.036842332,0.124231493,0.087440382,0.065364534,0.10951623,,,,,,,0.181,,,0.144,0.218,0.43,,,0.362,0.5,7.8,0.091723794,0.101,,,0.284,,,0.235,0.333,0.766371518,8309,10842,,,0.19747251,,,0.160426952,0.237407619,0.222222222,2,9,0.058854756,0.422872156,377.2,40,10604,,,21.875,49,2240,16.18324542,28.91991009,,,,,,,,,,30.76923077,15.89891054,53.74765397,15.47029703,10.01156055,22.83721021,,,,,,,0.112082385,936,8351,0.096593024,0.127571747,0.00047152,5,10604,,,2120.8,0.000655922,7,10672,,,1524.571429,0.002155172,23,10672,,,464,992,,,,,,,,,967,0.36,,,,,,,,0.47,0.36,0.35,,,,,,,,0.33,0.35,0.918886199,6831,7434,0.889867089,0.947905308,0.655462185,1638,2499,0.5506064,0.76031797,0.023902895,128,5355,,,0.156,413,,0.095234043,0.216765957,0.621794872,0.180007812,1,,,,,,,,,,0.069716776,0.014665614,0.124767937,4.483760162,117479,26201,3.299007233,5.668513091,0.25917768,706,2724,0.135585361,0.382769999,18.86080724,20,10604,,,98.62116447,53,53741,73.87401971,128.9989113,,,,,,,,,,,,,96.79872779,69.7640087,130.8437594,,,,4.1,,,,,0,,,,,0.115217391,530,4600,0.078046818,0.152387965,0.082508251,0.048104334,0.116912168,0.020652174,0.002737149,0.038567199,0.014130435,0.000769116,0.027491753,0.768259518,3955,5148,0.722340409,0.814178628,,,,,,,,,,,,,0.835198596,0.737130572,0.933266619,0.067,,5148,0.03480773,0.09919227,76.35813064,,,74.55636307,78.15989822,,,,,,,,,,,,,76.81554175,74.89921889,78.7318646,,,,421.1366194,169,29595,352.4352314,489.8380074,,,,,,,,,,,,,408.9893549,335.7470682,482.2316415,,,,93.76065462,11,11732,46.80498097,167.7637105,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.106,,,0.09,0.122,0.146,,,0.126,0.165,0.095,,,0.081,0.111,,,,,,0.101,1100,,,,0.091723794,1037.212658,11308,,,,,,,,,,,,,,,,,,,,,,,,,,0.313,,,0.299,0.326,0.132345249,759,5735,0.112089929,0.152600568,0.069767442,192,2752,0.048320633,0.09121425,0.001405547,15,10672,,,711.4666667,0.8375,130.65,156,,,,,,,,2.912367442,,,,,,,,2.547159893,3.023719091,2.770575643,,,,,,,,2.383377846,2.994204695,0.044881253,,,,,2985.326,,,,,0.594479423,40317,67819,0.490684431,0.698274416,66762,,,57999.78723,75524.21277,,,,,,,,,,68579,63310.23404,73847.76596,64525,54167.38298,74882.61702,,,,,,0.441780822,774,1752,,,57.19401042,,,,,0.259578802,,66762,,,7.587253414,5,659,,,,,,,,,,,,,,,,,,,,,,,,,,25.88668509,15,53741,13.78356956,44.26701988,27.91165032,,,,,,,,,,,,,24.91053649,12.43525006,44.57183078,,,,,,,,,,,,,,,,,,,,,,,,,,,19.66645689,15,76272,11.00716663,32.43682986,,,,,,,,,,,,,17.78352599,8.8774721,31.81964031,,,,28.33333333,,1200,,,34,,0.667224726,5181,7765,,,0.655,,,,,60.33365724,,,,,0.730373934,3340,4573,0.688018576,0.772729292,0.089662921,399,4450,0.049605236,0.129720606,0.89722283,4103,4573,0.864117549,0.93032811,10672,,,,,0.252436282,2694,10672,,,0.2113006,2255,10672,,,0.015367316,164,10672,,,0.051724138,552,10672,,,0.007121439,76,10672,,,0.000281109,3,10672,,,0.138586957,1479,10672,,,0.787574963,8405,10672,,,0.005998623,61,10169,0,0.016122008,0.497095202,5305,10672,,,0.251152924,2723,10842,, -31,015,31015,NE,Boyd County,2024,1,9756.171829,40,4783,4678.463611,17941.94735,1,,,,2,,,,2,,,,2,,,,2,10522.19138,5045.799762,19350.68459,1,,,,2,,0.137,,,0.114,0.163,3.236596786,,,2.473580615,4.043793952,4.43112173,,,3.456498634,5.42743564,,,,,,0,,,,,,,,,,,,,,,,,,,,,,0.18,,,0.141,0.22,0.371,,,0.293,0.449,7.4,0.122969805,0.101,,,0.269,,,0.218,0.322,0.019337017,35,1810,,,0.177748834,,,0.141773791,0.217210936,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.082591093,102,1235,0.068293221,0.096888966,0.000558972,1,1789,,,1789,0,0,1741,,,-1741,,0,1741,,,,4089,,,,,,,,,3985,0.45,,,,,,,,,0.45,0.28,,,,,,,,,0.27,0.952345495,1279,1343,0.928802391,0.9758886,0.588628763,176,299,0.451968602,0.725288923,0.023076923,24,1040,,,0.219,68,,0.133212766,0.304787234,,,,,,,,,,,,,0.276363636,0.131786838,0.420940435,4.924301665,122167,24809,3.49459203,6.354011299,0.160493827,52,324,0.063222681,0.257764973,0,0,1789,,,,,,,,,,,,,,,,,,,,,,,,,,4.8,,,,,0,,,,,0.107428571,94,875,0.062405977,0.152451166,0.101162791,0.041433688,0.160891893,0,0,0.027234043,0.016,0,0.038285819,0.732311321,621,848,0.709713281,0.754909361,,,,,,,,,,,,,0.677130045,0.522707123,0.831552967,0.284,,848,0.188941847,0.379058153,75.37489602,,,70.90785842,79.84193362,,,,,,,,,,,,,74.77978952,69.92415815,79.63542089,,,,476.150025,40,4783,311.0370048,697.6701084,,,,,,,,,,,,,492.3010712,315.4265855,732.5049707,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.098,,,0.083,0.114,0.142,,,0.121,0.165,0.09,,,0.076,0.105,0,0,1556,,,0.101,180,,,,0.122969805,258.1136215,2099,,,,,,,,,,,,,,,,,,,,,,,,,,0.304,,,0.287,0.32,0.093818985,85,906,0.075946644,0.111691325,0.049132948,17,346,0.032452097,0.065813799,0.000574383,1,1741,,,1741,,,,,,,,,,,2.764341404,,,,,,,,,2.776105594,2.776051487,,,,,,,,,2.906706417,,,,,,,,,,,0.581515316,31000,53309,0.435241799,0.727788834,54443,,,46465.97872,62420.02128,,,,,,,,,,,,,57120,50178.38298,64061.61702,,,,,,0.538690476,181,336,,,,,,,,0.318314568,,54443,,,,,63,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,200,,,-888,,0.756065574,1153,1525,,,0.447,,,,,3.680279595,,,,,0.828996283,669,807,0.803286409,0.854706156,0.12911726,98,759,0.062255859,0.195978661,0.821561338,663,807,0.766953489,0.876169187,1741,,,,,0.184951178,322,1741,,,0.316484779,551,1741,,,0.001148765,2,1741,,,0.019529006,34,1741,,,0.014359564,25,1741,,,0.001148765,2,1741,,,0.026421597,46,1741,,,0.936817921,1631,1741,,,0.004711425,8,1698,0,0.032609837,0.493968983,860,1741,,,1,1810,1810,, -31,017,31017,NE,Brown County,2024,1,7376.353726,48,7712,4296.997873,11810.25687,1,,,,2,,,,2,,,,2,,,,2,7641.0424,4367.515944,12408.57415,1,,,,2,,0.134,,,0.112,0.159,3.107400644,,,2.448902557,3.853710012,3.755182323,,,3.014664419,4.600995695,0.047826087,11,230,0.02024682,0.075405354,1,,,,,,,,,,,,,0.050251256,0.019897855,0.080604657,,,,,,,0.168,,,0.133,0.207,0.397,,,0.331,0.467,8.6,0.041333515,0.089,,,0.266,,,0.22,0.318,0.163623837,475,2903,,,0.175648681,,,0.143510821,0.212554694,0,0,1,0,0.662081041,,,,,,15.36312849,11,716,7.66921839,27.48888061,,,,,,,,,,,,,15.3609831,7.366188473,28.24939484,,,,,,,0.090186916,193,2140,0.074697554,0.105676278,0.001031637,3,2908,,,969.3333333,0.001044568,3,2872,,,957.3333333,0.000348189,1,2872,,,2872,1559,,,,,,,,,1559,0.41,,,,,,,,,0.41,0.08,,,,,,,,,0.08,0.924547284,1838,1988,0.888480601,0.960613967,0.640759931,371,579,0.482752045,0.798767817,0.026388889,38,1440,,,0.14,85,,0.084,0.196,,,,,,,,,,0.023809524,0,0.433297298,0.058411215,0,0.131743343,3.675108825,83583,22743,2.76650264,4.58371501,0.13592233,70,515,0.015582191,0.25626247,20.63273728,6,2908,,,67.42633673,10,14831,32.3335493,123.9994339,,,,,,,,,,,,,71.68972686,34.37801058,131.8399602,,,,4.5,,,,,0,,,,,0.127340824,170,1335,0.075000698,0.17968095,0.09391435,0.038943958,0.148884742,0.02247191,0,0.051959547,0.010486891,0,0.028048314,0.787709497,987,1253,0.732644658,0.842774336,,,,,,,,,,,,,0.795061728,0.761371471,0.828751986,0.054,,1253,0.006414952,0.101585048,78.00642837,,,74.92712525,81.08573148,,,,,,,,,,,,,77.95128637,74.69702631,81.20554642,,,,385.9686538,48,7712,275.741665,525.5797585,,,,,,,,,,,,,387.859161,274.4722265,532.3670016,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.096,,,0.083,0.112,0.138,,,0.117,0.159,0.088,,,0.075,0.102,0,0,2471,,,0.089,250,,,,0.041333515,129.9939043,3145,,,,,,,,,,,,,,,,,,,,,,,,,,0.274,,,0.259,0.29,0.104125737,159,1527,0.085061907,0.123189567,0.059633028,39,654,0.038186219,0.081079836,0.002089137,6,2872,,,478.6666667,,,,,,,,,,,3.208086808,,,,,,,,,3.247925,3.117750445,,,,,,,,,3.150335623,0.042451755,,,,,3233.124,,,,,0.707910459,29505,41679,0.562105954,0.853714963,55394,,,46995.19149,63792.80851,,,,,,,,,,55833,39525.08511,72140.91489,43190,33945.23404,52434.76596,,,,,,0.41567696,175,421,,,,,,,,0.312849767,,55394,,,,,177,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.66666667,,300,,,5,,0.761451247,1679,2205,,,0.55,,,,,5.669573295,,,,,0.751848809,915,1217,0.717540818,0.786156799,0.140243902,161,1148,0.071620683,0.208867122,0.845521775,1029,1217,0.782989278,0.908054271,2872,,,,,0.21413649,615,2872,,,0.251740947,723,2872,,,0.004874652,14,2872,,,0.01775766,51,2872,,,0.002089137,6,2872,,,0.001044568,3,2872,,,0.056058496,161,2872,,,0.907381616,2606,2872,,,0.013682093,34,2485,0,0.035955299,0.502089137,1442,2872,,,1,2903,2903,, -31,019,31019,NE,Buffalo County,2024,1,5240.907547,487,140158,4543.40325,5938.411844,0,,,,2,,,,2,,,,2,,,,2,5505.765648,4723.487192,6288.044104,,,,,2,,0.13,,,0.109,0.155,2.924817024,,,2.340041433,3.582680779,4.244656629,,,3.553188147,4.944737764,0.077353007,346,4473,0.069523886,0.085182128,0,,,,,,,,,,0.081037277,0.059504262,0.102570293,0.074386921,0.065897344,0.082876498,,,,0.210526316,0.104688549,0.316364083,0.153,,,0.117,0.19,0.398,,,0.351,0.442,7.8,0.094536537,0.099,,,0.235,,,0.196,0.275,0.842384794,42190,50084,,,0.215514705,,,0.184578734,0.248467899,0.24,6,25,0.136098495,0.353867991,409.2,206,50339,,,12.45744352,161,12924,10.53314671,14.38174033,,,,,,,,,,26.28205128,18.86045376,35.65457023,9.990662932,8.097628604,11.88369726,,,,,,,0.08413891,3438,40861,0.072224016,0.096053804,0.000874074,44,50339,,,1144.068182,0.000850038,43,50586,,,1176.418605,0.004349029,220,50586,,,229.9363636,2342,,,,,,,,,2349,0.5,,,,,,,,0.3,0.5,0.58,,,,,,,,0.48,0.58,0.925518886,28717,31028,0.910533935,0.940503838,0.723735409,9114,12593,0.6667068,0.780764017,0.019868015,566,28488,,,0.126,1399,,0.08787234,0.16412766,0.555555556,0.221290483,0.889820628,,,,,,,0.119856887,0.053986381,0.185727394,0.111273627,0.076857542,0.145689713,4.420493359,128128,28985,4.03963827,4.801348448,0.213023992,2424,11379,0.163326489,0.262721494,13.30975983,67,50339,,,52.51363952,131,249459,43.52088906,61.50638997,,,,,,,,,,,,,57.10942723,47.0166353,67.20221917,,,,6.2,,,,,0,,,,,0.132526952,2520,19015,0.108795543,0.156258362,0.112437019,0.08991866,0.134955379,0.015251118,0.009237264,0.021264972,0.011306863,0.004692785,0.017920942,0.828926562,22541,27193,0.811211594,0.84664153,,,,,,,,,,0.803530566,0.734295548,0.872765583,0.844463611,0.822289991,0.866637231,0.152,,27193,0.132567397,0.171432603,79.95031678,,,79.19174225,80.7088913,,,,,,,,,,83.37876116,78.55286093,88.20466139,79.63895866,78.83263482,80.44528251,,,,294.8149712,487,140158,267.86768,321.7622624,,,,,,,,,,,,,304.2682045,275.4837512,333.0526577,,,,42.58470654,23,54010,26.99505099,63.8979687,,,,,,,,,,,,,46.37466089,28.32684765,71.62190253,,,,4.589160839,21,4576,2.84076289,7.015019828,,,,,,,,,,,,,,,,,,,,,,0.091,,,0.076,0.106,0.13,,,0.111,0.15,0.089,,,0.076,0.103,23.8,10,42043,,,0.099,4950,,,,0.094536537,4358.323439,46102,,,7.994031123,12,150112,4.130632534,13.96396361,,,,,,,,,,,,,8.502941245,4.244637633,15.21411064,,,,0.275,,,0.26,0.289,0.098390103,2903,29505,0.082900742,0.113879465,0.049844499,593,11897,0.035546626,0.064142371,0.002055905,104,50586,,,486.4038462,0.88989899,528.6,594,,,,,,,,3.209480935,,,,,,,,2.687826152,3.34756575,3.412478315,,,,,,,,2.885264209,3.549263413,0.098463821,,,,,1854.986529,,,,,0.775705493,46125,59462,0.721181567,0.830229418,67809,,,59599.6383,76018.3617,,,,98750,66847.87234,130652.1277,58092,39936.08511,76247.91489,63523,52270.57447,74775.42553,71399,67611.25532,75186.74468,,,,,,0.345180652,2933,8497,,,54.00733552,,,,,0.255570794,,67809,,,11.26055677,36,3197,,,,,,,,,,,,,,,,,,,,,,,,,,17.04829396,38,249459,11.9404155,23.60202493,15.23296413,,,,,,,,,,,,,18.67508396,13.00788023,25.97252101,,,,8.017349544,20,249459,4.897205387,12.38214613,,,,,,,,,,,,,8.821781443,5.311288706,13.7763045,,,,11.79160495,41,347705,8.461859297,15.99664358,,,,,,,,,,,,,12.96107358,9.216590337,17.71821425,,,,20.58823529,,5100,,,105,,0.641179668,23589,36790,,,0.702,,,,,62.78483258,,,,,0.662863283,12955,19544,0.640847685,0.684878881,0.120933893,2305,19060,0.099225404,0.142642382,0.895057307,17493,19544,0.878131262,0.911983351,50586,,,,,0.222571463,11259,50586,,,0.165480568,8371,50586,,,0.010971415,555,50586,,,0.007966631,403,50586,,,0.015004151,759,50586,,,0.002095441,106,50586,,,0.101055628,5112,50586,,,0.85495987,43249,50586,,,0.017623674,829,47039,0.012473897,0.022773451,0.497410351,25162,50586,,,0.310638128,15558,50084,, -31,021,31021,NE,Burt County,2024,1,10142.9495,104,17397,6938.159395,13347.73961,0,,,,2,,,,2,,,,2,,,,2,10293.81747,7170.021034,14316.20822,,,,,2,,0.136,,,0.112,0.162,3.122830847,,,2.47181734,3.870361936,4.140301478,,,3.298896336,5.05014875,0.084745763,40,472,0.059620249,0.109871276,0,,,,,,,,,,,,,0.083521445,0.057757381,0.109285508,,,,,,,0.178,,,0.139,0.219,0.4,,,0.333,0.469,8.4,0.002164702,0.116,,,0.268,,,0.221,0.32,0.554448081,3727,6722,,,0.20217596,,,0.164957836,0.238559498,0.25,3,12,0.099776571,0.4182543,298.1,20,6709,,,9.900990099,12,1212,5.115986063,17.29503717,,,,,,,,,,,,,10.75268817,5.367703194,19.23952934,,,,,,,0.100219605,502,5009,0.084730243,0.115708966,0.000298107,2,6709,,,3354.5,0.000296077,2,6755,,,3377.5,0.000148039,1,6755,,,6755,1397,,,,,,,,,1338,0.54,,,,,,,,,0.54,0.28,,,,,,,,,0.28,0.910226551,4299,4723,0.882366754,0.938086348,0.617067834,846,1371,0.528346637,0.70578903,0.023624236,85,3598,,,0.133,205,,0.087723404,0.178276596,,,,,,,,,,0.61,0.347739036,0.872260964,0.190403656,0.115071036,0.265736276,3.972684732,109515,27567,3.698429563,4.2469399,0.192982456,297,1539,0.117218069,0.268746843,16.39588612,11,6709,,,97.9551855,32,32668,67.00127437,138.2834948,,,,,,,,,,,,,106.2946354,72.70545196,150.0563099,,,,6.9,,,,,0,,,,,0.085069444,245,2880,0.062340546,0.107798343,0.06234676,0.039795853,0.084897667,0.012152778,0,0.026709588,0.012152778,0.003563436,0.02074212,0.770057066,2294,2979,0.724266777,0.815847355,,,,,,,,,,,,,0.750375188,0.691541379,0.809208996,0.4,,2979,0.339304171,0.460695829,76.56091715,,,74.02350782,79.09832649,,,,,,,,,,,,,76.51389047,73.87959806,79.14818289,,,,417.9909439,104,17397,328.7764346,507.2054532,,,,,,,,,,,,,420.1269821,331.5576442,525.0866431,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.097,,,0.082,0.113,0.139,,,0.119,0.16,0.086,,,0.072,0.101,0,0,5637,,,0.116,780,,,,0.002164702,14.84552354,6858,,,,,,,,,,,,,,,,,,,,,,,,,,0.305,,,0.288,0.321,0.113898501,395,3468,0.094834671,0.13296233,0.072266831,117,1619,0.049628534,0.094905129,0.000888231,6,6755,,,1125.833333,,,,,,,,,,,3.001952674,,,,,,,,,2.977582998,2.966195139,,,,,,,,,2.986883211,0.07592783,,,,,2065.280033,,,,,0.687598505,38828,56469,0.631292885,0.743904126,58125,,,50700.82979,65549.17021,21000,10413.61702,31586.38298,,,,,,,40900,34729.2766,47070.7234,56699,50757.04255,62640.95745,,,,,,0.436482085,402,921,,,,,,,,0.298150538,,58125,,,,,344,,,,,,,,,,,,,,,,,,,,,,,,,,40.80652072,10,32668,19.56831282,75.04464449,30.61099547,,,,,,,,,,,,,45.5095037,21.82357596,83.69359763,,,,,,,,,,,,,,,,,,,,,,,,,,,28.38489923,13,45799,15.11376338,48.53904216,,,,,,,,,,,,,30.66327012,16.32689992,52.43512576,,,,10,,700,,,7,,0.743227092,3731,5020,,,0.65,,,,,7.690414504,,,,,0.769892473,2148,2790,0.75605974,0.783725206,0.095990748,249,2594,0.067075839,0.124905656,0.802150538,2238,2790,0.767148009,0.837153066,6755,,,,,0.231680237,1565,6755,,,0.243523316,1645,6755,,,0.008734271,59,6755,,,0.025018505,169,6755,,,0.00488527,33,6755,,,0.001628423,11,6755,,,0.039378238,266,6755,,,0.910584752,6151,6755,,,0.00031407,2,6368,0,0.011209667,0.495780903,3349,6755,,,1,6722,6722,, -31,023,31023,NE,Butler County,2024,1,5406.023715,109,22142,3716.353028,7095.694402,0,,,,2,,,,2,,,,2,,,,2,5708.09845,3842.298746,7573.898154,,,,,2,,0.126,,,0.104,0.151,3.05325269,,,2.384024158,3.772985116,4.03222086,,,3.226365232,4.910455248,0.052316891,35,669,0.035443765,0.069190017,0,,,,,,,,,,,,,0.049342105,0.032126383,0.066557828,,,,,,,0.162,,,0.127,0.2,0.405,,,0.339,0.472,8.5,0.041974005,0.089,,,0.25,,,0.207,0.296,0.457521807,3829,8369,,,0.202235698,,,0.167423093,0.240573963,0.428571429,3,7,0.219826693,0.607881191,165.8,14,8444,,,7.743362832,14,1808,4.233368516,12.99204708,,,,,,,,,,,,,6.038647343,2.895766121,11.10528747,,,,,,,0.074458484,495,6648,0.06254359,0.086373377,0.000710564,6,8444,,,1407.333333,0.000237332,2,8427,,,4213.5,0.000118666,1,8427,,,8427,2488,,,,,,,,,2518,0.49,,,,,,,,,0.49,0.49,,,,,,,,,0.49,0.923768367,5344,5785,0.907456267,0.940080466,0.745590593,1395,1871,0.656736758,0.834444429,0.018323505,87,4748,,,0.105,208,,0.065680851,0.144319149,0.096774194,0,0.681994654,,,,,,,0.188311688,0,0.473586875,0.054268293,0.027543536,0.080993049,4.696647153,132375,28185,3.244788536,6.14850577,0.111337062,219,1967,0.061545837,0.161128286,14.21127428,12,8444,,,69.08292418,28,40531,45.90510142,99.84405996,,,,,,,,,,,,,68.71217527,44.88507417,100.6792571,,,,6.6,,,,,0,,,,,0.096011817,325,3385,0.065842312,0.126181321,0.077661169,0.046000265,0.109322074,0.013293944,0,0.027573713,0.016248154,0.003587538,0.028908769,0.790154265,3483,4408,0.749112943,0.831195587,,,,,,,,,,,,,0.725261933,0.651626803,0.798897062,0.349,,4408,0.296210163,0.401789837,78.29872937,,,76.69159071,79.90586803,,,,,,,,,,,,,78.0745576,76.35752519,79.79159001,,,,323.2036461,109,22142,258.2730526,388.1342397,,,,,,,,,,,,,330.0967828,261.8160051,398.3775605,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.093,,,0.079,0.109,0.134,,,0.113,0.154,0.085,,,0.072,0.099,,,,,,0.089,750,,,,0.041974005,352.3717677,8395,,,,,,,,,,,,,,,,,,,,,,,,,,0.302,,,0.285,0.317,0.085449849,397,4646,0.071151977,0.099747722,0.050807218,107,2106,0.034126366,0.067488069,0.000355999,3,8427,,,2809,,,,,,,,,,,3.140840732,,,,,,,,,3.201748985,3.688783246,,,,,,,,,3.759641381,0.074542533,,,,,7849.33,,,,,0.774395244,45330,58536,0.703053565,0.845736923,76417,,,69258.53192,83575.46809,63594,59987.3617,67200.6383,,,,,,,81406,60544.21277,102267.7872,74293,62331.6383,86254.3617,,,,,,0.353063344,340,963,,,,,,,,0.226781999,,76417,,,5.870841487,3,511,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,22.92849836,13,56698,12.20845972,39.20843049,,,,,,,,,,,,,24.44114385,13.01387973,41.79510034,,,,17.5,,800,,,14,,0.743471074,4498,6050,,,0.639,,,,,1.57051131,,,,,0.810433295,2843,3508,0.794480448,0.826386142,0.082785415,277,3346,0.049370228,0.116200603,0.850057013,2982,3508,0.820543463,0.879570562,8427,,,,,0.238044381,2006,8427,,,0.207784502,1751,8427,,,0.008306633,70,8427,,,0.007950635,67,8427,,,0.003322653,28,8427,,,0.000474665,4,8427,,,0.057790436,487,8427,,,0.914204343,7704,8427,,,0.022528794,178,7901,0.009373117,0.035684471,0.494956687,4171,8427,,,1,8369,8369,, -31,025,31025,NE,Cass County,2024,1,7207.657582,368,73950,6004.23732,8411.077844,0,,,,2,,,,2,,,,2,,,,2,7536.946852,6242.707204,8831.186501,,,,,2,,0.116,,,0.095,0.14,2.924785822,,,2.262778188,3.635343066,3.885446771,,,3.126056197,4.7143686,0.069830878,128,1833,0.058163332,0.081498425,0,,,,,,,,,,,,,0.067677946,0.055785883,0.07957001,,,,,,,0.145,,,0.112,0.183,0.391,,,0.332,0.451,8.8,0.03248403,0.081,,,0.228,,,0.186,0.274,0.596323032,15861,26598,,,0.204922207,,,0.170021902,0.242580067,0.45945946,17,37,0.380137764,0.53370287,174,47,27017,,,10.87537886,61,5609,8.318803095,13.96987911,,,,,,,,,,,,,10.53259142,7.889633731,13.7768889,,,,,,,0.069753757,1541,22092,0.060221842,0.079285672,0.00029611,8,27017,,,3377.125,0.000258093,7,27122,,,3874.571429,0.000479316,13,27122,,,2086.307692,2253,,,,,,,,,2221,0.45,,,,,,,,,0.45,0.51,,,,,,,,,0.51,0.953838652,17605,18457,0.944342966,0.963334338,0.71839454,4421,6154,0.659180832,0.777608249,0.024551945,337,13726,,,0.079,482,,0.048021277,0.109978723,,,,,,,,,,0.163538874,0.034456575,0.292621173,0.048887198,0.023257618,0.074516778,3.706380098,153307,41363,3.363263303,4.049496893,0.101795447,635,6238,0.070241688,0.133349206,9.253433024,25,27017,,,69.17784789,91,131545,55.69768786,84.93506778,,,,,,,,,,,,,74.14770875,59.69910982,91.03695564,,,,7.6,,,,,1,,,,,0.084367246,850,10075,0.066817512,0.101916979,0.065868264,0.050310641,0.081425886,0.014888338,0.005834605,0.02394207,0.010421836,0.004295471,0.016548202,0.804657274,11023,13699,0.780573345,0.828741204,,,,,,,,,,,,,0.693125101,0.653018027,0.733232174,0.513,,13699,0.46989179,0.55610821,78.36711345,,,77.27431841,79.45990848,,,,,,,,,,,,,78.05666247,76.91330109,79.20002384,,,,358.8705167,368,73950,319.9367475,397.8042859,,,,,,,,,,,,,369.4336507,328.6658672,410.2014343,,,,48.00236319,13,27082,25.55923673,82.08550298,,,,,,,,,,,,,53.75454846,28.62203313,91.92191498,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.088,,,0.074,0.103,0.13,,,0.109,0.15,0.084,,,0.071,0.098,26.4,6,22730,,,0.081,2140,,,,0.03248403,819.9294056,25241,,,12.57909104,10,79497,6.032163096,23.13339628,,,,,,,,,,,,,13.52100488,6.483847397,24.86560938,,,,0.293,,,0.277,0.309,0.074385388,1177,15823,0.062470495,0.086300282,0.059331013,392,6607,0.041458672,0.077203353,0.000405575,11,27122,,,2465.636364,0.912859712,253.775,278,,,,,,,,3.18780437,,,,,,,,,3.198634194,3.381417063,,,,,,,,,3.410160597,0.05926423,,,,,4393.7186,,,,,0.766145225,51131,66738,0.705280132,0.827010317,93195,,,85956.70213,100433.2979,,,,,,,,,,,,,87971,84183.25532,91758.74468,,,,,,0.299519352,1184,3953,,,,,,,,0.185954182,,93195,,,5.806451613,9,1550,,,,,,,,,,,,,,,,,,,,,,,,,,14.02323472,19,131545,8.311057638,22.16275663,14.44372648,,,,,,,,,,,,,14.88695782,8.822954691,23.52781151,,,,7.601961306,10,131545,3.645435932,13.9802775,,,,,,,,,,,,,8.148099863,3.907330598,14.98464576,,,,15.31527589,28,182824,10.17688961,22.13483785,,,,,,,,,,,,,16.37225838,10.87924679,23.66247183,,,,5.666666667,,3000,,,17,,0.779001019,15284,19620,,,0.703,,,,,19.86403174,,,,,0.827642906,8557,10339,0.805638819,0.849646992,0.075845744,769,10139,0.056838488,0.094853,0.881226424,9111,10339,0.864818055,0.897634794,27122,,,,,0.229112897,6214,27122,,,0.187928619,5097,27122,,,0.007521569,204,27122,,,0.008553941,232,27122,,,0.006157363,167,27122,,,0.000663668,18,27122,,,0.042732837,1159,27122,,,0.920691689,24971,27122,,,0.002177873,55,25254,0,0.005355446,0.489455055,13275,27122,,,0.749793218,19943,26598,, -31,027,31027,NE,Cedar County,2024,1,5390.765093,87,22432,3733.261537,7533.053887,0,,,,2,,,,2,,,,2,,,,2,5368.035082,3671.732022,7578.063861,,,,,2,,0.116,,,0.096,0.138,2.880890259,,,2.282669195,3.568118454,4.152688794,,,3.408442265,4.982457509,0.048322148,36,745,0.032923023,0.063721272,0,,,,,,,,,,,,,0.050420168,0.034370175,0.066470161,,,,,,,0.138,,,0.106,0.169,0.377,,,0.316,0.438,8.8,0.04589777,0.074,,,0.244,,,0.2,0.289,0.537589499,4505,8380,,,0.183283151,,,0.151086956,0.21818819,0.307692308,4,13,0.157450571,0.460702037,48,4,8330,,,10.85187195,20,1843,6.62860531,16.75983608,,,,,,,,,,,,,9.243212016,5.283294312,15.01039723,,,,,,,0.080404355,517,6430,0.068489461,0.092319248,0.000120048,1,8330,,,8330,0.00035838,3,8371,,,2790.333333,0.00011946,1,8371,,,8371,1999,,,,,,,,,1785,0.43,,,,,,,,,0.43,0.36,,,,,,,,,0.36,0.946981909,5287,5583,0.93224742,0.961716399,0.814745973,1315,1614,0.718748743,0.910743203,0.019013031,89,4681,,,0.1,213,,0.059489362,0.140510638,,,,,,,,,,0.014492754,0,0.384370981,0.038994356,0.011656857,0.066331855,3.560860953,120439,33823,3.157503155,3.964218751,0.11970191,257,2147,0.059517171,0.179886648,13.20528211,11,8330,,,73.59574569,31,42122,50.00473857,104.4632864,,,,,,,,,,,,,74.14547342,50.02563956,105.8472737,,,,6,,,,,0,,,,,0.068965517,240,3480,0.048792858,0.089138176,0.058688147,0.037468839,0.079907456,0.004022989,0,0.013855974,0.011494253,0.000477359,0.022511147,0.805489825,3404,4226,0.771686196,0.839293454,,,,,,,,,,,,,0.783911141,0.731569675,0.836252607,0.268,,4226,0.22467826,0.311321741,81.14707378,,,79.35570672,82.93844085,,,,,,,,,,,,,81.04841851,79.2355056,82.86133143,,,,280.2969962,87,22432,219.3151367,352.9876778,,,,,,,,,,,,,281.6692494,219.9860206,355.2874317,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.086,,,0.073,0.1,0.127,,,0.109,0.146,0.079,,,0.067,0.092,,,,,,0.074,620,,,,0.04589777,406.2870567,8852,,,,,,,,,,,,,,,,,,,,,,,,,,0.265,,,0.249,0.279,0.092862093,402,4329,0.077372731,0.108351455,0.056363636,124,2200,0.038491296,0.074235977,0.00071676,6,8371,,,1395.166667,,,,,,,,,,,3.338902866,,,,,,,,,3.325549887,3.134950901,,,,,,,,,3.116234821,0.061524702,,,,,5484.55775,,,,,0.711819691,40741,57235,0.630489362,0.79315002,69033,,,60311.29787,77754.70213,,,,,,,,,,,,,72875,66263.42553,79486.57447,,,,,,0.38491147,500,1299,,,,,,,,0.251039358,,69033,,,5.253940455,3,571,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,30.32498273,18,59357,17.97250666,47.9265466,,,,,,,,,,,,,29.75617441,17.33406814,47.64251775,,,,20,,1000,,,20,,0.793015873,4996,6300,,,0.633,,,,,4.585334228,,,,,0.796064401,2670,3354,0.76558219,0.826546611,0.066562986,214,3215,0.041731188,0.091394784,0.800834824,2686,3354,0.773922417,0.827747231,8371,,,,,0.257555848,2156,8371,,,0.225779477,1890,8371,,,0.004778402,40,8371,,,0.007645443,64,8371,,,0.002508661,21,8371,,,0.00011946,1,8371,,,0.024608768,206,8371,,,0.952693824,7975,8371,,,0.000638814,5,7827,0,0.009290408,0.487158046,4078,8371,,,1,8380,8380,, -31,029,31029,NE,Chase County,2024,1,5692.550345,52,10364,3316.120353,9114.324549,1,,,,2,,,,2,,,,2,,,,2,6188.390633,3383.250745,10383.06795,1,,,,2,,0.14,,,0.117,0.166,3.201965669,,,2.473558502,3.940905122,3.961120862,,,3.112999259,4.823647487,0.054285714,19,350,0.030547677,0.078023751,1,,,,,,,,,,,,,0.042145594,0.017769638,0.06652155,,,,,,,0.161,,,0.127,0.2,0.364,,,0.299,0.434,8.2,0.087909328,0.083,,,0.276,,,0.228,0.329,0.650398151,2532,3893,,,0.181723574,,,0.148908089,0.217889427,0.75,3,4,0.567659215,0.8560462,,,,,,22.24576271,21,944,13.77047774,34.00501137,,,,,,,,,,70,38.26965138,117.4481056,,,,,,,,,,0.125208125,376,3003,0.106144295,0.144271955,0.00026137,1,3826,,,3826,0.000265111,1,3772,,,3772,,0,3772,,,,2103,,,,,,,,,2128,0.39,,,,,,,,,0.39,0.14,,,,,,,,,0.14,0.879377432,2260,2570,0.817317043,0.941437821,0.60842627,491,807,0.498468874,0.718383667,0.018324607,42,2292,,,0.119,110,,0.073723404,0.164276596,,,,,,,,,,0.294820717,0.018102583,0.571538851,0.063268893,0.005949988,0.120587798,3.612580293,105733,29268,2.487579506,4.737581079,0.142536476,127,891,0.02185592,0.263217032,18.29587036,7,3826,,,61.41877367,12,19538,31.7359766,107.2862373,,,,,,,,,,,,,,,,,,,5,,,,,0,,,,,0.094339623,150,1590,0.045826098,0.142853148,0.076923077,0.033371561,0.120474593,0.005031447,0,0.017564927,0.01572327,0,0.041535345,0.732819905,1237,1688,0.671499622,0.794140189,,,,,,,,,,,,,0.759377212,0.693869889,0.824884535,0.148,,1688,0.074716139,0.221283861,78.2416353,,,75.67156983,80.81170077,,,,,,,,,,,,,77.66456559,74.63936197,80.6897692,,,,338.7167253,52,10364,248.8763094,450.4214391,,,,,,,,,,,,,357.0190633,257.3079379,482.5860577,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.097,,,0.083,0.114,0.135,,,0.116,0.156,0.091,,,0.078,0.106,,,,,,0.083,310,,,,0.087909328,348.6483953,3966,,,,,,,,,,,,,,,,,,,,,,,,,,0.289,,,0.274,0.304,0.138739619,284,2047,0.116101321,0.161377917,0.097194389,97,998,0.065024176,0.129364602,0.001325557,5,3772,,,754.4,,,,,,,,,,,3.06181701,,,,,,,,,3.176047074,3.340132467,,,,,,,,,3.367417641,0.0462248,,,,,1979.275,,,,,0.668061487,38636,57833,0.561478432,0.774644542,64985,,,55845.08511,74124.91489,,,,,,,,,,61429,29979.6383,92878.3617,56604,50569.10638,62638.89362,,,,,,0.3787062,281,742,,,,,,,,0.266676925,,64985,,,10.20408163,2,196,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18,,500,,,9,,0.735424354,1993,2710,,,0.57,,,,,1.79411366,,,,,0.740189445,1094,1478,0.666979181,0.81339971,0.101783061,137,1346,0.042065031,0.161501091,0.869418133,1285,1478,0.809069775,0.929766491,3772,,,,,0.248939555,939,3772,,,0.229851538,867,3772,,,0.004772004,18,3772,,,0.006892895,26,3772,,,0.00583245,22,3772,,,0.000265111,1,3772,,,0.156150583,589,3772,,,0.824496288,3110,3772,,,0.012068966,42,3480,0,0.033575326,0.499469777,1884,3772,,,1,3893,3893,, -31,031,31031,NE,Cherry County,2024,1,10187.19256,78,15110,7095.752876,14167.91878,0,,,,2,,,,2,,,,2,,,,2,8835.304843,5660.946526,13146.23326,1,,,,2,,0.136,,,0.114,0.159,3.064531593,,,2.412544686,3.772620188,4.005357943,,,3.231943806,4.888836568,0.050373134,27,536,0.031857028,0.06888924,0,,,,,,,,,,,,,0.049881235,0.029085582,0.070676889,,,,,,,0.17,,,0.135,0.207,0.377,,,0.313,0.447,7.6,0.108528638,0.099,,,0.259,,,0.212,0.307,0.665444546,3630,5455,,,0.173829424,,,0.141433439,0.210673409,0.375,6,16,0.240765683,0.502616143,201.5,11,5458,,,19.53488372,21,1075,12.09240092,29.86114487,,,,,,,,,,,,,,,,,,,,,,0.077894235,327,4198,0.064787852,0.091000618,0.000732869,4,5458,,,1364.5,0.001830161,10,5464,,,546.4,0.000549048,3,5464,,,1821.333333,2549,,,,,,,,,2558,0.48,,,,,0.27,,,,0.49,0.09,,,,,,,,,0.08,0.978127501,3667,3749,0.961712803,0.994542199,0.734197731,906,1234,0.596464238,0.871931224,0.01792536,61,3403,,,0.163,216,,0.099851064,0.226148936,0.826086957,0.111732793,1,,,,,,,,,,0.125,0.040761462,0.209238538,3.526501069,107188,30395,2.776737458,4.276264681,0.210925645,278,1318,0.138670794,0.283180496,12.8252107,7,5458,,,126.2847722,36,28507,88.44830188,174.8313554,,,,,,,,,,,,,117.1338557,78.44638152,168.2237557,,,,4.1,,,,,0,,,,,0.099593496,245,2460,0.056922732,0.14226426,0.087116564,0.042354582,0.131878547,0.013414634,0,0.030603589,0.026422764,0,0.054323389,0.659771755,1850,2804,0.607981835,0.711561674,,,,,,,,,,,,,0.690436933,0.600414125,0.780459742,0.141,,2804,0.088277437,0.193722563,76.66262344,,,74.00237547,79.32287142,,,,,,,,,,,,,77.69592136,74.8554103,80.53643242,,,,408.0107527,78,15110,316.2027291,518.1592332,,,,,,,,,,,,,354.664495,265.6680443,463.9098918,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.098,,,0.085,0.113,0.137,,,0.117,0.158,0.091,,,0.078,0.106,,,,,,0.099,540,,,,0.108528638,620.0241101,5713,,,,,,,,,,,,,,,,,,,,,,,,,,0.304,,,0.287,0.32,0.093663912,272,2904,0.075791571,0.111536252,0.044247788,60,1356,0.028758426,0.059737149,0.001098097,6,5464,,,910.6666667,,,,,,,,,,,3.529217653,,,,,,,,,3.533402919,3.596183962,,,,,,,,,3.689535636,0.034828145,,,,,6189.8585,,,,,0.727774699,35455,48717,0.629845725,0.825703672,58017,,,51155.21277,64878.78723,,,,,,,,,,,,,63854,57492.6383,70215.3617,,,,,,0.4275,342,800,,,,,,,,0.298705552,,58017,,,,,382,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,32.3487695,13,40187,17.22435736,55.31738104,,,,,,,,,,,,,,,,,,,41.66666667,,600,,,25,,0.73536036,3265,4440,,,0.515,,,,,10.92043738,,,,,0.574881517,1213,2110,0.515387406,0.634375628,0.087699317,154,1756,0.033426714,0.14197192,0.813270142,1716,2110,0.759711019,0.866829265,5464,,,,,0.249633968,1364,5464,,,0.220168375,1203,5464,,,0.004026354,22,5464,,,0.082540264,451,5464,,,0.00658858,36,5464,,,0.000549048,3,5464,,,0.047767204,261,5464,,,0.84022694,4591,5464,,,0,0,5095,0,0.014031278,0.487188873,2662,5464,,,1,5455,5455,, -31,033,31033,NE,Cheyenne County,2024,1,11165.41888,165,25069,8517.347623,13813.49015,0,,,,2,,,,2,,,,2,,,,2,10180.26784,7505.02838,12855.5073,,,,,2,,0.138,,,0.117,0.162,3.224003228,,,2.512831302,3.992088989,4.583979887,,,3.672566879,5.523890667,0.094666667,71,750,0.073714534,0.1156188,0,,,,,,,,,,0.136363636,0.064661932,0.208065341,0.089201878,0.067101296,0.11130246,,,,,,,0.175,,,0.14,0.216,0.391,,,0.322,0.463,7.7,0.054235516,0.12,,,0.265,,,0.219,0.316,0.651140684,6165,9468,,,0.200196781,,,0.164529213,0.240181722,0.6,6,10,0.459169088,0.71012622,146.9,14,9529,,,21.63588391,41,1895,15.52628384,29.35151956,,,,,,,,,,42.91845494,20.58106737,78.9285667,18.27347196,12.23803096,26.2437539,,,,,,,0.071852251,533,7418,0.059937358,0.083767145,0.000524714,5,9529,,,1905.8,0.000315424,3,9511,,,3170.333333,0.001261697,12,9511,,,792.5833333,1338,,,,,,,,,1269,0.32,,,,,,,,,0.33,0.35,,,,,,,,0.31,0.35,0.923065342,6131,6642,0.899804687,0.946325996,0.711924967,1594,2239,0.600672695,0.823177238,0.025316456,108,4266,,,0.161,342,,0.099042553,0.222957447,,,,,,,,,,0.034722222,0,0.142020587,0.14579659,0.074170072,0.217423108,4.016808055,101328,25226,3.26490159,4.768714521,0.129749768,280,2158,0.059561158,0.199938379,9.444852555,9,9529,,,100.9970775,47,46536,74.20885372,134.3047025,,,,,,,,,,,,,99.53389008,71.42723798,135.0289609,,,,4.5,,,,,0,,,,,0.129398411,570,4405,0.09719848,0.161598342,0.101149425,0.068114044,0.134184807,0.028376845,0.01060938,0.04614431,0.008853576,0,0.018890067,0.780864198,3542,4536,0.742638638,0.819089758,,,,,,,,,,,,,0.797501802,0.759780009,0.835223594,0.146,,4536,0.102027747,0.189972254,75.37827148,,,73.2839721,77.47257086,,,,,,,,,,,,,76.10533392,73.99103,78.21963785,,,,487.6748987,165,25069,406.9953959,568.3544016,,,,,,,,,,,,,471.2994555,388.2822071,554.3167038,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.098,,,0.084,0.114,0.143,,,0.123,0.165,0.091,,,0.078,0.108,,,,,,0.12,1150,,,,0.054235516,542.2466839,9998,,,,,,,,,,,,,,,,,,,,,,,,,,0.297,,,0.282,0.315,0.085949464,449,5224,0.070460102,0.101438826,0.040017399,92,2299,0.026911016,0.053123782,0.001577121,15,9511,,,634.0666667,0.903937008,114.8,127,,,,,,,,3.235326947,,,,,,,,,3.335548307,3.174546805,,,,,,,,,3.333307469,0.038672313,,,,,6576.364,,,,,0.807602279,38987,48275,0.725717085,0.889487472,56604,,,48696.08511,64511.91489,14274,9903.617021,18644.38298,96250,63599.61702,128900.383,,,,49250,26498.51064,72001.48936,53805,48185.93617,59424.06383,,,,,,0.405232929,635,1567,,,,,,,,0.306162109,,56604,,,11.64725458,7,601,,,,,,,,,,,,,,,,,,,,,,,,,,27.02108899,12,46536,13.48883027,48.34819221,25.78648788,,,,,,,,,,,,,30.6169917,15.28389195,54.78225544,,,,27.93536187,13,46536,14.87440367,47.77031958,,,,,,,,,,,,,31.55952612,16.8041185,53.96775082,,,,19.47448842,13,66754,10.3693449,33.3019683,,,,,,,,,,,,,,,,,,,25.55555556,,900,,,23,,0.664111498,4765,7175,,,0.638,,,,,41.18140109,,,,,0.649501276,2800,4311,0.610643382,0.68835917,0.102842004,427,4152,0.069289232,0.136394776,0.867780097,3741,4311,0.838401965,0.897158229,9511,,,,,0.227946588,2168,9511,,,0.226369467,2153,9511,,,0.007885606,75,9511,,,0.010934707,104,9511,,,0.010619283,101,9511,,,0.000946273,9,9511,,,0.087477657,832,9511,,,0.871096625,8285,9511,,,0.001234429,11,8911,0,0.0087686,0.491956682,4679,9511,,,0.341782848,3236,9468,, -31,035,31035,NE,Clay County,2024,1,6872.423067,96,16899,4863.335588,9432.937599,0,,,,2,,,,2,,,,2,,,,2,6768.04733,4658.812364,9504.854785,,,,,2,,0.133,,,0.112,0.158,3.137820664,,,2.482714317,3.898693027,4.203913557,,,3.409600969,5.103488343,0.044526902,24,539,0.027113559,0.061940245,0,,,,,,,,,,,,,0.043572985,0.024896966,0.062249004,,,,,,,0.168,,,0.13,0.205,0.42,,,0.353,0.49,8.1,0.080555528,0.091,,,0.263,,,0.218,0.312,0.398918742,2435,6104,,,0.185063245,,,0.15100467,0.225446949,0.333333333,2,6,0.110000414,0.553214291,263.2,16,6078,,,18.61504095,25,1343,12.04667301,27.4794726,,,,,,,,,,76.47058824,40.71736759,130.7670348,10.82055906,5.591140765,18.90133909,,,,,,,0.099726489,474,4753,0.085428616,0.114024361,0.000329056,2,6078,,,3039,,0,6049,,,,0.000165317,1,6049,,,6049,1776,,,,,,,,,1492,0.5,,,,,,,,,0.5,0.4,,,,,,,,,0.4,0.932552021,3899,4181,0.917024221,0.948079821,0.6609319,922,1395,0.589207201,0.732656599,0.023649728,74,3129,,,0.118,174,,0.072723404,0.163276596,,,,,,,,,,0.395555556,0.234256838,0.556854273,0.054191363,0.027756799,0.080625928,4.215617832,126810,30081,3.391308463,5.039927201,0.201320132,305,1515,0.138337926,0.264302338,18.09805857,11,6078,,,64.69142192,20,30916,39.51520114,99.91065436,,,,,,,,,,,,,61.8451688,36.02708989,99.02010629,,,,6.2,,,,,1,,,,,0.089320388,230,2575,0.067303757,0.11133702,0.063921569,0.038362787,0.08948035,0.017087379,0.00226264,0.031912118,0.017087379,0.003760928,0.03041383,0.792739274,2402,3030,0.75752948,0.827949068,,,,,,,,,,,,,0.79213232,0.737582811,0.846681829,0.324,,3030,0.278629437,0.369370563,77.4958751,,,75.54834158,79.44340863,,,,,,,,,,,,,77.48554125,75.48309263,79.48798987,,,,386.2241616,96,16899,307.1755374,479.4060211,,,,,,,,,,,,,381.9598072,300.4356184,478.7899258,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.093,,,0.079,0.108,0.136,,,0.117,0.159,0.089,,,0.076,0.104,,,,,,0.091,560,,,,0.080555528,526.9942663,6542,,,,,,,,,,,,,,,,,,,,,,,,,,0.284,,,0.268,0.299,0.111890244,367,3280,0.092826414,0.130954074,0.07469414,116,1553,0.052055843,0.097332438,0.00049595,3,6049,,,2016.333333,,,,,,,,,,,2.985759727,,,,,,,,,3.148490126,3.198381837,,,,,,,,,3.414312254,0.08738084,,,,,845.541,,,,,0.844101046,45611,54035,0.75590305,0.932299042,64251,,,56654.06383,71847.93617,,,,,,,,,,85048,54224.17021,115871.8298,73945,67444.23404,80445.76596,,,,,,0.502287283,549,1093,,,,,,,,0.269723428,,64251,,,4.901960784,2,408,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,31.42857143,,700,,,22,,0.775163399,3558,4590,,,0.678,,,,,0.112294719,,,,,0.804040404,1990,2475,0.780282974,0.827797834,0.063900415,154,2410,0.03880598,0.08899485,0.845252525,2092,2475,0.817350926,0.873154125,6049,,,,,0.247313606,1496,6049,,,0.205653827,1244,6049,,,0.006943296,42,6049,,,0.015374442,93,6049,,,0.002975699,18,6049,,,0.003141015,19,6049,,,0.096379567,583,6049,,,0.879318896,5319,6049,,,0.00895837,51,5693,0,0.022085364,0.485204166,2935,6049,,,1,6104,6104,, -31,037,31037,NE,Colfax County,2024,1,5285.915123,86,29878,3855.582763,7072.970319,0,,,,2,,,,2,,,,2,,,,2,5645.44083,3494.616852,8629.655998,1,,,,2,,0.174,,,0.148,0.203,3.298515301,,,2.643720243,4.081455482,3.547122852,,,2.838012665,4.363817751,0.056273764,74,1315,0.043818034,0.068729495,0,,,,,,,,,,0.069611781,0.051361513,0.087862048,0.044444444,0.025403586,0.063485303,,,,,,,0.161,,,0.133,0.194,0.426,,,0.361,0.497,8.4,0.093177498,0.073,,,0.315,,,0.266,0.369,0.761576262,8059,10582,,,0.201652667,,,0.167603103,0.241049405,0.5,5,10,0.338551574,0.634481032,266.7,28,10498,,,36.42524354,86,2361,29.13549312,44.98487945,,,,,,,,,,53.20600273,42.05713725,66.40349935,,,,,,,,,,0.183128731,1626,8879,0.159298944,0.206958518,,0,10498,,,,0.000191498,2,10444,,,5222,9.57488E-05,1,10444,,,10444,1618,,,,,,,,,1125,0.45,,,,,,,,0.21,0.47,0.4,,,,,,,,0.17,0.42,0.731352335,4824,6596,0.681992552,0.780712118,0.529521153,1139,2151,0.431834273,0.627208033,0.019719772,114,5781,,,0.112,342,,0.065531915,0.158468085,0.017921147,0,0.121025155,,,,,,,0.106326422,0.026176441,0.186476404,0.042094456,0.002835673,0.081353239,3.684164187,121349,32938,2.451964337,4.916364037,0.178189818,567,3182,0.060611646,0.29576799,15.24099829,16,10498,,,48.81712355,26,53260,31.88896586,71.5283967,,,,,,,,,,48.63221885,25.12897714,84.95069928,55.18981354,30.17278463,92.59912927,,,,6.7,,,,,1,,,,,0.082887701,310,3740,0.035086608,0.130688794,0.03,0.011827583,0.048172417,0.048128342,0.001494183,0.094762501,0.005080214,0,0.015151595,0.76702509,4066,5301,0.711389735,0.822660444,,,,,,,,,,0.689165187,0.583534266,0.794796107,0.78216194,0.728476032,0.835847848,0.208,,5301,0.142219427,0.273780573,81.36117401,,,79.50823252,83.21411551,,,,,,,,,,82.38335175,78.75650178,86.01020172,80.59618715,78.23543713,82.95693717,,,,259.265695,86,29878,206.2017013,321.8170886,,,,,,,,,,,,,300.5393151,223.0660725,396.2236197,,,,72.30135204,10,13831,34.67130863,132.9647606,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.106,,,0.092,0.123,0.126,,,0.11,0.145,0.111,,,0.096,0.129,,,,,,0.073,770,,,,0.093177498,979.7613961,10515,,,,,,,,,,,,,,,,,,,,,,,,,,0.311,,,0.299,0.323,0.216632089,1253,5784,0.186844855,0.246419323,0.121725732,395,3245,0.085981051,0.157470413,0.000574493,6,10444,,,1740.666667,0.862068966,175,203,,,,,,,,3.079648664,,,,,,,,2.975939744,3.541406044,3.178153839,,,,,,,,3.058060938,3.464897043,0.437535505,,,,,1038.263667,,,,,0.701287925,40566,57845,0.5418906,0.86068525,69549,,,59491.6383,79606.3617,,,,,,,,,,75544,64074.7234,87013.2766,68932,59651.48936,78212.51064,,,,,,0.387180437,1045,2699,,,53.79594154,,,,,0.249176839,,69549,,,2.298850575,2,870,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,25.60853977,19,74194,15.41801381,39.99090704,,,,,,,,,,38.25442133,20.36886823,65.41622552,,,,,,,57.85714286,,1400,,,81,,0.724561404,3717,5130,,,0.624,,,,,50.32804535,,,,,0.782909292,2831,3616,0.723554619,0.842263965,0.029148629,101,3465,0.007800894,0.050496365,0.860066372,3110,3616,0.804796931,0.915335812,10444,,,,,0.298831865,3121,10444,,,0.143144389,1495,10444,,,0.043278437,452,10444,,,0.037629261,393,10444,,,0.01311758,137,10444,,,0.007181157,75,10444,,,0.470222137,4911,10444,,,0.466679433,4874,10444,,,0.18296075,1776,9707,0.125043028,0.240878472,0.461700498,4822,10444,,,0.383670384,4060,10582,, -31,039,31039,NE,Cuming County,2024,1,6199.803546,116,23670,4315.785953,8083.821138,0,,,,2,,,,2,,,,2,,,,2,5955.412894,4074.182898,7836.642889,,,,,2,,0.128,,,0.104,0.152,3.08400027,,,2.455904218,3.821676719,3.84085977,,,3.091918762,4.651362201,0.062885327,51,811,0.046177627,0.079593027,0,,,,,,,,,,,,,0.060921248,0.042850175,0.078992321,,,,,,,0.159,,,0.121,0.197,0.387,,,0.324,0.452,8.6,0.051906312,0.08,,,0.264,,,0.215,0.314,0.713524909,6431,9013,,,0.192940245,,,0.159273252,0.230117354,0.2,2,10,0.05050879,0.392851974,244.9,22,8984,,,10.95759886,23,2099,6.946177721,16.44177842,,,,,,,,,,,,,12.40401654,7.678281739,18.9608569,,,,,,,0.103754658,724,6978,0.089456785,0.11805253,0.000445236,4,8984,,,2246,0.000671968,6,8929,,,1488.166667,0.000895957,8,8929,,,1116.125,1975,,,,,,,,,2028,0.57,,,,,,,,,0.57,0.31,,,,,,,,,0.31,0.921293272,5642,6124,0.902550938,0.940035606,0.706878307,1336,1890,0.605388497,0.808368117,0.019152404,94,4908,,,0.118,250,,0.077489362,0.158510638,,,,,,,,,,0.026548673,0,0.126374876,0.093340922,0.041428515,0.145253329,3.350100662,116483,34770,2.753772854,3.946428469,0.110507246,244,2208,0.051622465,0.169392027,11.13089938,10,8984,,,65.00784577,29,44610,43.53677457,93.36211038,,,,,,,,,,,,,69.22899413,45.62234336,100.7245518,,,,6.8,,,,,1,,,,,0.076523995,295,3855,0.051430313,0.101617677,0.053473132,0.029952075,0.07699419,0.015564202,0.003173461,0.027954944,0.015564202,0.005610339,0.025518066,0.841706366,3887,4618,0.801768114,0.881644618,,,,,,,,,,,,,0.830228845,0.772986574,0.887471117,0.19,,4618,0.149349428,0.230650572,79.06802458,,,77.27866951,80.85737965,,,,,,,,,,,,,79.04062597,77.24543346,80.83581848,,,,336.7364157,116,23670,271.5166765,401.956155,,,,,,,,,,,,,345.7847611,276.0550023,415.5145198,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.092,,,0.077,0.107,0.133,,,0.113,0.154,0.084,,,0.071,0.098,0,0,7431,,,0.08,720,,,,0.051906312,474.3717877,9139,,,,,,,,,,,,,,,,,,,,,,,,,,0.285,,,0.27,0.301,0.11875,570,4800,0.09968617,0.13781383,0.073011734,168,2301,0.050373436,0.095650032,0.001119946,10,8929,,,892.9,0.927217742,114.975,124,,,,,,,,3.456761123,,,,,,,,3.146355506,3.628865607,3.588553032,,,,,,,,3.141155777,3.766572151,0.172561815,,,,,2764.398033,,,,,0.684665419,38420,56115,0.601008968,0.76832187,65809,,,58637.42553,72980.57447,76607,42725.80851,110488.1915,,,,,,,53700,21905.10638,85494.89362,69646,64072.21277,75219.78723,,,,,,0.526566758,773,1468,,,,,,,,0.263337841,,65809,,,1.620745543,1,617,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,36,,1000,,,36,,0.700393391,4451,6355,,,0.691,,,,,19.87807682,,,,,0.710320668,2636,3711,0.66587868,0.754762657,0.047673751,166,3482,0.024732693,0.070614808,0.760711399,2823,3711,0.720136841,0.801285956,8929,,,,,0.241796394,2159,8929,,,0.225445179,2013,8929,,,0.00436779,39,8929,,,0.007727629,69,8929,,,0.006159704,55,8929,,,0.000335984,3,8929,,,0.103707022,926,8929,,,0.871430171,7781,8929,,,0.026901559,226,8401,0.011401554,0.042401565,0.495576212,4425,8929,,,1,9013,9013,, -31,041,31041,NE,Custer County,2024,1,7210.74066,140,28558,5205.786241,9215.695078,0,,,,2,,,,2,,,,2,,,,2,7342.796761,5246.915887,9438.677634,,,,,2,,0.133,,,0.11,0.159,3.136161055,,,2.494557292,3.800043601,4.236904479,,,3.489696551,5.009794382,0.069082673,61,883,0.052355758,0.085809587,0,,,,,,,,,,,,,0.068209501,0.050964387,0.085454615,,,,,,,0.158,,,0.123,0.194,0.377,,,0.321,0.435,7,0.144115739,0.111,,,0.252,,,0.206,0.298,0.538549075,5679,10545,,,0.183009025,,,0.151855184,0.217663543,0.1,1,10,0.005279615,0.302965499,76.5,8,10460,,,15.32033426,33,2154,10.54581317,21.51544534,,,,,,,,,,,,,15.09054326,10.18152617,21.54268883,,,,,,,0.080203929,645,8042,0.067097546,0.093310312,0.000573614,6,10460,,,1743.333333,0.000477281,5,10476,,,2095.2,0.001050019,11,10476,,,952.3636364,3456,,,,,,,,,3470,0.52,,,,,,,,,0.52,0.4,,,,,,,,,0.4,0.946807056,6924,7313,0.933403579,0.960210533,0.663162321,1577,2378,0.573584929,0.752739714,0.017174083,110,6405,,,0.146,359,,0.092382979,0.199617021,,,,,,,,,,0.4,0.039946095,0.760053905,0.149178832,0.076125996,0.222231668,4.304370908,121620,28255,3.600590565,5.008151251,0.168441815,427,2535,0.107700231,0.229183398,11.47227534,12,10460,,,89.55223881,48,53600,66.02875154,118.7332765,,,,,,,,,,,,,95.25888587,70.23638259,126.2994626,,,,5.4,,,,,0,,,,,0.128364389,620,4830,0.099316091,0.157412688,0.097398543,0.067204083,0.127593004,0.022567288,0.008328071,0.036806505,0.013457557,0.004916591,0.021998523,0.786080442,3987,5072,0.742869285,0.829291598,,,,,,,,,,,,,0.775862069,0.734885688,0.81683845,0.172,,5072,0.141716475,0.202283525,79.22468781,,,77.4612542,80.98812142,,,,,,,,,,,,,79.07564574,77.26743297,80.88385851,,,,341.2448289,140,28558,279.5094271,402.9802307,,,,,,,,,,,,,346.5554031,282.3738929,410.7369133,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.096,,,0.082,0.112,0.137,,,0.118,0.16,0.092,,,0.078,0.107,80.4,7,8703,,,0.111,1180,,,,0.144115739,1576.482065,10939,,,,,,,,,,,,,,,,,,,,,,,,,,0.297,,,0.281,0.312,0.093278217,519,5564,0.076597366,0.109959068,0.052672049,137,2601,0.034799709,0.07054439,0.00076365,8,10476,,,1309.5,0.876510067,130.6,149,,,,,,,,3.247369478,,,,,,,,,3.240954519,3.375902908,,,,,,,,,3.391551817,0.094587376,,,,,3009.876667,,,,,0.803219277,41667,51875,0.628594103,0.977844452,60328,,,53032.51064,67623.48936,,,,,,,38603,23785.6383,53420.3617,34038,11842.93617,56233.06383,63235,60197.89362,66272.10638,,,,,,0.360232068,683,1896,,,64.44444444,,,,,0.287262963,,60328,,,7.552870091,5,662,,,,,,,,,,,,,,,,,,,,,,,,,,29.68759383,15,53600,15.80739339,50.7666896,27.98507463,,,,,,,,,,,,,31.61393381,16.8330883,54.06078963,,,,27.98507463,15,53600,15.66303383,46.15712476,,,,,,,,,,,,,29.76840183,16.66114853,49.09845179,,,,19.94336086,15,75213,11.16214768,32.89354084,,,,,,,,,,,,,21.15446994,11.83999624,34.89108109,,,,13.33333333,,1200,,,16,,0.739420111,5993,8105,,,0.619,,,,,16.54542617,,,,,0.695575611,3160,4543,0.667821167,0.723330055,0.098768301,425,4303,0.069014126,0.128522477,0.826326216,3754,4543,0.805538276,0.847114156,10476,,,,,0.238640703,2500,10476,,,0.229954181,2409,10476,,,0.008495609,89,10476,,,0.009259259,97,10476,,,0.003054601,32,10476,,,0.000190913,2,10476,,,0.038468881,403,10476,,,0.932798778,9772,10476,,,0.004931562,49,9936,0,0.013357336,0.493413517,5169,10476,,,1,10545,10545,, -31,043,31043,NE,Dakota County,2024,1,6521.65031,261,57759,5362.50531,7680.79531,0,,,,2,,,,2,,,,2,4597.428978,3101.866025,6563.115733,,6649.340461,4841.797796,8456.883126,,,,,2,,0.176,,,0.152,0.204,3.169279165,,,2.56049097,3.799129904,4.011445149,,,3.360453864,4.688340494,0.069700697,170,2439,0.059594679,0.079806715,0,0.097087379,0.0399077,0.154267057,,,,0.03163017,0.014709929,0.048550412,0.07219917,0.05758561,0.08681273,0.078048781,0.05684782,0.099249741,,,,,,,0.164,,,0.138,0.194,0.404,,,0.359,0.45,8.3,0.049387898,0.098,,,0.302,,,0.262,0.344,0.866323788,18697,21582,,,0.183186214,,,0.154327308,0.213693326,0.4,2,5,0.149190828,0.619170557,630.9,134,21241,,,25.70850202,127,4940,21.23723113,30.17977292,106.1946903,54.8723461,185.5007526,,,,,,,29.85611511,23.78022903,37.01114669,11.68511685,7.035203668,18.24775742,,,,,,,0.134816313,2400,17802,0.116943972,0.152688653,0.000141236,3,21241,,,7080.333333,0.000332668,7,21042,,,3006,0.002281152,48,21042,,,438.375,1229,,,,,,,,,1099,0.49,,,,,,,,0.31,0.51,0.43,,,,,,,,0.09,0.45,0.785514888,10130,12896,0.745351982,0.825677795,0.527712584,2923,5539,0.442969053,0.612456114,0.028372639,314,11067,,,0.164,983,,0.106808511,0.221191489,0.685950413,0.33782985,1,0.301136364,0,0.630810074,,,,0.123043879,0.044345784,0.201741973,0.301657459,0.214621691,0.388693226,3.585828739,117712,32827,3.015755567,4.15590191,0.168952719,1047,6197,0.096622821,0.241282617,8.003389671,17,21241,,,35.43097849,36,101606,24.81542174,49.05140886,,,,,,,,,,,,,55.25448943,36.09406698,80.96062923,,,,6.7,,,,,0,,,,,0.150340136,1105,7350,0.109482088,0.191198184,0.083947584,0.054172028,0.11372314,0.055102041,0.02802313,0.082180952,0.029795918,0.005009268,0.054582569,0.768180069,7986,10396,0.707534214,0.828825925,,,,0.420289855,0.291940982,0.548638729,,,,0.690242764,0.579353706,0.801131822,0.830882353,0.70268123,0.959083476,0.085,,10396,0.054251263,0.115748737,77.5449332,,,76.39911315,78.69075324,,,,,,,,,,,,,77.0815993,75.56579758,78.59740101,,,,392.9086828,261,57759,344.2094926,441.607873,,,,,,,,,,231.2028273,158.1425627,326.3894076,410.2797278,344.5373264,476.0221292,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.103,,,0.089,0.119,0.128,,,0.112,0.146,0.11,,,0.096,0.126,47.9,8,16694,,,0.098,2080,,,,0.049387898,1037.442177,21006,,,,,,,,,,,,,,,,,,,,,,,,,,0.291,,,0.282,0.299,0.166257928,1966,11825,0.141236652,0.191279205,0.074784276,468,6258,0.052145978,0.097422574,0.000522764,11,21042,,,1912.909091,0.882020906,253.14,287,,,,,,,,2.846592579,,,,,,,2.482040765,2.824684877,3.296996789,2.902023537,,,,,,,2.715193201,2.792616324,3.221536522,0.151841359,,,,,2759.938935,,,,,0.803782506,40460,50337,0.712057874,0.895507138,65986,,,59866.51064,72105.48936,29055,8221.808511,49888.19149,56333,54530.2766,58135.7234,,,,83288,65300.08511,101275.9149,63951,56069.29787,71832.70213,,,,,,0.498725377,2152,4315,,,68.15360818,,,,,0.382702391,,65986,,,3.241491086,6,1851,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.50037801,15,142852,5.876981864,17.31877669,,,,,,,,,,,,,,,,,,,13.33333333,,2400,,,32,,0.568297783,6794,11955,,,0.645,,,,,103.3255074,,,,,0.650327253,4670,7181,0.612334842,0.688319663,0.10600907,748,7056,0.072160935,0.139857206,0.804901824,5780,7181,0.769775114,0.840028535,21042,,,,,0.290846878,6120,21042,,,0.140528467,2957,21042,,,0.080648227,1697,21042,,,0.045242848,952,21042,,,0.035025188,737,21042,,,0.008982036,189,21042,,,0.405807433,8539,21042,,,0.432040681,9091,21042,,,0.13259725,2594,19563,0.100660031,0.164534469,0.493489212,10384,21042,,,0.206051339,4447,21582,, -31,045,31045,NE,Dawes County,2024,1,8555.025806,111,22793,6139.675178,10970.37643,0,,,,2,,,,2,,,,2,,,,2,6916.295021,4918.161871,9454.802976,,,,,2,,0.127,,,0.105,0.151,3.022515266,,,2.377953631,3.765463685,3.99599972,,,3.183608582,4.870877159,0.077441077,46,594,0.055945674,0.098936481,0,,,,,,,,,,,,,0.0781893,0.054320397,0.102058204,,,,,,,0.147,,,0.114,0.183,0.403,,,0.33,0.475,7.7,0.097013213,0.102,,,0.247,,,0.2,0.296,0.89791438,7362,8199,,,0.186530865,,,0.150410126,0.226468502,0.833333333,5,6,0.737313514,0.893476419,650.5,53,8148,,,7.530593034,24,3187,4.824993051,11.20492551,,,,,,,,,,,,,4.66562986,2.410799031,8.149916426,,,,,,,0.09622226,568,5903,0.079541409,0.112903111,0.000736377,6,8148,,,1358,0.001213445,10,8241,,,824.1,0.002912268,24,8241,,,343.375,2099,,,,,,,,,2181,0.39,,,,,0.23,,,,0.4,0.37,,,,,0.23,,,,0.36,0.956362232,4953,5179,0.925131026,0.987593439,0.803414097,1459,1816,0.661205561,0.945622633,0.021255463,107,5034,,,0.2,291,,0.121361702,0.278638298,,,,,,,,,,0.875,0.514765332,1,0.01584507,0,0.045245133,3.884638022,99000,25485,2.642875077,5.126400967,0.255420054,377,1476,0.096085321,0.414754788,18.40942563,15,8148,,,65.56762833,28,42704,43.56921285,94.7634787,,,,,,,,,,,,,71.79147338,46.89657393,105.1911423,,,,3.6,,,,,1,,,,,0.126582279,450,3555,0.068671339,0.184493218,0.106730499,0.049515727,0.16394527,0.007032349,0,0.018222512,0.014064698,0,0.029529072,0.698508854,2998,4292,0.650690935,0.746326772,,,,,,,,,,,,,0.724963504,0.653139563,0.796787445,0.184,,4292,0.123750211,0.244249789,77.10253705,,,75.07226026,79.13281383,,,,,,,,,,,,,78.02106286,76.06162843,79.98049729,,,,416.549528,111,22793,332.74862,500.350436,,,,,,,,,,,,,372.0009684,294.5166699,463.6242003,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.093,,,0.078,0.108,0.134,,,0.114,0.155,0.089,,,0.075,0.104,0,0,7145,,,0.102,860,,,,0.097013213,890.7753187,9182,,,,,,,,,,,,,,,,,,,,,,,,,,0.306,,,0.289,0.324,0.11150521,503,4511,0.09124989,0.131760529,0.050498339,76,1505,0.035008977,0.065987701,0.000728067,6,8241,,,1373.5,0.798831776,85.475,107,,,,,,,,3.110857868,,,,,,,,,3.169475349,3.455745938,,,,,,,,,3.567043454,0.061673719,,,,,4228.883,,,,,0.808648579,37793,46736,0.516761765,1.100535393,52621,,,44791.7234,60450.2766,29605,16249.59575,42960.40426,,,,,,,,,,58480,48442.89362,68517.10638,,,,,,0.340461933,398,1169,,,35.4349803,,,,,0.329336197,,52621,,,5.494505495,3,546,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,47.14285714,,700,,,33,,0.584124734,4121,7055,,,0.619,,,,,54.79950875,,,,,0.632032147,2202,3484,0.582120126,0.681944168,0.12759029,431,3378,0.059371056,0.195809525,0.861079219,3000,3484,0.802911553,0.919246885,8241,,,,,0.1786191,1472,8241,,,0.200703798,1654,8241,,,0.015046718,124,8241,,,0.046596287,384,8241,,,0.012983861,107,8241,,,0.003883024,32,8241,,,0.062371072,514,8241,,,0.849047446,6997,8241,,,0.016700663,131,7844,0,0.037591941,0.513651256,4233,8241,,,0.398707159,3269,8199,, -31,047,31047,NE,Dawson County,2024,1,8047.24226,291,65822,6684.543014,9409.941505,0,,,,2,,,,2,,,,2,6382.976971,4560.092329,8691.802981,,8375.132988,6432.48639,10317.77959,,,,,2,,0.17,,,0.144,0.197,3.290597104,,,2.634890017,4.009953248,4.16804759,,,3.45377402,4.958803737,0.060147602,163,2710,0.051195801,0.069099402,0,,,,,,,0.076487252,0.048761413,0.104213091,0.057971015,0.044597528,0.071344501,0.058771149,0.045015031,0.072527267,,,,,,,0.176,,,0.143,0.211,0.434,,,0.379,0.492,7.2,0.145730574,0.1,,,0.297,,,0.252,0.347,0.8591929,20716,24111,,,0.184436324,,,0.153348293,0.219177554,0.391304348,9,23,0.282261006,0.49504965,372.4,89,23898,,,29.61432507,172,5808,25.18850568,34.04014446,,,,,,,,,,41.44144144,33.86715013,49.01573275,19.91732431,14.91944267,26.05235059,,,,,,,0.136801939,2653,19393,0.118929598,0.154674279,0.000543979,13,23898,,,1838.307692,0.000586167,14,23884,,,1706,0.001591023,38,23884,,,628.5263158,2875,,,,,,,,2485,2764,0.4,,,,,,,,0.21,0.43,0.29,,,,,,,,0.21,0.3,0.787671675,12216,15509,0.764192527,0.811150822,0.498841827,3015,6044,0.433893786,0.563789867,0.024539431,337,13733,,,0.157,1006,,0.105765957,0.208234043,0.409090909,0,0.957729589,,,,0.422608696,0.295418591,0.5497988,0.303462322,0.199736275,0.407188368,0.072946176,0.038784373,0.107107979,4.179983715,118072,28247,3.223779655,5.136187776,0.239902081,1568,6536,0.157892671,0.321911491,19.66691773,47,23898,,,77.68892342,92,118421,62.62823719,95.27856799,,,,,,,,,,52.00594354,32.19249872,79.49660905,94.3994572,72.69908484,120.5459994,,,,5.8,,,,,0,,,,,0.136035536,1225,9005,0.107013967,0.165057105,0.093736018,0.064934674,0.122537362,0.044975014,0.02662189,0.063328138,0.007773459,0.000906768,0.014640151,0.777623746,9536,12263,0.744506312,0.81074118,,,,,,,,,,0.712470746,0.640309794,0.784631697,0.849657678,0.823666898,0.875648458,0.195,,12263,0.156098283,0.233901717,77.45293249,,,76.27067883,78.63518615,,,,,,,,,,80.30631358,77.10116063,83.51146653,76.88053426,75.3263979,78.43467062,,,,359.2164841,291,65822,316.575421,401.8575472,,,,,,,,,,275.6125924,205.8406668,361.4292465,392.5528162,334.9572688,450.1483636,,,,81.68193764,23,28158,51.7793417,122.5630119,,,,,,,,,,85.21186769,42.53745733,152.4675692,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.106,,,0.09,0.122,0.132,,,0.114,0.153,0.102,,,0.087,0.118,,,,,,0.1,2390,,,,0.145730574,3545.041944,24326,,,,,,,,,,,,,,,,,,,,,,,,,,0.302,,,0.291,0.312,0.164280793,2146,13063,0.141642495,0.186919091,0.082329922,547,6644,0.058500135,0.106159709,0.000962988,23,23884,,,1038.434783,0.948132992,370.72,391,,,,,,,,2.808166053,,,,,,,2.54944679,2.708914514,2.982452901,2.969187626,,,,,,,3.029707285,2.704120174,3.206225983,0.311229214,,,,,2156.6826,,,,,0.872422111,43403,49750,0.761595301,0.983248921,62089,,,54060.74468,70117.25532,,,,90000,48452.76596,131547.234,71115,47213.7234,95016.2766,66336,57303.31915,75368.68085,67672,60604.08511,74739.91489,,,,,,0.540851764,2959,5471,,,73.60254508,,,,,0.279115463,,62089,,,6.379585327,12,1881,,,,,,,,,,,,,,,,,,,,,,,,,,20.8786271,24,118421,13.23525859,31.32819195,20.26667567,,,,,,,,,,,,,26.82739991,15.01509208,44.24771637,,,,11.82222748,14,118421,6.463321773,19.83568887,,,,,,,,,,,,,17.69989823,9.145795697,30.91816017,,,,17.47545903,29,165947,11.70358918,25.09767422,,,,,,,,,,17.83675799,8.553418765,32.80243301,17.58887555,10.24616818,28.16149362,,,,28.88888889,,2700,,,78,,0.623505435,9178,14720,,,0.635,,,,,41.18235578,,,,,0.670601589,5908,8810,0.640036246,0.701166932,0.11687389,987,8445,0.085141769,0.148606011,0.831328036,7324,8810,0.79772571,0.864930363,23884,,,,,0.272609278,6511,23884,,,0.171537431,4097,23884,,,0.067827835,1620,23884,,,0.023530397,562,23884,,,0.014779769,353,23884,,,0.005359236,128,23884,,,0.352034835,8408,23884,,,0.552587506,13198,23884,,,0.10416292,2317,22244,0.08413645,0.124189391,0.473789985,11316,23884,,,0.567085563,13673,24111,, -31,049,31049,NE,Deuel County,2024,1,9714.078915,35,4845,4849.233195,17381.17049,1,,,,2,,,,2,,,,2,,,,2,10514.21048,4807.76655,19959.24661,1,,,,2,,0.14,,,0.117,0.166,3.232863254,,,2.499388763,3.976502847,4.407628118,,,3.464158333,5.388507755,0.097345133,11,113,0.042689512,0.152000754,1,,,,,,,,,,,,,,,,,,,,,,0.168,,,0.132,0.206,0.398,,,0.318,0.479,8,0.078825113,0.097,,,0.268,,,0.218,0.322,0.600652884,1104,1838,,,0.174155421,,,0.139200134,0.212676656,0.571428571,4,7,0.387251166,0.710103252,0,0,1865,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.084821429,114,1344,0.070523556,0.099119301,0,0,1865,,,-1865,0.001051525,2,1902,,,951,,0,1902,,,,2934,,,,,,,,,2991,0.35,,,,,,,,,0.35,0.27,,,,,,,,,0.27,0.89739986,1277,1423,0.85461773,0.940181989,0.626436782,218,348,0.472590075,0.780283488,0.024131274,25,1036,,,0.21,82,,0.128978723,0.291021277,,,,,,,,,,0.125,0,0.423116445,0.013452915,0,0.070143362,3.386571011,97242,28714,2.255757895,4.517384127,0.260450161,81,311,0.134751902,0.38614842,21.44772118,4,1865,,,163.7554585,15,9160,91.65268704,270.0897257,,,,,,,,,,,,,181.6420441,101.6636732,299.5909285,,,,4.7,,,,,0,,,,,0.072727273,60,825,0.035608542,0.109846003,0.05918619,0.012438477,0.105933903,0.00969697,0,0.035707228,0.016969697,0,0.035856342,0.802511416,703,876,0.748827798,0.856195033,,,,,,,,,,,,,0.748275862,0.623605723,0.872946002,0.304,,876,0.199182791,0.408817209,77.77464376,,,73.50141225,82.04787527,,,,,,,,,,,,,,,,,,,463.2029993,35,4845,302.5795778,678.6997161,,,,,,,,,,,,,486.5946286,308.4592539,730.1308586,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.1,,,0.085,0.116,0.142,,,0.121,0.164,0.092,,,0.078,0.107,0,0,1590,,,0.097,180,,,,0.078825113,152.9995438,1941,,,,,,,,,,,,,,,,,,,,,,,,,,0.286,,,0.271,0.301,0.098412698,93,945,0.080540358,0.116285039,0.052505967,22,419,0.032250647,0.072761286,0,0,1902,,,-1902,,,,,,,,,,,3.113741204,,,,,,,,,3.215490866,2.770578302,,,,,,,,,2.846938286,0.031332097,,,,,2958.085,,,,,0.730864476,38958,53304,0.509918421,0.95181053,56099,,,48440.10638,63757.89362,,,,,,,,,,,,,59231,51181.29787,67280.70213,,,,,,0.489156627,203,415,,,,,,,,0.308918163,,56099,,,21.89781022,3,137,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,200,,,0,,0.726760563,1032,1420,,,0.621,,,,,3.923136169,,,,,0.830429733,715,861,0.777638045,0.883221421,0.060606061,48,792,0.006833024,0.114379097,0.87456446,753,861,0.825450851,0.923678069,1902,,,,,0.208727655,397,1902,,,0.270767613,515,1902,,,0.003680337,7,1902,,,0.020504732,39,1902,,,0.004206099,8,1902,,,0,0,1902,,,0.088853838,169,1902,,,0.880126183,1674,1902,,,0,0,1744,0,0.027327738,0.486330179,925,1902,,,1,1838,1838,, -31,051,31051,NE,Dixon County,2024,1,5053.493565,83,15295,3358.009774,7303.705228,0,,,,2,,,,2,,,,2,,,,2,4537.879204,2936.676156,6698.804883,,,,,2,,0.149,,,0.125,0.176,2.970802559,,,2.321414355,3.67292462,3.740787783,,,3.016849632,4.510882262,0.040511727,19,469,0.022668235,0.05835522,1,,,,,,,,,,0.095238095,0.043982262,0.146493929,,,,,,,,,,0.176,,,0.138,0.215,0.388,,,0.33,0.447,7.8,0.103747002,0.094,,,0.276,,,0.231,0.323,0.474134856,2658,5606,,,0.197146573,,,0.162381758,0.234033636,0,0,1,0,0.662081041,216.4,12,5545,,,15.64945227,20,1278,9.559092007,24.16930978,,,,,,,,,,47.80876494,24.70348649,83.51229103,,,,,,,,,,0.10763164,464,4311,0.092142278,0.123121002,0.000180343,1,5545,,,5545,0.000366032,2,5464,,,2732,0.000183016,1,5464,,,5464,2013,,,,,,,,,1866,0.47,,,,,,,,0.29,0.49,0.45,,,,,,,,0.1,0.49,0.843641232,3151,3735,0.816182329,0.871100134,0.594827586,690,1160,0.514990909,0.674664263,0.021596859,66,3056,,,0.117,155,,0.072914894,0.161085106,,,,,,,,,,,,,0.165156093,0.08652175,0.243790435,4.28594696,121048,28243,3.850069433,4.721824488,0.192667146,268,1391,0.095686133,0.289648159,18.0342651,10,5545,,,63.73937677,18,28240,37.77599427,100.735695,,,,,,,,,,,,,59.76520811,32.67419542,100.2758639,,,,6.3,,,,,1,,,,,0.096842105,230,2375,0.067228661,0.126455549,0.072543231,0.040908295,0.104178166,0.018526316,0.002197877,0.034854755,0.010105263,0,0.022868149,0.776883687,2124,2734,0.726174743,0.827592631,,,,,,,,,,,,,0.776725305,0.692575813,0.860874796,0.354,,2734,0.297987326,0.410012674,79.6975025,,,77.68252111,81.71248389,,,,,,,,,,,,,79.84313442,77.8341502,81.85211863,,,,332.4427766,83,15295,261.4873326,416.7198992,,,,,,,,,,,,,330.2818464,257.4709024,417.2912433,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.101,,,0.086,0.118,0.134,,,0.113,0.155,0.091,,,0.077,0.105,0,0,4551,,,0.094,530,,,,0.103747002,622.4820092,6000,,,,,,,,,,,,,,,,,,,,,,,,,,0.315,,,0.299,0.33,0.121129636,356,2939,0.100874317,0.141384955,0.079916609,115,1439,0.053703843,0.106129375,0.000366032,2,5464,,,2732,,,,,,,,,,,2.94222777,,,,,,,,,2.971335277,3.093060696,,,,,,,,,3.162103775,0.179538272,,,,,5727.817667,,,,,0.659849947,36235,54914,0.567116305,0.75258359,61144,,,53731.74468,68556.25532,,,,,,,,,,44050,25646.25532,62453.74468,64609,55870.61702,73347.38298,,,,,,0.237201365,139,586,,,,,,,,0.283429282,,61144,,,2.525252525,1,396,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,600,,,-888,,0.773651192,3083,3985,,,0.606,,,,,0.778574379,,,,,0.751693002,1665,2215,0.709189664,0.79419634,0.060491493,128,2116,0.029258452,0.091724535,0.80496614,1783,2215,0.784135893,0.825796387,5464,,,,,0.249816984,1365,5464,,,0.224926794,1229,5464,,,0.005856515,32,5464,,,0.017203514,94,5464,,,0.004575403,25,5464,,,0.002013177,11,5464,,,0.152818448,835,5464,,,0.819363104,4477,5464,,,0.059567133,311,5221,0.034566343,0.084567923,0.485358712,2652,5464,,,1,5606,5606,, -31,053,31053,NE,Dodge County,2024,1,8843.304277,560,100118,7693.75561,9992.852944,0,,,,2,,,,2,,,,2,7836.985093,5427.339999,10951.40115,,9081.297864,7727.769091,10434.82664,,,,,2,,0.141,,,0.119,0.165,3.141490853,,,2.535382781,3.794860708,4.241452796,,,3.568554079,4.998645733,0.075113122,249,3315,0.066140559,0.084085685,0,,,,,,,,,,0.068506185,0.053233704,0.083778666,0.079007809,0.067676245,0.090339373,,,,,,,0.173,,,0.139,0.209,0.435,,,0.382,0.489,7.8,0.082392517,0.106,,,0.276,,,0.233,0.32,0.860898109,31997,37167,,,0.204085075,,,0.170697419,0.240533638,0.285714286,10,35,0.196703372,0.377807478,477.1,177,37103,,,22.97376093,197,8575,19.76560805,26.18191381,,,,,,,,,,68.16760475,55.37023092,80.96497859,12.79542375,10.22053003,15.82173962,,,,,,,0.095673307,2795,29214,0.082566924,0.10877969,0.000485136,18,37103,,,2061.277778,0.000864935,32,36997,,,1156.15625,0.002189367,81,36997,,,456.7530864,2188,,,,,,,,,2195,0.51,,,,,,,,0.17,0.51,0.61,,,,,,,,0.2,0.61,0.886787115,21940,24741,0.87095106,0.902623169,0.592457707,5043,8512,0.529815083,0.655100331,0.021684897,452,20844,,,0.129,1147,,0.081340426,0.176659575,0.016997167,0,0.09397568,,,,,,,0.045695634,0.007880746,0.083510523,0.116362396,0.075866386,0.156858405,3.969882148,118235,29783,3.531086836,4.408677459,0.200044087,1815,9073,0.146272945,0.253815228,12.12839932,45,37103,,,76.88616485,141,183388,64.19519789,89.57713181,,,,,,,,,,,,,87.26291921,72.37620527,102.1496332,,,,7.2,,,,,0,,,,,0.11645404,1780,15285,0.092054851,0.140853229,0.087722772,0.067769528,0.107676017,0.017926071,0.008883527,0.026968615,0.018318613,0.00719537,0.029441856,0.838315978,14974,17862,0.813081359,0.863550597,,,,,,,,,,0.806730332,0.700445566,0.913015099,0.846496557,0.826842923,0.866150191,0.221,,17862,0.186860139,0.255139861,76.04264267,,,75.12460888,76.96067647,,,,,,,,,,83.00725605,69.56748642,96.44702568,75.84175635,74.80521289,76.8782998,,,,432.4118678,560,100118,394.6723748,470.1513608,,,,,,,,,,443.6508908,287.1074646,654.916233,436.5317735,395.2452421,477.8183048,,,,67.81874812,27,39812,44.69298235,98.67271789,,,,,,,,,,,,,61.0763814,35.5792429,97.78920319,,,,6.632499246,22,3317,4.156551966,10.04168357,,,,,,,,,,,,,,,,,,,,,,0.1,,,0.085,0.115,0.143,,,0.123,0.164,0.091,,,0.078,0.105,35.9,11,30652,,,0.106,3960,,,,0.082392517,3023.063822,36691,,,10.01001001,11,109890,4.996960931,17.91067296,,,,,,,,,,,,,12.2457613,6.113039918,21.91104959,,,,0.291,,,0.278,0.304,0.113151805,2298,20309,0.096470954,0.129832656,0.058175596,544,9351,0.040303256,0.076047937,0.001081169,40,36997,,,924.925,0.869438878,433.85,499,,,,,,,,2.696965261,,,,,,,,2.107998752,2.972858112,2.914749765,,,,,,,,2.174879507,3.224164363,0.130260346,,,,,3004.348,,,,,0.746556185,42706,57204,0.698471464,0.794640906,68267,,,60729.6383,75804.3617,58824,58340.25532,59307.74468,81309,81037.34043,81580.65957,33621,20094.02128,47147.97872,73589,34663.04255,112514.9575,65992,60415.82979,71568.17021,,,,,,0.500387177,3231,6457,,,72.72451299,,,,,0.253856182,,68267,,,9.508061182,23,2419,,,,,,,,,,,,,,,,,,,,,,,,,,15.69438325,30,183388,10.42880369,22.68275353,16.35875848,,,,,,,,,,,,,16.97623498,10.87699408,25.259292,,,,10.36054704,19,183388,6.237726113,16.17927758,,,,,,,,,,,,,11.89948898,7.052391322,18.80632277,,,,16.35189273,42,256851,11.78500599,22.10300866,,,,,,,,,,,,,17.30386999,12.18352137,23.85110541,,,,20.75,,4000,,,83,,0.646837869,16876,26090,,,0.691,,,,,96.632415,,,,,0.657344092,9613,14624,0.628200345,0.686487839,0.095340751,1371,14380,0.073850906,0.116830597,0.858178337,12550,14624,0.838132047,0.878224627,36997,,,,,0.244776604,9056,36997,,,0.193285942,7151,36997,,,0.008892613,329,36997,,,0.018569073,687,36997,,,0.006811363,252,36997,,,0.0041625,154,36997,,,0.163067276,6033,36997,,,0.804092224,29749,36997,,,0.033100795,1153,34833,0.025703379,0.040498211,0.498662054,18449,36997,,,0.238787096,8875,37167,, -31,055,31055,NE,Douglas County,2024,1,7231.375804,6671,1639803,6985.695828,7477.055779,0,18940.67026,13707.45698,25512.95854,,3331.899145,2611.677054,4189.362941,,13708.57503,12697.07233,14720.07774,,5278.50697,4702.81388,5854.20006,,6734.572366,6440.270315,7028.874417,,,,,2,,0.132,,,0.112,0.155,3.061341545,,,2.563538065,3.631755851,4.3431984,,,3.799639363,4.949879265,0.085727744,4914,57321,0.083435833,0.088019654,0,0.085164835,0.056489602,0.113840068,0.090122768,0.080747564,0.099497972,0.159093835,0.1509604,0.167227269,0.076205992,0.071258595,0.081153388,0.069799692,0.067027242,0.072572142,0.181818182,0.079884363,0.283752001,0.101593626,0.088379335,0.114807916,0.139,,,0.111,0.171,0.352,,,0.321,0.383,8.6,0.023288396,0.097,,,0.231,,,0.199,0.265,0.971819902,568054,584526,,,0.215376463,,,0.194224666,0.238006318,0.358851675,75,209,0.324804596,0.392805682,653.2,3821,585008,,,18.44183177,2436,132091,17.70947705,19.17418649,34.33476395,21.99893112,51.08740714,13.49892009,10.61775697,16.92101322,35.2740932,32.45392707,38.09425934,41.23461771,38.70652733,43.76270809,6.63172259,6.061714853,7.201730327,,,,34.83309144,29.90592223,39.76026064,0.089762616,44457,495273,0.083805169,0.095720063,0.001087165,636,585008,,,919.8238994,0.001014792,595,586327,,,985.4235294,0.004920463,2885,586327,,,203.2329289,2223,,,,,926,1066,4239,2154,2006,0.53,,,,,0.42,0.41,0.45,0.33,0.54,0.61,,,,,0.36,0.53,0.41,0.39,0.63,0.913750614,348160,381023,0.909838014,0.917663213,0.742125165,124821,168194,0.725590642,0.758659688,0.026600042,8166,306992,,,0.152,21740,,0.128170213,0.175829787,0.136607143,0.05178117,0.221433116,0.095786558,0.060403292,0.131169824,0.332304746,0.287619068,0.376990423,0.191910922,0.165169529,0.218652314,0.060271055,0.050250107,0.070292003,4.509074798,147573,32728,4.366185639,4.651963958,0.237349767,34856,146855,0.22022887,0.254470664,10.39302027,608,585008,,,57.67414076,1649,2859167,54.89041225,60.45786926,174.3805856,111.7289316,259.4644888,15.86400374,9.551166559,24.77360695,79.81983523,69.96460832,89.67506214,36.72804092,30.57777985,42.87830199,60.8321389,57.38448574,64.27979206,,,,7,,,,,0,,,,,0.137773764,30510,221450,0.131758489,0.143789039,0.114550162,0.108704595,0.120395728,0.020636713,0.018053534,0.023219891,0.010386092,0.008406441,0.012365742,0.753974501,227027,301107,0.74652704,0.761421961,0.792601577,0.750868743,0.834334411,0.646978573,0.618431421,0.675525725,0.72371053,0.695986443,0.751434617,0.751561339,0.726654885,0.776467793,0.797239216,0.791615351,0.802863082,0.176,,301107,0.167831561,0.18416844,78.07990606,,,77.84224625,78.31756586,67.41545253,63.8450629,70.98584216,86.237016,83.5747935,88.8992385,71.57128242,70.7921904,72.35037445,83.63640457,81.98000856,85.29280058,78.54859007,78.27555383,78.8216263,,,,358.0353989,6671,1639803,349.2914096,366.7793882,851.1291255,642.9337946,1105.261965,182.0642385,144.3656181,226.5947047,646.7944289,608.9069611,684.6818967,267.3999865,237.6282911,297.171682,336.4136498,326.6652358,346.1620638,,,,56.18596624,362,644289,50.39795134,61.97398113,,,,,,,115.4639175,93.73918948,140.713532,45.07346976,34.39580588,58.01849019,50.81145618,43.44951797,58.17339439,,,,6.583369237,382,58025,5.923173671,7.243564804,,,,,,,13.64670205,11.07291919,16.2204849,5.721668512,4.38677044,7.334920808,5.617977528,4.812756207,6.423198849,,,,,,,0.09,,,0.077,0.104,0.136,,,0.12,0.156,0.089,,,0.078,0.101,83.2,398,478201,,,0.097,56120,,,,0.023288396,12042.66231,517110,,,13.92526696,241,1730667,12.16713658,15.68339735,,,,,,,20.93221625,14.95428218,28.50373743,6.113083308,3.34207953,10.25671506,15.37473812,13.14102135,17.60845489,,,,0.283,,,0.271,0.295,0.109013461,38030,348856,0.100673036,0.117353887,0.045854907,7023,153157,0.037514482,0.054195333,0.002345108,1375,586327,,,426.4196364,0.823200758,5867.775,7128,,,0.051121664,1561,30535,0.035959476,0.066283851,3.012674401,,,,,,3.041102479,2.353474206,2.568111221,3.421598002,3.111420575,,,,,,3.201151437,2.302907579,2.619057289,3.573178688,0.234565877,,,,,1208.18915,,,,,0.834608844,53001,63504,0.805238867,0.86397882,74424,,,71523.91489,77324.08511,67168,62175.65957,72160.34043,91241,78075.04255,104406.9575,40771,37014.23404,44527.76596,62671,58599.68085,66742.31915,83950,82297.40426,85602.59575,,,,,,0.451956963,43603,96476,,,58.23352987,,,,,0.339312587,,74424,,,8.56368048,360,42038,,,5.928017222,235,3964226,5.17008286,6.685951584,,,,,,,30.80953772,25.61227861,36.00679683,5.30105059,3.493425742,7.712750292,2.224635689,1.701670029,2.857637609,,,,13.58356968,388,2859167,12.21261674,14.95452262,13.57038606,,,,,,,8.61568996,5.57562027,12.71845798,8.353653963,5.235190464,12.64753249,15.50959513,13.75617969,17.26301057,,,,10.9122692,312,2859167,9.701409446,12.12312896,,,,,,,28.50708401,22.92306196,35.04004605,6.434109358,4.122455271,9.573444713,9.613105562,8.242574507,10.98363662,,,,8.854187425,351,3964226,7.927888364,9.780486487,,,,,,,15.74709706,12.25218144,19.92895916,9.424089937,6.948579971,12.49497601,7.986806816,6.928997972,9.044615661,,,,10.04784689,,62700,,,630,,0.706360951,274951,389250,,,0.721,,,,,214.9413183,,,,,0.618393824,143139,231469,0.611491522,0.625296126,0.127253348,28773,226108,0.120566255,0.133940441,0.90337367,209103,231469,0.898319002,0.908428338,586327,,,,,0.249732658,146425,586327,,,0.143145378,83930,586327,,,0.109785154,64370,586327,,,0.013586275,7966,586327,,,0.045251199,26532,586327,,,0.000813539,477,586327,,,0.138739986,81347,586327,,,0.67577137,396223,586327,,,0.032357852,17521,541476,0.029822445,0.034893258,0.50242271,294584,586327,,,0.02436162,14240,584526,, -31,057,31057,NE,Dundy County,2024,1,4631.282227,22,4419,1862.015655,9542.211439,1,,,,2,,,,2,,,,2,,,,2,5156.421663,1892.315871,11223.35913,1,,,,2,,0.139,,,0.116,0.166,3.286117356,,,2.539910177,4.097478809,4.037812652,,,3.1646747,5.007064974,0.110236221,14,127,0.055766678,0.164705763,1,,,,,,,,,,,,,0.105263158,0.048926705,0.161599611,,,,,,,0.166,,,0.127,0.206,0.403,,,0.322,0.482,6.7,0.171834129,0.11,,,0.267,,,0.215,0.318,0.356106409,589,1654,,,0.178594945,,,0.143035578,0.21664149,0,0,1,0,0.662081041,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.12780083,154,1205,0.108737,0.14686466,0.001223242,2,1635,,,817.5,0.001257862,2,1590,,,795,,0,1590,,,,4645,,,,,,,,,4687,0.35,,,,,,,,,0.36,0.04,,,,,,,,,0.04,0.942307692,1176,1248,0.935760821,0.948854564,0.788043478,290,368,0.626979569,0.949107387,0.01600674,19,1187,,,0.22,66,,0.135404255,0.304595745,,,,,,,,,,,,,0.206730769,0.078807198,0.334654341,5.383603924,127333,23652,2.987096056,7.780111791,0.11627907,50,430,0,0.280080598,0,0,1635,,,,,,,,,,,,,,,,,,,,,,,,,,5,,,,,0,,,,,0.076190476,64,840,0.031070121,0.121310831,0.075721154,0.014840833,0.136601475,0,0,0.028368794,0.004761905,0,0.026909926,0.790476191,747,945,0.728353914,0.852598467,,,,,,,,,,,,,0.748712667,0.67655884,0.820866495,0.14,,945,0.085217397,0.194782603,,,,,,,,,,,,,,,,,,,,,,,,279.3762324,22,4419,165.5760612,441.5348935,,,,,,,,,,,,,300.31717,174.9458186,480.8368814,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.1,,,0.084,0.117,0.139,,,0.118,0.159,0.092,,,0.077,0.109,0,0,1414,,,0.11,210,,,,0.171834129,345.0429306,2008,,,,,,,,,,,,,,,,,,,,,,,,,,0.309,,,0.291,0.324,0.140112994,124,885,0.116283207,0.163942782,0.089820359,30,334,0.057650147,0.121990572,0.001886793,3,1590,,,530,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.019659854,,,,,4774.449,,,,,0.628803351,36331,57778,0.518458298,0.739148404,58441,,,50167.29787,66714.70213,,,,,,,,,,,,,58636,47669.53192,69602.46809,,,,,,0.498127341,133,267,,,,,,,,0.296538389,,58441,,,,,141,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,200,,,-888,,0.721299639,999,1385,,,0.487,,,,,3.515160236,,,,,0.779187817,614,788,0.716836661,0.841538974,0.063469676,45,709,0,0.131989386,0.790609137,623,788,0.713139159,0.868079116,1590,,,,,0.191194969,304,1590,,,0.277358491,441,1590,,,0.009433962,15,1590,,,0.021383648,34,1590,,,0.001886793,3,1590,,,0.002515723,4,1590,,,0.085534591,136,1590,,,0.871069182,1385,1590,,,0,0,1677,0,0.028419544,0.501886793,798,1590,,,1,1654,1654,, -31,059,31059,NE,Fillmore County,2024,1,5342.111748,72,14733,3263.10064,8250.458324,1,,,,2,,,,2,,,,2,,,,2,5278.785091,3017.281784,8572.41627,1,,,,2,,0.12,,,0.101,0.142,2.945320405,,,2.264827007,3.652232489,3.807719814,,,3.01390195,4.67405283,0.046979866,21,447,0.027363921,0.066595811,1,,,,,,,,,,,,,0.046620047,0.026669868,0.066570225,,,,,,,0.158,,,0.127,0.195,0.377,,,0.31,0.448,8.3,0.07003355,0.088,,,0.24,,,0.197,0.29,0.659160512,3659,5551,,,0.201925798,,,0.166119031,0.241819093,0.166666667,1,6,0.011498194,0.426636125,90.2,5,5546,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.082093135,342,4166,0.068986752,0.095199518,0.00036062,2,5546,,,2773,0.000540249,3,5553,,,1851,0.002881325,16,5553,,,347.0625,3109,,,,,,,,,2871,0.61,,,,,,,,,0.61,0.32,,,,,,,,,0.32,0.944148936,3905,4136,0.923929803,0.964368069,0.781889764,993,1270,0.678560808,0.88521872,0.019030627,64,3363,,,0.117,118,,0.070531915,0.163468085,,,,,,,,,,0.163265306,0,0.599697096,0.048808173,0.015564128,0.082052217,4.039773621,128485,31805,3.382618688,4.696928553,0.06231454,63,1011,0.026165101,0.098463979,16.22791201,9,5546,,,90.4617166,25,27636,58.54205329,133.5393389,,,,,,,,,,,,,93.07376096,59.63411485,138.4863786,,,,6.4,,,,,0,,,,,0.058232932,145,2490,0.036589167,0.079876696,0.044022617,0.020556598,0.067488637,0.003212851,0,0.014206961,0.014056225,0.001552736,0.026559714,0.792762035,2322,2929,0.755968622,0.829555448,,,,,,,,,,,,,0.778964017,0.738917817,0.819010218,0.185,,2929,0.145916243,0.224083757,79.06925007,,,77.01940568,81.11909446,,,,,,,,,,,,,79.06794039,76.89511533,81.24076546,,,,296.3469259,72,14733,227.2074888,379.9033846,,,,,,,,,,,,,292.9498481,222.4491018,378.7056115,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.09,,,0.077,0.104,0.133,,,0.114,0.154,0.079,,,0.067,0.093,0,0,4786,,,0.088,490,,,,0.07003355,412.4976085,5890,,,,,,,,,,,,,,,,,,,,,,,,,,0.294,,,0.278,0.309,0.090995561,287,3154,0.0755062,0.106484923,0.056390977,60,1064,0.038518637,0.074263318,0.001080497,6,5553,,,925.5,,,,,,,,,,,3.111262172,,,,,,,,,3.11302539,3.167703561,,,,,,,,,3.265734091,0.065852821,,,,,10291.43333,,,,,0.724043864,40078,55353,0.586463975,0.861623753,68532,,,59786.46809,77277.53192,,,,,,,,,,98750,54358.68085,143141.3192,72766,66401.06383,79130.93617,,,,,,0.267665953,250,934,,,,,,,,0.25287457,,68532,,,16.02564103,5,312,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16,,500,,,8,,0.709049774,3134,4420,,,0.661,,,,,3.318987973,,,,,0.806126731,1921,2383,0.779498537,0.832754925,0.048315603,109,2256,0.01872348,0.077907726,0.790180445,1883,2383,0.764265042,0.816095848,5553,,,,,0.186205655,1034,5553,,,0.242931749,1349,5553,,,0.00504232,28,5553,,,0.007923645,44,5553,,,0.006482982,36,5553,,,0.000180083,1,5553,,,0.040698721,226,5553,,,0.936070593,5198,5553,,,0.000381025,2,5249,0,0.013585732,0.498469296,2768,5553,,,1,5551,5551,, -31,061,31061,NE,Franklin County,2024,1,13552.51836,76,7675,8591.134091,20335.43176,1,,,,2,,,,2,,,,2,,,,2,13003.14143,8148.999503,19686.91238,1,,,,2,,0.153,,,0.128,0.18,3.409314089,,,2.689875187,4.20114225,4.557218991,,,3.646203619,5.526907347,0.0625,14,224,0.030800113,0.094199887,1,,,,,,,,,,,,,0.066037736,0.032606772,0.099468699,,,,,,,0.196,,,0.157,0.238,0.438,,,0.361,0.517,6.6,0.135005001,0.134,,,0.304,,,0.253,0.359,0.38975424,1126,2889,,,0.164098897,,,0.131743158,0.200609033,0,0,2,0,0.510593623,172.2,5,2903,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.075309819,158,2098,0.063394925,0.087224713,0.000688943,2,2903,,,1451.5,0.000348068,1,2873,,,2873,0.000696136,2,2873,,,1436.5,1751,,,,,,,,,1756,0.4,,,,,,,,,0.4,0.24,,,,,,,,,0.24,0.93077988,2017,2167,0.909105421,0.952454339,0.714776632,416,582,0.593221767,0.836331497,0.023210832,36,1551,,,0.174,105,,0.108468085,0.239531915,,,,,,,,,,,,,0.242366412,0.165233559,0.319499266,3.826065636,101429,26510,3.115718625,4.536412646,0.213261649,119,558,0.063366074,0.363157224,17.22356183,5,2903,,,128.0754971,19,14835,77.10981574,200.0057538,,,,,,,,,,,,,127.3524834,75.47715283,201.2718287,,,,5.8,,,,,0,,,,,0.097744361,130,1330,0.065840555,0.129648167,0.091729323,0.055668945,0.127789701,0.018045113,0,0.036904297,0,0,0.012669326,0.797327394,1074,1347,0.752815849,0.841838939,,,,,,,,,,,,,0.772836539,0.708702738,0.836970339,0.325,,1347,0.259990087,0.390009913,73.30477651,,,69.35461735,77.25493567,,,,,,,,,,,,,73.68155797,69.82863365,77.5344823,,,,611.3409298,76,7675,463.0236501,792.0630837,,,,,,,,,,,,,607.3137727,456.2327975,792.4127358,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.108,,,0.092,0.125,0.154,,,0.133,0.177,0.096,,,0.082,0.111,0,0,2458,,,0.134,390,,,,0.135005001,435.3911271,3225,,,,,,,,,,,,,,,,,,,,,,,,,,0.288,,,0.271,0.303,0.086519115,129,1491,0.071029753,0.102008476,0.048742138,31,636,0.032061287,0.065422989,0.002088409,6,2873,,,478.8333333,,,,,,,,,,,3.783999086,,,,,,,,,3.776458433,4.008962314,,,,,,,,,4.11719314,,,,,,2464.655,,,,,0.75315308,36964,49079,0.644268771,0.862037389,59400,,,50647.31915,68152.68085,,,,,,,,,,,,,54493,49315.97872,59670.02128,,,,,,0.418128655,143,342,,,,,,,,0.291750842,,59400,,,5.847953216,1,171,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,300,,,-888,,0.716839917,1724,2405,,,0.598,,,,,0.03408029,,,,,0.834262948,1047,1255,0.801284699,0.867241197,0.099243061,118,1189,0.054957125,0.143528998,0.801593626,1006,1255,0.764267714,0.838919537,2873,,,,,0.211973547,609,2873,,,0.281935259,810,2873,,,0.005221023,15,2873,,,0.007309433,21,2873,,,0.001740341,5,2873,,,0,0,2873,,,0.034110686,98,2873,,,0.940480334,2702,2873,,,0.005092761,14,2749,0,0.021408248,0.489035851,1405,2873,,,1,2889,2889,, -31,063,31063,NE,Frontier County,2024,1,6974.970294,26,6873,3481.88004,12480.14854,1,,,,2,,,,2,,,,2,,,,2,6627.62704,3178.204779,12188.4421,1,,,,2,,0.12,,,0.099,0.143,2.896558856,,,2.240222847,3.650835588,3.982816511,,,3.150251292,4.936860182,0.071428571,12,168,0.032484167,0.110372976,1,,,,,,,,,,,,,0.069620253,0.029935339,0.109305168,,,,,,,0.155,,,0.123,0.193,0.38,,,0.31,0.457,7.7,0.083841709,0.11,,,0.242,,,0.198,0.291,0.607780865,1531,2519,,,0.17991124,,,0.143488015,0.219742505,0.333333333,1,3,0.04092282,0.635504717,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.077643172,141,1816,0.064536789,0.090749555,,0,2555,,,,0,0,2633,,,-2633,0.000379795,1,2633,,,2633,3756,,,,,,,,,3763,0.43,,,,,,,,,0.44,0.39,,,,,,,,,0.39,0.937943262,1587,1692,0.915038736,0.960847788,0.766599598,381,497,0.638602154,0.894597041,0.021667761,33,1523,,,0.197,103,,0.130276596,0.263723404,,,,,,,0.12,0,0.67544162,0.45,0.074320504,0.825679496,0.141843972,0.065777773,0.217910171,4.1115112,108474,26383,3.408192967,4.814829434,0.119842829,61,509,0.064773566,0.174912093,19.56947162,5,2555,,,,,,,,,,,,,,,,,,,,,,,,,,5.2,,,,,0,,,,,0.0969163,110,1135,0.060350505,0.133482094,0.068965517,0.026251959,0.111679075,0.016740088,0,0.043186506,0.017621145,0,0.037387005,0.783091375,917,1171,0.728458865,0.837723885,,,,,,,,,,,,,0.710857143,0.650726536,0.77098775,0.337,,1171,0.245782949,0.428217052,81.91695369,,,77.7106533,86.12325408,,,,,,,,,,,,,82.11191791,77.88631921,86.3375166,,,,279.6767356,26,6873,173.1243074,427.5155992,,,,,,,,,,,,,279.2743753,170.5880438,431.3166221,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.091,,,0.077,0.105,0.133,,,0.113,0.155,0.081,,,0.068,0.095,,,,,,0.11,280,,,,0.083841709,231.0677502,2756,,,,,,,,,,,,,,,,,,,,,,,,,,0.279,,,0.261,0.296,0.089879154,119,1324,0.073198303,0.106560005,0.043222004,22,509,0.026541153,0.059902855,0.000379795,1,2633,,,2633,,,,,,,,,,,3.276269005,,,,,,,,,3.359300767,3.165340005,,,,,,,,,3.222523585,0.075919466,,,,,6998.387,,,,,0.81790989,43750,53490,0.681751864,0.954067915,58241,,,49586.02128,66895.97872,,,,,,,,,,56250,26392.46809,86107.53192,63547,56588.70213,70505.29787,,,,,,0.354782609,204,575,,,,,,,,0.297556704,,58241,,,8.196721312,1,122,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,200,,,-888,,0.685714286,1440,2100,,,0.472,,,,,0.417112558,,,,,0.673765731,696,1033,0.625051193,0.722480269,0.109663409,101,921,0.054980136,0.164346683,0.708615683,732,1033,0.645302518,0.771928847,2633,,,,,0.206608431,544,2633,,,0.258640334,681,2633,,,0.005317129,14,2633,,,0.005696924,15,2633,,,0.004557539,12,2633,,,0,0,2633,,,0.038359286,101,2633,,,0.931636916,2453,2633,,,0.001687052,4,2371,0,0.020656908,0.486517281,1281,2633,,,1,2519,2519,, -31,065,31065,NE,Furnas County,2024,1,10203.89537,82,12364,6833.708874,14654.49585,0,,,,2,,,,2,,,,2,,,,2,11160.92947,7355.12285,16238.56641,,,,,2,,0.133,,,0.109,0.16,3.183969951,,,2.503485095,3.958843367,3.912915998,,,3.134334816,4.809115607,0.098039216,40,408,0.069184305,0.126894126,0,,,,,,,,,,,,,0.100795756,0.070405407,0.131186105,,,,,,,0.168,,,0.131,0.209,0.412,,,0.343,0.486,8.6,0.010089418,0.103,,,0.27,,,0.221,0.323,0.413071614,1915,4636,,,0.185523847,,,0.150626307,0.224479484,,,,,,86.9,4,4604,,,14.21800948,15,1055,7.957711974,23.45044443,,,,,,,,,,,,,13.33333333,7.099438452,22.80040607,,,,,,,0.1,340,3400,0.085702128,0.114297872,0.001086012,5,4604,,,920.8,0.000437159,2,4575,,,2287.5,0.000655738,3,4575,,,1525,3948,,,,,,,,,3981,0.44,,,,,,,,,0.44,0.25,,,,,,,,,0.25,0.898021309,2950,3285,0.86748346,0.928559158,0.662192394,592,894,0.552290802,0.772093986,0.019937451,51,2558,,,0.212,205,,0.144085106,0.279914894,,,,,,,,,,0.75308642,0.218897037,1,0.08680947,0.036536789,0.137082151,4.080585938,104463,25600,3.249403161,4.911768714,0.097154073,99,1019,0.043777694,0.150530451,17.37619461,8,4604,,,85.3679358,20,23428,52.14495299,131.8438531,,,,,,,,,,,,,92.08951101,56.25066574,142.2247808,,,,5.5,,,,,0,,,,,0.118072289,245,2075,0.083164988,0.152979591,0.08563135,0.052668419,0.11859428,0.014457831,0,0.032780815,0.028915663,0.007058307,0.050773019,0.795340338,1741,2189,0.752100426,0.83858025,,,,,,,,,,,,,0.836542768,0.782852907,0.890232628,0.18,,2189,0.140303551,0.219696449,76.04918485,,,73.14253648,78.95583321,,,,,,,,,,,,,75.17017883,72.02347599,78.31688166,,,,438.8006553,82,12364,339.368395,558.2620224,,,,,,,,,,,,,467.5684712,360.0846971,597.0744993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.096,,,0.081,0.113,0.139,,,0.118,0.161,0.083,,,0.07,0.097,0,0,3899,,,0.103,480,,,,0.010089418,50.0334229,4959,,,,,,,,,,,,,,,,,,,,,,,,,,0.292,,,0.276,0.308,0.114119117,274,2401,0.095055287,0.133182947,0.068867925,73,1060,0.047421116,0.090314733,0.001748634,8,4575,,,571.875,,,,,,,,,,,3.309754853,,,,,,,,,3.243648288,3.05344616,,,,,,,,,3.087719144,0.063100387,,,,,2294.958,,,,,0.760783074,40921,53788,0.593860521,0.927705627,54213,,,48349.68085,60076.31915,,,,,,,,,,,,,58939,54724.70213,63153.29787,,,,,,0.467741936,464,992,,,,,,,,0.319665025,,54213,,,3.533568905,1,283,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,500,,,-888,,0.72149792,2601,3605,,,0.553,,,,,13.45375899,,,,,0.780828757,1564,2003,0.770782449,0.790875064,0.111794872,218,1950,0.077507849,0.146081894,0.739890165,1482,2003,0.694367646,0.785412684,4575,,,,,0.216393443,990,4575,,,0.256830601,1175,4575,,,0.006557377,30,4575,,,0.007431694,34,4575,,,0.004590164,21,4575,,,0.000437159,2,4575,,,0.05442623,249,4575,,,0.915628415,4189,4575,,,0.003892833,17,4367,0,0.014561509,0.493333333,2257,4575,,,1,4636,4636,, -31,067,31067,NE,Gage County,2024,1,8942.744561,350,58186,7389.380603,10496.10852,0,,,,2,,,,2,,,,2,,,,2,9024.100657,7389.97187,10658.22944,,,,,2,,0.139,,,0.115,0.168,3.25209136,,,2.588118066,3.956691296,4.398298125,,,3.633632476,5.210951022,0.073217726,114,1557,0.060278487,0.086156966,0,,,,,,,,,,,,,0.069279216,0.056113298,0.082445134,,,,,,,0.18,,,0.142,0.224,0.413,,,0.36,0.47,7.4,0.083679288,0.123,,,0.259,,,0.215,0.306,0.651354589,14137,21704,,,0.190616041,,,0.16005416,0.224355333,0.375,3,8,0.179126284,0.556186502,185,40,21616,,,15.91071005,67,4211,12.33058174,20.20603933,,,,,,,,,,,,,14.78215768,11.19586187,19.15199985,,,,,,,0.079372624,1336,16832,0.06745773,0.091287517,0.000740193,16,21616,,,1351,0.000648659,14,21583,,,1541.642857,0.001853311,40,21583,,,539.575,972,,,,,,,,,931,0.5,,,,,,,,,0.5,0.37,,,,,,,,,0.37,0.925034615,14030,15167,0.905819151,0.944250079,0.646971935,3066,4739,0.566242984,0.727700886,0.025544772,279,10922,,,0.127,596,,0.078148936,0.175851064,,,,,,,,,,0.32038835,0.106368497,0.534408202,0.149328859,0.102165547,0.196492171,4.422468847,113569,25680,3.781714705,5.063222989,0.200735895,982,4892,0.135279371,0.26619242,12.95336788,28,21616,,,79.88555929,86,107654,63.89813592,98.65801585,,,,,,,,,,,,,82.04986259,65.35225756,101.7131495,,,,7.2,,,,,0,,,,,0.098342541,890,9050,0.077555752,0.119129331,0.086146943,0.065355104,0.106938783,0.006629834,0,0.014065852,0.00718232,0.002812721,0.01155192,0.832683344,8754,10513,0.813114505,0.852252184,,,,,,,,,,,,,0.81874005,0.794673026,0.842807074,0.276,,10513,0.241426272,0.310573728,76.15402851,,,74.88683132,77.42122571,,,,,,,,,,,,,76.00794408,74.69440957,77.32147859,,,,422.952092,350,58186,375.3779024,470.5262816,,,,,,,,,,,,,428.0590248,378.9882623,477.1297873,,,,66.08137449,14,21186,36.12730235,110.8733179,,,,,,,,,,,,,74.32575919,40.63458418,124.7059945,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.1,,,0.085,0.118,0.139,,,0.119,0.161,0.092,,,0.079,0.108,,,,,,0.123,2670,,,,0.083679288,1866.96859,22311,,,,,,,,,,,,,,,,,,,,,,,,,,0.312,,,0.296,0.327,0.091181864,1094,11998,0.076883991,0.105479736,0.0521859,265,5078,0.036696538,0.067675262,0.000926655,20,21583,,,1079.15,0.848858921,204.575,241,,,,,,,,3.168206726,,,,,,,,,3.195121799,3.017214988,,,,,,,,,3.02170488,0.064422741,,,,,2175.95835,,,,,0.754328751,41866,55501,0.696381678,0.812275823,64406,,,59643.61702,69168.38298,,,,,,,,,,,,,59821,54806.02128,64835.97872,,,,,,0.412277759,1229,2981,,,,,,,,0.26907431,,64406,,,7.633587786,9,1179,,,,,,,,,,,,,,,,,,,,,,,,,,22.72174356,23,107654,14.06511738,34.73259866,21.3647426,,,,,,,,,,,,,22.91247604,13.99553561,35.38646093,,,,10.21792038,11,107654,5.100749036,18.28268203,,,,,,,,,,,,,10.87407818,5.428300646,19.45672959,,,,9.910606331,15,151353,5.546891131,16.34603799,,,,,,,,,,,,,9.814987486,5.365944991,16.46788124,,,,35.90909091,,2200,,,79,,0.668963433,11068,16545,,,0.707,,,,,50.81409519,,,,,0.706685602,6469,9154,0.675709821,0.737661383,0.110158014,976,8860,0.086087217,0.134228811,0.84509504,7736,9154,0.817256785,0.872933296,21583,,,,,0.221516935,4781,21583,,,0.221748598,4786,21583,,,0.007459575,161,21583,,,0.008061901,174,21583,,,0.006903582,149,21583,,,0.000277997,6,21583,,,0.034425242,743,21583,,,0.929898531,20070,21583,,,0.000195446,4,20466,0,0.004341613,0.496687208,10720,21583,,,0.440563951,9562,21704,, -31,069,31069,NE,Garden County,2024,1,11448.55976,47,4712,6669.207953,18330.25321,1,,,,2,,,,2,,,,2,,,,2,10556.23796,5771.193524,17711.57359,1,,,,2,,0.138,,,0.116,0.165,3.247955952,,,2.528931043,4.075886939,4.352303186,,,3.428402008,5.397794588,,,,,,0,,,,,,,,,,,,,,,,,,,,,,0.171,,,0.135,0.213,0.422,,,0.343,0.509,7.7,0.094517025,0.101,,,0.276,,,0.227,0.335,0.61846318,1159,1874,,,0.162638235,,,0.130279517,0.200158949,0.5,2,4,0.222237796,0.705426462,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.096227868,125,1299,0.079547017,0.112908719,0,0,1847,,,-1847,0.000544366,1,1837,,,1837,0.000544366,1,1837,,,1837,2393,,,,,,,,,2421,0.3,,,,,,,,,0.3,0.18,,,,,,,,,0.17,0.938319198,1217,1297,0.916021232,0.960617164,0.830645161,309,372,0.648958263,1,0.020426288,23,1126,,,0.26,90,,0.162297872,0.357702128,,,,,,,,,,,,,0.132231405,0.059274165,0.205188645,3.119792246,84094,26955,2.533165188,3.706419305,0.328502416,136,414,0.175312511,0.48169232,27.07092583,5,1847,,,192.8433683,18,9334,114.2912019,304.7756618,,,,,,,,,,,,,188.3017536,107.6307221,305.7902507,,,,4.2,,,,,0,,,,,0.059139785,55,930,0.024729856,0.093549714,0.048351648,0,0.097002999,0.004301075,0,0.026635439,0.004301075,0,0.02633951,0.685344828,477,696,0.59388977,0.776799885,,,,,,,,,,,,,0.684044234,0.586741519,0.781346949,0.2,,696,0.119656149,0.280343851,74.01160787,,,70.04519552,77.97802022,,,,,,,,,,,,,74.90892502,71.28799055,78.52985948,,,,585.2518234,47,4712,412.071294,806.6925458,,,,,,,,,,,,,573.9624683,399.7858892,798.2428514,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.099,,,0.084,0.115,0.14,,,0.121,0.163,0.093,,,0.079,0.109,0,0,1603,,,0.101,180,,,,0.094517025,194.4215208,2057,,,,,,,,,,,,,,,,,,,,,,,,,,0.298,,,0.28,0.313,0.111461619,106,951,0.090014811,0.132908428,0.054200542,20,369,0.035136712,0.073264372,0.000544366,1,1837,,,1837,,,,,,,,,,,2.869104156,,,,,,,,,,3.282502946,,,,,,,,,,,,,,,-5140.113,,,,,0.642383393,29831,46438,0.464637844,0.820128942,51734,,,47933.14894,55534.85106,,,,,,,,,,,,,46750,40367.19149,53132.80851,,,,,,0.285714286,66,231,,,,,,,,0.334982797,,51734,,,61.2244898,3,49,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,200,,,-888,,0.818493151,1195,1460,,,0.545,,,,,4.548574199,,,,,0.796139928,660,829,0.710284858,0.881994997,0.081364829,62,762,0.014643274,0.148086385,0.82026538,680,829,0.766000132,0.874530629,1837,,,,,0.191616767,352,1837,,,0.292868808,538,1837,,,0.004354927,8,1837,,,0.015242243,28,1837,,,0.002177463,4,1837,,,0.001633097,3,1837,,,0.063146434,116,1837,,,0.905280348,1663,1837,,,0.002347418,4,1704,0,0.03114293,0.482852477,887,1837,,,1,1874,1874,, -31,071,31071,NE,Garfield County,2024,1,6706.267592,27,4889,2895.29035,13214.02063,1,,,,2,,,,2,,,,2,,,,2,6904.321293,2775.895249,14225.54066,1,,,,2,,0.111,,,0.091,0.133,2.820284045,,,2.172207953,3.562393573,3.995221253,,,3.142043614,4.959980623,0.114864865,17,148,0.063493204,0.166236526,1,,,,,,,,,,,,,0.109589041,0.05891816,0.160259922,,,,,,,0.144,,,0.11,0.182,0.353,,,0.282,0.431,8.5,0.0293901,0.099,,,0.218,,,0.174,0.264,0.717595146,1301,1813,,,0.189879705,,,0.153324267,0.230598398,0,0,3,0,0.420755624,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.065849923,86,1306,0.05393503,0.077764817,0.000543774,1,1839,,,1839,0.001110494,2,1801,,,900.5,,0,1801,,,,1633,,,,,,,,,1633,0.43,,,,,,,,,0.43,0.24,,,,,,,,,0.24,0.956909361,1288,1346,0.92158448,0.992234242,0.930521092,375,403,0.742011809,1,0.020869565,24,1150,,,0.162,52,,0.098851064,0.225148936,,,,,,,,,,,,,0.152439024,0.021764501,0.283113548,3.4956029,95000,27177,1.181170092,5.810035707,0.1328125,51,384,0,0.288361512,38.06416531,7,1839,,,133.1012593,13,9767,70.8708149,227.6072071,,,,,,,,,,,,,136.4113326,72.63328952,233.2675332,,,,5,,,,,0,,,,,0.093922652,85,905,0.049409541,0.138435763,0.077348066,0.024755301,0.129940832,0,0,0.026331257,0.016574586,0,0.045960716,0.788135593,744,944,0.642141486,0.9341297,,,,,,,,,,,,,0.753699789,0.60133791,0.906061668,0.158,,944,0.073926093,0.242073907,78.57821061,,,74.75030313,82.40611809,,,,,,,,,,,,,78.32910582,74.41293075,82.24528088,,,,320.2598291,27,4889,195.6230238,494.6153315,,,,,,,,,,,,,327.73814,200.1909703,506.164976,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.087,,,0.073,0.101,0.131,,,0.11,0.152,0.077,,,0.065,0.092,0,0,1598,,,0.099,190,,,,0.0293901,60.2203148,2049,,,,,,,,,,,,,,,,,,,,,,,,,,0.281,,,0.263,0.299,0.074795082,73,976,0.06049721,0.089092954,0.03988604,14,351,0.023205189,0.056566891,0.000555247,1,1801,,,1801,,,,,,,,,,,3.255789742,,,,,,,,,3.22972699,3.474463704,,,,,,,,,3.493833827,,,,,,3117.292,,,,,0.752752391,35417,47050,0.640123218,0.865381565,51530,,,43697.14894,59362.85106,,,,,,,,,,,,,65094,58598,71590,,,,,,0.339805825,105,309,,,,,,,,0.336308946,,51530,,,23.25581395,2,86,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,30,,200,,,6,,0.659509203,1075,1630,,,0.465,,,,,0.001315114,,,,,0.774193548,600,775,0.716057511,0.832329585,0.1,73,730,0.018668428,0.181331572,0.778064516,603,775,0.687137577,0.868991455,1801,,,,,0.179900056,324,1801,,,0.298722932,538,1801,,,0.002776235,5,1801,,,0.000555247,1,1801,,,0.001110494,2,1801,,,0.000555247,1,1801,,,0.016102166,29,1801,,,0.970016657,1747,1801,,,0,0,1770,0,0.026926313,0.500832871,902,1801,,,1,1813,1813,, -31,073,31073,NE,Gosper County,2024,1,10935.341,29,5145,5458.882827,19566.3457,1,,,,2,,,,2,,,,2,,,,2,11772.31374,5383.051473,22347.51849,1,,,,2,,0.117,,,0.097,0.141,2.818367005,,,2.158060456,3.553019539,4.268024842,,,3.373409055,5.232283908,0.091549296,13,142,0.044115259,0.138983333,1,,,,,,,,,,,,,0.096774194,0.044735884,0.148812503,,,,,,,0.146,,,0.11,0.185,0.396,,,0.318,0.478,8.1,0.119826213,0.074,,,0.226,,,0.181,0.279,0.268885367,509,1893,,,0.191079767,,,0.152222956,0.23266157,0.333333333,1,3,0.04092282,0.635504717,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.095203488,131,1376,0.080905616,0.109501361,0.000548246,1,1824,,,1824,0,0,1808,,,-1808,0.000553097,1,1808,,,1808,2230,,,,,,,,,2230,0.56,,,,,,,,,0.56,0.38,,,,,,,,,0.39,0.939100346,1357,1445,0.912796884,0.965403808,0.603053435,237,393,0.45913748,0.74696939,0.019736842,24,1216,,,0.17,65,,0.104468085,0.235531915,,,,,,,,,,,,,0.067307692,0,0.136007191,4.346802974,116929,26900,1.380369677,7.313236271,0.04,14,350,0,0.080659067,16.44736842,3,1824,,,,,,,,,,,,,,,,,,,,,,,,,,5.5,,,,,0,,,,,0.074468085,70,940,0.037885298,0.111050872,0.058760684,0.010725794,0.106795573,0,0,0.025350838,0.021276596,0,0.046192266,0.683060109,625,915,0.610298661,0.755821558,,,,,,,,,,,,,0.792792793,0.703339266,0.882246319,0.205,,915,0.142347596,0.267652404,75.7816012,,,70.99352427,80.56967812,,,,,,,,,,,,,75.30802521,70.07586661,80.54018381,,,,402.5005485,29,5145,255.1508208,603.9484486,,,,,,,,,,,,,411.9985821,255.0336159,629.7835975,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.086,,,0.073,0.101,0.13,,,0.109,0.151,0.08,,,0.067,0.094,0,0,1554,,,0.074,130,,,,0.119826213,244.9247796,2044,,,,,,,,,,,,,,,,,,,,,,,,,,0.281,,,0.264,0.298,0.101609658,101,994,0.083737318,0.119481998,0.077114428,31,402,0.050901662,0.103327194,0.000553097,1,1808,,,1808,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1458.904,,,,,0.8612,47366,55000,0.629159416,1.093240584,67697,,,57574.10638,77819.89362,,,,,,,,,,103125,68465.76596,137784.234,76667,66223.59575,87110.40426,,,,,,0.325471698,69,212,,,,,,,,0.255993619,,67697,,,20.40816327,1,49,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,200,,,0,,0.69875,1118,1600,,,0.437,,,,,1.054323214,,,,,0.82689747,621,751,0.75481221,0.898982731,0.089163237,65,729,0.022810273,0.155516201,0.834886818,627,751,0.777185835,0.8925878,1808,,,,,0.214048673,387,1808,,,0.233960177,423,1808,,,0.008849558,16,1808,,,0.007190266,13,1808,,,0.004424779,8,1808,,,0,0,1808,,,0.066371681,120,1808,,,0.899889381,1627,1808,,,0.002220988,4,1801,0,0.028148157,0.466261062,843,1808,,,1,1893,1893,, -31,075,31075,NE,Grant County,2024,0,,,,,,2,,,,2,,,,2,,,,2,,,,2,,,,2,,,,2,,0.13,,,0.108,0.155,3.082686102,,,2.418030188,3.918852275,4.030679677,,,3.154208749,5.06443848,,,,,,0,,,,,,,,,,,,,,,,,,,,,,0.166,,,0.128,0.205,0.388,,,0.309,0.47,6.5,0.190371856,0.112,,,0.247,,,0.198,0.297,0.072013093,44,611,,,0.18295129,,,0.146713276,0.222153,0.5,1,2,0.104528646,0.771195053,0,0,579,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.08372093,36,430,0.069423058,0.098018803,0,0,579,,,-579,0,0,576,,,-576,0,0,576,,,-576,1503,,,,,,,,,1516,0.37,,,,,,,,,0.35,0.26,,,,,,,,,0.26,0.916853933,408,445,0.724964699,1,0.732026144,112,153,0.605274148,0.85877814,0.016627078,7,421,,,0.17,24,,0.103276596,0.236723404,,,,,,,,,,,,,0.051851852,0,0.152389208,5.306394316,119500,22520,2.858610408,7.754178225,0.014184397,2,141,0,0.102329619,0,0,579,,,,,,,,,,,,,,,,,,,,,,,,,,4.2,,,,,0,,,,,0.166101695,49,295,0.071198797,0.261004593,0.130584192,0,0.268114065,0.027118644,0,0.107811696,0.013559322,0,0.0706483,0.674418605,232,344,0.58286562,0.76597159,,,,,,,,,,,,,0.637873754,0.520977562,0.754769947,0.272,,344,0.174058415,0.369941585,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.096,,,0.082,0.112,0.139,,,0.117,0.162,0.088,,,0.075,0.104,0,0,481,,,0.112,80,,,,0.190371856,116.8883196,614,,,,,,,,,,,,,,,,,,,,,,,,,,0.298,,,0.28,0.317,0.096219931,28,291,0.07953908,0.112900782,0.055944056,8,143,0.030922779,0.080965333,0,0,576,,,-576,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3664.776,,,,,0.556810468,29531,53036,0.312836163,0.800784774,63469,,,53823.89362,73114.10638,,,,,,,,,,,,,66667,58312.2766,75021.7234,,,,,,0.684210526,104,152,,,,,,,,0.273046684,,63469,,,17.24137931,1,58,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,100,,,-888,,0.788235294,402,510,,,0.386,,,,,2.205295629,,,,,0.697508897,196,281,0.591405998,0.803611795,0.139737991,32,229,0,0.338004344,0.793594306,223,281,0.728273608,0.858915004,576,,,,,0.246527778,142,576,,,0.243055556,140,576,,,0.003472222,2,576,,,0.001736111,1,576,,,0.001736111,1,576,,,0,0,576,,,0.022569444,13,576,,,0.954861111,550,576,,,0.004901961,3,612,0,0.080702358,0.475694444,274,576,,,1,611,611,, -31,077,31077,NE,Greeley County,2024,1,7605.243852,26,5927,3929.740477,13284.83048,1,,,,2,,,,2,,,,2,,,,2,7349.02536,3524.143314,13515.11929,1,,,,2,,0.134,,,0.111,0.16,3.158328889,,,2.464548945,3.941366473,4.109990114,,,3.24182749,5.034191227,0.073298429,14,191,0.036336326,0.110260532,1,,,,,,,,,,,,,0.075268817,0.037353482,0.113184152,,,,,,,0.17,,,0.133,0.208,0.363,,,0.291,0.441,6.4,0.206010207,0.108,,,0.263,,,0.213,0.316,,,2188,,,0.198478429,,,0.160634432,0.23908349,0.666666667,2,3,0.391498614,0.824051859,0,0,2169,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.095804634,153,1597,0.080315272,0.111293995,,0,2169,,,,0,0,2227,,,-2227,,0,2227,,,,363,,,,,,,,,363,0.51,,,,,,,,,0.51,0.32,,,,,,,,,0.32,0.928338762,1425,1535,0.900061828,0.956615697,0.68,306,450,0.544780837,0.815219163,0.020766773,26,1252,,,0.145,78,,0.089,0.201,,,,,,,,,,,,,0.158004158,0.087018382,0.228989934,4.003795066,105500,26350,2.881360539,5.126229594,0.171483622,89,519,0.076952354,0.266014891,23.05209774,5,2169,,,155.5209953,18,11574,92.17159824,245.7902218,,,,,,,,,,,,,161.9433198,95.97787477,255.9402633,,,,5.5,,,,,0,,,,,0.124401914,130,1045,0.0779456,0.170858228,0.101477833,0.049771492,0.153184173,0.01722488,0,0.043915039,0.028708134,0.003776693,0.053639575,0.739350913,729,986,0.67707001,0.801631815,,,,,,,,,,,,,0.748786408,0.682823622,0.814749194,0.209,,986,0.152144605,0.265855395,80.00522182,,,75.95367263,84.05677101,,,,,,,,,,,,,80.19638409,76.10901442,84.28375376,,,,339.1259445,26,5927,209.9243046,518.3900299,,,,,,,,,,,,,327.9823463,200.3401378,506.5421328,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.097,,,0.082,0.114,0.139,,,0.12,0.162,0.086,,,0.072,0.101,0,0,1821,,,0.108,240,,,,0.206010207,522.8539042,2538,,,,,,,,,,,,,,,,,,,,,,,,,,0.301,,,0.284,0.318,0.108303249,120,1108,0.089239419,0.127367079,0.066797642,34,509,0.045350834,0.088244451,0,0,2227,,,-2227,,,,,,,,,,,3.54628505,,,,,,,,,3.635519436,3.585918779,,,,,,,,,3.654839332,,,,,,,,,,,0.762133333,38583,50625,0.581760696,0.942505971,58561,,,49895.29787,67226.70213,,,,,,,,,,,,,53259,48211.85106,58306.14894,,,,,,0.474940334,199,419,,,,,,,,0.295930739,,58561,,,,,137,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,35,,200,,,7,,0.695027624,1258,1810,,,0.493,,,,,0.483155804,,,,,0.824696803,748,907,0.796274094,0.853119511,0.096584217,82,849,0.039162865,0.154005568,0.816979052,741,907,0.770148201,0.863809903,2227,,,,,0.245621913,547,2227,,,0.24831612,553,2227,,,0.009429726,21,2227,,,0.002245173,5,2227,,,0.002245173,5,2227,,,0,0,2227,,,0.030983386,69,2227,,,0.950157162,2116,2227,,,0.000967118,2,2068,0,0.023348364,0.490794791,1093,2227,,,1,2188,2188,, -31,079,31079,NE,Hall County,2024,1,7590.783871,796,172511,6821.270234,8360.297508,0,,,,2,,,,2,,,,2,6728.311534,5401.586817,8055.036252,,7488.136383,6518.707096,8457.565671,,,,,2,,0.157,,,0.133,0.182,3.409590302,,,2.747857388,4.116493987,4.137955423,,,3.44876365,4.884877686,0.078886311,510,6465,0.072315345,0.085457277,0,,,,,,,0.103151863,0.071240794,0.135062931,0.082452431,0.072332772,0.092572091,0.072095269,0.063000524,0.081190014,,,,,,,0.159,,,0.127,0.191,0.41,,,0.359,0.463,7.9,0.070370759,0.105,,,0.31,,,0.265,0.355,0.875840687,55086,62895,,,0.171224667,,,0.140957801,0.204289574,0.230769231,9,39,0.148393644,0.320454524,519.5,322,61979,,,28.4463895,403,14167,25.66903894,31.22374006,,,,,,,25.64102564,12.29586845,47.15475908,47.14510215,41.52154944,52.76865486,15.01185146,12.25611359,17.76758933,,,,,,,0.126839659,6550,51640,0.111350298,0.142329021,0.000580842,36,61979,,,1721.638889,0.000901815,56,62097,,,1108.875,0.004122582,256,62097,,,242.5664063,2622,,,,,,,,1384,2641,0.57,,,,,,0.5,,0.32,0.58,0.55,,,,,,0.64,0.2,0.39,0.56,0.849313365,34139,40196,0.832042485,0.866584244,0.556655247,8774,15762,0.50938314,0.603927354,0.024399115,805,32993,,,0.148,2417,,0.095574468,0.200425532,0.527559055,0.158373626,0.896744485,0.460629921,0,0.980875386,0.197749196,0.022747787,0.372750605,0.312405133,0.253994329,0.370815937,0.062476985,0.038296161,0.086657809,3.973894201,115537,29074,3.6373803,4.310408102,0.245610945,4183,17031,0.19972616,0.29149573,13.71432259,85,61979,,,63.41752145,195,307486,54.51633229,72.3187106,,,,,,,,,,45.6047073,32.72672532,61.86793496,72.47680742,60.67981977,84.27379507,,,,5.1,,,,,1,,,,,0.134496701,3160,23495,0.116952695,0.152040708,0.08573898,0.070707243,0.100770718,0.029793573,0.020441341,0.039145805,0.023622047,0.013045203,0.034198892,0.832283336,25497,30635,0.811338285,0.853228387,,,,,,,,,,0.81178196,0.763401854,0.860162067,0.856403259,0.814039792,0.898766726,0.134,,30635,0.111677454,0.156322546,77.21409321,,,76.52194259,77.90624383,,,,,,,75.19671555,67.72099623,82.67243486,80.57392577,77.38109152,83.76676002,77.14773811,76.32458192,77.97089431,,,,391.5044538,796,172511,363.57117,419.4377375,,,,,,,,,,335.4840908,270.449793,400.5183885,397.0329727,363.9783667,430.0875786,,,,59.8859445,44,73473,43.51321895,80.39408528,,,,,,,,,,64.09434688,39.1504922,98.98852039,48.77520052,28.90727504,77.08584508,,,,6.945516283,45,6479,5.066107237,9.293647245,,,,,,,,,,8.005822416,5.017206285,12.12091135,6.218905473,3.798669025,9.604595119,,,,,,,0.104,,,0.089,0.12,0.137,,,0.118,0.157,0.099,,,0.084,0.114,72.2,36,49866,,,0.105,6590,,,,0.070370759,4124.219091,58607,,,8.136255153,15,184360,4.553800246,13.41951555,,,,,,,,,,,,,9.278785323,4.631936202,16.60231001,,,,0.301,,,0.289,0.313,0.1538264,5391,35046,0.13357108,0.174081719,0.07241716,1261,17413,0.050970351,0.093863968,0.001529865,95,62097,,,653.6526316,0.895582726,860.655,961,,,0.048102779,161,3347,0.016270201,0.079935356,3.014744138,,,,,,,2.670372129,2.631217965,3.328069838,3.041411061,,,,,,,2.064274854,2.593010889,3.471150189,0.142480181,,,,,4051.5775,,,,,0.817263616,42076,51484,0.774504783,0.860022448,66277,,,59776.23404,72777.76596,,,,,,,24069,13890.10638,34247.89362,56050,51024.29787,61075.70213,67451,64310.23404,70591.76596,,,,,,0.544283815,6551,12036,,,47.79941013,,,,,0.261478341,,66277,,,4.121475054,19,4610,,,,,,,,,,,,,,,,,,,,,,,,,,15.03230407,44,307486,10.83396255,20.31930814,14.30959458,,,,,,,,,,16.61863341,8.848722378,28.41836925,14.34611794,9.37136054,21.02038672,,,,7.805233409,24,307486,5.000960322,11.61356862,,,,,,,,,,,,,8.997120921,5.332264066,14.21932995,,,,12.53275342,54,430871,9.414990095,16.35252463,,,,,,,,,,12.20127219,6.828959421,20.12414296,12.66357113,8.869409532,17.53172031,,,,44.26666667,,7500,,,332,,0.617610541,24374,39465,,,0.713,,,,,80.3122831,,,,,0.622159327,14948,24026,0.597973721,0.646344933,0.095397994,2216,23229,0.077397028,0.11339896,0.866186631,20811,24026,0.849493933,0.88287933,62097,,,,,0.269368891,16727,62097,,,0.159476303,9903,62097,,,0.030951576,1922,62097,,,0.02681289,1665,62097,,,0.01372047,852,62097,,,0.006022835,374,62097,,,0.313590029,19473,62097,,,0.628581091,39033,62097,,,0.077778928,4509,57972,0.064763017,0.090794838,0.489282896,30383,62097,,,0.123952619,7796,62895,, -31,081,31081,NE,Hamilton County,2024,1,4955.553969,102,25365,3456.017246,6455.090693,0,,,,2,,,,2,,,,2,,,,2,4964.174013,3530.013002,6786.189295,,,,,2,,0.104,,,0.086,0.124,2.764170097,,,2.140460473,3.447756338,3.871559322,,,3.078732589,4.704792236,0.056578947,43,760,0.040153036,0.073004859,0,,,,,,,,,,,,,0.05915493,0.041801656,0.076508204,,,,,,,0.135,,,0.102,0.168,0.408,,,0.341,0.474,9.2,0.027360766,0.067,,,0.227,,,0.184,0.273,0.627001803,5912,9429,,,0.20050284,,,0.164286433,0.239740755,0,0,7,0,0.25576943,85.2,8,9386,,,7.774538387,16,2058,4.443820434,12.62536326,,,,,,,,,,,,,8.025682183,4.491913394,13.23714225,,,,,,,0.058736559,437,7440,0.049204644,0.068268474,0.001065417,10,9386,,,938.6,0.000530279,5,9429,,,1885.8,0.001272669,12,9429,,,785.75,1558,,,,,,,,,1561,0.45,,,,,,,,,0.45,0.52,,,,,,,,,0.52,0.971740828,6224,6405,0.95935272,0.984128935,0.722117202,1528,2116,0.617350735,0.826883669,0.021018593,104,4948,,,0.097,217,,0.062446809,0.131553192,,,,,,,,,,0.295302013,0,0.601209224,0.018802573,0.009141281,0.028463865,3.274781396,131453,40141,2.529030176,4.020532616,0.158536585,364,2296,0.052428854,0.264644317,18.11208182,17,9386,,,58.14704742,27,46434,38.31927065,84.60090116,,,,,,,,,,,,,61.64102096,40.62182122,89.68444922,,,,6.3,,,,,1,,,,,0.05801105,210,3620,0.02735221,0.088669889,0.04281768,0.017393851,0.068241508,0.005248619,0,0.015385433,0.017955801,0,0.037933885,0.773114614,3629,4694,0.734734852,0.811494377,,,,,,,,,,,,,0.781618435,0.723204991,0.840031879,0.255,,4694,0.20198207,0.30801793,80.20734196,,,78.65870741,81.7559765,,,,,,,,,,,,,80.12592817,78.54852811,81.70332824,,,,283.3708614,102,25365,224.9746851,341.7670376,,,,,,,,,,,,,283.1961412,226.8284998,349.3213939,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.082,,,0.07,0.096,0.125,,,0.106,0.146,0.075,,,0.063,0.088,0,0,7790,,,0.067,630,,,,0.027360766,249.6396281,9124,,,,,,,,,,,,,,,,,,,,,,,,,,0.28,,,0.265,0.296,0.068242984,355,5202,0.05632809,0.080157877,0.038232795,90,2354,0.025126412,0.051339178,0.000318167,3,9429,,,3143,0.957692308,136.95,143,,,,,,,,3.243365784,,,,,,,,,3.266367966,3.459882108,,,,,,,,,3.47113106,0.035032985,,,,,4080.354333,,,,,0.698042093,41856,59962,0.568996197,0.82708799,75369,,,65968.14894,84769.85106,,,,,,,,,,48636,15536.42553,81735.57447,74957,69785.93617,80128.06383,,,,,,0.245339747,408,1663,,,,,,,,0.229935385,,75369,,,6.956521739,4,575,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11,,1000,,,11,,0.795542775,5533,6955,,,0.744,,,,,4.720639647,,,,,0.809896561,2897,3577,0.781162763,0.83863036,0.064721179,224,3461,0.032485989,0.096956369,0.899077439,3216,3577,0.868363278,0.929791601,9429,,,,,0.240958744,2272,9429,,,0.207445116,1956,9429,,,0.004242231,40,9429,,,0.004136176,39,9429,,,0.003818008,36,9429,,,0.000106056,1,9429,,,0.042740482,403,9429,,,0.93382119,8805,9429,,,0.002839296,25,8805,0,0.010889385,0.491992788,4639,9429,,,1,9429,9429,, -31,083,31083,NE,Harlan County,2024,1,7686.76994,50,8585,4092.881256,13144.6107,1,,,,2,,,,2,,,,2,,,,2,7678.94578,3967.823339,13413.57292,1,,,,2,,0.118,,,0.096,0.143,2.932446371,,,2.257247492,3.680903572,4.13831006,,,3.261310922,5.101854724,0.104166667,25,240,0.06551854,0.142814793,0,,,,,,,,,,,,,0.106837607,0.067257639,0.146417574,,,,,,,0.153,,,0.117,0.192,0.361,,,0.284,0.442,8.7,0.025307214,0.092,,,0.229,,,0.181,0.279,0.471851611,1450,3073,,,0.181566525,,,0.145580682,0.221707128,0.75,3,4,0.567659215,0.8560462,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.095174263,213,2238,0.079684901,0.110663624,0.00064704,2,3091,,,1545.5,0.000327439,1,3054,,,3054,,0,3054,,,,1722,,,,,,,,,1725,0.4,,,,,,,,,0.39,0.23,,,,,,,,,0.23,0.926829268,2014,2173,0.898018291,0.955640245,0.735507246,406,552,0.591991739,0.879022754,0.01907357,35,1835,,,0.147,94,,0.089808511,0.204191489,,,,,,,,,,,,,0.052795031,0.019360141,0.086229922,5.365691544,130778,24373,4.332880782,6.398502306,0.126582279,90,711,0.063602649,0.189561908,19.41119379,6,3091,,,90.22013714,15,16626,50.49552588,148.804396,,,,,,,,,,,,,94.10878976,52.67197524,155.2181371,,,,5.7,,,,,0,,,,,0.132013201,200,1515,0.078102778,0.185923625,0.074587459,0.038655766,0.110519152,0.052805281,0.002315829,0.103294732,0.012541254,0,0.026691576,0.776876268,1149,1479,0.746508505,0.807244031,,,,,,,,,,,,,0.772394881,0.743934813,0.800854949,0.245,,1479,0.189445411,0.300554589,78.72686015,,,75.34105282,82.11266748,,,,,,,,,,,,,78.69039672,75.1897508,82.19104265,,,,347.8404881,50,8585,243.6232016,481.5578551,,,,,,,,,,,,,346.2834012,241.1990768,481.5963844,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.089,,,0.075,0.105,0.134,,,0.113,0.156,0.078,,,0.065,0.093,0,0,2625,,,0.092,300,,,,0.025307214,86.62659475,3423,,,,,,,,,,,,,,,,,,,,,,,,,,0.283,,,0.265,0.3,0.109286166,173,1583,0.090222336,0.128349995,0.060294118,41,680,0.038847309,0.081740926,0.000654879,2,3054,,,1527,,,,,,,,,,,3.457210822,,,,,,,,,3.401870328,3.966689876,,,,,,,,,4.04333214,,,,,,3335.563,,,,,0.902062222,50741,56250,0.788968402,1.015156042,62104,,,53409.70213,70798.29787,,,,,,,,,,68068,54809.10638,81326.89362,65000,52674.04255,77325.95745,,,,,,0.366946779,131,357,,,,,,,,0.279048048,,62104,,,,,216,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,56.66666667,,300,,,17,,0.754598826,1928,2555,,,0.451,,,,,10.32313063,,,,,0.82964783,1013,1221,0.787837374,0.871458285,0.086251068,101,1171,0.043313482,0.129188653,0.817362817,998,1221,0.775866765,0.85885887,3054,,,,,0.212508186,649,3054,,,0.283562541,866,3054,,,0.004584152,14,3054,,,0.006221349,19,3054,,,0.00556647,17,3054,,,0,0,3054,,,0.023903078,73,3054,,,0.952521284,2909,3054,,,0.015151515,44,2904,0,0.033967782,0.486902423,1487,3054,,,1,3073,3073,, -31,085,31085,NE,Hayes County,2024,0,,,,,,2,,,,2,,,,2,,,,2,,,,2,,,,2,,,,2,,0.139,,,0.117,0.165,3.275536416,,,2.527322977,4.114973716,4.364914675,,,3.431587422,5.405927168,,,,,,0,,,,,,,,,,,,,,,,,,,,,,0.169,,,0.135,0.208,0.375,,,0.297,0.456,3.9,0.444326618,0.111,,,0.268,,,0.219,0.321,,,856,,,0.173943871,,,0.139043424,0.212797807,1,1,1,,,0,0,843,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.113636364,70,616,0.095764023,0.131508704,0,0,843,,,-843,0,0,849,,,-849,0,0,849,,,-849,2606,,,,,,,,,2606,0.56,,,,,,,,,0.54,0.48,,,,,,,,,0.46,0.929515419,633,681,0.880918262,0.978112575,0.791907515,137,173,0.604954212,0.978860817,0.016666667,10,600,,,0.252,52,,0.156680851,0.347319149,,,,,,,,,,0.285714286,0,0.664959853,0.137566138,0.030395542,0.244736734,5.115449596,109000,21308,2.693270949,7.537628244,0.083743842,17,203,0,0.186472391,0,0,843,,,,,,,,,,,,,,,,,,,,,,,,,,5.1,,,,,0,,,,,0.115384615,45,390,0.043461489,0.187307742,0.132124352,0.027471127,0.236777578,0.01025641,0,0.06350607,0,0,0.043205652,0.695550351,297,427,0.601323813,0.78977689,,,,,,,,,,,,,0.676829268,0.509321535,0.844337001,0.178,,427,0.101262165,0.254737835,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.1,,,0.085,0.115,0.14,,,0.119,0.162,0.094,,,0.08,0.109,0,0,700,,,0.111,100,,,,0.444326618,429.66384,967,,,,,,,,,,,,,,,,,,,,,,,,,,0.306,,,0.289,0.322,0.130952381,55,420,0.108314083,0.153590679,0.086956522,18,207,0.064318224,0.10959482,0,0,849,,,-849,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.002532355,,,,,8721.111,,,,,0.776183587,39167,50461,0.399272306,1.153094868,60141,,,51177.42553,69104.57447,,,,,,,,,,103250,71061.91489,135438.0851,58214,46456.38298,69971.61702,,,,,,0.524822695,74,141,,,,,,,,0.288156166,,60141,,,,,59,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,100,,,-888,,0.785294118,534,680,,,0.613,,,,,0.279101381,,,,,0.711229947,266,374,0.640382198,0.782077696,0.060790274,20,329,0,0.186372823,0.799465241,299,374,0.726742753,0.872187728,849,,,,,0.246171967,209,849,,,0.2803298,238,849,,,0.00942285,8,849,,,0.005889282,5,849,,,0.004711425,4,849,,,0.001177856,1,849,,,0.073027091,62,849,,,0.892815077,758,849,,,0.027874565,24,861,0,0.082907576,0.49352179,419,849,,,1,856,856,, -31,087,31087,NE,Hitchcock County,2024,1,8935.170118,63,7208,5379.556096,13953.37496,1,,,,2,,,,2,,,,2,,,,2,9475.156017,5615.577959,14974.83149,1,,,,2,,0.133,,,0.112,0.157,3.232709733,,,2.539272696,4.008886437,4.204604703,,,3.35600532,5.162527771,0.099447514,18,181,0.055849344,0.143045684,1,,,,,,,,,,,,,0.103448276,0.058197008,0.148699544,,,,,,,0.165,,,0.131,0.204,0.436,,,0.367,0.517,4.5,0.37601584,0.117,,,0.258,,,0.214,0.311,0.248088685,649,2616,,,0.18212487,,,0.148247608,0.22210357,0.666666667,4,6,0.494967173,0.784226735,0,0,2586,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.087160752,167,1916,0.074054369,0.100267135,0.000386698,1,2586,,,2586,0,0,2598,,,-2598,,0,2598,,,,2037,,,,,,,,,1930,0.45,,,,,,,,,0.45,0.35,,,,,,,,,0.35,0.93452381,1727,1848,0.914002673,0.955044946,0.592057762,328,554,0.472104391,0.712011133,0.024371668,32,1313,,,0.18,109,,0.114468085,0.245531915,,,,,,,,,,,,,0.069216758,0.027674385,0.110759131,4.581465614,101594,22175,3.937968614,5.224962615,0.14015748,89,635,0.079919701,0.200395259,15.4679041,4,2586,,,123.5375336,17,13761,71.96516583,197.7955586,,,,,,,,,,,,,123.5902982,70.64253402,200.7029013,,,,5.2,,,,,0,,,,,0.101626016,125,1230,0.064011019,0.139241014,0.065833333,0.025232984,0.106433683,0.027642276,0.000688707,0.054595846,0.019512195,0.00047753,0.03854686,0.765541741,862,1126,0.734985519,0.796097963,,,,,,,,,,,,,0.710462287,0.650326666,0.770597909,0.243,,1126,0.176255323,0.309744678,75.05612212,,,71.68440017,78.42784408,,,,,,,,,,,,,74.44176146,70.8337148,78.04980812,,,,518.1387954,63,7208,383.3219333,685.0069658,,,,,,,,,,,,,539.300404,397.6375449,715.0340942,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.098,,,0.085,0.115,0.138,,,0.12,0.161,0.089,,,0.075,0.104,0,0,2177,,,0.117,310,,,,0.37601584,1093.454062,2908,,,,,,,,,,,,,,,,,,,,,,,,,,0.3,,,0.285,0.315,0.101733233,135,1327,0.083860892,0.119605573,0.056451613,35,620,0.037387783,0.075515443,0.000384912,1,2598,,,2598,,,,,,,,,,,3.049218872,,,,,,,,,3.031262857,2.809610688,,,,,,,,,2.838639744,,,,,,1814.875,,,,,0.886866031,40481,45645,0.770665335,1.003066728,54488,,,46510.97872,62465.02128,,,,,,,,,,39688,22106.38298,57269.61702,49788,43969.95745,55606.04255,,,,,,0.363431151,161,443,,,,,,,,0.318051681,,54488,,,,,183,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,33.33333333,,300,,,10,,0.696208531,1469,2110,,,0.481,,,,,7.877920477,,,,,0.771866546,856,1109,0.750985094,0.792747999,0.07367387,75,1018,0.029480707,0.117867034,0.749323715,831,1109,0.688360094,0.810287336,2598,,,,,0.237105466,616,2598,,,0.250192456,650,2598,,,0.005003849,13,2598,,,0.008468052,22,2598,,,0.003079292,8,2598,,,0,0,2598,,,0.037336413,97,2598,,,0.93187067,2421,2598,,,0.004093328,10,2443,0,0.02372954,0.48960739,1272,2598,,,1,2616,2616,, -31,089,31089,NE,Holt County,2024,1,6352.742602,113,27041,4303.813484,8401.671719,0,,,,2,,,,2,,,,2,,,,2,6908.395926,4638.723116,9178.068735,,,,,2,,0.131,,,0.11,0.156,2.915142524,,,2.322152524,3.610838512,3.850831648,,,3.115501378,4.635584563,0.053475936,50,935,0.039054939,0.067896933,0,,,,,,,,,,,,,0.050909091,0.035909457,0.065908725,,,,,,,0.158,,,0.123,0.193,0.389,,,0.331,0.448,7.9,0.085327431,0.096,,,0.252,,,0.209,0.296,0.63296139,6410,10127,,,0.179118912,,,0.148446942,0.215203162,0,0,4,0,0.360186253,149.3,15,10049,,,9.62927299,20,2077,5.881810104,14.87163115,,,,,,,,,,,,,7.170435742,3.817955042,12.2616635,,,,,,,0.07171521,554,7725,0.059800317,0.083630104,0.000895612,9,10049,,,1116.555556,0.000995718,10,10043,,,1004.3,0.002190581,22,10043,,,456.5,2727,,,,,,,,,2736,0.51,,,,,,,,,0.51,0.13,,,,,,,,,0.13,0.939486287,6474,6891,0.918534053,0.96043852,0.7443074,1569,2108,0.653432976,0.835181824,0.018874519,108,5722,,,0.155,394,,0.099,0.211,,,,,,,,,,0.142259414,0,0.292200703,0.098368087,0.046240854,0.15049532,3.895559153,110704,28418,3.270954893,4.520163412,0.128074971,328,2561,0.066847763,0.189302179,11.94148672,12,10049,,,75.3191152,38,50452,53.30028868,103.3813703,,,,,,,,,,,,,81.24171548,57.49147314,111.5106019,,,,5.2,,,,,0,,,,,0.087699317,385,4390,0.062583572,0.112815061,0.074209803,0.047659215,0.100760391,0.010022779,0.00175084,0.018294718,0.012300683,0.000976616,0.02362475,0.78429481,4065,5183,0.735479599,0.833110021,,,,,,,,,,,,,0.795731707,0.748810838,0.842652576,0.124,,5183,0.094693237,0.153306763,79.34360687,,,77.57045904,81.1167547,,,,,,,,,,,,,78.83334124,76.93235694,80.73432554,,,,279.3587284,113,27041,222.6656376,336.0518191,,,,,,,,,,,,,295.3531476,234.4724028,356.2338923,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.092,,,0.078,0.107,0.132,,,0.113,0.153,0.087,,,0.074,0.101,,,,,,0.096,980,,,,0.085327431,890.3917414,10435,,,,,,,,,,,,,,,,,,,,,,,,,,0.284,,,0.268,0.299,0.087275536,452,5179,0.071786174,0.102764898,0.042529168,113,2657,0.028231296,0.056827041,0.002190581,22,10043,,,456.5,,,,,,,,,,,3.002628404,,,,,,,,,3.13895499,2.829630265,,,,,,,,,3.003515424,0.067670386,,,,,5269.787667,,,,,0.755122254,38882,51491,0.670017087,0.840227422,60502,,,54622,66382,,,,71250,83.53191489,142416.4681,,,,69375,13663.34043,125086.6596,66852,60563.31915,73140.68085,,,,,,0.419065899,655,1563,,,,,,,,0.286436812,,60502,,,5.8910162,4,679,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,19.7141449,14,71015,10.77790647,33.07698532,,,,,,,,,,,,,21.19060953,11.58510342,35.55424209,,,,14.54545455,,1100,,,16,,0.735813954,5537,7525,,,0.612,,,,,13.95620884,,,,,0.721471472,2883,3996,0.676385502,0.766557441,0.096306069,365,3790,0.064174589,0.128437548,0.806806807,3224,3996,0.775458616,0.838154998,10043,,,,,0.256198347,2573,10043,,,0.233993827,2350,10043,,,0.004679877,47,10043,,,0.008861894,89,10043,,,0.006073882,61,10043,,,0.001194862,12,10043,,,0.055561087,558,10043,,,0.923528826,9275,10043,,,0.011169652,106,9490,0.001306212,0.021033093,0.492581898,4947,10043,,,1,10127,10127,, -31,091,31091,NE,Hooker County,2024,0,,,,,,2,,,,2,,,,2,,,,2,,,,2,,,,2,,,,2,,0.116,,,0.094,0.141,2.850191124,,,2.1730056,3.6437289,4.073890246,,,3.176085177,5.070070382,,,,,,0,,,,,,,,,,,,,,,,,,,,,,0.151,,,0.116,0.191,0.355,,,0.28,0.435,5.2,0.327245052,0.105,,,0.234,,,0.187,0.287,1,711,711,,,0.173605626,,,0.138707502,0.210599211,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.08778626,46,524,0.074679877,0.100892643,0.002724796,2,734,,,367,0.001457726,1,686,,,686,0,0,686,,,-686,,,,,,,,,,,0.5,,,,,,,,,0.5,0.48,,,,,,,,,0.48,0.930952381,391,420,0.675708468,1,0.758169935,116,153,0.456390161,1,0.026894866,11,409,,,0.111,16,,0.066914894,0.155085106,,,,,,,,,,,,,,,,4.070769604,100605,24714,2.609475548,5.53206366,0.083333333,12,144,0,0.210914903,0,0,734,,,,,,,,,,,,,,,,,,,,,,,,,,4.3,,,,,0,,,,,0.092063492,29,315,0.01712958,0.166997404,0.076190476,0,0.207034275,0.012698413,0,0.088291771,0,0,0.053492712,0.594771242,182,306,0.48374773,0.705794754,,,,,,,,,,,,,0.642361111,0.559077112,0.72564511,0.285,,306,0.064226956,0.505773044,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.087,,,0.073,0.103,0.135,,,0.114,0.158,0.077,,,0.065,0.091,0,0,630,,,0.105,80,,,,0.327245052,240.8523581,736,,,,,,,,,,,,,,,,,,,,,,,,,,0.287,,,0.268,0.305,0.099173554,36,363,0.082492703,0.115854405,0.058823529,10,170,0.037376721,0.080270338,0,0,686,,,-686,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9345.469,,,,,0.916343039,42708,46607,0.630951039,1.201735039,53537,,,45436.06383,61637.93617,,,,,,,,,,,,,42955,40538.65957,45371.34043,,,,,,0.434285714,76,175,,,,,,,,0.323701365,,53537,,,17.85714286,1,56,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,100,,,0,,0.742857143,442,595,,,0.526,,,,,4.290926578,,,,,0.448630137,131,292,0.308942377,0.588317897,0.026200873,6,229,0,0.209832361,0.797945206,233,292,0.710516486,0.885373925,686,,,,,0.212827988,146,686,,,0.294460641,202,686,,,0,0,686,,,0.004373178,3,686,,,0.005830904,4,686,,,0,0,686,,,0.030612245,21,686,,,0.951895044,653,686,,,0,0,611,0,0.078002577,0.516034985,354,686,,,1,711,711,, -31,093,31093,NE,Howard County,2024,1,8463.231667,100,17597,5697.734792,11228.72854,0,,,,2,,,,2,,,,2,,,,2,8874.717831,6181.566139,12342.58415,,,,,2,,0.125,,,0.104,0.148,3.108339762,,,2.429292324,3.86383646,3.953744797,,,3.134553503,4.824725958,0.06284658,34,541,0.042396095,0.083297065,0,,,,,,,,,,,,,0.065510597,0.044223553,0.086797642,,,,,,,0.164,,,0.127,0.2,0.374,,,0.307,0.442,8.5,0.051232446,0.088,,,0.26,,,0.214,0.308,0.538069498,3484,6475,,,0.196490143,,,0.162136911,0.236465637,0.285714286,2,7,0.086061846,0.500925625,153.1,10,6531,,,8.972267537,11,1226,4.478923627,16.05386502,,,,,,,,,,,,,9.293680297,4.456680944,17.09140896,,,,,,,0.066810345,341,5104,0.056086941,0.077533749,0.00076558,5,6531,,,1306.2,0.000306984,2,6515,,,3257.5,0.00076746,5,6515,,,1303,2351,,,,,,,,,2369,0.54,,,,,,,,,0.53,0.29,,,,,,,,,0.29,0.958639093,4311,4497,0.946117748,0.971160437,0.694855532,986,1419,0.594299005,0.79541206,0.0213858,75,3507,,,0.11,168,,0.065914894,0.154085106,,,,,,,,,,,,,0.01233616,0.001030066,0.023642255,3.576237982,118656,33179,3.017056525,4.135419439,0.140754958,220,1563,0.075624423,0.205885494,9.186954525,6,6531,,,92.68126912,30,32369,62.53166308,132.3082746,,,,,,,,,,,,,97.4025974,65.71712345,139.0482643,,,,5.9,,,,,0,,,,,0.115384615,315,2730,0.074974718,0.155794513,0.096425912,0.058003414,0.134848411,0.012454213,0,0.026251296,0.014652015,0.000721875,0.028582154,0.82031985,2616,3189,0.788699576,0.851940123,,,,,,,,,,,,,0.767195767,0.70307557,0.831315965,0.386,,3189,0.326844023,0.445155977,76.78414447,,,74.54992784,79.01836111,,,,,,,,,,,,,76.42677524,74.09824026,78.75531021,,,,400.834795,100,17597,316.4623284,485.2072616,,,,,,,,,,,,,410.2329074,327.2178332,507.8962536,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.093,,,0.08,0.109,0.136,,,0.116,0.157,0.082,,,0.07,0.095,,,,,,0.088,570,,,,0.051232446,321.4323634,6274,,,,,,,,,,,,,,,,,,,,,,,,,,0.309,,,0.291,0.326,0.076139258,269,3533,0.061841386,0.090437131,0.047647768,79,1658,0.030966917,0.06432862,0.000920952,6,6515,,,1085.833333,,,,,,,,,,,3.167816696,,,,,,,,,3.185441142,3.338893411,,,,,,,,,3.380159259,0.067626488,,,,,5711.544333,,,,,0.78671931,40649,51669,0.697903703,0.875534916,69423,,,60194.91489,78651.08511,,,,,,,,,,77500,45902.89362,109097.1064,70746,63603.02128,77888.97872,,,,,,0.382625995,577,1508,,,,,,,,0.249629086,,69423,,,4.830917874,2,414,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,25.71428571,,700,,,18,,0.725595855,3501,4825,,,0.708,,,,,6.313687925,,,,,0.75668239,1925,2544,0.727702346,0.785662434,0.099751656,241,2416,0.05851912,0.140984191,0.792845912,2017,2544,0.763648114,0.82204371,6515,,,,,0.238066002,1551,6515,,,0.224712203,1464,6515,,,0.00629317,41,6515,,,0.007214121,47,6515,,,0.007674597,50,6515,,,0.000920952,6,6515,,,0.033461243,218,6515,,,0.941212586,6132,6515,,,0.007916873,48,6063,0,0.020121529,0.491481197,3202,6515,,,1,6475,6475,, -31,095,31095,NE,Jefferson County,2024,1,7588.6181,136,19000,5318.824891,9858.411309,0,,,,2,,,,2,,,,2,,,,2,7863.215321,5401.768949,10324.66169,,,,,2,,0.14,,,0.117,0.165,3.415690677,,,2.689581689,4.197272754,4.484919083,,,3.621151965,5.413728324,0.061962134,36,581,0.042358284,0.081565984,0,,,,,,,,,,,,,0.056,0.035846472,0.076153528,,,,,,,0.181,,,0.144,0.221,0.407,,,0.337,0.478,7.3,0.098860435,0.12,,,0.269,,,0.223,0.32,0.35980663,2605,7240,,,0.183536145,,,0.148740106,0.221488702,0.3,3,10,0.129013968,0.476732101,181.2,13,7176,,,29.79274611,46,1544,21.81203459,39.73934826,,,,,,,,,,,,,26.14379085,18.3107897,36.1940265,,,,,,,0.085244083,461,5408,0.0721377,0.098350466,0.000557414,4,7176,,,1794,0.000419346,3,7154,,,2384.666667,0.000559128,4,7154,,,1788.5,1146,,,,,,,,,1153,0.52,,,,,,,,,0.52,0.24,,,,,,,,,0.24,0.920680983,4759,5169,0.889441783,0.951920182,0.604897419,914,1511,0.484269891,0.725524947,0.019458946,82,4214,,,0.149,238,,0.090617021,0.207382979,,,,,,,,,,,,,0.003684598,0,0.02303823,4.109202212,104045,25320,3.328159058,4.890245366,0.101834282,161,1581,0.05616462,0.147503944,18.11594203,13,7176,,,78.66052365,28,35596,52.26934671,113.6863579,,,,,,,,,,,,,84.58958944,56.20916787,122.2555087,,,,6.8,,,,,1,,,,,0.123266564,400,3245,0.08237318,0.164159948,0.10989011,0.070224911,0.149555309,0.00770416,0,0.019584399,0.010477658,0,0.025228578,0.766336056,2627,3428,0.699012022,0.83366009,,,,,,,,,,,,,0.776258365,0.714657266,0.837859463,0.199,,3428,0.153131528,0.244868472,76.33319998,,,74.47299147,78.19340848,,,,,,,,,,,,,75.98402642,74.01040162,77.95765122,,,,434.3881365,136,19000,354.2566283,514.5196446,,,,,,,,,,,,,443.2407787,359.4070063,527.074551,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.101,,,0.086,0.118,0.146,,,0.126,0.17,0.085,,,0.072,0.1,,,,,,0.12,860,,,,0.098860435,746.0997009,7547,,,,,,,,,,,,,,,,,,,,,,,,,,0.3,,,0.283,0.317,0.100787402,384,3810,0.082915061,0.118659742,0.049434187,83,1679,0.032753336,0.066115038,0.001397819,10,7154,,,715.4,0.883461539,114.85,130,,,,,,,,3.106348919,,,,,,,,,3.178890335,3.24391704,,,,,,,,,3.324783118,0.049097726,,,,,3965.097667,,,,,0.697482861,40899,58638,0.638982936,0.755982786,59478,,,51269.82979,67686.17021,,,,,,,,,,38393,15515.21277,61270.78723,55780,51784.93617,59775.06383,,,,,,0.435349941,734,1686,,,,,,,,0.291368237,,59478,,,7.594936709,3,395,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,700,,,-888,,0.671364047,3716,5535,,,0.653,,,,,11.13486773,,,,,0.7008328,2188,3122,0.653353254,0.748312346,0.107597112,313,2909,0.064702732,0.150491493,0.783472133,2446,3122,0.737198335,0.829745931,7154,,,,,0.228543472,1635,7154,,,0.245736651,1758,7154,,,0.00573106,41,7154,,,0.010343864,74,7154,,,0.004612804,33,7154,,,0.000139782,1,7154,,,0.058848197,421,7154,,,0.913754543,6537,7154,,,0.0082535,56,6785,0,0.020319133,0.502236511,3593,7154,,,0.445994475,3229,7240,, -31,097,31097,NE,Johnson County,2024,1,7956.704108,97,14122,5734.492459,10755.15249,0,,,,2,,,,2,,,,2,,,,2,8755.182269,5988.538191,12359.70506,,,,,2,,0.141,,,0.119,0.166,2.960210223,,,2.304065567,3.689263857,3.759883675,,,2.967432372,4.660452576,0.053571429,15,280,0.027196725,0.079946132,1,,,,,,,,,,,,,0.050420168,0.022620765,0.078219572,,,,,,,0.176,,,0.143,0.215,0.393,,,0.324,0.468,8.2,0.058521853,0.096,,,0.265,,,0.222,0.313,0.570510397,3018,5290,,,0.213916094,,,0.176066238,0.256060498,0.25,1,4,0.023230216,0.544021398,244.5,13,5316,,,26.40642939,23,871,16.73941106,39.62260952,,,,,,,,,,,,,20.92050209,11.70904621,34.50518671,,,,,,,0.081798974,271,3313,0.068692591,0.094905357,0.000188111,1,5316,,,5316,0.000189143,1,5287,,,5287,0.000189143,1,5287,,,5287,3757,,,,,,,,,3768,0.46,,,,,,,,,0.48,0.2,,,,,,,,,0.21,0.894750588,3426,3829,0.881352096,0.908149079,0.528455285,780,1476,0.421359611,0.635550958,0.028613715,58,2027,,,0.144,135,,0.086808511,0.201191489,,,,,,,,,,0.060810811,0,0.261666328,0.06918239,0.017657792,0.120706988,3.822511697,113563,29709,2.649650813,4.995372581,0.231840796,233,1005,0.108597608,0.355083985,11.28668172,6,5316,,,89.27531732,23,25763,56.59289305,133.9568098,,,,,,,,,,,,,87.62961881,51.93486578,138.4925771,,,,7.2,,,,,1,,,,,0.097560976,180,1845,0.061970297,0.133151654,0.069421488,0.033433593,0.105409383,0.012466125,0,0.031366685,0.01897019,1.32741E-05,0.037927105,0.755753875,1609,2129,0.706506803,0.805000947,,,,,,,,,,,,,0.802797203,0.727847616,0.87774679,0.324,,2129,0.254483973,0.393516027,77.55802525,,,75.22363691,79.89241359,,,,,,,,,,,,,77.04381531,74.39694908,79.69068154,,,,475.6527372,97,14122,382.9659132,583.9961593,,,,,,,,,,,,,500.5038368,394.989801,625.5439206,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.095,,,0.081,0.109,0.129,,,0.112,0.149,0.091,,,0.078,0.107,0,0,4643,,,0.096,510,,,,0.058521853,305.308506,5217,,,,,,,,,,,,,,,,,,,,,,,,,,0.301,,,0.287,0.315,0.097103918,228,2348,0.079231578,0.114976259,0.043607532,44,1009,0.026926681,0.060288383,0.001513146,8,5287,,,660.875,,,,,,,,,,,3.079357353,,,,,,,,,3.173214127,3.036697982,,,,,,,,,3.075958688,0.064437035,,,,,624.8984,,,,,0.697537357,38465,55144,0.62242119,0.772653524,60549,,,52274.10638,68823.89362,,,,,,,,,,52292,5129.276596,99454.7234,65613,59181.34043,72044.65957,,,,,,0.388429752,282,726,,,,,,,,0.286214471,,60549,,,7.490636704,2,267,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.5,,400,,,7,,0.549691739,2229,4055,,,0.652,,,,,3.51465967,,,,,0.716608595,1234,1722,0.666430796,0.766786393,0.077976191,131,1680,0.032977599,0.122974782,0.826364692,1423,1722,0.775792096,0.876937288,5287,,,,,0.180442595,954,5287,,,0.192736902,1019,5287,,,0.069037261,365,5287,,,0.015698884,83,5287,,,0.012294307,65,5287,,,0,0,5287,,,0.106298468,562,5287,,,0.789105353,4172,5287,,,0.016811709,85,5056,0,0.034047877,0.396633251,2097,5287,,,1,5290,5290,, -31,099,31099,NE,Kearney County,2024,1,6543.880479,79,18014,4476.009403,9238.006722,0,,,,2,,,,2,,,,2,,,,2,7161.597541,4831.899787,10223.6258,,,,,2,,0.126,,,0.105,0.149,2.966940054,,,2.299936235,3.683522773,4.123458036,,,3.284779302,4.986063651,0.07079646,40,565,0.049647304,0.091945617,0,,,,,,,,,,,,,0.063339731,0.042424322,0.084255141,,,,,,,0.158,,,0.124,0.196,0.361,,,0.296,0.429,9,0.005529431,0.087,,,0.245,,,0.203,0.294,0.611842105,4092,6688,,,0.201267028,,,0.164302874,0.242426694,0.285714286,2,7,0.086061846,0.500925625,104.9,7,6674,,,13.91788448,20,1437,8.501405418,21.49504377,,,,,,,,,,,,,13.84364821,8.064435236,22.16502184,,,,,,,0.068516421,363,5298,0.057793017,0.079239826,0.00029967,2,6674,,,3337,0.000448431,3,6690,,,2230,0.000448431,3,6690,,,2230,2915,,,,,,,,,2955,0.53,,,,,,,,,0.53,0.38,,,,,,,,,0.38,0.937387792,4177,4456,0.905350608,0.969424975,0.641509434,986,1537,0.551807627,0.731211241,0.01884789,71,3767,,,0.106,175,,0.065489362,0.146510638,,,,,,,,,,0.548076923,0.357697805,0.738456041,0.098479363,0.036851839,0.160106887,3.648233964,129111,35390,3.021760867,4.274707061,0.1663758,286,1719,0.08165963,0.25109197,19.47857357,13,6674,,,60.7995136,20,32895,37.13792244,93.89991763,,,,,,,,,,,,,63.27217024,38.0939797,98.80733149,,,,6,,,,,0,,,,,0.102230483,275,2690,0.059276884,0.145184083,0.059043348,0.020153695,0.097933002,0.027881041,0.00454633,0.051215752,0.026022305,0.005624987,0.046419623,0.813799076,2819,3464,0.78899785,0.838600303,,,,,,,,,,,,,0.739130435,0.699962355,0.778298515,0.246,,3464,0.18745918,0.30454082,80.10737463,,,77.89145691,82.32329236,,,,,,,,,,,,,79.46372773,77.1186012,81.80885426,,,,323.9131491,79,18014,252.5061905,409.2447775,,,,,,,,,,,,,341.1352243,264.3751132,433.2296762,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.093,,,0.08,0.108,0.133,,,0.114,0.154,0.085,,,0.072,0.099,0,0,5525,,,0.087,580,,,,0.005529431,35.88047874,6489,,,,,,,,,,,,,,,,,,,,,,,,,,0.287,,,0.269,0.303,0.079714129,290,3638,0.065416256,0.094012001,0.044853364,78,1739,0.029364002,0.060342726,0.001046338,7,6690,,,955.7142857,,,,,,,,,,,3.255213333,,,,,,,,,3.286511021,3.318109639,,,,,,,,,3.339351238,0.070058332,,,,,3165.361667,,,,,0.662076691,38417,58025,0.55542089,0.768732492,74686,,,63768.38298,85603.61702,,,,,,,,,,73358,67287.3617,79428.6383,75299,66928.78723,83669.21277,,,,,,0.320541761,426,1329,,,,,,,,0.232038133,,74686,,,6.864988558,3,437,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,40,,800,,,32,,0.748494289,3604,4815,,,0.749,,,,,7.518753942,,,,,0.770033545,2066,2683,0.724260736,0.815806353,0.072308304,182,2517,0.028034146,0.116582461,0.865076407,2321,2683,0.820724524,0.90942829,6690,,,,,0.252615845,1690,6690,,,0.206576981,1382,6690,,,0.00284006,19,6690,,,0.006278027,42,6690,,,0.00284006,19,6690,,,0.001195815,8,6690,,,0.083258595,557,6690,,,0.899252616,6016,6690,,,0.011879917,74,6229,0,0.025403926,0.498056801,3332,6690,,,1,6688,6688,, -31,101,31101,NE,Keith County,2024,1,9776.931526,124,21421,6895.294042,12658.56901,0,,,,2,,,,2,,,,2,,,,2,9607.592672,6510.712593,12704.47275,,,,,2,,0.14,,,0.116,0.164,3.106440877,,,2.415360261,3.878249281,4.217233638,,,3.374858464,5.121735502,0.093137255,57,612,0.070111554,0.116162956,0,,,,,,,,,,,,,0.084452975,0.060575686,0.108330264,,,,,,,0.172,,,0.135,0.211,0.343,,,0.283,0.406,7.8,0.068829162,0.111,,,0.254,,,0.212,0.302,0.713137373,5944,8335,,,0.17137862,,,0.140461723,0.206388369,0,0,18,0,0.129672052,96.6,8,8279,,,18.64640884,27,1448,12.28810092,27.12954589,,,,,,,,,,,,,14.48040886,8.43537178,23.18453732,,,,,,,0.101062064,609,6026,0.085572703,0.116551426,0.000724725,6,8279,,,1379.833333,0.000604668,5,8269,,,1653.8,0.00133027,11,8269,,,751.7272727,2363,,,,,,,,,2427,0.44,,,,,,,,,0.44,0.34,,,,,,,,0.2,0.34,0.908319739,5568,6130,0.885278548,0.93136093,0.709872804,1172,1651,0.594800467,0.824945142,0.018808115,89,4732,,,0.188,308,,0.116510638,0.259489362,,,,,,,,,,0.106122449,0,0.336228916,0.142857143,0.057232083,0.228482203,4.446948643,116808,26267,3.522485683,5.371411603,0.18041543,304,1685,0.094272404,0.266558457,19.32600556,16,8279,,,74.27764986,30,40389,50.11481844,106.0359637,,,,,,,,,,,,,78.00094715,51.83106292,112.7330862,,,,4.9,,,,,0,,,,,0.104786546,405,3865,0.071016301,0.138556791,0.095424837,0.058376034,0.132473639,0.010090556,0.000337178,0.019843934,0.010090556,0,0.025136188,0.841301627,3361,3995,0.790775309,0.891827945,,,,,,,,,,,,,0.830821723,0.786936796,0.87470665,0.139,,3995,0.093457667,0.184542333,77.47403031,,,75.10145773,79.84660288,,,,,,,,,,,,,77.71107018,75.21335914,80.20878122,,,,394.3204543,124,21421,314.4776319,474.1632766,,,,,,,,,,,,,388.7986595,304.6017193,472.9955996,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.098,,,0.084,0.114,0.139,,,0.12,0.16,0.09,,,0.077,0.104,,,,,,0.111,920,,,,0.068829162,575.9624264,8368,,,,,,,,,,,,,,,,,,,,,,,,,,0.301,,,0.286,0.317,0.118070053,509,4311,0.097814734,0.138325373,0.060387812,109,1805,0.041323982,0.079451641,0.001088403,9,8269,,,918.7777778,0.87983871,81.825,93,,,,,,,,3.12154162,,,,,,,,,3.168903873,3.108500608,,,,,,,,,3.180254071,0.009946515,,,,,3138.2775,,,,,0.636632922,36537,57391,0.530039187,0.743226656,60608,,,55145.02128,66070.97872,,,,,,,,,,,,,60916,55040.76596,66791.23404,,,,,,0.447887324,477,1065,,,,,,,,0.28593585,,60608,,,2.43902439,1,410,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,96.25,,800,,,77,,0.685086342,4364,6370,,,0.502,,,,,15.71823152,,,,,0.739751389,2797,3781,0.713592853,0.765909924,0.099157303,353,3560,0.060725841,0.137588766,0.853213436,3226,3781,0.815077482,0.891349389,8269,,,,,0.201233523,1664,8269,,,0.2792357,2309,8269,,,0.00870722,72,8269,,,0.009795622,81,8269,,,0.007135083,59,8269,,,0.000362801,3,8269,,,0.080178982,663,8269,,,0.885959608,7326,8269,,,0.013029728,103,7905,0.002801629,0.023257827,0.49244165,4072,8269,,,0.433593281,3614,8335,, -31,103,31103,NE,Keya Paha County,2024,0,,,,,,2,,,,2,,,,2,,,,2,,,,2,,,,2,,,,2,,0.15,,,0.124,0.181,3.370238095,,,2.627948011,4.244242907,4.369008978,,,3.384214362,5.394954283,,,,,,0,,,,,,,,,,,,,,,,,,,,,,0.189,,,0.146,0.236,0.397,,,0.316,0.481,6.5,0.264844221,0.075,,,0.286,,,0.232,0.344,,,769,,,0.156290819,,,0.123566306,0.191132824,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.097966728,53,541,0.082477367,0.11345609,0,0,787,,,-787,0,0,787,,,-787,0,0,787,,,-787,,,,,,,,,,,0.47,,,,,,,,,0.47,0.12,,,,,,,,,0.12,0.981042654,621,633,0.950766533,1,0.846846847,94,111,0.540625167,1,0.021543986,12,557,,,0.336,49,,0.20612766,0.46587234,,,,,,,,,,,,,0.102362205,0,0.218454189,5.555867595,148375,26706,3.662190715,7.449544476,0.189781022,52,274,0.050200197,0.329361847,0,0,787,,,,,,,,,,,,,,,,,,,,,,,,,,4.4,,,,,0,,,,,0.114285714,40,350,0.044128855,0.184442574,0.122857143,0.010326839,0.235387447,0.011428571,0,0.072775778,0,0,0.04814344,0.585034014,258,441,0.480251977,0.68981605,,,,,,,,,,,,,0.592875318,0.464384375,0.721366261,0.33,,441,0.190305812,0.469694188,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.107,,,0.09,0.126,0.148,,,0.125,0.173,0.096,,,0.081,0.113,0,0,695,,,0.075,70,,,,0.264844221,218.2316383,824,,,,,,,,,,,,,,,,,,,,,,,,,,0.288,,,0.27,0.306,0.111940299,45,402,0.091684979,0.132195618,0.06,9,150,0.044510638,0.075489362,0,0,787,,,-787,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.982115166,47500,48365,0.484177802,1.48005253,51579,,,43984.44681,59173.55319,,,,,,,,,,,,,63409,49991.6383,76826.3617,,,,,,0.471910112,42,89,,,,,,,,0.335989453,,51579,,,,,36,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,100,,,0,,0.789552239,529,670,,,0.492,,,,,0.00325314,,,,,0.789473684,255,323,0.709222923,0.869724446,0.137809187,39,283,0,0.293279091,0.866873065,280,323,0.791474711,0.942271419,787,,,,,0.186785261,147,787,,,0.327827192,258,787,,,0,0,787,,,0.008894536,7,787,,,0.003811944,3,787,,,0,0,787,,,0.007623888,6,787,,,0.975857687,768,787,,,0,0,962,0,0.049542177,0.479034308,377,787,,,1,769,769,, -31,105,31105,NE,Kimball County,2024,1,11414.04344,59,9208,7065.472785,17447.57785,0,,,,2,,,,2,,,,2,,,,2,10099.80639,5985.785361,15962.04839,1,,,,2,,0.162,,,0.138,0.189,3.520897522,,,2.789803831,4.340775323,4.242154584,,,3.380434636,5.189870767,0.084745763,20,236,0.049212921,0.120278604,1,,,,,,,,,,,,,0.097938144,0.056111859,0.13976443,,,,,,,0.193,,,0.156,0.231,0.413,,,0.338,0.49,8.1,0.03144488,0.113,,,0.315,,,0.262,0.368,0.758590565,2605,3434,,,0.169241955,,,0.136630673,0.205991227,0.083333333,1,12,0.004083139,0.26580258,146.5,5,3412,,,15.57632399,10,642,7.469452798,28.6454144,,,,,,,,,,,,,,,,,,,,,,0.12687747,321,2530,0.107813641,0.1459413,,0,3412,,,,0.000301659,1,3315,,,3315,,0,3315,,,,2457,,,,,,,,,2492,0.31,,,,,,,,,0.31,0.22,,,,,,,,,0.22,0.852753392,2137,2506,0.805680415,0.899826369,0.554794521,405,730,0.401925009,0.707664032,0.018829517,37,1965,,,0.174,111,,0.107276596,0.240723404,,,,,,,,,,0.274336283,0.052948736,0.49572383,0.097251586,0,0.203763646,4.311748503,98614,22871,3.025935195,5.59756181,0.146341463,96,656,0.022197089,0.270485838,14.65416178,5,3412,,,112.5112511,20,17776,68.72479515,173.7645022,,,,,,,,,,,,,111.9378416,65.20791776,179.223328,,,,3.9,,,,,0,,,,,0.108695652,175,1610,0.069805706,0.147585598,0.088272383,0.046513189,0.130031578,0.011801242,0,0.032508539,0.01552795,0,0.033414233,0.791460396,1279,1616,0.741609265,0.841311527,,,,,,,,,,,,,0.812457221,0.746074907,0.878839535,0.216,,1616,0.142813063,0.289186937,74.41635595,,,70.83916041,77.99355148,,,,,,,,,,,,,75.3367343,71.87530032,78.79816828,,,,457.6965203,59,9208,336.2981876,608.6393437,,,,,,,,,,,,,438.1130092,311.5411777,598.914906,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.111,,,0.095,0.127,0.148,,,0.127,0.169,0.101,,,0.086,0.117,,,,,,0.113,410,,,,0.03144488,120.1508847,3821,,,,,,,,,,,,,,,,,,,,,,,,,,0.301,,,0.286,0.315,0.142002176,261,1838,0.118172389,0.165831964,0.087016575,63,724,0.059612319,0.11442083,0.001809955,6,3315,,,552.5,,,,,,,,,,,3.273581725,,,,,,,,,3.285360315,3.458319682,,,,,,,,,3.49879923,0.050943372,,,,,2905.909,,,,,0.795175298,37083,46635,0.643235873,0.947114722,55797,,,47713.93617,63880.06383,,,,,,,,,,60804,31308.68085,90299.31915,53307,46028.19149,60585.80851,,,,,,0.417536534,200,479,,,,,,,,0.310590175,,55797,,,,,142,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,300,,,-888,,0.655244755,1874,2860,,,0.577,,,,,1.417983327,,,,,0.722851432,1085,1501,0.649375499,0.796327366,0.098939929,140,1415,0.055168367,0.142711491,0.808794137,1214,1501,0.736782718,0.880805556,3315,,,,,0.197285068,654,3315,,,0.268476621,890,3315,,,0.006334842,21,3315,,,0.025339367,84,3315,,,0.013273002,44,3315,,,0.001508296,5,3315,,,0.098944193,328,3315,,,0.840723982,2787,3315,,,0.010696822,35,3272,0,0.029940784,0.493815988,1637,3315,,,1,3434,3434,, -31,107,31107,NE,Knox County,2024,1,6892.063,117,22009,4623.129544,9160.996457,0,27486.58304,15710.95714,44636.48881,1,,,,2,,,,2,,,,2,4396.963218,2787.297504,6597.603715,1,,,,2,,0.138,,,0.117,0.161,3.385524794,,,2.694306616,4.136830831,4.132786962,,,3.335238944,4.923821451,0.053424658,39,730,0.037111309,0.069738006,0,,,,,,,,,,,,,0.053903346,0.034820614,0.072986078,,,,,,,0.179,,,0.144,0.216,0.397,,,0.336,0.458,7.4,0.117576959,0.105,,,0.264,,,0.222,0.309,0.511262067,4290,8391,,,0.177535363,,,0.143975594,0.211316008,0.6,3,5,0.381076261,0.751373291,119,10,8401,,,22.54098361,44,1952,16.3783132,30.26021838,47.10144928,25.07953801,80.54491275,,,,,,,,,,16.82368775,10.88740367,24.8350819,,,,,,,0.094972067,578,6086,0.080674195,0.109269939,0.000476134,4,8401,,,2100.25,0.000959693,8,8336,,,1042,0.000839731,7,8336,,,1190.857143,2616,,,,,4628,,,,2371,0.45,,,,,0.28,,,,0.46,0.45,,,,,0.18,,,,0.47,0.919177844,5277,5741,0.900324369,0.938031318,0.701306783,1127,1607,0.626080805,0.776532761,0.022978723,108,4700,,,0.194,396,,0.123702128,0.264297872,0.411764706,0.308236638,0.515292774,,,,,,,0.141732284,0,0.291846596,0.071618037,0.044968046,0.098268028,3.997375037,108121,27048,3.554638503,4.440111571,0.21031941,428,2035,0.145798242,0.274840579,19.04535174,16,8401,,,73.9362717,31,41928,50.23610947,104.9466359,258.1977795,123.8158713,474.8349094,,,,,,,,,,56.24138804,34.35370092,86.86026237,,,,5.7,,,,,0,,,,,0.07628294,275,3605,0.0579722,0.094593681,0.048319911,0.029522535,0.067117287,0.020249653,0.010369385,0.030129922,0.009708738,0.003343942,0.016073534,0.758524173,2981,3930,0.729850148,0.787198198,0.670588235,0.583868342,0.757308128,,,,,,,,,,0.736842105,0.698285557,0.775398654,0.233,,3930,0.189076201,0.276923799,79.00793594,,,76.9862652,81.02960668,,,,,,,,,,,,,81.16150091,79.34305973,82.9799421,,,,337.7474995,117,22009,269.5384635,405.9565356,1080.740757,692.4509955,1608.05658,,,,,,,,,,272.7179714,212.9949982,343.9966124,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.099,,,0.085,0.114,0.143,,,0.123,0.164,0.094,,,0.08,0.109,,,,,,0.105,880,,,,0.117576959,1023.037121,8701,,,,,,,,,,,,,,,,,,,,,,,,,,0.301,,,0.286,0.314,0.115290669,472,4094,0.09622684,0.134354499,0.055767398,117,2098,0.037895057,0.073639738,0.001799424,15,8336,,,555.7333333,,,,,,,,,,,3.253144413,,,,,,,,,3.412139937,3.216802902,,,,,,,,,3.360622587,0.428550865,,,,,5937.147667,,,,,0.778446174,39598,50868,0.717303522,0.839588827,54880,,,48759.31915,61000.68085,31250,15338.85106,47161.14894,58438,41110.17021,75765.82979,,,,48309,2195.978723,94422.02128,64344,60651.57447,68036.42553,,,,,,0.465497076,796,1710,,,,,,,,0.315779883,,54880,,,7.299270073,4,548,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.63080519,11,59042,9.300430824,33.33565684,,,,,,,,,,,,,,,,,,,,,900,,,-888,,0.742608696,4697,6325,,,0.54,,,,,0.250683264,,,,,0.759253594,2482,3269,0.733577227,0.784929962,0.061116617,185,3027,0.036563459,0.085669775,0.827776078,2706,3269,0.793322866,0.862229291,8336,,,,,0.247960653,2067,8336,,,0.253838772,2116,8336,,,0.004318618,36,8336,,,0.10712572,893,8336,,,0.004558541,38,8336,,,0.000599808,5,8336,,,0.037428023,312,8336,,,0.840451056,7006,8336,,,0.004185162,33,7885,0,0.011965402,0.503838772,4200,8336,,,1,8391,8391,, -31,109,31109,NE,Lancaster County,2024,1,5749.850273,3101,909718,5456.52109,6043.179456,0,14852.69007,9611.877889,21925.5005,,2409.857706,1658.83516,3384.336194,,10783.86398,8806.246946,12761.48101,,4751.059684,3758.268052,5743.851316,,5706.072506,5376.723663,6035.421349,,,,,2,,0.117,,,0.098,0.139,2.827121145,,,2.340362868,3.37368163,4.657332821,,,4.084903578,5.282978287,0.071549423,1903,26597,0.068451845,0.074647001,0,0.094936709,0.049229565,0.140643853,0.073891626,0.060290102,0.087493149,0.125453227,0.107970613,0.142935841,0.07456,0.065350032,0.083769969,0.06538264,0.061910308,0.068854972,,,,0.100691017,0.082159918,0.119222116,0.139,,,0.109,0.169,0.339,,,0.307,0.372,8.2,0.047849073,0.101,,,0.201,,,0.171,0.232,0.953054481,307463,322608,,,0.220574121,,,0.198237377,0.243806108,0.357894737,34,95,0.306346373,0.409115123,535.9,1739,324514,,,12.11604505,1009,83278,11.36844148,12.86364863,32.25806452,18.79151133,51.64828618,6.252894859,4.120697113,9.09763373,23.2133542,18.64222956,28.56602984,36.39798489,32.20151134,40.59445844,7.409418265,6.735229994,8.083606536,,,,30.71500504,25.26462548,36.16538459,0.071547578,18938,264691,0.064398642,0.078696514,0.000693345,225,324514,,,1442.284444,0.001068495,347,324756,,,935.8962536,0.004295533,1395,324756,,,232.8,1802,,,,,14914,520,2915,1167,1773,0.54,,,,,,0.42,0.35,0.33,0.55,0.63,,,,,0.42,0.6,0.47,0.4,0.64,0.932847216,187548,201049,0.927116529,0.938577904,0.760493244,64448,84745,0.736271255,0.784715234,0.022072155,3981,180363,,,0.137,9671,,0.107212766,0.166787234,0.341666667,0.122845124,0.56048821,0.188764973,0.108862612,0.268667335,0.35320781,0.239853597,0.466562024,0.245608328,0.191228844,0.299987812,0.077210034,0.062688721,0.091731347,4.128940712,133852,32418,3.944366286,4.313515138,0.209989637,15198,72375,0.190200909,0.229778365,12.66509303,411,324514,,,51.57016425,823,1595884,48.04682332,55.09350517,141.5351116,75.36148602,242.0293513,14.78057564,7.378410104,26.44653263,91.81164607,69.89127887,118.4303342,33.73534621,24.10102593,45.93796657,53.24300418,49.25575537,57.230253,,,,6.7,,,,,0,,,,,0.138436032,17535,126665,0.129832394,0.14703967,0.113717979,0.105361329,0.12207463,0.021671338,0.017903068,0.025439608,0.011447519,0.009054982,0.013840056,0.771185707,133547,173171,0.76213319,0.780238223,0.652034261,0.538295795,0.765772728,0.642116602,0.591560656,0.692672548,0.784207056,0.706304538,0.862109573,0.736712089,0.693413053,0.780011125,0.788021579,0.776885231,0.799157927,0.156,,173171,0.146031285,0.165968715,79.57969935,,,79.27737409,79.88202461,74.78278681,66.59039663,82.97517698,89.03132973,84.75392644,93.30873302,74.36587132,72.17285105,76.55889158,86.67579299,83.26199889,90.08958709,79.49773245,79.17394082,79.82152408,,,,297.9358385,3101,909718,287.1483519,308.7233251,666.3869817,449.6084982,951.3088522,138.2368131,101.5712107,183.8256562,521.496512,436.5819068,606.4111172,217.4579526,172.2356003,262.6803049,299.0639124,287.3708026,310.7570221,,,,37.86702167,128,338025,31.30689486,44.42714848,,,,,,,97.76857603,56.95379842,156.5369612,47.38272775,28.52749736,73.99399878,35.30479119,28.23927586,43.60112991,,,,5.137872403,139,27054,4.28372665,5.992018156,,,,,,,,,,,,,5.350267513,4.336496942,6.364038084,,,,,,,0.083,,,0.071,0.096,0.136,,,0.118,0.154,0.086,,,0.076,0.097,38.8,106,273111,,,0.101,32320,,,,0.047849073,13656.46041,285407,,,13.27451066,128,964254,10.97481902,15.5742023,,,,,,,40.72697653,23.27898604,66.13805834,,,,12.77821663,10.38550393,15.55702024,,,,0.283,,,0.27,0.296,0.084662143,16268,192152,0.075130228,0.094194057,0.039520502,3010,76163,0.029988587,0.049052417,0.001668945,542,324756,,,599.1808118,0.80799068,2947.55,3648,,,0.019551975,398,20356,0.009649887,0.029454063,3.318869053,,,,,,3.33517599,2.71556007,2.933759771,3.475279503,3.328455636,,,,,,3.420205836,2.312794653,2.893368144,3.499156323,0.084442736,,,,,4050.0972,,,,,0.802242229,47228,58870,0.775663919,0.828820538,68358,,,62581.65957,74134.34043,30208,1525.276596,58890.7234,77762,66297.48936,89226.51064,45492,35844.51064,55139.48936,56209,52103.12766,60314.87234,73794,72195.02128,75392.97872,,,,,,0.390839695,18688,47815,,,45.95262497,,,,,0.369422745,,68358,,,9.308510638,182,19552,,,1.943951801,43,2211989,1.406847557,2.618490319,,,,,,,14.81430834,7.887995272,25.33291844,,,,0.94865542,0.552626742,1.518889226,,,,13.39603583,214,1595884,11.55733875,15.23473291,13.40949593,,,,,,,,,,,,,14.52490303,12.39785166,16.6519544,,,,7.957971883,127,1595884,6.573906485,9.34203728,,,,,,,17.11742554,8.544957156,30.62780261,,,,8.00588238,6.45975004,9.552014721,,,,7.142892664,158,2211989,6.029106927,8.2566784,,,,,,,12.53518398,6.25751868,22.42890672,9.980413439,5.704668621,16.20756615,6.863800983,5.650780322,8.076821645,,,,6.646341463,,32800,,,218,,0.672849538,156091,231985,,,0.765,,,,,211.0654828,,,,,0.59309766,77025,129869,0.584753811,0.601441509,0.122620104,15618,127369,0.113197624,0.132042583,0.913358846,118617,129869,0.907189331,0.919528362,324756,,,,,0.221396987,71900,324756,,,0.155569104,50522,324756,,,0.041113944,13352,324756,,,0.010330833,3355,324756,,,0.046921381,15238,324756,,,0.001031544,335,324756,,,0.080783727,26235,324756,,,0.797050709,258847,324756,,,0.021347028,6468,302993,0.018611356,0.024082699,0.496160194,161131,324756,,,0.097303849,31391,322608,, -31,111,31111,NE,Lincoln County,2024,1,8554.511527,583,94444,7429.404774,9679.61828,0,,,,2,,,,2,,,,2,9129.409454,5908.072441,13476.80929,1,8668.136811,7424.002426,9912.271195,,,,,2,,0.139,,,0.118,0.163,3.459555195,,,2.808497048,4.145683265,4.107544557,,,3.421423339,4.831885512,0.078459862,216,2753,0.068415234,0.08850449,0,,,,,,,,,,0.073846154,0.045413336,0.102278971,0.07769533,0.066733623,0.088657037,,,,,,,0.174,,,0.139,0.211,0.395,,,0.349,0.442,8.2,0.031350322,0.11,,,0.254,,,0.216,0.298,0.833429461,28900,34676,,,0.17724998,,,0.149605222,0.20787944,0.166666667,5,30,0.080208315,0.272453563,304.7,104,34133,,,19.30051814,149,7720,16.20144443,22.39959184,,,,,,,,,,24.15458937,15.63157667,35.65693884,18.59732073,15.24175733,21.95288412,,,,,,,0.071380797,1921,26912,0.060657392,0.082104201,0.000527349,18,34133,,,1896.277778,0.000801544,27,33685,,,1247.592593,0.00296868,100,33685,,,336.85,3753,,,,,,,,2221,3789,0.42,,,,,,,,0.31,0.43,0.48,,,,,,0.29,0.04,0.46,0.49,0.935181308,22334,23882,0.918309621,0.952052996,0.689577606,5518,8002,0.618410185,0.760745027,0.022307443,413,18514,,,0.15,1128,,0.094,0.206,0.610169492,0.009494898,1,,,,,,,0.27753304,0.160380293,0.394685787,0.071683425,0.03594468,0.10742217,4.506623412,116690,25893,3.841082321,5.172164503,0.234140859,1875,8008,0.1590927,0.309189018,15.23452378,52,34133,,,74.77323578,130,173859,61.91946443,87.62700713,,,,,,,,,,,,,80.50095347,66.21605427,94.78585268,,,,5.3,,,,,0,,,,,0.120894006,1785,14765,0.095281514,0.146506498,0.109785203,0.084288463,0.135281943,0.013884186,0.005389432,0.022378939,0.018963766,0.008292541,0.029634991,0.867638982,14218,16387,0.840947844,0.894330121,,,,,,,,,,0.913888889,0.696650916,1,0.868348655,0.845150446,0.891546863,0.126,,16387,0.102319617,0.149680383,76.08432995,,,75.161927,77.0067329,,,,,,,,,,78.27666225,73.49795865,83.05536585,75.90205397,74.90624506,76.89786289,,,,436.2569875,583,94444,398.6206658,473.8933092,,,,,,,,,,481.7129521,337.3858295,666.8937742,437.6970159,397.7168522,477.6771796,,,,36.53738055,13,35580,19.45461633,62.4800335,,,,,,,,,,,,,42.08901827,21.74800992,73.52104468,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.1,,,0.085,0.116,0.142,,,0.121,0.164,0.093,,,0.08,0.108,24.4,7,28641,,,0.11,3830,,,,0.031350322,1137.640472,36288,,,,,,,,,,,,,,,,,,,,,,,,,,0.323,,,0.306,0.337,0.083836739,1596,19037,0.070730356,0.096943122,0.043294232,358,8269,0.030187849,0.056400614,0.002078076,70,33685,,,481.2142857,0.899646226,381.45,424,,,,,,,,3.171462243,,,,,,,,3.029913381,3.206075571,3.323768262,,,,,,,,3.098474783,3.412674483,0.05394833,,,,,3732.5013,,,,,0.680159023,40547,59614,0.602849454,0.757468592,62442,,,54630.59575,70253.40426,30833,11087.6383,50578.3617,62917,37299.97872,88534.02128,,,,43250,25154.85106,61345.14894,64299,59681.97872,68916.02128,,,,,,0.462820753,2471,5339,,,62.79712403,,,,,0.277537555,,62442,,,6.403940887,13,2030,,,,,,,,,,,,,,,,,,,,,,,,,,20.24923654,35,173859,13.8504628,28.58588018,20.13125579,,,,,,,,,,,,,22.17810827,15.06894856,31.48005438,,,,12.07875347,21,173859,7.476938775,18.46365775,,,,,,,,,,,,,13.19687762,8.060995695,20.38150715,,,,17.54636525,43,245065,12.69839153,23.63483884,,,,,,,,,,,,,16.79331626,11.76183225,23.24902832,,,,28.97435897,,3900,,,113,,0.648237969,17107,26390,,,0.668,,,,,56.46859826,,,,,0.669865378,9703,14485,0.642861785,0.696868971,0.128935746,1810,14038,0.098146032,0.159725459,0.868760787,12584,14485,0.847445546,0.890076028,33685,,,,,0.227074365,7649,33685,,,0.213270002,7184,33685,,,0.01077631,363,33685,,,0.012795013,431,33685,,,0.008698234,293,33685,,,0.001039038,35,33685,,,0.100192964,3375,33685,,,0.862342289,29048,33685,,,0.009522932,310,32553,0.004657886,0.014387977,0.500430459,16857,33685,,,0.319933095,11094,34676,, -31,113,31113,NE,Logan County,2024,0,,,,,,2,,,,2,,,,2,,,,2,,,,2,,,,2,,,,2,,0.123,,,0.102,0.146,2.986199715,,,2.265722135,3.702016592,4.014167937,,,3.106534116,4.945027537,,,,,,0,,,,,,,,,,,,,,,,,,,,,,0.152,,,0.117,0.189,0.381,,,0.302,0.462,8.5,0.049263258,0.086,,,0.238,,,0.191,0.289,,,716,,,0.186722406,,,0.148616495,0.226265024,0,0,2,0,0.510593623,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.08952381,47,525,0.074034448,0.105013171,0,0,687,,,-687,0,0,675,,,-675,0,0,675,,,-675,,,,,,,,,,,0.49,,,,,,,,,0.48,0.32,,,,,,,,,0.31,0.974910394,544,558,0.94449058,1,0.914893617,129,141,0.697259717,1,0.022494888,11,489,,,0.142,21,,0.088382979,0.195617021,,,,,,,,,,,,,0.086124402,0,0.183905956,3.730496454,131500,35250,1.825446903,5.635546005,0.020661157,5,242,0,0.086696726,0,0,687,,,,,,,,,,,,,,,,,,,,,,,,,,4.7,,,,,0,,,,,0.1375,44,320,0.039466323,0.235533677,0.132911392,0.003738809,0.262083976,0.025,0,0.080094982,0,0,0.052656888,0.688940092,299,434,0.606932083,0.770948102,,,,,,,,,,,,,0.651724138,0.491323612,0.812124664,0.431,,434,0.306661934,0.555338066,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.091,,,0.076,0.106,0.134,,,0.114,0.155,0.084,,,0.071,0.098,0,0,590,,,0.086,70,,,,0.049263258,37.58786601,763,,,,,,,,,,,,,,,,,,,,,,,,,,0.292,,,0.275,0.307,0.101876676,38,373,0.082812846,0.120940505,0.055555556,9,162,0.032917258,0.078193853,0,0,675,,,-675,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3251.524,,,,,0.683791959,42045,61488,0.579734632,0.787849287,68723,,,61348.87234,76097.12766,,,,,,,,,,,,,69250,57408.97872,81091.02128,,,,,,0.228723404,43,188,,,,,,,,0.252171762,,68723,,,,,47,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,100,,,-888,,0.72,450,625,,,0.547,,,,,0.543960294,,,,,0.84039088,258,307,0.769484808,0.911296951,0.147368421,42,285,0.000881611,0.293855231,0.778501629,239,307,0.666675191,0.890328067,675,,,,,0.222222222,150,675,,,0.232592593,157,675,,,0.004444444,3,675,,,0.01037037,7,675,,,0.004444444,3,675,,,0,0,675,,,0.066666667,45,675,,,0.896296296,605,675,,,0.00990099,8,808,0,0.069255233,0.478518519,323,675,,,1,716,716,, -31,115,31115,NE,Loup County,2024,0,,,,,,2,,,,2,,,,2,,,,2,,,,2,,,,2,,,,2,,0.126,,,0.107,0.147,3.026805568,,,2.357178734,3.827915105,4.175547198,,,3.305773193,5.190554108,,,,,,0,,,,,,,,,,,,,,,,,,,,,,0.168,,,0.134,0.209,0.385,,,0.308,0.473,7.6,0.118019157,0.097,,,0.258,,,0.21,0.315,0.369028007,224,607,,,0.179596903,,,0.143207353,0.219608267,0.333333333,1,3,0.04092282,0.635504717,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.050574713,22,435,0.039851308,0.061298117,0,0,604,,,-604,0,0,599,,,-599,0,0,599,,,-599,,,,,,,,,,,0.48,,,,,,,,,0.48,0.28,,,,,,,,,0.28,0.989154013,456,461,0.798308038,1,0.694267516,109,157,0.467999359,0.920535673,0.026506024,11,415,,,0.294,32,,0.182,0.406,,,,,,,,,,,,,,,,4.46276155,86167,19308,3.118117841,5.807405259,0.226950355,32,141,0.113967705,0.339933004,0,0,604,,,,,,,,,,,,,,,,,,,,,,,,,,4.8,,,,,,,,,,0.111111111,35,315,0.032030611,0.190191611,0.092063492,0,0.220897408,0.031746032,0,0.109176513,0,0,0.053492712,0.746875,239,320,0.696689265,0.797060736,,,,,,,,,,,,,0.54822335,0.474511209,0.621935492,0.326,,320,0.201297105,0.450702895,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.094,,,0.081,0.109,0.139,,,0.119,0.16,0.087,,,0.074,0.102,0,0,521,,,0.097,60,,,,0.118019157,74.58810698,632,,,,,,,,,,,,,,,,,,,,,,,,,,0.291,,,0.274,0.309,0.058461539,19,325,0.047738134,0.069184943,0.025,3,120,0.015468085,0.034531915,0,0,599,,,-599,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1.137121124,39167,34444,0.344395973,1.929846276,60487,,,51170.74468,69803.25532,,,,,,,,,,,,,50750,39857.40426,61642.59575,,,,,,0.608108108,45,74,,,,,,,,0.286507845,,60487,,,,,35,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,100,,,0,,0.810714286,454,560,,,0.404,,,,,,,,,,0.680147059,185,272,0.570965572,0.789328546,0.202702703,45,222,0,0.414975136,0.75,204,272,0.658244981,0.841755019,599,,,,,0.186978297,112,599,,,0.305509182,183,599,,,0.015025042,9,599,,,0.001669449,1,599,,,0.003338898,2,599,,,0,0,599,,,0.045075125,27,599,,,0.934891486,560,599,,,0,0,589,0,0.080916086,0.494156928,296,599,,,1,607,607,, -31,117,31117,NE,McPherson County,2024,0,,,,,,2,,,,2,,,,2,,,,2,,,,2,,,,2,,,,2,,0.13,,,0.108,0.156,3.083519038,,,2.384246424,3.952512149,4.190238949,,,3.287299217,5.325793147,,,,,,0,,,,,,,,,,,,,,,,,,,,,,0.166,,,0.128,0.21,0.407,,,0.33,0.501,5.7,0.328193834,0.085,,,0.251,,,0.205,0.306,,,399,,,0.173198877,,,0.139441241,0.215966846,0,0,1,0,0.662081041,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.078291815,22,281,0.065185432,0.091398198,0,0,379,,,-379,0,0,372,,,-372,0,0,372,,,-372,,,,,,,,,,,0.29,,,,,,,,,0.29,0.42,,,,,,,,,0.42,0.938053097,318,339,0.888821573,0.987284622,0.720588235,49,68,0.186409678,1,0.018306636,8,437,,,0.254,17,,0.151531915,0.356468085,,,,,,,,,,,,,0.151162791,0.018234411,0.284091171,2.923753666,99700,34100,1.639556843,4.207950489,0.034883721,3,86,0,0.183529887,0,0,379,,,,,,,,,,,,,,,,,,,,,,,,,,4.6,,,,,,,,,,0.04,8,200,0,0.123762973,0.020408163,0,0.212546023,0.02,0,0.13906288,0,0,0.084251021,0.630952381,159,252,0.395804696,0.866100066,,,,,,,,,,,,,0.5625,0.489197719,0.635802281,0.403,,252,0.172811163,0.633188837,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.096,,,0.081,0.113,0.143,,,0.123,0.166,0.087,,,0.074,0.103,0,0,337,,,0.085,40,,,,0.328193834,176.8964767,539,,,,,,,,,,,,,,,,,,,,,,,,,,0.294,,,0.275,0.313,0.080188679,17,212,0.063507828,0.09686953,0.068493151,5,73,0.0518123,0.085174002,0,0,372,,,-372,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.695228571,24333,35000,0.28038234,1.110074803,52774,,,44625.40426,60922.59575,,,,,,,,,,,,,58250,43601.82979,72898.17021,,,,,,0.105263158,6,57,,,,,,,,0.3283814,,52774,,,,,16,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,,-888,,0.816216216,302,370,,,0.414,,,,,0.003406763,,,,,0.766839378,148,193,0.652300579,0.881378177,0.046242775,8,173,0,0.300944079,0.829015544,160,193,0.735487305,0.922543784,372,,,,,0.182795699,68,372,,,0.279569893,104,372,,,0.005376344,2,372,,,0,0,372,,,0.002688172,1,372,,,0,0,372,,,0.029569893,11,372,,,0.951612903,354,372,,,0,0,439,0,0.108563951,0.497311828,185,372,,,1,399,399,, -31,119,31119,NE,Madison County,2024,1,6360.804825,380,97720,5400.992741,7320.616908,0,,,,2,,,,2,,,,2,4593.419956,2911.834224,6892.385281,1,6694.995417,5549.358117,7840.632718,,,,,2,,0.137,,,0.115,0.161,3.279753171,,,2.618769171,3.979464239,4.166452946,,,3.464624524,4.937432238,0.064061123,218,3403,0.055834035,0.07228821,0,,,,,,,,,,0.078484438,0.059094476,0.097874401,0.057049715,0.047872943,0.066226487,,,,,,,0.159,,,0.127,0.192,0.367,,,0.315,0.418,7.9,0.078191689,0.1,,,0.271,,,0.229,0.315,0.901756358,32089,35585,,,0.206679539,,,0.174750371,0.241217576,0.125,3,24,0.040232942,0.245512437,353.7,125,35337,,,20.95628086,174,8303,17.84244542,24.07011631,62.5,31.19977481,111.8297643,,,,,,,43.40376928,34.19723351,54.32628953,13.05970149,10.30651219,16.32238611,,,,,,,0.099765792,2854,28607,0.086659409,0.112872175,0.000622577,22,35337,,,1606.227273,0.001357159,48,35368,,,736.8333333,0.00613549,217,35368,,,162.9861751,2120,,,,,,,,,2154,0.43,,,,,,,,0.33,0.44,0.51,,,,,0.4,0.27,0.31,0.25,0.52,0.929569592,21619,23257,0.91752652,0.941612664,0.68006795,6005,8830,0.617169402,0.742966499,0.021278726,425,19973,,,0.137,1196,,0.097680851,0.176319149,0.097222222,0,0.339024983,,,,,,,0.300683371,0.171681313,0.42968543,0.075281465,0.041059714,0.109503217,4.338392537,120911,27870,3.821332891,4.855452182,0.205162739,1828,8910,0.159647358,0.250678119,16.13040156,57,35337,,,64.85194983,114,175785,52.94702428,76.75687537,,,,,,,,,,35.972517,17.25022014,66.15473953,70.75863364,57.44527908,86.23211019,,,,6.3,,,,,0,,,,,0.136059218,1930,14185,0.109920683,0.162197752,0.108758076,0.085211999,0.132304153,0.019739161,0.010120351,0.029357971,0.016919281,0.009545317,0.024293245,0.823647295,14796,17964,0.806424506,0.840870083,,,,,,,,,,0.776300352,0.711620615,0.840980089,0.853054911,0.838551668,0.867558154,0.102,,17964,0.082205492,0.121794508,78.60661522,,,77.73534883,79.4778816,,,,,,,,,,83.55492033,75.05186795,92.0579727,78.34814617,77.3702645,79.32602784,,,,317.3685124,380,97720,284.0478141,350.6892107,,,,,,,,,,284.8951239,187.7476818,414.5074477,325.7002856,288.3332737,363.0672975,,,,54.87379028,22,40092,34.38911222,83.07957794,,,,,,,,,,,,,69.69152331,41.95884959,108.8319465,,,,5.959137344,21,3524,3.688799939,9.109174442,,,,,,,,,,,,,,,,,,,,,,0.097,,,0.083,0.112,0.136,,,0.117,0.156,0.092,,,0.078,0.106,48.6,14,28820,,,0.1,3570,,,,0.078191689,2727.013335,34876,,,,,,,,,,,,,,,,,,,,,,,,,,0.284,,,0.271,0.296,0.119312129,2352,19713,0.101439789,0.13718447,0.058741259,546,9295,0.042060408,0.07542211,0.002290206,81,35368,,,436.6419753,0.93989011,427.65,455,,,,,,,,3.296792643,,,,,,,,3.032614952,3.463617396,3.207784703,,,,,,,,2.974048193,3.335177087,0.128666285,,,,,2359.2658,,,,,0.748551893,42258,56453,0.686169208,0.810934578,63482,,,57959.44681,69004.55319,88750,8127.87234,169372.1277,68708,33480.42553,103935.5745,67500,7834.978723,127165.0213,46118,40230.85106,52005.14894,63465,60419.55319,66510.44681,,,,,,0.379396566,2276,5999,,,56.88916393,,,,,0.272990769,,63482,,,7.99680128,20,2501,,,,,,,,,,,,,,,,,,,,,,,,,,17.53468407,29,175785,11.65167022,25.3425006,16.49742583,,,,,,,,,,,,,20.41885455,13.21400606,30.1422573,,,,9.670904799,17,175785,5.633658429,15.48405542,,,,,,,,,,,,,10.10837623,5.52634335,16.96013771,,,,20.74528452,51,245839,15.44622694,27.27621792,,,,,,,,,,,,,21.01755735,15.08256202,28.51268977,,,,27.43589744,,3900,,,107,,0.641114274,15765,24590,,,0.718,,,,,67.69677652,,,,,0.666190544,9328,14002,0.645419678,0.686961411,0.09254978,1241,13409,0.0717774,0.11332216,0.839094415,11749,14002,0.812816223,0.865372607,35368,,,,,0.251668175,8901,35368,,,0.174762497,6181,35368,,,0.012186157,431,35368,,,0.023043429,815,35368,,,0.018378195,650,35368,,,0.000848224,30,35368,,,0.164470708,5817,35368,,,0.780281611,27597,35368,,,0.029808246,984,33011,0.021601429,0.038015063,0.498444922,17629,35368,,,0.273598426,9736,35585,, -31,121,31121,NE,Merrick County,2024,1,8203.051433,124,20990,5834.504809,10571.59806,0,,,,2,,,,2,,,,2,,,,2,8810.876694,6184.333411,11437.41998,,,,,2,,0.133,,,0.113,0.158,3.135541153,,,2.491262776,3.898631765,4.439482921,,,3.615037654,5.361844611,0.055016181,34,618,0.037039098,0.072993265,0,,,,,,,,,,,,,0.059964727,0.040422028,0.079507426,,,,,,,0.171,,,0.137,0.209,0.441,,,0.371,0.513,7.5,0.10464651,0.108,,,0.263,,,0.221,0.314,0.513954095,3941,7668,,,0.186946698,,,0.151031799,0.224420691,0.142857143,1,7,0.008995928,0.386311364,104.4,8,7665,,,16.85731487,28,1661,11.20156331,24.36351351,,,,,,,,,,,,,17.28024042,10.95419011,25.92884515,,,,,,,0.079335793,473,5962,0.0674209,0.091250687,0.000391389,3,7665,,,2555,0.000647585,5,7721,,,1544.2,0.000388551,3,7721,,,2573.666667,1572,,,,,,,,,1574,0.57,,,,,,,,,0.57,0.37,,,,,,,,,0.37,0.928821041,5050,5437,0.907530997,0.950111085,0.737592698,1293,1753,0.634807369,0.840378028,0.019696251,83,4214,,,0.122,204,,0.074340426,0.169659575,,,,,,,,,,0.121621622,0.006754999,0.236488244,0.095983662,0.036621682,0.155345643,4.560705853,110100,24141,2.942758984,6.178652722,0.147774481,249,1685,0.077185917,0.218363045,20.87410307,16,7665,,,48.91360313,19,38844,29.44918434,76.38465032,,,,,,,,,,,,,53.22874352,32.04718074,83.12327657,,,,6.3,,,,,0,,,,,0.138138138,460,3330,0.09860764,0.177668636,0.098330804,0.063104195,0.133557413,0.022522523,0.004641419,0.040403626,0.033033033,0.011035297,0.055030769,0.837105263,3181,3800,0.799870924,0.874339602,,,,,,,,,,,,,0.816150529,0.760285175,0.872015884,0.269,,3800,0.218155364,0.319844636,77.60183276,,,75.55311066,79.65055486,,,,,,,,,,,,,77.11649638,74.94881189,79.28418086,,,,416.8805162,124,20990,338.5351843,495.2258481,,,,,,,,,,,,,432.0723801,348.6842076,515.4605527,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.097,,,0.083,0.113,0.14,,,0.12,0.16,0.088,,,0.074,0.103,,,,,,0.108,830,,,,0.10464651,820.9518712,7845,,,,,,,,,,,,,,,,,,,,,,,,,,0.275,,,0.26,0.288,0.090615633,393,4337,0.075126271,0.106104995,0.051192554,88,1719,0.033320213,0.069064894,0.000388551,3,7721,,,2573.666667,,,,,,,,,,,3.272067939,,,,,,,,,3.21272853,3.480986926,,,,,,,,,3.505641486,0.050658888,,,,,5551.652,,,,,0.804509111,41857,52028,0.683706843,0.925311378,68754,,,60990.25532,76517.74468,,,,,,,,,,60000,56584,63416,58205,49367.7234,67042.2766,,,,,,0.372408294,467,1254,,,,,,,,0.252058062,,68754,,,6.060606061,3,495,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15,,800,,,12,,0.716666667,4257,5940,,,0.67,,,,,11.46830766,,,,,0.787716535,2501,3175,0.751325732,0.824107339,0.123741475,381,3079,0.080841421,0.166641528,0.83496063,2651,3175,0.789041759,0.880879501,7721,,,,,0.221603419,1711,7721,,,0.21447999,1656,7721,,,0.005051159,39,7721,,,0.010102318,78,7721,,,0.010231835,79,7721,,,0.001165652,9,7721,,,0.058282606,450,7721,,,0.908561067,7015,7721,,,0.005390463,39,7235,0,0.01514719,0.49164616,3796,7721,,,1,7668,7668,, -31,123,31123,NE,Morrill County,2024,1,8669.612619,82,12428,5806.175635,12451.00988,0,,,,2,,,,2,,,,2,,,,2,7156.433238,4308.640299,11175.65698,1,,,,2,,0.137,,,0.116,0.161,3.201017179,,,2.513184776,3.937105862,4.278548444,,,3.409980516,5.207654786,0.069705094,26,373,0.043862016,0.095548172,0,,,,,,,,,,,,,0.064102564,0.036923744,0.091281385,,,,,,,0.163,,,0.13,0.201,0.393,,,0.322,0.466,7.1,0.180347912,0.089,,,0.265,,,0.22,0.312,0.735236004,3349,4555,,,0.187149283,,,0.152428683,0.225620648,0.214285714,3,14,0.080830645,0.373240293,262.4,12,4574,,,16.61779081,17,1023,9.680475532,26.60669288,,,,,,,,,,,,,20.57613169,11.51630471,33.9372001,,,,,,,0.110294118,390,3536,0.093613267,0.126974969,0.000437254,2,4574,,,2287,0.000441794,2,4527,,,2263.5,,0,4527,,,,1883,,,,,,,,,1979,0.34,,,,,,,,,0.34,0.38,,,,,,,,0.38,0.38,0.894113884,2795,3126,0.873039068,0.915188699,0.600183824,653,1088,0.486406172,0.713961475,0.021308411,57,2675,,,0.195,198,,0.118744681,0.271255319,,,,,,,,,,0.214912281,0.073091872,0.356732689,0.067114094,0.014556523,0.119671665,4.806636398,113278,23567,3.402543123,6.210729674,0.192932187,202,1047,0.103627932,0.282236443,13.11762134,6,4574,,,111.2870779,26,23363,72.69641406,163.0613538,,,,,,,,,,,,,105.290866,64.31439634,162.613203,,,,4.3,,,,,0,,,,,0.111675127,220,1970,0.072404999,0.150945255,0.078331638,0.039692953,0.116970322,0.010152284,0,0.025248372,0.020304569,0,0.041159436,0.77120698,1591,2063,0.73218966,0.810224301,,,,,,,,,,,,,0.731839783,0.663638518,0.800041048,0.274,,2063,0.204504398,0.343495602,76.05971251,,,73.52491399,78.59451103,,,,,,,,,,,,,77.37952624,74.72352243,80.03553005,,,,445.5402337,82,12428,348.6077931,561.0841878,,,,,,,,,,,,,389.8679023,292.8807673,508.6930429,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.097,,,0.083,0.112,0.138,,,0.119,0.159,0.09,,,0.077,0.104,,,,,,0.089,410,,,,0.180347912,909.3141704,5042,,,,,,,,,,,,,,,,,,,,,,,,,,0.283,,,0.268,0.297,0.128736548,323,2509,0.106098251,0.151374846,0.06598513,71,1076,0.044538322,0.087431939,0.001325381,6,4527,,,754.5,,,,,,,,,,,3.13176854,,,,,,,,,3.217751782,3.22703838,,,,,,,,,3.427834365,0.038250213,,,,,4255.4895,,,,,0.7267147,36109,49688,0.588531029,0.864898371,58889,,,50131.55319,67646.44681,,,,,,,,,,48542,25307.95745,71776.04255,58596,53558.38298,63633.61702,,,,,,0.578384798,487,842,,,,,,,,0.294282464,,58889,,,3.048780488,1,328,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,46,,500,,,23,,0.731616595,2557,3495,,,0.49,,,,,23.38195085,,,,,0.804851158,1460,1814,0.756944208,0.852758108,0.096699479,167,1727,0.055476069,0.137922889,0.816979052,1482,1814,0.762649894,0.87130821,4527,,,,,0.22730285,1029,4527,,,0.228849128,1036,4527,,,0.005522421,25,4527,,,0.022089684,100,4527,,,0.007731389,35,4527,,,0,0,4527,,,0.163242766,739,4527,,,0.799646565,3620,4527,,,0.012175135,52,4271,0,0.026705552,0.482217804,2183,4527,,,1,4555,4555,, -31,125,31125,NE,Nance County,2024,1,7726.95343,71,9503,4783.105959,11811.46912,1,,,,2,,,,2,,,,2,,,,2,8085.255137,5004.900363,12359.17134,1,,,,2,,0.134,,,0.114,0.158,3.198011386,,,2.516356786,3.922968192,4.556863127,,,3.65361929,5.467364644,0.066420664,18,271,0.036772443,0.096068886,1,,,,,,,,,,,,,0.069230769,0.038374744,0.100086795,,,,,,,0.174,,,0.139,0.212,0.398,,,0.323,0.473,8.4,0.013202484,0.109,,,0.258,,,0.213,0.309,0.649704142,2196,3380,,,0.187006102,,,0.151729641,0.22632927,1,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.065934066,174,2639,0.055210662,0.07665747,,0,3390,,,,0.000901984,3,3326,,,1108.666667,,0,3326,,,,1627,,,,,,,,,1630,0.51,,,,,,,,,0.51,0.24,,,,,,,,,0.25,0.921940928,2185,2370,0.89906902,0.944812837,0.699728261,515,736,0.579019106,0.820437416,0.020780537,41,1973,,,0.147,113,,0.094574468,0.199425532,,,,,,,,,,,,,0.143258427,0.07572202,0.210794834,3.917273746,111846,28552,3.11304187,4.721505622,0.129750983,99,763,0.064625851,0.194876115,11.79941003,4,3390,,,,,,,,,,,,,,,,,,,,,,,,,,6,,,,,0,,,,,0.081699346,125,1530,0.041302238,0.122096455,0.072607261,0.023739915,0.121474607,0.002614379,0,0.016887949,0.009803922,0,0.027203766,0.731176105,1175,1607,0.659149354,0.803202855,,,,,,,,,,,,,0.722084367,0.658331594,0.78583714,0.331,,1607,0.257445433,0.404554567,75.5363775,,,72.8317992,78.2409558,,,,,,,,,,,,,75.04290484,72.2259889,77.85982079,,,,450.1545215,71,9503,343.5153233,579.4381004,,,,,,,,,,,,,462.9767003,351.5576191,598.5047458,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.099,,,0.085,0.114,0.141,,,0.12,0.162,0.092,,,0.077,0.106,0,0,2836,,,0.109,370,,,,0.013202484,49.31127865,3735,,,,,,,,,,,,,,,,,,,,,,,,,,0.315,,,0.298,0.331,0.07584723,141,1859,0.061549357,0.090145102,0.046398046,38,819,0.030908685,0.061887408,0.001503307,5,3326,,,665.2,,,,,,,,,,,3.249569974,,,,,,,,,3.19510195,3.304504248,,,,,,,,,3.264190748,,,,,,5978.579,,,,,0.936892999,44375,47364,0.720186455,1.153599543,62863,,,54644.10638,71081.89362,,,,,,,,,,51413,46627.97872,56198.02128,61875,54336.44681,69413.55319,,,,,,0.305107527,227,744,,,,,,,,0.275678857,,62863,,,5.555555556,1,180,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.5,,400,,,5,,0.670825688,1828,2725,,,0.567,,,,,0.118821818,,,,,0.827084927,1081,1307,0.79326643,0.860903425,0.062948207,79,1255,0.024336559,0.101559855,0.814078041,1064,1307,0.761281234,0.866874848,3326,,,,,0.235417919,783,3326,,,0.212266987,706,3326,,,0.006013229,20,3326,,,0.007215875,24,3326,,,0.001503307,5,3326,,,0.000300662,1,3326,,,0.039386651,131,3326,,,0.934756464,3109,3326,,,0.000626959,2,3190,0,0.015169795,0.492784125,1639,3326,,,1,3380,3380,, -31,127,31127,NE,Nemaha County,2024,1,9384.895234,114,19249,6533.631791,12236.15868,0,,,,2,,,,2,,,,2,,,,2,9971.837002,6917.5926,13026.0814,,,,,2,,0.139,,,0.114,0.166,3.226634974,,,2.540602335,4.011845786,4.278581411,,,3.457967401,5.16257293,0.075438597,43,570,0.053757396,0.097119797,0,,,,,,,,,,,,,0.069216758,0.047984323,0.090449193,,,,,,,0.171,,,0.134,0.213,0.421,,,0.353,0.491,8.4,0.012583336,0.112,,,0.273,,,0.225,0.324,0.58213175,4118,7074,,,0.198735096,,,0.163176808,0.238241365,0.5,3,6,0.280972677,0.671334317,353.9,25,7064,,,8.575512149,18,2099,5.082391987,13.55300632,,,,,,,,,,,,,8.817427386,5.136476385,14.1175554,,,,,,,0.083077513,433,5212,0.069971131,0.096183896,0.000849377,6,7064,,,1177.333333,0.000426439,3,7035,,,2345,0.000426439,3,7035,,,2345,2005,,,,,,,,,2010,0.44,,,,,,,,,0.44,0.55,,,,,,,,,0.55,0.902322553,4157,4607,0.871973638,0.932671468,0.723096287,1149,1589,0.592374906,0.853817668,0.023587493,86,3646,,,0.152,242,,0.098382979,0.205617021,,,,,,,,,,,,,0.16871832,0.081078163,0.256358477,4.854482428,131639,27117,3.937007106,5.77195775,0.137841352,212,1538,0.06800416,0.207678545,12.74065685,9,7064,,,82.8879298,29,34987,55.51134747,119.0408936,,,,,,,,,,,,,85.68193641,56.9350245,123.8342542,,,,7.3,,,,,0,,,,,0.092783505,270,2910,0.057477974,0.128089036,0.08218232,0.043501947,0.120862694,0.012027491,0,0.025222375,0.003436426,0,0.011834735,0.841857546,2683,3187,0.814255782,0.86945931,,,,,,,,,,,,,0.819662058,0.771498229,0.867825888,0.172,,3187,0.111644272,0.232355728,75.86560677,,,73.6777486,78.05346493,,,,,,,,,,,,,75.27460807,73.00612506,77.54309108,,,,445.3623774,114,19249,356.5380193,534.1867354,,,,,,,,,,,,,463.4694166,369.840695,557.0981382,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.1,,,0.084,0.118,0.142,,,0.121,0.164,0.087,,,0.074,0.102,,,,,,0.112,790,,,,0.012583336,91.20401686,7248,,,,,,,,,,,,,,,,,,,,,,,,,,0.29,,,0.273,0.307,0.095409292,345,3616,0.078728441,0.112090143,0.056024096,93,1660,0.038151756,0.073896437,0.000426439,3,7035,,,2345,,,,,,,,,,,3.543342425,,,,,,,,,3.550511208,3.584805652,,,,,,,,,3.602065639,0.052467101,,,,,2669.9305,,,,,0.7318279,43816,59872,0.611195487,0.852460312,61933,,,52665.59575,71200.40426,,,,,,,,,,19329,12989.08511,25668.91489,57404,51608.59575,63199.40426,,,,,,0.254676259,354,1390,,,,,,,,0.279818514,,61933,,,7.692307692,3,390,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.71428571,,700,,,11,,0.626923077,3423,5460,,,0.607,,,,,32.59986569,,,,,0.696948439,1987,2851,0.656830222,0.737066656,0.090808824,247,2720,0.04982893,0.131788718,0.790249035,2253,2851,0.741186498,0.839311573,7035,,,,,0.229140014,1612,7035,,,0.204122246,1436,7035,,,0.01464108,103,7035,,,0.004832978,34,7035,,,0.006112296,43,7035,,,0.000995025,7,7035,,,0.032409382,228,7035,,,0.928784648,6534,7035,,,0.00287226,19,6615,0,0.013203633,0.495380242,3485,7035,,,1,7074,7074,, -31,129,31129,NE,Nuckolls County,2024,1,7951.912369,70,10742,4983.421146,12039.29089,1,,,,2,,,,2,,,,2,,,,2,8248.337783,5038.299003,12738.88873,1,,,,2,,0.129,,,0.107,0.154,3.032863103,,,2.365699665,3.741259119,4.094466355,,,3.270394518,4.927050546,0.06185567,18,291,0.034177705,0.089533636,1,,,,,,,,,,,,,0.061594203,0.033230248,0.089958158,,,,,,,0.168,,,0.129,0.208,0.379,,,0.312,0.445,7.8,0.135555654,0.08,,,0.25,,,0.204,0.302,0.633455434,2594,4095,,,0.179469326,,,0.148216446,0.214991618,0,0,1,0,0.662081041,147.8,6,4060,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.099458728,294,2956,0.083969366,0.11494809,0.001231527,5,4060,,,812,0.000742391,3,4041,,,1347,0.000989854,4,4041,,,1010.25,1316,,,,,,,,,1320,0.55,,,,,,,,,0.55,0.18,,,,,,,,,0.18,0.92781457,2802,3020,0.891469652,0.964159487,0.707616708,576,814,0.602990073,0.812243342,0.021877486,55,2514,,,0.161,130,,0.097851064,0.224148936,,,,,,,,,,,,,0.084468665,0.039515783,0.129421547,3.651938532,108605,29739,2.69489891,4.608978154,0.151819323,121,797,0.040766542,0.262872103,19.7044335,8,4060,,,91.29348453,19,20812,54.96464138,142.5660848,,,,,,,,,,,,,97.01797386,58.41115791,151.505584,,,,6.2,,,,,0,,,,,0.051351351,95,1850,0.027616138,0.075086564,0.039868924,0.010031327,0.069706521,0.012432432,0,0.026768622,0,0,0.009108219,0.733364574,1565,2134,0.724697305,0.742031842,,,,,,,,,,,,,0.744137572,0.686700794,0.801574349,0.194,,2134,0.145999095,0.242000905,77.24440413,,,74.53480325,79.95400501,,,,,,,,,,,,,76.90711035,74.03752487,79.77669583,,,,400.1556518,70,10742,300.6092413,522.1163244,,,,,,,,,,,,,409.285206,305.6737682,536.7230949,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.093,,,0.079,0.108,0.137,,,0.117,0.159,0.084,,,0.071,0.098,0,0,3485,,,0.08,330,,,,0.135555654,610.0004415,4500,,,,,,,,,,,,,,,,,,,,,,,,,,0.277,,,0.26,0.292,0.110335196,237,2148,0.092462855,0.128207536,0.075029308,64,853,0.051199521,0.098859096,0.000989854,4,4041,,,1010.25,,,,,,,,,,,2.881911466,,,,,,,,,2.921183058,2.897917395,,,,,,,,,2.882747251,0.068131078,,,,,,,,,,0.738008643,34496,46742,0.604674038,0.871343249,57278,,,49864.55319,64691.44681,,,,,,,,,,,,,68011,55183.42553,80838.57447,,,,,,0.435384615,283,650,,,,,,,,0.302559447,,57278,,,9.174311927,2,218,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20,,400,,,8,,0.696822996,2303,3305,,,0.612,,,,,0.004093249,,,,,0.815789474,1426,1748,0.746756473,0.884822474,0.047813411,82,1715,0.019168073,0.076458749,0.808352403,1413,1748,0.755914101,0.860790705,4041,,,,,0.202672606,819,4041,,,0.279138827,1128,4041,,,0.003217026,13,4041,,,0.004454343,18,4041,,,0.016085127,65,4041,,,0,0,4041,,,0.037119525,150,4041,,,0.929225439,3755,4041,,,0,0,3903,0,0.012211011,0.499133878,2017,4041,,,1,4095,4095,, -31,131,31131,NE,Otoe County,2024,1,6921.491004,206,43480,5340.233797,8502.748211,0,,,,2,,,,2,,,,2,,,,2,7596.408127,5780.63452,9412.181734,,,,,2,,0.126,,,0.105,0.15,3.071124602,,,2.447263239,3.754715958,4.25973277,,,3.52415741,5.061474379,0.074492099,99,1329,0.060375218,0.08860898,0,,,,,,,,,,,,,0.075,0.059842465,0.090157535,,,,,,,0.152,,,0.118,0.188,0.388,,,0.332,0.446,6.6,0.196085386,0.107,,,0.262,,,0.219,0.309,0.712795375,11342,15912,,,0.195863995,,,0.162538768,0.231690659,0.444444444,4,9,0.264827841,0.599456043,282.5,45,15930,,,19.96007984,70,3507,15.55986145,25.21836009,,,,,,,,,,33.05785124,18.89541829,53.68387933,18.11722913,13.48946708,23.82081044,,,,,,,0.077615476,983,12665,0.065700582,0.089530369,0.000753296,12,15930,,,1327.5,0.000555624,9,16198,,,1799.777778,0.001172984,19,16198,,,852.5263158,1285,,,,,,,,,1298,0.48,,,,,,,,,0.48,0.4,,,,,,,,,0.4,0.929365658,10197,10972,0.90905009,0.949681226,0.700220022,2546,3636,0.613449989,0.786990055,0.022956522,198,8625,,,0.109,417,,0.068489362,0.149510638,,,,,,,,,,0.076023392,0,0.183276571,0.119786453,0.069868396,0.16970451,4.5710718,131784,28830,3.805739332,5.336404269,0.172512341,664,3849,0.111743443,0.233281239,18.20464532,29,15930,,,70.07094683,56,79919,52.9308402,90.99295287,,,,,,,,,,,,,76.65989977,57.58927609,100.0245402,,,,7.4,,,,,1,,,,,0.116743472,760,6510,0.086738999,0.146747944,0.089628483,0.064422285,0.114834681,0.031490015,0.012602123,0.050377908,0.017665131,0.008650714,0.026679547,0.748211372,5961,7967,0.712029683,0.784393061,,,,,,,,,,,,,0.753494715,0.721389058,0.785600373,0.397,,7967,0.346533709,0.447466291,79.17592833,,,77.7505835,80.60127316,,,,,,,,,,,,,78.42843666,76.87434704,79.98252628,,,,341.6204965,206,43480,292.1404718,391.1005213,,,,,,,,,,,,,364.6508007,310.4974367,418.8041648,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.092,,,0.078,0.107,0.134,,,0.115,0.154,0.084,,,0.071,0.097,,,,,,0.107,1700,,,,0.196085386,3086.383976,15740,,,,,,,,,,,,,,,,,,,,,,,,,,0.29,,,0.275,0.306,0.090479406,804,8886,0.074990044,0.105968768,0.04949495,196,3960,0.034005588,0.064984311,0.000864304,14,16198,,,1157,0.881693989,161.35,183,,,,,,,,2.699280404,,,,,,,,2.028882895,2.689176439,2.879412081,,,,,,,,2.790280155,2.848921907,0.099505841,,,,,1452.874133,,,,,0.752681079,44497,59118,0.656745534,0.848616623,70433,,,61347.89362,79518.10638,,,,,,,,,,82944,35164.08511,130723.9149,74813,67608.06383,82017.93617,,,,,,0.35526847,880,2477,,,,,,,,0.246049437,,70433,,,6.550218341,6,916,,,,,,,,,,,,,,,,,,,,,,,,,,18.3535731,14,79919,9.772504693,31.38516896,17.51773671,,,,,,,,,,,,,21.09293628,11.23110022,36.06956343,,,,12.51266908,10,79919,6.000311185,23.01124394,,,,,,,,,,,,,,,,,,,10.71581655,12,111984,5.537018778,18.71837499,,,,,,,,,,,,,12.10592686,6.255309063,21.14661796,,,,11.11111111,,1800,,,20,,0.71991342,8315,11550,,,0.723,,,,,36.2399515,,,,,0.767634207,4919,6408,0.74005138,0.795217035,0.102503543,651,6351,0.072818822,0.132188263,0.894818976,5734,6408,0.871985192,0.917652761,16198,,,,,0.239103593,3873,16198,,,0.205889616,3335,16198,,,0.010001235,162,16198,,,0.009692555,157,16198,,,0.007963946,129,16198,,,0.001296456,21,16198,,,0.088714656,1437,16198,,,0.873811582,14154,16198,,,0.022484579,339,15077,0.006495819,0.03847334,0.49425855,8006,16198,,,0.558823529,8892,15912,, -31,133,31133,NE,Pawnee County,2024,1,11592.70819,46,6663,6626.234381,18825.83182,1,,,,2,,,,2,,,,2,,,,2,12327.89509,7046.457217,20019.72929,1,,,,2,,0.163,,,0.133,0.192,3.459232354,,,2.713033056,4.331056423,4.355198071,,,3.421161965,5.349784608,0.075555556,17,225,0.041022229,0.110088883,1,,,,,,,,,,,,,0.076923077,0.041790727,0.112055427,,,,,,,0.2,,,0.157,0.243,0.375,,,0.298,0.454,7.8,0.054235624,0.119,,,0.287,,,0.235,0.341,0.454795598,1157,2544,,,0.166631185,,,0.132366593,0.203414388,0,0,4,0,0.360186253,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.112328767,205,1825,0.094456427,0.130201108,0.000392465,1,2548,,,2548,0.001186709,3,2528,,,842.6666667,0.00039557,1,2528,,,2528,1079,,,,,,,,,987,0.54,,,,,,,,,0.54,0.12,,,,,,,,,0.12,0.858974359,1541,1794,0.803571785,0.914376933,0.595573441,296,497,0.467285611,0.72386127,0.022,33,1500,,,0.206,115,,0.127361702,0.284638298,,,,,,,,,,0.305555556,0,0.830177805,0.173553719,0.090581744,0.256525694,4.145672629,97813,23594,2.84801223,5.443333028,0.174129353,105,603,0.063554093,0.284704614,0,0,2548,,,138.0897583,18,13035,81.84074247,218.2413523,,,,,,,,,,,,,137.4514877,80.07055684,220.073147,,,,7.2,,,,,0,,,,,0.098360656,120,1220,0.059656088,0.137065223,0.065505804,0.021053976,0.109957633,0.02704918,0.003744415,0.050353946,0.012295082,0,0.029076634,0.636536632,669,1051,0.542115502,0.730957762,,,,,,,,,,,,,0.664502165,0.57656488,0.752439449,0.211,,1051,0.1380754,0.2839246,76.24690056,,,72.12268406,80.37111707,,,,,,,,,,,,,75.64624049,71.25621237,80.03626861,,,,486.1332126,46,6663,334.6317352,682.7117729,,,,,,,,,,,,,502.4658454,343.6862663,709.3318517,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.111,,,0.093,0.129,0.152,,,0.129,0.175,0.095,,,0.08,0.111,0,0,2126,,,0.119,300,,,,0.054235624,150.3953861,2773,,,,,,,,,,,,,,,,,,,,,,,,,,0.315,,,0.298,0.331,0.129160063,163,1262,0.107713255,0.150606872,0.071672355,42,586,0.045459589,0.097885121,0.001582279,4,2528,,,632,,,,,,,,,,,2.897786136,,,,,,,,,2.881028772,3.107414391,,,,,,,,,3.165957329,,,,,,198.8965,,,,,0.810823221,37083,45735,0.598748971,1.02289747,55584,,,47554.55319,63613.44681,,,,,,,,,,,,,56103,45205.6383,67000.3617,,,,,,0.586283186,265,452,,,,,,,,0.311780369,,55584,,,5.524861879,1,181,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,200,,,-888,,0.695377129,1429,2055,,,0.552,,,,,0.03943294,,,,,0.825233645,883,1070,0.802060501,0.848406789,0.068825911,68,988,0.017033215,0.120618607,0.727102804,778,1070,0.654068786,0.800136822,2528,,,,,0.225870253,571,2528,,,0.289952532,733,2528,,,0.01068038,27,2528,,,0.003955696,10,2528,,,0.003560127,9,2528,,,0,0,2528,,,0.020174051,51,2528,,,0.943433544,2385,2528,,,0.005052632,12,2375,0,0.02507584,0.511867089,1294,2528,,,1,2544,2544,, -31,135,31135,NE,Perkins County,2024,1,8030.128932,38,7670,4494.402205,13244.47649,1,,,,2,,,,2,,,,2,,,,2,8285.70242,4529.870615,13902.00076,1,,,,2,,0.131,,,0.107,0.156,3.23772358,,,2.507698537,3.986581733,4.547117816,,,3.644273641,5.464740135,0.054545455,12,220,0.024536951,0.084553958,1,,,,,,,,,,,,,0.053398058,0.022695901,0.084100215,,,,,,,0.156,,,0.119,0.192,0.416,,,0.344,0.489,8.2,0.07339466,0.088,,,0.257,,,0.207,0.307,0.538838349,1540,2858,,,0.194180689,,,0.159271617,0.234040637,0.5,1,2,0.104528646,0.771195053,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.112354312,241,2145,0.095673461,0.129035163,0.001059322,3,2832,,,944,0.000353482,1,2829,,,2829,,0,2829,,,,1923,,,,,,,,,1941,0.47,,,,,,,,,0.48,0.4,,,,,,,,,0.4,0.906361323,1781,1965,0.872903484,0.939819162,0.719167905,484,673,0.596895142,0.841440667,0.017030335,32,1879,,,0.137,91,,0.085765957,0.188234043,,,,,,,,,,0.203703704,0,0.517535276,0.092532468,0.030664374,0.154400561,4.103069489,118033,28767,3.040013502,5.166125476,0.09476662,67,707,0.031408178,0.158125061,28.24858757,8,2832,,,97.07391485,14,14422,53.07121257,162.8735343,,,,,,,,,,,,,103.3973412,56.5282886,173.4831693,,,,4.9,,,,,0,,,,,0.0875,105,1200,0.047444022,0.127555978,0.08361204,0.036496082,0.130727998,0.003333333,0,0.02227539,0.003333333,0,0.013456395,0.755304102,1068,1414,0.69462151,0.815986694,,,,,,,,,,,,,0.741935484,0.663801739,0.820069229,0.193,,1414,0.133175842,0.252824158,78.64664776,,,75.11301754,82.18027797,,,,,,,,,,,,,78.73134312,75.00166235,82.46102389,,,,354.3122545,38,7670,242.3493198,500.1831864,,,,,,,,,,,,,348.9752699,233.7142152,501.1866995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.095,,,0.08,0.11,0.138,,,0.118,0.159,0.081,,,0.068,0.094,,,,,,0.088,250,,,,0.07339466,217.9821411,2970,,,,,,,,,,,,,,,,,,,,,,,,,,0.266,,,0.25,0.282,0.124576845,184,1477,0.103130036,0.146023654,0.090651558,64,706,0.063247303,0.118055813,0.002474373,7,2829,,,404.1428571,,,,,,,,,,,3.268310008,,,,,,,,,3.261227115,3.091384189,,,,,,,,,3.190503792,0.009552486,,,,,,,,,,0.86734359,42283,48750,0.604071183,1.130615997,67296,,,57423.31915,77168.68085,,,,,,,,,,43889,18187.38298,69590.61702,63382,54604.29787,72159.70213,,,,,,0.216216216,96,444,,,,,,,,0.25751902,,67296,,,5.813953488,1,172,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,53.33333333,,300,,,16,,0.71981352,1544,2145,,,0.673,,,,,0.058686402,,,,,0.778162912,898,1154,0.688313264,0.868012559,0.094254937,105,1114,0.040633806,0.147876069,0.850953206,982,1154,0.791202298,0.910704115,2829,,,,,0.237539767,672,2829,,,0.241428067,683,2829,,,0.004948745,14,2829,,,0.006362672,18,2829,,,0.002120891,6,2829,,,0.000706964,2,2829,,,0.054789678,155,2829,,,0.926122305,2620,2829,,,0.01,27,2700,0,0.027734241,0.492753623,1394,2829,,,1,2858,2858,, -31,137,31137,NE,Phelps County,2024,1,7056.021375,116,24182,5128.205212,8983.837538,0,,,,2,,,,2,,,,2,,,,2,7434.077151,5311.456327,9556.697974,,,,,2,,0.128,,,0.105,0.155,3.042104408,,,2.377218232,3.80225539,4.347342875,,,3.506128779,5.280862272,0.054916986,43,783,0.038959535,0.070874437,0,,,,,,,,,,,,,0.05907781,0.041536364,0.076619256,,,,,,,0.161,,,0.124,0.202,0.416,,,0.348,0.488,8.3,0.045929505,0.1,,,0.24,,,0.193,0.29,0.75,6726,8968,,,0.188574284,,,0.15358685,0.228657982,0.6,6,10,0.459169088,0.71012622,212.6,19,8937,,,16.3599182,32,1956,11.19017194,23.09532315,,,,,,,,,,,,,15.78947368,10.40536265,22.97285523,,,,,,,0.082436261,582,7060,0.069329878,0.095542644,0.001007049,9,8937,,,993,0.000667557,6,8988,,,1498,0.001668892,15,8988,,,599.2,2399,,,,,,,,,2431,0.48,,,,,,,,,0.48,0.43,,,,,,,,,0.44,0.923342088,5625,6092,0.902650979,0.944033197,0.758144126,1536,2026,0.654337423,0.861950829,0.019853087,100,5037,,,0.111,238,,0.068106383,0.153893617,,,,,,,,,,0.752380952,0.534554437,0.970207468,0.108034745,0.030838122,0.185231367,5.849321729,120303,20567,4.793427596,6.905215862,0.115097857,247,2146,0.058545358,0.171650355,23.49781806,21,8937,,,88.82375147,40,45033,63.4569903,120.952739,,,,,,,,,,,,,96.90157223,69.22790388,131.9524382,,,,5.9,,,,,1,,,,,0.133333333,520,3900,0.089630694,0.177035973,0.126848249,0.0841036,0.169592898,0.024102564,0.01091324,0.037291888,0.003589744,0,0.008781577,0.807467386,3590,4446,0.759036982,0.85589779,,,,,,,,,,,,,0.815629583,0.768870861,0.862388305,0.187,,4446,0.141613795,0.232386206,78.10496155,,,76.4018664,79.80805671,,,,,,,,,,,,,77.66700066,75.86999748,79.46400384,,,,363.9305017,116,24182,293.8827603,433.9782431,,,,,,,,,,,,,376.0393026,302.1496982,449.9289069,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.092,,,0.078,0.109,0.137,,,0.115,0.159,0.085,,,0.072,0.1,,,,,,0.1,900,,,,0.045929505,422.000288,9188,,,,,,,,,,,,,,,,,,,,,,,,,,0.271,,,0.254,0.286,0.095597228,469,4906,0.078916377,0.112278079,0.054472985,123,2258,0.036600645,0.072345325,0.001335114,12,8988,,,749,0.917342342,101.825,111,,,,,,,,3.054474082,,,,,,,,,3.063312935,3.17134343,,,,,,,,,3.175695629,0.034365773,,,,,2870.282667,,,,,0.805454159,45455,56434,0.647416439,0.963491879,66287,,,56552.53192,76021.46809,,,,,,,,,,,,,66605,59966.02128,73243.97872,,,,,,0.340716612,523,1535,,,,,,,,0.261438895,,66287,,,10.86956522,6,552,,,,,,,,,,,,,,,,,,,,,,,,,,21.55957084,11,45033,10.33865223,39.64881838,24.42653166,,,,,,,,,,,,,23.35907214,11.20158305,42.95816535,,,,22.20593787,10,45033,10.64861034,40.83751036,,,,,,,,,,,,,24.22539306,11.6170176,44.55136036,,,,31.44901329,20,63595,19.20987434,48.57045035,,,,,,,,,,,,,34.22079255,20.90294912,52.85123863,,,,20,,1000,,,20,,0.744832714,5009,6725,,,0.685,,,,,44.49337833,,,,,0.70065703,2666,3805,0.660762439,0.740551622,0.128080152,473,3693,0.076850259,0.179310045,0.834165572,3174,3805,0.785413606,0.882917537,8988,,,,,0.241989319,2175,8988,,,0.205718736,1849,8988,,,0.004450378,40,8988,,,0.009568313,86,8988,,,0.004672897,42,8988,,,0.000445038,4,8988,,,0.066755674,600,8988,,,0.90787717,8160,8988,,,0.014163295,119,8402,0.0032985,0.025028089,0.494103249,4441,8988,,,0.391837645,3514,8968,, -31,139,31139,NE,Pierce County,2024,1,4852.816696,93,19600,3398.853154,6718.343836,0,,,,2,,,,2,,,,2,,,,2,4903.407598,3395.752305,6852.020638,,,,,2,,0.121,,,0.1,0.144,2.923212644,,,2.296154546,3.682489928,4.043578989,,,3.288199902,4.954727851,0.066052227,43,651,0.046972569,0.085131886,0,,,,,,,,,,,,,0.06518283,0.045891565,0.084474094,,,,,,,0.151,,,0.116,0.19,0.355,,,0.294,0.424,7.9,0.097822577,0.091,,,0.251,,,0.205,0.302,0.562115621,4113,7317,,,0.194908373,,,0.158572275,0.234759163,0,0,7,0,0.25576943,54.7,4,7313,,,10.23017903,16,1564,5.847431236,16.61316982,,,,,,,,,,,,,9.002770083,4.793595908,15.39501102,,,,,,,0.062124592,362,5827,0.052592678,0.071656507,0.000410228,3,7313,,,2437.666667,0.000409165,3,7332,,,2444,0.000136388,1,7332,,,7332,1977,,,,,,,,,1981,0.42,,,,,,,,,0.42,0.4,,,,,,,,,0.4,0.944939271,4668,4940,0.92604288,0.963835663,0.771865443,1262,1635,0.670691963,0.873038924,0.019603212,83,4234,,,0.117,216,,0.071723404,0.162276596,,,,,,,,,,,,,0.09139785,0.044029451,0.138766248,3.624840348,116361,32101,3.083010154,4.166670542,0.158979924,293,1843,0.086431504,0.231528344,12.30685081,9,7313,,,66.80584551,24,35925,42.80376578,99.40180263,,,,,,,,,,,,,66.88768685,42.40105577,100.3643718,,,,6,,,,,1,,,,,0.076923077,230,2990,0.05155644,0.102289714,0.067814114,0.03900121,0.096627017,0.008026756,0,0.020757763,0.008026756,0.002040422,0.014013089,0.791316147,2916,3685,0.749503109,0.833129184,,,,,,,,,,,,,0.761807818,0.699140511,0.824475125,0.278,,3685,0.231364187,0.324635813,81.02104251,,,79.11191759,82.93016744,,,,,,,,,,,,,81.00245298,79.06853692,82.93636903,,,,323.2451994,93,19600,257.8330305,400.199552,,,,,,,,,,,,,321.9773699,255.3080297,400.7287079,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.091,,,0.077,0.107,0.134,,,0.114,0.156,0.081,,,0.068,0.094,0,0,6002,,,0.091,660,,,,0.097822577,710.7788429,7266,,,,,,,,,,,,,,,,,,,,,,,,,,0.286,,,0.268,0.301,0.072507553,288,3972,0.05940117,0.085613936,0.041258381,80,1939,0.026960508,0.055556253,0.001091108,8,7332,,,916.5,,,,,,,,,,,3.490629101,,,,,,,,,3.528310463,3.341526238,,,,,,,,,3.38039853,0.061322153,,,,,3726.221333,,,,,0.761328616,40020,52566,0.639950626,0.882706605,70906,,,61862.59575,79949.40426,,,,,,,,,,,,,66767,57347.08511,76186.91489,,,,,,0.278782895,339,1216,,,,,,,,0.24440809,,70906,,,3.838771593,2,521,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,800,,,-888,,0.74738806,4006,5360,,,0.698,,,,,5.344556205,,,,,0.780598053,2245,2876,0.740735329,0.820460777,0.076951535,208,2703,0.043541805,0.110361266,0.855702364,2461,2876,0.824228299,0.887176429,7332,,,,,0.255455537,1873,7332,,,0.197354064,1447,7332,,,0.004637207,34,7332,,,0.006273868,46,7332,,,0.004228042,31,7332,,,0,0,7332,,,0.028096018,206,7332,,,0.948717949,6956,7332,,,0.012105108,82,6774,0.000197847,0.024012369,0.492635025,3612,7332,,,1,7317,7317,, -31,141,31141,NE,Platte County,2024,1,6229.134398,377,93163,5270.151219,7188.117576,0,,,,2,,,,2,,,,2,5030.635508,3342.820761,7270.668972,,6369.112559,5238.527082,7499.698036,,,,,2,,0.129,,,0.109,0.152,2.820735909,,,2.22252748,3.482149125,4.14213996,,,3.43300368,4.924746611,0.059436275,194,3264,0.05132478,0.067547769,0,,,,,,,,,,0.051440329,0.037553371,0.065327288,0.061141304,0.051147657,0.071134951,,,,,,,0.15,,,0.12,0.183,0.36,,,0.31,0.412,8.7,0.037918019,0.082,,,0.258,,,0.218,0.299,0.81712153,28024,34296,,,0.206607934,,,0.174400827,0.242932616,0.5,9,18,0.385770148,0.600567612,259.9,89,34241,,,16.15445233,123,7614,13.29952042,19.00938423,,,,,,,,,,23.93746947,17.70907169,31.6466041,13.26259947,10.33884693,16.75649656,,,,,,,0.095785717,2657,27739,0.082679334,0.1088921,0.000759324,26,34241,,,1316.961539,0.000524843,18,34296,,,1905.333333,0.002303476,79,34296,,,434.1265823,1849,,,,,,,,,1852,0.55,,,,,,,,0.24,0.56,0.57,,,,,,,,0.25,0.57,0.896799536,20091,22403,0.879483018,0.914116054,0.581330079,4764,8195,0.516530461,0.646129698,0.021075269,392,18600,,,0.115,1009,,0.082829787,0.147170213,,,,,,,,,,0.276245074,0.201499469,0.350990678,0.02179599,0.008908745,0.034683234,3.50166132,122250,34912,3.056227657,3.947094983,0.200448682,1787,8915,0.143137943,0.257759421,10.22166409,35,34241,,,71.59349215,120,167613,58.78379108,84.40319322,,,,,,,,,,43.54515633,24.37189344,71.82111322,81.03159453,65.45782345,96.60536561,,,,6.7,,,,,1,,,,,0.09829222,1295,13175,0.073349157,0.123235284,0.058419244,0.041084575,0.075753913,0.025047438,0.011469822,0.038625055,0.021631879,0.005726988,0.037536769,0.803285211,14133,17594,0.780433076,0.826137346,,,,,,,,,,0.805198285,0.723098528,0.887298042,0.827450498,0.798213288,0.856687708,0.114,,17594,0.089178099,0.138821901,79.43651056,,,78.50264588,80.37037524,,,,,,,,,,81.47138307,76.02213614,86.92063,79.26099542,78.2229468,80.29904403,,,,319.8963933,377,93163,286.0788012,353.7139854,,,,,,,,,,228.2204538,153.9793818,325.7988886,332.9004047,294.183443,371.6173664,,,,41.58112217,16,38479,23.76720407,67.52513734,,,,,,,,,,,,,43.64906155,21.78945426,78.10022822,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.09,,,0.077,0.104,0.13,,,0.112,0.149,0.09,,,0.077,0.104,,,,,,0.082,2810,,,,0.037918019,1222.363193,32237,,,,,,,,,,,,,,,,,,,,,,,,,,0.293,,,0.28,0.305,0.115282779,2177,18884,0.097410439,0.13315512,0.056597671,525,9276,0.03991682,0.073278523,0.000962211,33,34296,,,1039.272727,0.851972789,375.72,441,,,,,,,,3.261345256,,,,,,,,3.045016469,3.45599975,3.282147368,,,,,,,,3.010239516,3.475491575,0.074514303,,,,,1381.3115,,,,,0.779709574,43546,55849,0.725960355,0.833458793,67132,,,58541.3617,75722.6383,,,,,,,114188,94686.89362,133689.1064,60568,48847.31915,72288.68085,71413,64121.08511,78704.91489,,,,,,0.481005481,2545,5291,,,,,,,,0.258148126,,67132,,,9.53961012,23,2411,,,,,,,,,,,,,,,,,,,,,,,,,,14.88866995,24,167613,9.330650191,22.54162523,14.31869843,,,,,,,,,,,,,19.21173768,11.89236842,29.36718181,,,,7.159349215,12,167613,3.699340212,12.50594229,,,,,,,,,,,,,8.570649422,4.278437311,15.33525927,,,,15.85798107,37,233321,11.16548213,21.85813799,,,,,,,,,,,,,15.48278646,10.28819916,22.37693725,,,,17.17948718,,3900,,,67,,0.689377612,15673,22735,,,0.738,,,,,80.47777496,,,,,0.747592537,9937,13292,0.719285602,0.775899472,0.078943327,1028,13022,0.055565998,0.102320656,0.862548902,11465,13292,0.839447404,0.885650399,34296,,,,,0.259272218,8892,34296,,,0.185998367,6379,34296,,,0.011371589,390,34296,,,0.020031491,687,34296,,,0.011167483,383,34296,,,0.002332634,80,34296,,,0.227635876,7807,34296,,,0.740698624,25403,34296,,,0.05242176,1670,31857,0.039565207,0.065278313,0.489882202,16801,34296,,,0.275775601,9458,34296,, -31,143,31143,NE,Polk County,2024,1,5796.161325,79,14044,3851.507107,8377.06692,0,,,,2,,,,2,,,,2,,,,2,5701.881198,3724.658104,8354.577055,,,,,2,,0.125,,,0.103,0.15,2.937851351,,,2.233537326,3.704970357,4.047783182,,,3.174741588,4.987505192,0.030534351,12,393,0.013523723,0.04754498,1,,,,,,,,,,,,,0.030640669,0.012812761,0.048468576,,,,,,,0.162,,,0.126,0.2,0.376,,,0.303,0.452,9.1,0.014287959,0.077,,,0.245,,,0.198,0.295,0.294591485,1536,5214,,,0.195649759,,,0.157581713,0.236971449,0.4,2,5,0.149190828,0.619170557,193.3,10,5174,,,8.992805755,10,1112,4.312399907,16.53808997,,,,,,,,,,,,,,,,,,,,,,0.110971314,441,3974,0.095481952,0.126460675,0.000579822,3,5174,,,1724.666667,0.000387147,2,5166,,,2583,0.000193573,1,5166,,,5166,3282,,,,,,,,,3282,0.56,,,,,,,,,0.56,0.55,,,,,,,,,0.55,0.92106726,3314,3598,0.896208225,0.945926294,0.698501873,746,1068,0.599595231,0.797408514,0.02017094,59,2925,,,0.097,113,,0.061255319,0.132744681,,,,,,,,,,0.192,0.066472696,0.317527304,0.140020899,0.079656748,0.20038505,3.459211384,127382,36824,3.043210718,3.87521205,0.104948806,123,1172,0.052236214,0.157661397,21.26014689,11,5174,,,114.5300451,30,26194,77.27294045,163.4987608,,,,,,,,,,,,,116.2066819,77.21849619,167.9510104,,,,6.4,,,,,0,,,,,0.065853659,135,2050,0.039987683,0.091719635,0.040766208,0.011460106,0.07007231,0.018536585,0,0.03807218,0.003902439,0,0.010898775,0.759597466,2038,2683,0.724881457,0.794313475,,,,,,,,,,,,,0.708685163,0.6147248,0.802645526,0.286,,2683,0.238087903,0.333912097,78.61478226,,,76.60066717,80.62889735,,,,,,,,,,,,,78.58272046,76.52589593,80.63954499,,,,349.1524898,79,14044,270.0345103,444.2075752,,,,,,,,,,,,,346.6944851,266.4095616,443.572851,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.091,,,0.077,0.107,0.133,,,0.113,0.155,0.081,,,0.067,0.095,,,,,,0.077,400,,,,0.014287959,77.24070557,5406,,,,,,,,,,,,,,,,,,,,,,,,,,0.304,,,0.288,0.32,0.120953397,340,2811,0.101889568,0.140017227,0.09039088,111,1228,0.061795135,0.118986624,0.00058072,3,5166,,,1722,,,,,,,,,,,3.317141072,,,,,,,,,3.342345877,3.382060048,,,,,,,,,3.392062283,0.094588804,,,,,5849.8625,,,,,0.865501125,45000,51993,0.722100454,1.008901796,70813,,,60828.31915,80797.68085,,,,,,,,,,55625,2818.191489,108431.8085,67542,60121.40426,74962.59575,,,,,,0.23587444,263,1115,,,,,,,,0.244729075,,70813,,,,,264,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,38.25241127,14,36599,20.9129492,64.18104626,,,,,,,,,,,,,35.46832974,18.32700354,61.95603419,,,,0,,600,,,0,,0.732569975,2879,3930,,,0.626,,,,,13.11406037,,,,,0.811292719,1638,2019,0.790447492,0.832137947,0.042094456,82,1948,0.008605639,0.075583273,0.855373948,1727,2019,0.824291559,0.886456336,5166,,,,,0.228222997,1179,5166,,,0.232288037,1200,5166,,,0.003484321,18,5166,,,0.008904375,46,5166,,,0.002903601,15,5166,,,0.00058072,3,5166,,,0.066202091,342,5166,,,0.909407666,4698,5166,,,0.009597713,47,4897,0,0.023229541,0.491676345,2540,5166,,,1,5214,5214,, -31,145,31145,NE,Red Willow County,2024,1,8772.542993,164,28844,6682.193638,10862.89235,0,,,,2,,,,2,,,,2,,,,2,8884.740595,6689.532702,11079.94849,,,,,2,,0.124,,,0.102,0.147,2.960375504,,,2.308595029,3.680225567,3.771051954,,,3.03989116,4.574124024,0.057522124,52,904,0.042343762,0.072700486,0,,,,,,,,,,0.101010101,0.041649501,0.160370701,0.052971576,0.037192247,0.068750906,,,,,,,0.158,,,0.122,0.196,0.373,,,0.311,0.438,6.6,0.192312967,0.106,,,0.246,,,0.202,0.294,0.791534293,8471,10702,,,0.182664391,,,0.150129271,0.219269594,0.583333333,7,12,0.453887422,0.688052708,244.8,26,10623,,,17.47815231,42,2403,12.59671483,23.62538443,,,,,,,,,,,,,15.90271282,11.01309092,22.22244719,,,,,,,0.079746206,641,8038,0.066639823,0.092852589,0.000753083,8,10623,,,1327.875,0.000945805,10,10573,,,1057.3,0.002269933,24,10573,,,440.5416667,3543,,,,,,,,,3453,0.52,,,,,,,,,0.52,0.51,,,,,,,,0.33,0.51,0.922628726,6809,7380,0.890125364,0.955132088,0.665108372,1565,2353,0.535946342,0.794270402,0.019963093,119,5961,,,0.142,330,,0.090765957,0.193234043,,,,,,,,,,0.398340249,0.105060131,0.691620367,0.176207068,0.064341687,0.288072449,4.19627998,111449,26559,3.408901492,4.983658469,0.215793919,511,2368,0.121197272,0.310390566,14.120305,15,10623,,,97.32724414,52,53428,72.68864116,127.6317319,,,,,,,,,,,,,102.583041,76.13911027,135.2429508,,,,5.4,,,,,1,,,,,0.095449501,430,4505,0.061819765,0.129079236,0.079507279,0.049286924,0.109727633,0.000887902,0,0.008260119,0.02108768,0,0.042483376,0.895912188,4734,5284,0.84803912,0.943785256,,,,,,,,,,,,,0.881859908,0.831875158,0.931844658,0.088,,5284,0.058022734,0.117977266,76.35824428,,,74.68328212,78.03320644,,,,,,,,,,,,,76.17796225,74.44889547,77.90702903,,,,428.3445727,164,28844,357.383485,499.3056605,,,,,,,,,,,,,437.0280432,362.6888692,511.3672172,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.092,,,0.077,0.107,0.134,,,0.113,0.155,0.082,,,0.069,0.096,0,0,8954,,,0.106,1140,,,,0.192312967,2126.019846,11055,,,,,,,,,,,,,,,,,,,,,,,,,,0.299,,,0.283,0.314,0.093689914,536,5721,0.077009063,0.110370765,0.046894282,114,2431,0.031404921,0.062383644,0.001513289,16,10573,,,660.8125,0.921276596,129.9,141,,,,,,,,3.14145154,,,,,,,,,3.188813413,3.325474575,,,,,,,,,3.348264317,0.013093156,,,,,4241.808,,,,,0.752317808,41303,54901,0.601628652,0.903006965,60108,,,54245.87234,65970.12766,,,,,,,,,,39458,26893.74468,52022.25532,59156,53612,64700,,,,,,0.353992849,594,1678,,,,,,,,0.288314368,,60108,,,9.433962264,6,636,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.00448126,12,74979,8.269749008,27.95660791,,,,,,,,,,,,,17.50342776,9.044276538,30.57496579,,,,55.45454546,,1100,,,61,,0.672256474,5452,8110,,,0.656,,,,,62.55332816,,,,,0.712630359,3075,4315,0.649931861,0.775328858,0.122874252,513,4175,0.075505596,0.170242908,0.827809965,3572,4315,0.783724135,0.871895795,10573,,,,,0.223966708,2368,10573,,,0.217062329,2295,10573,,,0.012957533,137,10573,,,0.009458054,100,10573,,,0.004161544,44,10573,,,0.000283742,3,10573,,,0.062233992,658,10573,,,0.904757401,9566,10573,,,0.001389854,14,10073,0,0.009092042,0.497115294,5256,10573,,,0.309007662,3307,10702,, -31,147,31147,NE,Richardson County,2024,1,6069.761451,142,20683,4347.41783,7792.105071,0,,,,2,,,,2,,,,2,,,,2,5471.622644,3801.877403,7141.367885,,,,,2,,0.144,,,0.12,0.172,3.257475375,,,2.58064956,3.982262278,4.047949381,,,3.28365679,4.860853624,0.076788831,44,573,0.054987736,0.098589926,0,,,,,,,,,,,,,0.07751938,0.054445799,0.10059296,,,,,,,0.182,,,0.145,0.223,0.43,,,0.365,0.494,7.6,0.097204617,0.108,,,0.283,,,0.234,0.336,0.379494346,2987,7871,,,0.178550669,,,0.146519063,0.21470776,0.142857143,1,7,0.008995928,0.386311364,180.4,14,7759,,,18.50582591,27,1459,12.19545588,26.9250051,,,,,,,,,,,,,15.18602885,9.276020946,23.4535899,,,,,,,0.092576719,540,5833,0.078278846,0.106874591,0.00051553,4,7759,,,1939.75,0.000389358,3,7705,,,2568.333333,0.001038287,8,7705,,,963.125,4057,,,,,,,,,4108,0.37,,,,,,,,,0.37,0.34,,,,,0.29,,,,0.34,0.913081805,5179,5672,0.893973206,0.932190405,0.574441687,926,1612,0.44567122,0.703212155,0.020962363,88,4198,,,0.162,266,,0.104808511,0.219191489,0.823529412,0.166653935,1,,,,,,,,,,0.12996633,0.058465122,0.201467538,4.118501978,105133,25527,3.616271733,4.620732224,0.185162847,307,1658,0.110598599,0.259727095,21.91003995,17,7759,,,73.75193917,29,39321,49.39283115,105.9200871,,,,,,,,,,,,,72.14206437,47.12559161,105.7048393,,,,7.6,,,,,0,,,,,0.066126856,245,3705,0.038465221,0.093788491,0.063858696,0.034455657,0.093261734,0.004048583,0,0.013758332,0.001079622,0,0.006264826,0.78739726,2874,3650,0.739218735,0.835575786,,,,,,,,,,,,,0.781454671,0.729862925,0.833046416,0.205,,3650,0.150165594,0.259834407,77.84622758,,,76.30348424,79.38897092,,,,,,,,,,,,,78.21268199,76.66888491,79.75647907,,,,403.4690447,142,20683,330.5311265,476.4069629,,,,,,,,,,,,,381.3855608,309.2014903,453.5696312,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.102,,,0.087,0.119,0.142,,,0.122,0.165,0.094,,,0.08,0.109,,,,,,0.108,850,,,,0.097204617,812.9222155,8363,,,,,,,,,,,,,,,,,,,,,,,,,,0.307,,,0.291,0.321,0.10948027,455,4156,0.091607929,0.12735261,0.052065648,92,1767,0.035384797,0.068746499,0.001427644,11,7705,,,700.4545455,0.916847826,84.35,92,,,,,,,,3.018495482,,,,,,,,,2.9622049,3.482045751,,,,,,,,,3.474907673,0.048018963,,,,,2504.868,,,,,0.644574091,34029,52793,0.567266892,0.721881291,56121,,,48241.68085,64000.31915,38088,19405.44681,56770.55319,,,,,,,,,,51984,44250.04255,59717.95745,,,,,,0.370277078,441,1191,,,,,,,,0.308797064,,56121,,,7.299270073,3,411,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,28.75,,800,,,23,,0.667637541,4126,6180,,,0.626,,,,,16.6882512,,,,,0.735991079,2640,3587,0.701254454,0.770727704,0.078978274,269,3406,0.043851315,0.114105233,0.806244773,2892,3587,0.754177142,0.858312403,7705,,,,,0.218299805,1682,7705,,,0.24568462,1893,7705,,,0.004802077,37,7705,,,0.034393251,265,7705,,,0.004802077,37,7705,,,0.000259572,2,7705,,,0.024918884,192,7705,,,0.908500973,7000,7705,,,0.002823719,21,7437,0,0.011585658,0.497598962,3834,7705,,,0.47490789,3738,7871,, -31,149,31149,NE,Rock County,2024,0,,,,,,2,,,,2,,,,2,,,,2,,,,2,,,,2,,,,2,,0.121,,,0.101,0.144,2.974795114,,,2.417023887,3.678145633,4.064548325,,,3.340452964,4.904911172,,,,,,0,,,,,,,,,,,,,,,,,,,,,,0.154,,,0.12,0.193,0.385,,,0.323,0.453,8.1,0.08983609,0.088,,,0.252,,,0.209,0.301,0.641838352,810,1262,,,0.177276547,,,0.147365878,0.210187724,0,0,1,0,0.662081041,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.08,72,900,0.066893617,0.093106383,0.000791139,1,1264,,,1264,0,0,1245,,,-1245,0.004819277,6,1245,,,207.5,,,,,,,,,,,0.57,,,,,,,,,0.57,0.03,,,,,,,,,0.03,0.951351351,880,925,0.907461892,0.995240811,0.754448399,212,281,0.58674783,0.922148968,0.01650165,15,909,,,0.19,51,,0.11493617,0.26506383,,,,,,,,,,,,,0.145038168,0.037797402,0.252278934,4.0609319,113300,27900,2.945565476,5.176298324,0.152249135,44,289,0.022639134,0.281859136,0,0,1264,,,,,,,,,,,,,,,,,,,,,,,,,,4.7,,,,,0,,,,,0.030894309,19,615,0.000894704,0.060893914,0.029459902,0,0.091382345,0,0,0.038747622,0.01300813,0,0.033148825,0.773846154,503,650,0.700715242,0.846977066,,,,,,,,,,,,,0.785824345,0.702598384,0.869050307,0.1,,650,0.041024286,0.158975715,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.092,,,0.078,0.107,0.133,,,0.116,0.154,0.084,,,0.072,0.096,,,,,,0.088,120,,,,0.08983609,137.0898727,1526,,,,,,,,,,,,,,,,,,,,,,,,,,0.288,,,0.27,0.306,0.09516129,59,620,0.07728895,0.113033631,0.050505051,15,297,0.030249731,0.07076037,0.004819277,6,1245,,,207.5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1563.043,,,,,1.084738113,48068,44313,0.788830288,1.380645938,55648,,,47411.23404,63884.76596,,,,,,,,,,,,,58092,50532,65652,,,,,,0.450413223,109,242,,,,,,,,0.311421794,,55648,,,,,100,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,100,,,0,,0.750892857,841,1120,,,0.486,,,,,5.145866209,,,,,0.772963605,446,577,0.715931046,0.829996163,0.033530572,17,507,0,0.107559936,0.795493934,459,577,0.731213933,0.859773936,1245,,,,,0.220080321,274,1245,,,0.291566265,363,1245,,,0.001606426,2,1245,,,0.008835341,11,1245,,,0.004016064,5,1245,,,0,0,1245,,,0.018473896,23,1245,,,0.964658635,1201,1245,,,0.007340946,9,1226,0,0.046460961,0.506024096,630,1245,,,1,1262,1262,, -31,151,31151,NE,Saline County,2024,1,6880.809937,146,39596,5233.012952,8528.606922,0,,,,2,,,,2,,,,2,6499.351063,3969.972478,10037.72059,1,7059.829298,4760.515725,9359.14287,,,,,2,,0.166,,,0.14,0.193,3.297620298,,,2.6154892,4.039175524,4.061628163,,,3.281720844,4.903617407,0.068731118,91,1324,0.0551033,0.082358936,0,,,,,,,,,,0.067771084,0.048652509,0.08688966,0.057529611,0.038756255,0.076302966,,,,,,,0.183,,,0.148,0.221,0.44,,,0.376,0.502,7.7,0.113821102,0.095,,,0.294,,,0.247,0.341,0.766442765,10954,14292,,,0.188723723,,,0.154623424,0.22759945,0.3125,5,16,0.177519792,0.449075671,274.8,39,14192,,,19.07090465,78,4090,15.07475873,23.80135209,,,,,,,,,,49.60141718,37.46837749,64.41156599,7.601672368,4.643298968,11.74016644,,,,,,,0.125917308,1407,11174,0.108044968,0.143789649,0.000422773,6,14192,,,2365.333333,0.000566733,8,14116,,,1764.5,0.001062624,15,14116,,,941.0666667,1115,,,,,,,,,1179,0.53,,,,,,,,0.22,0.54,0.31,,,,,,,,0.12,0.31,0.805257511,7505,9320,0.774656498,0.835858523,0.559719683,1837,3282,0.49482068,0.624618686,0.025803781,187,7247,,,0.106,392,,0.063106383,0.148893617,,,,,,,,,,0.314724355,0.21667233,0.412776379,0.069587629,0.033746745,0.105428513,3.725544366,125413,33663,3.252528833,4.1985599,0.169652552,625,3684,0.074182347,0.265122756,11.27395716,16,14192,,,74.44447566,53,71194,55.76402075,97.37520708,,,,,,,,,,53.28218244,25.55087754,97.98783057,84.6495303,60.74596442,114.8366462,,,,6.9,,,,,1,,,,,0.133270321,705,5290,0.09328486,0.173255783,0.103304216,0.062997521,0.143610911,0.034026465,0.007343227,0.060709703,0.000756144,0,0.004470698,0.820831547,5745,6999,0.781379518,0.860283577,,,,,,,,,,0.958501441,0.721368117,1,0.808428295,0.769377882,0.847478708,0.294,,6999,0.235265496,0.352734504,78.64923671,,,77.11600528,80.18246814,,,,,,,,,,,,,78.4198993,76.5222725,80.31752611,,,,315.3907151,146,39596,262.9654481,367.815982,,,,,,,,,,249.0924308,147.6279612,393.6734309,316.6198683,254.1023254,379.1374113,,,,70.0729927,12,17125,36.20773786,122.4034163,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.108,,,0.092,0.124,0.137,,,0.117,0.156,0.101,,,0.085,0.117,,,,,,0.095,1360,,,,0.113821102,1616.259641,14200,,,,,,,,,,,,,,,,,,,,,,,,,,0.313,,,0.3,0.324,0.148089383,1120,7563,0.125451085,0.17072768,0.081395349,308,3784,0.056374072,0.106416625,0.001204307,17,14116,,,830.3529412,0.849308756,184.3,217,,,,,,,,3.070204473,,,,,,,,2.806227671,3.317941857,2.994653739,,,,,,,,2.630091829,3.392303935,0.149444061,,,,,2230.534925,,,,,0.807820032,45246,56010,0.710460739,0.905179326,72948,,,67205.02128,78690.97872,,,,,,,,,,65787,48305.46809,83268.53192,72220,64407.40426,80032.59575,,,,,,0.474775611,1534,3231,,,,,,,,0.237566486,,72948,,,5.313496281,5,941,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,28.0541445,28,99807,18.64177528,40.54604982,,,,,,,,,,,,,27.66171182,16.6541575,43.19718953,,,,29.41176471,,1700,,,50,,0.610905241,5770,9445,,,0.671,,,,,45.17589876,,,,,0.737590033,3789,5137,0.693738643,0.781441423,0.064619067,324,5014,0.035535983,0.09370215,0.824995133,4238,5137,0.781688008,0.868302259,14116,,,,,0.267214508,3772,14116,,,0.167044489,2358,14116,,,0.009776141,138,14116,,,0.015585152,220,14116,,,0.029399263,415,14116,,,0.004958912,70,14116,,,0.280249362,3956,14116,,,0.665840181,9399,14116,,,0.072936228,971,13313,0.044046997,0.101825459,0.483068858,6819,14116,,,0.513084243,7333,14292,, -31,153,31153,NE,Sarpy County,2024,1,4990.35296,1568,542268,4636.445034,5344.260887,0,,,,2,2330.384428,1117.509914,4285.659934,1,7800.065463,5644.946051,10506.63699,,3495.10235,2640.162754,4538.681119,,5091.817654,4686.784252,5496.851057,,,,,2,,0.104,,,0.088,0.124,2.686775935,,,2.195288952,3.258404026,3.985648118,,,3.433142616,4.603023132,0.071750454,1226,17087,0.067880838,0.07562007,0,,,,0.083168317,0.05908401,0.107252623,0.119850187,0.097357701,0.142342674,0.064343164,0.054177505,0.074508822,0.06940894,0.065024673,0.073793206,,,,0.080291971,0.05753959,0.103044351,0.123,,,0.097,0.154,0.369,,,0.332,0.409,8.5,0.068965002,0.077,,,0.217,,,0.185,0.254,0.936396928,178481,190604,,,0.219071544,,,0.193047255,0.246670929,0.35483871,22,62,0.290044598,0.41907097,406.9,787,193418,,,9.535874698,414,43415,8.617295859,10.45445354,,,,,,,17.14677641,11.09648961,25.31202448,19.02560455,15.42062631,22.6305828,7.53616142,6.598209832,8.474113008,,,,11.56069364,7.551828909,16.93909475,0.055808603,9508,170368,0.048659666,0.062957539,0.000496334,96,193418,,,2014.770833,0.000722452,142,196553,,,1384.176056,0.001302448,256,196553,,,767.7851563,2484,,,,,,1093,1789,1420,2517,0.5,,,,,,0.48,0.44,0.39,0.5,0.5,,,,,,0.43,0.34,0.35,0.52,0.95704954,117942,123235,0.951948292,0.962150787,0.812392271,44775,55115,0.782790014,0.841994528,0.0226941,2270,100026,,,0.067,3386,,0.046744681,0.087255319,,,,0.015440509,0,0.080329636,0.215371255,0.125135759,0.305606751,0.117110896,0.081439322,0.152782471,0.0358834,0.025729518,0.046037282,3.673898261,167482,45587,3.50692471,3.840871811,0.162555419,8323,51201,0.140625163,0.184485675,6.359284038,123,193418,,,45.65048195,427,935368,41.32048589,49.98047801,,,,,,,48.07563901,28.49267055,75.98023629,30.60298432,20.49529889,43.95099031,49.56268611,44.51927986,54.60609236,,,,7.8,,,,,0,,,,,0.096136701,6470,67300,0.087379544,0.104893859,0.074835526,0.066712001,0.082959051,0.016939079,0.012763464,0.021114693,0.008618128,0.006370328,0.010865927,0.811505627,83650,103080,0.79964978,0.823361473,,,,0.753789859,0.678190898,0.82938882,0.754349817,0.686697464,0.822002169,0.74069968,0.690460237,0.790939122,0.777153087,0.763514717,0.790791457,0.206,,103080,0.192003169,0.219996831,80.24309911,,,79.84075848,80.64543974,,,,86.11282448,82.17242629,90.05322266,78.85228136,76.11111781,81.5934449,84.12406937,81.80160805,86.44653069,79.98338113,79.54959508,80.41716718,,,,264.8838992,1568,542268,251.6540964,278.1137021,,,,157.4083933,98.64700202,238.3181991,319.0654327,247.2713279,405.201821,178.1455956,135.6126813,229.7948389,271.6448577,257.1258717,286.1638437,,,,40.64086123,90,221452,32.68005172,49.95451827,,,,,,,,,,,,,42.23412395,32.86066935,53.4499869,,,,3.945917716,68,17233,3.064159505,5.002390945,,,,,,,,,,,,,3.939692401,2.942350724,5.166382434,,,,,,,0.078,,,0.067,0.092,0.124,,,0.108,0.143,0.081,,,0.07,0.093,24.9,39,156905,,,0.077,14470,,,,0.068965002,10954.4009,158840,,,8.07768627,46,569470,5.913881576,10.7745015,,,,,,,,,,,,,9.048715193,6.493514249,12.27560391,,,,0.317,,,0.302,0.332,0.068876471,8135,118110,0.059344556,0.078408386,0.028404939,1555,54744,0.020064514,0.036745365,0.000732627,144,196553,,,1364.951389,0.941716768,2004.915,2129,,,0.042102392,463,10997,0.024217898,0.059986886,3.182251468,,,,,,3.295941468,2.827377359,2.736708692,3.291877597,3.206275322,,,,,,3.401084836,2.603722608,2.631964121,3.343393468,0.158080633,,,,,3977.80475,,,,,0.779820461,54380,69734,0.748577813,0.811063108,98619,,,93870.91489,103367.0851,78077,56959.04255,99194.95745,83472,50337.87234,116606.1277,78047,70790.82979,85303.17021,75960,65429.61702,86490.38298,100595,97846.23404,103343.766,,,,,,0.291780659,9812,33628,,,39.85996706,,,,,0.256066275,,98619,,,8.124525437,107,13170,,,1.937859812,25,1290083,1.254080695,2.86066336,,,,,,,,,,,,,1.733766647,1.027539995,2.740098773,,,,11.90454243,111,935368,9.669962855,14.139122,11.86698711,,,,,,,,,,,,,12.66966913,10.23838232,15.50446632,,,,7.162956184,67,935368,5.551192656,9.096701152,,,,,,,,,,,,,8.015528751,6.116692866,10.31757437,,,,7.983982426,103,1290083,6.442079504,9.525885348,,,,,,,,,,13.49002928,7.85843918,21.59884368,7.80194991,6.195874405,9.69711137,,,,10.9787234,,23500,,,258,,0.740445786,95673,129210,,,0.779,,,,,81.83500546,,,,,0.699094768,49735,71142,0.687867636,0.710321901,0.089338204,6261,70082,0.079253488,0.09942292,0.941089652,66951,71142,0.935873604,0.9463057,196553,,,,,0.260830412,51267,196553,,,0.129863192,25525,196553,,,0.042075166,8270,196553,,,0.008694856,1709,196553,,,0.028038239,5511,196553,,,0.00142964,281,196553,,,0.112839794,22179,196553,,,0.784032805,154104,196553,,,0.010472672,1868,178369,0.007749849,0.013195495,0.494650298,97225,196553,,,0.051567648,9829,190604,, -31,155,31155,NE,Saunders County,2024,1,6037.648657,285,61096,4848.06266,7227.234654,0,,,,2,,,,2,,,,2,,,,2,6318.540476,5046.256406,7590.824546,,,,,2,,0.111,,,0.091,0.133,2.600288477,,,2.03592036,3.218099062,4.068768542,,,3.339818382,4.827923953,0.066666667,117,1755,0.054996145,0.078337188,0,,,,,,,,,,,,,0.064419025,0.052612583,0.076225466,,,,,,,0.147,,,0.113,0.184,0.351,,,0.296,0.407,8.4,0.061871177,0.084,,,0.223,,,0.183,0.266,0.536044528,11942,22278,,,0.219632874,,,0.184609396,0.256705582,0.086956522,2,23,0.016612403,0.209342713,162.4,37,22787,,,7.063112326,31,4389,4.799042146,10.02552415,,,,,,,,,,,,,7.097405776,4.753244038,10.1930586,,,,,,,0.064742379,1200,18535,0.055210464,0.074274294,0.000438847,10,22787,,,2278.7,0.000302794,7,23118,,,3302.571429,0.000346051,8,23118,,,2889.75,1726,,,,,,,,,1742,0.53,,,,,,,,,0.53,0.41,,,,,,,,,0.41,0.952660407,14610,15336,0.943346734,0.96197408,0.739448834,3837,5189,0.66893485,0.809962818,0.02075618,241,11611,,,0.076,426,,0.047404255,0.104595745,,,,,,,,,,0.051813472,0,0.188711756,0.062980964,0.02850059,0.097461338,3.605511457,144444,40062,3.131435268,4.079587646,0.106316563,579,5446,0.065796809,0.146836316,16.2373283,37,22787,,,68.10735191,74,108652,53.47892008,85.50254344,,,,,,,,,,,,,71.80143991,56.3795737,90.14013264,,,,7.4,,,,,0,,,,,0.080796253,690,8540,0.063815473,0.097777033,0.068047337,0.050526129,0.085568546,0.009367682,0.002967356,0.015768007,0.008196721,0.001467515,0.014925927,0.802329565,9368,11676,0.780011039,0.824648091,,,,,,,,,,,,,0.756355598,0.709468946,0.803242249,0.438,,11676,0.391638967,0.484361033,78.51820935,,,77.44048942,79.59592928,,,,,,,,,,,,,78.29251825,77.17045894,79.41457756,,,,327.4568804,285,61096,287.2182893,367.6954716,,,,,,,,,,,,,334.8189361,293.0292865,376.6085857,,,,47.06083683,11,23374,23.49260019,84.20483663,,,,,,,,,,,,,51.19612771,25.5569225,91.6040143,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.085,,,0.071,0.1,0.128,,,0.109,0.149,0.076,,,0.064,0.089,0,0,18755,,,0.084,1840,,,,0.061871177,1285.683064,20780,,,,,,,,,,,,,,,,,,,,,,,,,,0.269,,,0.252,0.285,0.075183279,964,12822,0.062076896,0.088289662,0.042873891,256,5971,0.028576018,0.057171763,0.000432563,10,23118,,,2311.8,0.951712329,208.425,219,,,,,,,,3.227895243,,,,,,,,2.927060693,3.251718242,3.398173104,,,,,,,,2.660541353,3.447863451,0.044732925,,,,,3265.09368,,,,,0.777653683,50133,64467,0.715381362,0.839926004,86179,,,74928.95745,97429.04255,66250,15449.65957,117050.3404,93583,92476.10638,94689.89362,58409,10075.04255,106742.9575,95701,18884.48936,172517.5106,84405,79100.48936,89709.51064,,,,,,0.23619303,881,3730,,,,,,,,0.201093074,,86179,,,7.309941521,10,1368,,,,,,,,,,,,,,,,,,,,,,,,,,16.18394217,16,108652,9.058029579,26.69295144,14.72591393,,,,,,,,,,,,,17.17081657,9.610375687,28.32065067,,,,,,,,,,,,,,,,,,,,,,,,,,,21.89693841,33,150706,15.07284486,30.75144272,,,,,,,,,,,,,23.05097059,15.86722751,32.37213296,,,,2.4,,2500,,,6,,0.790012407,12735,16120,,,0.631,,,,,5.607159104,,,,,0.805779952,7082,8789,0.787212679,0.824347225,0.085926614,740,8612,0.063321498,0.10853173,0.89452725,7862,8789,0.87157141,0.91748309,23118,,,,,0.24716671,5714,23118,,,0.18505061,4278,23118,,,0.005709837,132,23118,,,0.005363786,124,23118,,,0.004541915,105,23118,,,8.65127E-05,2,23118,,,0.025521239,590,23118,,,0.945972835,21869,23118,,,0.004048969,85,20993,0,0.009017349,0.486114716,11238,23118,,,0.785348775,17496,22278,, -31,157,31157,NE,Scotts Bluff County,2024,1,10508.04436,619,97465,9217.554704,11798.53401,0,,,,2,,,,2,,,,2,9290.630899,7089.730136,11958.88359,,10300.22612,8744.643399,11855.80883,,,,,2,,0.144,,,0.123,0.168,3.48158714,,,2.830584995,4.214358308,4.601346967,,,3.889506079,5.414380479,0.079344684,247,3113,0.069850143,0.088839224,0,,,,,,,,,,0.089374379,0.071753897,0.106994862,0.071241488,0.059702413,0.082780563,,,,,,,0.165,,,0.134,0.199,0.401,,,0.351,0.452,8.3,0.019702541,0.109,,,0.278,,,0.238,0.323,0.807366146,29133,36084,,,0.170874923,,,0.142150259,0.201908064,0.25,7,28,0.151262701,0.356398836,534.3,191,35745,,,27.67461363,231,8347,24.10573608,31.24349119,,,,,,,,,,39.00586814,31.81391585,46.19782043,20.10350319,16.18277145,24.02423492,,,,,,,0.102037913,2869,28117,0.087740041,0.116335785,0.000699399,25,35745,,,1429.8,0.000617926,22,35603,,,1618.318182,0.003089627,110,35603,,,323.6636364,2868,,,,,,,,2053,2963,0.4,,,,,,,,0.32,0.41,0.44,,,,,0.31,0.56,,0.39,0.44,0.891285484,21570,24201,0.877453356,0.905117612,0.665847378,5689,8544,0.605330515,0.726364241,0.026362428,476,18056,,,0.231,1951,,0.160702128,0.301297872,0.173228347,0,0.523153746,,,,,,,0.258190562,0.175002256,0.341378868,0.099130795,0.05810087,0.140160719,4.353268322,114282,26252,3.833551649,4.872984996,0.278173392,2461,8847,0.207179989,0.349166796,14.26772975,51,35745,,,93.84740858,168,179014,79.65605844,108.0387587,,,,,,,,,,68.37762684,46.13409769,97.61331402,101.0362086,83.60055396,118.4718632,,,,4.8,,,,,0,,,,,0.146707608,2150,14655,0.122338535,0.171076682,0.131469979,0.105336833,0.157603125,0.011941317,0.005699435,0.018183199,0.024223814,0.009981424,0.038466205,0.807828342,13704,16964,0.779180355,0.83647633,,,,,,,,,,0.835555556,0.762362288,0.908748823,0.794119953,0.763586697,0.824653209,0.091,,16964,0.072274275,0.109725725,74.6291907,,,73.65107811,75.60730328,,,,,,,,,,75.76053302,73.63582806,77.88523798,74.65300906,73.50611673,75.79990139,,,,486.6535961,619,97465,445.9045798,527.4026124,,,,,,,,,,459.2076141,371.9596417,560.771093,482.4283416,435.7722512,529.084432,,,,61.4077732,24,39083,39.34511899,91.36989892,,,,,,,,,,,,,62.23605246,34.02502901,104.4215209,,,,8.78293601,28,3188,5.836197194,12.69378794,,,,,,,,,,,,,,,,,,,,,,0.102,,,0.087,0.117,0.138,,,0.119,0.158,0.1,,,0.087,0.116,20.3,6,29529,,,0.109,3940,,,,0.019702541,728.4029419,36970,,,,,,,,,,,,,,,,,,,,,,,,,,0.317,,,0.303,0.329,0.122646833,2391,19495,0.104774492,0.140519173,0.057448451,521,9069,0.0407676,0.074129302,0.001572901,56,35603,,,635.7678571,0.868632568,416.075,479,,,,,,,,3.038603628,,,,,,,,2.758708131,3.274874184,3.201795957,,,,,,,,2.877221415,3.420177619,0.063234196,,,,,3838.241,,,,,0.817095991,41046,50234,0.724030282,0.9101617,56853,,,51057.59575,62648.40426,44722,1938,87506,,,,,,,64678,59316.29787,70039.70213,58432,53222.80851,63641.19149,,,,,,0.516826923,3440,6656,,,,,,,,0.304821206,,56853,,,9.837467921,23,2338,,,,,,,,,,,,,,,,,,,,,,,,,,19.78413795,37,179014,13.70109066,27.64634977,20.66877451,,,,,,,,,,,,,19.91769154,12.88967978,29.40244184,,,,11.17231055,20,179014,6.82433753,17.25472751,,,,,,,,,,,,,12.53162277,7.162905186,20.35057027,,,,26.22200503,66,251697,20.28009679,33.36081973,,,,,,,,,,31.19510073,18.78148844,48.71501399,25.48970715,18.66166925,33.99969729,,,,58.5,,4000,,,234,,0.588846593,15469,26270,,,0.646,,,,,72.50603586,,,,,0.678484027,10258,15119,0.65246987,0.704498184,0.124268905,1806,14533,0.098234374,0.150303437,0.823334877,12448,15119,0.800076331,0.846593422,35603,,,,,0.242591916,8637,35603,,,0.206106227,7338,35603,,,0.008004943,285,35603,,,0.041429093,1475,35603,,,0.009437407,336,35603,,,0.001263938,45,35603,,,0.255315563,9090,35603,,,0.702468893,25010,35603,,,0.014837585,502,33833,0.007633754,0.022041416,0.510574952,18178,35603,,,0.30428999,10980,36084,, -31,159,31159,NE,Seward County,2024,1,5806.638863,186,48112,4449.918418,7163.359309,0,,,,2,,,,2,,,,2,,,,2,5745.01913,4344.256536,7145.781724,,,,,2,,0.117,,,0.097,0.14,2.899311655,,,2.263281162,3.566250112,4.350248345,,,3.585895539,5.165403951,0.059654631,76,1274,0.046648829,0.072660433,0,,,,,,,,,,,,,0.060681629,0.04719019,0.074173069,,,,,,,0.146,,,0.116,0.185,0.362,,,0.308,0.419,8.3,0.073789734,0.086,,,0.214,,,0.176,0.258,0.626838549,11038,17609,,,0.209601319,,,0.17407976,0.246693735,0.24137931,7,29,0.144907761,0.346292388,176.1,31,17603,,,5.685279188,28,4925,3.777826732,8.216811359,,,,,,,,,,,,,5.48245614,3.547956546,8.093186776,,,,,,,0.062107623,831,13380,0.052575708,0.071639538,0.000624894,11,17603,,,1600.272727,0.000452182,8,17692,,,2211.5,0.001695682,30,17692,,,589.7333333,2328,,,,,,,,,2281,0.45,,,,,,,,,0.46,0.21,,,,,,,,,0.21,0.94170646,10452,11099,0.930708094,0.952704826,0.736327609,2787,3785,0.659609492,0.813045726,0.02218736,198,8924,,,0.073,299,,0.044404255,0.101595745,,,,,,,,,,0.15037594,0,0.343018436,0.052210975,0.027532155,0.076889795,3.487238682,135950,38985,3.04644955,3.928027813,0.162818955,670,4115,0.098387628,0.227250282,15.33829461,27,17603,,,70.47786302,61,86552,53.90998078,90.53176347,,,,,,,,,,,,,69.71368467,52.80046398,90.32216455,,,,6.8,,,,,1,,,,,0.105691057,715,6765,0.07738677,0.133995344,0.085756677,0.059772083,0.11174127,0.006504065,0.000660065,0.012348065,0.016999261,0.005587783,0.028410739,0.781341424,7211,9229,0.753801804,0.808881044,,,,,,,,,,,,,0.763246241,0.730603123,0.79588936,0.34,,9229,0.297605744,0.382394256,79.58139378,,,78.29811088,80.86467668,,,,,,,,,,,,,79.67072585,78.36038743,80.98106428,,,,298.7121429,186,48112,253.7922779,343.632008,,,,,,,,,,,,,294.2856977,248.7763305,339.795065,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.087,,,0.075,0.102,0.129,,,0.11,0.149,0.08,,,0.069,0.093,,,,,,0.086,1510,,,,0.073789734,1235.978045,16750,,,,,,,,,,,,,,,,,,,,,,,,,,0.28,,,0.261,0.297,0.072391844,671,9269,0.059285461,0.085498227,0.040816327,176,4312,0.027709944,0.05392271,0.000452182,8,17692,,,2211.5,0.964336493,203.475,211,,,,,,,,3.331263426,,,,,,,,,3.358046881,3.708863459,,,,,,,,,3.731050001,0.023977614,,,,,4147.352333,,,,,0.754080645,46753,62000,0.700382143,0.807779148,77778,,,70122.68085,85433.31915,,,,,,,,,,77143,25391.85106,128894.1489,79779,75356.19149,84201.80851,,,,,,0.233558479,657,2813,,,70.43742483,,,,,0.222813649,,77778,,,12.04819277,12,996,,,,,,,,,,,,,,,,,,,,,,,,,,13.80524051,12,86552,6.891526324,24.70138868,13.86449764,,,,,,,,,,,,,12.04917439,5.509649792,22.87308624,,,,,,,,,,,,,,,,,,,,,,,,,,,11.57541382,14,120946,6.32838645,19.4215775,,,,,,,,,,,,,11.36532527,6.051557042,19.43505234,,,,16.84210526,,1900,,,32,,0.698129057,9142,13095,,,0.757,,,,,32.64902372,,,,,0.727645985,4785,6576,0.701222453,0.754069518,0.077447336,500,6456,0.052734223,0.102160448,0.876520681,5764,6576,0.854200217,0.898841145,17692,,,,,0.234173638,4143,17692,,,0.181494461,3211,17692,,,0.007743613,137,17692,,,0.004747909,84,17692,,,0.005030522,89,17692,,,0.000169568,3,17692,,,0.029052679,514,17692,,,0.941046801,16649,17692,,,0.001319815,22,16669,0,0.005235552,0.482873615,8543,17692,,,0.575614743,10136,17609,, -31,161,31161,NE,Sheridan County,2024,1,8325.842095,78,13590,5438.71648,12199.28773,0,,,,2,,,,2,,,,2,,,,2,7176.832465,4253.445762,11342.48941,1,,,,2,,0.154,,,0.131,0.18,3.37146268,,,2.679438313,4.146802762,4.196324747,,,3.387004619,5.107905472,0.050632911,20,395,0.029011151,0.072254672,1,,,,,,,,,,,,,0.043046358,0.020155279,0.065937436,,,,,,,0.193,,,0.156,0.233,0.441,,,0.37,0.516,7.2,0.103416454,0.121,,,0.286,,,0.24,0.339,0.54378779,2788,5127,,,0.178442836,,,0.144853414,0.215624642,0.833333333,10,12,0.773378052,0.877336137,235.5,12,5095,,,22.35772358,22,984,14.01146633,33.84986218,,,,,,,,,,,,,18.04511278,9.324173096,31.52118052,,,,,,,0.125853126,461,3663,0.106789296,0.144916956,0.000392542,2,5095,,,2547.5,0.00040032,2,4996,,,2498,0.003602882,18,4996,,,277.5555556,1319,,,,,,,,,1200,0.3,,,,,0.22,,,,0.3,0.22,,,,,0.08,,,,0.23,0.897079277,3225,3595,0.858362228,0.935796325,0.682682683,682,999,0.582537811,0.782827555,0.020284698,57,2810,,,0.237,252,,0.145255319,0.328744681,0.192307692,0.018245214,0.366370171,,,,,,,0.318965517,0.005012996,0.632918038,0.086253369,0.027510931,0.144995808,3.9387944,102129,25929,3.285709373,4.591879428,0.163963964,182,1110,0.090463906,0.237464022,27.47791953,14,5095,,,103.9661148,27,25970,68.51432473,151.2652385,,,,,,,,,,,,,119.1043354,77.07804596,175.8214945,,,,4,,,,,0,,,,,0.106060606,245,2310,0.076514723,0.135606489,0.082608696,0.052061175,0.113156216,0.023376623,0.003658214,0.043095033,0.021645022,0.005641371,0.037648673,0.690526316,1640,2375,0.641438636,0.739613995,,,,,,,,,,,,,0.660714286,0.59930545,0.722123122,0.277,,2375,0.216094029,0.337905971,77.39521621,,,74.91999675,79.87043566,,,,,,,,,,,,,78.37759174,75.74759893,81.00758456,,,,380.3387071,78,13590,290.2385019,489.5713081,,,,,,,,,,,,,339.6353776,247.732375,454.458857,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.106,,,0.091,0.121,0.145,,,0.126,0.166,0.097,,,0.083,0.113,0,0,4297,,,0.121,620,,,,0.103416454,565.584588,5469,,,,,,,,,,,,,,,,,,,,,,,,,,0.291,,,0.277,0.305,0.146491904,380,2594,0.121470628,0.171513181,0.078152753,88,1126,0.054322966,0.10198254,0.001401121,7,4996,,,713.7142857,,,,,,,,,,,3.235043884,,,,,,,,,3.346375986,3.174107885,,,,,,,,,3.292135451,0.042977035,,,,,3907.616,,,,,0.689388616,34335,49805,0.583842002,0.794935229,55388,,,47399.06383,63376.93617,54464,26382.97872,82545.02128,49643,7920.617021,91365.38298,,,,49009,45236.74468,52781.25532,54342,48539.44681,60144.55319,,,,,,0.701044386,537,766,,,,,,,,0.312883657,,55388,,,8.849557522,3,339,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,30.19986822,11,36424,15.07566541,54.03590631,,,,,,,,,,,,,,,,,,,20,,500,,,10,,0.664676617,2672,4020,,,0.517,,,,,7.210841206,,,,,0.695859115,1462,2101,0.662689502,0.729028727,0.107543323,211,1962,0.057124908,0.157961738,0.822465493,1728,2101,0.780318362,0.864612623,4996,,,,,0.216373099,1081,4996,,,0.267814251,1338,4996,,,0.005804644,29,4996,,,0.112489992,562,4996,,,0.009007206,45,4996,,,0.002201761,11,4996,,,0.067253803,336,4996,,,0.793835068,3966,4996,,,0.001050862,5,4758,0,0.015652616,0.491393115,2455,4996,,,1,5127,5127,, -31,163,31163,NE,Sherman County,2024,1,6883.973173,41,7805,3665.425789,11771.80378,1,,,,2,,,,2,,,,2,,,,2,7122.972494,3680.543829,12442.39948,1,,,,2,,0.13,,,0.108,0.155,3.114699625,,,2.392441238,3.924383377,4.330445672,,,3.415940302,5.295859968,0.068669528,16,233,0.036197303,0.101141753,1,,,,,,,,,,,,,0.075829384,0.040109529,0.111549239,,,,,,,0.166,,,0.13,0.205,0.411,,,0.335,0.491,8.1,0.049126536,0.105,,,0.253,,,0.206,0.305,0.506590064,1499,2959,,,0.188082589,,,0.151712774,0.228546935,0,0,2,0,0.510593623,269.9,8,2964,,,17.13395639,11,642,8.553209295,30.65738086,,,,,,,,,,,,,,,,,,,,,,0.081509082,175,2147,0.0684027,0.094615465,,0,2964,,,,0,0,2980,,,-2980,0.000335571,1,2980,,,2980,1089,,,,,,,,,1089,0.48,,,,,,,,,0.48,0.46,,,,,,,,,0.46,0.90871177,1961,2158,0.878418394,0.939005146,0.688073395,375,545,0.564686876,0.811459913,0.022754491,38,1670,,,0.197,128,,0.12193617,0.27206383,,,,,,,,,,,,,0.15248227,0.080024468,0.224940071,3.83713977,106519,27760,2.836221989,4.83805755,0.223662885,138,617,0.124913148,0.322412622,20.24291498,6,2964,,,,,,,,,,,,,,,,,,,,,,,,,,5.5,,,,,0,,,,,0.084805654,120,1415,0.045444428,0.124166879,0.073782235,0.033098728,0.114465742,0,0,0.016840839,0.017667845,0,0.039188283,0.819591262,1163,1419,0.789299673,0.84988285,,,,,,,,,,,,,0.810526316,0.709611255,0.911441376,0.289,,1419,0.221630785,0.356369215,79.23446243,,,76.14629307,82.32263179,,,,,,,,,,,,,79.10195099,75.89099135,82.31291064,,,,331.1018144,41,7805,223.3930038,472.6684279,,,,,,,,,,,,,335.1700653,222.7180743,484.4140646,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.094,,,0.08,0.111,0.138,,,0.118,0.16,0.085,,,0.072,0.099,0,0,2530,,,0.105,310,,,,0.049126536,154.8468409,3152,,,,,,,,,,,,,,,,,,,,,,,,,,0.296,,,0.279,0.312,0.094302554,144,1527,0.077621703,0.110983405,0.049382716,32,648,0.031510376,0.067255057,0.000335571,1,2980,,,2980,,,,,,,,,,,2.842475108,,,,,,,,,2.772581812,3.240176851,,,,,,,,,3.185951091,0.068137848,,,,,8993.214,,,,,0.711430025,34949,49125,0.631503663,0.791356388,58456,,,51432.17021,65479.82979,,,,,,,,,,,,,60361,55535.46809,65186.53192,,,,,,0.472222222,221,468,,,,,,,,0.296462296,,58456,,,,,152,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,30,,300,,,9,,0.710460251,1698,2390,,,0.543,,,,,0.878321185,,,,,0.750575595,978,1303,0.714089442,0.787061747,0.087993421,107,1216,0.044648327,0.131338516,0.757482732,987,1303,0.700903201,0.814062263,2980,,,,,0.22147651,660,2980,,,0.27147651,809,2980,,,0.00738255,22,2980,,,0.006040269,18,2980,,,0.00704698,21,2980,,,0,0,2980,,,0.030201342,90,2980,,,0.941275168,2805,2980,,,0.004270463,12,2810,0,0.021732569,0.491275168,1464,2980,,,1,2959,2959,, -31,165,31165,NE,Sioux County,2024,0,,,,,,2,,,,2,,,,2,,,,2,,,,2,,,,2,,,,2,,0.142,,,0.118,0.168,3.27944903,,,2.544299751,4.128818449,4.343867392,,,3.415788873,5.378911229,,,,,,0,,,,,,,,,,,,,,,,,,,,,,0.177,,,0.138,0.216,0.383,,,0.301,0.468,6.6,0.205339243,0.1,,,0.258,,,0.21,0.309,0.247577093,281,1135,,,0.164978323,,,0.130179379,0.203600809,0,0,1,0,0.662081041,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.080100125,64,799,0.066993742,0.093206508,0.000874891,1,1143,,,1143,0,0,1127,,,-1127,0.000887311,1,1127,,,1127,,,,,,,,,,,0.48,,,,,,,,,0.48,0.33,,,,,,,,,0.32,0.960408685,752,783,0.920134636,1,0.796812749,200,251,0.583400252,1,0.019404916,15,773,,,0.235,43,,0.144446809,0.325553192,,,,,,,,,,,,,0.182926829,0.049684059,0.316169599,3.302359774,89844,27206,1.99754393,4.607175617,0.026217229,7,267,0,0.079729647,0,0,1143,,,,,,,,,,,,,,,,,,,,,,,,,,3.3,,,,,0,,,,,0.094339623,50,530,0.002555642,0.186123603,0.050943396,0,0.120806229,0.045283019,0,0.136915083,0.00754717,0,0.039323157,0.709486166,359,506,0.584625977,0.834346355,,,,,,,,,,,,,0.720547945,0.550266389,0.890829502,0.375,,506,0.231570215,0.518429785,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.102,,,0.087,0.119,0.144,,,0.123,0.167,0.095,,,0.08,0.111,0,0,1011,,,0.1,110,,,,0.205339243,269.1997479,1311,,,,,,,,,,,,,,,,,,,,,,,,,,0.287,,,0.271,0.303,0.090609555,55,607,0.072737215,0.108481896,0.057971015,12,207,0.041290163,0.074651866,0,0,1127,,,-1127,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13063.76,,,,,0.873371221,40417,46277,0.658742916,1.087999526,60806,,,51554.08511,70057.91489,,,,,,,,,,,,,51000,44182.29787,57817.70213,,,,,,0.344827586,30,87,,,,,,,,0.285004769,,60806,,,,,106,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,100,,,0,,0.751546392,729,970,,,0.487,,,,,1.138182158,,,,,0.624444444,281,450,0.547174892,0.701713997,0.119760479,40,334,0.003050946,0.236470012,0.706666667,318,450,0.638507388,0.774825945,1127,,,,,0.164152618,185,1127,,,0.316770186,357,1127,,,0.003549246,4,1127,,,0.015084295,17,1127,,,0.004436557,5,1127,,,0,0,1127,,,0.06122449,69,1127,,,0.90771961,1023,1127,,,0.021780303,23,1056,0,0.072241665,0.466725821,526,1127,,,1,1135,1135,, -31,167,31167,NE,Stanton County,2024,1,5993.274437,61,16217,3799.221884,8992.854325,1,,,,2,,,,2,,,,2,,,,2,5347.938629,3266.65985,8259.457469,1,,,,2,,0.121,,,0.101,0.144,2.938871693,,,2.247796826,3.692426914,4.078210495,,,3.225075506,5.011055378,0.073839662,35,474,0.05029704,0.097382285,0,,,,,,,,,,,,,0.077981651,0.052811906,0.103151397,,,,,,,0.151,,,0.119,0.187,0.42,,,0.349,0.497,9,0.01586705,0.082,,,0.247,,,0.201,0.294,0.408250599,2385,5842,,,0.200803854,,,0.163678714,0.244769089,0.4,2,5,0.149190828,0.619170557,86,5,5816,,,8.823529412,12,1360,4.559246404,15.41293018,,,,,,,,,,,,,8.481764207,4.06733562,15.59826636,,,,,,,0.072754427,341,4687,0.060839534,0.084669321,,0,5816,,,,,0,5717,,,,0.000174917,1,5717,,,5717,1831,,,,,,,,,1837,0.43,,,,,,,,,0.43,0.51,,,,,,,,,0.51,0.939949749,3741,3980,0.920505649,0.959393848,0.715971676,910,1271,0.600234005,0.831709347,0.020351269,73,3587,,,0.101,136,,0.06287234,0.13912766,,,,,,,,,,,,,0.068504595,0.00739644,0.12961275,3.686627972,132114,35836,3.016164364,4.35709158,0.074626866,105,1407,0.037512331,0.1117414,10.31636864,6,5816,,,57.48292419,17,29574,33.48592165,92.03573009,,,,,,,,,,,,,55.60498221,31.12168644,91.71196201,,,,6.5,,,,,0,,,,,0.115226337,280,2430,0.076742321,0.153710354,0.084089035,0.046583531,0.12159454,0.009465021,0,0.023395696,0.030864198,0.012832487,0.048895908,0.810652809,2496,3079,0.775095091,0.846210527,,,,,,,,,,,,,0.683029453,0.591288328,0.774770578,0.273,,3079,0.21355674,0.33244326,80.39619434,,,78.07237131,82.72001738,,,,,,,,,,,,,80.88071519,78.5973596,83.16407079,,,,278.2162055,61,16217,208.4030295,363.9136468,,,,,,,,,,,,,265.3934297,195.6801646,351.8731846,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.09,,,0.077,0.104,0.133,,,0.115,0.154,0.083,,,0.07,0.097,,,,,,0.082,480,,,,0.01586705,97.24914738,6129,,,,,,,,,,,,,,,,,,,,,,,,,,0.287,,,0.271,0.302,0.084095064,276,3282,0.069797192,0.098392936,0.047425474,70,1476,0.030744623,0.064106325,0.000174917,1,5717,,,5717,,,,,,,,,,,3.307990426,,,,,,,,,3.414500861,3.403520018,,,,,,,,,3.493111684,0.043539416,,,,,6032.647,,,,,0.739592657,40489,54745,0.607076495,0.872108818,75068,,,65575.40426,84560.59575,,,,,,,,,,,,,76626,69822.59575,83429.40426,,,,,,0.26716141,144,539,,,,,,,,0.230857356,,75068,,,5.333333333,2,375,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,51.42857143,,700,,,36,,0.725832377,3161,4355,,,0.685,,,,,5.33962557,,,,,0.793026375,1774,2237,0.751511797,0.834540953,0.084526559,183,2165,0.043056861,0.125996257,0.824765311,1845,2237,0.780909478,0.868621144,5717,,,,,0.238936505,1366,5717,,,0.207801294,1188,5717,,,0.008396012,48,5717,,,0.009445513,54,5717,,,0.002973588,17,5717,,,0.000874585,5,5717,,,0.0703166,402,5717,,,0.89907294,5140,5717,,,0.002179045,12,5507,0,0.015949748,0.492216197,2814,5717,,,0.73331051,4284,5842,, -31,169,31169,NE,Thayer County,2024,1,6121.389876,72,13094,3922.089998,9108.142912,1,,,,2,,,,2,,,,2,,,,2,6400.208582,4057.183225,9603.455347,1,,,,2,,0.134,,,0.111,0.159,3.165137111,,,2.498534188,3.94524468,4.496231864,,,3.645018136,5.465707373,0.092753623,32,345,0.06214283,0.123364417,0,,,,,,,,,,,,,0.088685015,0.057871477,0.119498554,,,,,,,0.17,,,0.134,0.21,0.385,,,0.316,0.458,8.3,0.056066676,0.092,,,0.249,,,0.203,0.299,0.339292809,1708,5034,,,0.187371425,,,0.152355532,0.226697988,0.142857143,1,7,0.008995928,0.386311364,162.8,8,4913,,,12.59689923,13,1032,6.707318305,21.54108132,,,,,,,,,,,,,12.03501094,6.0078341,21.53395899,,,,,,,0.082902963,305,3679,0.06979658,0.096009346,0.000814167,4,4913,,,1228.25,0.000204708,1,4885,,,4885,0.000614125,3,4885,,,1628.333333,3710,,,,,,,,,3661,0.49,,,,,,,,,0.49,0.17,,,,,,,,,0.17,0.934547524,3284,3514,0.912402862,0.956692186,0.73125,702,960,0.634107767,0.828392234,0.019068574,52,2727,,,0.141,151,,0.092148936,0.189851064,,,,,,,,,,0.257142857,0,0.709472168,0.094594595,0.052662385,0.136526804,4.309238909,105878,24570,3.434123892,5.184353927,0.191910499,223,1162,0.132786464,0.251034535,32.56665988,16,4913,,,96.43589022,24,24887,61.78829451,143.4889605,,,,,,,,,,,,,97.6811348,61.92146028,146.5696632,,,,6.5,,,,,0,,,,,0.073496659,165,2245,0.049069062,0.097924257,0.048626745,0.021781914,0.075471575,0.005345212,0,0.014776948,0.021826281,0.004498519,0.039154043,0.836174636,2011,2405,0.81153904,0.860810233,,,,,,,,,,,,,0.849374191,0.816235565,0.882512817,0.129,,2405,0.097229433,0.160770567,77.77325491,,,75.66193793,79.88457189,,,,,,,,,,,,,77.5337861,75.32978632,79.73778588,,,,346.7266827,72,13094,263.2841068,448.2246405,,,,,,,,,,,,,355.3145013,269.1117334,460.3511492,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.098,,,0.083,0.114,0.142,,,0.122,0.164,0.086,,,0.073,0.101,0,0,4131,,,0.092,470,,,,0.056066676,293.1165829,5228,,,,,,,,,,,,,,,,,,,,,,,,,,0.291,,,0.274,0.308,0.093104792,239,2567,0.07761543,0.108594153,0.061908856,72,1163,0.041653537,0.082164176,0.000614125,3,4885,,,1628.333333,,,,,,,,,,,3.469774899,,,,,,,,,3.410355746,3.554873221,,,,,,,,,3.631060523,0.099820713,,,,,3705.666,,,,,0.790629359,37411,47318,0.700889332,0.880369386,61125,,,53024.06383,69225.93617,,,,,,,,,,,,,60884,56170.46809,65597.53192,,,,,,0.331374853,282,851,,,,,,,,0.283517382,,61125,,,10.16949153,3,295,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,500,,,0,,0.773022049,2980,3855,,,0.64,,,,,2.992192215,,,,,0.774319066,1592,2056,0.74833471,0.800303423,0.07208589,141,1956,0.037190086,0.106981693,0.831225681,1709,2056,0.793044472,0.86940689,4885,,,,,0.224564995,1097,4885,,,0.252814739,1235,4885,,,0.006345957,31,4885,,,0.004094166,20,4885,,,0.002865916,14,4885,,,0.000204708,1,4885,,,0.032753327,160,4885,,,0.940429887,4594,4885,,,0.000846024,4,4728,0,0.015054842,0.500307062,2444,4885,,,1,5034,5034,, -31,171,31171,NE,Thomas County,2024,0,,,,,,2,,,,2,,,,2,,,,2,,,,2,,,,2,,,,2,,0.119,,,0.098,0.143,2.868618813,,,2.21243325,3.605007531,4.042840111,,,3.166598765,4.968683136,,,,,,0,,,,,,,,,,,,,,,,,,,,,,0.15,,,0.116,0.19,0.372,,,0.296,0.456,4.9,0.345736434,0.11,,,0.229,,,0.184,0.279,0.739910314,495,669,,,0.192738508,,,0.154392662,0.235453563,,,,,,0,0,673,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.073995772,35,473,0.060889389,0.087102155,0,0,673,,,-673,0,0,671,,,-671,0,0,671,,,-671,,,,,,,,,,,0.5,,,,,,,,,0.48,0.31,,,,,,,,,0.31,0.915322581,454,496,0.890293067,0.940352094,0.811518325,155,191,0.571175967,1,0.026143791,12,459,,,0.218,32,,0.133404255,0.302595745,,,,,,,,,,,,,,,,3.060238416,115778,37833,2.103590653,4.016886179,0.126436782,11,87,0,0.357718107,59.43536404,4,673,,,,,,,,,,,,,,,,,,,,,,,,,,4.5,,,,,0,,,,,0.072727273,20,275,0,0.155060756,0.065454546,0,0.21545031,0,0,0.086653772,0.014545455,0,0.061138349,0.661931818,233,352,0.486080812,0.837782824,,,,,,,,,,,,,0.653374233,0.57249996,0.734248506,0.18,,352,0.052923317,0.307076684,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.088,,,0.075,0.104,0.131,,,0.113,0.153,0.081,,,0.068,0.095,0,0,566,,,0.11,60,,,,0.345736434,223.6914724,647,,,,,,,,,,,,,,,,,,,,,,,,,,0.28,,,0.264,0.296,0.088328076,28,317,0.069264246,0.107391906,0.042682927,7,164,0.021236118,0.064129735,0,0,671,,,-671,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5911.931,,,,,0.778395604,35417,45500,0.550084514,1.006706695,58818,,,50516.89362,67119.10638,,,,,,,,,,,,,70000,55692.59575,84307.40426,,,,,,0.54945055,100,182,,,,,,,,0.294637696,,58818,,,,,16,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,100,,,0,,0.92826087,427,460,,,0.365,,,,,6.420836618,,,,,0.676470588,207,306,0.556029995,0.796911182,0.061302682,16,261,0,0.21155279,0.875816994,268,306,0.789106423,0.962527564,671,,,,,0.222056632,149,671,,,0.304023845,204,671,,,0.011922504,8,671,,,0.019374069,13,671,,,0.002980626,2,671,,,0,0,671,,,0.044709389,30,671,,,0.912071535,612,671,,,0,0,572,0,0.083320934,0.500745157,336,671,,,1,669,669,, -31,173,31173,NE,Thurston County,2024,1,25020.91617,194,20010,20590.63238,29451.19996,0,42560.24794,34996.63078,50123.86509,,,,,2,,,,2,,,,2,6049.966384,2901.194041,11126.10358,1,,,,2,,0.197,,,0.169,0.228,4.151929573,,,3.387529128,5.063938801,5.302823801,,,4.439938889,6.328105829,0.078867543,78,989,0.062069135,0.095665951,0,0.074688797,0.055526015,0.093851579,,,,,,,,,,0.092783505,0.051956637,0.133610373,,,,,,,0.252,,,0.211,0.296,0.492,,,0.432,0.555,7.5,0.013222309,0.149,,,0.306,,,0.262,0.357,0.431861804,2925,6773,,,0.19863926,,,0.164608569,0.238521881,0.333333333,3,9,0.150331965,0.513162068,1435,95,6620,,,47.0980019,99,2102,38.2789319,57.34012738,57.90190736,46.24998706,71.59660512,,,,,,,,,,,,,,,,,,,0.111316113,543,4878,0.094635262,0.127996964,0.000906344,6,6620,,,1103.333333,0.000922084,6,6507,,,1084.5,0.004917781,32,6507,,,203.34375,2279,,,,,3027,,,,770,0.4,,,,,0.13,,,,0.52,0.16,,,,,0.14,,,,0.15,0.897540984,3285,3660,0.875178327,0.919903641,0.557942708,857,1536,0.487450254,0.628435163,0.033769395,111,3287,,,0.287,652,,0.170234043,0.403765957,0.299101412,0.246540554,0.35166227,,,,,,,0.127795527,0.015592277,0.239998778,0.044776119,0.009647378,0.079904861,4.469462556,115844,25919,3.641215058,5.297710055,0.452702703,1072,2368,0.369049669,0.536355737,7.552870091,5,6620,,,120.8204552,43,35590,87.4383625,162.7443602,189.4133306,133.3644649,261.0813256,,,,,,,,,,,,,,,,6.6,,,,,1,,,,,0.184757506,400,2165,0.156412142,0.21310287,0.068965517,0.040009785,0.09792125,0.115473441,0.088995294,0.141951589,0.008775982,0.002129892,0.015422071,0.75,1974,2632,0.711442741,0.788557259,0.779958678,0.714160482,0.845756874,,,,,,,,,,0.852133255,0.815401509,0.888865002,0.26,,2632,0.212654225,0.307345776,64.22047924,,,61.8154037,66.62555478,55.31903673,52.68551539,57.95255808,,,,,,,,,,78.06653004,74.70222265,81.43083743,,,,1045.76207,194,20010,892.5871903,1198.936949,1927.896783,1620.659115,2235.134451,,,,,,,,,,316.6158391,208.651833,460.6594229,,,,117.3073452,13,11082,62.46122082,200.599133,154.5377915,77.14470873,276.5107968,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.127,,,0.111,0.146,0.164,,,0.143,0.188,0.136,,,0.118,0.156,,,,,,0.149,1010,,,,0.013222309,91.76282469,6940,,,,,,,,,,,,,,,,,,,,,,,,,,0.352,,,0.338,0.364,0.153793575,450,2926,0.127580809,0.180006341,0.050072922,103,2057,0.03458356,0.065562283,0.001844168,12,6507,,,542.25,,,,,,,,,,,2.650007582,,,,,,,,,3.859011013,2.485342098,,,,,,,,,4.090875777,0.597703575,,,,,2793.615,,,,,0.905012623,41941,46343,0.786165473,1.023859773,57129,,,51003.55319,63254.44681,55398,43137.57447,67658.42553,,,,,,,86667,36819.85106,136514.1489,68583,63220.10638,73945.89362,,,,,,0.851022395,1748,2054,,,,,,,,0.303348562,,57129,,,7.575757576,5,660,,,,,,,,,,,,,,,,,,,,,,,,,,33.26550427,12,35590,17.18877148,58.10814141,33.71733633,55.00832188,26.37862849,101.1622625,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,44.19356783,22,49781,27.69587367,66.90959279,62.3601482,36.32708437,99.84463819,,,,,,,,,,,,,,,,,,1100,,,-888,,0.509309967,2325,4565,,,0.418,,,,,14.41357997,,,,,0.609131962,1214,1993,0.564088812,0.654175112,0.079575597,150,1885,0.048260182,0.110891012,0.760662318,1516,1993,0.729483302,0.791841335,6507,,,,,0.355924389,2316,6507,,,0.123866605,806,6507,,,0.0047641,31,6507,,,0.584601199,3804,6507,,,0.008145075,53,6507,,,0.000768403,5,6507,,,0.086214846,561,6507,,,0.343168895,2233,6507,,,0.007397666,45,6083,0,0.018715793,0.501306286,3262,6507,,,1,6773,6773,, -31,175,31175,NE,Valley County,2024,1,5891.752222,67,10848,3774.95682,8766.460285,1,,,,2,,,,2,,,,2,,,,2,6222.60416,3944.597256,9336.96151,1,,,,2,,0.128,,,0.106,0.154,3.102665743,,,2.390237178,3.877424435,4.035867515,,,3.194389291,4.959172465,0.06231454,21,337,0.036505942,0.088123138,1,,,,,,,,,,,,,0.066455696,0.038992815,0.093918578,,,,,,,0.157,,,0.122,0.194,0.356,,,0.289,0.431,8.3,0.044412212,0.099,,,0.246,,,0.2,0.298,0.693274206,2814,4059,,,0.190429632,,,0.153655469,0.230640474,0,0,1,0,0.662081041,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.096646943,294,3042,0.081157581,0.112136305,0.00122971,5,4066,,,813.2,0.000982077,4,4073,,,1018.25,0.001964154,8,4073,,,509.125,2523,,,,,,,,,2535,0.44,,,,,,,,,0.44,0.45,,,,,,,,,0.45,0.936541144,2686,2868,0.908623579,0.964458708,0.682741117,538,788,0.5714201,0.794062134,0.022024367,47,2134,,,0.174,160,,0.109659575,0.238340426,,,,,,,,,,,,,0.088100687,0.035123339,0.141078034,3.684100564,105800,28718,2.770871592,4.597329537,0.181919643,163,896,0.097720804,0.266118482,19.67535662,8,4066,,,82.02258033,17,20726,47.78117567,131.3260968,,,,,,,,,,,,,86.54482513,50.41554991,138.5666488,,,,5.4,,,,,0,,,,,0.108401084,200,1845,0.069198159,0.147604009,0.085479452,0.045328709,0.125630196,0.018428184,0.002058284,0.034798085,0.008130081,0,0.01923177,0.829766053,1667,2009,0.785281467,0.874250638,,,,,,,,,,,,,0.824534942,0.800135231,0.848934653,0.116,,2009,0.074828913,0.157171087,78.52311562,,,76.26696139,80.77926985,,,,,,,,,,,,,78.1991441,75.84683511,80.55145309,,,,376.9926605,67,10848,285.5305595,488.4377189,,,,,,,,,,,,,389.6948152,293.5714661,507.2413671,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.093,,,0.078,0.109,0.136,,,0.116,0.159,0.083,,,0.07,0.098,0,0,3387,,,0.099,400,,,,0.044412212,189.1960248,4260,,,,,,,,,,,,,,,,,,,,,,,,,,0.284,,,0.267,0.3,0.10974456,232,2114,0.09068073,0.12880839,0.067484663,66,978,0.044846365,0.09012296,0.002946231,12,4073,,,339.4166667,,,,,,,,,,,3.048349083,,,,,,,,,3.100327546,2.875416587,,,,,,,,,2.811863703,0.026248487,,,,,6553.6505,,,,,0.848799895,45230,53287,0.69547369,1.002126099,55050,,,47475.70213,62624.29787,,,,,,,,,,,,,59875,49587.68085,70162.31915,,,,,,0.385174419,265,688,,,,,,,,0.314804723,,55050,,,4.237288136,1,236,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,25,,400,,,10,,0.734693878,2340,3185,,,0.624,,,,,0.008204155,,,,,0.774285714,1355,1750,0.733926701,0.814644728,0.07641791,128,1675,0.034458824,0.118376997,0.783428571,1371,1750,0.74263254,0.824224603,4073,,,,,0.230051559,937,4073,,,0.255585564,1041,4073,,,0.003191751,13,4073,,,0.005401424,22,4073,,,0.004910386,20,4073,,,0.000491039,2,4073,,,0.038546526,157,4073,,,0.941075374,3833,4073,,,0.002087683,8,3832,0,0.014368412,0.494721336,2015,4073,,,1,4059,4059,, -31,177,31177,NE,Washington County,2024,1,4774.242994,221,58097,3721.052238,5827.43375,0,,,,2,,,,2,,,,2,,,,2,4836.776643,3741.207579,5932.345708,,,,,2,,0.11,,,0.091,0.131,2.749056182,,,2.137610448,3.417723037,3.773588382,,,3.043657207,4.542929608,0.058583106,86,1468,0.046569587,0.070596625,0,,,,,,,,,,,,,0.056576047,0.044301746,0.068850348,,,,,,,0.15,,,0.114,0.188,0.345,,,0.29,0.405,8.5,0.049702701,0.086,,,0.213,,,0.174,0.257,0.454397316,9481,20865,,,0.199532591,,,0.16577375,0.237221738,0.083333333,1,12,0.004083139,0.26580258,190.8,40,20969,,,6.65419006,32,4809,4.551461075,9.393730938,,,,,,,,,,,,,5.882352941,3.842548239,8.619009974,,,,,,,0.059203633,1017,17178,0.049671718,0.068735547,0.000429205,9,20969,,,2329.888889,0.000330704,7,21167,,,3023.857143,0.000472434,10,21167,,,2116.7,954,,,,,,,,,959,0.57,,,,,,,,,0.57,0.46,,,,,,,,,0.46,0.9508553,13563,14264,0.938068563,0.963642037,0.746726765,3479,4659,0.658925518,0.834528013,0.021595837,249,11530,,,0.085,415,,0.057595745,0.112404255,,,,,,,,,,0.063559322,0,0.246478793,0.10026738,0.059987317,0.140547442,4.142364402,157327,37980,3.631571489,4.653157316,0.12987013,650,5005,0.081750204,0.177990055,8.107205875,17,20969,,,54.81454413,57,103987,41.51600043,71.01859983,,,,,,,,,,,,,56.0966903,42.25970419,73.01755314,,,,6.5,,,,,1,,,,,0.075857917,630,8305,0.056133584,0.09558225,0.068906536,0.048146806,0.089666267,0.004695966,0,0.011808164,0.007826611,0.002182308,0.013470913,0.809822169,8789,10853,0.780585987,0.839058351,,,,,,,,,,,,,0.783482944,0.754426149,0.81253974,0.376,,10853,0.327601473,0.424398527,80.37651222,,,79.30033794,81.4526865,,,,,,,,,,,,,80.27351224,79.17108125,81.37594323,,,,261.3415819,221,58097,224.9222253,297.7609385,,,,,,,,,,,,,264.7523383,227.2479204,302.2567563,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.083,,,0.07,0.096,0.128,,,0.109,0.148,0.078,,,0.066,0.092,0,0,17500,,,0.086,1780,,,,0.049702701,1005.68446,20234,,,,,,,,,,,,,,,,,,,,,,,,,,0.273,,,0.256,0.289,0.06723243,816,12137,0.056509026,0.077955834,0.041933058,223,5318,0.028826675,0.055039441,0.00085038,18,21167,,,1175.944444,0.965019763,244.15,253,,,,,,,,3.216114661,,,,,,,,,3.216727757,3.321261781,,,,,,,,,3.325969534,0.197671955,,,,,3284.144,,,,,0.68709847,53582,77983,0.618100328,0.756096612,87368,,,75227.91489,99508.08511,,,,,,,,,,95938,26461.06383,165414.9362,89589,79637.68085,99540.31915,,,,,,0.232299125,876,3771,,,,,,,,0.198356378,,87368,,,8.496176721,10,1177,,,,,,,,,,,,,,,,,,,,,,,,,,11.50051376,12,103987,5.741015033,20.57759589,11.53990403,,,,,,,,,,,,,12.33473874,6.157457139,22.07025482,,,,10.57824536,11,103987,5.280621969,18.92740296,,,,,,,,,,,,,11.21933806,5.600653136,20.07449489,,,,11.04682473,16,144838,6.314214815,17.93935127,,,,,,,,,,,,,10.96868076,6.139087357,18.09117085,,,,17.08333333,,2400,,,41,,0.80892799,12413,15345,,,0.769,,,,,54.59952789,,,,,0.809570075,6666,8234,0.787317486,0.831822665,0.070648764,563,7969,0.049506223,0.091791305,0.901384503,7422,8234,0.878398544,0.924370463,21167,,,,,0.234185288,4957,21167,,,0.1914773,4053,21167,,,0.008834507,187,21167,,,0.004866065,103,21167,,,0.004440875,94,21167,,,0.001322814,28,21167,,,0.032550669,689,21167,,,0.935890773,19810,21167,,,0.001165856,23,19728,0,0.005359777,0.49449615,10467,21167,,,0.616534867,12864,20865,, -31,179,31179,NE,Wayne County,2024,1,3925.861369,66,26403,2515.373456,5841.370526,0,,,,2,,,,2,,,,2,,,,2,4272.532978,2609.77414,6598.580661,1,,,,2,,0.122,,,0.102,0.143,2.98739544,,,2.370536424,3.666382405,3.88792396,,,3.168269237,4.667192862,0.051798561,36,695,0.035321763,0.068275359,0,,,,,,,,,,,,,0.050092764,0.031676999,0.06850853,,,,,,,0.148,,,0.118,0.183,0.385,,,0.326,0.446,8.6,0.024386894,0.094,,,0.24,,,0.199,0.284,0.455089203,4413,9697,,,0.237349595,,,0.198253085,0.277959904,0.444444444,4,9,0.264827841,0.599456043,347.5,34,9784,,,6.989386487,27,3863,4.606049736,10.16919038,,,,,,,,,,57.2519084,32.04345852,94.4283163,3.021148036,1.448757914,5.555998804,,,,,,,0.073552205,522,7097,0.060445822,0.086658588,0.000613246,6,9784,,,1630.666667,0.000506534,5,9871,,,1974.2,0.000911762,9,9871,,,1096.777778,712,,,,,,,,,717,0.53,,,,,,,,,0.53,0.57,,,,,,,,,0.57,0.956926446,5243,5479,0.94274544,0.971107453,0.75052521,1429,1904,0.635700132,0.865350289,0.021660024,125,5771,,,0.11,208,,0.069489362,0.150510638,,,,,,,,,,,,,0.090403338,0.026879427,0.153927249,5.172940123,109806,21227,2.77965088,7.566229367,0.077783697,146,1877,0.02470676,0.130860635,11.24284546,11,9784,,,33.76809759,16,47382,19.30138545,54.83727491,,,,,,,,,,,,,33.1141492,18.10381351,55.55991561,,,,6.4,,,,,0,,,,,0.150197629,570,3795,0.098385933,0.202009324,0.140974967,0.086735708,0.195214227,0.003689065,0,0.013719764,0.015546772,0.000127426,0.030966119,0.746653543,3793,5080,0.711198292,0.782108795,,,,,,,,,,,,,0.717740163,0.667481763,0.767998562,0.167,,5080,0.112581406,0.221418595,83.70663836,,,81.78949817,85.62377855,,,,,,,,,,,,,83.35594274,81.2753473,85.43653818,,,,217.8832138,66,26403,165.8627974,281.0534712,,,,,,,,,,,,,224.8573825,169.3933531,292.6827909,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.092,,,0.078,0.106,0.132,,,0.113,0.154,0.088,,,0.075,0.102,,,,,,0.094,900,,,,0.024386894,233.9922444,9595,,,,,,,,,,,,,,,,,,,,,,,,,,0.286,,,0.27,0.301,0.085488229,443,5182,0.068807377,0.10216908,0.043262059,87,2011,0.028964186,0.057559931,0.000303921,3,9871,,,3290.333333,0.87390511,119.725,137,,,,,,,,2.869679204,,,,,,,,2.575746621,3.101367229,3.203700534,,,,,,,,2.660356056,3.38385663,0.16652079,,,,,2250.091333,,,,,0.747179603,39738,53184,0.597038615,0.897320591,65664,,,57016.17021,74311.82979,,,,,,,,,,43771,32138.48936,55403.51064,65742,62721.57447,68762.42553,,,,,,0.413754228,734,1774,,,,,,,,0.263919347,,65664,,,10.59322034,5,472,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,22.5,,800,,,18,,0.575736806,4200,7295,,,0.661,,,,,53.2862263,,,,,0.687215224,2564,3731,0.641440081,0.732990367,0.143762049,522,3631,0.084300836,0.203223262,0.857946931,3201,3731,0.816421054,0.899472809,9871,,,,,0.193901327,1914,9871,,,0.168878533,1667,9871,,,0.018235235,180,9871,,,0.009826765,97,9871,,,0.00678756,67,9871,,,0.001722217,17,9871,,,0.072333097,714,9871,,,0.885118023,8737,9871,,,0.011583848,107,9237,0.000536536,0.022631159,0.493465708,4871,9871,,,0.383314427,3717,9697,, -31,181,31181,NE,Webster County,2024,1,8297.768286,73,9208,5200.167208,12562.92091,1,,,,2,,,,2,,,,2,,,,2,9148.537568,5588.164419,14129.17428,1,,,,2,,0.137,,,0.115,0.161,3.071950374,,,2.362625376,3.806799469,4.229745596,,,3.349623305,5.168757066,0.0703125,18,256,0.038992565,0.101632435,1,,,,,,,,,,,,,0.074688797,0.041497884,0.107879709,,,,,,,0.17,,,0.135,0.209,0.425,,,0.351,0.503,7.5,0.136405707,0.09,,,0.282,,,0.236,0.335,0.630044183,2139,3395,,,0.191219995,,,0.153492006,0.232387278,0.142857143,1,7,0.008995928,0.386311364,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.074159907,192,2589,0.062245014,0.086074801,0.000293169,1,3411,,,3411,0,0,3336,,,-3336,0.00059952,2,3336,,,1668,2095,,,,,,,,,2101,0.47,,,,,,,,,0.48,0.31,,,,,,,,,0.31,0.939192003,2255,2401,0.922628359,0.955755647,0.674581006,483,716,0.57446303,0.774698981,0.024793388,42,1694,,,0.144,108,,0.088,0.2,,,,,,,,,,0.362318841,0.175285123,0.549352558,0.047318612,0.014771745,0.079865479,3.347201475,105313,31463,2.885218641,3.809184309,0.132390746,103,778,0.05569632,0.209085171,14.65845793,5,3411,,,138.1374468,24,17374,88.50726865,205.5375711,,,,,,,,,,,,,151.3813549,96.99289047,225.2434565,,,,6,,,,,0,,,,,0.068852459,105,1525,0.042128915,0.095576003,0.03879027,0.009916037,0.067664502,0.018360656,0.001589191,0.035132121,0.02295082,0.008617682,0.037283958,0.809169054,1412,1745,0.777461635,0.840876474,,,,,,,,,,,,,0.779220779,0.723843513,0.834598046,0.333,,1745,0.270711197,0.395288803,75.05311439,,,72.47087366,77.63535512,,,,,,,,,,,,,74.29516974,71.45568819,77.1346513,,,,484.1207974,73,9208,372.8320052,618.2114503,,,,,,,,,,,,,514.9409432,394.8022684,660.1310493,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.098,,,0.084,0.114,0.14,,,0.12,0.162,0.091,,,0.077,0.106,0,0,2873,,,0.09,310,,,,0.136405707,519.9785543,3812,,,,,,,,,,,,,,,,,,,,,,,,,,0.293,,,0.278,0.308,0.085106383,156,1833,0.069617021,0.100595745,0.047919294,38,793,0.030046953,0.065791634,0.002098321,7,3336,,,476.5714286,,,,,,,,,,,2.856711781,,,,,,,,,2.859241966,3.152149627,,,,,,,,,3.216085162,0.119089986,,,,,3301.1273,,,,,0.753537375,36906,48977,0.640417955,0.866656795,62679,,,56949.12766,68408.87234,,,,,,,,,,36550,29625.06383,43474.93617,64643,59749.55319,69536.44681,,,,,,0.352777778,254,720,,,,,,,,0.276488138,,62679,,,5.235602094,1,191,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,400,,,-888,,0.688440367,1876,2725,,,0.592,,,,,,,,,,0.817567568,1210,1480,0.780969927,0.854165208,0.040587824,58,1429,0.011439558,0.069736089,0.855405405,1266,1480,0.827939683,0.882871128,3336,,,,,0.228717026,763,3336,,,0.222422062,742,3336,,,0.006594724,22,3336,,,0.006894484,23,3336,,,0.004196643,14,3336,,,0.004196643,14,3336,,,0.060551559,202,3336,,,0.901079137,3006,3336,,,0.001239541,4,3227,0,0.015255511,0.491007194,1638,3336,,,1,3395,3395,, -31,183,31183,NE,Wheeler County,2024,0,,,,,,2,,,,2,,,,2,,,,2,,,,2,,,,2,,,,2,,0.132,,,0.109,0.158,3.175637004,,,2.452658208,3.981317016,4.230612175,,,3.312705559,5.235603503,,,,,,0,,,,,,,,,,,,,,,,,,,,,,0.169,,,0.132,0.211,0.378,,,0.297,0.461,5.2,0.313210643,0.112,,,0.253,,,0.206,0.306,0.082687339,64,774,,,0.169502175,,,0.134592496,0.207610757,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.076655052,44,574,0.064740159,0.088569946,0,0,795,,,-795,0,0,785,,,-785,0,0,785,,,-785,,,,,,,,,,,0.55,,,,,,,,,0.55,0.37,,,,,,,,,0.37,0.978723404,598,611,0.923221504,1,0.712,89,125,0.539358597,0.884641403,0.015929204,9,565,,,0.24,43,,0.14587234,0.33412766,,,,,,,,,,,,,0.177777778,0,0.371476918,4.165298753,101500,24368,2.904068432,5.426529073,0.232394366,33,142,0,0.485983594,0,0,795,,,,,,,,,,,,,,,,,,,,,,,,,,5.3,,,,,0,,,,,0.095774648,34,355,0.032711814,0.158837481,0.094017094,0,0.209160112,0,0,0.067126161,0.011267606,0,0.058705105,0.655462185,234,357,0.506154262,0.804770107,,,,,,,,,,,,,0.641509434,0.50008994,0.782928928,0.243,,357,0.147101759,0.338898241,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.097,,,0.082,0.115,0.141,,,0.12,0.165,0.09,,,0.076,0.106,0,0,662,,,0.112,80,,,,0.313210643,256.2063056,818,,,,,,,,,,,,,,,,,,,,,,,,,,0.29,,,0.271,0.307,0.086848635,35,403,0.068976295,0.104720976,0.055555556,10,180,0.035300236,0.075810875,0,0,785,,,-785,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17942.85,,,,,0.817635955,45481,55625,0.439211452,1.196060458,55951,,,47848.87234,64053.12766,,,,,,,,,,,,,59167,44534.31915,73799.68085,,,,,,0.210526316,24,114,,,,,,,,0.309735304,,55951,,,,,71,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,100,,,0,,0.843697479,502,595,,,0.375,,,,,1.031431934,,,,,0.771676301,267,346,0.701421145,0.841931457,0.064724919,20,309,0,0.20049352,0.76300578,264,346,0.679395115,0.846616446,785,,,,,0.231847134,182,785,,,0.291719745,229,785,,,0,0,785,,,0.012738854,10,785,,,0.003821656,3,785,,,0,0,785,,,0.038216561,30,785,,,0.941401274,739,785,,,0,0,686,0,0.069474598,0.491719745,386,785,,,1,774,774,, -31,185,31185,NE,York County,2024,1,6883.166564,190,37426,5253.278166,8513.054962,0,,,,2,,,,2,,,,2,,,,2,7532.77139,5697.678212,9367.864568,,,,,2,,0.12,,,0.101,0.141,3.009791624,,,2.399036822,3.718021088,4.029388042,,,3.290963877,4.846420652,0.063157895,72,1140,0.049037375,0.077278414,0,,,,,,,,,,,,,0.061183551,0.046306523,0.076060579,,,,,,,0.148,,,0.116,0.182,0.42,,,0.362,0.482,8.4,0.055478641,0.09,,,0.217,,,0.178,0.258,0.713486726,10078,14125,,,0.203985529,,,0.169364037,0.240496423,0.375,9,24,0.267627328,0.478430601,224.7,32,14244,,,13.45144357,41,3048,9.652988146,18.24840209,,,,,,,,,,,,,12.73148148,8.763766039,17.87973351,,,,,,,0.060512243,645,10659,0.050980328,0.070044158,0.000772255,11,14244,,,1294.909091,0.000627003,9,14354,,,1594.888889,0.001811342,26,14354,,,552.0769231,2718,,,,,,,,,2753,0.51,,,,,,,,,0.52,0.48,,,,,,,,,0.48,0.938134617,8962,9553,0.922962525,0.95330671,0.726417956,2395,3297,0.633598852,0.81923706,0.021393234,160,7479,,,0.129,408,,0.086106383,0.171893617,,,,,,,,,,0.050505051,0,0.152011416,0.085882787,0.041673769,0.130091804,3.682524533,123464,33527,3.000783901,4.364265164,0.113636364,375,3300,0.052148913,0.175123815,21.06149958,30,14244,,,76.79823799,53,69012,57.52715025,100.4539862,,,,,,,,,,,,,84.82578704,63.54033535,110.954218,,,,6.4,,,,,1,,,,,0.102902375,585,5685,0.074045244,0.131759505,0.0816,0.053451381,0.109748619,0.011433597,0.000175695,0.022691499,0.020228672,0.007901626,0.032555718,0.81124381,5570,6866,0.781989761,0.840497859,,,,,,,,,,,,,0.821644413,0.788942825,0.854346001,0.178,,6866,0.136553978,0.219446022,79.03452528,,,77.51449348,80.55455709,,,,,,,,,,,,,78.42776064,76.80481352,80.05070776,,,,363.361214,190,37426,308.0790203,418.6434077,,,,,,,,,,,,,383.8198793,324.420058,443.2197006,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.089,,,0.076,0.104,0.129,,,0.109,0.149,0.082,,,0.07,0.096,58.8,7,11907,,,0.09,1280,,,,0.055478641,758.1156322,13665,,,,,,,,,,,,,,,,,,,,,,,,,,0.27,,,0.256,0.285,0.07234618,535,7395,0.059239797,0.085452563,0.035535977,121,3405,0.023621083,0.04745087,0.000627003,9,14354,,,1594.888889,0.952547771,149.55,157,,,,,,,,3.115487409,,,,,,,,,3.174263448,3.178929745,,,,,,,,,3.286498165,0.049963456,,,,,3205.038667,,,,,0.719274008,41651,57907,0.658558328,0.779989689,68440,,,59314.38298,77565.61702,,,,,,,,,,59968,39462.46809,80473.53192,73543,69190.48936,77895.51064,,,,,,0.356774496,761,2133,,,,,,,,0.253214494,,68440,,,10.15228426,10,985,,,,,,,,,,,,,,,,,,,,,,,,,,13.18051083,10,69012,6.026968854,25.02071522,14.49023358,,,,,,,,,,,,,14.34985116,6.561665712,27.2404874,,,,,,,,,,,,,,,,,,,,,,,,,,,17.59615783,17,96612,10.25041037,28.17315325,,,,,,,,,,,,,19.41658862,11.3108784,31.0878393,,,,10.71428571,,1400,,,15,,0.68781897,7143,10385,,,0.696,,,,,35.89351,,,,,0.745171674,4167,5592,0.712980457,0.777362891,0.089538347,481,5372,0.058268335,0.120808359,0.917918455,5133,5592,0.892669053,0.943167857,14354,,,,,0.228856068,3285,14354,,,0.208861641,2998,14354,,,0.017347081,249,14354,,,0.010171381,146,14354,,,0.006688031,96,14354,,,0.000487669,7,14354,,,0.055036924,790,14354,,,0.899818866,12916,14354,,,0.000978768,13,13282,0,0.006555777,0.500766337,7188,14354,,,0.435893805,6157,14125,, -32,000,32000,NV,Nevada,2024,,8316.876179,46417,8770034,8202.931079,8430.821279,0,14747.91378,12991.28856,16504.53901,,4439.040163,4152.969198,4725.111127,,13993.26546,13522.90324,14463.62768,,6181.447162,6005.196337,6357.697986,,8927.549105,8746.519722,9108.578488,,16389.36058,14560.49962,18218.22154,,,0.178,,,0.158,0.2,4.085890601,,,3.596111147,4.575670055,5.470322854,,,4.939268608,6.001377101,0.089838724,21853,243247,0.088702344,0.090975103,0,0.077586207,0.06541532,0.089757094,0.103663637,0.099202163,0.108125111,0.145675754,0.141752943,0.149598565,0.07941821,0.077668274,0.081168147,0.076731079,0.074961801,0.078500357,0.093422706,0.081747663,0.10509775,0.095714011,0.090061326,0.101366697,0.153,,,0.134,0.176,0.315,,,0.288,0.344,6.8,0.061482897,0.13,,,0.234,,,0.211,0.259,0.906461158,2814212,3104614,,,0.148945933,,,0.129916969,0.170216812,0.275652702,454,1647,0.263447485,0.287962912,520,16348,3143991,,,18.67172018,11646,623724,18.33260127,19.0108391,23.63534046,19.50835764,27.76232329,3.762409884,3.170089977,4.354729791,32.38813523,30.96295044,33.81332003,23.22291955,22.64127817,23.80456093,11.57717335,11.12087747,12.03346924,22.20248668,17.85079929,26.55417407,18.52286049,17.07873283,19.96698816,0.137617131,358374,2604138,0.131659684,0.143574578,0.000567114,1783,3143991,,,1763.315199,0.000654547,2080,3177772,,,1527.775,0.002506473,7965,3177772,,,398.9669805,2684,,,,,3549,2175,5121,2831,2450,0.35,,,,,0.22,0.28,0.28,0.21,0.38,0.37,,,,,0.29,0.37,0.23,0.26,0.39,0.870727927,1875972,2154487,0.868277115,0.87317874,0.594508823,517036,869686,0.586501661,0.602515984,0.053971867,83649,1549863,,,0.165,111697,,0.154276596,0.175723404,0.267798105,0.230555639,0.30504057,0.11384408,0.097643822,0.130044338,0.279108992,0.259208598,0.299009386,0.209723284,0.199979936,0.219466633,0.102397751,0.094147147,0.110648356,4.399776179,137603,31275,4.322231655,4.477320704,0.27799303,191282,688082,0.269703693,0.286282367,4.33525414,1363,3143991,,,83.65791726,12879,15394837,82.21306964,85.10276489,113.9657797,95.66635638,132.265203,36.3202207,33.03658007,39.60386134,107.0296335,101.6630433,112.3962237,42.33302393,40.43448861,44.23155924,115.075765,112.6287722,117.5227578,76.74597084,60.56672001,95.91929563,4.2,,,,,0.1875,,,,,0.18844081,212940,1130010,0.184588909,0.192292711,0.149430616,0.145764969,0.153096263,0.041866886,0.040067646,0.043666127,0.009464518,0.008538218,0.010390818,0.736388834,1056081,1434135,0.731611032,0.741166636,0.697740113,0.672793804,0.722686422,0.711378631,0.70040001,0.722357251,0.707216926,0.69296231,0.721471542,0.730931469,0.723545975,0.738316962,0.755172434,0.749131969,0.761212899,0.321,,1434135,0.31553991,0.32646009,76.96247918,,,76.8599941,77.06496425,74.19741542,72.6581206,75.73671024,84.0631197,83.62097968,84.50525973,71.84288813,71.4779616,72.20781467,81.91495543,81.55226856,82.27764231,75.94478881,75.80308833,76.08648929,69.81373729,68.46910294,71.15837164,417.4117482,46417,8770034,413.4992119,421.3242845,603.375117,550.5737138,656.1765202,236.7729287,227.2121526,246.3337048,659.6311481,642.6132079,676.6490882,304.5816211,297.1183793,312.0448629,450.8273196,445.1925879,456.4620513,776.4431293,707.2601466,845.6261121,51.41595673,1567,3047692,48.8701848,53.96172867,58.4502338,31.95528673,98.06956046,30.38983404,22.82977865,39.6521413,105.7497941,94.4924549,117.0071333,42.96983391,39.35223759,46.58743023,49.35141595,45.06819379,53.63463811,90.58381267,55.33094608,139.8993519,5.551790331,1368,246407,5.25758802,5.845992641,,,,2.889852173,2.158279827,3.789656649,9.81411673,8.707228373,10.92100509,5.035783429,4.577079331,5.494487527,4.427423461,3.993535962,4.86131096,9.028374893,5.588706356,13.80083007,11.16380162,9.105405474,13.22219777,0.130733021,,,0.11365733,0.14994015,0.180820011,,,0.15973802,0.204008835,0.102,,,0.088,0.117,430.5,11416,2651963,,,0.13,409540,,,,0.061482897,166037.6983,2700551,,,25.9335047,2428,9362406,24.90194838,26.96506102,40.44591623,27.66497676,57.09756576,6.062420194,4.469950076,8.037889644,37.79357917,33.74035278,41.84680555,13.7742491,12.39112383,15.15737437,35.46203218,33.70954306,37.2145213,20.74192262,11.04420023,35.46931938,0.353439725,,,0.326732418,0.381094403,0.157648007,301484,1912387,0.150499071,0.164796944,0.085390356,62008,726171,0.075858441,0.094922271,0.001090701,3466,3177772,,,916.8413156,0.809681274,29709.635,36693,,,0.098834344,14838,150130,0.090620575,0.107048112,2.933622618,,,,,,3.347116539,2.481958388,2.743631633,3.268027389,2.78997853,,,,,,3.313991841,2.283003865,2.60781584,3.11084588,0.144350598,,,,,-5060.701,,,,,0.853431879,47112,55203,0.84101944,0.865844318,72348,,,71156.51064,73539.48936,55913,52483.89362,59342.10638,80103,77774.82979,82431.17021,48022,46448.04255,49595.95745,64732,63415.40426,66048.59575,79550,78638.51064,80461.48936,,,,,,0.785844765,337705,429735,,,49.07114359,,,,,0.262800872,,,,,2.916224814,,,,,6.963243684,1478,21225740,6.608241972,7.318245397,7.188675072,3.827666717,12.29285331,2.315858206,1.661899832,3.141723155,26.19398308,23.9071085,28.48085765,6.085823747,5.469853397,6.701794098,4.836187944,4.411852833,5.260523055,12.50404543,7.284067249,20.02018801,20.09365136,3219,15394837,19.38552829,20.80177443,20.90960755,17.04133142,10.67971167,25.80078056,10.42860154,8.637231124,12.21997196,12.97286256,11.08330356,14.86242156,8.660338001,7.773889016,9.546786985,28.63098758,27.39597238,29.86600278,19.48243482,11.72969844,30.4242353,17.72022659,2728,15394837,17.0552549,18.38519829,18.35690411,11.76161484,27.31361822,5.873056965,4.627300896,7.35100657,29.41914009,26.60554628,32.23273391,9.641290789,8.735252347,10.54732923,22.98535466,21.89173487,24.07897445,18.93731748,11.40150219,29.57296705,11.34942763,2409,21225740,10.89620495,11.80265031,23.77792524,17.2082024,32.02870925,6.4392155,5.257163437,7.621267564,14.50024063,12.7987515,16.20172976,8.617526426,7.884547591,9.350505261,13.3940115,12.68783589,14.10018712,11.03298126,6.175075858,18.19722474,,,,,,,,0.67850932,1405376,2071270,,,,,,,,180.3279887,,,,,0.584323232,679960,1163671,0.579944688,0.588701777,0.165815538,187188,1128893,0.162025496,0.16960558,0.887404602,1032647,1163671,0.884276135,0.890533068,3177772,,,,,0.217063402,689778,3177772,,,0.16898758,537004,3177772,,,0.097274443,309116,3177772,,,0.017148807,54495,3177772,,,0.094386885,299940,3177772,,,0.008811205,28000,3177772,,,0.302524536,961354,3177772,,,0.457012649,1452282,3177772,,,0.051591307,150993,2926714,0.050131449,0.053051165,0.495290411,1573920,3177772,,,0.059076909,183411,3104614,, -32,001,32001,NV,Churchill County,2024,1,10863.59161,511,70041,9395.147371,12332.03585,0,21201.37322,11288.83832,36254.9939,1,,,,2,,,,2,5430.534493,3218.47891,8582.585744,1,11996.86515,10097.27056,13896.45973,,,,,2,,0.166,,,0.141,0.193,4.31258916,,,3.425422145,5.290791806,5.56640105,,,4.460535196,6.724514029,0.07536505,160,2123,0.064135787,0.086594312,0,,,,,,,,,,0.080898876,0.055563407,0.106234346,0.069191551,0.055767689,0.082615414,,,,,,,0.171,,,0.139,0.206,0.322,,,0.254,0.394,8.1,0.057778698,0.1,,,0.23,,,0.187,0.276,0.679926321,17349,25516,,,0.170830117,,,0.135123256,0.210675879,0.225806452,7,31,0.133616464,0.327772988,513.2,132,25723,,,23.30858086,113,4848,19.01091465,27.60624707,,,,,,,,,,25.76891106,17.50872484,36.57691231,18.87428379,14.25743114,24.50982744,,,,67.19367589,39.14279237,107.5835843,0.127735813,2638,20652,0.108671983,0.146799642,0.000466509,12,25723,,,2143.583333,0.000657818,17,25843,,,1520.176471,0.002205626,57,25843,,,453.3859649,3208,,,,,3300,,,,3180,0.34,,,,,0.32,0.33,,0.29,0.35,0.31,,,,,0.49,0.39,0.2,0.28,0.3,0.921899977,16148,17516,0.900205999,0.943593956,0.576681181,3576,6201,0.488778011,0.66458435,0.035851825,391,10906,,,0.134,766,,0.083957447,0.184042553,0.204651163,0.046782129,0.362520197,0.022727273,0,0.530681128,,,,0.24119029,0.122445326,0.359935254,0.041437265,0.008196915,0.074677615,4.088820106,121532,29723,3.446509749,4.731130463,0.21202927,1188,5603,0.132605147,0.291453393,8.163900012,21,25723,,,133.1568604,166,124665,112.900306,153.4134148,,,,,,,,,,92.7441353,54.02687654,148.4923449,151.0322387,125.6484598,176.4160177,,,,4.9,,,,,0,,,,,0.138415246,1380,9970,0.105552824,0.171277667,0.118122161,0.085564836,0.150679485,0.017051154,0.005727486,0.028374821,0.007522568,0.001778347,0.013266788,0.812763759,9437,11611,0.772401089,0.853126428,0.732342007,0.54464071,0.920043305,,,,,,,0.810513447,0.627156847,0.993870048,0.823966942,0.781622125,0.86631176,0.215,,11611,0.166250755,0.263749245,73.53822305,,,72.46605151,74.6103946,,,,,,,,,,83.31315546,76.85908299,89.76722792,72.46749434,71.15904742,73.77594127,,,,541.7910242,511,70041,491.6692892,591.9127592,776.1002897,502.2511868,1145.677127,,,,,,,305.1198228,197.4574615,450.4170488,582.411933,522.2768639,642.5470021,,,,75.83316703,19,25055,45.65652031,118.4228839,,,,,,,,,,,,,98.00718719,54.85387869,161.6479508,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.123,,,0.106,0.141,0.178,,,0.154,0.203,0.095,,,0.081,0.111,153.9,33,21438,,,0.1,2500,,,,0.057778698,1437.360662,24877,,,25.00164485,19,75995,15.05262342,39.04316543,,,,,,,,,,,,,23.80908775,12.67733648,40.71426516,,,,0.338,,,0.325,0.352,0.140392422,2075,14780,0.116562635,0.164222209,0.098438009,605,6146,0.066267796,0.130608221,0.000619123,16,25843,,,1615.1875,0.8,175.2,219,,,,,,,,3.026114343,,,,,,,,2.829531165,3.140764892,2.954245804,,,,,,,,2.741447509,3.072338049,0.007847791,,,,,701.1533,,,,,0.734319784,42183,57445,0.617536699,0.85110287,70149,,,60712.40426,79585.59575,39063,19794.23404,58331.76596,,,,90299,25281.80851,155316.1915,43650,9550.765957,77749.23404,79272,65572.25532,92971.74468,,,,,,0.874570447,3563,4074,,,47.29389004,,,,,0.298293632,,70149,,,4.391468005,7,1594,,,,,,,,,,,,,,,,,,,,,,,,,,26.24225668,34,124665,17.83034022,37.24878863,27.27309189,,,,,,,,,,,,,31.09406199,20.31167363,45.56000517,,,,20.05374403,25,124665,12.97772578,29.60328215,,,,,,,,,,,,,23.32115451,14.43616221,35.64886197,,,,23.69079468,41,173063,17.00092329,32.13923806,,,,,,,,,,,,,23.85932542,16.09778667,34.0606706,,,,,,,,,,,0.710871965,12881,18120,,,0.694,,,,,59.44242883,,,,,0.668994268,6419,9595,0.629417115,0.708571421,0.112407211,1060,9430,0.075453309,0.149361113,0.897655029,8613,9595,0.862765931,0.932544127,25843,,,,,0.226134737,5844,25843,,,0.193437294,4999,25843,,,0.023062338,596,25843,,,0.053592849,1385,25843,,,0.030414426,786,25843,,,0.003985605,103,25843,,,0.159462911,4121,25843,,,0.707889951,18294,25843,,,0.011508253,274,23809,0.004163484,0.018853022,0.485972991,12559,25843,,,0.343431572,8763,25516,, -32,003,32003,NV,Clark County,2024,1,8192.644498,32939,6465785,8062.465105,8322.823891,0,10031.95433,7884.545737,12179.36293,,4463.544817,4157.00654,4770.083095,,14062.48069,13575.55253,14549.40885,,6165.431101,5969.238669,6361.623534,,8669.146788,8449.781878,8888.511699,,16494.45553,14470.27142,18518.63964,,,0.191,,,0.167,0.219,4.25779792,,,3.55204375,5.039275775,5.514501095,,,4.702354237,6.406978954,0.091612826,16746,182791,0.090290336,0.092935315,0,0.072900159,0.052615445,0.093184872,0.100946577,0.096192173,0.105700981,0.146265735,0.142242128,0.150289342,0.078468057,0.076513203,0.080422911,0.074696896,0.072464562,0.076929229,0.089225589,0.075989724,0.102461455,0.097645429,0.091394977,0.103895881,0.164,,,0.137,0.192,0.313,,,0.269,0.36,7.8,0.05186814,0.12,,,0.249,,,0.214,0.287,0.947137029,2145702,2265461,,,0.141020658,,,0.119227727,0.165896149,0.278688525,289,1037,0.263262178,0.294272186,563.8,12926,2292476,,,18.3561738,8543,465402,17.96691985,18.74542775,15.43209877,10.41197223,22.03028055,3.649433232,3.026854145,4.272012319,32.95040242,31.47497095,34.42583389,22.13595955,21.49757783,22.77434127,9.434542575,8.906638956,9.962446193,19.2254875,14.98721069,24.29024686,18.96938013,17.31978505,20.61897522,0.143501255,276386,1926018,0.138735298,0.148267212,0.000546134,1252,2292476,,,1831.051118,0.000668967,1554,2322985,,,1494.842342,0.002398638,5572,2322985,,,416.9032663,3028,,,,,3701,2342,5331,3115,2724,0.32,,,,,0.25,0.28,0.28,0.19,0.35,0.35,,,,,0.27,0.36,0.23,0.25,0.38,0.864531283,1348993,1560375,,,0.58943394,383102,649949,,,0.060022991,68663,1143945,,,0.179,90607,,0.164702128,0.193297872,0.258339248,0.201334359,0.315344136,0.119227765,0.101675123,0.136780407,0.278465707,0.258543985,0.298387429,0.223532353,0.212110502,0.234954204,0.106293581,0.095121294,0.117465867,4.475489873,135670,30314,4.380915693,4.570064052,0.292930531,150537,513900,0.283230779,0.302630284,3.542021814,812,2292476,,,76.89056908,8697,11310880,75.27455771,78.50658045,77.90285514,55.65494185,106.0815779,36.17485336,32.67321797,39.67648875,106.6504095,101.1245634,112.1762556,40.93718262,38.84301715,43.03134809,108.6714014,105.6859332,111.6568696,77.40793984,59.48238637,99.03838118,8.4,,,,,1,,,,,0.200791076,162445,809025,0.196272771,0.205309381,0.161134155,0.156609428,0.165658881,0.044090109,0.041932191,0.046248026,0.008541145,0.007476441,0.009605849,0.741728575,771776,1040510,0.736439039,0.747018112,0.683737568,0.644731237,0.722743898,0.727195447,0.71482353,0.739567364,0.707780634,0.693355573,0.722205695,0.735991341,0.727640918,0.744341764,0.765216373,0.759114483,0.771318263,0.342,,1040510,0.335155415,0.348844585,77.19464988,,,77.07249999,77.31679978,79.09999408,76.22996079,81.97002736,84.15247209,83.67169962,84.63324456,71.79919786,71.42253138,72.17586433,81.71752415,81.32029053,82.11475776,76.1520541,75.97666442,76.32744378,69.03248983,67.64864071,70.41633895,415.9088638,32939,6465785,411.3225744,420.4951532,462.1448223,390.2115499,534.0780947,237.7925689,227.5658428,248.019295,660.2027642,642.6184296,677.7870988,307.3402006,298.9046754,315.7757257,450.7882732,443.7855503,457.790996,793.8731775,716.6344131,871.111942,49.39069485,1128,2283831,46.50834523,52.27304446,,,,31.75014579,23.48893264,41.97537653,107.7472932,96.08656912,119.4080172,40.73811428,36.77049966,44.7057289,40.89505327,35.93362638,45.85648015,73.3758537,39.06955179,125.4749445,5.398891039,999,185038,5.064096866,5.733685211,,,,2.719150589,1.959724572,3.675501669,9.969038141,8.827539185,11.1105371,4.800570582,4.297632052,5.303509113,3.652183254,3.151003465,4.153363042,,,,10.91211007,8.796700838,13.38273431,0.13,,,0.114,0.148,0.175,,,0.154,0.197,0.109,,,0.096,0.124,503.4,9694,1925839,,,0.12,266890,,,,0.05186814,101208.6932,1951269,,,25.01762142,1720,6875154,23.83529372,26.19994912,35.22254243,17.58296627,63.02285787,5.912739502,4.243083951,8.021298779,36.48553944,32.37730207,40.59377682,13.39161266,11.86082383,14.92240149,36.40325816,34.16919092,38.63732541,19.64096319,9.418605288,36.12043061,0.368,,,0.358,0.378,0.16526974,233267,1411432,0.159312293,0.171227187,0.086404398,46683,540285,0.079255462,0.093553334,0.001087825,2527,2322985,,,919.265928,0.8,20734.4,25918,,,0.104304022,11533,110571,0.094888366,0.113719678,2.952550509,,,,,,3.389433391,2.48505595,2.777425758,3.388927559,2.803318729,,,,,,3.340785103,2.290785889,2.643807488,3.211785649,0.113427892,,,,,-6626.145,,,,,0.881540055,46823,53115,0.864858735,0.898221375,70838,,,69374.85106,72301.14894,59883,53379.85106,66386.14894,79622,77485.65957,81758.34043,47413,45809.25532,49016.74468,63457,62061.76596,64852.23404,78718,77477.65957,79958.34043,,,,,,0.899753928,279720,310885,,,38.69239709,,,,,0.404994495,,70838,,,2.072638225,281,135576,,,7.727189148,1204,15581345,7.290709126,8.163669171,,,,2.454093913,1.736662913,3.368435633,26.38868374,24.02050428,28.7568632,6.206008028,5.508367644,6.903648412,5.224465425,4.671559975,5.777370875,15.43602223,8.992051783,24.7145669,18.39122073,2151,11310880,17.6021011,19.18034036,19.01708797,,,,10.5824087,8.645782737,12.51903466,13.38932807,11.40793716,15.37071898,8.796831679,7.786624928,9.80703843,26.97879928,25.49144924,28.46614933,18.70954801,10.69412326,30.38313381,16.69189312,1888,11310880,15.93895259,17.44483364,,,,5.911500427,4.581331634,7.507396578,29.88596381,26.96079354,32.81113408,9.509250186,8.499938839,10.51856153,21.60618039,20.27497885,22.93738194,23.3452517,14.05536654,36.45650236,10.23018231,1594,15581345,9.727960828,10.73240379,15.56794701,7.771463058,27.85535752,6.006071945,4.847675213,7.357843899,14.60505767,12.84325451,16.36686082,8.124971037,7.326725761,8.923216313,11.86547687,11.03223221,12.69872153,9.988014383,4.985980793,17.87131671,,,,,,,,0.65394259,972308,1486840,,,0.658,,,,,196.6390517,,,,,0.561901181,467708,832367,0.557399248,0.566403114,0.178272576,143677,805940,0.173636517,0.182908636,0.888653683,739686,832367,0.884583221,0.892724145,2322985,,,,,0.221784041,515201,2322985,,,0.157849922,366683,2322985,,,0.124869941,290071,2322985,,,0.012666892,29425,2322985,,,0.112404084,261113,2322985,,,0.009689688,22509,2322985,,,0.326374471,758163,2322985,,,0.388358513,902151,2322985,,,0.061318782,130778,2132756,,,0.498405285,1157788,2322985,,,0.01268925,28747,2265461,, -32,005,32005,NV,Douglas County,2024,1,6840.205173,674,129749,5827.539283,7852.871063,0,,,,2,,,,2,,,,2,6182.950175,3961.532843,9199.739757,1,7039.389868,5844.614119,8234.165616,,,,,2,,0.143,,,0.12,0.17,4.002223862,,,3.156892036,4.886962253,5.409018643,,,4.392836248,6.454958053,0.090619308,199,2196,0.078612622,0.102625993,0,,,,,,,,,,0.134570766,0.102352024,0.166789508,0.077070064,0.06387737,0.090262757,,,,,,,0.145,,,0.113,0.181,0.288,,,0.229,0.354,7.8,0.120388224,0.087,,,0.187,,,0.15,0.23,0.808741513,40023,49488,,,0.158631683,,,0.126929444,0.194792421,0.333333333,11,33,0.241734343,0.424691959,192.5,96,49870,,,7.674886764,61,7948,5.870680242,9.858713125,,,,,,,,,,9.87797792,5.754286153,15.81559954,7.037170697,5.004116292,9.620044003,,,,,,,0.102208092,3504,34283,0.087910219,0.116505964,0.000521356,26,49870,,,1918.076923,0.000745547,37,49628,,,1341.297297,0.001591843,79,49628,,,628.2025317,1334,,,,,,,,,1328,0.49,,,,,0.33,0.39,,0.56,0.49,0.44,,,,,0.45,0.48,,0.32,0.45,0.933887702,36275,38843,0.923605116,0.944170287,0.656644744,6290,9579,0.587972278,0.725317209,0.039976511,885,22138,,,0.112,814,,0.071489362,0.152510638,0.273809524,0.158709626,0.388909422,0.156682028,0,0.606387332,0.016949153,0,0.848604448,0.05403868,0.013819533,0.094257827,0.074426297,0.042760041,0.106092554,4.319159483,156833,36311,3.902155178,4.736163789,0.215724751,1649,7644,0.151554631,0.279894872,7.419290154,37,49870,,,87.88459731,215,244639,76.13698492,99.63220969,,,,,,,,,,50.0031252,28.58110649,81.20194261,96.84094639,83.07080829,110.6110845,,,,3.8,,,,,0,,,,,0.146179402,3080,21070,0.124430382,0.167928422,0.121770335,0.101306631,0.142234039,0.023730422,0.015171499,0.032289346,0.007593735,0.002657423,0.012530047,0.740469208,15655,21142,0.713650648,0.767287768,0.819672131,0.626271488,1,0.713043478,0.522222798,0.903864159,,,,0.728924786,0.649923549,0.807926022,0.709435594,0.674079787,0.744791402,0.377,,21142,0.329804386,0.424195614,79.98180518,,,79.11041433,80.85319602,,,,,,,,,,86.54986738,81.03498255,92.06475221,79.5070577,78.53224927,80.48186613,,,,298.5488528,674,129749,271.0520311,326.0456744,,,,,,,,,,242.7055163,177.6909418,323.7351468,306.113055,274.32679,337.8993201,,,,46.49811101,16,34410,26.57768804,75.51001917,,,,,,,,,,,,,48.1316181,24.02713034,86.1207601,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.113,,,0.095,0.132,0.169,,,0.145,0.196,0.08,,,0.067,0.095,109.6,49,44720,,,0.087,4270,,,,0.120388224,5657.885384,46997,,,18.26014622,27,147863,12.03355142,26.56755405,,,,,,,,,,,,,21.10915969,13.66073515,31.16128386,,,,0.339,,,0.323,0.355,0.105486979,2803,26572,0.088806128,0.12216783,0.094202899,767,8142,0.064415665,0.123990133,0.001047796,52,49628,,,954.3846154,0.84,402.36,479,,,,,,,,3.160700528,,,,,,,,2.894508763,3.287541657,3.045988176,,,,,,,,2.745469303,3.167899064,0.022737992,,,,,2208.895,,,,,0.756440351,50916,67310,0.68304093,0.829839771,91960,,,82646.12766,101273.8723,40568,16368.85106,64767.14894,57083,10255.08511,103910.9149,,,,67110,40544.55319,93675.44681,86398,81292.46809,91503.53192,,,,,,0.275874907,1482,5372,,,87.55410504,,,,,0.235830796,,91960,,,7.294832827,12,1645,,,3.525585468,12,340369,1.821721458,6.158488302,,,,,,,,,,,,,3.653368406,1.751932156,6.718674573,,,,28.87146842,74,244639,21.97829945,37.24209073,30.2486521,,,,,,,,,,,,,34.81625077,25.92298554,45.77693994,,,,20.84704401,51,244639,15.52199357,27.41001287,,,,,,,,,,,,,24.46508119,18.03861957,32.43714828,,,,9.401561247,32,340369,6.430660933,13.27219931,,,,,,,,,,,,,9.498757855,6.204903995,13.91788108,,,,,,,,,,,0.870664795,34117,39185,,,0.674,,,,,40.41361014,,,,,0.767249179,16113,21001,0.748019845,0.786478512,0.141926637,2898,20419,0.117946667,0.165906607,0.92709871,19470,21001,0.914970433,0.939226986,49628,,,,,0.149089224,7399,49628,,,0.327315225,16244,49628,,,0.007515918,373,49628,,,0.021721609,1078,49628,,,0.021862658,1085,49628,,,0.002941888,146,49628,,,0.134581285,6679,49628,,,0.796284356,39518,49628,,,0.011527859,552,47884,0.005883207,0.017172511,0.493209479,24477,49628,,,0.297304397,14713,49488,, -32,007,32007,NV,Elko County,2024,1,9470.719807,742,152363,8528.460814,10412.9788,0,17138.85667,11478.1613,24614.25709,,,,,2,,,,2,7714.134738,6006.392254,9421.877223,,9757.903222,8564.479956,10951.32649,,,,,2,,0.185,,,0.159,0.214,4.376303802,,,3.493618822,5.325425309,5.440840663,,,4.391945301,6.551865305,0.082089552,418,5092,0.074549819,0.089629285,0,0.084158416,0.045872473,0.122444358,,,,,,,0.087047354,0.072466574,0.101628134,0.077261307,0.067986819,0.086535794,,,,0.078740158,0.031897296,0.125583019,0.18,,,0.146,0.217,0.348,,,0.282,0.417,8.5,0.040856948,0.091,,,0.25,,,0.207,0.298,0.780194406,41898,53702,,,0.180594084,,,0.14469263,0.219455059,0.350877193,20,57,0.282978173,0.418257702,270.8,146,53915,,,24.59839357,294,11952,21.78656298,27.41022417,20.23608769,10.4562818,35.34837276,,,,,,,29.89949749,24.5273679,35.27162707,22.15464813,18.64409773,25.66519853,,,,,,,0.1124551,5197,46214,0.095774249,0.129135951,0.000352407,19,53915,,,2837.631579,0.000481072,26,54046,,,2078.692308,0.000980646,53,54046,,,1019.735849,2297,,,,,3931,,,1590,2226,0.27,,,,,0.19,0.31,,0.2,0.29,0.3,,,,,0.26,0.52,,0.29,0.3,0.88900744,30829,34678,0.873362273,0.904652607,0.538152081,8160,15163,0.481919812,0.59438435,0.032415926,828,25543,,,0.11,1541,,0.069489362,0.150510638,0.190641248,0.109945509,0.271336987,,,,0.009803922,0,0.540358443,0.14092751,0.073365349,0.208489672,0.104912146,0.061718481,0.148105811,4.003594967,147004,36718,3.247853671,4.759336264,0.188594936,2659,14099,0.136918152,0.24027172,5.007882778,27,53915,,,99.69487327,264,264808,87.66871449,111.7210321,178.2098015,111.6831338,269.8117812,,,,,,,74.47374421,55.09608595,98.45823937,107.7451059,92.38399154,123.1062202,,,,4.2,,,,,0,,,,,0.106130165,1965,18515,0.082088985,0.130171345,0.081649372,0.060294769,0.103003975,0.025924926,0.014334192,0.037515659,0.004590872,0,0.009597449,0.657878484,17043,25906,0.615732675,0.700024292,0.654268808,0.532792198,0.775745419,,,,,,,0.642868893,0.551995968,0.733741818,0.705769115,0.655572333,0.755965897,0.189,,25906,0.154714907,0.223285093,76.56933749,,,75.65289449,77.48578048,71.71318595,67.15961562,76.26675628,,,,,,,82.71040936,78.3352574,87.08556131,75.87085708,74.82470791,76.91700625,,,,441.7973996,742,152363,409.4346871,474.1601121,653.7130851,478.6001388,871.9616464,,,,,,,332.6801173,267.5671018,397.7931328,463.8519489,424.5264295,503.1774682,,,,67.34222678,42,62368,48.53435373,91.02712734,,,,,,,,,,74.24272421,41.55308916,122.4520831,71.62929087,46.79063093,104.9535073,,,,6.152662949,32,5201,4.208416903,8.685724299,,,,,,,,,,,,,,,,,,,,,,0.13,,,0.113,0.15,0.182,,,0.159,0.208,0.099,,,0.085,0.116,73.1,32,43777,,,0.091,4870,,,,0.040856948,1994.554483,48818,,,14.40209394,23,159699,9.129692132,21.61021227,,,,,,,,,,,,,16.1204673,9.390766262,25.81042977,,,,0.359,,,0.345,0.372,0.122598182,3924,32007,0.103534352,0.141662011,0.09302482,1383,14867,0.065620565,0.120429075,0.00074011,40,54046,,,1351.15,0.790322581,539,682,,,,,,,,2.868787234,,,,,,,,2.600171783,3.017451991,2.678099976,,,,,,,,2.380772211,2.84860452,0.189844696,,,,,2085.36,,,,,0.604928249,48436,80069,0.547615048,0.662241451,88757,,,81211.29787,96302.70213,44438,24132.6383,64743.3617,66698,35280.80851,98115.19149,84712,20457.3617,148966.6383,60154,39706.85106,80601.14894,93718,83054.17021,104381.8298,,,,,,0.34410948,3470,10084,,,84.01708527,,,,,0.240307807,,88757,,,2.916224814,11,3772,,,5.963497971,22,368911,3.737292429,9.028807595,,,,,,,,,,,,,4.902060908,2.532966404,8.562913886,,,,36.91431992,96,264808,29.79462039,45.22253581,36.25268119,,,,,,,,,,21.89034356,12.25185912,36.10479272,42.65490079,33.3138314,53.80335334,,,,33.60925652,89,264808,26.99099277,41.3590822,,,,,,,,,,19.7583403,10.52048407,33.78736366,39.90559476,31.10836884,50.41831828,,,,17.61942582,65,368911,13.59830087,22.45740458,,,,,,,,,,13.11618756,6.77732551,22.91134009,19.60824363,14.45757096,25.9976863,,,,,,,,,,,0.603794858,21957,36365,,,0.543,,,,,37.78743313,,,,,0.683690626,13012,19032,0.654820857,0.712560396,0.099056347,1816,18333,0.074301264,0.123811429,0.877259353,16696,19032,0.853819851,0.900698855,54046,,,,,0.264681938,14305,54046,,,0.132276209,7149,54046,,,0.009565925,517,54046,,,0.064704141,3497,54046,,,0.013932576,753,54046,,,0.002571883,139,54046,,,0.258039448,13946,54046,,,0.652777264,35280,54046,,,0.013454174,671,49873,0.007305861,0.019602487,0.479424934,25911,54046,,,0.517988157,27817,53702,, -32,009,32009,NV,Esmeralda County,2024,0,,,,,,2,,,,2,,,,2,,,,2,,,,2,,,,2,,,,2,,0.225,,,0.192,0.262,4.861819727,,,3.975053359,5.85241945,5.90162438,,,4.755229276,7.135335065,,,,,,0,,,,,,,,,,,,,,,,,,,,,,0.216,,,0.175,0.262,0.36,,,0.275,0.45,3.3,0.437401427,0.139,,,0.278,,,0.226,0.338,0.096021948,70,729,,,0.131429787,,,0.101318068,0.164584066,0.055555556,1,18,0.002373261,0.195855257,0,0,743,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.208747515,105,503,0.177768792,0.239726238,0,0,743,,,-743,0,0,744,,,-744,0,0,744,,,-744,,,,,,,,,,,0.18,,,,,,,,,0.16,0.19,,,,,,,,,0.19,0.781214204,682,873,0.68099825,0.881430158,0.54787234,103,188,0.16460588,0.931138801,0.036674817,15,409,,,0.214,22,,0.129404255,0.298595745,,,,,,,,,,,,,0.138888889,0,0.826767332,10.53233789,125556,11921,0,22.31147895,0,0,96,0,0.245732144,0,0,743,,,,,,,,,,,,,,,,,,,,,,,,,,4.1,,,,,0,,,,,0.172815534,89,515,0,0.378829558,0.153398058,0,0.374779571,0.00776699,0,0.062275411,0.00776699,0,0.050244021,0.667506297,265,397,0.499445846,0.835566748,,,,,,,,,,,,,,,,0.189,,397,0,0.474967376,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.15,,,0.129,0.174,0.194,,,0.169,0.223,0.118,,,0.1,0.138,,,,,,0.139,140,,,,0.437401427,342.4853175,783,,,,,,,,,,,,,,,,,,,,,,,,,,0.367,,,0.352,0.38,0.214646465,85,396,0.178901784,0.250391146,0.188034188,22,117,0.127268231,0.248800146,0,0,744,,,-744,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.355442343,,,,,9396.016,,,,,0.896101868,63125,70444,0.479297261,1.312906476,57501,,,49141.51064,65860.48936,,,,,,,,,,,,,58125,29769.93617,86480.06383,,,,,,1,73,73,,,,,,,,0.390671467,,57501,,,,,14,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.588957055,480,815,,,0.212,,,,,7.860291836,,,,,0.517525773,251,485,0.28829383,0.746757717,0.281927711,117,415,0,0.615400899,0.822680412,399,485,0.664285932,0.981074893,744,,,,,0.13844086,103,744,,,0.313172043,233,744,,,0.040322581,30,744,,,0.071236559,53,744,,,0.010752688,8,744,,,0.001344086,1,744,,,0.213709677,159,744,,,0.620967742,462,744,,,0.055208333,53,960,0,0.144199648,0.443548387,330,744,,,1,729,729,, -32,011,32011,NV,Eureka County,2024,1,11844.04032,34,5595,6306.452648,20253.66967,1,,,,2,,,,2,,,,2,,,,2,13383.81521,6915.612621,23378.83173,1,,,,2,,0.2,,,0.171,0.232,4.715468531,,,3.75306861,5.832915929,5.991347096,,,4.759514263,7.366513594,0.097560976,12,123,0.045122445,0.149999507,1,,,,,,,,,,,,,0.12244898,0.05754717,0.187350789,,,,,,,0.211,,,0.171,0.253,0.356,,,0.272,0.448,7.7,0.062523653,0.12,,,0.265,,,0.216,0.319,0.259838275,482,1855,,,0.16095999,,,0.125175623,0.202508808,0.333333333,4,12,0.175768434,0.488588466,0,0,1903,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.077021823,120,1558,0.061532461,0.092511185,0,0,1903,,,-1903,0.001073537,2,1863,,,931.5,,0,1863,,,,1964,,,,,,,,,1990,0.25,,,,,,,,,0.24,0.11,,,,,,,,,0.1,0.95229523,1058,1111,0.849039996,1,0.486055777,122,251,0.156423575,0.815687979,0.029029029,29,999,,,0.147,59,,0.091,0.203,,,,,,,,,,0.225225225,0,0.697182181,0.356913183,0.019132932,0.694693435,3.434703224,114750,33409,0.640482063,6.228924385,0.206161137,87,422,0,0.509082523,0,0,1903,,,,,,,,,,,,,,,,,,,,,,,,,,3.6,,,,,0,,,,,0.075757576,50,660,0.011663172,0.139851979,0.053543307,0,0.151222994,0.045454546,0,0.114074095,0.006060606,0,0.030587759,0.573402418,332,579,0.407916157,0.738888679,,,,,,,,,,,,,0.330496454,0.224485116,0.436507792,0.524,,579,0.216508012,0.831491988,75.20502047,,,70.28665158,80.12338937,,,,,,,,,,,,,,,,,,,482.3750135,34,5595,323.0541171,692.7709835,,,,,,,,,,,,,552.8867579,364.3558573,804.421205,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.141,,,0.122,0.163,0.196,,,0.17,0.225,0.109,,,0.093,0.128,,,,,,0.12,190,,,,0.062523653,124.2344988,1987,,,,,,,,,,,,,,,,,,,,,,,,,,0.357,,,0.342,0.372,0.078761062,89,1130,0.060888722,0.096633402,0.072072072,32,444,0.042284838,0.101859306,0.000536769,1,1863,,,1863,,,,,,,,,,,3.090781336,,,,,,,,,3.134036378,2.799711252,,,,,,,,,2.822240413,0.025332118,,,,,16767.83,,,,,0.258728592,22283,86125,0.076999904,0.44045728,80291,,,68205.7234,92376.2766,,,,,,,,,,,,,85250,43883.87234,126616.1277,,,,,,0.267241379,93,348,,,,,,,,0.28539936,,80291,,,,,126,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.769465649,1008,1310,,,0.264,,,,,3.814008442,,,,,0.759649123,433,570,0.601636566,0.91766168,0.084269663,45,534,0,0.225202473,0.959649123,547,570,0.883207151,1,1863,,,,,0.21900161,408,1863,,,0.186795491,348,1863,,,0.015029522,28,1863,,,0.039184112,73,1863,,,0.011272142,21,1863,,,0.002147075,4,1863,,,0.155126141,289,1863,,,0.759527644,1415,1863,,,0,0,1516,0,0.0440128,0.446591519,832,1863,,,1,1855,1855,, -32,013,32013,NV,Humboldt County,2024,1,10327.67955,275,48779,8584.284582,12071.07453,0,,,,2,,,,2,,,,2,7685.534537,5147.123099,11037.70961,,10349.21879,8150.796374,12547.64121,,,,,2,,0.187,,,0.158,0.217,4.310302011,,,3.404759081,5.281440476,5.706592146,,,4.552810603,6.852842137,0.07982401,127,1591,0.066506495,0.093141525,0,,,,,,,,,,0.088888889,0.064885719,0.112892059,0.072961373,0.056264178,0.089658569,,,,,,,0.187,,,0.15,0.227,0.354,,,0.277,0.434,8.3,0.051840429,0.097,,,0.259,,,0.209,0.313,0.512004628,8850,17285,,,0.181131884,,,0.143579248,0.222777391,0.318181818,7,22,0.204127461,0.433005911,198.3,35,17648,,,26.89618074,100,3718,21.62452932,32.16783217,,,,,,,,,,25.72559367,18.29341193,35.16773342,28.00829876,21.04069604,36.54475435,,,,,,,0.137745131,2044,14839,0.116298323,0.15919194,0.000453309,8,17648,,,2206,0.00040528,7,17272,,,2467.428571,0.001157944,20,17272,,,863.6,3600,,,,,,,,,3751,0.26,,,,,,,,0.27,0.27,0.14,,,,,0.07,,,0.17,0.14,0.854131758,9685,11339,0.823724766,0.88453875,0.554300208,2404,4337,0.463356091,0.645244324,0.033208425,257,7739,,,0.128,578,,0.080340426,0.175659575,0.802139037,0.625400595,0.97887748,,,,,,,0.253713607,0.161107551,0.346319662,0.134858044,0.064094831,0.205621257,4.62894629,135480,29268,3.813917063,5.443975516,0.184672815,841,4554,0.116135769,0.253209861,7.366273799,13,17648,,,103.4648984,88,85053,82.98187397,127.4716486,,,,,,,,,,59.34214988,32.44290555,99.56604409,114.7812779,88.2010855,146.8551156,,,,4.7,,,,,0,,,,,0.114741641,755,6580,0.079632618,0.149850665,0.067744419,0.037962919,0.097525919,0.050911854,0.027801466,0.074022243,0.003799392,0,0.010728154,0.609589041,4984,8176,0.551546513,0.667631569,,,,,,,,,,0.590056285,0.468838547,0.711274023,0.616873449,0.543747645,0.689999253,0.181,,8176,0.126620551,0.235379449,75.33707812,,,73.8101468,76.86400943,,,,,,,,,,86.40255077,76.40260028,96.40250126,74.49117156,72.75388947,76.22845365,,,,475.6682061,275,48779,417.3447652,533.991647,,,,,,,,,,323.1658461,228.6913865,443.5703725,493.5793585,422.0026355,565.1560816,,,,60.12626516,12,19958,31.06811859,105.0284851,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.129,,,0.111,0.149,0.181,,,0.155,0.207,0.101,,,0.085,0.118,77.4,11,14207,,,0.097,1680,,,,0.051840429,856.8186115,16528,,,19.43974651,10,51441,9.322114065,35.75038596,,,,,,,,,,,,,,,,,,,0.352,,,0.338,0.366,0.149875931,1510,10075,0.124854654,0.174897207,0.114066909,566,4962,0.078322228,0.149811589,0.00040528,7,17272,,,2467.428571,0.94,198.34,211,,,,,,,,2.718743677,,,,,,,,2.609833337,2.86989571,2.654827183,,,,,,,,2.520427018,2.78853746,0.099904486,,,,,2605.385,,,,,0.548713833,43068,78489,0.404653861,0.692773804,80255,,,71862.14894,88647.85106,33170,15134.42553,51205.57447,,,,,,,78682,53445.06383,103918.9362,77143,66769.89362,87516.10638,,,,,,0.461730449,1110,2404,,,,,,,,0.122359978,,80255,,,1.684919966,2,1187,,,,,,,,,,,,,,,,,,,,,,,,,,24.63456735,21,85053,15.04743372,38.04609129,24.69048711,,,,,,,,,,,,,22.7495335,12.11316847,38.90239513,,,,25.86622459,22,85053,16.21022524,39.16177488,,,,,,,,,,,,,25.50695064,13.94488727,42.79632904,,,,16.81887751,20,118914,10.27340732,25.97539222,,,,,,,,,,,,,16.85968849,8.977074054,28.83058078,,,,,,,,,,,0.676621681,7771,11485,,,0.576,,,,,34.09929001,,,,,0.701402806,4900,6986,0.660807106,0.741998506,0.099276589,645,6497,0.063494786,0.135058392,0.867735471,6062,6986,0.829624399,0.905846543,17272,,,,,0.265863826,4592,17272,,,0.160375174,2770,17272,,,0.008974062,155,17272,,,0.045044002,778,17272,,,0.012158407,210,17272,,,0.003300139,57,17272,,,0.284506716,4914,17272,,,0.63710051,11004,17272,,,0.0358697,577,16086,0.021838133,0.049901268,0.48095183,8307,17272,,,0.389875615,6739,17285,, -32,015,32015,NV,Lander County,2024,1,9651.613714,102,15651,6821.307499,12481.91993,0,,,,2,,,,2,,,,2,,,,2,7582.219111,5115.691394,10824.08924,,,,,2,,0.201,,,0.172,0.234,4.642236633,,,3.747294672,5.787373649,5.952603225,,,4.815288184,7.298657397,0.125968992,65,516,0.097338655,0.15459933,0,,,,,,,,,,0.181818182,0.109740087,0.253896276,0.108695652,0.076893885,0.14049742,,,,,,,0.205,,,0.168,0.247,0.351,,,0.276,0.444,8.5,0.041816889,0.089,,,0.265,,,0.218,0.323,0.831531217,4768,5734,,,0.177962352,,,0.142367528,0.224788313,0.142857143,1,7,0.008995928,0.386311364,396.7,23,5798,,,26.12244898,32,1225,17.86773576,36.87710374,,,,,,,,,,,,,28.13299233,17.63079651,42.59368848,,,,,,,0.129260183,622,4812,0.107813374,0.150706991,0.000344947,2,5798,,,2899,0.000173431,1,5766,,,5766,0.000346861,2,5766,,,2883,599,,,,,13380,,,,358,0.24,,,,,,,,0.38,0.22,0.12,,,,,,,,0.07,0.13,0.902439024,3478,3854,0.882254578,0.922623471,0.597527473,870,1456,0.430460506,0.764594439,0.033621838,101,3004,,,0.137,206,,0.084574468,0.189425532,,,,,,,0.642857143,0.069443905,1,0.273015873,0,0.574137889,0.102762431,0.030324881,0.175199981,4.886473266,143848,29438,2.468617366,7.304329166,0.282767798,425,1503,0.122754851,0.442780744,6.898930666,4,5798,,,110.2731929,31,28112,74.9252845,156.5239951,,,,,,,,,,,,,107.8250154,66.74538398,164.8219898,,,,3.6,,,,,0,,,,,0.136069115,315,2315,0.060845314,0.211292915,0.113240418,0.036242448,0.190238388,0.010799136,0,0.037039055,0.010799136,0,0.031265385,0.64882227,1515,2335,0.570339556,0.727304984,,,,,,,,,,,,,0.654252017,0.552029605,0.75647443,0.113,,2335,0.024693033,0.201306967,75.20133016,,,72.83965955,77.56300077,,,,,,,,,,,,,76.18044589,73.82284253,78.53804926,,,,532.169636,102,15651,425.29329,639.0459821,,,,,,,,,,,,,491.2502631,382.2220271,621.7086487,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.139,,,0.121,0.161,0.193,,,0.167,0.221,0.106,,,0.09,0.125,,,,,,0.089,510,,,,0.041816889,241.4925358,5775,,,,,,,,,,,,,,,,,,,,,,,,,,0.354,,,0.339,0.368,0.135791091,442,3255,0.110769814,0.160812367,0.117393977,191,1627,0.079266317,0.155521636,0.000346861,2,5766,,,2883,0.675,44.55,66,,,,,,,,3.103050195,,,,,,,,3.066420533,3.139843292,2.866049592,,,,,,,,2.660441502,2.905379628,0.007539567,,,,,1133.412,,,,,0.601990793,60417,100362,0.229138285,0.974843301,90190,,,77062.17021,103317.8298,,,,,,,,,,,,,99583,80253.46809,118912.5319,,,,,,0.340776699,351,1030,,,,,,,,0.123406143,,90190,,,8.163265306,2,245,,,,,,,,,,,,,,,,,,,,,,,,,,40.93592022,11,28112,19.63036491,75.28261478,39.1291975,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.729551451,2765,3790,,,0.436,,,,,10.61325577,,,,,0.755762411,1705,2256,0.682213287,0.829311536,0.127581459,278,2179,0.048866812,0.206296107,0.955230497,2155,2256,0.909338925,1,5766,,,,,0.263093999,1517,5766,,,0.165626084,955,5766,,,0.009191814,53,5766,,,0.054110302,312,5766,,,0.013007284,75,5766,,,0.000173431,1,5766,,,0.238120014,1373,5766,,,0.685917447,3955,5766,,,0.029858849,165,5526,0,0.063489187,0.485258411,2798,5766,,,1,5734,5734,, -32,017,32017,NV,Lincoln County,2024,1,6256.276953,79,13305,4008.514693,9308.84419,1,,,,2,,,,2,,,,2,,,,2,6559.458783,4006.687835,10130.55209,1,,,,2,,0.167,,,0.141,0.195,4.19135261,,,3.28839839,5.199680624,5.735507843,,,4.527136639,7.043984162,0.078651685,28,356,0.050687832,0.106615539,0,,,,,,,,,,,,,0.079365079,0.049514055,0.109216104,,,,,,,0.187,,,0.149,0.227,0.351,,,0.27,0.44,7.5,0.145915193,0.088,,,0.229,,,0.182,0.279,0.319182041,1436,4499,,,0.169646123,,,0.132350905,0.211133314,0.15,3,20,0.050642257,0.283837277,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.119634703,393,3285,0.098187895,0.141081512,0.000441989,2,4525,,,2262.5,0.000446229,2,4482,,,2241,0.000892459,4,4482,,,1120.5,2816,,,,,,,534,,2664,0.21,,,,,,,,,0.22,0.28,,,,,,,0.08,0.4,0.28,0.882334484,2812,3187,0.841136509,0.923532458,0.444545455,489,1100,0.299935877,0.589155033,0.03942829,80,2029,,,0.18,163,,0.112085106,0.247914894,,,,,,,,,,0.077348066,0,0.200406486,0.076388889,0.01145167,0.141326108,2.851112917,108750,38143,2.195524578,3.506701256,0.278654048,265,951,0.060748039,0.496560058,0,0,4525,,,75.12553873,19,25291,45.23048185,117.3178347,,,,,,,,,,,,,79.63275248,46.38901288,127.4997509,,,,4.1,,,,,0,,,,,0.109725686,220,2005,0.048326289,0.171125082,0.095429432,0.028795285,0.16206358,0.014962594,0,0.047566431,0,0,0.015967775,0.625075712,1032,1651,0.480864325,0.769287099,,,,,,,,,,,,,0.633088726,0.484026872,0.78215058,0.244,,1651,0.105003688,0.382996312,79.03816294,,,76.64944856,81.42687732,,,,,,,,,,,,,78.88168148,76.28078478,81.48257817,,,,356.8485144,79,13305,275.9866152,453.9988055,,,,,,,,,,,,,357.7597593,270.2478774,464.5808055,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.123,,,0.104,0.141,0.18,,,0.155,0.207,0.089,,,0.074,0.105,0,0,3906,,,0.088,410,,,,0.145915193,779.9167088,5345,,,,,,,,,,,,,,,,,,,,,,,,,,0.352,,,0.336,0.367,0.126470588,301,2380,0.101449312,0.151491865,0.101372756,96,947,0.063245097,0.139500416,0.001115573,5,4482,,,896.4,0.475,66.5,140,,,,,,,,3.295317743,,,,,,,,,,3.140859762,,,,,,,,,,0.050197593,,,,,3947.352,,,,,0.80170297,60729,75750,0.370125515,1.233280426,63978,,,54295.95745,73660.04255,,,,,,,,,,,,,68990,57476.6383,80503.3617,,,,,,0.450959488,423,938,,,,,,,,0.197771109,,63978,,,,,194,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.592969697,2446,4125,,,0.345,,,,,9.013848656,,,,,0.736778116,1212,1645,0.666823798,0.806732433,0.066666667,107,1605,0.012172067,0.121161266,0.776899696,1278,1645,0.709867776,0.843931616,4482,,,,,0.209950915,941,4482,,,0.247880411,1111,4482,,,0.022311468,100,4482,,,0.02476573,111,4482,,,0.008478358,38,4482,,,0.005800982,26,4482,,,0.090807675,407,4482,,,0.820392682,3677,4482,,,0,0,4319,0,0.015448809,0.466755913,2092,4482,,,1,4499,4499,, -32,019,32019,NV,Lyon County,2024,1,9261.443593,1202,162778,8400.965117,10121.92207,0,23029.02626,14066.72752,35566.4633,1,,,,2,,,,2,5472.895367,4111.407441,7140.941282,,9933.841239,8864.834757,11002.84772,,,,,2,,0.177,,,0.151,0.207,4.256410821,,,3.361967469,5.19965203,5.612842223,,,4.563469669,6.715121431,0.087681677,368,4197,0.079124822,0.096238533,0,,,,0.171428571,0.083138142,0.259719001,,,,0.085,0.067714733,0.102285267,0.084691708,0.074419077,0.09496434,,,,0.0859375,0.037382899,0.134492101,0.188,,,0.153,0.227,0.369,,,0.299,0.436,7.7,0.097977931,0.1,,,0.248,,,0.205,0.296,0.653937706,38736,59235,,,0.170739865,,,0.135307529,0.206739101,0.396551724,23,58,0.331049515,0.460282828,316.9,193,60903,,,21.43592624,229,10683,18.65953552,24.21231696,42.90429043,22.84472769,73.36764329,,,,,,,22.80991736,17.74747721,28.86741028,20.14541048,16.72162637,23.56919459,,,,18.5528757,8.896825039,34.11939897,0.126516718,6058,47883,0.108644377,0.144389058,0.000131356,8,60903,,,7612.875,0.000194853,12,61585,,,5132.083333,0.001477633,91,61585,,,676.7582418,2292,,,,,,,,1952,2280,0.38,,,,,0.3,0.33,,0.27,0.38,0.34,,,,,0.35,0.33,0.23,0.3,0.34,0.873670275,37615,43054,0.853362758,0.893977792,0.55918149,8362,14954,0.498651748,0.619711231,0.048815812,1146,23476,,,0.15,1847,,0.104723404,0.195276596,0.407103825,0.227886452,0.586321198,0.153846154,0,0.918996851,,,,0.075825156,0.015727148,0.135923164,0.126578803,0.084753842,0.168403764,3.823385931,126967,33208,3.449279814,4.197492048,0.170171308,2096,12317,0.127246649,0.213095967,4.925865721,30,60903,,,116.5135246,334,286662,104.0178653,129.009184,,,,,,,,,,41.97031554,26.3025733,63.54356211,141.2235265,125.1890424,157.2580106,,,,5.3,,,,,0,,,,,0.118987342,2585,21725,0.094883553,0.143091131,0.099462993,0.075698324,0.123227662,0.022324511,0.01461151,0.030037512,0.001795167,0,0.003772253,0.779283115,20132,25834,0.750147475,0.808418756,0.823770492,0.658936266,0.988604718,,,,,,,0.724404379,0.645674744,0.803134014,0.720876586,0.669272956,0.772480216,0.46,,25834,0.414193471,0.505806529,74.91995876,,,74.25248551,75.58743201,,,,,,,,,,90.55972595,80.56199898,100.5574529,74.08112975,73.3019229,74.86033659,,,,488.8807043,1202,162778,458.7445965,519.0168122,801.6116491,540.8440134,1144.350473,,,,,,,304.8222634,242.4341921,378.364802,522.4199502,486.5730234,558.2668771,,,,33.61783987,18,53543,19.92406249,53.13068051,,,,,,,,,,,,,33.5028782,16.72451609,59.94590355,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.128,,,0.11,0.147,0.184,,,0.159,0.21,0.097,,,0.082,0.112,105.7,55,52030,,,0.1,5800,,,,0.097977931,5092.892844,51980,,,26.02811036,46,176732,19.05584807,34.71785173,,,,,,,,,,,,,29.4655873,20.85160327,40.44382069,,,,0.356,,,0.343,0.369,0.140623233,4973,35364,0.119176424,0.162070041,0.090168924,1185,13142,0.063956158,0.11638169,0.000308517,19,61585,,,3241.31579,0.88,553.52,629,,,,,,,,2.825783955,,,,,,,,2.74918513,2.850769939,2.752442997,,,,,,,,2.656647886,2.795520832,0.029489961,,,,,1519.414,,,,,0.794748797,46887,58996,0.726024604,0.863472989,74741,,,65769.08511,83712.91489,52143,15719.17021,88566.82979,58291,53579.85106,63002.14894,,,,69212,56866.97872,81557.02128,71471,66647.85106,76294.14894,,,,,,0.439937423,3937,8949,,,74.77791086,,,,,0.262800872,,74741,,,1.64095832,5,3047,,,3.567551589,14,392426,1.950413652,5.985745369,,,,,,,,,,,,,4.122776278,2.130298664,7.201660465,,,,30.40842038,94,286662,24.2201371,37.69581217,32.79123149,,,,,,,,,,,,,36.45768108,28.4737514,45.98640392,,,,28.95395972,83,286662,23.06166729,35.89278935,,,,,,,,,,,,,36.49064276,28.79784461,45.60704246,,,,21.40530954,84,392426,17.07371319,26.50122973,,,,,,,,,,17.17032967,8.872159897,29.99311047,23.36239891,18.14181689,29.61740745,,,,,,,,,,,0.723181818,30229,41800,,,0.678,,,,,30.72480515,,,,,0.763847145,17790,23290,0.733776627,0.793917662,0.128597401,2900,22551,0.104535205,0.152659598,0.894504079,20833,23290,0.872602187,0.916405972,61585,,,,,0.203637249,12541,61585,,,0.216659901,13343,61585,,,0.011772347,725,61585,,,0.034099213,2100,61585,,,0.019290412,1188,61585,,,0.004465373,275,61585,,,0.200681984,12359,61585,,,0.713956321,43969,61585,,,0.015732372,886,56317,0.011197866,0.020266878,0.481724446,29667,61585,,,0.446256436,26434,59235,, -32,021,32021,NV,Mineral County,2024,1,19723.94083,146,12098,14226.38937,25221.49229,0,27608.54508,14265.73812,48226.57215,1,,,,2,,,,2,,,,2,20242.04112,12626.40034,27857.6819,,,,,2,,0.234,,,0.203,0.265,5.161850394,,,4.158226071,6.248186339,6.321094156,,,5.077845694,7.626684733,0.077966102,23,295,0.047369625,0.108562578,1,,,,,,,,,,,,,0.091954023,0.049018107,0.134889939,,,,,,,0.242,,,0.203,0.286,0.373,,,0.293,0.46,4.9,0.327236,0.122,,,0.294,,,0.243,0.35,0.926218709,4218,4554,,,0.140772697,,,0.110636111,0.176113351,0.083333333,1,12,0.004083139,0.26580258,414.3,19,4586,,,25.35211268,18,710,15.02526871,40.06726798,,,,,,,,,,,,,38.19444444,19.06652905,68.34041151,,,,,,,0.114163614,374,3276,0.095099784,0.133227444,0.001090275,5,4586,,,917.2,0.000662983,3,4525,,,1508.333333,0.001325967,6,4525,,,754.1666667,2293,,,,,1502,,,,2464,0.22,,,,,0.22,,0.43,,0.21,0.2,,,,,0.09,,0.38,0.13,0.21,0.902543672,2945,3263,0.851410327,0.953677016,0.420916163,487,1157,0.268832482,0.572999843,0.040671073,80,1967,,,0.238,201,,0.153404255,0.322595745,0.510373444,0.344149293,0.676597595,,,,,,,0.171779141,0,0.387080238,0.102844639,0.022807218,0.18288206,5.021877611,96179,19152,3.137136854,6.906618368,0.394618834,352,892,0.289200395,0.500037273,0,0,4586,,,124.003543,28,22580,82.39945375,179.2196455,,,,,,,,,,,,,138.413346,83.33387604,216.1495853,,,,4.2,,,,,0,,,,,0.12371134,240,1940,0.062875633,0.184547048,0.09181532,0.026722854,0.156907787,0.020103093,0,0.041456074,0.010309278,0,0.03149162,0.791262136,1304,1648,0.709688663,0.872835609,,,,,,,,,,,,,0.690274841,0.566483846,0.814065837,0.201,,1648,0.089063395,0.312936605,67.83321913,,,64.37738233,71.28905593,,,,,,,,,,,,,67.52978868,62.82370034,72.23587703,,,,814.1838397,146,12098,664.2557848,964.1118946,1015.823932,636.6114502,1537.969642,,,,,,,,,,827.9558231,637.2793835,1018.632263,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.158,,,0.137,0.179,0.21,,,0.183,0.238,0.125,,,0.106,0.144,,,,,,0.122,550,,,,0.327236,1561.570193,4772,,,,,,,,,,,,,,,,,,,,,,,,,,0.381,,,0.368,0.393,0.125412541,304,2424,0.101582754,0.149242329,0.083986562,75,893,0.054199328,0.113773796,0.000662983,3,4525,,,1508.333333,,,,,,,,,,,2.926008112,,,,,,,,,3.026687733,2.522328264,,,,,,,,,2.60316675,0.178753238,,,,,-6930.418,,,,,0.691010639,45530,65889,0.498759368,0.88326191,55704,,,47302.80851,64105.19149,32138,24284.89362,39991.10638,,,,,,,,,,47234,33772.55319,60695.44681,,,,,,1,607,607,,,5.274839372,,,,,0.199806118,,55704,,,,,222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,47.60846796,15,31507,26.64609811,78.52292783,,,,,,,,,,,,,,,,,,,,,,,,,,0.621361816,2327,3745,,,0.477,,,,,18.72940906,,,,,0.738968634,1390,1881,0.628997094,0.848940173,0.135802469,242,1782,0.054936148,0.21666879,0.800637959,1506,1881,0.706934346,0.894341571,4525,,,,,0.190276243,861,4525,,,0.266298343,1205,4525,,,0.041325967,187,4525,,,0.179226519,811,4525,,,0.035801105,162,4525,,,0.002651934,12,4525,,,0.147624309,668,4525,,,0.592486188,2681,4525,,,0.00046729,2,4280,0,0.015725239,0.494143646,2236,4525,,,1,4554,4554,, -32,023,32023,NV,Nye County,2024,1,11196.8736,1373,129678,9996.523508,12397.22369,0,,,,2,,,,2,11852.2804,5916.615672,21207.00357,1,7457.107367,5459.539823,9946.736213,,12351.36544,10787.41748,13915.31341,,,,,2,,0.2,,,0.171,0.232,4.890169338,,,3.94301743,5.946068862,6.293230483,,,5.22089168,7.440983902,0.098826202,261,2641,0.087444369,0.110208035,0,,,,,,,0.164556962,0.082793537,0.246320388,0.083467095,0.0617479,0.10518629,0.09671848,0.082818235,0.110618725,,,,0.099009901,0.040760065,0.157259737,0.217,,,0.177,0.261,0.385,,,0.321,0.454,4.3,0.342121606,0.139,,,0.252,,,0.21,0.299,0.279079684,14398,51591,,,0.140704309,,,0.11385994,0.170454976,0.175675676,13,74,0.119126467,0.239293245,147.8,79,53450,,,25.81072138,195,7555,22.18796685,29.43347591,,,,,,,,,,24.87783208,18.79244699,32.30593426,28.19760884,23.25435006,33.14086763,,,,,,,0.131176826,4773,36386,0.112112997,0.150240656,0.000243218,13,53450,,,4111.538462,0.000182688,10,54738,,,5473.8,0.001461508,80,54738,,,684.225,2707,,,,,,,2516,4451,2766,0.29,,,,,0.27,0.31,0.32,0.21,0.29,0.28,,,,,0.49,0.35,0.23,0.24,0.28,0.866864785,35004,40380,0.850187573,0.883541997,0.459197925,4603,10024,0.392776432,0.525619418,0.057152694,996,17427,,,0.225,1991,,0.14993617,0.30006383,,,,,,,,,,0.130122518,0.022186153,0.238058883,0.189854452,0.106661065,0.27304784,4.561573071,109496,24004,3.988222283,5.13492386,0.243908154,2082,8536,0.162191903,0.325624405,4.490177736,24,53450,,,138.0616647,328,237575,123.1202316,153.0030979,,,,,,,,,,67.80948248,43.88272173,100.1001728,158.5623679,140.0555547,177.069181,,,,5.8,,,,,1,,,,,0.159958452,3080,19255,0.132209387,0.187707518,0.11640769,0.093045273,0.139770107,0.029602701,0.015162528,0.044042873,0.022331862,0.010664796,0.033998928,0.756766554,12526,16552,0.713051587,0.800481521,,,,,,,,,,0.732703214,0.673927897,0.79147853,0.730346821,0.691839952,0.76885369,0.307,,16552,0.249858178,0.364141822,73.57836649,,,72.74518129,74.41155168,,,,,,,73.14019802,67.97159791,78.30879813,78.97328897,76.63636254,81.31021539,72.492471,71.45762612,73.52731589,,,,562.656556,1373,129678,526.6392087,598.6739034,,,,,,,585.3296059,397.7030689,830.8286531,342.7422958,270.9235619,427.7578967,611.2684698,566.8121362,655.7248034,,,,76.5132623,27,35288,50.42272198,111.3227795,,,,,,,,,,,,,99.95240362,61.8721132,152.7878664,,,,9.2095165,24,2606,5.900710996,13.70303054,,,,,,,,,,,,,,,,,,,,,,0.141,,,0.122,0.163,0.199,,,0.174,0.227,0.103,,,0.088,0.12,190.5,90,47250,,,0.139,6990,,,,0.342121606,15034.87611,43946,,,31.75096435,47,148027,23.32941434,42.22205161,,,,,,,,,,,,,35.52236087,25.25987111,48.56023669,,,,0.357,,,0.343,0.368,0.147313314,4052,27506,0.123483526,0.171143101,0.08372591,782,9340,0.057513144,0.109938676,0.001041324,57,54738,,,960.3157895,0.83,347.77,419,,,,,,,,2.664278047,,,,,,,,2.768348377,2.700536426,2.428473437,,,,,,,,2.409704421,2.509652234,0.037550242,,,,,-1395.475,,,,,0.912150804,48292,52943,0.714101091,1.110200517,51933,,,46344.91489,57521.08511,37813,12186.44681,63439.55319,,,,37121,7792.489362,66449.51064,46623,33793.04255,59452.95745,53793,49340.40426,58245.59575,,,,,,1,5592,5566,,,43.40055716,,,,,0.443995148,,51933,,,1.85013876,4,2162,,,4.63714352,15,323475,2.595374027,7.648263041,,,,,,,,,,,,,5.328633206,2.837272761,9.112125066,,,,34.16441883,94,237575,26.63284054,43.16468788,39.5664527,,,,,,,,,,,,,39.84444323,30.09806422,51.74132374,,,,33.25265706,79,237575,26.32644174,41.44273226,,,,,,,,,,,,,40.48400882,31.67624359,50.98290903,,,,22.25828889,72,323475,17.41574022,28.03063113,,,,,,,,,,,,,24.18379686,18.40982667,31.19533596,,,,,,,,,,,0.711909104,25376,35645,,,0.462,,,,,13.8866413,,,,,0.75099556,16407,21847,0.719748326,0.782242794,0.12378524,2573,20786,0.097273169,0.150297311,0.776445279,16963,21847,0.73767767,0.815212887,54738,,,,,0.165406116,9054,54738,,,0.311593409,17056,54738,,,0.036683839,2008,54738,,,0.019620739,1074,54738,,,0.023585078,1291,54738,,,0.006649859,364,54738,,,0.173681903,9507,54738,,,0.719153056,39365,54738,,,0.022169326,1099,49573,0.014604873,0.029733779,0.485403193,26570,54738,,,0.273167801,14093,51591,, -32,027,32027,NV,Pershing County,2024,1,9166.316681,123,18580,6701.023058,11631.61031,0,,,,2,,,,2,,,,2,,,,2,10713.69689,7279.437246,15207.23755,,,,,2,,0.186,,,0.157,0.215,4.314657862,,,3.397406988,5.358572186,5.4062624,,,4.280563016,6.678689245,0.045845272,16,349,0.023902068,0.067788476,1,,,,,,,,,,,,,,,,,,,,,,0.193,,,0.156,0.231,0.351,,,0.273,0.438,8.7,0.044272234,0.082,,,0.245,,,0.197,0.296,0.228270677,1518,6650,,,0.185884562,,,0.146278617,0.230560417,0,0,15,0,0.14910456,118.7,8,6741,,,19.2513369,18,935,11.40956233,30.42541205,,,,,,,,,,,,,23.35456476,11.65851458,41.78776754,,,,,,,0.115736041,456,3940,0.094289232,0.137182849,0.000296692,2,6741,,,3370.5,0.000464253,3,6462,,,2154,0.000928505,6,6462,,,1077,1403,,,,,,,,,1400,0.18,,,,,,,,,0.2,0.15,,,,,0.31,,,0.09,0.15,0.840614403,4214,5013,0.794008488,0.887220317,0.41170871,865,2101,0.323891607,0.499525813,0.036363636,90,2475,,,0.168,184,,0.103659575,0.232340426,0.458333333,0.09518799,0.821478677,,,,,,,0.12465374,0,0.264855971,0.048576214,0,0.110303474,4.566373876,128927,28234,3.517146718,5.615601033,0.248413418,274,1103,0.144010944,0.352815892,0,0,6741,,,117.4239003,39,33213,83.49987201,160.5223372,,,,,,,,,,,,,158.8933545,110.0382671,222.0375367,,,,4,,,,,0,,,,,0.094527363,190,2010,0.045567254,0.143487473,0.05994006,0.007953127,0.111926993,0.017412935,0,0.046705219,0.016915423,0,0.040233777,0.736076267,1467,1993,0.671823294,0.80032924,,,,,,,,,,,,,0.706716418,0.544824979,0.868607857,0.315,,1993,0.201345404,0.428654596,76.37682404,,,74.20701643,78.54663166,,,,,,,,,,,,,75.03896328,72.22347866,77.8544479,,,,490.6279917,123,18580,401.7181762,579.5378072,,,,,,,,,,,,,544.3905262,434.8398169,673.1473161,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.127,,,0.108,0.146,0.169,,,0.145,0.194,0.1,,,0.084,0.117,101,6,5940,,,0.082,550,,,,0.044272234,298.970396,6753,,,,,,,,,,,,,,,,,,,,,,,,,,0.356,,,0.342,0.369,0.134744268,382,2835,0.107340013,0.162148523,0.068398268,79,1155,0.042185502,0.094611034,0.000309502,2,6462,,,3231,,,,,,,,,,,2.674813261,,,,,,,,,2.737649486,2.29809171,,,,,,,,,2.485489754,0.019066137,,,,,3207.827,,,,,0.399651685,29832,74645,0.280989292,0.518314078,65315,,,55361.29787,75268.70213,,,,,,,,,,,,,77115,55639.59575,98590.40426,,,,,,0.720478326,482,669,,,,,,,,0.350838245,,65315,,,2.732240437,1,366,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,21.54847329,10,46407,10.33333052,39.6284096,,,,,,,,,,,,,,,,,,,,,,,,,,0.454456415,2320,5105,,,0.462,,,,,10.13111674,,,,,0.730116649,1377,1886,0.648715295,0.811518003,0.057570524,100,1737,0,0.117091821,0.832979852,1571,1886,0.776332341,0.889627362,6462,,,,,0.172082947,1112,6462,,,0.180284742,1165,6462,,,0.038687713,250,6462,,,0.049210771,318,6462,,,0.015165583,98,6462,,,0.004952027,32,6462,,,0.246982358,1596,6462,,,0.637728258,4121,6462,,,0.023801917,149,6260,0.00417041,0.043433424,0.367533271,2375,6462,,,1,6650,6650,, -32,029,32029,NV,Storey County,2024,1,4671.241957,61,11032,2553.811446,7837.550268,1,,,,2,,,,2,,,,2,,,,2,4970.123155,2568.13516,8681.804934,1,,,,2,,0.158,,,0.131,0.188,3.962491404,,,3.082355147,4.920658884,5.456755835,,,4.278051493,6.690669888,0.089655172,13,145,0.043154128,0.136156217,1,,,,,,,,,,,,,,,,,,,,,,0.172,,,0.134,0.21,0.301,,,0.231,0.38,8.6,0.000883249,0.106,,,0.212,,,0.168,0.258,,,4104,,,0.1507788,,,0.118610084,0.187476517,0,0,7,0,0.25576943,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.131324004,366,2787,0.109877196,0.152770813,,0,4143,,,,,0,4170,,,,0.001678657,7,4170,,,595.7142857,2511,,,,,,,,,2586,0.37,,,,,,,,,0.38,0.39,,,,,,,,,0.39,0.924188885,2877,3113,0.891185349,0.957192422,0.770731707,474,615,0.609013065,0.93245035,0.03978907,83,2086,,,0.104,53,,0.06587234,0.14212766,,,,,,,,,,,,,0.06443299,0,0.148305622,4.626567192,149452,32303,3.298458311,5.954676073,0.219879518,146,664,0.069502816,0.37025622,0,0,4143,,,82.8944802,17,20508,48.28908948,132.7220929,,,,,,,,,,,,,99.26427654,57.82509909,158.9317226,,,,4.7,,,,,0,,,,,0.102639296,175,1705,0.026914882,0.17836371,0.096187683,0.017475448,0.174899919,0.002346041,0,0.018461991,0.005865103,0,0.019197645,0.724852071,980,1352,0.590561952,0.85914219,,,,,,,,,,0.624177632,0.491320352,0.757034911,0.627109418,0.588765379,0.665453456,0.567,,1352,0.380997863,0.753002137,83.17827378,,,80.20004489,86.15650267,,,,,,,,,,,,,81.9648084,79.01201272,84.91760409,,,,255.9106484,61,11032,179.236672,354.2882072,,,,,,,,,,,,,269.7149672,183.2582345,382.8388667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.117,,,0.099,0.135,0.175,,,0.151,0.202,0.087,,,0.073,0.102,,,,,,0.106,430,,,,0.000883249,3.5418281,4010,,,,,,,,,,,,,,,,,,,,,,,,,,0.339,,,0.321,0.357,0.134070797,303,2260,0.110241009,0.157900584,0.123214286,69,560,0.082703647,0.163724924,,0,4170,,,,,,,,,,,,,,2.704599548,,,,,,,,,2.801671339,2.609400896,,,,,,,,,2.667043018,0.031227726,,,,,6164.99,,,,,0.825800363,56000,67813,0,1.699602665,90171,,,79459.51064,100882.4894,,,,,,,,,,111063,82917.6383,139208.3617,79000,49610.7234,108389.2766,,,,,,0.37182448,161,433,,,,,,,,0.254128267,,90171,,,4.566210046,1,219,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.874390244,2868,3280,,,0.643,,,,,41.88103473,,,,,0.969858156,1641,1692,0.93897194,1,0.125445898,211,1682,0.044458241,0.206433554,0.877659575,1485,1692,0.789013493,0.966305656,4170,,,,,0.123980815,517,4170,,,0.34292566,1430,4170,,,0.017026379,71,4170,,,0.021822542,91,4170,,,0.022781775,95,4170,,,0.004796163,20,4170,,,0.096402878,402,4170,,,0.81822542,3412,4170,,,0.005342152,21,3931,0,0.024902916,0.485371703,2024,4170,,,0.891325536,3658,4104,, -32,031,32031,NV,Washoe County,2024,1,8057.450706,6758,1350482,7761.666912,8353.2345,0,16137.36467,12442.53617,19832.19318,,4103.481678,3212.935223,4994.028133,,15382.50796,12921.33223,17843.68369,,5891.071165,5407.496628,6374.645701,,8714.085188,8302.286861,9125.883515,,16466.2655,11763.74148,22422.38005,,,0.157,,,0.135,0.182,3.843928129,,,3.124309728,4.64912056,5.735395839,,,4.856550392,6.649641312,0.083264177,3010,36150,0.080416091,0.086112263,0,0.076771654,0.053620149,0.099923159,0.114064766,0.10036691,0.127762621,0.129004329,0.109672399,0.148336259,0.079750237,0.075029658,0.084470817,0.078054987,0.074144366,0.081965608,0.102150538,0.077022356,0.127278719,0.094810379,0.076671104,0.112949655,0.157,,,0.128,0.19,0.282,,,0.238,0.328,8.1,0.06795344,0.097,,,0.225,,,0.189,0.263,0.886849116,431445,486492,,,0.194157662,,,0.164943208,0.226634716,0.322429907,69,214,0.28819071,0.356899286,497,2452,493392,,,18.41846499,1742,94579,17.55352609,19.28340389,36.74745895,27.00065064,48.86633021,5.065622841,3.174598865,7.669413858,24.6449457,18.76087453,31.79018436,28.78491976,27.01578621,30.55405331,10.96242699,10.00439769,11.92045629,39.21568628,25.61698826,57.46006649,13.44717183,10.33317605,17.20477423,0.11995832,48812,406908,0.109234916,0.130681724,0.00078842,389,493392,,,1268.359897,0.000704587,350,496745,,,1419.271429,0.003579301,1778,496745,,,279.3841395,1907,,,,,2061,1098,3669,1900,1883,0.44,,,,,0.18,0.34,0.33,0.27,0.46,0.44,,,,,0.28,0.42,0.29,0.3,0.46,0.884988236,300165,339174,0.878855845,0.891120628,0.641027536,86740,135314,,,0.03463479,8869,256072,,,0.107,10690,,0.079595745,0.134404255,0.194570136,0.10487921,0.284261062,0.084313371,0.040768606,0.127858136,0.317031317,0.183957265,0.450105369,0.172225654,0.148277245,0.196174062,0.084048568,0.066279641,0.101817496,4.203032154,151368,36014,4.046140694,4.359923615,0.250649681,25656,102358,0.228856886,0.272442475,6.283036612,310,493392,,,96.52432215,2286,2368315,92.56742539,100.4812189,115.2036865,80.68724573,159.4904621,35.02306954,25.6412887,46.71586675,138.0638364,108.7785999,172.807479,42.14039636,36.92703502,47.35375769,124.0774123,118.3831643,129.7716604,89.59338387,47.70470359,153.207415,6,,,,,1,,,,,0.17295758,32190,186115,0.163777035,0.182138125,0.13100567,0.122533392,0.139477948,0.042500605,0.037704439,0.04729677,0.013432555,0.01088578,0.01597933,0.715387102,174817,244367,0.703204938,0.727569266,0.704342062,0.633935649,0.774748474,0.60502921,0.569012899,0.641045521,0.701188455,0.647698234,0.754678676,0.71390509,0.69228917,0.73552101,0.747031404,0.731017378,0.763045429,0.237,,244367,0.225144831,0.24885517,77.26817399,,,77.01091355,77.52543444,71.78958095,68.97494369,74.60421821,83.56804734,82.31746702,84.81862767,70.8955709,69.04427249,72.74686931,82.77196081,81.65038867,83.89353295,76.4521316,76.12804082,76.77622238,74.02875006,67.29969908,80.75780104,386.1889128,6758,1350482,376.5702683,395.8075573,669.2572171,556.3804094,782.1340248,219.9980398,190.5323032,249.4637763,731.6704482,640.4501466,822.8907498,281.3058255,261.1493037,301.4623472,412.8824982,400.5285948,425.2364017,687.5192264,517.9335711,894.9007755,56.64199593,255,450196,49.68975956,63.59423231,,,,,,,,,,47.97715594,38.2135369,59.47490321,63.30349026,52.54483711,74.06214341,,,,6.091922763,224,36770,5.29413669,6.889708836,,,,,,,,,,6.034009874,4.761946231,7.541477039,5.808325266,4.712868802,6.903781731,,,,,,,0.114,,,0.099,0.131,0.175,,,0.154,0.197,0.093,,,0.08,0.106,266.2,1117,419621,,,0.097,46490,,,,0.06795344,28636.05538,421407,,,33.00986898,476,1441993,30.04437945,35.97535851,53.09546565,25.46133958,97.64445175,,,,70.12622721,44.93119698,104.3422674,16.63689299,12.72590489,21.37078505,41.39948251,37.16961198,45.62935304,,,,0.331,,,0.319,0.344,0.137420865,41612,302807,0.124314483,0.150527248,0.075075075,8200,109224,0.059585713,0.090564437,0.001278322,635,496745,,,782.2755906,0.820995366,4074.6,4963,,,0.073827181,1772,24002,0.055624808,0.092029554,2.881979017,,,,,,3.114401678,2.345916891,2.562298568,3.203336399,2.780083596,,,,,,3.196301801,2.106513511,2.464339937,3.084771899,0.108542468,,,,,-2096.693,,,,,0.835703835,49121,58778,0.802245392,0.869162277,80245,,,77278.19149,83211.80851,58914,39515.3617,78312.6383,88999,82307.59575,95690.40426,54516,43358.89362,65673.10638,70102,66898.08511,73305.91489,86583,84490.74468,88675.25532,,,,,,0.454573074,31421,69122,,,53.60858326,,,,,0.35526201,,80245,,,0.254471427,7,27508,,,5.261815069,172,3268834,4.475444179,6.048185959,,,,,,,28.02615775,17.34863337,42.84095921,6.772698391,5.102123299,8.815597891,4.308460298,3.455511146,5.308143589,,,,20.43392638,502,2368315,18.59684073,22.27101203,21.19650469,,,,9.765985488,5.046227211,17.05921128,,,,5.247553414,3.565457951,7.448483199,27.4315796,24.70128023,30.16187897,,,,16.72074872,396,2368315,15.07386021,18.36763723,,,,,,,32.69932966,19.37969513,51.6790384,9.905511494,7.540534298,12.77738813,20.27141934,17.96980743,22.57303125,,,,11.44138858,374,3268834,10.28181315,12.60096401,23.18733044,11.11922623,42.64232625,10.4580056,6.296402537,16.33147121,17.34952622,9.237892021,29.66821823,8.004098098,6.177393931,10.20188008,12.58266246,11.04428802,14.12103691,,,,,,,,,,,0.759155142,251956,331890,,,0.678,,,,,199.0897513,,,,,0.58554724,112671,192420,0.576230198,0.594864283,0.144051685,27202,188835,0.135761687,0.152341684,0.894200187,172062,192420,0.887067932,0.901332442,496745,,,,,0.205457529,102060,496745,,,0.177453221,88149,496745,,,0.024990689,12414,496745,,,0.022591068,11222,496745,,,0.06291558,31253,496745,,,0.008205417,4076,496745,,,0.262055985,130175,496745,,,0.602244612,299162,496745,,,0.031267331,14377,459809,,,0.491129251,243966,496745,,,0.041717027,20295,486492,, -32,033,32033,NV,White Pine County,2024,1,8989.414804,149,25881,6692.986907,11285.8427,0,,,,2,,,,2,,,,2,,,,2,9497.722922,6756.87675,12238.56909,,,,,2,,0.178,,,0.151,0.208,4.282677353,,,3.303338993,5.367323586,5.469201072,,,4.255538704,6.770906359,0.086757991,57,657,0.065234086,0.108281896,0,,,,,,,,,,,,,0.101910828,0.074588638,0.129233018,,,,,,,0.19,,,0.153,0.23,0.343,,,0.261,0.432,7.6,0.124574493,0.091,,,0.241,,,0.193,0.294,0.593502203,5389,9080,,,0.179183464,,,0.140111686,0.224975875,0.363636364,4,11,0.198476333,0.520352029,272.3,25,9182,,,31.61592506,54,1708,23.75085596,41.25192412,,,,,,,,,,28.65329513,13.74036876,52.69442992,32.78688525,22.96353135,45.3908693,,,,,,,0.105581395,681,6450,0.088900544,0.122262246,0.000762361,7,9182,,,1311.714286,0.000341375,3,8788,,,2929.333333,0.004096495,36,8788,,,244.1111111,1477,,,,,,,,,1499,0.31,,,,,,,,0.31,0.32,0.23,,,,,0.37,,,0.28,0.23,0.893117289,6008,6727,0.866943318,0.919291259,0.452363368,1225,2708,0.343628866,0.56109787,0.030662489,137,4468,,,0.148,259,,0.092,0.204,0.251184834,0.038290749,0.46407892,,,,0.15,0,0.982811592,0.061611374,0,0.132787633,0.056481482,0,0.118556786,4.128201794,127000,30764,2.457664573,5.798739016,0.126546682,225,1778,0.050902619,0.202190745,0,0,9182,,,90.91870177,43,47295,65.79831528,122.4668946,,,,,,,,,,,,,112.8433556,79.85467452,154.886322,,,,3.7,,,,,0,,,,,0.105333333,395,3750,0.061425093,0.149241574,0.063806971,0.028849353,0.098764588,0.034666667,0.007217713,0.06211562,0.010666667,0,0.024226857,0.750516681,2542,3387,0.676962179,0.824071184,,,,,,,,,,,,,0.705273374,0.629616202,0.780930547,0.107,,3387,0.047652347,0.166347653,78.54148459,,,76.22857203,80.85439715,,,,,,,,,,,,,77.48297745,74.9057917,80.06016319,,,,431.6730178,149,25881,358.963233,504.3828027,,,,,,,,,,,,,476.3760335,387.7912519,564.9608152,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.127,,,0.109,0.148,0.175,,,0.15,0.202,0.098,,,0.082,0.117,316.7,25,7895,,,0.091,840,,,,0.124574493,1249.482168,10030,,,,,,,,,,,,,,,,,,,,,,,,,,0.348,,,0.335,0.361,0.116964094,544,4651,0.095517285,0.138410902,0.078961314,149,1887,0.052748548,0.10517408,0.000455166,4,8788,,,2197,0.825,96.525,117,,,,,,,,2.518061123,,,,,,,,,2.54529874,2.279722286,,,,,,,,,2.331632989,0.034942893,,,,,3509.68,,,,,1.012349531,61645,60893,0.748068944,1.276630119,67639,,,57772.2766,77505.7234,31786,14405.74468,49166.25532,,,,,,,77098,37653.74468,116542.2553,69346,57227.3617,81464.6383,,,,,,0.672689368,968,1439,,,,,,,,0.145182513,,67639,,,7.352941177,3,408,,,,,,,,,,,,,,,,,,,,,,,,,,23.93869835,12,47295,11.95011196,42.83294389,25.37266096,,,,,,,,,,,,,31.77363181,15.23669148,58.43284017,,,,25.37266096,12,47295,13.11042417,44.32093255,,,,,,,,,,,,,32.66518189,16.30634111,58.44703345,,,,17.96729952,12,66788,9.283965845,31.38525641,,,,,,,,,,,,,20.93232579,10.03786385,38.49529241,,,,,,,,,,,0.587213997,4363,7430,,,0.452,,,,,31.44517415,,,,,0.737734166,2481,3363,0.677053259,0.798415073,0.073762839,237,3213,0.027109446,0.120416231,0.853702052,2871,3363,0.801566741,0.905837362,8788,,,,,0.20254893,1780,8788,,,0.19879381,1747,8788,,,0.037209832,327,8788,,,0.05268548,463,8788,,,0.012061903,106,8788,,,0.001934456,17,8788,,,0.174783796,1536,8788,,,0.706531634,6209,8788,,,0.003496911,30,8579,0,0.014697528,0.438324989,3852,8788,,,0.509361234,4625,9080,, -32,510,32510,NV,Carson City,2024,1,10464.86894,1236,156132,9470.328684,11459.40919,0,14886.63111,7926.504098,25456.59257,1,7844.761213,3587.124361,14891.80038,1,13538.27856,9066.79763,19443.22632,,6523.277221,5044.979028,8001.575414,,12018.00296,10587.85665,13448.14927,,,,,2,,0.171,,,0.145,0.201,4.069354508,,,3.282264056,4.983390972,5.420842964,,,4.480274598,6.521975016,0.087490599,349,3989,0.078722137,0.096259061,0,,,,0.198113208,0.122235119,0.273991296,,,,0.084370678,0.070044592,0.098696763,0.083636364,0.072067886,0.095204842,,,,,,,0.167,,,0.135,0.205,0.325,,,0.264,0.394,8.3,0.027442704,0.106,,,0.23,,,0.189,0.279,0.987909071,57930,58639,,,0.168415093,,,0.13595294,0.206273879,0.052631579,1,19,0.002213242,0.187781702,356,210,58993,,,21.29277567,224,10520,18.50431617,24.08123516,,,,,,,,,,27.86446723,22.97961075,32.74932371,17.2380399,13.84356152,21.21289142,,,,,,,0.131810392,5845,44344,0.113938051,0.149682732,0.000644144,38,58993,,,1552.447368,0.00091175,53,58130,,,1096.792453,0.002993291,174,58130,,,334.0804598,2595,,,,,4832,,,2572,2536,0.42,,,,,0.29,0.3,,0.24,0.43,0.44,,,,,0.41,0.43,0.36,0.32,0.45,0.88560745,37184,41987,0.870869264,0.900345636,0.628144492,9164,14589,0.572632708,0.683656277,0.039674345,999,25180,,,0.151,1716,,0.104531915,0.197468085,0.305555556,0.026995656,0.584115456,,,,0.141630901,0,0.432765424,0.132503335,0.076451177,0.188555493,0.100110416,0.051357007,0.148863825,4.180570856,125229,29955,3.68578412,4.675357592,0.240096038,2800,11662,0.180801703,0.299390374,6.780465479,40,58993,,,111.7032252,314,281102,99.3478209,124.0586294,,,,,,,,,,47.28064646,32.5458215,66.39960638,144.4520221,127.1895274,161.7145167,,,,4.5,,,,,,,,,,0.166447944,3805,22860,0.141308785,0.191587103,0.122382112,0.1012746,0.143489624,0.039151356,0.027115665,0.051187047,0.014654418,0.008533178,0.020775659,0.759468065,20274,26695,0.733252709,0.785683422,0.813842482,0.604518935,1,0.7403946,0.680209819,0.800579381,,,,0.739734486,0.685087119,0.794381853,0.803824266,0.774465644,0.833182888,0.274,,26695,0.238314943,0.309685057,73.57033832,,,72.86145662,74.27922002,,,,,,,,,,81.26847932,78.64224587,83.89471277,72.36974916,71.42326123,73.31623708,,,,538.0143755,1236,156132,505.7774539,570.251297,683.6496505,450.5294275,994.6743484,421.8835673,254.0014668,658.82345,1175.765248,809.3426962,1651.211553,317.7400311,256.8186843,378.6613779,586.910775,545.4971117,628.3244383,,,,61.47622258,31,50426,41.77011062,87.26059077,,,,,,,,,,68.87052342,37.65215602,115.5530358,63.58795008,36.34600769,103.2628471,,,,7.88565796,32,4058,5.393784207,11.13219618,,,,,,,,,,,,,,,,,,,,,,0.122,,,0.105,0.142,0.175,,,0.152,0.203,0.095,,,0.081,0.11,391,198,50635,,,0.106,6170,,,,0.027442704,1516.868024,55274,,,22.81462242,39,170943,16.22342681,31.18833989,,,,,,,,,,,,,26.66761485,17.99252775,38.06967838,,,,0.354,,,0.34,0.367,0.148186879,4818,32513,0.125548581,0.170825177,0.090404569,1124,12433,0.063000313,0.117808824,0.001634268,95,58130,,,611.8947368,0.867751004,2376.77,2739,,,0.132544379,336,2535,0.052192199,0.212896559,2.923067113,,,,,,,,2.738133451,3.061781648,2.70635206,,,,,,,,2.42819879,2.931208854,0.031750214,,,,,-1041.918,,,,,0.897497594,44760,49872,0.81968756,0.975307628,62859,,,56309.38298,69408.61702,64688,33509.10638,95866.89362,72697,30036.91489,115357.0851,138571,31363.17021,245778.8298,62283,51445.21277,73120.78723,68420,65486.55319,71353.44681,,,,,,0.54921209,4252,7742,,,65.4577013,,,,,0.349798756,,62859,,,5.089058524,16,3144,,,3.586387099,14,390365,1.9607112,6.017348154,,,,,,,,,,,,,,,,,,,35.27166901,107,281102,28.19713654,42.34620148,38.06447482,,,,,,,,,,,,,45.65704826,35.97256107,57.14660418,,,,20.98882256,59,281102,15.9776642,27.0740519,,,,,,,,,,,,,27.92381096,20.85483764,36.61836299,,,,16.39491245,64,390365,12.62608035,20.93593719,,,,,,,,,,11.51953084,5.750508291,20.6116227,19.57961417,14.5783088,25.74357669,,,,,,,,,,,0.736934705,29739,40355,,,0.683,,,,,140.3041428,,,,,0.618711197,14450,23355,0.593432494,0.643989899,0.134175561,3080,22955,0.112116921,0.156234201,0.8756155,20450,23355,0.858247613,0.892983387,58130,,,,,0.198572166,11543,58130,,,0.213607432,12417,58130,,,0.020832617,1211,58130,,,0.029313607,1704,58130,,,0.028522278,1658,58130,,,0.003750215,218,58130,,,0.259074488,15060,58130,,,0.646946499,37607,58130,,,0.024603519,1359,55236,0.017448125,0.031758914,0.484018579,28136,58130,,,0.05978956,3506,58639,, -33,000,33000,NH,New Hampshire,2024,,6498.831465,17114,3808751,6338.545376,6659.117555,0,,,,2,2285.390251,1768.560722,2802.21978,,6454.059437,5282.518945,7625.599928,,4404.367654,3791.577487,5017.157822,,6780.134772,6604.046128,6956.223417,,,,,2,,0.112,,,0.101,0.125,2.999071309,,,2.728379304,3.269763313,5.161356773,,,4.782682574,5.540030973,0.067213386,5688,84626,0.065526354,0.068900418,0,,,,0.090463048,0.080617805,0.100308292,0.104503464,0.09009627,0.118910659,0.069893478,0.063061865,0.076725091,0.064764916,0.062976372,0.066553461,,,,0.074074074,0.057132414,0.091015734,0.127,,,0.114,0.142,0.312,,,0.293,0.331,9.5,0.042314984,0.068,,,0.192,,,0.177,0.207,0.849944357,1170823,1377529,,,0.185529657,,,0.168965144,0.203320769,0.351398601,201,572,0.331075265,0.371730204,217.9,3027,1388992,,,7.011085374,2034,290112,6.706390006,7.315780742,,,,2.135155333,1.304208347,3.29757424,8.583690987,6.370980899,11.31652647,17.67322811,15.63912504,19.70733118,6.446905245,6.131793685,6.762016805,,,,5.944596362,4.412194,7.83720921,0.063236107,69294,1095798,0.057278661,0.069193554,0.000870415,1209,1388992,,,1148.876758,0.000768332,1072,1395231,,,1301.521455,0.003805821,5310,1395231,,,262.7553672,2478,,,,,1073,1547,3659,3910,2463,0.48,,,,,0.42,0.38,0.37,0.42,0.49,0.51,,,,,0.44,0.54,0.37,0.4,0.51,0.938112183,935629,997353,0.935486919,0.940737447,0.711086867,239856,337309,0.69875559,0.723418144,0.025215411,19332,766674,,,0.077,19231,,0.065085106,0.088914894,0.012383901,0,0.118429609,0.048258138,0.02179658,0.074719696,0.201155148,0.132949107,0.26936119,0.209405302,0.174833942,0.243976663,0.072615915,0.066007821,0.079224008,4.316290854,170364,39470,4.214554197,4.418027511,0.187541366,47887,255341,0.176943836,0.198138896,10.04325439,1395,1388992,,,87.91894493,5991,6814231,85.69261831,90.14527155,,,,20.5024603,14.71291949,27.81390245,74.94961158,58.85156558,94.09237388,38.88660738,31.51835933,46.25485543,93.37471185,90.95296209,95.79646162,,,,5.25,,,,,0.9,,,,,0.138087421,74445,539115,0.133841276,0.142333566,0.118856748,0.114554201,0.123159295,0.014653645,0.013075029,0.016232262,0.009654712,0.00830982,0.010999603,0.756358039,549302,726246,0.750649033,0.762067044,0.6638442,0.543159777,0.784528622,0.698509007,0.665587797,0.731430217,0.683088584,0.639885018,0.72629215,0.700247508,0.676952945,0.723542072,0.754979028,0.749922023,0.760036034,0.386,,726246,0.378186882,0.393813118,79.21291338,,,79.06630107,79.35952568,,,,92.01812791,89.13206674,94.90418909,80.20116276,78.19903267,82.20329285,89.14139704,86.37770224,91.90509184,78.87072185,78.71590958,79.02553413,,,,315.3936661,17114,3808751,310.3407258,320.4466065,,,,111.9442612,92.42270439,131.4658179,319.529078,271.061362,367.9967939,206.741566,180.1048634,233.3782686,325.5773194,320.1640878,330.9905511,,,,35.57388825,415,1166586,32.1512314,38.9965451,,,,,,,,,,33.13199276,21.64291767,48.54604593,36.86602155,33.0682568,40.66378629,,,,3.914607481,333,85066,3.494149911,4.335065052,,,,,,,,,,4.246284501,2.66112389,6.428925765,3.858371849,3.408833306,4.307910392,,,,,,,0.086911267,,,0.077143898,0.097784269,0.158879723,,,0.143329335,0.175771072,0.073,,,0.064,0.081,112.5,1365,1213309,,,0.068,93940,,,,0.042314984,55706.40685,1316470,,,30.15811992,1241,4114978,28.48018758,31.83605226,,,,,,,33.77291734,20.90596813,51.62549169,20.23952027,14.09756744,28.1482732,31.62658459,29.80968103,33.44348815,,,,0.30993098,,,0.291631351,0.328845827,0.070916496,59728,842230,0.063767559,0.078065432,0.039318176,10516,267459,0.03097775,0.047658601,0.001772466,2473,1395231,,,564.1856045,0.873754205,11947.715,13674,,,0.047672094,3338,70020,0.039055791,0.056288396,3.205302811,,,,,,3.485907848,2.625668519,2.688260394,3.245771779,3.158037223,,,,,,3.682718617,2.501078558,2.638273061,3.196156518,0.142648085,,,,,9522.7,,,,,0.784855333,56260,71682,0.767750195,0.801960472,90750,,,88284.80851,93215.19149,66667,40621.04255,92712.95745,106813,93972.31915,119653.6809,72946,66776.46809,79115.53192,73480,68588.93617,78371.06383,91598,90425.57447,92770.42553,,,,,,0.208590699,35256,169020,,,69.488104,,,,,0.29340884,,,,,10.24778814,,,,,1.455752406,138,9479634,1.212865532,1.698639279,,,,,,,,,,2.71815948,1.303463124,4.998792061,1.405139062,1.153727784,1.65655034,,,,17.44500264,1256,6814231,16.43900924,18.45099605,18.43201383,,,,6.30001354,3.14494406,11.27246447,,,,5.916742038,3.23473793,9.927287768,18.7104085,17.59940593,19.82141107,,,,10.39002053,708,6814231,9.624678001,11.15536306,,,,,,,,,,,,,11.1506835,10.31379929,11.98756771,,,,8.63957406,819,9479634,8.047867407,9.231280712,,,,4.449701685,2.299225792,7.772733358,11.35864544,6.35734763,18.73435829,2.989975428,1.492584961,5.349891957,9.063146949,8.424641493,9.701652406,,,,,,,,,,,0.756765231,806182,1065300,,,,,,,,73.59643816,,,,,0.722681044,393945,545116,0.71793831,0.727423778,0.122257112,65449,535339,0.117572807,0.126941417,0.910110876,496116,545116,0.906017186,0.914204565,1395231,,,,,0.181277509,252924,1395231,,,0.201763006,281506,1395231,,,0.016015269,22345,1395231,,,0.003172235,4426,1395231,,,0.031725929,44265,1395231,,,0.000627136,875,1395231,,,0.046008152,64192,1395231,,,0.887690999,1238534,1395231,,,0.009539064,12560,1316691,0.008569699,0.01050843,0.499861313,697422,1395231,,,0.41676727,574109,1377529,, -33,001,33001,NH,Belknap County,2024,1,8603.082161,963,170729,7624.769073,9581.395249,0,,,,2,,,,2,,,,2,,,,2,8962.373939,7922.634307,10002.11357,,,,,2,,0.119,,,0.097,0.141,3.208916436,,,2.500202569,3.935975131,4.958009102,,,4.099570434,5.804572426,0.069169376,234,3383,0.060618762,0.077719991,0,,,,,,,,,,,,,0.066084788,0.057487859,0.074681718,,,,,,,0.15,,,0.115,0.187,0.304,,,0.253,0.357,9,0.02255423,0.077,,,0.186,,,0.151,0.224,0.765528608,48768,63705,,,0.178982423,,,0.146553081,0.213710171,0.333333333,14,42,0.252856099,0.413755097,175.3,113,64460,,,7.698578027,85,11041,6.149350693,9.519410952,,,,,,,,,,,,,7.357268982,5.78695877,9.222400378,,,,,,,0.071747333,3537,49298,0.061023928,0.082470737,0.000480918,31,64460,,,2079.354839,0.000663775,43,64781,,,1506.534884,0.005402819,350,64781,,,185.0885714,2146,,,,,,,,,2155,0.48,,,,,,0.28,,,0.48,0.51,,,,,,0.3,0.05,0.36,0.51,0.934119756,44820,47981,0.919919084,0.948320428,0.648510944,9037,13935,0.589481665,0.707540222,0.025265188,786,31110,,,0.105,1139,,0.063297872,0.146702128,,,,0.034013605,0,0.54847292,0.373390558,0.151246859,0.595534257,0.404761905,0.176240951,0.633282859,0.098884037,0.066138721,0.131629353,4.501796443,149104,33121,4.091645622,4.911947265,0.24537037,2809,11448,0.182538853,0.308201888,11.16971765,72,64460,,,111.9302797,346,309121,100.1361579,123.7244016,,,,,,,,,,,,,115.9483552,103.6235176,128.2731928,,,,3.7,,,,,1,,,,,0.157380254,4025,25575,0.134929225,0.179831284,0.132705143,0.112968801,0.152441486,0.015835777,0.005534995,0.026136559,0.011534702,0.004277874,0.01879153,0.774732454,24903,32144,0.751904844,0.797560064,,,,,,,,,,,,,0.75236365,0.733174277,0.771553023,0.399,,32144,0.359160758,0.438839242,76.83659356,,,76.08653267,77.58665445,,,,,,,,,,,,,76.47054644,75.6871846,77.25390828,,,,370.1273794,963,170729,343.6895529,396.5652058,,,,,,,,,,,,,380.3306296,352.7127957,407.9484634,,,,50.44492423,25,49559,32.6452952,74.46665933,,,,,,,,,,,,,55.19860458,35.72162648,81.48402927,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.094,,,0.079,0.109,0.158,,,0.135,0.183,0.074,,,0.062,0.086,47.6,27,56752,,,0.077,4870,,,,0.02255423,1355.238591,60088,,,35.23495307,66,187314,27.25071015,44.82749952,,,,,,,,,,,,,36.63829547,28.27666294,46.6985152,,,,0.315,,,0.297,0.333,0.078591,2983,37956,0.065484617,0.091697383,0.050004174,599,11979,0.034514812,0.065493536,0.001003381,65,64781,,,996.6307692,0.866009464,549.05,634,,,0.105716253,307,2904,0.043678083,0.167754424,3.128234788,,,,,,,,,3.165144136,3.072333032,,,,,,,,,3.093253481,0.048093974,,,,,11176.253,,,,,0.718705695,48665,67712,0.649382396,0.788028993,77531,,,70190.23404,84871.76596,,,,194861,168415.8936,221306.1064,,,,,,,79849,71966.10638,87731.89362,,,,,,0.284910352,2177,7641,,,77.77852304,,,,,0.294101714,,77531,,,9.926470588,27,2720,,,,,,,,,,,,,,,,,,,,,,,,,,17.32272427,60,309121,12.89790603,22.77618328,19.4098751,,,,,,,,,,,,,17.40138351,12.83040651,23.07170995,,,,11.32242714,35,309121,7.886485358,15.74675527,,,,,,,,,,,,,11.25381095,7.746605637,15.8045347,,,,11.61329583,50,430541,8.619612009,15.31068276,,,,,,,,,,,,,12.2371461,9.082645705,16.13315157,,,,,,,,,,,0.77832742,38391,49325,,,0.544,,,,,38.3196103,,,,,0.770958545,20011,25956,0.751698436,0.790218654,0.128128961,3235,25248,0.107297706,0.148960215,0.890006164,23101,25956,0.881242445,0.898769884,64781,,,,,0.171269354,11095,64781,,,0.241120082,15620,64781,,,0.006637749,430,64781,,,0.003210818,208,64781,,,0.011870765,769,64781,,,0.000648338,42,64781,,,0.022568346,1462,64781,,,0.942390516,61049,64781,,,0.001713139,105,61291,0,0.003930901,0.501273522,32473,64781,,,0.544541245,34690,63705,, -33,003,33003,NH,Carroll County,2024,1,6795.216367,711,133176,5801.680602,7788.752133,0,,,,2,,,,2,,,,2,,,,2,6934.323265,5890.921888,7977.724642,,,,,2,,0.115,,,0.096,0.138,3.024109028,,,2.403733722,3.718492514,5.132271941,,,4.320874972,6.003485161,0.059142212,131,2215,0.049318402,0.068966023,0,,,,,,,,,,,,,0.05823389,0.048205679,0.068262102,,,,,,,0.138,,,0.107,0.177,0.29,,,0.244,0.341,9.2,0.004511545,0.076,,,0.182,,,0.152,0.222,0.758217415,37992,50107,,,0.170080372,,,0.14097216,0.202971985,0.25,9,36,0.163218055,0.342798685,110.7,57,51500,,,9.096989967,68,7475,7.064168663,11.53260243,,,,,,,,,,,,,8.944027698,6.85733475,11.46583986,,,,,,,0.073312004,2658,36256,0.06139711,0.085226897,0.000815534,42,51500,,,1226.190476,0.000670511,35,52199,,,1491.4,0.002816146,147,52199,,,355.0952381,1730,,,,,,,,,1741,0.48,,,,,,,,,0.48,0.47,,,,,,0.33,0.36,,0.47,0.950265053,38003,39992,0.939062251,0.961467855,0.690698897,6572,9515,0.619260317,0.762137476,0.026247056,613,23355,,,0.118,884,,0.069148936,0.166851064,,,,,,,,,,,,,0.092268581,0.046915606,0.137621555,4.356592028,140670,32289,3.824537118,4.888646939,0.205477674,1583,7704,0.143807614,0.267147734,11.65048544,60,51500,,,105.1051051,259,246420,92.30451473,117.9056955,,,,,,,,,,,,,107.3867664,94.154124,120.6194088,,,,5.4,,,,,1,,,,,0.14144367,3145,22235,0.119677025,0.163210315,0.124717067,0.102393256,0.147040877,0.010793794,0.004727471,0.016860116,0.008724983,0.003801802,0.013648164,0.765633318,18696,24419,0.734938942,0.796327695,,,,,,,,,,,,,0.759465479,0.728414115,0.790516843,0.368,,24419,0.328572683,0.407427317,80.14257333,,,79.28726885,80.99787781,,,,,,,,,,,,,79.88101084,78.99841355,80.76360813,,,,299.5819819,711,133176,272.642411,326.5215529,,,,,,,,,,,,,302.6670319,274.8484701,330.4855938,,,,44.80688234,15,33477,25.07807191,73.9021384,,,,,,,,,,,,,48.76145894,27.29141842,80.42461112,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.09,,,0.077,0.107,0.151,,,0.131,0.176,0.073,,,0.062,0.085,41.1,19,46250,,,0.076,3770,,,,0.004511545,215.7330762,47818,,,26.74207933,40,149577,19.10493354,36.41512195,,,,,,,,,,,,,27.3023207,19.41461899,37.32317118,,,,0.315,,,0.296,0.332,0.080293245,2300,28645,0.067186862,0.093399628,0.048477315,390,8045,0.032987953,0.063966677,0.001341022,70,52199,,,745.7,0.931612091,369.85,397,,,0.093638677,184,1965,0.034434664,0.15284269,3.154785801,,,,,,,,,3.151522012,2.953494847,,,,,,,,,2.93857333,0.067874683,,,,,12947.48225,,,,,0.881688325,51972,58946,0.737061895,1.026314755,71981,,,64885.68085,79076.31915,,,,130694,34338.25532,227049.7447,,,,,,,77235,72172.3617,82297.6383,,,,,,0.27231808,1452,5332,,,,,,,,0.318347897,,71981,,,14.59854015,26,1781,,,,,,,,,,,,,,,,,,,,,,,,,,23.49843159,52,246420,17.07399637,31.54554761,21.10218326,,,,,,,,,,,,,24.64451176,17.83535536,33.19599561,,,,12.1743365,30,246420,8.213973712,17.37962235,,,,,,,,,,,,,12.30915504,8.243634315,17.67799991,,,,13.19671314,45,340994,9.625773119,17.65824047,,,,,,,,,,,,,12.56054335,9.013662767,17.03979535,,,,,,,,,,,0.817345307,33221,40645,,,0.418,,,,,11.33000106,,,,,0.81546849,17650,21644,0.804077153,0.826859828,0.151522337,3195,21086,0.123709807,0.179334868,0.906625393,19623,21644,0.889654491,0.923596294,52199,,,,,0.145462557,7593,52199,,,0.307017376,16026,52199,,,0.006226173,325,52199,,,0.003831491,200,52199,,,0.008103604,423,52199,,,0.000325677,17,52199,,,0.017471599,912,52199,,,0.953198337,49756,52199,,,0.000858194,42,48940,0,0.00340662,0.499971264,26098,52199,,,0.89478516,44835,50107,, -33,005,33005,NH,Cheshire County,2024,1,6411.132938,1018,210933,5748.018872,7074.247004,0,,,,2,,,,2,,,,2,,,,2,6607.799663,5903.489168,7312.110158,,,,,2,,0.124,,,0.102,0.147,3.284227795,,,2.59979542,4.039065249,5.286733706,,,4.436819485,6.179676232,0.06308462,290,4597,0.056056637,0.070112604,0,,,,,,,,,,,,,0.062412342,0.055163363,0.069661322,,,,,,,0.146,,,0.112,0.182,0.317,,,0.267,0.368,8.7,0.042319652,0.082,,,0.212,,,0.174,0.254,0.684284182,52319,76458,,,0.189043958,,,0.157056034,0.223172944,0.393939394,13,33,0.304721321,0.4796795,222.4,172,77329,,,7.90884021,152,19219,6.651516578,9.166163843,,,,,,,,,,,,,8.199966069,6.86526464,9.534667498,,,,,,,0.072767787,4180,57443,0.060852894,0.084682681,0.000672452,52,77329,,,1487.096154,0.000788623,61,77350,,,1268.032787,0.003813833,295,77350,,,262.2033898,1870,,,,,,,,,1855,0.43,,,,,,0.32,,,0.43,0.5,,,,,,0.31,0.47,0.34,0.5,0.937554985,51153,54560,0.925621839,0.949488132,0.67848072,11754,17324,0.630601884,0.726359557,0.026950138,1061,39369,,,0.094,1266,,0.052297872,0.135702128,,,,,,,,,,0.014112903,0,0.113393829,0.109122984,0.082105793,0.136140175,4.20410963,140968,33531,3.870735274,4.537483986,0.15873364,2171,13677,0.1208742,0.196593081,9.181548966,71,77329,,,88.9831063,340,382095,79.52456476,98.44164783,,,,,,,,,,,,,92.02505312,82.09606072,101.9540455,,,,5.1,,,,,1,,,,,0.139931181,4270,30515,0.122553884,0.157308479,0.118734471,0.101689611,0.135779331,0.014255284,0.008737893,0.019772676,0.008848108,0.004275607,0.013420608,0.771828709,29595,38344,0.748641157,0.79501626,,,,,,,,,,0.782101167,0.658084289,0.906118046,0.764365229,0.74087293,0.787857529,0.279,,38344,0.253141661,0.304858339,79.25331855,,,78.64546212,79.86117499,,,,,,,,,,,,,79.00951767,78.38179023,79.63724511,,,,322.9740772,1018,210933,301.2613421,344.6868123,,,,,,,,,,,,,330.5094615,307.8038901,353.2150328,,,,36.31137,24,66095,23.26537992,54.02844027,,,,,,,,,,,,,36.94994961,23.1563367,55.94266777,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.098,,,0.082,0.114,0.159,,,0.137,0.182,0.075,,,0.063,0.088,48.7,33,67771,,,0.082,6280,,,,0.042319652,3263.564638,77117,,,23.95032268,55,229642,18.04266074,31.17463703,,,,,,,,,,,,,25.56724418,19.26074729,33.27928262,,,,0.349,,,0.331,0.368,0.08381582,3677,43870,0.069517947,0.098113692,0.038246007,546,14276,0.026331114,0.050160901,0.001266968,98,77350,,,789.2857143,0.871595745,491.58,564,,,,,,,,3.084863603,,,,,,,,,3.081461247,3.103753934,,,,,,,,,3.091579239,0.054345206,,,,,8696.249388,,,,,0.818297816,49381,60346,0.761144428,0.875451204,76227,,,67980.70213,84473.29787,62000,45997.10638,78002.89362,86190,74208.38298,98171.61702,46417,19370.19149,73463.80851,64663,29692.78723,99633.21277,76881,70819.89362,82942.10638,,,,,,0.272727273,2349,8613,,,77.60879677,,,,,0.300326656,,76227,,,8.271534512,29,3506,,,1.873438021,10,533778,0.898386351,3.445319223,,,,,,,,,,,,,,,,,,,18.68246999,75,382095,14.47865763,23.72607649,19.62862639,,,,,,,,,,,,,19.26049751,14.83293002,24.59522534,,,,14.39432602,55,382095,10.84377628,18.73619387,,,,,,,,,,,,,14.50091746,10.82997875,19.016024,,,,11.42797193,61,533778,8.74149301,14.67970803,,,,,,,,,,,,,11.35931095,8.603431182,14.71730489,,,,,,,,,,,0.717624148,44220,61620,,,0.657,,,,,44.14956926,,,,,0.706833405,21422,30307,0.690158664,0.723508146,0.1260371,3737,29650,0.108173854,0.143900345,0.891477217,27018,30307,0.8754839,0.907470533,77350,,,,,0.177336781,13717,77350,,,0.224382676,17356,77350,,,0.007705236,596,77350,,,0.003387201,262,77350,,,0.016910149,1308,77350,,,0.000568843,44,77350,,,0.024330963,1882,77350,,,0.931855204,72079,77350,,,0.00105266,77,73148,0,0.002777499,0.505546219,39104,77350,,,0.691189934,52847,76458,, -33,007,33007,NH,Coos County,2024,1,9223.979724,587,84707,7830.156301,10617.80315,0,,,,2,,,,2,,,,2,,,,2,9577.231132,8083.477336,11070.98493,,,,,2,,0.149,,,0.123,0.177,3.718203458,,,2.967346293,4.506470396,5.20738232,,,4.311091689,6.118845377,0.068880689,112,1626,0.056570996,0.081190381,0,,,,,,,,,,,,,0.067540984,0.054945359,0.080136608,,,,,,,0.186,,,0.146,0.231,0.359,,,0.303,0.416,8.2,0.051783094,0.102,,,0.244,,,0.2,0.292,0.714084687,22328,31268,,,0.173594559,,,0.142058951,0.209683657,0.4,12,30,0.306339297,0.489449435,86.3,27,31289,,,15.13642701,76,5021,11.92578289,18.94549551,,,,,,,,,,,,,15.74973031,12.34527442,19.80292129,,,,,,,0.079721362,1751,21964,0.067806469,0.091636256,0.001118604,35,31289,,,893.9714286,0.000730066,23,31504,,,1369.73913,0.002126714,67,31504,,,470.2089552,2798,,,,,,,,,2798,0.43,,,,,,,,,0.43,0.43,,,,,,,,0.25,0.43,0.889151809,21794,24511,0.875566929,0.90273669,0.561282932,3920,6984,0.50620055,0.616365315,0.033425798,482,14420,,,0.164,812,,0.091319149,0.236680851,,,,,,,,,,0.219512195,0,0.996749795,0.150209852,0.094331043,0.206088661,4.15779535,105687,25419,3.780760551,4.534830149,0.175725378,860,4894,0.118322411,0.233128345,11.18603982,35,31289,,,139.2695661,219,157249,120.8240744,157.7150578,,,,,,,,,,,,,143.0048474,123.7997272,162.2099675,,,,4.9,,,,,1,,,,,0.127819549,1785,13965,0.107842456,0.147796642,0.107758932,0.089258216,0.126259648,0.013605442,0.00616703,0.021043854,0.010025063,0.004864627,0.015185498,0.761694867,10714,14066,0.73914662,0.784243114,,,,,,,,,,,,,0.763654886,0.741027717,0.786282055,0.263,,14066,0.234728792,0.291271208,75.558059,,,74.54489591,76.57122208,,,,,,,,,,,,,75.25199596,74.18418194,76.31980998,,,,423.679099,587,84707,385.0049468,462.3532512,,,,,,,,,,,,,431.9349958,391.5549273,472.3150642,,,,48.97377677,11,22461,24.44753291,87.62761459,,,,,,,,,,,,,53.348853,26.6315552,95.45583449,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.113,,,0.095,0.132,0.172,,,0.146,0.197,0.085,,,0.071,0.099,46.7,13,27828,,,0.102,3200,,,,0.051783094,1711.690176,33055,,,37.22374662,35,94026,25.9277034,51.76922061,,,,,,,,,,,,,38.24521935,26.48592619,53.44386063,,,,0.357,,,0.339,0.372,0.090967818,1549,17028,0.075478456,0.106457179,0.042210284,220,5212,0.027912412,0.056508156,0.001523616,48,31504,,,656.3333333,0.886155379,222.425,251,,,,,,,,2.9420365,,,,,,,,,2.947863691,2.948719061,,,,,,,,,2.961038376,0.052931811,,,,,5459.6142,,,,,0.877968712,43326,49348,0.78548683,0.970450594,52292,,,47062.55319,57521.44681,,,,102500,80987.65957,124012.3404,,,,123224,77778.21277,168669.7872,55278,50925.48936,59630.51064,,,,,,0.388324136,1337,3443,,,,,,,,0.349212117,,52292,,,10.56910569,13,1230,,,,,,,,,,,,,,,,,,,,,,,,,,22.01189077,37,157249,15.056117,31.07422203,23.5295614,,,,,,,,,,,,,22.28821094,14.92676467,32.00958877,,,,16.53428639,26,157249,10.80074482,24.22656048,,,,,,,,,,,,,16.11322224,10.32404553,23.97519745,,,,17.68707483,39,220500,12.57723922,24.17881355,,,,,,,,,,,,,18.16643321,12.85564935,24.93484892,,,,,,,,,,,0.633243865,16515,26080,,,0.499,,,,,19.79935446,,,,,0.731424376,9962,13620,0.70861982,0.754228932,0.107977681,1432,13262,0.088031884,0.127923477,0.85,11577,13620,0.838105896,0.861894104,31504,,,,,0.161693753,5094,31504,,,0.25825292,8136,31504,,,0.008125952,256,31504,,,0.005808786,183,31504,,,0.006634078,209,31504,,,0.000063484,2,31504,,,0.020791011,655,31504,,,0.945213306,29778,31504,,,0.004199874,127,30239,6.13125E-05,0.008338436,0.481907059,15182,31504,,,0.691121914,21610,31268,, -33,009,33009,NH,Grafton County,2024,1,6291.163184,1131,248685,5648.983615,6933.342753,0,,,,2,,,,2,,,,2,,,,2,6826.704649,6103.585225,7549.824074,,,,,2,,0.111,,,0.091,0.135,2.933709599,,,2.304883676,3.663356489,4.859637408,,,4.047458558,5.763040885,0.066211463,320,4833,0.059201132,0.073221794,0,,,,0.056390977,0.028669517,0.084112438,0.203389831,0.100678677,0.306100984,,,,0.06552372,0.05809119,0.07295625,,,,,,,0.14,,,0.105,0.178,0.289,,,0.241,0.342,9,0.025054491,0.078,,,0.192,,,0.156,0.232,0.848229768,77289,91118,,,0.173786666,,,0.144140225,0.207302428,0.268292683,11,41,0.186632551,0.353859022,169.2,156,92201,,,5.666976579,128,22587,4.685222975,6.648730184,,,,,,,,,,,,,6.292352372,5.152165134,7.43253961,,,,,,,0.066294381,4345,65541,0.056762466,0.075826296,0.001887181,174,92201,,,529.8908046,0.00083401,76,91126,,,1199.026316,0.005717358,521,91126,,,174.9059501,2045,,,,,,,,,2060,0.47,,,,,,0.26,,,0.47,0.48,,,,,,0.64,0.34,0.32,0.48,0.93185656,60703,65142,0.922340278,0.941372841,0.687472783,14208,20667,0.641910896,0.73303467,0.023214468,1136,48935,,,0.101,1420,,0.061680851,0.140319149,,,,,,,0.556603774,0.086200399,1,0.324909747,0.183610435,0.466209059,0.101274257,0.072425527,0.130122986,4.84206826,151518,31292,4.413958821,5.270177699,0.212789646,3058,14371,0.170783571,0.254795721,13.23196061,122,92201,,,79.65482907,360,451950,71.42639998,87.88325817,,,,,,,,,,,,,86.13896761,77.1401717,95.13776351,,,,4.9,,,,,1,,,,,0.145133751,5100,35140,0.122192655,0.168074847,0.129949677,0.106945807,0.152953546,0.010671599,0.00678031,0.014562888,0.014086511,0.009010509,0.019162514,0.706975616,32067,45358,0.685611826,0.728339406,,,,0.593830334,0.499519097,0.688141571,0.476,0.299146176,0.652853824,0.640692641,0.518831371,0.762553911,0.745639507,0.727939844,0.76333917,0.317,,45358,0.289312289,0.344687711,80.294536,,,79.68575257,80.90331942,,,,93.9941693,85.21441631,102.7739223,,,,102.3699019,74.77344305,129.9663608,79.71775892,79.06875397,80.36676388,,,,307.0844136,1131,248685,287.29684,326.8719872,,,,,,,,,,,,,323.5760019,302.1496244,345.0023795,,,,29.74862413,22,73953,18.64330436,45.03977443,,,,,,,,,,,,,34.64075958,21.7091796,52.4465263,,,,4.070832485,20,4913,2.486570239,6.287070609,,,,,,,,,,,,,,,,,,,,,,0.09,,,0.076,0.106,0.148,,,0.128,0.172,0.071,,,0.06,0.083,42.6,35,82247,,,0.078,7120,,,,0.025054491,2232.806145,89118,,,19.79631789,54,272778,14.87160327,25.82990065,,,,,,,,,,,,,21.13503254,15.7846532,27.71578329,,,,0.304,,,0.288,0.322,0.073480059,3766,51252,0.061565166,0.085394953,0.041893507,631,15062,0.028787124,0.05499989,0.004301736,392,91126,,,232.4642857,0.901194354,830,921,,,0.04352143,263,6043,0.016947937,0.070094922,3.389784248,,,,,,3.726252617,,3.341555837,3.360835546,3.304647898,,,,,,3.616496915,,3.098318009,3.293860836,0.093138494,,,,,12409.78159,,,,,0.88105406,53228,60414,0.81132019,0.950787931,81205,,,75532.31915,86877.68085,93906,31741.23404,156070.766,84355,34448.2766,134261.7234,102446,21414,183478,69766,28690.59575,110841.4043,79894,77253.65957,82534.34043,,,,,,0.227582938,2401,10550,,,71.21747558,,,,,0.292715966,,81205,,,10.74053137,38,3538,,,1.586903602,10,630158,0.76098196,2.918372224,,,,,,,,,,,,,1.751595704,0.839958224,3.221246863,,,,16.45644391,84,451950,12.89922506,20.69150754,18.58612678,,,,,,,,,,,,,18.05575342,14.10169322,22.77487611,,,,13.49706826,61,451950,10.32418776,17.33754883,,,,,,,,,,,,,14.92749155,11.41834823,19.17498738,,,,9.045350531,57,630158,6.850860159,11.71930078,,,,,,,,,,,,,9.63377637,7.257478783,12.53968415,,,,,,,,,,,0.737693938,53966,73155,,,0.538,,,,,30.90320749,,,,,0.706190856,24776,35084,0.692508363,0.71987335,0.133348971,4548,34106,0.115457594,0.151240347,0.862814958,30271,35084,0.847879789,0.877750128,91126,,,,,0.158670412,14459,91126,,,0.235783421,21486,91126,,,0.012466256,1136,91126,,,0.003994469,364,91126,,,0.040208064,3664,91126,,,0.000395057,36,91126,,,0.027160196,2475,91126,,,0.899501789,81968,91126,,,0.003793131,331,87263,0.001549344,0.006036918,0.502293528,45772,91126,,,0.656752782,59842,91118,, -33,011,33011,NH,Hillsborough County,2024,1,6791.850628,5027,1176777,6502.258187,7081.443068,0,,,,2,1895.697337,1269.578259,2722.537594,,6205.372654,4855.321928,7814.639872,,5898.642382,4955.657241,6841.627524,,7169.416206,6835.792414,7503.039997,,,,,2,,0.115,,,0.095,0.139,2.960583916,,,2.406035567,3.564066428,4.857840825,,,4.137354877,5.594182281,0.070381031,2054,29184,0.067446329,0.073315732,0,,,,0.078830261,0.065513211,0.09214731,0.107816712,0.089595445,0.126037979,0.071507761,0.063099841,0.07991568,0.067714847,0.064423568,0.071006127,,,,0.062678063,0.037320665,0.088035461,0.137,,,0.107,0.172,0.334,,,0.29,0.379,9,0.040797322,0.069,,,0.202,,,0.168,0.24,0.887517526,375364,422937,,,0.165727443,,,0.14258545,0.191694132,0.388888889,49,126,0.345369649,0.431815809,274.2,1163,424079,,,9.031893875,768,85032,8.393109496,9.670678254,,,,2.903600465,1.392389285,5.339824635,11.41868512,7.86009743,16.03607933,26.85025818,23.40995585,30.2905605,6.937384128,6.306146581,7.568621675,,,,7.868628122,4.98803525,11.80680564,0.066974471,23456,350223,0.061017024,0.072931917,0.00083475,354,424079,,,1197.963277,0.000829829,354,426594,,,1205.067797,0.003820963,1630,426594,,,261.7141104,2914,,,,,3789,969,3274,3968,2887,0.51,,,,,,0.44,0.42,0.43,0.52,0.53,,,,,0.41,0.56,0.33,0.39,0.54,0.929927486,280720,301873,0.924684282,0.93517069,0.723097756,81167,112249,0.700563245,0.745632267,0.025777362,6220,241297,,,0.071,5801,,0.048361702,0.093638298,,,,0.013877979,0,0.03885097,0.222222222,0.13041738,0.314027065,0.237916471,0.185966789,0.289866154,0.062413845,0.049798573,0.075029116,4.150639463,178822,43083,3.963523159,4.337755767,0.194745161,16388,84151,0.17393275,0.215557572,8.866272558,376,424079,,,87.15535382,1817,2084783,83.14786169,91.16284595,,,,18.48268064,10.76684258,29.59256215,66.67174642,46.43931424,92.72425969,46.50979981,36.32453952,58.66578392,96.00414261,91.40783552,100.6004497,,,,3.3,,,,,1,,,,,0.140839449,22935,162845,0.131849533,0.149829364,0.122700714,0.114386499,0.131014929,0.016948632,0.013852114,0.02004515,0.008965581,0.006546849,0.011384313,0.753423417,174743,231932,0.74280427,0.764042565,,,,0.695680628,0.633185153,0.758176104,0.681873727,0.600851141,0.762896313,0.695085528,0.649369927,0.740801129,0.757012914,0.746738785,0.767287042,0.379,,231932,0.363373764,0.394626237,78.94654843,,,78.67668229,79.21641457,,,,92.83901518,88.53159404,97.14643632,78.76245874,76.28494114,81.23997634,85.86117367,82.42829848,89.29404886,78.49085972,78.19806714,78.78365229,,,,326.0314355,5027,1176777,316.6312355,335.4316354,,,,95.65069834,70.7629132,126.4552958,333.7672232,267.6910729,411.210554,280.5267039,237.8733576,323.1800502,339.6156508,329.2039163,350.0273853,,,,40.66051944,152,373827,34.19643234,47.12460654,,,,,,,,,,48.76318823,30.55963045,73.82805299,41.55434563,34.02461243,49.08407883,,,,4.106776181,120,29220,3.37198069,4.841571672,,,,,,,,,,,,,3.858264225,3.090311479,4.759154667,,,,,,,0.088,,,0.074,0.103,0.146,,,0.126,0.168,0.074,,,0.063,0.085,79.8,292,365899,,,0.069,28930,,,,0.040797322,16348.34378,400721,,,34.21072058,431,1259839,30.98089062,37.44055053,,,,,,,33.34040554,16.64341032,59.65519508,22.95276946,14.38437842,34.7507688,37.3858159,33.68480895,41.08682285,,,,0.332,,,0.316,0.349,0.074845266,19989,267071,0.06650484,0.083185691,0.043456914,3806,87581,0.035116489,0.05179734,0.001774521,757,426594,,,563.5323646,0.847748136,3638.535,4292,,,0.055174117,1117,20245,0.036503124,0.073845111,3.099368814,,,,,,3.480371011,2.455853254,2.45548333,3.203305034,3.071603753,,,,,,3.852573253,2.283671837,2.391591658,3.182772275,0.147941376,,,,,9575.16664,,,,,0.767721324,57434,74811,0.741085164,0.794357485,96415,,,92365.12766,100464.8723,71722,20104.29787,123339.7021,113472,89313.3617,137630.6383,63013,50514.2766,75511.7234,62824,54624.17021,71023.82979,98592,95988.59575,101195.4043,,,,,,0.229618467,12494,54412,,,60.54801012,,,,,0.277342737,,96415,,,8.54105742,184,21543,,,1.7246006,50,2899222,1.280031806,2.273670891,,,,,,,,,,,,,1.636704741,1.169285862,2.228727317,,,,17.81138488,388,2084783,15.98897858,19.63379119,18.61104969,,,,,,,,,,6.97315316,3.480972933,12.47689719,20.05522302,17.91874985,22.19169619,,,,9.689257827,202,2084783,8.353059576,11.02545608,,,,,,,,,,,,,10.88352452,9.335959763,12.43108928,,,,7.174338495,208,2899222,6.199334787,8.149342203,,,,,,,,,,,,,7.651594662,6.554896227,8.748293097,,,,,,,,,,,0.736512948,230941,313560,,,0.731,,,,,130.738371,,,,,0.67126557,111661,166344,0.663342164,0.679188976,0.12401794,20379,164323,0.115891737,0.132144144,0.918259751,152747,166344,0.911497097,0.925022405,426594,,,,,0.194618302,83023,426594,,,0.17338031,73963,426594,,,0.028087596,11982,426594,,,0.003403705,1452,426594,,,0.048266033,20590,426594,,,0.000984543,420,426594,,,0.083189168,35488,426594,,,0.819983403,349800,426594,,,0.023554268,9454,401371,0.020653987,0.026454548,0.496969015,212004,426594,,,0.244372093,103354,422937,, -33,013,33013,NH,Merrimack County,2024,1,6512.446035,1889,424980,6028.100554,6996.791517,0,,,,2,,,,2,,,,2,,,,2,6678.851851,6164.739597,7192.964105,,,,,2,,0.112,,,0.09,0.136,3.036854282,,,2.411739345,3.7206492,4.621390024,,,3.885709215,5.433492265,0.063355408,574,9060,0.05833925,0.068371567,0,,,,0.112903226,0.073514774,0.152291677,0.053435115,0.026202208,0.080668021,0.063973064,0.03614259,0.091803538,0.061151523,0.055936932,0.066366114,,,,,,,0.141,,,0.107,0.179,0.311,,,0.267,0.359,9.1,0.030910014,0.068,,,0.198,,,0.16,0.239,0.85383075,131326,153808,,,0.193918482,,,0.166194715,0.225658724,0.297619048,25,84,0.241466774,0.354862907,196.5,305,155238,,,5.711551688,191,33441,4.901535871,6.521567505,,,,,,,,,,8.116883117,3.892360955,14.92723705,5.493946485,4.64792189,6.33997108,,,,,,,0.063671933,7681,120634,0.055331508,0.072012359,0.000985583,153,155238,,,1014.627451,0.000781951,122,156020,,,1278.852459,0.005127548,800,156020,,,195.025,2209,,,,,,,1470,,2195,0.52,,,,,,0.5,0.23,,0.52,0.54,,,,,,0.58,0.5,0.33,0.54,0.934673911,103560,110798,0.927360751,0.941987071,0.678987156,25957,38229,0.646878056,0.711096257,0.022837571,1887,82627,,,0.075,2107,,0.044021277,0.105978723,,,,0.166368515,0,0.417440586,0.122719735,0,0.279890371,0.293527803,0.166707736,0.42034787,0.06033992,0.04483266,0.075847181,4.28349074,162370,37906,3.955010486,4.611970995,0.164375395,4687,28514,0.137740924,0.191009865,13.78528453,214,155238,,,90.70575396,689,759599,83.93275049,97.47875743,,,,,,,102.5641026,52.99636845,179.1588466,,,,94.02404329,86.83978318,101.2083034,,,,5.4,,,,,1,,,,,0.134521196,7965,59210,0.122498663,0.146543728,0.111271676,0.099919969,0.122623384,0.016297923,0.011293189,0.021302657,0.009288972,0.006113836,0.012464107,0.761149125,59958,78773,0.751578572,0.770719678,,,,0.587238848,0.483059164,0.691418532,0.537861915,0.37360132,0.702122511,0.729372937,0.588819115,0.86992676,0.780429978,0.763462289,0.797397667,0.394,,78773,0.37471406,0.41328594,79.37250733,,,78.92634618,79.81866849,,,,84.43997734,80.05109213,88.82886255,77.67975013,71.32624053,84.03325974,95.53400224,81.82756972,109.2404348,79.16611062,78.70363416,79.62858708,,,,314.6682964,1889,424980,299.4962578,329.840335,,,,,,,,,,,,,322.8175061,306.865564,338.7694481,,,,31.20861053,41,131374,22.39583774,42.33800415,,,,,,,,,,,,,31.21477499,21.86244465,43.21440604,,,,4.03930131,37,9160,2.844040892,5.567644775,,,,,,,,,,,,,3.893417691,2.663094818,5.496344091,,,,,,,0.091,,,0.076,0.108,0.151,,,0.129,0.174,0.072,,,0.061,0.084,82.6,112,135559,,,0.068,10410,,,,0.030910014,4526.617025,146445,,,28.52470653,131,459251,23.63996478,33.40944829,,,,,,,,,,,,,28.90289811,23.77407704,34.03171918,,,,0.326,,,0.308,0.342,0.071888482,6632,92254,0.061165078,0.082611886,0.038518073,1153,29934,0.027794669,0.049241477,0.002115113,330,156020,,,472.7878788,0.889989154,1230.855,1383,,,0.050556362,418,8268,0.026890979,0.074221745,3.237049039,,,,,,3.17706582,2.637073854,2.996258507,3.269901119,3.166743433,,,,,,3.191832577,2.660529974,2.899588027,3.197429939,0.096127429,,,,,9040.3371,,,,,0.812386512,54135,66637,0.762511681,0.862261343,84898,,,78615.2766,91180.7234,31423,30527,32319,73935,7766.829787,140103.1702,75625,59093.08511,92156.91489,43409,20096.31915,66721.68085,89608,86911.65957,92304.34043,,,,,,0.218059668,3830,17564,,,71.38114365,,,,,0.288923178,,84898,,,12.8968254,91,7056,,,1.704263025,18,1056175,1.010054279,2.693470331,,,,,,,,,,,,,1.433957549,0.783957936,2.405937109,,,,20.79229536,167,759599,17.52931162,24.0552791,21.98528434,,,,,,,,,,,,,21.58994793,18.09488911,25.08500676,,,,11.32176319,86,759599,9.055949158,13.98228544,,,,,,,,,,,,,11.86017567,9.446563721,14.70247218,,,,9.184084077,97,1056175,7.447673499,11.20380372,,,,,,,,,,,,,9.525575145,7.688368527,11.6694731,,,,,,,,,,,0.753144918,89805,119240,,,0.704,,,,,49.20055707,,,,,0.737715326,44153,59851,0.727225402,0.748205251,0.10499822,6195,59001,0.093354703,0.116641738,0.902591435,54021,59851,0.8897809,0.915401971,156020,,,,,0.183309832,28600,156020,,,0.199782079,31170,156020,,,0.017747725,2769,156020,,,0.003070119,479,156020,,,0.023868735,3724,156020,,,0.000397385,62,156020,,,0.026477375,4131,156020,,,0.914299449,142649,156020,,,0.006797768,999,146960,0.004244963,0.009350573,0.501801051,78291,156020,,,0.546499532,84056,153808,, -33,015,33015,NH,Rockingham County,2024,1,5078.871765,3429,870121,4790.817623,5366.925906,0,,,,2,2893.332081,1444.34095,5176.970314,1,8623.331543,4455.801243,15063.22479,1,2605.237646,1669.224918,3876.387108,1,5216.21678,4910.826311,5521.60725,,,,,2,,0.105,,,0.086,0.125,2.898134834,,,2.252818061,3.528902259,4.649972743,,,3.875112773,5.432759294,0.063619551,1204,18925,0.060142111,0.067096991,0,,,,0.111969112,0.084813828,0.139124396,0.130434783,0.074244099,0.186625466,0.062322946,0.04449077,0.080155123,0.061393837,0.057809741,0.064977934,,,,0.075949367,0.034641051,0.117257683,0.129,,,0.098,0.163,0.285,,,0.244,0.328,9.2,0.052067264,0.054,,,0.182,,,0.15,0.216,0.87523872,274979,314176,,,0.202888388,,,0.174517554,0.233579704,0.461538462,48,104,0.416489408,0.505033851,181.7,576,316947,,,3.579336408,215,60067,3.100883323,4.057789493,,,,,,,,,,5.261180008,2.876336068,8.827366074,3.575552162,3.069787391,4.081316933,,,,,,,0.050075047,12878,257174,0.0441176,0.056032493,0.00078562,249,316947,,,1272.879518,0.000763875,244,319424,,,1309.114754,0.003036716,970,319424,,,329.3030928,2544,,,,,,1158,2366,3276,2525,0.5,,,,,,0.4,0.48,0.4,0.5,0.54,,,,,,0.54,0.4,0.45,0.54,0.957857032,222219,231996,0.953446839,0.962267225,0.758531088,57216,75430,0.731132722,0.785929455,0.025903605,4887,188661,,,0.048,2789,,0.03012766,0.06587234,,,,0.078032231,0,0.168154829,0.082585278,0,0.210209853,0.12920808,0.056350344,0.202065815,0.058868697,0.045687898,0.072049497,3.855092384,196336,50929,3.700010504,4.010174263,0.170613246,10152,59503,0.146750167,0.194476326,9.275998826,294,316947,,,74.40964699,1156,1553562,70.1201497,78.69914429,,,,,,,95.6480153,49.42272524,167.077834,31.28666406,17.88303178,50.80758232,77.82122913,73.25127794,82.39118032,,,,5.9,,,,,1,,,,,0.126591577,15510,122520,0.117089493,0.136093661,0.108940954,0.099458571,0.118423338,0.011998041,0.009350366,0.014645716,0.009304603,0.00614617,0.012463037,0.762315973,131004,171850,0.750859556,0.773772391,,,,0.75059644,0.687556632,0.813636248,0.732277526,0.647473936,0.817081117,0.705197649,0.653615835,0.756779463,0.750533529,0.738896954,0.762170103,0.438,,171850,0.419426519,0.456573481,80.54502105,,,80.25721907,80.83282303,,,,91.45427703,84.53766928,98.37088479,79.07082791,74.19745928,83.94419655,90.46165859,85.32919866,95.59411852,80.30931103,80.01277503,80.60584703,,,,262.5930619,3429,870121,253.1936308,271.992493,,,,137.1983394,91.88388114,197.0397012,339.1257462,223.4860036,493.4101559,127.6563258,84.8267014,184.4989337,269.3245798,259.4300641,279.2190956,,,,26.39976125,69,261366,20.54059004,33.41058749,,,,,,,,,,,,,26.42694682,20.21452033,33.94651875,,,,2.810627353,53,18857,2.105352757,3.676369779,,,,,,,,,,,,,2.613392183,1.906226191,3.496924357,,,,,,,0.086,,,0.073,0.101,0.147,,,0.126,0.168,0.069,,,0.058,0.08,54.2,150,276595,,,0.054,16950,,,,0.052067264,15371.45397,295223,,,23.4535827,220,938023,20.35435186,26.55281353,,,,,,,,,,,,,24.36242942,21.06734142,27.65751743,,,,0.305,,,0.287,0.323,0.056135757,11105,197824,0.048986821,0.063284693,0.031671395,1987,62738,0.02333097,0.040011821,0.001433831,458,319424,,,697.4323144,0.898954197,3395.35,3777,,,0.024175199,340,14064,0.013296509,0.035053889,3.382319572,,,,,,3.728071452,3.192267679,3.082231583,3.389118425,3.375771666,,,,,,3.946231623,3.169179467,3.123672361,3.369066569,0.059057456,,,,,13347.90738,,,,,0.765978484,65076,84958,0.731707634,0.800249333,107445,,,101311.2128,113578.7872,168422,167549.8298,169294.1702,110038,77175.53192,142900.4681,95949,33711.55319,158186.4468,106875,87626.48936,126123.5106,110503,107214.4894,113791.5106,,,,,,0.100673697,4229,42007,,,64.49882336,,,,,0.258979013,,107445,,,10.68015739,152,14232,,,0.741224596,16,2158590,0.423673901,1.203702306,,,,,,,,,,,,,0.701900747,0.38373567,1.177670187,,,,15.1149735,253,1553562,13.14709779,17.08284921,16.28515631,,,,,,,,,,,,,15.88758155,13.76997053,18.00519257,,,,8.625339703,134,1553562,7.164912612,10.0857668,,,,,,,,,,,,,9.151329458,7.584200938,10.71845798,,,,7.134286734,154,2158590,6.007488205,8.261085262,,,,,,,,,,,,,7.520365149,6.316856072,8.723874225,,,,,,,,,,,0.815648464,198798,243730,,,0.725,,,,,55.76008361,,,,,0.784918383,98479,125464,0.775213548,0.794623218,0.115032903,14177,123243,0.105035406,0.125030399,0.94241376,118239,125464,0.93661284,0.948214681,319424,,,,,0.183004408,58456,319424,,,0.203103086,64876,319424,,,0.008728211,2788,319424,,,0.002194575,701,319424,,,0.024647491,7873,319424,,,0.000547861,175,319424,,,0.037886947,12102,319424,,,0.91349742,291793,319424,,,0.003389256,1020,300951,0.002337563,0.004440949,0.500713785,159940,319424,,,0.290101726,91143,314176,, -33,017,33017,NH,Strafford County,2024,1,7324.725265,1686,370157,6777.735538,7871.714992,0,,,,2,3983.975382,2277.18616,6469.726424,1,,,,2,,,,2,7769.248753,7161.221525,8377.275982,,,,,2,,0.122,,,0.1,0.149,3.290897435,,,2.567962873,4.106900252,5.001868128,,,4.15606706,5.950003896,0.071890638,589,8193,0.06629731,0.077483967,0,,,,0.114942529,0.084969022,0.144916035,,,,0.066202091,0.037436227,0.094967955,0.068550644,0.062692646,0.074408641,,,,0.093220339,0.040761184,0.145679494,0.14,,,0.105,0.177,0.325,,,0.27,0.383,8.7,0.056651361,0.076,,,0.189,,,0.152,0.23,0.902688538,118152,130889,,,0.206600108,,,0.170626481,0.244096809,0.309090909,17,55,0.239012394,0.380201481,284,376,132416,,,6.333898084,243,38365,5.537511371,7.130284797,,,,,,,,,,9.665427509,5.146433079,16.5281754,6.222793538,5.387091114,7.058495961,,,,,,,0.06222864,6464,103875,0.052696725,0.071760555,0.000664572,88,132416,,,1504.727273,0.000733321,97,132275,,,1363.659794,0.003258363,431,132275,,,306.9025522,2808,,,,,,,2684,,2807,0.38,,,,,,0.17,0.31,0.36,0.39,0.5,,,,,,0.47,0.35,0.28,0.5,0.944486181,82975,87852,0.936997862,0.951974501,0.734422263,24280,33060,0.692613647,0.776230878,0.023189893,1718,74084,,,0.089,2031,,0.053255319,0.124744681,,,,0.128295255,0,0.29574556,0.148351648,0,0.502852366,0.098001903,0,0.204135181,0.064617182,0.045322365,0.083911998,4.512947658,163820,36300,4.102045561,4.923849756,0.185784418,4352,23425,0.147006272,0.224562564,6.94780087,92,132416,,,93.52732728,611,653285,86.11125438,100.9434002,,,,,,,,,,,,,99.70208069,91.64325745,107.7609039,,,,6.2,,,,,1,,,,,0.15312061,7630,49830,0.137805329,0.168435891,0.128298453,0.113478035,0.143118872,0.018864138,0.012860087,0.024868189,0.010435481,0.005759102,0.015111859,0.742835368,51659,69543,0.730576305,0.755094432,,,,0.632926829,0.507370361,0.758483298,,,,0.65601023,0.543037976,0.768982484,0.722328567,0.702549944,0.74210719,0.39,,69543,0.360212766,0.419787234,77.65884956,,,77.17802392,78.1396752,,,,95.49618674,77.4431434,113.5492301,,,,90.13621142,81.98975174,98.28267111,77.21289309,76.70084677,77.7249394,,,,365.1147712,1686,370157,346.8577039,383.3718385,,,,167.4279544,104.9262077,253.4879351,,,,,,,379.0673661,359.5644027,398.5703295,,,,35.98597384,43,119491,26.0432277,48.4728706,,,,,,,,,,,,,39.88908888,28.62509887,54.11405319,,,,4.335782247,36,8303,3.036728582,6.002550222,,,,,,,,,,,,,4.689008413,3.247274636,6.552419266,,,,,,,0.098,,,0.082,0.116,0.157,,,0.133,0.183,0.089,,,0.074,0.105,63.7,74,116213,,,0.076,9940,,,,0.056651361,6976.218511,123143,,,42.57670142,168,394582,36.13836831,49.01503453,,,,,,,,,,,,,44.51469126,37.57354983,51.45583269,,,,0.313,,,0.296,0.329,0.070775718,5707,80635,0.058860824,0.082690611,0.033923906,831,24496,0.023200502,0.04464731,0.001648082,218,132275,,,606.7660551,0.851741728,926.695,1088,,,,,,,,3.150942399,,,,,,,,2.819083896,3.172076155,,,,,,,,,,,0.046948011,,,,,9271.500875,,,,,0.824606551,55435,67226,0.768006314,0.881206788,82845,,,76624.23404,89065.76596,,,,92212,61391.74468,123032.2553,74266,58148.7234,90383.2766,106618,78247.44681,134988.5532,83702,79543.70213,87860.29787,,,,,,0.238425926,3502,14688,,,57.89186233,,,,,0.300235379,,82845,,,9.813874789,58,5910,,,1.542635129,14,907538,0.84337298,2.588279623,,,,,,,,,,,,,1.702945488,0.931016145,2.857253164,,,,14.99084845,100,653285,11.92843736,18.05325954,15.30725487,,,,,,,,,,,,,16.16290892,12.96312559,19.91315585,,,,8.112845083,53,653285,6.077077682,10.61180112,,,,,,,,,,,,,8.986752171,6.731694059,11.75489311,,,,8.484493211,77,907538,6.69582936,10.60416076,,,,,,,,,,,,,8.758005364,6.852599813,11.02925831,,,,,,,,,,,0.713588985,73596,103135,,,0.679,,,,,77.73239084,,,,,0.670951661,34187,50953,0.652345759,0.689557564,0.128513255,6438,50096,0.112217811,0.144808698,0.900614292,45889,50953,0.888192079,0.913036504,132275,,,,,0.175467776,23210,132275,,,0.16960877,22435,132275,,,0.012587413,1665,132275,,,0.002925723,387,132275,,,0.039281799,5196,132275,,,0.000536761,71,132275,,,0.031449631,4160,132275,,,0.895263655,118421,132275,,,0.00291058,364,125061,0.001071081,0.004750079,0.503912304,66655,132275,,,0.367364714,48084,130889,, -33,019,33019,NH,Sullivan County,2024,1,8048.3707,673,118486,7000.439569,9096.301831,0,,,,2,,,,2,,,,2,,,,2,8174.846597,7082.44216,9267.251034,,,,,2,,0.141,,,0.115,0.169,3.534323169,,,2.808006282,4.328749207,5.355767369,,,4.468548318,6.319287378,0.068965517,180,2610,0.059243986,0.078687049,0,,,,,,,,,,,,,0.067307692,0.057478104,0.077137281,,,,,,,0.166,,,0.124,0.206,0.326,,,0.271,0.38,8.1,0.08469528,0.09,,,0.238,,,0.193,0.284,0.750203191,32306,43063,,,0.168497836,,,0.138586092,0.200580873,0.142857143,3,21,0.047592613,0.273117554,188.4,82,43533,,,13.73346897,108,7864,11.14332178,16.32361616,,,,,,,,,,,,,14.81795089,11.98362638,17.6522754,,,,,,,0.070200659,2344,33390,0.059477255,0.080924063,0.000712104,31,43533,,,1404.290323,0.000386733,17,43958,,,2585.764706,0.002229401,98,43958,,,448.5510204,2350,,,,,,,,,2332,0.5,,,,,,,,,0.5,0.42,,,,,,0.5,,,0.42,0.909152169,29682,32648,0.890210848,0.928093489,0.57936668,5745,9916,0.512815061,0.645918299,0.02375526,542,22816,,,0.131,982,,0.079765957,0.182234043,,,,,,,,,,0.046666667,0,0.341559344,0.10666277,0.064062056,0.149263484,4.548870615,131103,28821,3.912166075,5.185575155,0.23869872,1827,7654,0.174821362,0.302576078,6.661613029,29,43533,,,89.7454283,194,216167,77.11646966,102.3743869,,,,,,,,,,,,,91.49712787,78.38289988,104.6113559,,,,5.4,,,,,0,,,,,0.12037037,2080,17280,0.09888668,0.141854061,0.110591716,0.088955399,0.132228033,0.00625,0.001942819,0.010557181,0.008101852,0.003181732,0.013021971,0.805520513,15963,19817,0.780140848,0.830900177,,,,,,,,,,,,,0.766756032,0.725346263,0.808165802,0.408,,19817,0.357295163,0.458704837,78.40053259,,,77.49326877,79.30779641,,,,,,,,,,,,,78.20849313,77.28238758,79.13459868,,,,370.027872,673,118486,339.0355874,401.0201567,,,,,,,,,,,,,375.8742401,343.7271285,408.0213517,,,,37.16090673,13,34983,19.78661776,63.54628225,,,,,,,,,,,,,37.83817872,19.5515391,66.09568345,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.105,,,0.087,0.121,0.168,,,0.143,0.195,0.08,,,0.067,0.092,41.9,16,38195,,,0.09,3880,,,,0.08469528,3704.740942,43742,,,31.55156757,41,129946,22.64194963,42.8032641,,,,,,,,,,,,,30.18289201,21.25154142,41.60314077,,,,0.342,,,0.324,0.36,0.078614516,2020,25695,0.064316644,0.092912389,0.043387414,353,8136,0.029089542,0.057685286,0.000818964,36,43958,,,1221.055556,0.799386921,293.375,367,,,0.150522317,317,2106,0.061206271,0.239838363,3.159471089,,,,,,,,,3.154743326,2.963546475,,,,,,,,,2.956676335,0.060947269,,,,,13504.49971,,,,,0.912690147,53459,58573,0.821407844,1.003972451,74700,,,66139.14894,83260.85106,66458,41658.34043,91257.65957,242131,156871.5957,327390.4043,243512,197450.2128,289573.7872,76710,51502.85106,101917.1489,69000,61889.19149,76110.80851,,,,,,0.311320755,1485,4770,,,76.65312959,,,,,0.29210174,,74700,,,7.024586051,14,1993,,,,,,,,,,,,,,,,,,,,,,,,,,17.87206978,40,216167,12.44855144,24.85572269,18.50421202,,,,,,,,,,,,,18.95367661,13.20193022,26.35997595,,,,12.02773781,26,216167,7.856917668,17.62342267,,,,,,,,,,,,,12.7215258,8.310123015,18.63998282,,,,10.26021222,31,302138,6.971316411,14.56355225,,,,,,,,,,,,,10.82969432,7.35825187,15.37188664,,,,,,,,,,,0.700272871,24380,34815,,,0.59,,,,,25.2186933,,,,,0.732649594,11644,15893,0.705571939,0.759727249,0.13788828,2113,15324,0.111953131,0.163823429,0.857610269,13630,15893,0.831382153,0.883838385,43958,,,,,0.174643978,7677,43958,,,0.237453933,10438,43958,,,0.009054097,398,43958,,,0.004322308,190,43958,,,0.011579235,509,43958,,,0.000136494,6,43958,,,0.021042814,925,43958,,,0.938191001,41241,43958,,,0.000988738,41,41467,0,0.00362267,0.498271077,21903,43958,,,0.781366835,33648,43063,, -34,000,34000,NJ,New Jersey,2024,,6516.293727,106997,25093357,6457.098268,6575.489187,0,4296.339131,2723.510465,6446.618179,1,2671.857624,2555.66322,2788.052027,,11996.69025,11774.93667,12218.44384,,5933.077791,5814.867714,6051.287867,,6226.001403,6144.554402,6307.448403,,3601.444211,1860.918777,6290.99826,1,,0.14,,,0.13,0.151,3.161798457,,,2.940933936,3.382662978,4.410679503,,,4.160540976,4.660818031,0.078576443,55513,706484,0.077948991,0.079203896,0,0.113772455,0.079717993,0.147826917,0.091442499,0.089413758,0.09347124,0.12810908,0.125966091,0.130252069,0.076266983,0.075090585,0.077443381,0.061674132,0.060843132,0.062505132,0.092105263,0.054569209,0.129641318,0.093878569,0.087495666,0.100261472,0.108,,,0.099,0.119,0.283,,,0.269,0.298,9,0.036519278,0.088,,,0.234,,,0.222,0.247,0.962967249,8944997,9288994,,,0.16840748,,,0.156441086,0.1810927,0.229042904,694,3030,0.220084372,0.238104063,360.7,33425,9267130,,,9.557758231,18399,1925033,9.41965145,9.695865011,3.064664419,1.469625711,5.636026982,0.810012656,0.677710589,0.942314724,16.67193279,16.18399911,17.15986647,22.11310384,21.69286499,22.53334269,2.5848077,2.482139765,2.687475635,,,,8.072378427,7.294776346,8.849980507,0.082623481,622957,7539709,0.080240502,0.085006459,0.000781795,7245,9267130,,,1279.10697,0.00086442,8006,9261699,,,1156.844741,0.002911777,26968,9261699,,,343.4329205,2922,,,,,2292,1622,4809,3142,2751,0.41,,,,,0.36,0.34,0.36,0.34,0.43,0.52,,,,,0.44,0.55,0.36,0.39,0.54,0.906373002,5825262,6427003,0.904832828,0.907913175,0.716910672,1712420,2388610,0.712036101,0.721785243,0.037067543,175693,4739807,,,0.127,249908,,0.118659575,0.135340426,0.186271718,0.131223847,0.241319588,0.055064418,0.049430992,0.060697844,0.224967083,0.213718771,0.236215394,0.216883592,0.209904449,0.223862734,0.075048571,0.071263039,0.078834102,5.110498969,195727,38299,5.050182285,5.170815652,0.214753413,432112,2012131,0.209997169,0.219509657,8.079092448,7487,9267130,,,65.54330761,29459,44945855,64.79483584,66.29177938,25.6723901,14.95511329,41.10398347,18.63553398,17.36923502,19.90183294,96.96820536,94.43792358,99.49848714,45.2837573,43.92357945,46.64393514,75.75234064,74.66182374,76.84285755,,,,7.8,,,,,0.80952381,,,,,0.198063602,648075,3272055,0.195829435,0.20029777,0.16825184,0.166017911,0.170485769,0.032762286,0.031791748,0.033732823,0.008647471,0.008089946,0.009204995,0.653853918,2953925,4517714,0.65088048,0.656827356,0.499929319,0.468315092,0.531543545,0.570689777,0.561807292,0.579572263,0.674445403,0.667158592,0.681732213,0.609480117,0.60188955,0.617070685,0.743276792,0.739961371,0.746592213,0.43,,4517714,0.42623218,0.43376782,79.15778002,,,79.10074923,79.2148108,97.30894135,90.85455275,103.7633299,87.98819597,87.65094659,88.32544534,73.42959698,73.2536012,73.60559275,81.90377975,81.70906684,82.09849266,79.17119157,79.09876275,79.24362038,113.1724642,74.97565655,151.3692718,329.7193796,106997,25093357,327.6781508,331.7606083,206.6399957,163.8526651,257.1813618,150.4484795,145.9749431,154.922016,586.1793118,578.3716951,593.9869284,289.9961387,285.283898,294.7083794,319.4472486,316.7823254,322.1121719,207.6600727,126.8441673,320.7141401,34.12726218,2971,8705650,32.90008804,35.35443632,,,,21.67862897,18.55469375,24.8025642,73.06902718,68.17402923,77.96402513,34.41266753,32.06440075,36.76093432,26.08280639,24.49757115,27.66804163,,,,4.138371769,2927,707283,3.988446716,4.288296823,,,,2.021365061,1.706175168,2.336554954,9.799690536,9.170193641,10.42918743,4.222066232,3.932728907,4.511403556,2.931191676,2.74400504,3.118378311,,,,9.662475182,7.57383811,12.14911187,0.093384879,,,0.085141657,0.102336916,0.138636071,,,0.128131671,0.149853621,0.088,,,0.08,0.095,448.5,35207,7849456,,,0.088,812440,,,,0.036519278,321073.6234,8791894,,,32.18814539,8701,27031691,31.5118017,32.86448908,,,,3.628962976,2.946167559,4.422543499,55.31312504,52.8517182,57.77453187,23.81560605,22.55124887,25.07996324,35.92158994,34.94989046,36.89328942,,,,0.323249333,,,0.31131786,0.335415374,0.100273266,556948,5554302,0.096698798,0.103847734,0.034529604,72108,2088295,0.030955136,0.038104072,0.000836564,7748,9261699,,,1195.366417,0.885684178,94241.225,106405,,,0.052958892,24917,470497,0.049521798,0.056395987,3.298849193,,,,,,3.921303746,2.906463904,2.976613329,3.504787972,3.221478525,,,,,,4.058994009,2.713201856,2.870384053,3.450852602,0.292431964,,,,,7554.684,,,,,0.809304691,63668,78670,0.800261841,0.81834754,96341,,,95053,97629,79787,69558.06383,90015.93617,146386,143613.4043,149158.5957,65351,64139.25532,66562.74468,70220,69184.59575,71255.40426,109096,108291.7447,109900.2553,,,,,,0.34259181,457777,1336217,,,64.60211417,,,,,0.274271877,,,,,8.219532716,,,,,3.947598486,2481,62848337,3.792261218,4.102935754,,,,0.663404657,0.476070636,0.899983327,19.69976186,18.73507627,20.66444745,3.605682277,3.278654166,3.932710389,1.031909452,0.924714912,1.139103991,,,,7.772602225,3702,44945855,7.515678355,8.029526095,8.236577099,,,,5.159969528,4.482963086,5.836975971,4.869779209,4.303546693,5.436011726,4.700442766,4.248717333,5.152168198,10.13037011,9.723616709,10.53712351,,,,4.859180007,2184,44945855,4.655385374,5.062974639,,,,0.582360437,0.380417172,0.85329297,16.92904684,15.87181445,17.98627924,2.903350339,2.558941577,3.247759101,3.63294119,3.394125113,3.871757266,,,,6.829138534,4292,62848337,6.624827351,7.033449717,,,,3.106675469,2.667233689,3.546117249,9.923662808,9.238977036,10.60834858,6.477874584,6.039538093,6.916211075,6.991476399,6.712455769,7.270497029,,,,,,,,,,,0.738965593,4549353,6156380,,,,,,,,196.6582892,,,,,0.638664205,2195831,3438162,0.634752895,0.642575514,0.173132055,582834,3366413,0.170845295,0.175418815,0.905794433,3114268,3438162,0.903467397,0.90812147,9261699,,,,,0.21530704,1994109,9261699,,,0.174024982,1611767,9261699,,,0.130074514,1204711,9261699,,,0.007273612,67366,9261699,,,0.105467906,976812,9261699,,,0.001326539,12286,9261699,,,0.219017159,2028471,9261699,,,0.528905874,4898567,9261699,,,0.061461412,536255,8725068,0.060473488,0.062449337,0.507108361,4696685,9261699,,,0.062462631,580215,9288994,, -34,001,34001,NJ,Atlantic County,2024,1,9722.667788,4540,738590,9278.235309,10167.10027,0,,,,2,4378.748094,3272.78564,5484.710549,,16754.96203,15262.73202,18247.19204,,7509.213731,6686.448469,8331.978993,,9502.038696,8893.212127,10110.86527,,,,,2,,0.167,,,0.143,0.192,3.698603182,,,2.996608721,4.554022663,5.320905258,,,4.458278178,6.256839496,0.081703696,1596,19534,0.077862445,0.085544948,0,,,,0.088616224,0.074073415,0.103159032,0.130707763,0.119546647,0.141868878,0.073417273,0.066609638,0.080224907,0.064888248,0.059595795,0.070180701,,,,0.089673913,0.060481922,0.118865904,0.16,,,0.13,0.193,0.352,,,0.299,0.409,7.7,0.078237578,0.112,,,0.28,,,0.239,0.325,0.930252719,255386,274534,,,0.173499639,,,0.143805229,0.208256063,0.304812834,57,187,0.267882733,0.342202949,492.1,1353,274966,,,13.54460378,783,57809,12.59587627,14.4933313,,,,2.025931929,0.971513107,3.725760949,24.69135803,21.48631677,27.89639928,25.58887212,23.04921602,28.12852822,3.917690464,3.161088301,4.674292627,,,,19.86097319,14.18897043,27.04500842,0.099381709,21619,217535,0.088658304,0.110105113,0.000716452,197,274966,,,1395.766498,0.000598611,165,275638,,,1670.533333,0.002042534,563,275638,,,489.5879219,2890,,,,,,2775,5440,2608,2624,0.4,,,,,,0.26,0.32,0.32,0.43,0.48,,,,,,0.42,0.32,0.33,0.5,0.883825809,169326,191583,0.876877566,0.890774053,0.625795576,39723,63476,0.596262386,0.655328766,0.051365124,6310,122846,,,0.159,8933,,0.112531915,0.205468085,0.335078534,0,0.772294049,0.158300354,0.108493512,0.208107196,0.266975099,0.197801529,0.336148668,0.315634392,0.27033852,0.360930265,0.069581445,0.05078743,0.08837546,4.879769329,145544,29826,4.576250186,5.183288472,0.245984093,14134,57459,0.21835621,0.273611976,7.746412284,213,274966,,,111.225137,1487,1336928,105.5718175,116.8784566,,,,25.98125638,17.26435618,37.55014934,150.7069855,133.4503691,167.9636019,74.63289464,64.1305687,85.13522058,128.6540293,120.511297,136.7967617,,,,7.1,,,,,1,,,,,0.217397755,21980,101105,0.203013976,0.231781533,0.18663606,0.173313599,0.199958521,0.029968844,0.024255239,0.03568245,0.010632511,0.007473621,0.013791401,0.741223076,93741,126468,0.726450968,0.755995184,,,,0.635072167,0.586338161,0.683806174,0.654330386,0.602124995,0.706535777,0.629514964,0.591133899,0.667896029,0.814038411,0.798087142,0.82998968,0.306,,126468,0.28671406,0.32528594,75.94516097,,,75.59466341,76.29565853,,,,90.95930362,87.04262167,94.87598558,69.15809581,68.18427525,70.13191637,80.26158675,78.98745295,81.53572055,76.05546411,75.59948376,76.51144447,,,,454.1979256,4540,738590,440.0713788,468.3244725,,,,211.8163193,177.6444271,245.9882115,777.3539787,728.0683641,826.6395933,341.9785497,310.0197955,373.9373039,447.2974067,428.6671525,465.9276609,,,,54.56124001,137,251094,45.42473662,63.69774341,,,,,,,121.9958521,90.5476729,160.8363222,48.18116117,33.74549294,66.70303607,40.2607362,29.01639737,54.42081938,,,,6.512191428,129,19809,5.388393119,7.635989738,,,,,,,14.05733186,10.4666069,18.48279531,6.898991686,4.905857507,9.431148747,3.437648175,2.302246934,4.937036207,,,,,,,0.112,,,0.097,0.129,0.162,,,0.141,0.184,0.102,,,0.088,0.117,515.6,1211,234885,,,0.112,30810,,,,0.078237578,21480.04877,274549,,,58.75887777,471,801581,53.45224407,64.06551146,,,,,,,78.16190681,62.93109169,95.96550132,42.51835587,32.95114179,53.99680898,69.01419497,61.30659547,76.72179446,,,,0.343,,,0.332,0.354,0.120471689,19421,161208,0.106173816,0.134769561,0.039884072,2367,59347,0.027969178,0.051798965,0.001059361,292,275638,,,943.9657534,0.877264627,2953.75,3367,,,0.065672058,942,14344,0.041578959,0.089765157,3.023488668,,,,,,3.490726225,2.671183655,2.817531968,3.259618507,2.937436557,,,,,,3.532537303,2.492460749,2.701778346,3.250663076,0.170885898,,,,,8164.506136,,,,,0.844638986,50653,59970,0.794291931,0.894986041,76108,,,72440.59575,79775.40426,44514,6735.446809,82292.55319,80449,63822.95745,97075.04255,49658,42966.59575,56349.40426,50186,46115.87234,54256.12766,86136,82000.34043,90271.65957,,,,,,0.50238916,21133,42065,,,55.32828886,,,,,0.294436853,,76108,,,7.063987381,103,14581,,,6.375728028,120,1882138,5.234965542,7.516490515,,,,,,,27.3506019,21.5129834,34.28421631,4.416790429,2.524577356,7.172590944,2.565549797,1.690713482,3.732740259,,,,11.96738305,170,1336928,10.08319968,13.85156642,12.71571842,,,,,,,10.38708148,6.253701584,16.22071441,5.529188912,3.02285903,9.277039475,15.74528584,12.79123909,18.69933258,,,,8.826204553,118,1336928,7.233669295,10.41873981,,,,,,,24.68919899,18.20386634,32.73429596,3.847056425,1.844813089,7.074873737,7.646798406,5.791610438,9.907314284,,,,12.16701432,229,1882138,10.5911372,13.74289144,,,,7.19753975,3.592985911,12.87838678,18.96308398,14.16253814,24.86756173,11.04197607,7.888549593,15.03603741,11.49746391,9.448824883,13.54610293,,,,,,,,,,,0.732322255,140031,191215,,,0.607,,,,,113.8426279,,,,,0.678713428,72378,106640,0.666589121,0.690837735,0.187028919,19454,104016,0.17374737,0.200310468,0.890875844,95003,106640,0.878975897,0.902775791,275638,,,,,0.206539011,56930,275638,,,0.198913067,54828,275638,,,0.143898882,39664,275638,,,0.007001937,1930,275638,,,0.080602094,22217,275638,,,0.001117408,308,275638,,,0.202903809,55928,275638,,,0.550849302,151835,275638,,,0.055331984,14382,259922,0.050350704,0.060313264,0.511395381,140960,275638,,,0.149351264,41002,274534,, -34,003,34003,NJ,Bergen County,2024,1,4491.863463,8021,2594200,4333.173082,4650.553844,0,,,,2,2413.757539,2140.399696,2687.115382,,7484.766381,6627.291361,8342.2414,,4461.164026,4128.232369,4794.095684,,4896.395394,4662.807222,5129.983567,,,,,2,,0.119,,,0.101,0.139,2.632882477,,,2.143904843,3.177359927,3.967540959,,,3.358641888,4.619039518,0.075101098,4810,64047,0.073059938,0.077142257,0,,,,0.082530121,0.077526837,0.087533405,0.133946536,0.122628608,0.145264465,0.078266456,0.07424316,0.082289753,0.063793443,0.061048121,0.066538766,,,,0.074882995,0.054507086,0.095258904,0.107,,,0.084,0.131,0.252,,,0.216,0.292,9.4,0.008947506,0.067,,,0.226,,,0.192,0.259,0.995190074,951135,955732,,,0.16097871,,,0.136539873,0.188138957,0.134831461,24,178,0.100629581,0.173218423,221.8,2116,953819,,,3.232931727,644,199200,2.983236828,3.482626626,,,,0.509580106,0.285208117,0.84047489,6.145202353,4.79048671,7.76409348,9.429445682,8.561099031,10.29779233,0.828090348,0.663266422,1.021446384,,,,2.014504432,0.966033178,3.704745375,0.07262299,56320,775512,0.066665543,0.078580437,0.001134387,1082,953819,,,881.5332717,0.001333687,1271,952997,,,749.8009441,0.003070314,2926,952997,,,325.6995899,1988,,,,,16667,1126,4038,1908,1947,0.44,,,,,,0.37,0.41,0.39,0.46,0.55,,,,,0.42,0.59,0.41,0.42,0.56,0.929929914,627327,674596,0.92644695,0.933412878,0.808228044,191074,236411,0.792030398,0.824425689,0.033527786,16903,504149,,,0.081,15849,,0.064319149,0.097680851,0.05509182,0.004204073,0.105979567,0.032914249,0.022842161,0.042986337,0.107584774,0.061813159,0.153356388,0.150768628,0.128187418,0.173349838,0.050701936,0.041698463,0.05970541,4.957674429,233561,47111,4.795286666,5.120062191,0.148383932,29648,199806,0.136246649,0.160521216,9.519625841,908,953819,,,47.06995386,2213,4701513,45.10881143,49.0310963,,,,21.67133902,18.43258777,24.91009028,54.4496148,45.46206465,63.43716495,29.13537733,25.77041292,32.50034173,62.02146647,58.98525972,65.05767322,,,,11,,,,,1,,,,,0.199102497,68105,342060,0.192356229,0.205848764,0.174608331,0.167768821,0.181447841,0.025551073,0.022883879,0.028218267,0.008097995,0.006538044,0.009657945,0.625174741,301870,482857,0.617228047,0.633121435,0.533602151,0.40360129,0.663603011,0.6170769,0.59767646,0.636477341,0.640854115,0.617489611,0.664218619,0.631690214,0.612363404,0.651017025,0.730087301,0.718621691,0.741552912,0.408,,482857,0.39781991,0.41818009,81.85576638,,,81.68604431,82.02548844,,,,88.89671943,88.13159199,89.66184687,78.04352559,77.23108956,78.85596162,83.88084341,83.30114612,84.4605407,80.9337296,80.71550041,81.15195878,,,,229.8395415,8021,2594200,224.6171195,235.0619636,,,,130.8200039,121.2265492,140.4134586,377.3239685,348.2672324,406.3807047,210.7545766,198.612581,222.8965722,250.9234432,243.5834307,258.2634557,,,,23.53884881,206,875149,20.32439137,26.75330626,,,,21.73303421,14.76654233,30.84830728,32.3436186,18.10247781,53.34588022,29.370378,22.76163954,37.29934185,20.73775133,16.65411718,25.51958748,,,,2.770859278,178,64240,2.363797298,3.177921257,,,,,,,6.592146747,4.178855557,9.891456834,3.338898164,2.522167791,4.335836991,2.545442679,2.012066808,3.176827662,,,,,,,0.08,,,0.068,0.092,0.129,,,0.112,0.146,0.078,,,0.067,0.089,229.9,1876,815966,,,0.067,64240,,,,0.008947506,8098.530586,905116,,,18.9957801,535,2816415,17.38611208,20.60544811,,,,2.307274417,1.151783076,4.128351266,29.55367526,21.63700468,39.42046124,12.5272798,9.870071649,15.67975871,26.06580734,23.50815916,28.62345553,,,,0.355,,,0.343,0.368,0.087564437,50552,577312,0.079224011,0.095904862,0.030663359,6403,208816,0.023514423,0.037812295,0.00088143,840,952997,,,1134.520238,0.933405845,9933.305,10642,,,0.03131173,1490,47586,0.022137772,0.040485689,3.677586117,,,,,,4.072059639,3.354544352,3.336555522,3.748154922,3.565760165,,,,,,4.108594455,3.059385558,3.142586304,3.646454458,0.180449305,,,,,11153.67781,,,,,0.793999228,71980,90655,0.772450407,0.815548048,113885,,,109801.766,117968.234,78333,48670.87234,107995.1277,141421,132667.1277,150174.8723,88587,81696.61702,95477.38298,90934,86577.91489,95290.08511,126191,123314.7447,129067.2553,,,,,,0.171808591,22799,132700,,,53.63318967,,,,,0.280440796,,113885,,,8.709886024,431,49484,,,1.231158338,81,6579170,0.977717432,1.530217401,,,,,,,5.535397483,3.381164588,8.548972465,2.150853444,1.440460308,3.088984325,0.682615663,0.441752866,1.007675377,,,,7.4566995,381,4701513,6.683089726,8.230309274,8.103774253,,,,7.166107715,5.441526031,9.263855986,7.455963605,4.55429627,11.51513107,4.10410696,2.945178012,5.567684511,8.965059622,7.78003765,10.15008159,,,,1.999356377,94,4701513,1.61568347,2.446705853,,,,,,,5.020177251,2.673032956,8.58465599,1.719796578,1.001844883,2.753560921,2.360143141,1.805322493,3.0317026,,,,4.362252381,287,6579170,3.857560973,4.86694379,,,,3.535234504,2.513897323,4.832781946,7.196016728,4.700677039,10.54383179,4.375874248,3.331118223,5.644558961,4.423349497,3.742188427,5.104510567,,,,,,,,,,,0.77295848,495849,641495,,,0.74,,,,,274.5376891,,,,,0.651131703,228445,350843,0.643845435,0.658417971,0.178173966,61222,343608,0.170769107,0.185578824,0.931160092,326691,350843,0.926458073,0.93586211,952997,,,,,0.206429821,196727,952997,,,0.18333531,174718,952997,,,0.05622578,53583,952997,,,0.006162664,5873,952997,,,0.175765506,167504,952997,,,0.001115429,1063,952997,,,0.226810787,216150,952997,,,0.52670575,501949,952997,,,0.066857024,60480,904617,0.06331016,0.070403887,0.508934446,485013,952997,,,0.00121059,1157,955732,, -34,005,34005,NJ,Burlington County,2024,1,6675.430734,5554,1254234,6401.306928,6949.554539,0,,,,2,2693.353278,2021.265123,3365.441434,,9365.14543,8583.341155,10146.94971,,4339.886679,3610.929043,5068.844315,,6708.351002,6363.922122,7052.779882,,,,,2,,0.123,,,0.103,0.144,2.988494688,,,2.410208381,3.67200543,4.852738778,,,4.12011329,5.680850764,0.077987061,2447,31377,0.075019975,0.080954147,0,,,,0.094046592,0.082163654,0.10592953,0.116239316,0.107581652,0.124896981,0.075305624,0.067218255,0.083392992,0.064385214,0.060822699,0.06794773,,,,0.097122302,0.077024573,0.117220032,0.133,,,0.104,0.163,0.322,,,0.274,0.375,9.2,0.050324454,0.056,,,0.21,,,0.173,0.248,0.919733253,424788,461860,,,0.177871294,,,0.149235543,0.208045087,0.237864078,49,206,0.202711357,0.274338463,332.6,1544,464269,,,7.167123288,654,91250,6.617820159,7.716426416,,,,,,,13.85189132,12.07705945,15.62672318,15.98401598,13.50726705,18.46076492,3.344177678,2.860967021,3.827388334,,,,12.8422583,9.619732719,16.79799005,0.053153879,19786,372240,0.047196432,0.059111326,0.000758181,352,464269,,,1318.946023,0.000731598,341,466103,,,1366.870968,0.010465498,4878,466103,,,95.55207052,3409,,,,,,2045,4818,4177,3200,0.41,,,,,,0.37,0.39,0.37,0.41,0.54,,,,,,0.54,0.4,0.41,0.56,0.940835235,309611,329081,0.936054008,0.945616462,0.747339674,87296,116809,0.726168817,0.768510532,0.033268915,8246,247859,,,0.084,7862,,0.06612766,0.10187234,0.066176471,0,0.482089974,0.121797005,0.076165152,0.167428858,0.155945171,0.122337718,0.189552623,0.164657647,0.126530556,0.202784737,0.05359416,0.040547933,0.066640386,4.080798804,191063,46820,3.944313282,4.217284326,0.206491385,19595,94895,0.189394224,0.223588546,8.3356847,387,464269,,,74.83799175,1684,2250194,71.26355882,78.41242468,,,,27.93686269,19.34708954,39.03896543,75.28514908,66.55980887,84.01048929,38.66238459,30.41041807,48.46363388,85.28841745,80.6050157,89.97181919,,,,8.8,,,,,1,,,,,0.139094503,23395,168195,0.132071954,0.146117053,0.125366701,0.117840906,0.132892495,0.015220429,0.012532731,0.017908127,0.003567288,0.00239542,0.004739156,0.762279045,178836,234607,0.752433008,0.772125083,,,,0.668611527,0.630546042,0.706677012,0.750469669,0.716615826,0.784323511,0.696171393,0.66209252,0.730250265,0.780229253,0.76920109,0.791257416,0.437,,234607,0.423156145,0.450843855,78.92240062,,,78.67025226,79.17454898,,,,86.22925535,84.61628504,87.84222565,76.16129653,75.48809281,76.83450026,84.42803277,82.75928164,86.09678391,78.81849145,78.51847826,79.11850465,,,,331.0873248,5554,1254234,321.9914002,340.1832493,,,,163.7481925,136.2738533,191.2225316,450.0648815,423.6737677,476.4559952,212.300343,182.0437674,242.5569185,332.1871922,321.0944798,343.2799046,,,,31.21395459,128,410073,25.80641284,36.62149633,,,,,,,59.20078934,42.66672173,80.02226905,38.69519793,23.63603217,59.76159483,21.21693694,15.79740315,27.89635376,,,,4.794079794,149,31080,4.024297008,5.563862581,,,,,,,8.833922262,6.443523516,11.82048302,6.330783435,4.056252402,9.419703929,3.441306604,2.644394483,4.402926055,,,,,,,0.092,,,0.078,0.108,0.143,,,0.124,0.165,0.082,,,0.07,0.096,246.3,982,398629,,,0.056,25920,,,,0.050324454,22582.29336,448734,,,35.4663792,481,1356214,32.29680892,38.63594948,,,,,,,33.32828359,26.30216022,41.65463609,21.55851478,14.08273761,31.58821917,41.56839458,37.33847248,45.79831667,,,,0.361,,,0.347,0.374,0.062894079,17456,277546,0.055745143,0.070043015,0.025591439,2554,99799,0.018442503,0.032740375,0.000864616,403,466103,,,1156.583127,0.913329628,4929.24,5397,,,0.055397663,1228,22167,0.040450048,0.070345279,3.277822854,,,,,,3.719740303,2.921233515,2.985096753,3.418301009,3.166363621,,,,,,3.800269383,2.710734856,2.820888175,3.331276871,0.137736792,,,,,7438.651672,,,,,0.806835719,64304,79699,0.773997958,0.839673481,100188,,,96856.59575,103519.4043,,,,135168,117774.6383,152561.3617,86391,81559.51064,91222.48936,85321,77037.76596,93604.23404,106552,104296.5106,108807.4894,,,,,,0.209484943,14219,67876,,,53.53812485,,,,,0.240996926,,100188,,,6.167023555,144,23350,,,3.20665053,101,3149704,2.581266169,3.83203489,,,,,,,11.36415292,8.672045879,14.62791744,,,,1.614239491,1.117907774,2.25573789,,,,9.016067158,223,2250194,7.787312685,10.24482163,9.910256627,,,,,,,6.22478301,3.98833593,9.2619837,5.761749916,2.634638955,10.93759609,10.85910609,9.180516322,12.53769585,,,,5.243992296,118,2250194,4.297805,6.190179592,,,,,,,11.31909584,8.191685785,15.24674782,,,,4.485340635,3.476077384,5.696224055,,,,8.826226211,278,3149704,7.788676945,9.863775476,,,,,,,13.2581784,10.33540049,16.75091081,8.322268499,5.215521361,12.60001452,8.403540882,7.165509209,9.641572554,,,,,,,,,,,0.771161474,261497,339095,,,0.759,,,,,82.47590223,,,,,0.758446353,132314,174454,0.748407623,0.768485082,0.133366317,22913,171805,0.125163175,0.141569458,0.929253557,162112,174454,0.923930351,0.934576762,466103,,,,,0.203440012,94824,466103,,,0.184103085,85811,466103,,,0.17391864,81064,466103,,,0.003617226,1686,466103,,,0.060272086,28093,466103,,,0.001092033,509,466103,,,0.095751368,44630,466103,,,0.643136817,299768,466103,,,0.018595522,8157,438654,,,0.505353967,235547,466103,,,0.097696272,45122,461860,, -34,007,34007,NJ,Camden County,2024,1,9048.117621,7790,1433900,8754.34647,9341.888772,0,,,,2,2508.150555,1913.084482,3103.216628,,14960.08403,14098.70016,15821.46789,,8823.39972,8156.871861,9489.927579,,7931.84374,7555.881441,8307.80604,,,,,2,,0.159,,,0.134,0.186,3.72341407,,,3.016365083,4.416812014,5.299842737,,,4.489431901,6.07317315,0.090828534,3895,42883,0.088108667,0.0935484,0,,,,0.095047923,0.08356049,0.106535357,0.140542487,0.133079761,0.148005212,0.085613905,0.080340882,0.090886929,0.070116178,0.066535804,0.073696552,,,,0.106308411,0.085659515,0.126957307,0.154,,,0.122,0.187,0.308,,,0.261,0.355,8.5,0.044522881,0.091,,,0.265,,,0.223,0.306,0.92683267,485183,523485,,,0.177144516,,,0.14686942,0.207863497,0.185185185,45,243,0.153807533,0.218520105,627.9,3289,523771,,,15.69639255,1673,106585,14.9442365,16.4485486,,,,2.07438139,1.134083609,3.480459494,21.81319411,19.88765707,23.73873114,31.7108581,29.5534862,33.86823001,5.070886771,4.429331078,5.712442465,,,,15.62056234,11.76754529,20.332309,0.075042379,32449,432409,0.067893443,0.082191315,0.000985163,516,523771,,,1015.060078,0.000813477,427,524907,,,1229.290398,0.003789243,1989,524907,,,263.9049774,4063,,,,,,2090,6588,6530,3579,0.39,,,,,,0.31,0.35,0.32,0.41,0.53,,,,,,0.59,0.4,0.42,0.56,0.89276503,321915,360582,0.888193165,0.897336894,0.682408299,95718,140265,0.662040759,0.702775839,0.040090568,10854,270737,,,0.175,20450,,0.141638298,0.208361702,0.706521739,0.349159476,1,0.123897773,0.081958403,0.165837143,0.268488245,0.230850598,0.306125893,0.314058456,0.284197464,0.343919448,0.054055158,0.040726377,0.06738394,5.14329091,159226,30958,4.936771967,5.349809853,0.311061097,36764,118189,0.289339465,0.332782729,7.846940743,411,523771,,,98.7142875,2522,2554848,94.86160212,102.5669729,,,,19.7983211,13.35784411,28.26333443,138.3140379,127.753656,148.8744198,84.11676292,75.6591691,92.57435675,100.4344423,95.22519899,105.6436855,,,,10.3,,,,,0,,,,,0.184936536,35260,190660,0.176766384,0.193106689,0.163070628,0.154540139,0.171601116,0.02391692,0.020384208,0.027449632,0.008890171,0.00670984,0.011070503,0.703320249,175944,250162,0.694902194,0.711738303,,,,0.686238045,0.653844302,0.718631788,0.684269104,0.648381235,0.720156972,0.645586897,0.614952182,0.676221613,0.755382045,0.748336261,0.762427829,0.395,,250162,0.379373764,0.410626237,76.24441787,,,75.99769113,76.49114461,,,,87.73829004,85.95706483,89.51951525,70.90373335,70.29437071,71.51309599,78.52139456,77.51136744,79.53142168,77.09495153,76.7868371,77.40306596,,,,435.0541339,7790,1433900,425.0841503,445.0241176,,,,151.0068958,127.5871787,174.4266129,710.2315911,679.929212,740.5339702,415.8897666,388.046351,443.7331822,391.239038,378.9833981,403.4946779,,,,47.29949449,240,507405,41.31528278,53.2837062,,,,,,,88.07727313,70.82452867,108.261922,48.90664019,37.82439198,62.22123767,33.10207228,25.94674054,41.62088613,,,,6.787698459,292,43019,6.009147245,7.566249673,,,,,,,13.84943182,11.33988619,16.35897745,8.2906381,6.658063171,10.20234359,3.323108385,2.564704894,4.235574428,,,,,,,0.108,,,0.092,0.125,0.16,,,0.138,0.181,0.099,,,0.085,0.114,407.5,1793,440015,,,0.091,47500,,,,0.044522881,22869.48943,513657,,,56.4067165,867,1537051,52.65199835,60.16143465,,,,,,,90.12363292,79.14761319,101.0996527,54.76727511,46.06053842,63.47401181,52.72687596,47.83884048,57.61491145,,,,0.359,,,0.346,0.37,0.090175273,28487,315907,0.080643358,0.099707188,0.034988566,4284,122440,0.025456651,0.044520481,0.001282132,673,524907,,,779.9509658,0.850950865,5212.925,6126,,,0.064140741,1637,25522,0.047609215,0.080672268,3.115299455,,,,,,3.736817788,2.757904668,2.734324955,3.45976401,3.004400464,,,,,,3.830031777,2.586528346,2.681137969,3.33790144,0.235145589,,,,,5123.730937,,,,,0.819368738,56670,69163,0.79308652,0.845650955,81372,,,78325.3617,84418.6383,99444,64538.12766,134349.8723,101220,88681.95745,113758.0426,55821,53433.25532,58208.74468,53993,50090.87234,57895.12766,98984,96865.53192,101102.4681,,,,,,0.39247099,31725,80834,,,58.42989461,,,,,0.326893772,,81372,,,7.173049827,224,31228,,,7.354748609,263,3575921,6.465862683,8.243634535,,,,,,,24.780021,20.99894184,28.56110015,10.20910847,7.84495926,13.06188458,1.742155943,1.213475447,2.422917184,,,,9.333647448,249,2554848,8.144472001,10.5228229,9.746176681,,,,,,,5.088722979,3.225813853,7.635583009,5.881461803,3.728342265,8.825080475,11.98958077,10.189253,13.78990855,,,,7.084570198,181,2554848,6.052449964,8.116690431,,,,,,,19.93904947,16.13188171,24.37445401,7.30487678,5.028341056,10.25876292,3.586944367,2.670715683,4.716169409,,,,9.871582734,353,3575921,8.841776519,10.90138895,,,,,,,14.11710287,11.40805612,17.27575864,10.37115781,7.987055263,13.24373699,9.158762671,7.835384505,10.48214084,,,,,,,,,,,0.71434819,264616,370430,,,0.699,,,,,197.5645834,,,,,0.65424614,130036,198757,0.643857228,0.664635051,0.169955983,33051,194468,0.160428323,0.179483642,0.897070292,178299,198757,0.889557911,0.904582673,524907,,,,,0.225114163,118164,524907,,,0.166318986,87302,524907,,,0.188387657,98886,524907,,,0.007271764,3817,524907,,,0.062548223,32832,524907,,,0.001297373,681,524907,,,0.190374676,99929,524907,,,0.53733328,282050,524907,,,0.044917465,22079,491546,0.041126294,0.048708635,0.515028377,270342,524907,,,0.013077739,6846,523485,, -34,009,34009,NJ,Cape May County,2024,1,9219.669145,1692,246848,8427.69328,10011.64501,0,,,,2,,,,2,13333.74746,9727.758534,16939.73639,,8030.201868,5900.290289,10678.46614,,9191.061724,8298.959593,10083.16385,,,,,2,,0.135,,,0.113,0.16,3.523275273,,,2.784899621,4.336211592,5.011662389,,,4.122140635,5.964922045,0.071612192,390,5446,0.064764008,0.078460377,0,,,,,,,0.1,0.062811615,0.137188385,0.063854048,0.047672418,0.080035678,0.070885455,0.063007765,0.078763145,,,,0.083333333,0.033881711,0.132784956,0.149,,,0.116,0.185,0.323,,,0.262,0.39,7.9,0.087437022,0.099,,,0.222,,,0.18,0.267,0.934801549,89052,95263,,,0.175032276,,,0.141852041,0.211511834,0.266666667,16,60,0.199740496,0.336428339,259.2,248,95661,,,12.13970397,187,15404,10.39972755,13.8796804,,,,,,,,,,32.81853282,25.48487488,41.6053104,8.30297382,6.740755492,10.11866562,,,,20.13422819,10.40364951,35.17044471,0.076331694,5153,67508,0.06560829,0.087055098,0.000533133,51,95661,,,1875.705882,0.000596022,57,95634,,,1677.789474,0.001244327,119,95634,,,803.6470588,3019,,,,,,4597,2805,3913,2988,0.48,,,,,,0.38,0.38,0.38,0.48,0.53,,,,,,0.47,0.44,0.48,0.53,0.939171676,68120,72532,0.930393107,0.947950245,0.661866329,12547,18957,0.611993664,0.711738994,0.064891953,3069,47294,,,0.127,2027,,0.080531915,0.173468085,,,,0.067073171,0,0.597734601,0.106489185,0,0.274372039,0.226519337,0.130513688,0.322524987,0.093327631,0.063941136,0.122714125,4.676859409,162736,34796,4.211208077,5.142510741,0.199267971,3321,16666,0.159459168,0.239076773,12.23068962,117,95661,,,112.601239,524,465359,102.9599834,122.2424947,,,,,,,110.7536522,68.55825634,169.2987223,63.63009704,40.7690038,94.67654063,120.3110901,109.5027686,131.1194117,,,,7.4,,,,,1,,,,,0.185640521,7550,40670,0.16584585,0.205435193,0.169026329,0.150144142,0.187908516,0.012539956,0.006805993,0.018273919,0.010449963,0.006267874,0.014632053,0.770247189,32469,42154,0.752888582,0.787605796,,,,0.734449761,0.472797453,0.996102068,0.83785092,0.757406434,0.918295405,0.582438815,0.499704579,0.665173051,0.761201266,0.750784781,0.771617752,0.281,,42154,0.254092382,0.307907618,76.75528389,,,76.14883054,77.36173723,,,,,,,70.4804797,68.0161925,72.9447669,86.67479521,78.86379458,94.48579584,76.78248415,76.10901202,77.45595628,,,,420.5633495,1692,246848,396.9993189,444.1273801,,,,,,,740.1004008,593.8602208,886.3405808,337.8932468,252.3548384,443.1020387,415.7587102,390.045035,441.4723854,,,,43.26647964,31,71649,29.39747377,61.41331422,,,,,,,,,,,,,40.61188575,25.13939737,62.07958138,,,,5.374417771,30,5582,3.626097102,7.672315549,,,,,,,,,,,,,5.256869773,3.294452299,7.958964011,,,,,,,0.102,,,0.087,0.119,0.156,,,0.134,0.181,0.085,,,0.072,0.099,216.3,182,84156,,,0.099,9450,,,,0.087437022,8504.561958,97265,,,59.44579332,166,279246,50.4025721,68.48901453,,,,,,,88.94423197,42.65221646,163.5716094,47.63348201,23.7784626,85.22945704,60.74514039,50.82343413,70.66684665,,,,0.324,,,0.306,0.34,0.088190979,4507,51105,0.075084596,0.101297362,0.040421589,698,17268,0.028506695,0.052336483,0.000805153,77,95634,,,1242,0.866439477,794.525,917,,,0.053682223,199,3707,0.020469397,0.086895049,3.143786671,,,,,,,2.795127737,2.70242353,3.295336251,3.053189232,,,,,,,2.628972392,2.63094561,3.212936617,0.130172835,,,,,9907.019818,,,,,0.882745612,59904,67861,0.806311019,0.959180205,80845,,,74754.10638,86935.89362,,,,149792,94763.06383,204820.9362,41014,28910.85106,53117.14894,69381,62314.2766,76447.7234,86285,81737.08511,90832.91489,,,,,,0.337951301,4025,11910,,,65.71594202,,,,,0.323977983,,80845,,,6.847697757,29,4235,,,,,,,,,,,,,,,,,,,,,,,,,,12.03651255,55,465359,8.745748443,16.15845629,11.81883234,,,,,,,,,,,,,14.3388003,10.33414604,19.38189251,,,,6.446635823,30,465359,4.349518119,9.202973488,,,,,,,,,,,,,7.582631729,5.115969786,10.82467828,,,,12.06998759,79,654516,9.555922844,15.04280585,,,,,,,,,,,,,12.02978359,9.322917048,15.27739992,,,,,,,,,,,0.77442469,57714,74525,,,0.366,,,,,61.51231079,,,,,0.784481364,33950,43277,0.773234416,0.795728312,0.160859896,6727,41819,0.142143012,0.179576781,0.898260046,38874,43277,0.885544145,0.910975947,95634,,,,,0.1697618,16235,95634,,,0.295438861,28254,95634,,,0.038772821,3708,95634,,,0.004370831,418,95634,,,0.010393793,994,95634,,,0.001035197,99,95634,,,0.085659912,8192,95634,,,0.847313717,81032,95634,,,0.011331414,1035,91339,0.007722747,0.01494008,0.512683774,49030,95634,,,0.185958872,17715,95263,, -34,011,34011,NJ,Cumberland County,2024,1,10646.5168,2746,420491,10066.96319,11226.07041,0,8539.610046,4095.074948,15704.64692,1,,,,2,14079.9392,12569.24011,15590.63829,,9181.900111,8238.715495,10125.08473,,10492.58171,9590.738614,11394.42481,,,,,2,,0.214,,,0.185,0.244,4.368230511,,,3.541299781,5.318070434,5.431636201,,,4.447707434,6.488511258,0.09692928,1250,12896,0.091822856,0.102035705,0,,,,0.104575163,0.056086613,0.153063714,0.14188903,0.127813842,0.155964218,0.087186487,0.079964016,0.094408958,0.079882382,0.071564362,0.088200402,,,,0.119298246,0.08166557,0.156930922,0.19,,,0.157,0.226,0.388,,,0.317,0.46,7.4,0.11684322,0.104,,,0.349,,,0.299,0.404,0.884380352,136329,154152,,,0.170868762,,,0.135238337,0.208582413,0.353448276,41,116,0.306952252,0.399775387,693.9,1066,153627,,,28.30568904,913,32255,26.46959714,30.14178094,,,,,,,28.59993349,24.3257135,32.87415348,39.92030172,36.61684625,43.22375718,13.41759844,11.17892206,15.65627483,,,,21.14330462,13.93357097,30.76239816,0.111547187,13472,120774,0.098440804,0.12465357,0.000390556,60,153627,,,2560.45,0.000640873,97,151356,,,1560.371134,0.001321388,200,151356,,,756.78,2360,,,,,,,3536,3124,2104,0.38,,,,,,0.29,0.36,0.31,0.39,0.45,,,,,,0.41,0.35,0.4,0.48,0.812048007,84440,103984,0.799197879,0.824898136,0.426148836,17666,41455,0.395796044,0.456501628,0.050648076,3509,69282,,,0.202,7175,,0.143617021,0.260382979,0.267241379,0,0.626679799,0.169139466,0,0.452160065,0.360529217,0.283892239,0.437166195,0.262566177,0.215394097,0.309738257,0.089720681,0.058531548,0.120909814,5.245131401,127934,24391,4.843064754,5.647198047,0.295888239,10823,36578,0.26063458,0.331141897,9.438445065,145,153627,,,108.535278,818,753672,101.0973778,115.9731781,,,,,,,118.7192539,100.7131814,136.7253263,91.53165747,79.43637382,103.6269411,121.7752252,110.0730028,133.4774476,,,,7.8,,,,,1,,,,,0.220924527,11255,50945,0.204321994,0.237527059,0.192254082,0.173527612,0.210980552,0.030719403,0.022981201,0.038457605,0.010599666,0.005469228,0.015730105,0.783524467,48099,61388,0.764326763,0.802722172,,,,0.715355805,0.627089487,0.803622124,0.736773117,0.673077517,0.800468718,0.736041957,0.696825973,0.775257942,0.841461648,0.812825425,0.87009787,0.325,,61388,0.298013358,0.351986642,73.99107472,,,73.54228477,74.43986467,,,,80.96902619,77.00711511,84.93093727,70.26759355,69.18505185,71.35013525,76.57467236,75.56850336,77.58084135,74.09455036,73.44131636,74.74778437,,,,535.9839977,2746,420491,515.424538,556.5434574,596.5166779,389.6644987,874.0351434,,,,741.9975965,683.2129706,800.7822224,415.3854615,377.8826142,452.8883088,536.5489992,507.4612948,565.6367035,,,,61.41417211,97,157944,49.8027564,74.92008176,,,,,,,106.5454416,71.88576205,152.1002429,60.15037594,43.70535524,80.74907215,45.91464051,28.77446076,69.51531752,,,,7.120980092,93,13060,5.747549979,8.723681702,,,,,,,13.44743276,9.256593958,18.8851953,6.387018816,4.497050676,8.803664102,4.729250414,2.888749015,7.303943699,,,,,,,0.134,,,0.116,0.153,0.17,,,0.148,0.194,0.12,,,0.103,0.139,503.5,642,127498,,,0.104,16080,,,,0.11684322,18332.4675,156898,,,52.20342899,235,450162,45.52889159,58.87796639,,,,,,,59.60896519,44.24292291,78.58698935,43.14566112,33.15431066,55.20204311,59.49341358,48.84869127,70.1381359,,,,0.396,,,0.385,0.407,0.139685542,11816,84590,0.121813202,0.157557883,0.046517138,1767,37986,0.032219266,0.06081501,0.000568197,86,151356,,,1759.953488,0.840829371,1591.69,1893,,,0.147054841,1086,7385,0.102091004,0.192018678,2.69933391,,,,,,3.453041097,2.551356897,2.562933488,3.005359641,2.637975244,,,,,,3.441779914,2.400691964,2.564475473,2.922689992,0.149921225,,,,,4807.105439,,,,,0.881213012,45564,51706,0.823805724,0.9386203,60892,,,56514.46809,65269.53192,60046,37170.59575,82921.40426,64476,34295.57447,94656.42553,41250,34807.61702,47692.38298,51968,46773.10638,57162.89362,78625,73917.42553,83332.57447,,,,,,0.556784877,15198,27296,,,39.59478964,,,,,0.314639033,,60892,,,6.960315811,67,9626,,,7.99380809,85,1063323,6.385169982,9.884467497,,,,,,,27.11564824,20.3701095,35.38003906,5.103955566,2.973242204,8.171927288,2.667131705,1.420135304,4.560876444,,,,9.335756633,72,753672,7.263775905,11.81499752,9.553227399,,,,,,,,,,4.395412111,2.19417389,7.864606405,15.66606591,11.51083598,20.83254657,,,,9.818594826,74,753672,7.709708765,12.32634667,,,,,,,26.30306822,18.51978742,36.25531474,4.576582874,2.284613681,8.188770943,7.610951574,4.971726256,11.15180748,,,,18.33873621,195,1063323,15.76473842,20.91273399,,,,,,,18.57924046,13.08149988,25.60903561,19.21489154,14.79780787,24.53698753,18.87508591,15.21598325,23.1486173,,,,,,,,,,,0.591909707,62408,105435,,,0.652,,,,,55.33075066,,,,,0.66027689,34720,52584,0.641695571,0.67885821,0.20053654,10241,51068,0.178372052,0.222701027,0.855374258,44979,52584,0.839569644,0.871178872,151356,,,,,0.2400037,36326,151356,,,0.163092312,24685,151356,,,0.183124554,27717,151356,,,0.016477708,2494,151356,,,0.015757552,2385,151356,,,0.001797088,272,151356,,,0.335936468,50846,151356,,,0.438813129,66417,151356,,,0.073332733,10577,144233,0.064874717,0.081790748,0.492408626,74529,151356,,,0.244907624,37753,154152,, -34,013,34013,NJ,Essex County,2024,1,8168.654584,11035,2308475,7954.713586,8382.595581,0,,,,2,3246.573558,2685.717015,3807.430101,,12808.79029,12376.36393,13241.21665,,6766.03028,6383.776766,7148.283794,,4638.776034,4331.4695,4946.082568,,,,,2,,0.174,,,0.15,0.199,3.428696153,,,2.817816927,4.076877118,4.710997672,,,4.016849617,5.440335982,0.09411748,6643,70582,0.091963309,0.096271651,0,,,,0.088894751,0.079835307,0.097954194,0.127371865,0.123432174,0.131311556,0.074831191,0.071323995,0.078338386,0.060883964,0.057143808,0.064624119,,,,0.112721417,0.08784754,0.137595295,0.134,,,0.109,0.159,0.32,,,0.278,0.362,8.7,0.007486232,0.099,,,0.275,,,0.239,0.311,0.995424486,859776,863728,,,0.154712882,,,0.131309079,0.180739237,0.15720524,36,229,0.125881863,0.191203877,658.2,5627,854917,,,14.98610616,2648,176697,14.41530363,15.55690868,,,,1.316366828,0.680185949,2.299427934,18.41273441,17.41142157,19.41404725,25.77824186,24.31049828,27.24598544,1.897330946,1.523712547,2.334828993,,,,2.933333333,1.464309431,5.248543604,0.117483168,83111,707429,0.107951253,0.127015083,0.000754459,645,854917,,,1325.452713,0.000919389,781,849477,,,1087.678617,0.002626322,2231,849477,,,380.7606455,3021,,,,,,1779,4563,2997,2199,0.4,,,,,,0.37,0.33,0.35,0.46,0.47,,,,,0.25,0.51,0.3,0.36,0.56,0.869282904,498286,573215,0.864683561,0.873882248,0.633400729,149119,235426,0.617512064,0.649289394,0.045057278,17487,388106,,,0.2,39130,,0.167829787,0.232170213,0.234482759,0.057239316,0.411726201,0.061033337,0.032649719,0.089416954,0.28453185,0.26218884,0.30687486,0.278109146,0.251810429,0.304407863,0.045071619,0.033551054,0.056592183,6.786369645,174559,25722,6.528541609,7.04419768,0.335801153,67401,200717,0.317938191,0.353664114,7.486106838,640,854917,,,72.81329347,2958,4062445,70.18927032,75.43731662,,,,21.39275385,15.87811425,28.20367898,106.4729137,101.3585914,111.587236,52.70471485,48.12596784,57.28346186,58.86883892,54.5777018,63.15997605,,,,8.9,,,,,1,,,,,0.264947709,77015,290680,0.256576268,0.273319149,0.225779349,0.21734519,0.234213509,0.048489748,0.044343002,0.052636495,0.010251823,0.008481986,0.01202166,0.556972188,220610,396088,0.546131342,0.567813034,0.595117845,0.336334686,0.853901004,0.587108125,0.561578431,0.61263782,0.612767287,0.593068249,0.632466326,0.586133864,0.569114829,0.603152898,0.691534951,0.676080411,0.70698949,0.448,,396088,0.431533289,0.464466711,77.80198698,,,77.59246675,78.01150722,,,,87.92431589,86.29851208,89.5501197,72.86943838,72.52476963,73.21410714,81.24378265,80.56350286,81.92406245,81.46770092,81.15014189,81.78525995,,,,408.7968805,11035,2308475,401.061143,416.532618,,,,181.5966899,160.4592221,202.7341578,634.8148352,619.0236781,650.6059923,334.7520582,318.9568072,350.5473093,252.0469973,241.676466,262.4175287,,,,44.79235795,380,848359,40.28867097,49.29604493,,,,,,,75.26808447,65.80432273,84.73184622,30.23401125,23.78096777,37.8985949,22.79019925,16.74538119,30.30613364,,,,5.382724422,381,70782,4.842224383,5.92322446,,,,,,,8.838249388,7.740450846,9.93604793,3.583553376,2.823432473,4.485351422,2.684563758,1.934797426,3.628750321,,,,,,,0.106,,,0.092,0.12,0.141,,,0.123,0.159,0.112,,,0.098,0.126,1250.9,8883,710125,,,0.099,84450,,,,0.007486232,5868.973564,783969,,,39.19502704,962,2454393,36.71817819,41.67187589,,,,,,,63.20776765,58.12888661,68.28664869,31.20172423,26.69328984,35.71015863,24.21254809,20.65552596,27.76957021,,,,0.384,,,0.372,0.394,0.146208265,74856,511982,0.134293372,0.158123159,0.043784024,8984,205189,0.034252109,0.053315938,0.000909972,773,849477,,,1098.935317,0.866367075,8704.39,10047,,,0.081454952,3639,44675,0.067039117,0.095870788,3.24440544,,,,,,4.176008188,2.991780049,3.05518114,3.721888282,3.10612625,,,,,,4.307479927,2.81045007,2.924281586,3.604880237,0.380651605,,,,,8238.702524,,,,,0.89709982,58246,64927,0.8611102,0.933089439,74747,,,71434.65957,78059.34043,71125,56320.74468,85929.25532,156245,145238.0213,167251.9787,54727,52469.12766,56984.87234,60235,56733.21277,63736.78723,125107,120708.0213,129505.9787,,,,,,0.533470897,73165,137149,,,74.53390065,,,,,0.274271877,,74747,,,8.817577335,488,55344,,,11.91487827,674,5656793,11.0153481,12.81440844,,,,,,,26.65823863,24.49240033,28.82407694,5.206301587,4.050813395,6.588907869,1.097195338,0.660583267,1.713406432,,,,5.601274089,232,4062445,4.871917908,6.330630269,5.710846547,,,,7.347454606,4.199705152,11.93180596,4.155705251,3.207285578,5.296787483,5.092070394,3.669916448,6.882999899,7.475425526,5.938436941,9.012414111,,,,9.920134303,403,4062445,8.951586412,10.8886822,,,,,,,21.8061643,19.4916591,24.12066951,3.520550697,2.438083701,4.919616725,2.035575343,1.317317034,3.00491076,,,,6.257962772,354,5656793,5.606053113,6.90987243,,,,4.074379362,2.169435414,6.967312796,8.748665943,7.507924692,9.989407194,5.583569818,4.384303245,7.009660595,4.331034228,3.406633164,5.428988908,,,,,,,,,,,0.665313475,345311,519020,,,0.608,,,,,353.6387936,,,,,0.446763298,139811,312942,0.438997325,0.454529271,0.234906757,71523,304474,0.225769467,0.244044047,0.859009018,268820,312942,0.851617213,0.866400822,849477,,,,,0.233030441,197954,849477,,,0.144334691,122609,849477,,,0.376887191,320157,849477,,,0.008977288,7626,849477,,,0.065804018,55899,849477,,,0.00161982,1376,849477,,,0.245620541,208649,849477,,,0.295326419,250873,849477,,,0.080630852,64438,799173,0.076540386,0.084721318,0.512981517,435766,849477,,,0.000137775,119,863728,, -34,015,34015,NJ,Gloucester County,2024,1,7790.649452,4134,831149,7423.796822,8157.502083,0,,,,2,3381.663651,2281.594265,4827.535133,,12492.80254,11005.08385,13980.52122,,5570.453913,4454.532676,6686.37515,,7542.437269,7134.116067,7950.758471,,,,,2,,0.13,,,0.11,0.153,3.552097335,,,2.850688222,4.346471847,5.229068702,,,4.389708498,6.175377585,0.080746572,1631,20199,0.076989315,0.084503828,0,,,,0.119533528,0.095256512,0.143810543,0.125054277,0.111544477,0.138564078,0.08337469,0.071304014,0.095445366,0.070276974,0.066118387,0.074435561,,,,0.101415094,0.072680571,0.130149618,0.139,,,0.109,0.173,0.311,,,0.258,0.369,8.8,0.064689418,0.066,,,0.211,,,0.173,0.253,0.880639378,266212,302294,,,0.184258747,,,0.151844828,0.22056408,0.231884058,48,207,0.196881685,0.268298998,330.1,1005,304477,,,6.80999206,446,65492,6.177965619,7.442018501,,,,,,,14.50248422,11.76729992,17.23766852,16.46432729,13.38139279,20.04472772,4.166402301,3.58458831,4.748216292,,,,13.82488479,9.516414568,19.41527829,0.054128886,13587,251012,0.04697995,0.061277822,0.00053206,162,304477,,,1879.487654,0.000446835,137,306601,,,2237.963504,0.001552506,476,306601,,,644.1197479,2748,,,,,,1221,3523,2692,2682,0.41,,,,,,0.4,0.41,0.3,0.42,0.52,,,,,,0.51,0.42,0.44,0.53,0.936021798,194437,207727,0.931295103,0.940748492,0.735152338,55207,75096,0.707839365,0.762465312,0.036655283,5914,161341,,,0.078,4981,,0.052978723,0.103021277,,,,0.047115808,0,0.102860287,0.244851904,0.178292746,0.311411062,0.162165963,0.111081458,0.213250469,0.046176877,0.036097005,0.056256749,4.227564921,182170,43091,3.980539318,4.474590524,0.202531646,13040,64385,0.177036757,0.228026534,7.356877531,224,304477,,,89.27528833,1315,1472972,84.44998681,94.10058985,,,,,,,94.88775948,79.49594445,110.2795745,56.31989702,42.54344495,73.13607089,95.79692103,90.12277429,101.4710678,,,,7.1,,,,,1,,,,,0.139412456,14830,106375,0.128127521,0.150697391,0.127888258,0.115833687,0.139942828,0.009165687,0.006652313,0.011679062,0.006956522,0.004884744,0.0090283,0.772829415,117620,152194,0.761549129,0.784109701,,,,0.668580176,0.584986626,0.752173726,0.690855945,0.658894718,0.722817171,0.66161919,0.60304219,0.720196191,0.749920992,0.739735746,0.760106238,0.458,,152194,0.441234259,0.474765741,77.03517177,,,76.72528269,77.34506085,,,,88.15943797,84.41520305,91.90367288,72.72029006,71.63486452,73.8057156,82.45845376,80.18242274,84.73448479,77.1387389,76.7986382,77.4788396,,,,381.5599626,4134,831149,369.4374676,393.6824575,,,,187.5616506,143.1292989,241.4290234,559.1435151,512.3660333,605.9209969,274.9429804,224.9791267,324.9068341,375.8885113,362.4187021,389.3583204,,,,32.51929066,92,282909,26.215138,39.8820232,,,,,,,71.50407262,45.32744835,107.2912171,,,,28.14254198,21.25857377,36.54543162,,,,4.728956145,95,20089,3.826007918,5.78090366,,,,,,,13.15212626,8.873684358,18.77547803,,,,3.50660066,2.610894516,4.610532273,,,,,,,0.098,,,0.084,0.114,0.155,,,0.133,0.178,0.083,,,0.07,0.097,167.1,434,259788,,,0.066,19880,,,,0.064689418,18649.18278,288288,,,50.37341543,448,889358,45.70877188,55.03805898,,,,,,,57.60368664,43.27366229,75.16031575,31.91828918,19.49652025,49.29520891,53.19583061,47.73841243,58.6532488,,,,0.343,,,0.327,0.357,0.065829422,12229,185768,0.057488996,0.074169847,0.022081377,1519,68791,0.01612393,0.028038824,0.000701237,215,306601,,,1426.051163,0.905066109,3354.175,3706,,,0.047852833,809,16906,0.033335328,0.062370339,3.299968574,,,,,,3.532116812,2.870244128,2.921680094,3.420841302,3.222373845,,,,,,3.669299387,2.736619587,2.833526063,3.347113419,0.073250414,,,,,6812.168657,,,,,0.794828697,62894,79129,0.758166043,0.831491352,97851,,,93704.61702,101997.383,,,,117625,96202.02128,139047.9787,71010,60592.80851,81427.19149,82855,72215,93495,103750,100692.6383,106807.3617,,,,,,0.214678016,9811,45701,,,38.88992265,,,,,0.223993623,,97851,,,8.219532716,127,15451,,,2.479602836,51,2056781,1.846227179,3.260219799,,,,,,,12.20107369,7.97014642,17.8773999,,,,1.184444873,0.713113186,1.849657388,,,,9.513749169,152,1472972,7.954235112,11.07326323,10.31927287,,,,,,,,,,,,,10.99926257,9.095633692,12.90289145,,,,4.955966576,73,1472972,3.884686669,6.231383908,,,,,,,7.79899393,4.02985397,13.62327288,,,,5.161660585,3.929295191,6.658166085,,,,10.79356529,222,2056781,9.373708612,12.21342196,,,,,,,14.54743402,9.884275622,20.64892138,11.18134653,6.258114775,18.4419307,10.66000385,9.062229749,12.25777796,,,,,,,,,,,0.775119531,172654,222745,,,0.738,,,,,83.37038091,,,,,0.796765337,87641,109996,0.786319572,0.807211102,0.137288323,14901,108538,0.126564135,0.148012511,0.914442343,100585,109996,0.905939341,0.922945346,306601,,,,,0.20990473,64357,306601,,,0.169715689,52035,306601,,,0.110074657,33749,306601,,,0.003346369,1026,306601,,,0.033166885,10169,306601,,,0.001056748,324,306601,,,0.079037577,24233,306601,,,0.755842284,231742,306601,,,0.013481599,3876,287503,0.011295208,0.015667989,0.508197951,155814,306601,,,0.113167976,34210,302294,, -34,017,34017,NJ,Hudson County,2024,1,6098.024754,7128,1939532,5907.698255,6288.351252,0,,,,2,3216.958758,2868.360912,3565.556604,,12622.2081,11768.01754,13476.39867,,5670.892324,5381.707793,5960.076855,,6151.325327,5792.75371,6509.896944,,,,,2,,0.165,,,0.14,0.193,3.340121805,,,2.737798931,4.002232595,4.519341784,,,3.83840795,5.237042331,0.083210356,5695,68441,0.081141066,0.085279647,0,,,,0.092353089,0.087856744,0.096849434,0.139499155,0.131082096,0.147916214,0.078943103,0.075578614,0.082307591,0.063456665,0.060054972,0.066858358,0.177419355,0.082326044,0.272512666,0.067357513,0.046941666,0.08777336,0.119,,,0.096,0.144,0.25,,,0.213,0.288,8.5,0.00118933,0.11,,,0.265,,,0.227,0.305,1,724854,724854,,,0.168922519,,,0.144439674,0.194431906,0.221311475,27,122,0.17562465,0.269678561,416.1,2923,702463,,,14.19385053,1576,111034,13.49307619,14.89462487,,,,2.545968883,1.677809536,3.704251056,23.57836338,21.13248071,26.02424605,17.27564103,16.24435089,18.30693116,4.109059267,3.282170599,5.080915417,,,,5.726184279,2.858490561,10.24572541,0.114747656,69198,603045,0.105215741,0.124279571,0.000474046,333,702463,,,2109.498499,0.000673902,474,703366,,,1483.894515,0.000924128,650,703366,,,1082.101539,3688,,,,,,2413,5650,3498,3545,0.33,,,,,,0.25,0.3,0.34,0.35,0.4,,,,,,0.43,0.28,0.36,0.45,0.871668017,446464,512195,0.865995704,0.87734033,0.771189535,202792,262960,0.755665137,0.786713932,0.03626873,13681,377212,,,0.182,25023,,0.141489362,0.222510638,0.131614654,0,0.27609757,0.054070341,0.038419367,0.069721314,0.272460839,0.226511744,0.318409933,0.237437729,0.214786488,0.26008897,0.152258672,0.126570991,0.177946352,6.012730928,188445,31341,5.742425459,6.283036396,0.270351086,38787,143469,0.249752615,0.290949558,5.252945707,369,702463,,,48.79586108,1666,3414224,46.45270316,51.139019,,,,15.74173423,12.60848381,19.41737102,97.73680757,87.62643881,107.8471763,40.35645456,37.09448118,43.61842795,63.70757712,58.71290308,68.70225117,,,,9,,,,,0,,,,,0.264839833,69200,261290,0.255837152,0.273842514,0.196643291,0.18831146,0.204975123,0.078839604,0.074038572,0.083640635,0.015557427,0.01314802,0.017966834,0.350858967,131710,375393,0.343139501,0.358578432,0.254826255,0.206725404,0.302927105,0.307634481,0.286147836,0.329121125,0.504982094,0.470809857,0.539154331,0.461837496,0.447444594,0.476230398,0.488362348,0.474206561,0.502518135,0.528,,375393,0.506987856,0.549012144,80.04551346,,,79.80618292,80.28484401,,,,87.40077784,86.14530014,88.65625554,72.89059223,72.15604616,73.62513829,82.04532015,81.63134591,82.45929439,78.33933241,77.96585648,78.71280834,,,,341.4825238,7128,1939532,333.4751496,349.489898,,,,200.7171384,184.0563004,217.3779763,658.1932466,623.9360311,692.450462,293.5184882,282.1673626,304.8696138,373.45219,358.3206816,388.5836983,,,,30.40372512,184,605189,26.01059611,34.79685413,,,,26.6075388,16.47048588,40.67244946,68.36318991,50.57546424,90.37976253,24.91925832,19.63354128,31.1901677,28.16665525,19.83192467,38.82402398,,,,2.791456711,195,69856,2.399651991,3.183261431,,,,1.23954137,0.757144071,1.914371113,7.552870091,5.605885761,9.957517623,2.884007585,2.260601569,3.62620655,2.42669363,1.789252317,3.21744369,,,,,,,0.103,,,0.088,0.119,0.134,,,0.116,0.152,0.112,,,0.097,0.127,828.8,4936,595585,,,0.11,78150,,,,0.00118933,754.3513269,634266,,,25.11580634,514,2046520,22.94449732,27.28711537,,,,,,,57.92615321,47.89095915,67.96134726,19.34180305,16.41698814,22.26661795,35.17722012,30.38504792,39.96939231,,,,0.344,,,0.333,0.357,0.136297299,63226,463883,0.124382406,0.148212193,0.044186303,6417,145226,0.032271409,0.056101196,0.000406616,286,703366,,,2459.321678,0.836950779,5101.215,6095,,,0.081575502,2243,27496,0.06157975,0.101571253,3.254335007,,,,,,3.931197717,2.96674444,3.140814508,3.424334894,3.08889142,,,,,,3.885071392,2.650491676,2.966424678,3.359379786,0.249939304,,,,,3280.048492,,,,,0.862358274,66399,76997,0.824724268,0.899992279,82361,,,78928.31915,85793.68085,52083,40226.48936,63939.51064,142424,136004.2553,148843.7447,63023,59914.40426,66131.59575,63420,60544.93617,66295.06383,113851,111130.8298,116571.1702,,,,,,0.613990368,52269,85130,,,55.49516472,,,,,0.214179041,,82361,,,8.332987853,402,48242,,,4.027654041,192,4767043,3.45793909,4.597368991,,,,,,,21.13533596,17.16751581,25.1031561,2.99019901,2.287265309,3.841035722,1.0194927,0.557366146,1.710535519,,,,6.673485987,241,3414224,5.808045719,7.538926254,7.058704994,,,,3.956070163,2.416470432,6.109829511,4.555096464,2.74246563,7.113347378,5.293515062,4.184303989,6.606546366,11.51999333,9.295905022,13.74408163,,,,3.543997113,121,3414224,2.912521264,4.175472963,,,,,,,17.15158462,13.17974855,21.9443274,2.12763621,1.445625579,3.020009767,2.344438838,1.486173115,3.517809366,,,,4.384269242,209,4767043,3.789867402,4.978671082,,,,2.102659733,1.201851714,3.414587675,8.919499577,6.530194718,11.89736249,4.166670752,3.328188606,5.15215291,4.442075338,3.397835658,5.706031604,,,,,,,,,,,0.625187669,249850,399640,,,0.578,,,,,365.8414656,,,,,0.322460645,93531,290054,0.31348391,0.33143738,0.205672782,58249,283212,0.196863939,0.214481626,0.902342323,261728,290054,0.895401198,0.909283447,703366,,,,,0.198174208,139389,703366,,,0.127983155,90019,703366,,,0.110342269,77611,703366,,,0.013456721,9465,703366,,,0.170136174,119668,703366,,,0.002198002,1546,703366,,,0.423792165,298081,703366,,,0.282021025,198364,703366,,,0.114263465,76006,665182,0.109714575,0.118812354,0.499717075,351484,703366,,,0,0,724854,, -34,019,34019,NJ,Hunterdon County,2024,1,4425.421998,1175,348628,3959.648567,4891.195428,0,,,,2,2502.847215,1006.274389,5156.821837,1,5274.721558,2529.434014,9700.400748,1,4983.987292,3451.556085,6964.622683,,4500.317958,3984.172372,5016.463545,,,,,2,,0.102,,,0.083,0.125,2.689872895,,,2.061565244,3.411255468,4.354373953,,,3.473854507,5.293549113,0.063,441,7000,0.057308233,0.068691767,0,,,,0.07960199,0.053141807,0.106062173,0.104575163,0.056086613,0.153063714,0.073015873,0.056428219,0.089603527,0.058867362,0.052570669,0.065164055,,,,,,,0.105,,,0.076,0.139,0.282,,,0.222,0.345,9.6,0.026329771,0.046,,,0.178,,,0.139,0.221,0.906876469,116939,128947,,,0.195164026,,,0.158591287,0.234178636,0.236842105,9,38,0.153038699,0.327558833,121.6,158,129924,,,2.14319445,59,27529,1.631498915,2.76456469,,,,,,,,,,18.13356922,13.01296235,24.60023422,0.751248398,0.437629876,1.20282146,,,,,,,0.045877364,4641,101161,0.039919917,0.051834811,0.001100644,143,129924,,,908.5594406,0.000839902,109,129777,,,1190.614679,0.002881867,374,129777,,,346.9973262,2919,,,,,,,3356,,2902,0.44,,,,,,0.39,0.45,0.42,0.45,0.54,,,,,,0.59,0.42,0.47,0.55,0.957873739,89793,93742,0.951947398,0.963800079,0.817553946,21899,26786,0.777763336,0.857344557,0.029096838,1981,68083,,,0.043,1042,,0.028702128,0.057297872,,,,0.075818037,0,0.190248237,0.044642857,0,0.174069926,0.068309859,0.016045655,0.120574063,0.020449451,0.011821859,0.029077042,4.198300283,248976,59304,3.925396376,4.47120419,0.120119751,2929,24384,0.098839417,0.141400084,9.544041132,124,129924,,,48.34105889,304,628865,42.90686114,53.77525665,,,,,,,,,,29.02303983,15.45354637,49.63028201,52.70508868,46.53161495,58.8785624,,,,7.8,,,,,1,,,,,0.119739742,5705,47645,0.106685543,0.132793941,0.112328767,0.099575254,0.12508228,0.006926225,0.003791351,0.0100611,0.003148284,0.00157479,0.004721779,0.723320994,47873,66185,0.709268372,0.737373616,,,,0.612970711,0.519634214,0.706307209,0.783853054,0.714904933,0.852801176,0.675403226,0.594207018,0.756599434,0.699270623,0.68443454,0.714106707,0.536,,66185,0.508518149,0.563481851,82.8661773,,,82.35163455,83.38072005,,,,87.93123394,83.70862613,92.15384175,87.05448012,79.37551283,94.73344741,85.18716517,81.06781272,89.30651763,82.64488828,82.10355076,83.1862258,,,,220.6856286,1175,348628,206.8965715,234.4746857,,,,114.2558196,70.72615313,174.6521571,236.4887733,148.2062552,358.0468449,236.7544452,175.1522419,313.0019322,226.519534,211.2943391,241.7447288,,,,26.07683353,28,107375,17.3278665,37.68828493,,,,,,,,,,,,,20.26100948,11.80278466,32.43983888,,,,3.229120799,22,6813,2.023672813,4.888927695,,,,,,,,,,,,,,,,,,,,,,0.082,,,0.067,0.098,0.134,,,0.113,0.157,0.069,,,0.057,0.082,176.8,201,113719,,,0.046,5910,,,,0.026329771,3379.399797,128349,,,14.77213974,56,379092,11.15871561,19.18285219,,,,,,,,,,,,,16.34115299,12.20435467,21.42924807,,,,0.294,,,0.278,0.312,0.052384553,4018,76702,0.045235617,0.059533489,0.026850033,697,25959,0.018509607,0.035190458,0.000855313,111,129777,,,1169.162162,0.939905315,1538.625,1637,,,0.034357257,236,6869,0.014954623,0.053759891,3.450089313,,,,,,3.77266404,3.05243824,2.926124014,3.498217739,3.500442899,,,,,,4.100683848,3.103140488,2.942468748,3.54491936,0.053288237,,,,,15814.36895,,,,,0.809732295,79157,97757,0.730007937,0.889456654,137334,,,123015.8723,151652.1277,80944,11636.25532,150251.7447,189200,148098.383,230301.617,118125,52055.7234,184194.2766,122371,91783.08511,152958.9149,132989,129096.4043,136881.5957,,,,,,0.093084956,1649,17715,,,47.40964093,,,,,0.252916248,,137334,,,12.21995927,66,5401,,,,,,,,,,,,,,,,,,,,,,,,,,10.16490923,68,628865,7.756896604,13.0842531,10.81313159,,,,,,,,,,,,,11.24006187,8.443880417,14.66584257,,,,4.452465951,28,628865,2.958631289,6.435052983,,,,,,,,,,,,,5.082276408,3.349252177,7.394445344,,,,5.801856367,51,879029,4.319863149,7.628369642,,,,,,,,,,,,,6.296756768,4.626620031,8.373351635,,,,,,,,,,,0.875559944,84242,96215,,,0.762,,,,,68.37183661,,,,,0.844814397,41967,49676,0.837707894,0.851920901,0.118433777,5756,48601,0.105216329,0.131651226,0.932442226,46320,49676,0.922327768,0.942556683,129777,,,,,0.187074751,24278,129777,,,0.211031231,27387,129777,,,0.025258713,3278,129777,,,0.002458063,319,129777,,,0.050232322,6519,129777,,,0.00175686,228,129777,,,0.080283872,10419,129777,,,0.828197601,107481,129777,,,0.014285021,1766,123626,0.010882463,0.017687579,0.506106629,65681,129777,,,0.583472279,75237,128947,, -34,021,34021,NJ,Mercer County,2024,1,7413.519294,4601,1044503,7095.704165,7731.334423,0,,,,2,2495.646878,1987.31704,3003.976716,,14523.05813,13525.39705,15520.71921,,7317.829706,6630.289319,8005.370093,,5885.337072,5454.198453,6316.475691,,,,,2,,0.142,,,0.12,0.167,3.196050208,,,2.555403052,3.884242445,4.463206754,,,3.735260704,5.230248409,0.080975746,2327,28737,0.077821639,0.084129852,0,,,,0.09096632,0.080966832,0.100965809,0.126455369,0.118171513,0.134739224,0.068621335,0.063568834,0.073673836,0.058236273,0.053401891,0.063070655,,,,0.093506494,0.064424181,0.122588806,0.135,,,0.106,0.164,0.236,,,0.195,0.28,9,0.036696391,0.072,,,0.23,,,0.193,0.273,0.993075851,384658,387340,,,0.157001151,,,0.129403575,0.186648672,0.205882353,28,136,0.163059324,0.251551551,440.8,1701,385898,,,13.69863014,1306,95338,12.95567665,14.44158362,,,,,,,21.64478077,19.49381023,23.79575131,41.91180299,39.01649696,44.80710902,1.84540634,1.461025578,2.299926912,,,,5.704697987,3.323196802,9.133774099,0.076683675,23309,303963,0.06834325,0.085024101,0.000904384,349,385898,,,1105.724928,0.000845837,322,380688,,,1182.26087,0.003874564,1475,380688,,,258.0935593,3122,,,,,,1632,5885,4349,2692,0.42,,,,,,0.39,0.33,0.35,0.44,0.54,,,,,,0.58,0.35,0.4,0.57,0.897268415,233253,259959,0.888708673,0.905828158,0.669226952,64737,96734,0.645129255,0.69332465,0.031832775,6891,216475,,,0.133,10661,,0.100829787,0.165170213,0.218289086,0,0.475755707,0.059513908,0.035857146,0.08317067,0.223314689,0.174016274,0.272613105,0.213616948,0.168443356,0.25879054,0.049039149,0.029642278,0.068436019,5.549451501,192233,34640,5.149181497,5.949721506,0.264967998,21734,82025,0.236878981,0.293057014,10.88370502,420,385898,,,71.4702771,1333,1865111,67.63350095,75.30705326,,,,16.75102543,11.79426778,23.08908202,108.1619622,97.46810568,118.8558188,60.6836446,52.47600874,68.89128046,76.43647571,70.71231998,82.16063144,,,,7.6,,,,,1,,,,,0.185864273,24430,131440,0.173803844,0.197924702,0.16151507,0.149810624,0.173219516,0.023204504,0.018231489,0.028177519,0.00886336,0.005913148,0.011813571,0.634553182,114962,181170,0.621172719,0.647933646,,,,0.564504633,0.524906582,0.604102684,0.7491206,0.727809157,0.770432043,0.614339313,0.588040201,0.640638425,0.783331767,0.77053441,0.796129125,0.319,,181170,0.300930169,0.337069831,78.72073695,,,78.41915162,79.02232228,,,,87.03713915,85.64475147,88.42952683,71.45892518,70.73120894,72.18664142,80.81387193,79.6238982,82.00384566,80.15643556,79.76205077,80.55082035,,,,357.5238223,4601,1044503,346.8952875,368.1523571,,,,140.8750047,120.2022377,161.5477717,683.529244,649.4332821,717.6252059,321.9151242,294.016852,349.8133963,301.1086395,287.3669761,314.8503029,,,,45.47103116,168,369466,38.59502538,52.34703695,,,,,,,99.13160712,77.97329752,124.2623279,54.6149645,41.02844223,71.26068167,21.65617462,14.50348003,31.10187919,,,,5.403144281,155,28687,4.552521936,6.253766626,,,,,,,13.5689492,10.8534079,16.75754187,4.931506849,3.597074936,6.598744164,,,,,,,,,,0.096,,,0.082,0.111,0.141,,,0.121,0.161,0.094,,,0.081,0.109,463.3,1521,328316,,,0.072,27740,,,,0.036696391,13449.70426,366513,,,32.57279574,365,1120567,29.23111716,35.91447432,,,,,,,49.57949245,40.22874624,58.93023867,29.20244359,22.38934605,37.43621474,35.0299638,29.99566153,40.06426607,,,,0.343,,,0.331,0.354,0.091965678,20589,223877,0.081242273,0.102689082,0.035237745,2971,84313,0.02570583,0.04476966,0.001203085,458,380688,,,831.1965066,0.866925676,4362.37,5032,,,0.037464837,879,23462,0.020083591,0.054846083,3.151295389,,,,,,3.818033038,2.623334661,2.810263863,3.545154491,3.085643467,,,,,,4.013362184,2.428913718,2.688546755,3.527354553,0.274343786,,,,,9183.718778,,,,,0.813864261,62788,77148,0.773866814,0.853861708,94832,,,89939.74468,99724.25532,110905,34859.38298,186950.617,176200,164076.5957,188323.4043,56828,50719.23404,62936.76596,72250,68625.48936,75874.51064,108700,103692.1702,113707.8298,,,,,,0.328441612,18397,56013,,,63.59705289,,,,,0.330110089,,94832,,,9.000984483,192,21331,,,8.053592439,210,2607532,6.964321112,9.142863766,,,,,,,30.84885437,26.02332142,35.67438732,7.620160404,5.337066665,10.549514,1.257719252,0.718895224,2.042457269,,,,7.509836446,144,1865111,6.257016858,8.762656035,7.720720107,,,,4.587792613,2.200024884,8.43711396,3.955081672,2.162279954,6.635954998,6.208626944,3.61675399,9.940613176,10.54969646,8.42672283,13.04486304,,,,8.900274568,166,1865111,7.546315822,10.25423331,,,,,,,30.27434057,24.61671215,35.931969,6.357334196,3.984107495,9.625080373,3.793927262,2.627404919,5.301633073,,,,7.056480994,184,2607532,6.03686806,8.076093928,,,,,,,11.39639206,8.65375829,14.73247947,7.831831527,5.51433216,10.79514811,6.445811166,5.126544909,8.00095124,,,,,,,,,,,0.704289047,176604,250755,,,0.679,,,,,169.3449655,,,,,0.627987302,87635,139549,0.614963166,0.641011438,0.164592049,22505,136732,0.152559666,0.176624432,0.884757325,123467,139549,0.873983243,0.895531407,380688,,,,,0.214067688,81493,380688,,,0.165371643,62955,380688,,,0.193349935,73606,380688,,,0.007439163,2832,380688,,,0.130484807,49674,380688,,,0.002503362,953,380688,,,0.203844093,77601,380688,,,0.452018451,172078,380688,,,0.067114945,24334,362572,0.060987036,0.073242855,0.506264973,192729,380688,,,0.050779677,19669,387340,, -34,023,34023,NJ,Middlesex County,2024,1,5505.021139,8527,2344355,5328.524069,5681.51821,0,,,,2,2524.481499,2287.296683,2761.666314,,8090.529739,7407.922504,8773.136974,,5448.383672,5089.362132,5807.405212,,6910.749209,6574.253093,7247.245325,,,,,2,,0.132,,,0.112,0.152,2.902723081,,,2.357735693,3.498715821,4.390444278,,,3.741799263,5.087104117,0.081549689,4995,61251,0.079382292,0.083717086,0,,,,0.092549879,0.088236617,0.09686314,0.118242664,0.109951887,0.12653344,0.076851033,0.073085283,0.080616782,0.063253528,0.059647094,0.066859963,,,,0.0896,0.067208345,0.111991655,0.11,,,0.088,0.135,0.283,,,0.243,0.328,9,0.039025109,0.07,,,0.223,,,0.19,0.261,0.97019563,837436,863162,,,0.140906154,,,0.118469302,0.166433089,0.269230769,70,260,0.237922232,0.30122839,288.6,2484,860807,,,7.251856286,1381,190434,6.869376559,7.634336013,,,,0.279648074,0.148900822,0.478206723,7.00466978,5.872308345,8.137031215,19.88044473,18.66097986,21.09990961,2.376618884,2.006034537,2.747203231,,,,5.227619255,3.349434296,7.778283074,0.076647966,53514,698179,0.06949903,0.083796902,0.000903803,778,860807,,,1106.435733,0.000890392,767,861418,,,1123.100391,0.002247457,1936,861418,,,444.9473141,2843,,,,,,1643,3726,2967,2954,0.4,,,,,,0.34,0.4,0.31,0.42,0.52,,,,,0.7,0.56,0.39,0.38,0.54,0.896832161,530313,591318,0.893156914,0.900507409,0.748815782,172784,230743,0.732809641,0.764821924,0.033481873,15493,462728,,,0.091,16469,,0.070744681,0.111255319,0.187618446,0.072564778,0.302672114,0.039408094,0.028865265,0.049950922,0.120725638,0.084182848,0.157268428,0.196509112,0.173089274,0.219928951,0.070667649,0.053083561,0.088251737,4.392526739,194668,44318,4.240288757,4.544764721,0.173857183,32206,185244,0.160536324,0.187178042,6.191864146,533,860807,,,53.45498588,2235,4181088,51.23880335,55.67116841,,,,15.47075502,13.08838029,17.85312975,60.37456575,52.86033979,67.88879172,40.18990547,36.08918777,44.29062317,83.45825155,79.15802746,87.75847564,,,,7.9,,,,,1,,,,,0.194030628,55875,287970,0.187084427,0.200976829,0.153939203,0.147081061,0.160797344,0.043615654,0.03969693,0.047534379,0.00671945,0.004720327,0.008718573,0.649013613,272992,420626,0.638276862,0.659750365,0.366679346,0.30598313,0.427375562,0.542055716,0.524254643,0.559856789,0.712351316,0.69938086,0.725321772,0.638023022,0.616904272,0.659141771,0.776599126,0.764827511,0.788370741,0.462,,420626,0.449334294,0.474665706,80.3047724,,,80.11793182,80.49161298,,,,87.80724858,87.10857712,88.50592005,77.72727389,77.02890902,78.42563877,82.34689333,81.66933564,83.02445103,78.44307671,78.16172797,78.72442546,,,,288.4165594,8527,2344355,282.149405,294.6837137,,,,140.0188261,130.8123607,149.2252915,409.2272653,384.8179215,433.6366092,275.0051892,259.9415467,290.0688317,347.0894773,336.5386996,357.640255,,,,29.47013672,241,817777,25.74939349,33.19087996,,,,20.19658005,14.73152407,27.02461312,48.33192882,34.36872613,66.07133776,32.16547902,25.42547638,40.14397353,29.72930047,23.30302584,37.38013194,,,,3.716276002,231,62159,3.237030503,4.1955215,,,,2.186466334,1.554791304,2.988971456,6.688389642,4.756098866,9.143248819,4.635899573,3.723008029,5.704873341,3.346346905,2.553615223,4.307411791,,,,,,,0.088,,,0.076,0.102,0.135,,,0.118,0.156,0.097,,,0.084,0.111,300.1,2193,730876,,,0.07,60310,,,,0.039025109,31604.79661,809858,,,27.3060127,685,2508605,25.26112684,29.35089857,,,,3.651842831,2.314955096,5.479557285,36.65601517,29.54992181,44.95534859,21.58813759,17.74152398,25.43475119,43.57996729,39.53536762,47.62456695,,,,0.347,,,0.336,0.359,0.093888542,48603,517667,0.085548117,0.102228968,0.028778381,5463,189830,0.021629445,0.035927317,0.000759213,654,861418,,,1317.152905,0.886102503,8921.28,10068,,,0.035505027,1727,48641,0.026528968,0.044481085,3.393405972,,,,,,3.919826824,3.048418807,2.94579542,3.424295761,3.376398505,,,,,,4.12010585,2.831082551,2.832019631,3.387831709,0.24616695,,,,,9097.787087,,,,,0.758209667,63610,83895,0.73560073,0.780818604,102073,,,98449.68085,105696.3192,86875,55566.23404,118183.766,149005,144061.5106,153948.4894,90049,84904.14894,95193.85106,77774,73364.29787,82183.70213,102638,99890.42553,105385.5745,,,,,,0.318625196,40864,128251,,,45.69340242,,,,,0.27866331,,102073,,,7.015147753,339,48324,,,1.945704269,114,5859061,1.588529743,2.302878795,,,,,,,8.437676334,6.221276449,11.18713469,2.376623531,1.603497916,3.392777869,1.132045874,0.752236262,1.636121479,,,,6.695801328,299,4181088,5.922601339,7.469001316,7.15124867,,,,3.531757323,2.45999838,4.911819486,4.911029424,2.999784357,7.584686637,4.787681331,3.420389735,6.519463105,10.14876014,8.60865105,11.68886924,,,,2.678728599,112,4181088,2.18262112,3.174836078,,,,,,,7.05992906,4.728145293,10.13923578,2.505061859,1.587994332,3.758822762,3.287574526,2.489976841,4.259434122,,,,5.581099087,327,5859061,4.976173537,6.186024638,,,,2.746132416,1.961877259,3.739452927,5.625117556,3.847576244,7.940987609,5.703896474,4.462947702,7.183113618,7.27743776,6.214278518,8.340597001,,,,,,,,,,,0.686543734,374362,545285,,,0.722,,,,,215.6881038,,,,,0.638496922,192805,301967,0.630241195,0.646752649,0.155549691,45971,295539,0.148361639,0.162737742,0.921186752,278168,301967,0.915959487,0.926414018,861418,,,,,0.212448544,183007,861418,,,0.162894205,140320,861418,,,0.103502597,89159,861418,,,0.008101758,6979,861418,,,0.260658589,224536,861418,,,0.00136403,1175,861418,,,0.231749279,199633,861418,,,0.388641751,334783,861418,,,0.069069816,56130,812656,0.065509369,0.072630262,0.502232366,432632,861418,,,0.009765258,8429,863162,, -34,025,34025,NJ,Monmouth County,2024,1,5710.415358,7046,1738024,5490.441722,5930.388995,0,,,,2,2732.718886,2110.216621,3355.221152,,11881.03401,10647.52658,13114.54145,,5522.835867,4922.081346,6123.590388,,5427.361027,5176.691743,5678.030311,,,,,2,,0.114,,,0.095,0.135,2.963986816,,,2.371524771,3.662448584,4.603839822,,,3.859973993,5.423910934,0.072021496,3002,41682,0.06953961,0.074503382,0,,,,0.106514995,0.092765813,0.120264176,0.133172746,0.120819468,0.145526024,0.073121533,0.06739227,0.078850796,0.062026312,0.059199626,0.064852998,,,,0.110810811,0.078826031,0.14279559,0.118,,,0.092,0.15,0.27,,,0.227,0.316,9,0.046999755,0.064,,,0.193,,,0.161,0.231,0.952572578,613090,643615,,,0.173452673,,,0.146554647,0.202587291,0.327683616,58,177,0.289970084,0.365600376,241.4,1558,645354,,,4.893696062,685,139976,4.527218172,5.260173952,,,,,,,14.69138237,12.33239509,17.05036965,16.54402687,14.77238924,18.31566449,1.707898262,1.448862437,1.966934088,,,,4.401408451,2.463434898,7.259453894,0.060090992,31369,522025,0.054133545,0.066048439,0.001097072,708,645354,,,911.5169492,0.001041767,671,644098,,,959.9076006,0.003424945,2206,644098,,,291.9755213,3145,,,,,,1697,6596,3777,2934,0.44,,,,,,0.35,0.35,0.39,0.45,0.53,,,,,,0.56,0.39,0.43,0.54,0.943494391,428521,454185,0.939859305,0.947129477,0.786740805,113758,144594,0.766601983,0.806879628,0.03302959,11494,347991,,,0.069,8989,,0.047553192,0.090446809,0.044854881,0,0.204017994,0.017904233,0.003778561,0.032029906,0.167812634,0.123627032,0.211998236,0.143376601,0.119346558,0.167406645,0.048766764,0.040173703,0.057359824,4.986632746,231290,46382,4.765063488,5.208202003,0.159804903,21395,133882,0.145463791,0.174146015,8.398491371,542,645354,,,61.68865916,1931,3130235,58.93715442,64.4401639,,,,20.6263536,14.44644449,28.55556768,92.10507575,79.144068,105.0660835,38.67441301,32.15042855,45.19839747,66.16887336,62.87790215,69.45984458,,,,8.2,,,,,1,,,,,0.170524902,40625,238235,0.163161667,0.177888137,0.155982725,0.148356535,0.163608915,0.015279031,0.012739085,0.017818978,0.00877285,0.006545143,0.011000557,0.687394441,223441,325055,0.677461411,0.697327471,0.588595953,0.371967335,0.805224572,0.60434907,0.564108054,0.644590086,0.73040437,0.69609966,0.764709079,0.636704731,0.605681846,0.667727616,0.742932883,0.733046299,0.752819467,0.439,,325055,0.426446881,0.451553119,79.76748093,,,79.56107029,79.97389157,,,,86.5761913,85.39374648,87.75863612,73.80882108,72.87297076,74.7446714,81.00132605,80.14189347,81.86075863,79.88629794,79.65665532,80.11594055,,,,287.8887644,7046,1738024,280.73745,295.0400788,,,,153.2523396,131.3701557,175.1345236,558.9820528,518.4904332,599.4736724,266.2078477,241.5559685,290.8597268,278.7192319,270.7286433,286.7098205,,,,28.30790769,165,582876,23.98852314,32.62729223,,,,,,,60.78288354,39.33547738,89.72752662,31.19851027,21.33975793,44.04298773,24.98171442,20.25848749,30.47557302,,,,3.225884693,133,41229,2.677634124,3.774135261,,,,,,,7.194244604,4.508594791,10.89217279,3.789792825,2.556957304,5.410164906,2.592660215,2.024889138,3.270288081,,,,,,,0.086,,,0.074,0.101,0.144,,,0.124,0.166,0.077,,,0.065,0.089,311.8,1730,554884,,,0.064,41230,,,,0.046999755,29627.7056,630380,,,28.68480184,540,1882530,26.26538307,31.10422061,,,,,,,54.32698453,42.18702924,68.87239802,17.96919701,12.71607328,24.66412682,30.04168993,27.1821412,32.90123866,,,,0.344,,,0.328,0.359,0.069735377,27109,388741,0.06258644,0.076884313,0.033269254,4690,140971,0.024928828,0.04160968,0.00111008,715,644098,,,900.8363636,0.919719159,7171.97,7798,,,0.039229984,1345,34285,0.027222127,0.051237841,3.409743796,,,,,,3.961045331,2.778819859,3.004050601,3.559301698,3.410527767,,,,,,4.211535105,2.525255452,2.919217209,3.599258327,0.203960427,,,,,10924.69237,,,,,0.714936822,70274,98294,0.687223202,0.742650442,117699,,,113584.7872,121813.2128,112745,94509.25532,130980.7447,160545,143034.8723,178055.1277,64003,54764.19149,73241.80851,90889,80930.53192,100847.4681,124071,120657.383,127484.617,,,,,,0.204944066,18778,91625,,,62.67110694,,,,,0.23956873,,117699,,,8.243500317,260,31540,,,1.391170764,61,4384796,1.064135402,1.787017045,,,,,,,9.388160189,6.238364266,13.56850539,,,,0.668453869,0.418916481,1.012047191,,,,8.446121009,278,3130235,7.405205207,9.487036812,8.881122344,,,,6.953932665,3.471378132,12.44250641,7.544026725,4.124389611,12.65759497,5.394874684,3.197344647,8.526227872,9.091601966,7.83209184,10.35111209,,,,3.002969426,94,3130235,2.426704973,3.67487405,,,,,,,7.596294907,4.341938885,12.33590702,,,,2.939891991,2.287411449,3.720621472,,,,5.906774226,259,4384796,5.187397206,6.626151246,,,,,,,6.370537271,3.835479589,9.948383081,7.644786049,5.382634882,10.53733055,5.833779222,5.008586391,6.658972054,,,,,,,,,,,0.81889861,378151,461780,,,0.713,,,,,97.93044023,,,,,0.755574991,187471,248117,0.747996118,0.763153863,0.158876853,38663,243352,0.150590458,0.167163248,0.92484997,229471,248117,0.919899821,0.929800119,644098,,,,,0.204152163,131494,644098,,,0.19389596,124888,644098,,,0.064839512,41763,644098,,,0.003075619,1981,644098,,,0.057894917,37290,644098,,,0.000605498,390,644098,,,0.116608032,75107,644098,,,0.745380361,480098,644098,,,0.022578921,13812,611721,0.020383601,0.024774241,0.509212884,327983,644098,,,0.051288426,33010,643615,, -34,027,34027,NJ,Morris County,2024,1,4332.663548,4307,1376206,4121.029734,4544.297363,0,,,,2,2241.510707,1771.639697,2711.381717,,8713.204985,6968.24275,10458.16722,,3972.030853,3464.057807,4480.003898,,4570.508117,4303.426263,4837.58997,,,,,2,,0.103,,,0.085,0.123,2.897632349,,,2.305658873,3.574452282,4.528958981,,,3.790155849,5.318000559,0.061225112,2008,32797,0.058630428,0.063819796,0,,,,0.090868794,0.082482073,0.099255515,0.113636364,0.093643131,0.133629596,0.061612853,0.055726858,0.067498848,0.051456262,0.048395678,0.054516847,,,,0.041666667,0.017561686,0.065771647,0.105,,,0.079,0.133,0.246,,,0.205,0.293,9.3,0.036840019,0.057,,,0.18,,,0.148,0.216,0.985988199,502149,509285,,,0.185466801,,,0.156268962,0.218109984,0.171875,22,128,0.129109721,0.218856266,175.9,899,510981,,,2.87129678,324,112841,2.558644464,3.183949097,,,,,,,3.716608595,2.124362939,6.035539512,12.77901786,11.12387377,14.43416195,0.813979441,0.62407337,1.043484907,,,,,,,0.056390026,23385,414701,0.050432579,0.062347472,0.000931542,476,510981,,,1073.489496,0.001134694,580,511151,,,881.2948276,0.003310176,1692,511151,,,302.0986998,2164,,,,,,1120,2829,2690,2128,0.44,,,,,,0.35,0.41,0.37,0.46,0.58,,,,,,0.6,0.44,0.46,0.59,0.950738026,342086,359811,0.946761454,0.954714598,0.831940445,100243,120493,0.810198638,0.853682251,0.030348364,8155,268713,,,0.044,4564,,0.029702128,0.058297872,0.323943662,0,0.733237162,0.023750822,0.010815767,0.036685877,0.155342712,0.07693261,0.233752813,0.135620651,0.10292266,0.168318642,0.036875433,0.027125906,0.046624961,,,,,,0.123028571,12957,105317,0.110624006,0.135433135,10.09822283,516,510981,,,47.22983929,1175,2487834,44.52928069,49.93039789,,,,17.77284088,13.10428985,23.56420853,60.93102608,45.22418199,80.32996181,23.12914156,18.3399708,28.78621878,56.42194459,52.90013668,59.94375249,,,,5.6,,,,,1,,,,,0.147860556,27230,184160,0.139227142,0.15649397,0.130222004,0.121993586,0.138450421,0.014443962,0.011611589,0.017276335,0.007031929,0.004339562,0.009724295,0.703918878,184652,262320,0.695361662,0.712476094,,,,0.633924463,0.604455137,0.663393788,0.780774377,0.748511402,0.813037352,0.699188792,0.682646593,0.715730991,0.769404933,0.757954649,0.780855216,0.443,,262320,0.426793993,0.459206007,81.72644649,,,81.4998441,81.95304887,,,,90.09909676,88.57092466,91.62726886,75.63909884,74.15785657,77.12034111,84.97007502,83.76142354,86.17872651,81.21050654,80.94962803,81.47138506,,,,229.3984502,4307,1376206,222.2596675,236.5372329,,,,108.8467971,93.37924199,124.3143522,443.7919579,387.9190351,499.6648806,204.3540508,183.4541384,225.2539632,241.9280516,233.2513186,250.6047846,,,,21.62152812,100,462502,17.38370861,25.85934764,,,,26.07756212,14.25684588,43.75371814,,,,26.72497571,16.74839999,40.46193439,18.72276689,14.1045503,24.37025462,,,,2.899444787,94,32420,2.343046527,3.548186111,,,,,,,,,,5.135612261,3.512754985,7.249952187,1.917061851,1.356627063,2.631317169,,,,,,,0.082,,,0.07,0.097,0.131,,,0.113,0.151,0.074,,,0.063,0.087,183.9,809,439923,,,0.057,28760,,,,0.036840019,18135.45727,492276,,,19.88067578,297,1493913,17.61963191,22.14171966,,,,,,,27.95806291,15.28493315,46.90887893,9.525351724,5.818332295,14.71113319,24.43762321,21.43815029,27.43709613,,,,0.302,,,0.288,0.315,0.065754591,20388,310062,0.058605655,0.072903527,0.029793238,3294,110562,0.021452813,0.038133664,0.001015356,519,511151,,,984.8766859,0.938306669,5923.53,6313,,,0.031784477,853,26837,0.020493572,0.043075382,3.614908143,,,,,,4.045480908,3.269332267,3.156265269,3.665121047,3.557535444,,,,,,4.151053383,3.081664909,3.099020118,3.586393881,0.15137977,,,,,13183.0529,,,,,0.769974451,79563,103332,0.741181684,0.798767219,131562,,,125988.2128,137135.7872,,,,169815,160037.6383,179592.3617,89511,68525.29787,110496.7021,91168,82819.23404,99516.76596,137409,133224.4894,141593.5106,,,,,,0.105919312,7485,70667,,,55.04752667,,,,,0.237743421,,131562,,,9.52532148,240,25196,,,0.659826276,23,3485766,0.418273259,0.990063386,,,,,,,,,,,,,0.487150394,0.251717717,0.8509537,,,,7.494956265,204,2487834,6.42515412,8.56475841,8.199904013,,,,7.858747204,4.800326957,12.13719767,,,,,,,8.512622153,7.111935576,9.913308731,,,,2.572518906,64,2487834,1.981153025,3.285049212,,,,,,,,,,,,,3.147268714,2.370953512,4.096602837,,,,4.131086252,144,3485766,3.456342164,4.80583034,,,,,,,,,,5.448894608,3.559398864,7.983893085,4.384353541,3.557459694,5.211247389,,,,,,,,,,,0.843576411,299322,354825,,,0.766,,,,,112.2476678,,,,,0.738453749,140016,189607,0.730645662,0.746261836,0.138379172,25821,186596,0.129626854,0.14713149,0.940118245,178253,189607,0.934989988,0.945246501,511151,,,,,0.203155232,103843,511151,,,0.184348656,94230,511151,,,0.034569041,17670,511151,,,0.00361537,1848,511151,,,0.115881608,59233,511151,,,0.000645602,330,511151,,,0.14871535,76016,511151,,,0.684504188,349885,511151,,,0.036766347,17788,483812,0.033395527,0.040137167,0.502988354,257103,511151,,,0.085549349,43569,509285,, -34,029,34029,NJ,Ocean County,2024,1,7298.626443,8716,1675068,7052.425414,7544.827472,0,,,,2,3242.998458,2098.697611,4787.305464,,12342.64156,10560.59371,14124.6894,,6161.24007,5454.716894,6867.763245,,7343.378113,7071.262799,7615.493428,,,,,2,,0.142,,,0.118,0.168,3.866085259,,,3.160284054,4.673710238,5.039311699,,,4.264648018,5.882806238,0.058944968,3826,64908,0.057133053,0.060756883,0,,,,0.105113636,0.082457637,0.127769635,0.138125441,0.12017299,0.156077891,0.06686747,0.060859176,0.072875763,0.055263825,0.053358101,0.057169549,,,,0.070336391,0.042620098,0.098052685,0.142,,,0.11,0.177,0.32,,,0.27,0.371,8.2,0.088650351,0.083,,,0.242,,,0.201,0.286,0.934941756,595772,637229,,,0.159545868,,,0.131951806,0.189310207,0.259803922,53,204,0.224341794,0.296265487,172.6,1120,648998,,,6.585059068,801,121639,6.12902269,7.041095447,,,,,,,12.69090127,9.66090205,16.370338,21.19757742,19.04055159,23.35460325,3.423965633,3.049977749,3.797953517,,,,13.90413465,9.839393211,19.08451113,0.063903882,32003,500799,0.056754945,0.071052818,0.000383668,249,648998,,,2606.417671,0.000594753,390,655735,,,1681.371795,0.001982508,1300,655735,,,504.4115385,3359,,,,,,1990,4056,3539,3349,0.42,,,,,,0.39,0.38,0.37,0.42,0.51,,,,,,0.51,0.37,0.43,0.51,0.931469301,404729,434506,0.926822041,0.93611656,0.694068054,93686,134981,0.673123238,0.71501287,0.037034306,11050,298372,,,0.183,29092,,0.153212766,0.212787234,0.151162791,0,0.387016413,0.085637823,0.007613477,0.163662169,0.137094838,0.076111124,0.198078552,0.147333727,0.107581258,0.187086196,0.177684365,0.159309725,0.196059006,4.504433221,160538,35640,4.327022255,4.681844187,0.127935933,19985,156211,0.110011528,0.145860338,7.010807429,455,648998,,,72.83352036,2236,3070015,69.81460127,75.85243945,,,,20.33140185,10.50553202,35.51486742,80.78561387,63.75474312,100.9681563,51.44874206,43.24253713,59.65494699,76.7321915,73.35487068,80.10951231,,,,6.3,,,,,1,,,,,0.183892267,42195,229455,0.175117436,0.192667097,0.163080642,0.15397193,0.172189353,0.022400907,0.019310095,0.025491718,0.00797542,0.005996625,0.009954215,0.775946793,209068,269436,0.765475514,0.786418071,,,,0.709752184,0.68003613,0.739468238,0.749705882,0.702554808,0.796856957,0.595556553,0.553751966,0.63736114,0.756197857,0.745051568,0.767344146,0.43,,269436,0.416053975,0.443946025,78.09092741,,,77.8800407,78.30181413,,,,88.89712842,86.0448512,91.74940564,73.40531532,71.99814171,74.81248893,82.88449959,81.65355039,84.11544879,77.92242688,77.69519199,78.14966176,,,,368.828936,8716,1675068,360.3977421,377.2601298,,,,163.3976189,127.1331006,206.7901444,596.5748528,535.0397596,658.1099459,281.6097405,254.5015624,308.7179186,374.0151284,364.7760801,383.2541767,,,,29.52637844,192,650266,25.34984811,33.70290876,,,,,,,86.27714135,51.13330192,136.3550797,27.39882413,17.55494361,40.76727849,28.06813782,23.49951116,32.63676449,,,,3.04931035,193,63293,2.619101793,3.479518908,,,,,,,14.05481377,8.585045387,21.70651996,,,,2.78686088,2.340870253,3.232851506,,,,,,,0.109,,,0.092,0.127,0.159,,,0.135,0.184,0.083,,,0.07,0.098,153.4,817,532561,,,0.083,52300,,,,0.088650351,51112.86675,576567,,,35.71388474,668,1870421,33.00553383,38.42223564,,,,,,,43.96793723,28.72131636,64.42321521,24.35406381,17.69570005,32.69419393,37.49144667,34.4636227,40.51927064,,,,0.355,,,0.339,0.37,0.082803181,28322,342040,0.073271266,0.092335096,0.02431818,4033,165843,0.018360734,0.030275627,0.000686253,450,655735,,,1457.188889,0.881014996,4817.39,5468,,,0.044278573,1311,29608,0.033571355,0.054985792,3.158748404,,,,,,,2.797653484,2.850361419,3.271820726,3.087152506,,,,,,,2.682346931,2.753011376,3.216760838,0.135794657,,,,,9228.274923,,,,,0.758094985,56986,75170,0.730439332,0.785750637,81152,,,77471.48936,84832.51064,152991,74973.46809,231008.5319,101850,81194.34043,122505.6596,64306,56401.65957,72210.34043,80660,72933.19149,88386.80851,82688,80699.40426,84676.59575,,,,,,0.324272135,21663,66805,,,51.70548171,,,,,0.293079653,,81152,,,3.424124514,154,44975,,,1.411355247,60,4251233,1.077012738,1.816693966,,,,,,,11.43946616,6.40258237,18.86765977,3.240069188,1.725200384,5.540616989,0.808884114,0.541722386,1.161692516,,,,9.250768054,290,3070015,8.107154591,10.39438152,9.446207918,,,,,,,,,,5.173384124,2.754609163,8.846644408,10.20175228,8.871076829,11.53242774,,,,3.615617513,111,3070015,2.942986228,4.288248799,,,,,,,11.54080198,5.761126768,20.64968264,,,,3.598635305,2.904563136,4.40857137,,,,7.997679732,340,4251233,7.147558972,8.847800492,,,,,,,12.20209724,6.974552872,19.81544145,10.96638802,7.968194324,14.72186406,7.642560247,6.737620506,8.547499988,,,,,,,,,,,0.772215125,341516,442255,,,0.667,,,,,83.49023714,,,,,0.798977725,191328,239466,0.792006613,0.805948838,0.163044358,38267,234703,0.154325784,0.171762932,0.861483467,206296,239466,0.854419674,0.868547261,655735,,,,,0.246367816,161552,655735,,,0.228479493,149822,655735,,,0.032897436,21572,655735,,,0.002906662,1906,655735,,,0.020759911,13613,655735,,,0.000512402,336,655735,,,0.101566944,66601,655735,,,0.83275561,546067,655735,,,0.014184325,8410,592908,0.012149928,0.016218723,0.51263544,336153,655735,,,0.036931778,23534,637229,, -34,031,34031,NJ,Passaic County,2024,1,7031.058206,6173,1423445,6778.396169,7283.720243,0,,,,2,4584.234344,3676.000614,5492.468073,,15698.16917,14509.66513,16886.6732,,6199.564593,5847.234784,6551.894403,,6110.961903,5721.410554,6500.513252,,,,,2,,0.176,,,0.152,0.202,3.551117621,,,2.955561113,4.235709171,4.50165379,,,3.846330211,5.238246084,0.088398883,4021,45487,0.085790099,0.091007668,0,,,,0.112914131,0.101508641,0.124319622,0.146393211,0.135755207,0.157031215,0.086084005,0.082503118,0.089664892,0.067352666,0.063185588,0.071519744,,,,0.135638298,0.10102834,0.170248256,0.131,,,0.107,0.157,0.311,,,0.27,0.355,8.5,0.018256634,0.104,,,0.313,,,0.274,0.353,0.986468696,517026,524118,,,0.158319094,,,0.134264764,0.185449088,0.177419355,22,124,0.133679588,0.225292833,492,2549,518117,,,16.88351137,2001,118518,16.14374377,17.62327896,,,,2.330584439,1.240938059,3.985370369,23.56356185,20.78357675,26.34354696,27.9442521,26.57068462,29.31781958,1.940369143,1.543233163,2.408509729,,,,10.01112347,5.933226241,15.82189114,0.122460998,52609,429598,0.111737594,0.133184403,0.000519188,269,518117,,,1926.085502,0.000716043,368,513936,,,1396.565217,0.001640282,843,513936,,,609.6512456,2521,,,,,,1535,4274,2762,2312,0.39,,,,,,0.33,0.36,0.32,0.41,0.47,,,,,,0.49,0.32,0.35,0.5,0.85177958,295082,346430,0.84579978,0.85775938,0.573958488,77427,134900,0.554925294,0.592991682,0.045757605,11571,252876,,,0.176,20937,,0.140255319,0.211744681,0.127423823,0,0.296545877,0.157613967,0.108342649,0.206885286,0.24310436,0.19887766,0.28733106,0.284128134,0.264060332,0.304195936,0.079799199,0.061432142,0.098166256,5.282254595,171874,32538,5.02009879,5.544410399,0.269772402,33141,122848,0.251391689,0.288153114,7.0254402,364,518117,,,58.98490759,1496,2536242,55.99587137,61.97394381,,,,25.16555339,17.52873,34.99919281,112.2105478,99.20565617,125.2154394,39.88823923,36.1311026,43.64537587,71.87807132,66.68159662,77.07454602,,,,7.7,,,,,1,,,,,0.267044107,45045,168680,0.25625268,0.277835534,0.216375677,0.206167437,0.226583918,0.066990752,0.060980347,0.073001156,0.009307565,0.007317741,0.011297389,0.683275813,168284,246290,0.673892954,0.692658672,,,,0.658443282,0.613919434,0.70296713,0.679472215,0.634367328,0.724577103,0.595765146,0.57572285,0.615807442,0.748945199,0.737288061,0.760602337,0.387,,246290,0.372603179,0.401396821,78.57292608,,,78.32745045,78.81840171,,,,84.515673,82.92156735,86.10977865,70.39404241,69.58125964,71.20682519,81.45588624,80.88386542,82.02790705,78.9574518,78.61141875,79.30348485,,,,360.1485387,6173,1423445,350.939259,369.3578184,,,,229.8232513,199.0849465,260.5615562,758.8406288,715.1390947,802.542163,313.5156873,299.3200193,327.7113552,328.6357597,315.4656887,341.8058306,,,,32.65638208,175,535883,27.8179448,37.49481936,,,,38.02136801,18.23272384,69.92264949,61.24870804,41.89407096,86.46490081,32.06190469,25.7483422,39.45493263,23.71832122,16.94471641,32.29762162,,,,3.732233916,172,46085,3.174456786,4.290011045,,,,,,,8.155867694,5.712269465,11.2911587,3.041182682,2.37953815,3.829866274,3.818413237,2.868509544,4.98220099,,,,,,,0.113,,,0.098,0.129,0.15,,,0.131,0.17,0.104,,,0.09,0.118,539.8,2325,430726,,,0.104,54310,,,,0.018256634,9150.699783,501226,,,28.21765083,429,1520325,25.54742323,30.88787843,,,,,,,78.13845074,64.03972495,92.23717653,20.36167811,16.91407519,23.80928103,27.84556094,23.64730714,32.04381474,,,,0.335,,,0.324,0.347,0.15346311,47553,309866,0.139165238,0.167760982,0.043726523,5506,125919,0.033003118,0.054449927,0.000603188,310,513936,,,1657.858065,0.797121817,5195.64,6518,,,0.053326275,1511,28335,0.040681642,0.065970907,2.999081646,,,,,,3.468223334,2.712602863,2.833512609,3.382170158,2.949742235,,,,,,3.703552163,2.545199285,2.764374019,3.394891406,0.282708828,,,,,8505.830758,,,,,0.880165981,52604,59766,0.839257222,0.921074739,78779,,,74553.97872,83004.02128,73750,39387.44681,108112.5532,107106,97391.78723,116820.2128,51743,45548.44681,57937.55319,64167,60605.6383,67728.3617,110267,107141.7234,113392.2766,,,,,,0.557665569,45723,81990,,,67.00069145,,,,,0.238946928,,78779,,,7.030748585,241,34278,,,4.866244382,173,3555103,4.141095912,5.591392852,,,,,,,27.02322619,21.93876125,32.9326571,3.866849698,2.936261095,4.998799926,1.103339464,0.630653836,1.791754165,,,,6.12625504,160,2536242,5.160653771,7.09185631,6.308546267,,,,,,,,,,3.748978759,2.639627023,5.167473382,9.556063858,7.638084883,11.47404283,,,,5.441121155,138,2536242,4.533290331,6.348951979,,,,,,,24.32536351,18.65011672,31.18401819,3.77694644,2.710401975,5.123854325,3.324972007,2.302639772,4.646315109,,,,5.653844628,201,3555103,4.872213382,6.435475875,,,,5.638047595,2.814493046,10.08802454,8.27241618,5.581364458,11.80938847,4.733557388,3.696947593,5.970738555,5.999408334,4.805280137,7.400248016,,,,,,,,,,,0.702586329,223707,318405,,,0.677,,,,,264.9177597,,,,,0.523827797,92827,177209,0.513861614,0.533793979,0.218905386,37817,172755,0.20781153,0.229999242,0.895039191,158609,177209,0.888275101,0.901803281,513936,,,,,0.233852075,120185,513936,,,0.15943814,81941,513936,,,0.097000405,49852,513936,,,0.01702352,8749,513936,,,0.061151583,31428,513936,,,0.002478908,1274,513936,,,0.443321737,227839,513936,,,0.388174792,199497,513936,,,0.141684002,68927,486484,0.135448976,0.147919028,0.508067152,261114,513936,,,0.028312327,14839,524118,, -34,033,34033,NJ,Salem County,2024,1,12372.67808,1297,174531,11322.987,13422.36917,0,,,,2,,,,2,22625.19976,18804.92334,26445.47617,,11087.54799,8375.414596,14398.10331,,10525.91448,9409.017051,11642.81192,,,,,2,,0.163,,,0.138,0.19,4.015387662,,,3.193363956,4.919350963,5.355219285,,,4.340607639,6.431173013,0.086873811,411,4731,0.078847991,0.094899631,0,,,,,,,0.1323043,0.110253562,0.154355038,0.102067184,0.080739162,0.123395205,0.070169253,0.06076816,0.079570345,,,,,,,0.172,,,0.135,0.208,0.358,,,0.286,0.432,7.9,0.084271333,0.1,,,0.281,,,0.234,0.332,0.667211623,43260,64837,,,0.170691796,,,0.135988726,0.208134754,0.295774648,21,71,0.234426663,0.358439747,445.8,290,65046,,,18.48912871,233,12602,16.11505304,20.86320438,,,,,,,36.43525357,28.60951071,45.74112432,34.40366973,26.2536244,44.28434255,9.837678308,7.800667067,12.24384222,,,,31.43418468,17.96735256,51.04714656,0.067035352,3491,52077,0.057503437,0.076567266,0.00024598,16,65046,,,4065.375,0.00030714,20,65117,,,3255.85,0.001151773,75,65117,,,868.2266667,3529,,,,,,5947,5563,,3312,0.36,,,,,,0.35,0.36,0.28,0.36,0.43,,,,,,0.48,0.32,0.42,0.45,0.901800689,40866,45316,0.891762651,0.911838726,0.552039749,8444,15296,0.506453158,0.59762634,0.046046177,1408,30578,,,0.151,2106,,0.099765957,0.202234043,,,,,,,0.38180434,0.274249578,0.489359101,0.318295739,0.217088685,0.419502794,0.146881535,0.100372128,0.193390942,5.005112688,143907,28752,4.416364815,5.593860561,0.314553655,4394,13969,0.261766305,0.367341005,11.22282692,73,65046,,,121.1617573,382,315281,109.0113747,133.3121399,,,,,,,192.4205092,153.0377413,238.8445879,87.35602433,57.56817048,127.098429,114.6292932,100.827715,128.4308713,,,,8.5,,,,,1,,,,,0.180831456,4415,24415,0.15901958,0.202643333,0.168627451,0.147430814,0.189824088,0.01146836,0.00635465,0.016582069,0.006143764,0.001055183,0.011232346,0.813766326,23054,28330,0.796467509,0.831065142,,,,,,,0.734942887,0.655972129,0.813913644,0.744732974,0.690551575,0.798914374,0.810213901,0.78102606,0.839401741,0.397,,28330,0.364544215,0.429455785,73.48233733,,,72.71051205,74.25416262,,,,,,,65.44013018,63.24250733,67.63775304,80.1872975,73.02319276,87.35140225,74.90358598,74.0550625,75.75210947,,,,554.9209243,1297,174531,522.875292,586.9665566,,,,,,,898.8951926,783.2995156,1014.49087,483.0837412,368.643787,621.8245335,505.282582,470.4428076,540.1223564,,,,67.16255016,40,59557,47.98191051,91.45633085,,,,,,,197.5257303,118.9233929,308.4608959,,,,38.30998249,20.94442392,64.27764099,,,,8.137044968,38,4670,5.758257312,11.16872996,,,,,,,23.5426009,14.57324101,35.9873663,,,,,,,,,,,,,0.117,,,0.1,0.135,0.169,,,0.146,0.193,0.098,,,0.083,0.115,280.9,155,55186,,,0.1,6480,,,,0.084271333,5568.902494,66083,,,56.87742914,108,189882,46.15028413,67.60457416,,,,,,,77.54041794,47.36370172,119.7548866,,,,55.70103734,43.9583876,69.61673961,,,,0.38,,,0.364,0.396,0.079733697,3042,38152,0.067818803,0.09164859,0.033016611,483,14629,0.022293207,0.043740015,0.000383924,25,65117,,,2604.68,0.945308311,705.2,746,,,,,,,,3.089945717,,,,,,,2.645702019,2.943344635,3.267281212,3.049535981,,,,,,,2.574810704,2.838596281,3.24682466,0.205539514,,,,,7203.602333,,,,,0.752577163,49570,65867,0.682888698,0.822265628,76005,,,68293.68085,83716.31915,22106,7977.319149,36234.68085,84527,58301.12766,110752.8723,39601,28426.02128,50775.97872,52574,32804.80851,72343.19149,83508,79468.85106,87547.14894,,,,,,0.385308385,3892,10101,,,61.76955341,,,,,0.263732649,,76005,,,5.47235023,19,3472,,,10.38616202,46,442897,7.60397596,13.85368465,,,,,,,55.13323866,37.95118465,77.4275654,,,,,,,,,,10.04807046,33,315281,6.827176378,14.26243396,10.46685338,,,,,,,,,,,,,10.05377768,6.373232625,15.08560288,,,,13.32144975,42,315281,9.600929245,18.00673012,,,,,,,58.66478939,37.96475853,86.60080183,,,,5.623323817,2.9941831,9.616054987,,,,16.93395982,75,442897,13.31963362,21.22686526,,,,,,,28.40197143,16.545195,45.4743076,,,,15.90374564,11.87767793,20.85564652,,,,,,,,,,,0.700433616,33922,48430,,,0.659,,,,,46.52595544,,,,,0.7061914,17474,24744,0.685490864,0.726891936,0.159738865,3866,24202,0.137825649,0.18165208,0.873343033,21610,24744,0.859807361,0.886878704,65117,,,,,0.21667153,14109,65117,,,0.193712855,12614,65117,,,0.135264217,8808,65117,,,0.006603498,430,65117,,,0.010995593,716,65117,,,0.00066035,43,65117,,,0.11166055,7271,65117,,,0.717047776,46692,65117,,,0.011143695,684,61380,0.007291768,0.014995622,0.506626534,32990,65117,,,0.531579191,34466,64837,, -34,035,34035,NJ,Somerset County,2024,1,4405.461162,2805,931622,4141.643122,4669.279202,0,,,,2,1742.571722,1371.465176,2113.678269,,8355.677021,7188.80034,9522.553702,,3921.901744,3350.952822,4492.850667,,4887.185015,4476.217185,5298.152846,,,,,2,,0.108,,,0.091,0.128,2.78500314,,,2.183768962,3.457423714,4.312840639,,,3.544550207,5.111718044,0.072422763,1587,21913,0.068990996,0.075854529,0,,,,0.092224622,0.083890148,0.100559096,0.108348968,0.095155095,0.121542842,0.065443541,0.058777199,0.072109883,0.057936932,0.053202674,0.06267119,,,,0.084821429,0.048334461,0.121308397,0.099,,,0.077,0.123,0.249,,,0.203,0.299,9.5,0.03204228,0.049,,,0.205,,,0.169,0.244,0.957638529,330731,345361,,,0.156895307,,,0.128498667,0.187151049,0.166666667,16,96,0.117609905,0.221636602,217.9,753,345647,,,5.483609067,412,75133,4.954099331,6.013118802,,,,,,,9.635525765,7.497014182,12.19437454,20.31619385,17.91497319,22.71741452,1.332516057,0.989019101,1.756756301,,,,,,,0.053370806,15154,283938,0.04741336,0.059328253,0.001102281,381,345647,,,907.2099738,0.000983063,341,346875,,,1017.228739,0.003076036,1067,346875,,,325.0937207,2479,,,,,,1189,5105,3667,2297,0.42,,,,,,0.35,0.38,0.29,0.44,0.56,,,,,,0.58,0.43,0.42,0.57,0.940220192,228104,242607,0.935345347,0.945095037,0.817926902,68256,83450,0.793305804,0.842548001,0.031086464,5572,179242,,,0.058,4132,,0.041319149,0.074680851,0.047858942,0,0.167568367,0.043483663,0.0251214,0.061845926,0.10007294,0.039404612,0.160741267,0.120954907,0.086874345,0.155035469,0.035989029,0.022569634,0.049408425,,,,,,0.138947512,10205,73445,0.118320398,0.159574625,9.286931465,321,345647,,,45.19583265,755,1670508,41.97193691,48.41972838,,,,12.6533427,9.039733534,17.23026141,66.2322671,53.56359654,78.90093766,27.89520831,21.78638912,35.18600961,58.27768053,53.32077012,63.23459093,,,,8.4,,,,,1,,,,,0.161668894,19355,119720,0.14994081,0.173396979,0.143460553,0.132431358,0.154489749,0.016747411,0.012939694,0.020555127,0.006097561,0.004041707,0.008153415,0.684645901,123569,180486,0.673681147,0.695610654,,,,0.60920815,0.587258263,0.631158036,0.683416612,0.655217439,0.711615784,0.678050091,0.666120867,0.689979315,0.773481124,0.760059629,0.786902619,0.459,,180486,0.440773718,0.477226283,81.83557671,,,81.54726977,82.12388364,,,,89.45277602,88.09103629,90.81451575,77.16287841,76.07149365,78.25426317,85.67501583,83.90308149,87.44695017,81.07595926,80.69485453,81.45706399,,,,227.7636139,2805,931622,219.0179577,236.5092701,,,,105.8817847,91.18342344,120.580146,408.4270134,369.8923882,446.9616386,202.6583805,177.7546281,227.5621329,244.0796227,231.8162204,256.343025,,,,28.92345032,92,318081,23.31638318,35.47204423,,,,16.06026981,8.017228826,28.736259,48.06613901,26.90225313,79.27778662,25.84332862,15.05469128,41.3776726,30.69564907,22.21459343,41.34683786,,,,3.688692563,81,21959,2.929354342,4.584708055,,,,,,,,,,4.047022548,2.505170743,6.186303861,3.174603175,2.141891431,4.531943428,,,,,,,0.08,,,0.068,0.093,0.124,,,0.106,0.143,0.078,,,0.066,0.091,214,634,296257,,,0.049,16750,,,,0.03204228,10363.88326,323444,,,17.43180677,175,1003912,14.84907414,20.01453941,,,,,,,33.23121657,22.73012754,46.91256252,12.23706414,7.367511989,19.10969148,22.04806107,18.08662188,26.00950026,,,,0.318,,,0.306,0.33,0.063713635,13515,212121,0.05537321,0.072054061,0.024144975,1832,75875,0.016996039,0.031293912,0.00068036,236,346875,,,1469.809322,0.918664012,4153.28,4521,,,0.045549709,805,17673,0.028248511,0.062850907,3.473859416,,,,,,3.911334769,2.993333189,2.940996055,3.5922273,3.493904294,,,,,,4.206461259,2.913833874,2.845097603,3.552848882,0.176777312,,,,,11753.05744,,,,,0.761508054,77057,101190,0.731175124,0.791840984,134735,,,128003.0851,141466.9149,137143,51455.85106,222830.1489,192642,179698.8511,205585.1489,100730,94262.59575,107197.4043,88309,83143.89362,93474.10638,135664,131270.9787,140057.0213,,,,,,0.197117061,10174,51614,,,62.88725055,,,,,0.234460237,,134735,,,8.796296296,152,17280,,,1.753700843,41,2337913,1.258486003,2.379093215,,,,,,,9.566631589,5.921895735,14.6236126,,,,,,,,,,6.662636762,118,1670508,5.422471422,7.902802102,7.063719539,,,,4.726893245,2.516871575,8.083131408,,,,,,,8.133569341,6.364017082,10.24288448,,,,2.75365338,46,1670508,2.016020361,3.672987721,,,,,,,9.461752443,5.295671017,15.60572176,,,,2.634019459,1.687665968,3.919212164,,,,4.833370617,113,2337913,3.942187507,5.724553728,,,,2.778639671,1.435763665,4.853724315,7.744416048,4.511407739,12.39956031,6.254726583,3.91980385,9.469731214,4.794249375,3.675723505,6.14601133,,,,,,,,,,,0.813529721,185859,228460,,,0.747,,,,,96.26234313,,,,,0.753359046,96103,127566,0.742996611,0.76372148,0.13711082,17241,125745,0.126859032,0.147362607,0.950833294,121294,127566,0.944782198,0.95688439,346875,,,,,0.207945225,72131,346875,,,0.17297009,59999,346875,,,0.097011892,33651,346875,,,0.004399279,1526,346875,,,0.206714234,71704,346875,,,0.001017658,353,346875,,,0.163684324,56778,346875,,,0.515096216,178674,346875,,,0.044523117,14601,327942,0.040035485,0.049010749,0.506306306,175625,346875,,,0.075315395,26011,345361,, -34,037,34037,NJ,Sussex County,2024,1,6625.150664,2014,396438,6135.106367,7115.194961,0,,,,2,4409.690764,1903.791481,8688.848739,1,8750.032063,6251.151191,11915.06018,,4852.704765,3601.771011,6397.686262,,6891.546695,6336.775996,7446.317394,,,,,2,,0.118,,,0.098,0.141,3.219960986,,,2.526378183,4.019707708,5.06743379,,,4.169378068,6.038942857,0.060643426,541,8921,0.055690562,0.06559629,0,,,,0.083682008,0.048574802,0.118789215,0.125541126,0.082813104,0.168269147,0.063694268,0.049255962,0.078132574,0.057146869,0.051755819,0.062537919,,,,,,,0.125,,,0.095,0.158,0.318,,,0.262,0.384,9,0.053458591,0.061,,,0.205,,,0.165,0.249,0.952565854,137380,144221,,,0.196592851,,,0.161641432,0.237169121,0.22,11,50,0.147965987,0.2985802,131.2,191,145543,,,3.489995347,105,30086,2.822441551,4.157549143,,,,,,,22.95918367,13.60706732,36.28540851,6.034009874,3.781481863,9.135563463,2.520557002,1.928026386,3.237760916,,,,,,,0.057264024,6765,118137,0.050115088,0.06441296,0.000453474,66,145543,,,2205.19697,0.000698228,102,146084,,,1432.196078,0.002211057,323,146084,,,452.2724458,2800,,,,,,810,2307,2153,2803,0.36,,,,,,0.3,0.37,0.31,0.36,0.52,,,,,,0.52,0.38,0.41,0.52,0.9544451,100295,105082,0.948829383,0.960060817,0.74721134,24986,33439,0.713204963,0.781217717,0.036914395,2865,77612,,,0.069,1912,,0.047553192,0.090446809,,,,,,,0.0359375,0,0.120490986,0.079369117,0.044962822,0.113775413,0.077789295,0.054476017,0.101102573,3.698464209,196026,53002,3.492849864,3.904078554,0.17218614,4825,28022,0.144398211,0.199974068,8.176277801,119,145543,,,66.19488112,469,708514,60.20395372,72.18580852,,,,,,,,,,33.69839933,21.11860745,51.01978155,72.25241506,65.46250829,79.04232183,,,,7.7,,,,,1,,,,,0.13163482,7130,54165,0.119501517,0.143768122,0.123112768,0.110662556,0.13556298,0.007292532,0.004364847,0.010220217,0.00341549,0.001990487,0.004840493,0.788692477,59831,75861,0.775441329,0.801943625,,,,0.60960961,0.49410044,0.725118779,0.560766182,0.424791222,0.696741142,0.683437702,0.60190519,0.764970215,0.714226516,0.694304717,0.734148315,0.582,,75861,0.556724694,0.607275306,78.37852475,,,77.93479027,78.82225923,,,,90.2587258,82.66576329,97.85168831,73.44672002,71.02846844,75.86497161,81.74968414,79.70700388,83.7923644,78.05154908,77.57042311,78.53267505,,,,341.0668185,2014,396438,325.1723121,356.9613248,,,,213.5794583,132.2090509,326.4788896,638.7954317,500.7136468,803.1893501,219.9317912,173.8469543,274.4848288,349.8607578,332.3457178,367.3757978,,,,31.05640825,38,122358,21.97736286,42.62734674,,,,,,,,,,,,,32.17837198,21.86364257,45.67463047,,,,3.345639132,29,8668,2.240627035,4.804895874,,,,,,,,,,,,,3.133456773,1.963720677,4.74409121,,,,,,,0.092,,,0.079,0.108,0.149,,,0.127,0.173,0.074,,,0.062,0.087,150.9,191,126611,,,0.061,8870,,,,0.053458591,7979.496567,149265,,,32.86130417,140,426033,27.41782145,38.30478689,,,,,,,,,,24.07897905,11.5468064,44.28209979,35.37062567,29.2189001,41.52235124,,,,0.317,,,0.3,0.333,0.066421892,5988,90151,0.056889977,0.075953807,0.029114095,863,29642,0.020773669,0.03745452,0.000479176,70,146084,,,2086.914286,0.907350378,1561.55,1721,,,0.048317515,336,6954,0.027318512,0.069316519,3.328965182,,,,,,3.77181345,3.136433545,3.049164877,3.351022743,3.25741909,,,,,,3.559415578,2.798968033,2.9560701,3.297923497,0.059561544,,,,,12469.28938,,,,,0.801268321,66587,83102,0.755115745,0.847420896,111308,,,104019.6596,118596.3404,,,,131250,51424.97872,211075.0213,134810,94671.10638,174948.8936,101243,94419.34043,108066.6596,110607,107272.0213,113941.9787,,,,,,0.135340696,2598,19196,,,53.26022676,,,,,0.251338628,,111308,,,9.230769231,60,6500,,,1.206382972,12,994709,0.623355686,2.107308273,,,,,,,,,,,,,,,,,,,8.000360637,62,708514,6.026966514,10.41356905,8.750709231,,,,,,,,,,,,,9.059804313,6.766295199,11.88072801,,,,4.939916501,35,708514,3.440832842,6.870228022,,,,,,,,,,,,,5.149022682,3.498511099,7.30862669,,,,8.545212721,85,994709,6.825612416,10.56628786,,,,,,,,,,,,,9.284909202,7.350950053,11.5717672,,,,,,,,,,,0.797533775,87960,110290,,,0.711,,,,,38.53885257,,,,,0.847607723,47761,56348,0.833207744,0.862007703,0.129119395,7170,55530,0.116339033,0.141899757,0.930308086,52421,56348,0.922190384,0.938425787,146084,,,,,0.191622628,27993,146084,,,0.19201966,28051,146084,,,0.026279401,3839,146084,,,0.003347389,489,146084,,,0.023383807,3416,146084,,,0.000540785,79,146084,,,0.115584184,16885,146084,,,0.820178801,119815,146084,,,0.00863909,1194,138209,0.0053276,0.01195058,0.4960023,72458,146084,,,0.486364676,70144,144221,, -34,039,34039,NJ,Union County,2024,1,6365.259919,6282,1577618,6134.331979,6596.187859,0,,,,2,2692.030043,2113.967938,3270.092149,,9916.256151,9266.229876,10566.28243,,5996.175256,5617.261297,6375.089215,,5336.500538,4988.931259,5684.069818,,,,,2,,0.155,,,0.133,0.177,3.357935288,,,2.798196294,4.054959516,4.396893362,,,3.776784584,5.154187854,0.073751178,3443,46684,0.071380239,0.076122117,0,,,,0.078059072,0.06819958,0.087918563,0.112642866,0.105916507,0.119369225,0.06789362,0.064430173,0.071357067,0.056459672,0.052637709,0.060281634,,,,0.10880829,0.077742745,0.139873835,0.125,,,0.102,0.15,0.282,,,0.244,0.327,9.4,0.009435385,0.067,,,0.249,,,0.216,0.286,0.99968193,575162,575345,,,0.166899214,,,0.142421806,0.195285605,0.202797203,29,143,0.161145265,0.247244634,393.1,2249,572114,,,11.5696516,1411,121957,10.96596318,12.17334002,,,,,,,10.69027589,9.461992751,11.91855903,23.53374629,22.0908946,24.97659797,1.343769155,1.017757635,1.741008803,,,,4.779788324,2.613154755,8.019672626,0.116660023,55898,479153,0.107128108,0.126191938,0.000615262,352,572114,,,1625.323864,0.000889763,507,569815,,,1123.895464,0.00236919,1350,569815,,,422.0851852,2737,,,,,,1320,4142,2662,2381,0.41,,,,,,0.36,0.37,0.34,0.44,0.49,,,,,,0.51,0.36,0.37,0.55,0.868028298,337913,389288,0.862842641,0.873213954,0.647931051,97881,151067,0.629397492,0.666464609,0.038722831,11206,289390,,,0.127,16578,,0.100787234,0.153212766,0.078947368,0,0.262545297,0.071866784,0.029649145,0.114084422,0.144982027,0.114176405,0.175787649,0.176895028,0.15632567,0.197464387,0.045404801,0.032201205,0.058608397,4.860226793,195872,40301,4.631799978,5.088653609,0.232436119,31010,133413,0.211172248,0.253699991,8.127750763,465,572114,,,55.84844009,1567,2805808,53.08320143,58.61367876,,,,18.49595959,12.38703442,26.56328325,74.6614665,67.66923929,81.65369371,41.86762219,37.68542984,46.04981454,64.14263286,59.41111479,68.87415094,,,,10.2,,,,,0,,,,,0.217893256,41805,191860,0.207845166,0.227941346,0.17599221,0.166903095,0.185081324,0.045580111,0.040187274,0.050972947,0.010867299,0.008627068,0.01310753,0.638945361,182286,285292,0.629420857,0.648469866,,,,0.652783261,0.608442331,0.697124191,0.699097694,0.67041296,0.727782427,0.614844707,0.591790621,0.637898793,0.74582562,0.732031233,0.759620006,0.417,,285292,0.402070681,0.431929319,79.44363119,,,79.20652011,79.68074226,,,,87.97079316,86.14748051,89.7941058,75.06110622,74.5219635,75.60024895,81.90303988,81.26784692,82.53823283,80.29377129,79.95837771,80.62916487,,,,326.3184561,6282,1577618,318.0878773,334.549035,,,,168.5865467,143.7130109,193.4600826,493.9583255,471.7150575,516.2015936,294.4444132,279.3097892,309.5790371,287.5872578,275.7791624,299.3953532,,,,35.36018859,204,576920,30.50780014,40.21257704,,,,,,,65.96364084,51.88458799,82.685995,36.65289274,29.23578271,45.37877526,19.1574959,13.41767461,26.52204947,,,,4.248868392,199,46836,3.658527575,4.839209209,,,,,,,8.743672342,6.889019314,10.94400978,4.117063492,3.27921809,5.103719633,2.419412225,1.675513299,3.380886081,,,,,,,0.102,,,0.089,0.117,0.14,,,0.123,0.16,0.1,,,0.088,0.115,584.8,2792,477396,,,0.067,38470,,,,0.009435385,5062.074335,536499,,,27.97162929,471,1683849,25.44545458,30.49780399,,,,,,,40.92315825,34.2390424,47.60727409,23.62238543,19.59249854,27.65227233,29.29488291,25.14026437,33.44950144,,,,0.365,,,0.353,0.376,0.14340208,49924,348140,0.131487186,0.155316973,0.046774194,6438,137640,0.036050789,0.057497598,0.000844134,481,569815,,,1184.64657,0.86745429,6167.6,7110,,,0.073615657,2159,29328,0.056900272,0.090331043,3.259345076,,,,,,3.989937577,3.001509162,2.957117217,3.66363728,3.190874034,,,,,,4.070746201,2.799357744,2.930780458,3.611094636,0.270067882,,,,,8741.5267,,,,,0.851795209,59595,69964,0.820949928,0.88264049,96483,,,91634.82979,101331.1702,148125,48511.7234,247738.2766,155883,142414.4043,169351.5957,81578,76028.04255,87127.95745,71103,67833.55319,74372.44681,127001,122924.9149,131077.0851,,,,,,0.402259041,38676,96147,,,59.47824956,,,,,0.277313102,,96483,,,7.610649292,271,35608,,,3.676072647,144,3917224,3.075647448,4.276497846,,,,,,,11.93177944,9.686795304,14.54101735,3.245714865,2.329181025,4.403178708,,,,,,,7.255165339,209,2805808,6.255492053,8.254838626,7.448834703,,,,,,,4.436557626,2.898106737,6.500584852,4.542572977,3.259828796,6.162513174,11.50847268,9.441589132,13.57535623,,,,3.991720032,112,2805808,3.252443137,4.730996928,,,,,,,9.716218243,7.358968813,12.58848771,2.609929695,1.672231202,3.883368505,2.816461216,1.913648751,3.99774188,,,,5.922561487,232,3917224,5.160444474,6.684678501,,,,,,,7.426923939,5.681008328,9.540194502,6.333102175,5.021756153,7.882093864,5.196221513,4.126549933,6.458428892,,,,,,,,,,,0.713887439,252991,354385,,,0.694,,,,,279.2097271,,,,,0.576666533,115331,199996,0.568559402,0.584773665,0.179197229,35180,196320,0.169284416,0.189110042,0.907933159,181583,199996,0.8999351,0.915931218,569815,,,,,0.231733106,132045,569815,,,0.1532006,87296,569815,,,0.207983293,118512,569815,,,0.009583812,5461,569815,,,0.062071023,35369,569815,,,0.001482937,845,569815,,,0.340345551,193934,569815,,,0.3763081,214426,569815,,,0.122260446,65642,536903,0.117101322,0.127419569,0.505309618,287933,569815,,,0,0,575345,, -34,041,34041,NJ,Warren County,2024,1,6444.111124,1414,295500,5882.838521,7005.383728,0,,,,2,4367.394679,2256.696562,7628.959584,1,9241.642472,6602.364874,12584.49403,,4208.820177,3045.944031,5669.253158,,6745.609433,6083.671929,7407.546937,,,,,2,,0.128,,,0.108,0.152,3.460159662,,,2.746449648,4.254855626,5.207180734,,,4.263093384,6.1574351,0.079506315,554,6968,0.073154275,0.085858355,0,,,,0.074380165,0.041320893,0.107439437,0.141327623,0.109732147,0.172923099,0.093173432,0.075869309,0.110477555,0.069561721,0.062491514,0.076631928,,,,,,,0.139,,,0.108,0.173,0.316,,,0.256,0.384,8.5,0.078191011,0.076,,,0.227,,,0.187,0.273,0.900093039,98679,109632,,,0.176723591,,,0.143445426,0.213421817,0.218181818,12,55,0.149651154,0.292800216,247.4,274,110731,,,6.751526619,157,23254,5.69541887,7.807634369,,,,,,,17.423771,11.57796929,25.18220034,12.70417423,9.156051341,17.17235293,4.666272888,3.694332189,5.815568291,,,,,,,0.069186795,6124,88514,0.05965488,0.07871871,0.000541854,60,110731,,,1845.516667,0.000712187,79,110926,,,1404.126582,0.002578295,286,110926,,,387.8531469,3381,,,,,,1062,1710,2741,3384,0.39,,,,,,0.33,0.3,0.38,0.39,0.52,,,,,,0.56,0.38,0.46,0.53,0.938395741,74381,79264,0.931294772,0.94549671,0.679685027,17177,25272,0.63707586,0.722294194,0.034520799,2034,58921,,,0.096,1998,,0.063829787,0.128170213,,,,0.039692702,0,0.169469086,0.097007224,0,0.215716253,0.121840386,0.068227144,0.175453629,0.080316183,0.054625699,0.106006668,4.247145735,164424,38714,3.784719437,4.709572034,0.180034894,3818,21207,0.135402202,0.224667586,8.669658903,96,110731,,,72.81930517,389,534199,65.58281791,80.05579242,,,,,,,73.0513551,44.62166552,112.8218931,50.69616701,33.68723481,73.27007649,77.6214179,69.27176156,85.97107425,,,,7.4,,,,,0,,,,,0.133979206,5670,42320,0.120608708,0.147349704,0.119551741,0.107220385,0.131883096,0.010727788,0.006533271,0.014922305,0.005434783,0.00186978,0.008999785,0.777099292,43014,55352,0.762232848,0.791965736,,,,0.739598278,0.612736052,0.866460504,0.607971746,0.458315699,0.757627792,0.563809113,0.496692513,0.630925713,0.764635766,0.742761903,0.786509629,0.553,,55352,0.52183851,0.58416149,78.93791369,,,78.42251599,79.45331138,,,,87.08526544,79.54904599,94.6214849,74.696732,72.11704631,77.2764177,83.94990652,80.99981624,86.89999679,78.59908284,78.02727109,79.1708946,,,,331.1270242,1414,295500,312.7678511,349.4861974,,,,257.5111411,166.647633,380.137243,494.0901448,390.557756,616.6468617,212.6676706,161.8924843,274.3258005,341.9989704,321.0590043,362.9389364,,,,35.55344869,33,92818,24.47335816,49.93026058,,,,,,,,,,,,,33.75838205,21.1561983,51.11059612,,,,5.469987045,38,6947,3.87088839,7.507984586,,,,,,,,,,,,,4.570747218,2.897461653,6.858365043,,,,,,,0.1,,,0.085,0.116,0.153,,,0.132,0.177,0.085,,,0.072,0.099,162.9,157,96355,,,0.076,8350,,,,0.078191011,8498.737336,108692,,,27.36131235,88,321622,21.9445726,33.70990207,,,,,,,,,,,,,29.80812978,23.48541593,37.30931934,,,,0.303,,,0.287,0.317,0.079235944,5347,67482,0.067321051,0.091150838,0.037977528,845,22250,0.026062635,0.049892422,0.000622036,69,110926,,,1607.623188,0.89444661,1147.575,1283,,,0.055009823,308,5599,0.017604438,0.092415208,3.250912161,,,,,,3.802664972,3.182853867,3.011055455,3.325825483,3.183070533,,,,,,3.658088979,2.971442308,2.902063706,3.279427019,0.075068936,,,,,12440.60291,,,,,0.749914765,59388,79193,0.701892899,0.797936632,97729,,,92855.80851,102602.1915,81382,58853.31915,103910.6809,91579,66904.44681,116253.5532,91692,79858.12766,103525.8723,82612,64515.65957,100708.3404,93596,90440.93617,96751.06383,,,,,,0.229004666,3534,15432,,,45.92684284,,,,,0.286363311,,97729,,,9.53346856,47,4930,,,2.006192447,15,747685,1.122850684,3.30890935,,,,,,,,,,,,,,,,,,,10.03858614,62,534199,7.562436902,13.06659971,11.60616175,,,,,,,,,,,,,10.95005077,8.016813397,14.60583322,,,,4.492707774,24,534199,2.878562643,6.684793044,,,,,,,,,,,,,5.143587933,3.223459173,7.787453944,,,,10.03096224,75,747685,7.889988124,12.57389803,,,,,,,,,,13.53546291,6.490780585,24.89219822,9.601552141,7.29086109,12.41223267,,,,,,,,,,,0.744209109,60787,81680,,,0.722,,,,,82.30623297,,,,,0.727676358,32287,44370,0.712169478,0.743183238,0.145303485,6296,43330,0.128225183,0.162381787,0.894410638,39685,44370,0.882896628,0.905924648,110926,,,,,0.189973496,21073,110926,,,0.198357464,22003,110926,,,0.061861061,6862,110926,,,0.004606675,511,110926,,,0.032030363,3553,110926,,,0.000919532,102,110926,,,0.123947497,13749,110926,,,0.766646233,85041,110926,,,0.018502952,1937,104686,0.014313145,0.022692758,0.503029046,55799,110926,,,0.432200452,47383,109632,, -35,000,35000,NM,New Mexico,2024,,11557.92862,35809,5854311,11386.64325,11729.21398,0,24655.31956,23849.23294,25461.40619,,4355.420339,3489.598976,5221.241701,,15788.53597,14261.49859,17315.57335,,10952.22868,10723.86586,11180.5915,,9035.948625,8766.546535,9305.350715,,10969.79865,5260.444847,20173.8503,1,,0.181,,,0.169,0.195,3.348026507,,,3.099523437,3.596529577,4.652427637,,,4.356031857,4.948823417,0.092708621,14767,159284,0.091284315,0.094132928,0,0.082657838,0.078580079,0.086735596,0.109730114,0.098185923,0.121274305,0.147590361,0.134100881,0.161079842,0.095923421,0.09399999,0.097846853,0.084602603,0.081982319,0.087222887,,,,0.101178383,0.089263744,0.113093022,0.142,,,0.13,0.154,0.354,,,0.337,0.372,4.5,0.130399276,0.135,,,0.222,,,0.208,0.237,0.754106451,1596837,2117522,,,0.157855653,,,0.144167218,0.172581694,0.287367406,596,2074,0.27653096,0.298273509,588,12441,2115877,,,23.98473869,11479,478596,23.54596656,24.42351083,27.41418126,25.96566914,28.86269338,2.271006813,1.271065274,3.745680374,20.09198741,17.03548372,23.1484911,27.46415139,26.86160068,28.06670209,15.70918823,14.9754686,16.44290785,,,,14.27895981,12.00142948,16.55649014,0.125888138,207637,1649377,0.118739202,0.133037075,0.0007439,1574,2115877,,,1344.267471,0.000696527,1472,2113344,,,1435.695652,0.004455025,9415,2113344,,,224.4656399,1905,,,,,2811,1758,2659,2015,1732,0.35,,,,,0.22,0.31,0.34,0.31,0.37,0.37,,,,,0.48,0.4,0.25,0.3,0.38,0.871219771,1249249,1433908,0.868238456,0.874201087,0.631568592,343459,543819,0.620272154,0.64286503,0.040287258,38153,947024,,,0.229,103193,,0.213510638,0.244489362,0.396926617,0.377482768,0.416370467,0.153921706,0.105464175,0.202379237,0.248402896,0.1890946,0.307711193,0.264599003,0.252951748,0.276246259,0.136736686,0.126385371,0.147088002,5.243384174,120666,23013,5.127274748,5.3594936,0.30451594,143649,471729,0.29338978,0.315642101,7.996684117,1692,2115877,,,121.1232768,12721,10502523,119.0184175,123.228136,183.789327,175.0499662,192.5286878,37.63666054,28.85581182,48.24850023,146.1278644,129.2801812,162.9755476,107.0411107,104.2251858,109.8570355,127.6156546,124.0518587,131.1794505,,,,4.5,,,,,0.696969697,,,,,0.166205196,131760,792755,0.16174974,0.170660651,0.127747367,0.123385181,0.132109554,0.034115206,0.032134969,0.036095442,0.014518988,0.013201862,0.015836113,0.761905184,687000,901687,0.756315427,0.767494942,0.776325273,0.760461022,0.792189524,0.714357012,0.671018977,0.757695048,0.704740039,0.674166375,0.735313703,0.779129196,0.769085614,0.789172779,0.746203704,0.740491414,0.751915993,0.279,,901687,0.271655166,0.286344834,75.25064276,,,75.11466747,75.38661804,66.01970213,65.5440405,66.49536375,86.46503644,84.79193837,88.1381345,71.73431594,70.63154842,72.83708346,75.54272499,75.34254102,75.74290897,77.23628495,77.02310975,77.44946016,,,,497.8565302,35809,5854311,492.4234784,503.289582,969.6171161,942.7515847,996.4826475,202.9913087,176.5495513,229.4330661,623.1757122,578.7268633,667.6245611,487.2716534,479.319227,495.2240798,414.507268,406.5940747,422.4204613,469.2863716,282.5410516,732.8488008,58.00753064,1234,2127310,54.77097655,61.24408473,80.63873378,68.587388,92.69007957,66.2483925,38.59212996,106.070094,123.1946738,90.51881253,163.8227998,54.35398554,50.34169007,58.366281,53.12972306,46.72070257,59.53874355,,,,5.514526069,902,163568,5.154643347,5.874408791,5.688344364,4.595079774,6.781608953,,,,11.42421935,7.707872819,16.30878347,5.77808246,5.286617515,6.269547405,4.373926045,3.761576399,4.986275691,,,,9.387755102,5.951031444,14.086242,0.10549479,,,0.095818131,0.116023295,0.148409178,,,0.136279802,0.161416356,0.118,,,0.108,0.129,224.7,4017,1787773,,,0.135,285220,,,,0.130399276,268515.45,2059179,,,38.5344258,2435,6319025,37.00384775,40.06500385,32.60579771,27.85560079,37.35599463,10.87053196,5.42653039,19.45038444,64.33042747,50.85053337,80.28728489,42.09317472,39.82322444,44.363125,34.0952728,31.70860371,36.4819419,,,,0.308407917,,,0.289366342,0.328123948,0.149167754,178339,1195560,0.139635839,0.158699669,0.068718007,32943,479394,0.059186092,0.078249921,0.001302202,2752,2113344,,,767.9302326,0.766372171,19265.83,25139,,,0.100426269,11709,116593,0.091076638,0.1097759,,,,,,,,,,,2.69802957,,,,,,3.587695116,2.493595648,2.582335383,3.110175906,0.245594391,,,,,-5336.632,,,,,0.839894618,44632,53140,0.817303325,0.862485911,59842,,,58346.68085,61337.31915,42232,40236.25532,44227.74468,76240,68800.34043,83679.65957,48987,44302.06383,53671.93617,52123,51210.31915,53035.68085,69425,68276.40426,70573.59575,,,,,,0.747890349,236812,316640,,,53.17165456,,,,,0.304301013,,,,,11.18403147,,,,,9.939567024,1458,14668647,9.429361947,10.4497721,17.22354841,14.95272917,19.49436765,,,,28.41706044,22.46250704,35.4657775,11.40754835,10.62722103,12.18787567,5.647517183,5.016794755,6.27823961,,,,24.26271402,2586,10502523,23.30159281,25.22383523,24.62265496,29.74343831,26.23235474,33.25452188,14.81119593,9.58502507,21.86424697,22.24381968,16.0979626,29.96227914,17.57114461,16.40432181,18.73796741,30.21789103,28.38007234,32.05570972,,,,22.47079107,2360,10502523,21.5641854,23.37739674,15.46902517,12.93359883,18.00445152,,,,46.51821289,37.50024511,57.05045861,20.17023991,18.94787382,21.392606,27.04643593,25.40578622,28.68708564,,,,18.80882402,2759,14668647,18.10697796,19.51067007,44.89033432,41.22429035,48.55637829,5.752568743,3.06300058,9.837067747,22.58791984,17.31802862,28.95669381,17.61847906,16.64871774,18.58824038,15.0172616,13.98876025,16.04576295,,,,14.74370504,,222400,,,1331,1948,0.611328532,923965,1511405,,,,,,,,77.7019491,,,,,0.686692042,558179,812852,0.681386115,0.69199797,0.136967832,106464,777292,0.132698467,0.141237197,0.817193044,664257,812852,0.81219056,0.822195527,2113344,,,,,0.217434076,459513,2113344,,,0.190883737,403403,2113344,,,0.019701951,41637,2113344,,,0.111741865,236149,2113344,,,0.019517409,41247,2113344,,,0.001663241,3515,2113344,,,0.501510876,1059865,2113344,,,0.357105611,754687,2113344,,,0.038869823,77605,1996536,0.03704562,0.040694025,0.50166608,1060193,2113344,,,0.254528642,538970,2117522,, -35,001,35001,NM,Bernalillo County,2024,1,10664.86006,10644,1896681,10378.51122,10951.2089,0,21890.24456,20090.95809,23689.53103,,4418.252849,3181.066537,5655.439161,,16842.61474,14621.17341,19064.05607,,11323.53162,10919.73222,11727.33102,,8208.443217,7777.927287,8638.959146,,,,,2,,0.167,,,0.144,0.192,3.593732371,,,2.998630372,4.257959677,5.347513744,,,4.666380312,6.095976852,0.095006065,4621,48639,0.092400138,0.097611992,0,0.08126765,0.071780879,0.09075442,0.118149466,0.101271066,0.135027867,0.162273476,0.141532861,0.183014091,0.097676779,0.094173707,0.101179851,0.082888272,0.078328073,0.087448471,,,,0.108863199,0.089914904,0.127811493,0.136,,,0.112,0.161,0.315,,,0.278,0.352,7.7,0.060333508,0.119,,,0.211,,,0.179,0.245,0.951453483,643605,676444,,,0.155406935,,,0.133939495,0.180105044,0.232342007,125,538,0.210841516,0.254391782,688.8,4645,674393,,,17.25603825,2537,147021,16.5845523,17.92752421,26.56836834,22.8004258,30.33631088,,,,18.3047029,14.12718325,23.33084647,20.57302199,19.6558765,21.49016748,8.134287603,7.186562515,9.082012691,,,,13.02681992,9.699323075,17.12786242,0.116519434,63391,544038,0.108179009,0.12485986,0.001061696,716,674393,,,941.8896648,0.000880287,592,672508,,,1135.993243,0.005390271,3625,672508,,,185.5194483,1718,,,,,1984,1564,1961,1813,1648,0.38,,,,,0.19,0.32,0.36,0.32,0.41,0.38,,,,,0.35,0.39,0.25,0.29,0.41,0.90166325,423550,469743,0.896497675,0.906828825,0.708380653,133483,188434,0.688147495,0.728613812,0.036208325,12195,336801,,,0.17,22707,,0.136638298,0.203361702,0.292788217,0.226171028,0.359405407,0.110415481,0.049521899,0.171309063,0.32346673,0.236263802,0.410669658,0.25423823,0.231023218,0.277453241,0.111293173,0.092577499,0.130008847,5.182876041,126939,24492,4.924506465,5.441245617,0.319349442,45240,141663,0.296294031,0.342404854,7.962716102,537,674393,,,129.3260828,4385,3390654,125.4982109,133.1539547,179.2911839,157.5809571,201.0014108,43.74796684,31.10908106,59.80491084,190.1423777,161.2168728,219.0678826,124.5098521,119.2221134,129.7975908,132.9542449,126.6690269,139.2394628,,,,8.1,,,,,1,,,,,0.177668514,48420,272530,0.169118553,0.186218474,0.153903457,0.145672799,0.162134115,0.025611859,0.022326238,0.028897481,0.008127546,0.006280122,0.009974969,0.749925194,240597,320828,0.739792662,0.760057725,0.753718091,0.710497899,0.796938284,0.717874675,0.660432304,0.775317047,0.683520413,0.632942526,0.734098301,0.778084319,0.762762204,0.793406434,0.748793319,0.734904551,0.762682086,0.255,,320828,0.242790867,0.267209133,75.99284335,,,75.75746464,76.22822207,67.99646848,66.7963505,69.19658646,86.18233592,83.93261919,88.43205266,70.20816621,68.75222098,71.66411144,75.19202082,74.84218689,75.54185475,77.99435134,77.63687974,78.35182294,,,,458.6134064,10644,1896681,449.5463602,467.6804527,859.2752129,795.6972799,922.8531458,192.8952992,157.3339586,228.4566398,681.359144,612.623198,750.09509,493.8802281,479.9258494,507.8346067,379.1000372,366.2909332,391.9091413,,,,59.23417347,382,644898,53.29403289,65.17431404,75.93515798,48.13637637,113.9400208,82.1385902,41.00328829,146.9686269,66.88149815,33.3870029,119.6694748,59.42899453,51.97207355,66.88591551,52.10097168,41.31283025,64.84416923,,,,5.436194664,272,50035,4.790143937,6.08224539,,,,,,,,,,6.332696526,5.404973721,7.26041933,3.973963686,3.017597237,5.137269595,,,,,,,0.109,,,0.095,0.125,0.162,,,0.143,0.184,0.107,,,0.094,0.122,292.3,1686,576754,,,0.119,80330,,,,0.060333508,39974.81039,662564,,,53.31223774,1085,2035180,50.13998257,56.48449291,66.58991896,50.69133161,85.89614384,,,,111.3999257,85.00987922,143.3937865,56.59716121,52.00289197,61.19143045,44.49434519,39.77862706,49.21006331,,,,0.323,,,0.311,0.334,0.134922552,54737,405692,0.124199148,0.145645956,0.067520508,9869,146163,0.054414125,0.080626891,0.00190481,1281,672508,,,524.9867291,0.749400716,5445.895,7267,,,0.081748338,2841,34753,0.064826458,0.098670219,,,,,,,,,,,2.639624797,,,,,,3.643901107,2.287823222,2.476060844,3.157807655,0.13241131,,,,,-5150.83,,,,,0.859530634,47979,55820,0.826921856,0.892139412,65034,,,62152.97872,67915.02128,51037,45892.14894,56181.85106,74857,65192.82979,84521.17021,50700,42209.44681,59190.55319,54378,52089.14894,56666.85106,72432,70326.6383,74537.3617,,,,,,0.690236396,62572,90653,,,44.08698912,,,,,0.288464496,,65034,,,12.26606663,447,36442,,,12.0987494,574,4744292,11.108965,13.08853381,15.29067072,10.3892689,21.70388655,,,,35.57217429,25.74375891,47.91548532,15.50025498,13.91870933,17.08180062,6.289548957,5.140002167,7.439095748,,,,23.50688223,830,3390654,21.87171973,25.14204474,24.4790533,22.30105121,15.35101752,31.31896734,17.72143928,9.918555042,29.22881911,20.35524379,11.85767962,32.59071715,19.10114178,17.01262819,21.18965536,28.65982231,25.61808235,31.70156226,,,,24.59702465,834,3390654,22.92764305,26.26640625,17.1079374,11.07135505,25.25469045,,,,53.83549248,39.55629494,71.58979226,25.48652371,23.0941808,27.87886662,24.13131146,21.45362514,26.80899778,,,,16.27218561,772,4744292,15.12431401,17.42005721,37.98005307,29.97326394,47.4685498,,,,29.78135522,20.85849506,41.22994887,17.8525972,16.15528,19.5499144,12.1962558,10.59548128,13.79703033,,,,7.371512482,,68100,,,228,274,0.637410938,317590,498250,,,0.698,,,,,168.4968173,,,,,0.633739483,178141,281095,0.624536622,0.642942344,0.162848406,44363,272419,0.154349548,0.171347265,0.864935342,243129,281095,0.857047778,0.872822906,672508,,,,,0.20236934,136095,672508,,,0.181037252,121749,672508,,,0.026984066,18147,672508,,,0.067404403,45330,672508,,,0.031156507,20953,672508,,,0.001406675,946,672508,,,0.50908242,342362,672508,,,0.371055809,249538,672508,,,0.033479415,21421,639826,0.03036063,0.0365982,0.507201401,341097,672508,,,0.039814087,26932,676444,, -35,003,35003,NM,Catron County,2024,1,8517.173712,76,8981,5047.816932,13460.80644,1,,,,2,,,,2,,,,2,,,,2,6742.756206,3484.080524,11778.23814,1,,,,2,,0.205,,,0.178,0.234,4.255783593,,,3.384913779,5.197566849,5.698121031,,,4.589368201,6.869042211,0.1,10,100,0.0412,0.1588,1,,,,,,,,,,,,,,,,,,,,,,0.21,,,0.171,0.251,0.374,,,0.294,0.456,2.4,0.440987639,0.182,,,0.257,,,0.208,0.307,0.633137748,2266,3579,,,0.102379308,,,0.078351143,0.128965557,0.625,5,8,0.470053641,0.740226608,187.6,7,3731,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.102262017,217,2122,0.083198187,0.121325847,,0,3731,,,,0.000261301,1,3827,,,3827,0.000522603,2,3827,,,1913.5,1301,,,,,,,,,1255,0.26,,,,,,,,0.5,0.24,0.16,,,,,,,,0.09,0.16,0.965128205,2823,2925,0.9352631,0.994993311,0.30641822,148,483,0.072910527,0.539925912,0.051056338,58,1136,,,0.357,152,,0.215212766,0.498787234,,,,,,,,,,,,,0.383647799,0.171680941,0.595614657,4.366082932,91500,20957,2.677554118,6.054611745,0.428909953,181,422,0.097929583,0.759890322,8.040739748,3,3731,,,171.7832207,31,18046,116.7183641,243.8325696,,,,,,,,,,,,,170.3703704,108.0002003,255.6392066,,,,3.7,,,,,1,,,,,0.100323625,155,1545,0.033923706,0.166723543,0.064892927,0,0.129922431,0.002588997,0,0.021014497,0.03236246,0,0.069025749,0.505723205,486,961,0.402872159,0.608574251,,,,,,,,,,,,,,,,0.266,,961,0.067965292,0.464034708,79.6221577,,,76.39632975,82.84798565,,,,,,,,,,,,,80.85838398,77.68304169,84.03372627,,,,427.6864518,76,8981,301.1307314,589.5094364,,,,,,,,,,,,,371.9577578,242.9751566,545.0042961,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.14,,,0.121,0.16,0.189,,,0.163,0.216,0.12,,,0.102,0.139,,,,,,0.182,650,,,,0.440987639,1642.678955,3725,,,,,,,,,,,,,,,,,,,,,,,,,,0.333,,,0.32,0.346,0.113946588,192,1685,0.0901168,0.137776375,0.064102564,30,468,0.043847245,0.084357883,0.001045205,4,3827,,,956.75,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.062342642,,,,,-3595.7395,,,,,0.609837021,27203,44607,0.386067869,0.833606174,44247,,,37573.46809,50920.53192,,,,,,,,,,21108,5270.723404,36945.2766,49235,33049.80851,65420.19149,,,,,,0.623616236,169,271,,,,,,,,0.353108685,,44247,,,,,40,,,,,,,,,,,,,,,,,,,,,,,,,,51.86401455,11,18046,20.85202375,106.8596921,60.95533636,,,,,,,,,,,,,,,,,,,55.41394215,10,18046,26.57313918,101.9082126,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,200,,,0,-888,0.774043261,2326,3005,,,0.232,,,,,0.004362896,,,,,0.873213176,1405,1609,0.800612107,0.945814245,0.046604527,70,1502,0,0.107235869,0.617153512,993,1609,0.53564806,0.698658963,3827,,,,,0.116017769,444,3827,,,0.435066632,1665,3827,,,0.008361641,32,3827,,,0.044159916,169,3827,,,0.003396917,13,3827,,,0.000261301,1,3827,,,0.19597596,750,3827,,,0.735563104,2815,3827,,,0.003857812,14,3629,0,0.0217688,0.478181343,1830,3827,,,1,3579,3579,, -35,005,35005,NM,Chaves County,2024,1,12632.04793,1277,180744,11650.24747,13613.84839,0,,,,2,,,,2,34629.88035,20523.86182,54730.1408,1,12657.23231,11394.24838,13920.21625,,11879.81612,10293.39839,13466.23385,,,,,2,,0.212,,,0.18,0.246,4.145160514,,,3.329639383,5.010771646,5.237028647,,,4.303542762,6.223538327,0.089417989,507,5670,0.081990594,0.096845385,0,,,,,,,,,,0.088917862,0.079909483,0.097926241,0.089798412,0.075948888,0.103647936,,,,,,,0.177,,,0.146,0.214,0.409,,,0.347,0.475,6.2,0.163339862,0.14,,,0.289,,,0.242,0.341,0.780499409,50855,65157,,,0.143634414,,,0.114836365,0.176187933,0.2,10,50,0.129217574,0.278985135,526.1,340,64629,,,35.14821537,581,16530,32.29015575,38.00627499,,,,,,,,,,37.25151253,33.73460178,40.76842329,32.3556797,26.97670875,37.73465065,,,,,,,0.148677178,7817,52577,0.128421859,0.168932497,0.000618917,40,64629,,,1615.725,0.000563433,36,63894,,,1774.833333,0.001486838,95,63894,,,672.5684211,3560,,,,,,,,3665,3528,0.24,,,,,,,0.26,0.21,0.25,0.33,,,,,0.38,0.25,0.23,0.29,0.34,0.812402692,33917,41749,0.792668246,0.832137138,0.536572184,8935,16652,0.483015256,0.590129111,0.042467833,1175,27668,,,0.229,3568,,0.145595745,0.312404255,,,,,,,,,,0.332178086,0.278342971,0.386013201,0.205515778,0.136281623,0.274749933,5.730847969,106376,18562,4.938581373,6.523114565,0.290073964,4667,16089,0.237774993,0.342372934,8.819570162,57,64629,,,119.3162499,386,323510,107.4130969,131.2194028,,,,,,,274.7833439,146.3105578,469.8878867,98.12129712,83.94344505,112.2991492,151.0623357,129.293941,172.8307303,,,,6.1,,,,,0,,,,,0.152072758,3595,23640,0.129099904,0.175045613,0.108431163,0.087279812,0.129582515,0.026226734,0.018051414,0.034402055,0.023265651,0.012981192,0.033550111,0.83947338,21807,25977,0.820117468,0.858829292,,,,,,,,,,0.838482716,0.804997938,0.871967495,0.849423468,0.80864254,0.890204396,0.17,,25977,0.137413256,0.202586744,72.93632088,,,72.198198,73.67444376,,,,,,,,,,73.22905421,72.16521038,74.29289805,73.27994283,72.15632385,74.40356181,,,,603.9189669,1277,180744,569.6496131,638.1883206,,,,,,,1148.076709,768.8849907,1648.829663,592.0148585,544.1865935,639.8431235,600.9334211,548.3123602,653.554482,,,,63.41489193,48,75692,46.75713526,84.0789465,,,,,,,,,,73.77979569,52.46464716,100.8594095,,,,,,,7.324135582,43,5871,5.300513237,9.865562564,,,,,,,,,,8.369261983,5.761014855,11.75355548,,,,,,,,,,0.132,,,0.114,0.152,0.174,,,0.151,0.199,0.13,,,0.112,0.149,135.2,72,53238,,,0.14,9120,,,,0.163339862,10722.44525,65645,,,30.41942719,59,193955,23.15667739,39.23884476,,,,,,,,,,22.82583885,14.91059577,33.44514256,37.58770464,24.77053421,54.68813683,,,,0.356,,,0.343,0.368,0.179093447,6543,36534,0.152880681,0.205306213,0.082890856,1405,16950,0.057869579,0.107912132,0.001064263,68,63894,,,939.6176471,0.686116022,620.935,905,,,0.07833416,316,4034,0.028747164,0.127921155,,,,,,,,,,,2.895206325,,,,,,,,2.767139304,3.248031752,0.070663377,,,,,-10571.508,,,,,0.757259218,36537,48249,0.647693253,0.866825183,47855,,,41048.02128,54661.97872,,,,110438,25950.68085,194925.3192,,,,46376,42703.82979,50048.17021,58101,51501.34043,64700.65957,,,,,,0.864768046,9656,11166,,,54.2068866,,,,,0.327635566,,47855,,,9.915014164,42,4236,,,16.49961721,75,454556,12.97799561,20.68241305,,,,,,,,,,19.95525418,14.9035383,26.16866094,10.28307007,6.094399029,16.25168401,,,,23.92046671,77,323510,18.74982745,30.0763956,23.80142809,,,,,,,,,,16.23518912,10.78816526,23.46436858,34.51983562,24.54697765,47.18975167,,,,29.67450774,96,323510,24.03644654,36.23765293,,,,,,,,,,25.0635922,18.41578482,33.32926433,36.74489246,26.8019767,49.16755712,,,,16.939607,77,454556,13.36847294,21.17160229,,,,,,,,,,16.50146019,11.94218856,22.22735858,17.13845011,11.56324032,24.4662032,,,,24.25,,8000,,,44,150,0.511696306,22443,43860,,,0.612,,,,,44.8428216,,,,,0.673883162,15688,23280,0.642967247,0.704799076,0.134854488,2961,21957,0.11033041,0.159378567,0.750128866,17463,23280,0.720511867,0.779745865,63894,,,,,0.250148684,15983,63894,,,0.162487871,10382,63894,,,0.016026544,1024,63894,,,0.027796037,1776,63894,,,0.013052869,834,63894,,,0.002801515,179,63894,,,0.603609103,38567,63894,,,0.350361536,22386,63894,,,0.041575312,2522,60661,0.032678553,0.050472071,0.496447241,31720,63894,,,0.250564022,16326,65157,, -35,006,35006,NM,Cibola County,2024,1,15504.27888,593,74673,13779.79431,17228.76345,0,22943.45364,19642.29673,26244.61056,,,,,2,,,,2,11380.08751,9145.732712,13614.44231,,10469.05909,6382.867022,14555.25116,,,,,2,,0.253,,,0.223,0.286,4.620405033,,,3.799317988,5.516635009,5.693690751,,,4.760415526,6.700296127,0.107214429,214,1996,0.093641424,0.120787434,0,0.096952909,0.079330005,0.114575812,,,,,,,0.124183007,0.098054287,0.150311726,0.106995885,0.068130479,0.14586129,,,,,,,0.226,,,0.191,0.262,0.381,,,0.325,0.44,4.7,0.21920998,0.183,,,0.292,,,0.25,0.339,0.530877374,14425,27172,,,0.149399703,,,0.120166116,0.181017903,0.27631579,21,76,0.217092031,0.337457223,555.5,151,27184,,,30.14990736,179,5937,25.733028,34.56678673,32.07671958,26.01205872,39.13087762,,,,,,,30.19970775,23.15394276,38.71466239,25.2764613,14.4476816,41.04738957,,,,,,,0.118317565,2076,17546,0.100445225,0.136189906,0.000478223,13,27184,,,2091.076923,0.000667904,18,26950,,,1497.222222,0.003710575,100,26950,,,269.5,1996,,,,,2693,,,2205,485,0.2,,,,,0.11,0.23,,0.33,0.22,0.31,,,,,0.4,0.25,0.35,0.26,0.24,0.842162515,15484,18386,0.812310031,0.872014999,0.560215202,4061,7249,0.472436228,0.647994177,0.054712362,447,8170,,,0.384,2383,,0.287489362,0.480510638,0.388782051,0.323186638,0.454377465,,,,,,,0.242502777,0.114789537,0.370216016,0.341753343,0.143831411,0.539675275,5.181392598,105146,20293,3.690299062,6.672486135,0.3387927,2172,6411,0.247610265,0.429975135,4.414361389,12,27184,,,130.0331809,174,133812,110.7119125,149.3544493,129.970427,101.1247501,164.4858937,,,,,,,121.9512195,93.7106655,156.0285855,155.6140771,110.656821,212.7295661,,,,4.2,,,,,1,,,,,0.169441142,1425,8410,0.132930905,0.205951378,0.065441177,0.040460006,0.090422347,0.077288942,0.056524727,0.098053156,0.039833532,0.020943287,0.058723776,0.764646008,6761,8842,0.706724599,0.822567416,0.724803862,0.68381117,0.765796555,,,,,,,0.783808096,0.647462089,0.920154103,0.805434783,0.690084883,0.920784682,0.283,,8842,0.206568024,0.359431976,71.54690335,,,70.34992203,72.74388467,66.45963036,64.52328011,68.39598062,,,,,,,74.77196105,72.9173341,76.62658799,75.04376724,72.13357485,77.95395964,,,,673.2718725,593,74673,616.8040365,729.7397085,963.7456868,852.1505814,1075.340792,,,,,,,529.6365362,448.8610568,610.4120155,468.1487023,363.3218037,572.9756008,,,,47.39682077,13,27428,25.23681089,81.05000699,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.153,,,0.134,0.172,0.186,,,0.165,0.211,0.153,,,0.134,0.173,444.2,101,22737,,,0.183,4990,,,,0.21920998,5965.361172,27213,,,24.93361425,20,80213,15.23009934,38.50794498,,,,,,,,,,45.04214658,24.62496067,75.57306841,,,,,,,0.374,,,0.362,0.384,0.149381698,1812,12130,0.124360422,0.174402975,0.050868269,290,5701,0.034187418,0.06754912,0.001632653,44,26950,,,612.5,0.72,195.84,272,,,,,,,,,,,,,,,,,,2.727999799,,,,,,,,2.918199518,2.895578453,0.090730363,,,,,-5925.545,,,,,0.705379647,35822,50784,0.545910348,0.864848947,45674,,,39597.40426,51750.59575,40789,37325.34043,44252.65957,,,,83523,51040.61702,116005.383,55239,33748.10638,76729.89362,60473,51308.06383,69637.93617,,,,,,0.99905601,3175,3178,,,84.1089465,,,,,0.304111749,,45674,,,6.432748538,11,1710,,,10.60287974,20,188628,6.476514402,16.37528782,,,,,,,,,,,,,,,,,,,30.38486643,38,133812,21.39375005,41.8815359,28.398051,31.26895946,17.87291208,50.77883116,,,,,,,28.31893823,15.48222705,47.5143664,,,,,,,18.68292829,25,133812,12.09060611,27.57968769,,,,,,,,,,19.35733643,9.282595231,35.5988309,,,,,,,29.15791929,55,188628,21.96573519,37.95303983,48.31436547,33.8387876,66.88744697,,,,,,,15.17743805,7.57652239,27.15662911,,,,,,,10,,2800,,,15,13,0.446937751,8903,19920,,,0.39,,,,,17.62259716,,,,,0.710610537,5773,8124,0.673698813,0.747522261,0.097180328,741,7625,0.062370602,0.131990054,0.678114229,5509,8124,0.62747354,0.728754919,26950,,,,,0.2367718,6381,26950,,,0.176141002,4747,26950,,,0.011428571,308,26950,,,0.453951763,12234,26950,,,0.007235622,195,26950,,,0.001187384,32,26950,,,0.383710575,10341,26950,,,0.177476809,4783,26950,,,0.034059251,868,25485,0.014987046,0.053131455,0.486567718,13113,26950,,,0.633004564,17200,27172,, -35,007,35007,NM,Colfax County,2024,1,12985.19211,258,31971,10137.82226,15832.56197,0,,,,2,,,,2,,,,2,15273.58921,11260.67707,19286.50136,,10932.87488,6675.485838,15190.26392,,,,,2,,0.194,,,0.167,0.223,3.738564604,,,2.992378373,4.641488695,5.093829335,,,4.101125013,6.243649481,0.144257703,103,714,0.118485712,0.170029694,0,,,,,,,,,,0.152941177,0.118721129,0.187161224,0.12406015,0.08444434,0.163675961,,,,,,,0.166,,,0.135,0.199,0.379,,,0.307,0.457,6.2,0.146350618,0.149,,,0.252,,,0.208,0.3,0.797448938,9878,12387,,,0.133677108,,,0.105237605,0.166130013,0.363636364,8,22,0.250508545,0.473251594,380,47,12369,,,24.29350521,49,2017,17.97246889,32.11730223,,,,,,,,,,31.05095541,22.08026472,42.44767824,14.99250375,7.1894883,27.57174819,,,,,,,0.107847744,918,8512,0.089975404,0.125720085,0.000404236,5,12369,,,2473.8,0.000408297,5,12246,,,2449.2,0.010289074,126,12246,,,97.19047619,1771,,,,,,,,1765,1514,0.33,,,,,,,,0.32,0.34,0.39,,,,,,,,0.39,0.38,0.905339543,8359,9233,0.865129471,0.945549615,0.604816423,1532,2533,0.480069124,0.729563722,0.038893044,208,5348,,,0.263,522,,0.160531915,0.365468085,,,,,,,,,,0.381435823,0.252581397,0.510290249,0.231884058,0.103477987,0.360290129,3.917555517,89618,22876,3.275509724,4.559601309,0.265466297,575,2166,0.171196459,0.359736136,14.55251031,18,12369,,,127.2285653,77,60521,100.4067941,159.013877,,,,,,,,,,134.2867694,95.93643684,182.8604659,119.9590728,83.07514513,167.6307804,,,,4,,,,,1,,,,,0.121110177,720,5945,0.081892859,0.160327494,0.096108291,0.059732532,0.13248405,0.021867115,0.00272327,0.04101096,0.004205215,0,0.010462571,0.721155789,3569,4949,0.675320371,0.766991207,,,,,,,,,,0.74019819,0.66226179,0.818134591,0.702879581,0.632736707,0.773022456,0.161,,4949,0.108049055,0.213950946,75.32588149,,,73.20097625,77.45078673,,,,,,,,,,72.20353939,69.35311826,75.05396052,77.55837473,74.31980521,80.79694424,,,,519.6232678,258,31971,444.661617,594.5849186,,,,,,,,,,642.989729,526.7693745,759.2100835,437.6057272,331.3595919,543.8518626,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.125,,,0.108,0.142,0.17,,,0.147,0.195,0.121,,,0.104,0.14,128.6,14,10887,,,0.149,1850,,,,0.146350618,2012.321002,13750,,,38.6345448,14,36237,21.12186516,64.8222014,,,,,,,,,,,,,,,,,,,0.318,,,0.304,0.331,0.122049689,786,6440,0.099411392,0.144687987,0.066605839,146,2192,0.041584563,0.091627116,0.00122489,15,12246,,,816.4,0.771370968,95.65,124,,,,,,,,,,,,,,,,,,2.467035924,,,,,,,,2.422071315,2.551339096,0.096626266,,,,,606.08545,,,,,0.839143514,33194,39557,0.673867876,1.004419153,49966,,,43174.51064,56757.48936,31938,5707.361702,58168.6383,,,,,,,39571,34173.55319,44968.44681,57524,47576.25532,67471.74468,,,,,,0.886716116,1315,1483,,,,,,,,0.242184686,,49966,,,12.65822785,7,553,,,11.73874255,10,85188,5.629183331,21.58796549,,,,,,,,,,,,,,,,,,,43.22112473,23,60521,26.40058584,66.75152171,38.00333768,,,,,,,,,,60.79818793,34.02828426,100.2773651,,,,,,,24.78478545,15,60521,13.87185627,40.87873444,,,,,,,,,,,,,,,,,,,18.78198807,16,85188,10.73552901,30.50077194,,,,,,,,,,,,,,,,,,,25,,1000,,,11,14,0.619567456,6016,9710,,,0.37,,,,,24.67627855,,,,,0.717066138,3979,5549,0.677822868,0.756309409,0.095887779,499,5204,0.061727058,0.130048499,0.748783565,4155,5549,0.716182124,0.781385005,12246,,,,,0.16511514,2022,12246,,,0.285399314,3495,12246,,,0.008574228,105,12246,,,0.033970276,416,12246,,,0.009880777,121,12246,,,0.002041483,25,12246,,,0.487342806,5968,12246,,,0.464314878,5686,12246,,,0.005223692,62,11869,0,0.014449986,0.482851543,5913,12246,,,0.545571971,6758,12387,, -35,009,35009,NM,Curry County,2024,1,10659.369,770,137541,9646.515104,11672.2229,0,,,,2,,,,2,18843.59285,12803.30711,26746.97591,,11133.54034,9615.288871,12651.79182,,9453.156688,8030.169246,10876.14413,,,,,2,,0.2,,,0.172,0.23,3.951697516,,,3.210236276,4.7907462,4.699132793,,,3.848608539,5.626781756,0.083508403,477,5712,0.076333909,0.090682898,0,,,,0.110236221,0.055766678,0.164705763,0.172043011,0.127755999,0.216330022,0.081446311,0.071200949,0.091691674,0.074958124,0.064396542,0.085519706,,,,,,,0.177,,,0.146,0.213,0.346,,,0.287,0.409,6.7,0.129320739,0.132,,,0.259,,,0.218,0.305,0.729857526,35347,48430,,,0.148532208,,,0.120140453,0.182109486,0.264705882,9,34,0.174780223,0.359592316,781.3,375,47999,,,45.9892017,477,10372,41.86202795,50.11637545,,,,,,,35.18518519,21.18377993,54.94602513,50.63291139,45.01452408,56.2512987,40.74650078,33.76882571,47.72417585,,,,34.59119497,17.2677999,61.89320287,0.131644755,5317,40389,0.112580925,0.150708585,0.000416675,20,47999,,,2399.95,0.0008205,39,47532,,,1218.769231,0.006585037,313,47532,,,151.8594249,2985,,,,,,,3467,3096,2870,0.3,,,,,,0.47,0.25,0.28,0.31,0.32,,,,,,0.31,0.17,0.31,0.34,0.80934335,24133,29818,0.787506039,0.83118066,0.631033504,8890,14088,0.569745268,0.69232174,0.032217536,718,22286,,,0.222,2724,,0.138595745,0.305404255,,,,,,,0.108742004,0,0.23810925,0.333239357,0.263632304,0.402846411,0.154354207,0.095390678,0.213317737,4.570627905,100307,21946,3.956545171,5.184710638,0.274320289,3491,12726,0.20221286,0.346427718,10.20854601,49,47999,,,97.14483969,238,244995,84.80278892,109.4868905,,,,,,,165.9810926,105.2177747,249.0531348,83.57278344,67.1158076,102.8435014,109.3059951,90.06669755,128.5452926,,,,5.7,,,,,0,,,,,0.164607948,3065,18620,0.136958124,0.192257773,0.135906496,0.109424814,0.162388179,0.034640172,0.023580049,0.045700295,0.002685285,0.000216431,0.005154139,0.827258394,17839,21564,0.797840482,0.856676305,,,,,,,0.859598854,0.766033898,0.95316381,0.846801544,0.805206769,0.888396318,0.817046958,0.77347503,0.860618885,0.131,,21564,0.105950371,0.156049629,74.18174602,,,73.33926103,75.02423101,,,,,,,68.76681658,64.02615584,73.50747732,74.31928957,72.77868862,75.85989051,74.82674952,73.69009501,75.96340402,,,,547.0764042,770,137541,507.4201743,586.7326341,,,,,,,689.6728524,506.7456709,917.118688,586.6699029,519.2207739,654.1190319,514.5173703,460.5004183,568.5343223,,,,79.32450775,45,56729,57.85984027,106.1424324,,,,,,,409.556314,211.6237239,715.412459,60.38839272,36.35775725,94.30395567,56.87988004,28.39423118,101.7738172,,,,6.672369547,39,5845,4.744707013,9.121348822,,,,,,,,,,,,,,,,,,,,,,0.127,,,0.11,0.146,0.165,,,0.144,0.188,0.114,,,0.099,0.131,87.9,34,38685,,,0.132,6440,,,,0.129320739,6256.020058,48376,,,29.5033826,43,145746,21.35174428,39.74086274,,,,,,,,,,31.08292926,18.9862607,48.00506326,28.5808839,17.20755914,44.63259059,,,,0.33,,,0.318,0.341,0.156517075,4377,27965,0.131495798,0.181538352,0.079091259,1027,12985,0.052878493,0.105304025,0.001241269,59,47532,,,805.6271186,0.794429302,466.33,587,,,0.144658494,413,2855,0.083291846,0.206025142,,,,,,,,,,,2.744177496,,,,,,,2.419027847,2.591888709,3.019309832,0.09519654,,,,,-3543.6828,,,,,0.755189981,35577,47110,0.667852559,0.842527403,52463,,,45024.53192,59901.46809,63125,37056.40426,89193.59575,,,,46436,16368.76596,76503.23404,41389,33180.82979,49597.17021,63719,59082.91489,68355.08511,,,,,,0.737877247,6528,8847,,,32.13557005,,,,,0.336141662,,52463,,,6.896551724,27,3915,,,7.521559393,26,345673,4.913332316,11.02082722,,,,,,,,,,8.789663356,4.680125551,15.03059203,,,,,,,19.83205305,44,244995,14.23182367,26.90441932,17.9595502,,,,,,,,,,14.84567395,8.116268092,24.90851831,23.21348361,14.54776659,35.14549316,,,,18.77589339,46,244995,13.74631377,25.04441058,,,,,,,,,,15.96334066,9.299234201,25.55885479,18.51149917,11.45890975,28.29679287,,,,15.62170028,54,345673,11.73550204,20.38293022,,,,,,,,,,20.28383851,13.68542067,28.95644072,12.28901301,7.506448405,18.97938389,,,,16.03773585,,5300,,,40,45,0.45232889,15101,33385,,,0.539,,,,,43.74041895,,,,,0.593417858,10999,18535,0.560471769,0.626363947,0.158821236,2851,17951,0.129620674,0.188021797,0.871810089,16159,18535,0.850636158,0.89298402,47532,,,,,0.262854498,12494,47532,,,0.136013633,6465,47532,,,0.056572414,2689,47532,,,0.023983843,1140,47532,,,0.018892536,898,47532,,,0.002566692,122,47532,,,0.455693007,21660,47532,,,0.440355971,20931,47532,,,0.042358599,1885,44501,0.030243126,0.054474072,0.483884541,23000,47532,,,0.188230436,9116,48430,, -35,011,35011,NM,DeBaca County,2024,1,15242.05652,44,4423,8332.974131,25573.5809,1,,,,2,,,,2,,,,2,,,,2,19230.78146,7731.771542,39622.75971,1,,,,2,,0.209,,,0.179,0.239,4.176763103,,,3.262812644,5.146040804,5.242912494,,,4.122370536,6.42442341,0.127659575,12,94,0.060197166,0.195121983,1,,,,,,,,,,,,,,,,,,,,,,0.185,,,0.15,0.223,0.373,,,0.291,0.459,7.6,0.077929089,0.117,,,0.265,,,0.216,0.315,0.81213192,1379,1698,,,0.12374391,,,0.096472254,0.154118914,0.25,1,4,0.023230216,0.544021398,535.7,9,1680,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.154833191,181,1169,0.129811914,0.179854467,0.000595238,1,1680,,,1680,0.001181335,2,1693,,,846.5,0.011222682,19,1693,,,89.10526316,2270,,,,,,,,,2238,0.3,,,,,,,,0.35,0.28,0.09,,,,,,,,0.13,0.07,0.846356453,964,1139,0.717023342,0.975689564,0.602787456,346,574,0.36682373,0.838751183,0.034199726,25,731,,,0.309,115,,0.186276596,0.431723404,,,,,,,,,,0.121405751,0.01754201,0.225269492,0.138613861,0,0.355124344,6.269072583,108223,17263,1.228297,11.30984817,0.088167053,38,431,0,0.195711966,29.76190476,5,1680,,,126.2771209,11,8711,63.03708377,225.9446506,,,,,,,,,,,,,,,,,,,4.5,,,,,0,,,,,0.063063063,35,555,0.007750152,0.118375974,0.049001815,0,0.139483369,0.007207207,0,0.056266525,0,0,0.039468947,0.893351801,645,722,0.762895575,1,,,,,,,,,,,,,,,,0.064,,722,0,0.179494598,71.48142747,,,66.16236472,76.80049022,,,,,,,,,,,,,,,,,,,653.8910334,44,4423,444.2872325,928.1461267,,,,,,,,,,,,,767.5100312,447.1028768,1228.85791,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.135,,,0.116,0.155,0.175,,,0.151,0.202,0.119,,,0.101,0.138,0,0,1441,,,0.117,220,,,,0.077929089,157.5726178,2022,,,,,,,,,,,,,,,,,,,,,,,,,,0.338,,,0.325,0.351,0.172289157,143,830,0.142501923,0.202076391,0.110803324,40,361,0.071484175,0.150122473,0.001772002,3,1693,,,564.3333333,,,,,,,,,,,,,,,,,,,,,2.879019817,,,,,,,,2.611156243,,0.024427066,,,,,-7027.631,,,,,,,,,,45208,,,38744.17021,51671.82979,,,,,,,,,,,,,39531,13611.34043,65450.65957,,,,,,1,260,260,,,,,,,,0.280724651,,45208,,,3.125,1,320,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,200,,,-888,0,0.790350877,901,1140,,,0.324,,,,,,,,,,0.677462888,502,741,0.455693508,0.899232268,0.060240964,35,581,0,0.176840526,0.748987854,555,741,0.613177703,0.884798006,1693,,,,,0.223272298,378,1693,,,0.279385706,473,1693,,,0.008269344,14,1693,,,0.028352038,48,1693,,,0.004134672,7,1693,,,0,0,1693,,,0.448907265,760,1693,,,0.506202008,857,1693,,,0.006779661,10,1475,0,0.047690771,0.492616657,834,1693,,,1,1698,1698,, -35,013,35013,NM,Dona Ana County,2024,1,8830.623403,3005,615069,8378.359104,9282.887701,0,10268.49953,5125.99797,18373.18212,1,,,,2,11720.32953,7509.436277,17438.9213,1,8702.600656,8176.981507,9228.219804,,9436.806007,8419.587298,10454.02472,,,,,2,,0.21,,,0.179,0.247,3.612514377,,,2.939659689,4.393155487,4.944007053,,,4.164344074,5.848042453,0.083206934,1536,18460,0.079222601,0.087191267,0,,,,0.063348416,0.031232756,0.095464076,0.132701422,0.086925516,0.178477328,0.086185736,0.081643738,0.090727733,0.065823606,0.057071669,0.074575542,,,,0.091549296,0.044115259,0.138983333,0.157,,,0.127,0.192,0.371,,,0.326,0.42,6.2,0.165077417,0.138,,,0.233,,,0.197,0.274,0.700743757,153856,219561,,,0.148429243,,,0.12368148,0.176605323,0.27027027,30,111,0.221663962,0.32038619,659.6,1461,221508,,,25.5341915,1575,61682,24.27312525,26.79525775,,,,,,,,,,29.89567441,28.35688061,31.4344682,10.04016064,8.119714716,11.96060657,,,,,,,0.148196113,26663,179917,0.131515262,0.164876964,0.000618488,137,221508,,,1616.846715,0.00059999,134,223337,,,1666.69403,0.00349248,780,223337,,,286.3294872,2273,,,,,,,3395,2856,1863,0.4,,,,,0.23,0.36,0.34,0.37,0.43,0.37,,,,,0.33,0.46,0.31,0.33,0.4,0.815831001,109602,134344,0.804550258,0.827111744,0.6582269,35148,53398,0.61764727,0.69880653,0.043855243,4365,99532,,,0.316,16011,,0.256425532,0.375574468,0.403133903,0.352960673,0.453307133,0.454991817,0.223432976,0.686550658,0.166469894,0,0.335731485,0.322458718,0.289456143,0.355461293,0.153835746,0.112775751,0.194895742,5.360107763,107438,20044,4.889079612,5.831135914,0.276280066,14450,52302,0.239579666,0.312980466,5.733427235,127,221508,,,77.96604592,853,1094066,72.73381305,83.1982788,,,,,,,85.05330007,47.6036864,140.282484,65.92921648,60.12701043,71.73142253,110.8359218,98.76712141,122.9047222,,,,7.3,,,,,1,,,,,0.189372954,15040,79420,0.173212805,0.205533103,0.151621777,0.133586359,0.169657196,0.041677159,0.033363138,0.049991181,0.009254596,0.004942415,0.013566776,0.769775524,70436,91502,0.745689657,0.793861391,0.649365629,0.532286975,0.766444283,0.741353384,0.612695462,0.870011305,0.794548208,0.695903302,0.893193114,0.774789411,0.745779308,0.803799515,0.757948045,0.719138083,0.796758006,0.251,,91502,0.227319617,0.274680383,76.92246691,,,76.52271933,77.32221449,80.24565166,71.17102679,89.32027654,84.83057219,81.26821595,88.39292843,74.82438527,70.97727963,78.67149092,77.09733129,76.57828337,77.61637921,76.40170608,75.62770297,77.17570919,,,,429.979149,3005,615069,413.9250408,446.0332571,484.3670573,299.8308426,740.4064992,,,,448.5934313,329.6095802,596.5341651,432.7699687,412.4838893,453.0560482,445.3924524,414.1759707,476.6089342,,,,46.05477666,113,245360,37.56313752,54.54641579,,,,,,,,,,44.74568687,35.88734931,55.1279377,38.62893049,21.62031916,63.71254635,,,,5.445518125,102,18731,4.388712312,6.502323938,,,,,,,,,,5.836047774,4.668084911,7.207471524,,,,,,,,,,0.123,,,0.106,0.144,0.156,,,0.136,0.18,0.124,,,0.108,0.142,254.4,470,184763,,,0.138,30020,,,,0.165077417,34539.6432,209233,,,20.57597604,136,660965,17.11780027,24.0341518,,,,,,,,,,18.65065782,14.89748304,23.06182722,25.14716809,18.27197083,33.7588994,,,,0.334,,,0.321,0.348,0.183417437,23626,128810,0.160779139,0.206055734,0.064162063,3484,54300,0.046289722,0.082034403,0.001061177,237,223337,,,942.350211,0.794391696,2468.175,3107,,,0.08319876,1288,15481,0.057391073,0.109006447,,,,,,,,,,,2.727884709,,,,,,3.4106081,2.735647264,2.662110281,3.152412326,0.107640779,,,,,-11588.546,,,,,0.937875299,41546,44298,0.860372349,1.015378249,52011,,,47214.06383,56807.93617,30395,12063.93617,48726.06383,64149,23423.89362,104874.1064,37376,17746.21277,57005.78723,44166,40224.55319,48107.44681,69348,62508.85106,76187.14894,,,,,,0.88271165,33438,37881,,,52.25206332,,,,,0.304301013,,52011,,,12.11942063,164,13532,,,4.860209856,74,1522568,3.816310092,6.101548404,,,,,,,,,,5.471725101,4.144231157,7.089254531,3.148660366,1.676529036,5.384305119,,,,16.22014615,181,1094066,13.77166034,18.66863195,16.54379169,,,,,,,,,,11.98527393,9.5866721,14.8017158,23.81312363,18.08230315,30.78398436,,,,14.44154192,158,1094066,12.18968344,16.6934004,,,,,,,,,,11.29835363,9.02472359,13.97058923,20.86725688,15.96179806,26.80486444,,,,13.00434529,198,1522568,11.19295528,14.8157353,,,,,,,,,,13.0553441,10.86115052,15.24953768,13.3212554,10.03539263,17.33944496,,,,20.52845529,,24600,,,222,283,0.569113697,82641,145210,,,0.6,,,,,71.29807511,,,,,0.640644634,52513,81969,0.625361958,0.65592731,0.152809161,11970,78333,0.135602756,0.170015566,0.835047396,68448,81969,0.821524207,0.848570585,223337,,,,,0.231148444,51624,223337,,,0.167607696,37433,223337,,,0.016871365,3768,223337,,,0.025669728,5733,223337,,,0.014193797,3170,223337,,,0.001929819,431,223337,,,0.69122895,154377,223337,,,0.26104049,58300,223337,,,0.085742608,17732,206805,0.078623016,0.0928622,0.505845426,112974,223337,,,0.224862339,49371,219561,, -35,015,35015,NM,Eddy County,2024,1,12367.63166,1114,167054,11372.46517,13362.79815,0,,,,2,,,,2,21461.34754,11427.2637,36699.5579,1,12747.82395,11364.35379,14131.29411,,11812.00392,10281.01427,13342.99357,,,,,2,,0.182,,,0.154,0.212,3.595548445,,,2.853374515,4.419315711,4.880892313,,,3.948365366,5.870586894,0.084024713,476,5665,0.076800318,0.091249109,0,,,,,,,,,,0.080466647,0.071245614,0.08968768,0.088095238,0.075972593,0.100217883,,,,,,,0.159,,,0.129,0.191,0.383,,,0.317,0.447,7.4,0.101716112,0.115,,,0.242,,,0.201,0.287,0.730028565,45491,62314,,,0.158904943,,,0.127114463,0.193730818,0.283783784,21,74,0.223717856,0.345539866,472.8,288,60911,,,38.10953811,533,13986,34.87415174,41.34492448,,,,,,,,,,41.57549234,37.28665208,45.8643326,33.33333333,28.16827982,38.49838685,,,,,,,0.118929499,6137,51602,0.102248648,0.13561035,0.000295513,18,60911,,,3383.944444,0.000331126,20,60400,,,3020,0.001407285,85,60400,,,710.5882353,1800,,,,,,,,1552,1920,0.3,,,,,,,0.23,0.28,0.31,0.33,,,,,,0.36,0.27,0.31,0.34,0.840339949,33322,39653,0.816867466,0.863812432,0.607424677,10161,16728,0.539914397,0.674934958,0.033085194,1040,31434,,,0.162,2517,,0.094085106,0.229914894,0.536507937,0.384550586,0.688465288,,,,,,,0.175497361,0.111403325,0.239591397,0.024603609,0.003878389,0.045328828,5.023741497,147698,29400,3.932628898,6.114854095,0.25893413,4159,16062,0.183975619,0.333892642,10.01461148,61,60911,,,130.1736332,381,292686,117.1023986,143.2448678,,,,,,,,,,101.8659687,85.61808814,118.1138492,164.964056,143.0654157,186.8626963,,,,6.7,,,,,1,,,,,0.109280743,2355,21550,0.087703669,0.130857816,0.073657049,0.055878571,0.091435527,0.031554524,0.020038437,0.043070612,0.006264501,0.000738847,0.011790155,0.82197615,22195,27002,0.794163647,0.849788653,,,,,,,,,,0.810095395,0.769699219,0.85049157,0.836656174,0.798529307,0.87478304,0.225,,27002,0.188353227,0.261646773,73.00495488,,,72.24866862,73.76124113,,,,,,,,,,72.66609196,71.55050604,73.78167789,73.39210739,72.28140066,74.50281412,,,,589.4743261,1114,167054,553.9710898,624.9775625,,,,,,,969.0650069,591.9300818,1496.642307,610.9158936,556.8598862,664.971901,562.4963759,513.0639889,611.9287629,,,,57.01170933,39,68407,40.54089858,77.93688346,,,,,,,,,,57.69230769,36.96455013,85.84158075,54.68158493,29.115641,93.50717556,,,,6.20048226,36,5806,4.342741546,8.584081035,,,,,,,,,,5.922416346,3.617565764,9.146691709,,,,,,,,,,0.117,,,0.101,0.135,0.161,,,0.138,0.184,0.108,,,0.093,0.125,77,38,49327,,,0.115,7020,,,,0.101716112,5475.276574,53829,,,28.12322472,50,177789,20.87359946,37.07696577,,,,,,,,,,26.24528405,16.81584871,39.05090228,33.03055326,21.57665403,48.39741356,,,,0.326,,,0.313,0.338,0.136554326,4850,35517,0.115107518,0.158001135,0.082538366,1393,16877,0.057517089,0.107559642,0.000993378,60,60400,,,1006.666667,0.660891591,652.3,987,,,0.087119034,303,3478,0.02970826,0.144529808,,,,,,,,,,,3.133610668,,,,,,,,3.10268015,3.191066773,0.026102357,,,,,-114.0224333,,,,,0.648330414,46637,71934,0.559404295,0.737256533,65063,,,55958.82979,74167.17021,78427,45155.85106,111698.1489,138547,103958.0638,173135.9362,,,,72937,58145.85106,87728.14894,85363,78436.87234,92289.12766,,,,,,0.479071537,6295,13140,,,52.30315941,,,,,0.310452946,,65063,,,4.69273743,21,4475,,,12.50352428,51,407885,9.309695095,16.43982529,,,,,,,,,,15.25951012,10.36809678,21.65965656,8.527011975,4.873924106,13.84733323,,,,29.6830294,86,292686,23.64236722,36.79658091,29.38302481,,,,,,,,,,17.74025,11.36651292,26.39608579,43.37517617,32.58476731,56.59519601,,,,32.11632945,94,292686,25.95326336,39.30225352,,,,,,,,,,24.96053537,17.5745204,34.40481006,39.34922437,29.38788286,51.6012726,,,,24.27154713,99,407885,19.72671583,29.54973773,,,,,,,,,,21.65865953,15.73721517,29.07573949,27.17985067,20.23718408,35.73648409,,,,25.44117647,,6800,,,32,141,0.57594246,23222,40320,,,0.545,,,,,29.03815057,,,,,0.734132053,16667,22703,0.705017193,0.763246913,0.07847148,1688,21511,0.058783974,0.098158985,0.815178611,18507,22703,0.793689568,0.836667653,60400,,,,,0.262615894,15862,60400,,,0.150529801,9092,60400,,,0.012897351,779,60400,,,0.026374172,1593,60400,,,0.010231788,618,60400,,,0.00178808,108,60400,,,0.526523179,31802,60400,,,0.430331126,25992,60400,,,0.032058384,1823,56865,0.022454472,0.041662296,0.488493378,29505,60400,,,0.220223385,13723,62314,, -35,017,35017,NM,Grant County,2024,1,11683.7883,534,71774,10008.00472,13359.57188,0,,,,2,,,,2,,,,2,13107.24022,10819.07484,15395.4056,,10498.21356,7659.139,13337.28811,,,,,2,,0.191,,,0.163,0.22,3.654829162,,,2.98067844,4.524944255,5.295280538,,,4.429578539,6.388941876,0.099711816,173,1735,0.085613396,0.113810235,0,,,,,,,,,,0.101796407,0.084462262,0.119130553,0.1,0.073962922,0.126037078,,,,,,,0.16,,,0.129,0.193,0.343,,,0.289,0.414,6.4,0.107069274,0.155,,,0.249,,,0.208,0.296,0.68944474,19432,28185,,,0.139033635,,,0.115239055,0.172722819,0.242424242,8,33,0.152046161,0.340132436,398,111,27889,,,24.8413418,137,5515,20.68155724,29.00112635,,,,,,,,,,29.34782609,23.81279416,34.88285802,16.69877971,10.90819731,24.4675813,,,,,,,0.099367849,1902,19141,0.083878487,0.114857211,0.000645416,18,27889,,,1549.388889,0.000577909,16,27686,,,1730.375,0.006248646,173,27686,,,160.0346821,1510,,,,,,,,1975,1161,0.33,,,,,,,,0.35,0.33,0.31,,,,,,,,0.31,0.31,0.885530641,18048,20381,0.85833416,0.912727123,0.573258751,3177,5542,0.479591026,0.666926477,0.041133771,476,11572,,,0.272,1361,,0.168340426,0.375659575,,,,,,,,,,0.361265749,0.268568588,0.453962909,0.22747322,0.086733489,0.368212951,4.834176796,102209,21143,3.947711612,5.72064198,0.237968928,1256,5278,0.153777241,0.322160614,9.68123633,27,27889,,,132.1872239,181,136927,112.9294419,151.4450058,,,,,,,,,,127.8623736,102.5493625,157.5300204,139.9090591,112.2111566,172.3718739,,,,4.6,,,,,1,,,,,0.163984341,1885,11495,0.125707108,0.202261574,0.122286221,0.08922238,0.155350061,0.028273162,0.006780019,0.049766306,0.044802088,0.017733663,0.071870513,0.727674443,7081,9731,0.675767975,0.77958091,,,,,,,,,,0.807242136,0.752553908,0.861930364,0.655331552,0.581648297,0.729014807,0.176,,9731,0.130974943,0.221025057,75.29336288,,,74.0698685,76.51685727,,,,,,,,,,74.09778056,72.40281611,75.79274502,76.13774184,74.1317955,78.14368818,,,,495.2698195,534,71774,446.1165875,544.4230516,,,,,,,,,,549.299634,475.2565441,623.3427239,444.1304802,373.471933,514.7890273,,,,54.44342072,13,23878,28.98882859,93.09990752,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.123,,,0.107,0.142,0.166,,,0.144,0.19,0.117,,,0.101,0.135,132.1,32,24222,,,0.155,4360,,,,0.107069274,3160.042547,29514,,,30.52726696,25,81894,19.75563759,45.06426808,,,,,,,,,,46.37992482,27.92374448,72.42799778,,,,,,,0.346,,,0.332,0.359,0.115296804,1616,14016,0.095041485,0.135552123,0.059116941,320,5413,0.038861622,0.07937226,0.00166149,46,27686,,,601.8695652,0.844946809,238.275,282,,,,,,,,,,,,,,,,,,2.515825283,,,,,,,,2.345873494,3.080592996,0.133773943,,,,,228.50345,,,,,1.129643944,46765,41398,0.70332596,1.555961928,47099,,,41555,52643,,,,,,,,,,44830,36586.08511,53073.91489,46066,41316.7234,50815.2766,,,,,,0.964421114,3307,3429,,,56.62701116,,,,,0.314104333,,47099,,,16.97312588,24,1414,,,8.77120568,17,193816,5.109550537,14.04354997,,,,,,,,,,11.30396358,5.642897892,20.22591332,,,,,,,29.88949601,43,136927,20.81912912,41.56905344,31.40359462,,,,,,,,,,21.48575602,11.44026019,36.74129715,34.76169583,20.60198403,54.93846609,,,,27.02169769,37,136927,19.02576889,37.24585081,,,,,,,,,,17.43577822,9.009321034,30.45679567,38.15701612,24.44792021,56.7746154,,,,15.99455153,31,193816,10.86752176,22.70298918,,,,,,,,,,16.44212885,9.39809729,26.70098714,15.6836386,8.574391168,26.31448062,,,,34.58333333,,2400,,,38,45,0.671083217,14435,21510,,,0.535,,,,,13.0217921,,,,,0.714842366,8072,11292,0.682883064,0.746801669,0.101125704,1078,10660,0.074720875,0.127530533,0.834218916,9420,11292,0.801782098,0.866655735,27686,,,,,0.184208625,5100,27686,,,0.299646031,8296,27686,,,0.008524164,236,27686,,,0.024705627,684,27686,,,0.00982446,272,27686,,,0.002131041,59,27686,,,0.498194033,13793,27686,,,0.460738279,12756,27686,,,0.011365336,304,26748,0.003522221,0.019208451,0.500686267,13862,27686,,,0.404222104,11393,28185,, -35,019,35019,NM,Guadalupe County,2024,1,14019.10893,90,11793,9968.956903,19164.58341,0,,,,2,,,,2,,,,2,14325.08475,9665.074525,20449.94921,,,,,2,,,,2,,0.226,,,0.196,0.26,3.923878844,,,3.092632057,4.883038346,4.569087826,,,3.528688735,5.737480978,0.08045977,21,261,0.047460026,0.113459515,1,,,,,,,,,,0.086757991,0.049477494,0.124038488,,,,,,,,,,0.159,,,0.13,0.194,0.389,,,0.304,0.479,6.7,0.143508934,0.125,,,0.288,,,0.236,0.346,0.573899371,2555,4452,,,0.144394028,,,0.11190704,0.180789581,0.210526316,8,38,0.128437926,0.302220151,157.3,7,4449,,,19.27437642,17,882,11.22803455,30.86014378,,,,,,,,,,19.25545571,10.77713239,31.75894592,,,,,,,,,,0.077210884,227,2940,0.062913012,0.091508757,0.000449539,2,4449,,,2224.5,0.000464037,2,4310,,,2155,0.016705336,72,4310,,,59.86111111,2919,,,,,,,,1903,4398,0.28,,,,,,,,0.31,0.24,0.22,,,,,,,,0.21,0.2,0.805179517,2736,3398,0.757595507,0.852763528,0.4082397,545,1335,0.262736779,0.553742622,0.055668703,82,1473,,,0.287,236,,0.173808511,0.400191489,0.205479452,0,0.75342842,,,,,,,0.222222222,0.086845687,0.357598757,,,,4.955023632,97500,19677,3.162516311,6.747530953,0.262515263,215,819,0.095184956,0.429845569,8.990784446,4,4449,,,119.2988896,26,21794,77.92999548,174.8005143,,,,,,,,,,116.4279893,71.11724057,179.8135866,,,,,,,4,,,,,0,,,,,0.074349442,100,1345,0.026635018,0.122063867,0.0551827,0.002230391,0.108135008,0.002973978,0,0.024447044,0.018587361,0,0.039900102,0.833551769,1272,1526,0.739005106,0.928098433,,,,,,,,,,0.865640308,0.742099313,0.989181303,,,,0.228,,1526,0.109724049,0.346275951,73.2842766,,,69.89039014,76.67816305,,,,,,,,,,72.64502747,68.84224044,76.44781451,,,,,,,606.89421,90,11793,481.2293642,755.3323784,,,,,,,,,,590.5399708,450.6442106,760.1420013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.128,,,0.112,0.147,0.152,,,0.132,0.176,0.137,,,0.117,0.159,,,,,,0.125,560,,,,0.143508934,672.6263749,4687,,,,,,,,,,,,,,,,,,,,,,,,,,0.334,,,0.321,0.347,0.094223485,199,2112,0.075159655,0.113287315,0.035267349,31,879,0.019777988,0.050756711,0.00162413,7,4310,,,615.7142857,,,,,,,,,,,,,,,,,,,,,3.022296907,,,,,,,,3.011876734,,,,,,,1101.471,,,,,1.728073592,57671,33373,0.465820299,2.990326886,43862,,,37511.3617,50212.6383,66250,44610.17021,87889.82979,,,,,,,35507,27129.6383,43884.3617,40962,22306.85106,59617.14894,,,,,,1,665,665,,,,,,,,0.173270713,,43862,,,12.65822785,2,158,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,400,,,-888,6,0.619236209,2189,3535,,,0.346,,,,,20.10402453,,,,,0.782239382,1013,1295,0.686425736,0.878053029,0.077053345,91,1181,0.017811148,0.136295542,0.718918919,931,1295,0.6454709,0.792366938,4310,,,,,0.192575406,830,4310,,,0.205568446,886,4310,,,0.020417633,88,4310,,,0.035962877,155,4310,,,0.013921114,60,4310,,,0.000232019,1,4310,,,0.793735499,3421,4310,,,0.151276102,652,4310,,,0.059504132,252,4235,0.022212392,0.096795872,0.421809745,1818,4310,,,1,4452,4452,, -35,021,35021,NM,Harding County,2024,0,,,,,,2,,,,2,,,,2,,,,2,,,,2,,,,2,,,,2,,0.199,,,0.168,0.234,3.875984695,,,3.037418126,4.843387362,5.105752063,,,4.005473442,6.354020152,,,,,,0,,,,,,,,,,,,,,,,,,,,,,0.166,,,0.131,0.206,0.363,,,0.278,0.454,3.1,0.481481482,0.129,,,0.253,,,0.203,0.31,0.01217656,8,657,,,0.108474064,,,0.082687071,0.138999991,,,,,,0,0,639,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.110817942,42,379,0.089371133,0.132264751,0,0,639,,,-639,0,0,628,,,-628,0,0,628,,,-628,,,,,,,,,,,0.48,,,,,,,,,0.52,0.22,,,,,,,,0.18,0.28,0.868365181,409,471,0.547964774,1,0.75147929,127,169,0.466787769,1,0.035335689,10,283,,,0.378,31,,0.22787234,0.52812766,,,,,,,,,,0.402985075,0.001768543,0.804201606,0.12,0,0.412193229,5.642514943,123667,21917,0.68536878,10.59966111,0.028169014,4,142,0,0.077753882,0,0,639,,,,,,,,,,,,,,,,,,,,,,,,,,4.1,,,,,0,,,,,0.114285714,20,175,0,0.237431251,0.070175439,0,0.344900758,0.045714286,0,0.177733104,0.022857143,0,0.147890317,0.774907749,210,271,0.625259141,0.924556357,,,,,,,,,,,,,,,,0.452,,271,0.195030243,0.708969757,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.126,,,0.108,0.148,0.168,,,0.144,0.194,0.119,,,0.101,0.141,0,0,583,,,0.129,70,,,,0.481481482,334.6296303,695,,,,,,,,,,,,,,,,,,,,,,,,,,0.33,,,0.315,0.344,0.118811881,36,303,0.094982094,0.142641668,0.086419753,7,81,0.042334647,0.13050486,0.001592357,1,628,,,628,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.152381704,,,,,4636.516,,,,,1.01677027,68208,67083,0.048082949,1.98545759,45217,,,38408.82979,52025.17021,,,,,,,,,,37738,26081.65957,49394.34043,46500,26575.91489,66424.08511,,,,,,0.469879518,78,166,,,,,,,,0.415286286,,45217,,,,,16,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,,,,1,505,345,,,0.364,,,,,,,,,,0.670781893,163,243,0.56816896,0.773394826,0.079207921,16,202,0,0.336397721,0.62962963,153,243,0.547907814,0.711351445,628,,,,,0.133757962,84,628,,,0.414012739,260,628,,,0.01910828,12,628,,,0.02866242,18,628,,,0.003184713,2,628,,,0,0,628,,,0.445859873,280,628,,,0.511146497,321,628,,,0.017268446,11,637,0,0.112333177,0.468152866,294,628,,,1,657,657,, -35,023,35023,NM,Hidalgo County,2024,1,9434.040017,96,11146,6409.972482,13390.86676,0,,,,2,,,,2,,,,2,10916.06675,6667.817162,16858.97975,1,7142.090029,3690.422138,12475.79396,1,,,,2,,0.218,,,0.188,0.254,3.987103984,,,3.105961782,4.940999293,5.103537875,,,4.009558263,6.269790886,0.104026846,31,298,0.069363686,0.138690006,0,,,,,,,,,,0.102678571,0.062927761,0.142429382,,,,,,,,,,0.171,,,0.14,0.208,0.376,,,0.294,0.463,6.3,0.159443388,0.135,,,0.275,,,0.222,0.329,0.211345141,883,4178,,,0.12861688,,,0.10060818,0.161457089,0.071428571,2,28,0.013017947,0.17852931,392.7,16,4074,,,15.47619048,13,840,8.240419632,26.46475705,,,,,,,,,,23.03262956,11.90129579,40.23336862,,,,,,,,,,0.14025974,432,3080,0.116429953,0.164089528,0.000245459,1,4074,,,4074,0.001249063,5,4003,,,800.6,0.001498876,6,4003,,,667.1666667,1559,,,,,,,,797,,0.33,,,,,,,,0.39,0.29,0.2,,,,,,,,0.22,0.2,0.830467675,2415,2908,0.791506711,0.86942864,0.45302714,434,958,0.329027729,0.577026551,0.033808769,64,1893,,,0.374,325,,0.24293617,0.50506383,,,,,,,,,,0.443561208,0.322765421,0.564356996,0.196226415,0,0.42261087,4.855961684,96318,19835,3.552957202,6.158966166,0.140676118,129,917,0.060352454,0.220999782,0,0,4074,,,114.7063041,24,20923,73.4944934,170.673888,,,,,,,,,,98.26400262,50.77444406,171.6474373,148.9942886,76.98752308,260.2630376,,,,4.5,,,,,1,,,,,0.146551724,255,1740,0.091431026,0.201672423,0.0996483,0.051541719,0.147754881,0.031609195,0.00722655,0.055991841,0.017241379,0,0.036551304,0.790055249,1287,1629,0.730176225,0.849934273,,,,,,,,,,0.895615866,0.797260051,0.993971682,0.640067912,0.519821075,0.760314749,0.276,,1629,0.183538583,0.368461417,75.78887874,,,73.12347778,78.4542797,,,,,,,,,,74.9563095,71.33432554,78.57829345,,,,,,,549.3129329,96,11146,435.5709926,683.6674946,,,,,,,,,,562.8430039,405.6477302,760.8002324,529.9163831,376.822351,724.4131404,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.132,,,0.114,0.151,0.167,,,0.144,0.192,0.127,,,0.108,0.146,,,,,,0.135,570,,,,0.159443388,780.3159405,4894,,,,,,,,,,,,,,,,,,,,,,,,,,0.345,,,0.33,0.359,0.15625,345,2208,0.126462766,0.186037234,0.099674973,92,923,0.062738803,0.136611143,0.000749438,3,4003,,,1334.333333,,,,,,,,,,,,,,,,,,,,,2.742592049,,,,,,,,2.663078897,,0.166054343,,,,,-3764.2315,,,,,0.725563083,36305,50037,0.378144244,1.072981922,43610,,,37206.93617,50013.06383,,,,,,,,,,45395,30910.06383,59879.93617,62866,53360.29787,72371.70213,,,,,,0.812297735,502,618,,,,,,,,0.282549874,,43610,,,7.380073801,2,271,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,400,,,-888,8,0.622712934,1974,3170,,,0.435,,,,,16.07110523,,,,,0.706486834,1100,1557,0.644447823,0.768525844,0.076043069,113,1486,0.02618124,0.125904897,0.756583173,1178,1557,0.714691495,0.798474851,4003,,,,,0.220584562,883,4003,,,0.225580814,903,4003,,,0.013989508,56,4003,,,0.01698726,68,4003,,,0.006994754,28,4003,,,0.002498126,10,4003,,,0.592055958,2370,4003,,,0.369472895,1479,4003,,,0.045162946,176,3897,0.02064892,0.069676971,0.489382963,1959,4003,,,1,4178,4178,, -35,025,35025,NM,Lea County,2024,1,12007.70276,1200,206030,11139.35151,12876.05402,0,,,,2,,,,2,24153.2328,17407.52571,32648.1541,,10970.16422,9918.249436,12022.07899,,13288.05795,11588.48924,14987.62666,,,,,2,,0.212,,,0.182,0.244,3.896334289,,,3.138530501,4.629298287,4.885787651,,,4.029755194,5.741382847,0.085699333,655,7643,0.079423702,0.091974963,0,,,,,,,0.160377359,0.110980226,0.209774491,0.078075856,0.070923252,0.08522846,0.097976571,0.084531029,0.111422113,,,,,,,0.164,,,0.134,0.196,0.414,,,0.35,0.476,7.5,0.071588446,0.124,,,0.289,,,0.243,0.337,0.792451817,59002,74455,,,0.170919068,,,0.139819506,0.205194109,0.285714286,28,98,0.233855339,0.338839397,483.5,353,73004,,,45.39106145,845,18616,42.33052148,48.45160142,,,,,,,59.96758509,42.22271405,82.65741676,46.79636446,43.12164522,50.47108369,40.76905258,34.74580997,46.7922952,,,,,,,0.166315689,10425,62682,0.14486888,0.187762497,0.000301353,22,73004,,,3318.363636,0.000345056,25,72452,,,2898.08,0.001311213,95,72452,,,762.6526316,2565,,,,,,,4177,1943,2688,0.27,,,,,,,0.3,0.27,0.27,0.19,,,,,,0.36,0.17,0.16,0.21,0.760941675,33034,43412,0.737940373,0.783942977,0.440964342,8743,19827,0.394274618,0.487654066,0.044115119,1283,29083,,,0.227,4749,,0.163851064,0.290148936,,,,,,,0.353375527,0.02862636,0.678124694,0.218858243,0.173814146,0.263902339,0.209322034,0.133845071,0.284798996,5.324787383,128977,24222,4.327313535,6.322261232,0.269718116,5875,21782,0.217554077,0.321882154,9.588515698,70,73004,,,104.4389371,370,354274,93.79707437,115.0807998,,,,,,,182.8153565,114.5694106,276.7846467,73.85006567,62.33468197,85.36544938,149.5029029,127.6620575,171.3437482,,,,7.5,,,,,1,,,,,0.134674246,3080,22870,0.111527388,0.157821104,0.089387211,0.070013747,0.108760676,0.050502842,0.034509791,0.066495894,0.0080892,0.002305602,0.013872798,0.784509661,23631,30122,0.757232886,0.811786436,,,,,,,0.478810409,0.344958077,0.612662741,0.788588835,0.743406058,0.833771612,0.838894422,0.801537734,0.87625111,0.222,,30122,0.189544215,0.254455785,73.12504479,,,72.42981818,73.8202714,,,,,,,65.8625489,61.68995639,70.03514141,74.22859241,73.13029058,75.32689423,72.0644737,70.8753707,73.25357671,,,,587.3259246,1200,206030,553.6928478,620.9590013,,,,,,,976.2727222,748.5026981,1251.53757,553.5328961,506.3187214,600.7470708,623.6683712,568.817639,678.5191034,,,,58.68857707,55,93715,44.21226802,76.39125004,,,,,,,,,,41.46550958,27.55352998,59.92920644,98.38830585,60.90391203,150.3969768,,,,5.406101171,42,7769,3.89624221,7.307478283,,,,,,,,,,5.124450952,3.405160442,7.406258408,,,,,,,,,,0.128,,,0.111,0.146,0.164,,,0.143,0.187,0.117,,,0.101,0.134,86.8,50,57575,,,0.124,9010,,,,0.071588446,4633.705356,64727,,,27.32696013,59,215904,20.80254818,35.24978757,,,,,,,,,,18.8791808,12.21761039,27.86939511,40.60544113,27.1941012,58.31618678,,,,0.321,,,0.309,0.333,0.198618979,8169,41129,0.171214724,0.226023235,0.108060309,2444,22617,0.077081585,0.139039032,0.000938552,68,72452,,,1065.470588,0.819377838,902.135,1101,,,0.103342801,473,4577,0.054795119,0.151890483,,,,,,,,,,,2.737805942,,,,,,,2.551659693,2.692147012,2.941381189,0.043278808,,,,,-5164.235,,,,,0.593287355,39313,66263,0.502746438,0.683828272,59194,,,52014.08511,66373.91489,,,,114688,88055.82979,141320.1702,60049,39207.46809,80890.53192,59834,52849.48936,66818.51064,74415,65974.48936,82855.51064,,,,,,0.943693389,13961,14794,,,46.34153625,,,,,0.321282562,,59194,,,5.934718101,34,5729,,,10.50074414,52,495203,7.842457982,13.77032888,,,,,,,,,,8.834012307,5.770670133,12.94387483,9.848278579,5.736985193,15.76804802,,,,20.11837506,66,354274,15.49360027,25.69071581,18.62964824,,,,,,,,,,13.33778816,8.712686046,19.54294995,30.7772202,21.18562223,43.22266001,,,,19.75871783,70,354274,15.40288988,24.9639513,,,,,,,,,,13.08735341,8.696451297,18.91486954,28.23943721,19.55663119,39.46178298,,,,23.62667431,117,495203,19.34547216,27.90787647,,,,,,,,,,22.76457017,17.6422292,28.91019942,26.64828321,19.50989254,35.5450754,,,,12.72727273,,9900,,,42,84,0.506489104,20918,41300,,,0.525,,,,,26.09947119,,,,,0.684154395,16679,24379,0.654813798,0.713494993,0.120569871,2742,22742,0.096636466,0.144503276,0.82620288,20142,24379,0.805190583,0.847215177,72452,,,,,0.294084359,21307,72452,,,0.115000276,8332,72452,,,0.034036328,2466,72452,,,0.021020814,1523,72452,,,0.008019102,581,72452,,,0.001311213,95,72452,,,0.633026003,45864,72452,,,0.310081157,22466,72452,,,0.08763691,5897,67289,0.072419407,0.102854412,0.481173743,34862,72452,,,0.248915452,18533,74455,, -35,027,35027,NM,Lincoln County,2024,1,11376.49135,398,52608,9381.758262,13371.22443,0,,,,2,,,,2,,,,2,11257.68454,8407.777275,14762.95551,,11423.91428,8473.164069,14374.6645,,,,,2,,0.169,,,0.143,0.197,3.657456737,,,2.90092777,4.493316503,4.952625947,,,3.989219297,6.017214724,0.103274559,123,1191,0.085991262,0.120557857,0,,,,,,,,,,0.100352113,0.075641618,0.125062608,0.110465116,0.083417731,0.137512502,,,,,,,0.156,,,0.124,0.191,0.322,,,0.258,0.393,6.6,0.153282009,0.125,,,0.226,,,0.184,0.273,0.858947161,17410,20269,,,0.134904774,,,0.106606712,0.167606531,0.47826087,11,23,0.376622098,0.570307191,215.3,44,20436,,,28.22228688,97,3437,22.88637346,34.42879661,,,,,,,,,,31.40227396,23.84506317,40.59472103,21.29277567,14.1488948,30.77398931,,,,,,,0.135895033,1885,13871,0.115639714,0.156150352,0.000636132,13,20436,,,1572,0.000440939,9,20411,,,2267.888889,0.005242271,107,20411,,,190.7570094,1518,,,,,,,,1369,1313,0.32,,,,,,,,0.31,0.33,0.38,,,,,0.57,,,0.31,0.38,0.901424946,13854,15369,0.878883267,0.923966626,0.57807571,2199,3804,0.473723325,0.682428094,0.040190196,355,8833,,,0.278,992,,0.174340426,0.381659575,,,,,,,,,,0.264277716,0.143019797,0.385535635,0.286863271,0.181229792,0.39249675,4.484357991,94750,21129,3.499163259,5.469552724,0.366414435,1259,3436,0.225272426,0.507556445,17.12663926,35,20436,,,142.5711339,141,98898,119.0380893,166.1041785,,,,,,,,,,95.07962919,65.03439598,134.2240673,171.6952826,138.5367103,204.8538548,,,,4.6,,,,,1,,,,,0.128537736,1090,8480,0.095852631,0.161222841,0.100595238,0.070980607,0.130209869,0.019457547,0.005147918,0.033767177,0.013561321,0,0.029787038,0.76107056,6256,8220,0.695333568,0.826807551,,,,,,,,,,0.780225989,0.685071518,0.875380459,0.728419011,0.649069248,0.807768773,0.236,,8220,0.166903889,0.305096111,76.89092323,,,75.27587865,78.50596782,,,,,,,,,,76.74501312,73.83665068,79.65337556,76.9666921,74.78820158,79.14518262,,,,473.7418653,398,52608,417.8280058,529.6557248,,,,,,,,,,434.8516817,348.2983708,536.3879428,483.0470133,406.62757,559.4664565,,,,75.00468779,12,15999,38.75601668,131.0180952,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.115,,,0.098,0.132,0.161,,,0.139,0.185,0.1,,,0.085,0.117,184.8,33,17855,,,0.125,2500,,,,0.153282009,3141.821335,20497,,,41.70350476,25,59947,26.98830942,61.56259979,,,,,,,,,,,,,44.42963457,25.39537502,72.15094301,,,,0.332,,,0.319,0.345,0.156765194,1607,10251,0.131743917,0.18178647,0.080146674,306,3818,0.052742418,0.107550929,0.000979864,20,20411,,,1020.55,0.863690476,181.375,210,,,,,,,,,,,,,,,,,,2.558282264,,,,,,,,2.262470493,2.924931763,0.075763401,,,,,-1472.04295,,,,,0.698499869,29381,42063,0.551656017,0.845343721,54344,,,46290.7234,62397.2766,,,,,,,21938,19451.3617,24424.6383,30329,17199.97872,43458.02128,54337,48866.87234,59807.12766,,,,,,0.90237467,2394,2653,,,80.26109291,,,,,0.282073458,,54344,,,21.30177515,18,845,,,7.259686236,10,137747,3.481301732,13.35082146,,,,,,,,,,,,,,,,,,,33.83016099,35,98898,22.29428926,49.22110809,35.38999778,,,,,,,,,,,,,47.06909236,27.89612722,74.38945864,,,,38.42342616,38,98898,27.19070319,52.7391544,,,,,,,,,,,,,50.00833472,33.74041344,71.39000733,,,,20.32712146,28,137747,13.50722459,29.37835012,,,,,,,,,,,,,24.84854222,15.38163928,37.98363633,,,,17.05882353,,1700,,,13,16,0.669438129,10306,15395,,,0.298,,,,,4.044006989,,,,,0.775107962,7000,9031,0.756763469,0.793452454,0.138190364,1176,8510,0.092918819,0.183461909,0.798804119,7214,9031,0.765915589,0.83169265,20411,,,,,0.178041252,3634,20411,,,0.315761109,6445,20411,,,0.006859047,140,20411,,,0.045661653,932,20411,,,0.007397972,151,20411,,,0.001665769,34,20411,,,0.34755769,7094,20411,,,0.594287394,12130,20411,,,0.014847657,288,19397,0.002392918,0.027302396,0.509431189,10398,20411,,,0.455227194,9227,20269,, -35,028,35028,NM,Los Alamos County,2024,1,3889.61331,121,53588,2784.989789,4994.236831,0,,,,2,,,,2,,,,2,,,,2,3783.488807,2620.175986,5287.04638,,,,,2,,0.084,,,0.069,0.101,2.261790014,,,1.732862633,2.897423535,4.006654781,,,3.228114852,4.889765551,0.066608238,76,1141,0.052140215,0.081076262,0,,,,0.126760563,0.072037469,0.181483658,,,,0.098654709,0.059515851,0.137793566,0.047554348,0.032178737,0.062929959,,,,,,,0.079,,,0.059,0.104,0.265,,,0.208,0.327,9.2,0.050383086,0.056,,,0.123,,,0.097,0.156,0.992687574,19277,19419,,,0.163793046,,,0.13139795,0.200072934,0.333333333,2,6,0.110000414,0.553214291,181.1,35,19330,,,3.89578768,16,4107,2.226779268,6.32651512,,,,,,,,,,10.9561753,5.469283234,19.60362402,,,,,,,,,,0.02952953,472,15984,0.023572083,0.035486976,0.001551992,30,19330,,,644.3333333,0.000990254,19,19187,,,1009.842105,0.00265805,51,19187,,,376.2156863,729,,,,,,,,,765,0.5,,,,,,0.38,,0.33,0.51,0.47,,,,,,0.51,,0.48,0.47,0.979259686,13598,13886,0.967874005,0.990645367,0.87953668,4556,5180,0.793282534,0.965790826,0.021810661,232,10637,,,0.03,117,,0.018085106,0.041914894,,,,,,,,,,0.025252525,0,0.09073097,0.028072838,0,0.061090043,3.229522125,231870,71797,2.687536409,3.771507841,0.136583012,566,4144,0.08002267,0.193143353,16.0372478,31,19330,,,71.875,69,96000,55.92304016,90.9624126,,,,,,,,,,80.14196577,43.81435844,134.4646009,76.01450123,56.77126535,99.68290513,,,,3.6,,,,,0,,,,,0.04559848,360,7895,0.02748743,0.06370953,0.030108905,0.01420577,0.04601204,0.006333122,0,0.013576907,0.010132996,0,0.02052554,0.751691674,7665,10197,0.707601061,0.795782287,0.757700205,0.641109145,0.874291266,0.693208431,0.546690258,0.839726604,,,,0.800364157,0.750199568,0.850528746,0.772275176,0.727352387,0.817197966,0.083,,10197,0.049405071,0.116594929,83.78584094,,,82.52639187,85.04529001,,,,,,,,,,83.07949271,79.49765884,86.66132657,83.62183471,82.26373448,84.97993493,,,,171.948688,121,53588,139.777706,204.1196701,,,,,,,,,,,,,173.761715,138.1978485,215.6841044,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.068,,,0.057,0.081,0.118,,,0.1,0.139,0.064,,,0.053,0.076,30.3,5,16499,,,0.056,1080,,,,0.050383086,904.376388,17950,,,,,,,,,,,,,,,,,,,,,,,,,,0.257,,,0.244,0.271,0.032040328,375,11704,0.024891392,0.039189264,0.024401065,110,4508,0.01486915,0.03393298,0.001407203,27,19187,,,710.6296296,0.92,251.16,273,,,,,,,,,,,,,,,,,,3.473500033,,,,,,,,3.119803318,3.626384309,0.013720648,,,,,3232.508,,,,,0.747155488,84250,112761,0.662592061,0.831718915,139217,,,121412.5745,157021.4255,143438,99748.46809,187127.5319,104414,83639.19149,125188.8085,,,,117396,85520.08511,149271.9149,145789,135728.0638,155849.9362,,,,,,0.116743057,433,3709,,,49.72201631,,,,,0.163636625,,139217,,,16.14763553,14,867,,,,,,,,,,,,,,,,,,,,,,,,,,10.40761212,13,96000,5.377765053,18.18000388,13.54166667,,,,,,,,,,,,,10.48878343,5.029779351,19.28924618,,,,,,,,,,,,,,,,,,,,,,,,,,,9.0955947,12,131932,4.699826508,15.88817349,,,,,,,,,,,,,,,,,,,,,2100,,,-888,9,0.874013509,12293,14065,,,0.82,,,,,9.097141203,,,,,0.727573936,5929,8149,0.700037162,0.755110709,0.038881988,313,8050,0.020308841,0.057455135,0.934715916,7617,8149,0.915377493,0.954054339,19187,,,,,0.207015167,3972,19187,,,0.185907125,3567,19187,,,0.011153385,214,19187,,,0.015479231,297,19187,,,0.074477511,1429,19187,,,0.000990254,19,19187,,,0.181998228,3492,19187,,,0.703705634,13502,19187,,,0.004854899,89,18332,0,0.010862471,0.477406577,9160,19187,,,0.049796591,967,19419,, -35,029,35029,NM,Luna County,2024,1,12629.95403,504,66109,10953.28386,14306.62419,0,,,,2,,,,2,,,,2,9956.285514,8241.699563,11670.87146,,21603.48873,16543.91324,26663.06422,,,,,2,,0.271,,,0.233,0.313,4.65859083,,,3.766857836,5.643916969,5.400695581,,,4.319950783,6.558223951,0.078346457,199,2540,0.067896061,0.088796853,0,,,,,,,,,,0.072989307,0.061996519,0.083982096,0.09202454,0.060645753,0.123403327,,,,,,,0.197,,,0.162,0.236,0.414,,,0.34,0.49,4,0.238646656,0.206,,,0.322,,,0.269,0.379,0.527470799,13412,25427,,,0.124800803,,,0.098746737,0.156476424,0.244897959,12,49,0.171048131,0.323578132,528.7,135,25532,,,65.43385491,368,5624,58.74834297,72.11936685,,,,,,,,,,71.83037646,64.10365651,79.55709642,41.07981221,28.61359437,57.13207438,,,,,,,0.152366864,2987,19604,0.128537077,0.176196651,0.000156666,4,25532,,,6383,0.000388365,10,25749,,,2574.9,0.001747641,45,25749,,,572.2,1861,,,,,,,,1322,2071,0.22,,,,,,,,0.21,0.22,0.22,,,,,,,,0.17,0.24,0.731895504,12047,16460,0.697638608,0.7661524,0.377406282,2235,5922,0.287388366,0.467424197,0.099267697,976,9832,,,0.343,2239,,0.226234043,0.459765957,,,,,,,,,,0.322295806,0.256320265,0.388271346,0.398454746,0.229903371,0.567006121,4.794101584,79002,16479,4.160734656,5.427468512,0.315212561,2128,6751,0.246642192,0.38378293,5.874980417,15,25532,,,124.6008235,151,121187,104.7266759,144.4749711,,,,,,,,,,80.03880669,61.9020073,101.8289867,235.1438442,186.7381543,292.2623282,,,,5,,,,,1,,,,,0.137485971,1225,8910,0.102101464,0.172870478,0.117039587,0.083044568,0.151034606,0.013468014,0.004509084,0.022426943,0.013468014,0.003677414,0.023258613,0.734214391,6000,8172,0.681660418,0.786768364,,,,,,,,,,0.722101024,0.655638319,0.788563729,0.775807473,0.722164117,0.829450829,0.211,,8172,0.145554796,0.276445204,72.61420574,,,71.44473191,73.78367956,,,,,,,,,,74.82899073,73.42841714,76.22956432,66.80562509,63.95071538,69.66053481,,,,601.5197668,504,66109,545.1855804,657.8539533,,,,,,,,,,492.748332,428.2760351,557.220629,895.0297319,754.0662469,1035.993217,,,,68.03939123,19,27925,40.96415815,106.2519376,,,,,,,,,,52.03364843,26.88654544,90.89231224,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.157,,,0.136,0.18,0.183,,,0.159,0.209,0.149,,,0.128,0.171,135.6,28,20655,,,0.206,5200,,,,0.238646656,5988.83784,25095,,,16.40554507,12,73146,8.476984536,28.6571857,,,,,,,,,,,,,,,,,,,0.341,,,0.326,0.354,0.194658527,2551,13105,0.162488315,0.22682874,0.069263435,473,6829,0.044242159,0.094284712,0.000737893,19,25749,,,1355.210526,0.72,288,400,,,,,,,,,,,,,,,,,,2.444113796,,,,,,,,2.423553973,2.673033763,0.037580675,,,,,-20415.27,,,,,0.664382016,32376,48731,0.5387771,0.789986931,38796,,,33100.68085,44491.31915,48277,4678.021277,91875.97872,,,,28545,12583.80851,44506.19149,33108,27929.78723,38286.21277,44002,36264.46809,51739.53192,,,,,,0.994020927,5320,5352,,,51.10640724,,,,,0.271961027,,38796,,,14.87179487,29,1950,,,9.403191208,16,170155,5.374736243,15.27019341,,,,,,,,,,8.718775884,4.180991932,16.03413928,,,,,,,25.7463806,35,121187,17.49341649,36.54493212,28.88098558,,,,,,,,,,,,,56.54894328,32.32260711,91.83194109,,,,32.18166965,39,121187,22.88431308,43.99340182,,,,,,,,,,19.40334708,11.09068937,31.50982003,66.7692397,42.32597044,100.1866429,,,,27.62187417,47,170155,20.29551419,36.73123701,,,,,,,,,,22.6688173,14.80802408,33.21506961,38.28715365,23.05136759,59.79013314,,,,34.81481482,,2700,,,42,52,0.526681833,8103,15385,,,0.538,,,,,33.2918243,,,,,0.66607083,5962,8951,0.613039117,0.719102543,0.115574929,981,8488,0.079476688,0.151673171,0.763601832,6835,8951,0.727340939,0.799862725,25749,,,,,0.261485883,6733,25749,,,0.203075848,5229,25749,,,0.009514933,245,25749,,,0.027573886,710,25749,,,0.014214144,366,25749,,,0.002602043,67,25749,,,0.693735679,17863,25749,,,0.260514972,6708,25749,,,0.121708276,2847,23392,0.094228344,0.149188209,0.498194105,12828,25749,,,0.413497463,10514,25427,, -35,031,35031,NM,McKinley County,2024,1,25798.49357,2035,202952,24416.08146,27180.90569,0,30332.72828,28618.39988,32047.05669,,,,,2,,,,2,12359.50848,9598.789383,15120.22757,,8453.515024,5669.918311,11237.11174,,,,,2,,0.289,,,0.254,0.326,4.876610984,,,4.040978446,5.840347691,6.061557093,,,5.125291565,7.089152321,0.087091222,506,5810,0.079840707,0.094341738,0,0.086255718,0.078134733,0.094376703,,,,,,,0.100903615,0.077993434,0.123813795,0.075471698,0.048592192,0.102351204,,,,,,,0.273,,,0.23,0.318,0.439,,,0.384,0.494,2.8,0.34099932,0.209,,,0.308,,,0.266,0.355,0.412430386,30067,72902,,,0.125984538,,,0.101784395,0.152753067,0.315789474,48,152,0.274785342,0.357180266,773.2,555,71780,,,23.03292626,447,19407,20.89766301,25.16818952,24.86902315,22.35193071,27.38611558,,,,,,,21.73151069,16.66142464,27.85881594,,,,,,,,,,0.175754238,8616,49023,0.155498919,0.196009557,0.000821956,59,71780,,,1216.61017,0.000730345,51,69830,,,1369.215686,0.0017471,122,69830,,,572.3770492,2703,,,,,3170,5110,,380,1334,0.23,,,,,0.24,0.21,,0.18,0.25,0.47,,,,,0.51,0.5,0.35,0.39,0.36,0.807434154,36450,45143,0.793389781,0.821478527,0.506781562,9939,19612,0.466142542,0.547420583,0.056864552,1296,22791,,,0.422,7929,,0.336212766,0.507787234,0.497423185,0.462756131,0.532090239,0.227405248,0,0.661361655,,,,0.514851485,0.432103273,0.597599697,0.038416764,0,0.088495948,7.529105196,93903,12472,6.380992042,8.67721835,0.484846977,9743,20095,0.424092663,0.545601291,4.876010031,35,71780,,,185.6057967,666,358825,171.5093228,199.7022706,217.4943745,199.7630907,235.2256583,,,,,,,79.24236568,56.86568973,107.5012168,104.7226539,71.1539625,148.645448,,,,4.3,,,,,0,,,,,0.293951518,6245,21245,0.2683995,0.319503536,0.102389248,0.080376763,0.124401734,0.131560367,0.114531591,0.148589143,0.104730525,0.091070716,0.118390333,0.768701743,18219,23701,0.747327703,0.790075783,0.788107689,0.760050022,0.816165357,,,,,,,0.806140351,0.723846992,0.88843371,0.772069465,0.690802596,0.853336333,0.369,,23701,0.336217799,0.401782201,65.17616724,,,64.40740652,65.94492796,62.48389113,61.62222388,63.34555838,,,,,,,74.42335241,72.21868289,76.62802194,77.16480938,74.84060368,79.48901508,,,,993.7317843,2035,202952,949.3901463,1038.073422,1161.863599,1106.194126,1217.533073,,,,,,,514.5940253,424.9426704,604.2453802,420.9921665,330.7777054,511.2066275,,,,67.452109,60,88952,51.47306519,86.82423488,81.14729795,60.60468345,106.4138852,,,,,,,,,,,,,,,,6.265457543,38,6065,4.433810659,8.599829995,6.231823847,4.20458538,8.896316036,,,,,,,,,,,,,,,,,,,0.174,,,0.152,0.198,0.217,,,0.191,0.245,0.171,,,0.15,0.192,252,146,57942,,,0.209,15230,,,,0.34099932,24378.72336,71492,,,23.36765263,50,213971,17.34392219,30.80733682,22.06475691,15.36891164,30.68673553,,,,,,,38.72341799,20.00895514,67.64201829,,,,,,,0.359,,,0.345,0.37,0.231501632,7659,33084,0.202905888,0.260097377,0.063159142,1066,16878,0.044095312,0.082222972,0.00058714,41,69830,,,1703.170732,0.770127962,812.485,1055,,,0.202892294,940,4633,0.158348746,0.247435843,,,,,,,,,,,2.105229649,,,,,,,,,,0.072828845,,,,,-12766.97,,,,,0.953405105,39143,41056,0.863361931,1.04344828,43720,,,39504.51064,47935.48936,35582,31706.08511,39457.91489,105859,98206.06383,113511.9362,59457,48813.42553,70100.57447,57151,45727,68575,82675,62686.57447,102663.4255,,,,,,0.978698989,13646,13943,,,57.49063538,,,,,0.340073193,,43720,,,9.784345048,49,5008,,,17.82719764,91,510456,14.3533475,21.8878483,20.36783786,16.07397912,25.45630266,,,,,,,15.17492551,7.575268137,27.15213348,,,,,,,31.4092198,110,358825,25.44437106,37.37406854,30.65561207,31.15448302,24.81437182,38.62066906,,,,,,,,,,,,,,,,16.44255556,59,358825,12.51683512,21.2096987,16.18037734,11.70981931,21.79486209,,,,,,,,,,,,,,,,40.35607379,206,510456,34.84506163,45.86708594,47.34861009,40.41216759,54.2850526,,,,,,,17.93400287,9.549101218,30.66769109,,,,,,,7.419354839,,9300,,,31,38,0.525047081,26486,50445,,,0.395,,,,,17.91721167,,,,,0.718882991,15034,20913,0.696793514,0.740972469,0.08630394,1656,19188,0.065894297,0.106713583,0.523549945,10949,20913,0.498596671,0.548503219,69830,,,,,0.273149076,19074,69830,,,0.13517113,9439,69830,,,0.004668481,326,69830,,,0.798682515,55772,69830,,,0.012644995,883,69830,,,0.000558499,39,69830,,,0.146369755,10221,69830,,,0.077574109,5417,69830,,,0.027409634,1851,67531,0.022092876,0.032726392,0.515552055,36001,69830,,,0.664645689,48454,72902,, -35,033,35033,NM,Mora County,2024,1,13763.30006,83,11609,9217.498059,19766.39472,0,,,,2,,,,2,,,,2,13347.87663,8461.408792,20028.3687,1,,,,2,,,,2,,0.209,,,0.18,0.245,3.744008497,,,2.989472175,4.649059763,4.72601213,,,3.746340725,5.860281083,0.06870229,18,262,0.038073115,0.099331465,1,,,,,,,,,,0.080357143,0.044756823,0.115957463,,,,,,,,,,0.135,,,0.107,0.167,0.365,,,0.288,0.455,1.4,0.599603526,0.149,,,0.267,,,0.218,0.322,0.169491525,710,4189,,,0.120330475,,,0.094604374,0.153549952,0.230769231,3,13,0.089378268,0.394382228,333.7,14,4196,,,12.56281407,10,796,6.024357659,23.10346236,,,,,,,,,,14.53488372,6.97004171,26.73016867,,,,,,,,,,0.088194921,257,2914,0.07151407,0.104875772,,0,4196,,,,0.000719597,3,4169,,,1389.666667,0.001918925,8,4169,,,521.125,1403,,,,,,,,419,1229,0.31,,,,,,,,0.31,0.3,0.42,,,,,,,,0.42,0.39,0.933706541,3169,3394,0.888930224,0.978482858,0.444444444,284,639,0.27506471,0.613824179,0.054928131,107,1948,,,0.306,205,,0.183276596,0.428723404,,,,,,,,,,0.307178631,0.148916598,0.465440664,,,,6.008513762,81866,13625,2.469924918,9.547102605,0.584876543,379,648,0.23520936,0.934543727,0,0,4196,,,116.8434298,26,22252,76.32600762,171.2026968,,,,,,,,,,105.5203821,63.53016308,164.7831477,,,,,,,3.6,,,,,0,,,,,0.15131579,345,2280,0.070869036,0.231762543,0.057017544,0.013220905,0.100814183,0.015350877,0,0.047799185,0.076754386,0.005581548,0.147927224,0.652439024,856,1312,0.519567608,0.785310441,,,,,,,,,,,,,,,,0.733,,1312,0.449951677,1,77.43217787,,,73.26096453,81.6033912,,,,,,,,,,76.68256712,72.29963955,81.06549469,,,,,,,497.294987,83,11609,378.5639851,641.4743012,,,,,,,,,,485.289565,360.191269,639.793792,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.123,,,0.106,0.143,0.151,,,0.131,0.176,0.134,,,0.116,0.156,135.6,5,3688,,,0.149,630,,,,0.599603526,2926.664809,4881,,,,,,,,,,,,,,,,,,,,,,,,,,0.316,,,0.3,0.332,0.099909991,222,2222,0.078463183,0.1213568,0.054719562,40,731,0.032081264,0.07735786,0.000719597,3,4169,,,1389.666667,,,,,,,,,,,,,,,,,,,,,2.51677266,,,,,,,,2.52445997,,0.124141796,,,,,165.6172,,,,,0.619568766,43648,70449,0.288021229,0.951116303,45155,,,39040.2766,51269.7234,,,,,,,,,,32944,21461.61702,44426.38298,70072,50439.82979,89704.17021,,,,,,1,490,490,,,,,,,,0.228767578,,45155,,,,,73,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,44.65424853,14,31352,24.4128932,74.92224139,,,,,,,,,,,,,,,,,,,,,300,,,-888,0,0.690488432,2686,3890,,,0.289,,,,,2.297246101,,,,,0.902439024,1887,2091,0.831713456,0.973164593,0.021685559,44,2029,0,0.061451572,0.533237685,1115,2091,0.44408367,0.622391701,4169,,,,,0.163588391,682,4169,,,0.30726793,1281,4169,,,0.003837851,16,4169,,,0.038618374,161,4169,,,0.007435836,31,4169,,,0.000239866,1,4169,,,0.803789878,3351,4169,,,0.175341809,731,4169,,,0.015181195,62,4084,0,0.037098917,0.484288798,2019,4169,,,1,4189,4189,, -35,035,35035,NM,Otero County,2024,1,10762.56795,1133,188568,9838.377524,11686.75837,0,33284.70554,26940.81123,39628.59985,,,,,2,15564.31713,9754.074684,23564.56319,1,8659.569172,7396.693131,9922.445213,,9304.37373,8005.721872,10603.02559,,,,,2,,0.191,,,0.162,0.221,3.951917642,,,3.136233024,4.815094616,5.014973791,,,4.053786178,6.0165989,0.085230105,513,6019,0.078175928,0.092284282,0,0.071428571,0.047198492,0.095658651,0.083333333,0.033881711,0.132784956,0.086734694,0.04733227,0.126137118,0.095858896,0.084559985,0.107157807,0.07649179,0.066066826,0.086916755,,,,0.091549296,0.044115259,0.138983333,0.175,,,0.141,0.212,0.345,,,0.277,0.41,6.9,0.079017505,0.149,,,0.248,,,0.203,0.294,0.488362152,33130,67839,,,0.136696745,,,0.105184193,0.168932642,0.260869565,12,46,0.184114715,0.341630065,485.9,333,68537,,,36.20213481,485,13397,32.98018045,39.42408916,54.34782609,41.4731168,69.95642519,,,,31.89066059,17.4349209,53.50710962,40.55766793,35.87349627,45.2418396,25.73099415,20.92242025,30.53956805,,,,,,,0.111319411,5938,53342,0.09463856,0.128000262,0.00045231,31,68537,,,2210.870968,0.000508551,35,68823,,,1966.371429,0.002978655,205,68823,,,335.7219512,1966,,,,,3417,,2455,2290,1881,0.41,,,,,0.35,0.43,0.48,0.38,0.41,0.33,,,,,0.54,0.37,0.3,0.32,0.32,0.865563299,38753,44772,0.844834927,0.88629167,0.61889411,11327,18302,0.561360561,0.676427659,0.041105655,1038,25252,,,0.293,4299,,0.206021277,0.379978723,0.348075348,0.246109129,0.450041567,0.329896907,0,0.953550563,0.167400881,0,0.358404345,0.260869565,0.204220532,0.317518599,0.198307659,0.136311808,0.26030351,4.162399967,99344,23867,3.710790252,4.614009681,0.263098629,3972,15097,0.20426329,0.321933968,8.462582255,58,68537,,,108.142796,364,336592,97.03307961,119.2525125,258.654994,193.1759212,339.1916123,,,,96.32224168,48.083716,172.3470973,71.04334408,57.34114764,87.03289614,124.8254298,107.6113641,142.0394955,,,,5.3,,,,,1,,,,,0.129597577,2995,23110,0.108789784,0.15040537,0.089536424,0.070134639,0.108938209,0.031804414,0.017503172,0.046105656,0.011899611,0.002286578,0.021512643,0.80983472,21706,26803,0.778686847,0.840982594,0.737463127,0.691034973,0.783891281,,,,0.740790355,0.606744156,0.874836554,0.800465237,0.739629612,0.861300861,0.812378972,0.759695902,0.865062041,0.223,,26803,0.184928233,0.261071768,75.55484795,,,74.79909242,76.31060348,61.17770101,57.83840197,64.51700006,,,,72.96412455,67.40462377,78.52362532,77.64866532,76.28769178,79.00963887,76.45294207,75.43023917,77.47564497,,,,495.7770044,1133,188568,465.4200587,526.1339502,1285.622971,1075.59438,1495.651562,,,,659.3593175,459.2679236,917.0091961,431.4213976,382.8039356,480.0388596,446.9477267,407.3705982,486.5248553,,,,70.31112674,48,68268,51.84187441,93.22235335,233.281493,120.5399516,407.4958213,,,,,,,42.32505643,23.68901279,69.80874399,76.57657658,44.60867779,122.6065172,,,,6.973726889,43,6166,5.046920729,9.393564355,,,,,,,,,,,,,9.026687598,5.722145619,13.54446346,,,,,,,0.125,,,0.107,0.143,0.17,,,0.145,0.196,0.115,,,0.097,0.133,122,70,57355,,,0.149,10000,,,,0.079017505,5041.079787,63797,,,25.00073532,51,203994,18.61468957,32.87134983,,,,,,,,,,16.29052268,8.674017232,27.85728991,26.70967609,17.4476472,39.13586399,,,,0.356,,,0.343,0.366,0.133052566,5118,38466,0.110414268,0.155690864,0.058148481,907,15598,0.039084651,0.07721231,0.000915392,63,68823,,,1092.428571,0.785756972,394.45,502,,,0.110820701,424,3826,0.06097827,0.160663131,,,,,,,,,,,2.684079766,,,,,,,2.791239486,2.548676802,2.835265471,0.10649475,,,,,-2495.610367,,,,,0.87933463,39330,44727,0.746099822,1.012569439,52787,,,47503.93617,58070.06383,33438,25344.21277,41531.78723,90038,16345.57447,163730.4255,45913,28971.21277,62854.78723,43984,39418.21277,48549.78723,54476,48901.02128,60050.97872,,,,,,0.881594845,6567,7449,,,41.33290621,,,,,0.308219827,,52787,,,11.28158845,50,4432,,,6.86159309,32,466364,4.693324594,9.686522133,,,,,,,,,,8.347384764,4.671967886,13.76774174,5.304500427,2.740912776,9.265894736,,,,27.92349896,99,336592,22.51028125,34.24569266,29.41246375,68.52759297,38.35437358,113.0258433,,,,,,,10.84252686,6.068479973,17.88309917,35.04801579,26.32914815,45.73005804,,,,25.84731663,87,336592,20.70264104,31.88256958,,,,,,,,,,14.51423159,8.738515549,22.66577053,36.45891266,27.75421356,47.029341,,,,17.15398273,80,466364,13.60204145,21.34961639,57.578811,32.91126549,93.50438174,,,,,,,16.13827721,10.80805753,23.17725807,14.58737617,10.04127855,20.48609968,,,,25,,6600,,,36,129,0.494254561,23571,47690,,,0.509,,,,,27.22803577,,,,,0.656638134,15649,23832,0.630451368,0.682824899,0.103148704,2339,22676,0.082142951,0.124154456,0.852928835,20327,23832,0.831847841,0.874009829,68823,,,,,0.217834154,14992,68823,,,0.17688854,12174,68823,,,0.035990875,2477,68823,,,0.082516019,5679,68823,,,0.01681124,1157,68823,,,0.002557285,176,68823,,,0.396974849,27321,68823,,,0.46946515,32310,68823,,,0.044926353,2861,63682,0.033311347,0.056541358,0.470119001,32355,68823,,,0.545969133,37038,67839,, -35,037,35037,NM,Quay County,2024,1,14574.727,216,22318,11381.44743,17768.00658,0,,,,2,,,,2,,,,2,12872.80957,9237.750398,17463.41973,,17580.02973,11828.46492,23331.59453,,,,,2,,0.218,,,0.188,0.254,4.143298969,,,3.253622089,5.064265375,5.410158975,,,4.278812193,6.5347277,0.059221658,35,591,0.040191331,0.078251986,0,,,,,,,,,,0.055737705,0.029990682,0.081484728,0.060377359,0.031699486,0.089055231,,,,,,,0.192,,,0.158,0.231,0.399,,,0.318,0.481,5.3,0.182036899,0.171,,,0.276,,,0.228,0.331,0.749142465,6552,8746,,,0.122256943,,,0.095074808,0.153217301,0.2,3,15,0.07369192,0.354373303,508.3,44,8656,,,32.90246769,56,1702,24.8541705,42.72659107,,,,,,,,,,44.44444444,32.03164628,60.07597754,18.37672282,9.49552084,32.10043652,,,,,,,0.115134191,725,6297,0.097261851,0.133006531,0.000115527,1,8656,,,8656,0.000351041,3,8546,,,2848.666667,0.014275685,122,8546,,,70.04918033,1054,,,,,,,,637,963,0.32,,,,,,,,0.36,0.3,0.24,,,,,,,,0.26,0.23,0.861912226,5499,6380,0.822521642,0.901302809,0.468940937,921,1964,0.356627856,0.581254017,0.043448973,129,2969,,,0.306,532,,0.180893617,0.431106383,,,,,,,,,,0.490995261,0.274714793,0.707275729,0.225490196,0.09352693,0.357453462,5.495798871,83723,15234,3.833730376,7.157867366,0.452900479,851,1879,0.282027688,0.62377327,10.3974122,9,8656,,,132.0052802,55,41665,99.44444251,171.8230169,,,,,,,,,,119.5674777,75.79552421,179.4099236,147.8123768,99.72838994,211.0113589,,,,4.6,,,,,1,,,,,0.092767296,295,3180,0.05377372,0.131760872,0.081832543,0.037142324,0.126522763,0.004402516,0,0.015883733,0.011006289,0,0.022636752,0.819403857,2804,3422,0.734240455,0.90456726,,,,,,,,,,0.889048991,0.813915617,0.964182366,0.820679682,0.745769848,0.895589516,0.156,,3422,0.074046663,0.237953337,71.6076783,,,69.50849681,73.70685979,,,,,,,,,,71.13785336,68.42018409,73.85552264,70.45946301,66.98067387,73.93825215,,,,657.4118627,216,22318,558.2584619,756.5652636,,,,,,,,,,673.1638899,536.9418821,833.422701,704.1539886,547.5432878,860.7646895,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.136,,,0.118,0.156,0.179,,,0.155,0.205,0.126,,,0.107,0.146,108.9,8,7346,,,0.171,1480,,,,0.182036899,1645.795602,9041,,,,,,,,,,,,,,,,,,,,,,,,,,0.332,,,0.319,0.345,0.13601065,613,4507,0.112180863,0.159840437,0.064122947,121,1887,0.040293159,0.087952734,0.000936111,8,8546,,,1068.25,0.668548387,82.9,124,,,,,,,,,,,,,,,,,,2.743028791,,,,,,,,2.614618761,2.869063326,0.109320807,,,,,-1556.426067,,,,,0.94676872,38222,40371,0.603583614,1.289953826,39885,,,33915.6383,45854.3617,52976,12188.93617,93763.06383,,,,69583,56649.38298,82516.61702,34186,19017.14894,49354.85106,40615,34738.57447,46491.42553,,,,,,0.846323529,1151,1360,,,46.14955864,,,,,0.328369061,,39885,,,10.98901099,4,364,,,,,,,,,,,,,,,,,,,,,,,,,,44.12048568,18,41665,24.69390091,72.7700315,43.20172807,,,,,,,,,,,,,52.04849528,22.47084597,102.556285,,,,48.00192008,20,41665,29.32081984,74.13507237,,,,,,,,,,,,,49.27079227,23.62726003,90.61074124,,,,,,,,,,,,,,,,,,,,,,,,,,,26.25,,800,,,16,5,0.615250199,3873,6295,,,0.381,,,,,14.15416559,,,,,0.682725579,2565,3757,0.624585463,0.740865695,0.158881119,568,3575,0.100320863,0.217441375,0.625232899,2349,3757,0.567718343,0.682747454,8546,,,,,0.207933536,1777,8546,,,0.267259537,2284,8546,,,0.016030892,137,8546,,,0.027732272,237,8546,,,0.011935408,102,8546,,,0.002574304,22,8546,,,0.465129885,3975,8546,,,0.478235432,4087,8546,,,0.008377214,70,8356,0,0.025396907,0.503510414,4303,8546,,,0.403498742,3529,8746,, -35,039,35039,NM,Rio Arriba County,2024,1,19247.53956,927,107574,17540.02888,20955.05024,0,25209.04946,20301.62519,30116.47373,,,,,2,,,,2,19598.97324,17579.1731,21618.77337,,9863.993098,6084.374574,13643.61162,,,,,2,,0.22,,,0.191,0.255,3.98225754,,,3.242358382,4.827323683,5.251010568,,,4.386510535,6.196925355,0.126326601,369,2921,0.114278676,0.138374525,0,0.108108108,0.080357738,0.135858478,,,,,,,0.129091747,0.114980619,0.143202876,0.130841122,0.085658555,0.176023688,,,,,,,0.166,,,0.137,0.199,0.38,,,0.32,0.441,8,0,0.133,,,0.264,,,0.221,0.313,0.496444764,20038,40363,,,0.13025932,,,0.104508827,0.158795706,0.388888889,21,54,0.320445273,0.455599084,552.5,222,40179,,,24.65721857,214,8679,21.35357436,27.96086279,14.50151057,9.291391453,21.57709824,,,,,,,27.1927067,23.14055721,31.24485618,24.43991853,12.62846254,42.69161924,,,,,,,0.131199309,3947,30084,0.113326968,0.149071649,0.000497773,20,40179,,,2008.95,0.000749101,30,40048,,,1334.933333,0.005193768,208,40048,,,192.5384615,1374,,,,,2722,,,1195,905,0.29,,,,,0.34,,,0.3,0.26,0.29,,,,,0.26,,0.38,0.3,0.28,0.85264793,23603,27682,0.829089577,0.876206283,0.535094593,4780,8933,0.464692323,0.605496863,0.043467732,718,16518,,,0.23,2031,,0.140638298,0.319361702,0.281294964,0.176091681,0.386498247,,,,0.172839506,0.067363096,0.278315916,0.30087355,0.229136115,0.372610985,0.09610984,0,0.214202007,5.659407203,106544,18826,4.49215554,6.826658866,0.350917182,3233,9213,0.275772695,0.42606167,5.724383384,23,40179,,,198.175559,388,195786,178.4563132,217.8948048,183.3608974,136.5242318,241.0857172,,,,,,,215.0460557,190.7113037,239.3808077,131.7154945,90.66688582,184.9775256,,,,4.2,,,,,1,,,,,0.122746452,1600,13035,0.097873764,0.14761914,0.088249595,0.063804749,0.11269444,0.020713464,0.012147097,0.02927983,0.019946298,0.009214056,0.030678541,0.790294175,12116,15331,0.765929268,0.814659082,0.822241305,0.734627344,0.909855267,,,,,,,0.787434555,0.735036185,0.839832925,0.641456583,0.559940506,0.722972659,0.479,,15331,0.412982457,0.545017543,70.87884942,,,69.73001291,72.02768593,66.02648341,63.09308076,68.95988606,,,,,,,70.32410665,68.99455095,71.65366234,79.66581517,76.33955007,82.99208028,,,,729.9799809,927,107574,679.3834131,780.5765487,962.0241094,808.1321713,1115.916047,,,,,,,749.8292765,689.0666588,810.5918942,430.5610579,320.4070437,540.7150721,,,,60.29393292,24,39805,38.63146051,89.71259288,,,,,,,,,,52.76000791,30.15690316,85.67894743,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.128,,,0.111,0.147,0.161,,,0.139,0.185,0.131,,,0.113,0.15,160.1,54,33731,,,0.133,5360,,,,0,0,40246,,,91.82033821,108,117621,74.50292253,109.1377539,65.94328877,32.91865216,117.990759,,,,,,,107.3921604,86.35597892,132.0031977,,,,,,,0.324,,,0.311,0.337,0.157574066,3388,21501,0.134935769,0.180212364,0.068006182,616,9058,0.046559374,0.089452991,0.000898921,36,40048,,,1112.444444,0.684888889,246.56,360,,,0.090869753,210,2311,0.049667051,0.132072455,,,,,,,,,,,2.263247966,,,,,,,,2.320733379,2.832073416,0.345505539,,,,,-5930.2137,,,,,0.817233959,41777,51120,0.700648765,0.933819153,56353,,,51878.95745,60827.04255,45230,36919.3617,53540.6383,62083,15653.04255,108512.9575,77969,28025.34043,127912.6596,52403,46339.51064,58466.48936,54419,30932.3617,77905.6383,,,,,,0.999285714,4197,4200,,,64.06262658,,,,,0.230440261,,56353,,,11.90982561,28,2351,,,13.44032315,37,275291,9.463227845,18.52571502,25.41942044,12.18960014,46.74721922,,,,,,,11.73116256,7.436550751,17.60250378,,,,,,,17.88275097,32,195786,12.15046167,25.38313755,16.344376,,,,,,,,,,16.73400394,10.35861219,25.5797026,,,,,,,18.387423,36,195786,12.87832502,25.45594398,,,,,,,,,,17.20368446,11.02272525,25.59771879,,,,,,,27.24389828,75,275291,21.42905424,34.1504624,,,,,,,,,,30.09298222,22.90817235,38.81775453,,,,,,,18.5,,4000,,,27,47,0.572490962,16628,29045,,,0.35,,,,,2.198741888,,,,,0.788718386,11102,14076,0.76399595,0.813440822,0.095462992,1233,12916,0.068506954,0.12241903,0.665458937,9367,14076,0.627705468,0.703212406,40048,,,,,0.223756492,8961,40048,,,0.217863564,8725,40048,,,0.005743108,230,40048,,,0.202257291,8100,40048,,,0.008539752,342,40048,,,0.002521974,101,40048,,,0.709648422,28420,40048,,,0.129394726,5182,40048,,,0.022420349,855,38135,0.012854357,0.031986341,0.505318618,20237,40048,,,0.56405619,22767,40363,, -35,041,35041,NM,Roosevelt County,2024,1,10674.10523,301,52228,8967.055979,12381.15448,0,,,,2,,,,2,,,,2,11046.49327,8455.594642,13637.39189,,10993.0335,8559.427567,13426.63944,,,,,2,,0.195,,,0.169,0.227,3.845890343,,,3.106436046,4.797737648,4.903116872,,,4.015428858,6.019775743,0.070317003,122,1735,0.058285941,0.082348065,0,,,,,,,,,,0.08974359,0.071433025,0.108054155,0.047887324,0.032180754,0.063593894,,,,,,,0.172,,,0.141,0.21,0.366,,,0.302,0.446,6.1,0.147496467,0.153,,,0.255,,,0.214,0.306,0.798916159,15332,19191,,,0.154661083,,,0.125625972,0.194768037,0.117647059,2,17,0.02445786,0.265431552,630.9,120,19019,,,27.29785764,158,5788,23.04132378,31.5543915,,,,,,,,,,38.89278206,31.65736463,46.12819949,16.4541341,11.75507464,22.40586054,,,,,,,0.151192053,2283,15100,0.127362266,0.17502184,0.000420632,8,19019,,,2377.375,0.000369705,7,18934,,,2704.857143,0.002799197,53,18934,,,357.245283,2550,,,,,,,,2488,2563,0.26,,,,,,,,0.22,0.28,0.19,,,,,,,,0.17,0.2,0.857309104,9577,11171,0.817930626,0.896687582,0.564033311,2506,4443,0.471092546,0.656974076,0.037831021,300,7930,,,0.24,1035,,0.143489362,0.336510638,0.038461539,0,0.523776753,,,,,,,0.269711163,0.189328703,0.350093623,0.399738733,0.271540825,0.527936641,5.073658052,102082,20120,3.360607889,6.786708215,0.210757409,960,4555,0.125961932,0.295552887,10.51579999,20,19019,,,92.01896019,86,93459,73.60329047,113.6426673,,,,,,,,,,78.86435331,53.94315929,111.3329359,105.999576,78.67492842,139.7472263,,,,5.6,,,,,0,,,,,0.196757553,1335,6785,0.152515913,0.240999194,0.15869468,0.109720024,0.207669337,0.036845984,0.01493327,0.058758698,0.002063375,0,0.005289325,0.77525369,6723,8672,0.729951783,0.820555597,,,,,,,,,,0.736199723,0.625307752,0.847091693,0.769895127,0.698307724,0.841482529,0.224,,8672,0.168598948,0.279401052,74.73192109,,,73.3528402,76.11100199,,,,,,,,,,73.71308122,71.50905928,75.91710316,74.43905364,72.58883634,76.28927093,,,,549.8174042,301,52228,485.4413955,614.1934129,,,,,,,,,,549.5622512,446.0979139,653.0265886,581.6790151,490.0384366,673.3195937,,,,50.71461503,11,21690,25.3165531,90.74245511,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.126,,,0.11,0.146,0.168,,,0.147,0.194,0.114,,,0.098,0.134,114.4,18,15736,,,0.153,2940,,,,0.147496467,2927.214889,19846,,,19.68891514,11,55869,9.8286355,35.22890783,,,,,,,,,,,,,,,,,,,0.333,,,0.32,0.345,0.179020454,1908,10658,0.148041731,0.209999178,0.087907376,410,4664,0.056928652,0.118886099,0.000845041,16,18934,,,1183.375,0.822345133,185.85,226,,,,,,,,,,,,,,,,,,3.04572786,,,,,,,,2.822957516,3.370112675,0.063471427,,,,,-6169.797825,,,,,0.859504534,35354,41133,0.749701563,0.969307505,47854,,,40778.93617,54929.06383,,,,55375,4417.382979,106332.617,,,,65401,51677.42553,79124.57447,49527,44787.25532,54266.74468,,,,,,0.639364303,2092,3272,,,,,,,,0.306452961,,47854,,,10.14832162,13,1281,,,8.354789953,11,131661,4.170681042,14.94902706,,,,,,,,,,,,,,,,,,,23.36201877,21,93459,14.06546141,36.48268621,22.46974609,,,,,,,,,,,,,34.90251314,18.58411829,59.68436044,,,,23.539734,22,93459,14.75222597,35.63944017,,,,,,,,,,,,,29.67988128,16.22626728,49.79779759,,,,19.74768534,26,131661,12.8998437,28.93493448,,,,,,,,,,23.13290745,12.31729895,39.55797626,16.31200415,8.142893701,29.18668127,,,,21.5,,2000,,,19,24,0.520110193,6608,12705,,,0.527,,,,,18.59623438,,,,,0.600919408,4183,6961,0.549204548,0.652634268,0.11887685,779,6553,0.067542567,0.170211134,0.823588565,5733,6961,0.792818488,0.854358642,18934,,,,,0.236347312,4475,18934,,,0.15231858,2884,18934,,,0.021126017,400,18934,,,0.023555509,446,18934,,,0.016478293,312,18934,,,0.001848527,35,18934,,,0.44898067,8501,18934,,,0.48785254,9237,18934,,,0.030941629,555,17937,0.018381902,0.043501357,0.503432978,9532,18934,,,0.364181127,6989,19191,, -35,043,35043,NM,Sandoval County,2024,1,9119.546456,2066,415616,8531.995407,9707.097505,0,22095.56855,19655.22868,24535.90843,,5449.3556,2901.552352,9318.564038,1,10439.47332,5006.133237,19198.56313,1,7209.910988,6452.952539,7966.869437,,7324.180264,6405.407858,8242.952669,,,,,2,,0.151,,,0.129,0.174,3.349473768,,,2.661845701,4.083659617,5.01647506,,,4.177159269,5.902294382,0.098448312,939,9538,0.092469335,0.104427289,0,0.09994848,0.086605124,0.113291837,0.117241379,0.064877295,0.169605464,0.131944444,0.076667486,0.187221403,0.097880448,0.088892446,0.10686845,0.091663784,0.081145274,0.102182294,,,,0.150753769,0.101039571,0.200467967,0.135,,,0.109,0.161,0.348,,,0.291,0.404,7,0.184221673,0.093,,,0.207,,,0.169,0.246,0.694142467,103312,148834,,,0.144407915,,,0.116633492,0.175115744,0.454545455,40,88,0.404890395,0.502392732,447.9,678,151369,,,12.72441516,421,33086,11.50892106,13.93990926,29.9834574,25.10307581,34.86383899,,,,,,,12.09505865,10.41456254,13.77555476,6.663249616,5.14255538,8.492858618,,,,,,,0.090516514,10732,118564,0.07979311,0.101239919,0.000660637,100,151369,,,1513.69,0.000429965,66,153501,,,2325.772727,0.003830594,588,153501,,,261.0561225,1951,,,,,2824,,4846,2189,1413,0.38,,,,,0.24,0.31,0.36,0.32,0.42,0.4,,,,,0.37,0.37,0.22,0.32,0.42,0.918671888,95484,103937,0.910846153,0.926497623,0.647783055,24413,37687,0.608111928,0.687454183,0.03789582,2579,68055,,,0.129,4207,,0.089680851,0.168319149,0.250254117,0.20698751,0.293520723,0.089783282,0,0.246266988,0.040097205,0.000131886,0.080062525,0.112219751,0.084007776,0.140431727,0.039299868,0.014563848,0.064035888,3.588173566,136774,38118,3.356862863,3.81948427,0.234288946,7870,33591,0.199042033,0.26953586,4.29414213,65,151369,,,99.35933644,730,734707,92.15152655,106.5671463,166.0052985,139.0774539,192.9331432,,,,,,,78.9325059,68.77544703,89.08956477,107.0118386,95.5352011,118.4884761,,,,6,,,,,1,,,,,0.13493953,7085,52505,0.121663843,0.148215216,0.099171962,0.087819879,0.110524045,0.024092944,0.019267806,0.028918081,0.017141225,0.013306973,0.020975476,0.729887051,48401,66313,0.709774402,0.749999699,0.641484552,0.562057645,0.720911459,,,,,,,0.697529913,0.662398391,0.732661435,0.660385485,0.627456294,0.693314676,0.476,,66313,0.44345685,0.50854315,77.31961224,,,76.8251359,77.81408859,66.91818039,65.42335132,68.41300947,84.53334177,78.82135907,90.24532447,78.82182372,73.23894104,84.4047064,78.91272092,78.11659637,79.70884547,78.84342341,78.09949012,79.58735669,,,,386.7441331,2066,415616,369.0399446,404.4483217,902.6946192,818.8671399,986.5220985,289.8616531,187.5831786,427.8929804,327.3171874,217.4998939,473.0644696,327.6491342,300.9026866,354.3955819,322.6587756,297.8718924,347.4456587,,,,51.09243698,76,148750,40.25502916,63.94980367,86.34401272,51.98473603,134.8368715,,,,,,,33.8542372,21.90867731,49.97553246,60.79738104,39.7148678,89.0822497,,,,5.273498087,51,9671,3.926465706,6.933676081,,,,,,,,,,,,,,,,,,,,,,0.103,,,0.088,0.117,0.149,,,0.128,0.17,0.098,,,0.083,0.113,161.3,207,128310,,,0.093,13740,,,,0.184221673,24236.38757,131561,,,24.38364193,109,447021,19.80600447,28.96127939,32.07123588,18.68267676,51.34915543,,,,,,,23.7346139,17.17685777,31.97036916,24.01203804,17.51454531,32.1299961,,,,0.314,,,0.303,0.325,0.106610106,9148,85808,0.092312234,0.120907979,0.052150072,1807,34650,0.0378522,0.066447945,0.000918561,141,153501,,,1088.659575,0.850565244,1414.49,1663,,,0.087597681,695,7934,0.056894859,0.118300503,,,,,,,,,,,2.827774063,,,,,,3.669621101,2.459861325,2.815408301,3.164584614,0.158774189,,,,,-7224.719,,,,,0.831099669,47130,56708,0.765100027,0.89709931,82862,,,78185.40426,87538.59575,53156,49185.95745,57126.04255,75469,50464.40426,100473.5957,71250,45767.61702,96732.38298,72024,63321.3617,80726.6383,82242,77347.3617,87136.6383,,,,,,0.46969697,10478,22308,,,31.67788342,,,,,0.284943641,,82862,,,6.99844479,54,7716,,,6.10160551,62,1016126,4.678065957,7.821982892,15.47697596,9.318150554,24.16921513,,,,,,,6.489665208,4.239264775,9.508863156,3.429559142,1.919498217,5.656536253,,,,23.3502977,171,734707,19.75630462,26.94429078,23.27458429,24.57281475,15.39965218,37.20353684,,,,,,,18.05696336,13.48580392,23.67930509,27.91161109,21.83911667,35.15005482,,,,19.46354125,143,734707,16.2734,22.6536825,15.9183163,8.702691647,26.70822991,,,,,,,17.69176856,13.21305898,23.2004007,23.38881502,18.33309739,29.40792342,,,,14.66353582,149,1016126,12.30901985,17.0180518,41.54346179,30.93183601,54.62198006,,,,,,,13.22893292,9.909378548,17.30376998,9.602765597,6.920828795,12.98014943,,,,13.85542169,,16600,,,59,171,0.704796097,76562,108630,,,0.679,,,,,37.10612563,,,,,0.81043871,44502,54911,0.795615576,0.825261844,0.08411215,4419,52537,0.072178717,0.096045582,0.882027281,48433,54911,0.869324082,0.894730479,153501,,,,,0.216630511,33253,153501,,,0.198624113,30489,153501,,,0.021465658,3295,153501,,,0.140546316,21574,153501,,,0.020299542,3116,153501,,,0.002006502,308,153501,,,0.414108051,63566,153501,,,0.409404499,62844,153501,,,0.01895481,2692,142022,0.015378607,0.022531013,0.505332213,77569,153501,,,0.191548974,28509,148834,, -35,045,35045,NM,San Juan County,2024,1,16368.8974,2572,344746,15523.62987,17214.16492,0,24519.90713,22924.70223,26115.11203,,,,,2,,,,2,11597.24719,10010.00663,13184.48775,,9570.635677,8491.885946,10649.38541,,,,,2,,0.222,,,0.196,0.251,4.445428798,,,3.753678161,5.201082587,5.685634006,,,4.933924128,6.500778092,0.077531012,775,9996,0.072288294,0.082773731,0,0.064437012,0.057251147,0.071622877,,,,,,,0.095326238,0.08294452,0.107707956,0.086086086,0.076043818,0.096128355,,,,0.054644809,0.021713993,0.087575624,0.218,,,0.187,0.253,0.367,,,0.327,0.411,5.4,0.192133099,0.16,,,0.257,,,0.224,0.292,0.540321056,65736,121661,,,0.128222587,,,0.107164348,0.150497377,0.401234568,65,162,0.363482281,0.438449421,781,945,120993,,,26.91143572,818,30396,25.0672006,28.75567083,29.81829477,26.83584414,32.80074539,,,,,,,29.36316258,25.57653223,33.14979293,21.20890774,18.11050319,24.30731229,,,,16.82439537,9.61659564,27.32176404,0.148654078,13320,89604,0.131973227,0.165334929,0.000528956,64,120993,,,1890.515625,0.001071268,129,120418,,,933.4728682,0.002798585,337,120418,,,357.3234421,2275,,,,,2752,,,2087,2082,0.25,,,,,0.19,0.16,,0.24,0.28,0.46,,,,,0.58,0.51,0.15,0.37,0.42,0.855661182,68227,79736,0.843019949,0.868302415,0.569640211,18065,31713,0.531906775,0.607373647,0.046211583,2278,49295,,,0.288,8515,,0.220085106,0.355914894,0.448017656,0.405687593,0.490347719,0.229773463,0,0.5683234,0.020979021,0,0.388026811,0.320948044,0.258827887,0.383068201,0.168459689,0.119174171,0.217745206,4.967501307,104551,21047,4.451614769,5.483387844,0.32673995,10225,31294,0.287545004,0.365934897,6.694602167,81,120993,,,141.3987024,877,620232,132.0403004,150.7571045,190.5964079,173.1024386,208.0903773,,,,,,,90.18175091,73.8406315,106.5228703,121.4006437,107.2060195,135.595268,,,,5.5,,,,,1,,,,,0.186553465,8130,43580,0.16847077,0.20463616,0.107739355,0.092828595,0.122650115,0.065511703,0.056194719,0.074828687,0.029371271,0.023257159,0.035485384,0.834216911,37136,44516,0.809295033,0.859138789,0.869218398,0.845629469,0.892807328,,,,,,,0.849780819,0.819182043,0.880379595,0.791053458,0.745190623,0.836916293,0.332,,44516,0.303628539,0.360371461,71.30808118,,,70.72319871,71.89296364,66.04366698,65.10323621,66.98409775,,,,,,,75.07483066,73.63567531,76.51398601,76.06394569,75.22335906,76.90453232,,,,668.8867712,2572,344746,641.98523,695.7883124,967.2850776,914.2062129,1020.363942,,,,,,,497.7178124,442.7550233,552.6806014,453.4295624,419.6643639,487.1947609,,,,64.81389154,91,140402,52.18410243,79.57709642,83.67455937,61.48091894,111.2694256,,,,,,,65.27730767,43.01815708,94.97505547,32.89744222,16.99858845,57.46521109,,,,5.613701237,59,10510,4.273409479,7.241265591,6.11814346,4.097416696,8.786674565,,,,,,,,,,,,,,,,,,,0.147,,,0.13,0.165,0.191,,,0.17,0.215,0.128,,,0.112,0.144,146.2,146,99879,,,0.16,19690,,,,0.192133099,24985.75668,130044,,,28.78377681,106,368263,23.30415082,34.26340281,22.41225951,15.32996891,31.63942322,,,,,,,28.02761995,17.5647602,42.43415342,34.76922849,25.54712131,46.23570307,,,,0.363,,,0.354,0.372,0.183693469,11434,62245,0.161055172,0.206331767,0.074191766,2148,28952,0.055127936,0.093255596,0.001154313,139,120418,,,866.3165468,0.76206659,1327.52,1742,,,0.133568617,984,7367,0.094784747,0.172352487,,,,,,,,,,,2.719959094,,,,,,,,2.761335247,3.133357287,0.14262508,,,,,-6718.88475,,,,,0.755913379,39340,52043,0.683532242,0.828294517,51898,,,46903.2766,56892.7234,39517,35527.89362,43506.10638,55598,44089.40426,67106.59575,35250,11815.78723,58684.21277,45376,38549.95745,52202.04255,61915,58047.42553,65782.57447,,,,,,0.73613137,15645,21253,,,65.73330034,,,,,0.31775791,,51898,,,11.04972376,86,7783,,,10.53804938,90,854048,8.473836146,12.9530518,19.32632183,14.81738013,24.77547237,,,,,,,8.463960456,4.737214416,13.96001561,3.044093697,1.459761251,5.598196692,,,,33.41277721,201,620232,28.71552942,38.110025,32.40722826,34.42751035,27.29887457,42.84801675,,,,,,,23.26106745,15.32919002,33.84363189,34.03222496,26.57945004,42.92702106,,,,21.28235886,132,620232,17.65167138,24.91304634,11.70328821,7.77675002,16.91450996,,,,,,,24.66509427,16.87090622,34.81975372,28.5140302,22.05274889,36.27683773,,,,32.0825059,274,854048,28.28368278,35.88132902,57.66725061,49.35728066,65.97722056,,,,,,,14.67086479,9.583495963,21.49621609,17.96015281,13.67210046,23.16728858,,,,17.84313726,,15300,,,145,128,0.578697505,52294,90365,,,0.507,,,,,24.57374598,,,,,0.703500694,28878,41049,0.682702404,0.724298985,0.133538685,5159,38633,0.115878717,0.151198652,0.672830032,27619,41049,0.651482881,0.694177184,120418,,,,,0.250751549,30195,120418,,,0.167367005,20154,120418,,,0.005348038,644,120418,,,0.431222907,51927,120418,,,0.006610307,796,120418,,,0.000847049,102,120418,,,0.21814845,26269,120418,,,0.356748991,42959,120418,,,0.020846257,2386,114457,0.016873152,0.024819361,0.504932817,60803,120418,,,0.352035574,42829,121661,, -35,047,35047,NM,San Miguel County,2024,1,12901.1292,541,73914,11177.88044,14624.37796,0,,,,2,,,,2,,,,2,13724.22966,11751.52481,15696.9345,,7852.979174,4519.291888,11186.66646,1,,,,2,,0.216,,,0.18,0.252,3.941460244,,,3.060301765,4.870475253,5.251006747,,,4.199423825,6.311206356,0.120741184,202,1673,0.105127902,0.136354465,0,,,,,,,,,,0.125617502,0.108361231,0.142873773,0.102040816,0.059662539,0.144419093,,,,,,,0.148,,,0.115,0.182,0.349,,,0.281,0.417,5.1,0.226753311,0.16,,,0.28,,,0.229,0.333,0.563986618,15341,27201,,,0.137209193,,,0.108824057,0.16829688,0.391304348,9,23,0.282261006,0.49504965,526.7,143,27150,,,21.92034579,142,6478,18.31489726,25.52579431,,,,,,,,,,27.22125436,22.44915806,31.99335065,15.10574018,8.45456811,24.91462122,,,,,,,0.105147808,2063,19620,0.087275468,0.123020149,0.000478821,13,27150,,,2088.461539,0.000519423,14,26953,,,1925.214286,0.010833673,292,26953,,,92.30479452,1903,,,,,,,,1982,1715,0.25,,,,,,,,0.25,0.25,0.31,,,,,0.36,,,0.3,0.32,0.834657222,16497,19765,0.805506705,0.86380774,0.582873824,3594,6166,0.490495101,0.675252547,0.049411536,508,10281,,,0.295,1254,,0.180617021,0.409382979,,,,,,,,,,0.315410342,0.234352527,0.396468157,0.060483871,0,0.282393877,6.407139128,98183,15324,4.966012283,7.848265974,0.384581204,1731,4501,0.254890711,0.514271698,6.629834254,18,27150,,,149.0029947,204,136910,128.5556939,169.4502954,,,,,,,,,,145.0244376,122.1190892,167.9297859,176.0707559,127.4232791,237.1661527,,,,4,,,,,1,,,,,0.180904523,2160,11940,0.141903527,0.219905518,0.147596767,0.11229128,0.182902255,0.029313233,0.011625276,0.04700119,0.018844221,0.006821604,0.030866838,0.74180791,7878,10620,0.701822012,0.781793807,,,,,,,,,,0.755948335,0.701988344,0.809908325,0.71678744,0.616721059,0.81685382,0.23,,10620,0.175477155,0.284522845,75.01337001,,,73.70545826,76.32128176,,,,,,,,,,73.88035093,72.43372696,75.3269749,80.44779636,77.27136746,83.62422525,,,,526.7981129,541,73914,477.2758679,576.3203579,,,,,,,,,,553.5649982,496.3247546,610.8052418,388.8541584,288.2694476,489.4388692,,,,61.30402417,14,22837,33.51548048,102.8577358,,,,,,,,,,69.27421933,36.88560424,118.4610248,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.127,,,0.107,0.147,0.16,,,0.135,0.184,0.131,,,0.111,0.151,162.7,39,23976,,,0.16,4390,,,,0.226753311,6664.960061,29393,,,51.48888698,42,81571,37.10866084,69.59801741,,,,,,,,,,50.51780753,34.55414295,71.3160711,,,,,,,0.344,,,0.327,0.359,0.121790652,1850,15190,0.100343843,0.14323746,0.052070264,249,4782,0.034197923,0.069942604,0.00115015,31,26953,,,869.4516129,0.754416961,213.5,283,,,,,,,,,,,,,,,,,,2.306032406,,,,,,,,2.239681606,,0.058467861,,,,,-2758.764,,,,,1.010245553,41512,41091,0.843888603,1.176602502,47675,,,42677.89362,52672.10638,39219,6125.382979,72312.61702,,,,51000,45652.59575,56347.40426,38944,32562.38298,45325.61702,52708,45742.55319,59673.44681,,,,,,1,3244,3244,,,,,,,,0.281279497,,47675,,,10.07556675,12,1191,,,14.53511008,28,192637,9.658475088,21.00728102,,,,,,,,,,14.72665323,9.229115177,22.29632998,,,,,,,23.76639411,34,136910,16.0350863,33.92800538,24.83383245,,,,,,,,,,19.51661904,11.75027958,30.4776182,47.30468141,20.42280385,93.2090805,,,,29.21627346,40,136910,20.8725341,39.78427212,,,,,,,,,,26.36807956,17.52139737,38.10921653,40.94668741,19.6355282,75.30241603,,,,18.1688876,35,192637,12.65529592,25.26852441,,,,,,,,,,20.08179987,13.54910604,28.66801799,,,,,,,17.72727273,,2200,,,15,24,0.52616929,11531,21915,,,0.398,,,,,29.10924762,,,,,0.716122907,8297,11586,0.677119559,0.755126255,0.141597697,1574,11116,0.105752675,0.177442719,0.705765579,8177,11586,0.66205042,0.749480739,26953,,,,,0.161763069,4360,26953,,,0.248172745,6689,26953,,,0.015916596,429,26953,,,0.032872037,886,26953,,,0.013913108,375,26953,,,0.001966386,53,26953,,,0.776165919,20920,26953,,,0.176492413,4757,26953,,,0.016019008,418,26094,0.007278548,0.024759468,0.500018551,13477,26953,,,0.465828462,12671,27201,, -35,049,35049,NM,Santa Fe County,2024,1,8722.657203,2051,413040,8107.706767,9337.607639,0,10533.50775,7106.913449,15037.23729,,,,,2,,,,2,10307.30749,9462.532618,11152.08236,,6318.489176,5376.821676,7260.156677,,,,,2,,0.147,,,0.124,0.173,3.333954376,,,2.707718277,4.007613671,5.031165075,,,4.297111898,5.80559467,0.115431497,947,8204,0.108516832,0.122346162,0,0.104575163,0.070288581,0.138861746,0.167785235,0.107784369,0.227786101,0.169491525,0.073755346,0.265227705,0.121711745,0.112989578,0.130433912,0.095759234,0.08344325,0.108075218,,,,,,,0.117,,,0.093,0.144,0.264,,,0.227,0.306,7.8,0.093451555,0.1,,,0.172,,,0.142,0.205,0.833971697,129118,154823,,,0.13414642,,,0.112491835,0.158166654,0.29245283,31,106,0.242705662,0.343218962,413,641,155201,,,16.17626551,464,28684,14.70437554,17.64815549,18.07228916,10.71078392,28.5620083,,,,,,,19.91506809,17.98262023,21.84751595,5.782256732,4.027553676,8.041719374,,,,,,,0.125931044,14033,111434,0.111633172,0.140228917,0.001101797,171,155201,,,907.6081871,0.000892949,139,155664,,,1119.884892,0.007734608,1204,155664,,,129.2890365,1206,,,,,1807,,,1357,1097,0.42,,,,,0.38,0.27,0.27,0.37,0.44,0.44,,,,,0.4,0.44,0.27,0.34,0.47,0.906513515,105675,116573,0.897902513,0.915124517,0.633482092,22144,34956,0.597183926,0.669780258,0.035937997,2599,72319,,,0.161,3990,,0.112148936,0.209851064,0.188927944,0.126615411,0.251240476,0.109589041,0,0.521369056,0.393442623,0.296762963,0.490122283,0.201286174,0.16987922,0.232693127,0.076447442,0.029073061,0.123821824,4.903896104,143488,29260,4.555267443,5.252524765,0.317729423,8396,26425,0.272315766,0.36314308,8.698397562,135,155201,,,106.7021371,807,756311,99.34019457,114.0640796,68.63055644,36.54288085,117.3603417,,,,,,,118.6236535,107.7357328,129.5115741,95.58150008,84.97547581,106.1875244,,,,2.9,,,,,1,,,,,0.171258907,10815,63150,0.15589949,0.186618325,0.140674013,0.126197671,0.155150355,0.030007918,0.023967389,0.036048447,0.006334125,0.004184647,0.008483603,0.709142566,50169,70746,0.692906268,0.725378865,0.790207156,0.734910917,0.845503395,0.748381877,0.644035431,0.852728323,0.697456493,0.5205387,0.874374285,0.762607691,0.741364372,0.783851009,0.642232993,0.617017732,0.667448253,0.285,,70746,0.262613947,0.307386053,79.72243295,,,79.17441025,80.27045565,79.45563027,74.34253883,84.56872172,90.79735382,81.70073858,99.89396907,,,,77.06436849,76.32232793,77.80640904,82.43488986,81.58801604,83.28176368,,,,342.4248666,2051,413040,325.5838216,359.2659117,447.3648225,336.0742233,583.7140516,,,,,,,417.4301059,391.2212847,443.6389271,264.5124465,240.7069156,288.3179774,,,,44.0327197,52,118094,32.88574119,57.74305362,,,,,,,,,,47.37484159,33.8452814,64.51108804,,,,,,,3.231597846,27,8355,2.129643343,4.7018052,,,,,,,,,,,,,,,,,,,,,,0.101,,,0.087,0.117,0.148,,,0.129,0.169,0.09,,,0.078,0.104,339.2,467,137691,,,0.1,15420,,,,0.093451555,13472.91071,144170,,,42.18533131,193,457505,36.23366079,48.13700183,,,,,,,,,,61.68339595,51.57327554,71.79351637,21.22101689,15.2942424,28.68465002,,,,0.286,,,0.273,0.298,0.143038995,12248,85627,0.125166654,0.160911335,0.075171759,2057,27364,0.056107929,0.094235588,0.001162761,181,155664,,,860.0220995,0.741248481,1220.095,1646,,,0.090678598,608,6705,0.053858752,0.127498444,,,,,,,,,,,2.608314088,,,,,,,,2.457871975,3.235332199,0.172159838,,,,,-5105.2235,,,,,0.886670518,49118,55396,0.825853132,0.947487904,72836,,,67745.95745,77926.04255,60063,39924.44681,80201.55319,77264,59701.44681,94826.55319,53583,29344.53192,77821.46809,59213,56575.04255,61850.95745,81961,77752.65957,86169.34043,,,,,,0.592311318,11309,19093,,,60.36812297,,,,,0.317082212,,72836,,,16.61076505,104,6261,,,5.219959607,55,1053648,3.932387949,6.794494933,,,,,,,,,,7.457052041,5.327427306,10.15438838,2.20021034,1.055086379,4.046265152,,,,24.32281392,192,756311,20.6310007,28.01462713,25.38638206,,,,,,,,,,20.21999844,15.93105898,25.30834321,28.14411521,21.24318654,35.04504388,,,,17.84979988,135,756311,14.83871819,20.86088158,,,,,,,,,,17.94963177,13.96588492,22.71640781,17.15565386,12.95919656,22.27804352,,,,11.57881949,122,1053648,9.524157252,13.63348173,,,,,,,,,,13.04984107,10.17299132,16.48768912,10.3409886,7.598169462,13.75132262,,,,11.75572519,,13100,,,68,86,0.729609583,82227,112700,,,0.611,,,,,52.91671974,,,,,0.71508561,48530,67866,0.698798562,0.731372658,0.159998774,10442,65263,0.145402549,0.174595,0.857130227,58170,67866,0.844474351,0.869786103,155664,,,,,0.161694419,25170,155664,,,0.275998304,42963,155664,,,0.009353479,1456,155664,,,0.043471837,6767,155664,,,0.016792579,2614,155664,,,0.0019465,303,155664,,,0.503430466,78366,155664,,,0.434140199,67580,155664,,,0.040635459,6034,148491,0.034261957,0.047008962,0.511537671,79628,155664,,,0.350380757,54247,154823,, -35,051,35051,NM,Sierra County,2024,1,15826.57044,352,27473,12629.91326,19023.22761,0,,,,2,,,,2,,,,2,11922.96034,8207.217285,16744.26922,,19683.93297,14291.71581,25076.15013,,,,,2,,0.189,,,0.161,0.22,3.861648438,,,3.075226884,4.780430576,5.199953912,,,4.17168864,6.348250284,0.085072231,53,623,0.063164401,0.106980061,0,,,,,,,,,,0.071969697,0.040794441,0.103144953,0.097633136,0.065989389,0.129276884,,,,,,,0.179,,,0.145,0.216,0.34,,,0.265,0.417,5.3,0.149669668,0.188,,,0.252,,,0.206,0.305,0.736264686,8523,11576,,,0.117020669,,,0.091290241,0.146998381,0.3,6,20,0.18023908,0.422795722,252.1,29,11502,,,39.56343793,58,1466,30.04217714,51.14491797,,,,,,,,,,31.16883117,19.97045825,46.37675012,51.15511551,34.75741911,72.61060314,,,,,,,0.10944993,776,7090,0.0903861,0.128513759,0.000434707,5,11502,,,2300.4,0.000699545,8,11436,,,1429.5,0.002448409,28,11436,,,408.4285714,1773,,,,,,,,1052,1811,0.27,,,,,,,,0.22,0.27,0.19,,,,,,,,0.16,0.19,0.903468586,8283,9168,0.877803989,0.929133183,0.482678984,1045,2165,0.343438434,0.621919534,0.059135709,234,3957,,,0.318,585,,0.194085106,0.441914894,,,,,,,,,,0.362962963,0.162271962,0.563653964,0.424010217,0.212087352,0.635933082,5.647709321,89375,15825,3.538884794,7.756533847,0.393922952,726,1843,0.205140961,0.582704943,9.563554165,11,11502,,,184.6354355,102,55244,148.8034363,220.4674348,,,,,,,,,,121.7250174,75.34970429,186.0696194,209.6317281,164.605995,263.1734377,,,,4.5,,,,,1,,,,,0.143518519,775,5400,0.102889234,0.184147803,0.126153267,0.083185396,0.169121138,0.006481482,0,0.016240033,0.012037037,0.002685324,0.021388751,0.686125212,2433,3546,0.591104066,0.781146358,,,,,,,,,,0.599093264,0.445963759,0.752222769,0.774921065,0.682537205,0.867304924,0.081,,3546,0.030169327,0.131830673,70.93840668,,,68.92665947,72.95015389,,,,,,,,,,74.20228837,71.05938441,77.34519232,68.38798429,65.24657428,71.5293943,,,,719.5623329,352,27473,624.4502911,814.6743747,,,,,,,,,,555.9496544,423.2146356,717.1345486,831.4499473,688.9529045,973.9469902,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.125,,,0.107,0.145,0.173,,,0.149,0.199,0.109,,,0.092,0.127,147.3,15,10180,,,0.188,2170,,,,0.149669668,1794.239983,11988,,,60.31363088,20,33160,36.84113265,93.14951117,,,,,,,,,,,,,47.5895874,22.82105695,87.51894562,,,,0.339,,,0.326,0.352,0.128947368,686,5320,0.105117581,0.152777156,0.052291105,97,1855,0.032035786,0.072546424,0.001311647,15,11436,,,762.4,0.825,80.025,97,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.052132697,,,,,-11321.18,,,,,1.368783674,41919,30625,0.543925424,2.193641923,40420,,,34463.74468,46376.25532,25033,16046.78723,34019.21277,,,,,,,,,,34792,26616,42968,,,,,,1,1254,1254,,,,,,,,0.332681841,,40420,,,11.90476191,6,504,,,,,,,,,,,,,,,,,,,,,,,,,,40.98791154,24,55244,23.87696892,65.62561694,43.44363189,,,,,,,,,,,,,58.14894583,30.04640884,101.5745061,,,,32.58272392,18,55244,19.31058718,51.49475105,,,,,,,,,,,,,50.99150142,30.22079541,80.588556,,,,24.44767554,19,77717,14.71909771,38.17807374,,,,,,,,,,,,,23.9540083,12.37738564,41.84283186,,,,47.14285714,,700,,,12,21,0.660188784,5945,9005,,,0.404,,,,,22.50067524,,,,,0.732261116,3870,5285,0.681050597,0.783471636,0.116891192,564,4825,0.068022714,0.16575967,0.772753075,4084,5285,0.707605162,0.837900988,11436,,,,,0.164130815,1877,11436,,,0.367611053,4204,11436,,,0.008481987,97,11436,,,0.033403288,382,11436,,,0.009793634,112,11436,,,0.000524659,6,11436,,,0.32826163,3754,11436,,,0.620146905,7092,11436,,,0.015246393,168,11019,0.001924829,0.028567956,0.503934942,5763,11436,,,0.333707671,3863,11576,, -35,053,35053,NM,Socorro County,2024,1,15062.56606,350,45374,12756.08324,17369.04888,0,32608.13038,24202.38288,42989.75476,,,,,2,,,,2,14186.86222,11034.30462,17339.41981,,8975.426056,6012.991508,11937.8606,,,,,2,,0.239,,,0.208,0.272,4.334479944,,,3.490313641,5.290266213,5.425653904,,,4.347607756,6.574440706,0.103365385,129,1248,0.086474823,0.120255946,0,0.08097166,0.046951326,0.114991994,,,,,,,0.116959064,0.092874689,0.141043439,0.098425197,0.061790446,0.135059948,,,,,,,0.2,,,0.167,0.236,0.374,,,0.301,0.453,4,0.272833976,0.186,,,0.281,,,0.235,0.333,0.520156674,8632,16595,,,0.1301691,,,0.102526784,0.160880335,0.090909091,3,33,0.027235464,0.18917707,447.6,73,16311,,,35.48795944,140,3945,29.60937066,41.36654823,56.91056911,39.64029659,79.14882499,,,,,,,38.07439825,30.49603218,46.96462958,17.12328767,9.583774124,28.24225899,,,,,,,0.12225021,1456,11910,0.10318638,0.14131404,0.000429158,7,16311,,,2330.142857,0.000496432,8,16115,,,2014.375,0.001923674,31,16115,,,519.8387097,2173,,,,,753,,,2554,1719,0.24,,,,,0.16,,,0.24,0.25,0.33,,,,,0.18,,,0.39,0.32,0.847340376,9064,10697,0.811693917,0.882986835,0.455272512,1537,3376,0.373583525,0.536961499,0.04293381,264,6149,,,0.328,1104,,0.194553192,0.461446809,0.779411765,0.499896066,1,,,,,,,0.315354713,0.176679447,0.45402998,0.112852665,0.012489356,0.213215973,6.235932024,94306,15123,4.853674942,7.618189106,0.255090498,902,3536,0.136734422,0.373446573,4.904665563,8,16311,,,150.5625015,125,83022,124.1677312,176.9572718,180.2704056,106.8396673,284.9049601,,,,,,,122.3226921,91.07727877,160.8317496,187.6037232,140.1114337,246.0173236,,,,4.3,,,,,1,,,,,0.114,570,5000,0.075710434,0.152289566,0.060606061,0.033349166,0.087862955,0.04,0.014082289,0.065917711,0.016,0.00593598,0.026064021,0.591278494,2983,5045,0.528066829,0.654490158,,,,,,,,,,0.643728648,0.529811528,0.757645768,0.458569223,0.353084127,0.564054318,0.201,,5045,0.133588653,0.268411347,72.83748315,,,71.21510285,74.45986344,61.49940259,57.21801171,65.78079347,,,,,,,72.39336838,70.18255738,74.60417939,78.37253454,75.8028601,80.94220898,,,,628.0992949,350,45374,556.4651857,699.7334041,1269.652135,979.8907131,1618.275871,,,,,,,584.0553383,487.4411062,680.6695704,453.9094893,351.5786693,556.2403094,,,,75.31429234,13,17261,40.10168873,128.7897336,,,,,,,,,,101.2248203,48.54123592,186.1560486,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.145,,,0.126,0.166,0.183,,,0.16,0.208,0.142,,,0.122,0.163,152.7,21,13754,,,0.186,3090,,,,0.272833976,4874.45182,17866,,,64.66083372,32,49489,44.2279624,91.2818042,,,,,,,,,,60.12747024,33.65288866,99.17111826,61.30456106,29.39791991,112.7412705,,,,0.337,,,0.323,0.348,0.146367146,1251,8547,0.12134587,0.171388423,0.063366337,224,3535,0.039536549,0.087196124,0.000868756,14,16115,,,1151.071429,0.766428571,107.3,140,,,0.14162473,197,1391,0.046140741,0.23710872,,,,,,,,,,,2.581011381,,,,,,,,2.487730691,2.740331802,0.076084021,,,,,-17386.5855,,,,,0.762537651,40506,53120,0.528838451,0.99623685,42280,,,36204.59575,48355.40426,26171,21604.02128,30737.97872,,,,,,,38750,27384.38298,50115.61702,54973,37063.7234,72882.2766,,,,,,1,1916,1916,,,75.66576611,,,,,0.306267739,,42280,,,13.00236407,11,846,,,,,,,,,,,,,,,,,,,,,,,,,,31.59906827,30,83022,20.8239851,45.97498531,36.13500036,,,,,,,,,,27.04882997,13.50267846,48.39782847,31.11113036,15.53056419,55.666406,,,,22.88550023,19,83022,13.77856612,35.73854348,,,,,,,,,,,,,46.9009308,24.97277037,80.20202005,,,,26.42683603,31,117305,17.95575293,37.51078428,,,,,,,,,,23.85089782,13.03950778,40.01775379,30.17349761,15.59108652,52.70702803,,,,23.52941177,,1700,,,31,9,0.583299389,7160,12275,,,0.419,,,,,26.34584983,,,,,0.749444781,3712,4953,0.706240282,0.79264928,0.082217573,393,4780,0.045092019,0.119343127,0.543508985,2692,4953,0.485638726,0.601379243,16115,,,,,0.212783121,3429,16115,,,0.209432206,3375,16115,,,0.009556314,154,16115,,,0.151039404,2434,16115,,,0.022401489,361,16115,,,0.001489296,24,16115,,,0.504374806,8128,16115,,,0.329754887,5314,16115,,,0.026722926,418,15642,0.012483638,0.040962213,0.485820664,7829,16115,,,0.510575475,8473,16595,, -35,055,35055,NM,Taos County,2024,1,12062.90398,609,88759,10480.91061,13644.89734,0,19085.57687,12228.48923,28397.82553,1,,,,2,,,,2,12982.81731,10918.78583,15046.84879,,9503.145155,6736.091449,12270.19886,,,,,2,,0.174,,,0.15,0.203,3.403478701,,,2.685575225,4.214179998,5.049801036,,,4.142950415,6.0707437,0.112612613,200,1776,0.097910331,0.127314894,0,0.074626866,0.030132019,0.119121713,,,,,,,0.12628866,0.1072057,0.14537162,0.090697674,0.06355366,0.117841688,,,,,,,0.136,,,0.11,0.166,0.307,,,0.25,0.372,6.8,0.138023641,0.125,,,0.22,,,0.181,0.264,0.798689437,27546,34489,,,0.130346344,,,0.104073333,0.161575643,0.529411765,27,51,0.468576107,0.585836132,372.6,129,34623,,,24.0665369,136,5651,20.02170741,28.11136638,36.18421053,18.06302752,64.74354774,,,,,,,27.65647744,22.57955522,32.73339965,,,,,,,,,,0.120590546,2916,24181,0.102718206,0.138462887,0.000866476,30,34623,,,1154.1,0.000491614,17,34580,,,2034.117647,0.00821284,284,34580,,,121.7605634,1143,,,,,,,,1618,750,0.33,,,,,0.33,,,0.31,0.34,0.42,,,,,0.51,0.5,,0.36,0.45,0.934053891,24716,26461,0.916613797,0.951493984,0.647439353,4804,7420,0.529197944,0.765680763,0.048920766,723,14779,,,0.271,1489,,0.17687234,0.36512766,0.218556701,0.069550176,0.367563227,,,,,,,0.20344908,0.131773858,0.275124301,0.108033241,0,0.225026281,5.996645303,119765,19972,4.784998095,7.208292512,0.486189741,2834,5829,0.37855369,0.593825792,9.820061809,34,34623,,,137.1029601,227,165569,119.2672677,154.9386525,140.7294476,72.71695917,245.8260238,,,,,,,136.5886973,112.9259127,160.2514818,138.682181,110.2980542,172.1411533,,,,5,,,,,1,,,,,0.151707705,1910,12590,0.119329955,0.184085455,0.125686194,0.093780076,0.157592313,0.020571882,0.00779903,0.033344735,0.015488483,0.006434913,0.024542053,0.666402421,9247,13876,0.606315144,0.726489699,0.763013699,0.660653425,0.865373972,,,,,,,0.728048242,0.635544411,0.820552073,0.572708758,0.495467095,0.64995042,0.26,,13876,0.193383064,0.326616936,77.86289397,,,76.49244289,79.23334504,73.26967485,67.40344011,79.13590958,,,,,,,75.51134925,73.85028254,77.17241597,82.38945154,79.65150923,85.12739385,,,,470.0578395,609,88759,426.7917961,513.3238829,743.8205437,515.1173495,1039.414655,,,,,,,515.2395184,456.0040185,574.4750183,374.6982783,305.7640174,443.6325392,,,,74.62393465,19,25461,44.92848342,116.5345178,,,,,,,,,,91.97143475,53.57675,147.2551765,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.111,,,0.096,0.128,0.152,,,0.131,0.174,0.111,,,0.095,0.129,176.2,54,30647,,,0.125,4280,,,,0.138023641,4546.084655,32937,,,37.02258378,37,99939,26.06731563,51.0307549,,,,,,,,,,39.02162153,24.45464246,59.07920394,33.44108795,17.27949813,58.41485076,,,,0.313,,,0.299,0.326,0.139944044,2601,18586,0.117305746,0.162582342,0.060447887,359,5939,0.040192568,0.080703206,0.001214575,42,34580,,,823.3333333,0.712993827,231.01,324,,,,,,,,,,,,,,,,,,2.539997426,,,,,,,,2.360378636,3.343442048,0.130416267,,,,,-3061.645967,,,,,0.794377928,42728,53788,0.594740018,0.994015839,48462,,,41435.78723,55488.21277,41250,34833.82979,47666.17021,,,,,,,56101,46262.87234,65939.12766,54536,45921.53192,63150.46809,,,,,,0.903446462,3434,3801,,,,,,,,0.373777393,,48462,,,18.92285298,26,1374,,,10.36533487,24,231541,6.641265631,15.42279665,,,,,,,,,,10.69371668,5.846354418,17.94223951,,,,,,,25.88227044,42,165569,18.12762402,35.83197201,25.36706751,,,,,,,,,,20.99862626,12.00252926,34.10045348,33.21767335,18.59167961,54.7875006,,,,25.9710453,43,165569,18.79537426,34.98282759,,,,,,,,,,22.40908315,13.87157566,34.25466401,35.51616831,21.98506796,54.29023599,,,,25.04955926,58,231541,19.02118056,32.38236414,,,,,,,,,,29.02580241,20.54038531,39.84018158,19.34282744,11.05609717,31.41153993,,,,10,,2700,,,21,6,0.654265042,17181,26260,,,0.395,,,,,2.102471059,,,,,0.80518346,11060,13736,0.78634861,0.824018309,0.149443805,1948,13035,0.111449271,0.18743834,0.820253349,11267,13736,0.793409711,0.847096987,34580,,,,,0.161740891,5593,34580,,,0.295228456,10209,34580,,,0.005378832,186,34580,,,0.080017351,2767,34580,,,0.010526316,364,34580,,,0.001359167,47,34580,,,0.562753036,19460,34580,,,0.360063621,12451,34580,,,0.019588373,651,33234,0.0045553,0.034621447,0.508183921,17573,34580,,,0.545797211,18824,34489,, -35,057,35057,NM,Torrance County,2024,1,13946.22991,349,42519,11629.40183,16263.05799,0,,,,2,,,,2,,,,2,14450.72043,11053.45348,17847.98737,,13108.07608,9669.749995,16546.40216,,,,,2,,0.211,,,0.182,0.243,4.116045105,,,3.295607854,5.105194269,5.406172311,,,4.318276454,6.641610411,0.120111732,129,1074,0.10066886,0.139554604,0,,,,,,,,,,0.112299465,0.086172033,0.138426897,0.120430108,0.090847782,0.150012433,,,,,,,0.184,,,0.15,0.222,0.373,,,0.294,0.456,5.3,0.216458063,0.153,,,0.263,,,0.215,0.314,0.084214025,1267,15045,,,0.132373644,,,0.103758617,0.166071124,0.136363636,6,44,0.068872758,0.2210924,320.1,49,15307,,,22.14905717,74,3341,17.39177379,27.80611299,,,,,,,,,,26.08242045,19.35887519,34.38641975,16.50165017,10.07963662,25.48546032,,,,,,,0.132093847,1492,11295,0.113030017,0.151157677,6.53296E-05,1,15307,,,15307,0.000194125,3,15454,,,5151.333333,0.001617704,25,15454,,,618.16,1405,,,,,,,,,1270,0.28,,,,,,,,0.29,0.28,0.2,,,,,,,,0.21,0.2,0.860033886,9137,10624,0.83076926,0.889298511,0.518946122,1753,3378,0.403464242,0.634428002,0.053860294,293,5440,,,0.292,924,,0.175234043,0.408765957,,,,,,,,,,0.217760181,0.113791199,0.321729163,0.251982379,0.137271664,0.366693094,4.605872337,100081,21729,3.553327395,5.658417278,0.217901235,706,3240,0.124477071,0.311325399,5.879662899,9,15307,,,143.5017,111,77351,116.805366,170.1980341,,,,,,,,,,143.952525,106.4968705,190.3128723,141.9391468,106.9279903,184.7533097,,,,4.2,,,,,1,,,,,0.137699412,820,5955,0.099533157,0.175865668,0.101276596,0.068469216,0.134083976,0.031066331,0.011180561,0.050952101,0.015952981,0.00097781,0.030928151,0.758055607,4117,5431,0.717694916,0.798416297,,,,,,,,,,0.746357616,0.637092666,0.855622566,0.690062112,0.589983693,0.790140531,0.595,,5431,0.471193992,0.718806008,73.5917029,,,71.86702417,75.31638162,,,,,,,,,,74.22773445,71.43133577,77.02413312,73.46723398,71.04279625,75.89167172,,,,589.5084353,349,42519,521.4759455,657.5409251,,,,,,,,,,532.1511499,430.6805734,633.6217264,596.6166975,501.6662428,691.5671522,,,,70.46719752,10,14191,33.79176024,129.5916852,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.133,,,0.115,0.153,0.174,,,0.151,0.199,0.123,,,0.105,0.143,372.8,49,13143,,,0.153,2310,,,,0.216458063,3546.232444,16383,,,34.59160289,16,46254,19.77208988,56.17459592,,,,,,,,,,,,,,,,,,,0.351,,,0.338,0.364,0.156117118,1285,8231,0.131095842,0.181138395,0.070387597,227,3225,0.04655781,0.094217384,0.000258833,4,15454,,,3863.5,0.825085616,240.925,292,,,,,,,,,,,,,,,,,,2.877241884,,,,,,,,2.793649933,2.932893644,0.031866248,,,,,-6406.925167,,,,,1.087587007,45000,41376,0.668805015,1.506368999,48322,,,41463.78723,55180.21277,,,,,,,,,,41520,30129.3617,52910.6383,53235,41382.06383,65087.93617,,,,,,0.798220974,1705,2136,,,,,,,,0.279044742,,48322,,,17.54385965,13,741,,,10.17218739,11,108138,5.077919295,18.20085309,,,,,,,,,,,,,,,,,,,30.97228492,23,77351,19.17233252,47.34442754,29.7345865,,,,,,,,,,,,,39.14621035,20.22741813,68.38055146,,,,32.32020271,25,77351,20.91593108,47.71099494,,,,,,,,,,,,,36.12996464,19.75258788,60.61994147,,,,28.66707355,31,108138,19.47788565,40.69062263,,,,,,,,,,36.24192551,21.11225717,58.02683356,21.86509238,11.2980123,38.19391613,,,,24.66666667,,1500,,,5,32,0.613395114,7281,11870,,,0.424,,,,,9.741721923,,,,,0.831934274,4658,5599,0.787390562,0.876477986,0.083160866,442,5315,0.051156434,0.115165297,0.740489373,4146,5599,0.68960196,0.791376786,15454,,,,,0.208748544,3226,15454,,,0.229196325,3542,15454,,,0.012941633,200,15454,,,0.043354471,670,15454,,,0.007506147,116,15454,,,0.002847159,44,15454,,,0.455221949,7035,15454,,,0.485958328,7510,15454,,,0.022045612,319,14470,0.007426945,0.036664279,0.481558173,7442,15454,,,1,15045,15045,, -35,059,35059,NM,Union County,2024,1,11890.47067,77,10969,8414.404729,16320.59999,0,,,,2,,,,2,,,,2,14319.92286,8974.219419,21680.5353,1,11455.35884,6411.477382,18893.87233,1,,,,2,,0.206,,,0.177,0.236,3.926735023,,,3.131289996,4.819848148,4.891479973,,,3.893047021,6.034488874,0.092250923,25,271,0.057796919,0.126704926,0,,,,,,,,,,0.081300813,0.03300187,0.129599756,0.104166667,0.05427215,0.154061183,,,,,,,0.187,,,0.155,0.222,0.372,,,0.295,0.454,7,0.110098352,0.128,,,0.26,,,0.216,0.307,0.698700662,2850,4079,,,0.150477415,,,0.118211816,0.184880505,0.428571429,3,7,0.219826693,0.607881191,243.5,10,4107,,,22.19140083,16,721,12.68430299,36.03744466,,,,,,,,,,,,,,,,,,,,,,0.131466356,338,2571,0.110019547,0.152913164,0.000243487,1,4107,,,4107,0,0,3980,,,-3980,0.008542714,34,3980,,,117.0588235,2265,,,,,,,,1229,916,0.27,,,,,,,,0.33,0.25,0.14,,,,,,,,0.16,0.14,0.875524476,2504,2860,0.836747563,0.914301388,0.451158107,448,993,0.334709011,0.567607203,0.028809219,45,1562,,,0.278,221,,0.171957447,0.384042553,,,,,,,,,,0.324582339,0.110879443,0.538285235,0.054973822,0,0.141184423,4.65465499,83444,17927,2.756948889,6.55236109,0.363218391,316,870,0.195842185,0.530594597,14.6092038,6,4107,,,82.93896668,17,20497,48.31500449,132.7933201,,,,,,,,,,113.4172621,54.38798567,208.5783832,,,,,,,4,,,,,0,,,,,0.081850534,115,1405,0.034950944,0.128750123,0.060363636,0.010593633,0.11013364,0.024911032,0,0.057620059,0.010676157,0,0.032315236,0.790114068,1039,1315,0.707168047,0.87306009,,,,,,,,,,,,,0.779888268,0.699004339,0.860772198,0.195,,1315,0.106492308,0.283507692,74.59576729,,,71.57247078,77.6190638,,,,,,,,,,71.90560494,67.1020133,76.70919658,75.03696596,70.68855333,79.38537859,,,,528.7112455,77,10969,411.3689074,669.1179194,,,,,,,,,,645.7081169,447.1716418,902.3123724,499.3645867,341.5650076,704.9537998,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.129,,,0.113,0.147,0.164,,,0.143,0.187,0.117,,,0.101,0.135,,,,,,0.128,530,,,,0.110098352,500.837402,4549,,,,,,,,,,,,,,,,,,,,,,,,,,0.343,,,0.33,0.354,0.151891587,269,1771,0.124487331,0.179295842,0.089073634,75,842,0.058094911,0.120052358,0.000753769,3,3980,,,1326.666667,,,,,,,,,,,,,,,,,,,,,3.424902898,,,,,,,,3.030647229,3.694354029,0.06522919,,,,,-4148.305,,,,,0.77355184,32664,42226,0.551546373,0.995557307,48545,,,42387.38298,54702.61702,27857,8745.510638,46968.48936,,,,,,,31458,3763.021277,59152.97872,55110,27100.46809,83119.53192,,,,,,0.593360996,286,482,,,,,,,,0.223050778,,48545,,,3.861003861,1,259,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,300,,,-888,0,0.559937402,1789,3195,,,0.394,,,,,0.267505455,,,,,0.650717703,952,1463,0.575981821,0.725453586,0.082101806,100,1218,0.025619644,0.138583968,0.794258373,1162,1463,0.722898127,0.865618619,3980,,,,,0.204522613,814,3980,,,0.22839196,909,3980,,,0.018844221,75,3980,,,0.035175879,140,3980,,,0.007537688,30,3980,,,0.000251256,1,3980,,,0.428140704,1704,3980,,,0.518341709,2063,3980,,,0.020204671,77,3811,0,0.042378084,0.452763819,1802,3980,,,1,4079,4079,, -35,061,35061,NM,Valencia County,2024,1,11718.38335,1405,214912,10809.2003,12627.5664,0,13447.57118,9516.301726,18457.8421,,,,,2,,,,2,12037.20501,10873.79736,13200.61267,,10691.78928,9064.541839,12319.03672,,,,,2,,0.2,,,0.172,0.232,3.894080065,,,3.12892147,4.752205397,5.378470564,,,4.435459087,6.397458364,0.100706714,570,5660,0.092866503,0.108546925,0,0.125,0.079164697,0.170835303,,,,,,,0.09872449,0.089386481,0.108062498,0.0995671,0.083803403,0.115330796,,,,0.137931035,0.065471015,0.210391054,0.154,,,0.126,0.188,0.379,,,0.315,0.445,5.4,0.269190215,0.123,,,0.247,,,0.205,0.295,0.519677187,39602,76205,,,0.131178505,,,0.104664201,0.161707575,0.32,16,50,0.24643344,0.394166926,559.7,432,77190,,,23.14604186,407,17584,20.89732073,25.39476299,17.72151899,9.688519337,29.73369762,,,,,,,23.46527613,20.79655303,26.13399924,24.31525992,19.47552642,29.99278328,,,,,,,0.125931409,7656,60795,0.109250558,0.14261226,0.000297966,23,77190,,,3356.086957,0.000332992,26,78080,,,3003.076923,0.002279713,178,78080,,,438.6516854,1625,,,,,,,,1422,1708,0.34,,,,,0.27,0.19,,0.31,0.36,0.32,,,,,0.41,0.51,0.33,0.29,0.33,0.847828582,44316,52270,0.832770001,0.862887164,0.582360909,11179,19196,0.525156226,0.639565591,0.042907265,1333,31067,,,0.236,4121,,0.166893617,0.305106383,0.130263158,0,0.358317406,,,,0.647540984,0.005604096,1,0.254760762,0.208729505,0.300792019,0.152285714,0.087440103,0.217131326,4.728683165,110637,23397,4.274040215,5.183326114,0.250398361,4400,17572,0.192841225,0.307955497,6.088871616,47,77190,,,113.0655885,434,383848,102.4280375,123.7031394,96.86793671,54.21624884,159.7689304,,,,,,,114.9606366,101.2479248,128.6733485,112.9139154,94.07464866,131.7531822,,,,5.5,,,,,1,,,,,0.140994141,3730,26455,0.116253925,0.165734357,0.105932203,0.086684112,0.125180295,0.036628237,0.020909595,0.052346878,0.002986203,0.00060286,0.005369546,0.813100649,23436,28823,0.792530746,0.833670551,,,,,,,,,,0.82814351,0.789093386,0.867193634,0.728903977,0.681501553,0.7763064,0.491,,28823,0.442601473,0.539398527,74.76338442,,,74.05557591,75.47119293,76.54089399,71.41822476,81.66356323,,,,,,,75.23500653,74.24597571,76.22403735,74.78139974,73.60972664,75.95307283,,,,515.5588675,1405,214912,486.9650833,544.1526517,567.6753376,423.9670945,744.4306798,,,,,,,505.0019002,467.3718805,542.6319198,509.0433986,460.4737906,557.6130067,,,,49.14995778,39,79349,34.95042469,67.18961029,,,,,,,,,,57.88661241,39.84648045,81.29432583,,,,,,,7.063393961,40,5663,5.046192202,9.618337801,,,,,,,,,,7.886034088,5.358177558,11.19359591,,,,,,,,,,0.123,,,0.106,0.141,0.16,,,0.138,0.185,0.122,,,0.105,0.14,174.1,113,64914,,,0.123,9380,,,,0.269190215,20611.62557,76569,,,43.20550265,100,231452,34.73722413,51.67378117,,,,,,,,,,49.9521585,39.01305022,63.00785101,35.82007302,23.39886094,52.48470632,,,,0.36,,,0.345,0.372,0.154383619,6695,43366,0.131745321,0.177021916,0.058413632,1073,18369,0.040541291,0.076285972,0.000678791,53,78080,,,1473.207547,0.771119324,730.25,947,,,0.168173599,651,3871,0.095000927,0.24134627,,,,,,,,,,,2.674450329,,,,,,,,2.591448249,2.863194402,0.037524873,,,,,-4981.3885,,,,,0.99151679,47687,48095,0.851365333,1.131668247,53275,,,46792.10638,59757.89362,50795,31777.6383,69812.3617,,,,58558,7764.808511,109351.1915,51160,46797.95745,55522.04255,66403,60941.21277,71864.78723,,,,,,0.766387383,9330,12174,,,76.58656184,,,,,0.302280619,,53275,,,11.0864745,45,4059,,,10.46316313,56,535211,7.903760981,13.58728763,,,,,,,,,,11.355824,7.995548077,15.65250753,7.515189354,4.001521821,12.85120267,,,,22.65201279,87,383848,17.98896787,28.15438362,22.66522165,,,,,,,,,,17.51249418,12.45309532,23.94015605,30.04417002,20.27067535,42.88992084,,,,23.18626123,89,383848,18.62047168,28.53268961,,,,,,,,,,20.43744651,15.0689597,27.09708902,29.45580402,20.63048301,40.77924879,,,,17.18948228,92,535211,13.85714882,21.08137408,,,,,,,,,,18.10793557,13.78459955,23.35791758,15.6084702,10.28608021,22.70950466,,,,22.06896552,,8700,,,105,87,0.580260674,32277,55625,,,0.631,,,,,19.07767557,,,,,0.826545372,21715,26272,0.797968612,0.855122131,0.12349887,3116,25231,0.101312336,0.145685405,0.771125152,20259,26272,0.742288862,0.799961442,78080,,,,,0.228086578,17809,78080,,,0.18779457,14663,78080,,,0.015266393,1192,78080,,,0.068916496,5381,78080,,,0.010732582,838,78080,,,0.001588115,124,78080,,,0.61616291,48110,78080,,,0.30546875,23851,78080,,,0.027396316,1987,72528,0.018727398,0.036065234,0.49555584,38693,78080,,,0.299717866,22840,76205,, -36,000,36000,NY,New York,2024,,6351.05631,229510,54293175,6311.337722,6390.774898,0,7096.356462,6192.261273,8000.451652,,3266.375578,3174.209309,3358.541848,,10188.20347,10054.3632,10322.04374,,6086.328413,6001.841742,6170.815084,,5851.011384,5798.64098,5903.381788,,3422.552537,1822.365082,5852.669073,1,,0.139,,,0.133,0.145,3.060645634,,,2.929093155,3.192198113,4.21051656,,,4.061426067,4.359607053,0.081743407,125637,1536968,0.081310263,0.08217655,0,0.089630225,0.078405724,0.100854726,0.089980605,0.088591089,0.09137012,0.130922495,0.129513849,0.132331142,0.084058305,0.083147237,0.084969372,0.064161691,0.06361006,0.064713322,0.118072289,0.087025084,0.149119494,0.099400211,0.09543214,0.103368281,0.124,,,0.118,0.13,0.29,,,0.281,0.299,8.6,0.023844279,0.114,,,0.253,,,0.245,0.261,0.932195579,18831515,20201249,,,0.175100457,,,0.167520782,0.182947716,0.209128467,1063,5083,0.202266812,0.216065059,512.5,101657,19835913,,,10.94193321,45021,4114538,10.84085849,11.04300794,9.075283603,7.527075588,10.62349162,2.670837344,2.495167575,2.846507112,14.94013766,14.63801355,15.24226178,20.5252018,20.23406638,20.81633722,6.652712694,6.542098735,6.763326654,6.351039261,3.170415916,11.36376358,11.96995643,11.34560186,12.59431099,0.061246659,974408,15909570,0.05886368,0.063629637,0.000803492,15938,19835913,,,1244.567261,0.000829998,16332,19677151,,,1204.821883,0.003557578,70003,19677151,,,281.0901104,2641,,,,,4571,1833,4086,3316,2409,0.43,,,,,0.32,0.33,0.37,0.34,0.45,0.5,,,,,0.28,0.5,0.33,0.37,0.53,0.875851459,12281021,14021808,0.874699103,0.877003815,0.704566823,3816549,5416873,0.701070832,0.708062814,0.042754524,411170,9616994,,,0.186,725064,,0.178851064,0.193148936,0.284651471,0.246484789,0.322818154,0.162500854,0.154808267,0.17019344,0.273843675,0.265532359,0.282154991,0.2538481,0.247920956,0.259775245,0.119959672,0.117563563,0.12235578,5.799338106,171730,29612,5.745850366,5.852825846,0.260838916,1071213,4106799,0.257188076,0.264489757,7.805035241,15482,19835913,,,56.30300552,55187,98017858,55.83325285,56.77275819,55.72727556,47.11910339,64.33544773,20.92920639,19.96975995,21.88865283,65.14497649,63.81651789,66.47343508,44.429597,43.4799065,45.3792875,64.00371621,63.32930744,64.67812499,24.15618069,12.05867837,43.22207988,6.9,,,,,0.467741936,,,,,0.224120881,1662355,7417225,0.222447537,0.225794224,0.182739582,0.18114573,0.184333435,0.050583608,0.049677194,0.051490021,0.008971684,0.008609226,0.009334142,0.505196597,4746319,9394994,0.503799002,0.506594193,0.364274018,0.341884404,0.386663633,0.314160901,0.309497127,0.318824674,0.386890428,0.382695161,0.391085695,0.358427618,0.355118047,0.361737189,0.597662932,0.595956972,0.599368891,0.392,,9394994,0.388847616,0.395152385,79.67953853,,,79.63980191,79.71927515,88.10094657,85.9497094,90.25218374,86.58820315,86.38652183,86.78988446,75.84394513,75.72494416,75.96294609,81.39207282,81.26804227,81.51610338,79.92681097,79.87736196,79.97625999,108.6939484,91.45347657,125.9344203,325.2074494,229510,54293175,323.8291353,326.5857634,318.172471,291.5208131,344.8241288,177.4024706,173.9991752,180.8057659,502.0422867,497.4263763,506.6581972,310.7318526,307.364343,314.0993622,304.2634487,302.5121336,306.0147638,152.3849182,107.2930454,210.0425367,37.29808592,6775,18164471,36.40993255,38.18623928,28.2950466,16.17306392,45.94938299,25.72962333,23.1727177,28.28652896,67.88984631,64.77930945,71.00038317,31.16726087,29.5311101,32.80341164,31.39699483,30.22286851,32.57112115,,,,4.353309529,6831,1569151,4.25007298,4.456546077,,,,2.315091052,2.084730408,2.545451697,8.516269724,8.137006556,8.895532893,3.725531351,3.526721308,3.924341394,3.385644295,3.255479284,3.515809306,,,,6.143624283,5.107256664,7.179991903,0.092413706,,,0.087470363,0.097606538,0.133703476,,,0.127430894,0.140235192,0.101,,,0.096,0.106,737.1,124630,16907875,,,0.114,2265160,,,,0.023844279,462056.8737,19378102,,,24.60331336,14424,58626250,24.2017937,25.00483302,30.90659341,23.21798419,40.32640018,3.918048127,3.383000765,4.45309549,33.37798314,32.14669208,34.60927419,24.72212481,23.80770987,25.63653976,25.48372734,24.93281422,26.03464045,,,,0.33103347,,,0.319704066,0.34256219,0.073564353,874355,11885580,0.071181374,0.075947332,0.026007004,109947,4227592,0.023624025,0.028389982,0.001536808,30240,19677151,,,650.6994378,0.850252209,177090.53,208280,,,0.066235471,66359,1001865,0.06348039,0.068990551,,,,,,,,,,,,,,,,,,,,,0.335859799,,,,,6721.099,,,,,0.867687863,60667,69918,0.860436441,0.874939285,79463,,,78613.46809,80312.53192,59483,54904.10638,64061.89362,91254,89678.85106,92829.14894,58805,58084.14894,59525.85106,61135,60364.10638,61905.89362,92218,91728.29787,92707.70213,,,,,,0.547912862,1322963,2414550,,,74.29399239,,,,,0.382540678,,,,,6.055809159,,,,,3.513403106,4833,137558938,3.414348276,3.612457935,,,,0.889523416,0.721758332,1.0572885,13.49335351,12.98353086,14.00317615,3.875256736,3.637781278,4.112732194,1.192209687,1.114662546,1.269756828,,,,8.134790743,8416,98017858,7.956294401,8.313287085,8.586190488,4.318316724,2.231337266,7.543230274,5.798813441,5.300344262,6.29728262,4.897089335,4.531771565,5.262407105,4.52447357,4.217057335,4.831889805,10.53084147,10.25346049,10.80822246,,,,4.618546143,4527,98017858,4.484004691,4.753087595,,,,0.686954258,0.524218469,0.8842463,11.36052794,10.8057658,11.91529008,2.721365658,2.486326969,2.956404348,4.19908774,4.026345681,4.371829799,,,,5.770617392,7938,137558938,5.643670286,5.897564498,6.681779036,4.403334488,9.721637691,3.080386643,2.76819196,3.392581326,6.042174276,5.701016091,6.383332461,4.894263639,4.627386008,5.16114127,6.479685909,6.298899221,6.660472597,,,,,,,,,,,0.629269786,8661735,13764740,,,,,,,,438.2122956,,,,,0.542850485,4128119,7604523,0.540020681,0.545680289,0.19366998,1429384,7380514,0.191974646,0.195365315,0.881864648,6706160,7604523,0.879652779,0.884076518,19677151,,,,,0.202737073,3989288,19677151,,,0.181102234,3563576,19677151,,,0.14420304,2837505,19677151,,,0.010467572,205972,19677151,,,0.09627039,1894327,19677151,,,0.001454835,28627,19677151,,,0.196526215,3867076,19677151,,,0.542214724,10669241,19677151,,,0.066507168,1255157,18872507,0.065741227,0.06727311,0.510792492,10050941,19677151,,,0.125540901,2536083,20201249,, -36,001,36001,NY,Albany County,2024,1,7087.628503,3866,854926,6732.906468,7442.350537,0,,,,2,3165.766968,2397.720986,4101.618303,,13873.25999,12591.0484,15155.47158,,6943.655614,5592.520999,8294.790229,,6233.600442,5833.986496,6633.214388,,,,,2,,0.128,,,0.109,0.149,3.207717867,,,2.668017936,3.782731514,5.032026079,,,4.43627398,5.65350563,0.084841016,1721,20285,0.081006418,0.088675613,0,,,,0.088,0.075954763,0.100045237,0.122197922,0.11158428,0.132811564,0.106382979,0.092445349,0.120320609,0.068508194,0.063957499,0.073058889,,,,0.10123119,0.079364727,0.123097654,0.153,,,0.122,0.184,0.32,,,0.289,0.353,8.4,0.055422809,0.088,,,0.213,,,0.183,0.245,0.936674205,294910,314848,,,0.189569281,,,0.168192133,0.212627695,0.244186047,21,86,0.188974255,0.302240299,444.3,1394,313743,,,7.918088737,638,80575,7.303667673,8.532509802,,,,2.39769821,1.341973487,3.954638566,19.33161149,16.92073116,21.74249182,18.50813236,15.35071711,21.66554761,3.625531581,3.10308499,4.147978172,,,,17.78050276,13.5014812,22.98542298,0.047350445,11576,244475,0.040201509,0.054499381,0.000962571,302,313743,,,1038.884106,0.000889773,281,315811,,,1123.882562,0.004319039,1364,315811,,,231.5329912,2471,,,,,,1298,4917,1970,2269,0.46,,,,,,0.33,0.38,0.3,0.47,0.56,,,,,,0.52,0.36,0.4,0.58,0.925969459,196162,211845,0.918989612,0.932949306,0.778214047,61640,79207,0.750083795,0.806344299,0.030264296,4830,159594,,,0.152,8319,,0.11387234,0.19012766,,,,0.163286898,0.109562664,0.217011133,0.320942663,0.260434252,0.381451074,0.257653061,0.178701739,0.336604384,0.069004055,0.051142564,0.086865546,4.648585558,151344,32557,4.374720198,4.922450917,0.288508992,16252,56331,0.265588062,0.311429922,14.43856915,453,313743,,,58.19572469,896,1539632,54.38512659,62.0063228,,,,19.93014957,12.33707671,30.46535071,81.33304867,68.73036221,93.93573513,52.66038184,39.20911318,69.23867686,58.91825002,54.38177621,63.45472382,,,,7.5,,,,,1,,,,,0.14381049,18425,128120,0.13495799,0.152662991,0.128108278,0.118648092,0.137568465,0.013971277,0.010566016,0.017376538,0.008000312,0.005401038,0.010599586,0.691027643,108841,157506,0.680064792,0.701990495,,,,0.61575159,0.572206708,0.659296473,0.590514776,0.548818847,0.632210705,0.590014241,0.547967915,0.632060568,0.790616302,0.777914162,0.803318443,0.207,,157506,0.192023211,0.221976789,78.74665753,,,78.42005688,79.07325818,,,,86.46861969,83.92742061,89.00981878,71.81873281,70.80349535,72.83397027,83.00033224,80.01072217,85.98994231,79.53840407,79.17603909,79.90076905,,,,350.7613091,3866,854926,339.1451234,362.3774949,,,,174.6139216,139.6685984,215.6467727,691.1641126,642.3974065,739.9308188,319.2534003,264.6503489,373.8564517,317.7675137,304.9579162,330.5771111,,,,43.90136826,120,273340,36.04641682,51.7563197,,,,,,,93.708166,67.5366036,126.6662177,51.60909795,28.21517409,86.59129694,29.41050323,21.68498338,38.99406042,,,,5.610912257,116,20674,4.589830413,6.631994101,,,,,,,12.91016676,9.518937822,17.11700812,,,,3.679777578,2.684055016,4.923831916,,,,,,,0.09,,,0.078,0.104,0.156,,,0.139,0.175,0.093,,,0.083,0.105,414.8,1134,273402,,,0.088,27680,,,,0.055422809,16859.84023,304204,,,25.78819226,238,922903,22.51185582,29.0645287,,,,,,,43.97797718,32.84485686,57.67126609,26.82358464,15.33199627,43.55982095,24.67428422,20.8746383,28.47393013,,,,0.34,,,0.324,0.355,0.054102685,10193,188401,0.04576226,0.062443111,0.02603894,1542,59219,0.018890004,0.033187876,0.002666152,842,315811,,,375.0724466,0.871975923,2716.205,3115,,,0.049346309,1004,20346,0.032047191,0.066645426,,,,,,,,,,,,,,,,,,,,,0.193834336,,,,,6993.817091,,,,,0.871178788,60587,69546,0.834856765,0.907500811,76997,,,72632.57447,81361.42553,63250,26150.59575,100349.4043,97319,77399.68085,117238.3192,44379,40687.76596,48070.23404,56942,45650.25532,68233.74468,87418,84948.04255,89887.95745,,,,,,0.410580205,15639,38090,,,57.3817315,,,,,0.409652324,,76997,,,8.569202805,132,15404,,,3.382982855,73,2157859,2.651718529,4.253593038,,,,,,,17.47138151,12.88201752,23.16451715,,,,1.032192137,0.589986991,1.676215364,,,,9.693418425,157,1539632,8.124618473,11.26221838,10.19724194,,,,,,,,,,,,,11.67247705,9.619761525,13.72519258,,,,6.754860902,104,1539632,5.456618433,8.053103371,,,,,,,18.29993595,12.81705016,25.33482503,,,,5.637239971,4.322039561,7.226687228,,,,5.468383245,118,2157859,4.481708501,6.455057989,,,,,,,8.371703642,5.306941976,12.56166593,8.266325994,4.126520153,14.7907406,4.967424661,3.920213861,6.208428526,,,,12.06477733,,24700,,,114,184,0.656137226,154727,235815,,,0.647,,,,,186.291454,,,,,0.565212786,74707,132175,0.554113844,0.576311728,0.141843261,18407,129770,0.130660547,0.153025976,0.880658218,116401,132175,0.870544579,0.890771858,315811,,,,,0.176862111,55855,315811,,,0.184512256,58271,315811,,,0.13022029,41125,315811,,,0.003467264,1095,315811,,,0.074430593,23506,315811,,,0.000915104,289,315811,,,0.069326274,21894,315811,,,0.698132744,220478,315811,,,0.017504741,5252,300033,0.014782894,0.020226588,0.51339567,162136,315811,,,0.095681091,30125,314848,, -36,003,36003,NY,Allegany County,2024,1,7496.815174,700,126787,6589.324918,8404.30543,0,,,,2,,,,2,,,,2,,,,2,7799.107929,6841.136168,8757.079691,,,,,2,,0.147,,,0.124,0.172,3.772912358,,,3.132854631,4.512943946,4.919167408,,,4.206917672,5.685936534,0.074392868,242,3253,0.065375225,0.083410511,0,,,,,,,,,,,,,0.072643979,0.063441551,0.081846408,,,,,,,0.222,,,0.182,0.266,0.365,,,0.316,0.414,8.4,0.013248667,0.11,,,0.243,,,0.204,0.282,0.398097124,18494,46456,,,0.193228549,,,0.162157648,0.226452711,0.277777778,5,18,0.152183671,0.410166986,182.2,84,46106,,,10.465688,149,14237,8.785218164,12.14615783,,,,,,,,,,,,,11.40078131,9.532154105,13.26940852,,,,,,,0.050645542,1675,33073,0.042305116,0.058985967,0.000347026,16,46106,,,2881.625,0.00032124,15,46694,,,3112.933333,0.002569923,120,46694,,,389.1166667,2714,,,,,,,,,2649,0.46,,,,,,,,,0.46,0.42,,,,,,,,,0.42,0.913504855,27375,29967,0.90269796,0.92431175,0.652488489,5952,9122,0.6090291,0.695947879,0.040349592,771,19108,,,0.199,1767,,0.137042553,0.260957447,,,,,,,,,,0.422330097,0.264402312,0.580257882,0.248928061,0.214468325,0.283387797,4.389975058,109126,24858,4.018906376,4.76104374,0.165203252,1524,9225,0.140665357,0.189741147,15.83308029,73,46106,,,68.79900306,159,231108,58.105016,79.49299013,,,,,,,,,,,,,72.04511768,60.77545803,83.31477733,,,,6.7,,,,,1,,,,,0.123405435,2225,18030,0.105588025,0.141222845,0.097189432,0.080654145,0.11372472,0.015806988,0.010339266,0.021274711,0.020244038,0.013998102,0.026489974,0.75986305,14426,18985,0.745601537,0.774124562,,,,,,,,,,,,,0.754922497,0.735109723,0.774735271,0.317,,18985,0.290384144,0.343615856,77.49254625,,,76.72078259,78.26430992,,,,,,,,,,,,,77.17497119,76.3820558,77.96788657,,,,395.833137,700,126787,364.0099735,427.6563005,,,,,,,,,,,,,406.7953918,373.7651401,439.8256435,,,,33.59932801,16,47620,19.20491905,54.56320369,,,,,,,,,,,,,36.77569127,21.0204851,59.72141862,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.114,,,0.099,0.131,0.16,,,0.138,0.182,0.102,,,0.088,0.116,78.2,31,39644,,,0.11,5140,,,,0.013248667,648.4692659,48946,,,10.88660512,15,137784,6.093150244,17.95579956,,,,,,,,,,,,,11.55001155,6.464453787,19.04998758,,,,0.356,,,0.336,0.374,0.058624577,1404,23949,0.047901173,0.069347982,0.030375533,292,9613,0.019652129,0.041098937,0.000878057,41,46694,,,1138.878049,0.886458333,446.775,504,,,0.034652359,155,4473,0.017450308,0.051854409,,,,,,,,,,,,,,,,,,,,,0.058268706,,,,,10400.59092,,,,,0.785563893,41041,52244,0.730149603,0.840978182,55466,,,50945.48936,59986.51064,26250,18274.17021,34225.82979,92500,77390.7234,107609.2766,,,,39844,4746.297872,74941.70213,58669,56353.93617,60984.06383,,,,,,0.502038044,2956,5888,,,,,,,,0.410485703,,55466,,,6.69456067,16,2390,,,,,,,,,,,,,,,,,,,,,,,,,,20.35924418,43,231108,14.47741285,27.83175701,18.6060197,,,,,,,,,,,,,20.42679616,14.3823496,28.15564777,,,,14.27903837,33,231108,9.829032994,20.05307876,,,,,,,,,,,,,14.6843552,10.04408808,20.72992813,,,,9.82659137,32,325647,6.721381223,13.87221503,,,,,,,,,,,,,10.09558237,6.859458414,14.32987332,,,,10.23255814,,4300,,,24,20,0.570589842,20895,36620,,,0.477,,,,,8.15175065,,,,,0.807946232,13584,16813,0.795152171,0.820740293,0.108430036,1766,16287,0.090940687,0.125919386,0.833045857,14006,16813,0.814515879,0.851575836,46694,,,,,0.195142845,9112,46694,,,0.205786611,9609,46694,,,0.014305907,668,46694,,,0.003790637,177,46694,,,0.012271384,573,46694,,,0.000471153,22,46694,,,0.019981154,933,46694,,,0.937743607,43787,46694,,,0.006040747,271,44862,0.003141689,0.008939805,0.489206322,22843,46694,,,0.885074049,41117,46456,, -36,005,36005,NY,Bronx County,2024,1,8834.700636,20350,3990130,8667.882082,9001.51919,0,,,,2,4329.533529,3784.314262,4874.752795,,11219.94688,10865.10796,11574.78579,,7370.736466,7170.329621,7571.143312,,9992.885289,9353.779378,10631.9912,,,,,2,,0.23,,,0.201,0.26,3.989661333,,,3.418055282,4.613956041,4.719292499,,,4.148799634,5.325908858,0.101149305,13483,133298,0.099530593,0.102768016,0,,,,0.117114569,0.10961901,0.124610127,0.126225878,0.12288372,0.129568036,0.090381102,0.088350833,0.09241137,0.075614553,0.070476189,0.080752916,,,,0.105990783,0.082344079,0.129637488,0.166,,,0.14,0.193,0.347,,,0.314,0.383,6.9,5.4966282E-6,0.185,,,0.357,,,0.318,0.397,0.999989135,1472638,1472654,,,0.13777251,,,0.119412071,0.157398144,0.150485437,31,206,0.117783536,0.186343571,1052.9,15003,1424948,,,17.91748792,5827,325213,17.45743194,18.37754391,,,,4.923462537,3.709025779,6.408563242,13.99890511,13.22377501,14.77403522,21.42622578,20.78136255,22.07108901,9.967845659,8.641589209,11.29410211,,,,8.74380647,5.899409508,12.48232743,0.083221322,97639,1173245,0.076072386,0.090370258,0.000578267,824,1424948,,,1729.305825,0.000534804,738,1379946,,,1869.845529,0.002566767,3542,1379946,,,389.595144,3749,,,,,1865,3022,4190,4297,2666,0.35,,,,,,0.29,0.37,0.31,0.4,0.38,,,,,0.09,0.45,0.32,0.33,0.49,0.74523322,703486,943981,0.739899864,0.750566576,0.540139468,220210,407691,0.527915411,0.552363526,0.077951744,47059,603694,,,0.353,115129,,0.322021277,0.383978723,0.341284901,0.248003135,0.434566667,0.263207179,0.218061902,0.308352456,0.347639667,0.326821948,0.368457386,0.375453674,0.360811413,0.390095935,0.181308597,0.14969733,0.212919864,7.226647506,105603,14613,6.934511509,7.518783502,0.501147643,176417,352026,0.484678381,0.517616904,2.821155579,402,1424948,,,63.62984777,4548,7147589,61.78055051,65.47914504,,,,19.24253149,14.5356015,24.98802771,75.15793225,71.4389901,78.8768744,54.39523963,52.11754354,56.67293573,99.07463365,91.40473665,106.7445307,,,,8.6,,,,,0,,,,,0.379644604,193670,510135,0.37231378,0.386975428,0.290727747,0.283109234,0.298346259,0.124065198,0.118284475,0.129845922,0.013329805,0.011436946,0.015222664,0.236450085,133425,564284,0.229458598,0.243441573,0.247659317,0.162420881,0.332897754,0.420902462,0.391205071,0.450599853,0.343161857,0.3263785,0.359945214,0.299038121,0.288338452,0.30973779,0.573118392,0.5600747,0.586162084,0.571,,564284,0.545612608,0.596387392,77.26095213,,,77.09426527,77.427639,,,,86.59736833,85.04327098,88.15146568,74.78156247,74.47345418,75.08967076,79.30248611,79.05496174,79.55001049,76.20999109,75.69854315,76.72143903,,,,458.9271516,20350,3990130,452.5191993,465.3351038,,,,243.5529049,221.6597983,265.4460114,563.5695594,550.7097089,576.42941,385.0964733,376.9934169,393.1995297,508.6354188,486.8618329,530.4090047,,,,42.77662974,662,1547574,39.51801033,46.03524916,,,,34.11682319,20.54055622,53.27764553,64.10133752,56.42673723,71.77593781,29.01440697,25.58512321,32.44369073,59.8553327,45.56465251,77.20901823,,,,4.86402509,670,137746,4.495714271,5.232335909,,,,3.100338219,1.942965456,4.693949322,7.140853332,6.304428017,7.977278647,3.304367567,2.904244327,3.704490806,4.309106579,3.143091907,5.765923633,,,,,,,0.138,,,0.122,0.155,0.163,,,0.146,0.182,0.152,,,0.137,0.168,2328.8,27313,1172845,,,0.185,271700,,,,5.4966282E-6,7.613423646,1385108,,,41.9857517,1782,4244297,40.03633737,43.93516604,,,,6.855301719,3.542234434,11.9748325,48.33018406,44.45650239,52.20386573,37.4605036,35.00899477,39.91201243,63.8712272,55.84043857,71.90201582,,,,0.364,,,0.353,0.376,0.106166036,89347,841578,0.096634121,0.115697951,0.026202954,9130,348434,0.019054018,0.03335189,0.001501508,2072,1379946,,,665.9971043,0.733149099,10989.905,14990,,,0.093971922,7450,79279,0.080408929,0.107534915,,,,,,,,,,,,,,,,,,,,,0.156450475,,,,,,,,,,0.988886374,48049,48589,0.950120355,1.027652392,45864,,,43332.08511,48395.91489,46568,32270.12766,60865.87234,70275,62231.25532,78318.74468,47762,45380.21277,50143.78723,41220,39959.40426,42480.59575,75289,72229.25532,78348.74468,,,,,,0.870591505,175412,201486,,,48.90157169,,,,,0.804748823,,45864,,,6.051598865,623,102948,,,7.167886516,721,10058753,6.644672271,7.691100762,,,,,,,13.43480912,12.11156498,14.75805325,5.119058858,4.528861484,5.709256233,2.263216375,1.400966607,3.459566641,,,,5.149741761,377,7147589,4.62152659,5.677956931,5.274505851,,,,5.832182012,3.33359594,9.4710982,4.647319471,3.726582529,5.568056413,4.460768871,3.797845596,5.123692146,10.4475624,8.045896108,13.34130395,,,,5.400422436,386,7147589,4.861668877,5.939175995,,,,,,,10.58629893,9.190560339,11.98203753,3.326774126,2.763490682,3.890057571,3.245814831,2.009210538,4.961572757,,,,4.095935152,412,10058753,3.700422359,4.491447945,,,,,,,3.765817707,3.065243933,4.46639148,3.71973135,3.216627085,4.222835615,7.975143418,6.262202912,10.01206224,,,,,,147500,,,276,,0.504726275,432399,856700,,,0.606,,,,,1012.847487,,,,,0.199637601,104887,525387,0.193943025,0.205332176,0.311692385,157006,503721,0.302350205,0.321034565,0.836362529,439414,525387,0.830921979,0.841803079,1379946,,,,,0.242621813,334805,1379946,,,0.144429565,199305,1379946,,,0.290815728,401310,1379946,,,0.030785263,42482,1379946,,,0.047935934,66149,1379946,,,0.004211034,5811,1379946,,,0.565833011,780819,1379946,,,0.086770787,119739,1379946,,,0.14521308,195143,1343839,0.141207511,0.149218649,0.526876414,727061,1379946,,,6.7904613E-7,1,1472654,, -36,007,36007,NY,Broome County,2024,1,8271.778685,2835,526180,7790.378,8753.179369,0,,,,2,4542.034349,2645.902387,7272.236986,1,15458.26051,12902.26557,18014.25546,,8603.653513,6385.79747,11342.84457,,7986.099995,7468.713109,8503.486881,,,,,2,,0.151,,,0.129,0.179,3.673631271,,,3.071745809,4.308871389,5.299909862,,,4.643485654,5.969474118,0.079484835,1043,13122,0.074856618,0.084113051,0,,,,0.079766537,0.056344002,0.103189072,0.142730497,0.122316944,0.163144049,0.085714286,0.067165324,0.104263248,0.070401733,0.065426264,0.075377202,,,,0.114558473,0.084062491,0.145054454,0.195,,,0.16,0.232,0.346,,,0.309,0.384,7.9,0.036737523,0.121,,,0.23,,,0.197,0.264,0.859182718,170705,198683,,,0.17424583,,,0.151551293,0.200000398,0.359375,23,64,0.295814126,0.422277509,379.7,749,197240,,,12.18435104,607,49818,11.21503783,13.15366424,,,,,,,20.27916776,16.00400207,25.34548025,18.0785124,14.09308732,22.84111282,11.44452198,10.33672086,12.5523231,,,,17.76649746,12.80452865,24.01514331,0.053122547,7984,150294,0.04597361,0.060271483,0.000785845,155,197240,,,1272.516129,0.000689946,136,197117,,,1449.389706,0.002511199,495,197117,,,398.2161616,2643,,,,,,2665,2477,1020,2619,0.46,,,,,,0.3,0.38,0.47,0.47,0.55,,,,,,0.49,0.41,0.39,0.56,0.905843166,118843,131196,0.897011787,0.914674545,0.674319373,29078,43122,0.64122965,0.707409096,0.037736766,3106,82307,,,0.27,9765,,0.227106383,0.312893617,,,,0.29244114,0.177126876,0.407755404,0.492260062,0.374891541,0.609628583,0.386653582,0.277553951,0.495753213,0.204629457,0.172447446,0.236811468,5.211453164,118670,22771,4.940903652,5.482002676,0.254788407,9591,37643,0.219498693,0.290078121,10.79902657,213,197240,,,76.9913325,741,962446,71.44777185,82.53489315,,,,,,,106.4724012,80.64115693,137.9473455,62.31680015,41.06716397,90.66767246,79.35350162,73.1618361,85.54516713,,,,7.2,,,,,0,,,,,0.147491513,11730,79530,0.135848551,0.159134474,0.132736,0.12060086,0.14487114,0.018797938,0.014012572,0.023583304,0.006098328,0.004212763,0.007983893,0.755392799,64049,84789,0.740321696,0.770463901,,,,0.529782938,0.442727645,0.616838231,0.528254917,0.442372458,0.614137375,0.565258512,0.474043386,0.656473638,0.795764983,0.779366479,0.812163487,0.155,,84789,0.140851848,0.169148152,77.17794117,,,76.77385677,77.58202558,,,,85.24405576,80.93390017,89.55421135,70.38424929,68.32396698,72.44453159,84.31956124,77.80385234,90.83527013,77.3408636,76.91191305,77.76981415,,,,409.682782,2835,526180,393.4863543,425.8792096,,,,199.3283704,138.8395134,277.2175108,785.8685945,676.0294857,895.7077033,402.9660831,308.2371238,517.6267916,400.8474552,383.6951237,417.9997867,,,,45.96580808,83,180569,36.61150956,56.98153492,,,,,,,92.77761918,49.40017479,158.6525544,,,,42.47347304,32.08400508,55.15533763,,,,5.215318134,70,13422,4.065596342,6.589240712,,,,,,,,,,,,,4.29389313,3.131995113,5.745566841,,,,,,,0.111,,,0.096,0.128,0.17,,,0.149,0.19,0.104,,,0.091,0.118,246.1,419,170283,,,0.121,23970,,,,0.036737523,7369.547148,200600,,,36.90561173,213,577148,31.94929927,41.8619242,,,,,,,79.19344522,51.73178769,116.036746,,,,36.20054259,30.79042222,41.61066296,,,,0.344,,,0.329,0.359,0.062180678,6998,112543,0.052648763,0.071712593,0.027315257,1086,39758,0.018974832,0.035655683,0.002181446,430,197117,,,458.4116279,0.8590625,1718.125,2000,,,0.042676939,565,13239,0.026728698,0.05862518,,,,,,,,,,,,,,,,,,,,,0.139629334,,,,,10787.29891,,,,,0.813724316,47563,58451,0.766233295,0.861215337,60533,,,56954.95745,64111.04255,70769,22228.91489,119309.0851,42329,28224.14894,56433.85106,37167,31320.3617,43013.6383,52299,42251.17021,62346.82979,60977,58434.3617,63519.6383,,,,,,0.481169412,11307,23499,,,60.39184754,,,,,0.41089984,,60533,,,5.620193256,57,10142,,,2.584271239,35,1354347,1.800039606,3.594095706,,,,,,,18.98588264,10.37975871,31.85508499,,,,1.33489724,0.747131852,2.201709992,,,,11.42327901,111,962446,9.167434304,13.67912371,11.53311459,,,,,,,,,,,,,11.76043092,9.380580279,14.56021371,,,,5.402900526,52,962446,4.035144538,7.08518522,,,,,,,,,,,,,5.407607876,3.913512633,7.284012321,,,,6.128414653,83,1354347,4.881248063,7.597092015,,,,,,,,,,,,,6.40750675,5.013479409,8.069194313,,,,9.878787879,,16500,,,90,73,0.627371246,93494,149025,,,0.633,,,,,120.0291661,,,,,0.648495802,52748,81339,0.640551751,0.656439852,0.145854299,11450,78503,0.133937519,0.157771078,0.870160686,70778,81339,0.858641847,0.881679524,197117,,,,,0.188005093,37059,197117,,,0.205375488,40483,197117,,,0.059654926,11759,197117,,,0.003059097,603,197117,,,0.049914518,9839,197117,,,0.000796481,157,197117,,,0.05110163,10073,197117,,,0.810046825,159674,197117,,,0.014680076,2769,188623,0.011835374,0.017524778,0.505451077,99633,197117,,,0.249472778,49566,198683,, -36,009,36009,NY,Cattaraugus County,2024,1,9635.023897,1379,210059,8803.760276,10466.28752,0,22405.50322,16342.7278,29980.32612,,,,,2,,,,2,,,,2,9334.023179,8460.122247,10207.92411,,,,,2,,0.164,,,0.139,0.192,3.854924562,,,3.191268835,4.595826148,5.309624154,,,4.571521998,6.105350178,0.075574601,388,5134,0.068344373,0.082804829,0,0.091575092,0.057360769,0.125789414,,,,,,,0.097744361,0.047273477,0.148215245,0.073203492,0.065565026,0.080841959,,,,0.090909091,0.04704376,0.134774422,0.212,,,0.172,0.255,0.414,,,0.366,0.46,8,0.024149545,0.122,,,0.262,,,0.222,0.306,0.590573973,45499,77042,,,0.182130677,,,0.153444135,0.211966063,0.243902439,10,41,0.162984791,0.330636148,246,188,76426,,,16.89492591,301,17816,14.98626352,18.8035883,26.9121813,16.20289117,42.02670478,,,,,,,27.5974026,16.07650401,44.18611496,15.6219232,13.6371902,17.60665621,,,,29.71768202,18.15233222,45.89654963,0.064685493,3807,58854,0.055153578,0.074217408,0.00043179,33,76426,,,2315.939394,0.000457881,35,76439,,,2183.971429,0.00173995,133,76439,,,574.7293233,3268,,,,,2775,,,,3176,0.42,,,,,0.29,,,,0.43,0.42,,,,,0.07,,0.39,0.28,0.43,0.892580184,47421,53128,0.882331103,0.902829265,0.539346608,9047,16774,0.507280658,0.571412558,0.04028133,1323,32844,,,0.2,3214,,0.149957447,0.250042553,0.430434783,0.315485877,0.545383689,,,,0.032448378,0,0.199881795,0.268156425,0.177422204,0.358890645,0.235023384,0.204508923,0.265537845,4.652001209,107745,23161,4.309963195,4.994039223,0.221508446,3724,16812,0.191611528,0.251405365,14.13131657,108,76426,,,71.87776076,275,382594,63.38235233,80.37316919,158.4534939,96.78751058,244.71857,,,,,,,,,,72.07467979,63.12228719,81.02707239,,,,7.2,,,,,1,,,,,0.13046875,4175,32000,0.11814066,0.14279684,0.105978861,0.094147681,0.117810042,0.01828125,0.01319751,0.023364991,0.0203125,0.015430041,0.025194959,0.771392514,25061,32488,0.754121584,0.788663444,0.801963994,0.745532346,0.858395641,,,,,,,0.749536178,0.595496527,0.903575829,0.766733082,0.749124484,0.784341681,0.298,,32488,0.275869067,0.320130933,75.51313582,,,74.86529991,76.16097172,66.13523667,62.2782757,69.99219764,,,,,,,80.96744605,74.06039284,87.87449925,75.718392,75.03876415,76.39801984,,,,462.3948016,1379,210059,436.0129245,488.7766788,975.84301,763.5370555,1228.91277,,,,,,,,,,451.699556,424.5317183,478.8673936,,,,55.4572583,42,75734,39.96871383,74.96210259,,,,,,,,,,,,,55.07994461,38.36519955,76.60286946,,,,4.296270837,25,5819,2.78031996,6.342143272,,,,,,,,,,,,,4.816112084,3.018231802,7.291651573,,,,,,,0.119,,,0.103,0.138,0.167,,,0.145,0.19,0.103,,,0.09,0.118,122.1,79,64703,,,0.122,9390,,,,0.024149545,1939.619013,80317,,,24.51774472,56,228406,18.52044087,31.83833087,,,,,,,,,,,,,22.81354056,16.76253151,30.33717265,,,,0.347,,,0.329,0.363,0.077198521,3277,42449,0.065283627,0.089113414,0.033228949,573,17244,0.023697034,0.042760864,0.001334397,102,76439,,,749.4019608,0.855241449,850.11,994,,,0.075138922,311,4139,0.048113751,0.102164094,,,,,,,,,,,,,,,,,,,,,0.174955666,,,,,10324.42818,,,,,0.871748325,45140,51781,0.828406982,0.915089667,52383,,,47606.31915,57159.68085,34330,29329.31915,39330.68085,86897,32205.25532,141588.7447,40000,25733.10638,54266.89362,40729,21893.93617,59564.06383,57537,55379.21277,59694.78723,,,,,,0.493963964,5483,11100,,,50.01217732,,,,,0.466105416,,52383,,,4.418604651,19,4300,,,,,,,,,,,,,,,,,,,,,,,,,,15.68810382,57,382594,11.7514663,20.52042606,14.8982995,,,,,,,,,,,,,16.33356872,12.08366406,21.59384406,,,,8.886704967,34,382594,6.154301527,12.41827945,,,,,,,,,,,,,9.262609451,6.335618008,13.07604084,,,,10.77680312,58,538193,8.18327843,13.93151709,,,,,,,,,,,,,10.6844851,7.97968452,14.01128071,,,,8.717948718,,7800,,,24,44,0.591120864,35018,59240,,,0.528,,,,,33.85261221,,,,,0.73735353,23220,31491,0.722670803,0.752036256,0.110935753,3374,30414,0.098873143,0.122998364,0.799117208,25165,31491,0.787804651,0.810429766,76439,,,,,0.215884562,16502,76439,,,0.20974895,16033,76439,,,0.014233572,1088,76439,,,0.038278889,2926,76439,,,0.008438101,645,76439,,,0.000431717,33,76439,,,0.026059996,1992,76439,,,0.895851594,68478,76439,,,0.006445229,469,72767,0.004240874,0.008649585,0.497324664,38015,76439,,,0.618091431,47619,77042,, -36,011,36011,NY,Cayuga County,2024,1,7319.662684,1095,209569,6579.713824,8059.611543,0,,,,2,,,,2,12868.34247,7355.369587,20897.38196,1,,,,2,7411.625446,6625.119047,8198.131844,,,,,2,,0.151,,,0.126,0.178,3.906533708,,,3.231963591,4.623130165,5.204792731,,,4.423962076,5.938628039,0.072022161,364,5054,0.06489461,0.079149712,0,,,,,,,0.128654971,0.078470843,0.178839099,0.050251256,0.019897855,0.080604657,0.071157707,0.06363189,0.078683524,,,,0.070512821,0.03033841,0.110687231,0.215,,,0.172,0.258,0.405,,,0.358,0.45,8.6,0.009936327,0.103,,,0.227,,,0.191,0.266,0.791168293,60325,76248,,,0.174505269,,,0.145439446,0.202757424,0.333333333,11,33,0.241734343,0.424691959,270.2,205,75880,,,13.51351351,207,15318,11.67257544,15.35445158,,,,,,,39.4265233,24.70839224,59.69223008,20.50473186,10.91790614,35.06371596,11.65871754,9.817324525,13.50011056,,,,24.96532594,14.79603437,39.45597818,0.051173971,2938,57412,0.044025034,0.058322907,0.000289932,22,75880,,,3449.090909,0.000426678,32,74998,,,2343.6875,0.002173391,163,74998,,,460.1104295,3511,,,,,,,1820,,3468,0.53,,,,,,,0.36,,0.53,0.54,,,,,,,0.31,0.38,0.54,0.884909886,49001,55374,0.87487163,0.894948141,0.585108661,10931,18682,0.546840596,0.623376725,0.034204609,1217,35580,,,0.179,2487,,0.127765957,0.230234043,,,,0.105691057,0,0.791255068,0.244498778,0,0.554239695,0.131101813,0.061403742,0.200799884,0.166264659,0.13509842,0.197430899,4.712822245,125592,26649,4.215638581,5.210005908,0.237856514,3511,14761,0.197999817,0.277713211,9.356879283,71,75880,,,67.84384435,260,383233,59.59715098,76.09053771,,,,,,,71.96127175,35.92280758,128.7585929,,,,71.17541107,62.26283986,80.08798229,,,,7,,,,,1,,,,,0.124392614,3840,30870,0.110607668,0.13817756,0.108504399,0.095396562,0.121612236,0.013443473,0.007398332,0.019488614,0.015063168,0.007892712,0.022233624,0.802646636,27355,34081,0.792818677,0.812474595,,,,,,,,,,0.533242877,0.369885048,0.696600705,0.782671991,0.768895129,0.796448852,0.334,,34081,0.308086818,0.359913182,78.36415954,,,77.72605457,79.00226451,,,,,,,72.40925025,67.1817169,77.6367836,,,,78.21693196,77.55382034,78.88004358,,,,357.9818374,1095,209569,335.1893805,380.7742942,,,,,,,536.2865197,366.8195825,757.0765527,,,,362.5747623,338.5095677,386.6399568,,,,45.42288708,30,66046,30.64663117,64.84399569,,,,,,,,,,,,,39.10415926,24.50636842,59.20416706,,,,6.490952006,33,5084,4.468072693,9.115709927,,,,,,,,,,,,,6.200177148,4.119972687,8.960982273,,,,,,,0.114,,,0.098,0.131,0.166,,,0.145,0.188,0.096,,,0.083,0.11,217.7,143,65694,,,0.103,7870,,,,0.009936327,795.1644822,80026,,,27.57292601,63,228485,21.18779342,35.27775009,,,,,,,,,,,,,29.79010187,22.78706746,38.26663211,,,,0.35,,,0.333,0.368,0.059325003,2540,42815,0.049793088,0.068856918,0.028284672,434,15344,0.019944246,0.036625097,0.00112003,84,74998,,,892.8333333,0.827705656,643.955,778,,,0.064020858,221,3452,0.030483413,0.097558302,,,,,,,,,,,,,,,,,,,,,0.092976031,,,,,9087.682286,,,,,0.84845487,50601,59639,0.800677725,0.896232015,64129,,,60525.93617,67732.06383,,,,118500,106367.0638,130632.9362,47576,13978.38298,81173.61702,42321,31713.17021,52928.82979,64713,61133.76596,68292.23404,,,,,,0.479625681,4049,8442,,,65.64179406,,,,,0.39027585,,64129,,,6.94629976,26,3743,,,,,,,,,,,,,,,,,,,,,,,,,,13.21731849,51,383233,9.711588476,17.57623161,13.30783101,,,,,,,,,,,,,14.65893307,10.69232637,19.61480578,,,,4.957819395,19,383233,2.984931142,7.74224912,,,,,,,,,,,,,5.519725757,3.323235479,8.61973551,,,,9.826060195,53,539382,7.360393364,12.85272867,,,,,,,,,,,,,9.8928277,7.294190195,13.11645428,,,,11.28571429,,7000,,,51,28,0.601685899,36760,61095,,,0.603,,,,,55.68911798,,,,,0.700194112,21643,30910,0.679475028,0.720913196,0.125490849,3771,30050,0.107382803,0.143598895,0.852636687,26355,30910,0.834135626,0.871137749,74998,,,,,0.191565108,14367,74998,,,0.216285768,16221,74998,,,0.035774287,2683,74998,,,0.005120137,384,74998,,,0.007466866,560,74998,,,0.000853356,64,74998,,,0.033267554,2495,74998,,,0.896917251,67267,74998,,,0.004597733,333,72427,0.002270013,0.006925453,0.48850636,36637,74998,,,0.587753121,44815,76248,, -36,013,36013,NY,Chautauqua County,2024,1,8615.738343,2079,345840,8017.699029,9213.777656,0,,,,2,,,,2,17404.76511,10773.82392,26605.0323,1,11145.82886,8876.404286,13415.25343,,8386.119262,7743.878081,9028.360443,,,,,2,,0.166,,,0.141,0.195,4.024805942,,,3.337061358,4.830869034,5.220049798,,,4.487607438,6.062663153,0.080238423,700,8724,0.074537738,0.085939108,0,,,,,,,0.125,0.06375,0.18625,0.097987752,0.080752205,0.115223299,0.077246012,0.071055799,0.083436224,,,,0.089552239,0.050077089,0.129027388,0.22,,,0.177,0.264,0.381,,,0.338,0.431,7.6,0.05647709,0.124,,,0.252,,,0.214,0.293,0.776949169,99183,127657,,,0.171630793,,,0.146530751,0.202007611,0.113207547,6,53,0.055462442,0.188379612,341.5,433,126807,,,20.88552002,642,30739,19.26992,22.50112005,,,,,,,,,,40.17857143,33.40085057,46.95629228,18.36078747,16.6773799,20.04419503,,,,34.00174368,24.17856364,46.48150293,0.055170485,5325,96519,0.046830059,0.06351091,0.00063088,80,126807,,,1585.0875,0.000547502,69,126027,,,1826.478261,0.001896419,239,126027,,,527.3096234,2309,,,,,12209,,7642,3061,2150,0.46,,,,,0.34,,0.34,0.32,0.47,0.52,,,,,0.11,0.47,0.34,0.43,0.52,0.896783142,80176,89404,0.890473217,0.903093066,0.597340164,17023,28498,0.560946355,0.633733974,0.038654863,2061,53318,,,0.266,6551,,0.211191489,0.320808511,0.21192053,0,0.536033822,0.292929293,0,0.729711612,0.59125964,0.412672309,0.769846971,0.51653237,0.464881402,0.568183339,0.188745359,0.162997657,0.21449306,4.993219726,110465,22123,4.656180663,5.330258789,0.272529183,7004,25700,0.238045033,0.307013333,16.24515997,206,126807,,,79.46890897,506,636727,72.54457409,86.39324385,,,,,,,109.6972356,61.39671005,180.9289079,95.95969693,70.75310534,127.2286363,78.72238623,71.33295389,86.11181856,,,,5.9,,,,,0,,,,,0.144149184,7730,53625,0.130255896,0.158042472,0.124258125,0.111511019,0.137005231,0.012214452,0.008516769,0.015912136,0.015850816,0.010844589,0.020857043,0.776498765,41823,53861,0.758549698,0.794447833,,,,,,,0.574297189,0.495270128,0.65332425,0.657939189,0.564507507,0.751370872,0.789842086,0.774567529,0.805116644,0.208,,53861,0.191234259,0.224765741,76.73470412,,,76.24723172,77.22217651,,,,,,,68.63424122,63.80033259,73.46814985,75.06076396,72.41665262,77.7048753,76.92506282,76.40689104,77.4432346,,,,423.5194138,2079,345840,403.8074295,443.2313981,,,,,,,766.2187932,568.702357,1010.163957,554.5275596,452.6077526,656.4473666,413.391413,392.7695675,434.0132585,,,,37.71371103,45,119320,27.50863962,50.46391259,,,,,,,,,,,,,35.2443609,24.26059635,49.49618642,,,,6.271626298,58,9248,4.762308789,8.107531331,,,,,,,,,,,,,4.81540931,3.37265348,6.666556245,,,,,,,0.123,,,0.105,0.142,0.172,,,0.151,0.196,0.111,,,0.096,0.127,228.1,248,108726,,,0.124,15850,,,,0.05647709,7619.041759,134905,,,36.60379942,139,379742,30.51859968,42.68899916,,,,,,,,,,72.72246463,45.57478141,110.1026854,33.0684821,26.86040527,39.27655892,,,,0.358,,,0.341,0.373,0.064551053,4591,71122,0.053827649,0.075274457,0.029861345,799,26757,0.02032943,0.03939326,0.001214026,153,126027,,,823.7058824,0.842834646,1284.48,1524,,,0.083034977,603,7262,0.055643788,0.110426165,,,,,,,,,,,,,,,,,,,,,0.173954482,,,,,9552.869556,,,,,0.829238106,45560,54942,0.78363778,0.874838432,55644,,,51865.78723,59422.21277,32045,1781.170213,62308.82979,50213,19060.31915,81365.68085,30250,23220.21277,37279.78723,28101,23461.34043,32740.65957,57343,55173.29787,59512.70213,,,,,,0.545046325,9589,17593,,,59.65906549,,,,,0.444935662,,55644,,,5.550686532,38,6846,,,2.11814807,19,897010,1.275263505,3.307750591,,,,,,,,,,,,,1.662336068,0.885123945,2.842645303,,,,12.69975271,87,636727,10.03862751,15.84986614,13.66362664,,,,,,,,,,,,,12.72661868,9.882717383,16.1340217,,,,7.852658989,50,636727,5.82839486,10.35275191,,,,,,,,,,,,,7.944460995,5.772457521,10.66506808,,,,7.357777505,66,897010,5.69050459,9.360897029,,,,,,,,,,,,,7.544448309,5.743183607,9.731788643,,,,11.70940171,,11700,,,31,106,0.596566524,59770,100190,,,0.588,,,,,60.56700791,,,,,0.690778017,36891,53405,0.676661042,0.704894992,0.139083349,7192,51710,0.126155562,0.152011137,0.840558,44890,53405,0.829077005,0.852038995,126027,,,,,0.200330088,25247,126027,,,0.219849715,27707,126027,,,0.020939957,2639,126027,,,0.007847525,989,126027,,,0.006728717,848,126027,,,0.000571306,72,126027,,,0.084648528,10668,126027,,,0.862513588,108700,126027,,,0.014194082,1715,120825,0.011021073,0.017367091,0.502328866,63307,126027,,,0.440688721,56257,127657,, -36,015,36015,NY,Chemung County,2024,1,9354.575723,1462,228574,8591.43577,10117.71568,0,,,,2,,,,2,15160.74064,11569.24228,19514.87842,,,,,2,9117.386708,8308.731787,9926.04163,,,,,2,,0.152,,,0.128,0.178,3.744154233,,,3.079660484,4.416117666,5.439314813,,,4.666458053,6.164741987,0.076180971,458,6012,0.069474975,0.082886967,0,,,,0.084615385,0.036773215,0.132457554,0.099150142,0.06797262,0.130327664,0.130909091,0.091042672,0.17077551,0.069995989,0.06291394,0.077078038,,,,0.106719368,0.068673158,0.144765577,0.224,,,0.183,0.267,0.363,,,0.321,0.406,7.9,0.061839964,0.11,,,0.262,,,0.223,0.303,0.817250559,68770,84148,,,0.184015043,,,0.157551511,0.212915105,0.277777778,10,36,0.190187864,0.368993994,390.1,324,83045,,,23.46337356,418,17815,21.21401658,25.71273055,,,,,,,40.12036108,28.66257416,54.6325446,44.71544715,30.78005633,62.79711283,21.18354517,18.82538192,23.54170842,,,,26.33889377,17.77074102,37.6004086,0.04961636,3188,64253,0.041275935,0.057956786,0.000782708,65,83045,,,1277.615385,0.000650898,53,81426,,,1536.339623,0.003328175,271,81426,,,300.4649447,4118,,,,,,,4127,,4170,0.49,,,,,,0.45,0.44,,0.5,0.49,,,,,,0.44,0.41,0.24,0.5,0.901738909,53153,58945,0.893742106,0.909735713,0.601097217,12162,20233,0.558769664,0.643424771,0.036518144,1272,34832,,,0.211,3505,,0.159765957,0.262234043,,,,0.075812274,0,0.402982105,0.310734463,0.04899426,0.572474667,0.558027079,0.475418759,0.6406354,0.14446901,0.109063878,0.179874142,4.236475758,114728,27081,3.781861122,4.691090394,0.261910189,4596,17548,0.220463569,0.30335681,10.83749774,90,83045,,,90.4677109,379,418934,81.35956314,99.57585867,,,,,,,155.8317018,110.8115735,213.0270662,,,,91.37061477,81.49726166,101.2439679,,,,6.9,,,,,0,,,,,0.137052141,4705,34330,0.119173948,0.154930334,0.120636324,0.102897721,0.138374927,0.012671133,0.007008217,0.018334049,0.006845325,0.002834972,0.010855678,0.808084211,28788,35625,0.793739113,0.822429308,,,,,,,0.659552846,0.532527141,0.78657855,,,,0.829973016,0.815002986,0.844943047,0.171,,35625,0.152618597,0.189381403,75.48534075,,,74.88234446,76.08833704,,,,,,,71.05641266,68.19762539,73.91519994,100.7611066,66.53367376,134.9885395,75.54140305,74.90850959,76.1742965,,,,460.2538175,1462,228574,435.189424,485.318211,,,,,,,679.238259,550.1851705,829.4661701,,,,457.965299,431.4305951,484.500003,,,,49.87786318,39,78191,35.46803659,68.18468093,,,,,,,,,,,,,48.46370069,32.69825534,69.1849462,,,,6.621447028,41,6192,4.751664707,8.982740563,,,,,,,,,,,,,5.402276674,3.589773617,7.807793931,,,,,,,0.113,,,0.098,0.131,0.173,,,0.151,0.196,0.1,,,0.087,0.113,254.4,180,70750,,,0.11,9250,,,,0.061839964,5493.243987,88830,,,37.73236514,94,249123,30.49159186,46.1748589,,,,,,,108.3203575,61.91444353,175.9054742,,,,35.09937804,27.60788739,43.99737431,,,,0.351,,,0.334,0.369,0.058799641,2751,46786,0.048076237,0.069523045,0.025831063,474,18350,0.017490637,0.034171488,0.00169479,138,81426,,,590.0434783,0.81306698,691.92,851,,,0.122582096,545,4446,0.078023334,0.167140859,,,,,,,,,,,,,,,,,,,,,0.070096188,,,,,8623.331333,,,,,0.835092537,46837,56086,0.791580385,0.878604688,56664,,,52882.21277,60445.78723,,,,66477,24780.82979,108173.1702,38659,27946.31915,49371.68085,41125,12020.48936,70229.51064,63177,60178.02128,66175.97872,,,,,,0.506419011,5562,10983,,,57.32446332,,,,,0.451609488,,56664,,,6.31395602,29,4593,,,4.389467304,26,592327,2.867345776,6.431586621,,,,,,,50.31305903,29.81870746,79.51632454,,,,,,,,,,13.70158747,59,418934,10.3219108,17.83449943,14.08336397,,,,,,,,,,,,,15.03118981,11.19170811,19.76323865,,,,7.638434694,32,418934,5.224683676,10.78319069,,,,,,,,,,,,,6.387611367,4.049197671,9.584553338,,,,10.12953993,60,592327,7.729906108,13.03872581,,,,,,,,,,,,,10.98635926,8.298977716,14.26670133,,,,5,,8000,,,31,9,0.611738427,39711,64915,,,0.679,,,,,81.01364227,,,,,0.684349751,23801,34779,0.668193019,0.700506483,0.140518257,4772,33960,0.119836975,0.161199539,0.849161851,29533,34779,0.833451801,0.8648719,81426,,,,,0.20841009,16970,81426,,,0.206629332,16825,81426,,,0.055621055,4529,81426,,,0.003770295,307,81426,,,0.015842606,1290,81426,,,0.000429838,35,81426,,,0.035381819,2881,81426,,,0.855807727,69685,81426,,,0.006261045,496,79220,0.003783605,0.008738486,0.503426424,40992,81426,,,0.259067358,21800,84148,, -36,017,36017,NY,Chenango County,2024,1,9148.970854,818,127992,8069.122065,10228.81964,0,,,,2,,,,2,,,,2,,,,2,9341.123567,8216.362698,10465.88444,,,,,2,,0.149,,,0.124,0.175,3.507406149,,,2.837039099,4.19426301,5.049265049,,,4.307220288,5.795802027,0.069674647,227,3258,0.060932153,0.078417141,0,,,,,,,,,,,,,0.069462228,0.060546806,0.07837765,,,,,,,0.23,,,0.183,0.274,0.386,,,0.34,0.431,8.5,0.018133186,0.104,,,0.25,,,0.208,0.289,0.542905549,25636,47220,,,0.175139627,,,0.147253414,0.20423145,0.193548387,6,31,0.104538512,0.296792565,238.5,111,46537,,,19.45190758,181,9305,16.61804373,22.28577143,,,,,,,,,,,,,20.27499417,17.26238922,23.28759912,,,,,,,0.051291238,1861,36283,0.042950813,0.059631664,0.000300836,14,46537,,,3324.071429,0.000322872,15,46458,,,3097.2,0.001915709,89,46458,,,522,2494,,,,,,,,,2507,0.46,,,,,,,,,0.47,0.47,,,,,,,0.28,0.44,0.47,0.885243971,30062,33959,0.872363956,0.898123986,0.546183972,5718,10469,0.500412485,0.591955458,0.032735918,716,21872,,,0.169,1554,,0.108234043,0.229765957,,,,,,,0.432835821,0,0.993313631,0.096,0.01592989,0.176070111,0.173229292,0.14349208,0.202966504,4.139314845,114183,27585,3.80969689,4.4689328,0.219182357,2107,9613,0.177093143,0.261271571,10.09949073,47,46537,,,72.07268318,170,235873,61.23834715,82.90701921,,,,,,,,,,,,,73.53402742,62.27962345,84.7884314,,,,6.7,,,,,0,,,,,0.132469402,2760,20835,0.114000505,0.1509383,0.110389925,0.092032539,0.128747311,0.017758579,0.010664278,0.02485288,0.009599232,0.00494675,0.014251715,0.791954354,16517,20856,0.770169127,0.81373958,,,,,,,,,,,,,0.780607913,0.755718941,0.805496885,0.316,,20856,0.289118775,0.342881225,75.79218656,,,74.9624045,76.62196862,,,,,,,,,,,,,75.52954876,74.67765153,76.38144599,,,,434.2456499,818,127992,401.8462591,466.6450407,,,,,,,,,,,,,441.6693423,408.1476513,475.1910334,,,,58.84429799,25,42485,38.08092703,86.86579192,,,,,,,,,,,,,64.08448899,41.47210235,94.60134756,,,,8.154636062,27,3311,5.373956548,11.86456734,,,,,,,,,,,,,8.53619981,5.625409463,12.41972256,,,,,,,0.111,,,0.094,0.127,0.163,,,0.14,0.185,0.098,,,0.085,0.112,145.7,58,39800,,,0.104,4910,,,,0.018133186,915.308852,50477,,,30.61064681,43,140474,22.15307688,41.23234037,,,,,,,,,,,,,31.63555837,22.80012785,42.76208462,,,,0.364,,,0.345,0.382,0.060404937,1620,26819,0.049681533,0.071128341,0.026456091,263,9941,0.018115665,0.034796517,0.001119291,52,46458,,,893.4230769,0.899230073,496.375,552,,,0.138554217,299,2158,0.066356595,0.210751839,,,,,,,,,,,,,,,,,,,,,0.061867864,,,,,11700.204,,,,,0.825946103,45636,55253,0.767256197,0.884636008,60755,,,55093.04255,66416.95745,,,,55234,272.9787234,110195.0213,70750,4480.553192,137019.4468,82500,42631.57447,122368.4255,61535,58577.7234,64492.2766,,,,,,0.449579832,3103,6902,,,64.33103222,,,,,0.374751049,,60755,,,5.301794454,13,2452,,,,,,,,,,,,,,,,,,,,,,,,,,16.41399845,39,235873,11.43295133,22.82789842,16.53432144,,,,,,,,,,,,,16.76151902,11.60783918,23.42254279,,,,11.02288096,26,235873,7.200511808,16.15107455,,,,,,,,,,,,,11.65783362,7.615283965,17.08142732,,,,12.00134415,40,333296,8.573936213,16.34242444,,,,,,,,,,,,,11.7319534,8.260377885,16.17095236,,,,6.818181818,,4400,,,11,19,0.601475718,22417,37270,,,0.559,,,,,20.86954226,,,,,0.762848235,15170,19886,0.748811832,0.776884638,0.09693003,1866,19251,0.080341111,0.113518948,0.853917329,16981,19886,0.834865982,0.872968676,46458,,,,,0.202935985,9428,46458,,,0.224116406,10412,46458,,,0.009040424,420,46458,,,0.004455637,207,46458,,,0.005682552,264,46458,,,0.000172199,8,46458,,,0.025399285,1180,46458,,,0.942722459,43797,46458,,,0.003915865,175,44690,0.001063865,0.006767865,0.494834044,22989,46458,,,0.833587463,39362,47220,, -36,019,36019,NY,Clinton County,2024,1,6387.603961,1087,222336,5770.880605,7004.327318,0,,,,2,,,,2,,,,2,,,,2,6729.160286,6055.008885,7403.311686,,,,,2,,0.146,,,0.123,0.172,3.591825167,,,2.967382187,4.371981103,5.026859621,,,4.313261554,5.852060994,0.076799033,381,4961,0.069389387,0.084208678,0,,,,,,,,,,0.091743119,0.037551276,0.145934962,0.076114923,0.068504292,0.083725554,,,,,,,0.197,,,0.159,0.24,0.382,,,0.337,0.43,8.3,0.032263748,0.103,,,0.245,,,0.207,0.285,0.672394574,53686,79843,,,0.198073713,,,0.167807617,0.230547741,0.222222222,6,27,0.123749407,0.332441015,213.6,170,79596,,,10.62827225,203,19100,9.166193643,12.09035086,,,,,,,,,,,,,11.86013642,10.18686227,13.53341057,,,,,,,0.053060473,3171,59762,0.044720048,0.061400899,0.000804061,64,79596,,,1243.6875,0.000647594,51,78753,,,1544.176471,0.003441139,271,78753,,,290.601476,2928,,,,,,,,,2950,0.53,,,,,,0.31,0.22,,0.54,0.48,,,,,0.28,0.49,0.37,0.29,0.48,0.87895299,48556,55243,0.866416692,0.891489287,0.615233263,11882,19313,0.568592922,0.661873604,0.033372861,1182,35418,,,0.14,1916,,0.094723404,0.185276596,,,,0.029411765,0,0.639052601,0.488095238,0.08305232,0.893138156,0.395454546,0.279399929,0.511509162,0.147265965,0.118085335,0.176446595,4.631051997,126738,27367,4.147011617,5.115092377,0.204808299,2922,14267,0.165274608,0.24434199,6.407357154,51,79596,,,60.76695871,244,401534,53.14215515,68.39176227,,,,,,,,,,,,,64.57942993,56.28718125,72.87167861,,,,6.6,,,,,0,,,,,0.114561876,3615,31555,0.098270399,0.130853353,0.092905297,0.078817283,0.106993311,0.017588338,0.009667675,0.025509001,0.007922675,0.003773988,0.012071362,0.785742777,27578,35098,0.759338033,0.812147522,,,,,,,,,,0.544117647,0.363114061,0.725121233,0.798150717,0.770773162,0.825528271,0.22,,35098,0.196834799,0.243165201,78.68047086,,,78.10590357,79.25503815,,,,,,,81.37575854,77.86634562,84.88517147,87.4309172,80.03756223,94.82427217,78.28838785,77.68681435,78.88996136,,,,352.8674112,1087,222336,330.757632,374.9771904,,,,,,,,,,,,,366.9370832,343.3283499,390.5458164,,,,34.71770169,24,69129,22.24428656,51.65718815,,,,,,,,,,,,,33.87206039,20.96733924,51.77704238,,,,5.6640625,29,5120,3.79331155,8.134538562,,,,,,,,,,,,,5.365249691,3.504759227,7.861333901,,,,,,,0.111,,,0.096,0.129,0.164,,,0.143,0.187,0.102,,,0.089,0.117,252.1,175,69429,,,0.103,8220,,,,0.032263748,2649.757054,82128,,,15.00881768,36,239859,10.51199139,20.77853009,,,,,,,,,,,,,15.7620487,10.91567693,22.02588318,,,,0.331,,,0.315,0.347,0.06129174,2790,45520,0.051759825,0.070823655,0.027894561,418,14985,0.019554136,0.036234987,0.001320585,104,78753,,,757.2403846,0.877911165,731.3,833,,,0.039281943,186,4735,0.014821929,0.063741957,,,,,,,,,,,,,,,,,,,,,0.098120242,,,,,10632.62,,,,,0.902205793,51986,57621,0.826740375,0.977671211,65272,,,59306.21277,71237.78723,,,,65901,45742.19149,86059.80851,55506,41895.61702,69116.38298,60313,42011.7234,78614.2766,68010,64302.08511,71717.91489,,,,,,0.424191475,4289,10111,,,64.76173075,,,,,0.378278588,,65272,,,7.226980728,27,3736,,,,,,,,,,,,,,,,,,,,,,,,,,10.81108346,45,401534,7.791678026,14.61344416,11.20702107,,,,,,,,,,,,,11.67135743,8.338188863,15.89307619,,,,4.731853342,19,401534,2.848884818,7.389375139,,,,,,,,,,,,,5.266133771,3.170556537,8.223720211,,,,6.207236574,35,563858,4.323567707,8.632763456,,,,,,,,,,,,,6.510583644,4.48158621,9.143280046,,,,5.9375,,6400,,,8,30,0.556828125,35637,64000,,,0.631,,,,,42.11972979,,,,,0.690392331,22542,32651,0.672542394,0.708242268,0.122496831,3866,31560,0.106397457,0.138596206,0.856267802,27958,32651,0.834716244,0.87781936,78753,,,,,0.178647163,14069,78753,,,0.194049751,15282,78753,,,0.03212576,2530,78753,,,0.004647442,366,78753,,,0.013955024,1099,78753,,,0.000355542,28,78753,,,0.02937031,2313,78753,,,0.905197262,71287,78753,,,0.003606889,275,76243,0.001295762,0.005918015,0.488590911,38478,78753,,,0.637313227,50885,79843,, -36,021,36021,NY,Columbia County,2024,1,7369.418537,874,161786,6477.114468,8261.722606,0,,,,2,,,,2,15510.9898,10465.19969,22142.90242,,7155.716331,4240.931003,11309.11682,1,7035.890386,6063.01982,8008.760953,,,,,2,,0.127,,,0.107,0.15,3.228502827,,,2.702729744,3.779246738,5.289332831,,,4.65683345,5.938643637,0.063264059,207,3272,0.054922705,0.071605413,0,,,,0.091603053,0.042204614,0.141001493,0.100628931,0.053867435,0.147390427,0.052795031,0.028369352,0.07722071,0.060321191,0.051085799,0.069556583,,,,,,,0.171,,,0.135,0.207,0.302,,,0.268,0.338,8.4,0.071296838,0.083,,,0.2,,,0.168,0.233,0.653061556,40209,61570,,,0.172748346,,,0.150986003,0.195565615,0.27027027,10,37,0.184074024,0.36059786,207.2,128,61778,,,10.30927835,102,9894,8.308567851,12.30998885,,,,,,,18.5528757,8.896825039,34.11939897,20.3562341,11.63534663,33.05724885,8.102893891,6.226486147,10.36712119,,,,28.76106195,15.31405418,49.18229185,0.055992809,2554,45613,0.047652384,0.064333235,0.000404675,25,61778,,,2471.12,0.000358973,22,61286,,,2785.727273,0.002251738,138,61286,,,444.1014493,2511,,,,,,,2877,,2462,0.43,,,,,,0.14,0.3,0.36,0.43,0.53,,,,,,0.46,0.41,0.47,0.53,0.920434608,43543,47307,0.90709462,0.933774596,0.593563151,8041,13547,0.544924819,0.642201482,0.027374832,836,30539,,,0.153,1404,,0.104148936,0.201851064,,,,0.306306306,0,0.650745171,0.422619048,0.126560609,0.718677486,0.055608821,0,0.115222253,0.144474317,0.104638854,0.184309781,4.726501788,159959,33843,4.290507596,5.162495979,0.253776435,2520,9930,0.201620361,0.305932509,9.874065201,61,61778,,,69.69959475,210,301293,60.27252594,79.12666355,,,,,,,100.8572869,55.13961729,169.2213898,,,,71.71139633,61.40545233,82.01734033,,,,7.1,,,,,0,,,,,0.148667325,3765,25325,0.130860082,0.166474568,0.135360763,0.116834915,0.153886612,0.010227048,0.005146498,0.015307599,0.004738401,0.001866075,0.007610727,0.693952141,20126,29002,0.670450624,0.717453658,,,,0.619565217,0.447732285,0.79139815,0.582909461,0.508706753,0.657112169,0.414386239,0.287661993,0.541110486,0.711769571,0.681557037,0.741982105,0.361,,29002,0.328631815,0.393368185,79.49700046,,,78.71220521,80.28179571,,,,,,,73.08133952,68.62689315,77.5357859,98.0911713,65.30179445,130.8805482,79.67286342,78.83857246,80.50715437,,,,335.7910941,874,161786,310.6293007,360.9528875,,,,,,,687.8715983,518.1990258,895.359436,346.5744658,226.3939475,507.8118921,323.7871116,297.237503,350.3367201,,,,47.07253654,21,44612,29.13864203,71.9553724,,,,,,,,,,,,,48.09715626,27.49168056,78.10676847,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.099,,,0.086,0.113,0.156,,,0.137,0.177,0.091,,,0.08,0.103,405.5,223,54992,,,0.083,5110,,,,0.071296838,4498.545318,63096,,,19.36129842,35,180773,13.48585375,26.92687922,,,,,,,,,,,,,16.74556404,10.93875839,24.53613118,,,,0.337,,,0.318,0.355,0.06179932,2216,35858,0.051075915,0.072522724,0.035651836,367,10294,0.024928432,0.04637524,0.000913749,56,61286,,,1094.392857,0.88697318,463,522,,,0.136510501,338,2476,0.073834872,0.19918613,,,,,,,,,,,,,,,,,,,,,0.120085144,,,,,14564.184,,,,,0.920192384,58354,63415,0.850394892,0.989989875,83533,,,77090.61702,89975.38298,,,,107054,17375.3617,196732.6383,23004,11084.34043,34923.65957,68235,37922.31915,98547.68085,85165,80113.08511,90216.91489,,,,,,0.472721386,2920,6177,,,59.03400284,,,,,0.345971053,,83533,,,6.589785832,16,2428,,,,,,,,,,,,,,,,,,,,,,,,,,13.62616947,44,301293,9.594080807,18.7818797,14.60372461,,,,,,,,,,,,,14.42489032,9.929430767,20.25790913,,,,6.969959475,21,301293,4.314514769,10.65432344,,,,,,,,,,,,,6.939812548,4.112972738,10.96789576,,,,11.09037238,47,423791,8.148788475,14.74784418,,,,,,,,,,,,,9.840367374,6.892072331,13.62321629,,,,5.416666667,,4800,,,10,16,0.746604069,35781,47925,,,0.536,,,,,24.39169797,,,,,0.745770751,18868,25300,0.733265377,0.758276125,0.15431289,3764,24392,0.133113616,0.175512163,0.855652174,21648,25300,0.838798537,0.872505811,61286,,,,,0.155745195,9545,61286,,,0.266390367,16326,61286,,,0.043533597,2668,61286,,,0.003687629,226,61286,,,0.022794766,1397,61286,,,0.000620044,38,61286,,,0.058512548,3586,61286,,,0.85228274,52233,61286,,,0.012026997,711,59117,0.008429851,0.015624144,0.495023333,30338,61286,,,0.827675816,50960,61570,, -36,023,36023,NY,Cortland County,2024,1,8089.108327,705,131063,7132.915718,9045.300937,0,,,,2,,,,2,,,,2,,,,2,8033.360798,7038.070529,9028.651067,,,,,2,,0.136,,,0.114,0.161,3.466232343,,,2.853232354,4.135880833,5.495610632,,,4.779874792,6.273843919,0.076457471,240,3139,0.067161413,0.085753529,0,,,,,,,,,,,,,0.076064201,0.066358453,0.085769949,,,,,,,0.189,,,0.151,0.231,0.388,,,0.34,0.436,8.4,0.043112925,0.097,,,0.24,,,0.2,0.279,0.814757846,38138,46809,,,0.188930962,,,0.159188646,0.219934004,0.375,6,16,0.240765683,0.502616143,323.9,150,46311,,,9.262622594,153,16518,7.794898833,10.73034635,,,,,,,,,,11.90476191,5.708796067,21.893281,8.923742564,7.40138686,10.44609827,,,,,,,0.050858017,1796,35314,0.042517591,0.059198442,0.000367083,17,46311,,,2724.176471,0.000346876,16,46126,,,2882.875,0.004075792,188,46126,,,245.3510638,3707,,,,,,,,,3700,0.55,,,,,,,,,0.55,0.5,,,,,,0.73,0.31,,0.5,0.906333265,26532,29274,0.89412678,0.91853975,0.673349876,6784,10075,0.615756184,0.730943568,0.037677715,856,22719,,,0.162,1344,,0.106,0.218,,,,0.155737705,0,0.813927159,,,,0.179271709,0.024945341,0.333598076,0.115635179,0.088761907,0.142508452,4.127283883,121078,29336,3.733347246,4.52122052,0.196319018,1728,8802,0.156007183,0.236630854,11.01250243,51,46311,,,62.53327362,148,236674,52.4584749,72.60807234,,,,,,,,,,,,,62.29388054,51.82423441,72.76352667,,,,6.7,,,,,0,,,,,0.128754171,2315,17980,0.109475307,0.148033036,0.106550464,0.088374356,0.124726571,0.019187987,0.011147832,0.027228142,0.007786429,0.001921896,0.013650963,0.747250806,16920,22643,0.726252117,0.768249496,,,,,,,,,,0.464539007,0.341488761,0.587589254,0.74485238,0.727056408,0.762648353,0.345,,22643,0.305753129,0.384246871,76.70865928,,,75.90401766,77.5133009,,,,,,,,,,,,,76.65835981,75.83376465,77.48295498,,,,424.1518793,705,131063,391.0887311,457.2150275,,,,,,,,,,,,,423.2205701,389.1755567,457.2655834,,,,33.86530077,16,47246,19.35694546,54.99512678,,,,,,,,,,,,,35.69134128,19.97617278,58.86743967,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.107,,,0.092,0.122,0.165,,,0.143,0.188,0.093,,,0.08,0.107,114.4,46,40203,,,0.097,4560,,,,0.043112925,2127.019275,49336,,,29.77350867,42,141065,21.45812621,40.24513436,,,,,,,,,,,,,27.72621899,19.41910292,38.38477406,,,,0.363,,,0.344,0.38,0.058786014,1567,26656,0.04806261,0.069509419,0.027452696,251,9143,0.019112271,0.035793122,0.001214066,56,46126,,,823.6785714,0.868981482,422.325,486,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.068713034,,,,,10529.3838,,,,,0.839911927,46920,55863,0.786909482,0.892914373,58274,,,52710.93617,63837.06383,,,,,,,28700,7685.702128,49714.29787,37283,24697.29787,49868.70213,66715,62685.38298,70744.61702,,,,,,0.496551724,2808,5655,,,67.84257129,,,,,0.390705975,,58274,,,10.0041684,24,2399,,,,,,,,,,,,,,,,,,,,,,,,,,9.262396068,23,236674,5.657712148,14.3050195,9.718008738,,,,,,,,,,,,,9.915282412,6.056512089,15.31334951,,,,,,,,,,,,,,,,,,,,,,,,,,,8.402403087,28,333238,5.583335831,12.14381191,,,,,,,,,,,,,7.79354889,4.99347383,11.59618298,,,,5.714285714,,4200,,,8,16,0.573614568,21892,38165,,,0.616,,,,,69.32732169,,,,,0.659662958,12213,18514,0.6428519,0.676474016,0.13537191,2426,17921,0.113468761,0.15727506,0.838500594,15524,18514,0.816543224,0.860457964,46126,,,,,0.184538005,8512,46126,,,0.174153406,8033,46126,,,0.020313923,937,46126,,,0.00427091,197,46126,,,0.011728743,541,46126,,,0.000433595,20,46126,,,0.032367862,1493,46126,,,0.914365,42176,46126,,,0.003300923,147,44533,0.000374195,0.006227651,0.506373846,23357,46126,,,0.468777372,21943,46809,, -36,025,36025,NY,Delaware County,2024,1,8346.418882,758,117868,7241.864425,9450.973339,0,,,,2,,,,2,,,,2,,,,2,8278.589786,7148.045908,9409.133664,,,,,2,,0.148,,,0.123,0.176,3.747268976,,,3.102492617,4.448855652,5.33894651,,,4.616700074,6.132064154,0.065567176,163,2486,0.055836953,0.075297399,0,,,,,,,,,,,,,0.068353307,0.057932991,0.078773622,,,,,,,0.205,,,0.163,0.25,0.335,,,0.288,0.384,8.1,0.036975849,0.111,,,0.248,,,0.21,0.291,0.58332581,25846,44308,,,0.16531228,,,0.139229635,0.195080054,0.129032258,4,31,0.051743132,0.232752664,180.3,80,44378,,,9.560618389,94,9832,7.725952848,11.6997756,,,,,,,,,,,,,10.43328833,8.33374015,12.90092259,,,,,,,0.056108771,1758,31332,0.047768345,0.064449196,0.000383073,17,44378,,,2610.470588,0.000201162,9,44740,,,4971.111111,0.00147519,66,44740,,,677.8787879,1609,,,,,,,,,1587,0.46,,,,,,0.38,0.31,,0.47,0.47,,,,,,0.22,0.31,0.47,0.48,0.903643163,29963,33158,0.888855708,0.918430618,0.581586658,5161,8874,0.523058869,0.640114447,0.036608345,680,18575,,,0.192,1313,,0.128851064,0.255148936,,,,,,,,,,0.274553571,0.047379902,0.501727241,0.19501321,0.150667383,0.239359037,4.693365729,113969,24283,4.249036025,5.137695433,0.211689038,1514,7152,0.1668601,0.256517976,13.29487584,59,44378,,,77.03431406,171,221979,65.48803004,88.58059807,,,,,,,,,,,,,82.03929043,69.59644429,94.48213658,,,,6.5,,,,,0,,,,,0.132593767,2510,18930,0.113641363,0.15154617,0.117687985,0.099114792,0.136261178,0.012150026,0.006993845,0.017306208,0.005810882,0.0028319,0.008789864,0.725754282,13687,18859,0.699558681,0.751949882,,,,,,,,,,0.552662722,0.377984109,0.727341335,0.74509695,0.710399777,0.779794122,0.33,,18859,0.293605899,0.366394101,77.51208374,,,76.62988821,78.39427927,,,,,,,,,,79.1569443,73.22196309,85.09192551,77.46106803,76.56524038,78.35689568,,,,395.6813369,758,117868,363.4329444,427.9297295,,,,,,,,,,,,,398.8606933,365.211188,432.5101987,,,,42.53991662,15,35261,23.80926841,70.1631232,,,,,,,,,,,,,36.31082063,18.12623083,64.97008818,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.115,,,0.099,0.134,0.171,,,0.149,0.196,0.095,,,0.083,0.11,121.3,48,39559,,,0.111,4950,,,,0.036975849,1774.101246,47980,,,22.64988562,30,132451,15.28178271,32.33412009,,,,,,,,,,,,,23.93924385,16.03248732,34.38074743,,,,0.347,,,0.33,0.363,0.064419445,1569,24356,0.053696041,0.075142849,0.028335141,209,7376,0.018803226,0.037867056,0.000961109,43,44740,,,1040.465116,0.853877315,368.875,432,,,0.060351719,151,2502,0.026594523,0.094108915,,,,,,,,,,,,,,,,,,,,,0.090371632,,,,,12185.85875,,,,,0.861563392,44660,51836,0.780536544,0.942590241,61424,,,56423.31915,66424.68085,63500,57407.91489,69592.08511,57708,18405.53192,97010.46809,,,,43056,29397.95745,56714.04255,58958,56205.65957,61710.34043,,,,,,0.412220786,2233,5417,,,59.82241752,,,,,0.370669445,,61424,,,9.906759907,17,1716,,,,,,,,,,,,,,,,,,,,,,,,,,18.94123099,43,221979,13.26620532,26.22264767,19.37120178,,,,,,,,,,,,,20.40426128,14.2123156,28.37738808,,,,13.06429888,29,221979,8.749365993,18.76251242,,,,,,,,,,,,,14.24634385,9.541000063,20.46012617,,,,11.16231602,35,313555,7.774962097,15.52407947,,,,,,,,,,,,,11.80748247,8.177024856,16.49977326,,,,8.285714286,,3500,,,6,23,0.632424284,23074,36485,,,0.427,,,,,5.835196804,,,,,0.771565495,14490,18780,0.753658499,0.789472492,0.140968188,2548,18075,0.119072779,0.162863597,0.840095847,15777,18780,0.815182228,0.865009466,44740,,,,,0.15672776,7012,44740,,,0.267836388,11983,44740,,,0.018104604,810,44740,,,0.004067948,182,44740,,,0.012807331,573,44740,,,0.000715244,32,44740,,,0.047451945,2123,44740,,,0.905520787,40513,44740,,,0.007820501,336,42964,0.001411244,0.014229758,0.489718373,21910,44740,,,0.905479823,40120,44308,, -36,027,36027,NY,Dutchess County,2024,1,6202.28203,3572,815254,5870.309064,6534.254995,0,,,,2,2493.629707,1580.747328,3741.668921,1,8364.220921,7284.67324,9443.768602,,4578.077196,3861.392979,5294.761414,,6464.20398,6038.12272,6890.28524,,,,,2,,0.134,,,0.115,0.158,3.405682534,,,2.766930826,4.090955872,4.785570827,,,4.038587097,5.52051824,0.075537989,1376,18216,0.071700414,0.079375563,0,,,,0.084126984,0.062451386,0.105802582,0.125880695,0.111789976,0.139971414,0.079697987,0.070821396,0.088574577,0.063840967,0.059356957,0.068324977,,,,0.090293454,0.063604411,0.116982497,0.16,,,0.13,0.194,0.321,,,0.277,0.366,8.8,0.056572945,0.072,,,0.23,,,0.195,0.269,0.771059542,228165,295911,,,0.182947738,,,0.154965717,0.21289596,0.138888889,15,108,0.094761941,0.189736212,297.5,884,297112,,,6.164195497,449,72840,5.594019009,6.734371985,,,,,,,13.24593746,10.74156296,16.15892038,15.20979021,12.94980982,17.4697706,3.060155104,2.563765037,3.556545171,,,,11.5585384,7.853466062,16.40642263,0.050090284,11429,228168,0.044132838,0.056047731,0.00071017,211,297112,,,1408.113744,0.000715858,213,297545,,,1396.924883,0.003360836,1000,297545,,,297.545,2626,,,,,,769,4175,3614,2507,0.44,,,,,,0.34,0.39,0.35,0.45,0.52,,,,,,0.55,0.42,0.46,0.53,0.915542046,193075,210886,0.909579318,0.921504775,0.6932731,49108,70835,0.666594928,0.719951271,0.030592642,4443,145231,,,0.092,4802,,0.062212766,0.121787234,0.261146497,0,0.619081492,0.085173502,0.006989045,0.163357958,0.214516651,0.139353286,0.289680015,0.145054362,0.108937629,0.181171095,0.04474823,0.032929651,0.056566808,4.787519313,182821,38187,4.570380423,5.004658203,0.207746737,11333,54552,0.185813903,0.229679571,7.169013705,213,297112,,,74.22439242,1094,1473909,69.82599911,78.62278572,,,,27.81641168,15.56863446,45.87894088,71.64202224,58.31410099,84.9699435,50.17325452,40.64049725,61.27013123,82.952374,77.41785996,88.48688803,,,,7.8,,,,,1,,,,,0.171306599,18860,110095,0.161303205,0.181309993,0.155316224,0.144713797,0.16591865,0.018529452,0.015112601,0.021946302,0.005903992,0.004035551,0.007772433,0.723697162,105138,145279,0.710877555,0.736516769,,,,0.550281955,0.479645388,0.620918522,0.70706471,0.67197007,0.742159351,0.696243758,0.649780224,0.742707292,0.746982033,0.735728937,0.758235128,0.429,,145279,0.410274275,0.447725725,79.67879614,,,79.35998355,79.99760874,,,,93.33250225,88.38906033,98.27594416,76.64972892,75.57422428,77.72523357,83.44787491,81.97666127,84.91908855,79.34732746,78.97022858,79.72442633,,,,314.6898018,3572,815254,303.7956241,325.5839795,,,,137.894082,102.985896,180.8297426,445.0132374,403.217507,486.8089678,229.4948064,198.9695421,260.0200707,321.6668353,308.5802522,334.7534184,,,,35.24208602,91,258214,28.37472929,43.26947219,,,,,,,76.10876635,47.69695867,115.2295869,30.26390122,16.93847577,49.91570267,31.17385468,23.06258931,41.21348911,,,,3.843619592,70,18212,2.996290035,4.856182123,,,,,,,,,,,,,3.225525238,2.271067437,4.445961655,,,,,,,0.097,,,0.084,0.111,0.147,,,0.129,0.167,0.093,,,0.081,0.107,335.6,872,259802,,,0.072,21410,,,,0.056572945,16829.77232,297488,,,33.46058151,296,884623,29.64866219,37.27250083,,,,,,,37.30070765,25.98130958,51.87625476,27.89070225,19.1986761,39.16891562,36.11569275,31.38605355,40.84533195,,,,0.343,,,0.329,0.357,0.057502685,10013,174131,0.049162259,0.06584311,0.027421665,1570,57254,0.020272729,0.034570601,0.001267035,377,297545,,,789.2440318,0.882654396,2901.285,3287,,,0.065038223,1089,16744,0.046294355,0.08378209,,,,,,,,,,,,,,,,,,,,,0.115488958,,,,,13966.30977,,,,,0.804442935,61597,76571,0.763678143,0.845207728,90740,,,86355.31915,95124.68085,108750,53262.34043,164237.6596,123810,92123.53192,155496.4681,58398,52865.91489,63930.08511,69625,56498.3617,82751.6383,101421,97858.44681,104983.5532,,,,,,0.358211179,12023,33564,,,46.1473167,,,,,0.346197928,,90740,,,8.006523834,108,13489,,,1.986303228,41,2064136,1.42540549,2.694644615,,,,,,,9.315410484,5.690094731,14.38689597,,,,1.160240074,0.675882599,1.857656753,,,,13.06952909,208,1473909,11.21557639,14.92348179,14.11213311,,,,,,,,,,,,,16.60426961,14.05489642,19.15364281,,,,5.970517854,88,1473909,4.788529907,7.355844984,,,,,,,6.454236238,3.09505715,11.86957024,,,,7.112949798,5.585195476,8.929657108,,,,8.381230694,173,2064136,7.132292881,9.630168507,,,,,,,10.24695153,6.42170997,15.51400776,6.497924487,3.785280469,10.40380657,8.872424096,7.347224478,10.39762371,,,,3.003802281,,26300,,,46,33,0.675843197,151889,224740,,,0.649,,,,,77.25522919,,,,,0.688151476,78430,113972,0.678325846,0.697977106,0.161333214,17958,111310,0.150782396,0.171884031,0.91620749,104422,113972,0.908991451,0.923423529,297545,,,,,0.180732326,53776,297545,,,0.194800786,57962,297545,,,0.107271169,31918,297545,,,0.005592431,1664,297545,,,0.037910232,11280,297545,,,0.000941034,280,297545,,,0.145406577,43265,297545,,,0.686467593,204255,297545,,,0.020212296,5722,283095,0.017077414,0.023347179,0.50072426,148988,297545,,,0.317396109,93921,295911,, -36,029,36029,NY,Erie County,2024,1,7683.394343,13141,2567484,7474.735557,7892.05313,0,16336.62402,12319.68925,20353.55878,,3982.156009,3289.858982,4674.453035,,14695.09624,13936.17314,15454.01933,,9314.996182,8395.826535,10234.16583,,6481.952856,6258.270491,6705.63522,,,,,2,,0.142,,,0.122,0.167,3.457651962,,,2.910033475,4.077314854,5.307468453,,,4.679490316,5.976380295,0.0896881,6030,67233,0.087528231,0.091847968,0,0.064814815,0.041598133,0.088031497,0.088105727,0.079860503,0.096350951,0.143655982,0.137555116,0.149756848,0.105862265,0.097556448,0.114168082,0.071814636,0.069361567,0.074267704,,,,0.09800363,0.083670431,0.112336828,0.176,,,0.144,0.214,0.349,,,0.314,0.386,8.2,0.057547894,0.099,,,0.241,,,0.209,0.278,0.970892945,926461,954236,,,0.200990571,,,0.178092634,0.226550084,0.218487395,52,238,0.18606685,0.252338942,474.5,4511,950683,,,13.1148858,2612,199163,12.61192516,13.61784644,16.45474944,10.31210387,24.9126884,7.319869477,5.830235179,9.074079531,36.86989918,34.74077113,38.99902724,31.02783136,28.46480368,33.59085904,5.157804249,4.767829677,5.547778821,,,,17.08259061,13.96038943,20.2047918,0.040283075,30237,750613,0.035517118,0.045049033,0.000732105,696,950683,,,1365.923851,0.000826045,785,950312,,,1210.588535,0.003934497,3739,950312,,,254.1620754,2421,,,,,4666,2039,4444,3772,2107,0.44,,,,,0.32,0.27,0.39,0.38,0.46,0.45,,,,,0.2,0.46,0.3,0.36,0.47,0.921904231,618937,671368,0.918231403,0.92557706,0.736603752,181357,246207,0.720478593,0.752728912,0.035823481,15923,444485,,,0.166,30716,,0.136212766,0.195787234,0.174809989,0.100210892,0.249409087,0.370245991,0.322760264,0.417731718,0.380934977,0.344153784,0.417716169,0.376101029,0.340025291,0.412176768,0.08640702,0.07663592,0.09617812,4.96714844,134719,27122,4.802545881,5.131751,0.273422291,52108,190577,0.258973768,0.287870814,9.477396777,901,950683,,,71.5693198,3315,4631873,69.13296129,74.00567831,114.7052076,77.3911219,163.7488162,18.3026256,12.5986853,25.70369118,108.1638931,99.87398899,116.4537972,73.2817121,63.02227241,83.54115179,68.2854667,65.53508162,71.03585179,,,,7.1,,,,,1,,,,,0.147641954,58010,392910,0.141818602,0.153465305,0.132119569,0.126279344,0.137959794,0.013400015,0.011604604,0.015195427,0.010294979,0.009017236,0.011572721,0.761047679,346470,455254,0.753187187,0.768908171,0.73488088,0.638611036,0.831150724,0.619495082,0.568522817,0.670467348,0.637738937,0.609950181,0.665527693,0.641779321,0.613063767,0.670494876,0.799111211,0.791966905,0.806255517,0.234,,455254,0.225831561,0.24216844,77.54422445,,,77.36594449,77.7225044,71.04451806,68.07819172,74.0108444,85.25454234,83.26538864,87.24369605,71.0649592,70.52432484,71.60559357,77.19381379,76.06086454,78.32676303,78.64096854,78.44694315,78.83499392,,,,378.686262,13141,2567484,371.8548956,385.5176284,689.8383677,560.9501856,818.7265497,213.0188435,180.7467788,245.2909083,712.9525576,685.1131246,740.7919907,458.9064381,419.6974918,498.1153843,332.00416,324.8181276,339.1901924,,,,49.40705609,417,844009,44.66488715,54.14922502,,,,33.17483136,18.56770128,54.71683926,96.98484881,80.62448036,113.3452173,68.63754474,51.84806367,89.13156102,34.89893306,29.8968901,39.90097603,,,,6.456513483,442,68458,5.854587627,7.058439339,,,,,,,12.43284728,10.51828647,14.34740808,9.044657999,6.668816812,11.99190431,4.522186259,3.890689095,5.153683423,,,,,,,0.105,,,0.091,0.122,0.163,,,0.144,0.185,0.092,,,0.081,0.106,289.5,2359,814809,,,0.099,94150,,,,0.057547894,52888.81608,919040,,,28.31381032,789,2786626,26.33813358,30.28948707,101.5035209,58.01803244,164.8353587,,,,45.20658583,38.28770491,52.12546675,42.57674458,33.19066116,53.79315538,25.3512373,23.18677551,27.5156991,,,,0.355,,,0.341,0.369,0.047825229,26896,562381,0.041867782,0.053782676,0.018882785,3740,198064,0.014116828,0.023648743,0.002090892,1987,950312,,,478.2647207,0.887002224,8776,9894,,,0.052945056,2569,48522,0.041279018,0.064611094,,,,,,,,,,,,,,,,,,,,,0.276898334,,,,,7245.774557,,,,,0.849202208,53701,63237,0.824127453,0.874276962,69888,,,67590.80851,72185.19149,34347,26686.91489,42007.08511,53058,48269.40426,57846.59575,40229,37519.55319,42938.44681,39511,35658.91489,43363.08511,76137,75050.3617,77223.6383,,,,,,0.468081531,55712,119022,,,71.75448543,,,,,0.444496909,,69888,,,6.186253206,316,51081,,,6.594088454,427,6475497,5.968632253,7.219544654,,,,,,,34.02465606,30.09500877,37.95430335,13.43901703,9.942258783,17.76709322,1.582039537,1.248520862,1.977277978,,,,10.1899744,488,4631873,9.250560945,11.12938786,10.53569474,,,,,,,4.480000869,2.89922035,6.613365043,7.597427011,4.574147358,11.86432339,11.61980655,10.45372978,12.78588333,,,,8.355151361,387,4631873,7.522707585,9.187595138,,,,,,,30.10065527,25.7274856,34.47382494,15.32933774,11.00059742,20.79597757,4.556209349,3.845763144,5.266655554,,,,5.466761856,354,6475497,4.897273832,6.036249881,,,,,,,8.860587516,6.969414162,11.10682318,3.839719152,2.099210191,6.442396292,5.15703797,4.519039643,5.795036297,,,,6.947115385,,83200,,,409,169,0.673608737,476787,707810,,,0.694,,,,,184.4967257,,,,,0.651781959,264980,406547,0.645738658,0.65782526,0.140481783,55559,395489,0.134385962,0.146577605,0.876695683,356418,406547,0.872301433,0.881089934,950312,,,,,0.198375902,188519,950312,,,0.194519274,184854,950312,,,0.130718122,124223,950312,,,0.007930027,7536,950312,,,0.048090522,45701,950312,,,0.000550346,523,950312,,,0.061320914,58274,950312,,,0.734512455,698016,950312,,,0.018072911,16281,900851,0.01651384,0.019631982,0.512102341,486657,950312,,,0.10308561,98368,954236,, -36,031,36031,NY,Essex County,2024,1,7034.355856,572,99635,5957.992314,8110.719399,0,,,,2,,,,2,,,,2,,,,2,7543.623336,6350.46417,8736.782502,,,,,2,,0.133,,,0.11,0.159,3.553820661,,,2.883715281,4.285228129,4.882069596,,,4.127388903,5.68729887,0.080933466,163,2014,0.069022036,0.092844895,0,,,,,,,,,,,,,0.075669995,0.063787379,0.087552611,,,,,,,0.183,,,0.146,0.224,0.345,,,0.3,0.393,8.9,0.006577217,0.089,,,0.221,,,0.182,0.262,1,37381,37381,,,0.191079533,,,0.163429398,0.22257213,0.157894737,3,19,0.054083319,0.295484356,139.5,52,37268,,,11.6642024,71,6087,9.109838846,14.71280419,,,,,,,,,,,,,12.20606713,9.478488737,15.47409857,,,,,,,0.059830668,1590,26575,0.050298753,0.069362583,0.000509821,19,37268,,,1961.473684,0.000270929,10,36910,,,3691,0.002059063,76,36910,,,485.6578947,2333,,,,,,,,,2323,0.46,,,,,,,,,0.46,0.49,,,,,,,0.52,0.25,0.49,0.916418942,26512,28930,0.903082987,0.929754898,0.577780385,4925,8524,0.522437089,0.633123681,0.035816011,591,16501,,,0.162,878,,0.109574468,0.214425532,,,,,,,,,,0.269005848,0,0.58947135,0.117546848,0.078197943,0.156895753,4.275807287,123806,28955,3.854803259,4.696811315,0.206590405,1210,5857,0.150285416,0.262895393,14.22131587,53,37268,,,61.72839506,115,186300,50.44623812,73.010552,,,,,,,,,,,,,66.54874696,54.33233897,78.76515494,,,,6.2,,,,,1,,,,,0.111866502,1810,16180,0.090125842,0.133607162,0.099315069,0.079165499,0.119464638,0.014833127,0.006481,0.023185255,0.005871446,0.003508169,0.008234723,0.73517037,12406,16875,0.70921574,0.761125001,,,,,,,,,,,,,0.734643091,0.709144273,0.760141909,0.317,,16875,0.281514414,0.352485586,78.54462347,,,77.63531429,79.45393265,,,,,,,,,,,,,78.06412122,77.08673765,79.04150478,,,,346.926933,572,99635,315.1639764,378.6898896,,,,,,,,,,,,,360.3881653,326.2183276,394.5580031,,,,41.86170415,11,26277,20.89721189,74.90215212,,,,,,,,,,,,,45.45078919,22.68887021,81.32401667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.103,,,0.087,0.121,0.15,,,0.129,0.174,0.088,,,0.076,0.103,168.3,56,33275,,,0.089,3340,,,,0.006577217,258.9450192,39370,,,18.01087857,20,111044,11.00151254,27.81634118,,,,,,,,,,,,,19.56947162,11.95354167,30.22346174,,,,0.336,,,0.318,0.353,0.067880477,1413,20816,0.055965583,0.07979537,0.031599737,192,6076,0.020876332,0.042323141,0.000785695,29,36910,,,1272.758621,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.170595456,,,,,15294.36913,,,,,0.837685968,46959,56058,0.741139174,0.934232762,62376,,,55567.82979,69184.17021,,,,,,,,,,82315,67009.12766,97620.87234,68822,64608.89362,73035.10638,,,,,,0.484589984,1761,3634,,,,,,,,0.365012184,,62376,,,8.789722786,13,1479,,,,,,,,,,,,,,,,,,,,,,,,,,10.82643042,20,186300,6.41642881,17.11042762,10.73537305,,,,,,,,,,,,,12.43128211,7.367565629,19.64678518,,,,,,,,,,,,,,,,,,,,,,,,,,,5.706025563,15,262880,3.193619192,9.411221421,,,,,,,,,,,,,6.208377999,3.474782037,10.23977537,,,,6.551724138,,2900,,,7,12,0.637211586,19470,30555,,,0.426,,,,,7.80283742,,,,,0.770095238,12129,15750,0.751837954,0.788352522,0.110566235,1691,15294,0.091897948,0.129234522,0.871873016,13732,15750,0.853803653,0.889942379,36910,,,,,0.154592251,5706,36910,,,0.264183148,9751,36910,,,0.017231103,636,36910,,,0.005743701,212,36910,,,0.007748578,286,36910,,,0.000596044,22,36910,,,0.030018965,1108,36910,,,0.927986995,34252,36910,,,0.005271231,189,35855,0.001251693,0.00929077,0.485667841,17926,36910,,,0.865011637,32335,37381,, -36,033,36033,NY,Franklin County,2024,1,7394.528199,677,136940,6497.941434,8291.114965,0,11579.95869,7073.339609,17884.30701,1,,,,2,,,,2,,,,2,7771.105364,6761.005017,8781.205712,,,,,2,,0.161,,,0.138,0.186,3.885312055,,,3.231959895,4.560062498,5.141794956,,,4.401451658,5.858970568,0.068519103,217,3167,0.059720275,0.077317932,0,0.052173913,0.02343415,0.080913676,,,,,,,,,,0.068691251,0.059265249,0.078117253,,,,,,,0.229,,,0.191,0.268,0.399,,,0.355,0.445,7.6,0.075808328,0.118,,,0.288,,,0.246,0.329,0.57281043,27240,47555,,,0.206545201,,,0.177452755,0.237980543,0.291666667,7,24,0.183021186,0.403882272,151.7,72,47456,,,19.9613651,186,9318,17.09263403,22.83009617,16.63201663,9.506634567,27.00935301,,,,,,,,,,21.27380171,17.99780338,24.54980003,,,,,,,0.058889224,1951,33130,0.049357309,0.068421139,0.000526804,25,47456,,,1898.24,0.000560671,26,46373,,,1783.576923,0.003558105,165,46373,,,281.0484849,2905,,,,,3760,,,,2857,0.54,,,,,0.37,,,,0.56,0.46,,,,,0.37,,0.54,0.32,0.47,0.86959092,29420,33832,0.851528743,0.887653097,0.488898414,5703,11665,0.444602509,0.53319432,0.035810348,679,18961,,,0.225,2059,,0.167808511,0.282191489,0.427490542,0.178893534,0.676087551,,,,0.338709677,0,0.996592903,0.322981367,0,0.668232238,0.275677897,0.223887542,0.327468251,4.656212203,111642,23977,4.196330015,5.116094392,0.237960932,2278,9573,0.178499794,0.29742207,9.48246797,45,47456,,,52.23988555,130,248852,43.25967309,61.22009802,66.67037058,34.44955336,116.4597203,,,,,,,,,,57.60850833,47.16972771,68.04728895,,,,6.9,,,,,1,,,,,0.13003178,2455,18880,0.110513711,0.149549849,0.114362272,0.095783255,0.132941289,0.011917373,0.005777919,0.018056827,0.009533898,0.005414425,0.013653372,0.750755047,14169,18873,0.72105335,0.780456743,,,,,,,,,,,,,0.778226712,0.752403697,0.804049726,0.227,,18873,0.195975484,0.258024516,77.82031126,,,77.01986903,78.62075349,77.36640209,72.11321701,82.61958717,,,,79.02009887,73.04529717,84.99490057,86.78284174,74.59525747,98.97042601,77.39237175,76.53475949,78.249984,,,,368.2907121,677,136940,339.2001672,397.3812569,466.2114223,342.5546173,619.9623582,,,,,,,,,,382.7609819,350.1138852,415.4080786,,,,43.95604396,19,43225,26.46440987,68.64280757,,,,,,,,,,,,,36.19959902,19.27476189,61.90241679,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.118,,,0.103,0.134,0.168,,,0.148,0.19,0.117,,,0.102,0.132,366.8,151,41163,,,0.118,5670,,,,0.075808328,3911.633905,51599,,,16.27747672,24,147443,10.42928647,24.21959509,,,,,,,,,,,,,18.26150475,11.4443878,27.64813765,,,,0.348,,,0.332,0.363,0.070298047,1710,24325,0.058383154,0.082212941,0.028207068,261,9253,0.019866642,0.036547494,0.001487935,69,46373,,,672.0724638,0.884068628,450.875,510,,,0.070464135,167,2370,0.026343572,0.114584698,,,,,,,,,,,,,,,,,,,,,0.461142408,,,,,12873.21429,,,,,0.9236035,48032,52005,0.828171525,1.019035474,59192,,,53684.93617,64699.06383,47378,19889.14894,74866.85106,143667,74891.85106,212442.1489,75536,14914.21277,136157.7872,75250,15059.53192,135440.4681,61119,57657.7234,64580.2766,,,,,,0.4867632,3328,6837,,,,,,,,0.384646574,,59192,,,8.210890233,19,2314,,,,,,,,,,,,,,,,,,,,,,,,,,11.48980156,31,248852,7.752120864,16.40240616,12.45720348,,,,,,,,,,,,,12.21179792,7.82432935,18.17018731,,,,4.420298009,11,248852,2.20659684,7.909134149,,,,,,,,,,,,,4.923804131,2.361155467,9.055051105,,,,9.716478862,34,349921,6.728944072,13.5778053,,,,,,,,,,,,,10.84515222,7.368754759,15.39382789,,,,10.22222222,,4500,,,26,20,0.486107635,19420,39950,,,0.503,,,,,26.04303164,,,,,0.70897375,13423,18933,0.685452211,0.732495289,0.115018436,2090,18171,0.093781736,0.136255136,0.828500502,15686,18933,0.806862936,0.850138068,46373,,,,,0.201625946,9350,46373,,,0.199016669,9229,46373,,,0.027235676,1263,46373,,,0.079723115,3697,46373,,,0.005585147,259,46373,,,0.000258771,12,46373,,,0.027774783,1288,46373,,,0.848942272,39368,46373,,,0.002844824,128,44994,0.000353522,0.005336126,0.477152654,22127,46373,,,0.702008201,33384,47555,, -36,035,36035,NY,Fulton County,2024,1,9064.641344,941,145896,8126.320424,10002.96226,0,,,,2,,,,2,,,,2,,,,2,9200.437606,8210.824137,10190.05108,,,,,2,,0.167,,,0.142,0.196,4.032992457,,,3.36121366,4.754854666,5.275544987,,,4.576185539,6.035088126,0.083236321,286,3436,0.073999668,0.092472974,0,,,,,,,0.172413793,0.075198475,0.269629111,,,,0.080969079,0.071423034,0.090515124,,,,0.254545455,0.139420895,0.369670015,0.232,,,0.191,0.272,0.354,,,0.314,0.397,8,0.038052503,0.117,,,0.26,,,0.223,0.299,0.903401845,48173,53324,,,0.192272021,,,0.165414517,0.221775958,0.12,3,25,0.038239959,0.237563726,282.4,150,53116,,,23.06182532,235,10190,20.11322561,26.01042503,,,,,,,,,,,,,24.45772466,21.23312365,27.68232567,,,,,,,0.055372178,2315,41808,0.047031752,0.063712603,0.000320054,17,53116,,,3124.470588,0.000246825,13,52669,,,4051.461539,0.002563178,135,52669,,,390.1407407,3009,,,,,,,922,,2982,0.39,,,,,,,,,0.4,0.46,,,,,,,0.6,0.3,0.46,0.874873917,33827,38665,0.85967777,0.890070065,0.589924075,7459,12644,0.533683624,0.646164526,0.039450809,885,22433,,,0.178,1774,,0.111276596,0.244723404,,,,,,,,,,0.145098039,0.024789422,0.265406656,0.173572361,0.127339948,0.219804775,4.310925018,111709,25913,3.89721885,4.724631187,0.253610194,2687,10595,0.178446339,0.328774048,9.601626629,51,53116,,,64.84768291,173,266779,55.18433797,74.51102786,,,,,,,,,,,,,66.70354342,56.49454698,76.91253986,,,,6.6,,,,,0,,,,,0.117384512,2630,22405,0.098967122,0.135801903,0.106149013,0.088714022,0.123584003,0.008033921,0.003406206,0.012661636,0.004463289,0.00144132,0.007485259,0.821254823,19582,23844,0.794456843,0.848052803,,,,,,,,,,,,,0.813255383,0.793955812,0.832554953,0.333,,23844,0.296489064,0.369510936,75.92739783,,,75.18224361,76.67255204,,,,,,,,,,78.68638965,72.90073971,84.47203959,75.79358978,75.01857775,76.56860181,,,,448.3605529,941,145896,417.6898439,479.0312618,,,,,,,,,,,,,454.2935455,422.2927047,486.2943864,,,,29.87240217,14,46866,16.33152024,50.12081492,,,,,,,,,,,,,29.3355498,15.15810666,51.24330183,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.124,,,0.107,0.141,0.176,,,0.155,0.198,0.101,,,0.087,0.115,142.1,65,45741,,,0.117,6280,,,,0.038052503,2113.093542,55531,,,21.96960662,35,159311,15.30263598,30.55440451,,,,,,,,,,,,,21.18629588,14.39506016,30.07225586,,,,0.34,,,0.321,0.356,0.064941703,2033,31305,0.054218298,0.075665107,0.027614305,305,11045,0.01927388,0.035954731,0.001101217,58,52669,,,908.0862069,0.826601626,508.36,615,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.069860194,,,,,11273.12733,,,,,0.738313564,41144,55727,0.663870242,0.812756886,61512,,,57061.78723,65962.21277,,,,110844,8571.319149,213116.6809,,,,46319,18833.7234,73804.2766,61386,57693.57447,65078.42553,,,,,,0.509817289,3739,7334,,,63.27563961,,,,,0.37013916,,61512,,,4.825538233,13,2694,,,,,,,,,,,,,,,,,,,,,,,,,,15.96588469,43,266779,11.4062621,21.74100342,16.1182102,,,,,,,,,,,,,16.83279595,11.91188825,23.10432758,,,,7.496841955,20,266779,4.579265829,11.57826437,,,,,,,,,,,,,7.727849543,4.652670242,12.06799433,,,,12.27979786,46,374599,8.990355396,16.3795295,,,,,,,,,,,,,12.7133091,9.237509855,17.06702407,,,,9.8,,5000,,,15,34,0.566733373,24072,42475,,,0.56,,,,,38.26097551,,,,,0.690630231,15265,22103,0.671081911,0.710178552,0.125356926,2678,21363,0.10498393,0.145729921,0.84024793,18572,22103,0.815738077,0.864757783,52669,,,,,0.195200213,10281,52669,,,0.212724753,11204,52669,,,0.01980292,1043,52669,,,0.003322638,175,52669,,,0.008809736,464,52669,,,0.000493649,26,52669,,,0.04302341,2266,52669,,,0.907934459,47820,52669,,,0.001795226,91,50690,0,0.004645395,0.499743682,26321,52669,,,0.507051234,27038,53324,, -36,037,36037,NY,Genesee County,2024,1,7447.343367,803,157513,6603.802494,8290.88424,0,,,,2,,,,2,18998.45145,9110.495931,34938.82864,1,,,,2,7336.911315,6460.603835,8213.218795,,,,,2,,0.136,,,0.116,0.159,3.494197698,,,2.888831069,4.135171954,4.92715322,,,4.23730922,5.615797686,0.066819106,263,3936,0.059017899,0.074620312,0,,,,,,,0.126582279,0.05325932,0.199905237,0.092105263,0.054569209,0.129641318,0.063427408,0.055278948,0.071575867,,,,,,,0.203,,,0.164,0.242,0.398,,,0.355,0.441,8.8,0.015456122,0.092,,,0.23,,,0.193,0.267,0.653490443,38156,58388,,,0.189715749,,,0.16273888,0.217642909,0.26,13,50,0.186520419,0.337239257,264.5,153,57853,,,11.62304541,139,11959,9.690771871,13.55531894,,,,,,,,,,33.28509407,21.09989441,49.94398393,9.167770195,7.371969862,11.26874603,,,,33.81642512,18.48775429,56.73821527,0.05130525,2325,45317,0.042964824,0.059645675,0.000311133,18,57853,,,3214.055556,0.000382376,22,57535,,,2615.227273,0.001894499,109,57535,,,527.8440367,2505,,,,,,,811,12798,2361,0.48,,,,,,,,,0.5,0.46,,,,,0.13,,0.41,0.25,0.47,0.924874991,38657,41797,0.911736301,0.938013681,0.654648412,9133,13951,0.605613948,0.703682877,0.031183701,926,29695,,,0.122,1377,,0.077914894,0.166085106,,,,0.073825503,0,0.649457776,0.066176471,0,0.350020325,0.203576341,0.08354836,0.323604322,0.080244991,0.051803753,0.108686229,4.105013818,124776,30396,3.685271069,4.524756567,0.181287045,2141,11810,0.139799548,0.222774542,11.92677994,69,57853,,,76.84444043,221,287594,66.7129722,86.97590866,,,,,,,,,,,,,77.45485654,66.74689761,88.16281546,,,,7.2,,,,,1,,,,,0.124301965,3005,24175,0.104138142,0.144465787,0.099812773,0.081634741,0.117990805,0.016546019,0.009886064,0.023205973,0.012409514,0.006147961,0.018671067,0.817715156,23098,28247,0.801509263,0.833921048,,,,,,,,,,0.714634146,0.562114681,0.867153612,0.824116513,0.800062213,0.848170814,0.323,,28247,0.29546654,0.35053346,77.50855564,,,76.80155622,78.21555506,,,,,,,,,,86.5636088,78.25992879,94.86728881,77.53812659,76.80924775,78.26700542,,,,363.6706342,803,157513,336.8515117,390.4897567,,,,,,,705.6010984,460.9220638,1033.869094,,,,361.9667503,334.0619871,389.8715135,,,,38.47263634,20,51985,23.50008577,59.41786651,,,,,,,,,,,,,34.19037199,19.13609166,56.39181909,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.107,,,0.093,0.123,0.159,,,0.139,0.18,0.092,,,0.079,0.104,187.1,93,49703,,,0.092,5380,,,,0.015456122,928.5883336,60079,,,23.81962156,41,172127,17.09337168,32.31400627,,,,,,,,,,,,,23.20409939,16.25186594,32.1242544,,,,0.335,,,0.317,0.351,0.060785129,2047,33676,0.050061725,0.071508533,0.025077602,307,12242,0.016737176,0.033418027,0.000886417,51,57535,,,1128.137255,0.924416796,594.4,643,,,0.065929566,161,2442,0.026493171,0.105365961,,,,,,,,,,,,,,,,,,,,,0.100712081,,,,,11567.59888,,,,,0.752400675,45053,59879,0.691830546,0.812970803,68973,,,61565.51064,76380.48936,50221,29480.74468,70961.25532,47813,17475.29787,78150.70213,,,,60729,34666.3617,86791.6383,69735,65325.29787,74144.70213,,,,,,0.420205751,3186,7582,,,64.79070573,,,,,0.330100184,,68973,,,6.243838317,19,3043,,,,,,,,,,,,,,,,,,,,,,,,,,11.59252715,31,287594,7.763697371,16.64880272,10.7790844,,,,,,,,,,,,,12.0772823,7.889281774,17.69601683,,,,3.824836401,11,287594,1.909344551,6.843688851,,,,,,,,,,,,,3.85347545,1.847891261,7.086678552,,,,9.876226195,40,405013,7.05572079,13.44861695,,,,,,,,,,,,,9.566710036,6.663564065,13.3049778,,,,4.259259259,,5400,,,17,6,0.651056299,29431,45205,,,0.643,,,,,37.66846613,,,,,0.733903997,17919,24416,0.714566721,0.753241274,0.103978225,2483,23880,0.085085828,0.122870621,0.875450524,21375,24416,0.857925854,0.892975195,57535,,,,,0.200156427,11516,57535,,,0.205666116,11833,57535,,,0.025792996,1484,57535,,,0.011853654,682,57535,,,0.007021813,404,57535,,,0.000139046,8,57535,,,0.037246893,2143,57535,,,0.900842965,51830,57535,,,0.004021448,222,55204,0.001520687,0.006522209,0.500773442,28812,57535,,,0.621206412,36271,58388,, -36,039,36039,NY,Greene County,2024,1,8080.076707,764,129208,7107.014048,9053.139366,0,,,,2,,,,2,11997.88496,8151.980732,17030.04,,,,,2,8331.889688,7211.726048,9452.053328,,,,,2,,0.144,,,0.12,0.171,3.495890446,,,2.810055471,4.233966672,5.079970273,,,4.267543447,5.931153408,0.073214933,202,2759,0.063494859,0.082935007,0,,,,,,,,,,0.07253886,0.035944796,0.109132924,0.073274036,0.062762679,0.083785394,,,,,,,0.18,,,0.143,0.222,0.349,,,0.299,0.399,8.9,0.019654351,0.084,,,0.25,,,0.211,0.298,0.83726607,40131,47931,,,0.19588144,,,0.165016298,0.229956861,0.166666667,6,36,0.087328388,0.26203231,189.7,92,48499,,,10.61452514,76,7160,8.36303853,13.28566103,,,,,,,,,,,,,11.38154439,8.784035673,14.50671263,,,,,,,0.059154527,2071,35010,0.049622612,0.068686442,0.000288666,14,48499,,,3464.214286,0.000353717,17,48061,,,2827.117647,0.00093631,45,48061,,,1068.022222,2495,,,,,,,3403,,2481,0.36,,,,,,,0.43,0.39,0.36,0.43,,,,,,0.71,0.31,0.42,0.43,0.884817041,32233,36429,0.868010197,0.901623886,0.555447985,6311,11362,0.497428371,0.613467598,0.035291798,716,20288,,,0.158,1160,,0.097234043,0.218765957,,,,,,,0.320359281,0,0.73592759,0.060209424,0,0.161003415,0.095964126,0.055892179,0.136036072,4.836351489,137541,28439,4.128691674,5.544011305,0.168388025,1288,7649,0.111928005,0.224848044,8.866162189,43,48499,,,82.41353937,196,237825,70.87564386,93.95143488,,,,,,,,,,73.60321178,36.74245813,131.6964772,87.78499125,74.85227621,100.7177063,,,,6.8,,,,,1,,,,,0.159502262,2820,17680,0.13609903,0.182905495,0.145423439,0.122560106,0.168286772,0.016968326,0.007200722,0.02673593,0.010180996,0.004146525,0.016215466,0.741187471,15854,21390,0.712007777,0.770367164,,,,,,,,,,0.699888018,0.55851546,0.841260576,0.7371854,0.689759677,0.784611123,0.446,,21390,0.398549394,0.493450606,78.1202433,,,77.2935183,78.94696829,,,,,,,76.27733493,69.39325852,83.16141134,85.71281524,77.32640229,94.09922819,77.82266644,76.907354,78.73797888,,,,384.9974271,764,129208,354.9415885,415.0532656,,,,,,,667.9522327,472.6827544,916.8166262,,,,389.3459007,356.5137375,422.1780639,,,,45.16839342,16,35423,25.81763954,73.3506411,,,,,,,,,,,,,59.21977941,33.84922072,96.16921163,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.107,,,0.092,0.125,0.16,,,0.138,0.183,0.091,,,0.077,0.105,399.2,172,43082,,,0.084,4010,,,,0.019654351,967.4067939,49221,,,32.89842088,47,142864,24.17252224,43.74792554,,,,,,,,,,,,,34.77454503,25.06243333,47.0050827,,,,0.356,,,0.337,0.372,0.066123552,1810,27373,0.054208659,0.078038446,0.034967646,281,8036,0.024244241,0.04569105,0.000957117,46,48061,,,1044.804348,0.899720358,402.175,447,,,0.149425287,247,1653,0.08254856,0.216302015,,,,,,,,,,,,,,,,,,,,,0.065586115,,,,,13959.609,,,,,0.907687466,54798,60371,0.805802048,1.009572884,71433,,,65014.44681,77851.55319,,,,61900,13837.70213,109962.2979,25788,22861.70213,28714.29787,64364,36674.97872,92053.02128,71429,65665.76596,77192.23404,,,,,,0.404926867,2104,5196,,,57.27412878,,,,,0.318732239,,71433,,,6.205250597,13,2095,,,,,,,,,,,,,,,,,,,,,,,,,,16.00962138,42,237825,11.27225091,22.06715419,17.66004415,,,,,,,,,,,,,14.73343613,9.867213407,21.15967194,,,,8.409544833,20,237825,5.136768458,12.98785994,,,,,,,,,,,,,9.91920805,6.058909971,15.31941234,,,,13.21487996,44,332958,9.601952005,17.74035953,,,,,,,,,,,,,14.48829805,10.39705282,19.65501227,,,,8.571428571,,3500,,,18,12,0.652913873,25320,38780,,,0.449,,,,,15.24954396,,,,,0.759034799,13589,17903,0.744929843,0.773139754,0.133078328,2331,17516,0.110899974,0.155256683,0.801038932,14341,17903,0.780657864,0.82142,48061,,,,,0.157778656,7583,48061,,,0.243731924,11714,48061,,,0.048584091,2335,48061,,,0.005014461,241,48061,,,0.013503672,649,48061,,,0.000478559,23,48061,,,0.067726431,3255,48061,,,0.846715632,40694,48061,,,0.00995977,458,45985,0.004936102,0.014983437,0.482324546,23181,48061,,,0.732094052,35090,47931,, -36,041,36041,NY,Hamilton County,2024,1,5705.594665,82,12241,3381.497,9017.299401,1,,,,2,,,,2,,,,2,,,,2,5779.054773,3366.51237,9252.826518,1,,,,2,,0.155,,,0.13,0.187,3.896115955,,,3.159980637,4.703975257,5.220958559,,,4.412070364,6.076321843,,,,,,0,,,,,,,,,,,,,,,,,,,,,,0.21,,,0.167,0.257,0.316,,,0.269,0.363,7.6,0.121992981,0.095,,,0.252,,,0.211,0.298,1,5107,5107,,,0.184471043,,,0.154272616,0.216487203,0.2,1,5,0.015594715,0.47750127,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.083989501,288,3429,0.070883118,0.097095884,0.000390701,2,5119,,,2559.5,,0,5118,,,,0.000586167,3,5118,,,1706,2973,,,,,,,,,3000,0.54,,,,,,,,,0.54,0.45,,,,,,,,,0.45,0.858290723,3525,4107,0.813359896,0.90322155,0.550970874,454,824,0.426886596,0.675055151,0.042785617,94,2197,,,0.15,93,,0.099957447,0.200042553,,,,,,,,,,0.172413793,0,0.982904305,0.119298246,0.062799496,0.175796995,3.87258152,128500,33182,2.932940252,4.812222789,0.196992481,131,665,0.112666418,0.281318544,13.67454581,7,5119,,,52.63388745,12,22799,27.1966977,91.94080902,,,,,,,,,,,,,55.6379822,28.74895729,97.18835798,,,,5.7,,,,,0,,,,,0.081272085,115,1415,0.044936402,0.117607768,0.076868327,0.037746746,0.115989909,0.008480565,0,0.021815787,0.009893993,0,0.021139935,0.730094467,1623,2223,0.617002543,0.843186391,,,,,,,,,,,,,0.6905,0.531677041,0.84932296,0.393,,2223,0.3194937,0.4665063,79.21221541,,,76.98530608,81.43912474,,,,,,,,,,,,,78.93101111,76.6698606,81.19216161,,,,312.4477384,82,12241,231.1505569,413.0724801,,,,,,,,,,,,,314.5634354,230.2999699,419.583541,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.118,,,0.101,0.138,0.169,,,0.146,0.192,0.091,,,0.079,0.105,,,,,,0.095,480,,,,0.121992981,589.9580568,4836,,,,,,,,,,,,,,,,,,,,,,,,,,0.367,,,0.349,0.384,0.087681159,242,2760,0.072191798,0.103170521,0.069111425,49,709,0.047664616,0.090558233,0.000781555,4,5118,,,1279.5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,29107.29,,,,,0.903729109,45585,50441,0.654444229,1.15301399,62149,,,53224.74468,71073.25532,,,,,,,,,,,,,66859,57879.93617,75838.06383,,,,,,0.36809816,120,326,,,,,,,,0.366345396,,62149,,,,,166,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,300,,,0,0,0.909778357,3489,3835,,,0.224,,,,,1.928611371,,,,,0.849275362,1465,1725,0.820881033,0.877669691,0.088807786,146,1644,0.039331091,0.138284481,0.856231884,1477,1725,0.825614561,0.886849208,5118,,,,,0.124267292,636,5118,,,0.339781165,1739,5118,,,0.011527941,59,5118,,,0.002735444,14,5118,,,0.008206331,42,5118,,,0.000976944,5,5118,,,0.021101993,108,5118,,,0.940992575,4816,5118,,,0.002025522,10,4937,0,0.019575343,0.496092224,2539,5118,,,1,5107,5107,, -36,043,36043,NY,Herkimer County,2024,1,7292.639453,951,165915,6483.036619,8102.242287,0,,,,2,,,,2,,,,2,,,,2,7272.073506,6437.621633,8106.525378,,,,,2,,0.146,,,0.121,0.172,3.701632549,,,3.018072302,4.463024079,4.992969721,,,4.212971792,5.828384362,0.069306931,287,4141,0.061571312,0.077042549,0,,,,,,,,,,,,,0.067114094,0.059234617,0.074993571,,,,0.149253731,0.063927749,0.234579713,0.203,,,0.162,0.247,0.332,,,0.284,0.38,8.1,0.041768018,0.108,,,0.254,,,0.213,0.296,0.790917707,47565,60139,,,0.196717432,,,0.16685087,0.227926643,0.153846154,4,26,0.064169884,0.268836156,216.9,130,59937,,,15.8527423,211,13310,13.71370064,17.99178396,,,,,,,,,,,,,16.64236081,14.30045114,18.98427048,,,,,,,0.054429397,2524,46372,0.046088972,0.062769823,0.000266947,16,59937,,,3746.0625,0.00040119,24,59822,,,2492.583333,0.000885962,53,59822,,,1128.716981,3002,,,,,,,,,2991,0.49,,,,,,,,,0.5,0.45,,,,,,,0.22,0.64,0.45,0.913398275,39288,43013,0.902022358,0.924774192,0.63238512,8381,13253,0.582324777,0.682445463,0.039080208,1069,27354,,,0.159,1884,,0.103,0.215,,,,,,,,,,0.370656371,0.151716172,0.589596569,0.147274284,0.117176165,0.177372403,4.362750073,120377,27592,4.001740018,4.723760127,0.191563719,2357,12304,0.149637876,0.233489563,10.84472029,65,59937,,,59.75041956,183,306274,51.09333847,68.40750065,,,,,,,,,,,,,61.03481759,52.01749953,70.05213565,,,,6.6,,,,,1,,,,,0.098625224,2475,25095,0.083063064,0.114187385,0.07883651,0.065881058,0.091791961,0.012353058,0.00740478,0.017301336,0.011954573,0.004839104,0.019070041,0.801296998,21994,27448,0.783908641,0.818685355,,,,,,,,,,,,,0.748730085,0.713926185,0.783533986,0.334,,27448,0.302611548,0.365388453,78.05301962,,,77.35178432,78.75425493,,,,,,,,,,,,,77.95639983,77.24334003,78.66945964,,,,376.7449282,951,165915,350.7906643,402.699192,,,,,,,,,,,,,378.5068028,351.9269761,405.0866295,,,,44.42391073,25,56276,28.74881272,65.57845564,,,,,,,,,,,,,45.89627442,29.09430095,68.86694649,,,,6.916289053,29,4193,4.631947326,9.932944774,,,,,,,,,,,,,6.875477464,4.530982972,10.00345873,,,,,,,0.111,,,0.095,0.128,0.168,,,0.144,0.191,0.092,,,0.078,0.106,95.1,49,51513,,,0.108,6550,,,,0.041768018,2694.83075,64519,,,17.01417665,31,182201,11.56030756,24.15026564,,,,,,,,,,,,,16.94251813,11.34667029,24.33228218,,,,0.352,,,0.334,0.369,0.063621248,2181,34281,0.052897844,0.074344652,0.029123165,371,12739,0.01959125,0.03865508,0.000568353,34,59822,,,1759.470588,0.876343706,619.575,707,,,0.124497992,372,2988,0.057909075,0.19108691,,,,,,,,,,,,,,,,,,,,,0.237364644,,,,,9655.300111,,,,,0.857672458,47196,55028,0.792846624,0.922498291,62197,,,57233.25532,67160.74468,,,,,,,22742,15215.3617,30268.6383,84018,19122.34043,148913.6596,69669,65818.10638,73519.89362,,,,,,0.570380404,5053,8859,,,72.59402238,,,,,0.366062672,,62197,,,3.693754197,11,2978,,,,,,,,,,,,,,,,,,,,,,,,,,11.32495299,37,306274,7.795576545,15.90444457,12.08068592,,,,,,,,,,,,,11.54190835,7.842166744,16.38281759,,,,7.836120598,24,306274,5.020750326,11.6595263,,,,,,,,,,,,,8.322929671,5.332658085,12.38385962,,,,7.63911877,33,431987,5.258417863,10.72816295,,,,,,,,,,,,,7.608015412,5.169277356,10.79897059,,,,12.83333333,,6000,,,9,68,0.609233306,29560,48520,,,0.546,,,,,47.97517923,,,,,0.759974051,18744,24664,0.740024194,0.779923909,0.092375857,2210,23924,0.076295768,0.108455946,0.856024976,21113,24664,0.838884987,0.873164965,59822,,,,,0.201982548,12083,59822,,,0.223713684,13383,59822,,,0.013958076,835,59822,,,0.003510414,210,59822,,,0.006753368,404,59822,,,0.000351041,21,59822,,,0.02756511,1649,59822,,,0.933786901,55861,59822,,,0.004654487,267,57364,0.001285416,0.008023558,0.498846578,29842,59822,,,0.526014733,31634,60139,, -36,045,36045,NY,Jefferson County,2024,1,7582.794267,1352,314436,7016.488848,8149.099686,0,,,,2,,,,2,8180.408379,5844.203679,11139.3944,,3798.458436,2380.473679,5750.91172,1,8105.731416,7443.839302,8767.623531,,,,,2,,0.137,,,0.117,0.159,3.447267589,,,2.887786126,4.033823154,4.649882054,,,4.046194167,5.260786284,0.073034579,942,12898,0.068544118,0.07752504,0,,,,0.058631922,0.032351418,0.084912425,0.14159292,0.120165839,0.163020001,0.06882859,0.056063524,0.081593657,0.067581727,0.062545435,0.072618019,,,,0.073654391,0.04640514,0.100903642,0.199,,,0.165,0.237,0.374,,,0.34,0.409,7.9,0.058673923,0.111,,,0.236,,,0.204,0.27,0.644134303,75184,116721,,,0.212662772,,,0.188605568,0.238967177,0.422222222,19,45,0.34850969,0.492760488,614,714,116295,,,30.29867892,633,20892,27.93832075,32.65903709,,,,,,,27.11323764,18.77670525,37.88803197,43.61702128,34.68991142,54.14022401,29.38850015,26.76754296,32.00945735,,,,26.61207779,17.38389275,38.99285986,0.051479448,4828,93785,0.043139022,0.059819873,0.000507331,59,116295,,,1971.101695,0.000934523,109,116637,,,1070.06422,0.002383463,278,116637,,,419.557554,2983,,,,,,,11888,,2916,0.47,,,,,,0.35,0.55,0.39,0.47,0.52,,,,,0.55,0.43,0.28,0.28,0.52,0.915733727,68300,74585,0.905905214,0.92556224,0.676108889,22651,33502,0.639558264,0.712659514,0.04010127,1774,44238,,,0.172,4606,,0.131489362,0.212510638,,,,0.149643706,0,0.368833261,0.310720775,0.164535033,0.456906517,0.205821206,0.127598211,0.284044201,0.138430785,0.115597577,0.161263992,3.936169488,115562,29359,3.650731553,4.221607423,0.198348591,5525,27855,0.172772185,0.223924997,10.49056279,122,116295,,,66.94444147,375,560166,60.16872913,73.72015381,,,,,,,41.67658966,22.78497939,69.92623578,43.94994333,26.46073689,68.63328068,73.11064957,65.25802929,80.96326984,,,,6.7,,,,,1,,,,,0.137762806,5930,43045,0.124808541,0.150717072,0.115909626,0.101946267,0.129872985,0.019862934,0.01388711,0.025838759,0.009292601,0.005880313,0.012704889,0.79549819,43081,54156,0.778353401,0.81264298,,,,0.668979187,0.570486575,0.767471799,0.713444302,0.601789306,0.825099298,0.715818845,0.647399733,0.784237958,0.820277226,0.803135229,0.837419223,0.208,,54156,0.188205492,0.227794508,77.33467272,,,76.81492296,77.85442248,,,,102.1271192,57.87152508,146.3827132,90.7627597,54.80258624,126.7229332,82.79606788,78.8136046,86.77853116,76.85976457,76.29498452,77.42454463,,,,380.0299918,1352,314436,359.174694,400.8852896,,,,,,,509.8136964,341.4302337,732.1775092,212.5314308,116.1929109,356.5916275,396.3906034,373.5480547,419.233152,,,,60.56108566,71,117237,47.29871035,76.38956908,,,,,,,,,,,,,50.64943835,36.94404789,67.7729335,,,,6.330544879,84,13269,5.049490522,7.837645321,,,,,,,,,,,,,4.766250887,3.502061877,6.33810327,,,,,,,0.103,,,0.09,0.119,0.15,,,0.132,0.168,0.1,,,0.087,0.113,169.7,162,95441,,,0.111,13010,,,,0.058673923,6819.6114,116229,,,23.63684236,79,334224,18.71351069,29.45855808,,,,,,,,,,,,,27.22600157,21.37826712,34.17975177,,,,0.338,,,0.323,0.352,0.061767242,4083,66103,0.051043838,0.072490646,0.027835696,801,28776,0.018303782,0.037367611,0.001954783,228,116637,,,511.5657895,0.872453152,1024.26,1174,,,0.088995046,503,5652,0.049631233,0.128358859,,,,,,,,,,,,,,,,,,,,,0.075166432,,,,,6891.926182,,,,,0.849339855,42715,50292,0.777184919,0.921494791,58763,,,52084.70213,65441.29787,,,,76850,59143.2766,94556.7234,60278,56554.59575,64001.40426,52348,43433.2766,61262.7234,64602,61573.23404,67630.76596,,,,,,0.461222021,7624,16530,,,55.20968315,,,,,0.417099195,,58763,,,3.991573345,36,9019,,,1.894401035,15,791807,1.060281878,3.124526415,,,,,,,,,,,,,2.014201671,1.07247756,3.444346201,,,,14.1418156,83,560166,11.19620858,17.62492172,14.81703638,,,,,,,,,,,,,14.63965104,11.32230506,18.6252256,,,,7.497777445,42,560166,5.403738487,10.13481696,,,,,,,,,,,,,8.342957007,5.903972926,11.45136032,,,,10.22976559,81,791807,8.123910498,12.71466458,,,,,,,,,,,,,11.15557849,8.72855312,14.04860486,,,,5.288461539,,10400,,,30,25,0.532894578,44129,82810,,,0.481,,,,,38.15502684,,,,,0.544979284,25123,46099,0.531792135,0.558166432,0.127818206,5726,44798,0.111395891,0.144240521,0.887676522,40921,46099,0.876427069,0.898925976,116637,,,,,0.234891158,27397,116637,,,0.152361601,17771,116637,,,0.058446291,6817,116637,,,0.007107522,829,116637,,,0.01876763,2189,116637,,,0.003532327,412,116637,,,0.080386155,9376,116637,,,0.806879464,94112,116637,,,0.005934527,645,108686,0.0036394,0.008229654,0.468984971,54701,116637,,,0.493801458,57637,116721,, -36,047,36047,NY,Kings County,2024,1,6186.828528,27885,7256537,6084.134103,6289.522953,0,,,,2,3279.848158,3070.398032,3489.298285,,9174.93829,8927.047724,9422.828855,,6586.428211,6345.300776,6827.555645,,4396.438855,4255.193389,4537.684322,,,,,2,,0.167,,,0.147,0.188,3.379782505,,,2.914339054,3.874780367,5.00989702,,,4.493921479,5.547273601,0.07814395,20103,257256,0.077106774,0.079181126,0,0.142857143,0.075924341,0.209789945,0.082017713,0.079090735,0.08494469,0.126976872,0.12418653,0.129767214,0.082355947,0.079759265,0.084952629,0.052636974,0.051357757,0.053916191,,,,0.084068741,0.072347253,0.09579023,0.139,,,0.116,0.163,0.265,,,0.24,0.292,7.9,1.64707E-05,0.139,,,0.275,,,0.247,0.305,1,2736074,2736074,,,0.169582738,,,0.152822027,0.188359027,0.116564417,38,326,0.092229002,0.143535707,720,19015,2641052,,,11.97349306,5753,480478,11.66408634,12.28289979,,,,3.506995237,3.004339731,4.009650743,12.73044828,12.16799401,13.29290256,21.4015833,20.54157082,22.26159579,7.362183516,6.928484038,7.795882994,,,,4.457501773,3.238827612,5.983988074,0.07114227,156121,2194490,0.066376313,0.075908227,0.000631945,1669,2641052,,,1582.415818,0.000649678,1683,2590516,,,1539.225193,0.002897878,7507,2590516,,,345.0800586,3012,,,,,5725,2065,3978,3871,2443,0.35,,,,,,0.26,0.35,0.32,0.35,0.37,,,,,0.24,0.47,0.27,0.35,0.41,0.83778736,1558788,1860601,0.835056503,0.840518218,0.708176622,607993,858533,0.70044161,0.715911635,0.058706548,70967,1208843,,,0.275,154478,,0.248787234,0.301212766,0.406748627,0.323530909,0.489966344,0.243230869,0.222625095,0.263836643,0.263230619,0.247437649,0.279023589,0.316631267,0.299155335,0.3341072,0.240164768,0.228752101,0.251577435,6.857913669,167772,24464,6.699928794,7.015898544,0.294393601,177469,602829,0.286059477,0.302727725,5.263054268,1390,2641052,,,40.32690154,5231,12971490,39.23405654,41.41974653,,,,17.43972586,15.41496706,19.46448466,49.51703999,47.29398964,51.74009034,43.11575011,40.51891702,45.71258321,37.73995321,35.99354321,39.48636321,,,,7.6,,,,,0,,,,,0.323352,314400,972315,0.3180618,0.328642201,0.251315548,0.246664057,0.255967039,0.099129397,0.096010606,0.102248189,0.007728977,0.00686386,0.008594094,0.181510913,221951,1222797,0.178244041,0.184777785,0.221274062,0.163067517,0.279480608,0.26452587,0.25055972,0.27849202,0.306262631,0.294919336,0.317605926,0.241577823,0.233234469,0.249921177,0.284376978,0.276970447,0.291783509,0.629,,1222797,0.613373764,0.644626237,80.26257966,,,80.1432037,80.38195562,,,,86.10627255,85.6554369,86.5571082,77.57246157,77.33307023,77.81185291,79.91940517,79.61529367,80.22351668,81.96788131,81.79141985,82.14434278,,,,331.8717713,27885,7256537,327.9057566,335.837786,,,,181.8728458,173.7921564,189.9535351,453.9527792,445.6092788,462.2962796,350.7351327,340.9065114,360.5637541,252.2931998,246.5263897,258.0600099,,,,35.3596625,898,2539617,33.04692675,37.67239825,,,,21.81114277,16.79723767,27.85234238,55.70755136,50.12836647,61.28673624,27.35998208,22.96680463,31.75315953,26.16697123,22.87010106,29.4638414,,,,3.554453244,943,265301,3.327585354,3.781321133,,,,2.040422423,1.602170465,2.561563501,6.528816847,5.869764544,7.187869149,2.883792187,2.384200679,3.383383694,2.153081545,1.887769914,2.418393176,,,,,,,0.104,,,0.092,0.117,0.157,,,0.141,0.174,0.114,,,0.103,0.126,1186.8,26096,2198861,,,0.139,377100,,,,1.64707E-05,41.2541658,2504700,,,18.52739749,1434,7739889,17.56844759,19.48634738,,,,3.169108755,2.153255644,4.498296911,21.24984194,19.35667421,23.14300968,24.23045982,21.70273161,26.75818802,16.8434175,15.33814978,18.34868521,,,,0.366,,,0.355,0.377,0.088074874,142343,1616159,0.082117427,0.094032321,0.024919228,15040,603550,0.020153271,0.029685185,0.000937651,2429,2590516,,,1066.494854,0.775659545,17499.655,22561,,,0.084591985,9594,113415,0.075540629,0.093643342,,,,,,,,,,,,,,,,,,,,,0.291732205,,,,,,,,,,0.917078029,63537,69282,0.898728817,0.935427241,73244,,,71324.51064,75163.48936,57771,52480.78723,63061.21277,82647,79669.46809,85624.53192,59090,57866.34043,60313.65957,55916,53714.12766,58117.87234,99789,97543.04255,102034.9575,,,,,,0.751878058,220392,293122,,,73.91395925,,,,,0.495207799,,73244,,,8.004797664,1535,191760,,,5.165217034,942,18237375,4.835364978,5.495069089,,,,0.920035347,0.569516381,1.406371759,12.6316353,11.68843042,13.57484018,3.914115105,3.256275206,4.571955003,1.218735119,0.967851603,1.514776474,,,,5.419601748,723,12971490,5.016171213,5.823032284,5.573762151,,,,5.169363645,4.098983875,6.433720528,3.946837272,3.308613388,4.585061156,4.391243097,3.548112371,5.234373824,7.236001616,6.452019892,8.01998334,,,,4.093592949,531,12971490,3.745405216,4.441780682,,,,,,,10.10604856,9.101750437,11.11034669,2.402105058,1.828593666,3.098540512,1.430499899,1.110839145,1.813499484,,,,3.618941871,660,18237375,3.342842313,3.895041428,,,,2.803917248,2.159357944,3.580539728,4.454988937,3.894845097,5.015132777,3.856554589,3.203569664,4.509539514,3.174729753,2.74635723,3.603102276,,,,,,230300,,,302,,0.553738599,920380,1662120,,,0.571,,,,,633.2876064,,,,,0.303124283,302505,997957,0.298270278,0.307978288,0.258400195,248566,961942,0.253422145,0.263378245,0.862883872,861121,997957,0.859591153,0.866176591,2590516,,,,,0.221150149,572893,2590516,,,0.156312102,404929,2590516,,,0.291151647,754233,2590516,,,0.00979882,25384,2590516,,,0.131861374,341589,2590516,,,0.001075847,2787,2590516,,,0.188939578,489451,2590516,,,0.367148089,951103,2590516,,,0.112953606,281988,2496494,0.110378539,0.115528674,0.522908949,1354604,2590516,,,0,0,2736074,, -36,049,36049,NY,Lewis County,2024,1,7459.456056,336,72752,6190.65822,8728.253893,0,,,,2,,,,2,,,,2,,,,2,7365.417916,6088.192633,8642.643198,,,,,2,,0.145,,,0.123,0.17,3.717242609,,,3.043401365,4.495585148,4.849889109,,,4.1407682,5.687559473,0.06828812,146,2138,0.057595956,0.078980284,0,,,,,,,,,,,,,0.069641981,0.058593361,0.080690602,,,,,,,0.191,,,0.154,0.23,0.43,,,0.382,0.48,8.5,0.044883143,0.091,,,0.272,,,0.233,0.316,0.441840343,11745,26582,,,0.181231548,,,0.153189309,0.212481602,0.529411765,9,17,0.415563015,0.627687466,116.7,31,26573,,,14.10514746,77,5459,11.1315618,17.6290142,,,,,,,,,,,,,13.91035549,10.88399646,17.51779058,,,,,,,0.05068281,1080,21309,0.042342385,0.059023236,0.000677379,18,26573,,,1476.277778,0.000187273,5,26699,,,5339.8,0.002097457,56,26699,,,476.7678571,3492,,,,,,,,,3508,0.57,,,,,,,,,0.57,0.51,,,,,,,,,0.51,0.911958875,16853,18480,0.901827534,0.922090215,0.567994621,3379,5949,0.514103779,0.621885463,0.040020567,467,11669,,,0.187,1087,,0.136957447,0.237042553,,,,,,,0.816901409,0.673554693,0.960248124,0.76119403,0.672818822,0.849569238,0.176788611,0.141739333,0.211837889,4.118327882,114576,27821,3.729431186,4.507224578,0.14290402,871,6095,0.106348083,0.179459957,15.05287322,40,26573,,,77.24112863,102,132054,62.25102634,92.23123092,,,,,,,,,,,,,78.23984068,63.58948176,95.25419868,,,,6,,,,,1,,,,,0.115384615,1200,10400,0.095824487,0.134944744,0.102564103,0.081778984,0.123349221,0.012980769,0.004072601,0.021888938,0.005288462,0.001961115,0.008615808,0.740236382,8643,11676,0.719070438,0.761402327,,,,,,,,,,,,,0.725250663,0.691934565,0.75856676,0.32,,11676,0.285735616,0.354264384,78.46465529,,,77.36583353,79.56347706,,,,,,,,,,,,,78.42185345,77.32178032,79.52192659,,,,339.1030808,336,72752,300.0958739,378.1102877,,,,,,,,,,,,,339.8396708,300.1111474,379.5681941,,,,45.68991776,12,26264,23.60864723,79.81109141,,,,,,,,,,,,,44.29946438,22.11413301,79.26397855,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.113,,,0.098,0.13,0.16,,,0.139,0.183,0.098,,,0.085,0.113,67.4,15,22251,,,0.091,2420,,,,0.044883143,1215.749686,27087,,,17.7089658,14,79056,9.681656391,29.7126355,,,,,,,,,,,,,15.82946391,8.179314992,27.65088783,,,,0.342,,,0.324,0.36,0.060576358,927,15303,0.049852953,0.071299762,0.026533206,167,6294,0.018192781,0.034873632,0.001123638,30,26699,,,889.9666667,0.913060897,284.875,312,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.063529324,,,,,9093.016,,,,,0.846482547,45760,54059,0.758775501,0.934189592,64452,,,56622.7234,72281.2766,85938,84451.02128,87424.97872,,,,86250,23254.76596,149245.234,39792,15399.82979,64184.17021,64315,61325.55319,67304.44681,,,,,,0.439753086,1781,4050,,,,,,,,0.353255136,,64452,,,4.608294931,8,1736,,,,,,,,,,,,,,,,,,,,,,,,,,19.89412705,23,132054,12.4675435,30.11994743,17.41711724,,,,,,,,,,,,,20.01685995,12.3907518,30.59789674,,,,7.57265967,10,132054,3.631384658,13.92639075,,,,,,,,,,,,,7.90301421,3.789802501,14.53392451,,,,8.06989606,15,185876,4.516659565,13.31006632,,,,,,,,,,,,,8.424457886,4.715105128,13.89486213,,,,4.444444444,,2700,,,7,5,0.645986125,13036,20180,,,0.444,,,,,14.88122097,,,,,0.807721139,8620,10672,0.792351706,0.823090573,0.103753403,1067,10284,0.084458017,0.12304879,0.83124063,8871,10672,0.810624044,0.851857216,26699,,,,,0.223042062,5955,26699,,,0.208434773,5565,26699,,,0.006629462,177,26699,,,0.003445822,92,26699,,,0.004681823,125,26699,,,0.001198547,32,26699,,,0.016292745,435,26699,,,0.957713772,25570,26699,,,0.003469038,87,25079,0,0.008068381,0.488707442,13048,26699,,,1,26582,26582,, -36,051,36051,NY,Livingston County,2024,1,5915.140184,751,172611,5192.021365,6638.259002,0,,,,2,,,,2,,,,2,,,,2,6145.342176,5349.386423,6941.297928,,,,,2,,0.125,,,0.105,0.15,3.19832758,,,2.594186134,3.873622757,4.557069272,,,3.848951623,5.304067037,0.068859771,247,3587,0.060573089,0.077146454,0,,,,,,,,,,0.112244898,0.068051446,0.15643835,0.065170612,0.056688458,0.073652765,,,,,,,0.186,,,0.149,0.229,0.39,,,0.345,0.437,8.8,0.039097163,0.08,,,0.211,,,0.178,0.252,0.784940324,48536,61834,,,0.194552395,,,0.165388391,0.226486225,0.2,5,25,0.10034726,0.316172705,160.8,99,61578,,,5.531326455,104,18802,4.468239736,6.594413174,,,,,,,,,,14.55301455,7.956268479,24.41748557,5.381665223,4.310493229,6.638264171,,,,,,,0.045860128,2061,44941,0.038711192,0.053009064,0.000454708,28,61578,,,2199.214286,0.000503934,31,61516,,,1984.387097,0.001544314,95,61516,,,647.5368421,2609,,,,,,,,,2639,0.49,,,,,,,,,0.49,0.5,,,,,,,0.39,0.26,0.51,0.922606827,38648,41890,0.912576786,0.932636869,0.664392906,8766,13194,0.617034229,0.711751583,0.03287066,997,30331,,,0.13,1370,,0.084723404,0.175276596,,,,,,,0.090909091,0,0.387522371,0.327631579,0.186400371,0.468862787,0.139634213,0.102335196,0.176933231,4.01752878,130871,32575,3.664777763,4.370279796,0.192664725,2117,10988,0.151535035,0.233794415,11.85488324,73,61578,,,66.25976376,208,313916,57.25495929,75.26456823,,,,,,,,,,,,,72.87859904,62.95038997,82.80680811,,,,6.8,,,,,1,,,,,0.127372933,3120,24495,0.110518931,0.144226936,0.115808899,0.098873108,0.13274469,0.009348847,0.005515184,0.013182509,0.008164932,0.004411838,0.011918026,0.763989234,21572,28236,0.750633506,0.777344962,,,,,,,,,,0.471553611,0.285606815,0.657500406,0.752240656,0.726712375,0.777768937,0.412,,28236,0.382500109,0.441499891,79.40927153,,,78.7457205,80.07282256,,,,,,,,,,82.83753572,75.58501752,90.09005392,79.17186196,78.4689375,79.87478642,,,,308.0841568,751,172611,284.4233255,331.744988,,,,,,,,,,,,,314.2279551,289.1807553,339.2751549,,,,33.83070404,19,56162,20.3682938,52.83083503,,,,,,,,,,,,,36.89809975,21.86815239,58.31490533,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.1,,,0.086,0.116,0.152,,,0.131,0.174,0.091,,,0.079,0.104,201.2,109,54177,,,0.08,4950,,,,0.039097163,2556.680792,65393,,,18.72759377,35,186890,13.04445524,26.04554945,,,,,,,,,,,,,20.73140393,14.44018244,28.83236431,,,,0.326,,,0.309,0.344,0.0529116,1810,34208,0.043379685,0.062443515,0.024491234,278,11351,0.016150809,0.03283166,0.00087782,54,61516,,,1139.185185,0.932783019,593.25,636,,,0.067969414,320,4708,0.028134427,0.107804401,,,,,,,,,,,,,,,,,,,,,0.088446355,,,,,9031.095375,,,,,0.839706197,51102,60857,0.775637929,0.903774464,75077,,,69527.04255,80626.95745,,,,66488,31795.40426,101180.5957,59250,1142.255319,117357.7447,60563,34882.82979,86243.17021,71555,67264.44681,75845.55319,,,,,,0.41506647,3091,7447,,,57.02677942,,,,,0.335362361,,75077,,,6.787330317,18,2652,,,,,,,,,,,,,,,,,,,,,,,,,,13.84475729,46,313916,9.935236864,18.78197656,14.6536016,,,,,,,,,,,,,14.88998937,10.63762671,20.27593935,,,,7.645357357,24,313916,4.898524718,11.37568572,,,,,,,,,,,,,8.097622116,5.133197799,12.15040907,,,,9.257377678,41,442890,6.643254051,12.55867813,,,,,,,,,,,,,10.22326616,7.336392301,13.86901492,,,,6.981132076,,5300,,,13,24,0.623456425,31656,50775,,,0.63,,,,,19.42784254,,,,,0.770470691,18546,24071,0.757568207,0.783373174,0.102886248,2424,23560,0.086933645,0.11883885,0.870341905,20950,24071,0.852850224,0.887833587,61516,,,,,0.175255218,10781,61516,,,0.203329215,12508,61516,,,0.017995318,1107,61516,,,0.005071851,312,61516,,,0.013443657,827,61516,,,0.00052019,32,61516,,,0.041322583,2542,61516,,,0.909064309,55922,61516,,,0.004987363,296,59350,0.00178746,0.008187266,0.500130048,30766,61516,,,0.713782062,44136,61834,, -36,053,36053,NY,Madison County,2024,1,6095.324406,843,192611,5385.50556,6805.143251,0,,,,2,,,,2,,,,2,,,,2,6313.469776,5549.555188,7077.384363,,,,,2,,0.133,,,0.111,0.157,3.67565395,,,2.971994998,4.355458518,5.459261629,,,4.666425172,6.173083417,0.071786311,301,4193,0.06397294,0.079599681,0,,,,,,,,,,,,,0.071809186,0.063748695,0.079869676,,,,,,,0.184,,,0.148,0.225,0.36,,,0.319,0.406,8.6,0.057844734,0.079,,,0.211,,,0.177,0.248,0.703731475,47865,68016,,,0.192177196,,,0.16322552,0.222055664,0.205882353,7,34,0.119526223,0.303561189,174.4,118,67658,,,8.122490897,174,21422,6.915592583,9.329389211,,,,,,,,,,,,,8.973080758,7.591296818,10.3548647,,,,,,,0.042204125,2130,50469,0.036246679,0.048161572,0.000739011,50,67658,,,1353.16,0.000357691,24,67097,,,2795.708333,0.002295185,154,67097,,,435.6948052,2431,,,,,,,,,2419,0.5,,,,,,,,,0.5,0.47,,,,,,0.5,0.6,0.47,0.47,0.930677412,42961,46161,0.922561234,0.938793589,0.625775085,8881,14192,0.579352568,0.672197602,0.033617021,1106,32900,,,0.151,1819,,0.108106383,0.193893617,,,,,,,0.291262136,0.057495974,0.525028298,0.185941043,0,0.384282894,0.116766192,0.086724246,0.146808138,4.58534427,134722,29381,4.121187811,5.049500729,0.167338232,2118,12657,0.132631644,0.20204482,8.868130894,60,67658,,,60.4269219,212,350837,52.29265136,68.56119245,,,,,,,,,,,,,62.28656114,53.71810838,70.85501389,,,,6.5,,,,,1,,,,,0.1201849,3120,25960,0.100975498,0.139394301,0.110852262,0.091595591,0.130108932,0.006317411,0.003253026,0.009381797,0.005007704,0.00261519,0.007400219,0.778379255,24013,30850,0.762674437,0.794084072,,,,0.577922078,0.331549892,0.824294264,,,,0.540620384,0.365819027,0.715421741,0.734695804,0.709367754,0.760023855,0.382,,30850,0.351228187,0.412771813,79.64895888,,,78.98528019,80.31263757,,,,,,,,,,91.74976402,80.60333307,102.896195,79.41968287,78.72728411,80.11208163,,,,307.995903,843,192611,285.5208408,330.4709653,,,,,,,,,,,,,312.7821138,289.4354721,336.1287554,,,,33.22911475,22,66207,20.8245093,50.30927906,,,,,,,,,,,,,36.01811197,22.29577899,55.05751018,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.105,,,0.091,0.12,0.163,,,0.143,0.186,0.086,,,0.074,0.098,79.9,47,58844,,,0.079,5430,,,,0.057844734,4248.232919,73442,,,19.13170746,40,209077,13.6679723,26.05195548,,,,,,,,,,,,,20.10786063,14.29865457,27.48810742,,,,0.33,,,0.312,0.347,0.048310838,1829,37859,0.039970412,0.056651263,0.024779694,329,13277,0.017630758,0.03192863,0.001326438,89,67097,,,753.8988764,0.89200419,638.675,716,,,0.034847298,178,5108,0.015665071,0.054029526,,,,,,,,,,,,,,,,,,,,,0.061305422,,,,,9691.1134,,,,,0.863948269,50236,58147,0.813226944,0.914669594,69851,,,65428.19149,74273.80851,43295,39384.53192,47205.46809,127917,67690.78723,188143.2128,,,,55208,17684.42553,92731.57447,68750,65266.08511,72233.91489,,,,,,0.390550103,3422,8762,,,70.90440955,,,,,0.350775222,,69851,,,5.535055351,18,3252,,,,,,,,,,,,,,,,,,,,,,,,,,12.25054374,45,350837,8.751968056,16.68176356,12.82646927,,,,,,,,,,,,,12.54443208,8.920317501,17.14865161,,,,5.98568566,21,350837,3.705233765,9.149756364,,,,,,,,,,,,,6.443437359,3.988589281,9.849478461,,,,10.52599617,52,494015,7.86131741,13.80344357,,,,,,,,,,,,,11.09836854,8.263464353,14.592305,,,,10.15873016,,6300,,,52,12,0.606048815,34266,56540,,,0.64,,,,,25.46735739,,,,,0.777460544,19606,25218,0.757108619,0.79781247,0.126927929,3119,24573,0.107248379,0.146607479,0.866722183,21857,25218,0.847892616,0.885551749,67097,,,,,0.183733997,12328,67097,,,0.205448828,13785,67097,,,0.018361477,1232,67097,,,0.007809589,524,67097,,,0.009568237,642,67097,,,0.000357691,24,67097,,,0.025902797,1738,67097,,,0.92355843,61968,67097,,,0.003053576,198,64842,0.000602702,0.005504451,0.502004561,33683,67097,,,0.691601976,47040,68016,, -36,055,36055,NY,Monroe County,2024,1,7208.714732,9206,2066150,6979.472184,7437.95728,0,,,,2,3612.697366,2809.86453,4415.530201,,15008.52887,14183.39592,15833.66182,,8498.531844,7738.215156,9258.848532,,5546.875534,5306.983012,5786.768056,,,,,2,,0.14,,,0.121,0.163,3.519173248,,,2.975726828,4.084599161,5.075291763,,,4.49193275,5.655607529,0.090870528,4927,54220,0.088451166,0.093289889,0,,,,0.078043316,0.067883779,0.088202853,0.15142338,0.14488793,0.15795883,0.114228742,0.106788192,0.121669293,0.063454122,0.060756726,0.066151519,,,,0.109780439,0.093975689,0.125585189,0.167,,,0.136,0.198,0.322,,,0.29,0.352,8.1,0.068604011,0.096,,,0.238,,,0.208,0.271,0.944007648,716920,759443,,,0.166704311,,,0.146933327,0.187470262,0.210300429,49,233,0.177663054,0.244531389,608.1,4592,755160,,,12.14801676,2082,171386,11.62619631,12.6698372,,,,4.933333333,3.473521942,6.799950152,28.36084505,26.43716872,30.28452138,28.59845073,26.37405673,30.82284473,4.307189108,3.910545088,4.703833127,,,,18.18181818,14.92867814,21.43495822,0.046440742,27760,597751,0.041674785,0.0512067,0.001073945,811,755160,,,931.1467324,0.000851024,640,752035,,,1175.054688,0.003572972,2687,752035,,,279.8790473,3347,,,,,,2319,6779,5976,2755,0.45,,,,,,0.39,0.35,0.36,0.47,0.49,,,,,0.46,0.5,0.36,0.38,0.52,0.913638612,480245,525640,0.909687242,0.917589982,0.747362829,146303,195759,0.729939555,0.764786103,0.034371732,12554,365242,,,0.19,28228,,0.162595745,0.217404255,0.556074766,0.196519404,0.915630128,0.219114219,0.147266196,0.290962243,0.405777166,0.372319839,0.439234494,0.321736506,0.293781369,0.349691644,0.075259526,0.064826883,0.085692169,4.913041958,140513,28600,4.736244548,5.089839368,0.317420158,48930,154149,0.300879276,0.333961041,8.713385243,658,755160,,,84.14821459,3137,3727946,81.20349655,87.09293264,,,,24.14080674,16.61742057,33.90266812,111.4228663,102.551427,120.2943056,73.62848753,64.55568016,82.7012949,84.70633287,81.17629479,88.23637095,,,,6.5,,,,,0,,,,,0.154844206,47260,305210,0.1479768,0.161711612,0.142395359,0.135495531,0.149295186,0.013089348,0.011302217,0.01487648,0.008305757,0.007008186,0.009603328,0.747229006,273234,365663,0.739688092,0.75476992,0.739130435,0.627902635,0.850358235,0.628623058,0.582721939,0.674524176,0.689208535,0.656340855,0.722076215,0.685767098,0.656723726,0.714810471,0.786080147,0.779001376,0.793158917,0.175,,365663,0.167278266,0.182721734,78.57879561,,,78.3751405,78.78245071,,,,85.3698106,83.67795669,87.06166451,71.00016788,70.39710081,71.60323496,77.58005454,76.69333279,78.4667763,80.12160462,79.90082892,80.34238033,,,,341.2946912,9206,2066150,333.9681245,348.6212578,,,,189.5123784,158.1884974,220.8362594,675.7306793,646.7853718,704.6759867,410.7787252,378.8663026,442.6911478,284.1295341,276.4472261,291.811842,,,,47.71581822,336,704169,42.61372008,52.81791636,,,,,,,111.2448759,93.19976067,129.2899911,48.80715318,36.22560983,64.34614684,28.17869246,23.0059068,33.35147811,,,,6.85479472,377,54998,6.162836537,7.546752903,,,,,,,13.69863014,11.58260768,15.8146526,7.610568639,5.700838158,9.954811162,4.122166011,3.418940554,4.825391468,,,,,,,0.107,,,0.094,0.123,0.158,,,0.14,0.177,0.099,,,0.088,0.112,361.2,2334,646185,,,0.096,72790,,,,0.068604011,51064.98382,744344,,,30.96749977,693,2237830,28.661838,33.27316153,,,,,,,51.56379485,43.76645789,59.36113181,46.95971426,38.16653853,57.17176713,26.28825229,23.74671272,28.82979185,,,,0.321,,,0.307,0.334,0.055565907,24752,445453,0.048416971,0.062714843,0.020789139,3332,160276,0.014831692,0.026746586,0.00266078,2001,752035,,,375.8295852,0.869731449,7384.02,8490,,,0.059640221,2586,43360,0.048052961,0.071227482,,,,,,,,,,,,,,,,,,,,,0.242369386,,,,,9751.970889,,,,,0.822757973,54330,66034,0.796798651,0.848717295,68169,,,65374.95745,70963.04255,40114,31629.40426,48598.59575,70119,62585.21277,77652.78723,39892,37531.65957,42252.34043,44784,40301.61702,49266.38298,81486,80096.7234,82875.2766,,,,,,0.517494399,48734,94173,,,64.2937612,,,,,0.461309393,,68169,,,4.523116794,185,40901,,,6.621663595,346,5225273,5.923937228,7.319389962,,,,,,,30.65511554,26.72729986,34.58293122,9.150513174,6.622271756,12.32568119,1.714851732,1.317739156,2.194040299,,,,9.93903083,384,3727946,8.913894578,10.96416708,10.30057839,,,,7.993083485,4.255980318,13.66841619,8.301585613,6.077804036,11.07315185,7.605106478,4.707680775,11.62521311,10.6381856,9.364926085,11.91144512,,,,7.886380329,294,3727946,6.984891968,8.787868689,,,,,,,28.31538187,23.84321362,32.78755012,7.857585626,5.17819844,11.43237455,4.250634244,3.459867642,5.041400847,,,,6.468561547,338,5225273,5.778948553,7.158174541,,,,,,,8.515309872,6.571936385,10.85346145,7.022486854,4.833956825,9.862182476,6.260569815,5.451462708,7.069676923,,,,4.813218391,,69600,,,141,194,0.676609709,383499,566795,,,0.66,,,,,183.744467,,,,,0.636526259,200332,314727,0.630125218,0.642927301,0.143561103,44341,308865,0.13677046,0.150351746,0.883613417,278097,314727,0.878351417,0.888875418,752035,,,,,0.200769911,150986,752035,,,0.189005831,142139,752035,,,0.147787005,111141,752035,,,0.004493142,3379,752035,,,0.038917072,29267,752035,,,0.000866981,652,752035,,,0.099027306,74472,752035,,,0.689114204,518238,752035,,,0.022873445,16388,716464,0.020845795,0.024901096,0.513712793,386330,752035,,,0.081201618,61668,759443,, -36,057,36057,NY,Montgomery County,2024,1,8466.726709,805,136057,7522.178422,9411.274996,0,,,,2,,,,2,,,,2,9394.105995,7115.004142,12171.15393,,8287.516591,7221.673743,9353.35944,,,,,2,,0.168,,,0.141,0.196,3.960596552,,,3.316466495,4.698118229,5.05796451,,,4.380604369,5.816170193,0.079941506,328,4103,0.071643014,0.088239999,0,,,,,,,0.155555556,0.080676024,0.230435088,0.087121212,0.067480285,0.10676214,0.076370757,0.066966509,0.085775005,,,,,,,0.204,,,0.163,0.243,0.358,,,0.313,0.403,6.4,0.183702907,0.118,,,0.267,,,0.226,0.309,0.648267787,32110,49532,,,0.170412804,,,0.143665995,0.199121526,0.210526316,4,19,0.095274272,0.345173375,268.4,133,49558,,,23.23041795,234,10073,20.25392289,26.20691301,,,,,,,,,,39.11111111,31.36825479,48.18598277,19.04495169,15.84409306,22.24581031,,,,,,,0.055132937,2196,39831,0.045601022,0.064664852,0.000524638,26,49558,,,1906.076923,0.000604558,30,49623,,,1654.1,0.000987445,49,49623,,,1012.714286,3088,,,,,,,,,3152,0.39,,,,,,0.21,0.29,0.09,0.41,0.45,,,,,,0.45,0.28,0.39,0.45,0.887813693,30460,34309,0.874757,0.900870387,0.591570372,7116,12029,0.542545417,0.640595326,0.040193574,897,22317,,,0.198,2207,,0.130085106,0.265914894,0.02,0,0.495087016,,,,0.31292517,0.131677398,0.494172942,0.281946508,0.167225926,0.39666709,0.18390954,0.142692237,0.225126843,4.644213529,113969,24540,4.201122552,5.087304506,0.275103406,3126,11363,0.229319197,0.320887615,7.667783204,38,49558,,,62.43361361,154,246662,52.57276745,72.29445977,,,,,,,,,,45.96085217,26.7738901,73.58777662,67.76712384,56.29291564,79.24133204,,,,6.8,,,,,1,,,,,0.145259939,2850,19620,0.12807459,0.162445288,0.129553617,0.112968018,0.146139217,0.017329256,0.010537305,0.024121207,0.008154944,0.003676011,0.012633877,0.753381029,16322,21665,0.728326277,0.778435782,,,,,,,,,,0.669404518,0.57695596,0.761853075,0.758845671,0.73772225,0.779969092,0.375,,21665,0.341341744,0.408658256,76.03633826,,,75.27790054,76.79477598,,,,,,,,,,76.11112335,73.32129711,78.9009496,76.14697827,75.31001739,76.98393916,,,,429.4124009,805,136057,398.0988972,460.7259047,,,,,,,,,,531.6544906,422.2104075,660.7979883,418.9347,385.1002269,452.7691731,,,,60.61708189,30,49491,40.89809061,86.53465356,,,,,,,,,,,,,64.07455949,40.1551853,97.00965309,,,,7.457469121,32,4291,5.100903359,10.5277213,,,,,,,,,,,,,7.120743034,4.513940259,10.6846108,,,,,,,0.123,,,0.105,0.141,0.167,,,0.145,0.189,0.107,,,0.093,0.122,205.4,85,41388,,,0.118,5820,,,,0.183702907,9225.376262,50219,,,16.89771475,25,147949,10.93531004,24.94436035,,,,,,,,,,,,,13.57347065,7.758411271,22.04246596,,,,0.359,,,0.344,0.374,0.066243735,1890,28531,0.054328841,0.078158629,0.028002018,333,11892,0.018470103,0.037533933,0.001229269,61,49623,,,813.4918033,0.868519504,489.845,564,,,0.133167907,322,2418,0.065576299,0.200759516,,,,,,,,,,,,,,,,,,,,,0.196498457,,,,,8459.36675,,,,,0.816364945,44238,54189,0.756489243,0.876240647,58176,,,52879.82979,63472.17021,26311,26084.61702,26537.38298,40929,22655.12766,59202.87234,33259,19643.85106,46874.14894,40938,29690.34043,52185.65957,60819,57686.57447,63951.42553,,,,,,0.552003536,3747,6788,,,59.69725631,,,,,0.391364136,,58176,,,2.587322122,8,3092,,,,,,,,,,,,,,,,,,,,,,,,,,13.06852275,32,246662,8.81727742,18.65612882,12.97321841,,,,,,,,,,,,,16.37393402,10.96588059,23.51570056,,,,8.108261508,20,246662,4.952736776,12.52255228,,,,,,,,,,,,,9.103046486,5.395042269,14.38673801,,,,8.970426529,31,345580,6.09496961,12.73280442,,,,,,,,,,,,,10.74352345,7.248610154,15.33704775,,,,11.17647059,,5100,,,21,36,0.567392175,21246,37445,,,0.583,,,,,59.90934357,,,,,0.687229094,13001,18918,0.669172146,0.705286042,0.137594149,2521,18322,0.115068033,0.160120265,0.797864468,15094,18918,0.772774632,0.822954303,49623,,,,,0.230276283,11427,49623,,,0.194567035,9655,49623,,,0.025875098,1284,49623,,,0.006811358,338,49623,,,0.010841747,538,49623,,,0.001773371,88,49623,,,0.158434597,7862,49623,,,0.78725591,39066,49623,,,0.021443919,998,46540,0.013771919,0.02911592,0.502166334,24919,49623,,,0.454271986,22501,49532,, -36,059,36059,NY,Nassau County,2024,1,4730.97936,12740,3771958,4598.998865,4862.959854,0,,,,2,2563.321789,2281.123183,2845.520394,,7533.690077,7039.01065,8028.369504,,4895.087684,4592.71378,5197.461589,,4478.815894,4306.633388,4650.998401,,,,,2,,0.109,,,0.093,0.126,2.783196753,,,2.323062693,3.315265246,4.150082664,,,3.63512359,4.751381166,0.080209795,7830,97619,0.078505884,0.081913707,0,,,,0.096472494,0.091506633,0.101438356,0.126287212,0.11998789,0.132586534,0.080842705,0.077526926,0.084158485,0.064051553,0.061819938,0.066283167,,,,0.090481786,0.071207532,0.10975604,0.111,,,0.089,0.134,0.271,,,0.241,0.303,9.9,0.004844624,0.044,,,0.221,,,0.192,0.252,0.985506966,1375545,1395774,,,0.163961903,,,0.144140401,0.185812243,0.173913044,64,368,0.148745173,0.20051285,323.2,4496,1390907,,,5.687993256,1680,295359,5.415998517,5.959987994,,,,1.087721543,0.753278789,1.519981832,5.912117177,5.134398342,6.689836013,22.28851627,21.07689872,23.50013382,0.688491645,0.560408125,0.816575166,,,,1.744923858,0.871059703,3.122150779,0.04234446,47613,1124421,0.038769992,0.045918928,0.001363139,1896,1390907,,,733.6007384,0.001214113,1680,1383726,,,823.6464286,0.003647398,5047,1383726,,,274.1680206,2288,,,,,,1661,3840,2496,2130,0.47,,,,,0.33,0.38,0.38,0.35,0.49,0.57,,,,,0.48,0.53,0.37,0.41,0.59,0.91811386,890553,969981,0.915370736,0.920856984,0.780650429,260037,333103,0.767061253,0.794239606,0.028744117,20968,729471,,,0.066,19010,,0.049319149,0.082680851,0.180116959,0.043062123,0.317171795,0.054135781,0.039718734,0.068552828,0.088277948,0.06647321,0.110082685,0.119028692,0.101410352,0.136647033,0.023817241,0.019642126,0.027992357,,,,,,0.156581402,46510,297034,0.146939737,0.166223066,7.987593707,1111,1390907,,,45.65680322,3117,6827022,44.05395215,47.25965428,,,,20.87693993,17.57960888,24.17427098,42.60479964,38.06940848,47.1401908,35.696726,32.29889693,39.09455508,54.00845824,51.73025991,56.28665657,,,,8.5,,,,,0,,,,,0.198048737,89115,449965,0.192003243,0.204094231,0.172733082,0.167035886,0.178430277,0.028213306,0.025894632,0.030531979,0.007867279,0.006474953,0.009259604,0.632356119,436081,689613,0.6268499,0.637862338,0.625941423,0.50841654,0.743466305,0.57700107,0.55929192,0.59471022,0.649953435,0.63197798,0.667928889,0.622683646,0.606321473,0.63904582,0.737173715,0.726511899,0.747835531,0.479,,689613,0.469320295,0.488679705,81.50184018,,,81.3621979,81.64148247,102.0667374,81.59770679,122.535768,87.61516683,86.85546876,88.37486491,78.22213663,77.73839246,78.7058808,83.17472032,82.61747898,83.73196166,81.56159677,81.3921649,81.73102864,,,,246.5483217,12740,3771958,242.0713528,251.0252907,,,,142.2886555,131.9471304,152.6301806,382.6364849,365.7320738,399.5408959,240.7179807,228.6983356,252.7376257,239.6368602,233.9253879,245.3483325,,,,24.91621538,324,1300358,22.20311637,27.62931439,,,,24.4977952,17.33609792,33.62513791,53.80755727,42.66604648,66.96816272,28.73448004,22.98387503,35.48684909,15.67868141,12.6507433,18.70661952,,,,2.99468291,294,98174,2.65236214,3.33700368,,,,2.227855881,1.492030048,3.19957267,7.660040124,6.109947997,9.4836509,2.889623969,2.276695026,3.616795292,1.904232102,1.529254742,2.34332146,,,,,,,0.083,,,0.072,0.095,0.13,,,0.114,0.147,0.086,,,0.076,0.098,239.4,2833,1183181,,,0.044,60640,,,,0.004844624,6489.528769,1339532,,,18.39399,754,4099165,17.08104557,19.70693442,,,,3.031516949,1.657358526,5.086370326,16.48089155,13.04807705,20.54010827,13.91124348,11.18463976,16.63784721,23.18824938,21.25029884,25.12619992,,,,0.343,,,0.331,0.356,0.05055613,41840,827595,0.045790172,0.055322087,0.020534787,6424,312835,0.015768829,0.025300744,0.001975102,2733,1383726,,,506.3029638,0.929141161,15573.335,16761,,,0.045558022,3222,70723,0.037446392,0.053669652,,,,,,,,,,,,,,,,,,,,,0.276271269,,,,,18193.34377,,,,,0.80104078,73425,91662,0.779317559,0.822764002,135528,,,131519.8298,139536.1702,137196,122240.4255,152151.5745,163934,156215.5319,171652.4681,124396,119385.7872,129406.2128,116340,110302.7234,122377.2766,142679,139594.234,145763.766,,,,,,0.265370063,50989,192143,,,76.9813223,,,,,0.293385869,,135528,,,4.834520876,363,75085,,,1.70682916,163,9549872,1.444798372,1.968859948,,,,,,,6.144093448,4.771128973,7.789102471,3.048120681,2.262373921,4.018567119,0.724140459,0.519655695,0.982378299,,,,5.69091177,408,6827022,5.118166199,6.263657341,5.976251431,,,,5.133500826,3.575671417,7.139456955,4.750591156,3.361801043,6.520557523,2.747273407,1.853573831,3.921903613,6.970440699,6.112966974,7.827914424,,,,2.299684987,157,6827022,1.939956696,2.659413279,,,,,,,5.152792877,3.697733132,6.990345371,1.515427047,0.898138111,2.395028075,2.276410236,1.832823522,2.79492733,,,,6.073379832,580,9549872,5.579100424,6.567659239,,,,4.426358968,3.216199202,5.942180312,9.577557434,7.754258392,11.40085648,7.07163998,5.784732814,8.358547146,5.404560495,4.799002503,6.010118488,,,,3.791329905,,136100,,,222,294,0.76044471,738369,970970,,,0.718,,,,,305.9375855,,,,,0.818040288,372021,454771,0.812386462,0.823694114,0.178128682,79517,446402,0.171874547,0.184382817,0.928918071,422445,454771,0.924829111,0.933007031,1383726,,,,,0.211868535,293168,1383726,,,0.188695594,261103,1383726,,,0.118321113,163724,1383726,,,0.006246902,8644,1383726,,,0.129240905,178834,1383726,,,0.001162803,1609,1383726,,,0.178970403,247646,1383726,,,0.5580693,772215,1383726,,,0.048466646,63757,1315482,0.046175434,0.050757858,0.506972479,701511,1383726,,,0.004290809,5989,1395774,, -36,061,36061,NY,New York County,2024,1,4774.266501,14040,4430280,4653.031688,4895.501315,0,,,,2,2426.498957,2177.139023,2675.858891,,11213.64857,10682.48019,11744.81695,,5658.65008,5408.65847,5908.641691,,2861.344379,2717.714492,3004.974266,,,,,2,,0.127,,,0.11,0.148,2.912360421,,,2.438496207,3.428278001,4.806531566,,,4.249040407,5.385285787,0.08228225,9120,110838,0.08066447,0.083900029,0,,,,0.079885968,0.07565646,0.084115476,0.129016976,0.123178739,0.134855213,0.091110546,0.087711035,0.094510057,0.067124135,0.06493358,0.06931469,,,,0.073820916,0.060421955,0.087219876,0.112,,,0.089,0.138,0.201,,,0.178,0.226,8.1,0,0.132,,,0.202,,,0.176,0.231,1,1694251,1694251,,,0.207244977,,,0.186300187,0.229632032,0.116666667,21,180,0.084048902,0.154106221,871.2,13738,1576876,,,6.889121444,1784,258959,6.569436276,7.208806612,,,,0.407331976,0.216887122,0.696550084,12.92975195,11.7706215,14.08888241,13.79293802,12.99574417,14.59013186,0.982358902,0.794787015,1.200882816,,,,1.906577693,1.129958774,3.01321473,0.054043763,66992,1239588,0.048086316,0.06000121,0.001368529,2158,1576876,,,730.7117702,0.00187186,2988,1596273,,,534.2279117,0.010634772,16976,1596273,,,94.03116164,2069,,,,,,1293,4575,3319,1439,0.41,,,,,0.25,0.34,0.35,0.32,0.45,0.53,,,,,0.46,0.5,0.34,0.34,0.59,0.884642206,1121399,1267630,0.88064792,0.888636492,0.851064731,502335,590243,0.838025336,0.864104126,0.045828478,42121,919101,,,0.211,46325,,0.178829787,0.243170213,0.405681818,0.238463372,0.572900264,0.134384384,0.102260013,0.166508756,0.350142133,0.313259388,0.387024879,0.323293724,0.299301977,0.347285471,0.028971602,0.019826706,0.038116497,,,,,,0.35224747,82409,233952,0.333527254,0.370967685,12.68964713,2001,1576876,,,46.92393625,3806,8110999,45.43314747,48.41472503,,,,21.41315061,18.57709602,24.24920519,92.66183469,86.73182303,98.59184634,50.82519559,47.77695316,53.87343802,39.45861514,37.45906585,41.45816443,,,,8.6,,,,,0,,,,,0.243363823,184645,758720,0.236919636,0.249808011,0.190142268,0.184055449,0.196229087,0.059185207,0.055773091,0.062597323,0.012066375,0.010496548,0.013636202,0.0566839,49360,870794,0.053948,0.0594198,0.078715645,0.050220189,0.107211102,0.099514155,0.094433356,0.104594954,0.132188882,0.125976326,0.138401438,0.114136512,0.10918599,0.119087034,0.10652712,0.1035492,0.109505039,0.667,,870794,0.623875327,0.710124673,83.3081673,,,83.14948749,83.46684711,,,,87.44071069,86.95174087,87.92968051,74.33409916,73.90988708,74.75831124,82.23568522,81.9107182,82.56065224,86.76716455,86.53704606,86.99728303,,,,252.1306293,14040,4430280,247.8377619,256.4234966,,,,136.6573293,127.4839183,145.8307402,570.9605923,552.9133383,589.0078463,293.717383,284.4350154,302.9997506,155.5866176,150.7297602,160.4434749,,,,31.9175401,340,1065245,28.52483567,35.31024452,,,,27.83814365,18.91466799,39.51402279,70.1754386,56.81599796,83.53487923,23.66128052,18.92597025,29.22148895,22.82708226,18.30798747,28.12360379,,,,3.010510835,348,115595,2.694205408,3.326816263,,,,1.625331086,1.071103427,2.364771397,8.653994746,7.05125249,10.256737,2.784351942,2.207817924,3.465367011,1.75476223,1.411036053,2.156900696,,,,,,,0.087,,,0.076,0.1,0.141,,,0.124,0.159,0.086,,,0.076,0.096,1858.5,26131,1406063,,,0.132,220500,,,,0,0,1585873,,,25.22017839,1215,4817571,23.80204825,26.63830852,,,,2.959689035,1.754099298,4.677584675,59.65855421,53.49576171,65.82134671,34.3693387,31.1131815,37.62549589,17.02942756,15.32390789,18.73494724,,,,0.319,,,0.308,0.33,0.060427383,61100,1011131,0.054469936,0.06638483,0.026986821,6440,238635,0.019837885,0.034135757,0.00321123,5126,1596273,,,311.4071401,0.7965711,13864.32,17405,,,0.047923878,2755,57487,0.037616796,0.058230961,,,,,,,,,,,,,,,,,,,,,0.254431591,,,,,958.2168,,,,,0.79883265,89645,112220,0.771636433,0.826028868,95514,,,91312.80851,99715.19149,47693,28943.7234,66442.2766,101769,94287.6383,109250.3617,45782,43101.14894,48462.85106,47930,45728.12766,50131.87234,146105,142833.1702,149376.8298,,,,,,0.674769537,105843,156858,,,68.99994606,,,,,0.385828256,,95514,,,11.96366972,926,77401,,,2.658069377,303,11399251,2.358773269,2.957365485,,,,0.69804422,0.334739336,1.283728173,11.22343116,9.484342482,12.96251983,3.214414653,2.600653408,3.929455225,0.600080711,0.410454762,0.847134916,,,,7.344595205,668,8110999,6.766517242,7.922673168,8.235730272,,,,6.32284445,4.900117602,8.029788947,7.434539682,5.847737078,9.31925987,4.677377158,3.778138973,5.576615343,8.921584628,7.975746649,9.867422606,,,,2.120577256,172,8110999,1.803659956,2.437494555,,,,,,,8.890794373,7.149248593,10.92829572,2.331867588,1.725128479,3.082852616,0.73853023,0.490747974,1.067381809,,,,2.561571809,292,11399251,2.267758692,2.855384926,,,,1.884719393,1.242041956,2.742167766,4.278933129,3.273044795,5.496468612,2.774547385,2.206679874,3.443944876,2.231550144,1.830601046,2.632499241,,,,3.618421053,,91200,,,245,85,0.591331583,701405,1186145,,,0.615,,,,,1091.974083,,,,,0.243231629,187921,772601,0.238096203,0.248367056,0.214639139,159810,744552,0.20787313,0.221405147,0.895354782,691752,772601,0.891131141,0.899578423,1596273,,,,,0.140254205,223884,1596273,,,0.183927185,293598,1596273,,,0.129039331,205982,1596273,,,0.012724641,20312,1596273,,,0.133259161,212718,1596273,,,0.001950168,3113,1596273,,,0.261990274,418208,1596273,,,0.454576379,725628,1596273,,,0.080460545,126474,1571876,0.077137157,0.083783934,0.522113699,833436,1596273,,,0,0,1694251,, -36,063,36063,NY,Niagara County,2024,1,8866.26232,3554,577980,8395.083575,9337.441064,0,24289.94671,17189.01195,33339.84961,,,,,2,20463.91572,17832.37241,23095.45903,,8061.158444,5857.250066,10821.72895,,7707.406039,7240.890007,8173.92207,,,,,2,,0.136,,,0.115,0.16,3.622399665,,,3.015926032,4.282403231,4.817700227,,,4.154620374,5.517794703,0.08563054,1227,14329,0.081048875,0.090212204,0,0.127071823,0.07855072,0.175592927,0.066666667,0.034072673,0.09926066,0.139266304,0.121579084,0.156953525,0.102564103,0.080719388,0.124408817,0.076099667,0.071170583,0.081028751,,,,0.104810997,0.079924981,0.129697012,0.203,,,0.166,0.243,0.353,,,0.313,0.398,8.2,0.052642551,0.1,,,0.251,,,0.212,0.293,0.878005887,186722,212666,,,0.178543132,,,0.152654947,0.206980757,0.122222222,11,90,0.075875538,0.177916282,358.6,759,211653,,,16.22869401,696,42887,15.02300577,17.43438225,26.84563758,13.87153268,46.89392628,,,,37.4808771,31.42179065,43.53996356,32.67973856,25.47545943,41.28888368,11.25938282,10.1243073,12.39445834,,,,37.27506427,29.85579843,45.97865406,0.044903893,7506,167157,0.038946446,0.05086134,0.000382702,81,211653,,,2613,0.000483687,102,210880,,,2067.45098,0.001598065,337,210880,,,625.7566766,2439,,,,,,,4977,712,2298,0.42,,,,,0.25,0.34,0.41,,0.42,0.41,,,,,0.18,0.46,0.3,0.27,0.41,0.916915191,139891,152567,0.909044061,0.924786322,0.678187735,34593,51008,0.647504739,0.708870732,0.038165994,3745,98124,,,0.213,8602,,0.17606383,0.24993617,0.052631579,0,0.608264667,0.619273302,0.438700991,0.799845612,0.346491228,0.26285948,0.430122976,0.282485876,0.177779815,0.387191936,0.115136957,0.095578109,0.134695804,4.863803217,128526,26425,4.577895342,5.149711091,0.261436196,10973,41972,0.234347922,0.288524469,9.921900469,210,211653,,,76.49194979,804,1051091,71.20453017,81.77936941,139.6128072,78.14022834,230.2700937,,,,137.8452889,111.0938028,164.5967751,66.20991422,41.97140606,99.34738009,73.43384965,67.81431378,79.05338552,,,,8.4,,,,,0,,,,,0.117751611,10600,90020,0.107048712,0.12845451,0.104490209,0.094170064,0.114810355,0.009831149,0.007339774,0.012322523,0.010497667,0.006887223,0.014108111,0.794442303,78305,98566,0.78058929,0.808295315,,,,0.662921348,0.493421617,0.832421079,0.616907714,0.570075843,0.663739584,0.745372461,0.651812726,0.838932195,0.786408801,0.767456831,0.805360771,0.32,,98566,0.301969494,0.338030506,76.1512516,,,75.77706819,76.52543501,66.38304334,61.88278699,70.88329969,84.2395775,79.78170671,88.6974483,67.04166493,65.43656364,68.64676622,76.81500035,74.15848167,79.47151903,77.0754383,76.693948,77.45692861,,,,431.3955703,3554,577980,416.1394367,446.651704,1000.280176,766.9090755,1282.314042,,,,917.4169285,826.0226229,1008.811234,380.1913833,285.6114684,496.0672846,394.9488504,379.5043286,410.3933722,,,,42.35130136,79,186535,33.52992412,52.78235782,,,,,,,90.02925951,51.45950064,146.2018771,,,,34.29575804,25.28698463,45.47119955,,,,5.849563003,85,14531,4.672423165,7.23307524,,,,,,,15.96806387,10.23103982,23.7592133,,,,3.889674682,2.826243578,5.221706708,,,,,,,0.107,,,0.092,0.124,0.165,,,0.145,0.187,0.106,,,0.092,0.121,148.3,270,182060,,,0.1,21300,,,,0.052642551,11395.48032,216469,,,33.36882081,210,629330,28.85559271,37.88204891,,,,,,,76.60245579,53.04942748,107.0442539,,,,30.01870541,25.36725881,34.670152,,,,0.342,,,0.324,0.357,0.052788614,6617,125349,0.044448189,0.06112904,0.022376193,985,44020,0.016418746,0.028333639,0.000725531,153,210880,,,1378.300654,0.845068729,1967.32,2328,,,0.062831261,652,10377,0.037733164,0.087929359,,,,,,,,,,,,,,,,,,,,,0.185023188,,,,,7969.902,,,,,0.800824474,47983,59917,0.764826336,0.836822612,63565,,,59991.7234,67138.2766,,,,58536,33387.23404,83684.76596,32896,25620.76596,40171.23404,50625,37519.80851,63730.19149,70020,67585.78723,72454.21277,,,,,,0.486207434,12479,25666,,,62.61516991,,,,,0.397010934,,63565,,,6.148282098,68,11060,,,4.405283358,65,1475501,3.399904692,5.614895267,,,,,,,35.82459504,25.223821,49.37948523,,,,1.748758977,1.095937941,2.647642108,,,,12.08802891,133,1051091,9.924289738,14.25176807,12.65351906,,,,,,,,,,,,,12.76999445,10.353513,15.1864759,,,,7.420860801,78,1051091,5.865882517,9.261570126,,,,,,,33.78561003,21.86426543,49.87422523,,,,5.820975887,4.347383214,7.633435433,,,,9.420529027,139,1475501,7.854412894,10.98664516,,,,,,,16.45994907,9.588526902,26.35397296,,,,9.061751064,7.398277999,10.72522413,,,,7.842105263,,19000,,,64,85,0.635051172,104866,165130,,,0.699,,,,,66.14487952,,,,,0.709480996,64550,90982,0.696895546,0.722066447,0.119966937,10595,88316,0.109652527,0.130281347,0.867248467,78904,90982,0.856911518,0.877585415,210880,,,,,0.19568475,41266,210880,,,0.209446131,44168,210880,,,0.072704856,15332,210880,,,0.011850341,2499,210880,,,0.013699734,2889,210880,,,0.000588012,124,210880,,,0.038638088,8148,210880,,,0.83780349,176676,210880,,,0.007655417,1542,201426,,,0.507814871,107088,210880,,,0.29972351,63741,212666,, -36,065,36065,NY,Oneida County,2024,1,8586.801255,3661,628272,8136.843574,9036.758937,0,,,,2,6505.337636,4843.651161,8553.317593,,17455.1197,15068.6662,19841.5732,,7249.094445,5745.208816,8752.980074,,8084.285186,7596.086734,8572.483638,,,,,2,,0.151,,,0.128,0.176,3.7855297,,,3.114980962,4.511133247,5.171206792,,,4.463844414,5.920167996,0.082139502,1399,17032,0.078015797,0.086263207,0,,,,0.085067873,0.068618394,0.101517353,0.144025157,0.126766493,0.161283822,0.101355713,0.08632608,0.116385347,0.0698611,0.065331541,0.074390659,,,,0.111111111,0.085242863,0.13697936,0.212,,,0.172,0.254,0.354,,,0.314,0.398,8.1,0.055970008,0.103,,,0.252,,,0.215,0.292,0.858524502,199285,232125,,,0.182636004,,,0.158413729,0.210076583,0.311111111,28,90,0.25709044,0.36580966,358.3,825,230274,,,17.54805775,880,50148,16.38862973,18.70748577,,,,17.15085754,12.68829883,22.67434323,39.30942895,32.97624725,45.64261066,32.64395783,27.60145743,37.68645823,12.53298153,11.38263669,13.68332637,,,,30.96274794,23.8450888,39.53873789,0.052570273,9252,175993,0.045421337,0.059719209,0.00070351,162,230274,,,1421.444444,0.000546219,125,228846,,,1830.768,0.002075632,475,228846,,,481.7810526,2578,,,,,,2592,4175,4581,2479,0.5,,,,,,0.32,0.39,0.41,0.5,0.49,,,,,,0.43,0.41,0.36,0.49,0.88888472,142130,159897,0.88246886,0.895300579,0.640949501,35183,54892,0.611977833,0.669921168,0.035488479,3553,100117,,,0.213,10065,,0.162957447,0.263042553,0.282608696,0.059226129,0.505991262,0.393930378,0.29762962,0.490231136,0.63382467,0.54270894,0.724940401,0.310723759,0.243535585,0.377911933,0.11299486,0.091359507,0.134630213,4.566131429,125975,27589,4.295171146,4.837091713,0.258629824,12692,49074,0.231099251,0.286160398,10.72635209,247,230274,,,78.5390516,901,1147200,73.41068187,83.66742134,,,,21.06771163,10.10278662,38.74427178,123.4760641,98.89926558,152.3072689,54.93112482,39.0613996,75.09265594,80.51728334,74.75857324,86.27599344,,,,6.7,,,,,0,,,,,0.130631376,11845,90675,0.120774594,0.140488158,0.110119877,0.100098124,0.12014163,0.020071685,0.016054946,0.024088424,0.007444169,0.005256145,0.009632192,0.77464943,77781,100408,0.764181338,0.785117523,,,,0.697608201,0.614794877,0.780421524,0.585743802,0.497395257,0.674092346,0.61552456,0.539524682,0.691524439,0.808520746,0.799206822,0.81783467,0.218,,100408,0.204156145,0.231843855,76.55654902,,,76.18711451,76.92598352,,,,78.7917806,76.33294012,81.25062107,68.17557342,66.43968653,69.9114603,79.99584521,77.23143343,82.76025699,77.02537894,76.62935432,77.42140356,,,,428.2914455,3661,628272,413.6284692,442.9544218,,,,368.722965,290.0240023,462.1974296,896.5603313,793.9499784,999.1706841,405.028715,330.0737196,479.9837103,409.5621821,393.9607556,425.1636086,,,,60.36372549,133,220331,50.10469581,70.62275517,,,,,,,181.4264656,124.0955682,256.1200367,56.89277899,30.29300871,97.28838476,47.09920512,36.91825831,59.22017922,,,,6.853259618,119,17364,5.621914551,8.084604685,,,,,,,17.3053152,11.49925628,25.01099873,,,,4.946150778,3.79218544,6.340742072,,,,,,,0.11,,,0.094,0.127,0.165,,,0.143,0.187,0.101,,,0.087,0.115,273.9,536,195656,,,0.103,23920,,,,0.055970008,13146.12347,234878,,,30.30784317,208,686291,26.18896037,34.42672598,,,,,,,75.50018875,51.64207322,106.5837393,25.1319427,12.54577525,44.96798765,29.47546258,24.96423458,33.98669057,,,,0.365,,,0.349,0.38,0.063762014,8147,127772,0.054230099,0.073293929,0.023934698,1211,50596,0.016785762,0.031083635,0.001830926,419,228846,,,546.1718377,0.858059585,2188.91,2551,,,0.060209209,731,12141,0.038934827,0.08148359,,,,,,,,,,,,,,,,,,,,,0.238226318,,,,,9350.828533,,,,,0.863347112,50334,58301,0.831153823,0.895540402,63894,,,59929.91489,67858.08511,55536,31622.80851,79449.19149,54854,45899.95745,63808.04255,27202,20483.19149,33920.80851,59241,49286.10638,69195.89362,70828,67899.31915,73756.68085,,,,,,0.498542087,15559,31209,,,73.98693017,,,,,0.392681629,,63894,,,4.752629529,61,12835,,,3.662571622,59,1610890,2.788119215,4.724450544,,,,,,,24.40289174,15.6353932,36.30956857,,,,2.053484916,1.353259499,2.987712741,,,,12.93117107,151,1147200,10.78239577,15.07994637,13.16248257,,,,,,,,,,,,,13.79582577,11.31187589,16.27977565,,,,7.845188285,90,1147200,6.308457822,9.643068322,,,,,,,24.12750678,14.05516182,38.63047562,,,,7.076086152,5.472644518,9.002516561,,,,8.504615461,137,1610890,7.080482725,9.928748197,,,,,,,,,,,,,9.05054463,7.424406981,10.67668228,,,,11.40909091,,22000,,,131,120,0.583654729,101696,174240,,,0.631,,,,,74.38325387,,,,,0.679527457,63158,92944,0.669347763,0.689707152,0.118089395,10663,90296,0.108518128,0.127660662,0.866199002,80508,92944,0.857735161,0.874662842,228846,,,,,0.211465352,48393,228846,,,0.199693244,45699,228846,,,0.062911303,14397,228846,,,0.004111936,941,228846,,,0.044754988,10242,228846,,,0.001284707,294,228846,,,0.068670634,15715,228846,,,0.800844236,183270,228846,,,0.026863129,5865,218329,0.023133573,0.030592685,0.499134789,114225,228846,,,0.343577814,79753,232125,, -36,067,36067,NY,Onondaga County,2024,1,7420.119178,6013,1288543,7130.233402,7710.004954,0,11754.10331,7930.444144,16779.71334,,2965.540209,2214.807272,3888.911438,,14461.90213,13296.11911,15627.68515,,7932.185046,6646.981866,9217.388226,,6551.31903,6240.123005,6862.515055,,,,,2,,0.146,,,0.125,0.172,3.781842708,,,3.197509153,4.428357822,5.500041175,,,4.874117076,6.183034246,0.084270145,2946,34959,0.081358106,0.087182184,0,0.088339223,0.055275155,0.12140329,0.080787157,0.06863246,0.092941854,0.134487139,0.126060936,0.142913341,0.098613251,0.087144214,0.110082288,0.065601723,0.062351122,0.068852324,,,,0.128822381,0.112074181,0.145570582,0.194,,,0.156,0.232,0.364,,,0.325,0.403,8.2,0.060788606,0.097,,,0.242,,,0.207,0.28,0.975874892,465020,476516,,,0.174279589,,,0.151409496,0.199817642,0.268965517,39,145,0.226649609,0.312483333,482.4,2283,473236,,,13.00945748,1498,115147,12.35064874,13.66826621,21.97802198,12.56233854,35.69093077,6.529309344,4.76252304,8.736729614,36.57248482,33.52700548,39.61796415,25.90793431,22.51508282,29.30078579,6.67359694,6.099990032,7.247203848,,,,23.65739941,19.69587086,27.61892796,0.047856561,17971,375518,0.041899114,0.053814008,0.000923429,437,473236,,,1082.919909,0.000762415,357,468249,,,1311.621849,0.003135084,1468,468249,,,318.9707085,2862,,,,,5259,1673,5500,2695,2674,0.52,,,,,0.47,0.42,0.41,0.32,0.53,0.52,,,,,0.22,0.54,0.38,0.3,0.54,0.913643985,296419,324436,0.909381241,0.917906729,0.716474084,84142,117439,0.696621004,0.736327165,0.032883443,7375,224277,,,0.189,17964,,0.160404255,0.217595745,0.384920635,0.184469841,0.585371429,0.189471441,0.128366047,0.250576835,0.51804003,0.472754044,0.563326015,0.36221952,0.304412181,0.42002686,0.110217069,0.096955669,0.123478469,4.994005179,140786,28191,4.785197401,5.202812957,0.280289952,27763,99051,0.26005105,0.300528853,10.39650407,492,473236,,,76.9766204,1786,2320185,73.40657134,80.54666946,98.4081042,57.32634715,157.5609078,20.16603368,11.95166961,31.87102731,114.2785086,101.125605,127.4314121,59.76889361,46.76547823,75.26902979,76.99089139,72.90648362,81.07529915,,,,6.4,,,,,1,,,,,0.147878303,27705,187350,0.141500091,0.154256514,0.131041018,0.124245149,0.137836887,0.016519883,0.014055914,0.018983851,0.010461703,0.008093739,0.012829666,0.743447277,165249,222274,0.734551414,0.752343139,0.725423729,0.651222704,0.799624754,0.537272974,0.507359489,0.567186458,0.583796783,0.548085913,0.619507654,0.603666065,0.569591204,0.637740926,0.798961141,0.790256265,0.807666017,0.172,,222274,0.162847997,0.181152003,78.07666176,,,77.8222813,78.33104222,76.33167821,71.63848022,81.02487619,87.07749398,84.3863708,89.76861715,70.95025257,70.09603639,71.80446874,80.26977794,77.86761554,82.67194034,78.85569046,78.58115957,79.13022135,,,,357.9479599,6013,1288543,348.4323817,367.4635381,549.8275997,420.5745472,706.2765536,178.6634854,140.0436523,224.6425094,667.9989025,624.6701505,711.3276545,360.0392154,305.4245152,414.6539156,329.2118137,319.0828454,339.340782,,,,45.57733877,206,451979,39.35331239,51.80136515,,,,,,,107.3185274,83.97013816,135.1499241,71.6277404,47.59611332,103.5220279,31.60317406,25.47661872,38.75848751,,,,5.900368071,210,35591,5.102326475,6.698409666,,,,,,,12.92690712,10.26583019,16.06696524,9.582215408,6.20110458,14.14524021,3.94339044,3.17095159,4.847096341,,,,,,,0.11,,,0.094,0.127,0.17,,,0.149,0.192,0.098,,,0.085,0.113,281.7,1134,402515,,,0.097,46220,,,,0.060788606,28389.85936,467026,,,34.31497123,478,1392978,31.23869194,37.39125053,,,,,,,53.03476724,42.11726052,65.91737326,26.91608909,16.44104648,41.56971658,34.172457,30.65702287,37.68789113,,,,0.352,,,0.336,0.367,0.056584407,15656,276684,0.049435471,0.063733343,0.024647887,2562,103944,0.017498951,0.031796824,0.002718639,1273,468249,,,367.8311076,0.854768888,4604.64,5387,,,0.045436515,1260,27731,0.032619932,0.058253098,,,,,,,,,,,,,,,,,,,,,0.226170332,,,,,9359.490556,,,,,0.862714792,56934,65994,0.833569592,0.891859992,70939,,,68254.57447,73623.42553,46380,41170.80851,51589.19149,68579,62480.95745,74677.04255,36640,33418.21277,39861.78723,51223,42787.25532,59658.74468,78261,76768.06383,79753.93617,,,,,,0.49285878,32265,65465,,,67.61179436,,,,,0.445340363,,70939,,,5.001316136,133,26593,,,6.329032254,206,3254842,5.464741693,7.193322815,,,,,,,37.70123739,31.31773131,44.08474347,15.13436287,9.794161676,22.34130513,1.563835149,1.112039666,2.13781413,,,,10.53757588,245,2320185,9.169794981,11.90535678,10.5595028,,,,,,,8.191809247,4.932004292,12.79252488,,,,11.33436053,9.716054727,12.95266633,,,,7.844202079,182,2320185,6.70455823,8.983845927,,,,,,,32.31323345,25.69967351,40.10924282,13.28197636,7.591797096,21.56909749,4.399479508,3.477605984,5.490749533,,,,7.680864386,250,3254842,6.728734572,8.6329942,,,,,,,9.284633088,6.391114205,13.03907685,10.89674127,6.458099475,17.22154907,7.297897364,6.237623323,8.358171405,,,,9.519450801,,43700,,,271,145,0.672936743,235686,350235,,,0.679,,,,,151.3821363,,,,,0.65305392,125899,192785,0.646467455,0.659640386,0.138961081,26093,187772,0.13066601,0.147256151,0.871437093,168000,192785,0.864447686,0.8784265,468249,,,,,0.207400336,97115,468249,,,0.189008412,88503,468249,,,0.11285235,52843,468249,,,0.009764036,4572,468249,,,0.039188551,18350,468249,,,0.000542446,254,468249,,,0.056991045,26686,468249,,,0.753464503,352809,468249,,,0.017113557,7643,446605,0.015293647,0.018933467,0.513718129,240548,468249,,,0.146393825,69759,476516,, -36,069,36069,NY,Ontario County,2024,1,6111.793468,1345,303885,5541.017961,6682.568975,0,,,,2,,,,2,14081.28554,9751.699584,19677.18514,,8563.16946,5964.561284,11909.29579,,5869.067937,5267.881366,6470.254509,,,,,2,,0.12,,,0.1,0.142,3.229442562,,,2.648372658,3.896699125,5.000416223,,,4.328746112,5.751362753,0.067116061,458,6824,0.061179108,0.073053014,0,,,,,,,0.145454546,0.091659122,0.199249969,0.085808581,0.063508641,0.108108521,0.061613015,0.055412975,0.067813055,,,,0.120300752,0.065012669,0.175588835,0.165,,,0.13,0.201,0.362,,,0.318,0.405,8.9,0.03046793,0.08,,,0.202,,,0.169,0.239,0.796190578,89538,112458,,,0.196062031,,,0.168849465,0.224998122,0.255319149,12,47,0.17955074,0.335385166,244.4,275,112508,,,7.480169331,182,24331,6.393413932,8.566924731,,,,,,,,,,25.88235294,18.80615727,34.74585075,6.055870287,4.989957203,7.121783371,,,,,,,0.044767153,3875,86559,0.038809706,0.0507246,0.000826608,93,112508,,,1209.763441,0.000603334,68,112707,,,1657.455882,0.002688387,303,112707,,,371.970297,2956,,,,,,,1946,4133,2955,0.53,,,,,,0.33,0.47,0.21,0.53,0.5,,,,,,0.57,0.34,0.29,0.5,0.933394161,74679,80008,0.925197657,0.941590664,0.747173279,18701,25029,0.702495163,0.791851395,0.030549643,1708,55909,,,0.128,2667,,0.093446809,0.162553192,,,,0.030674847,0,0.29208005,,,,0.334017445,0.238305583,0.429729307,0.074133578,0.053936261,0.094330895,4.047462762,144288,35649,3.792859833,4.302065691,0.212714384,4651,21865,0.177954147,0.24747462,9.066021972,102,112508,,,61.9409243,342,552139,55.37613638,68.50571221,,,,,,,87.30851655,43.58409689,156.2190532,35.7602632,17.14843619,65.76439723,63.95311185,56.90173035,71.00449334,,,,6.9,,,,,1,,,,,0.10511923,4805,45710,0.09260858,0.11762988,0.089350879,0.07792352,0.100778239,0.01061037,0.006856801,0.014363938,0.008203894,0.004790345,0.011617444,0.782675976,42486,54283,0.767749923,0.797602029,,,,0.536521739,0.402184436,0.670859042,0.705882353,0.568219211,0.843545495,0.553781832,0.463918234,0.64364543,0.798562776,0.78400031,0.813125242,0.339,,54283,0.316299079,0.361700921,79.89973587,,,79.37552627,80.42394547,,,,,,,73.16846643,68.9830434,77.35388945,81.61320681,75.0810551,88.14535852,80.0151405,79.47094236,80.55933865,,,,298.7726922,1345,303885,281.4121828,316.1332015,,,,,,,751.07037,560.9352766,984.9288653,344.0856236,245.8198142,468.5469589,290.5741345,272.7091733,308.4390958,,,,37.27922137,37,99251,26.24801218,51.38449602,,,,,,,,,,,,,36.76605758,24.80590466,52.4858333,,,,5.107252298,35,6853,3.557388356,7.102951608,,,,,,,,,,,,,4.972565158,3.330204928,7.141433031,,,,,,,0.099,,,0.084,0.114,0.155,,,0.134,0.177,0.081,,,0.069,0.092,113,110,97327,,,0.08,8920,,,,0.03046793,3288.434153,107931,,,17.75098082,59,332376,13.51286905,22.89747195,,,,,,,,,,,,,16.51477567,12.21772196,21.83340925,,,,0.309,,,0.292,0.327,0.050967124,3299,64728,0.042626698,0.05930755,0.027494688,634,23059,0.019154262,0.035835113,0.001392992,157,112707,,,717.8789809,0.907466509,1151.575,1269,,,0.05703741,340,5961,0.025676079,0.088398741,,,,,,,,,,,,,,,,,,,,,0.12480339,,,,,12269.23067,,,,,0.831995378,54722,65772,0.780328716,0.88366204,76601,,,71010.53192,82191.46809,87841,59002.19149,116679.8085,137054,56411.61702,217696.383,58224,25539.06383,90908.93617,64308,58126.55319,70489.44681,77291,73310.23404,81271.76596,,,,,,0.403692044,5642,13976,,,62.24078393,,,,,0.408715291,,76601,,,5.574136009,30,5382,,,,,,,,,,,,,,,,,,,,,,,,,,14.02993661,80,552139,10.97756133,17.66838322,14.4891051,,,,,,,,,,,,,14.81807295,11.483803,18.81842884,,,,5.976755853,33,552139,4.114123721,8.393587352,,,,,,,,,,,,,6.476264491,4.429760117,9.142553121,,,,7.647162514,59,771528,5.821374419,9.864282484,,,,,,,,,,,,,7.944245838,5.984693167,10.34052793,,,,6.40776699,,10300,,,20,46,0.69845975,60085,86025,,,0.588,,,,,50.1659443,,,,,0.725,34133,47080,0.709840791,0.740159209,0.104132769,4800,46095,0.091650685,0.116614854,0.894668649,42121,47080,0.885733266,0.903604033,112707,,,,,0.188905747,21291,112707,,,0.223952372,25241,112707,,,0.024683471,2782,112707,,,0.00384182,433,112707,,,0.014630857,1649,112707,,,0.000487991,55,112707,,,0.054841314,6181,112707,,,0.887034523,99975,112707,,,0.007547593,808,107054,0.00475264,0.010342546,0.507918763,57246,112707,,,0.448558573,50444,112458,, -36,071,36071,NY,Orange County,2024,1,6467.556554,4252,1105430,6184.212582,6750.900526,0,,,,2,4813.175742,3388.919909,6634.328741,,8636.690287,7630.66548,9642.715093,,5082.372394,4569.396107,5595.348681,,6636.118814,6260.894195,7011.343433,,,,,2,,0.147,,,0.126,0.17,3.519100902,,,2.928507,4.15151557,4.596895454,,,3.94636355,5.259189327,0.069387085,2537,36563,0.066782377,0.071991793,0,,,,0.086904762,0.067854706,0.105954818,0.128606187,0.116373431,0.140838943,0.08010604,0.074393913,0.085818166,0.057162534,0.054177242,0.060147827,,,,0.08994709,0.066397062,0.113497118,0.157,,,0.13,0.187,0.352,,,0.311,0.394,8.6,0.059708781,0.078,,,0.26,,,0.224,0.299,0.79597568,319433,401310,,,0.173677852,,,0.14704299,0.203231914,0.242038217,38,157,0.201578928,0.284132118,354.5,1434,404525,,,11.64647126,1138,97712,10.96979756,12.32314497,,,,,,,9.327819983,7.564233635,11.37914934,17.74237001,16.12273469,19.36200534,9.756624424,8.935221933,10.57802692,,,,9.983361065,6.735731788,14.25186868,0.053539222,18078,337659,0.046390285,0.060688158,0.00066745,270,404525,,,1498.240741,0.000665121,270,405941,,,1503.485185,0.0026999,1096,405941,,,370.3841241,3121,,,,,,1501,3557,3210,3075,0.43,,,,,,0.32,0.41,0.42,0.43,0.49,,,,,,0.49,0.41,0.43,0.5,0.89687372,229936,256375,0.89055006,0.90319738,0.638367823,61358,96117,0.614641163,0.662094482,0.031961193,6088,190481,,,0.21,21249,,0.17306383,0.24693617,0.128598848,0,0.312894191,0.129341317,0.051985435,0.2066972,0.179510675,0.131402927,0.227618424,0.171102797,0.140098197,0.202107397,0.225455152,0.205263695,0.245646608,5.020754717,175626,34980,4.693431596,5.348077838,0.171437911,17307,100952,0.152842912,0.19003291,6.847537235,277,404525,,,63.64512223,1234,1938876,60.09401639,67.19622806,,,,25.56797429,13.97824946,42.89871635,61.9182971,51.14935072,72.68724348,43.46071462,37.14653052,49.77489872,72.787335,67.98905312,77.58561688,,,,5.8,,,,,1,,,,,0.209307675,27300,130430,0.198151354,0.220463995,0.17897398,0.167658697,0.190289263,0.036686345,0.031730189,0.041642502,0.006861918,0.004649623,0.009074213,0.707121523,129737,183472,0.696208026,0.71803502,0.595263724,0.266062326,0.924465123,0.599815668,0.518773002,0.680858335,0.691520468,0.651568847,0.731472089,0.66543405,0.637166851,0.693701249,0.763625289,0.754006275,0.773244302,0.452,,183472,0.432421832,0.471578168,79.17866233,,,78.8948821,79.46244255,,,,86.25781858,82.15689781,90.35873934,76.85139864,75.85984456,77.84295271,81.71666104,80.80068831,82.63263377,78.93874851,78.59546736,79.28202966,,,,325.6270468,4252,1105430,315.5880339,335.6660598,,,,244.4226903,195.5066025,301.8600341,425.4537032,389.1150869,461.7923194,268.8731159,246.0445335,291.7016983,331.0484975,318.441597,343.655398,,,,35.18101308,156,443421,29.66021182,40.70181434,,,,,,,66.49241069,44.531011,95.49419324,24.17593411,16.1910025,34.72067412,33.02299674,26.30263257,40.93697294,,,,3.91623153,141,36004,3.269811396,4.562651663,,,,,,,10.63075833,7.172528002,15.17606853,4.537855266,3.211256466,6.228560893,2.666783247,2.039877877,3.425594645,,,,,,,0.108,,,0.094,0.123,0.147,,,0.13,0.166,0.099,,,0.086,0.112,302.8,1005,331895,,,0.078,31090,,,,0.059708781,22260.2096,372813,,,30.47589212,358,1174699,27.31891826,33.63286598,,,,,,,30.82102468,21.91676149,42.13335536,21.54832404,16.27737241,27.98229113,33.58175575,29.36804658,37.79546491,,,,0.358,,,0.344,0.371,0.06500791,15287,235156,0.056667484,0.073348335,0.028421355,3068,107947,0.021272419,0.035570291,0.001175048,477,405941,,,851.0293501,0.887170346,4379.96,4937,,,0.075925279,1955,25749,0.055312643,0.096537915,,,,,,,,,,,,,,,,,,,,,0.113109761,,,,,14421.58525,,,,,0.811584138,58430,71995,0.769803951,0.853364325,88532,,,83851.82979,93212.17021,88125,47900.31915,128349.6809,97578,83580.38298,111575.617,79992,69965.61702,90018.38298,92456,85441.70213,99470.29787,93459,90644.70213,96273.29787,,,,,,0.440844162,23918,54255,,,49.36297881,,,,,0.348461573,,88532,,,4.19786703,111,26442,,,2.374122363,64,2695733,1.828363512,3.031701256,,,,,,,7.498045153,4.641408127,11.4615585,4.037304695,2.559304853,6.057939341,1.053790749,0.624543184,1.6654437,,,,9.48567367,189,1938876,8.096526254,10.87482109,9.747915803,,,,,,,5.757497089,2.974982761,10.05718874,7.212733775,4.792809213,10.42440852,10.7511094,8.859859889,12.64235891,,,,5.93127152,115,1938876,4.847207435,7.015335606,,,,,,,10.72600422,6.721929741,16.23929929,3.343131894,1.827721316,5.609207253,6.175396069,4.857340751,7.740912448,,,,7.901375989,213,2695733,6.840245,8.962506979,,,,,,,8.56919446,5.490444582,12.7502821,5.266049603,3.552981553,7.51761325,8.957221365,7.537890447,10.37655228,,,,2.521929825,,45600,,,77,38,0.648050855,173305,267425,,,0.648,,,,,66.10058695,,,,,0.680161314,91917,135140,0.669139269,0.69118336,0.19727824,25992,131753,0.185687568,0.208868912,0.873353559,118025,135140,0.862998146,0.883708972,405941,,,,,0.253421064,102874,405941,,,0.147267706,59782,405941,,,0.113927886,46248,405941,,,0.009942332,4036,405941,,,0.032842211,13332,405941,,,0.001305609,530,405941,,,0.236620593,96054,405941,,,0.594882015,241487,405941,,,0.053380764,20003,374723,0.049188782,0.057572745,0.499688378,202844,405941,,,0.275821684,110690,401310,, -36,073,36073,NY,Orleans County,2024,1,7329.624699,652,111442,6345.258643,8313.990755,0,,,,2,,,,2,6111.138034,3679.304303,9543.299041,1,,,,2,7348.329588,6306.1671,8390.492077,,,,,2,,0.172,,,0.147,0.201,4.234695173,,,3.512611201,5.00170796,5.531598652,,,4.769072615,6.329205268,0.070510466,192,2723,0.060894758,0.080126175,0,,,,,,,0.186046512,0.103800015,0.268293008,,,,0.064837905,0.05499856,0.07467725,,,,0.155844156,0.074828811,0.236859501,0.221,,,0.182,0.262,0.415,,,0.368,0.462,8.3,0.038257903,0.104,,,0.282,,,0.244,0.325,0.52306472,21102,40343,,,0.173112911,,,0.145376818,0.203189174,0.125,3,24,0.040232942,0.245512437,209,84,40191,,,19.44106926,160,8230,16.42864437,22.45349415,,,,,,,,,,20.45209903,12.31349964,31.93848608,18.97810219,15.5392309,22.41697348,,,,51.67173252,30.10068836,82.73144929,0.060579254,1849,30522,0.051047339,0.070111169,7.46436E-05,3,40191,,,13397,0.000228903,9,39318,,,4368.666667,0.000635841,25,39318,,,1572.72,2582,,,,,,,,,2675,0.43,,,,,,,0.25,,0.44,0.43,,,,,,,0.26,0.04,0.43,0.861452971,25269,29333,0.845962533,0.876943409,0.466880449,4659,9979,0.418981157,0.514779741,0.037552399,645,17176,,,0.175,1269,,0.110659575,0.239340426,,,,,,,0.259259259,0,0.579679863,0.217656012,0.017846399,0.417465625,0.156351264,0.117452902,0.195249626,4.364583333,119415,27360,3.934603197,4.79456347,0.242444067,1853,7643,0.192038172,0.292849961,12.19178423,49,40191,,,61.3509074,124,202116,50.55233811,72.14947669,,,,,,,,,,,,,66.56910849,54.45476684,78.68345014,,,,7.1,,,,,0,,,,,0.146077547,2430,16635,0.123602812,0.168552283,0.131372312,0.1068888,0.155855825,0.012924557,0.007069433,0.018779681,0.006913135,0.000617954,0.013208316,0.756030796,13257,17535,0.730964019,0.781097572,,,,,,,,,,,,,0.730394669,0.687768217,0.773021122,0.45,,17535,0.406076201,0.493923799,77.23681852,,,76.39384291,78.07979412,,,,,,,76.62296392,72.98308486,80.26284297,82.19209964,71.2854963,93.09870298,77.20971639,76.33195141,78.08748137,,,,393.420132,652,111442,361.2940245,425.5462395,,,,,,,452.8247606,298.4143706,658.8362524,,,,397.9476569,363.4214439,432.4738699,,,,52.22538154,18,34466,30.95207097,82.53861854,,,,,,,,,,,,,46.6987571,24.86512138,79.85629685,,,,8.912655972,25,2805,5.767801015,13.1568384,,,,,,,,,,,,,,,,,,,,,,0.125,,,0.108,0.144,0.173,,,0.151,0.196,0.113,,,0.098,0.128,446.7,156,34924,,,0.104,4240,,,,0.038257903,1640.613662,42883,,,17.42434928,21,120521,10.78594683,26.63496879,,,,,,,,,,,,,17.33636399,10.27462802,27.39892926,,,,0.354,,,0.337,0.37,0.070923524,1635,23053,0.057817141,0.084029907,0.029578351,235,7945,0.020046436,0.039110266,0.000330637,13,39318,,,3024.461539,0.886008677,408.45,461,,,0.108730584,203,1867,0.035487657,0.181973511,,,,,,,,,,,,,,,,,,,,,0.077518998,,,,,8114.8978,,,,,0.846345469,45866,54193,0.764462459,0.928228479,62900,,,56628,69172,86417,41198.78723,131635.2128,143690,46129.65957,241250.3404,122861,48893.34043,196828.6596,58092,25814.55319,90369.44681,60286,56985.57447,63586.42553,,,,,,0.489319225,2451,5009,,,56.26217341,,,,,0.361971383,,62900,,,7.042253521,14,1988,,,,,,,,,,,,,,,,,,,,,,,,,,10.07639838,26,202116,6.456138576,14.99288207,12.86389994,,,,,,,,,,,,,10.81796792,6.779562899,16.37853343,,,,8.411011498,17,202116,4.899724153,13.4668442,,,,,,,,,,,,,9.755817624,5.683123279,15.62000908,,,,11.57716002,33,285044,7.969184257,16.25863701,,,,,,,,,,,,,13.0188733,8.904899698,18.37876462,,,,7.428571429,,3500,,,13,13,0.568846094,18314,32195,,,0.54,,,,,12.41751212,,,,,0.762175174,12348,16201,0.741013752,0.783336596,0.157705415,2499,15846,0.1296857,0.185725129,0.858156904,13903,16201,0.833058782,0.883255026,39318,,,,,0.188717636,7420,39318,,,0.201841396,7936,39318,,,0.045755125,1799,39318,,,0.007655527,301,39318,,,0.006460146,254,39318,,,0.000890178,35,39318,,,0.054300829,2135,39318,,,0.868482629,34147,39318,,,0.011730512,448,38191,0.004968497,0.018492528,0.492929447,19381,39318,,,0.665493394,26848,40343,, -36,075,36075,NY,Oswego County,2024,1,8348.907767,1736,327366,7724.465343,8973.350191,0,,,,2,,,,2,,,,2,7728.712355,4502.259759,12374.41717,1,8419.084699,7768.406252,9069.763146,,,,,2,,0.153,,,0.13,0.179,3.962455399,,,3.294177987,4.6833278,5.492632822,,,4.777136652,6.257790532,0.074171238,622,8386,0.068562544,0.079779932,0,,,,,,,,,,0.081712062,0.048221531,0.115202593,0.073510611,0.067727089,0.079294133,,,,0.0859375,0.037382899,0.134492101,0.207,,,0.17,0.247,0.4,,,0.355,0.445,8.2,0.024695905,0.115,,,0.268,,,0.229,0.311,0.68065518,79994,117525,,,0.200739875,,,0.173889364,0.232092911,0.304878049,25,82,0.248074483,0.362582224,253.9,298,117387,,,15.93811477,478,29991,14.50928966,17.36693987,,,,,,,,,,16.56050955,10.81787466,24.26498349,16.0236938,14.49485223,17.55253538,,,,21.30325815,12.40993292,34.10857997,0.05475149,5107,93276,0.046411065,0.063091916,0.000400385,47,117387,,,2497.595745,0.000464971,55,118287,,,2150.672727,0.001792251,212,118287,,,557.9575472,3465,,,,,,,,,3450,0.48,,,,,,0.62,,,0.48,0.48,,,,,0.31,0.46,0.3,0.28,0.48,0.897788129,72087,80294,0.88785462,0.907721638,0.586380323,15973,27240,0.552171508,0.620589138,0.040366626,2136,52915,,,0.235,5540,,0.186148936,0.283851064,,,,0.68159204,0.240466421,1,0.457364341,0,0.968121882,0.550675676,0.439778636,0.661572715,0.266599161,0.23738543,0.295812892,4.616671559,125832,27256,4.300098993,4.933244124,0.230687136,5620,24362,0.194040521,0.267333751,9.115149037,107,117387,,,74.58708894,438,587233,67.60182737,81.57235051,,,,,,,,,,,,,76.12202779,68.83317115,83.41088443,,,,6.9,,,,,0,,,,,0.142504561,6640,46595,0.127620471,0.157388651,0.116372305,0.101489255,0.131255354,0.024251529,0.017775552,0.030727506,0.011589226,0.007553225,0.015625228,0.794446218,42313,53261,0.784419854,0.804472581,,,,0.518134715,0.329971873,0.706297557,,,,0.692556634,0.516023841,0.869089427,0.771611756,0.75599232,0.787231192,0.377,,53261,0.352874179,0.401125821,76.83685956,,,76.31400676,77.35971236,,,,,,,,,,84.41886494,72.07878027,96.75894961,76.72019729,76.18354476,77.25684982,,,,396.5083582,1736,327366,376.7061016,416.3106147,,,,,,,,,,327.1385633,196.9587852,510.8673899,399.1790547,378.8027292,419.5553802,,,,48.15732561,55,114209,36.27868817,62.6833787,,,,,,,,,,,,,50.89805707,38.01310351,66.74603019,,,,6.67760075,57,8536,5.057549597,8.651606303,,,,,,,,,,,,,6.817321045,5.121381388,8.89512516,,,,,,,0.115,,,0.1,0.132,0.172,,,0.151,0.194,0.094,,,0.082,0.108,82.8,83,100198,,,0.115,13560,,,,0.024695905,3015.592204,122109,,,32.2068535,113,350857,26.2685123,38.14519471,,,,,,,,,,,,,32.27544965,26.13110681,38.41979249,,,,0.35,,,0.332,0.368,0.064013214,4418,69017,0.05328981,0.074736618,0.02931251,747,25484,0.019780595,0.038844425,0.001149746,136,118287,,,869.7573529,0.859156917,1248.355,1453,,,0.083860359,663,7906,0.057556203,0.110164515,,,,,,,,,,,,,,,,,,,,,0.050751214,,,,,10837.58,,,,,0.787566023,45478,57745,0.741485177,0.833646869,59335,,,56451.59575,62218.40426,,,,69342,33058.76596,105625.234,37964,26174.21277,49753.78723,32946,14831.78723,51060.21277,65637,63182.53192,68091.46809,,,,,,0.504543363,8773,17388,,,78.04321589,,,,,0.420527513,,59335,,,5.320813772,34,6390,,,1.331129306,11,826366,0.664494954,2.381758024,,,,,,,,,,,,,1.289339355,0.618288337,2.371140981,,,,13.81258793,81,587233,10.86447662,17.31419857,13.79350275,,,,,,,,,,,,,13.69313617,10.67447141,17.30045378,,,,5.278994879,31,587233,3.586820901,7.493111849,,,,,,,,,,,,,5.268589036,3.528456764,7.566572699,,,,12.10117551,100,826366,9.729345109,14.47300591,,,,,,,,,,,,,12.63552568,10.25813052,15.39865861,,,,6.725663717,,11300,,,32,44,0.59667138,54852,91930,,,0.619,,,,,42.13674463,,,,,0.734995657,34694,47203,0.720079243,0.749912071,0.130848689,5979,45694,0.115812414,0.145884964,0.890176472,42019,47203,0.878851562,0.901501382,118287,,,,,0.203361316,24055,118287,,,0.1820572,21535,118287,,,0.010871863,1286,118287,,,0.005114679,605,118287,,,0.007591705,898,118287,,,0.000414247,49,118287,,,0.031229129,3694,118287,,,0.930508002,110067,118287,,,0.00363376,406,111730,0.001935103,0.005332417,0.494289313,58468,118287,,,0.627262285,73719,117525,, -36,077,36077,NY,Otsego County,2024,1,7642.577571,801,159922,6739.174514,8545.980627,0,,,,2,,,,2,,,,2,,,,2,7793.199084,6815.173569,8771.224598,,,,,2,,0.131,,,0.109,0.156,3.302633404,,,2.683967251,3.985706591,4.862178262,,,4.133584472,5.653298259,0.056888069,185,3252,0.04892697,0.064849168,0,,,,,,,,,,,,,0.058564658,0.050096989,0.067032327,,,,,,,0.183,,,0.146,0.225,0.297,,,0.253,0.343,7.8,0.106327557,0.092,,,0.237,,,0.198,0.278,0.525152074,30734,58524,,,0.1865648,,,0.156893776,0.217129874,0.352941177,6,17,0.222343344,0.479798798,227.1,132,58123,,,5.62704898,115,20437,4.598587935,6.655510025,,,,,,,,,,7.294832827,3.769346571,12.74260489,5.870267097,4.719694746,7.020839448,,,,,,,0.053528395,2199,41081,0.04518797,0.061868821,0.001376391,80,58123,,,726.5375,0.00044528,27,60636,,,2245.777778,0.002193417,133,60636,,,455.9097744,2453,,,,,,,,5424,2399,0.5,,,,,,,0.8,,0.5,0.5,,,,,,0.49,0.33,0.39,0.51,0.926128278,36445,39352,0.915784317,0.936472239,0.664505673,7790,11723,0.615855307,0.713156038,0.034466199,933,27070,,,0.171,1488,,0.109042553,0.232957447,,,,0.022857143,0,0.496894236,0.192982456,0,0.550707226,0.086267606,0.022092847,0.150442365,0.156122583,0.11956248,0.192682686,4.343830497,119729,27563,3.906409081,4.781251914,0.218653079,1974,9028,0.171944152,0.265362007,12.38752301,72,58123,,,68.20637493,202,296160,58.8003667,77.61238317,,,,,,,,,,,,,71.63084506,61.524887,81.73680312,,,,6.5,,,,,1,,,,,0.135675221,3225,23770,0.118876333,0.152474109,0.116118072,0.100530169,0.131705974,0.013251998,0.008143068,0.018360928,0.011779554,0.007287836,0.016271272,0.736583916,19820,26908,0.713769069,0.759398762,,,,0.394495413,0.249417033,0.539573793,0.589001447,0.37939067,0.798612224,0.584738956,0.420648401,0.748829511,0.763083248,0.740584645,0.78558185,0.307,,26908,0.278930372,0.335069628,78.32059736,,,77.56424797,79.07694674,,,,,,,,,,83.99550939,77.58418007,90.40683871,78.13266264,77.33345541,78.93186987,,,,356.7028523,801,159922,329.2334048,384.1722997,,,,,,,,,,,,,360.3933091,331.6414574,389.1451609,,,,35.7803089,18,50307,21.20567869,56.54831389,,,,,,,,,,,,,41.81767494,24.78380443,66.08995509,,,,6.474396704,22,3398,4.057469945,9.802314417,,,,,,,,,,,,,6.960556845,4.308694393,10.63995053,,,,,,,0.103,,,0.088,0.119,0.157,,,0.136,0.179,0.086,,,0.074,0.101,131.5,68,51705,,,0.092,5440,,,,0.106327557,6619.847356,62259,,,21.55209084,38,176317,15.25154219,29.58192853,,,,,,,,,,,,,21.22731331,14.70053155,29.66304268,,,,0.341,,,0.323,0.358,0.061104546,1965,32158,0.050381142,0.071827951,0.027278494,258,9458,0.018938069,0.03561892,0.003347846,203,60636,,,298.6995074,0.872201139,459.65,527,,,0.042145594,220,5220,0.013623329,0.070667859,,,,,,,,,,,,,,,,,,,,,0.088011445,,,,,10211.39775,,,,,0.923336793,48923,52985,0.848092634,0.998580953,68962,,,65369.65957,72554.34043,,,,67500,9717.531915,125282.4681,89085,63273.76596,114896.234,57375,22090.23404,92659.76596,65754,62252.21277,69255.78723,,,,,,0.364878209,2217,6076,,,61.51741661,,,,,0.330152838,,68962,,,6.708595388,16,2385,,,2.638566731,11,416893,1.317163005,4.721124728,,,,,,,,,,,,,2.632327082,1.262303154,4.840943227,,,,14.0711815,41,296160,9.744702238,19.66306575,13.84386818,,,,,,,,,,,,,15.37581971,10.5840068,21.59336754,,,,7.09076175,21,296160,4.389293282,10.83898256,,,,,,,,,,,,,7.794029773,4.824627273,11.91400243,,,,7.675830489,32,416893,5.250262372,10.83598239,,,,,,,,,,,,,7.633748539,5.112441204,10.96333627,,,,5.714285714,,4200,,,12,12,0.572358548,28223,49310,,,0.54,,,,,28.34091577,,,,,0.741268774,16534,22305,0.730170326,0.752367222,0.115028,2506,21786,0.099165173,0.130890827,0.848554136,18927,22305,0.836614962,0.860493309,60636,,,,,0.14702487,8915,60636,,,0.215762913,13083,60636,,,0.02536447,1538,60636,,,0.00293555,178,60636,,,0.016706247,1013,60636,,,0.000676166,41,60636,,,0.044610462,2705,60636,,,0.896843459,54381,60636,,,0.005895178,338,57335,0.003111286,0.008679069,0.513242958,31121,60636,,,0.727137585,42555,58524,, -36,079,36079,NY,Putnam County,2024,1,4301.439588,893,272602,3822.570582,4780.308594,0,,,,2,,,,2,4347.509387,2314.865649,7434.373457,1,2790.237374,2050.161472,3710.424197,,4731.840928,4128.769579,5334.912277,,,,,2,,0.11,,,0.093,0.131,2.898261673,,,2.345156271,3.523928599,4.437962727,,,3.784649571,5.143839517,0.069385683,410,5909,0.06290652,0.075864845,0,,,,0.065789474,0.026376894,0.105202053,0.120805369,0.06847563,0.173135108,0.071863581,0.059371643,0.084355519,0.066206544,0.058414839,0.073998249,,,,,,,0.134,,,0.106,0.167,0.289,,,0.249,0.331,9.1,0.066963945,0.053,,,0.197,,,0.166,0.233,0.973266577,95057,97668,,,0.181000864,,,0.153969224,0.210298386,0.178571429,5,28,0.087257021,0.288336239,177.7,174,97936,,,3.083198938,65,21082,2.379547848,3.929790144,,,,,,,,,,12.96518607,9.739846812,16.91675544,0.65308255,0.313178468,1.201042061,,,,,,,0.046666245,3692,79115,0.039517309,0.053815182,0.000530959,52,97936,,,1883.384615,0.000622163,61,98045,,,1607.295082,0.004426539,434,98045,,,225.9101383,2232,,,,,,,,2627,2237,0.45,,,,,,0.29,0.35,0.38,0.46,0.54,,,,,,0.46,0.39,0.46,0.54,0.932561231,65947,70716,0.920549265,0.944573197,0.720463117,16428,22802,0.676099951,0.764826283,0.029352423,1513,51546,,,0.058,1058,,0.036553192,0.079446809,,,,0.236220472,0.008265422,0.464175523,0.085072231,0,0.203359097,0.084510056,0.040574712,0.128445399,0.045379809,0.027180233,0.063579386,4.113661138,211327,51372,3.826190662,4.401131615,0.154566498,2938,19008,0.126523813,0.182609184,7.453847411,73,97936,,,51.52098466,254,493003,45.18486504,57.85710428,,,,,,,,,,35.79053896,23.96948565,51.4011841,57.72211152,50.07713381,65.36708923,,,,7.9,,,,,0,,,,,0.166976944,5830,34915,0.148877729,0.18507616,0.152442529,0.133622223,0.171262834,0.013604468,0.007972909,0.019236027,0.004296148,0.001076518,0.007515778,0.724428056,35560,49087,0.702911923,0.74594419,,,,0.646130729,0.522334832,0.769926626,0.777313433,0.657678901,0.896947965,0.652961531,0.568471282,0.73745178,0.716824542,0.685321076,0.748328008,0.601,,49087,0.568131302,0.633868698,82.02429707,,,81.49293371,82.55566043,,,,86.10237107,80.38702235,91.81771979,83.62478697,78.62329729,88.62627666,84.7415004,82.58768803,86.89531276,81.54239988,80.94262636,82.14217339,,,,227.240851,893,272602,211.5021535,242.9795485,,,,,,,247.5061468,158.5818584,368.2695274,176.7754599,136.4315679,225.314835,241.0886351,222.5136757,259.6635944,,,,22.29811405,19,85209,13.42492127,34.8212672,,,,,,,,,,,,,20.82212698,10.75909686,36.37206547,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.086,,,0.074,0.1,0.137,,,0.12,0.158,0.077,,,0.067,0.089,174.7,149,85265,,,0.053,5230,,,,0.066963945,6676.974999,99710,,,19.67515638,58,294788,14.94017113,25.43470214,,,,,,,,,,,,,22.73132466,16.92496427,29.88749393,,,,0.325,,,0.308,0.341,0.053915468,3249,60261,0.045575042,0.062255893,0.024771513,496,20023,0.017622577,0.031920449,0.000662961,65,98045,,,1508.384615,0.924013688,1147.625,1242,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.036857197,,,,,21366.26833,,,,,0.8100532,69586,85903,0.741134837,0.878971563,112167,,,101219.5957,123114.4043,210577,22395.55319,398758.4468,107860,71494.55319,144225.4468,133566,73631.70213,193500.2979,107284,92289.10638,122278.8936,122548,117167.234,127928.766,,,,,,0.269186092,3476,12913,,,45.38793286,,,,,0.325380905,,112167,,,8.165116807,36,4409,,,,,,,,,,,,,,,,,,,,,,,,,,6.261250982,36,493003,4.282691037,8.839018202,7.302186802,,,,,,,,,,,,,7.079635046,4.665524106,10.3004973,,,,3.042577834,15,493003,1.702907717,5.018269437,,,,,,,,,,,,,3.426426711,1.824427916,5.859294029,,,,5.64444348,39,690945,4.013751093,7.71614005,,,,,,,,,,,,,5.766487038,3.918048171,8.185068055,,,,1.578947368,,9500,,,7,8,0.746632474,55318,74090,,,0.698,,,,,36.2094863,,,,,0.839440736,29299,34903,0.82417542,0.854706051,0.161075792,5498,34133,0.141913044,0.18023854,0.9397473,32800,34903,0.92961277,0.949881829,98045,,,,,0.190443164,18672,98045,,,0.193156204,18938,98045,,,0.033770208,3311,98045,,,0.005752461,564,98045,,,0.025008925,2452,98045,,,0.000958743,94,98045,,,0.190861339,18713,98045,,,0.734876842,72051,98045,,,0.019160857,1792,93524,0.013086203,0.025235511,0.497128869,48741,98045,,,0.350217062,34205,97668,, -36,081,36081,NY,Queens County,2024,1,5535.965072,24160,6319786,5428.806468,5643.123676,0,,,,2,3633.832717,3464.402411,3803.263022,,8420.631022,8093.085667,8748.176378,,5210.921452,5019.943725,5401.899179,,5726.206993,5500.753852,5951.660133,,,,,2,,0.166,,,0.148,0.186,3.110006814,,,2.669057603,3.580205319,4.162928201,,,3.681217017,4.649730141,0.088245054,16487,186832,0.086958836,0.089531273,0,,,,0.095957555,0.093537898,0.098377212,0.132066033,0.128099377,0.136032689,0.077205499,0.07502321,0.079387787,0.062120189,0.059796974,0.064443405,0.253731343,0.149534796,0.357927891,0.111519608,0.096247621,0.126791595,0.125,,,0.106,0.146,0.271,,,0.244,0.298,8.5,0.000745547,0.109,,,0.296,,,0.267,0.326,0.989292295,2379707,2405464,,,0.144896189,,,0.127487998,0.163364212,0.186588921,64,343,0.160203628,0.214342511,544.2,12685,2331143,,,9.817770517,3906,397850,9.50987538,10.12566565,,,,3.023653792,2.674439595,3.372867988,10.1310065,9.441352278,10.82066073,17.83445105,17.12505057,18.54385152,4.227884372,3.750249613,4.705519132,,,,3.710575139,2.625823811,5.093054284,0.095544565,180805,1892363,0.089587118,0.101502012,0.00058941,1374,2331143,,,1696.610626,0.000744503,1696,2278029,,,1343.177476,0.001976709,4503,2278029,,,505.8914057,2605,,,,,2317,2052,3728,2451,2356,0.37,,,,,0.29,0.31,0.35,0.33,0.4,0.45,,,,,0.32,0.49,0.33,0.36,0.48,0.827913174,1415532,1709759,0.824902807,0.830923541,0.679183549,467679,688590,0.669683391,0.688683707,0.052224202,59591,1141061,,,0.161,69821,,0.139553192,0.182446809,0.119618797,0.051902096,0.187335498,0.142047495,0.129522975,0.154572016,0.143673387,0.122788297,0.164558478,0.182160549,0.169653807,0.19466729,0.091987893,0.079831981,0.104143806,4.895774818,162104,33111,4.771180251,5.020369385,0.246461687,115227,467525,0.234993085,0.257930289,4.559994818,1063,2331143,,,38.99265481,4464,11448310,37.84878451,40.13652511,,,,22.72838016,21.03859242,24.4181679,45.61156158,42.68478082,48.53834233,32.74763218,30.76871278,34.72655157,59.02412277,56.19827602,61.84996951,,,,7.8,,,,,0,,,,,0.299077053,234285,783360,0.293493414,0.304660692,0.224118199,0.21912378,0.229112617,0.095198887,0.091844491,0.098553283,0.007435917,0.00647512,0.008396714,0.325915781,362668,1112766,0.320845264,0.330986299,0.362505654,0.299470184,0.425541124,0.351155656,0.340067687,0.362243625,0.447050725,0.434809718,0.459291733,0.338601963,0.324944229,0.352259698,0.503751033,0.493492189,0.514009878,0.629,,1112766,0.615156145,0.642843855,81.41168003,,,81.28689824,81.53646181,118.8029742,97.19187634,140.414072,86.18408433,85.84806531,86.52010335,77.6157442,77.31265962,77.91882878,83.46470833,83.14174549,83.78767116,80.38919721,80.1725942,80.60580023,,,,292.1597088,24160,6319786,288.3653887,295.954029,,,,194.0611585,188.2048065,199.9175106,428.8382509,417.9132235,439.7632782,262.1046569,254.8811587,269.3281552,311.5760907,303.8788736,319.2733077,,,,33.29690595,663,1991176,30.76234239,35.83146951,,,,25.42728001,20.96968129,29.88487874,57.97787034,49.96256075,65.99317992,24.72922233,21.0008165,28.45762816,31.86190068,26.23103464,37.49276672,,,,3.858308034,746,193349,3.581433154,4.135182913,,,,2.108850424,1.739152644,2.478548203,7.622841054,6.620082331,8.625599776,2.905494954,2.470004999,3.340984908,3.614823107,3.045737932,4.183908282,,,,,,,0.099,,,0.087,0.11,0.134,,,0.12,0.149,0.121,,,0.109,0.134,812.2,16180,1992101,,,0.109,260030,,,,0.000745547,1663.106937,2230722,,,16.18013215,1102,6810822,15.22481552,17.13544878,,,,4.655824985,3.718907634,5.756999694,21.87408258,19.24535792,24.50280725,13.54401334,11.89450862,15.19351806,27.56323172,25.05252658,30.07393686,,,,0.357,,,0.348,0.367,0.116961089,168880,1443899,0.109812153,0.124110026,0.027883969,13100,469804,0.021926522,0.033841415,0.000905607,2063,2278029,,,1104.231217,0.823709093,16360.51,19862,,,0.07230082,7170,99169,0.062794776,0.081806863,,,,,,,,,,,,,,,,,,,,,0.24500003,,,,,,,,,,0.973618384,58384,59966,0.95400189,0.993234877,80180,,,78682.29787,81677.70213,76200,65104.85106,87295.14894,80623,78794.06383,82451.93617,80589,78070.19149,83107.80851,72387,70796.3617,73977.6383,94553,92812.23404,96293.76596,,,,,,0.723932228,190649,263352,,,78.56465105,,,,,0.451583936,,80180,,,6.432255954,924,143651,,,2.816287372,454,16120514,2.557224537,3.075350206,,,,1.075255496,0.787222164,1.434240149,8.084834551,7.046710512,9.12295859,2.543026347,2.078235025,3.007817669,1.289632323,0.963159103,1.691181215,,,,6.034366269,740,11448310,5.588008635,6.480723902,6.463836147,,,,5.887069008,5.027545535,6.746592482,4.559205882,3.661416697,5.610495154,4.404577158,3.673414326,5.13573999,8.797402709,7.705966711,9.888838707,,,,2.37589653,272,11448310,2.09353915,2.658253909,,,,0.6213514,0.374094132,0.970317179,7.186387515,6.024649941,8.34812509,1.431930685,1.04835323,1.909994867,2.00738365,1.520372773,2.600798354,,,,4.025926221,649,16120514,3.716184622,4.335667819,,,,3.436142563,2.88066237,3.991622756,5.20482911,4.371882976,6.037775244,3.914049248,3.337421252,4.490677243,4.116903186,3.490617218,4.743189154,,,,0.744160782,,184100,,,137,0,0.567579654,794498,1399800,,,0.614,,,,,735.9820055,,,,,0.451913978,369150,816859,0.44597097,0.457856986,0.234730374,185337,789574,0.229040804,0.240419944,0.89163246,728338,816859,0.887976636,0.895288285,2278029,,,,,0.194286816,442591,2278029,,,0.17997576,409990,2278029,,,0.178080262,405672,2278029,,,0.014211408,32374,2278029,,,0.279147456,635906,2278029,,,0.002359935,5376,2278029,,,0.281908615,642196,2278029,,,0.23878581,543961,2278029,,,0.145441759,323460,2223983,0.14201862,0.148864899,0.510810003,1163640,2278029,,,3.07633E-05,74,2405464,, -36,083,36083,NY,Rensselaer County,2024,1,6849.147433,2147,443510,6389.92124,7308.373625,0,,,,2,4423.844476,2355.510868,7564.908783,1,13689.18378,11419.94331,15958.42424,,6577.471287,4677.225074,8991.619778,,6318.801091,5841.243002,6796.35918,,,,,2,,0.128,,,0.107,0.152,3.421258116,,,2.766795034,4.078454081,5.126789044,,,4.399546929,5.89336909,0.08223387,910,11066,0.077115259,0.08735248,0,,,,0.103448276,0.075737647,0.131158905,0.143207856,0.12356785,0.162847863,0.08650519,0.067793171,0.105217209,0.070686071,0.065130775,0.076241367,,,,0.102310231,0.068186428,0.136434034,0.173,,,0.138,0.213,0.366,,,0.319,0.414,8.5,0.040964466,0.093,,,0.209,,,0.176,0.248,0.781654565,125948,161130,,,0.20088257,,,0.171335019,0.232754589,0.25,10,40,0.167808311,0.33763196,300.2,481,160232,,,12.40480724,417,33616,11.21417383,13.59544064,,,,,,,23.23968089,18.01043348,29.51357323,23.57414449,18.0741614,30.22098931,9.654897267,8.438442274,10.87135226,,,,23.15914489,16.46841597,31.65931346,0.045782773,5833,127406,0.038633837,0.052931709,0.000480553,77,160232,,,2080.935065,0.000412879,66,159853,,,2422.015152,0.002020606,323,159853,,,494.9009288,2517,,,,,,,4186,622,2469,0.43,,,,,,0.36,0.33,0.32,0.43,0.52,,,,,,0.5,0.43,0.4,0.53,0.924196322,104790,113385,0.916323313,0.932069332,0.71500911,30217,42261,0.680213362,0.749804858,0.030513951,2512,82323,,,0.148,4335,,0.106297872,0.189702128,,,,0.180124224,0.005085044,0.355163404,0.406847134,0.305690528,0.50800374,0.273148148,0.17989104,0.366405257,0.100310782,0.076000325,0.124621239,4.418968829,149560,33845,4.095998821,4.741938836,0.250731451,7627,30419,0.2211002,0.280362702,8.362873833,134,160232,,,57.3963412,457,796218,52.13396151,62.65872089,,,,,,,85.50358046,63.04359048,113.3653429,59.65163446,38.60339262,88.05757981,56.92975112,51.15996712,62.69953513,,,,7.4,,,,,1,,,,,0.121075548,7925,65455,0.110046871,0.132104225,0.102489019,0.092454585,0.112523453,0.01397907,0.009433202,0.018524937,0.010312428,0.006232913,0.014391944,0.750538125,59276,78978,0.737579954,0.763496295,,,,0.612978369,0.535088703,0.690868036,0.62312187,0.560003408,0.686240332,0.581167109,0.50484054,0.657493677,0.739716538,0.723260806,0.756172269,0.294,,78978,0.273604987,0.314395013,78.26990264,,,77.85487037,78.68493491,,,,93.51003484,74.96936957,112.0507001,71.43704408,69.5891775,73.28491065,81.79924553,77.75158574,85.84690531,78.68511704,78.25483701,79.11539707,,,,354.1292812,2147,443510,338.3940575,369.8645049,,,,240.9978256,147.2077328,372.2015956,682.930081,588.1330548,777.7271072,290.6726571,212.0186307,388.9428846,338.4592749,321.9680182,354.9505315,,,,42.68570029,61,142905,32.65117845,54.83156777,,,,,,,113.9357687,65.12413625,185.0245503,83.73296795,41.79919591,149.8214091,28.13594513,18.84308403,40.40791051,,,,5.359535507,60,11195,4.089890214,6.898784583,,,,,,,,,,,,,2.885655886,1.848894175,4.293627221,,,,,,,0.1,,,0.086,0.116,0.151,,,0.13,0.173,0.091,,,0.078,0.104,241.1,334,138545,,,0.093,15010,,,,0.040964466,6530.923817,159429,,,23.26780616,111,477054,18.93918061,27.59643172,,,,,,,32.17691453,16.0625998,57.57338827,,,,24.21492659,19.59132164,29.60149205,,,,0.359,,,0.342,0.376,0.053144787,5145,96811,0.044804362,0.061485213,0.023574783,758,32153,0.016425847,0.030723719,0.001094756,175,159853,,,913.4457143,0.906899199,1358.535,1498,,,0.045547178,447,9814,0.027134169,0.063960186,,,,,,,,,,,,,,,,,,,,,0.186843903,,,,,8546.661509,,,,,0.890173751,60506,67971,0.849581744,0.930765757,80040,,,73291.40426,86788.59575,130774,85393.74468,176154.2553,93912,89056.68085,98767.31915,45150,40541.31915,49758.68085,80483,55123.34043,105842.6596,87025,82882.19149,91167.80851,,,,,,0.405327574,7319,18057,,,59.72083768,,,,,0.380434783,,80040,,,6.497486821,53,8157,,,3.761573556,42,1116554,2.711011356,5.084554691,,,,,,,31.09049926,19.92026952,46.26019845,,,,,,,,,,10.49395441,83,796218,8.295035488,13.09693003,10.42428079,,,,,,,,,,,,,11.0478053,8.561897364,14.03032221,,,,5.651718499,45,796218,4.122402255,7.562444016,,,,,,,17.81324593,8.542143817,32.75919349,,,,4.414338991,2.956352103,6.339727139,,,,6.090166709,68,1116554,4.72925275,7.720737479,,,,,,,,,,,,,6.269151989,4.760429943,8.104332713,,,,7.841726619,,13900,,,83,26,0.644906847,79962,123990,,,0.635,,,,,99.69921095,,,,,0.628056531,41507,66088,0.614929099,0.641183962,0.116511009,7535,64672,0.105587333,0.127434686,0.896168745,59226,66088,0.884261765,0.908075725,159853,,,,,0.18847316,30128,159853,,,0.187103151,29909,159853,,,0.076914415,12295,159853,,,0.003672124,587,159853,,,0.030884625,4937,159853,,,0.000638086,102,159853,,,0.056864745,9090,159853,,,0.810757383,129602,159853,,,0.008229027,1259,152995,0.005871546,0.010586509,0.500272125,79970,159853,,,0.331316328,53385,161130,, -36,085,36085,NY,Richmond County,2024,1,6373.549225,5812,1346268,6119.411622,6627.686829,0,,,,2,3292.444297,2721.449893,3863.4387,,10785.13977,9718.124281,11852.15527,,5988.950847,5446.233231,6531.668463,,5973.579898,5646.662967,6300.496828,,,,,2,,0.135,,,0.116,0.156,3.097909564,,,2.540285054,3.745852892,4.715449617,,,4.053910514,5.459177907,0.080198781,2921,36422,0.077409418,0.082988144,0,,,,0.07753051,0.069422165,0.085638855,0.134945587,0.124531543,0.14535963,0.089980031,0.083901295,0.096058767,0.063629139,0.060146852,0.067111426,,,,0.105793451,0.075537617,0.136049285,0.16,,,0.133,0.193,0.32,,,0.279,0.365,8.9,0.001567635,0.094,,,0.252,,,0.219,0.291,0.992020123,491791,495747,,,0.147049303,,,0.122795074,0.173318279,0.163265306,8,49,0.095276894,0.243331948,303.3,1497,493494,,,7.501139539,757,100918,6.966777774,8.035501305,,,,,,,17.13381952,14.72894205,19.53869699,16.15041581,14.57161714,17.72921449,2.323455474,1.911158155,2.735752792,,,,6.705783739,3.832934809,10.88977267,0.049406398,20038,405575,0.043448952,0.055363845,0.000812573,401,493494,,,1230.658354,0.000629158,309,491133,,,1589.427185,0.002579749,1267,491133,,,387.6345699,2585,,,,,,1418,3984,2959,2503,0.4,,,,,,0.33,0.33,0.34,0.41,0.46,,,,,,0.49,0.33,0.39,0.47,0.886748163,305608,344639,0.879705827,0.893790498,0.701493704,89747,127937,0.678768678,0.724218729,0.054957105,12479,227068,,,0.145,14918,,0.109255319,0.180744681,,,,0.167606979,0.114590957,0.220623,0.302931596,0.242184318,0.363678874,0.174775392,0.143781835,0.205768949,0.084193728,0.06927348,0.099113977,4.957517117,187528,37827,4.641311824,5.27372241,0.207286727,22075,106495,0.190082176,0.224491279,3.89062481,192,493494,,,51.69538795,1241,2400601,48.81916876,54.57160714,,,,19.82684555,14.7623888,26.0686403,62.4435351,52.13649427,72.75057594,35.53668213,30.01292739,41.06043686,57.03524498,53.1194443,60.95104567,,,,7.6,,,,,0,,,,,0.226459679,37855,167160,0.214543533,0.238375825,0.194139015,0.183381897,0.204896134,0.045435511,0.040677435,0.050193586,0.005683178,0.004013312,0.007353043,0.538949615,119172,221119,0.527887681,0.550011549,,,,0.498356918,0.472007334,0.524706502,0.531130799,0.485857632,0.576403966,0.522216394,0.482908424,0.561524365,0.668726113,0.653319269,0.684132957,0.523,,221119,0.500081245,0.545918756,79.18265673,,,78.9343958,79.43091767,,,,85.70539265,84.64329196,86.76749333,75.74001551,74.65108805,76.82894298,80.91682103,80.08884156,81.7448005,79.42232281,79.11902202,79.72562361,,,,327.6857911,5812,1346268,318.9392982,336.4322839,,,,164.7034926,146.5191511,182.8878341,535.5975811,496.5067432,574.6884191,303.7307921,281.1499025,326.3116817,311.7214338,300.9181669,322.5247008,,,,30.143605,139,461126,25.13238048,35.15482953,,,,27.00905842,14.38118609,46.18631247,62.43831699,42.42380708,88.62620698,21.39714819,13.84710612,31.5864117,25.88103352,19.74995512,33.31402036,,,,4.321356743,159,36794,3.649653215,4.993060271,,,,5.063291139,3.092789769,7.819842507,7.485380117,5.119994459,10.56712329,3.687060721,2.521946804,5.205029621,3.134304968,2.391804887,4.034471786,,,,,,,0.095,,,0.083,0.109,0.146,,,0.128,0.165,0.109,,,0.096,0.124,510.9,2138,418516,,,0.094,46290,,,,0.001567635,734.7976995,468730,,,29.68932098,429,1444964,26.87982969,32.49881227,,,,,,,30.39671419,21.8132069,41.23657508,18.18377488,13.45245676,24.03991472,35.53196171,31.52447782,39.5394456,,,,0.387,,,0.375,0.4,0.059176407,17766,300221,0.050835981,0.067516832,0.022587362,2506,110947,0.016629915,0.028544808,0.001510792,742,491133,,,661.9043127,0.833702132,4027.615,4831,,,0.061446816,1506,24509,0.045443009,0.077450622,,,,,,,,,,,,,,,,,,,,,0.151548034,,,,,,,,,,0.85304359,66145,77540,0.816852595,0.889234586,91582,,,86607.53192,96556.46809,90896,85206.6383,96585.3617,92589,82821.17021,102356.8298,64882,59040.12766,70723.87234,78986,69355.19149,88616.80851,106406,102377.5745,110434.4255,,,,,,0.620644952,38300,61710,,,73.2794053,,,,,0.40839903,,91582,,,7.515265383,208,27677,,,3.133230325,105,3351174,2.533917263,3.732543386,,,,,,,15.09253611,11.12804471,20.01051327,3.699360976,2.345077524,5.550857833,1.239300499,0.80200994,1.829452011,,,,6.842661127,173,2400601,5.791762474,7.893559781,7.206528698,,,,5.906466711,3.376056064,9.591731898,,,,2.826090494,1.504774164,4.832700814,8.250465542,6.736755549,9.764175535,,,,3.499123761,84,2400601,2.79103815,4.332153314,,,,,,,11.07154878,7.164922609,16.34379006,3.352517182,1.876378417,5.529467256,2.729293932,1.940794791,3.731034652,,,,4.088119567,137,3351174,3.40354718,4.772691953,,,,2.959744515,1.419312539,5.443075542,5.659701042,3.354297531,8.944767691,4.825253446,3.255578238,6.888349328,3.767473517,2.968340625,4.715554905,,,,1.157894737,,47500,,,55,0,0.645990335,217899,337310,,,0.641,,,,,454.1686825,,,,,0.686247059,116662,170000,0.674236037,0.698258081,0.20247949,33269,164308,0.19089337,0.21406561,0.880982353,149767,170000,0.871086829,0.890877877,491133,,,,,0.21348596,104850,491133,,,0.174018036,85466,491133,,,0.092174625,45270,491133,,,0.007444012,3656,491133,,,0.137492288,67527,491133,,,0.00116669,573,491133,,,0.188399069,92529,491133,,,0.565765282,277866,491133,,,0.058977089,27472,465808,0.055148647,0.062805531,0.50912482,250048,491133,,,0,0,495747,, -36,087,36087,NY,Rockland County,2024,1,5417.042617,3001,919916,5135.327033,5698.758201,0,,,,2,3174.813727,2332.6887,4016.938754,,7552.516453,6491.711522,8613.321384,,5915.487413,5258.625484,6572.349342,,5125.61449,4770.931208,5480.297771,,,,,2,,0.138,,,0.116,0.16,3.080199121,,,2.51012407,3.733612744,4.197449584,,,3.536301795,4.931762285,0.05793643,2355,40648,0.055665245,0.060207615,0,,,,0.098916968,0.083193476,0.114640459,0.114896989,0.102455779,0.127338199,0.06889087,0.063289176,0.074492564,0.047569767,0.045077534,0.050061999,,,,0.056994819,0.024286958,0.08970268,0.149,,,0.118,0.182,0.266,,,0.224,0.308,8.7,0.043583735,0.082,,,0.261,,,0.222,0.304,0.959551206,324644,338329,,,0.150958741,,,0.125407615,0.176777392,0.108108108,8,74,0.059440284,0.169678701,295.7,1003,339227,,,11.41275315,940,82364,10.68315694,12.14234935,,,,,,,6.522526875,4.899922934,8.510482715,29.17688486,26.52205923,31.8317105,7.700371676,6.949480369,8.451262984,,,,,,,0.051516517,14524,281929,0.04555907,0.057473963,0.000848989,288,339227,,,1177.871528,0.000940942,319,339022,,,1062.76489,0.003291822,1116,339022,,,303.7831541,2445,,,,,,1487,3342,2945,2349,0.45,,,,,,0.42,0.4,0.42,0.46,0.54,,,,,,0.55,0.36,0.44,0.57,0.88612202,184791,208539,0.878004452,0.894239588,0.645190788,49390,76551,0.618778983,0.671602593,0.028482502,4539,159361,,,0.231,22495,,0.195255319,0.266744681,0.111607143,0,0.320847599,0.026276649,0.001458259,0.051095038,0.087912088,0.047679093,0.128145083,0.228131161,0.184316039,0.271946283,0.31523527,0.292775937,0.337694602,5.417417724,212184,39167,5.1166319,5.718203549,0.126147096,12248,97093,0.10944838,0.142845812,10.67132038,362,339227,,,47.5147709,782,1645804,44.18448641,50.84505538,,,,13.85206,7.573050101,23.24140294,37.406281,29.10431937,47.34004266,36.08662113,29.31193714,42.86130513,56.76759868,52.17130482,61.36389254,,,,8.6,,,,,1,,,,,0.256264518,25925,101165,0.244046133,0.268482904,0.21035,0.197566578,0.223133422,0.066623832,0.05924527,0.074002395,0.007561904,0.004928894,0.010194913,0.687655968,99477,144661,0.674885093,0.700426843,,,,0.728794503,0.698192587,0.75939642,0.671895071,0.633718897,0.710071246,0.644295302,0.603790976,0.684799628,0.691973365,0.673371428,0.710575303,0.423,,144661,0.404274275,0.441725725,80.96485718,,,80.65609144,81.27362292,,,,90.66606048,88.09440608,93.23771488,78.32487303,77.29759931,79.35214676,81.72734196,80.61147594,82.84320797,80.93921301,80.57373397,81.30469206,,,,278.4294007,3001,919916,268.1589498,288.6998515,,,,159.3844655,129.9026288,188.8663022,387.6097539,352.7076919,422.511816,287.969675,260.3269962,315.6123537,269.7679612,256.968987,282.5669354,,,,31.8324302,131,411530,26.38125401,37.28360639,,,,,,,51.1131304,30.29288045,80.78078222,40.10758269,27.77566695,56.04632673,28.73867469,22.64280697,35.97073683,,,,3.209258838,127,39573,2.651098521,3.767419155,,,,,,,,,,4.196721312,2.87055427,5.924518306,2.460666617,1.903079383,3.130571264,,,,,,,0.098,,,0.084,0.112,0.138,,,0.119,0.158,0.102,,,0.088,0.117,253.1,678,267928,,,0.082,27720,,,,0.043583735,13584.48372,311687,,,18.46170608,183,991241,15.78683806,21.13657411,,,,,,,10.03878622,5.011325911,17.96216155,17.37968641,11.88769264,24.53493158,21.88412677,18.20609193,25.56216161,,,,0.313,,,0.3,0.327,0.067191621,12407,184651,0.057659706,0.076723536,0.022992342,2342,101860,0.017034896,0.028949789,0.000849502,288,339022,,,1177.159722,0.862009604,2961.865,3436,,,0.059043425,1153,19528,0.04341174,0.07467511,,,,,,,,,,,,,,,,,,,,,0.153248418,,,,,10719.50625,,,,,0.859823441,69055,80313,0.822762917,0.896883965,99839,,,91418.74468,108259.2553,74688,35198.46809,114177.5319,148750,122486,175014,102705,87631.46809,117778.5319,82602,74619.02128,90584.97872,109012,103923.1489,114100.8511,,,,,,0.41022718,15114,36843,,,55.96804845,,,,,0.401015635,,99839,,,3.187828292,88,27605,,,1.870686816,43,2298621,1.353825325,2.519802865,,,,,,,5.398610244,2.951470457,9.057950657,2.642769623,1.319261074,4.728644863,1.246609914,0.738820041,1.970181109,,,,6.489173197,107,1645804,5.222169671,7.756176722,6.501381696,,,,,,,,,,4.776259412,2.611225466,8.013751712,8.011572956,6.312208265,10.02767822,,,,2.734225947,45,1645804,1.994363168,3.658609439,,,,,,,,,,,,,2.809318024,1.881444371,4.034649299,,,,4.611460524,106,2298621,3.733567427,5.48935362,,,,,,,5.398610244,2.951470457,9.057950657,5.285539245,3.312419305,8.002369937,4.640159123,3.596059586,5.892838062,,,,3.04136253,,41100,,,60,65,0.728020776,151381,207935,,,0.68,,,,,195.5680689,,,,,0.682742082,70035,102579,0.671459041,0.694025123,0.223043383,22303,99994,0.208192814,0.237893951,0.872205812,89470,102579,0.864203038,0.880208586,339022,,,,,0.292638826,99211,339022,,,0.158892343,53868,339022,,,0.108302706,36717,339022,,,0.006421412,2177,339022,,,0.06353275,21539,339022,,,0.001427636,484,339022,,,0.19442691,65915,339022,,,0.619697247,210091,339022,,,0.078534742,24297,309379,0.072964595,0.08410489,0.504129526,170911,339022,,,0.003898572,1319,338329,, -36,089,36089,NY,St. Lawrence County,2024,1,7371.034001,1502,298931,6740.971554,8001.096447,0,,,,2,,,,2,19045.65776,6989.420729,41454.37879,1,,,,2,7528.538889,6857.581583,8199.496196,,,,,2,,0.155,,,0.132,0.183,3.73605293,,,3.031728411,4.475951129,5.059206905,,,4.263868535,5.852122598,0.071533275,488,6822,0.065417698,0.077648852,0,,,,,,,,,,,,,0.073321695,0.066885457,0.079757933,,,,,,,0.22,,,0.178,0.263,0.397,,,0.351,0.446,7.6,0.072891816,0.118,,,0.253,,,0.212,0.295,0.580019354,62935,108505,,,0.208956692,,,0.178956118,0.240581372,0.215686275,11,51,0.144607539,0.293518274,249.9,270,108051,,,9.994890791,313,31316,8.887599317,11.10218226,,,,,,,,,,,,,10.90516466,9.67725339,12.13307593,,,,,,,0.056574282,4452,78693,0.048233857,0.064914708,0.000546038,59,108051,,,1831.372881,0.000399135,43,107733,,,2505.418605,0.002376245,256,107733,,,420.8320313,3247,,,,,1556,,,,3232,0.51,,,,,0.42,0.4,,,0.51,0.48,,,,,0.32,0.61,0.33,0.3,0.48,0.888001343,63477,71483,0.878134117,0.897868569,0.568450892,13636,23988,0.531948149,0.604953636,0.041151401,1767,42939,,,0.219,4513,,0.164191489,0.273808511,,,,0.009615385,0,0.804433574,0.214659686,0.000675939,0.428643432,0.230038023,0.083163166,0.37691288,0.231155513,0.200190198,0.262120828,5.325391018,116445,21866,4.859807703,5.790974333,0.179903283,3869,21506,0.147635277,0.212171289,9.162340006,99,108051,,,59.00348842,319,540646,52.52850861,65.47846823,,,,,,,81.72605427,39.19081968,150.2971236,,,,60.15200956,53.33379572,66.9702234,,,,7.3,,,,,0,,,,,0.153846154,6450,41925,0.138101931,0.169590376,0.12402746,0.109060018,0.138994902,0.025163983,0.018798819,0.031529148,0.017292785,0.012170921,0.022414649,0.772933946,33829,43767,0.752285493,0.793582398,,,,0.408602151,0.238541673,0.578662628,0.432183908,0.215400668,0.648967149,0.526027397,0.398142847,0.653911947,0.785079076,0.761703045,0.808455108,0.26,,43767,0.236621291,0.28337871,77.62893212,,,77.0877435,78.17012074,,,,,,,68.91811528,56.22157897,81.61465159,,,,77.43501865,76.87180224,77.99823507,,,,370.7376492,1502,298931,350.8977797,390.5775186,,,,,,,1019.312102,604.1089523,1610.952573,,,,375.9232382,355.1656715,396.680805,,,,57.6427821,62,107559,44.19439051,73.89544518,,,,,,,,,,,,,57.38939731,43.35133398,74.52490598,,,,6.520853145,48,7361,4.807962345,8.645705228,,,,,,,,,,,,,6.965475469,5.099603484,9.290968157,,,,,,,0.118,,,0.101,0.135,0.172,,,0.15,0.195,0.107,,,0.094,0.124,191.2,178,93074,,,0.118,12870,,,,0.072891816,8159.801475,111944,,,13.93292381,45,322976,10.16277023,18.64334827,,,,,,,,,,,,,14.145796,10.19504551,19.12100677,,,,0.338,,,0.322,0.353,0.066371913,3813,57449,0.055648508,0.077095317,0.030912594,690,22321,0.021380679,0.040444508,0.001540846,166,107733,,,648.9939759,0.866227837,977.105,1128,,,0.109878918,971,8837,0.072113565,0.147644272,,,,,,,,,,,,,,,,,,,,,0.144820354,,,,,11442.76818,,,,,0.839329043,47736,56874,0.784318291,0.894339795,59451,,,55666.82979,63235.17021,15375,6530.574468,24219.42553,,,,89583,40062.31915,139103.6809,63250,52818.51064,73681.48936,58464,55598.46809,61329.53192,,,,,,0.470755657,6616,14054,,,67.92137933,,,,,0.42831912,,59451,,,2.727768685,15,5499,,,1.312868342,10,761691,0.629571401,2.414411624,,,,,,,,,,,,,,,,,,,12.02918667,69,540646,9.243557324,15.39055525,12.76251003,,,,,,,,,,,,,11.91290299,9.022716385,15.43454759,,,,6.658700888,36,540646,4.66367224,9.218448761,,,,,,,,,,,,,6.638850553,4.569879248,9.323414475,,,,8.664931055,66,761691,6.70145705,11.02391684,,,,,,,,,,,,,9.28198823,7.163642556,11.83065595,,,,6.534653465,,10100,,,15,51,0.533683094,45267,84820,,,0.565,,,,,26.0177041,,,,,0.713084857,29521,41399,0.697663581,0.728506133,0.135905579,5435,39991,0.11833157,0.153479588,0.837314911,34664,41399,0.822762235,0.851867587,107733,,,,,0.196253701,21143,107733,,,0.190489451,20522,107733,,,0.018638672,2008,107733,,,0.011073673,1193,107733,,,0.011602759,1250,107733,,,0.000733294,79,107733,,,0.023586088,2541,107733,,,0.922456443,99379,107733,,,0.008417183,870,103360,0.005373993,0.011460372,0.488671066,52646,107733,,,0.669351643,72628,108505,, -36,091,36091,NY,Saratoga County,2024,1,5102.868248,2523,643921,4767.431824,5438.304672,0,,,,2,,,,2,7135.234457,4571.679351,10616.66328,1,2316.160739,1414.771152,3577.12241,1,5318.333655,4949.967361,5686.699948,,,,,2,,0.104,,,0.086,0.124,3.108783966,,,2.546698991,3.707575023,4.759350234,,,4.106860464,5.430264566,0.065248813,948,14529,0.061233009,0.069264617,0,,,,0.068874172,0.050810128,0.086938216,0.091836735,0.058824678,0.124848792,0.06885759,0.049224457,0.088490723,0.064321927,0.060042355,0.068601498,,,,0.06122449,0.027660661,0.094788319,0.153,,,0.119,0.19,0.292,,,0.255,0.333,9.1,0.035737478,0.068,,,0.186,,,0.155,0.219,0.863015851,203248,235509,,,0.213651937,,,0.186163316,0.243577447,0.213333333,16,75,0.155026826,0.276376206,163.9,389,237359,,,5.506399613,262,47581,4.839634065,6.173165162,,,,,,,,,,12.59916006,8.302925866,18.3311164,5.306589421,4.602150551,6.01102829,,,,5.931198102,2.844240033,10.90768449,0.040783342,7772,190568,0.034825896,0.046740789,0.00069515,165,237359,,,1438.539394,0.000682588,163,238797,,,1465.01227,0.002261335,540,238797,,,442.2166667,2309,,,,,,,1218,,2320,0.5,,,,,,0.37,0.38,0.34,0.5,0.55,,,,,,0.52,0.44,0.44,0.56,0.939917455,160552,170815,0.933569236,0.946265673,0.777353361,45179,58119,0.746548821,0.808157902,0.026517359,3230,121807,,,0.075,3294,,0.052361702,0.097638298,0.79661017,0.510888399,1,0.013734467,0,0.066173913,0.227272727,0.058748565,0.39579689,0.169676607,0.084978205,0.254375008,0.064660811,0.051222382,0.07809924,4.140196817,175859,42476,3.940998544,4.33939509,0.173228864,7915,45691,0.148378384,0.198079343,7.16214679,170,237359,,,45.95905843,532,1157552,42.05360577,49.86451109,,,,,,,48.29518014,23.15941609,88.81655579,,,,48.8276566,44.58573086,53.06958234,,,,7.5,,,,,0,,,,,0.101720542,9755,95900,0.09260691,0.110834175,0.092110092,0.082809236,0.101410948,0.010260688,0.007063677,0.013457699,0.003441085,0.001587174,0.005294995,0.779374671,96093,123295,0.768867677,0.789881664,,,,0.690245478,0.613912419,0.766578538,0.658469945,0.514468168,0.802471723,0.662165605,0.602782215,0.721548995,0.754349636,0.742023119,0.766676153,0.36,,123295,0.341695993,0.378304007,80.72749213,,,80.38586795,81.0691163,,,,91.06073497,85.44283858,96.67863137,77.760534,74.77341911,80.74764888,88.66735847,83.31708728,94.01762965,80.45083888,80.09229566,80.80938211,,,,268.7537116,2523,643921,257.6845179,279.8229054,,,,,,,380.0168621,277.1869069,508.4924603,147.7082224,96.48791485,216.4267691,276.2832635,264.5116293,288.0548977,,,,24.59395382,50,203302,18.25410657,32.42406207,,,,,,,,,,,,,27.66395214,20.39721448,36.67838707,,,,3.271091727,48,14674,2.411844816,4.336993061,,,,,,,,,,,,,3.12426775,2.232022685,4.254365927,,,,,,,0.089,,,0.076,0.104,0.141,,,0.122,0.162,0.075,,,0.064,0.086,117.8,242,205513,,,0.068,15990,,,,0.035737478,7848.200309,219607,,,14.19314142,99,697520,11.53548498,17.27964041,,,,,,,,,,,,,15.14093823,12.24992319,18.50901183,,,,0.317,,,0.298,0.335,0.046507124,6724,144580,0.039358188,0.05365606,0.023854726,1156,48460,0.016705789,0.031003662,0.001076228,257,238797,,,929.1712062,0.91764275,2442.765,2662,,,0.046727366,544,11642,0.02846943,0.064985303,,,,,,,,,,,,,,,,,,,,,0.074416488,,,,,10402.94418,,,,,0.762644906,61775,81001,0.720442788,0.804847024,93341,,,87830.3617,98851.6383,125292,21539.48936,229044.5106,169276,147217.9575,191334.0426,75123,55623.08511,94622.91489,80038,64511.70213,95564.29787,96520,93957.10638,99082.89362,,,,,,0.237886179,7315,30750,,,54.0554354,,,,,0.330090743,,93341,,,6.747874858,77,11411,,,0.807025342,13,1610854,0.429707006,1.380037913,,,,,,,,,,,,,0.825062086,0.426321619,1.441217424,,,,10.30648605,125,1157552,8.421768516,12.19120359,10.79865095,,,,,,,,,,,,,11.0235841,8.953417938,13.09375026,,,,3.628346718,42,1157552,2.614993169,4.904470709,,,,,,,,,,,,,3.837143937,2.741311885,5.225100961,,,,6.518281607,105,1610854,5.271488074,7.76507514,,,,,,,,,,,,,6.669251861,5.408313984,8.135921686,,,,4.549763033,,21100,,,57,39,0.747459145,133556,178680,,,0.67,,,,,54.67696898,,,,,0.720554014,70909,98409,0.708011144,0.733096884,0.104578333,10135,96913,0.094428687,0.11472798,0.912802691,89828,98409,0.903115983,0.922489399,238797,,,,,0.187895995,44869,238797,,,0.202020963,48242,238797,,,0.019937436,4761,238797,,,0.002525157,603,238797,,,0.030494521,7282,238797,,,0.000569521,136,238797,,,0.037630289,8986,238797,,,0.89185375,212972,238797,,,0.006400952,1442,225279,0.004551392,0.008250512,0.502879014,120086,238797,,,0.284846864,67084,235509,, -36,093,36093,NY,Schenectady County,2024,1,7942.484649,2107,433476,7435.614705,8449.354594,0,,,,2,4912.438023,3402.006136,6864.639751,,14153.43803,12256.48624,16050.38982,,9944.122133,7915.214971,11973.0293,,6910.216465,6357.620863,7462.812066,,,,,2,,0.138,,,0.117,0.162,3.154430596,,,2.557495373,3.765378278,5.020154796,,,4.294031729,5.735231712,0.089501271,1127,12592,0.084515148,0.094487394,0,,,,0.105846774,0.08670223,0.124991318,0.139161925,0.123732096,0.154591753,0.113636364,0.094881049,0.132391678,0.070280374,0.064687609,0.075873139,,,,0.114688129,0.086673475,0.142702782,0.173,,,0.14,0.208,0.358,,,0.314,0.404,8.7,0.029814723,0.09,,,0.235,,,0.197,0.274,0.892788227,141115,158061,,,0.176683018,,,0.149944981,0.20591709,0.409090909,18,44,0.333681102,0.48161079,467.5,739,158089,,,15.80451217,531,33598,14.46023165,17.1487927,,,,6.625891947,3.528008405,11.33047702,29.5404814,24.55729933,34.52366347,21.53243848,16.99306372,26.91185361,11.10166289,9.682245321,12.52108045,,,,34.3980344,26.81495534,43.45984709,0.050313091,6444,128078,0.043164154,0.057462027,0.000797019,126,158089,,,1254.674603,0.000799535,128,160093,,,1250.726563,0.002692185,431,160093,,,371.4454756,2158,,,,,,1031,3884,,2098,0.44,,,,,,0.27,0.36,0.21,0.45,0.53,,,,,,0.42,0.37,0.34,0.54,0.916411379,100512,109680,0.908300268,0.92452249,0.707655244,28786,40678,0.671119522,0.744190966,0.033029569,2577,78021,,,0.146,4847,,0.099531915,0.192468085,,,,0.099700897,0.025853159,0.173548636,0.359171989,0.261855422,0.456488556,0.345379689,0.260162785,0.430596593,0.063450029,0.041376853,0.085523205,4.455341232,142513,31987,4.12137323,4.789309235,0.248830022,8454,33975,0.214883591,0.282776453,7.464149941,118,158089,,,59.00000128,460,779661,53.60825836,64.3917442,,,,38.69070649,21.65489472,63.81443646,66.8888607,50.79151628,86.46936345,48.22597313,32.04580892,69.69995857,62.26572962,55.76093152,68.77052771,,,,7.3,,,,,1,,,,,0.14335421,8240,57480,0.12941999,0.15728843,0.132095397,0.117656929,0.146533866,0.011482255,0.007915396,0.015049113,0.005915101,0.003483989,0.008346213,0.733037404,54991,75018,0.71811251,0.747962299,,,,0.650986753,0.560676453,0.741297053,0.606656859,0.551989275,0.661324443,0.576294592,0.498595181,0.653994002,0.772599934,0.753596488,0.791603381,0.314,,75018,0.291805012,0.336194988,77.6690558,,,77.2295841,78.1085275,,,,85.48512984,81.08252081,89.88773888,72.22269363,70.53667123,73.90871603,77.16260862,74.32711608,79.99810116,78.45610225,77.97783651,78.93436799,,,,379.0078097,2107,433476,362.1360522,395.8795672,,,,242.7389881,183.8481391,314.4965142,659.0153558,585.1048157,732.9258958,492.305715,402.0933207,582.5181093,347.0161147,328.5812533,365.450976,,,,46.66386684,70,150009,36.37677347,58.95698847,,,,,,,94.82096898,58.69567429,144.9439235,,,,34.59010723,23.50229966,49.09789614,,,,7.100591716,90,12675,5.709714251,8.727832725,,,,,,,14.29300664,9.49759911,20.65737414,,,,4.863221885,3.474357014,6.622327898,,,,,,,0.1,,,0.085,0.116,0.151,,,0.131,0.172,0.095,,,0.082,0.109,330.3,442,133824,,,0.09,14170,,,,0.029814723,4613.142629,154727,,,24.96021299,117,468746,20.43737088,29.48305511,,,,,,,31.75196115,18.49668747,50.83796566,36.31589239,19.33668322,62.101282,24.05209506,19.10083529,29.89455804,,,,0.332,,,0.318,0.346,0.060369906,5686,94186,0.050837992,0.069901821,0.023294369,829,35588,0.016145433,0.030443305,0.001542853,247,160093,,,648.1497976,0.844364432,1448.085,1715,,,0.070079291,601,8576,0.03902505,0.101133533,,,,,,,,,,,,,,,,,,,,,0.171696877,,,,,9078.035833,,,,,0.846631815,56682,66950,0.79958792,0.89367571,74206,,,69248.21277,79163.78723,64083,30272.10638,97893.89362,74250,60373.91489,88126.08511,45759,40220.95745,51297.04255,46325,35035.6383,57614.3617,83214,79672.89362,86755.10638,,,,,,0.427266641,8935,20912,,,58.35210241,,,,,0.418227637,,74206,,,5.71675116,53,9271,,,3.030809557,33,1088818,2.086269842,4.256383461,,,,,,,14.40433825,8.391057846,23.06274091,,,,,,,,,,9.231135474,73,779661,7.182374398,11.68259275,9.363043682,,,,,,,,,,,,,10.53523837,7.958205846,13.68088333,,,,4.873913149,38,779661,3.449071025,6.689826594,,,,,,,11.53256219,5.530311836,21.20879247,,,,4.245390656,2.720101899,6.316804776,,,,6.612675397,72,1088818,5.174011239,8.327570268,,,,,,,9.32045416,4.652737135,16.67686707,,,,6.529956174,4.876883604,8.563168754,,,,9.466666667,,15000,,,94,48,0.64596598,75381,116695,,,0.656,,,,,134.6066531,,,,,0.639109499,40880,63964,0.62481835,0.653400648,0.146621999,9191,62685,0.131259787,0.161984211,0.872850353,55831,63964,0.858874441,0.886826266,160093,,,,,0.21138963,33842,160093,,,0.181150956,29001,160093,,,0.121385695,19433,160093,,,0.007695527,1232,160093,,,0.055873773,8945,160093,,,0.002673446,428,160093,,,0.080359541,12865,160093,,,0.700911345,112211,160093,,,0.009176023,1378,150174,0.006556812,0.011795233,0.507823578,81299,160093,,,0.088484826,13986,158061,, -36,095,36095,NY,Schoharie County,2024,1,7573.476443,454,83293,6372.961339,8773.991547,0,,,,2,,,,2,,,,2,,,,2,7568.039847,6350.678426,8785.401267,,,,,2,,0.139,,,0.117,0.165,3.769292566,,,3.082978368,4.526821185,4.809392037,,,4.073560702,5.584415724,0.048295455,85,1760,0.038279233,0.058311677,0,,,,,,,,,,,,,0.044978435,0.034895068,0.055061802,,,,,,,0.189,,,0.151,0.229,0.37,,,0.322,0.417,8.6,0.012665018,0.099,,,0.242,,,0.202,0.283,0.350104328,10403,29714,,,0.179603856,,,0.149597403,0.210083466,0.045454546,2,44,0.007576032,0.122311476,164.1,49,29863,,,10.5786388,83,7846,8.425826752,13.1138144,,,,,,,,,,,,,10.58979262,8.285860522,13.3360912,,,,,,,0.050193754,1101,21935,0.041853329,0.05853418,0.000301376,9,29863,,,3318.111111,0.000332635,10,30063,,,3006.3,0.001629911,49,30063,,,613.5306122,2696,,,,,,,,,2582,0.45,,,,,,,,,0.45,0.51,,,,,,0.58,,0.59,0.51,0.911385932,19603,21509,0.897648382,0.925123481,0.617398244,3868,6265,0.5582244,0.676572089,0.036085958,534,14798,,,0.137,689,,0.079808511,0.194191489,,,,,,,,,,0.148148148,0.03684777,0.259448527,0.095700416,0.070504875,0.120895957,4.117954583,126030,30605,3.665952328,4.569956837,0.177944862,923,5187,0.133539275,0.22235045,7.032113318,21,29863,,,62.13149873,96,154511,50.32671345,75.87319414,,,,,,,,,,,,,64.85853169,52.34920581,79.45608312,,,,6.4,,,,,1,,,,,0.118544601,1515,12780,0.101064067,0.136025135,0.096325563,0.078610174,0.114040952,0.019561815,0.012521787,0.026601844,0.007824726,0.004244268,0.011405184,0.752767528,10200,13550,0.72636525,0.779169806,,,,,,,,,,,,,0.741734446,0.709826486,0.773642407,0.477,,13550,0.43631452,0.51768548,79.32964462,,,78.23025346,80.42903579,,,,,,,,,,,,,79.24959052,78.13740645,80.36177458,,,,355.9621406,454,83293,319.7814966,392.1427846,,,,,,,,,,,,,359.1474567,321.6536429,396.6412705,,,,42.0360746,11,26168,20.98425698,75.21414901,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.111,,,0.095,0.128,0.166,,,0.144,0.19,0.094,,,0.08,0.107,114.3,30,26237,,,0.099,2970,,,,0.012665018,414.7666665,32749,,,22.82757571,21,91994,14.13062915,34.89437435,,,,,,,,,,,,,24.65280631,15.26047566,37.6844332,,,,0.339,,,0.321,0.357,0.056651129,948,16734,0.047119215,0.066183044,0.030109489,165,5480,0.020577574,0.039641404,0.000698533,21,30063,,,1431.571429,0.913719512,299.7,328,,,0.038229376,76,1988,0.017150919,0.059307834,,,,,,,,,,,,,,,,,,,,,0.041275851,,,,,11330.25467,,,,,0.812637372,49913,61421,0.733539664,0.891735079,67975,,,61953.21277,73996.78723,,,,85500,3151.404255,167848.5957,116250,90195.70213,142304.2979,58750,22887.3617,94612.6383,71892,68014.89362,75769.10638,,,,,,0.446006898,1681,3769,,,22.77923885,,,,,0.334946672,,67975,,,7.892659826,10,1267,,,,,,,,,,,,,,,,,,,,,,,,,,11.72566836,19,154511,6.830633921,18.77393092,12.29685912,,,,,,,,,,,,,11.79926487,6.744299371,19.16126693,,,,7.766437341,12,154511,4.013031505,13.56640307,,,,,,,,,,,,,8.368842798,4.324303195,14.61868417,,,,15.65680288,34,217158,10.84279114,21.87881271,,,,,,,,,,,,,15.85783451,10.84674707,22.38653079,,,,,,2600,,,-888,6,0.622808745,15810,25385,,,0.521,,,,,16.24845164,,,,,0.774240821,9510,12283,0.755798162,0.79268348,0.097686592,1157,11844,0.080336766,0.115036418,0.837906049,10292,12283,0.82020562,0.855606479,30063,,,,,0.169976383,5110,30063,,,0.241093703,7248,30063,,,0.014902039,448,30063,,,0.003658983,110,30063,,,0.007683864,231,30063,,,0.000332635,10,30063,,,0.040514919,1218,30063,,,0.919668696,27648,30063,,,0.001636148,47,28726,0,0.00545908,0.495825433,14906,30063,,,0.830382985,24674,29714,, -36,097,36097,NY,Schuyler County,2024,1,7233.412436,282,48612,5757.236943,8709.587928,0,,,,2,,,,2,,,,2,,,,2,7413.305437,5898.212437,8928.398437,,,,,2,,0.147,,,0.123,0.174,3.484631801,,,2.804116296,4.20768113,5.220750121,,,4.426157853,6.041744381,0.053667263,60,1118,0.040456989,0.066877537,0,,,,,,,,,,,,,0.049102927,0.036088396,0.062117459,,,,,,,0.201,,,0.162,0.244,0.348,,,0.303,0.396,8.4,0.003555403,0.114,,,0.258,,,0.218,0.302,0.491786792,8802,17898,,,0.179145354,,,0.149427728,0.213079569,0.3,3,10,0.129013968,0.476732101,208.4,37,17752,,,15.36531828,49,3189,11.36734705,20.31376563,,,,,,,,,,,,,15.75342466,11.53348678,21.01286086,,,,,,,0.051945214,713,13726,0.043604788,0.060285639,0.000619649,11,17752,,,1613.818182,0.000283286,5,17650,,,3530,0.002209632,39,17650,,,452.5641026,2489,,,,,,,,,2516,0.49,,,,,,,,,0.49,0.47,,,,,,,,,0.47,0.919144772,12209,13283,0.902016258,0.936273286,0.583247951,2277,3904,0.514282636,0.652213266,0.036765619,296,8051,,,0.181,577,,0.120234043,0.241765957,,,,,,,,,,,,,0.241968558,0.180583237,0.303353879,4.572692308,118890,26000,3.717451113,5.427933503,0.119940476,403,3360,0.077789331,0.162091621,7.886435331,14,17752,,,60.56799318,54,89156,45.5005406,79.02809277,,,,,,,,,,,,,62.75234137,47.00580984,82.08160756,,,,6.7,,,,,0,,,,,0.13445946,995,7400,0.106096872,0.162822047,0.10638587,0.082749197,0.130022542,0.030405405,0.012088152,0.048722659,0.006756757,0.001895803,0.01161771,0.75595089,6034,7982,0.7206113,0.791290479,,,,,,,,,,,,,0.757415615,0.70930392,0.805527311,0.385,,7982,0.326617021,0.443382979,77.54867439,,,76.31277049,78.7845783,,,,,,,,,,,,,77.27235046,76.01629905,78.52840187,,,,365.8769288,282,48612,318.9205321,412.8333255,,,,,,,,,,,,,377.7018254,328.6584762,426.7451745,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.109,,,0.094,0.126,0.168,,,0.145,0.192,0.103,,,0.09,0.118,,,,,,0.114,2040,,,,0.003555403,65.21675555,18343,,,18.78145894,10,53244,9.006439592,34.5397717,,,,,,,,,,,,,19.85939548,9.52335206,36.52213537,,,,0.353,,,0.332,0.373,0.058676414,610,10396,0.04795301,0.069399818,0.032064128,112,3493,0.021340724,0.042787533,0.00062323,11,17650,,,1604.545455,0.953869048,160.25,168,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.043673002,,,,,8911.127333,,,,,0.762857096,46651,61153,0.645466018,0.880248174,63233,,,56305.68085,70160.31915,30313,10682.02128,49943.97872,99583,523.7659575,198642.234,,,,,,,61363,53999.59575,68726.40426,,,,,,0.460815047,882,1914,,,54.61439842,,,,,0.360065156,,63233,,,4.62962963,4,864,,,,,,,,,,,,,,,,,,,,,,,,,,20.36420431,18,89156,11.6399023,33.07019197,20.18933106,,,,,,,,,,,,,21.64294138,12.37081102,35.14678086,,,,,,,,,,,,,,,,,,,,,,,,,,,8.769062747,11,125441,4.377484528,15.69027552,,,,,,,,,,,,,8.404561996,4.030314159,15.45628875,,,,,,1500,,,8,-888,0.683810188,9799,14330,,,0.569,,,,,15.25906407,,,,,0.768734891,5724,7446,0.7467723,0.790697482,0.106230705,757,7126,0.082405563,0.130055846,0.837899543,6239,7446,0.81095567,0.864843417,17650,,,,,0.186288952,3288,17650,,,0.235864023,4163,17650,,,0.009688385,171,17650,,,0.00368272,65,17650,,,0.006402266,113,17650,,,0.000453258,8,17650,,,0.020283286,358,17650,,,0.944475921,16670,17650,,,0.005471554,93,16997,0.000722842,0.010220266,0.496373938,8761,17650,,,1,17898,17898,, -36,099,36099,NY,Seneca County,2024,1,7685.803895,491,93587,6577.279797,8794.327992,0,,,,2,,,,2,,,,2,,,,2,7707.653563,6550.521474,8864.785652,,,,,2,,0.154,,,0.129,0.183,3.816005395,,,3.096627347,4.551658719,5.335073871,,,4.53730719,6.150929484,0.056485356,135,2390,0.047229867,0.065740845,0,,,,,,,,,,,,,0.053832117,0.044384101,0.063280133,,,,,,,0.213,,,0.172,0.259,0.384,,,0.334,0.437,8.6,0.020608995,0.099,,,0.261,,,0.219,0.306,0.635801739,21499,33814,,,0.184273143,,,0.1554414,0.21670695,0.260869565,6,23,0.151021274,0.378411613,190,64,33688,,,15.66245805,98,6257,12.71554053,19.08751963,,,,,,,,,,,,,16.27780792,13.08927982,20.00818951,,,,,,,0.064999797,1604,24677,0.054276393,0.075723202,0.000267157,9,33688,,,3743.111111,0.000304118,10,32882,,,3288.2,0.002128824,70,32882,,,469.7428571,3436,,,,,,,,,3340,0.47,,,,,,,,,0.47,0.48,,,,,,,0.31,0.26,0.49,0.84192623,20543,24400,0.827903212,0.855949247,0.535386473,4433,8280,0.480917615,0.589855332,0.032116887,477,14852,,,0.194,1273,,0.134425532,0.253574468,,,,,,,0.354545455,0,0.831396431,0.045180723,0,0.21413824,0.146569647,0.110728593,0.182410701,4.133403247,114301,27653,3.709835395,4.5569711,0.134040646,897,6692,0.095747639,0.172333652,10.9831394,37,33688,,,80.94173954,138,170493,67.4369114,94.44656769,,,,,,,,,,,,,84.14218041,69.50801455,98.77634626,,,,6.9,,,,,0,,,,,0.118607182,1635,13785,0.099202072,0.138012292,0.102122987,0.082472618,0.121773356,0.008342401,0.002848596,0.013836206,0.017047515,0.007323476,0.026771555,0.765055249,11078,14480,0.737553087,0.792557411,,,,,,,,,,,,,0.788953009,0.753937276,0.823968743,0.258,,14480,0.224405071,0.291594929,77.67576452,,,76.73221506,78.61931399,,,,,,,,,,,,,77.50890654,76.53752869,78.48028439,,,,372.0304564,491,93587,336.7144013,407.3465115,,,,,,,,,,,,,382.1698364,344.4567059,419.882967,,,,76.95911129,23,29886,48.78547493,115.4764535,,,,,,,,,,,,,69.16160762,40.98955191,109.3051574,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.113,,,0.097,0.132,0.17,,,0.148,0.193,0.101,,,0.087,0.117,245.2,71,28952,,,0.099,3370,,,,0.020608995,726.4876702,35251,,,14.74998771,15,101695,8.255456151,24.32786162,,,,,,,,,,,,,15.59211039,8.524351843,26.16091183,,,,0.368,,,0.35,0.383,0.074725032,1352,18093,0.060427159,0.089022904,0.038472664,266,6914,0.025366281,0.051579047,0.000821118,27,32882,,,1217.851852,0.901273885,283,314,,,0.14066103,183,1301,0.073908135,0.207413925,,,,,,,,,,,,,,,,,,,,,0.061003049,,,,,11519.7655,,,,,0.814475542,44990,55238,0.717063143,0.911887942,65354,,,62218,68490,,,,76071,42137.38298,110004.617,,,,,,,65309,61555.80851,69062.19149,,,,,,0.520850148,1936,3717,,,49.29199841,,,,,0.348379594,,65354,,,2.79173646,5,1791,,,,,,,,,,,,,,,,,,,,,,,,,,14.9324337,26,170493,9.567492034,22.2182777,15.24989296,,,,,,,,,,,,,15.00628482,9.289126818,22.93870039,,,,7.038412134,12,170493,3.636850257,12.29468955,,,,,,,,,,,,,7.28790539,3.638096112,13.04007587,,,,7.913270555,19,240103,4.764305804,12.35755221,,,,,,,,,,,,,7.513500822,4.294614911,12.20145461,,,,4.0625,,3200,,,7,6,0.579893009,15718,27105,,,0.581,,,,,21.18279688,,,,,0.725444135,9882,13622,0.702650201,0.748238068,0.125461811,1664,13263,0.100663752,0.15025987,0.835560123,11382,13622,0.810351712,0.860768535,32882,,,,,0.203758895,6700,32882,,,0.217565842,7154,32882,,,0.034152424,1123,32882,,,0.005899884,194,32882,,,0.008789003,289,32882,,,0.000243294,8,32882,,,0.041207956,1355,32882,,,0.89465361,29418,32882,,,0.00879618,280,31832,0.004691464,0.012900896,0.484155465,15920,32882,,,0.579168392,19584,33814,, -36,101,36101,NY,Steuben County,2024,1,7875.814481,1543,259136,7216.380707,8535.248255,0,,,,2,,,,2,7008.884388,4006.183019,11381.98914,1,,,,2,8150.126141,7445.584554,8854.667728,,,,,2,,0.143,,,0.12,0.168,3.34175295,,,2.721673124,4.000621818,5.227910414,,,4.501419266,5.98495202,0.069492009,487,7008,0.063538315,0.075445703,0,,,,0.125,0.072423302,0.177576698,0.151898734,0.072750094,0.231047375,0.071428571,0.032484167,0.110372976,0.067874016,0.061687327,0.074060705,,,,,,,0.199,,,0.159,0.239,0.339,,,0.296,0.384,8.2,0.044006015,0.103,,,0.241,,,0.203,0.281,0.50445589,47209,93584,,,0.18773377,,,0.159862616,0.217756048,0.341463415,14,41,0.260140378,0.422314709,167.8,156,92948,,,17.0971645,325,19009,15.2383396,18.9559894,,,,,,,,,,,,,17.04087507,15.09953281,18.98221733,,,,23.4375,12.11049826,40.9405958,0.056745951,4187,73785,0.048405526,0.065086377,0.000559453,52,92948,,,1787.461539,0.000356375,33,92599,,,2806.030303,0.002354237,218,92599,,,424.7660551,2308,,,,,,,2444,,2280,0.46,,,,,,0.64,0.36,,0.46,0.46,,,,,,0.61,0.33,0.35,0.46,0.914637631,60817,66493,0.90578388,0.923491382,0.636164982,13974,21966,0.602692579,0.669637385,0.036200518,1497,41353,,,0.175,3331,,0.123765957,0.226234043,,,,0.029605263,0,0.305665011,0.570921986,0.375487395,0.766356577,0.381818182,0.192859445,0.570776919,0.172366543,0.147012985,0.197720101,4.4431743,120881,27206,4.209436695,4.676911905,0.210126456,4204,20007,0.17980239,0.240450521,11.40422602,106,92948,,,69.04376491,328,475061,61.57164875,76.51588106,,,,,,,,,,,,,70.96608497,63.12905259,78.80311735,,,,6.1,,,,,1,,,,,0.102743142,4120,40100,0.093245914,0.11224037,0.086433426,0.077545664,0.095321188,0.009351621,0.006275819,0.012427423,0.013216958,0.009371606,0.017062309,0.794260229,32768,41256,0.780292469,0.808227989,,,,0.789156627,0.685862145,0.892451108,,,,0.733240224,0.61204875,0.854431697,0.799260542,0.778549386,0.819971699,0.283,,41256,0.265529337,0.300470664,77.07607896,,,76.52355481,77.6286031,,,,,,,,,,,,,76.78208919,76.20578183,77.35839656,,,,408.4893081,1543,259136,386.6668634,430.3117529,,,,,,,457.3332547,295.961969,675.1141011,,,,417.4521935,394.6805522,440.2238349,,,,44.94382023,40,89000,32.10852409,61.20072693,,,,,,,,,,,,,49.64688652,35.46846361,67.60496837,,,,6.041022759,43,7118,4.371918125,8.137218012,,,,,,,,,,,,,6.758880855,4.891435588,9.104168156,,,,,,,0.105,,,0.09,0.121,0.165,,,0.144,0.187,0.097,,,0.085,0.112,107.7,85,78911,,,0.103,9720,,,,0.044006015,4356.155452,98990,,,18.37559721,52,282984,13.72377491,24.09715098,,,,,,,,,,,,,17.80269313,13.08074929,23.67380782,,,,0.35,,,0.329,0.367,0.066191182,3573,53980,0.055467778,0.076914586,0.031932773,665,20825,0.021209369,0.042656177,0.001069126,99,92599,,,935.3434343,0.907967309,1083.205,1193,,,0.098811466,424,4291,0.065036686,0.132586246,,,,,,,,,,,,,,,,,,,,,0.072064279,,,,,10889.07425,,,,,0.809274559,47311,58461,0.758906939,0.85964218,60558,,,56671.3617,64444.6383,,,,114121,95859.04255,132382.9575,41191,19026.91489,63355.08511,61875,30756.87234,92993.12766,62308,60237.19149,64378.80851,,,,,,0.483664559,6425,13284,,,54.09537223,,,,,0.409211004,,60558,,,8.155339806,42,5150,,,,,,,,,,,,,,,,,,,,,,,,,,15.30646722,80,475061,11.97636791,19.27596225,16.83994266,,,,,,,,,,,,,15.66079947,12.16122358,19.85379501,,,,10.73546345,51,475061,7.993257674,14.11515182,,,,,,,,,,,,,11.03916877,8.16683783,14.59436655,,,,8.661473765,58,669632,6.577020166,11.19696337,,,,,,,,,,,,,9.102842962,6.894404365,11.79378889,,,,9.255319149,,9400,,,46,41,0.631882089,46516,73615,,,0.612,,,,,45.76636347,,,,,0.72717988,28480,39165,0.711286268,0.743073492,0.102370067,3896,38058,0.091663759,0.113076375,0.848180774,33219,39165,0.836195297,0.860166251,92599,,,,,0.211341375,19570,92599,,,0.210164257,19461,92599,,,0.015507727,1436,92599,,,0.003077787,285,92599,,,0.016080087,1489,92599,,,0.000345576,32,92599,,,0.019395458,1796,92599,,,0.930668798,86179,92599,,,0.006471871,573,88537,0.003933351,0.00901039,0.498623095,46172,92599,,,0.597773124,55942,93584,, -36,103,36103,NY,Suffolk County,2024,1,6272.239099,16978,4137623,6124.099539,6420.37866,0,6746.873509,3776.173887,11127.94182,1,3519.518555,3003.734795,4035.302315,,10251.83953,9574.978891,10928.70017,,5918.398426,5619.469201,6217.327651,,5961.428087,5779.879328,6142.976845,,,,,2,,0.124,,,0.105,0.144,2.864641506,,,2.378796796,3.37171148,4.28722807,,,3.747363712,4.836546686,0.08003483,8640,107953,0.078416139,0.081653521,0,0.109243698,0.053195682,0.165291713,0.092637018,0.084917693,0.100356343,0.139788732,0.132425391,0.147152074,0.078451854,0.075688788,0.08121492,0.070059273,0.067948596,0.07216995,,,,0.105004102,0.087794617,0.122213587,0.125,,,0.098,0.153,0.297,,,0.264,0.329,9.4,0.040409064,0.052,,,0.24,,,0.209,0.272,0.959682028,1464398,1525920,,,0.17084234,,,0.150099613,0.193082516,0.247244095,157,635,0.227429694,0.26745019,321.6,4909,1526344,,,8.989638803,2956,328823,8.665563378,9.313714227,,,,0.919681177,0.514738573,1.516874241,9.893721158,8.741004631,11.04643769,26.48020296,25.34708626,27.61331965,2.502195805,2.280641944,2.723749666,,,,7.75862069,5.961937167,9.926646218,0.054438178,67796,1245376,0.04967222,0.059204135,0.000712814,1088,1526344,,,1402.889706,0.000810245,1236,1525465,,,1234.194984,0.003134126,4781,1525465,,,319.0681866,2752,,,,,3273,1943,4168,2965,2669,0.44,,,,,0.29,0.35,0.41,0.37,0.45,0.55,,,,,0.29,0.53,0.39,0.42,0.56,0.904645658,965351,1067104,0.901138881,0.908152434,0.700360484,254511,363400,0.687538603,0.713182366,0.031197555,24984,800832,,,0.071,21440,,0.050744681,0.091255319,0.113981763,0.058491134,0.169472392,0.064841293,0.045833546,0.083849039,0.134774789,0.106679831,0.162869747,0.117812705,0.101298902,0.134326508,0.0393168,0.033306645,0.045326955,4.173502055,220315,52789,4.049064544,4.297939566,0.169313461,53393,315350,0.158453402,0.180173521,6.459880604,986,1526344,,,68.32397832,5091,7451264,66.44713651,70.20082013,,,,24.99075018,19.72230923,31.23414986,65.41715116,58.69672201,72.1375803,43.61470701,40.27453848,46.95487555,78.29070795,75.82912262,80.75229327,,,,6.4,,,,,0,,,,,0.198390042,98335,495665,0.192109817,0.204670267,0.176734715,0.170701323,0.182768107,0.02226302,0.020373954,0.024152087,0.007081396,0.005510954,0.008651837,0.748985803,573631,765877,0.74196792,0.756003686,0.601969635,0.484210734,0.719728536,0.6866026,0.667844077,0.705361124,0.722919799,0.701865553,0.743974046,0.730547991,0.71723213,0.743863852,0.793069946,0.786171958,0.799967934,0.438,,765877,0.428847997,0.447152003,79.63167524,,,79.49128157,79.77206891,85.53484911,79.69544684,91.37425138,85.87374499,84.75791091,86.98957907,74.70002598,74.13611074,75.26394121,81.58774233,81.07469161,82.10079305,79.85519499,79.6917519,80.01863808,,,,308.7238531,16978,4137623,303.8566108,313.5910955,324.700171,215.7609056,469.2821522,180.4675637,161.8018183,199.1333091,491.9013323,468.2388079,515.5638568,280.6724476,268.5382527,292.8066424,301.309958,295.5035189,307.1163972,,,,33.19914746,462,1391602,30.17180177,36.22649314,,,,26.59662888,15.20227144,43.19125901,65.76697446,51.72989741,82.43947198,39.04639488,33.01491233,45.07787742,22.2305532,18.87886979,25.5822366,,,,4.223874639,455,107721,3.835758776,4.611990502,,,,,,,9.228971963,7.306664014,11.50205271,4.25191198,3.58035947,4.92346449,2.636031704,2.21133798,3.060725427,,,,,,,0.087,,,0.074,0.1,0.14,,,0.122,0.158,0.087,,,0.076,0.099,237.1,3101,1307885,,,0.052,79120,,,,0.040409064,60344.87622,1493350,,,28.81253493,1290,4477218,27.2402086,30.38486125,,,,,,,32.54755642,26.46511245,38.63000039,16.46462069,13.83847191,19.09076948,33.47510429,31.39089569,35.55931288,,,,0.345,,,0.331,0.358,0.063219576,58842,930756,0.05726213,0.069177023,0.029683613,9869,332473,0.023726167,0.03564106,0.001217334,1857,1525465,,,821.4674206,0.903888529,18155.505,20086,,,0.056892163,4649,81716,0.047597661,0.066186666,,,,,,,,,,,,,,,,,,,,,0.189859628,,,,,20318.03464,,,,,0.802701137,66507,82854,0.782432021,0.822970253,119253,,,116559.0426,121946.9575,82446,66012.97872,98879.02128,131071,118039.6809,144102.3192,102620,97371.48936,107868.5106,112955,108594.1489,117315.8511,126382,124270.6809,128493.3192,,,,,,0.342748788,68777,200663,,,59.08184519,,,,,0.328629049,,119253,,,4.266254179,342,80164,,,2.163624795,226,10445434,1.881537322,2.445712269,,,,,,,11.00681257,8.791850945,13.6100942,3.388875387,2.641794618,4.281640179,0.912779758,0.702951638,1.165599373,,,,8.131153606,637,7451264,7.47509066,8.787216552,8.548885129,,,,5.875959186,3.537711274,9.176038137,3.910327683,2.478812319,5.867411477,4.175484985,3.118451904,5.475593037,9.978047724,9.057035826,10.89905962,,,,3.636966829,271,7451264,3.203944027,4.069989631,,,,,,,8.985872411,6.669487704,11.84675254,2.130794846,1.457462098,3.008046553,3.565994675,3.040642991,4.091346359,,,,9.027868062,943,10445434,8.451651909,9.604084215,,,,5.132799522,3.216698134,7.771120161,13.59665082,10.99593221,16.19736944,11.32852629,9.877011189,12.7800414,8.015347251,7.352657497,8.678037004,,,,1.58839779,,144800,,,189,41,0.699819938,757877,1082960,,,0.664,,,,,158.2864684,,,,,0.818054538,417769,510686,0.811920035,0.824189042,0.175382658,87953,501492,0.169307329,0.181457988,0.917415007,468511,510686,0.912453832,0.922376182,1525465,,,,,0.202856178,309450,1525465,,,0.181861924,277424,1525465,,,0.078894632,120351,1525465,,,0.007208949,10997,1525465,,,0.047915881,73094,1525465,,,0.001160302,1770,1525465,,,0.214301869,326910,1525465,,,0.643578843,981757,1525465,,,0.037956901,54847,1444981,0.036021995,0.039891806,0.503380281,767889,1525465,,,0.019641921,29972,1525920,, -36,105,36105,NY,Sullivan County,2024,1,9184.999426,1295,213398,8395.933348,9974.065503,0,,,,2,,,,2,11081.03392,8235.848119,13926.21972,,7918.555205,6241.558289,9595.55212,,9501.780423,8507.431618,10496.12923,,,,,2,,0.169,,,0.145,0.194,3.671805194,,,3.062525741,4.350666858,5.10881407,,,4.440400811,5.79186002,0.079987099,496,6201,0.073235104,0.086739094,0,,,,,,,0.163043478,0.125300573,0.200786384,0.089093702,0.073619405,0.104567999,0.068761815,0.061137737,0.076385892,,,,0.153846154,0.091823209,0.215869099,0.183,,,0.151,0.217,0.37,,,0.33,0.411,8.5,0.028456176,0.099,,,0.272,,,0.236,0.309,0.524381868,41229,78624,,,0.175444011,,,0.1506762,0.202235372,0.25,13,52,0.178235064,0.326001514,246.8,197,79806,,,17.84651993,270,15129,15.71775488,19.97528498,,,,,,,10.45679692,6.295674829,16.32958369,26.70375522,21.63012746,32.60985563,15.98756523,13.37626291,18.59886755,,,,19.96007984,9.571634124,36.70729749,0.064025316,4006,62569,0.054493401,0.073557231,0.00032579,26,79806,,,3069.461539,0.000414271,33,79658,,,2413.878788,0.002221999,177,79658,,,450.0451977,2971,,,,,,2386,3243,2645,2958,0.39,,,,,,0.36,0.28,0.32,0.39,0.5,,,,,,0.46,0.38,0.39,0.51,0.866603067,48145,55556,0.851275365,0.881930769,0.573825325,10808,18835,0.522488075,0.625162576,0.032643887,1220,37373,,,0.249,4044,,0.176319149,0.321680851,,,,0.015810277,0,0.343743736,0.466194969,0.347643579,0.584746358,0.210202687,0.132831739,0.287573636,0.21443471,0.168662163,0.260207257,4.944235925,138315,27975,4.50254809,5.38592376,0.262759463,4304,16380,0.211628635,0.31389029,9.773701226,78,79806,,,103.1351516,394,382023,92.95123876,113.3190643,,,,,,,86.12165481,56.75471319,125.3024862,74.69073368,55.07105084,99.02907676,116.0972111,103.2557916,128.9386306,,,,6.9,,,,,1,,,,,0.151251739,4350,28760,0.132330713,0.170172764,0.135884832,0.118075477,0.153694186,0.019123783,0.011054326,0.02719324,0.002433936,0.000520453,0.004347419,0.758349115,25228,33267,0.737570891,0.779127339,,,,0.632165605,0.496443516,0.767887694,0.715710723,0.600380859,0.831040587,0.607489598,0.528296867,0.686682328,0.763267885,0.739546572,0.786989198,0.337,,33267,0.301775415,0.372224585,76.6590552,,,76.00858735,77.30952305,,,,,,,72.99127888,70.81919499,75.16336277,79.12822478,76.77779319,81.47865638,76.41717365,75.63684539,77.19750192,,,,436.4884803,1295,213398,411.0934571,461.8835035,,,,,,,610.7644139,501.747901,719.7809269,404.7989647,334.1311982,475.4667311,441.1525108,410.8035274,471.5014942,,,,47.33002951,34,71836,32.77742133,66.13897224,,,,,,,,,,,,,53.70193094,34.04241761,80.57926381,,,,4.319654428,26,6019,2.821741687,6.329294581,,,,,,,,,,,,,,,,,,,,,,0.115,,,0.1,0.131,0.163,,,0.143,0.183,0.105,,,0.092,0.118,456.6,309,67667,,,0.099,7730,,,,0.028456176,2206.691087,77547,,,56.7001385,131,231040,46.99046686,66.40981015,,,,,,,63.07821699,32.59343518,110.1849508,45.58000557,27.01360001,72.03605953,62.16761867,50.04323652,74.29200082,,,,0.358,,,0.343,0.372,0.076055662,3487,45848,0.062949279,0.089162045,0.032153426,565,17572,0.021430022,0.04287683,0.000627683,50,79658,,,1593.16,0.830830904,569.95,686,,,0.245975855,978,3976,0.162828109,0.329123601,,,,,,,,,,,,,,,,,,,,,0.108749821,,,,,15177.01263,,,,,0.792117915,47615,60111,0.715896213,0.868339617,63733,,,57233.42553,70232.57447,31625,17832.31915,45417.68085,74875,29979.68085,119770.3192,47442,29211.02128,65672.97872,59826,41623.61702,78028.38298,70546,67903.2766,73188.7234,,,,,,0.560120241,5031,8982,,,50.96768945,,,,,0.403464453,,63733,,,4.226918799,19,4495,,,3.573436951,19,531701,2.151442477,5.580364448,,,,,,,,,,,,,2.637485527,1.264776828,4.850429789,,,,12.32760634,55,382023,9.120031035,16.29774935,14.39703892,,,,,,,,,,,,,14.81408865,10.58340212,20.17258411,,,,8.899987697,34,382023,6.163500204,12.43684074,,,,,,,,,,,,,10.72235389,7.180928681,15.39908876,,,,13.54144529,72,531701,10.59534695,17.05320924,,,,,,,,,,17.16070428,9.604715913,28.30397198,14.76991895,11.15703805,19.1799683,,,,5.833333333,,7200,,,32,10,0.623792614,35132,56320,,,0.361,,,,,18.4431388,,,,,0.691085466,20660,29895,0.667376402,0.714794529,0.149372154,4330,28988,0.129354473,0.169389835,0.853687908,25521,29895,0.833719053,0.873656763,79658,,,,,0.209608577,16697,79658,,,0.194481408,15492,79658,,,0.089018052,7091,79658,,,0.008323081,663,79658,,,0.022169776,1766,79658,,,0.001016847,81,79658,,,0.183245876,14597,79658,,,0.681500916,54287,79658,,,0.029662558,2202,74235,0.023321482,0.036003634,0.478231942,38095,79658,,,0.750559626,59012,78624,, -36,107,36107,NY,Tioga County,2024,1,6866.989555,670,130768,5974.330467,7759.648642,0,,,,2,,,,2,,,,2,,,,2,7102.932113,6157.872187,8047.992039,,,,,2,,0.134,,,0.111,0.159,3.375305724,,,2.749823733,4.070842419,4.817233031,,,4.072076878,5.607439729,0.069637883,225,3231,0.060861079,0.078414687,0,,,,,,,,,,,,,0.070634402,0.061553295,0.079715508,,,,,,,0.184,,,0.147,0.223,0.366,,,0.323,0.415,9,0.010604493,0.085,,,0.228,,,0.192,0.269,0.639232277,30974,48455,,,0.173552678,,,0.146263743,0.205277972,0.129032258,4,31,0.051743132,0.232752664,189.7,91,47980,,,17.99223063,176,9782,15.33404842,20.65041284,,,,,,,,,,,,,18.29268293,15.5014794,21.08388646,,,,,,,0.044774533,1685,37633,0.037625597,0.051923469,0.000270946,13,47980,,,3690.769231,0.000167462,8,47772,,,5971.5,0.001695554,81,47772,,,589.7777778,3399,,,,,,,,,3433,0.46,,,,,,,,,0.46,0.5,,,,,,,0.5,,0.5,0.920280888,31977,34747,0.907322845,0.93323893,0.637042569,6824,10712,0.576940425,0.697144714,0.032118952,715,22261,,,0.149,1382,,0.098957447,0.199042553,,,,,,,,,,0.418006431,0.10611254,0.729900322,0.105695697,0.071630657,0.139760737,4.224862113,129454,30641,3.806409351,4.643314875,0.173522507,1700,9797,0.132159842,0.214885171,10.8378491,52,47980,,,64.25536325,155,241225,54.1395779,74.3711486,,,,,,,,,,,,,66.97190682,56.35976561,77.58404803,,,,7.2,,,,,0,,,,,0.093000727,1920,20645,0.077330751,0.108670702,0.080312653,0.065009267,0.095616039,0.007265682,0.003312408,0.011218956,0.007265682,0.002219798,0.012311566,0.821691587,18410,22405,0.804579399,0.838803775,,,,,,,,,,,,,0.789105058,0.760092461,0.818117656,0.348,,22405,0.314766203,0.381233797,78.9900964,,,78.18590827,79.79428452,,,,,,,,,,,,,78.74970747,77.9157821,79.58363284,,,,340.8041121,670,130768,312.9223944,368.6858297,,,,,,,,,,,,,347.7556021,318.8170372,376.6941669,,,,50.31446541,22,43725,31.5318076,76.17670529,,,,,,,,,,,,,52.24010548,32.33744865,79.85455045,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.105,,,0.09,0.122,0.156,,,0.135,0.178,0.091,,,0.079,0.105,113.8,47,41292,,,0.085,4150,,,,0.010604493,542.1547224,51125,,,15.26855303,22,144087,9.568720892,23.11677277,,,,,,,,,,,,,16.13459183,10.1114628,24.42796593,,,,0.336,,,0.317,0.353,0.05254298,1467,27920,0.043011065,0.062074895,0.023391813,240,10260,0.016242877,0.030540749,0.000711714,34,47772,,,1405.058824,0.906833616,534.125,589,,,0.115417377,271,2348,0.048460308,0.182374445,,,,,,,,,,,,,,,,,,,,,0.091154095,,,,,8810.135333,,,,,0.690108084,44503,64487,0.615009497,0.765206671,76197,,,70209.76596,82184.23404,105759,44384.19149,167133.8085,,,,145750,66581.48936,224918.5106,48472,15613.10638,81330.89362,70279,66666.40426,73891.59575,,,,,,0.449405178,3211,7145,,,59.34390751,,,,,0.298804415,,76197,,,2.851323829,7,2455,,,,,,,,,,,,,,,,,,,,,,,,,,11.80651992,28,241225,7.640557178,17.42875244,11.60742046,,,,,,,,,,,,,12.49239301,8.084418082,18.44123643,,,,5.803710229,14,241225,3.172942388,9.737639599,,,,,,,,,,,,,5.690423455,3.029910832,9.730797411,,,,12.66799828,43,339438,9.167893168,17.06371055,,,,,,,,,,,,,13.35594526,9.665763809,17.99037062,,,,5.208333333,,4800,,,14,11,0.661411116,25170,38055,,,0.691,,,,,26.76803011,,,,,0.778899173,15821,20312,0.760132362,0.797665984,0.092228135,1837,19918,0.073802141,0.110654129,0.879381646,17862,20312,0.864136286,0.894627007,47772,,,,,0.199049653,9509,47772,,,0.223289793,10667,47772,,,0.011052499,528,47772,,,0.002784058,133,47772,,,0.008435904,403,47772,,,0.000418655,20,47772,,,0.02218873,1060,47772,,,0.942769823,45038,47772,,,0.003050043,140,45901,0.000592679,0.005507406,0.497509001,23767,47772,,,0.664080074,32178,48455,, -36,109,36109,NY,Tompkins County,2024,1,5286.798857,867,290111,4716.64117,5856.956545,0,,,,2,,,,2,11992.69833,8255.221711,16842.20729,,,,,2,5667.480863,4981.439865,6353.521861,,,,,2,,0.12,,,0.1,0.143,3.073536009,,,2.502381367,3.71095165,5.086965795,,,4.409165334,5.857108401,0.061347233,306,4988,0.054687715,0.068006752,0,,,,0.059760956,0.039024615,0.080497297,0.12987013,0.086519366,0.173220894,0.046831956,0.025097006,0.068566906,0.060337892,0.052695298,0.067980487,,,,,,,0.143,,,0.11,0.18,0.286,,,0.245,0.33,8.4,0.054483115,0.092,,,0.172,,,0.142,0.208,0.873595612,92374,105740,,,0.203782116,,,0.173567883,0.237569151,0.272727273,9,33,0.181168814,0.368649754,320.5,337,105162,,,3.455060224,144,41678,2.89073372,4.019386727,,,,,,,,,,4.643962848,2.599190753,7.659510487,3.795925475,3.083301384,4.508549565,,,,5.968529571,2.979468458,10.67934808,0.049276578,3760,76304,0.040936152,0.057617003,0.000798768,84,105162,,,1251.928571,0.000601277,63,104777,,,1663.126984,0.004275748,448,104777,,,233.8772321,1930,,,,,,,918,,1918,0.45,,,,,,0.36,0.33,0.45,0.46,0.51,,,,,,0.5,0.37,0.4,0.51,0.956766303,58512,61156,0.949493927,0.964038679,0.832477535,19455,23370,0.785891058,0.879064013,0.027757254,1390,50077,,,0.123,1718,,0.078914894,0.167085106,,,,0.052229299,0,0.151905591,0.416337286,0.219727057,0.612947515,0.382066277,0.232968538,0.531164016,0.082256633,0.056183316,0.10832995,5.430011907,145937,26876,4.982566216,5.877457598,0.271133807,3929,14491,0.225418304,0.31684931,10.55514349,111,105162,,,60.46570219,312,515995,53.75623745,67.17516693,,,,18.83806797,9.033585819,34.64387771,111.8949161,70.93177834,167.897314,,,,68.43955303,60.30602844,76.57307762,,,,6.8,,,,,0,,,,,0.215116991,8780,40815,0.194639418,0.235594565,0.20037594,0.178750997,0.222000883,0.01568051,0.009722747,0.021638273,0.010902854,0.004807875,0.016997834,0.543103984,26214,48267,0.523914456,0.562293512,,,,0.309995052,0.236252382,0.383737722,0.359112307,0.241435503,0.476789111,0.48676345,0.381733813,0.591793087,0.632931094,0.611986394,0.653875794,0.21,,48267,0.183145194,0.236854806,80.93185521,,,80.34026709,81.52344332,,,,90.16819848,84.58375428,95.75264269,74.99342299,71.32149784,78.66534813,111.3765572,67.08300993,155.6701045,80.41887083,79.76584988,81.07189178,,,,264.2894283,867,290111,245.6568248,282.9220319,,,,,,,519.2756226,385.416376,684.600172,,,,274.6614871,253.7933383,295.5296358,,,,27.38975623,26,94926,17.89189813,40.13233896,,,,,,,,,,,,,31.24349094,19.34021333,47.75899476,,,,3.870718018,20,5167,2.364335124,5.978010045,,,,,,,,,,,,,,,,,,,,,,0.095,,,0.081,0.112,0.148,,,0.128,0.169,0.087,,,0.075,0.102,168,159,94619,,,0.092,9680,,,,0.054483115,5533.52312,101564,,,21.40077821,66,308400,16.55136032,27.22703711,,,,,,,96.81323114,50.02480927,169.1132315,,,,21.86132354,16.32708206,28.66821731,,,,0.301,,,0.286,0.317,0.055632461,3416,61403,0.044909057,0.066355865,0.024901537,392,15742,0.016561112,0.033241963,0.001479332,155,104777,,,675.9806452,0.847009804,691.16,816,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.070556418,,,,,12140.47533,,,,,0.839108585,57270,68251,0.769131614,0.909085555,72025,,,65694.61702,78355.38298,86389,43672.91489,129105.0851,50625,34666.19149,66583.80851,34569,7673.510638,61464.48936,54018,38988.55319,69047.44681,73968,71568.34043,76367.65957,,,,,,0.3941451,3716,9428,,,55.39968761,,,,,0.42040958,,72025,,,9.095502779,36,3958,,,,,,,,,,,,,,,,,,,,,,,,,,12.8599194,66,515995,9.765075961,16.62442794,12.79082162,,,,,,,,,,,,,14.17165951,10.55173135,18.63311505,,,,3.488405895,18,515995,2.067450417,5.513185257,,,,,,,,,,,,,3.774240057,2.112413509,6.225035005,,,,7.715709184,56,725792,5.828363799,10.01949016,,,,,,,,,,,,,8.576467246,6.323609911,11.3711513,,,,8.382352941,,6800,,,40,17,0.574845515,46048,80105,,,0.61,,,,,78.11349279,,,,,0.542713568,23328,42984,0.530429142,0.554997994,0.198575007,8166,41123,0.176386932,0.220763081,0.883538061,37978,42984,0.866952112,0.90012401,104777,,,,,0.136957538,14350,104777,,,0.163919563,17175,104777,,,0.040199662,4212,104777,,,0.004733863,496,104777,,,0.102035752,10691,104777,,,0.000792159,83,104777,,,0.055393836,5804,104777,,,0.767945255,80463,104777,,,0.008519939,842,98827,0.005899281,0.011140597,0.507840461,53210,104777,,,0.441062985,46638,105740,, -36,111,36111,NY,Ulster County,2024,1,6676.634418,2427,492534,6231.03388,7122.234956,0,,,,2,4153.619296,1793.237997,8184.285863,1,10670.49685,8309.302072,13031.69162,,5161.607956,4060.348763,6262.867149,,6596.104833,6094.76574,7097.443925,,,,,2,,0.139,,,0.116,0.163,3.564319395,,,2.919252046,4.27104118,5.234190832,,,4.484200925,6.020875995,0.07630408,806,10563,0.071241163,0.081366998,0,,,,0.052631579,0.02478382,0.080479338,0.107843137,0.083267928,0.132418347,0.077906269,0.064946089,0.090866449,0.072004159,0.066228098,0.07778022,,,,0.143322476,0.104125485,0.182519466,0.165,,,0.13,0.2,0.297,,,0.255,0.342,8.2,0.061368657,0.095,,,0.2,,,0.166,0.238,0.80919544,147153,181851,,,0.1891426,,,0.160254787,0.220625317,0.16091954,14,87,0.109838593,0.218886464,209.9,384,182951,,,8.110341978,314,38716,7.213263548,9.007420407,,,,,,,14.2021721,9.835417036,19.84611199,13.56391997,10.75534496,16.88147253,5.967854135,5.051674849,6.884033422,,,,18.04264626,12.41972749,25.33858353,0.062679837,8757,139710,0.054339411,0.071020262,0.000595788,109,182951,,,1678.449541,0.000680127,124,182319,,,1470.314516,0.003976547,725,182319,,,251.4744828,2624,,,,,,890,4093,4987,2491,0.39,,,,,,0.33,0.39,0.35,0.4,0.51,,,,,,0.46,0.39,0.43,0.51,0.91467671,122649,134090,0.906322017,0.923031403,0.6323889,28190,44577,0.59866823,0.66610957,0.031546389,2764,87617,,,0.164,4876,,0.122297872,0.205702128,,,,0.049668874,0,0.209676474,0.229390681,0.140673538,0.318107824,0.294252468,0.219063133,0.369441804,0.116500055,0.086350999,0.146649111,5.33223918,157573,29551,4.960750515,5.703727845,0.217901854,6736,30913,0.189207414,0.246596294,8.964148871,164,182951,,,80.22261497,719,896256,74.35868952,86.08654042,,,,,,,83.37193145,60.81205889,111.5582038,53.13164146,39.55999692,69.85829622,86.11016143,79.2597583,92.96056455,,,,7.5,,,,,0,,,,,0.185689827,13015,70090,0.171303394,0.200076261,0.170157258,0.155446607,0.184867909,0.01904694,0.013596634,0.024497245,0.00770438,0.004143603,0.011265157,0.715585825,59994,83839,0.699823533,0.731348117,,,,0.4,0.21551369,0.58448631,0.647803247,0.589471163,0.706135332,0.71022503,0.654183593,0.766266466,0.700474886,0.684986873,0.715962899,0.391,,83839,0.365950371,0.416049629,79.16802174,,,78.75988741,79.57615606,,,,85.7603192,80.58465531,90.9359831,74.73516358,72.68295438,76.78737277,81.89248886,80.03081068,83.75416703,79.14969168,78.70297661,79.59640674,,,,333.0142852,2427,492534,318.7927399,347.2358306,,,,195.4544947,119.3886831,301.8636148,523.8894938,445.8238649,601.9551228,272.8040236,225.4656654,320.1423818,331.4368913,315.6073379,347.2664447,,,,38.11847221,55,144287,28.71604994,49.61643112,,,,,,,110.3387399,52.91171462,202.9168713,,,,33.61344538,23.13794915,47.20577466,,,,4.244482173,45,10602,3.095954423,5.679451094,,,,,,,,,,,,,3.730383329,2.498296262,5.357452719,,,,,,,0.106,,,0.09,0.123,0.159,,,0.137,0.182,0.09,,,0.077,0.104,349.9,564,161206,,,0.095,17330,,,,0.061368657,11199.35023,182493,,,36.04340071,194,538240,30.97138061,41.11542082,,,,,,,52.58274049,30.63138407,84.19006129,30.64299212,18.16097918,48.42913854,36.01818919,30.29212579,41.74425259,,,,0.307,,,0.292,0.322,0.073130884,7923,108340,0.06240748,0.083854289,0.028274842,937,33139,0.019934417,0.036615268,0.000724006,132,182319,,,1381.204546,0.880754264,1652.295,1876,,,0.085800469,768,8951,0.05687207,0.114728869,,,,,,,,,,,,,,,,,,,,,0.055172271,,,,,15729.38411,,,,,0.810079267,55697,68755,0.761909196,0.858249338,79340,,,74774.21277,83905.78723,,,,118818,91803.3617,145832.6383,65278,54752.38298,75803.61702,57944,51555.23404,64332.76596,80284,75594.29787,84973.70213,,,,,,0.40986376,7521,18350,,,42.51315876,,,,,0.396546509,,79340,,,9.019308943,71,7872,,,1.752116876,22,1255624,1.098042318,2.652726006,,,,,,,,,,,,,,,,,,,13.42975171,132,896256,11.01143016,15.84807327,14.72793488,,,,,,,,,,,,,15.74745666,12.68836662,18.80654669,,,,6.694515853,60,896256,5.108620857,8.617168912,,,,,,,,,,,,,6.38378462,4.656376307,8.542006083,,,,8.919867731,112,1255624,7.267885109,10.57185035,,,,,,,,,,,,,9.684721948,7.844655871,11.8267031,,,,5.472972973,,14800,,,55,26,0.693440712,98160,141555,,,0.602,,,,,54.80124882,,,,,0.691551927,49975,72265,0.679615284,0.70348857,0.182208209,12656,69459,0.16638158,0.198034839,0.904213658,65343,72265,0.89275218,0.915675136,182319,,,,,0.167530537,30544,182319,,,0.215792101,39343,182319,,,0.060262507,10987,182319,,,0.004919948,897,182319,,,0.023151729,4221,182319,,,0.000564944,103,182319,,,0.115566672,21070,182319,,,0.774856159,141271,182319,,,0.011584761,2020,174367,0.008768124,0.014401398,0.501291692,91395,182319,,,0.561234197,102061,181851,, -36,113,36113,NY,Warren County,2024,1,7509.510773,958,175116,6688.895461,8330.126084,0,,,,2,,,,2,,,,2,,,,2,7824.663144,6942.862204,8706.464085,,,,,2,,0.131,,,0.107,0.159,3.569236408,,,2.901355704,4.326353707,5.051688378,,,4.303533167,5.860676474,0.078702473,296,3761,0.070096528,0.087308417,0,,,,,,,,,,0.094017094,0.041132819,0.146901369,0.07730026,0.068410299,0.08619022,,,,,,,0.182,,,0.138,0.224,0.335,,,0.292,0.381,8.4,0.053344631,0.09,,,0.23,,,0.191,0.272,0.992287449,65230,65737,,,0.19271227,,,0.164744292,0.222802813,0.303030303,10,33,0.211104768,0.396820499,175.3,115,65618,,,12.29581763,137,11142,10.23683254,14.35480271,,,,,,,,,,,,,12.53761284,10.3396724,14.73555328,,,,,,,0.047749846,2399,50241,0.04060091,0.054898782,0.0011125,73,65618,,,898.8767123,0.00088416,58,65599,,,1131.017241,0.004588485,301,65599,,,217.9368771,2697,,,,,,,,,2688,0.52,,,,,,,,,0.52,0.5,,,,,,0.58,0.5,0.04,0.5,0.916622702,45173,49282,0.904744048,0.928501356,0.680175101,10255,15077,0.6283138,0.732036402,0.034390182,1076,31288,,,0.143,1581,,0.091765957,0.194234043,,,,,,,0.157024793,0,0.674343867,0.120141343,0,0.273517873,0.071371927,0.049813479,0.092930375,4.501069317,143116,31796,4.112808273,4.889330361,0.206543263,2399,11615,0.159399215,0.253687311,11.73458502,77,65618,,,55.57021561,179,322115,47.42933027,63.71110094,,,,,,,,,,,,,57.51215069,48.94191771,66.08238367,,,,7,,,,,0,,,,,0.121405201,3525,29035,0.104508055,0.138302346,0.108939709,0.092931935,0.124947483,0.008438092,0.004558163,0.012318021,0.00809368,0.001808421,0.01437894,0.789023657,24915,31577,0.768062483,0.80998483,,,,,,,,,,,,,0.805699482,0.785009661,0.826389303,0.274,,31577,0.248306892,0.299693108,78.06319566,,,77.38604011,78.74035121,,,,,,,,,,,,,77.72112556,77.01190353,78.43034759,,,,354.9400683,958,175116,330.0541912,379.8259454,,,,,,,,,,,,,364.3898537,338.253723,390.5259845,,,,48.89401733,25,51131,31.64163003,72.1772148,,,,,,,,,,,,,55.20713718,35.72714833,81.49662507,,,,6.634819533,25,3768,4.293705374,9.794302468,,,,,,,,,,,,,6.015468347,3.723669718,9.195282365,,,,,,,0.107,,,0.09,0.125,0.158,,,0.136,0.182,0.089,,,0.076,0.103,137.2,79,57583,,,0.09,5890,,,,0.053344631,3505.115661,65707,,,19.6567314,38,193318,13.91027305,26.98039961,,,,,,,,,,,,,19.97480955,13.99011104,27.65355607,,,,0.317,,,0.299,0.335,0.055008295,2122,38576,0.04547638,0.06454021,0.025195059,310,12304,0.018046122,0.032343995,0.002576259,169,65599,,,388.1597633,0.888733333,666.55,750,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.046992797,,,,,13521.70089,,,,,0.816280772,52424,64223,0.756635591,0.875925953,69849,,,63182.61702,76515.38298,,,,81607,41748.10638,121465.8936,,,,122847,28167.68085,217526.3192,74963,70390.06383,79535.93617,,,,,,0.384179399,3118,8116,,,59.04097449,,,,,0.434021962,,69849,,,8.070175439,23,2850,,,,,,,,,,,,,,,,,,,,,,,,,,12.00849536,38,322115,8.316232128,16.78066863,11.79702901,,,,,,,,,,,,,12.53950066,8.631615274,17.61012106,,,,6.208962638,20,322115,3.792595683,9.589239217,,,,,,,,,,,,,6.31636337,3.802863362,9.863783825,,,,7.975718369,36,451370,5.586095092,11.0417561,,,,,,,,,,,,,8.520810897,5.967871198,11.79639392,,,,6.181818182,,5500,,,18,16,0.704013928,36394,51695,,,0.552,,,,,68.71922888,,,,,0.706332684,21036,29782,0.686002564,0.726662805,0.116216031,3387,29144,0.101439304,0.130992757,0.872439729,25983,29782,0.857765587,0.887113871,65599,,,,,0.171527005,11252,65599,,,0.243647007,15983,65599,,,0.014481928,950,65599,,,0.003262245,214,65599,,,0.01013735,665,65599,,,0.000304883,20,65599,,,0.030793152,2020,65599,,,0.92766658,60854,65599,,,0.004117713,259,62899,0.000954825,0.0072806,0.503147914,33006,65599,,,0.321554072,21138,65737,, -36,115,36115,NY,Washington County,2024,1,7345.544696,942,167560,6540.779069,8150.310323,0,,,,2,,,,2,,,,2,,,,2,7647.781128,6791.416431,8504.145825,,,,,2,,0.147,,,0.124,0.172,3.370388273,,,2.75952258,4.003320404,4.949141818,,,4.237713581,5.676384308,0.080891885,312,3857,0.072286565,0.089497205,0,,,,,,,,,,0.104761905,0.046184194,0.163339615,0.080054645,0.071262602,0.088846688,,,,,,,0.204,,,0.167,0.243,0.347,,,0.304,0.391,8.6,0.023648603,0.097,,,0.235,,,0.199,0.273,0.647482953,39692,61302,,,0.197589976,,,0.168897813,0.228435834,0.25,7,28,0.151262701,0.356398836,147.6,90,60956,,,18.92956664,197,10407,16.28616211,21.57297117,,,,,,,,,,,,,18.69448461,15.97096642,21.4180028,,,,,,,0.057971645,2666,45988,0.04843973,0.06750356,0.000360916,22,60956,,,2770.727273,0.000213672,13,60841,,,4680.076923,0.001758683,107,60841,,,568.6074766,3003,,,,,,,,,3025,0.43,,,,,,,,,0.43,0.46,,,,,,,0.48,0.52,0.46,0.891031588,40337,45270,0.878508043,0.903555133,0.535562597,7944,14833,0.48772478,0.583400414,0.032302555,890,27552,,,0.146,1572,,0.092382979,0.199617021,,,,,,,0.02,0,0.545272082,0.109677419,0,0.277305091,0.12819198,0.092835192,0.163548769,4.083105762,121109,29661,3.64662216,4.519589364,0.198191008,2235,11277,0.148117892,0.248264125,9.186954525,56,60956,,,59.23104361,181,305583,50.60193037,67.86015686,,,,,,,,,,,,,62.54464302,53.3042625,71.78502353,,,,7.1,,,,,0,,,,,0.129494908,3115,24055,0.109402447,0.149587368,0.113860972,0.094021151,0.133700792,0.016836417,0.009805957,0.023866876,0.017044274,0.002405222,0.031683325,0.805618585,22368,27765,0.78241673,0.828820439,,,,,,,,,,,,,0.782715626,0.759852337,0.805578915,0.412,,27765,0.373007157,0.450992843,77.45661435,,,76.77977206,78.13345664,,,,,,,,,,87.56166104,77.66930154,97.45402054,77.12825631,76.42750504,77.82900759,,,,376.8377606,942,167560,351.0958192,402.5797021,,,,,,,,,,,,,389.3422087,362.1343809,416.5500366,,,,41.81767494,21,50218,25.88579988,63.92275824,,,,,,,,,,,,,41.98523887,25.27785646,65.56515131,,,,5.34351145,21,3930,3.307717808,8.168124869,,,,,,,,,,,,,,,,,,,,,,0.109,,,0.094,0.125,0.16,,,0.14,0.181,0.093,,,0.081,0.107,195.4,104,53212,,,0.097,5970,,,,0.023648603,1494.970099,63216,,,17.50872701,32,182766,11.97595631,24.71709841,,,,,,,,,,,,,18.45150231,12.53690061,26.19043468,,,,0.336,,,0.319,0.352,0.067439531,2356,34935,0.055524637,0.079354424,0.028959354,337,11637,0.019427439,0.038491269,0.000525961,32,60841,,,1901.28125,0.821379573,538.825,656,,,0.152846771,400,2617,0.068403434,0.237290109,,,,,,,,,,,,,,,,,,,,,0.077894045,,,,,8874.1835,,,,,0.837215127,46802,55902,0.763784709,0.910645544,67013,,,60519.38298,73506.61702,,,,87946,27718.59575,148173.4043,117917,86772.65957,149061.3404,86175,66893.12766,105456.8723,68425,65240.14894,71609.85106,,,,,,0.412951432,3316,8030,,,75.45382365,,,,,0.339754973,,67013,,,3.965392934,11,2774,,,,,,,,,,,,,,,,,,,,,,,,,,12.91624556,42,305583,9.140304096,17.72855617,13.74422007,,,,,,,,,,,,,12.99497552,8.99939831,18.15917576,,,,7.853840037,24,305583,5.032103505,11.68589143,,,,,,,,,,,,,8.528814957,5.464572673,12.6902006,,,,12.56945204,54,429613,9.442559227,16.40040837,,,,,,,,,,,,,13.37691347,10.02022613,17.49733217,,,,,,5300,,,13,,0.574542497,28256,49180,,,0.595,,,,,32.03166232,,,,,0.739261399,17916,24235,0.720444789,0.758078009,0.11450543,2710,23667,0.093544115,0.135466744,0.847864659,20548,24235,0.825248687,0.87048063,60841,,,,,0.181998981,11073,60841,,,0.218306734,13282,60841,,,0.025180388,1532,60841,,,0.003796782,231,60841,,,0.005851317,356,60841,,,0.000476652,29,60841,,,0.030144146,1834,60841,,,0.923374041,56179,60841,,,0.008057358,472,58580,0.004016665,0.01209805,0.482815864,29375,60841,,,0.754983524,46282,61302,, -36,117,36117,NY,Wayne County,2024,1,7920.729958,1327,248752,7200.124627,8641.33529,0,,,,2,,,,2,19554.44668,12773.61379,28651.79507,,6205.459816,3677.748769,9807.301844,1,7790.038943,7033.116942,8546.960945,,,,,2,,0.138,,,0.116,0.161,3.520477198,,,2.934366959,4.180646384,4.89192451,,,4.274566419,5.555231689,0.072481763,467,6443,0.06615054,0.078812986,0,,,,,,,0.076433121,0.034872578,0.117993664,0.076372315,0.050941194,0.101803436,0.072450963,0.065696719,0.079205207,,,,,,,0.197,,,0.16,0.236,0.363,,,0.324,0.4,8.8,0.019423485,0.088,,,0.253,,,0.216,0.288,0.636997031,58147,91283,,,0.180759509,,,0.157744361,0.205632034,0.274509804,14,51,0.20156323,0.35030076,305.8,278,90923,,,14.57919152,264,18108,12.82050859,16.33787445,,,,,,,20.30456853,10.49166685,35.46799501,30.84415584,21.82716043,42.33601373,12.77348356,10.98061637,14.56635075,,,,23.95964691,14.42527259,37.41595659,0.05742528,4177,72738,0.049084854,0.065765705,0.000230965,21,90923,,,4329.666667,0.000493827,45,91125,,,2025,0.001240055,113,91125,,,806.4159292,4221,,,,,,,7261,629,4198,0.45,,,,,,,0.36,0.35,0.45,0.45,,,,,,,0.44,0.27,0.45,0.905678021,59081,65234,0.895476408,0.915879634,0.632440975,13206,20881,0.590867283,0.674014667,0.031982893,1391,43492,,,0.142,2627,,0.096723404,0.187276596,,,,0.149038462,0,0.549692639,0.111913357,0,0.364434015,0.140479361,0.028806411,0.252152311,0.128381418,0.099079149,0.157683686,4.116237113,127768,31040,3.742100342,4.490373885,0.155675167,2979,19136,0.124538651,0.186811684,10.11845188,92,90923,,,75.84594845,342,450914,67.80744126,83.88445565,,,,,,,149.7950173,90.18638572,233.923475,,,,77.20803855,68.64079143,85.77528566,,,,7,,,,,1,,,,,0.121378755,4525,37280,0.104170301,0.13858721,0.105885551,0.090506341,0.121264762,0.015155579,0.007711649,0.02259951,0.012473176,0.00535483,0.019591522,0.801525646,34254,42736,0.781165261,0.821886031,,,,,,,0.694,0.565222926,0.822777074,0.514767933,0.39348326,0.636052605,0.786913385,0.756494797,0.817331974,0.388,,42736,0.364081018,0.411918982,77.94940924,,,77.33790328,78.56091519,,,,,,,69.79379053,64.78647474,74.80110632,81.65332603,77.44734041,85.85931166,77.96868872,77.33237113,78.60500632,,,,372.4824243,1327,248752,350.7979168,394.1669317,,,,,,,736.4809429,546.6303513,970.9583085,247.2857548,154.972666,374.3936046,370.2460225,347.6782152,392.8138297,,,,53.93032202,45,83441,39.33714695,72.16301398,,,,,,,,,,,,,50.43009668,35.1264101,70.13605661,,,,7.15046402,47,6573,5.253892008,9.508601299,,,,,,,,,,,,,6.404708326,4.509505724,8.828046762,,,,,,,0.107,,,0.092,0.123,0.156,,,0.136,0.176,0.095,,,0.082,0.107,140.7,109,77448,,,0.088,8010,,,,0.019423485,1821.378988,93772,,,18.87630469,51,270180,14.05464869,24.81885461,,,,,,,,,,,,,19.4461569,14.28830465,25.85926624,,,,0.358,,,0.341,0.377,0.067551672,3618,53559,0.055636778,0.079466566,0.029987092,604,20142,0.020455177,0.039519007,0.000691358,63,91125,,,1446.428571,0.884143969,908.9,1028,,,0.09118312,363,3981,0.051439175,0.130927064,,,,,,,,,,,,,,,,,,,,,0.079814205,,,,,11532.76291,,,,,0.794689264,46328,58297,0.763816899,0.825561628,70917,,,63942.02128,77891.97872,36078,14931.44681,57224.55319,89167,24608.53192,153725.4681,63750,30048.7234,97451.2766,45046,29057.40426,61034.59575,72635,69605.04255,75664.95745,,,,,,0.475333178,6099,12831,,,56.8025486,,,,,0.348802121,,70917,,,3.663003663,18,4914,,,3.316707678,21,633158,2.053094328,5.069940005,,,,,,,,,,,,,,,,,,,15.03204704,66,450914,11.47103551,19.34922425,14.63693742,,,,,,,,,,,,,15.99015648,12.11078837,20.71710241,,,,7.096696931,32,450914,4.854135447,10.01841861,,,,,,,,,,,,,7.176388198,4.806139805,10.30649053,,,,13.10889225,83,633158,10.44115951,16.25044425,,,,,,,,,,,,,13.72806809,10.85146815,17.13325027,,,,11.70454546,,8800,,,25,78,0.641741485,45031,70170,,,0.586,,,,,18.94637689,,,,,0.797648056,30116,37756,0.783857779,0.811438333,0.110173873,4049,36751,0.093962089,0.126385656,0.868815553,32803,37756,0.857032114,0.880598991,91125,,,,,0.207703704,18927,91125,,,0.209514403,19092,91125,,,0.028565158,2603,91125,,,0.004301783,392,91125,,,0.007220851,658,91125,,,0.000548697,50,91125,,,0.049876543,4545,91125,,,0.890271605,81126,91125,,,0.008505074,735,86419,0.004941995,0.012068154,0.497689986,45352,91125,,,0.747795318,68261,91283,, -36,119,36119,NY,Westchester County,2024,1,4769.094058,8790,2695723,4611.147419,4927.040697,0,,,,2,2528.555102,2063.13194,2993.978264,,8162.438593,7615.491032,8709.386154,,4743.882367,4452.360603,5035.40413,,4121.709471,3908.412933,4335.006008,,,,,2,,0.121,,,0.104,0.139,2.631738442,,,2.175563782,3.110297338,4.211887809,,,3.678617415,4.771942414,0.077711127,5454,70183,0.075730443,0.079691811,0,,,,0.086395622,0.078696951,0.094094293,0.126523446,0.119901514,0.133145377,0.076376055,0.07307639,0.079675719,0.061004988,0.0582725,0.063737475,,,,0.081967213,0.062094841,0.101839585,0.109,,,0.088,0.133,0.275,,,0.243,0.309,9.3,0.013585056,0.066,,,0.206,,,0.177,0.235,0.99566532,1000103,1004457,,,0.162942146,,,0.141730722,0.186122953,0.178571429,30,168,0.140996402,0.219160702,352.7,3520,997895,,,6.671611912,1493,223784,6.333191193,7.01003263,,,,1.071505108,0.599713275,1.767284725,9.374074927,8.285741265,10.46240859,16.64123818,15.63847386,17.64400251,0.977695745,0.792441611,1.162949879,,,,4.174319586,2.701399541,6.162119168,0.059948415,48089,802173,0.053990968,0.065905862,0.00131577,1313,997895,,,760.0114242,0.001104574,1094,990427,,,905.3263254,0.004607104,4563,990427,,,217.0561034,2373,,,,,,1552,3888,3087,2085,0.46,,,,,,0.38,0.41,0.39,0.49,0.56,,,,,0.49,0.54,0.38,0.4,0.59,0.892972446,620673,695064,0.888374282,0.897570609,0.762505387,185773,243635,0.74574525,0.779265525,0.031233947,15505,496415,,,0.105,21344,,0.083553192,0.126446809,0.110969388,0,0.266765089,0.067173097,0.041397305,0.092948889,0.197201061,0.164762616,0.229639505,0.151466767,0.130051856,0.172881679,0.035670612,0.026707155,0.044634069,,,,,,0.203616684,43418,213234,0.189508219,0.217725149,8.267402883,825,997895,,,44.16835296,2155,4879059,42.3035041,46.03320181,,,,20.4649108,15.72579936,26.1835109,53.63695825,48.09620306,59.17771344,30.61674204,27.53835482,33.69512927,51.61440773,48.83835327,54.39046219,,,,9.1,,,,,1,,,,,0.220575131,77970,353485,0.212615078,0.228535183,0.187530401,0.180400927,0.194659876,0.039393468,0.035600856,0.043186079,0.008133301,0.006811815,0.009454788,0.528119416,256224,485163,0.521099934,0.535138898,0.55460263,0.465177969,0.644027291,0.542237329,0.528908722,0.555565936,0.563499155,0.541922124,0.585076185,0.549216936,0.531442228,0.566991645,0.67107199,0.660933766,0.681210215,0.426,,485163,0.413446881,0.438553119,82.10040307,,,81.92330362,82.27750252,,,,89.74806141,88.37835588,91.11776693,77.90214178,77.36147923,78.44280433,84.28498567,83.65542579,84.91454555,82.59700127,82.37597366,82.81802888,,,,247.2935549,8790,2695723,241.9455079,252.6416019,,,,134.091479,118.3079458,149.8750122,430.1899378,411.0440089,449.3358667,238.9996539,227.1638018,250.835506,218.7813834,211.9828399,225.5799269,,,,29.50616827,279,945565,26.04385162,32.96848492,,,,34.4684958,21.0542527,53.23379619,53.18974829,41.0507248,67.79470051,31.23312273,25.29892969,38.14098859,19.31047476,15.35819364,23.96939081,,,,3.396949793,241,70946,2.96806892,3.825830666,,,,,,,6.276775929,4.823246966,8.030723053,3.520985876,2.823933632,4.337953077,1.927303466,1.459720824,2.497045187,,,,,,,0.085,,,0.073,0.097,0.127,,,0.111,0.144,0.088,,,0.077,0.1,403.5,3431,850225,,,0.066,66080,,,,0.013585056,12893.75298,949113,,,16.34141341,479,2931203,14.87796326,17.80486355,,,,,,,25.80689987,20.8469734,30.76682635,12.06624501,9.714987801,14.81467506,17.96934664,15.84935662,20.08933666,,,,0.333,,,0.322,0.344,0.070283782,41586,591687,0.063134846,0.077432718,0.032023323,7107,221932,0.024874386,0.039172259,0.001132845,1122,990427,,,882.7335116,0.90082933,10313.595,11449,,,0.046925292,2493,53127,0.035607245,0.05824334,,,,,,,,,,,,,,,,,,,,,0.234167135,,,,,19370.48703,,,,,0.865272315,78976,91273,0.837236864,0.893307766,108037,,,103729.766,112344.234,74063,35274.06383,112851.9362,162417,148975.8085,175858.1915,76189,71753.08511,80624.91489,83219,79695.76596,86742.23404,141737,138651.0426,144822.9575,,,,,,0.44529315,49261,110626,,,60.49099904,,,,,0.360487611,,108037,,,6.055809159,329,54328,,,2.284041999,156,6829997,1.925617359,2.642466639,,,,,,,8.634317468,6.856894395,10.73166824,1.80738837,1.228032709,2.565443522,0.881509674,0.602951964,1.244428641,,,,6.958279199,358,4879059,6.215662992,7.700895406,7.337480445,,,,6.015979189,3.56545054,9.507840764,4.333083545,2.901934055,6.223030765,4.446186418,3.349476089,5.78732277,8.797627699,7.610296212,9.984959185,,,,3.074363315,150,4879059,2.582362716,3.566363913,,,,,,,7.747560636,5.786248855,10.15989501,1.369696354,0.797898601,2.193016548,2.914970316,2.292809068,3.653940533,,,,4.070279972,278,6829997,3.591806399,4.548753546,,,,,,,5.543018621,4.139791433,7.26893146,4.897439455,3.906389511,6.063363292,3.608680226,2.99070819,4.226652262,,,,3.191056911,,98400,,,193,121,0.700104501,462265,660280,,,0.669,,,,,363.7564007,,,,,0.622733453,229004,367740,0.614875457,0.630591449,0.19667092,70443,358177,0.188928817,0.204413022,0.911489096,335191,367740,0.905411432,0.917566759,990427,,,,,0.208812967,206814,990427,,,0.184144818,182382,990427,,,0.137128733,135816,990427,,,0.010788276,10685,990427,,,0.068641101,67984,990427,,,0.001465025,1451,990427,,,0.263429814,260908,990427,,,0.514700225,509773,990427,,,0.053964941,50983,944743,0.050999172,0.056930709,0.511948887,507048,990427,,,0.04533096,45533,1004457,, -36,121,36121,NY,Wyoming County,2024,1,5974.832565,516,111110,5095.507398,6854.157731,0,,,,2,,,,2,,,,2,,,,2,6551.017482,5554.225265,7547.809699,,,,,2,,0.141,,,0.119,0.166,3.440661987,,,2.804222924,4.195383491,4.846110485,,,4.121040929,5.724460872,0.070359887,174,2473,0.060279806,0.080439967,0,,,,,,,,,,,,,0.070488323,0.060150082,0.080826563,,,,,,,0.202,,,0.161,0.242,0.391,,,0.344,0.443,8.8,0.042644503,0.079,,,0.245,,,0.206,0.289,0.650563766,26368,40531,,,0.191774497,,,0.161155003,0.225170663,0.285714286,6,21,0.169385198,0.406827936,165.5,67,40491,,,10.27538019,75,7299,8.082238348,12.88027805,,,,,,,,,,,,,9.043173862,6.933349546,11.59294076,,,,,,,0.045898867,1357,29565,0.038749931,0.053047803,0.000345756,14,40491,,,2892.214286,0.000479,19,39666,,,2087.684211,0.002521051,100,39666,,,396.66,3239,,,,,,,,,3273,0.47,,,,,,,,,0.47,0.42,,,,,,,,,0.42,0.874656908,25812,29511,0.862942488,0.886371327,0.537638554,5578,10375,0.494190459,0.581086649,0.034894346,611,17510,,,0.169,1197,,0.127297872,0.210702128,,,,,,,,,,0.425,0.182040584,0.667959416,0.1308298,0.093221328,0.168438272,3.906652608,118563,30349,3.600170496,4.21313472,0.182274038,1454,7977,0.138679034,0.225869042,14.57113927,59,40491,,,62.87644778,126,200393,51.8975486,73.85534696,,,,,,,,,,,,,68.40059392,56.31234517,80.48884267,,,,6.9,,,,,0,,,,,0.085954531,1380,16055,0.072510412,0.099398651,0.075062814,0.061673693,0.088451936,0.007100592,0.003058081,0.011143103,0.005294301,0.000599954,0.009988648,0.795620438,14170,17810,0.767707184,0.823533692,,,,,,,,,,,,,0.775291146,0.748060042,0.80252225,0.379,,17810,0.345510882,0.412489118,78.60292844,,,77.82024113,79.38561576,,,,,,,,,,,,,78.09018948,77.24732331,78.93305565,,,,312.6504146,516,111110,284.1148,341.1860292,,,,,,,,,,,,,330.2465421,299.0782698,361.4148144,,,,30.66638045,10,32609,14.70572142,56.39656549,,,,,,,,,,,,,33.06768956,15.85724247,60.81265845,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.108,,,0.093,0.125,0.156,,,0.135,0.18,0.098,,,0.085,0.113,251.9,89,35336,,,0.079,3230,,,,0.042644503,1797.679033,42155,,,18.36164086,22,119815,11.50714257,27.79974493,,,,,,,,,,,,,18.61521422,11.37065645,28.74968857,,,,0.349,,,0.331,0.365,0.053871751,1198,22238,0.044339836,0.063403666,0.022882999,177,7735,0.015734063,0.030031936,0.000630263,25,39666,,,1586.64,0.946978852,313.45,331,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.053284315,,,,,12589.473,,,,,0.792548896,45142,56958,0.734133056,0.850964735,65526,,,58695.19149,72356.80851,,,,45833,27057.51064,64608.48936,62404,60276,64532,,,,65587,62858.48936,68315.51064,,,,,,0.421284489,1817,4313,,,62.66300427,,,,,0.347465128,,65526,,,5.24383849,10,1907,,,,,,,,,,,,,,,,,,,,,,,,,,14.55965129,34,200393,9.892576661,20.66626281,16.96666051,,,,,,,,,,,,,16.6242758,11.21632907,23.7321874,,,,6.487252549,13,200393,3.454188765,11.09339943,,,,,,,,,,,,,7.229331064,3.849314321,12.36237629,,,,8.504697073,24,282197,5.44911989,12.6543151,,,,,,,,,,,,,9.088358603,5.761239746,13.63700025,,,,7.352941177,,3400,,,14,11,0.610656637,19483,31905,,,0.574,,,,,2.533753287,,,,,0.77123576,12457,16152,0.747983574,0.794487946,0.069074086,1075,15563,0.053729536,0.084418636,0.831228331,13426,16152,0.808936879,0.853519782,39666,,,,,0.182070287,7222,39666,,,0.204734533,8121,39666,,,0.042404074,1682,39666,,,0.004991681,198,39666,,,0.005294207,210,39666,,,0.000605052,24,39666,,,0.034437554,1366,39666,,,0.905384965,35913,39666,,,0.005337986,205,38404,0.001256595,0.009419376,0.461881712,18321,39666,,,0.899681725,36465,40531,, -36,123,36123,NY,Yates County,2024,1,6822.557851,342,68014,5591.413301,8053.702401,0,,,,2,,,,2,,,,2,,,,2,6937.586974,5655.564634,8219.609314,,,,,2,,0.151,,,0.122,0.182,3.420161978,,,2.763608185,4.117757567,4.991388126,,,4.218758363,5.805926786,0.039821029,89,2235,0.031714226,0.047927833,0,,,,,,,,,,,,,0.040661939,0.032244484,0.049079393,,,,,,,0.19,,,0.148,0.233,0.313,,,0.267,0.361,9,0.001792237,0.089,,,0.233,,,0.193,0.277,0.444538629,11013,24774,,,0.162272506,,,0.13595148,0.192670715,0.230769231,3,13,0.089378268,0.394382228,142.2,35,24613,,,11.49246777,74,6439,9.024059053,14.42774088,,,,,,,,,,,,,11.40425532,8.83814123,14.48300113,,,,,,,0.105970805,1931,18222,0.089289954,0.122651656,0.000487547,12,24613,,,2051.083333,0.000449879,11,24451,,,2222.818182,0.001104249,27,24451,,,905.5925926,2151,,,,,,,,,2125,0.53,,,,,,,,,0.53,0.43,,,,,,,,,0.43,0.843186433,14120,16746,0.821549466,0.864823399,0.411402463,2071,5034,0.355281684,0.467523243,0.029389084,343,11671,,,0.217,1147,,0.151468085,0.282531915,,,,,,,,,,0.598870057,0.413161853,0.78457826,0.200846945,0.154417691,0.247276199,4.118641704,118135,28683,3.438542051,4.798741358,0.191312385,1035,5410,0.139056309,0.24356846,11.78239142,29,24613,,,71.71520201,89,124102,57.59319603,88.25172712,,,,,,,,,,,,,73.95380862,59.23396906,91.22174972,,,,6.5,,,,,1,,,,,0.124157303,1105,8900,0.101574312,0.146740295,0.102552467,0.080509854,0.124595081,0.01741573,0.007227666,0.027603794,0.006741573,0.000211788,0.013271358,0.715625586,7630,10662,0.677950438,0.753300735,,,,,,,,,,,,,0.679928675,0.636995039,0.72286231,0.315,,10662,0.265599868,0.364400132,77.91992356,,,76.86904108,78.97080605,,,,,,,,,,,,,77.75530126,76.67136341,78.83923912,,,,338.0971104,342,68014,298.4822784,377.7119424,,,,,,,,,,,,,341.3905903,300.8608331,381.9203475,,,,67.52462663,17,25176,39.33558337,108.1134685,,,,,,,,,,,,,73.04288047,42.55016959,116.9487274,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.109,,,0.092,0.127,0.161,,,0.138,0.184,0.094,,,0.08,0.108,58,12,20693,,,0.089,2210,,,,0.001792237,45.42961285,25348,,,16.14943612,12,74306,8.3446493,28.20981489,,,,,,,,,,,,,17.03674258,8.803133495,29.7597607,,,,0.338,,,0.32,0.356,0.107070864,1381,12898,0.089198523,0.124943204,0.101561098,566,5573,0.069390885,0.133731311,0.000817963,20,24451,,,1222.55,0.80528169,114.35,142,,,0.10530086,147,1396,0.039100564,0.171501155,,,,,,,,,,,,,,,,,,,,,0.057646907,,,,,9912.124,,,,,0.912284119,42153,46206,0.785158045,1.039410193,62637,,,55007.89362,70266.10638,,,,37125,34954.10638,39295.89362,,,,60817,42669.42553,78964.57447,64991,61030.48936,68951.51064,,,,,,0.525953147,1145,2177,,,,,,,,0.363491227,,62637,,,2.670226969,4,1498,,,,,,,,,,,,,,,,,,,,,,,,,,12.69645873,16,124102,6.760329551,21.71133111,12.89262059,,,,,,,,,,,,,12.9097315,6.873888314,22.07603403,,,,,,,,,,,,,,,,,,,,,,,,,,,6.893659557,12,174073,3.562054488,12.04183592,,,,,,,,,,,,,7.264626114,3.753738321,12.68983984,,,,,,2400,,,5,-888,0.562314308,10788,19185,,,0.517,,,,,18.12168496,,,,,0.772573745,6862,8882,0.755993573,0.789153916,0.119512195,1029,8610,0.094320449,0.144703941,0.772010808,6857,8882,0.745095306,0.798926311,24451,,,,,0.220645372,5395,24451,,,0.224694287,5494,24451,,,0.00916118,224,24451,,,0.003067359,75,24451,,,0.007770643,190,24451,,,0.000245389,6,24451,,,0.022330375,546,24451,,,0.947691301,23172,24451,,,0.006241123,145,23233,0.00092583,0.011556415,0.506114269,12375,24451,,,0.685557439,16984,24774,, -37,000,37000,NC,North Carolina,2024,,8852.602115,158682,29513256,8786.892255,8918.311976,0,14239.6256,13445.13112,15034.12009,,3153.592635,2942.940032,3364.245239,,12482.39324,12312.58824,12652.19824,,5483.661308,5324.038813,5643.283803,,8342.718464,8260.748372,8424.688555,,12181.65294,9384.510474,14978.7954,,,0.144,,,0.132,0.157,3.260786921,,,2.992077857,3.529495986,4.496484368,,,4.159560858,4.833407878,0.093597413,78324,836818,0.092973343,0.094221483,0,0.117493734,0.11117448,0.123812989,0.089518297,0.086477338,0.092559255,0.149128406,0.147531468,0.150725343,0.076232234,0.074826211,0.077638256,0.074408115,0.073634483,0.075181747,0.109324759,0.089301526,0.129347992,0.099275771,0.095256465,0.103295078,0.15,,,0.137,0.164,0.364,,,0.346,0.383,6.8,0.075006454,0.118,,,0.216,,,0.202,0.232,0.733667529,7659040,10439388,,,0.182404092,,,0.168386164,0.197312112,0.254209888,1887,7423,0.248489306,0.259962125,603.3,63660,10551162,,,18.20578877,42988,2361227,18.03368438,18.37789316,34.12744812,31.93874705,36.31614918,4.090810577,3.629427171,4.552193982,23.64121439,23.24023674,24.04219204,33.48144743,32.85770383,34.10519102,11.9046782,11.71565733,12.09369907,26.11534276,19.25539218,34.6251557,24.19803225,23.13803659,25.25802791,0.124692804,1056777,8475044,0.121118336,0.128267272,0.000707884,7469,10551162,,,1412.660597,0.000612021,6548,10698973,,,1633.929902,0.003152265,33726,10698973,,,317.2321948,2838,,,,,4659,1578,4157,2423,2583,0.47,,,,,0.4,0.36,0.45,0.31,0.48,0.5,,,,,0.36,0.49,0.38,0.35,0.52,0.89429348,6413973,7172112,0.892634271,0.895952689,0.68935881,1872566,2716388,0.68432235,0.694395271,0.036503743,188335,5159334,,,0.173,390486,,0.165851064,0.180148936,0.280399652,0.256251419,0.304547885,0.093677902,0.080658129,0.106697675,0.299809248,0.290960824,0.308657671,0.296064964,0.286407195,0.305722734,0.102272216,0.098509125,0.106035307,4.710444785,132274,28081,4.665501908,4.755387662,0.271396204,618446,2278757,0.266484233,0.276308176,11.28311744,11905,10551162,,,87.68936133,45859,52297108,86.88677698,88.49194568,140.8433749,131.197302,150.4894479,23.29399101,20.95187622,25.6361058,87.8194157,86.08112336,89.55770803,40.26432437,38.52723708,42.00141165,99.25748408,98.17782938,100.3371388,65.37248103,41.44054526,98.09081913,7.75,,,,,0.22,,,,,0.140965475,568315,4031590,0.138997885,0.142933066,0.117897032,0.116178609,0.119615456,0.02233114,0.021546168,0.023116112,0.007470998,0.007045299,0.007896696,0.752344326,3701267,4919645,0.750010669,0.754677983,0.813926273,0.800090826,0.827761719,0.634357401,0.621027066,0.647687735,0.745507862,0.739478756,0.751536968,0.684877775,0.677320318,0.692435231,0.773473202,0.771083313,0.775863091,0.341,,4919645,0.337847616,0.344152385,76.57585128,,,76.52002721,76.63167536,72.47667119,71.87096693,73.08237546,86.50465446,85.9073748,87.10193412,73.09785102,72.96743463,73.22826741,85.44802679,84.86707757,86.028976,77.01618603,76.94849112,77.08388095,78.69761705,74.06086866,83.33436543,421.1485668,158682,29513256,418.999752,423.2973815,611.3912428,586.2650729,636.5174127,162.4161846,154.0186976,170.8136716,570.1317828,564.6024789,575.6610867,245.1893294,238.0714861,252.3071728,403.1798561,400.5833465,405.7763658,529.4163651,425.8551639,632.9775663,58.81190496,6095,10363548,57.33540152,60.2884084,88.14048754,71.28129113,104.999684,36.17264892,29.88143397,42.46386388,101.4934029,97.42177883,105.565027,46.71435593,43.48728511,49.94142675,46.31186518,44.49023596,48.1334944,153.4104319,81.68459395,262.3365107,6.956546684,5820,836622,6.777820459,7.135272909,8.596837945,6.885714776,10.60416784,3.940857507,3.271094768,4.610620246,12.67201062,12.16960904,13.1744122,5.474011658,5.075544267,5.872479049,5.014263942,4.806331776,5.222196109,,,,8.07802187,6.841678307,9.314365433,0.107503999,,,0.096826885,0.119203087,0.144826181,,,0.131807595,0.158895275,0.11,,,0.1,0.12,383.9,34327,8941041,,,0.118,1248880,,,,0.075006454,715222.7638,9535483,,,29.68704019,9393,31640069,29.08666766,30.28741272,72.33924533,63.42530373,81.25318693,3.859292186,2.744334014,5.275779465,27.305961,26.05929283,28.55262916,10.70810004,9.566510082,11.84969001,34.80660129,33.9827466,35.63045597,,,,0.317927978,,,0.302375967,0.33389703,0.150914374,938950,6221740,0.147339906,0.154488843,0.054884457,129994,2368503,0.050118499,0.059650414,0.001624175,17377,10698973,,,615.6973586,0.870770045,104853.775,120415,,,0.074662944,42409,568006,0.070652721,0.078673167,3.114699967,,,,,,3.566634652,2.720489035,2.772675438,3.452272436,3.052697173,,,,,,3.84377994,2.596343804,2.849254943,3.353097464,0.197307951,,,,,-4741.787,,,,,0.834611466,46689,55941,0.827580655,0.841642277,67516,,,66780.85106,68251.14894,43180,40823.23404,45536.76596,107025,103433.8511,110616.1489,47088,46549.44681,47626.55319,55935,54785.21277,57084.78723,74488,73862.46809,75113.53192,,,,,,0.507979002,731855,1440719,,,52.25129192,,,,,0.270190252,,,,,8.705724013,,,,,7.143379603,5178,72486698,6.948808305,7.337950902,19.76172303,16.69961232,22.82383373,1.778887885,1.264963183,2.431798299,20.50526126,19.79199856,21.21852396,4.501734673,4.003801407,4.99966794,3.13847094,2.975801428,3.301140452,,,,13.39544999,7259,52297108,13.0801845,13.71071548,13.88030864,10.58209782,8.035430532,13.67981533,6.401427901,5.149357892,7.65349791,6.554482942,6.075305364,7.033660521,6.128100886,5.325725652,6.93047612,17.06978077,16.61792608,17.52163546,,,,14.87845179,7781,52297108,14.54785692,15.20904665,22.87200106,18.98482319,26.75917893,3.923198486,3.021340885,5.009836881,23.74393381,22.84006816,24.64779946,6.652197,5.946133138,7.358260862,13.85123226,13.44791441,14.25455012,,,,15.25521276,11058,72486698,14.97087401,15.53955151,33.59492914,29.60242525,37.58743304,5.062988596,4.121095678,6.004881513,19.05213251,18.36460726,19.73965777,12.05719382,11.24229383,12.87209382,14.88469225,14.53043639,15.23894811,22.56641707,11.26507409,40.37755362,15.85560829,,800600,,,6990,5704,0.723473531,5524802,7636495,,,,,,,,73.51062342,,,,,0.662072448,2717961,4105232,0.658366689,0.665778208,0.125757597,498588,3964675,0.123906532,0.127608662,0.869716255,3570387,4105232,0.866293995,0.873138515,10698973,,,,,0.21449526,2294879,10698973,,,0.174024086,1861879,10698973,,,0.211903049,2267145,10698973,,,0.015536631,166226,10698973,,,0.035823158,383271,10698973,,,0.001484068,15878,10698973,,,0.10487072,1122009,10698973,,,0.615387944,6584019,10698973,,,0.022981349,227066,9880447,0.022416906,0.023545792,0.510249348,5459144,10698973,,,0.332841446,3474661,10439388,, -37,001,37001,NC,Alamance County,2024,1,9008.183384,2766,476705,8491.666265,9524.700502,0,,,,2,,,,2,13239.5958,11871.15083,14608.04078,,4286.687662,3404.248768,5327.961361,,8921.289558,8232.335361,9610.243756,,,,,2,,0.16,,,0.134,0.185,3.353975786,,,2.670745227,4.13872912,5.227043045,,,4.284145479,6.301898488,0.095034504,1267,13332,0.090056387,0.10001262,0,,,,0.105882353,0.068116865,0.143647841,0.145128552,0.132430687,0.157826417,0.074124914,0.064612963,0.083636865,0.081065262,0.074594159,0.087536365,,,,0.118541033,0.08361144,0.153470627,0.171,,,0.138,0.207,0.365,,,0.297,0.434,7.3,0.111119759,0.114,,,0.23,,,0.189,0.275,0.790805939,135556,171415,,,0.172324794,,,0.13787319,0.210774001,0.310679612,32,103,0.260348182,0.361634424,571.7,994,173877,,,16.13990821,742,45973,14.97857945,17.30123696,,,,,,,23.76623377,20.32280668,27.20966085,31.76341731,27.90984921,35.6169854,9.27065981,8.135003984,10.40631564,,,,26.33311389,18.81276263,35.8582271,0.140254969,19319,137742,0.125957097,0.154552842,0.00038533,67,173877,,,2595.179105,0.000561374,99,176353,,,1781.343434,0.001837224,324,176353,,,544.2993827,2980,,,,,,,3665,1668,2784,0.43,,,,,,0.2,0.42,0.28,0.44,0.51,,,,,,0.47,0.4,0.25,0.54,0.883034974,102206,115744,0.872465506,0.893604442,0.621217176,26070,41966,0.58437481,0.658059542,0.037114964,3087,83174,,,0.15,5692,,0.099957447,0.200042553,0.275641026,0,0.642237356,0.19058296,0,0.389583972,0.350773867,0.263326901,0.438220832,0.244661722,0.186518502,0.302804941,0.093371791,0.071029668,0.115713913,4.472436522,119423,26702,4.172207575,4.772665468,0.263577176,9959,37784,0.229454619,0.297699733,10.12209781,176,173877,,,97.08864466,819,843559,90.43924313,103.7380462,,,,,,,102.3463635,87.18251407,117.5102129,33.3276286,23.4657262,45.93774592,114.121116,105.0122686,123.2299634,,,,8.3,,,,,1,,,,,0.13772821,9015,65455,0.123353232,0.152103189,0.117250987,0.102904187,0.131597787,0.018104041,0.014183135,0.022024947,0.008937438,0.005629646,0.01224523,0.817117975,66055,80839,0.802780372,0.831455578,,,,0.777972028,0.648346333,0.907597723,0.825730905,0.804751118,0.846710692,0.745871782,0.695349657,0.796393908,0.801296876,0.776533237,0.826060514,0.366,,80839,0.343019385,0.388980615,75.95497256,,,75.52886065,76.38108447,,,,85.59752749,81.08134851,90.11370647,71.65146117,70.67516601,72.62775634,84.11349805,81.12276062,87.10423549,76.25243907,75.70700459,76.79787354,,,,450.9186208,2766,476705,433.457613,468.3796286,,,,,,,635.741423,589.8822739,681.6005721,228.1497486,180.9085614,283.9521112,437.1486924,415.7312573,458.5661275,,,,49.29122616,87,176502,39.48025152,60.80054537,,,,,,,88.50047016,60.53425607,124.9362578,,,,49.63983542,36.20763658,66.42200534,,,,6.762404073,89,13161,5.430765758,8.321720112,,,,,,,11.59618008,8.030691809,16.20449935,,,,5.575117371,3.945284866,7.652284172,,,,,,,0.113,,,0.097,0.13,0.167,,,0.145,0.19,0.108,,,0.092,0.125,343.6,505,146976,,,0.114,19330,,,,0.111119759,16793.64031,151131,,,27.78144743,143,514732,23.2279728,32.33492207,,,,,,,30.17871458,20.64221843,42.60334048,14.56664239,6.985271225,26.78857399,31.31919585,25.18063346,37.45775824,,,,0.32,,,0.307,0.332,0.173062723,17344,100218,0.153998894,0.192126553,0.055796165,2203,39483,0.040306804,0.071285527,0.001009339,178,176353,,,990.747191,0.875221826,1716.31,1961,,,0.06238975,672,10771,0.036241171,0.08853833,3.003315559,,,,,,3.408177547,2.688203305,2.742359943,3.327199897,2.815257171,,,,,,3.357615542,2.439537012,2.667275473,3.08719414,0.11727832,,,,,-4885.104,,,,,0.837537288,44361,52966,0.790847074,0.884227503,61034,,,56391.95745,65676.04255,56154,22472.97872,89835.02128,100938,65886.76596,135989.234,44458,37027.87234,51888.12766,56833,48964.40426,64701.59575,68378,65799.61702,70956.38298,,,,,,0.478066613,10593,22158,,,41.00239143,,,,,0.291214733,,61034,,,6.472824412,63,9733,,,6.973602761,81,1161523,5.538047201,8.667551498,,,,,,,19.40935186,14.15731443,25.97123987,,,,3.948925416,2.644657327,5.67131561,,,,13.21359082,116,843559,10.72998655,15.69719509,13.75126103,,,,,,,9.306502698,5.208778913,15.34966091,,,,16.07081573,12.78159667,19.94811975,,,,14.5810785,123,843559,12.00420462,17.15795238,,,,,,,23.97829087,17.20723552,32.52925911,,,,14.19416866,11.16461407,17.79251332,,,,13.68892394,159,1161523,11.56114346,15.81670442,,,,,,,18.546714,13.42234888,24.98230204,8.624178215,4.592011683,14.7476074,13.88932388,11.19383781,16.58480994,,,,18.0620155,,12900,,,119,114,0.713471181,86091,120665,,,0.637,,,,,79.79531834,,,,,0.66033843,44487,67370,0.648263359,0.672413501,0.112421876,7357,65441,0.099827731,0.125016021,0.86042749,57967,67370,0.846891564,0.873963416,176353,,,,,0.217835818,38416,176353,,,0.173770789,30645,176353,,,0.213475246,37647,176353,,,0.015089054,2661,176353,,,0.020390921,3596,176353,,,0.001162441,205,176353,,,0.141942581,25032,176353,,,0.600392395,105881,176353,,,0.028277318,4582,162038,0.024235813,0.032318823,0.52069996,91827,176353,,,0.264445935,45330,171415,, -37,003,37003,NC,Alexander County,2024,1,10562.19356,715,101952,9290.755153,11833.63197,0,,,,2,,,,2,8491.490647,5440.658283,12634.66499,1,,,,2,10959.21937,9538.055351,12380.3834,,,,,2,,0.152,,,0.127,0.178,3.578714255,,,2.802476381,4.490132616,4.997473506,,,3.962731807,6.17621548,0.083029567,205,2469,0.07214554,0.093913593,0,,,,,,,0.188888889,0.10802061,0.269757167,0.053763441,0.021348668,0.086178214,0.081029552,0.069352699,0.092706405,,,,,,,0.184,,,0.147,0.225,0.351,,,0.276,0.434,7.6,0.075938643,0.116,,,0.231,,,0.187,0.278,0.472560641,17222,36444,,,0.177994687,,,0.14147575,0.221042074,0.173913044,4,23,0.074750573,0.296760504,174.7,64,36644,,,19.37984496,140,7224,16.16956911,22.59012081,,,,,,,,,,29.60526316,17.54595523,46.78907939,18.20915469,14.79067812,21.62763127,,,,,,,0.12870188,3594,27925,0.11082954,0.146574221,0.000191027,7,36644,,,5234.857143,0.000219106,8,36512,,,4564,0.000794259,29,36512,,,1259.034483,3142,,,,,,,3556,,3056,0.46,,,,,,,0.67,,0.46,0.43,,,,,,0.23,0.34,0.04,0.44,0.859857392,22671,26366,0.838073858,0.881640926,0.529438982,4577,8645,0.465542143,0.593335821,0.031952597,577,18058,,,0.209,1467,,0.156574468,0.261425532,,,,,,,0.949367089,0.019708567,1,0.418449198,0.246508588,0.590389808,0.127561019,0.077840977,0.177281061,3.920297185,112391,28669,3.385994807,4.454599563,0.199190961,1428,7169,0.121576304,0.276805618,15.28217444,56,36644,,,82.69744014,154,186221,69.63609886,95.75878142,,,,,,,,,,,,,86.95544155,72.55125231,101.3596308,,,,8.4,,,,,0,,,,,0.10747331,1510,14050,0.082933995,0.132012625,0.076228324,0.054854831,0.097601817,0.02633452,0.011628643,0.041040396,0.009608541,0.002251714,0.016965368,0.852419711,13510,15849,0.826791413,0.87804801,,,,,,,,,,,,,0.791586129,0.754549939,0.828622318,0.342,,15849,0.290641418,0.393358582,74.59310985,,,73.65069907,75.53552063,,,,,,,75.3214986,71.9681905,78.67480669,90.39726582,73.29049978,107.5040319,74.2312306,73.19948122,75.26297997,,,,493.2758877,715,101952,454.5836905,531.968085,,,,,,,536.8211216,381.732295,733.8521451,,,,503.6279945,461.7523813,545.5036077,,,,67.89704339,22,32402,42.55071561,102.7969397,,,,,,,,,,,,,73.00391916,43.95312827,114.0046629,,,,8.061265619,20,2481,4.924030466,12.44997094,,,,,,,,,,,,,,,,,,,,,,0.116,,,0.099,0.134,0.168,,,0.145,0.193,0.096,,,0.081,0.113,138.9,44,31687,,,0.116,4240,,,,0.075938643,2824.765639,37198,,,14.33923034,16,111582,8.196109098,23.28601172,,,,,,,,,,,,,16.6025049,9.489766064,26.96142781,,,,0.334,,,0.319,0.349,0.155658332,3231,20757,0.133020034,0.17829663,0.052498671,395,7524,0.03581782,0.069179522,0.000438212,16,36512,,,2282,0.87,326.25,375,,,,,,,,3.137743855,,,,,,,2.795169636,2.497815902,3.254735569,3.091920304,,,,,,,2.773334063,2.742409875,3.181331977,0.044757046,,,,,-242.7305,,,,,0.85203573,41875,49147,0.749960052,0.954111407,67717,,,63805.34043,71628.65957,,,,,,,47429,22274.2766,72583.7234,65811,34097.12766,97524.87234,63203,57176.44681,69229.55319,,,,,,0.384120648,1732,4509,,,70.58682112,,,,,0.21095146,,67717,,,12.5,20,1600,,,5.364519071,14,260974,2.932832495,9.000751463,,,,,,,,,,,,,4.422860883,2.120933709,8.133798637,,,,18.65271214,34,186221,12.7584413,26.33206409,18.25787639,,,,,,,,,,,,,20.49227742,13.7239998,29.43032865,,,,18.79487276,35,186221,13.09131752,26.13911824,,,,,,,,,,,,,19.2544192,13.08244368,27.33011112,,,,19.54217662,51,260974,14.55043408,25.69435322,,,,,,,,,,,,,19.46058789,14.14009295,26.12493091,,,,18.14814815,,2700,,,26,23,0.696831956,20236,29040,,,0.663,,,,,8.767828783,,,,,0.812440956,11180,13761,0.783320748,0.841561164,0.069816116,934,13378,0.048364291,0.091267941,0.835622411,11499,13761,0.804921129,0.866323693,36512,,,,,0.195962971,7155,36512,,,0.208917616,7628,36512,,,0.055461218,2025,36512,,,0.006080193,222,36512,,,0.012187774,445,36512,,,0.000684706,25,36512,,,0.0548039,2001,36512,,,0.857608458,31313,36512,,,0.005024549,175,34829,0.000405134,0.009643963,0.484909071,17705,36512,,,0.89084623,32466,36444,, -37,005,37005,NC,Alleghany County,2024,1,8825.261208,226,29493,6622.576474,11027.94594,0,,,,2,,,,2,,,,2,,,,2,9313.230499,6739.007331,11887.45367,,,,,2,,0.194,,,0.161,0.229,4.158649721,,,3.174365749,5.139366819,5.322833565,,,4.109832949,6.513558132,0.084444444,57,675,0.06346799,0.105420899,0,,,,,,,,,,,,,0.0856102,0.062205756,0.109014645,,,,,,,0.217,,,0.17,0.264,0.373,,,0.289,0.456,7.3,0.019906552,0.158,,,0.272,,,0.219,0.326,0.369305658,4021,10888,,,0.144600626,,,0.111802109,0.178446684,0.222222222,2,9,0.058854756,0.422872156,108.6,12,11049,,,36.4640884,66,1810,28.20132333,46.39126102,,,,,,,,,,,,,36.78001388,27.55075429,48.10916373,,,,,,,0.184237331,1447,7854,0.161599033,0.206875629,0.000995565,11,11049,,,1004.454546,8.94055E-05,1,11185,,,11185,0.002413947,27,11185,,,414.2592593,2368,,,,,,,,,2310,0.39,,,,,,,,,0.39,0.43,,,,,,,,,0.43,0.822990127,7002,8508,0.777631567,0.868348687,0.52081488,1176,2258,0.407542969,0.634086792,0.038622821,175,4531,,,0.253,458,,0.157680851,0.348319149,,,,,,,,,,0.578553616,0.422991256,0.734115976,0.263595166,0.163280426,0.363909907,4.81596766,95308,19790,3.373783474,6.258151847,0.202566964,363,1792,0.106844014,0.298289914,12.67082994,14,11049,,,118.7648456,66,55572,91.85272299,151.0980034,,,,,,,,,,,,,131.0234386,100.6820078,167.6358948,,,,6.9,,,,,0,,,,,0.133,665,5000,0.093365053,0.172634947,0.120564516,0.081112968,0.160016064,0.0198,0.00087542,0.03872458,0.0088,0.000712356,0.016887644,0.767318757,3334,4345,0.691582726,0.843054789,,,,,,,,,,,,,0.77275641,0.699373667,0.846139154,0.303,,4345,0.215671064,0.390328937,77.23418729,,,75.48430689,78.98406768,,,,,,,,,,,,,76.73729323,74.81505319,78.65953326,,,,430.3397924,226,29493,365.4305607,495.249024,,,,,,,,,,,,,445.9191808,374.6822051,517.1561565,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.138,,,0.116,0.161,0.184,,,0.155,0.213,0.117,,,0.098,0.137,71.8,7,9755,,,0.158,1720,,,,0.019906552,222.0575925,11155,,,,,,,,,,,,,,,,,,,,,,,,,,0.33,,,0.313,0.347,0.215233986,1297,6026,0.186638241,0.243829731,0.084462982,162,1918,0.058250216,0.110675748,0.000536433,6,11185,,,1864.166667,0.875,91.875,105,,,,,,,,3.040600215,,,,,,,,,3.245916822,3.279475193,,,,,,,,,3.421596302,0.030700652,,,,,-4632.273,,,,,0.813326095,38951,47891,0.697850969,0.928801221,49524,,,42550.21277,56497.78723,,,,,,,46500,45775.57447,47224.42553,38125,25243.80851,51006.19149,45034,37801.65957,52266.34043,,,,,,0.540229885,752,1392,,,35.62087806,,,,,0.25189807,,49524,,,15.4185022,7,454,,,,,,,,,,,,,,,,,,,,,,,,,,30.54785971,16,55572,16.26544874,52.23777045,28.79147772,,,,,,,,,,,,,36.87645348,19.63515839,63.05985854,,,,21.59360829,12,55572,11.15773251,37.71968806,,,,,,,,,,,,,24.95684546,12.89556623,43.59458654,,,,23.29885965,18,77257,13.80838083,36.82224299,,,,,,,,,,,,,22.41917886,12.54784422,36.97702613,,,,,,700,,,-888,5,0.684234234,6076,8880,,,0.448,,,,,0.607114643,,,,,0.805144825,3975,4937,0.763597405,0.846692245,0.119248218,552,4629,0.078804205,0.159692231,0.792384039,3912,4937,0.748987984,0.835780094,11185,,,,,0.164416629,1839,11185,,,0.288869021,3231,11185,,,0.016092982,180,11185,,,0.007241842,81,11185,,,0.007957085,89,11185,,,0.000447027,5,11185,,,0.100581135,1125,11185,,,0.862405007,9646,11185,,,0.015183147,160,10538,0.000803749,0.029562544,0.506124274,5661,11185,,,1,10888,10888,, -37,007,37007,NC,Anson County,2024,1,13773.30001,587,64980,12027.64131,15518.95872,0,,,,2,,,,2,15153.38491,12652.99703,17653.77278,,,,,2,13470.98291,10701.22368,16240.74214,,,,,2,,0.21,,,0.182,0.243,4.062057601,,,3.222497327,4.996983217,4.871075554,,,3.817116413,6.032017548,0.145562771,269,1848,0.129483353,0.161642189,0,,,,,,,0.186915888,0.162293296,0.21153848,0.125,0.052528023,0.197471977,0.093495935,0.072491591,0.11450028,,,,,,,0.221,,,0.182,0.265,0.431,,,0.348,0.516,7.7,0.046267575,0.125,,,0.296,,,0.246,0.351,0.360054409,7941,22055,,,0.146975216,,,0.115865901,0.182595999,0.321428571,9,28,0.221187685,0.422182702,938.3,207,22060,,,32.14817969,151,4697,27.02046344,37.27589594,,,,,,,40.96283784,33.21810202,49.97118832,38.86925795,19.40339352,69.54783927,19.36912009,13.49130183,26.93775726,,,,,,,0.130281472,2106,16165,0.112409132,0.148153813,0.000453309,10,22060,,,2206,0.000225205,5,22202,,,4440.4,0.00090082,20,22202,,,1110.1,4260,,,,,,,4790,,3705,0.44,,,,,,,0.4,,0.47,0.41,,,,,,,0.31,,0.46,0.82488917,13025,15790,0.798570691,0.85120765,0.356978595,2018,5653,0.2928137,0.421143491,0.043567252,447,10260,,,0.326,1395,,0.217574468,0.434425532,,,,,,,0.416628805,0.316154519,0.517103091,0.12979351,0,0.298037895,0.268927923,0.127746642,0.410109203,4.63672741,85747,18493,3.621704264,5.651750557,0.472604284,2096,4435,0.396226124,0.548982445,12.23934724,27,22060,,,122.0210673,147,120471,102.2953764,141.7467582,,,,,,,105.8127635,80.93837978,135.9209213,,,,149.4489072,118.5036888,186.0021016,,,,8.4,,,,,0,,,,,0.189699133,1860,9805,0.146750456,0.23264781,0.158492514,0.11617345,0.200811578,0.022437532,0.009979016,0.034896048,0.01172871,0.000748614,0.022708806,0.768709866,6584,8565,0.720794719,0.816625013,,,,,,,0.735417639,0.635204367,0.835630911,,,,0.829023747,0.754885801,0.903161693,0.459,,8565,0.38000147,0.53799853,71.83531132,,,70.6310684,73.03955424,,,,,,,70.96121138,69.23043827,72.6919845,,,,72.07795096,70.21284574,73.94305619,,,,656.1586668,587,64980,599.9306845,712.3866491,,,,,,,750.5764651,664.1116101,837.0413202,,,,614.1598991,532.1883287,696.1314695,,,,86.00095557,18,20930,50.96961672,135.918587,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.136,,,0.117,0.156,0.176,,,0.152,0.201,0.142,,,0.122,0.163,369.1,70,18966,,,0.125,2800,,,,0.046267575,1246.818621,26948,,,25.49466737,18,70603,15.10975565,40.29256585,,,,,,,,,,,,,44.59024748,24.37790323,74.8148585,,,,0.39,,,0.377,0.402,0.159528191,1907,11954,0.135698404,0.183357979,0.048528421,216,4451,0.033039059,0.064017782,0.000360328,8,22202,,,2775.25,0.88,238.48,271,,,,,,,,2.794868535,,,,,,,2.549932042,,3.231483081,2.619177786,,,,,,,2.34824075,,3.012335446,0.056471767,,,,,-14623.95,,,,,0.904925691,35255,38959,0.754184469,1.055666914,48284,,,41641.44681,54926.55319,,,,60762,46518.93617,75005.06383,34227,29223.93617,39230.06383,38382,13477.48936,63286.51064,46456,36559.48936,56352.51064,,,,,,0.989398085,2893,2924,,,24.90360958,,,,,0.303599536,,48284,,,11.58645276,13,1122,,,22.71694684,39,171678,16.15396993,31.05481417,,,,,,,38.7841179,26.52830794,54.75160237,,,,,,,,,,15.26864086,20,120471,9.049164249,24.13103527,16.60150576,,,,,,,,,,,,,20.90279741,10.43460115,37.40087851,,,,30.71278565,37,120471,21.62463545,42.33352935,,,,,,,45.10052213,29.46115842,66.0827145,,,,20.54922473,10.25809895,36.76823933,,,,25.04689011,43,171678,18.12655856,33.7379966,,,,,,,23.02807001,13.86440244,35.96118385,,,,27.46677828,17.00236866,41.98588827,,,,35.88235294,,1700,,,21,40,0.583476675,11194,19185,,,0.513,,,,,31.66011348,,,,,0.67408662,5572,8266,0.644750346,0.703422893,0.168344371,1271,7550,0.125714158,0.210974584,0.834018873,6894,8266,0.791654715,0.876383031,22202,,,,,0.196198541,4356,22202,,,0.201378254,4471,22202,,,0.46941717,10422,22202,,,0.009954058,221,22202,,,0.016214755,360,22202,,,0.00090082,20,22202,,,0.052292586,1161,22202,,,0.439239708,9752,22202,,,0.006352819,134,21093,0,0.013954309,0.48310963,10726,22202,,,0.777692133,17152,22055,, -37,009,37009,NC,Ashe County,2024,1,9303.80209,555,72091,7896.330072,10711.27411,0,,,,2,,,,2,,,,2,,,,2,9924.195752,8359.160701,11489.2308,,,,,2,,0.153,,,0.127,0.182,3.786585436,,,2.94022565,4.726032772,5.185346854,,,4.12769435,6.335030513,0.091836735,135,1470,0.077073294,0.106600176,0,,,,,,,,,,0.076923077,0.035107216,0.118738938,0.093896714,0.077904643,0.109888784,,,,,,,0.186,,,0.147,0.228,0.382,,,0.301,0.466,7,0.105807732,0.131,,,0.23,,,0.184,0.282,0.564134402,14993,26577,,,0.167081257,,,0.132331922,0.206692811,0.111111111,2,18,0.022704408,0.253963321,168.5,45,26711,,,25.10638298,118,4700,20.57637239,29.63639357,,,,,,,,,,45.69892473,26.62130771,73.16840542,23.77486657,19.3015859,28.97394718,,,,,,,0.137045408,2668,19468,0.117981578,0.156109238,0.000486691,13,26711,,,2054.692308,0.000405754,11,27110,,,2464.545455,0.001696791,46,27110,,,589.3478261,2422,,,,,,,,,2431,0.46,,,,,,,,,0.46,0.5,,,,,,,,0.48,0.5,0.870100784,17871,20539,0.848553339,0.891648229,0.639579685,3652,5710,0.551153625,0.728005745,0.033826148,437,12919,,,0.206,911,,0.128553192,0.283446809,,,,,,,,,,0.239828694,0.056954083,0.422703305,0.16576854,0.093764408,0.237772672,4.306740028,97061,22537,3.73248199,4.880998065,0.228167146,1032,4523,0.134270339,0.322063953,9.733817528,26,26711,,,93.97244462,127,135146,77.62858077,110.3163085,,,,,,,,,,,,,101.1958783,83.52599735,118.8657592,,,,6.6,,,,,0,,,,,0.097181321,1155,11885,0.073478768,0.120883874,0.081415175,0.058576321,0.104254029,0.011779554,0.005056046,0.018503063,0.007572571,0.001493997,0.013651144,0.783996502,8965,11435,0.750156381,0.817836623,,,,,,,,,,,,,0.811187289,0.772424331,0.849950248,0.351,,11435,0.292036323,0.409963677,76.30030013,,,75.18829002,77.41231023,,,,,,,,,,,,,75.68389709,74.48647264,76.88132155,,,,455.9347629,555,72091,412.7180209,499.1515048,,,,,,,,,,,,,474.1225992,427.8247938,520.4204047,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.12,,,0.101,0.139,0.172,,,0.147,0.198,0.097,,,0.082,0.114,67.7,16,23644,,,0.131,3480,,,,0.105807732,2886.540739,27281,,,13.56684756,11,81080,6.77252142,24.27483783,,,,,,,,,,,,,14.73010432,7.353215002,26.3562255,,,,0.307,,,0.29,0.323,0.161571762,2426,15015,0.137741974,0.185401549,0.056863993,268,4713,0.040183142,0.073544844,0.00114349,31,27110,,,874.516129,0.85,183.6,216,,,,,,,,3.236929965,,,,,,,,2.709359555,3.302997347,3.162203608,,,,,,,,2.929472771,3.217877763,0.017006256,,,,,347.9824,,,,,0.944428441,39343,41658,0.74998088,1.138876003,54379,,,47715,61043,,,,,,,59097,57256.14894,60937.85106,36295,26570.06383,46019.93617,49461,45109.68085,53812.31915,,,,,,0.499638728,1383,2768,,,76.26771714,,,,,0.255539822,,54379,,,5.628517824,6,1066,,,,,,,,,,,,,,,,,,,,,,,,,,26.66919414,37,135146,18.12042351,37.85479228,27.37779883,,,,,,,,,,,,,29.06887874,19.61265042,41.4976319,,,,20.71833425,28,135146,13.76718264,29.94376152,,,,,,,,,,,,,22.48797295,14.94309471,32.50138216,,,,16.92315828,32,189090,11.57542774,23.89045009,,,,,,,,,,,,,17.21338283,11.61379711,24.57317432,,,,13.88888889,,1800,,,15,10,0.72875576,15814,21700,,,0.519,,,,,0.552431918,,,,,0.797682483,9431,11823,0.781346753,0.814018214,0.077735645,861,11076,0.053219488,0.102251802,0.793538019,9382,11823,0.760441125,0.826634913,27110,,,,,0.165805976,4495,27110,,,0.274732571,7448,27110,,,0.007893766,214,27110,,,0.005864995,159,27110,,,0.005201033,141,27110,,,0.000700848,19,27110,,,0.056584286,1534,27110,,,0.915529325,24820,27110,,,0.009604542,247,25717,0.002698172,0.016510912,0.502102545,13612,27110,,,1,26577,26577,, -37,011,37011,NC,Avery County,2024,1,8722.71854,313,48084,7028.755616,10416.68146,0,,,,2,,,,2,,,,2,,,,2,9027.605041,7200.426431,10854.78365,,,,,2,,0.156,,,0.128,0.186,3.60685599,,,2.805642462,4.492668532,5.073238081,,,4.012061537,6.192450669,0.090815274,88,969,0.072722727,0.10890782,0,,,,,,,,,,,,,0.096018735,0.076258831,0.11577864,,,,,,,0.184,,,0.142,0.23,0.365,,,0.285,0.443,8.1,0.001933961,0.131,,,0.231,,,0.185,0.284,1,17806,17806,,,0.176737027,,,0.139603064,0.215793152,0.090909091,1,11,0.004610648,0.283082638,139.9,25,17864,,,19.64038728,71,3615,15.33930541,24.7736761,,,,,,,,,,,,,19.74132063,14.99041242,25.52023477,,,,,,,0.155172414,1791,11542,0.132534116,0.177810712,0.000223914,4,17864,,,4466,0.000455296,8,17571,,,2196.375,0.00495134,87,17571,,,201.9655172,1805,,,,,,,,,1821,0.37,,,,,,,,,0.37,0.44,,,,,,,,,0.44,0.869367051,11826,13603,0.845844501,0.892889602,0.558486239,2435,4360,0.476567185,0.640405292,0.032528721,252,7747,,,0.205,502,,0.119212766,0.290787234,,,,,,,,,,0.199275362,0,0.410225067,0.107505071,0.05366126,0.161348882,4.682443196,111695,23854,3.673770374,5.691116019,0.133752621,319,2385,0.079841476,0.187663765,18.4729064,33,17864,,,82.92344916,73,88033,64.99874697,104.2637877,,,,,,,,,,,,,91.29719165,71.30386413,115.1589846,,,,6.4,,,,,0,,,,,0.117960426,775,6570,0.084332076,0.151588777,0.099923018,0.070231041,0.129614995,0.0152207,0.002754945,0.027686456,0.00456621,0,0.011496212,0.802061524,4980,6209,0.772697949,0.831425098,,,,,,,,,,,,,0.84470622,0.800653762,0.888758679,0.256,,6209,0.192481212,0.319518789,75.89206894,,,74.55424688,77.22989101,,,,,,,,,,,,,75.52762147,74.11374978,76.94149317,,,,426.0300949,313,48084,375.0496962,477.0104936,,,,,,,,,,,,,441.7886892,386.6929932,496.8843852,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.117,,,0.098,0.137,0.165,,,0.141,0.19,0.099,,,0.083,0.117,223.9,36,16080,,,0.131,2320,,,,0.001933961,34.41870223,17797,,,,,,,,,,,,,,,,,,,,,,,,,,0.311,,,0.294,0.327,0.180103673,1633,9067,0.152699417,0.207507928,0.065900383,172,2610,0.044453575,0.087347192,0.000682944,12,17571,,,1464.25,0.918558282,149.725,163,,,,,,,,2.995347983,,,,,,,,,3.036162467,2.84424646,,,,,,,,,2.857346361,0.081405468,,,,,-1904.851,,,,,1.040087223,41020,39439,0.833494814,1.246679633,53894,,,46266.08511,61521.91489,,,,181218,181039.2766,181396.7234,,,,41544,35258.89362,47829.10638,54306,49855.78723,58756.21277,,,,,,0.494716619,1030,2082,,,,,,,,0.304950458,,53894,,,17.91530945,11,614,,,,,,,,,,,,,,,,,,,,,,,,,,17.80351295,16,88033,9.964491047,29.36418713,18.17500256,,,,,,,,,,,,,20.59228063,11.52534315,33.96383532,,,,18.17500256,16,88033,10.38858434,29.51506548,,,,,,,,,,,,,20.57401502,11.75982725,33.41091143,,,,17.85163667,22,123238,11.18752566,27.02759245,,,,,,,,,,,,,19.24663184,11.91396846,29.42052125,,,,31.11111111,,900,,,9,19,0.647143346,9458,14615,,,0.343,,,,,4.505650771,,,,,0.785526925,5091,6481,0.764198726,0.806855124,0.076998209,473,6143,0.049805062,0.104191356,0.810831662,5255,6481,0.785487315,0.836176009,17571,,,,,0.142336805,2501,17571,,,0.237152126,4167,17571,,,0.040236754,707,17571,,,0.007341643,129,17571,,,0.007398554,130,17571,,,0.000910591,16,17571,,,0.05321268,935,17571,,,0.88367196,15527,17571,,,0.008685956,148,17039,0,0.018119349,0.457629048,8041,17571,,,1,17806,17806,, -37,013,37013,NC,Beaufort County,2024,1,11040.76375,932,124728,9790.018565,12291.50893,0,,,,2,,,,2,13532.08404,10869.69215,16194.47592,,6986.869588,4140.861722,11042.26617,1,11124.53015,9469.301231,12779.75907,,,,,2,,0.175,,,0.149,0.205,3.806405976,,,3.000964023,4.695154521,4.99126708,,,3.960223079,6.141961522,0.106967615,327,3057,0.096011209,0.117924021,0,,,,,,,0.174291939,0.149751256,0.198832622,0.0625,0.038777977,0.086222023,0.082480434,0.0692506,0.095710267,,,,,,,0.187,,,0.151,0.226,0.408,,,0.33,0.49,7.1,0.091894395,0.132,,,0.262,,,0.216,0.314,0.628168951,28049,44652,,,0.147923416,,,0.117147702,0.184507061,0.242424242,8,33,0.152046161,0.340132436,649.9,289,44468,,,24.16820202,223,9227,20.99609389,27.34031014,,,,,,,39.53033268,31.82083905,47.23982631,36.8338558,27.06413179,48.9812197,12.43584682,9.55604615,15.91085023,,,,38.91050584,18.65909999,71.55780561,0.137587876,4521,32859,0.120907024,0.154268727,0.000517226,23,44468,,,1933.391304,0.00038399,17,44272,,,2604.235294,0.001942537,86,44272,,,514.7906977,3241,,,,,,,6045,,2406,0.54,,,,,,,0.54,,0.54,0.49,,,,,,,0.4,0.44,0.51,0.867957423,28377,32694,0.851076457,0.88483839,0.62038835,5751,9270,0.555434867,0.685341832,0.039437327,785,19905,,,0.282,2374,,0.185489362,0.378510638,,,,,,,0.396400554,0.287266405,0.505534703,0.4743083,0.360230181,0.58838642,0.166884817,0.10606559,0.227704044,5.224704398,111793,21397,4.514191682,5.935217114,0.348209177,3043,8739,0.28225029,0.414168065,12.14356391,54,44468,,,109.5822124,255,232702,96.13209596,123.0323289,,,,,,,86.11873621,63.49715777,114.1809501,,,,131.8021663,113.6259729,149.9783596,,,,6.6,,,,,0,,,,,0.162957468,3295,20220,0.133709843,0.192205093,0.147450389,0.119757549,0.17514323,0.016271019,0.00415556,0.028386478,0.001730959,0,0.003689106,0.839086481,16019,19091,0.818796595,0.859376366,,,,,,,0.780912207,0.717748816,0.844075598,0.775371287,0.694517289,0.856225285,0.821253501,0.793533054,0.848973949,0.342,,19091,0.297259614,0.386740386,75.05802597,,,74.11531422,76.00073773,,,,,,,72.03889656,70.19483756,73.88295556,80.51506647,72.88171359,88.14841935,75.29740191,74.06947686,76.52532696,,,,482.6661041,932,124728,447.6939509,517.6382573,,,,,,,626.1750032,545.2358685,707.1141378,295.6883358,178.0236938,461.753964,465.5415108,422.3236818,508.7593398,,,,73.98638651,30,40548,49.91830429,105.6201672,,,,,,,91.78522258,44.01458188,168.7962923,,,,79.84969469,46.51538971,127.8470964,,,,10.57692308,33,3120,7.280667171,14.85393246,,,,,,,,,,,,,,,,,,,,,,0.123,,,0.106,0.143,0.173,,,0.149,0.199,0.115,,,0.098,0.134,298.5,115,38528,,,0.132,5950,,,,0.091894395,4388.784388,47759,,,33.20460533,46,138535,24.30994435,44.29029033,,,,,,,,,,,,,43.77181752,31.27122817,59.60479188,,,,0.349,,,0.334,0.361,0.164987302,4028,24414,0.142349005,0.1876256,0.060029119,536,8929,0.042156778,0.077901459,0.001016444,45,44272,,,983.8222222,0.857212476,439.75,513,,,,,,,,3.179327737,,,,,,,2.850823243,2.916168825,3.517646055,3.214643867,,,,,,,2.83480547,3.190409035,3.52116537,0.085530553,,,,,-9039.387,,,,,0.776925324,39899,51355,0.683581744,0.870268904,54415,,,47952.3617,60877.6383,,,,90500,45633.2766,135366.7234,33463,27947.59575,38978.40426,32363,18975.42553,45750.57447,66816,62116.76596,71515.23404,,,,,,0.964562943,5716,5926,,,38.66959083,,,,,0.310668014,,54415,,,8.302583026,18,2168,,,8.234745135,27,327879,5.426748932,11.98112183,,,,,,,21.4934129,12.52070507,34.41303615,,,,4.632825421,2.221619866,8.519930898,,,,18.72162535,43,232702,13.18175198,25.80529443,18.47856916,,,,,,,,,,,,,27.58476125,19.10324906,38.54693896,,,,20.62723999,48,232702,15.20889843,27.34872764,,,,,,,23.32382439,12.41895418,39.88445004,,,,22.837009,15.90681352,31.76075125,,,,18.29943363,60,327879,13.96439569,23.55499846,,,,,,,22.75773131,13.48767388,35.96702691,,,,18.06801914,12.84812787,24.69957696,,,,29.6969697,,3300,,,54,44,0.719087307,26315,36595,,,0.561,,,,,33.98800537,,,,,0.707779886,13428,18972,0.689425232,0.72613454,0.131432353,2383,18131,0.103089233,0.159775474,0.810510226,15377,18972,0.788749121,0.832271331,44272,,,,,0.193011384,8545,44272,,,0.255104807,11294,44272,,,0.229129021,10144,44272,,,0.011632635,515,44272,,,0.006189013,274,44272,,,0.000903506,40,44272,,,0.085042465,3765,44272,,,0.661885616,29303,44272,,,0.009908429,422,42590,0.00320095,0.016615908,0.516014637,22845,44272,,,0.63027412,28143,44652,, -37,015,37015,NC,Bertie County,2024,1,12846.73719,408,49453,10710.24622,14983.22817,0,,,,2,,,,2,15505.34027,12458.81676,18551.86378,,,,,2,9036.342492,6147.513414,11925.17157,,,,,2,,0.232,,,0.199,0.268,4.20459857,,,3.311013533,5.141301518,5.162994922,,,4.031128032,6.375646409,0.131756757,156,1184,0.112490942,0.151022571,0,,,,,,,0.165803109,0.139568292,0.192037926,,,,0.066312997,0.041194979,0.091431016,,,,,,,0.231,,,0.192,0.275,0.457,,,0.369,0.544,5.3,0.244853551,0.141,,,0.315,,,0.262,0.375,0.43621055,7823,17934,,,0.131055319,,,0.102258521,0.16368553,0.205882353,7,34,0.119526223,0.303561189,771.2,135,17505,,,31.96046129,97,3035,25.91778108,38.98905237,,,,,,,38.38771593,30.4390713,47.7768354,,,,17.63907734,9.392065795,30.16335946,,,,,,,0.11707655,1352,11548,0.09920421,0.134948891,0.000285633,5,17505,,,3501,0.000116009,2,17240,,,8620,0.000638051,11,17240,,,1567.272727,3865,,,,,,,4197,,3282,0.51,,,,,,,0.52,,0.5,0.34,,,,,,,0.31,,0.36,0.805363129,10812,13425,0.769500345,0.841225912,0.492004635,2123,4315,0.411250411,0.572758859,0.048729405,349,7162,,,0.349,996,,0.228659575,0.469340426,,,,,,,0.382413088,0.218257781,0.546568395,,,,0.053240741,0,0.116667197,5.467109993,91257,16692,4.51228383,6.421936156,0.558998022,1696,3034,0.401601078,0.716394967,25.13567552,44,17505,,,102.7683217,96,93414,83.24267049,125.4977102,,,,,,,89.86150756,66.90779476,118.1512869,,,,129.8982464,93.6192303,175.584693,,,,7,,,,,0,,,,,0.209113608,1675,8010,0.156608335,0.261618881,0.179075738,0.12617994,0.231971536,0.031210986,0.008543612,0.05387836,0.004993758,0,0.011798715,0.846689331,5230,6177,0.807169786,0.886208877,,,,,,,0.744306832,0.670488405,0.818125259,,,,0.788983708,0.68132899,0.896638426,0.36,,6177,0.288144202,0.431855799,73.45969041,,,71.93732457,74.98205625,,,,,,,71.30891302,69.25323534,73.36459069,,,,76.35675204,74.13290274,78.58060133,,,,561.1819115,408,49453,500.2424585,622.1213646,,,,,,,654.3852108,568.9506897,739.819732,,,,441.1883343,351.5708408,530.8058279,,,,98.4736583,14,14217,53.83646533,165.222066,,,,,,,132.39188,68.40881629,231.261971,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.142,,,0.123,0.164,0.18,,,0.155,0.207,0.155,,,0.134,0.179,478.4,74,15467,,,0.141,2550,,,,0.244853551,5210.973281,21282,,,32.62997607,18,55164,19.3385918,51.56942982,,,,,,,,,,,,,62.92936179,32.51651953,109.9249308,,,,0.412,,,0.397,0.426,0.14032682,1228,8751,0.117688522,0.162965118,0.046221323,137,2964,0.03192345,0.060519195,0.000696056,12,17240,,,1436.666667,0.825,136.95,166,,,,,,,,2.572128712,,,,,,,2.539404035,,3.116658669,2.584407095,,,,,,,2.527346009,,2.951734451,0.03035404,,,,,-20170.86,,,,,1.042871562,41329,39630,0.847926467,1.237816657,44434,,,38015.44681,50852.55319,,,,,,,32522,25499.3617,39544.6383,19167,2981.808511,35352.19149,63942,39750,88134,,,,,,0.987991266,1810,1832,,,34.5834846,,,,,0.374060404,,44434,,,14.43569554,11,762,,,14.98497756,20,133467,9.153213592,23.14308249,,,,,,,22.15466417,13.13025808,35.01392084,,,,,,,,,,10.4285901,10,93414,4.768615458,19.79671245,10.70503351,,,,,,,,,,,,,,,,,,,18.19855696,17,93414,10.60133007,29.13765262,,,,,,,21.14388413,10.92535347,36.93411046,,,,,,,,,,30.719204,41,133467,22.04463116,41.67406892,,,,,,,36.92444029,24.91276481,52.71193447,,,,23.77504485,11.86841673,42.54012258,,,,,,1200,,,-888,-888,0.623570521,9815,15740,,,0.516,,,,,4.028636938,,,,,0.749284078,5233,6984,0.702794234,0.795773922,0.193386163,1269,6562,0.137577713,0.249194613,0.637027491,4449,6984,0.584704346,0.689350637,17240,,,,,0.168097448,2898,17240,,,0.251682135,4339,17240,,,0.599187935,10330,17240,,,0.008932715,154,17240,,,0.008062645,139,17240,,,0.000986079,17,17240,,,0.026276102,453,17240,,,0.346519722,5974,17240,,,0.000234453,4,17061,0,0.005745386,0.486078886,8380,17240,,,1,17934,17934,, -37,017,37017,NC,Bladen County,2024,1,14976.05812,823,86412,13326.94336,16625.17289,0,,,,2,,,,2,19774.46247,16383.02582,23165.89912,,,,,2,13615.12525,11442.86473,15787.38578,,,,,2,,0.2,,,0.171,0.23,4.005776603,,,3.169992246,4.894538003,5.018640373,,,3.919406504,6.144353027,0.11446281,277,2420,0.101777999,0.127147621,0,,,,,,,0.16080402,0.135284078,0.186323962,0.080555556,0.05244203,0.108669081,0.08984726,0.073046921,0.106647599,,,,0.142857143,0.060881537,0.224832749,0.207,,,0.168,0.246,0.417,,,0.332,0.498,7,0.072511462,0.147,,,0.291,,,0.24,0.341,0.465142201,13771,29606,,,0.145502725,,,0.112541136,0.179242549,0.220338983,13,59,0.154117299,0.292098956,562.2,166,29525,,,29.7210791,195,6561,25.54947257,33.89268564,,,,,,,28.29758101,21.6955931,36.27622176,39.27813164,27.65542948,54.13973051,26.96404794,21.4133462,33.51384959,,,,,,,0.144960465,3190,22006,0.125896636,0.164024295,0.000237087,7,29525,,,4217.857143,0.000441486,13,29446,,,2265.076923,0.000984854,29,29446,,,1015.37931,3592,,,,,,,4166,,3290,0.42,,,,,,,0.44,,0.42,0.27,,,,,,,0.25,,0.28,0.8817164,18822,21347,0.859951832,0.903480969,0.548918961,3529,6429,0.464300527,0.633537395,0.043361553,630,14529,,,0.275,1599,,0.189212766,0.360787234,0.433544304,0,0.995387357,,,,0.477697842,0.372880769,0.582514915,0.769990128,0.645776879,0.894203377,0.244082266,0.158740681,0.329423852,6.239848328,90509,14505,4.909188526,7.570508131,0.316001342,1884,5962,0.235939442,0.396063242,15.58001694,46,29525,,,139.6561739,226,161826,121.4481845,157.8641633,,,,,,,135.8518656,106.4861765,170.813325,,,,155.7825817,129.7908375,181.774326,,,,7,,,,,0,,,,,0.164613662,2205,13395,0.131596831,0.197630492,0.160582822,0.127619106,0.193546538,0.009705114,0.002411771,0.016998457,0,0,0.003522253,0.820384215,8669,10567,0.776350981,0.864417449,0.969964664,0.900781406,1,,,,0.80111564,0.778341654,0.823889627,0.815423515,0.685524012,0.945323017,0.857607034,0.790470706,0.924743361,0.438,,10567,0.364368271,0.511631729,71.74167437,,,70.62008275,72.86326599,,,,,,,68.5769769,66.47807476,70.67587903,,,,72.64079266,71.15951053,74.12207478,,,,658.8906343,823,86412,608.9790903,708.8021782,,,,,,,832.4380482,731.4770604,933.3990361,,,,606.3708428,542.7193116,670.022374,,,,66.11225164,19,28739,39.80389424,103.2424704,,,,,,,116.5254237,58.16907169,208.4961707,,,,,,,,,,8.67768595,21,2420,5.371624374,13.26476477,,,,,,,,,,,,,,,,,,,,,,0.134,,,0.116,0.153,0.179,,,0.154,0.203,0.133,,,0.113,0.152,327.2,83,25367,,,0.147,4440,,,,0.072511462,2551.678344,35190,,,52.54418966,50,95158,38.99931034,69.27296356,,,,,,,38.2836178,19.78170397,66.87377588,,,,68.99062877,48.32018822,95.51211071,,,,0.381,,,0.367,0.393,0.175106134,2846,16253,0.150084858,0.200127411,0.061335532,372,6065,0.042271702,0.080399362,0.000984854,29,29446,,,1015.37931,0.918743169,336.26,366,,,,,,,,2.87520133,,,,,,,2.606602563,2.617653516,3.216744199,2.845820627,,,,,,,2.645570139,2.854380368,3.072338993,0.077419144,,,,,-8988.141,,,,,0.883947155,40346,45643,0.698823287,1.069071024,46002,,,40203.02128,51800.97872,49298,39632.6383,58963.3617,,,,28350,23298.08511,33401.91489,30514,27199.2766,33828.7234,52948,45121.10638,60774.89362,,,,,,0.986435569,3927,3981,,,32.92245592,,,,,0.271183862,,46002,,,11.74934726,18,1532,,,15.66000392,36,229885,10.96807422,21.68004632,,,,,,,30.00456591,19.02032097,45.02158097,,,,,,,,,,9.076815503,15,161826,4.833021975,15.52163095,9.269215083,,,,,,,,,,,,,16.32294953,8.691283166,27.91274082,,,,19.77432551,32,161826,13.52562401,27.91544751,,,,,,,33.49772029,19.85287202,52.9408398,,,,14.67517074,7.813910358,25.0949889,,,,40.02001001,92,229885,32.26177644,49.08098963,,,,,,,45.65912204,31.80325146,63.50078582,55.37405172,26.55401017,101.8348527,34.19075259,24.74401718,46.05471937,,,,11.25,,2400,,,9,18,0.672888016,17125,25450,,,0.475,,,,,2.603930882,,,,,0.69673283,7933,11386,0.664185757,0.729279903,0.188166259,1924,10225,0.147164596,0.229167923,0.803618479,9150,11386,0.777161286,0.830075671,29446,,,,,0.200570536,5906,29446,,,0.240440128,7080,29446,,,0.320518916,9438,29446,,,0.034198193,1007,29446,,,0.005128031,151,29446,,,0.000577328,17,29446,,,0.086021871,2533,29446,,,0.547374856,16118,29446,,,0.015471711,440,28439,0.00483131,0.026112113,0.521395096,15353,29446,,,1,29606,29606,, -37,019,37019,NC,Brunswick County,2024,1,9386.839189,2630,388429,8682.129795,10091.54858,0,,,,2,,,,2,12545.66637,10098.44947,14992.88328,,5446.138736,3674.486935,7774.701685,,9459.542206,8653.469234,10265.61518,,,,,2,,0.13,,,0.108,0.155,3.164743496,,,2.442501299,3.989523308,4.334090621,,,3.430474043,5.322763843,0.092898431,675,7266,0.086223596,0.099573266,0,,,,,,,0.143027414,0.119337242,0.166717585,0.084223013,0.065475117,0.102970909,0.085594192,0.078014861,0.093173522,,,,0.119815668,0.076607105,0.163024232,0.146,,,0.115,0.182,0.327,,,0.261,0.394,7.6,0.086126303,0.112,,,0.187,,,0.15,0.228,0.767625262,104929,136693,,,0.160621619,,,0.127785654,0.195293235,0.333333333,40,120,0.287225182,0.379597357,268.3,387,144215,,,22.75686091,437,19203,20.62318866,24.89053315,,,,,,,22.47605011,17.19239741,28.87142665,32.71692745,25.45572241,41.40536562,20.13422819,17.71912647,22.54932991,,,,42.55319149,29.46932213,59.46381989,0.122122749,11704,95838,0.107824877,0.136420621,0.000436848,63,144215,,,2289.126984,0.000418126,64,153064,,,2391.625,0.001169446,179,153064,,,855.1061453,1995,,,,,,,3856,3868,1870,0.59,,,,,,0.46,0.58,0.42,0.59,0.56,,,,,,0.61,0.43,0.45,0.57,0.935373967,104601,111828,0.926452754,0.944295181,0.641552155,16434,25616,0.595066372,0.688037938,0.046558705,2668,57304,,,0.165,3441,,0.101851064,0.228148936,0.040540541,0,0.415140554,,,,0.175263158,0.091158703,0.259367613,0.346710799,0.251269343,0.442152254,0.090493736,0.057524312,0.123463161,4.026796627,131789,32728,3.730243651,4.323349602,0.236737335,4757,20094,0.198100356,0.275374313,7.97420518,115,144215,,,99.04577848,697,703715,91.69259078,106.3989662,,,,,,,92.1591574,70.81762697,117.9115964,51.78514917,30.69116137,81.84286161,105.3247715,96.96639984,113.6831432,,,,6.3,,,,,0,,,,,0.147605823,8770,59415,0.130658768,0.164552879,0.135799095,0.119822377,0.151775813,0.014642767,0.009250769,0.020034765,0.006563999,0.003562659,0.009565339,0.775806626,42944,55354,0.758581655,0.793031598,,,,,,,0.769652215,0.682918824,0.856385607,0.649295173,0.563039148,0.735551198,0.730441856,0.713653426,0.747230285,0.33,,55354,0.301553581,0.358446419,77.79173383,,,77.23275085,78.35071681,,,,,,,73.67811826,71.8659169,75.49031963,86.92086202,81.6267305,92.21499354,77.7341977,77.108473,78.3599224,,,,385.4056495,2630,388429,366.4434592,404.3678399,,,,,,,522.2882426,456.0098777,588.5666074,216.1434925,155.108302,293.2230537,388.2702179,366.7151483,409.8252876,,,,59.84180004,55,91909,45.08103338,77.89232826,,,,,,,92.79568078,46.32326951,166.0371057,,,,59.97758732,42.44371047,82.32392462,,,,6.28755065,45,7157,4.586182589,8.413237459,,,,,,,,,,,,,5.782575174,3.901479187,8.25498562,,,,,,,0.098,,,0.083,0.115,0.152,,,0.129,0.177,0.088,,,0.073,0.104,145.5,189,129940,,,0.112,15030,,,,0.086126303,9252.63484,107431,,,30.72872953,134,436074,25.52579601,35.93166305,,,,,,,,,,,,,33.6420431,27.64764269,39.63644351,,,,0.328,,,0.312,0.343,0.141051935,10660,75575,0.123179595,0.158924276,0.053738208,1145,21307,0.039440336,0.06803608,0.001012648,155,153064,,,987.5096774,0.84,918.12,1093,,,0.073479539,325,4423,0.030969165,0.115989913,3.154303011,,,,,,,2.840834312,2.753431979,3.335052293,3.149485194,,,,,,,2.763657296,2.921639004,3.284018532,0.033805627,,,,,-1614.01,,,,,0.842961311,46126,54719,0.780985698,0.904936925,73536,,,68312.51064,78759.48936,58380,22991.57447,93768.42553,85192,60996.42553,109387.5745,54107,41115,67099,61505,49185,73825,73382,69714.59575,77049.40426,,,,,,0.993275317,12555,12640,,,44.42030695,,,,,0.234973346,,73536,,,3.806852334,19,4991,,,4.09048145,39,953433,2.90873218,5.591822799,,,,,,,15.84451252,8.868053378,26.13311384,,,,2.936625077,1.861568392,4.406379485,,,,16.34938917,117,703715,12.96266941,19.73610893,16.6260489,,,,,,,,,,,,,18.64626094,14.51069008,22.78183181,,,,14.35240119,101,703715,11.55329129,17.15151108,,,,,,,20.47981276,11.19650421,34.36164588,,,,14.84906615,11.87733622,18.3384759,,,,16.67657822,159,953433,14.08440241,19.26875403,,,,,,,22.18231752,13.73120417,33.90802866,,,,16.08759825,13.27853181,18.89666469,,,,16.05263158,,7600,,,50,72,0.788863617,90175,114310,,,0.538,,,,,26.65100178,,,,,0.837363539,51008,60915,0.826324989,0.84840209,0.132310189,7828,59164,0.117473508,0.14714687,0.925831076,56397,60915,0.914268124,0.937394029,153064,,,,,0.138687085,21228,153064,,,0.3400669,52052,153064,,,0.089106518,13639,153064,,,0.008480113,1298,153064,,,0.008303716,1271,153064,,,0.001175979,180,153064,,,0.052729577,8071,153064,,,0.826314483,126479,153064,,,0.004443388,598,134582,0.002670349,0.006216426,0.519070454,79451,153064,,,0.363815265,49731,136693,, -37,021,37021,NC,Buncombe County,2024,1,8211.445134,3853,729632,7802.110149,8620.780119,0,,,,2,,,,2,15295.67226,12997.9769,17593.36762,,5770.302925,4590.918304,6949.687546,,8075.172244,7618.519588,8531.8249,,,,,2,,0.127,,,0.104,0.152,3.189722354,,,2.506877365,3.973819127,4.777259205,,,3.91758319,5.707798865,0.087147372,1489,17086,0.082918122,0.091376622,0,,,,0.075697211,0.042973219,0.108421204,0.160165975,0.139457677,0.180874273,0.085244483,0.073859254,0.096629712,0.078795444,0.074131272,0.083459616,,,,0.143979058,0.108773093,0.179185022,0.144,,,0.112,0.185,0.313,,,0.257,0.374,7.3,0.098158863,0.119,,,0.18,,,0.144,0.22,0.765557502,206281,269452,,,0.19015515,,,0.156434018,0.227198169,0.245033113,37,151,0.203723659,0.287975935,367.2,997,271534,,,14.74201474,714,48433,13.66067091,15.82335857,,,,,,,28.12409394,22.8067456,34.30900955,29.48784273,25.06805901,33.90762645,10.94387474,9.867330374,12.0204191,,,,21.5350635,15.31353533,29.43914073,0.125763893,26424,210108,0.11265751,0.138870276,0.001406822,382,271534,,,710.8219895,0.000782195,214,273589,,,1278.453271,0.008183809,2239,273589,,,122.1924967,1765,,,,,,,3192,,1716,0.48,,,,,,0.31,0.44,0.32,0.48,0.53,,,,,0.52,0.49,0.36,0.45,0.54,0.921253074,184328,200084,0.912500632,0.930005515,0.720446248,53277,73950,0.684708854,0.756183641,0.029655615,4210,141963,,,0.154,7209,,0.108723404,0.199276596,,,,,,,0.317411924,0.210748855,0.424074993,0.366230678,0.275344547,0.457116808,0.087943763,0.071209567,0.104677959,4.53697716,131899,29072,4.246827741,4.827126579,0.248031252,12000,48381,0.220894945,0.275167559,12.742419,346,271534,,,107.16636,1407,1312912,101.5666246,112.7660953,,,,,,,128.3892865,103.349872,153.428701,45.48833391,32.64321377,61.71006132,113.3589915,107.0494006,119.6685824,,,,6.2,,,,,1,,,,,0.140812931,14810,105175,0.129964235,0.151661627,0.114332263,0.103135766,0.125528761,0.021773235,0.016995551,0.026550919,0.012027573,0.007851292,0.016203855,0.744036041,96779,130073,0.727089335,0.760982748,,,,0.717530864,0.582434257,0.852627472,0.690090585,0.608836257,0.771344912,0.751924325,0.685330695,0.818517955,0.779799115,0.765600249,0.793997981,0.193,,130073,0.177975891,0.208024109,77.80773698,,,77.456369,78.15910497,,,,85.06535114,82.22996069,87.9007416,70.68862129,69.13365463,72.24358795,88.06710468,81.35111416,94.7830952,77.9486037,77.56423823,78.33296917,,,,375.6157996,3853,729632,363.0294243,388.2021748,,,,,,,660.3714143,589.4263097,731.316519,289.8801524,233.6608431,346.0994617,368.5044425,354.9599294,382.0489556,,,,48.10633836,103,214109,38.81582397,57.39685276,,,,,,,115.4660337,68.43248945,182.4861137,34.71981112,16.64949898,63.85096883,46.89648084,36.75935484,58.96528387,,,,5.079071915,88,17326,4.073564197,6.257558654,,,,,,,,,,,,,4.700530705,3.603869938,6.025868224,,,,,,,0.1,,,0.084,0.118,0.156,,,0.133,0.182,0.088,,,0.074,0.102,300.9,715,237629,,,0.119,31670,,,,0.098158863,23393.02393,238318,,,41.44676853,330,796202,36.97489228,45.91864479,,,,,,,44.35058078,27.45370852,67.79457389,19.73377346,9.851028609,35.30917174,44.24204172,39.17613228,49.30795116,,,,0.305,,,0.288,0.322,0.148839936,24121,162060,0.132159085,0.165520787,0.050687047,2560,50506,0.037580664,0.06379343,0.002744993,751,273589,,,364.2996005,0.904980637,2103.175,2324,,,0.07081131,844,11919,0.045348183,0.096274436,3.346095405,,,,,,3.179054085,2.541775692,2.875410319,3.586914655,3.190938728,,,,,,3.142923339,2.311010248,2.894411094,3.405689123,0.075746478,,,,,1141.6422,,,,,0.864677677,43821,50679,0.80653453,0.922820824,67906,,,64296.97872,71515.02128,85323,49646.23404,120999.766,,,,34137,25813.25532,42460.74468,49583,34404.61702,64761.38298,69406,67026.59575,71785.40426,,,,,,0.43145606,11346,26297,,,57.84574597,,,,,0.312328808,,67906,,,7.851758794,100,12736,,,4.280591688,78,1822178,3.383630096,5.342372153,,,,,,,28.04516176,19.05532675,39.80786848,,,,2.565647688,1.824426314,3.50732485,,,,17.90174659,254,1312912,15.61882391,20.18466927,19.34630805,,,,,,,,,,10.43692711,5.004912227,19.19388055,19.5680403,16.95047128,22.18560932,,,,13.78614865,181,1312912,11.77770459,15.79459272,,,,,,,34.32188847,22.61834077,49.93654575,,,,13.25568852,11.09807149,15.41330555,,,,12.67713692,231,1822178,11.04231195,14.31196189,,,,,,,19.90301802,12.47311543,30.13340847,11.36382084,6.212706599,19.06656043,12.63088093,10.84423251,14.41752934,,,,13.80368098,,16300,,,119,106,0.794692834,161569,203310,,,0.633,,,,,87.26750293,,,,,0.643950214,66276,102921,0.629743924,0.658156505,0.122763893,12236,99671,0.111275162,0.134252625,0.856258684,88127,102921,0.84142417,0.871093198,273589,,,,,0.174670765,47788,273589,,,0.215940699,59079,273589,,,0.058185819,15919,273589,,,0.005541159,1516,273589,,,0.015091981,4129,273589,,,0.001878731,514,273589,,,0.074531505,20391,273589,,,0.827383411,226363,273589,,,0.02299602,5910,257001,0.017777884,0.028214155,0.51731612,141532,273589,,,0.223034158,60097,269452,, -37,023,37023,NC,Burke County,2024,1,10687.79762,1779,244567,9885.975475,11489.61976,0,,,,2,8557.16542,5362.73001,12955.65128,1,16055.47706,10987.71377,21123.24035,,6102.487732,4021.577868,8878.799257,,10823.69941,9925.975791,11721.42304,,,,,2,,0.175,,,0.145,0.208,3.832388106,,,3.011228731,4.798605963,5.145734443,,,4.105085537,6.274416969,0.088302752,539,6104,0.081184699,0.095420806,0,,,,0.097883598,0.067926729,0.127840467,0.168582376,0.123161917,0.214002834,0.075138122,0.057962978,0.092313266,0.084826491,0.076602105,0.093050877,,,,0.094017094,0.041132819,0.146901369,0.201,,,0.159,0.244,0.369,,,0.297,0.448,6.6,0.100051084,0.15,,,0.259,,,0.211,0.311,0.595489323,52147,87570,,,0.163132926,,,0.129352795,0.201106888,0.194805195,15,77,0.13815655,0.257076522,313.9,275,87611,,,25.22717163,397,15737,22.74558535,27.70875792,,,,,,,25.6684492,16.44625974,38.19261775,50.11655012,40.08677112,61.89353169,23.19986252,20.43254113,25.96718391,,,,,,,0.146013936,9786,67021,0.129333085,0.162694787,0.000627775,55,87611,,,1592.927273,0.000489298,43,87881,,,2043.744186,0.003186127,280,87881,,,313.8607143,2221,,,,,,841,3036,,2125,0.47,,,,,,0.25,0.42,0.48,0.48,0.48,,,,,,0.4,0.48,0.22,0.48,0.847781633,54726,64552,0.832510544,0.863052723,0.567176539,11643,20528,0.517598283,0.616754796,0.034342202,1407,40970,,,0.185,2780,,0.118276596,0.251723404,0.66539924,0.379286657,0.951511822,0.221565731,0.046408642,0.39672282,0.645604396,0.315323429,0.975885362,0.496722846,0.397629549,0.595816144,0.184142275,0.135707782,0.232576768,4.484719864,105660,23560,4.096039875,4.873399853,0.227853708,3601,15804,0.18558921,0.270118206,14.38175572,126,87611,,,106.8745552,479,448189,97.30343794,116.4456724,,,,,,,93.29647547,61.48296521,135.7414736,37.8449047,18.89204007,67.71498835,118.2023372,107.0428689,129.3618054,,,,8.2,,,,,0,,,,,0.103883359,3705,35665,0.087618644,0.120148074,0.07993708,0.06505089,0.09482327,0.025375018,0.017281023,0.033469012,0.007570447,0.003542404,0.01159849,0.849788725,32982,38812,0.831158851,0.8684186,,,,0.667974882,0.505198075,0.83075169,0.690229885,0.60708086,0.77337891,0.67838911,0.599714736,0.757063483,0.865988189,0.83923035,0.892746027,0.284,,38812,0.252566352,0.315433648,75.13261505,,,74.51391774,75.75131237,,,,80.02752165,74.47537135,85.57967196,71.20184165,67.82564903,74.57803427,,,,74.92678437,74.25389807,75.59967068,,,,504.2844933,1779,244567,479.0400539,529.5289328,,,,398.751045,270.931989,565.9952791,656.9868058,528.1852742,785.7883374,249.1426459,154.2232246,380.8409996,514.3055179,486.4152823,542.1957535,,,,53.13425698,40,75281,37.95989219,72.35377713,,,,,,,,,,,,,48.50789709,31.39175336,71.60722515,,,,7.626156093,47,6163,5.603412651,10.14117091,,,,,,,,,,,,,7.085916741,4.846761805,10.0032002,,,,,,,0.127,,,0.107,0.148,0.174,,,0.149,0.2,0.107,,,0.091,0.125,138.1,106,76731,,,0.15,13180,,,,0.100051084,9095.844152,90912,,,47.29734762,127,268514,39.0713042,55.52339105,,,,,,,,,,,,,53.70889777,43.97673464,63.44106091,,,,0.353,,,0.336,0.368,0.174617583,9041,51776,0.153170775,0.196064392,0.051164235,824,16105,0.036866362,0.065462107,0.001251693,110,87881,,,798.9181818,0.91,874.51,961,,,0.106892068,411,3845,0.040576121,0.173208014,3.097286288,,,,,,3.098721174,2.823636196,2.650245827,3.257082865,3.054521637,,,,,,3.254768465,2.577098512,2.79623861,3.151223056,0.117124904,,,,,-3296.999,,,,,0.842434232,39356,46717,0.795925591,0.888942872,60629,,,56046.53192,65211.46809,50399,25941.29787,74856.70213,68495,50421.29787,86568.70213,40979,27222.06383,54735.93617,34330,21172.38298,47487.61702,56138,52368.12766,59907.87234,,,,,,0.512057465,5988,11694,,,55.9065667,,,,,0.225568622,,60629,,,9.806266443,41,4181,,,5.43233389,34,625882,3.762049138,7.591142116,,,,,,,,,,,,,4.896152603,3.16853181,7.227687096,,,,14.7305896,75,448189,11.41600461,18.70732808,16.73401177,,,,,,,,,,,,,16.77712895,12.83317428,21.550924,,,,12.71784894,57,448189,9.632374593,16.47744844,,,,,,,,,,,,,13.43831676,9.941740714,17.76616742,,,,16.13722715,101,625882,12.99002748,19.28442681,,,,,,,,,,,,,16.64691885,13.29696752,20.58417296,,,,20.52631579,,5700,,,68,49,0.627666761,44602,71060,,,0.611,,,,,37.47495627,,,,,0.761074016,26786,35195,0.743818978,0.778329055,0.090471924,3029,33480,0.074655786,0.106288061,0.797329166,28062,35195,0.778827937,0.815830395,87881,,,,,0.17789966,15634,87881,,,0.219842742,19320,87881,,,0.061958785,5445,87881,,,0.009945267,874,87881,,,0.038188004,3356,87881,,,0.007384987,649,87881,,,0.070276852,6176,87881,,,0.807899318,70999,87881,,,0.011889257,995,83689,0.00846604,0.015312473,0.498378489,43798,87881,,,0.459232614,40215,87570,, -37,025,37025,NC,Cabarrus County,2024,1,7357.351017,2680,633717,6956.673182,7758.028851,0,,,,2,2717.349982,1722.566792,4077.35918,1,9148.658837,8122.443819,10174.87386,,5353.23128,4334.358395,6372.104164,,7611.824085,7082.016492,8141.631678,,,,,2,,0.132,,,0.111,0.155,2.92400898,,,2.286856008,3.717532236,4.241458472,,,3.386518459,5.22796953,0.088087202,1592,18073,0.083955072,0.092219332,0,,,,0.078832117,0.064562353,0.09310188,0.140726147,0.129291792,0.152160502,0.079141104,0.069873983,0.088408226,0.072704082,0.067457264,0.0779509,,,,0.082938389,0.056624993,0.109251785,0.144,,,0.113,0.176,0.326,,,0.26,0.399,8.1,0.082684936,0.089,,,0.211,,,0.171,0.253,0.621291031,140290,225804,,,0.176019166,,,0.141075847,0.215525256,0.196261682,21,107,0.148243438,0.248268302,546.1,1263,231278,,,14.0653004,722,51332,13.03932609,15.0912747,,,,,,,15.37773804,13.07955664,17.67591945,29.41176471,25.80882353,33.01470588,8.658475246,7.565302062,9.75164843,,,,26.11111111,19.18546232,34.72224241,0.108462365,21498,198207,0.096547472,0.120377259,0.000791256,183,231278,,,1263.814208,0.000517394,122,235797,,,1932.762295,0.003206148,756,235797,,,311.9007937,3761,,,,,,,4804,1643,3725,0.47,,,,,,0.36,0.45,0.25,0.48,0.48,,,,,,0.52,0.35,0.35,0.49,0.919517129,138174,150268,0.911031074,0.928003185,0.692388331,42271,61051,0.657039319,0.727737343,0.033854055,3929,116057,,,0.099,5721,,0.066829787,0.131170213,,,,,,,0.132331512,0.079371074,0.18529195,0.208563675,0.129300621,0.287826729,0.06780149,0.045470746,0.090132234,4.112006575,155109,37721,3.825517261,4.398495889,0.216036494,12313,56995,0.18561925,0.246453739,9.555599754,221,231278,,,78.1663822,850,1087424,72.91145601,83.42130839,,,,,,,65.95624246,54.78864946,77.12383547,36.54606465,26.55442652,49.06138599,95.97711696,88.64919114,103.3050428,,,,9.5,,,,,0,,,,,0.121765392,8870,72845,0.109906123,0.133624662,0.088316914,0.077664055,0.098969773,0.034319445,0.027691632,0.040947259,0.004118333,0.002388436,0.005848231,0.747308655,83579,111840,0.729947657,0.764669653,,,,0.429167826,0.34257068,0.515764973,0.714812046,0.662426796,0.767197296,0.659047979,0.603926735,0.714169223,0.751429953,0.736252964,0.766606942,0.437,,111840,0.410304256,0.463695744,77.64914968,,,77.27310272,78.02519664,,,,84.13589236,81.28866921,86.98311552,75.26665047,74.32431439,76.20898655,83.15062819,80.60791111,85.69334526,77.50205998,77.04365947,77.9604605,,,,366.0689612,2680,633717,352.045006,380.0929165,,,,156.8379042,108.6148079,219.1652508,446.8241356,409.8070723,483.8411989,265.8478242,215.1997507,316.4958977,373.9916103,356.6849875,391.298233,,,,45.39394584,111,244526,36.94908461,53.83880706,,,,,,,72.60406583,50.85099511,100.5146307,31.98318598,17.48550539,53.6623515,45.12992668,34.18096575,58.47105462,,,,5.338578252,95,17795,4.319228607,6.526135073,,,,,,,10.29109086,7.168121847,14.31241616,,,,4.498849132,3.255839424,6.059920256,,,,,,,0.097,,,0.082,0.113,0.146,,,0.125,0.168,0.096,,,0.082,0.112,226.8,433,190947,,,0.089,19700,,,,0.082684936,14718.82809,178011,,,27.0468164,181,669210,23.1064833,30.9871495,,,,,,,19.3999969,12.55465511,28.63822242,,,,35.76805864,30.00543067,41.53068661,,,,0.338,,,0.324,0.352,0.136269238,19160,140604,0.119588387,0.15295009,0.043603788,2643,60614,0.032880384,0.054327192,0.001696374,400,235797,,,589.4925,0.900169673,2944.455,3271,,,0.099688237,1311,13151,0.062270046,0.137106428,3.09297638,,,,,,3.700832122,2.814659096,2.615148947,3.355734861,3.048298982,,,,,,3.889088096,2.641738164,2.672431719,3.314898752,0.095501811,,,,,-5273.239,,,,,0.822178879,49741,60499,0.769115829,0.87524193,79649,,,72977.85106,86320.14894,,,,147898,114768.6383,181027.3617,59392,45961.53192,72822.46809,71202,60488.12766,81915.87234,86449,82011.89362,90886.10638,,,,,,0.38806414,15658,40349,,,29.35170248,,,,,0.270197994,,79649,,,5.467269281,75,13718,,,3.567159518,53,1485776,2.672047262,4.665932478,,,,,,,11.0964802,7.486748591,15.84091546,,,,1.882817616,1.115877046,2.975663564,,,,10.40173913,115,1087424,8.476217285,12.32726098,10.57545171,,,,,,,,,,,,,12.98998319,10.45872416,15.94882085,,,,9.931728562,108,1087424,8.05859375,11.80486337,,,,,,,13.28969065,8.757989876,19.33580215,,,,10.486119,8.204742302,13.20553143,,,,11.711052,174,1485776,9.970939383,13.45116462,,,,,,,13.31577624,9.326205972,18.43464709,13.6966686,8.583629289,20.73692086,11.61070863,9.450710831,13.77070643,,,,7.537688442,,19900,,,115,35,0.788107163,117227,148745,,,0.633,,,,,58.21447477,,,,,0.729877732,56113,76880,0.717234492,0.742520971,0.102758226,7723,75157,0.089386019,0.116130434,0.904656608,69550,76880,0.891999326,0.917313889,235797,,,,,0.248361938,58563,235797,,,0.137614134,32449,235797,,,0.204816007,48295,235797,,,0.00738347,1741,235797,,,0.064636107,15241,235797,,,0.001204426,284,235797,,,0.119072762,28077,235797,,,0.587280585,138479,235797,,,0.013642372,2900,212573,0.010158972,0.017125772,0.508696039,119949,235797,,,0.17272059,39001,225804,, -37,027,37027,NC,Caldwell County,2024,1,11767.69682,1799,224281,10870.43499,12664.95866,0,,,,2,,,,2,18574.06549,13134.5464,24013.58458,,7448.925103,4820.551574,10996.08289,,11598.67507,10651.57497,12545.77517,,,,,2,,0.168,,,0.14,0.2,3.837865704,,,3.002471492,4.770940645,4.99514255,,,3.942016316,6.19483038,0.099618251,548,5501,0.09170385,0.107532652,0,,,,,,,0.181818182,0.136231992,0.227404371,0.078629032,0.054941274,0.10231679,0.096530249,0.087897851,0.105162647,,,,0.098159509,0.052482956,0.143836062,0.195,,,0.154,0.239,0.366,,,0.292,0.445,6.4,0.153683142,0.135,,,0.245,,,0.197,0.297,0.799397411,64473,80652,,,0.161708612,,,0.128580284,0.198401787,0.12,6,50,0.059332716,0.19811466,325.6,262,80463,,,24.97064095,404,16179,22.53566275,27.40561916,,,,,,,30.75170843,20.26556963,44.74212124,33.56164384,24.82908887,44.37027301,22.59541985,20.02128893,25.16955077,,,,52.08333333,35.14040629,74.35219687,0.137812149,8714,63231,0.121131298,0.154493,0.000497123,40,80463,,,2011.575,0.000335437,27,80492,,,2981.185185,0.001093276,88,80492,,,914.6818182,2776,,,,,,,5170,,2751,0.49,,,,,,,0.43,0.5,0.49,0.5,,,,,,0.44,0.4,0.41,0.5,0.818617103,47700,58269,0.799803696,0.837430511,0.566330532,10109,17850,0.516707838,0.615953226,0.035706456,1303,36492,,,0.239,3682,,0.181808511,0.296191489,,,,,,,0.436528497,0.176502003,0.696554992,0.335355764,0.177284275,0.493427253,0.161083744,0.126296624,0.195870863,4.587899102,106765,23271,4.206729823,4.969068381,0.241353477,3866,16018,0.195760453,0.286946502,12.67663398,102,80463,,,95.41261061,390,408751,85.94305614,104.8821651,,,,,,,142.0310439,94.37859722,205.2744037,,,,97.33801684,87.06663162,107.6094021,,,,8.1,,,,,0,,,,,0.11875,3895,32800,0.100342399,0.137157601,0.086902928,0.07106821,0.102737646,0.024390244,0.015811636,0.032968852,0.013567073,0.005719252,0.021414895,0.828902619,29247,35284,0.804888558,0.85291668,,,,,,,0.688979592,0.539228713,0.838730471,0.733428368,0.594270749,0.872585987,0.818785786,0.777245287,0.860326286,0.331,,35284,0.298413256,0.363586744,73.35523319,,,72.71284677,73.99761962,,,,,,,68.94839984,65.40572342,72.49107626,91.13838233,73.79595723,108.4808074,73.3616128,72.6917424,74.0314832,,,,554.9013364,1799,224281,527.2875107,582.5151622,,,,,,,701.950385,558.0108656,845.8899044,330.2800799,221.1937531,474.3372882,560.3792427,530.836205,589.9222804,,,,66.87658484,48,71774,49.30951434,88.66864907,,,,,,,,,,,,,57.1214366,39.07102035,80.63842502,,,,7.250317201,40,5517,5.179732906,9.872874201,,,,,,,,,,,,,5.067195418,3.212167226,7.603281096,,,,,,,0.125,,,0.106,0.144,0.175,,,0.15,0.202,0.104,,,0.088,0.121,137.1,95,69308,,,0.135,10890,,,,0.153683142,12760.15762,83029,,,37.99935442,93,244741,30.67038327,46.55177638,,,,,,,,,,,,,37.86086134,30.02130837,47.12111925,,,,0.334,,,0.316,0.35,0.167443823,7936,47395,0.144805525,0.190082121,0.051037544,851,16674,0.036739671,0.065335416,0.001205089,97,80492,,,829.814433,0.87,841.29,967,,,0.13065064,500,3827,0.061260028,0.200041252,3.172711698,,,,,,,2.745042539,2.974359965,3.248531224,2.965026278,,,,,,,2.531054623,2.842093287,3.035406185,0.067808076,,,,,-1804.626,,,,,0.817502646,40159,49124,0.755899324,0.879105969,53586,,,47800.12766,59371.87234,23833,9083.553192,38582.44681,116740,6017.276596,227462.7234,29913,6683.723404,53142.2766,50412,37842.97872,62981.02128,52928,50102.97872,55753.02128,,,,,,0.430221896,4692,10906,,,57.5130791,,,,,0.27018251,,53586,,,11.7965102,48,4069,,,5.599427459,32,571487,3.830004237,7.904720856,,,,,,,,,,,,,4.019971217,2.455502855,6.208519505,,,,16.69766551,72,408751,12.85923709,21.32254608,17.61463581,,,,,,,,,,,,,17.51252962,13.29799796,22.63900555,,,,16.63604493,68,408751,12.91853983,21.09015101,,,,,,,50.72537283,24.32478795,93.28576667,,,,15.51765486,11.69002129,20.19836077,,,,14.69849708,84,571487,11.72409692,18.19773954,,,,,,,,,,,,,14.8738935,11.67920554,18.67281123,,,,18.07017544,,5700,,,67,36,0.670250391,42829,63900,,,0.655,,,,,30.06795346,,,,,0.745547945,23947,32120,0.723468614,0.767627277,0.084257493,2606,30929,0.068409952,0.100105034,0.831600249,26711,32120,0.811755504,0.851444994,80492,,,,,0.195211947,15713,80492,,,0.212754063,17125,80492,,,0.049806192,4009,80492,,,0.006882672,554,80492,,,0.008659246,697,80492,,,0.001292054,104,80492,,,0.065323262,5258,80492,,,0.856668986,68955,80492,,,0.006503493,499,76728,0.003420308,0.009586678,0.502236247,40426,80492,,,0.428210088,34536,80652,, -37,029,37029,NC,Camden County,2024,1,7554.532999,149,30429,5536.256058,9572.809939,0,,,,2,,,,2,9451.876945,3800.144749,19474.47896,1,,,,2,7657.410621,5403.778308,9911.042933,,,,,2,,0.132,,,0.11,0.155,3.240549022,,,2.521875519,4.137109859,4.790130564,,,3.819108952,5.957888387,0.084745763,55,649,0.063318653,0.106172872,0,,,,,,,,,,,,,0.08438061,0.061296811,0.10746441,,,,,,,0.159,,,0.126,0.196,0.336,,,0.262,0.422,8.8,0.010496471,0.094,,,0.204,,,0.165,0.249,0.315113472,3263,10355,,,0.189819667,,,0.151076324,0.234241988,0.285714286,2,7,0.086061846,0.500925625,276.9,30,10835,,,8.910490077,22,2469,5.584156692,13.49058906,,,,,,,,,,,,,9.839461419,5.923998532,15.36553784,,,,,,,0.123459507,1122,9088,0.105587167,0.141331848,0.000184587,2,10835,,,5417.5,,0,11088,,,,0.000450938,5,11088,,,2217.6,3298,,,,,,,,,3717,0.55,,,,,,,0.49,,0.56,0.44,,,,,,,0.37,,0.45,0.922633745,6726,7290,0.889298234,0.955969256,0.73943662,1890,2556,0.589848338,0.889024902,0.037961186,178,4689,,,0.092,230,,0.057446809,0.126553192,,,,,,,,,,,,,0.095675676,0.005855291,0.18549606,3.485668747,129029,37017,2.370617518,4.600719976,0.183266932,460,2510,0.069559705,0.29697416,10.15228426,11,10835,,,88.9267651,48,53977,65.5675766,117.9039891,,,,,,,,,,,,,101.2192317,73.54604867,135.882094,,,,6.6,,,,,0,,,,,0.097186701,380,3910,0.058977877,0.135395524,0.08286445,0.040458173,0.125270727,0.015345269,0,0.032088555,0,0,0.009049982,0.781687243,3799,4860,0.715283736,0.848090749,,,,,,,,,,,,,0.593818985,0.469550496,0.718087474,0.419,,4860,0.322129643,0.515870357,77.60826848,,,75.87831497,79.33822199,,,,,,,,,,,,,77.53815743,75.5866689,79.48964596,,,,365.2134612,149,30429,304.0039776,426.4229448,,,,,,,402.2760265,234.3406098,644.0828875,,,,373.6845456,305.2281109,442.1409802,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.102,,,0.087,0.119,0.157,,,0.133,0.182,0.091,,,0.078,0.107,98.8,9,9110,,,0.094,970,,,,0.010496471,104.7547798,9980,,,,,,,,,,,,,,,,,,,,,,,,,,0.327,,,0.312,0.342,0.140767825,924,6564,0.118129527,0.163406122,0.079652699,211,2649,0.053439933,0.105865465,,0,11088,,,,0.925,132.275,143,,,,,,,,3.649047901,,,,,,,,,3.697739542,3.474422174,,,,,,,,,3.536977846,0.011140572,,,,,1512.343,,,,,0.80069779,48194,60190,0.576055124,1.025340457,82620,,,72209.95745,93030.04255,,,,,,,76827,58351.76596,95302.23404,,,,76275,60325.7234,92224.2766,,,,,,0.189893617,357,1880,,,18.12352594,,,,,0.179472283,,82620,,,5.328596803,3,563,,,,,,,,,,,,,,,,,,,,,,,,,,31.6160407,16,53977,18.07129899,51.34246934,29.64225504,,,,,,,,,,,,,38.99040949,21.82263621,64.30875098,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,900,,,8,-888,0.730429448,5953,8150,,,0.687,,,,,7.791383969,,,,,0.840609662,3254,3871,0.786222583,0.894996741,0.101846966,386,3790,0.050639749,0.153054182,0.929475588,3598,3871,0.891051281,0.967899894,11088,,,,,0.227092352,2518,11088,,,0.168019481,1863,11088,,,0.094877345,1052,11088,,,0.005681818,63,11088,,,0.018398268,204,11088,,,0.001352814,15,11088,,,0.043019481,477,11088,,,0.809253247,8973,11088,,,0.004613842,46,9970,0,0.015793842,0.491973305,5455,11088,,,0.947561565,9812,10355,, -37,031,37031,NC,Carteret County,2024,1,9383.237131,1331,186373,8454.984474,10311.48979,0,,,,2,,,,2,17788.09655,12163.49601,23412.69709,,,,,2,9409.499799,8395.371461,10423.62814,,,,,2,,0.128,,,0.105,0.153,3.226225796,,,2.503882502,4.030974906,4.622648322,,,3.674173241,5.691983474,0.074888641,269,3592,0.066280827,0.083496456,0,,,,,,,0.136645963,0.08358978,0.189702145,0.09375,0.060085709,0.127414291,0.070063694,0.060903545,0.079223844,,,,,,,0.157,,,0.121,0.195,0.325,,,0.256,0.399,7.6,0.077033381,0.117,,,0.194,,,0.155,0.24,0.832712821,56363,67686,,,0.168775733,,,0.136010335,0.207049111,0.186046512,8,43,0.110986774,0.272151137,223.2,153,68541,,,13.17915143,155,11761,11.1043446,15.25395827,,,,,,,13.85041551,6.641812599,25.47140726,27.02702703,17.13281673,40.55381069,11.39721401,9.247687052,13.54674098,,,,22,10.98232073,39.36407703,0.127107859,6392,50288,0.111618497,0.14259722,0.000612772,42,68541,,,1631.928571,0.000835976,58,69380,,,1196.206897,0.001873739,130,69380,,,533.6923077,3217,,,,,,,4274,,3212,0.5,,,,,,0.38,0.54,0.5,0.5,0.5,,,,,,0.51,0.4,0.32,0.5,0.921207009,48052,52162,0.910925711,0.931488307,0.722320481,10210,14135,0.67248156,0.772159402,0.034607871,1116,32247,,,0.17,1935,,0.112808511,0.227191489,0.126582279,0,0.307921493,0.040358744,0,0.431243452,0.201729107,0.046582246,0.356875968,0.201044386,0.063568313,0.33852046,0.086476748,0.059214719,0.113738778,4.46471024,126579,28351,4.094231545,4.835188935,0.213851554,2498,11681,0.17064916,0.257053948,12.69313258,87,68541,,,102.6079768,355,345977,91.93407954,113.2818741,,,,,,,91.9067957,53.53909537,147.1516831,,,,110.594336,98.67985961,122.5088123,,,,5.8,,,,,0,,,,,0.117265469,3525,30060,0.104415787,0.130115152,0.10250884,0.089120124,0.115897556,0.009481038,0.005826794,0.013135282,0.008982036,0.004274479,0.013689593,0.812300532,24434,30080,0.797700994,0.82690007,,,,,,,0.667638484,0.555185534,0.780091434,0.820546164,0.690877722,0.950214605,0.810544218,0.78276409,0.838324345,0.309,,30080,0.280553581,0.337446419,76.66463404,,,75.93000612,77.39926195,,,,,,,70.58785721,66.87678103,74.29893339,97.98213374,72.08990842,123.8743591,76.59366774,75.80721691,77.38011856,,,,429.6342621,1331,186373,403.0126826,456.2558415,,,,,,,775.4014121,613.9285645,936.8742598,,,,429.3439688,400.6587662,458.0291714,,,,55.34879282,29,52395,37.06795522,79.49009913,,,,,,,,,,,,,58.95357406,37.77266729,87.71824513,,,,5.65123789,21,3716,3.498205324,8.638517421,,,,,,,,,,,,,,,,,,,,,,0.102,,,0.086,0.12,0.156,,,0.133,0.182,0.087,,,0.073,0.102,131.8,80,60683,,,0.117,7980,,,,0.077033381,5120.331777,66469,,,38.54084366,80,207572,30.56049207,47.96741611,,,,,,,,,,,,,41.76272093,32.84902927,52.34993232,,,,0.322,,,0.305,0.337,0.146540098,5650,38556,0.127476268,0.165603927,0.06558305,811,12366,0.04771071,0.083455391,0.001657538,115,69380,,,603.3043478,0.85,538.05,633,,,,,,,,3.329326846,,,,,,,2.938753776,2.82099184,3.442650033,3.299168798,,,,,,,2.749290585,2.871193058,3.425826348,0.045099575,,,,,983.3682,,,,,0.822948797,45356,55114,0.737142711,0.908754883,67806,,,61674.59575,73937.40426,44688,42593.3617,46782.6383,65450,24785.65957,106114.3404,34605,11380.48936,57829.51064,52102,25888.04255,78315.95745,68656,66315.91489,70996.08511,,,,,,0.719688403,5728,7959,,,63.174673,,,,,0.239182373,,67806,,,7.33406674,20,2727,,,3.720961,18,483746,2.205277311,5.880722583,,,,,,,,,,,,,3.589169323,2.008830824,5.919788974,,,,22.23326868,74,345977,17.08465411,28.4460088,21.38870503,,,,,,,,,,,,,25.12585849,19.07911777,32.48099859,,,,17.34219327,60,345977,13.23392045,22.32284036,,,,,,,,,,,,,18.71082421,14.13395553,24.29756158,,,,11.36960306,55,483746,8.565140998,14.79910118,,,,,,,,,,,,,11.24606388,8.263184734,14.95488087,,,,18.40909091,,4400,,,43,38,0.757876986,42695,56335,,,0.453,,,,,49.22962275,,,,,0.729072138,22174,30414,0.713120077,0.745024199,0.110659549,3213,29035,0.096800538,0.12451856,0.910666141,27697,30414,0.899348448,0.921983833,69380,,,,,0.166762756,11570,69380,,,0.273032574,18943,69380,,,0.049250505,3417,69380,,,0.006932834,481,69380,,,0.011617181,806,69380,,,0.002118766,147,69380,,,0.046641684,3236,69380,,,0.866315941,60105,69380,,,0.003636308,239,65726,0.000942284,0.006330332,0.50781205,35232,69380,,,0.305971693,20710,67686,, -37,033,37033,NC,Caswell County,2024,1,10348.99223,483,61481,8760.948551,11937.0359,0,,,,2,,,,2,11666.77967,8406.134392,14927.42496,,,,,2,10459.36566,8439.249253,12479.48208,,,,,2,,0.181,,,0.156,0.209,3.786450541,,,3.001142673,4.666140763,5.066751893,,,4.015934312,6.226922571,0.110315186,154,1396,0.093880966,0.126749407,0,,,,,,,0.194986072,0.154002261,0.235969883,,,,0.080183276,0.062167976,0.098198576,,,,,,,0.196,,,0.16,0.236,0.397,,,0.317,0.483,7.8,0.030131168,0.128,,,0.255,,,0.21,0.306,0.443525686,10084,22736,,,0.15293458,,,0.121435443,0.189472994,0.296296296,8,27,0.194109996,0.401266591,396.2,90,22714,,,21.90524707,86,3926,17.52137016,27.05280193,,,,,,,15.06276151,8.927147097,23.80565713,42.25352113,21.83301095,73.80839806,22.5464191,16.78728994,29.64437727,,,,,,,0.136240286,2209,16214,0.117176456,0.155304116,0.000220129,5,22714,,,4542.8,0.000221102,5,22614,,,4522.8,0.000619086,14,22614,,,1615.285714,2574,,,,,,,3195,,2182,0.44,,,,,,,0.4,,0.46,0.42,,,,,,,0.29,,0.47,0.836980634,13960,16679,0.808171953,0.865789316,0.526158147,2635,5008,0.437272515,0.615043779,0.04038202,389,9633,,,0.24,958,,0.150638298,0.329361702,,,,,,,0.381847915,0.269330049,0.494365781,0.208542714,0,0.424493703,0.125368732,0.070493989,0.180243474,4.577271927,103959,22712,3.80297497,5.351568883,0.247447739,1018,4114,0.182420179,0.3124753,13.20771331,30,22714,,,123.7787896,140,113105,103.2748042,144.2827751,,,,,,,97.18442828,67.69251514,135.1600138,,,,146.4744612,117.9079441,175.0409784,,,,8,,,,,1,,,,,0.096164536,865,8995,0.070690887,0.121638185,0.090500281,0.064626395,0.116374167,0.006114508,0,0.01260755,0.002779322,0,0.00815688,0.866233062,7991,9225,0.842319415,0.89014671,,,,,,,0.851754386,0.75568487,0.947823902,,,,0.749134282,0.664072837,0.834195728,0.521,,9225,0.449203497,0.592796503,74.75866272,,,73.56644694,75.9508785,,,,,,,74.16101492,71.77818007,76.54384977,,,,74.32106199,72.8473158,75.79480818,,,,503.7886694,483,61481,454.4539293,553.1234095,,,,,,,516.1906932,425.0887897,607.2925967,,,,526.1002342,462.3634234,589.837045,,,,54.03360891,10,18507,25.91121574,99.3697306,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.123,,,0.106,0.141,0.169,,,0.146,0.194,0.12,,,0.103,0.139,318,63,19812,,,0.128,2910,,,,0.030131168,714.6811731,23719,,,23.61240241,16,67761,13.49652817,38.3450622,,,,,,,,,,,,,29.08385846,15.02805407,50.80364772,,,,0.355,,,0.341,0.368,0.162317886,1972,12149,0.138488099,0.186147674,0.06016791,258,4288,0.04229557,0.078040251,0.000707526,16,22614,,,1413.375,0.875,173.25,198,,,,,,,,3.131588218,,,,,,,2.960313251,,3.294840151,3.034460806,,,,,,,2.708748329,,3.170470745,0.031353923,,,,,-7262.479,,,,,0.728581611,35777,49105,0.631685998,0.825477224,54215,,,47228.10638,61201.89362,,,,,,,50982,34118.85106,67845.14894,77100,4236.851064,149963.1489,58343,49906.06383,66779.93617,,,,,,0.723642889,1613,2229,,,33.29023411,,,,,0.271382459,,54215,,,7.744433688,8,1033,,,8.807468734,14,158956,4.815125114,14.77743597,,,,,,,,,,,,,,,,,,,12.17898099,17,113105,6.816483209,20.08737702,15.0302816,,,,,,,,,,,,,19.02896673,10.40331318,31.92737277,,,,18.56681844,21,113105,11.49315325,28.38135426,,,,,,,,,,,,,23.20387505,13.26301948,37.68163935,,,,30.82614057,49,158956,22.80534849,40.75379262,,,,,,,27.48978951,15.02892373,46.12319573,,,,32.95877064,22.54377472,46.52795015,,,,14.28571429,,1400,,,5,15,0.662324815,12051,18195,,,0.57,,,,,6.42524,,,,,0.755377924,6426,8507,0.715403724,0.795352125,0.092258224,746,8086,0.064344853,0.120171595,0.770424356,6554,8507,0.734988239,0.805860474,22614,,,,,0.178827275,4044,22614,,,0.235340939,5322,22614,,,0.309498541,6999,22614,,,0.009463164,214,22614,,,0.007473247,169,22614,,,0.000309543,7,22614,,,0.052401167,1185,22614,,,0.607543999,13739,22614,,,0.012173833,265,21768,0.00113734,0.023210327,0.478508888,10821,22614,,,0.998284659,22697,22736,, -37,035,37035,NC,Catawba County,2024,1,9914.891843,2826,445778,9338.001474,10491.78221,0,,,,2,6344.841039,4511.802226,8673.606571,,16146.03075,13581.1797,18710.88181,,5813.159419,4505.118703,7382.506973,,10021.31331,9333.509431,10709.11719,,,,,2,,0.155,,,0.13,0.182,3.696816188,,,2.878895976,4.513920557,5.072328029,,,4.043877172,6.104300736,0.0856306,994,11608,0.08054019,0.090721009,0,,,,0.077008929,0.059551858,0.094465999,0.159217877,0.137335647,0.181100107,0.068158169,0.056891139,0.079425198,0.079401768,0.073222815,0.08558072,,,,0.103975535,0.07089232,0.137058751,0.173,,,0.138,0.214,0.36,,,0.291,0.437,7.3,0.097878328,0.12,,,0.244,,,0.199,0.293,0.560102111,89958,160610,,,0.178953495,,,0.144937535,0.217973681,0.27826087,32,115,0.230534931,0.327256047,382.8,619,161723,,,18.24231299,636,34864,16.82453765,19.66008832,,,,15.94650206,10.83487448,22.63478678,27.9196459,22.20532294,34.6556422,25.07429421,20.84451299,29.30407542,14.72945458,13.16377359,16.29513557,,,,32.72727273,23.8714973,43.79166582,0.134727866,17506,129936,0.120429994,0.149025738,0.000636892,103,161723,,,1570.126214,0.000617881,101,163462,,,1618.435644,0.002642816,432,163462,,,378.3842593,2187,,,,,,291,3623,,2137,0.48,,,,,,0.34,0.43,0.28,0.49,0.51,,,,,,0.52,0.4,0.3,0.52,0.873878294,97967,112106,0.861149353,0.886607235,0.621031329,23629,38048,0.582980665,0.659081993,0.034350762,2737,79678,,,0.164,5631,,0.116340426,0.211659575,0.383647799,0.062175646,0.705119952,0.168410042,0.085031324,0.25178876,0.418290855,0.258634038,0.577947671,0.329326163,0.261803218,0.396849108,0.11565251,0.085418819,0.145886202,4.284546887,116921,27289,3.980144792,4.588948983,0.27851034,9737,34961,0.243002488,0.314018192,14.22184847,230,161723,,,88.32295382,705,798207,81.80314145,94.84276619,,,,56.11199955,34.27466708,86.66043235,108.1241206,84.75205054,135.9498485,36.99958067,24.96346171,52.81920204,95.96012882,88.10289671,103.8173609,,,,8.3,,,,,0,,,,,0.116142358,7310,62940,0.103158822,0.129125894,0.086218052,0.074639448,0.097796656,0.027645377,0.020546974,0.034743779,0.008500159,0.005261834,0.011738484,0.809262251,60112,74280,0.791197029,0.827327473,,,,0.8153533,0.726600704,0.904105896,0.783718835,0.742055206,0.825382463,0.706708716,0.653181772,0.76023566,0.85254684,0.837596422,0.867497258,0.251,,74280,0.231567397,0.270432603,74.93711891,,,74.49581092,75.37842689,,,,78.91827635,76.33490001,81.50165269,69.7467012,68.04136576,71.45203665,100.523123,84.59684641,116.4493995,74.79990023,74.29321028,75.30659019,,,,470.1850352,2826,445778,451.8736815,488.4963889,,,,311.612821,227.2925299,416.9624715,726.6644469,646.7907101,806.5381838,250.4617708,195.6127209,315.9234438,474.2904918,453.3283047,495.252679,,,,51.40562249,80,155625,40.76146159,63.97874697,,,,,,,126.9483038,75.23761041,200.6330508,46.93479674,24.99080255,80.25993183,45.79612398,33.27553379,61.47915889,,,,6.999573197,82,11715,5.566968286,8.688315931,,,,,,,,,,,,,5.764075067,4.171489707,7.764171288,,,,,,,0.116,,,0.099,0.133,0.165,,,0.142,0.188,0.1,,,0.085,0.116,198,272,137357,,,0.12,19250,,,,0.097878328,15108.30294,154358,,,31.77035639,153,481581,26.73613347,36.80457931,,,,,,,51.67958656,31.99047861,78.99773775,,,,34.58846698,28.50044036,40.6764936,,,,0.341,,,0.325,0.355,0.165634317,15777,95252,0.146570488,0.184698147,0.052736836,1925,36502,0.038438964,0.067034709,0.001712936,280,163462,,,583.7928571,0.873051948,1613.4,1848,,,0.086951474,749,8614,0.052189995,0.121712954,3.096716998,,,,,,3.029571683,2.585802127,2.794253672,3.307791567,3.127197564,,,,,,3.308267198,2.50865199,2.942147686,3.292322002,0.071193802,,,,,-4242.577,,,,,0.825088442,42681,51729,0.774108085,0.876068798,63934,,,57756.12766,70111.87234,38333,16564.48936,60101.51064,77908,67457.44681,88358.55319,37440,30557.95745,44322.04255,44375,35498.40426,53251.59575,67593,64737,70449,,,,,,0.461583446,10261,22230,,,40.17917868,,,,,0.246848312,,63934,,,9.655799159,85,8803,,,6.21777346,69,1109722,4.837798886,7.86899026,,,,,,,26.60338608,17.21630878,39.27184585,,,,4.434047734,3.121978804,6.111750723,,,,16.38064887,140,798207,13.55546745,19.2058303,17.53930998,,,,,,,,,,,,,18.20960731,14.74100409,21.67821052,,,,17.41402919,139,798207,14.51903338,20.309025,,,,,,,32.5853514,20.42106624,49.33461362,,,,17.41684712,14.06943687,20.76425736,,,,16.31039125,181,1109722,13.93420126,18.68658125,,,,22.69960173,11.3315594,40.61585776,17.02616709,9.73192561,27.64942866,,,,17.01715617,14.21818205,19.81613029,,,,17.88617886,,12300,,,112,108,0.710332496,83425,117445,,,0.675,,,,,52.35236825,,,,,0.71045281,45783,64442,0.693177766,0.727727855,0.087790988,5457,62159,0.075117433,0.100464543,0.863675864,55657,64442,0.848207222,0.879144506,163462,,,,,0.213927396,34969,163462,,,0.189670994,31004,163462,,,0.083756469,13691,163462,,,0.00647857,1059,163462,,,0.049253037,8051,163462,,,0.001596701,261,163462,,,0.108453341,17728,163462,,,0.736782861,120436,163462,,,0.020334198,3097,152305,0.01599828,0.024670115,0.507487979,82955,163462,,,0.351572131,56466,160610,, -37,037,37037,NC,Chatham County,2024,1,7683.118418,951,202977,6815.085219,8551.151616,0,,,,2,,,,2,13427.35767,9879.800498,16974.91484,,6009.747955,4293.452049,8183.570993,,7213.222166,6179.081963,8247.362368,,,,,2,,0.128,,,0.106,0.154,3.027659052,,,2.352877916,3.833850464,4.503856429,,,3.566888216,5.598263354,0.088280394,403,4565,0.08005042,0.096510368,0,,,,0.081300813,0.03300187,0.129599756,0.159292035,0.125555035,0.193029036,0.085603113,0.068500138,0.102706088,0.077167019,0.067348923,0.086985115,,,,0.1,0.0412,0.1588,0.138,,,0.106,0.176,0.327,,,0.261,0.404,8.3,0.045506711,0.097,,,0.193,,,0.154,0.235,0.711974831,54313,76285,,,0.163495626,,,0.131231204,0.200957993,0.205882353,14,68,0.144948006,0.272481797,269.6,210,77889,,,10.13818485,146,14401,8.493662238,11.78270746,,,,,,,9.163802978,5.237905185,14.88144192,22.85162536,17.847309,28.824216,5.906195715,4.397550647,7.765556616,,,,,,,0.125861237,7307,58056,0.110371876,0.141350599,0.000937231,73,77889,,,1066.972603,0.000500851,40,79864,,,1996.6,0.001690374,135,79864,,,591.5851852,1959,,,,,,,679,,2004,0.47,,,,,,,0.41,0.28,0.48,0.59,,,,,,0.65,0.42,0.32,0.6,0.894187727,50738,56742,0.879756108,0.908619345,0.663843607,10425,15704,0.604183892,0.723503322,0.03090608,1157,37436,,,0.11,1627,,0.07306383,0.14693617,,,,,,,0.320428336,0.150606659,0.490250013,0.317650414,0.208939646,0.426361181,0.054277498,0.031230165,0.077324831,5.45574084,182560,33462,4.67977444,6.231707241,0.195896271,2931,14962,0.152131824,0.239660717,8.858760544,69,77889,,,90.95348226,339,372718,81.27124873,100.6357158,,,,,,,91.44738346,65.33135146,124.5253811,37.32736096,21.74456331,59.76472085,102.4949125,90.380788,114.6090371,,,,8.7,,,,,0,,,,,0.140779134,4210,29905,0.113213626,0.168344642,0.123151882,0.095439291,0.150864473,0.012874101,0.007290379,0.018457823,0.008694198,0.003878703,0.013509693,0.721391185,25222,34963,0.689653705,0.753128665,,,,,,,0.635595973,0.577885171,0.693306775,0.709127672,0.609856412,0.808398932,0.599714856,0.562527637,0.636902075,0.447,,34963,0.406384366,0.487615634,79.90151957,,,79.14736973,80.65566941,,,,,,,73.8370123,71.30595317,76.36807142,86.69041049,81.16464044,92.21618053,80.42155777,79.54175098,81.30136456,,,,314.9419077,951,202977,292.3265079,337.5573076,,,,,,,539.9671875,452.6070687,627.3273064,231.3548899,166.7402549,312.7246013,296.4253661,270.1531816,322.6975507,,,,58.3556006,38,65118,41.29589614,80.09762112,,,,,,,,,,69.74384986,34.81587857,124.7910126,42.01791013,24.01686613,68.23445363,,,,9.060773481,41,4525,6.502167485,12.29196234,,,,,,,,,,,,,,,,,,,,,,0.096,,,0.081,0.114,0.146,,,0.124,0.17,0.092,,,0.077,0.108,193.4,131,67748,,,0.097,7310,,,,0.045506711,2889.903709,63505,,,24.98827305,57,228107,18.92587398,32.37520611,,,,,,,,,,,,,26.73374406,19.42477936,35.88880359,,,,0.3,,,0.286,0.316,0.145007666,6242,43046,0.125943836,0.164071496,0.072834272,1151,15803,0.051387464,0.094281081,0.000575979,46,79864,,,1736.173913,0.88814578,694.53,782,,,,,,,,3.335807584,,,,,,,2.824257059,2.869291598,3.696890328,3.254353404,,,,,,,2.626650255,3.017292581,3.503114536,0.146207369,,,,,-2274.039,,,,,0.875600113,55809,63738,0.782475796,0.96872443,84516,,,74428.85106,94603.14894,,,,173188,73405.53192,272970.4681,54654,42334,66974,61136,45091.40426,77180.59575,96673,91636.57447,101709.4255,,,,,,0.322566323,2906,9009,,,40.9954301,,,,,0.234038525,,84516,,,7.783222831,27,3469,,,4.652163547,24,515889,2.980728966,6.922050595,,,,,,,,,,,,,3.50055201,1.863896516,5.986050548,,,,13.79295049,51,372718,10.06067274,18.45605296,13.68326724,,,,,,,,,,,,,17.83648368,12.55853056,24.58524322,,,,12.87836917,48,372718,9.495492792,17.07484913,,,,,,,,,,,,,13.79022459,9.709590754,19.00800807,,,,18.60865419,96,515889,15.07306964,22.72435175,,,,,,,,,,15.88158689,7.615838224,29.20680374,20.4647656,16.12390766,25.61470581,,,,12.59259259,,5400,,,33,35,0.895009208,48599,54300,,,0.693,,,,,17.27935082,,,,,0.798207574,24849,31131,0.777371285,0.819043864,0.116129245,3515,30268,0.092347694,0.139910797,0.847418971,26381,31131,0.828268412,0.866569531,79864,,,,,0.187944506,15010,79864,,,0.259065411,20690,79864,,,0.109849244,8773,79864,,,0.01245868,995,79864,,,0.026006711,2077,79864,,,0.001640289,131,79864,,,0.121130923,9674,79864,,,0.722703596,57718,79864,,,0.033139519,2428,73266,0.024983679,0.041295359,0.516102374,41218,79864,,,0.640361801,48850,76285,, -37,039,37039,NC,Cherokee County,2024,1,12736.09302,644,75873,10929.74413,14542.44191,0,,,,2,,,,2,,,,2,,,,2,13319.02935,11342.59648,15295.46221,,,,,2,,0.159,,,0.131,0.189,3.648933201,,,2.797210394,4.53790927,4.985219739,,,3.873295628,6.103749659,0.083091226,143,1721,0.070050365,0.096132088,0,,,,,,,,,,,,,0.084553928,0.070483595,0.098624261,,,,,,,0.192,,,0.15,0.235,0.382,,,0.302,0.464,7.4,0.031824514,0.147,,,0.237,,,0.19,0.287,0.983248766,28292,28774,,,0.145220164,,,0.114654535,0.179659557,0.28125,9,32,0.188019808,0.378196141,178.3,52,29167,,,23.80952381,109,4578,19.33966781,28.27937981,,,,,,,,,,,,,23.10149914,18.66836284,28.2703843,,,,,,,0.155797101,3096,19872,0.134350293,0.17724391,0.000411424,12,29167,,,2430.583333,0.000406614,12,29512,,,2459.333333,0.001524804,45,29512,,,655.8222222,2143,,,,,2367,,,,2099,0.4,,,,,0.37,,,,0.4,0.37,,,,,0.52,,0.36,0.38,0.37,0.911519422,20439,22423,0.89541122,0.927627625,0.582935675,3054,5239,0.490160476,0.675710874,0.040172553,447,11127,,,0.245,1107,,0.159212766,0.330787234,0.241935484,0,0.723393933,,,,0.253012048,0,0.845345417,0.31986532,0,0.666988896,0.221738016,0.156959218,0.286516814,4.18714217,95806,22881,3.589731446,4.784552894,0.272453155,1265,4643,0.188354803,0.356551508,9.257037062,27,29167,,,120.0094891,172,143322,102.0742391,137.9447391,,,,,,,,,,,,,127.5441602,108.1414407,146.9468798,,,,7.4,,,,,0,,,,,0.109605421,1375,12545,0.083773966,0.135436876,0.093145161,0.068841378,0.117448945,0.013551216,0.003876244,0.023226187,0.007174173,0,0.016038755,0.785281072,8675,11047,0.729903646,0.840658498,,,,,,,,,,,,,0.796010027,0.740760524,0.85125953,0.284,,11047,0.232821406,0.335178594,74.46060234,,,73.17228719,75.74891748,,,,,,,,,,,,,73.90051337,72.53382291,75.26720384,,,,519.9839829,644,75873,471.4482656,568.5197002,,,,,,,,,,,,,541.5563554,489.2687688,593.843942,,,,101.4394745,21,20702,62.79263349,155.0610122,,,,,,,,,,,,,108.0282011,65.04003391,168.6994176,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.121,,,0.102,0.14,0.174,,,0.149,0.2,0.105,,,0.088,0.123,130.8,34,25987,,,0.147,4190,,,,0.031824514,873.3919653,27444,,,46.05535854,40,86852,32.90262336,62.71432663,,,,,,,,,,,,,45.73170732,32.02992558,63.31195946,,,,0.326,,,0.309,0.343,0.183970262,2821,15334,0.157757496,0.210183028,0.06264308,301,4805,0.042387761,0.082898399,0.001185958,35,29512,,,843.2,0.87,246.21,283,,,,,,,,3.138097493,,,,,,,,,3.093807204,3.121961751,,,,,,,,,3.070324803,0.03971258,,,,,-791.9492,,,,,0.907804106,40725,44861,0.78648367,1.029124542,51607,,,47435.59575,55778.40426,28117,15557.51064,40676.48936,,,,24000,9969.021277,38030.97872,56627,45593.80851,67660.19149,49506,45808.80851,53203.19149,,,,,,0.667620865,2099,3144,,,45.85357642,,,,,0.255042921,,51607,,,13.30798479,14,1052,,,,,,,,,,,,,,,,,,,,,,,,,,22.30424404,38,143322,14.93750229,32.03261498,26.51372434,,,,,,,,,,,,,23.33981977,15.50914074,33.73253799,,,,20.23415805,29,143322,13.55113321,29.05962618,,,,,,,,,,,,,21.51347281,14.29554645,31.09295814,,,,21.67284091,43,198405,15.68474243,29.19317447,,,,,,,,,,,,,23.28598516,16.7824899,31.47588724,,,,14.70588235,,1700,,,9,16,0.701837607,16423,23400,,,0.479,,,,,11.3348899,,,,,0.812744944,10369,12758,0.788870203,0.836619686,0.092336479,1135,12292,0.068025545,0.116647413,0.791973664,10104,12758,0.771674672,0.812272655,29512,,,,,0.155733261,4596,29512,,,0.31624424,9333,29512,,,0.016129032,476,29512,,,0.017416644,514,29512,,,0.007014096,207,29512,,,0.000542152,16,29512,,,0.039746544,1173,29512,,,0.900006777,26561,29512,,,0.003416529,95,27806,0,0.009067852,0.504404988,14886,29512,,,1,28774,28774,, -37,041,37041,NC,Chowan County,2024,1,10623.71278,304,37050,8617.742675,12629.68289,0,,,,2,,,,2,14856.94154,10711.81992,19002.06316,,,,,2,8278.444532,6048.883392,10508.00567,,,,,2,,0.189,,,0.161,0.221,3.83437562,,,3.010643431,4.784776409,5.050849845,,,3.950747829,6.237176049,0.103671706,96,926,0.084037459,0.123305953,0,,,,,,,0.153439153,0.117105643,0.189772664,,,,0.073375262,0.049974842,0.096775682,,,,,,,0.201,,,0.164,0.245,0.39,,,0.309,0.477,6.2,0.162818951,0.141,,,0.268,,,0.219,0.322,0.188794864,2588,13708,,,0.139308669,,,0.110224816,0.171910071,0.25,3,12,0.099776571,0.4182543,655.9,90,13722,,,26.63786897,74,2778,20.91645653,33.44140515,,,,,,,39.25066905,28.51959622,52.69219115,58.82352941,28.2081688,108.178565,12.59622113,7.465318951,19.90745995,,,,,,,0.1257497,1258,10004,0.10787736,0.143622041,0.000728757,10,13722,,,1372.2,0.00035868,5,13940,,,2788,0.001219512,17,13940,,,820,1685,,,,,,,484,,1681,0.47,,,,,,,0.48,,0.47,0.48,,,,,,,0.39,,0.52,0.866264265,9185,10603,0.829891075,0.902637455,0.500470958,1594,3185,0.386351473,0.614590442,0.039910545,232,5813,,,0.253,684,,0.16006383,0.34593617,,,,,,,0.610561056,0.329081615,0.892040497,,,,0.296482412,0.212326607,0.380638217,5.040220897,103133,20462,3.786885666,6.293556128,0.350313769,949,2709,0.214838351,0.485789187,13.11762134,18,13722,,,99.11799351,69,69614,77.11971523,125.4401645,,,,,,,93.53741497,58.61939997,141.6167704,,,,105.3993197,76.58330704,141.4936671,,,,6.6,,,,,0,,,,,0.161971831,1035,6390,0.113720835,0.210222827,0.153093434,0.104435263,0.201751606,0.002190923,0,0.00923124,0.008607199,0,0.023482383,0.831584563,4676,5623,0.765589438,0.897579689,,,,,,,0.799090909,0.677881998,0.92029982,,,,0.842323652,0.746886393,0.93776091,0.372,,5623,0.273985968,0.470014033,74.54877481,,,73.07989571,76.0176539,,,,,,,71.1030342,68.39790324,73.80816515,,,,76.27649789,74.53820838,78.01478741,,,,518.7570404,304,37050,452.7393215,584.7747593,,,,,,,680.5368874,543.3787136,817.6950612,,,,440.9235498,365.6876307,516.1594689,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.128,,,0.109,0.147,0.174,,,0.151,0.2,0.124,,,0.106,0.144,101.2,12,11856,,,0.141,1950,,,,0.162818951,2408.580737,14793,,,31.34040501,13,41480,16.68744574,53.59304705,,,,,,,,,,,,,,,,,,,0.361,,,0.345,0.374,0.148243243,1097,7400,0.125604945,0.170881541,0.063891931,175,2739,0.043636612,0.084147251,0.001004304,14,13940,,,995.7142857,0.925,132.275,143,,,,,,,,2.944494249,,,,,,,2.517574742,,3.515916244,3.232394405,,,,,,,2.810807384,,3.662951661,0.004230167,,,,,-8321.42,,,,,0.704738462,40082,56875,0.458497168,0.950979755,55818,,,48037.57447,63598.42553,,,,,,,28302,21699.95745,34904.04255,,,,71458,59099.87234,83816.12766,,,,,,0.544656686,1055,1937,,,34.14217212,,,,,0.240262998,,55818,,,13.38688086,10,747,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.27800307,17,98391,10.0650735,27.66375666,,,,,,,,,,,,,20.36176061,10.52121884,35.56789807,,,,21,,1000,,,5,16,0.706672719,7784,11015,,,0.61,,,,,4.620046426,,,,,0.643500644,4000,6216,0.602311933,0.684689354,0.132637344,775,5843,0.084681357,0.180593331,0.808236808,5024,6216,0.749068569,0.867405047,13940,,,,,0.196413199,2738,13940,,,0.261908178,3651,13940,,,0.318292683,4437,13940,,,0.005667145,79,13940,,,0.007460545,104,13940,,,0.002725968,38,13940,,,0.039167862,546,13940,,,0.614705882,8569,13940,,,0.007934709,105,13233,0,0.016625374,0.520229555,7252,13940,,,0.684199008,9379,13708,, -37,043,37043,NC,Clay County,2024,1,10713.87363,219,29662,8119.640236,13308.10703,0,,,,2,,,,2,,,,2,,,,2,10721.27548,8002.976563,13439.5744,,,,,2,,0.145,,,0.119,0.175,3.525458122,,,2.65329492,4.411968281,5.176799823,,,3.97328556,6.383348372,0.070032573,43,614,0.049846316,0.09021883,0,,,,,,,,,,,,,0.062962963,0.042475879,0.083450047,,,,,,,0.175,,,0.135,0.22,0.346,,,0.265,0.436,7.7,0.010997646,0.143,,,0.216,,,0.17,0.267,0.997925873,11066,11089,,,0.15070901,,,0.119519277,0.187010111,0.090909091,1,11,0.004610648,0.283082638,106.1,12,11309,,,24.51253482,44,1795,17.81084533,32.90693386,,,,,,,,,,,,,27.11426727,19.54157891,36.65061251,,,,,,,0.174511604,1331,7627,0.150681816,0.198341391,0.000442126,5,11309,,,2261.8,0.000688824,8,11614,,,1451.75,0.001463751,17,11614,,,683.1764706,1335,,,,,,,,,1321,0.44,,,,,,,,,0.44,0.45,,,,,,,,,0.46,0.88340545,7554,8551,0.845293923,0.921516976,0.689863014,1259,1825,0.541848672,0.837877355,0.039856802,167,4190,,,0.231,401,,0.144021277,0.317978723,,,,,,,,,,0.377142857,0,0.868554578,0.015201586,0,0.045078156,5.657564121,119335,21093,3.833334762,7.48179348,0.110929853,204,1839,0.0152325,0.206627207,13.26377222,15,11309,,,119.0941733,67,56258,92.29634848,151.2453902,,,,,,,,,,,,,124.6093975,96.17090223,158.8249062,,,,7,,,,,0,,,,,0.2,1060,5300,0.133028328,0.266971672,0.140267176,0.087154819,0.193379532,0.009433962,0,0.026162867,0.052830189,0.016335668,0.089324709,0.75939505,3314,4364,0.686912518,0.831877583,,,,,,,,,,,,,0.787214886,0.692082876,0.882346896,0.274,,4364,0.185918388,0.362081612,76.59107395,,,74.62076532,78.56138258,,,,,,,,,,,,,76.41887876,74.37818438,78.45957313,,,,452.0473764,219,29662,378.5156895,525.5790633,,,,,,,,,,,,,457.170071,380.0321353,534.3080067,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.114,,,0.095,0.134,0.167,,,0.142,0.196,0.095,,,0.079,0.112,119,12,10087,,,0.143,1570,,,,0.010997646,116.4320753,10587,,,38.18475547,13,34045,20.3317741,65.29709478,,,,,,,,,,,,,41.26853116,21.97375477,70.57044512,,,,0.318,,,0.299,0.337,0.201703578,1184,5870,0.171916344,0.231490812,0.086512628,161,1861,0.061491351,0.111533904,0.001033236,12,11614,,,967.8333333,0.875,80.5,92,,,,,,,,3.200658063,,,,,,,,,3.189719643,3.174072207,,,,,,,,,3.208487644,0.018324555,,,,,-2846.975,,,,,1.235216848,57361,46438,1.053824323,1.416609373,57698,,,49618.51064,65777.48936,,,,,,,,,,,,,58201,44921.85106,71480.14894,,,,,,0.448083067,561,1252,,,,,,,,0.228118826,,57698,,,17.93721973,8,446,,,,,,,,,,,,,,,,,,,,,,,,,,25.28419167,14,56258,12.62177738,45.24040311,24.88534964,,,,,,,,,,,,,27.41691614,13.14747697,50.42068494,,,,21.33029969,12,56258,11.02167711,37.25974092,,,,,,,,,,,,,21.08774419,10.52692592,37.73179939,,,,20.54548256,16,77876,11.74351848,33.3645765,,,,,,,,,,,,,20.72510224,11.5996824,34.18290438,,,,,,700,,,12,-888,0.761236886,6893,9055,,,0.487,,,,,2.102271313,,,,,0.797219951,3900,4892,0.734441336,0.859998566,0.149336757,698,4674,0.090258396,0.208415117,0.791700736,3873,4892,0.733926736,0.849474736,11614,,,,,0.152143964,1767,11614,,,0.33468228,3887,11614,,,0.013173756,153,11614,,,0.006027209,70,11614,,,0.00490787,57,11614,,,0.000774927,9,11614,,,0.041415533,481,11614,,,0.915877389,10637,11614,,,0.002893141,31,10715,0,0.014681692,0.511365593,5939,11614,,,1,11089,11089,, -37,045,37045,NC,Cleveland County,2024,1,11962.05932,2186,275054,11182.47089,12741.64774,0,,,,2,,,,2,14606.37855,12736.89377,16475.86333,,5373.753311,3007.648935,8863.188871,1,11725.64751,10809.90828,12641.38675,,,,,2,,0.175,,,0.148,0.203,3.828663362,,,3.025301625,4.682139383,5.244663869,,,4.190068756,6.384773689,0.104788877,814,7768,0.097977706,0.111600049,0,,,,,,,0.1640625,0.146915876,0.181209124,0.080434783,0.055581122,0.105288444,0.086590038,0.078960686,0.09421939,,,,0.112107623,0.070697991,0.153517256,0.198,,,0.159,0.239,0.372,,,0.298,0.45,7.3,0.060539447,0.139,,,0.251,,,0.205,0.302,0.649423728,64630,99519,,,0.162005017,,,0.128873181,0.199759208,0.204301075,19,93,0.152395198,0.260427626,714.4,717,100359,,,29.31391062,652,22242,27.06378879,31.56403245,,,,,,,37.51488686,32.16642614,42.86334758,25.98366741,18.09857639,36.13699137,26.26439491,23.65769421,28.8710956,,,,45.39202201,31.24577933,63.74727547,0.134277977,10661,79395,0.118788616,0.149767339,0.000438426,44,100359,,,2280.886364,0.000417205,42,100670,,,2396.904762,0.001549618,156,100670,,,645.3205128,3706,,,,,,,5522,,3458,0.45,,,,,,0.31,0.46,0.33,0.45,0.49,,,,,,0.5,0.39,0.44,0.5,0.867881914,59561,68628,0.851989306,0.883774522,0.548626609,12783,23300,0.501855266,0.595397953,0.038426312,1888,49133,,,0.246,5409,,0.178085106,0.313914894,,,,0.302083333,0,0.840969599,0.52687747,0.432322576,0.621432365,0.349704142,0.185865911,0.513542373,0.221003732,0.182591989,0.259415474,4.872002218,105435,21641,4.426212328,5.317792109,0.368186773,8106,22016,0.316069524,0.420304023,17.53704202,176,100359,,,98.31004225,484,492320,89.55151121,107.0685733,,,,,,,77.74289735,61.54978395,96.89084618,,,,111.147507,100.2139734,122.0810406,,,,8.9,,,,,0,,,,,0.152673871,5510,36090,0.129287792,0.17605995,0.124928612,0.104841571,0.145015654,0.030894985,0.020030736,0.041759234,0.007481297,0.002220763,0.01274183,0.824260982,34994,42455,0.804348972,0.844172992,,,,,,,0.837398374,0.786396575,0.888400173,0.785201149,0.662246008,0.908156291,0.820350778,0.794022802,0.846678754,0.327,,42455,0.296274356,0.357725644,72.70587031,,,72.16079246,73.25094816,,,,,,,70.35619129,69.16043415,71.55194843,83.58212444,78.17661967,88.98762922,72.89247256,72.2511251,73.53382001,,,,586.4912202,2186,275054,560.3122513,612.6701892,,,,,,,711.2765934,645.9537175,776.5994693,226.5102094,136.3739427,353.7237503,575.1198817,545.1370312,605.1027322,,,,62.49615802,61,97606,47.8046089,80.27892949,,,,,,,74.32018886,43.2942488,118.9938219,,,,64.04201156,45.75255198,87.20704296,,,,7.995873098,62,7754,6.130390055,10.25034845,,,,,,,10.90512541,6.661133907,16.84208174,,,,6.908462867,4.83860246,9.564224619,,,,,,,0.126,,,0.108,0.145,0.177,,,0.153,0.203,0.114,,,0.098,0.132,252.8,214,84636,,,0.139,13710,,,,0.060539447,5937.587912,98078,,,20.85148029,62,297341,15.98671037,26.73065668,,,,,,,,,,,,,24.19853971,18.07262689,31.73316537,,,,0.353,,,0.338,0.367,0.166333571,9571,57541,0.146078252,0.18658889,0.051508686,1183,22967,0.036019325,0.066998048,0.001698619,171,100670,,,588.7134503,0.86251269,1019.49,1182,,,0.110439872,585,5297,0.069367602,0.151512142,3.152269698,,,,,,,2.792390006,3.012095018,3.340331075,3.241423973,,,,,,,2.788421711,3.293753076,3.456793066,0.065008692,,,,,-5738.004,,,,,0.838584192,39234,46786,0.763062341,0.914106043,53170,,,47925.06383,58414.93617,,,,,,,35885,32366.53192,39403.46809,45625,29980.74468,61269.25532,57852,53933.19149,61770.80851,,,,,,0.6347389,9092,14324,,,30.02359311,,,,,0.287436524,,53170,,,9.036144578,51,5644,,,7.139287499,49,686343,5.281684194,9.438516688,,,,,,,19.05514701,12.55746195,27.72423846,,,,4.20580401,2.60345897,6.429018192,,,,17.58197093,85,492320,13.89781841,21.94309543,17.26519337,,,,,,,12.04645678,5.776744267,22.15386292,,,,20.51248983,15.89689787,26.05013699,,,,16.24959376,80,492320,12.88491725,20.22402603,,,,,,,19.68174617,12.02212188,30.39686067,,,,16.51814336,12.57437606,21.30720145,,,,23.60335867,162,686343,19.96862688,27.23809047,,,,,,,26.11260886,18.38568646,35.99279161,,,,23.83288939,19.55076491,28.11501387,,,,15.06493507,,7700,,,65,51,0.682559532,51308,75170,,,0.619,,,,,40.12927405,,,,,0.696830476,25481,36567,0.673588192,0.720072759,0.115569452,3992,34542,0.095600372,0.135538531,0.764514453,27956,36567,0.742678912,0.786349994,100670,,,,,0.222290653,22378,100670,,,0.190533426,19181,100670,,,0.203993245,20536,100670,,,0.004867389,490,100670,,,0.012039336,1212,100670,,,0.000427138,43,100670,,,0.046518327,4683,100670,,,0.716121983,72092,100670,,,0.007468809,701,93857,0.004104562,0.010833056,0.516340519,51980,100670,,,0.622011877,61902,99519,, -37,047,37047,NC,Columbus County,2024,1,15427.88911,1391,146350,14161.03893,16694.73929,0,12433.58865,6958.985183,20507.31364,1,,,,2,18534.90212,15903.70562,21166.09861,,,,,2,15194.80545,13555.45302,16834.15788,,,,,2,,0.206,,,0.176,0.237,4.087152826,,,3.262634981,5.028105899,5.292438172,,,4.22687046,6.462507885,0.11872705,485,4085,0.108807543,0.128646557,0,,,,,,,0.184145334,0.162314479,0.20597619,0.092696629,0.06257078,0.122822479,0.09042077,0.078528388,0.102313152,,,,0.124223603,0.073273881,0.175173324,0.225,,,0.186,0.264,0.43,,,0.351,0.505,7.4,0.03672687,0.145,,,0.299,,,0.249,0.349,0.359875946,18218,50623,,,0.149134531,,,0.117997541,0.183473095,0.186915888,20,107,0.139316313,0.238891918,652.8,327,50092,,,35.97501979,409,11369,32.48847331,39.46156627,,,,,,,41.1817368,34.31071721,48.05275638,44.97607656,33.04672935,59.80864722,31.36171596,26.93708316,35.78634875,,,,76.92307692,48.76263223,115.4223843,0.149364609,5489,36749,0.131492268,0.167236949,0.000399265,20,50092,,,2504.6,0.000280646,14,49885,,,3563.214286,0.001723965,86,49885,,,580.0581395,4496,,,,,,,5183,,4348,0.4,,,,,0.43,,0.45,,0.38,0.44,,,,,0.41,0.58,0.4,0.36,0.45,0.856199499,30729,35890,0.839818134,0.872580863,0.491241117,5945,12102,0.434798686,0.547683549,0.042489325,1005,23653,,,0.292,2971,,0.184765957,0.399234043,0.072580645,0,0.161667744,,,,0.395372928,0.296351983,0.494393873,0.26879085,0.148516545,0.389065155,0.221064596,0.161203775,0.280925416,4.935121924,88847,18003,4.181197937,5.689045911,0.35693017,3716,10411,0.295086476,0.418773864,10.38089915,52,50092,,,130.9088235,356,271945,117.3100421,144.5076049,,,,,,,140.2369266,114.4935191,165.9803341,,,,140.0072182,121.7129416,158.3014947,,,,6.9,,,,,0,,,,,0.162914829,3510,21545,0.135356379,0.19047328,0.149143673,0.120121399,0.178165947,0.021118589,0.010428272,0.031808906,0.005987468,0,0.012440825,0.867380605,16037,18489,0.833964954,0.900796256,0.908071749,0.777627706,1,,,,0.810053981,0.724262291,0.895845671,,,,0.864845797,0.827865336,0.901826259,0.422,,18489,0.374191721,0.469808279,70.72288398,,,69.88284333,71.56292463,74.21101966,69.31269665,79.10934267,,,,69.07574093,67.3918051,70.75967676,,,,70.58513079,69.52402994,71.64623164,,,,691.1603774,1391,146350,652.3350576,729.9856973,504.9266559,338.157306,725.1589038,,,,764.2234649,688.0723286,840.3746013,,,,702.350082,652.1964077,752.5037564,,,,84.79709267,42,49530,61.11428575,114.6210353,,,,,,,148.8296577,93.27075411,225.3298903,,,,66.62486283,38.8114378,106.6728594,,,,9.796718099,40,4083,6.99891904,13.34034949,,,,,,,,,,,,,,,,,,,,,,0.137,,,0.119,0.158,0.183,,,0.159,0.208,0.131,,,0.113,0.151,407.5,175,42941,,,0.145,7480,,,,0.03672687,2133.757664,58098,,,43.65341682,70,160354,34.02997999,55.15346598,,,,,,,25.13615417,12.98821766,43.90780278,,,,56.01648787,41.96019334,73.27094534,,,,0.38,,,0.367,0.392,0.184801639,4961,26845,0.160971852,0.208631426,0.055010011,577,10489,0.038329159,0.071690862,0.001423274,71,49885,,,702.6056338,0.822590634,544.555,662,,,0.123839009,320,2584,0.065463961,0.182214058,2.94778691,,,,,,,2.797029366,2.544641444,3.143319046,2.97838328,,,,,,,2.869981022,2.804887676,3.074840191,0.081720224,,,,,-10531.089,,,,,0.902746532,38522,42672,0.808456584,0.997036479,45379,,,41386.31915,49371.68085,42356,30978.46809,53733.53192,,,,32631,27631.51064,37630.48936,48867,28070.74468,69663.25532,50305,43530.19149,57079.80851,,,,,,0.963193935,7877,8178,,,29.18254887,,,,,0.345027436,,45379,,,9.985207101,27,2704,,,18.17502025,70,385144,14.16831993,22.96304469,,,,,,,39.85237295,29.17694576,53.15748073,,,,8.763358645,5.352887126,13.53429668,,,,10.7182064,31,271945,7.122170317,15.49079249,11.39936384,,,,,,,,,,,,,14.10920488,8.84216358,21.36150574,,,,29.41771314,80,271945,23.32641696,36.61289046,,,,,,,51.66623612,37.23647849,69.83774191,,,,21.1566463,14.65159259,29.56429262,,,,32.45539331,125,385144,26.765712,38.14507462,,,,,,,38.98601702,28.43666833,52.1663581,,,,31.54809112,24.68443833,39.72959958,,,,14.25,,4000,,,20,37,0.616456877,26446,42900,,,0.511,,,,,13.59567383,,,,,0.707688298,13577,19185,0.678037619,0.737338978,0.148244549,2563,17289,0.121047231,0.175441867,0.768725567,14748,19185,0.739800464,0.79765067,49885,,,,,0.207557382,10354,49885,,,0.208258996,10389,49885,,,0.291470382,14540,49885,,,0.038067555,1899,49885,,,0.006114062,305,49885,,,0.001142628,57,49885,,,0.062904681,3138,49885,,,0.589335472,29399,49885,,,0.012251498,591,48239,0.00603675,0.018466246,0.499468778,24916,49885,,,0.896963831,45407,50623,, -37,049,37049,NC,Craven County,2024,1,11171.00138,1841,278593,10404.75525,11937.24751,0,,,,2,,,,2,16036.55485,14035.30384,18037.80586,,6067.715552,4226.386204,8438.72349,,10648.91281,9697.384913,11600.44071,,,,,2,,0.154,,,0.133,0.182,3.453949875,,,2.731943886,4.322111645,4.701993973,,,3.772012385,5.827742835,0.090245735,841,9319,0.084428095,0.096063374,0,,,,0.09,0.061954188,0.118045813,0.156162856,0.13935996,0.172965751,0.077725119,0.061568862,0.093881375,0.07196903,0.065249773,0.078688288,,,,0.079268293,0.050031115,0.108505471,0.175,,,0.142,0.215,0.379,,,0.314,0.462,7.4,0.086952445,0.12,,,0.238,,,0.196,0.289,0.726648133,73188,100720,,,0.174482547,,,0.142059572,0.217175313,0.2,11,55,0.132529398,0.274926973,501.6,505,100674,,,25.28828647,500,19772,23.07167043,27.50490251,,,,17.38122827,9.728141521,28.66769278,30.3216554,25.43650295,35.20680785,26.87411598,20.35419301,34.81853437,22.56751757,19.73583253,25.39920262,,,,34.03403403,23.56955794,47.55915125,0.112956898,8588,76029,0.098659026,0.12725477,0.000744979,75,100674,,,1342.32,0.000614628,62,100874,,,1627,0.003033487,306,100874,,,329.6535948,2674,,,,,,1877,4121,,2406,0.6,,,,,,0.43,0.58,0.35,0.61,0.53,,,,,,0.36,0.45,0.43,0.55,0.908802165,61804,68006,0.898439694,0.919164635,0.659353826,15959,24204,0.610662657,0.708044995,0.036832238,1552,42137,,,0.191,4091,,0.138574468,0.243425532,,,,0.141891892,0,0.285793525,0.273836608,0.211548629,0.336124588,0.346266471,0.23790752,0.454625423,0.121826546,0.084205879,0.159447213,4.382177549,116842,26663,4.020313798,4.744041301,0.274420947,5995,21846,0.226470339,0.322371555,12.61497507,127,100674,,,109.9039126,560,509536,100.8011082,119.006717,,,,,,,107.9893147,88.16562778,127.8130017,41.35328629,23.63697618,67.15514615,124.5840958,112.6119496,136.5562419,,,,6.5,,,,,0,,,,,0.145365854,5960,41000,0.127622474,0.163109233,0.120337093,0.102829868,0.137844317,0.026341463,0.019089185,0.033593742,0.009756098,0.003337154,0.016175041,0.795869314,35760,44932,0.771617247,0.82012138,,,,0.890165111,0.832570073,0.94776015,0.750852467,0.710329776,0.791375157,0.706378492,0.613024301,0.799732684,0.826259947,0.799937131,0.852582763,0.247,,44932,0.220760169,0.273239831,74.70846072,,,74.12586134,75.29106009,,,,80.11019759,76.7644086,83.45598657,70.0052502,68.70983605,71.30066435,81.47316221,76.79767039,86.14865404,75.41939269,74.70025024,76.13853514,,,,515.3457878,1841,278593,489.9835986,540.7079769,,,,,,,729.9675641,663.4088288,796.5262994,283.020703,198.2242209,391.81995,484.8977339,454.9034933,514.8919745,,,,65.89039545,64,97131,50.74363339,84.14056399,,,,,,,64.89292667,35.47756687,108.8793044,,,,71.3079377,50.46174075,97.87571574,,,,8.226980276,78,9481,6.50308651,10.26764371,,,,,,,13.66867141,8.845643438,20.17765538,,,,6.501283148,4.600694892,8.923519062,,,,,,,0.114,,,0.099,0.133,0.16,,,0.139,0.186,0.109,,,0.094,0.128,288.7,246,85203,,,0.12,12200,,,,0.086952445,9000.012812,103505,,,50.65023056,154,304046,42.65046725,58.64999387,,,,,,,54.31656975,37.61580354,75.90196194,,,,57.79359145,47.23060227,68.35658062,,,,0.352,,,0.337,0.365,0.135236253,7410,54793,0.117363912,0.153108593,0.057479536,1278,22234,0.039607195,0.075351876,0.001526657,154,100874,,,655.025974,0.85,911.2,1072,,,0.121019108,551,4553,0.058081589,0.183956627,3.120145632,,,,,,2.91022987,2.673250791,3.168551391,3.36664744,3.028320317,,,,,,3.149192827,2.520558555,2.989490006,3.31188651,0.053233286,,,,,-3163.134,,,,,0.897949219,42297,47104,0.811974738,0.983923699,63076,,,56787.31915,69364.68085,,,,98854,17377.57447,180330.4255,42972,35992.25532,49951.74468,45625,29251.55319,61998.44681,68216,65778.21277,70653.78723,,,,,,0.588267804,7451,12666,,,37.25376325,,,,,0.284815144,,63076,,,5.071315372,32,6310,,,7.676932354,55,716432,5.783316068,9.992582684,,,,,,,17.41693462,11.37731995,25.51984464,,,,4.887388201,3.098184874,7.333481987,,,,17.23735975,86,509536,13.62541758,21.51300508,16.87810086,,,,,,,,,,,,,22.56773917,17.45388784,28.71169757,,,,18.05564278,92,509536,14.55539643,22.14364304,,,,,,,20.8400432,13.06034412,31.55207585,,,,19.16678396,14.76075917,24.47555523,,,,16.19134824,116,716432,13.24482351,19.13787297,,,,,,,17.41693462,11.37731995,25.51984464,,,,17.63709655,14.04784895,21.86383477,,,,17.22222222,,7200,,,69,55,0.679666987,53065,78075,,,0.641,,,,,43.71212134,,,,,0.679153253,27848,41004,0.6576308,0.700675707,0.136465663,5411,39651,0.118575325,0.154356001,0.823846454,33781,41004,0.805955224,0.841737684,100874,,,,,0.215159506,21704,100874,,,0.209439499,21127,100874,,,0.20020025,20195,100874,,,0.007127704,719,100874,,,0.031118028,3139,100874,,,0.002081805,210,100874,,,0.080298194,8100,100874,,,0.655054821,66078,100874,,,0.014891373,1412,94820,0.010135076,0.019647671,0.501278823,50566,100874,,,0.353762907,35631,100720,, -37,051,37051,NC,Cumberland County,2024,1,11618.57048,5380,957256,11210.65554,12026.48542,0,15043.33276,11442.72957,18643.93594,,4433.923485,3121.891321,6111.579462,,14481.72408,13712.72448,15250.72367,,5298.183614,4535.130483,6061.236746,,11586.81905,10961.81073,12211.82738,,,,,2,,0.176,,,0.152,0.2,3.662562558,,,2.970989486,4.436865396,5.299680634,,,4.44511909,6.218712144,0.101108884,3784,37425,0.098054502,0.104163267,0,0.125703565,0.09755893,0.1538482,0.081827843,0.064314306,0.09934138,0.144338418,0.138367716,0.150309119,0.078393882,0.071448076,0.085339687,0.071128829,0.066915562,0.075342096,0.065217391,0.033307217,0.097127566,0.098573282,0.08642505,0.110721513,0.17,,,0.141,0.202,0.402,,,0.35,0.458,6.4,0.135607787,0.141,,,0.245,,,0.206,0.286,0.727309935,243451,334728,,,0.187356689,,,0.156210867,0.223132457,0.233201581,59,253,0.201602565,0.265943179,1260.2,4228,335508,,,25.43709475,1887,74183,24.28937031,26.58481919,42.06008584,31.11628305,55.60566403,,,,25.21811119,23.46178153,26.97444085,30.02773262,26.70638917,33.34907607,21.70980007,19.86323492,23.55636522,40.74074074,20.33763099,72.89643894,38.62212944,33.05660079,44.18765808,0.112457106,30904,274807,0.101733702,0.123180511,0.000706392,237,335508,,,1415.64557,0.001116724,376,336699,,,895.4760638,0.004389677,1478,336699,,,227.8071719,3649,,,,,2553,1797,4511,3005,3271,0.39,,,,,0.37,0.33,0.37,0.28,0.41,0.37,,,,,0.36,0.37,0.3,0.31,0.41,0.92314673,192261,208267,0.918003934,0.928289525,0.707787313,68540,96837,0.686751127,0.728823499,0.051163628,6536,127747,,,0.212,17593,,0.172680851,0.251319149,0.339165545,0.214584819,0.463746271,0.249423963,0.148057493,0.350790433,0.320242282,0.295059931,0.345424634,0.22899387,0.195987448,0.262000291,0.132223347,0.109926427,0.154520268,4.451531037,106997,24036,4.248147436,4.654914638,0.363182647,30272,83352,0.337995401,0.388369894,9.001275678,302,335508,,,104.0509922,1740,1672257,99.1619062,108.9400781,153.3618533,108.527975,210.5011257,43.38791076,26.12235657,67.7555972,102.1935517,94.25740205,110.1297013,50.33333498,40.5651991,60.10147086,129.5777523,121.1770922,137.9784125,,,,7.4,,,,,1,,,,,0.181329883,23125,127530,0.172210771,0.190448996,0.161021365,0.152334327,0.169708403,0.024464832,0.019944624,0.02898504,0.005920176,0.004341215,0.007499136,0.781143686,120086,153731,0.769463351,0.792824021,0.869953775,0.829675812,0.910231738,0.756695256,0.627774581,0.885615932,0.788244607,0.771464911,0.805024304,0.786995301,0.752990269,0.821000333,0.829353059,0.816044375,0.842661743,0.253,,153731,0.240849145,0.265150855,73.88047403,,,73.55233126,74.2086168,70.34743439,67.8434421,72.85142667,83.32836633,80.9479871,85.70874556,72.15422737,71.57526155,72.73319319,83.662996,81.26365435,86.06233764,73.45946748,72.98698977,73.93194519,,,,544.9037047,5380,957256,530.0258017,559.7816076,738.6475406,597.4558622,879.839219,243.5616947,190.2237043,307.2199367,619.9612751,594.4110428,645.5115073,292.9513816,252.5376083,333.3651548,561.6803869,539.0812579,584.2795158,,,,75.53901912,282,373317,66.72238419,84.35565405,,,,,,,116.8158133,98.9913798,134.6402468,28.43617751,16.56512131,45.52907485,60.26376989,47.63600931,75.21191218,,,,8.567475522,322,37584,7.631679902,9.503271141,,,,,,,13.52168001,11.54079069,15.50256933,4.467476769,2.891115412,6.594877001,6.020021645,4.834571709,7.408154653,,,,,,,0.118,,,0.103,0.135,0.168,,,0.148,0.191,0.129,,,0.112,0.147,555.7,1521,273691,,,0.141,47040,,,,0.135607787,43317.33088,319431,,,45.66296168,460,1007381,41.49003041,49.83589295,126.0448454,75.88723076,196.8346396,,,,41.8243905,35.30274559,48.34603541,14.43892735,8.557423438,22.81973021,61.78788862,54.26283594,69.3129413,,,,0.418,,,0.407,0.429,0.14298591,27602,193040,0.127496548,0.158475271,0.042790632,3658,85486,0.032067228,0.053514037,0.002224539,749,336699,,,449.5313752,0.84,3341.52,3978,,,0.087300307,1623,18591,0.066330712,0.108269901,3.098830185,,,,,,3.578881097,2.841945363,3.110311557,3.455133022,2.919966635,,,,,,3.518741347,2.661677402,2.92312651,3.275772116,0.065969336,,,,,-7818.752,,,,,0.896346227,40159,44803,0.864958711,0.927733743,58013,,,55177.25532,60848.74468,41786,33238.25532,50333.74468,65862,54356.97872,77367.02128,46072,44600.51064,47543.48936,53650,48463.44681,58836.55319,66368,63915.91489,68820.08511,,,,,,0.74062917,36633,49462,,,32.54547944,,,,,0.287452812,,58013,,,8.600940477,214,24881,,,11.32048509,263,2323222,9.952305097,12.68866507,,,,,,,22.29418807,19.14065698,25.44771916,5.431319159,3.039868103,8.958134983,4.532561925,3.30608177,6.064924467,,,,16.65694473,280,1672257,14.65524268,18.65864678,16.74383782,,,,,,,9.064431141,6.82857004,11.79860307,11.97055145,6.544411868,20.0845513,24.1345066,20.49110534,27.77790786,,,,20.33180307,340,1672257,18.17061527,22.49299087,,,,,,,27.59386325,23.46999905,31.71772746,9.869281368,6.028413457,15.24230463,18.43009606,15.26190041,21.59829172,,,,17.38964249,404,2323222,15.69391507,19.08536991,,,,,,,20.78468575,17.73978586,23.82958564,11.58681421,7.925372339,16.35712447,17.8280769,15.20159788,20.45455593,,,,19.1634981,,26300,,,238,266,0.603593257,147150,243790,,,0.604,,,,,86.20879073,,,,,0.526411298,66720,126745,0.51593423,0.536888367,0.170019906,20670,121574,0.161038007,0.179001804,0.884950097,112163,126745,0.878330028,0.891570165,336699,,,,,0.249896792,84140,336699,,,0.130760709,44027,336699,,,0.377669669,127161,336699,,,0.019557528,6585,336699,,,0.027552799,9277,336699,,,0.004463928,1503,336699,,,0.130098397,43804,336699,,,0.405237319,136443,336699,,,0.014040446,4358,310389,0.012094583,0.015986309,0.503428879,169504,336699,,,0.138416864,46332,334728,, -37,053,37053,NC,Currituck County,2024,1,7185.715428,449,81359,6108.095559,8263.335297,0,,,,2,,,,2,8101.069925,3704.325025,15378.35416,1,,,,2,7420.359806,6244.543296,8596.176316,,,,,2,,0.123,,,0.103,0.147,3.075834556,,,2.384145236,3.871383644,4.561102826,,,3.606382271,5.614500685,0.0747895,151,2019,0.063315139,0.086263861,0,,,,,,,0.247619048,0.165058542,0.330179553,,,,0.065743945,0.05407874,0.077409149,,,,,,,0.148,,,0.116,0.183,0.326,,,0.258,0.404,8.9,0.004647728,0.089,,,0.189,,,0.152,0.23,0.778932384,21888,28100,,,0.201022153,,,0.161684474,0.245615791,0.181818182,4,22,0.079048597,0.307478905,185.5,55,29653,,,10.6364429,61,5735,8.136036018,13.66295587,,,,,,,,,,,,,9.489666807,6.921828087,12.69792081,,,,,,,0.123845935,3045,24587,0.107165084,0.140526786,0.000269787,8,29653,,,3706.625,0.000161212,5,31015,,,6203,0.000773819,24,31015,,,1292.291667,3739,,,,,,,4456,,3664,0.42,,,,,,,0.53,,0.42,0.42,,,,,,0.4,0.29,0.29,0.43,0.928354851,18983,20448,0.913895922,0.94281378,0.668330244,4687,7013,0.580618501,0.756041987,0.034796792,512,14714,,,0.117,794,,0.07887234,0.15512766,,,,,,,0.382857143,0.126049842,0.639664443,0.018329939,0,0.116791964,0.067116841,0.02777819,0.106455491,3.779756893,143661,38008,3.09670315,4.462810637,0.210003156,1331,6338,0.144390457,0.275615854,10.1170202,30,29653,,,80.78872676,113,139871,65.89279708,95.68465643,,,,,,,,,,,,,84.84558927,68.45982399,101.2313545,,,,6.6,,,,,0,,,,,0.107635695,1170,10870,0.080193682,0.135077707,0.10148423,0.073348068,0.129620392,0.008279669,0.001061535,0.015497803,0.003219871,0,0.007251996,0.819739787,11719,14296,0.792741364,0.846738211,,,,,,,,,,,,,0.713876055,0.661680964,0.766071147,0.619,,14296,0.554891672,0.683108328,77.23500405,,,76.2692395,78.20076861,,,,,,,,,,,,,76.91449897,75.9011138,77.92788413,,,,383.3893208,449,81359,345.8621931,420.9164485,,,,,,,387.2927917,245.5104076,581.1293465,,,,393.965781,353.334269,434.5972929,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.098,,,0.084,0.115,0.153,,,0.131,0.178,0.085,,,0.072,0.099,103.9,26,25025,,,0.089,2440,,,,0.004647728,109.4400437,23547,,,32.38192164,28,86468,21.51755176,46.80089275,,,,,,,,,,,,,34.81567777,22.74275662,51.01303457,,,,0.309,,,0.293,0.326,0.14221532,2564,18029,0.120768511,0.163662128,0.0749891,516,6881,0.052350803,0.097627398,0.000290182,9,31015,,,3446.111111,0.84,260.4,310,,,,,,,,3.148847901,,,,,,,,,3.159703225,3.289809255,,,,,,,,,3.369637304,0.017168191,,,,,1467.571,,,,,0.708327654,46773,66033,0.63168591,0.784969399,76217,,,67155.7234,85278.2766,13088,1299.404255,24876.59575,102663,45573.97872,159752.0213,54869,1604.659575,108133.3404,69438,9787.276596,129088.7234,85504,74156.25532,96851.74468,,,,,,0.215224286,950,4414,,,23.66895985,,,,,0.208693599,,76217,,,4.844290657,7,1445,,,,,,,,,,,,,,,,,,,,,,,,,,19.9912524,29,139871,13.1743613,29.08622266,20.73339005,,,,,,,,,,,,,21.61501796,14.11964736,31.67100942,,,,15.72877866,22,139871,9.857141847,23.81355991,,,,,,,,,,,,,15.65112812,9.423001528,24.44117529,,,,13.09291255,25,190943,8.473042661,19.32772173,,,,,,,,,,,,,12.64923081,7.830073236,19.33569296,,,,15.90909091,,2200,,,12,23,0.772953566,16147,20890,,,0.503,,,,,3.814190238,,,,,0.875045013,9720,11108,0.84390716,0.906182866,0.121214945,1301,10733,0.090343314,0.152086575,0.894310407,9934,11108,0.871315227,0.917305587,31015,,,,,0.221957118,6884,31015,,,0.173367725,5377,31015,,,0.053554732,1661,31015,,,0.007899404,245,31015,,,0.012381106,384,31015,,,0.000935031,29,31015,,,0.05287764,1640,31015,,,0.852587458,26443,31015,,,0.004095185,111,27105,0,0.009934829,0.495179752,15358,31015,,,0.958825623,26943,28100,, -37,055,37055,NC,Dare County,2024,1,7602.408409,555,103646,6534.815343,8670.001475,0,,,,2,,,,2,,,,2,,,,2,7828.464396,6667.110879,8989.817912,,,,,2,,0.111,,,0.091,0.135,2.917008001,,,2.216883841,3.731976862,4.274992118,,,3.329839771,5.319014323,0.061510629,136,2211,0.051495617,0.07152564,0,,,,,,,,,,0.071794872,0.046174085,0.097415659,0.056910569,0.045968174,0.067852964,,,,,,,0.129,,,0.096,0.168,0.322,,,0.252,0.4,7.9,0.085060032,0.1,,,0.177,,,0.139,0.221,0.707625626,26122,36915,,,0.186551535,,,0.148699956,0.228812755,0.166666667,3,18,0.057993584,0.308188518,169.2,64,37826,,,12.28096451,82,6677,9.767415526,15.2439151,,,,,,,,,,37.32162459,25.84630997,52.15322952,7.974178849,5.747086716,10.77877326,,,,,,,0.122503787,3558,29044,0.105822936,0.139184638,0.000581611,22,37826,,,1719.363636,0.000658657,25,37956,,,1518.24,0.002055011,78,37956,,,486.6153846,1296,,,,,,,,,1289,0.44,,,,,,,0.62,,0.44,0.48,,,,,,0.33,0.3,0.48,0.48,0.949184083,26524,27944,0.938311598,0.960056567,0.734068787,5656,7705,0.651191306,0.816946268,0.042820026,857,20014,,,0.108,723,,0.066297872,0.149702128,,,,,,,0.564189189,0.229852507,0.898525872,0.199626866,0,0.42547893,0.044840415,0.013646173,0.076034658,3.643056371,148899,40872,3.276905522,4.00920722,0.174410084,1190,6823,0.108204544,0.240615623,13.74715804,52,37826,,,104.3344758,193,184982,89.61456238,119.0543892,,,,,,,,,,,,,112.8122482,96.42233582,129.2021606,,,,6.1,,,,,0,,,,,0.139292483,2205,15830,0.112707916,0.165877049,0.118207817,0.095728367,0.140687267,0.027795325,0.013489124,0.042101527,0.000631712,0,0.002955058,0.761518339,14264,18731,0.724021814,0.799014863,,,,,,,0.692482916,0.524091142,0.860874689,0.711864407,0.605510722,0.818218092,0.764802922,0.726494357,0.803111488,0.239,,18731,0.195612769,0.282387231,78.50100376,,,77.5546262,79.44738132,,,,,,,,,,,,,78.18297872,77.1862508,79.17970664,,,,343.9645167,555,103646,311.6942992,376.2347343,,,,,,,,,,,,,355.0014319,319.7830344,390.2198294,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.091,,,0.076,0.108,0.144,,,0.121,0.169,0.08,,,0.066,0.095,87.5,29,33142,,,0.1,3680,,,,0.085060032,2885.236285,33920,,,43.60128846,49,112382,32.25647323,57.64321563,,,,,,,,,,,,,48.07151405,35.32114039,63.92492287,,,,0.283,,,0.267,0.299,0.141464521,3120,22055,0.121209201,0.16171984,0.065816257,485,7369,0.045560938,0.086071576,0.001132891,43,37956,,,882.6976744,0.93,420.36,452,,,,,,,,3.327177688,,,,,,,,2.907041714,3.441338753,3.157231093,,,,,,,,2.782840005,3.287713008,0.043117917,,,,,1722.118,,,,,0.806101248,47722,59201,0.729316794,0.882885703,82052,,,73719.91489,90384.08511,,,,,,,,,,60857,56646.2766,65067.7234,81267,76212.70213,86321.29787,,,,,,0.206140351,1081,5244,,,66.14870501,,,,,0.266087359,,82052,,,12.73458445,19,1492,,,,,,,,,,,,,,,,,,,,,,,,,,15.82142909,35,184982,10.67465177,22.5860738,18.92075986,,,,,,,,,,,,,17.91091692,11.99522216,25.72306439,,,,13.51482847,25,184982,8.746084402,19.95055286,,,,,,,,,,,,,14.2564929,9.037393564,21.39173923,,,,6.624865067,17,256609,3.859228036,10.60705073,,,,,,,,,,,,,6.244981711,3.414189614,10.47801817,,,,23.84615385,,2600,,,26,36,0.84065915,24232,28825,,,0.383,,,,,50.28800557,,,,,0.778123251,12513,16081,0.763768145,0.792478357,0.118946366,1874,15755,0.095224946,0.142667787,0.928238294,14927,16081,0.907749659,0.948726929,37956,,,,,0.179154811,6800,37956,,,0.244546317,9282,37956,,,0.024317631,923,37956,,,0.006770998,257,37956,,,0.010090631,383,37956,,,0.000737696,28,37956,,,0.076720413,2912,37956,,,0.869111603,32988,37956,,,0.014956483,531,35503,0.007395531,0.022517434,0.507851196,19276,37956,,,0.220804551,8151,36915,, -37,057,37057,NC,Davidson County,2024,1,10957.98684,3264,468570,10373.96861,11542.00506,0,,,,2,4529.107913,2476.105442,7599.073493,1,12224.52804,10390.19563,14058.86046,,6575.838338,5029.995281,8446.939443,,11397.99551,10711.17434,12084.81668,,,,,2,,0.162,,,0.134,0.19,3.730118477,,,2.919038568,4.582476785,4.821605892,,,3.857358886,5.832740321,0.101602538,1249,12293,0.096261648,0.106943428,0,,,,0.157446809,0.110878793,0.204014825,0.168482208,0.148712425,0.18825199,0.082245431,0.06848773,0.096003132,0.09290176,0.086838161,0.09896536,,,,0.086021505,0.053119265,0.118923746,0.186,,,0.147,0.225,0.37,,,0.304,0.439,7.2,0.09544876,0.127,,,0.242,,,0.197,0.287,0.577398923,97540,168930,,,0.156229091,,,0.126129867,0.191258123,0.205298013,31,151,0.164713919,0.248463085,441.9,754,170637,,,21.35503814,753,35261,19.82972527,22.88035101,,,,,,,31.92106791,25.95570127,37.88643454,27.96882164,23.0057525,32.93189078,18.31930153,16.66308905,19.97551401,,,,37.62376238,26.62481351,51.64155339,0.135087936,18565,137429,0.119598575,0.150577298,0.000281299,48,170637,,,3554.9375,0.00022018,38,172586,,,4541.736842,0.001239962,214,172586,,,806.4766355,3193,,,,,,,5264,,3061,0.44,,,,,,0.39,0.45,0.32,0.45,0.47,,,,,,0.47,0.39,0.28,0.48,0.865464354,103320,119381,0.853024887,0.87790382,0.578147794,22986,39758,0.540835986,0.615459602,0.034967777,2854,81618,,,0.161,5851,,0.114531915,0.207468085,0.704545455,0.355781823,1,0.279918864,0.014695702,0.545142026,0.321082621,0.218424256,0.423740987,0.371135976,0.29161838,0.450653572,0.169136001,0.140198967,0.198073035,4.282142177,112342,26235,3.999098183,4.56518617,0.263634875,9658,36634,0.229678086,0.297591664,10.1384811,173,170637,,,108.8665491,914,839560,101.8086178,115.9244805,,,,,,,86.31319359,67.28536881,109.0515275,47.3791437,31.9665093,67.63667366,120.9024375,112.545193,129.2596819,,,,8.9,,,,,0,,,,,0.115461476,7800,67555,0.102805389,0.128117563,0.097487814,0.085987306,0.108988322,0.019539634,0.013813048,0.025266221,0.004588854,0.002097182,0.007080525,0.802786894,60665,75568,0.790163822,0.815409966,,,,0.613039797,0.482327886,0.743751708,0.737791254,0.649848325,0.825734184,0.63093981,0.585468981,0.676410639,0.770011632,0.749984266,0.790038997,0.312,,75568,0.286724694,0.337275306,74.34523477,,,73.90233438,74.78813516,,,,97.52414939,69.74243896,125.3058598,72.91871974,71.51613534,74.32130414,90.75673955,80.03827221,101.4752069,73.980817,73.47895449,74.48267951,,,,515.0819098,3264,468570,496.3834818,533.7803378,,,,279.4831446,173.0044715,427.2196748,620.1149827,554.0859368,686.1440285,238.6846921,183.8162972,304.7950232,526.788198,505.6356241,547.9407719,,,,59.14102333,95,160633,47.84861956,72.29683417,,,,,,,85.36064874,46.66746099,143.2206641,53.00821627,27.39011887,92.59468614,56.40460906,43.34285031,72.16599723,,,,6.993575669,86,12297,5.593957814,8.637009058,,,,,,,,,,,,,5.971830986,4.473311204,7.811301964,,,,,,,0.119,,,0.101,0.138,0.169,,,0.145,0.192,0.105,,,0.09,0.122,232.1,337,145195,,,0.127,21310,,,,0.09544876,15546.50307,162878,,,49.65712935,252,507480,43.52604331,55.78821538,,,,,,,32.21130617,18.41154464,52.30914317,,,,57.27935567,49.860508,64.69820335,,,,0.329,,,0.313,0.343,0.164774301,16660,101108,0.145710471,0.183838131,0.054732876,2092,38222,0.039243515,0.070222238,0.000672129,116,172586,,,1487.810345,0.847302031,1669.185,1970,,,0.0864,702,8125,0.053643886,0.119156114,3.06804136,,,,,,3.049997888,2.754144782,2.765742866,3.19280373,3.050783556,,,,,,3.170933932,2.552352265,2.871568824,3.179237626,0.15623413,,,,,-7928.574033,,,,,0.807335353,41581,51504,0.760101385,0.854569321,63590,,,59195.78723,67984.21277,,,,54875,23817.6383,85932.3617,40754,37794.34043,43713.65957,47646,36934.51064,58357.48936,62533,59429.17021,65636.82979,,,,,,0.486645345,11260,23138,,,55.91414935,,,,,0.258971536,,63590,,,6.708457055,61,9093,,,3.592482474,42,1169108,2.589145377,4.85599267,,,,,,,14.3361468,8.194346589,23.28100425,,,,2.471213054,1.566537093,3.708032935,,,,17.29030981,146,839560,14.37409154,20.20652808,17.39006146,,,,,,,11.74776092,5.37182436,22.30090959,,,,18.97488774,15.49791305,22.45186244,,,,14.53142122,122,839560,11.95281962,17.11002282,,,,,,,27.1270037,17.00034879,41.0706096,,,,14.5864881,11.82865923,17.79427848,,,,18.81776534,220,1169108,16.33112612,21.30440456,,,,,,,13.44013763,7.522343004,22.1674631,,,,20.84414489,17.91096101,23.77732877,,,,15.92307692,,13000,,,44,163,0.709275211,88514,124795,,,0.663,,,,,38.90574757,,,,,0.725503812,49105,67684,0.71255394,0.738453684,0.099170772,6482,65362,0.086639077,0.111702467,0.849772472,57516,67684,0.836036682,0.863508262,172586,,,,,0.214003453,36934,172586,,,0.191742088,33092,172586,,,0.101815906,17572,172586,,,0.008465345,1461,172586,,,0.019370053,3343,172586,,,0.000898103,155,172586,,,0.083934966,14486,172586,,,0.773805523,133548,172586,,,0.015395547,2470,160436,,,0.50669811,87449,172586,,,0.477144379,80604,168930,, -37,059,37059,NC,Davie County,2024,1,8890.456264,712,117605,7764.3076,10016.60493,0,,,,2,,,,2,17106.68459,10960.5756,25453.39068,1,,,,2,8676.118636,7456.916771,9895.320501,,,,,2,,0.14,,,0.114,0.167,3.275541498,,,2.484637999,4.172655196,4.803871838,,,3.731439346,6.002244001,0.084757835,238,2808,0.074455979,0.09505969,0,,,,,,,0.147208122,0.097730323,0.196685921,0.06122449,0.03585262,0.08659636,0.081576535,0.070091487,0.093061583,,,,,,,0.163,,,0.127,0.203,0.35,,,0.273,0.433,7.5,0.083854039,0.119,,,0.22,,,0.179,0.269,0.668313355,28545,42712,,,0.168145348,,,0.131812572,0.209510728,0.290322581,9,31,0.195384033,0.388273114,300.9,131,43533,,,15.31753131,137,8944,12.75254787,17.88251474,,,,,,,19.53818828,9.753393192,34.95921583,25.3411306,16.55366785,37.13062776,13.56476079,10.94851265,16.6177484,,,,,,,0.122521994,4178,34100,0.107032632,0.138011356,0.000413479,18,43533,,,2418.5,0.000408256,18,44090,,,2449.444444,0.000884554,39,44090,,,1130.512821,2935,,,,,,,,3789,2965,0.49,,,,,,,0.49,0.27,0.49,0.54,,,,,,,0.44,0.26,0.54,0.898380593,27627,30752,0.883472027,0.913289159,0.605417755,5565,9192,0.533365761,0.677469748,0.033828264,704,20811,,,0.151,1347,,0.105723404,0.196276596,,,,,,,0.16091954,0,0.407717613,0.205546493,0.068232093,0.342860892,0.156292594,0.102880414,0.209704775,3.83230688,130674,34098,3.369880356,4.294733404,0.187180627,1685,9002,0.127680517,0.246680736,11.02611812,48,43533,,,93.55190036,201,214854,80.6185615,106.4852392,,,,,,,111.7818019,62.56342598,184.367083,,,,101.1555071,86.45914283,115.8518715,,,,9.2,,,,,1,,,,,0.127261576,2075,16305,0.099367398,0.155155755,0.097380586,0.070831983,0.123929188,0.021465808,0.011221014,0.031710603,0.01042625,0,0.020998712,0.81437868,15768,19362,0.789282139,0.839475221,,,,,,,0.809061489,0.648428988,0.969693989,0.828660436,0.678678131,0.978642742,0.81348162,0.778368416,0.848594824,0.417,,19362,0.368704246,0.465295754,76.95906571,,,76.03825194,77.87987949,,,,,,,69.26543238,64.85977547,73.67108928,93.46986372,76.34965295,110.5900745,77.14037426,76.14911854,78.13162998,,,,413.3114638,712,117605,380.3306549,446.2922728,,,,,,,699.6132638,536.3894777,896.87263,,,,406.7935729,371.3383824,442.2487635,,,,68.06150744,27,39670,44.85296227,99.02591995,,,,,,,,,,,,,60.99213879,36.14780693,96.39387459,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.107,,,0.091,0.126,0.16,,,0.136,0.186,0.093,,,0.078,0.109,109.9,41,37323,,,0.119,5050,,,,0.083854039,3458.140553,41240,,,30.07750742,39,129665,21.38804804,41.11694279,,,,,,,,,,,,,30.47851265,20.9800057,42.80316355,,,,0.323,,,0.306,0.338,0.144904395,3630,25051,0.124649076,0.165159714,0.062224554,593,9530,0.043160724,0.081288384,0.000929916,41,44090,,,1075.365854,0.88,410.96,467,,,,,,,,3.258066861,,,,,,,2.427179571,2.925054716,3.415451772,2.992275329,,,,,,,2.41067502,2.784433177,3.11022146,0.03034612,,,,,-1272.177,,,,,0.799805103,45141,56440,0.675079335,0.92453087,63436,,,55686.55319,71185.44681,,,,,,,39083,12456.78723,65709.21277,58063,21396.10638,94729.89362,70496,65744.34043,75247.65957,,,,,,0.365809727,2234,6107,,,31.05671828,,,,,0.318604578,,63436,,,7.633587786,16,2096,,,,,,,,,,,,,,,,,,,,,,,,,,13.31081716,29,214854,8.695067696,19.5034312,13.49753786,,,,,,,,,,,,,15.12059684,9.688051704,22.49824953,,,,11.6358085,25,214854,7.530081752,17.17674872,,,,,,,,,,,,,12.78338827,8.103571588,19.18135898,,,,12.39032885,37,298620,8.723934957,17.07843619,,,,,,,,,,,,,13.15621611,9.056133816,18.47621885,,,,23.75,,3200,,,10,66,0.784837209,25311,32250,,,0.693,,,,,21.01239595,,,,,0.823172213,13556,16468,0.797539344,0.848805082,0.104011135,1644,15806,0.077281763,0.130740508,0.911950449,15018,16468,0.888494044,0.935406855,44090,,,,,0.20514856,9045,44090,,,0.223225221,9842,44090,,,0.062213654,2743,44090,,,0.007325924,323,44090,,,0.00927648,409,44090,,,0.000453618,20,44090,,,0.076593332,3377,44090,,,0.830528465,36618,44090,,,0.01189139,487,40954,0.006926055,0.016856726,0.508346564,22413,44090,,,0.704415621,30087,42712,, -37,061,37061,NC,Duplin County,2024,1,11570.71341,1047,152534,10501.35757,12640.06925,0,,,,2,,,,2,15920.31167,13248.34175,18592.28158,,7477.220521,5839.771262,9431.496271,,11498.86229,9940.772888,13056.95169,,,,,2,,0.206,,,0.176,0.236,4.067882035,,,3.243078303,4.98917389,4.893965718,,,3.862876692,5.983301674,0.091537836,450,4916,0.083476558,0.099599113,0,,,,,,,0.140669857,0.119589475,0.161750238,0.075502444,0.063433687,0.087571202,0.081653747,0.069452425,0.093855068,,,,,,,0.203,,,0.168,0.241,0.435,,,0.357,0.514,7.4,0.063194708,0.13,,,0.302,,,0.254,0.355,0.253227959,12336,48715,,,0.153110625,,,0.120611401,0.188789309,0.212765957,20,94,0.160825005,0.26851942,674,327,48515,,,37.23758747,447,12004,33.78548367,40.68969127,,,,,,,43.34715417,35.42455395,51.26975438,44.68626997,38.3817573,50.99078264,26.98072805,22.26960483,31.69185127,,,,68.96551724,35.63548913,120.4688796,0.195992781,7493,38231,0.173354483,0.218631079,0.000226734,11,48515,,,4410.454546,0.000285773,14,48990,,,3499.285714,0.000796081,39,48990,,,1256.153846,3266,,,,,,,3010,6232,3357,0.43,,,,,,,0.43,0.32,0.44,0.41,,,,,,,0.33,0.2,0.45,0.803301279,26815,33381,0.782400205,0.824202354,0.528627523,5789,10951,0.466829084,0.590425961,0.036604109,905,24724,,,0.296,3421,,0.223319149,0.368680851,0.333333333,0,0.710445416,,,,0.416,0.323900184,0.508099816,0.402799378,0.336280508,0.469318248,0.176264045,0.118734616,0.233793474,4.254785718,94018,22097,3.756578215,4.75299322,0.318820706,3720,11668,0.253614291,0.384027122,12.16118726,59,48515,,,92.97575235,264,283945,81.76011885,104.1913859,,,,,,,99.3237223,77.12875678,125.916485,44.45261964,29.77061703,63.84137686,114.6654325,97.22189591,132.1089691,,,,7.1,,,,,0,,,,,0.132027059,2830,21435,0.107670425,0.156383692,0.087544149,0.067822776,0.107265521,0.047585724,0.033191879,0.06197957,0.006997901,0.001831093,0.012164709,0.805191724,16967,21072,0.780931292,0.829452155,,,,,,,0.74118697,0.677780923,0.804593018,0.695807315,0.635191897,0.756422733,0.836552593,0.801099588,0.872005598,0.379,,21072,0.334022263,0.423977737,74.87996865,,,74.03667679,75.7232605,,,,,,,71.74710502,69.90559907,73.58861098,80.77609616,76.63738761,84.91480471,74.85586362,73.69163217,76.02009507,,,,521.0787715,1047,152534,487.4681172,554.6894257,,,,,,,683.0368618,603.0450633,763.0286603,302.0854385,232.1307454,386.4985022,519.0182585,472.7871552,565.2493618,,,,76.34882932,45,58940,55.68936001,102.1607406,,,,,,,112.712342,61.62088621,189.1121578,65.79813133,36.82671462,108.5240114,68.64674386,38.42106143,113.2223645,,,,9.487283004,47,4954,6.970898702,12.61607516,,,,,,,,,,,,,,,,,,,,,,0.134,,,0.116,0.154,0.174,,,0.152,0.198,0.131,,,0.112,0.151,342.1,138,40342,,,0.13,6480,,,,0.063194708,3697.206398,58505,,,26.49804276,44,166050,19.25351843,35.5723856,,,,,,,25.05574904,12.01520557,46.07841458,,,,37.96372092,25.96715701,53.59344661,,,,0.345,,,0.334,0.356,0.244054465,6578,26953,0.214267231,0.273841699,0.08393669,997,11878,0.058915413,0.108957966,0.000938967,46,48990,,,1065,0.86,608.02,707,,,0.125,336,2688,0.06497335,0.18502665,2.755222972,,,,,,,2.50269185,2.619676466,3.148119631,2.659874432,,,,,,,2.337790501,2.654561227,2.892147276,0.092746117,,,,,-8877.305,,,,,0.815281276,35927,44067,0.738063495,0.892499057,51270,,,44460.6383,58079.3617,,,,90662,34029.31915,147294.6809,36459,31178.31915,41739.68085,47147,35157.04255,59136.95745,58827,53267.51064,64386.48936,,,,,,0.992390746,9651,9725,,,33.76728454,,,,,0.287126975,,51270,,,8.884501481,27,3039,,,5.720354264,23,402073,3.626213906,8.583340064,,,,,,,12.29987085,6.355522754,21.48539908,,,,,,,,,,10.97486597,32,283945,7.350039981,15.76173823,11.26978816,,,,,,,,,,,,,19.15754204,12.27459867,28.504904,,,,11.97414992,34,283945,8.292446912,16.73267432,,,,,,,,,,,,,15.8873792,10.07123558,23.83886944,,,,32.08372609,129,402073,26.54708953,37.62036265,,,,,,,42.02455874,30.15754891,57.01105919,23.07920564,14.28639204,35.27901741,32.05423966,24.79074663,40.78085218,,,,7.959183674,,4900,,,12,27,0.574554193,22715,39535,,,0.476,,,,,8.866847672,,,,,0.69382424,14077,20289,0.665549498,0.722098982,0.112610756,2186,19412,0.089065972,0.136155541,0.758785549,15395,20289,0.732447499,0.785123599,48990,,,,,0.240110227,11763,48990,,,0.198897734,9744,48990,,,0.237395387,11630,48990,,,0.015921617,780,48990,,,0.008797714,431,48990,,,0.005735865,281,48990,,,0.238926312,11705,48990,,,0.501061441,24547,48990,,,0.071639921,3317,46301,0.057286527,0.085993316,0.505919575,24785,48990,,,1,48715,48715,, -37,063,37063,NC,Durham County,2024,1,6965.378656,3501,923696,6637.811415,7292.945898,0,,,,2,2673.740345,1776.681042,3864.299239,,10880.55597,10164.23512,11596.87682,,5037.081986,4304.345739,5769.818232,,4805.535729,4397.217711,5213.853747,,,,,2,,0.139,,,0.117,0.164,3.015689908,,,2.363010977,3.728078848,4.819383329,,,3.937942759,5.742693118,0.088782161,2588,29150,0.085516954,0.092047369,0,,,,0.0937682,0.079979658,0.107556743,0.134670161,0.12752833,0.141811991,0.073819486,0.067554625,0.080084347,0.060242044,0.055826552,0.064657536,,,,0.093617021,0.072114232,0.11511981,0.132,,,0.104,0.164,0.303,,,0.249,0.362,8,0.080704466,0.096,,,0.212,,,0.175,0.255,0.87778951,285135,324833,,,0.189648174,,,0.157379394,0.226217236,0.273333333,41,150,0.231751713,0.315998325,735.3,2398,326126,,,15.48206446,1139,73569,14.58293323,16.38119568,,,,,,,15.33373422,14.00291546,16.66455298,38.43913803,35.16035446,41.7179216,3.303055326,2.543755086,4.217927911,,,,16.27296588,11.0566908,23.09817612,0.125021741,33066,264482,0.111915358,0.138128124,0.001195857,390,326126,,,836.2205128,0.000754479,251,332680,,,1325.418327,0.007379464,2455,332680,,,135.5112016,2583,,,,,,984,3448,1912,2232,0.49,,,,,,0.42,0.46,0.23,0.51,0.57,,,,,,0.56,0.45,0.43,0.62,0.906886501,204726,225746,0.899802943,0.913970059,0.769985399,80686,104789,0.742894623,0.797076176,0.031715156,5674,178905,,,0.17,10753,,0.130680851,0.209319149,0.199404762,0,0.51783396,0.068873465,0.004150377,0.133596554,0.189728041,0.151949533,0.22750655,0.324217344,0.276454836,0.371979853,0.023269281,0.013464361,0.033074202,4.437318134,147918,33335,4.20927785,4.665358419,0.299841565,19493,65011,0.267920354,0.331762777,10.54807038,344,326126,,,73.03690703,1171,1603299,68.85359752,77.22021653,,,,19.84914649,11.56285929,31.78040634,94.4167746,86.43840605,102.3951431,37.33194932,29.69120717,46.33879251,75.48878992,69.00040116,81.97717867,,,,8.1,,,,,0,,,,,0.154038269,20045,130130,0.142671423,0.165405116,0.127178448,0.117032919,0.137323977,0.027549374,0.021787114,0.033311633,0.007799892,0.005209361,0.010390424,0.678394256,114323,168520,0.663585999,0.693202512,0.656462585,0.468932975,0.843992195,0.681484588,0.645622078,0.717347098,0.729885528,0.704903148,0.754867908,0.693516489,0.654668313,0.732364665,0.750968811,0.735659883,0.766277739,0.259,,168520,0.24227665,0.27572335,79.39446207,,,79.05431102,79.73461313,,,,91.47332663,87.26079592,95.68585735,75.22163695,74.61080787,75.83246602,85.50276335,82.36303476,88.64249193,81.51615072,81.06982267,81.96247878,,,,328.5814925,3501,923696,317.4850715,339.6779134,,,,110.9903675,82.11128489,146.7351519,485.0644417,462.3327073,507.796176,220.079861,185.8128205,254.3469014,252.5921865,238.4934661,266.6909069,,,,64.32324399,196,304711,55.31798983,73.32849815,,,,,,,93.67556138,75.7576359,111.5934869,60.66488716,44.24938498,81.174392,34.0360123,23.12581904,48.31140262,,,,5.967807939,175,29324,5.083605141,6.852010737,,,,,,,11.07665042,8.905626938,13.2476739,4.407294833,2.951634519,6.329610553,2.855613064,1.953237222,4.031273611,,,,,,,0.096,,,0.082,0.112,0.142,,,0.121,0.164,0.105,,,0.09,0.123,650.3,1813,278793,,,0.096,30870,,,,0.080704466,21595.46596,267587,,,23.07881672,225,974920,20.06318467,26.09444878,,,,,,,38.30980643,31.74940551,44.87020736,,,,19.45603766,15.47396414,24.15007276,,,,0.325,,,0.312,0.337,0.146689603,29505,201139,0.131200241,0.162178964,0.058964504,3912,66345,0.042283653,0.075645355,0.003029939,1008,332680,,,330.0396825,0.824854892,2984.325,3618,,,0.059646069,1028,17235,0.036393048,0.08289909,2.840884816,,,,,,3.473068936,2.6462711,2.557854009,3.805173081,2.834252193,,,,,,3.595549207,2.55607198,2.701403235,3.706166178,0.113046768,,,,,-9485.814,,,,,0.90450563,56471,62433,0.850219992,0.958791268,79524,,,73455.74468,85592.25532,66368,41011.91489,91724.08511,90230,71676.12766,108783.8723,55970,52638.59575,59301.40426,56936,52809.87234,61062.12766,97113,91872.82979,102353.1702,,,,,,0.554189975,20111,36289,,,39.08457019,,,,,0.308221417,,79524,,,8.00120773,159,19872,,,11.98843862,265,2210463,10.54500852,13.43186873,,,,,,,26.41938126,22.84608466,29.99267786,7.976151308,5.110470644,11.8678809,2.748954869,1.795708587,4.027855803,,,,9.214646014,154,1603299,7.731187652,10.69810438,9.605195288,,,,,,,6.074339337,4.230999912,8.447935571,4.704575744,2.151231606,8.930750212,13.65944683,10.87589399,16.44299968,,,,15.21862111,244,1603299,13.30904724,17.12819497,,,,,,,28.25483403,23.89032,32.61934806,7.739550469,4.508573359,12.39177004,9.14575724,7.027850979,11.70139644,,,,10.45029933,231,2210463,9.102644064,11.79795459,,,,,,,13.33549721,10.79679155,15.87420287,11.63188732,8.102035714,16.17713948,8.564051706,6.801093238,10.64433432,,,,12.01923077,,20800,,,167,83,0.798181052,179914,225405,,,0.601,,,,,134.1113227,,,,,0.553875795,75033,135469,0.543111508,0.564640081,0.128917417,17092,132581,0.118884199,0.138950634,0.916977316,124222,135469,0.906388893,0.927565738,332680,,,,,0.192891067,64171,332680,,,0.147829746,49180,332680,,,0.339794998,113043,332680,,,0.009796201,3259,332680,,,0.06013286,20005,332680,,,0.001370687,456,332680,,,0.139323073,46350,332680,,,0.435538656,144895,332680,,,0.049263712,15051,305519,0.044728261,0.053799163,0.521305759,173428,332680,,,0.051130889,16609,324833,, -37,065,37065,NC,Edgecombe County,2024,1,15532.51585,1253,138173,14188.90195,16876.12974,0,,,,2,,,,2,17593.49018,15687.48076,19499.49961,,,,,2,13927.30843,11745.3444,16109.27246,,,,,2,,0.216,,,0.185,0.248,4.077896479,,,3.231957658,5.002310315,5.221963458,,,4.114671519,6.426208428,0.130655698,540,4133,0.12038066,0.140930736,0,,,,,,,0.15528197,0.141135613,0.169428327,0.050295858,0.026995747,0.073595969,0.096334186,0.07944918,0.113219191,,,,0.179775281,0.099995566,0.259554996,0.213,,,0.173,0.254,0.44,,,0.356,0.527,6.8,0.095589172,0.143,,,0.308,,,0.256,0.363,0.660838446,32315,48900,,,0.132516731,,,0.103766619,0.165740718,0.306451613,19,62,0.240648584,0.373306554,1230.4,595,48359,,,33.49326444,363,10838,30.04770111,36.93882777,,,,,,,35.19152912,30.60335396,39.77970428,43.52331606,31.36777796,58.83087956,25.51337897,20.29154744,31.66883047,,,,73.17073171,37.80838481,127.814543,0.112035011,4096,36560,0.096545649,0.127524373,0.000392895,19,48359,,,2545.210526,0.000289849,14,48301,,,3450.071429,0.000703919,34,48301,,,1420.617647,2963,,,,,,,3144,,2781,0.48,,,,,,,0.47,,0.49,0.48,,,,,,,0.42,0.13,0.52,0.855848725,29193,34110,0.839068535,0.872628915,0.515752523,5877,11395,0.450199647,0.581305399,0.065361089,1325,20272,,,0.318,3407,,0.210765957,0.425234043,,,,,,,0.428459856,0.346308024,0.510611689,0.515539305,0.420119446,0.610959165,0.204267226,0.13862876,0.269905693,5.291856031,101302,19143,4.494956427,6.088755635,0.435793091,4819,11058,0.364377975,0.507208207,12.40720445,60,48359,,,130.7691103,334,255412,116.7445903,144.7936303,,,,,,,114.4807919,97.1175642,131.8440196,,,,171.7465977,144.9662833,198.526912,,,,7.7,,,,,1,,,,,0.177163462,3685,20800,0.150611789,0.203715134,0.14716887,0.12241571,0.17192203,0.032932692,0.020419935,0.045445449,0.004807692,0.001193632,0.008421753,0.792967384,15876,20021,0.761295899,0.824638869,,,,,,,0.824723247,0.769921919,0.879524576,0.68,0.527049125,0.832950875,0.815366638,0.770439761,0.860293514,0.318,,20021,0.274941216,0.361058784,71.17319847,,,70.26275932,72.08363763,,,,,,,69.98326108,68.72420433,71.24231782,,,,71.93150283,70.45726893,73.40573673,,,,664.8527289,1253,138173,624.8400577,704.8654002,,,,,,,725.3785311,669.0055995,781.7514628,,,,626.2812244,563.4980505,689.0643983,,,,107.9352389,54,50030,81.08427338,140.8320735,,,,,,,130.9955663,93.15065326,179.0752515,,,,,,,,,,10.94196004,46,4204,8.010889964,14.59504132,,,,,,,13.10717039,9.077096525,18.31595686,,,,,,,,,,,,,0.136,,,0.118,0.155,0.18,,,0.157,0.206,0.145,,,0.125,0.167,684,279,40787,,,0.143,7100,,,,0.095589172,5405.758829,56552,,,40.48851719,61,150660,30.97050747,52.00919416,,,,,,,30.26986751,19.77328244,44.3523693,,,,62.99796183,43.62791993,88.03333722,,,,0.379,,,0.365,0.393,0.141386906,3723,26332,0.121131587,0.161642225,0.038083766,411,10792,0.024977383,0.051190149,0.000869547,42,48301,,,1150.02381,0.835238095,438.5,525,,,0.124666413,327,2623,0.064311051,0.185021774,2.516529404,,,,,,,2.339505033,2.496184851,3.101590072,2.361235158,,,,,,,2.173854111,2.448490775,2.82443943,0.114370421,,,,,-11877.16,,,,,0.877158684,40380,46035,0.803092562,0.951224806,48770,,,43509.57447,54030.42553,76181,39089.93617,113272.0638,,,,38570,33018.85106,44121.14894,55266,30840.46809,79691.53192,63022,52990.85106,73053.14894,,,,,,0.895532195,6815,7610,,,45.61166439,,,,,0.318474472,,48770,,,9.282399143,26,2801,,,18.18783069,66,362880,14.06646694,23.13938008,,,,,,,27.95409744,21.22671818,36.13715328,,,,,,,,,,13.0294505,36,255412,8.912134497,18.39369648,14.09487416,,,,,,,,,,,,,23.91342409,14.80278642,36.55420894,,,,27.40669976,70,255412,21.364867,34.62671638,,,,,,,34.2756862,25.44007495,45.18821922,,,,21.74007566,13.279403,33.57578362,,,,32.24206349,117,362880,26.39973504,38.08439195,,,,,,,34.21967101,26.72584696,43.16345875,,,,31.21573882,22.40095312,42.34767448,,,,22.5,,4000,,,62,28,0.645722976,25477,39455,,,0.57,,,,,34.62858087,,,,,0.619018088,11978,19350,0.595529195,0.642506981,0.171040326,3109,18177,0.140977329,0.201103323,0.757364341,14655,19350,0.733767784,0.780960898,48301,,,,,0.225978758,10915,48301,,,0.211569119,10219,48301,,,0.56532991,27306,48301,,,0.008529844,412,48301,,,0.004658289,225,48301,,,0.001532059,74,48301,,,0.058942879,2847,48301,,,0.353967827,17097,48301,,,0.008255354,382,46273,0.003720803,0.012789905,0.533280885,25758,48301,,,0.44795501,21905,48900,, -37,067,37067,NC,Forsyth County,2024,1,8940.223879,5500,1074412,8587.557308,9292.89045,0,,,,2,2115.465338,1253.75883,3343.347266,1,12669.12535,11841.93208,13496.31862,,6697.461644,5890.273209,7504.650079,,8004.593899,7552.517874,8456.669925,,,,,2,,0.161,,,0.136,0.185,3.48331273,,,2.780489756,4.237696025,4.663388543,,,3.849574331,5.556745027,0.106586322,3290,30867,0.103143727,0.110028917,0,,,,0.1,0.080178524,0.119821476,0.170252573,0.162286541,0.178218604,0.091551369,0.08469371,0.098409028,0.074465029,0.070104738,0.07882532,0.30952381,0.169709117,0.449338502,0.114864865,0.089179034,0.140550695,0.163,,,0.131,0.194,0.349,,,0.294,0.405,6.9,0.142326043,0.116,,,0.235,,,0.195,0.276,0.809012259,309520,382590,,,0.157287956,,,0.128171447,0.189121552,0.215686275,44,204,0.180659873,0.252430103,745.5,2874,385523,,,17.20423489,1677,97476,16.38080827,18.02766151,,,,,,,20.28404697,18.62895256,21.93914138,38.00512311,35.2424404,40.76780582,7.212038557,6.411768045,8.012309068,,,,16.24203822,12.09326428,21.35528069,0.129281779,39912,308721,0.117366885,0.141196672,0.001138713,439,385523,,,878.1845103,0.000655263,255,389157,,,1526.105882,0.003708015,1443,389157,,,269.6860707,3106,,,,,,1598,4615,1625,2706,0.49,,,,,,0.45,0.42,0.41,0.51,0.52,,,,,0.36,0.46,0.39,0.34,0.55,0.892202769,229984,257771,0.886001958,0.89840358,0.681378238,65753,96500,0.655285052,0.707471425,0.037093063,7013,189065,,,0.216,18471,,0.176680851,0.255319149,0.25,0.115490907,0.384509093,0.069900887,0.012869742,0.126932032,0.334812495,0.287596864,0.382028125,0.403342303,0.360859716,0.44582489,0.076968273,0.05866742,0.095269125,4.835903256,123567,25552,4.588568617,5.083237895,0.326497242,28354,86843,0.299220771,0.353773713,10.58302618,408,385523,,,94.28026092,1798,1907080,89.92231333,98.63820852,,,,,,,86.90249459,78.66933696,95.13565222,47.47630109,39.01688744,55.93571473,114.9554197,108.5310139,121.3798256,,,,9.5,,,,,0,,,,,0.150547384,22415,148890,0.141656609,0.159438159,0.130461392,0.121944749,0.138978035,0.020619249,0.017346929,0.023891569,0.006716368,0.004762784,0.008669951,0.76845208,135047,175739,0.75616675,0.780737409,0.696763203,0.517068379,0.876458026,0.72373057,0.637179923,0.810281217,0.774347305,0.750256096,0.798438515,0.678438662,0.634443089,0.722434235,0.812707317,0.799570787,0.825843847,0.247,,175739,0.232952548,0.261047452,76.66839196,,,76.37206066,76.96472326,,,,93.02929731,86.53134471,99.5272499,72.86011915,72.23691108,73.48332722,82.45020504,80.1882155,84.71219458,77.58701973,77.2138322,77.96020725,,,,411.8559135,5500,1074412,400.5400169,423.1718101,,,,117.8046016,80.57826026,166.3049478,570.6080755,544.0975311,597.1186199,293.3674927,257.7511629,328.9838225,377.7917453,363.7248885,391.8586021,,,,62.93123057,249,395670,55.11454537,70.74791577,,,,,,,110.3659848,90.45236046,130.2796092,44.06706793,31.62328877,59.78195353,48.02675268,38.14017408,59.69286843,,,,8.575714099,263,30668,7.539263777,9.612164422,,,,,,,14.11710252,11.6120218,16.62218324,7.235221675,5.316168745,9.621311013,5.779521941,4.58977467,7.183418065,,,,,,,0.11,,,0.093,0.126,0.156,,,0.134,0.177,0.11,,,0.093,0.126,519.3,1686,324683,,,0.116,44070,,,,0.142326043,49909.4736,350670,,,32.30117196,372,1151661,29.01868597,35.58365795,,,,,,,31.55474244,25.4994439,38.61501325,16.60185558,10.84488325,24.325565,38.62669634,33.81921291,43.43417978,,,,0.324,,,0.312,0.336,0.160826615,35947,223514,0.145337253,0.176315977,0.049871225,4473,89691,0.036764842,0.062977608,0.003140121,1222,389157,,,318.4590835,0.847708836,3866.4,4561,,,0.062683855,1449,23116,0.043733976,0.081633735,3.015759364,,,,,,3.634905386,2.661393175,2.574837011,3.593741221,2.88836961,,,,,,4.056225499,2.439212103,2.599269903,3.425230084,0.13423966,,,,,-7140.471,,,,,0.846963264,45880,54170,0.8060325,0.887894028,62992,,,59309.10638,66674.89362,61250,35355.3617,87144.6383,101434,93721.48936,109146.5106,40436,38373.53192,42498.46809,47265,41325.42553,53204.57447,74402,72276.38298,76527.61702,,,,,,0.488290527,26730,54742,,,48.91395875,,,,,0.290147955,,62992,,,4.605381976,102,22148,,,7.969451694,211,2647610,6.89411792,9.044785468,,,,,,,20.21661073,16.84354443,23.58967702,9.173707009,6.274808803,12.95053712,2.476533175,1.743707903,3.413574758,,,,11.88455699,237,1907080,10.33119387,13.43792012,12.42737588,,,,,,,6.862137918,4.662489787,9.740257022,7.30404523,2.936605003,15.04912474,15.53589402,13.17541895,17.89636908,,,,15.57354699,297,1907080,13.80235604,17.34473794,,,,,,,23.55301255,19.26680161,27.83922349,12.16334987,8.264406106,17.26490423,13.55165517,11.34586391,15.75744644,,,,12.08637224,320,2647610,10.76210069,13.41064378,,,,,,,13.03824895,10.47078453,16.04468726,10.89377707,7.709085022,14.95256016,12.71733252,10.90901247,14.52565257,,,,20,,30500,,,344,266,0.736766967,201270,273180,,,0.644,,,,,84.97382979,,,,,0.619219313,94800,153096,0.609256691,0.629181936,0.139803768,20846,149109,0.129850209,0.149757327,0.868448555,132956,153096,0.858060329,0.878836781,389157,,,,,0.223244089,86877,389157,,,0.171534882,66754,389157,,,0.258353312,100540,389157,,,0.009942003,3869,389157,,,0.027760004,10803,389157,,,0.001847583,719,389157,,,0.142623671,55503,389157,,,0.548485573,213447,389157,,,0.027267275,9865,361789,0.023922577,0.030611972,0.523089653,203564,389157,,,0.075814841,29006,382590,, -37,069,37069,NC,Franklin County,2024,1,8971.079487,1118,199310,8149.816219,9792.342754,0,,,,2,,,,2,11224.22462,9304.723094,13143.72615,,5595.734642,3747.551311,8036.40836,,8649.731518,7640.495214,9658.967822,,,,,2,,0.16,,,0.135,0.188,3.499121788,,,2.736475355,4.34992648,4.899333412,,,3.878020009,6.032993398,0.092931197,493,5305,0.085118261,0.100744133,0,,,,,,,0.164705882,0.144346001,0.185065764,0.065333333,0.047647675,0.083018991,0.068752037,0.059799768,0.077704305,,,,0.107692308,0.054403739,0.160980876,0.173,,,0.139,0.212,0.36,,,0.284,0.443,8.5,0.021685793,0.103,,,0.229,,,0.184,0.277,0.609336036,41784,68573,,,0.168535987,,,0.13301014,0.208547777,0.353846154,23,65,0.290637787,0.416562395,425.4,305,71703,,,17.60444174,260,14769,15.46455072,19.74433275,,,,,,,20.69309399,16.48193386,25.65220339,30.04860804,23.33391991,38.09377073,12.72166538,10.33954187,15.48817113,,,,,,,0.131467272,7590,57733,0.11597791,0.146956634,0.000125518,9,71703,,,7967,0.000107326,8,74539,,,9317.375,0.001274501,95,74539,,,784.6210526,3187,,,,,,,3725,,3126,0.44,,,,,,,0.39,0.41,0.45,0.52,,,,,,0.18,0.43,0.33,0.55,0.869234094,42230,48583,0.851485815,0.886982374,0.625702621,10575,16901,0.567209052,0.684196191,0.036401059,1238,34010,,,0.157,2468,,0.099808511,0.214191489,,,,,,,0.23690205,0.15285385,0.320950251,0.260096931,0.185508058,0.334685803,0.076818407,0.040875214,0.112761599,4.037406323,125527,31091,3.578116348,4.496696299,0.23926054,3598,15038,0.189432617,0.289088463,7.949458182,57,71703,,,96.54874271,335,346975,86.20970092,106.8877845,,,,,,,75.89783691,58.69938157,96.56065783,51.54307068,29.46131839,83.7027176,115.595844,101.3516451,129.840043,,,,8.5,,,,,0,,,,,0.116984065,3010,25730,0.096164494,0.137803636,0.089978427,0.072620823,0.107336031,0.024873688,0.015663685,0.034083692,0.007773028,0.002806556,0.012739499,0.815929866,26153,32053,0.796819215,0.835040517,,,,,,,0.662854301,0.592320097,0.733388506,0.74617737,0.63278009,0.85957465,0.689603215,0.63369433,0.745512099,0.587,,32053,0.537671765,0.636328235,76.88730731,,,76.18248091,77.59213371,,,,,,,74.84738734,73.31786194,76.37691274,101.5615774,67.60555951,135.5175952,77.07364561,76.23505712,77.91223411,,,,418.4736335,1118,199310,392.6301516,444.3171154,,,,,,,521.6699668,463.7925515,579.5473821,246.449617,165.0511764,353.9427598,402.8714487,371.2750041,434.4678932,,,,53.07933887,36,67823,37.17611639,73.48417866,,,,,,,126.9802878,78.60279952,194.1028585,,,,,,,,,,7.562536358,39,5157,5.377702635,10.33823616,,,,,,,19.87281399,12.8606374,29.33619372,,,,,,,,,,,,,0.114,,,0.097,0.133,0.164,,,0.141,0.189,0.109,,,0.093,0.126,229.8,140,60921,,,0.103,6980,,,,0.021685793,1314.571072,60619,,,27.66744667,59,213247,21.06174231,35.6889904,,,,,,,,,,,,,36.58573007,27.06632452,48.36827539,,,,0.346,,,0.332,0.359,0.157202981,6686,42531,0.136947662,0.177458301,0.062308606,997,16001,0.044436265,0.080180946,0.000335395,25,74539,,,2981.56,0.82,555.96,678,,,0.093029491,347,3730,0.040259196,0.145799785,2.944509788,,,,,,,2.661596383,2.626987691,3.285590891,2.915743676,,,,,,,2.636126962,2.821550631,3.11195954,0.046034425,,,,,-4105.709,,,,,0.930925474,49178,52827,0.84949093,1.012360018,72415,,,68211.42553,76618.57447,42974,21019.61702,64928.38298,63750,8233.744681,119266.2553,55128,46744.68085,63511.31915,61700,52865.10638,70534.89362,79420,72950.21277,85889.78723,,,,,,0.529734447,4249,8021,,,28.20317229,,,,,0.245501623,,72415,,,5.631536605,21,3729,,,7.362376154,35,475390,5.12816475,10.23928298,,,,,,,14.16938247,8.254187444,22.68655394,,,,5.321147905,3.041495793,8.641210826,,,,17.29420091,62,346975,13.13221182,22.35676507,17.86872253,,,,,,,16.74141012,8.914095805,28.62832117,,,,18.57571424,13.2707626,25.29485053,,,,19.02154334,66,346975,14.71126024,24.20006699,,,,,,,25.29927897,15.85492344,38.3034124,,,,18.73292334,13.44306922,25.41332576,,,,21.87677486,104,475390,17.6721941,26.08135562,,,,,,,25.00479259,16.87062856,35.69589621,,,,22.6148786,17.56133812,28.66974733,,,,5.37037037,,5400,,,12,17,0.73532828,37351,50795,,,0.604,,,,,13.43419273,,,,,0.772145205,20441,26473,0.752441606,0.791848803,0.098807832,2503,25332,0.080398056,0.117217608,0.865750009,22919,26473,0.84199276,0.889507259,74539,,,,,0.213981942,15950,74539,,,0.175237124,13062,74539,,,0.248245885,18504,74539,,,0.010652142,794,74539,,,0.008599525,641,74539,,,0.001368411,102,74539,,,0.10326138,7697,74539,,,0.616724131,45970,74539,,,0.015625237,1029,65855,0.009591072,0.021659403,0.500503092,37307,74539,,,0.788925671,54099,68573,, -37,071,37071,NC,Gaston County,2024,1,10945.27378,4399,637635,10453.73879,11436.80877,0,,,,2,6426.954436,3869.446408,10036.48547,1,12420.51576,11193.73085,13647.30067,,6219.182114,4910.706784,7527.657444,,11199.54371,10602.34812,11796.73931,,,,,2,,0.157,,,0.133,0.186,3.427138732,,,2.694818603,4.280801087,4.525943943,,,3.584277339,5.576174609,0.100625137,1835,18236,0.096258824,0.10499145,0,,,,0.094637224,0.062414018,0.12686043,0.147852919,0.136696897,0.15900894,0.083545377,0.072376723,0.094714032,0.087511231,0.082261293,0.092761169,,,,0.112426036,0.084928877,0.139923194,0.174,,,0.139,0.213,0.382,,,0.314,0.458,7,0.119048671,0.123,,,0.233,,,0.192,0.284,0.754017452,171873,227943,,,0.175570195,,,0.141544329,0.214182364,0.190082645,23,121,0.145215644,0.238701051,641.5,1481,230856,,,21.86731145,1031,47148,20.53249322,23.20212967,,,,,,,28.8956604,25.48041159,32.31090921,28.42331069,24.00524497,32.84137641,17.97536963,16.4362646,19.51447466,,,,36.87150838,28.51642191,46.90959913,0.123708629,23518,190108,0.110602246,0.136815012,0.000524136,121,230856,,,1907.900826,0.000550776,129,234215,,,1815.620155,0.002835002,664,234215,,,352.7334337,3676,,,,,,1928,4009,2796,3622,0.45,,,,,,0.49,0.45,0.28,0.46,0.48,,,,,,0.46,0.37,0.34,0.49,0.876360183,139329,158986,0.869143614,0.883576752,0.653241998,38717,59269,0.62472989,0.681754107,0.036734694,4212,114660,,,0.168,8555,,0.114382979,0.221617021,,,,0.00097561,0,0.084354661,0.160625947,0.104792259,0.216459635,0.341295909,0.240475737,0.442116082,0.107890163,0.089553146,0.126227181,4.629842017,121913,26332,4.408438809,4.851245225,0.288553804,14735,51065,0.255781063,0.321326545,12.43199224,287,230856,,,83.37918596,938,1124981,78.04322918,88.71514274,,,,,,,74.06915505,62.01298234,86.12532776,31.42384954,20.70851485,45.72005126,93.83248709,87.11250075,100.5524734,,,,9.5,,,,,1,,,,,0.146098376,12460,85285,0.133425121,0.158771632,0.123918726,0.111910417,0.135927036,0.021457466,0.016798266,0.026116667,0.006683473,0.003734382,0.009632564,0.80494091,85888,106701,0.79590492,0.8139769,,,,0.658883249,0.58836604,0.729400458,0.771185874,0.72966172,0.812710027,0.647887324,0.582835874,0.712938774,0.799055774,0.777657815,0.820453732,0.419,,106701,0.398431705,0.439568295,73.76649309,,,73.39244583,74.14054035,,,,81.25234688,76.91343372,85.59126005,72.79086469,71.79074384,73.79098555,85.72535127,80.8346043,90.61609823,73.45874173,73.0240537,73.89342975,,,,533.2375228,4399,637635,516.9593891,549.5156564,,,,276.1154859,187.6070764,391.9238919,581.8700157,539.3995716,624.3404598,278.6137205,222.4445774,334.7828636,550.877926,531.5939169,570.1619351,,,,62.27180073,139,223215,51.91942334,72.62417812,,,,,,,90.90712322,65.51785834,122.8800216,59.23757753,34.50807189,94.84510006,54.59209237,42.79148582,68.64136,,,,7.448582546,134,17990,6.187401872,8.70976322,,,,,,,12.60835303,9.296404209,16.71684691,,,,5.511111111,4.225337288,7.064995722,,,,,,,0.114,,,0.097,0.133,0.164,,,0.14,0.189,0.105,,,0.089,0.123,380.2,740,194646,,,0.123,27870,,,,0.119048671,24534.26437,206086,,,23.1687521,158,681953,19.55606648,26.78143772,,,,,,,16.48179586,10.06750909,25.45479695,,,,26.75221803,22.11763271,31.38680335,,,,0.329,,,0.316,0.342,0.15050938,20964,139287,0.133828529,0.167190231,0.052590164,2807,53375,0.038292292,0.066888036,0.001374805,322,234215,,,727.3757764,0.878644737,2337.195,2660,,,0.081965805,954,11639,0.057714816,0.106216793,3.04091214,,,,,,3.297809536,2.660159984,2.813162928,3.265425736,2.842949165,,,,,,3.455628115,2.419607185,2.727862057,3.055680448,0.082880148,,,,,-4743.686,,,,,0.816508131,45237,55403,0.784660985,0.848355277,65430,,,61280.04255,69579.95745,57500,19424.76596,95575.23404,95918,74702.34043,117133.6596,49377,44522.87234,54231.12766,47765,39485.34043,56044.65957,67302,65104.89362,69499.10638,,,,,,0.522161012,16682,31948,,,44.41856893,,,,,0.256457283,,65430,,,5.855958628,77,13149,,,6.622141871,103,1555388,5.343243778,7.901039964,,,,,,,18.87711377,14.01095769,24.88712115,,,,4.393590379,3.25040235,5.808559485,,,,16.95049898,194,1124981,14.51225153,19.38874643,17.24473569,,,,,,,8.41021378,4.899259453,13.46556697,,,,20.24245357,17.06793281,23.41697432,,,,16.80028374,189,1124981,14.40508372,19.19548375,,,,,,,24.00862267,17.64063289,31.9263785,,,,17.2882286,14.40375197,20.17270523,,,,16.587501,258,1555388,14.5634233,18.6115787,,,,,,,17.36694466,12.71478622,23.16507044,9.591155211,4.787870125,17.16122602,17.66402663,15.19734744,20.13070581,,,,15.88571429,,17500,,,163,115,0.695645365,115498,166030,,,0.608,,,,,87.95826889,,,,,0.67036394,60619,90427,0.657624342,0.683103538,0.131451925,11547,87842,0.118270418,0.144633432,0.857830073,77571,90427,0.84703426,0.868625886,234215,,,,,0.22101061,51764,234215,,,0.167798817,39301,234215,,,0.187007664,43800,234215,,,0.006575155,1540,234215,,,0.018196956,4262,234215,,,0.000764255,179,234215,,,0.089272677,20909,234215,,,0.679969259,159259,234215,,,0.014600265,3151,215818,0.012053966,0.017146564,0.514612642,120530,234215,,,0.188612943,42993,227943,, -37,073,37073,NC,Gates County,2024,1,10974.31472,218,30390,8539.726582,13408.90286,0,,,,2,,,,2,14157.60422,9619.405187,20095.5891,,,,,2,9780.644386,6825.983638,12735.30514,,,,,2,,0.171,,,0.146,0.196,3.738919566,,,2.930442148,4.66201209,4.991313914,,,3.94538713,6.187248286,0.094202899,65,690,0.072406782,0.115999015,0,,,,,,,0.203296703,0.144826601,0.261766805,,,,0.052854123,0.032690277,0.073017969,,,,,,,0.197,,,0.161,0.233,0.391,,,0.308,0.475,7.6,0.078891749,0.116,,,0.249,,,0.202,0.297,0.269421645,2823,10478,,,0.157887523,,,0.124501681,0.19591016,0.230769231,3,13,0.089378268,0.394382228,328,34,10366,,,19.25660546,43,2233,13.93610086,25.93852119,,,,,,,17.26618705,8.921690804,30.16055403,,,,19.03367496,12.43342842,27.88874384,,,,,,,0.111083437,892,8030,0.094402586,0.127764288,,0,10366,,,,9.63113E-05,1,10383,,,10383,,0,10383,,,,3359,,,,,,,3494,,3475,0.46,,,,,,,0.49,,0.45,0.39,,,,,,,0.33,,0.41,0.904860126,7019,7757,0.877256132,0.932464121,0.532287823,1154,2168,0.422790879,0.641784767,0.034697856,178,5130,,,0.195,381,,0.128276596,0.261723404,,,,,,,0.383540373,0.178633054,0.588447691,,,,0.115635179,0.030233301,0.201037057,3.788351108,96978,25599,2.726922391,4.849779824,0.20718098,427,2061,0.08052823,0.33383373,9.646922632,10,10366,,,107.9474066,61,56509,82.57121266,138.6629597,,,,,,,126.0600504,79.00116246,190.8564313,,,,102.9952121,72.5181343,141.9653328,,,,7,,,,,0,,,,,0.164179105,770,4690,0.115587338,0.212770871,0.143931257,0.09368657,0.194175943,0.020255864,0.005600706,0.034911021,0.004051173,0,0.009940444,0.868497433,3890,4479,0.81069939,0.926295475,,,,,,,,,,,,,0.74748491,0.599268188,0.895701631,0.627,,4479,0.530056395,0.723943605,75.16521296,,,73.33100899,76.99941693,,,,,,,72.83513477,69.55188023,76.11838932,,,,75.89636775,73.58515778,78.20757772,,,,493.5696038,218,30390,420.8973698,566.2418378,,,,,,,632.7425326,489.3630289,805.0036427,,,,434.5871638,350.1567587,519.017569,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.121,,,0.105,0.139,0.173,,,0.15,0.198,0.117,,,0.099,0.134,155.6,14,8998,,,0.116,1230,,,,0.078891749,962.2426642,12197,,,,,,,,,,,,,,,,,,,,,,,,,,0.365,,,0.351,0.378,0.130673317,786,6015,0.109226508,0.152120125,0.05476865,116,2118,0.036896309,0.07264099,0.000674179,7,10383,,,1483.285714,0.875,98,112,,,,,,,,2.80112412,,,,,,,2.438700944,,2.942097315,3.054751751,,,,,,,2.774144749,,3.130789968,0.005754159,,,,,-3868.057,,,,,0.729356957,39766,54522,0.52419601,0.934517904,66561,,,59161.85106,73960.14894,,,,,,,45467,38002.31915,52931.68085,,,,69431,63375.85106,75486.14894,,,,,,0.386440678,570,1475,,,18.70792467,,,,,0.197743423,,66561,,,10.92896175,4,366,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.69629617,10,56509,8.486061859,32.54411871,,,,,,,,,,,,,,,,,,,37.77481176,30,79418,25.48650686,53.92589261,,,,,,,56.47210681,30.87382629,94.7505995,,,,29.80270609,16.68034836,49.15503144,,,,,,900,,,-888,-888,0.654714912,5971,9120,,,0.606,,,,,2.549952786,,,,,0.796573359,3301,4144,0.735625579,0.857521139,0.115313896,439,3807,0.070539966,0.160087825,0.738175676,3059,4144,0.679571679,0.796779672,10383,,,,,0.192044688,1994,10383,,,0.226138881,2348,10383,,,0.294519888,3058,10383,,,0.007993836,83,10383,,,0.00529712,55,10383,,,0.001252047,13,10383,,,0.026196668,272,10383,,,0.641336801,6659,10383,,,0.010431018,106,10162,0,0.026765003,0.505730521,5251,10383,,,1,10478,10478,, -37,075,37075,NC,Graham County,2024,1,11595.43889,179,22149,8899.597276,14291.2805,0,,,,2,,,,2,,,,2,,,,2,11796.24946,8788.61164,14803.88727,,,,,2,,0.164,,,0.137,0.193,3.765492696,,,2.960784584,4.664821053,5.10188317,,,4.008322173,6.263321103,0.07345576,44,599,0.052563344,0.094348176,0,,,,,,,,,,,,,0.079107505,0.055281791,0.102933219,,,,,,,0.197,,,0.16,0.238,0.361,,,0.286,0.444,7.6,0.010153177,0.15,,,0.237,,,0.193,0.284,1,8030,8030,,,0.167486334,,,0.133152369,0.205498018,0.055555556,1,18,0.002373261,0.195855257,111.9,9,8043,,,38.90577508,64,1645,29.96218757,49.68180621,,,,,,,,,,,,,38.81987578,28.81286005,51.17916667,,,,,,,0.197805907,1172,5925,0.172784631,0.222827184,0.000372995,3,8043,,,2681,0.000250627,2,7980,,,3990,0.00112782,9,7980,,,886.6666667,1216,,,,,,,,,1231,0.33,,,,,0.5,,,,0.32,0.33,,,,,0.33,,,,0.33,0.840936478,4885,5809,0.79574985,0.886123106,0.50737798,894,1762,0.367559824,0.647196135,0.053613845,158,2947,,,0.227,348,,0.141212766,0.312787234,,,,,,,,,,0.12,0,0.34637617,0.085141903,0.015133666,0.155150141,4.24706096,93567,22031,2.241527186,6.252594733,0.154551008,253,1637,0.065940291,0.243161724,14.91980604,12,8043,,,104.8043256,44,41983,76.15098339,140.6949153,,,,,,,,,,,,,113.7972189,81.66284901,154.378777,,,,6.6,,,,,0,,,,,0.095170455,335,3520,0.052248645,0.138092264,0.073313783,0.028294746,0.11833282,0.003977273,0,0.014351257,0.022727273,0.002133295,0.04332125,0.826115486,2518,3048,0.766981944,0.885249027,,,,,,,,,,,,,0.81147541,0.735401833,0.887548987,0.301,,3048,0.209046659,0.392953341,74.78032678,,,72.75179706,76.8088565,,,,,,,,,,,,,74.65072116,72.43388412,76.86755821,,,,547.9359789,179,22149,459.5036376,636.3683202,,,,,,,,,,,,,545.2046485,450.0742868,640.3350102,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.122,,,0.105,0.143,0.176,,,0.151,0.201,0.1,,,0.085,0.116,,,,,,0.15,1210,,,,0.010153177,89.96730476,8861,,,,,,,,,,,,,,,,,,,,,,,,,,0.325,,,0.311,0.34,0.238584475,1045,4380,0.206414262,0.270754688,0.084756098,139,1640,0.059734821,0.109777374,0.001002506,8,7980,,,997.5,0.925,82.325,89,,,,,,,,3.192533825,,,,,,,,,3.271808172,3.119540571,,,,,,,,,3.176808227,0.003619461,,,,,-2147.681,,,,,0.747066356,35588,47637,0.589505174,0.904627539,50301,,,43046.02128,57555.97872,,,,,,,,,,41250,30033.31915,52466.68085,46330,40333.23404,52326.76596,,,,,,0.570689655,662,1160,,,,,,,,0.230890042,,50301,,,19.28374656,7,363,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.59458729,11,59157,9.282350977,33.27085301,,,,,,,,,,,,,,,,,,,,,600,,,-888,24,0.705748865,4665,6610,,,0.351,,,,,8.825889013,,,,,0.799307959,2541,3179,0.760463687,0.83815223,0.064089522,189,2949,0.016513878,0.111665166,0.728845549,2317,3179,0.648086409,0.809604689,7980,,,,,0.196616541,1569,7980,,,0.242606516,1936,7980,,,0.006390977,51,7980,,,0.081328321,649,7980,,,0.006766917,54,7980,,,0.001253133,10,7980,,,0.04160401,332,7980,,,0.85037594,6786,7980,,,0.00996119,77,7730,0,0.023003776,0.487092732,3887,7980,,,1,8030,8030,, -37,077,37077,NC,Granville County,2024,1,8635.515108,1031,170004,7788.950096,9482.080119,0,,,,2,,,,2,9468.2675,7964.242141,10972.29286,,5447.444185,3453.212326,8173.840948,1,8953.304148,7752.755207,10153.85309,,,,,2,,0.17,,,0.145,0.198,3.625540819,,,2.851852977,4.475433896,4.970083567,,,3.921065376,6.091198833,0.104381135,436,4177,0.095108643,0.113653627,0,,,,,,,0.161051767,0.140399815,0.181703719,0.067453626,0.047266867,0.087640384,0.084424379,0.072845934,0.096002825,,,,,,,0.182,,,0.148,0.219,0.41,,,0.332,0.493,7.8,0.084577355,0.102,,,0.244,,,0.201,0.293,0.478472587,29183,60992,,,0.173119537,,,0.138390156,0.212943272,0.3625,29,80,0.306167693,0.418299927,540.4,335,61986,,,18.32594613,215,11732,15.87630059,20.77559167,,,,,,,25.54426705,20.48724914,31.47125145,21.94860814,15.75070014,29.77576529,12.37707698,9.701652581,15.56231607,,,,32.33830846,17.21878729,55.29949233,0.121100225,5772,47663,0.105610863,0.136589586,0.000516246,32,61986,,,1937.0625,0.000290778,18,61903,,,3439.055556,0.003844725,238,61903,,,260.0966387,2746,,,,,,,3345,,2494,0.44,,,,,,,0.45,0.16,0.44,0.48,,,,,,0.5,0.41,0.34,0.5,0.858285504,37235,43383,0.839918502,0.876652505,0.617937949,9122,14762,0.55238733,0.683488567,0.031749175,962,30300,,,0.153,1840,,0.100574468,0.205425532,,,,,,,0.341768097,0.240402337,0.443133858,0.178656503,0.078606742,0.278706264,0.110659899,0.065652604,0.155667193,4.815789474,125721,26106,4.237069565,5.394509382,0.316654463,3892,12291,0.249641402,0.383667523,10.97021908,68,61986,,,82.95134953,251,302587,72.68909773,93.21360133,,,,,,,65.74900846,50.40938778,84.28726153,46.0917995,23.81630539,80.51309794,100.4425211,85.56074887,115.3242932,,,,8.4,,,,,0,,,,,0.122884303,2650,21565,0.101129019,0.144639588,0.111423221,0.089704536,0.133141906,0.012242059,0.005351826,0.019132292,0.004405286,0.000453505,0.008357068,0.817098248,21457,26260,0.791325047,0.84287145,,,,,,,0.8364189,0.8094401,0.8633977,0.667118644,0.525766951,0.808470337,0.793097643,0.756380199,0.829815087,0.519,,26260,0.469729358,0.568270642,76.63102251,,,75.90052407,77.36152095,,,,,,,75.89792792,74.6076555,77.18820034,101.1167179,68.01678621,134.2166496,76.28049278,75.30751433,77.25347123,,,,434.4397973,1031,170004,406.6395292,462.2400653,,,,,,,498.4755614,444.9710292,551.9800936,265.1350718,168.072892,397.8327878,430.7460735,394.4129946,467.0791524,,,,54.13012883,30,55422,36.52137061,77.27412471,,,,,,,,,,,,,59.20224969,33.83920097,96.14074446,,,,5.077369439,21,4136,3.142971708,7.761298534,,,,,,,,,,,,,,,,,,,,,,0.117,,,0.101,0.135,0.162,,,0.139,0.185,0.115,,,0.099,0.133,496.5,265,53373,,,0.102,6220,,,,0.084577355,5067.536792,59916,,,25.69499494,47,182915,18.87971581,34.16889612,,,,,,,,,,,,,39.11579229,28.07016788,53.06498904,,,,0.352,,,0.339,0.366,0.144124544,5101,35393,0.123869225,0.164379864,0.057197993,741,12955,0.040517142,0.073878844,0.000840024,52,61903,,,1190.442308,0.849274425,591.095,696,,,0.089348172,281,3145,0.033244109,0.145452234,2.907092395,,,,,,,2.599717087,2.730975671,3.168405215,2.945608799,,,,,,,2.599307056,2.907704335,3.188924598,0.100253866,,,,,-5369.999,,,,,0.828745799,46849,56530,0.745779558,0.911712039,74120,,,67590.6383,80649.3617,,,,81090,50026.68085,112153.3192,50454,37330.93617,63577.06383,57832,35149.61702,80514.38298,81110,73259.2766,88960.7234,,,,,,0.462618873,3162,6835,,,31.4485528,,,,,0.233121964,,74120,,,11.08936725,34,3066,,,4.996526225,21,420292,3.092928484,7.637721093,,,,,,,10.65676095,5.826150379,17.88023409,,,,,,,,,,15.53205003,48,302587,11.32918387,20.78310497,15.86320628,,,,,,,,,,,,,23.91939447,16.92678714,32.83123773,,,,13.54982204,41,302587,9.723586231,18.38186359,,,,,,,12.72561454,6.575510731,22.22908763,,,,13.77497432,8.825885963,20.49606988,,,,22.12747328,93,420292,17.85972674,27.10764969,,,,,,,22.83591633,15.40729685,32.59969049,,,,23.46799295,17.77442868,30.40550691,,,,14.09090909,,4400,,,22,40,0.685422994,31598,46100,,,0.662,,,,,22.28209545,,,,,0.764891886,16449,21505,0.742982641,0.786801131,0.127230298,2617,20569,0.102687886,0.15177271,0.871332248,18738,21505,0.861383383,0.881281114,61903,,,,,0.20003877,12383,61903,,,0.181041307,11207,61903,,,0.302844773,18747,61903,,,0.010338756,640,61903,,,0.009062566,561,61903,,,0.001066184,66,61903,,,0.102902929,6370,61903,,,0.56150752,34759,61903,,,0.017683588,1028,58133,0.011402149,0.023965026,0.484855338,30014,61903,,,0.714339586,43569,60992,, -37,079,37079,NC,Greene County,2024,1,8476.251953,364,58323,6996.635265,9955.868642,0,,,,2,,,,2,9098.493878,6544.818127,11652.16963,,,,,2,8302.214403,6118.950266,10485.47854,,,,,2,,0.216,,,0.186,0.247,4.088547827,,,3.217470555,5.022646368,5.088903323,,,3.960329466,6.313806568,0.110803324,160,1444,0.094613289,0.126993359,0,,,,,,,0.174946004,0.140339417,0.209552592,0.07486631,0.048193687,0.101538934,0.083191851,0.060888092,0.105495609,,,,,,,0.217,,,0.18,0.256,0.426,,,0.343,0.51,8,0.000712033,0.136,,,0.3,,,0.25,0.353,0.423157792,8654,20451,,,0.163690768,,,0.130231147,0.201193775,0.272727273,6,22,0.159704728,0.392079091,602.4,123,20417,,,26.90238278,105,3903,21.75659147,32.0481741,,,,,,,33.94833948,24.85445122,45.28232746,30.94777563,21.16825562,43.68902522,17.97268152,11.63097185,26.53122336,,,,,,,0.204763573,2923,14275,0.179742296,0.229784849,0.000146936,3,20417,,,6805.666667,0.000346346,7,20211,,,2887.285714,0.000544258,11,20211,,,1837.363636,2520,,,,,,,2076,,2518,0.45,,,,,,,0.44,,0.46,0.48,,,,,,,0.41,0.35,0.51,0.760701322,11107,14601,0.728941166,0.792461477,0.432672591,2532,5852,0.363376062,0.501969119,0.032433564,310,9558,,,0.352,1337,,0.254297872,0.449702128,,,,,,,0.488229273,0.372352166,0.604106381,0.436429216,0.322064733,0.550793698,0.237658674,0.150408536,0.324908813,4.367451133,89821,20566,3.662075494,5.072826772,0.433204633,1683,3885,0.360313654,0.506095613,7.346818827,15,20417,,,83.30061949,87,104441,66.7203814,102.7510064,,,,,,,70.06764222,45.77051019,102.6653302,,,,114.9165829,86.80675172,149.2287415,,,,7.3,,,,,0,,,,,0.14265928,1030,7220,0.106658097,0.178660462,0.110706278,0.077553868,0.143858688,0.031163435,0.014963818,0.047363052,0.007617729,0,0.018644527,0.858371774,6885,8021,0.814827233,0.901916315,,,,,,,0.791015625,0.658433838,0.923597412,0.75950668,0.562233095,0.956780266,0.829357798,0.737525776,0.92118982,0.405,,8021,0.330620137,0.479379863,75.62402577,,,74.40893004,76.83912149,,,,,,,75.30015169,73.19433829,77.4059651,100.1289545,58.23373848,142.0241705,75.38698513,73.70308737,77.0708829,,,,445.848057,364,58323,398.1548813,493.5412327,,,,,,,474.2909299,392.0180198,556.56384,,,,448.7951105,381.4982454,516.0919757,,,,65.22802631,12,18397,33.70427303,113.9402351,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.137,,,0.119,0.157,0.173,,,0.151,0.197,0.139,,,0.12,0.16,426.1,75,17601,,,0.136,2780,,,,0.000712033,15.21045335,21362,,,20.82866024,13,62414,11.09038435,35.61764335,,,,,,,,,,,,,,,,,,,0.381,,,0.37,0.392,0.248598492,2572,10346,0.21523679,0.281960194,0.090997096,376,4132,0.062401351,0.119592841,0.00074217,15,20211,,,1347.4,0.95,242.25,255,,,,,,,,2.829361108,,,,,,,2.643708702,2.843702999,3.174921895,2.695715602,,,,,,,2.456396359,2.785396072,3.04591011,0.007767515,,,,,-9046.715,,,,,0.848509017,38300,45138,0.713491752,0.983526282,49992,,,45422.6383,54561.3617,,,,,,,35600,23066.7234,48133.2766,50357,43938.44681,56775.55319,60589,53150.53192,68027.46809,,,,,,0.992318947,2713,2734,,,13.12638426,,,,,0.286985918,,49992,,,7.789678676,8,1027,,,9.540489155,14,146743,5.215874199,16.00731968,,,,,,,21.01522649,10.49072535,37.60204519,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.53226223,11,104441,5.25766736,18.84512645,,,,,,,,,,,,,,,,,,,21.80683235,32,146743,14.91585719,30.78474072,,,,,,,,,,,,,24.74022761,14.41209429,39.61150103,,,,22,,1500,,,11,22,0.566170763,8753,15460,,,0.557,,,,,1.875118954,,,,,0.670543206,4555,6793,0.629899585,0.711186828,0.135899815,879,6468,0.09865127,0.173148359,0.786103342,5340,6793,0.750386114,0.82182057,20211,,,,,0.190440849,3849,20211,,,0.177428133,3586,20211,,,0.356835387,7212,20211,,,0.024936916,504,20211,,,0.006580575,133,20211,,,0.003018158,61,20211,,,0.166691406,3369,20211,,,0.453416456,9164,20211,,,0.031489581,612,19435,0.020135878,0.042843283,0.430508139,8701,20211,,,1,20451,20451,, -37,081,37081,NC,Guilford County,2024,1,8968.928581,7487,1516360,8671.744887,9266.112276,0,8494.43218,4855.301938,13794.42568,1,3988.181526,3184.837673,4791.525379,,11772.21551,11209.52251,12334.90851,,5266.183884,4512.276609,6020.091159,,8258.738777,7830.620523,8686.857031,,,,,2,,0.15,,,0.129,0.175,3.206444284,,,2.564946036,3.942610858,4.198396984,,,3.427413119,5.037765856,0.099564022,4202,42204,0.096707373,0.102420672,0,0.092592593,0.047956328,0.137228858,0.083841953,0.074105912,0.093577994,0.13721179,0.132013175,0.142410405,0.072843236,0.066244253,0.079442219,0.069905768,0.065820065,0.07399147,,,,0.119005329,0.10009249,0.137918167,0.145,,,0.118,0.178,0.352,,,0.298,0.41,7.8,0.072881562,0.11,,,0.213,,,0.177,0.254,0.88887842,481149,541299,,,0.163664512,,,0.134661986,0.197876411,0.303834808,103,339,0.276671177,0.331277863,777.6,4218,542410,,,12.84558508,1918,149312,12.27069389,13.42047628,,,,8.548226243,6.523197172,11.00326163,16.76503725,15.7243673,17.8057072,25.48625084,23.04296722,27.92953446,5.573840988,4.978733115,6.168948861,,,,18.24116744,14.75819375,22.29888126,0.118340178,51291,433420,0.107616774,0.129063582,0.000807507,438,542410,,,1238.378995,0.000609777,333,546101,,,1639.942943,0.003393145,1853,546101,,,294.7118187,2522,,,,,,1748,3603,2653,2077,0.44,,,,,,0.26,0.39,0.3,0.46,0.52,,,,,0.33,0.43,0.39,0.33,0.55,0.900970521,322133,357540,0.895236676,0.906704366,0.720995994,99695,138274,0.696576252,0.745415735,0.040985466,10662,260141,,,0.212,24655,,0.178638298,0.245361702,0.437201908,0.259579141,0.614824674,0.174803592,0.114490566,0.235116617,0.308565605,0.276993813,0.340137397,0.310115607,0.270809267,0.349421947,0.059314,0.045842085,0.072785914,4.653006063,127390,27378,4.41936152,4.886650607,0.314307994,37083,117983,0.294836257,0.33377973,11.04330672,599,542410,,,91.57960077,2455,2680728,87.95692831,95.20227322,87.9275477,42.16467683,161.7018908,24.86484182,17.31927338,34.58097582,87.90537003,81.85529096,93.9554491,48.25357475,39.19474047,57.31240903,111.6193975,105.9210753,117.3177198,,,,6.8,,,,,0,,,,,0.153720556,32010,208235,0.145058731,0.162382381,0.126133151,0.117778804,0.134487499,0.024539583,0.021002195,0.02807697,0.010877134,0.00788836,0.013865908,0.76496902,197170,257749,0.756488105,0.773449935,0.794085433,0.586781643,1,0.727205392,0.672025558,0.782385226,0.765717546,0.744493089,0.786942004,0.725974436,0.69295599,0.758992882,0.819641718,0.808100447,0.831182989,0.241,,257749,0.228732866,0.253267134,76.69074122,,,76.43815855,76.94332388,81.28299504,73.96128558,88.6047045,85.87123584,83.4220769,88.32039478,73.68711533,73.22669744,74.14753322,84.83917635,82.48322816,87.19512454,77.46385495,77.11770193,77.81000797,,,,410.0400296,7487,1516360,400.4700727,419.6099866,359.6182118,236.9906676,523.2256176,204.9719113,172.5590869,237.3847356,537.7788027,518.5145491,557.0430563,236.3698992,202.4516769,270.2881214,379.5670209,366.7287512,392.4052907,,,,63.10844972,352,557770,56.51561404,69.7012854,,,,50.65554231,29.50872011,81.10443032,102.9635385,89.23220691,116.6948701,41.6645624,28.67996764,58.51253632,36.06566837,28.36793604,45.20862761,,,,8.386336867,356,42450,7.515165936,9.257507798,,,,,,,13.0375789,11.31865408,14.75650373,6.207966891,4.34798369,8.594442919,4.508330611,3.507750314,5.705580928,,,,,,,0.107,,,0.092,0.123,0.151,,,0.131,0.172,0.107,,,0.092,0.124,551,2526,458454,,,0.11,58960,,,,0.072881562,35595.79235,488406,,,32.34358267,524,1620105,29.57422817,35.11293717,,,,,,,26.15988853,21.9309313,30.38884576,15.0066458,9.289350272,22.93925219,43.75923542,39.14163606,48.37683478,,,,0.344,,,0.331,0.356,0.145779228,46197,316897,0.131481356,0.1600771,0.046617879,5714,122571,0.034702985,0.058532772,0.001609592,879,546101,,,621.2753129,0.907269099,5569.725,6139,,,0.0599769,2181,36364,0.045700889,0.074252912,3.040972728,,,,,,3.242149223,2.745689519,2.716386586,3.560947421,2.971505074,,,,,,3.502399671,2.594571313,2.76974457,3.500012237,0.142385848,,,,,-6321.291,,,,,0.81120224,45201,55721,0.782669098,0.839735381,63822,,,60602.59575,67041.40426,40795,26330.31915,55259.68085,82565,72439.7234,92690.2766,46894,45042.42553,48745.57447,50941,44610.61702,57271.38298,78438,75932.29787,80943.70213,,,,,,0.621884835,46040,74033,,,50.52968383,,,,,0.302998966,,63822,,,9.290921995,288,30998,,,10.32352974,384,3719658,9.290961718,11.35609777,,,,,,,23.45243445,20.78965087,26.11521803,6.507916881,3.975204702,10.0509498,2.695532586,2.000676241,3.553723672,,,,11.24882922,308,2680728,9.965106627,12.53255182,11.48941631,,,,,,,5.729064404,4.291462375,7.493757298,4.991469495,2.579165126,8.719092695,16.63392077,14.34922555,18.918616,,,,17.12221456,459,2680728,15.55578935,18.68863977,,,,,,,28.29013758,24.85795109,31.72232407,6.640400195,3.716581581,10.95233028,12.57043419,10.65815056,14.48271781,,,,12.8237596,477,3719658,11.67292675,13.97459245,,,,7.884777124,4.413049902,13.00474079,15.97598723,13.77825004,18.17372441,11.38885454,7.932754477,15.83913971,11.69861142,10.14207058,13.25515226,,,,21.63855422,,41500,,,533,365,0.734982497,284486,387065,,,0.676,,,,,122.432754,,,,,0.595334195,126702,212825,0.585146459,0.605521931,0.135887894,28044,206376,0.127517118,0.14425867,0.872872078,185769,212825,0.864994107,0.880750049,546101,,,,,0.216293323,118118,546101,,,0.16206709,88505,546101,,,0.351240888,191813,546101,,,0.007775119,4246,546101,,,0.056524343,30868,546101,,,0.001104191,603,546101,,,0.090148159,49230,546101,,,0.474582541,259170,546101,,,0.024762032,12609,509207,,,0.525752562,287114,546101,,,0.141566861,76630,541299,, -37,083,37083,NC,Halifax County,2024,1,14930.20355,1234,134639,13587.66394,16272.74317,0,17897.18575,11078.64006,27357.74956,1,,,,2,17303.08686,15348.34376,19257.82997,,,,,2,12189.03829,10167.55322,14210.52336,,,,,2,,0.238,,,0.206,0.276,4.456381915,,,3.480409634,5.491793484,5.477515046,,,4.235349785,6.799165734,0.132894737,505,3800,0.122101441,0.143688033,0,0.12,0.056307539,0.183692461,,,,0.160312357,0.144899993,0.17572472,0.090361446,0.046747233,0.133975659,0.090047393,0.074279119,0.105815668,,,,0.176470588,0.085860336,0.26708084,0.239,,,0.196,0.288,0.433,,,0.341,0.528,6.8,0.063942427,0.16,,,0.319,,,0.265,0.381,0.51598042,25088,48622,,,0.128266932,,,0.097172651,0.163510498,0.423076923,33,78,0.368427547,0.476070315,928.1,448,48272,,,36.35482307,375,10315,32.67520729,40.03443886,,,,,,,46.04798871,40.46140278,51.63457464,37.4015748,22.51819127,58.40719207,23.08802309,18.3073664,28.73504328,,,,50,23.97694348,91.95178021,0.127791283,4521,35378,0.111110432,0.144472134,0.000476467,23,48272,,,2098.782609,0.000313493,15,47848,,,3189.866667,0.001776459,85,47848,,,562.9176471,4201,,,,,,,4674,,4022,0.43,,,,,0.57,,0.4,0.55,0.44,0.44,,,,,0.44,0.47,0.38,0.5,0.48,0.811183378,28187,34748,0.794006534,0.828360221,0.5145917,5766,11205,0.450671552,0.578511848,0.055486219,1067,19230,,,0.28,2826,,0.178723404,0.381276596,0.583832335,0.486556716,0.681107955,,,,0.437452472,0.3682834,0.506621543,0.291725105,0.1355644,0.44788581,0.173015873,0.097295914,0.248735832,6.067084556,90982,14996,5.375442093,6.758727019,0.513915733,5318,10348,0.448671066,0.579160399,10.77229036,52,48272,,,121.7729175,304,249645,108.0839722,135.4618629,129.8139334,67.07675366,226.7588171,,,,114.8895322,96.62473988,133.1543245,,,,137.7656722,114.1738525,161.3574918,,,,7.9,,,,,0,,,,,0.178537512,3760,21060,0.15185998,0.205215044,0.155046319,0.13086389,0.179228748,0.019468186,0.011633024,0.027303348,0.018518519,0.006646007,0.03039103,0.804689686,14379,17869,0.779992914,0.829386458,,,,,,,0.799288061,0.763770819,0.834805304,,,,0.856871918,0.817315964,0.896427872,0.343,,17869,0.298722101,0.387277899,71.23056009,,,70.33548119,72.12563899,68.49063898,63.85930351,73.12197445,,,,69.29660103,68.04791299,70.54528907,,,,73.51247251,72.10524564,74.91969938,,,,651.2378204,1234,134639,611.4741083,691.0015324,718.5950888,520.0508288,967.9428688,,,,747.9318992,689.4487574,806.415041,,,,550.3321423,491.4190439,609.2452408,,,,90.35755776,42,46482,65.1217799,122.1371688,,,,,,,106.5929728,70.24544071,155.087179,,,,82.58774948,42.67429531,144.2641779,,,,11.11398294,43,3869,8.043244562,14.97046209,,,,,,,14.45347787,9.886168162,20.40399823,,,,,,,,,,,,,0.149,,,0.128,0.172,0.19,,,0.164,0.219,0.158,,,0.135,0.183,396.5,163,41108,,,0.16,7870,,,,0.063942427,3497.075262,54691,,,33.16165971,49,147761,24.53317841,43.84147278,,,,,,,16.60790025,8.843007424,28.40001523,,,,58.80990145,40.48203014,82.59096692,,,,0.39,,,0.377,0.403,0.157180096,4040,25703,0.135733287,0.178626904,0.051415141,525,10211,0.035925779,0.066904502,0.001024076,49,47848,,,976.4897959,0.812604603,388.425,478,,,0.194639175,472,2425,0.125976762,0.263301589,2.630967265,,,,,,,2.504645519,2.624907932,2.983530808,2.646731981,,,,,,,2.552851235,2.456856372,2.964572938,0.284637221,,,,,-19739.95033,,,,,0.830343064,38968,46930,0.728294676,0.932391452,44804,,,40246.55319,49361.44681,29276,23925.02128,34626.97872,,,,30508,27668.68085,33347.31915,38542,14793.23404,62290.76596,58468,53475.65957,63460.34043,,,,,,0.775625886,4926,6351,,,39.29632341,,,,,0.306869922,,44804,,,10.81685938,29,2681,,,15.82515465,56,353867,11.95415175,20.55027963,,,,,,,25.0994633,18.44214155,33.37696528,,,,,,,,,,14.99096913,37,249645,10.31909337,21.05289425,14.82104589,,,,,,,8.360443934,4.009157833,15.37515406,,,,22.17501063,13.14231668,35.04607701,,,,28.44038535,71,249645,22.21217691,35.87367626,,,,,,,32.50164398,23.5216009,43.77950115,,,,23.13621975,14.49934574,35.02851475,,,,29.10698087,103,353867,23.48570862,34.72825312,,,,,,,35.24605485,27.25929626,44.84162369,,,,21.39810811,14.33064883,30.73125263,,,,33.94736842,,3800,,,80,49,0.654612452,25759,39350,,,0.548,,,,,27.91506657,,,,,0.634986842,12788,20139,0.614127567,0.655846116,0.171005481,3245,18976,0.143944366,0.198066595,0.666765977,13428,20139,0.638670748,0.694861205,47848,,,,,0.213676643,10224,47848,,,0.221284066,10588,47848,,,0.52716937,25224,47848,,,0.040001672,1914,47848,,,0.009112189,436,47848,,,0.000919579,44,47848,,,0.034860391,1668,47848,,,0.378573817,18114,47848,,,0.003772031,174,46129,0.000325074,0.007218987,0.514086273,24598,47848,,,0.560589856,27257,48622,, -37,085,37085,NC,Harnett County,2024,1,9542.814183,2112,388438,8976.657722,10108.97065,0,6494.469158,3550.586723,10896.61571,1,,,,2,12887.45598,11414.43426,14360.4777,,5744.042929,4533.19408,6954.891778,,9296.291901,8575.482407,10017.1014,,,,,2,,0.162,,,0.139,0.189,3.610420877,,,2.863335834,4.354167433,4.766729942,,,3.829296197,5.679146118,0.085633023,1114,13009,0.080824464,0.090441583,0,,,,0.078313253,0.037442623,0.119183883,0.152542373,0.13838575,0.166698996,0.063655914,0.053732029,0.073579799,0.070147039,0.064333095,0.075960984,,,,0.081836327,0.057833062,0.105839593,0.171,,,0.139,0.208,0.403,,,0.336,0.469,7.6,0.065661294,0.122,,,0.267,,,0.221,0.316,0.519952384,69449,133568,,,0.163326124,,,0.132652771,0.199200268,0.2,33,165,0.161351396,0.241143071,577.4,785,135966,,,19.84051642,627,31602,18.28750277,21.39353007,,,,,,,23.36004346,19.8689177,26.85116923,27.05427659,22.87521224,31.23334095,15.20322681,13.29948169,17.10697193,,,,23.97476341,16.96596949,32.90723591,0.125663176,14401,114600,0.112556793,0.138769559,0.000272127,37,135966,,,3674.756757,0.00051141,71,138832,,,1955.380282,0.001058834,147,138832,,,944.4353742,4596,,,,,,,4381,,4644,0.38,,,,,,0.25,0.36,0.17,0.39,0.46,,,,,0.45,0.33,0.33,0.32,0.48,0.882234672,78106,88532,0.871689696,0.892779649,0.64909967,25594,39430,0.614740478,0.683458863,0.040973181,2255,55036,,,0.166,5732,,0.115957447,0.216042553,0.14516129,0.03976072,0.250561861,0.026666667,0,0.176413359,0.292286245,0.22506774,0.359504751,0.171436588,0.12012841,0.222744766,0.178957719,0.139378879,0.218536559,4.356000901,116070,26646,3.98816187,4.723839931,0.214634998,7374,34356,0.183737523,0.245532473,7.943162261,108,135966,,,96.75014202,654,675968,89.33501135,104.1652727,,,,,,,111.7539715,94.32826104,129.179682,36.48868298,25.11713041,51.24367725,109.647784,99.50557021,119.7899977,,,,8.5,,,,,0,,,,,0.137560451,6400,46525,0.124231867,0.150889036,0.120826919,0.107227018,0.13442682,0.016872649,0.012180847,0.021564451,0.007845245,0.004639547,0.011050942,0.825054033,47717,57835,0.811172254,0.838935812,,,,,,,0.743790248,0.706033667,0.78154683,0.682591296,0.653445638,0.711736953,0.765921729,0.742644909,0.78919855,0.511,,57835,0.478719653,0.543280347,75.08282863,,,74.59552493,75.57013233,,,,,,,72.08495429,70.97120137,73.19870722,82.99101934,77.74220738,88.2398313,75.23623697,74.63893496,75.83353899,,,,485.7181597,2112,388438,464.7362054,506.700114,549.4028557,355.5445604,811.0269946,,,,595.4349188,544.9118808,645.9579568,297.6638074,234.3451912,360.9824237,481.5359739,455.7370582,507.3348896,,,,55.10892116,85,154240,44.01904889,68.14303444,,,,,,,85.42411491,56.29503,124.2876023,38.44798308,19.86663391,67.16088894,47.88306452,33.88490631,65.72324713,,,,6.15810946,80,12991,4.882997813,7.664300282,,,,,,,10.06441224,6.513156944,14.85705785,,,,5.491561747,3.940839522,7.449923596,,,,,,,0.118,,,0.101,0.135,0.166,,,0.144,0.19,0.109,,,0.093,0.126,293.9,326,110904,,,0.122,16220,,,,0.065661294,7529.90589,114678,,,37.16381418,152,409000,31.25562277,43.0720056,,,,,,,46.60646665,33.29634307,63.46477945,,,,41.44976654,33.40565518,49.4938779,,,,0.381,,,0.368,0.393,0.157957407,12735,80623,0.140085066,0.175829747,0.051341233,1824,35527,0.037043361,0.065639106,0.000972398,135,138832,,,1028.385185,0.86,1388.9,1615,,,0.084253179,603,7157,0.054124103,0.114382255,2.992149396,,,,,,2.940114836,2.69341521,2.759326544,3.257329787,2.922615029,,,,,,3.068170883,2.596621809,2.783238453,3.151387404,0.033515243,,,,,-4146.446,,,,,0.771383439,42973,55709,0.737312916,0.805453962,65242,,,60038.76596,70445.23404,49808,24892.76596,74723.23404,90063,42387.93617,137738.0638,49728,44671.31915,54784.68085,58187,50976.10638,65397.89362,70756,67248.25532,74263.74468,,,,,,0.429586399,8465,19705,,,29.70055572,,,,,0.243800006,,65242,,,5.008869874,48,9583,,,7.379765965,69,934989,5.741898413,9.339566144,,,,,,,21.5523877,15.53306533,29.13256708,,,,4.033849257,2.557114401,6.052754487,,,,13.98099349,94,675968,11.25662384,17.1655619,13.90598372,,,,,,,9.345297882,5.109161314,15.67982189,,,,16.94960444,13.21304819,21.41480553,,,,15.97708767,108,675968,12.96379156,18.99038379,,,,,,,26.17023384,18.42625976,36.07222004,,,,16.11749163,12.46526686,20.50540118,,,,21.92539164,205,934989,18.92397351,24.92680976,,,,,,,25.14445231,18.60200424,33.24229943,12.24369858,6.85270515,20.19411884,23.67694129,19.68287945,27.67100313,,,,11.37931035,,11600,,,48,84,0.613513656,58293,95015,,,0.593,,,,,22.63202068,,,,,0.68368498,32728,47870,0.666879881,0.700490079,0.122757605,5666,46156,0.108662996,0.136852213,0.813724671,38953,47870,0.799975646,0.827473696,138832,,,,,0.252434597,35046,138832,,,0.138844071,19276,138832,,,0.208705486,28975,138832,,,0.017107007,2375,138832,,,0.013700012,1902,138832,,,0.002485018,345,138832,,,0.145247493,20165,138832,,,0.592629941,82276,138832,,,0.018786393,2352,125197,0.014914938,0.022657848,0.503140486,69852,138832,,,0.641560853,85692,133568,, -37,087,37087,NC,Haywood County,2024,1,10056.10243,1173,167739,9051.156254,11061.04861,0,,,,2,,,,2,24841.92539,13227.27903,42480.44898,1,,,,2,10125.57726,9063.558463,11187.59606,,,,,2,,0.142,,,0.115,0.17,3.535888293,,,2.764795337,4.38264326,4.893063451,,,3.864358693,5.959314485,0.092558984,357,3857,0.083412593,0.101705374,0,,,,,,,,,,0.068965517,0.036358508,0.101572526,0.093096534,0.083457613,0.102735455,,,,,,,0.172,,,0.129,0.214,0.368,,,0.293,0.448,7.8,0.032789239,0.129,,,0.217,,,0.171,0.265,0.862230025,53535,62089,,,0.165500921,,,0.1311235,0.202305236,0.1,5,50,0.043746813,0.177010777,208.1,130,62476,,,18.83294301,193,10248,16.17591821,21.48996782,,,,,,,,,,18.89168766,10.57353417,31.15896583,18.86583065,16.02982206,21.70183924,,,,,,,0.133641045,6254,46797,0.116960194,0.150321896,0.000688264,43,62476,,,1452.930233,0.00044722,28,62609,,,2236.035714,0.003977064,249,62609,,,251.4417671,2247,,,,,,,,,2259,0.47,,,,,,,0.46,,0.47,0.48,,,,,0.47,0.5,0.39,0.24,0.48,0.904261455,42333,46815,0.890009411,0.918513498,0.667051773,9238,13849,0.608196301,0.725907244,0.031964227,965,30190,,,0.185,1976,,0.117085106,0.252914894,,,,,,,,,,0.241486068,0.079841657,0.403130479,0.185447802,0.130365075,0.240530529,4.709118529,114700,24357,4.117496696,5.300740362,0.254128689,2816,11081,0.190702935,0.317554442,15.04577758,94,62476,,,128.6918474,400,310820,116.0800463,141.3036484,,,,,,,,,,,,,133.3947927,120.0176529,146.7719325,,,,6.7,,,,,0,,,,,0.135924135,3655,26890,0.114052449,0.157795822,0.120874976,0.099049196,0.142700757,0.013015991,0.006237106,0.019794876,0.005578282,0.001000809,0.010155755,0.804776625,21869,27174,0.773635994,0.835917255,,,,,,,,,,0.649722002,0.516688789,0.782755214,0.782773971,0.753173502,0.81237444,0.342,,27174,0.302608706,0.381391294,75.49504956,,,74.73375418,76.25634495,,,,,,,,,,92.9632844,77.13619928,108.7903695,75.33227961,74.53875338,76.12580584,,,,452.4531655,1173,167739,423.5917648,481.3145662,,,,,,,928.2724254,574.615262,1418.963008,,,,457.5102617,427.3118977,487.7086257,,,,60.8198516,30,49326,41.03489847,86.82411993,,,,,,,,,,,,,61.54283144,40.20182076,90.17450726,,,,7.62195122,30,3936,5.142498481,10.8808093,,,,,,,,,,,,,7.560907309,4.982685559,11.00072317,,,,,,,0.112,,,0.094,0.132,0.166,,,0.141,0.192,0.092,,,0.078,0.108,133.5,73,54696,,,0.129,7950,,,,0.032789239,1935.745527,59036,,,35.6829015,67,187765,27.65375854,45.31602356,,,,,,,,,,,,,34.80762983,26.56188852,44.80431928,,,,0.324,,,0.305,0.343,0.15643675,5602,35810,0.134989941,0.177883558,0.061236829,709,11578,0.043364488,0.079109169,0.000878468,55,62609,,,1138.345455,0.9,520.2,578,,,0.085023401,218,2564,0.029246981,0.140799821,3.199951145,,,,,,,,2.893688584,3.259510377,3.349473872,,,,,,,,3.2830306,3.366909277,0.027309199,,,,,-1325.787,,,,,0.820674352,43641,53177,0.731851152,0.909497551,62374,,,55316.80851,69431.19149,,,,,,,,,,71433,57545,85321,56419,53378.31915,59459.68085,,,,,,0.531541003,3539,6658,,,70.84868109,,,,,0.246176291,,62374,,,11.56905278,32,2766,,,4.17275193,18,431370,2.473037249,6.594747031,,,,,,,,,,,,,4.267218226,2.485811868,6.832229751,,,,22.33322663,73,310820,17.16146455,28.57389844,23.48626215,,,,,,,,,,,,,24.35009221,18.62589112,31.27871212,,,,18.33858825,57,310820,13.88946765,23.75976816,,,,,,,,,,,,,19.9044586,15.07544256,25.78853482,,,,16.69100772,72,431370,13.05968558,21.01956187,,,,,,,,,,,,,16.06482156,12.37187013,20.51441848,,,,6.315789474,,3800,,,13,11,0.731718062,36542,49940,,,0.568,,,,,42.35968995,,,,,0.747970243,19807,26481,0.728228427,0.767712058,0.119104241,3005,25230,0.095354404,0.142854078,0.799478872,21171,26481,0.772204484,0.826753259,62609,,,,,0.17435193,10916,62609,,,0.255985561,16027,62609,,,0.013145075,823,62609,,,0.00841732,527,62609,,,0.007554824,473,62609,,,0.000702774,44,62609,,,0.048970595,3066,62609,,,0.9098053,56962,62609,,,0.005570421,331,59421,0.001841384,0.009299459,0.511300292,32012,62609,,,0.468843112,29110,62089,, -37,089,37089,NC,Henderson County,2024,1,8115.966,1748,312111,7446.070231,8785.861769,0,,,,2,,,,2,13782.76776,9753.506775,18917.92559,,5626.194867,4201.911432,7378.006039,,8123.827227,7359.938732,8887.715722,,,,,2,,0.13,,,0.106,0.154,3.10867992,,,2.414658794,3.923810078,4.48665178,,,3.530051212,5.569263457,0.084452975,616,7294,0.078071501,0.090834449,0,,,,0.144230769,0.076708552,0.211752987,0.178403756,0.12698785,0.229819661,0.085772634,0.071452515,0.100092754,0.080120937,0.072806439,0.087435435,,,,0.076335878,0.030864113,0.121807643,0.148,,,0.113,0.184,0.342,,,0.272,0.419,7.6,0.081180274,0.112,,,0.201,,,0.159,0.25,0.73553719,85529,116281,,,0.167184706,,,0.133374652,0.206109444,0.338709677,21,62,0.273468367,0.403878275,232,271,116829,,,18.66730816,388,20785,16.80983774,20.52477857,,,,,,,33.24808184,21.71875092,48.71614333,27.65087762,22.59710066,32.70465458,14.96395048,12.98656659,16.94133438,,,,26.28285357,16.26950061,40.17613359,0.137132108,11737,85589,0.121642746,0.15262147,0.000873071,102,116829,,,1145.382353,0.000626556,74,118106,,,1596.027027,0.002692497,318,118106,,,371.4025157,1419,,,,,,,2326,1199,1329,0.49,,,,,,0.36,0.42,0.41,0.5,0.52,,,,,,0.44,0.37,0.35,0.52,0.915690705,79829,87179,0.906108118,0.925273293,0.655612852,16528,25210,0.607816442,0.703409262,0.03167054,1758,55509,,,0.162,3396,,0.116723404,0.207276596,,,,,,,0.138572906,0.012220322,0.26492549,0.353811149,0.260911258,0.44671104,0.125626779,0.087154058,0.1640995,4.355612174,124797,28652,4.110848257,4.600376091,0.214354995,4641,21651,0.169840046,0.258869945,11.64094531,136,116829,,,105.9562811,620,585147,97.61588004,114.2966821,,,,,,,135.3326477,87.580154,199.7776847,49.09662215,33.1252848,70.08848094,114.0854323,104.5852622,123.5856024,,,,7.2,,,,,0,,,,,0.112440913,5590,49715,0.09846463,0.126417196,0.094417992,0.081865039,0.106970945,0.017298602,0.01057818,0.024019024,0.004827517,0.002075831,0.007579203,0.796016932,42688,53627,0.777163087,0.814870777,,,,,,,0.731170973,0.675618563,0.786723383,0.677974087,0.597101326,0.758846848,0.801100285,0.774099787,0.828100783,0.29,,53627,0.2644454,0.3155546,78.0691963,,,77.52283568,78.61555691,,,,,,,71.70988998,68.74017202,74.67960793,88.67889432,82.96534835,94.39244029,77.97646881,77.37095357,78.58198404,,,,358.3599034,1748,312111,339.5084729,377.211334,,,,,,,575.3126715,448.4844516,726.87295,221.9678388,169.3848451,285.7166078,362.3413335,341.5253404,383.1573265,,,,52.03996669,50,96080,38.62506634,68.60820844,,,,,,,,,,53.93743258,26.92537201,96.50896594,51.09094188,35.38196247,71.3944703,,,,5.60645426,41,7313,4.023288373,7.605788263,,,,,,,,,,,,,5.064715813,3.337679635,7.3688956,,,,,,,0.1,,,0.084,0.117,0.152,,,0.13,0.175,0.091,,,0.077,0.107,188.3,192,101954,,,0.112,12910,,,,0.081180274,8665.182408,106740,,,25.23455376,89,352691,20.26541878,31.05328982,,,,,,,90.63717937,43.46405054,166.6849999,,,,24.97750314,19.57837527,31.40546021,,,,0.324,,,0.306,0.34,0.165780902,10637,64163,0.145525583,0.186036221,0.05428622,1226,22584,0.038796859,0.069775582,0.00176113,208,118106,,,567.8173077,0.93,1062.06,1142,,,0.066762531,325,4868,0.027611779,0.105913282,3.273090511,,,,,,3.255358195,2.806214977,2.798442815,3.537734766,3.267242291,,,,,,3.329798495,2.906588769,3.002883717,3.436475126,0.061881984,,,,,-3067.652,,,,,0.799423268,41861,52364,0.729757398,0.869089138,65252,,,58702.38298,71801.61702,25722,10192.12766,41251.87234,80066,51851.53192,108280.4681,46086,36152.55319,56019.44681,41781,30115.12766,53446.87234,68729,65877.76596,71580.23404,,,,,,0.412515664,5267,12768,,,43.44347985,,,,,0.267669957,,65252,,,9.213193293,50,5427,,,2.709322903,22,812011,1.697918239,4.101947435,,,,,,,,,,,,,2.220557626,1.242829247,3.662472113,,,,18.38907084,113,585147,14.70487892,22.07326276,19.31138671,,,,,,,,,,,,,20.48768206,16.11046148,24.86490265,,,,14.69716157,86,585147,11.75583217,18.15087497,,,,,,,,,,,,,16.26850027,12.87992487,20.27540536,,,,12.43825515,101,812011,10.01245596,14.86405433,,,,,,,,,,,,,12.28708553,9.786595041,15.23169118,,,,16.96202532,,7900,,,54,80,0.759382462,68371,90035,,,0.644,,,,,53.05489731,,,,,0.744171011,36832,49494,0.728188944,0.760153078,0.111844434,5372,48031,0.097256863,0.126432005,0.876146604,43364,49494,0.861985487,0.89030772,118106,,,,,0.180862954,21361,118106,,,0.270274161,31921,118106,,,0.030726635,3629,118106,,,0.007323929,865,118106,,,0.013597954,1606,118106,,,0.002929572,346,118106,,,0.108986842,12872,118106,,,0.823785413,97294,118106,,,0.023384289,2599,111143,0.017823388,0.028945189,0.515604626,60896,118106,,,0.34279031,39860,116281,, -37,091,37091,NC,Hertford County,2024,1,12338.05174,491,62047,10489.70363,14186.39985,0,,,,2,,,,2,12202.70644,9889.363598,14516.04928,,,,,2,15411.13062,11419.99038,19402.27086,,,,,2,,0.219,,,0.19,0.251,3.998476765,,,3.185450646,4.958064664,4.938853871,,,3.915152762,6.118799783,0.110041266,160,1454,0.09395569,0.126126841,0,,,,,,,0.140875133,0.118599422,0.163150845,,,,0.053140097,0.031532327,0.074747866,,,,,,,0.218,,,0.181,0.259,0.435,,,0.354,0.521,6.9,0.113981799,0.132,,,0.295,,,0.247,0.353,0.612193764,13194,21552,,,0.13664666,,,0.106780381,0.169790204,0.371428571,13,35,0.283933479,0.456696423,874.1,186,21278,,,17.21786567,101,5866,13.859912,20.57581934,,,,,,,21.37948587,17.05311523,26.46925828,,,,10.16518424,5.810281101,16.50762236,,,,,,,0.119137883,1697,14244,0.102457032,0.135818734,0.00061096,13,21278,,,1636.769231,0.000431138,9,20875,,,2319.444444,0.002443114,51,20875,,,409.3137255,3689,,,,,,,4181,,2996,0.52,,,,,,,0.54,,0.51,0.27,,,,,,,0.25,,0.3,0.838927061,12698,15136,0.816785673,0.861068449,0.537878788,2698,5016,0.469675208,0.606082368,0.051315171,437,8516,,,0.351,1268,,0.27593617,0.42606383,,,,,,,0.326247289,0.256876277,0.3956183,0.368217054,0.041861181,0.694572927,0.137029289,0.010512601,0.263545976,4.865705693,93840,19286,4.052872322,5.678539065,0.421568628,1634,3876,0.341751284,0.501385971,15.97894539,34,21278,,,97.72719411,113,115628,79.70812797,115.7462602,,,,,,,73.38129496,54.63719401,96.4828509,,,,152.4029745,115.7259681,197.0161856,,,,7.3,,,,,0,,,,,0.152161707,1355,8905,0.125183353,0.179140061,0.138724374,0.112564389,0.164884359,0.017293655,0.009136558,0.025450752,0.005614823,0.000905802,0.010323844,0.767279194,6472,8435,0.742076619,0.792481768,,,,,,,0.846120503,0.826804375,0.86543663,,,,0.851306095,0.799416109,0.903196082,0.374,,8435,0.316858178,0.431141822,73.33706511,,,71.97909187,74.69503835,,,,,,,73.06321063,71.37114086,74.7552804,,,,71.32812904,68.56245432,74.09380377,,,,555.3416473,491,62047,501.8119635,608.8713311,,,,,,,560.9560139,491.0446662,630.8673617,,,,625.1448901,523.6208447,726.6689354,,,,95.49274255,20,20944,58.32944798,147.4807959,,,,,,,81.88179247,40.87509578,146.5091448,,,,,,,,,,13.34222815,20,1499,8.149779577,20.60598926,,,,,,,,,,,,,,,,,,,,,,0.136,,,0.118,0.156,0.175,,,0.153,0.201,0.15,,,0.131,0.173,493.8,92,18631,,,0.132,2900,,,,0.113981799,2811.816987,24669,,,22.0384056,15,68063,12.33472832,36.34899853,,,,,,,,,,,,,62.77182442,34.31794053,105.3204552,,,,0.391,,,0.377,0.404,0.144045369,1524,10580,0.12259856,0.165492177,0.048578811,188,3870,0.034280939,0.062876684,0.001532934,32,20875,,,652.34375,0.85,204.85,241,,,,,,,,3.004810242,,,,,,,2.925673223,,3.317939286,3.027011838,,,,,,,2.964450033,,3.316936474,0.040766842,,,,,-21378.93,,,,,0.772716625,36286,46959,0.672017579,0.873415672,43871,,,38800.02128,48941.97872,43167,25901.12766,60432.87234,,,,39834,36524.04255,43143.95745,52560,27906.89362,77213.10638,57823,49473.04255,66172.95745,,,,,,0.991539081,2461,2482,,,10.75821111,,,,,0.345740922,,43871,,,16.41025641,16,975,,,17.68853539,29,163948,11.84628976,25.40368741,,,,,,,26.42356982,17.26075309,38.71665202,,,,,,,,,,9.420770613,10,115628,4.307776215,17.88355714,8.648424257,,,,,,,,,,,,,,,,,,,23.35074549,27,115628,15.38828842,33.97410873,,,,,,,30.21582734,18.70407336,46.18810178,,,,,,,,,,25.00792934,41,163948,17.94612186,33.92607996,,,,,,,27.43986097,18.08304128,39.92355707,,,,23.90277088,12.7272188,40.87446617,,,,35,,1600,,,32,24,0.567449306,10634,18740,,,0.508,,,,,1.883701599,,,,,0.653896804,5462,8353,0.619116024,0.688677584,0.158138371,1264,7993,0.126255288,0.190021454,0.760924219,6356,8353,0.728324153,0.793524285,20875,,,,,0.177437126,3704,20875,,,0.219640719,4585,20875,,,0.588167665,12278,20875,,,0.014994012,313,20875,,,0.011065868,231,20875,,,0.001101796,23,20875,,,0.049101796,1025,20875,,,0.322778443,6738,20875,,,0.00589059,122,20711,0.000498163,0.011283016,0.490682635,10243,20875,,,0.774452487,16691,21552,, -37,093,37093,NC,Hoke County,2024,1,11136.15121,865,158329,10150.4246,12121.87781,0,17636.2086,13251.69484,22020.72236,,,,,2,14345.88137,12259.40142,16432.36131,,6932.248588,4929.506416,9476.612027,,8817.600446,7465.373721,10169.82717,,,,,2,,0.181,,,0.16,0.203,3.661368176,,,3.055067345,4.31965596,4.944682437,,,4.142175081,5.743972983,0.094733462,590,6228,0.087460326,0.102006598,0,0.154040404,0.11848541,0.189595398,0.102564103,0.047589443,0.157538763,0.156666667,0.138271727,0.175061607,0.071929825,0.0569313,0.08692835,0.060617193,0.051652587,0.0695818,,,,0.1,0.067631665,0.132368335,0.185,,,0.159,0.214,0.39,,,0.336,0.445,7.2,0.078582628,0.133,,,0.256,,,0.221,0.292,0.58279252,30353,52082,,,0.174157208,,,0.147708167,0.201903071,0.253731343,17,67,0.190723197,0.319889581,894.3,475,53114,,,25.60403895,284,11092,22.62617138,28.58190652,31.35048232,22.29325763,42.85714137,,,,21.60718621,17.35234478,26.58950192,40.40948276,31.78462161,50.65363656,16.36125655,12.14363997,21.57027705,,,,40.70556309,27.46387249,58.10972238,0.138687098,6281,45289,0.119623269,0.157750928,0.000207102,11,53114,,,4828.545455,0.000111551,6,53787,,,8964.5,0.001877777,101,53787,,,532.5445545,3523,,,,,,,4190,1887,2994,0.41,,,,,0.31,0.52,0.37,0.38,0.42,0.39,,,,,0.24,0.34,0.34,0.32,0.42,0.88898694,30222,33996,0.8759237,0.90205018,0.659354052,10820,16410,0.605018151,0.713689954,0.049184368,998,20291,,,0.202,2860,,0.141234043,0.262765957,0.167115903,0.058397293,0.275834513,0.320574163,0,0.835136129,0.269342488,0.194176034,0.344508941,0.361064331,0.272142417,0.449986246,0.113675214,0.060772771,0.166577656,5.187963994,111811,21552,4.547520432,5.828407557,0.258245614,3680,14250,0.216648384,0.299842845,4.706856949,25,53114,,,86.7947469,237,273058,75.74441457,97.84507924,170.4800359,120.6418199,233.9971688,,,,97.73472623,78.59026142,120.1325715,54.53412278,33.75748152,83.36119958,75.64797216,59.98413718,94.1504496,,,,7.9,,,,,0,,,,,0.175067751,3230,18450,0.149644375,0.200491127,0.153931958,0.128763154,0.179100761,0.026504065,0.016030391,0.036977739,0.003468835,8.1993973E-6,0.00692947,0.806342436,17392,21569,0.783320758,0.829364114,0.819954128,0.714455196,0.925453061,,,,0.786532951,0.612344246,0.960721657,0.581458146,0.452471874,0.710444417,0.715955056,0.651593654,0.780316458,0.492,,21569,0.443003848,0.540996152,73.75430002,,,72.94348958,74.56511047,69.15811182,66.00701744,72.3092062,,,,71.92400939,70.40898101,73.43903778,80.59640424,76.69851482,84.49429367,74.65602619,73.50927671,75.80277567,,,,521.139544,865,158329,485.9661897,556.3128982,745.9334845,602.658044,889.2089251,,,,597.59326,535.2242563,659.9622638,245.6042362,172.0181876,340.0197884,485.8137739,431.6868822,539.9406655,,,,90.76966415,58,63898,68.92521156,117.3408397,,,,,,,137.0440649,89.52173316,200.8013076,,,,56.13772455,29.00718146,98.0613073,,,,8.110687023,51,6288,6.038939224,10.66405556,,,,,,,15.97869507,10.23785144,23.77503169,,,,,,,,,,,,,0.121,,,0.108,0.135,0.165,,,0.148,0.183,0.13,,,0.116,0.145,397.8,169,42485,,,0.133,6930,,,,0.078582628,3689.611555,46952,,,28.62746531,47,164178,21.03438473,38.06846005,,,,,,,23.33470948,12.42475003,39.90306388,,,,33.55972833,20.77400077,51.29960964,,,,0.368,,,0.357,0.379,0.181237893,5707,31489,0.155025127,0.207450659,0.043662657,628,14383,0.029364785,0.05796053,0.00070649,38,53787,,,1415.447368,0.83,482.23,581,,,0.092688774,232,2503,0.040885244,0.144492303,2.979930521,,,,,,,2.810988868,2.805853763,3.477807028,3.09964229,,,,,,,2.855184516,3.121506147,3.477800828,0.040055083,,,,,-5936.963,,,,,0.811019539,43791,53995,0.722118755,0.899920322,60903,,,57445.29787,64360.70213,47159,39936.19149,54381.80851,85547,44301.21277,126792.7872,52599,48506.23404,56691.76596,59171,42967.93617,75374.06383,64084,58635.31915,69532.68085,,,,,,0.985237773,8743,8874,,,23.24987693,,,,,0.266292301,,60903,,,6.750465549,29,4296,,,12.4013499,47,378991,9.112045449,16.49116637,35.33455398,17.63888204,63.22327748,,,,18.91715076,12.12057544,28.14722083,,,,,,,,,,11.96833277,31,273058,8.074983859,17.08553921,11.35289938,,,,,,,,,,,,,14.61785383,7.783391515,24.99697523,,,,19.77601828,54,273058,14.85635359,25.80341407,44.86316734,21.51363255,82.50496206,,,,23.89071086,14.9721813,36.17082335,,,,13.23839513,7.237553806,22.21177756,,,,25.06655831,95,378991,20.28034256,30.64256767,51.39571488,29.37709182,83.46342102,,,,36.25787229,26.54531951,48.36292058,,,,18.11144576,11.93555688,26.3512027,,,,23.40425532,,4700,,,55,55,0.575275821,21639,37615,,,0.573,,,,,18.51618464,,,,,0.699150479,12921,18481,0.673397666,0.724903292,0.152437981,2673,17535,0.12937057,0.175505393,0.86542936,15994,18481,0.850686422,0.880172298,53787,,,,,0.268336215,14433,53787,,,0.116552327,6269,53787,,,0.342257423,18409,53787,,,0.084964768,4570,53787,,,0.01745775,939,53787,,,0.004238943,228,53787,,,0.1538104,8273,53787,,,0.370182386,19911,53787,,,0.023155237,1119,48326,0.016355552,0.029954922,0.509491141,27404,53787,,,0.426097308,22192,52082,, -37,095,37095,NC,Hyde County,2024,1,10397.31278,96,13006,7015.02327,14842.81049,0,,,,2,,,,2,18681.50838,9653.007988,32632.83556,1,,,,2,7134.130138,4155.893706,11422.43344,1,,,,2,,0.203,,,0.175,0.234,4.059529908,,,3.218030501,4.967837103,4.987564202,,,3.915453315,6.064670097,0.087649402,22,251,0.052664991,0.122633814,1,,,,,,,,,,,,,0.079470199,0.036329351,0.122611046,,,,,,,0.216,,,0.179,0.256,0.397,,,0.314,0.48,4.6,0.30087145,0.149,,,0.283,,,0.236,0.334,0.527565919,2421,4589,,,0.152578361,,,0.119586611,0.188224384,0,0,3,0,0.420755624,244,11,4508,,,23.95209581,20,835,14.63056238,36.99206935,,,,,,,,,,,,,23.09468822,11.07480068,42.47195391,,,,,,,0.194660358,576,2959,0.167256103,0.222064614,0.000221828,1,4508,,,4508,,0,4576,,,,0.000218532,1,4576,,,4576,2376,,,,,,,,,1693,0.35,,,,,,,0.5,,0.32,0.33,,,,,,,0.32,,0.33,0.810307609,3003,3706,0.729592037,0.891023182,0.473684211,567,1197,0.257522651,0.68984577,0.056338028,100,1775,,,0.283,198,,0.184106383,0.381893617,,,,,,,0.895424837,0.111087793,1,0.538793103,0.216652852,0.860933355,0.442970822,0.218202546,0.667739099,3.881961847,75904,19553,2.085055566,5.678868129,0.258465011,229,886,0.037979946,0.478950077,8.873114463,4,4508,,,112.5356698,28,24881,74.77913531,162.6453758,,,,,,,,,,,,,139.1004835,86.10539169,212.6298651,,,,5.7,,,,,0,,,,,0.211678832,435,2055,0.134495017,0.288862648,0.156852792,0.079170115,0.234535469,0.058394161,0,0.119789344,0.00486618,0,0.023065269,0.73509434,974,1325,0.576849758,0.893338921,,,,,,,,,,,,,0.914036997,0.826575127,1,0.196,,1325,0.069102188,0.322897812,75.20051755,,,71.9021329,78.49890221,,,,,,,,,,,,,79.42869214,76.05903278,82.7983515,,,,471.0779157,96,13006,371.7673243,588.7665681,,,,,,,705.0226641,472.1647431,1012.530149,,,,385.643063,280.20884,517.7078121,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.135,,,0.117,0.155,0.174,,,0.152,0.198,0.129,,,0.112,0.149,249.1,10,4015,,,0.149,700,,,,0.30087145,1748.063126,5810,,,,,,,,,,,,,,,,,,,,,,,,,,0.364,,,0.352,0.375,0.227775321,515,2261,0.193222129,0.262328512,0.087719298,65,741,0.060315043,0.115123554,0.001311189,6,4576,,,762.6666667,,,,,,,,,,,2.911665947,,,,,,,,,3.333274726,2.652824369,,,,,,,,,2.778164752,0.113308239,,,,,-3928.682,,,,,0.372237371,20750,55744,0.109869735,0.634605007,48068,,,40815.40426,55320.59575,,,,,,,27843,22742.23404,32943.76596,71599,50158.14894,93039.85106,51721,40460.23404,62981.76596,,,,,,0.701431493,343,489,,,17.06845143,,,,,0.341911459,,48068,,,11.27819549,3,266,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,300,,,-888,-888,0.656653491,2492,3795,,,0.389,,,,,0.001293694,,,,,0.708291708,1418,2002,0.574800769,0.841782648,0.240198785,435,1811,0.127833554,0.352564016,0.705294705,1412,2002,0.628513671,0.782075739,4576,,,,,0.156031469,714,4576,,,0.241695804,1106,4576,,,0.27076049,1239,4576,,,0.013111888,60,4576,,,0.008522727,39,4576,,,0.000218532,1,4576,,,0.102272727,468,4576,,,0.60118007,2751,4576,,,0.018584863,83,4466,0,0.04288985,0.4375,2002,4576,,,1,4589,4589,, -37,097,37097,NC,Iredell County,2024,1,7759.99048,2687,524090,7297.335689,8222.645272,0,,,,2,4599.093821,2574.077899,7585.505849,1,13587.23892,11848.47383,15326.004,,3525.610449,2530.038928,4782.888673,,7487.085997,6953.049449,8021.122545,,,,,2,,0.129,,,0.107,0.153,3.078966574,,,2.41265037,3.84485541,4.483524919,,,3.519268186,5.491075066,0.087405317,1177,13466,0.082635028,0.092175606,0,,,,0.085487078,0.061051802,0.109922353,0.158517756,0.14227794,0.174757572,0.070293399,0.057905585,0.082681212,0.074551261,0.069148784,0.079953738,,,,0.114068441,0.075648116,0.152488766,0.145,,,0.113,0.18,0.349,,,0.281,0.423,8.1,0.05755199,0.102,,,0.201,,,0.161,0.246,0.669618036,125013,186693,,,0.179274682,,,0.144406165,0.219057392,0.217741936,27,124,0.172520117,0.265709119,382.4,734,191968,,,14.87361094,609,40945,13.69230105,16.05492084,,,,,,,32.38168232,27.49952098,37.26384365,21.25352418,17.25463827,25.90123841,10.13834618,8.967426938,11.30926543,,,,29.78723404,21.46801825,40.26368708,0.117407973,18834,160415,0.10549308,0.129322867,0.000677196,130,191968,,,1476.676923,0.000571729,112,195897,,,1749.080357,0.002480896,486,195897,,,403.0802469,2753,,,,,,,3788,2039,2662,0.48,,,,,,0.33,0.48,0.34,0.49,0.48,,,,,,0.5,0.36,0.33,0.49,0.908599222,118435,130349,0.900187735,0.917010709,0.687262275,31801,46272,0.65248582,0.722038731,0.033837209,3201,94600,,,0.121,5122,,0.080489362,0.161510638,0.226666667,0,0.671968045,0.010126582,0,0.084796395,0.226684431,0.168178109,0.285190753,0.281958468,0.202227914,0.361689023,0.079762738,0.06006066,0.099464816,4.236090537,142985,33754,4.00306612,4.469114954,0.211755214,8924,42143,0.184313664,0.239196765,10.83513919,208,191968,,,70.59287067,645,913690,65.14487119,76.04087014,,,,53.75899429,28.62440034,91.92951749,73.25260093,57.99477399,91.29459708,32.64639869,20.91716365,48.57525348,75.93576676,69.42770584,82.44382768,,,,9.5,,,,,0,,,,,0.111809872,7645,68375,0.099671974,0.12394777,0.090009599,0.078648441,0.101370757,0.021060329,0.015169051,0.026951607,0.005557587,0.002791367,0.008323806,0.768909181,69890,90895,0.751922475,0.785895887,,,,0.660333909,0.519428254,0.801239564,0.734390851,0.692670136,0.776111566,0.702713488,0.663007971,0.742419004,0.780085714,0.761937678,0.79823375,0.332,,90895,0.314087987,0.349912013,76.91420966,,,76.51821147,77.31020785,,,,87.21084067,80.09172638,94.32995496,71.75970128,70.48027225,73.0391303,88.10810798,83.89221479,92.32400117,77.11607668,76.67225613,77.55989722,,,,388.9984991,2687,524090,373.7379999,404.2589983,,,,191.9856162,120.3163635,290.6685301,645.5355893,585.9276094,705.1435692,161.3789074,120.1571964,212.1834599,377.5835187,360.5744711,394.5925663,,,,48.90985371,90,184012,39.32929816,60.1185139,,,,,,,87.05024042,53.88547083,133.0655394,,,,47.16942771,35.81772406,60.97742353,,,,7.6582326,102,13319,6.172007682,9.144457518,,,,,,,14.55301455,9.670372482,21.03315798,,,,7.050787705,5.429965688,9.003698492,,,,,,,0.098,,,0.084,0.115,0.152,,,0.131,0.176,0.092,,,0.078,0.107,132.9,216,162557,,,0.102,18800,,,,0.05755199,9175.916626,159437,,,17.51426161,98,559544,14.21892417,21.34427503,,,,,,,18.13428438,9.37024936,31.67694535,,,,19.28925065,15.31844933,23.97477732,,,,0.332,,,0.317,0.348,0.143119938,16805,117419,0.126439087,0.159800789,0.050093788,2270,45315,0.036987405,0.063200171,0.001628407,319,195897,,,614.0971787,0.894367505,2311.94,2585,,,0.067925743,633,9319,0.040808998,0.095042489,3.269070673,,,,,,3.597317366,2.605508649,2.814674376,3.485188028,3.196029552,,,,,,3.947139899,2.575210199,2.85868394,3.375638287,0.08536151,,,,,-1000.85805,,,,,0.708266036,44290,62533,0.66234483,0.754187241,73446,,,67496.89362,79395.10638,46643,7713.468085,85572.53192,91778,74433.48936,109122.5106,49495,42870.31915,56119.68085,60964,55692.85106,66235.14894,78618,74781.40426,82454.59575,,,,,,0.307504704,8826,28702,,,42.45553481,,,,,0.276951774,,73446,,,7.308770525,73,9988,,,3.899808352,49,1256472,2.885099688,5.155753458,,,,,,,15.51443855,9.834823194,23.27927534,,,,2.525183444,1.61793268,3.757272801,,,,14.81026353,139,913690,12.28507796,17.33544909,15.21303725,,,,,,,,,,,,,16.52513152,13.45322401,19.59703903,,,,13.02411102,119,913690,10.68403115,15.36419089,,,,,,,13.9087217,7.78460595,22.94032127,,,,13.50291837,10.89859783,16.54198726,,,,14.3258266,180,1256472,12.23296982,16.41868338,,,,,,,18.21260177,12.00221933,26.49837938,,,,14.83545273,12.38668655,17.28421892,,,,20.39215686,,15300,,,128,184,0.782025133,102371,130905,,,0.669,,,,,42.10493428,,,,,0.716775479,51820,72296,0.703946463,0.729604494,0.098055198,6857,69930,0.086945996,0.1091644,0.919414629,66470,72296,0.909295111,0.929534147,195897,,,,,0.220115673,43120,195897,,,0.16821595,32953,195897,,,0.1193127,23373,195897,,,0.005870432,1150,195897,,,0.027846266,5455,195897,,,0.000847384,166,195897,,,0.088082002,17255,195897,,,0.74198686,145353,195897,,,0.018304166,3256,177883,,,0.50290714,98518,195897,,,0.318587199,59478,186693,, -37,099,37099,NC,Jackson County,2024,1,10241.79983,688,120954,9063.20067,11420.39899,0,33132.43455,25784.09782,40480.77127,,,,,2,,,,2,10139.93842,6104.905315,15834.7699,1,7783.748082,6660.604975,8906.89119,,,,,2,,0.157,,,0.132,0.185,3.726290713,,,2.938955755,4.608563817,5.061865451,,,4.060437261,6.176624649,0.092725819,232,2502,0.08136049,0.104091149,0,0.097368421,0.067560712,0.12717613,,,,,,,0.098901099,0.063488195,0.134314002,0.090005845,0.076445032,0.103566657,,,,,,,0.187,,,0.149,0.23,0.365,,,0.29,0.448,7.7,0.018589031,0.141,,,0.228,,,0.185,0.279,0.987473613,42569,43109,,,0.183973446,,,0.146999585,0.227546038,0.195121951,8,41,0.117388214,0.283402896,497.6,216,43410,,,12.52941991,181,14446,10.70406319,14.35477663,47.01397713,33.10217861,64.80257451,,,,,,,35.00583431,23.61828941,49.97300513,8.450704225,6.868315395,10.28842917,,,,38.83495146,20.06658611,67.83684482,0.179989962,5379,29885,0.157351664,0.202628259,0.000714121,31,43410,,,1400.322581,0.000442323,19,42955,,,2260.789474,0.004749156,204,42955,,,210.5637255,1809,,,,,1739,,,,1748,0.41,,,,,0.44,,,,0.41,0.48,,,,,0.48,,0.59,0.35,0.48,0.893099076,24654,27605,0.863459728,0.922738425,0.574199269,5181,9023,0.500680597,0.64771794,0.038041546,749,19689,,,0.186,1263,,0.121659575,0.250340426,0.24925816,0.102168533,0.396347787,0.413043478,0,0.829954382,,,,0.424428823,0.201516558,0.647341087,0.211224965,0.138975588,0.283474342,5.207583224,103558,19886,3.902932072,6.512234377,0.310447761,2184,7035,0.230748493,0.39014703,14.74314674,64,43410,,,99.6871569,217,217681,86.42343478,112.950879,285.9103385,212.2081641,376.9371378,,,,,,,,,,90.53380783,76.46140378,104.6062119,,,,6.6,,,,,0,,,,,0.146972369,2500,17010,0.118668755,0.175275983,0.121167014,0.09329408,0.149039949,0.023515579,0.015019466,0.032011693,0.006466784,0,0.014123613,0.819253222,14876,18158,0.786638053,0.851868391,0.82172471,0.696114487,0.947334933,,,,,,,0.582834331,0.464343451,0.701325212,0.845813896,0.822519845,0.869107948,0.236,,18158,0.198040263,0.273959737,76.84021638,,,75.84322698,77.83720579,62.57428997,58.570561,66.57801894,,,,,,,87.17734678,61.49454003,112.8601535,78.49386277,77.47698376,79.51074178,,,,454.8219985,688,120954,417.5485905,492.0954066,1180.590302,961.6030219,1399.577581,,,,,,,436.0593649,266.3563886,673.4583225,382.9723288,346.5825211,419.3621365,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.12,,,0.103,0.141,0.171,,,0.148,0.198,0.105,,,0.09,0.124,104.2,40,38395,,,0.141,6060,,,,0.018589031,748.5988738,40271,,,40.34068853,53,131381,30.21794394,52.76661384,219.5704057,139.1888023,329.4634167,,,,,,,,,,26.489565,17.60212357,38.28479683,,,,0.317,,,0.302,0.332,0.210622076,4862,23084,0.182026331,0.239217821,0.078694014,564,7167,0.054864227,0.102523802,0.001699453,73,42955,,,588.4246575,0.93,300.39,323,,,,,,,,2.971834205,,,,,,,,2.421311301,3.179247049,2.845238442,,,,,,,,2.53728697,2.99822776,0.057727147,,,,,-1336.938,,,,,0.895895261,40989,45752,0.766770923,1.0250196,58491,,,50376.95745,66605.04255,43447,38059.08511,48834.91489,68783,39249.55319,98316.44681,,,,43026,30790.59575,55261.40426,53428,48944.42553,57911.57447,,,,,,0.41776408,1491,3569,,,38.36899827,,,,,0.253509087,,58491,,,12.13171577,21,1731,,,3.984235707,12,301187,2.05871273,6.959657969,,,,,,,,,,,,,,,,,,,17.46820733,36,217681,11.94824088,24.65989671,16.53796151,,,,,,,,,,,,,20.33308493,13.61738609,29.20170169,,,,11.94408332,26,217681,7.802271772,17.50084945,,,,,,,,,,,,,12.52669039,7.850410176,18.96555979,,,,13.61280533,41,301187,9.768784134,18.46730754,,,,,,,,,,,,,11.50956116,7.648019803,16.63452044,,,,22.08333333,,2400,,,14,39,0.611093683,21428,35065,,,0.374,,,,,27.20834749,,,,,0.620510797,11006,17737,0.592297588,0.648724005,0.146513308,2433,16606,0.115889387,0.17713723,0.758527372,13454,17737,0.732273407,0.784781337,42955,,,,,0.160260738,6884,42955,,,0.209963916,9019,42955,,,0.021115121,907,42955,,,0.087766267,3770,42955,,,0.012245373,526,42955,,,0.000512164,22,42955,,,0.06837388,2937,42955,,,0.803142824,34499,42955,,,0.020131431,821,40782,0.012485309,0.027777552,0.508625306,21848,42955,,,0.666658934,28739,43109,, -37,101,37101,NC,Johnston County,2024,1,8006.693421,2964,619490,7576.391428,8436.995414,0,,,,2,,,,2,10337.89509,9091.627779,11584.1624,,5619.686124,4690.218945,6549.153303,,7928.267375,7399.407473,8457.127278,,,,,2,,0.153,,,0.129,0.179,3.481027578,,,2.748709118,4.33184147,4.823592315,,,3.873920405,5.882751698,0.083361765,1466,17586,0.079276173,0.087447357,0,,,,0.084158416,0.045872473,0.122444358,0.147208122,0.134433009,0.159983235,0.074714172,0.066310988,0.083117355,0.066809924,0.061973169,0.071646678,,,,0.118343195,0.083906684,0.152779707,0.165,,,0.132,0.202,0.41,,,0.336,0.486,8.3,0.028783321,0.105,,,0.238,,,0.194,0.286,0.696118964,150361,215999,,,0.178218543,,,0.14336636,0.218693209,0.285714286,48,168,0.246533899,0.325674412,407.9,924,226504,,,17.05743704,825,48366,15.89346413,18.22140996,,,,,,,23.8988989,20.50954218,27.28825562,29.31331778,25.93366467,32.69297089,10.76601622,9.555768399,11.97626404,,,,22.05882353,15.44972881,30.53870986,0.129272876,25043,193722,0.116166493,0.142379259,0.000269311,61,226504,,,3713.180328,0.00025982,61,234778,,,3848.819672,0.001026502,241,234778,,,974.1825726,3459,,,,,,,3987,1242,3469,0.46,,,,,,0.27,0.49,0.38,0.46,0.49,,,,,,0.51,0.38,0.35,0.51,0.895291892,131077,146407,0.886055326,0.904528458,0.666411443,38296,57466,0.628248833,0.704574054,0.033049287,3572,108081,,,0.136,7690,,0.09906383,0.17293617,0.010683761,0,0.127580229,,,,0.165621987,0.109572047,0.221671926,0.376615985,0.317374816,0.435857154,0.050279706,0.035841429,0.064717983,4.232929105,136131,32160,3.866066673,4.599791537,0.191477262,10438,54513,0.165420247,0.217534278,7.726132872,175,226504,,,79.79289986,839,1051472,74.39357648,85.19222324,,,,,,,68.68535065,56.23942334,81.13127796,36.10542785,27.12350863,47.1097514,94.68938449,87.47617791,101.9025911,,,,8.1,,,,,1,,,,,0.123019767,8775,71330,0.106259051,0.139780484,0.100375434,0.083871148,0.11687972,0.02488434,0.018260357,0.031508324,0.003364643,0.001247785,0.005481502,0.784705131,83535,106454,0.765509004,0.803901258,,,,,,,0.727689999,0.658050592,0.797329406,0.667083428,0.64377162,0.690395236,0.72,0.694708432,0.745291568,0.556,,106454,0.523174522,0.588825478,76.59755702,,,76.21434548,76.98076856,,,,84.85272349,79.22246219,90.48298479,74.63819214,73.60764459,75.66873968,81.66668453,79.32054662,84.01282245,76.56386392,76.11279323,77.0149346,,,,398.0706167,2964,619490,383.4830549,412.6581785,,,,,,,471.0836264,431.7505943,510.4166585,267.4230953,222.2884263,312.5577642,401.2481231,383.8368107,418.6594356,,,,53.68532729,126,234701,44.31129589,63.05935869,,,,,,,101.3495493,71.72097308,139.1101748,55.10270003,36.90314302,79.13666883,39.19824513,29.27512434,51.40328341,,,,6.470968881,110,16999,5.261682839,7.680254922,,,,,,,11.89189189,8.185831197,16.70063757,5.659309564,3.456853307,8.740344624,5.247005247,3.930366987,6.863212051,,,,,,,0.111,,,0.094,0.129,0.16,,,0.137,0.186,0.106,,,0.09,0.124,235.9,442,187390,,,0.105,22210,,,,0.028783321,4860.869747,168878,,,24.68988129,161,652089,20.87604422,28.50371835,,,,,,,16.71743815,9.907813341,26.42075959,,,,32.14505339,26.78177081,37.50833597,,,,0.336,,,0.322,0.349,0.158717845,21891,137924,0.140845504,0.176590185,0.059711678,3500,58615,0.044222316,0.07520104,0.000822053,193,234778,,,1216.466321,0.910689655,2799.46,3074,,,0.0792345,915,11548,0.050398572,0.108070427,2.993559457,,,,,,3.409174739,2.569417968,2.674848005,3.278963212,2.875695298,,,,,,3.425358423,2.335605756,2.659631106,3.148996622,0.050961456,,,,,-4410.413,,,,,0.820457554,48343,58922,0.778389127,0.862525981,80612,,,75205.02128,86018.97872,59363,3737.12766,114988.8723,78667,42212.19149,115121.8085,55749,49497.25532,62000.74468,58145,49941.59575,66348.40426,83825,79297.34043,88352.65957,,,,,,0.349543521,13477,38556,,,33.68730566,,,,,0.239108321,,80612,,,7.448211653,96,12889,,,4.269968402,61,1428582,3.26618749,5.484953045,,,,,,,11.39950894,7.446537713,16.70292182,,,,2.922798454,1.942178347,4.224257551,,,,13.00777956,139,1051472,10.80994844,15.20561068,13.21956267,,,,,,,5.952608476,2.85450714,10.94705893,,,,16.4317197,13.43461497,19.42882443,,,,12.64893407,133,1051472,10.49920277,14.79866537,,,,,,,12.91519414,8.093883407,19.55375914,,,,14.58960305,11.75821457,17.42099153,,,,17.00987413,243,1428582,14.87115362,19.14859464,,,,,,,22.36057524,16.64891698,29.40002691,13.51155238,8.904198155,19.65859933,17.22363375,14.59555193,19.85171556,,,,16.44329897,,19400,,,138,181,0.787503978,111357,141405,,,0.677,,,,,33.03194202,,,,,0.766258959,60831,79387,0.750971364,0.781546554,0.100423943,7746,77133,0.085950934,0.114896952,0.833914873,66202,79387,0.818424899,0.849404846,234778,,,,,0.243745155,57226,234778,,,0.141150363,33139,234778,,,0.17617494,41362,234778,,,0.009992418,2346,234778,,,0.011444854,2687,234778,,,0.001324656,311,234778,,,0.152207617,35735,234778,,,0.6367675,149499,234778,,,0.025641773,5277,205797,0.02117631,0.030107237,0.506491239,118913,234778,,,0.530039491,114488,215999,, -37,103,37103,NC,Jones County,2024,1,11344.84701,218,25289,8622.640756,14067.05327,0,,,,2,,,,2,16179.93752,10256.69246,24277.85056,1,,,,2,10670.55366,7305.346497,14035.76082,,,,,2,,0.199,,,0.171,0.231,4.089740198,,,3.221962418,5.057689233,5.23565015,,,4.108982716,6.494082188,0.073667712,47,638,0.053397059,0.093938364,0,,,,,,,0.089655172,0.043154128,0.136156217,,,,0.065420561,0.041994491,0.08884663,,,,,,,0.212,,,0.174,0.255,0.399,,,0.314,0.49,7.7,0.000846467,0.149,,,0.28,,,0.23,0.334,0.484081989,4440,9172,,,0.148480072,,,0.11668447,0.184188891,0.2,3,15,0.07369192,0.354373303,648.3,60,9255,,,20.46617396,36,1759,14.33425663,28.33381154,,,,,,,,,,,,,22.54901961,14.29414415,33.83460088,,,,,,,0.167662925,1150,6859,0.145024627,0.190301223,0.000648298,6,9255,,,1542.5,,0,9233,,,,0.000649843,6,9233,,,1538.833333,4218,,,,,,,4861,,3842,0.55,,,,,,,0.57,,0.55,0.46,,,,,,,0.45,,0.47,0.857768692,5874,6848,0.82307503,0.892462353,0.541139241,1026,1896,0.447842784,0.634435697,0.034043539,147,4318,,,0.274,453,,0.169148936,0.378851064,,,,,,,0.433823529,0.210606199,0.65704086,,,,0.092356688,0.025855904,0.158857472,4.681100059,96000,20508,3.661409552,5.700790565,0.335093897,571,1704,0.228867258,0.441320535,7.5634792,7,9255,,,101.7854871,48,47158,75.04858311,134.9527889,,,,,,,,,,,,,125.8845945,88.63437183,173.5153312,,,,6.4,,,,,0,,,,,0.141277641,575,4070,0.098981095,0.183574187,0.106090864,0.065207973,0.146973754,0.024324324,0.006256949,0.0423917,0.013513514,0.002769065,0.024257962,0.811795544,3097,3815,0.784224235,0.839366852,,,,,,,,,,,,,0.798339265,0.670772765,0.925905764,0.471,,3815,0.38807371,0.55392629,73.86464163,,,71.94196157,75.7873217,,,,,,,70.81497347,66.77046412,74.85948282,,,,74.2123418,71.79611761,76.628566,,,,533.4336794,218,25289,452.601118,614.2662407,,,,,,,699.658939,522.5387609,917.5096134,,,,497.8042505,401.4027371,594.2057638,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.135,,,0.116,0.154,0.18,,,0.156,0.207,0.131,,,0.112,0.151,260.3,21,8067,,,0.149,1390,,,,0.000846467,8.594182954,10153,,,,,,,,,,,,,,,,,,,,,,,,,,0.368,,,0.355,0.381,0.195710456,1022,5222,0.167114711,0.2243062,0.080046404,138,1724,0.055025127,0.10506768,0.000974764,9,9233,,,1025.888889,0.875,65.625,75,,,,,,,,3.189485803,,,,,,,3.004545995,,3.337799353,3.021631425,,,,,,,2.611100566,,3.226293217,0.02775039,,,,,-8410.807,,,,,0.785709927,38631,49167,0.656006677,0.915413178,56079,,,50452.78723,61705.21277,,,,,,,45573,7534.702128,83611.29787,,,,55610,44734.08511,66485.91489,,,,,,0.985465116,1017,1032,,,10.33762837,,,,,0.262504681,,56079,,,16.54846336,7,423,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20.8905336,14,67016,11.42104912,35.05076567,,,,,,,,,,,,,,,,,,,48.33333333,,600,,,13,16,0.729372937,5525,7575,,,0.523,,,,,16.1259333,,,,,0.759633028,2898,3815,0.723820351,0.795445705,0.095451993,340,3562,0.054852187,0.136051799,0.740498034,2825,3815,0.69041013,0.790585938,9233,,,,,0.182822485,1688,9233,,,0.242932958,2243,9233,,,0.277266327,2560,9233,,,0.01028918,95,9233,,,0.007039965,65,9233,,,0.000433229,4,9233,,,0.061626774,569,9233,,,0.624499079,5766,9233,,,0.000565355,5,8844,0,0.01053758,0.508610419,4696,9233,,,1,9172,9172,, -37,105,37105,NC,Lee County,2024,1,11070.92036,1151,175294,10118.40448,12023.43623,0,,,,2,,,,2,18574.4335,15698.95406,21449.91294,,6229.496841,4817.892405,7925.447383,,10426.10877,9162.195799,11690.02174,,,,,2,,0.169,,,0.144,0.197,3.686638262,,,2.913612029,4.536124192,4.884458678,,,3.870221654,5.971317956,0.095715588,525,5485,0.087929638,0.103501538,0,,,,,,,0.145792564,0.124156414,0.167428714,0.074926254,0.062392637,0.08745987,0.089617055,0.078493442,0.100740668,,,,0.077922078,0.035586082,0.120258074,0.171,,,0.138,0.205,0.389,,,0.312,0.467,7.2,0.081448591,0.131,,,0.248,,,0.204,0.294,0.633704669,40104,63285,,,0.159840309,,,0.126973725,0.195034499,0.303030303,20,66,0.239331263,0.367858122,483.3,310,64138,,,25.29850746,339,13400,22.60541588,27.99159904,,,,,,,27.87323406,21.84816606,35.0464071,34.61725987,28.92342868,40.31109107,16.90376569,13.60707009,20.20046129,,,,40.54054054,25.09523356,61.97052265,0.159813156,8348,52236,0.140749326,0.178876986,0.000514516,33,64138,,,1943.575758,0.000534547,35,65476,,,1870.742857,0.002107643,138,65476,,,474.4637681,3778,,,,,,,5227,1493,3546,0.46,,,,,,0.28,0.43,0.29,0.47,0.48,,,,,,0.4,0.39,0.27,0.5,0.851464532,36802,43222,0.835002601,0.867926463,0.633327205,10334,16317,0.575764526,0.690889883,0.042041927,1097,26093,,,0.238,3574,,0.186765957,0.289234043,,,,,,,0.415175376,0.316597946,0.513752805,0.233661202,0.137742491,0.329579914,0.155105973,0.105995349,0.204216597,4.316608604,113993,26408,3.809053223,4.824163984,0.287542266,4337,15083,0.222954315,0.352130217,14.96772584,96,64138,,,107.044288,332,310152,95.52964365,118.5589323,,,,,,,141.7761304,112.9238965,175.7528446,40.76574373,26.38143992,60.17827952,121.8939411,105.7127702,138.0751119,,,,8.4,,,,,1,,,,,0.148272768,3305,22290,0.126480222,0.170065315,0.124858885,0.103862515,0.145855255,0.032301481,0.019645652,0.044957309,0.004710633,0.00057785,0.008843415,0.819894845,23235,28339,0.796169598,0.843620092,,,,,,,0.796731196,0.747260104,0.846202289,0.778672885,0.694903359,0.862442412,0.85,0.825836131,0.874163869,0.385,,28339,0.338364187,0.431635813,74.80786926,,,74.04735249,75.56838603,,,,,,,68.78788596,66.93315812,70.6426138,81.06106027,77.19899302,84.92312752,75.40683806,74.43218508,76.38149103,,,,517.8788198,1151,175294,486.6951922,549.0624473,,,,,,,834.2404924,740.4725338,928.0084509,325.5586854,253.3040896,412.0153526,485.7127261,447.03668,524.3887722,,,,65.90240314,43,65248,47.69389592,88.77010454,,,,,,,120.7437817,67.57937803,199.1485058,52.6618154,26.28858851,94.22653444,49.83625231,27.24594289,83.61676321,,,,7.556210837,41,5426,5.422467355,10.25085322,,,,,,,,,,,,,,,,,,,,,,0.119,,,0.102,0.136,0.166,,,0.144,0.189,0.116,,,0.099,0.134,327.4,175,53459,,,0.131,8190,,,,0.081448591,4713.104163,57866,,,44.61677378,84,188270,35.58808612,55.23860189,,,,,,,76.81802663,50.62356359,111.7661956,,,,47.13057943,35.09181207,61.96800793,,,,0.329,,,0.317,0.341,0.199640433,7440,37267,0.173427667,0.225853199,0.063705212,1001,15713,0.044641383,0.082769042,0.001221822,80,65476,,,818.45,0.87,717.75,825,,,0.109457364,353,3225,0.050120689,0.16879404,3.009823939,,,,,,,2.692039623,2.723217818,3.440164812,2.959322675,,,,,,,2.66955373,2.843992567,3.226238626,0.04063478,,,,,-6203.053,,,,,0.80303613,39674,49405,0.702880515,0.903191745,58244,,,53575.74468,62912.25532,68750,14101.14894,123398.8511,73858,65808.29787,81907.70213,41518,37150,45886,48877,44631.7234,53122.2766,69032,61718.6383,76345.3617,,,,,,0.465917369,4477,9609,,,30.88558934,,,,,0.268010439,,58244,,,6.545820745,26,3972,,,9.547584228,41,429428,6.851511282,12.95237608,,,,,,,33.07242862,21.79493886,48.11864727,,,,5.22907365,2.78426149,8.941875193,,,,11.37578694,37,310152,7.923652416,15.82096584,11.9296345,,,,,,,,,,,,,15.43851665,10.08495164,22.62100393,,,,17.73324048,55,310152,13.35910359,23.08224999,,,,,,,40.99550758,26.26659525,60.99806569,,,,17.33354208,11.77730088,24.60357938,,,,25.84833779,111,429428,21.03964312,30.65703246,,,,,,,28.17280956,17.85914457,42.27304707,19.05896367,10.8938445,30.95056295,28.15655042,21.94941238,35.57410757,,,,22.88461539,,5200,,,55,64,0.678629079,29008,42745,,,0.652,,,,,42.92625456,,,,,0.653056133,15706,24050,0.62377689,0.682335376,0.130757355,3049,23318,0.107521136,0.153993574,0.74948025,18025,24050,0.716729463,0.782231036,65476,,,,,0.233047223,15259,65476,,,0.172918321,11322,65476,,,0.182219439,11931,65476,,,0.013760767,901,65476,,,0.016234956,1063,65476,,,0.002138188,140,65476,,,0.205174415,13434,65476,,,0.570285295,37340,65476,,,0.053566934,3192,59589,0.04369667,0.063437197,0.507010202,33197,65476,,,0.421016039,26644,63285,, -37,107,37107,NC,Lenoir County,2024,1,14085.0404,1357,152145,12880.67294,15289.40786,0,,,,2,,,,2,17546.56934,15453.92316,19639.21552,,8026.203807,5289.318883,11677.70515,,12310.1809,10624.13288,13996.22892,,,,,2,,0.219,,,0.193,0.254,4.287431748,,,3.527655136,5.403959465,5.182868125,,,4.269730323,6.531248689,0.113616071,509,4480,0.104323244,0.122908899,0,,,,,,,0.162847392,0.146867789,0.178826994,0.062388592,0.042374372,0.082402812,0.06871096,0.056896016,0.080525903,,,,0.207792208,0.11716786,0.298416555,0.227,,,0.191,0.273,0.401,,,0.333,0.489,6,0.133117603,0.161,,,0.299,,,0.254,0.358,0.586880012,32350,55122,,,0.144949562,,,0.118195339,0.184135643,0.136986301,10,73,0.083805656,0.200360053,926.8,507,54706,,,33.50039567,381,11373,30.13649224,36.86429911,,,,,,,40.64877853,35.05692803,46.24062904,46.26865672,35.4739138,59.31432976,22.01597237,17.74335643,26.28858832,,,,35.46099291,17.00492445,65.21402852,0.140351294,5905,42073,0.122478954,0.158223635,0.000566665,31,54706,,,1764.709677,0.000567423,31,54633,,,1762.354839,0.001610748,88,54633,,,620.8295455,4006,,,,,,,4118,,3877,0.5,,,,,,0.25,0.49,0.33,0.51,0.47,,,,,,0.36,0.41,0.33,0.5,0.820586544,31394,38258,0.798458548,0.84271454,0.525832568,6300,11981,0.464831387,0.586833749,0.036702224,1015,27655,,,0.317,3829,,0.230021277,0.403978723,,,,,,,0.511453561,0.449205554,0.573701569,0.322933771,0.157918426,0.487949116,0.16874731,0.116568478,0.220926141,4.76594698,87193,18295,4.133940272,5.397953689,0.417000736,5097,12223,0.354408423,0.47959305,13.89244324,76,54706,,,119.2548185,333,279234,106.4459759,132.0636612,,,,,,,111.4347887,92.05384123,130.8157362,53.7056928,27.75051517,93.81303727,140.1917177,120.309641,160.0737944,,,,7.1,,,,,0,,,,,0.165354331,3885,23495,0.13755721,0.193151451,0.134937688,0.10992119,0.159954186,0.02745265,0.01417622,0.040729079,0.021068312,0.010802475,0.03133415,0.830689982,18384,22131,0.79648101,0.864898955,,,,,,,0.797079337,0.753731519,0.840427156,0.842205323,0.676770537,1,0.873203158,0.854989756,0.891416559,0.275,,22131,0.231351791,0.318648209,71.69269488,,,70.86942332,72.51596644,,,,,,,69.74433386,68.3882001,71.10046763,89.91430156,68.97303934,110.8555638,72.58425722,71.42685945,73.74165498,,,,643.9708143,1357,152145,606.9054498,681.0361787,,,,,,,765.4912724,700.875587,830.1069578,323.1074371,214.7025455,466.9802083,587.7834078,538.3786304,637.1881852,,,,91.28085293,50,54776,67.75040846,120.3424249,,,,,,,101.4627547,65.00910144,150.9685364,,,,89.31509425,53.7735212,139.4765833,,,,11.20322653,50,4463,8.315250669,14.77005751,,,,,,,12.63976665,8.256715224,18.52018672,,,,11.38952164,6.957015709,17.59019243,,,,,,,0.141,,,0.125,0.164,0.185,,,0.163,0.215,0.142,,,0.126,0.166,509.8,235,46098,,,0.161,8900,,,,0.133117603,7919.831791,59495,,,31.85574756,53,166375,23.86214091,41.66810214,,,,,,,19.12102136,10.18113857,32.69752886,,,,44.56658991,31.21389168,61.69894586,,,,0.385,,,0.372,0.397,0.174371826,5288,30326,0.150542039,0.198201613,0.054065008,667,12337,0.037384157,0.070745859,0.001171453,64,54633,,,853.640625,0.87,577.68,664,,,0.085419735,232,2716,0.034336306,0.136503164,2.953276279,,,,,,,2.682342747,2.889685932,3.391297182,2.842470742,,,,,,,2.55807696,2.843356932,3.320878248,0.177424874,,,,,-13592.85,,,,,0.929930542,38023,40888,0.819954236,1.039906848,46410,,,40413.23404,52406.76596,79028,46863.74468,111192.2553,26084,25159.40426,27008.59575,35429,30949,39909,43204,32113.61702,54294.38298,53989,47414.3617,60563.6383,,,,,,0.993260818,8401,8458,,,49.50249816,,,,,0.356173239,,46410,,,8.723747981,27,3095,,,14.18989629,56,394647,10.71889516,18.42676063,,,,,,,28.62138266,20.95444932,38.17691356,,,,5.171914436,2.480134002,9.511334789,,,,12.4443889,33,279234,8.396176931,17.76513894,11.81804508,,,,,,,,,,,,,20.095328,12.73871416,30.15285872,,,,20.05486438,56,279234,15.14922903,26.04290953,,,,,,,29.83293556,20.66017512,41.68853722,,,,16.14773712,10.11970088,24.44786805,,,,20.77806242,82,394647,16.52540966,25.79105407,,,,,,,18.04391516,12.08429317,25.91407204,,,,22.23923207,16.09464252,29.95609966,,,,26,,4500,,,82,35,0.672481951,28409,42245,,,0.582,,,,,26.29077639,,,,,0.588219722,13332,22665,0.561746265,0.61469318,0.143402551,3080,21478,0.116581755,0.170223348,0.7812045,17706,22665,0.752213097,0.810195904,54633,,,,,0.226694489,12385,54633,,,0.217011696,11856,54633,,,0.404206249,22083,54633,,,0.007413102,405,54633,,,0.007687661,420,54633,,,0.002342906,128,54633,,,0.088426409,4831,54633,,,0.479124339,26176,54633,,,0.018660306,970,51982,0.011682775,0.025637836,0.523456519,28598,54633,,,0.618119807,34072,55122,, -37,109,37109,NC,Lincoln County,2024,1,8381.529759,1483,245173,7664.901457,9098.158061,0,,,,2,,,,2,12090.40068,8749.882918,16285.69037,,3072.345051,1756.110658,4989.29588,1,8715.52696,7900.508561,9530.545359,,,,,2,,0.138,,,0.112,0.165,3.367770282,,,2.614603764,4.250249915,4.647454051,,,3.663781668,5.771876281,0.087774295,532,6061,0.080650379,0.09489821,0,,,,,,,0.171581769,0.133320264,0.209843275,0.066455696,0.047036507,0.085874886,0.084275437,0.076469095,0.092081779,,,,,,,0.164,,,0.125,0.204,0.342,,,0.267,0.422,7.8,0.068803729,0.112,,,0.218,,,0.175,0.266,0.623061859,54088,86810,,,0.182138399,,,0.145411411,0.222941604,0.383333333,23,60,0.318436309,0.446852866,324.5,291,89670,,,19.96701614,339,16978,17.84147561,22.09255667,,,,,,,32.01707577,21.60178658,45.70636648,22.54509018,16.44454348,30.16710446,18.78076486,16.44330853,21.11822119,,,,18.86792453,9.418799944,33.75992884,0.122426779,8891,72623,0.108128907,0.136724652,0.000434928,39,89670,,,2299.230769,0.000461894,43,93095,,,2165,0.00081637,76,93095,,,1224.934211,3014,,,,,,,4956,1925,2951,0.47,,,,,,0.45,0.55,0.31,0.47,0.52,,,,,,0.44,0.39,0.34,0.52,0.898159451,56655,63079,0.88513145,0.911187452,0.622004086,12483,20069,0.565435826,0.678572346,0.03147705,1460,46383,,,0.113,2107,,0.071297872,0.154702128,,,,,,,0.667953668,0.533670118,0.802237218,0.059770115,0.005351926,0.114188304,0.061532793,0.036032392,0.087033194,4.359231053,141954,32564,3.800907879,4.917554227,0.178115235,3249,18241,0.137897338,0.218333132,11.37504182,102,89670,,,75.80496267,326,430051,67.57600346,84.03392188,,,,,,,81.1757669,48.87311443,126.7660154,31.52982722,15.1197777,57.98447485,81.2635382,72.00577766,90.52129875,,,,9.3,,,,,0,,,,,0.112284355,3775,33620,0.091642745,0.132925964,0.090279868,0.071494314,0.109065422,0.019928614,0.012049594,0.027807634,0.004610351,0.000807218,0.008413484,0.801729121,33291,41524,0.774302748,0.829155494,,,,,,,0.86316734,0.746904333,0.979430347,0.7416212,0.648825513,0.834416888,0.755250768,0.727207986,0.783293549,0.505,,41524,0.46642812,0.54357188,76.41504754,,,75.82622909,77.003866,,,,,,,73.97174657,71.13250977,76.81098337,93.10831032,82.60314627,103.6134744,75.9965367,75.35352558,76.63954781,,,,419.5089824,1483,245173,396.8500592,442.1679056,,,,,,,547.0776228,437.5914823,675.6364136,126.0939355,78.05413345,192.7479748,432.3889228,407.5819352,457.1959104,,,,50.20458368,40,79674,35.86689063,68.36439361,,,,,,,,,,,,,51.70046046,35.36307668,72.98562417,,,,6.099627245,36,5902,4.272103934,8.444455183,,,,,,,,,,,,,5.217028381,3.376185695,7.701363042,,,,,,,0.107,,,0.09,0.125,0.159,,,0.134,0.185,0.091,,,0.077,0.107,113.2,87,76864,,,0.112,9610,,,,0.068803729,5384.923844,78265,,,26.14844739,69,263878,20.34505285,33.09253371,,,,,,,,,,,,,27.37476047,20.93952267,35.16402504,,,,0.312,,,0.297,0.328,0.144111991,7793,54076,0.125048161,0.16317582,0.061628384,1202,19504,0.043756044,0.079500724,0.000966754,90,93095,,,1034.388889,0.910616438,997.125,1095,,,,,,,,3.294136058,,,,,,,2.503344607,2.9627755,3.408428522,3.243929212,,,,,,,2.423463737,2.896692859,3.358792674,0.066326386,,,,,-543.7891,,,,,0.7463574,45692,61220,0.683006899,0.8097079,78615,,,71145.55319,86084.44681,,,,29948,738.6382979,59157.3617,41610,33252.89362,49967.10638,73000,43888.34043,102111.6596,79557,74876.82979,84237.17021,,,,,,0.275964897,3239,11737,,,43.62136058,,,,,0.22614005,,78615,,,6.662072134,29,4353,,,2.870390069,17,592254,1.672107993,4.59577256,,,,,,,,,,,,,2.58791444,1.377955446,4.425412507,,,,15.69334754,70,430051,12.08578988,20.04005446,16.27713922,,,,,,,,,,,,,17.82366669,13.63369273,22.89524551,,,,13.25424194,57,430051,10.03863341,17.17240779,,,,,,,,,,,,,14.82510494,11.13707511,19.34354611,,,,17.22234042,102,592254,13.88001944,20.56466139,,,,,,,,,,,,,17.31911971,13.87190491,21.36307018,,,,17.84615385,,6500,,,52,64,0.776151468,50217,64700,,,0.69,,,,,26.40064215,,,,,0.785763392,27431,34910,0.766802795,0.804723988,0.098978214,3371,34058,0.080639921,0.117316506,0.891807505,31133,34910,0.87819564,0.90541937,93095,,,,,0.204210753,19011,93095,,,0.192888984,17957,93095,,,0.057457436,5349,93095,,,0.005381599,501,93095,,,0.010838391,1009,93095,,,0.000644503,60,93095,,,0.080928084,7534,93095,,,0.833084484,77556,93095,,,0.012195998,1019,83552,0.007815447,0.016576549,0.500907675,46632,93095,,,0.737392006,64013,86810,, -37,111,37111,NC,McDowell County,2024,1,9489.900233,939,124523,8483.043533,10496.75693,0,,,,2,,,,2,18212.60854,7322.413219,37524.93434,1,,,,2,9789.553753,8687.993753,10891.11375,,,,,2,,0.158,,,0.132,0.188,3.583192368,,,2.796821132,4.454885653,4.741188313,,,3.743528317,5.834815563,0.104974271,306,2915,0.093846813,0.11610173,0,,,,,,,,,,0.102649007,0.068418672,0.136879342,0.10615199,0.094045616,0.118258364,,,,,,,0.191,,,0.152,0.234,0.348,,,0.276,0.424,7.8,0.012794265,0.137,,,0.234,,,0.191,0.284,0.717147472,31969,44578,,,0.165827469,,,0.132284834,0.203836269,0.28125,9,32,0.188019808,0.378196141,261.6,117,44717,,,22.99261377,193,8394,19.74872645,26.2365011,,,,,,,,,,23.57563851,15.10535644,35.07868133,23.6451755,19.99271376,27.29763724,,,,,,,0.144880143,4962,34249,0.127007802,0.162752483,0.000335443,15,44717,,,2981.133333,0.000446897,20,44753,,,2237.65,0.002033383,91,44753,,,491.7912088,2107,,,,,,,,,2110,0.45,,,,,,,0.43,0.25,0.45,0.46,,,,,,0.54,0.37,0.12,0.46,0.861615356,28099,32612,0.843131915,0.880098798,0.543665096,5883,10821,0.48111078,0.606219411,0.034732843,704,20269,,,0.222,1879,,0.155276596,0.288723404,,,,,,,0.22631579,0,0.587767616,0.418150975,0.256439621,0.579862329,0.14880333,0.108096388,0.189510272,3.941477717,100823,25580,3.5063049,4.376650534,0.246802193,2161,8756,0.184525578,0.309078807,14.75948744,66,44717,,,98.27208588,223,226921,85.37374608,111.1704257,,,,,,,,,,,,,106.6432153,92.25363672,121.0327938,,,,7.2,,,,,0,,,,,0.09630643,1760,18275,0.076211504,0.116401355,0.061292104,0.045103978,0.07748023,0.022982216,0.013006123,0.03295831,0.014500684,0.003995842,0.025005526,0.838552768,15343,18297,0.821015375,0.856090162,,,,,,,,,,,,,0.823997474,0.794736319,0.853258629,0.335,,18297,0.291351791,0.378648209,75.40502631,,,74.59707992,76.2129727,,,,,,,69.81252695,61.07339767,78.55165623,,,,75.04845113,74.19231095,75.90459131,,,,499.4286732,939,124523,465.1987343,533.658612,,,,,,,689.3317448,450.2943819,1010.030721,,,,512.7812669,476.0358637,549.5266701,,,,35.40270578,14,39545,19.35498869,59.39972467,,,,,,,,,,,,,35.43586109,17.68945418,63.40454389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.118,,,0.1,0.137,0.168,,,0.145,0.193,0.099,,,0.083,0.116,77.5,30,38728,,,0.137,6080,,,,0.012794265,575.6907412,44996,,,33.76022898,46,136255,24.7167307,45.03141442,,,,,,,,,,,,,37.11482822,26.967691,49.82492453,,,,0.321,,,0.304,0.337,0.175816458,4506,25629,0.151986671,0.199646245,0.054802073,497,9069,0.038121222,0.071482924,0.001228968,55,44753,,,813.6909091,0.85,374,440,,,,,,,,3.137915207,,,,,,,2.715103312,2.904065447,3.225610292,2.979307467,,,,,,,2.743809332,2.92276485,3.018076156,0.027316219,,,,,-2135.923,,,,,0.923462336,42760,46304,0.848957633,0.997967039,54042,,,47362.51064,60721.48936,57629,54985.08511,60272.91489,91875,62165.21277,121584.7872,28393,3431.297872,53354.70213,34803,7043.680851,62562.31915,54270,49319.3617,59220.6383,,,,,,0.480190444,2824,5881,,,59.13988861,,,,,0.328633285,,54042,,,12.25382932,28,2285,,,6.309446819,20,316985,3.853974032,9.744428886,,,,,,,,,,,,,6.498945727,3.851687119,10.27113611,,,,15.00523494,36,226921,10.26356959,21.18291458,15.86455198,,,,,,,,,,,,,16.3997571,11.14283928,23.27814613,,,,16.74591598,38,226921,11.85040681,22.98507803,,,,,,,,,,,,,18.19505095,12.74358999,25.18961997,,,,11.98794896,38,316985,8.483386168,16.45439656,,,,,,,,,,,,,12.99789145,9.103563378,17.99456056,,,,28.48484849,,3300,,,61,33,0.655636312,23003,35085,,,0.564,,,,,25.1716383,,,,,0.734216894,13351,18184,0.704263174,0.764170614,0.065043478,1122,17250,0.046641185,0.083445772,0.797294325,14498,18184,0.763713797,0.830874852,44753,,,,,0.193037338,8639,44753,,,0.216432418,9686,44753,,,0.03890242,1741,44753,,,0.008848569,396,44753,,,0.011909816,533,44753,,,0.000513932,23,44753,,,0.067503855,3021,44753,,,0.863942082,38664,44753,,,0.012379029,527,42572,0.005334217,0.01942384,0.493821643,22100,44753,,,0.730113509,32547,44578,, -37,113,37113,NC,Macon County,2024,1,9790.975297,668,95771,8474.008451,11107.94214,0,,,,2,,,,2,,,,2,8971.872859,5401.653544,14010.69084,1,10249.57602,8743.889302,11755.26274,,,,,2,,0.153,,,0.126,0.179,3.57047333,,,2.773101572,4.375890782,4.788151022,,,3.793882835,5.788590982,0.098030635,224,2285,0.085838219,0.110223051,0,,,,,,,,,,0.083682008,0.058857465,0.108506552,0.098370198,0.084287353,0.112453043,,,,,,,0.179,,,0.139,0.219,0.369,,,0.294,0.439,7.4,0.03416112,0.144,,,0.226,,,0.181,0.273,1,37014,37014,,,0.150580466,,,0.120865369,0.180086425,0.269230769,7,26,0.16570611,0.378587417,223.6,84,37564,,,24.20242024,154,6363,20.3798585,28.02498198,,,,,,,,,,32.96703297,23.0897046,45.64026968,22.61048304,18.3850661,26.83589998,,,,,,,0.165390274,4384,26507,0.145134955,0.185645593,0.000559046,21,37564,,,1788.761905,0.00060423,23,38065,,,1655,0.002233023,85,38065,,,447.8235294,1656,,,,,,,,,1636,0.43,,,,,,,,,0.43,0.48,,,,,0.29,,0.37,0.26,0.48,0.894804683,24991,27929,0.879248026,0.910361341,0.623678066,4541,7281,0.536675552,0.710680581,0.03477338,557,16018,,,0.186,1242,,0.115702128,0.256297872,,,,,,,,,,0.429824561,0.308601954,0.551047168,0.135521547,0.067137796,0.203905297,4.848426891,101400,20914,4.058060834,5.638792948,0.231259484,1524,6590,0.146475366,0.316043602,15.4403152,58,37564,,,121.4938166,218,179433,105.3657615,137.6218718,,,,,,,,,,74.31629013,35.63754976,136.6703035,128.9957211,111.3371953,146.654247,,,,6.9,,,,,1,,,,,0.132938979,2135,16060,0.104527821,0.161350137,0.119271814,0.089793976,0.148749653,0.015566625,0.007143259,0.023989991,0.002179328,0.000280819,0.004077836,0.834722041,12823,15362,0.799253597,0.870190485,,,,,,,,,,0.792599805,0.626987982,0.958211629,0.83283051,0.802151493,0.863509527,0.286,,15362,0.233832356,0.338167644,76.48559334,,,75.48277864,77.48840803,,,,,,,,,,82.7833347,71.81529843,93.75137097,76.10342041,74.99401302,77.2128278,,,,434.5238427,668,95771,396.1199519,472.9277336,,,,,,,,,,450.0837818,285.314509,675.3466617,446.7532492,404.8499808,488.6565176,,,,58.03830528,17,29291,33.80945161,92.92494902,,,,,,,,,,,,,67.03611012,37.51960195,110.5658691,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.116,,,0.099,0.135,0.166,,,0.141,0.188,0.098,,,0.083,0.113,185.8,61,32824,,,0.144,5260,,,,0.03416112,1158.813527,33922,,,31.07406595,34,109416,21.519694,43.42289253,,,,,,,,,,,,,33.12389371,22.65671878,46.76105466,,,,0.317,,,0.298,0.335,0.197805532,3912,19777,0.171592766,0.224018298,0.07265559,516,7102,0.050017292,0.095293888,0.000788126,30,38065,,,1268.833333,0.82,323.08,394,,,,,,,,3.195524755,,,,,,,,2.827933491,3.315062809,2.992308569,,,,,,,,2.844700843,3.045484661,0.020608085,,,,,-1308.511,,,,,0.879674221,37263,42360,0.77883998,0.980508462,53832,,,47380.08511,60283.91489,,,,66917,2693.340426,131140.6596,28699,22938.14894,34459.85106,39542,21580.29787,57503.70213,51807,46120.02128,57493.97872,,,,,,0.334674715,1497,4473,,,73.23478805,,,,,0.258415069,,53832,,,11.50817686,19,1651,,,4.435305028,11,248010,2.21408829,7.935985853,,,,,,,,,,,,,,,,,,,24.12272118,44,179433,16.89525735,33.39601417,24.52168776,,,,,,,,,,,,,25.66789704,17.55682257,36.23541203,,,,22.29244342,40,179433,15.92604841,30.35598076,,,,,,,,,,,,,23.28215454,16.39278541,32.09138318,,,,20.56368695,51,248010,15.31101562,27.03745066,,,,,,,,,,,,,20.88744392,15.29223414,27.86092309,,,,14.7826087,,2300,,,14,20,0.743743277,20743,27890,,,0.42,,,,,19.89994362,,,,,0.738237663,12835,17386,0.708919966,0.767555359,0.116049383,1927,16605,0.089394448,0.142704317,0.791556425,13762,17386,0.775291732,0.807821118,38065,,,,,0.179850256,6846,38065,,,0.292342047,11128,38065,,,0.012820176,488,38065,,,0.008669381,330,38065,,,0.010639695,405,38065,,,0.000735584,28,38065,,,0.084224353,3206,38065,,,0.873269408,33241,38065,,,0.024276088,861,35467,0.017182039,0.031370137,0.511729936,19479,38065,,,0.747176744,27656,37014,, -37,115,37115,NC,Madison County,2024,1,9859.77037,396,59056,8208.125164,11511.41558,0,,,,2,,,,2,,,,2,,,,2,10323.11335,8554.356714,12091.86998,,,,,2,,0.143,,,0.117,0.175,3.485396306,,,2.672491308,4.427937471,4.978061117,,,3.892025797,6.168705633,0.085026336,113,1329,0.070030364,0.100022307,0,,,,,,,,,,,,,0.084193805,0.068855228,0.099532381,,,,,,,0.174,,,0.133,0.223,0.355,,,0.277,0.439,7.4,0.062603612,0.133,,,0.218,,,0.171,0.271,0.900155712,19077,21193,,,0.171063231,,,0.137870342,0.210539799,0.291666667,7,24,0.183021186,0.403882272,218.6,47,21502,,,17.54019628,84,4789,13.99074749,21.71595652,,,,,,,,,,,,,18.30985916,14.47318385,22.85153288,,,,,,,0.117529132,1876,15962,0.100848281,0.134209983,0.000558088,12,21502,,,1791.833333,0.000229695,5,21768,,,4353.6,0.002067255,45,21768,,,483.7333333,2074,,,,,,,,,2070,0.38,,,,,,,,,0.38,0.41,,,,,,,,,0.41,0.889365791,13883,15610,0.869711737,0.909019846,0.631632036,3131,4957,0.546014069,0.717250002,0.034232983,345,10078,,,0.212,759,,0.133361702,0.290638298,,,,,,,,,,0.35971223,0,0.758315319,0.118456476,0.065737335,0.171175618,5.151000794,116835,22682,3.988391679,6.313609908,0.165958577,625,3766,0.09494751,0.236969643,9.301460329,20,21502,,,104.1417065,113,108506,84.93992425,123.3434887,,,,,,,,,,,,,109.1338118,88.83110672,129.4365169,,,,6.6,,,,,1,,,,,0.128955224,1080,8375,0.095526078,0.16238437,0.105710814,0.073013547,0.138408081,0.019104478,0.007116145,0.03109281,0.007761194,0.00178538,0.013737008,0.781985451,7310,9348,0.728441009,0.835529894,,,,,,,,,,,,,0.686994064,0.608556332,0.765431795,0.505,,9348,0.431484044,0.578515956,75.83300674,,,74.53632428,77.1296892,,,,,,,,,,,,,75.42692692,74.06226265,76.79159119,,,,449.7454084,396,59056,401.2026799,498.2881369,,,,,,,,,,,,,462.8261693,411.958098,513.6942406,,,,55.60498221,10,17984,26.66475031,102.2595421,,,,,,,,,,,,,61.58014656,29.53007387,113.248082,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.112,,,0.094,0.133,0.165,,,0.14,0.193,0.093,,,0.077,0.11,116.3,22,18909,,,0.133,2830,,,,0.062603612,1299.901392,20764,,,30.77065095,20,64997,18.795513,47.52277475,,,,,,,,,,,,,32.83802644,20.05831965,50.71566851,,,,0.313,,,0.295,0.331,0.137345679,1691,12312,0.115898871,0.158792488,0.052837064,203,3842,0.036156213,0.069517915,0.000597207,13,21768,,,1674.461539,0.925,172.05,186,,,,,,,,3.38005226,,,,,,,,,3.39257002,3.327021041,,,,,,,,,3.338903727,0.04391036,,,,,338.623,,,,,0.849424758,46145,54325,0.756036729,0.942812788,54137,,,47100.06383,61173.93617,,,,73667,43459.17021,103874.8298,137670,11453.14894,263886.8511,76597,16531.6383,136662.3617,56649,49735.97872,63562.02128,,,,,,0.396817969,848,2137,,,,,,,,0.258473872,,54137,,,10.31991744,10,969,,,,,,,,,,,,,,,,,,,,,,,,,,15.51898428,16,108506,8.685857696,25.59620452,14.74572835,,,,,,,,,,,,,16.61507772,9.083617603,27.87727719,,,,11.98090428,13,108506,6.379326941,20.4877112,,,,,,,,,,,,,12.78143742,6.805577122,21.85664725,,,,17.88257112,27,150985,11.78472705,26.0182021,,,,,,,,,,,,,19.07412771,12.56997035,27.75185439,,,,,,1200,,,11,-888,0.746773272,13076,17510,,,0.539,,,,,9.107745229,,,,,0.768083343,6488,8447,0.730949812,0.805216874,0.110512129,861,7791,0.075903239,0.145121019,0.79022138,6675,8447,0.747192308,0.833250453,21768,,,,,0.167080118,3637,21768,,,0.235437339,5125,21768,,,0.013873576,302,21768,,,0.006247703,136,21768,,,0.005696435,124,21768,,,0.000826902,18,21768,,,0.029446895,641,21768,,,0.931413083,20275,21768,,,0.000390587,8,20482,0,0.005517694,0.504777655,10988,21768,,,1,21193,21193,, -37,117,37117,NC,Martin County,2024,1,13327.6004,551,59741,11314.15317,15341.04764,0,,,,2,,,,2,15193.93793,11895.56888,18492.30698,,,,,2,11306.81161,8845.583383,13768.03983,,,,,2,,0.203,,,0.176,0.233,4.158846839,,,3.351329887,5.085537015,5.340150936,,,4.291908869,6.506962532,0.128157733,208,1623,0.1118952,0.144420265,0,,,,,,,0.182978723,0.154437112,0.211520335,,,,0.085825748,0.066027982,0.105623514,,,,,,,0.214,,,0.178,0.252,0.407,,,0.33,0.492,7.5,0.039833558,0.139,,,0.286,,,0.24,0.337,0.534610322,11778,22031,,,0.142858041,,,0.114417988,0.175760028,0.260869565,6,23,0.151021274,0.378411613,703.3,153,21754,,,27.89555903,125,4481,23.00525191,32.78586614,,,,,,,40.54738976,32.15155833,50.46473643,,,,16.51722511,11.50485248,22.97146171,,,,,,,0.134828629,2140,15872,0.116956289,0.15270097,0.000413717,9,21754,,,2417.111111,0.000232472,5,21508,,,4301.6,0.001162358,25,21508,,,860.32,4138,,,,,,,5403,,3612,0.5,,,,,,,0.47,,0.52,0.49,,,,,,,0.41,,0.52,0.819776515,13132,16019,0.789807387,0.849745644,0.598896435,2822,4712,0.50388594,0.693906929,0.044364229,381,8588,,,0.293,1250,,0.186957447,0.399042553,,,,,,,0.503192107,0.397524848,0.608859366,0.660668381,0.627405989,0.693930772,0.107883817,0.038487789,0.177279846,4.833649212,89263,18467,3.82926839,5.838030034,0.412926391,1840,4456,0.306203123,0.51964966,16.5486807,36,21754,,,95.67923314,107,111832,77.54989838,113.8085679,,,,,,,75.21543851,52.39030882,104.6064672,,,,118.5281891,92.22200597,150.0050093,,,,7,,,,,0,,,,,0.135654886,1305,9620,0.102769926,0.168539846,0.13061872,0.097204259,0.164033181,0.011850312,0.001991771,0.021708853,0.004158004,0,0.009215065,0.794597637,7060,8885,0.740872782,0.848322491,,,,,,,0.773485157,0.666127188,0.880843125,,,,0.743596514,0.641096394,0.846096635,0.416,,8885,0.341830385,0.490169615,72.43310759,,,71.04294865,73.82326654,,,,,,,70.54402694,68.38581261,72.70224128,,,,74.00857652,72.24840796,75.76874508,,,,590.1228843,551,59741,534.4250125,645.8207562,,,,,,,683.0911918,590.645233,775.5371506,,,,527.3677467,454.9653797,599.7701137,,,,116.3849813,23,19762,73.77809451,174.6346164,,,,,,,155.8005753,82.95724462,266.4237287,,,,,,,,,,11.99760048,20,1667,7.328446062,18.52932088,,,,,,,,,,,,,,,,,,,,,,0.135,,,0.118,0.154,0.182,,,0.159,0.208,0.135,,,0.118,0.154,343.7,64,18620,,,0.139,3090,,,,0.039833558,976.1213438,24505,,,31.63984813,21,66372,19.58556467,48.36486882,,,,,,,,,,,,,49.2482401,28.68891471,78.85120315,,,,0.376,,,0.362,0.388,0.163673855,1905,11639,0.139844068,0.187503642,0.05752809,256,4450,0.03965575,0.07540043,0.000790404,17,21508,,,1265.176471,0.793433735,263.42,332,,,,,,,,2.704045102,,,,,,,2.435771219,2.774044178,3.171030867,2.775363517,,,,,,,2.505147978,2.931281516,3.203413403,0.15731411,,,,,-13274.2,,,,,0.814539285,37446,45972,0.694940706,0.934137864,44445,,,38425.59575,50464.40426,,,,,,,34399,29980.95745,38817.04255,27233,9662.106383,44803.89362,60852,55085.19149,66618.80851,,,,,,0.949128424,2668,2811,,,23.7305618,,,,,0.355090561,,44445,,,10.31814273,12,1163,,,8.840560492,14,158361,4.833216686,14.83295832,,,,,,,16.59751037,8.285417378,29.69753076,,,,,,,,,,9.358691339,11,111832,4.279389618,17.76571134,9.836182846,,,,,,,,,,,,,17.53025843,8.015950437,33.27789108,,,,12.51877817,14,111832,6.844132517,21.00438258,,,,,,,,,,,,,,,,,,,17.68112098,28,158361,11.74897649,25.55414271,,,,,,,19.61523953,10.44428893,33.54265699,,,,18.21095571,10.19253367,30.03620201,,,,40.66666667,,1500,,,25,36,0.713716562,12540,17570,,,0.56,,,,,20.48592431,,,,,0.665666524,6212,9332,0.630742259,0.700590788,0.1347851,1176,8725,0.098937756,0.170632445,0.783754822,7314,9332,0.760139567,0.807370077,21508,,,,,0.201180956,4327,21508,,,0.258090013,5551,21508,,,0.410684397,8833,21508,,,0.006881161,148,21508,,,0.006927655,149,21508,,,0.002231728,48,21508,,,0.044634555,960,21508,,,0.520318021,11191,21508,,,0.010974266,229,20867,0.00418176,0.017766771,0.526176307,11317,21508,,,0.749353184,16509,22031,, -37,119,37119,NC,Mecklenburg County,2024,1,6609.250703,11088,3210809,6440.134627,6778.366779,0,5158.455995,2887.148662,8508.08869,1,3037.064084,2584.000232,3490.127936,,10035.73012,9663.699934,10407.76031,,5173.788484,4776.877061,5570.699908,,5200.96727,4976.310529,5425.624011,,,,,2,,0.127,,,0.108,0.147,2.929368191,,,2.359502277,3.577805717,4.374411794,,,3.676200165,5.172464445,0.096678403,9995,103384,0.094876981,0.098479824,0,0.08125,0.03891433,0.12358567,0.100519512,0.094041516,0.106997508,0.148587286,0.144672526,0.152502046,0.080673322,0.077101881,0.084244764,0.062710372,0.060292434,0.065128311,,,,0.092401501,0.080108756,0.104694246,0.126,,,0.101,0.153,0.333,,,0.285,0.385,8.4,0.054744737,0.091,,,0.198,,,0.165,0.233,0.890286889,993099,1115482,,,0.19255307,,,0.161357122,0.226617692,0.366852886,197,537,0.346065564,0.387600085,855,9596,1122276,,,17.30709964,4268,246604,16.78785962,17.82633966,,,,5.727192063,4.472984517,7.224073494,20.86752371,19.91168896,21.82335845,43.86183184,41.90949867,45.814165,3.223380251,2.858620438,3.588140065,,,,14.46965052,11.85885349,17.08044755,0.126524266,122383,967269,0.11818384,0.134864691,0.000927579,1041,1122276,,,1078.074928,0.000719404,824,1145392,,,1390.038835,0.003917436,4487,1145392,,,255.2689993,2589,,,,,8901,1602,3904,2105,2120,0.47,,,,,,0.37,0.43,0.31,0.5,0.52,,,,,0.5,0.5,0.37,0.34,0.56,0.908898504,686252,755037,0.904542135,0.913254874,0.774233937,273941,353822,0.759527566,0.788940308,0.035012313,22833,652142,,,0.141,35626,,0.117170213,0.164829787,0.097852029,0.023476168,0.172227889,0.097051822,0.070838171,0.123265473,0.197627136,0.179302992,0.215951279,0.277129269,0.251871442,0.302387097,0.061783285,0.048333687,0.075232883,4.462033533,161539,36203,4.32723685,4.596830216,0.28954497,74074,255829,0.276000998,0.303088941,9.249061728,1038,1122276,,,61.42094223,3398,5532315,59.35574821,63.48613625,,,,25.08426294,20.09146632,30.94134567,74.10882985,70.06777476,78.14988493,42.15396208,37.53526497,46.77265919,65.24604897,62.11107724,68.38102069,,,,9.5,,,,,0,,,,,0.151013153,63720,421950,0.144759487,0.15726682,0.128121059,0.122897261,0.133344857,0.022633013,0.020246548,0.025019479,0.006398862,0.004821158,0.007976567,0.654588726,386714,590774,0.647293303,0.66188415,0.661145927,0.560281551,0.762010302,0.617433784,0.594063746,0.640803822,0.672830973,0.657504172,0.688157775,0.6184573,0.59922689,0.637687711,0.748512427,0.741296669,0.755728185,0.357,,590774,0.34607982,0.36792018,79.1928541,,,79.01225573,79.37345247,81.13895292,77.52167714,84.7562287,85.25655625,84.07018043,86.44293208,74.96521621,74.62982277,75.30060965,83.12826239,82.06620997,84.1903148,80.84923387,80.61228796,81.08617978,,,,319.7479406,11088,3210809,313.7517264,325.7441549,271.7974083,182.02699,390.3464163,155.4714609,136.8140346,174.1288872,479.4439075,466.2135666,492.6742483,227.6569905,210.3142516,244.9997295,261.0007065,253.4302308,268.5711823,,,,56.36391484,644,1142575,52.01065804,60.71717165,,,,37.24805827,24.54670511,54.19396919,89.73967529,80.1725334,99.30681718,45.90142044,37.32342415,54.47941673,38.04676788,32.03761186,44.05592389,,,,5.675215,586,103256,5.215710697,6.134719302,,,,3.396977861,2.275009387,4.878626852,9.981226533,8.885897392,11.07655567,3.802281369,3.024067211,4.719633735,3.456548095,2.871291554,4.041804636,,,,,,,0.093,,,0.08,0.107,0.14,,,0.121,0.159,0.106,,,0.091,0.122,667.9,6275,939489,,,0.091,100470,,,,0.054744737,50344.79307,919628,,,19.7823819,665,3361577,18.27881128,21.28595252,,,,,,,19.88817379,17.20462343,22.57172416,10.91210195,8.124776642,14.34739883,25.17751121,22.66901536,27.68600706,,,,0.326,,,0.314,0.337,0.148868823,106620,716201,0.138145419,0.159592227,0.064865481,17070,263160,0.052950588,0.076780375,0.002248139,2575,1145392,,,444.8124272,0.813780965,10183.655,12514,,,0.080200326,4580,57107,0.064956556,0.095444095,3.136019695,,,,,,3.538059076,2.845633472,2.765061417,3.716117681,3.237560048,,,,,,3.929925377,2.843149001,3.04512746,3.75120832,0.189345481,,,,,-5885.352,,,,,0.782909965,52765,67396,0.762921018,0.802898912,80645,,,77839.04255,83450.95745,47266,36224.46809,58307.53192,106583,99441.21277,113724.7872,55636,53708.17021,57563.82979,60754,58239.95745,63268.04255,104192,102202.2128,106181.7872,,,,,,0.46242658,71093,153739,,,54.76411543,,,,,0.297798996,,80645,,,6.288956592,450,71554,,,8.620667032,657,7621220,7.961471496,9.279862568,,,,,,,20.96169938,19.12798918,22.79540959,6.419253091,4.964649875,8.166863859,2.026625354,1.585709524,2.552199228,,,,9.756130199,552,5532315,8.93069997,10.58156043,9.977739879,,,,7.150788807,4.481361275,10.82638019,6.682674314,5.478455452,7.886893176,5.556071327,3.91198696,7.658312446,12.91504355,11.53940669,14.29068041,,,,13.32172879,737,5532315,12.3599329,14.28352467,,,,3.459898337,1.787779959,6.043746104,24.26318501,21.95094081,26.5754292,9.484641467,7.421147812,11.94433623,8.783121976,7.632901814,9.933342139,,,,9.40794256,717,7621220,8.719304296,10.09658083,,,,5.590880843,3.652148987,8.191935817,13.82135955,12.33236593,15.31035318,8.656265531,6.951692022,10.6522796,7.290221758,6.402356774,8.178086742,,,,14.13194444,,86400,,,817,404,0.764011291,567053,742205,,,0.659,,,,,165.5193097,,,,,0.558728033,249519,446584,0.550990788,0.566465279,0.137581634,60083,436708,0.131788178,0.143375089,0.923767981,412540,446584,0.919493564,0.928042398,1145392,,,,,0.224005406,256574,1145392,,,0.121589814,139268,1145392,,,0.315560088,361440,1145392,,,0.008858976,10147,1145392,,,0.067010246,76753,1145392,,,0.001207447,1383,1145392,,,0.144247559,165220,1145392,,,0.448729343,513971,1145392,,,0.049020181,51183,1044121,0.046212866,0.051827496,0.515877534,590882,1145392,,,0.008443884,9419,1115482,, -37,121,37121,NC,Mitchell County,2024,1,10463.53652,327,39881,8453.197932,12473.87512,0,,,,2,,,,2,,,,2,,,,2,11182.94763,8941.171059,13424.72421,,,,,2,,0.146,,,0.121,0.173,3.512965051,,,2.711439892,4.383799646,4.99959935,,,3.936396641,6.175888475,0.082073434,76,926,0.064394509,0.099752359,0,,,,,,,,,,,,,0.084455324,0.065387624,0.103523025,,,,,,,0.176,,,0.135,0.217,0.343,,,0.267,0.429,7.7,0.017334267,0.138,,,0.221,,,0.177,0.27,1,14903,14903,,,0.167060728,,,0.133159402,0.205565312,0.142857143,1,7,0.008995928,0.386311364,133.7,20,14963,,,24.4,61,2500,18.66406662,31.34282077,,,,,,,,,,,,,22.6963232,16.84564854,29.92227266,,,,,,,0.137283107,1527,11123,0.118219277,0.156346937,0.000467821,7,14963,,,2137.571429,0.000662515,10,15094,,,1509.4,0.001258778,19,15094,,,794.4210526,1647,,,,,,,,,1634,0.4,,,,,,,,,0.4,0.38,,,,,,,,,0.38,0.898188016,10013,11148,0.869924047,0.926451984,0.682692308,2201,3224,0.562275696,0.803108919,0.041590418,250,6011,,,0.217,593,,0.140744681,0.293255319,,,,,,,,,,0.495297806,0.331411669,0.659183943,0.087926509,0.039084909,0.136768109,4.848409709,101676,20971,3.797031135,5.899788282,0.221609702,603,2721,0.140097154,0.303122251,18.71282497,28,14963,,,121.5277778,91,74880,97.84658587,149.2091813,,,,,,,,,,,,,125.6575102,100.5097885,155.1860029,,,,5.5,,,,,0,,,,,0.10625,680,6400,0.074789927,0.137710073,0.090909091,0.057679424,0.124138758,0.01234375,0.002801255,0.021886245,0.00625,0,0.013746032,0.797340089,5036,6316,0.754814518,0.839865659,,,,,,,,,,,,,0.837133551,0.803484092,0.870783009,0.356,,6316,0.272120503,0.439879497,74.32159103,,,72.86829303,75.77488904,,,,,,,,,,,,,73.69950543,72.12681903,75.27219183,,,,512.0782407,327,39881,450.0935845,574.0628969,,,,,,,,,,,,,530.7845029,464.3198974,597.2491084,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.114,,,0.096,0.132,0.166,,,0.143,0.192,0.095,,,0.08,0.111,99.8,13,13032,,,0.138,2070,,,,0.017334267,270.0505438,15579,,,29.01267631,13,44808,15.44802823,49.61256007,,,,,,,,,,,,,31.85493752,16.96141262,54.4729133,,,,0.313,,,0.296,0.329,0.163731556,1376,8404,0.13871028,0.188752833,0.057012942,163,2859,0.039140601,0.074885282,0.001987545,30,15094,,,503.1333333,0.775,122.45,158,,,,,,,,2.975634467,,,,,,,,,3.076527354,2.868666552,,,,,,,,,2.888779034,0.053036294,,,,,-3789.565,,,,,0.867836861,42025,48425,0.671334926,1.064338796,53555,,,45853.21277,61256.78723,,,,81667,18701.55319,144632.4468,,,,,,,55829,49188.82979,62469.17021,,,,,,0.360594796,582,1614,,,,,,,,0.255811782,,53555,,,7.102272727,5,704,,,,,,,,,,,,,,,,,,,,,,,,,,18.25759907,17,74880,9.981599305,30.6331489,22.70299145,,,,,,,,,,,,,19.68131421,10.75995762,33.02190099,,,,21.36752137,16,74880,12.21338469,34.69951602,,,,,,,,,,,,,23.37814144,13.36262778,37.96463705,,,,16.15171208,17,105252,9.408967497,25.86045568,,,,,,,,,,,,,16.56949349,9.47089719,26.90781935,,,,,,900,,,10,-888,0.766511234,9041,11795,,,0.54,,,,,10.59275423,,,,,0.794567063,5148,6479,0.764843599,0.824290527,0.076659039,469,6118,0.048315306,0.105002772,0.79256058,5135,6479,0.766069826,0.819051335,15094,,,,,0.183781635,2774,15094,,,0.255532,3857,15094,,,0.008546442,129,15094,,,0.010732742,162,15094,,,0.007022658,106,15094,,,0.001391281,21,15094,,,0.062740162,947,15094,,,0.904664105,13655,15094,,,0.005591278,80,14308,0,0.012668081,0.503776335,7604,15094,,,1,14903,14903,, -37,123,37123,NC,Montgomery County,2024,1,13269.04828,593,73506,11558.77842,14979.31813,0,,,,2,,,,2,21798.77537,16868.06636,26729.48437,,9883.416337,6567.45838,14284.28841,,11405.86068,9342.427413,13469.29394,,,,,2,,0.183,,,0.156,0.211,3.784243846,,,2.963229515,4.664584571,5.055257975,,,3.982314163,6.204345902,0.100579252,191,1899,0.087051388,0.114107117,0,,,,,,,0.165165165,0.125281647,0.205048684,0.04742268,0.028506721,0.06633864,0.104950495,0.086048347,0.123852643,,,,,,,0.192,,,0.155,0.23,0.375,,,0.296,0.456,7.5,0.068648555,0.126,,,0.26,,,0.214,0.308,0.830958021,21398,25751,,,0.151426783,,,0.119479265,0.187099289,0.125,6,48,0.062215498,0.205205239,496.2,128,25798,,,23.56902357,140,5940,19.6648093,27.47323784,,,,,,,22.45088868,14.384708,33.40514274,23.33722287,16.67245417,31.77867384,22.59696459,17.51233718,28.69734625,,,,,,,0.168899695,3265,19331,0.148644376,0.189155014,0.000271339,7,25798,,,3685.428571,0.000270333,7,25894,,,3699.142857,0.00150614,39,25894,,,663.948718,2962,,,,,,,3007,,2900,0.49,,,,,,0.42,0.51,,0.49,0.45,,,,,,0.39,0.38,0.34,0.47,0.839206687,15360,18303,0.808784168,0.869629207,0.491908822,2827,5747,0.41305029,0.570767354,0.037155841,417,11223,,,0.24,1265,,0.158978723,0.321021277,0.21875,0,0.693060351,,,,0.277094972,0.125274674,0.42891527,0.353224834,0.163576679,0.542872989,0.149046105,0.07313129,0.22496092,4.434835994,101132,22804,3.377593559,5.492078429,0.262388005,1435,5469,0.1811776,0.343598411,11.24118149,29,25798,,,114.1459437,154,134915,96.11758489,132.1743026,,,,,,,155.4446535,110.0018884,213.3599318,,,,124.8042575,101.0450178,148.5634972,,,,7.9,,,,,1,,,,,0.133950317,1375,10265,0.100375396,0.167525238,0.095634921,0.070028591,0.12124125,0.034096444,0.014242839,0.05395005,0.011203117,0.001298644,0.021107591,0.833986562,8937,10716,0.81227288,0.855700244,,,,,,,0.779104478,0.677728035,0.88048092,0.798693587,0.654495584,0.94289159,0.859519726,0.806410885,0.912628566,0.318,,10716,0.260215837,0.375784163,73.09548383,,,71.89753292,74.29343474,,,,,,,67.15046541,64.41163451,69.88929631,77.62198939,67.46487785,87.77910092,74.31337287,72.81810949,75.80863625,,,,583.2420474,593,73506,531.6368018,634.8472931,,,,,,,905.6569567,750.9035242,1060.410389,454.4907918,291.2008261,676.2462722,524.6211291,464.739244,584.5030141,,,,62.13109661,16,25752,35.51329005,100.8970084,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.126,,,0.108,0.144,0.171,,,0.148,0.195,0.115,,,0.097,0.133,222.4,49,22028,,,0.126,3270,,,,0.068648555,1908.292539,27798,,,36.15554364,29,80209,24.21393502,51.92539171,,,,,,,,,,,,,39.64242532,24.21462327,61.22451072,,,,0.342,,,0.329,0.355,0.205348887,2887,14059,0.177944632,0.232753142,0.073582197,410,5572,0.050943899,0.096220495,0.000810999,21,25894,,,1233.047619,0.95,263.15,277,,,,,,,,2.955119738,,,,,,,2.628874553,2.998289091,3.142904532,2.94021774,,,,,,,2.49457681,3.116852423,3.001862978,0.079745118,,,,,-3121.117,,,,,0.885035506,37514,42387,0.768616031,1.001454981,55313,,,48372.57447,62253.42553,,,,67328,44072.51064,90583.48936,35450,29777.31915,41122.68085,46570,35831.10638,57308.89362,60666,55600.97872,65731.02128,,,,,,0.664622247,2384,3587,,,43.39360233,,,,,0.248097192,,55313,,,8.928571429,12,1344,,,7.373038903,14,189881,4.030908978,12.37070645,,,,,,,29.01915264,13.91581165,53.36725491,,,,,,,,,,16.10216001,23,134915,9.967490836,24.61386204,17.04777082,,,,,,,,,,,,,20.7216632,12.28097088,32.74916151,,,,21.49501538,29,134915,14.39554915,30.87042763,,,,,,,,,,,,,21.1931758,12.56041913,33.49435469,,,,25.80563616,49,189881,19.09115169,34.11641954,,,,,,,31.92106791,15.93488209,57.11560799,,,,25.89678045,17.59560588,36.7584127,,,,13.80952381,,2100,,,16,13,0.655394032,12849,19605,,,0.408,,,,,4.708204093,,,,,0.717306681,6818,9505,0.690777667,0.743835694,0.078893675,696,8822,0.05203175,0.1057556,0.758968964,7214,9505,0.725237554,0.792700373,25894,,,,,0.207074998,5362,25894,,,0.222368116,5758,25894,,,0.168803584,4371,25894,,,0.013478026,349,25894,,,0.017764733,460,25894,,,0.001274427,33,25894,,,0.161234263,4175,25894,,,0.633776164,16411,25894,,,0.03536466,867,24516,0.021262272,0.049467048,0.504248088,13057,25894,,,1,25751,25751,, -37,125,37125,NC,Moore County,2024,1,8596.836923,1494,272919,7896.433914,9297.239931,0,,,,2,,,,2,15302.87606,12730.87455,17874.87756,,5241.112288,3423.668555,7679.443844,,8172.497509,7357.349144,8987.645875,,,,,2,,0.123,,,0.102,0.146,3.146309608,,,2.458993655,3.893036036,4.58987733,,,3.649273162,5.586894971,0.081276857,662,8145,0.075342327,0.087211387,0,,,,0.095890411,0.048128932,0.14365189,0.179916318,0.155566737,0.204265899,0.059907834,0.044119975,0.075695693,0.068521381,0.062032315,0.075010447,,,,0.072519084,0.041115149,0.103923019,0.138,,,0.106,0.171,0.322,,,0.254,0.39,7.9,0.068293266,0.104,,,0.193,,,0.156,0.234,0.768137014,76604,99727,,,0.181735715,,,0.144439923,0.220148238,0.224719101,20,89,0.170921831,0.282028572,383.4,394,102763,,,16.05467267,296,18437,14.22568124,17.8836641,,,,,,,27.97478329,21.84853785,35.28638263,27.28873239,20.92211465,34.98292336,11.30173185,9.422875096,13.1805886,,,,31.67420815,19.60683406,48.41739176,0.117172027,9170,78261,0.102874155,0.131469899,0.001109349,114,102763,,,901.4298246,0.000587505,62,105531,,,1702.112903,0.002530062,267,105531,,,395.247191,2615,,,,,,,3801,,2474,0.54,,,,,,0.38,0.48,0.45,0.54,0.54,,,,,0.36,0.46,0.41,0.4,0.55,0.928212719,67094,72283,0.919127907,0.937297532,0.75211685,17765,23620,0.699884726,0.804348975,0.036690494,1545,42109,,,0.13,2931,,0.087106383,0.172893617,,,,,,,0.231048806,0.12217929,0.339918322,0.370877193,0.279251788,0.462502598,0.078390128,0.054204415,0.102575841,4.227157437,139995,33118,3.832834271,4.621480603,0.194608567,4216,21664,0.152493192,0.236723942,12.16391114,125,102763,,,89.87137656,452,502941,81.58607638,98.15667675,,,,,,,109.1609954,84.06726798,139.3961541,39.3922341,21.53610095,66.0934753,95.48978517,85.75980119,105.2197692,,,,8.4,,,,,1,,,,,0.13271719,5385,40575,0.118273627,0.147160754,0.106618562,0.091824627,0.121412497,0.016389402,0.008814552,0.023964253,0.015157117,0.010664723,0.01964951,0.764890636,33851,44256,0.748141527,0.781639745,0.883482715,0.783960104,0.983005325,,,,0.821747449,0.780020604,0.863474294,0.732344405,0.657724501,0.806964309,0.752824999,0.727672558,0.77797744,0.398,,44256,0.363241986,0.432758014,77.78948488,,,77.19759844,78.38137133,,,,,,,71.07979794,69.34881001,72.81078587,83.86891256,79.96997606,87.76784907,78.33525609,77.65444957,79.01606261,,,,386.3038988,1494,272919,365.0996263,407.5081713,,,,,,,715.8293257,629.5433531,802.1152984,165.8034203,109.2654987,241.2352715,360.9029379,337.5082501,384.2976257,,,,60.36920535,57,94419,45.72304659,78.21530773,,,,,,,,,,81.36034497,39.01544786,149.6245712,62.98716637,44.99895511,85.7706432,,,,5.729945192,46,8028,4.195040036,7.64294391,,,,,,,,,,,,,5.276116778,3.559773834,7.531984769,,,,,,,0.097,,,0.083,0.113,0.147,,,0.127,0.168,0.088,,,0.075,0.102,159.1,138,86761,,,0.104,10300,,,,0.068293266,6026.675829,88247,,,24.10462711,74,306995,18.92731681,30.26115197,,,,,,,54.05559191,32.54499748,84.41450275,,,,22.43889635,16.80827315,29.35062889,,,,0.325,,,0.309,0.342,0.141641392,7939,56050,0.122577562,0.160705221,0.057253719,1328,23195,0.040572867,0.07393457,0.00218893,231,105531,,,456.8441558,0.91676173,996.52,1087,,,0.08174989,370,4526,0.035494979,0.1280048,3.370363137,,,,,,,2.847853549,2.930618495,3.604481985,3.178276034,,,,,,,2.468453465,2.753258738,3.438470602,0.070133116,,,,,-1099.395,,,,,0.793647451,48999,61739,0.712446376,0.874848527,84458,,,80437.91489,88478.08511,53576,48750.46809,58401.53192,83162,47744.97872,118579.0213,45443,41060.70213,49825.29787,50143,22919.85106,77366.14894,84262,80164.46809,88359.53192,,,,,,0.338712192,4345,12828,,,43.45815131,,,,,0.210495157,,84458,,,8.568980291,50,5835,,,4.472859124,31,693069,3.039090766,6.348866491,,,,,,,23.0935654,13.90383495,36.06346303,,,,2.245424947,1.160243836,3.922305499,,,,17.30077529,88,502941,13.67554493,21.59215054,17.49708216,,,,,,,,,,,,,20.02600943,15.51988224,25.43232408,,,,14.91228593,75,502941,11.72945886,18.69267955,,,,,,,18.76204609,9.365945807,33.57048306,,,,16.25907153,12.49391699,20.80241545,,,,21.06572362,146,693069,17.6486367,24.48281053,,,,,,,35.24807351,23.60618803,50.62211323,20.94021568,10.04164736,38.5098022,19.64746828,15.889371,23.40556557,,,,9.866666667,,7500,,,44,30,0.770100983,58339,75755,,,0.612,,,,,30.33932799,,,,,0.771313006,32227,41782,0.753018275,0.789607736,0.105419157,4268,40486,0.091376999,0.119461316,0.880450912,36787,41782,0.863161691,0.897740133,105531,,,,,0.21609764,22805,105531,,,0.239247235,25248,105531,,,0.107162824,11309,105531,,,0.012451318,1314,105531,,,0.017795719,1878,105531,,,0.001885702,199,105531,,,0.077001071,8126,105531,,,0.769574817,81214,105531,,,0.018035586,1711,94868,0.012248067,0.023823106,0.510864106,53912,105531,,,0.495432531,49408,99727,, -37,127,37127,NC,Nash County,2024,1,10651.91253,1848,263335,9884.833354,11418.99171,0,,,,2,,,,2,12624.92229,11340.55847,13909.2861,,7447.611749,5344.534775,10103.52629,,9778.963203,8682.609952,10875.31645,,,,,2,,0.172,,,0.147,0.198,3.579140226,,,2.873068641,4.414659026,5.096009415,,,4.104426811,6.171701117,0.107818157,804,7457,0.100778579,0.114857736,0,0.175438597,0.076698689,0.274178504,0.144444444,0.071815565,0.217073324,0.141334146,0.129417438,0.153250853,0.065995526,0.049720599,0.082270452,0.078678474,0.068939536,0.088417413,,,,0.12972973,0.081310594,0.178148866,0.18,,,0.146,0.216,0.403,,,0.329,0.479,7.8,0.054610423,0.116,,,0.256,,,0.212,0.303,0.554153943,52628,94970,,,0.162189207,,,0.129961795,0.198349991,0.314516129,39,124,0.268893515,0.360610986,740.7,705,95176,,,23.22667695,482,20752,21.1531025,25.30025139,,,,,,,29.76190476,26.144225,33.37958452,26.42276423,20.3925316,33.67798204,14.83885926,12.26815805,17.40956048,,,,34.53947368,21.38047859,52.7972545,0.138604739,10230,73807,0.121923888,0.155285591,0.000504329,48,95176,,,1982.833333,0.000615937,59,95789,,,1623.542373,0.001492865,143,95789,,,669.8531469,3596,,,,,,6305,4308,3766,3176,0.45,,,,,,0.35,0.44,0.17,0.46,0.51,,,,,0.46,0.65,0.43,0.39,0.55,0.865579617,57278,66173,0.848926071,0.882233163,0.565008746,12598,22297,0.509597054,0.620420437,0.049815847,2110,42356,,,0.214,4419,,0.13893617,0.28906383,,,,,,,0.318225191,0.241095641,0.395354741,0.163839769,0.078327019,0.249352519,0.082133126,0.047351974,0.116914277,4.487303749,112039,24968,3.935836469,5.038771028,0.344668366,7166,20791,0.298019752,0.39131698,11.87274103,113,95176,,,97.17576322,459,472340,88.28564188,106.0658846,,,,,,,90.4159132,76.98126433,103.8505621,57.68176968,35.23352345,89.08481499,112.9683298,99.2365729,126.7000866,,,,8.1,,,,,0,,,,,0.170056195,6355,37370,0.141798769,0.19831362,0.128758258,0.10808378,0.149432736,0.040272946,0.021464322,0.05908157,0.006288467,0.002943007,0.009633926,0.819032137,34763,42444,0.798777388,0.839286885,0.937172775,0.843592703,1,,,,0.800211358,0.761099271,0.839323445,0.673300166,0.578224005,0.768376326,0.832053505,0.805859939,0.858247072,0.287,,42444,0.257236605,0.316763395,74.39622405,,,73.81576161,74.97668648,,,,,,,72.7228469,71.76067539,73.68501841,82.82938907,76.08119667,89.57758147,75.11166162,74.30374028,75.91958297,,,,508.8214999,1848,263335,484.1259488,533.517051,,,,,,,600.0295383,558.0315786,642.0274979,354.9042863,255.7837926,479.7274935,467.1844368,433.4887348,500.8801388,,,,58.5321439,54,92257,43.97114796,76.37175108,,,,,,,86.44360826,59.86471165,120.7962781,,,,41.93809937,23.47243586,69.17051716,,,,7.560415823,56,7407,5.711056863,9.817828812,,,,,,,11.68152475,8.26654216,16.03380539,,,,,,,,,,,,,0.117,,,0.101,0.133,0.165,,,0.144,0.188,0.122,,,0.104,0.139,411.3,332,80711,,,0.116,11010,,,,0.054610423,5233.862964,95840,,,27.78432331,79,284333,21.99711042,34.62755683,,,,,,,26.55018842,18.0395649,37.68587316,,,,31.40015481,22.72444773,42.29580246,,,,0.348,,,0.334,0.36,0.172064401,9255,53788,0.150617593,0.19351121,0.050992844,1076,21101,0.035503482,0.066482206,0.001137918,109,95789,,,878.7981651,0.889228029,1123.095,1263,,,0.105471188,507,4807,0.055342891,0.155599485,2.837143269,,,,,,,2.637770729,2.62063946,3.315348271,2.620382355,,,,,,,2.410817625,2.536525428,3.00392456,0.114112499,,,,,-11702.54,,,,,0.7518992,40877,54365,0.707469233,0.796329167,55406,,,50891.44681,59920.55319,41111,1675.085106,80546.91489,115461,55047.7234,175874.2766,47649,43444.23404,51853.76596,56578,33338,79818,68775,64828.78723,72721.21277,,,,,,0.499858797,7080,14164,,,35.56895578,,,,,0.291592968,,55406,,,8.267568583,44,5322,,,10.75327445,71,660264,8.398396559,13.56379253,,,,,,,21.74133064,16.50910388,28.1057115,,,,,,,,,,14.81286672,70,472340,11.43225781,18.88021462,14.81983317,,,,,,,8.591171862,4.696873602,14.41452657,,,,21.55093318,15.71939854,28.83684417,,,,19.68920693,93,472340,15.89173111,24.12060868,,,,,,,24.4226892,17.9448734,32.4769992,,,,19.11771735,13.89096269,25.66464321,,,,21.20363976,140,660264,17.69125187,24.71602764,,,,,,,18.36767589,13.58850774,24.28304161,27.51613927,14.65118529,47.05343617,23.34639913,18.39430713,29.22149987,,,,9.589041096,,7300,,,44,26,0.735900324,52271,71030,,,0.638,,,,,48.99013328,,,,,0.649273675,24538,37793,0.630795184,0.667752167,0.118682939,4347,36627,0.098580635,0.138785243,0.816950229,30875,37793,0.79467059,0.839229867,95789,,,,,0.217874704,20870,95789,,,0.195293823,18707,95789,,,0.412458633,39509,95789,,,0.011410496,1093,95789,,,0.012057752,1155,95789,,,0.000960444,92,95789,,,0.079372371,7603,95789,,,0.47415674,45419,95789,,,0.011602506,1041,89722,0.006777662,0.01642735,0.517366295,49558,95789,,,0.496714752,47173,94970,, -37,129,37129,NC,New Hanover County,2024,1,8015.433133,3121,648277,7588.329603,8442.536664,0,,,,2,,,,2,13848.94124,12280.46504,15417.41743,,6743.994156,5276.760081,8492.944513,,7306.823754,6840.772145,7772.875362,,,,,2,,0.127,,,0.105,0.151,3.073023388,,,2.421482966,3.856714197,5.020595637,,,4.149298466,6.036551752,0.085428777,1308,15311,0.08100121,0.089856344,0,,,,0.050724638,0.024836124,0.076613151,0.156223893,0.141679978,0.170767808,0.086042065,0.074025129,0.098059001,0.067966962,0.063045895,0.072888028,,,,0.120805369,0.09059278,0.151017958,0.143,,,0.109,0.179,0.31,,,0.255,0.371,7.5,0.088306837,0.117,,,0.189,,,0.151,0.23,0.944032397,213070,225702,,,0.209717357,,,0.173136611,0.24901193,0.233009709,24,103,0.182905892,0.285869557,499.5,1144,229018,,,10.50305045,575,54746,9.644555786,11.36154512,,,,,,,28.30444204,24.46703802,32.14184606,36.56522765,30.80872772,42.32172758,4.320355618,3.67655333,4.964157906,,,,19.04212349,13.10772162,26.74222116,0.111352475,20043,179996,0.098246092,0.124458858,0.000921325,211,229018,,,1085.393365,0.000830066,195,234921,,,1204.723077,0.005542289,1302,234921,,,180.4308756,2413,,,,,,1196,4393,1024,2112,0.53,,,,,,0.39,0.49,0.39,0.54,0.57,,,,,0.23,0.51,0.42,0.43,0.58,0.935340072,148344,158599,0.927430697,0.943249446,0.78035445,45529,58344,0.741480279,0.81922862,0.032783975,4247,129545,,,0.155,6223,,0.109723404,0.200276596,0.034013605,0,0.406466325,,,,0.512060302,0.403420937,0.620699666,0.150469579,0.077798604,0.223140555,0.069858143,0.045653515,0.09406277,4.895048172,138197,28232,4.541547294,5.248549051,0.252055661,10361,41106,0.220241267,0.283870055,9.649896515,221,229018,,,92.9650148,1078,1159576,87.41535663,98.51467297,,,,,,,109.4432984,92.74380594,126.1427909,39.93492087,26.31736449,58.1032132,97.1304693,90.67983412,103.5811045,,,,3.8,,,,,0,,,,,0.179846939,17625,98000,0.16511358,0.194580298,0.169418484,0.155072482,0.183764486,0.009132653,0.005861283,0.012404023,0.009183674,0.004946318,0.013421029,0.754616749,86793,115016,0.740949898,0.7682836,0.741935484,0.587121732,0.896749236,0.71917366,0.573249598,0.865097723,0.749477438,0.69176137,0.807193506,0.612798616,0.565291207,0.660306025,0.786307986,0.76667462,0.805941352,0.196,,115016,0.17840787,0.21359213,78.07725117,,,77.70137157,78.45313076,,,,83.89874281,80.62295782,87.17452779,72.2340881,71.11587313,73.35230307,82.31447377,79.31828497,85.31066257,78.81970498,78.40527618,79.23413379,,,,368.9866691,3121,648277,355.3256065,382.6477318,,,,,,,614.1283588,563.7055781,664.5511395,253.5952575,199.1268215,318.365623,342.4172041,327.651761,357.1826471,,,,42.38703854,85,200533,33.8572609,52.41222957,,,,,,,63.96111164,39.06910866,98.78274938,62.48326341,34.16018154,104.8362989,37.17140478,27.5893331,49.00586317,,,,5.396969894,83,15379,4.298656395,6.690356187,,,,,,,10.76984444,7.097395346,15.66955822,,,,4.742145821,3.496483978,6.28739737,,,,,,,0.099,,,0.083,0.116,0.157,,,0.134,0.181,0.093,,,0.079,0.108,307.5,617,200636,,,0.117,26430,,,,0.088306837,17896.88182,202667,,,36.85166775,258,700104,32.3548699,41.34846561,,,,,,,47.02562897,33.89193704,63.56498917,,,,38.76283788,33.5200536,44.00562217,,,,0.288,,,0.272,0.303,0.131049125,18271,139421,0.114368274,0.147729976,0.0468604,2006,42808,0.033754017,0.059966783,0.002605131,612,234921,,,383.8578431,0.88,1838.32,2089,,,0.045695883,525,11489,0.016934372,0.074457394,3.252621313,,,,,,2.958675795,2.625069677,2.76767129,3.569015467,3.217704828,,,,,,3.449104771,2.422755196,2.927030841,3.548884663,0.119940168,,,,,-349.3682,,,,,0.851909285,48345,56749,0.811667645,0.892150925,70995,,,65939.51064,76050.48936,,,,82847,37817.04255,127876.9575,45953,42601.34043,49304.65957,55710,46898.93617,64521.06383,73726,70251.61702,77200.38298,,,,,,0.533039476,13665,25636,,,52.81908963,,,,,0.272385379,,70995,,,5.519176801,59,10690,,,6.673248444,107,1603417,5.408798981,7.937697907,,,,,,,29.70815277,22.82856028,38.00963265,,,,3.310119439,2.375398859,4.490550785,,,,15.6700065,185,1159576,13.34517396,17.99483904,15.95410736,,,,,,,,,,,,,17.93503543,15.13473202,20.73533884,,,,14.14310058,164,1159576,11.97849498,16.30770618,,,,,,,28.52158686,20.64121383,38.41839033,,,,12.93586044,10.58177404,15.28994683,,,,12.03679392,193,1603417,10.33859625,13.7349916,,,,,,,19.80543518,14.27401561,26.77119478,,,,11.14137762,9.282480212,13.00027503,,,,13.85135135,,14800,,,139,66,0.716779034,131830,183920,,,0.619,,,,,111.1111275,,,,,0.595388847,59524,99975,0.580688574,0.610089121,0.16649653,16147,96981,0.152281355,0.180711706,0.908917229,90869,99975,0.900311166,0.917523293,234921,,,,,0.173679663,40801,234921,,,0.19380132,45528,234921,,,0.121977175,28655,234921,,,0.006193572,1455,234921,,,0.015622273,3670,234921,,,0.001272768,299,234921,,,0.064225846,15088,234921,,,0.773975081,181823,234921,,,0.010881303,2368,217621,0.007999817,0.013762789,0.52216277,122667,234921,,,0.017106627,3861,225702,, -37,131,37131,NC,Northampton County,2024,1,13888.20298,453,49011,11580.2027,16196.20326,0,,,,2,,,,2,15825.63654,12602.69751,19048.57558,,,,,2,11326.91031,7973.989643,14679.83098,,,,,2,,0.216,,,0.185,0.25,4.046813339,,,3.142005599,5.078932689,5.134669042,,,3.99486705,6.445147574,0.123076923,152,1235,0.104754131,0.141399715,0,,,,,,,0.149606299,0.124280478,0.174932121,,,,0.074074074,0.048567637,0.099580511,,,,,,,0.22,,,0.177,0.265,0.45,,,0.357,0.546,8.1,0.004641635,0.127,,,0.294,,,0.24,0.35,0.202964913,3546,17471,,,0.126387922,,,0.097198972,0.159322086,0.288888889,13,45,0.210885275,0.369192639,852.4,146,17129,,,31.64763458,97,3065,25.6640997,38.60743032,,,,,,,41.7101147,33.0735269,51.91184826,,,,13.69863014,7.293943615,23.42507473,,,,,,,0.117026705,1376,11758,0.100345854,0.133707556,0.000116761,2,17129,,,8564.5,0.000178795,3,16779,,,5593,0.000834376,14,16779,,,1198.5,4616,,,,,,,5783,,3617,0.47,,,,,,,0.5,,0.45,0.43,,,,,,,0.37,,0.47,0.835004902,11073,13261,0.813029516,0.856980287,0.602309742,2034,3377,0.49433946,0.710280025,0.048565121,352,7248,,,0.293,846,,0.172659575,0.413340426,,,,,,,0.391477273,0.298594847,0.484359699,,,,0.179881657,0.083647167,0.276116146,6.052226027,98966,16352,4.870769399,7.233682656,0.346079067,1068,3086,0.248112661,0.444045473,14.59513106,25,17129,,,112.3501124,107,95238,91.06197353,133.6382512,,,,,,,116.8267626,89.7728921,149.4721791,,,,113.5165815,81.81276719,153.4414411,,,,7.9,,,,,0,,,,,0.156083086,1315,8425,0.120200782,0.19196539,0.147736874,0.109910178,0.18556357,0.004154303,0,0.010765656,0.014243323,0.002969553,0.025517094,0.834584163,5449,6529,0.797991722,0.871176604,,,,,,,0.891322662,0.822943686,0.959701638,,,,0.821773855,0.734712125,0.908835584,0.401,,6529,0.335968253,0.466031747,73.18953763,,,71.58242849,74.79664678,,,,,,,71.51558217,69.37935976,73.65180458,,,,75.24602817,72.77391242,77.71814392,,,,582.4816934,453,49011,519.4739392,645.4894476,,,,,,,659.316179,569.6351626,748.9971953,,,,499.6992566,407.8047943,591.5937189,,,,69.32409012,10,14425,33.24359581,127.48947,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.136,,,0.116,0.157,0.179,,,0.154,0.208,0.148,,,0.127,0.172,319,48,15049,,,0.127,2280,,,,0.004641635,102.5754924,22099,,,25.13464991,14,55700,13.741347,42.17167167,,,,,,,,,,,,,,,,,,,0.403,,,0.389,0.418,0.140852974,1255,8910,0.119406166,0.162299783,0.044481605,133,2990,0.030183733,0.058779478,0.000238393,4,16779,,,4194.75,0.789285714,143.65,182,,,,,,,,2.848235917,,,,,,,2.739221675,,3.119339196,2.78870928,,,,,,,2.664181009,,3.095807186,0.017800409,,,,,-25114.86,,,,,0.795598787,36479,45851,0.648648873,0.942548702,51550,,,48063.70213,55036.29787,,,,,,,38140,30122.46809,46157.53192,53409,21173.25532,85644.74468,60160,52821.61702,67498.38298,,,,,,0.820706069,2069,2521,,,35.066674,,,,,0.335402522,,51550,,,15.09433962,12,795,,,13.26807407,18,135664,7.863501578,20.96927724,,,,,,,19.41848122,10.86837653,32.0278317,,,,,,,,,,23.71882092,20,95238,13.81708725,37.97612997,21.000021,,,,,,,,,,,,,43.95720179,22.71332761,76.78438532,,,,26.25002625,25,95238,16.98763293,38.75021703,,,,,,,20.39832363,10.18276966,36.49823557,,,,37.83886051,20.68685715,63.48717836,,,,25.79903291,35,135664,17.9699717,35.88020947,,,,,,,32.36413536,20.94436197,47.7758482,,,,,,,,,,16.66666667,,1200,,,6,14,0.630495791,10110,16035,,,0.486,,,,,11.41102743,,,,,0.718209835,5360,7463,0.682647522,0.753772148,0.142981691,984,6882,0.109927711,0.176035672,0.632989414,4724,7463,0.591249932,0.674728897,16779,,,,,0.174503844,2928,16779,,,0.293223672,4920,16779,,,0.548900411,9210,16779,,,0.007568985,127,16779,,,0.003814292,64,16779,,,0.000297992,5,16779,,,0.028607188,480,16779,,,0.397401514,6668,16779,,,0.003183183,53,16650,0,0.00925404,0.517015317,8675,16779,,,0.883521264,15436,17471,, -37,133,37133,NC,Onslow County,2024,1,9606.839419,2558,584820,9129.991037,10083.6878,0,,,,2,3373.150268,1844.13264,5659.572984,1,12302.90529,10862.90134,13742.90925,,5496.139864,4361.553163,6630.726565,,10021.92414,9426.607122,10617.24115,,,,,2,,0.155,,,0.132,0.18,3.440848594,,,2.717981979,4.239884789,4.800297519,,,3.890561642,5.826053806,0.069961866,1908,27272,0.066934404,0.072989327,0,,,,0.074144487,0.051753448,0.096535525,0.119470568,0.107606274,0.131334861,0.063671258,0.05648026,0.070862255,0.063050507,0.059493609,0.066607406,0.138888889,0.059006109,0.218771669,0.07569386,0.060658862,0.090728859,0.176,,,0.142,0.213,0.371,,,0.309,0.438,6.5,0.145100729,0.134,,,0.229,,,0.19,0.273,0.556614657,113870,204576,,,0.203918958,,,0.166529112,0.246288089,0.267326733,27,101,0.216287844,0.320096579,877,1808,206160,,,37.77951263,1355,35866,35.76790731,39.79111795,,,,,,,25.80845771,21.8823331,29.73458232,44.03961797,38.56945909,49.50977685,41.08508015,38.29499338,43.87516691,,,,31.2614932,24.97057043,38.65532046,0.106761831,17202,161125,0.092463959,0.121059703,0.000310439,64,206160,,,3221.25,0.001051626,218,207298,,,950.9082569,0.002802728,581,207298,,,356.7951807,2671,,,,,,716,2898,,2753,0.41,,,,,,0.31,0.43,0.34,0.41,0.41,,,,,,0.35,0.34,0.36,0.43,0.920155334,101414,110214,0.910216843,0.930093826,0.677176406,39562,58422,0.63688669,0.717466123,0.042651457,2909,68204,,,0.162,8137,,0.114340426,0.209659575,0.02027027,0,0.387471359,0.137529138,0,0.309445276,0.309708596,0.208294317,0.411122875,0.181354698,0.122285697,0.240423699,0.139883228,0.103823527,0.175942929,3.87702698,110220,28429,3.487125483,4.266928476,0.212177607,10489,49435,0.179161807,0.245193408,6.548311991,135,206160,,,77.92984713,779,999617,72.45727913,83.40241513,,,,,,,78.90385394,64.48252219,93.32518568,30.08145131,21.39085253,41.12233422,91.58735182,84.27102112,98.90368252,,,,6.3,,,,,1,,,,,0.145546651,9625,66130,0.124307842,0.166785459,0.127134521,0.107978306,0.146290736,0.018448511,0.010533087,0.026363934,0.003402389,0.001419268,0.00538551,0.694834782,72588,104468,0.67630763,0.713361934,0.184210526,0.023656622,0.34476443,0.584889644,0.471078267,0.69870102,0.683398251,0.624060438,0.742736064,0.547230571,0.481598904,0.612862239,0.735418884,0.715256515,0.755581252,0.328,,104468,0.300777662,0.355222338,75.04156369,,,74.60090969,75.48221768,,,,85.16910071,81.102623,89.23557841,73.43848609,72.19275843,74.68421374,84.91758066,81.40167347,88.43348785,74.36673639,73.86040239,74.87307038,,,,517.5773921,2558,584820,496.9369609,538.2178234,,,,215.3172409,143.0767429,311.1933631,609.0178142,552.8444945,665.1911338,266.072082,206.3035056,325.8406584,542.0539621,517.0215417,567.0863825,,,,51.75693219,120,231853,42.49644203,61.01742236,,,,,,,80.19484377,52.84890737,116.6792873,44.98901739,26.20776053,72.03177499,49.16420846,38.1779316,62.32734915,,,,5.159321295,142,27523,4.31071847,6.00792412,,,,,,,10.33677893,7.023339773,14.67223258,4.645760743,2.837751356,7.175000674,4.458879225,3.540993724,5.541979752,,,,,,,0.113,,,0.097,0.13,0.164,,,0.142,0.187,0.111,,,0.095,0.129,184.4,310,168106,,,0.134,26930,,,,0.145100729,25794.84682,177772,,,27.62971576,168,608041,23.45162521,31.80780631,,,,,,,26.22606871,16.62507787,39.35197995,,,,34.33515118,28.58558931,40.08471305,,,,0.378,,,0.364,0.39,0.137662547,15382,111737,0.117407228,0.157917866,0.03924938,2010,51211,0.027334486,0.051164274,0.001316945,273,207298,,,759.3333333,0.9,1664.1,1849,,,0.076885577,1104,14359,0.041841857,0.111929297,3.097156382,,,,,,3.275722782,2.618852031,3.072298996,3.239194292,2.872962288,,,,,,3.342855559,2.400937097,2.88387762,2.99986284,0.054409766,,,,,-2753.934,,,,,1.02245447,39524,38656,0.953565083,1.091343858,62190,,,58309.31915,66070.68085,51201,42070.61702,60331.38298,49167,27652.2766,70681.7234,49384,42431.65957,56336.34043,67811,60789.55319,74832.44681,61803,58471.59575,65134.40426,,,,,,0.36487128,9992,27385,,,31.5650196,,,,,0.283855925,,62190,,,2.669355796,45,16858,,,5.243746832,72,1373064,4.102908946,6.603631298,,,,,,,13.4276251,8.848889551,19.53648954,,,,4.085594305,2.876635432,5.631453571,,,,20.50357976,200,999617,17.4071895,23.59997002,20.00766294,,,,,,,10.95206844,6.260053407,17.78547299,11.90906129,5.944960486,21.30860026,23.84154669,19.77625048,27.9068429,,,,16.20620698,162,999617,13.71057843,18.70183553,,,,,,,19.21137313,12.76581793,27.76578313,9.255831174,4.782623032,16.16807436,17.49592269,14.29817641,20.69366897,,,,12.59955836,173,1373064,10.72202206,14.47709466,,,,,,,14.422264,9.658816548,20.71277685,6.272166406,3.131042872,11.22263825,14.3547908,11.88715386,16.82242774,,,,19.64539007,,14100,,,155,122,0.487991893,72235,148025,,,0.556,,,,,40.12185727,,,,,0.589291498,41845,71009,0.569787207,0.60879579,0.139706955,9573,68522,0.119109924,0.160303987,0.913278599,64851,71009,0.898055239,0.928501958,207298,,,,,0.246012986,50998,207298,,,0.103599649,21476,207298,,,0.14021843,29067,207298,,,0.010521086,2181,207298,,,0.022238517,4610,207298,,,0.003135583,650,207298,,,0.136373723,28270,207298,,,0.655071443,135795,207298,,,0.008517578,1593,187025,0.005610256,0.0114249,0.448774228,93030,207298,,,0.362667175,74193,204576,, -37,135,37135,NC,Orange County,2024,1,5654.507521,1199,421593,5118.874074,6190.140968,0,,,,2,2465.582858,1347.957092,4136.829084,1,11713.41383,9486.060361,13940.7673,,5420.825513,3983.018691,7208.548756,,4908.863382,4306.279751,5511.447012,,,,,2,,0.109,,,0.089,0.13,2.881226463,,,2.194466304,3.647394405,4.454427808,,,3.541861559,5.408257106,0.083158803,675,8117,0.077151777,0.089165828,0,,,,0.077970297,0.059482403,0.096458191,0.144624168,0.123359743,0.165888592,0.077922078,0.063810079,0.092034077,0.071321802,0.063950609,0.078692995,,,,0.091463415,0.047344069,0.13558276,0.117,,,0.088,0.148,0.279,,,0.219,0.346,8.6,0.021777182,0.095,,,0.175,,,0.137,0.215,0.834763544,124126,148696,,,0.195680336,,,0.159100943,0.236174269,0.3125,20,64,0.24786093,0.377947801,482.9,719,148884,,,3.958737772,208,52542,3.42073918,4.496736363,,,,,,,7.755859046,5.6782636,10.34522909,17.99959092,14.43619826,22.17599944,1.534555397,1.156037135,1.997434781,,,,8.259587021,4.515593083,13.85818355,0.099975932,11631,116338,0.088061039,0.111890826,0.001820209,271,148884,,,549.3874539,0.002332582,351,150477,,,428.7094017,0.007881603,1186,150477,,,126.8777403,1671,,,,,,689,5099,1953,1399,0.48,,,,,,0.41,0.4,0.27,0.49,0.61,,,,,,0.57,0.5,0.5,0.63,0.93418321,86397,92484,0.925201097,0.943165324,0.862177433,29602,34334,0.818236391,0.906118476,0.030318274,2471,81502,,,0.114,3089,,0.083021277,0.144978723,,,,0.152025489,0.055617968,0.248433011,0.24851034,0.151090272,0.345930408,0.241765339,0.150942899,0.332587779,0.050516648,0.034436302,0.066596993,5.633147279,190744,33861,5.121841155,6.144453402,0.190544361,5324,27941,0.157673317,0.223415406,9.336127455,139,148884,,,51.93854165,383,737410,46.73682807,57.14025524,,,,,,,75.2418488,57.81790254,96.26700978,34.5721694,21.6661945,52.34267995,55.90665543,49.42722895,62.38608192,,,,8.5,,,,,0,,,,,0.164505825,8755,53220,0.148449,0.18056265,0.142355176,0.127835358,0.156874994,0.022923713,0.015321555,0.030525871,0.006388576,0.003472069,0.009305083,0.600525266,41844,69679,0.580525453,0.620525079,,,,0.491250226,0.422440901,0.56005955,0.788655141,0.740475747,0.836834536,0.660626269,0.577179644,0.744072893,0.630187404,0.606167731,0.654207077,0.328,,69679,0.303063975,0.352936025,81.60290817,,,81.04752595,82.15829039,,,,88.0731689,84.83367059,91.31266721,74.28522056,72.5441027,76.02633842,86.8501209,81.77601942,91.92422237,82.36175271,81.7400272,82.98347823,,,,243.7868107,1199,421593,229.2539789,258.3196424,,,,90.08407386,58.29766282,132.9818637,512.1544932,449.4399508,574.8690357,205.6302555,152.6227391,271.0978566,219.122798,202.8540401,235.3915559,,,,49.13608002,73,148567,38.51484308,61.7812436,,,,,,,163.0605205,106.5165457,238.921443,46.76830979,22.42722241,86.00858686,31.85447995,21.33344516,45.7483468,,,,7.242818561,59,8146,5.513569068,9.342708245,,,,,,,,,,,,,4.659042779,2.919797305,7.053846757,,,,,,,0.087,,,0.072,0.101,0.136,,,0.115,0.159,0.087,,,0.073,0.102,241.8,315,130255,,,0.095,13940,,,,0.021777182,2913.808789,133801,,,14.78372088,66,446437,11.43372866,18.80851776,,,,,,,19.81453594,9.501840168,36.43963708,,,,16.13069736,11.9725145,21.26631351,,,,0.288,,,0.274,0.302,0.117292415,10350,88241,0.101803053,0.132781777,0.049735237,1484,29838,0.036628854,0.06284162,0.002804415,422,150477,,,356.5805687,0.898069565,1549.17,1725,,,0.017356268,224,12906,0.006739572,0.027972965,3.427722182,,,,,,3.665524686,2.7815773,2.523653997,3.86422017,3.285392556,,,,,,4.055764013,2.362770692,2.624846101,3.594217715,0.069762885,,,,,2081.95175,,,,,0.84144524,62670,74479,0.766759265,0.916131214,87780,,,80551.23404,95008.76596,,,,108831,86196.2766,131465.7234,54568,41597.44681,67538.55319,77550,65337.23404,89762.76596,93417,88601,98233,,,,,,0.299898737,5627,18763,,,34.38555348,,,,,0.318159034,,87780,,,12.16237561,77,6331,,,3.037548013,31,1020560,2.063866503,4.31155694,,,,,,,17.08306641,10.43478077,26.38341055,,,,1.41274066,0.677464059,2.598080374,,,,10.60609476,81,737410,8.356396349,13.27510915,10.98439132,,,,,,,,,,,,,12.50106393,9.627342507,15.96357955,,,,7.051708005,52,737410,5.266552827,9.247376865,,,,,,,16.72041084,9.1412042,28.05400827,,,,7.037201383,4.928769334,9.74245299,,,,7.446891903,76,1020560,5.867303821,9.320895681,,,,,,,11.10399317,5.912408705,18.98816649,12.56310103,6.27145477,22.47885803,6.922429236,5.121251257,9.151818564,,,,8.773584906,,10600,,,50,43,0.777826584,84997,109275,,,0.701,,,,,90.47319793,,,,,0.647153095,35939,55534,0.63383374,0.660472451,0.153876142,8289,53868,0.138555378,0.169196906,0.924388663,51335,55534,0.91399815,0.934779175,150477,,,,,0.182865156,27517,150477,,,0.1621909,24406,150477,,,0.114781661,17272,150477,,,0.006333194,953,150477,,,0.081653675,12287,150477,,,0.000910438,137,150477,,,0.08807326,13253,150477,,,0.688450727,103596,150477,,,0.026907915,3761,139773,0.0210059,0.03280993,0.522651302,78647,150477,,,0.290444935,43188,148696,, -37,137,37137,NC,Pamlico County,2024,1,13626.02007,275,33118,10573.07219,16678.96794,0,,,,2,,,,2,19553.24792,10943.80443,32250.10888,1,,,,2,13879.48537,10318.96239,17440.00834,,,,,2,,0.157,,,0.133,0.182,3.497071182,,,2.72458188,4.370274855,4.922773537,,,3.877881467,6.037082383,0.087542088,52,594,0.064813224,0.110270951,0,,,,,,,0.165048544,0.093356011,0.236741076,,,,0.071258907,0.046684563,0.095833251,,,,,,,0.175,,,0.141,0.213,0.38,,,0.302,0.462,7.9,0.034715933,0.123,,,0.236,,,0.193,0.283,0.576083415,7072,12276,,,0.152072759,,,0.119934643,0.187311724,0.125,1,8,0.007330353,0.353459145,315.9,39,12344,,,18.25013419,34,1863,12.63874846,25.50273328,,,,,,,,,,,,,16.87116564,10.57306969,25.54314754,,,,,,,0.148292315,1181,7964,0.128036996,0.168547635,0.000324044,4,12344,,,3086,0.000323076,4,12381,,,3095.25,0.001130765,14,12381,,,884.3571429,3112,,,,,,,3526,,3150,0.57,,,,,,,0.66,,0.56,0.55,,,,,,,0.46,,0.56,0.900399222,8796,9769,0.87803423,0.922764214,0.568676717,1358,2388,0.466701212,0.670652222,0.03614239,199,5506,,,0.274,458,,0.173914894,0.374085106,,,,,,,0.45945946,0.353407099,0.56551182,0.350282486,0,0.715664681,0.12716263,0.053124571,0.201200689,5.900945235,121111,20524,4.926614293,6.875276177,0.254208754,453,1782,0.171589449,0.336828059,10.53143228,13,12344,,,142.5313569,90,63144,114.6120425,175.195236,,,,,,,110.7325383,58.96041304,189.3560129,,,,162.1748501,127.7753364,202.9860081,,,,6,,,,,0,,,,,0.124432334,685,5505,0.090703379,0.15816129,0.113011152,0.079547382,0.146474923,0.012715713,0.001912037,0.023519389,0.003451408,0,0.008683565,0.834166288,3672,4402,0.782045235,0.886287342,,,,,,,0.801488834,0.379150272,1,,,,0.774251713,0.741058937,0.807444489,0.351,,4402,0.260595867,0.441404133,74.27188359,,,72.10897062,76.43479656,,,,,,,69.63641616,63.32920013,75.94363218,,,,74.10914309,71.61336146,76.60492472,,,,523.5086249,275,33118,447.8845493,599.1327005,,,,,,,636.9062338,455.0151512,867.28552,,,,542.3986428,450.1290523,634.6682332,,,,121.1827436,10,8252,58.11183587,222.8593801,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.113,,,0.098,0.131,0.163,,,0.141,0.188,0.107,,,0.091,0.124,206.3,23,11148,,,0.123,1510,,,,0.034715933,456.306219,13144,,,76.75003308,29,37785,51.4007017,110.22585,,,,,,,,,,,,,82.07543803,52.0287872,123.1534557,,,,0.346,,,0.331,0.361,0.170696325,1059,6204,0.145675048,0.195717602,0.071734475,134,1868,0.050287667,0.093181284,0.000888458,11,12381,,,1125.545455,0.930892857,130.325,140,,,,,,,,2.916972788,,,,,,,2.477898498,,2.986688742,2.867073509,,,,,,,2.443704557,,3.028726301,0.014104189,,,,,-3960.922,,,,,0.705200077,36480,51730,0.536973513,0.873426641,59845,,,51664.23404,68025.76596,30833,5855.808511,55810.19149,,,,20465,14951.97872,25978.02128,60673,18483.55319,102862.4468,65075,58353.80851,71796.19149,,,,,,0.744470314,1279,1718,,,48.04657493,,,,,0.217695714,,59845,,,13.08900524,5,382,,,,,,,,,,,,,,,,,,,,,,,,,,18.2556763,13,63144,8.347657681,34.65496017,20.58786266,,,,,,,,,,,,,20.96242969,8.427983942,43.19061689,,,,,,,,,,,,,,,,,,,,,,,,,,,22.53622699,20,88746,13.76571292,34.80537478,,,,,,,,,,,,,24.2825272,13.87956239,39.43330288,,,,,,700,,,-888,6,0.722632576,7631,10560,,,0.483,,,,,0.895037961,,,,,0.815789474,4185,5130,0.778276898,0.85330205,0.138076195,656,4751,0.102127952,0.174024437,0.827095517,4243,5130,0.796804196,0.857386837,12381,,,,,0.138114853,1710,12381,,,0.316048784,3913,12381,,,0.174057023,2155,12381,,,0.008157661,101,12381,,,0.007026896,87,12381,,,0.002019223,25,12381,,,0.049672886,615,12381,,,0.741458687,9180,12381,,,0.013184246,158,11984,0.001502179,0.024866312,0.485905823,6016,12381,,,1,12276,12276,, -37,139,37139,NC,Pasquotank County,2024,1,10469.92459,727,112435,9291.402573,11648.4466,0,,,,2,,,,2,13944.49547,11535.50745,16353.48349,,,,,2,9377.961471,7869.831169,10886.09177,,,,,2,,0.154,,,0.131,0.179,3.390900787,,,2.623545073,4.244616996,4.686722196,,,3.679592872,5.803245814,0.094121231,309,3283,0.084132749,0.104109712,0,,,,,,,0.131625442,0.111930426,0.151320457,0.053956835,0.027397794,0.080515875,0.077411901,0.064822202,0.090001599,,,,,,,0.165,,,0.133,0.201,0.374,,,0.296,0.458,7.5,0.10016585,0.109,,,0.229,,,0.187,0.276,0.420306646,17051,40568,,,0.171766031,,,0.136301142,0.211228165,0.151515152,5,33,0.071469852,0.25177508,624.7,255,40821,,,19.28344472,176,9127,16.43449782,22.13239162,,,,,,,18.79228264,14.7813224,23.55628901,18.65136298,9.931065267,31.89439874,18.78649403,14.7514385,23.5847229,,,,30.69053708,15.85824836,53.61019194,0.111913588,3502,31292,0.096424226,0.12740295,0.000563436,23,40821,,,1774.826087,0.000464117,19,40938,,,2154.631579,0.002540427,104,40938,,,393.6346154,3323,,,,,,,5039,,2690,0.48,,,,,,0.38,0.54,,0.47,0.4,,,,,,0.49,0.34,0.2,0.42,0.896981675,24963,27830,0.876939742,0.917023607,0.637873754,6912,10836,0.556782633,0.718964875,0.044542632,746,16748,,,0.228,1931,,0.142212766,0.313787234,,,,,,,0.181483957,0.102968982,0.259998932,0.393903869,0.150962886,0.636844852,0.044240626,0.010085479,0.078395773,4.841955387,122424,25284,4.142936791,5.540973982,0.355560657,3098,8713,0.28904927,0.422072043,11.02373778,45,40821,,,91.81682543,184,200399,78.54992613,105.0837247,,,,,,,82.46442848,62.77574376,106.3731045,,,,109.2665369,89.63430075,128.898773,,,,6.6,,,,,0,,,,,0.154548529,2285,14785,0.127889506,0.181207552,0.141680961,0.114528916,0.168833005,0.004058167,0,0.008607773,0.013527224,0.004108819,0.022945628,0.770426746,14172,18395,0.736718963,0.80413453,,,,,,,0.756524981,0.66927128,0.843778683,,,,0.842770911,0.823685038,0.861856784,0.363,,18395,0.315834476,0.410165524,74.25833242,,,73.3622963,75.15436853,,,,,,,71.63183852,69.92468949,73.33898754,91.36723105,77.17135427,105.5631078,74.96395956,73.82612532,76.1017938,,,,495.3729549,727,112435,457.6212647,533.124645,,,,,,,604.1151725,530.8413921,677.3889529,,,,465.5566015,417.6459645,513.4672385,,,,90.52049283,36,39770,63.39944033,125.3185177,,,,,,,155.3004727,98.44717783,233.0269608,,,,71.45605453,38.04733959,122.1920295,,,,7.228915663,24,3320,4.631702667,10.75605349,,,,,,,,,,,,,,,,,,,,,,0.11,,,0.094,0.127,0.157,,,0.135,0.18,0.11,,,0.093,0.128,309.2,107,34611,,,0.109,4400,,,,0.10016585,4072.843637,40661,,,45.44816018,55,121017,34.23777401,59.15702751,,,,,,,37.1686761,21.24510989,60.35960136,,,,56.42050047,39.72523913,77.76822785,,,,0.359,,,0.346,0.372,0.136961591,3113,22729,0.115514782,0.158408399,0.047237968,425,8997,0.032940096,0.061535841,0.001832039,75,40938,,,545.84,0.780138249,338.58,434,,,,,,,,2.960385135,,,,,,,2.734622126,2.848657771,3.185450861,2.959258861,,,,,,,2.748613954,3.098942326,3.158170782,0.051982905,,,,,-6914.584,,,,,0.75830422,41891,55243,0.659347559,0.85726088,59066,,,52786.85106,65345.14894,,,,53367,24233.89362,82500.10638,58688,50622.80851,66753.19149,31778,10886.42553,52669.57447,69195,62689.46809,75700.53192,,,,,,0.988429752,4784,4840,,,25.46290476,,,,,0.243879728,,59066,,,8.379888268,21,2506,,,10.35374091,29,280092,6.934062786,14.86969904,,,,,,,20.90238586,12.93890629,31.95151715,,,,,,,,,,12.5516692,28,200399,8.199167043,18.39110354,13.97212561,,,,,,,,,,,,,19.04668305,11.79019701,29.11487828,,,,17.9641615,36,200399,12.58187786,24.86997165,,,,,,,23.76093702,13.84162143,38.04356193,,,,15.60950527,9.093112048,24.99233006,,,,12.85291976,36,280092,9.002026983,17.79385862,,,,,,,14.93027561,8.356361923,24.6252191,,,,13.7580419,8.516444781,21.0306285,,,,22.33333333,,3000,,,29,38,0.652146837,19897,30510,,,0.641,,,,,49.73250635,,,,,0.642069771,9902,15422,0.607926127,0.676213414,0.132590005,1974,14888,0.105610409,0.159569602,0.872390092,13454,15422,0.842611946,0.902168238,40938,,,,,0.210342469,8611,40938,,,0.185890859,7610,40938,,,0.348331623,14260,40938,,,0.006864038,281,40938,,,0.014900581,610,40938,,,0.001074796,44,40938,,,0.063828228,2613,40938,,,0.543651375,22256,40938,,,0.011182863,426,38094,0.003000812,0.019364915,0.506009087,20715,40938,,,0.450527509,18277,40568,, -37,141,37141,NC,Pender County,2024,1,9370.044264,1080,177236,8472.609194,10267.47933,0,,,,2,,,,2,17191.48691,13287.46301,21095.5108,,5150.14612,3000.149904,8245.882841,1,8506.941956,7564.447618,9449.436294,,,,,2,,0.143,,,0.12,0.17,3.414011587,,,2.662344483,4.244331619,4.924156551,,,3.94155378,6.013600886,0.086724483,390,4497,0.078498906,0.09495006,0,,,,,,,0.173752311,0.141823859,0.205680763,0.050713154,0.033593285,0.067833023,0.078050335,0.068666045,0.087434624,,,,0.118518519,0.06399437,0.173042667,0.164,,,0.13,0.203,0.344,,,0.275,0.421,7.9,0.05703542,0.111,,,0.22,,,0.177,0.266,0.614770028,37011,60203,,,0.179995181,,,0.145642397,0.21980551,0.239130435,22,92,0.185900165,0.295207956,265.9,167,62815,,,17.36775016,218,12552,15.06221692,19.6732834,,,,,,,24.59893048,18.00950878,32.81152605,38.7374462,29.10076182,50.54396441,12.42163919,10.06798263,14.77529576,,,,20.83333333,10.39992494,37.27658809,0.133289807,6737,50544,0.116608956,0.149970658,0.000334315,21,62815,,,2991.190476,0.000365091,24,65737,,,2739.041667,0.001490789,98,65737,,,670.7857143,1991,,,,,,,2468,,1923,0.48,,,,,,0.58,0.47,0.29,0.48,0.48,,,,,,0.44,0.4,0.3,0.5,0.902253049,39285,43541,0.889089801,0.915416297,0.672194396,9931,14774,0.608583691,0.7358051,0.034541079,1062,30746,,,0.139,1994,,0.088957447,0.189042553,,,,,,,0.343034056,0.225493888,0.460574224,0.326499231,0.189954176,0.463044287,0.07766222,0.051520279,0.103804161,4.269692924,134316,31458,3.836743476,4.702642372,0.203565903,2763,13573,0.163690704,0.243441102,7.959882194,50,62815,,,91.49860042,287,313666,80.91265687,102.084544,,,,,,,112.3822796,83.41229403,148.1620253,,,,93.86852487,81.52044081,106.2166089,,,,6.1,,,,,1,,,,,0.135905305,3100,22810,0.115393327,0.156417283,0.112919724,0.093340971,0.132498478,0.019289785,0.010442634,0.028136937,0.00832968,0.002598841,0.014060519,0.776478186,21642,27872,0.744946973,0.808009399,,,,,,,0.801436634,0.535937059,1,0.661849711,0.52228805,0.801411372,0.689431852,0.635432438,0.743431265,0.54,,27872,0.490156424,0.589843576,75.99780107,,,75.2585594,76.73704273,,,,,,,70.13123324,67.60979649,72.65266998,86.97024278,78.84018913,95.10029644,76.55195785,75.75356552,77.35035018,,,,439.5308504,1080,177236,411.7615388,467.300162,,,,,,,664.5575993,566.6978917,762.4173069,208.9853979,121.7416956,334.6058667,419.9699536,389.5111881,450.4287192,,,,57.27376861,35,61110,39.89327836,79.65394759,,,,,,,206.3185042,117.9288518,335.0483249,,,,38.39508543,21.94610879,62.35121328,,,,7.220216607,32,4432,4.938622814,10.19279153,,,,,,,,,,,,,,,,,,,,,,0.108,,,0.092,0.125,0.159,,,0.137,0.183,0.098,,,0.083,0.114,196.2,104,53014,,,0.111,6660,,,,0.05703542,2978.218507,52217,,,29.91403651,57,190546,22.65659912,38.75710401,,,,,,,,,,,,,33.31875638,24.56662073,44.17583709,,,,0.342,,,0.327,0.358,0.15403283,5649,36674,0.133777511,0.174288149,0.079697698,1160,14555,0.057059401,0.102335996,0.000593273,39,65737,,,1685.564103,0.93,768.18,826,,,,,,,,3.095767641,,,,,,,2.561834902,2.502323524,3.358153856,3.064385936,,,,,,,2.449719932,2.618635278,3.33924893,0.122319743,,,,,-1573.811,,,,,0.747655992,45293,60580,0.679309998,0.816001986,73663,,,66439,80887,,,,79254,33369.74468,125138.2553,51208,41123.23404,61292.76596,44157,32513.76596,55800.23404,79743,74002.40426,85483.59575,,,,,,0.354529617,3663,10332,,,43.11534682,,,,,0.245577834,,73663,,,6.106870229,20,3275,,,5.111916109,22,430367,3.20361061,7.739502422,,,,,,,17.45339151,8.712670158,31.22893854,,,,,,,,,,20.53297141,62,313666,15.63064919,26.48603712,19.76624818,,,,,,,,,,,,,24.72974672,18.52427728,32.34711759,,,,17.53457499,55,313666,13.20944156,22.82365955,,,,,,,,,,,,,18.6045725,13.51811086,24.9757702,,,,21.84182337,94,430367,17.6504166,26.72886019,,,,,,,49.18683062,33.42006502,69.81677985,31.63856108,15.17191982,58.18444029,16.0626195,11.99633253,21.06398845,,,,7.450980392,,5100,,,20,18,0.730575155,34169,46770,,,0.572,,,,,17.53918096,,,,,0.823071631,19143,23258,0.796019199,0.850124064,0.12171532,2756,22643,0.099950322,0.143480319,0.863659816,20087,23258,0.841835955,0.885483678,65737,,,,,0.221838538,14583,65737,,,0.185648874,12204,65737,,,0.124861189,8208,65737,,,0.010313826,678,65737,,,0.008397098,552,65737,,,0.000958364,63,65737,,,0.082875702,5448,65737,,,0.759587447,49933,65737,,,0.011361296,662,58268,0.006284912,0.01643768,0.49497239,32538,65737,,,0.610085876,36729,60203,, -37,143,37143,NC,Perquimans County,2024,1,11137.59072,264,35459,8695.46337,13579.71807,0,,,,2,,,,2,12611.77453,7903.731956,19094.37821,1,,,,2,10796.85788,7950.667729,13643.04804,,,,,2,,0.16,,,0.133,0.188,3.599636373,,,2.791703148,4.48333292,4.927106725,,,3.869028721,6.068177682,0.084249084,69,819,0.065225804,0.103272364,0,,,,,,,0.132275132,0.083974225,0.18057604,,,,0.069491525,0.048972527,0.090010524,,,,,,,0.18,,,0.143,0.217,0.376,,,0.295,0.464,8,0.023066844,0.123,,,0.237,,,0.192,0.285,0.203921569,2652,13005,,,0.152146632,,,0.120022962,0.188121953,0.090909091,1,11,0.004610648,0.283082638,418.9,55,13130,,,24.05498282,56,2328,18.17087551,31.23739605,,,,,,,35.0877193,21.98928688,53.12322869,,,,19.9071002,13.43123691,28.41862335,,,,,,,0.125466368,1177,9381,0.107594028,0.143338709,0.000152323,2,13130,,,6565,7.57002E-05,1,13210,,,13210,0.000605602,8,13210,,,1651.25,2695,,,,,,,4205,,2297,0.53,,,,,,,0.53,,0.53,0.46,,,,,,,0.37,,0.48,0.863858364,8490,9828,0.808324701,0.919392027,0.589878543,1457,2470,0.44718698,0.732570106,0.044815113,223,4976,,,0.23,553,,0.139446809,0.320553192,,,,,,,0.444055944,0.299307115,0.588804773,,,,0.077261307,0.012406899,0.142115714,4.451159466,112098,25184,3.591440228,5.310878704,0.351775392,852,2422,0.223598352,0.479952432,9.900990099,13,13130,,,95.30049437,64,67156,73.39299325,121.6966037,,,,,,,93.53287012,51.13529046,156.932263,,,,98.61325116,72.70962676,130.7468643,,,,6.5,,,,,0,,,,,0.128292269,755,5885,0.094080359,0.162504178,0.122117848,0.085008257,0.15922744,0.006796941,0,0.015385862,0.004248088,0,0.013035256,0.82857713,4152,5011,0.781893739,0.875260522,,,,,,,,,,,,,0.759925269,0.663019774,0.856830763,0.486,,5011,0.342917059,0.629082941,75.75446474,,,73.8924888,77.61644069,,,,,,,73.71778281,69.8619105,77.57365513,,,,76.00476789,73.82617702,78.18335876,,,,465.586777,264,35459,400.3859276,530.7876265,,,,,,,546.9384255,408.4797767,717.2369785,,,,455.4399533,378.8425729,532.0373338,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.116,,,0.1,0.136,0.167,,,0.144,0.194,0.106,,,0.091,0.125,165.9,19,11454,,,0.123,1600,,,,0.023066844,310.3182491,13453,,,42.22553403,17,40260,24.59792963,67.60717043,,,,,,,,,,,,,47.891082,26.18250018,80.35309794,,,,0.334,,,0.32,0.348,0.145108151,1013,6981,0.122469853,0.167746449,0.069776715,175,2508,0.048329906,0.091223523,0.000529902,7,13210,,,1887.142857,0.875,88.375,101,,,,,,,,3.16139562,,,,,,,2.863283942,,3.357472192,3.122016822,,,,,,,2.800633835,,3.295739966,0.005459551,,,,,-6449.842,,,,,0.805608767,46681,57945,0.59002173,1.021195804,60665,,,53130.02128,68199.97872,,,,,,,32824,21456,44192,,,,71582,57568.89362,85595.10638,,,,,,0.431845597,716,1658,,,28.6927052,,,,,0.28276601,,60665,,,10.47120419,6,573,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.03378012,16,93931,9.736277112,27.66179174,,,,,,,,,,,,,16.17837393,8.076185974,28.94757988,,,,35.55555556,,900,,,18,14,0.688817303,7484,10865,,,0.599,,,,,10.31848411,,,,,0.765984195,4265,5568,0.716297478,0.815670912,0.126939615,679,5349,0.087473167,0.166406063,0.808908046,4504,5568,0.766802286,0.851013806,13210,,,,,0.184935655,2443,13210,,,0.282740348,3735,13210,,,0.211430734,2793,13210,,,0.005374716,71,13210,,,0.006434519,85,13210,,,0.000378501,5,13210,,,0.035957608,475,13210,,,0.723618471,9559,13210,,,0.001840294,23,12498,0,0.00971967,0.520968963,6882,13210,,,1,13005,13005,, -37,145,37145,NC,Person County,2024,1,9543.911615,784,108882,8417.819418,10670.00381,0,,,,2,,,,2,11915.72265,9531.772744,14299.67255,,,,,2,8904.092862,7554.747385,10253.43834,,,,,2,,0.169,,,0.143,0.196,3.634561822,,,2.864594175,4.489771632,5.019197786,,,4.002703116,6.120034588,0.108769545,320,2942,0.097518745,0.120020345,0,,,,,,,0.147129187,0.123116322,0.171142051,0.106837607,0.067257639,0.146417574,0.091690544,0.078149956,0.105231133,,,,,,,0.187,,,0.149,0.227,0.392,,,0.313,0.474,7.5,0.050863049,0.134,,,0.246,,,0.2,0.297,0.443128629,17325,39097,,,0.159053323,,,0.126031907,0.196061751,0.193548387,6,31,0.104538512,0.296792565,661.9,259,39127,,,25.92105263,197,7600,22.30132751,29.54077776,,,,,,,38.02281369,30.14972652,47.32268297,47.61904762,31.10634289,69.77293788,17.2972973,13.71568099,21.52798378,,,,37.73584906,18.0958064,69.39756997,0.121504497,3715,30575,0.104823646,0.138185348,0.000357809,14,39127,,,2794.785714,0.000431626,17,39386,,,2316.823529,0.001015589,40,39386,,,984.65,2782,,,,,,,3567,,2608,0.47,,,,,,,0.44,,0.47,0.53,,,,,,,0.44,0.47,0.55,0.884340365,24735,27970,0.861029462,0.907651267,0.628072153,5571,8870,0.545533249,0.710611058,0.037793016,711,18813,,,0.203,1611,,0.130319149,0.275680851,0.939759036,0.551748766,1,,,,0.469287469,0.333210851,0.605364087,0.772857143,0.670154116,0.87556017,0.137529138,0.074791535,0.20026674,4.775673349,116493,24393,4.135405662,5.415941035,0.317525517,2551,8034,0.248634706,0.386416327,14.31236742,56,39127,,,106.8792771,211,197419,92.45784624,121.3007079,,,,,,,93.69920643,69.31918874,123.87532,,,,119.7145269,100.9282541,138.5007998,,,,8,,,,,0,,,,,0.134942742,2180,16155,0.106958707,0.162926778,0.116209476,0.089853457,0.142565495,0.019127205,0.007259958,0.030994452,0.000866605,0,0.002244156,0.793019083,14586,18393,0.760819093,0.825219074,,,,,,,0.677538009,0.559689894,0.795386124,,,,0.776121289,0.715625409,0.836617169,0.499,,18393,0.437583375,0.560416625,75.56726004,,,74.69160724,76.44291285,,,,,,,72.75371316,71.0815697,74.42585663,,,,76.34494096,75.27951438,77.41036754,,,,480.0965188,784,108882,443.6617434,516.5312942,,,,,,,585.9250918,508.4827671,663.3674164,,,,456.3662702,412.9430339,499.7895064,,,,50.35951095,18,35743,29.84623781,79.5897386,,,,,,,,,,,,,,,,,,,7.76240297,23,2963,4.920697616,11.64741576,,,,,,,,,,,,,,,,,,,,,,0.12,,,0.102,0.138,0.17,,,0.146,0.195,0.114,,,0.096,0.132,298.1,100,33551,,,0.134,5230,,,,0.050863049,2007.259373,39464,,,26.15106882,31,118542,17.7683825,37.11935475,,,,,,,,,,,,,30.7341623,19.69195771,45.7299973,,,,0.339,,,0.326,0.353,0.145677601,3313,22742,0.124230792,0.167124409,0.05364495,443,8258,0.036964099,0.070325801,0.001142538,45,39386,,,875.2444444,0.864545455,399.42,462,,,,,,,,3.113561111,,,,,,,2.503684773,3.102044637,3.465507427,3.03765042,,,,,,,2.466152703,2.937283062,3.384666594,0.060105644,,,,,-4912.208,,,,,0.814952083,46176,56661,0.689577231,0.940326936,61302,,,53724.12766,68879.87234,23929,23257,24601,41012,20637.53192,61386.46809,34782,26723.95745,42840.04255,36979,3766.234043,70191.76596,75891,69828.70213,81953.29787,,,,,,0.722660414,3390,4691,,,27.96344658,,,,,0.26809892,,61302,,,8.687700046,19,2187,,,7.609743371,21,275962,4.710551085,11.63230109,,,,,,,16.39590649,8.472004138,28.64034903,,,,,,,,,,16.13880686,36,197419,10.96553626,22.9077481,18.23532689,,,,,,,,,,,,,19.20100526,12.54273412,28.13392149,,,,24.31376919,48,197419,17.92705404,32.23653052,,,,,,,24.85897313,13.23635623,42.50960114,,,,26.85902847,18.70829745,37.3544067,,,,17.75606786,49,275962,13.13603676,23.47446337,,,,,,,15.02958095,7.502712658,26.89207191,,,,18.62085207,12.89548137,26.02077435,,,,17.14285714,,2800,,,24,24,0.717013264,21894,30535,,,0.645,,,,,29.4432384,,,,,0.776194312,12527,16139,0.750964663,0.80142396,0.14222677,2224,15637,0.111718795,0.172734745,0.845653386,13648,16139,0.814463648,0.876843125,39386,,,,,0.2040065,8035,39386,,,0.210963286,8309,39386,,,0.259381506,10216,39386,,,0.009800437,386,39386,,,0.004417813,174,39386,,,0.000406236,16,39386,,,0.054334027,2140,39386,,,0.654826588,25791,39386,,,0.004103672,152,37040,0,0.00901458,0.51518306,20291,39386,,,0.757014605,29597,39097,, -37,147,37147,NC,Pitt County,2024,1,9740.996246,2511,506762,9184.958496,10297.034,0,,,,2,,,,2,13547.35833,12467.20039,14627.51626,,6528.757787,4944.817391,8458.762981,,7736.808911,7063.080807,8410.537014,,,,,2,,0.166,,,0.142,0.191,3.602829316,,,2.866826016,4.420379492,4.995586089,,,4.063077655,5.99897494,0.11474953,1647,14353,0.109535263,0.119963797,0,,,,0.086538462,0.055340337,0.117736586,0.169014085,0.159668089,0.17836008,0.071014493,0.057462771,0.084566215,0.069874753,0.063460233,0.076289273,,,,0.123684211,0.090582402,0.156786019,0.167,,,0.135,0.201,0.408,,,0.342,0.477,7.2,0.084729519,0.131,,,0.243,,,0.2,0.289,0.734538278,125050,170243,,,0.159251724,,,0.127247652,0.194766303,0.25203252,31,123,0.206045397,0.299830328,1073.9,1849,172169,,,14.73286262,795,53961,13.70872187,15.75700337,,,,,,,28.50840915,26.05096429,30.96585402,23.61604876,19.06119927,28.93125521,4.338617109,3.584036682,5.093197535,,,,34.1997264,25.38369613,45.08807569,0.125932989,17699,140543,0.110443627,0.14142235,0.001138416,196,172169,,,878.4132653,0.001117885,194,173542,,,894.5463918,0.004661696,809,173542,,,214.5142151,4066,,,,,,,5263,3816,3552,0.5,,,,,,0.44,0.51,0.26,0.5,0.49,,,,,,0.46,0.4,0.39,0.52,0.902046201,95045,105366,0.890845068,0.913247334,0.715049569,31159,43576,0.676523645,0.753575492,0.040808686,3597,88143,,,0.229,8259,,0.169425532,0.288574468,0.839506173,0.340594643,1,,,,0.365945245,0.310856684,0.421033806,0.29319875,0.2162322,0.370165301,0.083129925,0.056732503,0.109527348,5.018159476,110259,21972,4.512144732,5.52417422,0.388825415,13953,35885,0.34062012,0.437030709,10.39676132,179,172169,,,82.25384475,736,894791,76.31128754,88.19640196,,,,,,,82.84215237,72.79166339,92.89264135,44.46648766,29.04698605,65.15370711,90.48874275,82.0045621,98.97292339,,,,6.7,,,,,0,,,,,0.187451369,13250,70685,0.171331875,0.203570863,0.163517023,0.146436689,0.180597356,0.027304237,0.02036137,0.034247104,0.007710264,0.004266747,0.011153781,0.78014485,62584,80221,0.758666752,0.801622948,,,,0.772226926,0.622408522,0.922045331,0.768819356,0.738318682,0.79932003,0.714259017,0.616710998,0.811807037,0.817252436,0.789680978,0.844823894,0.235,,80221,0.213159639,0.256840361,76.01269665,,,75.53521518,76.49017812,,,,82.24598842,78.50403544,85.98794141,72.095579,71.28681486,72.90434314,91.09008004,77.77402127,104.4061388,78.02956714,77.42189324,78.63724104,,,,448.593894,2511,506762,430.5129855,466.6748025,,,,,,,593.6476426,558.8992802,628.3960051,285.5508081,214.5145555,372.5818632,381.6600551,359.2756401,404.04447,,,,80.93015727,150,185345,67.97863472,93.88167983,,,,,,,145.7971177,117.7758138,173.8184216,61.82061718,31.94361501,107.9881771,35.89117795,24.21562705,51.23688823,,,,10.96929976,159,14495,9.264252527,12.67434699,,,,,,,18.59570375,15.21163096,21.97977654,,,,4.359761021,2.873109984,6.343223389,,,,,,,0.115,,,0.099,0.132,0.165,,,0.142,0.188,0.118,,,0.102,0.137,464.3,680,146470,,,0.131,22320,,,,0.084729519,14247.09913,168148,,,30.97968591,166,535835,26.26688561,35.69248621,,,,,,,26.88356255,20.01657811,35.34691992,,,,37.58691975,30.4979858,44.67585371,,,,0.376,,,0.362,0.39,0.15201514,15985,105154,0.131759821,0.172270459,0.051345267,1916,37316,0.035855906,0.066834629,0.002351016,408,173542,,,425.3480392,0.85,1589.5,1870,,,0.03324937,396,11910,0.016955347,0.049543394,2.936524183,,,,,,3.681989075,2.570622324,2.784198177,3.459038231,2.900506275,,,,,,4.283721759,2.472349566,2.906209913,3.463238321,0.105348935,,,,,-7936.6,,,,,0.825356907,43649,52885,0.762413316,0.888300497,57319,,,53155.93617,61482.06383,,,,74107,48983.25532,99230.74468,42615,38107.59575,47122.40426,46902,40160.55319,53643.44681,66543,62153.55319,70932.44681,,,,,,0.660837308,16211,24531,,,35.07985288,,,,,0.337375041,,57319,,,8.591243143,83,9661,,,7.292525642,91,1247853,5.871486745,8.953605506,,,,,,,15.57389815,12.0937413,19.74362688,,,,2.505981188,1.45982639,4.012318639,,,,11.10730672,97,894791,8.942910508,13.63731134,10.8405203,,,,,,,7.685939026,4.872226035,11.5326823,,,,12.91085797,9.752723357,16.76582298,,,,12.51688942,112,894791,10.19872906,14.83504978,,,,,,,17.77456143,13.42671269,23.08174648,,,,9.525130815,6.973592902,12.70518969,,,,14.18436306,177,1247853,12.09468551,16.27404061,,,,,,,17.40612146,13.71404396,21.78635657,21.24362691,12.37519553,34.01310459,12.08767396,9.613685822,15.00399057,,,,31.64179105,,13400,,,177,247,0.642077865,87573,136390,,,0.587,,,,,91.67484547,,,,,0.512244813,36960,72153,0.498749277,0.525740349,0.163760108,11381,69498,0.146413406,0.181106811,0.85509958,61698,72153,0.841575376,0.868623784,173542,,,,,0.210721324,36569,173542,,,0.149070542,25870,173542,,,0.356985629,61952,173542,,,0.005814155,1009,173542,,,0.021239815,3686,173542,,,0.001492434,259,173542,,,0.070622674,12256,173542,,,0.527082781,91471,173542,,,0.014335033,2317,161632,0.010872178,0.017797888,0.529537518,91897,173542,,,0.26851618,45713,170243,, -37,149,37149,NC,Polk County,2024,1,9291.422531,336,52173,7487.186565,11095.6585,0,,,,2,,,,2,,,,2,,,,2,9484.82365,7517.641059,11452.00624,,,,,2,,0.126,,,0.105,0.152,3.117459555,,,2.363406604,3.916916185,4.57849858,,,3.581751694,5.663409335,0.061507937,62,1008,0.046675699,0.076340175,0,,,,,,,,,,,,,0.0628707,0.046484955,0.079256445,,,,,,,0.149,,,0.113,0.186,0.317,,,0.245,0.395,8.1,0.016131748,0.122,,,0.193,,,0.15,0.235,0.614755795,11882,19328,,,0.157242636,,,0.125248383,0.193735203,0.111111111,2,18,0.022704408,0.253963321,167.9,33,19656,,,17.1902786,58,3374,13.05329925,22.22242138,,,,,,,,,,30.58823529,16.28694704,52.30681393,15.73292402,11.29021791,21.34348794,,,,,,,0.130775547,1752,13397,0.112903206,0.148647887,0.000763126,15,19656,,,1310.4,0.000350245,7,19986,,,2855.142857,0.001951366,39,19986,,,512.4615385,2131,,,,,,,3180,,2095,0.45,,,,,,,0.2,,0.46,0.45,,,,,,,0.39,0.31,0.45,0.927610966,14211,15320,0.91022367,0.944998262,0.650605805,2309,3549,0.558241588,0.742970021,0.038227443,358,9365,,,0.195,591,,0.127085106,0.262914894,,,,,,,0.435233161,0.088005989,0.782460332,0.121287129,0,0.35403938,0.094216418,0.047948763,0.140484073,4.666938776,120057,25725,3.849297463,5.484580088,0.21353826,653,3058,0.143322736,0.283753784,18.82376882,37,19656,,,118.932725,122,102579,97.82810556,140.0373445,,,,,,,,,,,,,130.1359197,106.5550225,153.716817,,,,7.8,,,,,0,,,,,0.107567568,995,9250,0.084837645,0.13029749,0.082653616,0.061948489,0.103358744,0.02,0.008341059,0.031658941,0.008648649,0.00328368,0.014013618,0.771514063,6446,8355,0.72913083,0.813897296,,,,,,,,,,,,,0.762619598,0.686595283,0.838643912,0.467,,8355,0.402725802,0.531274198,77.79951005,,,76.40010662,79.19891348,,,,,,,,,,,,,77.71245025,76.20663465,79.21826586,,,,393.196787,336,52173,342.3877132,444.0058608,,,,,,,,,,,,,398.2538426,343.0669454,453.4407397,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.1,,,0.085,0.117,0.153,,,0.129,0.176,0.087,,,0.073,0.102,148.1,26,17561,,,0.122,2380,,,,0.016131748,330.862158,20510,,,21.16919069,13,61410,11.27170248,36.19996079,,,,,,,,,,,,,22.29695832,11.52116373,38.94829902,,,,0.32,,,0.302,0.337,0.149510042,1541,10307,0.128063233,0.17095685,0.070422535,230,3266,0.048975727,0.091869344,0.000850595,17,19986,,,1175.647059,0.925,171.125,185,,,,,,,,3.49983891,,,,,,,,3.197533502,3.543144295,3.464239461,,,,,,,,3.398186197,3.455850077,0.030269121,,,,,1447.675,,,,,0.776824616,40116,51641,0.671409972,0.88223926,61585,,,53254.10638,69915.89362,,,,75500,8637.191489,142362.8085,34952,12991.65957,56912.34043,50921,17007.6383,84834.3617,63084,57611.48936,68556.51064,,,,,,0.649131047,1382,2129,,,38.86219345,,,,,0.240772916,,61585,,,6.605019815,5,757,,,,,,,,,,,,,,,,,,,,,,,,,,27.22026506,25,102579,16.8497731,41.60906664,24.37146005,,,,,,,,,,,,,32.39683744,19.78882995,50.03428788,,,,21.44688484,22,102579,13.44064855,32.47084139,,,,,,,,,,,,,24.470002,15.33521998,37.0478771,,,,12.56290175,18,143279,7.445571773,19.85480096,,,,,,,,,,,,,13.53007656,7.881768198,21.66296326,,,,17.5,,1200,,,14,7,0.731675548,12358,16890,,,0.553,,,,,19.85185393,,,,,0.765367053,6537,8541,0.7340676,0.796666506,0.10819341,857,7921,0.082393279,0.133993541,0.808102096,6902,8541,0.779141055,0.837063137,19986,,,,,0.154508156,3088,19986,,,0.323276293,6461,19986,,,0.037626338,752,19986,,,0.007455219,149,19986,,,0.011758231,235,19986,,,0.000150105,3,19986,,,0.059841889,1196,19986,,,0.871510057,17418,19986,,,0.009226667,173,18750,0.001660578,0.016792755,0.523316321,10459,19986,,,0.914165977,17669,19328,, -37,151,37151,NC,Randolph County,2024,1,11624.21549,2789,401381,10953.72774,12294.70325,0,,,,2,,,,2,16494.14636,13177.69391,19810.59882,,6460.906567,5104.543669,7817.269466,,12060.50297,11272.03637,12848.96957,,,,,2,,0.169,,,0.143,0.2,3.707030747,,,2.913393265,4.598744092,5.016868479,,,4.008042337,6.12995722,0.091126217,992,10886,0.085719977,0.096532458,0,,,,0.104,0.066159511,0.141840489,0.155615697,0.129480208,0.181751186,0.079113924,0.067865468,0.09036238,0.089135374,0.082679275,0.095591472,,,,,,,0.193,,,0.155,0.239,0.381,,,0.31,0.457,6.9,0.102550892,0.135,,,0.249,,,0.205,0.3,0.522525335,75333,144171,,,0.168208649,,,0.13437293,0.204641225,0.2265625,29,128,0.18187321,0.273659082,376.1,546,145172,,,22.12304136,689,31144,20.47111268,23.77497003,,,,,,,27.98982188,21.08576436,36.4326005,33.06581059,28.55035438,37.5812668,18.527139,16.70692314,20.34735486,,,,21.78899083,13.11839583,34.02620822,0.161417691,19010,117769,0.14473684,0.178098542,0.00042708,62,145172,,,2341.483871,0.000383449,56,146043,,,2607.910714,0.001205125,176,146043,,,829.7897727,3463,,,,,,,2364,,3522,0.39,,,,,,0.19,0.34,0.34,0.4,0.49,,,,,,0.41,0.44,0.36,0.49,0.839833313,84242,100308,0.82391583,0.855750796,0.533323508,18093,33925,0.495414313,0.571232702,0.036416796,2379,65327,,,0.176,5545,,0.123574468,0.228425532,0.159574468,0,0.841613914,0.215648855,0.028801371,0.402496339,0.492471769,0.316745005,0.668198533,0.278705331,0.213615048,0.343795614,0.150407496,0.115568432,0.18524656,4.310837379,107439,24923,3.965552044,4.656122715,0.220268582,7053,32020,0.186570202,0.253966962,10.60810625,154,145172,,,124.0227824,893,720029,115.8882646,132.1573002,,,,,,,124.4638055,94.01862108,161.6266042,48.51901483,34.96823822,65.58361302,139.2920769,129.5478439,149.0363098,,,,9,,,,,1,,,,,0.13171333,7480,56790,0.116894523,0.146532137,0.095696429,0.08316504,0.108227817,0.024740271,0.018504925,0.030975617,0.017784821,0.008589483,0.02698016,0.804979,52706,65475,0.784672487,0.825285512,,,,,,,0.828012118,0.749365082,0.906659155,0.751309252,0.687674708,0.814943796,0.78763124,0.764285722,0.810976758,0.326,,65475,0.300004771,0.351995229,73.69497208,,,73.20353167,74.18641248,,,,82.01364773,75.39339973,88.63389572,69.73261123,67.59009987,71.87512258,82.34203377,78.64606379,86.03800375,73.3187015,72.75859587,73.87880713,,,,525.5400234,2789,401381,504.9400075,546.1400393,,,,,,,661.3415497,567.375008,755.3080913,282.3959235,218.938697,345.85315,544.8034348,521.3425781,568.2642915,,,,68.59244069,97,141415,55.62384865,83.67696067,,,,,,,175.882159,100.5318507,285.6216071,52.86809411,30.21868376,85.85447263,64.1087284,48.92171357,82.52064131,,,,8.749309265,95,10858,7.078713673,10.69557687,,,,,,,,,,,,,8.861261738,6.867356134,11.25348917,,,,,,,0.122,,,0.104,0.143,0.173,,,0.149,0.199,0.107,,,0.092,0.125,192,236,122892,,,0.135,19360,,,,0.102550892,14536.79405,141752,,,53.53072017,232,433396,46.64237082,60.41906953,,,,,,,40.30485124,20.12003652,72.11651221,,,,61.67860701,53.29638884,70.06082519,,,,0.332,,,0.318,0.346,0.200634095,17276,86107,0.179187286,0.222080903,0.05818443,1944,33411,0.042695069,0.073673792,0.000828523,121,146043,,,1206.966942,0.872890205,1621.83,1858,,,0.125330513,948,7564,0.077691707,0.172969319,3.054842296,,,,,,3.202945925,2.748954918,2.808712382,3.184925516,3.162264566,,,,,,3.55133863,2.702980102,3.053080769,3.254675015,0.124782929,,,,,-5196.448,,,,,0.806428788,39890,49465,0.748601641,0.864255935,58037,,,51622.02128,64451.97872,34038,10320.21277,57755.78723,55705,35891.7234,75518.2766,33646,29776.04255,37515.95745,54025,50068.06383,57981.93617,58526,56132.29787,60919.70213,,,,,,0.489669211,9622,19650,,,48.37134505,,,,,0.282681738,,58037,,,5.21609538,42,8052,,,3.875799508,39,1006244,2.756072333,5.298345517,,,,,,,,,,,,,3.031780641,1.942519063,4.511049273,,,,18.35461859,138,720029,15.16171173,21.54752544,19.16589471,,,,,,,,,,,,,21.01833285,17.10586866,24.93079704,,,,15.69381233,113,720029,12.80016697,18.5874577,,,,,,,28.89338342,15.38450979,49.4085656,,,,16.6795608,13.47878296,20.41155818,,,,21.06844861,212,1006244,18.2323541,23.90454311,,,,,,,28.92542062,17.14303746,45.71463509,13.48094973,7.705527572,21.89221778,22.10673384,18.83135432,25.38211336,,,,11.15044248,,11300,,,69,57,0.698780023,73316,104920,,,0.635,,,,,37.37348092,,,,,0.737771496,41237,55894,0.722440574,0.753102418,0.103677382,5602,54033,0.090815807,0.116538957,0.855100726,47795,55894,0.840984546,0.869216907,146043,,,,,0.219531234,32061,146043,,,0.185965777,27159,146043,,,0.065788843,9608,146043,,,0.012160802,1776,146043,,,0.016734797,2444,146043,,,0.001033942,151,146043,,,0.130475271,19055,146043,,,0.765089734,111736,146043,,,0.02580929,3520,136385,0.021265458,0.030353122,0.503714659,73564,146043,,,0.60184087,86768,144171,, -37,153,37153,NC,Richmond County,2024,1,15219.4692,1119,122267,13841.55147,16597.38692,0,,,,2,,,,2,18732.96687,16020.47595,21445.4578,,,,,2,14785.28037,12935.63718,16634.92356,,,,,2,,0.208,,,0.178,0.241,4.107448991,,,3.268242719,5.002748094,5.372168139,,,4.301618594,6.520728275,0.121134021,470,3880,0.110867233,0.131400809,0,0.104,0.050485467,0.157514533,,,,0.166189112,0.146661532,0.185716692,0.06741573,0.041368849,0.093462612,0.09726776,0.083691052,0.110844467,,,,0.13986014,0.083011567,0.196708713,0.217,,,0.177,0.259,0.402,,,0.323,0.484,6.2,0.111924522,0.166,,,0.287,,,0.239,0.341,0.329879383,14167,42946,,,0.149827045,,,0.11826263,0.186221805,0.222222222,10,45,0.146097053,0.305418946,924.5,395,42724,,,38.84419983,367,9448,34.87000441,42.81839525,52.43445693,28.66640553,87.97610907,,,,49.0797546,41.47476784,56.68474137,41.62102957,29.45351768,57.12811492,28.50252138,23.60284185,33.40220091,,,,65.93406593,42.24520015,98.10466372,0.131428741,4421,33638,0.113556401,0.149301082,0.000210654,9,42724,,,4747.111111,0.000280518,12,42778,,,3564.833333,0.002501286,107,42778,,,399.7943925,3835,,,,,,,5542,,3476,0.5,,,,,,,0.49,0.43,0.5,0.41,,,,,0.19,0.65,0.35,0.29,0.43,0.827066644,24262,29335,0.801042143,0.853091145,0.533123028,5577,10461,0.456546073,0.609699983,0.050471698,856,16960,,,0.306,2996,,0.199957447,0.412042553,0.681818182,0.441029915,0.922606449,,,,0.548833189,0.458612131,0.639054248,0.217566479,0.100143471,0.334989486,0.292931581,0.203377251,0.382485912,5.734757061,90764,15827,4.660505455,6.809008667,0.457596644,4581,10011,0.380401886,0.534791401,15.91611272,68,42724,,,115.0877826,255,221570,100.9619127,129.2136526,,,,,,,106.7143516,83.79371863,133.9700962,,,,133.8934945,113.5859548,154.2010343,,,,8.2,,,,,1,,,,,0.162912088,2965,18200,0.135182318,0.190641858,0.146067416,0.11953939,0.172595441,0.021978022,0.011319675,0.032636369,0.005769231,0.001885191,0.009653271,0.845710084,14953,17681,0.811745157,0.879675011,,,,,,,0.795240456,0.708783372,0.88169754,,,,0.86029904,0.819425218,0.901172863,0.342,,17681,0.293821969,0.390178031,70.45684814,,,69.54186214,71.37183413,,,,,,,67.97064877,66.25682662,69.68447093,89.45533935,76.12736966,102.783309,70.67824367,69.47327998,71.88320736,,,,699.9632586,1119,122267,656.6389941,743.2875231,,,,,,,843.5687154,758.0189645,929.1184663,,,,687.0628313,630.4836666,743.641996,,,,115.5042204,52,45020,86.26407641,151.4684179,,,,,,,185.541051,123.2906809,268.1584782,,,,101.1853137,62.63530396,154.6725004,,,,11.01998975,43,3902,7.975221223,14.84385387,,,,,,,20.05730659,13.32793457,28.98839251,,,,,,,,,,,,,0.139,,,0.119,0.16,0.184,,,0.159,0.21,0.137,,,0.117,0.158,411.8,147,35693,,,0.166,7180,,,,0.111924522,5220.047779,46639,,,53.07654396,70,131885,41.37576988,67.05902023,,,,,,,38.68004352,22.10898695,62.81396736,,,,66.46320787,49.16984707,87.86788551,,,,0.353,,,0.34,0.366,0.166993205,4006,23989,0.143163418,0.190822993,0.044584731,452,10138,0.031478348,0.057691114,0.000911684,39,42778,,,1096.871795,0.83,468.12,564,,,,,,,,2.842186966,,,,,,,2.474164454,2.729599698,3.173765657,2.792770436,,,,,,,2.367391359,3.034379324,3.125037272,0.028861145,,,,,-15241.53,,,,,0.886688048,39259,44276,0.714696401,1.058679694,44383,,,38717.46809,50048.53192,27679,2854.319149,52503.68085,,,,30383,24218.23404,36547.76596,36462,17777.06383,55146.93617,51138,42231.61702,60044.38298,,,,,,0.985903084,6714,6810,,,26.05484031,,,,,0.309194962,,44383,,,8.556547619,23,2688,,,13.46386875,42,311946,9.703572327,18.19923922,,,,,,,25.66787819,16.6108974,37.89085166,,,,8.495070028,4.754626207,14.01132612,,,,9.806856854,24,221570,6.145904979,14.84769913,10.83179131,,,,,,,,,,,,,14.15598524,8.389734015,22.3725597,,,,20.3096087,45,221570,14.81396795,27.17585436,,,,,,,28.84171666,17.61726982,44.54369218,,,,19.24217886,12.32882707,28.63083687,,,,21.47807633,67,311946,16.64521415,27.27639772,,,,,,,24.64116306,15.78805813,36.66409741,,,,21.52084407,15.22943012,29.5390399,,,,23.33333333,,3600,,,49,35,0.613110881,20763,33865,,,0.524,,,,,43.76565296,,,,,0.652152966,10829,16605,0.63069512,0.673610812,0.167369809,2539,15170,0.135578713,0.199160905,0.796446853,13225,16605,0.76792158,0.824972127,42778,,,,,0.233063724,9970,42778,,,0.183622423,7855,42778,,,0.313993174,13432,42778,,,0.033007621,1412,42778,,,0.011103838,475,42778,,,0.001799991,77,42778,,,0.076885315,3289,42778,,,0.549230913,23495,42778,,,0.010302164,418,40574,0.004371205,0.016233123,0.505166207,21610,42778,,,0.445047269,19113,42946,, -37,155,37155,NC,Robeson County,2024,1,17288.83633,3131,354363,16437.37388,18140.29879,0,18065.23328,16721.66902,19408.79753,,,,,2,20335.33612,18366.10909,22304.56315,,9607.437775,7543.905063,12061.25833,,16251.05337,14531.55205,17970.55469,,,,,2,,0.26,,,0.227,0.294,4.813919743,,,3.995235257,5.724796939,5.282196428,,,4.407670453,6.222698703,0.118657675,1478,12456,0.112978477,0.124336873,0,0.125473844,0.116535302,0.134412386,,,,0.157389635,0.143404919,0.171374352,0.076690212,0.06497506,0.088405364,0.093023256,0.080745169,0.105301342,,,,0.135977337,0.100220051,0.171734623,0.265,,,0.226,0.307,0.446,,,0.39,0.502,6.5,0.054142186,0.18,,,0.307,,,0.264,0.352,0.422183129,49197,116530,,,0.145798348,,,0.118451719,0.176361283,0.32421875,83,256,0.293038846,0.355585195,1088.3,1266,116328,,,36.8851232,1232,33401,34.82543275,38.94481365,43.9333862,40.27494679,47.59182562,,,,30.73089701,26.98822795,34.47356607,48.95104895,42.21709635,55.68500155,23.35678994,19.69151188,27.022068,,,,43.67816092,33.08141254,56.59012368,0.168682129,13949,82694,0.153192768,0.184171491,0.000507187,59,116328,,,1971.661017,0.000317153,37,116663,,,3153.054054,0.002742943,320,116663,,,364.571875,5296,,,,,6132,3437,5874,1248,4891,0.43,,,,,0.42,0.41,0.47,0.28,0.42,0.37,,,,,0.3,0.41,0.32,0.3,0.41,0.783501351,59456,75885,0.773267648,0.793735053,0.477462497,13495,28264,0.446592497,0.508332496,0.054918816,2645,48162,,,0.35,10165,,0.290425532,0.409574468,0.348811068,0.310189351,0.387432785,0.371900826,0,0.745365291,0.503052503,0.457448751,0.548656256,0.462333271,0.406411152,0.51825539,0.204752387,0.155645481,0.253859293,5.738313996,85564,14911,5.373562996,6.103064997,0.435945742,12727,29194,0.400857296,0.471034189,12.46475483,145,116328,,,154.9761533,994,641389,145.3416849,164.6106217,186.8600914,170.1780533,203.5421295,,,,134.695176,115.9805318,153.4098202,61.49011034,43.06691733,85.12823163,168.7292657,148.4521738,189.0063575,,,,7.8,,,,,0,,,,,0.153661726,7050,45880,0.142955625,0.164367828,0.119963744,0.109105437,0.13082205,0.038469922,0.032459119,0.044480724,0.006429817,0.004021823,0.008837811,0.852892064,36775,43118,0.835451454,0.870332673,0.883777597,0.855494683,0.912060512,,,,0.80744898,0.712481046,0.902416913,0.759088286,0.698367238,0.819809334,0.877892814,0.841847222,0.913938405,0.315,,43118,0.29255062,0.33744938,69.33240047,,,68.78645985,69.87834108,68.45829452,67.60855222,69.30803682,,,,67.37488854,66.18437116,68.56540593,82.65604461,75.85040184,89.46168738,70.31650371,69.24166636,71.39134106,,,,744.8953604,3131,354363,717.7286059,772.062115,772.7012228,729.9017657,815.5006799,,,,850.3693065,789.5982562,911.1403569,366.6437183,282.9678813,467.3175166,718.5400384,665.7499444,771.3301324,,,,101.2534479,145,143205,84.77251117,117.7343845,119.1400256,92.14288719,151.5753244,,,,140.593047,102.1551232,188.7396034,68.59540814,39.95935306,109.8278934,58.83836261,32.16748036,98.72077466,,,,9.725261366,120,12339,7.985191324,11.46533141,9.624457445,7.166040732,12.65438411,,,,14.85714286,10.56488095,20.31020338,,,,,,,,,,,,,0.163,,,0.143,0.185,0.193,,,0.171,0.219,0.16,,,0.141,0.18,479.8,459,95664,,,0.18,21410,,,,0.054142186,7264.148738,134168,,,72.15772831,272,376952,63.58232663,80.73312998,99.25558313,83.47622901,115.0349372,,,,40.63105838,28.30102089,56.50796644,,,,86.71789243,68.65537207,108.0763679,,,,0.363,,,0.354,0.372,0.220791941,12624,57176,0.199345132,0.242238749,0.053988779,1453,26913,0.039690906,0.068286651,0.001662909,194,116663,,,601.3556701,0.87,1401.57,1611,,,0.122783629,921,7501,0.092803317,0.15276394,2.707988105,,,,,,,2.58845379,2.600721808,3.217645186,2.798901816,,,,,,,2.601424338,2.851214171,3.260645062,0.1712818,,,,,-11810.97,,,,,0.838531431,36269,43253,0.795301063,0.8817618,39931,,,36780.70213,43081.29787,35565,32347.97872,38782.02128,73015,31346.23404,114683.766,30311,27960.19149,32661.80851,40897,34447.46809,47346.53192,52687,48995.76596,56378.23404,,,,,,0.98439871,20759,21088,,,30.6016455,,,,,0.345220505,,39931,,,11.70930381,92,7857,,,26.29780782,239,908821,22.96372282,29.63189282,31.23807839,25.47836119,36.99779559,,,,42.59750095,34.25342112,52.35956067,,,,12.76487108,8.548834496,18.33248415,,,,13.19135237,84,641389,10.4758379,16.39564654,13.09657634,12.91092885,8.772349757,18.32603292,,,,,,,,,,19.83417206,13.56655901,27.99993297,,,,31.33823623,201,641389,27.00579588,35.67067659,37.21694767,30.1458471,45.44826302,,,,40.61161086,30.99093749,52.27519335,,,,24.73850135,17.5914928,33.81834573,,,,39.50172806,359,908821,35.41547798,43.58797814,46.99533917,39.93075833,54.05992001,,,,36.91783415,29.18201591,46.07512782,22.1765003,13.14319955,35.04843134,38.73478119,31.06642719,47.72233379,,,,13.07017544,,11400,,,83,66,0.496820383,47188,94980,,,0.481,,,,,23.95848792,,,,,0.655884636,27881,42509,0.641463347,0.670305925,0.13464436,5183,38494,0.122000554,0.147288167,0.702980545,29883,42509,0.687805816,0.718155275,116663,,,,,0.252925092,29507,116663,,,0.162527965,18961,116663,,,0.230878685,26935,116663,,,0.419267463,48913,116663,,,0.007011649,818,116663,,,0.002262928,264,116663,,,0.098480238,11489,116663,,,0.237436034,27700,116663,,,0.021761309,2389,109782,0.018139264,0.025383354,0.517679127,60394,116663,,,0.760147602,88580,116530,, -37,157,37157,NC,Rockingham County,2024,1,12739.34131,2133,249821,11859.01799,13619.66463,0,,,,2,,,,2,16751.22913,14323.36209,19179.09617,,7407.339857,5032.928053,10514.12766,,12369.036,11353.33858,13384.73342,,,,,2,,0.179,,,0.154,0.208,3.774657644,,,3.000729184,4.633404584,5.283832149,,,4.282241686,6.391996909,0.098205855,624,6354,0.090888487,0.105523222,0,,,,,,,0.147009967,0.127007286,0.167012647,0.063897764,0.04473874,0.083056787,0.087266866,0.078873083,0.09566065,,,,0.162601626,0.097388951,0.227814301,0.2,,,0.165,0.238,0.397,,,0.326,0.478,6.9,0.098455509,0.14,,,0.249,,,0.207,0.297,0.709240801,64609,91096,,,0.157887369,,,0.12753263,0.19315233,0.226666667,17,75,0.16787163,0.289519572,422.9,386,91266,,,22.18951659,392,17666,19.99286652,24.38616666,,,,,,,26.67085033,21.30372796,32.97891946,22.97702298,16.82206864,30.64812873,21.3005455,18.63872207,23.96236893,,,,18.25842697,9.721843386,31.22246618,0.142458218,10152,71263,0.125777367,0.159139069,0.000306796,28,91266,,,3259.5,0.000380613,35,91957,,,2627.342857,0.0015442,142,91957,,,647.584507,3382,,,,,,,3744,,3372,0.4,,,,,,,0.41,,0.4,0.48,,,,,,0.48,0.44,0.23,0.49,0.836377128,55231,66036,0.821807881,0.850946374,0.547707863,11159,20374,0.501738701,0.593677025,0.041379485,1633,39464,,,0.229,4170,,0.167042553,0.290957447,,,,,,,0.378191259,0.246632893,0.509749626,0.507582516,0.411219822,0.603945209,0.225666028,0.1812894,0.270042656,5.218693285,103518,19836,4.673900623,5.763485947,0.345197092,6314,18291,0.290125464,0.400268719,15.12063638,138,91266,,,126.9771529,578,455200,116.6253085,137.3289973,,,,,,,97.93972577,78.00844488,121.4110257,45.05909674,23.9920713,77.05242771,146.6244372,133.5208594,159.728015,,,,8.2,,,,,1,,,,,0.127562938,4915,38530,0.109322616,0.14580326,0.097297297,0.081986143,0.112608451,0.021801194,0.014666727,0.028935661,0.012847132,0.006137764,0.0195565,0.827164949,32094,38800,0.808740531,0.845589366,,,,,,,0.810830195,0.739599473,0.882060918,0.750143926,0.695583865,0.804703988,0.807092907,0.776856433,0.837329381,0.405,,38800,0.367284139,0.442715861,72.71720446,,,72.10519094,73.32921798,,,,,,,69.86414597,68.3296118,71.39868015,91.7754319,76.07219722,107.4786666,72.9084426,72.20607303,73.61081218,,,,589.5928514,2133,249821,562.4205898,616.7651129,,,,,,,706.849471,636.6727161,777.026226,274.1187189,187.4970008,386.9738415,586.8441127,555.2939171,618.3943082,,,,63.14225579,51,80770,47.01355681,83.02040532,,,,,,,102.7115859,57.48689491,169.407141,,,,50.63981458,33.07960816,74.19906138,,,,8.108108108,51,6290,6.037019052,10.66066477,,,,,,,,,,,,,5.319148936,3.371884144,7.981335082,,,,,,,0.126,,,0.108,0.145,0.177,,,0.154,0.203,0.113,,,0.097,0.131,207.6,163,78501,,,0.14,12770,,,,0.098455509,9219.669193,93643,,,51.90798396,142,273561,43.37018231,60.44578561,,,,,,,33.34641036,19.42551289,53.3908333,,,,62.58204353,51.52209118,73.64199589,,,,0.347,,,0.332,0.36,0.172572437,9190,53253,0.151125629,0.194019246,0.055403124,1050,18952,0.038722273,0.072083975,0.000739476,68,91957,,,1352.308824,0.875631365,859.87,982,,,0.117287988,538,4587,0.061291031,0.173284944,2.945790615,,,,,,,2.685088469,2.794307011,3.092305962,2.885153131,,,,,,,2.579654317,2.918657112,3.032907025,0.077199924,,,,,-8121.826,,,,,0.829947974,41636,50167,0.7580352,0.901860748,52494,,,47774.51064,57213.48936,62530,7390.255319,117669.7447,,,,36675,31788.70213,41561.29787,52577,32849.51064,72304.48936,55010,49934.25532,60085.74468,,,,,,0.614625197,7035,11446,,,33.02420004,,,,,0.237646207,,52494,,,10.05244755,46,4576,,,7.989335021,51,638351,5.948584688,10.50450009,,,,,,,18.52974867,11.61249484,28.05426217,,,,6.072369634,4.035045522,8.77626483,,,,18.08145325,83,455200,14.19782984,22.69960876,18.23374341,,,,,,,11.08786585,5.070078315,21.0482232,,,,21.38342939,16.35662913,27.46790961,,,,16.69595782,76,455200,13.15451579,20.89748088,,,,,,,22.41993722,13.49826678,35.01150918,,,,17.07062055,12.89496331,22.16762069,,,,20.52162525,131,638351,17.00737911,24.03587139,,,,,,,20.21427128,12.95166503,30.07723334,,,,22.1207751,17.8278202,26.41372999,,,,27.8125,,6400,,,100,78,0.67631914,47809,70690,,,0.638,,,,,24.42291197,,,,,0.713381555,27615,38710,0.691441285,0.735321826,0.113580113,4176,36767,0.09590243,0.131257795,0.771531904,29866,38710,0.746537715,0.796526093,91957,,,,,0.201061366,18489,91957,,,0.214578553,19732,91957,,,0.186358842,17137,91957,,,0.00648129,596,91957,,,0.007220766,664,91957,,,0.001446328,133,91957,,,0.068423285,6292,91957,,,0.712050197,65478,91957,,,0.01366322,1184,86656,0.009701296,0.017625144,0.51243516,47122,91957,,,0.609170545,55493,91096,, -37,159,37159,NC,Rowan County,2024,1,11266.29816,2902,401250,10635.75999,11896.83633,0,,,,2,,,,2,14568.33152,12781.64882,16355.01423,,4774.071067,3531.884057,6311.575131,,11589.89714,10812.44962,12367.34466,,,,,2,,0.169,,,0.143,0.2,3.666665312,,,2.895039706,4.545879197,4.67193043,,,3.705559909,5.716742454,0.100910877,1130,11198,0.095331879,0.106489875,0,,,,0.141891892,0.085673942,0.198109842,0.160443996,0.144285876,0.176602116,0.070575462,0.058879251,0.082271672,0.089278025,0.082582288,0.095973762,,,,0.134259259,0.08879237,0.179726149,0.193,,,0.155,0.234,0.389,,,0.314,0.464,7.1,0.088083922,0.132,,,0.246,,,0.201,0.296,0.663421277,97440,146875,,,0.183003809,,,0.148256074,0.223255655,0.201834862,22,109,0.154047265,0.253320905,501.5,743,148150,,,22.08242809,681,30839,20.42387515,23.74098104,,,,,,,27.67459138,23.23089729,32.11828548,35.43223052,30.04208463,40.82237642,17.2360568,15.3903123,19.08180131,,,,27.90178571,18.05656456,41.18853984,0.144981286,17044,117560,0.128300435,0.161662137,0.000344246,51,148150,,,2904.901961,0.000487821,73,149645,,,2049.931507,0.002525978,378,149645,,,395.8862434,3065,,,,,,,3226,,2990,0.41,,,,,,0.27,0.42,0.29,0.41,0.45,,,,,,0.52,0.33,0.22,0.47,0.874227575,88846,101628,0.861344843,0.887110307,0.581348815,20628,35483,0.539222539,0.623475091,0.036188873,2451,67728,,,0.231,7360,,0.177382979,0.284617021,0.108433735,0,0.793285837,0.052777778,0,0.311564507,0.457415565,0.368853519,0.545977612,0.453482283,0.386813712,0.520150854,0.145416004,0.114499094,0.176332915,4.388539844,110363,25148,3.997424175,4.779655514,0.282979648,9121,32232,0.241461662,0.324497633,13.70232872,203,148150,,,119.6408257,855,714639,111.621231,127.6604203,,,,,,,106.125055,87.36986605,124.880244,44.47343454,30.00603952,63.48859315,135.8396935,125.7185468,145.9608401,,,,9.5,,,,,1,,,,,0.130137619,7045,54135,0.114486504,0.145788734,0.106718031,0.092010903,0.121425159,0.026138358,0.017903304,0.034373411,0.007388935,0.004462843,0.010315027,0.804021955,52296,65043,0.783158545,0.824885364,,,,0.721938776,0.606425355,0.837452196,0.806180885,0.766459772,0.845901998,0.652830189,0.579076338,0.726584039,0.810663073,0.793138882,0.828187265,0.353,,65043,0.323165144,0.382834856,73.58437254,,,73.12150528,74.04723979,,,,,,,71.10279032,69.84349451,72.36208614,103.138298,81.26767531,125.0089206,73.2586208,72.70762803,73.80961356,,,,543.5059451,2902,401250,522.7145075,564.2973828,,,,,,,687.9491939,627.7446938,748.1536941,183.9676178,134.6874178,245.3870215,553.0274152,528.5856562,577.4691743,,,,53.30793506,75,140692,41.93007257,66.82195821,,,,,,,112.5130596,74.76411097,162.6126977,,,,46.27432368,32.90556774,63.25852381,,,,6.529516995,73,11180,5.118099009,8.209887315,,,,,,,12.72638277,8.313295749,18.6470994,,,,5.856306242,4.202586469,7.944740689,,,,,,,0.121,,,0.103,0.141,0.167,,,0.144,0.193,0.112,,,0.095,0.13,292.8,368,125694,,,0.132,19220,,,,0.088083922,12193.28113,138428,,,47.1422332,204,432733,40.67302484,53.61144157,,,,,,,38.36426156,25.28229011,55.81798637,,,,55.72246952,47.37051017,64.07442886,,,,0.351,,,0.337,0.365,0.176911352,15205,85947,0.155464544,0.198358161,0.060520549,2016,33311,0.042648208,0.078392889,0.001196164,179,149645,,,836.0055866,0.86,1431.9,1665,,,0.078807677,579,7347,0.048813368,0.108801986,2.899598338,,,,,,,2.449553218,2.655857666,3.166485907,2.651005703,,,,,,,2.152351478,2.446703936,2.93692124,0.13995095,,,,,-5010.566,,,,,0.853682469,44371,51976,0.792085669,0.915279269,61105,,,54856.82979,67353.17021,81142,80691.61702,81592.38298,58460,35532.17021,81387.82979,46139,39849.12766,52428.87234,46172,37129.78723,55214.21277,64948,61265.10638,68630.89362,,,,,,0.597103501,10967,18367,,,47.4035194,,,,,0.265411996,,61105,,,4.140282513,34,8212,,,9.056931874,90,993714,7.282842763,11.13250692,,,,,,,31.7286516,23.62406515,41.71731724,,,,4.632352632,3.188698403,6.505545385,,,,17.90246783,132,714639,14.73730261,21.06763306,18.47086431,,,,,,,,,,,,,22.29603412,18.07623624,26.515832,,,,19.17051826,137,714639,15.96033636,22.38070016,,,,,,,30.19818638,21.03414328,41.99836703,,,,18.25591256,14.73487757,22.36472625,,,,18.91892436,188,993714,16.21450779,21.62334092,,,,,,,19.90817355,13.61717597,28.104401,13.20931257,6.825444558,23.07401073,19.93315375,16.65455766,23.21174983,,,,11.36363636,,11000,,,89,36,0.700558286,73408,104785,,,0.644,,,,,45.26652614,,,,,0.707478187,40056,56618,0.685061263,0.729895111,0.127489674,6945,54475,0.109959855,0.145019494,0.87274365,49413,56618,0.859431011,0.88605629,149645,,,,,0.217047011,32480,149645,,,0.181362558,27140,149645,,,0.1640282,24546,149645,,,0.006769354,1013,149645,,,0.012001737,1796,149645,,,0.001463464,219,149645,,,0.105957433,15856,149645,,,0.697363761,104357,149645,,,0.024479804,3400,138890,0.019164154,0.029795454,0.503665341,75371,149645,,,0.422073192,61992,146875,, -37,161,37161,NC,Rutherford County,2024,1,11807.38381,1549,180760,10837.61387,12777.15376,0,,,,2,,,,2,18006.21618,14075.54775,21936.8846,,,,,2,11621.75035,10563.36099,12680.1397,,,,,2,,0.173,,,0.146,0.204,3.815366999,,,3.001602696,4.811056701,4.977558897,,,3.959001524,6.166381103,0.100087413,458,4576,0.091391744,0.108783081,0,,,,,,,0.163223141,0.13029789,0.196148391,0.075301205,0.046916255,0.103686155,0.092669433,0.083216797,0.102122069,,,,0.118181818,0.057853032,0.178510604,0.198,,,0.158,0.241,0.374,,,0.295,0.457,6.9,0.052546887,0.16,,,0.25,,,0.203,0.3,0.378778474,24410,64444,,,0.160132626,,,0.127640073,0.198636648,0.194029851,13,67,0.133309103,0.261264716,436.6,282,64586,,,25.1431972,338,13443,22.46268232,27.82371209,,,,,,,31.29890454,22.36039628,42.62022454,24.71678682,15.83651169,36.77661956,23.91052835,20.93462101,26.88643568,,,,34.7705146,22.50164374,51.32813866,0.139804849,6949,49705,0.121932508,0.157677189,0.000449014,29,64586,,,2227.103448,0.000261687,17,64963,,,3821.352941,0.001847205,120,64963,,,541.3583333,2501,,,,,,,2839,,2430,0.42,,,,,,0.31,0.49,0.21,0.41,0.47,,,,,,0.42,0.37,0.24,0.47,0.859202533,40166,46748,0.840068435,0.87833663,0.592505693,8586,14491,0.538132985,0.646878401,0.047285041,1173,24807,,,0.214,2722,,0.141319149,0.286680851,,,,,,,0.753040225,0.651828332,0.854252117,0.197899838,0.07063915,0.325160527,0.181479113,0.136187506,0.226770721,4.59101165,99703,21717,3.996401816,5.185621483,0.325312285,4245,13049,0.270893598,0.379730971,20.12820116,130,64586,,,111.1218184,369,332068,99.78366765,122.4599692,,,,,,,94.08222787,63.47688406,134.3082303,,,,120.3750173,107.406855,133.3431796,,,,8.3,,,,,0,,,,,0.140236149,3860,27525,0.115986558,0.164485741,0.107090103,0.08615064,0.128029567,0.028519528,0.01667643,0.040362626,0.013623978,0.005370464,0.021877492,0.793820376,20656,26021,0.765714242,0.82192651,,,,,,,0.744512195,0.627698409,0.861325982,,,,0.809358952,0.782116107,0.836601797,0.323,,26021,0.284612587,0.361387413,73.37503745,,,72.6790854,74.0709895,,,,,,,68.41899718,66.01350808,70.82448629,92.53082127,72.40653031,112.6551122,73.48916999,72.73499619,74.24334379,,,,574.0563812,1549,180760,542.8435505,605.269212,,,,,,,830.8754855,708.3588983,953.3920727,,,,566.5376421,532.6533734,600.4219107,,,,50.48890086,30,59419,34.06464939,72.07604536,,,,,,,,,,,,,54.25445339,34.76185201,80.72632606,,,,6.701253783,31,4626,4.553176822,9.511894834,,,,,,,,,,,,,5.467468562,3.339671839,8.444061756,,,,,,,0.126,,,0.107,0.146,0.177,,,0.151,0.203,0.108,,,0.092,0.126,115,64,55630,,,0.16,10340,,,,0.052546887,3563.204435,67810,,,34.22399605,68,198691,26.57627208,43.38706995,,,,,,,,,,,,,34.73809306,26.31029245,45.00722882,,,,0.344,,,0.329,0.359,0.170073191,6274,36890,0.147434893,0.192711488,0.054696174,739,13511,0.038015322,0.071377025,0.00104675,68,64963,,,955.3382353,0.895091421,636.41,711,,,0.166615242,540,3241,0.095453462,0.237777023,3.291133117,,,,,,,2.705697805,2.970555045,3.437955237,3.239884814,,,,,,,2.535206189,3.043335081,3.395510333,0.053359877,,,,,-4464.749,,,,,0.762937146,38745,50784,0.639577081,0.886297211,53485,,,48441.42553,58528.57447,55677,27252.82979,84101.17021,70958,7818.595745,134097.4043,31686,20320.38298,43051.61702,53370,27090.51064,79649.48936,54112,50644.76596,57579.23404,,,,,,0.991019546,7504,7572,,,38.91628376,,,,,0.272468917,,53485,,,7.708911502,25,3243,,,4.302194765,20,464879,2.62789233,6.644390885,,,,,,,,,,,,,3.36794545,1.793289107,5.759289291,,,,19.17359218,63,332068,14.48352548,24.89850427,18.97201778,,,,,,,,,,,,,22.48377877,16.8905066,29.33645415,,,,16.56287267,55,332068,12.47742239,21.55885541,,,,,,,,,,,,,17.09252511,12.55894454,22.72943491,,,,19.35987644,90,464879,15.56762687,23.79657498,,,,,,,,,,,,,20.72581815,16.4342848,25.79507476,,,,21.875,,4800,,,76,29,0.659433059,34429,52210,,,0.543,,,,,18.29444868,,,,,0.733490656,19271,26273,0.713507607,0.753473705,0.110703783,2748,24823,0.09002629,0.131381276,0.804704449,21142,26273,0.786365728,0.823043171,64963,,,,,0.198990194,12927,64963,,,0.224697135,14597,64963,,,0.093714884,6088,64963,,,0.004048458,263,64963,,,0.006711513,436,64963,,,0.000846636,55,64963,,,0.054861998,3564,64963,,,0.821529178,53369,64963,,,0.006521704,401,61487,0.002950647,0.010092761,0.512260825,33278,64963,,,0.677859847,43684,64444,, -37,163,37163,NC,Sampson County,2024,1,10671.08251,1173,171720,9730.290275,11611.87475,0,9662.434076,4823.452277,17288.7636,1,,,,2,13113.34572,10910.89445,15315.797,,7409.615832,5807.956007,9316.47947,,10951.67247,9548.60066,12354.74429,,,,,2,,0.204,,,0.177,0.234,3.908158262,,,3.102611436,4.761191047,5.007197639,,,3.984364182,6.076533489,0.096372689,542,5624,0.088660013,0.104085364,0,,,,,,,0.152931181,0.132368714,0.173493648,0.083857442,0.07142034,0.096294545,0.07751606,0.066669603,0.088362517,,,,0.103092784,0.042578472,0.163607095,0.202,,,0.167,0.242,0.402,,,0.328,0.48,7.9,0.027421821,0.125,,,0.3,,,0.253,0.351,0.413341012,24402,59036,,,0.150872426,,,0.119752467,0.18679472,0.175,14,80,0.120657796,0.235917913,544.2,321,58990,,,35.24572725,497,14101,32.14699286,38.34446165,,,,,,,35.90551181,29.3143076,42.49671602,48.38709677,41.84260405,54.9315895,25.01284907,20.95549596,29.07020218,,,,37.03703704,21.95049543,58.53448615,0.176976238,8297,46882,0.157912408,0.196040068,0.000423801,25,58990,,,2359.6,0.000338295,20,59120,,,2956,0.000541272,32,59120,,,1847.5,3885,,,,,,,4914,1473,3673,0.44,,,,,,,0.41,0.35,0.45,0.46,,,,,0.43,0.55,0.34,0.29,0.49,0.826247643,32864,39775,0.809862569,0.842632717,0.518062695,7156,13813,0.465317147,0.570808242,0.036940051,1058,28641,,,0.257,3634,,0.18193617,0.33206383,0.153594771,0,0.32143865,,,,0.518827058,0.420119728,0.617534388,0.3982701,0.329152376,0.467387824,0.183609756,0.100405687,0.266813826,4.60532161,99521,21610,3.961221104,5.249422116,0.271561934,3898,14354,0.21221611,0.330907758,14.91778268,88,58990,,,102.8888768,322,312959,91.65068186,114.1270718,,,,,,,90.60860909,70.76607544,114.2904314,60.44168927,42.97994962,82.62577895,130.2298398,112.4023725,148.057307,,,,7.7,,,,,0,,,,,0.144861831,3355,23160,0.119977206,0.169746456,0.118554429,0.094517182,0.142591676,0.031519862,0.020737468,0.042302256,0.004533679,0.001491179,0.007576179,0.826313612,19972,24170,0.805776429,0.846850795,,,,,,,0.831700043,0.769232193,0.894167892,0.786495863,0.69732105,0.875670677,0.847355884,0.813235212,0.881476555,0.406,,24170,0.36407718,0.44792282,74.31489121,,,73.58801339,75.04176902,,,,,,,72.36018777,70.79308097,73.92729456,85.45674669,77.38584396,93.52764942,74.02559475,73.00233525,75.04885424,,,,517.8370153,1173,171720,486.7524698,548.9215607,529.6111189,327.8376299,809.5668535,,,,617.4620433,550.3167287,684.6073578,297.1269942,234.866559,370.8279359,522.3685096,479.6639371,565.0730821,,,,56.80034678,38,66901,40.19530597,77.96291374,,,,,,,89.65517241,47.73760339,153.3130753,,,,67.89408523,39.55080662,108.7050075,,,,6.036931818,34,5632,4.180750779,8.436007119,,,,,,,,,,,,,,,,,,,,,,0.133,,,0.116,0.152,0.177,,,0.154,0.203,0.137,,,0.119,0.157,334,163,48801,,,0.125,7460,,,,0.027421821,1739.393493,63431,,,24.20617204,45,185903,17.65614799,32.38976267,,,,,,,,,,,,,36.55088636,25.31255134,51.0762001,,,,0.345,,,0.334,0.356,0.224651544,7398,32931,0.199630268,0.249672821,0.067864679,997,14691,0.048800849,0.086928509,0.000794993,47,59120,,,1257.87234,0.805972222,696.36,864,,,0.11255814,363,3225,0.047008528,0.178107751,3.120844014,,,,,,,2.928067132,2.936344774,3.495462254,3.216006616,,,,,,,2.984756953,3.166148371,3.493965808,0.057659557,,,,,-7128.453,,,,,0.834251487,38162,45744,0.783218284,0.88528469,52248,,,45330.21277,59165.78723,56214,31725.31915,80702.68085,102800,36668.76596,168931.234,35396,32337.44681,38454.55319,45759,39581.12766,51936.87234,59864,54533.2766,65194.7234,,,,,,0.992538001,10774,10855,,,31.87047174,,,,,0.256679682,,52248,,,8.947368421,34,3800,,,9.322270905,41,439807,6.689822551,12.64671312,,,,,,,20.71381612,13.13078257,31.08089456,,,,4.484365261,2.150427448,8.246907376,,,,6.846647243,21,312959,4.182110007,10.57409137,6.71014414,,,,,,,,,,,,,9.874634437,5.398554535,16.56795869,,,,10.86404289,34,312959,7.523665523,15.18141101,,,,,,,20.41884149,11.67113217,33.15891933,,,,6.987942623,3.48835578,12.50335962,,,,30.92265471,136,439807,25.72552701,36.11978241,,,,,,,36.92462873,26.49775108,50.09242826,29.40145424,19.20600606,43.07994265,30.49368377,23.67953863,38.65801027,,,,15.96153846,,5200,,,37,46,0.659021301,28618,43425,,,0.537,,,,,14.75048857,,,,,0.732086936,15663,21395,0.709656939,0.754516934,0.126947777,2550,20087,0.102220132,0.151675423,0.776302875,16609,21395,0.754390968,0.798214781,59120,,,,,0.242489851,14336,59120,,,0.183423545,10844,59120,,,0.243064953,14370,59120,,,0.039106901,2312,59120,,,0.007036536,416,59120,,,0.003788904,224,59120,,,0.218826116,12937,59120,,,0.496397158,29347,59120,,,0.04516733,2509,55549,0.035039426,0.055295233,0.500016915,29561,59120,,,0.84221492,49721,59036,, -37,165,37165,NC,Scotland County,2024,1,15181.23653,827,95878,13633.20799,16729.26508,0,13005.92802,9486.613146,17402.95497,,,,,2,19215.70279,16432.18174,21999.22384,,,,,2,13603.12851,11266.89034,15939.36668,,,,,2,,0.231,,,0.199,0.263,4.408507185,,,3.543885428,5.405918984,5.820858166,,,4.718593264,7.028339672,0.143724696,426,2964,0.131095103,0.15635429,0,0.141700405,0.110946689,0.172454121,,,,0.170149254,0.150029684,0.190268824,,,,0.113230036,0.091788228,0.134671844,,,,0.139393939,0.08654476,0.192243118,0.245,,,0.205,0.288,0.446,,,0.368,0.525,6,0.095129319,0.179,,,0.297,,,0.248,0.351,0.636039094,21736,34174,,,0.14517656,,,0.11438268,0.17904755,0.206349206,13,63,0.142983259,0.27579642,932,319,34227,,,40.31697484,290,7193,35.67668605,44.95726363,49.14529915,35.98053569,65.552942,,,,51.46533238,43.05932809,59.87133667,38.57566766,20.53991837,65.96556652,21.76239743,16.64650965,27.95470992,,,,95.05703422,61.51590056,140.3229342,0.132600793,3210,24208,0.115919942,0.149281644,0.000584334,20,34227,,,1711.35,0.000321995,11,34162,,,3105.636364,0.00216615,74,34162,,,461.6486487,5133,,,,,634,,5706,,4954,0.55,,,,,0.75,,0.56,,0.54,0.34,,,,,0.35,,0.28,,0.36,0.822408142,19070,23188,0.802136213,0.842680072,0.47756448,4055,8491,0.424026768,0.531102192,0.063902047,715,11189,,,0.343,2648,,0.252446809,0.433553192,0.263305322,0.185452635,0.34115801,,,,0.590116279,0.546914926,0.633317633,0.410416667,0.211205199,0.609628134,0.207152202,0.140152294,0.27415211,5.262604657,86112,16363,4.664651395,5.860557919,0.472415571,3665,7758,0.408996614,0.535834528,11.97884711,41,34227,,,120.9747105,210,173590,104.6125362,137.3368849,157.4427481,108.3763434,221.1081549,,,,111.8818528,88.00217454,140.2448713,,,,134.2045331,109.0748222,163.3892037,,,,7.8,,,,,0,,,,,0.208494209,2700,12950,0.183919014,0.233069403,0.169952681,0.14785363,0.192051732,0.052123552,0.037666199,0.066580906,0.005405405,0.001553681,0.00925713,0.809873084,9827,12134,0.79758207,0.822164098,0.88160066,0.708724088,1,,,,0.791782203,0.765479331,0.818085075,,,,0.871842844,0.869195368,0.87449032,0.299,,12134,0.260686623,0.337313378,70.9513583,,,69.92379328,71.97892332,70.44166407,67.92290832,72.96041983,,,,68.14000325,66.40794516,69.87206134,,,,72.28249698,70.70459032,73.86040365,,,,679.037234,827,95878,630.0324278,728.0420403,650.4570462,518.0854065,806.3393736,,,,829.2146896,741.6617826,916.7675965,,,,619.3389126,547.4528221,691.2250032,,,,90.0545956,32,35534,61.59727673,127.1302192,,,,,,,140.775674,85.98943891,217.4166108,,,,,,,,,,9.317803661,28,3005,6.191612864,13.46682061,,,,,,,14.59854015,8.917167581,22.54626124,,,,,,,,,,,,,0.149,,,0.13,0.169,0.191,,,0.167,0.217,0.152,,,0.131,0.173,471.2,134,28437,,,0.179,6150,,,,0.095129319,3439.59077,36157,,,38.57764233,40,103687,27.56043327,52.53179952,,,,,,,,,,,,,55.17114549,35.34919394,82.09029124,,,,0.393,,,0.381,0.404,0.173936457,2907,16713,0.150106669,0.197766244,0.041162228,323,7847,0.028055845,0.054268611,0.00204906,70,34162,,,488.0285714,0.86,368.08,428,,,,,,,,2.688587117,,,,,,,2.385275234,,3.203468315,2.838558367,,,,,,,2.551167072,,3.2828129,0.013723437,,,,,-11822.78,,,,,0.793521288,36083,45472,0.709046434,0.877996142,45996,,,40025.44681,51966.55319,51377,45022.78723,57731.21277,,,,29042,25362.68085,32721.31915,60147,14430.74468,105863.2553,52286,49034.42553,55537.57447,,,,,,0.924036697,5036,5450,,,31.47427841,,,,,0.290960084,,45996,,,9.700176367,22,2268,,,20.46303762,50,244343,15.18806094,26.97796404,,,,,,,31.77091055,21.43569994,45.35495033,,,,12.37329272,6.588257261,21.15870739,,,,10.6649942,19,173590,6.320751472,16.85528878,10.94533095,,,,,,,,,,,,,14.92203511,7.155695847,27.44215385,,,,28.80350251,50,173590,21.37851474,37.97382722,,,,,,,41.76922503,27.75534669,60.36815983,,,,24.40082421,14.46147487,38.56382207,,,,27.01120965,66,244343,20.89046759,34.36488152,62.54777955,37.06977824,98.85245767,,,,24.35769809,15.44069116,36.54850666,,,,22.84300195,14.63594237,33.98857621,,,,23.33333333,,2700,,,25,38,0.558284527,14775,26465,,,0.549,,,,,40.60845749,,,,,0.59792212,7309,12224,0.571261778,0.624582463,0.164335976,1845,11227,0.13962957,0.189042382,0.793929974,9705,12224,0.767844015,0.820015932,34162,,,,,0.229728939,7848,34162,,,0.185996136,6354,34162,,,0.390667994,13346,34162,,,0.132222938,4517,34162,,,0.010040396,343,34162,,,0.00064399,22,34162,,,0.039634682,1354,34162,,,0.407675195,13927,34162,,,0.007187725,230,31999,0.001786154,0.012589295,0.485451671,16584,34162,,,0.525223854,17949,34174,, -37,167,37167,NC,Stanly County,2024,1,10373.24335,1217,174347,9449.369261,11297.11745,0,,,,2,,,,2,15934.13917,12602.24345,19266.0349,,8203.192238,4861.731612,12964.58035,1,9798.783146,8791.210331,10806.35596,,,,,2,,0.157,,,0.132,0.185,3.561799039,,,2.79742517,4.406936639,5.002748142,,,3.946362967,6.104623932,0.094139651,453,4812,0.085888583,0.102390719,0,,,,,,,0.176767677,0.146089787,0.207445567,0.054347826,0.031185138,0.077510514,0.086426593,0.077260212,0.095592974,,,,0.12345679,0.051816437,0.195097143,0.184,,,0.147,0.224,0.35,,,0.276,0.438,8,0.021830826,0.125,,,0.234,,,0.189,0.286,0.67515679,42200,62504,,,0.173054066,,,0.138791891,0.214336133,0.2,9,45,0.125379593,0.283736902,480.9,305,63425,,,21.24384237,276,12992,18.73753344,23.75015129,,,,,,,35.76437588,26.62892696,47.02354935,27.43614002,18.37441356,39.40287364,18.85446392,16.13749672,21.57143113,,,,,,,0.136218532,6742,49494,0.119537681,0.152899383,0.0003784,24,63425,,,2642.708333,0.000374106,24,64153,,,2673.041667,0.002197871,141,64153,,,454.9858156,4408,,,,,,,4062,33159,4229,0.46,,,,,,,0.49,,0.47,0.45,,,,,,0.31,0.36,,0.46,0.859854412,37917,44097,0.84416578,0.875543044,0.563177607,8571,15219,0.514349055,0.612006159,0.032970956,1016,30815,,,0.19,2594,,0.135191489,0.244808511,,,,,,,0.587161737,0.400061232,0.774262242,0.184881603,0.062186419,0.307576787,0.1488944,0.117803529,0.179985271,4.487731249,115954,25838,3.990473875,4.984988622,0.234293777,3155,13466,0.188878202,0.279709352,16.39731967,104,63425,,,110.5335961,346,313027,98.88664318,122.1805491,,,,,,,117.0726136,84.01332877,158.8222197,,,,116.1518457,102.8519457,129.4517458,,,,9,,,,,0,,,,,0.117190776,2795,23850,0.096901665,0.137479886,0.091664881,0.074198135,0.109131627,0.023480084,0.015098767,0.031861401,0.010062893,0.003963149,0.016162637,0.815815673,22944,28124,0.797763167,0.83386818,,,,,,,0.762065474,0.63032436,0.893806588,0.797338792,0.718301614,0.876375971,0.80160471,0.777315969,0.825893452,0.42,,28124,0.381797945,0.458202055,74.39097392,,,73.70012941,75.08181842,,,,,,,70.66245258,68.29405188,73.03085327,,,,74.74316219,73.99477351,75.49155086,,,,511.1092858,1217,174347,480.6562606,541.562311,,,,,,,744.1019116,629.6192107,858.5846125,342.7901518,206.3820639,535.3092842,491.6478343,458.8726604,524.4230081,,,,61.63584874,37,60030,43.39732562,84.95689845,,,,,,,,,,,,,54.61745028,34.99443097,81.26643665,,,,8.572025925,41,4783,6.151433801,11.62892109,,,,,,,,,,,,,7.799442897,5.182673163,11.27236656,,,,,,,0.116,,,0.099,0.135,0.168,,,0.146,0.192,0.102,,,0.086,0.119,202.5,109,53836,,,0.125,7790,,,,0.021830826,1322.620584,60585,,,37.47295086,71,189470,29.26668552,47.26702861,,,,,,,,,,,,,39.97143026,30.57497694,51.34497436,,,,0.336,,,0.321,0.351,0.163421111,5908,36152,0.141974302,0.184867919,0.064234621,898,13980,0.046362281,0.082106961,0.001013203,65,64153,,,986.9692308,0.894772727,629.92,704,,,,,,,,3.080817157,,,,,,2.850901639,2.338936696,2.832703427,3.319373092,2.872188704,,,,,,2.867749088,2.280031879,2.763695307,3.057389227,0.117126445,,,,,-2879.261,,,,,0.832926898,44061,52899,0.754536631,0.911317166,58642,,,52297.31915,64986.68085,103448,77107.74468,129788.2553,101985,62930.3617,141039.6383,27578,19667.70213,35488.29787,54432,28008.34043,80855.65957,65378,58316.04255,72439.95745,,,,,,0.419723392,3490,8315,,,52.29295312,,,,,0.303161557,,58642,,,7.368744243,24,3257,,,4.602652969,20,434532,2.811420007,7.108424213,,,,,,,22.62257322,11.29310704,40.47803248,,,,,,,,,,13.74553663,45,313027,9.864034405,18.64737254,14.37575672,,,,,,,,,,,,,15.70184221,11.05554597,21.64292115,,,,14.69521798,46,313027,10.7587465,19.60136145,,,,,,,34.26515519,17.7053057,59.8543304,,,,13.0819485,9.005011406,18.37191951,,,,19.56127512,85,434532,15.6248518,24.18781961,,,,,,,20.56597565,9.862184716,37.82156146,,,,20.23812578,15.80614414,25.52764189,,,,7.872340426,,4700,,,24,13,0.71443006,33939,47505,,,0.631,,,,,21.0426977,,,,,0.748622387,17797,23773,0.723613183,0.773631591,0.107015828,2407,22492,0.086245611,0.127786045,0.861187061,20473,23773,0.836422741,0.885951381,64153,,,,,0.215905725,13851,64153,,,0.190980936,12252,64153,,,0.113182548,7261,64153,,,0.00544012,349,64153,,,0.02017053,1294,64153,,,0.002571976,165,64153,,,0.052764485,3385,64153,,,0.795333032,51023,64153,,,0.014271961,845,59207,0.008590158,0.019953765,0.49844902,31977,64153,,,0.728209395,45516,62504,, -37,169,37169,NC,Stokes County,2024,1,10107.05585,888,123026,8988.07486,11226.03683,0,,,,2,,,,2,14852.59035,8120.049355,24920.12286,1,,,,2,10348.95519,9149.048997,11548.86139,,,,,2,,0.16,,,0.134,0.189,3.72432015,,,2.878917627,4.608978303,4.791879942,,,3.754152447,5.914113078,0.087441526,243,2779,0.076938825,0.097944227,0,,,,,,,,,,0.111888112,0.060221038,0.163555186,0.086991221,0.075957024,0.098025418,,,,,,,0.198,,,0.158,0.24,0.36,,,0.284,0.441,7.5,0.042568634,0.138,,,0.239,,,0.193,0.289,0.564802336,25145,44520,,,0.167216825,,,0.132288601,0.205203209,0.192307692,5,26,0.09558881,0.306287398,224.5,100,44553,,,16.9589964,146,8609,14.2080648,19.709928,,,,,,,,,,27.42230347,15.34805509,45.22891933,16.38910917,13.50440969,19.27380866,,,,,,,0.128269208,4414,34412,0.111588357,0.14495006,0.000269342,12,44553,,,3712.75,0.000154953,7,45175,,,6453.571429,0.000664084,30,45175,,,1505.833333,3638,,,,,,,3264,,3628,0.43,,,,,,,0.6,,0.43,0.44,,,,,,,0.44,,0.45,0.874833313,28866,32996,0.853545309,0.896121317,0.572735192,5260,9184,0.496959238,0.648511145,0.033360981,724,21702,,,0.154,1259,,0.093234043,0.214765957,,,,,,,0.235789474,0.062003605,0.409575343,0.30620985,0.012442502,0.599977198,0.139357489,0.088508963,0.190206015,3.85547891,102282,26529,3.204090954,4.506866866,0.271421675,2249,8286,0.192783745,0.350059605,8.753619285,39,44553,,,124.6306221,283,227071,110.10992,139.1513243,,,,,,,112.2082585,53.80822146,206.3549825,,,,131.4283497,115.7802905,147.0764089,,,,8.2,,,,,0,,,,,0.121876594,2390,19610,0.094754939,0.148998248,0.085522926,0.064831837,0.106214016,0.029576747,0.012363848,0.046789646,0.010708822,0.002473596,0.018944049,0.859221535,16534,19243,0.825551889,0.892891182,,,,,,,,,,,,,0.763603604,0.73564251,0.791564698,0.517,,19243,0.454426954,0.579573047,75.44510514,,,74.58648209,76.30372819,,,,,,,73.16577379,67.70515326,78.62639432,,,,75.16188031,74.25895623,76.0648044,,,,478.4820839,888,123026,443.9704072,512.9937605,,,,,,,517.7085288,338.1843993,758.5629455,,,,490.3397725,453.629801,527.0497441,,,,40.57234048,15,36971,22.70803098,66.91790558,,,,,,,,,,,,,40.2389575,21.42555016,68.80984282,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.121,,,0.103,0.14,0.173,,,0.148,0.199,0.101,,,0.086,0.118,115.5,45,38974,,,0.138,6160,,,,0.042568634,2017.795813,47401,,,50.04157867,68,135887,38.8592439,63.43962495,,,,,,,,,,,,,51.19745151,39.34152747,65.50378072,,,,0.332,,,0.314,0.348,0.149779903,3947,26352,0.128333094,0.171226711,0.059729571,508,8505,0.04185723,0.077601911,0.00068622,31,45175,,,1457.258065,0.88,436.48,496,,,0.08730557,174,1993,0.028431657,0.146179482,3.160843118,,,,,,,,,3.174173044,3.141436965,,,,,,,,,3.159377217,0.041706421,,,,,-849.5557,,,,,0.780333128,41836,53613,0.643626845,0.917039411,56259,,,50129.97872,62388.02128,,,,,,,43077,29486.87234,56667.12766,65553,25258.02128,105847.9787,58622,55337.06383,61906.93617,,,,,,0.437579272,2415,5519,,,46.88762782,,,,,0.260562754,,56259,,,7.865757735,15,1907,,,4.694556505,15,319519,2.627507639,7.74295703,,,,,,,,,,,,,4.81814928,2.634127046,8.084035793,,,,13.58635684,39,227071,9.3522229,19.08029636,17.17524475,,,,,,,,,,,,,14.66397169,9.963457312,20.81433729,,,,15.41368118,35,227071,10.7361937,21.43669926,,,,,,,,,,,,,16.00419019,11.01654813,22.47583332,,,,17.52634429,56,319519,13.23921212,22.75941587,,,,,,,,,,,,,17.89598304,13.36557611,23.46820081,,,,16.66666667,,3000,,,26,24,0.705102881,25701,36450,,,0.632,,,,,12.4035631,,,,,0.778181435,14780,18993,0.749535425,0.806827445,0.087643521,1603,18290,0.065307986,0.109979057,0.8112989,15409,18993,0.77805172,0.84454608,45175,,,,,0.183752075,8301,45175,,,0.230348644,10406,45175,,,0.04126176,1864,45175,,,0.004781406,216,45175,,,0.004316547,195,45175,,,0.000509131,23,45175,,,0.040863309,1846,45175,,,0.896026563,40478,45175,,,0.001985239,85,42816,0,0.005478526,0.507028224,22905,45175,,,0.805233603,35849,44520,, -37,171,37171,NC,Surry County,2024,1,9911.959373,1419,195670,9052.658392,10771.26035,0,,,,2,,,,2,14814.9172,9587.433282,21869.7403,1,5359.582329,3665.950346,7566.131097,,10328.13467,9341.999531,11314.26981,,,,,2,,0.173,,,0.145,0.205,3.900463669,,,3.048280614,4.779052049,5.086220287,,,4.033006364,6.113472112,0.087006516,454,5218,0.079359117,0.094653915,0,,,,,,,0.152631579,0.101494301,0.203768857,0.080110497,0.063964915,0.096256079,0.085023401,0.076208333,0.093838469,,,,,,,0.198,,,0.159,0.24,0.379,,,0.303,0.453,7.5,0.029814292,0.145,,,0.247,,,0.199,0.296,0.47544108,33927,71359,,,0.156745373,,,0.124904991,0.191770053,0.246376812,17,69,0.184463447,0.311697506,255.8,182,71152,,,23.20731871,345,14866,20.75841624,25.65622119,,,,,,,22,10.98232073,39.36407703,30.63603064,24.69696462,37.57237196,21.06511034,18.34858463,23.78163605,,,,37.73584906,18.0958064,69.39756997,0.151398558,8460,55879,0.133526217,0.169270898,0.000562177,40,71152,,,1778.8,0.000406145,29,71403,,,2462.172414,0.001386496,99,71403,,,721.2424242,3736,,,,,,,2455,,3744,0.44,,,,,,,0.48,0.19,0.45,0.48,,,,,,0.67,0.44,0.28,0.49,0.820233817,41535,50638,0.802583562,0.837884071,0.593077116,9475,15976,0.544975558,0.641178674,0.034377387,1125,32725,,,0.227,3330,,0.165042553,0.288957447,,,,0.622377622,0.174562082,1,0.580838323,0.286795496,0.874881151,0.261803874,0.160409904,0.363197844,0.215310544,0.170374009,0.26024708,5.240848545,106232,20270,4.792110353,5.689586736,0.230820681,3451,14951,0.187166568,0.274474794,13.35169777,95,71152,,,119.2898353,428,358790,107.9882953,130.5913753,,,,,,,90.73037956,46.88171109,158.487714,37.47096001,20.97221187,61.80265013,133.3552241,120.2536171,146.4568312,,,,8.1,,,,,0,,,,,0.125344828,3635,29000,0.107706833,0.142982822,0.096995405,0.082193071,0.111797739,0.029655172,0.020746074,0.038564271,0.003103448,0.000925201,0.005281695,0.830251777,25820,31099,0.811404829,0.849098724,,,,,,,0.851323829,0.739593429,0.963054229,0.795609153,0.751212466,0.84000584,0.852726575,0.829026521,0.876426628,0.31,,31099,0.280790279,0.339209721,74.48811713,,,73.8439509,75.13228337,,,,,,,71.05685186,67.11492631,74.99877741,86.36650781,79.05891816,93.67409747,74.09475451,73.38107178,74.80843724,,,,494.8571577,1419,195670,467.2485591,522.4657563,,,,,,,650.0503314,492.3417729,842.2156033,210.8510813,140.1090123,304.7385191,512.8924569,482.3323823,543.4525314,,,,57.30659026,38,66310,40.55355398,78.65777246,,,,,,,,,,,,,69.78662212,48.03789958,98.00636384,,,,6.33640553,33,5208,4.36169001,8.898669215,,,,,,,,,,,,,6.980351603,4.600095691,10.1560451,,,,,,,0.127,,,0.107,0.147,0.177,,,0.152,0.201,0.107,,,0.09,0.124,148,90,60794,,,0.145,10340,,,,0.029814292,2196.508316,73673,,,31.21825756,67,214618,24.19372081,39.64608357,,,,,,,,,,,,,34.32249643,26.25399017,44.08868253,,,,0.344,,,0.328,0.36,0.183868613,7557,41100,0.161230315,0.206506911,0.063487984,988,15562,0.044424154,0.082551813,0.001876672,134,71403,,,532.858209,0.901865256,809.875,898,,,0.133513351,445,3333,0.075693052,0.191333651,3.208542072,,,,,,,2.50901159,2.853828843,3.38015801,3.120554459,,,,,,,2.45741835,2.975898971,3.207403427,0.059264456,,,,,-2947.723333,,,,,0.832768455,40296,48388,0.776904787,0.888632123,49524,,,43555.82979,55492.17021,,,,,,,25123,10847.76596,39398.23404,50500,40599.91489,60400.08511,55468,51860.17021,59075.82979,,,,,,0.38072149,3926,10312,,,46.87131893,,,,,0.298521929,,49524,,,9.288747346,35,3768,,,4.963803942,25,503646,3.212312189,7.327553817,,,,,,,,,,,,,5.23251389,3.279188597,7.922088912,,,,20.08886752,75,358790,15.59979168,25.46742639,20.90359263,,,,,,,,,,,,,23.17172998,17.84505561,29.58978188,,,,18.11644695,65,358790,13.98189128,23.0908988,,,,,,,,,,,,,20.10380263,15.34131933,25.87757904,,,,19.65666361,99,503646,15.97596623,23.93128264,,,,,,,,,,,,,21.88142172,17.63951422,26.83562129,,,,22.83018868,,5300,,,70,51,0.677039638,36638,54115,,,0.611,,,,,20.58525428,,,,,0.728009659,21105,28990,0.707261255,0.748758062,0.099739715,2759,27662,0.08521398,0.114265451,0.779924112,22610,28990,0.755612997,0.804235227,71403,,,,,0.208632691,14897,71403,,,0.211517723,15103,71403,,,0.037015252,2643,71403,,,0.007282607,520,71403,,,0.008038878,574,71403,,,0.001134406,81,71403,,,0.120485134,8603,71403,,,0.821127964,58631,71403,,,0.021138932,1431,67695,0.01555213,0.026725734,0.50776578,36256,71403,,,0.75680713,54005,71359,, -37,173,37173,NC,Swain County,2024,1,16480.9749,417,39212,14023.4823,18938.46751,0,22835.11743,17765.05373,27905.18112,,,,,2,,,,2,,,,2,14678.61822,11574.4113,17782.82514,,,,,2,,0.191,,,0.164,0.222,4.246732491,,,3.375074602,5.269224053,5.415536526,,,4.294267032,6.690155301,0.083184258,93,1118,0.066996124,0.099372391,0,0.094986807,0.06546822,0.124505395,,,,,,,0.117647059,0.049152146,0.186141971,0.074702886,0.053470064,0.095935708,,,,,,,0.226,,,0.185,0.27,0.385,,,0.301,0.473,7.5,0.015116342,0.151,,,0.254,,,0.208,0.306,0.973507119,13743,14117,,,0.168445092,,,0.131726337,0.210372499,0,0,10,0,0.200587713,530.6,75,14136,,,41.56393096,118,2839,34.06444179,49.06342014,41.2371134,29.46039839,56.15324429,,,,,,,60.08583691,32.84948616,100.8138246,41.51493081,31.44300318,53.78740816,,,,,,,0.204216697,2160,10577,0.180386909,0.228046484,0.000636672,9,14136,,,1570.666667,0.000859168,12,13967,,,1163.916667,0.003579867,50,13967,,,279.34,2875,,,,,4245,,,,2382,0.33,,,,,0.31,,,,0.34,0.42,,,,,0.47,,0.33,,0.4,0.851200331,8226,9664,0.823303202,0.879097461,0.547526237,1826,3335,0.456128298,0.638924176,0.032424158,233,7186,,,0.207,623,,0.128361702,0.285638298,0.184944238,0.09053938,0.279349096,,,,,,,0.301619433,0.108614801,0.494624065,0.392185239,0.296022135,0.488348343,5.421405166,112505,20752,4.333140464,6.509669868,0.311139161,986,3169,0.212481066,0.409797256,8.488964346,12,14136,,,133.5676626,95,71125,108.0642152,163.2795411,179.8283923,125.2570642,250.0977618,,,,,,,,,,137.0308436,104.3142271,176.7598044,,,,7.2,,,,,0,,,,,0.139372822,800,5740,0.099823037,0.178922608,0.101065719,0.064914988,0.137216451,0.041637631,0.01683412,0.066441142,0.004355401,0,0.010412628,0.807295374,4537,5620,0.781189571,0.833401176,0.76442953,0.684787452,0.844071609,,,,,,,,,,0.832988625,0.784329512,0.881647737,0.213,,5620,0.145873558,0.280126442,69.27313909,,,67.70753113,70.83874705,64.6871656,61.85682897,67.51750223,,,,,,,,,,70.3836466,68.39016064,72.37713255,,,,781.3604315,417,39212,701.9115878,860.8092752,1121.886596,929.5970018,1314.17619,,,,,,,,,,714.7248702,620.0966382,809.3531021,,,,72.21780891,10,13847,34.63124645,132.8111219,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.137,,,0.119,0.158,0.187,,,0.162,0.215,0.121,,,0.103,0.14,93,11,11828,,,0.151,2140,,,,0.015116342,211.3415823,13981,,,49.31198046,21,42586,30.52489312,75.37860033,85.27330093,40.89186234,156.8206365,,,,,,,,,,39.24646782,18.82020681,72.17565166,,,,0.34,,,0.327,0.352,0.243243243,1863,7659,0.21226452,0.274221967,0.103527107,317,3062,0.073739872,0.133314341,0.002577504,36,13967,,,387.9722222,0.775,110.05,142,,,,,,,,3.012809451,,,,,,,,,3.258047357,2.912588137,,,,,,,,,3.132656156,0.038170069,,,,,-2725.907,,,,,0.898661066,41076,45708,0.716433079,1.080889053,55462,,,47781.65957,63142.34043,49147,45878.74468,52415.25532,,,,,,,93125,23275.12766,162974.8723,54841,43663.6383,66018.3617,,,,,,0.450234497,864,1919,,,,,,,,0.244257329,,55462,,,12.60504202,9,714,,,,,,,,,,,,,,,,,,,,,,,,,,25.21416059,19,71125,14.68817772,40.37031364,26.71353251,,,,,,,,,,,,,34.22503183,18.22338803,58.52584676,,,,22.49560633,16,71125,12.85818271,36.53145532,,,,,,,,,,,,,30.19323672,16.07662693,51.63135433,,,,18.01711626,18,99905,10.67808496,28.47481134,,,,,,,,,,,,,16.36661211,7.848426671,30.09878239,,,,19,,1000,,,8,11,0.654141601,7068,10805,,,0.37,,,,,6.714916904,,,,,0.727480647,4135,5684,0.688532043,0.766429252,0.121932661,641,5257,0.078897993,0.164967329,0.741907108,4217,5684,0.694903522,0.788910694,13967,,,,,0.222166535,3103,13967,,,0.195818716,2735,13967,,,0.013531897,189,13967,,,0.306150211,4276,13967,,,0.007660915,107,13967,,,0.000787571,11,13967,,,0.072886089,1018,13967,,,0.584878643,8169,13967,,,0.004617906,62,13426,0,0.01288213,0.515787213,7204,13967,,,1,14117,14117,, -37,175,37175,NC,Transylvania County,2024,1,7437.411735,509,87439,6151.248613,8723.574858,0,,,,2,,,,2,,,,2,,,,2,7381.018115,6008.613563,8753.422666,,,,,2,,0.13,,,0.106,0.159,3.282070096,,,2.529403778,4.247135625,4.600548655,,,3.596399443,5.837424438,0.086858432,154,1773,0.073749215,0.099967649,0,,,,,,,,,,0.090277778,0.043469824,0.137085732,0.083944037,0.069915201,0.097972874,,,,,,,0.156,,,0.118,0.198,0.345,,,0.269,0.444,8,0.029514133,0.12,,,0.203,,,0.161,0.254,0.843539684,27825,32986,,,0.161707018,,,0.12892416,0.20526942,0.111111111,2,18,0.022704408,0.253963321,211.1,70,33165,,,14.74201474,84,5698,11.75880831,18.25161737,,,,,,,,,,32.36245955,15.51905727,59.51571535,13.49325337,10.36858638,17.26373255,,,,,,,0.136549248,3043,22285,0.118676908,0.154421589,0.00066335,22,33165,,,1507.5,0.000479688,16,33355,,,2084.6875,0.003417778,114,33355,,,292.5877193,1803,,,,,,,,,1740,0.46,,,,,,,0.38,,0.46,0.52,,,,,,,0.34,,0.52,0.937678718,23938,25529,0.92363943,0.951718007,0.650038139,4261,6555,0.570594302,0.729481976,0.034386869,507,14744,,,0.209,1037,,0.145851064,0.272148936,,,,,,,0.598159509,0.299167071,0.897151947,0.420512821,0.114051989,0.726973652,0.144317352,0.094798606,0.193836099,4.181334929,118775,28406,3.611720569,4.750949289,0.285377359,1452,5088,0.208125792,0.362628926,17.78983869,59,33165,,,105.1586486,179,170219,89.75319277,120.5641044,,,,,,,,,,,,,107.4533555,91.05750001,123.8492109,,,,6.8,,,,,0,,,,,0.112286689,1645,14650,0.090062777,0.134510602,0.081950208,0.061331735,0.10256868,0.024573379,0.012043332,0.037103426,0.012627986,0.004322046,0.020933927,0.776548186,10596,13645,0.738807366,0.814289006,,,,,,,,,,,,,0.77785651,0.731990393,0.823722628,0.304,,13645,0.251696467,0.356303533,79.51108405,,,78.43054861,80.59161949,,,,,,,,,,,,,79.43051378,78.29878269,80.56224486,,,,333.9640856,509,87439,299.5902162,368.3379549,,,,,,,,,,,,,336.272612,299.9741571,372.5710669,,,,74.37094575,18,24203,44.07693584,117.5381575,,,,,,,,,,,,,66.0703395,35.17967316,112.9822927,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.103,,,0.086,0.123,0.157,,,0.134,0.185,0.089,,,0.075,0.106,135.2,40,29591,,,0.12,3970,,,,0.029514133,976.6226533,33090,,,17.63875823,18,102048,10.45384601,27.87684253,,,,,,,,,,,,,17.38280189,9.935773213,28.22858124,,,,0.326,,,0.307,0.345,0.159034041,2733,17185,0.136395743,0.181672339,0.062859262,339,5393,0.043795432,0.081923092,0.000689552,23,33355,,,1450.217391,0.84,236.04,281,,,,,,,,3.307438382,,,,,,,,2.995342182,3.39556369,3.04509221,,,,,,,,2.925404902,3.087403634,0.038142198,,,,,-454.6191,,,,,0.969667122,43316,44671,0.87101667,1.068317574,62173,,,54433.08511,69912.91489,,,,,,,33616,5521.87234,61710.12766,34492,16583.91489,52400.08511,63181,57760.91489,68601.08511,,,,,,0.478665865,1593,3328,,,51.48328589,,,,,0.255834526,,62173,,,7.434944238,10,1345,,,,,,,,,,,,,,,,,,,,,,,,,,17.24964507,33,170219,11.26804086,25.2747267,19.38678996,,,,,,,,,,,,,15.56857651,9.637194237,23.79822297,,,,11.74956967,20,170219,7.176942401,18.14625741,,,,,,,,,,,,,10.41971932,5.955769889,16.92097138,,,,11.81873438,28,236912,7.853463166,17.08136183,,,,,,,,,,,,,12.16448252,7.946243849,17.82378535,,,,23.15789474,,1900,,,24,20,0.724573864,20404,28160,,,0.507,,,,,37.65188146,,,,,0.761304257,10927,14353,0.728506052,0.794102462,0.112676056,1552,13774,0.085060734,0.140291379,0.85995959,12343,14353,0.837726519,0.882192662,33355,,,,,0.150592115,5023,33355,,,0.321451057,10722,33355,,,0.030849948,1029,33355,,,0.004946785,165,33355,,,0.006925498,231,33355,,,0.000659571,22,33355,,,0.035257083,1176,33355,,,0.901424074,30067,33355,,,0.006032614,192,31827,0.000883197,0.011182031,0.513895968,17141,33355,,,0.604104772,19927,32986,, -37,177,37177,NC,Tyrrell County,2024,1,7774.931444,67,10003,5078.843352,11392.07598,0,,,,2,,,,2,7568.164031,3778.000216,13541.53599,1,,,,2,8858.516313,4716.786851,15148.33268,1,,,,2,,0.203,,,0.175,0.236,3.942114122,,,3.180740369,4.80190143,4.887600393,,,3.858193149,6.075382447,0.041044776,11,268,0.017291868,0.064797684,1,,,,,,,,,,,,,,,,,,,,,,0.211,,,0.174,0.255,0.398,,,0.316,0.486,7.5,0.042146793,0.137,,,0.281,,,0.232,0.337,0.883513097,2867,3245,,,0.153275309,,,0.122479546,0.188973791,0,0,2,0,0.510593623,368.8,12,3254,,,30.71672355,18,586,18.2046771,48.54566599,,,,,,,,,,,,,41.32231405,19.81565577,75.99320679,,,,,,,0.174382023,388,2225,0.149360746,0.199403299,,0,3254,,,,0,0,3365,,,-3365,0.000297177,1,3365,,,3365,2713,,,,,,,1205,,1172,0.38,,,,,,,0.34,,0.42,0.32,,,,,,,0.29,,0.33,0.773406766,1966,2542,0.672728629,0.874084904,0.306122449,255,833,0.168897208,0.44334769,0.051868802,68,1311,,,0.281,200,,0.179723404,0.382276596,,,,,,,0.776785714,0.404812227,1,0.421487603,0.043737221,0.799237986,0.098684211,0,0.247053681,4.314146342,88440,20500,2.310774285,6.317518398,0.262521589,152,579,0.044569128,0.48047405,15.36570375,5,3254,,,135.2265044,26,19227,88.33444227,198.1381603,,,,,,,,,,,,,216.5841584,134.0690077,331.0718929,,,,5.8,,,,,0,,,,,0.145454546,240,1650,0.072832053,0.218077038,0.125382263,0.05281529,0.197949236,0.012121212,0,0.039151673,0.012121212,0,0.035004181,0.776360544,913,1176,0.654437245,0.898283843,,,,,,,,,,,,,0.75,0.669193393,0.830806607,0.317,,1176,0.172411895,0.461588105,77.61655357,,,74.92839011,80.30471703,,,,,,,,,,,,,76.41262439,72.62158779,80.203661,,,,441.1896641,67,10003,335.8540138,569.1025224,,,,,,,518.4429876,338.6641721,759.6390977,,,,442.7963738,296.5476809,635.9294548,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.131,,,0.114,0.152,0.17,,,0.147,0.196,0.132,,,0.113,0.153,,,,,,0.137,470,,,,0.042146793,185.7409146,4407,,,,,,,,,,,,,,,,,,,,,,,,,,0.374,,,0.361,0.387,0.209937888,338,1610,0.177767675,0.242108101,0.080620155,52,645,0.0532159,0.10802441,0,0,3365,,,-3365,,,,,,,,,,,2.97076681,,,,,,,,,,2.638642107,,,,,,,,,,0.005655443,,,,,-11188.16,,,,,0.625265066,36563,58476,0.534737589,0.715792543,42514,,,36101.40426,48926.59575,,,,,,,34375,27696.70213,41053.29787,71250,5780.042553,136719.9575,58728,55427.57447,62028.42553,,,,,,0.982954546,519,528,,,,,,,,0.293432752,,42514,,,26.08695652,3,115,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,300,,,-888,-888,0.545645646,1817,3330,,,0.449,,,,,14.7511498,,,,,0.748334567,1011,1351,0.666584055,0.830085079,0.111801242,144,1288,0.039008905,0.184593579,0.754256107,1019,1351,0.676272218,0.832239996,3365,,,,,0.214264487,721,3365,,,0.235066865,791,3365,,,0.296879643,999,3365,,,0.01307578,44,3365,,,0.019910847,67,3365,,,0,0,3365,,,0.126300149,425,3365,,,0.531352155,1788,3365,,,0.016832918,54,3208,0,0.040519121,0.479346211,1613,3365,,,1,3245,3245,, -37,179,37179,NC,Union County,2024,1,6106.374806,2486,691093,5740.344803,6472.404809,0,,,,2,1987.814336,1245.752661,3009.574794,1,11068.88489,9552.660904,12585.10887,,4537.426243,3648.713249,5426.139237,,5732.388708,5313.082881,6151.694534,,,,,2,,0.125,,,0.103,0.149,2.976336242,,,2.262157738,3.743566623,4.406998734,,,3.479499216,5.395576632,0.077073576,1300,16867,0.073048506,0.081098646,0,,,,0.106306306,0.080662444,0.131950169,0.146810507,0.13178726,0.161833753,0.078972109,0.069614478,0.08832974,0.061371158,0.056796644,0.065945673,,,,0.068421053,0.043036531,0.093805574,0.136,,,0.105,0.168,0.314,,,0.25,0.382,8.5,0.075680186,0.076,,,0.194,,,0.155,0.235,0.714719202,170294,238267,,,0.184072504,,,0.148492934,0.222832737,0.210526316,24,114,0.16352527,0.260755052,395.7,964,243648,,,9.486785227,654,68938,8.759698418,10.21387204,,,,,,,17.54832147,14.62044931,20.47619362,25.04257237,21.93826294,28.14688181,4.917892576,4.282311159,5.553473994,,,,17.16068643,11.81262692,24.09998402,0.102515825,21507,209792,0.091792421,0.11323923,0.000685415,167,243648,,,1458.97006,0.00031718,79,249070,,,3152.78481,0.001409242,351,249070,,,709.6011396,3342,,,,,,,4302,3965,3269,0.46,,,,,,0.47,0.42,0.32,0.47,0.49,,,,,,0.56,0.39,0.41,0.5,0.904474292,139867,154639,0.896946631,0.912001953,0.701122985,38709,55210,0.670115193,0.732130777,0.03147159,4101,130308,,,0.087,5386,,0.060787234,0.113212766,0.024221453,0,0.216792365,0.099161502,0.035560809,0.162762195,0.254764293,0.190981782,0.318546803,0.159110432,0.121697688,0.196523177,0.043517773,0.029354278,0.057681268,4.146637166,183667,44293,3.879516064,4.413758268,0.143419726,8959,62467,0.127184428,0.159655023,8.003349094,195,243648,,,52.70453753,630,1195343,48.58893142,56.82014364,,,,,,,58.34969971,46.40724779,72.42736255,33.92203705,24.9246369,45.10911806,57.48961241,52.38884476,62.59038005,,,,9.1,,,,,0,,,,,0.099241548,7720,77790,0.089402598,0.109080498,0.077257395,0.069370781,0.085144009,0.022625016,0.017527583,0.027722449,0.004499293,0.002287877,0.00671071,0.73251644,87220,119069,0.720464443,0.744568437,,,,0.512234385,0.408637515,0.615831255,0.679008725,0.638937901,0.719079549,0.658898722,0.590243775,0.727553668,0.692606877,0.668908801,0.716304952,0.477,,119069,0.456709667,0.497290333,78.94310647,,,78.5754613,79.31075163,,,,84.87771959,82.16448878,87.5909504,74.24504578,73.02010582,75.46998574,86.79747514,83.32172316,90.27322712,79.13385028,78.721758,79.54594257,,,,311.1904963,2486,691093,298.6741749,323.7068177,,,,150.8853598,102.5192815,214.1697242,503.1946882,456.2357617,550.1536147,197.2278521,160.3123455,234.1433587,299.8899399,285.7024962,314.0773836,,,,33.46342976,95,283892,27.07391299,40.90730758,,,,,,,73.39449541,47.02523809,109.2051914,42.39443785,25.89562402,65.47477086,26.37710467,19.44839475,34.97221402,,,,4.322507054,72,16657,3.382095557,5.443482262,,,,,,,11.99040767,7.759559639,17.70020705,,,,3.226724874,2.234600777,4.509024589,,,,,,,0.095,,,0.08,0.111,0.145,,,0.122,0.167,0.091,,,0.077,0.106,144.5,292,202123,,,0.076,17850,,,,0.075680186,15233.81605,201292,,,16.61930394,121,728069,13.65804615,19.58056173,,,,,,,12.77777132,6.378617407,22.86296248,,,,20.2710868,16.37510935,24.16706426,,,,0.306,,,0.293,0.32,0.123382996,18103,146722,0.110276613,0.136489379,0.057314918,3826,66754,0.043017045,0.07161279,0.000718674,179,249070,,,1391.452514,0.927103854,3463.66,3736,,,0.028634493,480,16763,0.016727157,0.040541828,3.398610575,,,,,,3.960405988,2.852596665,2.915701717,3.634932398,3.397451914,,,,,,4.184515369,2.797539868,3.082237925,3.581675204,0.135299424,,,,,-127.1016,,,,,0.772043162,54734,70895,0.727921427,0.816164898,95079,,,88842.74468,101315.2553,84783,66575.85106,102990.1489,214151,190859.766,237442.234,70810,63688.46809,77931.53192,78711,71832.53192,85589.46809,101334,97821.48936,104846.5106,,,,,,0.232525752,9684,41647,,,33.4281803,,,,,0.212602152,,95079,,,5.821078431,76,13056,,,3.465696596,57,1644691,2.624884757,4.490211925,,,,,,,15.54057904,10.48516342,22.18514289,,,,1.784953859,1.104914572,2.728491581,,,,8.959903877,107,1195343,7.216299226,10.70350853,8.95140558,,,,,,,,,,,,,10.5060587,8.403490849,12.97489702,,,,8.031167623,96,1195343,6.505271559,9.807430252,,,,,,,19.212706,12.66129432,27.95347853,,,,7.421814716,5.703126209,9.495725069,,,,10.64029657,175,1644691,9.063808165,12.21678497,,,,,,,16.57661765,11.3383942,23.40123811,12.23397748,7.755292279,18.35697305,9.944742928,8.142734983,11.74675087,,,,12.5203252,,24600,,,142,166,0.808709877,131011,162000,,,0.727,,,,,34.65367411,,,,,0.825354113,66252,80271,0.81366681,0.837041416,0.080418421,6304,78390,0.071265481,0.089571361,0.929949795,74648,80271,0.920771251,0.939128339,249070,,,,,0.252342715,62851,249070,,,0.137824708,34328,249070,,,0.11867748,29559,249070,,,0.006937809,1728,249070,,,0.046898462,11681,249070,,,0.000975629,243,249070,,,0.12398121,30880,249070,,,0.688477135,171479,249070,,,0.026006904,5907,227132,0.022077031,0.029936776,0.501638094,124943,249070,,,0.276328657,65840,238267,, -37,181,37181,NC,Vance County,2024,1,14538.75019,1016,121185,13187.2762,15890.22418,0,,,,2,,,,2,16567.53483,14573.79812,18561.27155,,8674.053229,5557.629574,12906.30364,1,13627.11653,11395.22912,15859.00393,,,,,2,,0.209,,,0.18,0.242,4.035907075,,,3.203290045,4.967879476,5.152514028,,,4.059953523,6.318735708,0.125651721,482,3836,0.1151625,0.136140941,0,,,,,,,0.156176053,0.140697175,0.171654931,0.046421663,0.028285337,0.06455799,0.101599247,0.083436994,0.119761501,,,,0.111111111,0.051839508,0.170382715,0.207,,,0.169,0.246,0.432,,,0.352,0.516,7.5,0.029939875,0.143,,,0.294,,,0.243,0.348,0.661773686,28177,42578,,,0.144897863,,,0.11461348,0.179840565,0.22,11,50,0.147965987,0.2985802,1000.4,422,42185,,,36.23044942,366,10102,32.5186094,39.94228944,,,,,,,35.81020591,30.84716458,40.77324724,52.11480363,40.54842791,65.95461941,27.66251729,21.93465581,34.42839729,,,,69.12442396,38.68841536,114.0102252,0.143052683,4703,32876,0.125180342,0.160925023,0.000379282,16,42185,,,2636.5625,0.000593289,25,42138,,,1685.52,0.002705397,114,42138,,,369.631579,3159,,,,,,,4532,,2293,0.39,,,,,,,0.37,0.64,0.4,0.47,,,,,,,0.4,0.33,0.5,0.846666667,24384,28800,0.825814422,0.867518911,0.501459854,4809,9590,0.428579834,0.574339874,0.05809178,976,16801,,,0.315,3100,,0.212531915,0.417468085,,,,,,,0.374828465,0.286305296,0.463351634,0.178975383,0.070314984,0.287635782,0.158114785,0.06541207,0.250817501,4.791535535,102007,21289,3.962355971,5.620715099,0.457854026,4617,10084,0.380834019,0.534874034,14.69716724,62,42185,,,127.1392311,280,220231,112.2471073,142.0313548,,,,,,,121.0273881,100.6112851,141.443491,,,,155.4628234,129.041364,181.8842827,,,,8.1,,,,,0,,,,,0.166025451,2805,16895,0.13629378,0.195757123,0.140794224,0.110975138,0.17061331,0.022195916,0.012595278,0.031796554,0.00799053,0.000980506,0.015000554,0.800373557,14141,17668,0.767684577,0.833062537,,,,,,,0.757527481,0.696237349,0.818817613,0.757575758,0.570115304,0.945036211,0.814371258,0.762548567,0.866193948,0.301,,17668,0.255880452,0.346119549,71.88350472,,,70.93270183,72.83430761,,,,,,,69.88213444,68.55505122,71.20921766,,,,72.96512315,71.41283057,74.51741573,,,,642.8237297,1016,121185,600.6985673,684.9488921,,,,,,,739.188164,675.1613867,803.2149412,380.7131142,238.5908818,576.4042301,595.0396707,529.6410828,660.4382587,,,,102.5909676,47,45813,75.37998421,136.4242384,,,,,,,140.6695872,97.98152165,195.6373432,,,,,,,,,,8.270871026,32,3869,5.657269659,11.67600209,,,,,,,11.63873371,7.53197479,17.1810669,,,,,,,,,,,,,0.134,,,0.115,0.154,0.178,,,0.154,0.203,0.142,,,0.121,0.162,517.3,182,35181,,,0.143,6110,,,,0.029939875,1359.929009,45422,,,37.27993427,49,131438,27.5799006,49.28605015,,,,,,,26.98367488,15.99223587,42.64583967,,,,55.47410548,36.86214022,80.17552788,,,,0.372,,,0.358,0.385,0.180248177,4227,23451,0.155226901,0.205269454,0.052346026,521,9953,0.035665175,0.069026877,0.001518819,64,42138,,,658.40625,0.857169118,466.3,544,,,0.16957606,408,2406,0.084137679,0.255014441,2.917635397,,,,,,,2.737433447,2.973186727,3.271029654,2.97862904,,,,,,,2.76582887,3.33801745,3.232954538,0.16324208,,,,,-19424.36,,,,,0.911219822,40234,44154,0.766701252,1.055738391,49961,,,44278.78723,55643.21277,81250,5940.723404,156559.2766,,,,39836,34840.08511,44831.91489,56071,48319.17021,63822.82979,56071,51238.31915,60903.68085,,,,,,0.954074741,6357,6663,,,32.23026689,,,,,0.30685935,,49961,,,11.2528132,30,2666,,,22.65056966,70,309043,17.65723026,28.61763212,,,,,,,40.33342296,30.99330964,51.60396886,,,,,,,,,,8.017336589,17,220231,4.582600586,13.01965233,7.719167601,,,,,,,,,,,,,17.02629082,8.79773292,29.74150359,,,,27.69818963,61,220231,21.18692035,35.57948332,,,,,,,42.13546103,30.9595519,56.03123075,,,,12.8578275,6.418581159,23.00620509,,,,31.38721796,97,309043,25.45291936,38.28974412,,,,,,,37.77257071,28.75423093,48.72386417,,,,25.5207047,17.34008066,36.2246032,,,,18.61111111,,3600,,,34,33,0.643450283,20999,32635,,,0.558,,,,,48.71804314,,,,,0.590336786,9518,16123,0.557869034,0.622804538,0.154053521,2343,15209,0.120560799,0.187546243,0.799230912,12886,16123,0.764607043,0.833854782,42138,,,,,0.237979971,10028,42138,,,0.194242726,8185,42138,,,0.505861693,21316,42138,,,0.009706203,409,42138,,,0.009611277,405,42138,,,0.000830604,35,42138,,,0.089776449,3783,42138,,,0.377687598,15915,42138,,,0.014371288,571,39732,0.008255162,0.020487414,0.529308463,22304,42138,,,0.532763399,22684,42578,, -37,183,37183,NC,Wake County,2024,1,5150.899825,9013,3235505,4997.546238,5304.253413,0,,,,2,2464.181232,2072.850778,2855.511686,,8944.155847,8486.488783,9401.822912,,4146.73745,3736.226302,4557.248598,,4414.22612,4231.307087,4597.145153,,,,,2,,0.108,,,0.09,0.127,2.703524185,,,2.142343859,3.343148711,4.029482719,,,3.354378457,4.747903879,0.077287962,6941,89807,0.075541376,0.079034548,0,0.075342466,0.032528051,0.118156881,0.078469669,0.072820269,0.08411907,0.130302545,0.125482843,0.135122248,0.069347203,0.065281251,0.073413154,0.057746448,0.055593857,0.059899038,,,,0.077003667,0.065044283,0.088963051,0.105,,,0.081,0.131,0.316,,,0.272,0.362,8.5,0.053861653,0.085,,,0.155,,,0.127,0.185,0.880998929,995009,1129410,,,0.214836465,,,0.184935697,0.247197006,0.285714286,96,336,0.258314499,0.313524653,500.2,5753,1150204,,,9.51939841,2528,265563,9.1483103,9.890486521,,,,0.889828152,0.508613673,1.445025171,16.89281331,15.84104223,17.94458439,29.91512453,28.12681515,31.70343391,2.396239314,2.141528841,2.650949787,,,,9.1716265,7.411607806,11.22374805,0.091709378,90541,987260,0.084560441,0.098858314,0.000864195,994,1150204,,,1157.146881,0.000743817,874,1175021,,,1344.41762,0.003953121,4645,1175021,,,252.9646932,2314,,,,,,1065,3647,2555,2058,0.48,,,,,0.33,0.38,0.45,0.3,0.49,0.57,,,,,0.29,0.56,0.43,0.42,0.59,0.939713878,718805,764919,0.936265292,0.943162464,0.820594626,274955,335068,0.804131126,0.837058125,0.030608043,19325,631370,,,0.083,21956,,0.06393617,0.10206383,0.047801147,0,0.161576444,0.053821313,0.030044467,0.077598159,0.18955178,0.165844392,0.213259168,0.210708454,0.178240504,0.243176405,0.037964932,0.030462426,0.045467437,4.442165025,186220,41921,4.318046868,4.566283182,0.205656647,54295,264008,0.193110882,0.218202411,9.893897083,1138,1150204,,,50.40707037,2802,5558744,48.54063283,52.27350792,,,,12.65167365,9.504326632,16.50768973,58.40262063,53.90237451,62.90286675,27.26716963,23.00190182,31.53243744,58.09589934,55.49858294,60.69321575,,,,10.2,,,,,1,,,,,0.119023262,48865,410550,0.113834483,0.12421204,0.099898238,0.094798478,0.104997999,0.019011083,0.016721191,0.021300975,0.004627938,0.003622915,0.005632961,0.676621446,400499,591910,0.670337727,0.682905165,0.848902282,0.729502478,0.968302085,0.538589333,0.51258934,0.564589327,0.737524157,0.722528411,0.752519902,0.678156696,0.657805765,0.698507627,0.702703458,0.695197744,0.710209172,0.365,,591910,0.354544723,0.375455277,81.15864111,,,80.977925,81.33935722,85.84560748,79.4508882,92.24032676,88.67335985,87.18714992,90.15956978,76.5221453,76.0840421,76.9602485,85.09029604,83.69317195,86.48742012,81.92816931,81.71749722,82.13884139,,,,249.8687457,9013,3235505,244.6675847,255.0699067,,,,120.915051,106.1277211,135.702381,411.1110905,395.8723424,426.3498386,198.5870047,178.9019168,218.2720926,223.0744048,216.9593096,229.1895,,,,45.0185797,531,1179513,41.18944539,48.84771401,,,,42.94632757,30.81902613,58.26154268,91.24240344,79.13016139,103.3546455,46.08694709,36.81261644,56.98722379,28.75353429,24.48112666,33.02594191,,,,5.527576465,495,89551,5.040622136,6.014530794,,,,5.091167417,3.684503104,6.857769099,12.08634612,10.52091719,13.65177506,5.547185317,4.405265854,6.894644856,2.909347381,2.413024056,3.405670705,,,,,,,0.083,,,0.07,0.096,0.124,,,0.106,0.142,0.088,,,0.075,0.101,371.7,3588,965275,,,0.085,94980,,,,0.053861653,48528.9727,900993,,,16.41017301,557,3394236,15.04734317,17.77300285,,,,,,,21.64085081,18.13047208,25.15122954,5.097417309,3.021052555,8.056116977,18.90678012,17.0057813,20.80777894,,,,0.305,,,0.293,0.317,0.108480604,78277,721576,0.100140178,0.116821029,0.049319734,13757,278935,0.039787819,0.058851649,0.001599971,1880,1175021,,,625.0111702,0.898579791,12280.89,13667,,,0.052782696,3309,62691,0.040387546,0.065177846,3.402656952,,,,,,3.855332665,2.841108101,2.822331222,3.7778719,3.282921629,,,,,,4.152960796,2.558930165,2.765799149,3.654150217,0.140176538,,,,,-2149.889,,,,,0.76102059,60578,79601,0.733557716,0.788483464,97099,,,93519.76596,100678.234,70761,47764.06383,93757.93617,147267,139347.1702,155186.8298,59518,56331.95745,62704.04255,67158,62959.19149,71356.80851,110728,109061.1064,112394.8936,,,,,,0.231506114,38377,165771,,,45.17674224,,,,,0.257613364,,97099,,,5.233633616,348,66493,,,3.080055357,235,7629733,2.686250868,3.473859846,,,,,,,10.66930585,9.031364169,12.30724753,2.422863672,1.458722203,3.783601749,1.073947887,0.794512559,1.419816061,,,,8.944380895,511,5558744,8.160585345,9.728176445,9.192724112,,,,4.374000767,2.448095026,7.214249088,5.095236766,3.869026897,6.586775066,4.002361695,2.068078692,6.991320421,11.63086026,10.48357654,12.77814398,,,,7.069942419,393,5558744,6.370944838,7.76894,,,,,,,12.09575141,10.04772042,14.14378241,2.778819835,1.588335635,4.512629319,7.012616362,6.110230755,7.915001969,,,,7.431452713,567,7629733,6.819753023,8.043152403,,,,3.179088661,1.884129421,5.024330673,13.22208455,11.39869141,15.04547769,8.161225,6.285137714,10.42170213,6.093010462,5.376758875,6.809262049,,,,8.948497854,,93200,,,594,240,0.83119668,631830,760145,,,0.703,,,,,111.5910597,,,,,0.643307619,276942,430497,0.636755101,0.649860137,0.116964368,49524,423411,0.111081365,0.122847371,0.941541985,405331,430497,0.936818546,0.946265424,1175021,,,,,0.226795947,266490,1175021,,,0.130304054,153110,1175021,,,0.196472233,230859,1175021,,,0.00784837,9222,1175021,,,0.088941389,104508,1175021,,,0.000832326,978,1175021,,,0.10587215,124402,1175021,,,0.582731713,684722,1175021,,,0.024630533,26256,1065994,0.022472118,0.026788948,0.50896367,598043,1175021,,,0.051573831,58248,1129410,, -37,185,37185,NC,Warren County,2024,1,13320.30729,420,51560,11111.05142,15529.56317,0,,,,2,,,,2,15821.39257,12364.96987,19277.81527,,,,,2,11073.20657,7967.445161,14178.96798,,,,,2,,0.215,,,0.184,0.244,4.144248201,,,3.25814922,5.089965255,5.062899203,,,4.035975943,6.158897619,0.119831224,142,1185,0.101340033,0.138322414,0,,,,,,,0.142625608,0.115032698,0.170218517,,,,0.093023256,0.064083529,0.121962983,,,,,,,0.22,,,0.18,0.26,0.435,,,0.349,0.522,7.8,0.013570363,0.138,,,0.294,,,0.242,0.348,0.289936702,5405,18642,,,0.131708401,,,0.102275713,0.165336145,0.228571429,8,35,0.141673695,0.323835534,591.6,111,18762,,,23.19512902,80,3449,18.39229475,28.86834589,,,,,,,21.39037433,15.28159703,29.1276187,,,,24.49888641,15.35332168,37.09160845,,,,,,,0.161861647,2038,12591,0.141606328,0.182116966,5.32992E-05,1,18762,,,18762,0.000213755,4,18713,,,4678.25,0.001015337,19,18713,,,984.8947368,2223,,,,,,,3055,,1056,0.43,,,,,,,0.44,,0.41,0.43,,,,,0.32,,0.38,0.54,0.46,0.854488503,12003,14047,0.833618941,0.875358065,0.447246022,1827,4085,0.375547402,0.518944642,0.06336261,404,6376,,,0.273,877,,0.166957447,0.379042553,0.268518519,0.120352363,0.416684674,,,,0.457293036,0.343547469,0.571038602,0.13559322,0,0.284589444,0.237668161,0.104452887,0.370883436,4.990521581,93193,18674,4.388313409,5.592729753,0.476599526,1609,3376,0.380119051,0.573080001,13.85779768,26,18762,,,115.6542654,113,97705,94.32978272,136.9787481,,,,,,,118.2274043,89.77502483,152.8363361,,,,128.0888082,94.44257572,169.8271767,,,,8,,,,,1,,,,,0.130541872,1060,8120,0.099131642,0.161952102,0.109228824,0.079406898,0.139050751,0.020812808,0.007932418,0.033693198,0.005418719,0,0.011168499,0.807569606,5569,6896,0.770221446,0.844917765,,,,,,,0.772351319,0.664109976,0.880592663,,,,0.801621622,0.712093807,0.891149436,0.397,,6896,0.325282633,0.468717367,74.37702935,,,72.77241747,75.98164122,,,,,,,72.23090259,69.86536286,74.59644232,,,,76.15355647,73.86074397,78.44636898,,,,547.5348372,420,51560,486.9127121,608.1569623,,,,,,,626.4078246,534.7520881,718.0635612,,,,498.5844041,404.0143593,593.1544489,,,,84.73471516,13,15342,45.11766713,144.8989435,,,,,,,119.9904008,57.54006115,220.6666192,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.137,,,0.118,0.156,0.179,,,0.154,0.203,0.147,,,0.126,0.169,456.1,75,16443,,,0.138,2610,,,,0.013570363,284.5976526,20972,,,25.85538223,15,58015,14.47106116,42.64452102,,,,,,,,,,,,,49.4626557,24.69157951,88.50235403,,,,0.391,,,0.378,0.404,0.194115157,1834,9448,0.167902391,0.220327923,0.066666667,221,3315,0.046411348,0.086921986,0.000213755,4,18713,,,4678.25,0.722674419,124.3,172,,,0.154150198,195,1265,0.058031116,0.250269279,2.808642989,,,,,,,2.669076765,,3.416314127,2.588071956,,,,,,,2.460812006,,3.000274489,0.118137521,,,,,-18327.28,,,,,0.771522255,33177,43002,0.651458683,0.891585827,47170,,,40384.46809,53955.53192,38775,25491.08511,52058.91489,,,,32469,28612.14894,36325.85106,39223,25038.31915,53407.68085,63569,52865.85106,74272.14894,,,,,,0.914772727,1771,1936,,,37.78549678,,,,,0.304155183,,47170,,,9.7799511,8,818,,,11.61381173,16,137767,6.638296873,18.86010264,,,,,,,20.17669016,11.03078426,33.85305767,,,,,,,,,,13.95361341,14,97705,7.210035667,24.37415452,14.32884704,,,,,,,,,,,,,22.82149298,10.43543981,43.32230245,,,,21.49327056,21,97705,13.30467324,32.85474718,,,,,,,22.42243875,11.19320063,40.11993663,,,,,,,,,,30.48625578,42,137767,21.97181163,41.2085614,,,,,,,38.91218816,25.64337719,56.61519081,,,,22.72469038,11.74217913,39.69546083,,,,,,1200,,,-888,-888,0.646748351,10293,15915,,,0.475,,,,,5.504231527,,,,,0.704397606,5414,7686,0.676617481,0.732177731,0.124735431,884,7087,0.093207156,0.156263706,0.740567265,5692,7686,0.701702994,0.779431537,18713,,,,,0.174103564,3258,18713,,,0.2737669,5123,18713,,,0.486132635,9097,18713,,,0.057339817,1073,18713,,,0.00486293,91,18713,,,0.000374072,7,18713,,,0.045957356,860,18713,,,0.390904719,7315,18713,,,0.010099329,182,18021,0.002654606,0.017544051,0.498957944,9337,18713,,,1,18642,18642,, -37,187,37187,NC,Washington County,2024,1,15565.63613,283,30310,12503.2807,18627.99156,0,,,,2,,,,2,19345.16233,14721.05755,23969.2671,,,,,2,13620.00014,8660.698338,18579.30193,,,,,2,,0.215,,,0.187,0.247,4.097932924,,,3.238156283,5.036953717,5.155135047,,,4.083537004,6.35674636,0.11957796,102,853,0.09780324,0.14135268,0,,,,,,,0.142307692,0.112279144,0.172336241,,,,0.093984962,0.05891687,0.129053055,,,,,,,0.219,,,0.182,0.259,0.433,,,0.349,0.519,7.3,0.002789302,0.166,,,0.299,,,0.249,0.352,0.631827683,6952,11003,,,0.128452187,,,0.100540675,0.15973816,0.375,3,8,0.179126284,0.556186502,835.5,91,10892,,,38.60127157,85,2202,30.83332471,47.73107008,,,,,,,45.26046114,33.90319123,59.20179755,,,,29.87012987,18.93510005,44.8198609,,,,,,,0.12083387,939,7771,0.102961529,0.13870621,0.000459053,5,10892,,,2178.4,0.000184706,2,10828,,,5414,0.001108238,12,10828,,,902.3333333,2205,,,,,,,2062,,2348,0.46,,,,,,,0.44,,0.47,0.37,,,,,,,0.31,,0.41,0.857575375,6798,7927,0.812854085,0.902296665,0.589879518,1224,2075,0.463775055,0.715983981,0.051270208,222,4330,,,0.353,760,,0.22193617,0.48406383,,,,,,,0.402896082,0.137002229,0.668789935,0.287581699,0.048472708,0.52669069,0.07345576,0,0.2215275,6.014523861,84065,13977,3.437481866,8.591565855,0.451758341,1002,2218,0.344820287,0.558696394,18.36210062,20,10892,,,115.8608287,67,57828,89.79055082,147.1391569,,,,,,,112.1603531,76.20751829,159.2026683,,,,136.8309942,95.30780094,190.2987895,,,,6.4,,,,,0,,,,,0.202483286,1060,5235,0.148424347,0.256542224,0.174523571,0.117634159,0.231412982,0.015281757,0,0.036860749,0.023877746,0.001483354,0.046272138,0.775729647,3030,3906,0.723044347,0.828414946,,,,,,,0.879732739,0.792419612,0.967045867,,,,0.810627473,0.733342676,0.88791227,0.326,,3906,0.229071041,0.422928959,71.48219176,,,69.44543389,73.51894964,,,,,,,69.05722111,66.21935525,71.89508696,,,,72.71013459,69.26595374,76.15431545,,,,631.315047,283,30310,546.6774764,715.9526177,,,,,,,782.2123794,645.7690762,918.6556825,,,,532.2321486,412.87844,651.5858573,,,,109.1594721,11,10077,54.49201516,195.3164485,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.138,,,0.121,0.158,0.183,,,0.16,0.208,0.142,,,0.123,0.163,448,42,9375,,,0.166,1860,,,,0.002789302,36.89688574,13228,,,29.44900904,10,33957,14.12194451,54.15777614,,,,,,,,,,,,,,,,,,,0.383,,,0.37,0.394,0.146718147,836,5698,0.124079849,0.169356445,0.051352591,112,2181,0.03467174,0.068033442,0.000831178,9,10828,,,1203.111111,0.825,71.775,87,,,0.207723036,156,751,0.089508153,0.325937919,2.694523921,,,,,,,2.568124055,,3.168585346,2.572549659,,,,,,,2.477016199,,2.749936181,0.23188912,,,,,-30119.82,,,,,0.789421827,37657,47702,0.696656162,0.882187492,46072,,,39778.55319,52365.44681,,,,,,,25084,15018.29787,35149.70213,90156,81775.06383,98536.93617,52838,37222.34043,68453.65957,,,,,,0.984417965,1074,1091,,,20.43818575,,,,,0.296231985,,46072,,,62.5,11,176,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,22.48045929,13,57828,11.96989779,38.44227004,,,,,,,,,,,,,,,,,,,27.90991166,23,82408,17.69248985,41.87857113,,,,,,,30.47464256,15.74669251,53.23306765,,,,27.3156874,13.09893386,50.23452168,,,,25,,800,,,6,14,0.670810811,6205,9250,,,0.51,,,,,15.57935567,,,,,0.686134368,3360,4897,0.65814955,0.714119187,0.175288005,776,4427,0.113287675,0.237288336,0.663875842,3251,4897,0.60918542,0.718566265,10828,,,,,0.200683413,2173,10828,,,0.273550055,2962,10828,,,0.469985224,5089,10828,,,0.012005911,130,10828,,,0.004432952,48,10828,,,0.000369413,4,10828,,,0.066217215,717,10828,,,0.438492797,4748,10828,,,0.000372232,4,10746,0,0.009445231,0.523642409,5670,10828,,,1,11003,11003,, -37,189,37189,NC,Watauga County,2024,1,6453.417357,570,155970,5527.136709,7379.698005,0,,,,2,,,,2,,,,2,,,,2,6484.83241,5516.076078,7453.588742,,,,,2,,0.141,,,0.118,0.168,3.44318014,,,2.620543233,4.34088904,5.022622551,,,3.899871461,6.161089726,0.076166025,178,2337,0.065411176,0.086920874,0,,,,0.196078431,0.087111998,0.305044865,,,,0.103626943,0.060627963,0.146625923,0.070939335,0.059809692,0.082068977,,,,,,,0.163,,,0.127,0.205,0.328,,,0.253,0.408,7.9,0.025514464,0.126,,,0.211,,,0.17,0.258,0.864992789,46784,54086,,,0.191108124,,,0.151424861,0.235411838,0.285714286,6,21,0.169385198,0.406827936,422.2,229,54234,,,2.993748349,68,22714,2.324762735,3.795289388,,,,,,,,,,,,,2.776424744,2.102836988,3.597180292,,,,,,,0.125869211,5014,39835,0.106805381,0.14493304,0.000792861,43,54234,,,1261.255814,0.000762403,42,55089,,,1311.642857,0.005082684,280,55089,,,196.7464286,1822,,,,,,,,,1867,0.45,,,,,,,,,0.45,0.51,,,,,,,0.34,0.32,0.51,0.92479564,28849,31195,0.911426723,0.938164558,0.7647886,8158,10667,0.693311853,0.836265348,0.032490729,955,29393,,,0.128,820,,0.083914894,0.172085106,,,,,,,,,,0.161165049,0.08867269,0.233657407,0.067365802,0.036470922,0.098260681,6.041576557,111745,18496,5.395512418,6.687640696,0.153460076,1009,6575,0.10280844,0.204111712,13.27580485,72,54234,,,61.52894019,171,277918,52.30667831,70.75120208,,,,,,,,,,,,,64.13106344,54.28572362,73.97640325,,,,6.7,,,,,1,,,,,0.207643906,4455,21455,0.180510795,0.234777017,0.194635652,0.166497789,0.222773514,0.013050571,0.006218676,0.019882466,0.007690515,0.002273012,0.013108018,0.75398265,19121,25360,0.721157602,0.786807698,,,,,,,,,,0.692728694,0.589480835,0.795976553,0.766360903,0.729575874,0.803145933,0.227,,25360,0.192860139,0.261139861,79.74703744,,,78.90790512,80.58616976,,,,,,,,,,86.91419887,70.37737629,103.4510215,79.65995796,78.801166,80.51874991,,,,305.9036406,570,155970,278.4035811,333.4037002,,,,,,,,,,,,,308.5725401,279.6853814,337.4596988,,,,36.37919966,17,46730,21.19222442,58.24662276,,,,,,,,,,,,,36.5230095,20.44165116,60.23914992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.111,,,0.095,0.13,0.166,,,0.142,0.192,0.098,,,0.082,0.116,58.4,29,49621,,,0.126,6790,,,,0.025514464,1303.253295,51079,,,16.18200561,27,166852,10.66404366,23.54396857,,,,,,,,,,,,,16.41809668,10.62492651,24.23634947,,,,0.296,,,0.278,0.312,0.139333374,4615,33122,0.116695076,0.161971672,0.06280945,444,7069,0.04374562,0.08187328,0.001542958,85,55089,,,648.1058824,0.92,338.56,368,,,,,,,,3.463385046,,,,,,,,2.961919407,3.560455203,3.306853612,,,,,,,,3.059030577,3.37644237,0.057413761,,,,,97.97656,,,,,0.852234146,43677,51250,0.753953156,0.950515137,57888,,,50610.38298,65165.61702,46506,31051.19149,61960.80851,95625,31695.6383,159554.3617,46434,41259.3617,51608.6383,34777,22263.97872,47290.02128,50995,45837.04255,56152.95745,,,,,,0.236678793,1106,4673,,,65.14310128,,,,,0.335717247,,57888,,,14.20959147,24,1689,,,,,,,,,,,,,,,,,,,,,,,,,,17.36500683,45,277918,12.34821739,23.73853599,16.19182637,,,,,,,,,,,,,18.03022559,12.69494275,24.85229093,,,,10.43473255,29,277918,6.988304154,14.98601654,,,,,,,,,,,,,11.016379,7.320303838,15.9217349,,,,10.13655763,39,384746,7.208083382,13.85700797,,,,,,,,,,,,,9.929359698,6.916162842,13.80933569,,,,14.61538462,,2600,,,20,18,0.681327976,32220,47290,,,0.474,,,,,87.32658662,,,,,0.609700859,12922,21194,0.58881633,0.630585387,0.224212141,4532,20213,0.189266442,0.259157839,0.890959706,18883,21194,0.868473552,0.913445859,55089,,,,,0.117500772,6473,55089,,,0.173737044,9571,55089,,,0.018805932,1036,55089,,,0.004374739,241,55089,,,0.013342047,735,55089,,,0.000471964,26,55089,,,0.040661475,2240,55089,,,0.909274084,50091,55089,,,0.006671076,353,52915,0.001517628,0.011824524,0.501860626,27647,55089,,,0.48903598,26450,54086,, -37,191,37191,NC,Wayne County,2024,1,11590.62508,2335,338914,10894.15697,12287.09319,0,,,,2,,,,2,14995.65901,13520.3701,16470.94793,,7188.827769,5757.956345,8867.392494,,10987.57201,10037.68588,11937.45815,,,,,2,,0.183,,,0.159,0.213,3.613026138,,,2.862965614,4.435801108,4.735192219,,,3.787526709,5.771206471,0.099244109,1116,11245,0.093717836,0.104770381,0,,,,0.141891892,0.085673942,0.198109842,0.14808207,0.136077606,0.160086533,0.077147623,0.066467927,0.087827319,0.077332807,0.069979218,0.084686396,,,,0.065789474,0.033609237,0.09796971,0.183,,,0.15,0.221,0.392,,,0.318,0.469,7,0.103868568,0.13,,,0.252,,,0.207,0.303,0.558018631,65474,117333,,,0.155256196,,,0.122691165,0.190842643,0.257731959,25,97,0.205677423,0.311876772,830.2,970,116835,,,29.53475231,784,26545,27.46731965,31.60218497,,,,,,,35.85612164,31.90267535,39.80956792,45.45454546,39.52830634,51.38078457,18.71518106,16.21350614,21.21685598,,,,26.11534276,16.73259288,38.85755995,0.148135876,13859,93556,0.131455025,0.164816727,0.000513545,60,116835,,,1947.25,0.000596832,70,117286,,,1675.514286,0.002591955,304,117286,,,385.8092105,3262,,,,,,,4088,1097,3002,0.47,,,,,,0.37,0.45,0.26,0.48,0.45,,,,,,0.38,0.34,0.29,0.5,0.857438545,67110,78268,0.846052489,0.8688246,0.631852456,18603,29442,0.586094926,0.677609985,0.040498197,2055,50743,,,0.264,7185,,0.208,0.32,,,,0.229166667,0.014201265,0.444132069,0.43980313,0.378235907,0.501370353,0.376155879,0.310114096,0.442197661,0.140338186,0.104031182,0.17664519,4.315072452,104524,24223,3.961624152,4.668520752,0.33054241,9080,27470,0.286144843,0.374939977,13.78011726,161,116835,,,91.27296341,558,611353,83.69973382,98.846193,,,,,,,81.47431719,68.6477349,94.30089948,49.53140682,35.05137143,67.98572573,111.2952215,99.76623641,122.8242065,,,,7.8,,,,,0,,,,,0.149585062,7210,48200,0.132472673,0.166697452,0.122692953,0.108391584,0.136994323,0.026556017,0.016603454,0.036508579,0.012033195,0.006984759,0.017081631,0.817696704,43212,52846,0.797787962,0.837605446,,,,0.92746114,0.746389088,1,0.789813066,0.757253689,0.822372443,0.750302611,0.684959041,0.815646181,0.861042966,0.844645691,0.877440242,0.245,,52846,0.219978723,0.270021277,73.61921098,,,73.09873631,74.13968566,,,,,,,71.10486406,70.09375904,72.11596907,88.76483001,76.95178458,100.5778754,74.01009173,73.31726318,74.70292028,,,,549.6488098,2335,338914,526.3273347,572.9702849,,,,,,,668.0986386,621.9469211,714.2503561,347.4590815,274.6519853,433.6446586,529.0464977,498.366656,559.7263394,,,,76.62475762,98,127896,62.20768208,93.38103638,,,,,,,119.2197448,87.59818423,158.5369869,49.86465308,27.26146985,83.66441488,62.26062676,42.85735067,87.43706822,,,,7.446808511,84,11280,5.939866112,9.219655653,,,,,,,13.66676359,10.04182384,18.17389833,,,,4.087193461,2.530037171,6.247709368,,,,,,,0.123,,,0.106,0.142,0.169,,,0.145,0.194,0.124,,,0.106,0.145,344.2,334,97027,,,0.13,15330,,,,0.103868568,12736.67539,122623,,,29.12624027,106,363933,23.58141881,34.67106173,,,,,,,28.20451801,19.29186944,39.81636398,,,,35.83096217,27.82414414,45.42428241,,,,0.347,,,0.334,0.359,0.185627123,12352,66542,0.162988825,0.208265421,0.057983282,1644,28353,0.041302431,0.074664133,0.001475027,173,117286,,,677.9537572,0.82,1194.74,1457,,,0.05776594,347,6007,0.029016491,0.086515389,2.902796911,,,,,,,2.631331048,2.816820089,3.250048303,2.613711066,,,,,,,2.26510679,2.59529,3.001700417,0.146904212,,,,,-11553.53,,,,,0.822386817,38528,46849,0.765935659,0.878837975,55635,,,51828.19149,59441.80851,43021,12901.34043,73140.65957,97798,65720.7234,129875.2766,42194,38903.10638,45484.89362,51580,40878.04255,62281.95745,64961,61189.93617,68732.06383,,,,,,0.98050857,17506,17854,,,43.16509291,,,,,0.269093197,,55635,,,8.452192287,64,7572,,,9.887917546,85,859635,7.898117341,12.22656317,,,,,,,21.66394,16.45033791,28.00566615,,,,3.731236817,2.173582946,5.974071595,,,,10.86509021,65,611353,8.310933099,13.95666292,10.63215524,,,,,,,,,,,,,16.38167069,12.07855078,21.71971869,,,,15.86644705,97,611353,12.86661971,19.35571984,,,,,,,21.551271,15.46556415,29.2367326,,,,15.85490585,11.80501881,20.84627313,,,,17.79825158,153,859635,14.978001,20.61850216,,,,,,,14.56713207,10.35865493,19.91374908,16.19726362,9.435502944,25.9333881,20.63154475,16.67238828,25.24778567,,,,8.484848485,,9900,,,49,35,0.627855972,55537,88455,,,0.612,,,,,32.66326232,,,,,0.613388997,28798,46949,0.59410023,0.632677763,0.1306972,5890,45066,0.114635335,0.146759065,0.868921596,40795,46949,0.852599985,0.885243207,117286,,,,,0.235415992,27611,117286,,,0.173609809,20362,117286,,,0.311128353,36491,117286,,,0.008747847,1026,117286,,,0.013684498,1605,117286,,,0.002054806,241,117286,,,0.134423546,15766,117286,,,0.512695462,60132,117286,,,0.034511586,3798,110050,0.029237193,0.039785978,0.503495728,59053,117286,,,0.535885045,62877,117333,, -37,193,37193,NC,Wilkes County,2024,1,11272.2753,1421,182974,10301.4456,12243.10501,0,,,,2,,,,2,15270.94664,9882.551487,22542.92971,1,7208.930788,4618.897981,10726.31758,1,11381.72868,10326.78222,12436.67515,,,,,2,,0.172,,,0.142,0.205,3.911434639,,,3.071227139,4.887124114,5.168072488,,,4.078303297,6.320288795,0.101455389,481,4741,0.092860734,0.110050045,0,,,,,,,0.131868132,0.082711383,0.181024881,0.067978533,0.047112062,0.088845005,0.105168424,0.095526794,0.114810053,,,,,,,0.202,,,0.159,0.25,0.366,,,0.291,0.447,7.3,0.035182471,0.149,,,0.253,,,0.203,0.308,0.686079825,45260,65969,,,0.15868601,,,0.126071776,0.193917264,0.177419355,11,62,0.115518149,0.247631365,279.6,184,65806,,,31.51777066,423,13421,28.51417562,34.5213657,,,,,,,27.13178295,14.83319821,45.52252155,37.01561596,28.50653473,47.26811522,31.06109923,27.72990727,34.39229118,,,,31.15264798,14.9389056,57.29082879,0.155447606,7840,50435,0.137575265,0.173319946,0.000379905,25,65806,,,2632.24,0.000410434,27,65784,,,2436.444444,0.002386599,157,65784,,,419.0063694,2336,,,,,,,1172,,2362,0.46,,,,,,,0.41,0.24,0.46,0.49,,,,,,,0.38,0.15,0.49,0.814800854,38910,47754,0.795781644,0.833820065,0.553261995,8014,14485,0.492643731,0.61388026,0.038251166,1042,27241,,,0.284,3583,,0.225617021,0.342382979,,,,,,,0.334507042,0.077980625,0.59103346,0.4222347,0.29848221,0.545987189,0.250572652,0.202369812,0.298775492,4.277912078,95560,22338,3.740761667,4.815062489,0.238911214,3151,13189,0.181587736,0.296234691,14.58833541,96,65806,,,105.7767668,359,339394,94.83470573,116.7188279,,,,,,,109.1479637,62.38749201,177.2494549,43.15180806,20.69296926,79.35771141,110.9715953,98.94357858,122.9996121,,,,7.9,,,,,0,,,,,0.094463668,2730,28900,0.077091321,0.111836015,0.080843585,0.06371793,0.097969241,0.012975779,0.005698552,0.020253005,0.008304498,0.003400966,0.013208031,0.814139192,22940,28177,0.788833665,0.839444718,,,,,,,,,,0.836791924,0.72808461,0.945499237,0.799824279,0.766563005,0.833085553,0.333,,28177,0.29382554,0.37217446,74.48184558,,,73.76053661,75.20315455,,,,,,,72.39532801,68.09294263,76.69771338,,,,74.28763329,73.51976306,75.05550352,,,,527.9369493,1421,182974,498.0031106,557.8707879,,,,,,,650.7593532,497.7793412,835.9276135,349.0420993,231.9359401,504.463016,534.8911203,502.8028789,566.9793617,,,,59.65598383,36,60346,41.78231766,82.58902742,,,,,,,,,,,,,64.05465998,43.2174101,91.44201002,,,,7.340604027,35,4768,5.112999665,10.20900322,,,,,,,,,,,,,6.658130602,4.349311963,9.755703991,,,,,,,0.127,,,0.108,0.15,0.177,,,0.152,0.206,0.103,,,0.087,0.122,116.2,66,56820,,,0.149,9860,,,,0.035182471,2439.552505,69340,,,29.66464123,60,202261,22.6372464,38.18427349,,,,,,,,,,,,,32.53034739,24.63816744,42.14683822,,,,0.322,,,0.306,0.336,0.190529456,7154,37548,0.166699668,0.214359243,0.055881921,761,13618,0.03920107,0.072562772,0.001109692,73,65784,,,901.1506849,0.89,663.05,745,,,0.119972734,352,2934,0.056573942,0.183371525,3.094419247,,,,,,,2.816940586,2.77113895,3.182746779,3.063962604,,,,,,,2.560386575,2.971969432,3.124266927,0.075324978,,,,,-1772.184,,,,,0.906393744,39410,43480,0.822104206,0.990683282,48229,,,43596.48936,52861.51064,80192,2758.297872,157625.7021,,,,36224,9276.085106,63171.91489,50588,37910.55319,63265.44681,50082,46919.78723,53244.21277,,,,,,0.771144279,6665,8643,,,57.21756545,,,,,0.318169566,,48229,,,7.93166565,26,3278,,,5.874503814,28,476636,3.903565122,8.490293629,,,,,,,,,,,,,5.541087161,3.51257394,8.31435139,,,,18.63153319,65,339394,14.11134129,24.13931231,19.15178229,,,,,,,,,,,,,20.50000896,15.40023766,26.74806486,,,,16.49999705,56,339394,12.46392045,21.42661862,,,,,,,,,,,,,16.96813385,12.594076,22.37036911,,,,21.60978189,103,476636,17.43640273,25.78316104,,,,,,,,,,,,,21.68251498,17.43530254,26.65149207,,,,29.4,,5000,,,94,53,0.670624941,35466,52885,,,0.592,,,,,18.92362392,,,,,0.730008441,19892,27249,0.705992368,0.754024513,0.091957594,2368,25751,0.074243343,0.109671845,0.842196044,22949,27249,0.822137389,0.862254699,65784,,,,,0.19579229,12880,65784,,,0.231226438,15211,65784,,,0.043171592,2840,65784,,,0.0048036,316,65784,,,0.006217317,409,65784,,,0.001641737,108,65784,,,0.074014958,4869,65784,,,0.859798735,56561,65784,,,0.005646842,355,62867,0.002175532,0.009118152,0.50649094,33319,65784,,,0.698494748,46079,65969,, -37,195,37195,NC,Wilson County,2024,1,10947.16674,1597,223677,10100.02693,11794.30655,0,,,,2,,,,2,14051.43154,12535.22957,15567.63352,,7092.230147,5153.225282,9520.987939,,9498.470015,8325.890755,10671.04928,,,,,2,,0.205,,,0.176,0.235,3.911315145,,,3.128565341,4.823143827,4.985958464,,,3.960436376,6.1455432,0.118802763,774,6515,0.110945909,0.126659617,0,,,,0.099009901,0.040760065,0.157259737,0.169167292,0.154936109,0.183398474,0.087370242,0.071092048,0.103648437,0.078600823,0.06790066,0.089300986,,,,0.138157895,0.083300398,0.193015391,0.206,,,0.171,0.245,0.386,,,0.309,0.468,7.7,0.027037683,0.137,,,0.291,,,0.242,0.346,0.681382007,53682,78784,,,0.147727999,,,0.116738428,0.183118395,0.232876712,17,73,0.173070018,0.2965429,1128,884,78369,,,26.37327508,495,18769,24.04990958,28.69664058,,,,,,,35.43410042,31.21526253,39.65293831,39.40397351,32.3241471,46.48379992,12.69930859,10.21174378,15.60960629,,,,24.95543672,13.64336948,41.87098239,0.159990874,9818,61366,0.140927045,0.179054704,0.000395565,31,78369,,,2528.032258,0.00044615,35,78449,,,2241.4,0.00217976,171,78449,,,458.7660819,3863,,,,,,,5747,,3121,0.48,,,,,,0.31,0.49,0.38,0.48,0.49,,,,,,0.68,0.41,0.39,0.52,0.83414066,45117,54088,0.818791339,0.84948998,0.555233027,10329,18603,0.504459441,0.606006613,0.051150516,1725,33724,,,0.306,5358,,0.238085106,0.373914894,,,,,,,0.456543037,0.390258634,0.522827441,0.388009992,0.293888462,0.482131521,0.094800201,0.054649851,0.13495055,5.635922847,105775,18768,5.02773695,6.244108745,0.339720962,6063,17847,0.288755323,0.3906866,10.46332096,82,78369,,,97.46468447,395,405275,87.85288272,107.0764862,,,,,,,97.42206235,82.13404767,112.710077,54.4032642,34.8571979,80.94774474,112.0004226,96.92367025,127.077175,,,,7.9,,,,,0,,,,,0.16390366,5240,31970,0.142998568,0.184808752,0.136783082,0.116444708,0.157121457,0.028933375,0.02020255,0.0376642,0.007819831,0.004027493,0.011612169,0.830748483,28336,34109,0.815359668,0.846137297,,,,,,,0.821954196,0.783913632,0.85999476,0.767450271,0.707597438,0.827303105,0.870865588,0.843873764,0.897857411,0.269,,34109,0.240779052,0.297220948,73.90660171,,,73.27656678,74.53663665,,,,,,,71.41065994,70.36572606,72.45559382,83.15156399,75.1635861,91.13954188,75.08072018,74.21095607,75.9504843,,,,529.1968132,1597,223677,501.701389,556.6922375,,,,,,,660.8141726,611.3577397,710.2706055,314.1046392,228.2289117,421.6708172,472.5624482,435.656039,509.4688573,,,,79.13800451,65,82135,61.07704113,100.8678831,,,,,,,103.4661149,71.65329231,144.5835248,105.3088026,61.34625825,168.6095944,48.01262046,26.24894639,80.55701883,,,,10.61249242,70,6596,8.272958476,13.40824573,,,,,,,15.33406353,11.05144423,20.72719926,,,,,,,,,,,,,0.133,,,0.115,0.153,0.176,,,0.152,0.203,0.134,,,0.116,0.155,546.4,360,65886,,,0.137,10760,,,,0.027037683,2196.379118,81234,,,34.27641659,83,242149,27.30097448,42.49077543,,,,,,,21.96009537,13.59364515,33.56833849,,,,50.65270903,38.36386717,65.62645973,,,,0.372,,,0.359,0.385,0.196930252,8699,44173,0.171908975,0.221951528,0.067332634,1220,18119,0.047077315,0.087587953,0.001121748,88,78449,,,891.4659091,0.796380857,798.77,1003,,,0.10993083,445,4048,0.060899445,0.158962215,2.967628051,,,,,,,2.722736917,2.979074887,3.408461062,3.039485028,,,,,,,2.787324866,3.134685592,3.41782173,0.101356614,,,,,-7940.617,,,,,0.795093095,40995,51560,0.7308817,0.859304491,51535,,,46679.68085,56390.31915,23264,3169.531915,43358.46809,,,,35131,30774.91489,39487.08511,33153,22666.70213,43639.29787,66646,60841.06383,72450.93617,,,,,,0.482907694,6032,12491,,,44.09904116,,,,,0.320752886,,51535,,,5.343022013,25,4679,,,9.496175152,54,568650,7.13381904,12.39044868,,,,,,,15.58770086,10.85740478,21.6787185,,,,4.48913629,2.319602228,7.841617678,,,,11.49796058,49,405275,8.386691347,15.38517589,12.0905558,,,,,,,,,,,,,16.85653152,11.37303103,24.06374689,,,,13.32428598,54,405275,10.00961371,17.38530292,,,,,,,17.48601119,11.61932745,25.27215474,,,,11.62268537,7.283875042,17.59688533,,,,18.81649521,107,568650,15.25113908,22.38185134,,,,,,,19.59596679,14.23845947,26.30667077,19.76219492,10.21141449,34.52057747,18.70473454,13.88301451,24.65986064,,,,31.49253731,,6700,,,167,44,0.680504511,40735,59860,,,0.61,,,,,68.4792151,,,,,0.594852417,19206,32287,0.570969491,0.618735344,0.15145574,4635,30603,0.12938134,0.173530139,0.799547806,25815,32287,0.77773181,0.821363801,78449,,,,,0.226860763,17797,78449,,,0.193756453,15200,78449,,,0.392242094,30771,78449,,,0.008119925,637,78449,,,0.012530434,983,78449,,,0.001555151,122,78449,,,0.119160219,9348,78449,,,0.455786562,35756,78449,,,0.01728465,1281,74112,0.01250164,0.022067661,0.523104182,41037,78449,,,0.379442526,29894,78784,, -37,197,37197,NC,Yadkin County,2024,1,11688.39729,693,102521,10267.89144,13108.90313,0,,,,2,,,,2,17837.0496,9497.477684,30501.89804,1,6990.187316,4380.713175,10583.2276,1,12319.32983,10664.89896,13973.76071,,,,,2,,0.166,,,0.14,0.195,3.829180629,,,3.005434473,4.790861583,5.333104425,,,4.225396528,6.564492725,0.10193255,269,2639,0.09038879,0.113476311,0,,,,,,,,,,0.113761468,0.087103274,0.140419662,0.095238095,0.082356872,0.108119319,,,,,,,0.198,,,0.162,0.241,0.369,,,0.293,0.453,7.5,0.052809704,0.131,,,0.247,,,0.201,0.299,0.518622024,19300,37214,,,0.164863763,,,0.130397266,0.203617813,0.069767442,3,43,0.019880648,0.151366789,250.1,93,37192,,,26.23222422,190,7243,22.50217651,29.96227193,,,,,,,,,,35.98971722,27.18624562,46.73564139,24.30687429,20.09592316,28.51782542,,,,,,,0.146205395,4298,29397,0.128333055,0.164077736,0.000241988,9,37192,,,4132.444444,0.000213544,8,37463,,,4682.875,0.000880869,33,37463,,,1135.242424,3407,,,,,,,,,3145,0.5,,,,,,,0.41,,0.51,0.49,,,,,,,0.4,0.22,0.49,0.864618285,22934,26525,0.841533662,0.887702908,0.594671272,4821,8107,0.532466455,0.656876089,0.033388037,590,17671,,,0.176,1308,,0.117617021,0.234382979,,,,,,,0.28125,0.101658703,0.460841297,0.500587544,0.386875342,0.614299746,0.14012975,0.100227423,0.180032076,4.435364397,111372,25110,3.825462695,5.045266099,0.192352712,1479,7689,0.145896149,0.238809274,13.44375134,50,37192,,,118.2102332,222,187801,102.6600805,133.7603859,,,,,,,173.6111111,83.25327598,319.2770146,,,,130.9183349,113.0401702,148.7964996,,,,8.6,,,,,0,,,,,0.107904231,1645,15245,0.085588535,0.130219927,0.08,0.060272584,0.099727416,0.024598229,0.012651085,0.036545373,0.014102985,0.006102545,0.022103424,0.848609866,14193,16725,0.823087634,0.874132097,,,,,,,,,,0.851390221,0.707259061,0.99552138,0.797473093,0.762566291,0.832379895,0.426,,16725,0.373696467,0.478303533,74.37957942,,,73.33330486,75.42585398,,,,,,,,,,,,,73.89696252,72.71489962,75.07902541,,,,492.791309,693,102521,453.2300424,532.3525756,,,,,,,740.3824807,499.5329507,1056.942028,299.6368907,180.4009818,467.9201214,507.8087566,463.8208329,551.7966803,,,,82.022439,28,34137,54.50331504,118.5452616,,,,,,,,,,,,,90.34165572,56.61663466,136.7783524,,,,8.416220352,22,2614,5.274400487,12.74225876,,,,,,,,,,,,,,,,,,,,,,0.123,,,0.106,0.143,0.174,,,0.151,0.2,0.103,,,0.087,0.12,122.5,39,31838,,,0.131,4880,,,,0.052809704,2028.209492,38406,,,32.89356709,37,112484,23.16010683,45.33944929,,,,,,,,,,,,,35.09630213,24.1586795,49.28825685,,,,0.319,,,0.305,0.334,0.175595238,3835,21840,0.151765451,0.199425025,0.063787042,508,7964,0.044723212,0.082850872,0.000667325,25,37463,,,1498.52,0.89,354.22,398,,,0.138681592,223,1608,0.046119934,0.231243251,3.149986031,,,,,,,2.65738566,2.982318508,3.252476561,3.112613645,,,,,,,2.298304738,3.030887441,3.202048522,0.038593373,,,,,-1768.346,,,,,0.855323538,40633,47506,0.728463636,0.98218344,61464,,,55724.59575,67203.40426,46384,45703.65957,47064.34043,,,,28274,17051.3617,39496.6383,39022,21878.85106,56165.14894,59600,55638.29787,63561.70213,,,,,,0.357060408,1856,5198,,,41.49243383,,,,,0.185799818,,61464,,,13.06477953,24,1837,,,4.564160689,12,262918,2.35836843,7.972670205,,,,,,,,,,,,,,,,,,,20.4461362,38,187801,14.24148301,28.43562595,20.23418406,,,,,,,,,,,,,22.65514706,15.39307327,32.15717286,,,,20.76666258,39,187801,14.76712717,28.38871138,,,,,,,,,,,,,20.97235462,14.43640392,29.45298333,,,,21.67976327,57,262918,16.42004099,28.08864795,,,,,,,,,,,,,23.10305776,17.20174398,30.3762543,,,,22.96296296,,2700,,,30,32,0.706739979,19923,28190,,,0.644,,,,,10.13339112,,,,,0.763973064,11345,14850,0.742675145,0.785270983,0.075665189,1092,14432,0.054929041,0.096401337,0.806666667,11979,14850,0.776918515,0.836414819,37463,,,,,0.201612257,7553,37463,,,0.211915757,7939,37463,,,0.032645544,1223,37463,,,0.008248138,309,37463,,,0.005738996,215,37463,,,0.00186851,70,37463,,,0.12014521,4501,37463,,,0.827589889,31004,37463,,,0.016216369,575,35458,0.009873194,0.022559544,0.498758775,18685,37463,,,1,37214,37214,, -37,199,37199,NC,Yancey County,2024,1,8451.263488,381,48793,6940.16484,9962.362135,0,,,,2,,,,2,,,,2,,,,2,8777.210444,7153.855948,10400.56494,,,,,2,,0.153,,,0.126,0.182,3.664105984,,,2.834223332,4.575872471,5.273293192,,,4.169706254,6.458401425,0.087748344,106,1208,0.071793249,0.10370344,0,,,,,,,,,,0.073529412,0.029662912,0.117395911,0.089184061,0.071977475,0.106390646,,,,,,,0.187,,,0.146,0.231,0.355,,,0.277,0.439,7.9,0.005680529,0.136,,,0.231,,,0.186,0.283,1,18470,18470,,,0.163300868,,,0.129034147,0.202957737,0.222222222,2,9,0.058854756,0.422872156,181.3,34,18757,,,26.21231979,80,3052,20.78473938,32.62350097,,,,,,,,,,56.60377359,31.68070239,93.3593165,24.03304544,18.50837347,30.68966249,,,,,,,0.143106966,1964,13724,0.124043136,0.162170796,0.000586448,11,18757,,,1705.181818,0.000318962,6,18811,,,3135.166667,0.002126415,40,18811,,,470.275,2333,,,,,,,,,2326,0.39,,,,,,,,,0.39,0.37,,,,,,,,0.31,0.37,0.885262474,12260,13849,0.866936086,0.903588862,0.591180285,2279,3855,0.506620306,0.675740265,0.03581401,295,8237,,,0.214,702,,0.141319149,0.286680851,,,,,,,,,,0.626760563,0.509895169,0.743625958,0.171019678,0.110669396,0.231369961,4.960095954,107520,21677,3.87430593,6.045885978,0.293017821,1003,3423,0.206595994,0.379439647,9.063283041,17,18757,,,107.0971161,97,90572,86.84854654,130.6493993,,,,,,,,,,,,,112.6679532,91.04717479,137.8770406,,,,6.3,,,,,0,,,,,0.11051574,825,7465,0.080506072,0.140525409,0.090597117,0.061075908,0.120118327,0.018754186,0.009245133,0.028263239,0.005358339,0.00051205,0.010204628,0.81918239,6252,7632,0.776602962,0.861761818,,,,,,,,,,,,,0.792921392,0.731650937,0.854191847,0.385,,7632,0.320947057,0.449052943,76.63647425,,,75.39609903,77.87684947,,,,,,,,,,,,,76.30563092,75.0091759,77.60208594,,,,457.5397352,381,48793,406.3347803,508.7446901,,,,,,,,,,,,,468.9760175,415.2013291,522.7507059,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.118,,,0.1,0.139,0.173,,,0.147,0.2,0.097,,,0.081,0.115,61.1,10,16372,,,0.136,2500,,,,0.005680529,101.2156722,17818,,,21.84797451,12,54925,11.28916724,38.16401465,,,,,,,,,,,,,21.77441704,10.86971053,38.9604468,,,,0.317,,,0.297,0.334,0.169995176,1762,10365,0.1449739,0.195016453,0.062234795,220,3535,0.041979476,0.082490114,0.00138217,26,18811,,,723.5,0.875,134.75,154,,,,,,,,3.216166188,,,,,,,,2.440752643,3.327537532,3.14056463,,,,,,,,2.560392873,3.239635342,0.033118322,,,,,-2516.022,,,,,0.808370482,40619,50248,0.665362579,0.951378386,54455,,,47928.02128,60981.97872,,,,,,,,,,42244,17424.08511,67063.91489,53120,47069.61702,59170.38298,,,,,,0.417940877,820,1962,,,,,,,,0.317509871,,54455,,,8.313539192,7,842,,,,,,,,,,,,,,,,,,,,,,,,,,22.64901298,22,90572,13.63618535,35.36923935,24.29006757,,,,,,,,,,,,,22.57531399,13.37956182,35.67872892,,,,16.56140971,15,90572,9.269295293,27.31552673,,,,,,,,,,,,,17.9789287,10.06266991,29.65350873,,,,18.2776131,23,125837,11.58643884,27.42539388,,,,,,,,,,,,,18.95734597,11.88046779,28.70164962,,,,16.36363636,,1100,,,5,13,0.794957983,11352,14280,,,0.494,,,,,15.29056823,,,,,0.78406922,6162,7859,0.766808782,0.801329658,0.106524997,782,7341,0.075915707,0.137134286,0.793612419,6237,7859,0.750573364,0.836651474,18811,,,,,0.176598799,3322,18811,,,0.267715698,5036,18811,,,0.008824624,166,18811,,,0.007601935,143,18811,,,0.003880708,73,18811,,,0.002976982,56,18811,,,0.055977885,1053,18811,,,0.917335602,17256,18811,,,0.008121309,143,17608,0.001148378,0.015094239,0.507043751,9538,18811,,,1,18470,18470,, -38,000,38000,ND,North Dakota,2024,,7634.109487,9226,2144656,7410.88231,7857.336663,0,27403.81228,25546.39683,29261.22774,,3348.120085,2290.111659,4726.546572,,7393.727547,6215.03727,8572.417824,,8310.361121,7160.162614,9460.559627,,6431.401863,6206.38656,6656.417166,,,,,2,,0.125,,,0.114,0.136,3.108850101,,,2.847617593,3.370082608,4.020125687,,,3.706844772,4.333406602,0.067551631,4926,72922,0.065730013,0.069373248,0,0.080431949,0.073158595,0.087705303,0.085764294,0.072507668,0.09902092,0.096594858,0.087782678,0.105407037,0.070469799,0.062966788,0.07797281,0.062241131,0.060191174,0.064291087,0.096551724,0.048478447,0.144625002,0.071792497,0.060903401,0.082681592,0.159,,,0.146,0.173,0.357,,,0.34,0.375,9.1,0.068571763,0.055,,,0.253,,,0.238,0.269,0.764631739,595720,779094,,,0.229993144,,,0.214482837,0.246273429,0.38697318,202,522,0.366189613,0.407657025,511.5,3964,774948,,,15.17731098,2505,165049,14.58295445,15.77166751,53.04225118,48.92954589,57.15495648,8.336807003,5.092338302,12.87552226,20.21563342,16.34885955,24.0824073,38.62453082,34.38591605,42.86314558,9.06121268,8.546376671,9.576048688,,,,29.87943386,25.40095653,34.3579112,0.091901177,57728,628153,0.084752241,0.099050113,0.000772955,599,774948,,,1293.736227,0.000701947,547,779261,,,1424.608775,0.002234168,1741,779261,,,447.5939116,2945,,,,,6939,1063,3057,2882,2816,0.53,,,,,0.2,0.42,0.27,0.29,0.54,0.49,,,,,0.41,0.53,0.33,0.34,0.5,0.934999289,473349,506256,0.931527226,0.938471352,0.728626319,153413,210551,0.712065761,0.745186876,0.02108505,8736,414322,,,0.123,22003,,0.108702128,0.137297872,0.383751549,0.352218776,0.415284322,0.326968174,0.216105889,0.43783046,0.332532558,0.252989368,0.412075747,0.206355527,0.163317459,0.249393596,0.06168577,0.054930069,0.06844147,4.423273536,139311,31495,4.264846577,4.581700494,0.181737837,33107,182169,0.170518791,0.192956883,15.49781405,1201,774948,,,75.12201434,2868,3817789,72.37264096,77.87138771,171.1203801,152.8230313,189.417729,28.67840357,16.9966395,45.32424164,52.73491376,40.69969311,67.21497657,69.57787296,56.5157439,82.64000202,71.15928325,68.23515151,74.083415,,,,5,,,,,0.037735849,,,,,0.11889365,38150,320875,0.113187487,0.124599813,0.094613325,0.089465873,0.099760776,0.021519283,0.01872727,0.024311297,0.009193611,0.007542022,0.0108452,0.802608524,324302,404060,0.796385617,0.80883143,0.761660804,0.734727623,0.788593986,0.647829341,0.59967501,0.695983673,0.728131176,0.679573786,0.776688567,0.747175714,0.706910335,0.787441093,0.814229668,0.807802163,0.820657173,0.152,,404060,0.145924573,0.158075428,78.08790603,,,77.88170285,78.29410921,62.83845748,61.85974962,63.81716534,84.26853313,81.13394885,87.40311742,89.09104189,69.21021733,108.9718665,82.05364763,77.98134191,86.12595335,79.133072,78.91988241,79.34626158,,,,366.9067747,9226,2144656,359.1539282,374.6596213,1186.406154,1115.740135,1257.072173,168.8866104,120.6550705,229.975629,344.8114248,280.2917177,409.3311319,401.0467098,339.0051279,463.0882916,326.1677789,318.4275838,333.907974,,,,52.57292642,426,810303,47.58047987,57.56537298,106.4491828,82.15523194,135.6782218,,,,78.85283724,51.96451661,114.7267383,61.03086682,42.01084051,85.71002805,44.0303059,38.77829169,49.2823201,,,,5.6362541,421,74695,5.097853435,6.174654765,11.3960114,8.776317405,14.55245214,,,,7.730147576,5.321077904,10.85600123,5.707762557,3.693762979,8.425783493,4.725210817,4.150842353,5.299579281,,,,9.263547939,5.658415741,14.30679847,0.093904086,,,0.083594567,0.105338903,0.129393044,,,0.116649319,0.143303141,0.088,,,0.08,0.097,84.9,543,639578,,,0.055,42290,,,,0.068571763,46120.75094,672591,,,13.89902963,320,2302319,12.37615005,15.42190921,61.44729422,48.16486976,77.26074712,,,,19.71349717,11.03349472,32.51441565,12.10604899,6.255372169,21.14683129,11.09470345,9.604718205,12.5846887,,,,0.305079067,,,0.285106842,0.325812745,0.099744143,44598,447124,0.091403717,0.108084568,0.075408742,14238,188811,0.063493849,0.087323636,0.001863304,1452,779261,,,536.6811295,0.853449872,6639.84,7780,,,0.051867363,2254,43457,0.043056136,0.060678591,3.070527662,,,,,,3.132460348,2.737364624,2.778711524,3.167149968,3.120685807,,,,,,3.191226512,2.516813177,2.665742582,3.261947247,0.220986844,,,,,3128.36,,,,,0.79191733,48969,61836,0.7724783,0.811356359,73240,,,70952.34043,75527.65957,43816,39022.6383,48609.3617,59654,42370.25532,76937.74468,49369,41870.95745,56867.04255,55249,47599.6383,62898.3617,78143,76976.53192,79309.46809,,,,,,0.231951837,26584,114610,,,58.25766039,,,,,0.255142992,,,,,7.285998673,,,,,2.794098564,149,5332668,2.345451676,3.242745451,11.32842191,7.697113072,16.07979065,,,,7.401102764,3.824257798,12.92823709,5.212998375,2.602310006,9.327494071,1.937501545,1.551859312,2.389900998,,,,19.34136517,727,3817789,17.90084146,20.78188888,19.04243529,30.04402042,22.69493015,39.01465954,,,,10.31342897,5.148426584,18.45357329,16.16845436,10.56177119,23.69053179,18.80232411,17.24874603,20.35590218,,,,13.43709671,513,3817789,12.27430258,14.59989084,16.29717906,11.14725841,23.0067542,,,,13.79220821,8.034469543,22.08266142,14.04324041,8.800824001,21.26163475,13.26221367,11.99983641,14.52459093,,,,14.13926387,754,5332668,13.1300175,15.14851025,43.8519558,36.00584537,51.69806622,,,,12.33517127,7.534643073,19.05067159,18.48244878,13.14282786,25.26611592,12.40446391,11.37429967,13.43462816,,,,,,,,,,,0.640455624,361819,564940,,,,,,,,82.89227548,,,,,0.631840594,202213,320038,0.625205593,0.638475595,0.099928556,31051,310732,0.094358796,0.105498315,0.858413688,274725,320038,0.851711897,0.86511548,779261,,,,,0.234549143,182775,779261,,,0.166732327,129928,779261,,,0.034332528,26754,779261,,,0.053172172,41435,779261,,,0.017466548,13611,779261,,,0.001179323,919,779261,,,0.046293861,36075,779261,,,0.830264828,646993,779261,,,0.006616498,4798,725157,0.005540055,0.007692941,0.486099009,378798,779261,,,0.39033159,304105,779094,, -38,001,38001,ND,Adams County,2024,1,10745.46402,35,5678,5552.338059,18770.16315,1,,,,2,,,,2,,,,2,,,,2,12167.25299,6073.848857,21770.57655,1,,,,2,,0.148,,,0.124,0.174,3.205655454,,,2.471883788,4.024355619,3.799643222,,,2.911469974,4.755905167,,,,,,0,,,,,,,,,,,,,,,,,,,,,,0.18,,,0.14,0.22,0.403,,,0.324,0.484,8.8,0.056616769,0.068,,,0.275,,,0.222,0.329,0.631818182,1390,2200,,,0.17573391,,,0.141078586,0.215233811,0.333333333,1,3,0.04092282,0.635504717,230.7,5,2167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.117340287,180,1534,0.098276457,0.136404117,0.005076142,11,2167,,,197,0.000945627,2,2115,,,1057.5,0.000945627,2,2115,,,1057.5,3433,,,,,,,,,3176,0.45,,,,,,,,,0.45,0.5,,,,,,,,,0.5,0.933375635,1471,1576,0.911277521,0.955473749,0.64608076,272,421,0.499113464,0.793048056,0.021989529,21,955,,,0.152,62,,0.093617021,0.210382979,,,,,,,,,,,,,0.148584906,0.05501885,0.242150961,5.408928571,121160,22400,3.528687088,7.289170055,0.133470226,65,487,0.046864131,0.220076321,13.844024,3,2167,,,134.1321649,15,11183,75.07275447,221.2306078,,,,,,,,,,,,,146.2843768,81.87425525,241.2738334,,,,4.2,,,,,0,,,,,0.108490566,115,1060,0.060576437,0.156404695,0.085576923,0.031687434,0.139466413,0.009433962,0,0.033763429,0.017924528,0,0.044120945,0.686407767,707,1030,0.608387078,0.764428456,,,,,,,,,,,,,0.646586345,0.55776358,0.735409111,0.137,,1030,0.066904366,0.207095634,76.33988048,,,71.66629525,81.01346571,,,,,,,,,,,,,75.21630028,70.01908232,80.41351825,,,,408.1023372,35,5678,266.5859959,597.9644795,,,,,,,,,,,,,444.1643245,284.5844636,660.8813073,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.101,,,0.086,0.118,0.144,,,0.122,0.167,0.092,,,0.077,0.108,0,0,1861,,,0.068,150,,,,0.056616769,132.6530887,2343,,,,,,,,,,,,,,,,,,,,,,,,,,0.315,,,0.297,0.332,0.117805755,131,1112,0.096358947,0.139252564,0.113895216,50,439,0.078150536,0.149639897,0.002836879,6,2115,,,352.5,,,,,,,,,,,3.239889248,,,,,,,,,3.249614513,2.917398626,,,,,,,,,2.851246224,,,,,,1516.398,,,,,0.716571409,41875,58438,0.583870412,0.849272406,57593,,,48868.91489,66317.08511,,,,,,,,,,,,,57600,49817.19149,65382.80851,,,,,,0.111888112,32,286,,,,,,,,0.280207664,,57593,,,17.85714286,3,168,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.735652174,1269,1725,,,0.497,,,,,7.73345008,,,,,0.736208626,734,997,0.671932251,0.800485001,0.094008265,91,968,0.027573427,0.160443102,0.815446339,813,997,0.782849636,0.848043042,2115,,,,,0.197163121,417,2115,,,0.29787234,630,2115,,,0.01749409,37,2115,,,0.007565012,16,2115,,,0.033096927,70,2115,,,0.000945627,2,2115,,,0.027423168,58,2115,,,0.895035461,1893,2115,,,0,0,2047,0,0.023282645,0.504491726,1067,2115,,,1,2200,2200,, -38,003,38003,ND,Barnes County,2024,1,8596.293168,197,28328,6640.54339,10552.04295,0,,,,2,,,,2,,,,2,,,,2,8271.19706,6265.615486,10276.77863,,,,,2,,0.125,,,0.104,0.15,3.008073147,,,2.339447368,3.730836176,3.808120085,,,2.997008324,4.686292835,0.072837633,48,659,0.052996376,0.092678889,0,,,,,,,,,,,,,0.07337884,0.052266139,0.09449154,,,,,,,0.156,,,0.122,0.196,0.43,,,0.356,0.503,9.3,0.062716309,0.043,,,0.234,,,0.189,0.283,0.607205381,6590,10853,,,0.187086468,,,0.150382265,0.225192187,0.333333333,3,9,0.150331965,0.513162068,296.1,32,10806,,,12.51008878,31,2478,8.499998377,17.75707244,,,,,,,,,,,,,10.69995542,6.855663333,15.92068551,,,,,,,0.083616673,664,7941,0.07051029,0.096723056,0.000925412,10,10806,,,1080.6,0.000650679,7,10758,,,1536.857143,0.000743633,8,10758,,,1344.75,2911,,,,,,,,,2840,0.58,,,,,,,,,0.58,0.57,,,,,,,,,0.57,0.949587656,7139,7518,0.92980699,0.969368323,0.693005181,1605,2316,0.584025313,0.801985049,0.022196709,116,5226,,,0.13,270,,0.078765957,0.181234043,,,,,,,0.590361446,0.065535759,1,,,,0.159142212,0.090327279,0.227957145,4.820485584,127068,26360,4.038827412,5.602143757,0.225300092,488,2166,0.135395234,0.315204951,14.80658893,16,10806,,,90.73895537,48,52899,66.90374265,120.3066905,,,,,,,,,,,,,89.99059189,65.38730183,120.8081693,,,,5.4,,,,,0,,,,,0.083333333,420,5040,0.056102417,0.110564249,0.0798,0.049981467,0.109618534,0.001587302,0,0.007553694,0.001984127,0,0.007168495,0.795974889,4311,5416,0.753188246,0.838761533,,,,,,,,,,,,,0.793887868,0.750190113,0.837585623,0.221,,5416,0.169201036,0.272798964,76.47685377,,,74.86321234,78.09049521,,,,,,,,,,,,,76.60398685,74.94685383,78.26111987,,,,467.0738664,197,28328,395.3860785,538.7616543,,,,,,,,,,,,,457.9179503,384.4320773,531.4038233,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.092,,,0.077,0.108,0.137,,,0.116,0.161,0.084,,,0.07,0.099,,,,,,0.043,470,,,,0.062716309,694.0186712,11066,,,,,,,,,,,,,,,,,,,,,,,,,,0.291,,,0.275,0.307,0.090675791,530,5845,0.07399494,0.107356642,0.067537145,150,2221,0.048473316,0.086600975,0.001208403,13,10758,,,827.5384615,0.919512195,113.1,123,,,,,,,,3.255837706,,,,,,,,,3.360852692,3.270729444,,,,,,,,,3.374013666,0.043269369,,,,,1798.93,,,,,0.763594714,44668,58497,0.678866655,0.848322774,67058,,,58887.95745,75228.04255,,,,,,,,,,87986,48859.87234,127112.1277,65000,55989.95745,74010.04255,,,,,,0.288098694,397,1378,,,54.27797374,,,,,0.278594649,,67058,,,2.016129032,1,496,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.664081146,5565,8380,,,0.608,,,,,44.63818306,,,,,0.7446852,3643,4892,0.71003897,0.779331431,0.100907748,478,4737,0.06271747,0.139098025,0.826042518,4041,4892,0.785466524,0.866618513,10758,,,,,0.196226064,2111,10758,,,0.236382227,2543,10758,,,0.016452872,177,10758,,,0.015151515,163,10758,,,0.012827663,138,10758,,,0.001022495,11,10758,,,0.023331474,251,10758,,,0.917270868,9868,10758,,,0.000870827,9,10335,0,0.00822121,0.48838074,5254,10758,,,0.396756657,4306,10853,, -38,005,38005,ND,Benson County,2024,1,32392.56622,200,18357,26662.53296,38122.59948,0,52486.36648,42924.5288,62048.20417,,,,,2,,,,2,,,,2,7677.59163,3832.626079,13737.3322,1,,,,2,,0.23,,,0.197,0.261,4.387341901,,,3.492075255,5.30267982,4.871957855,,,3.874976871,5.879613072,0.078059072,74,948,0.060981932,0.095136212,0,0.090490798,0.068469747,0.112511848,,,,,,,,,,,,,,,,,,,0.268,,,0.222,0.315,0.455,,,0.381,0.526,6.4,0.15114068,0.137,,,0.314,,,0.263,0.367,0.562877264,3357,5964,,,0.181946375,,,0.147009549,0.22125746,0.733333333,11,15,0.654068828,0.795548278,2186.3,127,5809,,,73.42657343,126,1716,60.60550965,86.2476372,89.39873418,72.91528023,105.8821881,,,,,,,,,,,,,,,,,,,0.117021277,495,4230,0.099148936,0.134893617,0.000172147,1,5809,,,5809,0.000346621,2,5770,,,2885,0.000346621,2,5770,,,2885,4404,,,,,9889,,,,2742,0.45,,,,,0.29,,,,0.52,0.3,,,,,0.39,,,,0.27,0.871954843,2935,3366,,,0.549960661,699,1271,,,0.028973157,68,2347,,,0.363,711,,0.227170213,0.498829787,0.430931923,0.35755001,0.504313836,,,,,,,0.083333333,0,0.62425233,0.22095672,0.109040754,0.332872685,6.484168269,114679,17686,4.726633011,8.241703527,0.582854406,1217,2088,0.473179932,0.69252888,0,0,5809,,,180.1747695,60,33301,137.4923304,231.9206432,253.2215407,184.7015294,338.8303444,,,,,,,,,,81.97332141,40.9207867,146.6729154,,,,5.2,,,,,1,,,,,0.176600442,400,2265,0.139578903,0.21362198,0.090654206,0.052609543,0.128698868,0.097130243,0.066356582,0.127903904,0.004415011,0,0.014462939,0.737835154,1486,2014,0.700969601,0.774700707,0.73006135,0.651693783,0.808428916,,,,,,,,,,0.768400393,0.692468501,0.844332284,0.193,,2014,0.145864585,0.240135416,62.22233152,,,59.26159512,65.18306791,53.19213925,49.57006693,56.81421157,,,,,,,,,,78.51117221,74.84320082,82.1791436,,,,1142.459849,200,18357,973.6064426,1311.313256,2047.907709,1711.532357,2384.283062,,,,,,,,,,357.4403096,242.8633485,507.3579876,,,,159.2356688,16,10048,91.01694321,258.58875,219.170076,122.6678278,361.48771,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.143,,,0.123,0.164,0.177,,,0.153,0.202,0.141,,,0.121,0.162,,,,,,0.137,840,,,,0.15114068,1006.596928,6660,,,,,,,,,,,,,,,,,,,,,,,,,,0.343,,,0.33,0.356,0.150219736,376,2503,0.12400697,0.176432502,0.070918087,129,1819,0.050662768,0.091173406,0.001386482,8,5770,,,721.25,,,,,,,,,,,2.474940348,,,,,,,,,,2.551287298,,,,,,,,,,0.669242239,,,,,-16739.9742,,,,,0.839957075,46180,54979,0.794485507,0.885428642,56605,,,49465.59575,63744.40426,41103,27251.93617,54954.06383,,,,3864,3454.12766,4273.87234,46042,44647.95745,47436.04255,71288,65767.82979,76808.17021,,,,,,0.784688995,820,1045,,,,,,,,0.261319671,,56605,,,1.5625,1,640,,,,,,,,,,,,,,,,,,,,,,,,,,64.51091863,18,33301,37.57998741,103.28823,54.05243086,79.38359938,39.6280068,142.0391873,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,47.01557925,22,46793,29.46441321,71.182152,76.13399583,45.8376389,118.8926654,,,,,,,,,,,,,,,,,,,,,,,0.43481153,1961,4510,,,0.368,,,,,1.530877481,,,,,0.717495987,1341,1869,0.68817004,0.746821935,0.096363636,159,1650,0.04858801,0.144139263,0.779026217,1456,1869,0.740731291,0.817321144,5770,,,,,0.346620451,2000,5770,,,0.149740035,864,5770,,,0.004332756,25,5770,,,0.542461005,3130,5770,,,0.003639515,21,5770,,,0.00017331,1,5770,,,0.049220104,284,5770,,,0.409185442,2361,5770,,,0.015899738,85,5346,,,0.483188908,2788,5770,,,1,5964,5964,, -38,007,38007,ND,Billings County,2024,0,,,,,,2,,,,2,,,,2,,,,2,,,,2,,,,2,,,,2,,0.121,,,0.1,0.145,2.807954441,,,2.117371797,3.58601138,3.653040828,,,2.778367523,4.65962281,,,,,,0,,,,,,,,,,,,,,,,,,,,,,0.151,,,0.117,0.191,0.361,,,0.282,0.446,8.2,0.181818181,0.04,,,0.239,,,0.19,0.292,0.291005291,275,945,,,0.201609807,,,0.162819168,0.246646215,0.25,1,4,0.023230216,0.544021398,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.093663912,68,726,0.07936604,0.107961784,0,0,955,,,-955,0,0,1018,,,-1018,,0,1018,,,,,,,,,,,,,,0.39,,,,,,,,,0.39,0.47,,,,,,,,,0.47,0.952302632,579,608,0.899596797,1,0.72972973,162,222,0.556587148,0.902872311,0.019693654,9,457,,,0.087,18,,0.052446809,0.121553192,,,,,,,,,,,,,,,,3.332025,133281,40000,2.326142865,4.337907135,0.05952381,10,168,0,0.158166282,0,0,955,,,,,,,,,,,,,,,,,,,,,,,,,,3.4,,,,,0,,,,,0.150684932,55,365,0.051737322,0.249632541,0.077562327,0,0.183253435,0.010958904,0,0.076217406,0.093150685,0,0.18774364,0.662679426,277,418,0.536855981,0.788502871,,,,,,,,,,,,,0.679045093,0.527097419,0.830992767,0.477,,418,0.319515933,0.634484067,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.086,,,0.072,0.101,0.127,,,0.108,0.15,0.081,,,0.068,0.096,,,,,,0.04,30,,,,0.181818181,142.3636355,783,,,,,,,,,,,,,,,,,,,,,,,,,,0.299,,,0.282,0.315,0.096590909,51,528,0.078718569,0.11446325,0.090909091,19,209,0.062313346,0.119504836,0,0,1018,,,-1018,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13628.69,,,,,0.854285384,44375,51944,0.585025282,1.123545487,85947,,,73019.34043,98874.65957,,,,,,,,,,,,,76000,67868.08511,84131.91489,,,,,,0.052631579,6,114,,,,,,,,0.234970389,,85947,,,54.54545455,3,55,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.940740741,635,675,,,0.446,,,,,1.180899208,,,,,0.740625,237,320,0.699599706,0.781650294,0.051369863,15,292,0,0.196714527,0.828125,265,320,0.754568713,0.901681287,1018,,,,,0.206286837,210,1018,,,0.241650295,246,1018,,,0.00589391,6,1018,,,0.010805501,11,1018,,,0.036345776,37,1018,,,0.000982318,1,1018,,,0.026522593,27,1018,,,0.91453831,931,1018,,,0,0,781,0,0.061023783,0.467583497,476,1018,,,1,945,945,, -38,009,38009,ND,Bottineau County,2024,1,6878.765765,86,17055,4606.817391,9879.055073,0,,,,2,,,,2,,,,2,,,,2,6074.902217,3850.966894,9115.336075,1,,,,2,,0.127,,,0.105,0.151,3.18575514,,,2.460228621,3.956167828,3.643635795,,,2.839784477,4.519475322,0.054621849,26,476,0.034207357,0.075036341,0,,,,,,,,,,,,,0.048543689,0.027791292,0.069296087,,,,,,,0.159,,,0.122,0.198,0.423,,,0.349,0.497,8.6,0.104616525,0.055,,,0.238,,,0.192,0.286,0.623451952,3977,6379,,,0.206001678,,,0.167785174,0.2475643,0.5,5,10,0.338551574,0.634481032,391.2,25,6390,,,12.58327165,17,1351,7.330219445,20.14703687,,,,,,,,,,,,,9.6069869,4.795773247,17.18955329,,,,,,,0.101483552,472,4651,0.08599419,0.116972914,0.000469484,3,6390,,,2130,0.000313676,2,6376,,,3188,0.000313676,2,6376,,,3188,1770,,,,,,,,,1754,0.55,,,,,,,,,0.55,0.36,,,,,0.54,,,,0.36,0.927036706,4142,4468,0.906928686,0.947144725,0.649651972,840,1293,0.54080038,0.758503564,0.029656781,89,3001,,,0.13,179,,0.078765957,0.181234043,0.658914729,0.42259711,0.895232348,,,,,,,0.191489362,0,0.779516948,0.045808125,0.015744789,0.07587146,4.753462977,141040,29671,3.854899413,5.652026541,0.140086207,195,1392,0.078905023,0.201267391,23.4741784,15,6390,,,87.77429467,28,31900,58.32538137,126.8582945,,,,,,,,,,,,,79.50499499,50.3993468,119.2965291,,,,5,,,,,0,,,,,0.08,230,2875,0.05416791,0.10583209,0.071328671,0.044028832,0.09862851,0.008347826,0,0.018608739,0.004869565,0,0.010419272,0.758736559,2258,2976,0.719787527,0.797685591,,,,,,,,,,,,,0.781948882,0.723573026,0.840324738,0.259,,2976,0.202696612,0.315303388,79.72446816,,,77.53374246,81.91519385,,,,,,,,,,,,,80.22649942,78.05598433,82.39701451,,,,334.5760818,86,17055,258.7611174,425.6628103,,,,,,,,,,,,,312.3253344,238.3371334,402.0246156,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.094,,,0.079,0.11,0.133,,,0.112,0.155,0.083,,,0.07,0.097,,,,,,0.055,350,,,,0.104616525,672.5796365,6429,,,,,,,,,,,,,,,,,,,,,,,,,,0.298,,,0.281,0.313,0.104697575,341,3257,0.086825234,0.122569915,0.09650924,141,1461,0.069104985,0.123913496,0.001254705,8,6376,,,797,,,,,,,,,,,2.918176014,,,,,,,,,2.948466735,2.958158365,,,,,,,,,2.993812829,0.035009133,,,,,2667.9608,,,,,0.661057199,45096,68218,0.593081977,0.729032421,69351,,,60121.7234,78580.2766,,,,58688,58257.87234,59118.12766,,,,54107,19998.23404,88215.76596,81635,76683.17021,86586.82979,,,,,,0.212694878,191,898,,,,,,,,0.264437427,,69351,,,8.108108108,3,370,,,,,,,,,,,,,,,,,,,,,,,,,,34.25431108,10,31900,15.66325225,65.02535246,31.34796238,,,,,,,,,,,,,37.70635912,17.24174844,71.57841493,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.700504541,3471,4955,,,0.538,,,,,5.671249722,,,,,0.808266361,2112,2613,0.782239244,0.834293478,0.068288854,174,2548,0.034106686,0.102471022,0.882510524,2306,2613,0.853246517,0.911774532,6376,,,,,0.220514429,1406,6376,,,0.254077792,1620,6376,,,0.00674404,43,6376,,,0.039052698,249,6376,,,0.009723965,62,6376,,,0.000156838,1,6376,,,0.024309912,155,6376,,,0.897114178,5720,6376,,,0,0,6071,0,0.01177555,0.478513174,3051,6376,,,1,6379,6379,, -38,011,38011,ND,Bowman County,2024,1,5421.862043,36,7955,2801.555236,9470.901862,1,,,,2,,,,2,,,,2,,,,2,4949.28372,2373.37392,9101.908976,1,,,,2,,0.137,,,0.112,0.162,3.1269312,,,2.365676307,3.894680612,3.708131745,,,2.796308498,4.630355407,0.064,16,250,0.033660112,0.094339888,1,,,,,,,,,,,,,0.0657277,0.032448167,0.099007232,,,,,,,0.17,,,0.132,0.209,0.378,,,0.298,0.461,9.9,0.029321406,0.033,,,0.254,,,0.205,0.305,0.733711995,2196,2993,,,0.200750946,,,0.160936399,0.244790263,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.130571815,290,2221,0.110316495,0.150827134,0.000344471,1,2903,,,2903,0.002073255,6,2894,,,482.3333333,,0,2894,,,,1791,,,,,,,,,1794,0.44,,,,,,,,,0.44,0.11,,,,,,,,,0.11,0.89047854,1805,2027,0.835073511,0.945883569,0.606741573,378,623,0.488709666,0.72477348,0.017341041,27,1557,,,0.102,71,,0.060297872,0.143702128,,,,,,,,,,,,,0.150641026,0.044106057,0.257175994,3.495188617,136571,39074,2.818015432,4.172361801,0.223719677,166,742,0.102369685,0.345069668,17.22356183,5,2903,,,,,,,,,,,,,,,,,,,,,,,,,,4.2,,,,,0,,,,,0.071698113,95,1325,0.043000827,0.1003954,0.059496568,0.023423678,0.095569457,0.018113208,0,0.036949898,0,0,0.012717135,0.744515216,1052,1413,0.683554056,0.805476376,,,,,,,,,,,,,0.733828996,0.67184371,0.795814283,0.204,,1413,0.132759298,0.275240702,79.19763038,,,76.22271764,82.17254313,,,,,,,,,,,,,79.79665027,76.78917022,82.80413032,,,,289.9988557,36,7955,197.0401526,411.6302272,,,,,,,,,,,,,277.0609078,184.1049612,400.4301529,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.096,,,0.081,0.112,0.138,,,0.117,0.16,0.084,,,0.071,0.099,0,0,2404,,,0.033,100,,,,0.029321406,92.39175126,3151,,,,,,,,,,,,,,,,,,,,,,,,,,0.289,,,0.273,0.303,0.12565445,192,1528,0.104207642,0.147101259,0.142461964,103,723,0.100759836,0.184164092,0.001727713,5,2894,,,578.8,,,,,,,,,,,3.280388045,,,,,,,,,3.317908922,3.383449322,,,,,,,,,3.416898261,0.094333157,,,,,4415.046,,,,,0.643686017,45208,70233,0.358270103,0.92910193,75386,,,65754,85018,,,,,,,,,,64545,54824.82979,74265.17021,79273,69610.02128,88935.97872,,,,,,0.113636364,70,616,,,,,,,,0.225227496,,75386,,,16.75977654,3,179,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.715766739,1657,2315,,,0.565,,,,,8.130161054,,,,,0.79040404,939,1188,0.775012626,0.805795455,0.069395018,78,1124,0.026757437,0.112032599,0.87037037,1034,1188,0.804806944,0.935933797,2894,,,,,0.242916379,703,2894,,,0.243607464,705,2894,,,0.00414651,12,2894,,,0.027988943,81,2894,,,0.00138217,4,2894,,,0.001036628,3,2894,,,0.0552868,160,2894,,,0.913959917,2645,2894,,,0.018259936,51,2793,0,0.04714543,0.494816863,1432,2894,,,1,2993,2993,, -38,013,38013,ND,Burke County,2024,1,5786.607897,22,5828,2498.246569,11401.9244,1,,,,2,,,,2,,,,2,,,,2,6342.309202,2738.15895,12496.87751,1,,,,2,,0.123,,,0.102,0.147,2.875936918,,,2.186377315,3.633231159,3.704966677,,,2.852160506,4.645798596,,,,,,0,,,,,,,,,,,,,,,,,,,,,,0.154,,,0.12,0.191,0.376,,,0.298,0.458,8.4,0.162439666,0.036,,,0.237,,,0.191,0.288,0.126760563,279,2201,,,0.201702884,,,0.161891144,0.245078026,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.107900943,183,1696,0.091220092,0.124581795,,0,2158,,,,0,0,2155,,,-2155,,0,2155,,,,1721,,,,,,,,,1728,0.51,,,,,,,,,0.51,0.39,,,,,,,,,0.38,0.919093851,1420,1545,0.880233012,0.95795469,0.653508772,298,456,0.559665264,0.74735228,0.020153551,21,1042,,,0.122,64,,0.071957447,0.172042553,,,,,,,,,,,,,0.078028747,0.008459675,0.147597819,4.06755291,161250,39643,1.872401259,6.26270456,0.137037037,74,540,0.010394313,0.263679761,23.16960148,5,2158,,,,,,,,,,,,,,,,,,,,,,,,,,3.5,,,,,0,,,,,0.04631579,44,950,0.014991842,0.077639737,0.025641026,0,0.064717351,0.02,0,0.046006796,0.004210526,0,0.016806698,0.725697786,754,1039,0.654634085,0.796761488,,,,,,,,,,,,,0.747216036,0.66933708,0.825094991,0.41,,1039,0.325136175,0.494863825,81.9077984,,,77.54395771,86.27163909,,,,,,,,,,,,,80.97597759,76.52306615,85.42888903,,,,273.9994642,22,5828,162.3894477,433.0372817,,,,,,,,,,,,,292.8667774,173.5714132,462.8557708,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.089,,,0.075,0.103,0.133,,,0.113,0.153,0.079,,,0.066,0.093,,,,,,0.036,80,,,,0.162439666,319.6812632,1968,,,,,,,,,,,,,,,,,,,,,,,,,,0.296,,,0.279,0.312,0.108547009,127,1170,0.090674668,0.126419349,0.110307414,61,553,0.078137201,0.142477627,0.000464037,1,2155,,,2155,,,,,,,,,,,2.523189725,,,,,,,,,2.444435293,2.505982357,,,,,,,,,2.531731142,,,,,,1309.0685,,,,,0.798394234,62250,77969,0.584623041,1.012165427,75931,,,68127.93617,83734.06383,,,,50673,30648.82979,70697.17021,,,,,,,97279,85166.31915,109391.6809,,,,,,0.127937337,49,383,,,,,,,,0.236372496,,75931,,,15.38461539,2,130,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.731012658,1155,1580,,,0.436,,,,,0.731036141,,,,,0.823157895,782,950,0.773295059,0.873020731,0.038588754,35,907,0,0.087398841,0.887368421,843,950,0.845194553,0.92954229,2155,,,,,0.247331787,533,2155,,,0.226450116,488,2155,,,0.006960557,15,2155,,,0.017169374,37,2155,,,0.007888631,17,2155,,,0.000928074,2,2155,,,0.033410673,72,2155,,,0.913689095,1969,2155,,,0.00727802,15,2061,0,0.029184853,0.476102088,1026,2155,,,1,2201,2201,, -38,015,38015,ND,Burleigh County,2024,1,6334.90763,1029,269578,5762.51575,6907.29951,0,23635.99661,18622.47701,29583.97431,,,,,2,,,,2,,,,2,5392.357156,4826.631805,5958.082507,,,,,2,,0.116,,,0.096,0.14,2.80904706,,,2.223054593,3.441908359,3.936960839,,,3.255717614,4.670056455,0.063330171,534,8432,0.058131535,0.068528806,0,0.081967213,0.06019812,0.103736306,,,,0.097972973,0.064106253,0.131839693,0.048913044,0.026875935,0.070950152,0.06135434,0.055565059,0.067143622,,,,0.060085837,0.029571196,0.090600478,0.147,,,0.113,0.184,0.303,,,0.259,0.348,9.6,0.046049233,0.04,,,0.227,,,0.188,0.269,0.81526133,80269,98458,,,0.208648613,,,0.177672899,0.240235365,0.192307692,5,26,0.09558881,0.306287398,511.5,506,98933,,,12.03189852,258,21443,10.56371489,13.50008216,57.18585403,45.05594874,71.57662375,,,,,,,25.1396648,14.89935863,39.73150875,7.388888889,6.133120962,8.644656816,,,,20.68965517,11.57984294,34.12443982,0.072179165,5653,78319,0.06264725,0.08171108,0.001121971,111,98933,,,891.2882883,0.0009166,91,99280,,,1090.989011,0.003122482,310,99280,,,320.2580645,2908,,,,,13586,,,,2791,0.57,,,,,0.24,,,,0.57,0.59,,,,,0.43,0.53,0.33,0.22,0.6,0.949310631,63001,66365,0.940409145,0.958212116,0.76242406,20205,26501,0.714492217,0.810355902,0.019337228,1013,52386,,,0.096,2176,,0.070978723,0.121021277,0.36130137,0.217311328,0.505291412,0.584856397,0.150530664,1,0.677595628,0.174978847,1,0.162431942,0.032610962,0.292252922,0.039348863,0.022804229,0.055893498,3.938598337,149714,38012,3.594356088,4.282840587,0.189241198,4327,22865,0.157477006,0.221005391,15.86932571,157,98933,,,60.28178617,290,481074,53.34364416,67.21992818,157.8250687,107.234477,224.0200871,,,,,,,99.47203306,52.96466823,170.100206,55.5733474,48.48301449,62.66368031,,,,6.5,,,,,0,,,,,0.103378973,4115,39805,0.086874466,0.119883479,0.085002542,0.070577542,0.099427542,0.015827157,0.007166945,0.02448737,0.00690868,0.002985949,0.010831411,0.806371092,40704,50478,0.795857349,0.816884836,0.586869496,0.472118598,0.701620393,,,,,,,0.743894389,0.622894405,0.864894374,0.828493095,0.813058208,0.843927982,0.099,,50478,0.085310829,0.112689171,79.607802,,,79.04271134,80.17289266,63.70591014,60.8080622,66.60375808,,,,,,,,,,80.40373042,79.83169147,80.97576937,,,,309.6242641,1029,269578,290.0214591,329.2270691,1052.036499,827.4934438,1318.736862,,,,,,,,,,280.4137447,261.0902679,299.7372215,,,,39.56243942,40,101106,28.26398675,53.87281365,,,,,,,,,,,,,31.44045661,20.5379501,46.06755355,,,,4.748668057,41,8634,3.407726184,6.44210442,,,,,,,,,,,,,4.085801839,2.71498565,5.905121253,,,,,,,0.084,,,0.071,0.099,0.126,,,0.107,0.146,0.079,,,0.067,0.092,81.5,67,82204,,,0.04,3960,,,,0.046049233,3744.171006,81308,,,11.34913729,33,290771,7.812223906,15.93840832,81.22157245,38.94890104,149.3693636,,,,,,,,,,7.038123167,4.171237842,11.12326892,,,,0.277,,,0.26,0.292,0.079973264,4427,55356,0.06805837,0.091888158,0.056675431,1358,23961,0.042377559,0.070973303,0.002628928,261,99280,,,380.3831418,0.889141104,869.58,978,,,0.057823129,323,5586,0.021017603,0.094628656,3.131560203,,,,,,,,2.843184781,3.232987607,3.282059059,,,,,,,2.668342839,2.72659365,3.412358886,0.058621277,,,,,5077.063,,,,,0.848428447,56524,66622,0.804698715,0.892158179,83111,,,75682.06383,90539.93617,39811,20990.23404,58631.76596,72392,37308.59575,107475.4043,81176,55692.42553,106659.5745,41833,21286.95745,62379.04255,84877,80037.17021,89716.82979,,,,,,0.1609017,2177,13530,,,51.34677944,,,,,0.269049825,,83111,,,3.268991283,21,6424,,,1.645346959,11,668552,0.821351274,2.943980201,,,,,,,,,,,,,,,,,,,17.28347773,83,481074,13.70472293,21.51078413,17.25306294,,,,,,,,,,,,,15.58088057,11.9991766,19.89643665,,,,11.43275255,55,481074,8.612713839,14.88129892,,,,,,,,,,,,,10.83209314,7.930453584,14.44849427,,,,10.76954373,72,668552,8.426504698,13.56245798,,,,,,,,,,,,,10.79420014,8.312849407,13.7839526,,,,,,,,,,,0.70485383,50753,72005,,,0.77,,,,,112.0754414,,,,,0.714203335,28486,39885,0.698598284,0.729808386,0.087448402,3432,39246,0.071614016,0.103282788,0.879152564,35065,39885,0.867002142,0.891302985,99280,,,,,0.231657937,22999,99280,,,0.180983078,17968,99280,,,0.021152297,2100,99280,,,0.046776793,4644,99280,,,0.009850927,978,99280,,,0.00239726,238,99280,,,0.031063658,3084,99280,,,0.874254633,86796,99280,,,0.003391888,313,92279,0.001503671,0.005280105,0.496263094,49269,99280,,,0.243078267,23933,98458,, -38,017,38017,ND,Cass County,2024,1,6495.895497,1757,524189,6085.045885,6906.745109,0,32946.62868,25584.34633,41767.70243,,,,,2,8652.974018,6828.791778,10814.73286,,8318.479349,5726.058426,11682.23778,,5993.614885,5560.649254,6426.580517,,,,,2,,0.116,,,0.096,0.138,2.819998203,,,2.236761824,3.452794134,3.832873422,,,3.220002747,4.491330811,0.071560801,1237,17286,0.067718219,0.075403383,0,0.077170418,0.047511039,0.106829797,0.098381071,0.077781149,0.118980993,0.091276978,0.079307229,0.103246728,0.063576159,0.046171482,0.080980836,0.063774262,0.059449239,0.068099285,,,,0.114893617,0.086063074,0.143724161,0.132,,,0.102,0.165,0.353,,,0.311,0.394,9.6,0.032617305,0.047,,,0.207,,,0.174,0.243,0.901449668,166340,184525,,,0.22471518,,,0.195752407,0.254621235,0.428571429,21,49,0.358597587,0.495530011,611.1,1140,186562,,,9.936090679,412,41465,8.976639215,10.89554214,45.52352049,30.71452811,64.98765614,12.33480176,6.743550904,20.69570143,21.03681443,15.89098354,27.31805335,51.40186916,39.75420188,65.39578072,5.940248093,5.125083005,6.75541318,,,,20.39329935,13.55119931,29.47399559,0.079805196,12667,158724,0.071464771,0.088145622,0.000986267,184,186562,,,1013.923913,0.000809406,156,192734,,,1235.474359,0.003232434,623,192734,,,309.364366,3126,,,,,,,284,3773,3161,0.58,,,,,0.23,0.39,0.22,0.35,0.59,0.59,,,,,0.46,0.63,0.3,0.41,0.59,0.956436083,112145,117253,0.950003546,0.962868619,0.807657713,45795,56701,0.769266333,0.846049093,0.017631238,1947,110429,,,0.123,5077,,0.097978723,0.148021277,0.617852162,0.585312561,0.650391763,0.357300073,0.207150824,0.507449323,0.346236048,0.222271017,0.47020108,0.117901829,0.03381796,0.201985698,0.054492677,0.038190133,0.070795221,4.450524738,142488,32016,4.086369491,4.814679984,0.184898613,7623,41228,0.155429383,0.214367842,10.45228932,195,186562,,,57.14649246,521,911692,52.23937121,62.05361371,168.6340641,103.0060673,260.4416349,,,,44.41759648,28.74472647,65.56913456,69.04752772,40.92194093,109.124862,56.81470994,51.48779028,62.1416296,,,,6.4,,,,,0,,,,,0.12041545,9275,77025,0.107876016,0.132954883,0.100202284,0.087984629,0.112419939,0.02069458,0.01467185,0.026717309,0.007594937,0.004612026,0.010577848,0.803899401,86752,107914,0.790643766,0.817155036,0.67752443,0.559759151,0.795289709,0.600051507,0.511411488,0.688691526,0.709852847,0.631958446,0.787747248,0.774875947,0.676382781,0.873369112,0.824670766,0.812359902,0.83698163,0.105,,107914,0.092002386,0.117997614,79.15106561,,,78.71878189,79.58334933,,,,81.44625685,78.59804222,84.29447149,75.32363241,70.3913814,80.25588342,73.40876376,70.3325888,76.48493872,79.68417503,79.23267426,80.1356758,,,,321.5328008,1757,524189,306.2506587,336.814943,1494.158487,1137.422668,1927.355586,,,,576.4293601,407.9157226,791.1943329,451.3614515,286.124442,677.2637936,303.7326456,288.0706015,319.3946898,,,,45.18728802,85,188106,36.09400073,55.87478141,,,,,,,85.87130753,48.06151897,141.6316629,,,,34.60782414,25.68659413,45.62610168,,,,5.599040165,98,17503,4.545571449,6.823436571,,,,,,,,,,,,,4.622987406,3.510428159,5.976283257,,,,,,,0.084,,,0.071,0.097,0.121,,,0.103,0.139,0.081,,,0.069,0.093,138.9,216,155491,,,0.047,8650,,,,0.032617305,4885.354749,149778,,,12.49119733,69,552389,9.71889711,15.80840967,,,,,,,,,,,,,11.19680977,8.362313089,14.68312635,,,,0.302,,,0.287,0.318,0.087498291,10238,117008,0.076774887,0.098221695,0.061177013,2656,43415,0.04807063,0.074283396,0.002537176,489,192734,,,394.1390593,0.854822146,1489.955,1743,,,0.024610836,283,11499,0.012762002,0.03645967,3.06835817,,,,,,,2.72140371,2.749868242,3.174887296,3.157894321,,,,,,2.904309843,2.460549429,2.6890473,3.330544089,0.074781682,,,,,3627.16,,,,,0.87758488,51308,58465,0.840684394,0.914485366,70002,,,63500.04255,76503.95745,47949,29752.57447,66145.42553,60357,22169.76596,98544.23404,38236,30603.31915,45868.68085,53864,37756.25532,69971.74468,79591,76366.82979,82815.17021,,,,,,0.213911314,5591,26137,,,50.61202688,,,,,0.314005314,,70002,,,6.192697443,77,12434,,,3.01958039,38,1258453,2.1368348,4.144610003,,,,,,,,,,,,,2.42979073,1.587219975,3.560206391,,,,16.1453935,147,911692,13.47072236,18.82006464,16.12386639,,,,,,,,,,,,,16.65167501,13.71467348,19.58867655,,,,10.09112727,92,911692,8.134872826,12.37587179,,,,,,,,,,,,,10.53087301,8.363033255,13.08891361,,,,6.198086063,78,1258453,4.899329828,7.735491914,,,,,,,,,,,,,5.887569845,4.524170324,7.5327594,,,,,,,,,,,0.652163698,86053,131950,,,0.695,,,,,157.0700106,,,,,0.523363311,41610,79505,0.508255023,0.538471598,0.109061902,8545,78350,0.096295839,0.121827965,0.884107918,70291,79505,0.869046009,0.899169826,192734,,,,,0.218560296,42124,192734,,,0.130853923,25220,192734,,,0.067715089,13051,192734,,,0.015887181,3062,192734,,,0.031981903,6164,192734,,,0.000648562,125,192734,,,0.032365851,6238,192734,,,0.83189266,160334,192734,,,0.010274071,1790,174225,,,0.4901211,94463,192734,,,0.090947026,16782,184525,, -38,019,38019,ND,Cavalier County,2024,1,6844.720203,41,9650,3536.76681,11956.34872,1,,,,2,,,,2,,,,2,,,,2,7320.577473,3782.649205,12787.57561,1,,,,2,,0.132,,,0.111,0.158,3.068231646,,,2.432283719,3.851380554,3.810830841,,,3.033041616,4.720545361,0.117647059,38,323,0.08250991,0.152784208,0,,,,,,,,,,,,,0.115511551,0.079520582,0.151502521,,,,,,,0.161,,,0.128,0.202,0.398,,,0.326,0.477,8.8,0.082487393,0.059,,,0.241,,,0.199,0.29,0.671436285,2487,3704,,,0.190668084,,,0.155766245,0.230125335,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.083207831,221,2656,0.070101448,0.096314214,0.000273075,1,3662,,,3662,0,0,3597,,,-3597,0.00027801,1,3597,,,3597,1638,,,,,,,,,1673,0.58,,,,,,,,,0.59,0.61,,,,,,,,,0.61,0.932652289,2465,2643,0.914266534,0.951038044,0.801775148,542,676,0.670902878,0.932647418,0.024429967,45,1842,,,0.108,87,,0.063914894,0.152085106,,,,,,,,,,,,,0.046728972,0.007215076,0.086242868,4.435789407,140029,31568,2.891989699,5.979589115,0.162454874,135,831,0.093829861,0.231079887,19.11523758,7,3662,,,101.4523708,19,18728,61.08095453,158.4304441,,,,,,,,,,,,,107.5938615,64.77853312,168.0211426,,,,5.2,,,,,0,,,,,0.092696629,165,1780,0.041931516,0.143461742,0.065118913,0.024734762,0.105503063,0.025280899,0,0.063197862,0.002247191,0,0.009454795,0.778829095,1317,1691,0.729676577,0.827981613,,,,,,,,,,,,,0.776157261,0.732320833,0.819993688,0.17,,1691,0.116303605,0.223696395,80.03965238,,,76.90034702,83.17895774,,,,,,,,,,,,,79.80421638,76.47226442,83.13616835,,,,268.4165508,41,9650,182.3760236,380.9958682,,,,,,,,,,,,,276.4388501,186.5121313,394.6336474,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.095,,,0.081,0.111,0.137,,,0.118,0.16,0.087,,,0.074,0.102,,,,,,0.059,220,,,,0.082487393,329.3721618,3993,,,,,,,,,,,,,,,,,,,,,,,,,,0.3,,,0.282,0.316,0.083603021,155,1854,0.068113659,0.099092382,0.084725537,71,838,0.057321282,0.112129792,0.000556019,2,3597,,,1798.5,,,,,,,,,,,3.070018876,,,,,,,,,3.071008681,3.243485371,,,,,,,,,3.212168171,,,,,,4434.763,,,,,0.626458754,43750,69837,0.47319069,0.779726818,73221,,,62304.57447,84137.42553,,,,,,,,,,,,,63693,51507.6383,75878.3617,,,,,,0.133333333,62,465,,,,,,,,0.210417776,,73221,,,4.048582996,1,247,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.678991597,2020,2975,,,0.592,,,,,7.80142777,,,,,0.827518104,1257,1519,0.80630716,0.848729048,0.061042524,89,1458,0.014754412,0.107330636,0.812376564,1234,1519,0.764349122,0.860404006,3597,,,,,0.226855713,816,3597,,,0.274395329,987,3597,,,0.00528218,19,3597,,,0.019738671,71,3597,,,0.006394217,23,3597,,,0,0,3597,,,0.02557687,92,3597,,,0.928273561,3339,3597,,,0.007301402,25,3424,0,0.024703765,0.473728107,1704,3597,,,1,3704,3704,, -38,021,38021,ND,Dickey County,2024,1,8061.804485,75,12895,5266.238346,11812.41145,0,,,,2,,,,2,,,,2,,,,2,7619.05737,4829.828802,11432.32698,1,,,,2,,0.132,,,0.108,0.16,3.130802531,,,2.418552839,3.925697215,3.989888732,,,3.094153073,4.94260756,0.036446469,16,439,0.018916165,0.053976774,1,,,,,,,,,,,,,0.036585366,0.018412456,0.054758275,,,,,,,0.164,,,0.126,0.206,0.387,,,0.308,0.469,10,0.028352131,0.029,,,0.252,,,0.202,0.306,0.453890778,2269,4999,,,0.195928074,,,0.15651918,0.236565859,0.666666667,2,3,0.391498614,0.824051859,81.7,4,4897,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.084369215,319,3781,0.071262832,0.097475598,0.000816827,4,4897,,,1224.25,0.000609385,3,4923,,,1641,0.000203128,1,4923,,,4923,2873,,,,,,,,,2907,0.42,,,,,,,,,0.42,0.53,,,,,,,,,0.53,0.914214152,2920,3194,0.889232131,0.939196172,0.71950048,749,1041,0.609870687,0.829130274,0.017426274,39,2238,,,0.149,176,,0.091808511,0.206191489,,,,,,,,,,0.156626506,0,0.431360938,0.06132542,0.012737188,0.109913653,4.617036481,129217,27987,3.776118719,5.457954244,0.134630981,166,1233,0.06162283,0.207639133,24.50479886,12,4897,,,82.515059,20,24238,50.40234172,127.4378163,,,,,,,,,,,,,75.2945345,43.86184104,120.5538436,,,,5.4,,,,,0,,,,,0.08,170,2125,0.043174724,0.116825276,0.05904582,0.023424737,0.094666902,0.008470588,0,0.024495317,0.009411765,0,0.025541307,0.726005576,1823,2511,0.673809157,0.778201994,,,,,,,,,,,,,0.7239636,0.670158138,0.777769061,0.226,,2511,0.165856336,0.286143664,76.59092266,,,74.07252812,79.1093172,,,,,,,,,,,,,76.98294359,74.43102091,79.53486627,,,,411.9701616,75,12895,318.6176931,524.1270559,,,,,,,,,,,,,391.605959,299.547529,503.034237,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.096,,,0.08,0.112,0.137,,,0.115,0.16,0.084,,,0.07,0.099,,,,,,0.029,150,,,,0.028352131,149.954423,5289,,,,,,,,,,,,,,,,,,,,,,,,,,0.286,,,0.268,0.302,0.088235294,231,2618,0.072745932,0.103724656,0.079934747,98,1226,0.05610496,0.103764534,0.003046923,15,4923,,,328.2,,,,,,,,,,,3.260398422,,,,,,,,,3.314280233,3.386635513,,,,,,,,,3.425014037,0.027807456,,,,,2187.111,,,,,0.668275221,38083,56987,0.534412458,0.802137984,56326,,,51510,61142,,,,,,,,,,,,,62734,53339.10638,72128.89362,,,,,,0.157273919,120,763,,,,,,,,0.313549693,,56326,,,3.300330033,1,303,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.667768595,2424,3630,,,0.593,,,,,2.510733641,,,,,0.777661795,1490,1916,0.738794968,0.816528623,0.093191964,167,1792,0.043202059,0.14318187,0.799582464,1532,1916,0.738280237,0.86088469,4923,,,,,0.242941296,1196,4923,,,0.208612635,1027,4923,,,0.005890717,29,4923,,,0.012797075,63,4923,,,0.011375178,56,4923,,,0.000812513,4,4923,,,0.053219582,262,4923,,,0.889295145,4378,4923,,,0,0,4699,0,0.01521374,0.489538899,2410,4923,,,1,4999,4999,, -38,023,38023,ND,Divide County,2024,1,5500.531222,29,5945,2374.738966,10838.23931,1,,,,2,,,,2,,,,2,,,,2,6133.918604,2466.153411,12638.21667,1,,,,2,,0.137,,,0.114,0.164,3.108411253,,,2.406265156,3.916587868,3.82246511,,,2.954555707,4.750453391,,,,,,0,,,,,,,,,,,,,,,,,,,,,,0.164,,,0.128,0.205,0.397,,,0.316,0.482,9.4,0.079416652,0.033,,,0.254,,,0.206,0.308,0.534396355,1173,2195,,,0.185876364,,,0.14753459,0.22734185,1,1,1,,,182.8,4,2188,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.125304136,206,1644,0.106240307,0.144367966,,0,2188,,,,0,0,2187,,,-2187,,0,2187,,,,6237,,,,,,,,,6201,0.35,,,,,,,,,0.36,0.22,,,,,,,,,0.23,0.904330963,1399,1547,0.847734612,0.960927314,0.658947368,313,475,0.518172783,0.799721954,0.013176144,19,1442,,,0.119,62,,0.073723404,0.164276596,,,,,,,,,,,,,0.104557641,0.025760936,0.183354346,3.984627392,168482,42283,2.856106855,5.113147928,0.111531191,59,529,0,0.229391989,18.28153565,4,2188,,,,,,,,,,,,,,,,,,,,,,,,,,4.2,,,,,0,,,,,0.103773585,110,1060,0.042579613,0.164967557,0.095100865,0.030181589,0.16002014,0,0,0.022480931,0.009433962,0,0.032565463,0.815653965,792,971,0.753022558,0.878285372,,,,,,,,,,,,,0.821548822,0.731470706,0.911626937,0.164,,971,0.089993259,0.238006741,81.1169378,,,77.39261681,84.84125878,,,,,,,,,,,,,80.83052179,76.78430734,84.87673624,,,,282.2456249,29,5945,180.8400975,419.9591171,,,,,,,,,,,,,287.1259052,177.7354607,438.9024461,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.096,,,0.082,0.113,0.139,,,0.119,0.162,0.088,,,0.074,0.104,,,,,,0.033,70,,,,0.079416652,164.4718871,2071,,,,,,,,,,,,,,,,,,,,,,,,,,0.316,,,0.3,0.332,0.124440466,139,1117,0.101802168,0.147078763,0.127504554,70,549,0.088185405,0.166823703,0.000914495,2,2187,,,1093.5,,,,,,,,,,,3.143541872,,,,,,,,,3.074112627,3.046638019,,,,,,,,,3.077380968,0.005347982,,,,,4694.882,,,,,0.604567691,43625,72159,0.375812397,0.833322985,70513,,,60567.6383,80458.3617,,,,,,,,,,,,,93750,59573.31915,127926.6809,,,,,,0.212041885,81,382,,,,,,,,0.303887227,,70513,,,5.681818182,1,176,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.673389356,1202,1785,,,0.392,,,,,1.148929355,,,,,0.713812155,646,905,0.649502845,0.778121465,0.053675613,46,857,0,0.109360499,0.749171271,678,905,0.655712221,0.84263032,2187,,,,,0.240969364,527,2187,,,0.255144033,558,2187,,,0.019661637,43,2187,,,0.011888432,26,2187,,,0.021947874,48,2187,,,0.002286237,5,2187,,,0.042066758,92,2187,,,0.879286694,1923,2187,,,0.001975309,4,2025,0,0.024952621,0.469135803,1026,2187,,,1,2195,2195,, -38,025,38025,ND,Dunn County,2024,1,8152.853137,52,12054,5276.096682,12035.21953,0,,,,2,,,,2,,,,2,,,,2,5906.354135,3375.991717,9591.549081,1,,,,2,,0.143,,,0.121,0.168,3.170285847,,,2.430883007,3.926996341,3.545044503,,,2.732852035,4.409307927,0.054108216,27,499,0.034258325,0.073958108,0,,,,,,,,,,,,,0.048387097,0.026580919,0.070193274,,,,,,,0.17,,,0.135,0.206,0.4,,,0.329,0.473,8.6,0.132952209,0.045,,,0.275,,,0.227,0.324,0.354334554,1451,4095,,,0.223384715,,,0.182902268,0.268557045,0.272727273,3,11,0.11266692,0.445445377,247.8,10,4035,,,19.58224543,15,766,10.96003412,32.29793586,,,,,,,,,,,,,,,,,,,,,,0.126950138,415,3269,0.107886308,0.146013967,,0,4035,,,,,0,4015,,,,,0,4015,,,,1224,,,,,,,,,1129,0.47,,,,,,,,,0.47,0.33,,,,,0.45,,,,0.33,0.905757368,2643,2918,0.876651841,0.934862895,0.564787339,571,1011,0.471991341,0.657583337,0.013374806,43,3215,,,0.157,164,,0.092659575,0.221340426,0.230769231,0.094464895,0.367073566,,,,,,,0.465517241,0,0.934667791,0.059722222,0.005347892,0.114096553,3.959177215,162643,41080,3.215956221,4.702398209,0.218068536,210,963,0.103544787,0.332592285,17.34820322,7,4035,,,64.98027385,14,21545,35.52532038,109.0258581,,,,,,,,,,,,,57.52085131,27.58348402,105.7828935,,,,4.1,,,,,0,,,,,0.097058824,165,1700,0.057578031,0.136539616,0.050746269,0.016921209,0.084571328,0.027647059,0.000388719,0.054905399,0.022941177,0,0.050660782,0.722488038,1359,1881,0.666458905,0.778517172,,,,,,,,,,,,,0.785888078,0.712238265,0.859537891,0.305,,1881,0.228022041,0.381977959,79.04813119,,,76.08569117,82.0105712,,,,,,,,,,,,,80.97460946,78.09325278,83.85596613,,,,360.8136344,52,12054,264.1609285,481.2748251,,,,,,,,,,,,,278.4777369,189.2121114,395.2769188,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.096,,,0.082,0.111,0.134,,,0.114,0.155,0.091,,,0.077,0.105,215.3,7,3251,,,0.045,180,,,,0.132952209,470.1190125,3536,,,,,,,,,,,,,,,,,,,,,,,,,,0.318,,,0.303,0.333,0.128273413,289,2253,0.104443626,0.152103201,0.12535344,133,1061,0.090800249,0.159906632,0.00124533,5,4015,,,803,,,,,,,,,,,2.582629421,,,,,,,,,2.738402027,2.443505534,,,,,,,,,2.58342962,0.083281536,,,,,3058.103,,,,,0.589094527,44403,75375,0.495697964,0.682491091,82490,,,74266.34043,90713.65957,84722,74551.44681,94892.55319,,,,57917,21032.06383,94801.93617,76681,75867.21277,77494.78723,93688,86898.89362,100477.1064,,,,,,0.215942029,149,690,,,,,,,,0.267559704,,82490,,,7.299270073,2,274,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.722720247,2338,3235,,,0.396,,,,,1.185829057,,,,,0.711989283,1063,1493,0.656127146,0.76785142,0.075457876,103,1365,0.034086813,0.116828938,0.839249833,1253,1493,0.797692169,0.880807496,4015,,,,,0.264259029,1061,4015,,,0.185305106,744,4015,,,0.01618929,65,4015,,,0.098132005,394,4015,,,0.016936488,68,4015,,,0,0,4015,,,0.066500623,267,4015,,,0.78505604,3152,4015,,,0.027357238,103,3765,0.008506072,0.046208404,0.469738481,1886,4015,,,1,4095,4095,, -38,027,38027,ND,Eddy County,2024,1,12469.5652,49,6090,7390.254618,19707.28897,1,,,,2,,,,2,,,,2,,,,2,11374.39745,6218.488932,19084.30619,1,,,,2,,0.16,,,0.131,0.194,3.460221896,,,2.687755798,4.352513409,4.167047625,,,3.269920002,5.208935749,0.081818182,18,220,0.045599388,0.118036976,1,,,,,,,,,,,,,0.094972067,0.052022529,0.137921605,,,,,,,0.195,,,0.152,0.242,0.405,,,0.328,0.486,8.1,0.08183039,0.09,,,0.271,,,0.218,0.329,0.639539838,1501,2347,,,0.184576837,,,0.147981695,0.225416696,1,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.099219621,178,1794,0.083730259,0.114708983,,0,2337,,,,0.001296456,3,2314,,,771.3333333,,0,2314,,,,3085,,,,,,,,,3191,0.59,,,,,,,,,0.59,0.23,,,,,,,,,0.23,0.920467836,1574,1710,0.908909799,0.932025873,0.664015905,334,503,0.544062961,0.783968848,0.028997515,35,1207,,,0.135,77,,0.081382979,0.188617021,,,,,,,,,,,,,0.075471698,0.014064561,0.136878836,4.163376873,99767,23963,3.351225476,4.97552827,0.136094675,69,507,0.064426233,0.207763116,12.83697048,3,2337,,,87.47375787,10,11432,41.94706697,160.8673552,,,,,,,,,,,,,97.76126699,46.88032746,179.7864507,,,,5,,,,,0,,,,,0.100478469,105,1045,0.059022394,0.141934544,0.088995215,0.041180276,0.136810155,0.007655502,0,0.027912073,0.007655502,0,0.019916254,0.724954463,796,1098,0.663562085,0.786346841,,,,,,,,,,,,,0.720518868,0.660629209,0.780408527,0.225,,1098,0.167425044,0.282574956,72.48839611,,,68.48805223,76.48873998,,,,,,,,,,,,,73.26727331,68.89344685,77.64109977,,,,576.568664,49,6090,409.9966832,788.1883441,,,,,,,,,,,,,530.8742632,365.4294157,745.5448425,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.109,,,0.092,0.129,0.148,,,0.126,0.174,0.098,,,0.082,0.115,0,0,1915,,,0.09,210,,,,0.08183039,195.165479,2385,,,,,,,,,,,,,,,,,,,,,,,,,,0.307,,,0.289,0.323,0.102419355,127,1240,0.084547014,0.120291695,0.091854419,53,577,0.060875696,0.122833143,0,0,2314,,,-2314,,,,,,,,,,,3.468595599,,,,,,,,,3.496520661,3.367767993,,,,,,,,,3.380614208,,,,,,,,,,,0.776364557,38333,49375,0.576850077,0.975879037,58848,,,51311.82979,66384.17021,,,,,,,,,,,,,51528,44063.31915,58992.68085,,,,,,0.227665706,79,347,,,,,,,,0.262489804,,58848,,,,,170,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.718518519,1261,1755,,,0.642,,,,,3.52901995,,,,,0.69452182,748,1077,0.645358023,0.743685617,0.087857848,89,1013,0.035018954,0.140696742,0.838440111,903,1077,0.799036785,0.877843438,2314,,,,,0.25108038,581,2314,,,0.229472774,531,2314,,,0.004321521,10,2314,,,0.054883319,127,2314,,,0.004321521,10,2314,,,0.000432152,1,2314,,,0.044511668,103,2314,,,0.878997407,2034,2314,,,0.002279982,5,2193,0,0.022904433,0.489628349,1133,2314,,,1,2347,2347,, -38,029,38029,ND,Emmons County,2024,1,7948.057932,48,8362,4345.277232,13335.49068,1,,,,2,,,,2,,,,2,,,,2,8085.462921,4305.168477,13826.38784,1,,,,2,,0.142,,,0.117,0.169,3.297091178,,,2.563898008,4.152813124,4.036596322,,,3.118534075,5.019539012,0.068965517,16,232,0.036358508,0.101572526,1,,,,,,,,,,,,,0.067873303,0.034710831,0.101035776,,,,,,,0.183,,,0.144,0.224,0.35,,,0.278,0.424,8.4,0.134071671,0.052,,,0.271,,,0.221,0.325,0.391396547,1292,3301,,,0.177216889,,,0.140657415,0.214590895,0.333333333,1,3,0.04092282,0.635504717,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.112006788,264,2357,0.095325937,0.128687639,,0,3271,,,,0.000307692,1,3250,,,3250,,0,3250,,,,4568,,,,,,,,,4584,0.48,,,,,,,,,0.48,0.28,,,,,,,,,0.28,0.894865526,2196,2454,0.863021204,0.926709848,0.734006734,436,594,0.624276022,0.843737446,0.043269231,63,1456,,,0.166,107,,0.099276596,0.232723404,,,,,,,,,,,,,0.020700637,0,0.049341749,5.076539102,115938,22838,3.797351722,6.355726481,0.060653188,39,643,0.013513421,0.107792956,0,0,3271,,,122.7370359,20,16295,74.97097015,189.5573974,,,,,,,,,,,,,128.9075089,78.74005534,199.0871924,,,,4.8,,,,,0,,,,,0.074433657,115,1545,0.044272893,0.104594421,0.061184211,0.027252036,0.095116385,0.005177994,0,0.018730521,0.006472492,0,0.017930107,0.69921875,1074,1536,0.637935313,0.760502187,,,,,,,,,,,,,0.700714286,0.620721637,0.780706934,0.216,,1536,0.159646206,0.272353794,78.34433856,,,74.94127849,81.74739863,,,,,,,,,,,,,78.25158607,74.64426514,81.858907,,,,359.6057658,48,8362,249.0374466,502.5130135,,,,,,,,,,,,,356.2838979,242.0776228,505.7165536,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.101,,,0.086,0.118,0.143,,,0.122,0.165,0.087,,,0.072,0.102,0,0,2806,,,0.052,170,,,,0.134071671,475.9544302,3550,,,,,,,,,,,,,,,,,,,,,,,,,,0.297,,,0.281,0.315,0.116402116,198,1701,0.096146797,0.136657436,0.104434907,73,699,0.072264694,0.13660512,0.002153846,7,3250,,,464.2857143,,,,,,,,,,,3.585118319,,,,,,,,,3.530338045,3.707327151,,,,,,,,,3.664409809,,,,,,3181.920667,,,,,0.688681542,42440,61625,0.440387713,0.93697537,60952,,,52146.89362,69757.10638,,,,,,,,,,98571,50421.7234,146720.2766,64167,48869.46809,79464.53192,,,,,,0.232876712,119,511,,,,,,,,0.242682767,,60952,,,16.48351648,3,182,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.772692308,2009,2600,,,0.53,,,,,2.790163273,,,,,0.806040269,1201,1490,0.764111907,0.84796863,0.074927954,104,1388,0.039546591,0.110309317,0.746979866,1113,1490,0.700482127,0.793477604,3250,,,,,0.201846154,656,3250,,,0.288615385,938,3250,,,0.005230769,17,3250,,,0.011384615,37,3250,,,0.007076923,23,3250,,,0,0,3250,,,0.014769231,48,3250,,,0.944615385,3070,3250,,,0,0,3118,0,0.015285303,0.481230769,1564,3250,,,1,3301,3301,, -38,031,38031,ND,Foster County,2024,1,7209.144268,38,8701,3941.306256,12095.71911,1,,,,2,,,,2,,,,2,,,,2,7651.021503,4182.884652,12837.11402,1,,,,2,,0.128,,,0.104,0.154,2.96940407,,,2.269908222,3.784949703,3.788339805,,,2.961219924,4.755490758,0.043636364,12,275,0.019491457,0.06778127,1,,,,,,,,,,,,,0.045454546,0.02032752,0.070581571,,,,,,,0.158,,,0.121,0.197,0.366,,,0.292,0.447,9.4,0.059054828,0.039,,,0.233,,,0.187,0.287,0.694436267,2359,3397,,,0.19727905,,,0.159281487,0.240189679,,,,,,148.6,5,3364,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.099610895,256,2570,0.082930044,0.116291746,0.000297265,1,3364,,,3364,0.001184133,4,3378,,,844.5,0.0008881,3,3378,,,1126,2865,,,,,,,,,2868,0.55,,,,,,,,,0.55,0.47,,,,,,,,,0.47,0.943218954,2309,2448,0.90843578,0.978002129,0.821571238,617,751,0.660909571,0.982232906,0.020956123,32,1527,,,0.096,74,,0.05787234,0.13412766,,,,,,,,,,,,,0.063609468,0.006726117,0.120492818,4.646631972,126788,27286,3.538136063,5.755127882,0.057873486,43,743,0.004121944,0.111625027,23.78121284,8,3364,,,92.52405626,15,16212,51.78501192,152.6043602,,,,,,,,,,,,,97.78357236,54.72872316,161.2791322,,,,5,,,,,0,,,,,0.080808081,120,1485,0.044709401,0.116906761,0.063945578,0.019973137,0.10791802,0.002693603,0,0.01835389,0.013468014,0,0.031637987,0.805462653,1445,1794,0.768857146,0.84206816,,,,,,,,,,,,,0.809549072,0.730442568,0.888655576,0.162,,1794,0.106560524,0.217439476,77.86284305,,,74.8865712,80.83911489,,,,,,,,,,,,,77.44782896,74.33544897,80.56020894,,,,311.9648622,38,8701,211.9649883,442.8092201,,,,,,,,,,,,,326.2854828,220.1434451,465.7928151,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.092,,,0.077,0.108,0.137,,,0.116,0.159,0.082,,,0.069,0.097,,,,,,0.039,130,,,,0.059054828,197.4202908,3343,,,,,,,,,,,,,,,,,,,,,,,,,,0.28,,,0.262,0.297,0.097480832,178,1826,0.079608492,0.115353173,0.106080207,82,773,0.072718505,0.139441909,0.002368265,8,3378,,,422.25,,,,,,,,,,,3.146630356,,,,,,,,,3.253361691,3.352727568,,,,,,,,,3.454409061,,,,,,,,,,,0.687264987,44231,64358,0.529293101,0.845236872,83156,,,76436,89876,,,,,,,,,,,,,79676,68671.40426,90680.59575,,,,,,0.091472868,59,645,,,,,,,,0.190966376,,83156,,,14.70588235,3,204,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.708366534,1778,2510,,,0.679,,,,,18.73643657,,,,,0.782841823,1168,1492,0.735716743,0.829966903,0.065957447,93,1410,0.016224807,0.115690086,0.86461126,1290,1492,0.809735591,0.919486929,3378,,,,,0.232978094,787,3378,,,0.23830669,805,3378,,,0.005032564,17,3378,,,0.017169923,58,3378,,,0.005328597,18,3378,,,0,0,3378,,,0.019834221,67,3378,,,0.940497336,3177,3378,,,0.001563477,5,3198,0,0.016466408,0.5,1689,3378,,,1,3397,3397,, -38,033,38033,ND,Golden Valley County,2024,1,6335.552835,24,4657,2325.03623,13789.83128,1,,,,2,,,,2,,,,2,,,,2,7020.783481,2279.629286,16384.16662,1,,,,2,,0.129,,,0.108,0.154,3.073513749,,,2.350907942,3.862981308,3.777115118,,,2.863735572,4.715064086,,,,,,0,,,,,,,,,,,,,,,,,,,,,,0.16,,,0.123,0.199,0.389,,,0.31,0.473,6.5,0.332537584,0.044,,,0.248,,,0.199,0.298,,,1736,,,0.183549313,,,0.146442664,0.225690323,0.25,1,4,0.023230216,0.544021398,565,10,1770,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.10653753,132,1239,0.08866519,0.124409871,0,0,1770,,,-1770,0,0,1744,,,-1744,0.002866973,5,1744,,,348.8,3188,,,,,,,,,3279,0.45,,,,,,,,,0.45,0.17,,,,,,,,,0.17,0.946791862,1210,1278,0.918419108,0.975164617,0.83480826,283,339,0.688631625,0.980984894,0.016374269,14,855,,,0.275,83,,0.19993617,0.35006383,,,,,,,,,,,,,0.081395349,0,0.208492521,3.998654031,145571,36405,3.171149621,4.826158441,0.339285714,114,336,0.187992087,0.490579341,16.94915254,3,1770,,,,,,,,,,,,,,,,,,,,,,,,,,3.9,,,,,0,,,,,0.098159509,80,815,0.047294277,0.149024741,0.053020962,0,0.108007141,0.024539877,0,0.067748688,0.018404908,0,0.052365368,0.870049505,703,808,0.817130955,0.922968055,,,,,,,,,,,,,0.815217391,0.757637906,0.872796877,0.347,,808,0.248501945,0.445498055,87.39948995,,,79.5170999,95.28187999,,,,,,,,,,,,,,,,,,,285.0717137,24,4657,171.6317938,445.1747933,,,,,,,,,,,,,301.8775687,178.9117792,477.0967058,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.093,,,0.079,0.108,0.137,,,0.116,0.159,0.082,,,0.069,0.097,0,0,1539,,,0.044,80,,,,0.332537584,558.6631407,1680,,,,,,,,,,,,,,,,,,,,,,,,,,0.311,,,0.293,0.329,0.106723586,100,937,0.087659756,0.125787416,0.106918239,34,318,0.073556537,0.140279941,0.001720184,3,1744,,,581.3333333,,,,,,,,,,,3.010785742,,,,,,,,,,2.940584132,,,,,,,,,,,,,,,-1774.688,,,,,0.654600671,45481,69479,0.343567628,0.965633714,64823,,,55088.53192,74557.46809,,,,,,,,,,,,,89231,74682.91489,103779.0851,,,,,,0.248366013,76,306,,,,,,,,0.267405088,,64823,,,13.98601399,2,143,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.714982578,1026,1435,,,0.58,,,,,1.083714967,,,,,0.747399703,503,673,0.672394361,0.822405044,0.059105431,37,626,0,0.133736877,0.829123328,558,673,0.779901789,0.878344868,1744,,,,,0.192660551,336,1744,,,0.28956422,505,1744,,,0.006880734,12,1744,,,0.015481651,27,1744,,,0.002866973,5,1744,,,0.001146789,2,1744,,,0.049311927,86,1744,,,0.901949541,1573,1744,,,0,0,1617,0,0.029474072,0.494266055,862,1744,,,1,1736,1736,, -38,035,38035,ND,Grand Forks County,2024,1,6411.017576,701,199832,5733.03737,7088.997782,0,18552.98699,12226.53533,26993.62199,,,,,2,,,,2,15389.75729,10657.8543,21505.64326,,5598.009035,4917.541255,6278.476814,,,,,2,,0.134,,,0.112,0.157,3.144390296,,,2.536562675,3.838947116,4.109389993,,,3.450371903,4.834414617,0.078715851,510,6479,0.072158477,0.085273226,0,0.132478633,0.0890415,0.175915765,0.088235294,0.052199828,0.124270761,0.082758621,0.060335786,0.105181455,0.113689095,0.083720258,0.143657932,0.072850487,0.065437654,0.08026332,,,,,,,0.144,,,0.11,0.178,0.38,,,0.33,0.428,8.5,0.099631526,0.064,,,0.253,,,0.21,0.294,0.895134618,65497,73170,,,0.229261261,,,0.195418777,0.264254827,0.25,10,40,0.167808311,0.33763196,676.7,492,72705,,,9.153448178,161,17589,7.739518337,10.56737802,46.72897196,30.24052682,68.98118074,,,,21.77858439,11.25331236,38.04280408,27.55905512,18.31279198,39.83050782,5.851576484,4.674031461,7.23556494,,,,,,,0.08724284,5233,59982,0.074136457,0.100349223,0.001224125,89,72705,,,816.9101124,0.0008562,62,72413,,,1167.951613,0.003576706,259,72413,,,279.5868726,2806,,,,,4485,,,,2805,0.57,,,,,0.48,0.43,0.46,0.33,0.57,0.57,,,,,0.62,0.58,0.3,0.46,0.57,0.955996849,41257,43156,0.946850106,0.965143591,0.795141575,15417,19389,0.749890064,0.840393086,0.018869425,712,37733,,,0.105,1560,,0.064489362,0.145510638,0.438752784,0.240488781,0.637016787,0.282430214,0.022252315,0.542608112,0.412037037,0.247164167,0.576909907,0.113338473,0.025576187,0.20110076,0.076873799,0.050595865,0.103151733,4.440588068,124745,28092,4.009661717,4.871514418,0.178720583,2696,15085,0.141506927,0.21593424,10.72828554,78,72705,,,65.68479227,232,353202,57.23245322,74.13713132,,,,,,,,,,73.86433584,38.16678018,129.0261298,67.11226485,57.74042511,76.48410459,,,,6.5,,,,,0,,,,,0.174301495,5365,30780,0.154968118,0.193634871,0.14057635,0.121577271,0.159575429,0.023521767,0.014768495,0.03227504,0.017381417,0.008690543,0.02607229,0.806636357,32113,39811,0.788210128,0.825062586,0.775,0.632214507,0.917785493,0.619621343,0.447178527,0.792064158,0.800435414,0.657029193,0.943841634,0.707421249,0.604621766,0.810220732,0.82938824,0.80941502,0.849361461,0.112,,39811,0.096373764,0.127626237,78.72934802,,,78.04561448,79.41308156,67.12236602,62.50391092,71.74082112,86.36336211,67.62433421,105.10239,,,,73.64583017,63.27979694,84.01186339,79.38097247,78.67991171,80.08203324,,,,333.8934397,701,199832,308.2183428,359.5685365,937.3733759,645.2447007,1316.420732,,,,,,,799.7790959,543.4110929,1135.222586,310.005949,283.8403333,336.1715646,,,,52.92405398,38,71801,37.45221048,72.64239902,,,,,,,,,,,,,45.74900267,29.60634236,67.53455275,,,,3.871351995,26,6716,2.528895655,5.672427648,,,,,,,,,,,,,,,,,,,,,,0.095,,,0.081,0.11,0.138,,,0.116,0.158,0.093,,,0.079,0.107,99.9,61,61060,,,0.064,4700,,,,0.099631526,6661.463449,66861,,,11.81267926,25,211637,7.644543179,17.43784485,,,,,,,,,,,,,11.39607633,6.961019485,17.60031562,,,,0.324,,,0.308,0.34,0.099029039,4406,44492,0.083539677,0.114518401,0.056997708,920,16141,0.041508346,0.072487069,0.002209548,160,72413,,,452.58125,0.867812995,547.59,631,,,0.056427504,302,5352,0.022352659,0.090502349,3.284325153,,,,,,3.508211181,2.855576567,3.002240449,3.396141531,3.226476883,,,,,,3.542103842,2.490014512,2.870746796,3.413676737,0.0774485,,,,,748.2715,,,,,0.807012743,47182,58465,0.7614613,0.852564185,64914,,,58076.04255,71751.95745,24025,15825.17021,32224.82979,55767,35798.82979,75735.17021,56559,52870.14894,60247.85106,42339,29248.10638,55429.89362,68892,64768.25532,73015.74468,,,,,,0.204594017,1915,9360,,,51.1562621,,,,,0.331007179,,64914,,,2.251330332,11,4886,,,3.432949449,17,495201,1.999819562,5.496484623,,,,,,,,,,,,,3.382010122,1.848976405,5.674438314,,,,15.26543023,56,353202,11.29344932,20.18170833,15.85494986,,,,,,,,,,,,,14.08784666,9.919144155,19.41824089,,,,12.1743365,43,353202,8.81062769,16.39875137,,,,,,,,,,,,,11.24215604,7.738582934,15.78816687,,,,11.91435397,59,495201,9.069758266,15.36864856,,,,,,,,,,,,,12.32017973,9.173183036,16.19876107,,,,,,,,,,,0.581541639,30970,53255,,,0.693,,,,,116.6154838,,,,,0.511469009,15720,30735,0.489423329,0.533514689,0.137688877,4137,30046,0.117895711,0.157482043,0.85859769,26389,30735,0.836785066,0.880410314,72413,,,,,0.20780799,15048,72413,,,0.143827766,10415,72413,,,0.040310442,2919,72413,,,0.03060224,2216,72413,,,0.028986508,2099,72413,,,0.001021916,74,72413,,,0.050819604,3680,72413,,,0.827379062,59913,72413,,,0.004730244,323,68284,,,0.483393866,35004,72413,,,0.192278256,14069,73170,, -38,037,38037,ND,Grant County,2024,1,9499.881208,45,5856,4742.306471,16997.91162,1,,,,2,,,,2,,,,2,,,,2,10237.78742,4909.417005,18827.65557,1,,,,2,,0.139,,,0.115,0.167,3.178416748,,,2.441493415,3.966583556,3.896909169,,,3.014298364,4.845626381,0.06741573,12,178,0.030579877,0.104251584,1,,,,,,,,,,,,,0.06097561,0.024352884,0.097598335,,,,,,,0.174,,,0.135,0.216,0.394,,,0.318,0.475,8.4,0.157414027,0.042,,,0.249,,,0.199,0.3,0.273359409,629,2301,,,0.179631838,,,0.143332117,0.219488018,1,1,1,,,172.2,4,2323,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.08974359,147,1638,0.074254228,0.105232951,,0,2323,,,,0.000445832,1,2243,,,2243,0.002229157,5,2243,,,448.6,8082,,,,,,,,,8140,0.38,,,,,,,,,0.38,0.23,,,,,,,,,0.23,0.918061166,1591,1733,0.900155144,0.935967187,0.786206897,342,435,0.698973833,0.87343996,0.01965602,24,1221,,,0.31,139,,0.220638298,0.399361702,,,,,,,,,,0.75,0.210735877,1,0.227467811,0.130703534,0.324232089,5.372873301,113056,21042,3.814215174,6.931531428,0.178988327,92,514,0.102984928,0.254991726,0,0,2323,,,103.7882719,12,11562,53.62891462,181.2972241,,,,,,,,,,,,,109.4590897,56.5591089,191.2030014,,,,4.4,,,,,0,,,,,0.083333333,90,1080,0.051378232,0.115288435,0.065965583,0.024680472,0.107250695,0.012962963,0,0.040503474,0.003703704,0,0.020934347,0.647969052,670,1034,0.589087851,0.706850253,,,,,,,,,,,,,0.588691796,0.518634924,0.658748669,0.234,,1034,0.170436527,0.297563473,75.76785075,,,71.47963953,80.05606196,,,,,,,,,,,,,75.0274061,70.24227677,79.81253542,,,,439.9609774,45,5856,300.9329829,621.0936279,,,,,,,,,,,,,459.7122073,312.3521411,652.5247829,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.099,,,0.083,0.116,0.141,,,0.12,0.164,0.087,,,0.073,0.103,,,,,,0.042,100,,,,0.157414027,376.8491794,2394,,,,,,,,,,,,,,,,,,,,,,,,,,0.308,,,0.29,0.326,0.096521739,111,1150,0.07626642,0.116777058,0.074297189,37,498,0.048084423,0.100509955,0.002674989,6,2243,,,373.8333333,,,,,,,,,,,2.403985035,,,,,,,,,2.455792601,3.082989453,,,,,,,,,3.169057123,,,,,,-1302.639,,,,,0.898055246,43500,48438,0.706410436,1.089700056,43988,,,37440.76596,50535.23404,105938,81836.55319,130039.4468,88977,83206.61702,94747.38298,,,,,,,57155,52038.74468,62271.25532,,,,,,0.371681416,84,226,,,,,,,,0.339433482,,43988,,,,,109,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.773669468,1381,1785,,,0.467,,,,,1.323781526,,,,,0.862264151,914,1060,0.841858848,0.882669454,0.094994893,93,979,0.045845278,0.144144508,0.779245283,826,1060,0.735225135,0.823265431,2243,,,,,0.201961659,453,2243,,,0.320107,718,2243,,,0.001337494,3,2243,,,0.019170754,43,2243,,,0.004458315,10,2243,,,0.000445832,1,2243,,,0.018279091,41,2243,,,0.937137762,2102,2243,,,0.00543971,12,2206,0,0.026168947,0.503789568,1130,2243,,,1,2301,2301,, -38,039,38039,ND,Griggs County,2024,1,5027.250982,35,5786,2170.41015,9905.68856,1,,,,2,,,,2,,,,2,,,,2,5121.359078,2211.039346,10091.11903,1,,,,2,,0.116,,,0.094,0.143,2.84338352,,,2.168475387,3.634240746,3.663455238,,,2.84254476,4.589565498,,,,,,0,,,,,,,,,,,,,,,,,,,,,,0.146,,,0.111,0.188,0.387,,,0.307,0.471,9.8,0.059343071,0.022,,,0.225,,,0.182,0.279,0.456634866,1053,2306,,,0.193620119,,,0.155720779,0.23597963,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.089533417,142,1586,0.074044056,0.105022779,0.000438404,1,2281,,,2281,0.00044405,1,2252,,,2252,,0,2252,,,,2748,,,,,,,,,2748,0.55,,,,,,,,,0.55,0.43,,,,,,,,,0.43,0.911729858,1539,1688,0.869215387,0.954244328,0.669376694,247,369,0.497431355,0.841322032,0.021589794,22,1019,,,0.154,69,,0.090851064,0.217148936,,,,,,,,,,,,,0.006423983,0,0.034119005,5.098696746,133800,26242,3.045745145,7.151648346,0.157676349,76,482,0.052077593,0.263275104,48.22446296,11,2281,,,107.0568293,12,11209,55.31782593,187.0067361,,,,,,,,,,,,,110.1523775,56.91734082,192.4140357,,,,5.1,,,,,0,,,,,0.066990291,69,1030,0.029864144,0.104116438,0.06555773,0.018374197,0.112741263,0,0,0.023135716,0.003883495,0,0.018000846,0.716094033,792,1106,0.650075185,0.78211288,,,,,,,,,,,,,0.714971209,0.657967692,0.771974726,0.204,,1106,0.123347523,0.284652477,80.77994952,,,77.73126653,83.82863252,,,,,,,,,,,,,80.64540634,77.58468305,83.70612963,,,,308.6294281,35,5786,201.6069891,452.2136203,,,,,,,,,,,,,312.1613083,203.9141305,457.388643,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.086,,,0.073,0.104,0.129,,,0.109,0.153,0.076,,,0.064,0.09,0,0,1936,,,0.022,50,,,,0.059343071,143.6102326,2420,,,,,,,,,,,,,,,,,,,,,,,,,,0.288,,,0.27,0.306,0.091561939,102,1114,0.074881088,0.10824279,0.086345382,43,498,0.057749637,0.114941126,0.003108348,7,2252,,,321.7142857,,,,,,,,,,,2.955032026,,,,,,,,,3.040681931,2.740785038,,,,,,,,,2.719716254,,,,,,2443.8455,,,,,0.659535296,38689,58661,0.5808483,0.738222292,59332,,,52409.44681,66254.55319,,,,,,,,,,,,,66688,56024.17021,77351.82979,,,,,,0.239010989,87,364,,,,,,,,0.261865435,,59332,,,8.333333333,1,120,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.677506775,1250,1845,,,0.579,,,,,1.417512863,,,,,0.818770227,759,927,0.705865912,0.931674541,0.07424594,64,862,0.017008345,0.131483535,0.810140237,751,927,0.779587126,0.840693348,2252,,,,,0.202042629,455,2252,,,0.311722913,702,2252,,,0.004884547,11,2252,,,0.007992895,18,2252,,,0.001332149,3,2252,,,0,0,2252,,,0.011101243,25,2252,,,0.972468917,2190,2252,,,0.002740978,6,2189,0,0.024382907,0.49955595,1125,2252,,,1,2306,2306,, -38,041,38041,ND,Hettinger County,2024,1,7594.375817,33,6540,3924.124805,13265.84622,1,,,,2,,,,2,,,,2,,,,2,8228.576936,4251.825778,14373.66794,1,,,,2,,0.143,,,0.119,0.172,3.349469223,,,2.566848614,4.210412774,4.210858122,,,3.266010021,5.200913064,0.067264574,15,223,0.034388793,0.100140355,1,,,,,,,,,,,,,0.068292683,0.033761935,0.102823431,,,,,,,0.175,,,0.138,0.217,0.417,,,0.334,0.503,6.7,0.29179767,0.053,,,0.255,,,0.208,0.307,0.310566493,773,2489,,,0.190397493,,,0.151929121,0.234227948,0,0,2,0,0.510593623,740.7,18,2430,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.125070107,223,1783,0.104814787,0.145325426,,0,2430,,,,0.000415628,1,2406,,,2406,0.000415628,1,2406,,,2406,2848,,,,,,,,,2890,0.46,,,,,,,,,0.46,0.28,,,,,,,,,0.27,0.880369766,1619,1839,0.832120535,0.928618998,0.593650794,374,630,0.471716218,0.71558537,0.017118402,24,1402,,,0.191,110,,0.114744681,0.267255319,,,,,,,,,,,,,0.101415094,0.030326148,0.172504041,5.687232015,119375,20990,4.664574859,6.709889172,0.127388535,60,471,0.043939231,0.210837839,12.34567901,3,2430,,,,,,,,,,,,,,,,,,,,,,,,,,4.4,,,,,0,,,,,0.095890411,105,1095,0.058604717,0.133176105,0.085844749,0.042548355,0.129141143,0,0,0.021762363,0.012785388,0,0.029942373,0.767172168,860,1121,0.702210511,0.832133825,,,,,,,,,,,,,0.730337079,0.678431908,0.782242249,0.26,,1121,0.187602926,0.332397074,77.60671326,,,73.97961961,81.23380692,,,,,,,,,,,,,77.01484265,73.10615008,80.92353521,,,,361.5445007,33,6540,240.2436951,522.5324671,,,,,,,,,,,,,379.9980815,250.4211302,552.8772579,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.101,,,0.085,0.118,0.147,,,0.125,0.17,0.086,,,0.072,0.102,,,,,,0.053,130,,,,0.29179767,722.7828288,2477,,,,,,,,,,,,,,,,,,,,,,,,,,0.307,,,0.291,0.323,0.126970954,153,1205,0.104332657,0.149609252,0.121262459,73,602,0.083134799,0.159390118,0.001246883,3,2406,,,802,,,,,,,,,,,2.699564637,,,,,,,,,2.783677372,2.913776393,,,,,,,,,2.914991563,,,,,,-2369.9857,,,,,0.608867268,41803,68657,0.574653809,0.643080726,66192,,,57998.12766,74385.87234,,,,,,,,,,,,,68384,63114.04255,73653.95745,,,,,,0.40037594,213,532,,,,,,,,0.235844211,,66192,,,12.90322581,2,155,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.649504951,1312,2020,,,0.527,,,,,2.220901055,,,,,0.776303318,819,1055,0.711811169,0.840795466,0.099800399,100,1002,0.048344736,0.151256062,0.801895735,846,1055,0.766762757,0.837028712,2406,,,,,0.244389027,588,2406,,,0.228595179,550,2406,,,0.008312552,20,2406,,,0.033250208,80,2406,,,0.003325021,8,2406,,,0.00166251,4,2406,,,0.018703242,45,2406,,,0.917290108,2207,2406,,,0,0,2320,0,0.02054292,0.507481297,1221,2406,,,1,2489,2489,, -38,043,38043,ND,Kidder County,2024,1,6417.046025,39,6437,3077.222997,11801.17612,1,,,,2,,,,2,,,,2,,,,2,6828.174228,3274.374951,12557.25552,1,,,,2,,0.155,,,0.129,0.184,3.357176934,,,2.628153115,4.216003129,4.067499161,,,3.146582909,5.09227575,0.063157895,12,190,0.028569828,0.097745962,1,,,,,,,,,,,,,0.060240964,0.024045326,0.096436602,,,,,,,0.188,,,0.149,0.231,0.384,,,0.305,0.464,5.7,0.379741329,0.056,,,0.277,,,0.226,0.332,0.174603175,418,2394,,,0.183297451,,,0.147205327,0.222280833,0,0,3,0,0.420755624,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.100578035,174,1730,0.083897184,0.117258886,,0,2369,,,,0,0,2393,,,-2393,,0,2393,,,,5884,,,,,,,,,5543,0.48,,,,,,,,,0.47,0.47,,,,,,,,,0.48,0.899639423,1497,1664,0.856358651,0.942920195,0.633495146,261,412,0.509850894,0.757139397,0.039304611,52,1323,,,0.151,79,,0.089042553,0.212957447,,,,,,,,,,0.108108108,0,0.609977877,0.150462963,0.045108413,0.255817513,4.665149373,105563,22628,3.112188215,6.21811053,0.048561151,27,556,0.014340044,0.082782258,16.8847615,4,2369,,,89.87662391,11,12239,44.86608683,160.8141067,,,,,,,,,,,,,87.27526619,41.85188249,160.5023219,,,,4.9,,,,,0,,,,,0.075555556,85,1125,0.036717851,0.11439326,0.049728752,0.008144655,0.09131285,0.025777778,0,0.057819959,0.003555556,0,0.018530174,0.704658077,711,1009,0.612220676,0.797095479,,,,,,,,,,,,,0.692307692,0.594752199,0.789863185,0.344,,1009,0.229778483,0.458221517,80.32925203,,,76.47084172,84.18766235,,,,,,,,,,,,,79.89083473,75.95813743,83.82353204,,,,337.3246087,39,6437,232.1987393,473.7291665,,,,,,,,,,,,,350.4234095,239.6893527,494.6932975,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.106,,,0.09,0.124,0.147,,,0.125,0.171,0.093,,,0.079,0.109,,,,,,0.056,130,,,,0.379741329,924.670135,2435,,,,,,,,,,,,,,,,,,,,,,,,,,0.301,,,0.285,0.316,0.103673469,127,1225,0.08460964,0.122737299,0.092627599,49,529,0.061648876,0.123606323,0.000835771,2,2393,,,1196.5,,,,,,,,,,,3.129071141,,,,,,,,,,2.911578265,,,,,,,,,,,,,,,,,,,,0.759062247,43095,56774,0.630891848,0.887232645,56951,,,48603.42553,65298.57447,,,,,,,,,,52273,31886.61702,72659.38298,59113,53460.57447,64765.42553,,,,,,0.207894737,79,380,,,,,,,,0.258520483,,56951,,,,,196,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.770448549,1460,1895,,,0.447,,,,,2.960369673,,,,,0.743474347,826,1111,0.692735292,0.794213403,0.076530612,75,980,0.018799189,0.134262036,0.710171017,789,1111,0.650571897,0.769770137,2393,,,,,0.2218972,531,2393,,,0.269118262,644,2393,,,0.00376097,9,2393,,,0.014208107,34,2393,,,0.008775596,21,2393,,,0,0,2393,,,0.053071458,127,2393,,,0.919765984,2201,2393,,,0.000453927,1,2203,0,0.021428808,0.475971584,1139,2393,,,1,2394,2394,, -38,045,38045,ND,LaMoure County,2024,1,5413.837935,45,10486,2882.640691,9257.827748,1,,,,2,,,,2,,,,2,,,,2,5574.877328,2880.620466,9738.188771,1,,,,2,,0.141,,,0.115,0.168,3.161879066,,,2.446772639,3.99859927,3.975863549,,,3.116554979,4.990794326,0.037037037,13,351,0.017279836,0.056794238,1,,,,,,,,,,,,,0.039755352,0.018578034,0.060932669,,,,,,,0.174,,,0.134,0.216,0.382,,,0.304,0.458,7.8,0.19423344,0.051,,,0.265,,,0.213,0.321,0.296603958,1214,4093,,,0.182662431,,,0.146676818,0.220811165,0.166666667,1,6,0.011498194,0.426636125,98.4,4,4066,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.11852861,348,2936,0.10065627,0.136400951,,0,4066,,,,,0,4098,,,,0.000244022,1,4098,,,4098,2074,,,,,,,,,2075,0.54,,,,,,,,,0.54,0.45,,,,,,,,,0.45,0.901556157,2665,2956,0.879085085,0.924027229,0.711606096,607,853,0.621038123,0.802174069,0.018500949,39,2108,,,0.1,86,,0.058297872,0.141702128,,,,,,,,,,,,,0.190176322,0.113793117,0.266559528,4.250947764,126708,29807,3.351487394,5.150408134,0.119266055,104,872,0.052981575,0.185550535,19.67535662,8,4066,,,78.84103676,16,20294,45.06446464,128.0329043,,,,,,,,,,,,,81.9000819,46.81297325,133.000602,,,,5.3,,,,,0,,,,,0.082887701,155,1870,0.060297436,0.105477965,0.048343292,0.024178544,0.072508039,0.007486631,0,0.021912944,0.026737968,0.009459007,0.044016929,0.708251474,1442,2036,0.673900764,0.742602183,,,,,,,,,,,,,0.721588089,0.646224076,0.796952103,0.23,,2036,0.180671765,0.279328235,83.86630119,,,80.53435538,87.19824701,,,,,,,,,,,,,83.87035064,80.41558068,87.3251206,,,,259.7330575,45,10486,179.8726928,362.9509141,,,,,,,,,,,,,258.6156782,176.8929324,365.0881738,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.099,,,0.083,0.115,0.141,,,0.119,0.164,0.084,,,0.07,0.098,,,,,,0.051,210,,,,0.19423344,803.93221,4139,,,,,,,,,,,,,,,,,,,,,,,,,,0.294,,,0.276,0.312,0.112506036,233,2071,0.094633695,0.130378376,0.134573304,123,914,0.095254155,0.173892453,0.000488043,2,4098,,,2049,,,,,,,,,,,2.929304551,,,,,,,,,2.940831488,3.071883404,,,,,,,,,3.026629714,0.126754361,,,,,2854.6741,,,,,0.651481871,40930,62826,0.547394971,0.755568771,77744,,,70174.46809,85313.53192,,,,,,,,,,,,,69848,59927.65957,79768.34043,,,,,,0.221438646,157,709,,,,,,,,0.203462647,,77744,,,7.272727273,2,275,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.684876543,2219,3240,,,0.636,,,,,2.164755904,,,,,0.84393404,1433,1698,0.830405014,0.857463067,0.057301294,93,1623,0.027922303,0.086680285,0.840989399,1428,1698,0.798783785,0.883195014,4098,,,,,0.212786725,872,4098,,,0.274036115,1123,4098,,,0.003172279,13,4098,,,0.00829673,34,4098,,,0.001464129,6,4098,,,0.000732064,3,4098,,,0.023670083,97,4098,,,0.954123963,3910,4098,,,0.00129199,5,3870,0,0.012942543,0.487798926,1999,4098,,,1,4093,4093,, -38,047,38047,ND,Logan County,2024,1,6814.158131,21,4830,3115.867006,12935.39471,1,,,,2,,,,2,,,,2,,,,2,,,,2,,,,2,,0.139,,,0.116,0.166,3.153126619,,,2.478939722,3.954353353,3.999120543,,,3.139798101,4.981819767,,,,,,0,,,,,,,,,,,,,,,,,,,,,,0.172,,,0.137,0.213,0.386,,,0.308,0.471,7.5,0.26133688,0.034,,,0.254,,,0.207,0.307,0.46641791,875,1876,,,0.180099378,,,0.143915835,0.220717457,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.08008658,111,1386,0.065788708,0.094384452,0,0,1883,,,-1883,0,0,1855,,,-1855,,0,1855,,,,2936,,,,,,,,,2936,0.45,,,,,,,,,0.45,0.36,,,,,,,,,0.36,0.9125,1241,1360,0.861403767,0.963596233,0.809651475,302,373,0.671847854,0.947455095,0.021764032,19,873,,,0.209,88,,0.127978723,0.290021277,,,,,,,,,,,,,0.042857143,0.007171432,0.078542854,3.957529412,100917,25500,2.634927778,5.280131046,0.102941177,42,408,0.036865755,0.169016598,0,0,1883,,,,,,,,,,,,,,,,,,,,,,,,,,4.8,,,,,0,,,,,0.067901235,55,810,0.026986352,0.108816117,0.05443038,0,0.110451935,0,0,0.02941949,0.009876543,0,0.031715519,0.624113475,528,846,0.542190118,0.706036832,,,,,,,,,,,,,0.650306749,0.567014783,0.733598714,0.242,,846,0.158264488,0.325735512,80.58642407,,,76.3589872,84.81386094,,,,,,,,,,,,,82.72872601,79.4042221,86.05322992,,,,301.849272,21,4830,178.8950088,477.0519849,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.098,,,0.084,0.115,0.142,,,0.122,0.165,0.089,,,0.076,0.105,0,0,1561,,,0.034,60,,,,0.26133688,520.0603911,1990,,,,,,,,,,,,,,,,,,,,,,,,,,0.295,,,0.278,0.312,0.086446105,81,937,0.068573764,0.104318445,0.06779661,32,472,0.042775334,0.092817887,0,0,1855,,,-1855,,,,,,,,,,,,,,,,,,,,,3.183767622,,,,,,,,,3.136564845,,,,,,792.321,,,,,0.72,37656,52300,0.53245896,0.90754104,60695,,,52247.34043,69142.65957,,,,,,,,,,,,,59750,45246,74254,,,,,,0.24691358,80,324,,,,,,,,0.259362386,,60695,,,9.345794393,1,107,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.765836299,1076,1405,,,0.548,,,,,3.198223077,,,,,0.831168831,640,770,0.783615764,0.878721898,0.092511013,63,681,0.023940715,0.161081311,0.797402597,614,770,0.718549676,0.876255519,1855,,,,,0.231266846,429,1855,,,0.270080863,501,1855,,,0.002695418,5,1855,,,0.009703504,18,1855,,,0.005390836,10,1855,,,0,0,1855,,,0.026415094,49,1855,,,0.937466307,1739,1855,,,0.012702079,22,1732,0,0.041900005,0.493261456,915,1855,,,1,1876,1876,, -38,049,38049,ND,McHenry County,2024,1,8039.490547,85,15161,5298.074929,11697.03666,0,,,,2,,,,2,,,,2,,,,2,7601.063969,4965.267344,11137.31985,,,,,2,,0.133,,,0.11,0.158,3.12349209,,,2.460150534,3.940213395,3.804890964,,,3.001108558,4.742806642,0.048140044,22,457,0.028513775,0.067766313,1,,,,,,,,,,,,,0.051282051,0.030409349,0.072154754,,,,,,,0.171,,,0.132,0.212,0.403,,,0.329,0.478,8.1,0.169910597,0.049,,,0.254,,,0.205,0.304,0.276520112,1478,5345,,,0.200402408,,,0.162955128,0.242600087,0.444444444,4,9,0.264827841,0.599456043,133.4,7,5249,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.087041089,358,4113,0.072743217,0.101338962,,0,5249,,,,,0,5189,,,,,0,5189,,,,3073,,,,,,,,,3007,0.53,,,,,,,,,0.53,0.5,,,,,,,,,0.5,0.905459388,3400,3755,0.883141459,0.927777316,0.733388704,883,1204,0.62647058,0.840306829,0.032288699,102,3159,,,0.135,163,,0.084957447,0.185042553,,,,,,,,,,,,,0.111207646,0.068265592,0.154149699,4.82107441,135154,28034,3.651429006,5.990719813,0.09451946,119,1259,0.04312619,0.14591273,13.3358735,7,5249,,,109.1357155,31,28405,74.1524238,154.9094367,,,,,,,,,,,,,111.0083256,74.89685114,158.4712873,,,,4.9,,,,,0,,,,,0.087890625,225,2560,0.062255725,0.113525525,0.076284585,0.045379249,0.107189922,0.003125,0,0.0126281,0.009375,0,0.021759916,0.736905238,1843,2501,0.701271192,0.772539284,,,,,,,,,,,,,0.713610089,0.624640796,0.802579383,0.481,,2501,0.407561328,0.554438672,76.80349965,,,74.41656526,79.19043403,,,,,,,,,,,,,77.11824753,74.78402616,79.4524689,,,,380.0659559,85,15161,297.9110391,477.8758786,,,,,,,,,,,,,369.8691308,286.643496,469.7207216,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.096,,,0.081,0.111,0.137,,,0.117,0.159,0.083,,,0.07,0.096,,,,,,0.049,260,,,,0.169910597,916.6676694,5395,,,,,,,,,,,,,,,,,,,,,,,,,,0.294,,,0.277,0.31,0.092275428,264,2861,0.075594577,0.108956279,0.076452599,100,1308,0.052622812,0.100282387,0.000770861,4,5189,,,1297.25,,,,,,,,,,,2.842648549,,,,,,,,,2.863409799,2.844399682,,,,,,,,,2.870767538,0.060147138,,,,,3286.035,,,,,0.669311484,43949,65663,0.607908538,0.730714431,65378,,,56434.68085,74321.31915,,,,,,,,,,,,,79500,73360.25532,85639.74468,,,,,,0.19300106,182,943,,,,,,,,0.218620943,,65378,,,9.803921569,3,306,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,27.27092424,11,40336,13.61354712,48.79521647,,,,,,,,,,,,,26.0987577,12.51536877,47.99654463,,,,,,,,,,,0.680181201,3003,4415,,,0.598,,,,,4.740785319,,,,,0.818771626,1893,2312,0.792143106,0.845400146,0.088507878,191,2158,0.050854183,0.126161573,0.793252595,1834,2312,0.754279461,0.832225729,5189,,,,,0.236654461,1228,5189,,,0.219310079,1138,5189,,,0.006745038,35,5189,,,0.011948352,62,5189,,,0.003854307,20,5189,,,0,0,5189,,,0.026209289,136,5189,,,0.938716516,4871,5189,,,0.001191658,6,5035,0,0.014098922,0.476199653,2471,5189,,,1,5345,5345,, -38,051,38051,ND,McIntosh County,2024,1,6631.235976,37,6111,3426.456395,11583.43474,1,,,,2,,,,2,,,,2,,,,2,6555.614213,3143.671829,12056.00795,1,,,,2,,0.158,,,0.131,0.187,3.454232697,,,2.680808048,4.338815709,3.99154181,,,3.121465776,5.014160291,0.097435897,19,195,0.055812523,0.139059272,1,,,,,,,,,,,,,0.091954023,0.049018107,0.134889939,,,,,,,0.188,,,0.149,0.231,0.39,,,0.31,0.472,9.2,0.053403806,0.054,,,0.278,,,0.227,0.33,0.694071146,1756,2530,,,0.175398725,,,0.140956982,0.214351419,0.5,1,2,0.104528646,0.771195053,199,5,2513,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.10604333,186,1754,0.088170989,0.12391567,0.000795862,2,2513,,,1256.5,0,0,2475,,,-2475,0.00040404,1,2475,,,2475,4987,,,,,,,,,5042,0.42,,,,,,,,,0.42,0.28,,,,,,,,,0.27,0.875571356,1724,1969,0.840089019,0.911053693,0.700374532,374,534,0.580617021,0.820132043,0.021455224,23,1072,,,0.152,77,,0.092425532,0.211574468,,,,,,,,,,,,,0.150588235,0.046319166,0.254857305,5.09528893,109778,21545,3.443693273,6.746884587,0.073752712,34,461,0.009328675,0.138176748,23.8758456,6,2513,,,150.3045645,19,12641,90.4931664,234.719196,,,,,,,,,,,,,159.744409,96.1765694,249.4606825,,,,4.8,,,,,0,,,,,0.120155039,155,1290,0.074942816,0.165367262,0.106864275,0.058306717,0.155421832,0.003100775,0,0.021571558,0.010852713,0,0.027477667,0.754060325,975,1293,0.699956035,0.808164615,,,,,,,,,,,,,0.74092827,0.673496428,0.808360112,0.148,,1293,0.095696467,0.200303533,78.98656658,,,75.98096498,81.99216818,,,,,,,,,,,,,79.20394881,76.16808049,82.23981712,,,,372.9611631,37,6111,245.7837566,542.6389112,,,,,,,,,,,,,363.9322754,233.1782759,541.502378,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.106,,,0.09,0.123,0.146,,,0.125,0.17,0.092,,,0.077,0.108,0,0,2154,,,0.054,140,,,,0.053403806,150.0112904,2809,,,,,,,,,,,,,,,,,,,,,,,,,,0.3,,,0.284,0.317,0.106888361,135,1263,0.086633042,0.12714368,0.103515625,53,512,0.068962434,0.138068817,0.004848485,12,2475,,,206.25,,,,,,,,,,,3.293762213,,,,,,,,,3.231345209,3.613786178,,,,,,,,,3.559519985,,,,,,1267.853,,,,,0.704749901,40817,57917,0.491461666,0.918038135,57614,,,48991.19149,66236.80851,,,,,,,,,,,,,66146,56833.31915,75458.68085,,,,,,0.264705882,108,408,,,,,,,,0.249505329,,57614,,,8.130081301,1,123,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.704600484,1455,2065,,,0.503,,,,,3.802217199,,,,,0.77954736,930,1193,0.743639942,0.815454777,0.066308244,74,1116,0.02386971,0.108746777,0.789606035,942,1193,0.738357767,0.840854303,2475,,,,,0.206060606,510,2475,,,0.297373737,736,2475,,,0.009292929,23,2475,,,0.010909091,27,2475,,,0.009292929,23,2475,,,0,0,2475,,,0.031919192,79,2475,,,0.93010101,2302,2475,,,0.00996264,24,2409,0,0.028828781,0.503030303,1245,2475,,,1,2530,2530,, -38,053,38053,ND,McKenzie County,2024,1,12535.72347,192,42584,10406.15674,14665.2902,0,74049.42168,56084.30884,95939.61474,,,,,2,,,,2,,,,2,8231.907338,6173.612392,10290.20228,,,,,2,,0.152,,,0.131,0.178,3.17607673,,,2.48953452,3.923947091,3.929611571,,,3.127122987,4.800998203,0.068396226,116,1696,0.05638258,0.080409873,0,0.07,0.034638428,0.105361572,,,,,,,,,,0.070333634,0.055283673,0.085383595,,,,,,,0.175,,,0.143,0.211,0.368,,,0.305,0.434,7.7,0.157256967,0.072,,,0.272,,,0.228,0.319,0.38866975,5715,14704,,,0.227791454,,,0.186818288,0.271006626,0.324324324,12,37,0.238012991,0.411014485,332.9,46,13819,,,22.5917791,72,3187,17.67667577,28.45060685,36.83241252,22.49819445,56.88467385,,,,,,,58.44155844,34.63617137,92.36285801,14.6641438,9.963574257,20.8145816,,,,,,,0.130682744,1604,12274,0.111618914,0.149746574,0.000144728,2,13819,,,6909.5,0.000287604,4,13908,,,3477,0.000287604,4,13908,,,3477,489,,,,,,,,,432,0.43,,,,,0.27,,,,0.44,0.29,,,,,0.41,,,,0.28,0.9271777,7983,8610,0.901810999,0.952544401,0.677309783,2991,4416,0.56950825,0.785111315,0.018948056,174,9183,,,0.091,400,,0.05287234,0.12912766,0.480874317,0.242746171,0.719002463,,,,0.263157895,0,0.655346986,0.811023622,0.334846224,1,0.048934754,0.004999255,0.092870252,3.994354879,162035,40566,2.9769258,5.011783957,0.102072654,458,4487,0.039602994,0.164542315,11.57826181,16,13819,,,114.9898497,81,70441,91.31853891,142.9218838,418.9008043,271.0905135,618.3802228,,,,,,,,,,91.18993561,67.46281637,120.5579309,,,,3.6,,,,,0,,,,,0.151785714,680,4480,0.112173376,0.191398053,0.077010193,0.042313984,0.111706401,0.078125,0.045300057,0.110949943,0.008705357,0,0.023932429,0.811641791,5438,6700,0.764781477,0.858502106,0.870192308,0.769608986,0.970775629,,,,,,,,,,0.828516685,0.7793891,0.87764427,0.256,,6700,0.196497064,0.315502936,75.98221418,,,73.84439492,78.12003344,,,,,,,,,,,,,79.75663802,77.37904271,82.13423334,,,,484.3820492,192,42584,414.5013984,554.2627,2671.764557,2070.580833,3393.046543,,,,,,,,,,335.1716573,270.3958158,399.9474988,,,,96.51038757,19,19687,58.1055578,150.7129251,,,,,,,,,,,,,81.65689258,40.76282657,146.1067368,,,,15.14269074,26,1717,9.891708338,22.18755043,,,,,,,,,,,,,,,,,,,,,,0.101,,,0.088,0.117,0.143,,,0.124,0.164,0.099,,,0.085,0.115,103.8,11,10593,,,0.072,990,,,,0.157256967,1000.154311,6360,,,31.75683339,14,44085,17.36175633,53.28257031,302.9468466,151.2299743,542.0555911,,,,,,,,,,,,,,,,0.316,,,0.301,0.331,0.130173063,1038,7974,0.107534765,0.15281136,0.134611099,604,4487,0.100057907,0.16916429,0.000575209,8,13908,,,1738.5,0.738527397,107.825,146,,,,,,,,2.845423495,,,,,,,,2.737890758,3.134498649,2.626489463,,,,,,,,2.570652652,,0.183378285,,,,,6535.325,,,,,0.568826838,44695,78574,0.4963239,0.641329777,84206,,,74152.21277,94259.78723,90357,52559.38298,128154.617,108333,30190.3617,186475.6383,,,,75196,41691.31915,108700.6809,84944,70195.74468,99692.25532,,,,,,0.230470436,534,2317,,,54.7815349,,,,,0.303161295,,84206,,,0.700280112,1,1428,,,,,,,,,,,,,,,,,,,,,,,,,,28.06971942,20,70441,16.89980473,43.83434394,28.39255547,,,,,,,,,,,,,28.41556963,15.90397862,46.8671608,,,,21.2944166,15,70441,11.91832332,35.12190184,,,,,,,,,,,,,26.05426732,14.24411039,43.71463342,,,,34.41515101,33,95888,23.68980641,48.33166743,114.2074006,54.7668878,210.031476,,,,,,,,,,27.28029135,16.66351068,42.13219743,,,,,,,,,,,0.578952992,5419,9360,,,0.336,,,,,13.29275335,,,,,0.564672897,3021,5350,0.527847441,0.601498353,0.08159583,407,4988,0.050139027,0.113052633,0.888785047,4755,5350,0.857600824,0.91996927,13908,,,,,0.322763877,4489,13908,,,0.102099511,1420,13908,,,0.017471959,243,13908,,,0.090235836,1255,13908,,,0.011719874,163,13908,,,0.00136612,19,13908,,,0.119211964,1658,13908,,,0.743313201,10338,13908,,,0.011514333,145,12593,0.002784854,0.020243813,0.469082542,6524,13908,,,0.545225789,8017,14704,, -38,055,38055,ND,McLean County,2024,1,7637.848015,159,25849,5493.370374,9782.325655,0,,,,2,,,,2,,,,2,,,,2,6834.457134,4626.689093,9042.225176,,,,,2,,0.132,,,0.11,0.158,3.139319974,,,2.458780405,3.926854142,3.675798949,,,2.926084799,4.519891442,0.055330634,41,741,0.038869123,0.071792146,0,,,,,,,,,,,,,0.048576214,0.031331034,0.065821395,,,,,,,0.174,,,0.137,0.213,0.411,,,0.349,0.474,8.7,0.132020858,0.039,,,0.251,,,0.205,0.297,0.388291884,3794,9771,,,0.189460724,,,0.154166248,0.226498802,0.5,5,10,0.338551574,0.634481032,204.2,20,9796,,,11.82732111,20,1691,7.224435,18.2663382,,,,,,,,,,,,,7.127583749,3.417953454,13.10788029,,,,,,,0.1006498,728,7233,0.086351927,0.114947672,0.000306247,3,9796,,,3265.333333,0.000305375,3,9824,,,3274.666667,0.000305375,3,9824,,,3274.666667,1261,,,,,,,,,1218,0.48,,,,,0.2,,,,0.49,0.41,,,,,0.42,,,,0.41,0.932186663,6612,7093,0.914994745,0.94937858,0.735700197,1492,2028,0.649013997,0.822386398,0.030529595,147,4815,,,0.112,236,,0.067914894,0.156085106,0.102857143,0,0.212271811,,,,,,,0.224806202,0,0.56330443,0.057043073,0.031973785,0.082112362,3.654112645,139229,38102,3.091249217,4.216976073,0.168460459,360,2137,0.12311066,0.213810257,18.37484688,18,9796,,,89.79284998,43,47888,64.98353076,120.9503797,,,,,,,,,,,,,80.48289738,55.73674609,112.4667821,,,,5.1,,,,,0,,,,,0.075514874,330,4370,0.055943765,0.095085983,0.064878496,0.046760602,0.08299639,0.01006865,0,0.021008213,0.001830664,0,0.007039164,0.784726943,3463,4413,0.762206196,0.80724769,0.865853659,0.723850001,1,,,,,,,,,,0.687532068,0.653321044,0.721743091,0.332,,4413,0.284504538,0.379495462,77.62683502,,,75.84857561,79.40509443,,,,,,,,,,,,,78.34426702,76.46903696,80.21949708,,,,382.3735514,159,25849,315.5704296,449.1766731,,,,,,,,,,,,,351.2209852,284.7529982,417.6889722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.094,,,0.08,0.11,0.133,,,0.113,0.154,0.086,,,0.073,0.1,,,,,,0.039,380,,,,0.132020858,1183.17093,8962,,,,,,,,,,,,,,,,,,,,,,,,,,0.278,,,0.262,0.293,0.100552051,510,5072,0.083871199,0.117232902,0.103402563,234,2263,0.074806818,0.131998308,0.001628665,16,9824,,,614,,,,,,,,,,,3.053088447,,,,,,,,,3.227826042,3.045851545,,,,,,,,,3.243597581,0.431885612,,,,,1232.861071,,,,,0.602725184,44853,74417,0.515997174,0.689453194,79935,,,71753.04255,88116.95745,61875,48857.97872,74892.02128,160179,12135.25532,308222.7447,,,,61000,11031.31915,110968.6809,81580,75213.87234,87946.12766,,,,,,0.206267806,362,1755,,,,,,,,0.19620942,,79935,,,5.235602094,3,573,,,,,,,,,,,,,,,,,,,,,,,,,,17.26851988,10,47888,7.455321199,34.0258683,20.88205814,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,23.7526165,16,67361,13.57667264,38.57276109,,,,,,,,,,,,,20.12814922,10.40050842,35.15982597,,,,,,,,,,,0.751153324,5536,7370,,,0.484,,,,,5.831938754,,,,,0.829262452,3463,4176,0.780317175,0.878207729,0.063019052,258,4094,0.0410778,0.084960305,0.832136015,3475,4176,0.804656572,0.859615459,9824,,,,,0.218139251,2143,9824,,,0.260382736,2558,9824,,,0.00468241,46,9824,,,0.076954397,756,9824,,,0.004784202,47,9824,,,0.000814332,8,9824,,,0.029315961,288,9824,,,0.877239414,8618,9824,,,0.004860661,45,9258,0,0.011797235,0.485647394,4771,9824,,,1,9771,9771,, -38,057,38057,ND,Mercer County,2024,1,5750.894537,110,22469,3958.953585,7542.835489,0,,,,2,,,,2,,,,2,,,,2,5613.700951,3761.676962,7465.724939,,,,,2,,0.139,,,0.114,0.169,3.239066332,,,2.548459554,4.020372547,3.917241577,,,3.123153116,4.824219497,0.064465409,41,636,0.04537915,0.083551668,0,,,,,,,,,,,,,0.062166963,0.042221484,0.082112441,,,,,,,0.175,,,0.136,0.221,0.4,,,0.335,0.467,9.4,0.042195145,0.048,,,0.248,,,0.203,0.299,0.78251497,6534,8350,,,0.222001354,,,0.183720612,0.263478887,0.8,4,5,0.671311679,0.877725163,120.1,10,8323,,,10.46025105,15,1434,5.854523105,17.25259336,,,,,,,,,,,,,,,,,,,,,,0.07944866,513,6457,0.066342277,0.092555043,0.000841043,7,8323,,,1189,0.000840034,7,8333,,,1190.428571,0.000840034,7,8333,,,1190.428571,2446,,,,,,,,,2296,0.5,,,,,,,,,0.5,0.2,,,,,,,,,0.2,0.895315407,5294,5913,0.866659195,0.923971618,0.753694581,1377,1827,0.627550218,0.879838944,0.032728273,119,3636,,,0.081,152,,0.047638298,0.114361702,0.339285714,0.047486217,0.631085211,,,,,,,,,,0.109057301,0.035277985,0.182836618,4.345257729,144910,33349,3.643055455,5.047460002,0.170257488,324,1903,0.057966787,0.282548189,24.02979695,20,8323,,,84.50840255,35,41416,58.86319877,117.5307306,,,,,,,,,,,,,83.76305526,57.29386779,118.2484414,,,,6.1,,,,,0,,,,,0.088676671,325,3665,0.053263584,0.124089759,0.060137931,0.025016316,0.095259546,0.022919509,0.006145705,0.039693312,0.005457026,0,0.012117683,0.866879659,3256,3756,0.82945011,0.904309209,,,,,,,,,,,,,0.797790586,0.749526362,0.84605481,0.216,,3756,0.155129002,0.276870998,81.29482331,,,79.17877732,83.4108693,,,,,,,,,,,,,81.18153136,79.03251249,83.33055022,,,,326.0334426,110,22469,259.1420393,392.9248458,,,,,,,,,,,,,322.3150773,253.6397193,390.9904353,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.097,,,0.081,0.115,0.137,,,0.116,0.161,0.089,,,0.075,0.106,,,,,,0.048,400,,,,0.042195145,355.4518997,8424,,,,,,,,,,,,,,,,,,,,,,,,,,0.285,,,0.269,0.3,0.083131202,377,4535,0.06764184,0.098620564,0.072175212,145,2009,0.049536914,0.094813509,0.001920077,16,8333,,,520.8125,,,,,,,,,,,2.885861616,,,,,,,,,2.855785656,3.073228477,,,,,,,,,3.06527219,0.031689057,,,,,3238.2375,,,,,0.501551957,44598,88920,0.36695834,0.636145574,90092,,,77366.89362,102817.1064,99821,1859.12766,197782.8723,,,,,,,,,,81767,67725.29787,95808.70213,,,,,,0.144747725,175,1209,,,,,,,,0.197009723,,90092,,,5.859375,3,512,,,,,,,,,,,,,,,,,,,,,,,,,,35.65962933,13,41416,18.42585083,62.29019608,31.38883523,,,,,,,,,,,,,35.05866868,17.50116109,62.72964247,,,,,,,,,,,,,,,,,,,,,,,,,,,18.65576718,11,58963,9.312891758,33.38032073,,,,,,,,,,,,,,,,,,,,,,,,,,0.728193146,4675,6420,,,0.568,,,,,8.826766486,,,,,0.837952489,2963,3536,0.794251092,0.881653885,0.064979874,226,3478,0.034059628,0.095900119,0.862273756,3049,3536,0.821709926,0.902837586,8333,,,,,0.230289212,1919,8333,,,0.227649106,1897,8333,,,0.005880235,49,8333,,,0.028441138,237,8333,,,0.008040322,67,8333,,,0.001320053,11,8333,,,0.026161046,218,8333,,,0.917916717,7649,8333,,,0.016613824,131,7885,0.002822935,0.030404713,0.489379575,4078,8333,,,1,8350,8350,, -38,059,38059,ND,Morton County,2024,1,7726.673965,427,89443,6617.368902,8835.979029,0,22688.39918,14820.81561,33243.76159,,,,,2,,,,2,,,,2,7336.008109,6162.325257,8509.690961,,,,,2,,0.13,,,0.107,0.156,3.036159954,,,2.377418941,3.814129295,4.119342815,,,3.352757803,5.019576444,0.065405579,204,3119,0.056728623,0.074082534,0,0.098901099,0.055529327,0.142272871,,,,,,,0.071823204,0.034207905,0.109438504,0.061483538,0.052106406,0.07086067,,,,,,,0.154,,,0.119,0.194,0.399,,,0.34,0.459,9.6,0.052040287,0.035,,,0.243,,,0.2,0.293,0.766153014,25506,33291,,,0.222627664,,,0.185659337,0.263161368,0.272727273,6,22,0.159704728,0.392079091,330.2,111,33611,,,21.4884696,123,5724,17.6908715,25.28606771,38.80597015,20.66254475,66.3593908,,,,,,,71.91780822,44.5182568,109.9340094,14.57119067,11.35895797,18.40982282,,,,71.42857143,36.90818517,124.7713396,0.083160688,2288,27513,0.071245794,0.095075581,0.000386778,13,33611,,,2585.461539,0.000266983,9,33710,,,3745.555556,0.000385642,13,33710,,,2593.076923,3319,,,,,18643,,,,3073,0.55,,,,,0.3,,,,0.55,0.53,,,,,0.44,,,,0.53,0.935512212,21296,22764,0.916709341,0.954315084,0.72177976,6797,9417,0.638739941,0.804819579,0.024651972,425,17240,,,0.119,919,,0.077297872,0.160702128,0.002331002,0,0.088904019,,,,,,,0.335952849,0.064680405,0.607225292,0.072886297,0.026106129,0.119666466,3.594204354,143132,39823,3.116020561,4.072388147,0.112703331,873,7746,0.066992264,0.158414398,12.79343072,43,33611,,,70.72091129,112,158369,57.62321523,83.81860735,195.2431665,97.46468525,349.3439566,,,,,,,,,,66.75330393,53.9434645,81.68913819,,,,5.5,,,,,0,,,,,0.092222222,1245,13500,0.065138776,0.119305669,0.085256888,0.057959565,0.11255421,0.003333333,0,0.00726814,0.004444444,0,0.009556243,0.828935796,15080,18192,0.792318511,0.865553081,,,,,,,,,,,,,0.817418295,0.767551772,0.867284817,0.172,,18192,0.139391481,0.204608519,77.21652992,,,76.26799876,78.16506108,,,,,,,,,,,,,77.55390024,76.55876413,78.54903635,,,,377.6002093,427,89443,340.3961443,414.8042743,1268.684515,873.3040439,1781.70475,,,,,,,,,,360.5431975,322.395085,398.6913099,,,,59.61345382,19,31872,35.89119341,93.09379258,,,,,,,,,,,,,53.49636989,29.24696323,89.75781858,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.093,,,0.079,0.111,0.137,,,0.117,0.16,0.084,,,0.07,0.098,50.4,14,27758,,,0.035,1150,,,,0.052040287,1429.598722,27471,,,12.43806878,12,96478,6.426931641,21.72680305,,,,,,,,,,,,,,,,,,,0.297,,,0.28,0.314,0.092388824,1822,19721,0.076899462,0.107878186,0.062700568,508,8102,0.044828227,0.080572908,0.000385642,13,33710,,,2593.076923,0.841495845,303.78,361,,,,,,,,3.098037766,,,,,,,,2.921327916,3.171916333,3.327744906,,,,,,,,2.960705562,3.434240919,0.040418483,,,,,3806.3715,,,,,0.785182738,49907,63561,0.686414197,0.883951279,75133,,,65853.68085,84412.31915,58277,35339.6383,81214.3617,,,,,,,47072,25286.80851,68857.19149,83488,76076.93617,90899.06383,,,,,,0.194286832,993,5111,,,37.65130674,,,,,0.282632132,,75133,,,3.421309873,7,2046,,,,,,,,,,,,,,,,,,,,,,,,,,18.62153834,29,158369,12.37387699,26.91330763,18.31166453,,,,,,,,,,,,,18.74021972,12.12768211,27.66426116,,,,11.36586074,18,158369,6.736129407,17.96296009,,,,,,,,,,,,,11.3622645,6.494515899,18.4516057,,,,13.21256743,29,219488,8.848663771,18.97545079,,,,,,,,,,,,,13.25901486,8.661228711,19.42752882,,,,,,,,,,,0.696521375,16619,23860,,,0.654,,,,,81.41081611,,,,,0.733930333,9671,13177,0.700606872,0.767253795,0.085317156,1111,13022,0.057726146,0.112908165,0.890111558,11729,13177,0.858362397,0.921860719,33710,,,,,0.235093444,7925,33710,,,0.173123702,5836,33710,,,0.016226639,547,33710,,,0.0447345,1508,33710,,,0.005309997,179,33710,,,0.00136458,46,33710,,,0.046188075,1557,33710,,,0.871195491,29368,33710,,,0.001664959,52,31232,0,0.005152652,0.49299911,16619,33710,,,0.288906912,9618,33291,, -38,061,38061,ND,Mountrail County,2024,1,17133.81872,193,29384,14117.96904,20149.66841,0,38879.99826,30356.09894,47403.89757,,,,,2,,,,2,,,,2,7203.973405,4927.512476,10169.86098,,,,,2,,0.171,,,0.145,0.198,3.545377384,,,2.808306294,4.343886562,4.324482201,,,3.477164922,5.218287511,0.059504132,72,1210,0.046174585,0.072833679,0,0.06203474,0.038483465,0.085586014,,,,,,,,,,0.053211009,0.034366485,0.072055533,,,,,,,0.208,,,0.17,0.246,0.451,,,0.387,0.515,9.1,0.025040381,0.073,,,0.29,,,0.244,0.339,0.745233969,7310,9809,,,0.223836751,,,0.184664475,0.265509113,0.461538462,12,26,0.365081961,0.550230255,710.1,68,9576,,,40.15296367,84,2092,32.02757636,49.71210123,57.5,42.09722676,76.69694214,,,,,,,,,,22.03567681,13.64043125,33.68387275,,,,,,,0.164794486,1291,7834,0.140964698,0.188624273,0.000522139,5,9576,,,1915.2,0.000645856,6,9290,,,1548.333333,0.000645856,6,9290,,,1548.333333,2903,,,,,6527,,,,1946,0.37,,,,,0.16,,,,0.43,0.41,,,,,0.31,,,,0.42,0.888943089,5467,6150,0.861987161,0.915899018,0.582425836,1551,2663,0.505604204,0.659247467,0.015382225,99,6436,,,0.155,409,,0.093042553,0.216957447,0.235346359,0.133796074,0.336896643,,,,,,,0.056756757,0,0.145965047,0.073402418,0.006472485,0.140332351,4.215449661,143574,34059,3.859712251,4.571187071,0.276089345,754,2731,0.183423225,0.368755464,13.57560568,13,9576,,,154.5806755,79,51106,122.3829765,192.6536437,195.2035694,129.7113543,282.1235077,,,,,,,227.8423331,109.2592549,419.0101627,119.868145,83.95417513,165.9480388,,,,4.6,,,,,0,,,,,0.089635854,320,3570,0.060592804,0.118678905,0.038014184,0.016274449,0.05975392,0.051820728,0.027938631,0.075702826,0.008123249,0,0.019532962,0.782899286,3397,4339,0.740030719,0.825767852,0.818548387,0.59823314,1,,,,,,,,,,0.765467253,0.72034334,0.810591167,0.303,,4339,0.238505307,0.367494693,69.8048196,,,67.81344735,71.79619184,57.13094909,53.51844143,60.74345675,,,,,,,,,,77.01873413,74.85067534,79.18679292,,,,637.5098264,193,29384,545.6204891,729.3991636,1454.824593,1161.851319,1747.797867,,,,,,,,,,332.5759705,257.7418091,422.3597264,,,,139.2871774,17,12205,81.13991372,223.012264,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.111,,,0.095,0.128,0.15,,,0.13,0.171,0.108,,,0.093,0.125,,,,,,0.073,710,,,,0.025040381,192.1348399,7673,,,,,,,,,,,,,,,,,,,,,,,,,,0.315,,,0.302,0.328,0.1643324,880,5355,0.138119634,0.190545166,0.16782676,434,2586,0.123741653,0.211911866,0.001937567,18,9290,,,516.1111111,0.744715447,91.6,123,,,,,,,,2.845697379,,,,,,,,,3.225204135,2.340004541,,,,,,,,,2.757123956,0.370750934,,,,,3033.359233,,,,,0.723646225,49632,68586,0.637048547,0.810243904,74094,,,63722.08511,84465.91489,53289,29838.10638,76739.89362,107750,8674.085106,206825.9149,34479,23002.57447,45955.42553,101047,73016.02128,129077.9787,97273,78685.76596,115860.234,,,,,,0.335891648,744,2215,,,57.13063064,,,,,0.246929576,,74094,,,6.833712984,6,878,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,58.59456745,42,71679,42.22981031,79.20283316,76.58531604,42.86422002,126.3158321,,,,,,,,,,48.80996653,30.21413858,74.6112187,,,,,,,,,,,0.568600683,4165,7325,,,0.365,,,,,8.399221025,,,,,0.606103419,2145,3539,0.568769794,0.643437045,0.055351682,181,3270,0.029447469,0.081255895,0.818027691,2895,3539,0.784698247,0.851357136,9290,,,,,0.28891281,2684,9290,,,0.135306782,1257,9290,,,0.015285253,142,9290,,,0.306243272,2845,9290,,,0.00861141,80,9290,,,0.000861141,8,9290,,,0.093756728,871,9290,,,0.569967707,5295,9290,,,0.018132366,160,8824,0.006278184,0.029986548,0.475457481,4417,9290,,,1,9809,9809,, -38,063,38063,ND,Nelson County,2024,1,4168.933222,44,7690,2219.781362,7129.002776,1,,,,2,,,,2,,,,2,,,,2,4553.419562,2273.050639,8147.32538,1,,,,2,,0.13,,,0.108,0.155,2.964822005,,,2.298187291,3.772060662,3.530086777,,,2.739486601,4.399490967,,,,,,0,,,,,,,,,,,,,,,,,,,,,,0.158,,,0.124,0.196,0.422,,,0.348,0.498,6.7,0.26458984,0.067,,,0.262,,,0.216,0.312,0.587728027,1772,3015,,,0.188181059,,,0.152665928,0.228134046,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.105824811,238,2249,0.08914396,0.122505662,,0,3054,,,,0,0,2995,,,-2995,,0,2995,,,,1885,,,,,,,,,1897,0.54,,,,,,,,,0.54,0.51,,,,,,,,,0.51,0.940190304,2075,2207,0.911568792,0.968811816,0.675,378,560,0.560802332,0.789197668,0.029431896,43,1461,,,0.117,70,,0.072914894,0.161085106,,,,,,,,,,0.096153846,0,0.470736088,0.151456311,0.094370088,0.208542533,4.941893279,115581,23388,4.072908498,5.810878059,0.091639871,57,622,0.035028129,0.148251614,22.92075966,7,3054,,,,,,,,,,,,,,,,,,,,,,,,,,5.1,,,,,0,,,,,0.062937063,90,1430,0.038406997,0.087467129,0.055197133,0.026938674,0.083455592,0.016783217,0,0.034252098,0.002797203,0,0.014578569,0.691111111,933,1350,0.638158208,0.744064014,,,,,,,,,,,,,0.714409722,0.643524348,0.785295097,0.344,,1350,0.271182549,0.416817451,79.37538012,,,77.28430533,81.46645491,,,,,,,,,,,,,79.19121251,76.87870897,81.50371606,,,,286.5507782,44,7690,200.6966422,396.7070621,,,,,,,,,,,,,297.5134911,204.7945978,417.8195559,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.092,,,0.078,0.108,0.133,,,0.113,0.155,0.085,,,0.071,0.099,230.3,6,2605,,,0.067,200,,,,0.26458984,827.1078408,3126,,,,,,,,,,,,,,,,,,,,,,,,,,0.301,,,0.284,0.317,0.108389467,177,1633,0.088134148,0.128644786,0.101694915,66,649,0.071907681,0.131482149,0.001001669,3,2995,,,998.3333333,,,,,,,,,,,3.118167549,,,,,,,,,3.192857732,3.24718268,,,,,,,,,3.309384717,,,,,,5164.215,,,,,0.734927473,41799,56875,0.645446692,0.824408253,59947,,,51541.04255,68352.95745,,,,,,,,,,28482,16607.61702,40356.38298,64943,56133.12766,73752.87234,,,,,,0.244680851,115,470,,,,,,,,0.250337798,,59947,,,27.21088435,4,147,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.788026608,1777,2255,,,0.524,,,,,1.7725622,,,,,0.750963763,974,1297,0.727274891,0.774652634,0.046888321,55,1173,0.01438901,0.079387631,0.781033153,1013,1297,0.739290813,0.822775494,2995,,,,,0.202003339,605,2995,,,0.274123539,821,2995,,,0.008013356,24,2995,,,0.027378965,82,2995,,,0.004340568,13,2995,,,0.00033389,1,2995,,,0.041068447,123,2995,,,0.90918197,2723,2995,,,0.003827418,11,2874,0,0.021046004,0.482136895,1444,2995,,,1,3015,3015,, -38,065,38065,ND,Oliver County,2024,1,8656.461181,24,5260,4151.10961,15919.54032,1,,,,2,,,,2,,,,2,,,,2,8237.183019,3556.23097,16230.53432,1,,,,2,,0.133,,,0.112,0.157,3.161641254,,,2.463332262,3.953645174,3.860879713,,,3.004151409,4.826216077,,,,,,0,,,,,,,,,,,,,,,,,,,,,,0.165,,,0.132,0.204,0.365,,,0.291,0.449,7.8,0.196266564,0.05,,,0.248,,,0.201,0.298,0.454981353,854,1877,,,0.197456013,,,0.158740887,0.241963278,0.75,3,4,0.567659215,0.8560462,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.083687943,118,1410,0.069390071,0.097985816,0,0,1873,,,-1873,0,0,1856,,,-1856,,0,1856,,,,3863,,,,,,,,,3539,0.6,,,,,,,,,0.6,0.31,,,,,,,,,0.32,0.946303502,1216,1285,0.900977578,0.991629425,0.76635514,246,321,0.63309631,0.899613971,0.032620922,29,889,,,0.147,64,,0.087425532,0.206574468,,,,,,,,,,,,,0.180138568,0.065550269,0.294726867,3.813555841,148538,38950,2.943721359,4.683390323,0.155319149,73,470,0,0.315966468,16.01708489,3,1873,,,,,,,,,,,,,,,,,,,,,,,,,,4.6,,,,,0,,,,,0.10738255,80,745,0.05140144,0.163363661,0.093023256,0.025845475,0.160201037,0.018791946,0,0.052460057,0,0,0.022617724,0.729032258,565,775,0.653699399,0.804365118,,,,,,,,,,,,,0.646625767,0.522206653,0.771044881,0.328,,775,0.236720716,0.419279284,91.15264876,,,76.43642714,105.8688704,,,,,,,,,,,,,91.9854543,76.89717099,107.0737376,,,,339.5127436,24,5260,201.216769,536.5765076,,,,,,,,,,,,,315.050868,180.0787925,511.6228717,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.096,,,0.082,0.111,0.139,,,0.119,0.162,0.085,,,0.072,0.1,0,0,1554,,,0.05,90,,,,0.196266564,362.3080763,1846,,,,,,,,,,,,,,,,,,,,,,,,,,0.301,,,0.284,0.316,0.086099585,83,964,0.070610223,0.101588947,0.079059829,37,468,0.054038553,0.104081106,0,0,1856,,,-1856,,,,,,,,,,,2.752652592,,,,,,,,,2.777693709,3.101698805,,,,,,,,,3.076389202,,,,,,969.7754,,,,,0.611195664,45781,74904,0.495409286,0.726982042,79521,,,67757.42553,91284.57447,,,,,,,,,,,,,75625,54984.82979,96265.17021,,,,,,0.23828125,61,256,,,,,,,,0.197092592,,79521,,,7.194244604,1,139,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.727645051,1066,1465,,,0.587,,,,,0.310720813,,,,,0.873925501,610,698,0.829821796,0.918029207,0.092476489,59,638,0.020927572,0.164025406,0.810888252,566,698,0.738279241,0.883497263,1856,,,,,0.239224138,444,1856,,,0.255926724,475,1856,,,0.004849138,9,1856,,,0.030172414,56,1856,,,0.004310345,8,1856,,,0,0,1856,,,0.016702586,31,1856,,,0.936422414,1738,1856,,,0.003521127,6,1704,0,0.031322305,0.470905172,874,1856,,,1,1877,1877,, -38,067,38067,ND,Pembina County,2024,1,9052.277223,102,18055,6078.459056,12026.09539,0,,,,2,,,,2,,,,2,,,,2,8334.971464,5701.114311,11766.49278,,,,,2,,0.137,,,0.113,0.163,3.078185,,,2.358874933,3.84734705,3.74210021,,,2.879448149,4.627211924,0.064327485,33,513,0.043097113,0.085557858,0,,,,,,,,,,,,,0.052516411,0.032064621,0.072968202,,,,,,,0.165,,,0.128,0.202,0.383,,,0.31,0.452,9,0.08286566,0.05,,,0.25,,,0.203,0.3,0.410578609,2810,6844,,,0.190221732,,,0.152215145,0.227751898,0.4,2,5,0.149190828,0.619170557,192.1,13,6767,,,8.613938919,11,1277,4.300047273,15.41271614,,,,,,,,,,,,,,,,,,,,,,0.111373941,565,5073,0.094693089,0.128054792,0.000295552,2,6767,,,3383.5,0.000591454,4,6763,,,1690.75,0.000295727,2,6763,,,3381.5,4320,,,,,,,,,4360,0.47,,,,,,,,,0.48,0.29,,,,,0.4,,,,0.29,0.921307506,4566,4956,0.903181841,0.939433172,0.617508418,917,1485,0.532725625,0.70229121,0.033731984,110,3261,,,0.104,147,,0.063489362,0.144510638,,,,,,,,,,0.342465753,0.143852354,0.541079153,0.046357616,0.015727761,0.076987471,4.851709178,129725,26738,4.027282368,5.676135988,0.114720111,166,1447,0.055435658,0.174004563,26.59967489,18,6767,,,114.2187729,39,34145,81.2207131,156.1408226,,,,,,,,,,,,,109.9718601,76.15871005,153.6746518,,,,5.8,,,,,0,,,,,0.067823344,215,3170,0.048603463,0.087043224,0.056962025,0.033510395,0.080413655,0.004416404,0,0.013442509,0.009148265,0.000916496,0.017380035,0.78321237,2482,3169,0.7421111,0.82431364,,,,,,,,,,,,,0.780150754,0.737111647,0.823189861,0.196,,3169,0.156735047,0.235264953,78.15722271,,,75.69431309,80.62013232,,,,,,,,,,,,,78.45510162,75.9707699,80.93943335,,,,377.9476853,102,18055,295.5567288,460.3386418,,,,,,,,,,,,,370.0969914,289.0488208,466.8269959,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.096,,,0.08,0.113,0.136,,,0.115,0.157,0.085,,,0.071,0.1,104.5,6,5742,,,0.05,350,,,,0.08286566,614.2831361,7413,,,,,,,,,,,,,,,,,,,,,,,,,,0.302,,,0.287,0.318,0.114457831,418,3652,0.095394002,0.133521661,0.107023411,160,1495,0.078427667,0.135619156,0.001035044,7,6763,,,966.1428571,,,,,,,,,,,3.135629247,,,,,,,,,3.277657589,3.648416279,,,,,,,,,3.773137939,0.070082697,,,,,3485.8645,,,,,0.711116356,42182,59318,0.618243769,0.803988943,69141,,,59495.89362,78786.10638,27330,19884.38298,34775.61702,,,,,,,,,,66632,57540.93617,75723.06383,,,,,,0.193074502,184,953,,,,,,,,0.22691312,,69141,,,10.55408971,4,379,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.627306968,3331,5310,,,0.601,,,,,5.310340733,,,,,0.74366768,2202,2961,0.711910749,0.775424611,0.090973957,255,2803,0.059903726,0.122044187,0.805808848,2386,2961,0.771717544,0.839900153,6763,,,,,0.213366849,1443,6763,,,0.257134408,1739,6763,,,0.007688896,52,6763,,,0.026319681,178,6763,,,0.005175218,35,6763,,,0.000295727,2,6763,,,0.040366701,273,6763,,,0.897826408,6072,6763,,,0.003235249,21,6491,0,0.013198355,0.467691853,3163,6763,,,1,6844,6844,, -38,069,38069,ND,Pierce County,2024,1,6853.534671,43,10413,4061.839,10831.53952,1,,,,2,,,,2,,,,2,,,,2,6770.979389,3789.665765,11167.7008,1,,,,2,,0.132,,,0.109,0.159,3.041849026,,,2.358554349,3.872145286,3.928293993,,,3.035352083,4.967644524,0.087301587,22,252,0.052449362,0.122153813,1,,,,,,,,,,,,,0.083333333,0.047457356,0.119209311,,,,,,,0.162,,,0.127,0.202,0.367,,,0.292,0.446,9.2,0.066271882,0.049,,,0.246,,,0.198,0.298,0.70075188,2796,3990,,,0.194021741,,,0.155864047,0.234692616,0.5,1,2,0.104528646,0.771195053,278.3,11,3953,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.064333687,182,2829,0.052418793,0.07624858,0.000252972,1,3953,,,3953,0.001268392,5,3942,,,788.4,0.000507357,2,3942,,,1971,6511,,,,,,,,,6326,0.57,,,,,,,,,0.58,0.25,,,,,,,,,0.25,0.931698774,2660,2855,0.912511728,0.95088582,0.721274175,634,879,0.597131176,0.845417175,0.025810324,43,1666,,,0.129,116,,0.078957447,0.179042553,,,,,,,,,,0.266666667,0,0.890526089,0.104381443,0.02602176,0.182741127,5.419399713,128559,23722,2.838798479,8.000000947,0.215909091,190,880,0.087534845,0.344283337,12.6486213,5,3953,,,94.82930725,19,20036,57.09343763,148.08771,,,,,,,,,,,,,98.98812143,58.6666343,156.4439082,,,,5,,,,,0,,,,,0.176151762,325,1845,0.110129406,0.242174117,0.178571429,0.109271751,0.247871106,0.002168022,0,0.014231647,0,0,0.009132902,0.831785909,1523,1831,0.760150387,0.903421432,,,,,,,,,,,,,0.819219219,0.761502732,0.876935707,0.179,,1831,0.106848457,0.251151543,79.11186414,,,76.31200995,81.91171833,,,,,,,,,,,,,79.13009647,76.23100548,82.02918746,,,,301.4691195,43,10413,211.1452651,417.3603348,,,,,,,,,,,,,299.4014712,203.4287737,424.9764894,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.093,,,0.079,0.11,0.137,,,0.116,0.158,0.086,,,0.072,0.102,,,,,,0.049,200,,,,0.066271882,288.7465892,4357,,,,,,,,,,,,,,,,,,,,,,,,,,0.32,,,0.303,0.337,0.0700409,137,1956,0.056934517,0.083147283,0.053669222,49,913,0.034605393,0.072733052,0.002536783,10,3942,,,394.2,,,,,,,,,,,3.310851413,,,,,,,,,3.39576209,3.043947973,,,,,,,,,3.197443738,0.005280933,,,,,3280.605,,,,,0.655432161,44028,67174,0.414668398,0.896195924,59007,,,50188.78723,67825.21277,,,,,,,,,,,,,58393,45367.6383,71418.3617,,,,,,0.137030995,84,613,,,,,,,,0.2869829,,59007,,,10.41666667,2,192,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.677707006,2128,3140,,,0.7,,,,,8.212891798,,,,,0.801657786,1354,1689,0.76532217,0.837993402,0.13140037,213,1621,0.070325875,0.192474865,0.856127886,1446,1689,0.816867343,0.89538843,3942,,,,,0.231861999,914,3942,,,0.239472349,944,3942,,,0.007102993,28,3942,,,0.049974632,197,3942,,,0.013444952,53,3942,,,0,0,3942,,,0.01978691,78,3942,,,0.896752917,3535,3942,,,0.004707113,18,3824,0,0.018588958,0.49543379,1953,3942,,,1,3990,3990,, -38,071,38071,ND,Ramsey County,2024,1,9409.869323,190,31332,7316.119207,11503.61944,0,34445.74139,23404.21008,48892.98036,,,,,2,,,,2,,,,2,6730.932122,4707.866409,8753.997835,,,,,2,,0.149,,,0.126,0.175,3.387118423,,,2.710043733,4.122068974,3.977782467,,,3.232586607,4.769356297,0.073515551,78,1061,0.057811668,0.089219435,0,0.048034935,0.020338272,0.075731597,,,,,,,,,,0.080394922,0.060380275,0.10040957,,,,,,,0.181,,,0.147,0.219,0.371,,,0.312,0.428,8.4,0.052417488,0.091,,,0.265,,,0.22,0.313,0.799741491,9281,11605,,,0.220624499,,,0.183419351,0.2586485,0.285714286,2,7,0.086061846,0.500925625,838.2,97,11572,,,27.64026403,67,2424,21.42082497,35.10215826,89.23884514,61.80049445,124.7023415,,,,,,,,,,12,7.428189134,18.34327471,,,,,,,0.10154827,892,8784,0.086058908,0.117037631,0.00095057,11,11572,,,1052,0.000955276,11,11515,,,1046.818182,0.005036908,58,11515,,,198.5344828,2715,,,,,13668,,,,2282,0.54,,,,,0.42,,,,0.55,0.43,,,,,0.45,,,,0.42,0.927199191,7336,7912,0.904799179,0.949599204,0.69411312,1804,2599,0.570222271,0.81800397,0.022543149,128,5678,,,0.175,470,,0.122574468,0.227425532,0.500678426,0.354785666,0.646571186,,,,,,,0.881632653,0.788176809,0.975088497,0.176995798,0.070588633,0.283402964,5.279279667,122833,23267,4.200246168,6.358313165,0.164996421,461,2794,0.08461259,0.245380252,11.23401314,13,11572,,,88.7280572,51,57479,66.06386652,116.661009,,,,,,,,,,,,,93.15915395,67.68958387,125.0618159,,,,5.2,,,,,0,,,,,0.103975535,510,4905,0.060565192,0.147385879,0.091735537,0.05148873,0.131982344,0.01529052,0,0.032876485,0.003873598,0,0.009780469,0.806079131,4747,5889,0.750915564,0.861242698,,,,,,,,,,,,,0.817102578,0.757611151,0.876594006,0.132,,5889,0.097508492,0.166491508,76.2394925,,,74.54923785,77.92974715,,,,,,,,,,,,,78.7021912,76.92186754,80.48251486,,,,464.386949,190,31332,392.7310373,536.0428608,1647.377837,1171.446684,2252.019735,,,,,,,,,,358.3925768,292.5659162,424.2192375,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.101,,,0.086,0.117,0.142,,,0.122,0.164,0.09,,,0.076,0.105,0,0,9514,,,0.091,1060,,,,0.052417488,600.2326506,11451,,,,,,,,,,,,,,,,,,,,,,,,,,0.312,,,0.297,0.327,0.110581663,673,6086,0.091517833,0.129645493,0.084607181,238,2813,0.060777394,0.108436968,0.001736865,20,11515,,,575.75,0.825,94.875,115,,,,,,,,3.36563215,,,,,,,,,3.474007403,3.667608159,,,,,,,,,3.799646017,0.03929153,,,,,2007.553,,,,,0.888661002,48528,54608,0.727635103,1.049686901,71307,,,62240.95745,80373.04255,36779,12392.78723,61165.21277,58738,58637.91489,58838.08511,,,,,,,66423,56588.44681,76257.55319,,,,,,0.357501394,641,1793,,,,,,,,0.223568514,,71307,,,2.680965148,2,746,,,,,,,,,,,,,,,,,,,,,,,,,,19.41775406,11,57479,9.311567831,35.70994106,19.1374241,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.11783376,13,80656,8.582067659,27.56198661,,,,,,,,,,,,,16.48335182,8.228429837,29.49326957,,,,,,,,,,,0.618181818,5372,8690,,,0.633,,,,,48.75700937,,,,,0.621311151,3137,5049,0.577046873,0.665575429,0.095791922,453,4729,0.054602539,0.136981306,0.814220638,4111,5049,0.765418975,0.863022301,11515,,,,,0.238384716,2745,11515,,,0.212505428,2447,11515,,,0.008597482,99,11515,,,0.113938341,1312,11515,,,0.011723839,135,11515,,,0.000434216,5,11515,,,0.034389926,396,11515,,,0.811550152,9345,11515,,,0.003019213,33,10930,0,0.011673029,0.488753799,5628,11515,,,0.35433003,4112,11605,, -38,073,38073,ND,Ransom County,2024,1,8293.511971,81,14439,5554.295128,11910.86662,0,,,,2,,,,2,,,,2,,,,2,8582.520384,5655.935013,12487.11656,,,,,2,,0.136,,,0.112,0.16,3.112266937,,,2.398523068,3.934840041,4.074552347,,,3.20353156,5.028458963,0.048648649,18,370,0.026727613,0.070569684,1,,,,,,,,,,,,,0.048192771,0.025154362,0.07123118,,,,,,,0.17,,,0.132,0.209,0.376,,,0.302,0.453,9.5,0.017758859,0.055,,,0.264,,,0.216,0.315,0.635455024,3624,5703,,,0.194859308,,,0.157615355,0.236472923,0.333333333,1,3,0.04092282,0.635504717,158.6,9,5675,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.110636384,492,4447,0.093955533,0.127317235,0.000352423,2,5675,,,2837.5,0.00070922,4,5640,,,1410,0.00035461,2,5640,,,2820,3773,,,,,,,,,3375,0.56,,,,,,,,,0.56,0.48,,,,,,,,,0.48,0.908836262,3569,3927,0.883630944,0.93404158,0.568403909,698,1228,0.45645321,0.680354608,0.017157777,46,2681,,,0.104,126,,0.061106383,0.146893617,,,,,,,,,,,,,0.137254902,0.066059285,0.208450519,3.838756811,126107,32851,3.231875613,4.445638009,0.113268608,140,1236,0.048207377,0.17832984,28.1938326,16,5675,,,112.7819549,30,26600,76.09351136,161.0032534,,,,,,,,,,,,,116.4331313,77.97709535,167.2173985,,,,5.6,,,,,0,,,,,0.054621849,130,2380,0.034491367,0.074752331,0.049676026,0.022154293,0.077197759,0.003361345,0,0.014062477,0.003361345,0,0.011195978,0.779389881,2095,2688,0.72286496,0.835914802,,,,,,,,,,,,,0.788107598,0.729208009,0.847007187,0.213,,2688,0.170538823,0.255461177,76.90594293,,,74.51498339,79.29690248,,,,,,,,,,,,,76.66080748,74.15169162,79.16992335,,,,404.3796756,81,14439,314.6315247,511.7683603,,,,,,,,,,,,,409.0905464,315.727447,521.4194834,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.094,,,0.08,0.11,0.138,,,0.116,0.16,0.085,,,0.072,0.101,0,0,4777,,,0.055,310,,,,0.017758859,96.91009353,5457,,,,,,,,,,,,,,,,,,,,,,,,,,0.312,,,0.294,0.329,0.111145997,354,3185,0.092082167,0.130209827,0.111866969,148,1323,0.078505267,0.145228671,0.002304965,13,5640,,,433.8461539,,,,,,,,,,,3.229420027,,,,,,,,,3.253685136,3.003362679,,,,,,,,,3.03870858,0.050418168,,,,,2806.748,,,,,0.686984766,41667,60652,0.578763984,0.795205547,76130,,,65929.65957,86330.34043,,,,,,,58561,14409.17021,102712.8298,,,,72546,67397.57447,77694.42553,,,,,,0.212896622,208,977,,,44.7753486,,,,,0.202837252,,76130,,,6.329113924,2,316,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.615809285,2454,3985,,,0.689,,,,,0.024157284,,,,,0.743928419,1746,2347,0.698226753,0.789630085,0.07996446,180,2251,0.043827585,0.116101336,0.806135492,1892,2347,0.764840419,0.847430565,5640,,,,,0.220744681,1245,5640,,,0.222340426,1254,5640,,,0.009042553,51,5640,,,0.009574468,54,5640,,,0.012765957,72,5640,,,0.001595745,9,5640,,,0.043439716,245,5640,,,0.893971631,5042,5640,,,0.001299425,7,5387,0,0.014165864,0.476595745,2688,5640,,,1,5703,5703,, -38,075,38075,ND,Renville County,2024,1,4767.456746,34,6246,2286.180819,8767.522698,1,,,,2,,,,2,,,,2,,,,2,4771.750001,2060.102961,9402.249771,1,,,,2,,0.124,,,0.101,0.147,2.945691872,,,2.264847838,3.698012623,3.612752206,,,2.787600504,4.494573015,,,,,,0,,,,,,,,,,,,,,,,,,,,,,0.153,,,0.118,0.188,0.367,,,0.289,0.444,8.9,0.135137809,0.029,,,0.235,,,0.19,0.285,0.372918493,851,2282,,,0.205127439,,,0.166146987,0.246204958,0,0,1,0,0.662081041,176.5,4,2266,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.103273138,183,1772,0.086592287,0.119953989,,0,2266,,,,0.000450451,1,2220,,,2220,,0,2220,,,,589,,,,,,,,,593,0.56,,,,,,,,,0.56,0.54,,,,,,,,,0.54,0.911842105,1386,1520,0.890329484,0.933354727,0.583657588,300,514,0.504045375,0.6632698,0.019607843,24,1224,,,0.077,37,,0.048404255,0.105595745,,,,,,,,,,,,,0.035564854,0,0.072548856,3.240790085,132571,40907,2.624996679,3.85658349,0.129326047,71,549,0.049707561,0.208944534,17.65225066,4,2266,,,,,,,,,,,,,,,,,,,,,,,,,,4.4,,,,,0,,,,,0.064516129,60,930,0.029326707,0.099705551,0.040860215,0,0.093874655,0.012903226,0,0.037086385,0.004301075,0,0.023343689,0.793252595,917,1156,0.722022235,0.864482956,,,,,,,,,,,,,0.803547067,0.720500574,0.88659356,0.465,,1156,0.374055716,0.555944284,78.85060781,,,76.0558686,81.64534703,,,,,,,,,,,,,78.75162178,75.84004142,81.66320214,,,,315.6953352,34,6246,212.998317,450.6747209,,,,,,,,,,,,,310.4361407,204.5793728,451.6682861,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.089,,,0.075,0.104,0.132,,,0.112,0.154,0.08,,,0.067,0.093,0,0,1924,,,0.029,70,,,,0.135137809,333.7903876,2470,,,,,,,,,,,,,,,,,,,,,,,,,,0.295,,,0.277,0.313,0.101960784,130,1275,0.082896955,0.121024614,0.111320755,59,530,0.080342031,0.142299478,0,0,2220,,,-2220,,,,,,,,,,,3.008284606,,,,,,,,,2.99436847,2.981097287,,,,,,,,,2.89612022,,,,,,3415.684,,,,,0.860693593,51250,59545,0.692310523,1.029076664,71271,,,61731.93617,80810.06383,,,,,,,,,,,,,77750,66945.57447,88554.42553,,,,,,0.230902778,133,576,,,,,,,,0.233895975,,71271,,,,,147,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.732777778,1319,1800,,,0.583,,,,,2.159071389,,,,,0.835855646,718,859,0.787585145,0.884126147,0.080528846,67,832,0.025361024,0.135696668,0.933643772,802,859,0.895207362,0.972080182,2220,,,,,0.218918919,486,2220,,,0.20990991,466,2220,,,0.004954955,11,2220,,,0.011711712,26,2220,,,0.003153153,7,2220,,,0.000900901,2,2220,,,0.027927928,62,2220,,,0.936036036,2078,2220,,,0,0,2152,0,0.022146642,0.474324324,1053,2220,,,1,2282,2282,, -38,077,38077,ND,Richland County,2024,1,6938.320366,193,44711,5387.54448,8489.096253,0,,,,2,,,,2,,,,2,,,,2,6517.100246,4897.377455,8136.823036,,,,,2,,0.136,,,0.114,0.162,3.143092107,,,2.46461078,3.862392151,3.590783454,,,2.843140465,4.404946422,0.057295646,75,1309,0.044705382,0.069885909,0,,,,,,,,,,,,,0.055607044,0.041933326,0.069280762,,,,,,,0.161,,,0.128,0.197,0.396,,,0.335,0.461,9.3,0.053603779,0.048,,,0.25,,,0.207,0.295,0.618851715,10229,16529,,,0.222182025,,,0.184619143,0.266436417,0.352941177,6,17,0.222343344,0.479798798,350.2,58,16560,,,7.664670659,32,4175,5.242629057,10.82022804,,,,,,,,,,,,,4.823151125,2.858505032,7.622658164,,,,,,,0.098827471,1239,12537,0.084529598,0.113125343,0.000483092,8,16560,,,2070,0.00066345,11,16580,,,1507.272727,0.000301568,5,16580,,,3316,3166,,,,,,,,,3013,0.53,,,,,,,,,0.53,0.59,,,,,0.44,,,,0.59,0.93507344,9995,10689,0.920238466,0.949908414,0.743157313,2688,3617,0.662555816,0.823758809,0.01910684,169,8845,,,0.105,371,,0.065680851,0.144319149,0.668085106,0.279860944,1,,,,,,,0.423387097,0,0.852289632,0.045254981,0.022077966,0.068431997,5.072556535,132343,26090,3.899039123,6.246073947,0.192724243,694,3601,0.138566722,0.246881764,18.71980676,31,16560,,,71.18049164,58,81483,54.05033158,92.01729164,,,,,,,,,,,,,71.73892446,53.73737724,93.8362795,,,,6.1,,,,,0,,,,,0.140337987,955,6805,0.103986112,0.176689861,0.107898659,0.073636845,0.142160472,0.016164585,0.007725129,0.024604041,0.026451139,0.010221196,0.042681081,0.794269272,6625,8341,0.761835657,0.826702887,,,,,,,,,,,,,0.784621127,0.758994466,0.810247789,0.277,,8341,0.23633197,0.31766803,80.68029671,,,79.0684393,82.29215413,,,,,,,,,,,,,80.97100023,79.31291689,82.62908357,,,,335.8699546,193,44711,284.9456418,386.7942673,,,,,,,,,,,,,317.7339473,266.6821868,368.7857079,,,,64.15864684,11,17145,32.02776534,114.7975416,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.098,,,0.083,0.113,0.136,,,0.116,0.157,0.088,,,0.075,0.103,57.4,8,13929,,,0.048,800,,,,0.053603779,874.8672712,16321,,,,,,,,,,,,,,,,,,,,,,,,,,0.303,,,0.286,0.318,0.106853933,951,8900,0.088981592,0.124726273,0.082152231,313,3810,0.059513933,0.104790529,0.001206273,20,16580,,,829,0.879575163,134.575,153,,,,,,,,2.966223414,,,,,,,,,3.009545629,3.044881288,,,,,,,,,3.140359461,0.072160366,,,,,-491.3026833,,,,,0.732732134,44120,60213,0.663355888,0.802108381,74253,,,67186.2766,81319.7234,,,,,,,,,,82045,46303.89362,117786.1064,68814,61626.93617,76001.06383,,,,,,0.224552206,514,2289,,,,,,,,0.213216974,,74253,,,7.231404959,7,968,,,,,,,,,,,,,,,,,,,,,,,,,,12.6101284,10,81483,5.766153685,23.93795169,12.27249856,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.00584744,16,114238,8.005551965,22.74461878,,,,,,,,,,,,,14.43556924,8.079478523,23.80927617,,,,,,,,,,,0.617793594,7812,12645,,,0.68,,,,,30.70368698,,,,,0.692375756,4695,6781,0.667245784,0.717505728,0.109643128,722,6585,0.073189044,0.146097213,0.862704616,5850,6781,0.833165304,0.892243928,16580,,,,,0.216344994,3587,16580,,,0.203498191,3374,16580,,,0.011700844,194,16580,,,0.031905911,529,16580,,,0.005790109,96,16580,,,0.000542823,9,16580,,,0.036911942,612,16580,,,0.899095296,14907,16580,,,0.002375755,37,15574,0,0.007000345,0.484620024,8035,16580,,,0.521810152,8625,16529,, -38,079,38079,ND,Rolette County,2024,1,18393.94439,335,38573,15726.33523,21061.55355,0,22129.10377,18884.59695,25373.61058,,,,,2,,,,2,,,,2,4624.369767,2114.556326,8778.494284,1,,,,2,,0.251,,,0.219,0.285,4.833784705,,,4.029558562,5.904564596,5.624003096,,,4.793324289,6.820264037,0.078155029,122,1561,0.064839389,0.091470668,0,0.08,0.065392125,0.094607875,,,,,,,,,,,,,,,,,,,0.302,,,0.256,0.354,0.469,,,0.416,0.537,7.1,0.049887464,0.154,,,0.355,,,0.309,0.413,0.726840076,8858,12187,,,0.204447795,,,0.171858291,0.248907119,0.571428571,16,28,0.491534043,0.642066043,1801.1,217,12048,,,48.56265699,174,3583,41.34686696,55.77844702,52.25576112,44.18383253,60.3276897,,,,,,,,,,,,,,,,102.0408163,48.93253772,187.6566943,0.143111428,1206,8427,0.124047598,0.162175257,0.000498008,6,12048,,,2008,0.000921814,11,11933,,,1084.818182,0.001592223,19,11933,,,628.0526316,5477,,,,,6283,,,,3687,0.24,,,,,0.09,,,,0.43,0.43,,,,,0.42,,,,0.46,0.853968698,6111,7156,0.821102346,0.886835049,0.556715379,1600,2874,0.467792543,0.645638216,0.066442389,316,4756,,,0.318,1242,,0.216723404,0.419276596,0.324899722,0.262661508,0.387137936,,,,,,,0.342105263,0.064607531,0.619602995,0.034782609,0,0.134393884,6.511930963,112435,17266,4.090069239,8.933792686,0.396852717,1614,4067,0.306153102,0.487552332,5.810092962,7,12048,,,137.2415885,95,69221,111.0366407,167.7707251,159.9127065,127.7325902,197.734538,,,,,,,,,,,,,,,,5.1,,,,,0,,,,,0.155681818,685,4400,0.121968654,0.189394982,0.093706294,0.061552655,0.125859933,0.064772727,0.041418393,0.088127062,0.020454546,0.004289666,0.036619425,0.799729059,3542,4429,0.752299856,0.847158261,0.810632384,0.752335322,0.868929445,,,,,,,,,,0.837657524,0.726907702,0.948407347,0.192,,4429,0.139223611,0.244776389,68.19669768,,,66.51241463,69.88098072,64.82676937,63.00566802,66.64787071,,,,,,,,,,80.35712075,77.62249085,83.09175066,,,,827.5943064,335,38573,735.8265558,919.362057,1028.664115,908.13639,1149.19184,,,,,,,,,,294.4666737,197.2089529,422.9032629,,,,70.00350018,14,19999,38.27156496,117.4539783,78.41244948,41.75132693,134.0876767,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.155,,,0.136,0.178,0.188,,,0.166,0.216,0.16,,,0.141,0.185,,,,,,0.154,1930,,,,0.049887464,695.2815793,13937,,,,,,,,,,,,,,,,,,,,,,,,,,0.382,,,0.364,0.397,0.173879294,896,5153,0.147666528,0.20009206,0.096595869,332,3437,0.071574592,0.121617145,0.001257018,15,11933,,,795.5333333,0.740064103,173.175,234,,,0.263636364,232,880,0.143857191,0.383415536,2.794609116,,,,,,,,,3.041672851,2.887118887,,,,,,,,,3.019132324,0.393794389,,,,,-206.8464968,,,,,0.823875677,41988,50964,0.67975753,0.967993824,50598,,,44250.93617,56945.06383,49464,45576.17021,53351.82979,123125,82395.12766,163854.8723,,,,,,,67125,60154.78723,74095.21277,,,,,,0.895854398,2658,2967,,,,,,,,0.295051188,,50598,,,1.897533207,2,1054,,,10.14929615,10,98529,4.866982001,18.66491697,13.28038885,6.368462657,24.42310793,,,,,,,,,,,,,,,,27.86458804,17,69221,16.23214938,44.61390474,24.55902111,29.54483944,16.53602236,48.72971962,,,,,,,,,,,,,,,,23.11437281,16,69221,13.21186122,37.53629332,26.33856342,14.39953771,44.19163397,,,,,,,,,,,,,,,,41.6121142,41,98529,29.86157159,56.4515316,49.13743874,34.59729155,67.72948664,,,,,,,,,,,,,,,,,,,,,,,0.400421053,3804,9500,,,0.344,,,,,6.254549945,,,,,0.6608506,2424,3668,0.616461401,0.705239799,0.080094927,270,3371,0.0493602,0.110829654,0.822519084,3017,3668,0.783520575,0.861517594,11933,,,,,0.331936646,3961,11933,,,0.130478505,1557,11933,,,0.005195676,62,11933,,,0.777256348,9275,11933,,,0.002681639,32,11933,,,8.38012E-05,1,11933,,,0.024469957,292,11933,,,0.174976955,2088,11933,,,0.000709031,8,11283,0,0.007337506,0.502891142,6001,11933,,,1,12187,12187,, -38,081,38081,ND,Sargent County,2024,1,7090.794324,56,10519,4130.648998,11353.04861,1,,,,2,,,,2,,,,2,,,,2,7737.393803,4422.589095,12565.04279,1,,,,2,,0.12,,,0.1,0.143,2.792538595,,,2.130995412,3.515982058,3.682739371,,,2.8452505,4.595672407,0.06462585,19,294,0.036521198,0.092730503,1,,,,,,,,,,,,,0.056603774,0.028780842,0.084426706,,,,,,,0.155,,,0.121,0.191,0.381,,,0.305,0.46,10,0.015682169,0.036,,,0.223,,,0.179,0.27,0.652511652,2520,3862,,,0.225165393,,,0.183927009,0.272122428,0.5,4,8,0.315552499,0.64971552,261.2,10,3829,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.07201087,212,2944,0.060095976,0.083925763,,0,3829,,,,0,0,3795,,,-3795,,0,3795,,,,3334,,,,,,,,,3382,0.59,,,,,,,,,0.6,0.52,,,,,,,,,0.52,0.942286751,2596,2755,0.921366995,0.963206508,0.710556186,626,881,0.612085304,0.809027068,0.017189514,40,2327,,,0.11,86,,0.064723404,0.155276596,,,,,,,,,,0.137254902,0,0.410078698,0.055393586,0.024479737,0.086307435,3.007289675,125825,41840,2.464357063,3.550222287,0.262958281,208,791,0.174604215,0.351312346,20.8931836,8,3829,,,72.28418009,14,19368,39.51843389,121.2805717,,,,,,,,,,,,,79.29764939,43.35276282,133.0479814,,,,5.6,,,,,0,,,,,0.052770449,100,1895,0.031806142,0.073734756,0.032891247,0.009251208,0.056531285,0.012137203,0,0.026694372,0.007387863,0,0.016998592,0.739151633,1516,2051,0.698306542,0.779996725,,,,,,,,,,,,,0.751038912,0.700195708,0.801882116,0.218,,2051,0.1719462,0.2640538,79.0121107,,,75.92644039,82.09778101,,,,,,,,,,,,,78.3731363,75.06334243,81.68293016,,,,352.6879374,56,10519,258.211897,470.4362839,,,,,,,,,,,,,368.8936353,265.8660849,498.6370294,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.087,,,0.073,0.102,0.13,,,0.11,0.15,0.079,,,0.066,0.093,,,,,,0.036,140,,,,0.015682169,60.04702634,3829,,,,,,,,,,,,,,,,,,,,,,,,,,0.28,,,0.265,0.295,0.07024205,148,2107,0.057135667,0.083348433,0.076571429,67,875,0.051550152,0.101592705,0.000527009,2,3795,,,1897.5,,,,,,,,,,,2.698170937,,,,,,,,,2.715419007,2.714107975,,,,,,,,,2.613681007,,,,,,3502.997167,,,,,0.799428091,49483,61898,0.705253,0.893603183,75325,,,64830.3617,85819.6383,,,,,,,46563,41839.93617,51286.06383,94250,32996.7234,155503.2766,79135,65978.57447,92291.42553,,,,,,0.182481752,100,548,,,,,,,,0.211510123,,75325,,,17.85714286,4,224,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.667741936,2070,3100,,,0.662,,,,,3.815030512,,,,,0.734988453,1273,1732,0.7119056,0.758071305,0.047965999,79,1647,0.021858711,0.074073286,0.871247113,1509,1732,0.853620944,0.888873282,3795,,,,,0.211067194,801,3795,,,0.232938076,884,3795,,,0.022924901,87,3795,,,0.014756258,56,3795,,,0.009749671,37,3795,,,0.001581028,6,3795,,,0.035309618,134,3795,,,0.902766798,3426,3795,,,0.003045404,11,3612,0,0.016420383,0.460079051,1746,3795,,,1,3862,3862,, -38,083,38083,ND,Sheridan County,2024,1,14774.97793,23,3129,6378.786774,29112.59661,1,,,,2,,,,2,,,,2,,,,2,16486.22119,6628.315969,33967.9166,1,,,,2,,0.136,,,0.113,0.161,3.056973581,,,2.357575629,3.856436014,3.941361588,,,3.055289932,4.934408083,,,,,,0,,,,,,,,,,,,,,,,,,,,,,0.176,,,0.138,0.216,0.361,,,0.284,0.442,7.1,0.289247081,0.035,,,0.259,,,0.209,0.312,0.376284585,476,1265,,,0.174236678,,,0.13936958,0.213653423,0,0,2,0,0.510593623,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.125295508,106,846,0.1038487,0.146742317,0,0,1268,,,-1268,0,0,1295,,,-1295,,0,1295,,,,,,,,,,,,,,0.44,,,,,,,,,0.44,0.42,,,,,,,,,0.4,0.904174573,953,1054,0.870710904,0.937638242,0.606870229,159,262,0.469691869,0.744048589,0.025679758,17,662,,,0.237,58,,0.140489362,0.333510638,,,,,,,,,,,,,0.05027933,0,0.172883452,3.650324124,116000,31778,2.813098016,4.487550231,0.156862745,32,204,0.063297586,0.250427904,39.43217666,5,1268,,,,,,,,,,,,,,,,,,,,,,,,,,4.8,,,,,1,,,,,0.109489051,75,685,0.047127722,0.171850381,0.097810219,0.031202507,0.164417931,0,0,0.034788011,0.051094891,0,0.109253978,0.663461539,414,624,0.568619688,0.758303389,,,,,,,,,,,,,0.643738977,0.507533757,0.779944197,0.294,,624,0.207372906,0.380627095,,,,,,,,,,,,,,,,,,,,,,,,497.9447033,23,3129,290.0711395,797.2577066,,,,,,,,,,,,,534.6243154,305.5839896,868.1963938,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.097,,,0.082,0.113,0.141,,,0.121,0.164,0.082,,,0.069,0.096,0,0,1097,,,0.035,50,,,,0.289247081,382.0953937,1321,,,,,,,,,,,,,,,,,,,,,,,,,,0.317,,,0.3,0.334,0.127214171,79,621,0.102192894,0.152235447,0.117154812,28,239,0.077835663,0.156473961,0.001544402,2,1295,,,647.5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-16743.18,,,,,0.802312535,42188,52583,0.640364817,0.964260252,56922,,,48787.70213,65056.29787,,,,,,,,,,,,,69079,55286.31915,82871.68085,,,,,,0.357142857,40,112,,,,,,,,0.259864376,,56922,,,20.83333333,1,48,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.751851852,812,1080,,,0.532,,,,,2.363277165,,,,,0.829192547,534,644,0.801208136,0.857176958,0.058727569,36,613,0,0.131312679,0.779503106,502,644,0.737453653,0.821552558,1295,,,,,0.190733591,247,1295,,,0.355984556,461,1295,,,0.000772201,1,1295,,,0.021621622,28,1295,,,0.006177606,8,1295,,,0.000772201,1,1295,,,0.019305019,25,1295,,,0.928957529,1203,1295,,,0.002331002,3,1287,0,0.03837655,0.48957529,634,1295,,,1,1265,1265,, -38,085,38085,ND,Sioux County,2024,1,29639.73183,121,11709,23195.6361,36083.82757,0,36041.42023,28158.95566,43923.88479,,,,,2,,,,2,,,,2,,,,2,,,,2,,0.312,,,0.271,0.354,5.478068956,,,4.484116732,6.590919633,5.444556436,,,4.344812161,6.609692613,0.107569721,54,502,0.080465534,0.134673908,0,0.098321343,0.069742948,0.126899738,,,,,,,,,,,,,,,,,,,0.351,,,0.297,0.405,0.486,,,0.404,0.568,4.6,0.243489993,0.176,,,0.408,,,0.346,0.47,0.19214982,749,3898,,,0.175991663,,,0.141378111,0.215245347,0.375,3,8,0.179126284,0.556186502,1658.6,62,3738,,,50,66,1320,38.66999638,63.61225943,51.19152692,38.87187262,66.17691946,,,,,,,,,,,,,,,,,,,0.124862284,340,2723,0.104606965,0.145117603,,0,3738,,,,0.000538938,2,3711,,,1855.5,0.000808407,3,3711,,,1237,3717,,,,,4684,,,,,0.2,,,,,0.16,,,,0.33,0.19,,,,,0.11,,,,0.45,0.858600583,1767,2058,0.825469384,0.891731782,0.385064177,330,857,0.31091276,0.459215594,0.025974026,32,1232,,,0.362,467,,0.23093617,0.49306383,0.5408,0.493705568,0.587894432,,,,,,,,,,0.0375,0,0.256021168,6.564909403,88042,13411,4.883985227,8.245833578,0.577282531,803,1391,0.450444519,0.704120542,0,0,3738,,,196.4071856,41,20875,140.9451874,266.4485249,231.8628348,164.0799417,318.2498561,,,,,,,,,,,,,,,,4.6,,,,,0,,,,,0.190045249,210,1105,0.13397675,0.246113748,0.078139535,0.030337504,0.125941566,0.098642534,0.052997792,0.144287276,0.031674208,0.004662472,0.058685945,0.75024108,778,1037,0.69247358,0.80800858,0.807459677,0.732992625,0.88192673,,,,,,,,,,0.6015625,0.434619029,0.768505971,0.229,,1037,0.16069949,0.29730051,62.01761944,,,58.8150304,65.22020847,58.36804208,55.0603179,61.67576625,,,,,,,,,,,,,,,,1224.654764,121,11709,1002.049477,1447.260052,1510.794387,1225.188353,1796.400421,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.183,,,0.159,0.209,0.205,,,0.177,0.234,0.189,,,0.166,0.215,0,0,2768,,,0.176,700,,,,0.243489993,1011.213942,4153,,,82.36553826,10,12141,39.49747711,151.4731574,104.9979,50.3505743,193.0948765,,,,,,,,,,,,,,,,0.383,,,0.366,0.399,0.162229102,262,1615,0.132441868,0.192016336,0.071611253,84,1173,0.050164445,0.093058062,0.000808407,3,3711,,,1237,,,,,,0.271641791,91,335,0.155383986,0.387899596,,,,,,,,,,,,,,,,,,,,,,,,,,-2905.72,,,,,0.878367645,40917,46583,0.687440525,1.069294764,43721,,,37350.10638,50091.89362,35893,26693.51064,45092.48936,,,,,,,,,,56042,32819.87234,79264.12766,,,,,,0.923469388,362,392,,,,,,,,0.33832712,,43721,,,,,382,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,40.3850037,12,29714,20.86752073,70.54447415,51.51320026,26.61762227,89.98319403,,,,,,,,,,,,,,,,,,,,,,,0.419823009,1186,2825,,,0.385,,,,,0.087860865,,,,,0.434574976,455,1047,0.391528073,0.47762188,0.114594595,106,925,0.055851814,0.173337375,0.728748806,763,1047,0.671348032,0.78614958,3711,,,,,0.355429803,1319,3711,,,0.083804904,311,3711,,,0.006736729,25,3711,,,0.81083266,3009,3711,,,0.002155753,8,3711,,,0.000269469,1,3711,,,0.059283212,220,3711,,,0.119105362,442,3711,,,0.001408054,5,3551,0,0.014558337,0.506332525,1879,3711,,,1,3898,3898,, -38,087,38087,ND,Slope County,2024,0,,,,,,2,,,,2,,,,2,,,,2,,,,2,,,,2,,,,2,,0.128,,,0.105,0.154,2.922222791,,,2.323538584,3.586781487,3.688145409,,,2.850339798,4.690267863,,,,,,0,,,,,,,,,,,,,,,,,,,,,,0.157,,,0.12,0.197,0.38,,,0.299,0.471,8.1,0.205627083,0.032,,,0.243,,,0.194,0.296,0.011331445,8,706,,,0.191239164,,,0.152089931,0.235375451,0.666666667,2,3,0.391498614,0.824051859,0,0,690,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.094302554,48,509,0.080004682,0.108600426,0,0,690,,,-690,0,0,672,,,-672,0,0,672,,,-672,,,,,,,,,,,0.36,,,,,,,,,0.36,0.11,,,,,,,,,0.11,0.91627907,591,645,0.745196334,1,0.627218935,106,169,0.433462104,0.820975766,0.026392962,9,341,,,0.158,21,,0.093659575,0.222340426,,,,,,,,,,,,,,,,4.222892899,133625,31643,1.748662411,6.697123387,0.053892216,9,167,0,0.148511104,0,0,690,,,,,,,,,,,,,,,,,,,,,,,,,,4,,,,,0,,,,,0.044776119,15,335,0,0.097302575,0.024169184,0,0.129954668,0,0,0.071133693,0.011940299,0,0.057459489,0.531553398,219,412,0.455178873,0.607927923,,,,,,,,,,,,,0.549295775,0.427291165,0.671300385,0.36,,412,0.212164064,0.507835936,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.091,,,0.076,0.107,0.131,,,0.11,0.153,0.082,,,0.069,0.097,0,0,590,,,0.032,20,,,,0.205627083,149.490889,727,,,,,,,,,,,,,,,,,,,,,,,,,,0.294,,,0.276,0.312,0.098930481,37,374,0.079866652,0.117994311,0.092198582,13,141,0.067177305,0.117219858,0,0,672,,,-672,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.501934884,26979,53750,0.151286958,0.852582809,69249,,,64328.14894,74169.85106,,,,,,,,,,,,,72125,61692.31915,82557.68085,,,,,,,,,,,,,,,,0.259209519,,69249,,,,,22,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.7,427,610,,,0.415,,,,,1.103721267,,,,,0.903133903,317,351,0.875986226,0.930281581,0.027272727,9,330,0,0.154822367,0.809116809,284,351,0.755602404,0.862631214,672,,,,,0.199404762,134,672,,,0.290178571,195,672,,,0.010416667,7,672,,,0.049107143,33,672,,,0,0,672,,,0,0,672,,,0.044642857,30,672,,,0.909226191,611,672,,,0,0,824,0,0.057839289,0.473214286,318,672,,,1,706,706,, -38,089,38089,ND,Stark County,2024,1,6927.604441,316,90467,5868.46041,7986.748473,0,,,,2,,,,2,,,,2,,,,2,6694.798777,5567.406465,7822.19109,,,,,2,,0.136,,,0.113,0.162,3.147972115,,,2.45977217,3.849280951,3.865665769,,,3.107229903,4.632585111,0.071565146,262,3661,0.063215219,0.079915074,0,,,,,,,0.106598985,0.063504399,0.149693571,0.075528701,0.047061498,0.103995904,0.066643527,0.057536278,0.075750775,,,,,,,0.165,,,0.13,0.205,0.4,,,0.338,0.457,9,0.064248649,0.058,,,0.24,,,0.198,0.284,0.722255246,24301,33646,,,0.215327494,,,0.18023038,0.25115807,0.409090909,9,22,0.29849051,0.512929862,372.2,123,33046,,,20.92317521,131,6261,17.34016525,24.50618517,,,,,,,,,,37.3280943,22.47395121,58.29244317,18.14280141,14.64358227,22.22615744,,,,69.62025317,34.75417954,124.569864,0.090668268,2567,28312,0.077561885,0.103774651,0.000605217,20,33046,,,1652.3,0.00048776,16,32803,,,2050.1875,0.001646191,54,32803,,,607.462963,1783,,,,,,,,,1667,0.48,,,,,,,,,0.48,0.49,,,,,0.73,,0.38,,0.49,0.919349548,19618,21339,0.902006703,0.936692393,0.680737156,6612,9713,0.613428563,0.74804575,0.018934585,343,18115,,,0.092,816,,0.056255319,0.127744681,,,,,,,,,,0.359943978,0.244569341,0.475318614,0.048206278,0.025665944,0.070746612,4.044534294,137045,33884,3.219850535,4.869218052,0.116545961,1046,8975,0.078625195,0.154466727,11.19651395,37,33046,,,66.51968983,105,157848,53.79604208,79.24333758,,,,,,,,,,,,,66.52338553,53.56048036,81.67597623,,,,4.6,,,,,0,,,,,0.144044321,1820,12635,0.112381704,0.175706939,0.118336026,0.090163851,0.1465082,0.022556391,0.010374099,0.034738683,0.012663237,0,0.026129849,0.810987415,13404,16528,0.786894478,0.835080352,,,,,,,,,,,,,0.816643254,0.788641558,0.84464495,0.14,,16528,0.109506251,0.170493749,79.04592632,,,77.97274863,80.11910402,,,,,,,,,,89.59865767,66.90841399,112.2889014,79.12694102,78.01299913,80.24088291,,,,325.3160375,316,90467,288.6617639,361.970311,,,,,,,,,,,,,321.8672063,283.7154117,360.019001,,,,56.0687777,21,37454,34.70745711,85.70708265,,,,,,,,,,,,,52.83841353,30.20171875,85.80627323,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.096,,,0.081,0.112,0.138,,,0.116,0.16,0.087,,,0.074,0.101,65,17,26153,,,0.058,1890,,,,0.064248649,1554.753054,24199,,,18.62544235,18,96642,11.03861756,29.43622883,,,,,,,,,,,,,16.79301411,9.180897078,28.1758242,,,,0.319,,,0.302,0.334,0.100687572,1933,19198,0.082815231,0.118559912,0.072281518,684,9463,0.053217688,0.091345347,0.001127946,37,32803,,,886.5675676,0.876754098,267.41,305,,,,,,,,3.232053142,,,,,,,2.928646815,3.132477052,3.243917693,3.429111806,,,,,,,2.873831531,3.20280782,3.500098735,0.040149238,,,,,2349.8285,,,,,0.662196917,48149,72711,0.590349705,0.734044129,86963,,,81971.85106,91954.14894,68705,867.5531915,136542.4468,57066,27114.34043,87017.65957,61175,59730.91489,62619.08511,66025,30022.95745,102027.0426,81705,74781.25532,88628.74468,,,,,,0.15207682,681,4478,,,50.9582089,,,,,0.255142992,,86963,,,2.933626696,8,2727,,,,,,,,,,,,,,,,,,,,,,,,,,19.23095839,28,157848,12.67332276,27.98003479,17.73858395,,,,,,,,,,,,,21.49911152,14.04393343,31.50117962,,,,12.03689626,19,157848,7.246997849,18.79710454,,,,,,,,,,,,,12.42744565,7.239445056,19.89754435,,,,15.82271328,35,221201,11.02109954,22.00556389,,,,,,,,,,,,,14.57225235,9.683155859,21.06096195,,,,,,,,,,,0.672926448,15050,22365,,,0.649,,,,,54.68677137,,,,,0.642651515,8483,13200,0.609585687,0.675717343,0.105056841,1340,12755,0.079899665,0.130214016,0.863939394,11404,13200,0.833425703,0.894453085,32803,,,,,0.274090784,8991,32803,,,0.143310063,4701,32803,,,0.027924275,916,32803,,,0.020242051,664,32803,,,0.017132579,562,32803,,,0.001280371,42,32803,,,0.066182971,2171,32803,,,0.857177697,28118,32803,,,0.007301923,221,30266,0.001956568,0.012647278,0.481510837,15795,32803,,,0.236937526,7972,33646,, -38,091,38091,ND,Steele County,2024,1,3963.722503,23,4996,1593.622023,8166.783269,1,,,,2,,,,2,,,,2,,,,2,4157.742038,1671.627939,8566.537665,1,,,,2,,0.119,,,0.099,0.143,2.992742345,,,2.304521549,3.814091386,3.915504645,,,3.029925712,4.944586548,0.070967742,11,155,0.030544037,0.111391447,1,,,,,,,,,,,,,0.076388889,0.033004399,0.119773379,,,,,,,0.149,,,0.114,0.189,0.384,,,0.308,0.471,8.6,0.124540767,0.047,,,0.227,,,0.183,0.278,0.450500556,810,1798,,,0.188166863,,,0.150982863,0.230592571,0,0,2,0,0.510593623,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.068318318,91,1332,0.056403425,0.080233212,0,0,1810,,,-1810,0,0,1788,,,-1788,,0,1788,,,,762,,,,,,,,,785,0.55,,,,,,,,,0.55,0.48,,,,,,,,,0.48,0.961538462,1225,1274,0.94053645,0.982540473,0.752604167,289,384,0.59498142,0.910226913,0.01997897,19,951,,,0.119,47,,0.070148936,0.167851064,,,,,,,,,,,,,0.221264368,0.12518109,0.317347646,5.231964912,149111,28500,3.337973808,7.125956017,0.054404145,21,386,0.001862354,0.106945936,0,0,1810,,,,,,,,,,,,,,,,,,,,,,,,,,5.3,,,,,0,,,,,0.093167702,75,805,0.034385015,0.151950389,0.044098573,0,0.098386933,0.043478261,0,0.098448838,0.004968944,0,0.025891538,0.766826923,638,832,0.747928632,0.785725214,,,,,,,,,,,,,0.696236559,0.647755485,0.744717633,0.227,,832,0.15047521,0.30352479,81.86150611,,,78.46004256,85.26296965,,,,,,,,,,,,,81.63682478,78.16919113,85.10445843,,,,246.133371,23,4996,148.1883679,384.3677479,,,,,,,,,,,,,255.6211624,153.9006381,399.1841094,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.089,,,0.075,0.104,0.133,,,0.113,0.157,0.081,,,0.068,0.096,0,0,1513,,,0.047,90,,,,0.124540767,245.9680157,1975,,,,,,,,,,,,,,,,,,,,,,,,,,0.294,,,0.275,0.312,0.069370331,65,937,0.055072459,0.083668203,0.06372549,26,408,0.039895703,0.087555277,0,0,1788,,,-1788,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.621669208,39545,63611,0.406586647,0.83675177,81081,,,69366.2766,92795.7234,,,,,,,,,,,,,85750,73216.7234,98283.2766,,,,,,0.266666667,40,150,,,,,,,,0.206793207,,81081,,,19.41747573,2,103,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.771631206,1088,1410,,,0.51,,,,,1.897921394,,,,,0.773743017,554,716,0.74245833,0.805027703,0.075163399,46,612,0,0.153760485,0.730446927,523,716,0.689727121,0.771166734,1788,,,,,0.225391499,403,1788,,,0.261744966,468,1788,,,0.003914989,7,1788,,,0.013422819,24,1788,,,0.002237137,4,1788,,,0,0,1788,,,0.027404922,49,1788,,,0.937360179,1676,1788,,,0.001797484,3,1669,0,0.029675531,0.468120805,837,1788,,,1,1798,1798,, -38,093,38093,ND,Stutsman County,2024,1,6548.875074,279,57376,5252.781113,7844.969035,0,,,,2,,,,2,,,,2,,,,2,6594.130614,5230.174397,7958.08683,,,,,2,,0.14,,,0.116,0.169,3.06283794,,,2.361711484,3.79680595,3.894073909,,,3.082971742,4.731557265,0.069057105,104,1506,0.056251229,0.081862981,0,,,,,,,,,,,,,0.066871637,0.053297598,0.080445676,,,,,,,0.18,,,0.141,0.221,0.419,,,0.358,0.482,8.6,0.063703784,0.078,,,0.258,,,0.212,0.306,0.784235632,16934,21593,,,0.199943666,,,0.163970271,0.23913552,0.285714286,4,14,0.142392906,0.436004848,477.4,103,21576,,,12.37022311,56,4527,9.344333595,16.06376364,,,,,,,,,,,,,11.7965102,8.69781539,15.64046109,,,,,,,0.08606274,1369,15907,0.072956357,0.099169123,0.000787913,17,21576,,,1269.176471,0.000744636,16,21487,,,1342.9375,0.0040955,88,21487,,,244.1704546,1183,,,,,,,,,1161,0.59,,,,,,,,,0.59,0.56,,,,,0.42,,,,0.56,0.917305258,13766,15007,0.895671745,0.93893877,0.647171254,3386,5232,0.566707534,0.727634974,0.020434946,218,10668,,,0.112,475,,0.064340426,0.159659575,,,,,,,0.132352941,0,0.381769331,,,,0.093666844,0.046815578,0.14051811,5.641752696,122962,21795,3.440169438,7.843335953,0.209862385,915,4360,0.138087195,0.281637576,12.0504264,26,21576,,,95.43623905,100,104782,76.7307362,114.1417419,,,,,,,,,,,,,98.97379799,80.07571294,120.9903356,,,,5.3,,,,,0,,,,,0.142618384,1280,8975,0.105750827,0.179485942,0.124915825,0.086767762,0.163063888,0.009247911,0.000736517,0.017759305,0.030083566,0.00960067,0.050566461,0.806015038,8576,10640,0.779317836,0.832712239,,,,,,,,,,,,,0.805363151,0.769024383,0.841701919,0.144,,10640,0.10770355,0.180296451,78.0381626,,,76.89478691,79.18153828,,,,,,,,,,,,,77.93708961,76.75424934,79.11992989,,,,341.7819697,279,57376,299.0138743,384.5500651,,,,,,,,,,,,,347.43826,302.8917914,391.9847285,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.097,,,0.082,0.114,0.136,,,0.115,0.158,0.086,,,0.072,0.101,54.3,10,18413,,,0.078,1700,,,,0.063703784,1344.149831,21100,,,,,,,,,,,,,,,,,,,,,,,,,,0.3,,,0.284,0.316,0.090814378,1046,11518,0.075325016,0.106303739,0.076252723,350,4590,0.053614425,0.098891021,0.001768511,38,21487,,,565.4473684,0.868055556,156.25,180,,,,,,,,3.162571649,,,,,,,,,3.189724112,3.432311193,,,,,,,,,3.517784286,0.058859627,,,,,2064.1755,,,,,0.696918394,40753,58476,0.59964911,0.794187678,65633,,,56686.10638,74579.89362,26311,26019.08511,26602.91489,,,,86786,4450.510638,169121.4894,54276,28511.23404,80040.76596,60859,52735.42553,68982.57447,,,,,,0.242927197,644,2651,,,71.14833636,,,,,0.274937912,,65633,,,4.676539361,6,1283,,,,,,,,,,,,,,,,,,,,,,,,,,18.06218312,19,104782,10.70479444,28.54603641,18.13288542,,,,,,,,,,,,,17.46114253,9.980551656,28.35580152,,,,17.17852303,18,104782,10.18108147,27.14947249,,,,,,,,,,,,,17.71110069,10.31736883,28.35718791,,,,14.28445104,21,147013,8.84230033,21.83530078,,,,,,,,,,,,,15.54749389,9.624143766,23.76599595,,,,,,,,,,,0.606331811,9959,16425,,,0.703,,,,,62.34635671,,,,,0.647310648,5897,9110,0.619317486,0.675303809,0.150307778,1343,8935,0.11066299,0.189952566,0.810757409,7386,9110,0.777659345,0.843855474,21487,,,,,0.201610276,4332,21487,,,0.205426537,4414,21487,,,0.019500163,419,21487,,,0.020896356,449,21487,,,0.008656397,186,21487,,,0.000837716,18,21487,,,0.032577838,700,21487,,,0.905524271,19457,21487,,,0.005048772,103,20401,0,0.010635953,0.485689021,10436,21487,,,0.295743991,6386,21593,, -38,095,38095,ND,Towner County,2024,1,9113.021379,29,5677,4167.053669,17299.35324,1,,,,2,,,,2,,,,2,,,,2,8191.877452,3293.559603,16878.39844,1,,,,2,,0.162,,,0.136,0.19,3.484249523,,,2.709936692,4.362031393,4.418353355,,,3.458918687,5.483458691,0.075,12,160,0.034187088,0.115812912,1,,,,,,,,,,,,,,,,,,,,,,0.196,,,0.157,0.238,0.382,,,0.305,0.465,8.5,0.080289747,0.075,,,0.286,,,0.236,0.341,0.570305273,1233,2162,,,0.173168322,,,0.138376351,0.213965315,0,0,2,0,0.510593623,373.8,8,2140,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.142673522,222,1556,0.120035224,0.16531182,,0,2140,,,,0,0,2064,,,-2064,0.002906977,6,2064,,,344,4108,,,,,,,,,3282,0.46,,,,,,,,,0.47,0.14,,,,,,,,,0.13,0.853674121,1336,1565,0.796759166,0.910589077,0.606205251,254,419,0.493678418,0.718732084,0.02393617,27,1128,,,0.148,66,,0.088425532,0.207574468,,,,,,,,,,,,,0.132992327,0.025982985,0.24000167,6.678805195,128567,19250,4.410283485,8.947326904,0.100806452,50,496,0.024507347,0.177105556,18.69158879,4,2140,,,119.463334,13,10882,63.609194,204.2859393,,,,,,,,,,,,,121.8397807,62.95639262,212.8295771,,,,5,,,,,0,,,,,0.049773756,55,1105,0.017154376,0.082393135,0.048138056,0.00402261,0.092253503,0.00361991,0,0.022572099,0,0,0.015249054,0.763741562,792,1037,0.687604539,0.839878585,,,,,,,,,,,,,0.78128655,0.697040523,0.865532576,0.159,,1037,0.096768202,0.221231799,77.82265142,,,73.48943133,82.15587151,,,,,,,,,,,,,78.82353026,74.40182347,83.24523704,,,,344.8147992,29,5677,213.4457954,527.0860487,,,,,,,,,,,,,306.3694939,175.1166371,497.5248639,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.11,,,0.094,0.128,0.153,,,0.131,0.176,0.099,,,0.084,0.116,,,,,,0.075,160,,,,0.080289747,180.3307719,2246,,,,,,,,,,,,,,,,,,,,,,,,,,0.3,,,0.285,0.314,0.142857143,156,1092,0.117835866,0.16787842,0.141683778,69,487,0.099981651,0.183385906,0.003391473,7,2064,,,294.8571429,,,,,,,,,,,3.296658464,,,,,,,,,3.293135535,3.075755342,,,,,,,,,3.059629843,,,,,,,,,,,0.861268996,50156,58235,0.622113697,1.100424296,70656,,,60101.78723,81210.21277,,,,,,,,,,88875,30828.02128,146921.9787,62670,45396.97872,79943.02128,,,,,,0.249169435,75,301,,,,,,,,0.209607111,,70656,,,,,129,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.711515152,1174,1650,,,0.508,,,,,3.371559758,,,,,0.757261411,730,964,0.68486314,0.829659682,0.109728507,97,884,0.045752431,0.173704583,0.781120332,753,964,0.707134575,0.855106089,2064,,,,,0.218992248,452,2064,,,0.275193798,568,2064,,,0.003391473,7,2064,,,0.054263566,112,2064,,,0.00629845,13,2064,,,0,0,2064,,,0.036337209,75,2064,,,0.885658915,1828,2064,,,0.017928287,36,2008,0,0.046579165,0.477713178,986,2064,,,1,2162,2162,, -38,097,38097,ND,Traill County,2024,1,6351.495284,107,21751,4411.061682,8291.928885,0,,,,2,,,,2,,,,2,,,,2,6404.371211,4348.25987,8460.482552,,,,,2,,0.119,,,0.097,0.142,2.814182873,,,2.148367247,3.563136617,3.900443175,,,3.017406073,4.821312388,0.061514196,39,634,0.042811123,0.080217269,0,,,,,,,,,,,,,0.058510638,0.039140102,0.077881175,,,,,,,0.146,,,0.112,0.184,0.372,,,0.298,0.442,10,0.021461036,0.033,,,0.23,,,0.185,0.279,0.567837939,4541,7997,,,0.232254951,,,0.187697452,0.275743683,0.25,2,8,0.070127692,0.458326521,262.4,21,8003,,,7.575757576,14,1848,4.141737163,12.71083394,,,,,,,,,,,,,,,,,,,,,,0.096763858,604,6242,0.082465985,0.11106173,0.000374859,3,8003,,,2667.666667,0.000251319,2,7958,,,3979,0.00012566,1,7958,,,7958,1436,,,,,,,,,1405,0.62,,,,,,,,,0.62,0.45,,,,,,,,,0.46,0.937419474,5093,5433,0.92567232,0.949166627,0.722099448,1307,1810,0.642290333,0.801908562,0.019946809,90,4512,,,0.074,135,,0.044212766,0.103787234,,,,,,,,,,,,,0.041009464,0.015566193,0.066452734,4.045568671,140183,34651,2.976067725,5.115069616,0.114910314,205,1784,0.069074341,0.160746287,26.24015994,21,8003,,,74.91010787,30,40048,50.54153521,106.9388369,,,,,,,,,,,,,78.92874639,52.8598202,113.3548458,,,,5.9,,,,,0,,,,,0.055964654,190,3395,0.03801694,0.073912367,0.050674663,0.028645731,0.072703594,0.002356407,0,0.010894854,0.004123711,0,0.009083602,0.814569536,3321,4077,0.777584916,0.851554157,,,,,,,,,,,,,0.820382546,0.783111756,0.857653337,0.237,,4077,0.199058967,0.274941033,78.78736588,,,77.0401231,80.53460866,,,,,,,,,,,,,78.6254848,76.813793,80.4371766,,,,357.9668797,107,21751,285.2849316,430.6488278,,,,,,,,,,,,,361.4249183,286.2058506,436.643986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.087,,,0.072,0.101,0.133,,,0.113,0.156,0.078,,,0.065,0.091,,,,,,0.033,260,,,,0.021461036,174.2850756,8121,,,,,,,,,,,,,,,,,,,,,,,,,,0.299,,,0.282,0.317,0.099818923,441,4418,0.083138072,0.116499774,0.092805005,178,1918,0.066592239,0.119017771,0.000628299,5,7958,,,1591.6,,,,,,,,,,,2.88055837,,,,,,,,,2.962195908,3.221257442,,,,,,,,,3.307162234,0.057005296,,,,,1414.584171,,,,,0.770028863,49355,64095,0.697871322,0.842186405,79065,,,68849.17021,89280.82979,,,,,,,,,,103696,57376.85106,150015.1489,80625,70950.10638,90299.89362,,,,,,0.153901217,215,1397,,,,,,,,0.207879593,,79065,,,11.69590643,6,513,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.675816994,4136,6120,,,0.67,,,,,7.968452544,,,,,0.730289193,2399,3285,0.70322313,0.757355257,0.069052898,218,3157,0.0427248,0.095380996,0.777473364,2554,3285,0.737520324,0.817426404,7958,,,,,0.231590852,1843,7958,,,0.206961548,1647,7958,,,0.010304097,82,7958,,,0.015330485,122,7958,,,0.006157326,49,7958,,,0.000502639,4,7958,,,0.041719025,332,7958,,,0.905629555,7207,7958,,,0.002658867,20,7522,0,0.012013885,0.484543855,3856,7958,,,1,7997,7997,, -38,099,38099,ND,Walsh County,2024,1,6762.575191,158,28373,4911.181138,8613.969245,0,,,,2,,,,2,,,,2,,,,2,6731.317615,4631.671386,8830.963845,,,,,2,,0.157,,,0.131,0.182,3.339203072,,,2.635913122,4.07867703,3.710527252,,,2.928526748,4.541074804,0.075963719,67,882,0.058478567,0.09344887,0,,,,,,,,,,0.10738255,0.057670408,0.157094693,0.069940476,0.050656744,0.089224209,,,,,,,0.178,,,0.141,0.214,0.363,,,0.303,0.425,9.2,0.053465991,0.053,,,0.278,,,0.23,0.326,0.678500426,7167,10563,,,0.186115495,,,0.153276583,0.221814313,0.3,3,10,0.129013968,0.476732101,267.5,28,10469,,,16.02719767,33,2059,11.03238542,22.50814438,,,,,,,,,,37.43315508,20.46505422,62.80647359,7.722007722,3.990074073,13.48879347,,,,,,,0.122333905,998,8158,0.105653054,0.139014756,0.00038208,4,10469,,,2617.25,0.000670627,7,10438,,,1491.142857,0.000287411,3,10438,,,3479.333333,4358,,,,,,,,,4273,0.54,,,,,,,,,0.55,0.33,,,,,,,,0.23,0.33,0.868863575,6407,7374,0.840721467,0.897005683,0.565440149,1214,2147,0.496446528,0.63443377,0.031439394,166,5280,,,0.137,327,,0.085765957,0.188234043,,,,,,,0.346153846,0,0.765541789,0.072874494,0,0.176709724,0.074845245,0.043671587,0.106018903,4.116265808,122710,29811,3.481226818,4.751304798,0.126613911,304,2401,0.075572864,0.177654958,16.23841819,17,10469,,,62.18319546,33,53069,42.80405052,87.3283259,,,,,,,,,,,,,67.78588698,45.73485329,96.76856858,,,,5.8,,,,,0,,,,,0.08713693,420,4820,0.063154844,0.111119015,0.070157068,0.04705963,0.093254506,0.016390042,0.004934432,0.027845651,0.003112033,0,0.008531776,0.808074898,4143,5127,0.77952854,0.836621256,,,,,,,,,,0.70398482,0.632138131,0.775831509,0.818474265,0.778353748,0.858594782,0.182,,5127,0.148341744,0.215658256,78.29752144,,,76.68368069,79.9113622,,,,,,,,,,,,,78.35803636,76.61631338,80.09975935,,,,365.9999617,158,28373,304.4137298,427.5861935,,,,,,,,,,,,,367.005951,300.2579001,433.7540019,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.104,,,0.089,0.121,0.144,,,0.125,0.164,0.096,,,0.082,0.111,103,9,8738,,,0.053,570,,,,0.053465991,594.4883527,11119,,,,,,,,,,,,,,,,,,,,,,,,,,0.332,,,0.317,0.347,0.128063514,742,5794,0.107808195,0.148318833,0.111826227,278,2486,0.082038993,0.141613461,0.001149646,12,10438,,,869.8333333,0.85472973,94.875,111,,,,,,,,2.756850062,,,,,,,,1.997115711,2.994825504,2.761776886,,,,,,,,1.784821319,3.005527705,0.097254792,,,,,-4079.195,,,,,0.843119832,46493,55144,0.776046927,0.910192737,67249,,,59358.95745,75139.04255,10588,1649.446809,19526.55319,,,,,,,65438,51258.08511,79617.91489,69735,65218.06383,74251.93617,,,,,,0.368774482,659,1787,,,,,,,,0.249014855,,67249,,,7.374631268,5,678,,,,,,,,,,,,,,,,,,,,,,,,,,19.41495224,10,53069,8.877752458,36.855627,18.84339256,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.02778149,12,74870,8.281788579,27.99730873,,,,,,,,,,,,,19.13906123,9.889432222,33.43208831,,,,,,,,,,,0.600502197,4783,7965,,,0.656,,,,,16.17448543,,,,,0.781508843,3491,4467,0.755816328,0.807201357,0.079168613,339,4282,0.053734493,0.104602733,0.778822476,3479,4467,0.742729798,0.814915154,10438,,,,,0.230887143,2410,10438,,,0.225138916,2350,10438,,,0.006610462,69,10438,,,0.023855145,249,10438,,,0.009676183,101,10438,,,0.001437057,15,10438,,,0.126173597,1317,10438,,,0.825541291,8617,10438,,,0.011395724,113,9916,0.000473895,0.022317553,0.482084691,5032,10438,,,1,10563,10563,, -38,101,38101,ND,Ward County,2024,1,7594.040827,766,193190,6878.311858,8309.769796,0,16814.18195,10983.58189,24636.67233,,,,,2,9583.588117,6201.992924,14147.26659,1,7970.573042,5052.659585,11959.77308,1,6994.085189,6240.081177,7748.089201,,,,,2,,0.134,,,0.114,0.157,3.159103052,,,2.575873952,3.863614226,3.647127722,,,3.013558376,4.391653506,0.064588562,489,7571,0.059051765,0.070125359,0,0.062222222,0.030658549,0.093785896,0.108695652,0.063721161,0.153670143,0.123173278,0.093742384,0.152604172,0.056603774,0.039976391,0.073231156,0.058759718,0.052561821,0.064957615,,,,0.058181818,0.03051451,0.085849126,0.156,,,0.125,0.191,0.38,,,0.332,0.432,8.9,0.074032172,0.056,,,0.263,,,0.224,0.305,0.862927101,60335,69919,,,0.243935992,,,0.208741012,0.283542384,0.225806452,7,31,0.133616464,0.327772988,525.5,363,69071,,,17.78135519,243,13666,15.54563323,20.01707714,32.44274809,18.89909632,51.94398247,,,,23.38129496,12.44955484,39.98272647,47.43083004,34.97174983,62.88639939,11.79310985,9.742030065,13.84418964,,,,49.66887417,33.51138083,70.90540628,0.098834979,5667,57338,0.085728596,0.111941362,0.000781804,54,69071,,,1279.092593,0.000842166,58,68870,,,1187.413793,0.002729781,188,68870,,,366.3297872,2948,,,,,828,,3857,,2905,0.53,,,,,0.11,0.6,0.2,,0.55,0.54,,,,,0.44,0.56,0.39,0.35,0.55,0.940577785,41772,44411,0.929336072,0.951819498,0.688623038,14563,21148,0.63939144,0.737854635,0.022561728,731,32400,,,0.109,1759,,0.067297872,0.150702128,0.442528736,0.250115993,0.634941478,,,,0.075396825,0,0.215969469,0.15472416,0.049992236,0.259456083,0.025225225,0.013385012,0.037065439,4.13882724,141730,34244,3.583675253,4.693979226,0.16296341,2699,16562,0.116010486,0.209916335,12.3061777,85,69071,,,73.71266103,252,341868,64.61147712,82.81384494,,,,,,,90.55627426,49.5079578,151.9380409,80.71386933,47.83615435,127.5627114,71.68637745,61.77589773,81.59685717,,,,4.5,,,,,0,,,,,0.143686247,4085,28430,0.122010336,0.165362158,0.120184626,0.099346583,0.14102267,0.025817798,0.016663925,0.034971672,0.005276117,0.000794922,0.009757312,0.821124636,30490,37132,0.799794082,0.842455191,,,,,,,0.74875208,0.653990169,0.84351399,0.822718631,0.743624916,0.901812346,0.846396966,0.825981356,0.866812576,0.149,,37132,0.128991491,0.169008509,77.62838732,,,76.9525113,78.30426333,,,,,,,,,,90.45435063,60.68933894,120.2193623,78.04629595,77.33756612,78.75502578,,,,372.8945233,766,193190,345.9013744,399.8876722,880.9667739,585.3960234,1273.242273,,,,350.790631,211.1988751,547.8030235,415.4925836,242.0397413,665.2438758,356.521177,328.4699669,384.5723871,,,,42.67914917,31,72635,28.99841121,60.57964549,,,,,,,,,,,,,39.95133201,25.03728707,60.48679679,,,,5.315110099,42,7902,3.830663849,7.184484786,,,,,,,,,,,,,4.662407184,3.072555713,6.783557666,,,,,,,0.092,,,0.079,0.107,0.13,,,0.112,0.149,0.088,,,0.076,0.102,73.9,42,56835,,,0.056,3920,,,,0.074032172,4565.934207,61675,,,24.36908441,50,205178,18.08720415,32.12759977,,,,,,,,,,,,,25.68605665,18.58912656,34.59894975,,,,0.318,,,0.302,0.333,0.113814795,4668,41014,0.095942455,0.131687135,0.064859461,1103,17006,0.04817861,0.081540312,0.001640773,113,68870,,,609.4690266,0.862068429,554.31,643,,,,,,,,3.135082951,,,,,,3.463917532,,2.999571785,3.181705119,3.106496271,,,,,,3.551767917,2.853123668,2.860732276,3.170201054,0.051923443,,,,,3360.035999,,,,,0.846629027,50984,60220,0.788072335,0.905185719,72091,,,65651,78531,,,,56368,40249.53192,72486.46809,55951,37262.48936,74639.51064,65128,32067.74468,98188.25532,81173,78032.23404,84313.76596,,,,,,0.220369665,2313,10496,,,46.52763599,,,,,0.332232872,,72091,,,3.716017993,19,5113,,,3.310210136,16,483353,1.892071106,5.375573876,,,,,,,,,,,,,,,,,,,18.94513066,64,341868,14.45713054,24.38613852,18.72067582,,,,,,,,,,,,,18.46950789,13.66384362,24.41766892,,,,14.33301742,49,341868,10.60364519,18.94900915,,,,,,,,,,,,,12.83935119,8.992523723,17.775074,,,,10.75818294,52,483353,8.034725594,14.10792562,,,,,,,,,,,,,8.775118778,6.11219175,12.20406598,,,,,,,,,,,0.554658812,28246,50925,,,0.659,,,,,74.66444525,,,,,0.611971359,17350,28351,0.589658904,0.634283814,0.11176004,3100,27738,0.090455502,0.133064579,0.883355085,25044,28351,0.867507776,0.899202393,68870,,,,,0.239088137,16466,68870,,,0.142776245,9833,68870,,,0.044329897,3053,68870,,,0.028096414,1935,68870,,,0.017583854,1211,68870,,,0.001815014,125,68870,,,0.070306374,4842,68870,,,0.813518223,56027,68870,,,0.007085931,457,64494,0.002839923,0.011331938,0.477900392,32913,68870,,,0.271657203,18994,69919,, -38,103,38103,ND,Wells County,2024,1,4680.240599,56,9806,2726.412621,7493.518581,1,,,,2,,,,2,,,,2,,,,2,4806.035651,2799.692875,7694.928646,1,,,,2,,0.132,,,0.109,0.159,3.147450002,,,2.409762127,3.980241656,4.046839649,,,3.182398908,5.056818348,0.077192983,22,285,0.046206092,0.108179873,1,,,,,,,,,,,,,0.076923077,0.045313257,0.108532897,,,,,,,0.167,,,0.129,0.21,0.365,,,0.294,0.443,8.8,0.099935809,0.05,,,0.256,,,0.208,0.309,0.593420392,2363,3982,,,0.176535432,,,0.141603628,0.215785474,0,0,2,0,0.510593623,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.091170136,254,2786,0.076872264,0.105468009,0.00128041,5,3905,,,781,0.001017812,4,3930,,,982.5,,0,3930,,,,2911,,,,,,,,,2913,0.57,,,,,,,,,0.57,0.41,,,,,,,,,0.41,0.91146741,2615,2869,0.87903335,0.943901471,0.538670285,397,737,0.43501866,0.64232191,0.031152648,60,1926,,,0.152,124,,0.093617021,0.210382979,,,,,,,,,,,,,0.115479116,0.036808826,0.194149405,5.121330478,121944,23811,3.993151234,6.249509721,0.183240224,164,895,0.084258848,0.282221599,33.29065301,13,3905,,,77.21212745,15,19427,43.21504161,127.3496622,,,,,,,,,,,,,80.3083842,44.947993,132.4564668,,,,5,,,,,0,,,,,0.048969072,95,1940,0.0212389,0.076699244,0.043523316,0.015514572,0.07153206,0.009278351,0,0.021721576,0,0,0.008685672,0.692391304,1274,1840,0.628586393,0.756196216,,,,,,,,,,,,,0.723438334,0.656983509,0.789893159,0.179,,1840,0.112799925,0.245200075,79.84860576,,,77.66671549,82.03049602,,,,,,,,,,,,,79.63554387,77.42330859,81.84777916,,,,312.2699969,56,9806,225.9913451,420.6256365,,,,,,,,,,,,,319.4148794,231.162132,430.2497463,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.097,,,0.081,0.113,0.141,,,0.12,0.164,0.08,,,0.067,0.095,,,,,,0.05,200,,,,0.099935809,420.4299498,4207,,,,,,,,,,,,,,,,,,,,,,,,,,0.314,,,0.295,0.332,0.091733871,182,1984,0.07505302,0.108414722,0.091448931,77,842,0.064044676,0.118853186,0.001017812,4,3930,,,982.5,,,,,,,,,,,3.296628561,,,,,,,,,3.309655576,2.992429513,,,,,,,,,2.983996458,,,,,,1901.17705,,,,,0.628198198,41838,66600,0.476583086,0.77981331,66294,,,56417.74468,76170.25532,,,,,,,,,,,,,62788,53020.17021,72555.82979,,,,,,0.27962963,151,540,,,,,,,,0.234033246,,66294,,,13.51351351,3,222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.767043619,2374,3095,,,0.608,,,,,2.112899512,,,,,0.743333333,1338,1800,0.697836446,0.788830221,0.052538371,89,1694,0.015619678,0.089457063,0.808333333,1455,1800,0.758952389,0.857714278,3930,,,,,0.209669211,824,3930,,,0.28346056,1114,3930,,,0.004580153,18,3930,,,0.008905852,35,3930,,,0.003053435,12,3930,,,0.000508906,2,3930,,,0.017048346,67,3930,,,0.955216285,3754,3930,,,0,0,3765,0,0.012658586,0.495928753,1949,3930,,,1,3982,3982,, -38,105,38105,ND,Williams County,2024,1,7854.944956,384,110429,6869.478013,8840.411899,0,,,,2,,,,2,,,,2,,,,2,7967.290721,6830.447432,9104.13401,,,,,2,,0.138,,,0.117,0.163,2.996107519,,,2.366742905,3.68095218,3.574679162,,,2.866785278,4.356120155,0.057889447,288,4975,0.051399963,0.064378931,0,,,,,,,0.109634552,0.074338129,0.144930975,0.062068966,0.042432434,0.081705497,0.054509132,0.046992257,0.062026007,,,,,,,0.161,,,0.129,0.195,0.381,,,0.326,0.44,9,0.050564656,0.062,,,0.257,,,0.215,0.3,0.816874237,33451,40950,,,0.247756641,,,0.209744525,0.292868355,0.542857143,19,35,0.469229389,0.609551568,400.2,154,38484,,,28.76916814,212,7369,24.89645396,32.64188231,36.58536585,18.90419241,63.90727149,,,,,,,44.18604651,31.26867633,60.64880107,25.16994305,20.95513286,29.38475323,,,,36.41456583,19.38922266,62.27001658,0.119938374,4126,34401,0.103257523,0.136619225,0.000441742,17,38484,,,2263.764706,0.000629773,24,38109,,,1587.875,0.001338267,51,38109,,,747.2352941,1580,,,,,2602,,,,1506,0.4,,,,,0.18,,,,0.41,0.41,,,,,0.57,,,0.22,0.4,0.908226421,22158,24397,0.876888511,0.939564332,0.600647599,7791,12971,0.512868848,0.688426349,0.022539581,494,21917,,,0.093,1035,,0.057255319,0.128744681,,,,,,,0.48766328,0.390266197,0.585060364,0.143322476,0,0.316645719,0.026674862,0,0.053409689,4.17203079,161516,38714,3.378110826,4.965950754,0.188053482,2166,11518,0.115080347,0.261026616,11.69317119,45,38484,,,81.75634429,150,183472,68.67260428,94.84008431,,,,,,,,,,,,,86.92991363,71.69042785,102.1693994,,,,4,,,,,0,,,,,0.116763401,1710,14645,0.083812121,0.149714681,0.065046217,0.040084182,0.090008252,0.056264937,0.025565576,0.086964298,0.001638785,0,0.004161061,0.858646617,17130,19950,0.827953896,0.889339338,,,,,,,,,,0.774535809,0.641999357,0.907072261,0.857953352,0.834041162,0.881865541,0.157,,19950,0.118779369,0.195220631,78.01579332,,,76.97092617,79.06066047,,,,,,,,,,,,,77.8566998,76.72653302,78.98686658,,,,376.2822483,384,110429,337.9211264,414.6433702,,,,,,,,,,,,,377.7194071,335.7495037,419.6893105,,,,50.51780753,24,47508,32.3677125,75.16649321,,,,,,,,,,,,,58.34816349,35.6405741,90.11400619,,,,4.372019078,22,5032,2.73992108,6.619289425,,,,,,,,,,,,,,,,,,,,,,0.093,,,0.079,0.108,0.132,,,0.114,0.153,0.086,,,0.073,0.1,40.5,12,29623,,,0.062,2390,,,,0.050564656,1132.547166,22398,,,17.42570117,20,114773,10.64407098,26.91258214,,,,,,,,,,,,,18.05359662,10.31919036,29.31790984,,,,0.315,,,0.3,0.33,0.129316389,2951,22820,0.107869581,0.150763198,0.103738942,1243,11982,0.076334686,0.131143197,0.001075861,41,38109,,,929.4878049,0.784501279,306.74,391,,,,,,,,2.811127179,,,,,,,2.487013753,2.795067198,2.820636575,2.703318298,,,,,,,2.673773835,2.380185489,2.768350701,0.084805154,,,,,5035.0925,,,,,0.555055129,45106,81264,0.448163823,0.661946435,84145,,,72214.61702,96075.38298,33729,18855.6383,48602.3617,134694,119940.9787,149447.0213,55977,31241.68085,80712.31915,58798,9379.787234,108216.2128,90017,83327.97872,96706.02128,,,,,,0.140445127,915,6515,,,39.71911926,,,,,0.257911938,,84145,,,3.07606264,11,3576,,,,,,,,,,,,,,,,,,,,,,,,,,27.44149641,47,183472,19.9390333,36.83892809,25.61698788,,,,,,,,,,,,,31.57087817,22.65580725,42.8294611,,,,17.44135345,32,183472,11.92987285,24.62198705,,,,,,,,,,,,,18.77686134,12.37406994,27.31934743,,,,20.54499552,52,253103,15.34398533,26.94202824,,,,,,,,,,,,,21.87683343,15.89574066,29.36862777,,,,,,,,,,,0.589997942,14334,24295,,,0.492,,,,,56.17711776,,,,,0.536893391,8375,15599,0.493228003,0.580558778,0.077146824,1167,15127,0.050098022,0.104195626,0.832681582,12989,15599,0.787725225,0.877637939,38109,,,,,0.298774568,11386,38109,,,0.105775539,4031,38109,,,0.046970532,1790,38109,,,0.044110315,1681,38109,,,0.012884096,491,38109,,,0.002781495,106,38109,,,0.09929413,3784,38109,,,0.767089139,29233,38109,,,0.009773634,348,35606,0.001459156,0.018088111,0.467606077,17820,38109,,,0.279365079,11440,40950,, -39,000,39000,OH,Ohio,2024,,9394.258869,193266,32620148,9329.972667,9458.545072,0,5609.462287,4084.551719,7134.372856,,3050.442785,2824.47932,3276.40625,,15282.08039,15053.427,15510.73378,,6841.520419,6579.246323,7103.794514,,8823.579026,8753.329771,8893.828282,,6797.169936,4552.171384,9761.869853,,,0.159,,,0.15,0.168,3.59199826,,,3.402116397,3.781880123,5.539805241,,,5.288552147,5.791058335,0.086200951,80238,930825,0.085630782,0.08677112,0,0.085365854,0.065205707,0.105526,0.094010927,0.090657894,0.09736396,0.143944783,0.14217908,0.145710485,0.079542146,0.077279769,0.081804523,0.072566332,0.071943789,0.073188875,0.094771242,0.071565374,0.11797711,0.100032049,0.096309851,0.103754247,0.188,,,0.178,0.199,0.379,,,0.366,0.391,7,0.068698255,0.118,,,0.247,,,0.237,0.258,0.838714404,9896367,11799448,,,0.199985426,,,0.189014971,0.21142661,0.322025401,1927,5984,0.315756543,0.328306188,479.8,56520,11780017,,,18.40426209,47724,2593095,18.23913966,18.56938452,12.94964029,9.728168339,16.89647156,3.700951465,3.245803503,4.156099427,33.58309817,32.99256253,34.1736338,31.50447472,30.60272047,32.40622897,14.42543973,14.25449378,14.59638569,34.72770324,25.23320234,46.62032066,26.80247615,25.80684982,27.79810248,0.078433606,742266,9463622,0.076050627,0.080816585,0.0007528,8868,11780017,,,1328.37359,0.000651579,7660,11756058,,,1534.73342,0.003261382,38341,11756058,,,306.6184502,3111,,,,,3696,1574,5095,3415,2960,0.46,,,,,0.41,0.4,0.44,0.36,0.46,0.49,,,,,0.46,0.53,0.38,0.4,0.5,0.91399982,7401300,8097704,0.91288359,0.915116051,0.659395644,1968054,2984633,0.655086474,0.663704814,0.040226688,230953,5741288,,,0.177,445964,,0.169851064,0.184148936,0.323896753,0.238772663,0.409020842,0.113739199,0.099110523,0.128367874,0.389177793,0.377843419,0.400512166,0.281198382,0.269356798,0.293039967,0.126732286,0.123763764,0.129700808,4.653973451,130772,28099,4.617603788,4.690343114,0.264261963,684096,2588704,0.259965289,0.268558636,10.70966196,12616,11780017,,,99.44901234,58188,58510385,98.64095937,100.2570653,49.18623137,37.15475058,63.87241268,27.03945617,24.35926578,29.71964656,131.3869302,128.778405,133.9954554,58.80237337,55.71438705,61.8903597,100.9322022,100.0126826,101.8517218,45.01923549,22.47344015,80.55184789,8.9,,,,,0.238636364,,,,,0.127887688,603275,4717225,0.126282368,0.129493008,0.110229889,0.108760905,0.111698872,0.013651034,0.013117686,0.014184382,0.010719226,0.010301244,0.011137208,0.78063563,4355391,5579288,0.778690299,0.78258096,0.704861111,0.667884996,0.741837226,0.683330519,0.673357798,0.693303239,0.721574598,0.71479141,0.728357787,0.71484317,0.704437361,0.725248979,0.797649141,0.795688027,0.799610256,0.306,,5579288,0.303617021,0.308382979,75.6404264,,,75.5889494,75.69190339,95.52903153,90.52107823,100.5369848,86.55427584,85.97766123,87.13089045,70.80074915,70.63831951,70.96317879,83.28913901,82.68310499,83.89517302,76.02833204,75.97235797,76.0843061,83.22821953,77.84404945,88.6123896,453.7199998,193266,32620148,451.6024166,455.837583,239.0625172,202.9080652,275.2169692,151.9711264,143.4174231,160.5248297,685.3221936,677.622391,693.0219963,312.0491006,301.179937,322.9182641,437.1542692,434.8479353,439.4606032,288.4972499,207.0306075,391.3790956,58.45258433,6761,11566640,57.05925326,59.8459154,,,,37.68433092,30.76658743,44.60207442,128.3326695,123.0097618,133.6555773,49.44732998,44.42917001,54.46548994,46.82216546,45.33966507,48.30466585,,,,7.060136323,6656,942758,6.890522009,7.229750638,,,,3.923863284,3.203556487,4.644170081,15.13036138,14.51599504,15.74472771,6.519767178,5.831782746,7.20775161,5.361239461,5.18709449,5.535384432,,,,8.5674273,7.403100667,9.731753934,0.109972312,,,0.102469513,0.117952268,0.173143195,,,0.163052054,0.183721774,0.109,,,0.102,0.115,242.1,24084,9947987,,,0.118,1391290,,,,0.068698255,792537.6911,11536504,,,42.23837928,14852,35162334,41.55906484,42.91769373,16.05511282,8.014654475,28.72703172,6.254907589,4.724889973,8.12251778,55.12784974,52.95375409,57.3019454,28.55801127,25.82351698,31.29250556,42.98372183,42.20802377,43.75941989,,,,0.364653072,,,0.352510365,0.376970531,0.089248204,615215,6893304,0.085673736,0.092822672,0.05044616,136184,2699591,0.046871692,0.054020628,0.001399704,16455,11756058,,,714.4368277,0.861605172,115077.71,133562,,,0.064762831,40224,621097,0.061495391,0.068030271,3.118736206,,,,,,3.480105642,2.522823831,2.74632662,3.315065345,2.989646297,,,,,,3.681712346,2.284747377,2.635021848,3.20310991,0.290275687,,,,,-1648.678,,,,,0.794957983,48246,60690,0.787809606,0.802106361,65786,,,65055.61702,66516.38298,40007,34491.59575,45522.40426,94375,90887.51064,97862.48936,40499,39915.17021,41082.82979,54928,53454.12766,56401.87234,72111,71786.91489,72435.08511,,,,,,,,,,,69.54130292,,,,,0.29033372,,,,,8.020272289,,,,,6.903750403,5643,81738181,6.72362037,7.083880435,,,,1.392766281,0.917841756,2.026401816,34.67760744,33.54053354,35.81468133,5.579421349,4.762051307,6.39679139,2.798552572,2.669301937,2.927803207,,,,14.71215081,8782,58510385,14.39518598,15.02911564,15.00930134,,,,7.56342497,6.132330305,8.994519635,10.1131456,9.370956099,10.85533509,8.489858223,7.220855422,9.758861025,16.12211031,15.74651801,16.4977026,,,,14.35129849,8397,58510385,14.04433608,14.6582609,8.783255602,4.211912463,16.15271977,2.973648632,2.15204426,4.005485193,39.36485083,37.9370315,40.79267015,7.302807317,6.214571886,8.391042749,11.34140742,11.03317409,11.64964074,,,,10.88475409,8897,81738181,10.65857477,11.11093341,,,,3.920379163,3.088812882,4.906939121,13.83028004,13.11218883,14.54837126,8.353547047,7.35340981,9.353684284,11.0092976,10.75294026,11.26565494,,,,22.07925011,,1173500,,,25910,,0.668775613,5922202,8855290,,,,,,,,100.3163658,,,,,0.668206593,3200314,4789408,0.664737579,0.671675607,0.11689387,543396,4648627,0.115464592,0.118323148,0.87597131,4195384,4789408,0.873685808,0.878256812,11756058,,,,,0.217976978,2562550,11756058,,,0.183922026,2162198,11756058,,,0.128854502,1514821,11756058,,,0.003048726,35841,11756058,,,0.027489232,323165,11756058,,,0.000716227,8420,11756058,,,0.044657742,524999,11756058,,,0.772977047,9087163,11756058,,,0.010604346,117690,11098280,0.010224706,0.010983985,0.505813598,5946374,11756058,,,0.237159315,2798349,11799448,, -39,001,39001,OH,Adams County,2024,1,13177.94415,682,76684,11643.18841,14712.69989,0,,,,2,,,,2,,,,2,,,,2,13315.75921,11756.79634,14874.72209,,,,,2,,0.206,,,0.172,0.241,4.565422275,,,3.693662955,5.557229606,5.820403277,,,4.788112685,6.956093971,0.083508183,199,2383,0.072400516,0.09461585,0,,,,,,,,,,,,,0.084694755,0.073379549,0.096009961,,,,,,,0.248,,,0.198,0.3,0.417,,,0.348,0.489,6.2,0.111845875,0.165,,,0.323,,,0.27,0.381,0.391818612,10766,27477,,,0.152690173,,,0.122150666,0.187737632,0.310344828,9,29,0.211895015,0.410210813,177.9,49,27542,,,34.70082698,214,6167,30.05151157,39.35014239,,,,,,,,,,,,,35.08477422,30.32811964,39.84142879,,,,,,,0.094594595,2114,22348,0.080296722,0.108892467,0.000435698,12,27542,,,2295.166667,0.000401167,11,27420,,,2492.727273,0.002042305,56,27420,,,489.6428571,3402,,,,,,,,,3414,0.35,,,,,,,,,0.35,0.33,,,,,,,,,0.33,0.849744518,15965,18788,0.822091443,0.877397593,0.510008137,3134,6145,0.426129633,0.59388664,0.053740876,589,10960,,,0.26,1681,,0.180170213,0.339829787,,,,,,,,,,0.25,0,0.563451564,0.301006103,0.24212346,0.359888745,5.524737711,103738,18777,4.791538023,6.2579374,0.240213252,1577,6565,0.174251342,0.306175162,7.98780045,22,27542,,,127.3323156,176,138221,108.5201682,146.1444631,,,,,,,,,,,,,131.6521975,112.1463349,151.15806,,,,8.4,,,,,0,,,,,0.13949014,1450,10395,0.10752795,0.171452329,0.108948655,0.07622548,0.141671831,0.018566619,0.008492777,0.028640461,0.013949014,0.005353882,0.022544146,0.853753403,8780,10284,0.820337228,0.887169579,,,,,,,,,,,,,0.832001122,0.786064694,0.87793755,0.479,,10284,0.412896497,0.545103503,71.37445149,,,70.36181408,72.3870889,,,,,,,,,,,,,71.15504601,70.13901478,72.17107725,,,,653.9583458,682,76684,601.6873303,706.2293613,,,,,,,,,,,,,667.4260056,613.6553618,721.1966494,,,,55.38440237,16,28889,31.65697135,89.9407996,,,,,,,,,,,,,47.23493932,25.15061584,80.77318479,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.145,,,0.124,0.167,0.196,,,0.17,0.225,0.121,,,0.103,0.14,78.5,18,22933,,,0.165,4540,,,,0.111845875,3193.199731,28550,,,55.57502024,46,82771,40.68789964,74.12928889,,,,,,,,,,,,,57.86236305,42.36252206,77.18028367,,,,0.399,,,0.379,0.416,0.110254141,1744,15818,0.0923818,0.128126481,0.057342454,394,6871,0.039470113,0.075214794,0.000802334,22,27420,,,1246.363636,0.899433962,286.02,318,,,,,,,,3.016176767,,,,,,,,,3.023350606,2.868911415,,,,,,,,,2.863333005,0.026815506,,,,,144.132,,,,,0.815723963,39977,49008,0.684404829,0.947043098,49068,,,42137.10638,55998.89362,,,,92500,4952.93617,180047.0638,54479,42475.93617,66482.06383,,,,46574,41438.68085,51709.31915,,,,,,,,,,,,,,,,0.317844624,,49068,,,4.854368932,8,1648,,,,,,,,,,,,,,,,,,,,,,,,,,25.00371193,34,138221,16.98880916,35.49077323,24.59828825,,,,,,,,,,,,,25.95910797,17.63795442,36.84688165,,,,18.08697665,25,138221,11.70493764,26.69994552,,,,,,,,,,,,,18.80745678,12.17119439,27.76351632,,,,19.57229387,38,194152,13.85052003,26.86450251,,,,,,,,,,,,,19.79954301,13.94070549,27.29106192,,,,9.032258065,,3100,,,28,,0.579022646,12145,20975,,,0.59,,,,,3.997195886,,,,,0.714594595,7271,10175,0.681055863,0.748133327,0.110474543,1022,9251,0.078293214,0.142655873,0.796756757,8107,10175,0.761302622,0.832210892,27420,,,,,0.24051787,6595,27420,,,0.187235595,5134,27420,,,0.005506929,151,27420,,,0.005871627,161,27420,,,0.003646973,100,27420,,,0.000218818,6,27420,,,0.011779723,323,27420,,,0.958424508,26280,27420,,,0.000193117,5,25891,0,0.004308964,0.499927061,13708,27420,,,1,27477,27477,, -39,003,39003,OH,Allen County,2024,1,9338.281013,1787,282903,8677.593703,9998.968323,0,,,,2,,,,2,15685.45753,13208.27391,18162.64116,,,,,2,8711.721462,8010.141211,9413.301712,,,,,2,,0.174,,,0.148,0.202,4.035843908,,,3.311024438,4.837569347,5.351144656,,,4.519042168,6.241133424,0.098999535,851,8596,0.092685791,0.105313278,0,,,,,,,0.162206002,0.14162926,0.182782744,0.085798817,0.055940917,0.115656717,0.085161487,0.078408971,0.091914003,,,,0.149584488,0.112791815,0.18637716,0.219,,,0.18,0.261,0.429,,,0.373,0.486,7.9,0.040023735,0.121,,,0.306,,,0.263,0.353,0.861759584,88077,102206,,,0.186485445,,,0.155509813,0.221440602,0.298507463,20,67,0.235276574,0.363018424,629.5,640,101670,,,26.72335257,616,23051,24.61299203,28.8337131,,,,,,,53.12977099,45.23536621,61.02417578,30.58623619,21.4222238,42.34424341,20.39022675,18.24788622,22.53256729,,,,41.09589041,31.12562607,53.24449272,0.082092964,6464,78740,0.07136956,0.092816368,0.000649159,66,101670,,,1540.454546,0.000623053,63,101115,,,1605,0.002709786,274,101115,,,369.0328467,4217,,,,,,8577,7445,4059,3962,0.44,,,,,,0.29,0.36,,0.45,0.46,,,,,,0.42,0.31,0.38,0.47,0.919829991,62978,68467,0.911214262,0.92844572,0.604413635,14735,24379,0.567719071,0.641108198,0.042226981,1972,46700,,,0.17,3947,,0.112808511,0.227191489,,,,0.037037037,0,0.61361272,0.408170391,0.280403739,0.535937043,0.14072327,0.056802911,0.22464363,0.114707137,0.089228944,0.14018533,4.189826442,111772,26677,3.919450659,4.460202225,0.301156845,7185,23858,0.263847227,0.338466462,15.63883151,159,101670,,,92.60308443,474,511862,84.26641937,100.9397495,,,,,,,136.2138875,108.9535277,168.2230429,,,,91.84722259,82.5879643,101.1064809,,,,7.4,,,,,1,,,,,0.117123705,4805,41025,0.1035167,0.130730711,0.099815566,0.087985948,0.111645184,0.009384522,0.00595998,0.012809063,0.014381475,0.009711207,0.019051742,0.832958057,37733,45300,0.819953135,0.84596298,,,,,,,0.743321399,0.667621078,0.81902172,0.851779935,0.761196846,0.942363024,0.865268187,0.849807316,0.880729057,0.198,,45300,0.178973441,0.217026559,75.24757933,,,74.72149517,75.77366348,,,,,,,70.04575702,68.31865153,71.7728625,88.12376973,76.72522361,99.52231585,75.72185608,75.16129421,76.28241795,,,,480.3564713,1787,282903,456.9211806,503.7917621,,,,,,,721.9309301,636.764587,807.0972731,,,,461.2885206,436.119921,486.4571202,,,,49.88470046,53,106245,37.3670638,65.25041642,,,,,,,119.458455,70.79865132,188.7958606,,,,41.29991482,28.24911116,58.30315697,,,,6.319659887,55,8703,4.760832698,8.225906007,,,,,,,,,,,,,4.647676162,3.157870462,6.597005323,,,,,,,0.123,,,0.106,0.14,0.177,,,0.155,0.202,0.117,,,0.101,0.133,197.2,168,85195,,,0.121,12400,,,,0.040023735,4255.763809,106331,,,26.47050173,81,306001,21.02139928,32.90041672,,,,,,,42.42456382,24.24930385,68.89483374,,,,26.49686929,20.44972432,33.77243503,,,,0.372,,,0.357,0.386,0.094614816,5248,55467,0.080316944,0.108912688,0.053340407,1307,24503,0.037851046,0.068829769,0.002403204,243,101115,,,416.1111111,0.81705516,918.37,1124,,,0.080780942,451,5583,0.048977827,0.112584058,3.19255793,,,,,,,2.541802664,3.081941539,3.396619166,3.122481663,,,,,,,2.365757935,2.966636454,3.350131159,0.16242969,,,,,-674.9050038,,,,,0.737700619,42195,57198,0.702291299,0.773109939,60384,,,55538.21277,65229.78723,,,,,,,41502,36454.85106,46549.14894,53026,34485.23404,71566.76596,61755,59787.85106,63722.14894,,,,,,,,,,,53.0540089,,,,,0.320266958,,60384,,,7.761966365,48,6184,,,7.221931339,52,720029,5.393683755,9.47060212,,,,,,,42.84296924,30.31823492,58.80532258,,,,2.239637799,1.192512803,3.829848845,,,,16.84836876,83,511862,13.33901221,20.9980945,16.21530803,,,,,,,,,,,,,17.64709484,13.64826187,22.4514315,,,,13.67556099,70,511862,10.6607707,17.2782486,,,,,,,47.51647238,32.05916438,67.83271888,,,,9.233318673,6.534045833,12.67345127,,,,12.49949655,90,720029,10.0510713,15.36400337,,,,,,,12.40191215,6.190989861,22.1904466,,,,13.43782679,10.62204445,16.771016,,,,26.48148148,,10800,,,286,,0.613456009,48006,78255,,,0.697,,,,,54.16897296,,,,,0.674947834,27494,40735,0.656573205,0.693322462,0.098535554,3916,39742,0.086481287,0.110589822,0.87050448,35460,40735,0.854392056,0.886616905,101115,,,,,0.233318499,23592,101115,,,0.189902586,19202,101115,,,0.118627306,11995,101115,,,0.003342729,338,101115,,,0.009187559,929,101115,,,0.000464817,47,101115,,,0.037363398,3778,101115,,,0.80073184,80966,101115,,,0.003147834,302,95939,0.001158196,0.005137471,0.498996193,50456,101115,,,0.309756766,31659,102206,, -39,005,39005,OH,Ashland County,2024,1,8794.758133,843,145869,7827.491374,9762.024891,0,,,,2,,,,2,,,,2,,,,2,8844.122509,7843.582629,9844.66239,,,,,2,,0.168,,,0.139,0.202,4.009788173,,,3.172534291,4.917983939,5.557245168,,,4.501496045,6.647697872,0.05729546,236,4119,0.050197916,0.064393004,0,,,,,,,,,,,,,0.055611729,0.048470279,0.062753179,,,,,,,0.211,,,0.164,0.261,0.389,,,0.317,0.464,8.4,0.015133461,0.111,,,0.28,,,0.226,0.336,0.569222263,29854,52447,,,0.177968849,,,0.14228573,0.2162055,0.357142857,15,42,0.277350918,0.4357836,242.8,127,52316,,,14.12347117,194,13736,12.13601915,16.1109232,,,,,,,,,,,,,13.95673412,11.91779798,15.99567027,,,,,,,0.092655451,3767,40656,0.079549068,0.105761834,0.000439636,23,52316,,,2274.608696,0.000421609,22,52181,,,2371.863636,0.002472164,129,52181,,,404.503876,2915,,,,,,,,,2943,0.5,,,,,,,,,0.5,0.46,,,,,,,0.4,,0.46,0.898899318,32177,35796,0.883479179,0.914319458,0.554515278,6515,11749,0.498687371,0.610343185,0.038468936,1000,25995,,,0.138,1549,,0.085574468,0.190425532,,,,,,,,,,0.138408305,0,0.430834077,0.174011727,0.123315467,0.224707987,3.570484361,106961,29957,3.289314448,3.851654274,0.146422487,1719,11740,0.101129955,0.191715019,18.73231899,98,52316,,,66.0326036,176,266535,56.27690984,75.78829736,,,,,,,,,,,,,66.84544547,56.79689466,76.89399627,,,,9,,,,,0,,,,,0.120702268,2475,20505,0.102840053,0.138564483,0.084996305,0.068249082,0.101743527,0.019019751,0.010427214,0.027612289,0.030480371,0.019643758,0.041316984,0.810377436,19710,24322,0.77846716,0.842287712,,,,,,,,,,,,,0.800807537,0.776606394,0.82500868,0.301,,24322,0.266385235,0.335614765,76.00711436,,,75.23213576,76.78209295,,,,,,,,,,,,,75.88297,75.08932447,76.67661553,,,,424.877261,843,145869,394.4457498,455.3087721,,,,,,,,,,,,,426.4339202,395.412485,457.4553554,,,,71.41679943,39,54609,50.78432582,97.62911583,,,,,,,,,,,,,72.6701365,51.1664825,100.1662106,,,,7.953723789,33,4149,5.474977482,11.16998536,,,,,,,,,,,,,8.014024543,5.481586855,11.31341149,,,,,,,0.123,,,0.104,0.143,0.182,,,0.155,0.209,0.102,,,0.086,0.12,47.5,21,44206,,,0.111,5860,,,,0.015133461,804.1769714,53139,,,25.1316269,40,159162,17.95440271,34.22214283,,,,,,,,,,,,,25.7152465,18.28605409,35.15358851,,,,0.366,,,0.348,0.384,0.100441766,2933,29201,0.084952404,0.115931127,0.073085558,879,12027,0.05044726,0.095723855,0.000900711,47,52181,,,1110.234043,0.896195652,535.925,598,,,,,,,,3.331870762,,,,,,,,,3.353360373,3.131875892,,,,,,,,,3.143749165,0.042938335,,,,,3102.5052,,,,,0.764524034,40558,53050,0.701800865,0.827247203,62037,,,54979.80851,69094.19149,,,,,,,56346,55839.61702,56852.38298,42774,18959.70213,66588.29787,63593,60277.08511,66908.91489,,,,,,,,,,,83.17697271,,,,,0.31173332,,62037,,,7.536827681,22,2919,,,,,,,,,,,,,,,,,,,,,,,,,,12.32818813,35,266535,8.432471556,17.40372325,13.13148367,,,,,,,,,,,,,12.67313444,8.610779993,17.98850274,,,,8.25407545,22,266535,5.17278514,12.49676943,,,,,,,,,,,,,8.65058706,5.421276855,13.09709277,,,,14.72951259,55,373400,11.09628467,19.17248526,,,,,,,,,,,,,15.41548948,11.61305635,20.06537849,,,,16.36363636,,5500,,,90,,0.642926711,26405,41070,,,0.743,,,,,33.3485432,,,,,0.779079988,15954,20478,0.760302537,0.79785744,0.089302698,1784,19977,0.069622118,0.108983279,0.846860045,17342,20478,0.829129094,0.864590996,52181,,,,,0.221479082,11557,52181,,,0.204748855,10684,52181,,,0.008968782,468,52181,,,0.003162071,165,52181,,,0.007933922,414,52181,,,0.000766563,40,52181,,,0.01872329,977,52181,,,0.94760545,49447,52181,,,0.006320069,314,49683,0.000142435,0.012497704,0.503574098,26277,52181,,,0.633801743,33241,52447,, -39,007,39007,OH,Ashtabula County,2024,1,10455.42399,1968,267457,9707.036618,11203.81136,0,,,,2,,,,2,20316.66819,12576.33782,31056.18548,1,8379.11914,5473.518814,12277.35095,,10536.34581,9738.068488,11334.62313,,,,,2,,0.207,,,0.177,0.24,4.695287448,,,3.851393869,5.603522617,6.453854973,,,5.41797116,7.505840077,0.078452302,588,7495,0.072364899,0.084539704,0,,,,,,,0.242857143,0.171824756,0.31388953,0.075566751,0.049567312,0.101566189,0.074575767,0.068293659,0.080857874,,,,0.095,0.054362483,0.135637517,0.268,,,0.224,0.318,0.454,,,0.392,0.52,6.7,0.099565005,0.146,,,0.314,,,0.266,0.366,0.687662697,67098,97574,,,0.166167234,,,0.134728095,0.201688796,0.34939759,29,83,0.293783666,0.404786059,303.1,295,97337,,,24.23385672,480,19807,22.06586315,26.40185028,,,,,,,24.5398773,12.6801127,42.86622709,30.44654939,22.20792205,40.73987855,23.5905399,21.26408089,25.9169989,,,,25.83423036,16.55247885,38.43928697,0.108501074,8231,75861,0.094203202,0.122798947,0.00028766,28,97337,,,3476.321429,0.000350465,34,97014,,,2853.352941,0.002185252,212,97014,,,457.6132076,4335,,,,,,,5080,3180,4338,0.43,,,,,,,0.41,0.31,0.44,0.46,,,,,,0.59,0.4,0.4,0.46,0.866087033,59469,68664,0.854381563,0.877792502,0.466799557,10538,22575,0.427716332,0.505882782,0.044070084,1894,42977,,,0.225,4638,,0.160659575,0.289340426,,,,,,,0.124548737,0.005751587,0.243345886,0.422569028,0.350200191,0.494937865,0.219568746,0.178469574,0.260667918,4.598206718,103078,22417,4.240624055,4.955789381,0.268301834,5721,21323,0.232970667,0.303633,12.22556685,119,97337,,,107.1154688,521,486391,97.9175536,116.3133841,,,,,,,125.0595522,77.41383387,191.16681,91.54155987,55.91596295,141.3785148,110.2197708,100.3387543,120.1007874,,,,8.3,,,,,1,,,,,0.147093099,5680,38615,0.129703443,0.164482754,0.122263255,0.105987292,0.138539218,0.019293021,0.012951428,0.025634613,0.019293021,0.012893517,0.025692525,0.817726406,33463,40922,0.802174723,0.83327809,,,,,,,,,,0.779983457,0.592017628,0.967949287,0.810917473,0.795696244,0.826138702,0.351,,40922,0.320716475,0.381283525,74.24659627,,,73.6855238,74.80766874,,,,,,,66.63524911,61.39593417,71.87456406,79.77473784,74.19114656,85.35832913,74.1444074,73.55386142,74.73495338,,,,517.7042504,1968,267457,493.2386244,542.1698764,,,,,,,841.1335902,656.9323125,1060.975572,382.6320901,259.9799412,543.1157093,521.4261467,495.5952625,547.2570308,,,,71.57049159,67,93614,55.46614793,90.89199439,,,,,,,,,,,,,68.85296068,51.72446317,89.83817819,,,,6.311637081,48,7605,4.653702935,8.36831508,,,,,,,,,,,,,5.885815185,4.204912661,8.014809736,,,,,,,0.145,,,0.125,0.166,0.19,,,0.166,0.217,0.12,,,0.104,0.139,150.4,124,82473,,,0.146,14280,,,,0.099565005,10105.5493,101497,,,40.19361643,117,291091,32.91045017,47.47678269,,,,,,,,,,,,,40.92047916,33.13036451,48.7105938,,,,0.392,,,0.376,0.407,0.119901316,6561,54720,0.103220465,0.136582167,0.078868043,1753,22227,0.055038256,0.102697831,0.000628775,61,97014,,,1590.393443,0.849317954,846.77,997,,,0.094769096,433,4569,0.0512648,0.138273392,2.951812276,,,,,,,2.209057703,2.420827173,3.055208787,2.872122458,,,,,,,2.096660321,2.433934348,2.972644505,0.110633104,,,,,-1151.218729,,,,,0.754925002,39509,52335,0.70618587,0.803664134,52468,,,49186.6383,55749.3617,,,,103958,35979.95745,171936.0426,29196,18295.06383,40096.93617,39153,31508.40426,46797.59575,55883,53309.38298,58456.61702,,,,,,,,,,,63.41278154,,,,,0.368586567,,52468,,,8.996041742,50,5558,,,9.220582682,63,683254,7.085348903,11.79713068,,,,,,,,,,,,,9.829410579,7.500875792,12.65239984,,,,20.95683166,107,486391,16.79610025,25.11756307,21.99876231,,,,,,,,,,,,,22.32160497,17.72722575,26.91598419,,,,16.03648094,78,486391,12.67617271,20.01425398,,,,,,,,,,,,,17.0633118,13.39836982,21.42142541,,,,16.09943008,110,683254,13.09079004,19.10807012,,,,,,,,,,,,,17.36529202,14.05942615,20.6711579,,,,17,,10000,,,170,,0.585348714,44147,75420,,,0.622,,,,,31.15233112,,,,,0.733559885,28278,38549,0.719345926,0.747773844,0.125899474,4689,37244,0.110216923,0.141582025,0.842434304,32475,38549,0.824081045,0.860787564,97014,,,,,0.216587297,21012,97014,,,0.203970561,19788,97014,,,0.036860659,3576,97014,,,0.003597419,349,97014,,,0.005009586,486,97014,,,0.000536005,52,97014,,,0.050291711,4879,97014,,,0.881223329,85491,97014,,,0.005683975,524,92189,0.003319834,0.008048117,0.487187416,47264,97014,,,0.519872097,50726,97574,, -39,009,39009,OH,Athens County,2024,1,9049.095278,875,182974,8128.883301,9969.307255,0,,,,2,,,,2,,,,2,,,,2,9570.278724,8562.41227,10578.14518,,,,,2,,0.184,,,0.155,0.216,4.206574884,,,3.440438414,5.048452884,6.185125934,,,5.312093734,7.100400132,0.083357537,287,3443,0.074124173,0.092590902,0,,,,,,,,,,,,,0.084156838,0.074441586,0.09387209,,,,,,,0.21,,,0.169,0.255,0.384,,,0.331,0.436,6.4,0.109797037,0.156,,,0.29,,,0.243,0.337,0.694014192,43328,62431,,,0.1951835,,,0.161098468,0.230538054,0.266666667,12,45,0.18890768,0.348120786,402.9,250,62056,,,7.782101167,232,29812,6.780698022,8.783504313,,,,,,,,,,,,,8.317536462,7.205723956,9.429348968,,,,,,,0.097939064,4391,44834,0.082449702,0.113428426,0.000628465,39,62056,,,1591.179487,0.000237373,14,58979,,,4212.785714,0.006883806,406,58979,,,145.2684729,2638,,,,,,,,,2681,0.42,,,,,,,0.5,,0.42,0.46,,,,,,0.45,0.38,,0.46,0.917333407,33135,36121,0.904473397,0.930193417,0.695886668,9677,13906,0.639577201,0.752196134,0.047954111,1254,26150,,,0.227,1966,,0.147170213,0.306829787,,,,,,,0.276836158,0.060455689,0.493216628,0.072796935,0,0.319559251,0.183761224,0.142221044,0.225301405,5.928717715,104215,17578,5.156190967,6.701244464,0.217241762,1958,9013,0.16330581,0.271177714,7.734949078,48,62056,,,72.86052896,237,325279,63.58424108,82.13681685,,,,,,,,,,,,,78.58424815,68.4059813,88.76251499,,,,6.4,,,,,1,,,,,0.192768412,4345,22540,0.170428402,0.215108421,0.175486827,0.15383717,0.197136485,0.016193434,0.008838139,0.023548729,0.012866016,0.006480036,0.019251996,0.686074101,18795,27395,0.666678371,0.705469832,,,,,,,0.517421603,0.39986876,0.634974446,0.400442478,0.229518839,0.571366117,0.707496054,0.68041457,0.734577538,0.24,,27395,0.212882163,0.267117837,75.80530883,,,75.06077247,76.54984519,,,,83.78780423,73.76941774,93.80619072,76.61191192,72.6213527,80.60247115,,,,75.33819711,74.55241214,76.12398207,,,,442.4665087,875,182974,411.5916995,473.341318,,,,,,,,,,,,,459.0381319,426.1884022,491.8878616,,,,33.0131581,21,63611,20.43566519,50.464119,,,,,,,,,,,,,37.57313342,23.25836178,57.43452566,,,,6.876790831,24,3490,4.406089643,10.23211965,,,,,,,,,,,,,7.250945776,4.596477628,10.87997885,,,,,,,0.132,,,0.113,0.153,0.186,,,0.16,0.211,0.113,,,0.097,0.13,98.5,55,55841,,,0.156,9800,,,,0.109797037,7110.126738,64757,,,30.07300481,58,192864,22.83569338,38.87633241,,,,,,,,,,,,,31.77023764,23.93369088,41.35333124,,,,0.375,,,0.357,0.391,0.10975068,3953,36018,0.09187834,0.127623021,0.051576239,481,9326,0.036086877,0.0670656,0.001254684,74,58979,,,797.0135135,0.896110057,472.25,527,,,0.033223543,232,6983,0.015108429,0.051338656,3.123013985,,,,,,,,,3.109304431,2.845052467,,,,,,,,,2.8542298,0.072657975,,,,,-1044.80912,,,,,0.82353397,42510,51619,0.736310513,0.910757427,48265,,,42768.65957,53761.34043,,,,,,,38491,18066.48936,58915.51064,92083,35828.02128,148337.9787,49549,44674.61702,54423.38298,,,,,,,,,,,46.30317791,,,,,0.400683725,,48265,,,11.30179992,27,2389,,,2.186504457,10,457351,1.048513876,4.021059546,,,,,,,,,,,,,2.441036757,1.170572007,4.489153508,,,,13.28460409,40,325279,9.304373384,18.3914917,12.29713569,,,,,,,,,,,,,13.45521234,9.261949057,18.89612071,,,,9.222851767,30,325279,6.222619358,13.16619437,,,,,,,,,,,,,9.951717014,6.664821071,14.29232566,,,,10.93252229,50,457351,8.114328762,14.41316771,,,,,,,,,,,,,11.96108011,8.848872912,15.81318223,,,,30.90909091,,4400,,,136,,0.477402217,26059,54585,,,0.598,,,,,70.58990652,,,,,0.606589319,13698,22582,0.592891769,0.620286869,0.190273357,4065,21364,0.163717815,0.216828899,0.829997343,18743,22582,0.794879873,0.865114813,58979,,,,,0.150172095,8857,58979,,,0.157395005,9283,58979,,,0.026382272,1556,58979,,,0.003882738,229,58979,,,0.027874328,1644,58979,,,0.000644297,38,58979,,,0.020634463,1217,58979,,,0.898692755,53004,58979,,,0.006602733,389,58915,0.002156633,0.011048833,0.499262449,29446,58979,,,0.486969615,30402,62431,, -39,011,39011,OH,Auglaize County,2024,1,6986.387051,635,126374,6105.279191,7867.494912,0,,,,2,,,,2,,,,2,,,,2,7018.962874,6120.313423,7917.612325,,,,,2,,0.145,,,0.12,0.17,3.533086579,,,2.827499986,4.325716216,5.095954143,,,4.195122445,6.071332391,0.065983176,251,3804,0.058094034,0.073872318,0,,,,,,,,,,,,,0.065163596,0.057142112,0.073185081,,,,,,,0.188,,,0.149,0.228,0.373,,,0.308,0.439,8.8,0.021704784,0.089,,,0.254,,,0.207,0.3,0.763129551,35426,46422,,,0.182744252,,,0.149513238,0.219517158,0.153846154,4,26,0.064169884,0.268836156,223.2,103,46141,,,17.91826052,178,9934,15.28592092,20.55060012,,,,,,,,,,,,,18.3103116,15.56587153,21.05475166,,,,,,,0.065014069,2426,37315,0.055482155,0.074545984,0.000346763,16,46141,,,2883.8125,0.000326456,15,45948,,,3063.2,0.000674676,31,45948,,,1482.193548,3411,,,,,,,,,3387,0.44,,,,,,0.54,0.55,,0.44,0.46,,,,,,0.83,0.4,,0.46,0.934192156,29442,31516,0.922391974,0.945992339,0.653431969,6978,10679,0.600298697,0.706565241,0.030875,741,24000,,,0.105,1130,,0.072829787,0.137170213,,,,,,,,,,0.046391753,0,0.287648684,0.06559679,0.043017074,0.088176507,3.476386929,128084,36844,3.13816414,3.814609717,0.166955096,1833,10979,0.123395434,0.210514758,14.73743525,68,46141,,,59.37334922,136,229059,49.39455275,69.3521457,,,,,,,,,,,,,61.16654646,50.80993622,71.52315671,,,,9.4,,,,,0,,,,,0.085,1615,19000,0.071568872,0.098431128,0.064061669,0.050627029,0.077496309,0.013157895,0.007463298,0.018852491,0.012894737,0.006782008,0.019007466,0.858439355,20242,23580,0.835893356,0.880985354,,,,,,,,,,,,,0.836433463,0.805892599,0.866974327,0.174,,23580,0.151361702,0.196638298,77.23188928,,,76.4982421,77.96553647,,,,,,,,,,,,,77.14218789,76.39753344,77.88684234,,,,365.4852361,635,126374,335.4514162,395.5190561,,,,,,,,,,,,,368.6188439,337.8867698,399.350918,,,,56.18445147,27,48056,37.02590755,81.7454271,,,,,,,,,,,,,53.66726297,34.38562803,79.85263326,,,,6.209573092,24,3865,3.978590648,9.239352547,,,,,,,,,,,,,5.957216355,3.733355774,9.019297153,,,,,,,0.11,,,0.094,0.126,0.167,,,0.145,0.193,0.099,,,0.084,0.114,46.9,18,38388,,,0.089,4140,,,,0.021704784,997.3131332,45949,,,11.63831041,16,137477,6.652299987,18.89988696,,,,,,,,,,,,,12.18462757,6.964567449,19.7870718,,,,0.357,,,0.341,0.373,0.07293885,1918,26296,0.061023956,0.084853744,0.046996711,543,11554,0.032698839,0.061294583,0.000783494,36,45948,,,1276.333333,0.935323102,578.965,619,,,,,,,,3.36376337,,,,,,,,,3.381779408,3.325851567,,,,,,,,,3.349757516,0.040907259,,,,,3820.159983,,,,,0.712174357,44669,62722,0.668844434,0.755504279,71669,,,66049.93617,77288.06383,71250,41902.42553,100597.5745,88964,55639.23404,122288.766,,,,62784,27233.53192,98334.46809,75731,72111.25532,79350.74468,,,,,,,,,,,70.26952771,,,,,0.352523406,,71669,,,6.606397775,19,2876,,,,,,,,,,,,,,,,,,,,,,,,,,12.1290954,26,229059,7.849311024,17.90493749,11.35078735,,,,,,,,,,,,,12.67575041,8.203077322,18.71190812,,,,9.604512375,22,229059,6.019096771,14.54134716,,,,,,,,,,,,,10.04226882,6.293436406,15.20411568,,,,11.22093078,36,320829,7.859001966,15.53449797,,,,,,,,,,,,,11.39152341,7.934613438,15.84285145,,,,28.62745098,,5100,,,146,,0.74715942,25777,34500,,,0.768,,,,,29.37144371,,,,,0.772881536,14575,18858,0.750198323,0.795564749,0.062958336,1159,18409,0.049177158,0.076739513,0.873157281,16466,18858,0.851308165,0.895006396,45948,,,,,0.236658832,10874,45948,,,0.196461217,9027,45948,,,0.006681466,307,45948,,,0.00274223,126,45948,,,0.006093845,280,45948,,,0.00128406,59,45948,,,0.019543832,898,45948,,,0.95259859,43770,45948,,,0.001979514,86,43445,0,0.005198563,0.496844259,22829,45948,,,0.387057861,17968,46422,, -39,013,39013,OH,Belmont County,2024,1,9976.19444,1386,181447,9087.234312,10865.15457,0,,,,2,,,,2,7476.657158,4685.581235,11319.74879,1,,,,2,10261.19042,9317.496962,11204.88388,,,,,2,,0.173,,,0.146,0.203,3.855708659,,,3.169321201,4.63721066,5.284928204,,,4.488250701,6.174576068,0.085621219,368,4298,0.077256013,0.093986425,0,,,,,,,,,,,,,0.08358209,0.075026569,0.09213761,,,,0.081300813,0.03300187,0.129599756,0.222,,,0.179,0.265,0.386,,,0.335,0.443,7.6,0.069086881,0.122,,,0.292,,,0.248,0.341,0.571349083,37993,66497,,,0.164182288,,,0.136185373,0.196668214,0.418604651,18,43,0.342807719,0.491149995,191.3,126,65849,,,22.1149627,252,11395,19.38446376,24.84546164,,,,,,,,,,,,,21.74329502,18.91471479,24.57187525,,,,31.53153153,17.2385817,52.90455208,0.080229285,3933,49022,0.069505881,0.090952689,0.000273353,18,65849,,,3658.277778,0.000473217,31,65509,,,2113.193548,0.002488208,163,65509,,,401.8957055,3573,,,,,,,4089,,3543,0.46,,,,,,,0.33,,0.46,0.42,,,,,,,0.33,,0.42,0.914773425,44694,48858,0.902921595,0.926625255,0.548177243,8932,16294,0.503169576,0.593184911,0.051541461,1401,27182,,,0.226,2705,,0.158085106,0.293914894,,,,0.666666667,0.165940804,1,0.455445545,0.077254223,0.833636867,0.404958678,0.122758393,0.687158962,0.189976264,0.147866442,0.232086086,4.184272618,108176,25853,3.8886616,4.479883637,0.232580882,2854,12271,0.188036874,0.27712489,13.21204574,87,65849,,,91.22968644,305,334321,80.99104501,101.4683279,,,,,,,94.27804772,50.19908979,161.2183329,,,,92.45221417,81.73725867,103.1671697,,,,8.7,,,,,0,,,,,0.071400854,1840,25770,0.059389026,0.083412682,0.06065606,0.048884253,0.072427866,0.005044626,0.00211495,0.007974301,0.00717889,0.002884997,0.011472783,0.867070132,24356,28090,0.852500078,0.881640185,,,,,,,,,,,,,0.859184901,0.848507036,0.869862766,0.311,,28090,0.281765988,0.340234012,74.55929449,,,73.892015,75.22657399,,,,,,,74.00132764,71.15110781,76.85154747,,,,74.30576681,73.60719585,75.00433776,,,,504.9835295,1386,181447,476.2679836,533.6990754,,,,,,,518.1197041,354.393494,731.4304295,,,,514.3565759,484.3769533,544.3361984,,,,50.64206909,28,55290,33.65128713,73.19188993,,,,,,,,,,,,,50.09216959,32.417011,73.9459239,,,,7.496592458,33,4402,5.160309308,10.52800301,,,,,,,,,,,,,6.572541383,4.331346186,9.56270264,,,,,,,0.121,,,0.105,0.14,0.178,,,0.154,0.203,0.109,,,0.094,0.126,164.5,94,57156,,,0.122,8170,,,,0.069086881,4863.716435,70400,,,33.70441729,67,198787,26.12046046,42.80341855,,,,,,,,,,,,,33.75380411,25.87884806,43.27085352,,,,0.41,,,0.393,0.425,0.090072679,3309,36737,0.076966296,0.103179062,0.051705426,667,12900,0.036216065,0.067194788,0.001312797,86,65509,,,761.7325581,0.889384615,578.1,650,,,0.15719468,520,3308,0.056947395,0.257441964,3.258685346,,,,,,,,,3.266415854,3.088405854,,,,,,,,,3.118334982,0.073392147,,,,,-483.809,,,,,0.699351118,38800,55480,0.627930387,0.770771848,55573,,,50436.48936,60709.51064,,,,112949,61214.53192,164683.4681,50868,32021.02128,69714.97872,59960,4124.425532,115795.5745,57277,54382.87234,60171.12766,,,,,,,,,,,67.04173688,,,,,0.454627247,,55573,,,10.62168073,34,3201,,,2.965171938,14,472148,1.621087091,4.97505467,,,,,,,,,,,,,2.971537245,1.582218433,5.081419188,,,,18.26207464,63,334321,13.83151699,23.6606359,18.84416474,,,,,,,,,,,,,18.93317757,14.2231857,24.70368976,,,,14.05834512,47,334321,10.32954321,18.69461875,,,,,,,,,,,,,14.86993654,10.88666245,19.83441153,,,,9.5309098,45,472148,6.951911009,12.75310718,,,,,,,,,,,,,9.600351099,6.919088637,12.97688573,,,,25.86206897,,5800,,,150,,0.606729623,33088,54535,,,0.642,,,,,56.43533798,,,,,0.745245245,19357,25974,0.728913782,0.761576709,0.076496041,1874,24498,0.061454038,0.091538043,0.816701317,21213,25974,0.79813516,0.835267473,65509,,,,,0.18670717,12231,65509,,,0.220702499,14458,65509,,,0.04490986,2942,65509,,,0.002305027,151,65509,,,0.005434368,356,65509,,,0.000274771,18,65509,,,0.013005847,852,65509,,,0.91694271,60068,65509,,,0.001764391,112,63478,0,0.004013439,0.481643744,31552,65509,,,0.615095418,40902,66497,, -39,015,39015,OH,Brown County,2024,1,11201.60586,924,120409,10036.46631,12366.74541,0,,,,2,,,,2,,,,2,,,,2,11307.1818,10116.76378,12497.59981,,,,,2,,0.189,,,0.157,0.221,4.400532385,,,3.552557136,5.305972693,5.78898343,,,4.770701282,6.795601165,0.078621908,267,3396,0.069569524,0.087674292,0,,,,,,,,,,,,,0.079283111,0.070053581,0.08851264,,,,,,,0.243,,,0.196,0.289,0.43,,,0.361,0.498,7.6,0.027618253,0.14,,,0.299,,,0.247,0.353,0.398525506,17406,43676,,,0.174042629,,,0.140695065,0.210411974,0.242424242,8,33,0.152046161,0.340132436,222.2,97,43662,,,24.80061182,227,9153,21.57430596,28.02691769,,,,,,,,,,,,,25.27736475,21.94469922,28.61003028,,,,,,,0.091220812,3219,35288,0.078114429,0.104327195,0.000251935,11,43662,,,3969.272727,0.000160256,7,43680,,,6240,0.004258242,186,43680,,,234.8387097,4216,,,,,,,4372,,4173,0.37,,,,,,,,,0.37,0.42,,,,,,,0.21,,0.42,0.874766355,26676,30495,0.855847235,0.893685475,0.503845779,5175,10271,0.444869963,0.562821596,0.045063499,880,19528,,,0.218,2107,,0.152468085,0.283531915,,,,,,,0.325581395,0.011439527,0.639723264,0.673819743,0.270207715,1,0.178179049,0.132346884,0.224011215,5.028360989,118790,23624,4.32916371,5.727558268,0.214758372,2142,9974,0.154539419,0.274977325,6.183866978,27,43662,,,118.0599579,257,217686,103.6257774,132.4941385,,,,,,,,,,,,,120.830627,105.9413764,135.7198776,,,,9,,,,,1,,,,,0.118192027,2105,17810,0.096206568,0.140177486,0.098189021,0.077201118,0.119176924,0.015440764,0.007112944,0.023768583,0.005895564,0.001675339,0.01011579,0.7875,14805,18800,0.748272227,0.826727774,,,,,,,,,,,,,0.782370625,0.722801347,0.841939903,0.57,,18800,0.520499388,0.619500612,73.42320367,,,72.57178438,74.27462295,,,,,,,,,,,,,73.28617503,72.42206774,74.15028231,,,,553.8307916,924,120409,515.9963343,591.6652489,,,,,,,,,,,,,558.0488287,519.4667391,596.6309184,,,,60.04341601,26,43302,39.22235281,87.97751624,,,,,,,,,,,,,58.87981159,37.72540628,87.60849242,,,,7.662835249,26,3393,5.005618395,11.22782908,,,,,,,,,,,,,7.587253414,4.910070364,11.20028276,,,,,,,0.135,,,0.115,0.155,0.187,,,0.161,0.213,0.11,,,0.094,0.128,78.9,29,36742,,,0.14,6140,,,,0.027618253,1238.568151,44846,,,50.57161247,66,130508,39.11208142,64.33949064,,,,,,,,,,,,,51.84653426,40.01406056,66.08266397,,,,0.382,,,0.363,0.399,0.104250893,2656,25477,0.087570042,0.120931744,0.058035714,598,10304,0.040163374,0.075908055,0.000618132,27,43680,,,1617.777778,0.883189964,492.82,558,,,0.072562358,160,2205,0.027974271,0.117150446,3.029067275,,,,,,,,,3.039548421,3.071256758,,,,,,,,,3.084762024,0.048520814,,,,,-1254.91686,,,,,0.742448331,44365,59755,0.668560516,0.816336145,64034,,,56988.7234,71079.2766,,,,,,,50250,2949.06383,97550.93617,,,,67785,63568.31915,72001.68085,,,,,,,,,,,49.32173636,,,,,0.24355811,,64034,,,6.267136702,16,2553,,,,,,,,,,,,,,,,,,,,,,,,,,17.07917487,37,217686,11.82782509,23.86643499,16.99695892,,,,,,,,,,,,,17.69400895,12.25361557,24.725604,,,,14.70007258,32,217686,10.05483876,20.75211639,,,,,,,,,,,,,15.28292515,10.45350949,21.57493031,,,,17.36088364,53,305284,13.00449317,22.70846324,,,,,,,,,,,,,17.68773662,13.21004772,23.19511333,,,,19.78723404,,4700,,,93,,0.629825347,21096,33495,,,0.66,,,,,12.17930405,,,,,0.745783701,12647,16958,0.71800598,0.773561422,0.092410269,1483,16048,0.068206953,0.116613586,0.813126548,13789,16958,0.781093993,0.845159103,43680,,,,,0.225732601,9860,43680,,,0.192376374,8403,43680,,,0.009684066,423,43680,,,0.003319597,145,43680,,,0.003846154,168,43680,,,0.000320513,14,43680,,,0.013072344,571,43680,,,0.958173077,41853,43680,,,0.000509622,21,41207,0,0.003438586,0.501900183,21923,43680,,,0.957963183,41840,43676,, -39,017,39017,OH,Butler County,2024,1,9354.128097,5907,1088824,9001.050728,9707.205467,0,,,,2,3684.496325,2734.70419,4857.54907,,10909.87412,9679.775894,12139.97235,,5677.328812,4508.618574,7056.401337,,9749.738889,9339.224552,10160.25323,,,,,2,,0.159,,,0.134,0.186,3.776926882,,,3.069567783,4.597404901,5.199644833,,,4.37845491,6.130246933,0.078709426,2420,30746,0.075699377,0.081719474,0,,,,0.087014726,0.072722198,0.101307253,0.118477948,0.107723471,0.129232424,0.066481995,0.057915669,0.07504832,0.072341016,0.068886754,0.075795279,0.122807018,0.062556218,0.183057817,0.10546875,0.083744984,0.127192516,0.181,,,0.144,0.221,0.44,,,0.387,0.501,7.8,0.094298961,0.1,,,0.273,,,0.23,0.322,0.865223373,337746,390357,,,0.18457626,,,0.154026096,0.220317236,0.29787234,42,141,0.255037954,0.341406616,365.4,1426,390234,,,15.13068723,1574,104027,14.38318522,15.87818923,,,,,,,17.47712553,14.84987422,20.10437683,43.53176434,38.45988255,48.60364614,12.84772083,12.05575475,13.63968692,,,,21.84466019,17.56568644,26.85079607,0.07912022,25332,320171,0.069588305,0.088652135,0.000520201,203,390234,,,1922.334975,0.00052263,203,388420,,,1913.399015,0.002824262,1097,388420,,,354.0747493,3475,,,,,,,4903,,3446,0.45,,,,,,0.27,0.41,0.17,0.46,0.52,,,,,,0.52,0.41,0.33,0.53,0.912108634,228309,250309,0.906285928,0.917931339,0.640580395,59688,93178,0.616165515,0.664995274,0.035484378,7006,197439,,,0.139,12281,,0.108021277,0.169978723,0.319148936,0.063703186,0.574594687,0.077360022,0.020970508,0.133749535,0.219189923,0.170494253,0.267885594,0.285223368,0.214844637,0.355602098,0.108316196,0.093116842,0.123515551,4.493946879,147370,32793,4.267932106,4.719961652,0.223932495,20222,90304,0.202254794,0.245610195,7.995202878,312,390234,,,97.71081968,1878,1921998,93.29154563,102.1300937,,,,32.64861924,20.91858639,48.57855747,95.82510144,81.06878868,110.5814142,38.33879057,26.99404668,52.84497259,107.5480607,102.357093,112.7390285,,,,12,,,,,0,,,,,0.121433901,17090,140735,0.111480749,0.131387052,0.105466493,0.096924942,0.114008045,0.015028245,0.011935411,0.018121078,0.007460831,0.005282646,0.009639015,0.791277054,144450,182553,0.783577011,0.798977097,,,,0.675048356,0.595060947,0.755035764,0.754409509,0.70396483,0.804854188,0.699410922,0.633559063,0.765262781,0.786734991,0.776942639,0.796527343,0.361,,182553,0.345695042,0.376304958,75.72430325,,,75.43468653,76.01391996,,,,84.56812663,82.41275362,86.72349964,73.60510793,72.57345169,74.63676417,107.0632519,83.79052364,130.3359801,75.34817483,75.02617899,75.67017067,,,,451.7838507,5907,1088824,439.8483313,463.7193701,,,,199.4715357,158.645632,247.596771,516.7548001,471.7518623,561.7577378,188.9507422,148.366973,237.2103538,469.934575,456.4604001,483.4087499,,,,51.77292156,215,415275,44.85238903,58.69345409,,,,,,,107.3336911,78.58175189,143.1681026,70.82754908,45.83585531,104.5554345,44.57388373,36.99839377,52.14937368,,,,7.151601057,222,31042,6.210832347,8.092369766,,,,,,,16.53868872,12.49314772,21.47686297,10.01001001,6.753711719,14.28991171,5.530036124,4.556676792,6.503395456,,,,,,,0.111,,,0.095,0.129,0.165,,,0.144,0.188,0.108,,,0.094,0.124,155.8,509,326624,,,0.1,38870,,,,0.094298961,34714.27649,368130,,,49.86988963,578,1159016,45.80423429,53.93554497,,,,,,,41.99956091,30.51694526,56.38245018,18.36271368,9.166600506,32.85596707,56.84825009,51.96673866,61.72976152,,,,0.344,,,0.328,0.359,0.09023172,20720,229631,0.078316826,0.102146613,0.051998949,4949,95175,0.038892566,0.065105332,0.000911385,354,388420,,,1097.231638,0.881819709,3937.325,4465,,,0.052953322,1308,24701,0.03498647,0.070920173,3.144864531,,,,,,3.326192668,2.759138708,2.665497059,3.278415786,3.038216519,,,,,,3.568746292,2.593240128,2.542750607,3.177747739,0.10238469,,,,,392.2404,,,,,0.767692811,49302,64221,0.72717442,0.808211201,74841,,,71346.3617,78335.6383,,,,89574,70582.85106,108565.1489,59001,52997.08511,65004.91489,57359,50913.04255,63804.95745,81030,78573.14894,83486.85106,,,,,,,,,,,44.84314466,,,,,0.337582341,,74841,,,6.499133449,150,23080,,,4.7834588,128,2675888,3.954766842,5.612150757,,,,,,,24.78584163,18.7725544,32.11293273,,,,2.834621227,2.168260633,3.641189552,,,,12.79242589,245,1921998,11.14799973,14.43685206,12.74715166,,,,,,,,,,,,,14.42601829,12.47387044,16.37816614,,,,11.70656785,225,1921998,10.17690965,13.23622605,,,,,,,26.61808374,19.41541293,35.61709029,,,,10.82654826,9.179554161,12.47354236,,,,9.155839108,245,2675888,8.009346705,10.30233151,,,,,,,10.87098317,7.035127124,16.04771566,8.413323645,4.199900851,15.05376,9.526186092,8.222124206,10.83024798,,,,17.77777778,,41400,,,736,,0.665586684,186737,280560,,,0.721,,,,,75.27454531,,,,,0.694934134,100443,144536,0.684052738,0.70581553,0.107599006,15063,139992,0.098787568,0.116410443,0.90286849,130497,144536,0.893412987,0.912323992,388420,,,,,0.230876371,89677,388420,,,0.162365481,63066,388420,,,0.096622213,37530,388420,,,0.003243911,1260,388420,,,0.046828176,18189,388420,,,0.001943772,755,388420,,,0.05655476,21967,388420,,,0.77215128,299919,388420,,,0.020675566,7560,365649,0.017449996,0.023901136,0.505115597,196197,388420,,,0.096106897,37516,390357,, -39,019,39019,OH,Carroll County,2024,1,9100.923269,513,73200,7691.269342,10510.5772,0,,,,2,,,,2,,,,2,,,,2,9252.641979,7797.875877,10707.40808,,,,,2,,0.171,,,0.144,0.202,3.909464856,,,3.121090379,4.807288596,5.098321193,,,4.166642724,6.149921373,0.079462787,142,1787,0.066922821,0.092002753,0,,,,,,,,,,,,,0.077636153,0.065011518,0.090260788,,,,,,,0.225,,,0.18,0.275,0.383,,,0.313,0.46,7.9,0.019024164,0.129,,,0.279,,,0.23,0.333,0.360764941,9640,26721,,,0.167702074,,,0.135496224,0.205183103,0.428571429,9,21,0.316583454,0.532224752,183.6,49,26691,,,20.71896582,117,5647,16.96464645,24.4732852,,,,,,,,,,,,,19.93980436,16.14382335,23.73578538,,,,,,,0.09071618,1881,20735,0.077609797,0.103822563,0.000262261,7,26691,,,3813,0.000337597,9,26659,,,2962.111111,0.000525151,14,26659,,,1904.214286,2855,,,,,,,,,2900,0.39,,,,,,,,,0.39,0.4,,,,,,,,,0.4,0.888628676,17075,19215,0.86089237,0.916364981,0.470744681,2655,5640,0.401540314,0.539949048,0.04305688,542,12588,,,0.175,938,,0.108276596,0.241723404,,,,,,,,,,,,,0.206938039,0.140009913,0.273866165,3.99033764,110265,27633,3.431164986,4.549510293,0.24265645,1330,5481,0.167503421,0.317809479,13.86235061,37,26691,,,94.83729477,128,134968,78.40757168,111.2670179,,,,,,,,,,,,,97.99760793,80.95368013,115.0415357,,,,9.1,,,,,0,,,,,0.090828534,1025,11285,0.069199368,0.112457699,0.069244604,0.048855573,0.089633635,0.015507311,0.004453205,0.026561417,0.007443509,0.001429015,0.013458003,0.777480124,8997,11572,0.737182287,0.817777962,,,,,,,,,,,,,0.704990077,0.65008798,0.759892173,0.455,,11572,0.396690015,0.513309985,75.63371561,,,74.56057972,76.7068515,,,,,,,,,,,,,75.4129757,74.32076952,76.50518188,,,,450.413906,513,73200,407.6137635,493.2140485,,,,,,,,,,,,,457.3392726,413.4090051,501.2695401,,,,52.67849907,13,24678,28.04908214,90.08183774,,,,,,,,,,,,,56.10703496,29.87463311,95.94473853,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.123,,,0.105,0.143,0.178,,,0.154,0.206,0.104,,,0.089,0.122,48.1,11,22881,,,0.129,3470,,,,0.019024164,548.5807936,28836,,,17.39087228,14,80502,9.507751703,29.17892863,,,,,,,,,,,,,16.81911687,8.955471377,28.76120207,,,,0.371,,,0.352,0.389,0.099100873,1510,15237,0.083611511,0.114590235,0.067817084,393,5795,0.046370275,0.089263892,0.000225065,6,26659,,,4443.166667,0.9347,233.675,250,,,,,,,,3.263572073,,,,,,,,,3.258296965,3.249721552,,,,,,,,,3.267110117,0.056431482,,,,,1753.088133,,,,,0.744943562,42172,56611,0.633979009,0.855908115,62482,,,55721.48936,69242.51064,,,,,,,39202,22456.80851,55947.19149,,,,60458,56483.19149,64432.80851,,,,,,,,,,,51.27934685,,,,,0.30951314,,62482,,,6.006006006,8,1332,,,,,,,,,,,,,,,,,,,,,,,,,,16.22646311,23,134968,9.911545216,25.06045622,17.0410764,,,,,,,,,,,,,15.95310971,9.604814173,24.91275696,,,,13.33649458,18,134968,7.904051909,21.07741114,,,,,,,,,,,,,13.88942475,8.23175337,21.95127919,,,,18.3777199,35,190448,12.80075527,25.5589596,,,,,,,,,,,,,19.124638,13.32101109,26.59774186,,,,19.62962963,,2700,,,53,,0.658115305,14212,21595,,,0.638,,,,,1.587566244,,,,,0.765741964,8695,11355,0.734431374,0.797052554,0.067888536,726,10694,0.047188549,0.088588523,0.761426684,8646,11355,0.727273,0.795580369,26659,,,,,0.205971717,5491,26659,,,0.225514836,6012,26659,,,0.00667692,178,26659,,,0.003638546,97,26659,,,0.003601035,96,26659,,,0.000150043,4,26659,,,0.014291609,381,26659,,,0.957725346,25532,26659,,,0.005743509,146,25420,0,0.011995619,0.491728872,13109,26659,,,1,26721,26721,, -39,021,39021,OH,Champaign County,2024,1,8722.415737,636,107398,7625.544472,9819.287001,0,,,,2,,,,2,26769.46955,12240.70609,50816.79175,1,,,,2,8592.023903,7473.867817,9710.179989,,,,,2,,0.163,,,0.137,0.191,3.891145641,,,3.130231958,4.79298994,5.449991485,,,4.435918536,6.551361454,0.078041859,220,2819,0.068139745,0.087943973,0,,,,,,,,,,,,,0.076078728,0.065969017,0.08618844,,,,,,,0.213,,,0.172,0.257,0.404,,,0.33,0.484,8.4,0.012145289,0.11,,,0.268,,,0.22,0.32,0.519062871,20095,38714,,,0.176798405,,,0.141878391,0.215315979,0.181818182,6,33,0.096932784,0.281792641,222.2,86,38699,,,22.01554038,187,8494,18.8600663,25.17101447,,,,,,,,,,,,,20.44248933,17.25490775,23.6300709,,,,53.96825397,31.43849673,86.40840259,0.080417336,2505,31150,0.068502442,0.092332229,0.000155043,6,38699,,,6449.833333,0.000335839,13,38709,,,2977.615385,0.001085019,42,38709,,,921.6428571,3232,,,,,,,,,3242,0.4,,,,,,,0.38,,0.4,0.43,,,,,,,0.35,,0.43,0.913717708,24865,27213,0.900462359,0.926973058,0.553662315,5004,9038,0.493603127,0.613721503,0.037371,717,19186,,,0.141,1166,,0.090957447,0.191042553,,,,,,,0.295597484,0,0.627401733,,,,0.136254662,0.085788648,0.186720676,3.409896453,117563,34477,3.013982945,3.805809961,0.23303247,1988,8531,0.176193932,0.289871008,12.14501667,47,38699,,,89.11186888,173,194138,75.83277101,102.3909667,,,,,,,,,,,,,91.18289077,77.26967707,105.0961045,,,,9.7,,,,,0,,,,,0.075624797,1165,15405,0.059629438,0.091620156,0.056843484,0.042107011,0.071579957,0.012982798,0.006768262,0.019197333,0.006815969,0.002488863,0.011143075,0.79348545,14397,18144,0.769882952,0.817087948,,,,,,,,,,,,,0.7704305,0.729460623,0.811400377,0.395,,18144,0.355375141,0.434624859,75.99719696,,,75.12288038,76.87151353,,,,,,,,,,,,,75.97162303,75.08323298,76.86001309,,,,428.1461704,636,107398,393.0101618,463.282179,,,,,,,813.7720466,489.9439313,1270.805855,,,,428.4185735,392.334444,464.502703,,,,49.95004995,19,38038,30.07319303,78.00319042,,,,,,,,,,,,,49.75561214,28.98447762,79.66355494,,,,7.559395248,21,2778,4.679384804,11.55533864,,,,,,,,,,,,,,,,,,,,,,0.119,,,0.102,0.138,0.176,,,0.152,0.201,0.102,,,0.087,0.119,100.4,33,32885,,,0.11,4260,,,,0.012145289,486.9896382,40097,,,32.60571115,38,116544,23.0737418,44.75388602,,,,,,,,,,,,,29.48330508,20.16655885,41.62162976,,,,0.373,,,0.354,0.39,0.089785325,2041,22732,0.075487452,0.104083197,0.05637448,501,8887,0.039693629,0.073055331,0.000439174,17,38709,,,2277,0.921841155,510.7,554,,,0.087257618,189,2166,0.039595391,0.134919845,3.006985533,,,,,,,,,3.018031428,2.891865666,,,,,,,,,2.90638606,0.040754646,,,,,2140.277,,,,,0.780779766,43897,56222,0.704109207,0.857450325,72784,,,65632.68085,79935.31915,,,,,,,47344,47.82978723,94640.17021,82500,17997.53192,147002.4681,70525,66081.93617,74968.06383,,,,,,,,,,,54.52659562,,,,,0.214277863,,72784,,,9.760858956,20,2049,,,,,,,,,,,,,,,,,,,,,,,,,,15.90371589,32,194138,10.73017033,22.70354333,16.48312026,,,,,,,,,,,,,17.05624699,11.50777822,24.34885314,,,,13.90763272,27,194138,9.165217594,20.23487542,,,,,,,,,,,,,14.92083667,9.832925386,21.70903398,,,,12.13806497,33,271872,8.355285418,17.04635611,,,,,,,,,,,,,12.23256071,8.311431517,17.36314349,,,,34.76190476,,4200,,,146,,0.664073151,19972,30075,,,0.724,,,,,27.48303772,,,,,0.763130925,11914,15612,0.744912459,0.781349391,0.077690802,1191,15330,0.056954865,0.09842674,0.873622854,13639,15612,0.855678945,0.891566764,38709,,,,,0.218631326,8463,38709,,,0.193443385,7488,38709,,,0.020124519,779,38709,,,0.004960087,192,38709,,,0.004701749,182,38709,,,0.000413341,16,38709,,,0.018600326,720,38709,,,0.929783771,35991,38709,,,0.000545732,20,36648,0,0.003537693,0.501304606,19405,38709,,,0.706178643,27339,38714,, -39,023,39023,OH,Clark County,2024,1,12275.88449,2876,369973,11575.24129,12976.52769,0,,,,2,,,,2,20743.33056,17611.03005,23875.63106,,5599.404604,3466.119703,8559.284737,1,11982.31206,11222.3725,12742.25162,,,,,2,,0.181,,,0.154,0.21,4.044959468,,,3.311249722,4.880825853,5.403907617,,,4.52009893,6.327160663,0.092826227,1008,10859,0.087368124,0.09828433,0,,,,,,,0.150592217,0.13020271,0.170981723,0.071038251,0.052428285,0.089648217,0.086728616,0.080707836,0.092749395,,,,0.089171975,0.063433785,0.114910165,0.219,,,0.18,0.263,0.433,,,0.372,0.491,7.2,0.080313504,0.131,,,0.286,,,0.24,0.335,0.849192285,115491,136001,,,0.16043412,,,0.131539593,0.19188029,0.261363636,23,88,0.206578659,0.318315649,468.9,636,135633,,,30.35615727,935,30801,28.41036237,32.30195216,,,,,,,47.30662983,39.38494067,55.228319,42.21635884,32.51174047,53.90934776,26.98151951,24.91832682,29.0447122,,,,43.50453172,34.03961673,54.78675773,0.083125831,8880,106826,0.072402427,0.093849235,0.000449743,61,135633,,,2223.491803,0.000600752,81,134831,,,1664.580247,0.00201734,272,134831,,,495.7022059,3378,,,,,,,4581,,3310,0.4,,,,,,0.38,0.38,0.25,0.4,0.46,,,,,,0.48,0.35,0.25,0.47,0.889993911,83315,93613,0.879364969,0.900622854,0.573609456,17810,31049,0.539661849,0.607557063,0.040983999,2569,62683,,,0.204,6011,,0.149191489,0.258808511,,,,,,,0.315208826,0.207090658,0.423326994,0.511210762,0.409168657,0.613252867,0.175225491,0.150562457,0.199888524,4.218102835,112636,26703,3.871269575,4.564936095,0.295651888,8989,30404,0.258539882,0.332763894,10.32197179,140,135633,,,133.6900384,899,672451,124.950766,142.4293107,,,,,,,202.209006,165.8775264,238.5404856,49.6031746,25.63068415,86.64676359,134.8447777,125.2577627,144.4317927,,,,10.5,,,,,1,,,,,0.124316442,6820,54860,0.112812855,0.135820029,0.104230522,0.093011884,0.115449161,0.014764856,0.010318028,0.019211684,0.010390084,0.007254196,0.013525972,0.799747241,47461,59345,0.784983088,0.814511393,,,,,,,0.759432829,0.673020395,0.845845263,0.679553903,0.561262788,0.797845019,0.795012551,0.779284873,0.810740229,0.267,,59345,0.247787811,0.286212189,72.94318728,,,72.44503955,73.441335,,,,,,,66.78290797,64.96232927,68.60348667,88.36796441,80.2088571,96.52707171,73.10792815,72.56822127,73.64763503,,,,577.5746965,2876,369973,555.0260287,600.1233643,,,,,,,879.6655258,780.8786261,978.4524256,219.87165,136.1040168,336.0971731,568.7574269,544.684949,592.8299049,,,,71.10163089,96,135018,57.5925493,86.82726081,,,,,,,151.4823631,93.76997031,231.5568833,,,,67.47968275,52.50322099,85.39985731,,,,7.143511311,78,10919,5.646649254,8.91542541,,,,,,,,,,,,,6.397580551,4.819533206,8.327330461,,,,,,,0.126,,,0.109,0.145,0.184,,,0.16,0.208,0.113,,,0.097,0.129,142.7,163,114264,,,0.131,17770,,,,0.080313504,11110.00788,138333,,,50.82951286,205,403309,43.871342,57.78768371,,,,,,,70.81551143,45.82806517,104.5376645,,,,52.4928156,44.7594364,60.22619481,,,,0.406,,,0.389,0.422,0.099096751,7603,76723,0.084798878,0.113394623,0.043757514,1383,31606,0.031842621,0.055672408,0.000949337,128,134831,,,1053.367188,0.810416667,1264.25,1560,,,0.085145439,603,7082,0.058861529,0.111429349,2.901969045,,,,,,,2.336890009,2.588871692,3.009255394,2.606855513,,,,,,,2.143479298,2.406190816,2.707550358,0.15667858,,,,,479.6800143,,,,,0.771736805,43279,56080,0.743633716,0.799839893,57264,,,52842.38298,61685.61702,10662,8270.680851,13053.31915,,,,34044,29857.10638,38230.89362,57250,40669.23404,73830.76596,62379,60139,64619,,,,,,,,,,,64.91973139,,,,,0.337716541,,57264,,,6.030908406,48,7959,,,7.527597657,71,943196,5.879116223,9.495040173,,,,,,,39.94528706,27.49649761,56.09803453,,,,4.041082657,2.764097546,5.704802963,,,,21.75973426,146,672451,18.03892044,25.48054808,21.71161914,,,,,,,23.69203295,12.61500973,40.51409789,,,,22.82106644,18.65710618,26.9850267,,,,20.6706511,139,672451,17.23425808,24.10704411,,,,,,,62.87170773,44.2674844,86.66036728,,,,17.56530657,14.27621442,21.38513048,,,,17.28166786,163,943196,14.62860266,19.93473306,,,,,,,24.20926489,14.78764793,37.38924613,,,,17.42716896,14.51951065,20.33482727,,,,29.9270073,,13700,,,410,,0.622963861,64212,103075,,,0.691,,,,,82.96812373,,,,,0.68539934,37991,55429,0.671235655,0.699563025,0.10445721,5655,54137,0.092396584,0.116517837,0.884573057,49031,55429,0.874985072,0.894161043,134831,,,,,0.222767761,30036,134831,,,0.203247028,27404,134831,,,0.089015138,12002,134831,,,0.00392343,529,134831,,,0.007557609,1019,134831,,,0.00087517,118,134831,,,0.039961137,5388,134831,,,0.829430917,111833,134831,,,0.00729602,934,128015,0.004669351,0.009922689,0.509497074,68696,134831,,,0.253851075,34524,136001,, -39,025,39025,OH,Clermont County,2024,1,8537.446252,3221,581604,8075.099219,8999.793286,0,,,,2,,,,2,14051.71246,10083.75147,19062.73462,,,,,2,8717.400574,8229.761314,9205.039833,,,,,2,,0.148,,,0.123,0.177,3.608170054,,,2.842456613,4.482830742,5.210541,,,4.267124948,6.201282244,0.076746412,1203,15675,0.072579236,0.080913587,0,,,,0.069486405,0.042092537,0.096880273,0.167808219,0.124945179,0.210671259,0.049627792,0.028424031,0.070831552,0.075250836,0.070934975,0.079566698,,,,0.104477612,0.067855911,0.141099313,0.197,,,0.153,0.245,0.358,,,0.292,0.423,7.6,0.096611052,0.105,,,0.248,,,0.204,0.301,0.818941424,170832,208601,,,0.200419969,,,0.163755091,0.239031687,0.325301205,27,83,0.269148834,0.381798088,265.7,557,209642,,,16.33537623,701,42913,15.12609808,17.54465437,,,,,,,14.49275362,6.94983869,26.65268992,13.86861314,8.349811069,21.65755735,16.68112024,15.40264474,17.95959574,,,,15.85728444,9.06380818,25.75123647,0.076470077,13206,172695,0.066938162,0.086001992,0.000658265,138,209642,,,1519.144928,0.000450653,95,210805,,,2219,0.001233367,260,210805,,,810.7884615,3475,,,,,,,1369,,3467,0.44,,,,,,0.5,0.4,,0.44,0.48,,,,,,0.29,0.37,0.4,0.49,0.914493173,132746,145158,0.905435084,0.923551262,0.662331242,34832,52590,0.629769772,0.694892711,0.035504161,3844,108269,,,0.114,5197,,0.079446809,0.148553192,,,,0.195704057,0,0.449714549,0.165085389,0.012393257,0.317777521,0.217847769,0.123434746,0.312260793,0.080749926,0.065040414,0.096459439,4.342456181,149146,34346,4.077984081,4.606928282,0.190143396,8924,46933,0.16550035,0.214786442,7.107354442,149,209642,,,83.72056109,865,1033199,78.14125552,89.29986667,,,,,,,75.61656585,40.26263664,129.3066305,69.33851061,38.80823803,114.3633286,86.4517081,80.57724762,92.32616858,,,,9.9,,,,,0,,,,,0.117524734,9325,79345,0.104762423,0.130287044,0.09805166,0.085901494,0.110201825,0.01506081,0.010695659,0.019425962,0.008444136,0.006245435,0.010642838,0.794532371,81929,103116,0.783364631,0.805700112,,,,0.771548117,0.656014886,0.887081348,0.723826715,0.596694623,0.850958807,0.769346356,0.654560362,0.88413235,0.727365436,0.710677654,0.744053217,0.474,,103116,0.451869067,0.496130933,76.74121411,,,76.34775232,77.13467589,,,,89.56496339,82.06629459,97.06363219,71.19023184,67.81204833,74.56841534,101.006759,81.03329926,120.9802187,76.52041345,76.11402822,76.92679868,,,,416.0266632,3221,581604,400.9457773,431.107549,,,,,,,677.6781394,525.1912498,860.6272819,,,,422.8019185,407.1124151,438.4914219,,,,50.69510792,104,205148,40.95182186,60.43839399,,,,,,,,,,,,,49.87612289,40.2071945,61.16863714,,,,6.581861908,104,15801,5.316868775,7.84685504,,,,,,,,,,,,,6.536397413,5.288335838,7.990406882,,,,,,,0.11,,,0.094,0.129,0.167,,,0.143,0.194,0.098,,,0.083,0.115,103.3,183,177162,,,0.105,21890,,,,0.096611052,19067.44705,197363,,,41.05728935,256,623519,36.02777141,46.0868073,,,,,,,,,,,,,42.80105277,37.47402841,48.12807712,,,,0.349,,,0.329,0.367,0.087111422,10954,125747,0.075196529,0.099026316,0.049014244,2419,49353,0.035907861,0.062120627,0.000626171,132,210805,,,1597.007576,0.931969697,1937.565,2079,,,0.047775629,494,10340,0.02879605,0.066755207,3.277135733,,,,,,3.248054641,3.161289191,3.082378015,3.294142436,3.267825612,,,,,,3.778820409,3.09143698,2.962293064,3.282713748,0.029916802,,,,,1629.5884,,,,,0.803020444,53066,66083,0.749291057,0.856749831,79492,,,73073.44681,85910.55319,,,,107220,70220.68085,144219.3192,65858,52244.04255,79471.95745,64278,36718.85106,91837.14894,79717,77025.42553,82408.57447,,,,,,,,,,,52.09005387,,,,,0.317830725,,79492,,,7.792647806,92,11806,,,1.668759569,24,1438194,1.069205744,2.482981962,,,,,,,,,,,,,1.340578415,0.79451173,2.118691854,,,,15.49755688,165,1033199,13.05526983,17.93984393,15.96981801,,,,,,,,,,,,,15.94158584,13.37901764,18.50415405,,,,11.51762632,119,1033199,9.448220939,13.58703171,,,,,,,,,,,,,11.53382163,9.388127504,13.67951576,,,,9.595367523,138,1438194,7.994416147,11.1963189,,,,,,,,,,,,,9.979861533,8.290089228,11.66963384,,,,16.21621622,,22200,,,360,,0.70582974,110480,156525,,,0.749,,,,,47.55515283,,,,,0.737752684,61021,82712,0.722778423,0.752726945,0.100369496,8122,80921,0.08839403,0.112344963,0.905370442,74885,82712,0.89635174,0.914389144,210805,,,,,0.219525154,46277,210805,,,0.185052537,39010,210805,,,0.019344892,4078,210805,,,0.002276986,480,210805,,,0.014634378,3085,210805,,,0.000545528,115,210805,,,0.023666422,4989,210805,,,0.92383008,194748,210805,,,0.002732892,539,197227,0.001420739,0.004045044,0.502886554,106011,210805,,,0.262692892,54798,208601,, -39,027,39027,OH,Clinton County,2024,1,11817.38089,838,116841,10604.63063,13030.13116,0,,,,2,,,,2,24403.38692,13341.55872,40944.73664,1,,,,2,11982.77737,10716.66733,13248.88742,,,,,2,,0.174,,,0.146,0.206,4.093533107,,,3.236585479,5.066143511,5.590185169,,,4.499967256,6.748570786,0.079204984,267,3371,0.070088352,0.088321616,0,,,,,,,0.203389831,0.100678677,0.306100984,,,,0.076753696,0.067499915,0.086007478,,,,,,,0.219,,,0.174,0.265,0.42,,,0.343,0.499,6.7,0.123261883,0.133,,,0.291,,,0.238,0.346,0.490051883,20591,42018,,,0.170162613,,,0.136299359,0.207032482,0.3,12,40,0.216980958,0.384837631,285.7,120,42004,,,23.68660796,234,9879,20.65166163,26.72155428,,,,,,,,,,,,,24.58740317,21.3309362,27.84387013,,,,,,,0.076863769,2592,33722,0.064948875,0.088778662,0.000618989,26,42004,,,1615.538462,0.000285959,12,41964,,,3497,0.003121723,131,41964,,,320.3358779,2873,,,,,,,,,2906,0.38,,,,,,,0.26,,0.39,0.43,,,,,,,0.31,,0.43,0.911247834,25771,28281,0.896385759,0.92610991,0.590596448,5753,9741,0.529414909,0.651777987,0.043789898,782,17858,,,0.166,1522,,0.115957447,0.216042553,,,,,,,0.514492754,0.098791377,0.930194131,0.482142857,0.268876552,0.695409163,0.178848218,0.130434069,0.227262366,4.259347567,117903,27681,3.793963956,4.724731178,0.264060213,2526,9566,0.214719379,0.313401048,9.522902581,40,42004,,,114.3080316,240,209959,99.84607022,128.7699929,,,,,,,245.2619844,122.4338989,438.8414384,,,,117.0260064,101.8687459,132.1832669,,,,9.4,,,,,0,,,,,0.118578256,1985,16740,0.098702738,0.138453774,0.102949225,0.08471534,0.12118311,0.01702509,0.009235826,0.024814353,0.004778973,0.001381354,0.008176591,0.830468948,16381,19725,0.804410541,0.856527355,,,,,,,0.807313643,0.713521382,0.901105904,,,,0.812896511,0.782196255,0.843596766,0.403,,19725,0.364226219,0.441773781,73.63408773,,,72.73375135,74.53442411,,,,,,,,,,,,,73.40852786,72.47999775,74.33705797,,,,552.4715902,838,116841,512.9119807,592.0311998,,,,,,,902.6227807,551.3454439,1394.027678,,,,560.3228871,519.3684116,601.2773625,,,,53.61430336,23,42899,33.98686924,80.44777942,,,,,,,,,,,,,59.667419,37.82402531,89.53042492,,,,8.44742208,29,3433,5.657371144,12.13190721,,,,,,,,,,,,,8.626001232,5.731915174,12.46697349,,,,,,,0.124,,,0.106,0.144,0.185,,,0.159,0.211,0.108,,,0.092,0.126,110.3,39,35348,,,0.133,5590,,,,0.123261883,5181.929556,42040,,,51.63114709,65,125893,39.84782929,65.80813533,,,,,,,,,,,,,52.08466747,39.8406436,66.90493431,,,,0.377,,,0.358,0.396,0.087339843,2120,24273,0.07304197,0.101637715,0.050775741,504,9926,0.035286379,0.066265102,0.001048518,44,41964,,,953.7272727,0.89105852,517.705,581,,,0.060970552,147,2411,0.022074295,0.099866808,3.063086951,,,,,,,,,3.104099511,3.066061163,,,,,,,,,3.086078851,0.085127515,,,,,997.5715,,,,,0.736881985,42790,58069,0.656104006,0.817659965,65927,,,57751,74103,,,,,,,,,,63281,4668.06383,121893.9362,65368,60783.14894,69952.85106,,,,,,,,,,,60.49776238,,,,,0.236564685,,65927,,,5.857087075,15,2561,,,,,,,,,,,,,,,,,,,,,,,,,,15.95114682,32,209959,10.76217177,22.77125392,15.24107088,,,,,,,,,,,,,16.43576962,11.00729286,23.60450679,,,,11.43080316,24,209959,7.32393127,17.00812901,,,,,,,,,,,,,10.7316425,6.643055853,16.40445554,,,,13.27533035,39,293778,9.440057625,18.14781361,,,,,,,,,,,,,14.23929315,10.12552941,19.46558248,,,,57.11111111,,4500,,,257,,0.643580499,20527,31895,,,0.696,,,,,30.29240451,,,,,0.707138499,11590,16390,0.685391136,0.728885862,0.104964629,1647,15691,0.084833514,0.125095745,0.863880415,14159,16390,0.839329371,0.888431459,41964,,,,,0.222023639,9317,41964,,,0.188375751,7905,41964,,,0.021256315,892,41964,,,0.004265561,179,41964,,,0.006243447,262,41964,,,0.000619579,26,41964,,,0.022757602,955,41964,,,0.923196073,38741,41964,,,0.003683427,146,39637,0.000118321,0.007248533,0.503288533,21120,41964,,,0.70141368,29472,42018,, -39,029,39029,OH,Columbiana County,2024,1,10341.27453,2095,278018,9604.432706,11078.11635,0,,,,2,,,,2,12958.40741,7084.481917,21742.00575,1,,,,2,10525.52265,9748.764817,11302.28047,,,,,2,,0.177,,,0.15,0.206,4.120273797,,,3.322626915,4.955534695,5.65241502,,,4.697177504,6.620436527,0.076758453,538,7009,0.070526147,0.08299076,0,,,,,,,0.133333333,0.056398883,0.210267784,0.081481482,0.048849187,0.114113776,0.076449777,0.069990493,0.082909061,,,,,,,0.225,,,0.183,0.271,0.453,,,0.389,0.513,7.5,0.0612771,0.129,,,0.292,,,0.245,0.34,0.767111321,78151,101877,,,0.159938556,,,0.130532736,0.19238222,0.447368421,17,38,0.368268334,0.521850206,213.2,216,101310,,,22.32188886,433,19398,20.21935468,24.42442303,,,,,,,,,,64.69002695,41.4481209,96.25363233,21.80288861,19.64999783,23.95577938,,,,16.86340641,8.086658847,31.01240479,0.092680645,7134,76974,0.080765752,0.104595539,0.000296121,30,101310,,,3377,0.000268627,27,100511,,,3722.62963,0.00130334,131,100511,,,767.259542,3299,,,,,,,,,3314,0.43,,,,,,,0.21,,0.43,0.47,,,,,,,0.39,,0.47,0.898476675,66118,73589,0.88774779,0.909205559,0.525258621,12186,23200,0.485069183,0.565448058,0.046199602,2066,44719,,,0.221,4371,,0.159042553,0.282957447,,,,,,,0.272727273,0.090345426,0.45510912,0.297339593,0,0.641310552,0.166474812,0.136664234,0.196285391,4.349623445,106270,24432,4.043556184,4.655690705,0.286620474,5874,20494,0.239325569,0.33391538,14.70733393,149,101310,,,103.1265378,526,510053,94.3133376,111.9397381,,,,,,,110.5066304,58.84012658,188.9697035,,,,106.2974991,97.05376886,115.5412293,,,,9.4,,,,,0,,,,,0.101849628,4240,41630,0.086233424,0.117465831,0.082501825,0.068049805,0.096953846,0.016814797,0.008777533,0.024852061,0.008167187,0.003912836,0.012421538,0.81597321,37281,45689,0.79622083,0.835725591,,,,,,,,,,,,,0.797941703,0.783246153,0.812637253,0.351,,45689,0.322157097,0.379842904,74.45278733,,,73.90722942,74.99834523,,,,,,,72.5593731,67.22770588,77.89104032,96.77165514,68.71838417,124.8249261,74.26744015,73.70086913,74.83401117,,,,508.1350658,2095,278018,484.5740033,531.6961283,,,,,,,598.0118796,416.5371854,831.6897607,,,,514.4503492,489.9604018,538.9402967,,,,43.13538982,39,90413,30.67347891,58.96749789,,,,,,,,,,,,,44.99246072,31.67884451,62.01618043,,,,5.59362327,40,7151,3.996166472,7.616927278,,,,,,,,,,,,,5.265533323,3.667636889,7.323082198,,,,,,,0.125,,,0.109,0.144,0.184,,,0.161,0.209,0.108,,,0.093,0.124,88.5,77,87006,,,0.129,13250,,,,0.0612771,6608.183773,107841,,,47.97723382,146,304311,40.19481054,55.7596571,,,,,,,,,,,,,49.53503814,41.35869674,57.71137953,,,,0.389,,,0.372,0.405,0.105530653,5980,56666,0.090041292,0.121020015,0.057645518,1232,21372,0.040964666,0.074326369,0.000835729,84,100511,,,1196.559524,0.89645538,1074.85,1199,,,0.059907834,299,4991,0.030964061,0.088851607,3.108796729,,,,,,,2.819732462,2.760012371,3.141420275,3.078943797,,,,,,,2.731672678,2.681479925,3.112512771,0.098600784,,,,,-188.4963445,,,,,0.727463903,38744,53259,0.67571597,0.779211836,54167,,,49490.40426,58843.59575,116369,69887.80851,162850.1915,,,,,,,37314,22607.44681,52020.55319,56872,53974.29787,59769.70213,,,,,,,,,,,75.77177625,,,,,0.357025495,,54167,,,9.262832883,48,5182,,,2.226725155,16,718544,1.272765823,3.616062148,,,,,,,,,,,,,1.928136856,1.02665167,3.297172746,,,,18.39750506,95,510053,14.71562932,22.72076908,18.62551539,,,,,,,,,,,,,19.81068952,15.80178182,24.52698164,,,,14.31223814,73,510053,11.21851002,17.9954907,,,,,,,,,,,,,14.64729318,11.41828361,18.50597376,,,,12.38615868,89,718544,9.947102494,15.24223407,,,,,,,,,,,,,13.05200333,10.46808834,16.08043316,,,,13.91752577,,9700,,,135,,0.613472778,49860,81275,,,0.68,,,,,29.96652792,,,,,0.73190953,30192,41251,0.713132342,0.750686717,0.094004104,3711,39477,0.078804923,0.109203285,0.840319023,34664,41251,0.825015002,0.855623044,100511,,,,,0.200555163,20158,100511,,,0.220642517,22177,100511,,,0.023838187,2396,100511,,,0.002736019,275,100511,,,0.003472257,349,100511,,,0.000457661,46,100511,,,0.020933032,2104,100511,,,0.933052104,93782,100511,,,0.001375416,133,96698,0,0.002993886,0.49011551,49262,100511,,,0.554973154,56539,101877,, -39,031,39031,OH,Coshocton County,2024,1,10636.38659,693,100538,9380.335572,11892.43761,0,,,,2,,,,2,,,,2,,,,2,10514.38089,9244.730217,11784.03155,,,,,2,,0.199,,,0.164,0.233,4.458786112,,,3.556004496,5.396280452,5.56996864,,,4.539783669,6.650703569,0.072623934,230,3167,0.063585361,0.081662507,0,,,,,,,,,,,,,0.068286277,0.059328524,0.07724403,,,,0.208333333,0.093442332,0.323224334,0.251,,,0.199,0.302,0.402,,,0.331,0.474,7.4,0.02782995,0.151,,,0.33,,,0.274,0.39,0.431060854,15782,36612,,,0.15885599,,,0.127572346,0.196426992,0.433333333,13,30,0.341978933,0.519075952,254,93,36618,,,21.99840975,166,7546,18.6518906,25.3449289,,,,,,,,,,,,,21.75468728,18.29619252,25.21318204,,,,,,,0.118843756,3470,29198,0.102162905,0.135524608,0.000355017,13,36618,,,2816.769231,0.000328129,12,36571,,,3047.583333,0.000957043,35,36571,,,1044.885714,3600,,,,,,,8178,,3471,0.42,,,,,,,0.43,,0.42,0.41,,,,,,,0.38,,0.41,0.845422117,21330,25230,0.822958682,0.867885551,0.489629979,4155,8486,0.431959413,0.547300544,0.048807259,667,13666,,,0.186,1586,,0.128808511,0.243191489,,,,,,,0.147540984,0,0.368351583,,,,0.256416709,0.199195764,0.313637653,4.70804587,100997,21452,4.065153775,5.350937965,0.237814738,2059,8658,0.168082067,0.307547409,12.56212792,46,36618,,,93.52439291,171,182840,79.50649432,107.5422915,,,,,,,472.5897921,226.6251747,869.1094538,,,,91.54313112,77.35837599,105.7278862,,,,8.9,,,,,0,,,,,0.123799726,1805,14580,0.09574091,0.151858541,0.09609402,0.070512992,0.121675048,0.020919067,0.012165238,0.029672896,0.01303155,0.005170633,0.020892467,0.724515199,11059,15264,0.690688593,0.758341805,,,,,,,,,,,,,0.70961693,0.672653837,0.746580023,0.373,,15264,0.328914894,0.417085106,74.34849671,,,73.40283521,75.29415821,,,,,,,,,,,,,74.34988387,73.39763419,75.30213355,,,,504.7186435,693,100538,464.5297231,544.9075638,,,,,,,,,,,,,504.3007831,463.4338026,545.1677635,,,,63.28446366,24,37924,40.54754998,94.16226557,,,,,,,,,,,,,62.22247363,38.99449295,94.20557284,,,,7.136208501,23,3223,4.523744039,10.7078166,,,,,,,,,,,,,6.756756757,4.182538927,10.32842044,,,,,,,0.138,,,0.117,0.159,0.19,,,0.163,0.219,0.115,,,0.098,0.134,65.7,20,30419,,,0.151,5540,,,,0.02782995,1026.952974,36901,,,31.00294528,34,109667,21.47044087,43.32350853,,,,,,,,,,,,,30.57402736,20.91261208,43.16140419,,,,0.39,,,0.371,0.406,0.126852574,2602,20512,0.107788744,0.145916404,0.099100088,903,9112,0.069312854,0.128887322,0.00060157,22,36571,,,1662.318182,0.906186225,355.225,392,,,,,,,,3.24213009,,,,,,,,,3.259021092,3.215989462,,,,,,,,,3.240388917,0.03991807,,,,,-933.6837,,,,,0.707405167,38584,54543,0.626109225,0.788701108,50731,,,44354.14894,57107.85106,,,,,,,,,,90395,11284.87234,169505.1277,52179,48475.85106,55882.14894,,,,,,,,,,,52.13633886,,,,,0.30742544,,50731,,,7.735281478,18,2327,,,,,,,,,,,,,,,,,,,,,,,,,,17.74119496,37,182840,12.21222229,24.91523384,20.23627215,,,,,,,,,,,,,17.14818122,11.65135716,24.34047443,,,,18.59549333,34,182840,12.8779197,25.98533805,,,,,,,,,,,,,18.30862622,12.52308678,25.84631744,,,,16.79615329,43,256011,12.15545942,22.62430826,,,,,,,,,,,,,17.1415278,12.35410549,23.17036588,,,,11.7948718,,3900,,,46,,0.599964158,16739,27900,,,0.665,,,,,5.511994208,,,,,0.716602212,10562,14739,0.688729394,0.74447503,0.109684285,1546,14095,0.083855543,0.135513028,0.782956781,11540,14739,0.756908562,0.809005001,36571,,,,,0.237565284,8688,36571,,,0.201389079,7365,36571,,,0.011347789,415,36571,,,0.003500041,128,36571,,,0.004621148,169,36571,,,0.000628914,23,36571,,,0.01309781,479,36571,,,0.951683028,34804,36571,,,0.003990563,137,34331,0.000118092,0.007863033,0.499275382,18259,36571,,,0.663115918,24278,36612,, -39,033,39033,OH,Crawford County,2024,1,10554.79443,879,112950,9417.22011,11692.36875,0,,,,2,,,,2,,,,2,,,,2,10653.50002,9475.242512,11831.75753,,,,,2,,0.18,,,0.154,0.21,4.203868136,,,3.365547467,5.085115228,5.344236748,,,4.334554208,6.334171344,0.087680704,279,3182,0.077853467,0.097507941,0,,,,,,,,,,,,,0.087992061,0.077893533,0.098090588,,,,,,,0.231,,,0.188,0.274,0.411,,,0.344,0.48,6.5,0.13626245,0.137,,,0.291,,,0.242,0.345,0.825603807,34696,42025,,,0.163305876,,,0.130802072,0.197293863,0.227272727,5,22,0.117752454,0.350313422,347.3,145,41754,,,29.4600939,251,8520,25.81546481,33.10472299,,,,,,,,,,,,,28.79878742,25.06058469,32.53699015,,,,,,,0.086865837,2832,32602,0.073759454,0.099972219,0.000359247,15,41754,,,2783.6,0.000553923,23,41522,,,1805.304348,0.001445017,60,41522,,,692.0333333,2341,,,,,,,,,2357,0.44,,,,,,,,,0.44,0.4,,,,,,,,,0.4,0.899075396,26449,29418,0.885265993,0.912884799,0.538939171,5121,9502,0.483868967,0.594009374,0.047664765,844,17707,,,0.225,1963,,0.157085106,0.292914894,,,,,,,,,,0.342519685,0.103408615,0.581630755,0.2010849,0.151774103,0.250395696,4.106432189,102977,25077,3.762035929,4.450828449,0.281597904,2580,9162,0.219912,0.343283809,17.00435886,71,41754,,,94.76529955,197,207882,81.5318734,107.9987257,,,,,,,,,,,,,98.17217578,84.35740693,111.9869446,,,,8.9,,,,,1,,,,,0.096486336,1730,17930,0.080558413,0.112414259,0.080135059,0.0637607,0.096509418,0.006971556,0.001638294,0.012304818,0.012827663,0.006135718,0.019519609,0.851091006,15992,18790,0.82795235,0.874229662,,,,,,,,,,,,,0.84830125,0.807270244,0.889332256,0.283,,18790,0.249468517,0.316531483,73.86542183,,,73.01983886,74.71100481,,,,,,,,,,,,,73.69357422,72.82529464,74.5618538,,,,536.1406247,879,112950,498.3284987,573.9527508,,,,,,,,,,,,,542.5472293,503.7434911,581.3509674,,,,50.77559725,20,39389,31.01505391,78.4187918,,,,,,,,,,,,,52.51375031,31.61670812,82.0067261,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.13,,,0.112,0.148,0.187,,,0.163,0.212,0.107,,,0.092,0.125,64.9,23,35422,,,0.137,5730,,,,0.13626245,5966.115117,43784,,,29.69836097,37,124586,20.91038686,40.93527856,,,,,,,,,,,,,31.28567201,22.02800031,43.12317773,,,,0.397,,,0.379,0.414,0.099416688,2352,23658,0.082735837,0.116097539,0.054539656,513,9406,0.037858805,0.071220507,0.001083763,45,41522,,,922.7111111,0.922365471,411.375,446,,,0.091135458,183,2008,0.029921741,0.152349176,2.929881818,,,,,,,,,2.924474888,2.722816485,,,,,,,,,2.724392645,0.060994511,,,,,-981.2753367,,,,,0.838533846,40767,48617,0.749729395,0.927338297,55912,,,50225.02128,61598.97872,,,,,,,,,,,,,52597,50060.31915,55133.68085,,,,,,,,,,,79.11003028,,,,,0.278938332,,55912,,,9.547530096,23,2409,,,,,,,,,,,,,,,,,,,,,,,,,,16.41971884,37,207882,11.30257893,23.05939004,17.7985588,,,,,,,,,,,,,16.9677823,11.60595053,23.95344588,,,,12.02605324,25,207882,7.782627571,17.75282694,,,,,,,,,,,,,12.65105358,8.187094836,18.67545073,,,,15.05452132,44,292271,10.93863824,20.20999219,,,,,,,,,,,,,15.80760705,11.48583148,21.22097464,,,,30,,4200,,,126,,0.642222912,20686,32210,,,0.702,,,,,26.97077882,,,,,0.694297666,12614,18168,0.670335961,0.718259372,0.084037934,1471,17504,0.067616314,0.100459554,0.855845443,15549,18168,0.833274044,0.878416841,41522,,,,,0.214681374,8914,41522,,,0.215307548,8940,41522,,,0.012330813,512,41522,,,0.003010452,125,41522,,,0.007128751,296,41522,,,0.001420934,59,41522,,,0.019989403,830,41522,,,0.945378354,39254,41522,,,0.006434289,254,39476,0.002021027,0.010847552,0.505539232,20991,41522,,,0.340844735,14324,42025,, -39,035,39035,OH,Cuyahoga County,2024,1,9917.115726,20971,3415224,9708.666886,10125.56457,0,11828.4542,6890.510461,18938.50101,1,2667.361088,2144.237892,3190.484283,,15743.80576,15261.57359,16226.03793,,7829.028163,7161.110522,8496.945804,,7716.506324,7478.659993,7954.352654,,,,,2,,0.18,,,0.155,0.207,4.003671922,,,3.352284049,4.69335829,5.789123893,,,5.05338713,6.542451353,0.106584996,10249,96158,0.104634531,0.10853546,0,,,,0.092963534,0.083842863,0.102084205,0.155752867,0.15196134,0.159544395,0.093454039,0.086721362,0.100186716,0.073350768,0.071004089,0.075697446,,,,0.104092527,0.09146846,0.116716593,0.187,,,0.154,0.222,0.347,,,0.308,0.386,7.8,0.033131971,0.128,,,0.244,,,0.211,0.28,0.978366831,1237455,1264817,,,0.171316784,,,0.147889626,0.197872688,0.411157025,199,484,0.389987331,0.432151714,839.4,10487,1249387,,,19.34741275,4925,254556,18.80706189,19.88776362,,,,1.959880102,1.141702383,3.137957899,36.60749957,35.34049945,37.8744997,24.48824226,22.49355689,26.48292763,7.190385062,6.720090398,7.660679726,,,,22.39365692,19.3576137,25.42970013,0.068782339,67783,985471,0.062824892,0.074739785,0.001112546,1390,1249387,,,898.8395684,0.001127794,1394,1236041,,,886.6865136,0.004806475,5941,1236041,,,208.0526847,3796,,,,,,2209,5984,4238,3239,0.49,,,,,,0.42,0.48,0.39,0.49,0.52,,,,,0.44,0.54,0.38,0.41,0.55,0.909062395,808621,889511,0.906020582,0.912104208,0.699574797,230009,328784,0.687017403,0.712132191,0.048873673,29307,599648,,,0.241,59651,,0.212404255,0.269595745,0.558091286,0.197364571,0.918818002,0.118032787,0.081573176,0.154492398,0.396174056,0.37263898,0.419709131,0.314576677,0.280913884,0.34823947,0.108344316,0.097213896,0.119474736,5.457431583,125832,23057,5.298930963,5.615932203,0.377677035,97222,257421,0.36235315,0.39300092,8.988407915,1123,1249387,,,110.5127667,6857,6204713,107.8969853,113.1285481,,,,31.05785982,23.91833653,39.66019363,135.0153864,129.7036264,140.3271465,85.02421397,75.87824645,94.1701815,108.854,105.4614424,112.2465575,,,,10.9,,,,,0,,,,,0.159467772,87370,547885,0.15459683,0.164338713,0.144415289,0.139714163,0.149116414,0.012028072,0.010491234,0.013564909,0.013643374,0.012138464,0.015148284,0.736985021,436968,592913,0.73039975,0.743570293,0.687638786,0.563448654,0.811828918,0.694193433,0.66319168,0.725195186,0.703023415,0.687687877,0.718358953,0.69420986,0.667364288,0.721055431,0.798045845,0.792556071,0.803535619,0.313,,592913,0.304831561,0.32116844,75.67315539,,,75.508086,75.83822479,74.22651339,70.11372632,78.33930045,88.1124788,86.60738475,89.61757286,70.78961853,70.45681825,71.12241881,80.14452019,79.09845341,81.19058697,77.51265467,77.31693066,77.70837868,,,,461.7816424,20971,3415224,455.178758,468.3845269,489.6213987,327.907135,703.1780014,136.6287923,116.1867885,157.0707961,695.1947834,679.778421,710.6111458,375.1348922,347.4882361,402.7815483,384.3258383,376.7059527,391.9457238,,,,70.81978303,804,1135276,65.92444553,75.71512053,,,,,,,129.1080104,118.0002736,140.2157472,43.17908295,31.72636604,57.41902667,41.13556705,35.68738636,46.58374774,,,,8.658757453,851,98282,8.076993423,9.240521483,,,,,,,15.64137931,14.35390198,16.92885664,6.33356791,4.619747894,8.474812174,4.421304905,3.82892591,5.0136839,,,,,,,0.119,,,0.103,0.136,0.167,,,0.147,0.188,0.116,,,0.101,0.131,465.5,4971,1067900,,,0.128,161760,,,,0.033131971,42412.96489,1280122,,,43.20722606,1604,3712342,41.09271347,45.32173864,,,,8.799507228,4.392682304,15.74474911,45.3527517,41.37342642,49.33207698,48.79961294,39.95702235,57.64220353,45.11796777,42.2873535,47.94858204,,,,0.375,,,0.362,0.388,0.080473473,59202,735671,0.073324536,0.087622409,0.035878127,9424,262667,0.028729191,0.043027063,0.002359145,2916,1236041,,,423.8823731,0.814849451,10094.355,12388,,,0.073027229,4369,59827,0.062827226,0.083227231,2.920716688,,,,,,3.699108371,2.476998109,2.668248217,3.471117977,2.785789326,,,,,,4.021261592,2.276193817,2.592773441,3.368354717,0.33258386,,,,,-3207.649742,,,,,0.830941092,51176,61588,0.811429135,0.85045305,60808,,,59075.57447,62540.42553,32236,23410.6383,41061.3617,86250,77683.19149,94816.80851,37200,35797.61702,38602.38298,45929,43343.46809,48514.53192,75245,74217.93617,76272.06383,,,,,,,,,,,71.53617371,,,,,0.415488094,,60808,,,10.31349643,731,70878,,,14.85651068,1294,8709986,14.04703137,15.66598999,,,,,,,40.92502969,38.45664345,43.39341592,11.09583605,8.446664503,14.31282008,3.237448937,2.744950389,3.729947485,,,,13.72117393,878,6204713,12.77797836,14.66436949,14.15053364,,,,9.156388907,5.512744258,14.2988355,10.11073963,8.580982894,11.64049636,11.31491015,8.154791992,15.29447149,16.12952026,14.79597366,17.46306686,,,,20.79064737,1290,6204713,19.65608277,21.92521197,,,,,,,45.36778093,42.2887037,48.44685817,12.54875447,9.28363764,16.5901189,10.87163843,9.799495899,11.94378096,,,,8.415627763,733,8709986,7.806384688,9.024870839,,,,,,,15.07560279,13.57745052,16.57375506,6.95840566,4.899359745,9.5912456,5.772800514,5.115147574,6.430453454,,,,14.52612932,,112900,,,1640,,0.656933464,625670,952410,,,0.663,,,,,184.256125,,,,,0.58445642,322866,552421,0.579091392,0.589821448,0.150210619,79984,532479,0.144947951,0.155473286,0.856821156,473326,552421,0.851566035,0.862076277,1236041,,,,,0.202887283,250777,1236041,,,0.196239445,242560,1236041,,,0.294999923,364632,1236041,,,0.002706221,3345,1236041,,,0.035387176,43740,1236041,,,0.00046924,580,1236041,,,0.068629601,84829,1236041,,,0.577205772,713450,1236041,,,0.017555101,20849,1187632,0.016166696,0.018943507,0.519035372,641549,1236041,,,0.005655364,7153,1264817,, -39,037,39037,OH,Darke County,2024,1,8640.030324,845,140250,7703.758257,9576.30239,0,,,,2,,,,2,,,,2,,,,2,8864.158084,7885.747224,9842.568944,,,,,2,,0.167,,,0.14,0.196,3.899727231,,,3.101723322,4.789726079,5.420658016,,,4.43008261,6.545505164,0.054726368,231,4221,0.047864767,0.06158797,0,,,,,,,,,,,,,0.054455446,0.047458201,0.06145269,,,,,,,0.216,,,0.172,0.263,0.388,,,0.314,0.466,8.2,0.034939692,0.107,,,0.265,,,0.217,0.319,0.548081186,28435,51881,,,0.161768552,,,0.128902083,0.199909864,0.358974359,14,39,0.275988246,0.440587764,199.6,103,51597,,,21.00691367,237,11282,18.33240414,23.68142319,,,,,,,,,,,,,20.76419835,18.01409394,23.51430276,,,,,,,0.087714182,3609,41145,0.075799288,0.099629075,0.000465143,24,51597,,,2149.875,0.000426944,22,51529,,,2342.227273,0.000756855,39,51529,,,1321.25641,2765,,,,,,,,,2772,0.42,,,,,,,,,0.42,0.4,,,,,,,,,0.4,0.910663722,32161,35316,0.899629579,0.921697865,0.541404062,6185,11424,0.493912063,0.58889606,0.035440163,905,25536,,,0.129,1530,,0.086106383,0.171893617,,,,0.608247423,0.172551273,1,0.008474576,0,0.423027046,0.377976191,0.180396478,0.575555904,0.119728983,0.090862271,0.148595695,4.067679757,112691,27704,3.672759139,4.462600376,0.174290156,2130,12221,0.125510749,0.223069563,15.11715797,78,51597,,,108.6558608,279,256774,95.90595058,121.405771,,,,,,,,,,,,,110.2024716,97.08159775,123.3233455,,,,9.7,,,,,0,,,,,0.095654228,2025,21170,0.078907323,0.112401132,0.07372942,0.058939362,0.088519479,0.011761927,0.00673015,0.016793705,0.014170997,0.008748837,0.019593156,0.807619673,19672,24358,0.782890933,0.832348414,,,,,,,,,,,,,0.790372105,0.761336384,0.819407826,0.305,,24358,0.275644836,0.334355164,75.8436859,,,75.09902189,76.5883499,,,,,,,,,,,,,75.63530336,74.8683434,76.40226333,,,,433.0320147,845,140250,401.980977,464.0830523,,,,,,,,,,,,,438.4613237,406.5688797,470.3537677,,,,45.15861965,24,53146,28.93397971,67.19244646,,,,,,,,,,,,,46.42338124,29.42844146,69.65786552,,,,6.41634981,27,4208,4.228414955,9.335452102,,,,,,,,,,,,,6.459627329,4.219643035,9.464850704,,,,,,,0.122,,,0.104,0.141,0.178,,,0.154,0.204,0.102,,,0.087,0.119,72,31,43032,,,0.107,5570,,,,0.034939692,1850.371127,52959,,,29.23691648,45,153915,21.3256075,39.12129454,,,,,,,,,,,,,30.58062412,22.30571707,40.91928108,,,,0.373,,,0.354,0.39,0.09741537,2823,28979,0.083117497,0.111713242,0.065679129,838,12759,0.046615299,0.084742958,0.000543383,28,51529,,,1840.321429,0.937423077,609.325,650,,,0.066168224,177,2675,0.024441269,0.107895179,3.259549731,,,,,,,,,3.282971669,3.089810956,,,,,,,,,3.125589309,0.067570292,,,,,2260.471043,,,,,0.752327273,41378,55000,0.709371465,0.79528308,65643,,,58575.08511,72710.91489,61023,60155.59575,61890.40426,,,,53421,25734.3617,81107.6383,53125,19186.61702,87063.38298,61059,56245.38298,65872.61702,,,,,,,,,,,54.81980897,,,,,0.294608717,,65643,,,7.4002574,23,3108,,,,,,,,,,,,,,,,,,,,,,,,,,14.03853465,36,256774,9.6634813,19.71532212,14.02011107,,,,,,,,,,,,,14.23182539,9.73455803,20.09109106,,,,9.736188243,25,256774,6.30074768,14.37253449,,,,,,,,,,,,,10.16627967,6.579080175,15.00743427,,,,16.91493728,61,360628,12.93858673,21.72794456,,,,,,,,,,,,,16.76756113,12.73231215,21.67596103,,,,26.66666667,,5700,,,152,,0.697621802,27134,38895,,,0.736,,,,,17.53025941,,,,,0.717730429,15091,21026,0.693280409,0.742180449,0.076862241,1555,20231,0.060781417,0.092943066,0.833539427,17526,21026,0.814270819,0.852808036,51529,,,,,0.23452813,12085,51529,,,0.206291603,10630,51529,,,0.007529741,388,51529,,,0.002678104,138,51529,,,0.005220361,269,51529,,,0.000756855,39,51529,,,0.018960197,977,51529,,,0.952492771,49081,51529,,,0.001807501,88,48686,0,0.004586768,0.49997089,25763,51529,,,0.717295349,37214,51881,, -39,039,39039,OH,Defiance County,2024,1,8361.641572,591,104856,7294.148116,9429.135027,0,,,,2,,,,2,,,,2,10681.01386,7257.230708,15160.84659,,8177.892682,7038.359452,9317.425912,,,,,2,,0.16,,,0.136,0.187,3.792290349,,,3.017500637,4.632853842,5.305197353,,,4.285076818,6.334919521,0.07028318,206,2931,0.06102876,0.0795376,0,,,,,,,0.324324324,0.173485162,0.475163487,0.054347826,0.031185138,0.077510514,0.068881686,0.058890022,0.078873349,,,,,,,0.194,,,0.154,0.236,0.408,,,0.338,0.484,8.2,0.057335316,0.099,,,0.274,,,0.229,0.325,0.667424124,25553,38286,,,0.174093704,,,0.140570335,0.21224846,0.296296296,8,27,0.194109996,0.401266591,353.9,135,38144,,,19.47022866,172,8834,16.56043027,22.38002706,,,,,,,,,,23.61005331,16.04188574,33.51258607,18.4972756,15.30523076,21.68932044,,,,,,,0.075706962,2289,30235,0.063792069,0.087621856,0.000550545,21,38144,,,1816.380952,0.000392804,15,38187,,,2545.8,0.00238301,91,38187,,,419.6373626,3371,,,,,,,,1962,3398,0.49,,,,,,,0.47,0.42,0.49,0.48,,,,,,,0.3,0.45,0.48,0.91986765,24187,26294,0.904097733,0.935637568,0.604733348,5647,9338,0.537692967,0.671773729,0.039484287,686,17374,,,0.132,1116,,0.086723404,0.177276596,,,,,,,0.701030928,0.316210707,1,0.155197657,0.056868001,0.253527314,0.130952381,0.089456744,0.172448018,3.665828131,118036,32199,3.350054707,3.981601556,0.238987924,2078,8695,0.185621656,0.292354193,15.46770134,59,38144,,,81.96290653,156,190330,69.10082901,94.82498406,,,,,,,,,,55.59486506,27.75275633,99.47457047,86.78645642,72.51185945,101.0610534,,,,8.8,,,,,1,,,,,0.094897628,1460,15385,0.076473502,0.113321753,0.074134553,0.05707712,0.091191985,0.01039974,0.003847898,0.016951583,0.014949626,0.007543277,0.022355975,0.85022644,15770,18548,0.824109489,0.87634339,,,,,,,,,,0.808010172,0.777274999,0.838745345,0.874373259,0.84749185,0.901254668,0.247,,18548,0.216090093,0.277909907,76.37138257,,,75.49602073,77.2467444,,,,,,,,,,73.95075144,70.71999547,77.18150741,76.50682808,75.58212721,77.43152895,,,,410.6050985,591,104856,375.5890708,445.6211263,,,,,,,,,,485.6650751,356.8484296,645.8315924,405.2434357,368.1469071,442.3399643,,,,33.58999535,13,38702,17.88525785,57.43991504,,,,,,,,,,,,,32.5732899,15.62015862,59.90343988,,,,6.745362563,20,2965,4.120242693,10.4176654,,,,,,,,,,,,,,,,,,,,,,0.115,,,0.099,0.133,0.169,,,0.146,0.192,0.104,,,0.09,0.121,90.2,29,32160,,,0.099,3780,,,,0.057335316,2238.198713,39037,,,27.19083581,31,114009,18.47485372,38.59522099,,,,,,,,,,,,,28.65153593,19.03873755,41.40944676,,,,0.36,,,0.344,0.375,0.085375968,1853,21704,0.071078095,0.09967384,0.051984039,469,9022,0.035303188,0.06866489,0.001178412,45,38187,,,848.6,0.964377682,449.4,466,,,,,,,,3.257566041,,,,,,,,2.944712358,3.340416426,3.285422878,,,,,,,,3.002268104,3.369702082,0.078998244,,,,,2889.4248,,,,,0.764354585,44156,57769,0.689773115,0.838936055,63904,,,56241.53192,71566.46809,,,,,,,,,,68309,32850.2766,103767.7234,70282,65751.95745,74812.04255,,,,,,,,,,,60.81128134,,,,,0.24405358,,63904,,,8.968609866,20,2230,,,,,,,,,,,,,,,,,,,,,,,,,,14.19328168,26,190330,9.185143548,20.95208364,13.66048442,,,,,,,,,,,,,14.83726562,9.298435369,22.46379845,,,,7.881048705,15,190330,4.410963134,12.99859133,,,,,,,,,,,,,7.945238968,4.230505128,13.58660061,,,,16.86403838,45,266840,12.30074531,22.56541017,,,,,,,,,,,,,18.70077456,13.53384328,25.18982061,,,,43.17073171,,4100,,,177,,0.669927411,19381,28930,,,0.74,,,,,47.31603612,,,,,0.774079413,11814,15262,0.74638581,0.801773016,0.07733172,1150,14871,0.059362995,0.095300444,0.8566374,13074,15262,0.833822689,0.879452111,38187,,,,,0.22470998,8581,38187,,,0.199177731,7606,38187,,,0.017492864,668,38187,,,0.005551628,212,38187,,,0.00544688,208,38187,,,0.000576112,22,38187,,,0.11197528,4276,38187,,,0.850236992,32468,38187,,,0.009201519,332,36081,0.003232141,0.015170897,0.496608794,18964,38187,,,0.535731077,20511,38286,, -39,041,39041,OH,Delaware County,2024,1,4338.972517,1655,608610,4011.752785,4666.19225,0,,,,2,2284.933503,1505.785576,3324.458283,,7280.689919,5126.277606,10035.472,,3824.298574,2140.430881,6307.598917,1,4424.790155,4063.414011,4786.166299,,,,,2,,0.104,,,0.086,0.124,2.806596662,,,2.246757582,3.428868921,4.405088115,,,3.719615299,5.135675969,0.065132792,954,14647,0.061136506,0.069129078,0,,,,0.091189156,0.077183445,0.105194867,0.114563107,0.087055446,0.142070767,0.075,0.05236107,0.09763893,0.058557405,0.054305606,0.062809204,,,,0.085020243,0.050236645,0.119803841,0.111,,,0.083,0.141,0.358,,,0.312,0.405,9,0.047167886,0.067,,,0.186,,,0.152,0.223,0.942220396,201752,214124,,,0.179812628,,,0.150873337,0.210194447,0.3,21,70,0.238220708,0.362962963,195.7,432,220740,,,3.778914421,198,52396,3.252545143,4.305283699,,,,,,,6.105538596,3.337954765,10.24405631,9.758897819,5.684917606,15.62494077,3.603980655,3.036602418,4.171358892,,,,5.310674456,2.546674825,9.766519406,0.043509563,8219,188901,0.037552116,0.04946701,0.001476851,326,220740,,,677.1165644,0.000631916,143,226296,,,1582.489511,0.001440591,326,226296,,,694.1595092,1672,,,,,,,1369,,1665,0.56,,,,,,0.45,0.44,0.25,0.57,0.59,,,,,,0.59,0.45,0.5,0.59,0.971636648,139288,143354,0.967540741,0.975732555,0.85367487,45891,53757,0.821193163,0.886156577,0.029862214,3459,115832,,,0.045,2494,,0.033085106,0.056914894,,,,0.011326097,0,0.034598816,0.268858801,0.07930986,0.458407742,0.044871795,0,0.09019191,0.039972218,0.030786677,0.04915776,3.876993166,221260,57070,3.635490021,4.118496312,0.12370269,6782,54825,0.10502523,0.142380151,8.15438978,180,220740,,,48.81951179,512,1048761,44.59073733,53.04828625,,,,,,,57.49137629,36.4446009,86.26529244,,,,53.33108462,48.49923331,58.16293592,,,,10,,,,,0,,,,,0.088227069,6310,71520,0.078999496,0.097454643,0.078585462,0.070282235,0.086888689,0.006641499,0.004144493,0.009138504,0.00545302,0.003166262,0.007739779,0.720104048,80836,112256,0.705488655,0.734719441,,,,0.56528371,0.485163749,0.645403671,0.720755849,0.661760066,0.779751632,0.631868132,0.5302057,0.733530564,0.699962911,0.68747955,0.712446273,0.399,,112256,0.378362799,0.419637201,81.177038,,,80.80827458,81.54580142,,,,85.128946,82.78249088,87.47540111,78.89448004,76.63874908,81.150211,89.57468445,80.95884588,98.19052303,80.97544356,80.5844534,81.36643372,,,,223.7767019,1655,608610,212.7430634,234.8103404,,,,119.0020513,85.76621132,160.8562027,287.3615299,224.8426992,361.8842888,181.3621932,110.7807393,280.099198,230.5169446,218.423006,242.6108831,,,,25.83128836,62,240019,19.80470066,33.11454588,,,,,,,,,,,,,23.14973141,16.82063028,31.0774339,,,,3.267973856,48,14688,2.409545944,4.332859217,,,,,,,,,,,,,2.771711742,1.907918829,3.892513797,,,,,,,0.084,,,0.071,0.097,0.133,,,0.114,0.154,0.083,,,0.071,0.096,81,148,182655,,,0.067,14190,,,,0.047167886,8217.306047,174214,,,15.38530874,99,643471,12.50441976,18.73106135,,,,,,,,,,,,,17.24351213,13.9007045,21.14763689,,,,0.336,,,0.319,0.353,0.050270794,6646,132204,0.043121858,0.05741973,0.028896305,1723,59627,0.021747369,0.036045242,0.00078658,178,226296,,,1271.325843,0.958052857,2465.07,2573,,,0.01943235,241,12402,0.006236855,0.032627844,3.760706195,,,,,,3.999704706,3.365764766,3.256754692,3.772496826,3.69160581,,,,,,4.314590167,3.091217051,3.153949189,3.670670673,0.096138189,,,,,4634.87075,,,,,0.727743048,70896,97419,0.68975778,0.765728316,121528,,,113205.4468,129850.5532,,,,152854,143933.3192,161774.6809,106574,88195.2766,124952.7234,84306,57624.97872,110987.0213,123131,119639.9362,126622.0638,,,,,,,,,,,43.0591459,,,,,0.207894477,,121528,,,9.717314488,121,12452,,,0.973413978,14,1438237,0.53217448,1.633223253,,,,,,,,,,,,,,,,,,,10.66247171,112,1048761,8.64252068,12.68242274,10.6792682,,,,,,,,,,,,,11.17757606,9.010703893,13.70830479,,,,5.339634102,56,1048761,4.033502217,6.933959025,,,,,,,,,,,,,5.355899523,3.935313516,7.122210954,,,,6.04907258,87,1438237,4.845059162,7.461508679,,,,,,,,,,,,,6.263614089,4.935015488,7.839847049,,,,7.669172932,,26600,,,204,,0.87630765,126070,143865,,,0.775,,,,,75.36347044,,,,,0.788786071,61885,78456,0.777332919,0.800239223,0.081195256,6285,77406,0.071806872,0.09058364,0.958690221,75215,78456,0.952650763,0.96472968,226296,,,,,0.244794429,55396,226296,,,0.152061901,34411,226296,,,0.044556687,10083,226296,,,0.002395093,542,226296,,,0.089692262,20297,226296,,,0.000707039,160,226296,,,0.031586948,7148,226296,,,0.811848199,183718,226296,,,0.00763726,1556,203738,0.005335207,0.009939312,0.499151554,112956,226296,,,0.203293419,43530,214124,, -39,043,39043,OH,Erie County,2024,1,9896.43185,1359,201464,8989.584727,10803.27897,0,,,,2,,,,2,19150.3997,15081.02569,23219.77371,,9631.757487,5708.389916,15222.32933,1,8963.769739,8034.476261,9893.063217,,,,,2,,0.164,,,0.139,0.192,3.712396795,,,2.963520033,4.538645817,4.962213975,,,4.06605639,5.901317654,0.085569817,440,5142,0.07792397,0.093215664,0,,,,,,,0.175043328,0.144036559,0.206050097,0.103333333,0.068887938,0.137778729,0.067696268,0.059796367,0.075596168,,,,0.114285714,0.07915042,0.149421008,0.201,,,0.162,0.244,0.412,,,0.352,0.471,7.6,0.068955277,0.121,,,0.277,,,0.232,0.323,0.839887863,63514,75622,,,0.192778599,,,0.159303838,0.229252036,0.255319149,12,47,0.17955074,0.335385166,517,387,74852,,,19.54620011,286,14632,17.28084967,21.81155055,,,,,,,39.81723238,30.45702778,51.14690073,24.16356877,15.78444537,35.40522684,14.39247163,12.13392452,16.65101874,,,,43.34677419,31.37027542,58.38782037,0.07770329,4474,57578,0.065788396,0.089618183,0.000774862,58,74852,,,1290.551724,0.000617441,46,74501,,,1619.586957,0.002751641,205,74501,,,363.4195122,2880,,,,,,,3025,,2844,0.46,,,,,,,0.46,0.25,0.47,0.5,,,,,,0.52,0.33,0.44,0.5,0.918554288,49838,54257,0.905847321,0.931261255,0.635327805,10650,16763,0.583907265,0.686748345,0.048699169,1782,36592,,,0.159,2273,,0.100617021,0.217382979,,,,,,,0.309477756,0.145187357,0.473768155,0.33220051,0.223558274,0.440842745,0.110465679,0.079143027,0.141788331,4.480299708,122581,27360,4.057833745,4.902765671,0.317175344,4770,15039,0.269464346,0.364886342,11.62293593,87,74852,,,96.43564197,359,372269,86.45987207,106.4114119,,,,,,,71.54188311,45.35141696,107.3479514,,,,105.9768342,94.49019083,117.4634775,,,,8.8,,,,,0,,,,,0.118933589,3725,31320,0.101485191,0.136381986,0.107660122,0.091084322,0.124235923,0.00798212,0.003500274,0.012463966,0.006385696,0.002568914,0.010202479,0.841400296,29587,35164,0.818695085,0.864105507,,,,,,,0.736105999,0.609167976,0.863044022,0.885064536,0.808632522,0.96149655,0.853409665,0.830549935,0.876269395,0.226,,35164,0.20246997,0.24953003,75.31288656,,,74.63487803,75.99089508,,,,,,,67.10612217,64.64061093,69.57163341,80.05335569,73.44542972,86.66128166,76.08900105,75.38614371,76.79185838,,,,453.6247948,1359,201464,427.0452953,480.2042943,,,,,,,812.7344662,687.405766,938.0631664,411.0223466,281.1389808,580.2409156,428.8401816,400.8293272,456.851036,,,,71.28124242,47,65936,52.37477579,94.78894131,,,,,,,201.6671148,112.8715533,332.6192373,,,,50.23022185,32.18345093,74.73858852,,,,8.11780253,43,5297,5.874893942,10.93462673,,,,,,,,,,,,,5.69166048,3.608024508,8.540285299,,,,,,,0.113,,,0.097,0.13,0.169,,,0.146,0.192,0.104,,,0.089,0.119,142.9,92,64381,,,0.121,9150,,,,0.068955277,5315.003765,77079,,,33.65688822,75,222837,26.47327764,42.18920083,,,,,,,,,,,,,37.99804582,29.62134085,48.00824494,,,,0.373,,,0.357,0.388,0.088808071,3785,42620,0.074510199,0.103105944,0.047429078,749,15792,0.033131206,0.06172695,0.001087234,81,74501,,,919.7654321,0.785079809,983.705,1253,,,0.108272859,373,3445,0.036050988,0.18049473,3.270569128,,,,,,,2.616614562,3.049096585,3.390304927,3.035551986,,,,,,,2.174950822,2.785867166,3.193178647,0.188983454,,,,,1440.780667,,,,,0.742054755,44153,59501,0.681425296,0.802684215,67925,,,61763.80851,74086.19149,56667,28715.85106,84618.14894,,,,37120,26501.44681,47738.55319,67371,52908.70213,81833.29787,69912,65727.48936,74096.51064,,,,,,,,,,,60.99023048,,,,,0.284711078,,67925,,,8.118081181,33,4065,,,3.059706345,16,522926,1.748886545,4.968771413,,,,,,,,,,,,,,,,,,,13.99552902,53,372269,10.24648624,18.66807443,14.23701678,,,,,,,,,,,,,15.76034451,11.35867006,21.30340732,,,,10.47629537,39,372269,7.449670128,14.32144064,,,,,,,,,,,,,9.398557159,6.294361234,13.49789584,,,,9.94404562,52,522926,7.426688901,13.04029284,,,,,,,,,,,,,10.81882383,7.949264819,14.38674219,,,,69.42028986,,6900,,,479,,0.687547942,40335,58665,,,0.669,,,,,72.14614729,,,,,0.713827368,22916,32103,0.695590359,0.732064378,0.117432134,3664,31201,0.100331873,0.134532395,0.84141669,27012,32103,0.825125889,0.857707491,74501,,,,,0.195299392,14550,74501,,,0.23623844,17600,74501,,,0.086602864,6452,74501,,,0.003637535,271,74501,,,0.008228078,613,74501,,,0.000630864,47,74501,,,0.04934162,3676,74501,,,0.82083462,61153,74501,,,0.004161237,297,71373,0.001278668,0.007043807,0.50661065,37743,74501,,,0.281888868,21317,75622,, -39,045,39045,OH,Fairfield County,2024,1,7830.115268,2241,447183,7330.822243,8329.408292,0,,,,2,,,,2,7528.99869,5852.772973,9205.224407,,6729.739502,4051.742797,10509.32186,1,7987.236887,7438.76406,8535.709714,,,,,2,,0.147,,,0.122,0.175,3.841203242,,,3.049802164,4.629212089,5.325880728,,,4.39712363,6.245957352,0.077966102,920,11800,0.073128374,0.082803829,0,,,,0.136942675,0.09891669,0.17496866,0.127949183,0.108227003,0.147671364,0.080291971,0.048115246,0.112468696,0.070238217,0.065173712,0.075302722,,,,0.070921986,0.040961555,0.100882417,0.181,,,0.141,0.221,0.44,,,0.371,0.504,8.3,0.059900952,0.094,,,0.248,,,0.201,0.294,0.842217202,133846,158921,,,0.204676972,,,0.168693872,0.24413113,0.378048781,31,82,0.32296771,0.432309492,304.2,490,161064,,,13.25449756,473,35686,12.05999037,14.44900476,,,,,,,10.46572475,7.476867201,14.25134667,8.460236887,4.057012433,15.55867685,13.99024599,12.60704546,15.37344652,,,,15.36570375,9.943873293,22.68280989,0.072367928,9663,133526,0.062836013,0.081899843,0.000558784,90,161064,,,1789.6,0.000497244,81,162898,,,2011.08642,0.001682034,274,162898,,,594.5182482,2727,,,,,,,1487,,2795,0.44,,,,,,0.23,0.42,,0.44,0.51,,,,,,0.48,0.4,0.33,0.51,0.938793279,101354,107962,0.930558957,0.947027601,0.678288947,27099,39952,0.643310428,0.713267465,0.034787795,2800,80488,,,0.103,3906,,0.072021277,0.133978723,,,,0.01773399,0,0.102357201,0.123550177,0.073817692,0.173282661,0.141568355,0.056874096,0.226262615,0.109514056,0.086523941,0.13250417,4.166171613,150078,36023,3.923330775,4.40901245,0.186759729,7064,37824,0.158921432,0.214598026,9.56141658,154,161064,,,83.91835327,662,788862,77.52565761,90.31104894,,,,,,,42.85439849,28.70026324,61.54606469,,,,92.41301139,85.12691427,99.69910852,,,,9.7,,,,,0,,,,,0.10995269,6275,57070,0.097008463,0.122896917,0.092509462,0.080639148,0.104379776,0.014455931,0.009570908,0.019340955,0.008147889,0.004859941,0.011435836,0.790107956,61039,77254,0.772097757,0.808118155,,,,,,,0.578988026,0.455823274,0.702152778,0.653953488,0.522194896,0.785712081,0.737309495,0.712781531,0.761837459,0.459,,77254,0.43437909,0.48362091,76.72330834,,,76.29986977,77.1467469,,,,83.55447746,79.17714407,87.93181085,77.52422168,75.57903464,79.46940872,95.75898507,73.16624473,118.3517254,76.48642073,76.03520251,76.93763894,,,,394.0170694,2241,447183,377.1858389,410.8482999,,,,,,,346.1700398,282.2584358,410.0816437,324.0252884,205.4042376,486.1970275,405.5047425,387.209843,423.7996421,,,,46.87809891,78,166389,37.05519187,58.50598901,,,,,,,55.14503143,26.44418604,101.4136762,,,,45.23707293,34.43655587,58.35252819,,,,5.925173523,70,11814,4.618963442,7.486100291,,,,,,,,,,,,,5.317014446,3.982808681,6.954785808,,,,,,,0.11,,,0.093,0.128,0.164,,,0.139,0.188,0.102,,,0.087,0.118,149.8,201,134213,,,0.094,14790,,,,0.059900952,8754.88358,146156,,,32.40325538,155,478347,27.30197885,37.5045319,,,,,,,,,,,,,36.57253179,30.66028669,42.48477689,,,,0.381,,,0.364,0.399,0.084934415,8081,95144,0.073019522,0.096849309,0.042403089,1713,40398,0.030488196,0.054317983,0.000883989,144,162898,,,1131.236111,0.934585784,1906.555,2040,,,0.056891216,478,8402,0.032985494,0.080796939,3.307796724,,,,,,3.637691187,3.259449231,3.124730782,3.320451332,3.146483988,,,,,,3.472646811,2.946250579,2.806706467,3.187629655,0.17514719,,,,,2119.3695,,,,,0.76306871,50886,66686,0.704489205,0.821648215,82447,,,77262.82979,87631.17021,,,,87500,59946.80851,115053.1915,84091,71943.76596,96238.23404,42416,10208.85106,74623.14894,84211,79726.23404,88695.76596,,,,,,,,,,,65.41651215,,,,,0.306439288,,82447,,,7.77034319,72,9266,,,2.653570837,29,1092867,1.777138036,3.81097036,,,,,,,13.33140769,6.888532888,23.28728633,,,,1.606849033,0.899341206,2.650253119,,,,13.82367688,109,788862,11.18126588,16.46608787,13.81737237,,,,,,,,,,,,,15.37073971,12.33693937,18.40454004,,,,9.88766096,78,788862,7.815785677,12.34024836,,,,,,,16.25511667,8.114495674,29.08489384,,,,9.719815114,7.501548102,12.38870226,,,,13.0848493,143,1092867,10.94019757,15.22950103,,,,,,,,,,,,,14.14027149,11.72799628,16.5525467,,,,8.888888889,,18000,,,160,,0.714778431,83311,116555,,,0.736,,,,,61.8509215,,,,,0.748837764,43974,58723,0.736253022,0.761422505,0.096659374,5567,57594,0.085397267,0.107921481,0.891558674,52355,58723,0.880558736,0.902558612,162898,,,,,0.236350354,38501,162898,,,0.166490687,27121,162898,,,0.099338236,16182,162898,,,0.002608995,425,162898,,,0.028668246,4670,162898,,,0.00066913,109,162898,,,0.026881852,4379,162898,,,0.81984432,133551,162898,,,0.008928631,1341,150191,0.006040285,0.011816977,0.49933087,81340,162898,,,0.355893809,56559,158921,, -39,047,39047,OH,Fayette County,2024,1,11823.21215,603,79598,10379.33445,13267.08985,0,,,,2,,,,2,,,,2,,,,2,11741.62286,10270.10529,13213.14043,,,,,2,,0.195,,,0.164,0.23,4.224698974,,,3.354816078,5.102584896,5.820676605,,,4.778828368,6.858132446,0.077292576,177,2290,0.066354543,0.088230609,0,,,,,,,,,,,,,0.076994867,0.065707883,0.088281852,,,,,,,0.244,,,0.198,0.291,0.439,,,0.367,0.506,7.3,0.038719746,0.15,,,0.305,,,0.254,0.359,0.645366309,18684,28951,,,0.163549465,,,0.130007753,0.195024284,0.333333333,10,30,0.236916088,0.429411676,335.6,97,28906,,,29.58079784,175,5916,25.1980455,33.96355018,,,,,,,,,,,,,28.95031752,24.39264042,33.50799462,,,,,,,0.092106385,2161,23462,0.079000002,0.105212768,0.000311354,9,28906,,,3211.777778,0.000520129,15,28839,,,1922.6,0.001629738,47,28839,,,613.5957447,2667,,,,,,,,,2680,0.37,,,,,,,0.5,,0.37,0.38,,,,,,,0.29,,0.39,0.84996465,16831,19802,0.825483143,0.874446157,0.467971015,3229,6900,0.404519403,0.531422626,0.038523158,529,13732,,,0.201,1313,,0.137851064,0.264148936,,,,,,,0.151515152,0,0.608939318,0.425531915,0.200087638,0.650976192,0.20320491,0.155267122,0.251142697,4.78559745,114103,23843,3.850596669,5.720598232,0.255600059,1723,6741,0.190258543,0.320941575,9.686570262,28,28906,,,108.0681596,155,143428,91.05488244,125.0814368,,,,,,,,,,,,,109.7445601,91.88153236,127.6075878,,,,9.2,,,,,0,,,,,0.120153387,1410,11735,0.091414672,0.148892103,0.111885068,0.083462229,0.140307906,0.008947593,0.003310315,0.014584871,0.008095441,0.001559019,0.014631864,0.855261082,10843,12678,0.829072193,0.881449971,,,,,,,,,,,,,0.846952596,0.80722299,0.886682202,0.374,,12678,0.321385254,0.426614746,72.90112962,,,71.88252296,73.91973629,,,,,,,,,,,,,72.78871084,71.75969187,73.81772981,,,,573.9035837,603,79598,525.7009879,622.1061794,,,,,,,,,,,,,581.2311158,531.0212525,631.4409792,,,,44.4763762,13,29229,23.68179716,76.05595784,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.132,,,0.112,0.153,0.19,,,0.163,0.216,0.114,,,0.098,0.131,86.9,21,24180,,,0.15,4330,,,,0.038719746,1124.034212,29030,,,40.69294268,35,86010,28.34412557,56.59403252,,,,,,,,,,,,,43.00912046,29.7850662,60.10093494,,,,0.389,,,0.372,0.405,0.104398897,1742,16686,0.087718046,0.121079748,0.062614324,445,7107,0.043550494,0.081678154,0.001282985,37,28839,,,779.4324324,0.901504298,314.625,349,,,,,,,,3.160960463,,,,,,,,2.996769128,3.186558004,3.357977608,,,,,,,,3.026795177,3.405688998,0.023020008,,,,,495.841,,,,,0.793282135,42558,53648,0.690229514,0.896334757,56901,,,49170.61702,64631.38298,,,,,,,40793,29980.23404,51605.76596,41130,18341.57447,63918.42553,57553,54032.14894,61073.85106,,,,,,,,,,,37.77643116,,,,,0.274090086,,56901,,,4.869141814,8,1643,,,,,,,,,,,,,,,,,,,,,,,,,,9.787805882,13,143428,5.057502127,17.09732712,9.063781131,,,,,,,,,,,,,9.753229725,4.868777138,17.4512221,,,,8.366567198,12,143428,4.323127359,14.61470916,,,,,,,,,,,,,8.325449385,4.156034337,14.89652868,,,,16.93370455,34,200783,11.72708266,23.6631548,,,,,,,,,,,,,16.17616927,10.91399348,23.09248746,,,,49.0625,,3200,,,157,,0.586195677,12612,21515,,,0.685,,,,,33.0764857,,,,,0.645008606,7495,11620,0.612528997,0.677488215,0.117055327,1280,10935,0.087068569,0.147042085,0.847332186,9846,11620,0.818387833,0.876276538,28839,,,,,0.232983113,6719,28839,,,0.183466833,5291,28839,,,0.022746975,656,28839,,,0.003190125,92,28839,,,0.012621797,364,28839,,,0.000416103,12,28839,,,0.024792815,715,28839,,,0.913831964,26354,28839,,,0.001722495,47,27286,0,0.006350132,0.507507195,14636,28839,,,0.480881489,13922,28951,, -39,049,39049,OH,Franklin County,2024,1,9319.144721,18247,3774702,9135.329223,9502.960218,0,3126.99363,1664.992411,5347.254341,1,3569.610771,3081.829795,4057.391747,,14244.79081,13771.68018,14717.90145,,6328.695835,5702.073813,6955.317858,,8308.350679,8091.500053,8525.201304,,,,,2,,0.155,,,0.133,0.18,3.528619087,,,2.982109426,4.127723637,5.541475563,,,4.864887853,6.225669973,0.092171668,11707,127013,0.090580805,0.09376253,0,0.142857143,0.073575111,0.212139175,0.097404203,0.090942941,0.103865464,0.125825513,0.122464285,0.12918674,0.075082652,0.07026493,0.079900374,0.073467811,0.071457332,0.075478289,,,,0.101164797,0.09248441,0.109845185,0.17,,,0.139,0.207,0.358,,,0.321,0.393,7.8,0.065436191,0.113,,,0.254,,,0.219,0.29,0.949066594,1256381,1323807,,,0.19629377,,,0.171079888,0.220538406,0.314018692,168,535,0.292600905,0.335579055,688.6,9099,1321414,,,18.01464988,5204,288876,17.52519434,18.50410543,,,,5.500213897,4.422821496,6.760696681,27.17420177,25.99670412,28.35169943,37.95473449,35.42827418,40.4811948,10.64409967,10.13781339,11.15038595,,,,32.2077185,29.24501557,35.17042143,0.091566293,102963,1124464,0.084417357,0.098715229,0.001015579,1342,1321414,,,984.6602086,0.00096004,1269,1321820,,,1041.623326,0.004276679,5653,1321820,,,233.8262869,2595,,,,,,1268,4384,1553,2304,0.49,,,,,,0.4,0.44,0.31,0.51,0.55,,,,,,0.54,0.4,0.38,0.57,0.915084426,808963,884031,0.911747528,0.918421324,0.719200585,300126,417305,0.706162269,0.732238901,0.034201292,24298,710441,,,0.208,62061,,0.182978723,0.233021277,0.267211202,0.119576464,0.41484594,0.155162455,0.115366328,0.194958582,0.371205688,0.345469263,0.396942114,0.253194968,0.219504112,0.286885824,0.106220361,0.094391317,0.118049405,4.429364279,140464,31712,4.307415043,4.551313514,0.306915172,93386,304273,0.291403567,0.322426777,9.406590213,1243,1321414,,,102.3446038,6719,6565075,99.89740814,104.7917995,,,,28.72606609,23.28304098,34.1690912,133.7794402,127.9655079,139.5933725,52.52924389,45.2671946,59.79129318,105.7158734,102.5586244,108.8731225,,,,10,,,,,1,,,,,0.151347656,78585,519235,0.145989017,0.156706295,0.128048067,0.123098472,0.132997662,0.022860555,0.020527647,0.025193462,0.008628078,0.007275241,0.009980915,0.730102163,498037,682147,0.72307211,0.737132216,0.581939799,0.468053078,0.695826521,0.652027548,0.620472218,0.683582878,0.72143615,0.705847607,0.737024694,0.67326236,0.644272537,0.702252183,0.776005788,0.769694849,0.782316728,0.247,,682147,0.239278266,0.254721734,75.89934649,,,75.73878401,76.05990898,96.28075194,72.83281818,119.7286857,84.90096016,83.74081741,86.0611029,71.87774548,71.50105438,72.25443657,84.70530913,82.47120186,86.9394164,76.59282902,76.40585556,76.77980249,,,,442.714307,18247,3774702,436.1935928,449.2350212,221.9274282,137.3765759,339.2396483,180.3311241,160.6693611,199.992887,636.0656004,619.0707747,653.060426,284.6401498,255.1391919,314.1411077,413.9652062,406.2786691,421.6517434,,,,66.29546066,910,1372643,61.98802134,70.60289997,,,,48.27577209,33.99059871,66.54179265,120.8801926,109.9632567,131.7971285,45.70627623,34.87870388,58.83303757,43.22691072,38.31068238,48.14313905,,,,7.707233778,993,128840,7.227853703,8.186613854,,,,5.432158378,3.962253596,7.268655299,13.19338728,12.02993411,14.35684045,5.85490806,4.50899264,7.476586882,5.02172573,4.483163581,5.560287879,,,,11.348756,8.475793802,14.88238362,0.108,,,0.093,0.124,0.171,,,0.151,0.192,0.11,,,0.097,0.124,479.1,5256,1097025,,,0.113,147840,,,,0.065436191,76129.38038,1163414,,,55.81920231,2212,3962794,53.49300186,58.14540276,,,,7.822379829,4.636038043,12.36273256,70.67807859,65.2694285,76.08672869,27.01094365,20.80171796,34.49237203,59.10510193,56.05123123,62.15897263,,,,0.369,,,0.355,0.382,0.107710069,88633,822885,0.099369643,0.116050494,0.048556085,15289,314873,0.03902417,0.058087999,0.002015403,2664,1321820,,,496.1786787,0.826716413,12159.345,14708,,,0.062488422,4385,70173,0.051474895,0.073501948,2.891065589,,,,,,3.165832315,2.463319615,2.58013338,3.308618018,2.687585299,,,,,,3.320733381,2.191925265,2.423816754,3.10874162,0.199067931,,,,,-247.8617312,,,,,0.870409702,53686,61679,0.846735825,0.894083579,69762,,,67617.31915,71906.68085,45493,35949.17021,55036.82979,84409,76887.12766,91930.87234,46744,45097.3617,48390.6383,60219,56874.48936,63563.51064,82397,81201.93617,83592.06383,,,,,,,,,,,57.00411564,,,,,0.362159915,,69762,,,9.798734652,889,90726,,,11.09971408,1008,9081315,10.41448215,11.78494602,,,,,,,34.37443582,31.8530312,36.89584044,7.963005044,5.714389901,10.8027155,4.209343269,3.676787867,4.741898671,,,,11.99243386,802,6565075,11.14575454,12.83911317,12.21615899,,,,7.942944338,5.140254776,11.72535273,8.654990494,7.150220601,10.15976039,3.750225982,2.050283442,6.292241961,14.21700924,13.06671946,15.36729901,,,,16.16127767,1061,6565075,15.18881246,17.13374288,,,,,,,37.88444324,34.79054704,40.97833944,6.794827568,4.43860696,9.955996718,10.94712783,9.931139236,11.96311642,,,,9.954505487,904,9081315,9.305584909,10.60342607,,,,3.636694245,2.155335491,5.74754478,14.25046639,12.62701498,15.8739178,8.93410322,6.54088642,11.9168417,9.453483425,8.655390325,10.25157652,,,,19.69555035,,128100,,,2523,,0.67376536,630577,935900,,,0.665,,,,,188.1783275,,,,,0.534618689,289959,542366,0.528711437,0.540525942,0.137027021,72558,529516,0.131776286,0.142277756,0.920544429,499272,542366,0.917073491,0.924015368,1321820,,,,,0.229233179,303005,1321820,,,0.132263092,174828,1321820,,,0.241530617,319260,1321820,,,0.003293187,4353,1321820,,,0.059931004,79218,1321820,,,0.000509903,674,1321820,,,0.063992072,84586,1321820,,,0.6,793092,1321820,,,0.025529448,31393,1229678,0.023738845,0.02732005,0.507808174,671231,1321820,,,0.013726321,18171,1323807,, -39,051,39051,OH,Fulton County,2024,1,7535.264462,634,116810,6558.818324,8511.7106,0,,,,2,,,,2,,,,2,8794.528381,5795.649619,12795.57706,,7433.123605,6393.633779,8472.613432,,,,,2,,0.157,,,0.132,0.184,3.783365552,,,3.044216849,4.601046676,5.109192708,,,4.183284036,6.073220915,0.072794571,236,3242,0.063851493,0.08173765,0,,,,,,,,,,0.063583815,0.037872412,0.089295218,0.074087203,0.064421996,0.08375241,,,,,,,0.193,,,0.153,0.235,0.417,,,0.346,0.487,8.2,0.059241403,0.098,,,0.267,,,0.222,0.317,0.508486878,21719,42713,,,0.168979322,,,0.136253938,0.203225284,0.194444444,7,36,0.111619251,0.289384315,256.8,109,42450,,,17.31886441,158,9123,14.61834726,20.01938156,,,,,,,,,,23.18392581,15.64209739,33.09649567,16.39562783,13.49807364,19.29318203,,,,,,,0.075710331,2598,34315,0.064986927,0.086433735,0.000376914,16,42450,,,2653.125,0.000450547,19,42171,,,2219.526316,0.001565057,66,42171,,,638.9545455,1324,,,,,,,4736,,1287,0.51,,,,,,,,0.32,0.51,0.52,,,,,,0.55,0.35,0.39,0.53,0.938586882,27418,29212,0.92788209,0.949291675,0.591522158,5833,9861,0.53624175,0.646802567,0.040181255,869,21627,,,0.103,978,,0.067255319,0.138744681,,,,,,,,,,0.133711507,0.045111368,0.222311647,0.10357187,0.068399353,0.138744387,3.68109144,128702,34963,3.320538995,4.041643884,0.165591615,1643,9922,0.126087817,0.205095412,15.31213192,65,42450,,,78.18793537,165,211030,66.25756724,90.11830349,,,,,,,,,,,,,82.87750705,69.83001919,95.9249949,,,,8.9,,,,,1,,,,,0.088661037,1470,16580,0.072177929,0.105144146,0.069978794,0.055139693,0.084817896,0.012665863,0.005699784,0.019631941,0.013872135,0.005284459,0.022459811,0.882726066,17952,20337,0.864307691,0.90114444,,,,,,,,,,0.787144363,0.702808124,0.871480601,0.86862021,0.853810535,0.883429884,0.321,,20337,0.286344246,0.355655754,76.9367209,,,76.10856491,77.76487688,,,,,,,,,,76.77784119,73.26923964,80.28644273,76.93052278,76.05997821,77.80106736,,,,387.9255519,634,116810,355.9883826,419.8627211,,,,,,,,,,434.1677212,308.7356923,593.5215675,385.2200666,351.9263431,418.51379,,,,46.15739672,20,43330,28.19413705,71.28635565,,,,,,,,,,,,,47.18421272,27.4865427,75.54649537,,,,6.658595642,22,3304,4.172906438,10.08119382,,,,,,,,,,,,,,,,,,,,,,0.114,,,0.097,0.131,0.17,,,0.148,0.194,0.101,,,0.086,0.117,45,16,35582,,,0.098,4200,,,,0.059241403,2529.489431,42698,,,22.14051319,28,126465,14.71221022,31.99920606,,,,,,,,,,,,,21.45213047,13.74478477,31.91906969,,,,0.363,,,0.347,0.379,0.082673631,2026,24506,0.069567248,0.095780014,0.05890902,608,10321,0.04103668,0.076781361,0.000758815,32,42171,,,1317.84375,0.919376026,559.9,609,,,,,,,,3.411092807,,,,,,,,3.160779533,3.475425372,3.252439806,,,,,,,,2.916918669,3.328069696,0.04822354,,,,,2104.334286,,,,,0.742183579,45838,61761,0.693202036,0.791165121,75383,,,67633.55319,83132.44681,,,,76792,56471.14894,97112.85106,,,,75829,64609.93617,87048.06383,71525,67513.25532,75536.74468,,,,,,,,,,,,,,,,0.206890148,,75383,,,9.669621273,24,2482,,,,,,,,,,,,,,,,,,,,,,,,,,16.14702156,35,211030,11.04455079,22.79477661,16.58531962,,,,,,,,,,,,,17.23687161,11.62964489,24.606706,,,,7.581860399,16,211030,4.333688316,12.31246628,,,,,,,,,,,,,8.555097501,4.889977411,13.89294236,,,,18.9137432,56,296081,14.28723835,24.56106876,,,,,,,,,,,,,20.52287731,15.41741707,26.77790309,,,,20.86956522,,4600,,,96,,0.711673699,22770,31995,,,0.764,,,,,19.52420609,,,,,0.81694232,13781,16869,0.792709898,0.841174743,0.074139185,1223,16496,0.056464823,0.091813547,0.878001067,14811,16869,0.859359925,0.896642209,42171,,,,,0.229423063,9675,42171,,,0.197695099,8337,42171,,,0.007469588,315,42171,,,0.004813735,203,42171,,,0.005430272,229,42171,,,0.000616537,26,42171,,,0.09371369,3952,42171,,,0.87785445,37020,42171,,,0.008684617,349,40186,0.00377553,0.013593703,0.498517939,21023,42171,,,0.821529745,35090,42713,, -39,053,39053,OH,Gallia County,2024,1,13330.71685,659,81510,11778.16392,14883.26978,0,,,,2,,,,2,28754.92426,11560.97091,59246.13396,1,,,,2,13564.87662,11941.90732,15187.84592,,,,,2,,0.19,,,0.159,0.221,4.384016707,,,3.551408716,5.365620559,5.620991331,,,4.710430765,6.671730247,0.096862745,247,2550,0.085382762,0.108342728,0,,,,,,,,,,,,,0.096498371,0.084820428,0.108176314,,,,,,,0.231,,,0.186,0.279,0.407,,,0.342,0.47,7.1,0.067033148,0.144,,,0.309,,,0.257,0.364,0.482819986,14108,29220,,,0.16075567,,,0.129946336,0.193911241,0.384615385,10,26,0.282346376,0.482736886,185.2,54,29158,,,28.50393701,181,6350,24.35132234,32.65655167,,,,,,,,,,,,,29.39142462,24.97315466,33.80969458,,,,,,,0.0875941,2013,22981,0.074487717,0.100700483,0.00075451,22,29158,,,1325.363636,0.000412825,12,29068,,,2422.333333,0.005022705,146,29068,,,199.0958904,3022,,,,,,,8633,,2846,0.4,,,,,,,0.53,,0.4,0.44,,,,,,,0.42,,0.44,0.863004103,17248,19986,0.842070806,0.8839374,0.585477669,3959,6762,0.500165424,0.670789914,0.047016726,565,12017,,,0.282,1873,,0.203361702,0.360638298,,,,,,,0.414414414,0,0.852276368,,,,0.173416068,0.109480104,0.237352032,4.659373821,111168,23859,4.00658319,5.312164453,0.178933451,1218,6807,0.119070017,0.238796885,14.40428013,42,29158,,,140.4475506,209,148810,121.4062286,159.4888726,,,,,,,,,,,,,144.9045504,124.8718237,164.9372772,,,,8.4,,,,,0,,,,,0.121038732,1375,11360,0.09709026,0.144987205,0.098743268,0.07526102,0.122225515,0.013644366,0.004000185,0.023288548,0.022447183,0.010579128,0.034315238,0.836604683,9718,11616,0.797598672,0.875610694,,,,,,,,,,,,,0.844798967,0.808994289,0.880603646,0.338,,11616,0.2785448,0.3974552,72.5511472,,,71.46108405,73.64121035,,,,,,,,,,,,,72.33698844,71.20929833,73.46467855,,,,610.6949437,659,81510,560.9253198,660.4645677,,,,,,,1069.392601,633.7898302,1690.101353,,,,618.329538,566.6854329,669.973643,,,,73.16748703,22,30068,45.85367458,110.7764547,,,,,,,,,,,,,73.38641617,44.82632953,113.3393678,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.134,,,0.115,0.155,0.192,,,0.167,0.22,0.114,,,0.098,0.131,90.3,22,24362,,,0.144,4220,,,,0.067033148,2073.603406,30934,,,78.77737514,70,88858,61.41082863,99.53047428,,,,,,,,,,,,,82.14147661,63.78607068,104.1338944,,,,0.415,,,0.396,0.431,0.09791411,1596,16300,0.081233259,0.114594962,0.062526767,438,7005,0.042271447,0.082782086,0.002476951,72,29068,,,403.7222222,0.826785714,277.8,336,,,,,,,,3.021214022,,,,,,,,,3.020858068,3.064018713,,,,,,,,,3.07415079,0.062696146,,,,,-2751.36545,,,,,0.766722721,41035,53520,0.66572275,0.867722691,51449,,,44321.51064,58576.48936,,,,,,,31595,76.53191489,63113.46809,125332,20348.68085,230315.3192,55762,51676.38298,59847.61702,,,,,,,,,,,55.62503586,,,,,0.303135144,,51449,,,13.60174102,25,1838,,,5.263989051,11,208967,2.627764368,9.418730476,,,,,,,,,,,,,5.128599636,2.459362872,9.43167733,,,,28.25781354,41,148810,19.99691068,38.78605686,27.55191183,,,,,,,,,,,,,29.42599988,20.71861951,40.55986467,,,,20.83193334,31,148810,14.154288,29.56926652,,,,,,,,,,,,,21.62754484,14.59201368,30.87466506,,,,15.31342269,32,208967,10.47436979,21.61798374,,,,,,,,,,,,,16.41151884,11.22546673,23.16816785,,,,24.19354839,,3100,,,75,,0.601001742,13799,22960,,,0.595,,,,,15.58124814,,,,,0.758913563,8578,11303,0.728478732,0.789348393,0.101621121,1097,10795,0.074599962,0.12864228,0.757232593,8559,11303,0.719350901,0.795114285,29068,,,,,0.233486996,6787,29068,,,0.201183432,5848,29068,,,0.021535709,626,29068,,,0.004713087,137,29068,,,0.007327646,213,29068,,,0.002683363,78,29068,,,0.015652952,455,29068,,,0.930473373,27047,29068,,,0.001348839,37,27431,0,0.005078508,0.498417504,14488,29068,,,0.803661875,23483,29220,, -39,055,39055,OH,Geauga County,2024,1,5780.354738,1042,256911,5166.359107,6394.350369,0,,,,2,,,,2,11349.95467,5442.744435,20872.97075,1,,,,2,5886.964722,5246.992207,6526.937237,,,,,2,,0.132,,,0.104,0.163,3.319453122,,,2.596937124,4.163958734,5.099392766,,,4.13765479,6.125744322,0.063836381,412,6454,0.057872189,0.069800572,0,,,,,,,,,,,,,0.062702004,0.056661677,0.068742331,,,,,,,0.164,,,0.118,0.212,0.352,,,0.285,0.423,8.9,0.040487556,0.075,,,0.218,,,0.167,0.271,0.830990492,79274,95397,,,0.171588614,,,0.13893008,0.207794742,0.260273973,19,73,0.199915621,0.323259309,157,150,95565,,,4.910352284,109,22198,3.988512445,5.832192124,,,,,,,,,,,,,4.775226703,3.881068631,5.813667169,,,,,,,0.105744039,7951,75191,0.092637656,0.118850422,0.000690629,66,95565,,,1447.954546,0.000460883,44,95469,,,2169.75,0.002566278,245,95469,,,389.6693878,2567,,,,,,,,,2590,0.51,,,,,,,0.62,,0.51,0.53,,,,,,0.42,0.38,,0.54,0.910761274,60225,66126,0.899320234,0.922202314,0.678837197,12680,18679,0.630296551,0.727377843,0.04028137,1947,48335,,,0.066,1380,,0.042170213,0.089829787,,,,0.136363636,0,0.851909016,0.125786164,0,0.411683707,0.056390977,0,0.147648696,0.060255408,0.039375859,0.081134956,3.959002325,182221,46027,3.651048878,4.266955771,0.084369449,1805,21394,0.058395821,0.110343078,9.626955475,92,95565,,,65.04631893,306,470434,57.75815584,72.33448202,,,,,,,,,,,,,65.75090881,58.24770362,73.254114,,,,9.1,,,,,0,,,,,0.114289761,4035,35305,0.100596961,0.12798256,0.082892668,0.069019542,0.096765794,0.017702875,0.012675799,0.022729951,0.021668319,0.016944503,0.026392135,0.738802492,34870,47198,0.715682532,0.761922451,,,,,,,0.945714286,0.83022494,1,0.60189166,0.468642023,0.735141296,0.700261177,0.676069711,0.724452643,0.43,,47198,0.397304525,0.462695476,80.00641826,,,79.45635535,80.55648117,,,,,,,,,,,,,79.84727208,79.28177753,80.41276663,,,,274.0743919,1042,256911,255.9043991,292.2443846,,,,,,,508.6696274,301.469859,803.917312,,,,277.0405284,258.3535011,295.7275557,,,,45.83733078,43,93810,33.17270356,61.74258374,,,,,,,,,,,,,47.81094188,34.45792151,64.62650409,,,,4.330343334,28,6466,2.877481698,6.258551801,,,,,,,,,,,,,4.516857558,3.001419044,6.528116784,,,,,,,0.099,,,0.082,0.119,0.157,,,0.132,0.185,0.087,,,0.072,0.103,44.4,36,81067,,,0.075,7140,,,,0.040487556,3781.092374,93389,,,17.34605377,49,282485,12.83270607,22.93240299,,,,,,,,,,,,,17.08861935,12.51101711,22.79382347,,,,0.332,,,0.313,0.353,0.105312174,5654,53688,0.091014302,0.119610046,0.106517724,2422,22738,0.079113468,0.133921979,0.000544679,52,95469,,,1835.942308,0.954983571,871.9,913,,,0.070296084,368,5235,0.036718179,0.103873989,3.737743983,,,,,,,,3.858716808,3.763454983,3.637291877,,,,,,,,3.79576654,3.647447733,0.03030854,,,,,5153.5502,,,,,0.772459953,55166,71416,0.699206544,0.845713362,101636,,,91799.06383,111472.9362,,,,147321,60990.44681,233651.5532,66458,47851.70213,85064.29787,125212,121588.6809,128835.3192,97386,92443.70213,102328.2979,,,,,,,,,,,57.47615152,,,,,0.248583179,,101636,,,7.971303308,40,5018,,,,,,,,,,,,,,,,,,,,,,,,,,13.14600208,67,470434,9.956653598,17.03217049,14.24216787,,,,,,,,,,,,,13.45521136,10.1363066,17.51380706,,,,7.65250811,36,470434,5.3597226,10.59429686,,,,,,,,,,,,,7.578070846,5.248034356,10.58959444,,,,9.110289161,60,658596,6.952110391,11.72674802,,,,,,,,,,,,,9.226236873,7.005868472,11.92705065,,,,9.223300971,,10300,,,95,,0.783072407,56021,71540,,,0.788,,,,,11.83187746,,,,,0.87070015,30754,35321,0.85568568,0.88571462,0.086733511,2993,34508,0.072557387,0.100909635,0.861357266,30424,35321,0.846358902,0.87635563,95469,,,,,0.220060962,21009,95469,,,0.223444259,21332,95469,,,0.013177052,1258,95469,,,0.001707361,163,95469,,,0.007196053,687,95469,,,0.000157119,15,95469,,,0.018938085,1808,95469,,,0.950046612,90700,95469,,,0.006410186,580,90481,0.00423981,0.008580561,0.497428485,47489,95469,,,0.785538329,74938,95397,, -39,057,39057,OH,Greene County,2024,1,7348.810158,2270,470711,6878.941953,7818.678362,0,,,,2,,,,2,10058.01472,7831.451286,12284.57815,,,,,2,7569.342223,7050.690403,8087.994042,,,,,2,,0.138,,,0.115,0.163,3.339156119,,,2.661780292,4.13153335,5.134463479,,,4.269008682,6.072679066,0.074537766,899,12061,0.069850367,0.079225166,0,,,,0.112412178,0.082451304,0.142373052,0.126473741,0.10514558,0.147801902,0.07027027,0.044225569,0.096314972,0.06773708,0.062803072,0.072671088,,,,0.095384615,0.063448246,0.127320985,0.159,,,0.122,0.198,0.369,,,0.31,0.428,8,0.062173362,0.105,,,0.249,,,0.206,0.294,0.86271031,144906,167966,,,0.169272933,,,0.137916342,0.202910972,0.333333333,24,72,0.272958169,0.393837839,301.6,508,168412,,,10.86423214,465,42801,9.876751409,11.85171288,,,,,,,7.836045811,5.852333816,10.27593155,12.73074475,7.776269628,19.66160274,11.49757523,10.3065504,12.68860007,,,,16.28664495,11.34424495,22.65078054,0.065735981,8683,132089,0.056204066,0.075267896,0.000896611,151,168412,,,1115.311258,0.000920122,155,168456,,,1086.812903,0.003609251,608,168456,,,277.0657895,2429,,,,,,,1153,,2470,0.42,,,,,,0.2,0.42,,0.42,0.43,,,,,,0.45,0.36,0.28,0.43,0.942026946,107116,113708,0.935611599,0.948442293,0.786005983,33105,42118,0.750240982,0.821770984,0.035835699,2941,82069,,,0.107,3640,,0.07006383,0.14393617,,,,0.065065065,0,0.169100942,0.257505003,0.138507883,0.376502124,0.166552901,0.058512198,0.274593604,0.115309893,0.089831361,0.140788425,4.618649028,157810,34168,4.277854275,4.959443781,0.202689749,6978,34427,0.175519645,0.229859854,9.322376078,157,168412,,,79.55185,670,842218,73.52807206,85.57562794,,,,,,,53.68496989,36.72047966,75.78715936,,,,87.13141493,80.23377371,94.02905614,,,,10.3,,,,,0,,,,,0.100128954,6600,65915,0.089123928,0.11113398,0.088021431,0.077757014,0.098285849,0.00849579,0.005954268,0.011037312,0.007357961,0.00370695,0.011008972,0.788166727,63289,80299,0.777174643,0.799158811,,,,0.723190933,0.610501148,0.835880718,0.748193119,0.683106524,0.813279715,0.7828125,0.693090876,0.872534124,0.800142873,0.785433629,0.814852117,0.241,,80299,0.222773718,0.259226283,77.54835557,,,77.14208791,77.95462323,,,,88.82964492,85.35790631,92.30138353,74.8625113,72.99579283,76.72922976,87.61440179,82.08341582,93.14538777,77.21207144,76.77732272,77.64682017,,,,370.1182118,2270,470711,354.0766212,386.1598025,,,,,,,513.3214755,431.5257139,595.1172371,,,,380.5091094,362.9692656,398.0489533,,,,39.63487137,65,163997,30.58935696,50.51789717,,,,,,,108.0613789,60.48113344,178.230811,,,,34.43607022,25.02130134,46.22881695,,,,4.891969018,60,12265,3.733087725,6.296933829,,,,,,,,,,,,,4.311611955,3.132823847,5.788137803,,,,,,,0.102,,,0.087,0.118,0.159,,,0.137,0.183,0.098,,,0.083,0.114,144,207,143770,,,0.105,17530,,,,0.062173362,10045.53664,161573,,,27.39072775,139,507471,22.83715538,31.94430011,,,,,,,,,,,,,31.90750134,26.52502681,37.28997586,,,,0.353,,,0.336,0.37,0.073294712,7123,97183,0.062571308,0.084018116,0.046125713,1690,36639,0.03301933,0.059232096,0.001062592,179,168456,,,941.0949721,0.897806268,1575.65,1755,,,0.032481061,343,10560,0.017237477,0.047724644,3.331397751,,,,,,3.547010253,2.774328209,3.275089047,3.394876965,3.163130504,,,,,,3.725738598,2.383974951,2.944407801,3.23802435,0.055370813,,,,,1531.570171,,,,,0.772014107,55602,72022,0.72325813,0.820770084,82769,,,75372.23404,90165.76596,,,,142527,104767.5106,180286.4894,61034,52572.04255,69495.95745,89904,59995.23404,119812.766,82334,79165.82979,85502.17021,,,,,,,,,,,43.57525297,,,,,0.305247134,,82769,,,7.166901944,66,9209,,,2.048812969,24,1171410,1.312713128,3.048471295,,,,,,,,,,,,,1.530212516,0.856448329,2.523852838,,,,12.35844049,105,842218,9.910516634,14.80636434,12.46708097,,,,,,,,,,,,,13.24287566,10.60700053,16.3350382,,,,9.261260149,78,842218,7.32064183,11.5584718,,,,,,,,,,,,,9.523335726,7.38045438,12.09429973,,,,7.768415841,91,1171410,6.254643848,9.537893216,,,,,,,,,,,,,8.467175921,6.744058358,10.49633849,,,,18.20512821,,15600,,,284,,0.680377634,88643,130285,,,0.755,,,,,71.19521018,,,,,0.670381118,44819,66856,0.659361079,0.681401157,0.096043385,6287,65460,0.084979318,0.107107453,0.914532727,61142,66856,0.905297635,0.92376782,168456,,,,,0.204730019,34488,168456,,,0.187128983,31523,168456,,,0.069270314,11669,168456,,,0.003110605,524,168456,,,0.03164031,5330,168456,,,0.000860759,145,168456,,,0.033059078,5569,168456,,,0.83233604,140212,168456,,,0.004069144,645,158510,0.00245296,0.005685328,0.502237973,84605,168456,,,0.224247764,37666,167966,, -39,059,39059,OH,Guernsey County,2024,1,11847.43579,835,106394,10560.62115,13134.25043,0,,,,2,,,,2,,,,2,,,,2,12082.60034,10737.82234,13427.37834,,,,,2,,0.194,,,0.164,0.226,4.337785506,,,3.506491053,5.262984265,5.332036359,,,4.370033722,6.377845355,0.07631579,232,3040,0.06687761,0.085753969,0,,,,,,,,,,,,,0.076949861,0.067202649,0.086697073,,,,,,,0.239,,,0.194,0.286,0.443,,,0.377,0.51,6.4,0.125107395,0.147,,,0.303,,,0.253,0.354,0.60174827,23130,38438,,,0.166132441,,,0.134606587,0.20090146,0.344827586,10,29,0.246908102,0.441557488,305.6,117,38287,,,27.10688592,211,7784,23.44930055,30.76447129,,,,,,,,,,,,,26.50028043,22.72216137,30.27839948,,,,37.38317757,19.31643336,65.300888,0.099016716,3021,30510,0.084718844,0.113314588,0.000365659,14,38287,,,2734.785714,0.000524962,20,38098,,,1904.9,0.00262481,100,38098,,,380.98,3337,,,,,,,,,3340,0.45,,,,,,,0.58,,0.45,0.43,,,,,,,0.4,,0.43,0.862446472,23161,26855,0.839658319,0.885234625,0.482213439,4270,8855,0.424350047,0.54007683,0.0491757,871,17712,,,0.21,1722,,0.139702128,0.280297872,,,,,,,0.419354839,0,0.978809702,0.467105263,0,0.978845123,0.229891231,0.183122144,0.276660319,4.189130616,100514,23994,3.654584102,4.72367713,0.277646503,2350,8464,0.21066349,0.344629516,16.19348604,62,38287,,,99.97114235,194,194056,85.90322328,114.0390614,,,,,,,,,,,,,102.4378017,87.79455443,117.081049,,,,8.6,,,,,0,,,,,0.144967682,2355,16245,0.121269975,0.16866539,0.113495025,0.091513458,0.135476592,0.016928286,0.008449319,0.025407252,0.023391813,0.012923376,0.03386025,0.839432367,13901,16560,0.806114325,0.872750409,,,,,,,,,,,,,0.872564735,0.838789654,0.906339816,0.239,,16560,0.208810378,0.269189623,73.18935203,,,72.27268883,74.10601524,,,,,,,,,,,,,72.985603,72.03828972,73.93291627,,,,562.9328327,835,106394,521.8841214,603.981544,,,,,,,,,,,,,570.2679387,527.8535231,612.6823542,,,,88.57395926,33,37257,60.970238,124.3907702,,,,,,,,,,,,,94.00981227,64.302642,132.713805,,,,10.95360825,34,3104,7.585692134,15.30656962,,,,,,,,,,,,,11.25127855,7.744862452,15.80097827,,,,,,,0.137,,,0.118,0.158,0.19,,,0.164,0.217,0.12,,,0.103,0.139,98.8,32,32385,,,0.147,5680,,,,0.125107395,5015.18016,40087,,,37.95033681,44,115941,27.57477282,50.94655582,,,,,,,,,,,,,38.34180809,27.63340277,51.82698604,,,,0.365,,,0.348,0.382,0.111381784,2469,22167,0.093509443,0.129254124,0.066461117,582,8757,0.046205798,0.086716436,0.00110242,42,38098,,,907.0952381,0.872097625,330.525,379,,,0.074840764,141,1884,0.028702741,0.120978788,2.983747148,,,,,,,,,3.000710234,2.772505195,,,,,,,,,2.784703504,0.04797143,,,,,389.8856333,,,,,0.780924376,39571,50672,0.700427463,0.86142129,56004,,,50697.10638,61310.89362,,,,97135,71313.04255,122956.9575,116000,35536.34043,196463.6596,,,,53545,48549.08511,58540.91489,,,,,,,,,,,57.68842947,,,,,0.278480109,,56004,,,8.837209302,19,2150,,,4.038520139,11,272377,2.016014703,7.226028084,,,,,,,,,,,,,,,,,,,17.62564328,35,194056,12.05592695,24.8821493,18.03603084,,,,,,,,,,,,,17.90842667,12.08274027,25.56539261,,,,14.94413984,29,194056,10.00832499,21.46227761,,,,,,,,,,,,,14.71181195,9.695176777,21.40491399,,,,12.48269861,34,272377,8.644631663,17.44332014,,,,,,,,,,,,,13.19522333,9.138075742,18.43900201,,,,38.46153846,,3900,,,150,,0.602345944,18230,30265,,,0.614,,,,,37.23844863,,,,,0.726074853,11737,16165,0.701985099,0.750164607,0.109640587,1690,15414,0.085108668,0.134172505,0.822641509,13298,16165,0.796768493,0.848514526,38098,,,,,0.219224106,8352,38098,,,0.204367683,7786,38098,,,0.015565122,593,38098,,,0.003910967,149,38098,,,0.005092131,194,38098,,,0.000393722,15,38098,,,0.0130978,499,38098,,,0.941807969,35881,38098,,,0.00088476,32,36168,0,0.004102922,0.499501286,19030,38098,,,0.624668297,24011,38438,, -39,061,39061,OH,Hamilton County,2024,1,9397.119732,12402,2303106,9156.332804,9637.906659,0,,,,2,3513.377712,2653.967766,4562.413197,,14440.50592,13858.80278,15022.20906,,4595.020213,3710.615145,5479.42528,,7944.608637,7672.172978,8217.044296,,,,,2,,0.157,,,0.135,0.181,3.552677739,,,2.928327721,4.20641586,5.569324055,,,4.842935319,6.355603644,0.097931184,7252,74052,0.095790423,0.100071944,0,,,,0.092549923,0.081418903,0.103680944,0.150250272,0.145629852,0.154870692,0.077324798,0.070529743,0.084119852,0.070887405,0.068372146,0.073402665,0.113402062,0.050299929,0.176504195,0.1,0.087631327,0.112368673,0.172,,,0.139,0.206,0.353,,,0.311,0.397,7.7,0.079209878,0.109,,,0.257,,,0.22,0.295,0.976307397,810959,830639,,,0.204477985,,,0.175861045,0.234850547,0.370242215,107,289,0.341684419,0.398683445,801.1,6618,826139,,,20.35877457,3752,184294,19.70733176,21.01021737,,,,4.034698406,2.464498605,6.231264455,36.80775058,35.18151746,38.4339837,67.29706496,61.66248021,72.93164972,9.058335314,8.494350205,9.622320422,,,,25.84999363,22.29393844,29.40604883,0.070538661,47508,673503,0.063389725,0.077687598,0.001096668,906,826139,,,911.8532009,0.000761178,628,825037,,,1313.753185,0.004707668,3884,825037,,,212.419413,3113,,,,,,1931,4429,2457,2853,0.5,,,,,,0.45,0.42,0.51,0.51,0.54,,,,,,0.55,0.37,0.37,0.56,0.921434638,516442,560476,0.917451445,0.92541783,0.722480141,163714,226600,0.705846633,0.73911365,0.035925109,15026,418259,,,0.181,33164,,0.147638298,0.214361702,0.583333333,0.209095918,0.957570749,0.104362868,0.068513529,0.140212206,0.393687262,0.366257659,0.421116865,0.363550221,0.311118966,0.415981476,0.083172047,0.072677419,0.093666676,5.3804199,141462,26292,5.191597755,5.569242044,0.336777046,63534,188653,0.320641761,0.352912331,10.494602,867,826139,,,102.0013426,4174,4092103,98.90687643,105.0958087,,,,38.65647281,28.19629653,51.72540203,118.6123474,112.0939263,125.1307686,38.22708252,28.87632732,49.64104634,105.0196686,101.1185235,108.9208136,,,,12,,,,,0,,,,,0.152790273,52650,344590,0.146707272,0.158873273,0.134636904,0.12867385,0.140599959,0.016062567,0.013948675,0.018176459,0.010055428,0.007918004,0.012192852,0.736759304,300656,408079,0.729874901,0.743643707,,,,0.708968726,0.673696777,0.744240674,0.685921145,0.666567311,0.705274979,0.666708307,0.621762285,0.71165433,0.808529479,0.800571453,0.816487505,0.303,,408079,0.293031285,0.312968715,75.83172749,,,75.63422995,76.02922502,,,,85.42280307,83.62001718,87.22558897,71.40781082,70.98139768,71.83422397,100.842791,90.30815331,111.3774286,77.09857236,76.87122763,77.32591709,,,,442.5091226,12402,2303106,434.4249275,450.5933176,,,,143.6222549,115.4892533,176.5361348,659.8644842,639.9805968,679.7483717,172.5324643,137.5237272,207.5412014,388.8627017,379.6794852,398.0459182,,,,65.44611051,553,844970,59.99132916,70.90089186,,,,60.50129646,33.07662176,101.5108951,120.431719,107.1320241,133.731414,49.94265843,32.9125266,72.66394592,38.39196242,32.73595787,44.04796696,,,,8.443215369,632,74853,7.784943343,9.101487395,,,,,,,15.60629383,14.00522715,17.2073605,4.563709383,2.953392086,6.736935323,4.962354552,4.279708091,5.645001013,,,,10.52631579,6.672781253,15.79464206,0.107,,,0.093,0.124,0.162,,,0.142,0.183,0.112,,,0.097,0.128,457.8,3159,690077,,,0.109,90250,,,,0.079209878,63555.94659,802374,,,46.717639,1150,2461597,44.01748809,49.41778991,,,,,,,46.0267451,40.79208954,51.26140066,13.09086149,6.764239158,22.86710054,52.26611386,48.7103146,55.82191313,,,,0.383,,,0.368,0.397,0.079723216,38850,487311,0.07138279,0.088063641,0.04755092,9273,195012,0.036827516,0.058274324,0.001934459,1596,825037,,,516.9404762,0.823358048,6884.92,8362,,,0.07658584,3389,44251,0.061638595,0.091533085,3.093022888,,,,,,3.426280581,2.64142377,2.710385385,3.551947211,2.96719261,,,,,,3.454683065,2.421634559,2.706491591,3.483746318,0.301792555,,,,,-5115.87745,,,,,0.819596828,52814,64439,0.790701861,0.848491795,67033,,,64347.38298,69718.61702,41429,12944.06383,69913.93617,92209,82056.31915,102361.6809,39164,37616.25532,40711.74468,54925,45656.40426,64193.59575,83007,80681.21277,85332.78723,,,,,,,,,,,59.96558481,,,,,0.376903913,,67033,,,9.782485769,519,53054,,,11.00056054,628,5708800,10.14017904,11.86094204,,,,,,,34.23657136,31.26807933,37.20506339,,,,2.715286607,2.18573162,3.244841593,,,,13.36628032,545,4092103,12.21703448,14.51552616,13.31833534,,,,10.64478906,5.667901856,18.20291348,10.58490424,8.56463482,12.60517366,,,,14.99566094,13.48877992,16.50254197,,,,17.17943072,703,4092103,15.9094791,18.44938235,,,,,,,39.07120564,35.33004917,42.81236211,,,,10.07192942,8.863800962,11.28005788,,,,7.742432735,442,5708800,7.020623594,8.464241876,,,,,,,12.05984901,10.29802839,13.82166963,,,,6.586586323,5.761815256,7.411357389,,,,33.33740831,,81800,,,2727,,0.710242528,430929,606735,,,0.669,,,,,184.9988657,,,,,0.591670947,206192,348491,0.584575,0.598766894,0.146499752,49572,338376,0.139651319,0.153348184,0.895096287,311933,348491,0.889264549,0.900928024,825037,,,,,0.225977744,186440,825037,,,0.168114885,138701,825037,,,0.262113093,216253,825037,,,0.002798662,2309,825037,,,0.02970291,24506,825037,,,0.001404786,1159,825037,,,0.040729083,33603,825037,,,0.639812518,527869,825037,,,0.012189996,9454,775554,0.010463916,0.013916076,0.513569695,423714,825037,,,0.023820216,19786,830639,, -39,063,39063,OH,Hancock County,2024,1,7739.351582,1095,208846,7027.767067,8450.936096,0,,,,2,,,,2,11215.78477,6410.790077,18213.73179,1,9530.602063,6600.218985,13318.06111,,7745.395287,6979.632404,8511.15817,,,,,2,,0.148,,,0.123,0.174,3.644491905,,,2.915628329,4.473583826,4.881556512,,,4.036841242,5.779869542,0.080144523,488,6089,0.073324595,0.086964451,0,,,,0.085470086,0.034809621,0.13613055,0.112149533,0.052358944,0.171940122,0.06981982,0.046114955,0.093524685,0.079401175,0.072106412,0.086695938,,,,0.117647059,0.063497076,0.171797042,0.192,,,0.151,0.231,0.374,,,0.316,0.434,8.2,0.038278324,0.105,,,0.249,,,0.208,0.295,0.706753871,52950,74920,,,0.181948323,,,0.149477347,0.217916048,0.142857143,7,49,0.077636595,0.22263881,333.5,249,74656,,,16.36539887,287,17537,14.47200173,18.25879602,,,,,,,,,,22.69503546,15.52338746,32.0386185,15.66739013,13.64694649,17.68783376,,,,26.57807309,15.19166521,43.16112558,0.07397858,4476,60504,0.063255176,0.084701984,0.000522396,39,74656,,,1914.25641,0.000480891,36,74861,,,2079.472222,0.002164011,162,74861,,,462.1049383,2418,,,,,,,,3271,2369,0.41,,,,,,0.47,0.38,0.35,0.41,0.54,,,,,,0.47,0.45,0.41,0.55,0.938325906,48214,51383,0.92857527,0.948076541,0.691280901,12947,18729,0.637089557,0.745472246,0.032830479,1321,40237,,,0.115,1816,,0.074489362,0.155510638,,,,,,,0.322404372,0.149917914,0.494890829,0.066623959,0.017488299,0.115759619,0.127412247,0.096655899,0.158168596,4.215543152,127634,30277,3.802324125,4.628762178,0.178894595,2926,16356,0.141209537,0.216579653,12.85897985,96,74656,,,80.2585225,303,377530,71.22148847,89.29555653,,,,,,,,,,91.70946442,56.01852341,141.6378297,81.94049445,72.2380901,91.64289881,,,,8.8,,,,,1,,,,,0.095096815,3045,32020,0.078162493,0.112031136,0.080696203,0.063647607,0.097744798,0.00905684,0.004097202,0.014016477,0.011399126,0.006718899,0.016079352,0.825762104,30393,36806,0.803498647,0.848025561,,,,,,,0.803048066,0.722058128,0.884038003,0.818365969,0.738605589,0.898126349,0.838940463,0.8129553,0.864925626,0.171,,36806,0.149224737,0.192775263,76.89816726,,,76.29604442,77.50029011,,,,,,,,,,75.38835416,72.21784082,78.55886751,76.82586095,76.18923285,77.46248905,,,,394.2143323,1095,208846,369.7889698,418.6396949,,,,,,,636.6547304,398.98813,963.9029129,462.7297249,338.7763158,617.2166075,393.925309,368.3259508,419.5246671,,,,52.30897166,39,74557,37.19679237,71.50808625,,,,,,,,,,,,,55.220802,38.24201066,77.16553588,,,,5.807388288,36,6199,4.067423361,8.039873284,,,,,,,,,,,,,5.595970901,3.775578068,7.988596418,,,,,,,0.11,,,0.094,0.127,0.159,,,0.136,0.182,0.097,,,0.083,0.113,95.1,60,63087,,,0.105,7850,,,,0.038278324,2862.529587,74782,,,28.33789396,64,225846,21.82363139,36.18685795,,,,,,,,,,,,,28.11132083,21.23498965,36.50488836,,,,0.352,,,0.333,0.368,0.083440685,3692,44247,0.070334302,0.096547068,0.049205236,842,17112,0.034907364,0.063503108,0.001282377,96,74861,,,779.8020833,0.913228181,868.48,951,,,,,,,,3.245858694,,,,,,,2.595977471,2.80125468,3.313754583,3.179522896,,,,,,,2.770492078,2.616401342,3.248432762,0.06601786,,,,,2632.848422,,,,,0.77744908,45728,58818,0.71380653,0.84109163,72658,,,64545.14894,80770.85106,,,,83714,35627.87234,131800.1277,59167,28004.78723,90329.21277,52159,36700.61702,67617.38298,67881,64609.17021,71152.82979,,,,,,,,,,,34.15995062,,,,,0.266164772,,72658,,,7.726980039,36,4659,,,3.402807316,18,528975,2.016719274,5.377902598,,,,,,,,,,,,,2.978121444,1.628166706,4.99678174,,,,15.32555848,57,377530,11.47989496,20.04620783,15.0981379,,,,,,,,,,,,,16.60791998,12.36568729,21.83634765,,,,9.005906815,34,377530,6.236852273,12.58485209,,,,,,,,,,,,,9.868745682,6.793190438,13.8593881,,,,12.47696016,66,528975,9.649680083,15.87375253,,,,,,,,,,,,,12.12520873,9.183514686,15.70961431,,,,18.26666667,,7500,,,137,,0.676868017,38771,57280,,,0.737,,,,,56.49185336,,,,,0.688510991,21580,31343,0.664107503,0.712914479,0.086349888,2655,30747,0.070373114,0.102326662,0.890916632,27924,31343,0.875357232,0.906476032,74861,,,,,0.215506071,16133,74861,,,0.185276713,13870,74861,,,0.019128785,1432,74861,,,0.004034143,302,74861,,,0.021199289,1587,74861,,,0.000187013,14,74861,,,0.06330399,4739,74861,,,0.876183861,65592,74861,,,0.006310267,445,70520,0.003054913,0.009565621,0.502718371,37634,74861,,,0.318085958,23831,74920,, -39,065,39065,OH,Hardin County,2024,1,10722.9824,592,87150,9392.81122,12053.15357,0,,,,2,,,,2,,,,2,,,,2,10890.67159,9520.101942,12261.24124,,,,,2,,0.177,,,0.151,0.206,4.143642506,,,3.335999474,4.986645533,5.43266297,,,4.454988225,6.46328222,0.075435936,199,2638,0.065357891,0.085513982,0,,,,,,,,,,,,,0.075914149,0.065564675,0.086263624,,,,,,,0.231,,,0.188,0.275,0.413,,,0.344,0.484,7.5,0.03297941,0.14,,,0.288,,,0.241,0.337,0.564210321,17319,30696,,,0.18683499,,,0.150419676,0.224973236,0.25,7,28,0.151262701,0.356398836,251.5,77,30621,,,19.32474456,174,9004,16.45333455,22.19615456,,,,,,,,,,,,,19.67886032,16.65778041,22.69994022,,,,,,,0.098933034,2383,24087,0.083443673,0.114422396,0.000293916,9,30621,,,3402.333333,0.000164387,5,30416,,,6083.2,0.000624671,19,30416,,,1600.842105,2502,,,,,,,,,2480,0.39,,,,,,,,,0.39,0.44,,,,,,,,,0.44,0.915923019,17038,18602,0.895843807,0.936002231,0.469515048,3011,6413,0.400630973,0.538399122,0.042221202,552,13074,,,0.179,1235,,0.117042553,0.240957447,,,,,,,,,,0.131672598,0,0.270822456,0.310728911,0.241375127,0.380082695,4.207828662,109433,26007,3.480088147,4.935569176,0.183090546,1282,7002,0.123136506,0.243044586,13.06293067,40,30621,,,93.4107064,146,156299,78.25848527,108.5629275,,,,,,,,,,,,,95.34113192,79.60395531,111.0783085,,,,8.9,,,,,0,,,,,0.100636943,1185,11775,0.076946644,0.124327242,0.069969578,0.049715648,0.090223509,0.01104034,0.003902286,0.018178394,0.026751592,0.013818633,0.039684552,0.817258883,11109,13593,0.786602465,0.847915301,,,,,,,,,,,,,0.797313401,0.746384816,0.848241985,0.386,,13593,0.344760008,0.427239993,73.42494681,,,72.43943454,74.41045909,,,,,,,,,,,,,73.21619084,72.21732787,74.21505382,,,,555.4518766,592,87150,508.6810891,602.2226641,,,,,,,,,,,,,566.948573,518.6946108,615.2025352,,,,58.03156917,20,34464,35.44719007,89.62505195,,,,,,,,,,,,,53.73964722,31.30532487,86.04238103,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.13,,,0.112,0.149,0.186,,,0.161,0.211,0.108,,,0.093,0.125,82.2,21,25544,,,0.14,4300,,,,0.03297941,1057.253926,32058,,,42.80134824,40,93455,30.5779107,58.28328818,,,,,,,,,,,,,44.22771604,31.45022963,60.46074378,,,,0.375,,,0.356,0.391,0.104567096,1779,17013,0.086694755,0.122439436,0.084823229,631,7439,0.057418974,0.112227484,0.000854813,26,30416,,,1169.846154,0.93147541,284.1,305,,,,,,,,3.183709351,,,,,,,,,3.203097075,3.07000533,,,,,,,,,3.091055826,0.041700727,,,,,-45.2528,,,,,0.719161358,39172,54469,0.625112216,0.8132105,58844,,,54125.70213,63562.29787,195714,27846.25532,363581.7447,,,,,,,,,,56080,52605.61702,59554.38298,,,,,,,,,,,,,,,,0.265039766,,58844,,,8.004574042,14,1749,,,,,,,,,,,,,,,,,,,,,,,,,,18.0745618,25,156299,11.45772173,27.12071723,15.99498397,,,,,,,,,,,,,19.05292708,12.07792139,28.58874552,,,,9.596990384,15,156299,5.371362666,15.82877617,,,,,,,,,,,,,10.14267361,5.676777424,16.72879767,,,,14.58157709,32,219455,9.973787934,20.58483611,,,,,,,,,,,,,14.90341625,10.12614827,21.15420974,,,,23.82352941,,3400,,,81,,0.554731993,13247,23880,,,0.666,,,,,22.63645067,,,,,0.743986254,8660,11640,0.711884341,0.776088168,0.088489987,981,11086,0.063049582,0.113930393,0.840292096,9781,11640,0.813125433,0.867458759,30416,,,,,0.231884535,7053,30416,,,0.163630984,4977,30416,,,0.01114545,339,30416,,,0.003649395,111,30416,,,0.00871252,265,30416,,,0.000624671,19,30416,,,0.023704629,721,30416,,,0.935921883,28467,30416,,,0.003189682,92,28843,0,0.007778562,0.497106786,15120,30416,,,0.564242898,17320,30696,, -39,067,39067,OH,Harrison County,2024,1,9532.887652,320,40528,7681.210863,11384.56444,0,,,,2,,,,2,,,,2,,,,2,9562.5658,7630.721101,11494.4105,,,,,2,,0.183,,,0.154,0.213,4.115729656,,,3.286242372,5.021545144,5.418725563,,,4.391388491,6.509935122,0.059757236,64,1071,0.04556089,0.073953583,0,,,,,,,,,,,,,0.057786484,0.043473473,0.072099495,,,,,,,0.232,,,0.189,0.275,0.426,,,0.353,0.502,7.5,0.045882514,0.137,,,0.295,,,0.243,0.345,0.299040254,4331,14483,,,0.15667827,,,0.125667129,0.190839838,0.214285714,6,28,0.11834453,0.322712758,158.9,23,14477,,,22.17741936,66,2976,17.15201452,28.21511507,,,,,,,,,,,,,22.71114265,17.49034725,29.00162215,,,,,,,0.092756968,1045,11266,0.079650585,0.105863351,0.000207225,3,14477,,,4825.666667,0.000139101,2,14378,,,7189,0.000417304,6,14378,,,2396.333333,4164,,,,,,,,,3974,0.37,,,,,,,,,0.37,0.37,,,,,,,0.35,,0.37,0.881838906,9284,10528,0.85829488,0.905382931,0.525704809,1585,3015,0.441822045,0.609587573,0.04933292,318,6446,,,0.212,622,,0.13812766,0.28587234,,,,,,,0.727272727,0.307817435,1,,,,0.218188486,0.154555112,0.281821859,4.434368974,103476,23335,3.80953708,5.059200868,0.263419483,795,3018,0.172736626,0.35410234,15.19651862,22,14477,,,89.42753033,67,74921,69.30510768,113.5698024,,,,,,,,,,,,,91.60864786,70.70162039,116.7627418,,,,7.6,,,,,0,,,,,0.140675241,875,6220,0.101031512,0.180318971,0.112223134,0.076478263,0.147968004,0.025723473,0.008523764,0.042923181,0.010450161,0.001799841,0.01910048,0.824442462,4621,5605,0.79039508,0.858489844,,,,,,,,,,,,,0.800135196,0.746640044,0.853630348,0.474,,5605,0.409110304,0.538889696,74.32284586,,,72.93939389,75.70629783,,,,,,,,,,,,,74.30765796,72.87238976,75.74292617,,,,497.5252131,320,40528,437.7518709,557.2985553,,,,,,,,,,,,,497.4644265,436.1648296,558.7640235,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.13,,,0.112,0.149,0.187,,,0.161,0.212,0.111,,,0.094,0.128,80.7,10,12390,,,0.137,2000,,,,0.045882514,727.880202,15864,,,,,,,,,,,,,,,,,,,,,,,,,,0.385,,,0.368,0.402,0.10189774,843,8273,0.085216889,0.118578591,0.068203347,216,3167,0.046756539,0.089650156,0.000556406,8,14378,,,1797.25,0.925,123.025,133,,,,,,,,3.152652878,,,,,,,,,3.193288929,3.027389945,,,,,,,,,3.075621918,0.032402442,,,,,-203.418,,,,,0.678513674,38182,56273,0.554538519,0.80248883,55129,,,47402.19149,62855.80851,,,,,,,,,,47500,25436,69564,56263,51119.34043,61406.65957,,,,,,,,,,,80.79071135,,,,,0.458288741,,55129,,,2.538071066,2,788,,,,,,,,,,,,,,,,,,,,,,,,,,14.63198397,11,74921,6.6906748,27.77606336,14.68213185,,,,,,,,,,,,,13.67968769,5.905918189,26.95443819,,,,,,,,,,,,,,,,,,,,,,,,,,,21.76422718,23,105678,13.79665308,32.65702691,,,,,,,,,,,,,22.95638287,14.55237752,34.44584579,,,,19.33333333,,1500,,,29,,0.643277311,7655,11900,,,0.534,,,,,4.067552233,,,,,0.777547853,4509,5799,0.757055433,0.798040273,0.125811103,698,5548,0.082817045,0.168805162,0.794102432,4605,5799,0.758797703,0.82940716,14378,,,,,0.20788705,2989,14378,,,0.22673529,3260,14378,,,0.019474197,280,14378,,,0.002851579,41,14378,,,0.00292113,42,14378,,,0.000139101,2,14378,,,0.013771039,198,14378,,,0.940186396,13518,14378,,,0.001087272,15,13796,0,0.007629942,0.500695507,7199,14378,,,1,14483,14483,, -39,069,39069,OH,Henry County,2024,1,8092.530775,405,74655,6830.588266,9354.473285,0,,,,2,,,,2,,,,2,,,,2,8678.128278,7261.370455,10094.8861,,,,,2,,0.161,,,0.136,0.19,3.745162597,,,2.932637813,4.601679879,5.062780685,,,4.059277892,6.106255105,0.078403756,167,2130,0.06698799,0.089819522,0,,,,,,,,,,0.074626866,0.038296975,0.110956756,0.076388889,0.064356196,0.088421581,,,,,,,0.198,,,0.159,0.243,0.418,,,0.339,0.499,8.5,0.017792655,0.103,,,0.272,,,0.223,0.328,0.358433953,9915,27662,,,0.182475337,,,0.145888608,0.222439806,0.333333333,12,36,0.245918362,0.420584515,246.9,68,27538,,,14.83729557,88,5931,11.89994491,18.27996312,,,,,,,,,,21.67182663,11.84818928,36.3616426,13.79038613,10.75028253,17.42332325,,,,,,,0.065696409,1449,22056,0.056164494,0.075228324,0.000290508,8,27538,,,3442.25,0.000545217,15,27512,,,1834.133333,0.001344868,37,27512,,,743.5675676,2784,,,,,,,,,2760,0.47,,,,,,,,0.21,0.48,0.56,,,,,,,,0.45,0.56,0.929944983,17748,19085,0.918668253,0.941221713,0.60281821,3893,6458,0.53882941,0.66680701,0.04546529,577,12691,,,0.111,684,,0.07406383,0.14793617,,,,,,,,,,0.252387449,0.138483699,0.366291199,0.141795423,0.091534043,0.192056804,3.634107975,122444,33693,3.200752113,4.067463837,0.179239402,1150,6416,0.117557413,0.24092139,15.61478684,43,27538,,,91.36524731,124,135719,75.28375813,107.4467365,,,,,,,,,,94.5268929,45.32931937,173.8383216,93.54229917,76.3706627,110.7139357,,,,8.8,,,,,1,,,,,0.070912376,785,11070,0.051821363,0.090003388,0.061594203,0.042701269,0.080487137,0.004787715,0,0.009947232,0.006323397,0.001934032,0.010712762,0.849159507,11366,13385,0.818442727,0.879876287,,,,,,,,,,0.765182186,0.68636999,0.843994382,0.850505051,0.812590596,0.888419505,0.297,,13385,0.262652852,0.331347148,76.62639668,,,75.60387097,77.6489224,,,,,,,,,,79.97319474,75.41886782,84.52752166,76.101286,74.99593678,77.20663521,,,,396.9895944,405,74655,356.0262252,437.9529637,,,,,,,,,,,,,414.9087402,370.9289809,458.8884996,,,,61.78223579,17,27516,35.99042909,98.91934444,,,,,,,,,,,,,64.19584011,35.92992439,105.8812757,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.116,,,0.098,0.135,0.172,,,0.148,0.198,0.1,,,0.084,0.117,43.3,10,23118,,,0.103,2840,,,,0.017792655,502.0197613,28215,,,19.64443571,16,81448,11.22849236,31.90133287,,,,,,,,,,,,,21.88333447,12.50821645,35.53716419,,,,0.382,,,0.364,0.399,0.072872442,1150,15781,0.060957548,0.084787335,0.048595292,320,6585,0.033105931,0.064084654,0.000436173,12,27512,,,2292.666667,0.972605634,345.275,355,,,,,,,,3.427035364,,,,,,,,3.330799924,3.462277303,3.363561411,,,,,,,,3.286329532,3.422172356,0.038207171,,,,,4297.6595,,,,,0.782606454,45543,58194,0.721211382,0.844001526,72122,,,62835.53192,81408.46809,,,,,,,,,,75865,43578.02128,108151.9787,71737,66797.08511,76676.91489,,,,,,,,,,,,,,,,0.216244697,,72122,,,13.724267,22,1603,,,,,,,,,,,,,,,,,,,,,,,,,,9.028057773,13,135719,4.664929192,15.77020007,9.578614638,,,,,,,,,,,,,8.99642093,4.490980914,16.09708211,,,,,,,,,,,,,,,,,,,,,,,,,,,20.92444184,40,191164,14.94872803,28.49315089,,,,,,,,,,,,,20.36458424,14.18467909,28.32220692,,,,35.33333333,,3000,,,106,,0.717221278,14764,20585,,,0.691,,,,,19.24430991,,,,,0.791036765,8843,11179,0.766057174,0.816016357,0.077133729,845,10955,0.055596805,0.098670653,0.880311298,9841,11179,0.857215312,0.903407284,27512,,,,,0.229136377,6304,27512,,,0.196641466,5410,27512,,,0.006906077,190,27512,,,0.005452166,150,27512,,,0.006142774,169,27512,,,0.00032713,9,27512,,,0.081128235,2232,27512,,,0.892665019,24559,27512,,,0.006460545,168,26004,0.001098902,0.011822187,0.500763303,13777,27512,,,0.679415805,18794,27662,, -39,071,39071,OH,Highland County,2024,1,11250.35978,873,119677,10053.49516,12447.22439,0,,,,2,,,,2,,,,2,,,,2,11501.18599,10254.11472,12748.25727,,,,,2,,0.201,,,0.169,0.234,4.404799991,,,3.53419831,5.304940769,5.718072691,,,4.76080076,6.728604902,0.075033378,281,3745,0.066595749,0.083471007,0,,,,,,,,,,,,,0.073468256,0.06495368,0.081982832,,,,,,,0.247,,,0.202,0.297,0.44,,,0.373,0.507,7.5,0.023655462,0.145,,,0.328,,,0.276,0.382,0.410947203,17801,43317,,,0.178813035,,,0.145948892,0.214871402,0.272727273,9,33,0.181168814,0.368649754,196.1,85,43354,,,26.22779519,251,9570,22.98304704,29.47254335,,,,,,,,,,,,,27.58698345,24.13254671,31.04142018,,,,,,,0.103914246,3645,35077,0.089616374,0.118212118,0.000276791,12,43354,,,3612.833333,0.000483971,21,43391,,,2066.238095,0.001728469,75,43391,,,578.5466667,2515,,,,,,,,,2537,0.34,,,,,,,0.25,,0.34,0.36,,,,,,,0.08,,0.36,0.850251834,25153,29583,0.828697906,0.871805762,0.496188566,4947,9970,0.437688055,0.554689076,0.049166188,855,17390,,,0.204,2050,,0.137276596,0.270723404,,,,,,,0.567099567,0.341421272,0.792777863,0.307359307,0.018572728,0.596145887,0.170008532,0.135232221,0.204784844,4.402486188,111559,25340,3.923379568,4.881592808,0.128016281,1321,10319,0.087645573,0.168386989,11.76362043,51,43354,,,101.9235759,220,215848,88.45507113,115.3920806,,,,,,,,,,,,,103.490864,89.55961183,117.4221162,,,,8.8,,,,,0,,,,,0.109584951,1835,16745,0.088155666,0.131014235,0.090414273,0.069450248,0.111378298,0.020901762,0.01109307,0.030710453,0.012541057,0.004712267,0.020369847,0.814918465,15142,18581,0.782519481,0.847317449,,,,,,,,,,,,,0.79702311,0.758808826,0.835237394,0.443,,18581,0.396272953,0.489727047,73.90445427,,,73.00009775,74.80881079,,,,,,,,,,,,,73.64870749,72.71728351,74.58013148,,,,536.0613187,873,119677,498.4985801,573.6240573,,,,,,,,,,,,,544.1188769,505.4377306,582.8000232,,,,73.70678102,33,44772,50.73635659,103.5117245,,,,,,,,,,,,,79.97867235,55.05363799,112.3197917,,,,8.240297714,31,3762,5.598882504,11.69644484,,,,,,,,,,,,,8.558807289,5.815294307,12.14854376,,,,,,,0.14,,,0.12,0.161,0.195,,,0.169,0.22,0.114,,,0.098,0.132,80.3,29,36097,,,0.145,6260,,,,0.023655462,1031.117922,43589,,,37.74486015,49,129819,27.92385533,49.90070683,,,,,,,,,,,,,38.19989109,28.06784314,50.79775705,,,,0.367,,,0.35,0.383,0.120690347,3007,24915,0.101626517,0.139754177,0.063529192,679,10688,0.044465362,0.082593021,0.00073748,32,43391,,,1355.96875,0.947694394,524.075,553,,,0.121016166,262,2165,0.052641185,0.189391148,3.32091568,,,,,,,,,3.332310043,3.034861863,,,,,,,,,3.041744195,0.027965975,,,,,1451.33508,,,,,0.811493218,41460,51091,0.721579123,0.901407313,59464,,,53480.34043,65447.65957,,,,,,,,,,95982,55442.76596,136521.234,61087,57802.06383,64371.93617,,,,,,,,,,,59.75136917,,,,,0.325221983,,59464,,,6.291635825,17,2702,,,9.605734292,29,301903,6.433111012,13.79543676,,,,,,,,,,,,,9.408976861,6.200575039,13.68956734,,,,14.29110364,33,215848,9.642147611,20.40143906,15.28853638,,,,,,,,,,,,,14.30645294,9.581256062,20.54645285,,,,12.04551351,26,215848,7.868529343,17.64946818,,,,,,,,,,,,,12.69227577,8.291015927,18.59712475,,,,15.89914642,48,301903,11.72277547,21.07996151,,,,,,,,,,,,,16.37858935,12.0343714,21.78005169,,,,21.4893617,,4700,,,101,,0.602726298,19676,32645,,,0.638,,,,,14.29234005,,,,,0.728068073,12150,16688,0.706315939,0.749820206,0.085527137,1371,16030,0.065024541,0.106029732,0.791227229,13204,16688,0.766208053,0.816246406,43391,,,,,0.235532714,10220,43391,,,0.193196746,8383,43391,,,0.014311724,621,43391,,,0.003825678,166,43391,,,0.004609251,200,43391,,,0.000299601,13,43391,,,0.014496094,629,43391,,,0.945426471,41023,43391,,,0.004408976,179,40599,0.000254951,0.008563,0.503814155,21861,43391,,,0.73719325,31933,43317,, -39,073,39073,OH,Hocking County,2024,1,11219.88133,580,77696,9739.839638,12699.92301,0,,,,2,,,,2,,,,2,,,,2,11209.40589,9714.811564,12704.00022,,,,,2,,0.186,,,0.155,0.217,4.175484736,,,3.349236059,5.11055584,5.705513735,,,4.719377092,6.776461113,0.075675676,154,2035,0.064184507,0.087166845,0,,,,,,,,,,,,,0.075634518,0.063958229,0.087310807,,,,,,,0.244,,,0.196,0.291,0.439,,,0.373,0.507,7.4,0.057149283,0.137,,,0.302,,,0.25,0.356,0.776720143,21787,28050,,,0.166503028,,,0.134555284,0.201660756,0.208333333,5,24,0.105577141,0.326751616,217.1,61,28097,,,24.5490982,147,5988,20.58053823,28.51765816,,,,,,,,,,,,,24.13246433,20.09138421,28.17354445,,,,,,,0.090371359,2032,22485,0.077264976,0.103477742,0.000427092,12,28097,,,2341.416667,0.000215378,6,27858,,,4643,0.002476847,69,27858,,,403.7391304,2025,,,,,,,,,2017,0.37,,,,,,,,,0.37,0.45,,,,,,,,,0.45,0.878960072,17479,19886,0.853616444,0.904303701,0.565055762,3648,6456,0.483190659,0.646920865,0.040957734,532,12989,,,0.2,1181,,0.127319149,0.272680851,,,,,,,,,,,,,0.21690243,0.146175552,0.287629308,4.306881779,111587,25909,3.826598585,4.787164973,0.312109247,1897,6078,0.233897839,0.390320654,9.253656974,26,28097,,,112.5145951,159,141315,95.02553896,130.0036512,,,,,,,,,,,,,114.1081893,96.14402426,132.0723543,,,,8.5,,,,,0,,,,,0.091894235,1060,11535,0.071653204,0.112135266,0.066344464,0.047627146,0.085061782,0.028608583,0.016286085,0.04093108,0.005201561,0,0.011588208,0.821635544,10208,12424,0.796819749,0.84645134,,,,,,,,,,,,,0.800238237,0.693984431,0.906492043,0.46,,12424,0.40623755,0.513762451,73.77473856,,,72.69917534,74.85030179,,,,,,,,,,,,,73.70563702,72.6255738,74.78570023,,,,531.4332964,580,77696,484.940654,577.9259387,,,,,,,,,,,,,535.199303,487.6492275,582.7493784,,,,40.74224971,11,26999,20.33838426,72.89913891,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.133,,,0.113,0.152,0.191,,,0.165,0.218,0.113,,,0.096,0.13,105,25,23815,,,0.137,3860,,,,0.057149283,1679.045922,29380,,,34.33740646,29,84456,22.99630001,49.31424344,,,,,,,,,,,,,35.78303144,23.96445775,51.39040205,,,,0.405,,,0.386,0.423,0.101758642,1678,16490,0.085077791,0.118439493,0.059895421,378,6311,0.04202308,0.077767761,0.000646134,18,27858,,,1547.666667,0.88,250.8,285,,,,,,,,3.424643098,,,,,,,,,3.41450016,3.441200073,,,,,,,,,3.42462187,0.019059818,,,,,2433.803,,,,,0.734334722,37888,51595,0.637704198,0.830965247,57353,,,50267.21277,64438.78723,,,,,,,63333,50046.70213,76619.29787,16856,2937.021277,30774.97872,59521,55454.44681,63587.55319,,,,,,,,,,,,,,,,0.271929978,,57353,,,11.62790698,18,1548,,,5.046783685,10,198146,2.420128943,9.281214883,,,,,,,,,,,,,,,,,,,18.4952927,27,141315,11.85028302,27.51952947,19.10625199,,,,,,,,,,,,,19.20146656,12.30274194,28.5702602,,,,16.27569614,23,141315,10.31739521,24.4215355,,,,,,,,,,,,,16.19600106,10.14994764,24.52094024,,,,18.67309963,37,198146,13.1475854,25.73840811,,,,,,,,,,,,,18.35372345,12.78404086,25.52558633,,,,31.42857143,,2800,,,88,,0.625945212,13824,22085,,,0.585,,,,,32.08761136,,,,,0.788988386,8899,11279,0.765107826,0.812868945,0.085556578,930,10870,0.062309421,0.108803735,0.84466708,9527,11279,0.817788946,0.871545215,27858,,,,,0.215629263,6007,27858,,,0.200911767,5597,27858,,,0.007861297,219,27858,,,0.004415249,123,27858,,,0.004558834,127,27858,,,0.000358963,10,27858,,,0.011594515,323,27858,,,0.957821811,26683,27858,,,0.006810144,181,26578,0,0.013729641,0.498959006,13900,27858,,,0.706096257,19806,28050,, -39,075,39075,OH,Holmes County,2024,1,6066.33377,473,124259,5260.989112,6871.678429,0,,,,2,,,,2,,,,2,,,,2,6097.947057,5277.509363,6918.38475,,,,,2,,0.214,,,0.178,0.253,4.463619941,,,3.554017519,5.465758328,5.82445292,,,4.700405839,7.044401938,0.040170636,226,5626,0.035039571,0.045301702,0,,,,,,,,,,,,,0.039523552,0.034393363,0.04465374,,,,,,,0.268,,,0.217,0.321,0.391,,,0.314,0.472,8.9,0.021995144,0.082,,,0.327,,,0.269,0.385,0.380706872,16836,44223,,,0.181953451,,,0.145625889,0.221903287,0.074074074,2,27,0.013612486,0.183911121,72.3,32,44271,,,9.337659255,118,12637,7.652840883,11.02247763,,,,,,,,,,,,,9.079854074,7.398241566,10.76146658,,,,,,,0.288953797,10882,37660,0.257975074,0.319932521,0.000203293,9,44271,,,4919,0.000360442,16,44390,,,2774.375,0.000157693,7,44390,,,6341.428571,859,,,,,,,,,869,0.37,,,,,,,,,0.37,0.41,,,,,,,,,0.41,0.575813989,15156,26321,0.547020231,0.604607747,0.228007181,2413,10583,0.189947015,0.266067347,0.028373702,615,21675,,,0.091,1199,,0.056446809,0.125553192,,,,,,,,,,0.069767442,0,0.427006193,0.127559533,0.095508141,0.159610924,3.799420669,133789,35213,3.157158351,4.441682986,0.045916082,615,13394,0.026168767,0.065663397,11.29407513,50,44271,,,42.25659294,93,220084,34.1065242,51.76718118,,,,,,,,,,,,,42.78015187,34.48684035,52.4660586,,,,9.2,,,,,0,,,,,0.128744939,1590,12350,0.10507783,0.152412049,0.068304668,0.050131274,0.086478062,0.040890688,0.024158964,0.057622413,0.031174089,0.020333112,0.042015066,0.501528901,10169,20276,0.468490702,0.534567101,,,,,,,,,,,,,0.546736066,0.515319629,0.578152503,0.236,,20276,0.196735047,0.275264953,78.24970617,,,77.46853155,79.03088078,,,,,,,,,,,,,78.22493843,77.43711485,79.012762,,,,338.3789838,473,124259,307.1345458,369.6234217,,,,,,,,,,,,,337.3784654,305.8057583,368.9511724,,,,55.93978845,33,58992,38.50637641,78.56026117,,,,,,,,,,,,,57.33546459,39.46709565,80.52030938,,,,5.096660808,29,5690,3.413313732,7.319655086,,,,,,,,,,,,,4.990197826,3.315950215,7.212225262,,,,,,,0.144,,,0.123,0.167,0.2,,,0.172,0.23,0.109,,,0.093,0.127,,,,,,0.082,3620,,,,0.021995144,931.8462767,42366,,,,,,,,,,,,,,,,,,,,,,,,,,0.369,,,0.352,0.387,0.273060905,6622,24251,0.240890692,0.305231118,0.311797353,4382,14054,0.248648417,0.374946289,0.000315386,14,44390,,,3170.714286,0.875,231,264,,,0.153333333,437,2850,0.097466069,0.209200597,3.380378279,,,,,,,,,3.393085322,3.290141076,,,,,,,,,3.289673653,0.059622118,,,,,-362.07765,,,,,0.667310873,35910,53813,0.592411521,0.742210225,75226,,,66743.78723,83708.21277,,,,,,,,,,,,,73268,69643.48936,76892.51064,,,,,,,,,,,,,,,,0.207321937,,75226,,,3.351019268,12,3581,,,,,,,,,,,,,,,,,,,,,,,,,,4.959383627,10,220084,2.378217218,9.120483065,4.543719671,,,,,,,,,,,,,5.072566568,2.432492838,9.328630522,,,,4.998091638,11,220084,2.495029338,8.942966555,,,,,,,,,,,,,4.650016508,2.22986366,8.551545918,,,,9.742505578,30,307929,6.573227602,13.9080325,,,,,,,,,,,,,9.633975377,6.452024509,13.83599567,,,,5.161290323,,6200,,,32,,0.42849578,12947,30215,,,0.696,,,,,0.350008685,,,,,0.780306444,10389,13314,0.753228331,0.807384557,0.075676552,934,12342,0.054097888,0.097255215,0.616343698,8206,13314,0.588312672,0.644374725,44390,,,,,0.300045055,13319,44390,,,0.144739806,6425,44390,,,0.003852219,171,44390,,,0.001193963,53,44390,,,0.002568146,114,44390,,,0.000743411,33,44390,,,0.010430277,463,44390,,,0.975399865,43298,44390,,,0.011971191,487,40681,0.007000931,0.01694145,0.495742284,22006,44390,,,1,44223,44223,, -39,077,39077,OH,Huron County,2024,1,10057.43888,1045,162230,9094.415717,11020.46204,0,,,,2,,,,2,,,,2,9460.143926,6234.294457,13764.01274,,10060.8,9045.400066,11076.19993,,,,,2,,0.177,,,0.149,0.206,4.163366432,,,3.385284656,5.100235474,5.36913541,,,4.40323258,6.384280308,0.073620904,355,4822,0.066249717,0.080992091,0,,,,,,,,,,0.06935123,0.045799528,0.092902933,0.072813239,0.064983006,0.080643472,,,,0.154761905,0.077415881,0.232107929,0.216,,,0.173,0.255,0.423,,,0.353,0.491,7.7,0.046863672,0.124,,,0.308,,,0.256,0.36,0.601024503,35199,58565,,,0.188137581,,,0.152752003,0.226072683,0.315789474,12,38,0.230581269,0.401886528,277.6,162,58367,,,19.52078389,255,13063,17.12480364,21.91676415,,,,,,,,,,21.6802168,14.82925224,30.60599734,19.09847936,16.52148402,21.6754747,,,,,,,0.087591854,4172,47630,0.07567696,0.099506748,0.000548255,32,58367,,,1823.96875,0.000395067,23,58218,,,2531.217391,0.001580267,92,58218,,,632.8043478,3300,,,,,,,,9719,3231,0.43,,,,,,,0.38,0.17,0.44,0.49,,,,,,,0.38,0.4,0.49,0.901825741,36009,39929,0.886534247,0.917117234,0.545235394,7690,14104,0.494956527,0.595514262,0.050969209,1412,27703,,,0.176,2354,,0.123574468,0.228425532,,,,,,,,,,0.22783979,0.093751202,0.361928378,0.099440266,0.070986426,0.127894106,3.821727208,112890,29539,3.48669009,4.156764327,0.293432127,4079,13901,0.241791843,0.345072411,11.6504189,68,58367,,,108.3639107,316,291610,96.41585607,120.3119653,,,,,,,,,,64.76683938,34.48561424,110.7532678,113.7469703,100.8321675,126.661773,,,,8.7,,,,,0,,,,,0.106290673,2450,23050,0.090330688,0.122250657,0.091307204,0.074797348,0.10781706,0.011279827,0.006482466,0.016077187,0.005639913,0.001369553,0.009910273,0.836255792,22558,26975,0.822532648,0.849978937,,,,,,,,,,0.854601227,0.734999009,0.974203445,0.842848627,0.819266528,0.866430725,0.303,,26975,0.27045685,0.33554315,74.64875621,,,73.91624908,75.38126335,,,,,,,,,,92.83865153,71.03352332,114.6437797,74.46265599,73.70504033,75.22027165,,,,483.6422791,1045,162230,452.7175514,514.5670069,,,,,,,,,,374.9756185,254.7777402,532.247959,488.4485322,456.0518628,520.8452017,,,,63.93547435,39,60999,45.46437235,87.40189817,,,,,,,,,,,,,64.17237088,44.17330735,90.12186775,,,,5.050505051,25,4950,3.268420575,7.455541757,,,,,,,,,,,,,,,,,,,,,,0.126,,,0.107,0.144,0.178,,,0.154,0.202,0.11,,,0.094,0.127,73.9,36,48746,,,0.124,7280,,,,0.046863672,2794.293282,59626,,,50.39745264,88,174612,40.42023072,62.0910712,,,,,,,,,,,,,51.68222451,41.04314636,64.23628614,,,,0.371,,,0.355,0.387,0.099496481,3379,33961,0.08400712,0.114985843,0.058950295,848,14385,0.041077955,0.076822636,0.001116493,65,58218,,,895.6615385,0.92867866,748.515,806,,,0.090390105,285,3153,0.037078156,0.143702053,2.982276437,,,,,,,,2.657801959,3.046409155,2.938849305,,,,,,,,2.75994034,2.975856477,0.104525825,,,,,2034.5516,,,,,0.806411476,44072,54652,0.738453011,0.874369942,61482,,,56377.65957,66586.34043,,,,,,,94883,35686.23404,154079.766,50771,37776.61702,63765.38298,64754,61681.14894,67826.85106,,,,,,,,,,,57.72423726,,,,,0.314547347,,61482,,,7.164508129,26,3629,,,,,,,,,,,,,,,,,,,,,,,,,,19.13007723,54,291610,14.24359902,25.15251864,18.51788348,,,,,,,,,,,,,19.90266642,14.62373067,26.46632711,,,,12.68817942,37,291610,8.933649246,17.48898397,,,,,,,,,,,,,13.35954349,9.305411532,18.57989097,,,,17.37989513,71,408518,13.57384229,21.92237285,,,,,,,,,,,,,18.21711539,14.11801421,23.13509259,,,,23.23076923,,6500,,,151,,0.621343693,27190,43760,,,0.706,,,,,32.11756284,,,,,0.73397991,16952,23096,0.710390723,0.757569097,0.095070265,2131,22415,0.077122758,0.113017773,0.855516107,19759,23096,0.835484824,0.87554739,58218,,,,,0.234807104,13670,58218,,,0.184771033,10757,58218,,,0.011800474,687,58218,,,0.003418187,199,58218,,,0.004036552,235,58218,,,0.000515305,30,58218,,,0.07174757,4177,58218,,,0.894345392,52067,58218,,,0.004667551,257,55061,0.001095212,0.008239889,0.499415988,29075,58218,,,0.5142662,30118,58565,, -39,079,39079,OH,Jackson County,2024,1,13425.59426,833,90829,12035.22246,14815.96606,0,,,,2,,,,2,,,,2,,,,2,13505.63602,12097.5005,14913.77153,,,,,2,,0.198,,,0.165,0.231,4.270455279,,,3.463360591,5.145006407,5.905745131,,,4.930704537,6.951454361,0.081391047,220,2703,0.071082755,0.091699339,0,,,,,,,,,,,,,0.081430746,0.070974072,0.091887419,,,,,,,0.246,,,0.2,0.293,0.466,,,0.401,0.534,7.3,0.025825612,0.153,,,0.322,,,0.269,0.375,0.524545984,17128,32653,,,0.154481769,,,0.124896636,0.187113666,0.297297297,11,37,0.210781658,0.385925153,190.7,62,32511,,,35.73546857,241,6744,31.22369775,40.24723938,,,,,,,,,,,,,36.74295501,32.05510021,41.4308098,,,,,,,0.081825009,2179,26630,0.069910116,0.093739903,0.000430624,14,32511,,,2322.214286,0.00030688,10,32586,,,3258.6,0.002547106,83,32586,,,392.6024096,2303,,,,,,,,,2318,0.36,,,,,,,,,0.36,0.39,,,,,,,0.23,,0.39,0.870534515,19446,22338,0.845040445,0.896028586,0.467897977,3724,7959,0.393183695,0.54261226,0.049719717,612,12309,,,0.232,1747,,0.153361702,0.310638298,,,,,,,,,,,,,0.214682032,0.16051392,0.268850143,4.560744824,105075,23039,3.875372934,5.246116715,0.186113286,1426,7662,0.12420686,0.248019713,12.91870444,42,32511,,,125.7318952,204,162250,108.4780281,142.9857624,,,,,,,,,,,,,129.2745831,111.402664,147.1465021,,,,8.3,,,,,0,,,,,0.124132614,1610,12970,0.095493563,0.152771665,0.094610314,0.067728014,0.121492614,0.021588281,0.009638247,0.033538314,0.01387818,0.005803511,0.021952849,0.829896524,11148,13433,0.797369516,0.862423531,,,,,,,,,,,,,0.837715804,0.801769445,0.873662162,0.35,,13433,0.293032353,0.406967647,71.25085173,,,70.29848359,72.20321988,,,,,,,,,,,,,71.10636318,70.1520526,72.06067376,,,,686.8322355,833,90829,637.930075,735.7343959,,,,,,,,,,,,,697.6541249,647.4912971,747.8169527,,,,65.27996202,22,33701,40.91060465,98.83464701,,,,,,,,,,,,,59.8934527,36.05977103,93.53104552,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.135,,,0.115,0.155,0.193,,,0.167,0.22,0.117,,,0.1,0.135,110.9,30,27062,,,0.153,4990,,,,0.025825612,858.0559682,33225,,,48.24619933,47,97417,35.44949256,64.15721726,,,,,,,,,,,,,50.38539467,37.02129283,67.00189357,,,,0.411,,,0.393,0.428,0.092654951,1761,19006,0.077165589,0.108144313,0.055618048,445,8001,0.037745707,0.073490388,0.001166145,38,32586,,,857.5263158,0.898657289,351.375,391,,,,,,,,3.113235162,,,,,,,,,3.102936505,3.223666415,,,,,,,,,3.227394678,0.062511807,,,,,-1088.819467,,,,,0.766362727,40595,52971,0.68174846,0.850976994,54893,,,49046.3617,60739.6383,,,,,,,10586,2673.319149,18498.68085,,,,57243,51859.85106,62626.14894,,,,,,,,,,,61.12388972,,,,,0.284116372,,54893,,,10.09637448,22,2179,,,4.398485162,10,227351,2.109244603,8.088970817,,,,,,,,,,,,,4.585178868,2.198771491,8.43230719,,,,24.08512279,41,162250,17.04406636,33.05871279,25.26964561,,,,,,,,,,,,,23.63691763,16.55500652,32.72345728,,,,19.72265023,32,162250,13.49027816,27.84249743,,,,,,,,,,,,,19.93787102,13.54681604,28.30021642,,,,23.75181987,54,227351,17.84309811,30.99097272,,,,,,,,,,,,,24.301448,18.20345215,31.78689232,,,,32.77777778,,3600,,,118,,0.598704978,14794,24710,,,0.621,,,,,18.29065058,,,,,0.743676223,9261,12453,0.714144976,0.773207469,0.12394201,1479,11933,0.091888507,0.155995512,0.812655585,10120,12453,0.783464916,0.841846254,32586,,,,,0.236481925,7706,32586,,,0.178696373,5823,32586,,,0.007119622,232,32586,,,0.004572516,149,32586,,,0.004572516,149,32586,,,0.00046032,15,32586,,,0.011385258,371,32586,,,0.955072731,31122,32586,,,0.00121407,37,30476,0,0.005737898,0.501135457,16330,32586,,,0.642391205,20976,32653,, -39,081,39081,OH,Jefferson County,2024,1,13165.66131,1533,177306,12079.8832,14251.43943,0,,,,2,,,,2,37184.14962,29134.63353,45233.66572,,,,,2,11931.36903,10859.78778,13002.95028,,,,,2,,0.188,,,0.163,0.218,4.146503375,,,3.400752649,4.944764237,5.977180684,,,5.114416342,6.884765749,0.085003303,386,4541,0.076891676,0.093114931,0,,,,,,,0.138728324,0.102305746,0.175150901,,,,0.079155001,0.070712959,0.087597043,,,,0.071942446,0.028985962,0.11489893,0.241,,,0.201,0.286,0.417,,,0.366,0.471,6.7,0.101222581,0.146,,,0.299,,,0.257,0.347,0.650875876,42469,65249,,,0.16960814,,,0.141414065,0.201943037,0.363636364,8,22,0.250508545,0.473251594,285.5,185,64789,,,19.6640721,288,14646,17.39298764,21.93515656,,,,,,,46.27249357,32.40868563,64.06063559,,,,17.50079189,15.1934198,19.80816398,,,,30.72196621,18.76577509,47.4475851,0.078677449,3843,48845,0.067954045,0.089400853,0.000385868,25,64789,,,2591.56,0.00048189,31,64330,,,2075.16129,0.00304679,196,64330,,,328.2142857,3534,,,,,,,3996,,3509,0.38,,,,,,,0.42,,0.38,0.43,,,,,,0.47,0.35,,0.43,0.925941938,42835,46261,0.9160262,0.935857676,0.615998859,8640,14026,0.566358994,0.665638725,0.054428318,1470,27008,,,0.3,3656,,0.227319149,0.372680851,,,,,,,0.588983051,0.462235005,0.715731097,0.513586957,0.244103091,0.783070823,0.225237449,0.190304262,0.260170636,4.841920266,104692,21622,4.380899819,5.302940714,0.297549685,3728,12529,0.245065523,0.350033846,16.2064548,105,64789,,,108.5032964,355,327179,97.21613257,119.7904602,,,,,,,313.7478608,236.3578264,408.3859668,,,,100.0542667,88.63651285,111.4720206,,,,9.2,,,,,0,,,,,0.106753813,2940,27540,0.093791178,0.119716447,0.099260355,0.085525926,0.112994784,0.006681191,0.002681786,0.010680596,0.004901961,0.002269808,0.007534114,0.823809178,22691,27544,0.801654499,0.845963858,,,,,,,0.789748045,0.630049417,0.949446673,,,,0.811875642,0.789579819,0.834171465,0.306,,27544,0.279517826,0.332482175,72.56971063,,,71.82750972,73.31191155,,,,,,,58.28505507,54.58781487,61.98229528,,,,73.38334932,72.63740498,74.12929365,,,,602.0356797,1533,177306,568.7496083,635.3217511,,,,,,,1435.0738,1200.394196,1669.753404,,,,565.6397283,532.1305564,599.1489002,,,,67.80368226,39,57519,48.21504631,92.68986572,,,,,,,260.2811036,124.8149062,478.6662166,,,,55.80126483,36.77338514,81.18791065,,,,8.697542944,40,4599,6.213652194,11.8435849,,,,,,,,,,,,,7.759699625,5.272339419,11.01427422,,,,,,,0.131,,,0.114,0.149,0.19,,,0.167,0.215,0.111,,,0.096,0.126,107.3,60,55919,,,0.146,9600,,,,0.101222581,7056.124917,69709,,,44.60326168,87,195053,35.72538415,55.0179585,,,,,,,153.2273511,87.5826705,248.8316184,,,,39.91674508,31.11706105,50.43240603,,,,0.411,,,0.393,0.428,0.088925019,3227,36289,0.074627146,0.103222891,0.049564229,654,13195,0.034074867,0.065053591,0.001741023,112,64330,,,574.375,0.918266254,593.2,646,,,0.054503729,190,3486,0.023205641,0.085801818,3.291306665,,,,,,,3.384758884,,3.283553836,3.138040396,,,,,,,3.079016766,,3.125766047,0.156150784,,,,,-1980.22242,,,,,0.728033699,40443,55551,0.637620279,0.818447119,54272,,,48820.93617,59723.06383,,,,110223,44229.97872,176216.0213,26916,17934.55319,35897.44681,20000,13.95744681,39986.04255,55864,52861.44681,58866.55319,,,,,,,,,,,58.72380976,,,,,0.465525501,,54272,,,8.226691042,27,3282,,,5.420289227,25,461230,3.507725397,8.001416148,,,,,,,48.34031582,24.97814659,84.44080345,,,,2.88303526,1.489706389,5.036082399,,,,17.78149709,62,327179,13.35800788,23.20099657,18.94987148,,,,,,,,,,,,,17.91050739,13.29352381,23.61277115,,,,17.72729912,58,327179,13.46108145,22.91664494,,,,,,,74.15858528,39.48632339,126.8134394,,,,15.26251526,11.13258336,20.42244624,,,,9.756520608,45,461230,7.11647308,13.05499219,,,,,,,,,,,,,9.369864593,6.662889688,12.80891335,,,,26.37931035,,5800,,,153,,0.628463785,33362,53085,,,0.62,,,,,60.79073396,,,,,0.711044378,19179,26973,0.692040464,0.730048292,0.11584938,2972,25654,0.098158435,0.133540326,0.83172061,22434,26973,0.814427496,0.849013723,64330,,,,,0.193004819,12416,64330,,,0.227607648,14642,64330,,,0.052510493,3378,64330,,,0.002720348,175,64330,,,0.005736049,369,64330,,,0.00051298,33,64330,,,0.018886989,1215,64330,,,0.895802891,57627,64330,,,0.001709815,106,61995,0,0.003922769,0.509233639,32759,64330,,,0.392741651,25626,65249,, -39,083,39083,OH,Knox County,2024,1,7753.803061,926,173335,6958.057829,8549.548292,0,,,,2,,,,2,,,,2,,,,2,7807.070773,6988.856495,8625.285051,,,,,2,,0.164,,,0.138,0.193,3.927625722,,,3.146735354,4.816893406,5.442666126,,,4.503740015,6.427561606,0.066860465,345,5160,0.060045099,0.073675832,0,,,,,,,,,,,,,0.067311568,0.060339833,0.074283302,,,,,,,0.205,,,0.162,0.249,0.402,,,0.342,0.466,7.8,0.059506486,0.115,,,0.276,,,0.23,0.324,0.68776008,43137,62721,,,0.163367209,,,0.133788535,0.198544865,0.486486487,18,37,0.409495644,0.55780331,217.8,137,62897,,,15.67342074,263,16780,13.77915027,17.56769121,,,,,,,,,,23.4741784,11.25678098,43.16984986,15.77654209,13.79696245,17.75612173,,,,,,,0.082963823,4004,48262,0.071048929,0.094878716,0.000397475,25,62897,,,2515.88,0.000490638,31,63183,,,2038.16129,0.002025861,128,63183,,,493.6171875,3109,,,,,,,,,3131,0.4,,,,,,,,,0.4,0.4,,,,,,,0.27,,0.4,0.915015059,37673,41172,0.901264803,0.928765315,0.58357328,8107,13892,0.521151265,0.645995294,0.034918373,1078,30872,,,0.152,2125,,0.101957447,0.202042553,,,,,,,0.112676056,0,0.823550978,,,,0.179090628,0.138499589,0.219681667,4.1447715,125885,30372,3.669552774,4.619990226,0.186946747,2661,14234,0.143659576,0.230233919,11.92425712,75,62897,,,72.07299965,224,310796,62.63446315,81.51153616,,,,,,,,,,,,,74.00098668,64.19996106,83.8020123,,,,9.1,,,,,0,,,,,0.100542888,2315,23025,0.082948407,0.118137369,0.081931396,0.06663362,0.097229172,0.012812161,0.005572424,0.020051897,0.014766558,0.007822553,0.021710563,0.766706867,21615,28192,0.744487171,0.788926563,,,,,,,,,,,,,0.759569756,0.734250856,0.784888657,0.376,,28192,0.331450406,0.420549594,77.04582656,,,76.37519145,77.71646167,,,,,,,,,,,,,76.8903583,76.20867291,77.57204369,,,,395.6481082,926,173335,368.5308454,422.7653709,,,,,,,,,,,,,399.2700623,371.5291836,427.0109409,,,,48.56284335,32,65894,33.21694891,68.556245,,,,,,,,,,,,,50.6155504,34.39081079,71.84473354,,,,5.573707477,29,5203,3.732799373,8.004773677,,,,,,,,,,,,,5.597760896,3.719671463,8.090323059,,,,,,,0.12,,,0.102,0.138,0.18,,,0.156,0.205,0.104,,,0.088,0.12,68.1,36,52826,,,0.115,7190,,,,0.059506486,3625.194603,60921,,,22.9159783,43,187642,16.58440712,30.86767238,,,,,,,,,,,,,21.28911174,15.06544253,29.22096917,,,,0.339,,,0.321,0.356,0.095354021,3251,34094,0.07986466,0.110843383,0.054063152,803,14853,0.037382301,0.070744003,0.000997104,63,63183,,,1002.904762,0.919230769,573.6,624,,,0.070515971,287,4070,0.033240713,0.107791228,3.314841938,,,,,,,,,3.339172438,3.12118745,,,,,,,,,3.14018447,0.04022625,,,,,287.965228,,,,,0.770627208,43851,56903,0.688399248,0.852855167,68334,,,59447.87234,77220.12766,,,,57865,29835.21277,85894.78723,,,,85063,22247.68085,147878.3192,71940,67656.59575,76223.40426,,,,,,,,,,,57.11453087,,,,,0.3697281,,68334,,,5.065315916,19,3751,,,,,,,,,,,,,,,,,,,,,,,,,,15.53559872,48,310796,11.28818981,20.85581615,15.44421421,,,,,,,,,,,,,16.21920575,11.78489973,21.77352668,,,,12.54842405,39,310796,8.923156183,17.15410876,,,,,,,,,,,,,13.1782579,9.371029624,18.01511238,,,,11.78724712,51,432671,8.776379706,15.49805311,,,,,,,,,,,,,12.37218442,9.211903943,16.26713763,,,,36.81818182,,6600,,,243,,0.663665187,31398,47310,,,0.704,,,,,34.93680125,,,,,0.730371588,16884,23117,0.701276777,0.759466399,0.099328496,2204,22189,0.08113827,0.117518723,0.869316953,20096,23117,0.849066224,0.889567682,63183,,,,,0.225899372,14273,63183,,,0.193453935,12223,63183,,,0.009654496,610,63183,,,0.003038792,192,63183,,,0.006140892,388,63183,,,0.000379849,24,63183,,,0.018549293,1172,63183,,,0.948435497,59925,63183,,,0.005227516,308,58919,0.001947856,0.008507176,0.503584825,31818,63183,,,0.697182762,43728,62721,, -39,085,39085,OH,Lake County,2024,1,7653.415864,3555,631059,7239.314485,8067.517242,0,,,,2,,,,2,13780.13799,11345.79737,16214.4786,,6204.07626,4647.278851,8115.084501,,7514.11598,7075.57333,7952.65863,,,,,2,,0.142,,,0.118,0.166,3.525410713,,,2.827252562,4.324618919,5.191935369,,,4.258410727,6.181890672,0.072874765,1087,14916,0.068703309,0.077046221,0,,,,0.119047619,0.082029105,0.156066133,0.139228598,0.118417376,0.16003982,0.071186441,0.056514824,0.085858058,0.06627907,0.061835423,0.070722717,,,,0.057142857,0.031509546,0.082776169,0.172,,,0.134,0.213,0.366,,,0.303,0.436,8,0.078441729,0.098,,,0.249,,,0.205,0.302,0.892851769,207680,232603,,,0.179380123,,,0.145433964,0.216931857,0.6,30,50,0.545414939,0.649691546,255.1,592,232023,,,10.04059423,465,46312,9.127976271,10.95321219,,,,,,,20.31509121,15.02921631,26.85762794,31.53526971,25.74631442,37.324225,6.969099277,6.130006881,7.808191673,,,,22.94455067,16.07008121,31.76492957,0.067056449,12226,182324,0.058716023,0.075396875,0.000413752,96,232023,,,2416.90625,0.000672872,156,231842,,,1486.166667,0.003045177,706,231842,,,328.388102,3202,,,,,,,7734,,3133,0.49,,,,,,0.43,0.47,0.3,0.49,0.53,,,,,,0.67,0.43,0.31,0.54,0.936110847,157686,168448,0.931046365,0.941175329,0.702139609,38756,55197,0.672198023,0.732081195,0.04295148,5353,124629,,,0.113,4930,,0.078446809,0.147553192,,,,0.086124402,0,0.222178241,0.121031005,0.047312565,0.194749444,0.178906814,0.100324199,0.25748943,0.084369914,0.064447202,0.104292626,3.809956796,134922,35413,3.648710735,3.971202856,0.236290447,10742,45461,0.210114517,0.262466377,8.447438401,196,232023,,,101.2693818,1167,1152372,95.45907848,107.079685,,,,,,,94.80290476,70.36454322,124.9858112,42.57524712,26.98905453,63.88377493,107.8443628,101.4331713,114.2555543,,,,6.5,,,,,0,,,,,0.099445797,9600,96535,0.091453886,0.107437708,0.086784393,0.07831346,0.095255327,0.009167659,0.006373207,0.011962112,0.006577925,0.00451914,0.00863671,0.79505202,94224,118513,0.783289695,0.806814345,,,,0.771203156,0.609954387,0.932451925,0.746569278,0.713703134,0.779435423,0.613747228,0.546985879,0.680508578,0.777992434,0.766456574,0.789528295,0.319,,118513,0.300930169,0.337069831,77.46206574,,,77.11491035,77.80922113,,,,93.43921161,86.62859456,100.2498287,70.84081421,69.08800995,72.59361847,97.45983916,83.4229472,111.4967311,77.52649077,77.16377356,77.88920798,,,,382.2993536,3555,631059,368.7963883,395.8023188,,,,,,,662.9151591,573.6746266,752.1556915,277.048546,207.5283724,362.3863195,379.7176232,365.4500523,393.9851942,,,,36.78535744,74,201167,28.88441755,46.18064767,,,,,,,112.6216716,61.57131587,188.9600283,,,,30.80327395,22.78843164,40.72356173,,,,4.601327812,70,15213,3.586960764,5.813500876,,,,,,,,,,,,,3.321182665,2.383338021,4.505559301,,,,,,,0.105,,,0.09,0.123,0.163,,,0.139,0.189,0.094,,,0.08,0.111,104.9,211,201232,,,0.098,22740,,,,0.078441729,18044.81387,230041,,,36.57438261,253,691741,32.06753561,41.08122961,,,,,,,30.28559314,14.5231191,55.69628409,,,,38.51600489,33.55975367,43.47225612,,,,0.362,,,0.344,0.379,0.074706114,10257,137298,0.065174199,0.084238029,0.045347368,2154,47500,0.032240985,0.058453751,0.000884223,205,231842,,,1130.936585,0.911072699,2305.925,2531,,,0.057730293,643,11138,0.037690529,0.077770056,3.221654831,,,,,,3.338530559,2.562699269,2.651145256,3.352684014,3.108348554,,,,,,3.529253546,2.456253022,2.667491512,3.219921174,0.161042183,,,,,1528.540889,,,,,0.833306962,52665,63200,0.797588138,0.869025786,76163,,,69911.25532,82414.74468,56635,51367.42553,61902.57447,95883,76559.42553,115206.5745,48775,41529.55319,56020.44681,73178,63820.04255,82535.95745,78420,76877.02128,79962.97872,,,,,,,,,,,52.05721408,,,,,0.331722753,,76163,,,8.246142933,93,11278,,,2.049395397,33,1610231,1.410709493,2.878113095,,,,,,,14.23467282,6.826078912,26.17807012,,,,1.553969722,0.973864551,2.352728834,,,,16.25396956,202,1152372,13.89626009,18.61167902,17.5290618,,,,,,,,,,,,,16.63228321,14.07641107,19.18815535,,,,10.0661939,116,1152372,8.234333527,11.89805428,,,,,,,,,,,,,10.41734876,8.424755639,12.40994187,,,,7.452346899,120,1610231,6.118952855,8.785740944,,,,,,,17.08160738,8.826315794,29.83813049,,,,7.416673671,5.998038925,8.835308417,,,,21.19815668,,21700,,,460,,0.728917311,130509,179045,,,0.783,,,,,77.4112686,,,,,0.747342032,74229,99324,0.735600041,0.759084023,0.092485312,9020,97529,0.083606453,0.101364171,0.905843502,89972,99324,0.897001803,0.914685201,231842,,,,,0.190409848,44145,231842,,,0.218933584,50758,231842,,,0.052751443,12230,231842,,,0.002160954,501,231842,,,0.015954831,3699,231842,,,0.000370942,86,231842,,,0.051595483,11962,231842,,,0.861026044,199622,231842,,,0.012684607,2806,221213,0.010239064,0.015130151,0.508255622,117835,231842,,,0.075102213,17469,232603,, -39,087,39087,OH,Lawrence County,2024,1,13790.5888,1521,161892,12721.60753,14859.57007,0,,,,2,,,,2,20312.17996,12407.20722,31370.51454,1,,,,2,14026.93946,12918.23421,15135.64472,,,,,2,,0.2,,,0.17,0.232,4.650802362,,,3.855660916,5.551706782,5.692284889,,,4.81663478,6.622864784,0.099611606,436,4377,0.090739276,0.108483937,0,,,,,,,,,,,,,0.099175501,0.090183848,0.108167153,,,,,,,0.241,,,0.195,0.29,0.466,,,0.408,0.524,7,0.044599474,0.161,,,0.321,,,0.269,0.373,0.718046017,41819,58240,,,0.150974197,,,0.123582559,0.18225567,0.222222222,6,27,0.123749407,0.332441015,344.7,198,57445,,,27.27585614,317,11622,24.27320531,30.27850696,,,,,,,,,,,,,28.76167576,25.56506275,31.95828877,,,,,,,0.085742729,3962,46208,0.073827835,0.097657622,0.000470015,27,57445,,,2127.592593,0.000335375,19,56653,,,2981.736842,0.006336822,359,56653,,,157.8077994,4447,,,,,,,3370,,4427,0.34,,,,,,,0.37,,0.34,0.43,,,,,,,0.42,,0.43,0.894099516,36549,40878,0.877203907,0.910995124,0.543768493,7535,13857,0.487142243,0.600394742,0.046372701,1079,23268,,,0.223,2646,,0.14912766,0.29687234,,,,,,,0.36440678,0.062120867,0.666692693,,,,0.238205654,0.202363239,0.274048069,4.663516337,98195,21056,4.101196225,5.22583645,0.244564355,3082,12602,0.198509731,0.290618978,8.529898164,49,57445,,,141.1618498,418,296114,127.6291244,154.6945753,,,,,,,,,,,,,147.7811411,133.5455693,162.0167129,,,,6.8,,,,,0,,,,,0.130547178,3030,23210,0.106882368,0.154211988,0.117040261,0.093477023,0.140603499,0.007539854,0.002449612,0.012630095,0.0088324,0.00260063,0.01506417,0.858459683,19930,23216,0.836629713,0.880289653,,,,,,,,,,,,,0.827154124,0.793136844,0.861171404,0.276,,23216,0.244408676,0.307591324,71.04285247,,,70.33502117,71.75068377,,,,,,,,,,,,,70.75078427,70.02257807,71.47899047,,,,685.8863672,1521,161892,649.4846384,722.2880961,,,,,,,768.2614394,506.2891295,1117.780059,,,,701.1234314,663.5001574,738.7467055,,,,46.69372508,26,55682,30.50189148,68.41712597,,,,,,,,,,,,,50.6092576,33.05964732,74.15428832,,,,5.382372729,24,4459,3.448587767,8.008543977,,,,,,,,,,,,,5.53377911,3.545596692,8.23382467,,,,,,,0.139,,,0.119,0.159,0.194,,,0.167,0.221,0.117,,,0.101,0.134,139.2,68,48848,,,0.161,9440,,,,0.044599474,2785.237134,62450,,,71.02313081,125,175999,58.57222701,83.47403461,,,,,,,,,,,,,73.8969528,60.83734767,86.95655794,,,,0.383,,,0.365,0.399,0.09788461,3327,33989,0.082395248,0.113373971,0.052361316,673,12853,0.036871955,0.067850678,0.001059079,60,56653,,,944.2166667,0.933106169,650.375,697,,,,,,,,3.245800151,,,,,,,,,3.269215293,3.155483507,,,,,,,,,3.182913096,0.089607106,,,,,554.8753857,,,,,0.833652378,38759,46493,0.768156099,0.899148657,51062,,,45790.85106,56333.14894,50313,42731.55319,57894.44681,103333,16456.74468,190209.2553,70903,22241.38298,119564.617,88189,81315.29787,95062.70213,51398,48194.08511,54601.91489,,,,,,,,,,,66.69916487,,,,,0.378735655,,51062,,,7.661661048,25,3263,,,5.501142085,23,418095,3.487252188,8.254414163,,,,,,,,,,,,,5.558053873,3.483202771,8.414960358,,,,14.05396252,45,296114,10.08536615,19.06578708,15.19684986,,,,,,,,,,,,,14.75365297,10.5874761,20.01499619,,,,15.53455764,46,296114,11.37324862,20.72092293,,,,,,,,,,,,,16.06316751,11.71658461,21.49378195,,,,14.11162535,59,418095,10.74242305,18.20296855,,,,,,,,,,,,,14.90568993,11.3469018,19.22725401,,,,13.83333333,,6000,,,83,,0.60468666,28127,46515,,,0.597,,,,,44.74909938,,,,,0.729191717,16374,22455,0.703516808,0.754866625,0.127239385,2706,21267,0.104222168,0.150256602,0.827343576,18578,22455,0.805303277,0.849383875,56653,,,,,0.21435758,12144,56653,,,0.196582705,11137,56653,,,0.021358092,1210,56653,,,0.002859513,162,56653,,,0.005030625,285,56653,,,0.00026477,15,56653,,,0.011014421,624,56653,,,0.943074506,53428,56653,,,0.001329037,73,54927,0,0.004111566,0.508993346,28836,56653,,,0.452781593,26370,58240,, -39,089,39089,OH,Licking County,2024,1,8448.226413,2763,499056,7954.053695,8942.399131,0,,,,2,,,,2,11751.02803,8689.782244,14812.27381,,,,,2,8720.119729,8180.224583,9260.014875,,,,,2,,0.148,,,0.124,0.174,3.536958391,,,2.858460713,4.349170727,5.357587747,,,4.519307334,6.333414775,0.074613621,1009,13523,0.07018478,0.079042463,0,,,,0.135181976,0.107282893,0.163081059,0.131416838,0.101409822,0.161423853,0.09118541,0.060078388,0.122292433,0.068236097,0.063671755,0.072800439,,,,0.08033241,0.052293359,0.108371461,0.178,,,0.138,0.219,0.385,,,0.327,0.451,7.8,0.081995474,0.105,,,0.252,,,0.207,0.301,0.77104958,137647,178519,,,0.171826105,,,0.143213137,0.207227634,0.314049587,38,121,0.267832346,0.360756175,295.5,533,180401,,,15.41511772,622,40350,14.2036615,16.62657394,,,,,,,8.812615956,5.305770484,13.76199145,12.53687316,7.303190612,20.07274839,16.25968364,14.90324978,17.61611751,,,,14.05867971,8.911996966,21.09492231,0.066845355,9851,147370,0.05850493,0.075185781,0.000371395,67,180401,,,2692.552239,0.000380461,69,181359,,,2628.391304,0.001543899,280,181359,,,647.7107143,3072,,,,,,,7238,3789,2993,0.47,,,,,,0.37,0.39,,0.47,0.5,,,,,,0.48,0.37,0.42,0.5,0.931589222,113094,121399,0.925025416,0.938153029,0.687028553,29692,43218,0.652758138,0.721298968,0.034093867,3144,92216,,,0.116,4685,,0.07906383,0.15293617,,,,0.000762195,0,0.059826426,0.225536993,0.105611186,0.3454628,0.046197584,0.005077292,0.087317875,0.12602341,0.102556934,0.149489885,4.262113697,145223,34073,4.053658645,4.47056875,0.192494449,7889,40983,0.167971637,0.217017261,10.31036413,186,180401,,,85.35124014,755,884580,79.26299078,91.43948949,,,,,,,83.22929671,56.15445699,118.8149962,,,,90.71089903,84.05714968,97.36464838,,,,9.8,,,,,0,,,,,0.115333902,7435,64465,0.101944521,0.128723283,0.090887759,0.079008546,0.102766972,0.017373769,0.012222017,0.022525521,0.010625921,0.006849997,0.014401845,0.775485835,66242,85420,0.762036158,0.788935511,,,,0.719645495,0.608986589,0.830304401,0.756818987,0.663986762,0.849651212,0.649016642,0.502466639,0.795566644,0.769170782,0.746866323,0.791475242,0.422,,85420,0.397933095,0.446066905,76.09273558,,,75.68776772,76.49770344,,,,81.25972695,78.78028299,83.73917092,72.99904868,70.59656812,75.40152925,95.66656735,78.37257674,112.960558,75.83007328,75.39892469,76.26122187,,,,419.6566064,2763,499056,403.3444031,435.9688098,,,,,,,496.354857,402.6112706,590.0984435,,,,430.7281726,413.314587,448.1417582,,,,50.41455008,92,182487,40.64124281,61.82897028,,,,,,,,,,,,,51.05547374,40.35723332,63.71954184,,,,6.280014777,85,13535,5.016252753,7.765335524,,,,,,,,,,,,,5.737912413,4.455713505,7.274171222,,,,,,,0.107,,,0.091,0.125,0.167,,,0.143,0.192,0.102,,,0.087,0.118,124.4,188,151143,,,0.105,18600,,,,0.081995474,13651.59047,166492,,,32.31452304,173,535363,27.49914077,37.12990532,,,,,,,53.84304752,27.82148835,94.05296831,,,,33.65741829,28.42577277,38.8890638,,,,0.358,,,0.338,0.375,0.074958713,7943,105965,0.064235309,0.085682117,0.046846971,2037,43482,0.033740588,0.059953354,0.000678213,123,181359,,,1474.463415,0.906116395,2000.705,2208,,,0.046119827,438,9497,0.028338049,0.063901606,3.178688291,,,,,,3.162076015,2.947528718,2.981171646,3.232240053,3.06644528,,,,,,3.074012393,2.795344785,3.0622172,3.109950994,0.204571042,,,,,800.05895,,,,,0.810769302,52790,65111,0.75084992,0.870688684,76596,,,71583.40426,81608.59575,,,,85625,56773.08511,114476.9149,91023,70046.82979,111999.1702,83455,74464.02128,92445.97872,77889,74814.95745,80963.04255,,,,,,,,,,,57.89647579,,,,,0.252480547,,76596,,,7.516677629,80,10643,,,3.014629918,37,1227348,2.122577669,4.155270237,,,,,,,,,,,,,3.001806542,2.066305501,4.215652444,,,,16.19237207,146,884580,13.48371959,18.90102456,16.50500803,,,,,,,,,,,,,17.09205832,14.12959537,20.05452127,,,,11.75699202,104,884580,9.4973709,14.01661314,,,,,,,,,,,,,12.57756163,10.22242145,15.31272999,,,,12.62885506,155,1227348,10.64068193,14.6170282,,,,,,,,,,,,,13.28071985,11.12644427,15.43499543,,,,11.71122995,,18700,,,219,,0.7064602,94210,133355,,,0.728,,,,,60.40021199,,,,,0.734722408,49402,67239,0.723445672,0.745999145,0.102024439,6738,66043,0.09052825,0.113520627,0.910899924,61248,67239,0.899448449,0.922351399,181359,,,,,0.226898031,41150,181359,,,0.175403482,31811,181359,,,0.044469809,8065,181359,,,0.003556482,645,181359,,,0.03871327,7021,181359,,,0.000573448,104,181359,,,0.024024173,4357,181359,,,0.865691805,157001,181359,,,0.006695952,1128,168460,,,0.50334971,91287,181359,,,0.33780718,60305,178519,, -39,091,39091,OH,Logan County,2024,1,8704.92313,790,126934,7717.428974,9692.417286,0,,,,2,,,,2,,,,2,,,,2,8590.355029,7578.08397,9602.626088,,,,,2,,0.161,,,0.134,0.189,3.771342436,,,3.020899833,4.653957423,5.495023372,,,4.518454186,6.61096177,0.06854511,253,3691,0.060393316,0.076696904,0,,,,,,,,,,,,,0.067511793,0.059067959,0.075955626,,,,0.086956522,0.035456909,0.138456134,0.211,,,0.167,0.253,0.399,,,0.328,0.474,8.5,0.026432268,0.099,,,0.282,,,0.232,0.337,0.598916576,27640,46150,,,0.176278902,,,0.142029784,0.21322113,0.318181818,14,44,0.239406268,0.397671201,267.2,123,46035,,,25.70774355,247,9608,22.50168423,28.91380287,,,,,,,,,,,,,25.53291169,22.14346999,28.92235339,,,,28.05611222,15.33853763,47.07338902,0.069838545,2604,37286,0.059115141,0.08056195,0.000391007,18,46035,,,2557.5,0.000369244,17,46040,,,2708.235294,0.001172893,54,46040,,,852.5925926,2470,,,,,,,,,2457,0.43,,,,,,,0.43,,0.43,0.44,,,,,,0.38,0.41,,0.44,0.92997846,29790,32033,0.919379871,0.940577048,0.560018553,6037,10780,0.501561476,0.618475629,0.034782221,781,22454,,,0.182,1846,,0.134340426,0.229659575,,,,,,,0.463768116,0.185962905,0.741573327,0.085714286,0.002880667,0.168547905,0.132306691,0.092487633,0.172125749,3.656610965,124727,34110,3.125163984,4.188057945,0.228177059,2397,10505,0.170887659,0.285466458,13.68523949,63,46035,,,100.1247168,228,227716,87.1281109,113.1213226,,,,,,,,,,,,,102.4633705,88.83026356,116.0964775,,,,9.3,,,,,0,,,,,0.098091911,1825,18605,0.078755321,0.117428501,0.075790622,0.058344757,0.093236487,0.017145929,0.008439307,0.02585255,0.007793604,0.002911302,0.012675906,0.80852484,16958,20974,0.779485492,0.837564188,,,,,,,,,,,,,0.807957775,0.783635003,0.832280547,0.292,,20974,0.258320661,0.325679339,75.72478907,,,74.93816151,76.51141663,,,,,,,,,,,,,75.72891155,74.92942743,76.52839568,,,,437.3572156,790,126934,404.911951,469.8024801,,,,,,,,,,,,,438.490356,405.0203028,471.9604093,,,,50.31501575,23,45712,31.89540391,75.49722807,,,,,,,,,,,,,41.69323589,24.28784635,66.75490954,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.118,,,0.1,0.135,0.177,,,0.153,0.201,0.104,,,0.088,0.12,80,31,38740,,,0.099,4570,,,,0.026432268,1212.130956,45858,,,20.43303438,28,137033,13.57760295,29.53142378,,,,,,,,,,,,,21.24211288,13.99868624,30.90615899,,,,0.367,,,0.348,0.384,0.078206891,2104,26903,0.065100508,0.091313274,0.049057295,536,10926,0.034759422,0.063355167,0.000977411,45,46040,,,1023.111111,0.975,500.175,513,,,,,,,,3.168237949,,,,,,,,,3.175494543,3.250270522,,,,,,,,,3.260644523,0.052660357,,,,,2579.301475,,,,,0.765871097,44347,57904,0.702443305,0.829298889,62449,,,57548.40426,67349.59575,,,,,,,,,,93779,69868.19149,117689.8085,69459,65218.48936,73699.51064,,,,,,,,,,,59.64373692,,,,,0.309676696,,62449,,,4.4411547,12,2702,,,3.14201598,10,318267,1.506718792,5.778279257,,,,,,,,,,,,,3.37104408,1.616546667,6.199470086,,,,22.05029893,47,227716,16.08363935,29.50503484,20.63974424,,,,,,,,,,,,,21.55308528,15.46686612,29.23919388,,,,12.29601785,28,227716,8.170614562,17.77116933,,,,,,,,,,,,,12.27671721,8.019559273,17.98823517,,,,20.10890227,64,318267,15.48630507,25.67861928,,,,,,,,,,,,,19.88916007,15.14055016,25.6555674,,,,25.10204082,,4900,,,123,,0.676059598,23368,34565,,,0.627,,,,,34.8586834,,,,,0.766068447,14684,19168,0.746687271,0.785449623,0.075994587,1404,18475,0.057960161,0.094029013,0.879538815,16859,19168,0.86137197,0.89770566,46040,,,,,0.225217202,10369,46040,,,0.195026064,8979,46040,,,0.019222415,885,46040,,,0.00360556,166,46040,,,0.009535187,439,46040,,,0.000521286,24,46040,,,0.021264118,979,46040,,,0.924456994,42562,46040,,,0.001495112,65,43475,0,0.004298068,0.499847958,23013,46040,,,0.556338028,25675,46150,, -39,093,39093,OH,Lorain County,2024,1,8731.971874,4992,864811,8344.474315,9119.469433,0,,,,2,,,,2,14970.01968,13169.09914,16770.94022,,8741.443378,7592.85668,9890.030075,,8263.275143,7835.040231,8691.510056,,,,,2,,0.167,,,0.143,0.194,3.824061937,,,3.103694031,4.581657065,5.154770768,,,4.286229821,6.048696838,0.088651535,1992,22470,0.084934986,0.092368085,0,,,,0.111111111,0.076890635,0.145331587,0.166352498,0.150507606,0.182197389,0.089502427,0.079756587,0.099248267,0.076461578,0.072300571,0.080622584,,,,0.104104104,0.085166021,0.123042188,0.194,,,0.157,0.233,0.374,,,0.316,0.433,7.7,0.067495302,0.115,,,0.273,,,0.229,0.321,0.953310924,298352,312964,,,0.190336218,,,0.156662576,0.225636063,0.384615385,50,130,0.341675462,0.427033358,384.4,1213,315595,,,17.33723482,1185,68350,16.35009942,18.32437022,,,,,,,36.53635367,31.4726734,41.60003395,30.16718035,26.87722859,33.45713211,11.33728969,10.37478753,12.29979184,,,,34.63687151,28.54032506,40.73341796,0.071648197,17896,249776,0.063307771,0.079988622,0.000516485,163,315595,,,1936.165644,0.000490091,155,316268,,,2040.43871,0.00212478,672,316268,,,470.6369048,3703,,,,,,1910,4734,4687,3644,0.5,,,,,,0.56,0.44,0.39,0.5,0.51,,,,,,0.53,0.34,0.39,0.52,0.912055717,198923,218104,0.906721572,0.917389861,0.65454397,48090,73471,0.627775,0.68131294,0.050690226,7803,153935,,,0.192,12843,,0.152680851,0.231319149,0.052631579,0,0.432704353,0.139489195,0,0.322056724,0.466992665,0.38213756,0.55184777,0.376233102,0.330113989,0.422352215,0.113190232,0.096429636,0.129950829,4.70996849,131540,27928,4.488367284,4.931569697,0.283651154,19248,67858,0.257837072,0.309465236,9.315736941,294,315595,,,102.3804088,1592,1554985,97.35117995,107.4096377,,,,,,,128.5294093,108.3598559,148.6989628,71.22815928,58.20972148,84.24659708,108.1678746,102.3035692,114.0321799,,,,7.4,,,,,0,,,,,0.129695077,15780,121670,0.119649531,0.139740623,0.117225876,0.107130174,0.127321579,0.010273691,0.007124655,0.013422728,0.006205309,0.004481073,0.007929546,0.799362925,115436,144410,0.788673091,0.81005276,,,,0.617707267,0.552858803,0.682555732,0.713467049,0.670157933,0.756776165,0.734782609,0.698468652,0.771096565,0.784706123,0.769277456,0.80013479,0.362,,144410,0.345533289,0.378466711,76.55864916,,,76.24058755,76.87671077,,,,93.10711597,85.61729893,100.596933,70.48156843,69.20748929,71.75564757,78.57138398,77.1738628,79.96890516,76.87875354,76.53186646,77.22564061,,,,419.3097442,4992,864811,406.9877638,431.6317247,,,,,,,694.2616606,634.7480704,753.7752508,401.1364057,357.8233722,444.4494392,406.1264455,392.624152,419.6287391,,,,52.77601858,160,303168,44.59828978,60.95374738,,,,,,,152.2126522,109.2304272,206.49365,65.80300226,45.00920484,92.89420539,39.42891356,31.31224876,49.00653945,,,,5.854130904,133,22719,4.859200551,6.849061257,,,,,,,15.27070801,10.51165274,21.44575163,9.509202454,6.461041711,13.49755384,3.949100483,3.034597242,5.052615012,,,,,,,0.117,,,0.101,0.134,0.169,,,0.147,0.192,0.106,,,0.091,0.122,177.9,476,267564,,,0.115,35750,,,,0.067495302,20340.11429,301356,,,43.72866894,410,937600,39.49584309,47.9614948,,,,,,,45.27432123,31.16475953,63.58197982,33.32390839,22.9386452,46.79915708,46.81705959,41.84059696,51.79352221,,,,0.358,,,0.344,0.372,0.081092407,14707,181361,0.070369003,0.091815811,0.047611768,3426,71957,0.035696875,0.059526662,0.000853706,270,316268,,,1171.362963,0.881930853,3010.03,3413,,,0.069276002,1131,16326,0.051467229,0.087084774,3.102752342,,,,,,3.832608986,2.588585793,2.591007175,3.341061012,2.959082753,,,,,,3.92662604,2.301454181,2.595960285,3.177135728,0.184970527,,,,,607.2968143,,,,,0.784502821,49215,62734,0.742668562,0.826337081,67124,,,63261.19149,70986.80851,46538,9911.617021,83164.38298,72188,37825.44681,106550.5532,34334,30554.59575,38113.40426,46512,40124.42553,52899.57447,73670,71385.91489,75954.08511,,,,,,,,,,,57.57821169,,,,,0.376392944,,67124,,,7.8125,135,17280,,,4.985005749,108,2166497,4.044828241,5.925183257,,,,,,,25.9643698,18.86575085,34.85595456,5.897804656,3.140332587,10.08542558,3.018337287,2.247350364,3.968556109,,,,16.3672861,259,1554985,14.29815928,18.43641292,16.65610922,,,,,,,14.93246966,8.698713855,23.90833045,14.86734871,9.203123175,22.72632179,17.16170497,14.74969502,19.57371491,,,,12.28307669,191,1554985,10.5410831,14.02507027,,,,,,,32.13235234,22.84924365,43.92598343,8.051878875,4.287286387,13.7689581,11.50369898,9.591266193,13.41613176,,,,9.877696577,214,2166497,8.55425472,11.20113843,,,,,,,12.9821849,8.135866161,19.65518396,10.88825475,6.976310268,16.20085999,9.706025785,8.220515756,11.19153581,,,,28.2428115,,31300,,,884,,0.662070271,157437,237795,,,0.743,,,,,54.95559302,,,,,0.728511766,90707,124510,0.71774976,0.739273772,0.123942457,15060,121508,0.114672643,0.13321227,0.844582764,105159,124510,0.832162311,0.857003218,316268,,,,,0.214134848,67724,316268,,,0.199337271,63044,316268,,,0.077456461,24497,316268,,,0.003870136,1224,316268,,,0.015025232,4752,316268,,,0.000749365,237,316268,,,0.110159738,34840,316268,,,0.768180783,242951,316268,,,0.010523721,3116,296093,,,0.503572919,159264,316268,,,0.142636214,44640,312964,, -39,095,39095,OH,Lucas County,2024,1,11460.84474,8117,1199595,11083.94065,11837.74883,0,,,,2,2487.141232,1137.279346,4721.368789,1,18010.97938,16958.91359,19063.04517,,9293.980255,8114.575534,10473.38498,,10099.26662,9672.267945,10526.2653,,,,,2,,0.179,,,0.155,0.205,3.709922547,,,3.092756035,4.397055985,5.870642134,,,5.107120025,6.675838721,0.099899257,3669,36727,0.096832424,0.102966089,0,,,,0.104204753,0.078600592,0.129808914,0.153244213,0.145883673,0.160604753,0.087282544,0.077701669,0.096863418,0.078755911,0.07519589,0.082315933,,,,0.10741206,0.092201803,0.122622318,0.197,,,0.159,0.233,0.418,,,0.375,0.463,7.3,0.068462651,0.135,,,0.295,,,0.256,0.335,0.932357013,402106,431279,,,0.154832516,,,0.130130053,0.18114036,0.361607143,81,224,0.328822651,0.394288527,700.6,3007,429191,,,25.18081685,2357,93603,24.16422624,26.19740747,,,,,,,43.8704387,41.09957665,46.64130076,30.77975376,27.38063816,34.17886937,15.66040865,14.60759938,16.71321791,,,,42.32602479,36.75818069,47.89386888,0.07462405,26107,349847,0.066283624,0.082964476,0.000864417,371,429191,,,1156.849057,0.000750042,320,426643,,,1333.259375,0.004451028,1899,426643,,,224.6671933,3683,,,,,,514,6124,3281,3352,0.48,,,,,,0.46,0.42,0.41,0.49,0.51,,,,,,0.55,0.37,0.36,0.53,0.90852915,265236,291940,0.903068486,0.913989814,0.657447211,72951,110961,0.63485955,0.680034872,0.04423295,8970,202790,,,0.234,22229,,0.187531915,0.280468085,0.280442804,0.065989854,0.494895755,0.278228782,0.094168435,0.46228913,0.468638207,0.415433871,0.521842542,0.287459698,0.245439017,0.329480379,0.14525311,0.124261942,0.166244278,5.072127724,116593,22987,4.807384854,5.336870595,0.338004484,33165,98120,0.313406559,0.36260241,9.436358172,405,429191,,,115.9497796,2489,2146619,111.3945156,120.5050436,,,,,,,142.9300664,131.5122929,154.3478398,81.92466683,67.89539573,95.95393792,117.8491941,112.2845159,123.4138722,,,,8.8,,,,,0,,,,,0.146635808,26610,181470,0.138496116,0.154775499,0.131279341,0.123164154,0.139394528,0.012619166,0.009929584,0.015308748,0.010304734,0.007888424,0.012721043,0.806578867,157641,195444,0.795629007,0.817528726,,,,0.791084337,0.731139943,0.851028732,0.771327874,0.743461384,0.799194364,0.747730853,0.713381526,0.78208018,0.840017163,0.830308136,0.849726191,0.192,,195444,0.181544723,0.202455277,73.81526574,,,73.53316302,74.09736846,,,,90.33520477,85.92102692,94.74938262,68.68503643,67.99381991,69.37625295,77.09616791,75.53699055,78.65534526,74.82344291,74.50168984,75.14519599,,,,533.1857069,8117,1199595,521.0344047,545.3370092,,,,102.9576916,64.52303716,155.8791823,791.6134533,756.1677731,827.0591335,482.8770856,430.2174971,535.5366742,489.9004277,476.2613654,503.5394899,,,,76.75599384,335,436448,68.5364831,84.97550458,,,,,,,154.9164592,131.1338318,178.6990865,48.21879762,31.20466343,71.1804573,53.80561796,44.59162137,63.01961455,,,,8.579905381,321,37413,7.641293486,9.518517275,,,,,,,16.9224301,14.30842842,19.53643178,6.449721489,4.042006119,9.764955845,5.290530847,4.335946478,6.245115215,,,,,,,0.118,,,0.103,0.136,0.183,,,0.161,0.207,0.122,,,0.107,0.138,289.3,1038,358825,,,0.135,58160,,,,0.068462651,30247.82591,441815,,,57.78355354,743,1285833,53.6286025,61.93850458,,,,,,,62.77439121,53.01685843,72.53192398,49.98010996,36.97556049,66.07635593,60.12207995,54.97424724,65.26991265,,,,0.385,,,0.371,0.398,0.08728301,22038,252489,0.076559606,0.098006415,0.042986115,4390,102126,0.032262711,0.053709519,0.002006361,856,426643,,,498.4147196,0.676761551,4731.24,6991,,,0.080393661,1887,23472,0.060886098,0.099901223,2.869953487,,,,,,3.75778691,2.383241985,2.69464071,3.206080664,2.662572464,,,,,,3.468145013,2.187956343,2.45546699,3.001767203,0.197752606,,,,,2242.839863,,,,,0.796524536,45562,57201,0.771243843,0.82180523,57971,,,55252.02128,60689.97872,50255,4528.021277,95981.97872,64242,51821.91489,76662.08511,34210,32306,36114,48841,42080.48936,55601.51064,67690,65870.59575,69509.40426,,,,,,,,,,,59.59167343,,,,,0.435821359,,57971,,,8.512990603,231,27135,,,10.25625366,309,3012796,9.112676204,11.39983112,,,,,,,35.7179304,30.88697853,40.54888227,8.203968898,4.862191909,12.9658078,3.586943139,2.81652186,4.50307864,,,,15.88706431,342,2146619,14.14959431,17.62453431,15.93203079,,,,,,,10.96285648,7.996382742,14.6691645,7.134342005,3.4211943,13.12030896,18.35279247,16.08455153,20.62103341,,,,17.88859597,384,2146619,16.09936374,19.67782821,,,,,,,43.44884077,37.15365254,49.744029,13.13296186,8.129510381,20.07512726,11.69600243,9.942947735,13.44905712,,,,12.18137571,367,3012796,10.93508494,13.42766647,,,,,,,14.96751369,12.00438366,18.44039549,12.30595335,8.109700798,17.90451603,11.97263453,10.47950557,13.4657635,,,,20.54794521,,43800,,,900,,0.617586578,200623,324850,,,0.657,,,,,156.2600191,,,,,0.615449077,111632,181383,0.605779798,0.625118357,0.134517345,23510,174773,0.125624417,0.143410274,0.874916613,158695,181383,0.868496124,0.881337102,426643,,,,,0.226582881,96670,426643,,,0.176269152,75204,426643,,,0.198088332,84513,426643,,,0.004085383,1743,426643,,,0.018139287,7739,426643,,,0.000557843,238,426643,,,0.079602853,33962,426643,,,0.671181761,286355,426643,,,0.006162087,2487,403597,0.004927379,0.007396796,0.5133566,219020,426643,,,0.04985172,21500,431279,, -39,097,39097,OH,Madison County,2024,1,8115.098865,685,124856,7175.267843,9054.929887,0,,,,2,,,,2,12826.17892,2645.066447,37483.53768,1,,,,2,8448.030617,7415.999537,9480.061696,,,,,2,,0.165,,,0.137,0.194,3.848541978,,,3.06268225,4.767947059,5.233548282,,,4.2053148,6.334598604,0.067895247,210,3093,0.059029443,0.076761052,0,,,,,,,,,,,,,0.066054398,0.056904889,0.075203907,,,,0.133333333,0.056398883,0.210267784,0.208,,,0.166,0.253,0.409,,,0.331,0.491,7.8,0.082357415,0.104,,,0.282,,,0.231,0.333,0.659341913,28895,43824,,,0.191995411,,,0.155308759,0.233895888,0.272727273,9,33,0.181168814,0.368649754,256.8,114,44386,,,18.48451463,151,8169,15.53618763,21.43284162,,,,,,,,,,36.76470588,17.6301055,67.6116031,17.26996408,14.24240589,20.29752227,,,,40.57971015,22.18530515,68.08585832,0.075953576,2513,33086,0.065230171,0.08667698,0.000315415,14,44386,,,3170.428571,0.000298576,13,43540,,,3349.230769,0.000918696,40,43540,,,1088.5,2620,,,,,,,,,2582,0.5,,,,,,,0.47,,0.5,0.49,,,,,,0.47,0.53,0.27,0.49,0.888297705,28215,31763,0.873029602,0.903565808,0.516445754,6312,12222,0.467077622,0.565813885,0.032098531,675,21029,,,0.137,1163,,0.094106383,0.179893617,,,,,,,0.293103448,0.032168231,0.554038666,0.156462585,0.012028971,0.300896199,0.139699028,0.101272257,0.178125798,3.512770546,135196,38487,3.090037076,3.935504015,0.249433107,2200,8820,0.185003769,0.313862444,9.913035642,44,44386,,,81.03545301,180,222125,69.19700195,92.87390407,,,,,,,,,,,,,84.88139615,71.96877106,97.79402123,,,,9.9,,,,,1,,,,,0.081252081,1220,15015,0.064534795,0.097969368,0.058232932,0.044041782,0.072424081,0.010989011,0.003880688,0.018097334,0.013986014,0.004193307,0.023778721,0.799888602,15797,19749,0.772978091,0.826799113,,,,,,,0.645378151,0.557163815,0.733592487,0.773509934,0.568607567,0.978412301,0.774838134,0.761920585,0.787755683,0.427,,19749,0.38507718,0.46892282,76.13180904,,,75.3406768,76.92294129,,,,,,,72.53593647,62.0478996,83.02397335,,,,75.82495587,74.98697429,76.66293745,,,,418.7281872,685,124856,386.5394979,450.9168766,,,,,,,544.2567204,297.5502136,913.1702967,,,,430.018371,395.5700149,464.4667271,,,,52.56570713,21,39950,32.53900121,80.35226717,,,,,,,,,,,,,52.65005265,31.20375799,83.20978199,,,,6.903353057,21,3042,4.273284347,10.55250846,,,,,,,,,,,,,,,,,,,,,,0.115,,,0.098,0.133,0.17,,,0.146,0.195,0.104,,,0.088,0.121,230.5,88,38185,,,0.104,4580,,,,0.082357415,3577.194311,43435,,,35.15963973,47,133676,25.8339808,46.75486725,,,,,,,,,,,,,36.61194742,26.49624788,49.3160529,,,,0.367,,,0.349,0.383,0.086214009,2090,24242,0.071916136,0.100511881,0.048651564,451,9270,0.034353692,0.062949437,0.000643087,28,43540,,,1555,0.916825095,482.25,526,,,,,,,,3.246490721,,,,,,,,2.611885577,3.285510347,3.179588622,,,,,,,,2.756632235,3.222427011,0.081961096,,,,,600.017375,,,,,0.839878384,49447,58874,0.75894648,0.920810288,78533,,,71852.31915,85213.68085,,,,96118,46245.82979,145990.1702,48125,25455.7234,70794.2766,58681,32021.42553,85340.57447,78136,74124.25532,82147.74468,,,,,,,,,,,57.50806775,,,,,0.198591675,,78533,,,8.341056534,18,2158,,,,,,,,,,,,,,,,,,,,,,,,,,14.94343628,35,222125,10.34876403,20.88195439,15.75689364,,,,,,,,,,,,,16.60865601,11.36030841,23.44646671,,,,12.60551491,28,222125,8.376273115,18.21847876,,,,,,,,,,,,,12.27200908,7.862907778,18.25977675,,,,10.65760663,33,309638,7.336206012,14.96724216,,,,,,,,,,,,,12.07773671,8.313758216,16.96163279,,,,22.09302326,,4300,,,95,,0.571038251,19855,34770,,,0.735,,,,,21.87784179,,,,,0.758582285,11579,15264,0.738813093,0.778351477,0.071850262,1071,14906,0.055505234,0.08819529,0.890657757,13595,15264,0.871012535,0.910302979,43540,,,,,0.200160772,8715,43540,,,0.167707855,7302,43540,,,0.059761139,2602,43540,,,0.004180064,182,43540,,,0.015273312,665,43540,,,0.000344511,15,43540,,,0.029467157,1283,43540,,,0.874896647,38093,43540,,,0.008986401,376,41841,0.004097739,0.013875063,0.458245292,19952,43540,,,0.661600949,28994,43824,, -39,099,39099,OH,Mahoning County,2024,1,11216.78542,4558,619014,10693.81295,11739.75788,0,,,,2,,,,2,21093.9972,19304.67381,22883.32059,,8362.16598,6733.530745,9990.801215,,9560.265997,9006.563782,10113.96821,,,,,2,,0.183,,,0.156,0.211,4.145114207,,,3.430998302,4.967475131,5.474101566,,,4.639297501,6.359760696,0.107469966,1807,16814,0.102788568,0.112151363,0,,,,0.077464789,0.033494882,0.121434696,0.179709406,0.167694616,0.191724196,0.099030471,0.083623689,0.114437253,0.082404935,0.077233354,0.087576516,,,,0.117370892,0.08680616,0.147935624,0.214,,,0.175,0.255,0.411,,,0.36,0.464,6.4,0.15377737,0.134,,,0.309,,,0.267,0.354,0.877255986,200553,228614,,,0.153435965,,,0.127059051,0.183396433,0.382352941,39,102,0.333452077,0.430575317,488.2,1107,226762,,,21.83147937,997,45668,20.47631599,23.18664276,,,,,,,51.6287646,46.69108211,56.56644708,36.82584937,31.0283195,42.62337924,11.54457308,10.34532523,12.74382093,,,,34.65623253,26.57073476,44.42772604,0.073297172,12513,170716,0.064956746,0.081637597,0.001027509,233,226762,,,973.2274678,0.00074013,167,225636,,,1351.113773,0.004626921,1044,225636,,,216.1264368,3531,,,,,,,6358,3739,3238,0.45,,,,,,0.44,0.36,0.24,0.46,0.49,,,,,,0.55,0.36,0.38,0.5,0.914401957,148786,162714,0.907952629,0.920851284,0.607373831,32025,52727,0.578978599,0.635769064,0.047951702,4702,98057,,,0.281,12532,,0.229765957,0.332234043,0.583333333,0.209120743,0.957545924,0.138339921,0,0.279067138,0.515485938,0.453968976,0.5770029,0.524741824,0.470737834,0.578745815,0.141473416,0.121128214,0.161818619,4.937637104,110292,22337,4.673985846,5.201288363,0.329903635,15166,45971,0.303321208,0.356486062,12.56824336,285,226762,,,116.0428342,1324,1140958,109.792109,122.2935594,,,,,,,175.5720723,155.704222,195.4399227,79.46449015,60.4920517,102.5034027,110.0351601,103.0268621,117.0434582,,,,8.4,,,,,0,,,,,0.123748356,12235,98870,0.11346185,0.134034863,0.109468822,0.099837678,0.119099967,0.008496005,0.005989995,0.011002015,0.012440579,0.009840037,0.01504112,0.812681342,82067,100983,0.803283047,0.822079637,,,,0.761457109,0.575162315,0.947751903,0.71344748,0.666282581,0.760612379,0.734013172,0.651712943,0.816313401,0.839348508,0.833284358,0.845412658,0.229,,100983,0.213881695,0.244118305,74.13124203,,,73.75110163,74.51138243,,,,86.67263373,81.08699267,92.25827478,66.50670303,65.45903498,67.55437109,78.68634465,76.63908634,80.73360296,75.43938313,75.0276177,75.85114856,,,,519.2978067,4558,619014,502.9370184,535.6585951,,,,,,,929.0748156,868.8655392,989.2840921,395.2662417,330.5871099,459.9453734,463.7708622,446.3062498,481.2354747,,,,63.52802128,129,203060,52.56509371,74.49094884,,,,,,,151.3851744,115.5228363,194.8627275,84.62342576,49.29626397,135.4903022,35.13327732,25.72197465,46.86286849,,,,7.920438304,133,16792,6.574331665,9.266544943,,,,,,,17.22846442,13.40477367,21.80372437,,,,3.972286374,2.874763345,5.350643678,,,,,,,0.126,,,0.109,0.144,0.18,,,0.157,0.204,0.117,,,0.101,0.133,280.8,547,194775,,,0.134,30670,,,,0.15377737,36725.57278,238823,,,57.81194976,394,681520,52.10340281,63.52049671,,,,,,,92.33156856,74.61330596,112.9904562,47.85209353,29.98865225,72.44864467,52.9119124,46.61213964,59.21168517,,,,0.393,,,0.379,0.407,0.087328305,10999,125950,0.075413411,0.099243199,0.035617368,1680,47168,0.026085453,0.045149283,0.001400486,316,225636,,,714.0379747,0.887910663,2156.735,2429,,,0.070661493,783,11081,0.051079041,0.090243944,3.006021431,,,,,,3.40981749,2.442195045,2.588603793,3.319627715,2.973153333,,,,,,3.811639865,2.19767177,2.407462865,3.362425117,0.270175933,,,,,-2632.733929,,,,,0.813756117,45065,55379,0.783546548,0.843965686,54774,,,51583.19149,57964.80851,26576,14113.02128,39038.97872,95156,32844.68085,157467.3192,28496,26751.65957,30240.34043,42517,35154.78723,49879.21277,61700,60090.29787,63309.70213,,,,,,,,,,,67.32738481,,,,,0.461258992,,54774,,,9.178863806,111,12093,,,11.22988447,180,1602866,9.589313179,12.87045576,,,,,,,55.74367892,46.30525891,65.18209893,11.01376721,5.498032908,19.70667185,2.63618794,1.8031506,3.721510806,,,,15.43117122,184,1140958,13.06602608,17.79631636,16.12679871,,,,,,,6.794282234,3.258122422,12.49492693,,,,17.98401865,14.99663033,20.97140697,,,,20.24614403,231,1140958,17.63523101,22.85705705,,,,,,,57.93878387,47.08978455,70.53839045,16.16226918,8.351280333,28.23223167,13.47843567,11.02561065,15.93126068,,,,9.607790046,154,1602866,8.090323187,11.12525691,,,,,,,11.64793291,7.739966827,16.83450615,12.01501877,6.208335528,20.98781982,9.144276918,7.443121662,10.84543218,,,,12.54807692,,20800,,,261,,0.657852245,118966,180840,,,0.682,,,,,63.32872561,,,,,0.697721571,68136,97655,0.689120575,0.706322566,0.114438435,10769,94103,0.104366264,0.124510605,0.855552711,83549,97655,0.846406764,0.864698658,225636,,,,,0.201213459,45401,225636,,,0.224902055,50746,225636,,,0.146036094,32951,225636,,,0.002894042,653,225636,,,0.009519758,2148,225636,,,0.000735698,166,225636,,,0.069479161,15677,225636,,,0.750819905,169412,225636,,,0.008140057,1758,215969,0.006004032,0.010276082,0.508283253,114687,225636,,,0.156433989,35763,228614,, -39,101,39101,OH,Marion County,2024,1,10987.37549,1297,180629,10067.96282,11906.78816,0,,,,2,,,,2,9840.599042,6368.316843,14526.66542,,,,,2,11496.29961,10481.53835,12511.06087,,,,,2,,0.188,,,0.161,0.216,4.106950921,,,3.35690121,4.937191093,6.065151777,,,5.135020563,7.036568272,0.081272085,414,5094,0.073768121,0.088776049,0,,,,,,,0.154411765,0.093681346,0.215142184,0.101010101,0.059035818,0.142984384,0.075434783,0.067802899,0.083066667,,,,0.189781022,0.124117619,0.255444425,0.241,,,0.203,0.286,0.464,,,0.4,0.526,6.6,0.135147145,0.135,,,0.312,,,0.267,0.362,0.807907098,52804,65359,,,0.179230548,,,0.146237983,0.214896559,0.25,13,52,0.178235064,0.326001514,438,286,65291,,,37.80068729,451,11931,34.31195619,41.28941838,,,,,,,,,,49.74271012,33.31347365,71.43882923,37.09786494,33.38730566,40.80842423,,,,58.58585859,39.23586897,84.13906553,0.069727047,3372,48360,0.060195132,0.079258962,0.000275689,18,65291,,,3627.277778,0.000587853,38,64642,,,1701.105263,0.002134835,138,64642,,,468.4202899,4247,,,,,,,7480,,4224,0.49,,,,,,,0.44,,0.49,0.51,,,,,,0.67,0.37,,0.51,0.894680943,41277,46136,0.880174204,0.909187682,0.484178535,8125,16781,0.440787573,0.527569498,0.043986983,1203,27349,,,0.233,3129,,0.171042553,0.294957447,,,,,,,0.356923077,0,0.798100311,0.559431525,0.489312617,0.629550432,0.200754585,0.146480069,0.255029101,4.562814499,106998,23450,4.053279226,5.072349772,0.336519518,4612,13705,0.256634489,0.416404548,13.1718001,86,65291,,,113.3894852,369,325427,101.8199564,124.959014,,,,,,,87.53586539,51.87930156,138.3444063,,,,119.7341413,107.0626709,132.4056118,,,,9.2,,,,,0,,,,,0.117814341,2900,24615,0.100851353,0.134777328,0.099917898,0.083893201,0.115942595,0.00893764,0.004317741,0.013557538,0.015234613,0.008562434,0.021906792,0.819361614,21845,26661,0.796219364,0.842503865,,,,,,,,,,,,,0.823300414,0.798921065,0.847679763,0.28,,26661,0.247239459,0.312760541,74.02405689,,,73.3329551,74.71515868,,,,,,,74.41341788,70.65310151,78.17373425,,,,73.57538851,72.83911923,74.31165778,,,,535.5348565,1297,180629,504.964032,566.1056811,,,,,,,551.1689689,409.0882323,726.647573,,,,554.7395713,521.5870467,587.892096,,,,51.37809304,31,60337,34.90892152,72.92710195,,,,,,,,,,,,,52.64184052,34.69130461,76.59111415,,,,6.669282071,34,5098,4.618671711,9.319653216,,,,,,,,,,,,,7.132051005,4.909375745,10.01605128,,,,,,,0.131,,,0.114,0.151,0.179,,,0.157,0.204,0.122,,,0.105,0.14,200.6,111,55332,,,0.135,8840,,,,0.135147145,8987.420306,66501,,,52.76531219,103,195204,42.57503562,62.95558875,,,,,,,,,,,,,54.79004919,44.27593691,67.04914419,,,,0.414,,,0.397,0.428,0.082275926,2853,34676,0.069169543,0.095382309,0.038617036,554,14346,0.026702143,0.05053193,0.001330404,86,64642,,,751.6511628,0.636257886,806.775,1268,,,,,,,,2.91701736,,,,,,,2.515813703,2.787476962,2.968411508,2.588702811,,,,,,,2.03993888,2.290272836,2.665089009,0.064999319,,,,,1492.9493,,,,,0.802338433,41379,51573,0.71205703,0.892619836,59012,,,51273.2766,66750.7234,11318,11113.06383,11522.93617,,,,40949,14681.42553,67216.57447,,,,56442,51390.08511,61493.91489,,,,,,,,,,,69.19857344,,,,,0.26428523,,59012,,,7.240547064,27,3729,,,3.509710931,16,455878,2.006103048,5.699550669,,,,,,,,,,,,,2.736808583,1.366204984,4.896906539,,,,18.87023412,61,325427,14.32895991,24.39415346,18.74460324,,,,,,,,,,,,,21.8060006,16.51565191,28.25220304,,,,14.13527458,46,325427,10.34879755,18.85447542,,,,,,,,,,,,,14.66132343,10.56659234,19.81785008,,,,15.79369919,72,455878,12.35759692,19.88955028,,,,,,,,,,,,,17.16725384,13.35714819,21.72625846,,,,31.14754098,,6100,,,190,,0.544543408,27818,51085,,,0.673,,,,,56.70383564,,,,,0.67201514,16334,24306,0.647293855,0.696736426,0.12088526,2813,23270,0.101623462,0.140147058,0.866164733,21053,24306,0.850174613,0.882154853,64642,,,,,0.212895641,13762,64642,,,0.188422388,12180,64642,,,0.063209678,4086,64642,,,0.003295071,213,64642,,,0.006358095,411,64642,,,0.001067418,69,64642,,,0.031852356,2059,64642,,,0.874183967,56509,64642,,,0.005395072,333,61723,0.002192675,0.008597469,0.467327744,30209,64642,,,0.346868832,22671,65359,, -39,103,39103,OH,Medina County,2024,1,5831.602364,2148,502843,5416.160902,6247.043826,0,,,,2,,,,2,13173.14961,8255.54273,19944.30683,1,,,,2,5843.139002,5414.055985,6272.222019,,,,,2,,0.124,,,0.103,0.149,3.229695334,,,2.575795564,3.991866914,5.291461733,,,4.407637557,6.197149381,0.060595802,716,11816,0.056293823,0.064897782,0,,,,,,,0.092682927,0.052985848,0.132380006,0.073863636,0.04654006,0.101187213,0.059876372,0.055409725,0.06434302,,,,0.067484663,0.028972953,0.105996373,0.161,,,0.124,0.203,0.377,,,0.317,0.443,8.7,0.038704348,0.083,,,0.232,,,0.189,0.282,0.925659012,168905,182470,,,0.179513065,,,0.14528176,0.215954017,0.241935484,15,62,0.176614669,0.311271323,156.2,286,183092,,,5.800821355,226,38960,5.044526158,6.557116553,,,,,,,19.2,9.920920174,33.53853608,14.71790679,8.722764334,23.260638,5.017335175,4.28024744,5.75442291,,,,14.88372093,8.507332515,24.17023032,0.052592618,7815,148595,0.045443681,0.059741554,0.000622638,114,183092,,,1606.070175,0.000555822,102,183512,,,1799.137255,0.001760103,323,183512,,,568.1486068,2616,,,,,,,4817,,2607,0.51,,,,,,0.4,0.45,,0.51,0.53,,,,,,0.62,0.44,0.32,0.53,0.950377051,122247,128630,0.944758091,0.95599601,0.737519675,31394,42567,0.703714416,0.771324934,0.040132752,3918,97626,,,0.073,2778,,0.051553192,0.094446809,,,,,,,0.33258427,0.116923138,0.548245401,0.156760287,0.067104352,0.246416223,0.060965795,0.046324827,0.075606763,3.772044217,161402,42789,3.552704438,3.991383996,0.155027016,6140,39606,0.131980546,0.178073486,8.137985275,149,183092,,,69.90159409,630,901267,64.4430996,75.36008858,,,,,,,116.5591732,65.23728443,192.2466304,47.60997905,22.83083554,87.55644659,71.44366038,65.736481,77.15083977,,,,8.3,,,,,0,,,,,0.096501291,6730,69740,0.086054041,0.10694854,0.079376533,0.069760786,0.088992281,0.00824491,0.005290637,0.011199183,0.012116433,0.008148463,0.016084402,0.806805245,76540,94868,0.797524017,0.816086473,,,,0.776025237,0.656542442,0.895508031,0.840096618,0.746971214,0.933222023,0.761904762,0.693039374,0.83077015,0.758735216,0.740452453,0.777017979,0.428,,94868,0.40671932,0.449280681,79.33372744,,,78.94725096,79.72020392,,,,87.94967402,84.03366266,91.86568537,71.66543048,67.34284022,75.98802075,93.40719307,80.86692163,105.9474645,79.24472122,78.85006467,79.63937776,,,,299.1906261,2148,502843,285.8262348,312.5550174,,,,,,,567.5772969,413.9947751,759.463079,,,,302.4899809,288.6632433,316.3167186,,,,35.55983803,62,174354,27.26352392,45.5861075,,,,,,,,,,,,,33.05112755,24.68416292,43.34215655,,,,3.011796202,36,11953,2.109425033,4.169595456,,,,,,,,,,,,,2.639002639,1.767381485,3.790047997,,,,,,,0.096,,,0.082,0.112,0.159,,,0.135,0.183,0.085,,,0.072,0.099,71.1,111,156213,,,0.083,15140,,,,0.038704348,6669.997658,172332,,,18.3908046,100,543750,14.7862069,21.9954023,,,,,,,,,,,,,18.93547146,15.33779268,23.12345158,,,,0.325,,,0.307,0.343,0.057690894,6280,108856,0.049350469,0.06603132,0.040253581,1689,41959,0.029530177,0.050976985,0.000708401,130,183512,,,1411.630769,0.964923147,2134.41,2212,,,0.058048624,542,9337,0.031022059,0.085075189,3.526841384,,,,,,3.694358205,2.60445442,3.228078767,3.552181123,3.38038356,,,,,,3.917728471,2.086678026,3.143453977,3.415137002,0.028771194,,,,,4333.1415,,,,,0.759790322,54499,71729,0.722272645,0.797307999,89108,,,82734.7234,95481.2766,47950,6909.148936,88990.85106,96925,86510.19149,107339.8085,69412,43889.10638,94934.89362,94342,62366,126318,89880,86761.87234,92998.12766,,,,,,,,,,,56.93565871,,,,,0.283532343,,89108,,,7.588713125,71,9356,,,1.354707969,17,1254883,0.789167314,2.169018691,,,,,,,,,,,,,1.191203473,0.651242023,1.998637018,,,,14.69671782,135,901267,12.12252778,17.27090786,14.97891302,,,,,,,,,,,,,15.29577263,12.57072397,18.02082128,,,,9.320212545,84,901267,7.434166539,11.53905732,,,,,,,,,,,,,9.494174137,7.528289624,11.81632155,,,,7.889181701,99,1254883,6.411937595,9.604795647,,,,,,,,,,,,,7.487564687,6.005245828,9.224889111,,,,15.92783505,,19400,,,309,,0.768630157,105825,137680,,,0.809,,,,,42.56956735,,,,,0.798202422,57548,72097,0.784913788,0.811491055,0.084611025,5971,70570,0.0751794,0.094042649,0.902215071,65047,72097,0.892398548,0.912031595,183512,,,,,0.211424866,38799,183512,,,0.198728149,36469,183512,,,0.015764637,2893,183512,,,0.002087057,383,183512,,,0.014353285,2634,183512,,,0.000305157,56,183512,,,0.026815685,4921,183512,,,0.92727996,170167,183512,,,0.003960739,686,173200,0.001932661,0.005988817,0.502021666,92127,183512,,,0.340592974,62148,182470,, -39,105,39105,OH,Meigs County,2024,1,12821.8652,485,61987,11022.27372,14621.45667,0,,,,2,,,,2,,,,2,,,,2,13067.98272,11221.30342,14914.66201,,,,,2,,0.213,,,0.181,0.25,4.744411313,,,3.89447439,5.66589958,6.021225889,,,4.994456288,7.055890093,0.092977893,143,1538,0.078464242,0.107491545,0,,,,,,,,,,,,,0.092543276,0.077887578,0.107198973,,,,,,,0.274,,,0.229,0.326,0.396,,,0.332,0.464,5.7,0.149083263,0.167,,,0.345,,,0.291,0.403,0.42769023,9499,22210,,,0.157817913,,,0.126838976,0.192646046,0.178571429,5,28,0.087257021,0.288336239,140.6,31,22049,,,27.21649485,132,4850,22.57346689,31.8595228,,,,,,,,,,,,,27.20207254,22.45230021,31.95184487,,,,,,,0.103134886,1793,17385,0.088837014,0.117432759,0.000136061,3,22049,,,7349.666667,0.000227593,5,21969,,,4393.8,0.001365561,30,21969,,,732.3,2620,,,,,,,,,2610,0.4,,,,,,,,,0.4,0.4,,,,,,,,,0.4,0.857721007,13564,15814,0.830070184,0.885371829,0.467110415,2386,5108,0.393319186,0.540901644,0.058440047,502,8590,,,0.25,1107,,0.160638298,0.339361702,,,,,,,,,,,,,0.21528425,0.155421646,0.275146853,4.978008089,98465,19780,3.959329526,5.996686652,0.253489327,1235,4872,0.176804899,0.330173754,16.78080639,37,22049,,,133.5441926,152,113820,112.3137385,154.7746467,,,,,,,,,,,,,137.4101374,115.4928718,159.3274031,,,,8.4,,,,,0,,,,,0.130913091,1190,9090,0.09722668,0.164599503,0.112739572,0.07745316,0.148025983,0.01320132,0.005003468,0.021399173,0.008690869,0.002012503,0.015369235,0.867263145,7076,8159,0.832210466,0.902315824,,,,,,,,,,,,,0.845550945,0.779883526,0.911218364,0.484,,8159,0.412968844,0.555031156,72.68802053,,,71.42177381,73.95426724,,,,,,,,,,,,,72.40264461,71.11378065,73.69150857,,,,563.8197733,485,61987,509.6634397,617.9761069,,,,,,,,,,,,,575.4133544,519.9167573,630.9099516,,,,52.2987686,11,21033,26.10735686,93.57694344,,,,,,,,,,,,,54.94779959,27.42974358,98.31679161,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.146,,,0.127,0.169,0.203,,,0.176,0.231,0.122,,,0.105,0.141,47.5,9,18930,,,0.167,3750,,,,0.149083263,3543.709164,23770,,,69.49167578,47,67634,51.05986954,92.40919706,,,,,,,,,,,,,72.00747652,52.9083853,95.75467871,,,,0.413,,,0.394,0.43,0.11603803,1489,12832,0.09816569,0.13391037,0.067305689,323,4799,0.04705037,0.087561008,0.000546224,12,21969,,,1830.75,0.877083333,210.5,240,,,,,,,,2.854373149,,,,,,,,,2.852227933,2.615060228,,,,,,,,,2.623324108,0.033339932,,,,,-594.5216667,,,,,0.727245447,38776,53319,0.627786933,0.826703961,46393,,,40461.76596,52324.23404,,,,,,,21667,5946.489362,37387.51064,,,,46672,42429.10638,50914.89362,,,,,,,,,,,,,,,,0.336171405,,46393,,,8.174386921,9,1101,,,,,,,,,,,,,,,,,,,,,,,,,,22.718531,26,113820,14.55619149,33.80337331,22.84308557,,,,,,,,,,,,,23.48501485,15.04729215,34.94384051,,,,16.69302407,19,113820,10.05029095,26.06822489,,,,,,,,,,,,,17.29001729,10.40971987,27.00050375,,,,21.2232057,34,160202,14.69768691,29.65730272,,,,,,,,,,,,,21.32085955,14.67629868,29.94241382,,,,26.52173913,,2300,,,61,,0.615570545,10951,17790,,,0.574,,,,,7.183382591,,,,,0.75048115,6629,8833,0.717676311,0.78328599,0.099900596,804,8048,0.06788125,0.131919943,0.731348353,6460,8833,0.695211671,0.767485034,21969,,,,,0.205516865,4515,21969,,,0.210296327,4620,21969,,,0.009285812,204,21969,,,0.003322864,73,21969,,,0.003322864,73,21969,,,0.000227593,5,21969,,,0.009740999,214,21969,,,0.961946379,21133,21969,,,0.001891164,40,21151,0,0.007759217,0.497109564,10921,21969,,,0.880279154,19551,22210,, -39,107,39107,OH,Mercer County,2024,1,6887.578917,569,115158,5983.966147,7791.191688,0,,,,2,,,,2,,,,2,,,,2,6944.982677,6010.522099,7879.443255,,,,,2,,0.144,,,0.122,0.17,3.516655706,,,2.873512827,4.270354193,5.039050606,,,4.203110195,5.95986485,0.056506078,251,4442,0.049715857,0.0632963,0,,,,,,,,,,,,,0.055302849,0.048371083,0.062234615,0.09352518,0.045120114,0.141930246,,,,0.189,,,0.152,0.228,0.375,,,0.315,0.436,9,0.026061303,0.075,,,0.256,,,0.214,0.303,0.721218962,30672,42528,,,0.189051115,,,0.15729742,0.223295736,0.25,8,32,0.157795866,0.348940352,229.3,97,42309,,,12.72092762,113,8883,10.37542657,15.06642866,,,,,,,,,,,,,10.94357977,8.799930463,13.45151748,180.8510638,105.3524093,289.5600725,,,,0.072599532,2480,34160,0.061876127,0.083322936,0.000496348,21,42309,,,2014.714286,0.000354208,15,42348,,,2823.2,0.000991782,42,42348,,,1008.285714,3955,,,,,,,,,3950,0.41,,,,,,,,,0.41,0.47,,,,,,,,,0.47,0.93014378,26071,28029,0.918760426,0.941527133,0.684608121,6525,9531,0.620976873,0.748239369,0.026954651,614,22779,,,0.087,950,,0.056021277,0.117978723,,,,,,,,,,0.075757576,0,0.346084907,0.083291062,0.053760963,0.112821161,3.739539563,126374,33794,3.391300735,4.087778392,0.112891344,1226,10860,0.076118312,0.149664376,11.34510388,48,42309,,,63.89559847,132,206587,52.99525838,74.79593855,,,,,,,,,,,,,66.2383255,54.851734,77.62491699,,,,9.4,,,,,0,,,,,0.087064677,1400,16080,0.066706429,0.107422924,0.06375,0.045155787,0.082344213,0.014614428,0.007971764,0.021257092,0.013370647,0.006504255,0.020237039,0.870767941,18698,21473,0.851264051,0.890271831,,,,,,,,,,,,,0.863399161,0.833872983,0.892925339,0.204,,21473,0.179149519,0.228850481,78.01485384,,,77.20966816,78.82003951,,,,,,,,,,,,,77.93031036,77.10910836,78.75151237,,,,360.788736,569,115158,329.3194371,392.2580348,,,,,,,,,,,,,363.9733227,331.6595015,396.287144,,,,42.87153544,20,46651,26.18704762,66.2116094,,,,,,,,,,,,,41.92872117,24.84961747,66.26545602,,,,5.671506352,25,4408,3.670299875,8.372262182,,,,,,,,,,,,,5.531505532,3.506500009,8.299974241,,,,,,,0.109,,,0.093,0.125,0.166,,,0.144,0.188,0.095,,,0.082,0.111,52.5,18,34297,,,0.075,3170,,,,0.026061303,1063.666018,40814,,,8.817281873,11,124755,4.401555342,15.77655285,,,,,,,,,,,,,9.297607979,4.641332404,16.63598894,,,,0.337,,,0.32,0.354,0.083293772,1930,23171,0.070187389,0.096400155,0.051007063,585,11469,0.035517701,0.066496424,0.000968169,41,42348,,,1032.878049,0.917687075,539.6,588,,,,,,,,3.505711535,,,,,,,,,3.537849969,3.562885105,,,,,,,,,3.600180232,0.089984466,,,,,2515.232167,,,,,0.74313173,44307,59622,0.696714637,0.789548822,72077,,,65751.38298,78402.61702,,,,,,,,,,46442,7124.042553,85759.95745,74560,70395.74468,78724.25532,,,,,,,,,,,,,,,,0.216379705,,72077,,,6.451612903,20,3100,,,,,,,,,,,,,,,,,,,,,,,,,,9.060764319,19,206587,5.278229115,14.5071614,9.197093718,,,,,,,,,,,,,8.909681521,5.092652815,14.4687646,,,,,,,,,,,,,,,,,,,,,,,,,,,12.82655721,37,288464,9.031079985,17.67971953,,,,,,,,,,,,,13.1040608,9.177923086,18.14154369,,,,57.39130435,,4600,,,264,,0.790715474,23761,30050,,,0.746,,,,,25.62961254,,,,,0.787854201,12623,16022,0.766542674,0.809165727,0.062866723,975,15509,0.043247372,0.082486073,0.883722382,14159,16022,0.864775713,0.902669051,42348,,,,,0.26050817,11032,42348,,,0.194531029,8238,42348,,,0.004864456,206,42348,,,0.003353169,142,42348,,,0.005667328,240,42348,,,0.010012279,424,42348,,,0.01948144,825,42348,,,0.945664494,40047,42348,,,0.002886998,113,39141,0,0.006833983,0.491097573,20797,42348,,,0.715951844,30448,42528,, -39,109,39109,OH,Miami County,2024,1,8074.249558,1722,298022,7458.724552,8689.774563,0,,,,2,,,,2,10975.85417,7293.375387,15863.16525,,,,,2,8158.270799,7506.981289,8809.560308,,,,,2,,0.147,,,0.122,0.174,3.497300017,,,2.754286923,4.361818801,5.115156674,,,4.13468703,6.178418723,0.066106647,543,8214,0.060733238,0.071480057,0,,,,0.098159509,0.052482956,0.143836062,0.079207921,0.04196485,0.116450991,0.086419753,0.043150597,0.129688909,0.064312567,0.058741357,0.069883778,,,,0.075555556,0.041022229,0.110088883,0.183,,,0.142,0.226,0.391,,,0.318,0.466,8.4,0.039426812,0.095,,,0.244,,,0.197,0.295,0.853788589,92870,108774,,,0.174119822,,,0.13896304,0.210909656,0.271428571,19,70,0.209631105,0.335488342,232.5,254,109264,,,19.92210234,445,22337,18.07108182,21.77312286,,,,,,,33.44481605,20.42896252,51.65280586,23.76910017,12.99478825,39.88051124,19.07717353,17.14629716,21.0080499,,,,34.76482618,24.07565275,48.58036002,0.071068571,6289,88492,0.061536656,0.080600486,0.000448455,49,109264,,,2229.877551,0.000489809,54,110247,,,2041.611111,0.001387793,153,110247,,,720.5686275,3215,,,,,,,2365,,3219,0.44,,,,,,0.25,0.32,,0.44,0.48,,,,,,0.46,0.39,,0.48,0.928270994,69961,75367,0.917810214,0.938731774,0.635870188,16635,26161,0.594053775,0.677686602,0.035581051,1898,53343,,,0.132,3247,,0.09387234,0.17012766,,,,0.00591716,0,0.235161283,0.081081081,0,0.233807634,0.046307885,0,0.123815345,0.106205028,0.078278664,0.134131391,3.993260973,133918,33536,3.604445018,4.382076929,0.180818178,4504,24909,0.147874158,0.213762198,11.71474594,128,109264,,,77.55400281,415,535111,70.09232933,85.0156763,,,,,,,108.5018988,59.31899772,182.0477495,,,,79.81772239,71.916171,87.71927377,,,,10.1,,,,,0,,,,,0.101429956,4185,41260,0.085804303,0.11705561,0.088264624,0.074522841,0.102006406,0.007973825,0.003374678,0.012572972,0.008725158,0.003495403,0.013954912,0.825908156,44585,53983,0.811381215,0.840435098,,,,,,,0.734853885,0.623562457,0.846145312,0.697206704,0.52831823,0.866095178,0.803637411,0.791909507,0.815365314,0.257,,53983,0.235159639,0.278840361,76.44099437,,,75.93372841,76.94826033,,,,83.29926011,73.28112733,93.31739288,72.87820017,69.91792993,75.83847041,90.91540743,63.78441338,118.0464015,76.34417383,75.81481077,76.8735369,,,,415.3356933,1722,298022,394.7162457,435.9551409,,,,,,,589.5763814,438.9783411,775.1840592,,,,418.4580034,397.0041015,439.9119054,,,,47.38499847,51,107629,35.28124375,62.30252198,,,,,,,,,,,,,48.84160455,35.75819308,65.14785597,,,,6.035003018,50,8285,4.479295563,7.956399115,,,,,,,,,,,,,6.100795756,4.466549259,8.137606593,,,,,,,0.108,,,0.092,0.127,0.165,,,0.141,0.191,0.096,,,0.081,0.113,85.1,78,91666,,,0.095,10200,,,,0.039426812,4041.484815,102506,,,26.2534477,85,323767,20.97032156,32.46279464,,,,,,,,,,,,,27.0060426,21.41411221,33.61135772,,,,0.361,,,0.343,0.38,0.080667287,5116,63421,0.068752393,0.092582181,0.048127732,1266,26305,0.03382986,0.062425605,0.000888913,98,110247,,,1124.969388,0.935475078,1201.15,1284,,,,,,,,3.308944406,,,,,,,2.840667009,3.003213707,3.356579456,3.305399427,,,,,,,3.100628776,3.128269383,3.332143585,0.064857098,,,,,3539.298913,,,,,0.757802767,47443,62606,0.690700576,0.824904957,72887,,,65456.87234,80317.12766,,,,117059,81133.21277,152984.7872,59087,50407,67767,75333,58869,91797,71610,68875.53192,74344.46809,,,,,,,,,,,48.47394672,,,,,0.265328522,,72887,,,6.850406245,43,6277,,,,,,,,,,,,,,,,,,,,,,,,,,13.7137103,74,535111,10.67008517,17.35557808,13.82890653,,,,,,,,,,,,,13.74656504,10.56323802,17.58782821,,,,8.22259307,44,535111,5.974548712,11.0384474,,,,,,,,,,,,,8.348282188,5.990871432,11.32538745,,,,12.09654657,90,744014,9.727051928,14.86870943,,,,,,,,,,,,,12.85198746,10.30766976,15.834008,,,,29.8245614,,11400,,,340,,0.718586923,57972,80675,,,0.762,,,,,73.24901324,,,,,0.73434952,32423,44152,0.717506985,0.751192054,0.092686526,4020,43372,0.076217684,0.109155368,0.892394456,39401,44152,0.882135965,0.902652946,110247,,,,,0.227253349,25054,110247,,,0.195415748,21544,110247,,,0.027066496,2984,110247,,,0.002267635,250,110247,,,0.018957432,2090,110247,,,0.000417245,46,110247,,,0.020689905,2281,110247,,,0.908850127,100198,110247,,,0.004786601,491,102578,0.002305244,0.007267959,0.502480793,55397,110247,,,0.30582676,33266,108774,, -39,111,39111,OH,Monroe County,2024,1,8822.29624,234,36354,6894.874505,10749.71798,0,,,,2,,,,2,,,,2,,,,2,9115.054867,7112.040141,11118.06959,,,,,2,,0.181,,,0.153,0.209,4.082852088,,,3.257758908,4.929274801,5.708991133,,,4.699838255,6.782229122,0.071668533,64,893,0.054750645,0.088586421,0,,,,,,,,,,,,,0.072247706,0.055063643,0.08943177,,,,,,,0.236,,,0.193,0.28,0.398,,,0.328,0.47,7.4,0.025619954,0.149,,,0.301,,,0.252,0.352,0.760552858,10180,13385,,,0.172085386,,,0.139222026,0.209649446,0.384615385,5,13,0.234541684,0.524881883,165.1,22,13329,,,19.40639269,51,2628,14.44933403,25.51582244,,,,,,,,,,,,,20.19386107,14.98827292,26.62308831,,,,,,,0.096992925,987,10176,0.082695052,0.111290797,0.000150049,2,13329,,,6664.5,0.000151126,2,13234,,,6617,0.000302252,4,13234,,,3308.5,3355,,,,,,,,,3360,0.38,,,,,,,,,0.38,0.39,,,,,,,,,0.39,0.888303369,8597,9678,0.861845053,0.914761684,0.515668524,1481,2872,0.43020083,0.601136217,0.063937622,328,5130,,,0.212,557,,0.133361702,0.290638298,,,,,,,,,,,,,0.147186147,0.080628149,0.213744146,4.163914764,104152,25013,3.363175221,4.964654308,0.200436522,551,2749,0.125424763,0.275448281,20.25658339,27,13329,,,96.62543006,66,68305,74.73010061,122.9312385,,,,,,,,,,,,,98.203629,75.7914876,125.1685867,,,,8.2,,,,,1,,,,,0.120409906,705,5855,0.08941945,0.151400362,0.083087598,0.05495173,0.111223465,0.015371477,0.003108607,0.027634347,0.031596926,0.015814419,0.047379432,0.855772847,4551,5318,0.813210349,0.898335345,,,,,,,,,,,,,0.832129964,0.778999012,0.885260916,0.518,,5318,0.437691496,0.598308504,75.8926565,,,74.37368063,77.41163238,,,,,,,,,,,,,75.58277513,74.02286432,77.14268595,,,,420.4159432,234,36354,360.9308745,479.9010119,,,,,,,,,,,,,430.5611771,369.2806247,491.8417295,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.13,,,0.112,0.149,0.188,,,0.163,0.214,0.112,,,0.096,0.129,70.1,8,11415,,,0.149,2020,,,,0.025619954,375.1273704,14642,,,,,,,,,,,,,,,,,,,,,,,,,,0.369,,,0.351,0.386,0.10758142,806,7492,0.08970908,0.125453761,0.068439716,193,2820,0.046992908,0.089886525,0.000604504,8,13234,,,1654.25,0.825,136.95,166,,,,,,,,3.001014188,,,,,,,,,3.004437912,2.969445806,,,,,,,,,2.966415746,,,,,,8012.835,,,,,0.615761031,37373,60694,0.506321032,0.72520103,56384,,,49597.2766,63170.7234,,,,,,,,,,,,,54948,48660.51064,61235.48936,,,,,,,,,,,,,,,,0.44808811,,56384,,,11.92250373,8,671,,,,,,,,,,,,,,,,,,,,,,,,,,19.51718945,14,68305,10.08481659,34.09260221,20.49630335,,,,,,,,,,,,,20.12985257,10.40138857,35.16280139,,,,14.64021668,10,68305,7.020552955,26.92387972,,,,,,,,,,,,,15.10825062,7.244993422,27.7846108,,,,21.66646032,21,96924,13.41188043,33.11948613,,,,,,,,,,,,,22.32831124,13.82157657,34.13119556,,,,37.5,,1200,,,45,,0.651892385,7148,10965,,,0.551,,,,,4.602359754,,,,,0.800502332,4462,5574,0.769097753,0.831906911,0.087212616,459,5263,0.060355002,0.114070231,0.769106566,4287,5574,0.72611585,0.812097283,13234,,,,,0.202962067,2686,13234,,,0.237192081,3139,13234,,,0.00846305,112,13234,,,0.001813511,24,13234,,,0.002418014,32,13234,,,0.000151126,2,13234,,,0.007329606,97,13234,,,0.964183165,12760,13234,,,0.001804063,23,12749,0,0.00950169,0.492368143,6516,13234,,,0.986626821,13206,13385,, -39,113,39113,OH,Montgomery County,2024,1,11813.97183,10432,1474082,11472.61389,12155.32977,0,,,,2,3530.577448,2485.852345,4866.435943,,17918.43505,17005.80711,18831.06299,,7139.386157,5698.059011,8580.713303,,10499.29266,10119.15809,10879.42723,,,,,2,,0.179,,,0.155,0.206,4.010566894,,,3.324757414,4.764171408,5.760872859,,,4.981049871,6.554737369,0.092376158,4110,44492,0.089685565,0.095066751,0,,,,0.081424936,0.065813775,0.097036098,0.13978318,0.133623826,0.145942534,0.07091861,0.05994246,0.08189476,0.074200258,0.07112388,0.077276637,,,,0.085959885,0.06898084,0.102938931,0.187,,,0.153,0.225,0.406,,,0.362,0.453,7.2,0.101349961,0.124,,,0.282,,,0.244,0.323,0.930133313,499769,537309,,,0.174722019,,,0.148176533,0.202665764,0.324232082,95,293,0.295155057,0.353477245,542.3,2906,535840,,,22.94853964,2640,115040,22.07313436,23.82394492,,,,,,,41.06419896,38.67622129,43.45217663,28.82249561,24.41120439,33.23378682,16.94566411,16.00055666,17.89077155,,,,16.81400589,13.6350261,20.51166128,0.07910356,33719,426264,0.070763135,0.087443986,0.000948044,508,535840,,,1054.80315,0.000575023,307,533892,,,1739.061889,0.00376106,2008,533892,,,265.8824701,3145,,,,,,825,4368,1875,2963,0.45,,,,,,0.35,0.44,0.29,0.45,0.49,,,,,0.58,0.47,0.36,0.41,0.51,0.917045958,337483,368011,0.912728909,0.921363006,0.685990197,93768,136690,0.666741995,0.705238399,0.040955228,10055,245512,,,0.201,23088,,0.167638298,0.234361702,0.400749064,0.097349737,0.704148391,0.053932584,0.001155845,0.106709323,0.395219977,0.351288128,0.439151826,0.326199843,0.261728457,0.390671229,0.143672983,0.125796616,0.16154935,4.698970841,120538,25652,4.486378413,4.911563268,0.313965134,36992,117822,0.29575117,0.332179098,10.394894,557,535840,,,143.2964953,3816,2663010,138.7498879,147.8431028,,,,38.76282,24.83607018,57.67600354,164.6884011,154.1094102,175.267392,61.20233724,45.84475038,80.05416399,148.3919836,142.8717586,153.9122086,,,,10.5,,,,,0,,,,,0.137179346,31150,227075,0.128850661,0.145508032,0.123618538,0.116153276,0.131083801,0.01382803,0.011214182,0.016441879,0.006693824,0.005161033,0.008226614,0.780861846,193692,248049,0.771594747,0.790128945,,,,0.707943578,0.644081443,0.771805714,0.691756858,0.663605654,0.719908061,0.68286802,0.623706958,0.742029083,0.827522708,0.819877963,0.835167452,0.232,,248049,0.22107982,0.24292018,73.73617318,,,73.48283945,73.9895069,,,,84.53420435,82.62539627,86.44301243,69.13970959,68.54399474,69.73542443,88.0445797,83.00751936,93.08164004,74.68536059,74.39887616,74.97184502,,,,552.1611618,10432,1474082,541.0145041,563.3078196,,,,168.1395931,129.4879749,214.7105067,773.5761928,743.9526881,803.1996974,269.752178,217.4801044,322.0242517,514.4914492,501.9342511,527.0486473,,,,75.77102264,397,523947,68.31745895,83.22458633,,,,,,,143.8052247,123.1937088,164.4167405,67.27568869,40.50435934,105.0593215,55.46311703,47.31512973,63.61110433,,,,7.834978531,354,45182,7.018786686,8.651170376,,,,,,,14.10048622,12.00533422,16.19563822,,,,5.509931916,4.648040654,6.371823177,,,,,,,0.123,,,0.107,0.141,0.185,,,0.162,0.208,0.119,,,0.103,0.135,343.2,1550,451587,,,0.124,66550,,,,0.101349961,54237.73562,535153,,,56.78062605,908,1599137,53.08733679,60.47391532,,,,,,,65.40893785,56.82392921,73.9939465,,,,59.40489536,54.88639556,63.92339515,,,,0.387,,,0.374,0.401,0.091429032,28343,310000,0.081897117,0.100960947,0.047555472,5806,122089,0.035640578,0.059470365,0.001927356,1029,533892,,,518.8454811,0.837482338,4741.825,5662,,,0.055446352,1495,26963,0.041848381,0.069044324,2.932081055,,,,,,3.485034946,2.454086805,2.73723436,3.20949341,2.725303901,,,,,,3.617144056,2.149904285,2.570466287,3.041409923,0.240774774,,,,,-3675.622281,,,,,0.796042463,46867,58875,0.772307485,0.819777441,62794,,,59920.12766,65667.87234,,,,87115,73854.91489,100375.0851,40491,38482.14894,42499.85106,51193,41627.7234,60758.2766,69387,67975.08511,70798.91489,,,,,,,,,,,62.6424341,,,,,0.402347358,,62794,,,8.241082411,268,32520,,,10.76074726,401,3726507,9.707509756,11.81398477,,,,,,,38.8281019,34.4775784,43.1786254,,,,3.382631064,2.716530505,4.162618597,,,,14.9326933,414,2663010,13.44222811,16.42315849,15.54631789,,,,,,,8.698094294,6.413288095,11.53241112,,,,17.4267383,15.50763052,19.34584608,,,,18.32512833,488,2663010,16.69923075,19.95102591,,,,,,,42.10079425,36.7519755,47.44961301,,,,12.82927812,11.20615049,14.45240575,,,,12.4245037,463,3726507,11.29276901,13.55623838,,,,,,,19.28716173,16.22094676,22.3533767,,,,11.21209173,9.93261702,12.49156644,,,,21.53550864,,52100,,,1122,,0.666687358,268505,402745,,,0.682,,,,,120.9406888,,,,,0.622966562,142075,228062,0.613847966,0.632085158,0.12568906,27931,222223,0.117928794,0.133449326,0.883711447,201541,228062,0.877245323,0.890177571,533892,,,,,0.218452421,116630,533892,,,0.187833869,100283,533892,,,0.215348797,114973,533892,,,0.002715905,1450,533892,,,0.024769054,13224,533892,,,0.000722993,386,533892,,,0.037086152,19800,533892,,,0.690871937,368851,533892,,,0.010503331,5296,504221,0.008666605,0.012340057,0.515280244,275104,533892,,,0.055236372,29679,537309,, -39,115,39115,OH,Morgan County,2024,1,10822.68089,320,38457,8754.726801,12890.63497,0,,,,2,,,,2,44447.54962,9166.153293,129894.6016,1,,,,2,10871.02197,8699.270399,13042.77353,,,,,2,,0.213,,,0.182,0.246,4.621897275,,,3.719123422,5.540856525,5.730908824,,,4.647927889,6.806379176,0.057351408,55,959,0.042635274,0.072067541,0,,,,,,,,,,,,,0.057110862,0.041890674,0.07233105,,,,,,,0.264,,,0.217,0.31,0.453,,,0.375,0.527,6.8,0.078645723,0.151,,,0.331,,,0.275,0.384,0.134400812,1855,13802,,,0.157508144,,,0.124455963,0.192472263,0.375,6,16,0.240765683,0.502616143,212,29,13682,,,23.52515382,65,2763,18.15621706,29.98473971,,,,,,,,,,,,,24.23993427,18.45256106,31.26774912,,,,,,,0.09257707,994,10737,0.078279198,0.106874942,7.30887E-05,1,13682,,,13682,0.000219491,3,13668,,,4556,0.001536436,21,13668,,,650.8571429,2193,,,,,,,7156,,2061,0.39,,,,,,,,,0.4,0.36,,,,,,,0.25,,0.36,0.865374962,8620,9961,0.837764179,0.892985746,0.526623377,1622,3080,0.431398764,0.621847989,0.053213443,361,6784,,,0.242,676,,0.157404255,0.326595745,,,,,,,0.04,0,0.30093056,0.222222222,0,0.857765309,0.210107441,0.140387259,0.279827624,4.636872636,91926,19825,3.574309902,5.699435369,0.211732038,610,2881,0.130764321,0.292699754,9.501534863,13,13682,,,114.1934046,82,71808,90.82140356,141.7441248,,,,,,,,,,,,,113.6742551,89.41201264,142.4916631,,,,8.2,,,,,0,,,,,0.105349794,640,6075,0.073242028,0.137457561,0.078529658,0.04906518,0.107994135,0.017119342,0.003371099,0.030867584,0.012345679,0.002971343,0.021720015,0.819899009,4384,5347,0.766613715,0.873184302,,,,,,,,,,,,,0.809238152,0.743295893,0.875180412,0.532,,5347,0.453987012,0.610012988,74.18933235,,,72.68452845,75.69413626,,,,,,,,,,,,,74.10919469,72.55291384,75.66547554,,,,542.7897284,320,38457,478.2926825,607.2867743,,,,,,,1446.127055,693.4741334,2659.479143,,,,538.9134411,471.9570446,605.8698376,,,,92.78589654,12,12933,47.94382671,162.0782885,,,,,,,,,,,,,88.23010411,42.30976439,162.2583028,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.146,,,0.125,0.166,0.197,,,0.17,0.224,0.12,,,0.103,0.138,135.5,16,11807,,,0.151,2100,,,,0.078645723,1183.932718,15054,,,,,,,,,,,,,,,,,,,,,,,,,,0.379,,,0.362,0.395,0.104998112,834,7943,0.087125771,0.122870452,0.058364438,172,2947,0.039300609,0.077428268,0.000438982,6,13668,,,2278,0.825,120.45,146,,,,,,,,3.342149671,,,,,,,,,3.30727981,3.333183374,,,,,,,,,3.323502356,0.032765061,,,,,891.2686,,,,,0.853484441,40893,47913,0.691359044,1.015609837,58803,,,55151.08511,62454.91489,,,,,,,53281,27857,78705,16442,4093.404255,28790.59575,52354,47726.25532,56981.74468,,,,,,,,,,,32.66828457,,,,,0.265224563,,58803,,,12.53918495,8,638,,,,,,,,,,,,,,,,,,,,,,,,,,16.13382729,13,71808,8.053948451,28.86787364,18.10383244,,,,,,,,,,,,,13.63115167,6.23303054,25.8761719,,,,15.31862745,11,71808,7.647003631,27.40925595,,,,,,,,,,,,,16.67222408,8.322714188,29.83121421,,,,23.67120694,24,101389,15.16658893,35.22087958,,,,,,,,,,,,,24.64796279,15.62469408,36.98404623,,,,15.33333333,,1500,,,23,,0.594615719,6847,11515,,,0.544,,,,,0.099294105,,,,,0.755700902,4275,5657,0.718770622,0.792631181,0.108480176,591,5448,0.07026878,0.146691573,0.756231218,4278,5657,0.726196268,0.786266168,13668,,,,,0.207930934,2842,13668,,,0.221319871,3025,13668,,,0.028533802,390,13668,,,0.003950834,54,13668,,,0.002048581,28,13668,,,0.000146327,2,13668,,,0.011340357,155,13668,,,0.916154522,12522,13668,,,0.001894514,25,13196,0,0.008832296,0.498536728,6814,13668,,,1,13802,13802,, -39,117,39117,OH,Morrow County,2024,1,9222.038347,572,98205,8008.570284,10435.50641,0,,,,2,,,,2,,,,2,,,,2,9558.619088,8287.970237,10829.26794,,,,,2,,0.166,,,0.139,0.197,3.832595227,,,3.080745555,4.648653814,5.708566944,,,4.724167391,6.775982136,0.065579985,173,2638,0.056133388,0.075026582,0,,,,,,,,,,,,,0.063829787,0.054319374,0.0733402,,,,,,,0.215,,,0.171,0.263,0.41,,,0.34,0.483,8.6,0.003763459,0.107,,,0.282,,,0.232,0.337,0.256452074,8963,34950,,,0.168788412,,,0.135958161,0.207086786,0.28125,9,32,0.188019808,0.378196141,216.2,76,35151,,,18.15856778,142,7820,15.17185479,21.14528076,,,,,,,,,,,,,18.04511278,14.96668687,21.1235387,,,,,,,0.099094374,2834,28599,0.084796502,0.113392246,0.000199141,7,35151,,,5021.571429,0.000141487,5,35339,,,7067.8,0.000792326,28,35339,,,1262.107143,3032,,,,,,,,,3005,0.46,,,,,,,,,0.46,0.47,,,,,,,,,0.47,0.897498475,22065,24585,0.875941633,0.919055317,0.510170972,4088,8013,0.441107292,0.579234652,0.038853727,663,17064,,,0.144,1076,,0.095148936,0.192851064,,,,,,,,,,0.06372549,0,0.245066086,0.130342184,0.092105729,0.168578639,3.048437214,116746,38297,2.744034197,3.352840232,0.192624004,1499,7782,0.122794431,0.262453577,7.965633979,28,35151,,,90.91115707,160,175996,76.82432734,104.9979868,,,,,,,,,,,,,94.41132461,79.73620667,109.0864425,,,,9.1,,,,,0,,,,,0.096440873,1260,13065,0.074159729,0.118722016,0.063632858,0.044960047,0.082305668,0.022885572,0.009027212,0.036743932,0.022962113,0.012253673,0.033670553,0.760729051,13064,17173,0.728940102,0.792518001,,,,,,,,,,,,,0.625508982,0.560511073,0.690506891,0.534,,17173,0.475120651,0.592879349,76.7528053,,,75.72484934,77.78076127,,,,,,,,,,,,,76.36424858,75.31293091,77.41556626,,,,428.4609893,572,98205,391.2198047,465.7021738,,,,,,,,,,,,,440.4752819,401.9211835,479.0293803,,,,63.53790614,22,34625,39.8188675,96.19715347,,,,,,,,,,,,,68.06930693,42.65867225,103.0577487,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.12,,,0.102,0.14,0.178,,,0.153,0.205,0.102,,,0.087,0.118,60.2,18,29888,,,0.107,3730,,,,0.003763459,131.0699925,34827,,,41.55255454,44,105890,30.19214974,55.78236498,,,,,,,,,,,,,43.50104304,31.60792447,58.39811985,,,,0.405,,,0.386,0.422,0.106825776,2238,20950,0.090144925,0.123506627,0.077999257,630,8077,0.05416947,0.101829044,0.000396163,14,35339,,,2524.214286,0.904618227,367.275,406,,,,,,,,3.103480904,,,,,,,,,3.125613798,3.01179555,,,,,,,,,3.033539692,0.030278502,,,,,335.9909,,,,,0.815631789,46553,57076,0.750649146,0.880614433,71835,,,64230.91489,79439.08511,,,,,,,,,,,,,70964,65801.2766,76126.7234,,,,,,,,,,,,,,,,0.269214171,,71835,,,7.450771687,14,1879,,,,,,,,,,,,,,,,,,,,,,,,,,13.36012185,23,175996,8.372717236,20.22738504,13.06847883,,,,,,,,,,,,,13.95316029,8.744371269,21.12525237,,,,10.22750517,18,175996,6.06146775,16.16386751,,,,,,,,,,,,,10.68807448,6.334430314,16.89176559,,,,22.34809391,55,246106,16.83564276,29.08911606,,,,,,,,,,,,,22.48668831,16.84407261,29.41314195,,,,16.92307692,,3900,,,66,,0.681321521,18457,27090,,,0.667,,,,,11.37312664,,,,,0.817122977,10804,13222,0.782379116,0.851866837,0.072600813,929,12796,0.051438815,0.09376281,0.876720617,11592,13222,0.856432449,0.897008785,35339,,,,,0.215484309,7615,35339,,,0.192054105,6787,35339,,,0.008772178,310,35339,,,0.002631653,93,35339,,,0.004867144,172,35339,,,0.000509352,18,35339,,,0.019157305,677,35339,,,0.949432638,33552,35339,,,0.003740122,124,33154,0,0.008498475,0.49424149,17466,35339,,,0.999885551,34946,34950,, -39,119,39119,OH,Muskingum County,2024,1,11111.8254,1618,238894,10267.85618,11955.79461,0,,,,2,,,,2,15887.21927,10936.03073,22311.56265,,,,,2,11002.59623,10126.76062,11878.43184,,,,,2,,0.188,,,0.16,0.22,4.297075503,,,3.545805329,5.09642254,5.65180242,,,4.828971552,6.530776165,0.080490938,564,7007,0.074120907,0.086860968,0,,,,,,,0.129353234,0.082958607,0.17574786,,,,0.078333072,0.071741284,0.08492486,,,,0.091205212,0.058999743,0.123410681,0.215,,,0.173,0.261,0.447,,,0.392,0.502,6.9,0.106559392,0.133,,,0.325,,,0.276,0.375,0.652817961,56410,86410,,,0.174283887,,,0.144360774,0.20784585,0.254237288,15,59,0.186923305,0.325077076,366.9,317,86408,,,28.73531521,521,18131,26.26783785,31.20279256,,,,,,,24.80620155,14.17888753,40.28371721,,,,28.29718275,25.69419967,30.90016582,,,,42.92682927,31.19069986,57.62726466,0.087460726,6124,70020,0.075545832,0.099375619,0.000532358,46,86408,,,1878.434783,0.00061547,53,86113,,,1624.773585,0.002136727,184,86113,,,468.0054348,3282,,,,,,,5205,,3226,0.52,,,,,,0.5,0.47,,0.52,0.4,,,,,,0.37,0.33,,0.41,0.904029899,53458,59133,0.892543117,0.91551668,0.543276924,11204,20623,0.496467187,0.590086661,0.043072452,1749,40606,,,0.182,3440,,0.112893617,0.251106383,,,,,,,0.506072875,0.22590715,0.786238599,0.29153605,0.024121343,0.558950757,0.190336212,0.159818303,0.22085412,4.807772974,112324,23363,4.411080901,5.204465047,0.264868211,5135,19387,0.222702527,0.307033895,12.61457273,109,86408,,,98.14954464,423,430975,88.79604407,107.5030452,,,,,,,104.7443007,61.01741509,167.7057721,,,,100.3919097,90.49142995,110.2923894,,,,8.9,,,,,1,,,,,0.132416038,4475,33795,0.116337278,0.148494797,0.113554758,0.097142326,0.129967189,0.014795088,0.009424726,0.02016545,0.01168812,0.006084726,0.017291513,0.847982764,33062,38989,0.82735492,0.868610608,,,,,,,0.82208589,0.697273436,0.946898343,,,,0.849352498,0.826037141,0.872667854,0.31,,38989,0.279904573,0.340095427,74.17798046,,,73.54787206,74.80808886,,,,,,,69.81311405,66.30343369,73.32279442,,,,74.21009257,73.55955904,74.86062611,,,,516.5718551,1618,238894,490.0382044,543.1055059,,,,,,,698.6835132,545.6776204,881.2941827,,,,515.9885335,488.479463,543.4976039,,,,72.48579512,62,85534,55.57444348,92.92351799,,,,,,,,,,,,,74.08804354,55.81325364,96.43577237,,,,7.526270946,53,7042,5.637693401,9.844547704,,,,,,,,,,,,,6.988662836,5.097578628,9.351380726,,,,,,,0.132,,,0.113,0.152,0.186,,,0.162,0.212,0.115,,,0.099,0.131,95.1,69,72524,,,0.133,11470,,,,0.106559392,9171.993075,86074,,,44.07619769,114,258643,35.98509398,52.16730141,,,,,,,,,,,,,45.38398242,36.78460947,53.98335538,,,,0.374,,,0.358,0.391,0.101740215,5139,50511,0.086250853,0.117229577,0.051265761,1049,20462,0.035776399,0.066755123,0.001881249,162,86113,,,531.5617284,0.896016484,978.45,1092,,,0.067980296,276,4060,0.034036185,0.101924407,3.17300659,,,,,,,2.895645805,,3.21210146,3.062306845,,,,,,,2.512513802,,3.095642401,0.118596242,,,,,-597.1868,,,,,0.766130932,42282,55189,0.714570537,0.817691327,58791,,,53084.95745,64497.04255,,,,,,,45713,30402.3617,61023.6383,,,,57006,53872.38298,60139.61702,,,,,,,,,,,54.69129191,,,,,0.265278699,,58791,,,9.409919624,48,5101,,,2.651935167,16,603333,1.515810084,4.306576567,,,,,,,,,,,,,,,,,,,19.27339961,79,430975,15.1337641,24.19598826,18.33052961,,,,,,,,,,,,,19.59318651,15.24466861,24.79643152,,,,10.67347294,46,430975,7.814323664,14.23691716,,,,,,,,,,,,,9.403799135,6.621142426,12.96189838,,,,12.59669204,76,603333,9.924760601,15.76663848,,,,,,,,,,,,,12.87220619,10.05329983,16.2365366,,,,52.15909091,,8800,,,459,,0.610838554,40465,66245,,,0.683,,,,,58.38364603,,,,,0.688690425,23828,34599,0.673072806,0.704308043,0.121617216,4103,33737,0.105047192,0.138187239,0.865545247,29947,34599,0.851686317,0.879404178,86113,,,,,0.224321531,19317,86113,,,0.186684937,16076,86113,,,0.03792691,3266,86113,,,0.003239929,279,86113,,,0.005365044,462,86113,,,0.000359992,31,86113,,,0.013575186,1169,86113,,,0.909467792,78317,86113,,,0.002978865,242,81239,0.000332515,0.005625215,0.508030146,43748,86113,,,0.510461752,44109,86410,, -39,121,39121,OH,Noble County,2024,1,7786.258427,210,38109,5811.892025,9760.624828,0,,,,2,,,,2,,,,2,,,,2,7541.674727,5606.536498,9476.812957,,,,,2,,0.193,,,0.163,0.227,4.133220735,,,3.315375505,5.112840032,5.282092139,,,4.274374555,6.42882932,0.066869301,66,987,0.051285187,0.082453415,0,,,,,,,,,,,,,0.067497404,0.051651702,0.083343106,,,,,,,0.245,,,0.2,0.293,0.406,,,0.333,0.481,6.1,0.143061358,0.153,,,0.306,,,0.255,0.362,0.581792419,8212,14115,,,0.149031825,,,0.11928229,0.183377828,0.3125,5,16,0.177519792,0.449075671,169.3,24,14176,,,28.0656304,65,2316,21.66046102,35.77194983,,,,,,,,,,,,,28.04986643,21.55428753,35.88796406,,,,,,,0.090126759,775,8599,0.075828887,0.104424631,7.05418E-05,1,14176,,,14176,0.000209278,3,14335,,,4778.333333,0.001185909,17,14335,,,843.2352941,3161,,,,,,,,,2995,0.45,,,,,,,,,0.45,0.44,,,,,,,,,0.44,0.847322587,9146,10794,0.821359461,0.873285713,0.335449382,1004,2993,,,0.060143822,276,4589,,,0.169,449,,0.109425532,0.228574468,,,,,,,,,,,,,0.21735731,0.123743144,0.310971477,5.464126214,112561,20600,3.388732813,7.539519614,0.199025487,531,2668,0.103535201,0.294515773,12.69751693,18,14176,,,68.31743907,49,71724,50.54161752,90.3192775,,,,,,,,,,,,,67.63611769,49.51813884,90.21710269,,,,8.3,,,,,0,,,,,0.084507042,420,4970,0.047212344,0.12180174,0.047893114,0.024725703,0.071060526,0.009657948,0,0.021016831,0.030181087,0.000956093,0.05940608,0.843047158,3486,4135,0.787177188,0.898917129,,,,,,,,,,,,,0.844392833,0.797718642,0.891067025,0.359,,4135,0.272824755,0.445175246,81.06533198,,,79.17920959,82.95145437,,,,,,,,,,,,,80.86194931,79.01282011,82.71107851,,,,328.8267549,210,38109,274.4497673,383.2037425,,,,,,,,,,,,,333.4354035,278.3059451,388.5648619,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.132,,,0.114,0.153,0.184,,,0.16,0.21,0.117,,,0.101,0.135,228.4,28,12260,,,0.153,2160,,,,0.143061358,2095.13359,14645,,,,,,,,,,,,,,,,,,,,,,,,,,0.379,,,0.361,0.396,0.100803751,602,5972,0.08293141,0.118676091,0.065870431,182,2763,0.044423622,0.087317239,0.000418556,6,14335,,,2389.166667,0.965298508,129.35,134,,,,,,,,2.988320176,,,,,,,,,3.014964858,3.004359836,,,,,,,,,3.026668013,0.033014146,,,,,4517.58,,,,,0.488793231,36223,74107,0.328650948,0.648935515,57054,,,49264.04255,64843.95745,,,,,,,,,,,,,51406,44826.59575,57985.40426,,,,,,,,,,,,,,,,0.273355067,,57054,,,7.142857143,5,700,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.95543331,13,100344,6.898222605,22.15418552,,,,,,,,,,,,,12.59763165,6.509380101,22.00552726,,,,15,,1200,,,18,,0.54353042,6343,11670,,,0.596,,,,,10.50252675,,,,,0.797359736,3624,4545,0.765855409,0.828864063,0.074065634,325,4388,0.043067906,0.105063361,0.762156216,3464,4545,0.724690363,0.799622068,14335,,,,,0.188140914,2697,14335,,,0.298290896,4276,14335,,,0.031810255,456,14335,,,0.003836763,55,14335,,,0.003208929,46,14335,,,0.000209278,3,14335,,,0.008022323,115,14335,,,0.941192885,13492,14335,,,0.003701236,50,13509,,,0.401604465,5757,14335,,,1,14115,14115,, -39,123,39123,OH,Ottawa County,2024,1,8093.052375,696,107958,6967.624878,9218.479872,0,,,,2,,,,2,,,,2,5877.8549,3213.47797,9862.041758,1,8265.865007,7049.655088,9482.074926,,,,,2,,0.149,,,0.123,0.176,3.561229698,,,2.80133752,4.381731733,5.25745606,,,4.297632299,6.294924903,0.084565619,183,2164,0.072842641,0.096288598,0,,,,,,,,,,0.092592593,0.037924556,0.147260629,0.082074522,0.070002657,0.094146386,,,,,,,0.189,,,0.148,0.233,0.373,,,0.303,0.443,7.7,0.089571073,0.106,,,0.245,,,0.2,0.296,0.681696561,27516,40364,,,0.170170837,,,0.137953157,0.205180735,0.333333333,9,27,0.231289482,0.434909506,182,73,40104,,,12.84257911,97,7553,10.41446651,15.6668574,,,,,,,,,,,,,13.32720588,10.67454558,16.43905922,,,,,,,0.073416947,2160,29421,0.062693543,0.084140351,0.000473768,19,40104,,,2110.736842,0.000425234,17,39978,,,2351.647059,0.001225674,49,39978,,,815.877551,2498,,,,,,,,8502,2470,0.5,,,,,,,,0.5,0.5,0.53,,,,,,,0.35,0.43,0.53,0.931013052,28462,30571,0.918717549,0.943308554,0.665694849,5480,8232,0.608706528,0.722683171,0.052467178,1075,20489,,,0.145,995,,0.104489362,0.185510638,,,,,,,,,,0.022421525,0,0.0769354,0.135675857,0.093788138,0.177563577,4.067606426,130139,31994,3.612845662,4.52236719,0.24468233,1760,7193,0.174474691,0.314889969,14.46239777,58,40104,,,79.58162801,161,202308,67.28868261,91.87457341,,,,,,,,,,,,,82.63620217,69.58453289,95.68787145,,,,9.2,,,,,1,,,,,0.090186404,1645,18240,0.074574647,0.10579816,0.072266593,0.058080613,0.086452574,0.007401316,0.00239432,0.012408311,0.014802632,0.007068321,0.022536943,0.853683365,15934,18665,0.830639974,0.876726755,,,,,,,,,,,,,0.834044118,0.792920006,0.875168229,0.344,,18665,0.309922571,0.378077429,77.32355474,,,76.44321666,78.20389282,,,,,,,,,,79.43399448,75.49254265,83.37544632,77.17518881,76.24039288,78.10998474,,,,384.9765569,696,107958,351.8203723,418.1327416,,,,,,,,,,336.8967985,205.7853168,520.3097812,387.8705038,353.0283603,422.7126472,,,,37.01875617,12,32416,19.12813151,64.66431715,,,,,,,,,,,,,42.95532646,22.195644,75.03431074,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.109,,,0.092,0.127,0.167,,,0.144,0.192,0.096,,,0.081,0.112,42.6,15,35250,,,0.106,4310,,,,0.089571073,3710.750401,41428,,,28.95385583,35,120882,20.16742145,40.26780445,,,,,,,,,,,,,27.87093062,18.93694515,39.56056129,,,,0.36,,,0.342,0.379,0.080759027,1796,22239,0.067652644,0.09386541,0.052175056,397,7609,0.036685694,0.067664418,0.000325179,13,39978,,,3075.230769,0.949951172,486.375,512,,,,,,,,3.371924671,,,,,,,,3.075010368,3.412082976,3.45515189,,,,,,,,3.029932684,3.524334778,0.057965261,,,,,3818.161968,,,,,0.718468995,46102,64167,0.622244237,0.814693753,72780,,,64077.3617,81482.6383,,,,120469,53261.85106,187676.1489,,,,68049,47587.55319,88510.44681,70086,65352.21277,74819.78723,,,,,,,,,,,66.76776895,,,,,0.347142072,,72780,,,11.75742574,19,1616,,,,,,,,,,,,,,,,,,,,,,,,,,19.71055704,39,202308,13.48200642,27.82542545,19.27753722,,,,,,,,,,,,,20.05664851,13.53213652,28.63211286,,,,10.38021235,21,202308,6.425515048,15.86725722,,,,,,,,,,,,,11.26857302,6.975424307,17.22521088,,,,12.68405086,36,283821,8.883753287,17.56007289,,,,,,,,,,,,,13.37450132,9.315830214,18.6006937,,,,60.83333333,,3600,,,219,,0.729031279,24007,32930,,,0.537,,,,,16.08417058,,,,,0.823784385,14824,17995,0.805310163,0.842258607,0.083080273,1450,17453,0.066570685,0.099589861,0.841900528,15150,17995,0.820406001,0.863395055,39978,,,,,0.175121317,7001,39978,,,0.273225274,10923,39978,,,0.009430187,377,39978,,,0.002701486,108,39978,,,0.003977188,159,39978,,,0.000500275,20,39978,,,0.054755115,2189,39978,,,0.916003802,36620,39978,,,0.003271257,127,38823,0,0.007108152,0.498098954,19913,39978,,,0.624665544,25214,40364,, -39,125,39125,OH,Paulding County,2024,1,7049.447752,299,51895,5685.387844,8413.507659,0,,,,2,,,,2,,,,2,,,,2,6682.180885,5336.706051,8027.655718,,,,,2,,0.169,,,0.144,0.201,4.016594656,,,3.245060672,4.86667231,5.221287705,,,4.240993015,6.282307995,0.077384923,116,1499,0.063858166,0.090911681,0,,,,,,,,,,,,,0.079881657,0.065430151,0.094333163,,,,,,,0.218,,,0.177,0.264,0.437,,,0.361,0.517,7.9,0.062264091,0.11,,,0.29,,,0.242,0.345,0.442677869,8325,18806,,,0.171364047,,,0.138638219,0.207542165,0.692307692,9,13,0.594539345,0.768533476,259.7,49,18871,,,20.87781732,88,4215,16.74461999,25.72205486,,,,,,,,,,36.36363636,18.78962154,63.51995469,19.6924737,15.43575585,24.76032916,,,,,,,0.087016575,1323,15204,0.073910192,0.100122958,0.000211965,4,18871,,,4717.75,0.00015994,3,18757,,,6252.333333,0.000586448,11,18757,,,1705.181818,3767,,,,,,,,,3797,0.4,,,,,,,,,0.4,0.4,,,,,,,,0.4,0.4,0.898961938,11691,13005,0.880039135,0.917884741,0.591613491,2596,4388,0.517730887,0.665496096,0.035067482,304,8669,,,0.14,606,,0.088765957,0.191234043,,,,,,,,,,0.15339233,0.014294365,0.292490296,0.121517028,0.077022706,0.16601135,3.664227016,114148,31152,3.153377236,4.175076796,0.272009029,1205,4430,0.184129638,0.359888421,13.77775423,26,18871,,,97.01906265,91,93796,78.11369728,119.1179101,,,,,,,,,,,,,97.04587728,77.40759238,120.1493996,,,,8.8,,,,,0,,,,,0.085825748,660,7690,0.06543871,0.106212785,0.063226649,0.043126974,0.083326325,0.016775033,0.007172657,0.026377408,0.013003901,0.005537604,0.020470198,0.867096928,7255,8367,0.845013842,0.889180015,,,,,,,,,,,,,0.848010161,0.813213478,0.882806844,0.373,,8367,0.322590002,0.423409999,76.97321561,,,75.8130733,78.13335792,,,,,,,,,,,,,77.06232443,75.90794199,78.21670686,,,,394.2903877,299,51895,346.7817131,441.7990622,,,,,,,,,,,,,392.0907047,343.5824187,440.5989908,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.123,,,0.105,0.142,0.178,,,0.154,0.202,0.106,,,0.091,0.123,57.1,9,15756,,,0.11,2070,,,,0.062264091,1221.247883,19614,,,,,,,,,,,,,,,,,,,,,,,,,,0.378,,,0.36,0.394,0.09782204,1051,10744,0.082332679,0.113311402,0.061646758,289,4688,0.042582928,0.080710588,0.000373194,7,18757,,,2679.571429,0.924557522,208.95,226,,,,,,,,3.375324439,,,,,,,,,3.367451567,3.338621851,,,,,,,,,3.374578003,0.048523275,,,,,1411.923067,,,,,0.745406913,43818,58784,0.65054108,0.840272747,66332,,,59847.91489,72816.08511,,,,,,,60313,19727.29787,100898.7021,81458,41465.65957,121450.3404,64787,59873.29787,69700.70213,,,,,,,,,,,47.22729747,,,,,0.235120304,,66332,,,11.03955842,12,1087,,,,,,,,,,,,,,,,,,,,,,,,,,25.63596813,22,93796,15.86906833,39.18730048,23.455158,,,,,,,,,,,,,26.09353348,15.93860814,40.29934614,,,,11.727579,11,93796,5.854365183,20.98387833,,,,,,,,,,,,,12.70838869,6.343981847,22.73881779,,,,23.54960991,31,131637,16.00081738,33.42679148,,,,,,,,,,,,,23.84946873,15.97236351,34.25181539,,,,34.09090909,,2200,,,75,,0.66528461,9467,14230,,,0.673,,,,,3.016775733,,,,,0.813306983,6173,7590,0.781965189,0.844648776,0.059266228,441,7441,0.041141215,0.077391241,0.785902503,5965,7590,0.758536271,0.813268736,18757,,,,,0.235165538,4411,18757,,,0.199232287,3737,18757,,,0.009703044,182,18757,,,0.005011462,94,18757,,,0.003625313,68,18757,,,0.000373194,7,18757,,,0.054326385,1019,18757,,,0.917310871,17206,18757,,,0.003992577,71,17783,0,0.009587905,0.49634803,9310,18757,,,1,18806,18806,, -39,127,39127,OH,Perry County,2024,1,10834.28034,721,100912,9595.982999,12072.57767,0,,,,2,,,,2,,,,2,,,,2,10846.91587,9598.055865,12095.77588,,,,,2,,0.179,,,0.151,0.21,4.08794515,,,3.304480549,4.977050538,5.51475787,,,4.554876285,6.586572202,0.073289337,211,2879,0.063769539,0.082809134,0,,,,,,,,,,,,,0.072062478,0.062513066,0.081611889,,,,,,,0.245,,,0.199,0.294,0.431,,,0.365,0.5,7.7,0.017810253,0.138,,,0.321,,,0.268,0.378,0.788211704,27909,35408,,,0.178826599,,,0.146420021,0.213265258,0.296296296,8,27,0.194109996,0.401266591,228.4,81,35460,,,25.57985421,193,7545,21.97094894,29.18875947,,,,,,,,,,,,,26.02436323,22.30424058,29.74448589,,,,,,,0.089687789,2617,29179,0.076581406,0.102794172,0.000282008,10,35460,,,3546,0.000338219,12,35480,,,2956.666667,0.001775648,63,35480,,,563.1746032,3740,,,,,,,,,3748,0.4,,,,,,,,,0.4,0.45,,,,,,,,,0.45,0.87990176,21496,24430,0.859090818,0.900712703,0.543222927,4625,8514,0.480272289,0.606173565,0.043991752,704,16003,,,0.191,1540,,0.124276596,0.257723404,,,,,,,,,,,,,0.1985705,0.152000694,0.245140306,4.768478035,114515,24015,4.027882128,5.509073942,0.193908143,1617,8339,0.135992143,0.251824142,9.306260575,33,35460,,,108.970011,196,179866,93.71420947,124.2258126,,,,,,,,,,,,,110.007833,94.40645365,125.6092124,,,,8.8,,,,,0,,,,,0.132046916,1745,13215,0.105148098,0.158945735,0.110305344,0.085378064,0.135232623,0.020431328,0.010879632,0.029983024,0.006432085,0.002210851,0.010653319,0.851406978,12617,14819,0.822893054,0.879920901,,,,,,,,,,,,,0.826773798,0.783304777,0.870242819,0.514,,14819,0.463155364,0.564844636,73.93784034,,,73.0147383,74.86094238,,,,,,,,,,,,,73.8179793,72.89537329,74.7405853,,,,526.4527919,721,100912,485.8646674,567.0409164,,,,,,,,,,,,,532.9716802,491.5394109,574.4039495,,,,54.49294316,20,36702,33.28570537,84.15993107,,,,,,,,,,,,,48.71897748,28.38059973,78.00380242,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.127,,,0.109,0.146,0.185,,,0.16,0.212,0.111,,,0.095,0.129,118.2,35,29600,,,0.138,4900,,,,0.017810253,642.2021145,36058,,,48.2334499,52,107809,36.02304743,63.2517524,,,,,,,,,,,,,48.09865997,35.69975252,63.41208687,,,,0.383,,,0.366,0.4,0.103449921,2168,20957,0.08796056,0.118939283,0.055052265,474,8610,0.038371414,0.071733116,0.000676437,24,35480,,,1478.333333,0.926555556,416.95,450,,,0.160321716,299,1865,0.073506116,0.247137316,3.199892988,,,,,,,,,3.197514015,2.989994433,,,,,,,,,2.993859464,0.040134983,,,,,1151.90325,,,,,0.81840712,43590,53262,0.745888609,0.89092563,60448,,,54214.12766,66681.87234,,,,,,,,,,97852,95827.65957,99876.34043,62376,56766.46809,67985.53192,,,,,,,,,,,,,,,,0.258006882,,60448,,,10.81335214,23,2127,,,3.971752893,10,251778,1.904609893,7.304194982,,,,,,,,,,,,,,,,,,,17.69538901,30,179866,11.75845749,25.57476398,16.67908332,,,,,,,,,,,,,17.73776148,11.68929658,25.80751168,,,,15.01117499,27,179866,9.892458904,21.84047149,,,,,,,,,,,,,14.39893102,9.318228959,21.25566264,,,,18.27006331,46,251778,13.37598258,24.36970415,,,,,,,,,,,,,18.49834543,13.49282009,24.75224159,,,,15.12820513,,3900,,,59,,0.605373026,16675,27545,,,0.644,,,,,1.289571065,,,,,0.757385386,10127,13371,0.734614624,0.780156148,0.096015474,1241,12925,0.072730608,0.11930034,0.832548052,11132,13371,0.804546323,0.860549781,35480,,,,,0.2328354,8261,35480,,,0.182412627,6472,35480,,,0.006369786,226,35480,,,0.003664036,130,35480,,,0.002395716,85,35480,,,0.001352875,48,35480,,,0.010935738,388,35480,,,0.959244645,34034,35480,,,0.000989446,33,33352,0,0.004736621,0.495293123,17573,35480,,,0.804592183,28489,35408,, -39,129,39129,OH,Pickaway County,2024,1,10074.43088,1072,164832,9137.527441,11011.33432,0,,,,2,,,,2,11601.19081,8125.331415,16060.93813,,,,,2,10307.65365,9318.985397,11296.3219,,,,,2,,0.171,,,0.144,0.201,3.918025792,,,3.098651058,4.794405833,5.403556727,,,4.349086735,6.466484786,0.074229692,318,4284,0.066379653,0.082079731,0,,,,,,,,,,,,,0.073964497,0.065910109,0.082018886,,,,,,,0.212,,,0.17,0.256,0.421,,,0.344,0.505,8,0.030329538,0.121,,,0.28,,,0.231,0.333,0.761031108,44550,58539,,,0.185672336,,,0.149470995,0.226731559,0.4,22,55,0.33275668,0.465263815,237.6,141,59333,,,19.36547178,235,12135,16.88947416,21.84146939,,,,,,,,,,,,,19.25820257,16.68990733,21.8264978,,,,,,,0.082364194,3789,46003,0.0704493,0.094279087,0.000404497,24,59333,,,2472.208333,0.000416507,25,60023,,,2400.92,0.002132516,128,60023,,,468.9296875,2969,,,,,,,,,2927,0.4,,,,,,,,,0.4,0.48,,,,,,0.55,0.37,,0.48,0.877077791,35933,40969,0.859012146,0.895143435,0.539722732,8526,15797,0.493135867,0.586309597,0.037014992,995,26881,,,0.126,1587,,0.078340426,0.173659575,,,,,,,0.145695364,0,0.390158722,0.04964539,0,0.195960296,0.201636574,0.158584864,0.244688284,4.115855624,127715,31030,3.624285338,4.607425909,0.207270101,2583,12462,0.155387861,0.259152341,7.752852544,46,59333,,,94.40286766,276,292364,83.2653933,105.540342,,,,,,,,,,,,,99.23426693,87.35333958,111.1151943,,,,9.5,,,,,0,,,,,0.119636547,2370,19810,0.098277488,0.140995607,0.099719459,0.079557859,0.119881059,0.019434629,0.010883934,0.027985324,0.007067138,0.001540583,0.012593692,0.794954927,20106,25292,0.769176069,0.820733784,,,,,,,,,,,,,0.766320262,0.735043724,0.7975968,0.469,,25292,0.425416889,0.512583111,74.34514369,,,73.61330902,75.07697836,,,,,,,68.99065866,66.11221681,71.8691005,,,,74.16172056,73.40410805,74.91933307,,,,508.1200835,1072,164832,476.848302,539.3918651,,,,,,,1119.780963,749.9348852,1608.192252,,,,512.5237078,480.0527748,544.9946408,,,,64.70979455,36,55633,45.32194456,89.58563171,,,,,,,,,,,,,65.40222368,45.01988143,91.84903833,,,,8.397480756,36,4287,5.881492283,11.62565302,,,,,,,,,,,,,8.349705305,5.78241365,11.66787625,,,,,,,0.121,,,0.103,0.14,0.173,,,0.148,0.199,0.107,,,0.091,0.125,267.2,135,50532,,,0.121,7090,,,,0.030329538,1689.294582,55698,,,41.93870149,74,176448,32.93090103,52.65019921,,,,,,,,,,,,,44.24724377,34.62074316,55.72208063,,,,0.388,,,0.37,0.406,0.090473624,3022,33402,0.076175752,0.104771497,0.061337165,811,13222,0.043464825,0.079209506,0.000783033,47,60023,,,1277.085106,0.890794837,655.625,736,,,0.109462578,332,3033,0.053943723,0.164981434,3.321383828,,,,,,,3.242891541,,3.337222536,3.107860916,,,,,,,3.044791913,,3.117722293,0.08416123,,,,,2053.50755,,,,,0.776848599,47098,60627,0.721622071,0.832075127,75916,,,66376.93617,85455.06383,,,,,,,,,,,,,67869,64046.70213,71691.29787,,,,,,,,,,,62.26650854,,,,,0.254742083,,75916,,,8.288173414,26,3137,,,3.440420518,14,406927,1.880909912,5.772441033,,,,,,,,,,,,,3.718923744,2.033170217,6.239722123,,,,15.46460809,48,292364,11.32203675,20.62762003,16.41789003,,,,,,,,,,,,,15.57799118,11.27386946,20.98345188,,,,10.94526002,32,292364,7.48654975,15.45144138,,,,,,,,,,,,,11.84886769,8.10461673,16.72706581,,,,13.0244491,53,406927,9.756206133,17.03630011,,,,,,,,,,,,,13.54750792,10.08700949,17.81247098,,,,16.10169492,,5900,,,95,,0.622229559,28271,45435,,,0.709,,,,,27.05608546,,,,,0.728385689,15350,21074,0.704318542,0.752452835,0.116886322,2368,20259,0.094997955,0.13877469,0.860111986,18126,21074,0.840095098,0.880128875,60023,,,,,0.215117538,12912,60023,,,0.163337387,9804,60023,,,0.035619679,2138,60023,,,0.003015511,181,60023,,,0.006330907,380,60023,,,0.000499808,30,60023,,,0.018809456,1129,60023,,,0.918347967,55122,60023,,,0.002925814,163,55711,0.000409148,0.005442479,0.476267431,28587,60023,,,0.604554229,35390,58539,, -39,131,39131,OH,Pike County,2024,1,15484.34837,720,76171,13775.26702,17193.42973,0,,,,2,,,,2,,,,2,,,,2,15812.4181,14040.55062,17584.28558,,,,,2,,0.218,,,0.186,0.254,4.608527758,,,3.735658665,5.630407293,5.599530341,,,4.579647748,6.761223621,0.085324232,200,2344,0.074014637,0.096633827,0,,,,,,,,,,,,,0.083739477,0.072311617,0.095167337,,,,,,,0.272,,,0.221,0.324,0.395,,,0.329,0.467,7,0.013982146,0.176,,,0.329,,,0.276,0.388,0.291420555,7894,27088,,,0.145926457,,,0.11700396,0.178798692,0.129032258,4,31,0.051743132,0.232752664,251,68,27089,,,39.67027306,231,5823,34.55445287,44.78609324,,,,,,,,,,,,,40.3137541,34.99863285,45.62887536,,,,,,,0.086043976,1894,22012,0.072937593,0.099150359,0.000258408,7,27089,,,3869.857143,0.000444362,12,27005,,,2250.416667,0.012182929,329,27005,,,82.08206687,1266,,,,,,,,,1280,0.36,,,,,,,,,0.36,0.4,,,,,,,,,0.41,0.84154854,15673,18624,0.811018557,0.872078522,0.43706348,2816,6443,0.358341219,0.515785741,0.050768811,558,10991,,,0.259,1610,,0.16606383,0.35193617,,,,,,,,,,,,,0.245773052,0.189078674,0.30246743,5.653738441,106997,18925,4.582870915,6.724605968,0.241357735,1543,6393,0.169085913,0.313629557,8.490531212,23,27089,,,146.1556738,203,138893,126.0497639,166.2615837,,,,,,,,,,,,,153.2706593,132.1338508,174.4074678,,,,8.5,,,,,0,,,,,0.135478025,1495,11035,0.102955735,0.168000314,0.098849517,0.071399928,0.126299105,0.019483462,0.004903647,0.034063277,0.020389669,0.007326685,0.033452654,0.852488328,8582,10067,0.837277101,0.867699556,,,,,,,,,,,,,0.848106326,0.808255308,0.887957343,0.406,,10067,0.343893796,0.468106204,70.55360087,,,69.42406074,71.683141,,,,,,,,,,,,,70.1987147,69.04495214,71.35247727,,,,722.4311879,720,76171,666.6085466,778.2538291,,,,,,,,,,,,,738.9211371,681.3039432,796.538331,,,,77.27160971,22,28471,48.42570641,116.9901457,,,,,,,,,,,,,83.47562132,52.31372746,126.3830939,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.147,,,0.126,0.17,0.202,,,0.177,0.231,0.126,,,0.109,0.146,93,21,22579,,,0.176,4800,,,,0.013982146,401.4134395,28709,,,65.41014584,54,82556,49.1381147,85.34605164,,,,,,,,,,,,,69.05724078,51.87792467,90.10471942,,,,0.386,,,0.367,0.402,0.100063857,1567,15660,0.083383006,0.116744708,0.052127022,348,6676,0.035446171,0.068807873,0.000814664,22,27005,,,1227.5,0.925789474,351.8,380,,,,,,,,2.964794914,,,,,,,,,2.953201577,2.739796275,,,,,,,,,2.742841489,0.056613139,,,,,-27.2562,,,,,0.76308087,42235,55348,0.677413994,0.848747746,55029,,,47534.53192,62523.46809,,,,,,,,,,,,,52103,47975.68085,56230.31915,,,,,,,,,,,80.96009254,,,,,0.2834142,,55029,,,9.269988413,16,1726,,,9.730117274,19,195270,5.858166213,15.19478341,,,,,,,,,,,,,10.24093139,6.165709677,15.99248293,,,,23.67796691,30,138893,15.73383706,34.22125476,21.59936066,,,,,,,,,,,,,24.81014826,16.48616334,35.85757204,,,,19.43942459,27,138893,12.8107033,28.28334217,,,,,,,,,,,,,20.48667228,13.50084612,29.80703258,,,,20.99656885,41,195270,15.06750032,28.4842165,,,,,,,,,,,,,22.09885194,15.85851769,29.97958797,,,,12,,3000,,,36,,0.582859826,12412,21295,,,0.579,,,,,24.60985902,,,,,0.656407813,6889,10495,0.615185888,0.697629738,0.145430757,1445,9936,0.1112379,0.179623614,0.772177227,8104,10495,0.732989542,0.811364912,27005,,,,,0.23506758,6348,27005,,,0.185187928,5001,27005,,,0.012034808,325,27005,,,0.007665247,207,27005,,,0.003295686,89,27005,,,0.000888724,24,27005,,,0.013812257,373,27005,,,0.942492131,25452,27005,,,0.001141373,29,25408,0,0.005296478,0.498685429,13467,27005,,,0.816560839,22119,27088,, -39,133,39133,OH,Portage County,2024,1,7801.531128,2376,454158,7283.625116,8319.43714,0,,,,2,,,,2,12156.36793,8968.55733,15344.17852,,,,,2,7903.009666,7350.370014,8455.649319,,,,,2,,0.152,,,0.127,0.178,3.744895118,,,3.029094567,4.486852259,5.08918545,,,4.218407934,5.920577048,0.078695018,755,9594,0.073306969,0.084083067,0,,,,0.080139373,0.048727118,0.111551627,0.14983165,0.121129324,0.178533976,0.084,0.04961465,0.11838535,0.073090108,0.067445338,0.078734878,,,,0.08778626,0.053519976,0.122052543,0.19,,,0.151,0.231,0.353,,,0.298,0.408,7.6,0.096359944,0.107,,,0.258,,,0.216,0.305,0.840986211,136064,161791,,,0.191379475,,,0.157438444,0.228023384,0.3125,20,64,0.24786093,0.377947801,310.4,504,162382,,,6.909820634,334,48337,6.16876705,7.650874218,,,,,,,10.03649635,6.908662279,14.09497241,6.560962275,3.390144947,11.46068073,6.479588066,5.696472973,7.262703158,,,,15.35380507,9.732995352,23.03824626,0.076836529,9834,127986,0.066113125,0.087559933,0.000394132,64,162382,,,2537.21875,0.000525519,85,161745,,,1902.882353,0.002466846,399,161745,,,405.3759399,2606,,,,,,,1573,,2639,0.46,,,,,,0.44,0.52,,0.46,0.51,,,,,,0.54,0.41,,0.51,0.928682346,98679,106257,0.921450168,0.935914523,0.656697767,23649,36012,0.617868478,0.695527056,0.038472459,3252,84528,,,0.124,3538,,0.08587234,0.16212766,,,,0.056672761,0,0.196950705,0.324811156,0.195963114,0.453659198,0.134408602,0,0.289418947,0.100394693,0.080088491,0.120700894,4.891135303,138380,28292,4.603077102,5.179193505,0.217326464,6412,29504,0.181942227,0.252710702,8.621645256,140,162382,,,69.64996585,566,812635,63.91185725,75.38807445,,,,,,,52.98574683,32.3650707,81.83218858,,,,74.44648555,68.16147676,80.73149433,,,,7.5,,,,,1,,,,,0.13450665,8445,62785,0.120412971,0.148600329,0.12101531,0.106971121,0.1350595,0.009078602,0.005837964,0.012319239,0.010273154,0.006744957,0.013801352,0.775945612,62774,80900,0.758002888,0.793888336,,,,0.62393888,0.557443767,0.690433992,0.735516373,0.650524443,0.820508303,0.876202694,0.820506646,0.931898743,0.736458745,0.719176167,0.753741323,0.39,,80900,0.366021739,0.413978261,76.96216391,,,76.53124934,77.39307848,,,,87.77254322,81.3223642,94.22272224,72.51056688,70.11305567,74.9080781,,,,76.80332187,76.35329417,77.25334957,,,,395.4173568,2376,454158,378.503811,412.3309025,,,,,,,525.6133493,423.957236,627.2694626,,,,400.9099872,383.04966,418.7703145,,,,40.31228584,60,148838,30.76252096,51.88990272,,,,,,,120.6008113,60.20349049,215.7881648,,,,37.62739274,27.64719289,50.03645561,,,,6.656266251,64,9615,5.126136094,8.499903402,,,,,,,,,,,,,5.935796487,4.391334918,7.847437746,,,,,,,0.112,,,0.095,0.129,0.164,,,0.141,0.187,0.1,,,0.086,0.115,81,115,142040,,,0.107,17260,,,,0.096359944,15554.32578,161419,,,24.61886913,120,487431,20.21399454,29.02374372,,,,,,,,,,,,,25.39770497,20.65141571,30.14399423,,,,0.35,,,0.332,0.367,0.084757647,8341,98410,0.071651264,0.09786403,0.052082333,1627,31239,0.037784461,0.066380205,0.000513153,83,161745,,,1948.73494,0.911712575,1522.56,1670,,,0.026136673,288,11019,0.013089636,0.03918371,3.213919051,,,,,,3.35442433,2.680319632,3.151918875,3.265336359,3.096819449,,,,,,3.242606453,2.357833625,3.092009758,3.177904134,0.106296747,,,,,1293.099133,,,,,0.812125861,48704,59971,0.763135034,0.861116688,72965,,,65679.04255,80250.95745,90611,59918.23404,121303.766,,,,40226,32210.85106,48241.14894,42771,26577.46809,58964.53192,73531,70437.89362,76624.10638,,,,,,,,,,,48.31054975,,,,,0.346261906,,72965,,,6.947339169,50,7197,,,2.111131734,24,1136831,1.352641937,3.141196677,,,,,,,,,,,,,1.378623071,0.753706061,2.313095257,,,,14.45595241,122,812635,11.76680065,17.14510417,15.01289017,,,,,,,,,,,,,15.88409857,12.90262722,18.86556993,,,,9.352292235,76,812635,7.368542565,11.70578833,,,,,,,,,,,,,9.944614025,7.781048009,12.52359554,,,,9.236201335,105,1136831,7.469533862,11.00286881,,,,,,,,,,,,,9.847307648,7.917235349,11.77737995,,,,17.91666667,,14400,,,258,,0.641796709,82872,129125,,,0.72,,,,,51.45479239,,,,,0.706595584,44931,63588,0.696180904,0.717010264,0.128369746,7938,61837,0.113031265,0.143708228,0.869613764,55297,63588,0.855066494,0.884161033,161745,,,,,0.179387307,29015,161745,,,0.182571331,29530,161745,,,0.051531732,8335,161745,,,0.002306099,373,161745,,,0.022869331,3699,161745,,,0.000587344,95,161745,,,0.02252929,3644,161745,,,0.878611395,142111,161745,,,0.004047611,624,154165,0.002145831,0.005949392,0.505592136,81777,161745,,,0.37995933,61474,161791,, -39,135,39135,OH,Preble County,2024,1,10054.3637,796,112981,8856.844657,11251.88275,0,,,,2,,,,2,,,,2,,,,2,10253.44418,9016.931909,11489.95645,,,,,2,,0.158,,,0.133,0.187,3.895963,,,3.05860037,4.771583763,5.205818587,,,4.159671084,6.237476059,0.077395159,227,2933,0.067724305,0.087066012,0,,,,,,,,,,,,,0.07705841,0.067253555,0.086863264,,,,,,,0.206,,,0.165,0.249,0.4,,,0.324,0.476,8.3,0.029820769,0.106,,,0.28,,,0.227,0.337,0.351325642,14404,40999,,,0.174591253,,,0.141074252,0.210761107,0.2,10,50,0.129217574,0.278985135,178.6,73,40867,,,17.83888195,157,8801,15.04843431,20.62932958,,,,,,,,,,,,,17.74933591,14.88001243,20.61865939,,,,,,,0.072085326,2352,32628,0.061361921,0.08280873,0.000171287,7,40867,,,5838.142857,0.000147798,6,40596,,,6766,0.000936053,38,40596,,,1068.31579,2976,,,,,,,,,2956,0.42,,,,,,,,,0.42,0.44,,,,,,,,,0.44,0.919595018,26431,28742,0.907677898,0.931512137,0.547026796,5124,9367,0.492752871,0.601300722,0.033641523,735,21848,,,0.153,1336,,0.107723404,0.198276596,,,,,,,0.472868217,0.17954092,0.766195514,0.190751445,0.0258801,0.35562279,0.152003851,0.121074016,0.182933687,3.856298777,122048,31649,3.382740477,4.329857077,0.186303795,1684,9039,0.147496281,0.225111308,7.830278709,32,40867,,,108.4503327,222,204702,94.18406158,122.7166038,,,,,,,,,,,,,111.3206492,96.57683858,126.0644599,,,,8.7,,,,,0,,,,,0.085287847,1400,16415,0.067860395,0.102715298,0.066871166,0.051976986,0.081765345,0.01090466,0.003804032,0.018005289,0.008224185,0.002280683,0.014167687,0.851874616,16632,19524,0.829236218,0.874513014,,,,,,,,,,,,,0.811585127,0.784803328,0.838366927,0.409,,19524,0.372998089,0.445001911,74.39467715,,,73.49905486,75.29029945,,,,,,,,,,,,,74.14078546,73.22873937,75.05283156,,,,487.1832332,796,112981,450.8292528,523.5372136,,,,,,,,,,,,,496.7162988,459.3721283,534.0604693,,,,62.53752251,25,39976,40.47098721,92.31771988,,,,,,,,,,,,,64.23982869,41.15967038,95.583773,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.117,,,0.1,0.136,0.174,,,0.15,0.2,0.1,,,0.084,0.116,40.4,14,34659,,,0.106,4340,,,,0.029820769,1260.52391,42270,,,39.15650365,48,122585,28.87091473,51.91584303,,,,,,,,,,,,,39.96326781,29.36350603,53.14267426,,,,0.362,,,0.344,0.38,0.081094801,1917,23639,0.067988418,0.094201184,0.049646885,471,9487,0.034157524,0.065136247,0.000541925,22,40596,,,1845.272727,0.950389105,488.5,514,,,,,,,,3.006455019,,,,,,,,,3.01250246,3.015483915,,,,,,,,,3.02714748,0.04856166,,,,,2319.985083,,,,,0.690600303,41070,59470,0.63995546,0.741245146,67605,,,60699.12766,74510.87234,,,,103750,19727.3617,187772.6383,,,,47292,25135.06383,69448.93617,66479,61686.82979,71271.17021,,,,,,,,,,,93.76377315,,,,,0.286058724,,67605,,,8.845437616,19,2148,,,,,,,,,,,,,,,,,,,,,,,,,,15.41622427,30,204702,10.24396907,22.28073635,14.65545036,,,,,,,,,,,,,16.05005537,10.66514524,23.19679878,,,,9.281785229,19,204702,5.588241035,14.49465739,,,,,,,,,,,,,9.149642402,5.422657961,14.46037964,,,,21.92997724,63,287278,16.85159664,28.0579673,,,,,,,,,,,,,22.79280616,17.51461807,29.1619003,,,,30,,4500,,,135,,0.68895909,21809,31655,,,0.704,,,,,17.41652574,,,,,0.798506564,13260,16606,0.776122316,0.820890812,0.077256676,1247,16141,0.06076669,0.093746661,0.85432976,14187,16606,0.83574733,0.872912191,40596,,,,,0.220268007,8942,40596,,,0.202877131,8236,40596,,,0.008424475,342,40596,,,0.003842743,156,40596,,,0.006774066,275,40596,,,0.000147798,6,40596,,,0.012144054,493,40596,,,0.956202582,38818,40596,,,0.000515384,20,38806,0,0.003444817,0.498891516,20253,40596,,,0.762579575,31265,40999,, -39,137,39137,OH,Putnam County,2024,1,4597.88273,355,94068,3778.621808,5417.143651,0,,,,2,,,,2,,,,2,,,,2,4590.90122,3731.09191,5450.71053,,,,,2,,0.136,,,0.114,0.163,3.412840136,,,2.691929597,4.217086634,4.512728793,,,3.649967081,5.472687456,0.062246279,184,2956,0.053536544,0.070956014,0,,,,,,,,,,0.073359073,0.041605775,0.105112372,0.059992501,0.050979722,0.06900528,,,,,,,0.173,,,0.134,0.213,0.36,,,0.294,0.428,8.8,0.048705354,0.072,,,0.227,,,0.185,0.274,0.54474471,18767,34451,,,0.190607981,,,0.156112426,0.230999035,0.277777778,5,18,0.152183671,0.410166986,125.3,43,34318,,,12.43747465,92,7397,10.02635998,15.25345857,,,,,,,,,,35.8974359,23.85358546,51.88178967,9.761388286,7.500918778,12.48905598,,,,,,,0.064183381,1792,27920,0.054651466,0.073715296,0.000466228,16,34318,,,2144.875,0.000262131,9,34334,,,3814.888889,0.00066989,23,34334,,,1492.782609,3275,,,,,,,,4294,3259,0.49,,,,,,,,0.25,0.5,0.51,,,,,,,,0.41,0.51,0.948138472,21774,22965,0.938916839,0.957360104,0.737335591,5662,7679,0.6785469,0.796124281,0.030288564,571,18852,,,0.072,620,,0.045787234,0.098212766,,,,,,,0.704081633,0.00918142,1,0.336504162,0.19159048,0.481417844,0.048977967,0.021437995,0.076517938,3.33056066,134135,40274,3.013636834,3.647484485,0.086703221,759,8754,0.057673369,0.115733074,12.23847544,42,34318,,,50.15015547,85,169491,40.05816297,62.01144386,,,,,,,,,,,,,51.26003575,40.64602036,63.79755167,,,,8.7,,,,,0,,,,,0.065037594,865,13300,0.051066864,0.079008324,0.051752795,0.038057399,0.065448192,0.008947368,0.00297957,0.014915167,0.007894737,0.002404987,0.013384486,0.880159475,15012,17056,0.870296114,0.890022836,,,,,,,,,,0.815752461,0.708386274,0.923118649,0.844712182,0.82231218,0.867112184,0.33,,17056,0.300790279,0.359209721,79.53092461,,,78.74158243,80.32026678,,,,,,,,,,78.64998215,74.08989272,83.21007159,79.53629182,78.72051103,80.35207262,,,,264.6931216,355,94068,235.8199502,293.566293,,,,,,,,,,,,,263.4676613,233.7894051,293.1459174,,,,45.27176374,17,37551,26.37247069,72.48447928,,,,,,,,,,,,,48.50542655,27.7250423,78.76977384,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.104,,,0.088,0.121,0.156,,,0.132,0.18,0.091,,,0.077,0.106,28.5,8,28101,,,0.072,2460,,,,0.048705354,1680.286002,34499,,,,,,,,,,,,,,,,,,,,,,,,,,0.323,,,0.307,0.34,0.072077244,1381,19160,0.060162351,0.083992138,0.04783226,438,9157,0.033534387,0.062130132,0.000495136,17,34334,,,2019.647059,0.918390805,399.5,435,,,,,,,,3.333199108,,,,,,,,2.900663102,3.390284565,3.46676599,,,,,,,,2.756230819,3.562083339,0.234134404,,,,,2945.960222,,,,,0.774667207,49698,64154,0.713732239,0.835602175,81780,,,73986.46809,89573.53192,,,,,,,,,,63795,50409.80851,77180.19149,81926,77351.87234,86500.12766,,,,,,,,,,,,,,,,0.190706774,,81780,,,9.782125389,22,2249,,,,,,,,,,,,,,,,,,,,,,,,,,10.3412428,17,169491,5.910913777,16.79353042,10.03003109,,,,,,,,,,,,,10.42558207,5.835119144,17.19541216,,,,,,,,,,,,,,,,,,,,,,,,,,,10.52237267,25,237589,6.809524788,15.53309779,,,,,,,,,,,,,10.95255263,7.017507133,16.29653014,,,,32.56410256,,3900,,,127,,0.7950908,19921,25055,,,0.748,,,,,7.463897801,,,,,0.862709423,11380,13191,0.84682819,0.878590657,0.05402682,697,12901,0.037881383,0.070172257,0.853157456,11254,13191,0.83207094,0.874243972,34334,,,,,0.253684395,8710,34334,,,0.18832644,6466,34334,,,0.005271742,181,34334,,,0.003698957,127,34334,,,0.002941691,101,34334,,,0.00020388,7,34334,,,0.067891886,2331,34334,,,0.915389992,31429,34334,,,0.008974598,289,32202,0.003413445,0.014535751,0.495136017,17000,34334,,,0.842297756,29018,34451,, -39,139,39139,OH,Richland County,2024,1,10785.7008,2286,335449,10103.0562,11468.34539,0,,,,2,,,,2,15483.22788,12740.43171,18226.02405,,,,,2,10611.22337,9874.190159,11348.25658,,,,,2,,0.187,,,0.158,0.218,4.201173761,,,3.421476636,5.041493131,5.433653333,,,4.504241881,6.374478525,0.078844322,745,9449,0.073410382,0.084278263,0,,,,,,,0.179340029,0.150858721,0.207821336,0.058536585,0.026400383,0.090672788,0.069991359,0.064435484,0.075547234,,,,0.087209302,0.057393681,0.117024923,0.235,,,0.191,0.28,0.41,,,0.353,0.47,6.7,0.136302182,0.127,,,0.308,,,0.258,0.36,0.780951847,97569,124936,,,0.164566062,,,0.134661404,0.197539921,0.218181818,12,55,0.149651154,0.292800216,432.9,542,125195,,,28.32451207,685,24184,26.20335308,30.44567107,,,,,,,44.42344045,35.89866181,54.36304052,34.33476395,21.99893112,51.08740714,25.64358412,23.4266477,27.86052053,,,,49.80842912,37.19931724,65.3171281,0.093525713,8835,94466,0.081610819,0.105440607,0.000471265,59,125195,,,2121.949153,0.000630391,79,125319,,,1586.316456,0.004548393,570,125319,,,219.8578947,3031,,,,,,,6032,,2869,0.46,,,,,,0.44,0.49,,0.46,0.42,,,,,,0.51,0.29,0.46,0.43,0.895558485,78133,87245,0.885727151,0.905389818,0.540725002,16796,31062,0.504163634,0.577286369,0.045178518,2284,50555,,,0.205,5416,,0.147808511,0.262191489,,,,,,,0.483944954,0.347954556,0.619935352,0.320454546,0.165280629,0.475628462,0.153558052,0.122237612,0.184878493,4.268364785,105403,24694,3.98074381,4.55598576,0.251907266,6802,27002,0.219158632,0.284655901,13.89831862,174,125195,,,101.1613853,616,608928,93.17260486,109.1501657,,,,,,,113.0143034,87.03478465,144.3167424,,,,103.8285829,95.07116408,112.5860016,,,,9,,,,,0,,,,,0.117839273,5770,48965,0.104014232,0.131664314,0.101175743,0.087808382,0.114543103,0.014398039,0.00970286,0.019093219,0.009802921,0.005911987,0.013693854,0.836000976,44553,53293,0.823756738,0.848245214,,,,,,,0.829764454,0.777198668,0.88233024,,,,0.838206588,0.820569363,0.855843812,0.232,,53293,0.207292751,0.256707249,74.67252831,,,74.15433334,75.19072328,,,,,,,69.96415589,68.00481278,71.92349899,82.85524845,77.98766375,87.72283314,74.81847622,74.26474454,75.3722079,,,,507.3937232,2286,335449,485.3667068,529.4207395,,,,,,,729.3756578,636.747243,822.0040726,,,,501.4810479,477.9715437,524.990552,,,,56.60522998,66,116597,43.77848077,72.01573149,,,,,,,126.3239724,67.26219504,216.01784,,,,52.63213297,39.06458356,69.38890585,,,,7.200250444,69,9583,5.602224622,9.112377762,,,,,,,,,,,,,6.686930091,5.037510878,8.70395866,,,,,,,0.13,,,0.112,0.15,0.183,,,0.158,0.209,0.114,,,0.099,0.132,157.7,167,105925,,,0.127,15760,,,,0.136302182,16966.21409,124475,,,55.54950441,204,367240,47.92658767,63.17242115,,,,,,,76.1614623,49.75119578,111.5941885,,,,54.93803501,46.72762265,63.14844737,,,,0.364,,,0.348,0.378,0.106294431,7177,67520,0.09080507,0.121783793,0.061889597,1749,28260,0.042825767,0.080953426,0.001204925,151,125319,,,829.9271523,0.771707317,1265.6,1640,,,0.075399467,453,6008,0.047255948,0.103542986,3.039519158,,,,,,,2.291819843,3.199431678,3.145901067,2.870671686,,,,,,,2.048458909,3.166070745,2.993659834,0.15273262,,,,,803.3394875,,,,,0.687425326,37398,54403,0.641861664,0.732988988,54906,,,49961.31915,59850.68085,41563,15619.51064,67506.48936,,,,27956,19154.46809,36757.53192,,,,58862,56300.29787,61423.70213,,,,,,,,,,,65.01952888,,,,,0.284049102,,54906,,,6.986167389,50,7157,,,4.578851342,39,851742,3.256010915,6.259440519,,,,,,,15.09851783,7.801624486,26.37407213,,,,3.430927201,2.220315185,5.064725361,,,,13.84686627,88,608928,10.99641055,17.21039046,14.45162647,,,,,,,,,,,,,14.33883025,11.19874539,18.0864833,,,,12.97361921,79,608928,10.27133651,16.16900047,,,,,,,21.19018188,10.94927619,37.01498331,,,,12.69016013,9.814568923,16.14499516,,,,10.56658002,90,851742,8.496778148,12.98812079,,,,,,,,,,,,,11.25344122,8.950195764,13.96848778,,,,29.16666667,,12000,,,350,,0.637862271,59975,94025,,,0.703,,,,,53.4982743,,,,,0.680389749,33797,49673,0.662533413,0.698246085,0.10704739,5166,48259,0.094105485,0.119989295,0.853904536,42416,49673,0.836373178,0.871435894,125319,,,,,0.215857133,27051,125319,,,0.202299731,25352,125319,,,0.095029485,11909,125319,,,0.002298135,288,125319,,,0.008625987,1081,125319,,,0.000622412,78,125319,,,0.022590349,2831,125319,,,0.847317645,106185,125319,,,0.003367489,397,117892,0.001611588,0.005123389,0.485808217,60881,125319,,,0.336540309,42046,124936,, -39,141,39141,OH,Ross County,2024,1,11088.2221,1642,213848,10246.12533,11930.31888,0,,,,2,,,,2,10253.47589,6173.262288,16012.07272,1,,,,2,11642.2662,10722.98797,12561.54443,,,,,2,,0.183,,,0.156,0.212,4.151240768,,,3.419704557,4.910765155,6.099023558,,,5.25596289,6.965448493,0.087763111,492,5606,0.080356162,0.09517006,0,,,,,,,0.090163934,0.039339312,0.140988556,,,,0.086660175,0.078965119,0.094355232,,,,0.118811881,0.074190333,0.16343343,0.231,,,0.19,0.274,0.424,,,0.37,0.48,7.3,0.056226493,0.139,,,0.295,,,0.249,0.346,0.674471093,51997,77093,,,0.173543123,,,0.144031654,0.205743963,0.15625,10,64,0.097293627,0.225022973,270.5,208,76891,,,31.11413044,458,14720,28.26454947,33.9637114,,,,,,,32.99492386,17.56840734,56.42232467,,,,30.89331913,27.88822815,33.89841011,,,,35,23.25724582,50.58474493,0.071714635,4226,58928,0.06218272,0.08124655,0.000663277,51,76891,,,1507.666667,0.000574368,44,76606,,,1741.045455,0.00558703,428,76606,,,178.9859813,946,,,,,,,,,985,0.39,,,,,,0.45,0.4,,0.39,0.42,,,,,,0.61,0.37,,0.42,0.886949522,48478,54657,0.875488065,0.898410978,0.50319272,10008,19889,0.456557091,0.549828348,0.038404474,1346,35048,,,0.194,3045,,0.129659575,0.258340426,,,,,,,0.10989011,0,0.299783101,0.352459016,0.029923529,0.674994504,0.205818654,0.161064697,0.250572612,4.481074033,109979,24543,4.112963177,4.849184889,0.250709614,4063,16206,0.200908699,0.300510528,9.754067446,75,76891,,,127.2705032,489,384221,115.9899758,138.5510305,,,,,,,113.9627114,73.75065801,168.2314432,,,,133.3848662,121.1821563,145.5875761,,,,8.9,,,,,0,,,,,0.124312242,3615,29080,0.105679368,0.142945117,0.110027855,0.090669054,0.129386656,0.013411279,0.007442978,0.019379581,0.005845942,0.002711902,0.008979982,0.814959486,25245,30977,0.794897303,0.835021669,,,,,,,,,,,,,0.834027073,0.802695309,0.865358838,0.318,,30977,0.285109714,0.350890286,73.16905968,,,72.55400666,73.78411271,,,,,,,72.10174443,68.84646675,75.35702211,,,,72.73537899,72.0810882,73.38966978,,,,564.6680734,1642,213848,536.2247207,593.1114261,,,,,,,576.5365162,449.4384985,728.4192041,,,,584.2247452,553.7385839,614.7109064,,,,52.07966782,37,71045,36.66889235,71.78496184,,,,,,,,,,,,,51.2549453,35.05834464,72.3566897,,,,6.786149295,39,5747,4.825615537,9.276889484,,,,,,,,,,,,,6.447942348,4.465387518,9.010353138,,,,,,,0.129,,,0.11,0.147,0.191,,,0.168,0.216,0.113,,,0.097,0.13,172.2,113,65625,,,0.139,10770,,,,0.056226493,4389.264938,78064,,,66.09356588,152,229977,55.58620954,76.60092222,,,,,,,108.5439603,59.34199315,182.1183216,,,,66.99159207,55.81429414,78.16889,,,,0.409,,,0.391,0.424,0.082268445,3528,42884,0.069162062,0.095374828,0.044038987,741,16826,0.030932604,0.05714537,0.002127771,163,76606,,,469.9754601,0.877801993,704.875,803,,,0.095608672,344,3598,0.054890777,0.136326566,3.099595956,,,,,,,2.978708379,,3.113996988,2.91065948,,,,,,,2.327107561,,2.94286161,0.083599462,,,,,896.6561571,,,,,0.793596742,45212,56971,0.738836256,0.848357229,60352,,,56085.2766,64618.7234,16200,11324.42553,21075.57447,,,,42208,19226.55319,65189.44681,42914,30548.7234,55279.2766,59286,56613.48936,61958.51064,,,,,,,,,,,57.63168636,,,,,0.258417285,,60352,,,6.911344137,29,4196,,,3.71477235,20,538391,2.269079458,5.737164608,,,,,,,,,,,,,3.93755453,2.370665046,6.148979152,,,,16.0600597,63,384221,12.22566155,20.7163069,16.39681329,,,,,,,,,,,,,16.81370359,12.66638256,21.88534633,,,,11.19147574,43,384221,8.099326485,15.07484438,,,,,,,,,,,,,12.20515116,8.796399403,16.4978187,,,,16.71647557,90,538391,13.44202042,20.54738653,,,,,,,,,,,,,17.82261524,14.25579168,22.01078483,,,,18.93333333,,7500,,,142,,0.554105999,33299,60095,,,0.657,,,,,37.22504207,,,,,0.708574328,20949,29565,0.689124194,0.728024462,0.130177722,3721,28584,0.105690954,0.15466449,0.849213597,25107,29565,0.834170304,0.864256891,76606,,,,,0.210022714,16089,76606,,,0.180534162,13830,76606,,,0.056105266,4298,76606,,,0.003720335,285,76606,,,0.005234577,401,76606,,,0.000352453,27,76606,,,0.014594157,1118,76606,,,0.893493982,68447,76606,,,0.002349127,171,72793,0,0.004880273,0.475772133,36447,76606,,,0.588458096,45366,77093,, -39,143,39143,OH,Sandusky County,2024,1,9646.800842,1027,161571,8678.400178,10615.20151,0,,,,2,,,,2,17464.0189,10514.4802,27272.22882,1,8349.6936,5908.74014,11460.60682,,9703.24216,8628.660355,10777.82397,,,,,2,,0.172,,,0.147,0.2,3.788431816,,,3.045156462,4.65041125,4.643500346,,,3.75084237,5.643285127,0.07026524,302,4298,0.062623844,0.077906635,0,,,,,,,0.145695364,0.089422782,0.201967947,0.065813528,0.045033948,0.086593109,0.068062827,0.059644003,0.076481652,,,,0.074074074,0.029895629,0.118252519,0.208,,,0.169,0.25,0.421,,,0.356,0.492,8,0.032661526,0.12,,,0.269,,,0.223,0.318,0.793466449,46732,58896,,,0.175738872,,,0.142529002,0.213801078,0.235294118,12,51,0.163289696,0.312600154,287.8,169,58715,,,22.67889307,277,12214,20.00811354,25.34967261,,,,,,,44.60093897,26.85267879,69.64989101,26.08242045,19.35887519,34.38641975,20.50834515,17.57672455,23.43996575,,,,31.34796238,19.14814982,48.41438543,0.075775338,3555,46915,0.065051934,0.086498743,0.000306566,18,58715,,,3261.944444,0.000545451,32,58667,,,1833.34375,0.001499992,88,58667,,,666.6704546,2600,,,,,,,780,,2671,0.47,,,,,,,0.34,0.37,0.47,0.52,,,,,,0.33,0.33,0.4,0.53,0.93162681,38724,41566,0.92015458,0.943099041,0.558564321,7859,14070,0.510153016,0.606975627,0.047085951,1409,29924,,,0.152,1888,,0.105531915,0.198468085,,,,,,,0.425357873,0.111194134,0.739521613,0.241396264,0.143709045,0.339083482,0.151310861,0.112691223,0.1899305,4.204527573,117567,27962,3.631200792,4.777854354,0.23442738,3007,12827,0.18574559,0.283109169,11.92199608,70,58715,,,88.56249447,260,293578,77.79736548,99.32762345,,,,,,,111.8693366,53.64569523,205.7316931,56.46339843,32.89201033,90.40337059,94.20631182,82.08381496,106.3288087,,,,9,,,,,0,,,,,0.110807975,2640,23825,0.093541179,0.128074771,0.087714105,0.069966837,0.105461372,0.01112277,0.00526929,0.016976251,0.015320042,0.008507241,0.022132843,0.865686528,23435,27071,0.846368385,0.885004671,,,,,,,,,,0.836952069,0.745230764,0.928673374,0.865395573,0.84686141,0.883929736,0.236,,27071,0.211206713,0.260793288,75.22328024,,,74.48005045,75.96651002,,,,,,,68.65527461,63.61280112,73.6977481,78.56652673,75.71851736,81.4145361,75.07569256,74.26744824,75.88393688,,,,454.0503449,1027,161571,424.4294738,483.671216,,,,,,,641.468839,435.8469541,910.5138133,349.0923149,262.248891,455.4897463,462.4061661,430.3272682,494.4850639,,,,59.81492558,34,56842,41.42357479,83.5853631,,,,,,,,,,,,,54.63702014,34.63518395,81.98235674,,,,5.865102639,26,4433,3.831279769,8.593734285,,,,,,,,,,,,,5.611672278,3.427755215,8.6667727,,,,,,,0.119,,,0.102,0.137,0.17,,,0.148,0.195,0.111,,,0.094,0.128,92.4,46,49784,,,0.12,7090,,,,0.032661526,1990.524048,60944,,,29.61545471,52,175584,22.11823811,38.83672871,,,,,,,,,,,,,29.99052572,21.7911619,40.26088096,,,,0.369,,,0.354,0.383,0.085205471,2909,34141,0.070907599,0.099503344,0.051681889,696,13467,0.036192527,0.067171251,0.000903404,53,58667,,,1106.924528,0.934059233,536.15,574,,,0.069300518,214,3088,0.025081738,0.113519299,3.147578854,,,,,,,2.410377255,3.02762775,3.209178717,3.15311798,,,,,,,2.228632017,3.076432098,3.240842461,0.093158797,,,,,2216.3905,,,,,0.786034817,45017,57271,0.727671492,0.844398142,62473,,,57321,67625,110481,480.3191489,220481.6809,110366,93526.68085,127205.3192,33365,19390.02128,47339.97872,51058,43370.51064,58745.48936,63159,60211.25532,66106.74468,,,,,,,,,,,66.18509345,,,,,0.309557729,,62473,,,8.602150538,28,3255,,,,,,,,,,,,,,,,,,,,,,,,,,15.23915655,44,293578,10.93588184,20.6736366,14.98749906,,,,,,,,,,,,,16.09463081,11.27248155,22.28175314,,,,11.92187426,35,293578,8.304022237,16.5804411,,,,,,,,,,,,,11.77578898,7.886430692,16.91199727,,,,17.20849179,71,412587,13.43997486,21.70617085,,,,,,,,,,,,,19.01584366,14.70685211,24.1928156,,,,57.37704918,,6100,,,350,,0.667569367,30074,45050,,,0.724,,,,,45.1505719,,,,,0.741409435,17822,24038,0.723838918,0.758979952,0.103953588,2419,23270,0.08379168,0.124115496,0.863174973,20749,24038,0.846197909,0.880152037,58667,,,,,0.216203317,12684,58667,,,0.202873847,11902,58667,,,0.031227095,1832,58667,,,0.004107931,241,58667,,,0.005284061,310,58667,,,0.000306816,18,58667,,,0.109925512,6449,58667,,,0.827415753,48542,58667,,,0.006892467,384,55713,0.003503652,0.010281282,0.498303987,29234,58667,,,0.432474192,25471,58896,, -39,145,39145,OH,Scioto County,2024,1,16369.71951,2011,205308,15299.65762,17439.78139,0,,,,2,,,,2,28246.06852,14595.15578,49340.19729,1,,,,2,16802.76738,15684.6137,17920.92106,,,,,2,,0.214,,,0.183,0.25,4.830397219,,,3.912250559,5.756475344,5.736219539,,,4.790410321,6.670300226,0.081306586,458,5633,0.07416928,0.088443893,0,,,,,,,,,,,,,0.079021637,0.071768896,0.086274378,,,,0.122137405,0.066063856,0.178210953,0.274,,,0.226,0.325,0.474,,,0.419,0.531,6.6,0.032227299,0.185,,,0.337,,,0.286,0.39,0.802845638,59417,74008,,,0.14126078,,,0.115095698,0.168857465,0.173076923,9,52,0.105967758,0.250543077,235.9,173,73346,,,30.92913386,491,15875,28.19334181,33.66492591,,,,,,,,,,,,,31.83042187,28.92474041,34.73610334,,,,34.62321792,20.16930035,55.4351259,0.080087748,4600,57437,0.069364344,0.090811153,0.000558994,41,73346,,,1788.926829,0.000360141,26,72194,,,2776.692308,0.008421753,608,72194,,,118.7401316,3732,,,,,,,2197,,3731,0.35,,,,,,,0.41,,0.35,0.41,,,,,,0.36,0.4,,0.41,0.875571999,44965,51355,0.862495697,0.888648301,0.478225323,8774,18347,0.433247533,0.523203113,0.050734312,1482,29211,,,0.282,4312,,0.20693617,0.35706383,,,,,,,0.607784431,0.273381403,0.942187459,0.489878543,0.335567592,0.644189493,0.299199773,0.256810384,0.341589163,5.865881393,100594,17149,5.136841484,6.594921301,0.242489001,3858,15910,0.197010834,0.287967167,9.816486243,72,73346,,,168.2521539,630,374438,155.1136344,181.3906734,,,,,,,172.9399797,100.7439112,276.8936604,,,,174.6051315,160.7374318,188.4728312,,,,6.8,,,,,0,,,,,0.132949932,3930,29560,0.114017367,0.151882498,0.11053451,0.093012689,0.128056331,0.01962111,0.011605669,0.02763655,0.007611637,0.002964651,0.012258624,0.839590055,22119,26345,0.816252812,0.862927298,,,,,,,,,,,,,0.83444416,0.806658789,0.862229531,0.351,,26345,0.313302964,0.388697036,69.69559965,,,69.019362,70.37183731,,,,,,,64.22908235,54.99818149,73.45998321,,,,69.29352002,68.60162875,69.98541128,,,,759.6956988,2011,205308,724.7116082,794.6797894,,,,,,,813.6662178,544.9250361,1168.560415,,,,781.9845694,745.4494637,818.5196751,,,,70.71547421,51,72120,52.65231536,92.97778893,,,,,,,,,,,,,68.93276757,50.28003368,92.23746649,,,,9.537020981,55,5767,7.184589383,12.41374371,,,,,,,,,,,,,8.971072867,6.636849094,11.86023409,,,,,,,0.148,,,0.128,0.172,0.197,,,0.172,0.223,0.129,,,0.111,0.149,99.6,62,62221,,,0.185,13740,,,,0.032227299,2562.038078,79499,,,120.6240163,269,223007,106.2090472,135.0389854,,,,,,,,,,,,,125.334426,110.0995202,140.5693318,,,,0.402,,,0.385,0.419,0.093178875,3885,41694,0.078881002,0.107476747,0.046498972,769,16538,0.0322011,0.060796844,0.002091587,151,72194,,,478.1059603,0.900807416,753.075,836,,,0.107636174,413,3837,0.046803466,0.168468883,3.221421371,,,,,,,,3.39491069,3.230227996,3.232046841,,,,,,,,3.442984412,3.225782755,0.140953723,,,,,-3944.1624,,,,,0.691628599,40425,58449,0.631446715,0.751810484,48465,,,43130.70213,53799.29787,105735,61120.87234,150349.1277,81048,64102.6383,97993.3617,,,,56837,38689.42553,74984.57447,46061,44046.19149,48075.80851,,,,,,,,,,,76.35162094,,,,,0.321799237,,48465,,,9.889049686,41,4146,,,5.11992961,27,527351,3.374065875,7.449228777,,,,,,,,,,,,,5.286572918,3.453364948,7.7460542,,,,17.26171999,61,374438,13.1075477,22.31477594,16.29108157,,,,,,,,,,,,,16.92277685,12.67632113,22.13540879,,,,11.75094408,44,374438,8.538253959,15.77509395,,,,,,,,,,,,,12.04173321,8.67862212,16.27692511,,,,16.68717799,88,527351,13.38360471,20.55907,,,,,,,,,,,,,17.28302685,13.80506799,21.37073034,,,,19.2,,7500,,,144,,0.545063356,32047,58795,,,0.594,,,,,47.06810456,,,,,0.685301463,19209,28030,0.664679512,0.705923413,0.120655017,3183,26381,0.101424387,0.139885647,0.832322512,23330,28030,0.81049784,0.854147183,72194,,,,,0.215378009,15549,72194,,,0.191013104,13790,72194,,,0.026816633,1936,72194,,,0.005845361,422,72194,,,0.004487908,324,72194,,,0.000235477,17,72194,,,0.016483364,1190,72194,,,0.926558994,66892,72194,,,0.001419762,99,69730,0,0.003389611,0.50274261,36295,72194,,,0.55338612,40955,74008,, -39,147,39147,OH,Seneca County,2024,1,8961.331246,919,152332,8034.410702,9888.25179,0,,,,2,,,,2,13299.36857,7270.888554,22314.08064,1,8172.838439,5236.491801,12160.53576,1,9165.996207,8153.229379,10178.76304,,,,,2,,0.166,,,0.141,0.193,3.982105614,,,3.222947421,4.811252479,5.088193378,,,4.194122452,6.058742767,0.083233676,348,4181,0.074860411,0.091606942,0,,,,,,,0.2625,0.166082305,0.358917695,0.085245902,0.053906183,0.11658562,0.0777259,0.069029117,0.086422682,,,,0.132231405,0.071873709,0.192589101,0.216,,,0.175,0.261,0.42,,,0.356,0.487,7.5,0.08388568,0.115,,,0.294,,,0.246,0.349,0.746100347,41087,55069,,,0.171225943,,,0.138910654,0.206128282,0.378378378,14,37,0.293800947,0.460584183,344.2,189,54906,,,19.40850277,273,14066,17.10617696,21.71082858,,,,,,,21.52641879,10.7459107,38.51670942,40,28.30638068,54.90312518,17.37178954,15.0165912,19.72698789,,,,28.32244009,15.08050652,48.43223512,0.075895355,3255,42888,0.065171951,0.08661876,0.000364259,20,54906,,,2745.3,0.000402694,22,54632,,,2483.272727,0.00153756,84,54632,,,650.3809524,3087,,,,,,,5646,,3071,0.45,,,,,,,0.52,0.23,0.45,0.52,,,,,,0.84,0.45,0.57,0.52,0.933960738,34635,37084,0.924025858,0.943895618,0.609280378,7747,12715,0.558668116,0.659892639,0.041796845,1097,26246,,,0.154,1751,,0.102765957,0.205234043,,,,,,,0.654434251,0.437687299,0.871181202,0.142193309,0.031166015,0.253220602,0.142115644,0.104196909,0.180034379,4.169716768,112328,26939,3.812010769,4.527422766,0.221801028,2633,11871,0.174893091,0.268708965,13.11332095,72,54906,,,88.9382587,245,275472,77.80142713,100.0750903,,,,,,,,,,,,,92.69837656,80.66574064,104.7310125,,,,8.8,,,,,0,,,,,0.094439338,2055,21760,0.078540448,0.110338228,0.075139147,0.060112669,0.090165624,0.006663603,0.002088379,0.011238827,0.016544118,0.007224434,0.025863802,0.815034394,21446,26313,0.78914602,0.840922767,,,,,,,,,,0.748148148,0.619061164,0.877235132,0.815195702,0.781500812,0.848890592,0.26,,26313,0.233330859,0.286669141,75.66944855,,,74.93302462,76.40587248,,,,,,,,,,77.57951439,72.59389401,82.56513476,75.45728732,74.66918685,76.24538779,,,,443.9509944,919,152332,413.4844044,474.4175843,,,,,,,735.2843746,466.1072201,1103.287583,514.5956583,356.3724528,719.0958533,445.6141718,413.5965973,477.6317463,,,,48.57687741,27,55582,32.0124683,70.67680624,,,,,,,,,,,,,54.16648611,35.05369383,79.96041881,,,,6.232023011,26,4172,4.070964337,9.131357642,,,,,,,,,,,,,6.90989497,4.471719693,10.20036808,,,,,,,0.12,,,0.104,0.138,0.176,,,0.153,0.2,0.105,,,0.09,0.122,64.1,30,46772,,,0.115,6330,,,,0.08388568,4760.092922,56745,,,35.75280872,59,165022,27.21669452,46.11851836,,,,,,,,,,,,,32.66572753,24.08512881,43.31001557,,,,0.374,,,0.358,0.388,0.08641896,2691,31139,0.073312577,0.099525343,0.04913807,610,12414,0.034840198,0.063435942,0.000713867,39,54632,,,1400.820513,0.929817073,381.225,410,,,0.050257732,195,3880,0.020184021,0.080331443,3.151239929,,,,,,,,3.157650605,3.14072729,3.028224028,,,,,,,,,3.030179489,0.049762092,,,,,2719.559,,,,,0.762636199,40316,52864,0.72059001,0.804682387,63221,,,60129.08511,66312.91489,54167,25598.65957,82735.34043,,,,31198,3740.12766,58655.87234,63393,47422.2766,79363.7234,63122,59694.08511,66549.91489,,,,,,,,,,,53.01662383,,,,,0.305895193,,63221,,,4.705882353,14,2975,,,,,,,,,,,,,,,,,,,,,,,,,,18.07143322,50,275472,13.2782094,24.03117517,18.15066504,,,,,,,,,,,,,18.27099193,13.22280746,24.61090623,,,,10.89039902,30,275472,7.34770649,15.54672177,,,,,,,,,,,,,11.79058298,7.89633847,16.93324393,,,,10.35102928,40,386435,7.394927075,14.09516399,,,,,,,,,,,,,10.98189721,7.771444075,15.07351193,,,,52.98245614,,5700,,,302,,0.60643797,25810,42560,,,0.714,,,,,49.553729,,,,,0.720173437,15779,21910,0.702067719,0.738279155,0.084747365,1793,21157,0.067944725,0.101550005,0.852989503,18689,21910,0.839435105,0.8665439,54632,,,,,0.212494509,11609,54632,,,0.193366525,10564,54632,,,0.023649143,1292,54632,,,0.003313077,181,54632,,,0.007596281,415,54632,,,0.00064065,35,54632,,,0.05806121,3172,54632,,,0.88506736,48353,54632,,,0.002552734,133,52101,0,0.005268836,0.495918143,27093,54632,,,0.455991574,25111,55069,, -39,149,39149,OH,Shelby County,2024,1,9131.76732,807,134706,8165.880348,10097.65429,0,,,,2,,,,2,,,,2,,,,2,9224.504521,8220.671654,10228.33739,,,,,2,,0.165,,,0.136,0.195,3.872335261,,,3.091666754,4.74852909,5.416859026,,,4.387665276,6.489278045,0.066682265,285,4274,0.059203003,0.074161527,0,,,,,,,0.1625,0.081659281,0.243340719,,,,0.065233881,0.057537777,0.072929985,,,,,,,0.214,,,0.17,0.262,0.408,,,0.331,0.486,8.1,0.041548761,0.109,,,0.278,,,0.227,0.334,0.608272859,29337,48230,,,0.182709517,,,0.146193438,0.221693328,0.279069767,12,43,0.199251669,0.361901334,279.3,134,47977,,,21.7823572,241,11064,19.03223225,24.53248214,,,,,,,,,,,,,20.86677368,18.03094683,23.70260052,,,,37.91469194,21.6715224,61.57108435,0.069632886,2756,39579,0.060100971,0.079164801,0.000458553,22,47977,,,2180.772727,0.00029368,14,47671,,,3405.071429,0.000881039,42,47671,,,1135.02381,3013,,,,,,,,,3041,0.43,,,,,,,,,0.43,0.47,,,,,,0.53,0.37,,0.47,0.911827218,29173,31994,0.896079767,0.927574668,0.619207705,6815,11006,0.567407393,0.671008017,0.03516605,827,23517,,,0.123,1390,,0.080106383,0.165893617,,,,,,,0.344680851,0,0.692625106,0.356223176,0.066853247,0.645593105,0.152431907,0.116088866,0.188774948,3.763436482,129402,34384,3.414562519,4.112310445,0.161814489,1912,11816,0.112379035,0.211249943,10.83852679,52,47977,,,94.10210904,228,242290,81.88726279,106.3169553,,,,,,,,,,,,,96.28672046,83.44581671,109.1276242,,,,9.6,,,,,0,,,,,0.081681843,1525,18670,0.067633574,0.095730111,0.057520929,0.044250137,0.070791721,0.022228174,0.013944831,0.030511516,0.005356186,0.000683129,0.010029244,0.835986452,19746,23620,0.817504082,0.854468822,,,,,,,,,,,,,0.854741479,0.835962935,0.873520024,0.188,,23620,0.165081245,0.210918756,75.61609426,,,74.83900242,76.39318611,,,,,,,,,,,,,75.40402032,74.6055858,76.20245484,,,,456.3549313,807,134706,423.2842868,489.4255758,,,,,,,,,,,,,464.3515589,429.9880126,498.7151052,,,,49.75886091,26,52252,32.50413997,72.90826013,,,,,,,,,,,,,47.09206499,29.51234641,71.29795232,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.12,,,0.102,0.139,0.177,,,0.154,0.205,0.104,,,0.088,0.122,90.6,36,39723,,,0.109,5270,,,,0.041548761,2053.46441,49423,,,31.74515541,46,144904,23.24144358,42.34358866,,,,,,,,,,,,,32.09889445,23.23012908,43.23700018,,,,0.38,,,0.362,0.398,0.078484925,2184,27827,0.066570031,0.090399818,0.049664863,615,12383,0.035366991,0.063962736,0.000503451,24,47671,,,1986.291667,0.922485507,636.515,690,,,,,,,,3.284171978,,,,,,,,,3.313765501,3.266533532,,,,,,,,,3.315519589,0.118675669,,,,,2712.962925,,,,,0.703100037,43569,61967,0.655202406,0.750997668,72498,,,64870.08511,80125.91489,24792,2026.212766,47557.78723,,,,,,,69153,37975.29787,100330.7021,74668,69981.87234,79354.12766,,,,,,,,,,,62.88010187,,,,,0.266752186,,72498,,,5.466237942,17,3110,,,,,,,,,,,,,,,,,,,,,,,,,,16.23073872,40,242290,11.42793792,22.37193532,16.50914194,,,,,,,,,,,,,16.48025387,11.41305489,23.02950292,,,,9.492756614,23,242290,6.017593395,14.24379582,,,,,,,,,,,,,9.806980787,6.145982647,14.84788677,,,,13.83109584,47,339814,10.16256898,18.39242537,,,,,,,,,,,,,13.64455614,9.874632934,18.37912758,,,,18.54545455,,5500,,,102,,0.697542115,25258,36210,,,0.736,,,,,44.25651109,,,,,0.741115114,13784,18599,0.718064221,0.764166007,0.062880325,1147,18241,0.048857972,0.076902678,0.895962149,16664,18599,0.874751487,0.91717281,47671,,,,,0.24306182,11587,47671,,,0.181053471,8631,47671,,,0.023179711,1105,47671,,,0.002496277,119,47671,,,0.011348619,541,47671,,,0.001153741,55,47671,,,0.017348073,827,47671,,,0.921944159,43950,47671,,,0.003836771,173,45090,0.000176595,0.007496947,0.494975981,23596,47671,,,0.570101597,27496,48230,, -39,151,39151,OH,Stark County,2024,1,9370.371764,6662,1020032,9008.801364,9731.942163,0,,,,2,3923.270197,1577.358098,8083.436057,1,17845.47254,16065.3975,19625.54759,,5556.102206,3847.762295,7764.095931,,8798.188917,8426.006658,9170.371177,,,,,2,,0.161,,,0.137,0.187,3.878359159,,,3.180881937,4.654953579,4.947199296,,,4.169111212,5.809210805,0.085117697,2401,28208,0.081861112,0.088374283,0,,,,0.096428571,0.061853653,0.13100349,0.134590377,0.122529448,0.146651306,0.08401084,0.067669221,0.10035246,0.078005227,0.074536291,0.081474162,,,,0.098535286,0.077219255,0.119851318,0.213,,,0.172,0.254,0.418,,,0.366,0.468,7.4,0.085760448,0.12,,,0.256,,,0.215,0.299,0.735829779,275828,374853,,,0.166158124,,,0.13702992,0.197232925,0.331395349,57,172,0.293173031,0.369781191,434.1,1623,373834,,,20.79961863,1658,79713,19.79842246,21.8008148,,,,,,,46.5300727,41.66915274,51.39099267,65.90819929,55.94174047,75.87465812,16.02778773,15.04847372,17.00710174,,,,23.97179789,19.319617,28.62397877,0.076463949,22560,295041,0.068123524,0.084804375,0.00077307,289,373834,,,1293.543253,0.00063329,236,372657,,,1579.055085,0.003410643,1271,372657,,,293.1998426,2499,,,,,,,3724,,2438,0.45,,,,,,0.48,0.41,,0.46,0.5,,,,,,0.58,0.34,0.33,0.5,0.926992257,242897,262027,0.921443115,0.932541399,0.641724329,56851,88591,0.618717837,0.66473082,0.040280481,7284,180832,,,0.188,14661,,0.147489362,0.228510638,,,,0.116040956,0,0.262955129,0.505175461,0.443302026,0.567048895,0.387022398,0.282547447,0.491497349,0.135401975,0.119298322,0.151505628,4.403323875,119493,27137,4.235605542,4.571042208,0.271198318,21672,79912,0.248627178,0.293769458,11.76992997,440,373834,,,93.52493209,1738,1858328,89.12791061,97.92195357,,,,,,,138.7429341,119.6095733,157.8762949,52.97247839,33.19757018,80.20096888,93.55285236,88.81368327,98.29202146,,,,10.3,,,,,0,,,,,0.110031104,16980,154320,0.102021295,0.118040914,0.092581699,0.085905375,0.099258024,0.009039658,0.007072966,0.01100635,0.013219285,0.009975208,0.016463361,0.804414515,142387,177007,0.794625925,0.814203105,,,,0.55091104,0.442671645,0.659150434,0.737886694,0.668703736,0.807069652,0.826715751,0.763376476,0.890055025,0.809555887,0.800357981,0.818753793,0.255,,177007,0.242732866,0.267267134,75.43495521,,,75.15319286,75.71671756,,,,84.97435949,80.7899894,89.15872959,68.26042304,67.14227456,69.37857153,87.92993383,82.67061368,93.18925398,75.86857075,75.57615837,76.16098314,,,,465.1374203,6662,1020032,453.247692,477.0271487,,,,184.0102074,112.3982151,284.1888412,805.3610052,745.6718187,865.0501917,214.9169022,153.5397858,292.6558218,449.1433652,436.7557961,461.5309342,,,,57.20872405,202,353093,49.31934816,65.09809993,,,,,,,121.9512195,88.60994279,163.7138201,,,,50.59046298,42.21014095,58.970785,,,,6.897276101,197,28562,5.934111374,7.860440828,,,,,,,14.17525773,10.29976397,19.02962187,,,,5.815693821,4.838258224,6.793129418,,,,,,,0.12,,,0.103,0.137,0.167,,,0.145,0.189,0.106,,,0.091,0.122,162,515,317845,,,0.12,44780,,,,0.085760448,32210.42379,375586,,,34.46381838,384,1114212,31.01671862,37.91091814,,,,,,,66.13907451,50.22217219,85.50009094,,,,33.43733739,29.77369758,37.10097719,,,,0.386,,,0.369,0.402,0.089605502,19309,215489,0.078882098,0.100328906,0.041984459,3512,83650,0.031261055,0.052707863,0.001309515,488,372657,,,763.6413934,0.880741256,3802.16,4317,,,0.070403957,1281,18195,0.051884575,0.088923339,3.165916145,,,,,,3.516853305,2.379873258,2.776745042,3.341563717,3.111815208,,,,,,3.709191127,2.275954171,2.78037892,3.30674809,0.163480272,,,,,1223.8954,,,,,0.783405478,44159,56368,0.755157374,0.811653583,64557,,,61288.74468,67825.25532,91333,67080.23404,115585.766,82625,43264.14894,121985.8511,34334,30978.76596,37689.23404,41563,25102.57447,58023.42553,67677,66134.02128,69219.97872,,,,,,,,,,,58.72039004,,,,,0.299564726,,64557,,,8.035970535,168,20906,,,5.71515148,149,2607105,4.797472714,6.632830247,,,,,,,31.96600784,24.67068999,40.74330106,,,,3.554730858,2.818680492,4.424170258,,,,18.44753896,343,1858328,16.4160753,20.47900262,18.45745208,,,,,,,10.63038204,5.811728781,17.83597475,,,,19.76314411,17.48736664,22.03892158,,,,14.47537787,269,1858328,12.74552231,16.20523342,,,,,,,35.71600283,26.67441924,46.83678593,,,,13.24863374,11.46519073,15.03207674,,,,9.627537057,251,2607105,8.436474946,10.81859917,,,,,,,13.76997261,9.150046796,19.90144434,,,,9.731075724,8.44224801,11.01990344,,,,18.7704918,,36600,,,687,,0.657475762,189879,288800,,,0.74,,,,,78.86887986,,,,,0.681640701,105443,154690,0.673036972,0.69024443,0.099947699,15097,151049,0.092474476,0.107420923,0.847805288,131147,154690,0.838327303,0.857283273,372657,,,,,0.213171898,79440,372657,,,0.206160088,76827,372657,,,0.079424243,29598,372657,,,0.003008128,1121,372657,,,0.010347317,3856,372657,,,0.000499119,186,372657,,,0.025629466,9551,372657,,,0.853039122,317891,372657,,,0.003992185,1412,353691,,,0.50985759,190002,372657,,,0.147583186,55322,374853,, -39,153,39153,OH,Summit County,2024,1,9427.147378,9113,1494976,9122.452354,9731.842401,0,,,,2,3652.295916,2771.345637,4533.246196,,16567.42996,15522.32021,17612.53971,,5152.616819,3799.132889,6831.622363,,8445.657069,8120.136112,8771.178025,,,,,2,,0.167,,,0.142,0.19,3.940157325,,,3.269509978,4.734453259,5.608036275,,,4.850031265,6.443298851,0.091175073,3646,39989,0.088353678,0.093996469,0,,,,0.109042553,0.097134532,0.120950575,0.150371287,0.14257752,0.158165055,0.087719298,0.072061917,0.103376679,0.070393218,0.067308752,0.073477685,,,,0.106484642,0.090689201,0.122280083,0.193,,,0.156,0.229,0.426,,,0.381,0.472,7.7,0.076093368,0.112,,,0.26,,,0.22,0.298,0.954090092,515617,540428,,,0.171979339,,,0.145139092,0.200687835,0.358490566,76,212,0.324688163,0.392205054,535.1,2877,537633,,,17.25641049,1920,111263,16.48451959,18.02830139,,,,16.9197397,13.37435211,21.11660088,37.33742861,34.71374974,39.96110749,19.48051948,15.24230673,24.53249027,10.29595991,9.577529989,11.01438984,,,,35.0877193,30.04511675,40.13032185,0.074311799,32070,431560,0.067162863,0.081460735,0.000976503,525,537633,,,1024.062857,0.000673656,361,535882,,,1484.437673,0.00357728,1917,535882,,,279.5419927,3031,,,,,,1325,5448,,2791,0.47,,,,,,0.43,0.45,0.47,0.47,0.53,,,,,,0.59,0.38,0.49,0.54,0.925344084,353239,381738,0.921180422,0.929507746,0.700291065,95998,137083,0.680258161,0.720323968,0.041059874,10807,263201,,,0.175,18853,,0.140446809,0.209553192,,,,0.230813729,0.149586404,0.312041055,0.437594771,0.395635305,0.479554238,0.180720093,0.117824723,0.243615463,0.093906137,0.079874099,0.107938175,4.790668751,134819,28142,4.606193049,4.975144454,0.28526427,31876,111742,0.26585504,0.304673499,11.27162953,606,537633,,,94.60657366,2555,2700658,90.93812933,98.27501799,,,,31.05619289,21.3776542,43.61444138,132.3971616,121.1358886,143.6584345,48.05074158,32.41963357,68.5954214,93.82106691,89.63744068,98.00469314,,,,9,,,,,0,,,,,0.128330099,29095,226720,0.121376694,0.135283504,0.116141425,0.109511094,0.122771755,0.008181898,0.006474231,0.009889566,0.012129499,0.00988417,0.014374828,0.785523325,208027,264826,0.777268344,0.793778306,,,,0.686587834,0.63714452,0.736031149,0.746373218,0.725148407,0.767598029,0.779863946,0.726764662,0.832963229,0.810502744,0.801463362,0.819542127,0.29,,264826,0.278633916,0.301366084,75.7256934,,,75.4850736,75.9663132,,,,83.27980077,81.57406863,84.98553291,69.62882609,68.93477818,70.32287401,92.07327124,84.57470158,99.5718409,76.5144347,76.25371255,76.77515685,,,,447.8281154,9113,1494976,438.1049908,457.5512399,,,,181.375867,145.8170914,216.9346426,729.8621807,695.8154685,763.9088928,184.3270521,139.6075092,238.8170759,418.8981038,408.3576937,429.438514,,,,58.15189274,290,498694,51.45889117,64.84489432,,,,40.2787288,19.31521608,74.07401636,141.280167,117.3588618,165.2014722,,,,37.79666603,31.17061833,44.42271373,,,,6.835505287,278,40670,6.031971214,7.639039359,,,,,,,16.14652368,13.41262317,18.88042419,,,,4.557918921,3.752410452,5.36342739,,,,,,,0.115,,,0.1,0.131,0.172,,,0.151,0.195,0.102,,,0.089,0.116,219.9,1009,458853,,,0.112,60400,,,,0.076093368,41225.94088,541781,,,40.37064331,653,1617512,37.27418562,43.467101,,,,,,,46.39198744,37.80007113,54.98390375,,,,42.38787185,38.74456281,46.0311809,,,,0.354,,,0.338,0.368,0.085917776,27565,320830,0.076385861,0.095449691,0.041984602,4886,116376,0.032452687,0.051516517,0.001504063,806,535882,,,664.866005,0.856288479,4868,5685,,,0.059424255,1542,25949,0.045612739,0.073235772,3.157142193,,,,,,3.013354207,2.524813703,2.931135748,3.444605244,2.954999912,,,,,,3.077659454,2.227369769,2.733048646,3.26532394,0.220406267,,,,,2397.0129,,,,,0.781491083,49738,63645,0.754180044,0.808802123,66034,,,63113.65957,68954.34043,,,,87940,75123.14894,100756.8511,38241,35336.14894,41145.85106,60308,45444.17021,75171.82979,74310,72566.85106,76053.14894,,,,,,,,,,,59.25441719,,,,,0.38260593,,66034,,,8.584554509,256,29821,,,8.35332227,316,3782926,7.432296531,9.274348008,,,,,,,38.7702159,33.61170415,43.92872765,,,,3.067591448,2.463527825,3.774935241,,,,15.79011528,432,2700658,14.25015426,17.33007631,15.99610169,,,,10.7175342,5.350154457,19.17662917,12.19984657,8.898651802,16.32435457,,,,16.9523377,15.12257736,18.78209805,,,,16.44043785,444,2700658,14.91118969,17.96968601,,,,,,,47.12441344,40.40593192,53.84289496,,,,11.80047581,10.31675409,13.28419752,,,,8.406191398,318,3782926,7.482255619,9.330127177,,,,,,,11.61319831,8.96282128,14.80197457,,,,8.410025992,7.354768373,9.46528361,,,,18.22834646,,50800,,,926,,0.675293438,280473,415335,,,0.734,,,,,135.9189776,,,,,0.66926761,153018,228635,0.661645734,0.676889486,0.121311033,26982,222420,0.113725911,0.128896155,0.893896385,204376,228635,0.886612222,0.901180549,535882,,,,,0.204574888,109628,535882,,,0.196222303,105152,535882,,,0.150245763,80514,535882,,,0.002097477,1124,535882,,,0.044968855,24098,535882,,,0.000434797,233,535882,,,0.026539425,14222,535882,,,0.749804994,401807,535882,,,0.015270333,7791,510205,0.012982466,0.0175582,0.512202313,274480,535882,,,0.037820024,20439,540428,, -39,155,39155,OH,Trumbull County,2024,1,11499.51876,4200,540751,10941.07109,12057.96644,0,,,,2,,,,2,19999.31946,17482.0749,22516.56401,,8681.443824,5057.260949,13899.83255,1,10879.83508,10299.60955,11460.06062,,,,,2,,0.186,,,0.159,0.216,4.499392079,,,3.734905544,5.409609915,5.499437493,,,4.672300686,6.462559863,0.089796202,1291,14377,0.085122939,0.094469466,0,,,,,,,0.149362477,0.132147665,0.16657729,0.113846154,0.079313645,0.148378663,0.079319876,0.07447238,0.084167372,,,,0.138586957,0.103284977,0.173888936,0.226,,,0.182,0.271,0.419,,,0.366,0.478,6.7,0.112906418,0.141,,,0.297,,,0.249,0.345,0.739940686,149451,201977,,,0.148432891,,,0.121921935,0.17790795,0.376344086,35,93,0.324777607,0.427244617,387.4,780,201335,,,24.389621,955,39156,22.84273098,25.93651102,,,,,,,47.97331965,41.09733276,54.84930654,22.22222222,14.51629335,32.56070435,20.94989432,19.36825315,22.53153548,,,,39.497307,30.54721437,50.25025879,0.090997234,14078,154708,0.080273829,0.101720638,0.000451983,91,201335,,,2212.472528,0.00048843,98,200643,,,2047.377551,0.001988607,399,200643,,,502.8646617,3502,,,,,,,6416,,3360,0.44,,,,,,0.33,0.4,,0.44,0.48,,,,,,0.49,0.33,0.13,0.48,0.89577576,129333,144381,0.8878668,0.90368472,0.527429398,24055,45608,0.49732908,0.557529717,0.049354695,4088,82829,,,0.262,10549,,0.209574468,0.314425532,,,,0.155555556,0,0.380272195,0.674066336,0.576814935,0.771317736,0.337817638,0.23256709,0.443068187,0.215359761,0.188306816,0.242412706,4.548358824,103789,22819,4.229212223,4.867505424,0.282830491,11643,41166,0.254243701,0.311417282,11.17540418,225,201335,,,117.7752142,1172,995116,111.0323227,124.5181056,,,,,,,181.9117489,152.9919661,210.8315316,56.76540407,28.33708519,101.5689881,115.7110094,108.5391668,122.8828521,,,,7.4,,,,,1,,,,,0.125181866,10755,85915,0.113998461,0.136365271,0.106690245,0.096195827,0.117184662,0.014840249,0.010992426,0.018688072,0.014607461,0.011060425,0.018154497,0.833920715,70513,84556,0.822308687,0.845532743,,,,,,,0.834315301,0.756831693,0.911798909,0.777638191,0.653003108,0.902273274,0.822075243,0.806287139,0.837863347,0.268,,84556,0.250448266,0.285551734,74.04129951,,,73.63361513,74.44898389,,,,,,,68.16115874,66.6115058,69.71081169,88.53656736,77.6983417,99.37479302,74.41551067,73.98946012,74.84156121,,,,540.5079184,4200,540751,522.6988793,558.3169576,,,,,,,845.899263,763.9502477,927.8482782,286.2299853,185.2329547,422.5319223,523.392253,504.8462803,541.9382257,,,,52.14641367,93,178344,42.08888593,63.88287973,,,,,,,104.0867755,62.66703826,162.5443934,,,,45.99912184,35.5757175,58.52216143,,,,7.400746991,107,14458,5.998450847,8.803043135,,,,,,,15.38461539,10.04974155,22.54202609,,,,6.174384648,4.848219962,7.75137451,,,,,,,0.13,,,0.111,0.15,0.181,,,0.157,0.207,0.119,,,0.104,0.137,145.5,251,172523,,,0.141,28610,,,,0.112906418,23745.5745,210312,,,60.05613067,358,596109,53.83496301,66.27729834,,,,,,,87.2046932,63.36306358,117.0682303,,,,59.83188982,53.16060393,66.5031757,,,,0.38,,,0.363,0.395,0.102076307,11622,113856,0.088969924,0.11518269,0.060897063,2619,43007,0.043024723,0.078769404,0.000493414,99,200643,,,2026.69697,0.889536347,1908.945,2146,,,0.104412225,1001,9587,0.068162562,0.140661888,3.12243247,,,,,,,2.451367298,2.897156466,3.262845973,3.001387597,,,,,,,2.126631839,2.620033478,3.171001362,0.185725267,,,,,-305.37034,,,,,0.790668085,41635,52658,0.747675113,0.833661056,54406,,,50002.25532,58809.74468,,,,67688,24116.42553,111259.5745,32246,27817.23404,36674.76596,66641,55303.97872,77978.02128,56303,53965.29787,58640.70213,,,,,,,,,,,63.19232356,,,,,0.464378929,,54406,,,7.363907532,79,10728,,,6.49678873,91,1400692,5.230809021,7.976616909,,,,,,,45.05002253,33.74555827,58.92653865,,,,3.036824368,2.13820461,4.185862363,,,,16.67492054,175,995116,14.041846,19.30799508,17.58588948,,,,,,,,,,,,,18.13309239,15.16752017,21.09866461,,,,17.58588948,175,995116,14.98032764,20.19145133,,,,,,,53.85545197,39.28253622,72.06283196,,,,14.81100921,12.24513277,17.37688565,,,,10.63759913,149,1400692,8.92952562,12.34567264,,,,,,,17.0000085,10.38404684,26.25513435,,,,10.34161812,8.535861167,12.14737507,,,,18.08510638,,18800,,,340,,0.640259905,101001,157750,,,0.703,,,,,45.71144418,,,,,0.717433739,61012,85042,0.703659812,0.731207665,0.112247134,9222,82158,0.100499196,0.123995071,0.816478916,69435,85042,0.803285691,0.829672142,200643,,,,,0.204138694,40959,200643,,,0.225300658,45205,200643,,,0.086148034,17285,200643,,,0.002546812,511,200643,,,0.006010676,1206,200643,,,0.000343894,69,200643,,,0.022123872,4439,200643,,,0.860548337,172663,200643,,,0.004242386,811,191166,0.00290698,0.005577793,0.506092911,101544,200643,,,0.27177847,54893,201977,, -39,157,39157,OH,Tuscarawas County,2024,1,9156.31851,1655,252838,8442.369123,9870.267898,0,,,,2,,,,2,,,,2,9886.714002,6120.031794,15112.89257,1,9043.279116,8313.486727,9773.071505,,,,,2,,0.171,,,0.143,0.203,3.971190162,,,3.182406234,4.834448704,5.381004858,,,4.45853414,6.318552034,0.069155761,539,7794,0.063522906,0.074788616,0,,,,,,,,,,0.068852459,0.052446013,0.085258905,0.068945022,0.062891786,0.074998259,,,,,,,0.225,,,0.182,0.272,0.397,,,0.339,0.454,8,0.030360153,0.121,,,0.3,,,0.249,0.351,0.721443659,67284,93263,,,0.160281774,,,0.130209341,0.19109984,0.391304348,27,69,0.331429625,0.449860522,303.8,281,92500,,,28.63541833,537,18753,26.21342769,31.05740897,,,,,,,,,,184.5730028,153.3214321,215.8245735,22.58571512,20.33834783,24.8330824,,,,23.41920375,11.23041849,43.06874951,0.105597222,7786,73733,0.092490839,0.118703605,0.000356757,33,92500,,,2803.030303,0.00040245,37,91937,,,2484.783784,0.001827338,168,91937,,,547.2440476,2521,,,,,,,7951,,2498,0.43,,,,,,,0.36,,0.43,0.37,,,,,,,0.3,,0.37,0.887633797,56971,64183,0.877491139,0.897776455,0.505632961,10996,21747,0.466489356,0.544776566,0.038172744,1698,44482,,,0.14,2870,,0.092340426,0.187659575,,,,,,,,,,0.462696335,0.335315837,0.590076833,0.143924928,0.117504743,0.170345113,4.165700501,115694,27773,3.86049584,4.470905161,0.15091406,3203,21224,0.117538733,0.184289386,15.78378378,146,92500,,,85.73239339,395,460736,77.27761027,94.18717651,,,,,,,,,,103.4482759,57.89921471,170.6221991,86.30815704,77.56089548,95.05541861,,,,9.4,,,,,0,,,,,0.117599241,4340,36905,0.101209209,0.133989273,0.096040554,0.079743515,0.112337592,0.018669557,0.01096527,0.026373844,0.01490313,0.009689997,0.020116262,0.831890434,35169,42276,0.81054019,0.853240679,,,,,,,,,,,,,0.834750944,0.817166444,0.852335444,0.255,,42276,0.230815407,0.279184593,75.33567513,,,74.77484946,75.89650081,,,,,,,,,,,,,75.32175649,74.75249913,75.89101385,,,,463.6725551,1655,252838,439.9381371,487.4069732,,,,,,,,,,311.4594309,165.8390295,532.6051124,465.2689004,440.9900482,489.5477526,,,,58.68417049,54,92018,44.08535501,76.5701128,,,,,,,,,,163.3986928,78.35602445,300.4960138,53.70634833,39.02311492,72.09826587,,,,6.01484515,47,7814,4.419481977,7.998468946,,,,,,,,,,,,,5.710102489,4.060441067,7.805898077,,,,,,,0.125,,,0.106,0.144,0.18,,,0.155,0.206,0.106,,,0.091,0.123,40,31,77500,,,0.121,11300,,,,0.030360153,2810.803713,92582,,,27.51001763,76,276263,21.67476494,34.4328893,,,,,,,,,,,,,27.41069326,21.40797885,34.5748598,,,,0.356,,,0.339,0.372,0.116642071,6165,52854,0.101152709,0.132131432,0.078308857,1717,21926,0.056862049,0.099755666,0.000717883,66,91937,,,1392.984849,0.830757358,1157.245,1393,,,0.082074852,375,4569,0.046720308,0.117429396,3.157171338,,,,,,,,2.48392176,3.216394638,3.01547021,,,,,,,,2.512260411,3.067327524,0.118343536,,,,,824.9565578,,,,,0.749293401,42682,56963,0.686924812,0.81166199,59626,,,55101.91489,64150.08511,,,,103072,2923.744681,203220.2553,36691,25763.85106,47618.14894,,,,62810,60094.59575,65525.40426,,,,,,,,,,,56.34386885,,,,,0.261563747,,59626,,,6.703334479,39,5818,,,2.786067188,18,646072,1.651199987,4.403187302,,,,,,,,,,,,,2.62711113,1.501621002,4.266263886,,,,13.64566367,68,460736,10.46205209,17.49312498,14.75899431,,,,,,,,,,,,,13.42808823,10.22208292,17.32125547,,,,11.5033338,53,460736,8.616786388,15.04664383,,,,,,,,,,,,,11.53852367,8.564114669,15.21210499,,,,12.07295781,78,646072,9.543172155,15.06759774,,,,,,,,,,,,,11.65780564,9.104842924,14.70473555,,,,24.31578947,,9500,,,231,,0.62757539,44015,70135,,,0.716,,,,,54.14109536,,,,,0.695531318,26273,37774,0.676432342,0.714630294,0.101098961,3689,36489,0.083628328,0.118569594,0.826997406,31239,37774,0.807843213,0.846151599,91937,,,,,0.227068536,20876,91937,,,0.204422594,18794,91937,,,0.007929343,729,91937,,,0.005721309,526,91937,,,0.003948356,363,91937,,,0.00291504,268,91937,,,0.038384981,3529,91937,,,0.934074421,85876,91937,,,0.00691493,602,87058,0.004042664,0.009787196,0.500375257,46003,91937,,,0.498450618,46487,93263,, -39,159,39159,OH,Union County,2024,1,5404.987323,576,174938,4751.732629,6058.242017,0,,,,2,,,,2,,,,2,,,,2,5639.187368,4926.291881,6352.082855,,,,,2,,0.126,,,0.104,0.151,3.112263666,,,2.40220219,3.823446405,4.950741787,,,4.021316137,5.86889448,0.073145675,356,4867,0.065830487,0.080460863,0,,,,0.057627119,0.031033961,0.084220276,,,,,,,0.073927239,0.066095585,0.081758893,,,,,,,0.15,,,0.115,0.187,0.355,,,0.296,0.42,8.5,0.083796928,0.071,,,0.228,,,0.185,0.275,0.779529817,48942,62784,,,0.190922465,,,0.156469662,0.228865277,0.24137931,7,29,0.144907761,0.346292388,287.8,187,64971,,,10.07652095,133,13199,8.363980401,11.7890615,,,,,,,,,,,,,10.92611863,9.018301645,12.83393561,,,,,,,0.049813635,2713,54463,0.042664699,0.056962571,0.000569485,37,64971,,,1755.972973,0.000343807,23,66898,,,2908.608696,0.001345332,90,66898,,,743.3111111,2445,,,,,,,,,2412,0.49,,,,,,,,,0.5,0.51,,,,,,0.46,0.27,,0.52,0.94929944,40855,43037,0.940147478,0.958451402,0.729284526,13149,18030,0.68060594,0.777963111,0.03015092,913,30281,,,0.053,829,,0.03393617,0.07206383,,,,0.021253985,0,0.11163055,,,,0.110416667,0.000444012,0.220389321,0.05375,0.030630515,0.076869485,3.482629474,178537,51265,3.122291164,3.842967784,0.099810693,1529,15319,0.074346268,0.125275118,10.00446353,65,64971,,,53.59128606,160,298556,45.28723025,61.89534186,,,,,,,,,,,,,58.18698425,48.99685626,67.37711224,,,,9.8,,,,,0,,,,,0.075863735,1570,20695,0.059389187,0.092338283,0.064672988,0.048471338,0.080874638,0.006764919,0.001678733,0.011851105,0.007731336,0.002697169,0.012765504,0.741848423,23639,31865,0.720952254,0.762744592,,,,0.60341556,0.469974042,0.736857077,0.887490748,0.791346439,0.983635057,0.7843524,0.647672844,0.921031956,0.766163827,0.747928978,0.784398677,0.377,,31865,0.342777074,0.411222926,78.87348267,,,78.22570555,79.52125979,,,,81.08577413,76.93465462,85.23689363,,,,,,,78.59513187,77.91568932,79.27457442,,,,281.4769667,576,174938,258.2269415,304.7269918,,,,,,,,,,,,,291.9123005,267.127372,316.697229,,,,40.26450684,26,64573,26.30211267,58.99683162,,,,,,,,,,,,,41.41532367,26.25376256,62.14332024,,,,6.04292561,29,4799,4.047042121,8.678649185,,,,,,,,,,,,,6.117647059,3.996250168,8.963770373,,,,,,,0.095,,,0.08,0.111,0.154,,,0.132,0.179,0.088,,,0.074,0.102,131.9,71,53842,,,0.071,4390,,,,0.083796928,4382.579352,52300,,,19.02380694,35,183980,13.25077856,26.45751026,,,,,,,,,,,,,19.7525987,13.51076289,27.88477573,,,,0.353,,,0.335,0.369,0.054649202,2107,38555,0.045117288,0.064181117,0.038870532,647,16645,0.026955638,0.050785425,0.000597925,40,66898,,,1672.45,0.948998459,615.9,649,,,,,,,,3.516760639,,,,,,3.687161951,,3.478716221,3.489426748,3.429929754,,,,,,3.69219405,,3.157761495,3.391983123,0.126721956,,,,,2891.513333,,,,,0.769430364,57528,74767,0.699733672,0.839127056,104512,,,94926.46809,114097.5319,155595,34935.25532,276254.7447,212500,146517.7021,278482.2979,82775,18328.53192,147221.4681,82788,22516.51064,143059.4894,102221,98080.57447,106361.4255,,,,,,,,,,,51.22608714,,,,,0.185040952,,104512,,,5.937016004,23,3874,,,,,,,,,,,,,,,,,,,,,,,,,,11.85251373,34,298556,8.158725082,16.64533599,11.38814829,,,,,,,,,,,,,12.20307477,8.233363303,17.42064802,,,,5.359128606,16,298556,3.063205045,8.702889105,,,,,,,,,,,,,5.289725841,2.891942341,8.875261132,,,,8.082490387,33,408290,5.563614483,11.35082154,,,,,,,,,,,,,8.512671524,5.783947293,12.08305773,,,,20.59701493,,6700,,,138,,0.784449396,33445,42635,,,0.764,,,,,38.64396915,,,,,0.804142378,18209,22644,0.782007656,0.826277099,0.069035123,1539,22293,0.052960303,0.085109944,0.93384561,21146,22644,0.921518076,0.946173145,66898,,,,,0.238631947,15964,66898,,,0.135220784,9046,66898,,,0.026757153,1790,66898,,,0.002212323,148,66898,,,0.06027086,4032,66898,,,0.000224222,15,66898,,,0.029328231,1962,66898,,,0.864435409,57829,66898,,,0.004064563,242,59539,0.000932017,0.007197109,0.512451792,34282,66898,,,0.450066896,28257,62784,, -39,161,39161,OH,Van Wert County,2024,1,8235.814583,451,77943,7012.239376,9459.38979,0,,,,2,,,,2,,,,2,,,,2,8268.757506,7010.583437,9526.931575,,,,,2,,0.163,,,0.137,0.191,3.941162711,,,3.141642533,4.822457306,5.411096884,,,4.446308822,6.475869572,0.079631182,190,2386,0.068768342,0.090494022,0,,,,,,,,,,,,,0.079622132,0.068368666,0.090875599,,,,,,,0.21,,,0.167,0.253,0.44,,,0.368,0.512,8,0.068400346,0.101,,,0.289,,,0.239,0.343,0.596107981,17246,28931,,,0.170293022,,,0.136585212,0.207620098,0.260869565,6,23,0.151021274,0.378411613,181,52,28732,,,19.13490915,119,6219,15.69688443,22.57293387,,,,,,,,,,,,,18.50521021,14.93140002,22.07902039,,,,,,,0.07178207,1639,22833,0.061058666,0.082505474,0.000452457,13,28732,,,2210.153846,0.000417116,12,28769,,,2397.416667,0.001355626,39,28769,,,737.6666667,1827,,,,,,,,,1850,0.47,,,,,,,,,0.47,0.48,,,,,,,,0.33,0.48,0.926819461,18440,19896,0.91122531,0.942413612,0.648915769,4399,6779,0.578141416,0.719690123,0.033484479,480,14335,,,0.112,724,,0.069106383,0.154893617,,,,,,,,,,0.188295165,0.027646807,0.348943524,0.099414197,0.065464985,0.133363409,3.46409233,111956,32319,3.135325668,3.792858991,0.209500974,1398,6673,0.155805067,0.263196881,15.66197967,45,28732,,,72.70725096,103,141664,58.66569667,86.74880525,,,,,,,,,,,,,75.48992964,60.69390343,90.28595585,,,,9,,,,,1,,,,,0.095790378,1115,11640,0.076899975,0.114680781,0.083441418,0.063375455,0.103507382,0.006357388,0.001345235,0.011369542,0.009450172,0.003655313,0.015245031,0.846968721,11833,13971,0.820397763,0.873539679,,,,,,,,,,,,,0.860457153,0.837658704,0.883255601,0.267,,13971,0.231715013,0.302284987,76.38239816,,,75.39316888,77.37162744,,,,,,,,,,,,,76.30610399,75.29969365,77.31251434,,,,420.0697003,451,77943,378.9093272,461.2300735,,,,,,,,,,,,,425.2867568,382.7096904,467.8638231,,,,48.75161054,14,28717,26.65295914,81.79691863,,,,,,,,,,,,,42.80155642,21.36638275,76.58380745,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.117,,,0.1,0.136,0.175,,,0.152,0.201,0.102,,,0.087,0.12,49.9,12,24046,,,0.101,2920,,,,0.068400346,1966.099555,28744,,,21.1351948,18,85166,12.52605592,33.40271971,,,,,,,,,,,,,20.15265637,11.51898437,32.72665138,,,,0.378,,,0.361,0.394,0.081708962,1333,16314,0.068602579,0.094815345,0.047570258,325,6832,0.032080896,0.063059619,0.00097327,28,28769,,,1027.464286,0.91380597,306.125,335,,,0.079560155,123,1546,0.02538246,0.13373785,3.250801249,,,,,,,,2.802534041,3.313420013,3.139408163,,,,,,,,,3.209657872,0.036444704,,,,,1617.033,,,,,0.813468186,44478,54677,0.740880092,0.88605628,59377,,,53224.14894,65529.85106,,,,,,,147900,14423.40426,281376.5957,64107,49493.38298,78720.61702,65152,60564.76596,69739.23404,,,,,,,,,,,81.22236958,,,,,0.262660626,,59377,,,5.064715813,9,1777,,,,,,,,,,,,,,,,,,,,,,,,,,9.559168598,13,141664,4.939361906,16.6979438,9.176643325,,,,,,,,,,,,,10.25712427,5.300005787,17.9171319,,,,,,,,,,,,,,,,,,,,,,,,,,,9.567546881,19,198588,5.760288217,14.94090961,,,,,,,,,,,,,10.20874191,6.146329508,15.94221507,,,,30.66666667,,3000,,,92,,0.69572292,14965,21510,,,0.72,,,,,26.03992331,,,,,0.793588205,9258,11666,0.763984466,0.823191944,0.086060181,981,11399,0.064429294,0.107691068,0.851191497,9930,11666,0.83101733,0.871365664,28769,,,,,0.230560673,6633,28769,,,0.201362578,5793,28769,,,0.010984045,316,28769,,,0.004344955,125,28769,,,0.003441204,99,28769,,,0.000590914,17,28769,,,0.041294449,1188,28769,,,0.928742744,26719,28769,,,0.002886217,78,27025,0,0.007487273,0.504119017,14503,28769,,,0.504234212,14588,28931,, -39,163,39163,OH,Vinton County,2024,1,14349.52454,332,36026,11885.36756,16813.68152,0,,,,2,,,,2,,,,2,,,,2,14796.54917,12241.87089,17351.22745,,,,,2,,0.218,,,0.183,0.254,4.680808895,,,3.78042597,5.72542804,5.94742044,,,4.873329051,7.159733975,0.087866109,84,956,0.069920131,0.105812086,0,,,,,,,,,,,,,0.08,0.062516672,0.097483328,,,,,,,0.277,,,0.224,0.329,0.425,,,0.352,0.499,7.2,0.024093931,0.159,,,0.34,,,0.283,0.397,0.3096875,3964,12800,,,0.160235753,,,0.127991152,0.196729067,0.307692308,4,13,0.157450571,0.460702037,165.4,21,12696,,,25.91792657,72,2778,20.27918131,32.63933911,,,,,,,,,,,,,24.91506229,19.26930737,31.69806812,,,,,,,0.112423744,1161,10327,0.096934382,0.127913105,0.00015753,2,12696,,,6348,0.000238759,3,12565,,,4188.333333,0.001273378,16,12565,,,785.3125,1178,,,,,,,,,1186,0.36,,,,,,,,,0.36,0.38,,,,,,,,,0.38,0.802606871,7266,9053,0.757821645,0.847392097,0.51446281,1494,2904,0.411121267,0.617804353,0.049833272,269,5398,,,0.29,750,,0.192297872,0.387702128,,,,,,,,,,,,,0.239282931,0.161572587,0.316993274,5.002389381,113054,22600,3.322657671,6.68212109,0.259726225,721,2776,0.133208307,0.386244143,3.150598614,4,12696,,,140.03447,91,64984,112.74702,171.9312984,,,,,,,,,,,,,145.36509,117.0389027,178.4761185,,,,8.2,,,,,0,,,,,0.127394636,665,5220,0.083781983,0.171007289,0.092453194,0.053940966,0.130965422,0.019157088,0,0.041009868,0.014367816,0,0.02952291,0.823552894,4126,5010,0.769052423,0.878053366,,,,,,,,,,,,,0.698167445,0.637250002,0.759084889,0.572,,5010,0.473451512,0.670548488,70.92066309,,,69.295888,72.54543818,,,,,,,,,,,,,70.51406352,68.85612211,72.17200492,,,,668.1072699,332,36026,590.9739679,745.2405719,,,,,,,,,,,,,683.5885087,604.1463376,763.0306798,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.148,,,0.126,0.17,0.204,,,0.176,0.231,0.126,,,0.109,0.145,,,,,,0.159,2040,,,,0.024093931,323.7019619,13435,,,67.09158001,26,38753,43.82644754,98.30470953,,,,,,,,,,,,,69.74997317,45.56299822,102.1998715,,,,0.383,,,0.368,0.398,0.12436449,954,7671,0.10530066,0.143428319,0.078480114,221,2816,0.055841816,0.101118412,0.000159172,2,12565,,,6282.5,0.925,150.775,163,,,,,,,,3.169752332,,,,,,,,,3.198954107,3.111538079,,,,,,,,,3.108735029,0.052582655,,,,,413.7402,,,,,0.881713199,45887,52043,0.715839455,1.047586943,51015,,,44031.68085,57998.31915,,,,,,,,,,,,,50596,42676.17021,58515.82979,,,,,,,,,,,,,,,,0.305714006,,51015,,,10.26392962,7,682,,,,,,,,,,,,,,,,,,,,,,,,,,22.25844252,15,64984,12.16889765,37.34588439,23.08260495,,,,,,,,,,,,,23.07268517,12.61405169,38.71204522,,,,21.54376462,14,64984,11.77817659,36.14677632,,,,,,,,,,,,,22.36386,12.22653037,37.52275702,,,,28.58619287,26,90953,18.67345026,41.88539585,,,,,,,,,,,,,29.65294648,19.37028913,43.44843704,,,,11.53846154,,1300,,,15,,0.59673429,6030,10105,,,0.542,,,,,3.886028448,,,,,0.745689655,3806,5104,0.695198294,0.796181017,0.085905461,398,4633,0.051294498,0.120516424,0.752938872,3843,5104,0.699010715,0.806867028,12565,,,,,0.210505372,2645,12565,,,0.192837246,2423,12565,,,0.005730203,72,12565,,,0.004775169,60,12565,,,0.003740549,47,12565,,,0,0,12565,,,0.012335854,155,12565,,,0.958933546,12049,12565,,,0.001659063,20,12055,0,0.009630065,0.494548349,6214,12565,,,0.943203125,12073,12800,, -39,165,39165,OH,Warren County,2024,1,6260.22411,2710,676340,5891.976695,6628.471525,0,,,,2,2634.150401,1735.921713,3832.550536,,10544.50747,7709.4503,13379.56463,,3544.274582,2025.859161,5755.679872,1,6505.766594,6097.844739,6913.688449,,,,,2,,0.121,,,0.099,0.146,2.973453629,,,2.286845717,3.729016738,4.86300809,,,3.987897395,5.817890573,0.066030327,1093,16553,0.062247157,0.069813497,0,,,,0.07381258,0.060829224,0.086795937,0.085152838,0.059590701,0.110714976,0.079279279,0.056801501,0.101757058,0.064357526,0.060237399,0.068477652,,,,0.054662379,0.02939771,0.079927049,0.144,,,0.107,0.183,0.353,,,0.291,0.421,8.6,0.061041152,0.076,,,0.21,,,0.168,0.256,0.860070893,208427,242337,,,0.191895491,,,0.155912917,0.23077223,0.272727273,21,77,0.213920205,0.333559871,187.4,462,246553,,,7.610948331,426,55972,6.888195094,8.333701568,,,,,,,8.849557522,4.953030167,14.59599933,8.003201281,4.88856326,12.36029528,7.985803017,7.17098339,8.800622644,,,,10.77199282,6.384165638,17.02439274,0.051758329,10675,206247,0.044609392,0.058907265,0.000851744,210,246553,,,1174.061905,0.000432384,108,249778,,,2312.759259,0.002518236,629,249778,,,397.1033386,3144,,,,,,2052,2563,2351,3110,0.48,,,,,,0.38,0.53,0.45,0.48,0.53,,,,,,0.57,0.41,0.38,0.53,0.948297191,156378,164904,0.942877174,0.953717208,0.741363851,45476,61341,0.707579811,0.775147892,0.032794762,4027,122794,,,0.058,3354,,0.04012766,0.07587234,,,,0.049380031,0.015955274,0.082804787,0.050619278,0,0.113293219,0.127984344,0.046599266,0.209369423,0.051593786,0.038144598,0.065042975,3.731632492,188537,50524,3.52054597,3.942719013,0.135913191,7941,58427,0.117602623,0.154223759,7.868490751,194,246553,,,68.01499549,803,1180622,63.31060923,72.71938174,,,,16.07954013,8.308533022,28.08772066,63.64322082,41.94128355,92.59754489,31.52946572,15.73939569,56.41492351,74.64963873,69.31059088,79.98868658,,,,10.5,,,,,0,,,,,0.088023774,7405,84125,0.077189621,0.098857927,0.077244259,0.065592096,0.088896421,0.008249629,0.005089134,0.011410123,0.006002972,0.003658037,0.008347907,0.77537529,93128,120107,0.764169417,0.786581164,,,,0.56974359,0.508476336,0.631010843,0.821651631,0.791739989,0.851563273,0.692793932,0.610444501,0.775143363,0.752444763,0.741867903,0.763021622,0.403,,120107,0.381652713,0.424347287,78.41792652,,,78.07993506,78.75591798,,,,93.2800787,87.07976074,99.48039665,75.07420303,72.34736606,77.80104,96.68771783,81.75918758,111.6162481,78.04893607,77.69125954,78.40661259,,,,320.2472517,2710,676340,307.8628157,332.6316878,,,,129.3902292,91.10266223,178.3473869,495.5288529,400.3813593,590.6763464,123.0372514,72.91967287,194.4519018,332.1039449,318.5957379,345.6121519,,,,35.98672841,91,252871,28.9742689,44.18372803,,,,,,,128.7664177,61.7485024,236.8060268,,,,32.1756596,24.8846528,40.93532812,,,,4.619499149,76,16452,3.639639915,5.781992035,,,,,,,,,,,,,4.151190736,3.144071325,5.378349094,,,,,,,0.091,,,0.076,0.108,0.146,,,0.123,0.171,0.086,,,0.073,0.103,105.7,218,206290,,,0.076,18220,,,,0.061041152,12983.02569,212693,,,24.73709884,178,719567,21.1030159,28.37118178,,,,,,,,,,,,,27.08092272,22.94875865,31.21308679,,,,0.336,,,0.318,0.354,0.058878384,8650,146913,0.050537958,0.067218809,0.035442268,2215,62496,0.025910353,0.044974183,0.000828736,207,249778,,,1206.657005,0.920408507,3007.895,3268,,,0.0377096,515,13657,0.019757543,0.055661656,3.546836918,,,,,,3.98907111,3.203255943,3.327927538,3.520413088,3.492618736,,,,,,4.378849494,2.922228658,3.164915523,3.431938626,0.123046369,,,,,3542.2235,,,,,0.723919673,59588,82313,0.681663364,0.766175981,104523,,,99656.95745,109389.0426,29167,80.36170213,58253.6383,142868,130836.3404,154899.6596,94466,79690.34043,109241.6596,123828,100330.6383,147325.3617,100293,97227.29787,103358.7021,,,,,,,,,,,44.86967573,,,,,0.241717134,,104523,,,6.983655275,94,13460,,,2.021868035,33,1632154,1.391760923,2.839454443,,,,,,,,,,,,,2.000690238,1.329444134,2.891554439,,,,12.59830465,153,1180622,10.55759256,14.63901674,12.95927062,,,,,,,,,,,,,13.69119557,11.363339,16.01905214,,,,8.978318209,106,1180622,7.269097554,10.68753886,,,,,,,,,,,,,9.940031788,7.991785558,11.88827802,,,,7.597322312,124,1632154,6.260093331,8.934551293,,,,,,,,,,,,,8.217120621,6.715269741,9.718971501,,,,20.57142857,,28000,,,576,,0.808218771,136100,168395,,,0.778,,,,,46.50448729,,,,,0.789215079,70031,88735,0.778278917,0.80015124,0.078307944,6842,87373,0.067350837,0.089265051,0.940305404,83438,88735,0.932388962,0.948221846,249778,,,,,0.235172834,58741,249778,,,0.158052351,39478,249778,,,0.036596498,9141,249778,,,0.001993771,498,249778,,,0.073309099,18311,249778,,,0.001357205,339,249778,,,0.033934134,8476,249778,,,0.834649169,208477,249778,,,0.008015178,1842,229814,,,0.493546269,123277,249778,,,0.175173416,42451,242337,, -39,167,39167,OH,Washington County,2024,1,9113.771986,1121,162342,8224.794099,10002.74987,0,,,,2,,,,2,10480.59325,4213.742057,21594.02772,1,,,,2,9301.661307,8373.94539,10229.37722,,,,,2,,0.17,,,0.144,0.199,4.120098594,,,3.372239119,4.962164824,5.533785878,,,4.697242419,6.429669752,0.072602404,296,4077,0.064637249,0.080567558,0,,,,,,,,,,,,,0.07377892,0.065563974,0.081993867,,,,,,,0.232,,,0.191,0.277,0.454,,,0.401,0.506,7.6,0.040666065,0.133,,,0.302,,,0.257,0.349,0.784310117,46879,59771,,,0.169174805,,,0.140025086,0.19940325,0.351351351,13,37,0.265703518,0.435893311,207,123,59423,,,19.29006246,244,12649,16.86961983,21.71050508,,,,,,,,,,,,,19.92955932,17.36501756,22.49410107,,,,,,,0.08304772,3780,45516,0.071132826,0.094962613,0.000723626,43,59423,,,1381.930233,0.000611195,36,58901,,,1636.138889,0.002699445,159,58901,,,370.4465409,3055,,,,,,,3327,,3044,0.47,,,,,,0.45,0.57,,0.47,0.46,,,,,,0.38,0.39,,0.46,0.917566586,39170,42689,0.904315371,0.930817802,0.609317928,8174,13415,0.557448979,0.661186877,0.047161999,1253,26568,,,0.21,2360,,0.152808511,0.267191489,,,,0.066666667,0,0.93102987,0.174193548,0,0.601451378,0.227074236,0.032067656,0.422080815,0.211916699,0.175443111,0.248390287,4.515100944,110927,24568,4.067045251,4.963156637,0.212470147,2491,11724,0.172324421,0.252615873,12.11652054,72,59423,,,88.12955044,264,299559,77.49851263,98.76058825,,,,,,,,,,,,,90.04509289,79.01456902,101.0756168,,,,8.7,,,,,0,,,,,0.105422294,2615,24805,0.087537936,0.123306652,0.088599878,0.071517974,0.105681782,0.013706914,0.006931146,0.020482682,0.009070752,0.004194203,0.013947301,0.812695188,21599,26577,0.786966977,0.838423398,,,,,,,,,,,,,0.813681544,0.78736597,0.839997118,0.294,,26577,0.2610235,0.3269765,75.9972519,,,75.29213727,76.70236652,,,,,,,,,,,,,75.74676387,75.02103931,76.47248842,,,,465.728061,1121,162342,436.2042489,495.2518731,,,,,,,682.1966665,404.3129799,1078.164846,,,,471.3004646,440.9499332,501.6509961,,,,56.46952528,30,53126,38.09975157,80.6137586,,,,,,,,,,,,,57.30189915,38.07669584,82.81719864,,,,6.238003839,26,4168,4.074871213,9.140120941,,,,,,,,,,,,,6.298815823,4.076261489,9.298294708,,,,,,,0.124,,,0.107,0.142,0.188,,,0.166,0.213,0.109,,,0.094,0.125,95.6,49,51282,,,0.133,7960,,,,0.040666065,2512.268154,61778,,,25.7003341,46,178986,18.81587465,34.28064414,,,,,,,,,,,,,27.10665881,19.84548109,36.15648421,,,,0.359,,,0.339,0.376,0.091008255,3087,33920,0.076710382,0.105306127,0.060514496,741,12245,0.042642155,0.078386836,0.002597579,153,58901,,,384.9738562,0.925797504,667.5,721,,,,,,,,3.176873095,,,,,,,,,3.188170187,2.959417093,,,,,,,,,2.97826659,0.046078372,,,,,-106.8883833,,,,,0.707910933,39454,55733,0.641718058,0.774103807,59196,,,53499.48936,64892.51064,21490,9807.446809,33172.55319,88167,13990.82979,162343.1702,38438,15881.91489,60994.08511,81509,72743.21277,90274.78723,59193,55991.46809,62394.53192,,,,,,,,,,,47.89174742,,,,,0.263463748,,59196,,,10.13513514,30,2960,,,2.848455069,12,421281,1.4718383,4.975677766,,,,,,,,,,,,,2.998920389,1.549585926,5.238510398,,,,15.89133867,47,299559,11.45307913,21.48047336,15.68973057,,,,,,,,,,,,,15.80566865,11.29180141,21.52283465,,,,9.347073531,28,299559,6.211062481,13.50912373,,,,,,,,,,,,,9.145204747,5.973951367,13.39984386,,,,12.3433053,52,421281,9.218570788,16.18660271,,,,,,,,,,,,,12.74541165,9.489796133,16.75786251,,,,14,,5500,,,77,,0.669334448,32031,47855,,,0.659,,,,,41.04281463,,,,,0.740922752,18243,24622,0.725480218,0.756365286,0.094490163,2262,23939,0.077140181,0.111840145,0.829826984,20432,24622,0.810479669,0.849174299,58901,,,,,0.193731855,11411,58901,,,0.224834892,13243,58901,,,0.013055806,769,58901,,,0.002818288,166,58901,,,0.007707849,454,58901,,,0.00028862,17,58901,,,0.012240879,721,58901,,,0.946316701,55739,58901,,,0.001745539,99,56716,0,0.004403028,0.50589973,29798,58901,,,0.583376554,34869,59771,, -39,169,39169,OH,Wayne County,2024,1,8511.044455,1781,320908,7886.163059,9135.92585,0,,,,2,,,,2,15409.98891,8808.140136,25024.85655,1,,,,2,8544.273609,7897.376518,9191.1707,,,,,2,,0.168,,,0.139,0.2,3.755282794,,,2.950605714,4.662362942,5.2689855,,,4.274920644,6.360891065,0.063418023,639,10076,0.058659291,0.068176755,0,,,,,,,0.134020619,0.066223726,0.201817511,0.064516129,0.033939998,0.09509226,0.062152231,0.057303611,0.067000851,,,,0.128712871,0.063401768,0.194023975,0.209,,,0.167,0.256,0.376,,,0.306,0.45,8.2,0.048410955,0.101,,,0.284,,,0.232,0.339,0.648296748,75782,116894,,,0.180784328,,,0.144893579,0.220417839,0.316455696,25,79,0.258672483,0.374830816,233.9,273,116710,,,11.43583227,324,28332,10.19059721,12.68106734,,,,,,,,,,20.24291498,11.32980585,33.38760981,11.23859498,9.938344139,12.53884582,,,,13.08615049,6.761804917,22.85887137,0.142248971,13165,92549,0.12437663,0.160121311,0.000496958,58,116710,,,2012.241379,0.000489023,57,116559,,,2044.894737,0.003860706,450,116559,,,259.02,2515,,,,,,,1319,,2455,0.48,,,,,,,0.52,,0.48,0.48,,,,,,0.7,0.4,0.27,0.48,0.864705882,66297,76670,0.855292658,0.874119106,0.529789081,14041,26503,0.497014735,0.562563426,0.031626229,1894,59887,,,0.125,3409,,0.084489362,0.165510638,,,,,,,0.251879699,0.080857589,0.42290181,0.208144796,0.055217197,0.361072396,0.104388377,0.083405895,0.12537086,3.747834664,121591,32443,3.509218763,3.986450565,0.118100635,3293,27883,0.097519919,0.138681351,13.45214635,157,116710,,,89.63678142,520,580119,81.93234894,97.3412139,,,,,,,122.4807928,61.14197046,219.151971,,,,91.3729897,83.33156373,99.41441567,,,,9.6,,,,,1,,,,,0.115280289,5100,44240,0.102204062,0.128356517,0.08375114,0.071825366,0.095676913,0.018761302,0.01371692,0.023805684,0.023621157,0.017459138,0.029783177,0.751227739,40537,53961,0.731152836,0.771302641,,,,,,,0.784574468,0.653282485,0.915866451,0.555780933,0.434657456,0.67690441,0.759473862,0.739320196,0.779627527,0.236,,53961,0.217464775,0.254535225,76.40592851,,,75.89310892,76.9187481,,,,,,,71.17581741,65.94474791,76.40688692,93.0528605,75.5725941,110.5331269,76.31139274,75.78625222,76.83653325,,,,419.7884759,1781,320908,399.1663199,440.4106319,,,,,,,654.6948069,450.6617806,919.4349218,,,,423.3026966,402.0296436,444.5757497,,,,62.05201232,78,125701,49.04954074,77.44371966,,,,,,,,,,,,,61.20432627,47.71177493,77.32798422,,,,7.739028213,79,10208,6.127061516,9.645138241,,,,,,,,,,,,,7.668393782,6.021338471,9.626966166,,,,,,,0.12,,,0.101,0.14,0.177,,,0.15,0.205,0.101,,,0.086,0.119,75.4,73,96787,,,0.101,11830,,,,0.048410955,5544.022548,114520,,,26.71538634,93,348114,21.5627647,32.72815314,,,,,,,,,,,,,27.33700694,21.95386132,33.64053937,,,,0.371,,,0.35,0.388,0.136699107,8835,64631,0.118826767,0.154571448,0.152842307,4474,29272,0.114714647,0.190969966,0.000720665,84,116559,,,1387.607143,0.916767068,1141.375,1245,,,0.077751893,534,6868,0.048926059,0.106577727,3.300656886,,,,,,,,2.619477923,3.371257241,3.181599161,,,,,,,,2.970564952,3.228366482,0.077804688,,,,,2138.86791,,,,,0.710839621,41078,57788,0.675015394,0.746663848,70121,,,65029.76596,75212.23404,12885,10323.29787,15446.70213,81358,70427.2766,92288.7234,61308,48671.06383,73944.93617,59705,45397.59575,74012.40426,70636,68392.42553,72879.57447,,,,,,,,,,,68.1064252,,,,,0.275794698,,70121,,,7.254979554,55,7581,,,1.47664683,12,812652,0.763004965,2.579404843,,,,,,,,,,,,,1.313972388,0.630100834,2.416442005,,,,15.47898711,88,580119,12.31089781,19.21350438,15.16930147,,,,,,,,,,,,,15.10804349,11.86306364,18.96676509,,,,9.136056568,53,580119,6.843533298,11.95018693,,,,,,,,,,,,,9.57942634,7.154373782,12.56214317,,,,14.27425269,116,812652,11.67660376,16.87190163,,,,,,,,,,,,,14.71649075,11.99095852,17.44202298,,,,14.24,,12500,,,178,,0.627367813,54283,86525,,,0.758,,,,,31.83133981,,,,,0.753291408,33300,44206,0.739792184,0.766790633,0.084195149,3631,43126,0.071051423,0.097338875,0.826697733,36545,44206,0.811016487,0.84237898,116559,,,,,0.237115967,27638,116559,,,0.191147831,22280,116559,,,0.015777417,1839,116559,,,0.002350741,274,116559,,,0.01115315,1300,116559,,,0.00066061,77,116559,,,0.02256368,2630,116559,,,0.932763665,108722,116559,,,0.009522677,1041,109318,0.006351239,0.012694115,0.499197831,58186,116559,,,0.55840334,65274,116894,, -39,171,39171,OH,Williams County,2024,1,8455.436416,578,100507,7322.15978,9588.713052,0,,,,2,,,,2,,,,2,,,,2,8823.76388,7596.528306,10050.99945,,,,,2,,0.165,,,0.139,0.194,3.774338487,,,2.983955257,4.596575701,5.136003527,,,4.160352151,6.157383389,0.061288089,177,2888,0.05254003,0.070036147,0,,,,,,,,,,0.098039216,0.050919344,0.145159087,0.059107807,0.050195866,0.068019747,,,,,,,0.212,,,0.17,0.258,0.421,,,0.347,0.497,7.4,0.104795427,0.11,,,0.283,,,0.231,0.336,0.566869711,21032,37102,,,0.171675744,,,0.138860197,0.207881028,0.275862069,8,29,0.177833165,0.378478493,299.6,110,36716,,,24.21120412,188,7765,20.75026838,27.67213986,,,,,,,,,,20.50473186,10.91790614,35.06371596,24.92303181,21.17647362,28.66959001,,,,,,,0.070776415,2031,28696,0.060053011,0.081499819,0.000408541,15,36716,,,2447.733333,0.000545673,20,36652,,,1832.6,0.000873077,32,36652,,,1145.375,1871,,,,,,,,,1856,0.41,,,,,,,,,0.42,0.47,,,,,,,,0.43,0.47,0.910564063,23488,25795,0.890102575,0.931025551,0.593343792,5295,8924,0.5355111,0.651176484,0.034078984,617,18105,,,0.15,1166,,0.105914894,0.194085106,,,,,,,,,,0.126582279,0.027140287,0.22602427,0.182834217,0.130955496,0.234712938,3.503829787,102925,29375,3.197703931,3.809955644,0.187462034,1543,8231,0.138757592,0.236166476,16.34164942,60,36716,,,100.2391576,184,183561,85.75528923,114.7230259,,,,,,,,,,,,,103.4431801,88.11682409,118.7695362,,,,8.7,,,,,1,,,,,0.076318375,1165,15265,0.057839646,0.094797105,0.064545753,0.048059692,0.081031813,0.006223387,0.001011752,0.011435022,0.007206027,0.000269663,0.014142391,0.867711454,15060,17356,0.845193402,0.890229506,,,,,,,,,,0.771505376,0.713149882,0.829860871,0.868443316,0.837730218,0.899156415,0.199,,17356,0.169669026,0.228330974,76.46762424,,,75.53256949,77.40267898,,,,,,,,,,81.87693247,68.33997587,95.41388907,76.16770552,75.18062204,77.154789,,,,411.9138005,578,100507,376.3808526,447.4467485,,,,,,,,,,,,,420.910271,383.5532083,458.2673336,,,,49.73749655,18,36190,29.47759265,78.60668767,,,,,,,,,,,,,56.12197175,33.26143729,88.69691101,,,,6.837606838,20,2925,4.176587892,10.5601292,,,,,,,,,,,,,,,,,,,,,,0.119,,,0.102,0.138,0.176,,,0.151,0.201,0.103,,,0.088,0.12,112.6,35,31073,,,0.11,4060,,,,0.104795427,3944.709448,37642,,,20.9142244,23,109973,13.25782423,31.38160539,,,,,,,,,,,,,19.782198,12.08348047,30.55200038,,,,0.361,,,0.344,0.378,0.080221367,1667,20780,0.067114984,0.09332775,0.047259206,394,8337,0.031769844,0.062748568,0.00090036,33,36652,,,1110.666667,0.940975336,419.675,446,,,,,,,,3.095602671,,,,,,,,3.223372193,3.078160316,3.123424384,,,,,,,,3.016361046,3.121469394,0.040754479,,,,,2922.426814,,,,,0.792607644,40958,51675,0.70394168,0.881273608,60983,,,55281.7234,66684.2766,,,,74519,48987.76596,100050.234,,,,59853,21924.31915,97781.68085,60886,58534,63238,,,,,,,,,,,72.44021896,,,,,0.255743404,,60983,,,8.575512149,18,2099,,,,,,,,,,,,,,,,,,,,,,,,,,19.25490036,35,183561,13.25418743,27.041039,19.06723106,,,,,,,,,,,,,20.27355846,13.86709898,28.62021547,,,,12.52989469,23,183561,7.942878409,18.80099416,,,,,,,,,,,,,13.0042855,8.14971649,19.68864453,,,,20.17865874,52,257698,15.07038751,26.4616263,,,,,,,,,,,,,20.58615938,15.22975404,27.21599444,,,,38.15789474,,3800,,,145,,0.663736655,18651,28100,,,0.717,,,,,15.12499343,,,,,0.751121514,11553,15381,0.719579383,0.782663644,0.08226679,1247,15158,0.060834438,0.103699141,0.852220272,13108,15381,0.826512851,0.877927693,36652,,,,,0.217314198,7965,36652,,,0.203726945,7467,36652,,,0.013396268,491,36652,,,0.003410455,125,36652,,,0.005975117,219,36652,,,0.000381971,14,36652,,,0.054239878,1988,36652,,,0.913674561,33488,36652,,,0.005449904,190,34863,0.001322923,0.009576885,0.498826803,18283,36652,,,0.751010727,27864,37102,, -39,173,39173,OH,Wood County,2024,1,6423.42519,1616,369653,5928.889232,6917.961148,0,,,,2,,,,2,9382.724925,5251.439915,15475.37788,1,7235.747997,5257.505572,9713.653954,,6518.824438,5990.988707,7046.660168,,,,,2,,0.143,,,0.121,0.17,3.559615014,,,2.873479981,4.314737085,5.560605872,,,4.668858707,6.490836692,0.069544898,625,8987,0.064285585,0.074804212,0,,,,0.102362205,0.065083605,0.139640805,0.136585366,0.089575293,0.183595439,0.07959479,0.059413501,0.099776079,0.065220216,0.059704002,0.07073643,,,,0.107692308,0.054403739,0.160980876,0.166,,,0.131,0.209,0.407,,,0.348,0.47,7.8,0.080411179,0.107,,,0.249,,,0.209,0.297,0.682036779,90198,132248,,,0.192833536,,,0.158520384,0.228874447,0.263157895,20,76,0.204018888,0.324712429,323.8,429,132472,,,8.021592715,318,39643,7.139928693,8.903256737,,,,,,,,,,18.84700665,14.03283438,24.7803331,7.476976384,6.542615763,8.411337005,,,,12.60126013,6.889226171,21.14277329,0.058245475,6182,106137,0.04990505,0.066585901,0.000679389,90,132472,,,1471.911111,0.000326768,43,131592,,,3060.27907,0.002165785,285,131592,,,461.7263158,2948,,,,,,,,,2953,0.5,,,,,,0.42,0.52,0.48,0.5,0.53,,,,,,0.57,0.37,0.47,0.54,0.948191748,78131,82400,0.941408983,0.954974512,0.745971381,23146,31028,0.707372899,0.784569862,0.035148801,2433,69220,,,0.092,2398,,0.062212766,0.121787234,,,,0.058156028,0,0.164460814,0.108910891,0,0.260929438,0.192323566,0.120280522,0.264366609,0.093786526,0.074763076,0.112809976,4.62057241,139971,30293,4.273639219,4.9675056,0.183556908,4885,26613,0.157282184,0.209831632,11.77607343,156,132472,,,60.25107155,395,655590,54.30921314,66.19292996,,,,,,,,,,47.24161461,27.99837484,74.66211818,64.08586464,57.546958,70.62477127,,,,9.4,,,,,1,,,,,0.119853885,6070,50645,0.106362578,0.133345192,0.109052883,0.095741071,0.122364695,0.006002567,0.002960275,0.009044859,0.007601935,0.003830855,0.011373015,0.828831668,55235,66642,0.818162233,0.839501103,,,,0.805277525,0.756983149,0.853571901,0.775378867,0.710828827,0.839928906,0.82677442,0.788812354,0.864736486,0.82229413,0.809544039,0.835044222,0.238,,66642,0.219350242,0.256649759,77.68109564,,,77.23474863,78.12744265,,,,92.29862781,82.28658175,102.3106739,72.40075137,68.58698595,76.21451679,78.64845551,75.68706329,81.60984774,77.55303685,77.08700551,78.01906819,,,,354.83882,1616,369653,336.8267499,372.8508902,,,,,,,469.0159102,303.5223677,692.3600052,376.4504884,288.6224309,482.5925365,360.9620051,341.8671045,380.0569058,,,,36.42766074,48,131768,26.85888139,48.29779323,,,,,,,,,,,,,32.9567717,23.08251773,45.62606376,,,,4.904632153,45,9175,3.577472348,6.562783705,,,,,,,,,,,,,4.314173328,2.987690443,6.028624806,,,,,,,0.105,,,0.091,0.124,0.166,,,0.144,0.191,0.1,,,0.086,0.117,78.2,89,113836,,,0.107,14160,,,,0.080411179,10090.63805,125488,,,21.55161485,85,394402,17.21466448,26.64890551,,,,,,,,,,,,,22.86289786,18.10077154,28.49399232,,,,0.344,,,0.325,0.361,0.06559072,5202,79310,0.056058805,0.075122635,0.038149552,1077,28231,0.027426148,0.048872956,0.001063895,140,131592,,,939.9428571,0.93735332,1453.835,1551,,,0.04552493,441,9687,0.015107712,0.075942149,3.280727407,,,,,,4.161477003,2.716588234,3.06162888,3.326798824,3.186576344,,,,,,4.330646051,2.745732579,2.879156515,3.23645729,0.062075323,,,,,2281.48605,,,,,0.736670211,48495,65830,0.676154196,0.797186226,67254,,,62398.68085,72109.31915,,,,114375,78315.76596,150434.234,50184,32097.19149,68270.80851,62160,49025.02128,75294.97872,71683,68704.2766,74661.7234,,,,,,,,,,,51.06463934,,,,,0.375665388,,67254,,,9.218612818,63,6834,,,,,,,,,,,,,,,,,,,,,,,,,,12.12184135,77,655590,9.484594297,15.26545302,11.74514559,,,,,,,,,,,,,13.25969845,10.29667468,16.80982733,,,,7.321649202,48,655590,5.398406142,9.70744462,,,,,,,,,,,,,7.815349346,5.700569442,10.45755232,,,,10.0487254,92,915539,8.100690934,12.32386966,,,,,,,,,,,,,10.54638985,8.424081627,13.04077437,,,,46.61290323,,12400,,,578,,0.662196317,67597,102080,,,0.727,,,,,61.48239892,,,,,0.64075431,34454,53771,0.623015251,0.658493369,0.119453665,6262,52422,0.105497313,0.133410016,0.905320712,48680,53771,0.89307859,0.917562834,131592,,,,,0.200855675,26431,131592,,,0.166096723,21857,131592,,,0.026392182,3473,131592,,,0.003305672,435,131592,,,0.020745942,2730,131592,,,0.000486352,64,131592,,,0.062746976,8257,131592,,,0.869946501,114478,131592,,,0.005086633,635,124837,0.003267087,0.006906179,0.503609642,66271,131592,,,0.300707761,39768,132248,, -39,175,39175,OH,Wyandot County,2024,1,8771.231523,369,59445,7321.927197,10220.53585,0,,,,2,,,,2,,,,2,,,,2,8538.986113,7080.719432,9997.252794,,,,,2,,0.154,,,0.13,0.18,3.70577764,,,2.904996964,4.58354795,5.268290522,,,4.246177675,6.387836269,0.072519084,114,1572,0.059698481,0.085339687,0,,,,,,,,,,,,,0.071093226,0.058049027,0.084137425,,,,,,,0.198,,,0.159,0.241,0.343,,,0.275,0.422,8.7,0.016947141,0.094,,,0.263,,,0.218,0.315,0.354246575,7758,21900,,,0.18291867,,,0.148992293,0.223819053,0.181818182,4,22,0.079048597,0.307478905,230.3,50,21708,,,15.78128473,71,4499,12.3253143,19.90594335,,,,,,,,,,,,,15.90797846,12.27744193,20.27602443,,,,,,,0.067417034,1162,17236,0.05669363,0.078140438,0.000276396,6,21708,,,3618,0.000278203,6,21567,,,3594.5,0.000788241,17,21567,,,1268.647059,2592,,,,,,,,,2585,0.47,,,,,,,,,0.47,0.45,,,,,,,,,0.45,0.939834431,14418,15341,0.928082081,0.95158678,0.575646469,2983,5182,0.497784089,0.653508849,0.028981109,382,13181,,,0.109,506,,0.07087234,0.14712766,,,,,,,,,,0.072961373,0,0.296359488,0.051537071,0.015865027,0.087209114,3.791945648,115533,30468,3.300197202,4.283694094,0.226426799,1095,4836,0.148821622,0.304031976,20.26902524,44,21708,,,97.10961477,106,109155,78.62266037,115.5965692,,,,,,,,,,,,,95.7567199,77.82633683,116.5803706,,,,8.8,,,,,0,,,,,0.069230769,630,9100,0.049851614,0.088609924,0.061393805,0.043920752,0.078866859,0.008681319,0.001666916,0.015695722,0.001538462,0,0.00344431,0.867821919,9415,10849,0.836697088,0.89894675,,,,,,,,,,,,,0.842686101,0.810671185,0.874701017,0.278,,10849,0.236760008,0.319239993,76.10615274,,,74.94959338,77.26271209,,,,,,,,,,,,,76.15725714,74.99319581,77.32131848,,,,439.1269042,369,59445,391.4839586,486.7698498,,,,,,,,,,,,,437.7126271,389.2191351,486.2061191,,,,65.54000281,14,21361,35.83132942,109.9649882,,,,,,,,,,,,,61.16831481,31.60656086,106.8487361,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.114,,,0.097,0.131,0.171,,,0.148,0.197,0.097,,,0.082,0.113,27.2,5,18392,,,0.094,2070,,,,0.016947141,383.2595941,22615,,,24.54326518,16,65191,14.02859667,39.856725,,,,,,,,,,,,,21.09807358,11.23383562,36.07834838,,,,0.376,,,0.357,0.395,0.074701115,931,12463,0.061594732,0.087807498,0.04887293,245,5013,0.033383569,0.064362292,0.000788241,17,21567,,,1268.647059,0.952,238,250,,,,,,,,3.237205369,,,,,,,,,3.254011945,3.122306776,,,,,,,,,3.160781738,0.042111156,,,,,2463.772667,,,,,0.766357718,41673,54378,0.711310494,0.821404942,65631,,,56993.89362,74268.10638,,,,,,,,,,82003,59396.87234,104609.1277,67871,61962.40426,73779.59575,,,,,,,,,,,,,,,,0.237631607,,65631,,,10.71723001,13,1213,,,,,,,,,,,,,,,,,,,,,,,,,,18.52346892,20,109155,11.15233833,28.92669126,18.32256882,,,,,,,,,,,,,18.31720224,10.85593493,28.94907655,,,,10.07741285,11,109155,5.030608188,18.03127526,,,,,,,,,,,,,9.672395949,4.63828982,17.78788053,,,,22.1475286,34,153516,15.33780739,30.94895131,,,,,,,,,,,,,21.9673099,15.02562371,31.01128713,,,,36.95652174,,2300,,,85,,0.674163954,11390,16895,,,0.731,,,,,19.38197781,,,,,0.735804943,6609,8982,0.709543305,0.762066582,0.064146621,560,8730,0.042462402,0.08583084,0.836784681,7516,8982,0.810849031,0.86272033,21567,,,,,0.219270181,4729,21567,,,0.208188436,4490,21567,,,0.004590346,99,21567,,,0.003292067,71,21567,,,0.007186906,155,21567,,,0.000370937,8,21567,,,0.032967033,711,21567,,,0.942736588,20332,21567,,,0.004111643,85,20673,0,0.01014049,0.502619743,10840,21567,,,0.697351598,15272,21900,, -40,000,40000,OK,Oklahoma,2024,,10334.03375,71073,11128420,10222.38509,10445.68241,0,15183.12324,14726.42806,15639.81841,,4422.782214,3943.939592,4901.624837,,15278.20289,14774.45513,15781.95064,,7120.738851,6844.920379,7396.557324,,9832.776505,9695.309724,9970.243285,,18592.10818,15411.03054,21773.18582,,,0.192,,,0.179,0.205,3.767833513,,,3.479311788,4.056355239,5.466942987,,,5.104051904,5.82983407,0.082894737,28665,345800,0.081975734,0.083813739,0,0.071714018,0.068888354,0.074539682,0.082311347,0.076649145,0.087973548,0.150762884,0.146580409,0.154945358,0.071415434,0.069250847,0.073580022,0.076132175,0.074952698,0.077311651,0.100428659,0.085850267,0.115007051,0.09523994,0.091659283,0.098820596,0.175,,,0.162,0.189,0.4,,,0.382,0.419,5.6,0.088662881,0.141,,,0.273,,,0.257,0.288,0.705499106,2793320,3959353,,,0.138162419,,,0.12487336,0.152619068,0.266785502,898,3366,0.258271654,0.275358328,519.5,20709,3986639,,,26.80626472,24318,907176,26.46934343,27.143186,30.19645384,29.09779385,31.29511384,4.073819574,3.244774551,5.05011229,30.22743172,28.98937775,31.4654857,35.86287642,34.88301129,36.84274154,22.31537769,21.89831296,22.73244241,65.92238171,54.31917262,77.5255908,35.75199093,34.4140301,37.08995176,0.168521884,547685,3249934,0.163755926,0.173287841,0.000590472,2354,3986639,,,1693.559473,0.000640579,2575,4019800,,,1561.087379,0.004257177,17113,4019800,,,234.8974464,3069,,,,,4372,1715,4790,2909,2882,0.4,,,,,0.35,0.34,0.4,0.26,0.41,0.42,,,,,0.41,0.44,0.31,0.31,0.42,0.889483934,2331582,2621275,0.887826735,0.891141134,0.602112716,630123,1046520,0.596338887,0.607886546,0.03019849,56986,1887048,,,0.197,184552,,0.188659575,0.205340426,0.2325092,0.220800112,0.244218288,0.181851147,0.155794571,0.207907723,0.365363129,0.34858486,0.382141397,0.283210496,0.272298272,0.294122721,0.146391696,0.141336163,0.151447229,4.584794215,121089,26411,4.532758964,4.636829465,0.257146715,243799,948093,0.251944091,0.262349338,11.26512835,4491,3986639,,,97.94257457,19391,19798336,96.56400882,99.32114032,111.2182458,106.148763,116.2877286,32.82735438,27.57388355,38.08082521,109.8620598,104.5022171,115.2219025,45.3590029,42.54762277,48.17038303,109.1648129,107.3575276,110.9720981,89.41190044,60.75104837,126.9130556,8.7,,,,,0.74025974,,,,,0.133244508,199010,1493570,0.130551746,0.135937271,0.102538741,0.100133962,0.104943519,0.026858467,0.025790759,0.027926174,0.010903406,0.010119278,0.011687534,0.796578765,1426479,1790757,0.794237038,0.798920493,0.805922244,0.798890071,0.812954418,0.73285242,0.713541651,0.752163188,0.772785475,0.762146655,0.783424296,0.760365694,0.752289143,0.768442245,0.807655742,0.804575043,0.810736442,0.279,,1790757,0.275847616,0.282152385,74.40160917,,,74.31338443,74.48983392,70.34651929,70.02370654,70.66933204,83.93334445,82.95694709,84.9097418,70.35837474,70.00330598,70.7134435,80.12395357,79.55942774,80.68847939,74.74531899,74.63954146,74.85109652,68.86553246,65.55389677,72.17716814,523.1764352,71073,11128420,519.2053437,527.1475267,739.6859815,722.4132566,756.9587064,213.9666299,196.3242937,231.6089661,707.3015058,689.5722269,725.0307848,359.6111745,346.2545385,372.9678104,507.6558116,502.9982873,512.3133358,955.2906023,794.2826643,1116.29854,62.92799512,2673,4247712,60.5423794,65.31361084,79.81359357,71.26665597,88.36053116,47.08149478,34.07311122,63.4184645,114.6970063,103.2398249,126.1541877,53.6047894,48.37759102,58.83198779,56.65892942,53.53164852,59.78621032,140.9301389,77.04781836,236.4568263,7.053211135,2475,350904,6.775332373,7.331089896,8.801791027,7.783466565,9.820115488,5.039991235,3.689907024,6.722642019,13.68293106,12.33183229,15.03402984,7.310900741,6.585305116,8.036496365,5.553522828,5.226517558,5.880528099,,,,8.681583205,7.534371253,9.828795157,0.118236553,,,0.107757997,0.129586072,0.1787795,,,0.164694921,0.193789139,0.116,,,0.106,0.125,210.2,6948,3305559,,,0.141,561640,,,,0.088662881,332605.5876,3751351,,,19.850067,2367,11924393,19.05038206,20.64975195,25.30376927,22.19798562,28.40955292,5.016087309,2.742341609,8.416142171,26.58840248,23.18890765,29.9878973,7.659189628,6.187140774,9.131238483,21.42794749,20.39275353,22.46314145,,,,0.338449667,,,0.320637513,0.35673174,0.206277879,476170,2308391,0.200320433,0.212235326,0.07998774,79077,988614,0.074030294,0.085945187,0.001217971,4896,4019800,,,821.0375817,0.799232258,41926.925,52459,,,0.08146004,18039,221446,0.076515307,0.086404773,2.93946532,,,,,,3.132016386,2.436575452,2.563640084,3.168307438,2.935061544,,,,,,3.259526104,2.284311047,2.577964098,3.184573549,0.174484969,,,,,-3686.375,,,,,0.757609207,41867,55262,0.750326939,0.764891475,59632,,,58820.59575,60443.40426,55468,54271.74468,56664.25532,68356,63880.76596,72831.23404,42145,41028.57447,43261.42553,53453,52136.40426,54769.59575,66199,65481.7234,66916.2766,,,,,,0.559262703,389187,695893,,,56.68005614,,,,,0.29030506,,,,,15.8045977,,,,,8.015710068,2215,27633235,7.681890949,8.349529187,10.3089881,8.999252499,11.61872369,4.797812198,3.237063742,6.849175239,32.27550606,29.81683666,34.73417547,6.722060438,5.795053895,7.649066981,5.410652444,5.071198546,5.750106342,,,,20.74297208,4108,19798336,20.09566826,21.39027589,20.74921852,22.46900729,20.12612134,24.81189323,9.290523513,6.776571602,12.43145142,12.31613713,10.5113108,14.12096345,9.527663993,8.158074411,10.89725357,23.25048922,22.40073735,24.10024109,,,,18.9157311,3745,19798336,18.30989759,19.52156461,19.48875697,17.36664788,21.61086607,7.003168934,4.790162367,9.886384982,36.00807289,32.93955885,39.07658693,8.75428756,7.519198642,9.989376478,19.52598358,18.76163436,20.29033279,,,,17.60199267,4864,27633235,17.10731635,18.096669,25.03611395,22.99503844,27.07718945,4.957739271,3.368543301,7.037115156,18.03918012,16.20106798,19.87729227,11.54730184,10.33231422,12.76228946,18.37736972,17.7517684,19.00297105,28.53192283,15.19204726,48.79045699,,,,,,,,0.546501506,1560699,2855800,,,,,,,,74.04109199,,,,,0.659401554,1004078,1522711,0.656180337,0.662622772,0.114900877,167831,1460659,0.112429482,0.117372272,0.856178881,1303713,1522711,0.85348161,0.858876152,4019800,,,,,0.237112792,953146,4019800,,,0.164409921,660895,4019800,,,0.074845266,300863,4019800,,,0.095188318,382638,4019800,,,0.025813473,103765,4019800,,,0.002507339,10079,4019800,,,0.121073934,486693,4019800,,,0.634194239,2549334,4019800,,,0.019151331,71301,3723031,0.018466259,0.019836404,0.501347828,2015318,4019800,,,0.353780529,1400742,3959353,, -40,001,40001,OK,Adair County,2024,1,14662.1306,519,59457,12839.50307,16484.75812,0,18698.58145,15622.00152,21775.16137,,,,,2,,,,2,,,,2,13161.04367,10325.54119,15996.54616,,,,,2,,0.289,,,0.256,0.327,5.390892725,,,4.425108138,6.433837454,6.581806803,,,5.377339895,7.82586067,0.078327727,163,2081,0.066783468,0.089871986,0,0.072847682,0.0571801,0.088515265,,,,,,,,,,0.07518797,0.055145734,0.095230206,,,,0.132596685,0.083189097,0.182004274,0.302,,,0.258,0.351,0.43,,,0.351,0.511,6.6,0.051649244,0.175,,,0.376,,,0.323,0.437,0.157630162,3073,19495,,,0.126602568,,,0.098832496,0.15831756,0.366666667,11,30,0.271290675,0.459572241,551.1,107,19414,,,49.82206406,252,5058,43.6706138,55.97351432,49.62286622,40.92359421,58.32213822,,,,,,,44.11764706,28.26700892,65.64356175,54.01111994,41.94174802,68.47196438,,,,48.92966361,33.46785369,69.07408575,0.200969005,3028,15067,0.179522197,0.222415814,0.000257546,5,19414,,,3882.8,0.000255415,5,19576,,,3915.2,0.002503065,49,19576,,,399.5102041,5556,,,,,6194,,,4829,5056,0.32,,,,,0.42,,,,0.27,0.37,,,,,0.46,,,,0.32,0.817520532,10452,12785,0.798707028,0.836334036,0.349423323,1636,4682,0.304241993,0.394604654,0.033480586,288,8602,,,0.283,1438,,0.180531915,0.385468085,0.348472669,0.287960996,0.408984342,0.176470588,0,0.871420874,,,,0.431724138,0.311188582,0.552259694,0.239599384,0.150807118,0.32839165,5.112199729,86616,16943,4.461862896,5.762536561,0.305469954,1586,5192,0.24951786,0.361422048,9.271659627,18,19414,,,112.5016271,121,107554,92.45588263,132.5473716,127.5398012,96.84631823,164.8747686,,,,,,,,,,120.775807,89.9255212,158.7978814,,,,8.7,,,,,0,,,,,0.165137615,1260,7630,0.141030054,0.189245175,0.107734057,0.085396951,0.130071163,0.043250328,0.031391643,0.055109013,0.02293578,0.014229984,0.031641576,0.805575209,5693,7067,0.777046182,0.834104235,0.808442852,0.757998438,0.858887265,,,,,,,,,,0.798003802,0.721801989,0.874205616,0.391,,7067,0.346530144,0.435469856,70.874371,,,69.61615365,72.13258835,67.06016194,65.25324513,68.86707874,,,,,,,,,,72.17055825,70.21319071,74.12792579,,,,722.921916,519,59457,658.4059116,787.4379204,911.0612875,795.15302,1026.969555,,,,,,,,,,666.409776,573.5830471,759.2365049,,,,59.70149254,15,25125,33.41447217,98.46853282,,,,,,,,,,,,,,,,,,,9.541984733,20,2096,5.828492169,14.73682152,,,,,,,,,,,,,,,,,,,,,,0.173,,,0.152,0.197,0.223,,,0.197,0.254,0.155,,,0.135,0.178,89.5,14,15644,,,0.175,3480,,,,0.051649244,1171.559802,22683,,,22.02539213,14,63563,12.04148683,36.95486544,37.04115272,17.76267251,68.11999867,,,,,,,,,,,,,,,,0.384,,,0.373,0.395,0.259876065,2684,10328,0.230088831,0.289663299,0.074635801,374,5011,0.053188993,0.09608261,0.000970576,19,19576,,,1030.31579,0.887580645,275.15,310,,,0.208409506,228,1094,0.133101798,0.283717214,2.75640782,,,,,,,,2.732431813,2.730648827,2.755613849,,,,,,,,2.693560611,2.836375504,0.113925613,,,,,-11370.02927,,,,,0.835022483,35840,42921,0.719501206,0.95054376,47799,,,42825.7234,52772.2766,44476,36108.17021,52843.82979,86685,71891.46809,101478.5319,,,,50568,39662.29787,61473.70213,45513,37391.80851,53634.19149,,,,,,0.854480287,3576,4185,,,,,,,,0.277851001,,47799,,,13.86001386,20,1443,,,11.20957958,17,151656,6.529993188,17.94762279,,,,,,,,,,,,,,,,,,,18.32173033,19,107554,10.85861856,28.95623289,17.66554475,,,,,,,,,,,,,34.02200514,17.57966652,59.42959619,,,,17.66554475,19,107554,10.63581193,27.5869364,,,,,,,,,,,,,28.41783693,14.68391103,49.64024214,,,,23.07854618,35,151656,16.07505302,32.096671,26.65454146,15.52725265,42.67650295,,,,,,,,,,21.55815728,11.4788108,36.8651055,,,,,,,,,,,0.444806008,7108,15980,,,0.395,,,,,7.776015742,,,,,0.685601636,4695,6848,0.659987418,0.711215853,0.110828026,696,6280,0.086340429,0.135315622,0.548627336,3757,6848,0.519068883,0.57818579,19576,,,,,0.264252146,5173,19576,,,0.158203923,3097,19576,,,0.007355946,144,19576,,,0.453667756,8881,19576,,,0.011289334,221,19576,,,0.000664079,13,19576,,,0.081170821,1589,19576,,,0.38588067,7554,19576,,,0.006867234,126,18348,0.002163809,0.011570658,0.496935023,9728,19576,,,1,19495,19495,, -40,003,40003,OK,Alfalfa County,2024,1,7566.637341,88,15504,5067.495781,10866.9534,0,,,,2,,,,2,,,,2,,,,2,8187.127044,5245.646779,12181.79607,1,,,,2,,0.178,,,0.149,0.209,3.793920064,,,2.97394448,4.698018552,4.90338192,,,3.878994461,5.991314687,0.056818182,20,352,0.032634294,0.081002069,1,,,,,,,,,,,,,0.057877814,0.031924934,0.083830693,,,,,,,0.184,,,0.145,0.225,0.376,,,0.298,0.459,7.1,0.148357987,0.106,,,0.277,,,0.226,0.332,0.31724864,1808,5699,,,0.146071387,,,0.114847076,0.181549039,0.3,3,10,0.129013968,0.476732101,175.1,10,5710,,,19.91150443,18,904,11.80081945,31.46876136,,,,,,,,,,,,,23.22404372,13.5288613,37.18394374,,,,,,,0.167082986,602,3603,0.143253199,0.190912774,0.000350263,2,5710,,,2855,0.000532198,3,5637,,,1879,0.000177399,1,5637,,,5637,1895,,,,,,,,,1915,0.41,,,,,,,,,0.41,0.34,,,,,,,,,0.34,0.874382498,3717,4251,0.84447898,0.904286017,0.484984026,759,1565,0.404129977,0.565838074,0.020044543,54,2694,,,0.179,194,,0.113468085,0.244531915,,,,,,,,,,0.105263158,0,0.3819775,0.168171558,0.077967404,0.258375711,4.042853461,125474,31036,2.888106959,5.197599962,0.146167558,164,1122,0.0717905,0.220544616,22.76707531,13,5710,,,104.1992289,30,28791,70.30278219,148.7508784,,,,,,,,,,,,,121.1817308,81.157307,174.0371796,,,,8.1,,,,,1,,,,,0.089709763,170,1895,0.061949114,0.117470411,0.057233704,0.027716664,0.086750745,0.022691293,0.005986266,0.03939632,0.01055409,0.000267151,0.020841028,0.818094322,1700,2078,0.778669263,0.85751938,,,,,,,,,,,,,0.76,0.621408506,0.898591494,0.264,,2078,0.201053717,0.326946283,78.20841891,,,75.59596729,80.82087053,,,,,,,,,,,,,77.75961909,74.82942635,80.68981184,,,,393.2356442,88,15504,312.2858633,488.7560008,,,,,,,,,,,,,392.1853348,303.3161095,498.9559052,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.116,,,0.098,0.134,0.166,,,0.142,0.19,0.102,,,0.085,0.119,428,21,4907,,,0.106,610,,,,0.148357987,837.0357622,5642,,,,,,,,,,,,,,,,,,,,,,,,,,0.327,,,0.312,0.343,0.206730769,516,2496,0.174560557,0.238900982,0.079896907,93,1164,0.052492652,0.107301163,0.000709597,4,5637,,,1409.25,,,,,,,,,,,3.074831193,,,,,,,,,3.0281796,3.380847756,,,,,,,,,3.312487344,0.056170856,,,,,4136.321,,,,,0.76515931,42386,55395,0.555237145,0.975081476,58045,,,50987.80851,65102.19149,104063,24688.3617,183437.6383,,,,,,,115341,15364.31915,215317.6809,67361,58185.34043,76536.65957,,,,,,0.505868545,431,852,,,,,,,,0.275527608,,58045,,,10.34482759,3,290,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,32.10986514,13,40486,17.09715085,54.9088473,,,,,,,,,,,,,35.5481826,18.36826468,62.09552107,,,,,,,,,,,0.497689769,2262,4545,,,0.462,,,,,0.103535879,,,,,0.79661017,1457,1829,0.758525633,0.834694706,0.054513482,93,1706,0.018734393,0.090292571,0.855112083,1564,1829,0.812121927,0.898102239,5637,,,,,0.195494057,1102,5637,,,0.189994678,1071,5637,,,0.056058187,316,5637,,,0.045236828,255,5637,,,0.00532198,30,5637,,,0.001419195,8,5637,,,0.073265922,413,5637,,,0.799361362,4506,5637,,,0.006635945,36,5425,0,0.019406562,0.375909172,2119,5637,,,1,5699,5699,, -40,005,40005,OK,Atoka County,2024,1,11858.47233,283,38340,9712.615938,14004.32873,0,,,,2,,,,2,,,,2,,,,2,11925.19059,9214.434206,14635.94697,,,,,2,,0.23,,,0.2,0.266,4.618683105,,,3.752544029,5.64206088,5.735489912,,,4.660653637,6.999465991,0.08496732,91,1071,0.068267738,0.101666902,0,0.041841004,0.016456016,0.067225992,,,,,,,,,,0.096439169,0.074153199,0.11872514,,,,,,,0.246,,,0.206,0.293,0.408,,,0.326,0.493,6.1,0.149855868,0.15,,,0.328,,,0.275,0.388,0.291168776,4118,14143,,,0.135276637,,,0.105762948,0.169221608,0.363636364,12,33,0.27296452,0.452301555,467.7,67,14324,,,46.36728733,127,2739,38.30300174,54.43157292,50.4587156,34.73345806,70.86279705,,,,,,,,,,45.16938519,35.34226204,56.88336515,,,,62.04379562,36.14279733,99.33812707,0.217832004,2321,10655,0.194002217,0.241661791,0.000139626,2,14324,,,7162,0.000210349,3,14262,,,4754,0.011358856,162,14262,,,88.03703704,6904,,,,,8677,,,,6760,0.3,,,,,0.35,,,,0.29,0.25,,,,,0.38,,0.25,,0.24,0.827060932,8307,10044,0.801873993,0.852247871,0.416559527,1620,3889,0.367271186,0.465847868,0.038588969,198,5131,,,0.237,695,,0.146446809,0.327553192,0.295409182,0.172789112,0.418029252,,,,,,,0.199004975,0.054825579,0.343184371,0.200907323,0.1492702,0.252544447,4.96615054,101672,20473,4.25271933,5.679581749,0.245740498,750,3052,0.188842129,0.302638867,11.17006423,16,14324,,,94.66572957,66,69719,73.21446839,120.438019,,,,,,,,,,,,,102.2557621,75.89619759,134.8114745,,,,8.8,,,,,1,,,,,0.129807692,675,5200,0.103748043,0.155867342,0.080817916,0.060397567,0.101238266,0.026923077,0.014673787,0.039172367,0.026923077,0.013736687,0.040109467,0.784687057,3874,4937,0.744324384,0.82504973,0.794871795,0.656322298,0.933421292,,,,,,,,,,0.758208955,0.698004177,0.818413733,0.344,,4937,0.294642994,0.393357006,74.03052912,,,72.36265271,75.69840554,88.66377306,74.44972014,102.877826,,,,,,,,,,73.7023509,71.7188317,75.68587009,,,,563.03416,283,38340,493.5259847,632.5423354,,,,,,,,,,,,,558.4184853,477.721258,639.1157126,,,,79.8780045,11,13771,39.87481205,142.9238146,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.145,,,0.126,0.168,0.198,,,0.174,0.229,0.122,,,0.105,0.143,74.8,9,12024,,,0.15,2110,,,,0.149855868,2125.255915,14182,,,,,,,,,,,,,,,,,,,,,,,,,,0.366,,,0.35,0.38,0.264733271,1990,7517,0.233754548,0.295711995,0.107294833,353,3290,0.077507599,0.137082067,0.000631048,9,14262,,,1584.666667,0.858059211,130.425,152,,,,,,,,3.326743311,,,,,,,,,3.32320866,3.268106205,,,,,,,,,3.39373596,0.053616793,,,,,-8063.4235,,,,,0.827704788,37548,45364,0.707544535,0.947865041,46160,,,40443.23404,51876.76596,47841,36346.70213,59335.29787,,,,,,,,,,51438,47570.42553,55305.57447,,,,,,0.757074445,1739,2297,,,,,,,,0.293154246,,46160,,,11.55327343,9,779,,,10.27516903,10,97322,4.92734294,18.89640168,,,,,,,,,,,,,,,,,,,22.93211909,16,69719,12.83493297,37.82304303,22.94926778,,,,,,,,,,,,,20.89097065,10.01803245,38.41923883,,,,18.64628007,13,69719,9.928358828,31.88570679,,,,,,,,,,,,,,,,,,,23.63288876,23,97322,14.98122422,35.46093678,,,,,,,,,,,,,24.76437426,14.4261606,39.65016216,,,,,,,,,,,0.506247064,5389,10645,,,0.478,,,,,36.47109063,,,,,0.768770627,3727,4848,0.738443407,0.799097847,0.085228527,386,4529,0.062704408,0.107752647,0.734117162,3559,4848,0.701939187,0.766295137,14262,,,,,0.209858365,2993,14262,,,0.192820081,2750,14262,,,0.052657411,751,14262,,,0.15299397,2182,14262,,,0.008834666,126,14262,,,0.000420698,6,14262,,,0.045575656,650,14262,,,0.674028888,9613,14262,,,0.010511406,141,13414,0.002751089,0.018271723,0.451128874,6434,14262,,,1,14143,14143,, -40,007,40007,OK,Beaver County,2024,1,10240.66215,85,14147,7246.902032,14056.1089,0,,,,2,,,,2,,,,2,,,,2,11456.20096,7413.84922,16911.61256,1,,,,2,,0.186,,,0.158,0.215,3.846088244,,,3.058827118,4.747473876,5.144071172,,,4.166643677,6.287516835,0.061170213,23,376,0.036947344,0.085393081,1,,,,,,,,,,0.087591241,0.040252048,0.134930434,0.048034935,0.020338272,0.075731597,,,,,,,0.168,,,0.136,0.206,0.38,,,0.305,0.46,7.9,0.11877336,0.083,,,0.286,,,0.238,0.34,0.027134086,137,5049,,,0.142324872,,,0.113300065,0.176642794,0.133333333,2,15,0.028850285,0.292021979,261,13,4980,,,12.30992035,17,1381,7.170982237,19.70937496,,,,,,,,,,,,,,,,,,,,,,0.237833791,953,4007,0.210429536,0.265238046,,0,4980,,,,0.000199362,1,5016,,,5016,,0,5016,,,,5142,,,,,,,,,5356,0.27,,,,,,,,,0.28,0.18,,,,,,,,,0.19,0.854738707,2895,3387,0.823778928,0.885698486,0.557983193,664,1190,0.47439102,0.641575367,0.018775817,50,2663,,,0.164,194,,0.100851064,0.227148936,,,,,,,,,,0.022633745,0,0.079302499,0.113702624,0.043421747,0.183983501,3.299128945,115519,35015,2.587047564,4.011210326,0.199690403,258,1292,0.132480368,0.266900437,20.08032129,10,4980,,,137.7621307,36,26132,96.48690271,190.7208575,,,,,,,,,,,,,163.6661211,110.4248446,233.6435646,,,,6.3,,,,,0,,,,,0.087719298,175,1995,0.055565342,0.119873255,0.070166583,0.034571028,0.105762137,0.019548872,0.001422911,0.037674833,0.002005013,0,0.010450364,0.778692075,1798,2309,0.711601988,0.845782161,,,,,,,,,,0.763532764,0.590840439,0.936225088,0.741071429,0.646806198,0.835336659,0.174,,2309,0.128395365,0.219604635,75.77907807,,,73.11558093,78.44257521,,,,,,,,,,,,,74.49723992,71.16446948,77.83001036,,,,464.8142933,85,14147,365.6059277,582.6487416,,,,,,,,,,,,,501.8833869,379.1173169,651.7373239,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.119,,,0.102,0.137,0.168,,,0.146,0.192,0.104,,,0.088,0.121,,,,,,0.083,420,,,,0.11877336,669.4066554,5636,,,,,,,,,,,,,,,,,,,,,,,,,,0.326,,,0.312,0.342,0.266091334,740,2781,0.233921121,0.298261547,0.175840979,230,1308,0.126989915,0.224692042,0.000797448,4,5016,,,1254,,,,,,,,,,,3.130852479,,,,,,,,2.845816742,3.355577417,3.247325646,,,,,,,,2.964744233,3.429263928,0.09491014,,,,,3455.525375,,,,,0.803627243,41652,51830,0.665481074,0.941773412,64431,,,57585.89362,71276.10638,,,,,,,,,,61172,51850.97872,70493.02128,63846,55724.80851,71967.19149,,,,,,0.440082645,426,968,,,,,,,,0.242942062,,64431,,,3.496503497,1,286,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,51.43336672,19,36941,30.96624662,80.3195733,,,,,,,,,,,,,57.04072708,31.92526194,94.08000484,,,,,,,,,,,0.623175966,2178,3495,,,0.389,,,,,0.496427974,,,,,0.78343949,1353,1727,0.748400602,0.818478379,0.076780186,124,1615,0.031102772,0.1224576,0.873769543,1509,1727,0.824803444,0.922735641,5016,,,,,0.240629984,1207,5016,,,0.198165869,994,5016,,,0.01076555,54,5016,,,0.033692185,169,5016,,,0.004585327,23,5016,,,0,0,5016,,,0.280103668,1405,5016,,,0.664673046,3334,5016,,,0.039572864,189,4776,0.018975669,0.060170059,0.490629984,2461,5016,,,1,5049,5049,, -40,009,40009,OK,Beckham County,2024,1,11514.11211,436,61298,9933.345809,13094.87842,0,,,,2,,,,2,,,,2,8390.810881,5125.325273,12958.92687,1,12062.45,10164.57797,13960.32203,,,,,2,,0.213,,,0.184,0.245,4.265650707,,,3.407031312,5.205270519,5.326964341,,,4.232481061,6.44749118,0.085801839,168,1958,0.073396227,0.098207451,0,,,,,,,,,,0.067460318,0.036492282,0.098428353,0.08678501,0.072636838,0.100933182,,,,0.122222222,0.054551284,0.18989316,0.209,,,0.171,0.248,0.434,,,0.353,0.515,7,0.078483468,0.142,,,0.319,,,0.265,0.373,0.796251673,17844,22410,,,0.143037757,,,0.112458089,0.178497544,0.222222222,6,27,0.123749407,0.332441015,399.2,88,22046,,,36.40157663,157,4313,30.70745894,42.09569432,,,,,,,,,,20.55622733,11.97475994,32.91251127,38.72437358,31.76665287,45.68209429,,,,59.52380952,28.54398033,109.466405,0.187878428,3165,16846,0.164048641,0.211708215,0.000498957,11,22046,,,2004.181818,0.000499796,11,22009,,,2000.818182,0.003271389,72,22009,,,305.6805556,2387,,,,,,,,,2394,0.34,,,,,0.31,,,0.29,0.34,0.37,,,,,0.17,,0.06,0.29,0.38,0.847747924,12968,15297,0.825455424,0.870040425,0.440447184,3073,6977,0.363656849,0.517237518,0.02577369,269,10437,,,0.241,1257,,0.159978723,0.322021277,0.132075472,0,0.547693957,,,,0.739884393,0.385978078,1,0.602204409,0.487516645,0.716892173,0.217141292,0.13858924,0.295693345,5.216551064,109052,20905,3.443659479,6.989442649,0.235418266,1227,5212,0.143022867,0.327813664,15.87589585,35,22046,,,120.3214696,131,108875,99.71689979,140.9260394,,,,,,,,,,66.97923644,33.4357935,119.8443556,137.5431357,112.0697905,163.016481,,,,7.5,,,,,0,,,,,0.115857605,895,7725,0.078049013,0.153666198,0.084185986,0.052551164,0.115820809,0.035598706,0.012401753,0.058795658,0.001941748,0,0.008148601,0.758724792,6283,8281,0.707175184,0.8102744,,,,,,,,,,,,,0.805743975,0.755667136,0.855820813,0.171,,8281,0.099888944,0.242111056,72.6102104,,,71.42475826,73.79566255,,,,,,,,,,76.917645,69.27315154,84.56213846,72.17227189,70.81420809,73.5303357,,,,603.6678473,436,61298,545.7000387,661.635656,,,,,,,,,,539.4143701,338.0481139,816.6798388,623.0315254,557.1571253,688.9059255,,,,93.41032609,22,23552,58.53975404,141.4243563,,,,,,,,,,,,,102.4528416,59.68255571,164.0369241,,,,10.35502959,21,2028,6.409926521,15.82876269,,,,,,,,,,,,,,,,,,,,,,0.133,,,0.115,0.152,0.179,,,0.156,0.203,0.116,,,0.099,0.134,254.2,46,18093,,,0.142,3180,,,,0.078483468,1735.975831,22119,,,18.3562021,12,65373,9.484917487,32.06459096,,,,,,,,,,,,,,,,,,,0.351,,,0.337,0.364,0.240581742,2746,11414,0.20722004,0.273943444,0.080147966,455,5677,0.056318178,0.103977753,0.001272207,28,22009,,,786.0357143,0.87309322,206.05,236,,,,,,,,3.101119099,,,,,,,,2.757793116,3.203347756,2.967499786,,,,,,,,2.639529704,3.123505499,0.040337278,,,,,398.1742,,,,,0.748350559,39245,52442,0.52828906,0.968412057,53119,,,47784.70213,58453.29787,83153,76405.59575,89900.40426,,,,,,,47318,35003.95745,59632.04255,53028,45155.82979,60900.17021,,,,,,0.551272361,2188,3969,,,49.5774868,,,,,0.303281312,,53119,,,29.0486565,40,1377,,,,,,,,,,,,,,,,,,,,,,,,,,24.92584175,27,108875,16.28238738,36.52213336,24.79908152,,,,,,,,,,,,,28.72607788,18.00248007,43.49162712,,,,22.04362801,24,108875,14.12376841,32.79917115,,,,,,,,,,,,,27.01740166,16.93166178,40.9046708,,,,25.13502017,39,155162,17.87345645,34.36040001,,,,,,,,,,,,,28.32472147,19.49743496,39.77843997,,,,,,,,,,,0.497683156,7948,15970,,,0.478,,,,,26.63332192,,,,,0.660676401,5294,8013,0.607214692,0.714138109,0.111440507,827,7421,0.072074148,0.150806866,0.869961313,6971,8013,0.832008817,0.907913809,22009,,,,,0.241401245,5313,22009,,,0.154709437,3405,22009,,,0.046162933,1016,22009,,,0.037939025,835,22009,,,0.012722068,280,22009,,,0.000272616,6,22009,,,0.162478986,3576,22009,,,0.726293789,15985,22009,,,0.002922016,61,20876,,,0.453678041,9985,22009,,,0.503614458,11286,22410,, -40,011,40011,OK,Blaine County,2024,1,14809.11488,214,25002,11777.36569,17840.86406,0,48692.74563,30515.48445,73721.40205,1,,,,2,,,,2,,,,2,11219.55228,8144.175202,14294.92937,,,,,2,,0.21,,,0.181,0.246,4.184240185,,,3.410591477,5.286322921,5.719082238,,,4.73579783,7.090235864,0.069174757,57,824,0.051848675,0.086500839,0,,,,,,,,,,,,,0.080078125,0.056568077,0.103588173,,,,,,,0.209,,,0.17,0.256,0.421,,,0.347,0.514,5.9,0.235080746,0.117,,,0.305,,,0.255,0.365,0.50234688,4388,8735,,,0.134481354,,,0.107613991,0.171025294,0.259259259,7,27,0.158170974,0.367142569,315.3,27,8562,,,36.77172875,77,2094,29.01967328,45.95835172,,,,,,,,,,34.3980344,18.8057255,57.71405681,35.19313305,25.25519989,47.74345886,,,,52.88461539,26.39980946,94.62518516,0.170985215,1168,6831,0.149538406,0.192432023,0.000583976,5,8562,,,1712.4,0.000594601,5,8409,,,1681.8,0.003924367,33,8409,,,254.8181818,2161,,,,,,,,,2133,0.32,,,,,0.19,,0.41,,0.33,0.36,,,,,0.24,,0.38,0.05,0.37,0.826065654,5058,6123,0.790287914,0.861843394,0.404685347,881,2177,0.319436445,0.489934248,0.022489777,99,4402,,,0.222,469,,0.139787234,0.304212766,0.203703704,0,0.462066489,,,,,,,0.259090909,0.116429847,0.401751971,0.181202371,0.069559769,0.292844973,4.191386359,116881,27886,3.359868852,5.022903865,0.310294828,642,2069,0.199517696,0.421071961,18.68722261,16,8562,,,183.1067836,85,46421,146.2591952,226.4143735,367.0686943,200.6798709,615.8788967,,,,,,,,,,183.9288407,140.6909892,236.2642904,,,,8.6,,,,,1,,,,,0.085025381,335,3940,0.06131618,0.108734582,0.063225807,0.039375575,0.087076038,0.021573604,0.007382209,0.035765,0.004822335,0,0.011951817,0.862945839,2613,3028,0.828425857,0.897465821,,,,,,,,,,0.831550802,0.671458973,0.991642631,0.874099195,0.827971222,0.920227167,0.259,,3028,0.203586137,0.314413863,70.9616604,,,68.98522997,72.93809082,,,,,,,,,,,,,73.16732696,71.03871164,75.29594229,,,,660.4794966,214,25002,565.1584705,755.8005228,1803.138441,1225.145088,2559.411086,,,,,,,,,,556.6542737,457.7907748,655.5177726,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.133,,,0.115,0.154,0.188,,,0.163,0.217,0.116,,,0.1,0.136,370.8,26,7011,,,0.117,1030,,,,0.235080746,2807.569347,11943,,,,,,,,,,,,,,,,,,,,,,,,,,0.341,,,0.326,0.356,0.214886731,996,4635,0.185099497,0.244673965,0.081385281,188,2310,0.058746984,0.104023579,0.001308122,11,8409,,,764.4545455,,,,,,,,,,,3.106260121,,,,,,,,2.96291039,3.354893756,3.29706312,,,,,,,,3.324020164,3.442913458,0.077366403,,,,,-1448.04118,,,,,0.725419578,40284,55532,0.598148394,0.852690762,54616,,,48659.74468,60572.25532,41625,15546.87234,67703.12766,,,,,,,38603,31861.55319,45344.44681,61505,50900.74468,72109.25532,,,,,,0.681457263,1459,2141,,,53.84866808,,,,,0.229548118,,54616,,,38.98635478,20,513,,,,,,,,,,,,,,,,,,,,,,,,,,37.52609397,14,46421,19.98106459,64.17076356,30.15876435,,,,,,,,,,,,,40.50034658,19.42149042,74.48157934,,,,,,,,,,,,,,,,,,,,,,,,,,,31.86791508,21,65897,19.72674171,48.71349338,,,,,,,,,,,,,,,,,,,,,,,,,,0.580074349,3901,6725,,,0.414,,,,,16.49716839,,,,,0.70300204,2412,3431,0.675451916,0.730552165,0.102926986,320,3109,0.069656773,0.136197199,0.830661615,2850,3431,0.784989558,0.876333672,8409,,,,,0.257937924,2169,8409,,,0.203115709,1708,8409,,,0.033654418,283,8409,,,0.096919967,815,8409,,,0.003686526,31,8409,,,0.001902723,16,8409,,,0.145915091,1227,8409,,,0.687715543,5783,8409,,,0.030225783,249,8238,0.014599768,0.045851798,0.489356642,4115,8409,,,1,8735,8735,, -40,013,40013,OK,Bryan County,2024,1,12684.15907,998,132935,11539.69333,13828.62481,0,17718.92444,14248.78036,21189.06852,,,,,2,,,,2,11635.44993,7792.443432,16710.44699,,12714.62006,11290.12846,14139.11166,,,,,2,,0.214,,,0.185,0.244,4.483959907,,,3.754485908,5.348430935,5.546380316,,,4.689689854,6.517049312,0.082660333,348,4210,0.074342145,0.09097852,0,0.069148936,0.051015504,0.087282368,,,,,,,0.086387435,0.058214589,0.11456028,0.083240015,0.072779246,0.093700784,,,,0.10443038,0.070711306,0.138149453,0.22,,,0.183,0.26,0.428,,,0.37,0.49,6.6,0.107918236,0.147,,,0.299,,,0.257,0.344,0.3929494,18102,46067,,,0.139226286,,,0.114844858,0.168099463,0.372881356,22,59,0.306973907,0.437657939,518,244,47105,,,35.30279288,383,10849,31.76717152,38.83841425,38.61386139,30.52265505,48.19184656,,,,,,,41.33180253,28.94828636,57.22063661,32.06199666,27.73580846,36.38818486,,,,49.03846154,36.51235561,64.47652055,0.209652693,7932,37834,0.188205885,0.231099502,0.000382125,18,47105,,,2616.944444,0.00031132,15,48182,,,3212.133333,0.008405629,405,48182,,,118.9679012,7102,,,,,7747,,16211,1894,7045,0.32,,,,,0.43,,,,0.31,0.38,,,,,0.4,0.21,,0.23,0.38,0.87248279,27122,31086,0.856902674,0.888062906,0.530301771,6379,12029,0.486514542,0.574088999,0.027355623,630,23030,,,0.179,1941,,0.121808511,0.236191489,0.219967087,0.15916918,0.280764995,,,,0.659574468,0.411465165,0.907683771,0.305936073,0.221396483,0.390475664,0.160067397,0.122736672,0.197398121,4.452481969,104945,23570,4.065859088,4.839104849,0.229189789,2478,10812,0.19569094,0.262688639,10.61458444,50,47105,,,100.5854155,239,237609,87.83300941,113.3378217,109.2796649,76.5381338,151.2891191,,,,,,,65.80679126,31.55691429,121.0210321,112.2314248,96.14536257,128.317487,,,,8.9,,,,,1,,,,,0.139495322,2460,17635,0.119590463,0.15940018,0.094009745,0.077112423,0.110907066,0.034873831,0.024727769,0.045019892,0.015026935,0.009242074,0.020811797,0.815042786,16287,19983,0.793528028,0.836557545,0.849928367,0.798151913,0.901704821,,,,,,,0.666666667,0.623623303,0.709710031,0.830571575,0.793016284,0.868126865,0.216,,19983,0.192379644,0.239620356,72.86659635,,,72.02340781,73.7097849,68.74691835,66.39990091,71.0939358,,,,,,,79.60425067,66.90132336,92.30717797,72.6220828,71.61521903,73.62894657,,,,613.258803,998,132935,573.7560019,652.7616041,851.5669719,713.6900629,989.443881,,,,,,,651.192032,442.453392,924.3151097,614.1854754,568.6274438,659.7435069,,,,87.98240352,44,50010,63.92814909,118.1122701,,,,,,,,,,,,,96.97305534,64.43789103,140.1530648,,,,7.253384913,30,4136,4.893828342,10.35465798,,,,,,,,,,,,,,,,,,,,,,0.141,,,0.124,0.16,0.193,,,0.171,0.217,0.123,,,0.108,0.139,150.8,59,39121,,,0.147,6730,,,,0.107918236,4577.459883,42416,,,15.96135963,23,144098,10.11813282,23.9498764,,,,,,,,,,,,,18.95129517,11.40991768,29.59479495,,,,0.357,,,0.342,0.371,0.252862139,6869,27165,0.225457884,0.280266394,0.102339704,1146,11198,0.074935448,0.129743959,0.000643394,31,48182,,,1554.258065,0.870877944,406.7,467,,,0.092476489,236,2552,0.051221399,0.133731579,3.148396151,,,,,,,,3.121038762,3.246709288,3.256852493,,,,,,,,3.164315152,3.355596841,0.03299971,,,,,-4032.747738,,,,,0.802874494,39662,49400,0.732574345,0.873174643,53782,,,49568.89362,57995.10638,44865,36087.29787,53642.70213,67206,22884.97872,111527.0213,36739,29379.17021,44098.82979,41793,34255.6383,49330.3617,59720,54197.44681,65242.55319,,,,,,0.562126494,4515,8032,,,35.62300128,,,,,0.308616266,,53782,,,14.86486487,44,2960,,,4.877067419,16,328066,2.787665425,7.92005194,,,,,,,,,,,,,4.748317585,2.37034303,8.49605178,,,,22.32365521,53,237609,16.56904718,29.43095638,22.3055524,,,,,,,,,,,,,23.72730225,16.61831079,32.84858769,,,,16.83437917,40,237609,12.02672729,22.9236464,,,,,,,,,,,,,17.40487337,11.65631685,24.99630143,,,,27.43350423,90,328066,22.05977704,33.72043424,33.48588012,18.74179291,55.22986689,,,,,,,,,,29.78490121,23.17443098,37.69469876,,,,,,,,,,,0.451299435,15976,35400,,,0.539,,,,,35.9599586,,,,,0.636363636,11417,17941,0.615348937,0.657378335,0.101333957,1732,17092,0.084826545,0.11784137,0.776210914,13926,17941,0.755962659,0.796459168,48182,,,,,0.230957619,11128,48182,,,0.176850276,8521,48182,,,0.019343323,932,48182,,,0.151799427,7314,48182,,,0.007098086,342,48182,,,0.000913204,44,48182,,,0.07378274,3555,48182,,,0.685712507,33039,48182,,,0.00670309,292,43562,0.003240013,0.010166166,0.509837699,24565,48182,,,0.580524019,26743,46067,, -40,015,40015,OK,Caddo County,2024,1,15151.18675,719,77640,13500.23708,16802.13643,0,29917.00348,24794.03022,35039.97674,,,,,2,44140.0314,9102.735644,128995.9029,1,8061.241314,5265.870464,11811.58628,,11815.35392,9852.07171,13778.63612,,,,,2,,0.242,,,0.211,0.274,4.774749032,,,3.898226606,5.732635272,5.599385368,,,4.545738993,6.732971331,0.083567698,208,2489,0.072695608,0.094439788,0,0.0703125,0.050504034,0.090120966,,,,,,,0.053731343,0.029584812,0.077877874,0.096366509,0.08011108,0.112621938,,,,0.084158416,0.045872473,0.122444358,0.241,,,0.203,0.281,0.437,,,0.364,0.512,6.7,0.098548844,0.147,,,0.337,,,0.286,0.389,0.388680646,10473,26945,,,0.132955112,,,0.105898526,0.164486965,0.166666667,8,48,0.097589559,0.247689072,493,130,26368,,,38.20516989,235,6151,33.32039814,43.08994164,44.36860068,35.07153766,55.37402164,,,,,,,40.70305273,29.57490042,54.64194846,33.05471125,26.47546867,40.7728642,,,,44.21768708,28.88446125,64.7891566,0.205897462,4008,19466,0.185642143,0.226152781,0.000227549,6,26368,,,4394.666667,0.000229025,6,26198,,,4366.333333,0.000534392,14,26198,,,1871.285714,3659,,,,,5045,,,,3415,0.31,,,,,0.15,,0.4,,0.34,0.4,,,,,0.38,,0.38,0.33,0.4,0.866342583,15861,18308,0.851277842,0.881407323,0.393273132,3005,7641,0.354943336,0.431602927,0.032279872,382,11834,,,0.23,1343,,0.145404255,0.314595745,0.468232044,0.387097878,0.54936621,,,,,,,0.278033794,0.199033187,0.357034402,0.203252033,0.166984291,0.239519774,4.022753268,98477,24480,3.711319694,4.334186842,0.298950767,1852,6195,0.250498452,0.347403082,15.92839806,42,26368,,,131.7235355,187,141964,112.8436809,150.6033902,188.056747,142.4323437,243.6493283,,,,,,,57.90997631,28.90845153,103.616944,142.8731163,116.7600622,168.9861704,,,,8.9,,,,,1,,,,,0.101767797,1065,10465,0.084600735,0.11893486,0.062403101,0.048815416,0.075990786,0.039655996,0.029373319,0.049938673,0.008600096,0.004720699,0.012479492,0.805252259,8555,10624,0.785471358,0.82503316,0.804069329,0.718509665,0.889628994,,,,,,,0.794743429,0.709913416,0.879573443,0.808441558,0.791858758,0.825024359,0.334,,10624,0.299985118,0.368014882,70.02278086,,,68.93946367,71.10609805,61.19341266,58.71112992,63.6756954,,,,,,,75.10349829,71.74311149,78.46388509,72.2275993,70.87878482,73.57641378,,,,742.7046016,719,77640,686.3583653,799.0508379,1292.080179,1120.843537,1463.316821,,,,1459.687255,754.2417051,2549.779879,414.4637429,279.6369469,591.6727643,625.9729131,561.5063198,690.4395063,,,,88.20358695,27,30611,58.12671958,128.3315881,179.2573624,98.00166807,300.7633947,,,,,,,,,,,,,,,,12.08106002,31,2566,8.208494146,17.14810035,,,,,,,,,,,,,,,,,,,,,,0.15,,,0.13,0.17,0.196,,,0.171,0.222,0.132,,,0.113,0.151,169.6,37,21812,,,0.147,4010,,,,0.098548844,2917.045794,29600,,,32.21418856,27,83814,21.22935325,46.86995305,61.94042457,30.92043678,110.8285293,,,,,,,,,,29.61396087,16.19022798,49.68719434,,,,0.342,,,0.331,0.353,0.263110713,3522,13386,0.234514968,0.291706457,0.082515958,530,6423,0.06106915,0.103962767,0.000839759,22,26198,,,1190.818182,0.899350649,346.25,385,,,0.133105802,195,1465,0.085122926,0.181088678,3.090662394,,,,,,,,2.898985726,3.299116311,3.025383096,,,,,,,,2.895594595,3.179039957,0.154121368,,,,,-9213.59,,,,,0.771531204,35654,46212,0.696466217,0.846596192,51071,,,46967.51064,55174.48936,38702,30108.97872,47295.02128,48558,41434.08511,55681.91489,61875,26709.38298,97040.61702,35500,27798.21277,43201.78723,58489,54955.04255,62022.95745,,,,,,0.741867343,3512,4734,,,57.98115899,,,,,0.268019032,,51071,,,21.08768036,38,1802,,,8.961287239,18,200864,5.311026755,14.16269728,,,,,,,,,,,,,,,,,,,20.29583946,30,141964,13.48643793,29.33313892,21.132118,,,,,,,,,,,,,23.50715721,13.93183117,37.15144294,,,,17.61009834,25,141964,11.39632713,25.99597905,,,,,,,,,,,,,22.36274863,13.25358212,35.342784,,,,31.36450534,63,200864,24.10134708,40.12882711,46.18937644,28.2136711,71.33574573,,,,,,,,,,30.61340517,21.32335838,42.57583585,,,,,,,,,,,0.481161542,9859,20490,,,0.391,,,,,11.18689606,,,,,0.723705902,6585,9099,0.702880503,0.744531301,0.074388948,630,8469,0.058685898,0.090091998,0.812616771,7394,9099,0.789172072,0.83606147,26198,,,,,0.226887549,5944,26198,,,0.160279411,4199,26198,,,0.039010612,1022,26198,,,0.232880373,6101,26198,,,0.006412703,168,26198,,,0.001030613,27,26198,,,0.159668677,4183,26198,,,0.55149248,14448,26198,,,0.030757067,778,25295,0.022627393,0.03888674,0.435949309,11421,26198,,,0.814251253,21940,26945,, -40,017,40017,OK,Canadian County,2024,1,7155.883072,1880,439277,6689.98,7621.786143,0,13853.05127,10776.91845,16929.1841,,3117.956013,1660.180261,5331.79974,1,8569.724479,6093.911848,11715.09548,,5958.442512,4636.023929,7540.790347,,7107.209544,6564.257847,7650.161241,,,,,2,,0.144,,,0.121,0.169,3.357623992,,,2.703530703,4.107202059,4.886220448,,,4.144709698,5.747668272,0.069619769,910,13071,0.065256639,0.073982899,0,0.095076401,0.071387727,0.118765075,0.070351759,0.045226454,0.095477064,0.118236473,0.089905754,0.146567192,0.058064516,0.046421749,0.069707283,0.066594124,0.061496691,0.071691557,,,,0.075215783,0.057063956,0.09336761,0.153,,,0.123,0.188,0.362,,,0.314,0.417,8.2,0.075575001,0.09,,,0.226,,,0.19,0.268,0.722865192,111614,154405,,,0.152988736,,,0.12565213,0.184496058,0.355769231,37,104,0.306575465,0.404715874,335.1,542,161737,,,15.65563457,535,34173,14.32900444,16.98226469,19.78764479,14.19995554,26.8441745,,,,18.01801802,11.29179596,27.27949581,17.74159883,14.17135901,21.9377617,14.13257493,12.59131422,15.67383564,,,,27.95311091,21.43148985,35.83462664,0.127129011,17563,138151,0.114022628,0.140235394,0.000346241,56,161737,,,2888.160714,0.000413836,70,169149,,,2416.414286,0.001968679,333,169149,,,507.954955,2233,,,,,1646,,,1917,2238,0.46,,,,,0.27,0.45,0.49,0.35,0.47,0.45,,,,,0.35,0.35,0.33,0.33,0.46,0.919635811,95552,103902,0.910799304,0.928472317,0.691310682,32269,46678,0.655099786,0.727521577,0.025334211,2041,80563,,,0.1,4201,,0.070212766,0.129787234,0.087887324,0.022722057,0.153052591,0.174566474,0.018079711,0.331053237,0.370239774,0.180565457,0.559914092,0.229146538,0.17419988,0.284093195,0.06885839,0.050437554,0.087279227,3.361285697,140653,41845,3.159661294,3.5629101,0.171498662,6921,40356,0.143183668,0.199813656,6.739336083,109,161737,,,73.43420616,549,747608,67.29137889,79.57703343,91.24365096,61.56170815,130.2559853,,,,51.29419192,27.31199689,87.71463036,31.10756455,19.71952749,46.67662049,83.03819578,75.48249092,90.59390065,,,,9.9,,,,,1,,,,,0.089994533,4115,45725,0.076897747,0.103091318,0.064870216,0.054097837,0.075642594,0.022416621,0.015625708,0.029207535,0.005795517,0.003031329,0.008559704,0.830830908,65074,78324,0.816394877,0.845266938,0.772847332,0.679622194,0.866072471,0.715859031,0.687097838,0.744620224,0.766045549,0.699705529,0.832385568,0.814793578,0.68737324,0.942213916,0.758261631,0.730813461,0.7857098,0.374,,78324,0.348724694,0.399275306,77.59294548,,,77.13818392,78.04770703,70.57437233,68.32491757,72.8238271,85.58677239,81.33305829,89.84048649,76.15614957,72.73688796,79.57541118,81.91749632,78.03422191,85.80077072,77.52386157,77.02035295,78.02737018,,,,375.7251722,1880,439277,358.5099288,392.9404156,693.7540257,570.2990103,817.2090411,149.5952596,96.81016441,220.8321134,438.9506494,328.8041578,574.158257,310.7771107,243.1639491,391.3723375,376.89459,357.6459065,396.1432735,,,,45.65408253,78,170850,36.08765771,56.97836117,,,,,,,,,,43.42848119,21.67934134,77.70554903,43.34633724,32.06785891,57.30615659,,,,5.337100699,68,12741,4.144467526,6.766046869,,,,,,,,,,,,,4.378763,3.128252484,5.962632399,,,,,,,0.101,,,0.086,0.117,0.16,,,0.139,0.184,0.092,,,0.079,0.107,130.6,173,132424,,,0.09,13650,,,,0.075575001,8732.011155,115541,,,11.65715026,54,463235,8.757210049,15.21005243,,,,,,,,,,,,,12.5525089,9.084312929,16.90814711,,,,0.329,,,0.313,0.344,0.15104048,14589,96590,0.134359629,0.167721331,0.074612114,3246,43505,0.056739773,0.092484454,0.000774465,131,169149,,,1291.213741,0.926394763,1839.82,1986,,,0.089941263,735,8172,0.052655425,0.127227101,3.222820627,,,,,,3.215218018,2.908046041,2.81767019,3.351396715,3.219780931,,,,,,3.312687991,2.755861247,2.809714196,3.35506081,0.035931509,,,,,1311.64628,,,,,0.709973222,45603,64232,0.68349938,0.736447064,81761,,,76354.02128,87167.97872,74077,68356.65957,79797.34043,86509,74707.29787,98310.70213,64780,52986.6383,76573.3617,65352,54354.55319,76349.44681,84520,81557.95745,87482.04255,,,,,,0.421525668,13179,31265,,,52.58366227,,,,,0.252675481,,81761,,,10.44386423,104,9958,,,3.636299309,37,1017518,2.560290291,5.012159602,,,,,,,,,,,,,2.477797629,1.491796034,3.869387928,,,,17.55766379,130,747608,14.50214755,20.61318004,17.38879199,,,,,,,,,,,,,20.23485231,16.47284746,23.99685716,,,,14.71359322,110,747608,11.96393653,17.46324992,,,,,,,,,,,,,17.00135474,13.75511125,20.78327454,,,,12.28479496,125,1017518,10.13117545,14.43841447,,,,,,,,,,10.36881889,4.972251689,19.06862711,13.43227136,10.83817015,16.02637257,,,,,,,,,,,0.594148681,61940,104250,,,0.7,,,,,51.4988343,,,,,0.755328597,42525,56300,0.736367173,0.77429002,0.085782984,4745,55314,0.07411827,0.097447698,0.922326821,51927,56300,0.910514677,0.934138964,169149,,,,,0.254142797,42988,169149,,,0.137234036,23213,169149,,,0.043541493,7365,169149,,,0.051085138,8641,169149,,,0.033952314,5743,169149,,,0.001466163,248,169149,,,0.116039705,19628,169149,,,0.718059226,121459,169149,,,0.014414021,2112,146524,0.011377553,0.017450489,0.503136288,85105,169149,,,0.195207409,30141,154405,, -40,019,40019,OK,Carter County,2024,1,11828.18619,1068,134052,10755.03824,12901.33415,0,21808.70862,17002.17885,26615.23839,,,,,2,12462.18379,8467.449257,17689.07512,,8333.785532,5443.905396,12210.92671,,11643.15622,10315.45675,12970.85569,,,,,2,,0.206,,,0.177,0.239,4.255221245,,,3.429863883,5.148899327,5.684800373,,,4.676027824,6.728932442,0.09370061,415,4429,0.085118179,0.10228304,0,0.063131313,0.039177743,0.087084883,,,,0.197183099,0.143750122,0.250616075,0.110070258,0.080384032,0.139756483,0.081265732,0.071110163,0.091421301,,,,0.117001828,0.090065485,0.143938171,0.207,,,0.171,0.248,0.409,,,0.339,0.48,7,0.076377313,0.143,,,0.303,,,0.256,0.356,0.480428307,23062,48003,,,0.14222348,,,0.11315751,0.174409947,0.212765957,10,47,0.138860601,0.294245526,627.4,303,48291,,,35.90680676,393,10945,32.35673951,39.45687402,26.98760029,19.00176117,37.19885204,,,,22.90076336,12.81738341,37.77132652,28.88368462,20.33677952,39.81235452,35.44956494,30.76514694,40.13398293,,,,66.55974338,53.01446407,82.5108162,0.185474266,7319,39461,0.166410436,0.204538096,0.000579818,28,48291,,,1724.678571,0.000721501,35,48510,,,1386,0.004741291,230,48510,,,210.9130435,2945,,,,,2703,,4212,,2941,0.34,,,,,0.48,,0.34,0.29,0.33,0.38,,,,,0.5,,0.3,0.28,0.37,0.873871911,28081,32134,0.860547527,0.887196296,0.561643836,6888,12264,0.51847987,0.604807801,0.034852921,750,21519,,,0.198,2359,,0.125319149,0.270680851,0.117502054,0.063703794,0.171300314,0.191358025,0,0.558950023,0.422187982,0.265758121,0.578617842,0.28077374,0.217912325,0.343635154,0.138739844,0.102181333,0.175298354,4.447859922,114310,25700,4.140990274,4.75472957,0.27308871,3297,12073,0.232806073,0.313371348,10.5609741,51,48291,,,120.6857939,291,241122,106.8193299,134.5522579,163.4506243,114.4788078,226.2845607,,,,116.1890008,68.86096553,183.6287133,63.00204757,32.55407733,110.0518982,129.2735428,111.9934332,146.5536524,,,,7.7,,,,,1,,,,,0.124221922,2295,18475,0.109003021,0.139440823,0.094881673,0.079886262,0.109877084,0.022462788,0.016144569,0.028781006,0.01217862,0.00666033,0.017696909,0.806053119,16965,21047,0.779938653,0.832167586,0.790832795,0.738653662,0.843011929,,,,0.797145004,0.711021281,0.883268726,0.73470261,0.648157122,0.821248098,0.827428929,0.80129119,0.853566667,0.215,,21047,0.192112237,0.237887763,72.39974537,,,71.6312759,73.16821485,64.61634997,62.00558696,67.22711297,,,,71.78355788,68.85462892,74.71248683,80.82072397,73.80748511,87.83396282,72.61551954,71.67886836,73.55217072,,,,621.7592813,1068,134052,583.0267476,660.4918149,1091.377829,900.9954284,1281.760231,,,,640.3189395,492.0386544,819.2460791,395.9357608,269.0191399,561.9992079,607.7331979,563.229098,652.2372978,,,,62.7090301,33,52624,43.16601089,88.06679323,,,,,,,,,,,,,73.85772317,46.28624189,111.8214805,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.131,,,0.113,0.152,0.19,,,0.166,0.216,0.113,,,0.096,0.13,113.6,45,39600,,,0.143,6900,,,,0.076377313,3632.275883,47557,,,21.41549515,31,144755,14.55078994,30.39758592,,,,,,,,,,,,,25.20923666,16.31408879,37.21380629,,,,0.353,,,0.339,0.366,0.226853198,6243,27520,0.201831921,0.251874474,0.093453473,1172,12541,0.070815175,0.116091771,0.00162853,79,48510,,,614.0506329,0.89,492.17,553,,,0.087704213,204,2326,0.050888217,0.12452021,3.019352294,,,,,,,2.826685171,2.771524593,3.088304025,2.999195998,,,,,,,2.599370537,2.744051534,3.081473749,0.078649881,,,,,-2526.033556,,,,,0.674225287,36661,54375,0.615208132,0.733242443,56052,,,51900.85106,60203.14894,55949,49456.57447,62441.42553,62250,51844.7234,72655.2766,36809,30541.76596,43076.23404,41367,33693.80851,49040.19149,59177,55136.65957,63217.34043,,,,,,0.591262926,5089,8607,,,43.74930062,,,,,0.295083137,,56052,,,11.34969325,37,3260,,,6.79735317,23,338367,4.308938826,10.19936722,,,,,,,,,,,,,6.810075507,3.892546565,11.05913597,,,,25.34702922,62,241122,19.29533303,32.69582095,25.71312448,,,,,,,,,,,,,27.482901,20.04621658,36.77428383,,,,21.15111852,51,241122,15.74839701,27.80981469,,,,,,,,,,,,,25.25343627,18.2004556,34.13530958,,,,21.57420789,73,338367,16.91073507,27.12632739,,,,,,,,,,,,,22.1327454,16.52979289,29.02415097,,,,,,,,,,,0.552204111,19479,35275,,,0.569,,,,,30.05389769,,,,,0.673871278,12627,18738,0.650214746,0.69752781,0.101677739,1806,17762,0.08583802,0.117517458,0.786903618,14745,18738,0.767367063,0.806440174,48510,,,,,0.249618635,12109,48510,,,0.170851371,8288,48510,,,0.06108019,2963,48510,,,0.105091734,5098,48510,,,0.013481756,654,48510,,,0.000886415,43,48510,,,0.090228819,4377,48510,,,0.676561534,32820,48510,,,0.0131149,590,44987,0.008980443,0.017249357,0.511956298,24835,48510,,,0.554132033,26600,48003,, -40,021,40021,OK,Cherokee County,2024,1,11370.99289,997,135225,10320.92844,12421.05735,0,15930.57094,13848.93836,18012.20352,,,,,2,,,,2,7508.047324,4647.599629,11476.84788,1,9640.739217,8207.883529,11073.59491,,,,,2,,0.228,,,0.199,0.26,4.660299458,,,3.749676528,5.619558868,6.420304948,,,5.282014915,7.587509108,0.078390923,304,3878,0.069931156,0.086850691,0,0.072009292,0.059799575,0.084219008,,,,,,,0.051575931,0.028371647,0.074780216,0.085090909,0.070342836,0.099838982,,,,0.104683196,0.073189066,0.136177325,0.232,,,0.193,0.273,0.437,,,0.362,0.513,6,0.140397172,0.16,,,0.303,,,0.256,0.354,0.582926208,27443,47078,,,0.138216296,,,0.10952665,0.172465275,0.152173913,7,46,0.083567353,0.235059491,506,241,47627,,,23.95023328,308,12860,21.27543854,26.62502803,30.21268138,25.40956015,35.0158026,,,,,,,33.94039735,24.35621512,46.04398143,14.04668457,10.9078002,17.80751976,,,,33.70786517,24.58674816,45.10377565,0.222974102,8007,35910,0.200335804,0.2456124,0.000734877,35,47627,,,1360.771429,0.000582145,28,48098,,,1717.785714,0.004615577,222,48098,,,216.6576577,3642,,,,,4452,,14304,,3193,0.38,,,,,0.52,,,,0.33,0.43,,,,,0.52,0.23,0.08,0.29,0.4,0.884032499,26658,30155,0.869132769,0.898932229,0.581357759,6474,11136,0.531658827,0.63105669,0.03524908,709,20114,,,0.226,2264,,0.139021277,0.312978723,0.254707631,0.197509645,0.311905617,,,,,,,0.310887351,0.190069749,0.431704952,0.293687452,0.226157186,0.361217718,4.734302192,102616,21675,4.225596661,5.243007722,0.275098425,2795,10160,0.224252904,0.325943946,5.879018204,28,47627,,,95.11417819,231,242866,82.84839338,107.379963,114.9081333,93.07595693,140.3224981,,,,,,,,,,103.960178,85.20237015,122.7179858,,,,8.9,,,,,1,,,,,0.133026202,2310,17365,0.113413716,0.152638688,0.106867969,0.086630893,0.127105045,0.01986755,0.013126008,0.026609091,0.010365678,0.006117276,0.01461408,0.758027637,15250,20118,0.736876909,0.779178365,0.769078474,0.728809108,0.80934784,,,,,,,0.66034327,0.55928818,0.76139836,0.796976242,0.767642077,0.826310407,0.301,,20118,0.266735616,0.335264384,74.00527282,,,73.17385735,74.8366883,69.34536099,67.97538933,70.71533265,,,,,,,86.36612261,73.53441288,99.19783235,75.80121465,74.65996645,76.94246285,,,,595.06998,997,135225,556.2765616,633.8633984,793.8452066,714.6604085,873.0300046,,,,,,,401.3708592,254.4346947,602.25336,529.1125461,479.1691604,579.0559319,,,,40.374677,20,49536,24.66190162,62.35541405,70.38359057,38.47936392,118.0917054,,,,,,,,,,,,,,,,6.278252135,25,3982,4.062953754,9.267938648,,,,,,,,,,,,,,,,,,,,,,0.146,,,0.128,0.167,0.202,,,0.177,0.229,0.134,,,0.115,0.153,109.3,44,40273,,,0.16,7550,,,,0.140397172,6596.841924,46987,,,16.51720887,24,145303,10.58288738,24.57629753,19.92468469,9.554660775,36.64220455,,,,,,,,,,14.88427476,7.137588295,27.37271123,,,,0.361,,,0.349,0.373,0.267729626,7086,26467,0.237942392,0.29751686,0.101061699,1009,9984,0.073657443,0.128465954,0.001289035,62,48098,,,775.7741936,0.852380435,392.095,460,,,0.060047765,176,2931,0.027143906,0.092951624,2.862726394,,,,,,,,2.618123236,2.85937915,3.028721766,,,,,,,,2.848342348,3.233654271,0.055445734,,,,,-5784.71603,,,,,0.88574854,39895,45041,0.783287683,0.988209397,49403,,,44718.06383,54087.93617,49790,43558.51064,56021.48936,,,,,,,60000,44177.02128,75822.97872,54003,48174.23404,59831.76596,,,,,,0.662808973,4639,6999,,,59.02452833,,,,,0.314495071,,49403,,,30.39179788,83,2731,,,7.646766447,26,340013,4.995121721,11.20428457,12.04757069,6.586519006,20.2137765,,,,,,,,,,6.843008933,3.416005404,12.24403322,,,,22.487072,52,242866,16.58019174,29.81459506,21.41098384,26.40969553,15.65205933,41.73870484,,,,,,,,,,25.33210089,16.39360003,37.39517812,,,,20.17573477,49,242866,14.92611965,26.67339133,21.545275,12.76909543,34.05082323,,,,,,,,,,24.66851681,16.39205027,35.65287515,,,,20.58744813,70,340013,16.04892581,26.01100218,30.11892673,20.97893603,41.88813604,,,,,,,,,,19.28484336,13.10311542,27.37329578,,,,,,,,,,,0.478433491,17714,37025,,,0.517,,,,,23.8744114,,,,,0.667481799,12010,17993,0.643377413,0.691586184,0.11678789,1975,16911,0.097705252,0.135870527,0.788640027,14190,17993,0.762127605,0.815152449,48098,,,,,0.212170984,10205,48098,,,0.178115514,8567,48098,,,0.013825939,665,48098,,,0.367686806,17685,48098,,,0.012599277,606,48098,,,0.000831635,40,48098,,,0.082103206,3949,48098,,,0.458231112,22040,48098,,,0.009610227,430,44744,0.00570823,0.013512224,0.510457815,24552,48098,,,0.618186839,29103,47078,, -40,023,40023,OK,Choctaw County,2024,1,15821.59189,401,39746,13418.60264,18224.58114,0,22763.6015,16540.0677,30559.07252,,,,,2,22219.98844,14643.1124,32328.91659,,,,,2,14556.17164,11476.45351,17635.88977,,,,,2,,0.251,,,0.22,0.283,4.953265964,,,4.006566054,5.954265704,6.402054414,,,5.245936776,7.638526613,0.093498904,128,1369,0.078076866,0.108920943,0,0.069105691,0.037410337,0.100801046,,,,0.184931507,0.121954481,0.247908533,,,,0.080687831,0.06127313,0.100102531,,,,0.110236221,0.055766678,0.164705763,0.253,,,0.211,0.293,0.414,,,0.337,0.493,4.8,0.210826397,0.179,,,0.353,,,0.298,0.408,0.281329203,3996,14204,,,0.125033773,,,0.098514893,0.155663161,0.206896552,6,29,0.113372568,0.31356155,489.3,70,14307,,,49.98466728,163,3261,42.31106874,57.65826583,40.05524862,26.82562864,57.52601856,,,,53.45211581,34.24777919,79.53251135,,,,52.5974026,41.76992987,65.37376895,,,,62.31454006,38.57368245,95.25439387,0.188802913,2074,10985,0.167356105,0.210249722,0.000419375,6,14307,,,2384.5,0.00027859,4,14358,,,3589.5,0.008497005,122,14358,,,117.6885246,6400,,,,,2651,,10460,,6666,0.31,,,,,0.27,,0.34,,0.32,0.26,,,,,0.42,,0.15,,0.25,0.844044293,8156,9663,0.820981076,0.867107509,0.482627922,1528,3166,0.425971465,0.539284378,0.046328818,277,5979,,,0.305,1065,,0.213255319,0.396744681,0.17032967,0.102366124,0.238293216,,,,0.655976676,0.460634138,0.851319215,0.530864198,0.381769928,0.679958468,0.238257318,0.156601932,0.319912704,5.955163306,92442,15523,5.265976204,6.644350409,0.355421687,1239,3486,0.286475389,0.424367984,12.58125393,18,14307,,,136.6941878,100,73156,109.902127,163.4862486,155.9454191,95.25551334,240.8450519,,,,132.6435867,63.60775562,243.9362786,,,,155.7061733,120.9119361,197.3946766,,,,9,,,,,1,,,,,0.118518519,720,6075,0.091726305,0.145310732,0.092719665,0.069206468,0.116232862,0.017283951,0.010150167,0.024417734,0.013168724,0.005961107,0.020376341,0.782178218,4266,5454,0.742746078,0.821610358,0.790640394,0.703214349,0.878066439,,,,0.844492441,0.745683991,0.94330089,,,,0.813153457,0.758013253,0.868293661,0.309,,5454,0.270890962,0.347109038,69.88165562,,,68.32694292,71.43636832,65.94596601,62.09081615,69.80111588,,,,,,,,,,70.65834556,68.63990767,72.67678344,,,,738.7242151,401,39746,660.6680378,816.7803923,958.9426473,741.6461739,1220.010169,,,,1014.656953,753.0979476,1337.698698,,,,705.9973582,610.194029,801.8006873,,,,97.39627297,15,15401,54.51195463,160.6403407,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.155,,,0.135,0.176,0.214,,,0.188,0.24,0.135,,,0.117,0.155,169.4,20,11807,,,0.179,2570,,,,0.210826397,3205.615372,15205,,,27.50716332,12,43625,14.21335269,48.04947862,,,,,,,,,,,,,42.70186335,21.31661633,76.40542901,,,,0.371,,,0.358,0.382,0.236387435,1806,7640,0.20779169,0.264983179,0.082811611,291,3514,0.058981824,0.106641398,0.000975066,14,14358,,,1025.571429,0.806363636,133.05,165,,,0.118741059,83,699,0.040462594,0.197019523,2.852809697,,,,,,,2.493027216,,3.066969318,2.827022371,,,,,,,2.395050269,,3.042285337,0.062264482,,,,,-7393.813,,,,,0.705836498,35313,50030,0.609357804,0.802315192,41999,,,37208.02128,46789.97872,57935,47522.57447,68347.42553,170125,24225.93617,316024.0638,25853,18509.85106,33196.14894,34107,19523.17021,48690.82979,45670,41795.2766,49544.7234,,,,,,0.864725223,1841,2129,,,44.0099734,,,,,0.313412224,,41999,,,25.64102564,25,975,,,17.46928318,18,103038,10.35340436,27.60899888,,,,,,,,,,,,,16.11136173,7.726024193,29.62936786,,,,29.48108633,22,73156,18.00781343,45.53114677,30.07272131,,,,,,,,,,,,,37.77748807,20.65330427,63.38420584,,,,31.43966319,23,73156,19.93004953,47.17493151,,,,,,,,,,,,,36.63674666,20.94106625,59.49578127,,,,34.93856635,36,103038,24.47054234,48.36970292,,,,,,,,,,,,,38.66726816,24.77484832,57.53382998,,,,,,,,,,,0.528739801,5832,11030,,,0.45,,,,,10.85425607,,,,,0.666322136,3868,5805,0.640220903,0.69242337,0.113138686,589,5206,0.08852106,0.137756313,0.708527132,4113,5805,0.680477375,0.736576888,14358,,,,,0.248015044,3561,14358,,,0.205947904,2957,14358,,,0.096044017,1379,14358,,,0.193759577,2782,14358,,,0.006686168,96,14358,,,0.000417886,6,14358,,,0.058434322,839,14358,,,0.579328597,8318,14358,,,0.003079928,41,13312,0,0.00921477,0.515949297,7408,14358,,,0.648549704,9212,14204,, -40,025,40025,OK,Cimarron County,2024,1,7840.941211,36,5746,3914.169602,14029.60972,1,,,,2,,,,2,,,,2,,,,2,8904.982024,3844.539181,17546.36458,1,,,,2,,0.176,,,0.148,0.208,3.634456955,,,2.857190461,4.521586052,4.864771324,,,3.852714433,6.014928255,0.084269663,15,178,0.043459766,0.12507956,1,,,,,,,,,,,,,,,,,,,,,,0.163,,,0.129,0.201,0.367,,,0.293,0.454,6.7,0.150695649,0.121,,,0.281,,,0.231,0.336,0.0021777,5,2296,,,0.131439372,,,0.103834835,0.164453159,0.125,1,8,0.007330353,0.353459145,266.9,6,2248,,,34.76482618,17,489,20.25179237,55.66185443,,,,,,,,,,,,,,,,,,,,,,0.215976331,365,1690,0.187380587,0.244572076,,0,2248,,,,0.00044405,1,2252,,,2252,,0,2252,,,,4255,,,,,,,,,3992,0.28,,,,,,,,,0.26,0.16,,,,,,,,0.21,0.15,0.875080077,1366,1561,0.825199062,0.924961091,0.452784504,187,413,0.306107864,0.599461143,0.013715711,22,1604,,,0.253,147,,0.155297872,0.350702128,,,,,,,,,,0.105,0,0.29934245,0.185185185,0.065505738,0.304864633,5.338747719,119967,22471,2.632967011,8.044528428,0.190562613,105,551,0.04511052,0.336014707,26.69039146,6,2248,,,,,,,,,,,,,,,,,,,,,,,,,,4.8,,,,,0,,,,,0.025263158,24,950,0.005794308,0.044732008,0.020652174,0,0.062445261,0.004210526,0,0.02596702,0.004210526,0,0.019515643,0.745841035,807,1082,0.680102615,0.811579456,,,,,,,,,,,,,0.673234811,0.565311094,0.781158528,0.062,,1082,0.021876695,0.102123305,78.9578689,,,74.92726344,82.98847435,,,,,,,,,,,,,,,,,,,417.4065481,36,5746,275.0735454,607.3046128,,,,,,,,,,,,,462.9176154,290.108005,700.8628329,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.112,,,0.096,0.132,0.162,,,0.139,0.187,0.1,,,0.085,0.118,0,0,1843,,,0.121,270,,,,0.150695649,372.9717316,2475,,,,,,,,,,,,,,,,,,,,,,,,,,0.337,,,0.322,0.353,0.247311828,276,1116,0.211567147,0.283056509,0.156765677,95,606,0.109106102,0.204425251,0.00044405,1,2252,,,2252,,,,,,,,,,,2.562602631,,,,,,,,2.461225746,2.7469941,2.636434709,,,,,,,,2.487501558,2.780617227,0.03983065,,,,,-7951.377,,,,,0.464798737,23556,50680,0.3645287,0.565068774,50900,,,43039.74468,58760.25532,,,,,,,,,,68393,49964.23404,86821.76596,57031,41409.38298,72652.61702,,,,,,0.320209974,122,381,,,,,,,,0.269587426,,50900,,,15.625,2,128,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.70976431,1054,1485,,,0.336,,,,,7.109113782,,,,,0.809840426,609,752,0.760072902,0.859607949,0.028400598,19,669,0,0.093277574,0.676861702,509,752,0.559017233,0.794706171,2252,,,,,0.260657194,587,2252,,,0.251332149,566,2252,,,0.006660746,15,2252,,,0.013321492,30,2252,,,0.004884547,11,2252,,,0,0,2252,,,0.242451155,546,2252,,,0.709147425,1597,2252,,,0.022440393,48,2139,0,0.046225992,0.48401421,1090,2252,,,1,2296,2296,, -40,027,40027,OK,Cleveland County,2024,1,7308.962374,3587,819951,6948.844472,7669.080277,0,9291.255818,7455.755293,11126.75634,,2500.171108,1527.169465,3861.3115,1,8215.423116,6541.35972,9889.486513,,5574.763501,4508.320893,6641.206109,,7565.663892,7126.832198,8004.495585,,,,,2,,0.161,,,0.137,0.187,3.507357881,,,2.834887692,4.260583508,5.310462029,,,4.49596511,6.207305425,0.07750434,1518,19586,0.073759542,0.081249138,0,0.073224044,0.056344537,0.090103551,0.078031213,0.059816352,0.096246073,0.135576923,0.114770594,0.156383252,0.082434182,0.071235541,0.093632823,0.072665951,0.068211431,0.077120472,,,,0.069565217,0.056142033,0.082988402,0.164,,,0.132,0.199,0.346,,,0.292,0.401,8,0.055986863,0.108,,,0.259,,,0.217,0.304,0.813530359,240421,295528,,,0.163382569,,,0.133021915,0.197081294,0.307692308,36,117,0.260576554,0.355431939,451.6,1344,297597,,,13.12998416,978,74486,12.30707699,13.95289133,13.66853796,10.32506668,17.74973347,,,,15.31428571,11.86836108,19.44860152,16.36971047,13.72341458,19.01600636,11.92525719,10.94452675,12.90598764,,,,21.21801101,17.5845116,24.85151042,0.129273993,31914,246871,0.1173591,0.141188887,0.000514118,153,297597,,,1945.078431,0.000460634,138,299587,,,2170.92029,0.003581597,1073,299587,,,279.2050326,1883,,,,,3805,,372,1759,1818,0.47,,,,,0.37,0.42,0.46,0.38,0.47,0.48,,,,,0.49,0.47,0.37,0.35,0.48,0.922072615,173736,188419,0.916334065,0.927811165,0.698935356,56590,80966,0.673161763,0.724708948,0.025490236,3784,148449,,,0.13,7695,,0.09306383,0.16693617,0.233483224,0.138802888,0.328163559,0.116996047,0.037135361,0.196856734,0.165244111,0.076986705,0.253501516,0.158849211,0.125383973,0.192314449,0.112727989,0.091587004,0.133868975,4.059210124,132793,32714,3.801096252,4.317323997,0.225358577,13748,61005,0.196463874,0.254253281,7.661367554,228,297597,,,70.83980484,1013,1429987,66.47737249,75.20223718,71.87027416,52.99146664,95.28955662,,,,47.2838789,32.93495414,65.7604293,30.89862237,22.17338488,41.91747021,83.9596519,78.31193582,89.60736797,,,,10,,,,,1,,,,,0.133802165,14460,108070,0.122479082,0.145125248,0.105529997,0.095396087,0.115663907,0.024659943,0.019410376,0.029909509,0.007125012,0.003761104,0.010488919,0.777712236,114704,147489,0.765023117,0.790401356,0.734017019,0.67014289,0.797891149,0.712079927,0.642680184,0.781479671,0.658856607,0.602650953,0.715062261,0.739614306,0.689493057,0.789735555,0.733859506,0.714795557,0.752923456,0.337,,147489,0.320533289,0.353466711,77.87133194,,,77.52616223,78.21650165,76.66583273,74.82952131,78.50214415,86.87445252,83.71219884,90.0367062,76.22743624,74.29859727,78.15627521,82.40405448,80.07551597,84.73259298,77.50422419,77.10874489,77.8997035,,,,383.3154885,3587,819951,370.4736356,396.1573414,476.370791,406.8000426,545.9415395,135.248482,99.72155395,179.3198653,414.1388897,347.0752704,481.202509,257.402815,212.2151635,302.5904664,399.3238105,384.3012625,414.3463586,,,,49.13625484,140,284922,40.99682273,57.27568694,,,,,,,67.17557252,33.53380377,120.195655,56.1783407,35.20666702,85.05468294,49.59073394,39.72014497,61.16998711,,,,6.540255526,129,19724,5.411614241,7.668896812,,,,,,,,,,,,,5.695870494,4.48769811,7.12923128,,,,,,,0.11,,,0.094,0.127,0.164,,,0.142,0.187,0.1,,,0.086,0.117,133,339,254849,,,0.108,31450,,,,0.055986863,14318.92022,255755,,,14.0443456,122,868677,11.5521756,16.5365156,,,,,,,,,,,,,16.23661504,13.19631951,19.76749622,,,,0.315,,,0.302,0.328,0.155190601,28689,184863,0.139701239,0.170679962,0.05772462,3779,65466,0.045809727,0.069639514,0.001024744,307,299587,,,975.8534202,0.859594384,2755,3205,,,0.046057965,909,19736,0.029553097,0.062562834,3.151481984,,,,,,3.804520888,2.6118824,2.902808835,3.261967809,3.093839223,,,,,,3.809148673,2.427598407,2.877729031,3.205758193,0.042937117,,,,,-951.4370933,,,,,0.736922921,43673,59264,0.705262518,0.768583324,70923,,,66594.31915,75251.68085,73797,66238.19149,81355.80851,65179,49668.19149,80689.80851,58641,47818.70213,69463.29787,61275,55580.87234,66969.12766,74958,71646.85106,78269.14894,,,,,,0.439092172,19908,45339,,,32.27423965,,,,,0.291090337,,70923,,,14.95104525,226,15116,,,2.823861631,56,1983100,2.133114729,3.667019213,,,,,,,10.91713892,5.449796413,19.53377715,,,,2.194485188,1.491046216,3.114896555,,,,16.45666738,241,1429987,14.33789616,18.57543859,16.85330007,15.25020644,7.313066758,28.04567262,,,,,,,7.854179672,3.920778194,14.05329698,18.79493081,16.13201243,21.45784919,,,,12.3078042,176,1429987,10.48944233,14.12616607,14.97297378,7.180122922,27.53583189,,,,16.21161562,8.376778359,28.31842997,,,,13.84493671,11.5515197,16.13835371,,,,10.53905502,209,1983100,9.110211724,11.96789831,,,,,,,,,,7.840765259,4.286619329,13.1554718,11.96348377,10.15975852,13.76720901,,,,,,,,,,,0.562338028,119778,213000,,,0.693,,,,,78.75836436,,,,,0.638760164,73055,114370,0.626591979,0.65092835,0.115249074,12787,110951,0.104216375,0.126281773,0.909110781,103975,114370,0.899792345,0.918429217,299587,,,,,0.201300457,60307,299587,,,0.150433764,45068,299587,,,0.05514258,16520,299587,,,0.054414911,16302,299587,,,0.048416654,14505,299587,,,0.001375227,412,299587,,,0.102574544,30730,299587,,,0.690216865,206780,299587,,,0.012851417,3604,280436,0.010659799,0.015043036,0.500649227,149988,299587,,,0.157149238,46442,295528,, -40,029,40029,OK,Coal County,2024,1,14587.68891,138,14865,10765.54845,18409.82938,0,,,,2,,,,2,,,,2,,,,2,13034.80103,8598.752104,17470.84995,,,,,2,,0.245,,,0.212,0.278,4.906317428,,,3.953132852,5.955555914,6.075161618,,,4.895601426,7.351096345,0.065510597,34,519,0.044223553,0.086797642,0,,,,,,,,,,,,,0.074927954,0.047226597,0.102629311,,,,,,,0.252,,,0.21,0.296,0.423,,,0.339,0.509,6,0.112859206,0.172,,,0.344,,,0.289,0.4,0.455563995,2399,5266,,,0.126285068,,,0.098123184,0.158767431,0.5,2,4,0.222237796,0.705426462,549.7,29,5276,,,45.53415061,52,1142,34.00708161,59.71198051,42.34527687,22.54707652,72.41171309,,,,,,,,,,53.87205387,36.84844497,76.05126613,,,,,,,0.232790075,957,4111,0.206577309,0.259002841,0.000189538,1,5276,,,5276,0.000188218,1,5313,,,5313,0.000941088,5,5313,,,1062.6,9353,,,,,6348,,,,9714,0.33,,,,,0.49,,,,0.31,0.21,,,,,0.38,,,,0.18,0.836871508,2996,3580,0.809868971,0.863874046,0.428082192,500,1168,0.356782126,0.499382258,0.032437047,76,2343,,,0.299,375,,0.198914894,0.399085106,0.132596685,0.044926381,0.22026699,,,,,,,0.258333333,0,0.525374172,0.291262136,0.178506524,0.404017747,4.835002335,93185,19273,3.984415447,5.685589222,0.246865204,315,1276,0.156945351,0.336785057,11.37225171,6,5276,,,163.5174419,45,27520,119.2707441,218.7992024,,,,,,,,,,,,,173.3759549,118.5890248,244.7551177,,,,8.7,,,,,1,,,,,0.102222222,230,2250,0.074403327,0.130041117,0.065139263,0.036215012,0.094063514,0.035111111,0.017052867,0.053169356,0.008444444,0,0.017699814,0.742215416,1454,1959,0.693215578,0.791215254,,,,,,,,,,,,,0.699711261,0.632401531,0.767020991,0.355,,1959,0.284008828,0.425991172,70.42739223,,,67.89990346,72.95488099,,,,,,,,,,,,,71.23746612,68.31561351,74.15931874,,,,667.2145005,138,14865,548.1481934,786.2808077,,,,,,,,,,,,,635.0433991,499.5683552,770.5184429,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.154,,,0.135,0.176,0.207,,,0.181,0.235,0.133,,,0.113,0.153,,,,,,0.172,910,,,,0.112859206,668.6907937,5925,,,,,,,,,,,,,,,,,,,,,,,,,,0.358,,,0.344,0.373,0.27914952,814,2916,0.244596328,0.313702711,0.122834646,156,1270,0.089472944,0.156196348,0.00075287,4,5313,,,1328.25,,,,,,,,,,,2.978276101,,,,,,,,,2.963970704,3.083120416,,,,,,,,,3.16986308,0.041045486,,,,,-18151.834,,,,,0.824110716,36860,44727,0.7113903,0.936831132,44040,,,38934.46809,49145.53192,36667,22888.61702,50445.38298,76094,62751.70213,89436.29787,,,,40833,18111.29787,63554.70213,49219,43210.31915,55227.68085,,,,,,0.676245211,706,1044,,,,,,,,0.324318801,,44040,,,20.23121387,7,346,,,,,,,,,,,,,,,,,,,,,,,,,,47.80864246,12,27520,23.86590206,85.54286747,43.60465116,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,43.78960383,17,38822,25.50905793,70.1113977,,,,,,,,,,,,,45.54425383,23.53338056,79.55664585,,,,,,,,,,,0.603106332,2524,4185,,,0.429,,,,,15.68531088,,,,,0.722515603,1505,2083,0.682267146,0.762764059,0.084807492,163,1922,0.04970275,0.119912235,0.77868459,1622,2083,0.738530958,0.818838221,5313,,,,,0.240918502,1280,5313,,,0.207792208,1104,5313,,,0.011104837,59,5313,,,0.224167137,1191,5313,,,0.003387916,18,5313,,,0,0,5313,,,0.057029927,303,5313,,,0.632599285,3361,5313,,,0.00732899,36,4912,0,0.020652463,0.499341239,2653,5313,,,1,5266,5266,, -40,031,40031,OK,Comanche County,2024,1,10931.59328,2068,344316,10288.94317,11574.24339,0,18263.62933,14935.82053,21591.43814,,2536.341178,1159.776694,4814.765612,1,13754.48605,11982.40785,15526.56426,,7333.780216,5877.171711,8790.38872,,10577.5458,9711.059269,11444.03232,,,,,2,,0.205,,,0.177,0.232,4.18894645,,,3.405106233,5.001393658,5.065256758,,,4.178846026,5.960716503,0.080390492,947,11780,0.075480425,0.08530056,0,0.0688,0.048955884,0.088644116,0.078512397,0.044623124,0.11240167,0.130254281,0.115226067,0.145282495,0.071153846,0.060105545,0.082202147,0.068428978,0.062028057,0.074829899,,,,0.082089552,0.063114973,0.101064131,0.2,,,0.166,0.235,0.452,,,0.39,0.51,6.7,0.112044759,0.141,,,0.31,,,0.265,0.355,0.702125903,85045,121125,,,0.160576437,,,0.128578085,0.194019729,0.372881356,22,59,0.306973907,0.437657939,712.7,870,122063,,,32.00624512,861,26901,29.86833609,34.14415416,32.69447576,24.82628618,42.26519151,,,,30.02401922,25.21917545,34.82886299,35.90928181,30.52702104,41.29154259,31.04413702,27.9103824,34.17789165,,,,36.01617053,29.23966816,43.89217578,0.151149105,14640,96858,0.134468254,0.167829956,0.000704554,86,122063,,,1419.337209,0.001219056,150,123046,,,820.3066667,0.003616534,445,123046,,,276.5078652,4350,,,,,5335,1032,6414,3685,4078,0.35,,,,,0.14,0.26,0.35,0.33,0.38,0.34,,,,,0.42,0.34,0.26,0.28,0.36,0.902894993,70610,78204,0.8932486,0.912541385,0.593235985,21207,35748,0.56219611,0.624275861,0.036120993,1716,47507,,,0.188,5386,,0.130808511,0.245191489,0.235251275,0.109193867,0.361308682,0.293064877,0.100024261,0.486105493,0.267769334,0.206307634,0.329231034,0.198274404,0.152483183,0.244065625,0.124644511,0.098425934,0.150863088,4.582873041,112010,24441,4.209370276,4.956375807,0.298215595,8540,28637,0.263760823,0.332670367,8.192490763,100,122063,,,91.44041766,554,605859,83.82595274,99.05488257,109.8085769,77.31537192,151.3566587,,,,102.9351814,82.86001201,123.0103508,41.19115117,28.52606962,57.56050507,104.7313034,93.80570513,115.6569016,,,,8.2,,,,,1,,,,,0.143154487,6190,43240,0.127756907,0.158552067,0.113641673,0.09836027,0.128923075,0.02960222,0.02182707,0.03737737,0.008441258,0.005395304,0.011487212,0.75756283,40844,53915,0.742805746,0.772319915,0.797101449,0.732148912,0.862053987,0.651810585,0.568420694,0.735200476,0.706745221,0.667604486,0.745885956,0.735687838,0.692754053,0.778621623,0.773020118,0.754045238,0.791994998,0.155,,53915,0.138361757,0.171638244,73.90533728,,,73.38192243,74.42875213,67.19966104,65.11999409,69.27932799,91.70336442,82.18540544,101.2213234,71.39045911,70.01460483,72.7663134,78.19178083,76.10491464,80.27864703,74.17885631,73.50424775,74.85346488,,,,555.7796732,2068,344316,531.2754683,580.2838781,954.1866473,817.5754092,1090.797885,174.7434835,106.7378594,269.8771377,689.9718226,619.3167305,760.6269147,400.2927902,327.6887034,472.896877,537.0143197,506.2775004,567.7511389,,,,75.41535579,99,131273,61.29387982,91.81548967,,,,,,,133.2149201,87.78947174,193.8207147,62.70329584,35.84035135,101.8262241,67.92352805,48.74309643,92.14593547,,,,7.994004497,96,12009,6.475169308,9.762047714,,,,,,,11.98801199,7.680945482,17.83721159,,,,5.95621378,4.193724174,8.209856108,,,,,,,0.127,,,0.111,0.145,0.173,,,0.15,0.197,0.125,,,0.109,0.143,228.6,230,100631,,,0.141,17170,,,,0.112044759,13904.53046,124098,,,23.35735935,85,363911,18.65702906,28.88173656,,,,,,,29.27652539,17.05465492,46.87455322,,,,23.78404091,17.53647423,31.53418767,,,,0.387,,,0.375,0.399,0.187711652,12749,67918,0.166264844,0.209158461,0.068718967,2076,30210,0.050846627,0.086591308,0.001032134,127,123046,,,968.8661417,0.747599432,1052.62,1408,,,0.085985945,624,7257,0.055238461,0.116733428,3.008192135,,,,,,3.361866164,2.649216384,2.963875892,3.148778311,2.914435597,,,,,,3.276040898,2.554781603,2.81032231,3.123073405,0.055951957,,,,,-3722.8222,,,,,0.787570112,36648,46533,0.753050923,0.822089301,55600,,,51834.89362,59365.10638,47866,36786.34043,58945.65957,55584,43300.93617,67867.06383,47702,42440.38298,52963.61702,57872,51122.21277,64621.78723,60172,56914.46809,63429.53192,,,,,,0.538184265,11198,20807,,,28.34097273,,,,,0.323453237,,55600,,,18.6746988,155,8300,,,10.20356703,87,852643,8.172638905,12.58606223,,,,,,,31.56610948,22.93598347,42.37602861,,,,6.084116051,4.074628006,8.73780553,,,,20.05851745,125,605859,16.46598992,23.65104497,20.63186319,,,,,,,14.41620506,8.2401068,23.41101384,,,,23.89979819,18.97988959,29.70526694,,,,22.11735734,134,605859,18.37248595,25.86222873,,,,,,,41.78556869,29.98604552,56.6868422,,,,23.14176109,18.29260182,28.88196517,,,,13.01834414,111,852643,10.59647691,15.44021136,25.63828651,13.24767676,44.78492693,,,,12.91340842,7.65330424,20.40875261,10.5191185,5.435382027,18.37478309,13.00742052,9.97271473,16.67492607,,,,,,,,,,,0.39746779,35631,89645,,,0.579,,,,,57.16567743,,,,,0.547705328,24334,44429,0.531855171,0.563555484,0.128996179,5536,42916,0.114088166,0.143904191,0.87974071,39086,44429,0.865651832,0.893829588,123046,,,,,0.23822798,29313,123046,,,0.136355509,16778,123046,,,0.154551956,19017,123046,,,0.069396811,8539,123046,,,0.027997659,3445,123046,,,0.007233067,890,123046,,,0.149675731,18417,123046,,,0.547453798,67362,123046,,,0.010061177,1143,113605,0.007263339,0.012859015,0.479259789,58971,123046,,,0.277902993,33661,121125,, -40,033,40033,OK,Cotton County,2024,1,11841.00331,150,15371,8402.390835,15279.61579,0,,,,2,,,,2,,,,2,,,,2,9899.523674,6647.554865,13151.49248,,,,,2,,0.217,,,0.187,0.252,4.352392554,,,3.417811258,5.369133638,5.663020282,,,4.457416744,6.93087353,0.068627451,28,408,0.044095243,0.093159659,0,,,,,,,,,,,,,0.056140351,0.029414908,0.082865794,,,,,,,0.223,,,0.183,0.271,0.416,,,0.33,0.505,6.8,0.069364327,0.157,,,0.326,,,0.273,0.386,0.00271395,15,5527,,,0.131190781,,,0.101036327,0.163453523,0.333333333,3,9,0.150331965,0.513162068,365,20,5480,,,32.81378179,40,1219,23.44264679,44.6830574,,,,,,,,,,,,,31.78807947,20.36722232,47.29814251,,,,,,,0.162854529,712,4372,0.140216231,0.185492827,,0,5480,,,,,0,5477,,,,0.000365163,2,5477,,,2738.5,4244,,,,,15774,,,,3233,0.31,,,,,,,,,0.32,0.29,,,,,0.34,,,0.38,0.29,0.839791938,3229,3845,0.808849359,0.870734517,0.478297162,573,1198,0.379470129,0.577124195,0.030517306,82,2687,,,0.28,349,,0.191829787,0.368170213,0.3375,0.062955819,0.612044181,,,,,,,0.08,0,0.19158449,0.367875648,0.23797789,0.497773406,6.537646199,125209,19152,5.13084358,7.944448818,0.172278778,220,1277,0.091178206,0.253379351,12.77372263,7,5480,,,126.6669012,36,28421,88.71594039,175.3603831,,,,,,,,,,,,,135.4950241,90.74314413,194.5934562,,,,8.2,,,,,1,,,,,0.115124154,255,2215,0.078601295,0.151647012,0.085805568,0.049703621,0.121907515,0.0248307,0.000487451,0.049173949,0.008577878,0,0.017250263,0.805779856,1896,2353,0.760758502,0.850801209,,,,,,,,,,,,,0.85884101,0.784494183,0.933187837,0.451,,2353,0.377406842,0.524593158,72.06194427,,,69.59685638,74.52703215,,,,,,,,,,,,,73.37784192,70.96553349,75.79015034,,,,638.2237287,150,15371,529.7764011,746.6710562,,,,,,,,,,,,,593.7781142,477.8944303,709.6617982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.138,,,0.119,0.16,0.192,,,0.166,0.221,0.117,,,0.099,0.136,,,,,,0.157,880,,,,0.069364327,429.5732769,6193,,,,,,,,,,,,,,,,,,,,,,,,,,0.356,,,0.341,0.372,0.196422868,615,3131,0.166635634,0.226210102,0.078866769,103,1306,0.053845492,0.103888045,,0,5477,,,,,,,,,,,,,,3.022613882,,,,,,,,,3.191001965,3.081241285,,,,,,,,,3.288864341,0.034039996,,,,,-8351.503,,,,,0.703514039,39840,56630,0.566905377,0.8401227,51036,,,44157.53192,57914.46809,,,,,,,,,,,,,64196,54676,73716,,,,,,0.55861366,548,981,,,,,,,,0.280899757,,51036,,,21.35231317,6,281,,,,,,,,,,,,,,,,,,,,,,,,,,33.84448298,10,28421,15.47585275,64.24737106,35.18525034,,,,,,,,,,,,,,,,,,,35.18525034,10,28421,16.87269518,64.70692812,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.576681614,2572,4460,,,0.461,,,,,1.382085073,,,,,0.770029674,1557,2022,0.723512336,0.816547012,0.085925145,163,1897,0.042665396,0.129184894,0.81305638,1644,2022,0.764205087,0.861907673,5477,,,,,0.232061348,1271,5477,,,0.20449151,1120,5477,,,0.023187877,127,5477,,,0.112287749,615,5477,,,0.003651634,20,5477,,,0.003103889,17,5477,,,0.099872193,547,5477,,,0.731970057,4009,5477,,,0.000948947,5,5269,0,0.01328506,0.498813219,2732,5477,,,1,5527,5527,, -40,035,40035,OK,Craig County,2024,1,10945.56345,306,38496,8981.419509,12909.70739,0,15120.16189,10645.98935,20841.15146,,,,,2,,,,2,,,,2,11406.2234,8650.581473,14161.86533,,,,,2,,0.232,,,0.204,0.265,4.64001416,,,3.718762429,5.721124361,5.900465001,,,4.788374308,7.192942709,0.074003795,78,1054,0.058199783,0.089807808,0,0.06374502,0.033521892,0.093968148,,,,,,,,,,0.071428571,0.051317767,0.091539376,,,,0.123966942,0.065248222,0.182685662,0.246,,,0.208,0.292,0.437,,,0.356,0.522,6.1,0.137663529,0.155,,,0.321,,,0.27,0.38,0.421067555,5940,14107,,,0.136369482,,,0.108054534,0.170306263,0.181818182,2,11,0.044108943,0.367070091,375.5,53,14115,,,34.26351113,97,2831,27.78539936,41.79857786,35.22727273,23.9352227,50.00230171,,,,,,,,,,32.07412687,23.39508823,42.91770527,,,,50.47318612,28.84978692,81.96529211,0.189851767,1998,10524,0.168404959,0.211298576,0.00042508,6,14115,,,2352.5,0.000637258,9,14123,,,1569.222222,0.006018551,85,14123,,,166.1529412,3060,,,,,3288,,,,2969,0.39,,,,,0.34,,0.27,,0.4,0.43,,,,,0.47,,0.34,,0.42,0.850448453,8439,9923,0.83243806,0.868458847,0.405986632,1397,3441,0.3486073,0.463365964,0.030753633,182,5918,,,0.267,818,,0.183595745,0.350404255,0.25608343,0.176238937,0.335927922,,,,,,,0.308457711,0.08545175,0.531463673,0.23028169,0.165345581,0.295217799,3.831013831,88914,23209,3.223018989,4.439008673,0.313026572,966,3086,0.24195049,0.384102653,13.46085724,19,14115,,,128.0175567,91,71084,103.071751,157.1771917,169.3078694,109.5671262,249.9318143,,,,,,,,,,141.9046761,109.0434494,181.5577243,,,,8.7,,,,,1,,,,,0.156537753,850,5430,0.120023503,0.193052004,0.109665428,0.079592289,0.139738566,0.027440147,0.007903454,0.046976841,0.041436464,0.017301238,0.06557169,0.740182997,3883,5246,0.720005235,0.760360758,0.844583987,0.76897128,0.920196695,,,,,,,,,,0.739243431,0.704504742,0.773982119,0.297,,5246,0.256036325,0.337963675,73.34214059,,,71.91141485,74.77286634,69.6243096,66.4374701,72.81114911,,,,,,,,,,72.95052168,71.02891225,74.8721311,,,,578.36284,306,38496,510.5908281,646.1348519,753.8946616,583.0620766,959.1388558,,,,,,,,,,588.6255956,504.1951093,673.0560819,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.147,,,0.129,0.17,0.2,,,0.176,0.23,0.129,,,0.112,0.15,218.6,26,11896,,,0.155,2190,,,,0.137663529,2068.945174,15029,,,,,,,,,,,,,,,,,,,,,,,,,,0.368,,,0.355,0.381,0.228723404,1720,7520,0.20012766,0.257319149,0.09459032,299,3161,0.065994575,0.123186064,0.00120371,17,14123,,,830.7647059,0.795220588,162.225,204,,,,,,,,2.779267726,,,,,,,,,2.686596161,2.991745452,,,,,,,,,2.918759583,0.046963003,,,,,-5339.798335,,,,,0.706148282,32802,46452,0.646397153,0.765899411,48922,,,42437.91489,55406.08511,51458,43379.70213,59536.29787,30521,11618.02128,49423.97872,,,,,,,50169,44321.17021,56016.82979,,,,,,0.635359116,1495,2353,,,50.34033825,,,,,0.314602837,,48922,,,40.10695187,30,748,,,,,,,,,,,,,,,,,,,,,,,,,,30.78252635,22,71084,18.8027668,47.54111533,30.94929942,,,,,,,,,,,,,38.91495416,22.24325869,63.19544753,,,,19.69500872,14,71084,10.76744454,33.04487806,,,,,,,,,,,,,22.52455176,10.80139809,41.42345266,,,,23.87418306,24,100527,15.29663956,35.52289195,48.43084076,23.22447063,89.0660405,,,,,,,,,,20.56051117,10.94760627,35.15910027,,,,,,,,,,,0.547368421,6032,11020,,,0.521,,,,,14.18720098,,,,,0.694165379,3593,5176,0.66778809,0.720542668,0.121793535,584,4795,0.092006244,0.151580826,0.723531685,3745,5176,0.685606048,0.761457322,14123,,,,,0.224598173,3172,14123,,,0.194859449,2752,14123,,,0.028180981,398,14123,,,0.218862848,3091,14123,,,0.014373717,203,14123,,,0.002265808,32,14123,,,0.051617928,729,14123,,,0.59541174,8409,14123,,,0.010803159,145,13422,0.00130546,0.020300858,0.488777172,6903,14123,,,0.640745729,9039,14107,, -40,037,40037,OK,Creek County,2024,1,11395.59683,1566,198394,10516.13129,12275.06237,0,16892.39415,13615.07229,20169.716,,,,,2,19746.35071,12517.49249,29629.22144,1,,,,2,11012.20272,9999.326658,12025.07878,,,,,2,,0.199,,,0.171,0.229,4.347960532,,,3.4935573,5.303813676,5.927334669,,,4.888610316,7.061403807,0.079958283,460,5753,0.072949471,0.086967094,0,0.083596215,0.062051131,0.105141298,,,,0.127906977,0.057318247,0.198495707,0.073619632,0.045270565,0.101968699,0.080496894,0.072091864,0.088901925,,,,0.068642746,0.049068613,0.088216879,0.217,,,0.182,0.258,0.417,,,0.35,0.49,7.7,0.053269154,0.122,,,0.295,,,0.251,0.348,0.592970427,42548,71754,,,0.156479664,,,0.125924799,0.191586404,0.176470588,12,68,0.117424769,0.243156342,358.2,258,72029,,,26.99756317,421,15594,24.41863296,29.57649337,25.92414786,19.47501775,33.82538953,,,,,,,21.45922747,13.88728056,31.67805296,25.58024691,22.46486767,28.69562615,,,,43.77487209,34.54644449,54.71107931,0.168007807,9813,58408,0.152518445,0.183497169,0.000222133,16,72029,,,4501.8125,0.000371394,27,72699,,,2692.555556,0.002503473,182,72699,,,399.445055,3432,,,,,5033,,3321,9541,3251,0.37,,,,,0.23,,0.33,,0.38,0.42,,,,,0.25,,0.34,0.42,0.43,0.903042712,44548,49331,0.894677126,0.911408297,0.526472953,9168,17414,0.49489033,0.558055576,0.035072685,1105,31506,,,0.186,3060,,0.128808511,0.243191489,0.235390947,0.174008186,0.296773707,,,,0.087323944,0.002322547,0.172325341,0.181309904,0.082772292,0.279847517,0.163964486,0.136652477,0.191276494,4.441538402,115138,25923,4.219908015,4.663168789,0.217853537,3668,16837,0.186813735,0.248893339,11.52313651,83,72029,,,99.06681848,355,358344,88.76129373,109.3723432,119.0250764,86.48380274,159.7856095,,,,,,,72.70964615,37.57013517,127.0091193,100.8311153,88.84809789,112.8141327,,,,9.3,,,,,1,,,,,0.125023679,3300,26395,0.109344648,0.140702709,0.082675947,0.071523374,0.093828521,0.032960788,0.025559553,0.040362023,0.015722675,0.006801047,0.024644302,0.82688193,25506,30846,0.814390352,0.839373507,0.803535354,0.727363522,0.879707185,,,,0.867030965,0.761203816,0.972858115,0.71329158,0.646625905,0.779957254,0.7788859,0.757548143,0.800223657,0.43,,30846,0.403224607,0.456775393,73.48257118,,,72.81799175,74.14715061,68.96296549,66.81879599,71.107135,,,,,,,83.19973012,74.10722734,92.2922329,73.80364392,73.04721229,74.56007555,,,,586.2277511,1566,198394,555.8110298,616.6444724,826.6727592,705.8360031,947.5095153,,,,973.2410099,717.5910919,1290.376382,,,,570.598766,536.8705555,604.3269765,,,,61.04757641,45,73713,44.52852114,81.68646032,,,,,,,,,,,,,65.31265801,44.37678236,92.70610463,,,,7.443309676,43,5777,5.38676012,10.02608929,,,,,,,,,,,,,6.820950061,4.53247178,9.858171972,,,,,,,0.129,,,0.113,0.148,0.192,,,0.167,0.217,0.111,,,0.095,0.128,154.4,93,60242,,,0.122,8740,,,,0.053269154,3727.082883,69967,,,23.25192061,50,215036,17.25802365,30.65475858,,,,,,,,,,,,,22.35511094,15.65724487,30.94889652,,,,0.324,,,0.311,0.337,0.204599183,8568,41877,0.183152375,0.226045992,0.078403217,1365,17410,0.059339387,0.097467046,0.00041266,30,72699,,,2423.3,0.870599315,762.645,876,,,0.099026426,356,3595,0.064170665,0.133882186,3.038911632,,,,,,,2.75980546,2.758307648,3.129816182,3.034558567,,,,,,,2.747742338,2.996687758,3.148038007,0.037727101,,,,,-3566.223492,,,,,0.737036188,41773,56677,0.703272848,0.770799527,57545,,,52491.89362,62598.10638,58984,48848,69120,66806,31197.14894,102414.8511,51538,30603.53192,72472.46809,50625,36430.78723,64819.21277,63272,60311.14894,66232.85106,,,,,,0.525018795,6285,11971,,,49.85620517,,,,,0.288695803,,57545,,,15.13761468,66,4360,,,8.390803679,42,500548,6.047353247,11.341929,,,,,,,,,,,,,6.861534239,4.482181972,10.05373745,,,,18.79289959,69,358344,14.47282265,23.99811323,19.25524077,28.11132616,13.48047357,51.69772969,,,,,,,,,,17.98079625,13.21161276,23.91064721,,,,19.53430224,70,358344,15.22794692,24.6804157,,,,,,,,,,,,,18.53513149,13.75713185,24.43626015,,,,20.17788504,101,500548,16.24264682,24.11312326,25.44429656,13.54801631,43.51052204,,,,,,,,,,20.32069755,16.03677673,25.39738536,,,,,,,,,,,0.56795755,30505,53710,,,0.59,,,,,30.71957798,,,,,0.751808285,20580,27374,0.738415442,0.765201129,0.08232269,2145,26056,0.070894374,0.093751005,0.851428363,23307,27374,0.836902951,0.865953774,72699,,,,,0.23045709,16754,72699,,,0.185257019,13468,72699,,,0.021981045,1598,72699,,,0.110304131,8019,72699,,,0.008390762,610,72699,,,0.001458067,106,72699,,,0.054388644,3954,72699,,,0.739872626,53788,72699,,,0.006176115,419,67842,0.003538795,0.008813435,0.503569513,36609,72699,,,0.624745659,44828,71754,, -40,039,40039,OK,Custer County,2024,1,10108.87956,506,80319,8868.310171,11349.44894,0,32727.51385,24442.47273,42917.78024,,,,,2,29553.24764,17215.85582,47317.61234,1,7466.607441,5139.669002,10485.8929,,8509.46042,7115.52757,9903.39327,,,,,2,,0.19,,,0.162,0.22,3.982694748,,,3.194528456,4.845720686,5.521928245,,,4.509840536,6.591631266,0.070215176,186,2649,0.060484975,0.079945377,0,0.052631579,0.022357874,0.082905284,,,,0.193548387,0.095205226,0.291891548,0.065349544,0.04646576,0.084233328,0.068226121,0.055629114,0.080823128,,,,0.095238095,0.047784414,0.142691776,0.18,,,0.143,0.218,0.444,,,0.374,0.515,6.9,0.163355396,0.107,,,0.303,,,0.252,0.355,0.842457826,24021,28513,,,0.147206119,,,0.117773544,0.180784169,0.181818182,6,33,0.096932784,0.281792641,546.8,154,28163,,,25.91426496,214,8258,22.4421981,29.38633181,43.93673111,28.43353576,64.85928242,,,,,,,32.99492386,25.46478565,42.05473899,19.44894652,15.75370912,23.7504925,,,,46.35761589,28.69609489,70.86254025,0.190719623,4365,22887,0.168081325,0.21335792,0.000532614,15,28163,,,1877.533333,0.000573765,16,27886,,,1742.875,0.006311411,176,27886,,,158.4431818,3287,,,,,8873,,5725,,2944,0.36,,,,,0.1,,0.41,0.26,0.38,0.41,,,,,0.17,,0.27,0.3,0.43,0.880612245,14671,16660,0.851790087,0.909434403,0.644390033,4474,6943,0.56737411,0.721405957,0.026237131,395,15055,,,0.175,1186,,0.103510638,0.246489362,0.044117647,0,0.100924101,,,,0.093023256,0,0.267048454,0.151922186,0.059793665,0.244050707,0.105859591,0.053231778,0.158487404,5.411176923,119679,22117,4.196449944,6.625903902,0.205033414,1442,7033,0.142974195,0.267092633,16.68856301,47,28163,,,87.71319179,126,143650,72.39753189,103.0288517,154.713228,84.58316141,259.5825077,,,,,,,36.85141509,17.67168594,67.77106442,98.09388101,79.36380755,119.9146827,,,,8.3,,,,,0,,,,,0.158952782,1700,10695,0.126381871,0.191523692,0.129044466,0.094368559,0.163720372,0.020102852,0.007359973,0.032845731,0.018700327,0.006568994,0.030831661,0.819837769,11522,14054,0.790676586,0.848998951,0.756708408,0.675546287,0.837870529,,,,,,,0.730586371,0.693312242,0.7678605,0.848455411,0.830135248,0.866775574,0.202,,14054,0.165256508,0.238743492,73.49093732,,,72.51374492,74.46812972,60.25669644,56.81869491,63.69469797,,,,,,,79.84515235,73.87161373,85.81869097,74.6689776,73.54060345,75.79735175,,,,582.0558253,506,80319,529.8700892,634.2415613,1869.911779,1478.087665,2333.734526,,,,1505.19052,974.0799418,2221.958133,399.2705243,287.7590746,539.6977586,504.0463325,448.5770744,559.5155906,,,,41.89609768,14,33416,22.90498646,70.29453292,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.123,,,0.105,0.142,0.177,,,0.153,0.202,0.118,,,0.101,0.137,125.5,29,23113,,,0.107,3060,,,,0.163355396,4487.209372,27469,,,,,,,,,,,,,,,,,,,,,,,,,,0.328,,,0.315,0.342,0.232274143,3728,16050,0.202486909,0.262061377,0.097753744,705,7212,0.070349488,0.125157999,0.001004088,28,27886,,,995.9285714,0.926030928,359.3,388,,,,,,,,3.248354477,,,,,,,,2.847508184,3.579383842,3.289118729,,,,,,,,2.932662999,3.585169454,0.07922812,,,,,-2109.3906,,,,,0.706075269,39399,55800,0.608374117,0.803776421,54056,,,48426.21277,59685.78723,121402,30858.34043,211945.6596,22802,10186.51064,35417.48936,58138,55124.7234,61151.2766,53341,38309.17021,68372.82979,60205,51781.17021,68628.82979,,,,,,0.562898986,2998,5326,,,44.61022618,,,,,0.318854521,,54056,,,16.30720673,31,1901,,,5.427087085,11,202687,2.709182319,9.710557911,,,,,,,,,,,,,,,,,,,15.91561193,23,143650,9.852014635,24.32870348,16.01113818,,,,,,,,,,,,,18.22598089,10.61730552,29.18156099,,,,17.40341107,25,143650,11.26257003,25.69086787,,,,,,,,,,,,,18.58620903,11.01536541,29.37422327,,,,19.24149057,39,202687,13.68258077,26.30375104,,,,,,,,,,,,,22.51156441,15.29551583,31.95336875,,,,,,,,,,,0.516348708,10691,20705,,,0.543,,,,,47.5516623,,,,,0.648504673,6939,10700,0.625910482,0.671098864,0.134785568,1386,10283,0.100444527,0.16912661,0.892429907,9549,10700,0.868098701,0.916761112,27886,,,,,0.246933945,6886,27886,,,0.142759808,3981,27886,,,0.025138062,701,27886,,,0.087140501,2430,27886,,,0.015240623,425,27886,,,0.00121925,34,27886,,,0.199239762,5556,27886,,,0.660976834,18432,27886,,,0.028644656,760,26532,0.014970927,0.042318384,0.499856559,13939,27886,,,0.295128538,8415,28513,, -40,041,40041,OK,Delaware County,2024,1,11261.06679,991,113794,10024.67767,12497.45591,0,14250.83588,11631.96503,16869.70674,,,,,2,,,,2,,,,2,10246.41987,8671.07472,11821.76502,,,,,2,,0.229,,,0.199,0.261,4.596398049,,,3.757396211,5.576350754,6.129331243,,,5.093405268,7.329046624,0.076608785,225,2937,0.066989644,0.086227925,0,0.056530214,0.042398765,0.070661664,,,,,,,0.090909091,0.04704376,0.134774422,0.084296397,0.070098249,0.098494545,,,,0.12568306,0.077654082,0.173712038,0.241,,,0.202,0.282,0.407,,,0.338,0.486,6.7,0.092608032,0.151,,,0.328,,,0.279,0.381,0.545807857,22049,40397,,,0.130946854,,,0.103696136,0.1628702,0.441176471,15,34,0.356552717,0.520719635,285.4,117,41000,,,31.17647059,265,8500,27.42276607,34.9301751,42.86743516,35.16531854,50.56955178,,,,,,,28.84615385,17.09605894,45.5893594,26.21722846,21.20249101,31.23196592,,,,19.05829596,11.10215972,30.51417805,0.205538963,6056,29464,0.185283644,0.225794282,0.000390244,16,41000,,,2562.5,0.000458793,19,41413,,,2179.631579,0.002124937,88,41413,,,470.6022727,2631,,,,,2956,,,,2587,0.39,,,,,0.39,,,,0.39,0.45,,,,,0.46,0.32,,0.4,0.45,0.85857839,25547,29755,0.845761719,0.871395062,0.429801793,3643,8476,0.387275301,0.472328285,0.029314326,584,19922,,,0.259,2060,,0.170829787,0.347170213,0.41407958,0.336989196,0.491169965,0.083870968,0,0.270442046,,,,0.400881057,0.279037604,0.52272451,0.260277939,0.20200907,0.318546807,4.689557219,104005,22178,4.211806789,5.167307649,0.283223316,2274,8029,0.235403885,0.331042746,8.292682927,34,41000,,,100.2447289,213,212480,86.78216385,113.707294,91.24827642,66.55711896,122.0973731,,,,,,,,,,113.5764711,95.57952871,131.5734135,,,,8.9,,,,,1,,,,,0.137728075,2340,16990,0.120654928,0.154801223,0.099402985,0.083321059,0.115484911,0.025309005,0.019377894,0.031240116,0.018246027,0.012048757,0.024443297,0.755126506,11968,15849,0.73675231,0.773500703,0.770424837,0.713797423,0.827052251,,,,,,,0.733466934,0.584062187,0.882871681,0.696107211,0.664409324,0.727805098,0.407,,15849,0.371414539,0.442585461,74.05331401,,,73.14620793,74.96042008,69.95365923,68.2123933,71.69492517,,,,,,,86.43594976,62.24815798,110.6237415,75.03455002,73.88336821,76.18573183,,,,544.864376,991,113794,506.7598707,582.9688812,676.6306925,585.6216058,767.6397792,,,,,,,,,,508.4476612,462.3549237,554.5403987,,,,72.10575511,27,37445,47.51814697,104.910088,84.51656525,40.52897816,155.4289726,,,,,,,,,,70.74220362,36.55352891,123.5723931,,,,9.158751696,27,2948,6.035675079,13.32550287,,,,,,,,,,,,,,,,,,,,,,0.146,,,0.127,0.166,0.204,,,0.179,0.232,0.123,,,0.106,0.142,87.9,31,35283,,,0.151,6150,,,,0.092608032,3842.029414,41487,,,14.15706477,18,127145,8.39037381,22.37426581,,,,,,,,,,,,,17.45396517,9.542245174,29.28478778,,,,0.375,,,0.362,0.386,0.244497542,5321,21763,0.218284776,0.270710308,0.09812854,797,8122,0.071915774,0.124341306,0.000820998,34,41413,,,1218.029412,0.844402985,339.45,402,,,0.108604407,207,1906,0.065489862,0.151718953,2.844808355,,,,,,,,2.042594506,2.930686334,2.92925766,,,,,,,,2.610675546,3.024584653,0.072134548,,,,,-2722.784574,,,,,0.732537161,37355,50994,0.663966969,0.801107354,54799,,,51802.40426,57795.59575,45649,39051.7234,52246.2766,63500,50583.06383,76416.93617,,,,39844,26898.46809,52789.53192,54610,51264.29787,57955.70213,,,,,,0.726985631,4604,6333,,,88.73646209,,,,,0.272450227,,54799,,,20.3685742,42,2062,,,6.428975052,19,295537,3.870662951,10.03964092,,,,,,,,,,,,,5.852277866,2.921436025,10.47134167,,,,24.81469271,52,212480,18.10000714,33.20401121,24.47289157,21.22932301,10.18028556,39.04148087,,,,,,,,,,28.2695442,18.78490682,40.85736237,,,,25.41415663,54,212480,19.09189664,33.15996159,,,,,,,,,,,,,31.17785482,22.47025539,42.14340238,,,,21.99386202,65,295537,16.97439838,28.03298261,27.86618365,16.7772629,43.51649762,,,,,,,,,,21.28101042,15.20346585,28.97869609,,,,,,,,,,,0.512938727,17245,33620,,,0.427,,,,,10.37271039,,,,,0.749157641,12451,16620,0.734756018,0.763559265,0.114467814,1796,15690,0.097449981,0.131485646,0.788868833,13111,16620,0.769882457,0.807855209,41413,,,,,0.196411755,8134,41413,,,0.255161423,10567,41413,,,0.00589187,244,41413,,,0.239465868,9917,41413,,,0.019341753,801,41413,,,0.001786879,74,41413,,,0.044961727,1862,41413,,,0.627315094,25979,41413,,,0.004817105,187,38820,0.00183486,0.00779935,0.502450921,20808,41413,,,0.796890858,32192,40397,, -40,043,40043,OK,Dewey County,2024,1,11849.4205,98,12892,8609.807077,15907.29395,0,,,,2,,,,2,,,,2,,,,2,11638.57869,8106.696498,16186.44555,,,,,2,,0.194,,,0.166,0.224,4.057625472,,,3.335647028,4.859239273,5.501063852,,,4.406491767,6.655961406,0.059850374,24,401,0.036632855,0.083067893,0,,,,,,,,,,,,,0.059375,0.033481477,0.085268524,,,,,,,0.203,,,0.164,0.242,0.378,,,0.297,0.461,5.6,0.250883115,0.125,,,0.297,,,0.247,0.349,0.315566459,1415,4484,,,0.13544276,,,0.106058096,0.168867953,0.25,2,8,0.070127692,0.458326521,226.4,10,4417,,,19.81981982,22,1110,12.42097556,30.00744539,,,,,,,,,,,,,18.47575058,10.56048782,30.00346143,,,,,,,0.168067227,600,3570,0.146620418,0.189514035,0.000452796,2,4417,,,2208.5,0.000227221,1,4401,,,4401,,0,4401,,,,2985,,,,,,,,,2995,0.38,,,,,,,,,0.39,0.37,,,,,,,,,0.37,0.930890052,2667,2865,0.911252469,0.950527636,0.466181061,448,961,0.391027182,0.541334941,0.019825269,59,2976,,,0.165,190,,0.106617021,0.223382979,0.125,0,0.541237212,,,,,,,0.493670886,0.245196936,0.742144836,0.168202765,0.102770875,0.233634655,4.132693102,120063,29052,3.568033067,4.697353137,0.151878497,190,1251,0.086150326,0.217606669,20.37582069,9,4417,,,125.5492781,30,23895,84.70757071,179.2294011,,,,,,,,,,,,,129.2724546,83.6583166,190.8316443,,,,7.9,,,,,0,,,,,0.096209913,165,1715,0.058669877,0.133749948,0.060552616,0.025837566,0.095267666,0.013994169,0,0.030481696,0.026239067,0.008140236,0.044337899,0.777233116,1427,1836,0.735624282,0.818841949,,,,,,,,,,,,,0.833435021,0.784073518,0.882796525,0.313,,1836,0.254763101,0.371236899,72.31110841,,,69.78583462,74.83638221,,,,,,,,,,,,,72.151718,69.43196094,74.87147506,,,,597.5059571,98,12892,479.2172497,736.1440506,,,,,,,,,,,,,606.1709164,476.7918789,759.8404928,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.127,,,0.11,0.146,0.184,,,0.161,0.21,0.109,,,0.093,0.127,0,0,3581,,,0.125,570,,,,0.250883115,1206.747784,4810,,,,,,,,,,,,,,,,,,,,,,,,,,0.333,,,0.317,0.349,0.198837692,479,2409,0.171433437,0.226241947,0.105737705,129,1220,0.074758982,0.136716428,0.000908884,4,4401,,,1100.25,,,,,,,,,,,3.210917118,,,,,,,,,3.310235011,3.24055918,,,,,,,,,3.291600367,0.060680676,,,,,4881.627075,,,,,0.556022026,36554,65742,0.493480623,0.618563428,55444,,,47818.46809,63069.53192,56250,47147.02128,65352.97872,,,,,,,100417,26284.91489,174549.0851,60298,47447.78723,73148.21277,,,,,,0.432637571,456,1054,,,,,,,,0.279200635,,55444,,,7.042253521,2,284,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,41.53193509,14,33709,22.70589539,69.68352998,,,,,,,,,,,,,40.06848068,20.00204119,71.69357999,,,,,,,,,,,0.674964235,2359,3495,,,0.404,,,,,14.28367641,,,,,0.765565438,1205,1574,0.737915122,0.793215755,0.055090656,79,1434,0.022229834,0.087951478,0.839263024,1321,1574,0.793619727,0.884906322,4401,,,,,0.265848671,1170,4401,,,0.187911838,827,4401,,,0.007043854,31,4401,,,0.073619632,324,4401,,,0.014314928,63,4401,,,0,0,4401,,,0.078845717,347,4401,,,0.791865485,3485,4401,,,0,0,4229,0,0.011269703,0.50624858,2228,4401,,,1,4484,4484,, -40,045,40045,OK,Ellis County,2024,1,11603.96522,85,10324,7710.750616,16770.96059,0,,,,2,,,,2,,,,2,,,,2,11785.78607,7386.089382,17843.82175,1,,,,2,,0.193,,,0.16,0.224,4.121599169,,,3.266769912,5.096263621,5.450050863,,,4.352126363,6.641928702,0.090277778,26,288,0.057179556,0.123375999,0,,,,,,,,,,,,,0.098712446,0.060412713,0.13701218,,,,,,,0.2,,,0.158,0.24,0.394,,,0.316,0.478,6.6,0.136476807,0.134,,,0.304,,,0.248,0.361,0.368631635,1382,3749,,,0.13509707,,,0.106771133,0.168805914,0.6,3,5,0.381076261,0.751373291,159.5,6,3762,,,21.20535714,19,896,12.76701023,33.11479193,,,,,,,,,,,,,23.1884058,13.25417747,37.65651826,,,,,,,0.208376601,602,2889,0.182163835,0.234589367,0.000531632,2,3762,,,1881,0.001093793,4,3657,,,914.25,,0,3657,,,,2159,,,,,,,,,2211,0.29,,,,,,,,,0.3,0.45,,,,,,,,,0.45,0.865492694,2310,2669,0.825687193,0.905298195,0.534342258,459,859,0.4253728,0.643311717,0.022955524,48,2091,,,0.199,157,,0.126319149,0.271680851,0.580645161,0.454882023,0.706408299,,,,,,,0.105769231,0,0.258800508,0.162327718,0.098182757,0.226472679,4.374835054,112722,25766,3.465870242,5.283799866,0.138590203,116,837,0.079974207,0.197206199,37.21424774,14,3762,,,129.0722288,25,19369,83.52874102,190.5360715,,,,,,,,,,,,,137.6256582,87.24286164,206.5060609,,,,6.9,,,,,0,,,,,0.069620253,110,1580,0.041763417,0.09747709,0.059768638,0.027212583,0.092324693,0.007594937,0,0.015799682,0.00886076,0,0.018008512,0.767799872,1197,1559,0.710730935,0.824868809,,,,,,,,,,,,,0.773943054,0.705501711,0.842384397,0.27,,1559,0.187099393,0.352900607,77.24382274,,,73.1067049,81.38094058,,,,,,,,,,,,,76.45547558,72.20775093,80.70320024,,,,545.976148,85,10324,425.6151922,689.8080173,,,,,,,,,,,,,559.6574294,430.0561353,716.0449682,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.127,,,0.108,0.147,0.183,,,0.157,0.21,0.108,,,0.092,0.126,0,0,3159,,,0.134,510,,,,0.136476807,566.5152268,4151,,,,,,,,,,,,,,,,,,,,,,,,,,0.33,,,0.313,0.346,0.235994051,476,2017,0.205015327,0.266972774,0.14628821,134,916,0.104586082,0.187990337,0.000273448,1,3657,,,3657,,,,,,,,,,,3.458355176,,,,,,,,,3.43134191,3.416767311,,,,,,,,,3.467948417,0.03058786,,,,,2013.2631,,,,,0.829423256,45430,54773,0.659031383,0.999815129,54087,,,46063.51064,62110.48936,155000,116869.9575,193130.0426,98750,39809.40426,157690.5957,,,,60938,47793.48936,74082.51064,55855,47443.08511,64266.91489,,,,,,0.477464789,339,710,,,,,,,,0.28064045,,54087,,,9.56937799,2,209,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.626421405,1873,2990,,,0.377,,,,,7.59121785,,,,,0.815864023,1152,1412,0.768301811,0.863426234,0.05661821,74,1307,0.013948453,0.099287966,0.817988669,1155,1412,0.752211537,0.883765801,3657,,,,,0.217664753,796,3657,,,0.24364233,891,3657,,,0.006562756,24,3657,,,0.031993437,117,3657,,,0.005742412,21,3657,,,0.001367241,5,3657,,,0.086409625,316,3657,,,0.848783156,3104,3657,,,0.012903226,46,3565,0,0.02680439,0.50970741,1864,3657,,,1,3749,3749,, -40,047,40047,OK,Garfield County,2024,1,10842.71101,1144,170333,9913.276646,11772.14536,0,15657.54124,9812.497736,23705.70561,1,,,,2,21790.32112,13655.87823,32990.80804,1,5397.285155,3780.192169,7472.117684,,10987.77044,9854.464141,12121.07674,,16343.30722,11507.19653,22527.09616,,,0.191,,,0.164,0.219,3.921341336,,,3.141239,4.749300623,5.090433396,,,4.152822338,6.008392641,0.083347197,501,6011,0.076359555,0.090334839,0,0.10483871,0.050917862,0.158759557,,,,0.137096774,0.076557126,0.197636422,0.060909091,0.046775432,0.07504275,0.079140758,0.070245185,0.08803633,0.110821382,0.088605443,0.133037321,0.117647059,0.080500477,0.154793641,0.184,,,0.149,0.221,0.438,,,0.374,0.501,7.6,0.04965849,0.127,,,0.312,,,0.264,0.36,0.690561054,43399,62846,,,0.144057042,,,0.114866345,0.176139133,0.3,9,30,0.20331993,0.398927246,494.1,306,61926,,,31.0656411,416,13391,28.0803291,34.0509531,24.44987775,11.72466674,44.9641957,,,,35.8974359,19.62546225,60.22979775,33.47774715,26.74083537,41.39575278,25.15796864,21.79508057,28.52085671,104.2296073,81.09685583,131.9092388,32.85714286,20.82861005,49.30184699,0.189981096,9648,50784,0.169725777,0.210236416,0.000419856,26,61926,,,2381.769231,0.000613695,38,61920,,,1629.473684,0.004554264,282,61920,,,219.5744681,2851,,,,,1664,,3632,1234,2814,0.39,,,,,0.31,0.39,0.4,0.17,0.39,0.49,,,,,0.51,0.37,0.37,0.34,0.5,0.868349199,35301,40653,0.848232807,0.888465591,0.50036368,8255,16498,0.454445863,0.546281498,0.029094057,773,26569,,,0.211,3284,,0.145468085,0.276531915,,,,0.361035422,0.157082816,0.564988029,0.024509804,0,0.222057195,0.280291971,0.162599567,0.397984375,0.132372215,0.083742446,0.181001984,4.40496963,119661,27165,3.873675242,4.936264018,0.274642165,4394,15999,0.205850707,0.343433623,12.43419565,77,61926,,,98.58166446,302,306345,87.46309928,109.7002297,138.4083045,66.37216188,254.5377999,,,,145.9198563,77.69617792,249.5273983,31.98740189,17.03194432,54.69943141,115.6580452,101.5722283,129.743862,,,,8.9,,,,,0,,,,,0.122733024,2910,23710,0.096382495,0.149083553,0.088206441,0.059875327,0.116537554,0.026149304,0.015176556,0.037122052,0.013074652,0.006531022,0.019618282,0.781794502,22210,28409,0.759237276,0.804351728,0.897810219,0.707447596,1,,,,,,,0.797228507,0.733530877,0.860926137,0.798573227,0.770001481,0.827144974,0.14,,28409,0.115874179,0.164125821,73.55159677,,,72.84851037,74.25468317,,,,,,,66.16256507,60.75495049,71.57017965,79.64580958,76.83763086,82.4539883,73.39773705,72.56971271,74.22576139,,,,557.2183909,1144,170333,523.7153169,590.7214648,857.7787801,597.4743494,1192.962636,,,,902.1299866,652.8759444,1215.163172,281.360921,200.0751196,384.6296413,564.5487825,526.336452,602.7611129,907.5002705,581.4525469,1350.288468,65.66658884,45,68528,47.8976605,87.86706236,,,,,,,,,,,,,60.61046864,39.22389955,89.47300821,,,,7.597801487,47,6186,5.582578753,10.1034653,,,,,,,,,,,,,6.462035541,4.140348103,9.61499666,,,,,,,0.123,,,0.106,0.141,0.169,,,0.146,0.193,0.106,,,0.09,0.122,100.9,51,50541,,,0.127,7970,,,,0.04965849,3008.31134,60580,,,14.14188664,26,183851,9.23794987,20.72114053,,,,,,,,,,,,,17.32345143,10.98158219,25.99368289,,,,0.35,,,0.335,0.365,0.233965931,8186,34988,0.206561676,0.261370187,0.096134067,1589,16529,0.069921301,0.122346833,0.000888243,55,61920,,,1125.818182,0.849325033,648.035,763,,,,,,,,2.974622568,,,,,,2.362876777,,2.688193921,3.204132916,3.066010703,,,,,,2.451592534,,2.784005012,3.316433621,0.103596421,,,,,212.4362656,,,,,0.721978165,38950,53949,0.667632514,0.776323815,55515,,,52038.23404,58991.76596,49516,41287.57447,57744.42553,51250,14213.74468,88286.25532,40377,19307.89362,61446.10638,61421,54951.21277,67890.78723,67565,63746.2766,71383.7234,,,,,,0.608950453,6858,11262,,,41.09115969,,,,,0.333477439,,55515,,,9.037616023,37,4094,,,3.930481345,17,432517,2.289650226,6.293081385,,,,,,,,,,,,,,,,,,,18.57153442,54,306345,13.8701102,24.35409657,17.62718504,,,,,,,,,,,,,19.6738201,14.05526552,26.79015904,,,,13.0571741,40,306345,9.32823661,17.78016516,,,,,,,,,,,,,13.84324093,9.405810579,19.64937549,,,,15.4907206,67,432517,12.00509569,19.67266758,,,,,,,,,,,,,17.8838117,13.54502434,23.17055239,,,,,,,,,,,0.524433014,22430,42770,,,0.645,,,,,48.66502206,,,,,0.657442788,15657,23815,0.632484749,0.682400827,0.100843659,2295,22758,0.079656138,0.122031181,0.850514382,20255,23815,0.831366755,0.869662008,61920,,,,,0.256556848,15886,61920,,,0.169460594,10493,61920,,,0.028052326,1737,61920,,,0.034528424,2138,61920,,,0.014131137,875,61920,,,0.044282946,2742,61920,,,0.145897933,9034,61920,,,0.70873708,43885,61920,,,0.017394739,1013,58236,0.011503405,0.023286072,0.494525194,30621,61920,,,0.201317506,12652,62846,, -40,049,40049,OK,Garvin County,2024,1,13468.75941,658,74845,11884.13218,15053.38665,0,17995.67291,12387.39319,25272.61548,,,,,2,,,,2,11796.92248,7558.510831,17552.88555,1,13400.66136,11531.16261,15270.1601,,,,,2,,0.21,,,0.18,0.241,4.426474368,,,3.618821477,5.332421423,5.544495312,,,4.529749539,6.635146184,0.089032258,207,2325,0.077455958,0.100608558,0,0.075,0.047791392,0.102208608,,,,,,,0.105442177,0.070335171,0.140549183,0.085620915,0.071600417,0.099641413,,,,0.14,0.071990542,0.208009458,0.218,,,0.181,0.261,0.431,,,0.356,0.508,7.6,0.049865442,0.128,,,0.32,,,0.271,0.371,0.358005925,9185,25656,,,0.135304799,,,0.106181995,0.168149953,0.272727273,12,44,0.193946965,0.35487242,461.2,119,25804,,,34.9403662,208,5953,30.19191635,39.68881606,56.06060606,39.47184025,77.27216082,,,,,,,29.53020134,18.50641996,44.70907971,35.15524763,29.26835724,41.04213801,,,,23.4741784,11.25678098,43.16984986,0.19341172,4063,21007,0.173156401,0.213667039,0.000348783,9,25804,,,2867.111111,0.000350018,9,25713,,,2857,0.001788978,46,25713,,,558.9782609,2525,,,,,2415,,,,2584,0.35,,,,,0.35,,0.32,0.18,0.36,0.45,,,,,0.48,,0.39,0.44,0.45,0.872818967,15057,17251,0.858779833,0.886858101,0.443112816,2773,6258,0.398602391,0.487623241,0.028535591,364,12756,,,0.211,1322,,0.143085106,0.278914894,0.191666667,0.073052433,0.3102809,,,,0.144144144,0,0.386677206,0.268191268,0.176876569,0.359505967,0.145502646,0.114715223,0.176290068,4.195011515,107472,25619,3.799618778,4.590404252,0.261120649,1673,6407,0.215370102,0.306871197,14.72639901,38,25804,,,121.2333669,166,136926,102.79068,139.6760539,150.1899461,87.49117828,240.4686529,,,,,,,,,,131.7678526,109.4571555,154.0785497,,,,9.3,,,,,1,,,,,0.099759036,1035,10375,0.083400476,0.116117597,0.069710358,0.053543823,0.085876894,0.016385542,0.009089294,0.02368179,0.015421687,0.008831537,0.022011837,0.840265445,8990,10699,0.812640885,0.867890006,0.825059102,0.724582093,0.925536111,,,,,,,0.794756554,0.697119343,0.892393766,0.842998761,0.806224109,0.879773413,0.351,,10699,0.307416889,0.394583111,71.46557184,,,70.37994224,72.55120143,67.58237648,63.84227328,71.32247967,,,,,,,74.91749656,69.71375108,80.12124203,71.43303372,70.18210923,72.6839582,,,,680.942066,658,74845,626.6365759,735.2475561,828.4203546,616.8133672,1089.219775,,,,,,,552.6936774,364.228616,804.1402831,688.9144685,627.36392,750.465017,,,,91.25321076,27,29588,60.13644089,132.7686307,,,,,,,,,,,,,75.42290701,41.23440511,126.5468221,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.136,,,0.119,0.156,0.187,,,0.164,0.213,0.116,,,0.099,0.134,98.9,21,21231,,,0.128,3330,,,,0.049865442,1375.089422,27576,,,25.86015812,21,81206,16.00784546,39.52999869,,,,,,,,,,,,,30.12300226,17.85280024,47.60733038,,,,0.359,,,0.345,0.372,0.232296357,3405,14658,0.206083591,0.258509123,0.106069712,706,6656,0.078665456,0.133473967,0.001127834,29,25713,,,886.6551724,0.912742382,329.5,361,,,0.147413182,208,1411,0.093238444,0.20158792,2.931906522,,,,,,,,2.72319634,3.011768464,3.014741381,,,,,,,,2.981884541,3.089213234,0.06775707,,,,,-3775.453538,,,,,0.711673235,36659,51511,0.654436481,0.768909988,49245,,,45030.70213,53459.29787,44573,39757,49389,,,,51797,8930.787234,94663.21277,43241,39434.19149,47047.80851,55371,53480.10638,57261.89362,,,,,,0.575540958,2979,5176,,,52.24031744,,,,,0.295095949,,49245,,,12.20256254,20,1639,,,,,,,,,,,,,,,,,,,,,,,,,,22.7314514,30,136926,15.10488438,32.85327632,21.90964463,,,,,,,,,,,,,28.12385267,18.3714343,41.20796034,,,,12.41546529,17,136926,7.232466054,19.87836263,,,,,,,,,,,,,15.73347494,8.99304035,25.55017759,,,,32.20461357,62,192519,24.69109256,41.28486117,,,,,,,,,,,,,32.66951656,24.00433196,43.44353133,,,,,,,,,,,0.539091807,10922,20260,,,0.493,,,,,15.46968325,,,,,0.686755502,6803,9906,0.663963675,0.709547329,0.088872293,833,9373,0.071003702,0.106740883,0.843226328,8353,9906,0.824943905,0.86150875,25713,,,,,0.247501264,6364,25713,,,0.181581301,4669,25713,,,0.023101155,594,25713,,,0.095982577,2468,25713,,,0.005794734,149,25713,,,0.00140007,36,25713,,,0.106521993,2739,25713,,,0.723602847,18606,25713,,,0.008901343,216,24266,0.004646233,0.013156454,0.502275114,12915,25713,,,0.781415653,20048,25656,, -40,051,40051,OK,Grady County,2024,1,10655.23531,1112,155830,9687.176274,11623.29434,0,13179.93828,9180.309923,18330.10361,,,,,2,18571.29231,10153.09832,31159.47286,1,,,,2,10649.23036,9573.472264,11724.98845,,,,,2,,0.173,,,0.146,0.204,4.045452969,,,3.228375534,4.979636548,5.124282645,,,4.156105056,6.217712996,0.082312592,336,4082,0.073881184,0.090744,0,0.064393939,0.034784982,0.094002897,,,,0.230769231,0.137266123,0.324272338,0.063333333,0.035771751,0.090894916,0.079782121,0.070275913,0.089288329,,,,0.087108014,0.054482762,0.119733266,0.185,,,0.15,0.226,0.382,,,0.316,0.453,7.7,0.071120197,0.113,,,0.293,,,0.243,0.345,0.46172096,25300,54795,,,0.14289011,,,0.112958592,0.17734274,0.211267606,15,71,0.15140028,0.276251586,320.7,178,55508,,,23.23517547,288,12395,20.55164962,25.91870133,13.52874859,6.990501814,23.63200118,,,,41.00946372,21.83581227,70.12743192,23.07692308,15.56990309,32.94374261,22.92552002,19.78719198,26.06384805,,,,33.69434416,22.389647,48.69770872,0.156879602,7117,45366,0.14139024,0.172368963,0.000234201,13,55508,,,4269.846154,0.000317696,18,56658,,,3147.666667,0.00142963,81,56658,,,699.4814815,2303,,,,,3637,,,,2200,0.42,,,,,0.22,,0.5,,0.43,0.38,,,,,0.4,0.23,0.33,0.32,0.38,0.906301603,34028,37546,0.896786826,0.915816381,0.556064729,7766,13966,0.515378908,0.596750549,0.027382256,750,27390,,,0.188,2418,,0.141531915,0.234468085,0.14221219,0.035899909,0.248524471,,,,0.383673469,0.129514173,0.637832766,0.1859375,0.09338119,0.27849381,0.127148917,0.099657368,0.154640467,4.427719672,132929,30022,4.031606295,4.82383305,0.18419627,2380,12921,0.148848475,0.219544065,12.61079484,70,55508,,,110.5342368,307,277742,98.16953348,122.8989401,133.9712919,82.93034121,204.7893508,,,,,,,,,,113.8602632,99.91238097,127.8081455,,,,9.7,,,,,1,,,,,0.093509077,1880,20105,0.077275529,0.109742626,0.066063803,0.051587915,0.080539692,0.023625964,0.016407318,0.03084461,0.013926884,0.004240011,0.023613757,0.828921311,20510,24743,0.809506419,0.848336203,0.745318352,0.472560627,1,,,,,,,0.698313554,0.672589619,0.724037489,0.787177402,0.761114721,0.813240082,0.444,,24743,0.408554443,0.479445557,74.15936355,,,73.40660243,74.91212467,72.13029603,68.76335405,75.49723802,,,,,,,82.32508239,75.79868578,88.85147901,74.08385103,73.26584109,74.90186098,,,,543.1952129,1112,155830,509.8693955,576.5210303,656.8382586,501.2367886,845.4810395,,,,784.2916647,512.3253544,1149.169006,,,,546.2243377,509.8381032,582.6105721,,,,53.40131953,31,58051,36.28360576,75.79891045,,,,,,,,,,,,,47.39336493,28.94909854,73.1952083,,,,7.118311242,29,4074,4.767244756,10.22308234,,,,,,,,,,,,,,,,,,,,,,0.119,,,0.101,0.138,0.175,,,0.151,0.202,0.101,,,0.085,0.117,66.4,31,46678,,,0.113,6190,,,,0.071120197,3728.903069,52431,,,19.13326318,32,167248,13.08713785,27.01045877,,,,,,,,,,,,,19.2685367,12.5868479,28.2328707,,,,0.34,,,0.324,0.355,0.189728563,6151,32420,0.168281754,0.211175371,0.078202873,1067,13644,0.059139043,0.097266703,0.00074129,42,56658,,,1349,0.92762945,573.275,618,,,0.084214003,255,3028,0.049181733,0.119246273,3.174515959,,,,,,,2.95598143,2.878707747,3.244133664,3.250385308,,,,,,,3.02641101,2.907046692,3.332546973,0.046254142,,,,,-1733.614375,,,,,0.651301629,41456,63651,0.606162702,0.696440557,66930,,,61838.76596,72021.23404,69688,44539.23404,94836.76596,135833,30629.25532,241036.7447,38333,22731.6383,53934.3617,64826,47008.46809,82643.53192,76866,72947.19149,80784.80851,,,,,,0.480829127,4477,9311,,,71.78103109,,,,,0.23343792,,66930,,,19.7693575,60,3035,,,7.234300921,28,387045,4.807140425,10.45557905,,,,,,,,,,,,,5.73257536,3.39748747,9.05994053,,,,20.61605593,55,277742,15.44284059,26.96630875,19.80255057,,,,,,,,,,,,,21.53970136,15.65077998,28.9160437,,,,17.28222595,48,277742,12.74254914,22.91372431,,,,,,,,,,,,,16.90113282,11.96024749,23.19812527,,,,22.73637432,88,387045,18.23523706,28.01184907,,,,,,,,,,,,,23.56725426,18.50536354,29.58652956,,,,,,,,,,,0.555780104,23101,41565,,,0.6,,,,,25.46894057,,,,,0.750209143,15245,20321,0.734236685,0.766181602,0.078750191,1545,19619,0.063422515,0.094077868,0.848137395,17235,20321,0.830590178,0.865684612,56658,,,,,0.231070634,13092,56658,,,0.169561227,9607,56658,,,0.022256345,1261,56658,,,0.065974796,3738,56658,,,0.005277278,299,56658,,,0.000970737,55,56658,,,0.0693459,3929,56658,,,0.796004095,45100,56658,,,0.005830625,305,52310,0.00321419,0.00844706,0.496699495,28142,56658,,,0.721635186,39542,54795,, -40,053,40053,OK,Grant County,2024,1,9775.717694,84,11556,6809.145557,13595.65685,0,,,,2,,,,2,,,,2,,,,2,10226.70696,6948.551215,14515.99422,,,,,2,,0.179,,,0.15,0.21,3.948421967,,,3.101005282,4.851454101,5.508349412,,,4.384708364,6.66417964,0.055900621,18,322,0.030808042,0.080993201,1,,,,,,,,,,,,,0.059649123,0.032152419,0.087145827,,,,,,,0.187,,,0.146,0.23,0.403,,,0.32,0.489,6.3,0.191514029,0.121,,,0.285,,,0.228,0.338,,,4169,,,0.137000551,,,0.106401859,0.170117307,0.5,2,4,0.222237796,0.705426462,121,5,4131,,,19.62922574,18,917,11.63352321,31.02263933,,,,,,,,,,,,,19.37984496,10.84675211,31.96410707,,,,,,,0.150773994,487,3230,0.130518675,0.171029313,,0,4131,,,,,0,4124,,,,,0,4124,,,,2582,,,,,,,,,2610,0.4,,,,,,,,,0.4,0.32,,,,,,,,,0.32,0.92,2576,2800,0.892393798,0.947606202,0.517396184,461,891,0.418023314,0.616769054,0.019161244,53,2766,,,0.171,168,,0.107851064,0.234148936,,,,,,,,,,0.240506329,0,0.581783068,0.181001284,0.114875671,0.247126897,4.424433789,113500,25653,3.298602127,5.550265452,0.171399594,169,986,0.101520178,0.241279011,26.62793513,11,4131,,,115.9716102,25,21557,75.05071136,171.1969741,,,,,,,,,,,,,122.4511526,77.62352679,183.7368519,,,,8.2,,,,,1,,,,,0.056818182,100,1760,0.036021293,0.077615071,0.039053254,0.016761797,0.061344712,0.005681818,0,0.020337783,0.017045455,0.003153374,0.030937535,0.834816463,1501,1798,0.77522313,0.894409795,,,,,,,,,,,,,0.834355828,0.726946044,0.941765613,0.316,,1798,0.24986429,0.38213571,74.47828983,,,71.97883114,76.97774852,,,,,,,,,,,,,74.1101302,71.40015186,76.82010853,,,,518.653526,84,11556,405.0727068,654.2108504,,,,,,,,,,,,,536.226026,412.9593804,684.748664,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.12,,,0.101,0.139,0.179,,,0.154,0.205,0.103,,,0.086,0.12,,,,,,0.121,500,,,,0.191514029,866.9840086,4527,,,,,,,,,,,,,,,,,,,,,,,,,,0.325,,,0.309,0.341,0.176575771,395,2237,0.150363005,0.202788537,0.095785441,100,1044,0.065998207,0.125572675,0.000242483,1,4124,,,4124,,,,,,,,,,,3.296335337,,,,,,,,,3.353033113,3.339486149,,,,,,,,,3.319398559,0.034813846,,,,,5193.577333,,,,,0.627609518,32679,52069,0.466334237,0.788884799,55657,,,47590.61702,63723.38298,52222,42719.87234,61724.12766,,,,83942,83371.2766,84512.7234,77250,25283.19149,129216.8085,59472,53030.80851,65913.19149,,,,,,0.468503937,357,762,,,,,,,,0.297914009,,55657,,,12.87553648,3,233,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.674545455,2226,3300,,,0.49,,,,,0.04493124,,,,,0.779237845,1186,1522,0.735355872,0.823119818,0.04832978,68,1407,0.017332973,0.079326586,0.73653088,1121,1522,0.677110043,0.795951718,4124,,,,,0.24199806,998,4124,,,0.221871969,915,4124,,,0.01842871,76,4124,,,0.035887488,148,4124,,,0.003394762,14,4124,,,0.000242483,1,4124,,,0.059408341,245,4124,,,0.854267701,3523,4124,,,0.000769823,3,3897,0,0.012674273,0.493695441,2036,4124,,,1,4169,4169,, -40,055,40055,OK,Greer County,2024,1,8037.065463,109,15434,5933.310334,10140.82059,0,,,,2,,,,2,,,,2,,,,2,8924.12425,6431.723805,12062.82348,,,,,2,,0.215,,,0.188,0.243,4.296405056,,,3.648381757,5.02912074,5.374728966,,,4.55291294,6.251678122,0.075268817,28,372,0.048458627,0.102079008,0,,,,,,,,,,,,,0.061818182,0.033354482,0.090281881,,,,,,,0.219,,,0.185,0.253,0.404,,,0.347,0.462,6.8,0.070667951,0.154,,,0.313,,,0.272,0.356,0.572026953,3141,5491,,,0.150993009,,,0.128481064,0.176407247,0.333333333,2,6,0.110000414,0.553214291,437.4,24,5487,,,27.07749767,29,1071,18.13422515,38.8878034,,,,,,,,,,44.44444444,21.31283865,81.73491574,21.19205298,12.11308934,34.41456635,,,,,,,0.149186764,532,3566,0.126548466,0.171825062,0.000182249,1,5487,,,5487,0.001261943,7,5547,,,792.4285714,0.003425275,19,5547,,,291.9473684,4595,,,,,,,21429,,4605,0.37,,,,,,,,0.36,0.36,0.26,,,,,,,0.33,0.1,0.26,0.815676359,3226,3955,0.77037484,0.860977878,0.359229335,578,1609,0.258826383,0.459632287,0.034220532,63,1841,,,0.281,314,,0.170191489,0.391808511,,,,,,,,,,0.304166667,0.126906467,0.481426866,0.130081301,0.001014077,0.259148524,4.856188651,83609,17217,2.518817704,7.193559598,0.128755365,150,1165,0.053432006,0.204078724,16.40240569,9,5487,,,108.5168201,31,28567,73.73191437,154.0309641,,,,,,,,,,,,,133.1747919,88.49368207,192.4746537,,,,7.3,,,,,1,,,,,0.097156398,205,2110,0.05197783,0.142334967,0.073950382,0.030047769,0.117852995,0.016113744,0,0.036280177,0.01421801,0,0.031022846,0.845275182,1628,1926,0.776189073,0.914361291,,,,,,,,,,,,,0.779112754,0.732384704,0.825840804,0.279,,1926,0.191956014,0.366043986,75.00145972,,,73.12926945,76.87364998,,,,,,,,,,,,,74.04982474,71.89338919,76.20626028,,,,542.1294986,109,15434,438.8997129,645.3592843,,,,,,,,,,,,,592.641639,477.7528057,726.8223604,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.134,,,0.119,0.15,0.181,,,0.162,0.2,0.119,,,0.106,0.133,337.6,16,4739,,,0.154,860,,,,0.070667951,440.8973456,6239,,,,,,,,,,,,,,,,,,,,,,,,,,0.359,,,0.346,0.373,0.183730159,463,2520,0.153942925,0.213517393,0.067750678,75,1107,0.046303869,0.089197486,0.001261943,7,5547,,,792.4285714,,,,,,,,,,,2.99805433,,,,,,,,,3.099426764,2.916399342,,,,,,,,,2.954626663,0.026341647,,,,,-3017.3255,,,,,0.575808904,29915,51953,0.463592641,0.688025168,40545,,,34595.89362,46494.10638,,,,,,,,,,67670,25830.85106,109509.1489,55383,49444.61702,61321.38298,,,,,,0.68558952,628,916,,,26.11069744,,,,,0.304994451,,40545,,,26.84563758,8,298,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.441387025,1973,4470,,,0.459,,,,,0.014455917,,,,,0.716403162,1450,2024,0.657801359,0.775004965,0.090032154,168,1866,0.040540266,0.139524043,0.773715415,1566,2024,0.708532831,0.838897999,5547,,,,,0.204615107,1135,5547,,,0.171804579,953,5547,,,0.079502434,441,5547,,,0.041644132,231,5547,,,0.003966108,22,5547,,,0.002163332,12,5547,,,0.126554895,702,5547,,,0.728321615,4040,5547,,,0.003266718,17,5204,0,0.016462949,0.428519921,2377,5547,,,1,5491,5491,, -40,057,40057,OK,Harmon County,2024,1,13740.90412,56,6959,8710.554503,20618.1029,0,,,,2,,,,2,,,,2,,,,2,15900.79257,8466.502362,27190.83955,1,,,,2,,0.234,,,0.203,0.266,4.39478355,,,3.479124547,5.303874878,5.299020439,,,4.275181836,6.355044861,0.113636364,25,220,0.071698205,0.155574523,0,,,,,,,,,,0.130434783,0.061615531,0.199254034,,,,,,,,,,0.201,,,0.167,0.238,0.425,,,0.345,0.511,7.9,0.020508932,0.129,,,0.347,,,0.293,0.401,0.795819936,1980,2488,,,0.121228989,,,0.094611344,0.151362955,0,0,2,0,0.510593623,579,14,2418,,,44.06779661,26,590,28.78654782,64.56953234,,,,,,,,,,58.02047782,33.79906645,92.89640552,,,,,,,,,,0.215128755,401,1864,0.186533011,0.2437245,0.000413565,1,2418,,,2418,0.000411862,1,2428,,,2428,0.000411862,1,2428,,,2428,5768,,,,,,,,9942,4850,0.31,,,,,,,,0.23,0.34,0.31,,,,,,,0.32,0.36,0.31,0.800232288,1378,1722,0.746617338,0.853847238,0.500904159,277,553,0.37120718,0.630601139,0.027454243,33,1202,,,0.364,233,,0.225787234,0.502212766,,,,,,,0.186440678,0,0.601382486,0.434782609,0.335393772,0.534171446,0.007782101,0,0.075905632,5.62070914,119367,21237,3.918589385,7.322828894,0.1910299,115,602,0.094926559,0.287133241,16.54259719,4,2418,,,207.9963023,27,12981,137.0708738,302.6236996,,,,,,,,,,,,,322.0837418,204.1734636,483.2837543,,,,6.9,,,,,0,,,,,0.091743119,100,1090,0.04032869,0.143157548,0.064186047,0.014917762,0.113454331,0.025688073,0,0.055262805,0.013761468,0,0.04114526,0.787652011,842,1069,0.739835202,0.83546882,,,,,,,,,,,,,0.772234273,0.61800639,0.926462157,0.28,,1069,0.179327962,0.380672038,72.11034698,,,68.30998126,75.91071271,,,,,,,,,,,,,,,,,,,605.7135322,56,6959,446.6053429,803.0882671,,,,,,,,,,,,,697.2024523,466.9274245,1001.299021,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.138,,,0.12,0.157,0.182,,,0.158,0.206,0.131,,,0.112,0.15,,,,,,0.129,330,,,,0.020508932,59.9270985,2922,,,,,,,,,,,,,,,,,,,,,,,,,,0.349,,,0.337,0.361,0.25984252,330,1270,0.22290635,0.29677869,0.117741936,73,620,0.080805765,0.154678106,0.002059308,5,2428,,,485.6,,,,,,,,,,,2.990194414,,,,,,,,,,3.379963409,,,,,,,,,,0.00981956,,,,,-16428.07,,,,,0.624419048,32782,52500,0.424270376,0.824567719,41170,,,35385.31915,46954.68085,,,,,,,,,,45833,33112.65957,58553.34043,50000,30228.42553,69771.57447,,,,,,0.657676349,317,482,,,,,,,,0.347850377,,41170,,,15.15151515,2,132,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.480927835,933,1940,,,0.47,,,,,6.599872637,,,,,0.751572327,717,954,0.697241459,0.805903195,0.097424412,87,893,0.031992402,0.162856422,0.805031447,768,954,0.7585328,0.851530093,2428,,,,,0.267710049,650,2428,,,0.204283361,496,2428,,,0.069192751,168,2428,,,0.035420099,86,2428,,,0.016886326,41,2428,,,0,0,2428,,,0.330724876,803,2428,,,0.51276771,1245,2428,,,0.019425676,46,2368,0,0.042051145,0.51276771,1245,2428,,,1,2488,2488,, -40,059,40059,OK,Harper County,2024,1,4632.201506,47,9555,2745.336186,7320.875441,1,,,,2,,,,2,,,,2,,,,2,4800.253024,2480.360785,8385.076002,1,,,,2,,0.196,,,0.167,0.229,4.072519806,,,3.185464443,5.050139949,5.033001249,,,4.057721217,6.146352282,0.056451613,14,248,0.027727244,0.085175982,1,,,,,,,,,,,,,0.068965517,0.027720551,0.110210484,,,,,,,0.182,,,0.147,0.224,0.398,,,0.318,0.484,6.3,0.202041071,0.115,,,0.299,,,0.246,0.355,0.800122249,2618,3272,,,0.132946996,,,0.105285485,0.165078026,0.333333333,2,6,0.110000414,0.553214291,283,9,3180,,,16.68806162,13,779,8.885689976,28.53709361,,,,,,,,,,,,,,,,,,,,,,0.249413604,638,2558,0.222009349,0.27681786,,0,3180,,,,0.000319591,1,3129,,,3129,0.000639182,2,3129,,,1564.5,3271,,,,,,,,,3135,0.32,,,,,,,,,0.32,0.32,,,,,,,,,0.32,0.901697945,2018,2238,0.863066018,0.940329871,0.556103576,451,811,0.419787448,0.692419704,0.020011117,36,1799,,,0.148,110,,0.090808511,0.205191489,,,,,,,,,,0.164948454,0,0.33722785,0.166233766,0.034622443,0.297845089,3.351972935,103043,30741,2.437336208,4.266609663,0.143209877,116,810,0.075926952,0.210492802,28.30188679,9,3180,,,77.41650077,14,18084,42.32432137,129.8917337,,,,,,,,,,,,,99.39597829,52.92417227,169.97015,,,,6.7,,,,,0,,,,,0.085020243,105,1235,0.042544306,0.12749618,0.058489033,0.015568318,0.101409749,0.031578947,0,0.066588349,0.011336032,0,0.024939466,0.835352815,1172,1403,0.75169615,0.919009481,,,,,,,,,,,,,0.848051948,0.766873771,0.929230125,0.282,,1403,0.187233517,0.376766483,78.96196876,,,76.72769773,81.19623979,,,,,,,,,,,,,78.55668565,76.04491538,81.06845591,,,,322.6986841,47,9555,233.5386378,434.6730098,,,,,,,,,,,,,335.304148,234.842903,464.2022761,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.125,,,0.107,0.145,0.173,,,0.149,0.199,0.112,,,0.096,0.131,,,,,,0.115,390,,,,0.202041071,744.5213471,3685,,,,,,,,,,,,,,,,,,,,,,,,,,0.338,,,0.324,0.352,0.283482143,508,1792,0.250120441,0.316843845,0.171641791,138,804,0.127556685,0.215726897,0.000639182,2,3129,,,1564.5,,,,,,,,,,,2.995244873,,,,,,,,2.795507035,3.146365454,3.206482972,,,,,,,,2.971661166,3.333758593,0.018534847,,,,,-3957.7785,,,,,0.703380322,34479,49019,0.504015057,0.902745586,65228,,,58965.53192,71490.46809,,,,,,,,,,53182,25604.97872,80759.02128,61905,47452.23404,76357.76596,,,,,,0.493169399,361,732,,,,,,,,0.254951861,,65228,,,37.38317757,8,214,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.605702648,1487,2455,,,0.416,,,,,0.290551025,,,,,0.827983539,1006,1215,0.781913654,0.874053424,0.038062284,44,1156,0,0.077637166,0.795884774,967,1215,0.715887866,0.875881682,3129,,,,,0.240651966,753,3129,,,0.1936721,606,3129,,,0.003195909,10,3129,,,0.033557047,105,3129,,,0.002556727,8,3129,,,0.002237137,7,3129,,,0.256951103,804,3129,,,0.69542985,2176,3129,,,0.051106771,157,3072,0.016320362,0.085893179,0.482262704,1509,3129,,,1,3272,3272,, -40,061,40061,OK,Haskell County,2024,1,13424.8656,294,33570,11073.19349,15776.53771,0,12080.26859,7378.941888,18656.99506,1,,,,2,,,,2,,,,2,14631.81254,11589.1613,17674.46378,,,,,2,,0.239,,,0.206,0.274,4.747986334,,,3.852855754,5.764390032,6.32456667,,,5.169570707,7.544913668,0.07253886,70,965,0.056173497,0.088904223,0,0.059633028,0.028197559,0.091068496,,,,,,,,,,0.076119403,0.056038914,0.096199892,,,,,,,0.246,,,0.206,0.292,0.439,,,0.362,0.523,5.3,0.17737624,0.172,,,0.329,,,0.277,0.385,0.01470461,170,11561,,,0.128397717,,,0.101472532,0.161782644,0.368421053,7,19,0.246027076,0.486088994,482.7,56,11602,,,39.11290323,97,2480,31.71792967,47.71442497,32.20338983,19.38854435,50.28958233,,,,,,,,,,49.62095107,38.82533817,62.48937563,,,,,,,0.197276652,1782,9033,0.174638354,0.21991495,0.000258576,3,11602,,,3867.333333,0.00025771,3,11641,,,3880.333333,0.002834808,33,11641,,,352.7575758,4459,,,,,5375,,,27273,4202,0.36,,,,,0.44,,,,0.35,0.33,,,,,0.48,,,,0.31,0.844644419,6758,8001,0.825049496,0.864239343,0.470696646,1277,2713,0.409676473,0.531716819,0.043103448,180,4176,,,0.29,774,,0.192297872,0.387702128,0.248730965,0.148058851,0.349403078,,,,,,,0.622222222,0.549591274,0.694853171,0.232573727,0.176615544,0.288531909,4.682170928,94121,20102,4.012332874,5.352008983,0.233713655,635,2717,0.182758091,0.284669218,10.3430443,12,11602,,,101.1041212,63,62312,77.69118275,129.3560908,104.0484298,51.94060128,186.1713821,,,,,,,,,,110.6908957,81.6147284,146.7600687,,,,9.1,,,,,1,,,,,0.151975684,750,4935,0.122945081,0.181006287,0.098014629,0.076500478,0.11952878,0.030395137,0.020528924,0.04026135,0.032421479,0.012473918,0.05236904,0.81017257,3568,4404,0.776674335,0.843670806,0.822429907,0.73464645,0.910213363,,,,,,,,,,0.823312883,0.771964739,0.874661028,0.348,,4404,0.299777789,0.396222211,72.16779266,,,70.50424007,73.83134525,75.73124024,70.29009809,81.17238238,,,,,,,,,,70.88211457,68.89489114,72.869338,,,,647.7854363,294,33570,568.9383649,726.6325078,576.0761334,398.949469,805.0086549,,,,,,,,,,692.6164991,596.8525225,788.3804757,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.151,,,0.132,0.174,0.207,,,0.182,0.237,0.13,,,0.112,0.15,72.2,7,9698,,,0.172,2020,,,,0.17737624,2264.917205,12769,,,,,,,,,,,,,,,,,,,,,,,,,,0.356,,,0.341,0.37,0.239869586,1545,6441,0.210082351,0.26965682,0.093464768,256,2739,0.066060513,0.120869024,0.001632162,19,11641,,,612.6842105,0.906901841,147.825,163,,,,,,,,2.8453152,,,,,,,,,2.91537655,2.907316486,,,,,,,,,2.847887228,0.049887574,,,,,-14725.1168,,,,,0.763917503,35225,46111,0.66922923,0.858605777,44536,,,39548.42553,49523.57447,51154,38909.06383,63398.93617,,,,,,,29135,21834.74468,36435.25532,47799,42606.48936,52991.51064,,,,,,0.703535811,1552,2206,,,,,,,,0.311523262,,44536,,,29.0275762,20,689,,,,,,,,,,,,,,,,,,,,,,,,,,26.68945062,15,62312,14.59137101,44.78036308,24.07240981,,,,,,,,,,,,,26.43422758,12.67623961,48.61348569,,,,19.25792785,12,62312,9.950852338,33.63972437,,,,,,,,,,,,,,,,,,,23.88969785,21,87904,14.7880995,36.51794086,,,,,,,,,,,,,29.20465977,17.30853227,46.15595332,,,,,,,,,,,0.5264042,5014,9525,,,0.467,,,,,0.218488696,,,,,0.750553342,3391,4518,0.722836381,0.778270303,0.095377129,392,4110,0.073203089,0.117551169,0.765825587,3460,4518,0.737806989,0.793844184,11641,,,,,0.232626063,2708,11641,,,0.206253758,2401,11641,,,0.008504424,99,11641,,,0.183145778,2132,11641,,,0.014088137,164,11641,,,0.000601323,7,11641,,,0.056180741,654,11641,,,0.679494889,7910,11641,,,0.006197029,68,10973,0,0.013258301,0.498582596,5804,11641,,,1,11561,11561,, -40,063,40063,OK,Hughes County,2024,1,14638.29311,361,36513,12360.95226,16915.63396,0,18517.82168,13288.70855,25121.51607,,,,,2,,,,2,,,,2,15077.34243,11957.39123,18197.29363,,,,,2,,0.239,,,0.209,0.273,4.705318194,,,3.793808867,5.68808932,5.977419961,,,4.8216706,7.176865155,0.084545455,93,1100,0.068104643,0.100986266,0,0.066202091,0.037436227,0.094967955,,,,,,,,,,0.092705167,0.07054519,0.114865145,,,,,,,0.243,,,0.205,0.284,0.417,,,0.337,0.501,6.8,0.07441516,0.153,,,0.338,,,0.286,0.394,0.306650707,4099,13367,,,0.140179869,,,0.110615987,0.173773348,0.222222222,4,18,0.102162676,0.360013884,410.3,55,13405,,,49.37791602,127,2572,40.79001624,57.9658158,61.25574273,43.76200068,83.41293563,,,,,,,,,,56.12998523,44.22404422,70.2550465,,,,,,,0.176502204,1642,9303,0.153863906,0.199140502,0.000223797,3,13405,,,4468.333333,0.000298352,4,13407,,,3351.75,0.001342582,18,13407,,,744.8333333,2723,,,,,3891,,,,2444,0.23,,,,,0.06,,,,0.26,0.26,,,,,0.23,,0.46,0.25,0.27,0.841897233,7881,9361,0.820946957,0.862847509,0.41113004,1448,3522,0.357156491,0.465103589,0.038910506,200,5140,,,0.279,799,,0.177723404,0.380276596,0.276066351,0.1890819,0.363050801,,,,,,,0.299492386,0.114422909,0.484561863,0.221471472,0.153656844,0.289286099,4.270038833,85768,20086,3.552203078,4.987874588,0.333568655,945,2833,0.266181942,0.400955368,13.42782544,18,13405,,,165.5454723,110,66447,134.6085551,196.4823896,182.3515421,115.5952354,273.6168469,,,,,,,,,,194.7135277,154.3957177,242.3378401,,,,8.9,,,,,1,,,,,0.080389769,330,4105,0.062083968,0.098695569,0.051122195,0.032522438,0.069721952,0.020706456,0.009919495,0.031493416,0.012180268,0.004385203,0.019975333,0.805868545,3433,4260,0.758684248,0.853052841,0.78490566,0.714447853,0.855363468,,,,,,,,,,0.801104972,0.745139105,0.85707084,0.419,,4260,0.352138441,0.485861559,70.79472281,,,69.28108471,72.3083609,67.51432707,64.31036298,70.71829116,,,,,,,,,,70.54053537,68.54728872,72.53378202,,,,756.7820515,361,36513,675.3957251,838.1683779,974.697769,764.0074587,1225.536109,,,,,,,,,,759.778036,659.4613012,860.0947709,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.149,,,0.13,0.169,0.197,,,0.173,0.224,0.132,,,0.113,0.152,97.3,11,11309,,,0.153,2050,,,,0.07441516,1042.035488,14003,,,,,,,,,,,,,,,,,,,,,,,,,,0.368,,,0.355,0.381,0.225731895,1465,6490,0.193561683,0.257902108,0.064821067,192,2962,0.044565748,0.085076386,0.001044231,14,13407,,,957.6428571,0.866720779,133.475,154,,,0.129927007,89,685,0.058463339,0.201390675,2.940732874,,,,,,,,,3.115729539,2.809112494,,,,,,,,,2.915292092,0.064701592,,,,,-6149.8102,,,,,0.861907662,35377,41045,0.738797396,0.985017928,43773,,,37922.78723,49623.21277,43527,37756.61702,49297.38298,,,,,,,31500,24698.97872,38301.02128,45285,40077,50493,,,,,,0.803373494,1667,2075,,,45.40479038,,,,,0.305302355,,43773,,,32.60869565,24,736,,,12.80027307,12,93748,6.614087883,22.35950105,,,,,,,,,,,,,,,,,,,37.10205841,25,66447,23.51952238,55.67130456,37.62397098,,,,,,,,,,,,,49.86551835,29.55346649,78.80901731,,,,39.12892982,26,66447,25.56031607,57.33294819,,,,,,,,,,,,,51.11230103,31.63931992,78.13058155,,,,43.73426633,41,93748,31.3844646,59.33047059,68.21670172,35.24856523,119.1608496,,,,,,,,,,44.43077344,29.02365634,65.1013775,,,,,,,,,,,0.488877705,4857,9935,,,0.462,,,,,8.948768619,,,,,0.739364429,2885,3902,0.699033506,0.779695351,0.056570418,192,3394,0.033747726,0.079393111,0.695797027,2715,3902,0.661049105,0.73054495,13407,,,,,0.218244201,2926,13407,,,0.182814947,2451,13407,,,0.06399642,858,13407,,,0.201088983,2696,13407,,,0.00462445,62,13407,,,0.00141717,19,13407,,,0.06541359,877,13407,,,0.606250466,8128,13407,,,0.007246377,92,12696,0.000188487,0.014304267,0.445588126,5974,13407,,,0.681005461,9103,13367,, -40,065,40065,OK,Jackson County,2024,1,11487.48315,456,68683,10005.66889,12969.29741,0,,,,2,,,,2,14830.54784,9294.225375,22453.62766,1,10965.01133,8260.347136,14272.46943,,11042.9533,9183.084536,12902.82206,,,,,2,,0.196,,,0.168,0.227,3.877409454,,,3.061356117,4.751344067,4.961248063,,,3.979579862,6.014038478,0.079937304,204,2552,0.069415282,0.090459326,0,,,,,,,0.098039216,0.050919344,0.145159087,0.082872928,0.062790885,0.102954971,0.077545516,0.063933065,0.091157966,,,,,,,0.179,,,0.145,0.218,0.392,,,0.324,0.468,7.3,0.100862077,0.12,,,0.301,,,0.251,0.356,0.534799274,13255,24785,,,0.148410786,,,0.117781326,0.18300585,0.2,3,15,0.07369192,0.354373303,661.9,164,24777,,,41.03343465,216,5264,35.56117033,46.50569897,,,,,,,,,,52.15189873,42.08008736,62.22371011,30.02765705,23.65837846,37.58409046,,,,78.76712329,49.93159944,118.1893592,0.173951091,3578,20569,0.151312794,0.196589389,0.00072648,18,24777,,,1376.5,0.000447956,11,24556,,,2232.363636,0.002524841,62,24556,,,396.0645161,2989,,,,,,,2222,3355,2869,0.42,,,,,,0.33,0.41,0.4,0.43,0.22,,,,,0.14,0.2,0.22,0.31,0.21,0.859038352,13596,15827,0.838203817,0.879872888,0.612801205,4069,6640,0.546057716,0.679544694,0.027225423,293,10762,,,0.211,1281,,0.141893617,0.280106383,,,,,,,0.301790281,0.125708538,0.477872025,0.294172494,0.195374179,0.39297081,0.100767434,0.054275722,0.147259147,4.278922464,114842,26839,3.724972872,4.832872056,0.259867891,1613,6207,0.189591663,0.33014412,10.09000283,25,24777,,,108.3388581,134,123686,89.9951164,126.6825998,,,,,,,119.232145,57.17644803,219.2721598,64.90134995,39.64343064,100.2348712,130.8369641,105.1929191,156.481009,,,,7.7,,,,,1,,,,,0.092458678,895,9680,0.069188539,0.115728817,0.068553459,0.04875748,0.088349438,0.015392562,0.005506206,0.025278919,0.011363636,0.002009079,0.020718194,0.835820896,9744,11658,0.805171628,0.866470163,,,,,,,0.881889764,0.501576694,1,0.832532348,0.802115062,0.862949633,0.85464684,0.815540857,0.893752824,0.067,,11658,0.04771406,0.08628594,73.65194924,,,72.50729206,74.79660641,,,,,,,,,,75.19196934,71.93467885,78.44925983,73.62086303,72.2452481,74.99647795,,,,582.9147027,456,68683,527.7504243,638.0789811,,,,,,,720.5507864,504.6649123,997.5460103,535.1268784,422.313764,668.8167821,581.2996251,514.3643405,648.2349097,,,,51.53500699,14,27166,28.17466788,86.46698491,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.121,,,0.104,0.14,0.172,,,0.15,0.196,0.115,,,0.099,0.133,104.2,21,20157,,,0.12,2990,,,,0.100862077,2667.398479,26446,,,24.45253491,18,73612,14.49212191,38.64554729,,,,,,,,,,,,,28.81269532,15.34154678,49.27058649,,,,0.346,,,0.332,0.359,0.211206897,3038,14384,0.182611152,0.239802641,0.09057187,586,6470,0.063167615,0.117976126,0.001018081,25,24556,,,982.24,0.81116129,251.46,310,,,,,,,,2.837676701,,,,,,,,2.541778234,3.046700452,3.007616621,,,,,,,,2.793782063,3.233753528,0.040328208,,,,,-6481.543175,,,,,0.716883213,38954,54338,0.628468571,0.805297854,53513,,,47970.19149,59055.80851,39490,16077.23404,62902.76596,70903,57634.57447,84171.42553,55000,28165.2766,81834.7234,51203,47806.06383,54599.93617,70368,61091.06383,79644.93617,,,,,,0.58445573,2647,4529,,,47.6294435,,,,,0.301814512,,53513,,,12.62916188,22,1742,,,,,,,,,,,,,,,,,,,,,,,,,,20.7961057,27,123686,13.58470669,30.47111322,21.8294714,,,,,,,,,,,,,24.27542106,14.38715302,38.36563104,,,,16.16997882,20,123686,9.877043146,24.97322082,,,,,,,,,,,,,18.31717497,10.01417001,30.73310715,,,,18.88336376,33,174757,12.99843873,26.51926347,,,,,,,,,,,,,23.87928105,15.59873919,34.98867946,,,,,,,,,,,0.460173524,8221,17865,,,0.548,,,,,31.57397568,,,,,0.607219115,5972,9835,0.57557534,0.638862891,0.071790006,681,9486,0.0531103,0.090469713,0.870462634,8561,9835,0.8491866,0.891738667,24556,,,,,0.25162893,6179,24556,,,0.154544714,3795,24556,,,0.060514742,1486,24556,,,0.031031113,762,24556,,,0.017958951,441,24556,,,0.003583646,88,24556,,,0.2575338,6324,24556,,,0.611378075,15013,24556,,,0.014731445,339,23012,0.007940026,0.021522863,0.498941196,12252,24556,,,0.238652411,5915,24785,, -40,067,40067,OK,Jefferson County,2024,1,11123.48421,138,15732,8214.306527,14032.66189,0,,,,2,,,,2,,,,2,,,,2,12345.57323,8731.94498,15959.20147,,,,,2,,0.238,,,0.206,0.271,4.656659371,,,3.71926374,5.719913735,5.964118975,,,4.767364408,7.238777165,0.080275229,35,436,0.054769806,0.105780653,0,,,,,,,,,,,,,0.087774295,0.056721867,0.118826722,,,,,,,0.236,,,0.194,0.278,0.422,,,0.336,0.509,5.7,0.135905548,0.176,,,0.343,,,0.289,0.4,0.361626382,1930,5337,,,0.12391386,,,0.096924109,0.1560826,0.142857143,1,7,0.008995928,0.386311364,422.9,23,5438,,,39.08794788,48,1228,28.82036712,51.82494803,,,,,,,,,,,,,37.97468354,26.14002483,53.33057453,,,,,,,0.191076851,818,4281,0.167247064,0.214906638,0.000183891,1,5438,,,5438,,0,5389,,,,0.000185563,1,5389,,,5389,3560,,,,,,,,,3385,0.3,,,,,,,,0.36,0.3,0.18,,,,,0.38,,,0.16,0.18,0.847545928,3091,3647,0.823385206,0.871706651,0.418524871,488,1166,0.341660776,0.495388966,0.031111111,77,2475,,,0.299,389,,0.191765957,0.406234043,0.333333333,0,0.784747589,,,,,,,0.558558559,0.392103587,0.725013531,0.384700665,0.317393171,0.45200816,5.516284191,95189,17256,4.522575021,6.509993361,0.393038434,542,1379,0.299872691,0.486204177,9.194556822,5,5438,,,117.8649604,35,29695,82.09726352,163.9216278,,,,,,,,,,,,,140.8264754,96.32520491,198.8049645,,,,8.3,,,,,1,,,,,0.105042017,250,2380,0.081491619,0.128592414,0.088362069,0.059922536,0.116801602,0.014705882,0.002395112,0.027016653,0.010504202,0.001996075,0.019012328,0.74609375,1528,2048,0.686536357,0.805651143,,,,,,,,,,,,,0.736397749,0.664713029,0.808082469,0.404,,2048,0.336283979,0.471716021,73.76536349,,,71.7192292,75.81149778,,,,,,,,,,,,,72.49200049,70.17252252,74.81147846,,,,627.6190763,138,15732,514.2764355,740.961717,,,,,,,,,,,,,675.6968281,543.6541288,807.7395275,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.148,,,0.129,0.169,0.202,,,0.176,0.23,0.126,,,0.109,0.145,,,,,,0.176,960,,,,0.135905548,879.580705,6472,,,,,,,,,,,,,,,,,,,,,,,,,,0.347,,,0.331,0.362,0.237288136,700,2950,0.205117923,0.269458348,0.0891445,124,1391,0.061740245,0.116548756,0.001670069,9,5389,,,598.7777778,,,,,,,,,,,3.034117176,,,,,,,,,3.038262565,3.073488687,,,,,,,,,3.056718949,0.052696999,,,,,-8095.423,,,,,0.670238001,33906,50588,0.57043882,0.770037182,44188,,,38716.68085,49659.31915,62361,14959.97872,109762.0213,,,,,,,38125,21067.6383,55182.3617,50121,46172.40426,54069.59575,,,,,,0.769092543,856,1113,,,,,,,,0.29030506,,44188,,,20.28985507,7,345,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.527654867,2385,4520,,,0.387,,,,,3.635543633,,,,,0.723209995,1505,2081,0.687239335,0.759180656,0.080824089,153,1893,0.047132454,0.114515724,0.706871696,1471,2081,0.666656525,0.747086868,5389,,,,,0.24531453,1322,5389,,,0.205232882,1106,5389,,,0.013360549,72,5389,,,0.075709779,408,5389,,,0.007979217,43,5389,,,0.000185563,1,5389,,,0.115049174,620,5389,,,0.756726665,4078,5389,,,0.005289969,27,5104,0,0.018799391,0.49823715,2685,5389,,,1,5337,5337,, -40,069,40069,OK,Johnston County,2024,1,13393.6429,261,29473,10890.93865,15896.34715,0,19175.80273,12526.27099,28096.99394,,,,,2,,,,2,,,,2,12997.41368,9968.578261,16026.2491,,,,,2,,0.223,,,0.191,0.255,4.538750027,,,3.612119609,5.556836846,6.043531492,,,4.854848076,7.308186017,0.100334448,90,897,0.080672551,0.119996346,0,0.066037736,0.032606772,0.099468699,,,,,,,,,,0.113274336,0.087141157,0.139407516,,,,,,,0.231,,,0.19,0.275,0.417,,,0.335,0.507,5.8,0.136133392,0.171,,,0.325,,,0.272,0.38,0.40673676,4178,10272,,,0.132488145,,,0.103752596,0.167727263,0.347826087,8,23,0.236887913,0.456754526,281.5,29,10301,,,28.61389818,77,2691,22.58164097,35.76246321,36.96498055,22.25533301,57.72539605,,,,,,,51.72413793,26.72661685,90.35165969,25.22639069,17.93842981,34.48530651,,,,,,,0.189695841,1528,8055,0.167057543,0.212334139,0.000291234,3,10301,,,3433.666667,0.000864886,9,10406,,,1156.222222,0.008841053,92,10406,,,113.1086957,4452,,,,,4343,,,,4437,0.27,,,,,0.55,,,,0.25,0.31,,,,,0.47,,0.36,,0.3,0.88103222,6043,6859,0.858105153,0.903959288,0.503457217,1165,2314,0.429749391,0.577165043,0.037262156,141,3784,,,0.267,645,,0.176446809,0.357553192,0.189393939,0.102495543,0.276292336,,,,,,,0.5,0.380951844,0.619048156,0.384984026,0.288665679,0.481302372,4.536141123,94887,20918,3.926724884,5.145557361,0.260851761,637,2442,0.198386109,0.323317413,13.5909135,14,10301,,,171.5265866,93,54219,138.4440929,210.1316569,160.5532913,85.48786577,274.5510179,,,,,,,,,,188.6334851,147.0490558,238.3270604,,,,8.7,,,,,1,,,,,0.129779838,560,4315,0.102658103,0.156901572,0.069176471,0.044444423,0.093908518,0.056778679,0.037933464,0.075623894,0.00811124,0.001821513,0.014400967,0.779710921,2913,3736,0.741271399,0.818150442,0.728205128,0.60707578,0.849334477,,,,,,,,,,0.778178539,0.747580518,0.80877656,0.399,,3736,0.335559485,0.462440515,72.13463898,,,70.32190006,73.9473779,,,,,,,,,,,,,71.84956873,69.66636973,74.03276773,,,,663.8949369,261,29473,578.7756597,749.014214,899.5411102,651.0023618,1211.675972,,,,,,,,,,655.2459827,556.3212534,754.1707121,,,,94.87666034,11,11594,47.362087,169.760553,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.143,,,0.123,0.162,0.199,,,0.172,0.226,0.124,,,0.105,0.143,93.4,8,8569,,,0.171,1790,,,,0.136133392,1491.613578,10957,,,37.25551071,12,32210,19.25046603,65.07787969,,,,,,,,,,,,,45.86945553,21.99618685,84.35556186,,,,0.343,,,0.329,0.355,0.234929078,1325,5640,0.203950355,0.265907801,0.086234177,218,2528,0.061212901,0.111255454,0.001921968,20,10406,,,520.3,0.800454546,88.05,110,,,,,,,,2.955266582,,,,,,,,,3.002381327,2.826897877,,,,,,,,,2.890064142,0.055000825,,,,,-9322.2524,,,,,0.793434149,37147,46818,0.711448541,0.875419757,48452,,,41866.6383,55037.3617,59583,46164.44681,73001.55319,,,,39803,21587.51064,58018.48936,,,,48590,43078.17021,54101.82979,,,,,,0.688053097,1244,1808,,,43.5287454,,,,,0.278688186,,48452,,,29.17341977,18,617,,,,,,,,,,,,,,,,,,,,,,,,,,29.5193685,17,54219,16.52176646,48.68770917,31.35432229,,,,,,,,,,,,,31.59903397,16.32768196,55.19715317,,,,27.66557849,15,54219,15.48421427,45.63016447,,,,,,,,,,,,,32.33716888,16.70908704,56.48652631,,,,49.81254752,38,76286,35.25032332,68.3716133,,,,,,,,,,,,,51.34348793,33.83568207,74.70207931,,,,,,,,,,,0.511860325,4251,8305,,,0.464,,,,,0.257509231,,,,,0.701465672,2728,3889,0.673089396,0.729841949,0.087769784,305,3475,0.057233966,0.118305602,0.743893032,2893,3889,0.710017069,0.777768995,10406,,,,,0.235825485,2454,10406,,,0.187680185,1953,10406,,,0.02652316,276,10406,,,0.165000961,1717,10406,,,0.007976168,83,10406,,,0.000672689,7,10406,,,0.06448203,671,10406,,,0.666826831,6939,10406,,,0.0030631,30,9794,0,0.010236616,0.49577167,5159,10406,,,1,10272,10272,, -40,071,40071,OK,Kay County,2024,1,12601.56088,974,119212,11389.61782,13813.50394,0,20696.70952,16042.31209,25351.10695,,,,,2,27136.60152,15188.14987,44757.69741,1,5895.29628,3601.000123,9104.806967,1,12073.69219,10650.55951,13496.82487,,,,,2,,0.213,,,0.183,0.246,4.378402547,,,3.482051528,5.312123247,5.971209028,,,4.833377465,7.133300721,0.081937645,318,3881,0.073308613,0.090566677,0,0.067256637,0.046603763,0.087909512,,,,0.168539326,0.090765663,0.246312988,0.073529412,0.045785801,0.101273022,0.082976237,0.07230511,0.093647364,,,,0.068085106,0.035879141,0.100291072,0.22,,,0.181,0.264,0.403,,,0.33,0.481,6.2,0.1526196,0.144,,,0.297,,,0.25,0.353,0.719519451,31443,43700,,,0.138963456,,,0.109571891,0.174105245,0.285714286,10,35,0.196703372,0.377807478,439,192,43732,,,37.12069135,378,10183,33.37849796,40.86288474,48.99328859,38.4029174,61.60170482,,,,48.0349345,23.97886623,85.94776643,27.02702703,18.3635536,38.3627075,34.96942136,30.37963907,39.55920365,,,,43.37349398,30.37826195,60.04719818,0.165645961,5680,34290,0.14896511,0.182326812,0.000388731,17,43732,,,2572.470588,0.000687002,30,43668,,,1455.6,0.002404507,105,43668,,,415.8857143,2750,,,,,4742,,3338,,2574,0.36,,,,,0.28,,0.5,0.17,0.37,0.4,,,,,0.37,0.25,0.25,0.32,0.4,0.893695368,25969,29058,0.87974963,0.907641106,0.54094766,5674,10489,0.496781641,0.585113678,0.034792429,647,18596,,,0.235,2484,,0.16112766,0.30887234,0.438760807,0.324689323,0.552832291,,,,0.415384615,0.059208586,0.771560645,0.339443742,0.229179865,0.449707619,0.19453534,0.150547704,0.238522977,4.088160102,102343,25034,3.652713751,4.523606453,0.292294885,3160,10811,0.239683487,0.344906283,14.63459252,64,43732,,,122.6915516,269,219249,108.0295052,137.353598,101.4198783,63.55929777,153.5509146,,,,,,,,,,140.3168927,122.0227606,158.6110248,,,,7.9,,,,,1,,,,,0.11587119,2015,17390,0.101356338,0.130386042,0.082895505,0.069139646,0.096651364,0.023289247,0.016043356,0.030535138,0.017251294,0.010955828,0.02354676,0.801740812,14922,18612,0.781967976,0.821513649,0.789399293,0.718915867,0.859882719,,,,,,,0.825986079,0.770171118,0.88180104,0.80222063,0.777977317,0.826463944,0.163,,18612,0.139530381,0.186469619,72.30937665,,,71.44289689,73.17585641,65.82454614,63.06703092,68.58206136,,,,,,,87.65401324,73.91783843,101.3901881,72.63903235,71.62740619,73.6506585,,,,626.6211139,974,119212,584.9945378,668.2476901,1067.550745,872.5760358,1262.525454,,,,952.0761908,603.534635,1428.581751,363.6431537,235.3306756,536.80903,601.2759837,555.0942478,647.4577195,,,,68.47325393,33,48194,47.13383735,96.16190661,,,,,,,,,,,,,69.70827089,42.57962283,107.6587707,,,,8.557764913,34,3973,5.926500978,11.9586187,,,,,,,,,,,,,8.024455483,4.967264419,12.26623261,,,,,,,0.137,,,0.118,0.158,0.198,,,0.172,0.227,0.116,,,0.099,0.135,119.4,43,36017,,,0.144,6360,,,,0.1526196,7106.273799,46562,,,13.78845447,18,130544,8.171911984,21.79170262,,,,,,,,,,,,,16.82563385,9.617303538,27.32377525,,,,0.339,,,0.325,0.351,0.208058794,4926,23676,0.184229007,0.231888581,0.074226804,828,11155,0.055162974,0.093290634,0.000709902,31,43668,,,1408.645161,0.863207547,457.5,530,,,0.115736886,278,2402,0.06751829,0.163955482,2.92505264,,,,,,,,2.70262159,3.054133455,3.100264807,,,,,,,,2.914662548,3.273968991,0.029251914,,,,,546.1388167,,,,,0.763773819,36875,48280,0.704353486,0.823194153,53066,,,49143.61702,56988.38298,46228,40586.29787,51869.70213,68523,15959.25532,121086.7447,40192,10221.2766,70162.7234,48438,35969.06383,60906.93617,55575,51515.59575,59634.40426,,,,,,0.613068029,4560,7438,,,67.86064073,,,,,0.289959673,,53066,,,13.88888889,40,2880,,,6.460824789,20,309558,3.946439629,9.978219882,,,,,,,,,,,,,4.801983656,2.39713294,8.592075205,,,,30.2771135,66,219249,23.15959277,38.89221893,30.10275988,,,,,,,,,,,,,32.35888151,23.85888478,42.90318227,,,,20.98071143,46,219249,15.36051768,27.98532888,,,,,,,,,,,,,22.35136343,15.65462016,30.9437084,,,,18.73639189,58,309558,14.22732789,24.22113134,,,,,,,,,,,,,23.13683034,17.33107361,30.26354375,,,,,,,,,,,0.531474349,17249,32455,,,0.627,,,,,35.16408238,,,,,0.674302549,11215,16632,0.65166493,0.696940169,0.093238479,1481,15884,0.076709774,0.109767184,0.788961039,13122,16632,0.769415148,0.80850693,43668,,,,,0.246954292,10784,43668,,,0.193184941,8436,43668,,,0.020289457,886,43668,,,0.117568929,5134,43668,,,0.00700742,306,43668,,,0.006755519,295,43668,,,0.092287258,4030,43668,,,0.716794907,31301,43668,,,0.005624544,231,41070,0.002784275,0.008464812,0.499748099,21823,43668,,,0.310846682,13584,43700,, -40,073,40073,OK,Kingfisher County,2024,1,7720.292035,229,43415,6194.150772,9246.433299,0,,,,2,,,,2,,,,2,,,,2,8052.242211,6216.298338,9888.186083,,,,,2,,0.179,,,0.151,0.21,3.883263893,,,3.026877532,4.821723156,5.179578222,,,4.113653974,6.339888183,0.06937799,87,1254,0.055314121,0.08344186,0,,,,,,,,,,0.067615658,0.038257823,0.096973494,0.06271777,0.046522619,0.078912921,,,,,,,0.182,,,0.145,0.221,0.388,,,0.311,0.47,8.4,0.041167123,0.095,,,0.284,,,0.234,0.338,0.585155427,8885,15184,,,0.14962494,,,0.117468871,0.186744139,0.333333333,8,24,0.22460658,0.441421063,210.5,32,15204,,,22.79593518,83,3641,18.15683513,28.25899143,,,,,,,,,,22.44668911,13.71102086,34.6670908,21.83765966,16.35790562,28.56419651,,,,,,,0.202091688,2570,12717,0.178261901,0.225921476,0.000460405,7,15204,,,2172,0.000719283,11,15293,,,1390.272727,0.001830903,28,15293,,,546.1785714,2808,,,,,4771,,,,2525,0.4,,,,,0.42,,,0.29,0.41,0.48,,,,,0.35,,0.5,0.34,0.49,0.910121458,8992,9880,0.882610873,0.937632042,0.558563388,2084,3731,0.468106534,0.649020241,0.019808591,178,8986,,,0.165,657,,0.116148936,0.213851064,0.133333333,0,0.395913357,,,,,,,0.246520875,0.129582103,0.363459647,0.057364341,0.009736704,0.104991979,4.165992306,125613,30152,3.418018788,4.913965824,0.18885967,790,4183,0.121363138,0.256356203,18.41620626,28,15204,,,80.50089445,63,78260,61.85909762,102.9956137,,,,,,,,,,,,,81.30769882,59.94987859,107.8022126,,,,9.1,,,,,1,,,,,0.065857886,380,5770,0.039357773,0.092357998,0.050044053,0.021664495,0.078423611,0.012131716,0.002869349,0.021394083,0.004332756,0,0.009877889,0.839124088,5748,6850,0.799914755,0.87833342,,,,,,,,,,0.740789474,0.547251579,0.934327369,0.833247022,0.80098929,0.865504755,0.343,,6850,0.274367731,0.41163227,76.82944352,,,75.49744262,78.16144442,,,,,,,,,,86.0538423,72.30003144,99.80765316,76.53949833,75.00605289,78.07294377,,,,419.3811433,229,43415,363.0562701,475.7060165,,,,,,,,,,,,,433.323186,369.2572928,497.3890793,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.118,,,0.101,0.137,0.171,,,0.148,0.197,0.102,,,0.086,0.12,104.9,13,12397,,,0.095,1450,,,,0.041167123,618.9065304,15034,,,,,,,,,,,,,,,,,,,,,,,,,,0.332,,,0.316,0.346,0.238714878,2073,8684,0.208927644,0.268502112,0.125855962,533,4235,0.09249426,0.159217664,0.000850062,13,15293,,,1176.384615,0.919486692,241.825,263,,,,,,,,3.192159408,,,,,,,,2.893516651,3.28814887,3.226874874,,,,,,,,2.967627699,3.381491125,0.10131564,,,,,1812.861333,,,,,0.667989278,37879,56706,0.5775128,0.758465757,73023,,,64144.02128,81901.97872,,,,,,,,,,52266,13461.57447,91070.42553,68936,60258.38298,77613.61702,,,,,,0.3573903,1238,3464,,,,,,,,0.232282979,,73023,,,16.64932362,16,961,,,,,,,,,,,,,,,,,,,,,,,,,,14.93379664,11,78260,7.454897477,26.72068733,14.05571173,,,,,,,,,,,,,17.1667572,7.849734529,32.58785252,,,,14.05571173,11,78260,7.016560653,25.14955087,,,,,,,,,,,,,,,,,,,20.09462743,22,109482,12.59319603,30.42350741,,,,,,,,,,,,,14.4555672,7.469402514,25.25096677,,,,,,,,,,,0.607898449,6465,10635,,,0.541,,,,,28.48852808,,,,,0.735144928,4058,5520,0.694378421,0.775911434,0.088794106,458,5158,0.048408084,0.129180129,0.859963768,4747,5520,0.808628198,0.911299339,15293,,,,,0.263584647,4031,15293,,,0.167723795,2565,15293,,,0.016543517,253,15293,,,0.042764664,654,15293,,,0.004773426,73,15293,,,0.000588505,9,15293,,,0.172301053,2635,15293,,,0.737723141,11282,15293,,,0.034323663,491,14305,0.019849048,0.048798278,0.493755313,7551,15293,,,1,15184,15184,, -40,075,40075,OK,Kiowa County,2024,1,13411.17104,221,23720,10452.58172,16369.76035,0,24163.86552,11049.25801,45870.54367,1,,,,2,,,,2,,,,2,12160.38525,8972.297492,15348.473,,,,,2,,0.225,,,0.192,0.261,4.533371815,,,3.607634892,5.571299352,5.868251972,,,4.695196595,7.095524926,0.08180536,58,709,0.061631397,0.101979322,0,,,,,,,,,,,,,0.0831643,0.058789176,0.107539425,,,,,,,0.222,,,0.177,0.27,0.414,,,0.332,0.499,5.4,0.192778105,0.162,,,0.319,,,0.26,0.378,0.673169585,5728,8509,,,0.129709083,,,0.102210581,0.161819153,0.2,3,15,0.07369192,0.354373303,356.7,30,8410,,,37.77544596,72,1906,29.55695996,47.57192237,,,,,,,,,,,,,33.7254902,24.40730448,45.42801397,,,,69.44444444,33.30131039,127.7108059,0.158758849,1054,6639,0.137312041,0.180205658,0.000356718,3,8410,,,2803.333333,0.000359497,3,8345,,,2781.666667,0.001917316,16,8345,,,521.5625,3751,,,,,,,,,3727,0.29,,,,,0.14,,0.25,0.5,0.29,0.34,,,,,0.37,,0.31,0.34,0.34,0.856231684,4967,5801,0.824047548,0.88841582,0.493670886,936,1896,0.403849376,0.583492396,0.032275711,118,3656,,,0.325,650,,0.233255319,0.416744681,0.044444444,0,0.320968406,,,,,,,0.459102902,0.276260846,0.641944959,0.310457516,0.213100362,0.407814671,4.405549314,90186,20471,3.380093479,5.431005148,0.25109917,514,2047,0.159894414,0.342303925,17.83590963,15,8410,,,110.3930452,48,43481,81.395117,146.3651622,,,,,,,,,,,,,121.8940459,86.67858256,166.6331735,,,,8,,,,,1,,,,,0.111111111,395,3555,0.076670138,0.145552084,0.078600115,0.049963861,0.107236369,0.016596343,0,0.033311544,0.019409283,0.003982201,0.034836364,0.739624962,2406,3253,0.687786552,0.791463371,,,,,,,,,,,,,0.728212703,0.640308302,0.816117105,0.308,,3253,0.249750913,0.366249087,70.80845513,,,68.92488996,72.6920203,,,,,,,,,,,,,71.74707448,69.7569869,73.73716207,,,,677.2573947,221,23720,580.2140286,774.3007609,1066.210301,621.1067915,1707.105978,,,,,,,,,,642.5206205,534.8494253,750.1918158,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.143,,,0.121,0.166,0.197,,,0.17,0.227,0.126,,,0.107,0.147,,,,,,0.162,1380,,,,0.192778105,1820.981982,9446,,,,,,,,,,,,,,,,,,,,,,,,,,0.362,,,0.347,0.377,0.194779983,903,4636,0.166184238,0.223375727,0.077651515,164,2112,0.053821728,0.101481302,0.000838826,7,8345,,,1192.142857,,,,,,,,,,,2.764256107,,,,,,,,2.819267305,2.726280412,2.644155456,,,,,,,,2.621137319,2.715440285,0.045061961,,,,,-3616.892175,,,,,1.053129005,39446,37456,0.855696871,1.250561139,44959,,,39069.46809,50848.53192,39167,18539.93617,59794.06383,,,,26726,25479.70213,27972.29787,26424,19184.51064,33663.48936,51987,43541.7234,60432.2766,,,,,,0.647251309,989,1528,,,29.52572771,,,,,0.319379879,,44959,,,17.54385965,10,570,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,27.55178114,17,61702,16.04992783,44.11307059,,,,,,,,,,,,,26.35624863,13.61865827,46.03906226,,,,,,,,,,,0.516503391,3427,6635,,,0.475,,,,,2.945625114,,,,,0.74195507,2444,3294,0.71003614,0.773874,0.080697224,250,3098,0.047761861,0.113632587,0.799028537,2632,3294,0.754479683,0.843577391,8345,,,,,0.243019772,2028,8345,,,0.203834632,1701,8345,,,0.037147993,310,8345,,,0.081965249,684,8345,,,0.004074296,34,8345,,,0.001557819,13,8345,,,0.124625524,1040,8345,,,0.719233074,6002,8345,,,0.004693049,37,7884,0,0.013798368,0.50077891,4179,8345,,,1,8509,8509,, -40,077,40077,OK,Latimer County,2024,1,11286.25401,206,26412,8765.833139,13806.67488,0,12367.47164,7750.628629,18724.50068,1,,,,2,,,,2,,,,2,11839.65075,8346.215392,15333.0861,,,,,2,,0.237,,,0.204,0.272,4.744805786,,,3.755981419,5.792368202,6.115797708,,,4.865046889,7.446502173,0.083123426,66,794,0.063920696,0.102326156,0,0.075098814,0.042623002,0.107574626,,,,,,,,,,0.088300221,0.062171762,0.114428679,,,,,,,0.25,,,0.209,0.295,0.41,,,0.323,0.5,6.5,0.07434202,0.168,,,0.323,,,0.265,0.381,0.448962304,4240,9444,,,0.13531805,,,0.103417883,0.17128413,0.5,6,12,0.355111295,0.623019394,551.6,52,9427,,,30.62080537,73,2384,24.00182337,38.50106551,34.57446809,22.58519045,50.65960649,,,,,,,,,,33.68940016,24.17609521,45.7034754,,,,,,,0.186666667,1288,6900,0.164028369,0.209304965,0.000212157,2,9427,,,4713.5,0.000207684,2,9630,,,4815,0.007165109,69,9630,,,139.5652174,1628,,,,,2830,,,,1220,0.34,,,,,0.32,,,,0.35,0.29,,,,,0.43,,,,0.27,0.854693003,5582,6531,0.829939413,0.879446593,0.472652689,1037,2194,0.407868278,0.537437101,0.055926279,176,3147,,,0.323,687,,0.215765957,0.430234043,0.207036536,0.142344705,0.271728367,,,,,,,0.135869565,0,0.291038543,0.175,0.101388198,0.248611802,4.618987465,95068,20582,3.827758489,5.410216441,0.260560038,549,2107,0.192285855,0.328834221,12.72939429,12,9427,,,129.2914827,65,50274,99.78443675,164.7926081,142.589787,81.50238351,231.5568808,,,,,,,,,,129.036319,92.59869034,175.052337,,,,8.6,,,,,1,,,,,0.11627907,475,4085,0.090410774,0.142147366,0.068414482,0.045416661,0.091412303,0.040146879,0.021695592,0.058598166,0.011015912,0.004876159,0.017155665,0.88230265,3096,3509,0.848667729,0.915937572,0.842253521,0.783266057,0.901240985,,,,,,,,,,0.853610287,0.811662364,0.89555821,0.343,,3509,0.287971763,0.398028237,75.05054962,,,72.99034305,77.11075619,77.78118809,71.18608377,84.37629241,,,,,,,,,,73.84579716,71.20307259,76.48852173,,,,562.1900926,206,26412,480.3154598,644.0647254,563.2065726,392.2940138,783.2840042,,,,,,,,,,591.1004272,488.6080928,693.5927617,,,,99.05894007,10,10095,47.50261215,182.1729177,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.15,,,0.129,0.172,0.205,,,0.179,0.234,0.133,,,0.113,0.154,88.2,7,7938,,,0.168,1610,,,,0.07434202,829.2108949,11154,,,,,,,,,,,,,,,,,,,,,,,,,,0.359,,,0.346,0.372,0.231096696,1140,4933,0.200117972,0.262075419,0.076997113,160,2078,0.053167325,0.1008269,0.001869159,18,9630,,,535,,,,,,0.131274131,68,518,0.047911907,0.214636356,3.013117833,,,,,,,,,3.022765458,2.750344338,,,,,,,,,2.74875286,0.034577314,,,,,-5613.125333,,,,,0.799741778,35307,44148,0.689822113,0.909661443,42409,,,36697,48121,48125,35321.25532,60928.74468,121442,121083.3617,121800.6383,,,,36042,16843.53192,55240.46809,41250,34216.6383,48283.3617,,,,,,0.637526653,897,1407,,,,,,,,0.314296494,,42409,,,21.77858439,12,551,,,,,,,,,,,,,,,,,,,,,,,,,,38.94230032,20,50274,23.07967521,61.54562355,39.78199467,,,,,,,,,,,,,43.80374057,22.63403195,76.51631944,,,,35.8037952,18,50274,21.21959816,56.58543237,,,,,,,,,,,,,,,,,,,29.50640008,21,71171,18.2649267,45.10366685,,,,,,,,,,,,,28.54006586,15.19638308,48.80438182,,,,,,,,,,,0.534801762,4249,7945,,,0.434,,,,,0.000975856,,,,,0.693925234,2673,3852,0.664264749,0.723585718,0.095197009,331,3477,0.063704624,0.126689393,0.769989616,2966,3852,0.742145117,0.797834115,9630,,,,,0.225545171,2172,9630,,,0.213707165,2058,9630,,,0.014953271,144,9630,,,0.251713396,2424,9630,,,0.008307373,80,9630,,,0.000311527,3,9630,,,0.052336449,504,9630,,,0.604776739,5824,9630,,,0.002231396,20,8963,0,0.009780606,0.492419522,4742,9630,,,1,9444,9444,, -40,079,40079,OK,Le Flore County,2024,1,12302.96614,1166,137241,11216.38654,13389.54574,0,11250.59917,8462.752339,14038.44601,,,,,2,17090.93271,9956.098123,27364.23889,1,9424.169967,6038.243522,14022.41789,1,12346.89612,11042.28676,13651.50548,,,,,2,,0.24,,,0.206,0.273,4.814071324,,,3.933502209,5.806075707,6.20524706,,,5.09045184,7.383925006,0.08710965,371,4259,0.078640405,0.095578895,0,0.081151833,0.061788485,0.10051518,,,,,,,0.071022727,0.044188694,0.097856761,0.087104457,0.076909462,0.097299452,,,,0.146341463,0.083877533,0.208805394,0.246,,,0.205,0.289,0.43,,,0.359,0.503,6.4,0.091553889,0.165,,,0.342,,,0.288,0.393,0.320305845,15416,48129,,,0.131651174,,,0.104215596,0.163193544,0.271186441,16,59,0.203621976,0.341406716,427,207,48476,,,37.04360156,418,11284,33.49235248,40.59485064,39.31314957,31.48822121,48.49262476,,,,,,,31.01424979,21.83689402,42.74905796,40.59479554,35.7792543,45.41033678,,,,12.30425056,6.142237547,22.01570304,0.209083523,7978,38157,0.190019694,0.228147353,0.000288803,14,48476,,,3462.571429,0.000286258,14,48907,,,3493.357143,0.00337375,165,48907,,,296.4060606,4244,,,,,3612,,5341,6883,4184,0.36,,,,,0.47,,0.31,,0.35,0.38,,,,,0.46,0.25,0.38,0.3,0.38,0.848645664,27665,32599,0.83605865,0.861232678,0.446862348,5298,11856,0.413703806,0.480020891,0.036876466,723,19606,,,0.249,2877,,0.177510638,0.320489362,0.33278778,0.27358285,0.391992709,,,,0.27184466,0.119754894,0.423934427,0.395537525,0.330885284,0.460189766,0.261330011,0.222949227,0.299710795,4.465174852,92188,20646,4.095332136,4.835017568,0.264015087,3080,11666,0.231231942,0.296798231,7.838930605,38,48476,,,97.99374937,243,247975,85.67259754,110.3149012,81.18347465,53.50042135,118.1176933,,,,,,,55.60807429,26.66623309,102.2652285,107.142043,91.82633527,122.4577507,,,,9.8,,,,,1,,,,,0.113326051,2075,18310,0.100933032,0.125719071,0.086908078,0.075852936,0.09796322,0.024576734,0.018067399,0.031086069,0.00846532,0.005614052,0.011316587,0.836957105,15590,18627,0.816277686,0.857636525,0.803370787,0.76500642,0.841735154,,,,,,,0.723760933,0.570271723,0.877250143,0.843705327,0.812137996,0.875272658,0.314,,18627,0.288893761,0.339106239,72.07023562,,,71.30223937,72.83823186,74.09518609,71.60876399,76.5816082,,,,,,,91.31868695,56.78563349,125.8517404,71.79793155,70.90410162,72.69176148,,,,643.5099174,1166,137241,604.7921385,682.2276964,588.5087958,478.1298754,698.8877161,,,,948.2589645,624.9086327,1379.667008,433.1371952,277.5191738,644.4738131,653.9995667,609.2251819,698.7739515,,,,64.28679474,34,52888,44.52047418,89.83435202,,,,,,,,,,,,,65.28054313,39.87505169,100.8205043,,,,7.30270907,31,4245,4.961836509,10.3656126,,,,,,,,,,,,,7.50085237,4.700744246,11.35638063,,,,,,,0.153,,,0.132,0.173,0.205,,,0.179,0.231,0.13,,,0.112,0.148,134.4,54,40178,,,0.165,7970,,,,0.091553889,4612.85113,50384,,,18.21075919,27,148264,12.00100505,26.49569851,,,,,,,,,,,,,18.21930287,10.9692105,28.4516983,,,,0.361,,,0.346,0.376,0.262812628,7051,26829,0.237791352,0.287833905,0.086004363,1025,11918,0.064557555,0.107451172,0.000633856,31,48907,,,1577.645161,0.82281856,594.075,722,,,0.143523502,400,2787,0.095981767,0.191065237,2.869004579,,,,,,,,2.71079939,2.869942092,2.968152583,,,,,,,,2.859607563,3.014428381,0.106933566,,,,,-8108.218706,,,,,0.725493551,33919,46753,0.665012401,0.785974702,47026,,,42942.76596,51109.23404,44275,40376.44681,48173.55319,56500,20338.29787,92661.70213,28158,19252.80851,37063.19149,45727,40424.87234,51029.12766,47957,44742.3617,51171.6383,,,,,,0.640756532,5861,9147,,,45.86414093,,,,,0.30351295,,47026,,,23.50993378,71,3020,,,6.043982927,21,347453,3.741320692,9.238869929,,,,,,,,,,,,,6.884960412,4.010743158,11.02348858,,,,19.26172575,48,247975,14.04963493,25.77370452,19.35679,33.81543806,16.88054484,60.50515947,,,,,,,,,,14.24323569,9.125909864,21.19280569,,,,16.93719125,42,247975,12.20683768,22.89416223,,,,,,,,,,,,,15.38742107,10.14040744,22.38788978,,,,28.20525366,98,347453,22.89838829,34.37316998,43.57488344,26.61667085,67.29787333,,,,,,,,,,27.94483932,21.742753,35.36598266,,,,,,,,,,,0.512747103,18805,36675,,,0.516,,,,,22.13505947,,,,,0.70888702,12643,17835,0.691913024,0.725861015,0.100978754,1692,16756,0.088151444,0.113806064,0.751219512,13398,17835,0.731142764,0.771296261,48907,,,,,0.24111068,11792,48907,,,0.178931441,8751,48907,,,0.020303842,993,48907,,,0.148404114,7258,48907,,,0.009282925,454,48907,,,0.002126485,104,48907,,,0.079047989,3866,48907,,,0.694706279,33976,48907,,,0.015626372,712,45564,0.012017916,0.019234828,0.492015458,24063,48907,,,0.799767292,38492,48129,, -40,081,40081,OK,Lincoln County,2024,1,10630.22119,692,95509,9311.873122,11948.56926,0,14906.49962,10057.3527,21279.95509,,,,,2,,,,2,,,,2,10229.40055,8784.99302,11673.80807,,,,,2,,0.196,,,0.17,0.228,4.186274825,,,3.3086954,5.14991523,5.261892211,,,4.137995949,6.387805378,0.084512579,215,2544,0.073703607,0.09532155,0,0.090909091,0.0529206,0.128897582,,,,,,,,,,0.082335329,0.070300434,0.094370225,,,,0.084269663,0.043459766,0.12507956,0.209,,,0.171,0.252,0.408,,,0.33,0.488,6.9,0.110987192,0.13,,,0.305,,,0.256,0.363,0.533953016,17865,33458,,,0.136076246,,,0.106770921,0.168861069,0.255319149,12,47,0.17955074,0.335385166,307.4,104,33829,,,23.53543106,184,7818,20.13472326,26.93613885,18.76675603,10.25996016,31.48742778,,,,,,,29.41176471,14.68224697,52.62577143,22.64600715,18.79723775,26.49477655,,,,35.60371517,22.5697013,53.42305402,0.184152766,5034,27336,0.165088936,0.203216595,0.000236484,8,33829,,,4228.625,0.0002925,10,34188,,,3418.8,0.002047502,70,34188,,,488.4,2284,,,,,3198,,,,2190,0.39,,,,,0.25,,0.53,,0.4,0.42,,,,,0.39,,0.36,,0.42,0.891351119,20715,23240,0.878314279,0.904387959,0.486782477,3867,7944,0.446502182,0.527062773,0.030428088,494,16235,,,0.221,1716,,0.162617021,0.279382979,0.193069307,0.094288988,0.291849626,0.126760563,0,0.933765797,0.337662338,0,0.690841385,0.112474438,0.040952591,0.183996285,0.197674419,0.163377292,0.231971545,4.646034816,112894,24299,4.349334463,4.942735169,0.245780992,1937,7881,0.204742064,0.28681992,9.754943983,33,33829,,,104.7102346,182,173813,89.49742216,119.923047,91.56746858,45.7101504,163.8394948,,,,,,,,,,108.3172147,91.2094529,125.4249765,,,,9.1,,,,,1,,,,,0.101382489,1320,13020,0.083786826,0.118978151,0.069251861,0.054042247,0.084461474,0.026497696,0.018446779,0.034548612,0.010368664,0.004202561,0.016534767,0.796019553,11399,14320,0.774712841,0.817326265,0.67989418,0.555042544,0.804745816,,,,,,,,,,0.759183095,0.712458148,0.805908041,0.502,,14320,0.46439723,0.53960277,74.81440365,,,73.76709203,75.86171527,72.55525315,67.65197158,77.45853472,,,,,,,,,,74.91416092,73.78608607,76.04223577,,,,523.7270755,692,95509,482.3456922,565.1084588,740.4204394,547.7671172,978.8750873,,,,,,,,,,510.5534821,466.4739365,554.6330276,,,,64.39150032,23,35719,40.81868764,96.61886642,,,,,,,,,,,,,64.71259992,37.69747419,103.6111413,,,,10.79830312,28,2593,7.175394005,15.60655455,,,,,,,,,,,,,10.22395326,6.32878821,15.62839861,,,,,,,0.129,,,0.112,0.149,0.187,,,0.163,0.215,0.108,,,0.093,0.125,112.7,32,28382,,,0.13,4370,,,,0.110987192,3803.864039,34273,,,17.34923037,18,103751,10.28225345,27.41926369,,,,,,,,,,,,,17.71667493,9.915888471,29.22096104,,,,0.354,,,0.338,0.368,0.222912283,4343,19483,0.197891006,0.247933559,0.091677739,759,8279,0.069039441,0.114316037,0.000702001,24,34188,,,1424.5,0.896019553,320.775,358,,,0.127843987,236,1846,0.078746805,0.176941169,3.071723575,,,,,,,,,3.096086794,3.10351664,,,,,,,,,3.147236513,0.037171933,,,,,-2347.0181,,,,,0.670862454,38107,56803,0.612680011,0.729044898,54922,,,49802.17021,60041.82979,56607,41749.12766,71464.87234,58704,57561.3617,59846.6383,31618,21244.89362,41991.10638,66000,38698.21277,93301.78723,58156,54297.95745,62014.04255,,,,,,0.505413105,2661,5265,,,34.95165478,,,,,0.271403081,,54922,,,12.11801897,23,1898,,,6.147944128,15,243984,3.440957658,10.14009889,,,,,,,,,,,,,5.993257585,3.09680365,10.46901488,,,,16.38090205,28,173813,10.70054908,24.00181689,16.10926686,,,,,,,,,,,,,20.08493278,13.12014493,29.42908012,,,,16.10926686,28,173813,10.70449084,23.28237585,,,,,,,,,,,,,18.9906805,12.51497811,27.63044308,,,,25.82136534,63,243984,19.8418461,33.0367431,,,,,,,,,,,,,24.97190661,18.53463041,32.92234569,,,,,,,,,,,0.563939394,14888,26400,,,0.539,,,,,8.064225783,,,,,0.80558598,10297,12782,0.788184861,0.8229871,0.081161579,981,12087,0.066323432,0.095999725,0.765999061,9791,12782,0.741880966,0.790117156,34188,,,,,0.231894232,7928,34188,,,0.192172692,6570,34188,,,0.018778519,642,34188,,,0.073827074,2524,34188,,,0.005703756,195,34188,,,0.000906751,31,34188,,,0.040540541,1386,34188,,,0.807973558,27623,34188,,,0.001790707,57,31831,0,0.004618474,0.497952498,17024,34188,,,1,33458,33458,, -40,083,40083,OK,Logan County,2024,1,7558.070675,692,137973,6671.54425,8444.597101,0,,,,2,,,,2,13061.75874,8280.034593,19599.05138,1,,,,2,7732.636386,6701.741341,8763.53143,,,,,2,,0.169,,,0.143,0.199,3.763462218,,,3.002990751,4.618393194,5.458748876,,,4.478522386,6.499555937,0.070473538,253,3590,0.062101084,0.078845992,0,,,,,,,0.152317881,0.095004035,0.209631727,0.062893082,0.036209844,0.089576319,0.068727273,0.059271594,0.078182952,,,,0.063063063,0.031087199,0.095038928,0.175,,,0.138,0.216,0.415,,,0.346,0.487,7.1,0.152522222,0.103,,,0.271,,,0.222,0.323,0.57788316,28637,49555,,,0.146949549,,,0.117911887,0.181884172,0.317073171,13,41,0.235262051,0.399675377,338,172,50885,,,12.51481043,169,13504,10.62796209,14.40165877,,,,,,,2.975385448,1.485301695,5.323786452,20.46263345,12.9715543,30.70399724,14.95352283,12.17164471,17.73540096,,,,25.78018996,15.52135843,40.25896007,0.144114277,5912,41023,0.127433426,0.160795128,3.93043E-05,2,50885,,,25442.5,0.000134789,7,51933,,,7419,0.001540446,80,51933,,,649.1625,2347,,,,,,,1361,,2312,0.46,,,,,0.31,,0.45,,0.46,0.37,,,,,0.29,,0.33,0.34,0.37,0.918106033,30617,33348,0.903474113,0.932737954,0.623638933,7503,12031,0.564004997,0.683272869,0.027013165,632,23396,,,0.146,1612,,0.097148936,0.194851064,0.411971831,0.250395778,0.573547884,,,,0.654155496,0.447127803,0.861183189,0.319095477,0.161199734,0.476991221,0.142248402,0.097729222,0.186767582,4.644856211,156671,33730,4.012912682,5.27679974,0.133249416,1482,11122,0.099841254,0.166657578,7.664341161,39,50885,,,77.76693085,188,241748,66.6503276,88.88353411,,,,,,,83.99391044,48.00977717,136.4008483,,,,86.42346424,73.07366286,99.77326562,,,,9.4,,,,,0,,,,,0.09444799,1480,15670,0.074089066,0.114806914,0.073367809,0.054134647,0.09260097,0.017230377,0.00938181,0.025078943,0.005424378,0.001822623,0.009026133,0.799576252,17737,22183,0.771671148,0.827481356,,,,,,,0.786298569,0.645111973,0.927485164,0.636820926,0.485457483,0.788184368,0.701871824,0.65843906,0.745304587,0.482,,22183,0.432299038,0.531700962,78.2599414,,,77.41414451,79.1057383,,,,,,,74.12261304,70.13927984,78.10594624,93.7689278,72.89145335,114.6464023,77.85828408,76.92513998,78.79142818,,,,381.6314285,692,137973,351.9353184,411.3275387,,,,,,,563.8891234,408.0893546,759.5549487,,,,394.0364984,360.5878026,427.4851941,,,,36.92188107,19,51460,22.22938431,57.65809089,,,,,,,,,,,,,40.18023706,21.9669095,67.41561037,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.114,,,0.097,0.133,0.172,,,0.147,0.197,0.098,,,0.083,0.114,90.6,39,43064,,,0.103,5070,,,,0.152522222,6382.749947,41848,,,8.803234173,13,147673,4.687351439,15.05379854,,,,,,,,,,,,,,,,,,,0.329,,,0.313,0.345,0.171086686,5090,29751,0.149639878,0.192533495,0.076813178,914,11899,0.056557858,0.097068497,0.000539156,28,51933,,,1854.75,0.74283871,230.28,310,,,0.107782481,331,3071,0.065749881,0.149815082,2.587757026,,,,,,,1.979422296,2.213155762,2.728023588,2.587124935,,,,,,,2.05550442,2.442045035,2.697337332,0.040496716,,,,,-4104.3203,,,,,0.725212912,45898,63289,0.618415495,0.83201033,76331,,,69784.95745,82877.04255,93542,55246.34043,131837.6596,127273,54425.34043,200120.6596,38235,21292.02128,55177.97872,78542,23882.42553,133201.5745,81680,77655.14894,85704.85106,,,,,,0.528656127,2675,5060,,,45.881442,,,,,0.239168883,,76331,,,10.29829546,29,2816,,,4.486558271,15,334332,2.511092606,7.399895574,,,,,,,,,,,,,4.260708905,2.126930534,7.623585159,,,,18.80264939,46,241748,13.60757059,25.32704533,19.02807883,,,,,,,,,,,,,21.47352238,15.11934146,29.59842199,,,,14.47788606,35,241748,10.08437811,20.13523478,,,,,,,,,,,,,16.1037511,10.86513324,22.98910602,,,,18.84354474,63,334332,14.47989717,24.10907938,,,,,,,,,,,,,20.141533,15.04266023,26.41294084,,,,,,,,,,,0.602625698,21574,35800,,,0.639,,,,,18.0086501,,,,,0.867636868,15024,17316,0.849050162,0.886223574,0.075793008,1264,16677,0.057284993,0.094301024,0.885250635,15329,17316,0.862282179,0.908219091,51933,,,,,0.216721545,11255,51933,,,0.177459419,9216,51933,,,0.070167331,3644,51933,,,0.038414881,1995,51933,,,0.007374887,383,51933,,,0.000982035,51,51933,,,0.080738644,4193,51933,,,0.762732752,39611,51933,,,0.005994239,283,47212,0.002388179,0.009600299,0.497814492,25853,51933,,,0.619574211,30703,49555,, -40,085,40085,OK,Love County,2024,1,10870.05457,214,28232,8725.551904,13014.55724,0,,,,2,,,,2,,,,2,,,,2,12541.01436,9755.179363,15326.84936,,,,,2,,0.22,,,0.19,0.252,4.301658464,,,3.460427728,5.250755175,5.61359364,,,4.496976456,6.800127416,0.075471698,64,848,0.057692576,0.09325082,0,,,,,,,,,,0.07,0.034638428,0.105361572,0.078125,0.054878792,0.101371208,,,,,,,0.213,,,0.175,0.253,0.417,,,0.335,0.498,7.5,0.058252694,0.131,,,0.333,,,0.277,0.387,0.289473684,2937,10146,,,0.137152884,,,0.106403831,0.17032885,0.111111111,3,27,0.034770202,0.223179062,342.6,35,10216,,,32.32577666,77,2382,25.51099742,40.40167443,,,,,,,,,,26.74591382,15.8513236,42.27007469,35.76751118,26.37213921,47.42253069,,,,,,,0.207017121,1717,8294,0.183187334,0.230846908,0.000489428,5,10216,,,2043.2,9.78665E-05,1,10218,,,10218,0.000685066,7,10218,,,1459.714286,3177,,,,,,,,,3394,0.28,,,,,0.5,,,,0.28,0.29,,,,,0.37,,0.19,0.04,0.3,0.838924191,5677,6767,0.822203769,0.855644613,0.443210931,1038,2342,0.384395384,0.502026478,0.023850085,140,5870,,,0.188,457,,0.116510638,0.259489362,0.201754386,0.007070406,0.396438366,,,,,,,0.158705701,0.076841818,0.240569584,0.190265487,0.131210613,0.249320361,3.80186744,107494,28274,3.086238438,4.517496442,0.213333333,528,2475,0.152720969,0.273945698,10.76742365,11,10216,,,115.988755,59,50867,88.29601437,149.6170432,,,,,,,,,,,,,140.5876564,104.3468684,185.3472984,,,,8.6,,,,,0,,,,,0.113772455,380,3340,0.085021104,0.142523807,0.080851064,0.056960265,0.104741863,0.032634731,0.016007899,0.049261562,0.008982036,0.000904255,0.017059817,0.80394956,3379,4203,0.777742987,0.830156133,,,,,,,,,,0.658285714,0.584597726,0.731973703,0.81641791,0.764507942,0.868327879,0.338,,4203,0.286187335,0.389812665,74.15878665,,,72.46707648,75.85049683,,,,,,,,,,84.7097485,66.41361921,103.0058778,72.66903187,70.72187642,74.61618731,,,,581.2786562,214,28232,499.4877355,663.0695769,,,,,,,,,,,,,652.5316472,550.5103027,754.5529916,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.137,,,0.119,0.157,0.191,,,0.165,0.216,0.121,,,0.103,0.14,106.5,9,8454,,,0.131,1330,,,,0.058252694,548.9151393,9423,,,,,,,,,,,,,,,,,,,,,,,,,,0.344,,,0.331,0.357,0.250644219,1459,5821,0.219665496,0.281622943,0.106136627,275,2591,0.073966414,0.13830684,0.000782932,8,10218,,,1277.25,0.886270492,108.125,122,,,,,,,,2.642171838,,,,,,,,2.590090088,2.820521752,2.676148539,,,,,,,,2.520985839,2.832022504,0.070496486,,,,,-4941.564,,,,,0.687339429,36385,52936,0.618072314,0.756606543,64723,,,60109.55319,69336.44681,65000,33177.70213,96822.29787,60750,21289.06383,100210.9362,36071,12131.59575,60010.40426,61458,49280.97872,73635.02128,61622,54611.2766,68632.7234,,,,,,0.709587514,1273,1794,,,34.63901785,,,,,0.241537012,,64723,,,12.67828843,8,631,,,,,,,,,,,,,,,,,,,,,,,,,,22.52566598,10,50867,10.30016886,42.76073065,19.65911102,,,,,,,,,,,,,31.75956432,14.52249518,60.28954602,,,,,,,,,,,,,,,,,,,,,,,,,,,28.27494557,20,70734,17.27107132,43.6683602,,,,,,,,,,,,,26.12907764,13.91263339,44.68151854,,,,,,,,,,,0.55797399,4076,7305,,,0.439,,,,,15.87565297,,,,,0.715409658,2637,3686,0.682659581,0.748159735,0.083333333,288,3456,0.05969906,0.106967607,0.799782963,2948,3686,0.766084327,0.833481599,10218,,,,,0.242415346,2477,10218,,,0.18986103,1940,10218,,,0.022607164,231,10218,,,0.079663339,814,10218,,,0.007927187,81,10218,,,9.78665E-05,1,10218,,,0.185946369,1900,10218,,,0.673125856,6878,10218,,,0.021298919,203,9531,0.011053425,0.031544413,0.493736543,5045,10218,,,1,10146,10146,, -40,087,40087,OK,McClain County,2024,1,8052.641193,607,117485,7061.727936,9043.55445,0,10226.03885,6246.330192,15793.28762,1,,,,2,,,,2,6591.470551,3839.774499,10553.58288,1,7943.975377,6825.012728,9062.938025,,,,,2,,0.165,,,0.139,0.193,3.901077527,,,3.041333959,4.778914169,5.279584992,,,4.247556047,6.359908495,0.075398115,232,3077,0.066068796,0.084727434,0,,,,,,,,,,0.091772152,0.059940044,0.12360426,0.075555556,0.064635159,0.086475952,,,,0.092783505,0.051956637,0.133610373,0.173,,,0.135,0.213,0.397,,,0.323,0.471,8.6,0.033907148,0.089,,,0.257,,,0.21,0.307,0.551293745,22968,41662,,,0.154871957,,,0.121379107,0.190299694,0.333333333,23,69,0.271579087,0.395210092,324,141,43516,,,18.99196494,182,9583,16.23271986,21.75121002,23.98989899,14.44348632,37.46319895,,,,,,,22.72727273,14.70789259,33.54993791,16.78051678,13.68650345,19.87453012,,,,27.39726027,17.16971715,41.4797813,0.153335148,5632,36730,0.136654297,0.170015999,0.000436621,19,43516,,,2290.31579,0.000353154,16,45306,,,2831.625,0.001368472,62,45306,,,730.7419355,2397,,,,,5045,,,,2239,0.45,,,,,0.44,,,0.33,0.46,0.46,,,,,0.47,,,0.36,0.47,0.888924129,25225,28377,0.876191756,0.901656501,0.623230228,6911,11089,0.566852675,0.679607782,0.026563022,557,20969,,,0.127,1401,,0.082914894,0.171085106,0.033419023,0,0.073453803,,,,0.338028169,0,0.68328537,0.156340058,0.075993635,0.23668648,0.06495796,0.038735003,0.091180918,3.815116217,143456,37602,3.407327524,4.22290491,0.148780488,1586,10660,0.111056381,0.186504595,10.57082452,46,43516,,,96.25438519,197,204666,82.81301685,109.6957535,83.05647841,41.46149477,148.6109824,,,,,,,58.05852299,27.84131849,106.7716909,102.3068957,86.64879602,117.9649955,,,,9.9,,,,,1,,,,,0.100439635,1485,14785,0.07941173,0.12146754,0.076671214,0.057718392,0.095624036,0.021981738,0.014375506,0.029587971,0.005410889,0.001573124,0.009248655,0.839495757,16915,20149,0.813967294,0.865024219,0.667164179,0.54505329,0.789275068,,,,,,,0.668852459,0.401455784,0.936249134,0.77217336,0.720643693,0.823703028,0.485,,20149,0.444070996,0.525929004,76.48687398,,,75.63123993,77.34250803,81.18471739,74.62334989,87.74608488,,,,,,,80.00687402,72.80081426,87.21293377,76.37215176,75.43080349,77.31350002,,,,410.4192088,607,117485,376.7882257,444.0501918,389.1486086,260.6189306,558.8823151,,,,,,,326.054369,201.8327934,498.4087383,411.2538482,374.2660527,448.2416437,,,,61.14738704,28,45791,40.63199462,88.37499933,,,,,,,,,,,,,62.07517304,37.91712836,95.87007015,,,,7.234462348,22,3041,4.533799037,10.95306294,,,,,,,,,,,,,,,,,,,,,,0.113,,,0.096,0.131,0.168,,,0.144,0.194,0.096,,,0.082,0.112,97.3,35,35974,,,0.089,3670,,,,0.033907148,1170.000058,34506,,,15.15901004,19,125338,9.126714296,23.67267195,,,,,,,,,,,,,15.35972475,8.596721347,25.33353015,,,,0.327,,,0.311,0.341,0.180905107,4665,25787,0.158266809,0.203543405,0.091801285,1057,11514,0.069162988,0.114439583,0.000662164,30,45306,,,1510.2,0.91537133,530,579,,,,,,,,3.102749463,,,,,,,,2.690801875,3.153721361,3.124485694,,,,,,,,2.794847152,3.203057192,0.051858656,,,,,-1488.093633,,,,,0.710292764,45539,64113,0.628771351,0.791814178,75474,,,69480.80851,81467.19149,82157,38497.25532,125816.7447,,,,,,,74737,51174.10638,98299.89362,80105,75414.10638,84795.89362,,,,,,0.300371124,2509,8353,,,50.74658604,,,,,0.222805204,,75474,,,17.14530647,40,2333,,,4.264180176,12,281414,2.203364121,7.448664618,,,,,,,,,,,,,,,,,,,21.24178319,43,204666,15.24347036,28.81687745,21.00984042,,,,,,,,,,,,,22.315283,15.45398219,31.18337128,,,,14.16942726,29,204666,9.489487818,20.34966113,,,,,,,,,,,,,15.59556337,10.09262632,23.02212804,,,,20.61020418,58,281414,15.65019213,26.64346825,,,,,,,,,,,,,19.43564316,14.06567133,26.17968379,,,,,,,,,,,0.661599312,19236,29075,,,0.62,,,,,23.46575732,,,,,0.793746359,12261,15447,0.769898118,0.817594599,0.082440615,1239,15029,0.063753021,0.101128209,0.899592154,13896,15447,0.88020073,0.918983578,45306,,,,,0.247715534,11223,45306,,,0.15644727,7088,45306,,,0.013243279,600,45306,,,0.073124972,3313,45306,,,0.006996866,317,45306,,,0.001478833,67,45306,,,0.093894848,4254,45306,,,0.765307023,34673,45306,,,0.01336725,536,40098,0.007961191,0.01877331,0.497285128,22530,45306,,,0.870217464,36255,41662,, -40,089,40089,OK,McCurtain County,2024,1,17275.13452,894,88877,15607.38141,18942.88763,0,27170.10456,22221.56618,32118.64294,,,,,2,24003.66541,16900.79564,33085.89086,,,,,2,15972.43347,13829.79376,18115.07318,,,,,2,,0.249,,,0.217,0.282,4.801871703,,,3.906198613,5.782142559,6.040834689,,,4.956253649,7.218929419,0.079004666,254,3215,0.069680271,0.088329061,0,0.048979592,0.033376348,0.064582836,,,,0.120300752,0.081206174,0.15939533,0.097959184,0.060736413,0.135181955,0.077764277,0.064826722,0.090701832,,,,0.121827411,0.076151691,0.167503131,0.25,,,0.211,0.292,0.469,,,0.395,0.546,6,0.137837085,0.16,,,0.356,,,0.304,0.41,0.564353865,17390,30814,,,0.128316684,,,0.100884421,0.16032741,0.507246377,35,69,0.454098435,0.557424925,534.3,165,30884,,,43.67491166,309,7075,38.80513699,48.54468634,45.91836735,35.28493425,58.74953884,,,,47.34848485,30.64144289,69.89570397,42.46575343,28.85341915,60.27674727,42.9257272,36.10152418,49.74993022,,,,40.10349289,27.24837772,56.92370699,0.198769156,4877,24536,0.178513836,0.219024475,0.000453309,14,30884,,,2206,0.00038796,12,30931,,,2577.583333,0.003717953,115,30931,,,268.9652174,4632,,,,,4938,,8102,,4268,0.35,,,,,0.45,,0.48,,0.33,0.25,,,,,0.45,,0.18,0.04,0.22,0.849995095,17328,20386,0.833061153,0.866929037,0.459760627,3342,7269,0.416372338,0.503148917,0.039533864,631,15961,,,0.284,2276,,0.188680851,0.379319149,0.357910906,0.257497213,0.4583246,0.12890625,0,0.379455046,0.633633634,0.521995102,0.745272166,0.498409332,0.405973928,0.590844736,0.232951289,0.180708004,0.285194575,4.779294824,95562,19995,4.314502805,5.244086842,0.296546547,2370,7992,0.245806764,0.347286329,12.30410569,38,30884,,,137.6551707,223,161999,119.5877495,155.7225919,148.4955061,105.0842581,203.8216839,,,,179.771768,113.9598799,269.7459191,109.0404441,54.43259682,195.1034746,149.2748069,125.2249923,173.3246214,,,,9.4,,,,,1,,,,,0.12055336,1525,12650,0.103711353,0.137395367,0.064279902,0.051629027,0.076930778,0.04743083,0.035310726,0.059550934,0.013043478,0.007797835,0.018289122,0.851159741,10385,12201,0.835775741,0.866543741,0.889322917,0.828311747,0.950334086,,,,0.864182692,0.758968901,0.969396483,0.666389351,0.589341015,0.743437687,0.851878526,0.821822619,0.881934433,0.266,,12201,0.236117599,0.295882401,69.07423682,,,68.02019214,70.12828151,62.57898956,60.11884076,65.03913835,,,,65.06273978,60.73049272,69.39498683,,,,69.90776139,68.53826428,71.27725849,,,,805.398832,894,88877,749.9880319,860.8096322,1292.049701,1104.660077,1479.439326,,,,945.4429202,738.3987646,1192.547598,,,,750.1538423,684.4313435,815.8763412,,,,89.40795172,32,35791,61.15497279,126.217351,,,,,,,,,,,,,122.5415109,74.85153842,189.2554249,,,,8.209662141,26,3167,5.362823876,12.02905718,,,,,,,,,,,,,,,,,,,,,,0.152,,,0.133,0.173,0.209,,,0.183,0.236,0.136,,,0.117,0.156,75.6,19,25148,,,0.16,4980,,,,0.137837085,4569.437206,33151,,,19.69156786,19,96488,11.85561019,30.75082246,,,,,,,,,,,,,24.0194901,13.13167875,40.300623,,,,0.363,,,0.351,0.374,0.245578754,4152,16907,0.218174499,0.27298301,0.096737908,774,8001,0.071716631,0.121759184,0.000937571,29,30931,,,1066.586207,0.898977273,395.55,440,,,0.130548303,200,1532,0.078359611,0.182736995,3.079764999,,,,,,2.752976361,2.85536113,3.127323321,3.179600392,3.021161931,,,,,,2.392147747,2.735405252,2.961197204,3.223162624,0.111063506,,,,,-7258.111658,,,,,0.706802258,32180,45529,0.636385503,0.777219012,44465,,,39399.97872,49530.02128,57917,47845.34043,67988.65957,76806,26067.61702,127544.383,20911,15137.04255,26684.95745,50476,45626.6383,55325.3617,49180,44902.55319,53457.44681,,,,,,0.738930596,4823,6527,,,47.9308872,,,,,0.309209491,,44465,,,14.89757914,32,2148,,,15.79855092,36,227869,11.06511084,21.87185378,,,,,,,,,,,,,13.51591677,8.137464816,21.10677828,,,,32.34738398,48,161999,23.68235059,43.14687718,29.62981253,,,,,,,,,,,,,38.45760141,26.30497089,54.2906585,,,,36.4199779,59,161999,27.72457461,46.979118,42.98554123,21.45822731,76.91300709,,,,,,,,,,39.33592883,27.97169073,53.77350964,,,,36.86328548,84,227869,29.4036002,45.63925579,50.68566441,30.03953702,80.10520167,,,,,,,,,,36.27956607,27.01251989,47.70092931,,,,,,,,,,,0.479289446,11467,23925,,,0.43,,,,,17.80056088,,,,,0.717671075,8086,11267,0.695160073,0.740182077,0.084298153,881,10451,0.067971962,0.100624344,0.739327239,8330,11267,0.713877846,0.764776632,30931,,,,,0.263489703,8150,30931,,,0.176360286,5455,30931,,,0.07749507,2397,30931,,,0.180336879,5578,30931,,,0.010119298,313,30931,,,0.015809382,489,30931,,,0.071320035,2206,30931,,,0.593417607,18355,30931,,,0.012140132,350,28830,0.006949588,0.017330676,0.503249168,15566,30931,,,0.820763289,25291,30814,, -40,091,40091,OK,McIntosh County,2024,1,12657.95013,535,51837,10804.08204,14511.81822,0,13790.41849,10058.82588,18452.66494,,,,,2,24882.24439,11932.00335,45759.33334,1,,,,2,12423.46653,10013.03535,14833.89771,,,,,2,,0.234,,,0.203,0.266,4.828379845,,,3.857739758,5.800549196,6.105017831,,,4.955971088,7.329716101,0.083029862,114,1373,0.068434477,0.097625247,0,0.077777778,0.045831538,0.109724018,,,,,,,,,,0.074390244,0.056429633,0.092350855,,,,0.138121547,0.087855988,0.188387106,0.253,,,0.212,0.296,0.435,,,0.361,0.517,6.5,0.066446926,0.174,,,0.334,,,0.28,0.387,0.51037432,9667,18941,,,0.116968917,,,0.091715856,0.146679476,0.5,19,38,0.425391951,0.568865203,462.5,89,19245,,,38.45082196,138,3589,32.03544535,44.86619856,29.94652406,19.89924776,43.28106518,,,,,,,,,,39.8089172,31.3122387,49.90082243,,,,48.97959184,31.38214868,72.87775019,0.203808839,2836,13915,0.179979052,0.227638627,0.000103923,2,19245,,,9622.5,0.000514112,10,19451,,,1945.1,0.001696571,33,19451,,,589.4242424,3430,,,,,2376,,4049,,3519,0.32,,,,,0.24,,0.41,,0.33,0.35,,,,,0.2,,0.27,,0.38,0.864276569,12150,14058,0.839200366,0.889352771,0.378981691,1511,3987,0.314453169,0.443510212,0.048961628,356,7271,,,0.294,1144,,0.19987234,0.38812766,0.281105991,0.155626947,0.406585035,,,,,,,0.688311688,0.463655064,0.912968313,0.378160301,0.281257258,0.475063344,4.889462514,85238,17433,4.057222326,5.721702701,0.262977602,998,3795,0.187196976,0.338758228,6.755001299,13,19245,,,128.5281487,126,98033,106.0857615,150.9705359,121.7150761,76.27819016,184.2780879,,,,,,,,,,134.7239672,108.1944084,165.7894346,,,,9,,,,,1,,,,,0.129640901,1065,8215,0.105897271,0.15338453,0.090784558,0.06732094,0.114248176,0.038222763,0.025559996,0.050885531,0.007181984,1.01288E-05,0.01435384,0.741064208,4582,6183,0.703727964,0.778400453,0.648124192,0.575994388,0.720253995,,,,,,,,,,0.685441941,0.614582367,0.756301516,0.406,,6183,0.347556263,0.464443737,72.50943308,,,71.23017725,73.78868892,70.02297267,67.43532383,72.61062152,,,,,,,,,,72.65216287,70.98007554,74.32425019,,,,640.5800576,535,51837,579.5134984,701.6466167,739.7723439,592.5273214,912.5064532,,,,1139.12966,695.8099903,1759.293372,,,,618.3702893,545.7648652,690.9757134,,,,64.38396254,11,17085,32.14024213,115.2006937,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.149,,,0.129,0.169,0.203,,,0.177,0.23,0.132,,,0.113,0.151,175.1,29,16561,,,0.174,3330,,,,0.066446926,1345.683146,20252,,,27.36165264,16,58476,15.63954862,44.43360968,,,,,,,,,,,,,28.02547771,13.9902175,50.14532105,,,,0.368,,,0.355,0.381,0.2444553,2502,10235,0.213476577,0.275434024,0.093885904,367,3909,0.066481649,0.12129016,0.001079636,21,19451,,,926.2380952,0.817931937,156.225,191,,,,,,,,2.885508478,,,,,,,,,2.924860096,3.028516355,,,,,,,,,3.123709167,0.032536439,,,,,-3992.6385,,,,,0.821198557,35957,43786,0.714091348,0.928305766,43700,,,37920.08511,49479.91489,43214,29061.48936,57366.51064,,,,,,,42798,9128.893617,76467.10638,44454,38447.70213,50460.29787,,,,,,0.68579627,1912,2788,,,42.9068251,,,,,0.310572082,,43700,,,28.87391723,30,1039,,,7.254893426,10,137838,3.479003393,13.34200731,,,,,,,,,,,,,,,,,,,24.0087709,20,98033,14.22911923,37.94420882,20.40129344,,,,,,,,,,,,,23.25763927,12.0175616,40.6264153,,,,,,,,,,,,,,,,,,,,,,,,,,,26.11761633,36,137838,18.29245739,36.15778993,,,,,,,,,,,,,24.69506958,15.65455574,37.05472953,,,,,,,,,,,0.532247765,8335,15660,,,0.308,,,,,11.26634686,,,,,0.7756984,5720,7374,0.738174189,0.81322261,0.101680185,702,6904,0.074611849,0.128748522,0.717792243,5293,7374,0.677252584,0.758331902,19451,,,,,0.20338286,3956,19451,,,0.249858619,4860,19451,,,0.029098761,566,19451,,,0.193614724,3766,19451,,,0.00622076,121,19451,,,0.000719757,14,19451,,,0.035987867,700,19451,,,0.664078968,12917,19451,,,0.002365367,43,18179,0,0.007176781,0.504190016,9807,19451,,,1,18941,18941,, -40,093,40093,OK,Major County,2024,1,9764.106028,141,20705,7163.792235,12364.41982,0,,,,2,,,,2,,,,2,,,,2,11122.07396,8007.631673,14236.51624,,,,,2,,0.181,,,0.153,0.212,3.939799677,,,3.098695387,4.93518273,5.471129488,,,4.357693144,6.681356521,0.065495208,41,626,0.046114732,0.084875683,0,,,,,,,,,,,,,0.062868369,0.041781429,0.08395531,,,,,,,0.189,,,0.154,0.234,0.421,,,0.34,0.507,8.1,0.028882452,0.115,,,0.285,,,0.233,0.343,0.009509124,74,7782,,,0.14155867,,,0.110512435,0.174195432,0.269230769,7,26,0.16570611,0.378587417,156.5,12,7668,,,24.34881087,43,1766,17.62135516,32.79768845,,,,,,,,,,,,,24.33460076,16.64484891,34.3531955,,,,,,,0.186569633,1128,6046,0.162739846,0.21039942,0.000521648,4,7668,,,1917,0.000133298,1,7502,,,7502,0.000533191,4,7502,,,1875.5,1924,,,,,,,,,1958,0.37,,,,,,,,,0.37,0.3,,,,,,,,,0.3,0.90714149,4738,5223,0.888137242,0.926145737,0.470833333,791,1680,0.389083393,0.552583274,0.023603462,90,3813,,,0.162,302,,0.100042553,0.223957447,,,,,,,,,,0.315625,0.190389832,0.440860169,0.106428571,0.044112143,0.168745,4.133660984,120273,29096,3.496843252,4.770478717,0.175835476,342,1945,0.099556132,0.252114819,22.17005738,17,7668,,,167.4822704,64,38213,128.9817563,213.8711203,,,,,,,,,,,,,183.5490294,139.7260255,236.7648748,,,,8.4,,,,,1,,,,,0.079934747,245,3065,0.055684541,0.104184954,0.055629139,0.030902351,0.080355927,0.022838499,0.006357724,0.039319274,0.009787928,0,0.019733891,0.853262474,2890,3387,0.833129347,0.873395601,,,,,,,,,,,,,0.850340136,0.80046152,0.900218753,0.327,,3387,0.274331318,0.379668682,75.21077169,,,73.18837855,77.23316483,,,,,,,,,,,,,74.21704449,71.92963048,76.50445851,,,,497.2929039,141,20705,409.2307842,585.3550237,,,,,,,,,,,,,539.7310746,439.0987805,640.3633688,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.121,,,0.104,0.14,0.178,,,0.154,0.206,0.1,,,0.085,0.117,,,,,,0.115,890,,,,0.028882452,217.3982185,7527,,,,,,,,,,,,,,,,,,,,,,,,,,0.341,,,0.323,0.357,0.216328526,885,4091,0.187732781,0.244924271,0.125980392,257,2040,0.089044222,0.162916562,0.000666489,5,7502,,,1500.4,,,,,,,,,,,3.056243065,,,,,,,,,3.077379261,3.091672043,,,,,,,,,3.138384153,0.104560135,,,,,-2039.85365,,,,,0.642748347,38401,59745,0.545910808,0.739585886,63840,,,56425.3617,71254.6383,73077,52312.91489,93841.08511,,,,,,,48523,15870.23404,81175.76596,68103,63626.57447,72579.42553,,,,,,0.511335013,609,1191,,,,,,,,0.240946115,,63840,,,12.84796574,6,467,,,,,,,,,,,,,,,,,,,,,,,,,,36.93841503,13,38213,19.08661806,64.52397734,34.01983618,,,,,,,,,,,,,43.79563364,22.62984299,76.50215828,,,,28.78601523,11,38213,14.36987509,51.50613277,,,,,,,,,,,,,31.11000498,14.91845662,57.2124068,,,,42.78592157,23,53756,27.12260406,64.19989005,,,,,,,,,,,,,44.08976677,26.93117496,68.09306887,,,,,,,,,,,0.635563703,3467,5455,,,0.544,,,,,1.964950586,,,,,0.820966214,2600,3167,0.794359371,0.847573057,0.068429752,207,3025,0.040264669,0.096594835,0.882854436,2796,3167,0.858627475,0.907081397,7502,,,,,0.252332711,1893,7502,,,0.214609438,1610,7502,,,0.007997867,60,7502,,,0.036656892,275,7502,,,0.008797654,66,7502,,,0.001066382,8,7502,,,0.108904292,817,7502,,,0.821514263,6163,7502,,,0.01300678,94,7227,0.002490349,0.023523211,0.504265529,3783,7502,,,1,7782,7782,, -40,095,40095,OK,Marshall County,2024,1,10665.51967,367,44652,8841.174587,12489.86475,0,9863.969163,5638.110657,16018.46794,1,,,,2,,,,2,,,,2,13703.90478,10847.62209,16560.18747,,,,,2,,0.228,,,0.197,0.263,4.489340881,,,3.606258787,5.446071885,5.824837362,,,4.713355233,6.958600276,0.08040201,112,1393,0.066122511,0.094681509,0,0.069148936,0.032882073,0.1054158,,,,,,,0.066489362,0.041306918,0.091671805,0.081830791,0.061822583,0.101838998,,,,,,,0.216,,,0.179,0.258,0.402,,,0.323,0.479,6.3,0.144340969,0.145,,,0.33,,,0.277,0.385,0.61526907,9421,15312,,,0.123939093,,,0.096841428,0.153279305,0.153846154,4,26,0.064169884,0.268836156,269.3,42,15594,,,39.08984831,134,3428,32.47122511,45.70847151,24.5398773,12.6801127,42.86622709,,,,,,,30.15564202,20.4892957,42.80352675,47.58961681,37.55698137,59.47885569,,,,45.04504505,21.60084998,82.83944163,0.237599206,2874,12096,0.21257793,0.262620483,0.000256509,4,15594,,,3898.5,0.000125929,2,15882,,,7941,0.003274147,52,15882,,,305.4230769,5009,,,,,4532,,,,5180,0.35,,,,,0.44,,,0.25,0.35,0.4,,,,,0.5,,,0.23,0.4,0.819144947,8737,10666,0.798359823,0.83993007,0.40819378,1365,3344,0.348892398,0.467495162,0.030471289,225,7384,,,0.206,721,,0.133319149,0.278680851,0.067460318,0.004817964,0.130102671,,,,,,,0.251561106,0.175945757,0.327176455,0.288135593,0.212041087,0.3642301,4.897934556,105526,21545,4.304340209,5.491528903,0.216836735,765,3528,0.16363853,0.270034939,13.46671797,21,15594,,,117.0380917,97,82879,94.91000805,142.7765465,,,,,,,,,,,,,151.8645593,120.6023811,188.753781,,,,8.7,,,,,1,,,,,0.096319499,615,6385,0.07587242,0.116766578,0.071713147,0.050657143,0.092769152,0.022552858,0.012819778,0.032285938,0.00375881,0,0.007533542,0.813242784,4790,5890,0.794538451,0.831947118,,,,,,,,,,0.832124352,0.749749369,0.914499336,0.751075599,0.691807712,0.810343487,0.354,,5890,0.305542844,0.402457156,74.66699718,,,73.20436803,76.12962634,,,,,,,,,,83.63842827,73.49481837,93.78203817,72.47564621,70.51199114,74.43930129,,,,559.5403362,367,44652,497.8539391,621.2267333,556.2833568,372.5516946,798.915693,,,,,,,,,,658.5856692,574.3807426,742.7905957,,,,71.54781779,12,16772,36.96980151,124.979639,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.143,,,0.123,0.164,0.191,,,0.165,0.217,0.123,,,0.105,0.142,76.6,10,13062,,,0.145,2230,,,,0.144340969,2286.360941,15840,,,20.14545015,10,49639,9.660526393,37.04820009,,,,,,,,,,,,,,,,,,,0.34,,,0.326,0.352,0.282000466,2419,8578,0.251021743,0.31297919,0.131209503,486,3704,0.095464822,0.166954184,0.000377786,6,15882,,,2647,0.852411168,167.925,197,,,,,,,,3.218997223,,,,,,,,3.083039884,3.339382423,3.279909183,,,,,,,,3.165450057,3.419934195,0.121761539,,,,,-4825.4595,,,,,0.654443964,34821,53207,0.549013486,0.759874442,51341,,,44901,57781,34583,17761.55319,51404.44681,,,,,,,56838,46008.55319,67667.44681,55092,50653.70213,59530.29787,,,,,,0.799262735,2385,2984,,,76.46624862,,,,,0.288697143,,51341,,,12.91711518,12,929,,,,,,,,,,,,,,,,,,,,,,,,,,31.7577037,26,82879,20.13165994,47.65214843,31.37103488,,,,,,,,,,,,,39.55756354,22.61056547,64.2390049,,,,27.75130009,23,82879,17.59194372,41.64057589,,,,,,,,,,,,,33.74767985,20.00101389,53.33588366,,,,25.15134169,29,115302,16.84424827,36.12152212,,,,,,,,,,,,,32.14788025,20.59775347,47.83349755,,,,,,,,,,,0.505754796,6064,11990,,,0.319,,,,,21.89485129,,,,,0.773544974,4386,5670,0.74237581,0.804714137,0.100507233,535,5323,0.073415484,0.127598982,0.780070547,4423,5670,0.745651876,0.814489218,15882,,,,,0.227868027,3619,15882,,,0.220375268,3500,15882,,,0.018637451,296,15882,,,0.110628384,1757,15882,,,0.005289006,84,15882,,,0.00144818,23,15882,,,0.190215338,3021,15882,,,0.633484448,10061,15882,,,0.038177934,554,14511,0.026936424,0.049419444,0.496977711,7893,15882,,,1,15312,15312,, -40,097,40097,OK,Mayes County,2024,1,12775.10586,903,112130,11491.80226,14058.40947,0,20185.66033,16894.17194,23477.14872,,,,,2,,,,2,,,,2,11554.4031,9974.328146,13134.47805,,,,,2,,0.22,,,0.191,0.252,4.579121078,,,3.711006874,5.512759676,5.620291095,,,4.573783003,6.701833881,0.089598036,292,3259,0.079792311,0.099403762,0,0.066516347,0.050117557,0.082915138,,,,,,,,,,0.094475138,0.081000232,0.107950044,,,,0.117370892,0.08680616,0.147935624,0.236,,,0.198,0.281,0.423,,,0.35,0.5,7,0.054862799,0.152,,,0.332,,,0.281,0.39,0.412052451,16089,39046,,,0.131505292,,,0.103014558,0.162362211,0.307692308,20,65,0.243523706,0.372832647,390.7,153,39159,,,35.89383842,307,8553,31.87864208,39.90903476,38.59787318,31.33561917,47.03844439,,,,,,,,,,37.23780344,31.43134151,43.04426537,,,,37.03703704,26.80388735,49.88864583,0.1904731,5870,30818,0.170217781,0.210728419,0.000357517,14,39159,,,2797.071429,0.000378893,15,39589,,,2639.266667,0.002551214,101,39589,,,391.970297,3062,,,,,4931,,,,2672,0.45,,,,,0.44,,,,0.45,0.32,,,,,0.44,,,0.25,0.3,0.891533606,24009,26930,0.878088935,0.904978277,0.536543969,5058,9427,0.491360655,0.581727284,0.031283219,618,19755,,,0.233,2059,,0.167468085,0.298531915,0.219863837,0.158789766,0.280937907,,,,,,,0.252713178,0.132865921,0.372560436,0.229156389,0.175371618,0.28294116,4.42173878,109553,24776,4.140430002,4.703047557,0.244981249,2221,9066,0.202360033,0.287602464,15.5775173,61,39159,,,104.6996889,213,203439,90.63883609,118.7605416,126.5593925,95.60160501,164.3478982,,,,,,,,,,108.9441623,91.02507591,126.8632487,,,,9.2,,,,,1,,,,,0.12134412,1950,16070,0.10415807,0.138530169,0.087323944,0.071990205,0.102657682,0.032047293,0.023146415,0.040948172,0.009956441,0.005217359,0.014695522,0.809903279,13314,16439,0.783234701,0.836571856,0.841237113,0.79584181,0.886632417,,,,,,,0.917214192,0.85198158,0.982446804,0.777386886,0.748492981,0.80628079,0.387,,16439,0.355521221,0.418478779,72.32399224,,,71.41730318,73.23068131,65.40308816,63.54658965,67.25958667,,,,,,,,,,73.39204399,72.25949901,74.52458896,,,,604.2021759,903,112130,562.5738838,645.830468,977.8690625,853.5624515,1102.175674,,,,,,,,,,554.4736393,506.1978453,602.7494332,,,,91.74754938,38,41418,64.92602647,125.9306797,170.3577513,104.0589403,263.10373,,,,,,,,,,78.84492189,45.06668533,128.0392135,,,,8.860372747,29,3273,5.933930687,12.72497325,,,,,,,,,,,,,,,,,,,,,,0.143,,,0.124,0.163,0.199,,,0.174,0.226,0.121,,,0.104,0.14,61.1,20,32732,,,0.152,5980,,,,0.054862799,2263.584209,41259,,,30.47499815,37,121411,21.4572111,42.0057706,37.45037825,17.95891205,68.87257899,,,,,,,,,,31.0647441,19.90376771,46.22187682,,,,0.367,,,0.353,0.38,0.228597203,5068,22170,0.202384438,0.254809969,0.094871231,862,9086,0.069849954,0.119892507,0.000378893,15,39589,,,2639.266667,0.816629712,368.3,451,,,0.130165289,252,1936,0.080212555,0.180118023,2.996675488,,,,,,,,2.727104868,3.06554367,3.122275066,,,,,,,,2.888507803,3.192232656,0.029205133,,,,,-323.3301667,,,,,0.65527433,36582,55827,0.591582213,0.718966446,50174,,,46423.19149,53924.80851,55566,48713.74468,62418.25532,49821,12312.91489,87329.08511,,,,46349,36501.34043,56196.65957,58555,52081.6383,65028.3617,,,,,,0.537706839,3672,6829,,,,,,,,0.309881612,,50174,,,13.43736454,31,2307,,,4.557469693,13,285246,2.426660669,7.793411974,,,,,,,,,,,,,,,,,,,25.39582544,49,203439,18.65989731,33.77106411,24.08584391,31.34557497,17.13691752,52.59254856,,,,,,,,,,25.43632386,16.90225248,36.76257013,,,,16.22107855,33,203439,11.1658441,22.78042522,27.11986983,14.01323248,47.37295482,,,,,,,,,,14.5770358,8.776327787,22.76384709,,,,21.73562469,62,285246,16.66457882,27.8640899,27.57680953,16.06450779,44.15314346,,,,,,,,,,21.77155111,15.55391531,29.64667329,,,,,,,,,,,0.532457966,16626,31225,,,0.501,,,,,22.41308843,,,,,0.74331657,11233,15112,0.723313935,0.763319204,0.095098039,1358,14280,0.07854677,0.111649308,0.850185283,12848,15112,0.831275055,0.869095511,39589,,,,,0.229962869,9104,39589,,,0.189598121,7506,39589,,,0.008234611,326,39589,,,0.226805426,8979,39589,,,0.007123191,282,39589,,,0.000808305,32,39589,,,0.042132916,1668,39589,,,0.62954356,24923,39589,,,0.002939035,109,37087,0.000286672,0.005591398,0.497410897,19692,39589,,,0.758336321,29610,39046,, -40,099,40099,OK,Murray County,2024,1,11599.7196,319,38079,9510.552847,13688.88636,0,16340.76018,10574.8784,24122.18553,1,,,,2,,,,2,,,,2,10700.49316,8353.543317,13047.443,,,,,2,,0.208,,,0.18,0.237,4.282872168,,,3.405374563,5.225655962,5.965746408,,,4.852234844,7.166144448,0.062381853,66,1058,0.047808638,0.076955068,0,0.049586777,0.022234873,0.076938681,,,,,,,,,,0.065548781,0.046609443,0.084488118,,,,,,,0.217,,,0.18,0.258,0.411,,,0.334,0.494,7.1,0.057104805,0.15,,,0.311,,,0.262,0.366,0.587672612,8171,13904,,,0.132724237,,,0.104871905,0.167216614,0.269230769,7,26,0.16570611,0.378587417,379.1,52,13718,,,41.25177809,116,2812,33.74472047,48.75883572,48.35589942,31.29338849,71.38284661,,,,,,,,,,43.23995128,33.77076069,54.54131493,,,,34.36426117,16.47899896,63.1970998,0.196094918,2099,10704,0.17345662,0.218733216,0.000291588,4,13718,,,3429.5,0.000438853,6,13672,,,2278.666667,0.001023991,14,13672,,,976.5714286,5632,,,,,5420,,,,5597,0.31,,,,,0.5,,,,0.3,0.37,,,,,0.45,,,0.25,0.36,0.86812841,8275,9532,0.838180947,0.898075873,0.481315874,1507,3131,0.399017846,0.563613901,0.030377266,186,6123,,,0.172,519,,0.101702128,0.242297872,0.158783784,0.019067089,0.298500479,,,,,,,0.152238806,0,0.354534822,0.245063879,0.144001745,0.346126013,4.200930721,111938,26646,3.280643711,5.121217732,0.261631613,821,3138,0.181697741,0.341565484,10.20556933,14,13718,,,116.4596273,81,69552,92.48575454,144.7486833,,,,,,,,,,,,,134.3347377,103.8944764,170.9067237,,,,8.7,,,,,1,,,,,0.113352546,590,5205,0.080274922,0.146430169,0.055945419,0.032005466,0.079885372,0.044188281,0.025121021,0.06325554,0.02209414,0.007137529,0.037050751,0.893093501,5263,5893,0.852905841,0.933281161,0.75464684,0.635082332,0.874211349,,,,,,,,,,0.90821256,0.868321978,0.948103143,0.313,,5893,0.250381594,0.375618406,72.57659886,,,71.0891359,74.06406183,69.48889233,64.7361829,74.24160175,,,,,,,,,,72.86403505,71.18249874,74.54557136,,,,598.0254954,319,38079,528.5204684,667.5305224,748.5094633,532.2633998,1023.237077,,,,,,,,,,593.0944052,513.8143976,672.3744128,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.133,,,0.115,0.152,0.193,,,0.169,0.22,0.112,,,0.096,0.13,69.6,8,11486,,,0.15,2080,,,,0.057104805,770.229608,13488,,,,,,,,,,,,,,,,,,,,,,,,,,0.338,,,0.324,0.352,0.236241256,1790,7577,0.206454022,0.266028491,0.101586333,333,3278,0.072990588,0.130182078,0.000804564,11,13672,,,1242.909091,0.875,140,160,,,,,,,,3.076835353,,,,,,,,3.055360266,3.071412815,2.996832662,,,,,,,,2.895788355,2.959799242,0.022971432,,,,,-1906.838,,,,,0.808835612,38393,47467,0.715536347,0.902134877,60307,,,53422.57447,67191.42553,69557,48875.12766,90238.87234,,,,41000,20618.38298,61381.61702,62399,46390.14894,78407.85106,59442,51989.23404,66894.76596,,,,,,0.532325777,1268,2382,,,35.10658915,,,,,0.262523422,,60307,,,13.28903655,12,903,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,31.82555489,31,97406,21.62392048,45.17383478,,,,,,,,,,,,,34.54032583,22.1306385,51.39326693,,,,,,,,,,,0.563749402,5894,10455,,,0.496,,,,,14.7741444,,,,,0.730381498,3695,5059,0.696954529,0.763808468,0.071222131,345,4844,0.043982185,0.098462076,0.716742439,3626,5059,0.670217301,0.763267577,13672,,,,,0.224546518,3070,13672,,,0.208747806,2854,13672,,,0.018212405,249,13672,,,0.145699239,1992,13672,,,0.006509655,89,13672,,,0.000950848,13,13672,,,0.076433587,1045,13672,,,0.695216501,9505,13672,,,0.001692829,22,12996,0,0.007044992,0.492539497,6734,13672,,,0.651395282,9057,13904,, -40,101,40101,OK,Muskogee County,2024,1,13435.98028,1663,187478,12461.42983,14410.53072,0,17037.07164,14614.87199,19459.27129,,,,,2,19424.40197,15542.30052,23306.50342,,6700.912561,4452.707733,9684.684363,,12468.56208,11181.20229,13755.92187,,,,,2,,0.239,,,0.206,0.273,4.807691019,,,3.873441687,5.788799304,6.140267288,,,5.048725444,7.314721538,0.085603113,506,5911,0.078470679,0.092735547,0,0.057049715,0.0440718,0.07002763,,,,0.148464164,0.11967563,0.177252698,0.057777778,0.036219855,0.0793357,0.09039548,0.079834381,0.100956579,,,,0.082337317,0.062703784,0.101970851,0.238,,,0.197,0.283,0.407,,,0.334,0.482,7,0.058842817,0.153,,,0.337,,,0.285,0.392,0.54547099,36186,66339,,,0.136904676,,,0.109204322,0.169777577,0.123076923,8,65,0.068848579,0.190266759,635,420,66146,,,33.01096067,512,15510,30.15153209,35.87038925,24.9757517,20.15232118,29.79918222,,,,33.17249698,24.99006452,43.17856452,31.12033195,22.69938367,41.64145263,34.65579426,30.08664031,39.22494821,,,,46.39737991,37.06057915,57.37107878,0.181501594,9225,50826,0.162437764,0.200565424,0.000453542,30,66146,,,2204.866667,0.000632969,42,66354,,,1579.857143,0.004958254,329,66354,,,201.6838906,3460,,,,,5050,,3230,5204,3222,0.38,,,,,0.45,,0.32,0.21,0.37,0.39,,,,,0.42,0.6,0.27,0.25,0.39,0.868972675,38512,44319,0.855586495,0.882358856,0.536932153,9101,16950,0.498566373,0.575297934,0.034598834,997,28816,,,0.246,3881,,0.181659575,0.310340426,0.210197711,0.162774654,0.257620768,,,,0.493264913,0.372824892,0.613704935,0.233170732,0.145995485,0.320345979,0.263785395,0.203059919,0.324510871,4.408798986,100913,22889,4.047388427,4.770209546,0.341383367,5513,16149,0.301795959,0.380970776,10.88501194,72,66146,,,111.7331612,379,339201,100.4840411,122.9822812,132.4336255,105.6342463,163.9618398,,,,140.7063459,104.434962,185.5037756,,,,116.354786,100.9089267,131.8006454,,,,9.3,,,,,1,,,,,0.150179009,3985,26535,0.135144835,0.165213183,0.115710435,0.101041034,0.130379837,0.03033729,0.023293039,0.037381542,0.014697569,0.006904849,0.02249029,0.82661071,21272,25734,0.810634563,0.842586856,0.869254341,0.83429744,0.904211242,,,,0.7484,0.696397618,0.800402382,0.818087855,0.776414224,0.859761486,0.827726747,0.807233475,0.84822002,0.254,,25734,0.229992155,0.278007845,70.81974581,,,70.15971529,71.47977633,67.23669389,65.81320983,68.66017795,,,,66.98862762,64.70370453,69.27355071,83.75730618,72.95801545,94.55659691,71.50302661,70.62317135,72.38288186,,,,695.8089345,1663,187478,661.0689096,730.5489594,889.8508908,790.4790914,989.2226901,,,,903.7498866,776.5094764,1030.990297,432.9199968,289.9333163,621.74533,662.1487735,619.1689479,705.1285991,,,,76.54665245,56,73158,57.82251864,99.40219526,84.75533959,47.43692018,139.7910435,,,,174.5435016,92.93706352,298.4747035,,,,65.09301449,39.19024689,101.6508053,,,,8.672448299,52,5996,6.4769992,11.37276213,,,,,,,,,,,,,7.882111035,4.996582261,11.82703663,,,,,,,0.148,,,0.128,0.17,0.202,,,0.176,0.23,0.133,,,0.114,0.154,199.2,109,54722,,,0.153,10220,,,,0.058842817,4177.251556,70990,,,26.26974568,53,201753,19.67784218,34.36147414,41.80929734,23.8976259,67.89567953,,,,,,,,,,25.34074248,16.83873935,36.62442842,,,,0.366,,,0.354,0.377,0.224100051,7956,35502,0.200270264,0.247929838,0.085942829,1386,16127,0.063304531,0.108581127,0.001205655,80,66354,,,829.425,0.87928101,801.025,911,,,0.111014994,385,3468,0.069535328,0.152494661,3.054671949,,,,,,,2.348394894,2.755108117,3.263062088,2.958174597,,,,,,,2.280694961,2.767055012,3.109169628,0.108812428,,,,,-6930.82595,,,,,0.863927541,40729,47144,0.808589542,0.91926554,53035,,,49647.59575,56422.40426,57826,47843.70213,67808.29787,48438,11164.6383,85711.3617,39556,33502.04255,45609.95745,52372,41479.40426,63264.59575,51967,48036.2766,55897.7234,,,,,,0.679734163,8080,11887,,,49.6438163,,,,,0.28713114,,53035,,,16.11418048,70,4344,,,10.87008782,52,478377,8.118301507,14.25467398,,,,,,,49.59825414,32.09737496,73.21680726,,,,6.005532597,3.432680777,9.75260869,,,,18.92273374,65,339201,14.50795146,24.25809065,19.16267936,17.64381379,8.46089452,32.44760175,,,,,,,,,,21.97927831,15.70231867,29.92953877,,,,18.57305845,63,339201,14.27204808,23.76300992,18.91908936,9.775769548,33.04784172,,,,59.09666526,36.58176723,90.33553042,,,,15.47838897,10.36612002,22.22954848,,,,17.55937263,84,478377,14.0060433,21.73969814,23.78740853,14.7247808,36.36158077,,,,,,,,,,18.39194358,13.60646111,24.31512478,,,,,,,,,,,0.493963565,25081,50775,,,0.547,,,,,33.48257364,,,,,0.667278694,17081,25598,0.649322476,0.685234912,0.112365525,2747,24447,0.096749653,0.127981398,0.747636534,19138,25598,0.72793563,0.767337439,66354,,,,,0.243934051,16186,66354,,,0.172318172,11434,66354,,,0.100280315,6654,66354,,,0.206347771,13692,66354,,,0.009750731,647,66354,,,0.001401573,93,66354,,,0.077071465,5114,66354,,,0.53892757,35760,66354,,,0.00723162,451,62365,0.004581794,0.009881446,0.508725925,33756,66354,,,0.460377757,30541,66339,, -40,103,40103,OK,Noble County,2024,1,9854.557353,231,30243,7664.23402,12044.88069,0,17818.72492,9487.720563,30470.56228,1,,,,2,,,,2,,,,2,8374.633157,6194.279373,10554.98694,,,,,2,,0.182,,,0.152,0.211,4.046320483,,,3.1570368,4.985414889,5.608294838,,,4.464153726,6.77738276,0.075980392,62,816,0.057800038,0.094160747,0,0.103092784,0.042578472,0.163607095,,,,,,,,,,0.076794658,0.055471215,0.0981181,,,,,,,0.195,,,0.156,0.238,0.379,,,0.301,0.462,7.3,0.123175119,0.107,,,0.28,,,0.231,0.333,0.465671915,5087,10924,,,0.13896678,,,0.108581703,0.173216354,0.206896552,6,29,0.113372568,0.31356155,201.2,22,10933,,,25.42007755,59,2321,19.35094081,32.79004798,28.49002849,13.66207606,52.39417676,,,,,,,,,,24.1745283,17.34805889,32.79547734,,,,,,,0.14033264,1215,8658,0.1224603,0.158204981,0.000457331,5,10933,,,2186.6,0.000367107,4,10896,,,2724,0.000642438,7,10896,,,1556.571429,3381,,,,,,,,,3618,0.44,,,,,0.12,,,,0.46,0.45,,,,,0.42,,,,0.45,0.902523701,6759,7489,0.882654757,0.922392646,0.548715858,1346,2453,0.467991364,0.629440352,0.021825056,127,5819,,,0.153,372,,0.091042553,0.214957447,0.124031008,0.035397829,0.212664186,,,,,,,0.055837564,0,0.181884639,0.137207909,0.050277422,0.224138396,4.698602162,133445,28401,3.743909158,5.653295165,0.23540561,621,2638,0.152202365,0.318608855,14.63459252,16,10933,,,121.9884111,68,55743,94.72877447,154.6493787,,,,,,,,,,,,,124.9860507,94.41311948,162.304783,,,,8.7,,,,,1,,,,,0.098888889,445,4500,0.06921035,0.128567428,0.054831461,0.030283243,0.079379679,0.023333333,0.005002383,0.041664284,0.024444444,0.007735191,0.041153698,0.7737691,3646,4712,0.74067503,0.80686317,0.757225434,0.600417322,0.914033545,,,,,,,,,,0.817943836,0.787205063,0.84868261,0.312,,4712,0.251974474,0.372025527,74.60896374,,,72.90811552,76.30981197,,,,,,,,,,,,,75.73746314,73.99919934,77.47572695,,,,527.17895,231,30243,455.1137544,599.2441456,952.4974371,616.4061198,1406.074114,,,,,,,,,,475.5070455,401.1143023,549.8997887,,,,96.82246281,11,11361,48.33342459,173.2421311,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.123,,,0.105,0.142,0.182,,,0.158,0.21,0.103,,,0.088,0.121,174.7,16,9158,,,0.107,1180,,,,0.123175119,1424.02755,11561,,,,,,,,,,,,,,,,,,,,,,,,,,0.34,,,0.325,0.357,0.169805195,1046,6160,0.145975408,0.193634982,0.070556827,185,2622,0.049110018,0.092003635,0.00027533,3,10896,,,3632,0.905709877,146.725,162,,,,,,,,3.146764967,,,,,,,,,3.190401918,3.106506212,,,,,,,,,3.18467239,0.133844723,,,,,3445.807333,,,,,0.734819668,41726,56784,0.621247503,0.848391832,61415,,,52997.12766,69832.87234,55000,31221.44681,78778.55319,,,,151250,52965.23404,249534.766,23813,6542.361702,41083.6383,68886,61588.12766,76183.87234,,,,,,0.507820137,1039,2046,,,,,,,,0.28480013,,61415,,,15.8045977,11,696,,,,,,,,,,,,,,,,,,,,,,,,,,30.60936775,19,55743,17.8310847,49.00856294,34.08499722,,,,,,,,,,,,,36.43278683,20.82448559,59.1645633,,,,30.49710278,17,55743,17.76568622,48.82881584,,,,,,,,,,,,,35.71030019,20.41152205,57.99129025,,,,21.60623276,17,78681,12.5864268,34.59367168,,,,,,,,,,,,,17.31220196,8.64218884,30.97631142,,,,,,,,,,,0.576532399,4938,8565,,,0.594,,,,,11.08373791,,,,,0.798449612,3399,4257,0.761662136,0.835237088,0.066134265,265,4007,0.037053568,0.095214962,0.78858351,3357,4257,0.742811328,0.834355691,10896,,,,,0.227973568,2484,10896,,,0.213105727,2322,10896,,,0.017162261,187,10896,,,0.09517254,1037,10896,,,0.006332599,69,10896,,,0.001284875,14,10896,,,0.04643906,506,10896,,,0.796347283,8677,10896,,,0.007644668,79,10334,0,0.017379574,0.50715859,5526,10896,,,0.593097766,6479,10924,, -40,105,40105,OK,Nowata County,2024,1,10617.43565,199,26846,8384.987583,12849.88372,0,7593.200229,3790.498196,13586.33267,1,,,,2,,,,2,,,,2,10775.72248,8046.24981,13505.19515,,,,,2,,0.212,,,0.183,0.244,4.394640713,,,3.459835334,5.357916692,5.701082607,,,4.54836667,6.921992704,0.074572127,61,818,0.056569372,0.092574882,0,,,,,,,,,,,,,0.072265625,0.049837199,0.094694051,,,,0.109375,0.055304852,0.163445148,0.228,,,0.188,0.271,0.431,,,0.348,0.517,7,0.107290567,0.131,,,0.313,,,0.26,0.368,0.481008584,4483,9320,,,0.137149079,,,0.108359837,0.172259603,0.111111111,2,18,0.022704408,0.253963321,376.2,35,9303,,,31.66098393,65,2053,24.43527897,40.35452305,22.26027397,11.85265838,38.06574644,,,,,,,,,,34.80714958,24.5074455,47.97707069,,,,44.44444444,22.965093,77.63550018,0.175552842,1294,7371,0.154106034,0.196999651,0.000107492,1,9303,,,9303,0.000105452,1,9483,,,9483,0.002530845,24,9483,,,395.125,2359,,,,,,,,,2606,0.36,,,,,0.41,,,,0.35,0.36,,,,,0.47,,0.31,,0.34,0.899510554,5881,6538,0.877957432,0.921063676,0.502334267,1076,2142,0.433146823,0.571521711,0.02855934,135,4727,,,0.224,490,,0.140595745,0.307404255,0.246511628,0.123564517,0.369458739,,,,,,,0.292857143,0.045357855,0.540356431,0.244423792,0.169809232,0.319038352,4.603252747,104724,22750,3.905418361,5.301087134,0.250114943,544,2175,0.188024115,0.31220577,11.82414275,11,9303,,,94.03949659,47,49979,69.09668494,125.0525948,,,,,,,,,,,,,100.1730261,68.95450194,140.6801726,,,,8.3,,,,,1,,,,,0.131961259,545,4130,0.096878617,0.167043902,0.108711656,0.071967883,0.14545543,0.020581114,0.007380739,0.033781488,0.008474576,0.000092022,0.016857131,0.76184379,2975,3905,0.708419688,0.815267892,0.7265625,0.630260629,0.822864371,,,,,,,,,,0.669249106,0.598803385,0.739694828,0.458,,3905,0.395132704,0.520867297,74.36918069,,,72.71633781,76.02202356,78.34999312,73.26864735,83.43133889,,,,,,,,,,73.95048989,72.0208253,75.88015449,,,,549.0706309,199,26846,467.714182,630.4270798,375.6700875,229.4690491,580.1919814,,,,,,,,,,577.3167523,478.247128,676.3863766,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.138,,,0.12,0.159,0.196,,,0.17,0.222,0.119,,,0.102,0.138,167.1,13,7781,,,0.131,1240,,,,0.107290567,1130.413413,10536,,,,,,,,,,,,,,,,,,,,,,,,,,0.365,,,0.351,0.378,0.212024124,1125,5306,0.183428379,0.240619868,0.083909636,182,2169,0.058888359,0.108930912,0.000738163,7,9483,,,1354.714286,0.804259259,108.575,135,,,,,,,,3.120392425,,,,,,,,,3.258071899,3.229070918,,,,,,,,,3.336460788,0.042651261,,,,,-1639.966667,,,,,0.794130538,41672,52475,0.723698405,0.864562672,54339,,,47135.25532,61542.74468,35598,30407.87234,40788.12766,91125,85079.38298,97170.61702,21106,9428.212766,32783.78723,,,,58362,51079.61702,65644.38298,,,,,,0.516408669,834,1615,,,25.32863319,,,,,0.268702037,,54339,,,11.68614357,7,599,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,31.01343446,22,70937,19.43595426,46.95471247,,,,,,,,,,,,,31.94071803,17.87697741,52.68135699,,,,,,,,,,,0.559007002,4391,7855,,,0.509,,,,,13.281083,,,,,0.718994866,2661,3701,0.690096437,0.747893295,0.085062241,287,3374,0.053562594,0.116561887,0.674682518,2497,3701,0.635796874,0.713568163,9483,,,,,0.234524939,2224,9483,,,0.196562269,1864,9483,,,0.023515765,223,9483,,,0.193504165,1835,9483,,,0.005694401,54,9483,,,0.000738163,7,9483,,,0.043657071,414,9483,,,0.643256354,6100,9483,,,0.001922425,17,8843,0,0.009701141,0.501212696,4753,9483,,,0.927575107,8645,9320,, -40,107,40107,OK,Okfuskee County,2024,1,15495.82694,335,32216,12991.57934,18000.07453,0,21888.4888,15904.20947,29384.27456,,,,,2,,,,2,,,,2,15097.84136,11924.61512,18271.06759,,,,,2,,0.273,,,0.239,0.31,5.226286026,,,4.214267748,6.370534153,6.107937813,,,4.862405548,7.452863755,0.07231405,70,968,0.055997429,0.088630671,0,0.05,0.023507911,0.076492089,,,,0.303030303,0.146229212,0.459831394,,,,0.068571429,0.046953066,0.090189791,,,,0.103092784,0.042578472,0.163607095,0.28,,,0.237,0.325,0.438,,,0.351,0.53,6.3,0.07457534,0.176,,,0.365,,,0.309,0.424,0.343854996,3889,11310,,,0.129575114,,,0.100031505,0.165444617,0.3,9,30,0.20331993,0.398927246,437.6,49,11197,,,43.22033898,102,2360,34.83261454,51.60806342,52.55255255,36.60477838,73.08787893,,,,,,,83.91608392,43.3606651,146.5845108,32.50641574,23.00347446,44.61759531,,,,54.26356589,29.66639642,91.04504311,0.179871255,1453,8078,0.158424447,0.201318064,8.93096E-05,1,11197,,,11197,0.000089815,1,11134,,,11134,0.003502784,39,11134,,,285.4871795,2823,,,,,5915,,,,2454,0.27,,,,,0.11,,0.47,,0.29,0.31,,,,,0.17,,0.38,,0.33,0.834436243,6557,7858,0.81364306,0.855229427,0.420594634,1160,2758,0.362968294,0.478220974,0.039242219,174,4434,,,0.296,727,,0.195914894,0.396085106,0.415300546,0.28068491,0.549916183,,,,0.2,0,0.58861148,0.398843931,0.14144557,0.656242291,0.325,0.245796362,0.404203638,5.490915344,95800,17447,4.501085001,6.480745686,0.323064771,818,2532,0.254499477,0.391630065,9.824060016,11,11197,,,152.0450053,90,59193,122.2621393,186.8891251,144.7294364,85.77583646,228.7349061,,,,,,,,,,161.4519541,122.5972377,208.7140902,,,,8.9,,,,,1,,,,,0.157372986,635,4035,0.121349185,0.193396788,0.120663265,0.08802458,0.153301951,0.037174721,0.02097634,0.053373102,0.00495663,0,0.011427688,0.722486773,2731,3780,0.683380296,0.761593249,0.73255814,0.580111316,0.885004963,,,,,,,,,,0.730918499,0.671699151,0.790137847,0.35,,3780,0.303684922,0.396315078,69.22243251,,,67.64086892,70.8039961,64.95798284,61.49640122,68.41956446,,,,,,,,,,69.11847719,67.18240176,71.05455262,,,,785.3240912,335,32216,698.2967086,872.3514738,1026.222732,801.4884681,1294.44034,,,,,,,,,,793.4899133,685.9277066,901.0521199,,,,103.0485187,12,11645,53.24667333,180.005024,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.166,,,0.145,0.189,0.213,,,0.186,0.242,0.149,,,0.128,0.171,190.8,18,9434,,,0.176,2010,,,,0.07457534,909.1479675,12191,,,,,,,,,,,,,,,,,,,,,,,,,,0.373,,,0.361,0.385,0.223568669,1273,5694,0.194972924,0.252164414,0.0772,193,2500,0.054561702,0.099838298,0.00071852,8,11134,,,1391.75,0.714539007,100.75,141,,,0.148,74,500,0.066189026,0.229810974,2.961582114,,,,,,,,,3.063780781,3.063846749,,,,,,,,,3.240009575,0.056692626,,,,,-8542.6694,,,,,0.736032309,37361,50760,0.64287658,0.829188038,43544,,,37568.68085,49519.31915,45521,34591.46809,56450.53192,,,,32222,21079.19149,43364.80851,45294,24290.42553,66297.57447,50321,41109.59575,59532.40426,,,,,,0.781232649,1407,1801,,,49.68095694,,,,,0.307780636,,43544,,,18.32061069,12,655,,,16.75823847,14,83541,9.161884914,28.1174766,,,,,,,,,,,,,,,,,,,15.79588826,10,59193,7.222885955,29.98551625,16.89388948,,,,,,,,,,,,,,,,,,,21.96205632,13,59193,11.69387004,37.55578517,,,,,,,,,,,,,,,,,,,28.72840881,24,83541,18.4068336,42.74559509,,,,,,,,,,,,,25.53977329,13.59885364,43.67379014,,,,,,,,,,,0.441311475,4038,9150,,,0.404,,,,,5.979767745,,,,,0.714285714,2765,3871,0.689314836,0.739256593,0.116802702,415,3553,0.084530602,0.149074802,0.749677086,2902,3871,0.715754583,0.783599589,11134,,,,,0.224896713,2504,11134,,,0.177654033,1978,11134,,,0.06996587,779,11134,,,0.222471708,2477,11134,,,0.009161128,102,11134,,,0.002604635,29,11134,,,0.051733429,576,11134,,,0.587928867,6546,11134,,,0.003165736,34,10740,0,0.009770119,0.462906413,5154,11134,,,1,11310,11310,, -40,109,40109,OK,Oklahoma County,2024,1,10214.13712,13069,2266194,9969.77877,10458.49547,0,15412.27213,13781.11799,17043.42626,,4340.308892,3514.650292,5165.967492,,15727.64421,14934.73046,16520.55795,,7772.871133,7267.123415,8278.618852,,9443.589238,9125.572899,9761.605577,,22547.55557,13575.10136,35210.80104,1,,0.198,,,0.172,0.225,3.612433118,,,2.988006359,4.292127604,5.552756244,,,4.815149749,6.335592501,0.091007954,7197,79081,0.089003299,0.093012609,0,0.103372755,0.090884202,0.115861308,0.087988317,0.077379358,0.098597276,0.155510268,0.149221849,0.161798687,0.074275362,0.07067912,0.077871605,0.074802483,0.072063531,0.077541435,0.096330275,0.057163836,0.135496715,0.103489294,0.095083205,0.111895383,0.167,,,0.137,0.2,0.377,,,0.335,0.419,7.6,0.069414168,0.121,,,0.276,,,0.24,0.315,0.939028648,747741,796292,,,0.132775386,,,0.110940837,0.156965791,0.236781609,103,435,0.212798896,0.261407956,682.1,5447,798575,,,29.8139763,5228,175354,29.00579614,30.62215646,28.75451857,24.49418948,33.01484766,2.38133037,1.332812531,3.927642304,35.16131233,33.01500546,37.30761919,45.1582162,43.21983218,47.09660021,19.26508271,18.26864598,20.26151944,158.4158416,90.54834113,257.257402,35.68089748,32.41307014,38.94872482,0.163804226,110712,675880,0.154272311,0.173336141,0.000812698,649,798575,,,1230.469954,0.001091509,876,802559,,,916.163242,0.007026275,5639,802559,,,142.3229296,2633,,,,,2993,1672,4307,2650,2377,0.46,,,,,0.39,0.36,0.44,0.23,0.48,0.46,,,,,0.39,0.48,0.33,0.33,0.48,0.885075535,459556,519228,0.880618592,0.889532479,0.666322936,150557,225952,0.651302772,0.6813431,0.029400104,11717,398536,,,0.207,40662,,0.176021277,0.237978723,0.170673749,0.125213422,0.216134076,0.120881121,0.077969174,0.163793069,0.386695719,0.355479572,0.417911866,0.29714562,0.274230401,0.320060839,0.120961176,0.106120347,0.135802006,4.73516815,127144,26851,4.571701007,4.898635293,0.294114716,59015,200653,0.279182628,0.309046803,10.44360267,834,798575,,,103.6529761,4126,3980590,100.4901651,106.815787,141.3330534,120.3928551,162.2732516,44.57967733,34.25624809,57.03677278,116.4993433,107.9057024,125.0929841,48.85845705,43.73973206,53.97718204,122.7160548,118.0880354,127.3440741,,,,9.7,,,,,1,,,,,0.156779384,47940,305780,0.14887567,0.164683098,0.127976735,0.120896702,0.135056768,0.026702204,0.024053232,0.029351176,0.010808424,0.008728886,0.012887962,0.78583133,299731,381419,0.778142684,0.793519976,0.798610209,0.766909639,0.83031078,0.760206526,0.728610999,0.791802052,0.793997195,0.777493209,0.810501181,0.778876238,0.767200999,0.790551476,0.834069435,0.826810794,0.841328076,0.247,,381419,0.238831561,0.25516844,74.43928568,,,74.2434078,74.63516356,71.28936203,70.01659886,72.5621252,82.33057311,80.98974824,83.67139798,70.02468443,69.47676082,70.57260804,78.38190169,77.49067443,79.27312896,74.98098032,74.73353811,75.22842254,,,,505.7167548,13069,2266194,496.8482405,514.5852691,740.8359526,678.7444295,802.9274756,226.2736133,194.7238704,257.8233562,715.1919915,687.5690599,742.8149232,395.3586888,369.8446545,420.8727232,483.1158941,472.1025091,494.1292792,1570.724184,959.4391381,2425.856109,63.41196867,564,889422,58.17852257,68.64541477,66.54343808,39.43785871,105.1673208,,,,112.2811912,94.93715602,129.6252263,56.07794044,46.85426624,65.30161464,49.81028542,42.59340421,57.02716662,,,,7.006337889,566,80784,6.429121128,7.58355465,,,,,,,12.99197555,11.03895503,14.94499606,6.998176532,5.847119631,8.149233432,4.560260586,3.870670371,5.249850802,,,,10.67902478,7.999322372,13.96842735,0.115,,,0.1,0.132,0.176,,,0.155,0.2,0.122,,,0.107,0.137,386.8,2525,652733,,,0.121,95850,,,,0.069414168,49883.31154,718633,,,22.54119706,541,2400050,20.64171842,24.4406757,31.78934262,20.36803165,47.30002198,,,,26.58561252,21.55914081,32.43219269,9.379081902,6.730591104,12.72378365,26.68334376,23.89577884,29.47090868,,,,0.313,,,0.302,0.324,0.203905899,97111,476254,0.191991005,0.215820793,0.073244491,15307,208985,0.061329598,0.085159385,0.001943782,1560,802559,,,514.4608974,0.679325861,10515.285,15479,,,0.09021944,3877,42973,0.077043895,0.103394985,2.737518742,,,,,,3.30107381,2.384236579,2.373633985,3.232535031,2.682127445,,,,,,3.465423024,2.215668358,2.361345359,3.213212171,0.188112952,,,,,-9445.530267,,,,,0.801353791,44395,55400,0.777619715,0.825087866,61580,,,59357.87234,63802.12766,57723,51316.3617,64129.6383,74231,58908.44681,89553.55319,40891,38792.78723,42989.21277,52732,50802.97872,54661.02128,73071,71024.02128,75117.97872,,,,,,0.590959393,93985,159038,,,46.16116716,,,,,0.319697954,,61580,,,15.74165375,894,56792,,,11.46121669,635,5540424,10.56976065,12.35267273,16.84391499,11.28063422,24.19067163,6.6654703,3.549082211,11.39815721,35.33874799,31.32639532,39.35110065,8.992778186,7.212471069,11.07935424,5.829342123,4.977734847,6.6809494,,,,20.00630593,792,3980590,18.58910636,21.42350551,19.896548,26.26795782,18.1913244,36.70683815,11.62254096,6.770558414,18.60881397,12.45012385,9.741455135,15.6788705,10.74006171,8.271156215,13.71481903,23.98492752,21.91759539,26.05225965,,,,20.5245956,817,3980590,19.11718878,21.93200242,30.68946302,21.71769057,42.12368574,7.783753184,3.885621545,13.92728454,37.62301737,32.73939279,42.50664195,10.33007378,8.111329752,12.96846166,19.71816652,17.86302205,21.57331099,,,,13.5368701,750,5540424,12.56804875,14.50569145,19.16721361,13.19382791,26.9178942,7.178198785,3.924388072,12.04379784,19.21099723,16.25265459,22.16933987,8.379634219,6.664571772,10.40133554,13.95803586,12.6402594,15.27581232,,,,,,,,,,,0.543640254,294740,542160,,,0.647,,,,,136.9758652,,,,,0.588689302,187328,318212,0.581269054,0.596109549,0.144130362,44375,307881,0.13690475,0.151355974,0.891280027,283616,318212,0.884896671,0.897663384,802559,,,,,0.249771045,200456,802559,,,0.146309493,117422,802559,,,0.152355154,122274,802559,,,0.047542922,38156,802559,,,0.037147425,29813,802559,,,0.001493971,1199,802559,,,0.18962718,152187,802559,,,0.538784065,432406,802559,,,0.036434229,26979,740485,0.033996302,0.038872156,0.508196905,407858,802559,,,0.075913107,60449,796292,, -40,111,40111,OK,Okmulgee County,2024,1,14613.88458,936,104274,13198.58538,16029.18379,0,18622.72143,14894.3871,22351.05576,,,,,2,27114.40725,18882.8045,35346.01,,,,,2,13512.29661,11776.60076,15247.99246,,,,,2,,0.229,,,0.202,0.259,4.595988923,,,3.745290902,5.634194353,5.856337481,,,4.780143958,7.110796225,0.090087181,279,3097,0.080003552,0.10017081,0,0.090558767,0.065868547,0.115248987,,,,0.145833333,0.095909817,0.19575685,0.125984252,0.068271475,0.183697029,0.079230334,0.066636469,0.091824199,,,,0.098739496,0.07194021,0.125538781,0.234,,,0.196,0.274,0.428,,,0.351,0.508,6,0.161905505,0.15,,,0.33,,,0.282,0.385,0.588486896,21601,36706,,,0.133037736,,,0.103632796,0.166104084,0.363636364,12,33,0.27296452,0.452301555,610.7,225,36843,,,31.82728689,286,8986,28.13859251,35.51598127,22.96918768,16.48308564,31.16029668,,,,21.09704641,11.80785673,34.79636972,24.03846154,13.45414444,39.64778665,33.98268398,28.66694164,39.29842632,,,,47.89430223,36.36815168,61.91449194,0.184330832,5282,28655,0.165267003,0.203394662,0.000298564,11,36843,,,3349.363636,0.00062179,23,36990,,,1608.26087,0.003352257,124,36990,,,298.3064516,2819,,,,,3039,,1473,,2847,0.32,,,,,0.13,,0.33,,0.35,0.29,,,,,0.17,0.25,0.31,,0.31,0.871698266,21517,24684,0.859051543,0.884344989,0.534069982,4640,8688,0.490519737,0.577620226,0.041861358,654,15623,,,0.258,2192,,0.176978723,0.339021277,0.304031725,0.23144455,0.3766189,,,,0.428571429,0.225213904,0.631928953,0.446175637,0.353969159,0.538382116,0.223509534,0.171976147,0.275042922,4.505977528,100258,22250,4.120958632,4.890996424,0.317965945,2745,8633,0.266792815,0.369139074,11.94256711,44,36843,,,120.0165612,229,190807,104.4719627,135.5611597,116.5501166,82.06203795,160.648983,,,,126.2878033,76.03350724,197.2140483,,,,139.6458919,118.3379127,160.953871,,,,9.1,,,,,1,,,,,0.13349266,1955,14645,0.113874887,0.153110433,0.092323724,0.07419771,0.110449737,0.028337317,0.019784962,0.036889671,0.028337317,0.014084968,0.042589665,0.784083941,11508,14677,0.763189166,0.804978716,0.80115425,0.718245357,0.884063142,,,,0.774665043,0.668501393,0.880828692,,,,0.768009768,0.726206138,0.809813398,0.426,,14677,0.393088139,0.458911861,70.75748552,,,69.81886867,71.69610236,66.49145435,64.29505868,68.68785002,,,,63.73412257,59.3356645,68.13258064,78.01726761,70.70591774,85.32861748,71.62650262,70.46896179,72.78404345,,,,701.1811443,936,104274,653.6328485,748.7294401,926.3376487,784.2134803,1068.461817,,,,1054.506778,834.7880099,1274.225545,,,,659.718222,603.3365721,716.099872,,,,89.8136367,36,40083,62.90436698,124.3399309,,,,,,,,,,,,,90.51594086,53.64548316,143.0542103,,,,9.810126582,31,3160,6.665505057,13.92469162,,,,,,,,,,,,,,,,,,,,,,0.143,,,0.126,0.164,0.201,,,0.176,0.228,0.128,,,0.11,0.147,127,39,30710,,,0.15,5540,,,,0.161905505,6487.391659,40069,,,26.42194078,30,113542,17.82677249,37.71896338,,,,,,,,,,,,,28.55592678,17.44270194,44.10231289,,,,0.368,,,0.356,0.38,0.229487116,4640,20219,0.20327435,0.255699882,0.079136691,704,8896,0.057689882,0.100583499,0.000702893,26,36990,,,1422.692308,0.843307087,321.3,381,,,0.091817317,193,2102,0.057833375,0.125801258,2.957070749,,,,,,,2.906927778,,3.059018366,2.94425132,,,,,,,2.674017431,,3.075207381,0.057501816,,,,,-4864.081,,,,,0.754405415,38787,51414,0.690195568,0.818615262,45754,,,42333.23404,49174.76596,47886,41905.91489,53866.08511,74286,5603.787234,142968.2128,37768,30908.59575,44627.40426,41938,26801.31915,57074.68085,53802,51339.19149,56264.80851,,,,,,0.647758761,3974,6135,,,52.933826,,,,,0.31555711,,45754,,,16.92589204,37,2186,,,15.22991601,41,269207,10.92925068,20.66110078,,,,,,,,,,,,,13.14115391,8.235491194,19.89586495,,,,24.643603,46,190807,17.83469768,33.19477152,24.10813021,,,,,,,,,,,,,28.79327186,19.56363127,40.86975105,,,,29.34902808,56,190807,22.1699404,38.11215417,,,,,,,,,,,,,32.16087207,22.75894719,44.14330962,,,,20.43037514,55,269207,15.39095453,26.59294148,22.51897223,10.79872249,41.41319171,,,,,,,,,,22.69835676,16.06270818,31.15526806,,,,,,,,,,,0.489751925,14313,29225,,,0.538,,,,,27.94859942,,,,,0.702710434,9826,13983,0.682258186,0.723162682,0.112693123,1488,13204,0.093439335,0.131946912,0.799756848,11183,13983,0.779863066,0.819650629,36990,,,,,0.23387402,8651,36990,,,0.186185456,6887,36990,,,0.076804542,2841,36990,,,0.171343606,6338,36990,,,0.006920789,256,36990,,,0.000729927,27,36990,,,0.050473101,1867,36990,,,0.612084347,22641,36990,,,0.003448672,120,34796,0.000554047,0.006343298,0.502135712,18574,36990,,,0.530785158,19483,36706,, -40,113,40113,OK,Osage County,2024,1,9787.928514,850,127135,8663.252582,10912.60445,0,13802.4237,10050.56721,17554.2802,,,,,2,7330.371857,4743.830164,10821.07491,,,,,2,9567.464052,8183.909964,10951.01814,,,,,2,,0.201,,,0.174,0.23,4.174924652,,,3.320554958,5.129469875,5.500455509,,,4.396004611,6.669627695,0.076292335,214,2805,0.066468131,0.086116539,0,0.055427252,0.033875057,0.076979446,,,,,,,,,,0.082162162,0.069648365,0.09467596,,,,0.082111437,0.052972367,0.111250507,0.208,,,0.172,0.247,0.413,,,0.338,0.493,6.6,0.160096308,0.12,,,0.291,,,0.244,0.343,0.420969925,19288,45818,,,0.140681092,,,0.110936905,0.174128916,0.176470588,6,34,0.093514624,0.274869215,367,168,45772,,,18.54140915,180,9708,15.83269887,21.25011943,13.98239254,9.214484791,20.34364705,,,,,,,,,,21.12395377,17.10254383,25.14536371,,,,34.30079156,24.39121591,46.89031123,0.145083445,4990,34394,0.128402594,0.161764296,0.000174779,8,45772,,,5721.5,0.000283601,13,45839,,,3526.076923,0.000719911,33,45839,,,1389.060606,2635,,,,,2642,,,,2533,0.3,,,,,0.16,,,,0.35,0.29,,,,,0.24,,,,0.3,0.89465149,29239,32682,0.883212447,0.906090534,0.539409787,5776,10708,0.493913271,0.584906303,0.035965978,740,20575,,,0.195,1789,,0.130659575,0.259340426,0.196091205,0.11986514,0.272317271,,,,0.396449704,0.197061223,0.595838185,0.200545703,0.093512094,0.307579312,0.115157681,0.084449195,0.145866166,4.376220219,117007,26737,3.958768512,4.793671927,0.238848921,2324,9730,0.202615658,0.275082183,7.646596172,35,45772,,,103.1572099,241,233624,90.13312742,116.1812923,104.300146,72.64887327,145.0562546,,,,57.67012687,32.27753223,95.11810408,,,,118.1326888,100.5796814,135.6856962,,,,9.6,,,,,1,,,,,0.121971141,2240,18365,0.105683165,0.138259117,0.090577508,0.073346886,0.107808129,0.028859243,0.019818098,0.037900388,0.006534168,0.003487032,0.009581304,0.815511288,15352,18825,0.794084782,0.836937794,0.748717949,0.663246488,0.83418941,,,,,,,0.638016529,0.484289606,0.791743452,0.736985907,0.706867747,0.767104068,0.394,,18825,0.362702135,0.425297865,76.59973734,,,75.65815463,77.54132005,72.87543183,70.05522371,75.69563994,,,,90.35863334,83.09996648,97.61730021,85.63063033,75.4959029,95.76535777,76.13928768,75.03603077,77.2425446,,,,467.5236834,850,127135,433.5662463,501.4811204,593.8290874,484.2624636,703.3957111,,,,306.9207236,227.8024769,404.6367112,,,,473.957583,432.2686174,515.6465485,,,,68.2283375,30,43970,46.0333728,97.40019421,,,,,,,,,,,,,66.50115269,37.22019034,109.6835382,,,,7.199177237,21,2917,4.456404177,11.00470714,,,,,,,,,,,,,,,,,,,,,,0.129,,,0.112,0.148,0.188,,,0.164,0.215,0.117,,,0.1,0.135,189.4,74,39076,,,0.12,5550,,,,0.160096308,7600.091937,47472,,,22.2418333,31,139377,15.11224663,31.57050697,,,,,,,,,,,,,27.39413309,17.55193797,40.76029859,,,,0.37,,,0.356,0.383,0.174005369,4343,24959,0.15255856,0.195452177,0.071858691,716,9964,0.052794862,0.090922521,0.000458125,21,45839,,,2182.809524,,,,,,0.073140496,177,2420,0.0379717,0.108309292,2.96837432,,,,,,,2.157685584,2.800906631,3.146482367,3.010798488,,,,,,,2.05263393,2.741133085,3.17898637,0.21350564,,,,,-380.36743,,,,,0.724677349,39979,55168,0.675704842,0.773649856,58677,,,53891.97872,63462.02128,56037,49772.14894,62301.85106,,,,50094,40859.95745,59328.04255,47386,23285.74468,71486.25532,60568,56124.93617,65011.06383,,,,,,0.574498567,3609,6282,,,86.43135094,,,,,0.274656169,,58677,,,16.67361401,40,2399,,,6.984152048,23,329317,4.427353291,10.47965726,,,,,,,,,,,,,5.28178313,2.636647108,9.450568999,,,,26.27830381,65,233624,20.00426241,33.89709733,27.82248399,,,,,,,,,,,,,25.75699367,18.2271817,35.35348619,,,,26.11033113,61,233624,19.97233442,33.53981265,,,,,,,,,,,,,29.87263395,21.70550156,40.10261676,,,,18.21952708,60,329317,13.90341858,23.45214289,,,,,,,,,,,,,21.60729462,15.76050897,28.91226022,,,,,,,,,,,0.559847349,20538,36685,,,0.492,,,,,12.81190124,,,,,0.782505489,13186,16851,0.764457886,0.800553092,0.08879995,1420,15991,0.0711579,0.106442,0.817280874,13772,16851,0.797892947,0.8366688,45839,,,,,0.205654574,9427,45839,,,0.216954995,9945,45839,,,0.105499684,4836,45839,,,0.149283361,6843,45839,,,0.005453871,250,45839,,,0.000741727,34,45839,,,0.047884989,2195,45839,,,0.629594887,28860,45839,,,0.002699117,118,43718,0.000111008,0.005287226,0.494273435,22657,45839,,,0.730629884,33476,45818,, -40,115,40115,OK,Ottawa County,2024,1,14260.96953,778,85057,12727.37918,15794.55988,0,13925.07809,10720.37558,17129.78061,,,,,2,,,,2,,,,2,15610.4248,13517.28182,17703.56778,,,,,2,,0.238,,,0.206,0.273,4.727754187,,,3.79998394,5.727134232,6.065255878,,,4.967370962,7.24542113,0.085265787,239,2803,0.074926766,0.095604807,0,0.068322981,0.048836688,0.087809275,,,,,,,0.076233184,0.041402913,0.111063454,0.091304348,0.077234219,0.105374477,,,,0.093023256,0.054196538,0.131849974,0.242,,,0.2,0.287,0.415,,,0.339,0.496,6.6,0.089513035,0.156,,,0.339,,,0.282,0.395,0.35889054,10869,30285,,,0.129686697,,,0.101418909,0.162190915,0.327868853,20,61,0.261819031,0.394200358,626.2,190,30340,,,34.57341922,263,7607,30.39491804,38.7519204,37.5,29.17723835,47.45865005,,,,,,,39.93610224,25.84453969,58.95356501,35.01849568,29.25866941,40.77832196,,,,29.13907285,18.26130182,44.11690647,0.20021182,4726,23605,0.18114799,0.219275649,0.000461437,14,30340,,,2167.142857,0.00016481,5,30338,,,6067.6,0.0053728,163,30338,,,186.1226994,2677,,,,,3219,,,,2557,0.35,,,,,0.3,,,,0.35,0.41,,,,,0.3,,,0.6,0.43,0.867232924,17153,19779,0.858529449,0.875936399,0.529192902,3698,6988,0.49872924,0.559656564,0.027986799,424,15150,,,0.244,1814,,0.179659575,0.308340426,0.316272332,0.270566009,0.361978655,0.06626506,0,0.342658634,0.443396226,0.266691949,0.620100504,0.470588235,0.416600787,0.524575684,0.245219348,0.214982423,0.275456272,4.171060172,87342,20940,3.911742426,4.430377918,0.317163685,2393,7545,0.286279589,0.34804778,11.86552406,36,30340,,,116.900144,181,154833,99.86947025,133.9308178,112.3781193,77.82511448,157.0371578,,,,,,,,,,137.7479715,114.6815088,160.8144342,,,,8.3,,,,,0,,,,,0.133389262,1590,11920,0.122022891,0.144755632,0.090520922,0.079994344,0.1010475,0.032298658,0.025749924,0.038847392,0.014681208,0.01096779,0.018394626,0.839983478,10168,12105,0.825264593,0.854702363,0.820677036,0.80093983,0.840414241,,,,,,,0.80921895,0.704319644,0.914118256,0.848153215,0.833761879,0.86254455,0.265,,12105,0.245973441,0.284026559,70.6163294,,,69.60444164,71.62821716,69.80910186,67.64601192,71.97219181,,,,,,,80.98925647,74.83050654,87.1480064,69.78036924,68.48133364,71.07940485,,,,716.5779578,778,85057,663.5850322,769.5708834,777.7314682,646.4617897,909.0011467,,,,,,,,,,759.8803915,693.7592056,826.0015774,,,,83.7230787,29,34638,56.07065979,120.2403067,120.9921355,58.0204319,222.508845,,,,,,,,,,74.734119,39.79277086,127.7976195,,,,8.044770899,23,2859,5.099694661,12.07110629,,,,,,,,,,,,,,,,,,,,,,0.151,,,0.131,0.173,0.205,,,0.178,0.234,0.133,,,0.114,0.154,64.5,16,24803,,,0.156,4780,,,,0.089513035,2850.811142,31848,,,20.57479479,19,92346,12.3873705,32.13009072,,,,,,,,,,,,,27.1527,15.52011413,44.09428367,,,,0.368,,,0.354,0.38,0.256498284,4184,16312,0.231477007,0.28151956,0.07709395,590,7653,0.056838631,0.097349269,0.000988859,30,30338,,,1011.266667,0.85238764,303.45,356,,,0.084974093,164,1930,0.054944694,0.115003493,2.980140834,,,,,,,,2.614147909,3.036466622,2.917447216,,,,,,,,2.604821252,2.951674946,0.080329356,,,,,-3670.637133,,,,,0.75920762,34033,44827,0.717190967,0.801224274,47855,,,44839.34043,50870.65957,42820,38263.74468,47376.25532,53250,39848.12766,66651.87234,,,,43523,39197.89362,47848.10638,47277,44518.70213,50035.29787,,,,,,0.719710669,3980,5530,,,55.18645972,,,,,0.313676732,,47855,,,21.61100197,44,2036,,,6.407176037,14,218505,3.502862761,10.75015268,,,,,,,,,,,,,,,,,,,24.23578317,38,154833,16.78398439,33.86707777,24.54257167,,,,,,,,,,,,,27.01889985,17.31151895,40.20198127,,,,21.95914308,34,154833,15.20734494,30.68570143,,,,,,,,,,,,,27.14741044,17.89031454,39.49805689,,,,30.66291389,67,218505,23.7633371,38.94081675,35.55344869,19.89899534,58.64000681,,,,,,,,,,33.27692776,24.45063486,44.25125945,,,,,,,,,,,0.496872285,11438,23020,,,0.541,,,,,28.87478207,,,,,0.674688513,7906,11718,0.657316452,0.692060575,0.106579067,1168,10959,0.094796311,0.118361824,0.782812767,9173,11718,0.77072795,0.794897583,30338,,,,,0.250247215,7592,30338,,,0.181093019,5494,30338,,,0.011371877,345,30338,,,0.21085767,6397,30338,,,0.009262311,281,30338,,,0.008866768,269,30338,,,0.06401213,1942,30338,,,0.626903553,19019,30338,,,0.01056474,301,28491,0.007036744,0.014092736,0.505669457,15341,30338,,,0.493214463,14937,30285,, -40,117,40117,OK,Pawnee County,2024,1,12701.2482,392,44524,10668.35203,14734.14437,0,22935.64605,16148.81145,31613.76686,,,,,2,,,,2,,,,2,12063.91453,9704.222244,14423.60682,,,,,2,,0.201,,,0.173,0.233,4.253664292,,,3.354872082,5.190808595,5.562439699,,,4.413541298,6.745739975,0.074451411,95,1276,0.060047951,0.08885487,0,0.056179775,0.022351434,0.090008117,,,,,,,,,,0.076756757,0.059601328,0.093912186,,,,0.081967213,0.033290041,0.130644385,0.214,,,0.176,0.256,0.406,,,0.323,0.489,7.9,0.016115098,0.131,,,0.305,,,0.252,0.358,0.34456375,5359,15553,,,0.13667028,,,0.107153753,0.170149146,0.111111111,2,18,0.022704408,0.253963321,285.9,45,15741,,,35.28083545,125,3543,29.0958323,41.46583861,32.35294118,20.27541599,48.98274175,,,,,,,,,,35.26448363,28.12833322,43.6598303,,,,57.76173285,33.01582113,93.80143537,0.167654123,2094,12490,0.148590294,0.186717953,0.000254114,4,15741,,,3935.25,0.00082503,13,15757,,,1212.076923,0.002157771,34,15757,,,463.4411765,2488,,,,,5348,,,,2172,0.31,,,,,0.13,,,,0.33,0.39,,,,,0.46,,,,0.38,0.876796144,9458,10787,0.858486229,0.895106059,0.467054264,1687,3612,0.416475184,0.517633344,0.036415324,269,7387,,,0.223,812,,0.14912766,0.29687234,0.293650794,0.182222258,0.40507933,,,,,,,0.290476191,0.076475598,0.504476783,0.152690864,0.108501231,0.196880496,4.190483547,108500,25892,3.611338028,4.769629066,0.209681806,771,3677,0.160673791,0.25868982,12.07038943,19,15741,,,122.9105211,100,81360,98.820059,147.0009833,167.0068658,98.97885304,263.942849,,,,,,,,,,131.1783378,104.1745352,163.0426964,,,,8.7,,,,,1,,,,,0.10543131,660,6260,0.09078766,0.12007496,0.071857259,0.056987516,0.086727001,0.031948882,0.022497022,0.041400741,0.007188498,0.002544809,0.011832188,0.842331288,5492,6520,0.822939453,0.861723124,0.818390805,0.722995648,0.913785962,,,,,,,,,,0.762486525,0.707166288,0.817806763,0.523,,6520,0.478275482,0.567724518,72.25078435,,,70.82567322,73.67589548,67.02564413,62.17879796,71.87249029,,,,,,,,,,72.54561753,70.8909972,74.20023786,,,,628.8868904,392,44524,563.0221754,694.7516053,1132.133034,879.1455997,1435.248387,,,,,,,,,,595.2489089,522.8784051,667.6194126,,,,78.08276773,13,16649,41.57578528,133.5239109,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.132,,,0.114,0.152,0.19,,,0.165,0.217,0.111,,,0.094,0.128,98.8,13,13161,,,0.131,2060,,,,0.016115098,267.1399762,16577,,,26.80522908,13,48498,14.27265556,45.83775809,,,,,,,,,,,,,,,,,,,0.343,,,0.327,0.358,0.202346041,1794,8866,0.177324765,0.227367318,0.085512552,327,3824,0.061682765,0.10934234,0.000951958,15,15757,,,1050.466667,0.869060774,157.3,181,,,0.160101652,126,787,0.088459724,0.23174358,2.973689468,,,,,,,,,2.979414317,2.985013609,,,,,,,,,3.059704518,0.037554905,,,,,-2350.24231,,,,,0.763195189,39851,52216,0.681731661,0.844658717,54690,,,47460.04255,61919.95745,41711,25388.78723,58033.21277,,,,,,,66389,61338.2766,71439.7234,58043,53854.91489,62231.08511,,,,,,0.711382114,1750,2460,,,,,,,,0.285189249,,54690,,,15.8061117,15,949,,,,,,,,,,,,,,,,,,,,,,,,,,27.77509113,24,81360,17.19321918,42.45717722,29.49852507,,,,,,,,,,,,,28.31030948,16.18178798,45.97416896,,,,27.04031465,22,81360,16.94602123,40.93936134,,,,,,,,,,,,,29.15074172,17.27657702,46.07073957,,,,20.12583019,23,114281,12.75804993,30.19862698,,,,,,,,,,,,,21.82352806,13.1391895,34.0801424,,,,,,,,,,,0.542662935,6786,12505,,,0.46,,,,,4.47347731,,,,,0.77731163,4632,5959,0.750094619,0.80452864,0.071222503,395,5546,0.054103023,0.088341982,0.724114784,4315,5959,0.692732729,0.755496839,15757,,,,,0.235895158,3717,15757,,,0.199847687,3149,15757,,,0.010598464,167,15757,,,0.135304944,2132,15757,,,0.005013645,79,15757,,,0.000761566,12,15757,,,0.042838104,675,15757,,,0.744050263,11724,15757,,,0.003458096,51,14748,0,0.008261509,0.49457384,7793,15757,,,1,15553,15553,, -40,119,40119,OK,Payne County,2024,1,8320.403284,991,231736,7564.386595,9076.419973,0,8387.433088,5427.904458,12381.50581,1,,,,2,10372.58611,6244.97442,16198.07808,1,8571.967084,5433.891819,12862.15942,1,8614.210449,7731.556671,9496.864228,,,,,2,,0.19,,,0.161,0.223,4.186901109,,,3.401319882,5.078506153,5.662778794,,,4.694187197,6.725301471,0.073618538,413,5610,0.066784724,0.080452353,0,0.06514658,0.037540518,0.092752642,0.086956522,0.05223549,0.121677553,0.128078818,0.082107673,0.174049963,0.073047859,0.047450614,0.098645104,0.069441024,0.061622594,0.077259455,,,,0.083783784,0.055552269,0.112015299,0.192,,,0.152,0.237,0.413,,,0.35,0.484,6.8,0.107218549,0.14,,,0.261,,,0.217,0.311,0.74868334,61127,81646,,,0.156863395,,,0.125599895,0.195237097,0.245614035,14,57,0.177292329,0.318071573,597.6,490,81989,,,11.69132062,328,28055,10.42605205,12.95658919,12.1703854,7.212941704,19.23445589,,,,10.06191951,5.357548368,17.20618879,13.58234295,8.702463415,20.20944969,11.44020554,9.980605394,12.89980568,,,,18.3299389,12.83806386,25.37636176,0.176526185,11393,64540,0.155079377,0.197972994,0.000463477,38,81989,,,2157.605263,0.00059183,49,82794,,,1689.673469,0.003261106,270,82794,,,306.6444444,2585,,,,,2933,,4020,,2521,0.39,,,,,0.18,0.38,0.33,,0.4,0.49,,,,,0.48,0.46,0.36,0.45,0.49,0.931150731,41155,44198,0.919873277,0.942428184,0.667109295,13062,19580,0.616970101,0.717248489,0.027824664,1088,39102,,,0.177,2595,,0.116234043,0.237765957,0.169689119,0.082375447,0.257002792,0.169451074,0,0.350076298,0.671052632,0.515492411,0.826612852,0.419965577,0.294736353,0.5451948,0.191149414,0.1377217,0.244577129,5.556544329,100529,18092,4.760865888,6.35222277,0.25881884,3896,15053,0.205647271,0.311990409,12.44069326,102,81989,,,60.37009065,247,409143,52.84122716,67.89895414,,,,,,,,,,,,,67.06886695,57.99761158,76.14012233,,,,9,,,,,1,,,,,0.226511405,7100,31345,0.200544319,0.252478492,0.2094275,0.18093104,0.23792396,0.024724837,0.016468815,0.032980858,0.007178178,0.002705099,0.011651257,0.749529396,27474,36655,0.726348788,0.772710004,0.773321709,0.672675871,0.873967546,0.619952494,0.441605287,0.798299702,0.744840525,0.585616311,0.90406474,0.752293578,0.644004422,0.860582735,0.775981446,0.749735026,0.802227865,0.193,,36655,0.167893761,0.218106239,76.51325156,,,75.83494923,77.19155389,76.2658507,72.06817383,80.46352757,90.97886699,81.6963995,100.2613345,72.33218943,68.76483299,75.89954588,80.873006,70.03200929,91.71400271,76.28417044,75.53211114,77.03622974,,,,445.9743956,991,231736,417.1489606,474.7998307,460.5088083,331.8942432,622.4741286,,,,548.3820885,375.0929426,774.1518867,362.9182652,227.4389446,549.462615,458.8388533,426.5672162,491.1104903,,,,47.93576607,40,83445,34.24601407,65.27490798,,,,,,,,,,,,,52.13676651,35.42440334,74.00397838,,,,5.674978504,33,5815,3.90639408,7.969779754,,,,,,,,,,,,,5.176470588,3.244066558,7.837238679,,,,,,,0.127,,,0.109,0.148,0.184,,,0.16,0.212,0.111,,,0.095,0.13,104.1,74,71107,,,0.14,11450,,,,0.107218549,8293.354724,77350,,,10.58942361,26,245528,6.917363077,15.51595911,,,,,,,,,,,,,11.72251736,7.346439217,17.74803216,,,,0.354,,,0.337,0.37,0.206998922,10180,49179,0.180786156,0.233211688,0.085353068,1384,16215,0.06271477,0.107991366,0.000700534,58,82794,,,1427.482759,0.914288591,681.145,745,,,,,,,,3.230063273,,,,,,3.870446075,3.039607521,3.004432631,3.334763564,3.334841282,,,,,,4.284656572,2.839323202,2.863606757,3.462813518,0.040334181,,,,,-990.6322876,,,,,0.805665722,41238,51185,0.730007654,0.88132379,51236,,,44656.59575,57815.40426,35859,7503.93617,64214.06383,30443,24585.6383,36300.3617,34342,9488.723404,59195.2766,45422,33055.53192,57788.46809,52029,48156.65957,55901.34043,,,,,,0.452803067,4725,10435,,,35.00334548,,,,,0.386876415,,51236,,,13.04454836,53,4063,,,3.501866495,20,571124,2.139031031,5.408348783,,,,,,,,,,,,,2.740639574,1.41612846,4.787345793,,,,15.22383762,58,409143,11.29942572,20.070732,14.1759727,,,,,,,,,,,,,16.86333338,12.25292385,22.63823796,,,,10.26535954,42,409143,7.398368231,13.87578396,,,,,,,,,,,,,11.49752005,8.052721692,15.91741411,,,,12.08143941,69,571124,9.400080991,15.2898348,,,,,,,,,,,,,12.78965135,9.661165179,16.6084261,,,,,,,,,,,0.47577241,29643,62305,,,0.585,,,,,50.04634182,,,,,0.514618598,16387,31843,0.498804202,0.530432993,0.219000195,6729,30726,0.187058252,0.250942139,0.837923563,26682,31843,0.817346182,0.858500943,82794,,,,,0.180073435,14909,82794,,,0.133862357,11083,82794,,,0.040618885,3363,82794,,,0.056078943,4643,82794,,,0.043843757,3630,82794,,,0.000930019,77,82794,,,0.052769524,4369,82794,,,0.753798584,62410,82794,,,0.006760211,529,78252,0.003702118,0.009818303,0.486967655,40318,82794,,,0.328417804,26814,81646,, -40,121,40121,OK,Pittsburg County,2024,1,12913.36559,1072,119159,11725.14324,14101.58793,0,7760.067812,5721.661416,10288.72409,,,,,2,14481.50006,8277.428532,23517.04882,1,8836.781516,5320.31973,13799.72897,1,12240.57098,10824.9163,13656.22565,,,,,2,,0.213,,,0.183,0.245,4.554527821,,,3.655004371,5.566835355,5.871214008,,,4.825668834,7.031377056,0.07559146,262,3466,0.066790903,0.084392016,0,0.071641791,0.052113705,0.091169877,,,,,,,0.057416268,0.025876363,0.088956173,0.075160403,0.064097823,0.086222984,,,,0.086455331,0.056885277,0.116025385,0.222,,,0.182,0.264,0.413,,,0.34,0.486,5.9,0.141731519,0.163,,,0.319,,,0.267,0.374,0.500993763,21930,43773,,,0.141527485,,,0.11229713,0.174782524,0.25,14,56,0.180936287,0.323011669,442.3,193,43633,,,36.7102012,312,8499,32.63672166,40.78368074,31.74603175,23.98061122,41.22486282,,,,,,,37.03703704,23.47830441,55.57374057,37.77823157,32.33431035,43.22215279,,,,46.04604605,33.7114929,61.41897268,0.195582243,6384,32641,0.175326924,0.215837562,0.00043545,19,43633,,,2296.473684,0.000550295,24,43613,,,1817.208333,0.008300277,362,43613,,,120.4779006,2704,,,,,4071,,2770,,2504,0.4,,,,,0.41,,0.49,,0.4,0.34,,,,,0.46,0.27,0.34,0.24,0.32,0.867106689,26406,30453,0.853926573,0.880286805,0.509180597,5574,10947,0.466300993,0.552060202,0.042894624,703,16389,,,0.2,1939,,0.12493617,0.27506383,0.240506329,0.158389384,0.322623274,0.577319588,0.014037282,1,,,,0.306841046,0.202342527,0.411339566,0.232593726,0.181875434,0.283312018,5.01671349,105356,21001,4.555278028,5.478148952,0.247681452,2457,9920,0.207704934,0.28765797,11.23003232,49,43633,,,110.0320965,241,219027,96.1400273,123.9241657,59.03004319,35.5399421,92.18272461,,,,,,,84.45232666,40.49817326,155.3108356,112.9057967,95.93321727,129.8783762,,,,8.4,,,,,1,,,,,0.11655926,2080,17845,0.099471496,0.133647025,0.092561984,0.07484673,0.110277237,0.023816195,0.016135786,0.031496604,0.011768002,0.007856118,0.015679886,0.827694682,13945,16848,0.81296248,0.842426884,0.886111111,0.835581377,0.936640845,,,,,,,0.699392713,0.637254075,0.761531351,0.832747774,0.806296675,0.859198872,0.224,,16848,0.198004771,0.249995229,72.0468617,,,71.2227017,72.87102171,82.49122475,78.71286334,86.26958617,,,,,,,80.20641083,68.88564893,91.52717272,72.48195551,71.5091158,73.45479521,,,,667.0508371,1072,119159,624.8986266,709.2030476,409.1209128,320.6854872,514.4081247,,,,743.0352847,508.2355847,1048.944121,540.7718409,334.7462927,826.6272026,641.6836688,593.4236323,689.9437054,,,,65.41903227,28,42801,43.47047185,94.54871602,,,,,,,,,,,,,62.91682396,35.21406876,103.771733,,,,8.737316798,31,3548,5.936582858,12.40192376,,,,,,,,,,,,,,,,,,,,,,0.139,,,0.12,0.16,0.195,,,0.168,0.223,0.12,,,0.102,0.138,120.1,44,36634,,,0.163,7140,,,,0.141731519,6496.547648,45837,,,21.3795947,28,130966,14.20658542,30.89946699,,,,,,,,,,,,,19.00205669,11.06939827,30.42413352,,,,0.349,,,0.335,0.362,0.242131276,5585,23066,0.21591851,0.268344041,0.086619648,872,10067,0.063981351,0.109257946,0.001261092,55,43613,,,792.9636364,0.742083333,391.82,528,,,0.094430993,195,2065,0.051901484,0.136960501,3.043380389,,,,,,,,2.913994882,2.97540608,3.084793294,,,,,,,,2.936000967,3.097087162,0.059034357,,,,,-5850.110929,,,,,0.713536815,39064,54747,0.643651685,0.783421945,47930,,,43260.55319,52599.44681,58971,51706.48936,66235.51064,61985,23902.61702,100067.383,20250,11158.93617,29341.06383,41292,30275.48936,52308.51064,53118,49629.31915,56606.68085,,,,,,0.711730165,5212,7323,,,43.39912186,,,,,0.320154392,,47930,,,17.53019088,45,2567,,,9.421396316,29,307810,6.309656976,13.53069668,,,,,,,,,,,,,8.47357891,5.02197989,13.39190786,,,,27.74098468,58,219027,20.89830612,36.10870467,26.48075351,,,,,,,,,,,,,23.39689059,16.00345584,33.02942852,,,,21.00197693,46,219027,15.3760867,28.01369407,,,,,,,,,,,,,21.25285585,14.53693767,30.0026912,,,,24.04080439,74,307810,18.87720225,30.1810284,,,,,,,,,,,,,26.3622455,19.91375694,34.23356856,,,,,,,,,,,0.535124646,17924,33495,,,0.395,,,,,28.52639928,,,,,0.720466559,12539,17404,0.702327515,0.738605604,0.110731499,1815,16391,0.094165555,0.127297443,0.837221328,14571,17404,0.817596471,0.856846186,43613,,,,,0.227776122,9934,43613,,,0.20243964,8829,43613,,,0.027950382,1219,43613,,,0.166762204,7273,43613,,,0.006259602,273,43613,,,0.000940087,41,43613,,,0.060234334,2627,43613,,,0.67585353,29476,43613,,,0.005751031,237,41210,0.002718926,0.008783137,0.49033545,21385,43613,,,0.553560414,24231,43773,, -40,123,40123,OK,Pontotoc County,2024,1,13204.15958,787,106387,11896.95621,14511.36294,0,23791.85446,19929.16139,27654.54754,,,,,2,20359.22509,11130.57781,34159.32027,1,,,,2,11565.90987,10011.8105,13120.00925,,,,,2,,0.187,,,0.159,0.216,3.923072336,,,3.115421336,4.767586772,5.495687864,,,4.489391225,6.540607066,0.080785414,288,3565,0.071839984,0.089730844,0,0.066137566,0.051672677,0.080602455,,,,,,,0.089108911,0.049819621,0.128398201,0.079162411,0.067203249,0.091121573,,,,0.174157303,0.118443144,0.229871463,0.2,,,0.163,0.239,0.361,,,0.294,0.429,7.2,0.092410967,0.128,,,0.294,,,0.244,0.344,0.594115329,22615,38065,,,0.140613217,,,0.11044153,0.173130574,0.098039216,5,51,0.042753873,0.174009856,639.4,244,38163,,,28.68249632,273,9518,25.28004677,32.08494587,54.76951164,44.97000262,64.56902066,,,,,,,24.81751825,14.45711893,39.73525083,22.02556539,17.94637359,26.10475718,,,,20,12.21651959,30.8883779,0.176074729,5259,29868,0.157010899,0.195138559,0.000707492,27,38163,,,1413.444444,0.000786555,30,38141,,,1271.366667,0.006108912,233,38141,,,163.695279,3530,,,,,6637,,3275,,3110,0.38,,,,,0.48,,0.29,0.25,0.38,0.41,,,,,0.5,,0.28,0.2,0.4,0.895000796,22486,25124,0.881706597,0.908294995,0.569505354,5584,9805,0.52226149,0.616749219,0.02765356,538,19455,,,0.177,1652,,0.112659575,0.241340426,0.183625178,0.122294157,0.244956198,,,,0.173584906,0,0.383085493,0.212962963,0.105484559,0.320441367,0.165986395,0.122706842,0.209265947,4.440788465,115798,26076,4.078892325,4.802684604,0.266702356,2491,9340,0.227036388,0.306368323,15.72203443,60,38163,,,106.1077281,203,191315,91.51101512,120.7044411,153.1905412,115.4040804,199.398546,,,,,,,,,,111.07958,92.47884881,129.6803112,,,,9,,,,,0,,,,,0.111345276,1585,14235,0.090393858,0.132296694,0.087806612,0.068568798,0.107044426,0.015806112,0.008567512,0.023044712,0.010186161,0.005617129,0.014755193,0.829354346,14104,17006,0.810637828,0.848070863,0.844233056,0.81064838,0.877817732,,,,,,,0.79231473,0.689446934,0.895182526,0.835763499,0.80854552,0.862981479,0.153,,17006,0.132157449,0.173842552,72.30992802,,,71.38165808,73.23819797,63.78529668,61.83077368,65.73981968,,,,,,,89.744562,69.84665056,109.6424735,73.56788823,72.43357431,74.70220216,,,,637.0689255,787,106387,590.847685,683.2901659,1205.388176,1042.065946,1368.710405,,,,983.5867913,608.8557263,1503.516893,,,,563.5746282,512.1393894,615.0098669,,,,83.01117093,35,42163,57.82032209,115.4484438,163.1008347,95.01224666,261.1402362,,,,,,,,,,72.01152184,40.30430213,118.7720541,,,,6.906077348,25,3620,4.469249129,10.19473251,,,,,,,,,,,,,,,,,,,,,,0.125,,,0.107,0.144,0.185,,,0.16,0.211,0.113,,,0.097,0.132,105.1,33,31389,,,0.128,4880,,,,0.092410967,3464.671968,37492,,,14.80268887,17,114844,8.62311176,23.70053883,,,,,,,,,,,,,13.62806291,6.535185882,25.0624929,,,,0.336,,,0.322,0.349,0.209856537,4403,20981,0.18483526,0.234877814,0.09990363,933,9339,0.074882353,0.124924907,0.002700506,103,38141,,,370.3009709,0.869226457,387.675,446,,,0.056026365,119,2124,0.019100293,0.092952438,3.001914151,,,,,,,,2.682356298,3.138101283,2.971474261,,,,,,,,2.612787503,3.172254862,0.029124203,,,,,-247.9525143,,,,,0.795726754,42121,52934,0.734895828,0.85655768,56077,,,50801.08511,61352.91489,51771,45845.7234,57696.2766,70694,43723.44681,97664.55319,38958,22847.87234,55068.12766,52019,26982.23404,77055.76596,63367,58680.87234,68053.12766,,,,,,0.589995663,4081,6917,,,51.93943292,,,,,0.29858944,,56077,,,15.83531275,40,2526,,,9.333965554,25,267839,6.040450363,13.77877445,,,,,,,,,,,,,9.764559245,5.688215596,15.63400526,,,,20.36772705,39,191315,14.34075949,28.07422878,20.38522855,25.43734599,12.19819614,46.78018495,,,,,,,,,,19.85264845,12.71996646,29.53916723,,,,20.90792672,40,191315,14.93692938,28.47066198,,,,,,,,,,,,,24.32399562,16.4112977,34.72401621,,,,26.13510355,70,267839,20.37359537,33.02013106,36.35262042,21.54486677,57.45281282,,,,,,,,,,27.57052022,20.32832516,36.5545099,,,,,,,,,,,0.531852109,15320,28805,,,0.558,,,,,25.57184081,,,,,0.657590703,9733,14801,0.636388449,0.678792958,0.086182735,1230,14272,0.070333291,0.10203218,0.789811499,11690,14801,0.767106929,0.81251607,38141,,,,,0.249547731,9518,38141,,,0.171128182,6527,38141,,,0.019244383,734,38141,,,0.21255342,8107,38141,,,0.009202695,351,38141,,,0.000550589,21,38141,,,0.065677355,2505,38141,,,0.629296558,24002,38141,,,0.004048014,144,35573,0.000998762,0.007097266,0.5110511,19492,38141,,,0.546460003,20801,38065,, -40,125,40125,OK,Pottawatomie County,2024,1,11706.63688,1558,203614,10837.96371,12575.31005,0,19420.62127,16403.68456,22437.55797,,,,,2,19078.31804,12223.83836,28387.02497,1,9198.462887,6249.909251,13056.48382,,10459.48255,9488.389145,11430.57595,,,,,2,,0.198,,,0.17,0.229,4.269992843,,,3.424854501,5.150488069,6.069794124,,,5.042735775,7.136149906,0.07640264,463,6060,0.069714347,0.083090933,0,0.071017275,0.055421461,0.086613088,,,,0.136054422,0.080630542,0.191478302,0.06969697,0.042223199,0.09717074,0.07058528,0.062628785,0.078541776,,,,0.119842829,0.091627617,0.148058041,0.203,,,0.167,0.245,0.416,,,0.352,0.483,7.1,0.088219263,0.133,,,0.276,,,0.23,0.327,0.570748337,41353,72454,,,0.142974843,,,0.113629062,0.174640172,0.191780822,14,73,0.133762389,0.255915748,532.7,389,73019,,,27.33344559,487,17817,24.90579615,29.76109502,39.33021807,31.65975225,47.00068389,,,,19.23076923,9.599930712,34.40915824,22.13001383,15.13691308,31.24097654,25.18206546,22.26862282,28.09550809,,,,32.90246769,24.8541705,42.72659107,0.166767507,9647,57847,0.150086656,0.183448359,0.000301291,22,73019,,,3319.045455,0.000639169,47,73533,,,1564.531915,0.003413433,251,73533,,,292.9601594,1751,,,,,2281,,738,1159,1641,0.42,,,,,0.29,0.32,0.24,0.45,0.44,0.45,,,,,0.35,0.55,0.34,0.37,0.46,0.886495564,42761,48236,0.875383693,0.897607434,0.552128656,10025,18157,0.519469296,0.584788016,0.034358373,1143,33267,,,0.223,3678,,0.170574468,0.275425532,0.193154996,0.145073956,0.241236036,0.260869565,0,0.739434561,0.371148459,0.231549146,0.510747773,0.16969697,0.103828671,0.235565268,0.183092784,0.155631717,0.210553851,4.52869479,109608,24203,4.255984269,4.801405311,0.230073757,3868,16812,0.196372669,0.263774845,10.68215122,78,73019,,,115.2637863,419,363514,104.2270176,126.300555,137.1473354,105.3877782,175.471019,,,,111.5967637,57.66367627,194.9370878,61.02212052,31.53102013,106.5933641,120.4070833,107.0889523,133.7252144,,,,9.3,,,,,1,,,,,0.12257817,3195,26065,0.109557497,0.135598843,0.092286769,0.080328546,0.104244992,0.024170343,0.016361432,0.031979254,0.011126031,0.00741753,0.014834532,0.835887111,24494,29303,0.819510563,0.852263659,0.786214523,0.739111145,0.833317901,,,,0.906424581,0.834464853,0.978384309,0.834672021,0.752972013,0.91637203,0.82783006,0.806380079,0.849280042,0.352,,29303,0.326032091,0.377967909,72.49035271,,,71.8651712,73.11553421,66.58436981,64.80210595,68.36663366,,,,68.5376907,63.22143186,73.85394953,77.76554165,72.71793403,82.81314928,73.40574296,72.7005388,74.11094713,,,,602.8119806,1558,203614,571.8159773,633.8079839,975.7167161,856.1519945,1095.281438,,,,802.5173028,589.6595286,1067.177885,488.1859072,341.9194077,675.8550726,556.0586478,522.2222964,589.8949992,,,,62.50325538,48,76796,46.08496644,82.87024869,83.56313195,40.07176984,153.6755749,,,,,,,,,,56.07799155,36.6320059,82.16725063,,,,8.84086444,54,6108,6.641529465,11.53541035,,,,,,,,,,,,,5.688844917,3.606239683,8.536060573,,,,,,,0.131,,,0.112,0.15,0.196,,,0.169,0.223,0.11,,,0.094,0.128,150.9,92,60956,,,0.133,9640,,,,0.088219263,6126.122063,69442,,,19.66982146,43,218609,14.23514732,26.49512043,,,,,,,,,,,,,18.59629998,12.45423395,26.70738878,,,,0.366,,,0.351,0.379,0.201929603,8330,41252,0.179291306,0.224567901,0.08181766,1426,17429,0.060370852,0.103264469,0.000911156,67,73533,,,1097.507463,0.883618497,764.33,865,,,0.096,432,4500,0.068602116,0.123397884,2.880629499,,,,,,,2.612464593,2.401269777,2.979286868,2.888962917,,,,,,,2.481429955,2.440077793,3.010281497,0.037785339,,,,,-2622.579953,,,,,0.763115702,40932,53638,0.71307973,0.813151673,52695,,,47495.34043,57894.65957,46250,37375.78723,55124.21277,91471,48323.59575,134618.4043,38421,24765.34043,52076.65957,52604,38665.95745,66542.04255,60512,57364.08511,63659.91489,,,,,,0.581175138,7181,12356,,,36.56674794,,,,,0.289572066,,52695,,,13.33946642,58,4348,,,6.894120104,35,507679,4.802007253,9.588052169,,,,,,,,,,,,,5.73944557,3.552807268,8.773352228,,,,22.61944939,81,363514,17.87973609,28.23009653,22.28249806,23.01395212,11.48848198,41.17831745,,,,,,,,,,22.81847339,17.23682958,29.63168571,,,,21.18212779,77,363514,16.716604,26.47402535,26.12330199,13.49829134,45.63215136,,,,,,,,,,20.32348858,15.22368758,26.58362346,,,,22.65210891,115,507679,18.51196162,26.79225621,18.89109285,9.761303342,32.99893745,,,,,,,,,,24.59762387,19.77939433,30.23465581,,,,,,,,,,,0.514324818,28185,54800,,,0.624,,,,,36.28934537,,,,,0.699492847,18482,26422,0.682791104,0.716194589,0.104832655,2653,25307,0.093027914,0.116637396,0.845886004,22350,26422,0.828294435,0.863477573,73533,,,,,0.229651993,16887,73533,,,0.166863857,12270,73533,,,0.030557709,2247,73533,,,0.141963472,10439,73533,,,0.008254797,607,73533,,,0.001400732,103,73533,,,0.06187698,4550,73533,,,0.704636014,51814,73533,,,0.004642065,318,68504,0.002285846,0.006998284,0.519413053,38194,73533,,,0.527355288,38209,72454,, -40,127,40127,OK,Pushmataha County,2024,1,16609.50849,323,29420,13728.1952,19490.82178,0,15744.52464,10375.74095,22907.45673,,,,,2,,,,2,,,,2,18728.14788,14858.23858,22598.05718,,,,,2,,0.237,,,0.207,0.272,4.794094765,,,3.812715768,5.739930664,6.000013243,,,4.773853076,7.173421038,0.091377091,71,777,0.071116316,0.111637867,0,,,,,,,,,,,,,0.094117647,0.068775558,0.119459736,,,,,,,0.253,,,0.212,0.297,0.401,,,0.32,0.474,6.3,0.094077091,0.169,,,0.327,,,0.273,0.381,0.314835368,3404,10812,,,0.126976437,,,0.097959991,0.156646567,0.44,11,25,0.339407154,0.5333173,406.8,44,10815,,,38.42504744,81,2108,30.51503415,47.75882551,40.1459854,25.15927531,60.78150436,,,,,,,,,,38.20033956,27.8635898,51.11505985,,,,,,,0.202756394,1633,8054,0.178926607,0.226586182,0.000184928,2,10815,,,5407.5,0.000464296,5,10769,,,2153.8,0.010307364,111,10769,,,97.01801802,6814,,,,,6052,,,,6856,0.27,,,,,0.4,,,,0.26,0.18,,,,,0.36,,,,0.16,0.841318908,6532,7764,0.818700621,0.863937194,0.426722338,1022,2395,0.362630019,0.490814658,0.038319181,176,4593,,,0.312,693,,0.215489362,0.408510638,0.221967963,0.139558047,0.30437788,,,,,,,0.256756757,0.093346116,0.420167398,0.325655282,0.24318386,0.408126704,5.112606276,83586,16349,4.301572708,5.923639844,0.325581395,756,2322,0.254657489,0.396505302,12.94498382,14,10815,,,135.7883874,75,55233,106.8061806,170.2119194,127.7641278,68.02901711,218.4805496,,,,,,,,,,150.049154,113.9386136,193.9733268,,,,8.7,,,,,1,,,,,0.120670391,540,4475,0.099033834,0.142306948,0.076497696,0.057025496,0.095969896,0.034413408,0.019492655,0.049334161,0.020111732,0.012369131,0.027854333,0.786510591,2822,3588,0.744198621,0.82882256,0.773584906,0.632707782,0.91446203,,,,,,,,,,0.728861597,0.672809708,0.784913485,0.351,,3588,0.297741625,0.404258375,69.88351149,,,68.0535594,71.71346359,71.03147948,66.28997341,75.77298556,,,,,,,,,,68.44177702,66.16222425,70.72132979,,,,776.5445272,323,29420,683.5366285,869.5524258,896.0642565,673.1510479,1169.169482,,,,,,,,,,817.4378004,702.6259874,932.2496134,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.149,,,0.13,0.17,0.205,,,0.179,0.231,0.128,,,0.109,0.145,,,,,,0.169,1850,,,,0.094077091,1088.660096,11572,,,,,,,,,,,,,,,,,,,,,,,,,,0.361,,,0.347,0.374,0.240677386,1407,5846,0.210890152,0.27046462,0.104175635,242,2323,0.074388401,0.133962869,0.001021451,11,10769,,,979,0.809923664,106.1,131,,,,,,,,2.992250474,,,,,,,,,2.866760373,3.055163086,,,,,,,,,3.112898957,0.050697353,,,,,-8322.1381,,,,,0.781619333,35448,45352,0.679459096,0.88377957,39267,,,35115.85106,43418.14894,48095,35405.6383,60784.3617,,,,,,,23512,16774.12766,30249.87234,43689,39891.7234,47486.2766,,,,,,0.753948039,1480,1963,,,,,,,,0.32408893,,39267,,,19.57585644,12,613,,,,,,,,,,,,,,,,,,,,,,,,,,30.40615653,17,55233,16.62332872,51.01636404,30.77870114,,,,,,,,,,,,,34.4087211,16.50031922,63.27886319,,,,34.3997248,19,55233,20.71088147,53.71943145,,,,,,,,,,,,,41.39287008,23.65960173,67.21942774,,,,51.63089076,40,77473,36.88586532,70.30661903,,,,,,,,,,,,,56.61583417,38.4677125,80.36165739,,,,,,,,,,,0.552331002,4739,8580,,,0.368,,,,,8.091672359,,,,,0.753842516,3188,4229,0.725269832,0.7824152,0.104576835,409,3911,0.07514633,0.13400734,0.672735871,2845,4229,0.6392525,0.706219243,10769,,,,,0.20986164,2260,10769,,,0.235955056,2541,10769,,,0.012257406,132,10769,,,0.189618349,2042,10769,,,0.005664407,61,10769,,,0.000464296,5,10769,,,0.046801003,504,10769,,,0.692450553,7457,10769,,,0.00165692,17,10260,0,0.00855173,0.507010865,5460,10769,,,1,10812,10812,, -40,129,40129,OK,Roger Mills County,2024,1,12902.63972,71,9457,8502.92088,18772.66338,0,,,,2,,,,2,,,,2,,,,2,12927.87468,7783.425064,20188.47772,1,,,,2,,0.199,,,0.167,0.232,4.249932101,,,3.346237916,5.252500163,5.606960843,,,4.458960231,6.850892167,0.073260073,20,273,0.042350902,0.104169244,1,,,,,,,,,,,,,0.071770335,0.036777177,0.106763493,,,,,,,0.206,,,0.164,0.251,0.403,,,0.321,0.491,5.9,0.203734739,0.133,,,0.297,,,0.241,0.356,,,3442,,,0.132202917,,,0.102831009,0.164581333,0,0,4,0,0.360186253,147.7,5,3386,,,33.77563329,28,829,22.44366304,48.81519414,,,,,,,,,,,,,27.50809062,16.02447649,44.04311783,,,,,,,0.168392789,439,2607,0.145754491,0.191031087,0.000590668,2,3386,,,1693,0.000301205,1,3320,,,3320,,0,3320,,,,4530,,,,,,,,,4664,0.37,,,,,,,,,0.38,0.24,,,,,,,,,0.24,0.924640136,2184,2362,0.900996011,0.94828426,0.575289575,447,777,0.459999819,0.690579332,0.023281597,42,1804,,,0.224,176,,0.145361702,0.302638298,0.385964912,0.100657615,0.67127221,,,,,,,0.539130435,0.383721286,0.694539584,0.143572621,0.080296741,0.206848501,4.167911418,112171,26913,3.127643689,5.208179148,0.151300236,128,846,0.080506053,0.22209442,17.72002363,6,3386,,,150.745352,27,17911,99.34213685,219.3265728,,,,,,,,,,,,,141.1764706,87.3904604,215.8032318,,,,6.9,,,,,0,,,,,0.109090909,150,1375,0.067762175,0.150419644,0.092936803,0.04899111,0.136882496,0.017454546,0,0.036696729,0.005818182,0,0.020024875,0.789652825,1160,1469,0.747279017,0.832026633,,,,,,,,,,,,,0.716374269,0.657045426,0.775703112,0.346,,1469,0.265048841,0.426951159,74.06226912,,,70.60026996,77.52426827,,,,,,,,,,,,,74.62390136,70.54660965,78.70119307,,,,542.8428622,71,9457,415.2317765,697.3043662,,,,,,,,,,,,,489.3120341,355.534873,656.8785669,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.132,,,0.113,0.152,0.187,,,0.162,0.215,0.112,,,0.095,0.13,,,,,,0.133,460,,,,0.203734739,743.0205939,3647,,,,,,,,,,,,,,,,,,,,,,,,,,0.344,,,0.328,0.361,0.198342541,359,1810,0.169746797,0.226938286,0.101895735,86,844,0.070917011,0.132874458,0.00060241,2,3320,,,1660,,,,,,,,,,,3.6413561,,,,,,,,,3.821064293,3.642447145,,,,,,,,,3.842273943,0.135028488,,,,,2614.868767,,,,,0.682518877,36970,54167,0.585951211,0.779086543,55183,,,50817.38298,59548.61702,63000,27516.25532,98483.74468,,,,,,,,,,59091,47053.38298,71128.61702,,,,,,0.488571429,342,700,,,,,,,,0.259663302,,55183,,,14.85148515,3,202,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.681784387,1834,2690,,,0.414,,,,,0.037737826,,,,,0.807956104,1178,1458,0.75368346,0.862228749,0.074583635,103,1381,0.03743733,0.11172994,0.879286694,1282,1458,0.854879345,0.903694043,3320,,,,,0.240060241,797,3320,,,0.22439759,745,3320,,,0.005722892,19,3320,,,0.082228916,273,3320,,,0.006325301,21,3320,,,0.001506024,5,3320,,,0.090060241,299,3320,,,0.809036145,2686,3320,,,0.009239298,30,3247,0,0.025107464,0.49939759,1658,3320,,,1,3442,3442,, -40,131,40131,OK,Rogers County,2024,1,7247.642707,1419,262603,6647.22509,7848.060323,0,8266.035713,6507.3573,10024.71413,,,,,2,7531.06912,3759.48257,13475.16295,1,6499.750106,4385.354102,9278.79743,,6634.399699,5947.752853,7321.046545,,,,,2,,0.168,,,0.144,0.196,3.754065182,,,3.016547224,4.607761905,5.414183428,,,4.468610787,6.453132744,0.079620059,570,7159,0.073349233,0.085890884,0,0.076370171,0.060766767,0.091973574,0.098130841,0.058272088,0.137989595,0.181818182,0.088765762,0.274870602,0.077830189,0.052329457,0.10333092,0.077633605,0.069855564,0.085411645,,,,0.079283888,0.060347025,0.09822075,0.181,,,0.146,0.219,0.429,,,0.362,0.498,8.1,0.048463797,0.107,,,0.264,,,0.221,0.313,0.54351113,51764,95240,,,0.152597724,,,0.122520399,0.187453711,0.211267606,15,71,0.15140028,0.276251586,315.4,305,96695,,,18.03748415,384,21289,16.23335999,19.8416083,19.75850714,15.45981495,24.88256972,,,,,,,24.63054187,17.59642022,33.53980724,15.89015736,13.7202027,18.06011202,,,,24.46102819,18.62086801,31.55294418,0.150035876,11919,79441,0.135738003,0.164333748,0.000372305,36,96695,,,2685.972222,0.000445182,44,98836,,,2246.272727,0.002650856,262,98836,,,377.2366412,3403,,,,,5393,,,,3189,0.43,,,,,0.41,0.55,0.64,0.29,0.43,0.38,,,,,0.43,0.29,0.21,0.27,0.38,0.921671018,60010,65110,0.914969941,0.928372096,0.58672359,14018,23892,0.557535059,0.61591212,0.029056753,1324,45566,,,0.13,2881,,0.09187234,0.16812766,0.195171026,0.14720954,0.243132513,0.146853147,0.020072009,0.273634285,0.116883117,0,0.316520936,0.205417607,0.139442947,0.271392267,0.11055832,0.087878008,0.133238631,3.734476007,139225,37281,3.491334138,3.977617875,0.181418735,4005,22076,0.155822358,0.207015112,8.273437096,80,96695,,,69.13773224,322,465737,61.58605768,76.6894068,59.24365599,41.49352832,82.0181919,,,,,,,50.92514004,26.31376298,88.95597118,70.66903035,61.61426345,79.72379726,,,,9.8,,,,,1,,,,,0.101533655,3575,35210,0.09231041,0.1107569,0.074903695,0.066870703,0.082936687,0.027122976,0.022037311,0.032208642,0.005254189,0.003255601,0.007252778,0.821249071,37582,45762,0.811510629,0.830987514,0.762935477,0.70888701,0.816983945,0.800362976,0.695662948,0.905063005,0.859205776,0.73357607,0.984835482,0.780570942,0.700640289,0.860501595,0.758031442,0.742145835,0.77391705,0.42,,45762,0.400026999,0.439973001,76.87155349,,,76.34547613,77.39763085,78.33731931,76.25541342,80.41922521,,,,,,,80.46892632,75.30579955,85.63205309,77.45652085,76.85819877,78.05484292,,,,404.0049548,1419,262603,382.2266926,425.783217,400.2509157,334.8174454,465.6843859,,,,660.333783,413.8276662,999.753283,371.8806975,257.5381937,519.6660003,379.8141537,355.6977689,403.9305386,,,,45.97797237,44,95698,33.40766511,61.72328187,,,,,,,,,,,,,38.55860909,24.16447503,58.37819754,,,,5.498378683,39,7093,3.909884744,7.516464665,,,,,,,,,,,,,5.524861879,3.575399303,8.155786011,,,,,,,0.116,,,0.101,0.133,0.18,,,0.156,0.205,0.099,,,0.085,0.115,96.2,78,81116,,,0.107,10080,,,,0.048463797,4211.746258,86905,,,12.39776274,35,282309,8.635496,17.24228677,,,,,,,,,,,,,15.02968363,10.14046443,21.45580792,,,,0.345,,,0.331,0.358,0.178197796,10220,57352,0.159133966,0.197261626,0.080343716,1870,23275,0.061279887,0.099407546,0.000596949,59,98836,,,1675.186441,0.853676923,832.335,975,,,0.061835368,314,5078,0.03996496,0.083705777,3.184290388,,,,,,2.895023678,,2.875976456,3.295772286,3.135083223,,,,,,3.024386612,,2.888308001,3.229013125,0.037213273,,,,,-1266.364589,,,,,0.72773145,44420,61039,0.681678076,0.773784825,72952,,,67945.3617,77958.6383,70521,63616.31915,77425.68085,73611,43755.85106,103466.1489,73750,34198.51064,113301.4894,68462,59077.82979,77846.17021,77059,73729.97872,80388.02128,,,,,,0.449156118,6387,14220,,,47.96569833,,,,,0.250383814,,72952,,,10.6833671,58,5429,,,4.010458041,26,648305,2.619764342,5.876250235,,,,,,,,,,,,,3.238216132,1.812404987,5.340945056,,,,18.30549658,89,465737,14.60118098,22.66345037,19.10949742,22.36548746,11.55657374,39.06800563,,,,,,,,,,15.92838786,11.93145554,20.8347235,,,,13.52694761,63,465737,10.39447796,17.30684212,18.10222822,9.036567105,32.38988664,,,,,,,,,,12.68418494,9.141644816,17.14533321,,,,14.80784507,96,648305,11.99440205,18.08291329,11.89244473,5.702889503,21.87062928,,,,,,,,,,13.81638883,10.64030296,17.64322008,,,,,,,,,,,0.643086028,44553,69280,,,0.68,,,,,29.96296645,,,,,0.773453748,27149,35101,0.760402477,0.786505019,0.0787549,2692,34182,0.069339584,0.088170217,0.877866727,30814,35101,0.867587199,0.888146256,98836,,,,,0.228499737,22584,98836,,,0.17275082,17074,98836,,,0.012809098,1266,98836,,,0.134778826,13321,98836,,,0.018808936,1859,98836,,,0.00113319,112,98836,,,0.058146829,5747,98836,,,0.700180096,69203,98836,,,0.006746817,610,90413,0.004396236,0.009097399,0.49786515,49207,98836,,,0.548372533,52227,95240,, -40,133,40133,OK,Seminole County,2024,1,15206.24916,671,66336,13439.01059,16973.48773,0,25865.60096,20819.88819,30911.31373,,,,,2,26394.82344,15375.95733,42260.66923,1,,,,2,13353.95188,11281.75965,15426.1441,,,,,2,,0.248,,,0.217,0.283,4.96607649,,,4.040276849,6.013937737,5.840656526,,,4.704303065,7.063356045,0.0808369,170,2103,0.069186588,0.092487212,0,0.063865546,0.044218376,0.083512717,,,,,,,,,,0.085833333,0.069984178,0.101682489,,,,0.132450331,0.078382208,0.186518455,0.263,,,0.222,0.31,0.432,,,0.352,0.51,5.9,0.122122227,0.175,,,0.348,,,0.295,0.403,0.550899983,12977,23556,,,0.124993854,,,0.096591083,0.155998027,0.264150943,14,53,0.19279112,0.338831847,577.1,136,23567,,,37.75113415,233,6172,32.90374246,42.59852585,43.28165375,33.54268716,54.9661703,,,,,,,27.84222738,14.38648517,48.63476809,37.65563316,31.02774482,44.2835215,,,,38.2916053,25.01334789,56.10607376,0.198346214,3670,18503,0.178090895,0.218601533,0.000339458,8,23567,,,2945.875,0.000471072,11,23351,,,2122.818182,0.00308338,72,23351,,,324.3194444,3379,,,,,5968,,,,2969,0.29,,,,,0.17,,,,0.31,0.33,,,,,0.38,,0.2,0.19,0.32,0.853270968,13317,15607,0.836705784,0.869836153,0.518014706,2818,5440,0.472439468,0.563589944,0.041608127,385,9253,,,0.332,1827,,0.25812766,0.40587234,0.373819163,0.30808198,0.439556347,,,,0.433333333,0.260734703,0.605931964,0.247252747,0.170431145,0.324074349,0.243500549,0.202172705,0.284828393,4.937517591,87715,17765,4.496774043,5.378261139,0.313534228,1800,5741,0.265356223,0.361712232,11.03237578,26,23567,,,136.592912,166,121529,115.8136465,157.3721774,153.9408867,107.225468,214.0945081,,,,,,,,,,154.9066687,127.190349,182.6229885,,,,9,,,,,1,,,,,0.148583645,1390,9355,0.130135027,0.167032264,0.09461664,0.077654679,0.1115786,0.037947622,0.027797223,0.04809802,0.029396045,0.020391793,0.038400297,0.815450136,6893,8453,0.786787166,0.844113106,0.824350032,0.721775077,0.926924987,,,,0.737068966,0.506408721,0.96772921,0.783417936,0.698721284,0.868114588,0.818972332,0.778630839,0.859313825,0.347,,8453,0.317644836,0.376355164,69.95683251,,,68.80571763,71.10794738,62.25789692,59.75122023,64.76457361,,,,,,,,,,71.39648095,70.02228029,72.77068161,,,,771.6415255,671,66336,710.1925304,833.0905206,1338.2087,1134.28917,1542.128231,,,,1138.105106,788.1708711,1590.387811,,,,692.207587,621.9896968,762.4254772,,,,60.27273412,16,26546,34.45107532,97.87914412,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.157,,,0.138,0.18,0.209,,,0.183,0.239,0.134,,,0.115,0.154,76.8,15,19532,,,0.175,4170,,,,0.122122227,3111.918577,25482,,,29.13712486,21,72073,18.03633952,44.53919045,,,,,,,,,,,,,26.28984555,13.58434683,45.92306945,,,,0.354,,,0.341,0.366,0.241434813,3150,13047,0.215222047,0.267647579,0.098803952,570,5769,0.072591186,0.125016718,0.000984969,23,23351,,,1015.26087,0.834251412,295.325,354,,,0.090909091,130,1430,0.049977692,0.13184049,2.634880817,,,,,,,,2.703808291,2.716920298,2.637441428,,,,,,,,2.473351818,2.694206927,0.070684564,,,,,-4418.3696,,,,,0.848022223,35717,42118,0.785196675,0.910847772,44114,,,39066.85106,49161.14894,31094,23817.57447,38370.42553,,,,40500,22809.95745,58190.04255,60536,43388.08511,77683.91489,45649,42088.82979,49209.17021,,,,,,0.741962597,3531,4759,,,44.33411173,,,,,0.322641338,,44114,,,13.21003963,20,1514,,,6.384806482,11,172284,3.187272392,11.42418246,,,,,,,,,,,,,,,,,,,33.61106241,37,121529,23.5407749,46.5318779,30.44540809,,,,,,,,,,,,,41.34243337,27.47174673,59.75132705,,,,23.03976829,28,121529,15.3097587,33.29888006,,,,,,,,,,,,,30.98133375,19.85032512,46.09776882,,,,31.34359546,54,172284,23.54627358,40.89659306,56.25703213,33.34148262,88.91036463,,,,,,,,,,28.98235699,19.82391073,40.91444053,,,,,,,,,,,0.458580858,8337,18180,,,0.499,,,,,17.14313435,,,,,0.691190253,5900,8536,0.674220364,0.708160142,0.110871222,873,7874,0.090058421,0.131684022,0.671977507,5736,8536,0.647971211,0.695983803,23351,,,,,0.24033232,5612,23351,,,0.182047878,4251,23351,,,0.03802835,888,23351,,,0.2014903,4705,23351,,,0.006295234,147,23351,,,0.001627339,38,23351,,,0.060768275,1419,23351,,,0.62661128,14632,23351,,,0.004016427,89,22159,,,0.506102522,11818,23351,,,0.733273901,17273,23556,, -40,135,40135,OK,Sequoyah County,2024,1,13491.414,995,113022,12201.98161,14780.84639,0,5602.739152,4070.958845,7521.415801,,,,,2,,,,2,,,,2,13466.09733,11795.69425,15136.50041,,,,,2,,0.249,,,0.218,0.282,4.849554466,,,3.918575811,5.91789051,6.318292289,,,5.167862616,7.562547208,0.080890643,287,3548,0.071918483,0.089862803,0,0.057739558,0.041715737,0.073763378,,,,0.157142857,0.071885599,0.242400115,0.064935065,0.026016552,0.103853578,0.083976396,0.07239447,0.095558321,,,,0.115671642,0.077379567,0.153963717,0.254,,,0.212,0.298,0.426,,,0.353,0.505,6.3,0.10162477,0.162,,,0.345,,,0.292,0.404,0.399760699,15703,39281,,,0.13075071,,,0.101883146,0.162635115,0.189189189,7,37,0.108031103,0.282799629,427.8,169,39508,,,42.42355861,376,8863,38.13541576,46.71170147,30.62426384,24.20720974,38.22046724,,,,70.92198582,34.00984891,130.428057,33.04347826,19.89433246,51.60148447,50.17921147,43.60784187,56.75058107,,,,40.25617566,29.25019886,54.04203685,0.199256364,6270,31467,0.177809555,0.220703172,0.000354359,14,39508,,,2822,0.000403358,16,39667,,,2479.1875,0.003050395,121,39667,,,327.8264463,3726,,,,,4198,,7065,,3546,0.37,,,,,0.41,,0.45,,0.36,0.38,,,,,0.51,,0.35,0.41,0.36,0.835120643,22428,26856,0.817932304,0.852308983,0.499065626,4540,9097,0.454854904,0.543276348,0.03440503,580,16858,,,0.292,2684,,0.21693617,0.36706383,0.176470588,0.134021166,0.218920011,,,,0.161971831,0,0.341958305,0.443181818,0.348395266,0.53796837,0.254710556,0.203137111,0.306284002,4.569483638,92299,20199,4.174364466,4.964602809,0.268909364,2510,9334,0.228912532,0.308906196,5.315379164,21,39508,,,99.00217512,203,205046,85.38293777,112.6214125,,,,,,,,,,,,,114.988698,96.3362946,133.6411015,,,,8.1,,,,,1,,,,,0.126984127,1960,15435,0.110099845,0.143868409,0.083251069,0.068886477,0.097615662,0.041788144,0.031452864,0.052123424,0.011661808,0.005414332,0.017909284,0.851893242,12959,15212,0.825781412,0.878005072,0.861711322,0.812423623,0.910999022,,,,,,,,,,0.802823315,0.782997173,0.822649457,0.347,,15212,0.314566093,0.379433907,71.59829553,,,70.71136148,72.48522959,92.27241692,84.20991346,100.3349204,,,,,,,79.11911876,69.85803133,88.38020619,71.2304153,70.1211641,72.3396665,,,,663.8886317,995,113022,620.3877894,707.389474,300.52201,239.0140729,373.0270537,,,,,,,,,,675.8677818,622.1314716,729.6040919,,,,61.83409437,26,42048,40.39208337,90.60127493,,,,,,,,,,,,,58.0439199,29.99214041,101.391047,,,,8.257403189,29,3512,5.530112511,11.85900838,,,,,,,,,,,,,,,,,,,,,,0.155,,,0.135,0.177,0.211,,,0.184,0.24,0.135,,,0.116,0.155,146.5,48,32774,,,0.162,6440,,,,0.10162477,4307.97564,42391,,,29.36019247,36,122615,20.56351786,40.6468821,,,,,,,,,,,,,23.91263916,14.17214547,37.79227923,,,,0.362,,,0.35,0.373,0.250011141,5610,22439,0.221415397,0.278606886,0.075773521,720,9502,0.055518202,0.096028841,0.000504197,20,39667,,,1983.35,0.848823529,432.9,510,,,0.122840691,256,2084,0.080498591,0.165182791,3.076513218,,,,,,,,3.135545127,3.020179961,3.167029497,,,,,,,,2.874114136,3.151599529,0.067886681,,,,,-9969.168455,,,,,0.775855553,36954,47630,0.704980874,0.846730232,47450,,,42302.76596,52597.23404,48155,43076.87234,53233.12766,42938,17774.93617,68101.06383,57188,35651.82979,78724.17021,48449,41644.40426,55253.59575,46979,43028.02128,50929.97872,,,,,,0.715472204,5341,7465,,,53.67662036,,,,,0.313972603,,47450,,,25.73099415,66,2565,,,7.304525675,21,287493,4.521616521,11.16574342,,,,,,,,,,,,,9.486871844,5.526452451,15.18940083,,,,17.07052523,35,205046,11.7505641,23.97336417,17.06934054,,,,,,,,,,,,,18.11078133,11.06253574,27.97063288,,,,14.63086332,30,205046,9.871382042,20.88646713,,,,,,,,,,,,,18.11465791,11.48313922,27.18088108,,,,18.08739691,52,287493,13.50853315,23.71921464,,,,,,,,,,,,,17.85764112,12.21461331,25.20966103,,,,,,,,,,,0.490234188,15386,31385,,,0.456,,,,,26.30093398,,,,,0.716377005,10717,14960,0.693264898,0.739489113,0.097121792,1370,14106,0.08156652,0.112677064,0.77052139,11527,14960,0.75050521,0.790537571,39667,,,,,0.23661986,9386,39667,,,0.186376585,7393,39667,,,0.018251948,724,39667,,,0.234350972,9296,39667,,,0.009352863,371,39667,,,0.001310913,52,39667,,,0.054579373,2165,39667,,,0.608490685,24137,39667,,,0.004208028,156,37072,0.001407246,0.007008809,0.502155444,19919,39667,,,0.808737048,31768,39281,, -40,137,40137,OK,Stephens County,2024,1,10686.21689,880,117980,9543.023817,11829.40996,0,10123.13424,6266.379644,15474.28601,1,,,,2,15943.65013,8489.322212,27264.12729,1,6218.46413,3554.389546,10098.39616,1,10968.25789,9642.941767,12293.57401,,,,,2,,0.202,,,0.172,0.235,4.213679249,,,3.391469082,5.140845638,5.490205618,,,4.488555322,6.5496779,0.095182821,328,3446,0.085384354,0.104981288,0,0.095477387,0.054646435,0.136308339,,,,0.153846154,0.066132464,0.241559844,0.098550725,0.067098811,0.130002639,0.090384615,0.079362992,0.101406238,,,,0.123222749,0.078871595,0.167573903,0.204,,,0.167,0.247,0.41,,,0.341,0.482,6.9,0.08550608,0.143,,,0.315,,,0.268,0.369,0.692377707,29667,42848,,,0.123669672,,,0.098117817,0.152912185,0.117647059,4,34,0.046286669,0.215559787,428.9,185,43129,,,32.71375465,308,9415,29.06023788,36.36727142,33.61344538,20.53196569,51.91324017,,,,,,,35.1758794,25.35167984,47.54757017,31.58362989,27.34204356,35.82521623,,,,43.61370717,28.98099168,63.03395007,0.186208105,6378,34252,0.165952786,0.206463424,0.000394166,17,43129,,,2537,0.000571952,25,43710,,,1748.4,0.001235415,54,43710,,,809.4444444,3550,,,,,2825,,9940,2893,3380,0.42,,,,,0.19,,0.38,0.17,0.43,0.3,,,,,0.39,0.36,0.35,0.16,0.3,0.886837881,26520,29904,0.874646308,0.899029455,0.472068146,4766,10096,0.433319216,0.510817076,0.032091959,617,19226,,,0.256,2479,,0.188085106,0.323914894,0.126838235,0.055593368,0.198083103,,,,0.177777778,0,0.455989458,0.284540702,0.190586436,0.378494968,0.232100592,0.186703163,0.277498021,4.552082467,109514,24058,4.107695142,4.996469793,0.227328058,2241,9858,0.184692569,0.269963548,15.53479098,67,43129,,,107.885854,233,215969,94.0328929,121.7388151,,,,,,,,,,,,,118.3770104,102.0924732,134.6615476,,,,8.8,,,,,1,,,,,0.104185486,1730,16605,0.088443361,0.119927611,0.0805307,0.066367704,0.094693697,0.016260163,0.010838884,0.021681441,0.014152364,0.00765726,0.020647467,0.820632992,14183,17283,0.797042687,0.844223298,0.850107066,0.694252228,1,,,,,,,0.859899929,0.815506897,0.90429296,0.819712252,0.797566062,0.841858442,0.25,,17283,0.218702135,0.281297865,74.00675116,,,73.16134755,74.85215477,75.6225933,72.1862982,79.0588884,,,,,,,84.55666918,74.77576801,94.33757035,73.59934759,72.64712818,74.551567,,,,532.4064236,880,117980,494.7804636,570.0323836,453.4640797,310.1690948,640.1559793,,,,797.0840346,499.5283208,1206.794807,315.2196597,201.9671838,469.0218671,547.9718859,505.9550477,589.9887241,,,,75.88125733,33,43489,52.23316603,106.5654976,,,,,,,,,,,,,95.42612702,63.90837492,137.0478363,,,,10.81696556,38,3513,7.654728621,14.84713035,,,,,,,,,,,,,11.28243701,7.61221287,16.10638037,,,,,,,0.13,,,0.113,0.151,0.188,,,0.164,0.216,0.113,,,0.096,0.13,80.1,29,36203,,,0.143,6160,,,,0.08550608,3851.877895,45048,,,13.14040132,17,129372,7.65476801,21.03905545,,,,,,,,,,,,,14.66161004,8.205991841,24.18209609,,,,0.361,,,0.346,0.376,0.228780628,5593,24447,0.202567862,0.254993393,0.083534758,864,10343,0.06089646,0.106173056,0.001098147,48,43710,,,910.625,0.875931559,460.74,526,,,0.131775701,282,2140,0.068267275,0.195284127,2.968471027,,,,,,,,2.588164121,3.095874869,2.978724989,,,,,,,,2.550313517,3.123894343,0.049251474,,,,,-1208.170063,,,,,0.65991744,38687,58624,0.601413551,0.718421329,55309,,,49928.23404,60689.76596,57650,32908.7234,82391.2766,,,,51058,22674.34043,79441.65957,45875,34812.02128,56937.97872,57638,53347.44681,61928.55319,,,,,,0.541587902,4011,7406,,,51.26625997,,,,,0.277188161,,55309,,,18.37060703,46,2504,,,3.610819328,11,304640,1.802507999,6.460753189,,,,,,,,,,,,,,,,,,,20.29379008,43,215969,14.43086859,27.7422791,19.9102649,,,,,,,,,,,,,19.73557853,13.4093681,28.01307838,,,,16.20602957,35,215969,11.28809339,22.53866405,,,,,,,,,,,,,16.91100148,11.3255631,24.28701902,,,,19.03886555,58,304640,14.45700882,24.61214868,,,,,,,,,,,,,18.52499846,13.51226099,24.78790544,,,,,,,,,,,0.582604708,19057,32710,,,0.574,,,,,29.49761038,,,,,0.747181776,12726,17032,0.729821615,0.764541936,0.104123904,1674,16077,0.087184448,0.12106336,0.821277595,13988,17032,0.803451871,0.83910332,43710,,,,,0.225554793,9859,43710,,,0.207069321,9051,43710,,,0.020475864,895,43710,,,0.061702128,2697,43710,,,0.008053077,352,43710,,,0.000549073,24,43710,,,0.087417067,3821,43710,,,0.781354381,34153,43710,,,0.008104922,330,40716,0.004378358,0.011831486,0.509563029,22273,43710,,,0.524995332,22495,42848,, -40,139,40139,OK,Texas County,2024,1,8327.559637,263,58015,6952.45068,9702.668594,0,,,,2,,,,2,,,,2,5415.698643,3950.247753,7246.630879,,11727.60743,8852.441319,14602.77354,,,,,2,,0.243,,,0.207,0.28,4.242810787,,,3.345154658,5.137357586,4.722684523,,,3.741905744,5.691014891,0.065733673,155,2358,0.05573106,0.075736286,0,,,,,,,,,,0.063013699,0.050549518,0.07547788,0.081566069,0.05989878,0.103233357,,,,,,,0.184,,,0.148,0.219,0.452,,,0.373,0.524,6.9,0.127109649,0.123,,,0.374,,,0.317,0.432,0.698653199,14940,21384,,,0.132713787,,,0.103911172,0.162905124,0.142857143,3,21,0.047592613,0.273117554,402.6,84,20865,,,42.23433243,217,5138,36.61490795,47.8537569,,,,,,,,,,59.25925926,50.50426318,68.01425534,17.67955801,12.09280459,24.95826082,,,,,,,0.251226804,4454,17729,0.223822548,0.278631059,0.000383417,8,20865,,,2608.125,0.000341547,7,20495,,,2927.857143,0.001756526,36,20495,,,569.3055556,1721,,,,,,,,583,1515,0.18,,,,,,,,0.1,0.19,0.34,,,,,,,,0.27,0.35,0.75386271,9807,13009,0.710711432,0.797013989,0.493492408,2730,5532,0.400372464,0.586612351,0.017936468,214,11931,,,0.148,845,,0.092,0.204,0.04137931,0,0.21230377,,,,,,,0.395779869,0.277733454,0.513826284,0.043088976,0.016581653,0.069596299,4.467535923,100734,22548,3.348447597,5.58662425,0.237127146,1423,6001,0.145562504,0.328691787,12.9403307,27,20865,,,76.32093934,78,102200,60.32853543,95.25198635,,,,,,,,,,54.32057496,35.48400304,79.59222815,101.1895393,73.80834429,135.3995649,,,,6.2,,,,,0,,,,,0.13683432,925,6760,0.097722885,0.175945754,0.094196429,0.059064078,0.129328779,0.040680473,0.019669679,0.061691268,0.01183432,0.000742054,0.022926585,0.793058999,7998,10085,0.756708746,0.829409251,,,,,,,,,,0.778587197,0.701675426,0.855498967,0.839124227,0.796811391,0.881437062,0.147,,10085,0.101317608,0.192682392,75.524477,,,74.36287284,76.68608117,,,,,,,,,,78.97090445,76.28589777,81.65591112,73.05197662,71.07831801,75.02563523,,,,426.9271452,263,58015,374.6720869,479.1822035,,,,,,,,,,280.3080051,208.0500043,369.5511597,553.6927724,467.5065841,639.8789607,,,,58.23659588,15,25757,32.59458063,96.05240856,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.137,,,0.117,0.157,0.17,,,0.147,0.193,0.138,,,0.118,0.158,66.5,11,16536,,,0.123,2630,,,,0.127109649,2623.543161,20640,,,,,,,,,,,,,,,,,,,,,,,,,,0.336,,,0.323,0.35,0.303525078,3625,11943,0.268971886,0.338078269,0.147543686,895,6066,0.104650069,0.190437303,0.000439132,9,20495,,,2277.222222,0.725796703,264.19,364,,,,,,,,2.634854997,,,,,,,,2.541337184,2.996417229,2.596088854,,,,,,,,2.53024642,2.911709448,0.09426578,,,,,-6550.8116,,,,,0.769364882,33979,44165,0.675056943,0.86367282,60719,,,53410.40426,68027.59575,103418,50408.6383,156427.3617,,,,54832,28116.42553,81547.57447,44130,26177.82979,62082.17021,63194,50355.70213,76032.29787,,,,,,0.575724077,2604,4523,,,67.44426459,,,,,0.269470841,,60719,,,7.441327991,13,1747,,,6.906697425,10,144787,3.312029876,12.70166247,,,,,,,,,,,,,,,,,,,12.25859895,13,102200,6.527187655,20.96257754,12.72015656,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,26.24545021,38,144787,18.57284262,36.02393096,,,,,,,,,,23.7497959,13.57506042,38.56818061,32.9122653,20.37321096,50.30989364,,,,,,,,,,,0.520113048,5521,10615,,,0.49,,,,,51.78095286,,,,,0.6802622,4670,6865,0.637349109,0.72317529,0.131627907,849,6450,0.08707842,0.176177394,0.872396213,5989,6865,0.820349243,0.924443183,20495,,,,,0.283288607,5806,20495,,,0.12686021,2600,20495,,,0.04493779,921,20495,,,0.017321298,355,20495,,,0.032983655,676,20495,,,0.004928031,101,20495,,,0.490314711,10049,20495,,,0.413515492,8475,20495,,,0.090335488,1761,19494,0.065373942,0.115297033,0.471188095,9657,20495,,,0.414702581,8868,21384,, -40,141,40141,OK,Tillman County,2024,1,10817.74619,170,19640,8261.260962,13374.23142,0,,,,2,,,,2,26631.35296,12177.55039,50554.60344,1,8070.617185,4859.038754,12603.26846,1,10022.18097,6665.748382,13378.61356,,,,,2,,0.237,,,0.203,0.273,4.513322791,,,3.566221055,5.530135324,5.607648828,,,4.423689046,6.849340565,0.069902913,36,515,0.047880534,0.091925292,0,,,,,,,,,,,,,0.092664093,0.057350169,0.127978017,,,,,,,0.209,,,0.168,0.25,0.421,,,0.337,0.505,5.9,0.176914414,0.146,,,0.35,,,0.293,0.41,0.531285878,3702,6968,,,0.12850324,,,0.100621503,0.161472251,0,0,6,0,0.28246769,282.6,20,7076,,,32.46339911,51,1571,24.17113293,42.68337452,,,,,,,,,,42.34527687,27.66134074,62.04564183,18.75901876,9.988387433,32.07849339,,,,,,,0.201310521,1106,5494,0.176289244,0.226331797,0.000141323,1,7076,,,7076,0.000143328,1,6977,,,6977,0.002293249,16,6977,,,436.0625,3898,,,,,18246,,,,4049,0.3,,,,,,,0.46,0.29,0.31,0.29,,,,,0.47,,0.28,0.3,0.29,0.795347845,3727,4686,0.759938841,0.830756849,0.506493507,741,1463,0.411431462,0.601555551,0.033299354,98,2943,,,0.306,495,,0.198765957,0.413234043,0.454545455,0.280409498,0.628681411,,,,0.43220339,0.152405929,0.71200085,0.433697348,0.333724483,0.533670213,0.064649244,0.021390966,0.107907521,4.4496343,88214,19825,3.386833918,5.512434683,0.253759399,405,1596,0.174994565,0.332524232,11.3058225,8,7076,,,96.32320564,35,36336,67.09264202,133.9622616,,,,,,,,,,,,,127.9863481,84.34380988,186.213417,,,,8,,,,,1,,,,,0.128801431,360,2795,0.091237458,0.166365404,0.078216374,0.042283256,0.114149492,0.041144902,0.018192629,0.064097175,0.030411449,0.006085865,0.054737033,0.785898856,2129,2709,0.753487589,0.818310123,,,,,,,,,,,,,0.7830033,0.723694409,0.842312192,0.328,,2709,0.255887819,0.400112181,73.19335879,,,71.2699434,75.11677417,,,,,,,,,,74.80864125,71.27408375,78.34319874,73.54278021,70.99225201,76.09330842,,,,602.1180491,170,19640,506.487061,697.7490372,,,,,,,1168.224036,692.3636017,1846.297628,501.5500873,333.2763906,724.879521,582.7641925,465.2438081,700.284577,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.141,,,0.12,0.163,0.185,,,0.159,0.212,0.128,,,0.109,0.149,84.6,5,5908,,,0.146,1030,,,,0.176914414,1413.899996,7992,,,,,,,,,,,,,,,,,,,,,,,,,,0.368,,,0.355,0.381,0.24864306,962,3869,0.216472848,0.280813273,0.090750436,156,1719,0.063346181,0.118154692,0.00071664,5,6977,,,1395.4,0.938315217,86.325,92,,,,,,,,2.88697078,,,,,,,,2.590893247,3.188531321,2.841175469,,,,,,,,2.781351863,3.002243895,0.023171953,,,,,-12702.79267,,,,,0.793372894,35029,44152,0.6219652,0.964780587,44333,,,38280.23404,50385.76596,40357,19640.57447,61073.42553,,,,35625,13961.34043,57288.65957,38750,15438.51064,62061.48936,47410,42349.74468,52470.25532,,,,,,0.782544379,1058,1352,,,30.65181233,,,,,0.315814405,,44333,,,23.75296912,10,421,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,21.43580949,11,51316,10.70067887,38.35458437,,,,,,,,,,,,,,,,,,,,,,,,,,0.514339981,2708,5265,,,0.458,,,,,0.202673037,,,,,0.731791908,1899,2595,0.694126675,0.76945714,0.125253344,309,2467,0.074836997,0.175669691,0.737572254,1914,2595,0.696353617,0.778790892,6977,,,,,0.242511108,1692,6977,,,0.201519278,1406,6977,,,0.057617887,402,6977,,,0.055037982,384,6977,,,0.005303139,37,6977,,,0.001433281,10,6977,,,0.287229468,2004,6977,,,0.577612154,4030,6977,,,0.03375719,223,6606,0.015667874,0.051846507,0.506664756,3535,6977,,,1,6968,6968,, -40,143,40143,OK,Tulsa County,2024,1,9771.745815,10406,1862593,9504.123224,10039.36841,0,12950.67869,11739.74197,14161.61542,,5284.77972,4264.634289,6304.92515,,17245.57752,16137.5855,18353.56954,,6778.60355,6170.257915,7386.949185,,8788.918869,8458.958826,9118.878912,,23295.85068,14420.49874,35610.18238,1,,0.181,,,0.154,0.206,3.597396378,,,2.912181143,4.355396039,5.2754364,,,4.463149476,6.123886595,0.084551415,5287,62530,0.082370749,0.086732082,0,0.080250784,0.070822773,0.089678795,0.079365079,0.069730703,0.088999456,0.156919954,0.148890541,0.164949367,0.066395112,0.061990629,0.070799595,0.072130191,0.069243159,0.075017223,0.096938776,0.055516362,0.138361189,0.096050804,0.087914889,0.104186719,0.166,,,0.134,0.198,0.363,,,0.319,0.408,7.4,0.087468739,0.12,,,0.274,,,0.233,0.315,0.922164,617185,669279,,,0.141803082,,,0.11700788,0.168785292,0.292553192,110,376,0.266724972,0.318706113,604.3,4066,672858,,,25.03779738,3693,147497,24.23026018,25.84533458,20.2105659,17.50900155,22.91213024,8.064516129,5.787236009,10.94042674,37.64157229,34.80816517,40.4749794,38.29653657,36.03129564,40.5617775,16.1268091,15.20272481,17.05089338,45.45454546,23.48702693,79.39994336,38.76852908,35.28570195,42.25135621,0.16960322,95817,564948,0.160071305,0.179135135,0.001053714,709,672858,,,949.0239774,0.000713065,483,677358,,,1402.397516,0.004789196,3244,677358,,,208.8033292,2900,,,,,4159,1601,5695,3252,2643,0.45,,,,,0.38,0.3,0.38,0.27,0.46,0.48,,,,,0.39,0.46,0.31,0.31,0.5,0.898984341,395385,439813,0.895704352,0.90226433,0.64515428,118740,184049,0.633355519,0.65695304,0.030250749,9889,326901,,,0.202,33102,,0.179361702,0.224638298,0.189862259,0.159637665,0.220086853,0.221113521,0.180135195,0.262091848,0.373892371,0.345470548,0.402314194,0.287950185,0.269038539,0.306861831,0.113006993,0.102164978,0.123849008,4.627355666,131366,28389,4.515865268,4.738846064,0.26987752,44906,166394,0.256812998,0.282942041,11.33968832,763,672858,,,89.57387556,2935,3276625,86.33321619,92.81453492,102.0793,88.03675789,116.1218422,34.94853828,24.96774813,47.58998983,126.5886431,114.5956128,138.5816734,41.28326743,35.2522042,47.31433066,97.4468817,93.12056709,101.7731963,,,,9.4,,,,,0,,,,,0.142629278,36215,253910,0.137113242,0.148145314,0.113158105,0.107939008,0.118377202,0.029065417,0.026771098,0.031359736,0.008959868,0.007609579,0.010310156,0.785399836,249948,318243,0.780180593,0.790619079,0.833613669,0.814414329,0.852813009,0.741815003,0.713860566,0.769769441,0.761135058,0.746026186,0.776243929,0.741761702,0.727121484,0.756401919,0.826702654,0.819345668,0.834059641,0.185,,318243,0.178155415,0.191844585,75.15393413,,,74.93483781,75.37303045,71.7135322,70.81794118,72.60912323,82.74803978,80.73149667,84.76458288,68.59050751,67.8617439,69.31927112,81.07451521,79.71408359,82.43494684,76.00764742,75.7420613,76.27323354,,,,477.4658328,10406,1862593,468.0753346,486.8563311,607.9789003,562.7887592,653.1690415,237.3734818,197.742352,277.0046117,779.1038492,739.7876683,818.42003,319.5100369,290.5118355,348.5082382,446.6458055,435.5895678,457.7020432,1259.18714,758.1129137,1966.376697,64.02269494,464,724743,58.19722411,69.84816578,59.65482484,39.95177244,85.67427939,65.86651054,39.03666855,104.0974834,132.9029808,108.2890043,157.5169573,68.74202102,55.59329372,81.89074831,47.56443814,40.26239087,54.86648541,,,,7.297089028,464,63587,6.633121674,7.961056381,,,,,,,17.32887734,14.45834475,20.19940992,7.578947368,6.094368685,9.315813035,5.049717902,4.272101018,5.827334785,,,,6.760787433,4.682041834,9.447522787,0.116,,,0.098,0.133,0.175,,,0.152,0.198,0.11,,,0.095,0.127,315.8,1744,552319,,,0.12,79660,,,,0.087468739,52778.8993,603403,,,24.62160677,488,1981999,22.43705395,26.8061596,35.40930688,25.62589097,47.696104,,,,35.33551563,27.64786475,44.49923393,7.798429174,4.827350571,11.92072738,27.09419359,24.14847931,30.03990787,,,,0.325,,,0.314,0.337,0.211018609,84127,398671,0.199103716,0.222933503,0.075133162,13090,174224,0.063218268,0.087048056,0.001609193,1090,677358,,,621.4293578,0.821669551,6646.485,8089,,,0.065360922,2366,36199,0.056945194,0.073776649,2.773467036,,,,,,2.930809184,2.269809448,2.320337852,3.158555104,2.755071152,,,,,,3.146083654,2.084604683,2.378588276,3.149947511,0.128953033,,,,,-1956.514679,,,,,0.788188013,45108,57230,0.773850264,0.802525762,63442,,,61739.3617,65144.6383,64082,60320.46809,67843.53192,73659,66247.93617,81070.06383,40684,38569.10638,42798.89362,54412,51978.97872,56845.02128,72964,71479.40426,74448.59575,,,,,,0.529507494,60519,114293,,,49.81656196,,,,,0.309479525,,63442,,,13.63102744,627,45998,,,10.74842607,490,4558807,9.796719855,11.70013228,12.33537714,8.542607258,17.23745314,7.840421292,4.051260092,13.69563814,42.83790518,36.93033878,48.74547159,7.427639597,5.396934302,9.971259471,6.23392982,5.310297852,7.157561787,,,,20.31537483,658,3276625,18.73927174,21.89147791,20.08163888,22.4406549,16.1732502,30.3332463,9.268049338,4.626576837,16.58310037,13.27313695,9.605835025,17.87882837,12.25266852,8.867316964,16.50426409,23.25434497,21.10024038,25.40844956,,,,20.02060047,656,3276625,18.48852115,21.55267979,20.61700148,14.79511622,27.96929051,12.2319884,6.687341881,20.52319807,46.13978581,38.89927266,53.38029895,10.32081686,7.528074637,13.81006498,18.44940962,16.56695133,20.33186791,,,,13.4245648,612,4558807,12.3609593,14.48817031,20.67989696,15.66275201,26.79320517,,,,18.44998887,14.77768475,22.7579931,11.31026939,8.765303423,14.36364232,12.75283929,11.43178263,14.07389595,,,,,,,,,,,0.589005213,266678,452760,,,0.658,,,,,142.9660779,,,,,0.598862639,158277,264296,0.592946142,0.604779136,0.123673999,31618,255656,0.118743403,0.128604596,0.894164119,236324,264296,0.890621991,0.897706248,677358,,,,,0.246628814,167056,677358,,,0.154299499,104516,677358,,,0.103639434,70201,677358,,,0.071418659,48376,677358,,,0.039955238,27064,677358,,,0.002180531,1477,677358,,,0.141921997,96132,677358,,,0.593039427,401700,677358,,,0.030762005,19191,623854,,,0.508401761,344370,677358,,,0.051329864,34354,669279,, -40,145,40145,OK,Wagoner County,2024,1,8273.80368,1255,231610,7588.342445,8959.264915,0,10045.55099,7672.116295,12418.98568,,,,,2,7716.249683,4318.726372,12726.7804,1,5073.3425,3140.478969,7755.142929,1,8457.227207,7638.75385,9275.700564,,,,,2,,0.173,,,0.147,0.202,3.865728337,,,3.089908241,4.77244487,5.800022259,,,4.788115223,6.894059024,0.077295466,479,6197,0.0706462,0.083944731,0,0.072307692,0.052396667,0.092218718,0.079096045,0.039335348,0.118856743,0.121076233,0.078259977,0.16389249,0.071290944,0.049153401,0.093428487,0.074111167,0.065987104,0.08223523,,,,0.0912,0.068629164,0.113770836,0.18,,,0.146,0.219,0.41,,,0.342,0.482,7.5,0.101895405,0.107,,,0.263,,,0.218,0.315,0.336288759,27233,80981,,,0.142095324,,,0.112257652,0.17428671,0.25,14,56,0.180936287,0.323011669,303.4,255,84050,,,17.41391983,308,17687,15.46910949,19.35873016,16.06765328,11.37042776,22.05410948,,,,17.51824818,9.051934465,30.60085409,12.38556812,7.851387742,18.58443344,17.30860675,14.79392814,19.82328537,,,,27.57544225,20.65589851,36.0693574,0.154421261,10761,69686,0.138931899,0.169910623,0.000273647,23,84050,,,3654.347826,0.000173122,15,86644,,,5776.266667,0.001384978,120,86644,,,722.0333333,4489,,,,,5812,,4141,,4242,0.38,,,,,0.43,,0.41,,0.37,0.4,,,,,0.37,,0.31,,0.41,0.915901135,51546,56279,0.907870713,0.923931558,0.633942197,13709,21625,0.600879622,0.667004771,0.030105279,1181,39229,,,0.125,2473,,0.08806383,0.16193617,0.177592955,0.110967731,0.244218179,0.048736462,0,0.161113026,0.265861027,0.142573459,0.389148595,0.3,0.236042516,0.363957484,0.098448417,0.075932374,0.120964459,3.707240467,134558,36296,3.504297364,3.91018357,0.208918503,4076,19510,0.182546111,0.235290896,3.807257585,32,84050,,,76.65263825,312,407031,68.14702011,85.1582564,73.53662124,49.61484955,104.9780993,,,,75.9511151,37.91452301,135.8975248,50.73934474,27.73967192,85.13199885,84.15810596,73.55472558,94.76148633,,,,9.8,,,,,1,,,,,0.11084826,3280,29590,0.097563502,0.124133018,0.0783407,0.065618784,0.091062617,0.030077729,0.02406939,0.036086068,0.005576208,0.003349522,0.007802894,0.822141513,31465,38272,0.811480892,0.832802135,0.797831633,0.726139733,0.869523532,,,,0.795819936,0.680257348,0.911382524,0.786885246,0.705709666,0.868060826,0.682716049,0.649104922,0.716327176,0.387,,38272,0.363865461,0.410134539,77.44307621,,,76.78938541,78.09676701,75.04128604,72.8648362,77.21773588,,,,79.00047444,74.55257835,83.44837053,93.00205164,73.68202144,112.3220819,77.29431352,76.55990276,78.02872428,,,,420.2100075,1255,231610,396.1244109,444.2956041,479.5900492,392.4270291,566.7530692,,,,377.4627112,267.1150799,518.097062,236.3444898,154.3880675,346.2994375,434.4104118,406.0533325,462.7674912,,,,52.51610494,45,85688,38.30560731,70.27068026,96.54373431,46.29647322,177.5473648,,,,,,,,,,37.256363,22.43076427,58.18042584,,,,4.090314136,25,6112,2.647035643,6.038110553,,,,,,,,,,,,,,,,,,,,,,0.116,,,0.099,0.133,0.177,,,0.155,0.203,0.1,,,0.085,0.118,68.4,48,70199,,,0.107,8600,,,,0.101895405,7447.02567,73085,,,19.33425708,48,248264,14.2555549,25.63441989,,,,,,,,,,,,,22.96778194,16.40852015,31.27560016,,,,0.352,,,0.339,0.367,0.185054804,9252,49996,0.164799485,0.205310124,0.079789291,1651,20692,0.060725461,0.09885312,0.000334703,29,86644,,,2987.724138,0.90825,417.795,460,,,0.080280983,320,3986,0.054813549,0.105748418,3.032000218,,,,,,3.075056322,2.650164141,2.784221125,3.104070658,3.064200602,,,,,,3.001663791,2.612299473,2.880949333,3.192146083,0.072854197,,,,,-2246.16794,,,,,0.743523572,45233,60836,0.706747328,0.780299815,73851,,,68598.91489,79103.08511,67000,52189.78723,81810.21277,98684,88906.6383,108461.3617,65446,55531.61702,75360.38298,53963,48345.12766,59580.87234,78168,75602.7234,80733.2766,,,,,,0.436845286,4337,9928,,,38.79928602,,,,,0.252332399,,73851,,,8.755071535,41,4683,,,5.166862948,29,561269,3.460329207,7.420477069,,,,,,,,,,,,,5.266167133,3.259840456,8.049895864,,,,20.25702279,83,407031,16.03767571,25.24629447,20.39156723,,,,,,,,,,,,,22.67755437,17.3867509,29.07160124,,,,16.4606627,67,407031,12.7567875,20.90445977,,,,,,,,,,,,,19.12684226,14.40895518,24.89621427,,,,14.96608578,84,561269,11.93753614,18.52903256,23.19233583,12.34894206,39.65960059,,,,,,,,,,14.54465208,11.04436412,18.80233561,,,,,,,,,,,0.596572972,35338,59235,,,0.664,,,,,34.55714363,,,,,0.801136741,24103,30086,0.788012533,0.81426095,0.081009206,2376,29330,0.069724625,0.092293786,0.898956325,27046,30086,0.885962237,0.911950414,86644,,,,,0.232491575,20144,86644,,,0.172868289,14978,86644,,,0.037244356,3227,86644,,,0.104346521,9041,86644,,,0.021536402,1866,86644,,,0.000923318,80,86644,,,0.082533124,7151,86644,,,0.687341305,59554,86644,,,0.011963633,929,77652,,,0.499826878,43307,86644,,,0.363949568,29473,80981,, -40,147,40147,OK,Washington County,2024,1,9970.53168,973,142240,9005.938866,10935.12449,0,9428.265399,6823.282419,12699.81162,,,,,2,14221.488,7099.31557,25446.17041,1,6047.420589,3306.18111,10146.54417,1,10327.78122,9131.528877,11524.03357,,,,,2,,0.192,,,0.165,0.223,4.106772398,,,3.260433574,5.032180484,5.580482198,,,4.526124175,6.687086034,0.072294887,304,4205,0.064467229,0.080122545,0,0.05785124,0.033834236,0.081868244,0.082644628,0.033583277,0.131705979,,,,0.104477612,0.067855911,0.141099313,0.072110286,0.062578235,0.081642338,,,,0.065217391,0.044619462,0.08581532,0.194,,,0.156,0.233,0.416,,,0.341,0.493,6.9,0.126653824,0.125,,,0.301,,,0.25,0.354,0.688971499,36140,52455,,,0.131080788,,,0.103637837,0.162692634,0.24,6,25,0.136098495,0.353867991,331.6,175,52772,,,22.66751292,250,11029,19.85761891,25.47740693,18.02361715,12.07069928,25.88492072,,,,,,,13.10861423,7.166601382,21.99402727,20.92478783,17.49514325,24.35443241,,,,55.14018692,41.97526507,71.1268237,0.166551056,6963,41807,0.148678716,0.184423397,0.000435837,23,52772,,,2294.434783,0.000563465,30,53242,,,1774.733333,0.003362007,179,53242,,,297.4413408,1940,,,,,2589,,7427,,1795,0.38,,,,,0.29,0.53,0.3,0.33,0.39,0.48,,,,,0.52,0.4,0.35,0.3,0.48,0.914822079,32650,35690,0.902988795,0.926655364,0.601179095,7546,12552,0.554505753,0.647852437,0.03281836,735,22396,,,0.184,2288,,0.128,0.24,0.253547193,0.137490513,0.369603873,0.156862745,0,0.370133824,0.213768116,0,0.526714974,0.159902597,0.083174751,0.236630444,0.192950683,0.142425432,0.243475934,4.961034901,126938,25587,4.563402003,5.358667798,0.215934594,2694,12476,0.178305096,0.253564093,13.45410445,71,52772,,,82.98245075,216,260296,71.91581915,94.04908234,85.32106688,54.08623748,128.0234926,,,,,,,,,,93.88869922,80.01753032,107.7598681,,,,9.1,,,,,1,,,,,0.109447853,2230,20375,0.092811952,0.126083754,0.082808236,0.068291004,0.097325469,0.013202454,0.007643954,0.018760954,0.02208589,0.014664726,0.029507053,0.791135371,18117,22900,0.772807757,0.809462986,0.745401743,0.692555591,0.798247894,0.554671968,0.429225447,0.68011849,,,,0.761607762,0.697307139,0.825908384,0.805606561,0.777259614,0.833953509,0.246,,22900,0.217058824,0.274941176,74.99233566,,,74.21998995,75.76468137,78.25761688,74.86995017,81.6452836,,,,,,,82.39006008,76.60982408,88.17029608,74.62259931,73.70387584,75.54132279,,,,518.4189025,973,142240,484.1621811,552.675624,427.2492445,329.7419469,544.5642348,,,,646.3429888,418.2791032,954.1297542,277.2467337,166.9206447,432.9551178,535.7523511,495.6669613,575.8377409,,,,49.41434846,27,54640,32.56436701,71.89528266,,,,,,,,,,,,,48.72403922,27.84999834,79.12478713,,,,5.350081414,23,4299,3.391492681,8.027748987,,,,,,,,,,,,,,,,,,,,,,0.124,,,0.106,0.144,0.18,,,0.156,0.206,0.112,,,0.095,0.13,116.5,51,43759,,,0.125,6570,,,,0.126653824,6456.305332,50976,,,17.25008146,27,156521,11.36791238,25.09796286,,,,,,,,,,,,,17.86320359,10.91130882,27.58826915,,,,0.333,,,0.319,0.347,0.204494996,5987,29277,0.180665209,0.228324783,0.081294636,1070,13162,0.059847828,0.102741445,0.001220841,65,53242,,,819.1076923,0.76609456,591.425,772,,,0.132321041,366,2766,0.077717292,0.186924791,3.034577411,,,,,,,2.734554395,2.914451957,3.107319597,3.007070107,,,,,,,2.462338999,2.87291629,3.070717797,0.030702168,,,,,-2433.253775,,,,,0.853268522,44236,51843,0.784611524,0.921925521,61704,,,55350.97872,68057.02128,51964,43039.74468,60888.25532,90500,63863.06383,117136.9362,34784,20137.02128,49430.97872,53056,36196.42553,69915.57447,62974,57506.25532,68441.74468,,,,,,0.395223577,3889,9840,,,41.00542185,,,,,0.274504084,,61704,,,17.26263872,56,3244,,,5.488413958,20,364404,3.352465831,8.476410221,,,,,,,,,,,,,4.925492455,2.62261729,8.422742104,,,,20.13283987,53,260296,14.89438577,26.616682,20.36143467,,,,,,,,,,,,,24.73936017,17.75339198,33.56173554,,,,19.59307865,51,260296,14.58833399,25.76128,,,,,,,,,,,,,23.4721748,17.05491815,31.5102991,,,,11.52566931,42,364404,8.306688657,15.57935664,,,,,,,,,,,,,12.50317315,8.606609091,17.55910374,,,,,,,,,,,0.61312288,23501,38330,,,0.663,,,,,47.32733479,,,,,0.724857871,14790,20404,0.70385862,0.745857122,0.096869583,1900,19614,0.082009628,0.111729538,0.841795726,17176,20404,0.821896663,0.86169479,53242,,,,,0.239172082,12734,53242,,,0.200499606,10675,53242,,,0.023984824,1277,53242,,,0.114646332,6104,53242,,,0.019383194,1032,53242,,,0.001014237,54,53242,,,0.069306187,3690,53242,,,0.708425679,37718,53242,,,0.011272109,557,49414,0.00712889,0.015415328,0.509334736,27118,53242,,,0.248899056,13056,52455,, -40,149,40149,OK,Washita County,2024,1,10461.32048,220,29922,8324.903973,12597.73699,0,,,,2,,,,2,,,,2,,,,2,11036.29713,8556.683565,13515.91069,,,,,2,,0.187,,,0.158,0.217,4.044999514,,,3.227875533,4.940939514,5.442596423,,,4.377287805,6.585406311,0.082549634,79,957,0.06511355,0.099985719,0,,,,,,,,,,,,,0.085447263,0.065427054,0.105467473,,,,,,,0.195,,,0.157,0.235,0.394,,,0.316,0.473,6.5,0.161672804,0.127,,,0.295,,,0.244,0.348,0.331746613,3624,10924,,,0.136934537,,,0.106955164,0.171010282,0.210526316,4,19,0.095274272,0.345173375,247.4,27,10915,,,32.98097252,78,2365,26.07009015,41.16174632,,,,,,,,,,59.40594059,38.06250707,88.39133068,23.57676826,16.91909596,31.98454834,,,,,,,0.180125643,1577,8755,0.157487345,0.20276394,0.000274851,3,10915,,,3638.333333,9.31793E-05,1,10732,,,10732,0.000465896,5,10732,,,2146.4,3098,,,,,,,,,3100,0.28,,,,,,,,,0.29,0.35,,,,,0.11,,,0.38,0.35,0.891152815,6648,7460,0.863597861,0.918707769,0.489443378,1275,2605,0.396820407,0.58206635,0.03024003,160,5291,,,0.263,679,,0.179595745,0.346404255,0.243589744,0.008762875,0.478416612,,,,,,,0.31,0.210584514,0.409415486,0.129083246,0.08054959,0.177616902,4.382339041,120545,27507,3.408968845,5.355709237,0.204012112,539,2642,0.136637022,0.271387202,14.65872652,16,10915,,,131.0950075,72,54922,102.5737695,165.0924658,,,,,,,,,,,,,147.6844402,114.4534127,187.5540186,,,,8.2,,,,,0,,,,,0.102444703,440,4295,0.076842967,0.12804644,0.073477957,0.04907998,0.097875933,0.015133877,0.003078116,0.027189637,0.016298021,0.00366919,0.028926852,0.762845011,3593,4710,0.710641454,0.815048567,,,,,,,,,,,,,0.63176575,0.59061807,0.67291343,0.313,,4710,0.258438113,0.367561887,74.00582062,,,72.36325436,75.64838688,,,,,,,,,,,,,73.55781112,71.70932632,75.40629591,,,,554.7655616,220,29922,476.9638549,632.5672684,,,,,,,,,,,,,573.2993089,487.6185046,658.9801132,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.122,,,0.105,0.141,0.179,,,0.155,0.204,0.103,,,0.087,0.12,67,6,8959,,,0.127,1400,,,,0.161672804,1880.093042,11629,,,,,,,,,,,,,,,,,,,,,,,,,,0.315,,,0.299,0.33,0.220568783,1334,6048,0.190781549,0.250356017,0.092156173,262,2843,0.063560428,0.120751918,0.000186359,2,10732,,,5366,,,,,,,,,,,2.957392774,,,,,,,,,3.052229739,3.150925362,,,,,,,,,3.195264181,0.049695846,,,,,-2945.035875,,,,,0.762998724,41250,54063,0.634631736,0.891365712,54789,,,47799.7234,61778.2766,74167,42231.51064,106102.4894,,,,,,,57619,46737.12766,68500.87234,62607,55217.38298,69996.61702,,,,,,0.593664664,1087,1831,,,50.74180809,,,,,0.287064922,,54789,,,8.658008658,6,693,,,,,,,,,,,,,,,,,,,,,,,,,,23.41700911,12,54922,12.09991032,40.90480233,21.84916791,,,,,,,,,,,,,28.10919489,14.03200881,50.29511421,,,,,,,,,,,,,,,,,,,,,,,,,,,28.19428425,22,78030,17.66920783,42.68648518,,,,,,,,,,,,,29.36403678,17.67906833,45.85558082,,,,,,,,,,,0.58398533,4777,8180,,,0.504,,,,,6.242737637,,,,,0.749629264,3033,4046,0.705235037,0.79402349,0.091673033,360,3927,0.061528723,0.121817343,0.814631735,3296,4046,0.773436543,0.855826927,10732,,,,,0.247297801,2654,10732,,,0.194278792,2085,10732,,,0.010063362,108,10732,,,0.048080507,516,10732,,,0.006708908,72,10732,,,0.00130451,14,10732,,,0.111162877,1193,10732,,,0.808237048,8674,10732,,,0.003698657,38,10274,0,0.010938249,0.498415952,5349,10732,,,1,10924,10924,, -40,151,40151,OK,Woods County,2024,1,9001.037667,141,23882,6842.733242,11159.34209,0,,,,2,,,,2,,,,2,,,,2,9615.714158,7140.031088,12091.39723,,,,,2,,0.17,,,0.14,0.202,3.856550282,,,3.024770733,4.757475052,5.024460702,,,3.985020754,6.127560828,0.073059361,48,657,0.053160084,0.092958637,0,,,,,,,,,,,,,0.068965517,0.047807296,0.090123739,,,,,,,0.172,,,0.134,0.215,0.405,,,0.326,0.484,7.8,0.078094139,0.106,,,0.274,,,0.224,0.328,0.538845084,4647,8624,,,0.152566337,,,0.119578464,0.187668466,0.4,2,5,0.149190828,0.619170557,570.9,49,8583,,,16.56113005,34,2053,11.469064,23.14251929,,,,,,,,,,,,,16.97045883,11.1836393,24.69112662,,,,,,,0.148349019,930,6269,0.126902211,0.169795828,0.000582547,5,8583,,,1716.6,0.00046582,4,8587,,,2146.75,0.004308839,37,8587,,,232.0810811,2039,,,,,,,,,1747,0.44,,,,,,,,,0.44,0.42,,,,,,,,,0.43,0.898677594,4825,5369,0.867503306,0.929851881,0.54428698,1229,2258,0.436672487,0.651901472,0.018731375,88,4698,,,0.164,291,,0.099659575,0.228340426,,,,,,,,,,0.597938144,0.396406938,0.799469351,0.100605144,0.0565832,0.144627088,4.395098625,110295,25095,3.740907208,5.049290042,0.218181818,384,1760,0.123474494,0.312889142,20.97168822,18,8583,,,125.0255734,55,43991,94.18637215,162.7379691,,,,,,,,,,,,,145.712479,109.1486458,190.5955102,,,,7.6,,,,,0,,,,,0.113057325,355,3140,0.073106358,0.153008292,0.084502551,0.047289514,0.121715588,0.001273885,0,0.010668272,0.038216561,0.0141688,0.062264321,0.775717112,3137,4044,0.713304618,0.838129606,,,,,,,,,,,,,0.789115646,0.724919182,0.853312111,0.202,,4044,0.144228122,0.259771878,75.34990661,,,73.59282169,77.10699154,,,,,,,,,,,,,74.70947545,72.82766065,76.59129026,,,,511.0756267,141,23882,422.2018905,599.9493629,,,,,,,,,,,,,536.3706151,439.369843,633.3713871,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.116,,,0.097,0.136,0.168,,,0.145,0.194,0.1,,,0.085,0.118,151.4,11,7268,,,0.106,920,,,,0.078094139,693.3197699,8878,,,,,,,,,,,,,,,,,,,,,,,,,,0.315,,,0.298,0.331,0.173942094,781,4490,0.146537838,0.201346349,0.085346216,159,1863,0.05913345,0.111558982,0.000931641,8,8587,,,1073.375,0.890909091,68.6,77,,,,,,,,3.662145928,,,,,,,,,3.682605294,3.632680917,,,,,,,,,3.731454387,0.018832086,,,,,4922.685,,,,,0.68337059,35156,51445,0.527087369,0.839653811,54020,,,46455.23404,61584.76596,,,,,,,,,,45625,10731.04255,80518.95745,49841,42675.38298,57006.61702,,,,,,0.45712098,597,1306,,,,,,,,0.322676786,,54020,,,15.87301587,8,504,,,,,,,,,,,,,,,,,,,,,,,,,,27.67071318,12,43991,13.81312032,49.51054932,27.27830693,,,,,,,,,,,,,30.76297324,14.75204142,56.57420308,,,,,,,,,,,,,,,,,,,,,,,,,,,25.60163851,16,62496,14.63354847,41.57545699,,,,,,,,,,,,,30.88028101,17.65074876,50.14764171,,,,,,,,,,,0.532657495,3678,6905,,,0.539,,,,,35.18328461,,,,,0.690020606,2344,3397,0.619795742,0.760245471,0.093799682,295,3145,0.053611377,0.133987987,0.820724168,2788,3397,0.759504291,0.881944046,8587,,,,,0.208920461,1794,8587,,,0.176429486,1515,8587,,,0.031792244,273,8587,,,0.035169442,302,8587,,,0.013625248,117,8587,,,0.000582276,5,8587,,,0.076511005,657,8587,,,0.820775591,7048,8587,,,0.010613639,87,8197,0,0.025637868,0.460347036,3953,8587,,,0.403409091,3479,8624,, -40,153,40153,OK,Woodward County,2024,1,9696.808081,326,55784,8130.837633,11262.77853,0,,,,2,,,,2,,,,2,6361.044525,3705.542848,10184.64849,1,11260.43488,9231.555586,13289.31418,,,,,2,,0.196,,,0.163,0.229,4.081523525,,,3.224251237,4.973581285,5.314901564,,,4.279071514,6.380916732,0.082175926,142,1728,0.069226926,0.095124926,0,,,,,,,,,,0.06284153,0.037978994,0.087704066,0.088141026,0.072412006,0.103870046,,,,,,,0.196,,,0.155,0.236,0.433,,,0.356,0.509,7.4,0.068180045,0.131,,,0.32,,,0.264,0.375,0.553102101,11322,20470,,,0.146490509,,,0.116265216,0.180657749,0.368421053,7,19,0.246027076,0.486088994,509.8,103,20205,,,36.06853021,160,4436,30.47965355,41.65740687,,,,,,,,,,41.37931035,28.98156025,57.28640746,35.16819572,28.74047144,41.59591999,,,,,,,0.199404762,3149,15792,0.175574975,0.223234549,0.000296956,6,20205,,,3367.5,0.000550275,11,19990,,,1817.272727,0.004202101,84,19990,,,237.9761905,2379,,,,,,,,,2404,0.41,,,,,,,,0.36,0.42,0.37,,,,,0.1,,,0.26,0.38,0.871627502,12018,13788,0.845426889,0.897828115,0.441856361,2504,5667,0.368859192,0.514853531,0.029449275,254,8625,,,0.192,891,,0.122893617,0.261106383,0.372262774,0,0.756032516,,,,,,,0.527372263,0.438352506,0.616392019,0.146023072,0.063353863,0.228692281,3.987481744,114672,28758,3.445620983,4.529342506,0.236279258,1171,4956,0.147566118,0.324992397,15.34273695,31,20205,,,105.0451397,106,100909,85.0474833,125.0427961,,,,,,,,,,,,,124.1239233,100.8818,151.1164229,,,,7.3,,,,,0,,,,,0.08869908,675,7610,0.059885643,0.117512517,0.068997362,0.041394739,0.096599984,0.013666229,0.004158799,0.023173659,0.007227333,0,0.015158293,0.819636678,7580,9248,0.78293709,0.856336266,,,,,,,,,,0.576373213,0.421800944,0.730945482,0.86186571,0.827474299,0.896257121,0.172,,9248,0.132107342,0.211892658,74.94263725,,,73.70229417,76.18298033,,,,,,,,,,80.35176473,69.6746446,91.02888486,73.80710674,72.34267374,75.27153973,,,,485.3538353,326,55784,431.3609132,539.3467574,,,,,,,,,,426.5683643,252.8114472,674.1619203,523.2323925,461.0837701,585.3810148,,,,84.05715887,18,21414,49.81759961,132.8465502,,,,,,,,,,,,,106.4112796,60.82324058,172.8052514,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.126,,,0.106,0.145,0.177,,,0.152,0.203,0.111,,,0.095,0.128,101.8,17,16693,,,0.131,2700,,,,0.068180045,1369.123474,20081,,,,,,,,,,,,,,,,,,,,,,,,,,0.338,,,0.322,0.353,0.237133193,2594,10939,0.20615447,0.268111917,0.116883117,594,5082,0.084712904,0.14905333,0.0010005,20,19990,,,999.5,0.845184426,206.225,244,,,,,,,,3.076922577,,,,,,,,2.847272359,3.162246397,3.060985128,,,,,,,,2.655842899,3.186748473,0.041821106,,,,,847.3073,,,,,0.630461377,36075,57220,0.49897408,0.761948674,61248,,,58481.3617,64014.6383,87837,40456.23404,135217.766,213451,145270.4043,281631.5957,,,,29036,6612.170213,51459.82979,62803,58750.74468,66855.25532,,,,,,0.465765247,1619,3476,,,,,,,,0.285135841,,61248,,,14.43768997,19,1316,,,,,,,,,,,,,,,,,,,,,,,,,,28.30180663,29,100909,18.80634497,40.90399055,28.73876463,,,,,,,,,,,,,35.48997509,23.38811721,51.63605046,,,,19.81983768,20,100909,12.10647176,30.61013181,,,,,,,,,,,,,23.82176306,14.34225751,37.20063387,,,,20.93773119,30,143282,14.12659931,29.88991318,,,,,,,,,,,,,24.63184193,16.36768008,35.59986975,,,,,,,,,,,0.531580744,7785,14645,,,0.518,,,,,47.93244924,,,,,0.713375796,5712,8007,0.673851121,0.752900472,0.076421492,586,7668,0.044396317,0.108446667,0.8371425,6703,8007,0.797967074,0.876317927,19990,,,,,0.23851926,4768,19990,,,0.170785393,3414,19990,,,0.018109055,362,19990,,,0.037418709,748,19990,,,0.007853927,157,19990,,,0.001050525,21,19990,,,0.148574287,2970,19990,,,0.774887444,15490,19990,,,0.021545863,412,19122,0.008207479,0.034884248,0.469034517,9376,19990,,,0.44025403,9012,20470,, -41,000,41000,OR,Oregon,2024,,6704.518324,54232,11794200,6615.882472,6793.154177,0,12235.20999,11054.41339,13416.00658,,2726.240061,2478.483551,2973.99657,,11311.13035,10517.33807,12104.92263,,5106.69976,4899.19981,5314.19971,,6941.624289,6834.909039,7048.339539,,11313.89133,9732.423761,12895.35889,,,0.142,,,0.131,0.154,3.309682623,,,3.0589425,3.560422746,5.433718484,,,5.130243559,5.73719341,0.06745216,19785,293319,0.066544507,0.068359812,0,0.075090253,0.065275991,0.084904515,0.080912731,0.07665148,0.085173982,0.108392112,0.101081677,0.115702547,0.069811812,0.067731696,0.071891927,0.063174226,0.06208624,0.064262213,0.080408707,0.06917515,0.091642264,0.074798814,0.070053243,0.079544386,0.127,,,0.116,0.139,0.306,,,0.291,0.322,8.1,0.046660729,0.105,,,0.196,,,0.183,0.21,0.877273405,3717232,4237256,,,0.19609836,,,0.18319374,0.209678659,0.274301456,697,2541,0.264498086,0.284174836,367.3,15596,4246155,,,12.38964675,10461,844334,12.15222069,12.62707282,18.34595224,15.73038778,20.9615167,1.423662248,1.081046433,1.840413592,15.68141402,13.87966291,17.48316513,22.00367829,21.32143603,22.68592055,9.355634161,9.097978566,9.613289755,25.76853526,21.03818414,30.49888639,12.27810651,11.2797184,13.27649462,0.073536659,252038,3427379,0.069962191,0.077111127,0.000939438,3989,4246155,,,1064.466032,0.000849265,3601,4240137,,,1177.488753,0.006771715,28713,4240137,,,147.6730749,1796,,,,,2849,1386,3663,2172,1761,0.41,,,,,0.34,0.33,0.31,0.29,0.42,0.4,,,,,0.34,0.42,0.3,0.27,0.4,0.91554055,2745794,2999096,0.913639484,0.917441615,0.705803388,830197,1176244,0.698937991,0.712668784,0.041711554,90795,2176735,,,0.136,111198,,0.126468085,0.145531915,0.248335015,0.20127904,0.29539099,0.113822461,0.096270018,0.131374904,0.342093808,0.297285146,0.38690247,0.1937453,0.182077297,0.205413303,0.109077374,0.103537802,0.114616945,4.526980447,148408,32783,4.460701978,4.593258917,0.204751106,174709,853275,0.197980873,0.211521339,9.76177271,4145,4246155,,,82.5138667,17360,21038888,81.28640444,83.74132897,116.1589535,102.3288918,129.9890151,27.84141933,24.55077385,31.13206481,100.4956816,90.81505874,110.1763045,40.23912532,37.90630393,42.5719467,94.00642781,92.49341346,95.51944215,45.46090362,32.32714656,62.14655181,7.7,,,,,0.583333333,,,,,0.180389996,296305,1642580,0.177230858,0.183549135,0.145070865,0.142311466,0.147830263,0.032488524,0.03093483,0.034042219,0.015965737,0.01498325,0.016948224,0.670728433,1346323,2007255,0.667702736,0.673754129,0.676390327,0.650197834,0.70258282,0.598820721,0.585182514,0.612458927,0.615825314,0.585914922,0.645735705,0.667865639,0.657244973,0.678486305,0.68673209,0.6835983,0.689865879,0.298,,2007255,0.29253991,0.30346009,78.70610263,,,78.62319699,78.78900827,75.28121137,74.19906717,76.36335557,86.30960196,85.76850194,86.85070198,74.2614351,73.52844473,74.99442548,83.91677852,83.34645537,84.48710167,78.349333,78.25576077,78.44290522,73.50492427,71.91343833,75.09641021,340.4719169,54232,11794200,337.4795324,343.4643013,522.3970886,485.626769,559.1674082,149.436801,139.8873472,158.9862548,559.8741221,529.8095753,589.938669,246.4712097,237.2717762,255.6706431,351.8238596,348.3896019,355.2581173,607.964281,537.1300991,678.7984629,39.27112379,1514,3855250,37.2929408,41.24930678,63.62045852,42.27533266,91.94927619,19.34376285,13.23111947,27.30762149,83.85651709,66.06939775,104.9589356,37.58933249,33.50257371,41.67609128,39.13871774,36.65116438,41.6262711,78.16571131,43.74875525,128.9224537,4.60946392,1381,299601,4.366350098,4.852577743,6.99056274,4.270017332,10.79635718,2.457776657,1.747719466,3.3598616,10.46895167,8.205986939,13.16313498,5.390882302,4.791732077,5.990032527,4.193939757,3.910318605,4.477560909,,,,6.41192271,5.034738432,8.049581796,0.103158616,,,0.09383181,0.113296589,0.177536806,,,0.164936778,0.190879368,0.083,,,0.075,0.092,205.4,7484,3643550,,,0.105,447260,,,,0.046660729,178760.7061,3831074,,,20.37716407,2589,12705399,19.5922289,21.16209924,39.89257499,30.13442244,51.80382684,4.635047915,3.079955678,6.698934757,41.53918663,33.55561199,49.52276128,11.47315282,9.883054967,13.06325068,22.18224332,21.23417006,23.13031659,,,,0.289833436,,,0.274949958,0.305183463,0.086640863,222970,2573497,0.081874905,0.09140682,0.035594267,31945,897476,0.030828309,0.040360224,0.001093597,4637,4240137,,,914.4138452,0.811009884,37250.495,45931,,,0.079823011,16164,202498,0.073076932,0.086569089,2.945119745,,,,,,3.285543502,,2.437354654,3.140590779,2.774926738,,,,,,3.326533303,,2.257136807,2.974054205,0.153731292,,,,,1061.439,,,,,0.82984643,52794,63619,0.816617956,0.843074904,75638,,,74279.70213,76996.29787,60194,55385.14894,65002.85106,100547,97239.42553,103854.5745,56124,51265.10638,60982.89362,66054,64455.02128,67652.97872,78315,77569.12766,79060.87234,,,,,,,,,,,64.52908844,,,,,0.33210317,,,,,8.455994509,,,,,3.309176913,965,29161330,3.100385612,3.517968214,7.093160959,4.49645559,10.64322415,1.420341988,0.85513866,2.218039956,20.8376374,17.0618145,24.61346031,3.922589756,3.298988233,4.546191279,2.769688151,2.549710633,2.989665669,,,,19.22208802,4292,21038888,18.63200445,19.8121716,20.40031774,22.74137734,16.98434833,29.82229079,7.045580103,5.541795694,8.831695668,12.79133037,9.55317734,16.77412798,8.007488356,6.850334187,9.164642526,21.86521878,21.1327982,22.59763937,10.83934277,5.410960856,19.39457835,13.6651709,2875,21038888,13.16565166,14.16469013,15.00207886,10.4494976,20.86426006,2.834762695,1.883679224,4.097021367,24.27431923,19.51655266,29.0320858,7.005761975,6.032376389,7.979147561,15.48602179,14.87192871,16.10011487,,,,12.10850122,3531,29161330,11.70911084,12.50789161,25.90545742,20.66320739,32.07271902,4.48529049,3.422749165,5.77345795,11.22026629,8.621960696,14.35559469,9.135505089,8.183833719,10.08717646,13.13441606,12.65537996,13.61345216,,,,13.71450113,,397900,,,2064,3393,0.763931172,2374321,3108030,,,,,,,,161.9310412,,,,,0.632152546,1062522,1680800,0.627644811,0.636660282,0.153661764,251800,1638664,0.150806941,0.156516586,0.905255831,1521554,1680800,0.902607385,0.907904277,4240137,,,,,0.197396452,836988,4240137,,,0.192370671,815678,4240137,,,0.020436368,86653,4240137,,,0.018901512,80145,4240137,,,0.05121226,217147,4240137,,,0.004880031,20692,4240137,,,0.143753374,609534,4240137,,,0.735432369,3118334,4240137,,,0.026092169,104724,4013618,0.025034541,0.027149798,0.500683115,2122965,4240137,,,0.195001671,826272,4237256,, -41,001,41001,OR,Baker County,2024,1,9494.637883,296,43731,7586.919455,11402.35631,0,,,,2,,,,2,,,,2,,,,2,10113.69327,7993.974821,12233.41172,,,,,2,,0.155,,,0.128,0.185,3.775919021,,,2.916292693,4.772719677,5.565095229,,,4.459869685,6.804308725,0.084025854,91,1083,0.067502816,0.100548893,0,,,,,,,,,,,,,0.086956522,0.068748659,0.105164384,,,,,,,0.166,,,0.131,0.207,0.31,,,0.239,0.391,6.8,0.14506173,0.119,,,0.21,,,0.167,0.259,0.746280298,12439,16668,,,0.158566141,,,0.126045488,0.195711992,0.321428571,9,28,0.221187685,0.422182702,207.8,35,16847,,,19.83975582,52,2621,14.8172786,26.01720021,,,,,,,,,,46.72897196,22.40835839,85.93624319,16.68169522,11.74545292,22.99351945,,,,,,,0.071636333,862,12033,0.05972144,0.083551227,0.000712293,12,16847,,,1403.916667,0.000472311,8,16938,,,2117.25,0.007320817,124,16938,,,136.5967742,476,,,,,,,,,484,0.37,,,,,,,,,0.37,0.28,,,,,,,,0.16,0.28,0.913813935,11345,12415,0.894241099,0.933386771,0.662231876,2439,3683,0.563758554,0.760705199,0.047478144,353,7435,,,0.207,677,,0.129553192,0.284446809,,,,,,,,,,0.056074766,0,0.191984157,0.110436433,0.054818946,0.16605392,4.617584614,110919,24021,3.734033016,5.501136211,0.181081081,603,3330,0.102108648,0.260053514,14.2458598,24,16847,,,137.7359651,112,81315,112.2269074,163.2450228,,,,,,,,,,,,,144.9770909,117.3775079,172.5766738,,,,6.4,,,,,1,,,,,0.140363129,1005,7160,0.109846666,0.170879591,0.123698283,0.092196487,0.155200079,0.015223464,0.005019622,0.025427305,0.019553073,0.006023341,0.033082804,0.716101695,4394,6136,0.662834654,0.769368736,,,,,,,,,,,,,0.721748215,0.673133922,0.770362509,0.168,,6136,0.125941945,0.210058056,76.02982032,,,74.568317,77.49132364,,,,,,,,,,,,,75.31928173,73.74389701,76.89466644,,,,429.3477357,296,43731,373.2178178,485.4776536,,,,,,,,,,,,,454.0999826,393.0845662,515.1153991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.116,,,0.099,0.136,0.183,,,0.158,0.212,0.089,,,0.075,0.106,76.1,11,14457,,,0.119,1970,,,,0.14506173,2340.425943,16134,,,20.30250736,10,49255,9.73584143,37.33703389,,,,,,,,,,,,,,,,,,,0.31,,,0.293,0.328,0.085805934,749,8729,0.070316573,0.101295296,0.034792694,120,3449,0.0228778,0.046707587,0.001239816,21,16938,,,806.5714286,0.78363806,420.03,536,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.023876336,,,,,-119.5565,,,,,0.708475985,42629,60170,0.528803995,0.888147975,54382,,,47626.25532,61137.74468,38918,38517.65957,39318.34043,,,,,,,70700,31149.70213,110250.2979,52140,46124.17021,58155.82979,,,,,,,,,,,61.98087253,,,,,0.354731345,,54382,,,4.678362573,4,855,,,,,,,,,,,,,,,,,,,,,,,,,,38.24905933,30,81315,24.75277448,56.46315689,36.89356207,,,,,,,,,,,,,37.28911441,23.36888948,56.45616735,,,,28.28506426,23,81315,17.93030442,42.44148422,,,,,,,,,,,,,27.35416809,16.70863651,42.24629406,,,,18.52194851,21,113379,11.46537805,28.3127658,,,,,,,,,,,,,18.57246193,11.18183532,29.00319991,,,,40.71428571,,1400,,,17,40,0.778980392,9932,12750,,,0.552,,,,,36.70072494,,,,,0.722158766,5058,7004,0.688829546,0.755487987,0.127568884,838,6569,0.0954067,0.159731069,0.841804683,5896,7004,0.812846358,0.870763008,16938,,,,,0.19671744,3332,16938,,,0.275061991,4659,16938,,,0.007143701,121,16938,,,0.016176644,274,16938,,,0.006730429,114,16938,,,0.002243476,38,16938,,,0.053902468,913,16938,,,0.893257764,15130,16938,,,0.002456538,39,15876,0,0.008853832,0.48618491,8235,16938,,,0.413966883,6900,16668,, -41,003,41003,OR,Benton County,2024,1,4175.029029,709,263816,3654.860401,4695.197658,0,,,,2,,,,2,,,,2,3980.319571,2523.181172,5972.433675,1,4171.644792,3587.988351,4755.301234,,,,,2,,0.125,,,0.104,0.146,3.130134404,,,2.435462984,3.880862449,5.30335479,,,4.34956062,6.293846216,0.057124519,267,4674,0.050471019,0.063778019,0,,,,0.061403509,0.035959879,0.086847139,,,,0.059964727,0.040422028,0.079507426,0.055227407,0.047533383,0.062921432,,,,0.0625,0.030800113,0.094199887,0.124,,,0.095,0.156,0.277,,,0.221,0.339,8.1,0.073827717,0.093,,,0.163,,,0.129,0.199,0.928632964,88391,95184,,,0.178147196,,,0.144779146,0.215536165,0.153846154,6,39,0.079396717,0.24495263,420.8,404,96017,,,3.165611463,95,30010,2.561168713,3.869795856,,,,,,,,,,10.20408163,6.833833616,14.65476335,2.36903272,1.774568073,3.098753126,,,,,,,0.059387616,4428,74561,0.048664211,0.07011102,0.00116646,112,96017,,,857.2946429,0.000676022,66,97630,,,1479.242424,0.013079996,1277,97630,,,76.45262334,1649,,,,,,,,,1692,0.5,,,,,,0.43,,0.22,0.51,0.5,,,,,0.33,0.55,0.27,0.32,0.5,0.959807432,56023,58369,0.951728455,0.967886409,0.827404362,18514,22376,0.779201033,0.875607691,0.035590667,1748,49114,,,0.12,1746,,0.08306383,0.15693617,0.024875622,0,0.212894716,0.376513317,0.194713165,0.558313469,,,,0.193981482,0.105977569,0.281985394,0.120744527,0.084053337,0.157435717,5.738801041,147711,25739,5.06305357,6.414548512,0.156264856,2301,14725,0.117956294,0.194573417,10.93556349,105,96017,,,55.01105593,256,465361,48.27220158,61.74991029,,,,,,,,,,46.75981956,27.23931805,74.86700081,59.41866499,51.58467839,67.25265159,,,,9.2,,,,,1,,,,,0.195700416,7055,36050,0.176104338,0.215296494,0.17643727,0.158450696,0.194423844,0.017059639,0.010628034,0.023491244,0.015256588,0.011008615,0.019504561,0.619642506,28322,45707,0.595307083,0.643977928,,,,0.50964975,0.400134931,0.619164569,,,,0.612610517,0.535243162,0.689977871,0.655347028,0.626952157,0.683741899,0.204,,45707,0.178893761,0.229106239,82.21123442,,,81.6443509,82.77811795,,,,93.10462612,87.08737379,99.12187845,,,,89.90924428,82.60794022,97.21054833,81.86337125,81.26734048,82.45940202,,,,219.5283692,709,263816,202.1854479,236.8712906,,,,,,,,,,158.9801418,99.63200845,240.6978452,223.8540562,204.8308565,242.877256,,,,22.76403283,19,83465,13.70543481,35.54885709,,,,,,,,,,,,,23.07299306,12.61422001,38.7125618,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.097,,,0.082,0.114,0.167,,,0.143,0.193,0.081,,,0.068,0.096,84.1,72,85605,,,0.093,8840,,,,0.073827717,6318.102162,85579,,,10.27243198,29,282309,6.879608917,14.75292585,,,,,,,,,,,,,11.10666844,7.187650206,16.39563361,,,,0.267,,,0.252,0.283,0.068009099,4036,59345,0.054902716,0.081115482,0.028170754,456,16187,0.018638839,0.037702669,0.001403257,137,97630,,,712.6277372,0.866248391,673.075,777,,,0.029220023,251,8590,0.011907382,0.046532665,3.149396834,,,,,,,,2.412044088,3.267650071,2.995790282,,,,,,3.464679521,,2.428978969,3.079269803,0.054851541,,,,,4109.86375,,,,,0.78893587,55975,70950,0.709540204,0.868331537,70117,,,64282.2766,75951.7234,47500,1821.87234,93178.12766,38707,5240.446809,72173.55319,,,,62717,42534.3617,82899.6383,77463,73851.59575,81074.40426,,,,,,,,,,,56.27502457,,,,,0.443444528,,70117,,,13.11914324,49,3735,,,,,,,,,,,,,,,,,,,,,,,,,,13.63767842,67,465361,10.38163268,17.59161154,14.3974248,,,,,,,,,,,,,13.32908382,9.758564592,17.77912992,,,,9.455025239,44,465361,6.870035813,12.69293007,,,,,,,,,,,,,8.6036076,5.88486123,12.14572685,,,,7.784306216,50,642318,5.777662114,10.2626373,,,,,,,,,,,,,8.142375247,5.868307885,11.00612593,,,,9.166666667,,7200,,,33,33,0.737673769,52799,71575,,,0.706,,,,,104.8698111,,,,,0.559823528,21191,37853,0.54537221,0.574274846,0.20347503,7448,36604,0.182616163,0.224333898,0.924761578,35005,37853,0.915679756,0.933843399,97630,,,,,0.151951245,14835,97630,,,0.181091878,17680,97630,,,0.011809895,1153,97630,,,0.010693434,1044,97630,,,0.0662194,6465,97630,,,0.002970398,290,97630,,,0.085629417,8360,97630,,,0.791949196,77318,97630,,,0.016420147,1512,92082,0.011912425,0.020927869,0.497377855,48559,97630,,,0.194055724,18471,95184,, -41,005,41005,OR,Clackamas County,2024,1,5577.97677,4463,1169198,5308.333124,5847.620415,0,5580.158526,2785.595031,9984.445002,1,3124.627558,2232.279738,4254.855884,,8778.335735,5734.300348,12862.29575,,4339.395964,3630.431451,5048.360476,,5745.274034,5436.27316,6054.274908,,,,,2,,0.121,,,0.101,0.145,3.120149904,,,2.515013495,3.813490202,5.071803345,,,4.306340155,5.888992312,0.060209327,1628,27039,0.057373967,0.063044687,0,,,,0.092044707,0.07751613,0.106573285,0.073846154,0.045413336,0.102278971,0.065719361,0.057363107,0.074075614,0.056776105,0.053589119,0.059963091,,,,0.057264051,0.042434217,0.072093885,0.123,,,0.095,0.155,0.316,,,0.271,0.361,9,0.033486455,0.074,,,0.186,,,0.153,0.221,0.91770309,386721,421401,,,0.193244026,,,0.162805928,0.223853259,0.327586207,57,174,0.289533753,0.365845151,271.2,1146,422537,,,7.323789854,617,84246,6.745894286,7.901685421,,,,,,,11.95652174,5.968652573,21.39352012,14.58604954,12.44923299,16.7228661,5.967855333,5.355606556,6.580104109,,,,7.274196807,5.094758015,10.07055455,0.056903625,19654,345391,0.050946178,0.062861072,0.000915896,387,422537,,,1091.826873,0.000883791,374,423177,,,1131.489305,0.003981785,1685,423177,,,251.1436202,1772,,,,,,1216,5357,2559,1731,0.43,,,,,0.35,0.33,0.36,0.25,0.44,0.45,,,,,0.32,0.44,0.37,0.27,0.46,0.943560174,283420,300373,0.939365052,0.947755295,0.742012346,80656,108699,0.718312563,0.765712129,0.038019032,8638,227202,,,0.091,7786,,0.070744681,0.111255319,,,,0.093045796,0.044936804,0.141154788,0.104247104,0,0.226694783,0.11673699,0.086743773,0.146730208,0.065244133,0.053198005,0.07729026,4.164222533,178895,42960,3.956914782,4.371530284,0.159392811,14123,88605,0.143540736,0.175244886,8.472630799,358,422537,,,66.80799802,1397,2091067,63.30462545,70.3113706,,,,26.9179004,17.73906598,39.16413184,55.65862709,28.75962481,97.22442045,35.83039577,27.82370431,45.42356436,73.85973499,69.76679703,77.95267295,,,,10.1,,,,,1,,,,,0.164187535,26160,159330,0.154104017,0.174271054,0.135465337,0.125717367,0.145213306,0.026454528,0.02204345,0.030865606,0.014529593,0.011414841,0.017644344,0.702565596,142370,202643,0.692582101,0.712549091,0.693548387,0.548059102,0.839037672,0.685235776,0.626992477,0.743479076,0.729631315,0.632988363,0.826274268,0.67917847,0.641476896,0.716880044,0.676629631,0.665711049,0.687548213,0.43,,202643,0.414283176,0.445716824,80.22128004,,,79.96084421,80.48171587,88.38351219,77.72318873,99.04383565,85.95475486,84.38601741,87.5234923,78.12440762,74.44945055,81.79936468,85.11420141,83.03864883,87.189754,79.91991707,79.63535531,80.20447884,,,,274.656795,4463,1169198,266.1713399,283.1422501,227.7472432,140.9791331,348.1358538,141.3934368,114.5291378,172.6655867,381.8411779,282.4882055,504.8142872,223.6286019,190.4181708,256.8390329,283.1656623,273.703681,292.6276435,,,,33.27395213,130,390696,27.55404756,38.99385669,,,,,,,,,,24.71096991,13.50971719,41.46080862,34.43538396,27.92477664,42.00824814,,,,4.468989572,123,27523,3.679197342,5.258781803,,,,,,,,,,,,,4.267222986,3.431351199,5.24514152,,,,,,,0.093,,,0.079,0.109,0.16,,,0.139,0.183,0.074,,,0.063,0.086,170.4,615,360954,,,0.074,30920,,,,0.033486455,12590.63898,375992,,,13.78414348,174,1262320,11.73599597,15.83229099,,,,,,,,,,10.23768492,5.28996119,17.88317526,14.95892201,12.58079758,17.33704645,,,,0.287,,,0.273,0.301,0.06641825,16951,255216,0.058077824,0.074758675,0.031500464,2987,94824,0.024351528,0.0386494,0.000701834,297,423177,,,1424.838384,0.894537056,4453.9,4979,,,0.07465995,1482,19850,0.052566441,0.096753459,3.14796527,,,,,,,,2.529418942,3.251151251,2.969262197,,,,,,3.597413984,2.393933911,2.250320196,3.074269778,0.081890691,,,,,2233.61062,,,,,0.76296532,57552,75432,0.7320179,0.79391274,96915,,,91642.65957,102187.3404,86719,46999.51064,126438.4894,113243,101960.7872,124525.2128,75407,48628.2766,102185.7234,82260,72100.17021,92419.82979,96833,94349.93617,99316.06383,,,,,,,,,,,53.06454439,,,,,0.324407986,,96915,,,7.123161765,155,21760,,,2.24088168,65,2900644,1.729465172,2.856187654,,,,,,,,,,,,,2.285685261,1.717077115,2.982323458,,,,16.36147123,361,2091067,14.61617806,18.10676441,17.26391359,,,,,,,,,,7.278293981,3.979111047,12.21174057,17.71573649,15.6803037,19.75116927,,,,11.52521655,241,2091067,10.07010381,12.9803293,,,,,,,,,,5.796093433,2.893388959,10.3708122,12.92988167,11.21738962,14.64237372,,,,9.928829598,288,2900644,8.782108284,11.07555091,,,,,,,,,,10.06156906,6.572550962,14.7425299,10.24325617,8.952671737,11.5338406,,,,10.18735363,,42700,,,134,301,0.825246201,257679,312245,,,0.74,,,,,110.0433314,,,,,0.710952641,114452,160984,0.701116879,0.720788404,0.151550363,23998,158350,0.14170161,0.161399116,0.916134523,147483,160984,0.908529041,0.923740005,423177,,,,,0.206299019,87301,423177,,,0.200173923,84709,423177,,,0.012181664,5155,423177,,,0.011061565,4681,423177,,,0.055770989,23601,423177,,,0.003133441,1326,423177,,,0.097963736,41456,423177,,,0.791318999,334868,423177,,,0.016324846,6527,399820,0.013763969,0.018885724,0.502517859,212654,423177,,,0.17109594,72100,421401,, -41,007,41007,OR,Clatsop County,2024,1,8037.747992,669,112167,6986.142533,9089.35345,0,,,,2,,,,2,,,,2,6626.107986,3927.051533,10472.1073,1,7877.068497,6766.242609,8987.894386,,,,,2,,0.144,,,0.119,0.172,3.679552265,,,2.89495679,4.600253105,5.400147445,,,4.395127421,6.551115732,0.064858491,165,2544,0.055288322,0.07442866,0,,,,,,,,,,0.06835443,0.043467793,0.093241068,0.062240664,0.051456528,0.0730248,,,,0.11827957,0.052644656,0.183914483,0.153,,,0.119,0.191,0.301,,,0.235,0.376,8.2,0.037251724,0.109,,,0.192,,,0.153,0.239,0.888074601,36475,41072,,,0.165572552,,,0.131655899,0.202694033,0.275862069,16,58,0.207652182,0.346539542,241.6,101,41810,,,14.61349358,107,7322,11.84452368,17.38246349,,,,,,,,,,14.34262948,8.500351219,22.66753806,14.02472781,11.04989036,17.55403819,,,,32.15434084,15.41925626,59.13297763,0.087661411,2763,31519,0.074555028,0.100767794,0.000621861,26,41810,,,1608.076923,0.000719511,30,41695,,,1389.833333,0.003861374,161,41695,,,258.9751553,2019,,,,,,,,,1987,0.38,,,,,,0.17,,0.21,0.39,0.4,,,,,0.22,0.42,,0.27,0.4,0.922405622,28221,30595,0.909755628,0.935055615,0.674388546,6783,10058,0.603377675,0.745399418,0.042911682,843,19645,,,0.148,1065,,0.089617021,0.206382979,,,,,,,,,,0.223335719,0.118076219,0.32859522,0.084346803,0.050593962,0.118099643,4.022150893,126561,31466,3.435416868,4.608884918,0.147074539,1101,7486,0.098334331,0.195814748,12.43721598,52,41810,,,98.80686981,199,201403,85.07857255,112.5351671,,,,,,,,,,,,,106.3127581,90.86712329,121.7583929,,,,5.8,,,,,1,,,,,0.153870162,2465,16020,0.126449778,0.181290546,0.131719585,0.106339578,0.157099593,0.016853933,0.009281901,0.024425964,0.020911361,0.009689654,0.032133068,0.69659663,12731,18276,0.663548227,0.729645032,,,,,,,,,,0.566344687,0.409028693,0.723660682,0.729264375,0.698571084,0.759957666,0.252,,18276,0.212482769,0.291517232,77.97013077,,,77.05239799,78.88786355,,,,,,,,,,96.0752127,58.12080495,134.0296205,77.84466617,76.89381654,78.79551581,,,,382.8468414,669,112167,350.2979363,415.3957465,,,,,,,,,,284.4901323,173.7739637,439.3719358,388.37295,353.3091157,423.4367843,,,,41.6989337,14,33574,22.79719508,69.96372527,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.11,,,0.094,0.13,0.178,,,0.152,0.207,0.085,,,0.072,0.099,178.4,65,36441,,,0.109,4450,,,,0.037251724,1379.766612,37039,,,19.59871628,24,122457,12.55726733,29.1613363,,,,,,,,,,,,,22.15458118,14.04410403,33.24274957,,,,0.287,,,0.272,0.302,0.101016836,2424,23996,0.084335985,0.117697687,0.046355943,367,7917,0.030866581,0.061845305,0.001295119,54,41695,,,772.1296296,0.794513889,286.025,360,,,,,,,,2.889528411,,,,,,,,2.56686029,2.994299484,2.759406509,,,,,,,,2.322796525,2.911309855,0.031064901,,,,,6650.49118,,,,,0.866957409,46716,53885,0.773219192,0.960695626,63667,,,56891,70443,,,,46894,17015.02128,76772.97872,24026,17773.06383,30278.93617,64930,49002.17021,80857.82979,67787,63277.21277,72296.78723,,,,,,,,,,,64.4668959,,,,,0.302998414,,63667,,,10.02109705,19,1896,,,,,,,,,,,,,,,,,,,,,,,,,,18.4926922,38,201403,12.80672693,25.84168378,18.86764348,,,,,,,,,,,,,18.70677587,12.52822139,26.8660506,,,,10.42685561,21,201403,6.454387961,15.93855639,,,,,,,,,,,,,11.09858464,6.682072961,17.33181472,,,,21.23325632,59,277866,16.1637385,27.38935363,,,,,,,,,,,,,21.96660232,16.40570929,28.80627643,,,,36.47058824,,3400,,,47,77,0.76487524,23910,31260,,,0.565,,,,,70.68929778,,,,,0.618288299,10663,17246,0.588813364,0.647763234,0.157781497,2640,16732,0.129439912,0.186123081,0.897193552,15473,17246,0.880600808,0.913786296,41695,,,,,0.177095575,7384,41695,,,0.253555582,10572,41695,,,0.007003238,292,41695,,,0.015181677,633,41695,,,0.016380861,683,41695,,,0.003477635,145,41695,,,0.09538314,3977,41695,,,0.841611704,35091,41695,,,0.012516251,491,39229,0.002961475,0.022071027,0.504113203,21019,41695,,,0.391118037,16064,41072,, -41,009,41009,OR,Columbia County,2024,1,7329.324484,838,146479,6497.430213,8161.218754,0,,,,2,,,,2,,,,2,,,,2,7570.841146,6641.933375,8499.748917,,,,,2,,0.148,,,0.124,0.172,3.684469429,,,2.889529611,4.548103763,5.704761572,,,4.659475033,6.810584158,0.066647432,231,3466,0.058344024,0.07495084,0,,,,,,,,,,0.071146245,0.039469141,0.102823349,0.064921466,0.055899276,0.073943656,,,,0.065088757,0.02789664,0.102280875,0.16,,,0.126,0.196,0.327,,,0.258,0.397,8.7,0.014200595,0.094,,,0.205,,,0.165,0.248,0.609443039,32050,52589,,,0.165891292,,,0.132878326,0.204576864,0.178571429,5,28,0.087257021,0.288336239,284.5,151,53074,,,11.87511971,124,10442,9.784941936,13.96529748,,,,,,,,,,12.91711518,6.674461904,22.5636007,11.24526515,9.098091035,13.74675351,,,,,,,0.07066045,3016,42683,0.059937046,0.081383855,0.000263783,14,53074,,,3791,0.00061581,33,53588,,,1623.878788,0.004254684,228,53588,,,235.0350877,3167,,,,,,33333,,,3097,0.41,,,,,,,,,0.42,0.35,,,,,0.43,0.29,,0.19,0.36,0.905500853,34486,38085,0.887072165,0.923929542,0.54306739,7011,12910,0.486370351,0.599764428,0.048086086,1211,25184,,,0.122,1299,,0.082680851,0.161319149,,,,,,,,,,0.070395371,0.002498689,0.138292053,0.113017897,0.07520351,0.150832283,3.753098872,141398,37675,3.279169792,4.227027952,0.20081361,2172,10816,0.14718157,0.254445649,7.159814599,38,53074,,,81.15429603,213,262463,70.25551858,92.05307348,,,,,,,,,,73.95455157,36.91784569,132.3251211,82.90758192,71.14957703,94.66558681,,,,7.2,,,,,1,,,,,0.125062909,2485,19870,0.106380652,0.143745166,0.100735854,0.08267633,0.118795378,0.021137393,0.011961449,0.030313337,0.014343231,0.007237279,0.021449183,0.735659696,17519,23814,0.707011977,0.764307415,,,,,,,,,,0.498866213,0.310466034,0.687266393,0.663013947,0.625794339,0.700233554,0.604,,23814,0.554614239,0.653385761,78.32659109,,,77.53513809,79.1180441,,,,,,,,,,,,,78.04063161,77.19754923,78.883714,,,,382.1350812,838,146479,354.6177622,409.6524002,,,,,,,,,,,,,390.0588278,360.5474972,419.5701584,,,,45.92422503,22,47905,28.78046733,69.52982859,,,,,,,,,,,,,46.33801004,27.4628415,73.23403338,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.111,,,0.095,0.129,0.188,,,0.16,0.214,0.085,,,0.072,0.1,120.8,55,45548,,,0.094,4920,,,,0.014200595,700.8135583,49351,,,22.10935921,35,158304,15.39997878,30.74876653,,,,,,,,,,,,,20.22931372,13.44223206,29.2369907,,,,0.314,,,0.299,0.329,0.081040379,2583,31873,0.066742507,0.095338251,0.041072999,467,11370,0.027966616,0.054179382,0.000671792,36,53588,,,1488.555556,0.746820604,420.46,563,,,0.108016878,256,2370,0.053088177,0.162945579,2.729098862,,,,,,,,2.237292494,2.770090708,2.442602529,,,,,,,,2.027171045,2.490984677,0.020253541,,,,,1471.3214,,,,,0.801790148,53926,67257,0.726364501,0.877215795,77572,,,70949.70213,84194.29787,143813,94874.95745,192751.0426,,,,85473,2298.702128,168647.2979,76995,53726.40426,100263.5957,82227,77638.57447,86815.42553,,,,,,,,,,,64.10691013,,,,,0.283491466,,77572,,,8.217220436,23,2799,,,3.031572449,11,362848,1.513350044,5.424320518,,,,,,,,,,,,,,,,,,,22.09982675,62,262463,16.73819296,28.6328889,23.62237725,,,,,,,,,,,,,23.03482934,17.20351232,30.20711404,,,,17.14527381,45,262463,12.50588037,22.94172531,,,,,,,,,,,,,18.66505771,13.50799481,25.14171025,,,,12.95308228,47,362848,9.517437651,17.22485348,,,,,,,,,,,,,13.76350544,10.00058412,18.47686364,,,,12.11538462,,5200,,,29,34,0.790408439,32221,40765,,,0.66,,,,,59.47007991,,,,,0.766019179,15577,20335,0.744206331,0.787832026,0.0978824,1946,19881,0.079627073,0.116137728,0.914826654,18603,20335,0.90018364,0.929469667,53588,,,,,0.202265433,10839,53588,,,0.203944913,10929,53588,,,0.007016496,376,53588,,,0.015936404,854,53588,,,0.012185564,653,53588,,,0.003023065,162,53588,,,0.067832351,3635,53588,,,0.863775472,46288,53588,,,0.001554528,78,50176,0,0.004276238,0.494607002,26505,53588,,,0.412234498,21679,52589,, -41,011,41011,OR,Coos County,2024,1,8540.46346,1345,173012,7723.5914,9357.33552,0,7376.252942,3682.198892,13198.15404,1,,,,2,,,,2,5893.90144,3776.333865,8769.658152,1,9114.310224,8171.113436,10057.50701,,,,,2,,0.171,,,0.142,0.2,4.03153806,,,3.22774865,4.980698242,5.704807487,,,4.729322311,6.842993757,0.071410548,283,3963,0.063393082,0.079428013,0,,,,,,,,,,0.070028011,0.043555643,0.096500379,0.071017275,0.062013027,0.080021522,,,,0.066115703,0.034808286,0.097423119,0.183,,,0.145,0.224,0.361,,,0.298,0.428,7.6,0.039314782,0.135,,,0.225,,,0.181,0.269,0.747524219,48536,64929,,,0.147449132,,,0.119207575,0.179718035,0.322033898,19,59,0.254694749,0.389863743,164.6,107,64999,,,19.14580265,208,10864,16.54385843,21.74774687,,,,,,,,,,13.19261214,8.058390228,20.37491946,19,15.97943714,22.02056286,,,,25.52552553,14.86955926,40.86883906,0.07751938,3630,46827,0.065604486,0.089434274,0.000830782,54,64999,,,1203.685185,0.000892445,58,64990,,,1120.517241,0.005231574,340,64990,,,191.1470588,2681,,,,,3251,4398,,4746,2627,0.36,,,,,0.32,0.4,,0.48,0.36,0.38,,,,,0.39,0.41,0.34,0.32,0.38,0.900234958,44062,48945,0.886678737,0.913791178,0.539083182,7738,14354,0.486255724,0.591910641,0.052675114,1401,26597,,,0.226,2523,,0.15212766,0.29987234,0.517133956,0.230888114,0.803379799,0.636363636,0.293059818,0.979667455,0.775510204,0.167156962,1,0.126760563,0.024967903,0.228553224,0.258384506,0.20029602,0.316472993,4.900825033,114645,23393,4.314647451,5.487002616,0.200342319,2341,11685,0.138212674,0.262471964,12.30788166,80,64999,,,114.1177273,368,322474,102.4580837,125.7773709,,,,,,,,,,63.33695259,34.62690136,106.2686442,126.0951086,112.789193,139.4010242,,,,7.8,,,,,1,,,,,0.147555715,4105,27820,0.128886383,0.166225047,0.115172667,0.096803983,0.133541351,0.025341481,0.017087345,0.033595617,0.020848311,0.012907798,0.028788823,0.751950263,18989,25253,0.7254105,0.778490026,0.717647059,0.590881553,0.844412564,,,,,,,0.724107143,0.600537727,0.847676559,0.752245509,0.718122379,0.786368639,0.217,,25253,0.186880997,0.247119003,76.28679558,,,75.63932171,76.93426944,,,,,,,,,,86.18603695,78.8438953,93.5281786,75.68065142,74.96706253,76.3942403,,,,450.6975536,1345,173012,423.2646351,478.130472,391.2730677,238.9997547,604.2895189,,,,,,,331.44335,233.3667059,456.8509983,473.2006208,442.6463187,503.754923,,,,25.23634811,13,51513,13.43729251,43.15492384,,,,,,,,,,,,,30.84515731,15.93814289,53.88028236,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.125,,,0.106,0.144,0.194,,,0.167,0.221,0.095,,,0.081,0.111,139.3,79,56710,,,0.135,8720,,,,0.039314782,2478.521795,63043,,,13.90340737,27,194197,9.162433061,20.22872776,,,,,,,,,,,,,15.81489276,10.33081302,23.17248214,,,,0.333,,,0.317,0.349,0.091949465,3246,35302,0.076460103,0.107438826,0.034388916,417,12126,0.023665512,0.045112321,0.001077089,70,64990,,,928.4285714,0.630779915,590.41,936,,,0.092201306,240,2603,0.042158663,0.142243949,2.745747706,,,,,,,,2.547521867,2.787953721,2.547554394,,,,,,,,2.385544818,2.56684747,0.021172884,,,,,-1309.549017,,,,,0.779440258,43446,55740,0.663922144,0.894958373,55983,,,49943.34043,62022.65957,58534,33522.25532,83545.74468,68725,2342.361702,135107.6383,,,,58942,39764.97872,78119.02128,58332,54242.80851,62421.19149,,,,,,,,,,,77.03518745,,,,,0.34458675,,55983,,,6.485084306,20,3084,,,4.673354757,21,449356,2.892880252,7.143719175,,,,,,,,,,,,,5.500348355,3.404802324,8.407866738,,,,25.90153605,99,322474,20.5695584,32.19324434,30.70014947,,,,,,,,,,,,,27.58135473,21.54126687,34.79012603,,,,20.15666379,65,322474,15.55648757,25.69132265,,,,,,,,,,,,,22.66057024,17.37372927,29.04982836,,,,19.58358184,88,449356,15.70660529,24.12752055,,,,,,,,,,,,,21.73947207,17.31536816,26.94934645,,,,9.62962963,,5400,,,20,32,0.721794997,37075,51365,,,0.617,,,,,65.29453238,,,,,0.691647373,19418,28075,0.670854215,0.712440532,0.128634099,3460,26898,0.108782365,0.148485834,0.868958148,24396,28075,0.852590233,0.885326063,64990,,,,,0.177011848,11504,64990,,,0.281366364,18286,64990,,,0.00504693,328,64990,,,0.029619942,1925,64990,,,0.013925219,905,64990,,,0.002877366,187,64990,,,0.075196184,4887,64990,,,0.839452223,54556,64990,,,0.011293966,700,61980,0.006142338,0.016445593,0.503585167,32728,64990,,,0.381401223,24764,64929,, -41,013,41013,OR,Crook County,2024,1,7740.282851,367,68029,6313.713709,9166.851993,0,,,,2,,,,2,,,,2,,,,2,8293.793764,6643.694514,9943.893013,,,,,2,,0.147,,,0.121,0.174,3.65450871,,,2.835513489,4.494170157,5.408434747,,,4.281060136,6.482051737,0.075739645,128,1690,0.063125102,0.088354188,0,,,,,,,,,,0.109375,0.065226909,0.153523091,0.066906475,0.053771013,0.080041936,,,,,,,0.16,,,0.126,0.198,0.324,,,0.253,0.401,8.1,0.053805001,0.102,,,0.216,,,0.176,0.263,0.648314334,16038,24738,,,0.163405,,,0.129774372,0.201115507,0.315789474,6,19,0.192486042,0.440144871,287.5,74,25739,,,18.04437942,74,4101,14.16871891,22.65306596,,,,,,,,,,23.60876897,12.90713369,39.61150274,17.46323529,13.22648387,22.62564688,,,,,,,0.07234618,1391,19227,0.060431286,0.084261074,0.000349664,9,25739,,,2859.888889,0.000454976,12,26375,,,2197.916667,0.005232228,138,26375,,,191.1231884,1513,,,,,,,,,1546,0.43,,,,,0.4,,,0.29,0.43,0.33,,,,,0.19,,,0.37,0.33,0.902501879,16810,18626,0.876006994,0.928996764,0.669789227,3718,5551,0.57251809,0.767060364,0.054634581,613,11220,,,0.143,719,,0.087,0.199,,,,,,,,,,,,,0.123534011,0.068886596,0.178181426,3.636350897,129745,35680,3.004602541,4.268099252,0.21831844,1075,4924,0.131297052,0.305339829,10.10140254,26,25739,,,115.3487459,141,122238,96.30907697,134.3884148,,,,,,,,,,,,,123.9088106,102.8500678,144.9675533,,,,7.6,,,,,0,,,,,0.137,1370,10000,0.101309739,0.172690261,0.108433735,0.079034724,0.137832746,0.0225,0.004790376,0.040209624,0.0145,0.005595626,0.023404374,0.806077098,8887,11025,0.762058477,0.850095718,,,,,,,,,,,,,0.807440086,0.761762662,0.85311751,0.412,,11025,0.345329809,0.478670192,78.6607237,,,77.44805922,79.87338819,,,,,,,,,,88.61296308,71.39274786,105.8331783,78.02395221,76.68850143,79.35940299,,,,341.1989668,367,68029,301.4866812,380.9112525,,,,,,,,,,,,,354.9919073,311.4350702,398.5487444,,,,70.35977297,15,21319,39.37983082,116.0477455,,,,,,,,,,,,,87.65778401,49.06139629,144.5781842,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.114,,,0.097,0.133,0.183,,,0.158,0.209,0.085,,,0.072,0.1,117.8,26,22080,,,0.102,2490,,,,0.053805001,1128.72132,20978,,,15.9472677,12,75248,8.24018593,27.85666735,,,,,,,,,,,,,16.66388935,8.318553525,29.81630109,,,,0.312,,,0.297,0.327,0.084361125,1197,14189,0.068871763,0.099850487,0.039438756,208,5274,0.026332373,0.052545139,0.000530806,14,26375,,,1883.928571,0.89,209.15,235,,,,,,,,3.072403587,,,,,,,,2.672939863,3.140866502,2.823219864,,,,,,,,2.50319724,2.888356358,0.042054327,,,,,2788.187,,,,,0.841434587,53750,63879,0.64002316,1.042846015,69563,,,61427.51064,77698.48936,71037,70110.02128,71963.97872,,,,,,,67668,21608.59575,113727.4043,76281,68793.68085,83768.31915,,,,,,,,,,,,,,,,0.277316965,,69563,,,8.389261745,10,1192,,,,,,,,,,,,,,,,,,,,,,,,,,27.56100144,35,122238,18.59529194,39.34504329,28.63266742,,,,,,,,,,,,,28.92802907,19.06375344,42.08876351,,,,22.08805772,27,122238,14.55616922,32.13696432,,,,,,,,,,,,,23.29112981,15.07279116,34.38230219,,,,16.22225694,27,166438,10.69056954,23.60253214,,,,,,,,,,,,,16.39915544,10.50724833,24.40064339,,,,26.08695652,,2300,,,53,7,0.818653948,15448,18870,,,0.637,,,,,43.77120496,,,,,0.752988048,7749,10291,0.711070084,0.794906012,0.108879919,1079,9910,0.076856268,0.140903571,0.875425129,9009,10291,0.846301644,0.904548613,26375,,,,,0.195905213,5167,26375,,,0.254331754,6708,26375,,,0.00436019,115,26375,,,0.017478673,461,26375,,,0.006900474,182,26375,,,0.001099526,29,26375,,,0.084132701,2219,26375,,,0.868701422,22912,26375,,,0.005367482,127,23661,0,0.013474673,0.497402844,13119,26375,,,0.498463902,12331,24738,, -41,015,41015,OR,Curry County,2024,1,11216.57801,612,60039,9443.060379,12990.09564,0,,,,2,,,,2,,,,2,,,,2,12291.6426,10148.5557,14434.72951,,,,,2,,0.152,,,0.127,0.177,3.700207066,,,2.887564794,4.604947964,5.379199764,,,4.284763686,6.537996164,0.0683391,79,1156,0.053793196,0.082885004,0,,,,,,,,,,0.115942029,0.062525293,0.169358765,0.065536723,0.049232207,0.081841239,,,,,,,0.158,,,0.126,0.194,0.324,,,0.253,0.397,8,0.021252698,0.122,,,0.209,,,0.166,0.254,0.912863602,21403,23446,,,0.142472241,,,0.111334929,0.175504981,0.214285714,3,14,0.080830645,0.373240293,88.7,21,23683,,,22.46802627,65,2893,17.34034833,28.63734387,,,,,,,,,,,,,23.72262774,17.71719307,31.10907014,,,,,,,0.074534162,1140,15295,0.062619268,0.086449055,0.00067559,16,23683,,,1480.1875,0.000635647,15,23598,,,1573.2,0.005508941,130,23598,,,181.5230769,1388,,,,,,,,,1424,0.32,,,,,0.29,0.3,,0.19,0.32,0.29,,,,,0.12,0.32,0.27,0.22,0.29,0.910860013,17412,19116,0.887266137,0.934453888,0.557736194,2444,4382,0.450481777,0.664990611,0.054054054,498,9213,,,0.209,685,,0.132744681,0.285255319,,,,,,,,,,0.064885496,0,0.184386548,0.084206117,0.029405041,0.139007192,4.638626376,119273,25713,3.813602082,5.46365067,0.22353297,739,3306,0.106806631,0.34025931,7.178144661,17,23683,,,136.9210104,158,115395,115.571023,158.2709979,,,,,,,,,,,,,147.8166668,123.8392138,171.7941198,,,,6.4,,,,,1,,,,,0.170991659,1845,10790,0.129603695,0.212379623,0.118194509,0.087731345,0.148657674,0.02965709,0.011460057,0.047854123,0.02502317,0.009100184,0.040946156,0.727072464,6271,8625,0.654417388,0.79972754,,,,,,,,,,,,,0.721638496,0.638991763,0.804285228,0.234,,8625,0.156939096,0.311060904,74.40175555,,,73.17382547,75.62968562,,,,,,,,,,84.31041758,74.99022238,93.63061279,73.44949179,72.00734699,74.89163659,,,,531.3783124,612,60039,477.4140556,585.3425691,,,,,,,,,,,,,561.1267671,499.6425973,622.6109368,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.115,,,0.099,0.133,0.183,,,0.158,0.21,0.089,,,0.074,0.103,75.2,16,21280,,,0.122,2840,,,,0.021252698,475.2953415,22364,,,44.3408236,31,69913,30.12743836,62.9382597,,,,,,,,,,,,,45.27390714,29.83579008,65.87115791,,,,0.308,,,0.292,0.323,0.085785953,1026,11960,0.070296592,0.101275315,0.035152901,123,3499,0.023238007,0.047067794,0.001144165,27,23598,,,874,0.767231638,135.8,177,,,,,,,,2.885602505,,,,,,,,2.292534745,2.985391294,2.638380133,,,,,,,,2.33446709,2.77557541,0.024749793,,,,,249.0433333,,,,,0.749541255,47383,63216,0.579315631,0.919766879,54595,,,46797.89362,62392.10638,87457,38666.70213,136247.2979,56319,25536.87234,87101.12766,,,,70194,36213.91489,104174.0851,64731,58323.17021,71138.82979,,,,,,,,,,,,,,,,0.353347376,,54595,,,10.80432173,9,833,,,,,,,,,,,,,,,,,,,,,,,,,,28.69561243,47,115395,19.49727643,40.73113129,40.72966766,,,,,,,,,,,,,33.20447711,21.69026686,48.65225229,,,,31.19719225,36,115395,21.85012992,43.19006412,,,,,,,,,,,,,34.4230594,23.83896932,48.1027752,,,,22.41719648,36,160591,15.70072882,31.03484908,,,,,,,,,,,,,23.20219261,15.87028257,32.75457307,,,,30,,1500,,,17,28,0.771716649,14925,19340,,,0.535,,,,,45.17068989,,,,,0.766236096,8542,11148,0.733724721,0.798747471,0.127033735,1382,10879,0.095548525,0.158518945,0.872443488,9726,11148,0.845656901,0.899230075,23598,,,,,0.141961183,3350,23598,,,0.362912111,8564,23598,,,0.005593694,132,23598,,,0.026570048,627,23598,,,0.010382236,245,23598,,,0.001779812,42,23598,,,0.079922027,1886,23598,,,0.848037969,20012,23598,,,0.010260947,232,22610,0.002253464,0.018268429,0.504025765,11894,23598,,,0.518297364,12152,23446,, -41,017,41017,OR,Deschutes County,2024,1,5072.168297,1986,559034,4701.782045,5442.554549,0,,,,2,,,,2,,,,2,4015.490919,3007.878247,5252.360988,,5212.782463,4804.762998,5620.801927,,,,,2,,0.124,,,0.102,0.15,2.96603203,,,2.297848541,3.705121533,4.827232041,,,3.979146728,5.743879035,0.067132867,864,12870,0.062809279,0.071456455,0,,,,0.098039216,0.05723221,0.138846222,,,,0.077149588,0.064457891,0.089841285,0.064365126,0.059615188,0.069115064,,,,0.056097561,0.033823486,0.078371636,0.126,,,0.097,0.162,0.258,,,0.209,0.311,8.6,0.051341379,0.084,,,0.165,,,0.133,0.204,0.933166207,185003,198253,,,0.21148909,,,0.176203037,0.250436306,0.235849057,25,106,0.186424461,0.287861121,262.2,537,204801,,,8.515953219,300,35228,7.552282394,9.479624044,,,,,,,,,,17.32124874,13.85476319,21.39160129,6.823487161,5.853232697,7.793741625,,,,10.01430615,5.474914361,16.80230409,0.077567415,12668,163316,0.066844011,0.08829082,0.000986323,202,204801,,,1013.866337,0.000895671,185,206549,,,1116.481081,0.006216443,1284,206549,,,160.8637072,1250,,,,,861,,,1678,1213,0.49,,,,,0.32,0.46,,0.43,0.49,0.5,,,,,0.37,0.43,0.54,0.37,0.51,0.942657229,138630,147063,0.935390814,0.949923643,0.748743346,40367,53913,0.711503149,0.785983543,0.041586748,4293,103230,,,0.118,4471,,0.088212766,0.147787234,0.286624204,0,0.846639848,0.101503759,0,0.283090807,,,,0.119920892,0.058858089,0.180983694,0.10290337,0.079986958,0.125819781,4.168344607,158989,38142,3.844024159,4.492665055,0.214433577,8287,38646,0.17391517,0.254951983,10.30268407,211,204801,,,88.5943204,871,983133,82.71058851,94.4780523,,,,,,,,,,30.73820882,19.89214805,45.37565989,95.84189134,89.27386638,102.4099163,,,,9.6,,,,,1,,,,,0.186137072,14340,77040,0.167539169,0.204734975,0.151220154,0.13496962,0.167470688,0.029140706,0.021131376,0.037150036,0.019924714,0.012078904,0.027770525,0.682524895,65936,96606,0.660068941,0.704980849,,,,0.47593985,0.311573261,0.640306439,,,,0.681960739,0.628284949,0.735636528,0.693053836,0.667808753,0.718298919,0.211,,96606,0.191098204,0.230901796,81.22606361,,,80.84780287,81.60432434,,,,86.79260018,82.75612802,90.82907235,,,,84.94647862,81.67616464,88.2167926,81.01024918,80.61032043,81.41017793,,,,243.326464,1986,559034,231.8702882,254.7826397,,,,,,,,,,202.2473688,157.0529955,256.3967318,249.4040055,237.0314259,261.7765851,,,,32.04418602,55,171638,24.14006629,41.70991271,,,,,,,,,,44.88147211,22.40466917,80.30535115,27.45499607,19.33085093,37.84309555,,,,3.195884325,41,12829,2.293421769,4.335577954,,,,,,,,,,,,,2.323555039,1.488745557,3.457265717,,,,,,,0.098,,,0.083,0.115,0.165,,,0.142,0.192,0.073,,,0.061,0.086,75.6,134,177248,,,0.084,16440,,,,0.051341379,8098.229655,157733,,,9.432994297,57,604262,7.144457762,12.22153824,,,,,,,,,,,,,10.1347346,7.591611678,13.25648239,,,,0.286,,,0.27,0.303,0.089140586,11034,123782,0.076034203,0.102246969,0.042530646,1766,41523,0.029424263,0.055637029,0.001597684,330,206549,,,625.9060606,0.834156785,1899.375,2277,,,0.102926463,823,7996,0.061298846,0.144554081,,,,,,,,,,,,,,,,,,,,,0.054717229,,,,,3322.793333,,,,,0.772219182,49395,63965,0.690869992,0.853568373,84281,,,75318.61702,93243.38298,65653,14594.10638,116711.8936,105353,59983.46809,150722.5319,93426,66243.3617,120608.6383,64278,57323.2766,71232.7234,83461,80482.2766,86439.7234,,,,,,,,,,,81.55799452,,,,,0.261862104,,84281,,,9.945094789,96,9653,,,2.090007673,28,1339708,1.388794921,3.020643002,,,,,,,,,,,,,1.886609617,1.182328203,2.856349632,,,,19.6966723,204,983133,16.87862787,22.51471673,20.74999008,,,,,,,,,,,,,21.30796401,18.1247792,24.49114881,,,,13.42646417,132,983133,11.13596171,15.71696663,,,,,,,,,,,,,14.29426741,11.75774877,16.83078606,,,,12.46540291,167,1339708,10.57478331,14.35602251,,,,,,,,,,,,,13.2920223,11.19944609,15.38459851,,,,18.06451613,,18600,,,85,251,0.837881778,125234,149465,,,0.617,,,,,89.64600995,,,,,0.697352757,56821,81481,0.681222862,0.713482653,0.148970468,11829,79405,0.132928433,0.165012503,0.918557701,74845,81481,0.905526725,0.931588676,206549,,,,,0.187456729,38719,206549,,,0.214360757,44276,206549,,,0.005296564,1094,206549,,,0.011246726,2323,206549,,,0.014345264,2963,206549,,,0.001801025,372,206549,,,0.088347075,18248,206549,,,0.858498468,177322,206549,,,0.007782696,1477,189780,0.005103483,0.010461908,0.501120799,103506,206549,,,0.292414238,57972,198253,, -41,019,41019,OR,Douglas County,2024,1,10214.48355,2394,296856,9517.76899,10911.19812,0,10488.7297,5995.215287,17033.03992,1,,,,2,,,,2,4168.849356,2671.060444,6202.917389,1,10804.68491,10021.14555,11588.22428,,,,,2,,0.159,,,0.134,0.188,3.689157217,,,2.967538002,4.499599628,5.378379247,,,4.454316574,6.338285871,0.070767104,512,7235,0.064858093,0.076676115,0,,,,,,,,,,0.093385214,0.068230177,0.118540252,0.066677352,0.060487167,0.072867538,,,,0.090909091,0.0529206,0.128897582,0.175,,,0.139,0.213,0.341,,,0.282,0.404,7.3,0.096873673,0.12,,,0.218,,,0.178,0.262,0.498970333,55486,111201,,,0.152877772,,,0.123994725,0.185868373,0.353741497,52,147,0.312696077,0.394677838,201.8,226,111978,,,19.6088603,378,19277,17.63206125,21.58565935,,,,,,,,,,20.67307692,14.96120828,27.84649895,20.76573654,18.49049021,23.04098286,,,,,,,0.072258268,5947,82302,0.061534864,0.082981673,0.000642983,72,111978,,,1555.25,0.000792541,89,112297,,,1261.764045,0.003864752,434,112297,,,258.7488479,1314,,,,,,1962,,932,1293,0.4,,,,,0.36,0.38,,0.26,0.4,0.28,,,,,0.28,0.32,0.22,0.13,0.28,0.912663915,75167,82360,0.904080756,0.921247073,0.580561821,14157,24385,0.538080436,0.623043206,0.052652531,2513,47728,,,0.198,4147,,0.140808511,0.255191489,0.08,0,0.181398452,0.296819788,0,0.698121736,,,,0.253279059,0.141446495,0.365111624,0.181616969,0.148948976,0.214284962,4.406994527,109505,24848,3.989611238,4.824377815,0.241747436,5163,21357,0.196757292,0.286737581,10.3591777,116,111978,,,114.7993719,636,554010,105.8772731,123.7214706,,,,,,,,,,55.90208309,33.65670579,87.29802746,122.3089955,112.4563328,132.1616583,,,,9.3,,,,,1,,,,,0.150732128,7000,46440,0.132159849,0.169304406,0.120650407,0.103109214,0.138191599,0.022394488,0.016492588,0.028296387,0.012166236,0.007197832,0.01713464,0.743658624,31282,42065,0.722330839,0.764986408,0.557632399,0.422169684,0.693095114,0.727447217,0.675159456,0.779734978,,,,0.767231638,0.718295738,0.816167539,0.745540988,0.722199967,0.76888201,0.198,,42065,0.177431705,0.218568295,75.31174,,,74.78138204,75.84209796,78.35053765,73.06281394,83.63826136,,,,,,,90.32936966,82.95943866,97.69930065,74.71624116,74.14008743,75.29239489,,,,506.0196276,2394,296856,483.1806305,528.8586248,466.6647595,312.5327135,670.2084382,,,,,,,194.6627126,135.5897118,270.7287103,528.4532769,503.5009126,553.4056412,,,,53.27196403,50,93858,39.53947851,70.23244333,,,,,,,,,,,,,59.90255851,43.69333722,80.15433628,,,,5.937120497,44,7411,4.313920842,7.970307149,,,,,,,,,,,,,5.85065435,4.140271231,8.030480203,,,,,,,0.119,,,0.103,0.139,0.191,,,0.165,0.217,0.093,,,0.079,0.108,98.2,95,96711,,,0.12,13300,,,,0.096873673,10430.0977,107667,,,23.03168801,77,334322,18.17624801,28.78565829,,,,,,,,,,,,,24.71017029,19.33418641,31.11836997,,,,0.313,,,0.298,0.327,0.085987157,5249,61044,0.072880774,0.09909354,0.033716407,754,22363,0.022993002,0.044439811,0.001166549,131,112297,,,857.2290076,0.730962733,823.795,1127,,,0.074276779,380,5116,0.03468564,0.113867918,2.827106142,,,,,,,,2.697037349,2.84810039,2.587168871,,,,,,,,2.361989035,2.629382056,0.022804642,,,,,-2013.310614,,,,,0.766871277,42227,55064,0.707046046,0.826696508,55837,,,50171.46809,61502.53192,40694,27711.53192,53676.46809,90536,29747.40426,151324.5957,44208,27064.85106,61351.14894,46823,33086.31915,60559.68085,56861,54685.34043,59036.65957,,,,,,,,,,,79.11679482,,,,,0.345487759,,55837,,,5.910800645,33,5583,,,5.972846919,46,770152,4.372874629,7.966940774,,,,,,,,,,,,,5.929149627,4.235871421,8.073818945,,,,29.95242352,172,554010,25.06324322,34.84160382,31.046371,,,,,,,,,,,,,32.4426846,26.94452162,37.94084759,,,,20.75774806,115,554010,16.96383488,24.55166123,,,,,,,,,,,,,22.93293666,18.66660854,27.19926477,,,,21.29449771,164,770152,18.03536873,24.55362669,,,,,,,,,,,,,21.93785362,18.40342392,25.47228332,,,,19.3877551,,9800,,,71,119,0.733071315,64349,87780,,,0.576,,,,,60.49974693,,,,,0.715388608,33081,46242,0.697017579,0.733759636,0.122227976,5429,44417,0.105130544,0.139325408,0.855196575,39546,46242,0.839872252,0.870520897,112297,,,,,0.191875117,21547,112297,,,0.265955457,29866,112297,,,0.004648388,522,112297,,,0.021469852,2411,112297,,,0.012386796,1391,112297,,,0.001905661,214,112297,,,0.067579722,7589,112297,,,0.864359689,97065,112297,,,0.005465667,579,105934,0.002724959,0.008206376,0.502097118,56384,112297,,,0.403791333,44902,111201,, -41,021,41021,OR,Gilliam County,2024,1,9859.597553,29,5206,4728.060266,18132.15094,1,,,,2,,,,2,,,,2,,,,2,11480.70585,5249.709775,21793.95587,1,,,,2,,0.157,,,0.132,0.186,3.794586802,,,2.923548375,4.775304459,5.638079787,,,4.512820904,6.967193638,,,,,,0,,,,,,,,,,,,,,,,,,,,,,0.167,,,0.131,0.205,0.32,,,0.246,0.405,6.6,0.208076891,0.098,,,0.219,,,0.176,0.265,0.396992481,792,1995,,,0.152254155,,,0.12110129,0.19150123,0.714285714,5,7,0.576857484,0.809026882,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.077949438,111,1424,0.064843055,0.091055821,0.000498753,1,2005,,,2005,0,0,2018,,,-2018,0.00148662,3,2018,,,672.6666667,1758,,,,,,,,,1829,0.34,,,,,,,,,0.34,0.19,,,,,,,,,0.19,0.898442789,1327,1477,0.848476416,0.948409163,0.595174263,222,373,0.42402471,0.766323816,0.039748954,38,956,,,0.152,59,,0.093617021,0.210382979,,,,,,,,,,,,,,,,5.588282763,103875,18588,2.317401685,8.859163841,0.191099476,73,382,0.049864982,0.332333971,14.96259352,3,2005,,,124.4684161,12,9641,64.31464691,217.4212742,,,,,,,,,,,,,142.2137947,73.48394298,248.4188795,,,,7.1,,,,,0,,,,,0.165745856,150,905,0.087770453,0.24372126,0.149171271,0.057203971,0.241138571,0.008839779,0,0.036883162,0.020994475,0,0.043925353,0.694980695,540,777,0.63055994,0.75940145,,,,,,,,,,,,,0.722070845,0.61374052,0.830401169,0.176,,777,0.102060429,0.249939571,79.69212733,,,74.19387491,85.19037975,,,,,,,,,,,,,78.30879873,72.17125893,84.44633853,,,,380.0719127,29,5206,232.1577983,586.9902435,,,,,,,,,,,,,413.70916,245.1902677,653.8388336,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.117,,,0.101,0.135,0.184,,,0.158,0.21,0.089,,,0.075,0.105,,,,,,0.098,190,,,,0.208076891,389.3118626,1871,,,,,,,,,,,,,,,,,,,,,,,,,,0.317,,,0.299,0.333,0.088521401,91,1028,0.07184055,0.105202252,0.050480769,21,416,0.03022545,0.070736088,0.001982161,4,2018,,,504.5,,,,,,,,,,,2.729681715,,,,,,,,,,2.968570341,,,,,,,,,,,,,,,5495.896,,,,,0.860169963,54152,62955,0.693135515,1.02720441,69038,,,59277.31915,78798.68085,,,,,,,,,,71346,44417.14894,98274.85106,58409,43862.10638,72955.89362,,,,,,,,,,,,,,,,0.279425824,,69038,,,75,3,40,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,200,,,-888,0,0.76,1178,1550,,,0.297,,,,,2.764851041,,,,,0.745939675,643,862,0.674502472,0.817376878,0.134177215,106,790,0.03314949,0.23520494,0.839907193,724,862,0.772575641,0.907238745,2018,,,,,0.197224975,398,2018,,,0.305252726,616,2018,,,0.006442022,13,2018,,,0.022794846,46,2018,,,0.009910803,20,2018,,,0.004955401,10,2018,,,0.07086224,143,2018,,,0.865708622,1747,2018,,,0.003617571,7,1935,0,0.035111554,0.496035679,1001,2018,,,1,1995,1995,, -41,023,41023,OR,Grant County,2024,1,7414.631874,127,18546,4729.714312,10099.54944,0,,,,2,,,,2,,,,2,,,,2,7549.81483,4675.513926,10424.11573,,,,,2,,0.161,,,0.135,0.192,3.961459554,,,3.178824087,4.905581019,5.835490055,,,4.763952602,6.996293982,0.083146067,37,445,0.057492545,0.108799589,0,,,,,,,,,,,,,0.081885856,0.055115365,0.108656347,,,,,,,0.178,,,0.142,0.223,0.323,,,0.252,0.405,6.5,0.145131747,0.135,,,0.224,,,0.181,0.278,0.60555786,4380,7233,,,0.157457127,,,0.127120224,0.193118878,0.111111111,1,9,0.006152008,0.326116915,96.3,7,7272,,,10.40763226,12,1153,5.377775463,18.18003907,,,,,,,,,,,,,,,,,,,,,,0.092953222,463,4981,0.07865535,0.107251095,0.000962596,7,7272,,,1038.857143,0.000692713,5,7218,,,1443.6,0.005541701,40,7218,,,180.45,183,,,,,,,,,187,0.45,,,,,,,,,0.45,0.22,,,,,,,,,0.23,0.891246211,4999,5609,0.862509039,0.919983384,0.614,921,1500,0.510088925,0.717911075,0.061313414,197,3213,,,0.21,270,,0.132553192,0.287446809,,,,,,,,,,0.053571429,0,0.637015436,0.210166178,0.1442732,0.276059156,4.666302567,102528,21972,2.871549601,6.461055533,0.114541024,141,1231,0.034117381,0.194964666,9.625962596,7,7272,,,116.6116001,42,36017,84.04338433,157.625007,,,,,,,,,,,,,122.1709783,87.28073804,166.3621971,,,,6,,,,,0,,,,,0.156295224,540,3455,0.109462005,0.203128443,0.134749709,0.085459941,0.184039477,0.018813314,0.004992485,0.032634144,0.011577424,0.003080825,0.020074023,0.714880333,2061,2883,0.651892387,0.777868279,,,,,,,,,,,,,0.710019646,0.642546119,0.777493174,0.193,,2883,0.138165594,0.247834407,79.43633159,,,77.09082035,81.78184283,,,,,,,,,,,,,78.88934651,76.47497816,81.30371485,,,,368.8615375,127,18546,293.2978299,444.4252451,,,,,,,,,,,,,374.5481439,295.4011294,453.6951583,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.122,,,0.104,0.142,0.194,,,0.168,0.223,0.091,,,0.077,0.107,,,,,,0.135,980,,,,0.145131747,1080.505857,7445,,,,,,,,,,,,,,,,,,,,,,,,,,0.317,,,0.3,0.335,0.105505831,389,3687,0.086442002,0.124569661,0.06007326,82,1365,0.04100943,0.07913709,0.000692713,5,7218,,,1443.6,,,,,,,,,,,2.817162471,,,,,,,,,2.896930918,2.484337528,,,,,,,,,2.536277233,0.057886809,,,,,3838.9303,,,,,0.673790682,40102,59517,0.578740814,0.768840549,58348,,,50111.23404,66584.76596,46667,28730.31915,64603.68085,,,,,,,40956,19064.76596,62847.23404,56719,48604.95745,64833.04255,,,,,,,,,,,,,,,,0.33061973,,58348,,,9.803921569,3,306,,,,,,,,,,,,,,,,,,,,,,,,,,30.80663018,10,36017,13.30011632,60.7013426,27.76466669,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20,,600,,,5,7,0.782964225,4596,5870,,,0.408,,,,,22.85043349,,,,,0.779394299,2625,3368,0.742962969,0.81582563,0.144427002,460,3185,0.092144214,0.196709789,0.809679335,2727,3368,0.768750092,0.850608578,7218,,,,,0.181352175,1309,7218,,,0.31837074,2298,7218,,,0.002770851,20,7218,,,0.020365752,147,7218,,,0.006650042,48,7218,,,0.000969798,7,7218,,,0.043086728,311,7218,,,0.903851482,6524,7218,,,0.007794457,54,6928,0,0.023060185,0.495151011,3574,7218,,,1,7233,7233,, -41,025,41025,OR,Harney County,2024,1,9540.032916,143,20031,7030.985818,12049.08002,0,,,,2,,,,2,,,,2,,,,2,10294.72622,7380.887046,13208.5654,,,,,2,,0.175,,,0.149,0.205,4.091812347,,,3.220976395,5.055204051,5.912344833,,,4.717001527,7.132972847,0.068833652,36,523,0.047135674,0.09053163,0,,,,,,,,,,,,,0.068736142,0.045385612,0.092086672,,,,,,,0.189,,,0.152,0.232,0.345,,,0.269,0.428,7.2,0.125449181,0.11,,,0.237,,,0.192,0.289,0.737291528,5526,7495,,,0.156571779,,,0.123356936,0.193500109,0.071428571,2,28,0.013017947,0.17852931,145.2,11,7575,,,20.87114338,23,1102,13.23051455,31.3169627,,,,,,,,,,,,,20.08928571,11.90618391,31.74973244,,,,,,,0.078257726,433,5533,0.065151343,0.091364109,0.000528053,4,7575,,,1893.75,0.000665336,5,7515,,,1503,0.007717898,58,7515,,,129.5689655,1140,,,,,,,,,966,0.33,,,,,,,,,0.33,0.3,,,,,0.5,,,0.5,0.3,0.9123477,5017,5499,0.883486347,0.941209053,0.60485782,1021,1688,0.463238343,0.746477297,0.048594694,185,3807,,,0.206,294,,0.127361702,0.284638298,,,,,,,,,,0.021276596,0,0.255809951,0.180722892,0.10449366,0.256952123,3.803451466,94550,24859,2.762428018,4.844474915,0.253511236,361,1424,0.136952472,0.37007,9.240924092,7,7575,,,143.4021483,53,36959,107.4180496,187.5735408,,,,,,,,,,,,,150.4749365,110.9483395,199.507935,,,,10.2,,,,,0,,,,,0.11496063,365,3175,0.079600201,0.150321059,0.087780234,0.055162243,0.120398225,0.022047244,0.005608836,0.038485653,0.009448819,0.000517739,0.018379899,0.711907811,2224,3124,0.644770159,0.779045462,,,,,,,,,,,,,0.702833706,0.635258678,0.770408734,0.178,,3124,0.106213384,0.249786616,76.11409531,,,74.07677477,78.15141586,,,,,,,,,,,,,75.43654433,73.19751071,77.67557794,,,,470.8233679,143,20031,384.6717748,556.9749611,,,,,,,,,,,,,487.2027783,391.7809349,582.6246217,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.129,,,0.11,0.15,0.196,,,0.171,0.225,0.098,,,0.083,0.115,138,9,6521,,,0.11,820,,,,0.125449181,931.0838232,7422,,,,,,,,,,,,,,,,,,,,,,,,,,0.314,,,0.297,0.33,0.094229365,387,4107,0.076357024,0.112101705,0.032841823,49,1492,0.020926929,0.044756717,0.001463739,11,7515,,,683.1818182,,,,,,,,,,,2.860361028,,,,,,,,,,2.77210501,,,,,,,,,,0.03146631,,,,,-2892.2722,,,,,0.851361621,40329,47370,0.550080192,1.152643051,56001,,,47808.31915,64193.68085,22083,6105.12766,38060.87234,,,,,,,92823,13200.53192,172445.4681,44040,37082.89362,50997.10638,,,,,,,,,,,,,,,,0.344475992,,56001,,,8.522727273,3,352,,,,,,,,,,,,,,,,,,,,,,,,,,51.51169325,18,36959,29.44338348,83.65176263,48.70261641,,,,,,,,,,,,,56.28550595,31.50257041,92.83438243,,,,37.87981277,14,36959,20.70924613,63.55588929,,,,,,,,,,,,,40.75362864,21.69959087,69.68994614,,,,25.26675866,13,51451,13.45348485,43.20692682,,,,,,,,,,,,,24.6736351,12.31698974,44.14794875,,,,,,700,,,-888,16,0.77727667,4481,5765,,,0.481,,,,,27.87340509,,,,,0.691166989,2144,3102,0.624959008,0.75737497,0.089322382,261,2922,0.04620792,0.132436844,0.816247582,2532,3102,0.758913455,0.873581709,7515,,,,,0.193612775,1455,7515,,,0.263339987,1979,7515,,,0.00904857,68,7515,,,0.048702595,366,7515,,,0.005189621,39,7515,,,0.000266134,2,7515,,,0.058948769,443,7515,,,0.85508982,6426,7515,,,0.005456835,39,7147,0,0.018808339,0.49833666,3745,7515,,,0.443762508,3326,7495,, -41,027,41027,OR,Hood River County,2024,1,4633.679263,195,66067,3588.265073,5679.093453,0,,,,2,,,,2,,,,2,3411.045311,2053.672102,5326.769787,1,5153.27068,3671.196623,6635.344738,,,,,2,,0.148,,,0.121,0.178,3.571036418,,,2.802770306,4.491989047,5.300532044,,,4.273627755,6.440895538,0.056213018,95,1690,0.045231354,0.067194682,0,,,,,,,,,,0.057863502,0.040236218,0.075490785,0.051254089,0.036981242,0.065526937,,,,,,,0.129,,,0.098,0.166,0.311,,,0.239,0.386,9.5,0.020909606,0.056,,,0.209,,,0.165,0.258,0.913125078,21894,23977,,,0.188868836,,,0.150583682,0.230467777,0.357142857,5,14,0.212111468,0.496744159,270.2,65,24057,,,12.0255543,64,5322,9.261142155,15.35636438,,,,,,,,,,18.83012821,13.83566994,25.04007866,5.988023952,3.35145155,9.876334879,,,,,,,0.124481328,2490,20003,0.106608987,0.142353668,0.002203101,53,24057,,,453.9056604,0.001330672,32,24048,,,751.5,0.004324684,104,24048,,,231.2307692,1427,,,,,,,,,1506,0.38,,,,,,,,0.26,0.39,0.42,,,,,,0.41,,0.28,0.45,0.841469973,14082,16735,0.818864977,0.864074969,0.65216696,4078,6253,0.569371441,0.734962479,0.035749197,512,14322,,,0.119,615,,0.072531915,0.165468085,,,,,,,0.25862069,0,0.978745123,0.065952891,0.02287258,0.109033202,0.015696784,0,0.038158453,4.320067694,163372,37817,3.299425703,5.340709686,0.132164404,701,5304,0.08125959,0.183069219,11.63902399,28,24057,,,63.81675232,75,117524,50.19592398,79.99485165,,,,,,,,,,,,,83.58836774,64.08672224,107.156515,,,,6.3,,,,,1,,,,,0.141732284,1260,8890,0.108850933,0.174613634,0.085682074,0.055820383,0.115543766,0.034870641,0.017282918,0.052458365,0.028683915,0.011178517,0.046189312,0.612693376,7723,12605,0.571230272,0.654156479,,,,,,,,,,0.662350354,0.576530505,0.748170204,0.645282602,0.598242546,0.692322657,0.205,,12605,0.161825976,0.248174024,81.00594587,,,79.94669594,82.06519579,,,,,,,,,,91.79277825,79.20228415,104.3832724,80.17940634,78.83672383,81.52208885,,,,225.2661757,195,66067,192.5388595,257.9934919,,,,,,,,,,139.02847,89.97189536,205.2334476,251.427154,209.0368639,293.8174441,,,,41.05258837,10,24359,19.68631182,75.49717165,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.106,,,0.088,0.123,0.16,,,0.137,0.188,0.086,,,0.071,0.101,99,20,20208,,,0.056,1350,,,,0.020909606,467.2460604,22346,,,14.14047144,10,70719,6.780905692,26.00483044,,,,,,,,,,,,,,,,,,,0.287,,,0.272,0.301,0.143693601,2086,14517,0.121055303,0.166331899,0.075,435,5800,0.052361702,0.097638298,0.001205922,29,24048,,,829.2413793,0.9,302.4,336,,,,,,,,2.893930101,,,,,,,,2.430147711,3.276861288,2.879303048,,,,,,,,2.667007231,3.01632772,0.079083804,,,,,3053.416,,,,,0.762869848,44605,58470,0.639815111,0.885924584,75818,,,65780.89362,85855.10638,41563,11053.7234,72072.2766,,,,,,,75099,52588.19149,97609.80851,82197,73395.46809,90998.53192,,,,,,,,,,,63.74684089,,,,,0.429845156,,75818,,,13.77410468,20,1452,,,,,,,,,,,,,,,,,,,,,,,,,,14.73465076,18,117524,8.583477056,23.59160323,15.31602056,,,,,,,,,,,,,16.96383069,8.76545886,29.63239831,,,,8.50890031,10,117524,4.080348436,15.64817062,,,,,,,,,,,,,13.4819948,6.465140545,24.79386845,,,,9.152312789,15,163893,5.122479992,15.09534811,,,,,,,,,,,,,,,,,,,10.8,,2500,,,15,12,0.879408801,13090,14885,,,0.57,,,,,80.75671215,,,,,0.682597633,6170,9039,0.647105051,0.718090214,0.124677154,1062,8518,0.088159952,0.161194356,0.891912822,8062,9039,0.861772557,0.922053088,24048,,,,,0.221515303,5327,24048,,,0.182052562,4378,24048,,,0.005114771,123,24048,,,0.012641384,304,24048,,,0.017090818,411,24048,,,0.00237026,57,24048,,,0.310753493,7473,24048,,,0.63414837,15250,24048,,,0.081040432,1832,22606,0.056257583,0.10582328,0.496714904,11945,24048,,,0.517954707,12419,23977,, -41,029,41029,OR,Jackson County,2024,1,7543.954522,3294,605108,7116.196325,7971.712719,0,,,,2,3338.799821,1825.352931,5601.938771,1,8220.828463,4872.183956,12992.45318,1,5083.667644,4207.583847,5959.751441,,8223.204165,7694.08044,8752.327889,,,,,2,,0.15,,,0.125,0.176,3.693640966,,,2.93279386,4.482043542,5.7712902,,,4.807844279,6.729352122,0.072797689,1109,15234,0.068672013,0.076923366,0,,,,0.074349442,0.042999098,0.105699787,0.179775281,0.099995566,0.259554996,0.071895425,0.062963403,0.080827447,0.071759917,0.066838008,0.076681825,,,,0.072378139,0.052859437,0.091896841,0.151,,,0.118,0.186,0.301,,,0.248,0.355,8,0.058202305,0.105,,,0.205,,,0.167,0.245,0.856968812,191326,223259,,,0.164218647,,,0.134369195,0.19818323,0.330769231,43,130,0.286511173,0.375220592,307.5,688,223734,,,15.29189317,647,42310,14.11356791,16.47021843,,,,,,,,,,22.77455382,19.6794567,25.86965094,12.41243284,11.13902784,13.68583784,,,,23.56267672,17.48867283,31.06445177,0.079228153,13648,172262,0.069696238,0.088760067,0.000960963,215,223734,,,1040.623256,0.000852719,189,221644,,,1172.719577,0.006537511,1449,221644,,,152.9634231,1623,,,,,,,,1946,1607,0.43,,,,,0.44,0.42,0.47,0.33,0.43,0.42,,,,,0.36,0.42,0.26,0.29,0.42,0.910129494,145628,160008,0.901883382,0.918375605,0.640956002,35400,55230,0.606649286,0.675262719,0.046770435,4997,106841,,,0.144,6314,,0.095148936,0.192851064,0.195959596,0,0.433326373,0.139442231,0,0.338296395,0.002673797,0,0.142663409,0.230377907,0.179273961,0.281481853,0.132897529,0.106921589,0.158873469,4.408523763,125784,28532,4.191840071,4.625207455,0.207016379,9353,45180,0.178814549,0.235218209,8.671011111,194,223734,,,91.15910708,1006,1103565,85.52588149,96.79233267,,,,,,,,,,40.81223029,31.21812234,52.42501717,103.0138922,96.3207327,109.7070516,,,,8.7,,,,,1,,,,,0.190154978,17055,89690,0.174489517,0.20582044,0.154778003,0.141117072,0.168438935,0.036403167,0.02899162,0.043814713,0.012487457,0.007754169,0.017220744,0.745681402,72434,97138,0.73051302,0.760849784,0.69295302,0.581387902,0.804518138,0.585289515,0.372663684,0.797915346,,,,0.742326909,0.694077034,0.790576784,0.752972973,0.736728431,0.769217515,0.174,,97138,0.157533289,0.190466711,77.91097682,,,77.54718438,78.27476926,81.76579602,78.18045016,85.35114189,85.1685552,82.15704696,88.18006344,77.96669095,69.66253933,86.27084258,84.00349988,81.66557003,86.34142974,77.29303441,76.8716399,77.71442892,,,,368.345769,3294,605108,354.6798499,382.0116881,,,,190.0297145,120.4625381,285.1378755,524.0465136,353.5719821,748.1089833,265.6758326,225.5167685,305.8348967,387.4721835,371.8361458,403.1082212,,,,43.55945866,87,199727,34.88934072,53.73043133,,,,,,,,,,44.6238844,27.62288777,68.2123475,45.74362909,35.07137813,58.64126804,,,,5.063777963,79,15601,4.0090407,6.310978217,,,,,,,,,,,,,5.065581185,3.826485589,6.578078517,,,,,,,0.114,,,0.097,0.133,0.184,,,0.159,0.21,0.088,,,0.074,0.103,166.7,319,191331,,,0.105,23370,,,,0.058202305,11827.05752,203206,,,22.65491612,151,666522,19.0413995,26.26843273,,,,,,,,,,15.15512351,8.285447051,25.4277221,24.49184139,20.28161128,28.70207151,,,,0.321,,,0.307,0.335,0.093734482,11892,126869,0.080628099,0.106840865,0.03996046,1900,47547,0.028045567,0.051875354,0.001651297,366,221644,,,605.5846995,0.821238959,1766.485,2151,,,0.091851707,939,10223,0.059840019,0.123863395,2.858986476,,,,,,3.447403938,,2.52241457,2.976423126,2.65005819,,,,,,3.310876685,,2.28677124,2.773839824,0.073486095,,,,,700.6438181,,,,,0.829942253,46134,55587,0.784311767,0.875572739,68239,,,63285.97872,73192.02128,48875,24910.57447,72839.42553,69808,35826.7234,103789.2766,37159,17980.78723,56337.21277,63929,55091.7234,72766.2766,67909,65022.02128,70795.97872,,,,,,,,,,,71.60674259,,,,,0.328683011,,68239,,,6.392771906,75,11732,,,3.458042526,53,1532659,2.590311148,4.523204766,,,,,,,,,,4.931671689,2.364928267,9.069519824,3.243415057,2.317143268,4.416610742,,,,25.73060358,304,1103565,22.67680699,28.78440017,27.54708604,,,,,,,,,,10.79943907,5.904153831,18.11962371,28.75921239,25.08319251,32.43523227,,,,19.8447758,219,1103565,17.21644387,22.47310772,,,,,,,,,,7.359582511,3.673877073,13.16832604,22.75361794,19.60798167,25.89925421,,,,13.44069359,206,1532659,11.6052369,15.27615028,,,,,,,,,,8.383841871,4.883896844,13.42334299,14.75753851,12.6134915,16.90158551,,,,19.17073171,,20500,,,148,245,0.756641776,127165,168065,,,0.686,,,,,86.47187236,,,,,0.650351596,58451,89876,0.63400401,0.666699181,0.150792827,13076,86715,0.138449127,0.163136528,0.882527037,79318,89876,0.871033075,0.894021,221644,,,,,0.202676364,44922,221644,,,0.232936601,51629,221644,,,0.008202343,1818,221644,,,0.017329592,3841,221644,,,0.01732508,3840,221644,,,0.003591345,796,221644,,,0.148625724,32942,221644,,,0.783580877,173676,221644,,,0.014021745,2961,211172,0.010702688,0.017340803,0.508630958,112735,221644,,,0.205953623,45981,223259,, -41,031,41031,OR,Jefferson County,2024,1,11863.17604,448,68941,10186.46623,13539.88585,0,26144.46615,20328.94907,31959.98324,,,,,2,,,,2,7063.089349,4525.454619,10509.31708,1,9746.899831,7659.233519,11834.56614,,,,,2,,0.176,,,0.15,0.205,4.033514115,,,3.179576927,4.965210897,5.609924702,,,4.50252883,6.82262507,0.070778564,140,1978,0.059476613,0.082080515,0,0.069414317,0.046213231,0.092615403,,,,,,,0.065298508,0.04438332,0.086213695,0.071925754,0.054677863,0.089173646,,,,,,,0.173,,,0.141,0.209,0.361,,,0.286,0.448,7.9,0.04103735,0.12,,,0.231,,,0.188,0.28,0.601869235,14747,24502,,,0.167853989,,,0.13379481,0.208088142,0.378378378,14,37,0.293800947,0.460584183,626.3,157,25068,,,25.10544286,125,4979,20.70426468,29.50662104,43.39796861,31.88719498,57.71009819,,,,,,,26.57601978,19.23319729,35.79772423,14.45663011,9.681832073,20.76213232,,,,,,,0.092195122,1701,18450,0.07789725,0.106492994,0.000638264,16,25068,,,1566.75,0.000513225,13,25330,,,1948.461539,0.002803,71,25330,,,356.7605634,1612,,,,,2246,,,,1459,0.41,,,,,0.29,,,0.36,0.43,0.36,,,,,0.22,,,0.32,0.37,0.878722157,14991,17060,0.862186465,0.895257849,0.575864384,3431,5958,0.501409711,0.650319058,0.055129574,568,10303,,,0.196,1100,,0.119744681,0.272255319,0.435897436,0.288865884,0.582928988,,,,,,,0.101939334,0.005829836,0.198048831,0.051662404,0.000395752,0.102929056,4.428586257,127995,28902,3.413975974,5.44319654,0.287552891,1631,5672,0.208197146,0.366908637,6.781554173,17,25068,,,115.8880945,142,122532,96.82687334,134.9493157,227.9882749,164.313895,308.1739159,,,,,,,48.43592331,25.02754837,84.60781049,116.1644132,92.9165362,143.4621053,,,,8,,,,,0,,,,,0.194163192,1630,8395,0.16235104,0.225975345,0.143636364,0.112852854,0.174419874,0.043478261,0.027571591,0.05938493,0.024419297,0.007832683,0.041005912,0.715942321,7100,9917,0.671261837,0.760622806,0.685658153,0.572174404,0.799141903,,,,,,,0.694960212,0.567017977,0.822902448,0.743811881,0.693540031,0.794083732,0.395,,9917,0.333954336,0.456045664,74.22114194,,,72.97413165,75.46815224,62.8846981,59.7877821,65.9816141,,,,,,,79.23034566,74.8823748,83.57831652,75.94564431,74.37429726,77.51699136,,,,495.454351,448,68941,446.2252091,544.6834928,1120.017051,914.4531691,1325.580932,,,,,,,295.5910584,202.1840651,417.2863782,432.2982305,374.4367629,490.159698,,,,75.78779418,19,25070,45.62920289,118.3520286,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.125,,,0.108,0.144,0.184,,,0.16,0.211,0.102,,,0.086,0.119,129.1,27,20919,,,0.12,2900,,,,0.04103735,891.3312341,21720,,,,,,,,,,,,,,,,,,,,,,,,,,0.311,,,0.298,0.324,0.112773835,1462,12964,0.093710005,0.131837665,0.044316997,255,5754,0.030019125,0.058614869,0.000631662,16,25330,,,1583.125,0.868846154,225.9,260,,,,,,,,2.796049442,,,,,,,,2.658468154,3.090660352,2.710840101,,,,,,,,2.577649994,2.984421774,0.221182198,,,,,-1721.05295,,,,,0.916771415,44490,48529,0.794287162,1.039255668,65600,,,59009.87234,72190.12766,42750,19930.59575,65569.40426,,,,,,,76739,70822.06383,82655.93617,69269,61047.7234,77490.2766,,,,,,,,,,,,,,,,0.294070122,,65600,,,7.115135834,11,1546,,,8.319566432,14,168278,4.548384386,13.95881881,,,,,,,,,,,,,,,,,,,29.73077966,38,122532,20.58942919,41.54578458,31.01230699,,,,,,,,,,,,,30.97652167,18.64988957,48.37367571,,,,20.40283355,25,122532,13.20363811,30.11860714,,,,,,,,,,,,,25.66423082,15.45154345,40.0778755,,,,34.46677522,58,168278,26.17206746,44.55629954,77.81495604,47.53139672,120.1788884,,,,,,,,,,31.53330706,21.56875868,44.51562089,,,,26.8,,2500,,,27,40,0.676106697,11913,17620,,,0.538,,,,,38.47640685,,,,,0.701548132,6027,8591,0.669270792,0.733825472,0.131758402,1082,8212,0.098731615,0.16478519,0.880456292,7564,8591,0.858048645,0.902863938,25330,,,,,0.22641137,5735,25330,,,0.20106593,5093,25330,,,0.007422029,188,25330,,,0.179115673,4537,25330,,,0.008645875,219,25330,,,0.002250296,57,25330,,,0.211014607,5345,25330,,,0.607935255,15399,25330,,,0.015955377,369,23127,0.007619755,0.024290998,0.47536518,12041,25330,,,0.669945311,16415,24502,, -41,033,41033,OR,Josephine County,2024,1,9952.73383,1775,234599,9132.634119,10772.83354,0,,,,2,,,,2,,,,2,8367.929792,6055.912282,11271.54651,,10320.42938,9396.978714,11243.88004,,,,,2,,0.171,,,0.143,0.203,3.924627534,,,3.107784598,4.830000499,5.674746659,,,4.664329637,6.761843243,0.07033957,406,5772,0.063742442,0.076936699,0,,,,,,,,,,0.059773829,0.04109789,0.078449768,0.070152787,0.062809373,0.077496201,,,,0.089068826,0.053545531,0.124592121,0.19,,,0.15,0.232,0.322,,,0.259,0.387,7.2,0.091136449,0.127,,,0.233,,,0.189,0.283,0.708968101,62453,88090,,,0.163312123,,,0.131892173,0.198932562,0.474226804,46,97,0.42814114,0.518521372,251.3,222,88346,,,19.9599466,299,14980,17.69749211,22.22240109,,,,,,,,,,22.57761054,16.64694771,29.93463602,18.81145789,16.32565215,21.29726362,,,,25.16556291,15.1513128,39.2991438,0.083764604,5406,64538,0.070658221,0.096870987,0.000735744,65,88346,,,1359.169231,0.000854896,75,87730,,,1169.733333,0.009278468,814,87730,,,107.7764128,1536,,,,,,,,,1564,0.36,,,,,0.27,0.32,,0.28,0.37,0.34,,,,,0.36,0.39,,0.25,0.34,0.910034549,59792,65703,0.898259844,0.921809255,0.595925297,11583,19437,0.546643472,0.645207123,0.055563103,2045,36805,,,0.209,3353,,0.139893617,0.278106383,,,,,,,0.388235294,0.006148649,0.770321939,0.350996377,0.249534571,0.452458183,0.182304327,0.140222773,0.22438588,4.668328237,111447,23873,4.123234083,5.213422391,0.229724043,3821,16633,0.179262736,0.280185349,7.470626854,66,88346,,,126.5906666,554,437631,116.0491553,137.1321778,,,,,,,,,,73.03748284,47.26600791,107.8177326,135.2127285,123.489069,146.9363881,,,,9.5,,,,,1,,,,,0.225379047,8250,36605,0.200700675,0.250057418,0.175256304,0.152598601,0.197914007,0.046168556,0.035565375,0.056771738,0.025406365,0.014612103,0.036200628,0.739776499,24295,32841,0.711499083,0.768053914,,,,,,,,,,0.606334842,0.527694977,0.684974706,0.754665024,0.722128292,0.787201756,0.248,,32841,0.213901748,0.282098252,75.31998846,,,74.70388147,75.93609546,,,,,,,,,,78.80154846,76.14687872,81.45621821,74.94160232,74.2632993,75.61990533,,,,470.24777,1775,234599,445.4053177,495.0902223,,,,,,,,,,333.2003567,256.0403028,426.3079989,484.2264062,457.0711386,511.3816738,,,,45.59290896,34,74573,31.57441485,63.71152038,,,,,,,,,,,,,51.31713993,34.62345881,73.25840813,,,,5.79907897,34,5863,4.016030767,8.103631604,,,,,,,,,,,,,6.180469716,4.169936964,8.82300482,,,,,,,0.126,,,0.107,0.147,0.193,,,0.166,0.221,0.094,,,0.08,0.11,103.3,79,76480,,,0.127,11140,,,,0.091136449,7538.169128,82713,,,30.31612136,80,263886,24.0387988,37.73103725,,,,,,,,,,,,,32.14315593,25.1951032,40.41519279,,,,0.337,,,0.322,0.352,0.100677719,4828,47955,0.083996868,0.11735857,0.035818839,624,17421,0.023903946,0.047733733,0.001265246,111,87730,,,790.3603604,0.77,644.49,837,,,0.083718402,308,3679,0.040627037,0.126809767,2.955329653,,,,,,,,2.921833326,2.963042916,2.64206212,,,,,,,,2.525082823,2.657141624,0.016857699,,,,,2978.7385,,,,,0.843679186,45422,53838,0.73418574,0.953172632,54983,,,49394.91489,60571.08511,55938,42066.68085,69809.31915,67232,12997.78723,121466.2128,,,,40946,30466.85106,51425.14894,56939,52947.51064,60930.48936,,,,,,,,,,,66.69897756,,,,,0.379790117,,54983,,,7.80880265,33,4226,,,7.233510883,44,608280,5.255880081,9.710650733,,,,,,,,,,,,,8.163358292,5.907862873,10.99599005,,,,31.53257429,145,437631,25.91531155,37.14983703,33.1329362,,,,,,,,,,,,,34.47268469,28.05770132,40.88766806,,,,29.01988205,127,437631,23.97268972,34.06707437,,,,,,,,,,,,,31.48789568,25.83037398,37.14541739,,,,24.16650227,147,608280,20.25979202,28.07321251,,,,,,,,,,,,,24.67992042,20.43735888,28.92248195,,,,13,,8000,,,40,64,0.752894008,51641,68590,,,0.618,,,,,81.37927303,,,,,0.706020436,25565,36210,0.686449905,0.725590968,0.175335259,6132,34973,0.152389294,0.198281223,0.876746755,31747,36210,0.861539576,0.891953934,87730,,,,,0.189467685,16622,87730,,,0.272837114,23936,87730,,,0.005619514,493,87730,,,0.017656446,1549,87730,,,0.011683575,1025,87730,,,0.002747065,241,87730,,,0.087894677,7711,87730,,,0.849652342,74540,87730,,,0.006937491,582,83892,0.003132598,0.010742384,0.511991337,44917,87730,,,0.431422409,38004,88090,, -41,035,41035,OR,Klamath County,2024,1,11377.64033,1421,190006,10424.16878,12331.11188,0,32379.63172,24108.76261,42573.23587,,,,,2,,,,2,5055.827435,3643.795711,6834.009948,,11198.87226,10103.76988,12293.97463,,,,,2,,0.182,,,0.152,0.213,4.139346512,,,3.28231178,5.035348751,5.86963514,,,4.799858433,6.914234576,0.08506301,459,5396,0.077619358,0.092506662,0,0.072463768,0.037145712,0.107781825,,,,,,,0.079268293,0.0623882,0.096148385,0.084864865,0.075885166,0.093844564,,,,0.103896104,0.069819247,0.137972961,0.187,,,0.147,0.23,0.355,,,0.286,0.426,6.6,0.127718753,0.136,,,0.231,,,0.186,0.277,0.746430784,51812,69413,,,0.154017293,,,0.122410867,0.18874845,0.252873563,22,87,0.197855963,0.310380835,376.3,264,70164,,,22.56158392,294,13031,19.98258006,25.14058777,20,9.590777392,36.78071208,,,,,,,24.45447705,18.87344911,31.16923846,21.51884322,18.4509228,24.58676364,,,,32.47631935,20.8081906,48.3221889,0.09528597,5118,53712,0.080988097,0.109583842,0.00104042,73,70164,,,961.1506849,0.00088304,62,70212,,,1132.451613,0.005184299,364,70212,,,192.8901099,1902,,,,,1553,,,1632,1886,0.37,,,,,0.26,0.38,,0.28,0.38,0.33,,,,,0.2,0.37,0.2,0.25,0.33,0.893092206,43557,48771,0.881164253,0.90502016,0.572364467,9523,16638,0.523447329,0.621281605,0.05997229,1818,30314,,,0.194,2914,,0.12012766,0.26787234,0.380359613,0.130899272,0.629819954,0.292553192,0,0.62167464,,,,0.275872265,0.180863982,0.370880548,0.2026086,0.152941592,0.252275607,4.939173956,109541,22178,4.390874409,5.487473503,0.230529388,3475,15074,0.182165066,0.278893711,9.549056496,67,70164,,,114.4181501,391,341729,103.0768559,125.7594442,216.0691421,142.3909262,314.3692577,,,,,,,65.82579522,44.72543419,93.43446193,118.8469191,105.680374,132.0134642,,,,10.4,,,,,0,,,,,0.196475771,5575,28375,0.174996638,0.217954904,0.162757386,0.142364118,0.183150654,0.027312775,0.020066992,0.034558559,0.017444934,0.010910538,0.02397933,0.808671662,21691,26823,0.784014854,0.833328471,0.75620438,0.591290389,0.921118371,,,,,,,0.736533958,0.711241565,0.76182635,0.823475091,0.804955991,0.841994191,0.154,,26823,0.133604987,0.174395013,73.85768612,,,73.16457478,74.55079747,61.38982151,57.02172311,65.75791992,,,,,,,84.4451711,79.62547723,89.26486498,73.80234343,73.01989048,74.58479637,,,,529.0300202,1421,190006,498.8659948,559.1940456,1172.255088,932.32926,1455.077656,,,,,,,289.8823508,222.2511361,371.616091,528.5237457,494.7673942,562.2800973,,,,65.06180872,43,66091,47.08555357,87.63782937,,,,,,,,,,,,,65.46797914,43.50299669,94.61945789,,,,6.76540501,37,5469,4.763469477,9.325219627,,,,,,,,,,,,,6.818777865,4.454252089,9.991089453,,,,,,,0.128,,,0.109,0.149,0.194,,,0.167,0.222,0.1,,,0.084,0.116,60.9,36,59102,,,0.136,9380,,,,0.127718753,8477.970795,66380,,,27.03472514,56,207141,20.42174084,35.10683931,,,,,,,,,,,,,26.4224062,19.04294631,35.71541734,,,,0.321,,,0.305,0.336,0.116460268,4514,38760,0.097396439,0.135524098,0.041278551,647,15674,0.028172168,0.054384933,0.001253347,88,70212,,,797.8636364,0.765263158,567.06,741,,,0.142728094,474,3321,0.091505057,0.193951131,2.748903991,,,,,,,,2.485320485,2.868888887,2.684187861,,,,,,,,2.440267214,2.813197329,0.070476191,,,,,176.7515,,,,,0.78442617,43498,55452,0.707853066,0.860999274,54961,,,48251.7234,61670.2766,45216,27428.25532,63003.74468,,,,,,,52188,35471.40426,68904.59575,58043,54663.93617,61422.06383,,,,,,,,,,,64.52786701,,,,,0.350994341,,54961,,,5.928853755,24,4048,,,7.381038744,35,474188,5.141163927,10.26523813,,,,,,,,,,,,,5.713928108,3.537011557,8.734346078,,,,35.87294962,114,341729,29.02878739,42.71711185,33.35976754,96.02868672,47.93717442,171.8218464,,,,,,,,,,37.31042885,29.71754831,46.25189012,,,,26.62928812,91,341729,21.44024168,32.69486491,,,,,,,,,,,,,26.9588858,21.05511348,34.00496617,,,,21.93222941,104,474188,17.71699063,26.1474682,,,,,,,,,,,,,23.94407969,19.20385208,29.49977586,,,,29.07692308,,6500,,,100,89,0.719412341,36726,51050,,,0.572,,,,,48.72156596,,,,,0.670368268,18895,28186,0.646603752,0.694132784,0.159007218,4318,27156,0.136835574,0.181178862,0.84240403,23744,28186,0.820187853,0.864620207,70212,,,,,0.218865721,15367,70212,,,0.223095767,15664,70212,,,0.007050077,495,70212,,,0.050105395,3518,70212,,,0.01209195,849,70212,,,0.002406996,169,70212,,,0.149390418,10489,70212,,,0.757918874,53215,70212,,,0.014141014,927,65554,0.009352881,0.018929146,0.497051786,34899,70212,,,0.377522942,26205,69413,, -41,037,41037,OR,Lake County,2024,1,7991.063323,167,21585,5807.361686,10174.76496,0,,,,2,,,,2,,,,2,,,,2,8167.187398,5945.120365,10389.25443,,,,,2,,0.182,,,0.153,0.213,4.072507653,,,3.197340234,5.051164772,5.69837859,,,4.557921368,6.913416826,0.100591716,51,507,0.074409184,0.126774248,0,,,,,,,,,,,,,0.086956522,0.059813843,0.114099201,,,,,,,0.193,,,0.154,0.236,0.358,,,0.281,0.441,6,0.184907139,0.139,,,0.242,,,0.197,0.292,0.215563726,1759,8160,,,0.16087216,,,0.127810898,0.198070609,0.2,4,20,0.089212428,0.331567708,157.1,13,8276,,,24.09638554,32,1328,16.48190987,34.01690669,,,,,,,,,,,,,26.2605042,16.99441371,38.76568456,,,,,,,0.092547236,529,5716,0.078249364,0.106845108,0.000483325,4,8276,,,2069,0.000357782,3,8385,,,2795,0.002504472,21,8385,,,399.2857143,2292,,,,,,,,,2359,0.35,,,,,,,,,0.34,0.12,,,,,,,,0.22,0.12,0.870473083,5336,6130,0.83793368,0.903012487,0.55640327,1021,1835,0.441864568,0.670941972,0.054412561,201,3694,,,0.188,299,,0.117702128,0.258297872,,,,,,,,,,0.58778626,0.199772562,0.975799957,0.084938704,0.014573665,0.155303743,5.073533606,106737,21038,3.790802107,6.356265105,0.254061079,391,1539,0.105192546,0.402929611,12.08313195,10,8276,,,128.0249021,51,39836,95.32294869,168.3291028,,,,,,,,,,,,,140.7649226,103.4287705,187.1875059,,,,6.6,,,,,0,,,,,0.181046676,640,3535,0.128198672,0.23389468,0.12810271,0.076169979,0.180035442,0.03960396,0.013622365,0.065585556,0.026874116,0.005911892,0.04783634,0.704972012,2141,3037,0.643874464,0.76606956,,,,,,,,,,,,,0.668678977,0.610177837,0.727180118,0.115,,3037,0.056205101,0.173794899,76.52542158,,,74.7295462,78.32129696,,,,,,,,,,,,,76.24486045,74.43218779,78.0575331,,,,446.0124105,167,21585,370.5122156,521.5126053,,,,,,,,,,,,,472.7377445,388.6417165,556.8337725,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.13,,,0.112,0.151,0.193,,,0.167,0.221,0.101,,,0.086,0.118,70,5,7139,,,0.139,1130,,,,0.184907139,1459.841863,7895,,,,,,,,,,,,,,,,,,,,,,,,,,0.31,,,0.294,0.326,0.110413143,457,4139,0.091349314,0.129476973,0.047101449,78,1656,0.031612088,0.062590811,0.000715564,6,8385,,,1397.5,,,,,,,,,,,3.042470873,,,,,,,,,3.023921301,2.939681138,,,,,,,,,2.957711568,0.042218452,,,,,569.7736667,,,,,0.761522701,39769,52223,0.574943917,0.948101484,54707,,,47081.46809,62332.53192,,,,,,,,,,46552,9737.361702,83366.6383,54502,47399.53192,61604.46809,,,,,,,,,,,,,,,,0.352623979,,54707,,,9.661835749,4,414,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,30.12350638,12,39836,15.56525532,52.6197034,,,,,,,,,,,,,29.94998353,14.36218125,55.07908605,,,,41.43994811,23,55502,26.26937234,62.18026899,,,,,,,,,,,,,42.76702662,26.12321092,66.050204,,,,,,700,,,7,-888,0.699198718,4363,6240,,,0.424,,,,,18.57810337,,,,,0.624851367,2102,3364,0.566514048,0.683188687,0.146649401,453,3089,0.09152715,0.201771652,0.687871582,2314,3364,0.627191542,0.748551621,8385,,,,,0.192009541,1610,8385,,,0.258914729,2171,8385,,,0.007513417,63,8385,,,0.025998807,218,8385,,,0.012760883,107,8385,,,0.001431127,12,8385,,,0.102802624,862,8385,,,0.823017293,6901,8385,,,0.025927352,202,7791,0,0.052968049,0.460822898,3864,8385,,,1,8160,8160,, -41,039,41039,OR,Lane County,2024,1,7414.23634,5490,1057947,7098.730714,7729.741967,0,8557.710138,5773.851094,12216.66334,,2834.883532,1951.403382,3981.230477,,14362.92035,10351.52965,19414.49581,,4780.114323,3954.343016,5605.88563,,7794.102526,7429.817991,8158.38706,,,,,2,,0.152,,,0.126,0.179,3.907789276,,,3.196505948,4.700559227,5.844752603,,,5.039510842,6.711126774,0.067891198,1545,22757,0.064622773,0.071159624,0,0.070707071,0.035001892,0.10641225,0.087394958,0.064702465,0.110087451,0.102803738,0.062112832,0.143494645,0.070908515,0.06195776,0.079859271,0.06649677,0.062737374,0.070256166,,,,0.05920444,0.045135286,0.073273595,0.144,,,0.112,0.179,0.349,,,0.303,0.398,7.8,0.055280518,0.119,,,0.203,,,0.167,0.242,0.90307099,345850,382971,,,0.184045808,,,0.155909088,0.216034785,0.301435407,63,209,0.26654502,0.336781117,389.1,1491,383189,,,9.371417767,793,84619,8.719151714,10.02368382,,,,,,,,,,16.46875271,14.12700567,18.81049975,8.139098664,7.424960716,8.853236613,,,,9.018759019,6.693896778,11.89010943,0.076013363,22959,302039,0.067672937,0.084353788,0.000822049,315,383189,,,1216.473016,0.000758461,290,382353,,,1318.458621,0.010845998,4147,382353,,,92.19990355,1882,,,,,1472,953,1386,2163,1888,0.43,,,,,0.42,0.37,0.23,0.29,0.44,0.46,,,,,0.45,0.47,0.3,0.34,0.46,0.928417412,245857,264813,0.923917489,0.932917334,0.698129954,67646,96896,0.674999289,0.721260618,0.045655054,8373,183397,,,0.149,9567,,0.109680851,0.188319149,0.135738832,0.007886248,0.263591415,0.103092784,0.004908981,0.201276586,0.325084365,0.158713182,0.491455547,0.251092466,0.200321897,0.301863036,0.14826561,0.130500141,0.166031078,4.541477023,123728,27244,4.307389172,4.775564873,0.25100351,16946,67513,0.227895925,0.274111096,9.212164232,353,383189,,,102.4912738,1950,1902601,97.94217198,107.0403756,98.29458888,60.04088851,151.8080204,39.68390904,25.15619421,59.54534817,102.7497798,63.60373316,157.0639531,42.20620262,33.19785576,52.90584047,114.5788677,109.2439375,119.9137979,,,,9.2,,,,,1,,,,,0.19923632,30785,154515,0.189590141,0.208882499,0.170525349,0.161097952,0.179952747,0.026275766,0.022222204,0.030329328,0.017732906,0.014545182,0.02092063,0.678794045,121422,178879,0.666268076,0.691320014,0.629961588,0.538328878,0.721594297,0.613194305,0.533801107,0.692587504,0.630693069,0.492986448,0.768399691,0.642902064,0.599993857,0.685810271,0.695956173,0.683355308,0.708557039,0.18,,178879,0.169544723,0.190455277,77.85122704,,,77.5745307,78.12792337,78.99918074,74.87519572,83.12316576,84.31305333,82.35231269,86.27379397,73.79378912,69.86377961,77.72379862,84.3840892,82.34876069,86.41941771,77.45032691,77.1457556,77.75489822,,,,373.3485834,5490,1057947,362.7806823,383.9164845,404.9672006,301.5246804,532.4570799,168.9410622,125.3913127,222.7277292,628.688144,490.0932509,794.3096484,224.944303,190.8433675,259.0452385,388.0763235,376.301016,399.8516311,,,,37.26011874,121,324744,30.62104304,43.89919444,,,,,,,,,,38.40762007,23.46037214,59.31745416,38.76219394,31.16938137,47.64531722,,,,4.793699709,112,23364,3.905894099,5.681505319,,,,,,,,,,7.18076803,4.551990958,10.77467777,4.319408923,3.403202948,5.406384369,,,,,,,0.119,,,0.101,0.139,0.183,,,0.159,0.208,0.09,,,0.077,0.105,137.2,460,335382,,,0.119,45230,,,,0.055280518,19442.98738,351715,,,27.60742074,317,1148242,24.56826977,30.64657171,,,,,,,,,,17.3359246,10.43735907,27.0721937,29.88511431,26.37202982,33.3981988,,,,0.304,,,0.289,0.317,0.089236222,20896,234165,0.078512818,0.099959627,0.032129074,2306,71773,0.023788648,0.040469499,0.001059231,405,382353,,,944.0814815,0.779126307,2831.345,3634,,,0.088039087,1874,21286,0.066986002,0.109092172,,,,,,,,,,,,,,,,,,,,,0.055805996,,,,,1035.243044,,,,,0.854694526,47327,55373,0.819319932,0.89006912,64192,,,60542.46809,67841.53192,64261,37186.78723,91335.21277,57418,46335.95745,68500.04255,61375,41340.10638,81409.89362,61095,54416.70213,67773.29787,66322,64400.12766,68243.87234,,,,,,,,,,,63.66365648,,,,,0.45438684,,64192,,,8.683394418,154,17735,,,2.884234056,76,2635015,2.272448387,3.610049012,,,,,,,,,,,,,3.067493217,2.372399032,3.902603486,,,,23.93386586,486,1902601,21.71613273,26.15159899,25.54397901,,,,,,,,,,5.22639472,2.38984047,9.921325172,26.23870501,23.65902495,28.81838507,,,,15.71532865,299,1902601,13.93400044,17.49665685,,,,,,,,,,,,,17.71704839,15.61920936,19.81488742,,,,13.09290459,345,2635015,11.71130395,14.47450524,,,,,,,,,,9.99795875,6.405880822,14.87617011,13.75724231,12.18998031,15.3245043,,,,11.28526646,,31900,,,137,223,0.746579553,222253,297695,,,0.703,,,,,134.8220794,,,,,0.593149709,94086,158621,0.583501817,0.602797601,0.17398253,26889,154550,0.164089311,0.183875749,0.907786485,143994,158621,0.899846832,0.915726138,382353,,,,,0.17269382,66030,382353,,,0.211877506,81012,382353,,,0.011455383,4380,382353,,,0.015940767,6095,382353,,,0.032412457,12393,382353,,,0.00289,1105,382353,,,0.100726292,38513,382353,,,0.801714646,306538,382353,,,0.01028032,3755,365261,0.008109492,0.012451148,0.505245153,193182,382353,,,0.180308692,69053,382971,, -41,041,41041,OR,Lincoln County,2024,1,9536.077437,1043,135151,8419.918077,10652.2368,0,12074.90224,6601.461419,20259.6342,1,,,,2,,,,2,6984.126748,4519.758585,10309.94882,,9729.898221,8432.442968,11027.35347,,,,,2,,0.149,,,0.124,0.176,3.736104861,,,2.929440399,4.645779997,6.056500878,,,4.993087354,7.188293738,0.072164949,196,2716,0.062433226,0.081896671,0,0.128712871,0.063401768,0.194023975,,,,,,,0.050997783,0.030693995,0.07130157,0.074736842,0.062912438,0.086561247,,,,,,,0.153,,,0.118,0.19,0.348,,,0.281,0.421,7.7,0.048479571,0.125,,,0.2,,,0.159,0.244,0.875563052,44124,50395,,,0.160338067,,,0.127896452,0.197568216,0.206896552,12,58,0.140788311,0.279568131,200.5,102,50862,,,19.17808219,147,7665,16.07779034,22.27837405,,,,,,,,,,29.35665209,21.57016375,39.03812389,16.21946336,12.88059511,20.15931201,,,,,,,0.093834396,3266,34806,0.080728013,0.106940779,0.00057017,29,50862,,,1753.862069,0.00066912,34,50813,,,1494.5,0.005215201,265,50813,,,191.7471698,1893,,,,,4664,,,,1819,0.39,,,,,0.35,0.38,,0.47,0.39,0.29,,,,,0.43,0.32,0.24,0.24,0.29,0.928438353,36379,39183,0.917199234,0.939677473,0.630941749,6358,10077,0.573923677,0.68795982,0.051875119,1090,21012,,,0.215,1634,,0.148276596,0.281723404,0.554621849,0.272615588,0.83662811,0.597122302,0.11515735,1,,,,0.257977285,0.151047318,0.364907252,0.196865204,0.131736609,0.261993799,4.367304023,112148,25679,3.888990471,4.845617574,0.234469932,1891,8065,0.167989466,0.300950398,8.257638315,42,50862,,,122.9401518,307,249715,109.1876842,136.6926193,,,,,,,,,,,,,137.4412451,121.3710928,153.5113974,,,,6.9,,,,,0,,,,,0.161172161,3520,21840,0.141359367,0.180984956,0.137078132,0.118994378,0.155161887,0.018543956,0.011280773,0.025807139,0.013965202,0.00950574,0.018424663,0.710055553,13932,19621,0.68016467,0.739946436,0.64516129,0.399803266,0.890519315,,,,,,,0.606155219,0.52724864,0.685061797,0.725331608,0.702583477,0.748079738,0.239,,19621,0.203255319,0.274744681,77.04831551,,,76.17276082,77.9238702,,,,,,,,,,83.29028782,76.21390654,90.36666909,76.86218952,75.87768619,77.84669285,,,,434.0432316,1043,135151,402.0106524,466.0758108,577.0861821,392.1020623,819.127771,,,,,,,328.7950513,231.5020592,453.2006674,442.0568832,405.8734006,478.2403658,,,,52.12191041,19,36453,31.3807949,81.39481955,,,,,,,,,,,,,46.80054459,23.36266324,83.73910191,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.113,,,0.096,0.132,0.189,,,0.163,0.216,0.087,,,0.073,0.103,117.2,53,45233,,,0.125,6250,,,,0.048479571,2231.708589,46034,,,19.81414334,30,151407,13.3685193,28.28592165,,,,,,,,,,,,,22.64620959,15.04824181,32.73007816,,,,0.312,,,0.297,0.326,0.110024997,2949,26803,0.093344146,0.126705848,0.040828402,345,8450,0.027722019,0.053934785,0.0012792,65,50813,,,781.7384615,0.58,255.78,441,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.072015561,,,,,1279.311,,,,,0.931922031,48336,51867,0.845112912,1.018731151,57216,,,50716.42553,63715.57447,23265,17995.04255,28534.95745,59000,36395.06383,81604.93617,48795,16354.31915,81235.68085,63292,50508.51064,76075.48936,58245,55241.25532,61248.74468,,,,,,,,,,,,,,,,0.337160934,,57216,,,10.83883129,23,2122,,,3.192486628,11,344559,1.593677822,5.712240433,,,,,,,,,,,,,3.887379094,1.940565637,6.955595003,,,,30.35434114,83,249715,23.32510917,38.83638828,33.2378912,,,,,,,,,,,,,32.66829115,24.32368852,42.95276972,,,,20.02282602,50,249715,14.86132741,26.39759993,,,,,,,,,,,,,22.49927856,16.47229968,30.01088462,,,,19.15491977,66,344559,14.81441356,24.36975451,,,,,,,,,,,,,20.85048787,15.87235742,26.89561022,,,,9.230769231,,3900,,,23,13,0.773370249,30726,39730,,,0.472,,,,,83.75016565,,,,,0.707023084,15896,22483,0.694722434,0.719323734,0.137117702,2959,21580,0.116761207,0.157474196,0.892896855,20075,22483,0.881435988,0.904357723,50813,,,,,0.153543385,7802,50813,,,0.322161652,16370,50813,,,0.007222561,367,50813,,,0.041308327,2099,50813,,,0.015507843,788,50813,,,0.00222384,113,50813,,,0.101037136,5134,50813,,,0.81148525,41234,50813,,,0.017924626,868,48425,0.011927881,0.02392137,0.515891603,26214,50813,,,0.379998016,19150,50395,, -41,043,41043,OR,Linn County,2024,1,8149.093873,2085,361015,7584.656703,8713.531043,0,9636.395876,5130.974957,16478.53043,1,,,,2,,,,2,5332.319071,3931.631143,7069.881478,,8475.824227,7836.256909,9115.391545,,,,,2,,0.159,,,0.134,0.187,3.981280092,,,3.194354602,4.883460109,5.569151656,,,4.58996913,6.559056596,0.061152833,627,10253,0.056514774,0.065790893,0,,,,,,,,,,0.05799373,0.045169003,0.070818458,0.061214496,0.056015631,0.066413361,,,,0.060367454,0.036452253,0.084282655,0.155,,,0.123,0.188,0.377,,,0.315,0.437,7.4,0.115215712,0.107,,,0.207,,,0.168,0.246,0.798825908,102737,128610,,,0.174704672,,,0.141053092,0.210693798,0.232142857,26,112,0.184168073,0.282684635,264.2,343,129839,,,15.74895007,405,25716,14.21510969,17.28279045,,,,,,,,,,21.51837524,17.28102228,26.48021238,14.30859032,12.62353937,15.99364127,,,,15.3609831,9.382887546,23.72379255,0.07814913,8198,104902,0.067425725,0.088872534,0.00058534,76,129839,,,1708.407895,0.000613182,80,130467,,,1630.8375,0.002330091,304,130467,,,429.1677632,1742,,,,,1104,2444,,1611,1698,0.46,,,,,0.5,0.25,,0.31,0.46,0.35,,,,,0.31,0.28,0.27,0.27,0.35,0.908354656,81652,89890,0.899379852,0.91732946,0.62271787,20772,33357,0.586096008,0.659339733,0.046094979,2843,61677,,,0.162,4484,,0.119106383,0.204893617,0.271276596,0.094639234,0.447913957,,,,,,,0.156918376,0.094443469,0.219393283,0.127099178,0.099083046,0.15511531,3.920858679,121825,31071,3.54172189,4.299995467,0.221513635,6287,28382,0.159108131,0.28391914,11.09065843,144,129839,,,96.57493344,621,643024,88.97911302,104.1707539,,,,,,,,,,45.38308184,30.15672829,65.59118911,105.7033702,97.04835974,114.3583806,,,,9.9,,,,,1,,,,,0.172913647,8350,48290,0.155198429,0.190628864,0.136892597,0.121055606,0.152729587,0.029819839,0.022105722,0.037533955,0.014702837,0.009055874,0.0203498,0.771611037,43738,56684,0.759632886,0.783589188,,,,0.681652491,0.547009953,0.816295028,,,,0.714551545,0.636986883,0.792116206,0.767889864,0.747965363,0.787814365,0.35,,56684,0.322856,0.377144,76.3657086,,,75.90346504,76.82795216,,,,,,,,,,84.82730562,80.57326192,89.08134932,76.00578215,75.50018606,76.51137824,,,,415.9235997,2085,361015,397.0457696,434.8014298,476.0941291,311.0004918,697.5882081,,,,,,,251.123889,193.3959946,320.6796,429.3329576,408.6793252,449.9865899,,,,49.9587642,63,126104,38.38968613,63.91896156,,,,,,,,,,,,,55.76834042,41.77431387,72.94636236,,,,4.439297433,46,10362,3.250123664,5.921400667,,,,,,,,,,,,,4.390649104,3.091422163,6.051931428,,,,,,,0.118,,,0.101,0.136,0.187,,,0.162,0.212,0.092,,,0.077,0.106,105.1,115,109398,,,0.107,13610,,,,0.115215712,13442.4475,116672,,,15.35933156,60,390642,11.72078808,19.7705043,,,,,,,,,,,,,16.78067355,12.64149982,21.84235319,,,,0.328,,,0.313,0.342,0.094232002,7203,76439,0.07993413,0.108529874,0.036485356,1090,29875,0.025761951,0.04720876,0.000528869,69,130467,,,1890.826087,0.720984382,1523.44,2113,,,0.069442015,397,5717,0.040580616,0.098303414,2.771442251,,,,,,,,2.521379666,2.843671219,2.561880876,,,,,,,,2.261851305,2.644403932,0.057311546,,,,,468.064,,,,,0.782156261,45850,58620,0.74406692,0.820245601,67265,,,59830.10638,74699.89362,60750,28664.38298,92835.61702,107569,72100.74468,143037.2553,,,,54758,36214.85106,73301.14894,70158,67260.29787,73055.70213,,,,,,,,,,,71.64977246,,,,,0.318902847,,67265,,,5.823957644,44,7555,,,3.158773493,28,886420,2.098982046,4.565307184,,,,,,,,,,,,,2.66450309,1.627547709,4.115108919,,,,21.24249466,135,643024,17.53094418,24.95404514,20.99455075,,,,,,,,,,,,,23.98582003,19.66682083,28.30481923,,,,13.99636717,90,643024,11.25473204,17.20391149,,,,,,,,,,,,,15.49578201,12.3600426,19.18483254,,,,17.0348142,151,886420,14.3177181,19.75191029,,,,,,,,,,13.25061736,6.614660444,23.70901465,18.11862101,15.0734495,21.16379252,,,,14.27480916,,13100,,,109,78,0.760548634,72640,95510,,,0.699,,,,,95.31708019,,,,,0.669650008,33445,49944,0.652086807,0.687213209,0.143551563,6999,48756,0.126498596,0.16060453,0.891979017,44549,49944,0.876130304,0.907827729,130467,,,,,0.218024481,28445,130467,,,0.195880951,25556,130467,,,0.006691347,873,130467,,,0.018242161,2380,130467,,,0.013367365,1744,130467,,,0.00237608,310,130467,,,0.106325738,13872,130467,,,0.828569677,108101,130467,,,0.012790065,1551,121266,0.008393593,0.017186537,0.502801475,65599,130467,,,0.342453931,44043,128610,, -41,045,41045,OR,Malheur County,2024,1,8498.31789,474,86509,7349.037648,9647.598131,0,,,,2,,,,2,,,,2,7845.59958,5972.433908,10120.25184,,8657.394519,7237.264306,10077.52473,,,,,2,,0.209,,,0.179,0.245,4.214873855,,,3.364986163,5.241200873,5.690386337,,,4.560911517,6.912598606,0.081187411,227,2796,0.07106357,0.091311251,0,,,,,,,,,,0.083003953,0.06780044,0.098207465,0.07489301,0.061114613,0.088671407,,,,,,,0.188,,,0.151,0.23,0.369,,,0.297,0.45,7.9,0.041436352,0.117,,,0.273,,,0.224,0.33,0.358620253,11322,31571,,,0.175029013,,,0.139954967,0.21627307,0.177777778,8,45,0.105224985,0.261788114,501.7,159,31693,,,28.38247451,206,7258,24.50657314,32.25837589,,,,,,,,,,35.79418345,29.59315753,41.99520936,20.9192693,16.33812288,26.38681176,,,,,,,0.108972141,2519,23116,0.093482779,0.124461502,0.000252422,8,31693,,,3961.625,0.000784215,25,31879,,,1275.16,0.005269927,168,31879,,,189.7559524,1332,,,,,,,,,1403,0.37,,,,,,0.65,,0.3,0.38,0.35,,,,,,0.56,,0.25,0.36,0.814460653,16694,20497,0.794173646,0.834747659,0.478393555,3919,8192,0.427609442,0.529177668,0.043841665,556,12682,,,0.236,1901,,0.153787234,0.318212766,0.240740741,0,0.770819051,,,,,,,0.271514847,0.19506361,0.347966083,0.209677419,0.141962835,0.277392004,4.98769754,99734,19996,4.264005603,5.711389476,0.268384664,2135,7955,0.207280178,0.32948915,8.834758464,28,31693,,,84.16854427,130,154452,69.69968771,98.63740083,,,,,,,,,,50.49088359,33.27381044,73.46158475,104.4650742,84.71413787,127.4385314,,,,8.2,,,,,0,,,,,0.173459245,1745,10060,0.144423118,0.202495371,0.124734446,0.096160291,0.153308602,0.040258449,0.026992192,0.053524707,0.022365805,0.012899836,0.031831774,0.754519923,8597,11394,0.713220835,0.795819011,,,,,,,,,,0.760808271,0.700545247,0.821071294,0.8270779,0.775926006,0.878229794,0.187,,11394,0.152282854,0.221717146,75.90421589,,,74.95426917,76.85416261,,,,,,,,,,77.41311763,75.25928727,79.56694798,75.39648728,74.28501089,76.50796366,,,,454.5986358,474,86509,412.2372782,496.9599934,,,,,,,,,,372.6447387,295.4841021,463.7886343,486.6103076,433.6502681,539.5703471,,,,47.79980318,17,35565,27.84514683,76.53211533,,,,,,,,,,73.34273625,39.05191814,125.4183127,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.138,,,0.119,0.161,0.192,,,0.166,0.222,0.113,,,0.095,0.133,154.7,40,25862,,,0.117,3670,,,,0.041436352,1297.496502,31313,,,12.86904673,12,93247,6.649624233,22.47963479,,,,,,,,,,,,,17.9391504,8.602519906,32.9907363,,,,0.312,,,0.3,0.324,0.143778377,2185,15197,0.121140079,0.166416675,0.043232857,360,8327,0.028934985,0.057530729,0.00134885,43,31879,,,741.372093,0.881788512,337.725,383,,,0.089659295,150,1673,0.029237551,0.150081038,2.581125039,,,,,,,,2.170546288,3.026562621,2.493007583,,,,,,,,2.188724807,2.932178117,0.137709254,,,,,-2809.944782,,,,,0.836428697,38101,45552,0.704177314,0.968680079,49380,,,43229.53192,55530.46809,,,,42052,20492,63612,,,,52783,44867.93617,60698.06383,47794,40425.82979,55162.17021,,,,,,,,,,,,,,,,0.390664237,,49380,,,5.749880211,12,2087,,,4.645307543,10,215271,2.227605528,8.542885963,,,,,,,,,,,,,,,,,,,15.63746256,24,154452,9.912809863,23.46387176,15.53880817,,,,,,,,,,,,,16.66451114,9.32700038,27.48557686,,,,14.24390749,22,154452,8.926580991,21.56544712,,,,,,,,,,,,,14.00047386,7.454662687,23.94123669,,,,13.00686112,28,215271,8.642964754,18.79853577,,,,,,,,,,,,,18.41366294,11.79798129,27.39807086,,,,43.61111111,,3600,,,58,99,0.564379632,11804,20915,,,0.599,,,,,38.93573474,,,,,0.585610933,5828,9952,0.552814338,0.618407527,0.158495852,1471,9281,0.126002287,0.190989417,0.841036978,8370,9952,0.815079801,0.866994154,31879,,,,,0.257128517,8197,31879,,,0.169484614,5403,31879,,,0.013237555,422,31879,,,0.020326861,648,31879,,,0.013582609,433,31879,,,0.00225854,72,31879,,,0.354528059,11302,31879,,,0.592458986,18887,31879,,,0.053402006,1576,29512,0.034755782,0.07204823,0.456977948,14568,31879,,,0.588704824,18586,31571,, -41,047,41047,OR,Marion County,2024,1,6739.661278,4163,975931,6437.3736,7041.948957,0,7673.600122,5213.838984,10892.06285,,1907.909807,1209.451155,2862.801485,1,8470.498866,5866.066703,11836.67315,,5339.014773,4823.946637,5854.082909,,7133.459511,6733.643059,7533.275963,,16852.32536,12763.78666,21834.1422,,,0.177,,,0.15,0.205,3.991354,,,3.213809657,4.797142139,5.737168035,,,4.805571232,6.644846235,0.063421016,1842,29044,0.060618058,0.066223975,0,0.061538462,0.027808152,0.095268771,0.081494058,0.059398632,0.103589484,0.100323625,0.066825415,0.133821834,0.065316134,0.06070036,0.069931907,0.058866375,0.055112342,0.062620409,0.097116844,0.074508101,0.119725587,0.069690266,0.053091656,0.086288875,0.163,,,0.13,0.196,0.373,,,0.32,0.426,8.2,0.048951623,0.102,,,0.26,,,0.217,0.304,0.887985661,307172,345920,,,0.162726965,,,0.133366415,0.192846709,0.32173913,74,230,0.288748207,0.354954349,486.9,1690,347119,,,18.6231616,1460,78397,17.66787639,19.57844681,,,,,,,19.81505945,11.09033835,32.68192718,28.49311576,26.62532916,30.36090235,11.00040461,9.966643711,12.03416551,41.54002026,29.80983573,56.35372803,16.74326986,12.46646416,22.01430774,0.096713642,27410,283414,0.085990237,0.107437046,0.000714452,248,347119,,,1399.673387,0.00086241,299,346703,,,1159.541806,0.004444727,1541,346703,,,224.9857236,2146,,,,,,595,815,2416,2133,0.41,,,,,0.35,0.34,0.32,0.3,0.42,0.39,,,,,0.42,0.43,0.28,0.27,0.4,0.857451451,197279,230076,0.849066589,0.865836313,0.591862031,55390,93586,0.569787752,0.613936309,0.042655754,7265,170317,,,0.163,12920,,0.12606383,0.19993617,0.112573099,0.019807431,0.205338768,0.192259675,0.073390648,0.311128703,0.388397247,0.202423643,0.574370851,0.209114189,0.178681406,0.239546972,0.103755655,0.079895664,0.127615646,4.051128982,130973,32330,3.837629465,4.2646285,0.212608622,17567,82626,0.188365572,0.236851672,9.766103267,339,347119,,,77.52721101,1343,1732295,73.38080118,81.67362085,73.72122037,39.253445,126.065532,30.61380683,15.81860072,53.47615962,91.59373092,54.28424985,144.7575833,40.73904426,34.99142154,46.48666698,96.16055503,90.41213094,101.9089791,,,,10.2,,,,,1,,,,,0.191118489,23025,120475,0.177454026,0.204782952,0.140994466,0.128764435,0.153224497,0.051255447,0.043465812,0.059045082,0.015895414,0.012642239,0.019148589,0.732882741,114071,155647,0.719195942,0.74656954,0.653521127,0.530782201,0.776260052,0.705937617,0.655088726,0.756786509,0.602579853,0.470541729,0.734617977,0.690024438,0.655111894,0.724936982,0.761919278,0.750397493,0.773441062,0.303,,155647,0.286065754,0.319934246,78.43789835,,,78.15129971,78.72449699,77.49354586,74.37767637,80.60941534,85.67896549,83.64295438,87.71497661,77.25405382,72.56188885,81.94621879,82.00975009,80.8887449,83.13075527,77.97367949,77.62973083,78.31762815,67.98025255,64.32054945,71.63995565,346.3346027,4163,975931,335.4970693,357.172136,398.7836617,294.0315917,528.72928,132.8833361,94.03615741,182.3927608,479.4406956,353.5017213,635.6688053,256.7329524,232.6912123,280.7746926,365.545812,352.2710512,378.8205727,978.5149523,743.027428,1264.957486,38.63023621,144,372765,32.32063096,44.93984146,,,,,,,,,,30.92305314,22.80021828,40.99948216,47.00469494,37.54568082,58.12203321,,,,4.495673337,133,29584,3.731617676,5.259728998,,,,,,,,,,4.413619168,3.265219758,5.835038605,4.699307805,3.689967374,5.899550613,,,,,,,0.122,,,0.104,0.141,0.18,,,0.156,0.205,0.106,,,0.091,0.123,163.5,472,288735,,,0.102,34930,,,,0.048951623,15436.15999,315335,,,18.19677611,190,1044141,15.60931564,20.78423657,,,,,,,,,,12.10946961,8.434689272,16.84134082,20.47453088,17.04598672,23.90307504,,,,0.311,,,0.298,0.323,0.119762881,24183,201924,0.106656498,0.132869264,0.041670559,3569,85648,0.032138644,0.051202474,0.000847988,294,346703,,,1179.261905,0.805667822,3950.995,4904,,,0.124003726,2396,19322,0.093249515,0.154757938,2.579215147,,,,,,2.350794184,2.279568957,2.19048911,2.979751579,2.457001471,,,,,,2.324645293,1.852431828,2.129354184,2.812224526,0.152582039,,,,,-91.31449,,,,,0.845155138,46088,54532,0.811492537,0.878817739,70861,,,67243.6383,74478.3617,63699,51654.23404,75743.76596,80417,49539.55319,111294.4468,68760,63852.25532,73667.74468,63312,60329.70213,66294.29787,74513,71827.38298,77198.61702,,,,,,,,,,,60.34913688,,,,,0.317198459,,70861,,,6.230954655,137,21987,,,2.875825602,69,2399311,2.237563974,3.639541356,,,,,,,,,,4.785508862,3.251521094,6.792647838,2.115266649,1.456052231,2.970620822,,,,16.46462111,291,1732295,14.53783024,18.39141197,16.7985245,,,,,,,,,,6.325757651,4.236459178,9.084843175,20.37976866,17.65612939,23.10340793,,,,12.18037344,211,1732295,10.53685172,13.82389515,,,,,,,,,,8.232242104,5.853928888,11.25374596,14.31226866,12.09455965,16.52997766,,,,13.37884084,321,2399311,11.91524205,14.84243964,,,,,,,,,,10.80598775,8.42379758,13.65271544,15.31965846,13.37740365,17.26191326,,,,13.26424871,,38600,,,174,338,0.710248214,165534,233065,,,0.685,,,,,154.3725996,,,,,0.617803337,76274,123460,0.605418701,0.630187973,0.152328803,18472,121264,0.141057132,0.163600475,0.900332091,111155,123460,0.891236367,0.909427816,346703,,,,,0.233710121,81028,346703,,,0.168706357,58491,346703,,,0.011900676,4126,346703,,,0.028047061,9724,346703,,,0.027002939,9362,346703,,,0.011837221,4104,346703,,,0.287447758,99659,346703,,,0.626674704,217270,346703,,,0.052949768,17184,324534,,,0.498400648,172797,346703,,,0.153532609,53110,345920,, -41,049,41049,OR,Morrow County,2024,1,8271.337583,162,33363,6338.218013,10204.45715,0,,,,2,,,,2,,,,2,6361.411125,4032.588965,9545.240111,1,9604.272271,6766.990928,12441.55361,,,,,2,,0.212,,,0.181,0.243,4.360083053,,,3.492829098,5.301829105,5.649080192,,,4.566318444,6.86018956,0.056,63,1125,0.042564315,0.069435685,0,,,,,,,,,,0.050324675,0.033060582,0.067588769,0.058315335,0.036969669,0.079661001,,,,,,,0.184,,,0.15,0.221,0.387,,,0.308,0.471,8.7,0.014546033,0.094,,,0.272,,,0.223,0.323,0.552765469,6736,12186,,,0.162724607,,,0.129291063,0.19925545,0.3,3,10,0.129013968,0.476732101,365.8,45,12303,,,30.25152957,89,2942,24.29446232,37.22711026,,,,,,,,,,36.82539683,27.96306773,47.60536492,19.70055162,12.74915827,29.08190047,,,,,,,0.122248428,1244,10176,0.104376087,0.140120768,0.000406405,5,12303,,,2460.6,0.000325203,4,12300,,,3075,0.01,123,12300,,,100,1933,,,,,,,,,1982,0.31,,,,,,,,0.22,0.32,0.3,,,,,,,,0.2,0.31,0.767894191,5922,7712,0.735578618,0.800209764,0.404460719,1215,3004,0.335141895,0.473779543,0.04118726,247,5997,,,0.164,531,,0.109191489,0.218808511,,,,,,,,,,0.23875225,0.160198291,0.317306208,0.309820194,0.179224766,0.440415621,3.763355127,118000,31355,2.69369601,4.833014243,0.162046908,532,3283,0.089581695,0.234512122,4.876859303,6,12303,,,60.195377,35,58144,41.92828564,83.71719759,,,,,,,,,,,,,83.31597584,55.36286088,120.4147825,,,,8.9,,,,,0,,,,,0.151404151,620,4095,0.106919122,0.195889181,0.069489415,0.035497668,0.103481162,0.073260073,0.045029559,0.101490588,0.010989011,0,0.023995282,0.781020408,3827,4900,0.748149039,0.813891778,,,,,,,,,,0.81884058,0.752662369,0.88501879,0.82473965,0.777191866,0.872287433,0.249,,4900,0.166511409,0.331488591,77.53531406,,,75.81753615,79.25309197,,,,,,,,,,79.47783826,74.67074546,84.28493105,76.23640234,74.06066238,78.41214231,,,,389.1303263,162,33363,326.0842244,452.1764281,,,,,,,,,,278.2017749,184.8630591,402.0790236,451.8423548,362.888186,540.7965236,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.138,,,0.119,0.158,0.191,,,0.166,0.216,0.113,,,0.097,0.131,110.8,11,9928,,,0.094,1130,,,,0.014546033,162.5228293,11173,,,,,,,,,,,,,,,,,,,,,,,,,,0.331,,,0.319,0.344,0.15341074,1057,6890,0.128389464,0.178432017,0.057620282,200,3471,0.037364963,0.077875602,0.00097561,12,12300,,,1025,0.959571429,167.925,175,,,,,,,,2.680013896,,,,,,,,,3.003114312,2.380027261,,,,,,,,2.118055501,2.832138853,0.196394358,,,,,5324.2668,,,,,0.771703152,41033,53172,0.661287234,0.88211907,67524,,,58247.06383,76800.93617,43026,41023.10638,45028.89362,,,,,,,61579,41706.14894,81451.85106,68500,55758.21277,81241.78723,,,,,,,,,,,,,,,,0.285691014,,67524,,,9.445100354,8,847,,,,,,,,,,,,,,,,,,,,,,,,,,18.11491778,10,58144,8.686807195,33.31397877,17.19867914,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.40571655,10,80608,5.949023293,22.81455444,,,,,,,,,,,,,,,,,,,16.66666667,,1500,,,5,20,0.750990462,5118,6815,,,0.468,,,,,17.37541619,,,,,0.698405142,2934,4201,0.648500285,0.748309998,0.079663533,322,4042,0.043902282,0.115424784,0.851463937,3577,4201,0.810847102,0.892080772,12300,,,,,0.266504065,3278,12300,,,0.172439024,2121,12300,,,0.006585366,81,12300,,,0.024471545,301,12300,,,0.009186992,113,12300,,,0.003414634,42,12300,,,0.39601626,4871,12300,,,0.557723577,6860,12300,,,0.105435843,1189,11277,0.082041011,0.128830675,0.489349594,6019,12300,,,1,12186,12186,, -41,051,41051,OR,Multnomah County,2024,1,6775.301288,9857,2306980,6579.102236,6971.50034,0,15288.93297,12112.03629,18465.82966,,3371.543496,2884.771966,3858.315027,,13516.79166,12341.98491,14691.59842,,5428.693682,4920.369563,5937.0178,,6481.507688,6248.044375,6714.971001,,12205.97588,9515.157004,15421.51621,,,0.131,,,0.11,0.155,3.343615525,,,2.740473039,4.015970569,5.767997462,,,4.997875399,6.575170462,0.070414799,3974,56437,0.068303981,0.072525616,0,0.067524116,0.039635681,0.09541255,0.075144509,0.067584249,0.082704768,0.117909048,0.108231265,0.127586832,0.073856349,0.068556737,0.079155961,0.060659197,0.058108594,0.0632098,0.068692206,0.050674127,0.086710285,0.092057762,0.081291238,0.102824286,0.131,,,0.102,0.161,0.259,,,0.224,0.297,8.6,0.015017138,0.101,,,0.174,,,0.146,0.207,0.990855109,807971,815428,,,0.236485035,,,0.207150899,0.26930852,0.241071429,81,336,0.21368561,0.269245324,544.5,4374,803377,,,11.74289246,1634,139148,11.17350863,12.31227629,18.63354037,11.04341696,29.44902719,2.515512326,1.697205603,3.59105026,21.25622367,18.46004,24.05240734,24.09384659,22.29082821,25.89686497,6.429042904,5.858040529,7.00004528,25.97402597,17.98776806,36.29609786,12.74195117,10.55994306,14.92395928,0.068582873,46984,685069,0.062625426,0.07454032,0.001471289,1182,803377,,,679.6759729,0.001032597,821,795083,,,968.4323995,0.010696996,8505,795083,,,93.48418577,2093,,,,,2565,1582,4882,2303,1932,0.38,,,,,0.25,0.3,0.31,0.27,0.4,0.46,,,,,0.29,0.42,0.3,0.3,0.48,0.92338529,552358,598188,,,0.790466485,224947,284575,,,0.039223462,18398,469056,,,0.13,17593,,0.101404255,0.158595745,0.261876485,0.117726175,0.406026795,0.139547917,0.105505489,0.173590345,0.381813126,0.317409418,0.446216834,0.252585036,0.220093101,0.285076972,0.069884932,0.059135284,0.08063458,4.819311664,166353,34518,4.652310924,4.986312404,0.225429544,32722,145154,0.207942767,0.242916321,11.26494784,905,803377,,,84.04701301,3405,4051304,81.22395504,86.87007098,197.1227002,149.2988081,255.3953223,34.59819341,28.16171964,41.03466719,124.1077008,109.622309,138.5930927,45.51652024,39.52897736,51.50406312,92.49238556,88.92817101,96.0566001,69.81885885,41.37908064,110.3438977,6.5,,,,,1,,,,,0.202642975,67855,334850,0.195348001,0.209937948,0.167841476,0.160857006,0.174825947,0.036374496,0.032656181,0.040092811,0.013722562,0.011561633,0.015883492,0.5507405,241530,438555,0.544208679,0.557272321,0.644917887,0.559181168,0.730654607,0.57594097,0.548826456,0.603055484,0.576666824,0.531319961,0.622013688,0.595307137,0.567596263,0.62301801,0.602557645,0.593664765,0.611450525,0.337,,438555,0.325144831,0.34885517,78.5097266,,,78.30953175,78.70992145,72.00115641,69.24806409,74.75424873,85.02029145,84.13141793,85.90916496,71.847674,70.93362398,72.76172402,83.19413594,81.64828817,84.7399837,78.60599101,78.37899268,78.83298933,71.4922467,68.89054765,74.09394575,354.0656315,9857,2306980,346.9722632,361.1589997,723.8214921,601.8737441,845.7692401,179.6037127,161.4216389,197.7857864,660.0547916,616.6226544,703.4869288,271.3396899,246.222816,296.4565639,346.2833208,338.1667032,354.3999384,656.5304845,529.9048339,804.2941984,40.82939838,269,658839,35.95015017,45.7086466,,,,22.80029019,11.38182271,40.79601723,100.6969811,74.97551649,132.3979335,38.67151956,28.79348638,50.84590641,34.87669578,28.81087542,40.94251613,,,,4.239751086,248,58494,3.712071138,4.767431033,,,,,,,11.32162662,8.375801698,14.9677908,4.625147897,3.347242467,6.230043865,3.26096045,2.670067686,3.851853215,,,,7.254261879,4.431091616,11.20361912,0.098,,,0.084,0.114,0.173,,,0.151,0.196,0.08,,,0.069,0.093,480.7,3369,700836,,,0.101,81780,,,,0.015017138,11042.61211,735334,,,33.26659454,809,2431869,30.97419583,35.55899325,134.1342509,85.02960889,201.2672356,7.739179337,4.331559926,12.76459938,55.18479549,43.40634235,69.174619,16.72833848,12.41609525,22.05422881,35.86538565,32.99316259,38.73760872,,,,0.265,,,0.252,0.277,0.079337358,42930,541107,0.072188422,0.086486295,0.029920363,4516,150934,0.022771426,0.037069299,0.001475318,1173,795083,,,677.8201194,0.772095462,5410.845,7008,,,0.066570188,2162,32477,0.052583005,0.080557372,,,,,,,,,,,,,,,,,,,,,0.101388007,,,,,306.44925,,,,,0.899377715,61280,68136,0.865066003,0.933689427,79432,,,74937.70213,83926.29787,65076,59582.04255,70569.95745,87181,76899.6383,97462.3617,50104,45915.91489,54292.08511,66372,61828.85106,70915.14894,90183,88349.29787,92016.70213,,,,,,,,,,,46.20732389,,,,,0.473511935,,79432,,,11.6519497,479,41109,,,4.910160025,277,5641364,4.331915096,5.488404955,,,,2.283245771,1.094905096,4.198970266,28.43768473,22.83779597,34.9950181,5.09137521,3.52592534,7.114686535,2.906756603,2.373160912,3.440352293,,,,16.89881523,739,4051304,15.65372654,18.14390392,18.24104042,,,,8.185020826,5.481636906,11.75505524,9.268754685,5.875595388,13.90768294,10.24036893,7.04899878,14.3812853,19.03205157,17.44012753,20.62397561,,,,11.05816794,448,4051304,10.03416726,12.08216862,,,,3.428649798,1.711569626,6.134801579,31.24697433,24.40414619,39.41380637,7.176027966,4.998366409,9.980117763,10.90459126,9.680776907,12.12840562,,,,8.295866035,468,5641364,7.544252011,9.04748006,,,,4.338166965,2.611859901,6.774585094,14.05908009,10.21534912,18.87365881,6.738584837,4.91517002,9.016756689,8.567282619,7.651210793,9.483354444,,,,9.220183486,,65400,,,264,339,0.76060795,463659,609590,,,0.715,,,,,373.0242952,,,,,0.544846667,187084,343370,0.537631047,0.552062287,0.173594118,58241,335501,0.166493854,0.180694381,0.92248886,316755,343370,0.917293552,0.927684169,795083,,,,,0.173685012,138094,795083,,,0.150097537,119340,795083,,,0.057607822,45803,795083,,,0.015187094,12075,795083,,,0.082849212,65872,795083,,,0.007039517,5597,795083,,,0.129334925,102832,795083,,,0.674955948,536646,795083,,,0.03942773,30323,769078,,,0.501414318,398666,795083,,,0.012816582,10451,815428,, -41,053,41053,OR,Polk County,2024,1,6220.110769,956,242694,5596.634082,6843.587456,0,,,,2,,,,2,,,,2,5518.977653,4040.585282,7361.542777,,6273.439718,5561.044946,6985.83449,,,,,2,,0.146,,,0.123,0.174,3.678216342,,,2.909954999,4.617765205,5.561333542,,,4.567123711,6.703889461,0.066457266,402,6049,0.060180259,0.072734273,0,,,,,,,,,,0.060365369,0.047209588,0.073521151,0.065274151,0.057815281,0.072733022,,,,0.088983051,0.052657104,0.125308998,0.144,,,0.113,0.18,0.343,,,0.282,0.413,8,0.08075183,0.094,,,0.201,,,0.164,0.246,0.870678119,76126,87433,,,0.177419165,,,0.144474116,0.21787757,0.160714286,9,56,0.097286009,0.234937416,309.5,276,89164,,,9.837809093,222,22566,8.543678885,11.1319393,,,,,,,,,,15.96452328,12.49125625,20.10467495,7.848598013,6.467141192,9.230054833,,,,9.830205541,4.907203188,17.5889531,0.066578249,4769,71630,0.057046334,0.076110164,0.00057198,51,89164,,,1748.313726,0.000401723,36,89614,,,2489.277778,0.00303524,272,89614,,,329.4632353,1476,,,,,,,,1896,1440,0.42,,,,,0.49,0.33,,0.31,0.42,0.43,,,,,0.44,0.34,,0.22,0.44,0.917811331,52519,57222,0.907315495,0.928307168,0.687119723,14681,21366,0.635705985,0.738533461,0.042198142,1803,42727,,,0.139,2625,,0.10087234,0.17712766,0.191275168,0.065745462,0.316804873,0.338103757,0.003027891,0.673179622,,,,0.106177606,0.053652401,0.158702812,0.132808575,0.088166802,0.177450347,4.580383142,149435,32625,4.020417888,5.140348395,0.234050235,4538,19389,0.180757679,0.287342791,8.075007851,72,89164,,,79.6438254,344,431923,71.22737513,88.06027568,,,,,,,,,,31.68015713,19.35106301,48.92743328,91.566294,81.28987534,101.8427127,,,,9.4,,,,,0,,,,,0.163710334,5030,30725,0.145742925,0.181677742,0.14233997,0.123312535,0.161367406,0.018063466,0.011601255,0.024525678,0.014646054,0.008065104,0.021227004,0.711782841,28398,39897,0.680262081,0.7433036,0.524122807,0.415669891,0.632575723,,,,,,,0.533973029,0.453562496,0.614383562,0.63765846,0.592151825,0.683165096,0.405,,39897,0.363863409,0.446136591,79.57854993,,,78.99069431,80.16640556,,,,85.6406055,81.91967692,89.36153408,,,,81.64049991,78.64843484,84.63256499,79.42230883,78.77882944,80.06578822,,,,310.2118037,956,242694,289.5346393,330.8889681,,,,,,,,,,256.8185743,196.4458599,329.8942026,316.7337896,293.5296988,339.9378803,,,,37.98458273,34,89510,26.30542776,53.07964707,,,,,,,,,,,,,42.19551715,27.30671389,62.28890713,,,,6.670001668,40,5997,4.765146981,9.082649152,,,,,,,,,,,,,6.097560976,3.983129272,8.934339607,,,,,,,0.111,,,0.096,0.131,0.177,,,0.154,0.205,0.086,,,0.073,0.101,96.7,73,75529,,,0.094,8090,,,,0.08075183,6088.930258,75403,,,12.16762423,32,262993,8.322645968,17.17705493,,,,,,,,,,,,,12.3907139,8.018616724,18.29113801,,,,0.311,,,0.297,0.326,0.079665053,4148,52068,0.06775016,0.091579947,0.03320872,684,20597,0.023676805,0.042740635,0.000502154,45,89614,,,1991.422222,0.826699219,423.27,512,,,0.081706435,452,5532,0.039247325,0.124165545,2.702158017,,,,,,,,2.180467131,2.948228816,2.651161008,,,,,,2.875839798,,2.076769558,2.901074201,0.125474345,,,,,3984.65275,,,,,0.828265905,50424,60879,0.738512889,0.91801892,77156,,,70806.55319,83505.44681,46313,16870.10638,75755.89362,119844,20498.80851,219189.1915,,,,70308,54212.17021,86403.82979,79772,75699.48936,83844.51064,,,,,,,,,,,68.16154994,,,,,0.250025922,,77156,,,5.907172996,28,4740,,,1.685951138,10,593137,0.808479103,3.100524169,,,,,,,,,,,,,,,,,,,15.35153072,69,431923,11.84798731,19.5667861,15.97506963,,,,,,,,,,,,,17.01841794,12.82060143,22.15181021,,,,11.11309192,48,431923,8.193916699,14.7343476,,,,,,,,,,,,,13.80999844,10.11065454,18.42060263,,,,13.31901399,79,593137,10.5447888,16.59946541,,,,,,,,,,,,,14.12635043,10.90241902,18.00519324,,,,17.17391304,,9200,,,59,99,0.771360115,48291,62605,,,0.722,,,,,77.49077901,,,,,0.650518279,20961,32222,0.625249682,0.675786877,0.159108208,5017,31532,0.137018943,0.181197472,0.900099311,29003,32222,0.88383141,0.916367212,89614,,,,,0.215044524,19271,89614,,,0.19188966,17196,89614,,,0.009395853,842,89614,,,0.027082822,2427,89614,,,0.022686187,2033,89614,,,0.005222398,468,89614,,,0.157330328,14099,89614,,,0.757448613,67878,89614,,,0.016911534,1402,82902,0.011274781,0.022548287,0.508558931,45574,89614,,,0.20405339,17841,87433,, -41,055,41055,OR,Sherman County,2024,1,8847.670343,32,4814,4711.011829,15129.78575,1,,,,2,,,,2,,,,2,,,,2,8564.40119,4275.318217,15324.07946,1,,,,2,,0.162,,,0.135,0.191,3.892480999,,,3.043400247,4.811894878,5.734045533,,,4.618016024,6.91965597,,,,,,0,,,,,,,,,,,,,,,,,,,,,,0.176,,,0.14,0.215,0.339,,,0.263,0.423,6.6,0.177548892,0.116,,,0.22,,,0.177,0.267,0.054010695,101,1870,,,0.160161256,,,0.127062124,0.198365674,0.083333333,1,12,0.004083139,0.26580258,209.8,4,1907,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.081978799,116,1415,0.068872416,0.095085182,0.000524384,1,1907,,,1907,0,0,1955,,,-1955,,0,1955,,,,606,,,,,,,,,611,0.36,,,,,,,,,0.36,0.22,,,,,,,,,0.22,0.882309942,1207,1368,0.844021186,0.920598697,0.467532468,180,385,0.350523803,0.584541132,0.033298647,32,961,,,0.196,75,,0.12093617,0.27106383,,,,,,,,,,0.276595745,0.096511631,0.456679858,0.157088123,0.094162974,0.220013271,4.608784023,104306,22632,2.986748924,6.230819121,0.224089636,80,357,0.110166466,0.338012806,20.97535396,4,1907,,,122.8501229,11,8954,61.3263387,219.8128045,,,,,,,,,,,,,,,,,,,7,,,,,0,,,,,0.110344828,80,725,0.060746445,0.159943211,0.094313454,0.027542065,0.161084842,0.011034483,0,0.042329626,0.026206897,0.006022334,0.046391459,0.746514575,589,789,0.674722888,0.818306263,,,,,,,,,,,,,0.764995084,0.652929712,0.877060455,0.267,,789,0.189068944,0.344931056,79.43637548,,,74.64212756,84.23062341,,,,,,,,,,,,,,,,,,,427.5042489,32,4814,279.2599688,626.3927755,,,,,,,,,,,,,422.1462467,267.6045083,633.426642,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.121,,,0.103,0.141,0.188,,,0.163,0.216,0.091,,,0.077,0.107,,,,,,0.116,210,,,,0.177548892,313.3737949,1765,,,,,,,,,,,,,,,,,,,,,,,,,,0.307,,,0.29,0.324,0.091866029,96,1045,0.075185178,0.10854688,0.054123711,21,388,0.036251371,0.071996052,0.000511509,1,1955,,,1955,,,,,,,,,,,3.473895158,,,,,,,,,,3.210325313,,,,,,,,,,,,,,,-2658.266,,,,,1.028856396,53125,51635,0.595574639,1.462138153,71460,,,60511.40426,82408.59575,75000,72714.7234,77285.2766,,,,,,,57917,7991.212766,107842.7872,56711,49923.08511,63498.91489,,,,,,,,,,,,,,,,0.26995522,,71460,,,19.04761905,2,105,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,100,,,0,0,0.898141264,1208,1345,,,0.47,,,,,17.71131791,,,,,0.7,539,770,0.638364958,0.761635042,0.103351955,74,716,0.018072293,0.188631617,0.793506494,611,770,0.745109242,0.841903746,1955,,,,,0.2,391,1955,,,0.258823529,506,1955,,,0.002557545,5,1955,,,0.026086957,51,1955,,,0.009207161,18,1955,,,0.000511509,1,1955,,,0.063938619,125,1955,,,0.883887468,1728,1955,,,0.00556483,10,1797,0,0.038172467,0.499232737,976,1955,,,1,1870,1870,, -41,057,41057,OR,Tillamook County,2024,1,9202.101715,536,74120,7837.777495,10566.42594,0,,,,2,,,,2,,,,2,,,,2,10055.57169,8409.5129,11701.63048,,,,,2,,0.151,,,0.126,0.178,3.894170492,,,3.088942267,4.77805367,5.641178532,,,4.591249881,6.79974256,0.061705989,102,1653,0.050106128,0.07330585,0,,,,,,,,,,0.036789298,0.015451879,0.058126716,0.064882401,0.051133401,0.0786314,,,,,,,0.158,,,0.123,0.195,0.315,,,0.245,0.395,8.4,0.008077504,0.114,,,0.207,,,0.166,0.251,0.63366192,17356,27390,,,0.158330989,,,0.126587929,0.196848007,0.226415094,12,53,0.156183265,0.302365566,212.6,59,27748,,,16.15925059,69,4270,12.57286149,20.45056583,,,,,,,,,,22.35179786,14.16912249,33.53867142,13.41381623,9.583026976,18.26581052,,,,,,,0.086625296,1717,19821,0.073518913,0.099731679,0.00054058,15,27748,,,1849.866667,0.000652789,18,27574,,,1531.888889,0.003155146,87,27574,,,316.9425287,1655,,,,,,,,,1654,0.4,,,,,,0.37,,0.33,0.4,0.25,,,,,0.13,0.35,,0.06,0.25,0.907000338,18774,20699,0.886311046,0.92768963,0.590615437,3474,5882,0.523231233,0.657999641,0.044311082,539,12164,,,0.172,834,,0.108851064,0.235148936,0.829787234,0.509054101,1,,,,,,,0.087619048,0.046672278,0.128565818,0.194805195,0.133152195,0.256458195,4.051992638,114485,28254,3.544363783,4.559621493,0.134677419,668,4960,0.087394359,0.18196048,10.09081736,28,27748,,,107.5878942,146,135703,90.1359807,125.0398076,,,,,,,,,,,,,121.2792323,101.0442435,141.514221,,,,6,,,,,1,,,,,0.140857788,1560,11075,0.115071467,0.166644109,0.096818182,0.074334327,0.119302037,0.040632054,0.023560843,0.057703266,0.010383747,0.003372832,0.017394662,0.72455814,7789,10750,0.685160662,0.763955618,,,,,,,,,,0.724793388,0.55984383,0.889742947,0.738000932,0.688832288,0.787169576,0.212,,10750,0.171384366,0.252615634,76.89844293,,,75.78439827,78.0124876,,,,,,,,,,89.95820761,75.37591664,104.5404986,76.0730524,74.80867147,77.33743333,,,,436.8409911,536,74120,394.224043,479.4579392,,,,,,,,,,,,,461.2122327,413.0863901,509.3380753,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.114,,,0.097,0.132,0.181,,,0.156,0.206,0.089,,,0.075,0.104,115.5,28,24242,,,0.114,3090,,,,0.008077504,203.9569644,25250,,,21.89088609,18,82226,12.97392647,34.59703776,,,,,,,,,,,,,24.674156,14.37360514,39.50571398,,,,0.298,,,0.281,0.313,0.100073979,1488,14869,0.083393128,0.116754831,0.047801881,249,5209,0.03231252,0.063291243,0.000834119,23,27574,,,1198.869565,0.823805461,241.375,293,,,0.17032967,186,1092,0.068600931,0.27205841,2.953484612,,,,,,,,2.73004368,3.029721337,2.666111601,,,,,,,,2.338583837,2.77734295,0.017574045,,,,,1921.525157,,,,,0.729884103,43958,60226,0.627319286,0.832448921,64877,,,60167.04255,69586.95745,69327,50157.12766,88496.87234,53714,48633.48936,58794.51064,,,,65583,34113.38298,97052.61702,63243,57913.46809,68572.53192,,,,,,,,,,,,,,,,0.297347288,,64877,,,8.210180624,10,1218,,,,,,,,,,,,,,,,,,,,,,,,,,17.95178343,31,135703,11.50204637,26.71083076,22.84400492,,,,,,,,,,,,,21.16459529,13.26373919,32.04345162,,,,14.00116431,19,135703,8.429615531,21.86455242,,,,,,,,,,,,,15.81903029,9.37535991,25.00088786,,,,24.000128,45,187499,17.50585805,32.11405954,,,,,,,,,,,,,27.31650298,19.76908865,36.79515025,,,,22,,2500,,,16,39,0.805917442,16888,20955,,,0.428,,,,,41.63432767,,,,,0.734594688,8464,11522,0.721481102,0.747708275,0.135278985,1525,11273,0.106554553,0.164003417,0.869727478,10021,11522,0.843345921,0.896109035,27574,,,,,0.180568652,4979,27574,,,0.283709291,7823,27574,,,0.005802568,160,27574,,,0.016501052,455,27574,,,0.010952346,302,27574,,,0.003735403,103,27574,,,0.110720244,3053,27574,,,0.833284979,22977,27574,,,0.018015955,472,26199,0.010799929,0.025231981,0.494088634,13624,27574,,,0.606571742,16614,27390,, -41,059,41059,OR,Umatilla County,2024,1,8268.00727,1149,220123,7556.062745,8979.951795,0,17613.0965,11038.0338,26666.43976,1,,,,2,,,,2,5903.357907,4769.887314,7036.8285,,8563.699512,7665.355645,9462.043379,,,,,2,,0.183,,,0.155,0.212,4.050051634,,,3.199537992,5.02712305,5.566201562,,,4.481880042,6.706741495,0.064467312,426,6608,0.058545968,0.070388657,0,,,,,,,,,,0.062764729,0.053436434,0.072093023,0.062464018,0.05441672,0.070511317,,,,0.092592593,0.047956328,0.137228858,0.176,,,0.143,0.211,0.388,,,0.317,0.463,7.5,0.11921353,0.1,,,0.258,,,0.212,0.305,0.640899157,51320,80075,,,0.178318481,,,0.142103446,0.219671403,0.206349206,13,63,0.142983259,0.27579642,392.6,314,79988,,,26.49898945,472,17812,24.10834833,28.88963056,24.8447205,14.20090443,40.34626956,,,,,,,36.83453237,32.32230216,41.34676259,17.86847114,15.17445549,20.56248678,,,,30.18108652,16.89212502,49.77911242,0.096047355,6036,62844,0.082940972,0.109153738,0.000462569,37,79988,,,2161.837838,0.000585925,47,80215,,,1706.702128,0.004550271,365,80215,,,219.7671233,1909,,,,,1922,,,1936,1920,0.39,,,,,0.31,0.28,,0.33,0.4,0.33,,,,,0.49,0.18,,0.25,0.33,0.84482726,44677,52883,0.828883394,0.860771126,0.550894054,11923,21643,0.505075203,0.596712904,0.046030161,1752,38062,,,0.151,2872,,0.095,0.207,0.137345679,0.093893605,0.180797754,0.004255319,0,0.355846101,,,,0.169950739,0.107487274,0.232414204,0.117976319,0.081515061,0.154437576,4.395264819,125309,28510,3.621859553,5.168670086,0.248545261,4912,19763,0.203303762,0.293786761,9.126368955,73,79988,,,83.0362566,324,390191,73.99453088,92.07798232,213.7630519,139.6371226,313.2123989,,,,,,,50.97548543,38.40171182,66.35160107,89.71080071,78.06596459,101.3556368,,,,10,,,,,1,,,,,0.15694315,4210,26825,0.132948606,0.180937695,0.098193451,0.079262895,0.117124007,0.054613234,0.040488017,0.068738451,0.01248835,0.006100743,0.018875958,0.804953467,26813,33310,0.786002177,0.823904758,0.807415036,0.777057821,0.837772252,,,,,,,0.780250348,0.725224753,0.835275942,0.808591982,0.784193102,0.832990861,0.244,,33310,0.212162477,0.275837523,76.59130509,,,75.96395106,77.21865912,69.62439541,64.44868674,74.80010408,,,,,,,81.16069695,78.65455156,83.66684235,76.19166903,75.45750999,76.92582806,,,,428.5314053,1149,220123,403.0561143,454.0066964,725.913006,542.1465538,951.9383293,,,,,,,306.6199907,251.3503485,361.8896329,448.1424899,417.282414,479.0025657,,,,44.17988188,38,86012,31.26431387,60.64033963,,,,,,,,,,50.79436747,30.10396134,80.27699937,32.01170714,17.50109818,53.71020515,,,,5.81915846,39,6702,4.137990524,7.95498118,,,,,,,,,,,,,,,,,,,,,,0.128,,,0.109,0.147,0.185,,,0.16,0.212,0.102,,,0.086,0.12,105.9,70,66115,,,0.1,7980,,,,0.11921353,9046.99559,75889,,,16.12287327,38,235690,11.40950471,22.12990323,,,,,,,,,,,,,18.35740557,12.19836269,26.53156224,,,,0.302,,,0.289,0.314,0.117917481,5130,43505,0.10004514,0.135789821,0.04800787,976,20330,0.033709998,0.062305743,0.000735523,59,80215,,,1359.576271,0.834246779,841.755,1009,,,,,,,,2.819385428,,,,,,,,2.527714348,3.103186008,2.821471944,,,,,,,,2.571912896,3.088190402,0.159441226,,,,,-75.13464444,,,,,0.80983929,43639,53886,0.750892655,0.868785926,71012,,,64755.48936,77268.51064,75266,53229.40426,97302.59575,178232,27145.19149,329318.8085,,,,60613,50105.25532,71120.74468,72365,68683.29787,76046.70213,,,,,,,,,,,82.97382948,,,,,0.284909593,,71012,,,6.360832691,33,5188,,,5.891254801,32,543178,4.029613922,8.31669399,,,,,,,,,,12.16175129,7.207824587,19.22081029,,,,,,,19.49167916,75,390191,15.2510385,24.54654404,19.2213557,,,,,,,,,,,,,23.43906964,17.70562131,30.43758156,,,,14.09566084,55,390191,10.6187808,18.34744009,,,,,,,,,,10.19509709,5.089355732,18.24184486,15.34526854,10.91198603,20.97748726,,,,15.28044214,83,543178,12.17078687,18.94240706,,,,,,,,,,17.56697409,11.47533071,25.73968723,13.19954054,9.698525911,17.55259072,,,,18,,9000,,,48,114,0.62512772,33038,52850,,,0.553,,,,,66.12035217,,,,,0.665414631,18247,27422,0.643378442,0.687450819,0.100409451,2673,26621,0.081845242,0.118973661,0.835460579,22910,27422,0.815151615,0.855769544,80215,,,,,0.242523219,19454,80215,,,0.165118743,13245,80215,,,0.009848532,790,80215,,,0.043046812,3453,80215,,,0.012429097,997,80215,,,0.0024559,197,80215,,,0.290631428,23313,80215,,,0.636526834,51059,80215,,,0.040028306,2998,74897,0.032488353,0.047568258,0.472505142,37902,80215,,,0.317377459,25414,80075,, -41,061,41061,OR,Union County,2024,1,8974.552898,417,72131,7561.374825,10387.73097,0,,,,2,,,,2,,,,2,,,,2,9642.887657,8025.276462,11260.49885,,,,,2,,0.156,,,0.13,0.184,3.768577663,,,3.020340403,4.67573277,5.521869055,,,4.490495977,6.682961676,0.07769556,147,1892,0.065633243,0.089757878,0,,,,,,,,,,,,,0.073464218,0.060595537,0.086332899,,,,,,,0.17,,,0.134,0.208,0.354,,,0.281,0.433,8.1,0.037538441,0.11,,,0.209,,,0.168,0.256,0.848450145,22226,26196,,,0.182371471,,,0.146274833,0.221808042,0.230769231,3,13,0.089378268,0.394382228,324.3,85,26212,,,13.950539,88,6308,11.18874021,17.18745422,,,,,,,,,,18.5873606,8.913361889,34.18281792,13.3536818,10.40985008,16.8715736,,,,,,,0.072988364,1474,20195,0.06107347,0.084903257,0.00083931,22,26212,,,1191.454546,0.000649425,17,26177,,,1539.823529,0.00439317,115,26177,,,227.626087,1782,,,,,,,,,1799,0.41,,,,,,,,,0.41,0.26,,,,,0.19,0.43,,0.31,0.26,0.927824506,16326,17596,0.912295046,0.943353965,0.619964974,3894,6281,0.550327088,0.68960286,0.047424032,579,12209,,,0.155,865,,0.095425532,0.214574468,0.16,0,0.7716794,0.106918239,0,0.543125561,,,,0.304635762,0.104977305,0.504294218,0.155767196,0.112749547,0.198784844,4.201390481,109984,26178,3.45628607,4.946494891,0.229453848,1315,5731,0.1671068,0.291800896,15.64169083,41,26212,,,83.91227765,111,132281,68.30165983,99.52289547,,,,,,,,,,,,,92.47525431,75.03432074,109.9161879,,,,6.3,,,,,0,,,,,0.147890589,1595,10785,0.122903999,0.172877178,0.103383459,0.081400173,0.125366745,0.028650904,0.015620861,0.041680947,0.024107557,0.012519153,0.035695961,0.745930644,8432,11304,0.710640689,0.781220599,,,,,,,,,,0.656742557,0.491534202,0.821950912,0.755481121,0.717312842,0.793649399,0.155,,11304,0.128092382,0.181907618,76.97841287,,,75.80141135,78.15541439,,,,,,,,,,,,,76.33814483,75.04932909,77.62696057,,,,420.5944792,417,72131,377.0941426,464.0948158,,,,,,,,,,,,,437.3380214,390.3259648,484.3500779,,,,52.1609538,14,26840,28.51687882,87.51721729,,,,,,,,,,,,,58.47164125,31.13368637,99.98828731,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.116,,,0.099,0.134,0.185,,,0.16,0.212,0.09,,,0.075,0.105,67.5,15,22208,,,0.11,2890,,,,0.037538441,966.5397657,25748,,,26.38257243,21,79598,16.33122815,40.32856446,,,,,,,,,,,,,27.0967926,16.31403923,42.31499818,,,,0.318,,,0.301,0.335,0.087577214,1276,14570,0.072087852,0.103066575,0.036498817,216,5918,0.024583924,0.048413711,0.001451656,38,26177,,,688.8684211,0.871003401,256.075,294,,,,,,,,2.87897821,,,,,,,,,2.907030412,2.769819339,,,,,,,,,2.777310428,0.044702637,,,,,504.6796567,,,,,0.756918819,41025,54200,0.694493966,0.819343672,57091,,,50075.51064,64106.48936,84632,24930.04255,144333.9575,63897,44867.7234,82926.2766,,,,66875,19995.85106,113754.1489,62006,56949.31915,67062.68085,,,,,,,,,,,47.09186207,,,,,0.337899144,,57091,,,8.553100499,12,1403,,,,,,,,,,,,,,,,,,,,,,,,,,18.25493712,25,132281,11.57206421,27.39136877,18.89916163,,,,,,,,,,,,,20.54243999,12.87383777,31.10150101,,,,15.87529577,21,132281,9.827058296,24.26707595,,,,,,,,,,,,,17.98129945,11.13070777,27.48632628,,,,15.74734739,29,184158,10.54624569,22.61581763,,,,,,,,,,,,,17.7981809,11.91972108,25.56115666,,,,35.92592593,,2700,,,45,52,0.739435923,14944,20210,,,0.648,,,,,66.01486668,,,,,0.666074766,7127,10700,0.640181355,0.691968178,0.116378059,1203,10337,0.092588588,0.14016753,0.82682243,8847,10700,0.79486383,0.85878103,26177,,,,,0.216984376,5680,26177,,,0.21813042,5710,26177,,,0.006685258,175,26177,,,0.013637926,357,26177,,,0.011957062,313,26177,,,0.014822172,388,26177,,,0.055812354,1461,26177,,,0.877755281,22977,26177,,,0.003724171,93,24972,0,0.008333599,0.497230393,13016,26177,,,0.429149489,11242,26196,, -41,063,41063,OR,Wallowa County,2024,1,7614.297905,108,19327,4758.124421,10470.47139,0,,,,2,,,,2,,,,2,,,,2,8204.660335,5063.470151,11345.85052,,,,,2,,0.131,,,0.107,0.158,3.413060181,,,2.630604249,4.292814076,5.246571664,,,4.162057184,6.406452852,0.039812646,17,427,0.021267484,0.058357809,1,,,,,,,,,,,,,0.04040404,0.021010144,0.059797937,,,,,,,0.143,,,0.109,0.18,0.3,,,0.229,0.38,7.8,0.107030373,0.093,,,0.183,,,0.145,0.227,0.584765255,4322,7391,,,0.158557433,,,0.125801384,0.195655592,0,0,9,0,0.215915826,145.8,11,7545,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.082090961,435,5299,0.068984578,0.095197344,0.001722995,13,7545,,,580.3846154,0.000652827,5,7659,,,1531.8,0.003394699,26,7659,,,294.5769231,1658,,,,,,,,,1686,0.45,,,,,,,,,0.44,0.3,,,,,,,,,0.3,0.933131241,5233,5608,0.904023609,0.962238873,0.637162162,943,1480,0.521188268,0.753136057,0.054218534,196,3615,,,0.158,233,,0.096042553,0.219957447,,,,,,,,,,0.242990654,0,0.564445007,0.082145851,0,0.165737237,3.820996184,116143,30396,3.190126884,4.451865484,0.227586207,330,1450,0.1027138,0.352458614,10.60304838,8,7545,,,127.5439472,46,36066,93.37819944,170.125752,,,,,,,,,,,,,134.7668533,98.29986759,180.3286529,,,,5.6,,,,,0,,,,,0.111111111,355,3195,0.074323754,0.147898469,0.078787879,0.048874274,0.108701484,0.027543036,0.004499733,0.050586339,0.007824726,0,0.017850742,0.650730816,2137,3284,0.586081347,0.715380285,,,,,,,,,,,,,0.642693691,0.574363092,0.711024289,0.135,,3284,0.094823657,0.175176343,79.39363989,,,76.94059424,81.84668554,,,,,,,,,,,,,78.82996521,76.2128834,81.44704701,,,,323.5118879,108,19327,250.6080682,396.4157075,,,,,,,,,,,,,340.3326537,261.4890111,419.1762964,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.104,,,0.088,0.123,0.175,,,0.148,0.202,0.078,,,0.066,0.093,,,,,,0.093,680,,,,0.107030373,750.0688548,7008,,,,,,,,,,,,,,,,,,,,,,,,,,0.291,,,0.273,0.308,0.093619247,358,3824,0.076938396,0.110300098,0.0538262,83,1542,0.035953859,0.07169854,0.001436219,11,7659,,,696.2727273,,,,,,,,,,,3.108650276,,,,,,,,,3.191693579,2.979816458,,,,,,,,,2.972782678,0.05192636,,,,,1276.800233,,,,,0.702201182,40642,57878,0.507165971,0.897236392,61648,,,53421.95745,69874.04255,,,,,,,,,,90417,4611.893617,176222.1064,62898,55890.85106,69905.14894,,,,,,,,,,,,,,,,0.312921749,,61648,,,14.45086705,5,346,,,,,,,,,,,,,,,,,,,,,,,,,,27.17676431,12,36066,12.42694719,51.58996408,33.27233405,,,,,,,,,,,,,29.58434707,12.77242123,58.2929576,,,,30.49963955,11,36066,15.22531017,54.57228002,,,,,,,,,,,,,32.9430086,16.4450312,58.94414217,,,,,,,,,,,,,,,,,,,,,,,,,,,,,600,,,-888,16,0.901751314,5149,5710,,,0.477,,,,,30.323779,,,,,0.738917762,2417,3271,0.703955484,0.77388004,0.071878105,217,3019,0.042876461,0.10087975,0.814735555,2665,3271,0.767794373,0.861676737,7659,,,,,0.196761979,1507,7659,,,0.295991644,2267,7659,,,0.00391696,30,7659,,,0.010575793,81,7659,,,0.006136571,47,7659,,,0.00169735,13,7659,,,0.041519781,318,7659,,,0.917352135,7026,7659,,,0.006506365,46,7070,0,0.019206415,0.511293903,3916,7659,,,1,7391,7391,, -41,065,41065,OR,Wasco County,2024,1,8937.851629,423,73068,7544.730485,10330.97277,0,32493.1866,16789.70367,56759.05786,1,,,,2,,,,2,,,,2,9620.332122,7826.952448,11413.7118,,,,,2,,0.165,,,0.14,0.194,3.738297955,,,2.93472437,4.673812769,5.400989645,,,4.362616961,6.549694617,0.06612411,130,1966,0.055139394,0.077108825,0,,,,,,,,,,0.073529412,0.051596162,0.095462662,0.063106796,0.049550847,0.076662746,,,,,,,0.16,,,0.127,0.196,0.373,,,0.297,0.454,7.6,0.121461732,0.096,,,0.229,,,0.187,0.278,0.687889014,18346,26670,,,0.165488042,,,0.131657379,0.202762274,0.139534884,6,43,0.070756518,0.22547155,370.4,99,26726,,,19.06128305,93,4879,15.3849155,23.35135951,,,,,,,,,,22.83105023,15.90266302,31.75246404,15.10067114,11.01453315,20.20588607,,,,,,,0.097983541,2036,20779,0.083685669,0.112281413,0.001047669,28,26726,,,954.5,0.000828282,22,26561,,,1207.318182,0.006513309,173,26561,,,153.5317919,1337,,,,,,,,,1377,0.4,,,,,0.45,0.42,,0.32,0.4,0.32,,,,,,0.53,,0.19,0.33,0.864358018,16224,18770,0.84140361,0.887312426,0.549836844,3707,6742,0.48552489,0.614148797,0.04309515,582,13505,,,0.167,922,,0.106234043,0.227765957,0.487288136,0.282855875,0.691720396,,,,,,,0.080576307,0.019557235,0.14159538,0.098985552,0.051985214,0.14598589,4.513527653,120782,26760,3.945460907,5.0815944,0.151193172,868,5741,0.098277956,0.204108388,10.10252189,27,26726,,,94.15983066,125,132753,77.65288455,110.6667768,,,,,,,,,,38.86664853,18.6380687,71.47715046,104.6937707,84.37596387,125.0115776,,,,7.1,,,,,1,,,,,0.13836478,1430,10335,0.113762526,0.162967034,0.096884129,0.074863774,0.118904483,0.029027576,0.016846134,0.041209018,0.01644896,0.00997331,0.02292461,0.779804617,9020,11567,0.731377745,0.828231488,,,,,,,,,,0.759036145,0.60896641,0.909105879,0.806459753,0.766228333,0.846691172,0.186,,11567,0.154318928,0.217681073,76.15278022,,,75.05597033,77.24959011,,,,,,,,,,91.08453378,79.70213133,102.4669362,75.60469373,74.26716829,76.94221917,,,,417.156844,423,73068,374.2614799,460.0522081,1045.25333,619.4833679,1651.950897,,,,,,,,,,437.163772,386.4775121,487.8500319,,,,62.86836935,16,25450,35.93470512,102.0942931,,,,,,,,,,,,,86.933262,46.28830073,148.6585256,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.118,,,0.102,0.138,0.179,,,0.155,0.206,0.095,,,0.081,0.111,119.6,27,22583,,,0.096,2570,,,,0.121461732,3062.414647,25213,,,22.55328213,18,79811,13.36650434,35.64390907,,,,,,,,,,,,,25.7909216,14.43498303,42.53820301,,,,0.318,,,0.304,0.332,0.11754572,1774,15092,0.09848189,0.136609549,0.047371073,282,5953,0.031881712,0.062860435,0.001091826,29,26561,,,915.8965517,0.709683099,201.55,284,,,,,,,,2.746478997,,,,,,,,2.370987011,3.04622953,2.449886444,,,,,,,,2.170848313,2.724401307,0.067879974,,,,,102.557,,,,,0.739870256,42655,57652,0.669326463,0.810414049,60506,,,52369.31915,68642.68085,71667,27170.82979,116163.1702,,,,,,,59728,44733.10638,74722.89362,61203,55437.38298,66968.61702,,,,,,,,,,,,,,,,0.318827885,,60506,,,8.917197452,14,1570,,,,,,,,,,,,,,,,,,,,,,,,,,24.52969725,31,132753,16.42792323,35.228737,23.351638,,,,,,,,,,,,,30.06542841,19.45676003,44.38250327,,,,17.32540884,23,132753,10.98282302,25.99661996,,,,,,,,,,,,,21.55459985,13.34263704,32.94849553,,,,11.9148844,22,184643,7.466994618,18.03927817,,,,,,,,,,,,,11.72401665,6.701288509,19.03906853,,,,14.8,,2500,,,12,25,0.754203363,14130,18735,,,0.562,,,,,76.13723679,,,,,0.651220442,6830,10488,0.611260027,0.691180858,0.123889338,1227,9904,0.095654246,0.15212443,0.846014493,8873,10488,0.823620256,0.86840873,26561,,,,,0.214562705,5699,26561,,,0.216068672,5739,26561,,,0.005496781,146,26561,,,0.036632657,973,26561,,,0.010993562,292,26561,,,0.007943978,211,26561,,,0.212416701,5642,26561,,,0.715748654,19011,26561,,,0.033028617,831,25160,0.022868231,0.043189003,0.493505516,13108,26561,,,0.347656543,9272,26670,, -41,067,41067,OR,Washington County,2024,1,4539.143506,4747,1706112,4347.596387,4730.690626,0,6262.567034,3579.598167,10170.01651,1,2141.817967,1746.158502,2537.477433,,5829.785101,4496.909746,7162.660455,,4753.594392,4267.401133,5239.787651,,4691.702153,4448.076474,4935.327832,,10498.21007,7180.767916,14820.34024,,,0.119,,,0.1,0.141,3.109034167,,,2.527535043,3.825146528,5.130706518,,,4.463195655,5.950463904,0.067105796,2985,44482,0.064780597,0.069430995,0,0.110236221,0.055766678,0.164705763,0.08274196,0.076107014,0.089376905,0.085691824,0.070309268,0.10107438,0.074038182,0.068986201,0.079090163,0.058494642,0.055501091,0.061488193,0.06626506,0.039507831,0.093022289,0.068906606,0.057059266,0.080753946,0.104,,,0.082,0.131,0.31,,,0.271,0.356,9.1,0.023074404,0.074,,,0.173,,,0.144,0.206,0.964725204,579194,600372,,,0.190596492,,,0.164216045,0.222284995,0.18699187,23,123,0.142626788,0.235160363,340.7,2047,600811,,,8.002344532,983,122839,7.502083635,8.50260543,,,,1.090238175,0.580505912,1.864340483,3.720238095,1.783998771,6.841650313,17.86417174,16.42267737,19.30566611,4.480082616,3.968835247,4.991329985,21.30898021,11.64981777,35.75284798,6.076388889,4.495345951,8.033308357,0.059585086,30781,516589,0.053627639,0.065542533,0.000922087,554,600811,,,1084.49639,0.000969716,582,600176,,,1031.230241,0.005536709,3323,600176,,,180.6126994,1930,,,,,,1173,1455,1572,1978,0.4,,,,,0.28,0.31,0.29,0.23,0.42,0.47,,,,,0.41,0.46,0.29,0.26,0.49,0.928653608,387438,417204,0.923546258,0.933760959,0.767173249,142405,185623,0.749990879,0.78435562,0.03478139,11663,335323,,,0.088,10991,,0.066553192,0.109446809,0.12,0.002245041,0.237754959,0.054116127,0.031197192,0.077035063,0.358633202,0.257787486,0.459478918,0.159173472,0.13023087,0.188116074,0.060426343,0.048701626,0.07215106,4.064494666,183264,45089,3.919432182,4.209557151,0.162317679,21467,132253,0.148687143,0.175948215,7.190281137,432,600811,,,46.14764104,1381,2992569,43.71370737,48.58157471,,,,17.87561502,13.67342909,22.96197532,39.55696203,25.83992091,57.96011454,27.83324964,23.27128445,32.39521483,57.33588574,53.9582813,60.71349018,,,,6.9,,,,,1,,,,,0.162325144,36205,223040,0.154071201,0.170579086,0.126899421,0.118930599,0.134868243,0.031093078,0.027056877,0.035129278,0.016499283,0.014194587,0.018803978,0.654211269,204127,312020,0.64402302,0.664399517,0.737410072,0.635045734,0.83977441,0.58854036,0.56613325,0.610947469,0.648296837,0.582366044,0.71422763,0.689945405,0.666092475,0.713798335,0.688449399,0.677292525,0.699606273,0.324,,312020,0.310732136,0.337267864,81.80656319,,,81.57561194,82.03751444,82.6373429,74.15500169,91.11968412,88.1970638,87.02654281,89.36758478,81.73522774,78.56103771,84.90941777,85.42361855,83.73035023,87.11688687,81.28921177,81.02870957,81.54971397,74.29722277,69.5385965,79.05584904,236.3241632,4747,1706112,229.5149565,243.13337,273.2123973,175.0523382,406.5183904,112.4411019,97.6579714,127.2242324,339.49557,273.7077581,405.2833818,217.1557886,195.9582707,238.3533066,250.0302212,241.7392888,258.3211537,597.8205451,437.6797747,797.4088305,29.56528831,174,588528,25.17226442,33.95831221,,,,24.45187057,13.68552634,40.32964198,,,,41.28206617,31.79222126,52.71627688,23.92746744,18.78820836,30.03874423,,,,3.89567514,177,45435,3.321754066,4.469596214,,,,,,,,,,5.884622805,4.501270168,7.559044175,2.746919814,2.133090719,3.482375405,,,,,,,0.09,,,0.077,0.104,0.151,,,0.132,0.173,0.08,,,0.068,0.093,171.5,873,509076,,,0.074,43930,,,,0.023074404,12222.74257,529710,,,10.85321197,196,1805917,9.333762294,12.37266165,,,,,,,,,,8.3016169,5.422891777,12.16379221,12.82885869,10.76198834,14.89572904,,,,0.27,,,0.258,0.282,0.069959887,26876,384163,0.062810951,0.077108823,0.031177181,4335,139044,0.024028245,0.038326118,0.000888073,533,600176,,,1126.033771,0.86870649,5889.83,6780,,,0.064118457,1862,29040,0.048006708,0.080230207,3.197317333,,,,,,3.815738962,2.729514775,2.491695988,3.441524766,3.095537555,,,,,,4.002189764,2.500956101,2.317921138,3.342360365,0.109787306,,,,,1699.378105,,,,,0.766540773,61091,79697,0.7365661,0.796515446,98706,,,95004.04255,102407.9575,71096,59601.70213,82590.29787,136204,127844.5106,144563.4894,72297,64894.2766,79699.7234,75373,70190.02128,80555.97872,101963,99672.95745,104253.0426,,,,,,,,,,,49.74476348,,,,,0.333586611,,98706,,,7.413050485,253,34129,,,1.566388107,65,4149674,1.208905271,1.996490226,,,,,,,,,,3.265830046,2.070256103,4.900348577,1.108244043,0.747727602,1.582087281,,,,13.08943653,407,2992569,11.80291116,14.37596189,13.60035475,,,,4.362084263,2.384792058,7.318836188,,,,4.688810761,3.034351102,6.921609636,16.37053986,14.5859583,18.15512143,,,,8.454274571,253,2992569,7.412503822,9.496045321,,,,,,,,,,5.644505172,3.780213701,8.106450976,10.61775662,9.164267091,12.07124615,,,,5.928176527,246,4149674,5.187361735,6.668991318,,,,3.714750839,2.163979256,5.947675946,,,,5.679704428,4.057664114,7.734145384,6.501698384,5.541133831,7.462262937,,,,10.49679487,,62400,,,193,462,0.784170971,320326,408490,,,0.76,,,,,174.7756027,,,,,0.609102998,140168,230122,0.600760612,0.617445383,0.140177247,31840,227141,0.132694388,0.147660106,0.940783584,216495,230122,0.935170388,0.946396781,600176,,,,,0.212809243,127723,600176,,,0.149707752,89851,600176,,,0.024641105,14789,600176,,,0.011793207,7078,600176,,,0.127417624,76473,600176,,,0.005859948,3517,600176,,,0.179314068,107620,600176,,,0.621454373,372982,600176,,,0.036301254,20568,566592,0.033145993,0.039456515,0.499868372,300009,600176,,,0.05495093,32991,600372,, -41,069,41069,OR,Wheeler County,2024,1,5082.562943,21,3460,1650.294353,11861.00645,1,,,,2,,,,2,,,,2,,,,2,5901.603132,1916.234473,13772.37303,1,,,,2,,0.169,,,0.141,0.2,4.023240212,,,3.136558323,4.970197172,5.839959009,,,4.653487761,7.058955002,,,,,,0,,,,,,,,,,,,,,,,,,,,,,0.177,,,0.14,0.218,0.341,,,0.258,0.428,3.2,0.510603877,0.109,,,0.229,,,0.183,0.279,0.107512061,156,1451,,,0.137732997,,,0.107279415,0.172003085,0.5,6,12,0.355111295,0.623019394,0,0,1451,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.071817193,66,919,0.05751932,0.086115065,0,0,1451,,,-1451,0.002076125,3,1445,,,481.6666667,0.002768166,4,1445,,,361.25,,,,,,,,,,,0.29,,,,,,,,,0.3,0.13,,,,,,,,,0.13,0.9164396,1009,1101,0.88204057,0.950838631,0.703862661,164,233,0.487030586,0.920694736,0.033783784,25,740,,,0.233,42,,0.143638298,0.322361702,,,,,,,,,,,,,0.054545455,0,0.204326185,3.629166667,87100,24000,2.058752282,5.199581051,0.154185022,35,227,0.031265796,0.277104248,0,0,1451,,,,,,,,,,,,,,,,,,,,,,,,,,5.8,,,,,0,,,,,0.111940299,75,670,0.072427687,0.15145291,0.107462687,0.038194439,0.176730934,0.005970149,0,0.047897337,0.011940299,0,0.032634583,0.605371901,293,484,0.507605292,0.703138509,,,,,,,,,,,,,0.596938776,0.505426034,0.688451517,0.239,,484,0.139533829,0.338466171,,,,,,,,,,,,,,,,,,,,,,,,291.7329424,21,3460,155.3355052,498.8722164,,,,,,,,,,,,,324.3799438,167.6118504,566.6264816,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.124,,,0.106,0.145,0.192,,,0.166,0.22,0.096,,,0.08,0.112,0,0,1319,,,0.109,160,,,,0.510603877,735.780186,1441,,,,,,,,,,,,,,,,,,,,,,,,,,0.313,,,0.299,0.329,0.079166667,57,720,0.061294326,0.097039007,0.042857143,9,210,0.030942249,0.054772037,0.004152249,6,1445,,,240.8333333,0.425,66.725,157,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.024564092,,,,,-4878.875055,,,,,0.872229804,40263,46161,0.512108035,1.232351574,49716,,,42537.2766,56894.7234,,,,,,,,,,51750,22497.74468,81002.25532,50980,44467.31915,57492.68085,,,,,,,,,,,,,,,,0.388023976,,49716,,,26.54867257,3,113,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,100,,,0,0,0.853982301,965,1130,,,0.295,,,,,0.568468134,,,,,0.690705128,431,624,0.609141659,0.772268597,0.095840868,53,553,0.000975734,0.190706002,0.8125,507,624,0.771681051,0.85331895,1445,,,,,0.130795848,189,1445,,,0.379930796,549,1445,,,0.002076125,3,1445,,,0.029065744,42,1445,,,0.011072664,16,1445,,,0.001384083,2,1445,,,0.059515571,86,1445,,,0.868512111,1255,1445,,,0.000761035,1,1314,0,0.046451491,0.509342561,736,1445,,,1,1451,1451,, -41,071,41071,OR,Yamhill County,2024,1,6281.608528,1291,299005,5732.129361,6831.087695,0,,,,2,,,,2,15379.91525,8790.950442,24976.01881,1,3802.911727,2840.196374,4987.012778,,6784.288213,6102.844616,7465.73181,,,,,2,,0.144,,,0.121,0.169,3.59372672,,,2.86733747,4.463158161,5.362422668,,,4.42623868,6.445919221,0.066693291,501,7512,0.061051311,0.072335271,0,,,,,,,,,,0.068609593,0.056400945,0.080818241,0.066048448,0.059351636,0.072745261,,,,0.061594203,0.033230248,0.089958158,0.143,,,0.111,0.176,0.342,,,0.28,0.414,8.6,0.033377732,0.09,,,0.192,,,0.154,0.233,0.788529734,84942,107722,,,0.195247754,,,0.159601295,0.23710774,0.303571429,17,56,0.234106513,0.374290436,242.1,262,108239,,,10.05306824,269,26758,8.85169332,11.25444316,,,,,,,,,,12.61620186,9.940132118,15.79105793,9.16424299,7.774308179,10.5541778,,,,19.66873706,11.84186456,30.71516933,0.078375279,6630,84593,0.067651875,0.089098684,0.000582045,63,108239,,,1718.079365,0.000591355,64,108226,,,1691.03125,0.005229797,566,108226,,,191.2120141,2139,,,,,,,,2824,2092,0.41,,,,,0.4,0.31,,0.29,0.42,0.44,,,,,0.4,0.4,0.42,0.32,0.44,0.899027908,65941,73347,0.888999631,0.909056186,0.633669086,17552,27699,0.591937442,0.67540073,0.038605936,2180,56468,,,0.126,2773,,0.084297872,0.167702128,0.284615385,0.09818219,0.47104858,0.014184397,0,0.277721727,,,,0.182329865,0.112996578,0.251663153,0.148005669,0.10454327,0.191468069,4.297520418,145759,33917,3.914002537,4.681038298,0.197515904,4564,23107,0.15854677,0.236485039,9.238814106,100,108239,,,74.10490791,397,535727,66.81523923,81.39457659,,,,,,,,,,33.18153734,22.22219632,47.65422257,86.15318718,77.17836632,95.12800805,,,,9.4,,,,,1,,,,,0.174480554,6550,37540,0.154526639,0.19443447,0.129828326,0.11165965,0.147997003,0.038359084,0.028904798,0.047813369,0.018913159,0.010882724,0.026943595,0.709933504,34698,48875,0.690362354,0.729504654,,,,0.657079646,0.535070986,0.779088306,,,,0.708841655,0.635385284,0.782298026,0.680507535,0.653508692,0.707506378,0.426,,48875,0.389566913,0.462433087,78.82395429,,,78.31224556,79.33566302,,,,84.4380607,80.16695311,88.70916828,,,,89.03508045,83.95067141,94.11948949,78.19727382,77.61010864,78.78443899,,,,322.9153222,1291,299005,304.5654272,341.2652172,,,,,,,912.8826789,584.9011575,1358.297065,159.8919078,122.8653321,204.5712073,342.6456058,321.527206,363.7640055,,,,48.65679183,52,106871,36.33921943,63.80690902,,,,,,,,,,,,,55.06841191,39.15902415,75.28033192,,,,6.309977652,48,7607,4.652479404,8.366114918,,,,,,,,,,,,,6.443298969,4.487993815,8.961069103,,,,,,,0.107,,,0.09,0.124,0.173,,,0.148,0.198,0.087,,,0.074,0.102,108.5,100,92185,,,0.09,9610,,,,0.033377732,3310.837326,99193,,,17.02770563,55,323003,12.82759819,22.1638994,,,,,,,,,,,,,18.60961875,13.62457983,24.82262352,,,,0.293,,,0.279,0.306,0.093473254,5763,61654,0.079175382,0.107771126,0.039254658,948,24150,0.027339765,0.051169552,0.000711474,77,108226,,,1405.532468,0.874103448,1140.705,1305,,,0.074550129,464,6224,0.041939671,0.107160586,3.006630247,,,,,,,,2.600368363,3.196081353,2.968975934,,,,,,,,2.489867892,3.187144154,0.076760906,,,,,1322.319414,,,,,0.787233703,49369,62712,0.722142624,0.852324783,77969,,,69241.34043,86696.65957,78864,41122.38298,116605.617,110785,97138.87234,124431.1277,43769,42554.87234,44983.12766,78839,60697.38298,96980.61702,80039,73141.46809,86936.53192,,,,,,,,,,,77.23928626,,,,,0.3389424,,77969,,,7.002561913,41,5855,,,1.883185974,14,743421,1.029555296,3.159666074,,,,,,,,,,,,,1.922492109,0.959701134,3.43986943,,,,18.42419691,99,535727,14.90627553,22.52262531,18.47956142,,,,,,,,,,,,,22.07726855,17.63453798,27.29888445,,,,11.19973419,60,535727,8.546577072,14.41627796,,,,,,,,,,,,,12.89864102,9.661967245,16.87174003,,,,12.37522212,92,743421,9.976175648,15.17711135,,,,,,,,,,13.31181257,7.608851069,21.61754963,13.10790074,10.31019545,16.43086709,,,,13.09090909,,11000,,,65,79,0.758925811,58923,77640,,,0.696,,,,,87.84174141,,,,,0.693674911,26617,38371,0.671643531,0.715706291,0.150284843,5619,37389,0.131136977,0.169432709,0.89737041,34433,38371,0.881974817,0.912766003,108226,,,,,0.207879807,22498,108226,,,0.18928908,20486,108226,,,0.010089997,1092,108226,,,0.019838117,2147,108226,,,0.020244673,2191,108226,,,0.002707298,293,108226,,,0.173202373,18745,108226,,,0.754578382,81665,108226,,,0.03058925,3122,102062,0.022936344,0.038242156,0.496507309,53735,108226,,,0.264885539,28534,107722,, -42,000,42000,PA,Pennsylvania,2024,,8032.277707,187123,35464323,7974.919111,8089.636303,0,5790.052011,4291.775927,7288.328095,,3049.513164,2876.002435,3223.023894,,14174.41314,13948.62675,14400.19952,,7173.950395,6993.626311,7354.274478,,7479.600904,7415.100655,7544.101154,,7881.235983,5049.656605,11726.65442,1,,0.147,,,0.136,0.158,3.404988297,,,3.149450213,3.660526381,4.671410921,,,4.394099538,4.948722303,0.083463851,78230,937292,0.08290391,0.084023793,0,0.110438729,0.086543898,0.134333561,0.089446634,0.086761284,0.092131984,0.142100734,0.140141512,0.144059955,0.088729701,0.087090397,0.090369006,0.068868226,0.068239625,0.069496826,0.095238095,0.06282106,0.127655131,0.104824439,0.10072726,0.108921618,0.149,,,0.138,0.162,0.333,,,0.317,0.35,8.5,0.045875025,0.094,,,0.231,,,0.217,0.245,0.861398479,11200506,13002700,,,0.190827975,,,0.177055071,0.205404843,0.251174935,1443,5745,0.244667283,0.257724943,409.8,53124,12964056,,,13.24476076,37037,2796351,13.10986997,13.37965155,6.714628297,4.46182174,9.70450742,2.125846753,1.863371868,2.388321639,23.69703466,23.18694488,24.20712443,33.42905506,32.77873708,34.07937303,8.192631502,8.064932916,8.320330088,19.48717949,11.73255504,30.43164469,21.80573481,20.83613974,22.77532987,0.066858916,681400,10191610,0.064475938,0.069241895,0.000790802,10252,12964056,,,1264.539212,0.000714076,9263,12972008,,,1400.411098,0.002695805,34970,12972008,,,370.9467544,3014,,,,,2616,2092,5044,4447,2840,0.47,,,,,0.27,0.36,0.39,0.36,0.48,0.53,,,,,0.48,0.53,0.38,0.37,0.55,0.916609654,8366889,9128083,0.915578,0.917641308,0.673951148,2204722,3271338,0.669866751,0.678035544,0.043631819,282694,6479079,,,0.152,392438,,0.144851064,0.159148936,0.244036382,0.159106791,0.328965974,0.125778974,0.112955346,0.138602601,0.335297684,0.323046258,0.347549111,0.312756825,0.301347783,0.324165867,0.097531466,0.095018201,0.100044731,4.809967087,144679,30079,4.766293014,4.853641159,0.253464293,673171,2655881,0.249118454,0.257810132,11.79954792,15297,12964056,,,95.89959748,61531,64161896,95.14184761,96.65734735,60.92933266,46.14728155,78.94101763,25.39140514,23.36304736,27.41976291,130.5593451,127.8778539,133.2408362,68.96840782,66.67428633,71.26252931,98.4737455,97.59109269,99.35639831,59.86828976,30.93481894,104.577854,8.5,,,,,0.791044776,,,,,0.137938159,704395,5106600,0.136399045,0.139477272,0.120187258,0.118726144,0.121648371,0.01440195,0.013890705,0.014913196,0.010644069,0.010269774,0.011018363,0.711205565,4409690,6200303,0.709141758,0.713269373,0.66000913,0.621941565,0.698076695,0.551176827,0.539178506,0.563175148,0.570849015,0.562722504,0.578975526,0.633265058,0.623624961,0.642905156,0.7426573,0.740821422,0.744493178,0.372,,6200303,0.369617021,0.374382979,77.29794865,,,77.24940753,77.34648977,97.01857452,91.26037262,102.7767764,86.32810349,85.90763049,86.7485765,71.5643367,71.39843886,71.73023453,80.62694853,80.29671758,80.95717947,77.74649413,77.69261399,77.80037427,78.0934902,74.78134297,81.40563744,389.9387215,187123,35464323,388.0776056,391.7998374,233.8231619,193.6023599,274.043964,161.3558499,154.6782944,168.0334054,658.8773131,651.1214449,666.6331813,341.9109718,334.1585613,349.6633824,371.0074627,368.9562182,373.0587072,384.5472923,278.2987822,517.9826791,49.58226523,5920,11939753,48.31921221,50.84531825,,,,31.63176491,26.61950272,36.64402709,106.4751282,101.3234355,111.626821,47.54834954,44.09194703,51.00475206,39.91918774,38.52468168,41.3136938,,,,5.883842976,5598,951419,5.729708177,6.037977774,,,,3.387252869,2.839676089,3.934829648,12.98972048,12.35716537,13.62227559,6.306290303,5.842415421,6.770165184,4.450418817,4.286564823,4.614272811,,,,7.827612578,6.664529413,8.990695743,0.107154155,,,0.097183079,0.118014544,0.149417953,,,0.137621433,0.162035645,0.094,,,0.086,0.103,332.5,36881,11091650,,,0.094,1219130,,,,0.045875025,582721.9573,12702379,,,38.89564892,14994,38549299,38.27306437,39.51823347,42.40132858,27.16733129,63.0898159,5.501280079,4.362172964,6.846819261,62.64558019,60.25269932,65.03846106,37.81984474,35.66101242,39.97867705,37.69259302,36.98620533,38.39898072,,,,0.369899765,,,0.351870743,0.388299117,0.074883229,566122,7560064,0.07250025,0.077266207,0.044655529,123495,2765503,0.041081061,0.048229997,0.00151719,19681,12972008,,,659.1132564,0.870233769,118249.105,135882,,,0.062509612,42678,682743,0.059262809,0.065756415,3.118159045,,,,,,3.609268007,2.475647815,2.576593117,3.352633243,3.085374578,,,,,,3.786410373,2.263361134,2.420726734,3.371639827,0.306009729,,,,,2550.106,,,,,0.799885746,51807,64768,0.79347286,0.806298633,71789,,,71130.10638,72447.89362,55137,46989.59575,63284.40426,94475,91740.53192,97209.46809,45944,45140.93617,46747.06383,55042,53464.46809,56619.53192,78481,78081.85106,78880.14894,,,,,,0.520590728,858603,1649286,,,71.91600895,,,,,0.310176058,,,,,5.175440319,,,,,6.37558507,5722,89748626,6.210388058,6.540782083,,,,1.547885063,1.148870129,2.040693486,35.99413645,34.80164903,37.18662388,8.960851216,8.249735265,9.671967167,2.164987664,2.054649079,2.275326249,,,,14.08696474,9515,64161896,13.7932363,14.38069319,14.82967399,,,,6.744227302,5.705343221,7.783111383,8.910305138,8.198363073,9.622247203,6.644585036,5.869908469,7.419261603,15.92337771,15.56129001,16.2854654,,,,13.2290355,8488,64161896,12.94759826,13.51047274,,,,2.825953728,2.190075323,3.58886134,38.66460455,37.20535634,40.12385277,10.13072811,9.251479593,11.00997662,10.58341514,10.29405241,10.87277787,,,,9.436356162,8469,89748626,9.235380102,9.637332223,,,,3.436304839,2.797031981,4.075577697,9.73898492,9.118694927,10.35927491,8.505463695,7.812652679,9.198274712,9.871992433,9.636377884,10.10760698,,,,10.00082905,,1206200,,,8521,3542,0.707159712,6915283,9778955,,,,,,,,177.4507159,,,,,0.691890429,3593490,5193727,0.689082991,0.694697866,0.126820004,640274,5048683,0.125277525,0.128362484,0.871401982,4525824,5193727,0.869532436,0.873271527,12972008,,,,,0.20231756,2624465,12972008,,,0.195954705,2541926,12972008,,,0.108190729,1403451,12972008,,,0.004467389,57951,12972008,,,0.041060258,532634,12972008,,,0.000929386,12056,12972008,,,0.086041421,1116130,12972008,,,0.744882288,9662619,12972008,,,0.021159717,260278,12300637,0.020618327,0.021701108,0.506218081,6566665,12972008,,,0.235461097,3061630,13002700,, -42,001,42001,PA,Adams County,2024,1,6094.93478,1303,282615,5521.295134,6668.574426,0,,,,2,,,,2,18667.97976,9318.988236,33402.17242,1,4030.111096,2608.07541,5949.23899,,6069.055173,5460.11485,6677.995496,,,,,2,,0.145,,,0.119,0.173,3.545588408,,,2.746476801,4.390484116,5.180747974,,,4.159964722,6.241697979,0.072203285,466,6454,0.065888676,0.078517894,0,,,,,,,0.213483146,0.128350353,0.298615939,0.071328671,0.052463266,0.090194077,0.069775982,0.063009484,0.076542481,,,,0.090163934,0.039339312,0.140988556,0.175,,,0.135,0.219,0.369,,,0.296,0.453,8.9,0.041891615,0.073,,,0.239,,,0.193,0.291,0.732263221,76047,103852,,,0.183106697,,,0.148892346,0.22225944,0.25,15,60,0.183360138,0.320336817,201.7,210,104127,,,11.07289657,264,23842,9.737176808,12.40861633,,,,,,,,,,24.71412763,19.15310945,31.38606847,9.091832588,7.759903861,10.42376132,,,,,,,0.075823021,5986,78947,0.066291106,0.085354935,0.000537805,56,104127,,,1859.410714,0.000330105,35,106027,,,3029.342857,0.001197808,127,106027,,,834.8582677,2541,,,,,,,3733,3733,2495,0.53,,,,,,0.33,0.42,0.36,0.54,0.55,,,,,,0.52,0.52,0.33,0.55,0.903149906,66405,73526,0.895184414,0.911115399,0.584175687,13061,22358,0.547731232,0.620620142,0.033252423,1822,54793,,,0.1,1975,,0.067829787,0.132170213,,,,0.307017544,0,0.853150032,0.114503817,0,0.301640334,0.165843331,0.111479752,0.22020691,0.106113977,0.081665055,0.130562898,3.565953328,136305,38224,3.411426529,3.720480127,0.177212109,3641,20546,0.145148555,0.209275664,12.86890048,134,104127,,,77.86029804,401,515025,70.23950888,85.48108721,,,,,,,155.4466101,82.76877306,265.8184374,34.95187396,18.61040085,59.76876894,80.68413147,72.45164517,88.91661776,,,,9.1,,,,,1,,,,,0.103456977,4100,39630,0.091538742,0.115375212,0.0881343,0.07774852,0.09852008,0.011859702,0.007892812,0.015826592,0.007570023,0.003833505,0.011306541,0.790697674,39984,50568,0.7799109,0.801484449,,,,0.470588235,0.26348398,0.677692491,0.654778887,0.507716635,0.80184114,0.625561313,0.560131577,0.690991048,0.760146417,0.737478528,0.782814306,0.42,,50568,0.394362205,0.445637795,79.35733378,,,78.84139296,79.8732746,,,,,,,70.99392165,63.12483885,78.86300444,84.44469579,79.25325764,89.63613394,79.29709734,78.75871282,79.83548185,,,,304.9583102,1303,282615,286.9879754,322.9286449,,,,,,,598.6201061,387.3953697,883.6813651,203.2005625,135.0252981,293.6813893,307.4302726,288.4750653,326.3854798,,,,41.73935379,39,93437,29.68076082,57.05907067,,,,,,,,,,,,,41.38409783,28.11848665,58.74142348,,,,4.112718964,27,6565,2.710307712,5.983790167,,,,,,,,,,,,,3.608805485,2.204352145,5.573507381,,,,,,,0.108,,,0.091,0.127,0.164,,,0.14,0.189,0.084,,,0.071,0.1,215.4,194,90049,,,0.073,7610,,,,0.041891615,4248.103017,101407,,,18.71704348,58,309878,14.21263584,24.19611904,,,,,,,,,,,,,18.57010214,13.82666078,24.4162548,,,,0.334,,,0.315,0.35,0.082427799,4832,58621,0.070512905,0.094342693,0.057323055,1227,21405,0.040642204,0.074003906,0.00084884,90,106027,,,1178.077778,0.922386578,975.885,1058,,,0.029588766,177,5982,0.014701042,0.044476491,3.171505258,,,,,,,2.886521673,2.794223666,3.261133158,3.244437893,,,,,,,2.887871105,2.790855659,3.34689479,0.070450524,,,,,6492.663167,,,,,0.7705304,46473,60313,0.721502853,0.819557947,76554,,,70079.44681,83028.55319,90417,21021.08511,159812.9149,106250,40283.19149,172216.8085,95461,37380.65957,153541.3404,67131,52158.74468,82103.25532,79375,75667.08511,83082.91489,,,,,,0.378495441,4981,13160,,,47.36273203,,,,,0.281539828,,76554,,,4.348685511,22,5059,,,2.362751911,17,719500,1.376390058,3.782994693,,,,,,,,,,,,,2.500085941,1.429015131,4.059982937,,,,14.23072222,78,515025,11.05071263,18.04083133,15.14489588,,,,,,,,,,,,,15.09853823,11.62771423,19.28049625,,,,12.42658123,64,515025,9.569981757,15.86846681,,,,,,,,,,,,,13.33802715,10.20253391,17.13325387,,,,12.36970118,89,719500,9.933885774,15.22198171,,,,,,,,,,,,,12.5004297,9.91206332,15.55786683,,,,11.02040816,,9800,,,82,26,0.70803331,56540,79855,,,0.753,,,,,47.94996168,,,,,0.781482778,31264,40006,0.76460105,0.798364506,0.095785342,3734,38983,0.083559803,0.108010881,0.878193271,35133,40006,0.865842175,0.890544367,106027,,,,,0.190847614,20235,106027,,,0.21802937,23117,106027,,,0.017127713,1816,106027,,,0.004470559,474,106027,,,0.009412697,998,106027,,,0.000792251,84,106027,,,0.07436785,7885,106027,,,0.882652532,93585,106027,,,0.012292656,1225,99653,0.00914606,0.015439251,0.502739868,53304,106027,,,0.632573277,65694,103852,, -42,003,42003,PA,Allegheny County,2024,1,8183.722457,18069,3361930,7993.886353,8373.558561,0,,,,2,2459.449482,1987.953677,2930.945287,,16728.05638,16000.99156,17455.1212,,4767.384891,3819.588998,5715.180784,,6994.280469,6798.864207,7189.696731,,,,,2,,0.138,,,0.115,0.163,3.258867593,,,2.676208147,3.898498181,5.132241087,,,4.426167384,5.847477976,0.088794339,7680,86492,0.086898642,0.090690037,0,,,,0.091035441,0.083603977,0.098466906,0.150786145,0.145393885,0.156178405,0.082508251,0.071555088,0.093461414,0.069164265,0.06711062,0.07121791,,,,0.112713675,0.098387728,0.127039623,0.16,,,0.125,0.197,0.316,,,0.278,0.357,8.3,0.05520363,0.092,,,0.213,,,0.178,0.248,0.931215006,1164557,1250578,,,0.209432697,,,0.18286093,0.237863553,0.24,78,325,0.212150525,0.268674247,461.8,5717,1238090,,,9.661343624,2371,245411,9.272452686,10.05023456,,,,2.094578265,1.368248064,3.069042462,30.59291533,28.92472469,32.26110596,15.78879255,12.98707033,18.59051477,4.497254583,4.180419646,4.81408952,,,,11.02525443,9.027455569,13.02305329,0.049445259,48011,970993,0.044679301,0.054211216,0.001092812,1353,1238090,,,915.0702143,0.000978712,1207,1233253,,,1021.750621,0.00445083,5489,1233253,,,224.6771725,3140,,,,,,2110,5027,1464,2872,0.46,,,,,,0.34,0.34,0.3,0.47,0.53,,,,,,0.46,0.35,0.37,0.55,0.952350094,859715,902730,0.950280563,0.954419624,0.802950517,275840,343533,0.790589094,0.81531194,0.042066105,26574,631720,,,0.144,32153,,0.120170213,0.167829787,0.779527559,0.561516473,0.997538645,0.129983668,0.090787364,0.169179972,0.40082603,0.36867828,0.43297378,0.204736249,0.151711885,0.257760612,0.068490687,0.060517182,0.076464191,5.079133737,148458,29229,4.972148488,5.186118986,0.263952657,60882,230655,0.251097011,0.276808303,11.26735536,1395,1238090,,,110.4307799,6744,6106993,107.7951318,113.0664281,,,,22.82700671,17.33350323,29.50919958,167.1744783,158.2467236,176.102233,49.30465929,38.28699717,62.50540405,108.5866498,105.6289677,111.5443318,,,,14.1,,,,,1,,,,,0.130292563,71100,545695,0.125647154,0.134937972,0.117352149,0.11323097,0.121473329,0.008603707,0.007492279,0.009715135,0.010866876,0.009782288,0.011951464,0.649990759,407968,627652,0.644816528,0.65516499,,,,0.439681231,0.403125539,0.476236924,0.524191512,0.50052018,0.547862844,0.557660241,0.517481027,0.597839456,0.712781238,0.708058714,0.717503763,0.385,,627652,0.375847997,0.394152003,77.223742,,,77.06517113,77.38231287,,,,85.60778596,84.39140817,86.82416375,69.71100016,69.2219353,70.20006502,87.60392643,84.9406428,90.26721005,78.29633525,78.1289243,78.46374619,,,,392.7078765,18069,3361930,386.6398921,398.7758609,,,,137.0186179,115.7807025,158.2565333,744.5066575,720.0343777,768.9789372,189.4112608,155.7636624,223.0588593,353.3472475,346.9724275,359.7220676,,,,55.72722584,578,1037195,51.18404968,60.27040199,,,,35.85379201,21.58632492,55.99013751,134.2136595,117.5094107,150.9179083,55.79267442,34.07961499,86.16726059,33.93247579,29.63045338,38.23449821,,,,6.234009988,558,89509,5.716752882,6.751267094,,,,,,,13.55336282,11.83504227,15.27168338,,,,3.59947644,3.123830202,4.075122678,,,,13.57220413,8.783214901,20.03525065,0.101,,,0.086,0.117,0.15,,,0.13,0.173,0.08,,,0.069,0.093,266.2,2856,1072689,,,0.092,114250,,,,0.05520363,67533.25014,1223348,,,49.62497541,1819,3665493,47.34442317,51.90552766,,,,,,,87.17549336,78.85796558,95.49302113,28.00172677,17.94123471,41.66434983,47.12651014,44.60696747,49.6460528,,,,0.344,,,0.328,0.36,0.057036288,42266,741037,0.051078842,0.062993735,0.026141975,6305,241183,0.020184528,0.032099422,0.002493406,3075,1233253,,,401.0578862,0.902498402,9881.455,10949,,,0.039720431,2421,60951,0.032362408,0.047078454,3.36528781,,,,,,3.841784167,2.608398165,3.238045056,3.620651777,3.383461354,,,,,,4.153627194,2.462331763,3.143306724,3.681696184,0.255633376,,,,,1090.023372,,,,,0.805485238,55684,69131,0.789897284,0.821073193,71973,,,70113.08511,73832.91489,61250,24792.80851,97707.19149,94384,86987.23404,101780.766,39269,37942.87234,40595.12766,69213,60466.2766,77959.7234,79221,77943.7234,80498.2766,,,,,,0.495715834,69541,140284,,,64.84233887,,,,,0.348866936,,71973,,,7.237430944,469,64802,,,8.501875026,728,8562817,7.884278138,9.119471913,,,,,,,48.6043728,44.53858,52.6701656,,,,2.280219956,1.918904036,2.641535877,,,,14.10152063,912,6106993,13.14897339,15.05406787,14.93369978,,,,8.029641653,4.904713726,12.40113029,12.6580348,10.11496631,15.20110329,7.198331191,3.451879603,13.23798735,14.81855421,13.71249532,15.9246131,,,,14.57345702,890,6106993,13.61599038,15.53092366,,,,,,,51.62923754,46.66782754,56.59064754,,,,9.415875964,8.544925149,10.28682678,,,,6.212908673,532,8562817,5.684955718,6.740861627,,,,,,,11.15510195,9.207302038,13.10290187,,,,5.663291395,5.093870786,6.232712003,,,,11.03,,100000,,,682,421,0.752772171,719733,956110,,,0.709,,,,,202.2703435,,,,,0.650535063,354956,545637,0.645059212,0.656010913,0.119168778,63253,530785,0.114713523,0.123624034,0.887139252,484056,545637,0.882543055,0.891735449,1233253,,,,,0.183516278,226322,1233253,,,0.20393058,251498,1233253,,,0.132227532,163070,1233253,,,0.001669568,2059,1233253,,,0.045378361,55963,1233253,,,0.000409486,505,1233253,,,0.025212994,31094,1233253,,,0.772064613,952151,1233253,,,0.008702862,10286,1181910,0.007779989,0.009625736,0.511439259,630734,1233253,,,0.024146435,30197,1250578,, -42,005,42005,PA,Armstrong County,2024,1,9962.196927,1274,175144,8997.008921,10927.38493,0,,,,2,,,,2,,,,2,,,,2,10066.79384,9078.024786,11055.56288,,,,,2,,0.157,,,0.131,0.187,3.792663398,,,2.975569784,4.653107628,5.050730303,,,4.004224779,6.142491152,0.074100212,315,4251,0.066226088,0.081974336,0,,,,,,,,,,,,,0.073392244,0.065384344,0.081400143,,,,,,,0.201,,,0.159,0.25,0.355,,,0.281,0.439,8.3,0.0204773,0.11,,,0.248,,,0.199,0.301,0.728820281,47780,65558,,,0.172113561,,,0.137636437,0.212049894,0.477272727,21,44,0.406604346,0.543454323,152.1,99,65093,,,15.6087409,180,11532,13.32846346,17.88901833,,,,,,,,,,,,,15.51094891,13.17926337,17.84263444,,,,,,,0.058214566,2896,49747,0.04987414,0.066554991,0.000430154,28,65093,,,2324.75,0.000308895,20,64747,,,3237.35,0.001529028,99,64747,,,654.010101,2839,,,,,,,,,2858,0.43,,,,,,,,,0.43,0.41,,,,,,,0.36,,0.41,0.924415734,44934,48608,0.916991435,0.931840033,0.555865922,7960,14320,0.514247414,0.59748443,0.052582612,1639,31170,,,0.163,1946,,0.104617021,0.221382979,,,,,,,0.251572327,0,0.510169798,0.115789474,0,0.400323129,0.13051857,0.100718192,0.160318949,4.018219491,112478,27992,3.775910443,4.26052854,0.17264971,2145,12424,0.136450575,0.208848846,19.20329375,125,65093,,,124.3478662,404,324895,112.2222526,136.4734799,,,,,,,,,,,,,126.6831556,114.2526585,139.1136527,,,,7.7,,,,,1,,,,,0.10183699,2855,28035,0.08980474,0.113869239,0.083775072,0.071962553,0.095587591,0.008560728,0.005294968,0.011826488,0.022293562,0.015384149,0.029202975,0.795219552,23688,29788,0.776004299,0.814434804,,,,,,,,,,,,,0.74974584,0.72566448,0.7738272,0.446,,29788,0.419118775,0.472881225,75.34811788,,,74.61916326,76.07707251,,,,,,,,,,,,,75.23811276,74.49729839,75.97892712,,,,469.2400021,1274,175144,440.8427714,497.6372329,,,,,,,,,,,,,471.8219122,442.8922972,500.7515272,,,,55.50416281,30,54050,37.44842557,79.23564365,,,,,,,,,,,,,56.73037423,37.99322197,81.47428048,,,,5.76967459,25,4333,3.733829183,8.517177867,,,,,,,,,,,,,5.53283618,3.507343526,8.301970867,,,,,,,0.118,,,0.1,0.138,0.172,,,0.148,0.199,0.086,,,0.073,0.102,77.9,44,56509,,,0.11,7240,,,,0.0204773,1411.725509,68941,,,44.84767256,87,193990,35.92114724,55.31943842,,,,,,,,,,,,,45.22960677,36.12780344,55.9271092,,,,0.366,,,0.346,0.384,0.064279989,2406,37430,0.054748074,0.073811904,0.040592684,526,12958,0.02867779,0.052507578,0.00084946,55,64747,,,1177.218182,0.910382653,535.305,588,,,0.062762973,179,2852,0.032431896,0.093094051,3.213339252,,,,,,,,,3.211850764,3.280629079,,,,,,,,,3.289666145,0.061146762,,,,,6226.419,,,,,0.822604263,45504,55317,0.779318541,0.865889984,57609,,,53661.59575,61556.40426,,,,,,,44464,7002.382979,81925.61702,,,,61513,58599.80851,64426.19149,,,,,,0.651181855,4766,7319,,,73.09564308,,,,,0.332986165,,57609,,,3.84985563,12,3117,,,2.83574699,13,458433,1.509915842,4.849213717,,,,,,,,,,,,,2.698314902,1.394258685,4.713413109,,,,20.33153906,65,324895,15.39890914,26.3418671,20.00646363,,,,,,,,,,,,,20.59009794,15.55353871,26.73795484,,,,14.46621216,47,324895,10.62922857,19.23699544,,,,,,,,,,,,,14.60507558,10.69275093,19.48112412,,,,11.99739111,55,458433,9.038076877,15.61625362,,,,,,,,,,,,,12.14241706,9.121757406,15.84322035,,,,7.931034483,,5800,,,36,10,0.690525916,36370,52670,,,0.658,,,,,34.16694988,,,,,0.78546476,21810,27767,0.77286081,0.798068711,0.078209156,2091,26736,0.067383515,0.089034798,0.828033277,22992,27767,0.813183936,0.842882618,64747,,,,,0.188580166,12210,64747,,,0.239980231,15538,64747,,,0.00976107,632,64747,,,0.001791589,116,64747,,,0.003119836,202,64747,,,0.000139003,9,64747,,,0.00920506,596,64747,,,0.965944368,62542,64747,,,0.003229107,202,62556,0.001188258,0.005269955,0.497721902,32226,64747,,,0.64944019,42576,65558,, -42,007,42007,PA,Beaver County,2024,1,9375.665141,2961,446310,8806.850832,9944.479451,0,,,,2,,,,2,20546.77513,17286.05826,23807.49199,,,,,2,8506.713254,7942.418934,9071.007574,,,,,2,,0.146,,,0.123,0.174,3.633846377,,,2.883601074,4.46206335,4.681896081,,,3.78615716,5.646859744,0.073776547,799,10830,0.068853217,0.078699876,0,,,,,,,0.13800905,0.11527195,0.16074615,0.095846645,0.063233446,0.128459845,0.065316063,0.060220614,0.070411512,,,,0.096059113,0.067395406,0.12472282,0.19,,,0.153,0.234,0.358,,,0.294,0.425,7.7,0.093883944,0.101,,,0.233,,,0.191,0.283,0.853247332,143529,168215,,,0.178633063,,,0.146222573,0.216734186,0.183098592,13,71,0.124828749,0.24822667,304.9,508,166624,,,14.15701416,429,30303,12.81734027,15.49668804,,,,,,,30.62015504,24.2422651,38.16184929,26.31578947,16.68195313,39.48660514,10.66999517,9.385308086,11.95468225,,,,32.35470342,24.305849,42.21586962,0.053366059,6849,128340,0.046217123,0.060514995,0.0003901,65,166624,,,2563.446154,0.000507011,84,165677,,,1972.345238,0.001563283,259,165677,,,639.6795367,2920,,,,,,,5364,,2767,0.45,,,,,,,0.37,,0.45,0.48,,,,,,0.41,0.34,0.26,0.49,0.94652515,116557,123142,0.940146522,0.952903778,0.687436779,27184,39544,0.655756858,0.7191167,0.053581239,4389,81913,,,0.137,4298,,0.094106383,0.179893617,,,,0.447852761,0,0.908679571,0.588482075,0.496684157,0.680279992,0.240740741,0.116448728,0.365032754,0.110047658,0.091285459,0.128809858,4.498725754,127098,28252,4.271077316,4.726374192,0.251893764,8147,32343,0.22208638,0.281701147,13.9835798,233,166624,,,98.05706241,808,824010,91.295777,104.8183478,,,,,,,144.0728432,113.3224306,180.5965566,,,,97.02757655,89.9005027,104.1546504,,,,9.9,,,,,1,,,,,0.099535271,7175,72085,0.090058162,0.10901238,0.08246266,0.073955959,0.090969362,0.009641396,0.005992501,0.01329029,0.012415898,0.008868573,0.015963222,0.776921319,61181,78748,0.765631742,0.788210896,,,,0.739054291,0.575014328,0.903094254,0.617980636,0.500214166,0.735747106,0.646812081,0.500277596,0.793346566,0.750135855,0.734151777,0.766119933,0.379,,78748,0.360773718,0.397226283,75.88768433,,,75.44890816,76.32646049,,,,,,,66.84186957,64.92323424,68.7605049,93.04273316,79.97363964,106.1118267,76.56626167,76.12194674,77.0105766,,,,446.0391672,2961,446310,428.5321412,463.5461933,,,,,,,876.0705064,770.2460524,981.8949603,,,,421.2331952,403.5022823,438.964108,,,,49.91834785,70,140229,38.91380107,63.06882944,,,,,,,121.6150478,68.06701908,200.5855268,,,,38.65073788,28.08368531,51.88681156,,,,6.405629737,71,11084,5.002849969,8.079830306,,,,,,,,,,,,,5.063563887,3.720516286,6.733466531,,,,,,,0.11,,,0.094,0.128,0.163,,,0.141,0.187,0.086,,,0.073,0.101,88.9,128,144044,,,0.101,17070,,,,0.093883944,16010.8739,170539,,,40.7602083,201,493128,35.12520159,46.39521501,,,,,,,70.21575386,44.00383912,106.3074952,,,,40.42387978,34.46852784,46.37923172,,,,0.348,,,0.33,0.366,0.061503417,5913,96141,0.051971502,0.071035332,0.030382662,1029,33868,0.022042237,0.038723088,0.000965735,160,165677,,,1035.48125,0.742931611,2444.245,3290,,,0.041442188,300,7239,0.025288108,0.057596268,3.245872678,,,,,,,2.594056249,2.951633265,3.377468147,3.182108686,,,,,,,2.4196242,2.963961104,3.340858829,0.190326757,,,,,1478.764092,,,,,0.741704333,47096,63497,0.712086328,0.771322337,67135,,,63531.93617,70738.06383,,,,74716,63027.48936,86404.51064,35547,26637.04255,44456.95745,51387,40347.85106,62426.14894,70564,68858.97872,72269.02128,,,,,,0.52551306,11267,21440,,,62.52795371,,,,,0.311283235,,67135,,,5.624027761,47,8357,,,4.050641639,47,1160310,2.976259118,5.386494673,,,,,,,32.83173735,21.03591362,48.8510227,,,,1.641625441,0.956307315,2.628401358,,,,14.02950371,127,824010,11.44032339,16.61868403,15.41243432,,,,,,,,,,,,,15.04765945,12.19696957,17.89834933,,,,12.2571328,101,824010,9.866657417,14.64760819,,,,,,,24.97262616,13.29687168,42.70395128,,,,11.31079895,9.008988228,14.02143707,,,,8.446018736,98,1160310,6.85688627,10.29299155,,,,,,,,,,,,,8.497825812,6.815504792,10.46955907,,,,12.26027397,,14600,,,127,52,0.71299144,94122,132010,,,0.711,,,,,77.21101673,,,,,0.736024111,52993,71999,0.724247389,0.747800834,0.093342857,6534,70000,0.08363936,0.103046354,0.861317518,62014,71999,0.849519899,0.873115138,165677,,,,,0.191650018,31752,165677,,,0.228963586,37934,165677,,,0.063370293,10499,165677,,,0.001931469,320,165677,,,0.006277275,1040,165677,,,0.000567369,94,165677,,,0.021777314,3608,165677,,,0.882898652,146276,165677,,,0.003643364,581,159468,0.002120521,0.005166207,0.509370643,84391,165677,,,0.289213209,48650,168215,, -42,009,42009,PA,Bedford County,2024,1,9285.219764,850,127737,8213.089485,10357.35004,0,,,,2,,,,2,,,,2,,,,2,9267.886794,8189.049565,10346.72402,,,,,2,,0.168,,,0.139,0.199,3.923308174,,,3.067060117,4.870659431,5.247958326,,,4.166908142,6.453075996,0.060606061,200,3300,0.052465,0.068747122,0,,,,,,,,,,,,,0.060369096,0.052113076,0.068625116,,,,,,,0.214,,,0.171,0.259,0.368,,,0.292,0.453,8.2,0.062731542,0.097,,,0.263,,,0.213,0.317,0.651281081,30986,47577,,,0.171882013,,,0.136979482,0.213879225,0.181818182,8,44,0.108031958,0.266865368,151.7,72,47461,,,17.07127813,154,9021,14.37501825,19.76753801,,,,,,,,,,,,,17.07912165,14.31814371,19.84009958,,,,,,,0.08099403,2917,36015,0.070270626,0.091717435,0.000337119,16,47461,,,2966.3125,0.000463959,22,47418,,,2155.363636,0.001497322,71,47418,,,667.8591549,2908,,,,,,,,,2913,0.48,,,,,,,,,0.48,0.37,,,,,,,,,0.37,0.902978016,31504,34889,0.893424395,0.912531637,0.517764471,5188,10020,0.471581726,0.563947217,0.044940135,1096,24388,,,0.149,1338,,0.101340426,0.196659575,,,,,,,,,,0.265536723,0.085480408,0.445593038,0.129707602,0.101504757,0.157910448,4.632893736,109605,23658,4.080883839,5.184903632,0.165814384,1524,9191,0.13794759,0.193681178,17.69874213,84,47461,,,119.2551142,286,239822,105.4337769,133.0764516,,,,,,,,,,,,,119.0815191,105.0325034,133.1305347,,,,8.5,,,,,1,,,,,0.099096839,1975,19930,0.085247377,0.112946301,0.083464168,0.069831114,0.097097222,0.010787757,0.007663691,0.013911824,0.00652283,0.003126642,0.009919018,0.803173007,17567,21872,0.784719379,0.821626634,,,,,,,,,,,,,0.799197254,0.785229548,0.813164961,0.35,,21872,0.324224144,0.375775856,76.49357039,,,75.64277656,77.34436422,,,,,,,,,,,,,76.41760575,75.56422859,77.27098291,,,,435.9620034,850,127737,403.8582894,468.0657175,,,,,,,,,,,,,440.1408246,407.4432374,472.8384117,,,,51.73433189,21,40592,32.02436683,79.0814218,,,,,,,,,,,,,49.38913439,29.73548522,77.12725129,,,,6.371359223,21,3296,3.943971779,9.739299374,,,,,,,,,,,,,,,,,,,,,,0.122,,,0.103,0.142,0.177,,,0.151,0.204,0.09,,,0.076,0.106,80.2,33,41136,,,0.097,4640,,,,0.062731542,3121.647001,49762,,,34.22600338,49,143166,25.32058572,45.24859156,,,,,,,,,,,,,34.71217819,25.59401998,46.02331225,,,,0.353,,,0.334,0.371,0.088620715,2394,27014,0.075514332,0.101727098,0.058619603,558,9519,0.040747263,0.076491943,0.00109663,52,47418,,,911.8846154,0.948585859,469.55,495,,,0.062527521,142,2271,0.033408429,0.091646613,3.156253112,,,,,,,,,3.157491802,3.13523743,,,,,,,,,3.159095849,0.04760716,,,,,4262.5988,,,,,0.7391057,38976,52734,0.682587307,0.795624094,55517,,,49945.59575,61088.40426,91875,45753.6383,137996.3617,,,,,,,51250,5126.255319,97373.74468,58372,55303.91489,61440.08511,,,,,,0.473753066,2897,6115,,,51.47249499,,,,,0.292883261,,55517,,,3.729796933,9,2413,,,2.969711908,10,336733,1.424092292,5.461405934,,,,,,,,,,,,,,,,,,,21.50733292,57,239822,15.91124329,28.43383471,23.76762766,,,,,,,,,,,,,21.69251813,15.99435043,28.76113189,,,,20.84879619,50,239822,15.47437839,27.48653863,,,,,,,,,,,,,21.14128418,15.64043842,27.94989886,,,,16.92735788,57,336733,12.82061555,21.93135553,,,,,,,,,,,,,17.19537322,12.98920013,22.32962241,,,,,,4300,,,17,-888,0.714444876,27574,38595,,,0.657,,,,,14.52884698,,,,,0.788666905,15435,19571,0.775940311,0.801393499,0.097995189,1833,18705,0.082423517,0.11356686,0.809922845,15851,19571,0.795708254,0.824137436,47418,,,,,0.192395293,9123,47418,,,0.239423848,11353,47418,,,0.006432157,305,47418,,,0.00198237,94,47418,,,0.004892657,232,47418,,,0.000548315,26,47418,,,0.013307183,631,47418,,,0.964464971,45733,47418,,,0.001879076,85,45235,0,0.004107413,0.496330507,23535,47418,,,0.906530466,43130,47577,, -42,011,42011,PA,Berks County,2024,1,7404.77586,5501,1175717,7098.269018,7711.282702,0,,,,2,4569.343687,2791.073832,7056.980729,1,11873.74616,9926.196876,13821.29544,,7886.367492,7266.060811,8506.674173,,7027.81041,6656.834297,7398.786523,,,,,2,,0.169,,,0.142,0.198,3.708376348,,,2.921160388,4.561645744,4.956773509,,,4.019525916,5.949342388,0.080760903,2611,32330,0.077790824,0.083730983,0,,,,0.107723577,0.080328116,0.135119038,0.135849057,0.117400124,0.154297989,0.091786224,0.086602773,0.096969674,0.067105338,0.063411847,0.070798829,,,,0.105548038,0.083394788,0.127701288,0.184,,,0.145,0.223,0.363,,,0.297,0.431,8.6,0.032919661,0.093,,,0.245,,,0.199,0.292,0.863490413,370307,428849,,,0.165719976,,,0.134852962,0.202078641,0.226244344,50,221,0.192462847,0.261439113,468.4,2011,429342,,,18.05107132,1845,102210,17.22738687,18.87475578,,,,,,,13.25196164,10.44103851,16.5868061,45.45760884,43.03179939,47.88341829,5.67439911,5.081603992,6.267194228,,,,23.50674374,17.98079636,30.19539573,0.078073818,26909,344661,0.069733392,0.086414243,0.000628869,270,429342,,,1590.155556,0.000559881,241,430449,,,1786.095436,0.001795799,773,430449,,,556.85511,3678,,,,,,2923,5794,5751,3517,0.45,,,,,,0.33,0.45,0.35,0.46,0.55,,,,,,0.52,0.37,0.29,0.56,0.880689771,257349,292213,0.875614359,0.885765183,0.589024743,61182,103870,0.567433625,0.61061586,0.043144609,9226,213839,,,0.143,13119,,0.109638298,0.176361702,0.27,0.034793481,0.505206519,0.333612741,0.118634256,0.548591226,0.260682086,0.19073837,0.330625801,0.309602171,0.274533913,0.344670429,0.085655357,0.072211811,0.099098904,4.49290176,142416,31698,4.324677527,4.661125994,0.272260147,25645,94193,0.252011044,0.29250925,10.69077798,459,429342,,,82.29325124,1736,2109529,78.42205282,86.16444966,,,,39.19647232,20.25338922,68.46834901,104.120514,84.13997386,127.4171397,64.27182134,57.05864152,71.48500115,88.32295027,83.53819405,93.10770649,,,,9.2,,,,,1,,,,,0.129963553,20325,156390,0.122017244,0.137909862,0.114808599,0.106786925,0.122830272,0.012021229,0.009868398,0.01417406,0.010166891,0.008072066,0.012261715,0.763548395,157814,206685,0.753671016,0.773425774,,,,0.71090535,0.604918638,0.816892061,0.695909198,0.659294867,0.73252353,0.6268752,0.591309891,0.662440509,0.786838831,0.776555814,0.797121847,0.326,,206685,0.312156145,0.339843855,77.9617158,,,77.6923946,78.23103701,,,,85.36806502,81.71905739,89.01707266,72.80772686,71.28932121,74.32613251,79.21796448,78.10266028,80.33326868,78.2383245,77.92445137,78.55219763,,,,358.5736306,5501,1175717,348.6628835,368.4843776,,,,211.9419763,152.7491344,286.4839817,572.9700523,508.1265083,637.8135963,383.7291844,356.2074528,411.2509159,346.6316502,335.330048,357.9332523,,,,48.89757134,208,425379,42.2523157,55.54282699,,,,,,,99.04725969,61.31181485,151.4042578,54.58156327,43.47391047,67.66205976,40.26972145,32.54203405,49.27994042,,,,6.272676957,204,32522,5.411893505,7.13346041,,,,,,,17.43745262,11.05384916,26.16474063,7.817146741,6.301723576,9.587036537,4.516057092,3.586401204,5.61304662,,,,,,,0.117,,,0.099,0.136,0.16,,,0.136,0.184,0.098,,,0.082,0.114,254.4,924,363189,,,0.093,39650,,,,0.032919661,13544.53117,411442,,,31.69427529,403,1271523,28.59981885,34.78873173,,,,,,,50.9758229,33.87306411,73.67425711,37.70060287,30.68697245,44.71423329,28.72744217,25.1945029,32.26038144,,,,0.35,,,0.335,0.365,0.088307714,22164,250986,0.0787758,0.097839629,0.051619577,5090,98606,0.039704683,0.063534471,0.000936232,403,430449,,,1068.111663,0.867303179,4582.83,5284,,,0.050625734,1250,24691,0.036819292,0.064432176,2.892852632,,,,,,3.469122345,2.549518894,2.41189955,3.246459995,2.823667135,,,,,,3.470356652,2.37721932,2.213418337,3.271923345,0.277041284,,,,,5159.110933,,,,,0.808421876,49608,61364,0.776255065,0.840588687,72157,,,69233.08511,75080.91489,46563,36777.29787,56348.70213,59063,41928.19149,76197.80851,62606,55485.65957,69726.34043,51921,47581.59575,56260.40426,81925,80189,83661,,,,,,0.521473641,33306,63869,,,57.98679987,,,,,0.3155619,,72157,,,4.685103031,113,24119,,,4.048153294,119,2939612,3.32080983,4.775496758,,,,,,,21.5304137,14.1886783,31.32562155,7.208788453,5.277739169,9.615513581,2.201990504,1.612133801,2.937146752,,,,14.55306975,325,2109529,12.915575,16.19056449,15.40628264,,,,,,,8.993751357,4.312853359,16.53982896,6.830175521,4.608290742,9.750500255,16.77284468,14.65606365,18.88962571,,,,10.76069587,227,2109529,9.36083943,12.16055231,,,,,,,14.39964555,7.667204797,24.62383243,9.272000455,6.737049725,12.44722784,11.33556581,9.621432347,13.04969927,,,,10.44355514,307,2939612,9.275306594,11.61180368,,,,,,,11.96134095,6.694671727,19.72841287,8.619203586,6.493163713,11.21907821,11.1535606,9.721400258,12.58572093,,,,8.19221968,,43700,,,281,77,0.658845402,205540,311970,,,0.732,,,,,145.7439372,,,,,0.70833385,114165,161174,0.699472486,0.717195215,0.122482284,19289,157484,0.113891052,0.131073516,0.862905928,139078,161174,0.854724206,0.871087649,430449,,,,,0.217663417,93693,430449,,,0.182061057,78368,430449,,,0.044453582,19135,430449,,,0.01076318,4633,430449,,,0.016657026,7170,430449,,,0.002381235,1025,430449,,,0.245058067,105485,430449,,,0.679794819,292617,430449,,,0.043154236,17470,404827,0.039521467,0.046787005,0.502419567,216266,430449,,,0.265548013,113880,428849,, -42,013,42013,PA,Blair County,2024,1,9311.086826,2206,330812,8680.629744,9941.543907,0,,,,2,,,,2,22045.80525,15820.45047,29907.62415,,,,,2,9195.946256,8549.011323,9842.88119,,,,,2,,0.162,,,0.137,0.191,3.866098034,,,3.035956502,4.794780119,5.066783998,,,4.042915909,6.188105779,0.065798901,551,8374,0.060488601,0.071109202,0,,,,,,,0.120218579,0.073098749,0.167338409,,,,0.064454371,0.059016922,0.069891821,,,,0.061728395,0.024668401,0.098788389,0.208,,,0.167,0.253,0.343,,,0.273,0.417,8.1,0.043778636,0.111,,,0.254,,,0.212,0.303,0.775919624,95300,122822,,,0.174980988,,,0.140004802,0.213322093,0.155555556,7,45,0.08574282,0.23952545,296.5,361,121767,,,17.77461785,450,25317,16.13232695,19.41690875,,,,,,,12.41642789,6.61122492,21.23246984,20.76124568,10.7276386,36.26571808,17.88401948,16.14008356,19.6279554,,,,25.28445006,15.44439897,39.04978243,0.069993416,6591,94166,0.060461501,0.079525331,0.000771966,94,121767,,,1295.393617,0.000644458,78,121032,,,1551.692308,0.002933109,355,121032,,,340.9352113,3452,,,,,,,1502,,3442,0.43,,,,,,,0.29,,0.43,0.44,,,,,,0.5,0.33,,0.44,0.929623868,81264,87416,0.921897214,0.937350521,0.586666208,17045,29054,0.552265776,0.621066639,0.044718203,2639,59014,,,0.173,4109,,0.119382979,0.226617021,,,,0.471544715,0.026397731,0.9166917,0.347043702,0.101466732,0.592620671,0.239700375,0.115551391,0.363849358,0.15310428,0.131108242,0.175100317,4.470454282,115825,25909,4.123357856,4.817550709,0.240912591,5945,24677,0.208278873,0.273546309,18.47791274,225,121767,,,93.03056906,568,610552,85.37975617,100.681382,,,,,,,101.9801139,52.69461298,178.1387359,,,,94.67759332,86.7360125,102.6191741,,,,9.4,,,,,1,,,,,0.119663085,6180,51645,0.106832023,0.132494146,0.105288932,0.092519588,0.118058277,0.008616517,0.005699075,0.011533958,0.013263627,0.007977768,0.018549486,0.819994324,46228,56376,0.802211174,0.837777474,,,,,,,,,,0.719197708,0.582984707,0.855410709,0.833410721,0.814410387,0.852411055,0.213,,56376,0.195448266,0.230551734,75.44935647,,,74.96256353,75.9361494,,,,,,,65.13802271,61.47085162,68.8051938,,,,75.52575427,75.02745336,76.02405518,,,,463.0583555,2206,330812,442.3139977,483.8027133,,,,,,,1044.163997,796.8071319,1344.046043,,,,458.9237499,437.8327621,480.0147376,,,,40.53177691,45,111024,29.56415621,54.23470646,,,,,,,,,,,,,41,29.42230787,55.62112957,,,,5.980300188,51,8528,4.452726294,7.862990312,,,,,,,,,,,,,5.871330419,4.31403275,7.807624777,,,,,,,0.119,,,0.102,0.138,0.176,,,0.153,0.202,0.089,,,0.076,0.105,97.5,102,104575,,,0.111,13650,,,,0.043778636,5563.783022,127089,,,32.08969756,117,364603,26.27497813,37.904417,,,,,,,,,,,,,31.10691184,25.21276324,37.00106044,,,,0.365,,,0.346,0.385,0.0763852,5320,69647,0.064470306,0.088300093,0.052041292,1341,25768,0.03655193,0.067530653,0.002197766,266,121032,,,455.0075188,0.894167281,1213.385,1357,,,0.054903665,379,6903,0.025691266,0.084116064,3.009255725,,,,,,,2.663763503,3.160565279,3.019629529,3.008462377,,,,,,,2.523398976,2.709613268,3.038585441,0.084098155,,,,,3949.725071,,,,,0.806942472,43750,54217,0.745384349,0.868500595,57884,,,53343.23404,62424.76596,,,,,,,42467,31756.70213,53177.29787,41894,32735.02128,51052.97872,60504,57164.25532,63843.74468,,,,,,0.4994256,8260,16539,,,66.14170083,,,,,0.31576947,,57884,,,7.201152184,45,6249,,,1.858746856,16,860795,1.06243443,3.018488444,,,,,,,,,,,,,1.474156199,0.76171802,2.575054212,,,,17.12031798,105,610552,13.7099523,20.53068366,17.19755238,,,,,,,,,,,,,17.95430829,14.3423715,21.56624509,,,,11.79260735,72,610552,9.226988969,14.85083728,,,,,,,,,,,,,12.31155518,9.615426735,15.52935163,,,,12.08185457,104,860795,9.759796875,14.40391226,,,,,,,,,,,,,12.65317404,10.20953565,15.09681244,,,,19.48275862,,11600,,,188,38,0.655652353,63595,96995,,,0.704,,,,,94.66573707,,,,,0.724909562,36671,50587,0.711692715,0.738126409,0.101342502,4952,48864,0.089024673,0.113660331,0.832387768,42108,50587,0.818998608,0.845776927,121032,,,,,0.199228303,24113,121032,,,0.21738879,26311,121032,,,0.022365986,2707,121032,,,0.001834226,222,121032,,,0.007204706,872,121032,,,0.00036354,44,121032,,,0.015359574,1859,121032,,,0.937603279,113480,121032,,,0.002806722,327,116506,0.001619615,0.003993829,0.504965629,61117,121032,,,0.257388741,31613,122822,, -42,015,42015,PA,Bradford County,2024,1,7637.871427,933,163088,6795.793226,8479.949629,0,,,,2,,,,2,,,,2,,,,2,7724.621791,6856.302632,8592.94095,,,,,2,,0.165,,,0.138,0.193,3.88463011,,,3.031307804,4.803184647,5.083181611,,,4.038148392,6.221208911,0.060344828,273,4524,0.053405793,0.067283862,0,,,,,,,,,,,,,0.059570538,0.052521321,0.066619755,,,,,,,0.212,,,0.168,0.259,0.413,,,0.335,0.494,8.2,0.047204602,0.103,,,0.266,,,0.217,0.318,0.613654177,36799,59967,,,0.167078682,,,0.133022793,0.204957926,0.3,15,50,0.226223878,0.37531374,213.7,128,59892,,,24.49926932,285,11633,21.65489484,27.3436438,,,,,,,,,,,,,25.59198543,22.59967331,28.58429755,,,,,,,0.079270394,3681,46436,0.068546989,0.089993798,0.0010185,61,59892,,,981.8360656,0.000551231,33,59866,,,1814.121212,0.001018942,61,59866,,,981.4098361,2715,,,,,,,,,2738,0.51,,,,,,0.31,,,0.51,0.45,,,,,,0.5,0.35,,0.45,0.906418181,38569,42551,0.896263559,0.916572802,0.514285714,6696,13020,0.474757357,0.553814072,0.042334259,1189,28086,,,0.167,2141,,0.113382979,0.220617021,,,,,,,0.288135593,0,0.59161671,0.22875817,0.110713538,0.346802802,0.173655649,0.145180932,0.202130366,4.291713225,119065,27743,4.057652282,4.525774168,0.212410863,2800,13182,0.167368127,0.2574536,14.02524544,84,59892,,,91.35382395,276,302122,80.57607008,102.1315778,,,,,,,,,,,,,93.37487939,82.23695557,104.5128032,,,,7.3,,,,,1,,,,,0.108032689,2710,25085,0.093822979,0.122242399,0.084692648,0.072811648,0.096573648,0.018736297,0.013052824,0.024419769,0.009766793,0.00621312,0.013320466,0.800353843,20357,25435,0.783977226,0.81673046,,,,,,,,,,,,,0.801463861,0.784770482,0.81815724,0.343,,25435,0.316092382,0.369907618,77.5731211,,,76.85998889,78.28625332,,,,,,,,,,,,,77.34933753,76.62442858,78.07424647,,,,379.4543668,933,163088,352.9719928,405.9367409,,,,,,,,,,,,,385.0102103,357.8177367,412.2026838,,,,46.81891484,27,57669,30.8539599,68.11906301,,,,,,,,,,,,,46.37444583,30.0110962,68.45783023,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.121,,,0.102,0.14,0.177,,,0.151,0.204,0.091,,,0.076,0.107,75.2,38,50513,,,0.103,6190,,,,0.047204602,2956.0466,62622,,,19.95167262,36,180436,13.97390622,27.6215248,,,,,,,,,,,,,20.2926784,14.13459403,28.2222033,,,,0.366,,,0.345,0.384,0.087357357,2909,33300,0.074250974,0.10046374,0.059251711,814,13738,0.04137937,0.077124051,0.00268934,161,59866,,,371.8385093,0.917727987,583.675,636,,,0.106122449,312,2940,0.058964734,0.153280164,3.026523544,,,,,,,,,3.037038254,2.920700035,,,,,,,,,2.939400549,0.047762721,,,,,5503.117429,,,,,0.729721287,42048,57622,0.688031415,0.771411159,63529,,,58542.61702,68515.38298,36250,3803.361702,68696.6383,,,,25647,5962.404255,45331.59575,35000,13612.76596,56387.23404,61498,58770.68085,64225.31915,,,,,,0.708923431,6157,8685,,,53.35985066,,,,,0.301956587,,63529,,,5.765350245,20,3469,,,2.82903438,12,424173,1.461803346,4.94175373,,,,,,,,,,,,,2.706692913,1.35117135,4.843021288,,,,16.5146519,50,302122,11.99957135,22.17014935,16.54960579,,,,,,,,,,,,,16.58034083,11.94965128,22.41180412,,,,10.59174771,32,302122,7.244747589,14.95238747,,,,,,,,,,,,,11.06665237,7.56958203,15.62281117,,,,19.33173493,82,424173,15.37510249,23.99578029,,,,,,,,,,,,,20.17716535,16.04749839,25.04518237,,,,10.66666667,,6000,,,33,31,0.643323379,30159,46880,,,0.596,,,,,26.66763838,,,,,0.7244366,17648,24361,0.705500062,0.743373137,0.086742764,2029,23391,0.075749215,0.097736314,0.83572103,20359,24361,0.822016068,0.849425991,59866,,,,,0.219089299,13116,59866,,,0.225720776,13513,59866,,,0.008084723,484,59866,,,0.003324091,199,59866,,,0.007800755,467,59866,,,0.000267264,16,59866,,,0.016670564,998,59866,,,0.952694351,57034,59866,,,0.003506546,199,56751,0.001230066,0.005783027,0.498880834,29866,59866,,,0.729784715,43763,59967,, -42,017,42017,PA,Bucks County,2024,1,6311.982097,7728,1746608,6078.650884,6545.31331,0,,,,2,3417.938026,2678.828943,4157.047109,,10146.30912,8781.503395,11511.11484,,5242.821244,4434.736572,6050.905917,,6426.661012,6164.087258,6689.234766,,,,,2,,0.118,,,0.096,0.142,2.88024652,,,2.282184555,3.572519959,4.859028527,,,4.051451175,5.757040496,0.071580795,2855,39885,0.069050789,0.074110801,0,,,,0.098615333,0.087876325,0.109354341,0.106933594,0.093549467,0.120317721,0.082152975,0.073094282,0.091211667,0.064653747,0.061881942,0.067425551,,,,0.084006462,0.06215335,0.105859574,0.145,,,0.111,0.184,0.313,,,0.263,0.367,9.1,0.044579655,0.062,,,0.212,,,0.172,0.254,0.922598517,596495,646538,,,0.191578543,,,0.159305255,0.226656502,0.238461539,62,260,0.207256156,0.270712132,214.2,1384,646098,,,4.698284438,614,130686,4.326654073,5.069914802,,,,,,,9.621451104,7.359647723,12.35915645,15.72703026,13.36978518,18.08427534,3.242554859,2.893230069,3.591879649,,,,8.669046405,6.003566646,12.11412343,0.047685672,24642,516759,0.042919714,0.052451629,0.000807927,522,646098,,,1237.735632,0.000875896,565,645054,,,1141.688496,0.00300595,1939,645054,,,332.6735431,2956,,,,,,1763,4926,2851,2917,0.47,,,,,,0.39,0.41,0.36,0.47,0.6,,,,,,0.58,0.47,0.48,0.6,0.946817795,439385,464065,0.942935219,0.950700371,0.728680087,108448,148828,0.710042098,0.747318076,0.03809589,13368,350904,,,0.07,8704,,0.05093617,0.08906383,0.206896552,0,0.467460772,0.038191262,0.01603575,0.060346774,0.168039822,0.11683088,0.219248763,0.168855845,0.131444126,0.206267563,0.052282237,0.044015068,0.060549406,4.259175524,201574,47327,4.102716891,4.415634156,0.181944993,23478,129039,0.167375404,0.196514583,8.032837124,519,646098,,,81.95914326,2589,3158891,78.80204967,85.11623684,,,,22.52512769,15.85976864,31.04792138,75.64060575,61.33943572,92.27512433,42.57931088,33.60292628,53.21683293,89.79452185,86.17320966,93.41583404,,,,9.2,,,,,1,,,,,0.133968808,32255,240765,0.127639668,0.140297947,0.121160767,0.114820288,0.127501245,0.012107242,0.009948692,0.014265791,0.005607127,0.004252637,0.006961618,0.7489959,250262,334130,0.739736709,0.758255091,,,,0.612239857,0.572789163,0.651690551,0.73478995,0.690947612,0.778632288,0.694474438,0.663289652,0.725659224,0.731656593,0.720529076,0.742784109,0.44,,334130,0.427334294,0.452665706,79.32413337,,,79.1126894,79.53557734,,,,85.71717702,84.27640553,87.1579485,74.48998575,73.2945897,75.68538181,84.04815738,82.17698512,85.91932964,79.15687401,78.9275522,79.38619582,,,,308.0691194,7728,1746608,300.7271396,315.4110993,,,,171.7331793,147.1966911,196.2696675,501.894353,452.5139515,551.2747545,260.2401877,225.3803629,295.1000124,312.8351054,304.733888,320.9363228,,,,32.36921422,183,565352,27.67932394,37.05910451,,,,44.1904313,24.73304894,72.88539616,75.52870091,47.33343474,114.3513609,34.48275862,20.43666816,54.49762503,28.53287244,23.46971245,33.59603243,,,,3.421006966,138,40339,2.85022468,3.991789252,,,,,,,,,,,,,2.956849493,2.380670766,3.630355957,,,,,,,0.088,,,0.074,0.103,0.146,,,0.125,0.169,0.074,,,0.061,0.086,163.8,915,558478,,,0.062,40110,,,,0.044579655,27873.38456,625249,,,33.85277722,644,1902355,31.23816407,36.46739036,,,,,,,34.32799766,22.62236677,49.94543431,23.14897254,15.12167742,33.91860829,36.93488671,33.9341261,39.93564732,,,,0.35,,,0.332,0.367,0.054202053,21004,387513,0.048244606,0.060159499,0.029627349,4042,136428,0.022478413,0.036776285,0.000872795,563,645054,,,1145.744227,0.934148363,6592.285,7057,,,0.066260689,2100,31693,0.050894438,0.081626939,3.362799828,,,,,,3.761751434,2.730600281,2.897574113,3.437279422,3.371863328,,,,,,3.886651242,2.629686693,2.826949737,3.450126102,0.087078607,,,,,6671.752154,,,,,0.765304502,62644,81855,0.743991898,0.786617106,105202,,,101391.617,109012.383,,,,144180,134136.9362,154223.0638,68078,55706.76596,80449.23404,78191,69039.17021,87342.82979,109801,107597.9362,112004.0638,,,,,,0.267159185,22276,83381,,,56.11440397,,,,,0.269215414,,105202,,,8.240505505,253,30702,,,1.835628738,81,4412657,1.457754183,2.281518917,,,,,,,13.59234298,8.708870621,20.22432893,,,,1.3812641,1.028441849,1.816107202,,,,12.73501645,441,3158891,11.48146083,13.98857206,13.96059567,,,,,,,,,,,,,14.30349776,12.82714538,15.77985013,,,,7.217722929,228,3158891,6.280832388,8.15461347,,,,,,,15.59600119,9.526442697,24.08675892,,,,7.641278108,6.584888674,8.697667543,,,,8.248998279,364,4412657,7.401562898,9.096433661,,,,4.471611971,2.14431175,8.223453624,9.627909611,5.608612148,15.41521596,7.341634819,4.351118082,11.60294818,8.504253481,7.563604815,9.444902147,,,,5.024077047,,62300,,,255,58,0.822574216,396234,481700,,,0.775,,,,,139.6553845,,,,,0.77973861,192466,246834,0.773384566,0.786092654,0.123088203,29882,242769,0.116697606,0.1294788,0.930139284,229590,246834,0.925302383,0.934976185,645054,,,,,0.196606796,126822,645054,,,0.206757884,133370,645054,,,0.042084849,27147,645054,,,0.003058659,1973,645054,,,0.057345587,36991,645054,,,0.000730171,471,645054,,,0.062991626,40633,645054,,,0.819407367,528562,645054,,,0.020331199,12502,614917,0.018062269,0.02260013,0.504581012,325482,645054,,,0.102968426,66573,646538,, -42,019,42019,PA,Butler County,2024,1,6957.695582,2618,524551,6510.392049,7404.999115,0,,,,2,,,,2,16944.9038,10201.939,26461.56628,1,,,,2,6989.181839,6531.243224,7447.120454,,,,,2,,0.123,,,0.098,0.149,3.260531824,,,2.37037387,4.204147039,4.41652512,,,3.273559924,5.577221923,0.065016254,780,11997,0.060604282,0.069428226,0,,,,0.104519774,0.072649803,0.136389745,0.117647059,0.063497076,0.171797042,0.062913907,0.035528723,0.090299092,0.06322205,0.058672688,0.067771413,,,,,,,0.155,,,0.113,0.198,0.32,,,0.24,0.404,8.9,0.031888358,0.079,,,0.205,,,0.155,0.258,0.844000145,163536,193763,,,0.195747585,,,0.151444315,0.246335292,0.303797468,24,79,0.245858854,0.362695293,183.2,356,194273,,,6.864195248,297,43268,6.083525276,7.644865221,,,,,,,,,,,,,6.76703163,5.955325834,7.578737426,,,,14.59143969,8.166718028,24.06636077,0.046951472,7147,152221,0.040994025,0.052908919,0.000679456,132,194273,,,1471.765152,0.000714648,141,197300,,,1399.29078,0.002118601,418,197300,,,472.0095694,2318,,,,,,,,,2309,0.48,,,,,,0.46,0.46,,0.48,0.5,,,,,,0.53,0.4,,0.5,0.956653818,133524,139574,0.952318624,0.960989012,0.74394373,34057,45779,0.713642171,0.774245288,0.041704222,4118,98743,,,0.084,3094,,0.056595745,0.111404255,,,,0.035087719,0,0.156523641,0.29010989,0.044867161,0.535352619,0.282101167,0.133592904,0.43060943,0.062318411,0.049851469,0.074785353,4.613363453,155212,33644,4.359201274,4.867525631,0.140581368,5286,37601,0.119895363,0.161267372,11.99343192,233,194273,,,85.49474403,809,946257,79.60330718,91.38618088,,,,,,,132.7580485,75.88269543,215.5907534,,,,87.88654687,81.73840834,94.03468539,,,,10,,,,,0,,,,,0.104342232,8110,77725,0.096277785,0.112406679,0.090183611,0.081817681,0.098549541,0.006304278,0.003234858,0.009373697,0.014088131,0.009832663,0.0183436,0.779363569,73720,94590,0.769978078,0.78874906,,,,0.60909737,0.509182204,0.709012537,0.796957285,0.673764184,0.920150386,0.76199262,0.65711427,0.86687097,0.783739765,0.774790846,0.792688684,0.426,,94590,0.403805012,0.448194988,77.88230214,,,77.50195859,78.26264568,,,,96.68037937,81.85804247,111.5027163,70.47621134,64.86242974,76.08999294,81.64410935,76.87680281,86.41141589,77.81124086,77.42476763,78.19771408,,,,345.755751,2618,524551,331.6304907,359.8810114,,,,,,,666.4028345,473.8775603,910.9946124,,,,349.4290908,334.8666796,363.991502,,,,33.90999819,58,171041,25.74928332,43.83653612,,,,,,,,,,,,,30.96594391,22.83184255,41.0563491,,,,4.157834665,51,12266,3.095781008,5.46678472,,,,,,,,,,,,,3.44492536,2.449678694,4.709326373,,,,,,,0.098,,,0.079,0.117,0.149,,,0.122,0.177,0.074,,,0.059,0.09,48.8,82,168075,,,0.079,15140,,,,0.031888358,5863.057256,183862,,,37.2859341,213,571261,32.27854549,42.29332271,,,,,,,,,,,,,37.72189487,32.53268121,42.91110853,,,,0.346,,,0.325,0.366,0.053084836,6084,114609,0.0459359,0.060233772,0.029533941,1166,39480,0.021193516,0.037874367,0.001251901,247,197300,,,798.7854251,0.930934418,1887.935,2028,,,0.035935564,377,10491,0.021677376,0.050193752,3.447371896,,,,,,3.752996815,3.16217587,2.95131255,3.455455131,3.436130323,,,,,,4.303627236,2.685360734,3.050735767,3.440180004,0.067816463,,,,,6077.939875,,,,,0.719526124,54176,75294,0.67548447,0.763567779,81507,,,76841.12766,86172.87234,147143,42060.78723,252225.2128,107250,93432.29787,121067.7021,29473,4684.06383,54261.93617,80000,47723.74468,112276.2553,83404,80669.53192,86138.46809,,,,,,0.262885126,6442,24505,,,54.87022196,,,,,0.280319482,,81507,,,5.863260392,56,9551,,,0.984906684,13,1319922,0.524421329,1.684220425,,,,,,,,,,,,,0.961245005,0.496689321,1.679101576,,,,14.41890963,144,946257,11.95169431,16.88612495,15.21785308,,,,,,,,,,,,,15.07082392,12.4599388,17.68170903,,,,11.0963512,105,946257,8.973880933,13.21882147,,,,,,,,,,,,,11.53161061,9.304573631,13.75864759,,,,9.242970418,122,1319922,7.602804742,10.88313609,,,,,,,,,,,,,9.372138794,7.6738879,11.07038969,,,,6.358381503,,17300,,,104,6,0.763536507,113305,148395,,,0.749,,,,,49.48493082,,,,,0.76158357,60520,79466,0.750426825,0.772740316,0.10167441,7900,77699,0.092010465,0.111338356,0.887310296,70511,79466,0.88000479,0.894615802,197300,,,,,0.18887481,37265,197300,,,0.208129752,41064,197300,,,0.013122149,2589,197300,,,0.001849975,365,197300,,,0.016822098,3319,197300,,,0.000395337,78,197300,,,0.018667005,3683,197300,,,0.937450583,184959,197300,,,0.00411118,761,185105,,,0.501449569,98936,197300,,,0.43308578,83916,193763,, -42,021,42021,PA,Cambria County,2024,1,10434.2946,2500,352159,9750.930411,11117.65879,0,,,,2,,,,2,26169.95933,20844.95827,31494.9604,,,,,2,9830.230625,9145.104788,10515.35646,,,,,2,,0.164,,,0.137,0.195,3.944380853,,,3.111772954,4.869486803,5.48232193,,,4.456700934,6.641543357,0.089579949,772,8618,0.083550479,0.095609419,0,,,,,,,0.195683453,0.166188058,0.225178849,0.109195402,0.062853394,0.15553741,0.078444474,0.072352471,0.084536478,,,,0.118644068,0.071004467,0.166283669,0.204,,,0.161,0.251,0.388,,,0.313,0.466,7.7,0.063455856,0.117,,,0.261,,,0.211,0.316,0.845001199,112784,133472,,,0.168928183,,,0.136333771,0.207691011,0.276595745,13,47,0.200439744,0.355686128,242.1,320,132167,,,16.53036367,475,28735,15.04377207,18.01695527,,,,,,,57.26141079,44.55279548,72.46798016,19.50585176,10.91727716,32.17193611,14.05858396,12.60429594,15.51287198,,,,31.11587983,20.83879307,44.68759382,0.058065515,5628,96925,0.050916578,0.065214451,0.000696089,92,132167,,,1436.597826,0.000593422,78,131441,,,1685.141026,0.002274785,299,131441,,,439.6020067,3429,,,,,,,9936,,3328,0.46,,,,,,0.42,0.33,,0.46,0.42,,,,,,0.53,0.33,0.49,0.42,0.927861942,88930,95844,0.92169565,0.934028235,0.631785689,17853,28258,0.600242819,0.663328559,0.053711026,2975,55389,,,0.216,5317,,0.167148936,0.264851064,,,,0.05,0,0.573627871,0.469167196,0.378842273,0.55949212,0.320610687,0.18433034,0.456891034,0.181934627,0.152911867,0.210957387,4.639011737,109091,23516,4.348178397,4.929845076,0.287688093,7246,25187,0.249223124,0.326153062,19.82340524,262,132167,,,134.3366651,881,655815,125.4658673,143.2074629,,,,,,,291.8705468,226.6489001,370.0154655,,,,131.572656,122.4437178,140.7015942,,,,9.1,,,,,1,,,,,0.108193554,6160,56935,0.097996014,0.118391095,0.091947914,0.082156978,0.101738849,0.00781593,0.005298079,0.010333782,0.014490208,0.009672787,0.019307629,0.792420525,44893,56653,0.778140065,0.806700985,,,,,,,0.489745693,0.385799514,0.593691873,0.644210526,0.397818948,0.890602104,0.808479207,0.794234171,0.822724243,0.292,,56653,0.275793993,0.308206007,74.92057564,,,74.41729488,75.4238564,,,,,,,63.72016045,60.90277278,66.53754812,109.1971553,71.85988093,146.5344297,75.33462704,74.8267728,75.84248129,,,,483.2005127,2500,352159,462.2084364,504.192589,,,,,,,1091.352043,905.7195883,1276.984498,,,,466.840844,445.6302711,488.051417,,,,45.2409953,52,114940,33.7881392,59.32754632,,,,,,,172.82011,86.27117623,309.2229146,,,,37.36694338,26.30977657,51.50540926,,,,5.942178037,52,8751,4.437902777,7.792375927,,,,,,,,,,,,,4.047525787,2.750097399,5.745139771,,,,,,,0.12,,,0.102,0.141,0.18,,,0.154,0.209,0.092,,,0.076,0.108,100.4,115,114534,,,0.117,15660,,,,0.063455856,9117.273979,143679,,,57.79592922,226,391031,50.2606543,65.33120415,,,,,,,217.2389629,147.6033355,308.3533672,,,,52.94613355,45.43727992,60.45498717,,,,0.373,,,0.352,0.392,0.066582127,4778,71761,0.057050212,0.076114042,0.034878888,923,26463,0.024155483,0.045602292,0.001765051,232,131441,,,566.5560345,0.909445701,1205.925,1326,,,0.051673435,369,7141,0.031141153,0.072205718,3.070437082,,,,,,,2.193107847,,3.169287167,3.082173062,,,,,,,1.99863826,,3.209732098,0.272865618,,,,,2280.129391,,,,,0.814266739,43525,53453,0.769728447,0.858805031,54612,,,51396.17021,57827.82979,,,,120123,69008.10638,171237.8936,24712,5775.659575,43648.34043,45473,35020.06383,55925.93617,55614,53434.76596,57793.23404,,,,,,0.548383175,9022,16452,,,73.60767645,,,,,0.302717352,,54612,,,6.434809254,42,6527,,,4.746709128,44,926958,3.448966119,6.37223545,,,,,,,36.93444137,19.08456482,64.51703616,,,,3.377504886,2.26196803,4.850660412,,,,17.8979712,117,655815,14.43150612,21.36443628,17.84039706,,,,,,,,,,,,,18.93854931,15.21205713,22.66504148,,,,14.48579249,95,655815,11.71987116,17.70813013,,,,,,,,,,,,,13.68487525,10.89992674,16.96446183,,,,10.14069677,94,926958,8.19471523,12.40964464,,,,,,,,,,,,,10.01604897,8.01154632,12.369739,,,,13.73913044,,11500,,,137,21,0.666767443,70574,105845,,,0.682,,,,,54.05131593,,,,,0.757782539,42088,55541,0.746870841,0.768694237,0.099275647,5304,53427,0.088815025,0.109736269,0.81278695,45143,55541,0.801196399,0.824377501,131441,,,,,0.190397212,25026,131441,,,0.241674972,31766,131441,,,0.041630846,5472,131441,,,0.001757443,231,131441,,,0.005409271,711,131441,,,0.000631462,83,131441,,,0.020206785,2656,131441,,,0.913238639,120037,131441,,,0.001496841,190,126934,0.000461196,0.002532486,0.500718954,65815,131441,,,0.460838228,61509,133472,, -42,023,42023,PA,Cameron County,2024,1,9506.95404,91,11657,5884.954392,14532.38913,1,,,,2,,,,2,,,,2,,,,2,9927.591461,6064.030776,15332.35984,1,,,,2,,0.191,,,0.164,0.224,4.290793344,,,3.405029909,5.323081487,5.534014053,,,4.395536108,6.713857587,0.094017094,22,234,0.056622265,0.131411923,1,,,,,,,,,,,,,0.095454546,0.056625364,0.134283727,,,,,,,0.241,,,0.196,0.289,0.39,,,0.307,0.478,7.6,0.030242296,0.14,,,0.29,,,0.238,0.351,0.312733671,1422,4547,,,0.155110887,,,0.122795934,0.19215794,0.2,1,5,0.015594715,0.47750127,201.8,9,4459,,,21.27659575,15,705,11.90834913,35.09250904,,,,,,,,,,,,,21.77293935,11.90346855,36.53129257,,,,,,,0.068462758,216,3155,0.056547864,0.080377651,0.000448531,2,4459,,,2229.5,0.000905387,4,4418,,,1104.5,0.000452694,2,4418,,,2209,3580,,,,,,,,,3609,0.46,,,,,,,,,0.46,0.43,,,,,,,,,0.44,0.926064442,3219,3476,0.904166817,0.947962067,0.527549824,450,853,0.402508864,0.652590784,0.057040082,111,1946,,,0.225,168,,0.140404255,0.309595745,,,,,,,,,,0.55,0.17023905,0.92976095,0.165932452,0.075174415,0.25669049,3.9914458,85389,21393,3.353531524,4.629360076,0.358056266,280,782,0.172092332,0.5440202,24.66920834,11,4459,,,98.56630824,22,22320,61.77098061,149.2305752,,,,,,,,,,,,,103.1072784,64.61678245,156.1056587,,,,7.2,,,,,0,,,,,0.13490364,315,2335,0.097501589,0.172305692,0.11328976,0.075439285,0.151140236,0.014561028,0,0.029297677,0.014989293,0,0.03126912,0.792346652,1408,1777,0.730837378,0.853855926,,,,,,,,,,,,,0.807276862,0.738175462,0.876378262,0.21,,1777,0.146525927,0.273474073,77.02142985,,,73.82620227,80.21665743,,,,,,,,,,,,,76.73858312,73.3853149,80.09185134,,,,439.6021375,91,11657,338.5472124,561.3621155,,,,,,,,,,,,,450.0054073,344.2184796,578.0507715,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.137,,,0.118,0.159,0.189,,,0.163,0.217,0.103,,,0.087,0.121,,,,,,0.14,640,,,,0.030242296,153.7820772,5085,,,,,,,,,,,,,,,,,,,,,,,,,,0.375,,,0.357,0.392,0.074521232,179,2402,0.06022336,0.088819105,0.051572327,41,795,0.034891476,0.068253178,0.001584427,7,4418,,,631.1428571,,,,,,,,,,,3.799512264,,,,,,,,,3.858127492,3.543891275,,,,,,,,,3.571731938,,,,,,-4.425781,,,,,0.791386474,36953,46694,0.58414687,0.998626077,50338,,,42963.87234,57712.12766,,,,,,,,,,26667,14750.91489,38583.08511,46667,43551.25532,49782.74468,,,,,,0.363636364,148,407,,,,,,,,0.334598117,,50338,,,5,1,200,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,300,,,-888,0,0.643915344,2434,3780,,,0.404,,,,,0.016204953,,,,,0.713574661,1577,2210,0.680465791,0.746683531,0.09255814,199,2150,0.056748265,0.128368014,0.77918552,1722,2210,0.73497086,0.823400181,4418,,,,,0.172928927,764,4418,,,0.291534631,1288,4418,,,0.006564056,29,4418,,,0.004526935,20,4418,,,0.005432322,24,4418,,,0.00067904,3,4418,,,0.017655048,78,4418,,,0.951335446,4203,4418,,,0,0,4337,0,0.012087971,0.489814396,2164,4418,,,1,4547,4547,, -42,025,42025,PA,Carbon County,2024,1,10030.08092,1212,176455,9093.337332,10966.82451,0,,,,2,,,,2,,,,2,6733.191474,3990.515995,10641.34538,1,10355.82861,9336.855098,11374.80212,,,,,2,,0.165,,,0.138,0.195,3.859676566,,,3.027584775,4.813423836,5.482952758,,,4.365254552,6.657388148,0.083624563,335,4006,0.075052127,0.092196999,0,,,,,,,0.142857143,0.073575111,0.212139175,0.095108696,0.065134987,0.125082404,0.081128235,0.072002803,0.090253667,,,,,,,0.201,,,0.159,0.247,0.362,,,0.285,0.446,8.3,0.01825632,0.11,,,0.265,,,0.215,0.321,0.648658667,42000,64749,,,0.17053913,,,0.134186725,0.21086993,0.265306122,13,49,0.190947939,0.34316441,192.6,126,65412,,,14.86486487,176,11840,12.66872142,17.06100831,,,,,,,,,,25.96239928,17.38742627,37.28633611,13.77055677,11.48127014,16.05984339,,,,,,,0.062488919,3172,50761,0.052957004,0.072020834,0.00033633,22,65412,,,2973.272727,0.000412466,27,65460,,,2424.444444,0.000779102,51,65460,,,1283.529412,3508,,,,,,,,6090,3475,0.47,,,,,,0.28,0.5,0.5,0.47,0.55,,,,,,0.5,0.43,0.44,0.55,0.896793525,43099,48059,0.881544417,0.912042633,0.544644693,7948,14593,0.491118364,0.598171022,0.050862043,1655,32539,,,0.155,1862,,0.100191489,0.209808511,,,,,,,0.271428571,0.125815417,0.417041726,0.226430298,0.115672804,0.337187792,0.183408748,0.143104044,0.223713452,4.097859121,121354,29614,3.670939609,4.524778632,0.215636925,2656,12317,0.169699948,0.261573901,13.30031187,87,65412,,,141.7227394,456,321755,128.7146597,154.730819,,,,,,,,,,68.6420318,35.46833949,119.9038156,148.7845839,134.8025813,162.7665864,,,,8,,,,,1,,,,,0.140516105,3730,26545,0.118118412,0.162913798,0.121404175,0.100643226,0.142165123,0.01544547,0.008478652,0.022412288,0.008664532,0.00449426,0.012834804,0.807255008,23856,29552,0.78317539,0.831334626,,,,,,,,,,0.580037665,0.492242882,0.667832447,0.758133533,0.724961068,0.791305997,0.519,,29552,0.476522109,0.561477891,75.33107901,,,74.62523791,76.03692011,,,,,,,,,,80.38954887,75.56128423,85.2178135,74.9900191,74.23411575,75.74592245,,,,461.3300508,1212,176455,432.9214949,489.7386067,,,,,,,,,,264.844223,167.8885188,397.3963718,473.8907442,443.6530215,504.1284668,,,,48.05737311,26,54102,31.39267165,70.41518628,,,,,,,,,,,,,50.67865327,32.12591891,76.04286289,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.121,,,0.103,0.142,0.173,,,0.148,0.2,0.09,,,0.075,0.107,263.4,150,56938,,,0.11,7130,,,,0.01825632,1191.206628,65249,,,54.21453466,105,193675,43.84457287,64.58449645,,,,,,,,,,,,,55.98688307,45.45285794,68.23007769,,,,0.35,,,0.332,0.366,0.06983204,2690,38521,0.057917146,0.081746933,0.040353187,521,12911,0.028438294,0.052268081,0.00091659,60,65460,,,1091,0.878447075,630.725,718,,,0.128195895,356,2777,0.065930104,0.190461686,3.085181272,,,,,,,,2.579523796,3.152473282,2.985570285,,,,,,,,2.513118059,3.065973631,0.051019549,,,,,2694.7632,,,,,0.833462001,46423,55699,0.774222903,0.892701099,64766,,,58377.23404,71154.76596,,,,60676,51735.06383,69616.93617,58333,37863.21277,78802.78723,72917,59902.3617,85931.6383,65084,61253.3617,68914.6383,,,,,,0.546191441,4582,8389,,,63.37691945,,,,,0.255257388,,64766,,,8.742434432,26,2974,,,3.338459724,15,449309,1.868510565,5.506281617,,,,,,,,,,,,,3.65724317,2.04693124,6.032066433,,,,23.56897676,83,321755,18.47431543,29.63444976,25.79602493,,,,,,,,,,,,,25.05347589,19.49309967,31.7067772,,,,19.58011531,63,321755,15.04589821,25.0514731,,,,,,,,,,,,,21.54811215,16.55816102,27.56939596,,,,14.24409482,64,449309,10.96968869,18.18939109,,,,,,,,,,,,,13.65370784,10.31386417,17.73047532,,,,8.833333333,,6000,,,39,14,0.657329945,33629,51160,,,0.612,,,,,41.6605035,,,,,0.750693871,20015,26662,0.724922608,0.776465135,0.116277274,3011,25895,0.095239541,0.137315006,0.866926712,23114,26662,0.841581898,0.892271527,65460,,,,,0.188282921,12325,65460,,,0.224885426,14721,65460,,,0.021157959,1385,65460,,,0.004598228,301,65460,,,0.006477238,424,65460,,,0.001176291,77,65460,,,0.069049801,4520,65460,,,0.889963336,58257,65460,,,0.003368631,209,62043,0.001094813,0.00564245,0.496959976,32531,65460,,,0.589198289,38150,64749,, -42,027,42027,PA,Centre County,2024,1,4449.161974,1198,450832,4002.547502,4895.776447,0,,,,2,,,,2,3568.941776,2351.955119,5192.622907,,,,,2,4694.781656,4191.670195,5197.893116,,,,,2,,0.144,,,0.119,0.169,3.423705328,,,2.711567814,4.248203893,5.169507191,,,4.271547169,6.160161088,0.055086348,437,7933,0.050065751,0.060106946,0,,,,0.055276382,0.036945173,0.07360759,0.111111111,0.065199524,0.157022698,0.047619048,0.02132536,0.073912736,0.054219567,0.048795139,0.059643995,,,,,,,0.169,,,0.132,0.207,0.328,,,0.269,0.392,8.9,0.030794377,0.079,,,0.228,,,0.186,0.274,0.759401158,120116,158172,,,0.188498298,,,0.15377497,0.226974127,0.296296296,16,54,0.225441954,0.368771353,353,556,157527,,,2.294588443,125,54476,1.892329353,2.696847533,,,,,,,,,,3.926187672,1.882759598,7.220398917,2.42299986,1.95731428,2.888685441,,,,,,,0.068578111,7917,115445,0.059046196,0.078110026,0.000831604,131,157527,,,1202.496183,0.000587029,93,158425,,,1703.494624,0.002436484,386,158425,,,410.4274611,2402,,,,,,,2942,,2380,0.56,,,,,,0.42,0.33,,0.57,0.57,,,,,,0.53,0.44,0.61,0.58,0.948057293,92136,97184,0.94131423,0.954800357,0.729776564,27795,38087,0.690538619,0.769014509,0.036065238,2815,78053,,,0.099,2208,,0.065638298,0.132361702,,,,0.195918367,0.066867675,0.324969059,0.080082136,0,0.201461638,0.086956522,0.019431565,0.154481478,0.079812706,0.060051598,0.099573815,5.20960506,141670,27194,4.728074337,5.691135783,0.13462633,3075,22841,0.104232571,0.165020089,13.14060447,207,157527,,,45.11242785,364,806873,40.4779418,49.74691391,,,,,,,,,,,,,50.51436103,45.20696722,55.82175484,,,,9.8,,,,,1,,,,,0.182047828,10810,59380,0.167681362,0.196414293,0.166022835,0.151003107,0.181042562,0.021050859,0.016154986,0.025946732,0.008672954,0.005270809,0.012075099,0.664639575,48526,73011,0.647231179,0.68204797,,,,0.374246001,0.304467727,0.444024274,0.563993627,0.45817166,0.669815595,0.555163283,0.467301487,0.64302508,0.70757814,0.69029555,0.72486073,0.234,,73011,0.214973441,0.253026559,81.56694843,,,81.10404728,82.02984958,,,,88.78020178,83.98014512,93.58025843,80.0666236,75.68518853,84.44805868,87.19879256,78.84380498,95.55378014,81.30103471,80.80690326,81.79516616,,,,228.6223011,1198,450832,215.0163754,242.2282267,,,,,,,289.6509607,189.2096241,424.4057683,,,,235.7258539,221.0785218,250.3731859,,,,28.50139657,40,140344,20.36181557,38.81081269,,,,,,,,,,,,,30.30093154,21.10570904,42.14126067,,,,4.566210046,37,8103,3.215033268,6.29391906,,,,,,,,,,,,,4.656577416,3.185095505,6.573697916,,,,,,,0.106,,,0.089,0.123,0.156,,,0.133,0.179,0.086,,,0.073,0.102,148.4,210,141484,,,0.079,12520,,,,0.030794377,4742.026176,153990,,,7.478064345,36,481408,5.237544332,10.35279316,,,,,,,,,,,,,7.782460766,5.323197402,10.98651253,,,,0.35,,,0.332,0.369,0.071444814,6598,92351,0.05952992,0.083359707,0.058227744,1420,24387,0.040355404,0.076100085,0.00138867,220,158425,,,720.1136364,0.933739296,981.36,1051,,,0.014505768,210,14477,0.006711434,0.022300102,3.419073092,,,,,,,3.172108553,,3.390116423,3.458812108,,,,,,4.255290742,2.542190113,3.271648007,3.462481519,0.098534595,,,,,8322.10175,,,,,0.832432005,52643,63240,0.781394274,0.883469736,67654,,,62124.29787,73183.70213,48846,15292.46809,82399.53192,32364,28433.2766,36294.7234,38589,23000.74468,54177.25532,64904,49355.06383,80452.93617,72400,69751.31915,75048.68085,,,,,,0.230541943,3199,13876,,,54.31880559,,,,,0.397567032,,67654,,,8.760330579,53,6050,,,1.151546128,13,1128917,0.613149815,1.969178949,,,,,,,,,,,,,1.243123971,0.642340296,2.171487403,,,,10.0451798,85,806873,7.940297784,12.53683901,10.53449552,,,,,,,,,,,,,11.06502141,8.673210463,13.91260318,,,,5.45315062,44,806873,3.962267588,7.320600179,,,,,,,,,,,,,5.951404604,4.270830695,8.073752356,,,,7.972242424,90,1128917,6.410624353,9.79923943,,,,,,,,,,,,,8.805461458,7.033489864,10.88808946,,,,6.017699115,,11300,,,55,13,0.599095477,77493,129350,,,0.644,,,,,90.2161043,,,,,0.625546882,36460,58285,0.614287814,0.636805949,0.165284864,9330,56448,0.149517495,0.181052233,0.846444197,49335,58285,0.830954248,0.861934145,158425,,,,,0.143386461,22716,158425,,,0.160208301,25381,158425,,,0.036755563,5823,158425,,,0.00212719,337,158425,,,0.064143917,10162,158425,,,0.000902635,143,158425,,,0.032867287,5207,158425,,,0.849360896,134560,158425,,,0.004826179,738,152916,0.003059366,0.006592992,0.472292883,74823,158425,,,0.346489897,54805,158172,, -42,029,42029,PA,Chester County,2024,1,4875.10064,4688,1478968,4650.26036,5099.940921,0,,,,2,1939.533293,1403.649861,2612.538617,,10501.40272,9071.311283,11931.49415,,4578.742899,3835.463406,5322.022393,,4775.631646,4519.510865,5031.752428,,,,,2,,0.112,,,0.093,0.135,3.006713411,,,2.320928253,3.760353775,4.552685744,,,3.741092053,5.46579633,0.063267033,2392,37808,0.060813111,0.065720956,0,,,,0.078324808,0.068908919,0.087740697,0.127800407,0.113034526,0.142566289,0.069284995,0.062221423,0.076348567,0.054586865,0.05186616,0.057307569,,,,0.091530055,0.070640092,0.112420018,0.121,,,0.092,0.156,0.316,,,0.258,0.376,9.1,0.061927715,0.054,,,0.175,,,0.142,0.216,0.902846675,482493,534413,,,0.181031712,,,0.147932441,0.216638508,0.299435028,53,177,0.261387789,0.338035231,202.7,1092,538649,,,5.121410751,661,129066,4.73097916,5.511842342,,,,,,,8.901225115,7.184437474,10.90460213,26.39225182,23.53164189,29.25286174,2.144510266,1.848771323,2.440249209,,,,8.858516831,6.17028155,12.32005249,0.05637814,24765,439266,0.050420693,0.062335587,0.00080015,431,538649,,,1249.765661,0.000698029,381,545823,,,1432.606299,0.002881887,1573,545823,,,346.9949142,2655,,,,,,1427,3724,3595,2549,0.47,,,,,,0.42,0.44,0.25,0.48,0.6,,,,,,0.55,0.46,0.4,0.61,0.94745694,348144,367451,0.94324533,0.951668549,0.80506797,104113,129322,0.784202109,0.825933831,0.032014664,9449,295146,,,0.064,7521,,0.047319149,0.080680851,0.170454546,0,0.820304742,0.020213491,0.003566972,0.03686001,0.309279975,0.218210593,0.400349356,0.211007873,0.15690811,0.265107635,0.04101759,0.032684762,0.049350417,4.417651333,231052,52302,4.265570092,4.569732574,0.139532346,16625,119148,0.12559875,0.153465943,9.690911893,522,538649,,,63.57020613,1673,2631736,60.52398294,66.61642932,,,,11.20127446,6.638585142,17.7028428,91.05090147,75.74810271,106.3537002,36.98686966,29.04264798,46.43362781,69.05834054,65.48024121,72.63643987,,,,9.1,,,,,1,,,,,0.124591863,24040,192950,0.117165726,0.132018,0.107122373,0.09999958,0.114245166,0.013915522,0.011647384,0.01618366,0.009199274,0.007122083,0.011276466,0.698127594,194106,278038,0.689237122,0.707018066,,,,0.549371957,0.508486956,0.590256959,0.728098004,0.686700587,0.769495421,0.679218303,0.645464811,0.712971795,0.709523215,0.699811734,0.719234696,0.426,,278038,0.411504906,0.440495094,81.05340601,,,80.82582283,81.28098919,,,,90.77422081,88.00525703,93.54318459,74.42795615,73.31887534,75.53703696,86.88496363,84.30628341,89.46364384,81.11485907,80.86573938,81.36397876,,,,240.7102111,4688,1478968,233.5342956,247.8861266,,,,97.76263773,76.06516753,123.724875,493.5430032,447.4467842,539.6392221,204.4375916,173.1009692,235.7742139,236.6466541,228.7411432,244.552165,,,,32.7902641,175,533695,27.93199059,37.64853762,,,,30.17122168,15.58991051,52.70305244,72.14102001,45.73121836,108.2469509,40.13098754,25.97065919,59.24125417,29.1193257,23.67754492,34.56110649,,,,4.293551721,162,37731,3.632378489,4.954724954,,,,,,,11.02756892,6.910918733,16.69587187,4.65304471,2.949631203,6.981851688,3.666841278,2.976918996,4.468705017,,,,,,,0.088,,,0.074,0.104,0.135,,,0.115,0.157,0.072,,,0.06,0.084,108.3,494,456285,,,0.054,28710,,,,0.061927715,30894.8699,498886,,,23.13887665,368,1590397,20.77472989,25.50302341,,,,,,,51.20498692,37.48848601,68.30027685,14.82762882,8.787792562,23.4340461,23.58910665,20.89264716,26.28556614,,,,0.309,,,0.293,0.325,0.060469998,19299,319150,0.053321062,0.067618935,0.045891083,5801,126408,0.035167679,0.056614487,0.001038798,567,545823,,,962.6507937,0.884956885,6670.805,7538,,,0.04569678,1432,31337,0.029676713,0.061716847,3.495537858,,,,,,4.178230784,2.639422664,2.71875658,3.617435983,3.472371242,,,,,,4.266027313,2.488406938,2.627010668,3.59834338,0.134242124,,,,,6548.17425,,,,,0.745144376,70630,94787,0.720217963,0.77007079,117326,,,112132.2979,122519.7021,,,,156362,145555.1915,167168.8085,62870,53740.80851,71999.19149,87110,76977.57447,97242.42553,122564,119897.4468,125230.5532,,,,,,0.283379186,24618,86873,,,54.57916907,,,,,0.269573667,,117326,,,7.336401703,212,28897,,,1.610267722,59,3663987,1.225810398,2.07712804,,,,,,,11.44650429,7.333991279,17.03149105,,,,0.862484743,0.55815465,1.273197621,,,,11.62493281,323,2631736,10.31721037,12.93265524,12.27326753,,,,7.247999602,3.475697536,13.32932933,11.7810298,6.733876449,19.13165431,,,,12.84168968,11.27232888,14.41105049,,,,6.497612223,171,2631736,5.523717965,7.47150648,,,,,,,13.38983845,8.178861185,20.67951951,,,,6.659714182,5.548565645,7.77086272,,,,6.441070888,236,3663987,5.619286004,7.262855773,,,,,,,10.49262893,6.575674687,15.88596629,5.449729875,3.050172441,8.98850066,6.761880382,5.815217129,7.708543636,,,,4.806338028,,56800,,,169,104,0.82900033,314502,379375,,,0.756,,,,,103.8773566,,,,,0.746443561,149753,200622,0.738609659,0.754277462,0.112091827,22148,197588,0.104586034,0.119597621,0.931039467,186787,200622,0.925915891,0.936163043,545823,,,,,0.217588852,118765,545823,,,0.178909647,97653,545823,,,0.056391907,30780,545823,,,0.003292276,1797,545823,,,0.071994035,39296,545823,,,0.000694364,379,545823,,,0.077466505,42283,545823,,,0.77465039,422822,545823,,,0.017461943,8867,507790,0.015355058,0.019568828,0.503230901,274675,545823,,,0.193122173,103207,534413,, -42,031,42031,PA,Clarion County,2024,1,8521.653044,652,103979,7416.97937,9626.326718,0,,,,2,,,,2,,,,2,,,,2,8432.313656,7325.700093,9538.92722,,,,,2,,0.17,,,0.141,0.204,3.972786673,,,3.195981303,4.986192572,5.420044969,,,4.418139972,6.667096652,0.064565719,168,2602,0.055122717,0.07400872,0,,,,,,,,,,,,,0.061638281,0.052146014,0.071130547,,,,,,,0.214,,,0.17,0.266,0.367,,,0.291,0.451,7.8,0.059469535,0.113,,,0.259,,,0.209,0.32,0.479713219,17865,37241,,,0.177176654,,,0.141136125,0.218735825,0.322580645,10,31,0.22766888,0.417943398,207.2,77,37156,,,10.64932617,113,10611,8.685789672,12.61286267,,,,,,,,,,,,,10.87291004,8.803012096,12.94280799,,,,,,,0.075855459,2137,28172,0.065132055,0.086578864,0.00045753,17,37156,,,2185.647059,0.000428426,16,37346,,,2334.125,0.001660151,62,37346,,,602.3548387,2595,,,,,,,,,2586,0.45,,,,,,,,,0.45,0.4,,,,,,,,,0.4,0.908830455,23157,25480,0.898176864,0.919484046,0.543586626,4471,8225,0.49712511,0.590048142,0.051840815,835,16107,,,0.16,1091,,0.106382979,0.213617021,,,,,,,0.1796875,0,0.452484192,0.176100629,0,0.42514959,0.147721972,0.119523665,0.175920279,4.578488138,113867,24870,4.196235907,4.96074037,0.177341304,1246,7026,0.143379911,0.211302697,15.60986113,58,37156,,,84.75640382,162,191136,71.70458352,97.80822411,,,,,,,,,,,,,86.81882713,73.32387266,100.3137816,,,,8.2,,,,,1,,,,,0.129943503,2070,15930,0.111188163,0.148698843,0.105066498,0.086274232,0.123858764,0.010357815,0.005896332,0.014819299,0.022284997,0.011882101,0.032687893,0.774753057,13177,17008,0.753849301,0.795656814,,,,,,,,,,,,,0.77053707,0.752978413,0.788095727,0.305,,17008,0.282205466,0.327794534,75.94752989,,,75.08301482,76.81204495,,,,,,,,,,,,,75.91307408,75.04587271,76.78027545,,,,441.8717121,652,103979,405.0898309,478.6535933,,,,,,,,,,,,,444.2968478,406.9411641,481.6525315,,,,45.33733813,16,35291,25.91420604,73.62499673,,,,,,,,,,,,,39.65832825,21.11638954,67.81694911,,,,7.783543366,21,2698,4.818136021,11.89797285,,,,,,,,,,,,,,,,,,,,,,0.124,,,0.104,0.146,0.18,,,0.155,0.208,0.094,,,0.079,0.112,205.5,66,32120,,,0.113,4230,,,,0.059469535,2378.06778,39988,,,18.43738751,21,113899,11.41303346,28.18350533,,,,,,,,,,,,,18.34357516,11.20473226,28.33016409,,,,0.369,,,0.347,0.388,0.082683676,1750,21165,0.069577293,0.095790059,0.056234719,414,7362,0.039553868,0.07291557,0.001124618,42,37346,,,889.1904762,0.932011494,405.425,435,,,,,,,,3.26934179,,,,,,,,,3.274564252,3.351401155,,,,,,,,,3.354028218,0.098304296,,,,,4974.086429,,,,,0.770700405,42276,54854,0.703935095,0.837465714,57844,,,52690.80851,62997.19149,,,,,,,108896,90455.31915,127336.6809,81563,22757.04255,140368.9575,58236,55338.29787,61133.70213,,,,,,0.408111285,2083,5104,,,71.6283667,,,,,0.312754996,,57844,,,5.12295082,10,1952,,,,,,,,,,,,,,,,,,,,,,,,,,17.29568632,33,191136,11.58319257,24.83949062,17.26519337,,,,,,,,,,,,,17.19678617,11.42713952,24.85414405,,,,14.1260673,27,191136,9.309167363,20.55268628,,,,,,,,,,,,,14.7428197,9.71561108,21.45002864,,,,13.00404612,35,269147,9.057794589,18.08548019,,,,,,,,,,,,,13.56037272,9.44529645,18.85919582,,,,10.60606061,,3300,,,25,10,0.6243754,19493,31220,,,0.577,,,,,21.95397264,,,,,0.714748784,10584,14808,0.693878148,0.735619421,0.10424115,1487,14265,0.085817571,0.122664728,0.816720692,12094,14808,0.799128582,0.834312801,37346,,,,,0.186204681,6954,37346,,,0.207063675,7733,37346,,,0.014405827,538,37346,,,0.002517003,94,37346,,,0.007577786,283,37346,,,0.000348096,13,37346,,,0.011781717,440,37346,,,0.953328335,35603,37346,,,0.001684825,60,35612,0,0.004588121,0.505864082,18892,37346,,,0.847963266,31579,37241,, -42,033,42033,PA,Clearfield County,2024,1,8902.644612,1340,216078,8084.190613,9721.098611,0,,,,2,,,,2,,,,2,,,,2,9495.697812,8608.703819,10382.6918,,,,,2,,0.177,,,0.147,0.207,3.945737714,,,3.117708191,4.935863249,5.15581899,,,4.104423817,6.308823862,0.087585376,436,4978,0.079732286,0.095438465,0,,,,,,,,,,,,,0.08490566,0.076995266,0.092816055,,,,,,,0.216,,,0.172,0.263,0.373,,,0.296,0.451,7.7,0.057889756,0.12,,,0.271,,,0.223,0.327,0.642461707,51758,80562,,,0.177022165,,,0.141710116,0.217573537,0.232876712,17,73,0.173070018,0.2965429,147.3,118,80082,,,18.26951184,250,13684,16.00479969,20.53422399,,,,,,,,,,,,,18.39452013,16.06242864,20.72661161,,,,,,,0.07152585,4149,58007,0.061993935,0.081057765,0.000462026,37,80082,,,2164.378378,0.000449271,35,77904,,,2225.828571,0.003388786,264,77904,,,295.0909091,3099,,,,,,,,,3072,0.53,,,,,,,,,0.53,0.43,,,,,,,0.29,,0.43,0.898629907,53455,59485,0.888461163,0.90879865,0.525306669,10192,19402,0.486596226,0.564017113,0.053564328,1886,35210,,,0.163,2276,,0.104617021,0.221382979,,,,,,,,,,0.359322034,0.173783961,0.544860107,0.198470421,0.164716184,0.232224657,4.254091371,104757,24625,3.974480567,4.533702174,0.22230663,3219,14480,0.178944337,0.265668922,17.60695287,141,80082,,,100.246334,398,397022,90.39754039,110.0951275,,,,,,,,,,,,,106.9576784,96.39631643,117.5190404,,,,8.8,,,,,1,,,,,0.116543132,3695,31705,0.102621955,0.130464309,0.094463888,0.081828047,0.107099729,0.014193345,0.008531743,0.019854947,0.01356253,0.009107924,0.018017136,0.796465605,27267,34235,0.77783529,0.815095921,,,,,,,,,,,,,0.80342529,0.784819311,0.82203127,0.333,,34235,0.310487471,0.355512529,76.15439382,,,75.51519019,76.79359745,,,,,,,,,,96.08501067,57.91132563,134.2586957,75.69724506,75.02331812,76.371172,,,,422.7408252,1340,216078,398.4817746,446.9998759,,,,,,,,,,,,,441.6180183,415.6192501,467.6167866,,,,79.23302433,50,63105,58.80827785,104.4588649,,,,,,,,,,,,,76.946238,56.33431703,102.6354985,,,,8.118811881,41,5050,5.826199578,11.01408506,,,,,,,,,,,,,8.051197358,5.725188375,11.00625183,,,,,,,0.125,,,0.106,0.146,0.175,,,0.151,0.201,0.095,,,0.079,0.111,97,68,70106,,,0.12,9710,,,,0.057889756,4726.235444,81642,,,29.8383267,71,237949,23.30398071,37.63698906,,,,,,,,,,,,,32.2088951,25.1554143,40.62713854,,,,0.372,,,0.353,0.39,0.079200677,3464,43737,0.067285783,0.09111557,0.048313037,726,15027,0.034015164,0.062610909,0.002323372,181,77904,,,430.4088398,0.8833867,717.31,812,,,0.103035879,336,3261,0.06343017,0.142641588,3.085462129,,,,,,,,,3.080706934,3.10990199,,,,,,,,,3.101331797,0.03630247,,,,,2793.633171,,,,,0.800179691,41859,52312,0.749801955,0.850557427,59318,,,55039.3617,63596.6383,,,,,,,,,,,,,57161,55173.59575,59148.40426,,,,,,0.76313091,6698,8777,,,63.6458462,,,,,0.30498331,,59318,,,3.739316239,14,3744,,,1.969166434,11,558612,0.983000789,3.52338269,,,,,,,,,,,,,2.120400177,1.058496129,3.793981632,,,,22.71815128,92,397022,18.12088719,28.12661714,23.17251941,,,,,,,,,,,,,25.3412391,20.1546395,31.45515951,,,,15.86813829,63,397022,12.19351315,20.30224201,,,,,,,,,,,,,17.1023699,13.14193061,21.8813604,,,,14.32121043,80,558612,11.3558292,17.82398605,,,,,,,,,,,,,15.22832855,12.05641112,18.97904103,,,,7.058823529,,6800,,,48,0,0.624160861,39422,63160,,,0.613,,,,,25.71075951,,,,,0.778015816,24695,31741,0.761974704,0.794056928,0.100647133,3095,30751,0.086874119,0.114420148,0.799817271,25387,31741,0.784670065,0.814964478,77904,,,,,0.182660711,14230,77904,,,0.221400698,17248,77904,,,0.018882214,1471,77904,,,0.002310536,180,77904,,,0.006353974,495,77904,,,0.000295235,23,77904,,,0.026019203,2027,77904,,,0.938514069,73114,77904,,,0.00544207,414,76074,0.003510284,0.007373855,0.478293798,37261,77904,,,0.613093022,49392,80562,, -42,035,42035,PA,Clinton County,2024,1,8115.850877,559,104491,7004.161152,9227.540601,0,,,,2,,,,2,,,,2,,,,2,8358.753821,7191.367271,9526.14037,,,,,2,,0.17,,,0.142,0.199,3.956316755,,,3.133592407,4.839636487,5.338899319,,,4.273951121,6.439961752,0.066596195,189,2838,0.057423237,0.075769152,0,,,,,,,,,,,,,0.065755449,0.056418433,0.075092465,,,,,,,0.218,,,0.172,0.265,0.372,,,0.296,0.453,8,0.034398576,0.116,,,0.267,,,0.217,0.321,0.546008011,20448,37450,,,0.177731918,,,0.141392163,0.217211109,0.264705882,9,34,0.174780223,0.359592316,208.2,78,37465,,,12.18483457,130,10669,10.09022042,14.27944871,,,,,,,,,,,,,12.64391447,10.40939026,14.87843869,,,,,,,0.083715437,2410,28788,0.071800543,0.095630331,0.000346991,13,37465,,,2881.923077,0.000421819,16,37931,,,2370.6875,0.001450001,55,37931,,,689.6545455,2705,,,,,,,,,2727,0.49,,,,,,,,,0.49,0.55,,,,,,,0.36,,0.55,0.895404184,22386,25001,0.882259352,0.908549015,0.505499819,4182,8273,0.458519525,0.552480113,0.053439153,909,17010,,,0.176,1295,,0.112851064,0.239148936,,,,,,,0.027027027,0,0.392948932,0.082474227,0,0.337946963,0.150007171,0.115225733,0.184788608,4.440191007,111582,25130,3.994962218,4.885419796,0.1765091,1348,7637,0.136911744,0.216106457,12.27812625,46,37465,,,77.71101932,149,191736,65.23300319,90.18903545,,,,,,,,,,,,,79.70843205,66.73435908,92.68250503,,,,8.2,,,,,1,,,,,0.120849934,1820,15060,0.099484546,0.142215322,0.107656302,0.085027358,0.130285246,0.013280213,0.007882372,0.018678053,0.002988048,0.000739997,0.005236099,0.763435256,13183,17268,0.733601133,0.793269379,,,,,,,,,,,,,0.748193441,0.712990535,0.783396346,0.324,,17268,0.289611545,0.358388455,77.04608175,,,76.14649767,77.94566583,,,,,,,,,,,,,76.77305024,75.84808312,77.69801737,,,,403.0151248,559,104491,367.2277384,438.8025113,,,,,,,,,,,,,413.1361668,375.9985625,450.2737711,,,,62.88792279,23,36573,39.86554846,94.36276186,,,,,,,,,,,,,65.06180872,40.77388914,98.50436029,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.125,,,0.106,0.145,0.18,,,0.156,0.207,0.093,,,0.078,0.109,80.7,26,32221,,,0.116,4390,,,,0.034398576,1349.731339,39238,,,19.28910867,22,114054,12.08838171,29.20394233,,,,,,,,,,,,,18.51063436,11.30677636,28.58817347,,,,0.356,,,0.336,0.374,0.089258133,1907,21365,0.07496026,0.103556005,0.068007172,531,7808,0.047751853,0.088262491,0.001028183,39,37931,,,972.5897436,0.903535912,327.08,362,,,0.059213251,143,2415,0.025799217,0.092627284,2.896479822,,,,,,,,,2.942041435,2.957519432,,,,,,,,,3.011778396,0.049129329,,,,,7695.065,,,,,0.786262494,40671,51727,0.738113183,0.834411804,58892,,,53004.85106,64779.14894,,,,116563,58361.12766,174764.8723,60640,17786.89362,103493.1064,,,,58761,56149.25532,61372.74468,,,,,,0.519505694,2144,4127,,,66.64362652,,,,,0.291295932,,58892,,,3.487792726,7,2007,,,,,,,,,,,,,,,,,,,,,,,,,,19.06554397,37,191736,13.12384321,26.77511223,19.29736721,,,,,,,,,,,,,18.95361965,12.87806499,26.90315017,,,,17.21116535,33,191736,11.84737429,24.1708752,,,,,,,,,,,,,17.04111306,11.57860954,24.18849972,,,,13.68292593,37,270410,9.63404259,18.860111,,,,,,,,,,,,,14.01792737,9.817983995,19.40672023,,,,20.55555556,,3600,,,35,39,0.575698187,17625,30615,,,0.587,,,,,49.48455501,,,,,0.713988035,10622,14877,0.692847867,0.735128204,0.108531952,1571,14475,0.085220911,0.131842993,0.816091954,12141,14877,0.795004799,0.837179109,37931,,,,,0.198518362,7530,37931,,,0.199309272,7560,37931,,,0.014816377,562,37931,,,0.00216182,82,37931,,,0.007592734,288,37931,,,0.000659092,25,37931,,,0.019060926,723,37931,,,0.944478131,35825,37931,,,0.00379761,136,35812,0.000599994,0.006995225,0.504626822,19141,37931,,,0.479038718,17940,37450,, -42,037,42037,PA,Columbia County,2024,1,7636.72943,974,178151,6850.94385,8422.51501,0,,,,2,,,,2,,,,2,,,,2,7576.671781,6769.44535,8383.898211,,,,,2,,0.162,,,0.136,0.194,3.932867691,,,3.120785572,4.879306851,5.228821121,,,4.250845809,6.391350064,0.079077003,305,3857,0.070560368,0.087593637,0,,,,,,,,,,0.054347826,0.021590838,0.087104814,0.08006863,0.071073299,0.089063962,,,,,,,0.197,,,0.155,0.242,0.406,,,0.331,0.486,8.3,0.025973669,0.106,,,0.26,,,0.211,0.313,0.769987795,49839,64727,,,0.173234656,,,0.13889518,0.213540421,0.21875,7,32,0.128580322,0.319266194,328.3,213,64872,,,7.705779335,154,19985,6.488718522,8.922840147,,,,,,,,,,13.82488479,7.143519711,24.14929153,7.565337001,6.274719992,8.855954011,,,,,,,0.059831329,2930,48971,0.051490903,0.068171754,0.000570354,37,64872,,,1753.297297,0.000477467,31,64926,,,2094.387097,0.000770108,50,64926,,,1298.52,2488,,,,,,,,2706,2477,0.52,,,,,,0.75,,,0.51,0.52,,,,,,0.59,0.49,0.46,0.52,0.916419694,39889,43527,0.907457424,0.925381963,0.584840406,8117,13879,0.538717636,0.630963177,0.044878968,1524,33958,,,0.144,1597,,0.095148936,0.192851064,,,,0.398373984,0,0.916960209,0.285714286,0,0.625836952,0.306518724,0.151958575,0.461078873,0.167441861,0.13127964,0.203604081,4.751747529,114883,24177,4.322916912,5.180578145,0.208032412,2362,11354,0.159940155,0.256124668,14.79837218,96,64872,,,86.48555814,282,326066,76.39128366,96.57983262,,,,,,,,,,,,,88.19099461,77.61248022,98.769509,,,,8.3,,,,,1,,,,,0.112915408,2990,26480,0.097039056,0.128791759,0.102733088,0.086697275,0.118768901,0.007741692,0.004128868,0.011354515,0.007741692,0.003674141,0.011809243,0.78968307,23621,29912,0.772553283,0.806812857,,,,,,,,,,0.584137931,0.48279182,0.685484042,0.784448347,0.761240031,0.807656664,0.256,,29912,0.233709275,0.278290725,77.45955239,,,76.80151108,78.11759371,,,,,,,,,,92.79764285,75.4146171,110.1806686,77.42136179,76.75473542,78.08798816,,,,392.6795503,974,178151,366.0778854,419.2812152,,,,,,,,,,,,,395.2667817,367.8434775,422.6900859,,,,32.6853604,19,58130,19.67872211,51.04223907,,,,,,,,,,,,,31.25488358,17.86486649,50.7559728,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.119,,,0.101,0.139,0.174,,,0.149,0.201,0.089,,,0.076,0.105,175.5,100,56973,,,0.106,6890,,,,0.025973669,1747.898073,67295,,,32.36112966,63,194678,24.86718057,41.40394256,,,,,,,,,,,,,30.48527007,22.96567745,39.68076932,,,,0.355,,,0.337,0.374,0.066333581,2496,37628,0.055610177,0.077056986,0.039526351,474,11992,0.027611457,0.051441245,0.000770108,50,64926,,,1298.52,0.895031299,571.925,639,,,0.066059708,312,4723,0.031043911,0.101075505,3.244281894,,,,,,,,,3.268378839,3.422018499,,,,,,,,,3.446700168,0.075575656,,,,,6414.7928,,,,,0.791463119,45688,57726,0.740943382,0.841982856,59127,,,52622.65957,65631.34043,53700,52316.68085,55083.31915,82206,17627.2766,146784.7234,,,,70893,42095.89362,99690.10638,58662,55903.70213,61420.29787,,,,,,0.421791705,3244,7691,,,56.90251077,,,,,0.311245286,,59127,,,5.967005967,17,2849,,,3.702429229,17,459158,2.156801465,5.927947856,,,,,,,,,,,,,3.748055696,2.142337675,6.086607634,,,,19.00776604,67,326066,14.46959219,24.51863331,20.54798722,,,,,,,,,,,,,19.89929762,15.03171557,25.84089316,,,,15.02763244,49,326066,11.11752521,19.86732704,,,,,,,,,,,,,15.85456083,11.68990158,21.02084749,,,,11.97844751,55,459158,9.02380596,15.59159592,,,,,,,,,,,,,12.88394146,9.705947923,16.77022076,,,,11.63636364,,5500,,,33,31,0.584383202,31171,53340,,,0.638,,,,,66.94471183,,,,,0.707666744,18313,25878,0.690260973,0.725072515,0.110242915,2723,24700,0.091971158,0.128514672,0.845505835,21880,25878,0.833806181,0.85720549,64926,,,,,0.174013492,11298,64926,,,0.204463543,13275,64926,,,0.018282352,1187,64926,,,0.00264917,172,64926,,,0.010920124,709,64926,,,0.000877923,57,64926,,,0.0393987,2558,64926,,,0.918953886,59664,64926,,,0.001722722,107,62111,0,0.003560411,0.514216185,33386,64926,,,0.447263121,28950,64727,, -42,039,42039,PA,Crawford County,2024,1,9117.484382,1456,229822,8317.8886,9917.080165,0,,,,2,,,,2,12297.786,6723.314043,20633.59527,1,,,,2,9228.014897,8393.760971,10062.26882,,,,,2,,0.17,,,0.143,0.201,4.062796047,,,3.219171875,5.024752538,5.362450174,,,4.329488306,6.499502426,0.079201545,492,6212,0.072485874,0.085917217,0,,,,,,,0.155844156,0.074828811,0.236859501,,,,0.077410516,0.070555774,0.084265257,,,,0.144,0.082451256,0.205548744,0.217,,,0.173,0.265,0.389,,,0.317,0.464,8,0.040617754,0.116,,,0.27,,,0.22,0.323,0.755772118,63438,83938,,,0.170042639,,,0.135891425,0.20754529,0.280701754,16,57,0.211839682,0.351834237,193.2,161,83351,,,18.28144203,357,19528,16.38503126,20.1778528,,,,,,,23.09058615,12.29476464,39.48560554,,,,17.51899308,15.56561652,19.47236965,,,,29.25045704,16.71916354,47.50090969,0.083978893,5236,62349,0.073255489,0.094702297,0.00061187,51,83351,,,1634.333333,0.000447563,37,82670,,,2234.324324,0.001669288,138,82670,,,599.057971,2695,,,,,,,,,2708,0.52,,,,,,,0.5,,0.52,0.43,,,,,,,0.31,,0.43,0.906408037,53411,58926,0.898730211,0.914085864,0.4904102,8847,18040,0.457733949,0.52308645,0.04786505,1816,37940,,,0.186,3058,,0.131191489,0.240808511,,,,,,,0.152380952,0,0.492318835,0.097345133,0.000444765,0.1942455,0.179033312,0.157141864,0.20092476,4.07236917,107311,26351,3.853563999,4.291174341,0.215942369,3687,17074,0.181566469,0.250318268,15.23676981,127,83351,,,97.89571505,414,422899,88.46554371,107.3258864,,,,,,,,,,,,,99.94078509,90.14658815,109.734982,,,,8.1,,,,,1,,,,,0.111742963,3930,35170,0.100052404,0.123433522,0.083930106,0.073154845,0.094705367,0.00881433,0.006674229,0.010954432,0.026158658,0.021003419,0.031313897,0.762032539,26979,35404,0.751892102,0.772172975,,,,,,,,,,0.466666667,0.336721204,0.59661213,0.765836778,0.756027984,0.775645572,0.283,,35404,0.263640589,0.302359411,75.77653851,,,75.16180937,76.39126765,,,,,,,,,,,,,75.62332307,74.98807804,76.25856809,,,,429.2203919,1456,229822,405.2090879,453.2316958,,,,,,,493.8317855,309.4817508,747.6672579,,,,433.2566063,408.5202293,457.9929833,,,,73.72100413,58,78675,55.97944923,95.30149316,,,,,,,,,,,,,76.51002977,57.63782513,99.58832036,,,,8.846761453,56,6330,6.682748528,11.48825561,,,,,,,,,,,,,9.274873525,6.987104042,12.07252276,,,,,,,0.124,,,0.106,0.145,0.178,,,0.153,0.205,0.091,,,0.077,0.107,119.1,85,71390,,,0.116,9830,,,,0.040617754,3605.434892,88765,,,35.36278643,89,251677,28.39922128,43.51695165,,,,,,,,,,,,,35.71428571,28.52730294,44.16126736,,,,0.363,,,0.344,0.38,0.093464311,4253,45504,0.080357928,0.106570694,0.059162245,1048,17714,0.041289904,0.077034585,0.001306399,108,82670,,,765.462963,0.904077341,666.305,737,,,0.089293362,417,4670,0.057316636,0.121270088,2.878624839,,,,,,,,,2.894573489,2.896944563,,,,,,,,,2.928771519,0.070495969,,,,,5206.8765,,,,,0.750059297,41110,54809,0.710620114,0.78949848,54774,,,51923.95745,57624.04255,,,,,,,,,,31250,24223.78723,38276.21277,58994,56223.78723,61764.21277,,,,,,0.658116952,6235,9474,,,70.3308902,,,,,0.379267536,,54774,,,7.633587786,35,4585,,,3.357732859,20,595640,2.050990462,5.185746072,,,,,,,,,,,,,3.18986615,1.890516844,5.041363751,,,,17.49118827,73,422899,13.49932983,22.29395529,17.26180483,,,,,,,,,,,,,17.63781521,13.49153108,22.65651151,,,,12.53254323,53,422899,9.387734881,16.39287511,,,,,,,,,,,,,12.24274617,9.057251016,16.1855597,,,,12.42361158,74,595640,9.755207213,15.59670665,,,,,,,,,,,,,12.7594646,9.983495223,16.06843398,,,,14.75,,8000,,,101,17,0.626691533,42004,67025,,,0.612,,,,,22.33437928,,,,,0.737699979,24485,33191,0.724625229,0.750774729,0.094032948,2991,31808,0.082007766,0.106058129,0.831008406,27582,33191,0.81561466,0.846402152,82670,,,,,0.203628886,16834,82670,,,0.226140075,18695,82670,,,0.017733156,1466,82670,,,0.002612798,216,82670,,,0.00615701,509,82670,,,0.000374985,31,82670,,,0.015858232,1311,82670,,,0.944308697,78066,82670,,,0.005968796,474,79413,0.004054369,0.007883223,0.504947381,41744,82670,,,0.657878434,55221,83938,, -42,041,42041,PA,Cumberland County,2024,1,5744.449391,2907,709355,5412.119478,6076.779304,0,,,,2,2272.560504,1564.326084,3191.519876,,9360.459052,7420.757281,11300.16082,,3795.544044,2643.735495,5278.682958,,5943.340125,5565.134151,6321.5461,,,,,2,,0.129,,,0.107,0.153,3.158767923,,,2.483315373,3.98515108,4.502269816,,,3.655935605,5.475396875,0.072450417,1337,18454,0.068710174,0.07619066,0,,,,0.098973607,0.083125502,0.114821712,0.110056926,0.091162854,0.128950998,0.068100358,0.053320059,0.082880658,0.066116858,0.062045221,0.070188494,,,,0.113636364,0.085361663,0.141911065,0.149,,,0.116,0.188,0.308,,,0.249,0.372,8.8,0.052812415,0.072,,,0.204,,,0.164,0.247,0.877237743,227616,259469,,,0.170787651,,,0.137759888,0.205607952,0.242718447,25,103,0.192438549,0.295434546,267,702,262919,,,7.871788044,473,60088,7.162375452,8.581200636,,,,,,,10.50052503,7.084660141,14.9901524,18.4531886,14.329623,23.39381361,6.967051652,6.222087348,7.712015955,,,,13.19148936,8.962977012,18.72426617,0.060747091,12400,204125,0.053598155,0.067896027,0.000867187,228,262919,,,1153.153509,0.000696257,187,268579,,,1436.251337,0.002360572,634,268579,,,423.626183,2356,,,,,,2246,2319,,2365,0.53,,,,,,0.34,0.47,0.3,0.54,0.53,,,,,,0.5,0.33,0.31,0.54,0.93496681,170149,181984,0.929329975,0.940603645,0.694615431,46492,66932,0.665263852,0.723967009,0.034185566,4617,135057,,,0.094,5018,,0.066595745,0.121404255,,,,0.069360269,0.011386573,0.127333965,0.428670842,0.28229419,0.575047494,0.364311316,0.282900708,0.445721924,0.060646281,0.049328472,0.07196409,3.908906883,152549,39026,3.705399814,4.112413951,0.178684156,9454,52909,0.15496133,0.202406982,12.81763585,337,262919,,,63.51898307,809,1273635,59.14189437,67.89607176,,,,,,,50.36655661,33.19187817,73.28069552,30.59920442,17.82516419,48.99229047,69.64643046,64.6585731,74.63428782,,,,10.8,,,,,1,,,,,0.106992834,10825,101175,0.096753168,0.1172325,0.094288981,0.085110839,0.103467122,0.007857672,0.005760305,0.00995504,0.012849024,0.009251476,0.016446572,0.756553202,97438,128792,0.743989177,0.769117227,,,,0.58531491,0.519080835,0.651548986,0.726516564,0.637488661,0.815544467,0.707635009,0.637835593,0.777434426,0.773722943,0.757744286,0.7897016,0.252,,128792,0.237407295,0.266592705,79.60310568,,,79.28546293,79.92074844,,,,86.73274193,83.70657142,89.75891244,74.17538012,72.24187662,76.10888362,80.65475504,78.52947431,82.78003577,79.44158588,79.09731105,79.78586071,,,,300.4713384,2907,709355,289.0696428,311.8730341,,,,144.8463884,106.427678,192.6149902,514.7774282,422.8075737,606.7472827,205.2253354,145.9352755,280.5497895,307.000866,294.5594005,319.4423314,,,,34.27792711,82,239221,27.26225267,42.54794568,,,,,,,,,,,,,33.03887213,25.27211929,42.43981342,,,,4.886789379,90,18417,3.929555744,6.006693804,,,,,,,,,,,,,4.471964224,3.451367577,5.699885505,,,,,,,0.1,,,0.085,0.116,0.148,,,0.126,0.172,0.08,,,0.067,0.093,154.3,347,224819,,,0.072,18480,,,,0.052812415,12432.35944,235406,,,18.51981361,143,772146,15.48435256,21.55527466,,,,,,,,,,,,,19.49076509,16.08746938,22.8940608,,,,0.357,,,0.338,0.375,0.06649106,9996,150336,0.056959145,0.076022975,0.045670688,2574,56360,0.032564306,0.058777071,0.001623359,436,268579,,,616.0068807,0.926973027,1855.8,2002,,,0.047206668,725,15358,0.024587369,0.069825966,3.326602444,,,,,,3.880875297,2.524491606,3.019666134,3.400475935,3.382406789,,,,,,4.310995201,2.371682249,2.897648645,3.466019617,0.072370052,,,,,5959.596714,,,,,0.833079536,56896,68296,0.801379024,0.864780048,81295,,,76341.97872,86248.02128,62386,59550.25532,65221.74468,114804,99205.02128,130402.9787,48542,37774.51064,59309.48936,64946,54168.97872,75723.02128,83034,80687.95745,85380.04255,,,,,,0.316922604,10319,32560,,,52.86230649,,,,,0.310978535,,81295,,,7.166886061,98,13674,,,1.526735686,27,1768479,1.006128438,2.221320267,,,,,,,,,,,,,1.196392478,0.709058006,1.890815911,,,,11.07261412,154,1273635,9.26282737,12.88240087,12.09137626,,,,,,,,,,,,,12.08943701,10.01502165,14.16385236,,,,8.322635606,106,1273635,6.738238579,9.907032633,,,,,,,,,,,,,9.112617069,7.398063018,11.10536141,,,,7.294403835,129,1768479,6.0356204,8.553187271,,,,,,,,,,,,,7.710084858,6.306992579,9.113177136,,,,13.20675106,,23700,,,143,170,0.730718617,141595,193775,,,0.746,,,,,139.4183097,,,,,0.70198841,73044,104053,0.689511482,0.714465338,0.104792114,10737,102460,0.094680724,0.114903504,0.897590651,93397,104053,0.890592287,0.904589015,268579,,,,,0.201806545,54201,268579,,,0.190737176,51228,268579,,,0.048116197,12923,268579,,,0.002543013,683,268579,,,0.059152056,15887,268579,,,0.000625514,168,268579,,,0.050729953,13625,268579,,,0.818820533,219918,268579,,,0.008819311,2183,247525,0.006878268,0.010760355,0.500452381,134411,268579,,,0.208865028,54194,259469,, -42,043,42043,PA,Dauphin County,2024,1,8323.107806,4065,786154,7927.94425,8718.271363,0,,,,2,4559.463904,3462.1921,5894.1644,,13780.08044,12562.64212,14997.51877,,9062.762268,7850.566125,10274.95841,,7219.23178,6748.820416,7689.643144,,,,,2,,0.16,,,0.135,0.187,3.397833189,,,2.675373455,4.227255941,4.649406522,,,3.740203246,5.647419123,0.09421805,2208,23435,0.090477784,0.097958316,0,,,,0.114481969,0.099551383,0.129412556,0.141449394,0.131662825,0.151235964,0.087430242,0.078405125,0.096455359,0.07116459,0.066492897,0.075836282,,,,0.111940299,0.09414535,0.129735247,0.169,,,0.137,0.208,0.37,,,0.303,0.441,8.1,0.084756582,0.088,,,0.247,,,0.205,0.296,0.890831387,255135,286401,,,0.16834564,,,0.134089188,0.205679597,0.24516129,38,155,0.20440282,0.287509691,617.6,1775,287400,,,20.6323971,1168,56610,19.44912578,21.81566842,,,,5.925507901,3.667982783,9.057768266,26.76784523,23.83953579,29.69615467,45.61111771,41.04905581,50.17317961,9.82651125,8.695527335,10.95749516,,,,44.53975586,37.02634706,52.05316466,0.068411956,15951,233161,0.06007153,0.076752381,0.001033403,297,287400,,,967.6767677,0.000740997,214,288800,,,1349.53271,0.002735457,790,288800,,,365.5696203,2904,,,,,,1406,5454,4022,2538,0.48,,,,,,0.29,0.42,0.42,0.5,0.5,,,,,,0.43,0.38,0.27,0.52,0.911817618,180942,198441,0.904205773,0.919429464,0.66846343,49481,74022,0.640974912,0.695951947,0.039909108,5831,146107,,,0.157,9712,,0.111723404,0.202276596,0.139705882,0,0.656928184,0.094610497,0.043802795,0.145418198,0.325755585,0.279063426,0.372447744,0.258383874,0.203032695,0.313735054,0.086066667,0.0679019,0.104231434,4.275828213,135005,31574,4.020037091,4.531619335,0.284398606,18034,63411,0.257264884,0.311532328,17.74530271,510,287400,,,88.96008238,1244,1398380,84.01650818,93.90365659,,,,44.04639554,30.31951198,61.85751561,100.983764,88.31271082,113.6548171,94.55858334,78.42725753,110.6899092,91.21806673,84.97834307,97.45779039,,,,9.2,,,,,1,,,,,0.136163854,15490,113760,0.126401227,0.145926481,0.119921509,0.108783335,0.131059683,0.013493319,0.010223689,0.01676295,0.010460619,0.008061208,0.01286003,0.731364612,103894,142055,0.719157989,0.743571236,,,,0.722538649,0.663983129,0.78109417,0.655047278,0.60625924,0.703835317,0.633096085,0.580147428,0.686044743,0.812111136,0.799953179,0.824269093,0.252,,142055,0.236148265,0.267851735,77.25320394,,,76.91344439,77.59296348,,,,81.34498186,79.63841899,83.05154473,72.17947012,71.27128953,73.08765071,77.47434432,75.68041926,79.26826938,78.26759784,77.86675675,78.66843894,,,,396.7135758,4065,786154,383.9390579,409.4880937,,,,218.4760171,175.6805177,268.5441169,621.6522134,580.9301916,662.3742352,449.427872,394.561574,504.29417,357.4154316,342.8007503,372.030113,,,,61.20283489,169,276131,51.97533055,70.43033922,,,,,,,129.3415652,101.735346,162.130772,44.35807528,27.45834773,67.80603003,43.36099128,33.00839559,55.93251954,,,,7.344824658,173,23554,6.250327969,8.439321348,,,,,,,13.79030623,10.70871238,17.48249912,7.5928009,5.003703637,11.04712667,4.857214639,3.688286716,6.27907627,,,,,,,0.108,,,0.093,0.126,0.161,,,0.139,0.185,0.096,,,0.082,0.113,435,1049,241162,,,0.088,24970,,,,0.084756582,22723.23965,268100,,,33.4684291,283,845573,29.56902556,37.36783265,,,,,,,35.045284,26.09351582,46.07807634,59.4340054,44.388158,77.93979077,32.72245225,27.88801887,37.55688563,,,,0.368,,,0.353,0.381,0.078189009,13246,169410,0.067465605,0.088912413,0.043465228,2900,66720,0.031550334,0.055380121,0.002794321,807,288800,,,357.8686493,0.786447102,3880.33,4934,,,0.051597232,701,13586,0.034737969,0.068456496,2.895982004,,,,,,,2.340563094,,3.342836727,2.890630492,,,,,,3.50657582,2.246608783,2.350125791,3.401842346,0.156321502,,,,,953.7458091,,,,,0.824139368,49436,59985,0.782659622,0.865619115,67813,,,62608.57447,73017.42553,88716,71005.70213,106426.2979,93457,72359.29787,114554.7021,50355,43126.23404,57583.76596,53333,42430.87234,64235.12766,80108,77570.12766,82645.87234,,,,,,0.5754486,35725,62082,,,57.77414553,,,,,0.344978102,,67813,,,7.306408929,127,17382,,,7.043448308,137,1945070,5.863994004,8.222902612,,,,,,,25.59866649,20.47562895,31.61414487,9.062316755,5.279133466,14.50964701,2.448189209,1.663425789,3.475009161,,,,13.9568905,198,1398380,11.95168148,15.96209951,14.15924141,,,,14.65497107,7.315708755,26.22179136,12.46324557,8.213357362,18.13336795,8.548764894,3.909039673,16.22821866,15.00330396,12.40701925,17.59958868,,,,12.29994708,172,1398380,10.46173722,14.13815694,,,,,,,26.90141253,20.76194225,34.28805859,10.74529356,6.014059237,17.72272764,9.666226316,7.742251024,11.92325445,,,,9.819698006,191,1945070,8.42706232,11.21233369,,,,,,,9.227426292,6.26958848,13.09759507,11.19462658,6.929650293,17.11217588,10.34557375,8.573935681,12.11721183,,,,18.67383513,,27900,,,390,131,0.717643049,147368,205350,,,0.675,,,,,187.1185828,,,,,0.633397508,74682,117907,0.619645903,0.647149113,0.120583247,13794,114394,0.109862964,0.13130353,0.875291543,103203,117907,0.865265092,0.885317995,288800,,,,,0.220661357,63727,288800,,,0.182392659,52675,288800,,,0.168369114,48625,288800,,,0.005304709,1532,288800,,,0.068777701,19863,288800,,,0.001180748,341,288800,,,0.111042244,32069,288800,,,0.621426593,179468,288800,,,0.027069543,7279,268900,0.021966719,0.032172366,0.510439751,147415,288800,,,0.148264147,42463,286401,, -42,045,42045,PA,Delaware County,2024,1,7764.256282,7523,1584461,7496.740021,8031.772542,0,,,,2,2502.990741,1955.006079,3050.975402,,11937.10781,11256.57841,12617.63722,,7960.981895,6719.212823,9202.750967,,6865.400657,6551.583235,7179.21808,,,,,2,,0.145,,,0.121,0.171,3.294172706,,,2.622565656,4.059005038,4.81860061,,,4.010250834,5.749297052,0.087274825,3934,45076,0.084669284,0.089880366,0,,,,0.095192614,0.084928965,0.105456263,0.128310917,0.122356554,0.13426528,0.075367047,0.066021252,0.084712843,0.062407681,0.059370739,0.065444623,,,,0.113468635,0.094587574,0.132349696,0.157,,,0.125,0.193,0.328,,,0.272,0.386,9,0.023848902,0.075,,,0.227,,,0.186,0.271,0.977228993,563695,576830,,,0.167633365,,,0.135643935,0.201451187,0.248062016,32,129,0.203229414,0.294721201,478.9,2748,573849,,,9.71314925,1304,134251,9.1859469,10.2403516,,,,,,,20.39736657,18.87979061,21.91494252,27.34375,23.64542989,31.04207011,3.149427032,2.758236848,3.540617216,,,,17.19380174,13.65436043,21.37032566,0.054559452,24876,455943,0.048602005,0.060516898,0.001005491,577,573849,,,994.5389948,0.000843211,485,575182,,,1185.942268,0.003506716,2017,575182,,,285.1670798,2787,,,,,,2290,4104,4657,2598,0.44,,,,,,0.37,0.37,0.34,0.45,0.57,,,,,,0.55,0.38,0.37,0.59,0.935027268,366224,391672,0.931121021,0.938933514,0.7207088,105666,146614,0.701568537,0.739849063,0.041384547,12481,301586,,,0.128,15741,,0.101787234,0.154212766,0.126865672,0,0.292065246,0.111544969,0.072682934,0.150407004,0.275954767,0.241939237,0.309970297,0.22698279,0.166545434,0.287420145,0.047687381,0.039611478,0.055763284,4.978558497,176002,35352,4.795361109,5.161755886,0.27131931,34091,125649,0.251802948,0.290835672,7.85921035,451,573849,,,85.80102341,2434,2836796,82.39232755,89.20971926,,,,21.12390598,14.87317924,29.11652183,89.08950526,81.67749303,96.50151748,59.82241289,46.63450566,75.5820198,94.55057569,90.13194882,98.96920256,,,,10.8,,,,,0,,,,,0.160810134,33705,209595,0.152272631,0.169347637,0.144680954,0.136189244,0.153172664,0.016150194,0.013571138,0.018729251,0.006918104,0.005392752,0.008443457,0.678413688,189850,279844,0.668636934,0.688190441,,,,0.555765447,0.501268819,0.610262074,0.615711401,0.589367038,0.642055763,0.586247509,0.538455685,0.634039333,0.715071314,0.701833435,0.728309193,0.458,,279844,0.443310333,0.472689667,77.60580128,,,77.37256454,77.83903801,,,,88.50523398,86.57111041,90.43935754,73.18628078,72.62460737,73.7479542,79.21787222,77.2826612,81.15308324,78.40343906,78.13310727,78.67377086,,,,372.0373972,7523,1584461,363.2895525,380.7852419,,,,138.3552781,115.8338801,160.8766761,573.1435847,548.2695198,598.0176497,359.3964037,305.889652,412.9031554,340.8921362,330.7664224,351.0178501,,,,50.99340427,290,568701,45.12431009,56.86249844,,,,,,,101.0827518,85.22028125,116.9452223,52.2293694,31.44549223,81.56263008,29.69756384,23.96976683,36.38152206,,,,6.505864129,294,45190,5.762181915,7.249546344,,,,,,,12.84510802,10.81633495,14.87388109,7.324729683,4.53412312,11.19662739,3.641218595,2.927969743,4.475675842,,,,,,,0.101,,,0.085,0.118,0.152,,,0.13,0.175,0.09,,,0.076,0.106,296.5,1438,484967,,,0.075,43110,,,,0.023848902,13331.03526,558979,,,37.07502098,633,1707349,34.1867654,39.96327657,,,,,,,28.43055442,23.06852093,33.79258792,35.44842255,23.15608652,51.94015227,44.02385227,40.11783461,47.92986993,,,,0.377,,,0.361,0.392,0.064560171,21468,332527,0.056219746,0.072900597,0.028785702,3727,129474,0.021636766,0.035934638,0.001107476,637,575182,,,902.9544741,0.885469488,5064,5719,,,0.062322504,1997,32043,0.046737822,0.077907186,3.087735938,,,,,,3.531042607,2.427850241,2.596999823,3.53836483,2.997344024,,,,,,3.724420503,2.161347222,2.465388374,3.561441382,0.284439436,,,,,1487.898333,,,,,0.811241728,58106,71626,0.784642231,0.837841225,83856,,,78961.3617,88750.6383,,,,100787,89720.44681,111853.5532,53529,50145.17021,56912.82979,70825,58098.70213,83551.29787,101230,99211.61702,103248.383,,,,,,0.540674235,40769,75404,,,73.61158034,,,,,0.299585003,,83856,,,7.396095341,247,33396,,,8.09769299,321,3964092,7.211833459,8.983552522,,,,,,,30.40175748,26.71338725,34.09012771,6.932365323,3.460611792,12.40391648,1.409602747,0.99249042,1.942951706,,,,12.37858914,369,2836796,11.07609156,13.68108671,13.00763255,,,,8.802843432,4.812596419,14.7696755,6.51962693,4.678596847,8.844610102,,,,14.68454473,12.92340544,16.44568401,,,,12.23210975,347,2836796,10.9450678,13.5191517,,,,,,,32.10432622,27.65489361,36.55375883,,,,7.417839366,6.180200462,8.65547827,,,,7.139087589,283,3964092,6.307313162,7.970862017,,,,,,,10.94929197,8.848142453,13.39916037,10.7136555,6.241099139,17.1536003,6.095579448,5.151059627,7.040099269,,,,9.253996448,,56300,,,398,123,0.783670885,327931,418455,,,0.717,,,,,305.1849066,,,,,0.688722299,148649,215833,0.680910758,0.696533841,0.151937006,32262,212338,0.14363807,0.160235942,0.909453142,196290,215833,0.90268864,0.916217644,575182,,,,,0.2170739,124857,575182,,,0.175869551,101157,575182,,,0.227107246,130628,575182,,,0.002454875,1412,575182,,,0.06721177,38659,575182,,,0.000657183,378,575182,,,0.046734773,26881,575182,,,0.636610673,366167,575182,,,0.017958949,9740,542348,0.01592361,0.019994288,0.514569302,295971,575182,,,0.007848066,4527,576830,, -42,047,42047,PA,Elk County,2024,1,8691.087911,489,81336,7337.489605,10044.68622,0,,,,2,,,,2,,,,2,,,,2,8866.144231,7467.615561,10264.6729,,,,,2,,0.153,,,0.127,0.182,3.768157364,,,2.976687306,4.670514493,5.134311544,,,4.129749497,6.232699654,0.072717622,137,1884,0.06099185,0.084443395,0,,,,,,,,,,,,,0.073359073,0.061357455,0.085360692,,,,,,,0.199,,,0.156,0.243,0.348,,,0.276,0.428,8.3,0.047173829,0.099,,,0.246,,,0.197,0.297,0.755695386,23419,30990,,,0.170875539,,,0.13724692,0.209549814,0.473684211,9,19,0.359759274,0.575810986,175.4,54,30783,,,13.03505373,74,5677,10.23532081,16.36431628,,,,,,,,,,,,,12.6419934,9.836225459,15.99925176,,,,,,,0.060715194,1433,23602,0.051183279,0.070247109,0.00035734,11,30783,,,2798.454546,0.000328116,10,30477,,,3047.7,0.001115595,34,30477,,,896.3823529,2361,,,,,,,,,2369,0.54,,,,,,,,,0.54,0.5,,,,,,,,,0.5,0.931429074,21163,22721,0.919607839,0.94325031,0.560846561,3498,6237,0.495763834,0.625929288,0.048911931,717,14659,,,0.143,813,,0.095340426,0.190659575,,,,,,,,,,0.317073171,0,0.759355001,0.109547927,0.074771996,0.144323859,3.780215115,106844,28264,3.420700967,4.139729262,0.222860037,1320,5923,0.171720993,0.273999082,17.54214989,54,30783,,,120.7969947,182,150666,103.2470195,138.3469699,,,,,,,,,,,,,120.835609,103.0337903,138.6374276,,,,7.8,,,,,1,,,,,0.065775589,935,14215,0.050550025,0.081001153,0.056939502,0.042007002,0.071872002,0.004502286,0.000788142,0.008216431,0.005979599,0.001280973,0.010678225,0.834956051,12349,14790,0.811743797,0.858168306,,,,,,,,,,,,,0.829596729,0.80212784,0.857065618,0.183,,14790,0.159682094,0.206317907,77.20657896,,,76.14365038,78.26950754,,,,,,,,,,,,,77.00963449,75.92470871,78.09456028,,,,400.018753,489,81336,360.4346403,439.6028656,,,,,,,,,,,,,404.6655357,364.250445,445.0806263,,,,50.91849125,13,25531,27.1119521,87.07217077,,,,,,,,,,,,,49.40304652,25.52727505,86.29718011,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.115,,,0.098,0.134,0.17,,,0.145,0.196,0.084,,,0.071,0.099,60.1,16,26634,,,0.099,3060,,,,0.047173829,1507.015124,31946,,,33.22259136,30,90300,22.41514288,47.42731494,,,,,,,,,,,,,34.1938793,23.07046677,48.81388886,,,,0.346,,,0.325,0.364,0.067095536,1189,17721,0.055180643,0.07901043,0.042346856,262,6187,0.029240473,0.055453239,0.00121403,37,30477,,,823.7027027,0.878518519,237.2,270,,,,,,,,3.347447027,,,,,,,,,3.390799373,3.410267433,,,,,,,,,3.409991953,0.042642323,,,,,4646.743667,,,,,0.754323051,40176,53261,0.693596807,0.815049295,57570,,,50297.14894,64842.85106,,,,,,,,,,49615,7195.595745,92034.40426,62442,57778.51064,67105.48936,,,,,,0.633489828,2024,3195,,,66.81686731,,,,,0.292565572,,57570,,,3.870967742,6,1550,,,,,,,,,,,,,,,,,,,,,,,,,,25.14240454,37,150666,17.08304406,35.68763632,24.55763079,,,,,,,,,,,,,25.16450316,16.97838461,35.92389299,,,,16.59299377,25,150666,10.73811069,24.49453208,,,,,,,,,,,,,17.06717641,11.04497669,25.19451918,,,,19.33798074,41,212018,13.87726885,26.23415444,,,,,,,,,,,,,19.38735944,13.85061382,26.40008093,,,,23.84615385,,2600,,,47,15,0.697298412,16906,24245,,,0.635,,,,,36.1466872,,,,,0.790952911,10666,13485,0.766414341,0.81549148,0.067000385,870,12985,0.051122973,0.082877798,0.835595106,11268,13485,0.806630266,0.864559946,30477,,,,,0.190044952,5792,30477,,,0.240443613,7328,30477,,,0.005348295,163,30477,,,0.002231191,68,30477,,,0.003740526,114,30477,,,0.00019687,6,30477,,,0.008990386,274,30477,,,0.96997736,29562,30477,,,0.002104834,62,29456,0,0.006020322,0.489877613,14930,30477,,,0.559180381,17329,30990,, -42,049,42049,PA,Erie County,2024,1,8428.662715,4154,744710,8016.724104,8840.601327,0,,,,2,5470.500674,3428.333648,8282.403763,1,17099.54015,15027.44525,19171.63505,,6305.881029,4812.051544,8116.918857,,7936.203766,7492.412028,8379.995505,,,,,2,,0.165,,,0.139,0.195,3.927098845,,,3.183195766,4.803914546,5.147215727,,,4.282113108,6.095329758,0.091869006,1801,19604,0.087825646,0.095912367,0,,,,0.091644205,0.070883857,0.112404552,0.152066116,0.137759214,0.166373018,0.124227866,0.107291065,0.141164666,0.075574322,0.071191696,0.079956948,,,,0.125,0.103991423,0.146008577,0.197,,,0.159,0.24,0.375,,,0.318,0.44,6.9,0.137429495,0.117,,,0.251,,,0.209,0.298,0.849303741,230056,270876,,,0.182405737,,,0.15102352,0.218953211,0.272727273,30,110,0.223887073,0.323027207,440.1,1184,269011,,,18.03542175,1167,64706,17.00064433,19.07019918,,,,6.877579092,3.298066504,12.64811282,47.99146818,42.26695941,53.71597696,38.83715648,33.01605138,44.65826159,11.44962561,10.51619199,12.38305923,,,,51.83752418,43.0604873,60.61456106,0.061994506,12931,208583,0.05484557,0.069143442,0.000810376,218,269011,,,1233.995413,0.000698572,187,267689,,,1431.491979,0.002633653,705,267689,,,379.7007092,3055,,,,,,1739,6502,7201,2913,0.51,,,,,,0.31,0.41,0.36,0.52,0.54,,,,,,0.5,0.39,0.35,0.55,0.92515695,172712,186684,0.919086505,0.931227395,0.640170979,42234,65973,0.613206792,0.667135166,0.049563816,6244,125979,,,0.196,10610,,0.142382979,0.249617021,,,,0.125,0.044129923,0.205870077,0.478575621,0.385776088,0.571375155,0.360298693,0.293646993,0.426950393,0.158543145,0.135728496,0.181357793,4.780752385,116789,24429,4.542712066,5.018792703,0.288849074,16283,56372,0.263721219,0.313976929,12.89910078,347,269011,,,88.0506025,1192,1353767,83.05198074,93.04922427,,,,,,,116.2320598,94.98821672,137.475903,44.32187531,29.20839511,64.48600158,90.78893027,85.24701811,96.33084243,,,,7.5,,,,,1,,,,,0.142585379,15740,110390,0.133811976,0.151358782,0.125263254,0.116210754,0.134315755,0.01476583,0.011578866,0.017952795,0.010508198,0.007698238,0.013318158,0.768629916,94171,122518,0.75924042,0.778019411,,,,0.648246036,0.569111537,0.727380534,0.600548974,0.553626292,0.647471656,0.648529706,0.575777049,0.721282363,0.796088926,0.787230837,0.804947016,0.199,,122518,0.186732866,0.211267134,76.60099585,,,76.26193192,76.94005979,,,,80.11214814,76.92093822,83.30335806,69.00102798,67.58085764,70.42119831,80.27871138,77.02826848,83.52915428,77.01084245,76.64795113,77.37373377,,,,411.3348965,4154,744710,398.0739441,424.5958489,,,,222.5286733,149.030945,319.5882945,795.7619121,717.4186147,874.1052095,340.9996278,268.2178389,427.4459862,395.0319742,381.1243906,408.9395578,,,,50.78409885,133,261893,42.15316076,59.41503694,,,,,,,136.5515205,96.14487218,188.2182837,62.0199418,33.02300697,106.0559893,39.93051054,31.51253448,49.90628698,,,,7.302896319,147,20129,6.122324155,8.483468482,,,,,,,17.52241239,12.68105673,23.6025745,,,,5.686940842,4.52299282,7.058993074,,,,,,,0.121,,,0.103,0.141,0.171,,,0.148,0.196,0.096,,,0.082,0.112,135.4,311,229716,,,0.117,31820,,,,0.137429495,38558.04377,280566,,,29.36202635,237,807165,25.62377996,33.10027274,,,,,,,35.56729841,22.0167183,54.36839377,29.48034197,14.7164805,52.7484751,29.787089,25.66909124,33.90508676,,,,0.34,,,0.324,0.356,0.069904346,10699,153052,0.060372431,0.079436261,0.041359114,2415,58391,0.02944422,0.053274007,0.002077037,556,267689,,,481.455036,0.8531423,2404.155,2818,,,0.056129608,880,15678,0.036565374,0.075693843,3.011813628,,,,,,,2.220671372,2.558865132,3.224495145,3.108741392,,,,,,2.382265254,2.261076841,2.559444905,3.357963749,0.22547329,,,,,2472.769231,,,,,0.81168273,44382,54679,0.771678132,0.851687329,56489,,,53526.95745,59451.04255,46207,36261.6383,56152.3617,64769,32615.46809,96922.53192,26626,23459.02128,29792.97872,36273,23174.95745,49371.04255,63562,61491.19149,65632.80851,,,,,,0.643356048,22659,35220,,,67.38624688,,,,,0.392040928,,56489,,,5.710446759,85,14885,,,4.612113401,88,1908019,3.699049814,5.682252705,,,,,,,29.50446885,21.17291624,40.02614353,,,,2.49042742,1.779197861,3.391255298,,,,16.46726297,233,1353767,14.26155273,18.67297322,17.21123354,,,,,,,,,,,,,17.86228041,15.34675603,20.37780478,,,,13.0007601,176,1353767,11.08002054,14.92149966,,,,,,,27.28926622,17.9837984,39.70444961,,,,12.41633285,10.36687089,14.46579481,,,,9.695920219,185,1908019,8.298718084,11.09312235,,,,,,,13.67280264,8.231920356,21.351775,,,,9.650406251,8.131133256,11.16967925,,,,11.1026616,,26300,,,212,80,0.655429118,137083,209150,,,0.721,,,,,99.5015626,,,,,0.679695636,74409,109474,0.666581342,0.692809929,0.131248357,13979,106508,0.121191336,0.141305378,0.861747995,94339,109474,0.851045204,0.872450786,267689,,,,,0.205888176,55114,267689,,,0.197852732,52963,267689,,,0.073693727,19727,267689,,,0.002958657,792,267689,,,0.022417806,6001,267689,,,0.00076955,206,267689,,,0.049344575,13209,267689,,,0.829257086,221983,267689,,,0.012148325,3112,256167,0.009924686,0.014371964,0.502093848,134405,267689,,,0.239825603,64963,270876,, -42,051,42051,PA,Fayette County,2024,1,11770.54618,2888,349208,11056.71133,12484.38103,0,,,,2,,,,2,13102.22608,10021.65556,16182.79661,,,,,2,11873.05218,11111.02604,12635.07831,,,,,2,,0.183,,,0.151,0.216,4.275481794,,,3.440627641,5.322066551,5.979658834,,,4.960748361,7.179759767,0.095488292,836,8755,0.089332129,0.101644456,0,,,,,,,0.174019608,0.137231288,0.210807928,0.083969466,0.036475756,0.131463175,0.090862685,0.084498887,0.097226483,,,,0.086466165,0.052690752,0.120241579,0.224,,,0.175,0.273,0.374,,,0.305,0.448,7.3,0.063502188,0.138,,,0.287,,,0.234,0.343,0.636991087,82047,128804,,,0.165508669,,,0.133131448,0.203679401,0.352941177,36,102,0.303166023,0.402509737,334,424,126931,,,25.39385961,598,23549,23.35853261,27.42918661,,,,,,,36.20273532,26.40652356,48.4421082,,,,24.50192411,22.36064998,26.64319823,,,,45.45454546,32.47339368,61.89618973,0.066775716,6450,96592,0.058435291,0.075116142,0.00037028,47,126931,,,2700.659575,0.000667966,84,125755,,,1497.083333,0.004580335,576,125755,,,218.3246528,3299,,,,,,,3599,,3263,0.43,,,,,,,0.46,,0.43,0.47,,,,,,0.39,0.31,,0.48,0.898377807,85009,94625,0.889459326,0.907296288,0.521112255,15686,30101,0.488006843,0.554217668,0.060988662,3362,55125,,,0.231,5445,,0.173808511,0.288191489,,,,0.166666667,0,0.694800535,0.743362832,0.576905238,0.909820426,0.321666667,0.22338368,0.419949654,0.169685898,0.142204285,0.197167512,5.143678948,112662,21903,4.747802704,5.539555193,0.255371595,6216,24341,0.220216778,0.290526413,13.55066926,172,126931,,,128.5828346,831,646276,119.8402759,137.3253932,,,,,,,136.1447784,97.6998435,184.6957648,,,,131.1289254,121.9027074,140.3551434,,,,7.3,,,,,1,,,,,0.125756618,6960,55345,0.113289237,0.138223998,0.103940031,0.092148863,0.115731199,0.013370675,0.008983585,0.017757765,0.012918963,0.008036019,0.017801907,0.815135521,43397,53239,0.795736091,0.834534951,,,,,,,0.67357513,0.511859238,0.835291021,,,,0.804713064,0.782301022,0.827125107,0.382,,53239,0.357992155,0.406007845,73.38516881,,,72.87501299,73.89532463,,,,,,,71.58903469,69.19793095,73.98013842,,,,73.27610387,72.73730161,73.81490614,,,,555.7167835,2888,349208,533.7576496,577.6759175,,,,,,,677.6813386,558.3604189,797.0022582,,,,556.8310763,533.9478348,579.7143179,,,,66.72783385,72,107901,52.21042038,84.03266332,,,,,,,,,,,,,65.14101428,49.82771436,83.67635799,,,,7.359402461,67,9104,5.703435822,9.346180978,,,,,,,,,,,,,6.721251375,5.063366366,8.748632528,,,,,,,0.129,,,0.109,0.151,0.185,,,0.157,0.213,0.095,,,0.08,0.111,112.9,124,109869,,,0.138,17830,,,,0.063502188,8674.779943,136606,,,54.9005935,211,384331,47.49274856,62.30843844,,,,,,,61.06022759,30.48104561,109.2536137,,,,55.48189583,47.69453931,63.26925236,,,,0.389,,,0.37,0.406,0.075126315,5442,72438,0.064402911,0.085849719,0.042526432,1082,25443,0.030611538,0.054441325,0.001343883,169,125755,,,744.112426,0.835952191,1049.12,1255,,,0.07768595,423,5445,0.048608652,0.106763249,2.938982448,,,,,,,2.473200988,,3.006635554,2.873518475,,,,,,,2.255195825,2.586469612,2.961165523,0.08851249,,,,,1155.465167,,,,,0.716117309,42170,58887,0.676780518,0.755454101,51494,,,46958,56030,,,,120536,93292.59575,147779.4043,27921,23649.51064,32192.48936,42500,15590.21277,69409.78723,57220,54007.74468,60432.25532,,,,,,0.786496465,12569,15981,,,57.86391969,,,,,0.375558318,,51494,,,5.917159763,39,6591,,,5.149911739,47,912637,3.78396144,6.848290869,,,,,,,40.04051158,23.32507353,64.10873782,,,,3.3455006,2.223060853,4.835179844,,,,17.53052558,123,646276,14.25112801,20.80992314,19.03211631,,,,,,,,,,,,,18.48501943,14.93672411,22.03331476,,,,17.94898774,116,646276,14.68260526,21.21537022,,,,,,,39.8472522,20.58965668,69.60513049,,,,17.23601855,13.89104307,20.58099403,,,,15.34016263,140,912637,12.7990611,17.88126416,,,,,,,,,,,,,15.53268136,12.86256106,18.20280166,,,,20.53571429,,11200,,,73,157,0.596314956,62139,104205,,,0.628,,,,,47.11940177,,,,,0.734841728,40370,54937,0.720395735,0.74928772,0.108319342,5613,51819,0.09619072,0.120447965,0.816298669,44845,54937,0.80621792,0.826379419,125755,,,,,0.191093794,24031,125755,,,0.228356725,28717,125755,,,0.046837104,5890,125755,,,0.0022186,279,125755,,,0.004564431,574,125755,,,0.001558586,196,125755,,,0.014846328,1867,125755,,,0.910794799,114537,125755,,,0.002196811,268,121995,0.000884289,0.003509334,0.499797225,62852,125755,,,0.551054315,70978,128804,, -42,053,42053,PA,Forest County,2024,1,11955.54457,157,19122,6536.461785,17374.62735,1,,,,2,,,,2,,,,2,,,,2,14421.86944,8287.544194,20556.19469,1,,,,2,,0.206,,,0.176,0.24,4.141521988,,,3.322194945,5.079264304,4.856697031,,,3.810689266,6.008340861,0.098765432,16,162,0.052822367,0.144708498,1,,,,,,,,,,,,,0.099378882,0.053166192,0.145591572,,,,,,,0.234,,,0.193,0.281,0.401,,,0.319,0.49,6.4,0.150067318,0.135,,,0.3,,,0.248,0.359,0.882690377,6155,6973,,,0.173833316,,,0.138776317,0.212666696,0.5,3,6,0.280972677,0.671334317,128,9,7032,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.051905388,158,3044,0.038799005,0.065011771,,0,7032,,,,,0,6626,,,,0.000452762,3,6626,,,2208.666667,3119,,,,,,,,,3131,0.48,,,,,,,,,0.48,0.39,,,,,,,,,0.39,0.857942617,4904,5716,0.832168786,0.883716448,0.323877069,685,2115,0.24532113,0.402433007,0.06497342,110,1693,,,0.286,156,,0.181148936,0.390851064,,,,,,,,,,0.7875,0.553654353,1,0.230769231,0.086688164,0.374850297,3.959600806,82526,20842,2.563965136,5.355236476,0.191458027,130,679,0.049690307,0.333225746,7.110352674,5,7032,,,80.96035734,29,35820,54.22042194,116.272578,,,,,,,,,,,,,108.5229255,72.11269585,156.845843,,,,7.5,,,,,0,,,,,0.124413146,265,2130,0.095064472,0.153761819,0.091425865,0.057999785,0.124851944,0.01314554,0,0.031431675,0.025821596,0.009533965,0.042109227,0.764631844,1215,1589,0.6899409,0.839322788,,,,,,,,,,,,,0.75862069,0.701608232,0.815633148,0.406,,1589,0.317717151,0.494282849,73.57927609,,,69.8511927,77.30735948,,,,,,,,,,,,,71.96890839,67.876813,76.06100378,,,,503.5891097,157,19122,403.1406061,604.0376133,,,,,,,,,,,,,554.7892048,436.2756252,673.3027843,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.132,,,0.114,0.153,0.164,,,0.142,0.189,0.109,,,0.093,0.129,115.9,8,6903,,,0.135,960,,,,0.150067318,1157.919428,7716,,,,,,,,,,,,,,,,,,,,,,,,,,0.398,,,0.382,0.413,0.062422998,152,2435,0.045742147,0.079103849,0.009230769,6,650,0.002081833,0.016379705,0.000150921,1,6626,,,6626,,,,,,,,,,,3.277884792,,,,,,,,,3.376643936,3.26373983,,,,,,,,,3.357058199,,,,,,10344.36,,,,,1.001824583,38984,38913,0.715048916,1.28860025,43362,,,37819.19149,48904.80851,,,,,,,,,,,,,47819,42052.19149,53585.80851,,,,,,0.852331606,329,386,,,,,,,,0.417208616,,43362,,,,,170,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,200,,,16,-888,0.392,2646,6750,,,0.191,,,,,1.518985701,,,,,0.8329718,1536,1844,0.800437353,0.865506248,0.099491238,176,1769,0.051049759,0.147932717,0.673535792,1242,1844,0.64560682,0.701464763,6626,,,,,0.035466345,235,6626,,,0.254150317,1684,6626,,,0.223966194,1484,6626,,,0.005734983,38,6626,,,0.001961968,13,6626,,,0.000150921,1,6626,,,0.07591307,503,6626,,,0.687292484,4554,6626,,,0.002694208,18,6681,0,0.012974446,0.287503773,1905,6626,,,1,6973,6973,, -42,055,42055,PA,Franklin County,2024,1,7109.539096,2205,425167,6620.968433,7598.10976,0,,,,2,,,,2,13739.65709,10290.17957,17189.1346,,6717.228637,5046.18889,8764.526279,,7034.678087,6501.636359,7567.719816,,,,,2,,0.161,,,0.134,0.188,3.815796213,,,3.00584203,4.695849432,5.038332274,,,4.064161144,6.069851685,0.074299334,904,12167,0.069639268,0.0789594,0,,,,0.105263158,0.043549665,0.166976651,0.131067961,0.098480642,0.163655281,0.075457876,0.061445706,0.089470045,0.07011703,0.065090117,0.075143942,,,,0.117647059,0.079357239,0.155936879,0.187,,,0.147,0.228,0.378,,,0.308,0.451,8.4,0.06276077,0.087,,,0.254,,,0.206,0.304,0.729818126,113802,155932,,,0.178164004,,,0.143727566,0.217305765,0.180851064,17,94,0.130370221,0.236617645,323.8,506,156289,,,17.26221837,557,32267,15.82862798,18.69580875,,,,,,,13.64985163,8.652835037,20.48147946,37.58931345,30.89158124,44.28704567,14.31293999,12.85055738,15.77532259,,,,29.66101695,20.65998509,41.25129438,0.091156166,11303,123996,0.079241273,0.10307106,0.000614247,96,156289,,,1628.010417,0.000465259,73,156902,,,2149.342466,0.001332042,209,156902,,,750.7272727,2394,,,,,,,2621,1854,2371,0.48,,,,,,0.3,0.4,0.33,0.48,0.46,,,,,,0.52,0.31,0.27,0.47,0.902120822,99365,110146,0.891299189,0.912942454,0.550896441,20587,37370,0.517228581,0.584564301,0.036956383,2885,78065,,,0.118,3898,,0.078680851,0.157319149,,,,0.072580645,0,0.602769871,0.165413534,0.066290043,0.264537024,0.335381464,0.248749946,0.422012983,0.129494468,0.102768488,0.156220449,3.63291103,127032,34967,3.39578351,3.870038551,0.197717404,6739,34084,0.166492145,0.228942663,14.90827889,233,156289,,,68.16817049,529,776022,62.35905683,73.97728415,,,,,,,77.97126202,48.26544011,119.1873565,22.88758037,11.42539766,40.95220348,72.75668129,66.33416089,79.1792017,,,,9.1,,,,,1,,,,,0.103627364,6385,61615,0.090634715,0.116620012,0.08456321,0.073535546,0.095590874,0.014363386,0.00983787,0.018888901,0.009169845,0.005733888,0.012605802,0.784741986,58457,74492,0.769673568,0.799810404,,,,,,,0.666370107,0.551289919,0.781450295,0.754241645,0.6806503,0.827832991,0.781052739,0.766274023,0.795831454,0.302,,74492,0.280094735,0.323905265,77.94687073,,,77.51855926,78.3751822,,,,,,,70.98911982,68.37664033,73.60159931,80.61842831,76.68677095,84.55008567,78.02310126,77.56740477,78.47879775,,,,366.1592892,2205,425167,350.0634784,382.2551,,,,,,,692.940357,565.160478,820.720236,363.9453382,273.4069393,474.8697198,361.850257,344.9377553,378.7627587,,,,54.19839256,82,151296,43.10559001,67.27449578,,,,,,,,,,,,,58.13512625,45.23259827,73.573723,,,,5.592931831,69,12337,4.351634802,7.078213188,,,,,,,,,,,,,5.119621936,3.823578537,6.713703036,,,,,,,0.116,,,0.098,0.134,0.169,,,0.144,0.192,0.087,,,0.074,0.102,124.6,165,132413,,,0.087,13550,,,,0.06276077,9390.140852,149618,,,17.13234523,80,466953,13.58488426,21.32268665,,,,,,,,,,,,,16.74105769,13.00008635,21.22327971,,,,0.365,,,0.347,0.382,0.094674293,8524,90035,0.08156791,0.107780676,0.081989285,2923,35651,0.059350987,0.104627583,0.001096226,172,156902,,,912.2209302,0.872157957,1485.285,1703,,,0.059268427,431,7272,0.033552035,0.084984819,3.184133313,,,,,,,2.793628648,2.697685934,3.276688472,3.159651618,,,,,,,2.637345433,2.4962374,3.307801228,0.106421269,,,,,4046.873333,,,,,0.787607492,46802,59423,0.748591331,0.826623653,73709,,,69498.2766,77919.7234,153548,152629.3617,154466.6383,74000,38547.23404,109452.766,54950,24458.59575,85441.40426,53799,33958.31915,73639.68085,72884,69848.08511,75919.91489,,,,,,0.45989148,9408,20457,,,45.17292011,,,,,0.250512149,,73709,,,4.652708541,42,9027,,,1.845851127,20,1083511,1.127493822,2.850767358,,,,,,,,,,,,,1.684559851,0.962871506,2.73561966,,,,12.38740767,99,776022,9.97356794,15.20899164,12.75737028,,,,,,,,,,,,,13.53933157,10.81473717,16.74159315,,,,9.664674455,75,776022,7.601879547,12.11475312,,,,,,,,,,,,,10.62572222,8.313973222,13.38133858,,,,12.09032488,131,1083511,10.01990516,14.16074459,,,,,,,,,,,,,12.73948387,10.46953947,15.00942827,,,,15.375,,16000,,,174,72,0.687047117,80783,117580,,,0.736,,,,,56.98650858,,,,,0.729209282,45631,62576,0.715153483,0.74326508,0.095157915,5821,61172,0.082302962,0.108012869,0.864628612,54105,62576,0.849500189,0.879757034,156902,,,,,0.215159781,33759,156902,,,0.205147162,32188,156902,,,0.035499866,5570,156902,,,0.003377905,530,156902,,,0.011198073,1757,156902,,,0.000732942,115,156902,,,0.069603957,10921,156902,,,0.86347529,135481,156902,,,0.009280317,1367,147301,0.006495523,0.012065111,0.505991001,79391,156902,,,0.444815689,69361,155932,, -42,057,42057,PA,Fulton County,2024,1,9233.453175,245,39381,7331.87683,11135.02952,0,,,,2,,,,2,,,,2,,,,2,8701.925966,6838.660038,10565.19189,,,,,2,,0.166,,,0.138,0.195,3.920842757,,,3.079655684,4.867662355,5.275247564,,,4.194694688,6.457496362,0.072507553,72,993,0.05637778,0.088637326,0,,,,,,,,,,,,,0.072327044,0.055889774,0.088764314,,,,,,,0.211,,,0.169,0.257,0.374,,,0.291,0.457,8.6,0.008657483,0.103,,,0.259,,,0.21,0.311,0.48200055,7016,14556,,,0.176506433,,,0.14010136,0.216919255,0.125,3,24,0.040232942,0.245512437,199.7,29,14523,,,18.16935207,53,2917,13.61009151,23.76595987,,,,,,,,,,,,,17.48384645,12.80037302,23.32100103,,,,,,,0.062672238,705,11249,0.053140323,0.072204152,0.000206569,3,14523,,,4841,0.000275236,4,14533,,,3633.25,0.00061928,9,14533,,,1614.777778,2306,,,,,,,,,2327,0.41,,,,,,,,,0.41,0.33,,,,,,,,,0.33,0.894035353,9458,10579,0.879877672,0.908193034,0.527465668,1690,3204,0.474970941,0.579960395,0.041337217,298,7209,,,0.172,472,,0.114808511,0.229191489,,,,,,,,,,,,,0.149627889,0.109848181,0.189407596,4.240971403,115083,27136,3.847959338,4.633983468,0.194873596,555,2848,0.147711499,0.242035692,16.52551126,24,14523,,,86.69685001,63,72667,66.62023999,110.9229324,,,,,,,,,,,,,87.69407706,67.07902036,112.6467106,,,,8.2,,,,,0,,,,,0.107615894,650,6040,0.090145579,0.125086209,0.093031066,0.07469735,0.111364782,0.011423841,0.004300034,0.018547648,0.007284768,0.002520729,0.012048807,0.80553511,5472,6793,0.787644489,0.823425731,,,,,,,,,,,,,0.796907807,0.764314148,0.829501466,0.504,,6793,0.463664961,0.544335039,76.22654365,,,74.77356455,77.67952276,,,,,,,,,,,,,76.49338455,75.05346311,77.93330599,,,,432.5784711,245,39381,373.7633565,491.3935857,,,,,,,,,,,,,420.4238412,361.8481541,478.9995283,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.121,,,0.104,0.141,0.176,,,0.152,0.201,0.088,,,0.074,0.104,63.8,8,12546,,,0.103,1500,,,,0.008657483,128.520337,14845,,,29.84800478,13,43554,15.89280546,51.0409972,,,,,,,,,,,,,28.81982804,14.8916257,50.34243971,,,,0.381,,,0.361,0.399,0.066903493,565,8445,0.0549886,0.078818387,0.051238548,151,2947,0.034557697,0.067919399,0.000963325,14,14533,,,1038.071429,0.906578947,120.575,133,,,,,,,,3.265699475,,,,,,,,,3.285377492,3.355662075,,,,,,,,,3.375012566,0.038268282,,,,,5899.358667,,,,,0.739320593,42091,56932,0.690271205,0.788369981,64405,,,57083.29787,71726.70213,,,,,,,65625,44696.48936,86553.51064,88092,59615.40426,116568.5957,62500,59856.08511,65143.91489,,,,,,0.387692308,756,1950,,,49.61857547,,,,,0.252464871,,64405,,,4.166666667,3,720,,,,,,,,,,,,,,,,,,,,,,,,,,16.36457396,12,72667,8.169136361,29.28074318,16.51368572,,,,,,,,,,,,,15.17824025,7.278556173,27.91332423,,,,,,,,,,,,,,,,,,,,,,,,,,,22.5631769,23,101936,14.30311866,33.85584376,,,,,,,,,,,,,23.53567189,14.91959707,35.31506375,,,,3.571428571,,1400,,,5,0,0.689455488,7977,11570,,,0.657,,,,,8.630278959,,,,,0.770486451,4720,6126,0.750291568,0.790681334,0.088057901,511,5803,0.069072686,0.107043116,0.799379693,4897,6126,0.779744678,0.819014708,14533,,,,,0.193353059,2810,14533,,,0.224248263,3259,14533,,,0.013486548,196,14533,,,0.003715682,54,14533,,,0.002683548,39,14533,,,0,0,14533,,,0.014243446,207,14533,,,0.952453038,13842,14533,,,0.000721813,10,13854,0,0.006372562,0.486754283,7074,14533,,,1,14556,14556,, -42,059,42059,PA,Greene County,2024,1,9918.057974,722,98964,8719.952257,11116.16369,0,,,,2,,,,2,,,,2,,,,2,10395.31096,9121.540876,11669.08104,,,,,2,,0.168,,,0.139,0.2,3.945828382,,,3.11812124,4.887904849,5.1477817,,,4.089415306,6.334313735,0.095360825,222,2328,0.083429538,0.107292111,0,,,,,,,,,,,,,0.096831772,0.084587628,0.109075915,,,,,,,0.21,,,0.167,0.258,0.373,,,0.294,0.459,7.8,0.066291825,0.114,,,0.257,,,0.208,0.312,0.715275074,25717,35954,,,0.177850906,,,0.141229775,0.219597898,0.473684211,18,38,0.396709543,0.545415415,99,35,35369,,,16.28413899,127,7799,13.45197099,19.11630699,,,,,,,,,,,,,16.29327902,13.37804151,19.20851653,,,,,,,0.069094742,1770,25617,0.059562827,0.078626657,0.000452374,16,35369,,,2210.5625,0.00037504,13,34663,,,2666.384615,0.001384762,48,34663,,,722.1458333,4229,,,,,,,,,4237,0.42,,,,,,,,,0.42,0.4,,,,,,,,,0.4,0.89423604,22837,25538,0.877631629,0.910840452,0.508365508,4345,8547,0.455229256,0.561501761,0.053324726,826,15490,,,0.175,1140,,0.107085106,0.242914894,,,,,,,,,,,,,0.175671356,0.131897676,0.219445035,4.77443877,120588,25257,4.270548569,5.27832897,0.279028956,1908,6838,0.212580381,0.34547753,13.28847296,47,35369,,,104.7097214,189,180499,89.78135885,119.6380839,,,,,,,,,,,,,109.8822775,94.04801428,125.7165407,,,,6.5,,,,,1,,,,,0.091003102,1320,14505,0.071931857,0.110074348,0.076987448,0.05919717,0.094777726,0.009238194,0.002323266,0.016153122,0.008962427,0.002673775,0.015251078,0.82426839,11351,13771,0.804284623,0.844252157,,,,,,,,,,,,,0.826925976,0.798346207,0.855505746,0.472,,13771,0.425899985,0.518100015,74.4234536,,,73.50137319,75.34553401,,,,,,,,,,,,,73.9793255,73.02288785,74.93576315,,,,501.0092908,722,98964,462.2314193,539.7871623,,,,,,,,,,,,,519.5211941,478.5252794,560.5171088,,,,75.41241163,24,31825,48.31815508,112.2076908,,,,,,,,,,,,,76.59517783,48.55477234,114.9303746,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.121,,,0.103,0.142,0.172,,,0.146,0.199,0.092,,,0.078,0.109,101.1,31,30649,,,0.114,4130,,,,0.066291825,2564.565549,38686,,,39.17070032,42,107223,28.23079538,52.94740753,,,,,,,,,,,,,40.06851716,28.62553611,54.5619479,,,,0.372,,,0.352,0.389,0.077243708,1464,18953,0.065328815,0.089158602,0.0465083,325,6988,0.032210428,0.060806172,0.000663532,23,34663,,,1507.086957,0.883049738,337.325,382,,,0.058678501,119,2028,0.020092405,0.097264597,2.994848919,,,,,,,,,3.005734939,3.183048114,,,,,,,,,3.180942044,0.074307767,,,,,2659.45654,,,,,0.66537598,40898,61466,0.574936575,0.755815386,63082,,,56376.29787,69787.70213,,,,,,,,,,85909,41148.31915,130669.6809,66315,61711.08511,70918.91489,,,,,,0.475667939,1994,4192,,,,,,,,0.309042199,,63082,,,2.165674066,4,1847,,,,,,,,,,,,,,,,,,,,,,,,,,18.1626761,36,180499,12.50235051,25.50715006,19.94470884,,,,,,,,,,,,,19.14279795,13.00660246,27.17167366,,,,13.85049225,25,180499,8.9633083,20.44605881,,,,,,,,,,,,,14.84895642,9.609461665,21.91998889,,,,19.59132496,50,255215,14.541059,25.82871958,,,,,,,,,,,,,20.56740863,15.21588213,27.19120495,,,,9.35483871,,3100,,,20,9,0.603449454,17669,29280,,,0.609,,,,,36.97287585,,,,,0.785197392,10959,13957,0.761147337,0.809247447,0.081478716,1091,13390,0.062143352,0.100814079,0.843734327,11776,13957,0.819343291,0.868125363,34663,,,,,0.191414477,6635,34663,,,0.209589476,7265,34663,,,0.033840118,1173,34663,,,0.002509881,87,34663,,,0.003635,126,34663,,,0.000288492,10,34663,,,0.016444047,570,34663,,,0.931685082,32295,34663,,,0.001762995,60,34033,0,0.005081733,0.476992759,16534,34663,,,0.756522223,27200,35954,, -42,061,42061,PA,Huntingdon County,2024,1,7482.107736,696,121509,6524.843578,8439.371894,0,,,,2,,,,2,7278.262537,4445.751842,11240.68619,1,,,,2,7681.610037,6645.535336,8717.684738,,,,,2,,0.168,,,0.141,0.198,3.895790132,,,3.081068191,4.824687099,5.144164444,,,4.09136017,6.300135482,0.067183463,182,2709,0.057756303,0.076610623,0,,,,,,,,,,,,,0.065840434,0.056274336,0.075406532,,,,,,,0.204,,,0.165,0.25,0.384,,,0.302,0.465,8.6,0.004651855,0.104,,,0.269,,,0.219,0.324,0.616551755,27185,44092,,,0.184649208,,,0.146686042,0.22507585,0.193548387,6,31,0.104538512,0.296792565,259.7,114,43889,,,15.74566242,157,9971,13.28264672,18.20867813,,,,,,,,,,,,,15.51064992,12.95946526,18.06183458,,,,,,,0.067578359,2031,30054,0.058046444,0.077110274,0.000318987,14,43889,,,3134.928571,0.000300363,13,43281,,,3329.307692,0.001432499,62,43281,,,698.0806452,2714,,,,,,,,,2692,0.49,,,,,,,0.27,,0.49,0.44,,,,,,,0.2,,0.44,0.900409618,28796,31981,0.889140529,0.911678707,0.465076822,4934,10609,0.430099827,0.500053817,0.056307357,1086,19287,,,0.158,1184,,0.104382979,0.211617021,,,,,,,,,,0.144385027,0.059278176,0.229491877,0.167649537,0.135650245,0.199648828,4.28385299,113762,26556,3.954319349,4.61338663,0.191459349,1493,7798,0.156192225,0.226726472,17.54425938,77,43889,,,82.93130969,186,224282,71.01290513,94.84971426,,,,,,,,,,,,,84.81304148,72.13785126,97.48823171,,,,9.4,,,,,0,,,,,0.089690107,1505,16780,0.077639525,0.10174069,0.071213942,0.059371183,0.083056702,0.014302741,0.009549426,0.019056057,0.006257449,0.003424069,0.00909083,0.774796252,13975,18037,0.757440847,0.792151657,,,,,,,,,,,,,0.770938231,0.74429678,0.797579683,0.46,,18037,0.429136056,0.490863945,77.63638486,,,76.82485666,78.44791307,,,,,,,73.80975378,70.49385055,77.12565702,,,,77.46483159,76.60757301,78.32209017,,,,383.725389,696,121509,353.2190244,414.2317535,,,,,,,605.8856275,379.705297,917.3181213,,,,388.7528293,356.352716,421.1529426,,,,56.70464978,21,37034,35.10107195,86.67908067,,,,,,,,,,,,,61.60525698,38.13462504,94.17017934,,,,9.140767825,25,2735,5.915422979,13.49357649,,,,,,,,,,,,,8.842752787,5.605546727,13.26847093,,,,,,,0.121,,,0.102,0.141,0.172,,,0.147,0.198,0.094,,,0.078,0.111,173.8,67,38539,,,0.104,4620,,,,0.004651855,213.5806213,45913,,,23.94797303,32,133623,16.38039582,33.8073925,,,,,,,,,,,,,22.38249192,14.75020321,32.56535061,,,,0.374,,,0.355,0.392,0.074325229,1666,22415,0.062410335,0.086240122,0.048146305,387,8038,0.033848433,0.062444177,0.001039717,45,43281,,,961.8,0.877983294,367.875,419,,,0.051986475,123,2366,0.022907288,0.081065662,2.862475797,,,,,,,,,2.896748,2.817145339,,,,,,,,,2.81331371,0.081769013,,,,,1969.968825,,,,,0.845787425,43679,51643,0.78470987,0.906864981,58170,,,52730.85106,63609.14894,,,,,,,36667,2196.021277,71137.97872,77917,27271.55319,128562.4468,61809,58241.68085,65376.31915,,,,,,0.513217279,2388,4653,,,58.43556534,,,,,0.279525529,,58170,,,3.558718861,7,1967,,,,,,,,,,,,,,,,,,,,,,,,,,20.97592214,50,224282,15.29998155,28.06743417,22.29336282,,,,,,,,,,,,,21.56424647,15.47487557,29.25433529,,,,12.93015044,29,224282,8.659524678,18.56985288,,,,,,,,,,,,,14.29987327,9.576849559,20.53700336,,,,13.94240519,44,315584,10.13057296,18.7170282,,,,,,,,,,,,,14.69322642,10.58958521,19.86097366,,,,13.42105263,,3800,,,45,6,0.624096386,22792,36520,,,0.582,,,,,32.84666191,,,,,0.785175322,12383,15771,0.769948969,0.800401674,0.088376688,1342,15185,0.073728078,0.103025297,0.828482658,13066,15771,0.812097292,0.844868025,43281,,,,,0.177283335,7673,43281,,,0.224532705,9718,43281,,,0.050853723,2201,43281,,,0.00196391,85,43281,,,0.007693907,333,43281,,,0.000277258,12,43281,,,0.021048497,911,43281,,,0.907026178,39257,43281,,,0.002037915,86,42200,0,0.004537571,0.469882859,20337,43281,,,0.743468203,32781,44092,, -42,063,42063,PA,Indiana County,2024,1,9313.091117,1316,229324,8505.33032,10120.85192,0,,,,2,,,,2,,,,2,,,,2,9441.402667,8598.709054,10284.09628,,,,,2,,0.165,,,0.137,0.196,3.888124962,,,3.004624647,4.802866074,5.146496349,,,4.04731177,6.242797694,0.074127907,408,5504,0.067206678,0.081049136,0,,,,,,,,,,,,,0.072252114,0.065217704,0.079286524,,,,,,,0.2,,,0.158,0.247,0.393,,,0.313,0.472,8.2,0.025342587,0.111,,,0.253,,,0.205,0.307,0.656644163,54663,83246,,,0.187256464,,,0.149655417,0.230027446,0.2,11,55,0.132529398,0.274926973,301.6,250,82886,,,8.688440425,220,25321,7.540322338,9.836558512,,,,,,,,,,,,,9.072978304,7.836971757,10.30898485,,,,,,,0.080498958,4982,61889,0.069775554,0.091222362,0.00050672,42,82886,,,1973.476191,0.00043396,36,82957,,,2304.361111,0.003833311,318,82957,,,260.8710692,3330,,,,,,,,,3388,0.48,,,,,,,0.56,,0.48,0.44,,,,,,0.75,0.27,,0.44,0.920013971,50046,54397,0.91184323,0.928184712,0.635662988,10887,17127,0.586998125,0.684327851,0.053425674,1944,36387,,,0.178,2564,,0.118425532,0.237574468,,,,,,,0.397321429,0.071801939,0.722840918,0.056074766,0,0.229356897,0.142015365,0.119454628,0.164576102,4.776809903,114610,23993,4.415742275,5.137877531,0.156778234,2328,14849,0.128482945,0.185073524,14.71901166,122,82886,,,107.8373727,453,420077,97.90675485,117.7679905,,,,,,,,,,,,,112.4659492,101.992849,122.9390495,,,,9,,,,,1,,,,,0.130409098,4415,33855,0.112703011,0.148115184,0.113375224,0.096705919,0.13004453,0.009895141,0.006275852,0.01351443,0.020676414,0.01458729,0.026765538,0.769083701,27354,35567,0.753005847,0.785161556,,,,,,,,,,,,,0.776612827,0.760867183,0.792358471,0.34,,35567,0.31397748,0.366022521,76.13592178,,,75.51192984,76.75991372,,,,,,,75.93787095,69.18440766,82.69133424,,,,75.9778041,75.33585126,76.61975695,,,,436.9553735,1316,229324,411.1385256,462.7722213,,,,,,,,,,,,,442.3642237,415.7651588,468.9632886,,,,37.74026887,29,76841,25.27525037,54.20132148,,,,,,,,,,,,,37.33379283,24.38767298,54.70265656,,,,4.481089801,25,5579,2.899925049,6.614972522,,,,,,,,,,,,,4.553215709,2.917331219,6.774824055,,,,,,,0.121,,,0.102,0.141,0.172,,,0.148,0.199,0.091,,,0.076,0.107,56.6,41,72490,,,0.111,9320,,,,0.025342587,2252.449094,88880,,,45.88565295,115,250623,37.49908892,54.27221699,,,,,,,,,,,,,46.84818208,38.09325624,55.60310792,,,,0.362,,,0.342,0.381,0.088087409,4152,47135,0.074981026,0.101193792,0.05692624,886,15564,0.040245389,0.073607091,0.001096954,91,82957,,,911.6153846,0.927272727,663,715,,,0.067412423,458,6794,0.045845217,0.088979629,3.171569763,,,,,,,2.734203391,,3.202422851,3.283768467,,,,,,,2.899556802,,3.301982302,0.073175552,,,,,7219.712714,,,,,0.699747177,40409,57748,0.648426464,0.751067891,53040,,,48712.51064,57367.48936,31250,22229.23404,40270.76596,91125,41336.23404,140913.766,16284,7324,25244,38997,31253.51064,46740.48936,58079,55157.46809,61000.53192,,,,,,0.488569108,4210,8617,,,74.06797538,,,,,0.384313726,,53040,,,2.590673575,10,3860,,,2.022220837,12,593407,1.044911015,3.532412838,,,,,,,,,,,,,1.796638489,0.86155799,3.30408215,,,,14.22142363,61,420077,10.65282219,18.60197226,14.52114731,,,,,,,,,,,,,15.10760055,11.2830787,19.81160815,,,,10.47427019,44,420077,7.610620757,14.06121884,,,,,,,,,,,,,10.66268593,7.684726142,14.41285381,,,,15.50369308,92,593407,12.4981648,19.01390327,,,,,,,,,,,,,16.5290741,13.32476662,20.27144207,,,,10.28571429,,7000,,,44,28,0.60389915,41198,68220,,,0.64,,,,,48.42426511,,,,,0.714511383,23068,32285,0.698074879,0.730947887,0.101203412,3120,30829,0.084660728,0.117746097,0.786154561,25381,32285,0.7687558,0.803553322,82957,,,,,0.177139964,14695,82957,,,0.206950589,17168,82957,,,0.026616199,2208,82957,,,0.002326507,193,82957,,,0.010957484,909,82957,,,0.000204925,17,82957,,,0.016852104,1398,82957,,,0.9318201,77301,82957,,,0.00508794,405,79600,0.002836355,0.007339525,0.498619767,41364,82957,,,0.598419143,49816,83246,, -42,065,42065,PA,Jefferson County,2024,1,8098.482592,744,118327,7119.420276,9077.544908,0,,,,2,,,,2,,,,2,,,,2,8248.81874,7239.33837,9258.299111,,,,,2,,0.173,,,0.142,0.203,4.043834737,,,3.246163067,4.944959831,5.294511386,,,4.305165051,6.395238686,0.085846154,279,3250,0.076214864,0.095477444,0,,,,,,,,,,,,,0.083993661,0.074314697,0.093672625,,,,,,,0.221,,,0.176,0.268,0.381,,,0.307,0.457,8.2,0.023161565,0.115,,,0.276,,,0.224,0.332,0.649375169,28892,44492,,,0.180228284,,,0.146346422,0.217871598,0.038461539,1,26,0.00149068,0.146252622,149.6,66,44114,,,16.81345076,147,8743,14.09542067,19.53148085,,,,,,,,,,,,,16.8231135,14.01623959,19.6299874,,,,,,,0.087670592,3000,34219,0.075755699,0.099585486,0.000476039,21,44114,,,2100.666667,0.000411015,18,43794,,,2433,0.001050372,46,43794,,,952.0434783,2560,,,,,,,,,2531,0.52,,,,,,,,,0.52,0.43,,,,,,,,,0.43,0.911984544,28795,31574,0.903214932,0.920754157,0.469721437,4654,9908,0.433013064,0.506429811,0.048651426,947,19465,,,0.189,1712,,0.134191489,0.243808511,,,,,,,,,,0.046357616,0,0.329543353,0.227277911,0.192776978,0.261778844,4.109521558,104275,25374,3.831779702,4.387263413,0.196483423,1855,9441,0.14774206,0.245224787,19.26825951,85,44114,,,92.6214625,202,218092,79.84848872,105.3944363,,,,,,,,,,,,,94.48625461,81.39112783,107.5813814,,,,8.4,,,,,1,,,,,0.11548913,2125,18400,0.101085225,0.129893036,0.083733625,0.070837518,0.096629731,0.014402174,0.00818478,0.020619568,0.027173913,0.021261189,0.033086637,0.814025948,15937,19578,0.79287337,0.835178526,,,,,,,,,,,,,0.811775561,0.781876085,0.841675036,0.292,,19578,0.267206713,0.316793288,76.54910196,,,75.75034657,77.34785735,,,,,,,,,,,,,76.37066901,75.55750929,77.18382873,,,,420.5568902,744,118327,387.9972781,453.1165023,,,,,,,,,,,,,425.9711132,392.7912104,459.1510161,,,,51.48951821,21,40785,31.8728233,78.70719808,,,,,,,,,,,,,54.30145062,33.61345379,83.00553548,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.125,,,0.107,0.145,0.179,,,0.154,0.207,0.094,,,0.079,0.109,,,,,,0.115,5120,,,,0.023161565,1046.902723,45200,,,26.78974642,35,130647,18.66003996,37.25805213,,,,,,,,,,,,,27.6199495,19.23830682,38.41266364,,,,0.362,,,0.344,0.381,0.095633013,2387,24960,0.081335141,0.109930885,0.066495375,647,9730,0.046240056,0.086750694,0.001324382,58,43794,,,755.0689655,0.925845411,383.3,414,,,0.112851221,245,2171,0.074137426,0.151565015,3.329887361,,,,,,,,,3.337596222,3.390841281,,,,,,,,,3.400906909,0.040190223,,,,,4282.952667,,,,,0.763764977,38438,50327,0.716353935,0.811176019,54248,,,50465.02128,58030.97872,,,,,,,33333,16056.40426,50609.59575,46696,45188.76596,48203.23404,56904,54573.44681,59234.55319,,,,,,0.56284488,2754,4893,,,72.77803266,,,,,0.333486949,,54248,,,4.380724811,11,2511,,,,,,,,,,,,,,,,,,,,,,,,,,15.01040287,36,218092,10.1988405,21.30606871,16.5067953,,,,,,,,,,,,,15.46012688,10.50440614,21.94441605,,,,11.46305229,25,218092,7.41828304,16.92172647,,,,,,,,,,,,,11.81078183,7.643315262,17.43504386,,,,13.37269036,41,306595,9.596473481,18.14156446,,,,,,,,,,,,,13.43675153,9.599412291,18.29704189,,,,8.333333333,,4200,,,35,0,0.667075844,22824,34215,,,0.6,,,,,29.15809617,,,,,0.747363747,13466,18018,0.731224606,0.763502889,0.087419672,1510,17273,0.074547665,0.100291679,0.806249306,14527,18018,0.79091391,0.821584702,43794,,,,,0.210805133,9232,43794,,,0.222404896,9740,43794,,,0.004429831,194,43794,,,0.002625931,115,43794,,,0.003288122,144,43794,,,0.000228342,10,43794,,,0.010298214,451,43794,,,0.96928803,42449,43794,,,0.005156731,216,41887,0.00206482,0.008248642,0.494337124,21649,43794,,,0.734693878,32688,44492,, -42,067,42067,PA,Juniata County,2024,1,7938.228523,368,65958,6602.260839,9274.196207,0,,,,2,,,,2,,,,2,,,,2,7557.809122,6230.104095,8885.51415,,,,,2,,0.175,,,0.145,0.208,4.051798571,,,3.176482081,5.046221118,5.274076296,,,4.241578603,6.380251642,0.064032016,128,1999,0.053300063,0.074763969,0,,,,,,,,,,,,,0.065511641,0.054227492,0.076795789,,,,,,,0.216,,,0.173,0.263,0.369,,,0.288,0.457,8.8,0.024815929,0.087,,,0.271,,,0.221,0.33,0.536560466,12614,23509,,,0.173785788,,,0.138821983,0.214939934,0.5,8,16,0.377658583,0.606673236,124.5,29,23297,,,14.91966335,78,5228,11.79337475,18.62041508,,,,,,,,,,,,,14.43965517,11.19053442,18.33785164,,,,,,,0.108946018,1996,18321,0.093456657,0.12443538,0.000171696,4,23297,,,5824.25,0.000171387,4,23339,,,5834.75,0.000214234,5,23339,,,4667.8,2882,,,,,,,,,2866,0.54,,,,,,,,,0.55,0.51,,,,,,,,,0.51,0.829564058,13682,16493,0.807085063,0.852043052,0.44743833,2358,5270,0.390323364,0.504553296,0.042939852,534,12436,,,0.147,734,,0.104106383,0.189893617,,,,,,,0.026785714,0,0.350920834,0.230576441,0.108467107,0.352685775,0.114671899,0.075505962,0.153837835,3.709072528,113735,30664,3.255090839,4.163054217,0.102907422,538,5228,0.072322654,0.13349219,21.89123063,51,23297,,,80.39574395,98,121897,65.26915107,97.97666086,,,,,,,,,,,,,78.64520526,63.24003227,96.66830929,,,,9.3,,,,,1,,,,,0.11140725,1045,9380,0.088413505,0.134400994,0.074018289,0.054755798,0.093280781,0.032515992,0.018770078,0.046261905,0.019189766,0.007066241,0.03131329,0.76637756,8306,10838,0.738238566,0.794516555,,,,,,,,,,,,,0.715432418,0.678955113,0.751909724,0.448,,10838,0.397477479,0.498522521,77.07937643,,,76.00067192,78.15808095,,,,,,,,,,,,,77.26625797,76.17697292,78.35554303,,,,389.7971372,368,65958,347.1350707,432.4592037,,,,,,,,,,,,,382.8184128,339.630482,426.0063436,,,,67.50200397,16,23703,38.58322767,109.6190254,,,,,,,,,,,,,56.93950178,29.42147145,99.46185076,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.125,,,0.106,0.146,0.178,,,0.152,0.204,0.09,,,0.075,0.107,90.8,18,19815,,,0.087,2040,,,,0.024815929,611.3652227,24636,,,,,,,,,,,,,,,,,,,,,,,,,,0.367,,,0.349,0.384,0.115266201,1535,13317,0.097393861,0.133138542,0.091767372,486,5296,0.064363116,0.119171627,0.000385621,9,23339,,,2593.222222,0.89,209.15,235,,,0.128383604,166,1293,0.069334699,0.187432509,2.900360491,,,,,,,,1.983300738,2.975177754,3.077862172,,,,,,,,2.055140749,3.187564536,0.060064307,,,,,3459.802,,,,,0.776416038,40355,51976,0.717274207,0.835557869,62661,,,57324.31915,67997.68085,,,,,,,,,,45453,40293.85106,50612.14894,63051,58377.97872,67724.02128,,,,,,0.399141631,930,2330,,,65.78901243,,,,,0.323566493,,62661,,,0.736377025,1,1358,,,,,,,,,,,,,,,,,,,,,,,,,,18.1399764,25,121897,11.36822663,27.46414227,20.50911835,,,,,,,,,,,,,16.5980379,9.837049189,26.23205573,,,,12.30547101,15,121897,6.887278713,20.29600308,,,,,,,,,,,,,13.10753421,7.336187397,21.61888435,,,,18.65921853,32,171497,12.76289166,26.34124916,,,,,,,,,,,,,17.96778191,12.03330554,25.80473199,,,,13.84615385,,2600,,,28,8,0.639904357,12043,18820,,,0.649,,,,,8.712064708,,,,,0.730456394,6466,8852,0.703621057,0.757291731,0.072847682,616,8456,0.054670075,0.091025289,0.793944871,7028,8852,0.766971345,0.820918398,23339,,,,,0.218432666,5098,23339,,,0.213890912,4992,23339,,,0.007626719,178,23339,,,0.003899053,91,23339,,,0.004841681,113,23339,,,0.00025708,6,23339,,,0.043189511,1008,23339,,,0.934101718,21801,23339,,,0.016327635,362,22171,0.010812729,0.021842541,0.49389434,11527,23339,,,1,23509,23509,, -42,069,42069,PA,Lackawanna County,2024,1,8819.171704,3539,577874,8354.930572,9283.412836,0,,,,2,3487.707692,1952.043519,5752.443443,1,16707.59498,13384.44446,20030.74549,,7931.102807,6496.685835,9365.51978,,8725.246497,8218.77213,9231.720864,,,,,2,,0.158,,,0.132,0.186,3.743543622,,,2.995098131,4.627676303,5.080265018,,,4.154815429,6.125160597,0.084348964,1225,14523,0.079829023,0.088868905,0,,,,0.108856089,0.082634638,0.135077539,0.139175258,0.114821634,0.163528882,0.082119205,0.070812463,0.093425947,0.078190878,0.073039925,0.083341831,,,,0.093406593,0.063511465,0.123301722,0.186,,,0.146,0.228,0.328,,,0.268,0.396,8,0.040669239,0.115,,,0.249,,,0.203,0.296,0.931175196,201037,215896,,,0.166653737,,,0.135620244,0.204544194,0.178217822,18,101,0.129675932,0.231802453,270.3,583,215663,,,14.22267918,664,46686,13.14086306,15.30449529,,,,,,,26.76659529,19.86668294,35.28841899,30.95122347,26.56170168,35.34074525,9.690301321,8.670704164,10.70989848,,,,44.89500362,34.42074184,57.55336848,0.065165415,10875,166883,0.05682499,0.073505841,0.000825362,178,215663,,,1211.589888,0.000806994,174,215615,,,1239.166667,0.002796651,603,215615,,,357.5704809,3229,,,,,,3333,6196,3650,3183,0.43,,,,,,0.26,0.4,0.24,0.43,0.53,,,,,,0.52,0.36,0.34,0.54,0.915583134,139143,151972,0.909040358,0.922125909,0.639822497,33162,51830,0.610692914,0.66895208,0.047197444,4963,105154,,,0.167,7215,,0.124106383,0.209893617,,,,0.114720111,0.034884201,0.19455602,0.182679296,0.104786593,0.260572,0.407626562,0.346612531,0.468640592,0.111144578,0.093538438,0.128750719,4.834328416,125504,25961,4.59825495,5.070401881,0.276923777,12178,43976,0.245578146,0.308269408,10.29383807,222,215663,,,98.49604122,1040,1055880,92.50974536,104.4823371,,,,,,,151.8003522,112.6691473,200.1298399,59.21258435,44.35428893,77.45151822,104.4311388,97.69384891,111.1684287,,,,6.5,,,,,1,,,,,0.143443324,12585,87735,0.133076192,0.153810455,0.127229831,0.117033085,0.137426577,0.016071123,0.011837067,0.02030518,0.006724796,0.004605518,0.008844074,0.764042378,76949,100713,0.749311365,0.77877339,,,,0.628133184,0.551103353,0.705163015,0.675373134,0.588295764,0.762450504,0.648367524,0.57361993,0.723115118,0.802535499,0.786461476,0.818609523,0.225,,100713,0.209881695,0.240118305,76.29617881,,,75.92249838,76.66985923,,,,86.55777457,81.63037919,91.48516995,68.53281862,65.97553686,71.09010038,81.38645816,77.56369874,85.20921757,76.31855271,75.91967666,76.71742876,,,,439.9452588,3539,577874,424.5399566,455.3505609,,,,187.2054145,132.4776932,256.9540577,812.9202656,667.6310139,958.2095173,412.0142685,336.9060125,487.1225244,440.9885077,424.3651015,457.6119139,,,,40.77659016,80,196191,32.33329999,50.74999616,,,,,,,105.764146,50.718019,194.5040301,55.58643691,32.9440454,87.85053507,32.8297066,24.03547136,43.79022796,,,,6.290158945,93,14785,5.076970086,7.705869667,,,,,,,,,,,,,5.392840539,4.095009919,6.971496954,,,,,,,0.115,,,0.097,0.134,0.168,,,0.144,0.194,0.093,,,0.078,0.109,237.2,438,184684,,,0.115,24790,,,,0.040669239,8720.989656,214437,,,40.83074003,259,634326,35.8580265,45.80345356,,,,,,,90.45034752,54.45701783,141.2494219,31.79088661,18.84129421,50.24330673,41.23805379,35.75118765,46.72491993,,,,0.35,,,0.333,0.367,0.073731445,9070,123014,0.063008041,0.08445485,0.042267572,1949,46111,0.030352678,0.054182465,0.001748487,377,215615,,,571.9230769,0.902377293,1820.095,2017,,,0.07706035,950,12328,0.04893797,0.105182731,3.051626491,,,,,,2.994307497,2.47040358,2.655454347,3.224873099,2.924888022,,,,,,3.07380721,2.16867723,2.532564876,3.115110638,0.143927934,,,,,1236.08269,,,,,0.829317862,47743,57569,0.793270447,0.865365277,61168,,,57636.42553,64699.57447,,,,80568,66245.10638,94890.89362,41482,36549.23404,46414.76596,43429,36135.89362,50722.10638,66024,63636.25532,68411.74468,,,,,,0.684402942,15538,22703,,,60.17834709,,,,,0.353534528,,61168,,,6.341550554,71,11196,,,2.163451462,32,1479118,1.479799199,3.05414795,,,,,,,,,,,,,1.599697977,0.977137083,2.470603782,,,,16.64738597,180,1055880,14.12219003,19.17258192,17.04739175,,,,,,,,,,,,,18.36323769,15.43074405,21.29573133,,,,10.03901959,106,1055880,8.127871058,11.95016811,,,,,,,,,,,,,10.86174358,8.798047173,13.26404797,,,,11.08768874,164,1479118,9.390714804,12.78466269,,,,,,,,,,,,,11.51782544,9.636580614,13.39907026,,,,8.693467337,,19900,,,163,10,0.712583354,115410,161960,,,0.646,,,,,143.0442985,,,,,0.653909165,57476,87896,0.643902541,0.66391579,0.126988413,10817,85181,0.116478787,0.137498039,0.855522436,75197,87896,0.845304297,0.865740574,215615,,,,,0.20315377,43803,215615,,,0.205927231,44401,215615,,,0.037121722,8004,215615,,,0.003942212,850,215615,,,0.033805626,7289,215615,,,0.000885838,191,215615,,,0.09975651,21509,215615,,,0.812475941,175182,215615,,,0.018493365,3785,204668,0.014938168,0.022048562,0.508007328,109534,215615,,,0.175528958,37896,215896,, -42,071,42071,PA,Lancaster County,2024,1,6502.754817,6152,1508114,6252.376035,6753.133599,0,,,,2,4125.149163,2947.067041,5617.282336,,11724.40762,10011.26411,13437.55114,,7214.316125,6453.39453,7975.23772,,6260.257603,5984.436282,6536.078923,,,,,2,,0.151,,,0.124,0.181,3.627081867,,,2.846566918,4.454889681,4.82740915,,,3.870168491,5.769486921,0.06404904,3145,49103,0.061883407,0.066214673,0,,,,0.090408805,0.074649357,0.106168253,0.129050279,0.113519059,0.144581499,0.095513105,0.088502745,0.102523465,0.053805189,0.051540087,0.056070291,,,,0.087284483,0.069124379,0.105444586,0.167,,,0.131,0.209,0.352,,,0.285,0.417,8.8,0.048538426,0.074,,,0.234,,,0.189,0.281,0.80948635,447633,552984,,,0.17168046,,,0.138305509,0.205906144,0.227091634,57,251,0.195428065,0.259990268,247.3,1369,553652,,,11.16753713,1392,124647,10.58086716,11.7542071,,,,5.049088359,2.992409756,7.9797364,17.75906261,14.40140344,21.66455034,32.18129699,29.59546007,34.76713391,6.288095468,5.779402016,6.79678892,,,,24.3902439,19.56168882,30.04946265,0.113064468,49978,442031,0.102341064,0.123787873,0.000722476,400,553652,,,1384.13,0.000591058,329,556629,,,1691.881459,0.001913303,1065,556629,,,522.656338,2186,,,,,,856,2969,3743,2123,0.53,,,,,,0.33,0.42,0.36,0.53,0.6,,,,,,0.59,0.46,0.45,0.6,0.869578439,325978,374869,0.863585806,0.875571072,0.596491099,81257,136225,0.5771945,0.615787698,0.035244873,10222,290028,,,0.119,14877,,0.086829787,0.151170213,0.056910569,0,0.338274106,0.093178037,0.030845429,0.155510644,0.25515853,0.166394469,0.343922592,0.229681304,0.186612344,0.272750263,0.064453508,0.055300765,0.073606252,3.77902054,144608,38266,3.636833745,3.921207336,0.155019773,19874,128203,0.140442918,0.169596629,13.79928186,764,553652,,,75.14564272,2053,2732028,71.89502874,78.39625671,,,,25.27016782,14.72080399,40.45998665,83.4087742,66.33747339,103.5322814,66.22296173,57.021896,75.42402746,78.14351909,74.46541098,81.8216272,,,,11.1,,,,,1,,,,,0.140511262,28665,204005,0.133581514,0.14744101,0.116646086,0.109227873,0.124064298,0.020881841,0.018062022,0.02370166,0.011470307,0.009318811,0.013621804,0.741125538,203373,274411,0.733352226,0.74889885,,,,0.774723677,0.719137642,0.830309711,0.724339198,0.663515154,0.785163242,0.726619222,0.695668572,0.757569872,0.747909271,0.737798649,0.758019892,0.299,,274411,0.287509693,0.310490307,79.27502142,,,79.04385394,79.5061889,,,,85.06162211,82.41350913,87.7097351,73.0227739,71.60843656,74.43711125,79.72107035,78.54880053,80.89334016,79.49424088,79.24467569,79.74380607,,,,314.9026401,6152,1508114,306.6536374,323.1516428,,,,192.9512011,151.5081937,242.2325636,557.784497,495.5584703,620.0105238,342.0445073,310.5289642,373.5600504,306.6445798,297.7419964,315.5471633,,,,49.14013538,280,569799,43.38423321,54.89603756,,,,,,,88.45457226,54.75477437,135.2122098,54.45258813,40.41576047,71.78894903,47.28674395,40.70011973,53.87336817,,,,5.41395462,267,49317,4.764550482,6.063358759,,,,,,,,,,8.798091262,6.697514708,11.34889671,4.717227,4.029994706,5.404459295,,,,,,,0.11,,,0.093,0.13,0.156,,,0.134,0.181,0.082,,,0.069,0.096,173.8,803,461928,,,0.074,40880,,,,0.048538426,25213.04278,519445,,,24.73310128,407,1645568,22.33019162,27.13601093,,,,,,,43.53213006,28.43663265,63.78465674,31.98178664,24.3460178,41.25417463,23.4397186,20.83877361,26.0406636,,,,0.368,,,0.35,0.385,0.112661528,35388,314109,0.100746635,0.124576422,0.113066977,15146,133956,0.091620169,0.134513786,0.001147982,639,556629,,,871.0938967,0.89158999,4631.81,5195,,,0.056791389,1662,29265,0.043466515,0.070116264,3.233972825,,,,,,3.356203377,2.641225746,,3.431757038,3.130470251,,,,,,3.412407974,2.48531746,2.487517716,3.377384564,0.151626171,,,,,5941.193063,,,,,0.755715331,48560,64257,0.730095332,0.78133533,82434,,,78991.78723,85876.21277,69215,58334.31915,80095.68085,84138,78708.38298,89567.61702,59045,48531.29787,69558.70213,62743,55455.85106,70030.14894,84938,83149.57447,86726.42553,,,,,,0.456265619,29394,64423,,,62.98221647,,,,,0.30232671,,82434,,,4.200845846,148,35231,,,2.258906395,86,3807152,1.80683354,2.789731022,,,,,,,8.116284218,4.051619839,14.52227441,8.298755187,5.747129213,11.59667857,1.287633918,0.919904549,1.753391932,,,,10.69176335,309,2732028,9.45031066,11.93321605,11.3102794,,,,,,,,,,6.885743307,4.205990899,10.63447207,11.4281011,9.996844804,12.85935739,,,,8.491860259,232,2732028,7.399125098,9.584595421,,,,,,,11.1889819,5.585499453,20.02017934,10.98169717,7.559295033,15.42238578,8.427242255,7.21937072,9.63511379,,,,10.08627972,384,3807152,9.077441637,11.0951178,,,,,,,14.7568804,9.013885919,22.79080492,9.030998291,6.358656228,12.44804153,10.17230795,9.050723373,11.29389253,,,,8.433098592,,56800,,,294,185,0.691845653,280239,405060,,,0.759,,,,,104.2960252,,,,,0.699489923,146185,208988,0.691611894,0.707367952,0.11788695,24224,205485,0.109854188,0.125919713,0.853876778,178450,208988,0.846745743,0.861007813,556629,,,,,0.22864601,127271,556629,,,0.197355869,109854,556629,,,0.037225872,20721,556629,,,0.004748226,2643,556629,,,0.027781521,15464,556629,,,0.001147982,639,556629,,,0.11589407,64510,556629,,,0.801936299,446381,556629,,,0.021500772,11148,518493,0.018889695,0.02411185,0.507472661,282474,556629,,,0.278754901,154147,552984,, -42,073,42073,PA,Lawrence County,2024,1,10618.431,1670,230728,9765.657604,11471.2044,0,,,,2,,,,2,24236.15203,18301.50443,30170.79964,,,,,2,10018.08484,9153.816333,10882.35335,,,,,2,,0.165,,,0.138,0.196,3.952375455,,,3.138879606,4.902909626,5.225535077,,,4.250713589,6.35072285,0.086566649,502,5799,0.079329072,0.093804227,0,,,,,,,0.163434903,0.125291034,0.201578772,0.102189781,0.051468315,0.152911247,0.078100159,0.070686142,0.085514176,,,,0.131818182,0.087115072,0.176521291,0.203,,,0.16,0.249,0.364,,,0.296,0.439,7.7,0.068764272,0.113,,,0.261,,,0.214,0.315,0.884500988,76129,86070,,,0.180599442,,,0.146259501,0.219122642,0.178571429,10,56,0.113361344,0.252890397,350.9,300,85497,,,16.94534845,302,17822,15.03416179,18.8565351,,,,,,,35.56910569,24.77518537,49.46801562,35,19.13482569,58.72405281,14.65672409,12.75422017,16.55922801,,,,28.80658436,17.83172975,44.03392419,0.069244618,4500,64987,0.059712703,0.078776533,0.000409371,35,85497,,,2442.771429,0.000589282,50,84849,,,1696.98,0.001638204,139,84849,,,610.4244604,2590,,,,,,,5490,,2501,0.43,,,,,,,0.38,,0.43,0.48,,,,,,0.55,0.29,,0.48,0.919636211,56828,61794,0.910207149,0.929065272,0.596946646,11222,18799,0.557958876,0.635934416,0.05394349,2123,39356,,,0.167,2755,,0.115765957,0.218234043,,,,,,,0.642937853,0.51495155,0.770924156,0.532544379,0.453883658,0.611205099,0.144607133,0.117432546,0.171781719,4.366120002,109952,25183,4.07892424,4.653315764,0.274427056,4682,17061,0.230614758,0.318239354,15.43913822,132,85497,,,120.6488954,518,429345,110.2589195,131.0388713,,,,,,,235.2018816,169.5128282,317.9246166,,,,118.7373667,107.968127,129.5066064,,,,9.3,,,,,1,,,,,0.119571046,4460,37300,0.10583769,0.133304402,0.098890392,0.085489437,0.112291348,0.007104558,0.00423842,0.009970695,0.019839142,0.014236776,0.025441508,0.779043818,29673,38089,0.758428755,0.799658882,,,,,,,0.78978389,0.680599856,0.898967925,,,,0.760996198,0.737581261,0.784411135,0.315,,38089,0.292267832,0.337732168,74.72709,,,74.1000839,75.35409609,,,,,,,63.42806668,60.20974237,66.64639099,,,,75.19718001,74.5577356,75.83662441,,,,491.705538,1670,230728,465.9613442,517.4497318,,,,,,,1059.878944,858.7301825,1261.027704,,,,473.0726951,446.9298227,499.2155675,,,,78.83844688,60,76105,60.16204054,101.4807088,,,,,,,277.8371447,147.9365781,475.109979,,,,63.81025011,45.79133717,86.56580948,,,,6.645622196,40,6019,4.747729929,9.049451232,,,,,,,,,,,,,5.688282139,3.837860072,8.12037645,,,,,,,0.12,,,0.102,0.141,0.176,,,0.152,0.203,0.09,,,0.076,0.105,93.7,69,73613,,,0.113,9720,,,,0.068764272,6264.975322,91108,,,49.98203771,128,256092,41.32309144,58.64098397,,,,,,,148.4092385,84.82870284,241.0073054,,,,47.02080457,38.23361927,55.80798987,,,,0.371,,,0.352,0.389,0.077859033,3737,47997,0.065944139,0.089773927,0.04572898,818,17888,0.031431108,0.060026853,0.000954637,81,84849,,,1047.518519,0.93296875,895.65,960,,,0.067985448,299,4398,0.042226419,0.093744477,3.101779765,,,,,,,2.377073675,,3.231287346,2.918992101,,,,,,,2.111379521,2.457397619,3.080340497,0.168131162,,,,,4744.233125,,,,,0.757202724,43365,57270,0.700414022,0.813991426,58730,,,53605.40426,63854.59575,,,,57734,7101.659575,108366.3404,32566,16328.38298,48803.61702,35839,30694.14894,40983.85106,59512,57210.04255,61813.95745,,,,,,0.606165993,6449,10639,,,63.85364307,,,,,0.37708156,,58730,,,4.965019183,22,4431,,,5.291696501,32,604721,3.61951649,7.470296563,,,,,,,48.40661557,25.01240463,84.55661577,,,,2.881792475,1.647193396,4.679850435,,,,18.16562414,78,429345,14.1609952,22.95117327,18.16720819,,,,,,,,,,,,,18.84194817,14.57236135,23.97157791,,,,17.23555649,74,429345,13.53361894,21.63766284,,,,,,,61.6004928,30.75074406,110.2202974,,,,15.50959179,11.86360879,19.9227195,,,,15.04826193,91,604721,12.11592181,18.47593104,,,,,,,,,,,,,15.48963455,12.38970826,19.12957266,,,,6.329113924,,7900,,,35,15,0.671710766,46076,68595,,,0.697,,,,,39.92357423,,,,,0.745415078,26785,35933,0.729875978,0.760954179,0.102269778,3546,34673,0.088769842,0.115769713,0.846130298,30404,35933,0.832629083,0.859631513,84849,,,,,0.197550943,16762,84849,,,0.234216078,19873,84849,,,0.040589754,3444,84849,,,0.001850346,157,84849,,,0.004561044,387,84849,,,0.000318212,27,84849,,,0.019269526,1635,84849,,,0.910311259,77239,84849,,,0.00385021,314,81554,0.001833051,0.005867368,0.511614751,43410,84849,,,0.424201232,36511,86070,, -42,075,42075,PA,Lebanon County,2024,1,7253.260281,1932,389675,6743.128921,7763.391641,0,,,,2,,,,2,12512.27848,8245.670359,18204.70826,,8955.25894,7504.094441,10406.42344,,6796.020716,6242.653613,7349.387819,,,,,2,,0.162,,,0.136,0.19,3.687844255,,,2.87344101,4.614000738,4.810453424,,,3.812459031,5.910790822,0.081578947,899,11020,0.076468308,0.086689587,0,,,,0.1,0.053514518,0.146485482,0.169154229,0.117326798,0.22098166,0.095685604,0.083769388,0.107601821,0.073638614,0.067943618,0.07933361,,,,0.119318182,0.071426227,0.167210137,0.185,,,0.147,0.225,0.36,,,0.29,0.431,8.5,0.044743844,0.09,,,0.255,,,0.207,0.304,0.872599594,125006,143257,,,0.178946112,,,0.14342192,0.216666208,0.192307692,20,104,0.143765137,0.245119775,288.5,414,143493,,,17.68488746,539,30478,16.19187309,19.17790184,,,,,,,16.48351648,8.517273501,28.79338606,41.30238167,36.41185214,46.1929112,10.65630002,9.287989868,12.02461018,,,,25,13.99231022,41.23369812,0.080006036,9013,112654,0.069282632,0.09072944,0.000578425,83,143493,,,1728.831325,0.000541625,78,144011,,,1846.294872,0.003437237,495,144011,,,290.9313131,2399,,,,,,,,3169,2370,0.52,,,,,,0.35,0.56,0.35,0.53,0.52,,,,,,0.6,0.27,0.34,0.53,0.875140882,86190,98487,0.86433477,0.885946993,0.571017015,19028,33323,0.535401633,0.606632398,0.037293909,2737,73390,,,0.141,4467,,0.10406383,0.17793617,,,,0.128603104,0,0.329000624,0.109004739,0,0.266441642,0.34469697,0.273644954,0.415748986,0.09405425,0.069555583,0.118552917,4.019395955,130554,32481,3.789502745,4.249289164,0.217919772,7046,32333,0.183038317,0.252801228,14.35610099,206,143493,,,76.41059466,541,708017,69.97170448,82.84948485,,,,,,,83.46664812,43.12843506,145.7994369,86.01032124,68.7971549,106.222047,75.86234559,68.7331963,82.99149489,,,,9.4,,,,,0,,,,,0.129143069,6955,53855,0.116183431,0.142102708,0.102138388,0.090238907,0.11403787,0.021910686,0.015802266,0.028019106,0.013833442,0.009417472,0.018249412,0.776192927,52785,68005,0.763194772,0.789191082,,,,0.574758842,0.422017982,0.727499703,0.567460318,0.411020276,0.723900359,0.693341952,0.636825274,0.749858631,0.777975845,0.759534529,0.796417161,0.3,,68005,0.279431705,0.320568295,77.73963804,,,77.30456154,78.17471453,,,,90.51187233,83.67925207,97.34449259,73.23225371,68.78595508,77.67855233,76.9889514,75.15329486,78.82460794,78.05271019,77.58819207,78.5172283,,,,363.8666947,1932,389675,346.718497,381.0148925,,,,,,,563.0784868,413.7288928,748.7750189,407.8971696,347.3644158,468.4299234,353.3193458,334.9740804,371.6646112,,,,41.40670508,59,142489,31.52070239,53.41163273,,,,,,,,,,51.94487732,30.25980527,83.16878057,40.85618622,29.31910462,55.42602994,,,,4.705882353,52,11050,3.514578027,6.171138619,,,,,,,,,,,,,4.285014692,2.984669736,5.95941814,,,,,,,0.115,,,0.097,0.134,0.165,,,0.142,0.189,0.092,,,0.078,0.107,173.9,210,120755,,,0.09,12850,,,,0.044743844,5976.34574,133568,,,25.06154131,107,426949,20.31287164,29.81021097,,,,,,,,,,48.3949024,32.65183743,69.08673237,21.24922135,16.6559975,26.7177056,,,,0.349,,,0.332,0.365,0.086264397,6958,80659,0.074349503,0.098179291,0.064879357,2178,33570,0.047007016,0.082751697,0.001222129,176,144011,,,818.2443182,0.851223545,1287.05,1512,,,0.081081081,576,7104,0.049356383,0.112805779,3.114732812,,,,,,,3.040885654,,3.291621678,3.040714524,,,,,,3.116941444,2.784970324,2.293146402,3.312184346,0.203824514,,,,,4193.202667,,,,,0.766935377,46237,60288,0.727116419,0.806754335,69490,,,63225.14894,75754.85106,39464,11085.10638,67842.89362,73631,57997.46809,89264.53192,54683,33879.59575,75486.40426,46780,36329.44681,57230.55319,76671,74069.97872,79272.02128,,,,,,0.492497568,9617,19527,,,54.42058918,,,,,0.320492157,,69490,,,3.495239243,29,8297,,,2.134261297,21,983947,1.321141381,3.262445105,,,,,,,,,,,,,1.370064343,0.683931184,2.451423561,,,,13.56911214,100,708017,10.78035703,16.35786724,14.12395465,,,,,,,,,,,,,14.40861284,11.38941053,17.98260091,,,,11.15792417,79,708017,8.833833645,13.9061027,,,,,,,,,,,,,11.16135659,8.595604614,14.25280319,,,,12.50067331,123,983947,10.29146371,14.70988291,,,,,,,,,,16.40212035,10.2791215,24.83300732,11.83237387,9.573097051,14.46446347,,,,6.802721088,,14700,,,75,25,0.67307313,71652,106455,,,0.735,,,,,76.44119628,,,,,0.71545731,39519,55236,0.70104285,0.729871771,0.107188454,5793,54045,0.094243705,0.120133203,0.855800565,47271,55236,0.842989827,0.868611302,144011,,,,,0.223816236,32232,144011,,,0.205498191,29594,144011,,,0.020741471,2987,144011,,,0.004437161,639,144011,,,0.020477602,2949,144011,,,0.001208241,174,144011,,,0.153002201,22034,144011,,,0.792981092,114198,144011,,,0.020771645,2806,135088,0.016057192,0.025486098,0.506218275,72901,144011,,,0.25385845,36367,143257,, -42,077,42077,PA,Lehigh County,2024,1,6825.734787,4413,1033664,6521.341312,7130.128263,0,,,,2,2623.888107,1806.16384,3684.914454,,10824.89685,9320.852245,12328.94145,,6570.795183,6024.184191,7117.406175,,6734.207557,6332.72057,7135.694544,,,,,2,,0.165,,,0.14,0.191,3.427925623,,,2.721620383,4.220710386,4.76305533,,,3.907752786,5.706370525,0.084625457,2456,29022,0.081423302,0.087827611,0,,,,0.090124641,0.072745566,0.107503715,0.132508024,0.118278772,0.146737276,0.094573509,0.089233527,0.099913491,0.067671417,0.063418938,0.071923896,,,,0.08445946,0.062058937,0.106859982,0.168,,,0.137,0.204,0.338,,,0.282,0.403,8.4,0.041860793,0.094,,,0.262,,,0.218,0.309,0.852532458,319322,374557,,,0.193877626,,,0.159862263,0.235362463,0.267605634,38,142,0.224831471,0.311632582,467.3,1755,375539,,,17.47715851,1471,84167,16.58401641,18.3703006,,,,,,,21.42857143,17.64155896,25.21558389,36.22500847,34.05342907,38.39658788,5.152852555,4.476533917,5.829171192,,,,15.91187271,11.31489698,21.7520538,0.081847873,24960,304956,0.072315958,0.091379788,0.000963948,362,375539,,,1037.400553,0.000879578,331,376317,,,1136.909366,0.002372999,893,376317,,,421.4076148,3245,,,,,,2039,5149,5632,3073,0.52,,,,,,0.4,0.42,0.35,0.53,0.58,,,,,,0.53,0.39,0.39,0.6,0.902480039,230238,255117,0.897652831,0.907307246,0.659208226,63725,96669,0.635024234,0.683392218,0.04367738,8612,197173,,,0.158,13029,,0.122255319,0.193744681,0.024943311,0,0.140462713,0.083621285,0.027947027,0.139295544,0.320701575,0.247759528,0.393643622,0.323738872,0.287242406,0.360235339,0.05762895,0.045236777,0.070021122,4.569844992,150060,32837,4.38712748,4.752562504,0.283588461,23917,84337,0.257267933,0.309908988,9.879133725,371,375539,,,89.6634136,1659,1850253,85.34873801,93.97808918,,,,34.21549813,21.68969078,51.34004685,88.28803973,71.51359564,107.8148076,57.19729156,50.47357902,63.92100411,107.866647,101.8772345,113.8560596,,,,8.5,,,,,1,,,,,0.155457985,21775,140070,0.145652534,0.165263437,0.13367156,0.124561719,0.142781401,0.021953309,0.017993733,0.025912885,0.009209681,0.006710641,0.011708721,0.754180918,135831,180104,0.74007456,0.768287275,,,,0.668147913,0.61253885,0.723756976,0.679005525,0.629009279,0.729001771,0.690951351,0.660981948,0.720920753,0.813205252,0.804719848,0.821690656,0.296,,180104,0.281456019,0.310543981,78.39344791,,,78.11902265,78.66787317,,,,86.80733484,84.39017238,89.22449729,74.01990249,72.66345117,75.37635381,80.24356809,79.28743371,81.19970246,78.37409257,78.0378152,78.71036994,,,,337.0362352,4413,1033664,326.7444216,347.3280487,,,,145.8632323,111.3090128,187.7548935,516.2936276,457.9336507,574.6536045,328.0795951,303.5400208,352.6191693,337.1174487,324.4921486,349.7427487,,,,40.58690805,152,374505,34.13452347,47.03929264,,,,,,,67.53461149,40.02529089,106.7338021,48.08376056,37.55381592,60.65112124,30.69776601,22.99473327,40.15343377,,,,5.847754394,172,29413,4.973815693,6.721693095,,,,,,,11.05481345,7.08302757,16.44868613,6.688374549,5.269678419,8.371498105,4.524236984,3.476547921,5.788464437,,,,,,,0.111,,,0.096,0.129,0.154,,,0.134,0.178,0.098,,,0.084,0.115,391.5,1235,315420,,,0.094,34940,,,,0.041860793,14630.22146,349497,,,31.19232669,348,1115659,27.91504161,34.46961176,,,,,,,42.24757077,28.07320396,61.0595026,30.08184908,24.2200284,36.9338447,31.94175225,27.71124201,36.17226249,,,,0.373,,,0.36,0.388,0.09812731,21688,221019,0.086212417,0.110042204,0.04036824,3565,88312,0.029644836,0.051091644,0.002075378,781,376317,,,481.8399488,0.859531985,3654.73,4252,,,0.068304403,1393,20394,0.051240666,0.085368141,3.027220281,,,,,,3.989186164,2.747971003,2.546886287,3.391165707,3.027473918,,,,,,4.233186352,2.65228802,2.490211289,3.457878789,0.221556463,,,,,5089.495778,,,,,0.785095377,48566,61860,0.745952324,0.824238429,72590,,,68846.34043,76333.65957,69345,27767.97872,110922.0213,109797,94420.82979,125173.1702,53308,47684.17021,58931.82979,50138,46393.14894,53882.85106,86490,84023.61702,88956.38298,,,,,,0.54833218,29310,53453,,,53.24603275,,,,,0.292189007,,72590,,,6.371441482,141,22130,,,3.690631817,95,2574085,2.985941531,4.511606012,,,,,,,14.73405039,9.233750936,22.30752936,7.51818557,5.561995073,9.939440032,1.345144517,0.842994908,2.036564965,,,,13.13859143,255,1850253,11.48460064,14.79258222,13.78189902,,,,,,,8.025020962,3.848309481,14.75829927,5.061935852,3.208833112,7.595389166,16.17623385,13.83033289,18.52213481,,,,9.890539294,183,1850253,8.457525077,11.32355351,,,,,,,18.39334161,11.2351309,28.40702433,9.670045696,7.105185854,12.8591108,9.609308043,7.821640737,11.39697535,,,,7.381263634,190,2574085,6.331697067,8.4308302,,,,,,,8.706484322,4.635836218,14.88835335,7.51818557,5.561995073,9.939440032,7.704009509,6.358807185,9.049211833,,,,7.786458333,,38400,,,198,101,0.692081156,184713,266895,,,0.744,,,,,196.2813109,,,,,0.650492403,92474,142160,0.640011191,0.660973614,0.143776007,20006,139147,0.132830336,0.154721678,0.878812606,124932,142160,0.871590499,0.886034712,376317,,,,,0.222905157,83883,376317,,,0.175721533,66127,376317,,,0.060786518,22875,376317,,,0.011671011,4392,376317,,,0.040925603,15401,376317,,,0.001913281,720,376317,,,0.287425229,108163,376317,,,0.594501444,223721,376317,,,0.055810784,19656,352190,0.050913199,0.060708369,0.506017533,190423,376317,,,0.09867924,36961,374557,, -42,079,42079,PA,Luzerne County,2024,1,9940.112431,5845,876374,9535.614714,10344.61015,0,,,,2,4386.367781,2005.726662,8326.692377,1,15465.60944,13203.85173,17727.36715,,6268.707952,5481.568603,7055.847301,,10360.12984,9876.014162,10844.24552,,,,,2,,0.17,,,0.145,0.199,3.925094609,,,3.110850441,4.744776795,5.073911594,,,4.12175893,6.003119258,0.081760726,1837,22468,0.078177913,0.08534354,0,,,,0.072164949,0.042434044,0.101895853,0.129198966,0.112489616,0.145908317,0.078655249,0.072010876,0.085299622,0.077290778,0.072802138,0.081779419,,,,0.089622642,0.062433673,0.11681161,0.196,,,0.159,0.236,0.37,,,0.31,0.431,7.9,0.050607975,0.117,,,0.283,,,0.235,0.331,0.880105285,286557,325594,,,0.167546112,,,0.136236348,0.199877153,0.24516129,38,155,0.20440282,0.287509691,392,1278,326053,,,19.50881213,1294,66329,18.44584519,20.57177908,,,,,,,27.58801892,22.31108158,32.86495625,41.78907168,38.3553692,45.22277416,11.93353803,10.93437809,12.93269797,,,,27.71362587,20.43383997,36.74424722,0.078046735,19726,252746,0.069706309,0.08638716,0.000757546,247,326053,,,1320.052632,0.000652636,213,326369,,,1532.248826,0.001329783,434,326369,,,752.0023042,3020,,,,,,,6850,3842,2934,0.47,,,,,,0.41,0.32,0.38,0.47,0.5,,,,,,0.47,0.31,0.2,0.51,0.904829023,209277,231289,0.899380185,0.910277862,0.603446535,47799,79210,0.579747203,0.627145866,0.053226968,8427,158322,,,0.214,13797,,0.173489362,0.254510638,0.615384615,0.358728353,0.872040878,0.033980583,0,0.125140744,0.429373065,0.366938168,0.491807962,0.376665697,0.335470148,0.417861245,0.165174413,0.145337638,0.185011188,4.645865162,118595,25527,4.425199511,4.866530813,0.332836532,21662,65083,0.306216426,0.359456638,10.33574296,337,326053,,,112.5080777,1795,1595441,107.3032357,117.7129197,,,,,,,123.2770913,98.18951506,152.8205023,49.25596381,40.00894707,58.50298055,124.5692705,118.4151694,130.7233716,,,,8.1,,,,,1,,,,,0.128768071,16745,130040,0.120688519,0.136847624,0.111592337,0.103738609,0.119446065,0.010804368,0.008254978,0.013353758,0.012726853,0.009610302,0.015843404,0.766392573,115572,150800,0.755653819,0.777131327,,,,0.68540305,0.588662626,0.782143475,0.59126391,0.527523151,0.655004668,0.654447115,0.611127503,0.697766728,0.798343375,0.787056571,0.809630179,0.259,,150800,0.246112072,0.271887928,75.03326068,,,74.72246025,75.3440611,,,,83.10966673,79.60214295,86.61719051,69.50112073,67.65981484,71.34242662,82.59868487,80.25338996,84.94397979,74.70593583,74.35095067,75.06092099,,,,480.837752,5845,876374,467.7941099,493.8813941,,,,182.515731,112.9801142,278.9946827,743.8970194,642.1722654,845.6217735,312.1241245,273.3041331,350.9441158,497.9195935,483.103566,512.735621,,,,55.07433292,158,286885,46.48663472,63.66203112,,,,,,,144.4085028,93.4535689,213.1754373,52.93375137,37.64107183,72.36218069,45.19574719,35.94551899,56.09983913,,,,6.242805278,141,22586,5.212356748,7.273253807,,,,,,,13.71652515,8.490745254,20.96716573,7.231752439,5.233655098,9.741123076,4.622715312,3.567714084,5.892030141,,,,,,,0.121,,,0.104,0.138,0.17,,,0.148,0.193,0.1,,,0.085,0.116,170.5,477,279764,,,0.117,38150,,,,0.050607975,16241.00996,320918,,,54.66176342,525,960452,49.98591894,59.3376079,,,,,,,80.87920453,56.01120031,113.0205816,24.4709041,17.04488132,34.0331038,60.09326475,54.54093036,65.64559913,,,,0.387,,,0.369,0.403,0.089362178,16800,187999,0.078638773,0.100085582,0.046234307,3156,68261,0.033127924,0.05934069,0.001602481,523,326369,,,624.0325048,0.85364539,3009.1,3525,,,0.103341056,1695,16402,0.081379966,0.125302146,2.916434504,,,,,,3.251399377,2.559728927,2.474418819,3.121378745,2.763911451,,,,,,3.250258484,2.170621759,2.215372699,3.051494391,0.232910051,,,,,2068.58555,,,,,0.800469273,44691,55831,0.772668846,0.828269701,59358,,,56376.89362,62339.10638,85739,40444.53192,131033.4681,85568,69783.14894,101352.8511,35330,29585.82979,41074.17021,47745,42833.68085,52656.31915,63710,61715.44681,65704.55319,,,,,,0.734213251,28370,38640,,,55.32334824,,,,,0.320546514,,59358,,,5.803048066,99,17060,,,3.900867741,87,2230273,3.124435149,4.811705947,,,,,,,19.86206897,11.77152086,31.39063202,4.891410683,2.674179737,8.206955978,3.064901803,2.308903482,3.98939098,,,,18.40065581,312,1595441,16.27424668,20.52706493,19.55572158,,,,,,,,,,5.78329935,2.988315167,10.1022601,20.57037805,18.00712216,23.13363394,,,,12.72375475,203,1595441,10.97341102,14.47409847,,,,,,,20.79372624,11.36812363,34.88833936,4.970785339,2.481398132,8.894108044,13.84982359,11.79780501,15.90184217,,,,10.22296374,228,2230273,8.895980403,11.54994707,,,,,,,,,,8.734661934,5.652612659,12.89408408,10.58784259,9.082321838,12.09336335,,,,5.620689655,,29000,,,103,60,0.62646482,153321,244740,,,0.646,,,,,128.3559667,,,,,0.673156974,89266,132608,0.664142519,0.682171429,0.133901105,17106,127751,0.124672299,0.14312991,0.847754283,112419,132608,0.839808646,0.855699921,326369,,,,,0.201750166,65845,326369,,,0.201845151,65876,326369,,,0.046429042,15153,326369,,,0.008548606,2790,326369,,,0.014707279,4800,326369,,,0.001351231,441,326369,,,0.173313029,56564,326369,,,0.751731935,245342,326369,,,0.034019077,10489,308327,0.030393852,0.037644302,0.500880905,163472,326369,,,0.222224611,72355,325594,, -42,081,42081,PA,Lycoming County,2024,1,8336.228334,1816,311420,7705.542138,8966.91453,0,,,,2,,,,2,16780.71449,12988.88064,20572.54835,,,,,2,7975.140187,7322.234346,8628.046028,,,,,2,,0.158,,,0.132,0.186,3.698878785,,,2.944329087,4.526394236,5.131488267,,,4.192472621,6.136652145,0.081515077,665,8158,0.075577364,0.08745279,0,,,,,,,0.165120594,0.133775167,0.19646602,0.055276382,0.023525798,0.087026966,0.075328759,0.06914425,0.081513269,,,,0.109589041,0.073759318,0.145418765,0.19,,,0.15,0.233,0.369,,,0.302,0.437,7.7,0.08433965,0.107,,,0.256,,,0.209,0.307,0.542228606,61916,114188,,,0.174505378,,,0.14095877,0.209252337,0.306451613,19,62,0.240648584,0.373306554,380.3,432,113605,,,16.31720988,393,24085,14.70394494,17.93047482,,,,,,,45.72713643,34.9776361,58.73841973,16.98301698,9.893233236,27.19145536,13.21282971,11.63385283,14.79180658,,,,38.4263495,27.69433278,51.94126146,0.065310961,5675,86892,0.056970535,0.073651386,0.000765811,87,113605,,,1305.804598,0.000512802,58,113104,,,1950.068966,0.002068892,234,113104,,,483.3504274,2587,,,,,,,1996,,2551,0.57,,,,,,0.69,0.44,,0.58,0.52,,,,,,0.5,0.35,0.43,0.53,0.907615341,72749,80154,0.898882956,0.916347725,0.589290262,16199,27489,0.554324821,0.624255702,0.047393794,2615,55176,,,0.155,3520,,0.109723404,0.200276596,0.058823529,0,0.382384584,0.183800623,0,0.536393003,0.57122093,0.404783157,0.737658703,0.088443396,0.005998154,0.170888639,0.151286674,0.12042323,0.182150119,4.107448281,115752,28181,3.814506044,4.400390518,0.222697706,5204,23368,0.190035026,0.255360387,15.75634875,179,113605,,,84.91626411,482,567618,77.33531761,92.4972106,,,,,,,157.2628591,112.8545429,213.3448259,,,,83.17518334,75.27667577,91.07369091,,,,8.2,,,,,1,,,,,0.136806759,6315,46160,0.123667208,0.14994631,0.11880109,0.105634741,0.131967439,0.011915078,0.007817045,0.016013111,0.011373484,0.005196567,0.0175504,0.793878657,41034,51688,0.778810264,0.808947049,,,,,,,0.663752914,0.501250472,0.826255355,0.77377892,0.658835088,0.888722753,0.812572566,0.797832084,0.827313048,0.21,,51688,0.195023211,0.224976789,76.50310429,,,75.99205338,77.01415519,,,,,,,68.20046841,65.59316327,70.80777355,88.81917506,76.88015349,100.7581966,76.80937031,76.28160077,77.33713985,,,,414.0511319,1816,311420,393.7372408,434.365023,,,,,,,887.9471871,730.2311447,1045.66323,,,,400.2077804,379.406359,421.0092018,,,,60.5877007,64,105632,46.65991229,77.36914118,,,,,,,159.3625498,76.42053699,293.0734031,,,,54.51076588,40.19193561,72.27336716,,,,6.761651775,56,8282,5.107679085,8.780567255,,,,,,,,,,,,,5.020220332,3.516100602,6.95010103,,,,,,,0.116,,,0.099,0.135,0.172,,,0.147,0.198,0.088,,,0.074,0.102,188.3,183,97161,,,0.107,12270,,,,0.08433965,9792.761055,116111,,,29.99003272,102,340113,24.16989951,35.81016594,,,,,,,113.8088012,67.45030842,179.8669719,,,,24.83570852,19.56771354,31.08559266,,,,0.367,,,0.348,0.384,0.072003022,4575,63539,0.061279618,0.082726426,0.048017639,1176,24491,0.034911256,0.061124022,0.002502122,283,113104,,,399.6607774,0.891639785,995.07,1116,,,0.09656925,608,6296,0.055871164,0.137267336,3.254341856,,,,,,,2.673730012,3.117522409,3.346456186,3.388127747,,,,,,,2.712233427,3.24471919,3.473908033,0.136170988,,,,,5375.36875,,,,,0.741267204,41041,55366,0.706482103,0.776052305,61729,,,57014.2766,66443.7234,,,,,,,39106,28445.74468,49766.25532,61122,55369.48936,66874.51064,65452,63313.2766,67590.7234,,,,,,0.494202701,7246,14662,,,66.91309785,,,,,0.282962627,,61729,,,6.801592568,41,6028,,,9.638083699,77,798914,7.606224932,12.04595094,,,,,,,46.57151467,27.12962351,74.56550644,,,,7.752560422,5.856200828,10.06734456,,,,15.38626074,89,567618,12.23714977,19.09840651,15.67955914,,,,,,,,,,,,,16.00152544,12.60738205,20.0282952,,,,8.80874109,50,567618,6.538017423,11.61322697,,,,,,,,,,,,,8.200370188,5.910105537,11.08451824,,,,11.89114223,95,798914,9.620644157,14.53630474,,,,,,,,,,,,,12.45947211,10.01888692,15.31480653,,,,14.95327103,,10700,,,119,41,0.660395653,59254,89725,,,0.657,,,,,90.18992853,,,,,0.698851329,31941,45705,0.68667561,0.711027048,0.111705957,4966,44456,0.097875414,0.125536499,0.851351056,38911,45705,0.837435711,0.865266401,113104,,,,,0.204873391,23172,113104,,,0.208135875,23541,113104,,,0.047611048,5385,113104,,,0.002643585,299,113104,,,0.008142948,921,113104,,,0.000477437,54,113104,,,0.024269699,2745,113104,,,0.894026737,101118,113104,,,0.004731219,511,108006,0.001903724,0.007558713,0.506454237,57282,113104,,,0.40438575,46176,114188,, -42,083,42083,PA,Mc Kean County,2024,1,8824.777582,741,110577,7751.44581,9898.109355,0,,,,2,,,,2,,,,2,,,,2,9200.150187,8056.858412,10343.44196,,,,,2,,0.174,,,0.146,0.204,3.97920858,,,3.149725795,4.923161971,5.480705558,,,4.417391387,6.65332723,0.099166997,250,2521,0.087499563,0.110834432,0,,,,,,,,,,,,,0.098960499,0.087026077,0.110894921,,,,,,,0.21,,,0.168,0.254,0.371,,,0.295,0.451,8.2,0.00713038,0.124,,,0.278,,,0.229,0.331,0.81927681,33125,40432,,,0.173889618,,,0.138639153,0.214650352,0.321428571,9,28,0.221187685,0.422182702,202.8,81,39941,,,19.23507045,172,8942,16.36041612,22.10972478,,,,,,,,,,,,,19.84126984,16.81377395,22.86876574,,,,,,,0.066126856,1960,29640,0.056594941,0.075658771,0.000575849,23,39941,,,1736.565217,0.000476597,19,39866,,,2098.210526,0.001404706,56,39866,,,711.8928571,2519,,,,,,,,,2534,0.45,,,,,,,,,0.45,0.43,,,,,,0.45,,,0.42,0.928120447,26754,28826,0.916650696,0.939590198,0.502941177,4617,9180,0.45910263,0.546779723,0.053652766,907,16905,,,0.206,1535,,0.135702128,0.276297872,,,,,,,,,,0.333333333,0.049741008,0.616925658,0.189545202,0.152440861,0.226649544,4.553744567,108962,23928,4.083398267,5.024090867,0.183779011,1457,7928,0.146335859,0.221222163,19.0280664,76,39941,,,75.29638725,153,203197,63.36517711,87.2275974,,,,,,,,,,,,,79.11893158,66.4572655,91.78059765,,,,7.3,,,,,1,,,,,0.096131301,1640,17060,0.081033584,0.111229018,0.085028165,0.069812715,0.100243615,0.005861665,0.002025424,0.009697905,0.008499414,0.00300021,0.013998618,0.800266158,13831,17283,0.780193457,0.820338859,,,,,,,,,,,,,0.796199878,0.770846136,0.821553621,0.273,,17283,0.248321497,0.297678503,75.65619953,,,74.81809096,76.4943081,,,,,,,,,,,,,75.37843681,74.50691935,76.24995428,,,,460.5766973,741,110577,425.3102639,495.8431307,,,,,,,,,,,,,472.5962492,435.5882104,509.6042879,,,,46.5269035,17,36538,27.10363586,74.49407963,,,,,,,,,,,,,47.13090609,26.9393851,76.53763873,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.125,,,0.106,0.144,0.175,,,0.149,0.201,0.094,,,0.079,0.11,63.6,22,34585,,,0.124,5040,,,,0.00713038,309.8150198,43450,,,19.02414412,23,120899,12.05967546,28.54555695,,,,,,,,,,,,,19.51946623,12.23274557,29.55270645,,,,0.37,,,0.351,0.389,0.073003006,1603,21958,0.061088112,0.084917899,0.046954158,380,8093,0.031464796,0.06244352,0.000953193,38,39866,,,1049.105263,0.888984881,411.6,463,,,,,,,,2.962294069,,,,,,,,,2.973515862,2.859055755,,,,,,,,,2.879346903,0.059233688,,,,,3946.74686,,,,,0.813945434,42304,51974,0.740693689,0.887197179,58112,,,52359.48936,63864.51064,,,,,,,,,,121830,39179.95745,204480.0426,57082,53991.2766,60172.7234,,,,,,0.734325186,4146,5646,,,,,,,,0.289836867,,58112,,,4.106776181,8,1948,,,,,,,,,,,,,,,,,,,,,,,,,,13.77981975,29,203197,9.080988045,20.04891427,14.27186425,,,,,,,,,,,,,15.18102684,9.916750749,22.24372169,,,,9.842665,20,203197,6.012155487,15.2011978,,,,,,,,,,,,,10.54919088,6.443719848,16.29236972,,,,13.2177591,38,287492,9.353673022,18.14240707,,,,,,,,,,,,,14.15876446,10.01958442,19.43401044,,,,12.63157895,,3800,,,34,14,0.597574827,19466,32575,,,0.621,,,,,33.77996179,,,,,0.774339338,12336,15931,0.754652066,0.794026611,0.085162136,1300,15265,0.06976391,0.100560361,0.841566757,13407,15931,0.822254225,0.860879288,39866,,,,,0.191566749,7637,39866,,,0.20992826,8369,39866,,,0.022826469,910,39866,,,0.003837857,153,39866,,,0.006647268,265,39866,,,0.000802689,32,39866,,,0.022951889,915,39866,,,0.931470426,37134,39866,,,0.006040651,233,38572,0.002192035,0.009889268,0.481889329,19211,39866,,,0.723906807,29269,40432,, -42,085,42085,PA,Mercer County,2024,1,10219.21424,2029,295211,9477.841695,10960.58678,0,,,,2,,,,2,19354.41307,15185.59542,23523.23072,,,,,2,9622.761328,8869.090478,10376.43218,,,,,2,,0.167,,,0.141,0.198,4.008805436,,,3.128194217,4.953752814,5.451203283,,,4.386607284,6.561416442,0.082821667,607,7329,0.07651162,0.089131714,0,,,,,,,0.164259928,0.133406557,0.195113298,0.084745763,0.034494736,0.134996789,0.075376089,0.068864773,0.081887404,,,,0.08203125,0.04841574,0.11564676,0.201,,,0.16,0.243,0.403,,,0.334,0.474,7.5,0.078646703,0.119,,,0.27,,,0.222,0.322,0.870684669,96343,110652,,,0.174740571,,,0.140337489,0.211961142,0.360655738,22,61,0.295482933,0.425083175,368.3,405,109972,,,15.65435191,375,23955,14.06991289,17.23879093,,,,,,,28.71148459,20.60385705,38.95037084,30.06012024,16.82442111,49.57959694,13.6768601,12.08617832,15.26754188,,,,37.73584906,26.13317246,52.7320667,0.069464634,5591,80487,0.059932719,0.078996549,0.000618339,68,109972,,,1617.235294,0.000576817,63,109220,,,1733.650794,0.002169932,237,109220,,,460.8438819,2771,,,,,,,7009,,2632,0.49,,,,,,0.36,0.38,,0.5,0.45,,,,,,0.21,0.3,,0.45,0.905066579,71436,78929,0.896211527,0.913921631,0.597247512,14104,23615,0.562453436,0.632041588,0.050002093,2389,47778,,,0.184,3650,,0.128,0.24,,,,0.65248227,0.043847048,1,0.547368421,0.434406461,0.660330381,0.373015873,0.164796913,0.581234833,0.176785929,0.148876832,0.204695027,4.631035906,112210,24230,4.309741634,4.952330178,0.233625304,4801,20550,0.200575371,0.266675237,15.73127705,173,109972,,,112.6506703,620,550374,103.7833171,121.5180235,,,,,,,161.0000947,119.8751455,211.6853912,113.2759402,54.32021631,208.3184871,111.3045867,102.0107865,120.598387,,,,8,,,,,1,,,,,0.109782144,5140,46820,0.096302963,0.123261326,0.085078817,0.072350116,0.097807517,0.012281077,0.008336615,0.016225538,0.019863306,0.015269547,0.024457066,0.80885504,38127,47137,0.795878272,0.821831808,,,,,,,0.771200911,0.636127578,0.906274243,0.62173315,0.495021971,0.748444329,0.824498727,0.807637486,0.841359968,0.264,,47137,0.244494479,0.283505522,75.04818392,,,74.49195631,75.60441153,,,,,,,67.25911572,64.64260243,69.87562901,93.97021924,69.5045809,118.4358576,75.49432371,74.92440065,76.06424676,,,,473.5094069,2029,295211,451.0765568,495.9422569,,,,,,,844.2575425,710.3655696,978.1495155,,,,456.6339735,433.6298316,479.6381154,,,,62.18003192,60,96494,47.44991497,80.03802662,,,,,,,205.1808156,117.2785644,333.2007899,,,,48.64298543,34.58991779,66.4965624,,,,7.396645093,56,7571,5.587346214,9.605158897,,,,,,,,,,,,,5.815733089,4.115558868,7.982548044,,,,,,,0.121,,,0.103,0.14,0.178,,,0.154,0.203,0.092,,,0.078,0.107,79.4,76,95691,,,0.119,13280,,,,0.078646703,9173.194179,116638,,,47.56953232,156,327941,40.10465536,55.03440929,,,,,,,105.9490385,64.7164252,163.629697,,,,43.78313433,36.22754987,51.33871879,,,,0.371,,,0.352,0.388,0.074921057,4508,60170,0.064197653,0.085644461,0.053714179,1149,21391,0.038224817,0.069203541,0.001171947,128,109220,,,853.28125,0.930841766,1011.825,1087,,,0.068526677,420,6129,0.043035683,0.09401767,3.241544111,,,,,,,2.721650021,,3.322805634,3.287203442,,,,,,,2.54395246,,3.408982257,0.229674079,,,,,3368.776208,,,,,0.744607981,42395,56936,0.701955768,0.787260194,57702,,,52318.85106,63085.14894,,,,,,,22104,15904.68085,28303.31915,54297,7764.574468,100829.4255,59831,57090.57447,62571.42553,,,,,,0.653035096,8671,13278,,,64.22915454,,,,,0.41083498,,57702,,,4.162724693,22,5285,,,3.987030575,31,777521,2.708993838,5.659271647,,,,,,,33.53379088,18.7686082,55.3088884,,,,1.856174995,0.98833501,3.174115771,,,,16.6779355,92,550374,13.26445705,20.70171547,16.71590591,,,,,,,,,,,,,16.22269496,12.69325969,20.42979945,,,,14.53557036,80,550374,11.52580329,18.09077554,,,,,,,34.72551062,17.33484979,62.13353068,,,,13.13030515,10.13369231,16.73565177,,,,11.70386395,91,777521,9.423221173,14.36975142,,,,,,,,,,,,,12.42209419,9.94958822,15.3226073,,,,19.5,,10000,,,158,37,0.653628828,57954,88665,,,0.695,,,,,52.97613181,,,,,0.723621704,33207,45890,0.710341382,0.736902026,0.096618358,4280,44298,0.08474089,0.108495825,0.826999346,37951,45890,0.809542781,0.844455912,109220,,,,,0.186962095,20420,109220,,,0.232933529,25441,109220,,,0.055585058,6071,109220,,,0.00274675,300,109220,,,0.007013368,766,109220,,,0.000283831,31,109220,,,0.017185497,1877,109220,,,0.898159678,98097,109220,,,0.004547742,479,105327,0.002758218,0.006337265,0.504321553,55082,109220,,,0.479440046,53051,110652,, -42,087,42087,PA,Mifflin County,2024,1,9277.589092,760,124388,8210.680564,10344.49762,0,,,,2,,,,2,,,,2,,,,2,9226.235548,8137.071189,10315.39991,,,,,2,,0.188,,,0.158,0.222,4.271591709,,,3.389934326,5.238326422,5.442335123,,,4.29097499,6.555612238,0.069148936,273,3948,0.061234858,0.077063015,0,,,,,,,,,,,,,0.06629393,0.058337188,0.074250671,,,,,,,0.234,,,0.188,0.278,0.358,,,0.276,0.436,7.7,0.069406581,0.115,,,0.292,,,0.238,0.349,0.688901892,31788,46143,,,0.165074076,,,0.129825189,0.200596564,0.3125,10,32,0.219087806,0.407096383,203.7,94,46136,,,17.47014595,158,9044,14.74603959,20.19425232,,,,,,,,,,,,,17.31909846,14.50975444,20.12844248,,,,,,,0.093807429,3369,35914,0.080701046,0.106913812,0.000606901,28,46136,,,1647.714286,0.000347917,16,45988,,,2874.25,0.001022006,47,45988,,,978.4680851,2973,,,,,,,,,2956,0.57,,,,,,,,,0.57,0.57,,,,,,,0.26,0.45,0.58,0.847758887,27425,32350,0.830176334,0.86534144,0.426605505,4278,10028,0.375985495,0.477225514,0.047675691,1002,21017,,,0.206,2089,,0.146425532,0.265574468,,,,,,,,,,0.485795455,0.265935641,0.705655268,0.268031294,0.210230833,0.325831755,3.819098084,103066,26987,3.418038553,4.220157616,0.149763582,1552,10363,0.106469995,0.193057169,15.82278481,73,46136,,,92.22855361,213,230948,79.84253674,104.6145705,,,,,,,,,,,,,93.24684613,80.51308752,105.9806047,,,,9.3,,,,,0,,,,,0.107470511,2050,19075,0.088131065,0.126809958,0.073001588,0.057365038,0.088638139,0.015727392,0.008472093,0.022982691,0.02542595,0.017449753,0.033402147,0.805043693,16951,21056,0.782657171,0.827430215,,,,,,,,,,,,,0.799621582,0.777496268,0.821746896,0.318,,21056,0.280190154,0.355809846,75.9838023,,,75.15485343,76.81275116,,,,,,,,,,,,,75.960725,75.11911984,76.80233017,,,,435.7279469,760,124388,402.3706543,469.0852395,,,,,,,,,,,,,436.4295926,402.4864048,470.3727803,,,,71.2520318,32,44911,48.736337,100.5866093,,,,,,,,,,,,,72.1795828,48.69926141,103.0408426,,,,10.24743814,41,4001,7.353738533,13.90180694,,,,,,,,,,,,,9.713835652,6.839436746,13.38924288,,,,,,,0.133,,,0.115,0.153,0.185,,,0.16,0.211,0.096,,,0.08,0.111,67.2,26,38672,,,0.115,5300,,,,0.069406581,3240.037996,46682,,,23.13174977,32,138338,15.82209972,32.6551288,,,,,,,,,,,,,22.68756948,15.30720786,32.38791614,,,,0.378,,,0.36,0.395,0.103099625,2641,25616,0.087610264,0.118588987,0.070898981,765,10790,0.048260683,0.093537278,0.001522136,70,45988,,,656.9714286,0.86,348.3,405,,,0.139446036,292,2094,0.073715111,0.205176962,2.73399618,,,,,,,,2.641826578,2.756292486,2.819925028,,,,,,,,2.698224692,2.836656667,0.046497854,,,,,3286.366,,,,,0.818179992,40738,49791,0.735621411,0.900738574,57096,,,51195.74468,62996.25532,56282,54971.3617,57592.6383,,,,58110,20567.3617,95652.6383,25625,815.8085106,50434.19149,58669,56137.08511,61200.91489,,,,,,0.591253994,2961,5008,,,61.32162724,,,,,0.355103685,,57096,,,2.714625042,8,2947,,,,,,,,,,,,,,,,,,,,,,,,,,16.53323332,40,230948,11.51600279,22.99372526,17.31991617,,,,,,,,,,,,,17.25127619,12.01614596,23.99234908,,,,12.55693922,29,230948,8.409579272,18.03385933,,,,,,,,,,,,,12.22167401,8.054160182,17.78189402,,,,15.13326539,49,323790,11.19567304,20.0069794,,,,,,,,,,,,,15.80028441,11.68913739,20.88881391,,,,,,4600,,,54,-888,0.602887985,21502,35665,,,0.658,,,,,66.28238125,,,,,0.715022566,13308,18612,0.690559496,0.739485636,0.090686955,1633,18007,0.073153554,0.108220356,0.813185042,15135,18612,0.789854812,0.836515272,45988,,,,,0.224884753,10342,45988,,,0.219970427,10116,45988,,,0.008589197,395,45988,,,0.001804819,83,45988,,,0.005675394,261,45988,,,0.000391407,18,45988,,,0.020287901,933,45988,,,0.952400626,43799,45988,,,0.006182846,267,43184,0.002429889,0.009935802,0.506436462,23290,45988,,,0.544914722,25144,46143,, -42,089,42089,PA,Monroe County,2024,1,8058.824726,2564,474782,7548.915305,8568.734147,0,,,,2,3103.92187,1549.466614,5553.773617,1,7760.363878,6404.620144,9116.107613,,5621.178479,4648.25312,6594.103838,,9041.298212,8344.882061,9737.714363,,,,,2,,0.167,,,0.142,0.196,3.642694891,,,2.859248891,4.446593263,4.641914698,,,3.724960853,5.561400105,0.092913386,944,10160,0.087268272,0.0985585,0,,,,0.111111111,0.07004654,0.152175683,0.145173176,0.126429775,0.163916578,0.086336966,0.075067268,0.097606663,0.080224834,0.073276266,0.087173402,,,,0.120689655,0.078769953,0.162609358,0.171,,,0.138,0.208,0.333,,,0.268,0.399,8.5,0.055103681,0.086,,,0.252,,,0.208,0.301,0.769335876,129500,168327,,,0.162896555,,,0.129367881,0.196951644,0.255319149,24,94,0.202434641,0.310435683,354.5,600,169273,,,8.052898807,341,42345,7.198164524,8.90763309,,,,,,,10.01001001,7.803293881,12.64704545,13.00108342,10.67489445,15.3272724,5.577386234,4.625905879,6.52886659,,,,10.72961373,6.005283357,17.69686615,0.072302351,9705,134228,0.062770436,0.081834266,0.000401718,68,169273,,,2489.308824,0.000370818,62,167198,,,2696.741936,0.001519157,254,167198,,,658.2598425,3278,,,,,,,3638,3424,3214,0.45,,,,,,0.45,0.44,0.43,0.45,0.48,,,,,,0.52,0.37,0.42,0.49,0.898950363,106798,118803,0.887615974,0.910284753,0.603728186,22833,37820,0.56342832,0.644028053,0.057186848,4717,82484,,,0.161,5062,,0.118106383,0.203893617,,,,0.177333333,0.004580705,0.350085961,0.184829573,0.117189444,0.252469701,0.141176471,0.081440598,0.200912343,0.128477749,0.095538807,0.16141669,4.191944102,142786,34062,3.870877972,4.513010232,0.231160241,7549,32657,0.184749745,0.277570738,7.207292362,122,169273,,,93.00667689,788,847251,86.51275456,99.50059922,,,,,,,58.51022638,45.43548022,74.17565386,44.96776157,34.70516903,57.31510351,117.7024914,108.5976117,126.8073711,,,,7.9,,,,,1,,,,,0.156630525,9390,59950,0.139538621,0.17372243,0.138757994,0.122896247,0.154619741,0.019599666,0.013780851,0.025418482,0.00442035,0.001986583,0.006854118,0.737173706,57215,77614,0.719347446,0.754999965,,,,0.7538844,0.560566731,0.94720207,0.643977733,0.571820157,0.716135309,0.698486253,0.641341668,0.755630837,0.749868259,0.730865852,0.768870667,0.489,,77614,0.45718478,0.52081522,77.50784097,,,77.07109588,77.94458605,,,,85.08195865,81.53226272,88.63165457,77.41295354,76.12066292,78.70524417,81.63676977,80.11748724,83.1560523,76.53497409,75.98838333,77.08156485,,,,386.0268458,2564,474782,369.911307,402.1423845,,,,142.5281421,89.3216278,215.7893199,363.7120357,320.5724645,406.8516068,267.9730874,231.7235521,304.2226228,429.6023879,408.3569746,450.8478012,,,,40.20256907,62,154219,30.82307918,51.53787917,,,,,,,53.80349309,28.64809408,92.00561178,33.4413747,17.80612361,57.1857692,38.51123037,26.1665126,54.66361745,,,,5.969857115,61,10218,4.566467661,7.668531211,,,,,,,19.0755686,12.46079473,27.95012772,,,,4.54316002,2.993971081,6.610059304,,,,,,,0.113,,,0.098,0.132,0.156,,,0.135,0.178,0.098,,,0.084,0.114,234,344,147036,,,0.086,14420,,,,0.055103681,9358.919358,169842,,,39.43511648,201,509698,33.98330072,44.88693224,,,,,,,18.32043856,9.75486195,31.3285079,15.59176309,8.524161972,26.16032912,52.4817703,44.59244095,60.37109966,,,,0.377,,,0.363,0.391,0.081754462,8328,101866,0.069839568,0.093669355,0.043741627,1502,34338,0.030635244,0.05684801,0.000992835,166,167198,,,1007.216868,0.916869525,1988.69,2169,,,0.060573165,558,9212,0.035211545,0.085934786,3.080107918,,,,,,3.389793631,2.957327526,2.981057574,3.143486339,3.12245681,,,,,,3.63324946,2.864463018,2.948808113,3.239428002,0.064602684,,,,,7587.0885,,,,,0.764602433,46955,61411,0.700336206,0.82886866,79824,,,74027.40426,85620.59575,110750,38031.02128,183468.9787,94700,68733.87234,120666.1277,92520,73723.06383,111316.9362,85430,75049.74468,95810.25532,79082,76364.21277,81799.78723,,,,,,0.438261195,9356,21348,,,39.09993459,,,,,0.255938064,,79824,,,7.793219899,60,7699,,,3.983908401,47,1179746,2.927226044,5.297753613,,,,,,,11.913869,7.172927403,18.60498224,5.126916826,2.458555899,9.428582583,1.949819447,1.091299143,3.215930658,,,,15.02180699,130,847251,12.30450492,17.73910905,15.34374111,,,,,,,,,,,,,19.3474644,15.46908485,23.22584396,,,,13.69133822,116,847251,11.19976889,16.18290755,,,,,,,15.4880011,9.179171031,24.47771902,7.609928882,3.798849079,13.61626485,15.40032597,12.28390313,19.06665147,,,,13.30794934,157,1179746,11.22625297,15.3896457,,,,,,,16.30318916,10.64978443,23.88794949,10.76652534,6.664648875,16.45777765,13.77872409,11.15564043,16.40180775,,,,4.484848485,,16500,,,59,15,0.640918995,83829,130795,,,0.551,,,,,65.25455705,,,,,0.787035001,46524,59113,0.775324137,0.798745864,0.140300061,8089,57655,0.123785819,0.156814303,0.907871365,53667,59113,0.894489982,0.921252748,167198,,,,,0.19069008,31883,167198,,,0.196180576,32801,167198,,,0.143482578,23990,167198,,,0.007195062,1203,167198,,,0.0276977,4631,167198,,,0.001495233,250,167198,,,0.187891004,31415,167198,,,0.618356679,103388,167198,,,0.016658559,2671,160338,0.012671945,0.020645173,0.497583703,83195,167198,,,0.567603534,95543,168327,, -42,091,42091,PA,Montgomery County,2024,1,5424.500378,8913,2323962,5244.360728,5604.640028,0,,,,2,2700.404903,2249.065437,3151.74437,,9828.166285,9038.886695,10617.44588,,5409.771941,4670.634935,6148.908947,,5198.339801,4993.2154,5403.464201,,,,,2,,0.117,,,0.097,0.138,3.0360729,,,2.421413344,3.722782337,4.7095594,,,3.934961776,5.538249373,0.073623635,4401,59777,0.071530046,0.075717223,0,,,,0.085334696,0.078188187,0.092481205,0.1245402,0.115974774,0.133105625,0.077922078,0.070914574,0.084929582,0.062441384,0.060085426,0.064797342,,,,0.096638656,0.081313738,0.111963573,0.126,,,0.098,0.159,0.305,,,0.257,0.356,9.2,0.037734311,0.06,,,0.199,,,0.164,0.239,0.965761605,827226,856553,,,0.185623084,,,0.155426743,0.219383978,0.231155779,46,199,0.19544846,0.268343836,223.7,1925,860578,,,5.679542522,1021,179768,5.331159842,6.027925201,,,,,,,13.9821864,12.34733607,15.61703672,25.8126195,23.11217913,28.51305988,2.314777344,2.046501063,2.583053626,,,,11.53070049,9.143128364,14.35095488,0.046658935,32308,692429,0.041892978,0.051424893,0.001306099,1124,860578,,,765.63879,0.001070913,926,864683,,,933.7829374,0.004275555,3697,864683,,,233.8877468,2948,,,,,,1800,4535,4514,2848,0.49,,,,,,0.4,0.46,0.4,0.49,0.62,,,,,,0.58,0.48,0.49,0.63,0.947819427,571737,603213,0.945034723,0.950604131,0.800260073,173546,216862,0.784833372,0.815686774,0.034861454,16275,466848,,,0.072,12932,,0.056510638,0.087489362,0.07198748,0,0.205838418,0.066150219,0.04403172,0.088268718,0.19381317,0.151926276,0.235700064,0.180649366,0.141597259,0.219701473,0.042347407,0.035088363,0.049606451,4.520842749,210070,46467,4.392630287,4.64905521,0.171450839,31238,182198,0.158597647,0.184304031,10.71372961,922,860578,,,68.53999757,2865,4180041,66.03020493,71.04979022,,,,23.79274143,18.86616422,29.61212626,74.92950045,66.3933305,83.4656704,37.49514961,29.99127987,46.30620474,76.29816262,73.23858077,79.35774447,,,,7.6,,,,,1,,,,,0.133186882,42440,318650,0.12800529,0.138368475,0.117189107,0.112119288,0.122258926,0.012882473,0.01089948,0.014865466,0.009508866,0.007849795,0.011167936,0.694182783,308188,443958,0.684848324,0.703517242,0.576344086,0.535904367,0.616783805,0.614298597,0.587007274,0.64158992,0.677345069,0.655580666,0.699109471,0.664227239,0.626232367,0.702222111,0.747633116,0.738365747,0.756900484,0.445,,443958,0.434210605,0.455789395,80.1145731,,,79.93757027,80.29157593,,,,86.1618885,85.23846528,87.08531172,75.31633982,74.63823933,75.99444031,83.38619373,81.54148338,85.23090409,80.26119328,80.06502969,80.45735688,,,,281.7594029,8913,2323962,275.6666883,287.8521174,,,,140.4832808,124.2189729,156.7475887,498.8392294,471.4234336,526.2550253,257.9389702,225.191699,290.6862414,273.1881419,266.3707792,280.0055046,,,,30.04826581,239,795387,26.23869077,33.85784086,,,,27.13239179,16.33547227,42.37059073,66.65926008,50.07648776,86.97587477,37.40441095,24.64974251,54.42145412,24.38072947,20.18959987,28.57185907,,,,4.081700377,246,60269,3.571630543,4.59177021,,,,3.816793893,2.41951992,5.727064868,12.07600781,9.377492586,15.3092174,4.998148834,3.293811576,7.27204414,2.921485088,2.398765082,3.444205094,,,,,,,0.089,,,0.075,0.104,0.142,,,0.121,0.164,0.076,,,0.064,0.089,114.3,838,732936,,,0.06,51400,,,,0.037734311,30182.69417,799874,,,25.85767902,653,2525362,23.87437624,27.8409818,,,,,,,38.59273461,31.14931767,47.2787072,18.24932793,11.9210669,26.73949371,27.69616299,25.31791677,30.07440922,,,,0.323,,,0.308,0.339,0.052473097,26697,508775,0.04651565,0.058430544,0.031665838,6111,192984,0.024516901,0.038814774,0.001297585,1122,864683,,,770.6622103,0.891724566,8265.395,9269,,,0.04151033,1748,42110,0.030532215,0.052488446,3.422990196,,,,,,3.819987886,2.954427482,2.801051099,3.552892457,3.448126688,,,,,,4.010063532,2.772142746,2.79044997,3.597346992,0.125723011,,,,,8682.496952,,,,,0.808728036,68623,84853,0.786449091,0.83100698,106743,,,104065.7234,109420.2766,124605,49499.46809,199710.5319,117154,108637.234,125670.766,74922,70061.91489,79782.08511,85265,77706.19149,92823.80851,112280,110572.5957,113987.4043,,,,,,0.312528014,36257,116012,,,50.08424938,,,,,0.286370066,,106743,,,8.617116429,395,45839,,,2.061490836,120,5821030,1.692643325,2.430338347,,,,,,,10.65704348,8.092339916,13.77669998,,,,1.048629988,0.767728946,1.398725452,,,,11.63780958,519,4180041,10.60237347,12.67324569,12.41614616,,,,8.467935981,5.580423169,12.32040227,7.580229916,5.114349293,10.82124954,6.777863852,3.793518946,11.17905568,13.01584225,11.73802412,14.29366038,,,,6.507113208,272,4180041,5.733791891,7.280434525,,,,4.461139018,2.496865643,7.357970382,11.8975896,8.741901328,15.82127196,5.231881341,2.703389435,9.139043808,6.291644217,5.413052481,7.170235954,,,,5.531667076,322,5821030,4.927462278,6.135871874,,,,3.039335514,1.661633008,5.09948855,8.268395803,6.031024636,11.06376412,4.514177743,2.467942978,7.574023204,5.5850945,4.885730046,6.284458954,,,,6.519666269,,83900,,,398,149,0.830002685,510157,614645,,,0.753,,,,,170.8324138,,,,,0.71737139,236503,329680,0.709829372,0.724913409,0.120160168,38861,323410,0.114788051,0.125532285,0.929522567,306445,329680,0.925101655,0.93394348,864683,,,,,0.209613234,181249,864683,,,0.189951693,164248,864683,,,0.097167401,84019,864683,,,0.002759393,2386,864683,,,0.086033841,74392,864683,,,0.000680018,588,864683,,,0.059772194,51684,864683,,,0.735060132,635594,864683,,,0.020333538,16493,811123,0.018371851,0.022295224,0.509364704,440439,864683,,,0.033365127,28579,856553,, -42,093,42093,PA,Montour County,2024,1,7961.970489,262,48675,6331.881338,9592.05964,0,,,,2,,,,2,,,,2,,,,2,7918.911241,6174.065968,9663.756513,,,,,2,,0.145,,,0.118,0.173,3.500706749,,,2.739993024,4.351082649,5.119908826,,,4.145468759,6.154830135,0.069690993,106,1521,0.056894428,0.082487558,0,,,,,,,,,,,,,0.066260472,0.052806087,0.079714857,,,,,,,0.172,,,0.13,0.214,0.337,,,0.264,0.412,8.7,0.042721012,0.083,,,0.228,,,0.182,0.276,0.496195412,8999,18136,,,0.173445603,,,0.140037246,0.208244515,0.133333333,2,15,0.028850285,0.292021979,248.8,45,18087,,,9.881422925,30,3036,6.666954553,14.10634565,,,,,,,,,,,,,11.29723413,7.565934997,16.22471268,,,,,,,0.053596002,740,13807,0.044064087,0.063127917,0.005805275,105,18087,,,172.2571429,0.001547731,28,18091,,,646.1071429,0.006025095,109,18091,,,165.9724771,2597,,,,,,,70588,,2175,0.55,,,,,,,,,0.55,0.62,,,,,,0.55,,,0.63,0.926399759,12310,13288,0.909525429,0.943274089,0.72986396,3380,4631,0.650490775,0.809237146,0.034329651,317,9234,,,0.133,462,,0.087723404,0.178276596,,,,0.11627907,0,0.57264606,,,,0.440251572,0.156760267,0.723742878,0.102639296,0.045594612,0.159683981,4.892814954,140825,28782,4.24332033,5.542309577,0.230081074,823,3577,0.136446938,0.323715209,17.13938188,31,18087,,,133.1557923,121,90871,109.4298511,156.8817335,,,,,,,,,,,,,140.776699,115.1579538,166.3954442,,,,8.5,,,,,0,,,,,0.115050167,860,7475,0.083650217,0.146450117,0.090699253,0.060624875,0.120773631,0.014715719,0,0.030340053,0.016722408,0.008323507,0.02512131,0.773119889,6713,8683,0.737876099,0.80836368,,,,,,,,,,,,,0.855106054,0.829728121,0.880483988,0.212,,8683,0.169790323,0.254209677,77.74885374,,,76.35960955,79.13809794,,,,,,,,,,,,,77.66554943,76.22997559,79.10112328,,,,372.6707438,262,48675,324.414459,420.9270287,,,,,,,,,,,,,376.7682803,326.0980953,427.4384653,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.106,,,0.088,0.125,0.161,,,0.137,0.186,0.082,,,0.068,0.096,116.5,18,15454,,,0.083,1510,,,,0.042721012,780.3847196,18267,,,34.9528137,19,54359,21.04387712,54.58314828,,,,,,,,,,,,,32.57793252,18.62110328,52.90452141,,,,0.353,,,0.333,0.373,0.056644453,578,10204,0.045921049,0.067367857,0.045706737,173,3785,0.029025886,0.062387588,0.018959704,343,18091,,,52.74344023,0.925,171.125,185,,,,,,,,3.477081516,,,,,,,,,3.446010674,3.461270514,,,,,,,,,3.463708271,0.005344898,,,,,7918.936,,,,,0.812002476,56409,69469,0.672282824,0.951722128,76229,,,68257.93617,84200.06383,,,,112172,66474.80851,157869.1915,,,,,,,71344,64272.51064,78415.48936,,,,,,0.326107011,707,2168,,,54.726854,,,,,0.247150035,,76229,,,5.982053839,6,1003,,,12.52240336,16,127771,7.157635499,20.33559853,,,,,,,,,,,,,12.04777805,6.586632368,20.2141244,,,,20.16415051,19,90871,11.74636074,32.28475829,20.90876077,,,,,,,,,,,,,22.56701536,12.89899914,36.64741911,,,,11.00461093,10,90871,5.277138687,20.23787131,,,,,,,,,,,,,12.13592233,5.819646476,22.31839326,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1600,,,18,-888,0.692242295,9771,14115,,,0.607,,,,,95.68769906,,,,,0.695532556,5309,7633,0.668195656,0.722869456,0.11526864,841,7296,0.084440164,0.146097117,0.847897288,6472,7633,0.823961605,0.871832971,18091,,,,,0.198717594,3595,18091,,,0.221491349,4007,18091,,,0.020120502,364,18091,,,0.002819081,51,18091,,,0.036482229,660,18091,,,0.000331657,6,18091,,,0.031673208,573,18091,,,0.897186446,16231,18091,,,0.007949962,136,17107,0.001122307,0.014777618,0.502349234,9088,18091,,,0.542842964,9845,18136,, -42,095,42095,PA,Northampton County,2024,1,6157.375347,3813,845457,5840.596326,6474.154369,0,,,,2,2324.159091,1328.457736,3774.288755,1,10270.36456,8526.013831,12014.71529,,5318.448723,4609.235855,6027.661591,,6097.435276,5730.206714,6464.663838,,,,,2,,0.147,,,0.124,0.174,3.346220976,,,2.667219553,4.174483785,4.809159012,,,3.932972269,5.786547744,0.081111394,1591,19615,0.077290771,0.084932018,0,,,,0.084544254,0.064725842,0.104362666,0.128108515,0.110126398,0.146090633,0.092135345,0.08356417,0.10070652,0.071720163,0.067195536,0.07624479,,,,0.08249497,0.058307199,0.10668274,0.159,,,0.127,0.198,0.323,,,0.262,0.386,8.7,0.047521639,0.078,,,0.226,,,0.188,0.272,0.899552965,281516,312951,,,0.189488223,,,0.154470295,0.227189815,0.178947368,17,95,0.12884517,0.234375645,331.6,1040,313628,,,9.184209798,664,72298,8.485633531,9.882786066,,,,,,,13.41253114,10.45572602,16.9459262,23.2070561,20.66828464,25.74582756,4.798564603,4.178404963,5.418724244,,,,15.45253863,10.76325934,21.49074056,0.062183611,15146,243569,0.055034675,0.069332547,0.000806688,253,313628,,,1239.636364,0.000590219,188,318526,,,1694.287234,0.002806678,894,318526,,,356.2930649,3510,,,,,,1838,4833,5335,3407,0.5,,,,,,0.37,0.43,0.43,0.51,0.58,,,,,,0.58,0.43,0.45,0.58,0.919538089,202417,220129,0.913012505,0.926063673,0.683288157,50920,74522,0.656595223,0.70998109,0.042343116,6956,164277,,,0.143,8501,,0.113212766,0.172787234,,,,0.125893348,0.041745437,0.210041259,0.273151388,0.189000904,0.357301872,0.219125721,0.182372814,0.255878628,0.077195002,0.062390572,0.091999431,4.230182969,153746,36345,4.038673346,4.421692591,0.218872613,13388,61168,0.194082323,0.243662903,9.788666828,307,313628,,,83.62594805,1282,1533017,79.04818707,88.20370903,,,,28.5513485,15.20239061,48.82367548,99.55316834,79.62968449,122.947353,54.97853546,45.14162734,64.81544359,91.31795022,85.80490035,96.83100008,,,,8.6,,,,,1,,,,,0.133607979,15405,115300,0.122657245,0.144558713,0.115816126,0.106032056,0.125600196,0.011578491,0.00808269,0.015074291,0.013876843,0.010904069,0.016849617,0.773576301,118737,153491,0.763991285,0.783161317,,,,0.607660925,0.544629659,0.670692191,0.672106482,0.61526416,0.728948803,0.700358902,0.664195574,0.736522229,0.78529211,0.770957817,0.799626403,0.356,,153491,0.339533289,0.372466711,79.33990964,,,79.04059976,79.63921953,,,,87.2321553,84.33234428,90.13196632,75.89945618,74.18213983,77.61677253,81.80577779,80.47224582,83.13930975,79.25920577,78.92669061,79.59172093,,,,320.6859902,3813,845457,309.9362341,331.4357463,,,,109.1947538,73.67324182,155.8823007,456.0877015,396.2518817,515.9235212,274.9946348,243.3860045,306.603265,324.3698161,312.1555128,336.5841195,,,,28.78700107,81,281377,22.86103413,35.77961389,,,,,,,68.84343037,37.637344,115.5075783,20.55335968,10.94379841,35.14687102,25.4872309,18.59056111,34.10392022,,,,4.056178066,80,19723,3.216296942,5.048264715,,,,,,,,,,,,,3.222763716,2.312710884,4.372042884,,,,,,,0.106,,,0.091,0.123,0.155,,,0.133,0.178,0.09,,,0.076,0.105,71.4,194,271644,,,0.078,24170,,,,0.047521639,14148.85523,297735,,,33.0880564,306,924805,29.38068056,36.79543224,,,,,,,52.1269664,34.63799061,75.33797997,33.85788521,24.78822733,45.16167413,33.48990953,29.17109996,37.80871911,,,,0.361,,,0.345,0.376,0.069847667,12756,182626,0.060315752,0.079379582,0.040496458,2607,64376,0.029773054,0.051219863,0.001996697,636,318526,,,500.827044,0.880910201,3247.035,3686,,,0.03640625,699,19200,0.023080111,0.049732389,3.160373282,,,,,,3.487308766,2.688365984,2.784601081,3.350169029,3.130790642,,,,,,3.792902699,2.439356054,2.626328732,3.373478859,0.134520951,,,,,6263.82275,,,,,0.803648779,53433,66488,0.768958521,0.838339037,75468,,,70484,80452,,,,99901,83126.02128,116675.9787,61954,46795.87234,77112.12766,62352,54675.23404,70028.76596,86706,84344.46809,89067.53192,,,,,,0.441471491,18133,41074,,,51.76435607,,,,,0.285180474,,75468,,,7.314945306,109,14901,,,2.15343304,46,2136124,1.576583635,2.872377901,,,,,,,17.06208038,10.42196196,26.35099933,,,,1.417283339,0.898436061,2.126620888,,,,14.6135352,238,1533017,12.67336943,16.55370097,15.52494199,,,,,,,,,,6.180845921,3.379125981,10.37040921,16.98266978,14.52535521,19.43998435,,,,7.566778451,116,1533017,6.189765277,8.943791624,,,,,,,16.20632973,8.86015127,27.19146751,,,,8.057466196,6.503415129,9.870940447,,,,7.583829403,162,2136124,6.415979258,8.751679549,,,,,,,,,,4.414141551,2.35034447,7.548316487,8.442079019,7.028418267,9.855739771,,,,8.493150685,,29200,,,128,120,0.728544335,170942,234635,,,0.751,,,,,113.8442285,,,,,0.709188929,85375,120384,0.697206718,0.72117114,0.122575023,14488,118197,0.112749844,0.132400202,0.875323963,105375,120384,0.867124436,0.883523491,318526,,,,,0.189689382,60421,318526,,,0.203072905,64684,318526,,,0.060393814,19237,318526,,,0.004768842,1519,318526,,,0.033331659,10617,318526,,,0.001233808,393,318526,,,0.15631691,49791,318526,,,0.732021876,233168,318526,,,0.022605415,6771,299530,0.019642539,0.025568292,0.503607241,160412,318526,,,0.168579107,52757,312951,, -42,097,42097,PA,Northumberland County,2024,1,9645.726367,1652,246497,8864.663234,10426.7895,0,,,,2,,,,2,16352.596,10951.59019,23485.0556,,6933.170802,4291.742001,10598.08805,1,9683.124788,8847.953727,10518.29585,,,,,2,,0.17,,,0.143,0.202,3.910014613,,,3.062284082,4.795027747,5.135103139,,,4.130425625,6.182336114,0.079853363,501,6274,0.07314589,0.086560836,0,,,,,,,0.138211382,0.077218972,0.199203793,0.102974828,0.074478874,0.131470783,0.075705808,0.068753175,0.082658442,,,,,,,0.208,,,0.166,0.256,0.393,,,0.323,0.465,8.3,0.022481864,0.109,,,0.255,,,0.21,0.305,0.595807828,54604,91647,,,0.174297824,,,0.139890424,0.212154149,0.1875,9,48,0.116281691,0.268455771,246.5,225,91266,,,21.5957182,347,16068,19.32345316,23.86798323,,,,,,,31.6091954,15.77919646,56.55758194,40.06968641,29.33604652,53.44734644,19.88535843,17.56028681,22.21043005,,,,,,,0.061482874,4220,68637,0.053142448,0.069823299,0.000438279,40,91266,,,2281.65,0.000421599,38,90133,,,2371.921053,0.000543641,49,90133,,,1839.44898,3695,,,,,,,3266,4453,3592,0.56,,,,,,,0.38,0.39,0.56,0.53,,,,,,0.36,0.43,0.4,0.53,0.899093123,60179,66933,0.887899554,0.910286692,0.523282513,11395,21776,0.488524719,0.558040307,0.049510337,2093,42274,,,0.178,3059,,0.126765957,0.229234043,,,,,,,0.375,0.148511894,0.601488106,0.337809187,0.20315259,0.472465784,0.152078701,0.123945733,0.180211669,4.61211156,112946,24489,4.33858136,4.885641761,0.236185433,4193,17753,0.199801021,0.272569846,16.10676484,147,91266,,,105.3835632,480,455479,95.95580729,114.8113192,,,,,,,111.8568233,59.55904742,191.2785744,100.2897259,59.43804758,158.5010044,106.643967,96.74648011,116.5414538,,,,8.9,,,,,1,,,,,0.108194622,4225,39050,0.095374675,0.12101457,0.094076655,0.081255095,0.106898216,0.013060179,0.008143246,0.017977113,0.003072983,0.000998239,0.005147728,0.787687237,32025,40657,0.770165671,0.805208804,,,,,,,,,,0.656957929,0.471688147,0.84222771,0.766830425,0.748171149,0.785489701,0.328,,40657,0.301357488,0.354642512,75.47332397,,,74.87798664,76.0686613,,,,,,,67.0987918,63.23228825,70.96529535,78.88805692,73.52264905,84.2534648,75.46299028,74.83556238,76.09041818,,,,457.9414287,1652,246497,434.0936667,481.7891906,,,,,,,766.884935,534.1634559,1066.551301,401.9553961,260.1243388,593.3654575,456.9697078,432.1500086,481.7894069,,,,63.03710184,49,77732,46.63519496,83.33839164,,,,,,,,,,,,,58.29509275,41.45350965,79.69131084,,,,5.759651308,37,6424,4.055326053,7.938920632,,,,,,,,,,,,,5.552663543,3.798017753,7.838704161,,,,,,,0.123,,,0.105,0.143,0.176,,,0.153,0.204,0.091,,,0.077,0.107,125.7,99,78768,,,0.109,10010,,,,0.022481864,2125.165651,94528,,,43.32389754,118,272367,35.50685297,51.1409421,,,,,,,,,,,,,42.18358295,34.11485846,50.25230744,,,,0.368,,,0.35,0.385,0.067213886,3431,51046,0.057681971,0.0767458,0.04549147,840,18465,0.031193598,0.059789343,0.000532546,48,90133,,,1877.770833,0.851387316,751.775,883,,,0.093627065,357,3813,0.057381079,0.129873051,3.062428157,,,,,,,,,3.105620074,3.032530247,,,,,,,,2.520776256,3.096711731,0.056396458,,,,,2091.794617,,,,,0.821611988,42875,52184,0.773825156,0.869398821,57822,,,52593.74468,63050.25532,,,,141442,128222.4255,154661.5745,,,,28996,26608.25532,31383.74468,57150,55159.02128,59140.97872,,,,,,0.751854599,8108,10784,,,59.32187966,,,,,0.310176058,,57822,,,4.079003864,19,4658,,,4.054479732,26,641266,2.648520772,5.940752213,,,,,,,,,,,,,3.89455575,2.468814266,5.843745834,,,,13.03698057,62,455479,9.847995017,16.92960367,13.61204359,,,,,,,,,,,,,13.05417819,9.689062666,17.21030652,,,,9.660159964,44,455479,7.019087018,12.96831386,,,,,,,,,,,,,9.803593376,7.035227866,13.2996814,,,,11.0718485,71,641266,8.647205536,13.96563035,,,,,,,,,,,,,11.51433874,8.941334572,14.59716801,,,,20.98765432,,8100,,,61,109,0.580292321,42283,72865,,,0.648,,,,,76.49186417,,,,,0.737921906,27875,37775,0.719133055,0.756710757,0.101486431,3721,36665,0.088848108,0.114124754,0.80585043,30441,37775,0.790936876,0.820763984,90133,,,,,0.194934153,17570,90133,,,0.223957929,20186,90133,,,0.025318141,2282,90133,,,0.003605783,325,90133,,,0.004815107,434,90133,,,0.00037722,34,90133,,,0.047851508,4313,90133,,,0.908834722,81916,90133,,,0.005358192,465,86783,0.002411842,0.008304542,0.493859075,44513,90133,,,0.352592011,32314,91647,, -42,099,42099,PA,Perry County,2024,1,8520.359858,724,128462,7496.935912,9543.783804,0,,,,2,,,,2,,,,2,,,,2,8558.270421,7499.083231,9617.457611,,,,,2,,0.158,,,0.13,0.187,3.730083465,,,2.903494085,4.662725453,5.222176186,,,4.138872941,6.365582742,0.070618264,249,3526,0.062162157,0.079074372,0,,,,,,,,,,,,,0.068924183,0.060328977,0.07751939,,,,,,,0.2,,,0.155,0.243,0.348,,,0.272,0.426,9,0.022851485,0.078,,,0.247,,,0.198,0.3,0.464377645,21288,45842,,,0.177037793,,,0.140310106,0.218038967,0.5,18,36,0.423096645,0.570791161,119.6,55,45986,,,19.39058172,161,8303,16.39532555,22.38583789,,,,,,,,,,,,,19.30099113,16.191389,22.41059326,,,,,,,0.091855648,3370,36688,0.079940754,0.103770541,0.000260949,12,45986,,,3832.166667,0.000216854,10,46114,,,4611.4,0.000390337,18,46114,,,2561.888889,2826,,,,,,,,,2831,0.47,,,,,,,,,0.47,0.49,,,,,,,,,0.49,0.89146865,29488,33078,0.880573599,0.902363701,0.485132875,5221,10762,0.445743686,0.524522064,0.036362164,898,24696,,,0.131,1220,,0.089297872,0.172702128,,,,,,,,,,0.149456522,0,0.304322181,0.098347394,0.074846423,0.121848365,3.752300373,131717,35103,3.478188998,4.026411748,0.1484375,1425,9600,0.118106878,0.178768122,16.09185404,74,45986,,,100.981208,233,230736,88.01483013,113.9475858,,,,,,,,,,,,,101.7493589,88.39462249,115.1040954,,,,9.6,,,,,1,,,,,0.095083739,1760,18510,0.081920539,0.108246938,0.075605113,0.064220526,0.0869897,0.017828201,0.010690469,0.024965933,0.006753106,0.003338233,0.01016798,0.77556471,17133,22091,0.755898901,0.795230519,,,,,,,,,,0.560301508,0.290031452,0.830571564,0.657223796,0.622512738,0.691934854,0.594,,22091,0.552144961,0.635855039,76.68764908,,,75.86203012,77.51326805,,,,,,,,,,,,,76.60073397,75.75451358,77.44695436,,,,393.3190415,724,128462,362.5587147,424.0793684,,,,,,,,,,,,,396.3631934,364.857717,427.8686698,,,,63.06348391,27,42814,41.55923327,91.75405812,,,,,,,,,,,,,66.6273736,43.5232125,97.62453959,,,,5.892255892,21,3564,3.647399266,9.006939039,,,,,,,,,,,,,5.931198102,3.622929889,9.16025442,,,,,,,0.116,,,0.097,0.135,0.171,,,0.146,0.198,0.086,,,0.071,0.101,46,18,39170,,,0.078,3600,,,,0.022851485,1050.459932,45969,,,34.66454828,48,138470,25.55890144,45.9601619,,,,,,,,,,,,,34.27500743,25.00042561,45.86265662,,,,0.362,,,0.344,0.38,0.094007007,2549,27115,0.080900624,0.10711339,0.085429142,856,10020,0.061599355,0.109258929,0.000303595,14,46114,,,3293.857143,0.893502475,360.975,404,,,0.058151093,117,2012,0.025506279,0.090795908,3.154832165,,,,,,,,,3.181650549,3.12985589,,,,,,,,,3.154866168,0.053659179,,,,,5322.1775,,,,,0.822487917,48498,58965,0.775138347,0.869837486,67834,,,63561.31915,72106.68085,6576,2412.93617,10739.06383,68750,23438.85106,114061.1489,,,,48750,10552.04255,86947.95745,76495,73677.12766,79312.87234,,,,,,0.380346412,2152,5658,,,52.13644199,,,,,0.31267506,,67834,,,4.276827372,11,2572,,,,,,,,,,,,,,,,,,,,,,,,,,21.6424214,54,230736,16.01118249,28.61242884,23.40337009,,,,,,,,,,,,,21.56334104,15.78707579,28.76247514,,,,15.16885098,35,230736,10.5656605,21.09619971,,,,,,,,,,,,,15.51335517,10.74344943,21.67835891,,,,19.24025807,62,322241,14.75139554,24.66514251,,,,,,,,,,,,,20.21934731,15.50205764,25.92029073,,,,12.5,,4400,,,39,16,0.684777778,24652,36000,,,0.684,,,,,21.83679372,,,,,0.806708735,14574,18066,0.790608073,0.822809397,0.085647886,1511,17642,0.072835796,0.098459976,0.835990258,15103,18066,0.817232719,0.854747797,46114,,,,,0.206748493,9534,46114,,,0.206423212,9519,46114,,,0.01006202,464,46114,,,0.003144381,145,46114,,,0.005464718,252,46114,,,0.000607191,28,46114,,,0.025328534,1168,46114,,,0.944398664,43550,46114,,,0.004602886,200,43451,0.001909436,0.007296336,0.491564384,22668,46114,,,0.935168623,42870,45842,, -42,101,42101,PA,Philadelphia County,2024,1,11329.84544,27287,4460814,11144.05278,11515.63809,0,5457.494228,2819.966905,9533.144117,1,3745.492355,3373.076419,4117.908291,,15654.99373,15299.48532,16010.50215,,9654.348093,9226.648527,10082.04766,,9068.48344,8788.080113,9348.886767,,,,,2,,0.205,,,0.178,0.233,4.069474634,,,3.416919478,4.752547523,5.802717624,,,5.089830954,6.532718822,0.110349391,15678,142076,0.10872013,0.111978651,0,0.144736842,0.088803122,0.200670562,0.084934846,0.079644259,0.090225433,0.147499864,0.144536734,0.150462993,0.09357314,0.090209618,0.096936662,0.072038221,0.069510322,0.074566121,,,,0.116330391,0.105172528,0.127488254,0.189,,,0.158,0.223,0.313,,,0.278,0.351,7.9,0.003123746,0.136,,,0.302,,,0.265,0.341,1,1603797,1603797,,,0.18566703,,,0.16176188,0.209919204,0.180579216,106,587,0.160572172,0.201430769,1089,17165,1576251,,,22.96950246,7808,339929,22.46001,23.47899491,,,,4.555484376,3.766286972,5.34468178,26.71737318,25.87647014,27.55827623,41.73287872,40.160161,43.30559644,6.346735651,5.82976344,6.863707863,,,,27.31395589,24.02530526,30.60260651,0.083921082,107909,1285839,0.077963635,0.089878529,0.000708009,1116,1576251,,,1412.41129,0.000822456,1289,1567258,,,1215.871218,0.003430195,5376,1567258,,,291.5286458,4199,,,,,5412,2334,5555,4712,3424,0.41,,,,,,0.32,0.38,0.36,0.44,0.47,,,,,0.4,0.51,0.36,0.35,0.55,0.869031717,947255,1090012,0.865620243,0.872443192,0.679040759,344914,507943,0.666205791,0.691875726,0.054027647,39537,731792,,,0.283,91746,,0.247255319,0.318744681,0.373390558,0.1021855,0.644595616,0.243119055,0.206532097,0.279706013,0.357993801,0.338576011,0.377411592,0.455741984,0.431379662,0.480104306,0.112374483,0.096799093,0.127949874,6.293501805,122031,19390,6.065517921,6.521485689,0.479998359,163822,341297,0.461516402,0.498480316,7.606656554,1199,1576251,,,131.2026628,10370,7903803,128.677384,133.7279417,77.51937985,41.27580496,132.5605004,31.49512323,27.01672631,35.97352015,153.8014818,149.5064203,158.0965433,110.8719701,104.9443795,116.7995607,141.7165669,137.230656,146.2024777,,,,8.7,,,,,0,,,,,0.216472987,132725,613125,0.210409964,0.222536009,0.19360234,0.187842301,0.199362379,0.02759633,0.025106361,0.0300863,0.010405709,0.009066518,0.011744899,0.475218411,341002,717569,0.467940469,0.482496353,0.511597938,0.396396857,0.62679902,0.428517326,0.40779308,0.449241572,0.46692823,0.458286689,0.475569771,0.498700615,0.471622885,0.525778345,0.509509041,0.500432248,0.518585834,0.532,,717569,0.518156145,0.545843855,74.51705407,,,74.36371222,74.67039592,101.8865241,85.94579403,117.8272541,85.76896364,84.91720003,86.62072724,70.60947323,70.36233303,70.85661343,77.31849379,76.76906882,77.86791875,76.50555261,76.26452594,76.74657927,,,,541.2133515,27287,4460814,534.6318871,547.7948159,231.733665,141.5489429,357.8938509,202.9066189,188.2788292,217.5344087,717.1769584,705.3011623,729.0527544,445.4237691,427.8768304,462.9707079,459.841869,449.8009427,469.8827954,,,,73.71682986,1134,1538319,69.42624798,78.00741175,,,,30.50582471,20.86596152,43.06512239,107.0862037,99.28034927,114.892058,49.37454157,42.01694288,56.73214026,46.06344664,38.92584164,53.20105165,,,,7.56381756,1099,145297,7.116621189,8.011013931,,,,3.159264077,2.187882214,4.414754887,12.38524919,11.47486224,13.29563613,5.319521243,4.473839753,6.165202733,3.963884607,3.35347752,4.574291694,,,,,,,0.128,,,0.112,0.146,0.18,,,0.159,0.202,0.123,,,0.107,0.138,1263.5,16773,1327458,,,0.136,216630,,,,0.003123746,4766.854833,1526006,,,69.49013696,3293,4738802,67.116669,71.86360492,,,,9.589645375,6.679539369,13.3368753,73.14982738,69.31526514,76.98438962,64.51988934,58.72365135,70.31612733,84.04574021,79.57394554,88.51753488,,,,0.384,,,0.373,0.395,0.098582992,94756,961180,0.090242566,0.106923417,0.041315018,14040,339828,0.031783103,0.050846933,0.001838242,2881,1567258,,,543.9979174,0.732802015,10548.685,14395,,,0.09625759,7958,82674,0.081012856,0.111502324,2.485959917,,,,,,3.062702185,2.326658931,,3.156302978,2.263992003,,,,,,3.184853943,2.053418892,2.029139855,3.079419224,0.297548347,,,,,-16661.49,,,,,0.887311821,52575,59252,0.867020841,0.9076028,56385,,,53580.23404,59189.76596,39310,21065.91489,57554.08511,61534,56270,66798,42098,40764.7234,43431.2766,43759,39804.44681,47713.55319,82349,80445,84253,,,,,,0.949869803,171082,180111,,,70.6698668,,,,,0.425964352,,56385,,,10.68421978,1094,102394,,,23.91495624,2640,11039117,23.0026856,24.82722688,,,,2.891677751,1.852752498,4.30258728,46.67155925,44.67443245,48.66868605,19.72770935,17.5894575,21.86596119,4.359561964,3.696361407,5.022762521,,,,10.40292808,840,7903803,9.679814839,11.12604131,10.62779525,,,,5.187090652,3.592211066,7.248439271,8.73798092,7.679772971,9.796188868,8.005410345,6.274963797,10.06560162,14.65685017,13.20527059,16.10842976,,,,27.35392064,2162,7903803,26.20087152,28.50696976,,,,3.481039936,2.154818586,5.321139317,51.23593822,48.75693852,53.71493792,19.96355414,17.44827465,22.47883363,8.908109707,7.783418999,10.03280041,,,,8.080356427,892,11039117,7.550077752,8.610635102,,,,3.012164324,1.949313931,4.446548746,9.009524068,8.132057842,9.886990295,10.617972,9.049266886,12.18667712,7.32721559,6.467424501,8.187006679,,,,11.80782918,,140500,,,1426,233,0.650045594,741377,1140500,,,0.551,,,,,563.4159021,,,,,0.522126928,344149,659129,0.516365787,0.527888069,0.205999436,130094,631526,0.198918832,0.213080041,0.852277779,561761,659129,0.84702116,0.857534398,1567258,,,,,0.210817874,330406,1567258,,,0.147155733,230631,1567258,,,0.394793965,618744,1567258,,,0.009581703,15017,1567258,,,0.082462492,129240,1567258,,,0.001834414,2875,1567258,,,0.161029007,252374,1567258,,,0.339017571,531328,1567258,,,0.061716505,92211,1494106,0.058761757,0.064671252,0.525553546,823678,1567258,,,0,0,1603797,, -42,103,42103,PA,Pike County,2024,1,7601.124993,851,155111,6699.564587,8502.685399,0,,,,2,,,,2,7350.550385,4550.106541,11236.09708,1,4479.11027,2898.644001,6612.050344,,8488.966021,7361.597138,9616.334904,,,,,2,,0.15,,,0.126,0.179,3.588614203,,,2.805975521,4.442896896,4.775499303,,,3.760443746,5.821824198,0.080596004,238,2953,0.070777749,0.090414259,0,,,,,,,0.115646259,0.063947965,0.167344552,0.074766355,0.049848366,0.099684345,0.077822762,0.06668631,0.088959214,,,,,,,0.169,,,0.133,0.21,0.388,,,0.307,0.475,8.7,0.026694983,0.089,,,0.244,,,0.198,0.296,0.591423934,34619,58535,,,0.170304764,,,0.134299783,0.211235268,0.372093023,16,43,0.293881243,0.448595918,133.4,80,59952,,,7.831271692,88,11237,6.280908897,9.648345754,,,,,,,,,,9.783728115,5.890443442,15.27850338,7.44949495,5.670900711,9.609305728,,,,,,,0.063886327,2909,45534,0.054354412,0.073418242,0.0002502,15,59952,,,3996.8,0.000148618,9,60558,,,6728.666667,0.000924733,56,60558,,,1081.392857,3148,,,,,,,4188,,3116,0.4,,,,,,0.47,0.52,0.44,0.4,0.48,,,,,,0.44,0.42,0.41,0.48,0.930781356,41336,44410,0.921327897,0.940234814,0.654214085,7933,12126,0.596518334,0.711909837,0.056412841,1455,25792,,,0.13,1310,,0.081148936,0.178851064,,,,,,,0.050122249,0,0.131058335,0.162872154,0.062021645,0.263722663,0.150861445,0.101619423,0.200103467,4.190681366,141029,33653,3.686848527,4.694514204,0.161790521,1659,10254,0.120308564,0.203272478,6.338404057,38,59952,,,105.1305842,298,283457,93.19408378,117.0670846,,,,,,,,,,57.64388216,34.70538262,90.01806247,120.6053324,106.2722984,134.9383663,,,,7.3,,,,,1,,,,,0.17257319,3920,22715,0.145827579,0.1993188,0.160469234,0.132256401,0.188682068,0.010961919,0.005280337,0.016643502,0.003742021,0.001445988,0.006038054,0.750243712,19240,25645,0.722601007,0.777886418,,,,,,,,,,0.592545799,0.460897069,0.724194529,0.70567867,0.664944071,0.74641327,0.606,,25645,0.555929086,0.656070914,79.482481,,,78.66060503,80.30435697,,,,,,,81.19195594,76.78868195,85.59522993,94.6590961,83.87173479,105.4464574,78.36678712,77.42183454,79.31173969,,,,349.2365931,851,155111,322.7644514,375.7087348,,,,,,,378.3976738,272.7157599,511.4837284,216.796832,156.8969423,292.0239099,376.3827739,345.0231988,407.742349,,,,38.09011674,17,44631,22.18889666,60.98596674,,,,,,,,,,,,,47.54508859,26.61062516,78.4183932,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.109,,,0.094,0.128,0.158,,,0.136,0.183,0.089,,,0.076,0.105,239.4,127,53040,,,0.089,5170,,,,0.026694983,1531.464499,57369,,,37.82742547,65,171833,29.19440837,48.21415899,,,,,,,,,,,,,42.62605922,32.36775389,55.10406619,,,,0.353,,,0.338,0.369,0.068866612,2425,35213,0.058143208,0.079590016,0.047259151,519,10982,0.032961279,0.061557024,0.000198157,12,60558,,,5046.5,0.907417417,604.34,666,,,0.068460491,201,2936,0.024547852,0.112373129,,,,,,,,,,,3.31504969,,,,,,,3.148664808,,3.337194473,0.113133804,,,,,11580.0225,,,,,0.695100992,47319,68075,0.597944915,0.792257068,81886,,,74111.53192,89660.46809,,,,66354,11754,120954,68295,33067.42553,103522.5745,69792,39990.46809,99593.53192,76570,72060.21277,81079.78723,,,,,,0.448588595,3957,8821,,,62.34048619,,,,,0.255208461,,81886,,,4.748338082,10,2106,,,3.038220818,12,394968,1.569893032,5.307160339,,,,,,,,,,,,,,,,,,,15.60941238,48,283457,11.20158382,21.17593045,16.93378537,,,,,,,,,,,,,19.10292465,13.51836643,26.22025659,,,,12.34755183,35,283457,8.600522267,17.17245556,,,,,,,,,,,,,13.30205872,8.974843156,18.98951594,,,,15.95065929,63,394968,12.25692456,20.40782223,,,,,,,,,,,,,17.09629011,12.8432593,22.30695008,,,,8.62745098,,5100,,,38,6,0.725922622,32554,44845,,,0.426,,,,,19.51191944,,,,,0.84352397,20059,23780,0.832572514,0.854475426,0.164669501,3834,23283,0.134963608,0.194375394,0.889108495,21143,23780,0.872161158,0.906055831,60558,,,,,0.169440867,10261,60558,,,0.240942568,14591,60558,,,0.057581162,3487,60558,,,0.005482348,332,60558,,,0.016711252,1012,60558,,,0.000396314,24,60558,,,0.12602794,7632,60558,,,0.781696886,47338,60558,,,0.010743046,611,56874,0.007006028,0.014480064,0.489415106,29638,60558,,,0.872332792,51062,58535,, -42,105,42105,PA,Potter County,2024,1,7535.948409,300,44059,5988.084873,9083.811944,0,,,,2,,,,2,,,,2,,,,2,7577.871132,6015.867288,9139.874976,,,,,2,,0.175,,,0.146,0.206,4.053910757,,,3.195546309,5.031735884,5.472121816,,,4.392774099,6.673105785,0.065573771,76,1159,0.051322554,0.079824987,0,,,,,,,,,,,,,0.065934066,0.051214722,0.08065341,,,,,,,0.216,,,0.174,0.262,0.391,,,0.313,0.476,8.3,0.014734506,0.115,,,0.276,,,0.227,0.331,0.279702366,4586,16396,,,0.166100206,,,0.131004896,0.204302594,0.466666667,7,15,0.335227351,0.582964744,110.7,18,16259,,,23.54438435,74,3143,18.48740574,29.55781849,,,,,,,,,,,,,23.91377568,18.67685721,30.1639741,,,,,,,0.082590023,1000,12108,0.07067513,0.094504917,0.000369026,6,16259,,,2709.833333,0.000431566,7,16220,,,2317.142857,0.000308261,5,16220,,,3244,2599,,,,,,,,,2619,0.41,,,,,,,,,0.41,0.26,,,,,,,,,0.26,0.901063028,10765,11947,0.889411498,0.912714559,0.489608802,1602,3272,0.439186487,0.540031117,0.058695652,405,6900,,,0.229,731,,0.157510638,0.300489362,,,,,,,,,,0.538461539,0.389722787,0.68720029,0.185751464,0.15293,0.218572928,3.805524408,101813,26754,3.49750773,4.113541085,0.172195416,571,3316,0.131269246,0.213121587,19.06636325,31,16259,,,105.2478769,87,82662,84.29923488,129.8228673,,,,,,,,,,,,,108.023916,86.40518922,133.4086575,,,,6.8,,,,,1,,,,,0.124434389,825,6630,0.107365243,0.141503536,0.103704828,0.085069993,0.122339664,0.014177979,0.006331215,0.022024743,0.015082956,0.007976425,0.022189488,0.762818591,5088,6670,0.746231544,0.779405638,,,,,,,,,,,,,0.753255002,0.739982133,0.76652787,0.329,,6670,0.299596515,0.358403486,77.06397683,,,75.81123063,78.31672303,,,,,,,,,,,,,76.9145961,75.66493212,78.16426009,,,,407.757116,300,44059,356.2300767,459.2841552,,,,,,,,,,,,,414.5751147,361.6334661,467.5167633,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.127,,,0.109,0.148,0.182,,,0.157,0.209,0.095,,,0.08,0.111,50.1,7,13983,,,0.115,1890,,,,0.014734506,257.2202655,17457,,,,,,,,,,,,,,,,,,,,,,,,,,0.356,,,0.338,0.373,0.087780661,778,8863,0.073482789,0.102078534,0.068814056,235,3415,0.047367247,0.090260864,0.001726264,28,16220,,,579.2857143,0.838529412,142.55,170,,,,,,,,3.127423268,,,,,,,,,3.143586886,2.996504077,,,,,,,,,3.005216983,0.084663537,,,,,3594.0313,,,,,0.778412698,39232,50400,0.711744522,0.845080875,53935,,,48760.3617,59109.6383,,,,,,,,,,32045,22548.82979,41541.17021,56422,53527.87234,59316.12766,,,,,,0.464399575,874,1882,,,,,,,,0.318068045,,53935,,,4.801920768,4,833,,,,,,,,,,,,,,,,,,,,,,,,,,26.81352616,21,82662,15.89139496,42.37693134,25.40465994,,,,,,,,,,,,,27.98270653,16.58432534,44.22474039,,,,24.19491423,20,82662,14.77888218,37.3670827,,,,,,,,,,,,,25.12184093,15.34507309,38.79864581,,,,14.57475995,17,116640,8.490334765,23.33560255,,,,,,,,,,,,,15.1131262,8.803952945,24.19757907,,,,,,1600,,,21,-888,0.686146858,9064,13210,,,0.407,,,,,12.69290515,,,,,0.80045489,5279,6595,0.787195661,0.813714119,0.095192916,602,6324,0.076780605,0.113605227,0.828961334,5467,6595,0.814533928,0.84338874,16220,,,,,0.200369914,3250,16220,,,0.258569667,4194,16220,,,0.004562269,74,16220,,,0.004254007,69,16220,,,0.005610358,91,16220,,,0.000123305,2,16220,,,0.016892725,274,16220,,,0.958569667,15548,16220,,,0.004875858,76,15587,0,0.009875016,0.495745993,8041,16220,,,1,16396,16396,, -42,107,42107,PA,Schuylkill County,2024,1,10174.43532,2791,387744,9541.917749,10806.95288,0,,,,2,,,,2,13596.85489,8711.761485,20231.04229,1,6072.87207,4376.792026,8208.758837,,10599.80213,9895.823064,11303.78119,,,,,2,,0.173,,,0.145,0.204,3.846421586,,,3.022306777,4.743909458,4.885150363,,,3.843147724,5.956102932,0.085469133,767,8974,0.079684619,0.091253647,0,,,,,,,0.156862745,0.099236622,0.214488868,0.096456693,0.078303631,0.114609755,0.082682895,0.076474326,0.088891463,,,,0.092307692,0.042548575,0.14206681,0.209,,,0.165,0.254,0.394,,,0.315,0.475,8.3,0.024034374,0.11,,,0.266,,,0.211,0.319,0.749491433,107214,143049,,,0.17783105,,,0.141508875,0.215667789,0.247787611,28,113,0.199787368,0.297870163,264.5,379,143264,,,19.29446199,501,25966,17.60491653,20.98400745,,,,,,,21.07279694,10.51946431,37.70505462,48.61448712,39.08604764,58.14292659,16.30482942,14.63893136,17.97072748,,,,26.53399668,15.16647173,43.08954826,0.068669171,7439,108331,0.060328746,0.077009597,0.000502569,72,143264,,,1989.777778,0.000496143,71,143104,,,2015.549296,0.001027225,147,143104,,,973.4965986,3190,,,,,,,580,,3211,0.46,,,,,,0.38,0.22,0.2,0.47,0.53,,,,,,0.61,0.51,0.27,0.53,0.896626977,93676,104476,0.888440787,0.904813166,0.52787639,18141,34366,0.498198748,0.557554031,0.049536637,3266,65931,,,0.164,4548,,0.113957447,0.214042553,,,,,,,0.112769486,0.025188504,0.200350467,0.365453461,0.285231703,0.445675219,0.140541247,0.113669062,0.167413433,4.458770275,118202,26510,4.171320966,4.746219585,0.279896871,7925,28314,0.242314924,0.317478817,12.91322314,185,143264,,,110.9909179,788,709968,103.2412979,118.7405379,,,,,,,75.81501137,43.33482967,123.1188287,65.48788474,42.38030609,96.67303654,115.6380935,107.2949673,123.9812197,,,,8.8,,,,,1,,,,,0.110921647,6505,58645,0.099481959,0.122361336,0.095554024,0.085011834,0.106096214,0.0082701,0.00459616,0.01194404,0.011595191,0.007543954,0.015646429,0.803026955,50883,63364,0.787503141,0.81855077,,,,,,,0.777525539,0.561914797,0.993136281,0.697265625,0.643629667,0.750901583,0.793405837,0.779883336,0.806928337,0.373,,63364,0.350805012,0.395194988,74.58344705,,,74.1110494,75.05584469,,,,,,,70.9052172,65.38084205,76.42959235,88.54080746,74.25306587,102.8285491,74.27001767,73.75784053,74.78219481,,,,495.7314403,2791,387744,476.0794765,515.3834041,,,,,,,820.5860563,568.2796985,1146.686764,313.6647321,218.4789786,436.231712,507.9706995,486.9425601,528.998839,,,,66.00176005,81,122724,52.41492454,82.03416135,,,,,,,,,,,,,64.9785183,50.35745917,82.52042132,,,,7.489811653,68,9079,5.816131816,9.495120956,,,,,,,,,,,,,7.718034474,5.889673392,9.934640263,,,,,,,0.122,,,0.104,0.141,0.173,,,0.147,0.199,0.092,,,0.077,0.108,135.9,168,123623,,,0.11,15830,,,,0.024034374,3564.033286,148289,,,44.90609688,191,425332,38.53748626,51.27470751,,,,,,,,,,,,,46.09375206,39.26440618,52.92309793,,,,0.364,,,0.346,0.38,0.076874111,6159,80118,0.066150706,0.087597515,0.046107764,1370,29713,0.033001381,0.059214147,0.000768672,110,143104,,,1300.945455,0.90640625,1218.21,1344,,,0.05678934,358,6304,0.032558833,0.081019847,3.089817852,,,,,,,2.945704935,2.760162202,3.13794155,2.954995709,,,,,,,2.759341513,2.51183327,3.026041585,0.159007874,,,,,1013.428,,,,,0.739110382,43269,58542,0.704667318,0.773553447,63680,,,61242.21277,66117.78723,,,,,,,40263,10469.80851,70056.19149,63470,35338.93617,91601.06383,63767,61776.02128,65757.97872,,,,,,0.551021554,9817,17816,,,59.77804234,,,,,0.257160804,,63680,,,5.238649593,36,6872,,,10.72003575,107,998131,8.688799602,12.75127189,,,,,,,,,,,,,10.41831762,8.419061132,12.74938224,,,,19.77757453,143,709968,16.37727304,23.17787602,20.14175287,,,,,,,,,,,,,21.63067693,17.80841974,25.45293412,,,,13.66258761,97,709968,11.07943817,16.66719823,,,,,,,,,,,,,14.57228008,11.76171074,17.85202759,,,,15.8295855,158,998131,13.36129045,18.29788054,,,,,,,,,,,,,16.73580809,14.06640423,19.40521196,,,,7.669172932,,13300,,,42,60,0.626218458,70603,112745,,,0.64,,,,,65.61817459,,,,,0.765332444,43614,56987,0.752522654,0.778142234,0.095223342,5225,54871,0.085259946,0.105186738,0.825416323,47038,56987,0.815359519,0.835473127,143104,,,,,0.197891044,28319,143104,,,0.211706172,30296,143104,,,0.030285666,4334,143104,,,0.004598055,658,143104,,,0.006442867,922,143104,,,0.000789636,113,143104,,,0.077796568,11133,143104,,,0.871205557,124673,143104,,,0.007547806,1029,136331,0.005692711,0.009402902,0.484472831,69330,143104,,,0.470649917,67326,143049,, -42,109,42109,PA,Snyder County,2024,1,5966.756936,491,109676,5100.45225,6833.061622,0,,,,2,,,,2,,,,2,,,,2,6034.30991,5131.613186,6937.006634,,,,,2,,0.16,,,0.132,0.192,3.78485149,,,2.969764765,4.676799453,5.288538457,,,4.266849068,6.404215062,0.056055363,162,2890,0.047668704,0.064442023,0,,,,,,,,,,,,,0.055859803,0.047259218,0.064460388,,,,,,,0.199,,,0.156,0.244,0.361,,,0.288,0.444,8.8,0.028260809,0.086,,,0.26,,,0.209,0.315,0.624773505,24826,39736,,,0.184425729,,,0.14863039,0.22665217,0.208333333,5,24,0.105577141,0.326751616,111.1,44,39621,,,10.02109705,114,11376,8.181516054,11.86067804,,,,,,,,,,,,,9.937888199,8.027887578,11.84788882,,,,,,,0.09315881,2733,29337,0.080052427,0.106265193,0.000403826,16,39621,,,2476.3125,0.000529608,21,39652,,,1888.190476,0.00085746,34,39652,,,1166.235294,2782,,,,,,,,,2755,0.6,,,,,,,,,0.6,0.58,,,,,,0.45,0.27,0.36,0.58,0.84916096,22569,26578,0.834576874,0.863745046,0.4785806,4100,8567,0.433286779,0.523874421,0.042814386,844,19713,,,0.14,1104,,0.097106383,0.182893617,,,,,,,,,,0.197986577,0.023428728,0.372544427,0.112633382,0.083613065,0.141653699,3.91411185,118351,30237,3.572613785,4.255609914,0.10829352,884,8163,0.081399259,0.13518778,15.14348452,60,39621,,,66.45144334,134,201651,55.2000038,77.70288287,,,,,,,,,,,,,66.44483509,54.88862473,78.00104545,,,,9,,,,,1,,,,,0.102529511,1520,14825,0.084936492,0.12012253,0.068474576,0.053560891,0.083388262,0.014839798,0.008176095,0.021503501,0.023271501,0.012707491,0.033835511,0.749451468,14346,19142,0.724122977,0.774779959,,,,,,,,,,0.534334764,0.342511667,0.726157861,0.748016557,0.72057877,0.775454345,0.296,,19142,0.267829402,0.324170598,79.73271768,,,78.88286518,80.58257019,,,,,,,,,,,,,79.59322125,78.72565778,80.46078472,,,,320.5970193,491,109676,290.5874584,350.6065803,,,,,,,,,,,,,322.559424,291.802589,353.3162591,,,,34.69984633,14,40346,18.97072889,58.22044595,,,,,,,,,,,,,34.83573611,18.54856233,59.57016967,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.118,,,0.099,0.138,0.172,,,0.148,0.199,0.086,,,0.072,0.102,70.7,24,33966,,,0.086,3420,,,,0.028260809,1122.010649,39702,,,12.46779154,15,120310,6.978128279,20.5637261,,,,,,,,,,,,,11.40350877,6.07188815,19.5003473,,,,0.367,,,0.347,0.385,0.097472755,2075,21288,0.083174882,0.111770627,0.081221266,689,8483,0.05619999,0.106242543,0.000907899,36,39652,,,1101.444444,0.90498645,333.94,369,,,0.045906132,134,2919,0.02505087,0.066761395,3.299236203,,,,,,,,,3.321003524,3.356294056,,,,,,,,,3.377393254,0.053820956,,,,,6045.143,,,,,0.87444676,44059,50385,0.808709603,0.940183917,62382,,,55318.85106,69445.14894,,,,,,,,,,,,,65558,61192.38298,69923.61702,,,,,,0.503314286,2202,4375,,,64.28673046,,,,,0.302010195,,62382,,,3.714020427,8,2154,,,,,,,,,,,,,,,,,,,,,,,,,,11.06463263,22,201651,6.849181989,16.91346632,10.90993846,,,,,,,,,,,,,11.14915168,6.81019149,17.21896051,,,,7.438594403,15,201651,4.16332482,12.26883024,,,,,,,,,,,,,7.32462749,4.004442008,12.28948033,,,,15.5717486,44,282563,11.31445637,20.90434568,,,,,,,,,,,,,16.41582784,11.92776564,22.03748266,,,,16.66666667,,3900,,,30,35,0.60065903,19140,31865,,,0.721,,,,,64.62077117,,,,,0.754469855,10887,14430,0.735786233,0.773153476,0.07568973,1048,13846,0.060288433,0.091091027,0.802564103,11581,14430,0.781477104,0.823651101,39652,,,,,0.2030919,8053,39652,,,0.208589731,8271,39652,,,0.010365177,411,39652,,,0.002320186,92,39652,,,0.006607485,262,39652,,,0.000807021,32,39652,,,0.025875114,1026,39652,,,0.945853929,37505,39652,,,0.005568815,210,37710,0.002430777,0.008706853,0.503757692,19975,39652,,,0.703467888,27953,39736,, -42,111,42111,PA,Somerset County,2024,1,8901.009225,1319,198115,8065.835126,9736.183324,0,,,,2,,,,2,21620.36929,5890.822964,55356.73232,1,,,,2,9223.085918,8332.998394,10113.17344,,,,,2,,0.166,,,0.138,0.195,3.882714796,,,3.077512685,4.7909495,5.05884067,,,4.074687936,6.160914699,0.073414906,330,4495,0.065790149,0.081039662,0,,,,,,,,,,,,,0.073031136,0.065314973,0.080747298,,,,,,,0.209,,,0.166,0.255,0.392,,,0.314,0.475,8.2,0.057525209,0.099,,,0.26,,,0.21,0.311,0.637631696,47267,74129,,,0.183062558,,,0.147339149,0.223462255,0.333333333,21,63,0.268520581,0.398250514,126.3,93,73627,,,15.07694711,193,12801,12.94983281,17.20406142,,,,,,,,,,,,,15.35571347,13.16064968,17.55077726,,,,,,,0.082654382,4342,52532,0.071930978,0.093377786,0.000366713,27,73627,,,2726.925926,0.000426351,31,72710,,,2345.483871,0.001416586,103,72710,,,705.9223301,2919,,,,,,,,,2941,0.48,,,,,,,,,0.48,0.38,,,,,,,0.36,,0.38,0.900296972,49718,55224,0.890013266,0.910580678,0.489098794,8233,16833,0.45374405,0.524453538,0.054182042,1762,32520,,,0.186,2405,,0.126425532,0.245574468,,,,,,,,,,0.424242424,0.261850771,0.586634078,0.154680042,0.127579439,0.181780646,4.119874524,110322,26778,3.896360581,4.343388467,0.178555372,2383,13346,0.146697012,0.210413733,20.64460049,152,73627,,,98.79411469,364,368443,88.6448062,108.9434232,,,,,,,,,,,,,104.0927781,93.35478625,114.8307699,,,,8.4,,,,,1,,,,,0.088753388,2620,29520,0.076803483,0.100703293,0.06834188,0.058591042,0.078092719,0.012872629,0.008720382,0.017024876,0.012703252,0.008746873,0.016659631,0.823433482,26256,31886,0.807113674,0.83975329,,,,,,,,,,,,,0.797414632,0.776695241,0.818134023,0.302,,31886,0.2804871,0.323512901,76.14645307,,,75.49750257,76.79540356,,,,,,,59.4784608,47.14719768,71.80972392,,,,75.95013284,75.27100783,76.62925785,,,,432.5679289,1319,198115,407.119381,458.0164767,,,,,,,1163.045919,719.9437546,1777.839232,,,,438.6086628,411.9522374,465.2650883,,,,55.35374503,32,57810,37.86192062,78.14297194,,,,,,,,,,,,,54.50779462,36.77618013,77.8132661,,,,4.800349116,22,4583,3.008353234,7.267786251,,,,,,,,,,,,,4.486316734,2.740358812,6.928752334,,,,,,,0.119,,,0.102,0.139,0.17,,,0.145,0.195,0.094,,,0.079,0.11,83.8,54,64406,,,0.099,7380,,,,0.057525209,4472.124763,77742,,,29.09223147,64,219990,22.40456318,37.1501301,,,,,,,,,,,,,30.93072484,23.82042711,39.4978451,,,,0.369,,,0.351,0.386,0.089299305,3520,39418,0.076192922,0.102405688,0.063089195,870,13790,0.044025365,0.082153025,0.000811443,59,72710,,,1232.372881,0.916178571,641.325,700,,,0.107421213,317,2951,0.068957025,0.145885401,3.272286354,,,,,,,,,3.285226984,3.382011146,,,,,,,,,3.390931414,0.061788582,,,,,4026.992736,,,,,0.792603533,40785,51457,0.738974006,0.84623306,50516,,,45894.21277,55137.78723,144167,61634.91489,226699.0851,53873,45251.38298,62494.61702,,,,71607,16028.78723,127185.2128,57502,55519.3617,59484.6383,,,,,,0.511906172,4321,8441,,,,,,,,0.290205084,,50516,,,4.361733062,15,3439,,,1.926685754,10,519026,0.923920708,3.543243699,,,,,,,,,,,,,2.043928103,0.980142972,3.758856554,,,,15.41002658,59,368443,11.54316737,20.15669419,16.01333178,,,,,,,,,,,,,16.29587885,12.13335217,21.42607119,,,,10.04225891,37,368443,7.070677029,13.84193108,,,,,,,,,,,,,10.66878889,7.511811955,14.70552013,,,,15.60615461,81,519026,12.39353944,19.39702523,,,,,,,,,,,,,16.14703201,12.7837573,20.12401966,,,,7.580645161,,6200,,,30,17,0.67324809,40543,60220,,,0.643,,,,,37.43305696,,,,,0.80719022,23373,28956,0.792254448,0.822125992,0.083484832,2342,28053,0.071957674,0.095011991,0.786469126,22773,28956,0.768504997,0.804433254,72710,,,,,0.180580388,13130,72710,,,0.239939486,17446,72710,,,0.025292257,1839,72710,,,0.002118003,154,72710,,,0.004978682,362,72710,,,0.000302572,22,72710,,,0.015967542,1161,72710,,,0.945110714,68719,72710,,,0.003110972,219,70396,0.001455642,0.004766302,0.476688214,34660,72710,,,0.775971617,57522,74129,, -42,113,42113,PA,Sullivan County,2024,1,8402.342073,129,15632,5463.954235,11340.72991,0,,,,2,,,,2,,,,2,,,,2,8769.401181,5668.961975,11869.84039,,,,,2,,0.163,,,0.135,0.192,3.869654812,,,3.053896706,4.8231174,5.215873107,,,4.123051053,6.406184637,0.059602649,18,302,0.032900816,0.086304482,1,,,,,,,,,,,,,0.062283737,0.034420588,0.090146887,,,,,,,0.202,,,0.161,0.247,0.357,,,0.279,0.442,7.4,0.113440998,0.108,,,0.255,,,0.208,0.31,0.378253425,2209,5840,,,0.160494082,,,0.125497493,0.197417836,0,0,6,0,0.28246769,102.2,6,5868,,,23.51097179,15,638,13.15891243,38.77777253,,,,,,,,,,,,,33.93665158,18.99408627,55.97334586,,,,,,,0.091554468,374,4085,0.077256595,0.10585234,,0,5868,,,,0.000170794,1,5855,,,5855,0.000170794,1,5855,,,5855,1361,,,,,,,,,1380,0.45,,,,,,,,,0.45,0.46,,,,,,,,,0.46,0.907632174,4412,4861,0.894248347,0.921016002,0.433361274,517,1193,0.387032328,0.47969022,0.05252842,134,2551,,,0.226,125,,0.139021277,0.312978723,,,,,,,,,,,,,0.155172414,0.078788252,0.231556576,4.622663461,119200,25786,3.936674654,5.308652267,0.146118722,96,657,0.09212927,0.200108173,15.33742331,9,5868,,,103.3092279,31,30007,70.19360809,146.6392025,,,,,,,,,,,,,111.4186105,75.70354016,158.1498239,,,,7,,,,,0,,,,,0.098181818,270,2750,0.074567589,0.121796047,0.087527352,0.061208271,0.113846433,0.003636364,0,0.015858218,0.010545455,0,0.022232713,0.792580774,1987,2507,0.7654839,0.819677648,,,,,,,,,,,,,0.815659068,0.756077195,0.875240942,0.485,,2507,0.429855792,0.540144208,76.06033245,,,73.95784452,78.16282038,,,,,,,,,,,,,75.7545301,73.57696944,77.93209075,,,,423.8154279,129,15632,336.2162476,511.4146082,,,,,,,,,,,,,434.8579044,343.6314733,526.0843356,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.119,,,0.101,0.138,0.17,,,0.147,0.197,0.088,,,0.074,0.104,,,,,,0.108,640,,,,0.113440998,729.1987352,6428,,,,,,,,,,,,,,,,,,,,,,,,,,0.364,,,0.344,0.381,0.094555874,330,3490,0.079066512,0.110045236,0.073684211,49,665,0.052237402,0.095131019,0.000341588,2,5855,,,2927.5,,,,,,,,,,,3.274005812,,,,,,,,,3.2981706,3.427203117,,,,,,,,,3.441864444,,,,,,7623.801,,,,,0.8335217,44250,53088,0.714852192,0.952191208,59957,,,51701.17021,68212.82979,,,,,,,,,,38036,9559.404255,66512.59575,63519,58266.91489,68771.08511,,,,,,0.463295269,284,613,,,,,,,,0.327751555,,59957,,,10.25641026,2,195,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,28.25390846,12,42472,14.59920679,49.35389209,,,,,,,,,,,,,30.44526196,15.73151112,53.18174565,,,,,,300,,,-888,0,0.676387582,3595,5315,,,0.316,,,,,0.091512291,,,,,0.845247766,2081,2462,0.812293612,0.87820192,0.084179357,199,2364,0.05611193,0.112246784,0.778635256,1917,2462,0.752770551,0.804499961,5855,,,,,0.096327925,564,5855,,,0.323484202,1894,5855,,,0.018274979,107,5855,,,0.005977797,35,5855,,,0.005123826,30,5855,,,0.000512383,3,5855,,,0.025789923,151,5855,,,0.931511529,5454,5855,,,0.009455437,54,5711,0,0.033472409,0.487275833,2853,5855,,,1,5840,5840,, -42,115,42115,PA,Susquehanna County,2024,1,7571.646034,652,106433,6493.708145,8649.583922,0,,,,2,,,,2,,,,2,,,,2,7711.673438,6590.788881,8832.557994,,,,,2,,0.165,,,0.138,0.198,3.891849779,,,3.040627314,4.753974453,5.089749055,,,4.036908068,6.173394577,0.066011788,168,2545,0.056364758,0.075658818,0,,,,,,,,,,,,,0.067387687,0.057366257,0.077409117,,,,,,,0.205,,,0.161,0.25,0.411,,,0.331,0.494,8.1,0.061072853,0.1,,,0.263,,,0.212,0.317,0.467190508,17956,38434,,,0.172064489,,,0.138285531,0.211015855,0.380952381,16,42,0.30212788,0.457674376,122.4,47,38389,,,17.36451477,124,7141,14.30813103,20.42089852,,,,,,,,,,,,,17.37709788,14.22833187,20.52586388,,,,,,,0.086102562,2490,28919,0.074187669,0.098017456,0.000364688,14,38389,,,2742.071429,0.000210117,8,38074,,,4759.25,0.000814204,31,38074,,,1228.193548,2867,,,,,,,,,2886,0.43,,,,,,,,,0.43,0.44,,,,,,,,,0.44,0.91542167,26225,28648,0.90579415,0.92504919,0.495199596,3920,7916,0.459277298,0.531121894,0.042323857,856,20225,,,0.191,1321,,0.140957447,0.241042553,,,,,,,,,,0.283842795,0.140842461,0.426843129,0.163891459,0.135964988,0.19181793,4.373231236,123933,28339,4.021181187,4.725281285,0.236974088,1701,7178,0.199571105,0.27437707,10.41965146,40,38389,,,97.35542719,195,200297,83.69076397,111.0200904,,,,,,,,,,,,,98.76440531,84.72076415,112.8080465,,,,6.6,,,,,1,,,,,0.126578561,2155,17025,0.110815151,0.14234197,0.110585452,0.095668682,0.125502223,0.014390602,0.009896274,0.01888493,0.007048458,0.003544767,0.010552149,0.777387087,12823,16495,0.760037442,0.794736732,,,,,,,,,,,,,0.700495272,0.677951204,0.723039341,0.43,,16495,0.401829402,0.458170598,77.73593149,,,76.85525655,78.61660644,,,,,,,,,,,,,77.5962659,76.69162501,78.50090679,,,,367.082068,652,106433,335.4546274,398.7095085,,,,,,,,,,,,,371.2595196,338.7575689,403.7614703,,,,58.37352914,19,32549,35.14467776,91.15749661,,,,,,,,,,,,,59.34913779,35.17406041,93.79722466,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.12,,,0.102,0.141,0.175,,,0.15,0.201,0.089,,,0.074,0.104,80.8,27,33430,,,0.1,3870,,,,0.061072853,2647.874611,43356,,,17.68823227,21,118723,10.94929456,27.03834197,,,,,,,,,,,,,17.56712839,10.7304584,27.13100502,,,,0.361,,,0.342,0.379,0.092202488,2009,21789,0.077904615,0.10650036,0.067351294,505,7498,0.047095975,0.087606613,0.000604087,23,38074,,,1655.391304,0.911727689,398.425,437,,,0.089552239,144,1608,0.052576062,0.126528415,3.149595335,,,,,,,,,3.166695918,3.035039572,,,,,,,,,3.067282138,0.05168189,,,,,6465.941167,,,,,0.756593028,41714,55134,0.705490837,0.807695219,63413,,,59898.10638,66927.89362,,,,,,,53750,33591.19149,73908.80851,69375,54513.55319,84236.44681,64250,61584.6383,66915.3617,,,,,,0.555710793,3182,5726,,,68.11868996,,,,,0.327093814,,63413,,,4.362050164,8,1834,,,3.889330858,11,282825,1.941539951,6.95908725,,,,,,,,,,,,,4.047033892,2.020264738,7.241261539,,,,22.11904893,43,200297,15.49190994,30.62208719,21.46811984,,,,,,,,,,,,,23.12181358,16.19423397,32.01033616,,,,17.47405103,35,200297,12.1713168,24.30217496,,,,,,,,,,,,,18.19344308,12.67239972,25.30267515,,,,14.85017237,42,282825,10.70269804,20.07311899,,,,,,,,,,,,,15.45231122,11.13666676,20.8870358,,,,9.166666667,,3600,,,19,14,0.665300505,21752,32695,,,0.482,,,,,16.0091787,,,,,0.785371779,12284,15641,0.775572637,0.795170922,0.111971173,1678,14986,0.097053991,0.126888356,0.868039128,13577,15641,0.854729365,0.881348891,38074,,,,,0.185113201,7048,38074,,,0.253480065,9651,38074,,,0.006644955,253,38074,,,0.002442612,93,38074,,,0.004359931,166,38074,,,0.000682881,26,38074,,,0.021143037,805,38074,,,0.954693492,36349,38074,,,0.002830933,104,36737,0.000379509,0.005282358,0.490676052,18682,38074,,,1,38434,38434,, -42,117,42117,PA,Tioga County,2024,1,8997.600951,610,109762,7799.360473,10195.84143,0,,,,2,,,,2,,,,2,,,,2,9125.222664,7890.864193,10359.58113,,,,,2,,0.163,,,0.137,0.194,3.942143386,,,3.090269502,4.860916582,5.294524116,,,4.252959468,6.396282671,0.062410842,175,2804,0.053457124,0.071364559,0,,,,,,,,,,,,,0.061510129,0.052472401,0.070547857,,,,,,,0.202,,,0.16,0.245,0.383,,,0.307,0.462,7.5,0.093775474,0.113,,,0.261,,,0.213,0.316,0.542550859,22269,41045,,,0.173420739,,,0.137420953,0.211106669,0.205128205,8,39,0.124539557,0.295665403,92.8,38,40929,,,18.04511278,168,9310,15.31637986,20.77384571,,,,,,,,,,,,,19.13265306,16.21328202,22.0520241,,,,,,,0.070064948,2136,30486,0.060533033,0.079596863,0.000439786,18,40929,,,2273.833333,0.000559529,23,41106,,,1787.217391,0.001386659,57,41106,,,721.1578947,2198,,,,,,,,,2198,0.52,,,,,,,,,0.52,0.41,,,,,,,,,0.41,0.917166989,27039,29481,0.906479965,0.927854013,0.538539326,4793,8900,0.496858538,0.580220114,0.04929244,937,19009,,,0.177,1366,,0.122191489,0.231808511,,,,,,,0.304347826,0,0.62583377,0.337078652,0.125437355,0.548719949,0.179500868,0.149682459,0.209319276,4.450500469,113826,25576,4.117202297,4.783798642,0.195735713,1579,8067,0.162629162,0.228842265,15.39250898,63,40929,,,86.99626948,177,203457,74.179751,99.81278796,,,,,,,,,,,,,90.03386501,76.73221148,103.3355185,,,,5.5,,,,,1,,,,,0.113138686,1860,16440,0.098392379,0.127884994,0.098531212,0.084451678,0.112610745,0.008819951,0.004189936,0.013449967,0.009428224,0.005743117,0.013113331,0.794199726,14514,18275,0.778314709,0.810084744,,,,,,,,,,,,,0.773419131,0.75131392,0.795524342,0.355,,18275,0.326107918,0.383892082,76.89135835,,,75.9555567,77.82716,,,,,,,,,,,,,76.73260438,75.77587323,77.68933553,,,,389.1844259,610,109762,355.0912087,423.2776432,,,,,,,,,,,,,393.490268,358.563005,428.417531,,,,51.70630817,19,36746,31.1305752,80.74580518,,,,,,,,,,,,,52.4063237,31.05930876,82.82458517,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.121,,,0.103,0.14,0.176,,,0.151,0.202,0.091,,,0.077,0.106,73.7,26,35271,,,0.113,4660,,,,0.093775474,3936.788177,41981,,,28.71182353,35,121901,19.99883709,39.93119611,,,,,,,,,,,,,29.89204701,20.82090599,41.57260127,,,,0.358,,,0.338,0.376,0.079447323,1794,22581,0.067532429,0.091362217,0.044661129,371,8307,0.031554746,0.057767512,0.001021749,42,41106,,,978.7142857,0.888680387,367.025,413,,,0.083333333,188,2256,0.047529873,0.119136794,2.956472192,,,,,,,,,2.981809547,2.914628241,,,,,,,,,2.934261755,0.060334022,,,,,5002.970667,,,,,0.743209091,39700,53417,0.682645512,0.80377267,61190,,,55844.97872,66535.02128,,,,81875,65135.76596,98614.23404,20227,6076.87234,34377.12766,,,,60322,57401.65957,63242.34043,,,,,,0.514319341,2622,5098,,,63.06503033,,,,,0.28545514,,61190,,,7.662835249,16,2088,,,,,,,,,,,,,,,,,,,,,,,,,,20.47070576,40,203457,14.25859661,28.46979627,19.66017389,,,,,,,,,,,,,20.99539204,14.62405983,29.19950787,,,,13.76212173,28,203457,9.144829942,19.89009763,,,,,,,,,,,,,13.81201338,9.102203851,20.09575431,,,,14.99297422,43,286801,10.85048979,20.19543789,,,,,,,,,,,,,15.60260527,11.2916828,21.01660691,,,,,,3700,,,34,-888,0.649360653,21075,32455,,,0.551,,,,,14.42561196,,,,,0.763794247,12666,16583,0.746115786,0.781472708,0.104939047,1670,15914,0.090112352,0.119765743,0.83326298,13818,16583,0.817296642,0.849229318,41106,,,,,0.192064419,7895,41106,,,0.235537391,9682,41106,,,0.007687442,316,41106,,,0.002943609,121,41106,,,0.005497981,226,41106,,,0.000218946,9,41106,,,0.014936992,614,41106,,,0.957889359,39375,41106,,,0.001482656,58,39119,0,0.003969609,0.496448207,20407,41106,,,1,41045,41045,, -42,119,42119,PA,Union County,2024,1,4768.679986,421,120214,3996.155501,5541.204471,0,,,,2,,,,2,,,,2,,,,2,5343.984039,4424.037894,6263.930184,,,,,2,,0.162,,,0.136,0.194,3.765608614,,,2.91592256,4.667633159,4.871190322,,,3.792644538,5.937146593,0.053103696,148,2787,0.044778371,0.06142902,0,,,,,,,,,,,,,0.053620352,0.044885448,0.062355257,,,,,,,0.186,,,0.146,0.228,0.35,,,0.275,0.427,7.9,0.10671602,0.089,,,0.255,,,0.206,0.31,0.779152316,33255,42681,,,0.186803138,,,0.148405146,0.22982947,0.321428571,9,28,0.221187685,0.422182702,192.6,82,42568,,,7.467804618,98,13123,6.062724764,9.100861868,,,,,,,,,,19.04761905,9.842182712,33.27235722,6.857745736,5.420763426,8.55877704,,,,,,,0.085069636,2315,27213,0.071963253,0.098176019,0.001080624,46,42568,,,925.3913044,0.000655063,28,42744,,,1526.571429,0.001754632,75,42744,,,569.92,1667,,,,,,,,,1677,0.6,,,,,,,,,0.6,0.57,,,,,,,0.27,,0.57,0.86299012,25069,29049,0.844806541,0.8811737,0.458967444,4765,10382,0.409926593,0.508008295,0.038701432,757,19560,,,0.115,840,,0.075680851,0.154319149,,,,,,,0.252747253,0,0.53107222,0.248543689,0,0.557138578,0.106781453,0.071259507,0.142303399,4.353013029,128292,29472,3.703687083,5.002338975,0.110386221,846,7664,0.068536917,0.152235526,14.79984965,63,42568,,,56.97103972,126,221165,47.02328785,66.9187916,,,,,,,,,,,,,63.68199673,52.24006735,75.1239261,,,,8.7,,,,,0,,,,,0.120596206,1780,14760,0.090231532,0.15096088,0.108089735,0.078850236,0.137329234,0.008130081,0.003496619,0.012763544,0.007723577,0.000620849,0.014826306,0.739593476,12153,16432,0.725547484,0.753639468,,,,,,,,,,,,,0.788541021,0.775244784,0.801837258,0.224,,16432,0.194669026,0.253330974,80.7429325,,,79.96384741,81.5220176,,,,,,,,,,98.38904765,73.56778359,123.2103117,80.19155136,79.3371013,81.04600143,,,,263.9049113,421,120214,237.8147286,289.995094,,,,,,,,,,,,,279.8959677,250.7288706,309.0630648,,,,34.84147131,14,40182,19.04815658,58.45806859,,,,,,,,,,,,,37.33057661,19.87695983,63.83642292,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.115,,,0.097,0.135,0.161,,,0.139,0.187,0.092,,,0.077,0.109,254.1,95,37386,,,0.089,3850,,,,0.10671602,4796.564963,44947,,,12.14098721,16,131785,6.939623215,19.7162026,,,,,,,,,,,,,13.50207932,7.557011299,22.26962651,,,,0.37,,,0.353,0.386,0.089239642,1764,19767,0.07494177,0.103537514,0.073828921,580,7856,0.052382112,0.095275729,0.001965188,84,42744,,,508.8571429,0.949367089,300,316,,,0.11792689,471,3994,0.064946682,0.170907098,3.444693387,,,,,,,,,3.492622751,3.376696385,,,,,,,,2.71727496,3.400215838,0.046322914,,,,,6257.3075,,,,,0.677320618,44036,65015,0.61735581,0.737285427,65521,,,58798.61702,72243.38298,,,,88594,24655.10638,152532.8936,,,,,,,65122,59651.87234,70592.12766,,,,,,0.331631351,1299,3917,,,32.73521689,,,,,0.287541399,,65521,,,4.149377593,8,1928,,,,,,,,,,,,,,,,,,,,,,,,,,9.628249208,23,221165,6.033972518,14.57728501,10.39947551,,,,,,,,,,,,,11.46743889,7.004609589,17.7105293,,,,6.782266634,15,221165,3.79598315,11.1863174,,,,,,,,,,,,,8.027142444,4.492730691,13.23955073,,,,7.058430975,22,311684,4.423481113,10.68654932,,,,,,,,,,,,,7.982484149,4.941283501,12.20207497,,,,7.027027027,,3700,,,18,8,0.555432832,20115,36215,,,0.7,,,,,58.34339123,,,,,0.71662433,10156,14172,0.685495931,0.747752728,0.098849068,1357,13728,0.074181533,0.123516602,0.765664691,10851,14172,0.739821352,0.79150803,42744,,,,,0.174433839,7456,42744,,,0.191980161,8206,42744,,,0.052592177,2248,42744,,,0.005404267,231,42744,,,0.017780273,760,42744,,,0.000818828,35,42744,,,0.057879469,2474,42744,,,0.854880217,36541,42744,,,0.009826392,403,41012,0.005292184,0.014360601,0.46836983,20020,42744,,,0.632014245,26975,42681,, -42,121,42121,PA,Venango County,2024,1,10566.74715,1063,136188,9444.265713,11689.22858,0,,,,2,,,,2,,,,2,,,,2,10627.19551,9474.580851,11779.81018,,,,,2,,0.165,,,0.137,0.195,3.847579358,,,3.020746269,4.761068212,5.125732688,,,4.045252969,6.261753056,0.080827068,258,3192,0.071371194,0.090282941,0,,,,,,,,,,,,,0.080441129,0.070840534,0.090041724,,,,,,,0.207,,,0.164,0.251,0.352,,,0.276,0.431,8.2,0.019556301,0.117,,,0.254,,,0.204,0.305,0.680778531,34348,50454,,,0.163832738,,,0.130057672,0.20142866,0.261904762,11,42,0.18140659,0.346686893,270.3,135,49938,,,21.93645991,203,9254,18.91877011,24.95414971,,,,,,,,,,,,,22.08603145,18.95377672,25.21828619,,,,,,,0.070645359,2648,37483,0.061113444,0.080177274,0.000600745,30,49938,,,1664.6,0.000381702,19,49777,,,2619.842105,0.002169677,108,49777,,,460.8981482,3290,,,,,,,,,3297,0.44,,,,,,,,,0.44,0.48,,,,,,,0.47,,0.48,0.907637276,34001,37461,0.897555946,0.917718607,0.525326567,5590,10641,0.481315313,0.569337822,0.050212527,1075,21409,,,0.201,1826,,0.131893617,0.270106383,,,,,,,0.494444444,0.198650167,0.790238722,0.177142857,0.068207597,0.286078117,0.188465621,0.156847068,0.220084174,4.282694848,110228,25738,4.000402568,4.564987129,0.219625184,2086,9498,0.177805273,0.261445096,20.62557571,103,49938,,,99.22744348,252,253962,86.97599034,111.4788966,,,,,,,,,,,,,100.2650449,87.68417385,112.8459159,,,,8.1,,,,,0,,,,,0.103596471,2290,22105,0.089814751,0.117378191,0.079234973,0.06587744,0.092592506,0.01357159,0.008375431,0.018767749,0.01425017,0.00941282,0.019087519,0.789971441,16873,21359,0.772673611,0.80726927,,,,,,,,,,,,,0.780551477,0.765586461,0.795516492,0.279,,21359,0.252625259,0.305374741,74.95238488,,,74.11878739,75.78598237,,,,,,,,,,,,,74.88140911,74.03200276,75.73081546,,,,494.4898035,1063,136188,461.2408963,527.7387107,,,,,,,,,,,,,497.2471872,463.2658501,531.2285243,,,,58.8179936,25,42504,38.06390422,86.82696146,,,,,,,,,,,,,58.87623192,37.32248058,88.34325584,,,,8.91000891,30,3367,6.011545596,12.71959174,,,,,,,,,,,,,7.958371595,5.198672548,11.66085831,,,,,,,0.121,,,0.102,0.141,0.175,,,0.15,0.203,0.089,,,0.075,0.105,78.1,34,43509,,,0.117,5970,,,,0.019556301,1075.283674,54984,,,27.16419097,41,150934,19.49349243,36.85129233,,,,,,,,,,,,,26.2995799,18.61114801,36.09822818,,,,0.365,,,0.344,0.383,0.079003107,2238,28328,0.067088213,0.090918,0.045525413,438,9621,0.03241903,0.058631796,0.001908512,95,49777,,,523.9684211,0.923834499,396.325,429,,,0.067917784,152,2238,0.03483723,0.100998338,3.086256589,,,,,,,,,3.104895247,3.002203324,,,,,,,,,3.03056559,0.052143396,,,,,2325.898525,,,,,0.781177066,40165,51416,0.727961214,0.834392917,52449,,,49458.3617,55439.6383,28750,27684.80851,29815.19149,,,,,,,57750,1663.021277,113836.9787,59637,57064.57447,62209.42553,,,,,,0.605667876,3505,5787,,,75.48333177,,,,,0.427348472,,52449,,,4.918032787,12,2440,,,,,,,,,,,,,,,,,,,,,,,,,,23.36161897,58,253962,17.39425979,30.71621455,22.83806239,,,,,,,,,,,,,24.49440193,18.23769111,32.20561494,,,,16.14414755,41,253962,11.58531901,21.90135909,,,,,,,,,,,,,16.43689261,11.74275706,22.38238251,,,,13.62386456,49,359663,10.07901,18.01147146,,,,,,,,,,,,,14.20994174,10.51259313,18.78629657,,,,11.11111111,,4500,,,40,10,0.641935874,26528,41325,,,0.633,,,,,41.33580848,,,,,0.751489003,16024,21323,0.732529742,0.770448263,0.088965179,1814,20390,0.07501698,0.102913378,0.847863809,18079,21323,0.829812589,0.865915029,49777,,,,,0.187034172,9310,49777,,,0.250095426,12449,49777,,,0.011169817,556,49777,,,0.002591558,129,49777,,,0.004861683,242,49777,,,0.000441971,22,49777,,,0.012375193,616,49777,,,0.956385479,47606,49777,,,0.002811387,135,48019,0.000177248,0.005445527,0.501577034,24967,49777,,,0.560669124,28288,50454,, -42,123,42123,PA,Warren County,2024,1,8367.066804,683,104282,7246.730124,9487.403485,0,,,,2,,,,2,,,,2,,,,2,8534.741235,7372.27279,9697.209679,,,,,2,,0.16,,,0.133,0.189,3.791206984,,,3.000996048,4.70108076,5.075514773,,,4.081960098,6.212316952,0.084093614,212,2521,0.073259916,0.094927311,0,,,,,,,,,,,,,0.083436596,0.072420741,0.094452452,,,,,,,0.199,,,0.158,0.245,0.374,,,0.299,0.455,8.3,0.043333389,0.102,,,0.255,,,0.208,0.309,0.778396869,30036,38587,,,0.172321916,,,0.137464559,0.209534942,0.35483871,11,31,0.260701772,0.447298466,102.3,39,38134,,,19.67825338,137,6962,16.38304915,22.9734576,,,,,,,,,,,,,18.91646489,15.60026238,22.2326674,,,,,,,0.063495946,1817,28616,0.053964031,0.073027861,0.00039335,15,38134,,,2542.266667,0.00047609,18,37808,,,2100.444444,0.00137537,52,37808,,,727.0769231,2435,,,,,,,,,2415,0.44,,,,,,,,,0.44,0.43,,,,,,,,,0.43,0.93714931,26556,28337,0.928074659,0.946223961,0.56837925,4580,8058,0.518719746,0.618038755,0.04674221,825,17650,,,0.194,1386,,0.136808511,0.251191489,,,,,,,0.875,0.548145506,1,0.300613497,0.067772683,0.533454311,0.162997588,0.129124197,0.196870978,3.836565897,106223,27687,3.59829959,4.074832205,0.231736687,1732,7474,0.179422433,0.284050942,16.5206902,63,38134,,,87.51592944,171,195393,74.39860907,100.6332498,,,,,,,,,,,,,89.49043406,75.99803015,102.982838,,,,7.4,,,,,1,,,,,0.092262774,1580,17125,0.07967758,0.104847968,0.072887842,0.060295453,0.085480231,0.011678832,0.007601869,0.015755796,0.015474453,0.010157215,0.020791691,0.790775755,13425,16977,0.765370086,0.816181425,,,,,,,,,,,,,0.780758737,0.750918373,0.810599101,0.211,,16977,0.190055528,0.231944472,76.44976516,,,75.57100516,77.32852517,,,,,,,,,,,,,76.28291431,75.38197848,77.18385014,,,,410.672586,683,104282,376.558137,444.787035,,,,,,,,,,,,,417.3498124,382.3105983,452.3890265,,,,57.213406,19,33209,34.44620785,89.34582063,,,,,,,,,,,,,57.66827924,34.1778771,91.1407435,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.118,,,0.1,0.137,0.172,,,0.148,0.199,0.087,,,0.073,0.101,42.6,14,32847,,,0.102,3970,,,,0.043333389,1811.985675,41815,,,15.48573592,18,116236,9.177828539,24.47413905,,,,,,,,,,,,,16.04092218,9.506867101,25.35157269,,,,0.352,,,0.333,0.371,0.069082353,1468,21250,0.058358949,0.079805757,0.047846273,371,7754,0.032356911,0.063335635,0.00140182,53,37808,,,713.3584906,0.871268657,350.25,402,,,,,,,,2.992752933,,,,,,,,,2.989930315,2.776931295,,,,,,,,,2.75952504,0.042660067,,,,,5383.068,,,,,0.759550562,39546,52065,0.684610057,0.834491066,56707,,,52480.78723,60933.21277,,,,,,,,,,73281,68977.34043,77584.65957,58189,54570.44681,61807.55319,,,,,,0.689327146,2971,4310,,,80.3988433,,,,,0.297018005,,56707,,,3.950617284,8,2025,,,,,,,,,,,,,,,,,,,,,,,,,,17.4079224,33,195393,11.56743801,25.1592947,16.88903901,,,,,,,,,,,,,16.62011185,10.85680886,24.35231466,,,,13.30651559,26,195393,8.692257765,19.49712839,,,,,,,,,,,,,13.76775909,8.993557332,20.17295699,,,,12.32714801,34,275814,8.536908346,17.22595376,,,,,,,,,,,,,12.74601687,8.826987211,17.81128101,,,,18.23529412,,3400,,,55,7,0.653170963,20650,31615,,,0.575,,,,,45.57075465,,,,,0.778826578,12624,16209,0.764361207,0.793291949,0.074447585,1159,15568,0.061170576,0.087724594,0.821272133,13312,16209,0.806201433,0.836342833,37808,,,,,0.194588447,7357,37808,,,0.248545281,9397,37808,,,0.005475032,207,37808,,,0.003173931,120,37808,,,0.004946043,187,37808,,,0.000714135,27,37808,,,0.014414939,545,37808,,,0.960299408,36307,37808,,,0.004985618,182,36505,0.001877883,0.008093354,0.495212653,18723,37808,,,0.619871978,23919,38587,, -42,125,42125,PA,Washington County,2024,1,9099.871644,3608,568602,8610.231641,9589.511647,0,,,,2,,,,2,19995.80113,16166.20647,23825.39579,,,,,2,8823.478675,8320.091025,9326.866326,,,,,2,,0.137,,,0.114,0.165,3.414228798,,,2.646448313,4.208609415,4.727934739,,,3.832540012,5.67758254,0.07409564,1018,13739,0.069715804,0.078475477,0,,,,0.081730769,0.044499983,0.118961556,0.119001919,0.091198278,0.146805561,0.083067093,0.052492042,0.113642144,0.07113453,0.066563058,0.075706002,,,,0.086580087,0.060936467,0.112223706,0.171,,,0.131,0.211,0.339,,,0.277,0.403,8,0.096460256,0.09,,,0.22,,,0.178,0.267,0.798895624,167248,209349,,,0.179749455,,,0.145276186,0.216111523,0.295454546,39,132,0.251104507,0.340589836,217.2,455,209470,,,9.999294168,425,42503,9.048621624,10.94996671,,,,,,,21.66064982,15.17085284,29.98746961,19.26605505,11.92599173,29.45021168,8.075441626,7.167651276,8.983231976,,,,41.44385027,31.77476236,53.12914564,0.050841502,8247,162210,0.044884055,0.056798949,0.00077338,162,209470,,,1293.024691,0.0006607,139,210383,,,1513.546763,0.001521035,320,210383,,,657.446875,3319,,,,,,,4924,,3305,0.44,,,,,,0.54,0.42,,0.44,0.49,,,,,,0.49,0.32,0.33,0.49,0.940127877,142184,151239,0.935234297,0.945021457,0.710798064,34210,48129,0.680390112,0.741206015,0.045846421,4802,104741,,,0.132,5287,,0.097446809,0.166553192,,,,0.116057234,0,0.282790819,0.352265044,0.24713408,0.457396008,0.169321039,0.055329745,0.283312334,0.094221254,0.078198246,0.110244261,4.588319443,147542,32156,4.327316729,4.849322157,0.199018525,8111,40755,0.171933348,0.226103702,12.93741347,271,209470,,,111.1986911,1154,1037782,104.7828611,117.614521,,,,,,,210.748156,164.2885266,266.2676165,,,,111.2656176,104.5704822,117.9607529,,,,9.3,,,,,1,,,,,0.098004695,8350,85200,0.090213654,0.105795736,0.080938867,0.073584297,0.088293437,0.009507042,0.006665809,0.012348276,0.013086855,0.009773941,0.016399768,0.767342327,76735,100001,0.755988525,0.778696129,,,,0.631170663,0.541665448,0.720675878,0.655353286,0.551469242,0.75923733,0.696058784,0.607346447,0.784771122,0.775649858,0.766173259,0.785126457,0.413,,100001,0.393026999,0.432973001,76.08603996,,,75.70142043,76.4706595,,,,85.29881214,80.51064207,90.0869822,66.65405874,64.46011592,68.84800156,90.86732185,82.35256322,99.38208048,76.33888216,75.94346465,76.73429968,,,,435.5375425,3608,568602,420.1778232,450.8972618,,,,,,,921.1679674,788.0478056,1054.288129,,,,425.8908783,410.1357993,441.6459573,,,,40.01907759,73,182413,31.36856854,50.31798182,,,,,,,,,,,,,36.59282907,27.78646928,47.30471716,,,,5.17576019,72,13911,4.049713586,6.518013374,,,,,,,,,,,,,4.691417941,3.562390333,6.064745591,,,,,,,0.104,,,0.088,0.122,0.158,,,0.134,0.18,0.081,,,0.068,0.096,59.3,107,180539,,,0.09,18820,,,,0.096460256,20046.37039,207820,,,47.66199461,297,623138,42.24136093,53.0826283,,,,,,,144.4223108,96.72188814,207.4145291,,,,44.97276261,39.47432785,50.47119736,,,,0.337,,,0.317,0.354,0.056511707,6833,120913,0.048171281,0.064852132,0.035223605,1528,43380,0.025691691,0.04475552,0.00113127,238,210383,,,883.9621849,0.935932595,2027.23,2166,,,0.050103971,506,10099,0.031518255,0.068689687,3.466974656,,,,,,3.615758256,2.937209294,3.63317774,3.505847828,3.486629993,,,,,,4.329159958,2.80875462,3.520157219,3.53233081,0.107991323,,,,,3838.459664,,,,,0.718825388,50059,69640,0.682150783,0.755499992,70751,,,65397.6383,76104.3617,,,,123869,74784.40426,172953.5957,33750,26668.97872,40831.02128,109694,87693.14894,131694.8511,75679,73427.08511,77930.91489,,,,,,0.354940651,9210,25948,,,57.72652004,,,,,0.361507258,,70751,,,5.453501722,57,10452,,,2.957310196,43,1454024,2.140220052,3.983477426,,,,,,,23.78275534,11.87226578,42.55391878,,,,2.390509081,1.635106442,3.374685561,,,,17.89676219,195,1037782,15.2511332,20.54239117,18.79007345,,,,,,,,,,,,,18.94085688,16.0836203,21.79809346,,,,13.87574654,144,1037782,11.60937461,16.14211848,,,,,,,,,,,,,14.36700246,11.96118898,16.77281594,,,,11.14149423,162,1454024,9.425791649,12.8571968,,,,,,,23.78275534,11.87226578,42.55391878,,,,11.20551132,9.41225603,12.99876661,,,,14.03225807,,18600,,,145,116,0.718680052,118478,164855,,,0.7,,,,,78.80386724,,,,,0.759793578,66254,87200,0.748131564,0.771455592,0.09227234,7790,84424,0.083966214,0.100578466,0.874541284,76260,87200,0.867417613,0.881664956,210383,,,,,0.193684851,40748,210383,,,0.220863853,46466,210383,,,0.031927485,6717,210383,,,0.001972593,415,210383,,,0.013256775,2789,210383,,,0.000365999,77,210383,,,0.019749695,4155,210383,,,0.913367525,192157,210383,,,0.004375577,872,199288,0.002814109,0.005937045,0.504698574,106180,210383,,,0.323335674,67690,209349,, -42,127,42127,PA,Wayne County,2024,1,8490.13148,923,138554,7528.214694,9452.048266,0,,,,2,,,,2,,,,2,5997.95765,2411.490056,12358.08515,1,9077.441677,7995.561433,10159.32192,,,,,2,,0.163,,,0.137,0.195,3.742043258,,,2.906326694,4.689085412,5.215951539,,,4.139126574,6.446087333,0.074600355,210,2815,0.064894094,0.084306617,0,,,,,,,,,,,,,0.075464243,0.065173602,0.085754885,,,,,,,0.196,,,0.156,0.239,0.341,,,0.267,0.427,8.7,0.008749552,0.1,,,0.254,,,0.208,0.31,0.58268009,29807,51155,,,0.174393693,,,0.139470503,0.217087421,0.261904762,11,42,0.18140659,0.346686893,103.1,53,51431,,,13.35050943,114,8539,10.89974548,15.80127338,,,,,,,,,,23.17290553,12.33859624,39.62637419,12.15484212,9.798518267,14.90683485,,,,,,,0.077388831,2748,35509,0.066665427,0.088112235,0.000369427,19,51431,,,2706.894737,0.000586247,30,51173,,,1705.766667,0.00113341,58,51173,,,882.2931035,2942,,,,,,,1919,,2982,0.42,,,,,,0.34,0.43,0.5,0.42,0.46,,,,,,0.54,0.46,0.43,0.46,0.91593584,36032,39339,0.904027087,0.927844592,0.493707144,5688,11521,0.448198829,0.539215458,0.050622334,1151,22737,,,0.181,1506,,0.126191489,0.235808511,,,,,,,,,,0.096405229,0.030885646,0.161924812,0.154082774,0.116884686,0.191280862,4.149350183,115576,27854,3.769166899,4.529533467,0.202664466,1719,8482,0.155741513,0.249587419,11.27724524,58,51431,,,108.7990766,279,256436,96.03236111,121.565792,,,,,,,,,,,,,116.141502,102.2363381,130.0466659,,,,7.1,,,,,1,,,,,0.138331573,2620,18940,0.118793675,0.157869472,0.120563231,0.101936384,0.139190077,0.014519535,0.007605255,0.021433816,0.005279831,0.001857461,0.008702201,0.781472228,16264,20812,0.757493293,0.805451162,,,,,,,,,,0.73192436,0.615422464,0.848426257,0.777193597,0.746764131,0.807623064,0.395,,20812,0.361510882,0.428489118,76.75299847,,,75.99245584,77.51354111,,,,,,,,,,83.91791587,75.15497042,92.68086132,76.29280254,75.46713806,77.11846702,,,,407.3422919,923,138554,377.8914686,436.7931153,,,,,,,,,,287.3597272,173.0093274,448.7478099,424.7341309,392.3545228,457.113739,,,,37.70840628,14,37127,20.61553661,63.26829833,,,,,,,,,,,,,39.65590873,21.11510125,67.81281166,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.117,,,0.1,0.137,0.167,,,0.144,0.195,0.092,,,0.077,0.109,70.1,32,45680,,,0.1,5140,,,,0.008749552,462.1688396,52822,,,35.72472476,55,153955,26.91275176,46.50063978,,,,,,,,,,,,,38.39689347,28.76190806,50.22408205,,,,0.374,,,0.354,0.392,0.086239138,2352,27273,0.073132755,0.099345521,0.049093829,428,8718,0.034795957,0.063391701,0.000957536,49,51173,,,1044.346939,0.909942363,315.75,347,,,0.080082136,156,1948,0.029890333,0.130273938,3.266170623,,,,,,,,,3.301566386,3.668896098,,,,,,,,,3.721726845,0.029663575,,,,,11294.155,,,,,0.861401019,41268,47908,0.757513756,0.965288281,56973,,,50656.91489,63289.08511,,,,,,,48833,31350.2766,66315.7234,53750,29998.85106,77501.14894,59774,56226.93617,63321.06383,,,,,,0.470039636,2016,4289,,,62.19155945,,,,,0.344917768,,56973,,,7.228915663,15,2075,,,3.906860447,14,358344,2.135916961,6.555047977,,,,,,,,,,,,,3.404655712,1.699591865,6.091869532,,,,25.59819832,77,256436,19.71373191,32.68832778,30.02698529,,,,,,,,,,,,,28.22560859,21.48664103,36.40897862,,,,23.39765088,60,256436,17.85487254,30.11741464,,,,,,,,,,,,,25.56846498,19.4639002,32.98145695,,,,15.62744179,56,358344,11.80480158,20.29353303,,,,,,,,,,,,,15.78522194,11.75313456,20.75465165,,,,11,,4000,,,28,16,0.66577388,28089,42190,,,0.467,,,,,14.21619144,,,,,0.819466248,16182,19747,0.804143722,0.834788775,0.118069385,2253,19082,0.097034832,0.139103938,0.844989112,16686,19747,0.820628394,0.86934983,51173,,,,,0.165360639,8462,51173,,,0.256834659,13143,51173,,,0.026713306,1367,51173,,,0.00402556,206,51173,,,0.00842241,431,51173,,,0.000390831,20,51173,,,0.052879448,2706,51173,,,0.898559787,45982,51173,,,0.003987793,196,49150,0.001648858,0.006326727,0.470130733,24058,51173,,,0.862164011,44104,51155,, -42,129,42129,PA,Westmoreland County,2024,1,8348.886657,5812,944619,7971.118855,8726.65446,0,,,,2,,,,2,15702.16503,12830.51662,18573.81344,,,,,2,8296.248596,7903.958787,8688.538405,,,,,2,,0.139,,,0.116,0.164,3.721691563,,,2.957512556,4.499280578,5.154108613,,,4.257881735,6.046431895,0.077348617,1552,20065,0.073652195,0.081045039,0,,,,0.082926829,0.045175812,0.120677847,0.140119761,0.116575692,0.163663829,0.097087379,0.064074676,0.130100081,0.072932831,0.069138748,0.076726914,,,,0.102661597,0.076723069,0.128600125,0.164,,,0.124,0.203,0.321,,,0.267,0.377,8.1,0.076522813,0.094,,,0.223,,,0.18,0.266,0.896084452,317808,354663,,,0.184775988,,,0.152613067,0.218206825,0.31147541,57,183,0.27419788,0.349139488,195.7,691,353057,,,9.708144139,635,65409,8.95304248,10.4632458,,,,,,,32.24361845,25.22864563,40.60550114,14.99659168,9.398284167,22.70502003,8.101950977,7.371795896,8.832106059,,,,29.24791086,22.47489777,37.42078333,0.047313159,12617,266670,0.041355712,0.053270605,0.000722263,255,353057,,,1384.537255,0.00069591,245,352057,,,1436.967347,0.002036602,717,352057,,,491.013947,2966,,,,,,4193,3205,,2906,0.46,,,,,,0.35,0.38,,0.46,0.51,,,,,,0.58,0.39,0.14,0.51,0.953438676,251192,263459,0.949845959,0.957031392,0.726215522,56265,77477,0.702589763,0.749841281,0.045511701,7999,175757,,,0.132,8190,,0.101021277,0.162978723,,,,0.115117892,0,0.257759276,0.384321224,0.253616247,0.515026201,0.227391874,0.153080797,0.301702952,0.110346456,0.097782186,0.122910725,4.627576919,134010,28959,4.419619797,4.835534041,0.177830247,11448,64376,0.161499797,0.194160698,13.87877878,490,353057,,,109.8568095,1925,1752281,104.9492261,114.7643929,,,,,,,111.2448067,82.2995204,147.071534,,,,112.4267534,107.2952422,117.5582646,,,,7,,,,,0,,,,,0.100279638,15420,153770,0.093468877,0.1070904,0.088391627,0.081688239,0.095095015,0.006210574,0.004649107,0.007772042,0.010275086,0.008031997,0.012518175,0.796170731,134564,169014,0.785919007,0.806422456,,,,0.706415094,0.591755942,0.821074247,0.679359323,0.600945217,0.75777343,0.663048841,0.598981789,0.727115892,0.788677258,0.780253525,0.79710099,0.395,,169014,0.381259074,0.408740926,76.94238086,,,76.64567199,77.23908973,,,,87.46671393,83.0403675,91.89306036,69.18664988,67.30694056,71.06635921,101.2954082,81.80388787,120.7869285,76.98467967,76.67856257,77.29079676,,,,395.960002,5812,944619,384.698696,407.2213081,,,,,,,756.8007609,652.1426668,861.4588551,,,,393.7758582,382.1963321,405.3553844,,,,46.82884234,133,284013,38.87011416,54.78757053,,,,,,,103.8519638,51.84252613,185.81985,,,,43.85213062,35.65710288,52.04715835,,,,5.072923272,104,20501,4.097938808,6.047907736,,,,,,,,,,,,,4.493530399,3.57907188,5.570407005,,,,,,,0.11,,,0.093,0.128,0.164,,,0.14,0.189,0.079,,,0.067,0.092,42.1,130,309002,,,0.094,33400,,,,0.076522813,27943.75894,365169,,,41.37104008,434,1049043,37.47872807,45.26335209,,,,,,,56.07267018,31.38344784,92.4833422,,,,42.33449762,38.26138486,46.40761038,,,,0.338,,,0.318,0.356,0.05442197,11034,202749,0.047273034,0.061570906,0.026019325,1753,67373,0.018870389,0.033168261,0.00094587,333,352057,,,1057.228228,0.925355288,3385.875,3659,,,0.044296155,697,15735,0.0315977,0.056994611,3.427460051,,,,,,3.892579932,2.410753258,3.282949758,3.482137469,3.512971505,,,,,,4.160445519,2.305322344,3.197609113,3.57305743,0.149256038,,,,,2601.648294,,,,,0.762693123,49662,65114,0.732306679,0.793079567,71152,,,68615.31915,73688.68085,,,,101618,79969.82979,123266.1702,33632,25632.34043,41631.65957,59784,37926.12766,81641.87234,70397,68365.51064,72428.48936,,,,,,0.403649926,17208,42631,,,66.30205306,,,,,0.315634135,,71152,,,6.05134085,95,15699,,,2.230608409,55,2465695,1.680399521,2.90344345,,,,,,,22.76089678,12.44359407,38.18891727,,,,1.687529288,1.19999829,2.30690809,,,,16.50187367,307,1752281,14.51951624,18.4842311,17.52002105,,,,,,,,,,,,,17.10826256,15.01286555,19.20365958,,,,11.98437922,210,1752281,10.36345778,13.60530066,,,,,,,24.97332395,12.46659334,44.68417489,,,,11.94991522,10.27692709,13.62290335,,,,9.976903064,246,2465695,8.730139016,11.22366711,,,,,,,,,,,,,9.952095803,8.665901145,11.23829046,,,,11.60655738,,30500,,,310,44,0.719535301,204697,284485,,,0.719,,,,,64.61731048,,,,,0.778911099,119358,153237,0.770698889,0.787123308,0.091334011,13561,148477,0.084399054,0.098268969,0.858558964,131563,153237,0.850116466,0.867001462,352057,,,,,0.179388565,63155,352057,,,0.244457574,86063,352057,,,0.027231386,9587,352057,,,0.001596332,562,352057,,,0.010873239,3828,352057,,,0.000241438,85,352057,,,0.01492372,5254,352057,,,0.929198965,327131,352057,,,0.00247743,840,339061,0.001713491,0.00324137,0.50505742,177809,352057,,,0.264826046,93924,354663,, -42,131,42131,PA,Wyoming County,2024,1,9479.827724,497,72235,8100.452625,10859.20282,0,,,,2,,,,2,,,,2,,,,2,9657.231524,8241.005733,11073.45732,,,,,2,,0.152,,,0.126,0.182,3.740236849,,,2.910029802,4.660945194,5.131416325,,,4.070197776,6.284991914,0.072639225,120,1652,0.060123356,0.085155094,0,,,,,,,,,,,,,0.069300518,0.056632596,0.081968441,,,,,,,0.192,,,0.151,0.238,0.371,,,0.294,0.455,8.8,0.002440555,0.095,,,0.25,,,0.202,0.304,0.632705512,16494,26069,,,0.189245172,,,0.153136699,0.232654373,0.291666667,7,24,0.183021186,0.403882272,157.5,41,26034,,,15.63636364,86,5500,12.50707259,19.31078189,,,,,,,,,,,,,15.96604689,12.64046968,19.8984582,,,,,,,0.059890555,1182,19736,0.05035864,0.06942247,0.00057617,15,26034,,,1735.6,0.00046129,12,26014,,,2167.833333,0.000730376,19,26014,,,1369.157895,3047,,,,,,,,,3040,0.45,,,,,,,,,0.45,0.49,,,,,,,,,0.49,0.927675784,17534,18901,0.917594913,0.937756656,0.531691985,3045,5727,0.48491328,0.57847069,0.048688585,659,13535,,,0.174,841,,0.122765957,0.225234043,,,,,,,0.04,0,0.5667183,0.335135135,0.084063204,0.586207067,0.173112339,0.139835604,0.206389073,4.02185128,122397,30433,3.615230851,4.428471709,0.204568223,1021,4991,0.161319974,0.247816472,9.602827072,25,26034,,,119.6234851,160,133753,101.087634,138.1593361,,,,,,,,,,,,,120.8506631,101.7633522,139.9379741,,,,7.4,,,,,1,,,,,0.103812586,1130,10885,0.088166915,0.119458257,0.092635479,0.076779751,0.108491208,0.00817639,0.004270423,0.012082356,0.004593477,0.001576158,0.007610797,0.81365624,9676,11892,0.798394259,0.82891822,,,,,,,,,,0.841201717,0.61408042,1,0.811165542,0.778086382,0.844244702,0.373,,11892,0.341861297,0.404138703,75.59262828,,,74.54193836,76.64331819,,,,,,,,,,,,,75.44391469,74.3768751,76.51095429,,,,456.9678509,497,72235,412.8410016,501.0947001,,,,,,,,,,,,,464.9200037,419.4183398,510.4216676,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.113,,,0.096,0.133,0.169,,,0.144,0.194,0.085,,,0.071,0.101,57.5,13,22626,,,0.095,2510,,,,0.002440555,69.00913651,28276,,,39.0501984,31,79385,26.53271522,55.42863955,,,,,,,,,,,,,41.0639538,27.90096431,58.28700459,,,,0.346,,,0.327,0.365,0.066058147,977,14790,0.055334743,0.076781552,0.042275173,220,5204,0.02916879,0.055381556,0.000807258,21,26014,,,1238.761905,0.875,225.75,258,,,,,,,,3.207735522,,,,,,,,,3.231114724,2.983849525,,,,,,,,,3.006783784,0.01881272,,,,,8291.0805,,,,,0.740026872,44614,60287,0.668343779,0.811709964,67643,,,60996.87234,74289.12766,,,,26250,8606.425532,43893.57447,,,,39615,14609.21277,64620.78723,68315,65105.12766,71524.87234,,,,,,0.639144737,1943,3040,,,,,,,,0.290510474,,67643,,,2.452984464,3,1223,,,,,,,,,,,,,,,,,,,,,,,,,,25.22051069,32,133753,16.89057183,36.22086034,23.92469702,,,,,,,,,,,,,26.42897814,17.69990145,37.95642118,,,,17.94352276,24,133753,11.49675361,26.69853954,,,,,,,,,,,,,18.83386958,12.06721561,28.02330503,,,,18.51127072,35,189074,12.89377831,25.74469645,,,,,,,,,,,,,18.85913337,13.06049809,26.35374858,,,,4.4,,2500,,,11,0,0.687234043,14858,21620,,,0.547,,,,,19.52587591,,,,,0.774286244,8353,10788,0.751580442,0.796992046,0.103190041,1061,10282,0.084369843,0.122010239,0.855302188,9227,10788,0.84100246,0.869601916,26014,,,,,0.19001307,4943,26014,,,0.230452833,5995,26014,,,0.010033059,261,26014,,,0.002921504,76,26014,,,0.005843008,152,26014,,,0.000153763,4,26014,,,0.024294611,632,26014,,,0.944722073,24576,26014,,,0.003319071,83,25007,0,0.007176355,0.495694626,12895,26014,,,0.95323948,24850,26069,, -42,133,42133,PA,York County,2024,1,7592.025711,6269,1256343,7297.053216,7886.998207,0,,,,2,1933.774963,1082.319167,3189.467722,1,13835.28245,12198.7867,15471.7782,,8346.428404,7326.796098,9366.06071,,7074.070548,6761.881555,7386.259541,,,,,2,,0.149,,,0.124,0.175,3.581750453,,,2.83208633,4.468669801,4.650235049,,,3.763040299,5.634080977,0.086220192,2907,33716,0.083224044,0.089216341,0,,,,0.079422383,0.056905781,0.101938985,0.132679181,0.118946082,0.14641228,0.09989071,0.091201692,0.108579728,0.077221622,0.073912102,0.080531142,,,,0.138175376,0.118045835,0.158304918,0.164,,,0.129,0.203,0.394,,,0.331,0.457,8.7,0.054384025,0.077,,,0.247,,,0.204,0.299,0.787110188,359267,456438,,,0.175207045,,,0.144300713,0.210077622,0.26344086,49,186,0.226241576,0.301675074,356.7,1636,458696,,,15.24543475,1456,95504,14.4623384,16.02853109,,,,,,,26.48205404,22.78398831,30.18011977,39.40557689,35.85055105,42.96060273,9.303918491,8.589754135,10.01808285,,,,33.1268516,27.27243427,38.98126893,0.062667766,23183,369935,0.05551883,0.069816702,0.000673649,309,458696,,,1484.453074,0.000557414,257,461058,,,1794,0.001416308,653,461058,,,706.0612557,2586,,,,,,624,4967,4428,2499,0.53,,,,,,0.38,0.49,0.4,0.53,0.57,,,,,,0.53,0.44,0.37,0.57,0.910966059,291265,319732,0.90606555,0.915866569,0.622791937,69914,112259,0.602694687,0.642889186,0.037950505,9060,238732,,,0.115,11263,,0.086404255,0.143595745,0.365079365,0,0.735112005,0.09442623,0.020231992,0.168620467,0.243399871,0.187458961,0.299340781,0.284094151,0.235995275,0.332193027,0.069404054,0.059115375,0.079692733,4.027585623,142645,35417,3.878517157,4.176654089,0.224568504,22418,99827,0.20493949,0.244197517,12.01231317,551,458696,,,102.7278825,2314,2252553,98.54223427,106.9135308,,,,,,,129.4166297,109.904584,148.9286754,74.32362786,61.87783158,86.76942414,106.0455091,101.3626053,110.728413,,,,8.9,,,,,1,,,,,0.118646983,20695,174425,0.11107731,0.126216656,0.102558173,0.094851555,0.110264792,0.013300846,0.010883412,0.015718279,0.008513688,0.006620716,0.01040666,0.800312558,180773,225878,0.790431957,0.81019316,,,,0.741336291,0.662377794,0.820294787,0.675308404,0.620458283,0.730158525,0.71685718,0.665945832,0.767768529,0.793948751,0.78202127,0.805876232,0.367,,225878,0.354334294,0.379665706,77.68888097,,,77.43277417,77.94498777,,,,93.63419983,85.86017659,101.4082231,71.4608299,70.22649393,72.69516587,77.73153208,76.15048552,79.31257864,78.09414204,77.82451392,78.36377015,,,,370.6150346,6269,1256343,360.9913335,380.2387357,,,,122.1979585,79.82376356,179.048322,617.0936839,560.7540187,673.4333492,389.9288398,343.8806946,435.976985,357.5952382,347.3958125,367.7946639,,,,44.90601649,197,438694,38.63515094,51.17688205,,,,,,,113.7446586,80.08673666,156.7820288,67.51082643,48.44693463,91.58605912,33.96397303,27.55833077,40.36961529,,,,5.085296987,172,33823,4.325306477,5.845287497,,,,,,,14.13427562,9.66783406,19.95337989,8.550959094,6.020664333,11.78637073,3.630193742,2.926448517,4.452110366,,,,,,,0.109,,,0.093,0.128,0.159,,,0.137,0.185,0.087,,,0.073,0.102,222.4,865,388892,,,0.077,35140,,,,0.054384025,23655.52813,434972,,,34.82545306,473,1358202,31.68695203,37.9639541,,,,,,,64.96913966,48.52206102,85.19838294,33.82597835,24.05357731,46.24122595,33.48643126,30.08806236,36.88480017,,,,0.358,,,0.341,0.373,0.070711593,19112,270281,0.062371167,0.079052018,0.041878923,4390,104826,0.031155519,0.052602327,0.001205922,556,461058,,,829.2410072,0.891144532,4636.625,5203,,,0.080872584,1887,23333,0.05998465,0.101760518,3.144879524,,,,,,3.634569146,2.509495972,,3.329192356,3.129873536,,,,,,3.458257929,2.368847333,2.335927643,3.354311049,0.162268766,,,,,5506.029938,,,,,0.767000446,49865,65013,0.740230832,0.79377006,79938,,,76943.78723,82932.21277,63636,37032.42553,90239.57447,96250,70269.57447,122230.4255,53391,49412.61702,57369.38298,50802,42692.7234,58911.2766,82198,80664.55319,83731.44681,,,,,,0.428009703,26995,63071,,,51.7814404,,,,,0.273136681,,79938,,,5.227929819,132,25249,,,4.746486644,149,3139164,3.984345864,5.508627425,,,,,,,39.06773229,30.45521393,49.35972945,12.5333549,8.515806574,17.79009683,1.651803635,1.195418481,2.224968657,,,,16.7334449,400,2252553,15.0333762,18.4335136,17.75762879,,,,,,,11.1464687,6.238593916,18.38440502,7.968950056,4.243130284,13.62714729,18.23498598,16.27117462,20.19879734,,,,13.36261566,301,2252553,11.85300727,14.87222405,,,,,,,44.41517467,33.72630426,57.4169128,13.02019758,8.342286268,19.37302193,11.51966444,9.976227066,13.06310182,,,,9.843385054,309,3139164,8.745842657,10.94092745,,,,,,,10.0459883,5.953889349,15.8769926,8.490337188,5.255652537,12.97838228,10.02606393,8.809692282,11.24243557,,,,12.00431035,,46400,,,256,301,0.698877557,238471,341220,,,0.748,,,,,96.25317617,,,,,0.755677904,134921,178543,0.745721281,0.765634527,0.106272275,18607,175088,0.09849707,0.114047479,0.879059946,156950,178543,0.871600098,0.886519795,461058,,,,,0.21588824,99537,461058,,,0.189663773,87446,461058,,,0.061564922,28385,461058,,,0.004038538,1862,461058,,,0.016826516,7758,461058,,,0.000871908,402,461058,,,0.092352806,42580,461058,,,0.807419023,372267,461058,,,0.015201472,6570,432195,0.012987777,0.017415167,0.50167441,231301,461058,,,0.284566579,129887,456438,, -44,000,44000,RI,Rhode Island,2024,,6504.682381,13004,2968646,6327.715168,6681.649594,0,8049.689671,5606.903797,11195.1697,,3442.490131,2832.694584,4052.285678,,8332.034781,7545.92461,9118.144951,,5085.396375,4721.056489,5449.73626,,6683.246201,6464.541569,6901.950834,,,,,2,,0.132,,,0.12,0.144,3.345429887,,,3.05325428,3.637605495,4.77191438,,,4.421850671,5.12197809,0.077763293,5667,72875,0.075818939,0.079707647,0,0.098976109,0.064781661,0.133170558,0.083165468,0.073984348,0.092346588,0.116418967,0.108057354,0.12478058,0.083387688,0.079549419,0.087225956,0.067449395,0.065023294,0.069875496,,,,0.090504451,0.07799896,0.103009942,0.129,,,0.116,0.143,0.306,,,0.289,0.324,8.5,0.046714009,0.093,,,0.237,,,0.222,0.254,0.952734652,1045511,1097379,,,0.211180132,,,0.194493455,0.228891638,0.412121212,136,330,0.38633395,0.437634821,474.5,5199,1095610,,,10.19481935,2572,252285,9.800815811,10.58882289,16.33705933,9.835976926,25.51234185,3.493371551,2.484128672,4.775553911,11.24699716,9.711110931,12.78288339,26.85699994,25.44813014,28.26586974,4.701536921,4.365276344,5.037797498,,,,12.61667863,10.38696774,14.84638953,0.048986703,42429,866133,0.043029256,0.05494415,0.000967498,1060,1095610,,,1033.59434,0.000635438,695,1093734,,,1573.717986,0.004797327,5247,1093734,,,208.4493997,2650,,,,,,2975,3410,3409,2576,0.53,,,,,0.28,0.36,0.38,0.36,0.54,0.49,,,,,0.25,0.39,0.33,0.27,0.5,0.893768054,689349,771284,0.889543821,0.897992287,0.691612804,196990,284827,0.677217303,0.706008305,0.032023545,18236,569456,,,0.14,28009,,0.12212766,0.15787234,0.532168388,0.243148404,0.821188371,0.110164909,0.067643849,0.15268597,0.215306122,0.170904665,0.25970758,0.276539137,0.248289811,0.304788463,0.0591039,0.050652419,0.067555381,4.915890524,154649,31459,4.760817547,5.070963501,0.263645374,54795,207836,0.248249071,0.279041678,9.720612262,1065,1095610,,,85.15589083,4538,5329050,82.67824901,87.63353264,78.91967731,46.77280244,124.7271145,32.95716101,25.26806636,42.24959302,73.47629309,64.14128216,82.81130402,45.09702187,40.63264447,49.56139927,99.419584,96.25224119,102.5869268,,,,5.9,,,,,0.6,,,,,0.16483013,68360,414730,0.158033314,0.171626947,0.143701411,0.137671926,0.149730896,0.01919321,0.016731846,0.021654574,0.009054083,0.007645429,0.010462738,0.762767488,413944,542687,0.758092569,0.767442408,0.657104737,0.511487704,0.802721769,0.670472549,0.630994313,0.709950784,0.732305244,0.691106192,0.773504296,0.683369781,0.659090606,0.707648956,0.787609261,0.783586619,0.791631903,0.344,,542687,0.335408048,0.352591952,78.8837229,,,78.72221858,79.04522721,79.26384907,76.14941954,82.37827861,84.95064187,83.47232185,86.42896188,80.12232335,78.95312316,81.29152353,86.22709379,85.03961018,87.41457741,78.50586039,78.32025904,78.69146173,,,,327.6239835,13004,2968646,321.7211005,333.5268665,427.8653437,325.7109238,551.9151199,187.4033688,160.4719866,214.334751,398.8742538,370.3129177,427.43559,245.6703319,230.1247732,261.2158905,338.974264,332.0238696,345.9246585,,,,36.99349479,354,956925,33.13977794,40.84721164,,,,32.87671233,16.98787701,57.42900013,70.9058937,52.627721,93.48058124,38.33473894,31.01509302,46.86223045,30.43764992,25.8349512,35.04034865,,,,5.320665083,392,73675,4.793946113,5.847384054,,,,,,,12.91578202,10.12391135,16.23965679,4.846691495,3.921262847,5.92482902,4.239407436,3.616603673,4.862211198,,,,,,,0.100030866,,,0.089123258,0.112109129,0.152700121,,,0.138492122,0.168081347,0.092,,,0.082,0.101,285.6,2713,950065,,,0.093,102130,,,,0.046714009,49169.6243,1052567,,,36.08235868,1159,3212096,34.00501061,38.15970676,,,,10.54036962,5.44636279,18.41190451,42.93319595,34.29351204,53.08756166,26.63482904,22.2692891,31.00036899,39.25479126,36.68155309,41.82802942,,,,0.327990141,,,0.307867898,0.348764849,0.056917887,37560,659898,0.049768951,0.064066824,0.024787233,5391,217491,0.016446807,0.033127658,0.00143545,1570,1093734,,,696.6458599,0.838624062,9389.235,11196,,,0.036673923,2308,62933,0.028759896,0.04458795,3.065410838,,,,,,3.120344556,2.725606251,2.640355918,3.332946015,2.980831448,,,,,,3.302117457,2.588937334,2.585014342,3.232706214,0.225774928,,,,,1511.622,,,,,0.818458313,55435,67731,0.800854609,0.836062017,80873,,,78522.19149,83223.80851,60840,39849.53192,81830.46809,101293,86261.17021,116324.8298,61614,56305.91489,66922.08511,53015,49998.14894,56031.85106,88381,86720.06383,90041.93617,,,,,,0.406659165,55657,136864,,,62.90172645,,,,,0.331497091,,,,,10.98599286,,,,,2.378465135,177,7441774,2.028063416,2.728866854,,,,,,,9.872620755,7.173461354,13.25353255,3.393646923,2.424471116,4.621183905,1.547667218,1.2327083,1.918566372,,,,10.16091711,569,5329050,9.296520669,11.02531356,10.67732523,,,,6.383423512,3.186582018,11.42170795,6.114053982,3.681059894,9.547852654,4.544982645,3.165746941,6.320970632,11.85933879,10.74254148,12.9761361,,,,4.616207392,246,5329050,4.03934287,5.193071913,,,,,,,8.335545855,5.493177242,12.12778159,3.911476387,2.708811105,5.465896194,4.596678256,3.915624875,5.277731638,,,,6.638202128,494,7441774,6.052815134,7.223589122,,,,3.834914597,1.838990611,7.052544482,7.62884331,5.283195764,10.66054387,5.854040943,4.554793277,7.40866348,7.011118963,6.302440092,7.719797835,,,,,,,,,,,0.650285527,516990,795020,,,,,,,,276.5896855,,,,,0.62688128,270950,432219,0.621402033,0.632360528,0.151255447,63836,422041,0.144836759,0.157674134,0.891642894,385385,432219,0.886966687,0.896319101,1093734,,,,,0.186436556,203912,1093734,,,0.188720475,206410,1093734,,,0.062995207,68900,1093734,,,0.012232408,13379,1093734,,,0.036857225,40312,1093734,,,0.002090088,2286,1093734,,,0.175527139,191980,1093734,,,0.698833537,764338,1093734,,,0.041634377,43303,1040078,0.038965929,0.044302826,0.509025961,556739,1093734,,,0.089475013,98188,1097379,, -44,001,44001,RI,Bristol County,2024,1,4760.939523,476,134279,4027.175124,5494.703922,0,,,,2,,,,2,,,,2,,,,2,4724.921689,3993.610038,5456.23334,,,,,2,,0.102,,,0.081,0.125,2.886458143,,,2.235607299,3.638377672,4.999952971,,,4.091927082,5.966298157,0.063573883,148,2328,0.053662353,0.073485413,0,,,,,,,,,,,,,0.060696517,0.050257902,0.071135133,,,,,,,0.118,,,0.084,0.155,0.237,,,0.188,0.291,8.4,0.120938694,0.06,,,0.163,,,0.127,0.203,0.952572205,48384,50793,,,0.195041099,,,0.160641209,0.231433967,0.666666667,2,3,0.391498614,0.824051859,202.7,103,50818,,,1.721685755,23,13359,1.091401081,2.583373972,,,,,,,,,,,,,1.53609831,0.910389212,2.427697582,,,,,,,0.033493939,1293,38604,0.026345002,0.040642875,0.002007163,102,50818,,,498.2156863,0.000377284,19,50360,,,2650.526316,0.002422558,122,50360,,,412.7868853,1604,,,,,,,2583,,1533,0.58,,,,,,,,,0.59,0.56,,,,,,0.43,0.44,0.42,0.56,0.93266326,33034,35419,0.916683331,0.948643189,0.807341142,8754,10843,0.732630601,0.882051682,0.026037736,690,26500,,,0.07,606,,0.040212766,0.099787234,,,,0.040133779,0,0.352540819,,,,0.033613445,0,0.171270391,0.029613961,0.005643712,0.05358421,4.936345314,205737,41678,4.255840547,5.616850081,0.157164701,1439,9156,0.104271211,0.21005819,9.839033413,50,50818,,,72.59143258,178,245208,61.92715508,83.25571008,,,,,,,,,,,,,76.99332128,65.48677729,88.49986527,,,,6.2,,,,,0,,,,,0.148470464,2815,18960,0.122825816,0.174115113,0.145546129,0.120082683,0.171009576,0.002056962,0,0.005541675,0.003691983,0.000884093,0.006499873,0.756066764,19161,25343,0.728262598,0.78387093,,,,,,,,,,0.684828164,0.496196744,0.873459584,0.690977152,0.654030781,0.727923524,0.398,,25343,0.358753129,0.437246871,80.62997582,,,79.93973457,81.32021707,,,,,,,,,,,,,80.52255148,79.83242115,81.21268182,,,,243.51412,476,134279,219.9280471,267.1001929,,,,,,,,,,,,,247.0731933,222.4507568,271.6956299,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.088,,,0.072,0.104,0.145,,,0.121,0.169,0.069,,,0.058,0.082,35.7,16,44787,,,0.06,3020,,,,0.120938694,6031.817343,49875,,,21.67331541,32,147647,14.8245317,30.59625463,,,,,,,,,,,,,23.14244549,15.72416891,32.84885408,,,,0.297,,,0.28,0.316,0.037977275,1113,29307,0.02963685,0.046317701,0.020205097,199,9849,0.011864671,0.028545523,0.00033757,17,50360,,,2962.352941,0.936171004,503.66,538,,,,,,,,3.790258957,,,,,,,,2.796041144,3.85125942,3.660086733,,,,,,4.25333187,,2.955554206,3.707010985,0.12589094,,,,,8870.425,,,,,0.691209648,67404,97516,0.570081343,0.812337953,101158,,,91958.51064,110357.4894,,,,125357,48184.23404,202529.766,,,,87438,30254.85106,144621.1489,105815,98630.31915,112999.6809,,,,,,0.163030303,1076,6600,,,67.39862258,,,,,0.302467427,,101158,,,11.13360324,22,1976,,,,,,,,,,,,,,,,,,,,,,,,,,11.52283775,27,245208,7.45697304,17.00998161,11.01106,,,,,,,,,,,,,12.70517779,8.140447144,18.90429745,,,,,,,,,,,,,,,,,,,,,,,,,,,3.494884363,12,343359,1.805857749,6.104859651,,,,,,,,,,,,,3.182554509,1.526158592,5.852831055,,,,,,4600,,,,,0.739588756,28415,38420,,,0.72,,,,,106.8524983,,,,,0.732175455,14038,19173,0.711738599,0.752612311,0.139737527,2630,18821,0.115138723,0.164336332,0.907630522,17402,19173,0.890384803,0.924876241,50360,,,,,0.175297855,8828,50360,,,0.214158062,10785,50360,,,0.013403495,675,50360,,,0.003375695,170,50360,,,0.028097697,1415,50360,,,0.000714853,36,50360,,,0.036953932,1861,50360,,,0.901489277,45399,50360,,,0.01201158,585,48703,0.006078814,0.017944347,0.514555203,25913,50360,,,0.01130077,574,50793,, -44,003,44003,RI,Kent County,2024,1,6468.233611,2253,459149,6026.739905,6909.727316,0,,,,2,3121.354058,1818.303764,4997.590217,1,6334.938729,3869.545153,9783.799073,1,3302.420168,2115.922915,4913.739438,1,6798.81219,6304.079079,7293.545301,,,,,2,,0.117,,,0.096,0.139,3.314622834,,,2.625121123,4.020001395,5.233933199,,,4.382591406,6.107560385,0.068186171,712,10442,0.063351389,0.073020954,0,,,,0.082514735,0.05861118,0.106418289,0.126530612,0.084901737,0.168159488,0.072239422,0.055938984,0.08853986,0.063817192,0.058604288,0.069030095,,,,0.075471698,0.039913454,0.111029942,0.149,,,0.114,0.183,0.296,,,0.249,0.347,8.7,0.055377585,0.075,,,0.205,,,0.168,0.243,0.913156026,155568,170363,,,0.197612855,,,0.168220455,0.229653389,0.428571429,27,63,0.367544482,0.487362953,218.5,373,170715,,,7.967032967,232,29120,6.941832741,8.992233193,,,,,,,,,,16.78219628,12.28667691,22.38509803,7.048495336,5.979454605,8.117536068,,,,8.14995925,3.908222246,14.98806523,0.039664622,5464,137755,0.032515686,0.046813558,0.000843511,144,170715,,,1185.520833,0.000782368,134,171275,,,1278.171642,0.003999416,685,171275,,,250.0364964,3010,,,,,,2562,,4142,3025,0.52,,,,,,0.38,0.21,0.37,0.53,0.49,,,,,,0.45,0.33,0.39,0.5,0.927466953,117383,126563,0.918323657,0.936610249,0.721499254,31935,44262,0.684157948,0.758840561,0.028855509,2699,93535,,,0.092,2765,,0.056255319,0.127744681,,,,0.056782334,0,0.165979743,0.038525963,0,0.15142924,0.154823801,0.066328299,0.243319304,0.060485057,0.042845822,0.078124293,4.438370395,158077,35616,4.101336548,4.775404243,0.181617577,5679,31269,0.154555427,0.208679726,9.020882758,154,170715,,,92.95590095,769,827274,86.38583293,99.52596897,,,,,,,,,,33.69910908,19.26195256,54.72524189,101.9583755,94.59723286,109.3195182,,,,3.9,,,,,0,,,,,0.149247343,10460,70085,0.134087737,0.164406948,0.127723624,0.113621627,0.141825621,0.01911964,0.014131891,0.02410739,0.010059214,0.007093713,0.013024715,0.812789159,71853,88403,0.796450056,0.829128261,,,,0.699561404,0.564411661,0.834711146,0.764475403,0.670147822,0.858802983,0.734708495,0.680783672,0.788633317,0.799407099,0.782370998,0.816443201,0.352,,88403,0.33271406,0.37128594,78.28008856,,,77.89754546,78.66263166,,,,85.93043355,81.94381656,89.91705054,80.16012673,76.52974536,83.79050809,91.02624145,84.08798111,97.96450179,77.91129112,77.50014952,78.32243272,,,,334.2621153,2253,459149,319.608841,348.9153897,,,,151.7137893,95.078224,229.6965002,334.6348699,234.3741489,463.275713,159.7725908,108.5577238,226.7844392,348.3314859,332.388784,364.2741879,,,,29.66016862,40,134861,21.18965931,40.38873133,,,,,,,,,,,,,28.12359382,18.97487065,40.1481789,,,,4.056603774,43,10600,2.935784265,5.464218661,,,,,,,,,,,,,3.696430634,2.528355817,5.218257142,,,,,,,0.097,,,0.082,0.113,0.161,,,0.138,0.184,0.078,,,0.067,0.09,44.3,66,148973,,,0.075,12690,,,,0.055377585,9201.428718,166158,,,37.42597363,187,499653,32.06173146,42.79021579,,,,,,,,,,,,,39.93425852,33.98341343,45.8851036,,,,0.37,,,0.353,0.387,0.04564686,4855,106360,0.037306434,0.053987285,0.02054629,680,33096,0.013397353,0.027695226,0.001617282,277,171275,,,618.3212996,0.857359069,1399.21,1632,,,0.041191817,300,7283,0.018305339,0.064078294,3.208904147,,,,,,,3.019860848,2.934417656,3.268894039,3.008043661,,,,,,3.252959395,2.69395566,2.653053304,3.057793549,0.042237608,,,,,9624.3834,,,,,0.825320126,58072,70363,0.785362522,0.86527773,84230,,,77145.40426,91314.59575,102522,3723.702128,201320.2979,110357,91075.12766,129638.8723,112903,86634.23404,139171.766,86790,75236.12766,98343.87234,84129,80552.14894,87705.85106,,,,,,0.244899011,4753,19408,,,45.26914538,,,,,0.331497091,,84230,,,8.592119799,70,8147,,,,,,,,,,,,,,,,,,,,,,,,,,12.15604027,105,827274,9.724937372,14.58714317,12.69228817,,,,,,,,,,,,,13.16526681,10.43220588,15.89832773,,,,4.230762722,35,827274,2.946881251,5.883966784,,,,,,,,,,,,,4.565300397,3.14254273,6.411379118,,,,7.175653957,83,1156689,5.715368323,8.895302696,,,,,,,,,,,,,7.468303929,5.884174062,9.347696025,,,,15.14084507,,14200,,,154,61,0.71714814,93093,129810,,,0.727,,,,,136.1700605,,,,,0.721034917,52058,72199,0.707799821,0.734270013,0.1335887,9486,71009,0.119060964,0.148116436,0.905663513,65388,72199,0.894842443,0.916484583,171275,,,,,0.17951248,30746,171275,,,0.205634214,35220,171275,,,0.023669537,4054,171275,,,0.005505766,943,171275,,,0.03154576,5403,171275,,,0.00109765,188,171275,,,0.072228872,12371,171275,,,0.849697854,145532,171275,,,0.008352494,1355,162227,0.005837183,0.010867805,0.510728361,87475,171275,,,0.072492267,12350,170363,, -44,005,44005,RI,Newport County,2024,1,5071.960977,865,224136,4455.034836,5688.887117,0,,,,2,,,,2,5886.354245,2541.309962,11598.46447,1,,,,2,5313.424647,4611.681398,6015.167896,,,,,2,,0.103,,,0.083,0.125,2.821921607,,,2.19588969,3.523237384,4.38713754,,,3.58588463,5.249742803,0.070467649,330,4683,0.063137359,0.077797939,0,,,,,,,0.068421053,0.032521918,0.104320187,0.090620032,0.068185576,0.113054488,0.063211845,0.055163645,0.071260045,,,,0.123076923,0.076965574,0.169188272,0.11,,,0.081,0.141,0.261,,,0.212,0.314,8.9,0.046445771,0.069,,,0.169,,,0.136,0.206,0.904522261,77466,85643,,,0.221182095,,,0.186216087,0.257942361,0.294117647,5,17,0.163936752,0.428688912,205.2,175,85264,,,6.085658514,106,17418,4.927119355,7.244197674,,,,,,,,,,27.81211372,20.28634659,37.21479635,2.626203677,1.839360769,3.635772869,,,,15.20086862,8.310456326,25.50447462,0.037026949,2311,62414,0.029878013,0.044175885,0.000832708,71,85264,,,1200.901409,0.000970632,82,84481,,,1030.256098,0.003858856,326,84481,,,259.1441718,2429,,,,,,3107,5901,,2334,0.52,,,,,,0.29,0.36,0.3,0.53,0.52,,,,,,0.49,0.35,0.37,0.52,0.947731477,60452,63786,0.938985471,0.956477483,0.770548984,15243,19782,0.721913091,0.819184876,0.028030538,1263,45058,,,0.093,1213,,0.052489362,0.133510638,,,,,,,0.372492837,0.19273289,0.552252784,0.368076236,0.2060992,0.530053272,0.042898378,0.024101308,0.061695447,4.593727781,180901,39380,4.151503111,5.035952451,0.207397241,2871,13843,0.168905299,0.245889182,11.96284481,102,85264,,,72.4979768,301,415184,64.30769753,80.68825607,,,,,,,77.86645902,40.23473564,136.0170336,,,,78.07809501,68.8832292,87.27296082,,,,5.9,,,,,1,,,,,0.151098901,5225,34580,0.13385445,0.168343352,0.141980719,0.124276139,0.159685299,0.005639098,0.002145636,0.00913256,0.01026605,0.005392255,0.015139844,0.742409987,32352,43577,0.721684463,0.763135511,,,,0.713071201,0.588856616,0.837285786,0.75694051,0.596999919,0.916881101,0.733748056,0.658642992,0.80885312,0.759204128,0.734522451,0.783885805,0.32,,43577,0.290022734,0.349977266,81.57946921,,,80.97744642,82.181492,,,,,,,83.04309689,78.21993395,87.86625982,91.69239961,81.40906761,101.9757316,81.30820598,80.65665669,81.95975527,,,,248.2508912,865,224136,230.0404375,266.4613449,,,,,,,250.2155388,156.808746,378.8293328,,,,256.9615214,236.9252618,276.9977811,,,,43.34432422,28,64599,28.80198866,62.6446167,,,,,,,,,,,,,45.78563996,28.6936168,69.32000913,,,,4.979253112,24,4820,3.190301422,7.408733941,,,,,,,,,,,,,,,,,,,,,,0.086,,,0.072,0.101,0.139,,,0.117,0.161,0.069,,,0.058,0.081,64.7,49,75697,,,0.069,5930,,,,0.046445771,3849.797089,82888,,,24.48009888,61,249182,18.72533592,31.44571113,,,,,,,,,,,,,27.72712747,21.1071741,35.76597429,,,,0.303,,,0.286,0.32,0.041452912,2012,48537,0.033112487,0.049793338,0.022413558,328,14634,0.014073132,0.030753983,0.000781241,66,84481,,,1280.015152,0.884955752,600,678,,,,,,,,3.16051058,,,,,,,2.703267879,,3.370570982,3.195811027,,,,,,,2.899735969,,3.370841278,0.127748759,,,,,8777.773167,,,,,0.842798397,64764,76844,0.735190616,0.950406178,92795,,,86646.91489,98943.08511,39513,32652.40426,46373.59575,91250,44428.04255,138071.9575,67347,34006.74468,100687.2553,48904,22755.57447,75052.42553,100560,93030.97872,108089.0213,,,,,,0.267414404,2265,8470,,,53.21222744,,,,,0.366582251,,92795,,,10.98599286,40,3641,,,,,,,,,,,,,,,,,,,,,,,,,,10.73968467,47,415184,7.740220059,14.51693374,11.32028209,,,,,,,,,,,,,10.84037309,7.592464041,15.00764572,,,,3.371998921,14,415184,1.843503188,5.65764122,,,,,,,,,,,,,3.664314928,1.951093373,6.266090125,,,,4.479738659,26,580391,2.926314022,6.563855071,,,,,,,,,,,,,4.630160868,2.93512481,6.94751469,,,,13.49206349,,6300,,,44,41,0.69114872,46148,66770,,,0.652,,,,,132.8108331,,,,,0.667691276,23894,35786,0.649048794,0.686333758,0.147756953,5148,34841,0.129591557,0.165922349,0.919353937,32900,35786,0.9073545,0.931353375,84481,,,,,0.157751447,13327,84481,,,0.2554894,21584,84481,,,0.036161977,3055,84481,,,0.006309111,533,84481,,,0.020406955,1724,84481,,,0.001195535,101,84481,,,0.06175353,5217,84481,,,0.852783466,72044,84481,,,0.011852358,972,82009,0.007024987,0.016679729,0.504930103,42657,84481,,,0.085027381,7282,85643,, -44,007,44007,RI,Providence County,2024,1,7051.995536,7980,1802897,6820.969022,7283.022049,0,8115.800214,4957.341613,12534.1952,1,4056.437651,3275.427074,4837.448228,,8490.104562,7645.114974,9335.09415,,5318.605146,4923.307583,5713.902709,,7507.933638,7188.841285,7827.025991,,,,,2,,0.155,,,0.133,0.181,3.590526138,,,2.957055953,4.315964346,4.929224406,,,4.17410273,5.764655419,0.082788362,4089,49391,0.080358109,0.085218616,0,0.083832335,0.041799267,0.125865404,0.086253369,0.075455924,0.097050815,0.118720565,0.10983958,0.127601551,0.084039233,0.079979702,0.088098765,0.071310648,0.067894942,0.074726355,,,,0.088050315,0.073368249,0.10273238,0.148,,,0.121,0.179,0.325,,,0.279,0.375,8.5,0.032619055,0.094,,,0.265,,,0.226,0.305,0.978586163,646592,660741,,,0.182247722,,,0.157961772,0.208548175,0.375,72,192,0.339777921,0.409978311,559.2,3681,658221,,,13.76715997,2108,153118,13.1794472,14.35487274,16.32047478,8.147122207,29.20183756,4.02669121,2.804737966,5.600152712,11.89416105,10.18937814,13.59894396,28.99624913,27.41451031,30.57798795,5.989418263,5.443848593,6.534987933,,,,14.33514582,11.48186415,17.68234941,0.056095373,29766,530632,0.052520905,0.059669841,0.000966241,636,658221,,,1034.938679,0.000581176,382,657288,,,1720.649215,0.005548557,3647,657288,,,180.2270359,2729,,,,,,3216,2831,3267,2666,0.51,,,,,,0.36,0.38,0.36,0.54,0.45,,,,,,0.38,0.32,0.26,0.48,0.862897624,392577,454952,0.856981742,0.868813507,0.656446379,120966,184274,0.638316246,0.674576511,0.03485741,11646,334104,,,0.169,21884,,0.140404255,0.197595745,0.601412714,0.250864608,0.951960821,0.129980276,0.073510796,0.186449756,0.211081794,0.163877343,0.258286246,0.287655696,0.257052464,0.318258928,0.071969976,0.058226079,0.085713873,5.161585813,140870,27292,4.927152244,5.396019382,0.300341015,39985,133132,0.277643027,0.323039003,9.206634246,606,658221,,,86.27624613,2767,3207140,83.06152923,89.49096302,,,,33.1584107,24.27612408,44.22867317,76.05833034,65.86781911,86.24884158,47.84926049,42.9537468,52.74477418,108.8383923,104.1844054,113.4923793,,,,8.3,,,,,1,,,,,0.180874691,43570,240885,0.170761206,0.190988176,0.154543161,0.145614488,0.163471835,0.024991178,0.02117406,0.028808297,0.009506611,0.007380153,0.01163307,0.746114784,238609,319802,0.737603763,0.754625804,,,,0.650161302,0.600789921,0.699532684,0.725938882,0.685792672,0.766085092,0.673384115,0.643804712,0.702963517,0.796769646,0.789821608,0.803717685,0.327,,319802,0.314966547,0.339033453,78.23236378,,,78.01910548,78.44562209,77.86631657,74.19990347,81.53272966,83.96796739,82.1775287,85.75840609,80.20520673,78.88406746,81.52634601,85.62554887,84.40913869,86.84195905,77.47903938,77.21559829,77.74248047,,,,358.6360374,7980,1802897,350.535316,366.7367587,424.2001064,290.1525588,598.8439806,224.5741899,188.8705358,260.277844,408.9365832,377.8572272,440.0159392,256.843546,240.0657146,273.6213774,383.9785151,373.5938991,394.3631311,,,,41.3427329,251,607120,36.22805379,46.45741202,,,,41.10305657,20.51849775,73.54472204,72.89338128,53.1689325,97.53707924,37.80857794,30.07028406,46.9304143,33.34741335,26.81525834,40.98963258,,,,5.995348091,299,49872,5.315777024,6.674919159,,,,,,,12.90574893,9.981305283,16.41927697,4.929737081,3.948517313,6.080812476,5.004244672,4.077445589,5.931043755,,,,,,,0.11,,,0.095,0.127,0.158,,,0.14,0.18,0.1,,,0.088,0.114,124.9,704,563542,,,0.094,61520,,,,0.032619055,20441.28507,626667,,,40.64748443,786,1933699,37.80578283,43.48918603,,,,13.22004158,6.599397127,23.65430614,46.0024457,36.42056948,57.33277305,28.13784583,23.35571893,32.91997273,47.50944543,43.52798532,51.49090555,,,,0.366,,,0.353,0.379,0.066120377,26418,399544,0.06135442,0.070886335,0.02677316,3694,137974,0.022007203,0.031539118,0.001646158,1082,657288,,,607.4750462,0.812567077,5814.73,7156,,,0.045653319,1733,37960,0.034289517,0.057017122,2.905832692,,,,,,3.069607152,2.710765687,2.6134927,3.215998325,2.822702596,,,,,,3.239460283,2.576003646,2.56635923,3.104559483,0.200870889,,,,,1615.741294,,,,,0.82368312,51696,62762,0.797031825,0.850334416,74190,,,71164.80851,77215.19149,69167,44100.44681,94233.55319,105921,87516.06383,124325.9362,58268,52956.34043,63579.65957,50714,47475.53192,53952.46809,82392,80281.87234,84502.12766,,,,,,0.514350771,45178,87835,,,56.44876032,,,,,0.344561262,,74190,,,7.056396895,260,36846,,,3.352490207,150,4474286,2.815980036,3.889000379,,,,,,,10.83194495,7.806713158,14.64164284,3.839995085,2.743348787,5.228983415,2.162797825,1.646421912,2.789851616,,,,9.098392254,307,3207140,8.053159458,10.14362505,9.572391601,,,,,,,6.047346129,3.522801972,9.682386967,4.755730378,3.252916058,6.713672315,11.4237649,9.908297607,12.93923218,,,,4.739425158,152,3207140,3.985965599,5.492884716,,,,,,,8.885318965,5.750109946,13.11648358,4.30252206,2.961658215,6.042340633,4.506872981,3.609820504,5.559211172,,,,6.973179631,312,4474286,6.199413659,7.746945604,,,,,,,7.737103538,5.220191267,11.04519639,5.951992381,4.56335843,7.630185613,7.661436362,6.622729198,8.700143525,,,,10.15570934,,57800,,,368,219,0.596893676,272667,456810,,,0.619,,,,,385.9158974,,,,,0.557781852,141473,253635,0.549930519,0.565633184,0.162047572,40093,247415,0.152743377,0.171351767,0.874394307,221777,253635,0.867364467,0.881424147,657288,,,,,0.199871289,131373,657288,,,0.164697971,108254,657288,,,0.090348523,59385,657288,,,0.01611318,10591,657288,,,0.044026363,28938,657288,,,0.00290588,1910,657288,,,0.254961296,167583,657288,,,0.583858217,383763,657288,,,0.063131906,39251,621730,0.058781074,0.067482738,0.507976716,333887,657288,,,0.051934116,34315,660741,, -44,009,44009,RI,Washington County,2024,1,5391.774525,1430,348185,4874.429877,5909.119174,0,,,,2,,,,2,11559.98414,5770.702431,20684.00482,1,,,,2,5324.381476,4784.470639,5864.292313,,,,,2,,0.102,,,0.083,0.124,3.026546451,,,2.356636187,3.757402232,4.663328149,,,3.829840582,5.540772764,0.064334273,388,6031,0.058142102,0.070526444,0,,,,,,,,,,0.080586081,0.048296656,0.112875505,0.062701269,0.056161575,0.069240963,,,,0.081481482,0.035332449,0.127630514,0.119,,,0.088,0.152,0.259,,,0.214,0.312,8.9,0.075959774,0.057,,,0.167,,,0.134,0.203,0.904974622,117501,129839,,,0.207295119,,,0.176915856,0.240707668,0.555555556,30,54,0.498955863,0.607832912,244.3,319,130592,,,2.622867329,103,39270,2.116327286,3.129407371,,,,,,,,,,4.707728521,2.432552024,8.223454315,2.011226848,1.558673182,2.554187003,,,,9.598603839,4.791588453,17.17455368,0.037166074,3595,96728,0.030017138,0.04431501,0.000819346,107,130592,,,1220.485981,0.000598481,78,130330,,,1670.897436,0.003567866,465,130330,,,280.2795699,2515,,,,,,,5073,,2353,0.57,,,,,0.36,0.33,0.59,,0.57,0.54,,,,,0.25,0.46,0.43,0.23,0.54,0.948533634,85903,90564,0.939750108,0.957317159,0.782825528,20092,25666,0.733990507,0.831660549,0.027583655,1938,70259,,,0.08,1542,,0.044255319,0.115744681,,,,0.184615385,0,0.522460836,0.487179487,0.184621935,0.789737039,0.157173756,0.042494166,0.271853347,0.038620771,0.02178015,0.055461392,4.120569976,179867,43651,3.707304448,4.533835503,0.235907223,4821,20436,0.193414931,0.278399515,11.02670914,144,130592,,,82.46037803,523,634244,75.3931265,89.52762955,,,,,,,,,,,,,86.50353744,78.90595769,94.10111719,,,,3.9,,,,,1,,,,,0.125348467,6295,50220,0.110395786,0.140301147,0.114815188,0.100213563,0.129416813,0.007367583,0.003444742,0.011290423,0.006571087,0.003578213,0.009563962,0.792669534,51969,65562,0.774730542,0.810608527,,,,0.778514589,0.68013165,0.876897527,0.730833333,0.537262451,0.924404216,0.688409854,0.641074625,0.735745084,0.786972313,0.761398293,0.812546333,0.401,,65562,0.372255705,0.429744295,80.41241093,,,79.94577577,80.87904609,,,,85.50300226,82.16316759,88.84283692,,,,88.14111952,81.04185719,95.24038186,80.38823924,79.90819667,80.86828182,,,,269.4641188,1430,348185,253.7436887,285.1845489,,,,,,,508.7125051,301.4952711,803.9850773,,,,268.9976311,252.6837778,285.3114845,,,,29.08012983,31,106602,19.75853734,41.27692304,,,,,,,,,,,,,26.65807684,17.08033284,39.66510524,,,,3.801652893,23,6050,2.409921824,5.704345933,,,,,,,,,,,,,,,,,,,,,,0.089,,,0.074,0.105,0.145,,,0.123,0.168,0.07,,,0.059,0.082,26.5,31,117067,,,0.057,7340,,,,0.075959774,9645.296084,126979,,,24.35096815,93,381915,19.65437407,29.83158112,,,,,,,,,,,,,24.26861894,19.35760091,30.04620161,,,,0.318,,,0.3,0.337,0.041523309,3162,76150,0.033182884,0.049863735,0.022335673,490,21938,0.013995248,0.030676099,0.000982122,128,130330,,,1018.203125,0.899022651,1071.635,1192,,,,,,,,3.457137092,,,,,,,,3.085637111,3.510426335,3.471959548,,,,,,3.526187577,,3.036223614,3.543921131,0.037557708,,,,,13388.33667,,,,,0.798847941,61020,76385,0.735856782,0.861839101,99015,,,91265.55319,106764.4468,,,,61121,11014.10638,111227.8936,42566,13529.40426,71602.59575,61350,38942.85106,83757.14894,101781,96795.80851,106766.1915,,,,,,0.163906261,2385,14551,,,66.72028705,,,,,0.316810584,,99015,,,11.13445378,53,4760,,,,,,,,,,,,,,,,,,,,,,,,,,12.07681847,83,634244,9.414472466,15.2583336,13.08644623,,,,,,,,,,,,,11.74916866,9.028383794,15.03229057,,,,5.991385019,38,634244,4.239860629,8.223644042,,,,,,,,,,,,,6.253267767,4.379711866,8.657158426,,,,6.87673398,61,887049,5.260156605,8.833452483,,,,,,,,,,,,,7.192710064,5.46172631,9.298245691,,,,8.137254902,,10200,,,42,41,0.736908395,76060,103215,,,0.645,,,,,67.59063542,,,,,0.76784117,39487,51426,0.753294397,0.782387943,0.129696727,6479,49955,0.11384046,0.145552994,0.931785478,47918,51426,0.921122073,0.942448883,130330,,,,,0.150679046,19638,130330,,,0.23453541,30567,130330,,,0.01328167,1731,130330,,,0.008762372,1142,130330,,,0.021729456,2832,130330,,,0.000391314,51,130330,,,0.037965165,4948,130330,,,0.902324868,117600,130330,,,0.009090257,1140,125409,0.006122448,0.012058066,0.512598788,66807,130330,,,0.336316515,43667,129839,, -45,000,45000,SC,South Carolina,2024,,10317.5048,91359,14442206,10215.15732,10419.85228,0,8197.769753,6645.984245,9749.555262,,3072.738814,2693.617007,3451.86062,,14098.17578,13865.74903,14330.60252,,5861.616699,5564.484626,6158.748772,,9469.757633,9345.703732,9593.811535,,8692.598253,5728.477023,12647.27408,,,0.161,,,0.151,0.172,3.785291877,,,3.551486408,4.019097345,5.410611434,,,5.103599431,5.717623438,0.097815917,38995,398657,0.096893752,0.098738082,0,0.107514451,0.086871013,0.128157889,0.095456234,0.089047858,0.10186461,0.155594971,0.15349497,0.157694972,0.072773637,0.070252531,0.075294743,0.072734681,0.071657621,0.07381174,0.081481482,0.054837325,0.108125638,0.095757699,0.089933458,0.101581941,0.163,,,0.151,0.175,0.364,,,0.348,0.38,6.7,0.097501848,0.099,,,0.24,,,0.228,0.254,0.684963246,3505933,5118425,,,0.181266472,,,0.168234928,0.195070706,0.32614861,1725,5289,0.319490345,0.332818767,702.7,36477,5190705,,,20.49565007,22906,1117603,20.23022426,20.76107587,19.32606541,15.27645273,24.11980427,2.201761409,1.599803211,2.955761924,25.97325444,25.42884284,26.51766604,37.44738171,36.17661887,38.71814456,14.9878635,14.68602478,15.28970223,27.37752161,16.48305643,42.75339131,33.00921187,31.11042983,34.90799392,0.122558026,500507,4083837,0.117792068,0.127323983,0.000673319,3495,5190705,,,1485.180258,0.00059459,3141,5282634,,,1681.831901,0.002162558,11424,5282634,,,462.4154412,2571,,,,,2766,1349,3548,1955,2357,0.48,,,,,0.43,0.38,0.47,0.33,0.48,0.45,,,,,0.37,0.45,0.33,0.34,0.47,0.893282087,3174118,3553321,0.891027187,0.895536988,0.653441985,846868,1296011,0.646309304,0.660574665,0.032443601,77053,2374983,,,0.192,210374,,0.182468085,0.201531915,0.239504299,0.155493196,0.323515403,0.087523278,0.065521386,0.109525169,0.351681738,0.339326589,0.364036888,0.293693256,0.275204284,0.312182227,0.110111876,0.104565933,0.115657819,4.762401204,126537,26570,4.694868276,4.829934133,0.302485914,332965,1100762,0.294845882,0.310125946,11.3934427,5914,5190705,,,100.802795,25872,25665955,99.57446899,102.031121,86.53805564,68.82628379,107.4165447,25.96373878,21.27903323,30.64844432,97.42199605,95.07284501,99.77114709,48.84058809,45.34976342,52.33141275,111.4810402,109.8613449,113.1007355,64.30454633,30.83652946,118.2583502,8.3,,,,,0.217391304,,,,,0.1396573,273935,1961480,0.137104687,0.142209912,0.119623192,0.11699819,0.122248195,0.019120766,0.018198332,0.0200432,0.00780788,0.007136051,0.008479709,0.79189685,1856325,2344150,0.788490625,0.795303074,0.708147236,0.663688177,0.752606294,0.689026828,0.670313542,0.707740114,0.798823425,0.791550488,0.806096362,0.678333253,0.662926813,0.693739692,0.801671031,0.797572541,0.805769521,0.363,,2344150,0.35753991,0.36846009,75.23219694,,,75.15126251,75.31313136,86.74888633,82.98758128,90.51019138,87.78107909,86.56995181,88.99220637,71.68346893,71.51556731,71.85137056,84.11714603,83.29370142,84.94059064,75.99029165,75.89273044,76.08785286,78.96454978,73.650064,84.27903557,478.846683,91359,14442206,475.573861,482.119505,344.0582623,297.5080765,390.608448,167.5867501,152.6594844,182.5140158,639.876879,632.3170017,647.4367563,256.2231084,243.9659666,268.4802503,446.5633363,442.6646319,450.4620406,428.6489354,298.5696892,596.1469038,66.01820517,3297,4994077,63.76469091,68.27171943,,,,22.52759631,13.76044107,34.7920454,107.1908078,101.8851335,112.4964821,51.6889835,45.31965275,58.05831426,50.47198073,47.80804166,53.1359198,,,,6.912950444,2759,399106,6.654995614,7.170905275,,,,2.778128552,1.741038373,4.206120014,11.9225421,11.29553305,12.54955116,5.042277558,4.334550966,5.75000415,4.758552473,4.473158165,5.043946782,,,,8.188875891,6.462532793,10.23468983,0.117962673,,,0.108794098,0.127793129,0.176305324,,,0.163730718,0.189626682,0.119,,,0.111,0.127,410.7,18109,4408952,,,0.099,515350,,,,0.097501848,450981.5387,4625364,,,32.16463563,5004,15557459,31.27343382,33.05583743,50.52264808,33.83581034,72.55895024,,,,20.99453334,19.58890053,22.40016615,9.088297511,7.279353742,11.2103814,40.54367582,39.28831225,41.79903939,,,,0.346910119,,,0.325941617,0.368490134,0.148626927,444650,2991719,0.14266948,0.154584373,0.053283469,61079,1146303,0.047326022,0.059240916,0.001269632,6707,5282634,,,787.6299389,0.833007102,47502.23,57025,,,0.078283705,21642,276456,0.072530083,0.084037327,2.882644167,,,,,,3.503920449,2.428121683,2.591761053,3.248503529,2.862099315,,,,,,3.673935006,2.376656729,2.686392532,3.223196209,0.159569388,,,,,-3592.58,,,,,0.786112256,43880,55819,0.776003917,0.796220595,64227,,,63402.48936,65051.51064,46606,41239.53192,51972.46809,85650,79474.51064,91825.48936,42672,41735.48936,43608.51064,54823,52594.91489,57051.08511,73611,72869.89362,74352.10638,,,,,,0.628011999,484640,771705,,,48.30591942,,,,,0.281744948,,,,,4.706116845,,,,,10.09199054,3585,35523220,9.761629874,10.4223512,,,,2.963436137,1.756320068,4.683506711,25.10482482,24.09451186,26.11513778,5.617839955,4.599875759,6.635804151,4.633057021,4.352550427,4.913563615,,,,15.85743189,4170,25665955,15.36133816,16.35352562,16.24720374,,,,7.707272209,5.426630906,10.62345949,7.385794779,6.725615886,8.045973672,7.916941372,6.437616916,9.396265827,20.35094164,19.64056591,21.06131738,,,,19.74210584,5067,25665955,19.19851254,20.28569914,13.71944785,7.305028168,23.46067364,4.400633691,2.688021384,6.796421823,29.54952022,28.25574852,30.84329192,8.573081952,7.110547581,10.03561632,17.58066847,16.93746185,18.22387509,,,,20.64002081,7332,35523220,20.16757177,21.11246985,18.30761368,11.73003353,27.24027797,5.762236933,4.013609153,8.01387668,26.33254812,25.29782591,27.36727033,14.45273356,12.8199718,16.08549532,19.6639672,19.08607768,20.24185673,,,,,,,,,,,0.653066229,2514096,3849680,,,,,,,,59.95546999,,,,,0.709145686,1434662,2023085,0.704671795,0.713619577,0.127652514,247742,1940753,0.1250263,0.130278728,0.850338468,1720307,2023085,0.8457804,0.854896536,5282634,,,,,0.211612616,1117872,5282634,,,0.190815605,1008009,5282634,,,0.256371916,1354319,5282634,,,0.005704919,30137,5282634,,,0.019968448,105486,5282634,,,0.001072571,5666,5282634,,,0.065906326,348159,5282634,,,0.634563174,3352165,5282634,,,0.012997922,63163,4859469,0.012369085,0.01362676,0.513099147,2710515,5282634,,,0.320519691,1640556,5118425,, -45,001,45001,SC,Abbeville County,2024,1,12784.71797,541,66357,10982.12459,14587.31135,0,,,,2,,,,2,17251.79118,12816.04264,21687.53971,,,,,2,11297.44316,9364.079583,13230.80673,,,,,2,,0.2,,,0.171,0.231,4.313946268,,,3.492119318,5.272289366,5.82000332,,,4.771439777,6.996612691,0.091645885,147,1604,0.077525779,0.105765992,0,,,,,,,0.160465116,0.125772941,0.195157292,,,,0.064631957,0.050193247,0.079070667,,,,,,,0.211,,,0.174,0.252,0.399,,,0.327,0.474,7.9,0.088290117,0.096,,,0.284,,,0.238,0.335,0.463757975,11267,24295,,,0.160753404,,,0.127500999,0.197461591,0.5,11,22,0.398277196,0.590905557,440.3,107,24299,,,18.84134531,107,5679,15.27128057,22.41141005,,,,,,,25.69303584,18.18192133,35.26569907,,,,17.35751295,13.45183413,22.04342788,,,,,,,0.132457703,2380,17968,0.114585362,0.150330043,0.000535001,13,24299,,,1869.153846,8.21153E-05,2,24356,,,12178,0.000615865,15,24356,,,1623.733333,2519,,,,,,,2838,,2327,0.5,,,,,,,0.48,,0.51,0.3,,,,,,,0.28,,0.3,0.851186658,14597,17149,0.824142181,0.878231135,0.544579733,2773,5092,0.463542997,0.625616469,0.038693947,365,9433,,,0.235,1095,,0.164702128,0.305297872,,,,,,,0.526946108,0.400517079,0.653375136,,,,0.131435881,0.078766476,0.184105286,5.248436986,111650,21273,4.325145691,6.171728281,0.343885785,1662,4833,0.268843519,0.418928052,12.34618709,30,24299,,,102.8630207,126,122493,84.90203895,120.8240025,,,,,,,84.25106818,55.98422295,121.7662513,,,,109.8563599,88.66826064,134.5814627,,,,9.2,,,,,1,,,,,0.143824909,1380,9595,0.105471175,0.182178643,0.119399786,0.083125435,0.155674137,0.022407504,0.008345503,0.036469505,0.005211047,0,0.013048501,0.828731533,8134,9815,0.782197339,0.875265728,,,,,,,0.800533333,0.692882418,0.908184248,,,,0.851047904,0.781631039,0.920464769,0.445,,9815,0.382916658,0.507083342,73.32362993,,,72.04780669,74.59945318,,,,,,,70.26923027,67.36622392,73.17223661,,,,74.28154552,72.88778522,75.67530582,,,,564.9413825,541,66357,512.5224592,617.3603057,,,,,,,655.4666909,544.3551485,766.5782332,,,,540.1055276,479.2904613,600.9205938,,,,85.81364889,19,22141,51.66542236,134.0086427,,,,,,,165.5903295,79.40699944,304.5265117,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.134,,,0.116,0.153,0.192,,,0.168,0.219,0.121,,,0.105,0.139,233.1,49,21018,,,0.096,2350,,,,0.088290117,2244.069911,25417,,,25.94565069,19,73230,15.6209766,40.5173475,,,,,,,,,,,,,29.60039467,16.5671162,48.82134952,,,,0.374,,,0.359,0.388,0.157585349,2091,13269,0.134947051,0.180223647,0.062411348,308,4935,0.042156028,0.082666667,0.000656922,16,24356,,,1522.25,0.89,179.78,202,,,,,,,,3.002957733,,,,,,,2.763770384,,3.198162107,3.270355055,,,,,,,3.016581475,,3.499462418,0.147000096,,,,,-1605.494,,,,,0.875622,39945,45619,0.73998257,1.011261429,50325,,,43157,57493,,,,,,,33110,21739.61702,44480.38298,39276,12814.21277,65737.78723,60714,53571.02128,67856.97872,,,,,,0.67708669,2101,3103,,,42.72906796,,,,,0.280457029,,50325,,,2.43902439,3,1230,,,9.286290533,16,172297,5.307917406,15.08035404,,,,,,,23.34712936,11.65480286,41.77446358,,,,,,,,,,19.99948502,24,122493,12.37999644,30.57133731,19.59295633,,,,,,,,,,,,,23.96982429,13.96330596,38.37801068,,,,19.59295633,24,122493,12.55357682,29.15276595,,,,,,,,,,,,,17.71876772,9.917059786,29.22441277,,,,23.21572633,40,172297,16.58565526,31.61323004,,,,,,,21.22466306,10.17805093,39.03291105,,,,24.38962852,16.334117,35.02757495,,,,,,2400,,,,,0.63939316,12433,19445,,,0.589,,,,,10.59673886,,,,,0.76018711,7313,9620,0.730009011,0.79036521,0.105871886,952,8992,0.071796293,0.139947479,0.761226611,7323,9620,0.721380251,0.801072971,24356,,,,,0.194695352,4742,24356,,,0.229840696,5598,24356,,,0.256117589,6238,24356,,,0.004393168,107,24356,,,0.003572015,87,24356,,,0.000369519,9,24356,,,0.02056988,501,24356,,,0.698595829,17015,24356,,,0.003708175,86,23192,0,0.009350309,0.51342585,12505,24356,,,0.789792138,19188,24295,, -45,003,45003,SC,Aiken County,2024,1,11812.45037,3360,472590,11198.40334,12426.4974,0,,,,2,,,,2,15622.40468,14217.70238,17027.10699,,5934.542964,4445.379917,7762.528313,,11258.48959,10510.87582,12006.10336,,,,,2,,0.167,,,0.143,0.194,4.02194876,,,3.33015851,4.76032619,5.387199437,,,4.625502577,6.193460907,0.090752269,1210,13333,0.085876288,0.09562825,0,,,,0.116564417,0.067300072,0.165828762,0.144829453,0.133480327,0.15617858,0.0625,0.049070049,0.075929951,0.067299064,0.061739297,0.072858832,,,,0.106824926,0.0738453,0.139804551,0.171,,,0.14,0.207,0.373,,,0.331,0.417,8.2,0.092278568,0.083,,,0.248,,,0.213,0.288,0.634377518,107088,168808,,,0.153435607,,,0.129496598,0.180182525,0.209876543,34,162,0.17060585,0.251442054,522.3,892,170776,,,21.60233721,769,35598,20.07549681,23.12917761,,,,,,,23.38651197,20.53278991,26.24023402,33.44709898,27.1539717,40.76130044,18.39172372,16.51260337,20.27084408,,,,35.53719008,25.71844067,47.86836183,0.120023375,16020,133474,0.105725503,0.134321248,0.000339626,58,170776,,,2944.413793,0.000430663,75,174150,,,2322,0.001676716,292,174150,,,596.4041096,2453,,,,,,,2961,2513,2356,0.45,,,,,,0.53,0.43,0.32,0.46,0.48,,,,,,0.55,0.36,0.27,0.5,0.895686477,107623,120157,0.884493204,0.90687975,0.620455425,25667,41368,0.58301131,0.657899539,0.0315752,2306,73032,,,0.247,8919,,0.196957447,0.297042553,,,,0.375,0.028958093,0.721041907,0.400077198,0.339278745,0.46087565,0.195825323,0.120912137,0.270738509,0.104125134,0.076473667,0.131776601,4.69005295,124005,26440,4.342876889,5.037229011,0.283998891,10241,36060,0.244112174,0.323885607,10.24734155,175,170776,,,110.3127131,940,852123,103.2606253,117.3648009,,,,,,,90.44759722,77.62026267,103.2749318,41.24602271,25.53193814,63.04892708,128.9129177,119.5095394,138.3162961,,,,10.2,,,,,0,,,,,0.124295027,8485,68265,0.110037763,0.138552291,0.106127323,0.093007565,0.119247081,0.015015015,0.009284245,0.020745785,0.008056837,0.005357209,0.010756466,0.827534677,60914,73609,0.811163623,0.84390573,,,,,,,0.833878681,0.781714957,0.886042406,0.756437204,0.680136165,0.832738244,0.820539191,0.798307979,0.842770402,0.347,,73609,0.322756778,0.371243222,74.1987029,,,73.74252862,74.65487717,,,,81.64162192,77.10970561,86.17353822,70.76671612,69.76679352,71.76663872,84.68239953,80.4865763,88.87822276,74.69725066,74.15529872,75.23920261,,,,526.8330932,3360,472590,507.7503866,545.9157998,,,,,,,677.0930914,632.971193,721.2149897,291.4369568,223.4430436,373.6090257,508.9120639,485.820659,532.0034687,,,,66.65144381,108,162037,54.08090899,79.22197862,,,,,,,126.3978748,96.21991865,163.0440494,,,,45.59709958,32.7212659,61.85761423,,,,6.964205482,93,13354,5.621012635,8.531622213,,,,,,,13.10160428,9.69263897,17.32101567,,,,4.331762008,2.999871115,6.053203223,,,,,,,0.119,,,0.103,0.136,0.173,,,0.152,0.197,0.115,,,0.101,0.131,339.1,493,145395,,,0.083,13980,,,,0.092278568,14773.7064,160099,,,37.31466564,192,514543,32.03647573,42.59285554,,,,,,,15.69563034,9.587298771,24.24062806,,,,49.84113139,42.30429093,57.37797186,,,,0.414,,,0.4,0.428,0.147552719,14428,97782,0.129680379,0.16542506,0.046710772,1751,37486,0.033604389,0.059817155,0.00071203,124,174150,,,1404.435484,0.9,1389.6,1544,,,0.077680095,592,7621,0.049676895,0.105683294,2.799812102,,,,,,,2.423522011,2.623640927,3.117887932,2.666606938,,,,,,,2.265813722,2.587411355,2.989484486,0.048285471,,,,,-4622.676,,,,,0.7063919,43465,61531,0.648468751,0.76431505,67728,,,62444.93617,73011.06383,,,,85769,25163.89362,146374.1064,47321,39702.61702,54939.38298,56860,44189.70213,69530.29787,70555,67454.74468,73655.25532,,,,,,0.716509335,17078,23835,,,27.61372355,,,,,0.275174226,,67728,,,4.512067156,43,9530,,,11.13538776,132,1185410,9.235734001,13.03504151,,,,,,,26.21794261,20.6907903,32.76792984,,,,6.520713494,4.855099497,8.573534006,,,,21.67934726,184,852123,18.41505015,24.94364437,21.59312681,,,,,,,8.622958878,5.023191312,13.80619248,,,,28.97634939,24.18359654,33.76910224,,,,24.99639137,213,852123,21.63945132,28.35333142,,,,,,,33.14833406,25.84075261,41.8809259,,,,24.63986516,20.52879532,28.750935,,,,18.55897959,220,1185410,16.10653714,21.01142205,,,,,,,24.17498604,18.88086467,30.49345543,,,,17.64428357,14.70040049,20.58816665,,,,,,17100,,,,,0.657596109,85185,129540,,,0.599,,,,,43.23481046,,,,,0.753033695,51134,67904,0.737227611,0.768839779,0.116946853,7673,65611,0.102905149,0.130988558,0.877768615,59604,67904,0.864765956,0.890771273,174150,,,,,0.211065174,36757,174150,,,0.210760838,36704,174150,,,0.245403388,42737,174150,,,0.006109676,1064,174150,,,0.012391616,2158,174150,,,0.000815389,142,174150,,,0.065099053,11337,174150,,,0.651438415,113448,174150,,,0.007096046,1138,160371,0.004483553,0.009708539,0.51601493,89864,174150,,,0.370195725,62492,168808,, -45,005,45005,SC,Allendale County,2024,1,17183.97719,240,22866,13558.56865,20809.38573,0,,,,2,,,,2,19904.17796,15396.24499,24412.11093,,,,,2,8936.025905,4885.408516,14993.13306,1,,,,2,,0.272,,,0.238,0.311,4.918342715,,,3.976906772,5.949384172,5.854858006,,,4.686786246,7.114978871,0.125984252,64,508,0.097127864,0.15484064,0,,,,,,,0.136138614,0.102697704,0.169579524,,,,,,,,,,,,,0.257,,,0.213,0.305,0.462,,,0.378,0.544,7.8,0.012912218,0.139,,,0.366,,,0.309,0.426,0.551436746,4433,8039,,,0.134018134,,,0.105127961,0.165238308,0.470588235,8,17,0.348761796,0.579131995,1158.1,91,7858,,,33.35471456,52,1559,24.91089622,43.74027052,,,,,,,34.99222395,25.52356827,46.82234875,,,,,,,,,,,,,0.124658603,639,5126,0.104403284,0.144913922,0.000509035,4,7858,,,1964.5,0.000263887,2,7579,,,3789.5,0.001847209,14,7579,,,541.3571429,2683,,,,,,,2108,,1927,0.45,,,,,,,0.46,,0.44,0.2,,,,,,,0.18,,0.21,0.788712522,4472,5670,0.742685457,0.834739587,0.410354223,753,1835,0.301429582,0.519278865,0.056612119,128,2261,,,0.512,673,,0.333276596,0.690723404,,,,,,,0.500417014,0.336533983,0.664300046,,,,,,,5.95883338,85402,14332,4.328248818,7.589417942,0.667771883,1007,1508,0.504447538,0.831096229,5.09035378,4,7858,,,133.2336029,57,42782,100.9098298,172.6195863,,,,,,,138.7141521,100.3881197,186.8470525,,,,136.2969176,72.57236833,233.07188,,,,8.6,,,,,0,,,,,0.166423358,570,3425,0.09966907,0.233177645,0.134529148,0.068992169,0.200066127,0.027737226,0,0.058458775,0.007007299,0,0.016093845,0.830775134,2165,2606,0.743408026,0.918142243,,,,,,,0.826871055,0.737018673,0.916723437,,,,0.862268519,0.712104026,1,0.528,,2606,0.383726431,0.672273569,69.5425891,,,67.27389288,71.81128532,,,,,,,67.30736612,64.64375848,69.97097377,,,,76.23430381,72.59044168,79.87816593,,,,741.2292465,240,22866,639.2769967,843.1814963,,,,,,,869.9375408,739.3104545,1000.564627,,,,451.8894048,309.0920184,637.9330083,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.158,,,0.138,0.181,0.198,,,0.173,0.226,0.173,,,0.151,0.198,568.6,39,6860,,,0.139,1160,,,,0.012912218,134.5324038,10419,,,,,,,,,,,,,,,,,,,,,,,,,,0.432,,,0.417,0.446,0.156836816,593,3781,0.13062405,0.183049582,0.035441279,51,1439,0.023526385,0.047356172,0.001187492,9,7579,,,842.1111111,0.775,72.075,93,,,,,,,,1.873387912,,,,,,,1.955292757,,,2.32235373,,,,,,,2.331938717,,,0.012321947,,,,,-30746.31,,,,,0.795685306,37067,46585,0.530798275,1.060572338,35249,,,29927.80851,40570.19149,,,,,,,27220,8380.170213,46059.82979,108370,95842.68085,120897.3192,45214,26941.31915,63486.68085,,,,,,1,992,992,,,22.85959831,,,,,0.528724219,,35249,,,8.379888268,3,358,,,29.38295788,18,61260,17.41420304,46.43774121,,,,,,,36.0117038,20.58380026,58.48075084,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,44.41120097,19,42782,26.73844412,69.35359163,,,,,,,58.06638924,34.41382232,91.76992893,,,,,,,,,,37.54489063,23,61260,23.80024002,56.33577032,,,,,,,40.51316678,24.01067022,64.02826979,,,,,,,,,,,,800,,,,,0.514756447,3593,6980,,,0.383,,,,,9.099534586,,,,,0.66863354,2153,3220,0.589765966,0.747501114,0.133605999,392,2934,0.070079692,0.197132306,0.696273292,2242,3220,0.619146321,0.773400263,7579,,,,,0.176408497,1337,7579,,,0.223512337,1694,7579,,,0.712890883,5403,7579,,,0.005013854,38,7579,,,0.009763821,74,7579,,,0.000527774,4,7579,,,0.036020583,273,7579,,,0.226942869,1720,7579,,,0.003108003,24,7722,0,0.015312178,0.469059243,3555,7579,,,1,8039,8039,, -45,007,45007,SC,Anderson County,2024,1,11180.32611,4033,567531,10649.49624,11711.15599,0,,,,2,,,,2,15123.75403,13565.28889,16682.21916,,6643.936329,4846.132749,8890.109538,,10600.08537,10016.0362,11184.13454,,,,,2,,0.173,,,0.148,0.203,3.813140517,,,3.130266894,4.637689341,5.506511259,,,4.726271417,6.423617152,0.09562154,1520,15896,0.091049973,0.100193107,0,,,,0.114893617,0.074121071,0.155666163,0.168458781,0.154570686,0.182346877,0.077720207,0.060827831,0.094612583,0.079162322,0.074229369,0.084095275,,,,0.091168091,0.06105428,0.121281903,0.188,,,0.152,0.228,0.361,,,0.314,0.413,7.5,0.123180303,0.098,,,0.271,,,0.231,0.316,0.631250061,128597,203718,,,0.17487633,,,0.145710392,0.207626545,0.293859649,67,228,0.260449376,0.327770513,470.7,974,206908,,,23.87800147,1071,44853,22.44792484,25.30807811,,,,,,,31.50720165,27.56187595,35.45252735,28.95752896,22.77693348,36.2985133,21.45158815,19.86129594,23.04188037,,,,35.45586107,26.23044121,46.87452865,0.131591926,21879,166264,0.117294054,0.145889798,0.000657297,136,206908,,,1521.382353,0.000429428,90,209581,,,2328.677778,0.00180837,379,209581,,,552.9841689,3201,,,,,,,4361,1159,3070,0.57,,,,,,0.32,0.53,0.2,0.57,0.49,,,,,,0.6,0.42,0.31,0.5,0.871576805,122467,140512,0.861347324,0.881806286,0.629119488,31059,49369,0.595134423,0.663104553,0.029983482,2741,91417,,,0.208,9557,,0.161531915,0.254468085,,,,0.13594041,0,0.305839582,0.375623771,0.30063764,0.450609903,0.388518871,0.291976818,0.485060924,0.156575469,0.131630373,0.181520565,4.563379199,118730,26018,4.243147171,4.883611227,0.243392428,11244,46197,0.211981341,0.274803516,13.0976086,271,206908,,,102.3631374,1037,1013060,96.13281845,108.5934564,,,,,,,88.99656374,74.46045833,103.5326692,46.56520354,28.03529438,72.71733346,109.8741896,102.5178572,117.230522,,,,9.4,,,,,0,,,,,0.124753608,9810,78635,0.113429715,0.136077502,0.094361483,0.08360031,0.105122657,0.026451326,0.021095439,0.031807212,0.010873021,0.006781722,0.01496432,0.832812295,76189,91484,0.819495689,0.846128901,,,,0.711592837,0.529320372,0.893865302,0.811314791,0.772376411,0.850253172,0.73173689,0.64344217,0.82003161,0.82466904,0.806773822,0.842564258,0.359,,91484,0.336965499,0.381034501,73.7375686,,,73.34565169,74.12948551,,,,82.17658703,78.18856373,86.16461033,70.35623773,69.30992513,71.40255033,83.32252893,78.0107489,88.63430895,74.16773328,73.73567255,74.599794,,,,536.875452,4033,567531,519.4706149,554.2802891,,,,,,,677.3347958,626.6862973,727.9832944,315.9974261,234.5393804,416.603212,522.7503144,503.4637263,542.0369026,,,,60.82009025,124,203880,50.11495178,71.52522871,,,,,,,104.7524534,74.12907058,143.7809266,,,,48.97536539,38.17869999,61.87742784,,,,7.239933952,114,15746,5.910893346,8.568974557,,,,,,,13.90374332,9.886920674,19.00687482,,,,5.490196078,4.218817411,7.024345733,,,,,,,0.123,,,0.106,0.142,0.179,,,0.157,0.203,0.109,,,0.095,0.125,212.7,371,174397,,,0.098,19860,,,,0.123180303,23050.23744,187126,,,30.30209231,186,613819,25.94725218,34.65693244,,,,,,,14.2820709,7.808141062,23.96288816,,,,35.85537343,30.44948636,41.2612605,,,,0.337,,,0.322,0.351,0.162113387,19493,120243,0.143049557,0.181177217,0.054319914,2623,48288,0.040022042,0.068617786,0.000706171,148,209581,,,1416.087838,0.885430507,2025.865,2288,,,0.126747261,1342,10588,0.08742026,0.166074262,2.992984705,,,,,,3.459954275,2.456742745,2.598771175,3.188380344,3.017684252,,,,,,3.922685729,2.467409002,2.760329943,3.205684418,0.087101486,,,,,-1680.55822,,,,,0.725342561,41713,57508,0.690096767,0.760588356,62708,,,58237.53192,67178.46809,29432,20065.70213,38798.29787,100411,83042.65957,117779.3404,40306,36936.46809,43675.53192,45163,38366.74468,51959.25532,67048,64214.6383,69881.3617,,,,,,0.564872643,18451,32664,,,46.43450374,,,,,0.297202909,,62708,,,4.167390172,48,11518,,,10.25406584,144,1404321,8.579235089,11.9288966,,,,,,,27.58436589,21.14877516,35.36191216,,,,6.829428561,5.362570324,8.573722159,,,,18.64275639,191,1013060,15.91891805,21.36659474,18.85376977,,,,,,,7.075291163,3.531959856,12.65965029,,,,21.81003956,18.43317114,25.18690797,,,,22.01251653,223,1013060,19.12334495,24.90168812,,,,,,,33.3737114,25.07135916,43.545454,,,,20.5132676,17.33470385,23.69183134,,,,23.28527452,327,1404321,20.76142442,25.80912462,,,,,,,21.80054724,16.12816486,28.82147959,,,,24.64131657,21.68558936,27.59704377,,,,,,21500,,,,,0.634026128,96093,151560,,,0.664,,,,,35.58399325,,,,,0.747437765,60020,80301,0.733893525,0.760982006,0.103551402,8033,77575,0.093335208,0.113767596,0.85693827,68813,80301,0.844193789,0.86968275,209581,,,,,0.223307456,46801,209581,,,0.185794514,38939,209581,,,0.156159194,32728,209581,,,0.003812369,799,209581,,,0.011942877,2503,209581,,,0.000644142,135,209581,,,0.045934507,9627,209581,,,0.764587439,160243,209581,,,0.008796864,1699,193137,0.006505752,0.011087976,0.515099174,107955,209581,,,0.416566037,84862,203718,, -45,009,45009,SC,Bamberg County,2024,1,14472.13022,381,37219,12057.22923,16887.03122,0,,,,2,,,,2,17839.51524,14169.03391,21509.99656,,,,,2,9302.179536,6709.332481,11895.02659,,,,,2,,0.215,,,0.186,0.247,4.206247225,,,3.376633925,5.112005428,5.80809536,,,4.739871291,6.914928112,0.113733906,106,932,0.093350575,0.134117237,0,,,,,,,0.154285714,0.123386239,0.18518519,,,,0.06442577,0.038958002,0.089893539,,,,,,,0.212,,,0.174,0.252,0.442,,,0.365,0.519,7,0.155230455,0.107,,,0.307,,,0.257,0.361,0.325595372,4334,13311,,,0.139658283,,,0.110195656,0.171518448,0.384615385,5,13,0.234541684,0.524881883,902.3,119,13189,,,16.28838451,61,3745,12.45932351,20.92311133,,,,,,,16.62356853,12.12534495,22.24364259,,,,17.06484642,9.551064998,28.14586902,,,,,,,0.142425876,1321,9275,0.122170557,0.162681195,0.000379104,5,13189,,,2637.8,0.000542299,7,12908,,,1844,0.000464828,6,12908,,,2151.333333,1354,,,,,,,1175,,1119,0.44,,,,,,,0.49,,0.4,0.22,,,,,,,0.22,,0.21,0.773112052,6941,8978,0.734164114,0.812059989,0.553602812,1575,2845,0.440185737,0.667019887,0.054830865,248,4523,,,0.393,911,,0.255978723,0.530021277,,,,,,,0.38647343,0.270457129,0.502489731,,,,0.19330855,0.062169425,0.324447676,6.323519481,93645,14809,4.620748305,8.026290658,0.386710689,937,2423,0.239165486,0.534255892,18.19698233,24,13189,,,94.53285017,66,69817,73.11169947,120.2689638,,,,,,,84.32922128,58.73839245,117.2815328,,,,114.6245059,76.76583058,164.6199108,,,,8.4,,,,,0,,,,,0.123274162,625,5070,0.080410383,0.166137941,0.096703297,0.054237741,0.139168853,0.022682446,0.009906519,0.035458373,0.00591716,0,0.013878124,0.801724138,3813,4756,0.749043151,0.854405125,,,,,,,0.847240618,0.72139793,0.973083306,,,,0.74258109,0.656170834,0.828991347,0.474,,4756,0.352620037,0.595379963,71.84530932,,,70.14867563,73.541943,,,,,,,69.66572318,67.23832041,72.09312595,,,,75.09594937,73.0144183,77.17748043,,,,696.5234067,381,37219,619.1270313,773.9197821,,,,,,,794.4258255,683.2893877,905.5622632,,,,569.3652692,462.2581741,676.4723643,,,,78.48677498,10,12741,37.63745935,144.3399736,,,,,,,121.8026797,58.40911932,223.9994646,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.134,,,0.116,0.153,0.189,,,0.165,0.216,0.141,,,0.121,0.161,773.1,89,11512,,,0.107,1440,,,,0.155230455,2481.669285,15987,,,,,,,,,,,,,,,,,,,,,,,,,,0.409,,,0.395,0.423,0.170731707,1197,7011,0.144518941,0.196944473,0.056378601,137,2430,0.037314771,0.075442431,0.001239541,16,12908,,,806.75,0.876388889,126.2,144,,,,,,,,2.746477228,,,,,,,2.627168379,,3.020465046,2.732656469,,,,,,,2.60023461,,3.031386377,0.15249305,,,,,-23816.065,,,,,0.844771207,39526,46789,0.68093435,1.008608063,37952,,,32605.78723,43298.21277,,,,,,,36092,20943.40426,51240.59575,,,,58438,42136.04255,74739.95745,,,,,,1,1794,1794,,,39.63622003,,,,,0.491067664,,37952,,,10.54216868,7,664,,,16.14025885,16,99131,9.225552505,26.21076918,,,,,,,18.57135622,9.270754111,33.22928621,,,,,,,,,,15.27114181,10,69817,6.982938463,28.98938403,14.32315912,,,,,,,,,,,,,,,,,,,25.78168641,18,69817,15.27986132,40.74617968,,,,,,,,,,,,,,,,,,,32.2805177,32,99131,22.07985021,45.57045937,,,,,,,30.38949199,18.01073894,48.02849904,,,,39.18385625,21.42217884,65.74385267,,,,,,1200,,,,,0.580824373,6482,11160,,,0.477,,,,,12.95759029,,,,,0.737527115,3400,4610,0.699934637,0.775119593,0.134866828,557,4130,0.081862913,0.187870744,0.756182213,3486,4610,0.704220578,0.808143847,12908,,,,,0.182677409,2358,12908,,,0.239696312,3094,12908,,,0.576929036,7447,12908,,,0.005655408,73,12908,,,0.00929656,120,12908,,,0.000774713,10,12908,,,0.028819337,372,12908,,,0.36543229,4717,12908,,,0.003623759,46,12694,0,0.013467684,0.523396343,6756,12908,,,1,13311,13311,, -45,011,45011,SC,Barnwell County,2024,1,15687.72321,529,57551,13651.80423,17723.64219,0,,,,2,,,,2,18574.45488,15204.87695,21944.0328,,,,,2,14410.7845,11673.93735,17147.63165,,,,,2,,0.237,,,0.207,0.274,4.639597024,,,3.76705454,5.595583267,5.681220099,,,4.642130242,6.803090657,0.111492281,195,1749,0.096741529,0.126243034,0,,,,,,,0.150793651,0.125284658,0.176302644,,,,0.074829932,0.057465114,0.09219475,,,,,,,0.24,,,0.201,0.285,0.463,,,0.396,0.535,7.4,0.000137425,0.16,,,0.344,,,0.291,0.402,0.597017825,12292,20589,,,0.148683602,,,0.11944349,0.183656725,0.391304348,9,23,0.282261006,0.49504965,869.8,179,20580,,,34.15758592,163,4772,28.91374584,39.401426,,,,,,,31.51986183,24.70654012,39.63149403,,,,37.61904762,29.78335427,46.8845577,,,,,,,0.134624938,2168,16104,0.115561108,0.153688768,0.000242954,5,20580,,,4116,0.000293916,6,20414,,,3402.333333,0.001910454,39,20414,,,523.4358974,2540,,,,,,,3681,,1981,0.4,,,,,,,0.34,,0.43,0.29,,,,,,,0.25,,0.3,0.82787421,11399,13769,0.798066591,0.857681829,0.507462687,2312,4556,0.422880799,0.592044574,0.046639049,349,7483,,,0.335,1597,,0.219425532,0.450574468,,,,,,,0.528894472,0.433251405,0.62453754,0.920502092,0.35190405,1,0.272213662,0.178851621,0.365575704,6.717409471,96462,14360,4.839934788,8.594884154,0.591040462,2863,4844,0.500735354,0.681345571,16.52089407,34,20580,,,109.8292394,115,104708,89.75564582,129.902833,,,,,,,103.3375841,75.92856991,137.41708,,,,121.9397805,94.11054822,155.4222602,,,,8.9,,,,,0,,,,,0.160899654,1395,8670,0.12055145,0.201247858,0.141737033,0.099095049,0.184379017,0.02710496,0.006924288,0.047285632,0.002883506,0,0.008144173,0.825391344,7171,8688,0.792299754,0.858482935,,,,,,,0.871290669,0.800127765,0.942453572,,,,0.822222222,0.75927266,0.885171784,0.442,,8688,0.373243734,0.510756266,70.81213194,,,69.46805864,72.15620524,,,,,,,68.89821358,66.78705829,71.00936887,,,,71.36220682,69.55414698,73.17026666,,,,702.8640357,529,57551,638.2031395,767.5249318,,,,,,,779.6585246,674.070534,885.2465153,,,,679.2865474,592.0486118,766.5244831,,,,96.26845145,21,21814,59.59168875,147.1565542,,,,,,,124.2711022,66.1691281,212.5073695,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.147,,,0.128,0.169,0.202,,,0.176,0.23,0.152,,,0.132,0.173,691.1,118,17074,,,0.16,3330,,,,0.000137425,3.108693364,22621,,,30.52159805,19,62251,18.37599583,47.66325613,,,,,,,,,,,,,47.42333228,26.54247908,78.21757468,,,,0.392,,,0.378,0.405,0.167665198,1903,11350,0.142643922,0.192686475,0.057057057,285,4995,0.037993227,0.076120887,0.000832762,17,20414,,,1200.823529,0.801026119,214.675,268,,,,,,,,2.715041077,,,,,,,2.337651206,,3.210172353,2.706431303,,,,,,,2.412740029,,3.140903653,0.048336859,,,,,-18128.41333,,,,,0.639129973,36084,56458,0.560848389,0.717411557,45080,,,38920,51240,,,,,,,29848,21197.78723,38498.21277,,,,63623,50670.31915,76575.68085,,,,,,0.998144139,3227,3233,,,35.60406929,,,,,0.413420586,,45080,,,7.56302521,9,1190,,,22.98601909,34,147916,15.91848643,32.12065774,,,,,,,41.94565707,27.64245232,61.02872881,,,,,,,,,,11.42863425,12,104708,5.705133042,20.44898359,11.46044237,,,,,,,,,,,,,17.72239669,7.651272993,34.92018656,,,,32.47125339,34,104708,22.48728692,45.37532194,,,,,,,41.77476804,25.15113927,65.23647503,,,,28.13994935,15.74971604,46.41256706,,,,29.07055356,43,147916,21.03850375,39.15784487,,,,,,,35.73148565,22.65069682,53.61477248,,,,23.85401344,14.13740015,37.69962532,,,,,,2300,,,,,0.647693756,10321,15935,,,0.524,,,,,3.084478244,,,,,0.711460082,5935,8342,0.67150407,0.751416093,0.154652687,1180,7630,0.112445932,0.196859442,0.734955646,6131,8342,0.701204422,0.76870687,20414,,,,,0.237582052,4850,20414,,,0.196531792,4012,20414,,,0.426521015,8707,20414,,,0.007445871,152,20414,,,0.008621534,176,20414,,,0.00024493,5,20414,,,0.030126384,615,20414,,,0.511315764,10438,20414,,,0.002127218,41,19274,0,0.008408103,0.515136671,10516,20414,,,1,20589,20589,, -45,013,45013,SC,Beaufort County,2024,1,7043.825117,2244,511291,6545.888448,7541.761787,0,,,,2,,,,2,12244.11725,10746.34024,13741.89425,,4614.278411,3617.003701,5611.553121,,6145.713383,5554.506845,6736.919921,,,,,2,,0.133,,,0.111,0.155,3.288393849,,,2.627834514,3.988010856,4.856358767,,,4.080013297,5.645131086,0.083064456,1107,13327,0.078378838,0.087750074,0,,,,0.072340426,0.039219155,0.105461696,0.154899135,0.141439754,0.168358517,0.069599475,0.060562375,0.078636575,0.059708029,0.054096793,0.065319265,,,,0.086111111,0.057132263,0.115089959,0.139,,,0.108,0.17,0.315,,,0.269,0.36,7.9,0.131020422,0.075,,,0.179,,,0.148,0.211,0.850173955,159082,187117,,,0.192220551,,,0.161805985,0.224627701,0.336363636,37,110,0.288158256,0.384671319,449.5,862,191748,,,18.45772863,641,34728,17.02881719,19.88664007,,,,,,,25.44757033,21.91186669,28.98327398,32.44665303,28.17840657,36.71489949,9.736667404,8.298166721,11.17516809,,,,30.78078078,22.08881972,41.75760478,0.141313415,18635,131870,0.125824053,0.156802776,0.000693619,133,191748,,,1441.714286,0.001232361,242,196371,,,811.4504132,0.001853634,364,196371,,,539.4807692,2169,,,,,,1486,3829,870,1956,0.52,,,,,,0.38,0.44,0.32,0.52,0.53,,,,,,0.49,0.27,0.37,0.55,0.936379351,127842,136528,0.926882457,0.945876245,0.634787975,24685,38887,0.592221557,0.677354394,0.031427524,2401,76398,,,0.182,6010,,0.136723404,0.227276596,0.23943662,0,0.689366303,0.361607143,0,0.906125086,0.452315325,0.36573832,0.538892331,0.153448035,0.095282092,0.211613978,0.090909091,0.058636063,0.123182119,4.251518109,156830,36888,3.9504065,4.552629718,0.29636472,9946,33560,0.260200482,0.332528958,9.283017294,178,191748,,,77.27060942,738,955085,71.69564336,82.84557548,,,,,,,97.52826796,82.41610627,112.6404297,31.94407907,22.12220338,44.63864867,81.38501384,74.46917766,88.30085001,,,,8.5,,,,,0,,,,,0.146032601,10840,74230,0.13232969,0.159735513,0.132696246,0.118987667,0.146404824,0.01394315,0.009336268,0.018550031,0.00565809,0.003264287,0.008051893,0.753840704,63839,84685,0.734785169,0.772896239,,,,,,,0.813983922,0.764770626,0.863197218,0.65850157,0.62254767,0.694455471,0.762692361,0.747112986,0.778271736,0.344,,84685,0.314093854,0.373906146,81.28036427,,,80.81533986,81.74538867,,,,89.35038404,83.16104144,95.53972665,74.44673535,73.25213712,75.64133359,90.48825543,83.53161492,97.44489594,82.32396576,81.78145425,82.86647726,,,,291.6025077,2244,511291,277.5650893,305.6399262,,,,,,,535.076351,490.1473498,580.0053521,199.8887203,159.491019,240.2864217,257.826653,241.4386645,274.2146415,,,,51.81832371,83,160175,41.27300559,64.23660858,,,,,,,108.3732603,76.69136905,148.7507669,,,,39.02105918,26.69037559,55.08609275,,,,4.873726185,66,13542,3.769339479,6.200574689,,,,,,,12.63157895,8.847002603,17.48742965,,,,2.853474105,1.742976114,4.406959324,,,,,,,0.104,,,0.088,0.12,0.16,,,0.138,0.182,0.083,,,0.071,0.096,227.3,381,167648,,,0.075,13890,,,,0.131020422,21255.83619,162233,,,20.53402263,119,579526,16.84461513,24.22343014,,,,,,,23.55302503,14.93059747,35.34110197,,,,22.85260821,18.39949461,28.05793888,,,,0.342,,,0.328,0.356,0.164466974,16125,98044,0.145403144,0.183530804,0.076784152,2721,35437,0.055337344,0.098230961,0.001130513,222,196371,,,884.5540541,0.89,1440.91,1619,,,0.099819546,1051,10529,0.060557657,0.139081435,2.843069413,,,,,,3.468225745,2.306731118,2.637601062,3.268760028,2.964723633,,,,,,3.601996419,2.376121032,2.840948648,3.377580933,0.12118918,,,,,-2266.059,,,,,0.809598613,44838,55383,0.749444432,0.869752795,83687,,,79249.89362,88124.10638,134010,79333.74468,188686.2553,61825,42746.87234,80903.12766,43660,36129.78723,51190.21277,61875,44252.87234,79497.12766,91473,87564.91489,95381.08511,,,,,,0.509668946,11254,22081,,,53.28267717,,,,,0.222698866,,83687,,,4.821084208,45,9334,,,7.057093403,93,1317823,5.695985176,8.645416192,,,,,,,32.61606972,25.65460787,40.88452583,,,,1.780377128,1.017639359,2.891220916,,,,13.77094614,130,955085,11.19054273,16.35134955,13.61135396,,,,,,,7.384131013,3.686131597,13.21225009,,,,16.53288161,12.94556657,20.12019665,,,,14.13486758,135,955085,11.7504576,16.51927756,,,,,,,31.08713541,23.14641421,40.87384193,,,,11.4734512,9.024597198,14.38207043,,,,14.34183498,189,1317823,12.2971336,16.38653636,,,,,,,25.22309392,19.1529527,32.60669793,8.849196085,4.711824222,15.13239481,12.79646061,10.45763945,15.13528178,,,,,,16100,,,,,0.666996182,97835,146680,,,0.513,,,,,48.03953899,,,,,0.755468842,57501,76113,0.74348243,0.767455255,0.126888629,9322,73466,0.113428398,0.14034886,0.903866619,68796,76113,0.890917736,0.916815503,196371,,,,,0.171216728,33622,196371,,,0.289314614,56813,196371,,,0.159819933,31384,196371,,,0.004267433,838,196371,,,0.015109156,2967,196371,,,0.001395318,274,196371,,,0.111930988,21980,196371,,,0.694028141,136287,196371,,,0.021133371,3805,180047,0.014758264,0.027508477,0.505940287,99352,196371,,,0.18601196,34806,187117,, -45,015,45015,SC,Berkeley County,2024,1,8547.012095,3195,663504,8126.979332,8967.044857,0,,,,2,3247.672928,1621.226625,5810.983969,1,11420.45124,10410.46093,12430.44155,,5398.530511,4274.067444,6728.179771,,8079.343388,7568.794516,8589.892261,,,,,2,,0.158,,,0.136,0.184,3.851106529,,,3.178764216,4.656117761,5.049699881,,,4.278516757,5.920904762,0.08923527,1769,19824,0.085266721,0.09320382,0,,,,0.100244499,0.071138202,0.129350795,0.163513807,0.152824958,0.174202657,0.064994299,0.055574526,0.074414071,0.064848803,0.060336513,0.069361093,,,,0.086887836,0.064944848,0.108830824,0.163,,,0.133,0.197,0.397,,,0.346,0.449,8.3,0.090239465,0.076,,,0.241,,,0.205,0.282,0.687580755,158048,229861,,,0.195870155,,,0.163705318,0.230395174,0.331606218,64,193,0.295613616,0.36775073,475.7,1126,236701,,,18.53701161,891,48066,17.31982563,19.75419759,,,,,,,18.34215168,16.11258904,20.57171431,36.3153233,30.75725266,41.87339394,15.06395438,13.57079322,16.55711554,,,,30.71985328,23.80746434,39.01312775,0.107126218,21154,197468,0.095211324,0.119041112,0.00032953,78,236701,,,3034.628205,0.000301897,74,245117,,,3312.391892,0.001505404,369,245117,,,664.2737127,2071,,,,,,,2781,1234,1878,0.47,,,,,,0.47,0.52,0.28,0.47,0.43,,,,,,0.44,0.36,0.27,0.44,0.90077238,139481,154846,0.889624357,0.911920404,0.677639627,43764,64583,0.645431395,0.709847858,0.030666229,3362,109632,,,0.124,6946,,0.079914894,0.168085106,0.01984127,0,0.2385295,0.080679406,0,0.19477644,0.230714958,0.185118909,0.276311006,0.243469353,0.163503384,0.323435322,0.116655953,0.092112338,0.141199568,3.933370188,135186,34369,3.712389187,4.154351189,0.268543326,14634,54494,0.239194113,0.297892539,5.956882311,141,236701,,,83.62414588,953,1139623,78.31479636,88.9334954,,,,,,,89.38539333,78.19257165,100.578215,42.41252417,29.37190593,59.26725141,91.26001325,84.28164451,98.23838199,,,,8.2,,,,,1,,,,,0.129091023,10275,79595,0.116289718,0.141892328,0.110473275,0.098402637,0.122543912,0.018719769,0.013812493,0.023627045,0.005967712,0.003066248,0.008869175,0.79930014,90910,113737,0.785592169,0.813008111,,,,0.57287706,0.46784626,0.677907859,0.816481094,0.772806991,0.860155197,0.642686732,0.558221317,0.727152146,0.759032057,0.727370265,0.79069385,0.481,,113737,0.455612608,0.506387392,77.20923464,,,76.81731448,77.60115479,,,,93.12105865,86.5376409,99.7044764,74.60928434,73.76491343,75.45365525,80.01786215,77.96788116,82.06784315,77.43151671,76.96452684,77.89850658,,,,404.8134922,3195,663504,390.4336266,419.1933578,,,,146.7915651,99.73774666,208.3589095,502.866286,469.5446062,536.1879659,264.1402056,210.9858146,326.6134548,395.4340647,377.9828123,412.885317,,,,49.36422986,120,243091,40.53184846,58.19661125,,,,,,,72.79315421,53.09582618,97.40296753,,,,41.26963071,31.17463553,53.59204823,,,,4.974869217,97,19498,4.034283802,6.068918552,,,,,,,8.478357876,5.999790639,11.63720859,,,,3.577973645,2.567615662,4.853925261,,,,,,,0.112,,,0.098,0.129,0.171,,,0.15,0.195,0.11,,,0.096,0.126,295.5,582,196981,,,0.076,17190,,,,0.090239465,16048.4572,177843,,,27.40527694,192,700595,23.52877816,31.28177573,,,,,,,17.72672481,11.96014679,25.30600191,,,,35.66366214,30.08497274,41.24235153,,,,0.346,,,0.332,0.359,0.12779429,18145,141986,0.112304928,0.143283651,0.056208342,3272,58212,0.04071898,0.071697704,0.000603793,148,245117,,,1656.195946,0.84,2170.56,2584,,,0.079785035,965,12095,0.051272582,0.108297488,2.996368654,,,,,,3.35459567,2.565969693,2.592803186,3.271858707,2.808597596,,,,,,3.341282322,2.327801334,2.564829012,3.081915303,0.077683686,,,,,-2587.378,,,,,0.73093238,43940,60115,0.691382524,0.770482235,79259,,,74249.97872,84268.02128,34702,12867.95745,56536.04255,86678,78765.31915,94590.68085,56533,53787.80851,59278.19149,74834,65258,84410,85948,82926.38298,88969.61702,,,,,,0.541615842,20869,38531,,,35.28688307,,,,,0.235140489,,79259,,,4.367119814,62,14197,,,7.725452856,120,1553307,6.343193956,9.107711757,,,,,,,18.42614055,14.33663719,23.31946017,,,,4.063946193,2.903342742,5.533941262,,,,14.67275806,167,1139623,12.40946646,16.93604965,14.6539689,,,,,,,9.103982921,5.771144223,13.6604444,,,,17.44826392,14.36124906,20.53527879,,,,17.46191504,199,1139623,15.03574406,19.88808602,,,,,,,25.90352215,20.23086571,32.67376853,12.47427181,5.981898205,22.94063,15.55726253,12.67601719,18.43850788,,,,18.99173827,295,1553307,16.82448444,21.15899211,,,,,,,26.17046049,21.24644484,31.89340886,9.44385158,4.528693912,17.3675793,18.69415249,15.99297613,21.39532885,,,,,,25500,,,,,0.637463766,104458,163865,,,0.641,,,,,53.85528711,,,,,0.739552428,64310,86958,0.721910506,0.757194349,0.116394249,9706,83389,0.104842629,0.127945869,0.861312358,74898,86958,0.850035287,0.872589429,245117,,,,,0.232982617,57108,245117,,,0.152180387,37302,245117,,,0.240668742,58992,245117,,,0.006755957,1656,245117,,,0.02739916,6716,245117,,,0.001431969,351,245117,,,0.077358976,18962,245117,,,0.623330899,152789,245117,,,0.012007351,2607,217117,0.009373095,0.014641607,0.501992926,123047,245117,,,0.220698596,50730,229861,, -45,017,45017,SC,Calhoun County,2024,1,13310.76025,341,39030,10929.84044,15691.68007,0,,,,2,,,,2,17121.65696,12698.71253,21544.60138,,,,,2,11575.16586,8626.302736,14524.02899,,,,,2,,0.194,,,0.165,0.223,4.132814756,,,3.317917309,5.07858375,5.672006157,,,4.609432669,6.856502913,0.11048478,98,887,0.08985369,0.131115871,0,,,,,,,0.157894737,0.121231459,0.194558015,,,,0.077448747,0.052443782,0.102453713,,,,,,,0.203,,,0.165,0.243,0.391,,,0.319,0.47,8.7,0.00272469,0.1,,,0.294,,,0.244,0.346,0.168567179,2380,14119,,,0.154740764,,,0.123278703,0.190153343,0.166666667,5,30,0.080208315,0.272453563,501.2,71,14165,,,21.95389682,60,2733,16.7531361,28.25901698,,,,,,,27.23146747,19.07258504,37.69982942,,,,16.28106255,9.802263209,25.42489595,,,,,,,0.123945797,1308,10553,0.106073457,0.141818138,0.00021179,3,14165,,,4721.666667,0.000352634,5,14179,,,2835.8,0.000211581,3,14179,,,4726.333333,1780,,,,,,,1864,,1213,0.44,,,,,,,0.45,,0.43,0.31,,,,,,,0.22,,0.35,0.865333333,9086,10500,0.824516828,0.906149839,0.61940058,1922,3103,0.50544458,0.73335658,0.035016414,224,6397,,,0.241,621,,0.14806383,0.33393617,,,,,,,0.445585216,0.323521493,0.567648938,0.53125,0.358526297,0.703973703,0.129384256,0.042238673,0.216529839,5.891729716,112915,19165,3.90299604,7.880463392,0.277777778,735,2646,0.173002777,0.382552779,14.82527356,21,14165,,,110.3509159,80,72496,87.50141331,137.3412671,,,,,,,97.03354588,64.47808655,140.2404905,,,,127.1843919,94.39870714,167.6767651,,,,8.2,,,,,0,,,,,0.143890675,895,6220,0.099538396,0.188242955,0.104675964,0.062149708,0.14720222,0.032958199,0.007852195,0.058064204,0.010450161,0.001123641,0.01977668,0.869522403,5298,6093,0.820645239,0.918399567,,,,,,,0.819201995,0.691333521,0.947070469,,,,0.84989858,0.817934549,0.881862612,0.463,,6093,0.38081314,0.54518686,73.85298621,,,72.12769393,75.57827849,,,,,,,70.54419894,67.56774805,73.52064983,,,,75.26792393,73.08632576,77.44952211,,,,586.8651122,341,39030,516.717543,657.0126814,,,,,,,738.2444009,612.0478314,864.4409705,,,,521.1203541,431.7838217,610.4568865,,,,92.00401472,11,11956,45.92807266,164.6205965,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.126,,,0.108,0.145,0.183,,,0.157,0.209,0.126,,,0.109,0.145,332.6,41,12328,,,0.1,1420,,,,0.00272469,41.34716797,15175,,,,,,,,,,,,,,,,,,,,,,,,,,0.367,,,0.353,0.38,0.144205361,1146,7947,0.121567063,0.166843658,0.063868613,175,2740,0.042421805,0.085315422,0.000211581,3,14179,,,4726.333333,0.875,86.625,99,,,,,,,,2.654024535,,,,,,,2.554829941,,2.797644193,2.516363304,,,,,,,2.330114397,,2.765957871,0.103301458,,,,,-10801.49,,,,,0.788414846,40914,51894,0.662723025,0.914106666,55642,,,47779.3617,63504.6383,,,,,,,33333,25204.65957,41461.34043,89643,74252.53192,105033.4681,68705,56756.74468,80653.25532,,,,,,1,1545,1545,,,15.59169311,,,,,0.253657309,,55642,,,1.445086705,1,692,,,14.69536508,15,102073,8.224884282,24.2377699,,,,,,,,,,,,,,,,,,,19.56656474,13,72496,10.11032953,34.17885091,17.93202384,,,,,,,,,,,,,31.86336259,15.27972088,58.59785827,,,,24.82895608,18,72496,14.71521295,39.24045502,,,,,,,,,,,,,,,,,,,40.16733122,41,102073,28.82477038,54.49152035,,,,,,,43.86926958,25.99970944,69.33235911,,,,39.88975921,24.99869973,60.39357482,,,,,,1300,,,,,0.71075868,8291,11665,,,0.563,,,,,10.99162985,,,,,0.827592001,4925,5951,0.778771823,0.876412179,0.133008482,737,5541,0.085523875,0.180493089,0.777180306,4625,5951,0.728630424,0.825730187,14179,,,,,0.184921363,2622,14179,,,0.247760773,3513,14179,,,0.384723887,5455,14179,,,0.006770576,96,14179,,,0.005007405,71,14179,,,0.001057903,15,14179,,,0.044079272,625,14179,,,0.547429297,7762,14179,,,0.002146876,29,13508,0,0.008659217,0.517455392,7337,14179,,,1,14119,14119,, -45,019,45019,SC,Charleston County,2024,1,8134.695994,5549,1161686,7813.602429,8455.789559,0,,,,2,3407.092641,2081.140699,5261.978252,1,14149.13675,13275.52708,15022.74643,,6380.78215,5232.982237,7528.582063,,6275.753971,5930.122495,6621.385448,,,,,2,,0.128,,,0.107,0.15,3.03144293,,,2.448920747,3.643984447,5.088037246,,,4.353557187,5.824265921,0.094790703,3279,34592,0.091703781,0.097877625,0,,,,0.102134146,0.078960447,0.125307845,0.17298955,0.165088561,0.18089054,0.068564036,0.060596831,0.076531242,0.065813438,0.062403695,0.069223182,,,,0.09125964,0.071023599,0.111495681,0.136,,,0.106,0.17,0.317,,,0.274,0.361,8.6,0.059883203,0.08,,,0.186,,,0.155,0.219,0.870814604,355497,408235,,,0.249174773,,,0.21361329,0.284268668,0.358126722,130,363,0.332547818,0.383674586,761.9,3147,413024,,,15.58226802,1225,78615,14.70966101,16.45487502,,,,,,,27.216477,25.08950067,29.34345333,63.27704583,56.5608233,69.99326836,4.167468103,3.582528467,4.752407738,,,,26.83063164,19.78278973,35.57352498,0.10618293,34998,329601,0.095459526,0.116906335,0.001239637,512,413024,,,806.6875,0.001151978,483,419279,,,868.0724638,0.00434794,1823,419279,,,229.993966,2292,,,,,,1126,3419,2047,1893,0.47,,,,,,0.39,0.44,0.37,0.48,0.46,,,,,,0.4,0.34,0.31,0.49,0.9293632,274664,295540,0.923186897,0.935539502,0.782373456,96016,122724,0.754718142,0.81002877,0.02757053,5931,215121,,,0.15,11765,,0.105914894,0.194085106,0.522682446,0.06185346,0.983511432,0.076190476,0,0.199692568,0.360304617,0.313059586,0.407549647,0.333198762,0.258895525,0.407501999,0.055687868,0.036386297,0.074989439,5.066652399,165715,32707,4.795842667,5.33746213,0.289524434,22970,79337,0.261997039,0.317051828,11.54896568,477,413024,,,94.9870082,1947,2049754,90.76773833,99.20627807,,,,26.94981944,12.92348595,49.56167747,121.8413343,112.4382385,131.24443,72.19681964,57.06858995,90.10489832,90.06281975,84.97761917,95.14802033,,,,7.1,,,,,1,,,,,0.165106175,26980,163410,0.154455726,0.175756623,0.155700244,0.144800059,0.16660043,0.01199437,0.009291951,0.014696789,0.004865063,0.003059913,0.006670213,0.740412881,155908,210569,0.725331387,0.755494376,,,,0.729388943,0.683139704,0.775638182,0.824973052,0.801201661,0.848744444,0.650719895,0.612589621,0.68885017,0.77840403,0.76406474,0.792743319,0.344,,210569,0.326287237,0.361712763,78.07671785,,,77.78299157,78.37044413,,,,86.85086613,83.4078058,90.29392645,72.37674243,71.73524078,73.01824408,84.75744585,81.05259263,88.46229907,79.98758074,79.65022713,80.32493434,,,,369.6589129,5549,1161686,359.5181694,379.7996564,,,,181.6682381,131.4742047,244.7059245,607.6235969,580.8676183,634.3795756,279.8278577,230.3179141,329.3378012,296.4188656,285.4496411,307.38809,,,,67.6500312,245,362158,59.17890737,76.12115504,,,,,,,120.7662152,100.0060956,141.5263348,68.30601093,42.80701339,103.4161214,43.63343988,35.04123514,53.69470241,,,,5.755936714,199,34573,4.956202744,6.555670683,,,,,,,12.44050195,10.16673968,14.71426421,,,,3.17775571,2.447259114,4.057923099,,,,,,,0.097,,,0.082,0.112,0.156,,,0.135,0.179,0.097,,,0.084,0.11,469.6,1668,355171,,,0.08,32240,,,,0.059883203,20971.63658,350209,,,32.27595377,401,1242411,29.11685671,35.43505083,,,,,,,32.7721761,26.44306472,39.10128749,14.96020585,7.174000204,27.51235121,34.84880649,30.7957299,38.90188308,,,,0.346,,,0.33,0.361,0.125226614,31429,250977,0.112120231,0.138332997,0.048181608,3952,82023,0.036266714,0.060096501,0.00278812,1169,419279,,,358.6646707,0.85,2216.8,2608,,,0.069262635,1254,18105,0.040759863,0.097765406,2.943275124,,,,,,3.812218107,2.261479382,2.394463658,3.617652754,2.892807473,,,,,,3.862746371,2.214449474,2.470874108,3.519862106,0.258180987,,,,,-516.9229,,,,,0.824979561,52472,63604,0.788746816,0.861212306,79969,,,76163.38298,83774.61702,,,,84052,65678.04255,102425.9575,42180,39427.65957,44932.34043,52175,44564.95745,59785.04255,97208,94212.59575,100203.4043,,,,,,0.523893252,26816,51186,,,50.78762443,,,,,0.233052808,,79969,,,5.692599621,132,23188,,,13.29571504,377,2835500,11.95357728,14.6378528,,,,,,,40.24900719,35.69440326,44.80361112,10.17197418,5.69317673,16.7771245,3.310695773,2.532419937,4.252727222,,,,15.16604061,324,2049754,13.46839229,16.86368892,15.80677486,,,,,,,5.739073087,3.813572388,8.294558521,10.54261496,5.262835402,18.86365033,18.91589051,16.62094304,21.21083798,,,,20.39269103,418,2049754,18.43771035,22.3476717,,,,,,,39.48037032,34.12777826,44.83296239,11.10720302,5.739253882,19.4020484,14.49974028,12.45933974,16.54014081,,,,15.30594252,434,2835500,13.86591336,16.74597167,,,,,,,23.07609746,19.62740702,26.52478789,20.34394835,13.72597652,29.04225126,12.37440387,10.76815464,13.98065311,,,,,,34400,,,,,0.693375364,218857,315640,,,0.612,,,,,144.941799,,,,,0.632439827,108650,171795,0.62314319,0.641736463,0.165481199,27453,165898,0.153276983,0.177685415,0.841462208,144559,171795,0.829297874,0.853626542,419279,,,,,0.190543767,79891,419279,,,0.182286735,76429,419279,,,0.238127834,99842,419279,,,0.004336015,1818,419279,,,0.019874594,8333,419279,,,0.000844307,354,419279,,,0.055924575,23448,419279,,,0.666959232,279642,419279,,,0.015874001,6140,386796,0.013110068,0.018637933,0.514917275,215894,419279,,,0.090599777,36986,408235,, -45,021,45021,SC,Cherokee County,2024,1,14365.47087,1402,159124,13228.64512,15502.29662,0,,,,2,,,,2,15826.55353,13220.82231,18432.28474,,,,,2,14762.9332,13385.90837,16139.95804,,,,,2,,0.198,,,0.171,0.226,4.334942266,,,3.539311665,5.243036124,5.837085983,,,4.779976613,6.91836814,0.115130128,522,4534,0.105839405,0.124420851,0,,,,,,,0.181985294,0.159058659,0.20491193,0.088652482,0.055476868,0.121828097,0.091633466,0.081329932,0.101937,,,,0.144144144,0.078801998,0.209486291,0.214,,,0.177,0.254,0.386,,,0.316,0.46,7.8,0.051500799,0.118,,,0.306,,,0.257,0.356,0.580902234,32656,56216,,,0.159311203,,,0.128912619,0.194237846,0.579545455,51,88,0.53802235,0.618488591,645.8,362,56052,,,32.49675795,426,13109,29.41079074,35.58272517,,,,,,,37.01510216,30.52606865,43.50413568,27.02702703,16.93769395,40.91924372,30.47484054,26.75617037,34.19351071,,,,52.63157895,31.1928093,83.18058558,0.13263479,6000,45237,0.11476245,0.150507131,0.000338971,19,56052,,,2950.105263,0.00026728,15,56121,,,3741.4,0.000766202,43,56121,,,1305.139535,2456,,,,,,,3585,,2318,0.51,,,,,,,0.51,,0.51,0.35,,,,,,,0.34,0.34,0.35,0.851859607,32547,38207,0.83392448,0.869794734,0.508099508,7026,13828,0.452453635,0.563745381,0.04101991,991,24159,,,0.233,2905,,0.165085106,0.300914894,,,,,,,0.485486212,0.365906178,0.605066246,0.163690476,0.021347742,0.30603321,0.209503807,0.160193592,0.258814022,4.675113078,96125,20561,4.047693237,5.302532919,0.319971705,4071,12723,0.258349307,0.381594102,16.77014201,94,56052,,,105.318219,300,284851,93.40034059,117.2360974,,,,,,,102.069061,77.69969834,131.6616521,,,,112.8629901,98.37094551,127.3550348,,,,8.8,,,,,1,,,,,0.099615014,2070,20780,0.081393753,0.117836276,0.093854461,0.074248917,0.113460005,0.011308951,0.004729121,0.017888781,0.001924928,0,0.004166975,0.838496593,20056,23919,0.808767553,0.868225632,,,,,,,0.796017699,0.71086058,0.881174819,,,,0.841687209,0.811354953,0.872019465,0.365,,23919,0.318257765,0.411742236,70.98959041,,,70.21928539,71.75989543,,,,,,,69.42857346,67.71707839,71.14006852,,,,70.75268793,69.84248479,71.66289106,,,,685.8258652,1402,159124,648.2121708,723.4395596,,,,,,,741.2212407,650.9548031,831.4876783,,,,702.2855752,658.1728042,746.3983462,,,,71.92642954,42,58393,51.83824385,97.22363773,,,,,,,89.5789788,46.28676552,156.4764486,,,,71.25514621,46.95759034,103.6724967,,,,6.755284376,31,4589,4.589887989,9.588586948,,,,,,,,,,,,,,,,,,,,,,0.136,,,0.118,0.155,0.192,,,0.168,0.218,0.127,,,0.11,0.144,224.8,106,47157,,,0.118,6620,,,,0.051500799,2850.15722,55342,,,17.57798767,30,170668,11.85979447,25.0936704,,,,,,,,,,,,,22.69761108,15.08239772,32.80436762,,,,0.362,,,0.349,0.376,0.163687935,5367,32788,0.139858147,0.187517722,0.052446483,686,13080,0.035765632,0.069127334,0.000694927,39,56121,,,1439,0.85,513.4,604,,,0.12082092,365,3021,0.060297484,0.181344356,2.588698217,,,,,,,2.121246698,2.451751778,2.814966251,2.582059215,,,,,,,2.112895264,2.284749432,2.818658663,0.091013187,,,,,-4202.832,,,,,0.829722581,37954,45743,0.763749197,0.895695964,50403,,,44282.31915,56523.68085,,,,,,,33985,29367.97872,38602.02128,43359,31323.76596,55394.23404,52585,48103.80851,57066.19149,,,,,,0.832509941,6909,8299,,,55.42192843,,,,,0.369759737,,50403,,,4.287901991,14,3265,,,7.794996618,31,397691,5.296322014,11.06437548,,,,,,,18.53591024,10.37440825,30.57216508,,,,4.503864662,2.398118248,7.701745739,,,,24.53112999,68,284851,18.89195927,31.32570535,23.87212964,,,,,,,,,,,,,30.07634861,22.71935052,39.05664038,,,,19.30834015,55,284851,14.54568423,25.13245872,,,,,,,20.75980901,10.72689625,36.26320851,,,,20.34440166,14.66245525,27.49972088,,,,25.89950489,103,397691,20.89767496,30.90133482,,,,,,,23.47881963,14.13578316,36.66508523,,,,28.40899249,22.5945148,35.26305034,,,,,,6100,,,,,0.587196468,25270,43035,,,0.603,,,,,35.63213932,,,,,0.708333333,15079,21288,0.680940045,0.735726622,0.104185532,2071,19878,0.084933055,0.123438009,0.740417136,15762,21288,0.709438511,0.771395762,56121,,,,,0.226118565,12690,56121,,,0.175905633,9872,56121,,,0.199444058,11193,56121,,,0.005612872,315,56121,,,0.007145275,401,56121,,,0.001692771,95,56121,,,0.053616293,3009,56121,,,0.717877443,40288,56121,,,0.009519844,503,52837,0.004330875,0.014708813,0.506405802,28420,56121,,,0.661270813,37174,56216,, -45,023,45023,SC,Chester County,2024,1,17083.82788,919,89276,15356.73529,18810.92047,0,,,,2,,,,2,18445.89876,15552.61139,21339.18613,,,,,2,16953.60845,14641.78967,19265.42723,,,,,2,,0.205,,,0.178,0.235,4.421412676,,,3.569430459,5.33148164,5.696153762,,,4.67318266,6.802558855,0.1157766,284,2453,0.103114706,0.128438495,0,,,,,,,0.147922999,0.125773966,0.170072032,,,,0.094573643,0.078604823,0.110542464,,,,,,,0.222,,,0.185,0.262,0.415,,,0.347,0.486,7.7,0.091003959,0.106,,,0.282,,,0.237,0.329,0.291013811,9398,32294,,,0.146771721,,,0.117950109,0.179130646,0.360655738,22,61,0.295482933,0.425083175,797.9,257,32209,,,33.98815092,218,6414,29.47629355,38.50000829,,,,,,,38.88888889,31.57187979,47.39309932,,,,27.14665093,21.88403209,33.29295751,,,,101.3215859,64.229194,152.0321273,0.119838279,3053,25476,0.103157428,0.13651913,0.000279425,9,32209,,,3578.777778,0.000156588,5,31931,,,6386.2,0.000501081,16,31931,,,1995.6875,2879,,,,,,,3882,,2578,0.4,,,,,,,0.39,,0.4,0.38,,,,,,,0.31,,0.4,0.851878259,19117,22441,0.830429565,0.873326952,0.536310628,4047,7546,0.464399084,0.608222173,0.042610856,566,13283,,,0.254,1762,,0.169404255,0.338595745,,,,,,,0.353488372,0.254546909,0.452429835,0.514950166,0.163607892,0.86629244,0.153935185,0.089339645,0.218530726,4.599700225,92063,20015,3.880937434,5.318463016,0.367060459,2641,7195,0.27972859,0.454392327,14.90266696,48,32209,,,136.4451088,220,161237,118.4148191,154.4753984,,,,,,,95.48818334,72.13074751,123.9993487,,,,170.5201394,144.1799549,196.8603239,,,,8.6,,,,,0,,,,,0.129471229,1665,12860,0.10698968,0.151952777,0.111208267,0.087742201,0.134674333,0.021306376,0.00932943,0.033283323,0.00311042,0.00045725,0.00576359,0.826015776,11100,13438,0.794095652,0.8579359,,,,,,,0.738134206,0.6687085,0.807559913,,,,0.8344872,0.773665063,0.895309337,0.5,,13438,0.443219562,0.556780438,69.33811286,,,68.24104921,70.43517651,,,,,,,68.4233144,66.63449841,70.21213038,,,,69.37383115,67.91579606,70.83186623,,,,766.9290748,919,89276,713.8565353,820.0016142,,,,,,,842.0121497,747.0860846,936.9382148,,,,750.5426003,683.0067125,818.078488,,,,110.4449353,35,31690,76.92894415,153.602169,,,,,,,117.7578898,65.90819699,194.2237311,,,,112.9518072,66.94239948,178.5125519,,,,10.34619976,26,2513,6.758481184,15.15957982,,,,,,,,,,,,,,,,,,,,,,0.137,,,0.119,0.156,0.195,,,0.17,0.221,0.128,,,0.112,0.147,339.2,92,27124,,,0.106,3430,,,,0.091003959,3015.871189,33140,,,29.99431142,29,96685,20.0876611,43.0768345,,,,,,,,,,,,,45.97457253,30.03211716,67.36340085,,,,0.375,,,0.362,0.387,0.14669993,2705,18439,0.125253121,0.168146738,0.051140197,379,7411,0.034459346,0.067821048,0.00037581,12,31931,,,2660.916667,0.8,297.6,372,,,0.15801105,286,1810,0.074204428,0.241817671,2.511280247,,,,,,,2.232732546,,2.769943802,2.52738295,,,,,,,2.234728971,,2.747654957,0.086861434,,,,,-6725.248,,,,,0.75846339,35914,47351,0.680012899,0.836913882,53488,,,48830.46809,58145.53192,,,,141528,104042.5532,179013.4468,38083,30589.7234,45576.2766,66719,3692.787234,129745.2128,57250,50773.06383,63726.93617,,,,,,0.935621355,4171,4458,,,31.66017133,,,,,0.26387227,,53488,,,5.571030641,10,1795,,,12.84976848,29,225685,8.605691622,18.45441099,,,,,,,23.0901976,13.90180731,36.05820379,,,,7.552584872,3.621758012,13.88947248,,,,24.34275813,37,161237,16.95562296,33.85488378,22.94758647,,,,,,,,,,,,,35.77057222,23.95611361,51.37250853,,,,26.66881671,43,161237,19.30035489,35.92272109,,,,,,,27.2823381,15.59421351,44.30480783,,,,28.59654511,18.84530342,41.60647176,,,,38.54930545,87,225685,30.87641338,47.55042585,,,,,,,38.88875386,26.59987885,54.89931711,,,,39.27344134,29.33128447,51.50189324,,,,,,3300,,,,,0.632811245,15757,24900,,,0.582,,,,,19.70206547,,,,,0.773622964,9972,12890,0.74255162,0.804694307,0.100089004,1237,12359,0.07410662,0.126071388,0.765321955,9865,12890,0.729362288,0.801281622,31931,,,,,0.220788575,7050,31931,,,0.197175159,6296,31931,,,0.352009019,11240,31931,,,0.006357458,203,31931,,,0.005605838,179,31931,,,0.000563716,18,31931,,,0.028185776,900,31931,,,0.588518994,18792,31931,,,0.002269214,69,30407,0,0.007217203,0.515549153,16462,31931,,,0.733356041,23683,32294,, -45,025,45025,SC,Chesterfield County,2024,1,13100.77032,1082,124575,11857.10462,14344.43603,0,,,,2,,,,2,14967.13829,12600.17054,17334.10604,,,,,2,12921.54646,11339.87055,14503.22236,,,,,2,,0.218,,,0.19,0.247,4.401328062,,,3.538186298,5.294681777,5.497525817,,,4.468026389,6.499915,0.109816487,377,3433,0.099357426,0.120275549,0,,,,,,,0.14248927,0.122416655,0.162561886,0.106060606,0.063170752,0.14895046,0.089583333,0.076808973,0.102357694,,,,0.129310345,0.068247729,0.190372961,0.227,,,0.192,0.265,0.392,,,0.326,0.461,7.9,0.044290106,0.118,,,0.31,,,0.265,0.358,0.562082592,24323,43273,,,0.151934461,,,0.121676132,0.18537964,0.327868853,20,61,0.261819031,0.394200358,744.2,322,43268,,,32.97997644,308,9339,29.29672766,36.66322523,,,,,,,30.41474654,24.71960518,37.0288626,54.96453901,37.34573755,78.01777572,29.6893433,24.95381769,34.4248689,,,,89.10891089,58.72333377,129.648787,0.140573029,4818,34274,0.122700689,0.15844537,0.000300453,13,43268,,,3328.307692,0.000297599,13,43683,,,3360.230769,0.001373532,60,43683,,,728.05,3652,,,,,,,4726,,3312,0.45,,,,,,,0.43,,0.45,0.42,,,,,,,0.36,,0.43,0.813809868,24774,30442,0.791724247,0.835895489,0.49645964,4908,9886,0.437158796,0.555760484,0.035714286,755,21140,,,0.282,2648,,0.202170213,0.361829787,,,,,,,0.421562083,0.304336004,0.538788162,0.303744799,0.141571382,0.465918216,0.194675186,0.138679637,0.250670735,4.979433902,93942,18866,4.19216305,5.766704755,0.383091838,3675,9593,0.312902612,0.453281064,12.71147268,55,43268,,,106.0886017,240,226226,92.66654167,119.5106617,,,,,,,91.15150196,70.64116201,115.7591854,,,,123.1499849,104.4719063,141.8280635,,,,7.1,,,,,0,,,,,0.135602525,2470,18215,0.111719268,0.159485783,0.091534832,0.066724355,0.116345309,0.037331869,0.022029861,0.052633878,0.013175954,0.004986402,0.021365506,0.857425743,15155,17675,0.844649328,0.870202157,,,,,,,0.823057836,0.787877569,0.858238102,,,,0.837777304,0.812587853,0.862966755,0.37,,17675,0.328742799,0.411257201,72.14121897,,,71.26755022,73.01488773,,,,,,,70.91428067,69.26651755,72.56204379,,,,72.16335514,71.08750703,73.23920326,,,,623.6853548,1082,124575,584.0898029,663.2809068,,,,,,,683.2950925,609.6364838,756.9537013,,,,629.508019,578.6725191,680.3435189,,,,80.71211143,35,43364,56.21894291,112.2510086,,,,,,,110.6698783,64.4692824,177.1931959,,,,62.33026134,34.07653389,104.5795874,,,,9.551374819,33,3455,6.574726939,13.41368141,,,,,,,,,,,,,,,,,,,,,,0.141,,,0.123,0.16,0.192,,,0.169,0.216,0.13,,,0.113,0.148,253.8,93,36649,,,0.118,5140,,,,0.044290106,2069.853813,46734,,,23.78757694,32,134524,16.27068502,33.58096108,,,,,,,,,,,,,37.35059761,25.20029136,53.32030054,,,,0.398,,,0.385,0.41,0.175301349,4392,25054,0.151471562,0.199131136,0.047761502,463,9694,0.03346363,0.062059374,0.000457844,20,43683,,,2184.15,0.87,416.73,479,,,0.158447009,302,1906,0.0607447,0.256149319,2.603148011,,,,,,,2.264103226,2.27438393,2.909086195,2.645274242,,,,,,,2.270387873,2.26774453,2.981922564,0.081791181,,,,,-4094.322,,,,,0.727768914,34668,47636,0.657293033,0.798244796,44574,,,39601.91489,49546.08511,,,,,,,34076,27783.74468,40368.25532,44435,3708.702128,85161.29787,53641,47295.12766,59986.87234,,,,,,1,6901,6901,,,23.56034622,,,,,0.316641989,,44574,,,5.79230451,14,2417,,,13.19692323,42,318256,9.511181481,17.83840643,,,,,,,22.24758662,14.1030615,33.38230339,,,,9.405568096,5.574335748,14.86485258,,,,19.65344021,47,226226,14.28021974,26.38382614,20.77568449,,,,,,,,,,,,,24.89089742,17.13374848,34.95607432,,,,26.96418626,61,226226,20.62546593,34.63662528,,,,,,,27.20940357,16.62021058,42.022717,,,,29.49700237,21.07309095,40.16654521,,,,32.04967071,102,318256,25.82982578,38.26951564,,,,,,,34.82230949,24.38911747,48.20875442,,,,32.39695678,24.83856099,41.53143648,,,,,,4700,,,,,0.540704669,18876,34910,,,0.517,,,,,15.63798733,,,,,0.721079692,12342,17116,0.694088528,0.748070855,0.113065486,1787,15805,0.086139524,0.139991447,0.770039729,13180,17116,0.744727939,0.795351519,43683,,,,,0.219032576,9568,43683,,,0.195842776,8555,43683,,,0.320879976,14017,43683,,,0.008584575,375,43683,,,0.007096582,310,43683,,,0.001053041,46,43683,,,0.056085892,2450,43683,,,0.588764508,25719,43683,,,0.01703234,701,41157,0.009616376,0.024448303,0.508870728,22229,43683,,,0.83167333,35989,43273,, -45,027,45027,SC,Clarendon County,2024,1,14905.14062,843,88284,13228.84332,16581.43791,0,,,,2,,,,2,17758.33152,15124.07749,20392.58554,,,,,2,12400.01437,10178.60156,14621.42719,,,,,2,,0.225,,,0.194,0.256,4.44638669,,,3.608430585,5.367431448,5.670247199,,,4.634596621,6.743991261,0.116961789,251,2146,0.103364481,0.130559098,0,,,,,,,0.138914443,0.118353731,0.159475156,,,,0.094713656,0.075667277,0.113760036,,,,,,,0.234,,,0.192,0.277,0.398,,,0.329,0.471,7.8,0.072727372,0.111,,,0.305,,,0.255,0.356,0.444483689,13843,31144,,,0.143135015,,,0.112695836,0.176917683,0.308823529,21,68,0.24617772,0.372371472,738.1,229,31024,,,26.96556205,166,6156,22.86341236,31.06771175,,,,,,,30.69620253,24.8925524,37.4467639,30.76923077,14.75504214,56.5857109,23.20928371,17.62378219,30.00338125,,,,,,,0.149924211,3264,21771,0.130860381,0.168988041,0.000322331,10,31024,,,3102.4,0.000258791,8,30913,,,3864.125,0.001196907,37,30913,,,835.4864865,2839,,,,,,,3513,,2560,0.4,,,,,,,0.4,,0.41,0.36,,,,,,,0.35,,0.36,0.808558758,18233,22550,0.785077154,0.832040363,0.483856701,3282,6783,0.416762214,0.550951187,0.040864177,488,11942,,,0.292,1579,,0.182382979,0.401617021,,,,,,,0.401589021,0.312967141,0.490210901,0.538873995,0.398042635,0.679705354,0.147742218,0.090937005,0.204547431,5.964207451,97980,16428,5.308619937,6.619794965,0.369539147,2157,5837,0.291431209,0.447647084,12.89324394,40,31024,,,103.0486739,171,165941,87.60322899,118.4941189,,,,,,,94.59144271,74.14459134,118.9345378,,,,118.6165564,95.96787747,145.0025891,,,,8,,,,,0,,,,,0.126418787,1615,12775,0.102882657,0.149954916,0.101367659,0.079449878,0.12328544,0.029354207,0.018215617,0.040492798,0.00704501,0.000171945,0.013918075,0.805676653,8686,10781,0.776976457,0.83437685,,,,,,,0.72339688,0.660423944,0.786369817,,,,0.81792251,0.756342522,0.879502498,0.465,,10781,0.411000419,0.518999581,72.2154713,,,71.06489494,73.36604766,,,,,,,69.67371385,68.00102291,71.3464048,,,,74.2593878,72.6609681,75.8578075,,,,650.1549046,843,88284,600.7673926,699.5424166,,,,,,,760.185494,680.2679519,840.1030362,,,,568.725055,503.9136245,633.5364855,,,,86.16666068,24,27853,55.20860537,128.2091609,,,,,,,99.42475676,54.35643972,166.8178476,,,,,,,,,,9.593421654,21,2189,5.938479207,14.66456406,,,,,,,,,,,,,,,,,,,,,,0.142,,,0.124,0.162,0.196,,,0.17,0.223,0.139,,,0.12,0.159,596.2,162,27174,,,0.111,3520,,,,0.072727372,2543.34894,34971,,,23.42540536,23,98184,14.84969754,35.14960981,,,,,,,,,,,,,39.83646085,23.98415172,62.20956824,,,,0.387,,,0.373,0.401,0.180724363,2959,16373,0.155703087,0.20574564,0.057759832,329,5696,0.039887491,0.075632172,0.000905768,28,30913,,,1104.035714,0.860815217,316.78,368,,,0.243658211,365,1498,0.142664946,0.344651476,2.648985423,,,,,,,2.53369686,,2.912579789,2.594742603,,,,,,,2.422043338,,2.908658761,0.14260824,,,,,-12801.003,,,,,0.735491873,33801,45957,0.670527514,0.800456232,46202,,,40076.55319,52327.44681,,,,57176,11622.97872,102729.0213,28320,21389.10638,35250.89362,48942,2246.340426,95637.65957,61641,52803.7234,70478.2766,,,,,,0.999316317,4385,4388,,,29.55592786,,,,,0.305484611,,46202,,,5.645730416,8,1417,,,10.27102672,24,233667,6.580840621,15.2824736,,,,,,,20.11171142,12.60390247,30.44937278,,,,,,,,,,17.68342236,32,165941,11.65348676,25.72845112,19.28396237,,,,,,,,,,,,,26.23040185,15.7924154,40.96202171,,,,22.89970532,38,165941,16.2051944,31.43163469,,,,,,,23.32391738,13.82323163,36.86184501,,,,24.97190661,15.25348931,38.56708441,,,,29.10124237,68,233667,22.59825339,36.89275899,,,,,,,33.82424193,23.81538781,46.62226197,,,,25.81311306,17.28744694,37.0719362,,,,,,3000,,,,,0.62123631,16733,26935,,,0.452,,,,,9.63651064,,,,,0.743495378,8687,11684,0.714731653,0.772259104,0.113857747,1239,10882,0.08938291,0.138332584,0.810167751,9466,11684,0.775805615,0.844529886,30913,,,,,0.180538932,5581,30913,,,0.251221169,7766,30913,,,0.443793873,13719,30913,,,0.005758095,178,30913,,,0.007893119,244,30913,,,0.000485233,15,30913,,,0.034645618,1071,30913,,,0.497557662,15381,30913,,,0.006011351,179,29777,0.001233101,0.010789601,0.50745641,15687,30913,,,0.854803493,26622,31144,, -45,029,45029,SC,Colleton County,2024,1,17216.73704,1059,104559,15590.22461,18843.24948,0,,,,2,,,,2,21626.13095,18556.34853,24695.91338,,,,,2,14949.00176,12943.85882,16954.1447,,,,,2,,0.209,,,0.181,0.238,4.128726682,,,3.343317392,5.003829122,5.257649589,,,4.328198903,6.3222465,0.126039667,394,3126,0.11440481,0.137674525,0,,,,,,,0.161532057,0.140717979,0.182346134,0.094339623,0.048904965,0.13977428,0.102689487,0.087979957,0.117399016,,,,,,,0.227,,,0.189,0.266,0.373,,,0.31,0.441,6.9,0.181546468,0.098,,,0.31,,,0.264,0.359,0.484276241,18695,38604,,,0.156031856,,,0.125295061,0.189767643,0.327433628,37,113,0.279737742,0.375391508,660.4,254,38462,,,37.70406841,291,7718,33.37197521,42.03616161,,,,,,,30.89629856,24.87067721,36.92191992,55.55555556,33.44807358,86.75688179,40.26490066,33.86370784,46.66609348,,,,79.81220657,46.4935515,127.7870743,0.146494477,4390,29967,0.127430648,0.165558307,0.000415995,16,38462,,,2403.875,0.000362704,14,38599,,,2757.071429,0.00150263,58,38599,,,665.5,3134,,,,,,,2982,,3117,0.38,,,,,,,0.49,,0.35,0.26,,,,,,,0.25,,0.27,0.861836,23217,26939,0.837071196,0.886600804,0.506610377,4560,9001,0.426864753,0.586356,0.034996513,552,15773,,,0.306,2625,,0.203531915,0.408468085,,,,,,,0.366352201,0.263214369,0.469490033,,,,0.132241814,0.054372195,0.210111432,4.339552581,94663,21814,3.696790334,4.982314828,0.341440815,2948,8634,0.244855565,0.438026066,10.65987208,41,38462,,,148.2336374,280,188891,130.8706751,165.5965997,,,,,,,142.1340411,115.391285,173.2158701,,,,154.9050163,131.4106726,178.39936,,,,8.3,,,,,0,,,,,0.115837696,1770,15280,0.088376062,0.143299331,0.097869507,0.071279206,0.124459808,0.011125655,0.00473273,0.017518579,0.008180628,0,0.019458695,0.795292901,12300,15466,0.770183526,0.820402275,,,,,,,0.784244974,0.705312293,0.863177655,,,,0.80907023,0.763169905,0.854970556,0.524,,15466,0.454555486,0.593444514,69.26516355,,,68.25626449,70.27406262,,,,,,,66.73311488,64.96872715,68.4975026,,,,70.57626527,69.29789004,71.8546405,,,,742.6670188,1059,104559,693.9768964,791.3571412,,,,,,,904.386051,811.8163303,996.9557717,,,,667.0441319,607.9051529,726.1831109,,,,131.8196492,49,37172,97.52090215,174.272567,,,,,,,163.8672675,104.9928503,243.8215048,,,,109.3374153,66.78613375,168.8627701,,,,8.760951189,28,3196,5.821588441,12.66201375,,,,,,,,,,,,,,,,,,,,,,0.135,,,0.117,0.154,0.189,,,0.165,0.215,0.135,,,0.117,0.154,504.9,163,32281,,,0.098,3780,,,,0.181546468,7060.705221,38892,,,29.04418236,33,113620,19.99267873,40.78883055,,,,,,,,,,,,,39.9895412,26.12249599,58.59394325,,,,0.388,,,0.374,0.401,0.179348078,3868,21567,0.153135312,0.205560844,0.063110102,556,8810,0.041663294,0.084556911,0.000906759,35,38599,,,1102.828571,0.75,279,372,,,,,,,,2.285980728,,,,,,,2.04702388,2.315398662,2.521682784,2.240710548,,,,,,,1.911160506,2.454635196,2.567952536,0.018579033,,,,,-11470.21,,,,,0.899427146,38938,43292,0.783466965,1.015387327,47933,,,41768.23404,54097.76596,40590,20886.34043,60293.65957,,,,38134,28766.51064,47501.48936,72031,10915.93617,133146.0638,52908,41741.3617,64074.6383,,,,,,1,4971,4971,,,22.71770656,,,,,0.294452674,,47933,,,4.239284032,9,2123,,,23.43646639,62,264545,17.96860439,30.04449219,,,,,,,42.09445585,30.20770828,57.10588251,,,,13.27818461,8.110660115,20.5070792,,,,18.94579651,34,188891,12.87274954,26.89204584,17.99979883,,,,,,,,,,,,,30.95320568,20.72984763,44.4539666,,,,37.5878152,71,188891,29.35639552,47.41191434,,,,,,,47.86146282,32.94562876,67.2152885,,,,34.32027308,24.16463951,47.30597557,,,,49.51898543,131,264545,41.03905749,57.99891336,,,,,,,56.46817249,42.53955541,73.50108827,,,,43.15409997,33.3054233,55.00344291,,,,,,3800,,,,,0.671998606,19283,28695,,,0.512,,,,,19.73814315,,,,,0.727005621,11382,15656,0.699077483,0.754933759,0.105666156,1518,14366,0.07625366,0.135078652,0.789537558,12361,15656,0.755064589,0.824010526,38599,,,,,0.225860774,8718,38599,,,0.205575274,7935,38599,,,0.348040105,13434,38599,,,0.009844815,380,38599,,,0.00549237,212,38599,,,0.00080313,31,38599,,,0.044146221,1704,38599,,,0.575662582,22220,38599,,,0.013311742,485,36434,0.004490023,0.022133461,0.515220602,19887,38599,,,0.76093151,29375,38604,, -45,031,45031,SC,Darlington County,2024,1,14831.40845,1681,180569,13728.93488,15933.88202,0,,,,2,,,,2,16195.43069,14431.00675,17959.85464,,,,,2,14312.64363,12803.94541,15821.34185,,,,,2,,0.208,,,0.181,0.238,4.316030459,,,3.483028821,5.246922081,5.893662755,,,4.899037999,7.014191047,0.125923121,665,5281,0.11697513,0.134871112,0,,,,,,,0.163772691,0.14936363,0.178181753,0.124087591,0.06888108,0.179294103,0.089437475,0.078185355,0.100689595,,,,0.102040816,0.042108882,0.161972751,0.22,,,0.182,0.259,0.412,,,0.349,0.48,7.7,0.068726265,0.113,,,0.291,,,0.247,0.342,0.452634926,28473,62905,,,0.153564379,,,0.124068007,0.187684917,0.319587629,31,97,0.267771057,0.371853003,988,620,62755,,,27.92298022,422,15113,25.25881217,30.58714826,,,,,,,32.32152895,28.14434068,36.49871722,24.44444444,12.20257859,43.73786336,22.62507026,19.13018381,26.11995671,,,,65.74394464,39.58214936,102.6673134,0.12627796,6114,48417,0.109597109,0.142958811,0.00054179,34,62755,,,1845.735294,0.000304497,19,62398,,,3284.105263,0.001538511,96,62398,,,649.9791667,4165,,,,,,,5739,,3571,0.47,,,,,,,0.48,,0.47,0.37,,,,,,0.36,0.3,0.29,0.39,0.857047212,37123,43315,0.840759034,0.873335391,0.564273905,8191,14516,0.502552727,0.625995082,0.03545479,1054,29728,,,0.308,4189,,0.218638298,0.397361702,,,,,,,0.411336969,0.327960864,0.494713074,0.240837696,0.041987797,0.439687596,0.174042687,0.126288078,0.221797296,5.169645577,101811,19694,4.388027671,5.951263484,0.384990673,5366,13938,0.325637005,0.444344341,14.81953629,93,62755,,,112.4416198,371,329949,100.9997708,123.8834687,,,,,,,99.11021055,82.39131495,115.8291062,,,,127.5382336,111.0194248,144.0570425,,,,8.1,,,,,0,,,,,0.148382156,3875,26115,0.123113723,0.173650589,0.119992244,0.09788684,0.142097647,0.019911928,0.010876877,0.028946979,0.019146085,0.010504402,0.027787768,0.839075109,21628,25776,0.814205892,0.863944325,,,,,,,0.789964836,0.731533525,0.848396148,,,,0.876234082,0.841359251,0.911108914,0.271,,25776,0.233284139,0.308715861,70.99585944,,,70.26151383,71.73020506,,,,,,,70.17399308,69.02087315,71.32711301,,,,71.21178477,70.21608349,72.20748606,,,,688.3464242,1681,180569,653.0245435,723.6683049,,,,,,,735.3615339,677.5408961,793.1821716,,,,674.9172142,628.2853973,721.5490312,,,,75.81618443,49,64630,56.08923062,100.2330165,,,,,,,85.01666327,55.01830187,125.501366,,,,76.54929109,48.52568408,114.861522,,,,8.353443475,45,5387,6.093058992,11.1775646,,,,,,,9.615384615,6.222569942,14.1942045,,,,,,,,,,,,,0.134,,,0.117,0.153,0.19,,,0.167,0.216,0.133,,,0.116,0.153,503.6,267,53021,,,0.113,7140,,,,0.068726265,4720.188598,68681,,,20.93096864,41,195882,15.02042447,28.39522241,,,,,,,,,,,,,32.02773225,22.18013563,44.7555456,,,,0.381,,,0.367,0.394,0.156624786,5485,35020,0.133986488,0.179263084,0.048422545,683,14105,0.032933184,0.063911907,0.00083336,52,62398,,,1199.961539,0.921215686,704.73,765,,,0.138257016,468,3385,0.075947053,0.20056698,2.580901779,,,,,,,2.336582189,2.515194171,2.942470775,2.649485488,,,,,,,2.360583805,2.55829049,3.035781182,0.065251867,,,,,-7941.033,,,,,0.665513111,35000,52591,0.579722959,0.751303263,50427,,,45513.29787,55340.70213,,,,,,,32580,29196.17021,35963.82979,53750,5597.148936,101902.8511,62934,55847.02128,70020.97872,,,,,,0.972570372,9467,9734,,,33.05857571,,,,,0.279889742,,50427,,,6.190208216,22,3554,,,18.0749724,84,464731,14.41730587,22.37804575,,,,,,,30.30461362,23.01156366,39.1757405,,,,9.062218037,5.744668869,13.59777656,,,,16.49066384,53,329949,12.19988389,21.80153214,16.06308854,,,,,,,,,,,,,26.23512364,18.90796951,35.46226571,,,,33.94463993,112,329949,27.65800464,40.23127522,,,,,,,40.37823393,30.41841172,52.55782161,,,,30.63145349,23.07580281,39.87104714,,,,30.34013225,141,464731,25.33213612,35.34812838,,,,,,,34.48456032,26.67035646,43.87281595,,,,28.36868255,22.19674694,35.72566067,,,,,,6800,,,,,0.630313047,32417,51430,,,0.521,,,,,22.76182721,,,,,0.690592279,17280,25022,0.662602204,0.718582353,0.127273502,2988,23477,0.105017236,0.149529767,0.702262009,17572,25022,0.665131463,0.739392556,62398,,,,,0.221545562,13824,62398,,,0.198515978,12387,62398,,,0.411551652,25680,62398,,,0.004871951,304,62398,,,0.006202122,387,62398,,,0.000657072,41,62398,,,0.025625821,1599,62398,,,0.53775762,33555,62398,,,0.004265037,254,59554,0.001188274,0.0073418,0.524792461,32746,62398,,,0.571146968,35928,62905,, -45,033,45033,SC,Dillon County,2024,1,18903.28239,863,82853,17056.02243,20750.54234,0,21119.90468,11245.45975,36115.68021,1,,,,2,20205.89812,17466.90518,22944.89106,,,,,2,18885.03715,15995.88897,21774.18533,,,,,2,,0.261,,,0.23,0.295,5.04551696,,,4.096137934,6.014330848,6.150649595,,,4.966976499,7.315547444,0.126709863,352,2778,0.114339728,0.139079998,0,,,,,,,0.15106383,0.132371464,0.169756196,0.099009901,0.040760065,0.157259737,0.093862816,0.076690457,0.111035175,,,,0.204545455,0.12026685,0.288824059,0.261,,,0.219,0.304,0.439,,,0.359,0.515,7.4,0.019054767,0.151,,,0.352,,,0.301,0.403,0.316732645,8961,28292,,,0.135878532,,,0.106222161,0.169023741,0.068965517,4,58,0.024746141,0.136593764,1171.4,329,28087,,,42.84266898,296,6909,37.96191706,47.72342091,,,,,,,46.21234279,39.00648787,53.41819771,51.44694534,29.40637445,83.54661607,34.54612275,27.91678368,42.27570516,,,,84.82142857,51.06804091,132.4591677,0.129507023,2895,22354,0.111634683,0.147379364,0.00039164,11,28087,,,2553.363636,0.000288413,8,27738,,,3467.25,0.001478117,41,27738,,,676.5365854,4256,,,,,,,6307,,3215,0.4,,,,,,,0.45,,0.38,0.4,,,,,0.2,,0.32,,0.43,0.783341358,14643,18693,0.754825959,0.811856756,0.426696495,2861,6705,0.355805668,0.497587322,0.045878024,586,12773,,,0.397,2715,,0.293340426,0.500659575,0.718120805,0.237605037,1,,,,0.516367777,0.432649886,0.600085668,0.772058824,0.317092261,1,0.323597233,0.165934355,0.481260111,6.36419183,89576,14075,4.927310656,7.801073003,0.438623596,3123,7120,0.357430086,0.519817105,11.74920782,33,28087,,,133.8233532,201,150198,115.3225769,152.3241294,,,,,,,130.9589899,105.5714293,160.6095757,,,,147.1020889,118.2700794,175.9340983,,,,7.6,,,,,0,,,,,0.161956034,1805,11145,0.128010726,0.195901343,0.120146856,0.090920408,0.149373305,0.040287124,0.019767203,0.060807046,0.012561687,0,0.029288524,0.790115705,8809,11149,0.738414544,0.841816867,,,,,,,0.70378286,0.617665563,0.789900156,,,,0.880230241,0.818303912,0.942156571,0.331,,11149,0.268996744,0.393003256,67.93175663,,,66.79109272,69.07242053,,,,,,,66.88874042,65.24909486,68.52838598,,,,67.82613211,66.05985715,69.59240707,,,,832.4895257,863,82853,774.1947356,890.7843159,850.8056849,512.2406007,1328.638468,,,,878.3293542,789.3177243,967.3409841,,,,826.6846922,742.5416028,910.8277816,,,,112.0634825,37,33017,78.90303349,154.4647489,,,,,,,126.5822785,78.35642546,193.4944589,,,,106.7674113,56.84914989,182.575525,,,,10.59322034,30,2832,7.147201279,15.12248072,,,,,,,13.48617667,8.23770707,20.82830607,,,,,,,,,,,,,0.159,,,0.139,0.18,0.211,,,0.184,0.237,0.161,,,0.14,0.182,610.7,141,23090,,,0.151,4320,,,,0.019054767,610.9339308,32062,,,43.85323783,39,88933,31.18393902,59.94881975,,,,,,,28.92820983,14.94762815,50.53176088,,,,64.80073773,42.32999331,94.94809482,,,,0.408,,,0.394,0.42,0.16624976,2592,15591,0.141228483,0.191271036,0.04627682,330,7131,0.030787458,0.061766181,0.000973394,27,27738,,,1027.333333,0.850597964,334.285,393,,,,,,,,2.618222235,,,,,,,2.395064736,2.835502093,2.930828415,2.549990214,,,,,,,2.416947913,2.615085306,2.787810233,0.071285555,,,,,-11681.506,,,,,0.827914029,34399,41549,0.763441887,0.892386172,37752,,,32922.89362,42581.10638,53750,5786.595745,101713.4043,,,,34198,29957.48936,38438.51064,,,,46161,41772.74468,50549.25532,,,,,,0.907938874,4872,5366,,,27.80753166,,,,,0.373860988,,37752,,,3.962357603,8,2019,,,32.03165481,68,212290,24.87383332,40.60775503,,,,,,,54.52232386,40.95884773,71.13980573,,,,11.37468203,5.678200285,20.35244816,,,,9.791444476,15,150198,5.353073809,16.42838007,9.986817401,,,,,,,,,,,,,14.10470015,6.449567059,26.77511442,,,,42.61042091,64,150198,32.81521628,54.41255623,,,,,,,66.90296224,49.1577802,88.96675683,,,,23.53633422,13.45304862,38.22153221,,,,27.79217109,59,212290,21.15668832,35.84987581,,,,,,,23.22247128,14.72105474,34.84510904,,,,35.15810808,24.3480119,49.12993206,,,,,,3600,,,,,0.578027796,13101,22665,,,0.446,,,,,24.25743623,,,,,0.565992524,5905,10433,0.534529194,0.597455853,0.162356979,1419,8740,0.123692893,0.201021066,0.611233586,6377,10433,0.563840859,0.658626312,27738,,,,,0.25120773,6968,27738,,,0.179501046,4979,27738,,,0.459550076,12747,27738,,,0.031905689,885,27738,,,0.006164828,171,27738,,,0.000396568,11,27738,,,0.034573509,959,27738,,,0.44877064,12448,27738,,,0.008348264,219,26233,0.001924565,0.014771963,0.52927392,14681,27738,,,0.700127245,19808,28292,, -45,035,45035,SC,Dorchester County,2024,1,8223.299455,2227,465172,7722.879684,8723.719226,0,11355.50417,5445.405633,20883.17647,1,,,,2,10198.46966,9092.11634,11304.82298,,6591.358193,4892.233098,8689.884054,,7874.068733,7257.256159,8490.881307,,,,,2,,0.158,,,0.136,0.185,3.555443274,,,2.845058858,4.283210791,5.331291355,,,4.468082966,6.203986487,0.088991033,1181,13271,0.084146648,0.093835419,0,,,,0.083969466,0.050386341,0.11755259,0.156616176,0.144573721,0.168658631,0.068198666,0.054746268,0.081651063,0.061105979,0.055712642,0.066499316,,,,0.091101695,0.06514162,0.11706177,0.17,,,0.14,0.205,0.408,,,0.351,0.466,8.5,0.068390339,0.078,,,0.234,,,0.197,0.277,0.62967067,101717,161540,,,0.178365945,,,0.146292921,0.212765642,0.330275229,36,109,0.281719118,0.379044211,731.7,1195,163327,,,17.0430927,615,36085,15.6960948,18.3900906,,,,,,,20.16401351,17.43025651,22.89777051,42.77456647,34.8170014,50.73213154,11.84892619,10.34983019,13.34802219,,,,25.32357907,18.47119234,33.88494119,0.114745108,15693,136764,0.100447236,0.129042981,0.00031838,52,163327,,,3140.903846,0.000764448,127,166133,,,1308.133858,0.001498799,249,166133,,,667.2008032,2536,,,,,,,3448,,2332,0.46,,,,,,0.43,0.5,0.18,0.46,0.41,,,,,,0.46,0.33,0.32,0.42,0.906082933,99487,109799,0.893854751,0.918311115,0.676293326,30185,44633,0.634812436,0.717774215,0.029013588,2306,79480,,,0.146,5672,,0.10787234,0.18412766,,,,0.102850062,0,0.27023871,0.358025856,0.292996546,0.423055167,0.124003543,0.055742979,0.192264107,0.14242685,0.105840331,0.179013369,4.152950085,142604,34338,3.82254034,4.483359829,0.293606885,11463,39042,0.256607025,0.330606745,5.939005798,97,163327,,,83.0679773,672,808976,76.78732038,89.34863421,,,,,,,74.01380284,62.20841345,85.81919223,55.17475543,36.04198208,80.84380044,94.26078168,85.87166492,102.6498985,,,,8.3,,,,,0,,,,,0.152353354,8675,56940,0.134433159,0.17027355,0.132053675,0.114554685,0.149552664,0.02537759,0.016288116,0.034467065,0.002107482,0.000510605,0.003704359,0.831255906,64222,77259,0.817123477,0.845388334,,,,0.644903398,0.500182518,0.789624278,0.795802798,0.747857833,0.843747763,0.730907637,0.647421676,0.814393598,0.778830806,0.758937477,0.798724135,0.533,,77259,0.500962449,0.565037552,76.9674871,,,76.51735515,77.41761905,,,,92.83358589,81.55792577,104.109246,74.8524339,73.91338356,75.79148424,79.62180118,77.1194151,82.12418726,77.27734389,76.73434457,77.82034321,,,,393.3152151,2227,465172,376.5781811,410.052249,574.7823878,346.0565448,897.5938981,,,,482.1689881,444.1286051,520.209371,255.4658375,191.9137996,333.3275026,381.5670516,361.3565848,401.7775184,,,,54.68518206,94,171893,44.19119359,66.92081337,,,,,,,78.80393144,55.19330477,109.097858,67.83800285,32.5309592,124.7565026,45.25026482,32.87891169,60.74636844,,,,5.990323324,78,13021,4.735102005,7.476194613,,,,,,,10.23092663,7.126215259,14.22874229,,,,4.24403183,2.90291463,5.991306642,,,,,,,0.11,,,0.096,0.127,0.169,,,0.148,0.194,0.111,,,0.096,0.128,324.7,442,136106,,,0.078,12570,,,,0.068390339,9339.042764,136555,,,26.22628199,129,491873,21.70045505,30.75210892,,,,,,,12.08926715,6.766271052,19.93940768,,,,35.0140056,28.44068796,41.58732325,,,,0.383,,,0.367,0.397,0.1362932,13369,98090,0.11842086,0.154165541,0.061559305,2499,40595,0.043686965,0.079431646,0.000812602,135,166133,,,1230.614815,0.92467668,1816.065,1964,,,0.102832796,893,8684,0.052995397,0.152670195,3.263242932,,,,,,3.844875084,2.724139896,2.886516769,3.59609471,3.036141873,,,,,,3.648129859,2.57366474,2.781716673,3.310311387,0.041439032,,,,,-2279.2725,,,,,0.736559489,45403,61642,0.685448239,0.787670739,74730,,,68054.08511,81405.91489,63988,22247.74468,105728.2553,116242,97530.85106,134953.1489,54099,49104.2766,59093.7234,64176,47682.21277,80669.78723,82669,76962.95745,88375.04255,,,,,,0.541780723,15042,27764,,,32.88647023,,,,,0.249391141,,74730,,,3.969105342,37,9322,,,7.711434533,86,1115227,6.168152246,9.523558915,,,,,,,18.83834919,14.11121626,24.64102457,,,,3.929890749,2.611383863,5.679786318,,,,16.51332771,136,808976,13.69154156,19.33511386,16.81137636,,,,,,,8.475821093,4.93747813,13.57061064,,,,19.67201008,15.82578391,23.51823625,,,,15.94608493,129,808976,13.19429492,18.69787493,,,,,,,20.09646302,14.42156883,27.26312131,,,,15.35381805,12.15576234,19.13543839,,,,17.39556162,194,1115227,14.94766169,19.84346156,,,,,,,22.3927547,17.20720755,28.65006071,,,,17.54415513,14.46852913,20.61978113,,,,,,19000,,,,,0.656790753,77278,117660,,,0.671,,,,,54.80834296,,,,,0.7483049,44697,59731,0.728218887,0.768390913,0.126597199,7411,58540,0.108996161,0.144198237,0.867606436,51823,59731,0.850528862,0.884684009,166133,,,,,0.237466367,39451,166133,,,0.153678077,25531,166133,,,0.255566323,42458,166133,,,0.00695828,1156,166133,,,0.023216339,3857,166133,,,0.002130823,354,166133,,,0.065634161,10904,166133,,,0.622585519,103432,166133,,,0.012532477,1915,152803,0.008276237,0.016788716,0.51243281,85132,166133,,,0.14718336,23776,161540,, -45,037,45037,SC,Edgefield County,2024,1,9800.837172,487,74200,8267.736153,11333.93819,0,,,,2,,,,2,13293.68068,10208.31157,16379.04979,,,,,2,8889.223734,6939.179853,10839.26762,,,,,2,,0.203,,,0.175,0.235,4.078050994,,,3.287094357,4.953849971,5.223848217,,,4.25040031,6.255512443,0.106758833,139,1302,0.089984824,0.123532841,0,,,,,,,0.161354582,0.129174729,0.193534435,0.103773585,0.045716474,0.161830696,0.068181818,0.04895161,0.087412026,,,,,,,0.203,,,0.167,0.246,0.367,,,0.303,0.437,7.7,0.120665929,0.089,,,0.295,,,0.248,0.35,0.518416027,13301,25657,,,0.159041412,,,0.129152774,0.19422234,0.344827586,10,29,0.246908102,0.441557488,512.4,134,26153,,,19.74902284,96,4861,15.9967719,24.11693705,,,,,,,28.52348993,21.23761177,37.50312158,,,,13.59003398,9.518292721,18.81433541,,,,,,,0.137528763,2570,18687,0.118464934,0.156592593,0.000344129,9,26153,,,2905.888889,0.000259914,7,26932,,,3847.428571,0.00066835,18,26932,,,1496.222222,3224,,,,,,,2114,,3804,0.46,,,,,,,0.44,,0.47,0.31,,,,,,,0.22,0.33,0.34,0.83001884,15860,19108,0.80509335,0.854944331,0.471289753,3201,6792,0.406018407,0.536561098,0.032724431,335,10237,,,0.238,1051,,0.158170213,0.317829787,,,,,,,0.347124825,0.256052548,0.438197101,0.175487465,0,0.403295289,0.136268344,0.058647055,0.213889633,5.822715842,125037,21474,4.87359111,6.771840575,0.362494491,1645,4538,0.290582373,0.434406609,9.941498107,26,26153,,,77.45125784,104,134278,62.56560532,92.33691036,,,,,,,73.71273713,51.0482133,103.0061617,,,,85.94085707,66.46665263,109.3378419,,,,7.7,,,,,0,,,,,0.122682661,1125,9170,0.09355757,0.151807751,0.099944782,0.07185255,0.128037014,0.013086151,0.003734546,0.022437756,0.015812432,0.003163247,0.028461617,0.80907441,8916,11020,0.765621244,0.852527576,,,,,,,0.820722892,0.702309203,0.93913658,,,,0.84211682,0.810226367,0.874007274,0.422,,11020,0.362163978,0.481836022,76.3286782,,,75.04187701,77.61547939,,,,,,,72.05376371,69.86602553,74.24150189,,,,77.62090192,75.89900303,79.3428008,,,,456.5125296,487,74200,412.9948273,500.0302319,,,,,,,609.8581608,521.8599171,697.8564044,,,,412.727166,358.3469898,467.1073423,,,,75.11737089,16,21300,42.93606786,121.9859042,,,,,,,133.386688,63.96410159,245.3028684,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.131,,,0.114,0.152,0.181,,,0.158,0.208,0.131,,,0.113,0.151,544.9,126,23123,,,0.089,2310,,,,0.120665929,3256.170082,26985,,,18.62590491,15,80533,10.42477759,30.72059761,,,,,,,,,,,,,25.89387826,13.37974475,45.23139427,,,,0.372,,,0.359,0.385,0.161380662,2305,14283,0.137550875,0.18521045,0.061992304,290,4678,0.042928475,0.081056134,0.000779742,21,26932,,,1282.476191,0.825,163.35,198,,,0.15667466,196,1251,0.053347755,0.260001565,2.597201072,,,,,,,2.149381309,,3.002267649,2.49242426,,,,,,,2.128742636,,2.909567176,0.088889429,,,,,-1134.878,,,,,0.778840917,42897,55078,0.66626935,0.891412483,61318,,,52958.51064,69677.48936,,,,,,,28341,22486.02128,34195.97872,46152,32096,60208,86350,77871.3617,94828.6383,,,,,,0.528942116,2120,4008,,,36.14963977,,,,,0.23017711,,61318,,,4.184100418,4,956,,,8.549292012,16,187150,4.886659072,13.88351461,,,,,,,,,,,,,,,,,,,14.29594638,22,134278,8.732335446,22.07892971,16.38391993,,,,,,,,,,,,,19.35597286,10.83339108,31.92473367,,,,16.38391993,22,134278,10.26771539,24.80545167,,,,,,,,,,,,,19.53201297,10.93191939,32.21508506,,,,17.63291477,33,187150,12.13768719,24.76316819,,,,,,,21.55371494,11.78361652,36.16347126,,,,15.93326773,9.28171561,25.51070511,,,,,,2400,,,,,0.622409357,13304,21375,,,0.559,,,,,8.799671878,,,,,0.753270233,7083,9403,0.730075971,0.776464495,0.092747559,798,8604,0.064671121,0.120823997,0.735509944,6916,9403,0.698919495,0.772100392,26932,,,,,0.166493391,4484,26932,,,0.201953067,5439,26932,,,0.322144661,8676,26932,,,0.005940888,160,26932,,,0.007054805,190,26932,,,0.000631219,17,26932,,,0.074409624,2004,26932,,,0.576674588,15531,26932,,,0.030460271,769,25246,0.013751294,0.047169248,0.459156394,12366,26932,,,0.879837861,22574,25657,, -45,039,45039,SC,Fairfield County,2024,1,16555.04085,611,59602,14333.45713,18776.62457,0,,,,2,,,,2,16670.40304,13900.64003,19440.16604,,,,,2,19096.42276,14687.22903,23505.61649,,,,,2,,0.226,,,0.195,0.26,4.387909133,,,3.553256988,5.348992067,5.827125336,,,4.702639036,7.046302761,0.106060606,147,1386,0.089849765,0.122271447,0,,,,,,,0.125609756,0.102926078,0.148293435,,,,0.075975359,0.052442768,0.09950795,,,,,,,0.223,,,0.183,0.268,0.434,,,0.355,0.514,7.9,0.104856415,0.09,,,0.328,,,0.274,0.383,0.24565591,5146,20948,,,0.134605927,,,0.105364956,0.168440747,0.370967742,23,62,0.306721645,0.434206983,845.8,175,20690,,,24.55357143,99,4032,19.95593126,29.8930922,,,,,,,24.61767997,19.03931191,31.3197249,,,,23.31838565,15.23234369,34.16683774,,,,,,,0.103739051,1587,15298,0.0870582,0.120419902,0.000434993,9,20690,,,2298.888889,0.000244439,5,20455,,,4091,0.00112442,23,20455,,,889.3478261,2057,,,,,,,1837,,1951,0.46,,,,,,,0.44,,0.47,0.27,,,,,,,0.22,,0.29,0.84094622,12869,15303,0.806864791,0.875027648,0.488258751,2204,4514,0.403279862,0.573237639,0.047044763,433,9204,,,0.304,1096,,0.199148936,0.408851064,,,,,,,0.335699374,0.21146989,0.459928858,0.042857143,0,0.370832765,0.214684015,0.097573939,0.331794091,6.495112005,116269,17901,5.0302301,7.95999391,0.514314928,2012,3912,0.420589787,0.60804007,16.43305945,34,20690,,,136.2335952,150,110105,114.4316793,158.0355111,,,,,,,130.1351156,103.3460662,161.7460665,,,,162.6782978,126.5734258,205.8797975,,,,8.3,,,,,0,,,,,0.165861514,1545,9315,0.126026531,0.205696496,0.137298499,0.101066812,0.173530186,0.028448739,0.009604099,0.047293379,0.016639828,0,0.035733306,0.862084063,7876,9136,0.823788497,0.900379629,,,,,,,0.862338545,0.820335044,0.904342047,,,,0.833272126,0.758408569,0.908135684,0.586,,9136,0.510015107,0.661984893,70.32177733,,,68.89396331,71.74959135,,,,,,,69.67479342,67.86800555,71.4815813,,,,69.39490999,66.75296502,72.03685495,,,,689.7753623,611,59602,627.7754796,751.7752449,,,,,,,731.9178512,648.8969443,814.9387582,,,,718.8836121,607.3826054,830.3846188,,,,132.8977241,24,18059,85.15007949,197.7412791,,,,,,,131.4175574,73.55340926,216.7532756,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.14,,,0.122,0.16,0.192,,,0.167,0.218,0.147,,,0.127,0.169,579.5,105,18120,,,0.09,1900,,,,0.104856415,2511.940278,23956,,,35.3324321,23,65096,22.3977311,53.01599621,,,,,,,,,,,,,75.33404702,45.35601746,117.6434462,,,,0.392,,,0.377,0.406,0.123022997,1439,11697,0.101576189,0.144469806,0.042872173,163,3802,0.0285743,0.057170045,0.000684429,14,20455,,,1461.071429,0.775,124,160,,,,,,,,2.636218076,,,,,,,2.608278911,,2.906216524,2.618076743,,,,,,,2.668766955,,2.508165987,0.104579052,,,,,-10143.61,,,,,0.672336582,35732,53146,0.561882894,0.782790271,50743,,,44814.14894,56671.85106,,,,,,,33007,30454.82979,35559.17021,,,,67933,49992.74468,85873.25532,,,,,,0.987847903,2520,2551,,,24.01021969,,,,,0.27814674,,50743,,,4.352557127,4,919,,,19.29198418,30,155505,13.01622071,27.54050699,,,,,,,30.5471331,20.13075319,44.44447487,,,,,,,,,,11.77306498,14,110105,6.083314475,20.56517525,12.71513555,,,,,,,,,,,,,28.60238042,13.07882966,54.29622752,,,,25.43027111,28,110105,16.89823047,36.75382221,,,,,,,30.52552094,18.37835767,47.66938221,,,,,,,,,,43.08543134,67,155505,33.39061749,54.71697478,,,,,,,52.04326379,38.10221004,69.41842073,,,,35.14409077,21.7547461,53.72147594,,,,,,2000,,,,,0.671610404,12136,18070,,,0.485,,,,,5.781313922,,,,,0.751449687,6609,8795,0.71506398,0.787835395,0.128588808,1057,8220,0.089262609,0.167915006,0.768163729,6756,8795,0.723111098,0.813216361,20455,,,,,0.178929357,3660,20455,,,0.243119042,4973,20455,,,0.544365681,11135,20455,,,0.004742117,97,20455,,,0.008408702,172,20455,,,0.000293327,6,20455,,,0.029968223,613,20455,,,0.396333415,8107,20455,,,0.003552131,71,19988,0,0.009138019,0.51679296,10571,20455,,,0.772818408,16189,20948,, -45,041,45041,SC,Florence County,2024,1,14122.45739,3164,384117,13381.77024,14863.14454,0,,,,2,,,,2,17024.25826,15804.83684,18243.67968,,9977.886345,6630.233014,14420.82388,,12438.71836,11451.92189,13425.51483,,,,,2,,0.193,,,0.165,0.223,3.999780608,,,3.293861326,4.847443706,5.42457052,,,4.578409615,6.379523259,0.129624747,1475,11379,0.123453098,0.135796397,0,,,,0.098654709,0.059515851,0.137793566,0.171566008,0.161703142,0.181428873,0.088452089,0.060865204,0.116038973,0.086591607,0.078704928,0.094478286,,,,0.128440367,0.084025625,0.172855109,0.191,,,0.157,0.226,0.397,,,0.343,0.455,8.1,0.074749014,0.092,,,0.301,,,0.258,0.348,0.461895972,63307,137059,,,0.149114839,,,0.120480445,0.180990428,0.364130435,67,184,0.327859004,0.400238074,906.9,1238,136504,,,26.7054555,817,30593,24.87421648,28.53669451,,,,,,,32.85900873,29.91325402,35.80476344,27.23404255,18.62806495,38.4463422,20.07795837,17.69621867,22.45969808,,,,38.88888889,25.84138424,56.20527214,0.115033874,12463,108342,0.101927491,0.128140257,0.000988982,135,136504,,,1011.140741,0.000592447,81,136721,,,1687.91358,0.002801325,383,136721,,,356.9738903,4652,,,,,,,6033,1352,4152,0.49,,,,,,0.45,0.49,0.27,0.49,0.41,,,,,,0.57,0.33,0.27,0.44,0.872900953,80780,92542,0.86016822,0.885633687,0.618234546,20892,33793,0.577242215,0.659226876,0.03245473,2140,65938,,,0.288,9097,,0.237957447,0.338042553,,,,0.065789474,0,0.285388804,0.374502256,0.330225282,0.418779231,0.476036269,0.374646961,0.577425578,0.058646163,0.040087952,0.077204374,5.452290439,114738,21044,4.910183944,5.994396934,0.339107987,10903,32152,0.298981047,0.379234927,11.72126824,160,136504,,,102.1607581,704,689110,94.61411433,109.7074018,,,,,,,95.61072196,84.45139211,106.7700518,92.18477927,54.63454256,145.6916945,113.4185485,102.3035307,124.5335662,,,,7.7,,,,,0,,,,,0.13417171,7095,52880,0.118014905,0.150328514,0.11373536,0.097161272,0.130309447,0.024016642,0.016976594,0.031056689,0.006429652,0.002435036,0.010424268,0.812250155,48562,59787,0.79364733,0.83085298,,,,0.801041667,0.670107506,0.931975828,0.802783093,0.777351912,0.828214273,0.727745665,0.606372292,0.849119038,0.850087546,0.829558579,0.870616513,0.266,,59787,0.242319617,0.289680383,71.29251414,,,70.78657523,71.79845305,,,,83.308204,77.92243361,88.69397439,69.10206694,68.30807722,69.89605666,87.62847969,69.56750698,105.6894524,72.53654553,71.85255569,73.22053538,,,,646.0775591,3164,384117,622.5351968,669.6199214,,,,,,,772.8942095,732.5861038,813.2023152,361.6919039,245.7521006,513.3927865,582.8956516,552.3367443,613.4545589,,,,102.5914891,146,142312,85.9500463,119.2329319,,,,,,,131.5031251,105.6078077,161.8259111,,,,76.95708415,56.54517081,102.3366076,,,,11.83637946,136,11490,9.847055576,13.82570334,,,,,,,15.30073866,12.25526443,18.87340461,,,,7.260992336,5.085509766,10.052274,,,,,,,0.125,,,0.109,0.143,0.182,,,0.159,0.207,0.132,,,0.114,0.151,699,798,114163,,,0.092,12620,,,,0.074749014,10232.01879,136885,,,30.06898893,124,412385,24.77645009,35.36152777,,,,,,,18.62008261,12.8172081,26.14951885,,,,42.46912638,34.10619579,52.26191445,,,,0.385,,,0.371,0.399,0.14212331,10984,77285,0.124250969,0.15999565,0.049629766,1622,32682,0.035331893,0.063927638,0.001901683,260,136721,,,525.85,0.854771812,1273.61,1490,,,0.082307373,595,7229,0.053029874,0.111584872,2.767261318,,,,,,3.638553089,2.488802566,2.524604099,3.21302963,2.697859825,,,,,,3.669592446,2.379800914,2.7089388,3.174282544,0.077420547,,,,,-13594.5702,,,,,0.749170144,40399,53925,0.703117847,0.795222441,52650,,,46675.87234,58624.12766,18864,2802.723404,34925.2766,109813,20715.80851,198910.1915,42050,38693.57447,45406.42553,41513,25642.3617,57383.6383,68369,63512.48936,73225.51064,,,,,,0.850219226,18034,21211,,,33.43807807,,,,,0.353979107,,52650,,,7.4828263,61,8152,,,14.06772368,136,966752,11.70338086,16.43206649,,,,,,,25.24051297,20.38944255,30.09158338,,,,5.819413564,3.897352596,8.357648604,,,,10.65737376,75,689110,8.323497326,13.44282686,10.88360349,,,,,,,3.865376151,1.997296263,6.752034245,,,,15.96790865,11.99558443,20.83465705,,,,23.0732394,159,689110,19.48677865,26.65970014,,,,,,,33.22642111,26.97481474,40.4923648,,,,16.7292359,12.73506948,21.57949545,,,,26.48042104,256,966752,23.23656946,29.72427262,,,,,,,27.18209089,22.1478972,32.21628457,,,,27.49171235,22.88811238,32.09531233,,,,,,15100,,,,,0.622352998,64510,103655,,,0.591,,,,,48.41909188,,,,,0.646791976,33791,52244,0.630221391,0.663362561,0.134128595,6544,48789,0.117610132,0.150647057,0.776644208,40575,52244,0.76024753,0.793040886,136721,,,,,0.234404371,32048,136721,,,0.18117919,24771,136721,,,0.433488637,59267,136721,,,0.00468838,641,136721,,,0.016983492,2322,136721,,,0.000650961,89,136721,,,0.031136402,4257,136721,,,0.49988663,68345,136721,,,0.006697415,864,129005,0.004227257,0.009167573,0.530167275,72485,136721,,,0.39208662,53739,137059,, -45,043,45043,SC,Georgetown County,2024,1,13144.29427,1451,168329,11956.28604,14332.30251,0,,,,2,,,,2,15155.69692,13070.29081,17241.10302,,,,,2,12707.12727,11134.99236,14279.26218,,,,,2,,0.172,,,0.147,0.198,3.94140142,,,3.21031182,4.731233566,5.51686489,,,4.641277443,6.443065831,0.102656337,371,3614,0.092760915,0.112551758,0,,,,,,,0.145126354,0.126575868,0.16367684,0.08411215,0.046924417,0.121299882,0.076923077,0.065056143,0.088790011,,,,,,,0.176,,,0.141,0.211,0.382,,,0.326,0.439,7.8,0.096622703,0.096,,,0.243,,,0.204,0.285,0.697400795,44218,63404,,,0.144002036,,,0.116475159,0.174334927,0.194029851,13,67,0.133309103,0.261264716,459.9,294,63921,,,17.76422035,198,11146,15.28982194,20.23861876,,,,,,,21.62670428,17.43417602,26.52323296,23.57563851,12.18187644,41.18189597,14.40397351,11.53699231,17.76724811,,,,,,,0.135651579,5949,43855,0.117779239,0.15352392,0.000625772,40,63921,,,1598.025,0.000525324,34,64722,,,1903.588235,0.000911591,59,64722,,,1096.983051,2995,,,,,,,5203,,2602,0.46,,,,,,0.31,0.45,0.44,0.47,0.45,,,,,,0.67,0.27,0.52,0.47,0.908538362,43648,48042,0.894270058,0.922806666,0.630479821,7608,12067,0.558047132,0.702912511,0.037349351,970,25971,,,0.263,2782,,0.176021277,0.349978723,,,,,,,0.470319635,0.375217031,0.565422238,0.545454546,0.41333091,0.677578181,0.169798191,0.118930123,0.220666258,5.106454284,129515,25363,4.345768443,5.867140125,0.399476156,4423,11072,0.321230093,0.477722219,15.95719717,102,63921,,,120.7737166,379,313810,108.6144075,132.9330256,,,,,,,123.6851842,101.2731735,146.0971949,,,,122.662663,107.4572417,137.8680842,,,,7.1,,,,,0,,,,,0.131987578,3400,25760,0.113301372,0.150673783,0.117159763,0.099561284,0.134758243,0.010869565,0.002048985,0.019690145,0.007181677,0.002594331,0.011769024,0.763941612,19521,25553,0.738734008,0.789149215,,,,,,,0.812124249,0.756025229,0.868223268,,,,0.791700149,0.763291158,0.82010914,0.411,,25553,0.363444795,0.458555205,73.82695486,,,72.98911107,74.66479865,,,,,,,70.91686034,69.54846927,72.28525142,,,,74.44564467,73.33766344,75.55362591,,,,548.6755525,1451,168329,514.8954093,582.4556957,,,,,,,679.7194886,612.688605,746.7503721,,,,515.6128819,473.6781356,557.5476282,,,,68.80919615,34,49412,47.65236862,96.1539547,,,,,,,62.41872562,32.25266637,109.0329521,,,,66.57528882,38.78255911,106.5934867,,,,5.703422053,21,3682,3.530508143,8.718286457,,,,,,,,,,,,,,,,,,,,,,0.118,,,0.101,0.135,0.175,,,0.151,0.199,0.107,,,0.092,0.122,375.3,212,56494,,,0.096,6050,,,,0.096622703,5812.62854,60158,,,45.274119,86,189954,36.21345128,55.91316865,,,,,,,30.17715767,17.5793064,48.31655273,,,,54.73541865,42.50419431,69.39018558,,,,0.363,,,0.349,0.377,0.160638586,5343,33261,0.138000288,0.183276884,0.058954891,660,11195,0.039891061,0.07801872,0.000849788,55,64722,,,1176.763636,0.87,591.6,680,,,,,,,,2.767081734,,,,,,,2.452573049,2.501802733,3.165230934,2.710883833,,,,,,,2.370772384,2.506344705,3.117466419,0.094945085,,,,,-6990.66,,,,,0.738723274,38732,52431,0.644029166,0.833417383,59457,,,53611.55319,65302.44681,,,,,,,37238,30639.53192,43836.46809,35694,710.6808511,70677.31915,71443,65347.34043,77538.65957,,,,,,0.794219515,6650,8373,,,58.47378132,,,,,0.237381637,,59457,,,10.02971768,27,2692,,,10.76729583,47,436507,7.911403979,14.31822086,,,,,,,23.24273665,15.79231189,32.99120938,,,,4.966811059,2.715401824,8.333464997,,,,13.27203264,42,313810,9.19126842,18.54633532,13.38389471,,,,,,,,,,,,,16.8435818,10.90027805,24.86444944,,,,19.11984959,60,313810,14.5904595,24.61103643,,,,,,,24.31418151,15.41310538,36.48321042,,,,15.70082086,10.73934984,22.16487436,,,,23.13823146,101,436507,18.6256449,27.65081802,,,,,,,32.98969072,23.97035978,44.28711999,,,,20.22201645,15.31595778,26.19996786,,,,,,5400,,,,,0.734167584,36668,49945,,,0.483,,,,,44.30247983,,,,,0.817588075,21281,26029,0.792143441,0.843032709,0.112346611,2829,25181,0.094090714,0.130602507,0.81831803,21300,26029,0.796100431,0.840535629,64722,,,,,0.16629585,10763,64722,,,0.309863725,20055,64722,,,0.281681654,18231,64722,,,0.003569111,231,64722,,,0.006628349,429,64722,,,0.000803436,52,64722,,,0.033110843,2143,64722,,,0.66696023,43167,64722,,,0.002133911,130,60921,0,0.004891649,0.525756312,34028,64722,,,0.421866128,26748,63404,, -45,045,45045,SC,Greenville County,2024,1,8508.559827,7504,1486120,8225.810943,8791.308712,0,,,,2,2096.469635,1381.5867,3050.25325,,12816.89566,11993.77519,13640.01613,,5436.106276,4721.627023,6150.585529,,8082.644917,7745.447843,8419.841992,,,,,2,,0.142,,,0.12,0.167,3.421800195,,,2.787782594,4.164865363,4.972282654,,,4.245324722,5.782604742,0.085397039,3807,44580,0.082802718,0.08799136,0,,,,0.078547297,0.063222937,0.093871658,0.152401331,0.144720717,0.160081946,0.074430451,0.068310917,0.080549986,0.067251462,0.064245878,0.070257046,,,,0.088733799,0.071135415,0.106332182,0.146,,,0.116,0.178,0.33,,,0.287,0.375,8.1,0.1006816,0.081,,,0.229,,,0.194,0.269,0.822340705,432168,525534,,,0.166394251,,,0.139953841,0.196364108,0.29,116,400,0.264965794,0.315356213,644,3438,533834,,,17.5290465,1993,113697,16.7594542,18.2986388,,,,,,,24.95139339,22.8449175,27.05786928,42.51833915,39.10762598,45.92905232,10.36879433,9.617127052,11.1204616,,,,32.33125355,26.39617885,38.26632824,0.12181502,53096,435874,0.112283105,0.131346935,0.001116452,596,533834,,,895.6946309,0.000680719,373,547950,,,1469.034853,0.002921799,1601,547950,,,342.2548407,1888,,,,,,893,3160,753,1721,0.52,,,,,,0.36,0.52,0.28,0.52,0.52,,,,,,0.51,0.41,0.31,0.53,0.900979847,325415,361179,0.894876037,0.907083656,0.711028441,100725,141661,0.690013913,0.732042969,0.02803893,7286,259853,,,0.131,15944,,0.096446809,0.165553192,0.20977918,0.093597678,0.325960682,0.059259259,0.016059854,0.102458665,0.341588587,0.288324786,0.394852388,0.277492121,0.22614504,0.328839203,0.06074616,0.050827449,0.07066487,4.389707493,140317,31965,4.216965752,4.562449233,0.22245305,26770,120340,0.20354702,0.24135908,11.91381591,636,533834,,,99.8501673,2607,2610912,96.01720672,103.6831279,,,,20.36393257,11.13315143,34.16721861,98.90220696,89.87379034,107.9306236,47.68621668,39.11829558,56.25413778,112.8335314,107.8896196,117.7774431,,,,8.5,,,,,0,,,,,0.125066283,24765,198015,0.116622357,0.133510209,0.103707108,0.095814613,0.111599603,0.019922733,0.016503658,0.023341808,0.009191223,0.006610511,0.011771935,0.773568111,199012,257265,0.762935517,0.784200705,0.658373206,0.485979663,0.830766748,0.723577236,0.677155201,0.769999271,0.756976871,0.72626869,0.787685051,0.738750353,0.701709994,0.775790711,0.802031526,0.79131883,0.812744222,0.306,,257265,0.293732866,0.318267134,76.83445809,,,76.59192485,77.07699133,,,,87.51491841,84.47134008,90.55849675,72.73020548,72.08068964,73.37972132,83.4066923,81.68103765,85.13234694,77.20540949,76.92327907,77.48753992,,,,405.5158872,7504,1486120,396.0500261,414.9817483,,,,123.9941955,92.32182287,163.029468,605.9705386,577.7262831,634.2147941,224.5336716,196.3242015,252.7431416,388.9359372,377.8922858,399.9795885,,,,55.83430934,297,531931,49.48423229,62.18438639,,,,,,,103.7075447,84.14818896,123.2669005,48.62132941,34.40734649,66.73657337,46.3377221,38.7953709,53.8800733,,,,5.845980888,260,44475,5.135378294,6.556583482,,,,,,,11.48616971,9.325027787,13.99796183,5.351568307,3.74817265,7.408826295,4.32625965,3.538960726,5.113558574,,,,,,,0.104,,,0.089,0.12,0.158,,,0.137,0.181,0.096,,,0.083,0.111,359.5,1610,447893,,,0.081,42050,,,,0.1006816,45430.05473,451225,,,36.35535663,578,1589862,33.391477,39.31923625,,,,,,,33.93161366,27.48471601,41.43630789,8.993152357,4.916640079,15.08898154,43.1589365,39.23187398,47.08599903,,,,0.346,,,0.332,0.361,0.148239024,46762,315450,0.135132641,0.161345407,0.055055253,6945,126146,0.04314036,0.066970147,0.001857834,1018,547950,,,538.2612967,0.84191029,4532.845,5384,,,0.054453818,1491,27381,0.041510981,0.067396656,3.113009743,,,,,,3.735027961,2.580278092,2.657696586,3.485813965,3.089042683,,,,,,3.809664358,2.516486486,2.8134002,3.423415805,0.114377402,,,,,-3345.52,,,,,0.775287233,46763,60317,0.744957481,0.805616984,71833,,,68291.89362,75374.10638,53622,43961.40426,63282.59575,97687,83042.40426,112331.5957,46136,44027.06383,48244.93617,59754,54561.48936,64946.51064,80075,77820.70213,82329.29787,,,,,,0.535358456,46157,86217,,,42.45218939,,,,,0.259449,,71833,,,4.910447291,156,31769,,,7.052536678,254,3601541,6.185206282,7.919867074,,,,,,,21.4020515,17.83119882,24.97290417,3.257502621,1.626133572,5.828572004,4.110884809,3.309150088,4.91261953,,,,16.379744,440,2610912,14.81785232,17.94163568,16.85234891,,,,,,,10.52577801,7.78702852,13.91563674,7.859188863,4.492205495,12.76283033,19.40288744,17.33773229,21.46804259,,,,16.27783702,425,2610912,14.73023851,17.82543552,,,,,,,27.67545488,22.89954653,32.45136322,7.213041179,4.274905341,11.39971479,15.39407999,13.56796346,17.22019652,,,,17.35368277,625,3601541,15.99315404,18.7142115,,,,,,,22.4876628,18.82736526,26.14796035,13.32614709,9.720183127,17.83143327,17.46108498,15.80874789,19.11342207,,,,,,55400,,,,,0.690244783,258155,374005,,,0.665,,,,,77.19875636,,,,,0.689330589,145000,210349,0.679467115,0.699194062,0.112231189,23057,205442,0.104339751,0.120122628,0.899024954,189109,210349,0.893517477,0.90453243,547950,,,,,0.22623962,123968,547950,,,0.169263619,92748,547950,,,0.17491012,95842,547950,,,0.005099005,2794,547950,,,0.028641299,15694,547950,,,0.000819418,449,547950,,,0.103173647,56534,547950,,,0.671553974,367978,547950,,,0.023430152,11633,496497,0.021141171,0.025719132,0.513318734,281273,547950,,,0.118960905,62518,525534,, -45,047,45047,SC,Greenwood County,2024,1,12216.46041,1376,193826,11253.8774,13179.04342,0,,,,2,,,,2,14926.66498,13079.2554,16774.07456,,5462.572683,3182.14989,8746.108033,1,11547.49087,10330.23059,12764.75115,,,,,2,,0.188,,,0.162,0.218,4.008638983,,,3.227394876,4.811388529,5.500849692,,,4.578611147,6.410883694,0.110930736,615,5544,0.102663921,0.119197551,0,,,,,,,0.166749134,0.150497666,0.183000602,0.078559738,0.057225896,0.09989358,0.078170029,0.068184021,0.088156036,,,,,,,0.191,,,0.156,0.229,0.403,,,0.345,0.462,8.4,0.041469156,0.096,,,0.273,,,0.233,0.319,0.749462877,51976,69351,,,0.144752533,,,0.116507705,0.17541734,0.328358209,22,67,0.265527727,0.391458356,798.7,553,69241,,,25.91331448,449,17327,23.51638164,28.31024733,,,,,,,29.26609635,25.15835052,33.37384219,53.55776588,41.75090597,67.66701517,19.82680037,16.88079129,22.77280944,,,,,,,0.138442475,7374,53264,0.120570135,0.156314816,0.001169827,81,69241,,,854.8271605,0.000563039,39,69267,,,1776.076923,0.003926834,272,69267,,,254.6580882,2921,,,,,,,3900,,2668,0.5,,,,,,0.33,0.49,0.27,0.51,0.48,,,,,,0.46,0.39,0.44,0.5,0.868870417,40452,46557,0.850210333,0.8875305,0.560004921,9104,16257,0.506811809,0.613198033,0.036817062,1091,29633,,,0.246,3716,,0.17212766,0.31987234,,,,,,,0.420579981,0.336872193,0.50428777,0.547764228,0.366558751,0.728969705,0.113873073,0.075206108,0.152540038,4.844862932,101621,20975,4.279976779,5.409749085,0.373840265,5762,15413,0.320487307,0.427193223,13.57577158,94,69241,,,113.8486523,401,352222,102.7054047,124.9918998,,,,,,,91.55125524,73.78400216,109.3185083,,,,139.4880644,123.4612715,155.5148573,,,,9.2,,,,,0,,,,,0.147989276,4140,27975,0.123523668,0.172454885,0.123701949,0.099594773,0.147809126,0.021090259,0.011776509,0.03040401,0.011438785,0.005629027,0.017248542,0.857469354,24762,28878,0.839255341,0.875683367,,,,,,,0.832147031,0.793625089,0.870668973,0.759650026,0.648693919,0.870606133,0.885345323,0.856428794,0.914261853,0.206,,28878,0.178569855,0.233430145,73.70515362,,,72.99780038,74.41250686,,,,,,,70.62625353,69.35588079,71.89662626,,,,74.51307488,73.62684516,75.39930461,,,,556.8508576,1376,193826,525.7837311,587.9179842,,,,,,,678.1535391,616.9657918,739.3412865,262.3035407,149.9291374,425.9645167,531.1882016,491.9985355,570.3778677,,,,58.32523261,42,72010,42.03569745,78.8387707,,,,,,,114.5792177,76.73550035,164.5548694,,,,,,,,,,8.868393047,50,5638,6.582292256,11.69187064,,,,,,,15.42168675,10.54842232,21.77082028,,,,,,,,,,,,,0.124,,,0.107,0.143,0.185,,,0.163,0.211,0.129,,,0.112,0.147,435,253,58157,,,0.096,6690,,,,0.041469156,2888.782883,69661,,,37.89206445,80,211126,30.04605051,47.15995423,,,,,,,18.02153574,9.311990492,31.47999617,,,,52.84058157,40.86690196,67.22617566,,,,0.38,,,0.365,0.393,0.170761767,6512,38135,0.14693198,0.194591555,0.058808683,932,15848,0.039744853,0.077872512,0.001631369,113,69267,,,612.9823009,0.843010204,660.92,784,,,0.092905832,368,3961,0.032487511,0.153324152,2.746893687,,,,,,,2.324577138,2.467615524,3.251446793,2.576973433,,,,,,,2.092556781,2.426086155,3.115542707,0.060801171,,,,,-5031.496,,,,,0.847821832,38982,45979,0.783512995,0.912130668,49867,,,44788.87234,54945.12766,36250,28450.51064,44049.48936,145921,89992.48936,201849.5106,35130,32304.97872,37955.02128,42598,33696.38298,51499.61702,57014,53449.06383,60578.93617,,,,,,0.905758657,9390,10367,,,37.47817216,,,,,0.283032867,,49867,,,4.859086492,20,4116,,,7.923720979,39,492193,5.634540209,10.83198743,,,,,,,19.89143129,13.51526249,28.23429893,,,,,,,,,,16.88505177,55,352222,12.61056428,22.14249894,15.61515181,,,,,,,,,,,,,25.19506925,18.23379654,33.93759293,,,,18.17035847,64,352222,13.99339012,23.20314211,,,,,,,26.02927845,17.43221629,37.38238575,,,,16.77691497,11.68573598,23.33262744,,,,23.16164594,114,492193,18.90984362,27.41344826,,,,,,,31.44129461,23.26044284,41.56705889,,,,20.85962159,15.95595767,26.79505658,,,,,,7300,,,,,0.603658997,32006,53020,,,0.623,,,,,32.57188414,,,,,0.650615051,17983,27640,0.62230026,0.678929842,0.1262226,3265,25867,0.102269091,0.15017611,0.787988423,21780,27640,0.765617373,0.810359472,69267,,,,,0.222227035,15393,69267,,,0.196846983,13635,69267,,,0.311158272,21553,69267,,,0.006280047,435,69267,,,0.012516783,867,69267,,,0.001256009,87,69267,,,0.069282631,4799,69267,,,0.590974057,40935,69267,,,0.012543405,820,65373,0.007534227,0.017552583,0.530598987,36753,69267,,,0.396821964,27520,69351,, -45,049,45049,SC,Hampton County,2024,1,16059.20537,493,50962,13804.35718,18314.05356,0,,,,2,,,,2,17634.48286,14332.62841,20936.3373,,,,,2,15148.92146,11738.50205,18559.34087,,,,,2,,0.241,,,0.21,0.274,4.583411805,,,3.753258425,5.493696475,5.510904237,,,4.496517211,6.645844709,0.132331903,185,1398,0.114569097,0.150094709,0,,,,,,,0.170951157,0.144497096,0.197405218,,,,0.079854809,0.05722093,0.102488689,,,,,,,0.231,,,0.194,0.27,0.418,,,0.344,0.491,8.1,0.065559479,0.096,,,0.346,,,0.293,0.399,0.407575023,7565,18561,,,0.134417314,,,0.106283349,0.166540236,0.194444444,7,36,0.111619251,0.289384315,929.6,169,18180,,,35.17716034,138,3923,29.30798199,41.04633868,,,,,,,36.40449438,28.91042337,45.24746255,,,,33.03509979,24.35747476,43.79974961,,,,,,,0.129289877,1797,13899,0.110226047,0.148353707,0.000330033,6,18180,,,3030,0.000276045,5,18113,,,3622.6,0.001214597,22,18113,,,823.3181818,3487,,,,,,,3744,,3357,0.41,,,,,,,0.48,,0.37,0.26,,,,,,,0.23,,0.27,0.809238925,10686,13205,0.769014048,0.849463802,0.360384301,1763,4892,0.287864605,0.432903997,0.028946697,227,7842,,,0.298,1085,,0.181234043,0.414765957,,,,,,,0.386407767,0.305187659,0.467627875,0.167464115,0,0.534374716,0.126206385,0.054905187,0.197507582,4.115301344,81734,19861,3.24482525,4.985777438,0.356735751,1377,3860,0.270133904,0.443337598,10.45104511,19,18180,,,117.5747818,111,94408,95.70176113,139.4478025,,,,,,,103.3853639,76.97719408,135.9326604,,,,134.9287169,101.070868,176.4900838,,,,8.6,,,,,0,,,,,0.077592458,535,6895,0.053881458,0.101303459,0.059064328,0.03744163,0.080687025,0.010152284,0.001684241,0.018620328,0.008701958,0.00125937,0.016144546,0.827855153,5944,7180,0.787122114,0.868588193,,,,,,,0.782894737,0.70994965,0.855839824,,,,0.909313726,0.867081598,0.951545853,0.477,,7180,0.396594329,0.557405671,70.29563428,,,68.78169602,71.80957254,,,,,,,68.74353962,66.57891655,70.90816268,,,,71.27588404,69.01641899,73.5353491,,,,715.2072541,493,50962,647.9144267,782.5000816,,,,,,,768.1565929,671.3329817,864.9802042,,,,684.6553061,583.2374035,786.0732088,,,,124.0345041,22,17737,77.73176339,187.7897299,,,,,,,145.4696592,79.52961634,244.0733699,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.147,,,0.128,0.166,0.195,,,0.172,0.221,0.155,,,0.135,0.176,755.5,117,15486,,,0.096,1840,,,,0.065559479,1382.649419,21090,,,19.83590298,11,55455,9.902011302,35.49190968,,,,,,,,,,,,,,,,,,,0.406,,,0.394,0.418,0.159719479,1617,10124,0.134698202,0.184740755,0.049472627,197,3982,0.032791776,0.066153478,0.00104897,19,18113,,,953.3157895,0.854624278,147.85,173,,,0.182817183,183,1001,0.068510569,0.297123797,2.622559136,,,,,,,2.455978162,,3.004170343,2.800996763,,,,,,,2.470141579,,3.467109135,0.120468776,,,,,-15546.323,,,,,0.772778896,29939,38742,0.61185856,0.933699232,43987,,,39026.82979,48947.17021,,,,61696,37194.21277,86197.78723,33582,30036.12766,37127.87234,73092,16704.76596,129479.234,51689,47454.44681,55923.55319,,,,,,1,2455,2455,,,19.24017982,,,,,0.320867529,,43987,,,4.672897196,5,1070,,,21.58075295,29,134379,14.45296894,30.99356108,,,,,,,29.79230507,18.4419064,45.54070301,,,,,,,,,,11.76889432,11,94408,5.643642279,21.64341568,11.65155495,,,,,,,,,,,,,,,,,,,26.48080671,25,94408,17.13698187,39.09089452,,,,,,,30.40745996,17.01882451,50.15248099,,,,,,,,,,35.71986694,48,134379,26.33701012,47.35936135,,,,,,,34.04834866,21.81541944,50.66124389,,,,39.47746196,24.74031523,59.76935183,,,,,,1900,,,,,0.63020657,9305,14765,,,0.403,,,,,5.860333475,,,,,0.748729531,5304,7084,0.713619109,0.783839954,0.118063932,783,6632,0.08521239,0.150915475,0.780350085,5528,7084,0.744729081,0.815971088,18113,,,,,0.204770055,3709,18113,,,0.200132502,3625,18113,,,0.512118368,9276,18113,,,0.004361508,79,18113,,,0.00745321,135,18113,,,0.000386463,7,18113,,,0.050405786,913,18113,,,0.41219014,7466,18113,,,0.020229114,362,17895,0.008460965,0.031997263,0.477226302,8644,18113,,,1,18561,18561,, -45,051,45051,SC,Horry County,2024,1,10958.21065,7133,989613,10523.8775,11392.5438,0,,,,2,3841.079771,2407.184243,5815.440934,1,15329.85242,13960.44083,16699.26401,,6192.773429,5049.755793,7335.791066,,10856.86896,10352.91528,11360.82264,,,,,2,,0.159,,,0.135,0.184,3.876043684,,,3.258222494,4.572038053,5.400594167,,,4.712682176,6.170800928,0.089438929,1991,22261,0.085690049,0.093187809,0,,,,0.083333333,0.053780336,0.11288633,0.16130719,0.149650676,0.172963703,0.067470665,0.058594668,0.076346662,0.074794792,0.070457597,0.079131987,,,,0.083094556,0.062617057,0.103572055,0.186,,,0.152,0.221,0.359,,,0.318,0.399,7.7,0.08367618,0.109,,,0.235,,,0.202,0.271,0.743827433,261105,351029,,,0.169919772,,,0.145558047,0.195841294,0.281337047,101,359,0.25483599,0.308254866,540,1974,365579,,,19.67034793,1302,66191,18.60187722,20.73881864,,,,,,,25.92281879,23.03241142,28.81322616,38.54116898,33.68522943,43.39710852,14.83127721,13.6945775,15.96797692,,,,29.60526316,23.51085234,36.79663896,0.166630416,44434,266662,0.151141054,0.182119778,0.000623668,228,365579,,,1603.416667,0.000428086,164,383101,,,2335.981707,0.001741055,667,383101,,,574.3643178,2690,,,,,,571,4967,1263,2596,0.46,,,,,,0.36,0.46,0.47,0.46,0.47,,,,,,0.45,0.33,0.41,0.48,0.915750297,244085,266541,0.90840893,0.923091665,0.598749968,46366,77438,0.569122156,0.628377779,0.038906191,5859,150593,,,0.203,12751,,0.158914894,0.247085106,0.012077295,0,0.106204377,0.379781421,0.171927755,0.587635086,0.403004771,0.339015339,0.466994203,0.352524472,0.276666408,0.428382536,0.130575444,0.09994056,0.161210328,4.047317477,112479,27791,3.869232527,4.225402427,0.327383946,20177,61631,0.288224769,0.366543124,8.17880677,299,365579,,,108.5375291,1913,1762524,103.6736977,113.4013606,,,,,,,112.0389732,98.06638969,126.0115568,52.63255092,39.86338008,68.19157455,116.2431104,110.5293144,121.9569064,,,,7.2,,,,,0,,,,,0.139076494,18945,136220,0.129264213,0.148888775,0.127209138,0.117119726,0.13729855,0.013250624,0.010068775,0.016432473,0.00440464,0.002919303,0.005889976,0.795882415,121076,152128,0.785138025,0.806626805,,,,0.743801653,0.65366939,0.833933916,0.798334835,0.764058624,0.832611047,0.627753719,0.560851592,0.694655846,0.808926301,0.799653334,0.818199268,0.283,,152128,0.265287237,0.300712763,75.33324972,,,75.00729957,75.65919988,,,,86.68419331,82.74256018,90.62582643,71.39405295,70.3976142,72.3904917,82.35851628,80.13383185,84.5832007,75.39918952,75.03041821,75.76796082,,,,466.0754309,7133,989613,453.6142854,478.5365764,,,,194.7434475,137.117359,268.4281896,632.3932425,590.4640647,674.3224202,282.0500301,237.2273325,326.8727277,465.9159257,451.6095741,480.2222773,,,,57.51921746,162,281645,48.66170987,66.37672504,,,,,,,117.7491324,89.18204297,152.5576587,44.60966543,24.9676911,73.5768591,46.60116614,37.17091518,57.69541465,,,,6.559305166,145,22106,5.491652702,7.62695763,,,,,,,13.28125,9.888762979,17.46239098,,,,5.266853933,4.142714726,6.602047012,,,,,,,0.116,,,0.1,0.133,0.184,,,0.161,0.208,0.107,,,0.093,0.12,345.9,1113,321810,,,0.109,37720,,,,0.08367618,22533.24225,269291,,,51.05477883,554,1085109,46.80332381,55.30623384,,,,,,,44.16035448,33.6169079,56.96363983,,,,57.42503304,52.30898465,62.54108144,,,,0.339,,,0.324,0.352,0.201078684,41085,204323,0.182014855,0.220142514,0.056363165,3695,65557,0.040873803,0.071852527,0.001177235,451,383101,,,849.4478936,0.83,2754.77,3319,,,0.070945379,1269,17887,0.046472309,0.09541845,3.12712466,,,,,,3.220751387,2.610593339,2.86314575,3.364609069,3.228381862,,,,,,3.749167193,2.673887582,2.966002351,3.469846629,0.061472151,,,,,-1536.337,,,,,0.853853493,40272,47165,0.813899982,0.893807004,61375,,,58351,64399,79306,22290.85106,136321.1489,60174,44216.38298,76131.61702,38207,34055.85106,42358.14894,46455,37710.65957,55199.34043,64031,62059.08511,66002.91489,,,,,,0.472648847,21696,45903,,,42.70324917,,,,,0.303657841,,61375,,,4.952086951,77,15549,,,7.351513012,176,2394065,6.265396372,8.437629653,,,,,,,32.95099199,26.49259756,39.40938642,,,,3.662871465,2.844363016,4.643562377,,,,16.84007238,315,1762524,14.83056746,18.8495773,17.87209706,,,,,,,6.626167705,3.787427367,10.76048122,13.39328293,7.32223241,22.47165298,19.47810109,16.94292411,22.01327806,,,,18.83662293,332,1762524,16.81038672,20.86285915,,,,,,,34.47353023,27.16122085,43.1487637,,,,18.20410974,15.94297813,20.46524136,,,,19.4648015,466,2394065,17.69749005,21.23211295,,,,,,,25.70177375,20.3161856,32.07697683,13.66642978,8.347810355,21.10669238,19.12234368,17.13312278,21.11156458,,,,,,29900,,,,,0.663568067,179744,270875,,,0.492,,,,,60.07730472,,,,,0.751985841,107070,142383,0.741111883,0.762859799,0.137632415,19008,138107,0.126297676,0.148967155,0.898197116,127888,142383,0.889919796,0.906474436,383101,,,,,0.167485859,64164,383101,,,0.265890718,101863,383101,,,0.118613629,45441,383101,,,0.005755662,2205,383101,,,0.015113508,5790,383101,,,0.001477417,566,383101,,,0.064975033,24892,383101,,,0.776810815,297597,383101,,,0.013273843,4528,341122,0.010607876,0.01593981,0.515856132,197625,383101,,,0.24423908,85735,351029,, -45,053,45053,SC,Jasper County,2024,1,12200.43625,572,85339,10668.71879,13732.15372,0,,,,2,,,,2,14067.58543,11499.92866,16635.2422,,8927.238808,6065.625649,12671.50289,,12415.81131,9885.389958,14946.23266,,,,,2,,0.196,,,0.169,0.224,3.93013695,,,3.164009031,4.79221952,4.930255873,,,3.975579169,6.001885428,0.107018224,276,2579,0.095087122,0.118949326,0,,,,,,,0.137529138,0.114483857,0.160574418,0.082733813,0.064037229,0.101430397,0.10199005,0.081070732,0.122909368,,,,,,,0.189,,,0.154,0.225,0.395,,,0.323,0.473,8.5,0.050961201,0.088,,,0.289,,,0.241,0.339,0.553506304,15936,28791,,,0.149702645,,,0.119171466,0.186775487,0.282051282,22,78,0.223617099,0.34215829,659.5,200,30324,,,40.9495549,207,5055,35.3710209,46.52808889,,,,,,,33.632287,26.45392722,42.15836298,69.82543641,55.69550269,86.44864154,29.74504249,21.43761029,40.20665636,,,,,,,0.18449866,4061,22011,0.160668873,0.208328447,0.00023084,7,30324,,,4332,0.000436967,14,32039,,,2288.5,0.000967571,31,32039,,,1033.516129,2453,,,,,,,3512,,2044,0.43,,,,,,,0.45,,0.43,0.4,,,,,,0.43,0.28,0.24,0.43,0.898230503,19188,21362,0.875523811,0.920937194,0.545712261,3850,7055,0.461695947,0.629728575,0.030523918,402,13170,,,0.297,1655,,0.192148936,0.401851064,,,,,,,0.276821862,0.129838308,0.423805417,0.424132948,0.262619245,0.585646651,0.04445919,0,0.114916388,4.906544202,106840,21775,2.979759086,6.833329318,0.295754549,1658,5606,0.196170666,0.395338431,6.595435958,20,30324,,,119.132076,178,149414,101.6305958,136.6335561,,,,,,,118.54963,92.41525244,149.7803256,78.15171201,44.67045598,126.9134841,132.9807329,106.6544364,163.8359822,,,,8.7,,,,,0,,,,,0.177622378,1905,10725,0.136908889,0.218335866,0.134626576,0.093978463,0.175274689,0.044755245,0.025386449,0.06412404,0.004195804,0,0.010908187,0.830318258,9914,11940,0.804771119,0.855865397,,,,,,,0.863364362,0.766032355,0.960696369,0.695836274,0.577325058,0.81434749,0.829350328,0.76060578,0.898094875,0.518,,11940,0.439732661,0.596267339,75.33293416,,,74.151838,76.51403032,,,,,,,72.81237121,70.93548559,74.68925684,83.58162845,65.72839805,101.4348589,75.68885111,73.85730672,77.5203955,,,,490.3776426,572,85339,445.5856022,535.1696831,,,,,,,598.5153353,519.6629971,677.3676734,389.0811218,260.5737337,558.7853929,477.2397795,407.1605282,547.3190308,,,,85.45680547,22,25744,53.55532502,129.3826305,,,,,,,,,,147.080453,70.53079418,270.4861898,,,,,,,8.62745098,22,2550,5.406777597,13.06206447,,,,,,,,,,,,,,,,,,,,,,0.126,,,0.11,0.145,0.173,,,0.15,0.198,0.13,,,0.112,0.15,367.8,97,26373,,,0.088,2490,,,,0.050961201,1262.665673,24777,,,36.96254824,34,91985,25.59763916,51.65145632,,,,,,,36.89408559,19.64454675,63.09000999,,,,48.20787235,29.44662083,74.45314895,,,,0.368,,,0.355,0.38,0.218787515,3645,16660,0.189000281,0.248574749,0.079325643,447,5635,0.053112877,0.105538409,0.000624239,20,32039,,,1601.95,0.825,127.05,154,,,,,,,,2.160268342,,,,,,,2.047912436,2.129918663,2.498163018,2.172280724,,,,,,,2.134856463,2.154422514,2.345718818,0.038177781,,,,,-16156.69,,,,,0.773783666,35625,46040,0.615004527,0.932562806,61838,,,55586.25532,68089.74468,,,,,,,42826,34636.89362,51015.10638,74656,40325.61702,108986.383,76476,72085.3617,80866.6383,,,,,,0.975717439,3536,3624,,,36.5077281,,,,,0.228241534,,61838,,,4.366812227,7,1603,,,22.36233793,46,205703,16.37204193,29.82822502,,,,,,,39.84977841,27.43075385,55.96390488,,,,,,,,,,13.40900486,20,149414,7.9470261,21.19200865,13.38562651,,,,,,,,,,,,,25.02655362,12.93158545,43.71635269,,,,27.44053435,41,149414,19.69180122,37.22618333,,,,,,,33.87132285,20.68948395,52.311511,,,,27.20060446,16.12080209,42.98868193,,,,35.00192024,72,205703,27.38684691,44.07912575,,,,,,,39.84977841,27.43075385,55.96390488,39.27028667,19.60358562,70.26539043,30.00433396,19.77304514,43.65473062,,,,,,2600,,,,,0.666697545,14394,21590,,,0.474,,,,,39.12154541,,,,,0.734802883,8667,11795,0.696436235,0.77316953,0.134002739,1468,10955,0.092412645,0.175592832,0.785247986,9262,11795,0.731375632,0.839120341,32039,,,,,0.177190299,5677,32039,,,0.240144824,7694,32039,,,0.346983364,11117,32039,,,0.010580855,339,32039,,,0.008396017,269,32039,,,0.001404538,45,32039,,,0.146103187,4681,32039,,,0.48144449,15425,32039,,,0.034839823,969,27813,0.019292217,0.05038743,0.496644714,15912,32039,,,0.89149387,25667,28791,, -45,055,45055,SC,Kershaw County,2024,1,11621.11218,1400,185503,10666.16217,12576.06219,0,,,,2,,,,2,13485.24415,11456.9095,15513.5788,,10054.34171,6442.006449,14960.06349,1,11299.32648,10137.66445,12460.98851,,,,,2,,0.17,,,0.147,0.197,3.981482018,,,3.204604128,4.829392725,5.546595854,,,4.546108055,6.595203139,0.101413293,531,5236,0.093236487,0.109590099,0,,,,,,,0.156818182,0.137201392,0.176434971,0.092417062,0.064784631,0.120049492,0.080414255,0.071112107,0.089716404,,,,0.096,0.044355878,0.147644122,0.183,,,0.151,0.222,0.355,,,0.292,0.421,7.7,0.120894299,0.091,,,0.244,,,0.203,0.29,0.3673226,24024,65403,,,0.154294921,,,0.123762257,0.188371276,0.397849462,37,93,0.347060651,0.447634967,576.1,381,66130,,,26.18740135,365,13938,23.50080733,28.87399537,,,,,,,29.2997363,23.55698799,35.04248462,32.49475891,22.07861214,46.12371646,23.40425532,20.23119918,26.57731146,,,,47.91666667,30.37505633,71.89852686,0.118108455,6264,53036,0.102619093,0.133597816,0.000574626,38,66130,,,1740.263158,0.000309959,21,67751,,,3226.238095,0.001800711,122,67751,,,555.3360656,2187,,,,,,,2413,,2181,0.45,,,,,,0.4,0.51,0.4,0.44,0.44,,,,,,0.5,0.36,0.31,0.46,0.889044299,40680,45757,0.874358603,0.903729995,0.637268489,10116,15874,0.578375977,0.696161002,0.032721441,959,29308,,,0.169,2584,,0.109425532,0.228574468,,,,,,,0.276779987,0.175921684,0.377638291,0.600928074,0.283548696,0.918307453,0.133375946,0.086304109,0.180447782,4.848479942,119772,24703,4.351076747,5.345883136,0.222729378,3367,15117,0.176853254,0.268605501,11.19008015,74,66130,,,109.1356517,361,330781,97.87744762,120.3938558,,,,,,,77.7331996,59.5975984,99.65045371,,,,128.7832856,113.9864422,143.580129,,,,8.3,,,,,0,,,,,0.136785926,3460,25295,0.116301981,0.157269871,0.125,0.102706885,0.147293115,0.012848389,0.006150562,0.019546216,0.005930026,0.001298038,0.010562014,0.836570362,24207,28936,0.809483753,0.863656972,,,,,,,0.721273292,0.629352302,0.813194281,,,,0.814231689,0.774211812,0.854251567,0.519,,28936,0.47604024,0.56195976,73.74499349,,,73.03319919,74.4567878,,,,,,,71.7776466,70.33810027,73.21719294,84.22964055,70.09799095,98.36129016,74.04712999,73.19202315,74.90223682,,,,550.9180667,1400,185503,520.2796495,581.5564839,,,,,,,655.0451806,587.1122185,722.9781427,362.6758926,236.9119341,531.4042131,533.8766674,497.5903252,570.1630097,,,,64.31926287,43,66854,46.54816946,86.63762499,,,,,,,68.75,34.3197523,123.0127407,,,,57.16191111,36.62471504,85.05239269,,,,5.968425106,31,5194,4.055255291,8.471703023,,,,,,,,,,,,,,,,,,,,,,0.12,,,0.105,0.139,0.177,,,0.154,0.202,0.112,,,0.097,0.129,368.6,205,55609,,,0.091,5890,,,,0.120894299,7458.815553,61697,,,37.47133443,75,200153,29.47358156,46.97064218,,,,,,,22.85761782,11.41044046,40.89859221,,,,47.03876288,36.2255792,60.06745007,,,,0.364,,,0.349,0.379,0.145794442,5545,38033,0.125539123,0.166049761,0.049640882,781,15733,0.034151521,0.065130244,0.000708477,48,67751,,,1411.479167,0.86,641.56,746,,,0.062773267,201,3202,0.02249719,0.103049343,2.758891629,,,,,,,2.426582989,2.516331082,2.916756667,2.768347543,,,,,,,2.282567285,2.69453747,2.958529049,0.028265258,,,,,-1968.64,,,,,0.790959819,42382,53583,0.711817846,0.870101793,61015,,,55061.12766,66968.87234,185917,101348.6596,270485.3404,64089,63139.38298,65038.61702,49369,38490.70213,60247.29787,,,,69503,62524.44681,76481.55319,,,,,,0.6738655,7395,10974,,,21.13619436,,,,,0.231320167,,61015,,,6.097560976,21,3444,,,5.452788665,25,458481,3.52875732,8.04939173,,,,,,,9.890307499,4.937205869,17.6964921,,,,4.4647413,2.440915615,7.491077253,,,,18.41468721,66,330781,14.0857766,23.65443609,19.95277842,,,,,,,,,,,,,23.18754586,17.31756833,30.40738145,,,,19.6504636,65,330781,15.16581295,25.04612895,,,,,,,12.53761284,6.012272688,23.0571164,,,,23.0128208,17.18707529,30.17825277,,,,29.22694725,134,458481,24.27829281,34.17560168,,,,,,,30.57004136,21.17064232,42.71856869,,,,29.97754873,24.22491083,36.68492759,,,,,,7400,,,,,0.67298379,33629,49970,,,0.641,,,,,25.97347141,,,,,0.818019731,20646,25239,0.79846201,0.837577452,0.133745365,3246,24270,0.108820757,0.158669972,0.874678078,22076,25239,0.852824661,0.896531494,67751,,,,,0.230195864,15596,67751,,,0.191539608,12977,67751,,,0.243848799,16521,67751,,,0.005431654,368,67751,,,0.008634559,585,67751,,,0.001166034,79,67751,,,0.056220572,3809,67751,,,0.66799014,45257,67751,,,0.007003229,436,62257,0.002195086,0.011811371,0.514339272,34847,67751,,,0.528125621,34541,65403,, -45,057,45057,SC,Lancaster County,2024,1,11184.21487,1779,272898,10376.73234,11991.69739,0,,,,2,,,,2,16518.80265,14420.13859,18617.4667,,6754.479147,4371.142767,9970.943664,,9933.911361,9024.139739,10843.68298,,,,,2,,0.155,,,0.132,0.182,3.496918187,,,2.857193944,4.244440578,4.72114329,,,3.971027263,5.575196568,0.091070696,666,7313,0.084476488,0.097664904,0,,,,0.115241636,0.077082636,0.153400635,0.167529107,0.148913338,0.186144877,0.060301508,0.041206174,0.079396841,0.066624366,0.059516125,0.073732606,,,,0.144827586,0.087544744,0.202110428,0.169,,,0.136,0.203,0.329,,,0.281,0.379,8.4,0.069818406,0.082,,,0.234,,,0.198,0.273,0.632675804,60747,96016,,,0.162719728,,,0.13430169,0.196175346,0.275862069,24,87,0.220673008,0.332762158,463.4,465,100336,,,24.3775333,421,17270,22.04888027,26.70618632,,,,,,,31.65467626,26.25451185,37.05484067,35.07610854,26.27441227,45.88041359,20.36007164,17.64482992,23.07531335,,,,35.92814371,21.29329497,56.78195662,0.119310506,9185,76984,0.105012634,0.133608378,0.000408627,41,100336,,,2447.219512,0.000401618,42,104577,,,2489.928571,0.000621552,65,104577,,,1608.876923,2677,,,,,,,3569,,2568,0.43,,,,,,0.27,0.38,0.56,0.44,0.45,,,,,,0.44,0.34,0.37,0.47,0.890560137,62642,70340,0.876327466,0.904792807,0.662037226,16255,24553,0.601392769,0.722681683,0.035953813,1560,43389,,,0.13,2838,,0.083531915,0.176468085,,,,,,,0.39823625,0.322603293,0.473869207,0.232536334,0.092749504,0.372323163,0.072204525,0.042808242,0.101600808,4.948481581,142254,28747,4.371084785,5.525878377,0.235226456,4908,20865,0.191069204,0.279383708,11.36182427,114,100336,,,113.9153209,555,487204,104.4378662,123.3927756,,,,,,,129.9634724,107.7922105,152.1347343,41.7667328,21.58148031,72.95807681,118.4200474,106.8581588,129.9819359,,,,9,,,,,0,,,,,0.110275334,3885,35230,0.091501012,0.129049656,0.090165111,0.071996829,0.108333394,0.016463242,0.00849438,0.024432104,0.007663923,0.003491773,0.011836073,0.775794848,33429,43090,0.745900692,0.805689004,,,,0.477842004,0.319739181,0.635944827,0.784387198,0.70919338,0.859581015,0.650641026,0.563990436,0.737291616,0.733151375,0.701402483,0.764900267,0.498,,43090,0.448787018,0.547212982,75.435123,,,74.78886808,76.08137792,,,,92.17848316,78.23911552,106.1178508,70.26279336,68.82007397,71.70551274,82.9483612,77.3476968,88.5490256,76.49483996,75.7554824,77.23419752,,,,481.364381,1779,272898,457.5048678,505.2238941,,,,,,,674.5801301,611.7203659,737.4398942,221.2037625,152.2664919,310.6523252,449.7608636,422.4349389,477.0867883,,,,68.70154088,63,91701,52.79215035,87.89911483,,,,,,,108.4598699,68.75425369,162.7430581,110.8524554,53.15806115,203.8616123,49.8566621,33.12938989,72.05675815,,,,6.619776583,48,7251,4.880900679,8.776863354,,,,,,,,,,,,,5.488705932,3.585404943,8.042225899,,,,,,,0.11,,,0.095,0.127,0.166,,,0.144,0.188,0.103,,,0.089,0.118,276.3,235,85061,,,0.082,7790,,,,0.069818406,5351.720478,76652,,,49.78715157,149,299274,41.79285571,57.78144744,,,,,,,48.71236969,32.86603128,69.53993667,,,,56.59798166,46.38585925,66.81010407,,,,0.315,,,0.3,0.329,0.142575429,7953,55781,0.123511599,0.161639259,0.059395639,1313,22106,0.041523299,0.07726798,0.000707613,74,104577,,,1413.202703,0.82,738,900,,,0.109129312,465,4261,0.050639677,0.167618948,2.774520514,,,,,,3.244217338,2.238802618,2.646398204,3.066808487,2.925747606,,,,,,3.501254309,2.387429487,2.737623487,3.196951745,0.125277987,,,,,-3463.967,,,,,0.778918146,46295,59435,0.716681192,0.8411551,70113,,,63273.85106,76952.14894,53438,44075.2766,62800.7234,203333,93508.65957,313157.3404,40792,31419.74468,50164.25532,71842,12408.12766,131275.8723,80209,75505,84913,,,,,,0.462454651,6756,14609,,,37.28464886,,,,,0.20130361,,70113,,,4.074074074,22,5400,,,11.31836291,75,662640,8.902610422,14.18766592,,,,,,,37.92025299,28.40487163,49.60062456,,,,4.313393951,2.634733084,6.66168712,,,,15.70702223,77,487204,12.26731468,19.81227131,15.80446794,,,,,,,,,,,,,20.24329734,15.48451845,26.0033623,,,,20.93578871,102,487204,16.87280283,24.99877458,,,,,,,41.35201394,29.80289438,55.89590987,,,,17.33693001,13.19767439,22.36337658,,,,22.93854884,152,662640,19.29184732,26.58525035,,,,,,,32.91191769,24.09566021,43.89988603,,,,20.05728187,16.18881509,24.57152535,,,,,,9700,,,,,0.691698453,49868,72095,,,0.671,,,,,24.25658407,,,,,0.815612382,30906,37893,0.793884486,0.837340279,0.101614384,3764,37042,0.08224501,0.120983758,0.860792231,32618,37893,0.84018428,0.881400182,104577,,,,,0.211891716,22159,104577,,,0.217896861,22787,104577,,,0.197806401,20686,104577,,,0.00414049,433,104577,,,0.02665022,2787,104577,,,0.000583302,61,104577,,,0.069317345,7249,104577,,,0.687311742,71877,104577,,,0.013583006,1252,92174,0.008532545,0.018633467,0.508955124,53225,104577,,,0.379363856,36425,96016,, -45,059,45059,SC,Laurens County,2024,1,13258.19763,1625,187675,12248.0251,14268.37017,0,,,,2,,,,2,15074.2209,12810.39489,17338.04691,,,,,2,13325.0633,12111.41545,14538.71115,,,,,2,,0.204,,,0.174,0.236,4.513938528,,,3.675471616,5.48334822,5.740089924,,,4.743702901,6.807809707,0.107062359,570,5324,0.098756855,0.115367864,0,,,,,,,0.174891147,0.154833915,0.194948379,0.097402597,0.070365044,0.124440151,0.08105674,0.071788278,0.090325202,,,,,,,0.214,,,0.171,0.256,0.432,,,0.369,0.498,7.6,0.067405435,0.122,,,0.293,,,0.245,0.343,0.523371682,35348,67539,,,0.160263486,,,0.129333492,0.196270189,0.472440945,60,127,0.432459754,0.511111021,693.2,470,67803,,,33.97218571,491,14453,30.96722488,36.97714653,,,,,,,38.39590444,31.91890157,44.8729073,64.57564576,50.33988386,81.58744357,28.77237852,25.34035738,32.20439966,,,,43.3604336,24.78423429,70.41462764,0.142781637,7564,52976,0.124909297,0.160653977,0.000501453,34,67803,,,1994.205882,0.000279556,19,67965,,,3577.105263,0.000794527,54,67965,,,1258.611111,2954,,,,,,,2587,,3048,0.47,,,,,,,0.54,,0.46,0.4,,,,,,,0.36,,0.41,0.82693169,38774,46889,0.806844842,0.847018538,0.477682987,7727,16176,0.430533194,0.524832781,0.033689182,1013,30069,,,0.265,3803,,0.19112766,0.33887234,,,,,,,0.410498859,0.298150234,0.522847484,0.289750329,0.151535853,0.427964804,0.214260079,0.156077409,0.272442749,4.659568721,103503,22213,4.138907353,5.180230089,0.383372141,5598,14602,0.321419283,0.445324999,11.50391576,78,67803,,,127.2917711,429,337021,115.2461901,139.3373522,,,,,,,99.62072111,79.34734829,123.4948723,,,,147.3761777,131.6177196,163.1346358,,,,9.1,,,,,0,,,,,0.150655449,3850,25555,0.129497899,0.171812999,0.1198,0.099318836,0.140281164,0.021717863,0.014141601,0.029294126,0.013108981,0.006856415,0.019361546,0.800216814,22883,28596,0.772198808,0.828234819,,,,,,,0.77948718,0.718134781,0.840839578,0.816528926,0.685240693,0.947817158,0.785988103,0.75584205,0.816134156,0.414,,28596,0.369738135,0.458261865,71.94080616,,,71.24117729,72.64043502,,,,,,,69.83110493,68.34029661,71.32191326,87.36003254,77.42618375,97.29388133,72.06525624,71.24085199,72.88966049,,,,638.1773897,1625,187675,605.2792947,671.0754847,,,,,,,696.9646792,627.8877574,766.0416011,,,,649.4804737,609.377891,689.5830564,,,,72.74490786,48,65984,53.63635249,96.44919402,,,,,,,132.2447102,83.83180219,198.4319969,,,,50.88152238,31.07975573,78.58238457,,,,7.497656982,40,5335,5.356436072,10.20968078,,,,,,,16.28895184,10.32579819,24.44142556,,,,,,,,,,,,,0.136,,,0.117,0.156,0.189,,,0.162,0.216,0.129,,,0.111,0.148,331.5,190,57310,,,0.122,8170,,,,0.067405435,4484.955441,66537,,,39.86632477,81,203179,31.65961639,49.55020164,,,,,,,,,,,,,52.51870979,41.09265591,66.13862317,,,,0.367,,,0.352,0.379,0.178713038,6896,38587,0.154883251,0.202542825,0.048237477,728,15092,0.032748115,0.063726839,0.000514971,35,67965,,,1941.857143,0.816365188,478.39,586,,,0.066846523,223,3336,0.02624434,0.107448705,2.55773978,,,,,,,2.25294793,2.111100596,2.817469831,2.607759773,,,,,,,2.330126494,2.35957967,2.839214169,0.065377362,,,,,-5796.167,,,,,0.811975366,38499,47414,0.707023759,0.916926973,53847,,,49011.93617,58682.06383,59750,32743.70213,86756.29787,42500,23461.19149,61538.80851,39527,31763.25532,47290.74468,46164,29505.78723,62822.21277,58549,51787.29787,65310.70213,,,,,,0.996976484,8903,8930,,,27.47753325,,,,,0.262113024,,53847,,,3.129074316,12,3835,,,7.227568497,34,470421,5.005301291,10.09980254,,,,,,,17.08277458,10.43460251,26.38295985,,,,,,,,,,21.9847511,73,337021,17.10544861,27.82310957,21.66037131,,,,,,,,,,,,,29.23999706,22.31319816,37.63767227,,,,19.28663199,65,337021,14.88501539,24.5823957,,,,,,,20.40424408,11.8862241,32.66917137,,,,19.29926137,14.02287285,25.90835758,,,,28.69769845,135,470421,23.85668538,33.53871151,,,,,,,33.31141044,23.68766922,45.53779467,,,,28.84907855,23.25642904,35.38083386,,,,,,6800,,,,,0.595236236,30488,51220,,,0.568,,,,,20.7643627,,,,,0.71304888,18366,25757,0.68665247,0.73944529,0.127314624,3094,24302,0.106556971,0.148072277,0.815273518,20999,25757,0.787707388,0.842839648,67965,,,,,0.216170088,14692,67965,,,0.191510336,13016,67965,,,0.239902891,16305,67965,,,0.004870154,331,67965,,,0.006797616,462,67965,,,0.001544913,105,67965,,,0.06063415,4121,67965,,,0.673170014,45752,67965,,,0.014783975,941,63650,0.00988711,0.01968084,0.513234753,34882,67965,,,0.64020788,43239,67539,, -45,061,45061,SC,Lee County,2024,1,17259.43643,503,46030,14840.58119,19678.29167,0,,,,2,,,,2,19631.19611,16358.3926,22903.99962,,,,,2,13829.76748,10295.01581,17364.51914,,,,,2,,0.237,,,0.203,0.273,4.416527043,,,3.571087725,5.420020739,5.716773672,,,4.668872364,6.894655616,0.154166667,185,1200,0.133735033,0.1745983,0,,,,,,,0.173543689,0.147684981,0.199402398,,,,0.107023411,0.071982136,0.142064687,,,,,,,0.229,,,0.187,0.275,0.443,,,0.369,0.516,8.3,0.028326363,0.105,,,0.323,,,0.274,0.38,0.188736314,3120,16531,,,0.141903562,,,0.113029062,0.175331533,0.483870968,15,31,0.398584615,0.562251819,1013.5,165,16280,,,33.22456244,112,3371,27.07128737,39.37783752,,,,,,,38.26086957,30.68633621,47.13846141,,,,22.04176334,13.2705814,34.42094382,,,,,,,0.119234194,1339,11230,0.101361854,0.137106535,0.00012285,2,16280,,,8140,0.000123816,2,16153,,,8076.5,0.001176252,19,16153,,,850.1578947,2677,,,,,,,3474,,1852,0.44,,,,,,,0.44,,0.44,0.39,,,,,,,0.31,,0.44,0.811919966,9536,11745,0.773758102,0.85008183,0.445762712,1841,4130,0.357613042,0.533912382,0.046551724,297,6380,,,0.418,1264,,0.301234043,0.534765957,,,,,,,0.51292517,0.43454858,0.59130176,0.172413793,0,0.8478448,0.3095526,0.162148996,0.456956204,4.984272446,80496,16150,4.190193374,5.778351518,0.476205788,1481,3110,0.363099631,0.589311945,9.828009828,16,16280,,,117.4363293,99,84301,95.44645361,142.9745172,,,,,,,122.3138008,94.39920916,155.8989797,,,,123.8254789,85.75274377,173.0336954,,,,8,,,,,0,,,,,0.172734315,1115,6455,0.132205412,0.213263217,0.152365678,0.109576168,0.195155187,0.026336174,0.010763961,0.041908386,0.01626646,0.004700298,0.027832623,0.862100291,4745,5504,0.820972512,0.90322807,,,,,,,0.737689394,0.602796639,0.872582149,,,,0.89261745,0.867294679,0.917940221,0.405,,5504,0.328484487,0.481515514,69.1084216,,,67.60510363,70.61173957,,,,,,,67.62611399,65.67880884,69.57341913,,,,71.25955721,68.97851374,73.54060067,,,,785.136226,503,46030,711.4048453,858.8676067,,,,,,,865.9858231,766.5132199,965.4584262,,,,697.3302774,580.5215043,814.1390505,,,,129.5866867,19,14662,78.01965056,202.3656634,,,,,,,153.217569,85.75471024,252.7090794,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.143,,,0.124,0.165,0.189,,,0.164,0.216,0.15,,,0.13,0.172,848.2,120,14148,,,0.105,1750,,,,0.028326363,544.4326895,19220,,,20.07669297,10,49809,9.627554651,36.92175318,,,,,,,,,,,,,,,,,,,0.418,,,0.402,0.433,0.148250571,1233,8317,0.124420784,0.172080358,0.037613489,116,3084,0.024507106,0.050719872,0.000371448,6,16153,,,2692.166667,0.875,112,128,,,,,,,,2.311140316,,,,,,,2.267566899,,,2.241080088,,,,,,,2.23685783,,,0.046414409,,,,,-27076.14,,,,,0.824405835,34306,41613,0.741353196,0.907458473,41583,,,35764.95745,47401.04255,,,,,,,31988,27081.44681,36894.55319,,,,53359,48207,58511,,,,,,1,1641,1641,,,32.67742679,,,,,0.33941755,,41583,,,3.592814371,3,835,,,20.02803926,24,119832,12.83234266,29.80013485,,,,,,,30.48780488,19.32665302,45.74667669,,,,,,,,,,18.18731044,14,84301,9.943171857,30.51521653,16.60715769,,,,,,,,,,,,,,,,,,,33.21431537,28,84301,22.07067135,48.00393346,,,,,,,39.5167664,24.46150123,60.40557513,,,,,,,,,,35.0490687,42,119832,25.26028584,47.37615894,,,,,,,39.76670202,26.83042686,56.76943981,,,,30.57169061,15.79683866,53.40259107,,,,,,1500,,,,,0.613609898,8431,13740,,,0.502,,,,,12.2133663,,,,,0.736799742,4577,6212,0.688518238,0.785081247,0.131785592,772,5858,0.092546544,0.171024641,0.777688345,4831,6212,0.719480436,0.835896254,16153,,,,,0.190243299,3073,16153,,,0.207515632,3352,16153,,,0.613508327,9910,16153,,,0.00526218,85,16153,,,0.005138364,83,16153,,,0.000804804,13,16153,,,0.028663406,463,16153,,,0.336470006,5435,16153,,,0,0,15747,0,0.006355821,0.49674983,8024,16153,,,1,16531,16531,, -45,063,45063,SC,Lexington County,2024,1,8339.931395,4345,845230,7962.1484,8717.714391,0,,,,2,2220.221447,1242.64109,3661.917636,1,10370.33565,9316.931455,11423.73984,,5249.202333,4104.138728,6394.265938,,8344.846235,7901.955862,8787.736608,,,,,2,,0.157,,,0.132,0.184,3.931892053,,,3.239134341,4.696800201,5.495128255,,,4.737248531,6.281082676,0.088113854,2006,22766,0.084431673,0.091796035,0,,,,0.100619195,0.077421115,0.123817275,0.154331473,0.143301306,0.16536164,0.066454437,0.056715993,0.076192881,0.072740731,0.068565106,0.076916356,,,,0.099637681,0.074651091,0.124624271,0.171,,,0.135,0.209,0.38,,,0.331,0.429,8.3,0.086588636,0.081,,,0.241,,,0.201,0.283,0.670323241,197069,293991,,,0.174789544,,,0.146395899,0.206131841,0.332089552,89,268,0.301743088,0.362557444,516.1,1549,300137,,,18.76067762,1175,62631,17.6879594,19.83339584,,,,,,,23.62073283,20.86868346,26.3727822,37.10609733,31.9505496,42.26164507,14.82317894,13.65353186,15.99282601,,,,29.45237,22.68191374,37.61001896,0.113414157,28130,248029,0.102690753,0.124137562,0.000629712,189,300137,,,1588.026455,0.000501973,153,304797,,,1992.137255,0.001991489,607,304797,,,502.1367381,2078,,,,,,,2659,,1971,0.47,,,,,,0.36,0.48,0.26,0.47,0.43,,,,,,0.47,0.35,0.32,0.44,0.912509133,187329,205290,0.905932359,0.919085908,0.682346737,53047,77742,0.65683318,0.707860294,0.026746012,4036,150901,,,0.154,10394,,0.118255319,0.189744681,0.1,0,0.397475241,0.047322541,0,0.1056264,0.23562861,0.194552903,0.276704316,0.30569876,0.24494873,0.36644879,0.096532423,0.079605427,0.113459419,4.117984949,134061,32555,3.895613687,4.34035621,0.240492848,16259,67607,0.21518193,0.265803767,11.16156955,335,300137,,,93.38216078,1390,1488507,88.47293971,98.29138186,,,,,,,68.24315697,57.49956931,78.98674463,45.6315728,33.0237955,61.46542911,106.5831916,100.4862682,112.6801151,,,,8.1,,,,,1,,,,,0.12089915,13930,115220,0.111226837,0.130571462,0.096498569,0.088412957,0.10458418,0.020265579,0.015439123,0.025092035,0.011239368,0.008062119,0.014416618,0.811351903,115986,142954,0.798328777,0.82437503,,,,0.724537037,0.641325039,0.807749035,0.812755519,0.782161592,0.843349447,0.690104167,0.640761164,0.73944717,0.802865618,0.785895854,0.819835382,0.372,,142954,0.356975891,0.387024109,76.73172816,,,76.41157407,77.05188224,,,,85.06618262,81.62668987,88.50567537,74.74898635,73.77807012,75.71990257,83.83770337,80.65848435,87.01692239,76.6987325,76.33781184,77.05965315,,,,399.6894655,4345,845230,387.3669602,412.0119709,,,,159.0892402,108.0934202,225.8144776,476.3350498,439.7680105,512.9020892,262.1823727,207.135792,317.2289533,403.2809348,389.1182099,417.4436597,,,,50.64100856,152,300152,42.59025331,58.6917638,,,,,,,99.15067161,74.27065689,129.6915197,44.46561855,24.30976743,74.60575233,38.95997375,30.69602807,48.76421678,,,,6.360424028,144,22640,5.32155477,7.399293286,,,,,,,11.21914735,8.183323059,15.01210184,,,,4.579240775,3.562922654,5.795322279,,,,,,,0.112,,,0.096,0.131,0.179,,,0.156,0.204,0.102,,,0.087,0.116,325.6,823,252753,,,0.081,23490,,,,0.086588636,22720.07874,262391,,,29.46281317,266,902833,25.92211045,33.00351589,,,,,,,10.01480761,5.475188512,16.80314545,,,,36.7444424,32.13389152,41.35499329,,,,0.339,,,0.323,0.353,0.137869218,24841,180178,0.123571346,0.152167091,0.05066345,3612,71294,0.037557067,0.063769833,0.001217204,371,304797,,,821.5552561,0.730203652,2599.525,3560,,,0.062082682,874,14078,0.043770318,0.080395047,2.950522544,,,,,,3.495283189,2.449608478,2.391692248,3.220819989,2.917439392,,,,,,3.964045895,2.437112913,2.489311546,3.154087815,0.090945589,,,,,-3729.65025,,,,,0.793557709,46685,58830,0.76500883,0.822106587,73022,,,69494,76550,62813,93,125533,86528,67808.51064,105247.4894,53087,47352.3617,58821.6383,53920,46595.91489,61244.08511,77168,74888.68085,79447.31915,,,,,,0.528321369,32235,61014,,,40.53165339,,,,,0.255224453,,73022,,,4.222718224,70,16577,,,6.807563787,140,2056536,5.679889253,7.935238321,,,,,,,17.02149526,12.75026799,22.26453489,11.01746268,6.023349369,18.48543029,4.640707898,3.62443137,5.853621557,,,,15.98386106,246,1488507,13.93764956,18.03007257,16.52662702,,,,,,,4.840680251,2.41645014,8.661314102,,,,19.42578366,16.79164144,22.05992589,,,,17.39998535,259,1488507,15.28086769,19.51910302,,,,,,,25.09587063,19.00736734,32.51461126,12.73439241,6.580046384,22.2444208,17.15862284,14.71233477,19.60491092,,,,17.60241494,362,2056536,15.78909665,19.41573322,,,,,,,20.87541871,16.11120744,26.6074348,9.443539439,4.879614632,16.49596293,18.30138326,16.15769825,20.44506827,,,,,,33200,,,,,0.661502208,144568,218545,,,0.662,,,,,63.29806155,,,,,0.764192361,90689,118673,0.754030642,0.774354079,0.100400209,11540,114940,0.092003862,0.108796556,0.900348015,106847,118673,0.893316328,0.907379703,304797,,,,,0.225914297,68858,304797,,,0.172836347,52680,304797,,,0.16020827,48831,304797,,,0.005580764,1701,304797,,,0.024809956,7562,304797,,,0.001200799,366,304797,,,0.069036113,21042,304797,,,0.723025489,220376,304797,,,0.011209815,3132,279398,0.009139388,0.013280243,0.512121182,156093,304797,,,0.251545115,73952,293991,, -45,065,45065,SC,McCormick County,2024,1,14722.12195,258,24578,10950.65498,18493.58892,0,,,,2,,,,2,16908.83769,11101.61383,22716.06156,,,,,2,14313.69879,9145.230102,19482.16747,,,,,2,,0.191,,,0.163,0.222,3.877290843,,,3.147589164,4.671834476,5.171050585,,,4.235461802,6.155483026,0.118110236,45,381,0.085702813,0.15051766,0,,,,,,,0.172588833,0.11981848,0.225359185,,,,0.061349693,0.024509629,0.098189758,,,,,,,0.199,,,0.163,0.237,0.364,,,0.299,0.435,8.9,0.01649008,0.085,,,0.267,,,0.225,0.315,0.697774512,6647,9526,,,0.137362508,,,0.111251552,0.165819308,0.25,4,16,0.11917111,0.394165016,348.4,34,9760,,,23.96931927,25,1043,15.51167962,35.38344362,,,,,,,22.98850575,12.56803001,38.57080644,,,,27.77777778,13.32052416,51.08432234,,,,,,,0.121189024,636,5248,0.102125195,0.140252854,0.000512295,5,9760,,,1952,0.000102417,1,9764,,,9764,0.000512085,5,9764,,,1952.8,2567,,,,,,,5396,,1879,0.56,,,,,,,0.56,,0.56,0.47,,,,,,,0.27,,0.5,0.851615327,6801,7986,0.820224152,0.883006502,0.50788472,934,1839,0.381770317,0.633999123,0.035652174,123,3450,,,0.35,337,,0.21893617,0.48106383,,,,,,,0.494802495,0.342158794,0.647446195,,,,0.197580645,0,0.415759293,5.06038019,101157,19990,3.841468443,6.279291937,0.785192909,753,959,0.637918331,0.932467488,13.31967213,13,9760,,,113.4263149,54,47608,85.20933871,147.9967367,,,,,,,85.38899431,50.6069297,134.9514244,,,,140.1850443,97.64401972,194.9634613,,,,9.5,,,,,1,,,,,0.127979925,510,3985,0.089099213,0.166860636,0.116899619,0.075367599,0.158431639,0.0097867,0,0.021409257,0.003513174,0,0.008899138,0.883742911,2805,3174,0.832755517,0.934730306,,,,,,,0.908590308,0.833825299,0.983355318,,,,0.751037344,0.634350068,0.867724621,0.606,,3174,0.444224877,0.767775124,72.44723811,,,69.83360841,75.0608678,,,,,,,68.6664229,64.82301289,72.5098329,,,,73.86620347,70.46684231,77.26556464,,,,592.9504305,258,24578,499.1124678,686.7883933,,,,,,,731.3688095,587.0853855,875.6522335,,,,580.8457373,433.8337651,727.8577095,,,,213.3560913,10,4687,102.3125389,392.3694483,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.122,,,0.106,0.14,0.17,,,0.149,0.193,0.123,,,0.106,0.141,353.3,32,9059,,,0.085,810,,,,0.01649008,168.7429846,10233,,,,,,,,,,,,,,,,,,,,,,,,,,0.406,,,0.389,0.419,0.136480486,584,4279,0.113842188,0.159118784,0.055501461,57,1027,0.036437631,0.07456529,0.000307251,3,9764,,,3254.666667,,,,,,,,,,,2.082382365,,,,,,,2.054913761,,,2.194730764,,,,,,,2.110677665,,,0.148766485,,,,,-20477.43,,,,,1.056250297,44428,42062,0.838103069,1.274397525,56636,,,48541.02128,64730.97872,,,,,,,38074,29256.97872,46891.02128,,,,70066,61360.97872,78771.02128,,,,,,0.914201183,618,676,,,38.10574386,,,,,0.249205452,,56636,,,7.843137255,2,255,,,14.93495826,10,66957,7.161893,27.46591998,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,25.20584776,12,47608,13.02422935,44.02954346,,,,,,,,,,,,,,,,,,,26.88292486,18,66957,15.93252502,42.48661121,,,,,,,,,,,,,31.79006994,15.86948837,56.88121644,,,,,,600,,,,,0.684324324,5697,8325,,,0.527,,,,,0.276527675,,,,,0.838611604,3310,3947,0.809074757,0.86814845,0.099685205,380,3812,0.055711113,0.143659296,0.778566,3073,3947,0.74262435,0.814507649,9764,,,,,0.102314625,999,9764,,,0.387750922,3786,9764,,,0.38713642,3780,9764,,,0.002662843,26,9764,,,0.00727161,71,9764,,,0.001229005,12,9764,,,0.022019664,215,9764,,,0.565854158,5525,9764,,,0,0,9370,0,0.009664161,0.469582139,4585,9764,,,1,9526,9526,, -45,067,45067,SC,Marion County,2024,1,17820.69223,876,82516,15981.85657,19659.5279,0,,,,2,,,,2,19913.48365,17339.44676,22487.52054,,,,,2,16081.48957,13270.85696,18892.12218,,,,,2,,0.262,,,0.232,0.297,4.7683961,,,3.894057278,5.712205192,6.037640949,,,4.990692427,7.15852668,0.1393268,327,2347,0.125316869,0.153336731,0,,,,,,,0.167448091,0.148508442,0.18638774,,,,0.08739255,0.066441414,0.108343686,,,,,,,0.249,,,0.211,0.292,0.418,,,0.349,0.489,8.2,0.00114055,0.126,,,0.358,,,0.31,0.412,0.333344756,9728,29183,,,0.133258816,,,0.105565907,0.164588117,0.25,12,48,0.175199998,0.329372152,1045.7,301,28784,,,36.10108303,230,6371,31.43543059,40.76673548,,,,,,,39.3081761,33.01755779,45.59879441,,,,31.23474866,24.05456249,39.88607673,,,,71.42857143,34.2527764,131.359686,0.129207087,2837,21957,0.111334746,0.147079427,0.000382157,11,28784,,,2616.727273,0.000281195,8,28450,,,3556.25,0.001687171,48,28450,,,592.7083333,4318,,,,,,,4593,,4172,0.42,,,,,,,0.46,,0.4,0.27,,,,,,,0.22,,0.29,0.845209935,17151,20292,0.819346887,0.871072983,0.344310069,2363,6863,0.27802413,0.410596007,0.048722425,614,12602,,,0.479,2968,,0.389638298,0.568361702,,,,,,,0.479532164,0.401501019,0.557563309,0.988980716,0.873700757,1,0.128541448,0.069706005,0.187376891,5.627296588,79328,14097,4.713027726,6.54156545,0.613971147,4043,6585,0.488430896,0.739511397,10.76987215,31,28784,,,104.65277,159,151931,88.38574115,120.9197989,,,,,,,94.83778056,75.31488718,117.8747019,,,,123.8901507,96.93641285,156.0191411,,,,7.4,,,,,0,,,,,0.172429078,1945,11280,0.135326698,0.209531458,0.131359852,0.097746718,0.164972986,0.049202128,0.028934128,0.069470128,0.003546099,0.000637065,0.006455133,0.875573448,9352,10681,0.846705888,0.904441008,,,,,,,0.83535382,0.769943574,0.900764067,,,,0.901356699,0.840091136,0.962622261,0.516,,10681,0.433908199,0.598091801,69.00825205,,,67.87055611,70.14594798,,,,,,,67.82260096,66.24840646,69.39679546,,,,69.89424227,68.15403006,71.63445448,,,,782.6577545,876,82516,726.3129409,839.0025681,,,,,,,861.8352843,782.5076375,941.1629312,,,,731.7972937,644.587486,819.0071015,,,,104.2227004,31,29744,70.81426835,147.9358039,,,,,,,142.3409614,92.98184176,208.5624881,,,,,,,,,,12.69971323,31,2441,8.628838992,18.02622921,,,,,,,16.57106437,10.82476942,24.28044875,,,,,,,,,,,,,0.154,,,0.136,0.175,0.203,,,0.179,0.23,0.159,,,0.139,0.181,689.7,168,24358,,,0.126,3720,,,,0.00114055,37.708871,33062,,,25.66992935,23,89599,16.27253322,38.51749785,,,,,,,,,,,,,40.95603078,22.39104314,68.7172604,,,,0.41,,,0.395,0.422,0.163487567,2597,15885,0.13846629,0.188508844,0.040673212,261,6417,0.026375339,0.054971084,0.000913884,26,28450,,,1094.230769,0.81,251.91,311,,,,,,,,2.225822525,,,,,,,2.134651352,,2.490589754,2.145025754,,,,,,,2.066568489,,2.408332619,0.01938901,,,,,,,,,,0.871240284,36092,41426,0.713731973,1.028748595,37244,,,32327.91489,42160.08511,,,,,,,29862,26461.48936,33262.51064,49583,32843.76596,66322.23404,44822,38054.34043,51589.65957,,,,,,1,3999,3999,,,20.87917607,,,,,0.500402749,,37244,,,10.53864169,18,1708,,,16.71278156,36,215404,11.70542674,23.13753435,,,,,,,24.8081503,16.73795483,35.41517713,,,,,,,,,,11.2795419,18,151931,6.447232784,18.31726938,11.8474834,,,,,,,,,,,,,17.8435088,8.907415304,31.92696613,,,,26.9859344,41,151931,19.36557244,36.60946717,,,,,,,31.61259352,20.83289833,45.99466385,,,,24.08975153,13.17009133,40.41850974,,,,28.78312381,62,215404,22.06785598,36.89866571,,,,,,,29.76978037,20.85038818,41.21392439,,,,30.13863773,19.50413725,44.49057468,,,,,,3200,,,,,0.625302998,14704,23515,,,0.532,,,,,27.77089505,,,,,0.598702914,6739,11256,0.557285971,0.640119857,0.130730423,1192,9118,0.096271973,0.165188874,0.604477612,6804,11256,0.558658192,0.650297032,28450,,,,,0.221476274,6301,28450,,,0.216625659,6163,28450,,,0.554446397,15774,28450,,,0.008927944,254,28450,,,0.006818981,194,28450,,,0.000386643,11,28450,,,0.036098418,1027,28450,,,0.380105448,10814,28450,,,0,0,27651,0,0.004309028,0.532372584,15146,28450,,,0.591097557,17250,29183,, -45,069,45069,SC,Marlboro County,2024,1,15894.04167,774,72440,14196.26496,17591.81837,0,10472.03086,5575.915392,17907.4917,1,,,,2,16016.07485,13549.15144,18482.99826,,,,,2,18576.7662,15556.7382,21596.7942,,,,,2,,0.272,,,0.239,0.308,4.9710167,,,4.071803478,6.015595434,5.862494833,,,4.757993679,7.09039921,0.122513089,234,1910,0.107808566,0.137217613,0,0.125,0.06375,0.18625,,,,0.146211313,0.123588221,0.168834405,,,,0.102941177,0.081163562,0.124718791,,,,,,,0.272,,,0.23,0.318,0.439,,,0.362,0.516,6.5,0.088257088,0.16,,,0.372,,,0.318,0.43,0.253271834,6754,26667,,,0.145354745,,,0.115347849,0.179173349,0.056603774,3,53,0.015583431,0.126465698,1004.5,265,26382,,,40.10750465,194,4837,34.46358466,45.75142465,59.85915493,34.87016363,95.84030569,,,,35.94897565,29.01546298,44.03992386,,,,44.29611651,34.7210843,55.69571613,,,,,,,0.133787466,2455,18350,0.114723636,0.152851296,0.000113714,3,26382,,,8794,0.000345635,9,26039,,,2893.222222,0.003110719,81,26039,,,321.4691358,3432,,,,,,,2784,,3764,0.49,,,,,,,0.49,,0.49,0.33,,,,,,,0.27,,0.37,0.80392981,15302,19034,0.779874546,0.827985074,0.343688224,2434,7082,0.281442396,0.405934052,0.064708025,533,8237,,,0.358,1825,,0.253148936,0.462851064,,,,,,,0.437936385,0.351511406,0.524361364,0.272108844,0.057180748,0.487036939,0.299647474,0.205929987,0.39336496,5.262076347,73748,14015,4.308896668,6.215256026,0.402118404,2126,5287,0.319222393,0.485014414,6.064741111,16,26382,,,111.953939,147,131304,93.85568065,130.0521973,,,,,,,105.42645,82.18508985,133.1999772,,,,134.6315194,104.7513581,170.3848044,,,,8,,,,,0,,,,,0.180074587,1690,9385,0.138497749,0.221651425,0.156818182,0.115622487,0.198013876,0.026638253,0.011761817,0.041514688,0.00319659,0,0.006395923,0.873576441,7594,8693,0.835107955,0.912044926,,,,,,,0.814267352,0.777632687,0.850902017,,,,0.912650602,0.851335957,0.973965248,0.363,,8693,0.297500588,0.428499412,69.78681713,,,68.66522205,70.9084122,,,,,,,69.85911488,68.20219835,71.51603142,,,,67.97133508,66.14851573,69.79415442,,,,776.4771967,774,72440,718.8288702,834.1255231,570.9808318,365.8381928,849.5742179,,,,770.7429925,689.139986,852.345999,,,,877.3093924,779.3554992,975.2632856,,,,100.3052769,23,22930,63.58494129,150.5071648,,,,,,,117.9642737,64.49216613,197.9240068,,,,,,,,,,11.46560319,23,2006,7.268208892,17.20403434,,,,,,,,,,,,,,,,,,,,,,0.16,,,0.14,0.182,0.202,,,0.176,0.23,0.166,,,0.144,0.188,437.2,99,22645,,,0.16,4290,,,,0.088257088,2553.542318,28933,,,20.49154084,16,78081,11.71268613,33.27697852,,,,,,,,,,,,,32.96522169,15.80810515,60.62421639,,,,0.44,,,0.428,0.452,0.17161271,2290,13344,0.145399944,0.197825476,0.034311857,180,5246,0.022396963,0.04622675,0.000422443,11,26039,,,2367.181818,0.81,201.69,249,,,0.124203822,156,1256,0.039074359,0.209333284,2.173531511,,,,,,,2.033819246,,2.277395492,2.236243485,,,,,,,2.060598376,,2.448282149,0.084630869,,,,,-11029.36,,,,,0.878134852,37326,42506,0.758965104,0.997304599,39160,,,33453.95745,44866.04255,22548,11829.3617,33266.6383,,,,32849,25137.68085,40560.31915,20565,10644.65957,30485.34043,41620,37496.25532,45743.74468,,,,,,1,3664,3664,,,17.67989869,,,,,0.475919305,,39160,,,4.115226337,6,1458,,,24.76540166,46,185743,18.1313866,33.03357527,,,,,,,38.32151753,26.83991976,53.05313331,,,,,,,,,,15.97686296,20,131304,9.619115181,24.9498506,15.23182843,,,,,,,,,,,,,30.25750043,16.11084465,51.74124724,,,,28.17888259,37,131304,19.84053385,38.84087777,,,,,,,37.65230357,24.36658561,55.58222766,,,,21.46299584,10.7142502,38.40322826,,,,36.60972419,68,185743,28.42888332,46.41154884,,,,,,,25.54767836,16.36887958,38.01292031,,,,55.04183179,39.3226916,74.9513526,,,,,,2400,,,,,0.549232246,11446,20840,,,0.53,,,,,16.0740452,,,,,0.632463278,5985,9463,0.589207775,0.675718781,0.152728169,1240,8119,0.113530405,0.191925932,0.635105146,6010,9463,0.584884814,0.685325479,26039,,,,,0.199278006,5189,26039,,,0.194285495,5059,26039,,,0.500633665,13036,26039,,,0.049656285,1293,26039,,,0.004186029,109,26039,,,0.000614463,16,26039,,,0.035946081,936,26039,,,0.389070241,10131,26039,,,0.002735382,69,25225,0,0.007420157,0.473328469,12325,26039,,,0.652341846,17396,26667,, -45,071,45071,SC,Newberry County,2024,1,12252.70986,782,105358,10868.06981,13637.34991,0,,,,2,,,,2,17002.58503,14124.01702,19881.15305,,7320.949615,4338.85872,11570.25664,1,10786.542,9023.273375,12549.81062,,,,,2,,0.183,,,0.156,0.21,3.956258002,,,3.170284069,4.802187011,5.526020941,,,4.559100846,6.561279547,0.123156089,359,2915,0.111226489,0.135085689,0,,,,,,,0.172613308,0.149611705,0.19561491,0.074074074,0.049377573,0.098770576,0.098901099,0.083063967,0.114738231,,,,0.153846154,0.066132464,0.241559844,0.199,,,0.163,0.24,0.413,,,0.345,0.483,7.4,0.154108478,0.087,,,0.269,,,0.225,0.319,0.645271614,24339,37719,,,0.163707733,,,0.13101312,0.200010036,0.327272727,18,55,0.257471221,0.397370253,929,353,37996,,,26.52669602,235,8859,23.13509075,29.91830128,,,,,,,42.33870968,34.2403131,50.43710625,43.07116105,31.53350319,57.45089299,13.47602061,10.4646573,17.08406721,,,,80.64516129,45.13648459,133.0119294,0.141152392,4069,28827,0.123280051,0.159024732,0.000657964,25,37996,,,1519.84,0.00031375,12,38247,,,3187.25,0.000758229,29,38247,,,1318.862069,2541,,,,,,,2890,,2487,0.49,,,,,,,0.46,,0.49,0.48,,,,,,,0.39,0.22,0.5,0.854560869,22175,25949,0.835859362,0.873262377,0.563718877,4596,8153,0.493535955,0.633901798,0.027707809,528,19056,,,0.241,1912,,0.158787234,0.323212766,,,,,,,0.472760512,0.310342322,0.635178701,0.388844622,0.225691912,0.551997332,0.008316008,0.000596773,0.016035244,4.543965091,110382,24292,3.890497801,5.197432381,0.389040417,3138,8066,0.317294856,0.460785977,13.15927992,50,37996,,,94.32536519,181,191889,80.5835128,108.0672176,,,,,,,82.80041576,60.83863109,110.1069999,,,,109.075799,90.0299998,128.1215983,,,,8.7,,,,,0,,,,,0.135225376,2025,14975,0.106139955,0.164310796,0.115789474,0.089124762,0.142454186,0.010617696,0.003505925,0.017729467,0.016026711,0.003686372,0.028367051,0.855650695,14090,16467,0.822952629,0.888348762,,,,,,,0.839568802,0.765089287,0.914048317,,,,0.866555463,0.826551644,0.906559282,0.349,,16467,0.299945933,0.398054067,73.37632979,,,72.38419182,74.36846776,,,,,,,69.14998683,67.28645173,71.01352193,,,,74.7964685,73.52197607,76.07096092,,,,543.0079125,782,105358,501.8136689,584.2021561,,,,,,,762.5144492,671.7831952,853.2457032,367.416188,205.6400513,605.9971272,478.3851183,428.4274228,528.3428139,,,,87.27388131,33,37812,60.07532416,122.5649774,,,,,,,139.275766,81.13326618,222.9939933,,,,69.24101198,36.86792272,118.4042392,,,,10.17984391,30,2947,6.868297937,14.53236016,,,,,,,18.86792453,11.52501848,29.13997915,,,,,,,,,,,,,0.124,,,0.107,0.143,0.18,,,0.156,0.205,0.121,,,0.104,0.139,369,119,32249,,,0.087,3290,,,,0.154108478,5780.300807,37508,,,22.63211497,26,114881,14.7840489,33.16129219,,,,,,,,,,,,,33.16749585,21.02534723,49.76752887,,,,0.381,,,0.368,0.394,0.171528309,3587,20912,0.147698522,0.195358096,0.062462318,518,8293,0.042206999,0.082717637,0.0006275,24,38247,,,1593.625,0.86,360.34,419,,,,,,,,2.679732378,,,,,,,2.146701181,2.280589361,3.201252007,2.838352908,,,,,,,2.273675268,2.548462496,3.374286452,0.114160186,,,,,-4160.096,,,,,0.87526474,43393,49577,0.79910706,0.951422419,55050,,,48003.53192,62096.46809,210494,68192.04255,352795.9575,,,,38410,29467.87234,47352.12766,51623,47815,55431,62450,52188.89362,72711.10638,,,,,,0.818594963,4323,5281,,,34.822742,,,,,0.256385105,,55050,,,4.151291513,9,2168,,,9.329054407,25,267980,6.037272128,13.77152463,,,,,,,20.0541462,11.4626773,32.56667703,,,,,,,,,,17.22577886,33,191889,11.62216066,24.59087042,17.19744227,,,,,,,,,,,,,22.71576036,14.39984349,34.08479387,,,,18.76084611,36,191889,13.13986597,25.97291897,,,,,,,24.66395363,13.48401296,41.3819233,,,,15.582257,9.235033052,24.62668398,,,,19.40443317,52,267980,14.49215882,25.44633247,,,,,,,21.30753033,12.41242163,34.11542015,,,,19.22587927,13.06305219,27.28960097,,,,,,3800,,,,,0.650864629,18631,28625,,,0.523,,,,,21.5426948,,,,,0.743129034,11167,15027,0.718681123,0.767576946,0.124540601,1796,14421,0.096081126,0.153000075,0.806548213,12120,15027,0.778694707,0.83440172,38247,,,,,0.212095066,8112,38247,,,0.207702565,7944,38247,,,0.283708526,10851,38247,,,0.008811149,337,38247,,,0.007320836,280,38247,,,0.003137501,120,38247,,,0.085235443,3260,38247,,,0.606426648,23194,38247,,,0.020264612,726,35826,0.011964913,0.028564311,0.507464638,19409,38247,,,0.672790901,25377,37719,, -45,073,45073,SC,Oconee County,2024,1,10139.55337,1492,216247,9237.986621,11041.12012,0,,,,2,,,,2,10085.54226,7351.464486,12819.62004,,5966.357951,3782.159141,8952.466381,1,10756.31845,9700.407845,11812.22906,,,,,2,,0.166,,,0.14,0.195,3.984706957,,,3.221750789,4.81347997,5.742239395,,,4.810672318,6.723008667,0.091452111,444,4855,0.083343766,0.099560457,0,,,,,,,0.149560117,0.111706395,0.187413839,0.072727273,0.04846217,0.096992375,0.087895143,0.078998415,0.09679187,,,,0.10619469,0.049389278,0.163000103,0.189,,,0.151,0.232,0.354,,,0.298,0.414,7.3,0.104052422,0.115,,,0.247,,,0.205,0.295,0.5477502,43057,78607,,,0.162832732,,,0.132619424,0.196291822,0.333333333,25,75,0.274250935,0.392550743,511.3,405,79203,,,27.40568617,401,14632,24.72327984,30.0880925,,,,,,,26.18243243,17.78969255,37.16387289,36.5497076,27.12789747,48.18623294,26.66198913,23.66481602,29.65916223,,,,31.43418468,17.96735256,51.04714656,0.142986062,8556,59838,0.125113722,0.160858403,0.000517657,41,79203,,,1931.780488,0.000561237,45,80180,,,1781.777778,0.00115989,93,80180,,,862.1505376,2412,,,,,,,3723,,2351,0.58,,,,,,0.29,0.49,,0.59,0.44,,,,,,0.19,0.34,0.32,0.45,0.869482965,50097,57617,0.85555453,0.8834114,0.647511605,11020,17019,0.588167429,0.70685578,0.030845683,1049,34008,,,0.215,3189,,0.156617021,0.273382979,,,,,,,0.206427689,0.036520316,0.376335061,0.305147059,0.161770555,0.448523563,0.197960619,0.151302222,0.244619015,4.88822815,116726,23879,4.442887863,5.333568437,0.296528511,4493,15152,0.232354173,0.36070285,15.02468341,119,79203,,,114.3485933,451,394408,103.795042,124.9021447,,,,,,,110.9685474,75.90240424,156.6544789,57.23342432,30.474388,97.87089865,121.1591495,109.315126,133.003173,,,,6.3,,,,,0,,,,,0.130240444,4225,32440,0.107388433,0.153092455,0.105805243,0.084200887,0.1274096,0.019882861,0.012494368,0.027271353,0.014796548,0.007822831,0.021770265,0.790628651,25040,31671,0.770457861,0.810799441,,,,,,,0.818915285,0.741430064,0.896400505,0.60371517,0.439614144,0.767816197,0.815776439,0.799976453,0.831576425,0.299,,31671,0.264985118,0.333014882,75.62057601,,,74.93127258,76.30987944,,,,,,,74.47415554,72.28646079,76.66185029,98.91954244,69.20647404,128.6326109,75.13624714,74.3542206,75.91827368,,,,453.0947214,1492,216247,427.3145269,478.8749159,,,,,,,513.1962144,413.7005733,612.6918554,249.7139323,163.1214312,365.8887684,467.0428943,438.312558,495.7732306,,,,68.81002577,47,68304,50.55901875,91.50274704,,,,,,,,,,,,,75.63856403,53.78641316,103.400407,,,,8.128429181,40,4921,5.807068978,11.06861349,,,,,,,,,,,,,8.570708344,5.93546468,11.97670585,,,,,,,0.121,,,0.103,0.14,0.179,,,0.155,0.205,0.108,,,0.093,0.124,160.1,110,68724,,,0.115,8940,,,,0.104052422,7728.285551,74273,,,27.64235814,66,238764,21.37859779,35.16785715,,,,,,,,,,,,,30.90558344,23.69513361,39.61956317,,,,0.347,,,0.331,0.364,0.169544284,7571,44655,0.146905986,0.192182582,0.067142231,1073,15981,0.048078402,0.086206061,0.001234722,99,80180,,,809.8989899,0.84,645.96,769,,,0.0765588,291,3801,0.03149697,0.121620631,2.850025027,,,,,,,2.501131966,2.402164166,2.971053576,2.799793539,,,,,,,2.350347112,2.344150268,2.938601642,0.095181589,,,,,-2932.233,,,,,0.803639063,42224,52541,0.721028538,0.886249588,61716,,,53463.74468,69968.25532,13819,9390.234043,18247.76596,,,,38653,31168.06383,46137.93617,39688,12435.06383,66940.93617,59539,55036.3617,64041.6383,,,,,,0.646201975,6610,10229,,,59.66787368,,,,,0.228692722,,61716,,,3.520173301,13,3693,,,7.868598072,43,546476,5.694543441,10.59894997,,,,,,,,,,,,,7.378840524,5.110061567,10.31119003,,,,19.32628982,75,394408,14.94695115,24.58777924,19.01584146,,,,,,,,,,,,,20.8811613,15.85594123,26.99374316,,,,19.77647512,78,394408,15.63248291,24.68193598,,,,,,,,,,,,,20.4945825,15.91484524,25.9817668,,,,19.57999985,107,546476,15.86997459,23.29002512,,,,,,,,,,,,,20.4003238,16.48553821,24.96482978,,,,,,7600,,,,,0.661268293,40668,61500,,,0.588,,,,,17.4269603,,,,,0.752166065,25002,33240,0.726770953,0.777561178,0.111721324,3560,31865,0.091424818,0.13201783,0.799669073,26581,33240,0.778495857,0.82084229,80180,,,,,0.188899975,15146,80180,,,0.247767523,19866,80180,,,0.071077576,5699,80180,,,0.003953604,317,80180,,,0.008455974,678,80180,,,0.000424046,34,80180,,,0.0604889,4850,80180,,,0.83996009,67348,80180,,,0.009816571,738,75179,0.003639727,0.015993415,0.506323273,40597,80180,,,0.637475034,50110,78607,, -45,075,45075,SC,Orangeburg County,2024,1,15467.03814,2132,232886,14424.1205,16509.95578,0,,,,2,,,,2,16947.09941,15548.44832,18345.75051,,,,,2,14526.67136,12742.94797,16310.39475,,,,,2,,0.226,,,0.195,0.26,4.468011543,,,3.600469101,5.276581966,5.85373276,,,4.864791358,6.777855817,0.12955719,828,6391,0.121323916,0.137790463,0,,,,,,,0.156674069,0.145483193,0.167864944,0.09375,0.058043627,0.129456373,0.07334428,0.061389843,0.085298717,,,,0.104166667,0.043058614,0.16527472,0.221,,,0.184,0.264,0.428,,,0.369,0.485,7,0.128078433,0.117,,,0.321,,,0.274,0.37,0.490554837,41316,84223,,,0.134195033,,,0.107437238,0.16209042,0.355670103,69,194,0.320208279,0.391054131,1172.8,973,82962,,,24.03754978,507,21092,21.94516146,26.12993811,,,,,,,23.67213115,21.23016393,26.11409836,38.46153846,24.10364139,58.23123145,23.50098836,19.04801282,27.9539639,,,,25.64102564,12.29586845,47.15475908,0.130243223,7952,61055,0.113562372,0.146924074,0.000482149,40,82962,,,2074.05,0.000373072,31,83094,,,2680.451613,0.002178256,181,83094,,,459.0828729,2956,,,,,,,3153,,2737,0.44,,,,,,0.31,0.47,,0.42,0.31,,,,,,0.32,0.25,0.33,0.35,0.842720772,47848,56778,0.82573343,0.859708114,0.535330511,9864,18426,0.482720911,0.587940112,0.05037822,1645,32653,,,0.316,5482,,0.230212766,0.401787234,,,,0.714285714,0.296572913,1,0.423310722,0.378145991,0.468475452,0.674367437,0.62282477,0.725910103,0.184500312,0.114289866,0.254710757,6.042553192,88040,14570,5.279220759,6.805885624,0.536266284,9715,18116,0.484610148,0.58792242,13.74123093,114,82962,,,125.6732496,539,428890,115.0635146,136.2829845,,,,,,,109.9146835,97.26403505,122.5653319,117.8318932,60.88545865,205.8286042,164.0769619,143.0539107,185.1000131,,,,8.5,,,,,0,,,,,0.158935474,5345,33630,0.136044917,0.181826032,0.139642417,0.116162153,0.163122681,0.018287244,0.01072531,0.025849177,0.007136485,0.003171846,0.011101125,0.83911542,26485,31563,0.82216736,0.85606348,,,,,,,0.812385727,0.786573347,0.838198107,,,,0.850715564,0.81436006,0.887071067,0.418,,31563,0.380510662,0.455489338,70.98087276,,,70.28431622,71.67742929,,,,,,,69.81771773,68.90130749,70.73412796,89.55068809,73.78151576,105.3198604,71.62881344,70.4577202,72.79990668,,,,685.3225413,2132,232886,653.61001,717.0350727,,,,,,,739.6311215,697.0333729,782.2288701,,,,655.2153276,602.2448058,708.1858495,,,,113.5113628,97,85454,92.05006855,138.4742364,,,,,,,138.9903598,109.8661117,173.4662593,,,,87.02821546,52.39667078,135.9053388,,,,10.99572389,72,6548,8.60347674,13.84729445,,,,,,,15.24316477,11.71326634,19.50262939,,,,,,,,,,,,,0.142,,,0.124,0.162,0.191,,,0.167,0.216,0.155,,,0.135,0.173,682,480,70380,,,0.117,9970,,,,0.128078433,11847.38314,92501,,,29.078906,74,254480,22.83319563,36.50590361,,,,,,,19.83987303,13.48023115,28.16111609,,,,48.39356956,34.72806103,65.65134152,,,,0.394,,,0.38,0.408,0.164213452,7207,43888,0.141575155,0.18685175,0.04517522,816,18063,0.030877348,0.059473092,0.000998869,83,83094,,,1001.13253,0.76,614.84,809,,,0.093406593,459,4914,0.044135678,0.142677509,2.45846245,,,,,,,2.374160643,2.395744317,2.780399419,2.370262999,,,,,,,2.202011303,2.479593625,2.907272411,0.174812021,,,,,,,,,,0.846829895,38253,45172,0.759447077,0.934212712,42209,,,38019.7234,46398.2766,,,,46484,3903.744681,89064.25532,34367,31632.53192,37101.46809,33239,29205.80851,37272.19149,51397,47525.85106,55268.14894,,,,,,1,11640,11640,,,34.67789066,,,,,0.334383662,,42209,,,7.155247181,33,4612,,,17.49172031,106,606001,14.16178602,20.8216546,,,,,,,24.39828729,19.64397898,29.95569028,,,,5.941123466,3.06986519,10.37794707,,,,12.0046373,51,428890,8.756264819,16.0631492,11.8911609,,,,,,,7.723484961,4.577426677,12.20643603,,,,22.77788881,14.74064865,33.62465723,,,,25.88076197,111,428890,21.06603526,30.69548867,,,,,,,30.70030814,24.38047612,38.15767988,,,,18.93195714,12.47627905,27.54500368,,,,36.30357046,220,606001,31.50630146,41.10083945,,,,,,,37.80393965,31.56395421,44.04392509,,,,36.14183442,28.32942882,45.44293065,,,,,,8800,,,,,0.611531612,41205,67380,,,0.506,,,,,31.74446172,,,,,0.653593172,21364,32687,0.626894782,0.680291561,0.158553018,4589,28943,0.13516477,0.181941266,0.761525989,24892,32687,0.741415456,0.781636522,83094,,,,,0.212855321,17687,83094,,,0.210905721,17525,83094,,,0.609719113,50664,83094,,,0.006763425,562,83094,,,0.009711893,807,83094,,,0.000698005,58,83094,,,0.026656558,2215,83094,,,0.333357403,27700,83094,,,0.006796579,542,79746,0.003891178,0.009701981,0.529376369,43988,83094,,,0.65482113,55151,84223,, -45,077,45077,SC,Pickens County,2024,1,9787.786383,2186,359265,9154.90911,10420.66366,0,,,,2,,,,2,12560.60286,9804.549066,15316.65666,,5530.695872,3423.587915,8454.256142,1,10001.67935,9298.578278,10704.78042,,,,,2,,0.165,,,0.138,0.194,3.92878243,,,3.143184403,4.806129095,5.685451622,,,4.742326247,6.738465188,0.080057014,674,8419,0.074259978,0.08585405,0,,,,0.066225166,0.026560828,0.105889503,0.131481482,0.102979108,0.159983855,0.055944056,0.037110432,0.07477768,0.078289759,0.071961874,0.084617644,,,,0.0625,0.028260209,0.096739791,0.198,,,0.156,0.24,0.333,,,0.271,0.398,7,0.156013695,0.106,,,0.256,,,0.21,0.306,0.67736142,89008,131404,,,0.168970291,,,0.136551341,0.205228316,0.297297297,33,111,0.248766331,0.346699758,565.7,748,132229,,,14.03887689,546,38892,12.8612923,15.21646149,,,,,,,13.13389274,9.198817007,18.18284367,31.25,23.54177669,40.67617044,13.06750527,11.82948752,14.30552302,,,,23.6453202,15.15000281,35.18236216,0.129785751,13224,101891,0.11429639,0.145275113,0.000589886,78,132229,,,1695.24359,0.000509508,68,133462,,,1962.676471,0.00137867,184,133462,,,725.3369565,2236,,,,,,,4240,,2151,0.5,,,,,,0.31,0.46,0.46,0.5,0.48,,,,,,0.42,0.43,0.33,0.49,0.870526977,72057,82774,0.855840454,0.885213501,0.621394596,18420,29643,0.575977368,0.666811824,0.031012702,1797,57944,,,0.156,3743,,0.108340426,0.203659575,,,,0.113801453,0,0.30264303,0.17515639,0.056698308,0.293614472,0.141142857,0.059695523,0.222590191,0.122167436,0.089641315,0.154693557,4.948971122,113277,22889,4.464249808,5.433692435,0.212042318,5131,24198,0.171341866,0.252742769,12.0245937,159,132229,,,110.3047621,701,635512,102.1391015,118.4704228,,,,,,,82.07372957,57.48343118,113.6246369,55.2595224,30.21089511,92.7160889,118.6791363,109.5058497,127.8524229,,,,8.8,,,,,0,,,,,0.154575433,7500,48520,0.136177708,0.172973158,0.13448096,0.114573867,0.154388053,0.01442704,0.009356477,0.019497604,0.012159934,0.008058143,0.016261725,0.792903347,46457,58591,0.780596605,0.805210089,,,,0.586510264,0.50596175,0.667058778,0.747827976,0.650979082,0.844676869,0.570654439,0.497991981,0.643316898,0.778228819,0.752763134,0.803694504,0.395,,58591,0.366553581,0.423446419,74.89478775,,,74.40312268,75.38645282,,,,95.81184031,61.33499146,130.2886892,72.52643783,70.47248361,74.58039205,86.94575445,78.61234158,95.27916732,74.65460405,74.12235066,75.18685744,,,,494.4723775,2186,359265,472.6782619,516.2664932,,,,,,,620.8242749,522.8347805,718.8137693,200.7386471,127.2510827,301.2065325,502.6328123,479.1160227,526.1496019,,,,45.44657237,57,125422,34.4207901,58.88130583,,,,,,,,,,,,,46.1744017,33.92721359,61.40216562,,,,5.359695093,45,8396,3.909398379,7.171693723,,,,,,,,,,,,,5.451154784,3.857561562,7.482135837,,,,,,,0.123,,,0.104,0.143,0.18,,,0.154,0.207,0.103,,,0.088,0.119,159.3,183,114858,,,0.106,13680,,,,0.156013695,18600.57675,119224,,,38.7500775,150,387096,32.54877357,44.95138144,,,,,,,,,,,,,43.46134676,36.33788278,50.58481073,,,,0.326,,,0.309,0.342,0.153375028,11845,77229,0.134311198,0.172438857,0.058274879,1512,25946,0.041594028,0.07495573,0.000906625,121,133462,,,1102.991736,0.87,1015.29,1167,,,0.027278667,334,12244,0.013467163,0.041090171,3.014337853,,,,,,,2.505596019,2.800788273,3.079005756,3.035001567,,,,,,,2.638534843,2.752543676,3.087337485,0.059647025,,,,,-471.7617,,,,,0.776009338,41882,53971,0.724687026,0.827331651,55333,,,50465.76596,60200.23404,82917,63571.97872,102262.0213,58586,41388.04255,75783.95745,36317,32721.08511,39912.91489,42083,23557.7234,60608.2766,59439,55603.59575,63274.40426,,,,,,0.573779353,9554,16651,,,40.85038578,,,,,0.336815282,,55333,,,4.384591294,28,6386,,,4.772369345,42,880066,3.439504052,6.450856956,,,,,,,,,,,,,4.51926336,3.129721252,6.315217569,,,,18.82937386,123,635512,15.34267712,22.3160706,19.35447324,,,,,,,,,,,,,19.57011074,15.72023022,23.41999125,,,,14.79122345,94,635512,11.95281417,18.10071151,,,,,,,,,,,,,15.31939084,12.20180929,18.99068983,,,,18.06682681,159,880066,15.25855338,20.87510023,,,,,,,16.57715006,7.949387799,30.48596917,,,,18.20997295,15.1606383,21.2593076,,,,,,11000,,,,,0.580042334,57546,99210,,,0.618,,,,,47.81242984,,,,,0.695337796,35004,50341,0.678672575,0.712003017,0.145036449,7083,48836,0.124879836,0.165193061,0.828350649,41700,50341,0.812100607,0.84460069,133462,,,,,0.183018387,24426,133462,,,0.174154441,23243,133462,,,0.069547886,9282,133462,,,0.003064543,409,133462,,,0.019713477,2631,133462,,,0.000412102,55,133462,,,0.045503589,6073,133462,,,0.845738862,112874,133462,,,0.004980024,622,124899,0.003097139,0.006862909,0.50040461,66785,133462,,,0.375589784,49354,131404,, -45,079,45079,SC,Richland County,2024,1,8986.673208,5878,1190056,8659.73626,9313.610156,0,,,,2,3683.960303,2485.552547,5259.082401,,11334.0515,10808.23536,11859.86763,,7307.402148,6043.096275,8571.708021,,6937.663782,6492.609417,7382.718147,,,,,2,,0.168,,,0.144,0.194,3.747862031,,,3.121220734,4.444041284,5.334892261,,,4.636164733,6.108365886,0.11077102,3619,32671,0.107367763,0.114174277,0,,,,0.099322799,0.079628149,0.119017449,0.144392795,0.139141389,0.149644201,0.078179697,0.067802617,0.088556777,0.066642188,0.06195879,0.071325587,,,,0.106735751,0.087253581,0.126217922,0.156,,,0.127,0.185,0.373,,,0.33,0.418,7.3,0.17007576,0.084,,,0.244,,,0.208,0.281,0.815197514,339242,416147,,,0.199752408,,,0.170583709,0.230788532,0.430107527,120,279,0.402443936,0.457365132,1344.2,5623,418307,,,13.39622311,1528,114062,12.72452091,14.0679253,,,,,,,19.65697021,18.47749059,20.83644983,27.97099304,23.98319593,31.95879016,4.105482666,3.520168019,4.690797313,,,,19.4095134,15.15899099,24.48246012,0.099524351,32725,328814,0.088800947,0.110247755,0.000824753,345,418307,,,1212.484058,0.000948843,400,421566,,,1053.915,0.003951932,1666,421566,,,253.0408163,2136,,,,,,384,2571,976,1835,0.46,,,,,,0.39,0.45,0.34,0.47,0.42,,,,,,0.42,0.35,0.39,0.46,0.922023683,242625,263144,0.915539311,0.928508055,0.737228688,82605,112048,0.70982196,0.764635416,0.032713011,6439,196833,,,0.19,16693,,0.145914894,0.234085106,0.013245033,0,0.372297136,0.06735553,0.001459394,0.133251666,0.30364714,0.274979811,0.33231447,0.251580278,0.178005149,0.325155407,0.080060815,0.053366798,0.106754833,4.98740414,125518,25167,4.690724896,5.284083385,0.38273989,33892,88551,0.352701446,0.412778334,11.666073,488,418307,,,80.46035055,1673,2079285,76.60476787,84.31593324,,,,28.21717264,16.4375429,45.17842684,82.22696863,76.58160986,87.8723274,60.92807799,47.3130366,77.2408569,87.50455753,81.26683795,93.74227711,,,,7.9,,,,,1,,,,,0.17757911,27610,155480,0.165940465,0.189217755,0.162320261,0.149725692,0.174914831,0.016625933,0.013621211,0.019630654,0.006013635,0.004045282,0.007981988,0.734233591,149034,202979,0.720045049,0.748422133,,,,0.632544037,0.572560907,0.692527167,0.770543392,0.747680936,0.793405847,0.565929239,0.526327262,0.605531216,0.798167725,0.786687381,0.809648069,0.313,,202979,0.294085693,0.331914307,76.12609838,,,75.83939573,76.41280103,,,,86.93910887,83.31466215,90.56355559,73.53115874,73.10197268,73.96034481,80.22155682,78.23824811,82.20486553,78.17103978,77.76810612,78.57397344,,,,439.531606,5878,1190056,428.0335967,451.0296152,,,,192.5524524,146.5798482,248.3786345,541.9242705,523.4234098,560.4251312,295.0009317,246.4129059,343.5889575,361.7330218,345.9460827,377.5199608,,,,71.61953464,307,428654,63.60795086,79.63111841,,,,,,,99.3007761,86.0884633,112.5130889,59.86231667,36.5654582,92.45249297,42.2801263,32.41593039,54.20121376,,,,7.824019741,260,33231,6.872978533,8.775060948,,,,,,,10.8801466,9.333062157,12.42723103,,,,4.169623847,3.063682769,5.544715786,,,,,,,0.112,,,0.097,0.127,0.17,,,0.149,0.191,0.124,,,0.109,0.141,872.3,3099,355282,,,0.084,34770,,,,0.17007576,65394.81005,384504,,,22.74328734,285,1253117,20.10278304,25.38379164,,,,,,,19.28037657,15.77170604,22.78904709,,,,29.76369957,25.04744468,34.47995446,,,,0.358,,,0.345,0.372,0.120067797,29115,242488,0.106961414,0.13317418,0.044369052,4028,90784,0.032454158,0.056283945,0.002123037,895,421566,,,471.0234637,0.773087535,7144.875,9242,,,0.054491477,1707,31326,0.038873285,0.070109668,2.864912455,,,,,,3.543413267,2.568467273,2.650714805,3.554327135,2.825999875,,,,,,3.780910264,2.499575429,2.72716263,3.534048018,0.149401957,,,,,-3931.9,,,,,0.846512402,45765,54063,0.799869957,0.893154848,61010,,,57449.82979,64570.17021,,,,71280,42239.82979,100320.1702,49578,47224.80851,51931.19149,54198,47902.17021,60493.82979,79140,75321.2766,82958.7234,,,,,,0.678896045,41006,60401,,,47.06401577,,,,,0.305474512,,61010,,,5.15681799,122,23658,,,12.46596464,361,2895885,11.18000197,13.7519273,,,,,,,21.5987607,19.13817187,24.05934953,9.137904026,4.995777163,15.33185024,3.938781489,2.904146538,5.222252817,,,,12.30322316,262,2079285,10.77663723,13.82980909,12.60048526,,,,,,,7.368048731,5.785503006,9.249910458,,,,18.08048027,15.200568,20.96039253,,,,18.75644753,390,2079285,16.89489904,20.61799602,,,,,,,24.92032055,21.81246218,28.02817892,12.54401606,6.857930306,21.04672747,14.23685261,11.72081283,16.7528924,,,,14.95225121,433,2895885,13.54387491,16.36062751,,,,,,,18.68000925,16.39170812,20.96831039,17.62310062,11.61373436,25.64068616,12.06251831,10.11251482,14.0125218,,,,,,41000,,,,,0.616747013,193822,314265,,,0.61,,,,,109.5626138,,,,,0.597857749,97287,162726,0.586731206,0.608984292,0.176414135,27757,157340,0.163888678,0.188939592,0.875871096,142527,162726,0.864181605,0.887560587,421566,,,,,0.212457836,89565,421566,,,0.141536557,59667,421566,,,0.48344506,203804,421566,,,0.003667279,1546,421566,,,0.030545632,12877,421566,,,0.00145173,612,421566,,,0.05658426,23854,421566,,,0.403644981,170163,421566,,,0.009073551,3564,392790,0.007373201,0.0107739,0.518948397,218771,421566,,,0.085582739,35615,416147,, -45,081,45081,SC,Saluda County,2024,1,10395.34014,377,54052,8660.133566,12130.54672,0,,,,2,,,,2,13962.87866,9944.065471,17981.69185,,8095.710634,4798.031201,12794.71307,1,9692.777184,7348.447296,12037.10707,,,,,2,,0.214,,,0.184,0.246,4.202894572,,,3.382891517,5.106995688,5.769080232,,,4.738348389,6.882705894,0.088724584,144,1623,0.074890716,0.102558452,0,,,,,,,0.134615385,0.096742297,0.172488472,0.064891847,0.045197353,0.084586341,0.089051095,0.067721754,0.110380435,,,,,,,0.207,,,0.169,0.248,0.403,,,0.331,0.479,8.8,0.0092181,0.093,,,0.298,,,0.25,0.351,0.242922278,4582,18862,,,0.157395655,,,0.125872445,0.192979254,0.32,8,25,0.213480444,0.427129614,430.4,81,18821,,,33.7141265,121,3589,27.70688214,39.72137086,,,,,,,24.16918429,15.48565242,35.96183041,71.32667618,52.94003386,94.03533048,23.03370787,16.52938644,31.2478256,,,,,,,0.186114911,2721,14620,0.162285124,0.209944698,0.000159396,3,18821,,,6273.666667,0.000264019,5,18938,,,3787.6,0.000580843,11,18938,,,1721.636364,2870,,,,,,,2009,,2984,0.43,,,,,,,0.47,,0.42,0.38,,,,,,,0.36,,0.38,0.831844456,11081,13321,0.809784126,0.853904787,0.532730302,2238,4201,0.446236675,0.61922393,0.028629369,240,8383,,,0.237,958,,0.157170213,0.316829787,,,,,,,0.16629956,0.05904904,0.273550079,0.327335047,0.204637634,0.450032461,0.096668487,0.037622258,0.155714717,4.50803283,103261,22906,3.920840968,5.095224692,0.280778589,1154,4110,0.202618849,0.358938328,11.15774932,21,18821,,,75.54296506,76,100605,59.51926433,94.55328559,,,,,,,87.57297748,54.20905331,133.8645986,,,,81.74108511,60.26942343,108.3768199,,,,8.8,,,,,1,,,,,0.163722826,1205,7360,0.118319944,0.209125708,0.103381643,0.069343675,0.13741961,0.055027174,0.025422606,0.084631742,0.013586957,0,0.028237032,0.78433657,6059,7725,0.758320897,0.810352243,,,,,,,0.600739372,0.482517109,0.718961634,,,,0.828571429,0.751451843,0.905691015,0.539,,7725,0.465464736,0.612535264,75.08600456,,,73.72285626,76.44915286,,,,,,,71.55460005,68.76718814,74.34201197,80.76996847,69.73724195,91.80269499,75.87356194,74.05577488,77.691349,,,,491.7620987,377,54052,438.8425894,544.681608,,,,,,,672.7252689,544.9956834,800.4548544,447.5494892,231.2553519,781.77889,458.0787565,391.2520704,524.9054426,,,,101.0692058,19,18799,60.85026419,157.8320845,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.137,,,0.118,0.157,0.187,,,0.162,0.212,0.131,,,0.113,0.151,294.8,47,15943,,,0.093,1770,,,,0.0092181,183.2097458,19875,,,,,,,,,,,,,,,,,,,,,,,,,,0.375,,,0.361,0.388,0.224514677,2394,10663,0.193535954,0.2554934,0.083794847,348,4153,0.055199102,0.112390592,0.000528039,10,18938,,,1893.8,0.775,113.925,147,,,,,,,,2.318435383,,,,,,,2.189528697,2.220458295,2.568329838,2.535859047,,,,,,,2.139966955,2.72672457,2.640111912,0.050822777,,,,,-12784.04,,,,,0.969005169,45926,47395,0.816298501,1.121711837,57291,,,49359.25532,65222.74468,,,,,,,36701,29410.2766,43991.7234,38926,37583.19149,40268.80851,62060,52887.91489,71232.08511,,,,,,0.665574964,1829,2748,,,35.99268789,,,,,0.246356321,,57291,,,2.685765443,3,1117,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.91580935,14,100605,7.607902466,23.34836352,,,,,,,,,,,,,,,,,,,24.8482482,35,140855,17.30771531,34.5578981,,,,,,,,,,,,,24.33119624,14.86212677,37.57755922,,,,,,2000,,,,,0.627894381,9274,14770,,,0.486,,,,,4.548298752,,,,,0.775831636,5714,7365,0.745191508,0.806471764,0.101717113,699,6872,0.070274411,0.133159815,0.768635438,5661,7365,0.727153851,0.810117025,18938,,,,,0.217235189,4114,18938,,,0.210317879,3983,18938,,,0.220614637,4178,18938,,,0.016316401,309,18938,,,0.005227585,99,18938,,,0.009451896,179,18938,,,0.166226634,3148,18938,,,0.591456331,11201,18938,,,0.042740309,763,17852,,,0.48817193,9245,18938,,,0.985685505,18592,18862,, -45,083,45083,SC,Spartanburg County,2024,1,10441.77953,5937,917706,10046.84903,10836.71003,0,,,,2,4483.857454,3188.460974,6129.580747,,14184.9287,13159.48972,15210.36767,,5679.164589,4636.524247,6721.804932,,10160.11866,9679.508537,10640.72877,,,,,2,,0.17,,,0.147,0.196,3.928770079,,,3.202371091,4.691358868,5.556403752,,,4.717014903,6.415588165,0.08989836,2450,27253,0.086502344,0.093294376,0,,,,0.102920723,0.080710217,0.125131229,0.148233623,0.138954225,0.157513021,0.07754386,0.067724567,0.087363153,0.071494625,0.06765546,0.07533379,,,,0.102918587,0.079577106,0.126260068,0.179,,,0.148,0.216,0.345,,,0.299,0.392,7.4,0.141213262,0.094,,,0.247,,,0.21,0.287,0.716838874,235121,327997,,,0.160213227,,,0.13325413,0.1917998,0.24024024,80,333,0.212733304,0.268550217,546.9,1837,335864,,,20.17964476,1494,74035,19.15636523,21.2029243,,,,9.933774834,6.14916319,15.18483005,22.25123124,19.9990959,24.50336657,31.39013453,27.34210885,35.4381602,17.01139255,15.8090374,18.21374769,,,,39.82869379,32.14689624,48.7928407,0.123697988,33810,273327,0.111783095,0.135612882,0.000619298,208,335864,,,1614.730769,0.00049157,170,345831,,,2034.3,0.001382178,478,345831,,,723.4958159,2698,,,,,,1307,3653,1225,2584,0.54,,,,,,0.33,0.54,0.33,0.54,0.47,,,,,,0.44,0.38,0.31,0.48,0.878311447,196307,223505,0.869915761,0.886707133,0.623796351,53445,85677,0.596673357,0.650919346,0.031490798,4851,154045,,,0.2,15603,,0.16306383,0.23693617,0.453947368,0.010183456,0.897711281,0.015122873,0,0.067989121,0.332216605,0.288600075,0.375833135,0.394435719,0.330695844,0.458175594,0.119482393,0.101272572,0.137692214,4.42438932,116826,26405,4.162701826,4.686076814,0.260530606,19817,76064,0.237570679,0.283490533,11.76071267,395,335864,,,103.9563309,1666,1602596,98.96438903,108.9482727,,,,35.00175009,19.13578248,58.72698915,97.5841816,86.89214329,108.2762199,39.19797534,28.69784446,52.28460603,117.5620128,111.1089188,124.0151068,,,,7.7,,,,,0,,,,,0.132250189,15710,118790,0.121440111,0.143060267,0.107009965,0.096801062,0.117218869,0.025675562,0.020979348,0.030371776,0.005850661,0.004105222,0.0075961,0.813552286,123459,151753,0.801256735,0.825847836,,,,0.789091819,0.728544611,0.849639027,0.833241223,0.817395328,0.849087118,0.709124558,0.674144942,0.744104173,0.839467766,0.824337212,0.85459832,0.307,,151753,0.289287237,0.324712763,74.30547351,,,73.99977786,74.61116916,,,,87.45266473,82.58388879,92.32144067,71.21186653,70.47548339,71.94824968,84.92286779,80.99551187,88.85022371,74.46317643,74.10019682,74.82615605,,,,514.6717585,5937,917706,501.1122774,528.2312396,,,,248.3186367,191.2356085,317.0973554,665.5972633,630.1761395,701.0183872,270.35398,222.7581154,317.9498447,504.764508,488.8057935,520.7232226,,,,59.8573002,200,334128,51.56150163,68.15309876,,,,,,,95.16946963,74.18927047,120.2408995,33.59780839,17.88941796,57.45327558,57.17810981,46.68187736,67.67434226,,,,5.7140709,152,26601,4.805665092,6.622476707,,,,,,,9.312320917,6.954886676,12.21186994,,,,4.900803023,3.903462252,6.075282699,,,,,,,0.118,,,0.102,0.135,0.177,,,0.154,0.199,0.115,,,0.1,0.131,277.3,779,280875,,,0.094,30310,,,,0.141213262,40147.91887,284307,,,33.60988497,330,981854,29.98356495,37.23620499,,,,,,,20.94679514,15.09660748,28.31398188,,,,41.43059544,36.52488438,46.33630649,,,,0.344,,,0.33,0.357,0.15107932,29717,196698,0.135589958,0.166568681,0.055304292,4451,80482,0.041006419,0.069602164,0.001029405,356,345831,,,971.4353933,0.879443833,3194.14,3632,,,0.077683771,1414,18202,0.057150472,0.09821707,2.854922745,,,,,,3.085100014,2.439535479,2.546596838,3.112558577,2.8751763,,,,,,3.221298104,2.375266085,2.700335234,3.138896847,0.105766395,,,,,-2141.22271,,,,,0.776336265,42905,55266,0.742449424,0.810223105,58535,,,55208.3617,61861.6383,57386,24938.17021,89833.82979,69894,65175.70213,74612.29787,45224,41573.2766,48874.7234,52426,41589.40426,63262.59575,69604,67118.55319,72089.44681,,,,,,0.590535449,31035,52554,,,42.07695979,,,,,0.318390706,,58535,,,4.797386955,94,19594,,,8.721877057,192,2201361,7.488160431,9.955593683,,,,,,,22.59786871,18.21232477,26.98341265,,,,5.548484395,4.419336849,6.878181207,,,,18.49285188,300,1602596,16.34735965,20.63834411,18.71962741,,,,,,,10.13910697,6.979294706,14.23907586,,,,22.50021874,19.60185145,25.39858604,,,,20.40439387,327,1602596,18.19279738,22.61599037,,,,,,,30.19010618,24.53702858,36.75537102,,,,19.82418255,17.17426642,22.47409869,,,,19.85135559,437,2201361,17.99010212,21.71260907,,,,,,,22.59786871,18.21232477,26.98341265,12.12360977,7.299205051,18.93251844,20.52270734,18.2269735,22.81844118,,,,,,34700,,,,,0.643834727,148655,230890,,,0.648,,,,,47.75281461,,,,,0.727945516,91280,125394,0.717220966,0.738670065,0.115375707,13948,120892,0.104726927,0.126024488,0.854490646,107148,125394,0.843042783,0.865938508,345831,,,,,0.230343723,79660,345831,,,0.164574604,56915,345831,,,0.201390274,69647,345831,,,0.004481958,1550,345831,,,0.026582348,9193,345831,,,0.000815427,282,345831,,,0.081811636,28293,345831,,,0.667852217,230964,345831,,,0.023714613,7359,310315,,,0.51151574,176898,345831,,,0.29515209,96809,327997,, -45,085,45085,SC,Sumter County,2024,1,12810.40711,2189,295457,12026.42404,13594.39017,0,,,,2,,,,2,15094.86173,13844.74171,16344.98175,,,,,2,11714.13147,10590.92086,12837.34207,,,,,2,,0.202,,,0.175,0.231,4.159083486,,,3.421432653,4.95611607,5.223960117,,,4.357794719,6.115396949,0.113359057,1087,9589,0.107013476,0.119704639,0,,,,0.10738255,0.057670408,0.157094693,0.153083226,0.142720479,0.163445972,0.086956522,0.062944704,0.11096834,0.073465194,0.065269503,0.081660885,,,,0.060836502,0.031947608,0.089725396,0.205,,,0.17,0.245,0.419,,,0.362,0.474,8.1,0.070392024,0.095,,,0.315,,,0.27,0.362,0.782636705,82612,105556,,,0.158705781,,,0.128541155,0.191656006,0.387387387,43,111,0.340797055,0.43330274,1020.4,1069,104758,,,29.55472615,681,23042,27.3349486,31.7745037,,,,,,,34.22786437,30.9775073,37.47822145,29.8245614,20.65437578,41.67683517,20.84560123,17.77457261,23.91662984,,,,46.57534247,32.25477861,65.08437273,0.111797354,9286,83061,0.096307992,0.127286716,0.000534565,56,104758,,,1870.678571,0.000567242,59,104012,,,1762.915254,0.00173057,180,104012,,,577.8444444,3217,,,,,,,4151,,2722,0.45,,,,,,0.49,0.49,0.21,0.42,0.45,,,,,,0.5,0.41,0.42,0.47,0.88805938,61737,69519,0.875827618,0.900291141,0.63788437,16969,26602,0.586522528,0.689246211,0.038307222,1604,41872,,,0.211,5077,,0.124021277,0.297978723,,,,,,,0.338740293,0.290668908,0.386811679,0.108060748,0.000371476,0.215750019,0.10497475,0.058646318,0.151303183,5.023663944,107632,21425,4.494598667,5.552729221,0.37783466,9447,25003,0.325217443,0.430451877,9.736726551,102,104758,,,99.02145716,526,531198,90.55907737,107.4838369,,,,,,,98.87411093,86.56822678,111.1799951,53.59056806,27.69102853,93.61193751,110.1951548,96.85171116,123.5385984,,,,8.3,,,,,0,,,,,0.146505215,6110,41705,0.128328477,0.164681954,0.125716376,0.107693809,0.143738944,0.019062463,0.012310012,0.025814913,0.008392279,0.004050493,0.012734066,0.853438332,38473,45080,0.836943484,0.86993318,,,,,,,0.852643793,0.823261484,0.882026101,0.776890559,0.664900413,0.888880705,0.866652452,0.84105755,0.892247354,0.245,,45080,0.21780375,0.27219625,72.69794069,,,72.13224656,73.26363481,,,,,,,71.22618373,70.3543853,72.09798215,96.14500086,76.87315206,115.4168497,73.15870849,72.35784995,73.95956703,,,,606.6379312,2189,295457,579.9943667,633.2814956,,,,,,,687.231989,645.5246069,728.9393711,,,,575.937418,538.2542014,613.6206345,,,,70.89970832,79,111425,56.13196676,88.36219086,,,,,,,91.97641076,68.4824791,120.931994,,,,54.31958812,34.43395928,81.50605284,,,,7.759852971,76,9794,6.113881548,9.712613127,,,,,,,10.50199538,7.794783394,13.84557166,,,,6.297229219,4.075234722,9.295952569,,,,,,,0.129,,,0.112,0.147,0.18,,,0.157,0.205,0.139,,,0.121,0.158,730.4,634,86799,,,0.095,10030,,,,0.070392024,7564.045354,107456,,,26.42847479,84,317839,21.08038653,32.72025012,,,,,,,17.33425783,11.32331272,25.39870399,,,,39.49642064,29.83517169,51.28938746,,,,0.38,,,0.367,0.393,0.141195844,8317,58904,0.120940525,0.161451163,0.041862672,1059,25297,0.028756289,0.054969054,0.001115256,116,104012,,,896.6551724,0.8,923.2,1154,,,0.067587477,367,5430,0.03542417,0.099750784,2.503895048,,,,,,3.079925676,2.281316313,2.6507854,2.927213155,2.596559068,,,,,,3.384344666,2.354670739,2.911902533,3.013898165,0.052288147,,,,,,,,,,0.804593983,39792,49456,0.74549896,0.863689005,56937,,,53566.2766,60307.7234,89130,29918.93617,148341.0638,79375,3639.170213,155110.8298,40753,36732.91489,44773.08511,53831,38565.6383,69096.3617,67140,62909.02128,71370.97872,,,,,,0.994244228,15201,15289,,,39.08224912,,,,,0.327326694,,56937,,,5.884885891,41,6967,,,12.19718151,91,746074,9.820409704,14.97543607,,,,,,,22.47139875,17.790818,28.00606761,,,,,,,,,,12.36177823,65,531198,9.455780837,15.87922128,12.23649185,,,,,,,9.085309847,5.549543284,14.0315242,,,,16.13794611,11.42017115,22.15059189,,,,20.51965557,109,531198,16.66741954,24.3718916,,,,,,,29.10407298,22.8129473,36.59400224,,,,13.4589502,9.205911975,19.0000219,,,,22.65190852,169,746074,19.2366977,26.06711935,,,,,,,27.02256811,21.86287129,33.03368822,,,,19.94083228,15.45387112,25.32415211,,,,,,11200,,,,,0.611958969,48920,79940,,,0.597,,,,,48.60610367,,,,,0.660556737,27028,40917,0.640394858,0.680718616,0.128289984,4962,38678,0.107523507,0.149056461,0.822396559,33650,40917,0.797338803,0.847454315,104012,,,,,0.235722801,24518,104012,,,0.178114064,18526,104012,,,0.47200323,49094,104012,,,0.005345537,556,104012,,,0.014248356,1482,104012,,,0.001451756,151,104012,,,0.045264008,4708,104012,,,0.443804561,46161,104012,,,0.004183164,411,98251,0.001438845,0.006927483,0.517228781,53798,104012,,,0.34797643,36731,105556,, -45,087,45087,SC,Union County,2024,1,15925.88143,749,74544,14081.48381,17770.27906,0,,,,2,,,,2,18769.56683,15213.56548,22325.56818,,,,,2,15424.53279,13124.16566,17724.89993,,,,,2,,0.222,,,0.192,0.255,4.63328055,,,3.741275744,5.586663538,6.279455815,,,5.124028633,7.46102828,0.124556962,246,1975,0.109993304,0.13912062,0,,,,,,,0.170212766,0.141496857,0.198928675,,,,0.104575163,0.087431872,0.121718455,,,,,,,0.237,,,0.197,0.281,0.411,,,0.334,0.484,7.5,0.037335171,0.141,,,0.339,,,0.288,0.394,0.629606519,17153,27244,,,0.141910746,,,0.110892554,0.175176677,0.53125,17,32,0.452445961,0.602523009,736.6,199,27016,,,34.44272446,178,5168,29.38280543,39.50264349,,,,,,,33.67408298,25.4370404,43.72859772,,,,33.2278481,26.87214446,39.58355174,,,,72.22222222,38.45529162,123.5021996,0.124292159,2590,20838,0.106419818,0.142164499,0.000333136,9,27016,,,3001.777778,0.000224282,6,26752,,,4458.666667,0.001084031,29,26752,,,922.4827586,2789,,,,,,,2902,,2725,0.54,,,,,,,0.58,,0.53,0.35,,,,,,,0.32,,0.35,0.815746084,15832,19408,0.792845157,0.838647012,0.479153095,2942,6140,0.408876393,0.549429796,0.04710404,527,11188,,,0.258,1392,,0.167446809,0.348553192,,,,,,,0.295646917,0.17052645,0.420767384,0.715025907,0.556316778,0.873735036,0.341000933,0.268747247,0.413254618,4.748387796,87622,18453,4.216824736,5.279950856,0.348812478,1968,5642,0.27800111,0.419623845,17.02694699,46,27016,,,119.6154693,163,136270,101.2522163,137.9787223,,,,,,,116.4768095,86.45133305,153.5601525,,,,128.0160935,104.3071812,151.7250058,,,,8.6,,,,,1,,,,,0.10465613,1225,11705,0.081513721,0.127798539,0.079843614,0.057689544,0.101997685,0.025202905,0.011848113,0.038557696,0.006407518,0.001663115,0.011151922,0.82419035,8729,10591,0.78818886,0.860191841,,,,,,,0.823430257,0.725357849,0.921502665,,,,0.841142021,0.78393345,0.898350591,0.434,,10591,0.371279656,0.496720344,69.94183573,,,68.7531834,71.13048806,,,,,,,68.7396965,66.48905986,70.99033315,,,,70.02392163,68.5509057,71.49693755,,,,713.4943939,749,74544,658.1442563,768.8445314,,,,,,,822.5547941,715.1345916,929.9749967,,,,690.9453085,623.5595649,758.3310522,,,,111.2966055,28,25158,73.95578606,160.8545828,,,,,,,143.1639227,73.97488796,250.0785618,,,,111.3895851,63.6687723,180.8897076,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.145,,,0.126,0.166,0.204,,,0.179,0.233,0.134,,,0.115,0.154,299.6,69,23034,,,0.141,3850,,,,0.037335171,1081.263898,28961,,,38.11959716,31,81323,25.90041683,54.10772537,,,,,,,,,,,,,46.05111674,29.50581943,68.52041138,,,,0.369,,,0.356,0.382,0.153445356,2356,15354,0.129615569,0.177275144,0.043818466,252,5751,0.029520594,0.058116339,0.000448565,12,26752,,,2229.333333,0.71,204.48,288,,,,,,,,2.568574655,,,,,,,2.183829743,,2.78399881,2.580011654,,,,,,,2.268712534,,2.782183835,0.024013559,,,,,-9507.092,,,,,0.69957319,35404,50608,0.602814411,0.796331969,46461,,,40546.44681,52375.55319,,,,,,,33362,28907.02128,37816.97872,28553,10282.70213,46823.29787,47154,41203.70213,53104.29787,,,,,,1,3271,3271,,,29.59615826,,,,,0.303781666,,46461,,,3.265839321,5,1531,,,10.95347382,21,191720,6.780372931,16.74354827,,,,,,,16.57385309,7.947806776,30.47990593,,,,8.900972634,4.443333469,15.92629874,,,,17.05156979,21,136270,10.2661589,26.62813844,15.41058193,,,,,,,,,,,,,21.38009142,12.22056956,34.71992901,,,,21.28127981,29,136270,14.25240709,30.5634677,,,,,,,25.62489808,12.7918568,45.850021,,,,20.57401502,12.19346521,32.51581372,,,,32.33882746,62,191720,24.79399358,41.45691732,,,,,,,29.83293556,17.68088833,47.14889994,,,,33.98553187,24.49378205,45.93856612,,,,,,2700,,,,,0.619630755,13257,21395,,,0.58,,,,,13.76163655,,,,,0.694732297,8045,11580,0.669140144,0.720324451,0.096303863,1037,10768,0.071151145,0.121456581,0.807685665,9353,11580,0.776197128,0.839174202,26752,,,,,0.207947069,5563,26752,,,0.21583433,5774,26752,,,0.304575359,8148,26752,,,0.003738038,100,26752,,,0.005083732,136,26752,,,0.000523325,14,26752,,,0.020633971,552,26752,,,0.644063995,17230,26752,,,0.002494932,64,25652,0,0.007280673,0.524671053,14036,26752,,,0.642893848,17515,27244,, -45,089,45089,SC,Williamsburg County,2024,1,16157.97916,876,82759,14413.99876,17901.95955,0,,,,2,,,,2,18310.69774,15939.21685,20682.17863,,,,,2,14053.37346,11169.52097,16937.22596,,,,,2,,0.228,,,0.199,0.26,4.322271852,,,3.585163202,5.172927775,5.530439017,,,4.662325106,6.502772898,0.133202742,272,2042,0.118464573,0.147940912,0,,,,,,,0.150147929,0.131106521,0.169189337,,,,0.096308186,0.073142038,0.119474334,,,,,,,0.219,,,0.183,0.256,0.465,,,0.409,0.527,8.1,0.044326283,0.11,,,0.312,,,0.268,0.36,0.23986334,7442,31026,,,0.133101703,,,0.108302775,0.163604618,0.258064516,16,62,0.192392424,0.326907457,1161.3,354,30484,,,26.70856245,170,6365,22.69359412,30.72353078,,,,,,,27.77170348,22.94159671,32.60181024,,,,24.23051735,17.06052035,33.39857639,,,,,,,0.125747418,2776,22076,0.107875078,0.143619758,0.000196825,6,30484,,,5080.666667,0.000166345,5,30058,,,6011.6,0.001330761,40,30058,,,751.45,2684,,,,,,,2172,,3044,0.46,,,,,,,0.5,,0.43,0.3,,,,,,,0.29,,0.31,0.829147743,18621,22458,0.809500768,0.848794717,0.445987448,3340,7489,0.379574622,0.512400275,0.04766772,513,10762,,,0.345,1950,,0.21393617,0.47606383,,,,,,,0.344862155,0.251353051,0.43837126,,,,0.141169154,0.0631398,0.219198509,6.312583615,80214,12707,5.145447829,7.479719401,0.426297463,2571,6031,0.335730396,0.516864531,9.841228185,30,30484,,,134.5003149,205,152416,116.0882524,152.9123775,,,,,,,126.1667863,103.8696774,148.4638953,,,,167.4764809,133.0005004,208.1579741,,,,7.6,,,,,1,,,,,0.18575364,2360,12705,0.153251262,0.218256019,0.152090946,0.11930797,0.184873923,0.034632035,0.020219973,0.049044096,0.01613538,0.001680179,0.030590581,0.830455126,9762,11755,0.805723836,0.855186415,,,,,,,0.828988723,0.765204223,0.892773222,,,,0.890291262,0.82401649,0.956566034,0.499,,11755,0.439080996,0.558919004,70.4620983,,,69.33757303,71.58662357,,,,,,,69.1303479,67.67298837,70.58770742,,,,71.68094356,69.76076432,73.60112281,,,,734.9716274,876,82759,681.4991731,788.4440818,,,,,,,801.2303319,729.8156863,872.6449775,,,,674.252037,585.8131913,762.6908827,,,,88.03462695,24,27262,56.40544661,130.9885467,,,,,,,109.1345629,66.66222627,168.5494811,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.137,,,0.12,0.156,0.189,,,0.168,0.214,0.161,,,0.142,0.18,824.2,217,26329,,,0.11,3450,,,,0.044326283,1525.843644,34423,,,37.49572659,34,90677,25.96688067,52.39651962,,,,,,,26.00374454,14.55409842,42.88922209,,,,62.20194899,36.86481713,98.30589629,,,,0.397,,,0.383,0.41,0.156783551,2562,16341,0.132953763,0.180613338,0.038588391,234,6064,0.025482008,0.051694774,0.00033269,10,30058,,,3005.8,0.66,202.62,307,,,,,,,,2.427775883,,,,,,,2.40787802,,,2.123404894,,,,,,,2.065994491,,,0.029455556,,,,,-24476.73,,,,,0.833161491,34747,41705,0.753244071,0.913078912,39757,,,35078.02128,44435.97872,,,,,,,33488,26198.46809,40777.53192,47875,23609.12766,72140.87234,54363,43238.06383,65487.93617,,,,,,0.99800929,3008,3014,,,42.63225154,,,,,0.355006666,,39757,,,7.697241822,12,1559,,,17.98013886,39,216906,12.7856364,24.57944172,,,,,,,22.27859745,15.13722608,31.62269075,,,,,,,,,,7.649836154,12,152416,3.818770646,13.68766998,7.873189167,,,,,,,,,,,,,,,,,,,22.30736931,34,152416,15.44850172,31.17231268,,,,,,,22.56641707,14.14225343,34.16582664,,,,24.81133051,12.82037653,43.34040122,,,,44.25880335,96,216906,35.84977281,54.04757406,,,,,,,48.86918151,37.94883163,61.9533322,,,,40.81394671,27.12057119,58.98751668,,,,,,2900,,,,,0.664795176,15985,24045,,,0.459,,,,,9.830806697,,,,,0.73956163,8874,11999,0.7080614,0.77106186,0.170898,1905,11147,0.134775126,0.207020873,0.666222185,7994,11999,0.625583856,0.706860514,30058,,,,,0.191396633,5753,30058,,,0.229057156,6885,30058,,,0.622929004,18724,30058,,,0.005622463,169,30058,,,0.007784949,234,30058,,,0.000199614,6,30058,,,0.031073258,934,30058,,,0.324139996,9743,30058,,,0.015047554,443,29440,0.006759927,0.023335182,0.511278196,15368,30058,,,0.830787082,25776,31026,, -45,091,45091,SC,York County,2024,1,8020.147208,3921,810861,7641.07091,8399.223506,0,11209.75945,6530.097974,17947.91079,1,2650.001606,1570.5589,4188.145022,1,11217.19375,10186.93882,12247.44868,,3669.901958,2696.505921,4880.191612,,7803.211471,7352.735273,8253.687668,,,,,2,,0.141,,,0.12,0.165,3.446529557,,,2.844875714,4.076346752,4.895684352,,,4.211927216,5.597825199,0.085914134,1781,20730,0.082099242,0.089729026,0,0.114035088,0.055686391,0.172383784,0.094537815,0.07595226,0.11312337,0.137892873,0.127838975,0.147946771,0.070473876,0.058109106,0.082838646,0.06910882,0.064747671,0.073469968,,,,0.082452431,0.057664429,0.107240434,0.14,,,0.11,0.172,0.336,,,0.296,0.378,8.5,0.085295671,0.068,,,0.212,,,0.18,0.248,0.718983303,202818,282090,,,0.176304624,,,0.149840409,0.204147115,0.413612565,79,191,0.379355197,0.447346411,534,1541,288595,,,14.42285818,951,65937,13.50617947,15.3395369,,,,,,,21.55322255,19.15390662,23.95253849,19.13783105,15.55428472,23.29962261,11.40476191,10.38341204,12.42611177,,,,24.20051858,18.28081166,31.42638635,0.100601675,24328,241825,0.089878271,0.111325079,0.000481644,139,288595,,,2076.223022,0.000570947,168,294248,,,1751.476191,0.001869172,550,294248,,,534.9963636,2657,,,,,,,3906,3729,2475,0.46,,,,,0.47,0.38,0.4,0.34,0.47,0.49,,,,,0.32,0.48,0.38,0.36,0.51,0.922699214,176827,191641,0.915735405,0.929663023,0.742552764,55413,74625,0.711385139,0.773720389,0.031385817,4629,147487,,,0.104,6993,,0.076595745,0.131404255,0.143646409,0.064507102,0.222785716,0.040707017,0,0.090309239,0.204841847,0.153418256,0.256265438,0.153691275,0.087549446,0.219833104,0.066310559,0.052568614,0.080052504,4.316972554,153831,35634,4.099298043,4.534647065,0.24846329,16694,67189,0.224665846,0.272260734,10.81099811,312,288595,,,102.6274338,1436,1399236,97.31929441,107.9355733,114.4283782,57.12223413,204.743977,,,,81.87999487,70.98557745,92.77441229,19.00057002,10.86046748,30.85573532,121.0068012,114.09656,127.9170424,,,,7.8,,,,,0,,,,,0.111845916,11585,103580,0.102308208,0.121383625,0.093140125,0.083439203,0.102841047,0.015302182,0.011885773,0.01871859,0.008882024,0.006202616,0.011561431,0.756357401,105856,139955,0.745486842,0.767227959,0.705685619,0.583108231,0.828263007,0.606228232,0.527753571,0.684702893,0.750978038,0.715597231,0.786358844,0.708041743,0.656916096,0.759167391,0.727105678,0.70832975,0.745881606,0.424,,139955,0.405426519,0.442573481,76.81862212,,,76.48461833,77.15262591,75.16895857,70.41354348,79.92437367,88.49659286,83.17969691,93.81348882,73.48800796,72.65229573,74.32372019,86.15060855,82.82821523,89.47300186,77.00561504,76.61930175,77.39192832,,,,391.7539483,3921,810861,379.2049866,404.30291,484.1882047,313.3410767,714.7573049,132.4417747,87.2799641,192.6958288,526.0085867,491.2978392,560.7193342,195.0717055,149.8984546,249.5814508,384.3722934,369.7503903,398.9941965,,,,46.71353591,140,299699,38.97542776,54.45164407,,,,,,,91.24979632,68.9291155,118.4954506,45.9101691,23.72245431,80.19582619,35.82562013,27.76436352,45.49727117,,,,5.354042061,111,20732,4.358003022,6.3500811,,,,,,,10.54481547,7.774914504,13.98089547,,,,4.039942069,3.026193836,5.284343695,,,,,,,0.103,,,0.089,0.12,0.161,,,0.14,0.183,0.101,,,0.088,0.115,246.5,594,240932,,,0.068,18750,,,,0.085295671,19283.04821,226073,,,33.53989093,288,858679,29.66623115,37.4135507,,,,,,,23.3749777,16.54152543,32.08398317,,,,40.3200637,35.20821101,45.4319164,,,,0.326,,,0.312,0.34,0.121282097,21061,173653,0.108175714,0.13438848,0.050225307,3589,71458,0.037118924,0.06333169,0.000730676,215,294248,,,1368.595349,0.88022029,3036.76,3450,,,0.090698444,1370,15105,0.061851804,0.119545084,3.126306279,,,,,,3.597523395,2.51599511,2.863420903,3.373886247,3.128960067,,,,,,3.756059473,2.473107132,2.826361108,3.39511832,0.096244048,,,,,172.02325,,,,,0.760820488,50889,66887,0.718291555,0.803349422,83692,,,79452.68085,87931.31915,51250,22734.08511,79765.91489,123265,116335.2979,130194.7021,57946,53865.14894,62026.85106,66316,53704.08511,78927.91489,89819,85596.3617,94041.6383,,,,,,0.374228302,18549,49566,,,37.08434891,,,,,0.222685561,,83692,,,4.739336493,76,16036,,,5.395616559,103,1908957,4.353590601,6.437642517,,,,,,,17.38285885,13.35746602,22.2402276,,,,2.768230293,1.949089594,3.815640811,,,,15.41602023,220,1399236,13.34524248,17.48679798,15.72286591,,,,,,,6.35771894,3.633985703,10.32453725,,,,19.67336157,16.83993782,22.50678532,,,,14.7223199,206,1399236,12.71184474,16.73279505,,,,,,,22.63962992,17.27642269,29.14169141,,,,14.58655838,12.18736788,16.98574889,,,,14.56292625,278,1908957,12.85101075,16.27484175,,,,,,,19.8661244,15.54401883,25.01809584,,,,14.1404196,12.12443382,16.15640539,,,,,,32800,,,,,0.722362912,144050,199415,,,0.693,,,,,61.78116165,,,,,0.726573895,79206,109013,0.714908853,0.738238937,0.100394292,10694,106520,0.090437649,0.110350935,0.91205636,99426,109013,0.903938031,0.920174689,294248,,,,,0.233330388,68657,294248,,,0.155103858,45639,294248,,,0.188364917,55426,294248,,,0.008064626,2373,294248,,,0.035283163,10382,294248,,,0.000897202,264,294248,,,0.068778717,20238,294248,,,0.679606998,199973,294248,,,0.007543229,2015,267127,0.005521577,0.009564881,0.512530247,150811,294248,,,0.226658159,63938,282090,, -46,000,46000,SD,South Dakota,2024,,8482.509859,11939,2488232,8255.749285,8709.270434,0,33059.52317,31534.66963,34584.37671,,3886.577611,2893.812314,5110.131789,,8423.824301,6972.132111,9875.516491,,5320.22736,4459.99819,6180.45653,,6278.793566,6063.573864,6494.013268,,,,,2,,0.129,,,0.11,0.15,2.823574743,,,2.437867348,3.209282137,3.943420152,,,3.504064393,4.382775911,0.069068662,5611,81238,0.067324946,0.070812379,0,0.081052446,0.076026171,0.08607872,0.103603604,0.08845167,0.118755537,0.091709464,0.080874871,0.102544058,0.069627075,0.062302853,0.076951297,0.06409681,0.062102257,0.066091362,,,,0.081837017,0.071853315,0.091820718,0.163,,,0.14,0.189,0.389,,,0.359,0.42,7.7,0.084804182,0.081,,,0.224,,,0.202,0.248,0.732543334,649522,886667,,,0.224348773,,,0.199477274,0.251347664,0.352307692,229,650,0.33328419,0.371337729,542,4853,895376,,,19.96050433,3942,197490,19.3373878,20.58362086,62.85096294,59.68186417,66.02006171,15.77636313,11.94886337,20.44010833,22.29372558,18.07870962,27.19645459,43.75238823,39.74533514,47.75944132,10.53716487,10.0132577,11.06107203,,,,34.08023615,29.88900311,38.27146918,0.114609511,81086,707498,0.107460575,0.121758447,0.000798547,715,895376,,,1252.274126,0.000640783,583,909824,,,1560.590052,0.00226967,2065,909824,,,440.5927361,2771,,,,,4834,1687,4013,3558,2647,0.51,,,,,0.23,0.32,0.34,0.37,0.52,0.47,,,,,0.29,0.44,0.3,0.32,0.48,0.92688803,545925,588987,0.923558562,0.930217498,0.687817633,153882,223725,0.673638236,0.701997031,0.020668359,9819,475074,,,0.151,32252,,0.136702128,0.165297872,0.52793469,0.508161242,0.547708138,0.075752335,0.02013371,0.13137096,0.258381689,0.189503839,0.327259539,0.264640143,0.221440651,0.307839635,0.076120554,0.06930029,0.082940818,4.111357929,127707,31062,4.014515621,4.208200237,0.214450797,46209,215476,0.202502868,0.226398727,15.78107968,1413,895376,,,86.94467114,3847,4424653,84.19716958,89.6921727,231.159793,215.5736013,246.7459847,38.48236937,25.3601239,55.98982704,63.78584157,49.01479203,81.60980002,40.54284739,31.94315246,50.74541917,77.14841256,74.28001865,80.01680647,,,,4.8,,,,,0.151515152,,,,,0.114220421,39735,347880,0.109410389,0.119030453,0.087490195,0.083245392,0.091734998,0.021717259,0.019407364,0.024027154,0.012202484,0.010550046,0.013854921,0.78824496,354015,449118,0.781981541,0.794508379,0.706142241,0.675504363,0.73678012,0.645995514,0.589884594,0.702106434,0.734473892,0.687754716,0.781193069,0.734113807,0.710739851,0.757487763,0.800470557,0.793732279,0.807208835,0.157,,449118,0.15153991,0.16246009,77.26105301,,,77.06689215,77.45521386,60.00355551,59.29021855,60.71689246,83.78979464,80.98008454,86.59950474,78.17657743,74.9207853,81.43236955,87.65890601,83.44732652,91.8704855,79.07037607,78.87408178,79.26667036,,,,385.7329711,11939,2488232,378.4465341,393.0194082,1385.298058,1328.358997,1442.237119,194.7644226,148.9793508,250.1830488,381.3403371,317.0403143,445.6403599,225.7867873,189.2900832,262.2834914,315.4092544,308.4326891,322.3858196,,,,66.40325675,643,968326,61.27062668,71.53588683,186.0736785,161.6512648,210.4960922,,,,102.6237471,69.23981125,146.5017802,38.90489914,25.63857368,56.60458566,48.01575961,42.84295734,53.18856189,,,,6.5885265,543,82416,6.03435466,7.14269834,11.77666695,9.818854596,13.7344793,,,,11.74242424,7.978407568,16.6674339,5.139664805,3.258106601,7.712020759,5.341226101,4.75043736,5.932014841,,,,10.67860834,7.255596273,15.15743214,0.076860443,,,0.064086137,0.091930942,0.114324558,,,0.097723561,0.133328956,0.095,,,0.081,0.109,98,723,737874,,,0.081,72900,,,,0.084804182,69045.86879,814180,,,10.25160584,274,2672752,9.037734406,11.46547727,32.31223633,25.23612465,40.75748943,,,,16.42036125,7.874201472,30.19762897,8.457160255,4.055537069,15.55301882,8.068665729,6.873195485,9.264135973,,,,0.295254758,,,0.26886141,0.323094107,0.132171033,65606,496372,0.123830608,0.140511459,0.075776994,16733,220819,0.06505359,0.086500398,0.001915755,1743,909824,,,521.9873781,0.829570992,7870.14,9487,,,0.055185715,2661,48219,0.046669074,0.063702356,3.085992712,,,,,,3.103727502,2.522268391,2.728363431,3.27938659,3.040104284,,,,,,2.88778025,2.404997773,2.532252295,3.25772747,0.24621927,,,,,-385.3769,,,,,0.792377167,44656,56357,0.77805408,0.806700254,70597,,,68293.85106,72900.14894,31901,29571.6383,34230.3617,75619,62331.51064,88906.48936,56399,51500.78723,61297.21277,56192,50626.55319,61757.44681,72816,71562.55319,74069.44681,,,,,,0.287033155,40387,140705,,,67.11818174,,,,,0.208037104,,,,,6.426735219,,,,,4.277413177,263,6148576,3.760450249,4.794376104,23.55527638,19.34070268,27.76985008,,,,11.51419316,6.444406507,18.9909106,4.38528299,2.189117469,7.84648261,2.088652352,1.689142419,2.488162284,,,,21.37127673,928,4424653,19.9616891,22.78086435,20.97339611,50.46342972,43.18129613,57.74556332,26.9045554,13.43065712,48.13968141,,,,9.347848273,5.110555637,15.68410102,18.27602603,16.83399259,19.71805946,,,,13.08577192,579,4424653,12.01987272,14.15167112,22.43207458,17.84089462,27.84411928,,,,14.17463146,7.74940292,23.78262304,5.868043701,2.929306273,10.4995511,12.60359097,11.44421994,13.762962,,,,16.361512,1006,6148576,15.35044365,17.37258035,57.51413317,50.92851056,64.09975578,,,,10.74658029,5.875255443,18.03093566,11.56120061,7.742717495,16.60381258,12.79050916,11.80186862,13.77914971,,,,,,,,,,,0.655344917,422609,644865,,,,,,,,82.43957848,,,,,0.684340314,240328,351182,0.678531389,0.690149238,0.092943151,31570,339670,0.088506563,0.097379739,0.867567244,304674,351182,0.862624922,0.872509567,909824,,,,,0.240887249,219165,909824,,,0.180053505,163817,909824,,,0.024406918,22206,909824,,,0.085160427,77481,909824,,,0.017875985,16264,909824,,,0.001285963,1170,909824,,,0.048919351,44508,909824,,,0.807013225,734240,909824,,,0.007679118,6391,832257,0.00674078,0.008617456,0.491414823,447101,909824,,,0.42780435,379320,886667,, -46,003,46003,SD,Aurora County,2024,1,8398.542051,41,7452,4892.46024,13446.8794,1,,,,2,,,,2,,,,2,,,,2,7713.56617,4217.078403,12942.05335,1,,,,2,,0.116,,,0.096,0.138,2.72192025,,,2.088003905,3.403334198,3.634390434,,,2.850475129,4.458072811,0.060283688,17,282,0.032503844,0.088063532,1,,,,,,,,,,,,,0.058091286,0.028558294,0.087624279,,,,,,,0.17,,,0.133,0.207,0.388,,,0.315,0.462,7.8,0.169180539,0.06,,,0.231,,,0.188,0.276,0.033491081,92,2747,,,0.210894773,,,0.171655903,0.254074058,0.6,3,5,0.381076261,0.751373291,218.3,6,2748,,,22.33676976,13,582,11.89338916,38.19655656,,,,,,,,,,,,,,,,,,,,,,0.136148008,287,2108,0.115892688,0.156403327,,0,2748,,,,0,0,2755,,,-2755,0.000725953,2,2755,,,1377.5,2118,,,,,,,,,2181,0.52,,,,,,,,,0.52,0.31,,,,,,,,,0.31,0.912993039,1574,1724,0.867591587,0.958394492,0.731663685,409,559,0.617265989,0.846061382,0.018779343,28,1491,,,0.147,93,,0.091,0.203,,,,,,,,,,0.215686275,0.043280434,0.388092115,0.047619048,0.007505555,0.08773254,3.314293785,117326,35400,2.87094604,3.757641531,0.153846154,94,611,0.036282073,0.271410235,10.91703057,3,2748,,,,,,,,,,,,,,,,,,,,,,,,,,4.7,,,,,0,,,,,0.053333333,60,1125,0.027390021,0.079276646,0.044603033,0.015725598,0.073480468,0.007111111,0,0.024970179,0.007111111,0,0.017506658,0.759393064,1051,1384,0.718517523,0.800268605,,,,,,,,,,,,,0.724264706,0.668452153,0.780077259,0.255,,1384,0.196265496,0.313734504,76.43459538,,,73.23570527,79.63348549,,,,,,,,,,,,,76.88950528,73.72018781,80.05882276,,,,403.5921606,41,7452,282.6709876,558.7416699,,,,,,,,,,,,,400.4027769,275.6188479,562.3143669,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.089,,,0.075,0.103,0.128,,,0.109,0.147,0.082,,,0.07,0.097,,,,,,0.06,160,,,,0.169180539,458.4792606,2710,,,,,,,,,,,,,,,,,,,,,,,,,,0.296,,,0.281,0.312,0.14753004,221,1498,0.123700253,0.171359827,0.11163522,71,636,0.079465007,0.143805433,0.001451906,4,2755,,,688.75,,,,,,,,,,,,,,,,,,,,,3.1642977,,,,,,,,,3.276204688,0.189739548,,,,,-1155.78,,,,,0.783784753,43696,55750,0.639471802,0.928097705,61013,,,55000.74468,67025.25532,,,,,,,,,,,,,71875,64758.23404,78991.76596,,,,,,0.33495935,206,615,,,,,,,,0.208807959,,61013,,,10.52631579,2,190,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,23.33333333,,300,,,7,,0.735602094,1405,1910,,,0.551,,,,,5.316833621,,,,,0.766381766,807,1053,0.729120141,0.803643392,0.077630235,76,979,0.03526551,0.11999496,0.782526116,824,1053,0.743001047,0.822051185,2755,,,,,0.246098004,678,2755,,,0.211252269,582,2755,,,0.00907441,25,2755,,,0.029038113,80,2755,,,0.009437387,26,2755,,,0,0,2755,,,0.084573503,233,2755,,,0.858802178,2366,2755,,,0.016155758,39,2414,0,0.040954437,0.485662432,1338,2755,,,1,2747,2747,, -46,005,46005,SD,Beadle County,2024,1,7444.194208,240,51690,6036.714253,8851.674164,0,,,,2,,,,2,,,,2,,,,2,7195.384117,5542.468563,8848.299671,,,,,2,,0.142,,,0.118,0.169,3.067766009,,,2.399305586,3.865023925,3.859184631,,,3.033945285,4.862615676,0.073366834,146,1990,0.061910825,0.084822843,0,,,,0.113564669,0.07863684,0.148492498,,,,0.061983471,0.040501379,0.083465564,0.068555759,0.053581415,0.083530103,,,,,,,0.182,,,0.143,0.225,0.369,,,0.294,0.453,8.6,0.063690839,0.075,,,0.27,,,0.22,0.324,0.799571779,15311,19149,,,0.176218956,,,0.139915968,0.216728334,0.333333333,4,12,0.175768434,0.488588466,277.2,53,19121,,,51.22494432,184,3592,43.82329245,58.6265962,,,,60.13363029,39.62844127,87.49127493,,,,184.0909091,146.1947545,228.8081913,24.59016393,18.76488564,31.65241533,,,,114.5833333,57.19958716,205.0212345,0.14692615,2280,15518,0.127862321,0.16598998,0.000470687,9,19121,,,2124.555556,0.000464492,9,19376,,,2152.888889,0.002890173,56,19376,,,346,5489,,,,,,,,,5470,0.49,,,,,,,,,0.5,0.54,,,,,0.37,,,0.13,0.56,0.851021385,10665,12532,0.828550867,0.873491904,0.537551108,2498,4647,0.458641205,0.616461012,0.019386107,180,9285,,,0.15,772,,0.090425532,0.209574468,0.172413793,0,0.746789248,0.039151713,0,0.127321065,,,,0.144995323,0.002200501,0.287790145,0.05513439,0.004516728,0.105752052,4.285378367,120282,28068,3.592032634,4.9787241,0.116621465,602,5162,0.067321543,0.165921386,16.21254119,31,19121,,,85.90419535,80,93127,68.1166843,106.9152072,,,,,,,,,,,,,96.39316903,74.703382,122.4159173,,,,5.2,,,,,1,,,,,0.114508783,880,7685,0.077934693,0.151082874,0.050729487,0.031580547,0.069878428,0.046714379,0.020826933,0.072601825,0.018737801,0,0.040375345,0.755170912,6937,9186,0.720859275,0.789482549,,,,,,,,,,,,,0.799447755,0.766722102,0.832173407,0.113,,9186,0.085725562,0.140274438,78.13261417,,,76.84610035,79.41912799,,,,72.14108408,66.80856452,77.47360363,,,,91.8901722,58.53174116,125.2486032,78.32364299,76.88147751,79.76580848,,,,369.4150914,240,51690,320.1720852,418.6580976,,,,,,,,,,,,,363.1459794,308.3924691,417.8994897,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.099,,,0.084,0.117,0.132,,,0.112,0.154,0.098,,,0.083,0.115,46.2,7,15159,,,0.075,1430,,,,0.063690839,1108.093216,17398,,,,,,,,,,,,,,,,,,,,,,,,,,0.301,,,0.286,0.315,0.16856951,1757,10423,0.143548233,0.193590786,0.105213804,561,5332,0.077809548,0.132618059,0.001496697,29,19376,,,668.137931,0.745734597,157.35,211,,,,,,,,2.909732603,,,,,,2.637489869,,,3.172270492,2.723808788,,,,,,2.159309177,,2.458654378,3.01359904,0.0815617,,,,,-4374.5395,,,,,0.702095976,37718,53722,0.584384322,0.819807629,59508,,,51180.68085,67835.31915,77083,2448.106383,151717.8936,75859,35139.85106,116578.1489,,,,52011,1392.957447,102629.0426,65021,58978.95745,71063.04255,,,,,,0.412045319,1382,3354,,,57.80139969,,,,,0.20726625,,59508,,,4.255319149,7,1645,,,,,,,,,,,,,,,,,,,,,,,,,,27.84119902,24,93127,17.4479312,42.1519099,25.7712586,,,,,,,,,,,,,28.0515778,16.3410778,44.91329345,,,,19.32844395,18,93127,11.45526086,30.54727444,,,,,,,,,,,,,24.45796826,14.24766782,39.15957647,,,,13.88888889,18,129600,8.231435787,21.95043231,,,,,,,,,,,,,14.2319813,7.780756609,23.87884632,,,,13.33333333,,2100,,,28,,0.589837568,7081,12005,,,0.662,,,,,77.93594057,,,,,0.700523982,5214,7443,0.666145329,0.734902636,0.080269861,583,7263,0.051976466,0.108563256,0.825607954,6145,7443,0.794897732,0.856318176,19376,,,,,0.275598679,5340,19376,,,0.181513212,3517,19376,,,0.010167217,197,19376,,,0.017495871,339,19376,,,0.117619736,2279,19376,,,0.0151218,293,19376,,,0.125154831,2425,19376,,,0.710260116,13762,19376,,,0.032940104,578,17547,0.017492981,0.048387227,0.50428365,9771,19376,,,0.253538044,4855,19149,, -46,007,46007,SD,Bennett County,2024,1,19812.82433,74,9571,14505.47754,26427.53115,0,30252.6479,21803.44762,40892.79141,,,,,2,,,,2,,,,2,,,,2,,,,2,,0.215,,,0.187,0.244,4.349234357,,,3.556712692,5.206988313,4.98017323,,,4.169560501,5.838211851,0.059299191,22,371,0.035265568,0.083332815,1,0.062761506,0.032012658,0.093510355,,,,,,,,,,,,,,,,,,,0.283,,,0.24,0.327,0.43,,,0.377,0.481,4.8,0.233231848,0.171,,,0.304,,,0.261,0.35,0.517598344,1750,3381,,,0.189512987,,,0.158586854,0.223656671,0.5,3,6,0.280972677,0.671334317,1203.8,41,3406,,,34.44676409,33,958,23.7115674,48.37606396,39.30131004,25.89981096,57.18134272,,,,,,,,,,,,,,,,,,,0.177463683,452,2547,0.152442406,0.202484959,,0,3406,,,,0.000899281,3,3336,,,1112,,0,3336,,,,1995,,,,,,,,,1866,0.26,,,,,0.16,,,,0.32,0.11,,,,,0.11,,,,0.07,0.888703395,1597,1797,0.816715914,0.960690875,0.505479452,369,730,0.380296229,0.630662676,0.032679739,35,1071,,,0.407,429,,0.250914894,0.563085106,0.485642946,0.281855644,0.689430249,,,,,,,0.390804598,0,0.875863495,0.254237288,0,0.623913566,5.787791234,94150,16267,3.002333406,8.573249062,0.4318542,545,1262,0.253095966,0.610612433,8.807985907,3,3406,,,146.2672595,25,17092,94.65645827,215.9193289,178.029113,103.7085189,285.0418559,,,,,,,,,,,,,,,,3.9,,,,,0,,,,,0.164251208,170,1035,0.109290678,0.219211737,0.105050505,0.039248913,0.170852097,0.095652174,0.041858747,0.149445601,0.014492754,0,0.040191449,0.791044776,848,1072,0.70711407,0.874975482,,,,,,,,,,,,,0.763636364,0.70140423,0.825868497,0.129,,1072,0.044690024,0.213309976,69.47432562,,,65.78059769,73.16805355,62.78986056,57.90702107,67.67270005,,,,,,,,,,,,,,,,806.5393464,74,9571,626.3093614,1022.480805,1265.284459,950.5206273,1650.921755,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.142,,,0.124,0.162,0.171,,,0.15,0.193,0.147,,,0.129,0.166,,,,,,0.171,580,,,,0.233231848,800.2184701,3431,,,,,,,,,,,,,,,,,,,,,,,,,,0.303,,,0.29,0.314,0.235145386,372,1582,0.197017726,0.273273045,0.08463035,87,1028,0.061992052,0.107268648,0.002697842,9,3336,,,370.6666667,,,,,,,,,,,2.874951451,,,,,,,,,,2.764449496,,,,,,,,,,0.007834708,,,,,-7490.646,,,,,0.820619727,41923,51087,0.604888059,1.036351395,49152,,,42678.6383,55625.3617,32679,18228.61702,47129.38298,,,,,,,48030,7313.234043,88746.76596,57598,33344.04255,81851.95745,,,,,,1,521,521,,,,,,,,0.259195964,,49152,,,,,304,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,62,,500,,,31,,0.540182648,1183,2190,,,0.353,,,,,4.557459413,,,,,0.606508876,615,1014,0.513655659,0.699362092,0.122285714,107,875,0.045175958,0.199395471,0.67357002,683,1014,0.556185116,0.790954924,3336,,,,,0.319844125,1067,3336,,,0.143285372,478,3336,,,0.005395684,18,3336,,,0.582733813,1944,3336,,,0.008393285,28,3336,,,0.000899281,3,3336,,,0.068944844,230,3336,,,0.321043166,1071,3336,,,0.001914486,6,3134,0,0.016877367,0.504496403,1683,3336,,,1,3381,3381,, -46,009,46009,SD,Bon Homme County,2024,1,5681.865933,92,18704,3979.509047,7866.097434,0,,,,2,,,,2,,,,2,,,,2,5784.040402,3811.719071,8415.475111,,,,,2,,0.139,,,0.115,0.164,3.057358143,,,2.364456009,3.856002345,3.924931399,,,3.066714914,4.945030333,0.049484536,24,485,0.030182659,0.068786413,0,,,,,,,,,,,,,0.050438597,0.030351523,0.07052567,,,,,,,0.194,,,0.155,0.236,0.368,,,0.291,0.452,6.6,0.260578809,0.076,,,0.244,,,0.197,0.295,0.684563758,4794,7003,,,0.200816794,,,0.161895327,0.244178344,0.6,6,10,0.459169088,0.71012622,199.6,14,7014,,,10.99830795,13,1182,5.856135779,18.80744156,,,,,,,,,,,,,,,,,,,,,,0.122648084,528,4305,0.104775743,0.140520424,0.000570288,4,7014,,,1753.5,0.000424809,3,7062,,,2354,,0,7062,,,,1347,,,,,,,,,1352,0.54,,,,,,,,,0.55,0.3,,,,,,,,,0.3,0.888996326,4597,5171,0.869546059,0.908446592,0.46641791,875,1876,0.401518569,0.531317252,0.019000704,54,2842,,,0.151,195,,0.091425532,0.210574468,,,,,,,,,,,,,0.228645384,0.134892641,0.322398127,3.843512152,104532,27197,3.070923853,4.616100452,0.183817753,234,1273,0.095235464,0.272400042,19.96007984,14,7014,,,106.5453394,37,34727,75.01775151,146.8587155,,,,,,,,,,,,,110.4048177,75.99759643,155.0494121,,,,5.3,,,,,0,,,,,0.09001957,230,2555,0.056944853,0.123094286,0.07495069,0.042427633,0.107473748,0.004696673,0,0.011794248,0.017612525,0.00186722,0.033357829,0.741095366,1935,2611,0.691987094,0.790203638,,,,,,,,,,,,,0.75154321,0.697342835,0.805743585,0.31,,2611,0.249691333,0.370308667,78.11877911,,,76.44799477,79.78956345,,,,,,,,,,,,,77.98977144,76.12011793,79.85942495,,,,342.1471996,92,18704,273.2950308,423.0703109,,,,,,,,,,,,,336.9554381,264.5824928,423.0166961,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.1,,,0.085,0.117,0.134,,,0.113,0.155,0.095,,,0.08,0.111,131.9,8,6063,,,0.076,530,,,,0.260578809,1842.29218,7070,,,,,,,,,,,,,,,,,,,,,,,,,,0.303,,,0.286,0.319,0.131218698,393,2995,0.109771889,0.152665506,0.104105572,142,1364,0.073126848,0.135084295,0.002124044,15,7062,,,470.8,,,,,,,,,,,3.226151688,,,,,,,,,3.300721129,3.310756839,,,,,,,,,3.42331824,0.100928613,,,,,-1664.835333,,,,,0.831347585,38656,46498,0.743863079,0.91883209,62963,,,55540.02128,70385.97872,,,,,,,,,,103125,46330.2766,159919.7234,57527,50062.31915,64991.68085,,,,,,0.249539595,271,1086,,,,,,,,0.202341057,,62963,,,,,334,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20.5355676,10,48696,9.847602875,37.76563998,,,,,,,,,,,,,,,,,,,11.66666667,,600,,,7,,0.539748201,3001,5560,,,0.618,,,,,2.573880705,,,,,0.763877382,1844,2414,0.727327699,0.800427065,0.066108418,150,2269,0.033305083,0.098911753,0.785832643,1897,2414,0.729606594,0.842058692,7062,,,,,0.191305579,1351,7062,,,0.210421977,1486,7062,,,0.01345228,95,7062,,,0.080005664,565,7062,,,0.003256868,23,7062,,,0.000283206,2,7062,,,0.032993486,233,7062,,,0.860945908,6080,7062,,,0.003739156,25,6686,0,0.014058226,0.40767488,2879,7062,,,1,7003,7003,, -46,011,46011,SD,Brookings County,2024,1,5381.245499,271,99983,4443.219985,6319.271014,0,,,,2,,,,2,,,,2,,,,2,5077.836056,4125.708688,6029.963423,,,,,2,,0.104,,,0.086,0.123,2.64723955,,,2.086810238,3.240814709,4.067137339,,,3.437236982,4.779574825,0.058656239,165,2813,0.049972586,0.067339891,0,,,,,,,,,,0.067708333,0.032169561,0.103247106,0.054329372,0.045176535,0.063482209,,,,,,,0.137,,,0.107,0.171,0.336,,,0.292,0.381,7.7,0.164458021,0.071,,,0.202,,,0.167,0.239,0.858036364,29495,34375,,,0.239471778,,,0.205453319,0.273971789,0.181818182,2,11,0.044108943,0.367070091,513.9,178,34639,,,6.504896945,89,13682,5.22396639,8.004835433,,,,,,,,,,52.00945627,32.59404934,78.74294181,4.184437113,3.125137781,5.487332561,,,,,,,0.083862864,2270,27068,0.069564992,0.098160736,0.000577384,20,34639,,,1731.95,0.000450908,16,35484,,,2217.75,0.001493631,53,35484,,,669.509434,2086,,,,,,,,,2102,0.51,,,,,,,,,0.52,0.58,,,,,,,,,0.58,0.962011114,18005,18716,0.951313115,0.972709112,0.795645299,6541,8221,0.724344199,0.866946398,0.020718882,396,19113,,,0.091,655,,0.057638298,0.124361702,,,,,,,,,,0.241134752,0.09499129,0.387278213,0.047505938,0.014331031,0.080680846,3.841517237,124469,32401,3.358353696,4.324680778,0.131838692,935,7092,0.078698805,0.184978578,14.72328878,51,34639,,,47.48120774,83,174806,37.81851693,58.8601008,,,,,,,,,,,,,47.16500102,37.03467026,59.21133968,,,,4.2,,,,,0,,,,,0.117471006,1570,13365,0.089073126,0.145868887,0.101017716,0.075824666,0.126210766,0.007856341,0.001743907,0.013968775,0.016086794,0.006209377,0.025964211,0.768736389,14473,18827,0.739582154,0.797890624,,,,,,,,,,0.733024691,0.669999981,0.796049402,0.80156268,0.775619912,0.827505447,0.102,,18827,0.080094735,0.123905265,80.68746061,,,79.67133555,81.70358568,,,,,,,,,,,,,80.75155551,79.72402293,81.77908809,,,,278.6930386,271,99983,244.2617826,313.1242946,,,,,,,,,,,,,273.5874229,238.3042231,308.8706228,,,,44.49938195,18,40450,26.37315397,70.32820833,,,,,,,,,,,,,40.39704525,22.08544055,67.77937766,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.08,,,0.068,0.094,0.12,,,0.102,0.139,0.088,,,0.075,0.102,61.3,18,29359,,,0.071,2440,,,,0.164458021,5256.900642,31965,,,,,,,,,,,,,,,,,,,,,,,,,,0.256,,,0.241,0.27,0.095369904,1895,19870,0.077497564,0.113242245,0.055481992,419,7552,0.03999263,0.070971353,0.001014542,36,35484,,,985.6666667,0.877678571,294.9,336,,,,,,,,3.086988334,,,,,,,,,3.138637243,3.008243635,,,,,,,,,3.073231846,0.044862281,,,,,373.223525,,,,,0.88756645,48920,55117,0.803356205,0.971776694,71166,,,61604.29787,80727.70213,,,,,,,,,,48333,14744.91489,81921.08511,66349,60540.48936,72157.51064,,,,,,0.100549218,476,4734,,,58.56989731,,,,,0.215735042,,71166,,,6.542056075,14,2140,,,,,,,,,,,,,,,,,,,,,,,,,,12.56267926,21,174806,7.673610863,19.40203923,12.01331762,,,,,,,,,,,,,12.97320539,7.688743716,20.50325761,,,,,,,,,,,,,,,,,,,,,,,,,,,7.000551808,17,242838,4.078079407,11.2085616,,,,,,,,,,,,,5.94000594,3.162802993,10.15759106,,,,18.48484849,,3300,,,61,,0.552303318,14567,26375,,,0.68,,,,,78.68973277,,,,,0.583345803,7797,13366,0.561105224,0.605586382,0.106396017,1389,13055,0.081228735,0.131563298,0.89121652,11912,13366,0.864894322,0.917538717,35484,,,,,0.20778379,7373,35484,,,0.137414046,4876,35484,,,0.016683576,592,35484,,,0.014175403,503,35484,,,0.032606245,1157,35484,,,0.00081727,29,35484,,,0.043484387,1543,35484,,,0.880114981,31230,35484,,,0.0071678,234,32646,0.002889273,0.011446327,0.483626423,17161,35484,,,0.311301818,10701,34375,, -46,013,46013,SD,Brown County,2024,1,6331.653339,423,106560,5388.716727,7274.58995,0,20024.83702,12056.25999,31271.26352,1,,,,2,,,,2,,,,2,5932.248354,4924.795095,6939.701614,,,,,2,,0.118,,,0.098,0.141,2.869216638,,,2.32806229,3.520681376,3.794604592,,,3.188758977,4.504343963,0.064854849,210,3238,0.05637226,0.073337437,0,,,,0.088235294,0.040564853,0.135905736,,,,0.076530612,0.039312282,0.113748942,0.063305979,0.053870973,0.072740985,,,,,,,0.152,,,0.12,0.192,0.367,,,0.324,0.414,8.3,0.083610886,0.079,,,0.235,,,0.197,0.275,0.842145114,32255,38301,,,0.193292,,,0.166873869,0.224940901,0.2,3,15,0.07369192,0.354373303,364.8,139,38101,,,12.20302376,113,9260,9.953014493,14.45303302,31.40096618,16.71969201,53.6966085,,,,,,,38.92215569,20.72440866,66.55807161,10.42873696,8.281922492,12.96196784,,,,,,,0.107168742,3253,30354,0.09287087,0.121466615,0.000629905,24,38101,,,1587.541667,0.000632045,24,37972,,,1582.166667,0.004503318,171,37972,,,222.0584795,3004,,,,,6115,,,,2886,0.6,,,,,0.36,0.5,,,0.6,0.56,,,,,0.48,0.63,,0.25,0.57,0.936576136,23760,25369,0.921298762,0.95185351,0.680620485,6406,9412,0.616535379,0.74470559,0.022512202,452,20078,,,0.114,993,,0.072297872,0.155702128,0.089403974,0,0.271394354,0.475694444,0.019318331,0.932070558,,,,0.562962963,0.334113803,0.791812123,0.067977768,0.029518404,0.106437133,4.259884481,123903,29086,3.90374127,4.616027691,0.172779596,1531,8861,0.112673403,0.232885789,15.22269757,58,38101,,,64.89092145,126,194172,53.56027366,76.22156925,,,,,,,,,,,,,65.95831435,53.63211245,78.28451624,,,,5.8,,,,,1,,,,,0.108956602,1770,16245,0.085521886,0.132391318,0.091695179,0.069071904,0.114318454,0.008310249,0.002209815,0.014410683,0.013234842,0.003916513,0.02255317,0.81327356,16690,20522,0.791462099,0.835085022,,,,,,,,,,,,,0.826146288,0.804898941,0.847393636,0.075,,20522,0.054709667,0.095290333,79.45712815,,,78.56370592,80.35055038,,,,,,,,,,,,,79.69009625,78.74376332,80.63642919,,,,308.6903634,423,106560,277.8976993,339.4830275,815.2490638,527.5862092,1203.468441,,,,,,,,,,296.958382,265.1924292,328.7243347,,,,38.95123792,16,41077,22.26399799,63.25437008,,,,,,,,,,,,,36.72757323,18.97767303,64.15567915,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.09,,,0.076,0.106,0.124,,,0.107,0.145,0.088,,,0.076,0.102,78.9,25,31697,,,0.079,3050,,,,0.083610886,3054.389258,36531,,,,,,,,,,,,,,,,,,,,,,,,,,0.292,,,0.278,0.306,0.123778502,2660,21490,0.104714672,0.142842331,0.06987041,647,9260,0.05199807,0.087742751,0.001843464,70,37972,,,542.4571429,0.856706731,356.39,416,,,,,,,,3.368771575,,,,,,,,,3.477547398,3.227993021,,,,,,,,2.111294921,3.356916844,0.052047477,,,,,17.229575,,,,,0.816844072,46351,56744,0.762279435,0.871408709,71731,,,64446.23404,79015.76596,56429,30922.78723,81935.21277,74936,57313.87234,92558.12766,,,,46034,25218.68085,66849.31915,72455,68519.51064,76390.48936,,,,,,0.173865699,958,5510,,,62.20654432,,,,,0.214035773,,71731,,,5.076142132,12,2364,,,,,,,,,,,,,,,,,,,,,,,,,,17.8888791,34,194172,12.31388125,25.12263727,17.51024865,,,,,,,,,,,,,17.37406315,11.44961709,25.27834971,,,,10.30014626,20,194172,6.291596927,15.90774051,,,,,,,,,,,,,11.99242079,7.325282173,18.52132127,,,,9.55583733,26,272085,6.242190204,14.00151573,,,,,,,,,,,,,8.492713252,5.187569889,13.11630682,,,,35.23809524,,4200,,,148,,0.612033485,17547,28670,,,0.681,,,,,111.1936664,,,,,0.65905831,10568,16035,0.631669048,0.686447572,0.097162402,1534,15788,0.075391219,0.118933585,0.855378859,13716,16035,0.832355687,0.878402031,37972,,,,,0.233487833,8866,37972,,,0.183608975,6972,37972,,,0.016591172,630,37972,,,0.037632993,1429,37972,,,0.03391973,1288,37972,,,0.003449911,131,37972,,,0.041240914,1566,37972,,,0.850626778,32300,37972,,,0.013007949,468,35978,0.005912343,0.020103556,0.5061361,19219,37972,,,0.269418553,10319,38301,, -46,015,46015,SD,Brule County,2024,1,9136.563671,69,14446,6207.851738,12968.62283,0,,,,2,,,,2,,,,2,,,,2,7606.589793,4579.663952,11878.63221,1,,,,2,,0.14,,,0.116,0.166,3.129147074,,,2.412179307,3.926054413,4.325960272,,,3.383099398,5.332372134,0.064853557,31,478,0.04277611,0.086931003,0,,,,,,,,,,,,,0.042553192,0.020741893,0.06436449,,,,,,,0.194,,,0.151,0.236,0.388,,,0.308,0.474,7.3,0.132002476,0.101,,,0.252,,,0.202,0.305,0.537068801,2818,5247,,,0.182440179,,,0.144549225,0.224029126,0,0,4,0,0.360186253,457.8,24,5242,,,19.5911414,23,1174,12.4191031,29.39633126,,,,,,,,,,,,,,,,,,,,,,0.13874092,573,4130,0.118485601,0.158996239,0.001144601,6,5242,,,873.6666667,0.000375869,2,5321,,,2660.5,0.001503477,8,5321,,,665.125,1311,,,,,,,,,1264,0.51,,,,,,,,,0.52,0.46,,,,,0.42,,,,0.46,0.857941835,3068,3576,0.822712226,0.893171443,0.642553192,755,1175,0.533187759,0.751918624,0.016936394,45,2657,,,0.166,212,,0.104042553,0.227957447,0.075098814,0,0.197043442,,,,,,,0.72972973,0.094164851,1,0.212952799,0.120053144,0.305852455,4.515282059,121583,26927,3.05358658,5.976977538,0.164696612,209,1269,0.072604305,0.256788918,15.26135063,8,5242,,,98.73167768,26,26334,64.49480981,144.6647835,,,,,,,,,,,,,105.2294459,66.70644204,157.8958361,,,,4.5,,,,,1,,,,,0.100896861,225,2230,0.063512616,0.138281107,0.059249209,0.028128009,0.090370408,0.003587444,0,0.016639514,0.042600897,0.017262903,0.067938891,0.673312883,1756,2608,0.621346175,0.725279592,,,,,,,,,,,,,0.727354664,0.671943061,0.782766268,0.123,,2608,0.079011607,0.166988393,77.91500842,,,75.07132631,80.75869052,,,,,,,,,,,,,79.09260542,76.07174168,82.11346916,,,,385.8225456,69,14446,294.4232484,496.6300952,,,,,,,,,,,,,330.129969,240.7990647,441.7398723,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.103,,,0.086,0.121,0.144,,,0.122,0.166,0.095,,,0.08,0.112,,,,,,0.101,530,,,,0.132002476,693.6730118,5255,,,,,,,,,,,,,,,,,,,,,,,,,,0.296,,,0.279,0.311,0.15085592,423,2804,0.125834644,0.175877197,0.114718615,159,1386,0.082548402,0.146888828,0.003006954,16,5321,,,332.5625,,,,,,,,,,,3.198071109,,,,,,,,,3.362031579,3.37322558,,,,,,,,,3.589045445,0.144758494,,,,,-858.7666,,,,,0.802420346,42436,52885,0.599174124,1.005666568,60133,,,51200.40426,69065.59575,,,,,,,,,,153750,50457.40426,257042.5957,65417,53322.19149,77511.80851,,,,,,0.282154341,351,1244,,,,,,,,0.211863702,,60133,,,9.174311927,3,327,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,700,,,-888,,0.640926641,2490,3885,,,0.58,,,,,7.82442113,,,,,0.650153218,1273,1958,0.610883001,0.689423435,0.072644722,128,1762,0.02738071,0.117908734,0.763023493,1494,1958,0.716189348,0.809857639,5321,,,,,0.243939109,1298,5321,,,0.201277955,1071,5321,,,0.005825973,31,5321,,,0.119902274,638,5321,,,0.005450103,29,5321,,,0.000375869,2,5321,,,0.035331705,188,5321,,,0.807367036,4296,5321,,,0.001414141,7,4950,0,0.015603481,0.495959406,2639,5321,,,1,5247,5247,, -46,017,46017,SD,Buffalo County,2024,1,41152.26113,85,5660,31327.00787,53083.41857,0,49454.00153,37455.97782,64073.39513,,,,,2,,,,2,,,,2,,,,2,,,,2,,0.285,,,0.246,0.325,5.036018852,,,4.112969264,6.04817577,5.572809231,,,4.493383908,6.74330416,0.081481482,22,270,0.048849187,0.114113776,1,0.09178744,0.052454512,0.131120368,,,,,,,,,,,,,,,,,,,0.354,,,0.301,0.406,0.472,,,0.393,0.553,5.3,0.120548495,0.202,,,0.371,,,0.315,0.431,,,1948,,,0.179144177,,,0.144013894,0.220166575,0.714285714,5,7,0.576857484,0.809026882,1768.1,34,1923,,,55.3064275,37,669,38.94082895,76.23262503,58.70841487,39.61032098,83.80991271,,,,,,,,,,,,,,,,,,,0.185663082,259,1395,0.157067338,0.214258827,0,0,1923,,,-1923,0.002686728,5,1861,,,372.2,0.003224073,6,1861,,,310.1666667,,,,,,,,,,,0.35,,,,,0.31,,,,,0.42,,,,,0.47,,,,0.32,0.824368826,751,911,0.750286656,0.898450995,0.383908046,167,435,0.235577957,0.532238135,0.045143639,33,731,,,0.448,300,,0.294297872,0.601702128,0.465420561,0.365998632,0.56484249,,,,,,,0.129032258,0,0.483515238,0.110344828,0,0.319701755,7.938520848,78250,9857,4.264016809,11.61302489,0.473833098,335,707,0.337223773,0.610442423,0,0,1923,,,293.6411503,29,9876,196.6560869,421.7176735,328.9906567,212.9054066,485.6551085,,,,,,,,,,,,,,,,4.3,,,,,0,,,,,0.287037037,155,540,0.203812091,0.370261983,0.18590998,0.08670599,0.285113971,0.118518519,0.056014293,0.181022744,0.014814815,0,0.039427412,0.74271012,433,583,0.629845621,0.85557462,0.802083333,0.675715987,0.92845068,,,,,,,,,,,,,0.208,,583,0.0889822,0.3270178,55.9189579,,,52.11510513,59.72281068,,,,,,,,,,,,,,,,,,,1785.770896,85,5660,1422.356551,2213.731705,2210.458828,1744.459539,2762.694269,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.175,,,0.153,0.2,0.194,,,0.169,0.221,0.184,,,0.161,0.209,,,,,,0.202,400,,,,0.120548495,230.4887232,1912,,,,,,,,,,,,,,,,,,,,,,,,,,0.351,,,0.336,0.365,0.257037944,210,817,0.212952837,0.30112305,0.082524272,51,618,0.057502995,0.107545548,0.001612037,3,1861,,,620.3333333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.896217439,34853,38889,0.49122449,1.301210389,30659,,,25938.31915,35379.68085,29500,3381.361702,55618.6383,,,,,,,,,,56500,39458.12766,73541.87234,,,,,,,,,,,,,,,,0.415538667,,30659,,,12.55230126,3,239,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,71.35721421,10,14014,34.21855784,131.2284576,,,,,,,,,,,,,,,,,,,23.33333333,,300,,,7,,0.444534413,549,1235,,,0.336,,,,,0.01653073,,,,,0.489837398,241,492,0.392691806,0.586982991,0.180094787,76,422,0.061987265,0.298202309,0.611788618,301,492,0.516006763,0.707570473,1861,,,,,0.367544331,684,1861,,,0.095110156,177,1861,,,0.005373455,10,1861,,,0.781300376,1454,1861,,,0.003224073,6,1861,,,0.001074691,2,1861,,,0.058033315,108,1861,,,0.154218162,287,1861,,,0.00862069,14,1624,0,0.040249317,0.503492746,937,1861,,,1,1948,1948,, -46,019,46019,SD,Butte County,2024,1,7341.6762,167,28956,5561.276587,9122.075813,0,,,,2,,,,2,,,,2,,,,2,7707.901315,5771.476721,9644.325909,,,,,2,,0.14,,,0.117,0.167,3.20496547,,,2.479814627,4.028423262,4.422379121,,,3.489138119,5.433381161,0.061889251,57,921,0.046327412,0.07745109,0,,,,,,,,,,,,,0.063245823,0.046765611,0.079726036,,,,,,,0.196,,,0.154,0.242,0.378,,,0.302,0.455,7.5,0.16823142,0.077,,,0.259,,,0.212,0.312,0.803280289,8228,10243,,,0.18270907,,,0.147322,0.222625379,0.545454546,6,11,0.400988881,0.66352243,315.6,33,10456,,,22.84148013,50,2189,16.95338682,30.11364398,,,,,,,,,,,,,19.02748414,13.32661597,26.3420584,,,,,,,0.136009587,1135,8345,0.116945757,0.155073416,0.000286917,3,10456,,,3485.333333,0.000649712,7,10774,,,1539.142857,0.000371264,4,10774,,,2693.5,1520,,,,,,,,,1498,0.5,,,,,,,,,0.5,0.34,,,,,0.32,,,,0.34,0.893983203,6493,7263,0.847947357,0.940019048,0.506127451,1239,2448,0.39760727,0.614647632,0.019486976,98,5029,,,0.174,461,,0.107276596,0.240723404,,,,,,,,,,0.034782609,0,0.279025204,0.034932464,0,0.071065713,4.992525402,128243,25687,3.552340939,6.432709865,0.12716763,308,2422,0.052862385,0.201472875,9.563886764,10,10456,,,77.29169887,40,51752,55.21832285,105.2493565,,,,,,,,,,,,,85.26784763,60.91660046,116.1106072,,,,4.3,,,,,0,,,,,0.125598086,525,4180,0.077587798,0.173608375,0.101776284,0.054326701,0.149225868,0.02631579,0.006782128,0.045849451,0.003588517,0,0.011339969,0.710669078,3537,4977,0.664839798,0.756498358,,,,,,,,,,,,,0.631639391,0.566794133,0.69648465,0.23,,4977,0.167563229,0.292436771,77.09328719,,,75.58327728,78.6032971,,,,,,,,,,,,,76.77491271,75.19218662,78.3576388,,,,403.2121002,167,28956,336.3207136,470.1034869,,,,,,,,,,,,,415.1051466,344.2417104,485.9685828,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.104,,,0.089,0.122,0.144,,,0.123,0.168,0.092,,,0.077,0.107,93.1,8,8597,,,0.077,780,,,,0.16823142,1700.81966,10110,,,,,,,,,,,,,,,,,,,,,,,,,,0.298,,,0.281,0.314,0.155408925,895,5759,0.130387649,0.180430202,0.094779711,256,2701,0.067375456,0.122183967,0.000556896,6,10774,,,1795.666667,0.879699248,117,133,,,,,,,,2.809703404,,,,,,,,,2.859687306,2.585293375,,,,,,,,,2.658892455,0.023248642,,,,,-6830.6295,,,,,0.679327241,39098,57554,0.585604438,0.773050043,64528,,,57034.7234,72021.2766,,,,,,,,,,,,,56965,48787.80851,65142.19149,,,,,,0.252324861,407,1613,,,,,,,,0.19114183,,64528,,,,,563,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,22.14839424,16,72240,12.659721,35.96760465,,,,,,,,,,,,,24.36906956,13.92902882,39.57384224,,,,62.5,,1200,,,75,,0.620413437,4802,7740,,,0.617,,,,,28.64993489,,,,,0.80155642,3296,4112,0.767190914,0.835921926,0.124189526,498,4010,0.071592851,0.176786202,0.883025292,3631,4112,0.844446393,0.921604191,10774,,,,,0.249582328,2689,10774,,,0.204195285,2200,10774,,,0.006961203,75,10774,,,0.027751996,299,10774,,,0.004640802,50,10774,,,0.001485057,16,10774,,,0.046686467,503,10774,,,0.891405235,9604,10774,,,0,0,9751,0,0.007820256,0.489418972,5273,10774,,,0.503172899,5154,10243,, -46,021,46021,SD,Campbell County,2024,0,,,,,,2,,,,2,,,,2,,,,2,,,,2,,,,2,,,,2,,0.116,,,0.094,0.14,2.751168967,,,2.075972253,3.473128291,3.713650105,,,2.835439872,4.650513466,,,,,,0,,,,,,,,,,,,,,,,,,,,,,0.159,,,0.12,0.197,0.321,,,0.248,0.4,8.9,0.085327103,0.053,,,0.211,,,0.165,0.262,0.36238199,499,1377,,,0.171336303,,,0.137091227,0.208947397,0,0,1,0,0.662081041,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.096976017,93,959,0.081486655,0.112465378,0,0,1380,,,-1380,0,0,1349,,,-1349,0.00074129,1,1349,,,1349,3769,,,,,,,,,3817,0.55,,,,,,,,,0.55,0.14,,,,,,,,,0.14,0.872187219,969,1111,0.826021398,0.91835304,0.662921348,177,267,0.470176679,0.855666018,0.025906736,20,772,,,0.173,41,,0.106276596,0.239723404,,,,,,,,,,0.153846154,0,0.852326431,,,,4.448168067,132333,29750,2.744848639,6.151487496,0.069364162,24,346,0,0.150691151,43.47826087,6,1380,,,145.0957632,10,6892,69.57905827,266.8362746,,,,,,,,,,,,,,,,,,,4.6,,,,,0,,,,,0.085714286,60,700,0.037936107,0.133492465,0.056034483,0,0.116588692,0.014285714,0,0.050117991,0.048571429,0.003046696,0.094096162,0.620236531,472,761,0.552841957,0.687631105,,,,,,,,,,,,,0.619834711,0.524377726,0.715291696,0.225,,761,0.137793071,0.312206929,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.087,,,0.072,0.103,0.127,,,0.107,0.149,0.079,,,0.066,0.093,,,,,,0.053,80,,,,0.085327103,125.089533,1466,,,,,,,,,,,,,,,,,,,,,,,,,,0.277,,,0.258,0.295,0.104539202,76,727,0.086666862,0.122411543,0.073170732,18,246,0.049340945,0.097000519,0,0,1349,,,-1349,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1297.879,,,,,0.72935795,44167,60556,0.478319379,0.980396521,65591,,,55931.59575,75250.40426,,,,,,,,,,,,,71250,54031.78723,88468.21277,,,,,,0.112,14,125,,,,,,,,0.194233965,,65591,,,,,91,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,100,,,0,,0.755844156,873,1155,,,0.49,,,,,2.827661784,,,,,0.827785818,572,691,0.768657547,0.886914089,0.063565892,41,645,0,0.127287013,0.726483358,502,691,0.665531108,0.787435607,1349,,,,,0.180133432,243,1349,,,0.315048184,425,1349,,,0.003706449,5,1349,,,0.020014826,27,1349,,,0.004447739,6,1349,,,0,0,1349,,,0.038547072,52,1349,,,0.925871016,1249,1349,,,0.005524862,8,1448,0,0.037357817,0.480355819,648,1349,,,1,1377,1377,, -46,023,46023,SD,Charles Mix County,2024,1,17090.72088,177,25247,13668.51762,20512.92413,0,40626.45445,31630.51766,49622.39124,,,,,2,,,,2,,,,2,7259.002427,4650.979825,10800.82021,1,,,,2,,0.174,,,0.147,0.205,3.630444813,,,2.854294545,4.494964301,4.673737993,,,3.681278722,5.743535822,0.06155303,65,1056,0.047056846,0.076049215,0,0.064665127,0.04150021,0.087830044,,,,,,,,,,0.061023622,0.040207466,0.081839778,,,,,,,0.233,,,0.189,0.279,0.401,,,0.319,0.485,7.9,0.03595531,0.124,,,0.28,,,0.229,0.332,0.374159821,3507,9373,,,0.169767659,,,0.135170918,0.208016564,0.8,8,10,0.720240297,0.85714432,851.2,78,9163,,,40.19873532,89,2214,32.28288534,49.46800289,83.89261745,65.98686544,105.1601224,,,,,,,,,,,,,,,,,,,0.171136465,1155,6749,0.149689656,0.192583273,0.000327404,3,9163,,,3054.333333,0.000542711,5,9213,,,1842.6,0.000868338,8,9213,,,1151.625,3666,,,,,12889,,,,2159,0.45,,,,,0.09,,,,0.53,0.28,,,,,0.32,,,,0.27,0.894783378,5060,5655,0.875632583,0.913934172,0.621736814,1167,1877,0.537237515,0.706236113,0.022804718,87,3815,,,0.261,717,,0.164489362,0.357510638,0.450441609,0.374814518,0.526068701,,,,,,,0.225108225,0.05583344,0.39438301,0.222307105,0.088570591,0.356043618,5.244480821,118541,22603,4.272534719,6.216426923,0.333686815,944,2829,0.263561672,0.403811959,15.27883881,14,9163,,,131.2307725,61,46483,100.3811427,168.5714173,234.8587289,161.6659424,329.8289749,,,,,,,,,,96.74187196,64.28427135,139.8189405,,,,5,,,,,0,,,,,0.106349206,335,3150,0.072184257,0.140514156,0.071935484,0.035689478,0.10818149,0.031746032,0.018455777,0.045036286,0.007936508,0.001784449,0.014088567,0.736243386,2783,3780,0.68713996,0.785346812,0.688026982,0.597580328,0.778473635,,,,,,,,,,0.746714849,0.69146052,0.801969177,0.134,,3780,0.097179316,0.170820684,71.33054741,,,69.00938312,73.6517117,56.56060021,52.68009032,60.44111011,,,,,,,,,,79.47502765,77.08907987,81.86097542,,,,648.2715503,177,25247,546.6490828,749.8940179,1671.959554,1359.503946,1984.415162,,,,,,,,,,301.8325961,223.2974162,399.0386989,,,,116.3467132,14,12033,63.60783077,195.2100151,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.12,,,0.102,0.138,0.157,,,0.135,0.181,0.116,,,0.098,0.135,,,,,,0.124,1160,,,,0.03595531,328.2360243,9129,,,,,,,,,,,,,,,,,,,,,,,,,,0.342,,,0.328,0.356,0.207351555,880,4244,0.177564321,0.237138789,0.112557427,294,2612,0.082770193,0.142344661,0.002062303,19,9213,,,484.8947368,,,,,,0.204753199,112,547,0.119338889,0.290167509,3.02901097,,,,,,,,,3.725854607,3.060638926,,,,,,,,,3.695890081,0.210457757,,,,,-430.83495,,,,,0.950857702,44677,46986,0.815974115,1.085741289,54367,,,47156.10638,61577.89362,31429,21795.80851,41062.19149,,,,,,,51042,6572.042553,95511.95745,65457,59955.89362,70958.10638,,,,,,0.743087558,1290,1736,,,,,,,,0.234333327,,54367,,,6.426735219,5,778,,,15.3228525,10,65262,7.347903368,28.17927131,,,,,,,,,,,,,,,,,,,34.0093478,13,46483,17.57312628,59.40748636,27.96721382,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,30.645705,20,65262,18.71919277,47.32980586,55.60610656,27.75836805,99.49468463,,,,,,,,,,,,,,,,27.5,,1200,,,33,,0.579326187,3783,6530,,,0.483,,,,,5.109553409,,,,,0.739115761,2190,2963,0.714669028,0.763562494,0.114028777,317,2780,0.069375844,0.15868171,0.76240297,2259,2963,0.728579363,0.796226577,9213,,,,,0.310322371,2859,9213,,,0.186150005,1715,9213,,,0.005210029,48,9213,,,0.313795723,2891,9213,,,0.003364811,31,9213,,,0.000108542,1,9213,,,0.041246065,380,9213,,,0.631716053,5820,9213,,,0.001058077,9,8506,0,0.008783889,0.489634213,4511,9213,,,1,9373,9373,, -46,025,46025,SD,Clark County,2024,1,6579.732162,40,10334,3597.2008,11039.67254,1,,,,2,,,,2,,,,2,,,,2,6121.528131,3259.455915,10467.99954,1,,,,2,,0.119,,,0.098,0.142,2.742124488,,,2.076485191,3.452830502,3.79112609,,,2.925422653,4.684406934,0.087837838,39,444,0.061508409,0.114167266,0,,,,,,,,,,,,,0.082524272,0.055954024,0.10909452,,,,,,,0.168,,,0.131,0.209,0.33,,,0.257,0.409,8,0.1623103,0.057,,,0.237,,,0.191,0.288,0.365389627,1402,3837,,,0.192068141,,,0.154936233,0.233225855,0.333333333,1,3,0.04092282,0.635504717,,,,,,16.20745543,10,617,7.772104856,29.80608759,,,,,,,,,,,,,,,,,,,,,,0.122229684,364,2978,0.103165855,0.141293514,,0,3855,,,,0.000511247,2,3912,,,1956,,0,3912,,,,2471,,,,,,,,,2475,0.5,,,,,,,,,0.5,0.31,,,,,,,,,0.3,0.911119812,2327,2554,0.87260664,0.949632984,0.60727729,484,797,0.479392319,0.735162261,0.023041475,45,1953,,,0.13,119,,0.079957447,0.180042553,,,,,,,,,,0.051282051,0,0.288514794,0.036199095,0,0.076264141,3.825681969,115000,30060,3.159765506,4.491598432,0.12945591,138,1066,0.063301407,0.195610413,12.97016861,5,3855,,,69.14893617,13,18800,36.81889623,118.2467868,,,,,,,,,,,,,68.34880674,35.31682582,119.3916105,,,,5.4,,,,,0,,,,,0.113564669,180,1585,0.078160694,0.148968643,0.103360812,0.060227649,0.146493974,0.013880126,0.000408971,0.027351281,0.008832808,0,0.020590804,0.699016393,1066,1525,0.633618587,0.7644142,,,,,,,,,,,,,0.654859967,0.617145305,0.692574629,0.301,,1525,0.229065217,0.372934783,80.39102669,,,77.31061848,83.4714349,,,,,,,,,,,,,80.51391376,77.43357969,83.59424782,,,,296.8661423,40,10334,201.7061407,421.3777923,,,,,,,,,,,,,289.8190597,194.0963728,416.2285139,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.09,,,0.076,0.105,0.13,,,0.11,0.152,0.084,,,0.07,0.099,,,,,,0.057,210,,,,0.1623103,599.087316,3691,,,,,,,,,,,,,,,,,,,,,,,,,,0.284,,,0.268,0.3,0.135620053,257,1895,0.111790266,0.15944984,0.100810081,112,1111,0.068639868,0.132980294,0.000255624,1,3912,,,3912,,,,,,,,,,,3.039975632,,,,,,,,,3.038276583,3.232573831,,,,,,,,,3.209218135,0.135643486,,,,,-6608.0595,,,,,0.682845661,32625,47778,0.515107442,0.85058388,62559,,,53408.3617,71709.6383,,,,,,,,,,,,,58986,54239.10638,63732.89362,,,,,,0.126797386,97,765,,,,,,,,0.203647757,,62559,,,2.666666667,1,375,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,400,,,-888,,0.703422053,1850,2630,,,0.659,,,,,2.440010486,,,,,0.802941177,1092,1360,0.760551135,0.845331218,0.118827161,154,1296,0.070657301,0.16699702,0.826470588,1124,1360,0.782903371,0.870037805,3912,,,,,0.277096115,1084,3912,,,0.236451943,925,3912,,,0.017382413,68,3912,,,0.010736196,42,3912,,,0.002811861,11,3912,,,0,0,3912,,,0.046267894,181,3912,,,0.91692229,3587,3912,,,0.012296254,43,3497,0,0.0320725,0.470858896,1842,3912,,,1,3837,3837,, -46,027,46027,SD,Clay County,2024,1,7030.128595,152,41350,5380.947264,8679.309926,0,,,,2,,,,2,,,,2,,,,2,5760.236736,4306.433854,7214.039618,,,,,2,,0.123,,,0.102,0.147,2.904185229,,,2.254209597,3.658599693,4.050846045,,,3.199325403,5.011490907,0.064794816,60,926,0.048939527,0.080650105,0,,,,,,,,,,,,,0.064516129,0.046483311,0.082548947,,,,,,,0.163,,,0.126,0.204,0.356,,,0.283,0.439,7.6,0.110698103,0.098,,,0.222,,,0.178,0.269,0.855682502,12807,14967,,,0.22062377,,,0.177922484,0.266664645,0.285714286,2,7,0.086061846,0.500925625,567.7,86,15150,,,5.721168323,38,6642,4.048639212,7.852750515,,,,,,,,,,,,,4.36827957,2.853505245,6.400541681,,,,,,,0.132461015,1478,11158,0.109822717,0.155099312,0.000462046,7,15150,,,2164.285714,0.000589005,9,15280,,,1697.777778,0.00078534,12,15280,,,1273.333333,1616,,,,,,,,,1665,0.5,,,,,,,,,0.5,0.6,,,,,0.36,,,,0.61,0.934006,6850,7334,0.908622004,0.959389995,0.720907928,2255,3128,0.618888995,0.822926862,0.021417921,158,7377,,,0.171,438,,0.111425532,0.230574468,0.257309942,0,0.685621892,,,,,,,,,,0.113347458,0.052046855,0.17464806,5,115890,23178,3.700657016,6.299342984,0.248541424,639,2571,0.148420025,0.348662822,13.86138614,21,15150,,,54.54774326,39,71497,38.78877784,74.56856073,,,,,,,,,,,,,56.3697858,39.2636212,78.39672632,,,,5.8,,,,,1,,,,,0.195817491,1030,5260,0.146111058,0.245523923,0.166921314,0.120406706,0.213435922,0.029467681,0.005111598,0.053823764,0,0,0.005125537,0.719099591,5271,7330,0.677878655,0.760320527,,,,,,,,,,,,,0.725793714,0.672630695,0.778956732,0.243,,7330,0.187496543,0.298503457,77.82950356,,,76.27757899,79.38142812,,,,,,,,,,,,,78.43867835,76.94556829,79.93178841,,,,397.7111712,152,41350,331.3065074,464.115835,,,,,,,,,,,,,370.7209912,305.4276027,436.0143798,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.094,,,0.079,0.11,0.135,,,0.114,0.157,0.092,,,0.078,0.109,75.8,10,13184,,,0.098,1450,,,,0.110698103,1534.718505,13864,,,,,,,,,,,,,,,,,,,,,,,,,,0.284,,,0.267,0.301,0.150181861,1280,8523,0.121586116,0.178777606,0.077733382,214,2753,0.055095084,0.10037168,0.001374346,21,15280,,,727.6190476,0.775,60.45,78,,,,,,,,3.195729909,,,,,,,,,3.303329004,3.021214672,,,,,,,,,3.150107735,0.015972274,,,,,-629.3447,,,,,0.743883106,38946,52355,0.617107716,0.870658495,55263,,,47695.85106,62830.14894,,,,,,,13958,91.44680851,27824.55319,,,,59923,47375.42553,72470.57447,,,,,,0.22611465,355,1570,,,22.85806611,,,,,0.277816984,,55263,,,7.594936709,6,790,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.05460737,12,99547,6.228791534,21.05697314,,,,,,,,,,,,,12.66201625,6.320832893,22.65584469,,,,35.45454546,,1100,,,39,,0.505365854,5698,11275,,,0.657,,,,,86.05995609,,,,,0.510893648,2767,5416,0.466787538,0.554999759,0.166244397,853,5131,0.114682935,0.217805859,0.89844904,4866,5416,0.856846281,0.940051799,15280,,,,,0.169502618,2590,15280,,,0.126243456,1929,15280,,,0.017604712,269,15280,,,0.040117801,613,15280,,,0.027290576,417,15280,,,0.00065445,10,15280,,,0.033311518,509,15280,,,0.86302356,13187,15280,,,0.004065326,58,14267,0,0.010821129,0.504253927,7705,15280,,,0.221019576,3308,14967,, -46,029,46029,SD,Codington County,2024,1,6785.768807,341,77722,5635.191364,7936.346249,0,,,,2,,,,2,,,,2,,,,2,6311.585289,5171.02121,7452.149369,,,,,2,,0.122,,,0.101,0.145,2.822174558,,,2.280877624,3.433184996,3.876007256,,,3.238048355,4.56040845,0.066930868,152,2271,0.056652654,0.077209081,0,0.103773585,0.045716474,0.161830696,,,,,,,,,,0.065392354,0.054524945,0.076259764,,,,,,,0.18,,,0.147,0.215,0.372,,,0.329,0.416,8.5,0.065202507,0.082,,,0.232,,,0.196,0.269,0.843424537,23890,28325,,,0.193834308,,,0.165104211,0.223353804,0.266666667,4,15,0.129817183,0.413965161,320.1,91,28427,,,16.35351427,94,5748,13.21530418,20.0125598,,,,,,,,,,,,,14.98345982,11.82471217,18.72675394,,,,,,,0.108889372,2505,23005,0.0945915,0.123187244,0.000949801,27,28427,,,1052.851852,0.000870443,25,28721,,,1148.84,0.003412138,98,28721,,,293.0714286,2679,,,,,1579,,,,2663,0.61,,,,,,,,,0.62,0.59,,,,,0.53,,,,0.59,0.918308257,17761,19341,0.897131454,0.939485061,0.62038489,4352,7015,0.536820426,0.703949353,0.02003757,320,15970,,,0.111,717,,0.069297872,0.152702128,0.453271028,0.007072523,0.899469533,,,,,,,0.61097852,0.33615103,0.885806011,0.070354458,0.038623563,0.102085352,3.94250684,113832,28873,3.310118262,4.574895419,0.159585648,1063,6661,0.096527781,0.222643514,14.77468604,42,28427,,,83.13437926,117,140736,68.07025814,98.19850038,307.503075,147.459677,565.5091034,,,,,,,,,,80.2989592,64.8659961,95.73192231,,,,6.3,,,,,0,,,,,0.143507031,1735,12090,0.11431814,0.172695922,0.106583333,0.080666761,0.132499906,0.023986766,0.011577502,0.03639603,0.037634409,0.020521932,0.054746885,0.859106755,13061,15203,0.826157244,0.892056266,,,,,,,,,,,,,0.87818266,0.84733677,0.90902855,0.106,,15203,0.083361702,0.128638298,78.74993457,,,77.7091424,79.79072673,,,,,,,,,,,,,78.97719062,77.93154218,80.02283906,,,,328.6497931,341,77722,292.0448783,365.2547079,,,,,,,,,,,,,320.3470836,283.186506,357.5076611,,,,72.21458047,21,29080,44.70196349,110.3876573,,,,,,,,,,,,,55.41262616,30.29459836,92.972971,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.093,,,0.079,0.108,0.131,,,0.112,0.152,0.09,,,0.077,0.103,46.3,11,23775,,,0.082,2320,,,,0.065202507,1775.268665,27227,,,12.99898372,11,84622,6.489045836,23.25877256,,,,,,,,,,,,,,,,,,,0.296,,,0.28,0.31,0.120582501,1979,16412,0.101518671,0.13964633,0.082415991,569,6904,0.059777693,0.105054289,0.001323074,38,28721,,,755.8157895,0.878377581,297.77,339,,,,,,,,3.309525435,,,,,,,,,3.330922352,3.213273067,,,,,,,,,3.250871567,0.053250533,,,,,-1810.672025,,,,,0.715519228,40356,56401,0.643093909,0.787944548,65009,,,57655.12766,72362.87234,,,,,,,,,,,,,66837,60828.31915,72845.68085,,,,,,0.236122972,1106,4684,,,66.24026272,,,,,0.2361673,,65009,,,6.832298137,11,1610,,,,,,,,,,,,,,,,,,,,,,,,,,21.06155365,30,140736,13.99524944,30.43980912,21.3165075,,,,,,,,,,,,,19.44864956,12.46111675,28.9380489,,,,12.7899045,18,140736,7.58010799,20.21356317,,,,,,,,,,,,,13.89789679,8.236774437,21.96466867,,,,15.2487064,30,196738,10.28823818,21.76847655,,,,,,,,,,,,,14.87808238,9.804750038,21.64682873,,,,24.51612903,,3100,,,76,,0.63016519,13161,20885,,,0.714,,,,,77.7318896,,,,,0.671434443,8168,12165,0.639544423,0.703324464,0.100610791,1186,11788,0.070441917,0.130779664,0.8459515,10291,12165,0.817906833,0.873996167,28721,,,,,0.228160579,6553,28721,,,0.195292643,5609,28721,,,0.007450994,214,28721,,,0.032902754,945,28721,,,0.008495526,244,28721,,,0.000139271,4,28721,,,0.038264684,1099,28721,,,0.905678772,26012,28721,,,0.00383427,103,26863,0,0.008100789,0.495282198,14225,28721,,,0.271209179,7682,28325,, -46,031,46031,SD,Corson County,2024,1,31626.53784,129,11436,24825.95311,38427.12256,0,45923.52262,35974.03352,55873.01173,,,,,2,,,,2,,,,2,,,,2,,,,2,,0.261,,,0.23,0.298,5.032819052,,,4.172050901,6.025858404,5.37832116,,,4.46438264,6.374091764,0.089341693,57,638,0.06720817,0.111475216,0,0.087912088,0.061892943,0.113931233,,,,,,,,,,0.089552239,0.041205252,0.137899226,,,,,,,0.309,,,0.265,0.355,0.437,,,0.378,0.5,4.2,0.212097489,0.206,,,0.358,,,0.311,0.41,0.027165556,106,3902,,,0.16365903,,,0.132929282,0.198216366,0.5,4,8,0.315552499,0.64971552,1007.2,39,3872,,,62.76150628,75,1195,49.36590603,78.67209159,79.45516459,61.93919876,100.3868205,,,,,,,,,,,,,,,,,,,0.146213184,417,2852,0.123574886,0.168851482,,0,3872,,,,0.000522739,2,3826,,,1913,0.001045478,4,3826,,,956.5,5154,,,,,5760,,,,2985,0.27,,,,,0.16,,,,0.36,0.07,,,,,0.06,,,,0.08,0.862085087,1844,2139,0.834168307,0.890001866,0.447276941,386,863,0.367958949,0.526594933,0.029641186,38,1282,,,0.539,727,,0.392446809,0.685553192,0.648312611,0.600488948,0.696136274,,,,,,,,,,0.25862069,0.128148183,0.389093196,7.411843977,99000,13357,5.14610096,9.677586994,0.487341772,693,1422,0.385365041,0.589318503,12.91322314,5,3872,,,250.5280739,51,20357,186.5346065,329.3981499,371.8942871,273.2539339,494.5405629,,,,,,,,,,,,,,,,4.6,,,,,0,,,,,0.174273859,210,1205,0.13861678,0.209930938,0.085957447,0.051945335,0.119969558,0.082987552,0.059570779,0.106404325,0.019917012,0.003040856,0.036793169,0.593425606,686,1156,0.541064497,0.645786714,0.702064897,0.615742138,0.788387656,,,,,,,,,,0.434246575,0.369913506,0.498579645,0.372,,1156,0.300719454,0.443280546,61.42406442,,,58.06657923,64.7815496,54.36674285,50.71118902,58.02229668,,,,,,,,,,,,,,,,1221.067214,129,11436,1001.375241,1440.759187,1976.301971,1597.113222,2355.49072,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.166,,,0.146,0.188,0.183,,,0.161,0.206,0.166,,,0.146,0.188,0,0,2853,,,0.206,820,,,,0.212097489,858.9948301,4050,,,,,,,,,,,,,,,,,,,,,,,,,,0.328,,,0.315,0.34,0.212447636,355,1671,0.175511466,0.249383806,0.052673583,66,1253,0.035992732,0.069354435,0.001045478,4,3826,,,956.5,,,,,,0.177993528,55,309,0.092052367,0.263934688,2.635661672,,,,,,,,,,2.255580202,,,,,,,,,,0.330345588,,,,,-17564.18667,,,,,1.096482775,45515,41510,0.82641743,1.36654812,39329,,,33615.80851,45042.19149,29063,24540.10638,33585.89362,,,,,,,,,,68182,58198.51064,78165.48936,,,,,,0.993472585,761,766,,,,,,,,0.323933993,,39329,,,4.77326969,2,419,,,,,,,,,,,,,,,,,,,,,,,,,,66.43151884,12,20357,34.32613518,116.0424943,58.94778209,105.8988567,54.71948455,184.9839909,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,41.83225267,12,28686,21.61533539,73.07252684,56.55149013,27.11863765,104.0002038,,,,,,,,,,,,,,,,0,,600,,,0,,0.493461539,1283,2600,,,0.387,,,,,0.644147055,,,,,0.563958917,604,1071,0.521010607,0.606907227,0.099244876,92,927,0.053701122,0.14478863,0.762838469,817,1071,0.723809025,0.801867913,3826,,,,,0.35781495,1369,3826,,,0.119968636,459,3826,,,0.0060115,23,3826,,,0.657083116,2514,3826,,,0.004704652,18,3826,,,0.000522739,2,3826,,,0.057501307,220,3826,,,0.280449556,1073,3826,,,0,0,3543,0,0.013451757,0.495295348,1895,3826,,,1,3902,3902,, -46,033,46033,SD,Custer County,2024,1,6141.299365,145,23621,4115.074117,8167.524613,0,,,,2,,,,2,,,,2,,,,2,6681.341869,4307.67979,9055.003949,,,,,2,,0.123,,,0.102,0.147,2.938632351,,,2.211350713,3.74062171,3.986324078,,,3.061486748,4.960678314,0.066929134,34,508,0.045197663,0.088660605,0,,,,,,,,,,,,,0.068796069,0.044205811,0.093386326,,,,,,,0.174,,,0.136,0.214,0.381,,,0.303,0.459,8.1,0.076371092,0.091,,,0.228,,,0.183,0.276,0.775547007,6451,8318,,,0.163568385,,,0.129827793,0.198725266,0.411764706,7,17,0.284189348,0.52988216,92.9,8,8609,,,15.38461539,19,1235,9.262543453,24.02498265,,,,,,,,,,,,,12.20865705,6.094517611,21.84465984,,,,,,,0.137730871,783,5685,0.118667041,0.156794701,0.00046463,4,8609,,,2152.25,0.000222074,2,9006,,,4503,0.000555185,5,9006,,,1801.2,1692,,,,,,,,,1678,0.46,,,,,,,,,0.46,0.4,,,,,0.17,,,,0.4,0.936464486,6500,6941,0.912098326,0.960830647,0.601092896,880,1464,0.47146386,0.730721932,0.028382214,120,4228,,,0.168,197,,0.103659575,0.232340426,,,,,,,,,,0.169014085,0,0.624169149,0.112,0.046669794,0.177330207,4.228394867,134112,31717,2.937352237,5.519437497,0.159050967,181,1138,0.056072175,0.262029758,11.61575096,10,8609,,,120.4134954,53,44015,90.19797099,157.5038167,,,,,,,,,,,,,119.2469681,87.61818686,158.5731881,,,,2.6,,,,,0,,,,,0.141206675,550,3895,0.090959714,0.191453637,0.110273082,0.064057942,0.156488222,0.025673941,0.00354997,0.047797912,0.012580231,0,0.025214721,0.782884311,2964,3786,0.742276026,0.823492596,,,,,,,,,,,,,0.734075724,0.649835814,0.818315634,0.438,,3786,0.343046446,0.532953554,80.93866996,,,78.91292072,82.9644192,,,,,,,,,,,,,80.43642933,78.18696485,82.6858938,,,,306.1967448,145,23621,244.3369939,368.0564957,,,,,,,,,,,,,320.9931107,252.9239217,389.0622997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.093,,,0.079,0.109,0.133,,,0.113,0.155,0.088,,,0.074,0.102,,,,,,0.091,760,,,,0.076371092,627.4648953,8216,,,,,,,,,,,,,,,,,,,,,,,,,,0.289,,,0.271,0.304,0.142172872,653,4593,0.119534574,0.16481117,0.119860018,137,1143,0.088881294,0.150838741,0.000555185,5,9006,,,1801.2,0.825,56.925,69,,,,,,,,2.918074349,,,,,,,,,2.999155477,2.955298147,,,,,,,,,3.032383268,0.02257304,,,,,2962.06,,,,,0.811453757,55600,68519,0.657218318,0.965689197,75336,,,67384,83288,170724,31199.40426,310248.5957,,,,101607,20651.25532,182562.7447,,,,73866,63690.68085,84041.31915,,,,,,0.16433942,153,931,,,,,,,,0.169109058,,75336,,,9.036144578,3,332,,,,,,,,,,,,,,,,,,,,,,,,,,24.51873777,14,44015,11.7576878,45.09083173,31.80733841,,,,,,,,,,,,,22.21055498,10.65082443,40.8460014,,,,31.80733841,14,44015,17.38936789,53.36730915,,,,,,,,,,,,,35.52037347,19.41931871,59.59715107,,,,26.20502154,16,61057,14.97843401,42.55531323,,,,,,,,,,,,,21.8878249,11.30975852,38.23362526,,,,28.57142857,,700,,,20,,0.734983278,5494,7475,,,0.593,,,,,10.35996473,,,,,0.858363542,3315,3862,0.838116721,0.878610364,0.127833421,485,3794,0.077320051,0.178346791,0.83143449,3211,3862,0.771455623,0.891413357,9006,,,,,0.132911392,1197,9006,,,0.333888519,3007,9006,,,0.00799467,72,9006,,,0.035420831,319,9006,,,0.011214746,101,9006,,,0.000555185,5,9006,,,0.046857651,422,9006,,,0.883077948,7953,9006,,,0,0,8207,0,0.008710779,0.496890962,4475,9006,,,1,8318,8318,, -46,035,46035,SD,Davison County,2024,1,7033.066804,260,54009,5696.628469,8369.505139,0,,,,2,,,,2,,,,2,,,,2,6680.921837,5293.894918,8067.948757,,,,,2,,0.129,,,0.106,0.156,3.080524353,,,2.376161788,3.863886697,4.124484479,,,3.223087661,5.096908546,0.074722709,128,1713,0.062270693,0.087174724,0,,,,,,,,,,0.094339623,0.038693759,0.149985487,0.07329105,0.059730977,0.086851123,,,,,,,0.18,,,0.142,0.224,0.403,,,0.321,0.49,7.8,0.099845437,0.096,,,0.246,,,0.197,0.3,0.81619563,16288,19956,,,0.193739823,,,0.154033224,0.236099316,1,4,4,,,402.5,80,19878,,,17.65504753,78,4418,13.95558244,22.03429834,73.73271889,42.1446196,119.7373161,,,,,,,81.08108108,45.38046558,133.7309128,10.74705111,7.712269428,14.57958835,,,,,,,0.104617183,1611,15399,0.089127821,0.120106545,0.00080491,16,19878,,,1242.375,0.000951284,19,19973,,,1051.210526,0.001552095,31,19973,,,644.2903226,2214,,,,,,,,,2200,0.46,,,,,,,,,0.47,0.52,,,,,0.36,,,,0.52,0.902361857,12264,13591,0.873941456,0.930782258,0.611122387,3011,4927,0.518852311,0.703392463,0.018782734,208,11074,,,0.151,689,,0.104531915,0.197468085,0.829059829,0.618542793,1,,,,,,,0.347692308,0.165547251,0.529837364,0.134574468,0.040428552,0.228720384,4.824661854,116284,24102,3.717262843,5.932060865,0.218682738,1016,4646,0.125332831,0.312032644,15.09206158,30,19878,,,85.89415819,85,98959,68.60920281,106.2094568,,,,,,,,,,,,,81.94789012,64.23406442,103.0371686,,,,5,,,,,0,,,,,0.123121387,1065,8650,0.086542456,0.159700319,0.107990599,0.071617605,0.144363594,0.003930636,0,0.008812225,0.031098266,0.012679809,0.049516723,0.814872494,8372,10274,0.779843288,0.849901699,,,,,,,,,,,,,0.845779817,0.811037776,0.880521858,0.072,,10274,0.046473192,0.097526808,78.20264836,,,76.99040859,79.41488813,,,,,,,,,,,,,78.51924239,77.26911915,79.76936563,,,,360.2761216,260,54009,314.1450364,406.4072068,,,,,,,,,,,,,350.3386941,303.1138668,397.5635213,,,,53.31782269,11,20631,26.61606499,95.4003127,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.097,,,0.082,0.115,0.138,,,0.118,0.16,0.089,,,0.075,0.105,72.4,12,16570,,,0.096,1910,,,,0.099845437,1947.385409,19504,,,,,,,,,,,,,,,,,,,,,,,,,,0.283,,,0.266,0.3,0.118418622,1282,10826,0.099354792,0.137482452,0.074445839,356,4782,0.05299903,0.095892647,0.00125169,25,19973,,,798.92,0.9125,197.1,216,,,,,,,,3.400754945,,,,,,,,,3.538438253,3.410718585,,,,,,,,,3.588990532,0.047568378,,,,,-1726.144067,,,,,0.734454667,39037,53151,0.657505573,0.811403761,63753,,,54679.80851,72826.19149,13713,11413.42553,16012.57447,,,,,,,51721,30202.70213,73239.29787,56673,52239.46809,61106.53192,,,,,,0.162883436,531,3260,,,,,,,,0.24082004,,63753,,,8.26446281,9,1089,,,,,,,,,,,,,,,,,,,,,,,,,,18.36683832,19,98959,10.88535242,29.02752296,19.19987065,,,,,,,,,,,,,15.31396319,8.372286181,25.69422809,,,,12.1262341,12,98959,6.265802109,21.18209061,,,,,,,,,,,,,,,,,,,10.0922722,14,138720,5.517539127,16.93311788,,,,,,,,,,,,,9.557336052,4.938415002,16.69474271,,,,41.36363636,,2200,,,91,,0.561354582,8454,15060,,,0.701,,,,,110.8827674,,,,,0.628077652,5306,8448,0.592623389,0.663531915,0.091157476,734,8052,0.055122871,0.127192082,0.851207386,7191,8448,0.820641933,0.881772839,19973,,,,,0.234216192,4678,19973,,,0.207630301,4147,19973,,,0.008561558,171,19973,,,0.033595354,671,19973,,,0.009062234,181,19973,,,0.000500676,10,19973,,,0.042957993,858,19973,,,0.891203124,17800,19973,,,0.001763763,33,18710,0,0.006678406,0.499524358,9977,19973,,,0.213770295,4266,19956,, -46,037,46037,SD,Day County,2024,1,8483.162655,80,14263,5590.457643,12342.55628,0,,,,2,,,,2,,,,2,,,,2,6802.220378,4154.972924,10505.47768,1,,,,2,,0.14,,,0.118,0.165,3.167472846,,,2.445803402,3.974171878,4.24205154,,,3.324496796,5.232471491,0.054054054,20,370,0.031012991,0.077095117,1,,,,,,,,,,,,,0.041509434,0.017493446,0.065525422,,,,,,,0.197,,,0.16,0.237,0.39,,,0.313,0.47,6.8,0.185864147,0.099,,,0.244,,,0.201,0.295,0.456597541,2488,5449,,,0.174424652,,,0.139680527,0.214159004,0.25,1,4,0.023230216,0.544021398,166.2,9,5414,,,16.03773585,17,1060,9.342572141,25.67796869,,,,,,,,,,,,,,,,,,,,,,0.150412797,583,3876,0.130157478,0.170668116,0.000369413,2,5414,,,2707,0.000182515,1,5479,,,5479,,0,5479,,,,2452,,,,,,,,,2500,0.52,,,,,0.55,,,,0.52,0.21,,,,,0.17,,,,0.21,0.915067792,3577,3909,0.891235159,0.938900426,0.591818182,651,1100,0.485513031,0.698123333,0.030167598,81,2685,,,0.194,232,,0.127276596,0.260723404,0.603305785,0.589528514,0.617083056,,,,,,,0.803278689,0.223507317,1,0.074279379,0.028815791,0.119742967,4.131608672,113392,27445,3.620054823,4.643162521,0.193126023,236,1222,0.135610451,0.250641595,16.62356853,9,5414,,,99.23187181,27,27209,65.3944288,144.3771636,,,,,,,,,,,,,85.94387865,52.49675384,132.7333501,,,,5.5,,,,,0,,,,,0.093385214,240,2570,0.061984572,0.124785856,0.090944575,0.055262461,0.126626688,0.00155642,0,0.014537465,0.003112841,0.000798409,0.005427272,0.777051858,1903,2449,0.726245619,0.827858097,,,,,,,,,,,,,0.752763819,0.702247208,0.80328043,0.281,,2449,0.224282103,0.337717897,78.0862087,,,75.57335949,80.5990579,,,,,,,,,,,,,79.67160293,77.30507024,82.03813561,,,,367.2812971,80,14263,280.2743225,472.7638331,,,,,,,,,,,,,324.1467328,236.4348512,433.7338316,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.103,,,0.089,0.118,0.142,,,0.122,0.164,0.095,,,0.082,0.111,,,,,,0.099,540,,,,0.185864147,1061.284277,5710,,,,,,,,,,,,,,,,,,,,,,,,,,0.3,,,0.285,0.316,0.165745856,450,2715,0.14072458,0.190767133,0.115479116,141,1221,0.082117413,0.148840818,0.00073006,4,5479,,,1369.75,,,,,,,,,,,3.361686012,,,,,,,,,3.53924617,3.517428675,,,,,,,,,3.730096977,0.164329952,,,,,-3936.33615,,,,,0.770800539,40642,52727,0.659014497,0.882586581,62786,,,53932.04255,71639.95745,34531,18963,50099,,,,,,,70208,27734.97872,112681.0213,61652,54218.29787,69085.70213,,,,,,0.229395604,167,728,,,,,,,,0.202911477,,62786,,,3.50877193,1,285,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,46.66666667,,600,,,28,,0.696592244,2964,4255,,,0.484,,,,,4.720542092,,,,,0.748296423,1757,2348,0.714065361,0.782527484,0.083483755,185,2216,0.045258472,0.121709037,0.800681431,1880,2348,0.754903614,0.846459248,5479,,,,,0.220660705,1209,5479,,,0.268297135,1470,5479,,,0.004562876,25,5479,,,0.09417777,516,5479,,,0.007300602,40,5479,,,0,0,5479,,,0.026282168,144,5479,,,0.847599927,4644,5479,,,0.000193723,1,5162,0,0.013620982,0.485490053,2660,5479,,,1,5449,5449,, -46,039,46039,SD,Deuel County,2024,1,4106.41509,44,11755,2245.015342,6889.86676,1,,,,2,,,,2,,,,2,,,,2,4102.829714,2184.584028,7015.963764,1,,,,2,,0.113,,,0.092,0.134,2.718520279,,,2.07156665,3.490158698,3.938468417,,,3.057711731,4.902762684,0.05974026,23,385,0.036065631,0.083414889,1,,,,,,,,,,,,,0.060773481,0.036161645,0.085385317,,,,,,,0.164,,,0.125,0.2,0.394,,,0.317,0.474,8.4,0.099532614,0.066,,,0.214,,,0.169,0.259,0.558090803,2397,4295,,,0.17867721,,,0.143466358,0.218520437,0,0,4,0,0.360186253,163.9,7,4272,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.103188929,343,3324,0.087699567,0.118678291,0.000234082,1,4272,,,4272,0.000229779,1,4352,,,4352,,0,4352,,,,493,,,,,,,,,493,0.51,,,,,,,,,0.51,0.47,,,,,,,,,0.47,0.928255695,2730,2941,0.908851352,0.947660039,0.696837514,639,917,0.579786997,0.81388803,0.029130435,67,2300,,,0.09,94,,0.055446809,0.124553192,,,,,,,,,,0.161290323,0,0.561315616,0.045801527,0.01371231,0.077890743,3.539541738,122500,34609,2.832418962,4.246664513,0.091943128,97,1055,0.046784185,0.137102071,18.72659176,8,4272,,,55.58901191,12,21587,28.72365363,97.10281673,,,,,,,,,,,,,54.27006759,27.09142221,97.10414186,,,,5.4,,,,,0,,,,,0.067605634,120,1775,0.042202974,0.093008294,0.045172219,0.015405639,0.074938799,0.015774648,0.000123882,0.031425414,0.016338028,0.0020284,0.030647657,0.795683453,1659,2085,0.762537216,0.828829691,,,,,,,,,,,,,0.784356725,0.70585682,0.862856631,0.336,,2085,0.266586157,0.405413843,82.06691335,,,79.68160592,84.45222077,,,,,,,,,,,,,81.98681947,79.54832604,84.42531291,,,,242.6645917,44,11755,170.858267,334.4811744,,,,,,,,,,,,,242.0613845,168.6046235,336.6487888,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.088,,,0.073,0.102,0.13,,,0.11,0.151,0.081,,,0.068,0.095,,,,,,0.066,280,,,,0.099532614,434.3603279,4364,,,,,,,,,,,,,,,,,,,,,,,,,,0.288,,,0.271,0.303,0.111591696,258,2312,0.092527866,0.130655525,0.086092715,91,1057,0.059879949,0.112305481,0.000919118,4,4352,,,1088,,,,,,,,,,,3.398202164,,,,,,,,,3.385793855,3.036243663,,,,,,,,,3.048555579,,,,,,427.1172,,,,,0.781855639,40988,52424,0.618020447,0.94569083,77694,,,73054.34043,82333.65957,,,,,,,,,,51181,42657.08511,59704.91489,76997,71142.02128,82851.97872,,,,,,0.130146082,98,753,,,,,,,,0.163976626,,77694,,,7.326007326,2,273,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,500,,,-888,,0.725308642,2350,3240,,,0.641,,,,,0.824563116,,,,,0.78718663,1413,1795,0.75460026,0.819772999,0.045187793,77,1704,0.017825502,0.072550085,0.82005571,1472,1795,0.775642773,0.864468648,4352,,,,,0.244025735,1062,4352,,,0.223345588,972,4352,,,0.008272059,36,4352,,,0.008501838,37,4352,,,0.001838235,8,4352,,,0,0,4352,,,0.036534927,159,4352,,,0.935661765,4072,4352,,,0,0,4042,0,0.011791087,0.481617647,2096,4352,,,1,4295,4295,, -46,041,46041,SD,Dewey County,2024,1,32361.64698,178,16263,26648.45101,38074.84294,0,43130.24941,35391.94917,50868.54966,,,,,2,,,,2,,,,2,,,,2,,,,2,,0.242,,,0.209,0.279,4.63106067,,,3.770375409,5.543701574,5.34632563,,,4.427205674,6.315225843,0.094373866,104,1102,0.077112879,0.111634853,0,0.085626911,0.064181516,0.107072307,,,,,,,,,,0.105421687,0.072387685,0.138455689,,,,,,,0.313,,,0.266,0.361,0.449,,,0.387,0.51,4.5,0.242556761,0.179,,,0.359,,,0.307,0.413,0.544760451,2854,5239,,,0.182471573,,,0.148731963,0.218692219,0.2,1,5,0.015594715,0.47750127,2096.8,110,5246,,,58.64386072,96,1637,47.50171546,71.6141912,58.12220566,45.94319166,72.53914311,,,,,,,,,,,,,,,,,,,0.183542681,716,3901,0.158521405,0.208563958,0.000190621,1,5246,,,5246,0.000583658,3,5140,,,1713.333333,0.000583658,3,5140,,,1713.333333,5107,,,,,7138,,,,760,0.21,,,,,0.04,,,,0.41,0.25,,,,,0.36,,,,0.14,0.866045845,2418,2792,0.839116564,0.892975126,0.483534137,602,1245,0.397040441,0.570027832,0.057230232,131,2289,,,0.291,562,,0.188531915,0.393468085,0.467295227,0.401931468,0.532658986,,,,,,,,,,,,,4.767465653,97857,20526,3.674727091,5.860204216,0.338880484,672,1983,0.247729315,0.430031653,13.34349981,7,5246,,,195.3533803,56,28666,147.5678441,253.6826136,246.0751021,182.6416838,324.4193448,,,,,,,,,,,,,,,,4.2,,,,,0,,,,,0.187861272,325,1730,0.148964142,0.226758401,0.080938416,0.043542733,0.1183341,0.104046243,0.069937331,0.138155155,0.010982659,0,0.023021538,0.7327452,1412,1927,0.685804942,0.779685458,0.754133717,0.700135504,0.808131929,,,,,,,,,,0.6609375,0.555084171,0.766790829,0.181,,1927,0.131427742,0.230572258,61.36046616,,,58.71520456,64.00572777,56.32432998,53.48971241,59.15894755,,,,,,,,,,,,,,,,1291.18875,178,16263,1095.702098,1486.675401,1727.682612,1452.225055,2003.140168,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.157,,,0.136,0.18,0.181,,,0.158,0.207,0.165,,,0.144,0.187,293.6,11,3747,,,0.179,960,,,,0.242556761,1285.793391,5301,,,,,,,,,,,,,,,,,,,,,,,,,,0.355,,,0.339,0.369,0.245800177,556,2262,0.208864007,0.282736347,0.099130435,171,1725,0.07172618,0.12653469,0.002918288,15,5140,,,342.6666667,,,,,,,,,,,3.649044879,,,,,,,,,,3.28851602,,,,,,,,,,0.184007694,,,,,2596.168,,,,,0.920318532,37907,41189,0.764293047,1.076344017,50048,,,43040.85106,57055.14894,47794,36477.23404,59110.76596,,,,,,,,,,67788,53618.80851,81957.19149,,,,,,0.195067265,87,446,,,,,,,,0.246443414,,50048,,,1.661129568,1,602,,,,,,,,,,,,,,,,,,,,,,,,,,51.49518081,14,28666,28.15289454,86.40016335,48.83834508,55.50857261,27.70967945,99.32016946,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,52.37822064,21,40093,32.42294412,80.06567415,74.22855325,45.94864439,113.4662286,,,,,,,,,,,,,,,,0,,800,,,0,,0.541597796,1966,3630,,,0.335,,,,,2.325241157,,,,,0.606567164,1016,1675,0.558366529,0.654767799,0.078998073,123,1557,0.031599563,0.126396583,0.717014925,1201,1675,0.682167663,0.751862188,5140,,,,,0.381906615,1963,5140,,,0.094163424,484,5140,,,0.007392996,38,5140,,,0.735603113,3781,5140,,,0.004474708,23,5140,,,0.000389105,2,5140,,,0.051750973,266,5140,,,0.182684825,939,5140,,,0.00085197,4,4695,0,0.015232493,0.50233463,2582,5140,,,1,5239,5239,, -46,043,46043,SD,Douglas County,2024,1,5900.274004,28,7635,2829.410726,10850.81397,1,,,,2,,,,2,,,,2,,,,2,6160.019755,2816.753287,11693.63631,1,,,,2,,0.122,,,0.1,0.148,2.9142933,,,2.203502617,3.708691739,4.089148845,,,3.133611085,5.172248251,0.052287582,16,306,0.027345487,0.077229676,1,,,,,,,,,,,,,0.052083333,0.026421109,0.077745557,,,,,,,0.174,,,0.135,0.218,0.365,,,0.284,0.454,9.2,0.021713166,0.07,,,0.23,,,0.182,0.283,0.117107584,332,2835,,,0.183370598,,,0.144673483,0.227107433,0.333333333,1,3,0.04092282,0.635504717,141.8,4,2821,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.136851938,293,2141,0.116596619,0.157107258,0.000354484,1,2821,,,2821,0.000360231,1,2776,,,2776,0.000360231,1,2776,,,2776,4991,,,,,,,,,4998,0.43,,,,,,,,,0.44,0.36,,,,,,,,,0.36,0.912882788,1729,1894,0.886951414,0.938814162,0.682310469,378,554,0.568205141,0.796415798,0.019788918,30,1516,,,0.133,94,,0.085340426,0.180659575,,,,,,,,,,,,,0.24005891,0.129884465,0.350233355,4.165057151,131545,31583,3.166829054,5.163285248,0.066216216,49,740,0.018055874,0.114376558,21.26905353,6,2821,,,117.1282899,17,14514,68.2315452,187.5337386,,,,,,,,,,,,,124.9816204,72.80639957,200.1076813,,,,4.8,,,,,0,,,,,0.095435685,115,1205,0.06241078,0.12846059,0.069491525,0.030445652,0.108537399,0.029045643,0.001211035,0.056880251,0.029045643,0.005223538,0.052867748,0.726448011,1041,1433,0.678910824,0.773985198,,,,,,,,,,,,,0.718944099,0.642428762,0.795459437,0.262,,1433,0.192107189,0.331892811,78.90297593,,,75.79500404,82.01094782,,,,,,,,,,,,,78.7843964,75.48271897,82.08607382,,,,251.1578572,28,7635,159.2125369,376.8601032,,,,,,,,,,,,,250.4523303,152.9827899,386.8033113,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.094,,,0.079,0.11,0.137,,,0.115,0.158,0.084,,,0.07,0.1,0,0,2276,,,0.07,200,,,,0.021713166,65.18292362,3002,,,,,,,,,,,,,,,,,,,,,,,,,,0.288,,,0.271,0.304,0.142958748,201,1406,0.12032045,0.165597046,0.127741936,99,775,0.090805765,0.164678106,0.002161383,6,2776,,,462.6666667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-814.6533,,,,,0.716538905,42250,58964,0.648125664,0.784952147,73934,,,67915.78723,79952.21277,33571,3686.06383,63455.93617,,,,,,,37768,26290.38298,49245.61702,76971,66321.46809,87620.53192,,,,,,0.104938272,34,324,,,,,,,,0.172315849,,73934,,,4.424778761,1,226,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,300,,,-888,,0.775909091,1707,2200,,,0.648,,,,,3.9218116,,,,,0.774373259,834,1077,0.730646313,0.818100205,0.079646018,81,1017,0.034086188,0.125205847,0.839368617,904,1077,0.780905323,0.89783191,2776,,,,,0.264769452,735,2776,,,0.242435159,673,2776,,,0.004682997,13,2776,,,0.024495677,68,2776,,,0.001440922,4,2776,,,0,0,2776,,,0.021974063,61,2776,,,0.933357349,2591,2776,,,0.006170459,16,2593,0,0.024319287,0.506123919,1405,2776,,,1,2835,2835,, -46,045,46045,SD,Edmunds County,2024,1,5603.004969,47,10463,3063.214955,9400.890276,1,,,,2,,,,2,,,,2,,,,2,5826.855977,3185.596384,9776.47423,1,,,,2,,0.115,,,0.094,0.137,2.822924248,,,2.162828015,3.625673717,3.97887087,,,3.079395419,4.979062214,0.058441558,18,308,0.032243733,0.084639384,1,,,,,,,,,,,,,0.061433447,0.033938225,0.08892867,,,,,,,0.165,,,0.128,0.204,0.351,,,0.276,0.432,8.7,0.095164169,0.057,,,0.222,,,0.179,0.27,0.40366282,1609,3986,,,0.187325918,,,0.150680934,0.230382825,0,0,3,0,0.420755624,124,5,4033,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.103837472,322,3101,0.08834811,0.119326834,0.000495909,2,4033,,,2016.5,,0,4065,,,,,0,4065,,,,2382,,,,,,,,,2388,0.54,,,,,,,,,0.54,0.42,,,,,,,,,0.42,0.925887265,2661,2874,0.915824544,0.935949986,0.685245902,627,915,0.557011387,0.813480416,0.019047619,38,1995,,,0.131,106,,0.079765957,0.182234043,,,,,,,,,,,,,0.094027954,0.017295023,0.170760885,4.754597337,142462,29963,3.325873972,6.183320701,0.092772384,86,927,0.020922448,0.16462232,14.87726258,6,4033,,,107.8416269,21,19473,66.75566674,164.8473822,,,,,,,,,,,,,113.3970517,70.19456226,173.3394391,,,,5,,,,,0,,,,,0.092903226,144,1550,0.030007358,0.155799094,0.082467533,0.023460496,0.141474569,0,0,0.015374056,0.006451613,0,0.020303187,0.725606469,1346,1855,0.655285194,0.795927744,,,,,,,,,,,,,0.71463564,0.635387271,0.793884009,0.327,,1855,0.244296561,0.409703439,79.76234624,,,77.04734996,82.47734253,,,,,,,,,,,,,79.55923189,76.74081423,82.37764955,,,,290.9263196,47,10463,207.842028,396.1590748,,,,,,,,,,,,,296.2158174,209.6199423,406.5793525,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.09,,,0.076,0.104,0.131,,,0.111,0.153,0.08,,,0.067,0.094,0,0,3365,,,0.057,230,,,,0.095164169,387.4133313,4071,,,,,,,,,,,,,,,,,,,,,,,,,,0.302,,,0.284,0.321,0.106587374,233,2186,0.088715034,0.124459715,0.098223616,94,957,0.068436381,0.12801085,0.000738007,3,4065,,,1355,,,,,,,,,,,3.405676429,,,,,,,,,3.486100596,3.295776274,,,,,,,,,3.367466898,0.16378119,,,,,43.5217,,,,,0.822825514,46827,56910,0.725684611,0.919966417,72004,,,62335.06383,81672.93617,,,,,,,,,,,,,76389,62949,89829,,,,,,0.248927039,174,699,,,,,,,,0.176934615,,72004,,,3.460207613,1,289,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,400,,,-888,,0.691637631,1985,2870,,,0.584,,,,,7.301532579,,,,,0.828793774,1278,1542,0.788508077,0.869079471,0.102599179,150,1462,0.043198726,0.161999633,0.876783398,1352,1542,0.828028887,0.92553791,4065,,,,,0.220910209,898,4065,,,0.230750308,938,4065,,,0.00295203,12,4065,,,0.012300123,50,4065,,,0.005904059,24,4065,,,0,0,4065,,,0.023616236,96,4065,,,0.949569496,3860,4065,,,0.006201132,23,3709,0,0.02078478,0.486592866,1978,4065,,,1,3986,3986,, -46,047,46047,SD,Fall River County,2024,1,11165.70815,166,18257,7510.157274,14821.25903,0,,,,2,,,,2,,,,2,,,,2,11774.66708,7195.632568,16353.70158,,,,,2,,0.15,,,0.128,0.177,3.349425927,,,2.611609043,4.192291336,4.455398805,,,3.510591325,5.493920099,0.087087087,29,333,0.056802231,0.117371943,0,,,,,,,,,,,,,0.080152672,0.047273391,0.113031952,,,,,,,0.202,,,0.163,0.245,0.366,,,0.293,0.444,7,0.124567807,0.123,,,0.264,,,0.217,0.316,0.864190449,6026,6973,,,0.160495737,,,0.127642271,0.197167071,0.285714286,4,14,0.142392906,0.436004848,374.9,27,7202,,,22.35099338,27,1208,14.72944547,32.51952189,,,,,,,,,,,,,15.36772777,8.401679776,25.78443592,,,,,,,0.126662574,619,4887,0.107598744,0.145726404,0.000694252,5,7202,,,1440.4,0.000678426,5,7370,,,1474,0.00651289,48,7370,,,153.5416667,1703,,,,,,,,,1755,0.37,,,,,,,,,0.37,0.18,,,,,0.2,,,,0.18,0.915359358,5018,5482,0.883107694,0.947611022,0.667238422,778,1166,0.514969985,0.819506859,0.023460411,72,3069,,,0.216,259,,0.14212766,0.28987234,0.783018868,0.192103188,1,,,,,,,0.746666667,0.382956787,1,0.195067265,0.082988159,0.30714637,5.593458666,108597,19415,4.01755826,7.169359072,0.302876481,358,1182,0.136222533,0.469530428,15.27353513,11,7202,,,132.0887637,45,34068,96.34645059,176.7451582,,,,,,,,,,,,,146.1581292,105.3379236,197.5633309,,,,3.2,,,,,1,,,,,0.156050955,490,3140,0.083974133,0.228127777,0.140764331,0.066608417,0.214920245,0.008917198,0,0.022467466,0.017515924,0.003470153,0.031561694,0.77186844,2206,2858,0.704561067,0.839175812,,,,,,,,,,,,,0.812195122,0.733009879,0.891380365,0.235,,2858,0.148463087,0.321536914,73.96137125,,,71.50387947,76.41886303,,,,,,,,,,,,,73.42507076,70.39650245,76.45363907,,,,499.290988,166,18257,406.2077216,592.3742544,,,,,,,,,,,,,501.3404919,396.3719538,606.30903,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.107,,,0.092,0.124,0.146,,,0.126,0.169,0.104,,,0.088,0.12,,,,,,0.123,860,,,,0.124567807,883.6840196,7094,,,,,,,,,,,,,,,,,,,,,,,,,,0.302,,,0.287,0.316,0.139031647,514,3697,0.116393349,0.161669945,0.089896579,113,1257,0.063683813,0.116109345,0.002849389,21,7370,,,350.952381,,,,,,,,,,,2.855807819,,,,,,,,,2.915654705,3.127468659,,,,,,,,,3.242515711,0.188260825,,,,,-4169.024333,,,,,1.155066897,54734,47386,0.742735058,1.567398737,56976,,,49101.44681,64850.55319,13792,12581.44681,15002.55319,,,,,,,73650,14286.42553,133013.5745,59159,52274.57447,66043.42553,,,,,,0.293246994,317,1081,,,,,,,,0.216477113,,56976,,,6.329113924,2,316,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,27.20575925,13,47784,14.485921,46.52267688,,,,,,,,,,,,,32.17343959,17.13100156,55.01756155,,,,85,,600,,,51,,0.733575318,4042,5510,,,0.562,,,,,24.2916193,,,,,0.757528718,2440,3221,0.702398956,0.81265848,0.151058371,471,3118,0.099245724,0.202871018,0.814032909,2622,3221,0.771652203,0.856413615,7370,,,,,0.165128901,1217,7370,,,0.305563094,2252,7370,,,0.011804613,87,7370,,,0.064450475,475,7370,,,0.018453189,136,7370,,,0.000542741,4,7370,,,0.042333786,312,7370,,,0.841519674,6202,7370,,,0.008887572,60,6751,0,0.025352831,0.495793759,3654,7370,,,1,6973,6973,, -46,049,46049,SD,Faulk County,2024,1,2603.540123,31,5952,1386.275465,4452.132902,1,,,,2,,,,2,,,,2,,,,2,2614.576877,1350.990026,4567.139632,1,,,,2,,0.127,,,0.103,0.153,3.035631133,,,2.30126292,3.89676276,4.145229385,,,3.20987842,5.201546446,,,,,,0,,,,,,,,,,,,,,,,,,,,,,0.179,,,0.135,0.222,0.356,,,0.275,0.435,6.6,0.187796746,0.11,,,0.239,,,0.191,0.296,0.443764706,943,2125,,,0.174365187,,,0.137258711,0.21240759,0,0,3,0,0.420755624,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.123143564,199,1616,0.105271224,0.141015905,0.000467946,1,2137,,,2137,0,0,2126,,,-2126,,0,2126,,,,6396,,,,,,,,,6457,0.4,,,,,,,,,0.4,0.21,,,,,,,,,0.21,0.922222222,1328,1440,0.886709806,0.957734638,0.69637883,250,359,0.580392859,0.812364801,0.020276498,22,1085,,,0.206,89,,0.13093617,0.28106383,,,,,,,,,,,,,0.370445344,0.202839683,0.538051006,5.243243243,121250,23125,3.585233747,6.90125274,0.091911765,50,544,0,0.200835214,14.03837155,3,2137,,,96.48276467,11,11401,48.1638485,172.6343173,,,,,,,,,,,,,99.39459655,49.61742448,177.8443888,,,,4.8,,,,,0,,,,,0.069565217,64,920,0.026003509,0.113126925,0.073464912,0.015502554,0.131427271,0.004347826,0,0.030245136,0,0,0.018315439,0.697993664,661,947,0.593246412,0.802740916,,,,,,,,,,,,,0.652014652,0.556873565,0.747155739,0.249,,947,0.15932113,0.33867887,80.78548683,,,78.39596681,83.17500686,,,,,,,,,,,,,80.76877482,78.35329868,83.18425096,,,,283.9755957,31,5952,190.1829132,407.8363248,,,,,,,,,,,,,281.6649342,187.1643033,407.0842529,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.097,,,0.081,0.113,0.139,,,0.116,0.161,0.089,,,0.074,0.105,,,,,,0.11,240,,,,0.187796746,443.9515072,2364,,,,,,,,,,,,,,,,,,,,,,,,,,0.296,,,0.277,0.314,0.133395522,143,1072,0.109565735,0.15722531,0.102473498,58,566,0.070303286,0.134643711,0.001881468,4,2126,,,531.5,,,,,,,,,,,4.042238274,,,,,,,,,4.111465295,3.530410516,,,,,,,,,3.589214706,,,,,,-4087.659,,,,,0.840464118,45417,54038,0.673179976,1.00774826,60853,,,51897.76596,69808.23404,,,,,,,,,,,,,59250,43468.7234,75031.2766,,,,,,0.071618037,27,377,,,,,,,,0.209356975,,60853,,,6.060606061,1,165,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,200,,,0,,0.647671233,1182,1825,,,0.503,,,,,2.505344996,,,,,0.832679739,637,765,0.760801471,0.904558007,0.099406528,67,674,0.019464722,0.179348334,0.860130719,658,765,0.817206254,0.903055184,2126,,,,,0.255879586,544,2126,,,0.247883349,527,2126,,,0.003762935,8,2126,,,0.005644403,12,2126,,,0.004233302,9,2126,,,0,0,2126,,,0.014581374,31,2126,,,0.967544685,2057,2126,,,0.005453644,11,2017,0,0.02873272,0.487300094,1036,2126,,,1,2125,2125,, -46,051,46051,SD,Grant County,2024,1,6188.571328,98,19579,4112.260704,8944.208631,0,,,,2,,,,2,,,,2,,,,2,5975.7938,3903.58691,8755.922481,,,,,2,,0.113,,,0.092,0.138,2.700199149,,,2.059180779,3.418856153,3.780611652,,,2.966922041,4.729681531,0.056218058,33,587,0.037583857,0.074852259,0,,,,,,,,,,,,,0.059961315,0.039495962,0.080426668,,,,,,,0.158,,,0.122,0.198,0.369,,,0.293,0.451,9.2,0.040229459,0.061,,,0.221,,,0.176,0.272,0.579936474,4382,7556,,,0.191480339,,,0.153482089,0.233728645,0.230769231,3,13,0.089378268,0.394382228,106.4,8,7519,,,13.13868613,18,1370,7.786818088,20.76478852,,,,,,,,,,,,,10.50080775,5.591237876,17.95670107,,,,,,,0.125191881,734,5863,0.10851103,0.141872732,0.000797979,6,7519,,,1253.166667,0.000669972,5,7463,,,1492.6,0.000133994,1,7463,,,7463,2465,,,,,,,,,2400,0.46,,,,,,,,,0.46,0.35,,,,,,,,,0.36,0.916682519,4819,5257,0.888777446,0.944587591,0.677070064,1063,1570,0.525142464,0.828997664,0.025524157,112,4388,,,0.125,198,,0.082106383,0.167893617,,,,,,,,,,0.068181818,0,0.382614544,0.100210231,0.020408399,0.180012063,4.185939819,124088,29644,3.193129829,5.178749809,0.109794136,176,1603,0.032478382,0.18710989,21.27942546,16,7519,,,81.05313173,29,35779,54.2825544,116.4058175,,,,,,,,,,,,,81.90753549,53.977582,119.1711638,,,,5.7,,,,,0,,,,,0.117460318,370,3150,0.067727929,0.167192706,0.07633344,0.034952152,0.117714728,0.013968254,0,0.032263767,0.038095238,0.00525505,0.070935426,0.802985075,2959,3685,0.759102291,0.846867858,,,,,,,,,,,,,0.821504803,0.782983483,0.860026122,0.121,,3685,0.08507704,0.15692296,77.64716507,,,75.74246528,79.55186485,,,,,,,,,,,,,77.64981649,75.74105891,79.55857406,,,,312.1049017,98,19579,248.5898121,386.9009835,,,,,,,,,,,,,318.7546779,252.3610803,397.2634353,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.087,,,0.074,0.104,0.127,,,0.107,0.149,0.08,,,0.068,0.096,,,,,,0.061,460,,,,0.040229459,295.9279027,7356,,,,,,,,,,,,,,,,,,,,,,,,,,0.28,,,0.263,0.295,0.13596387,572,4207,0.115708551,0.156219189,0.099597006,173,1737,0.071001262,0.128192751,0.000401983,3,7463,,,2487.666667,0.925,72.15,78,,,,,,,,3.041955634,,,,,,,,,3.092768782,2.877174322,,,,,,,,,2.936685103,0.049146242,,,,,-501.4336,,,,,0.777159063,44940,57826,0.582436325,0.971881801,70409,,,61726.61702,79091.38298,,,,,,,,,,46375,21194.06383,71555.93617,73214,67351.87234,79076.12766,,,,,,0.126654064,134,1058,,,,,,,,0.175176469,,70409,,,9.195402299,4,435,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,25.96416945,13,50069,13.82482672,44.3995205,,,,,,,,,,,,,28.04928043,14.9350605,47.96512378,,,,22.85714286,,700,,,16,,0.707939509,3745,5290,,,0.707,,,,,15.17456766,,,,,0.814582646,2469,3031,0.775658094,0.853507198,0.087593729,257,2934,0.036722632,0.138464826,0.805344771,2441,3031,0.761774044,0.848915498,7463,,,,,0.215998928,1612,7463,,,0.247219617,1845,7463,,,0.007905668,59,7463,,,0.013131449,98,7463,,,0.004823797,36,7463,,,0.000937961,7,7463,,,0.049711912,371,7463,,,0.918397427,6854,7463,,,0.005758427,41,7120,0,0.017071161,0.485059628,3620,7463,,,1,7556,7556,, -46,053,46053,SD,Gregory County,2024,1,11407.29188,82,10905,7580.062609,16486.71285,0,,,,2,,,,2,,,,2,,,,2,8607.675904,5014.288417,13781.72296,1,,,,2,,0.142,,,0.116,0.167,3.172853104,,,2.535352752,3.917638046,4.236459981,,,3.294271275,5.287892014,0.078034682,27,346,0.049771624,0.10629774,0,,,,,,,,,,,,,0.068100358,0.038539759,0.097660958,,,,,,,0.201,,,0.16,0.244,0.385,,,0.301,0.473,8,0.111244179,0.081,,,0.255,,,0.205,0.31,0.549574362,2195,3994,,,0.175821317,,,0.139467137,0.216366446,0.333333333,1,3,0.04092282,0.635504717,125.7,5,3977,,,16.73101673,13,777,8.908561765,28.61054816,,,,,,,,,,,,,,,,,,,,,,0.155919481,457,2931,0.134472673,0.17736629,0.001005783,4,3977,,,994.25,0.000504796,2,3962,,,1981,0.000252398,1,3962,,,3962,5600,,,,,3789,,,,5242,0.51,,,,,,,,,0.52,0.29,,,,,0.33,,,,0.29,0.903714389,2506,2773,0.877932653,0.929496125,0.672301691,517,769,0.557789873,0.786813509,0.018717829,40,2137,,,0.208,195,,0.130553192,0.285446809,0.93814433,0.084796092,1,,,,,,,,,,0.046575343,0.017593522,0.075557163,4.699923633,104625,22261,3.58391434,5.815932926,0.146779303,139,947,0.057838408,0.235720198,17.60120694,7,3977,,,86.45948413,18,20819,51.24136981,136.6432599,,,,,,,,,,,,,71.49142103,38.06617076,122.2525073,,,,4.6,,,,,0,,,,,0.101092896,185,1830,0.070998816,0.131186976,0.075070028,0.042192269,0.107947787,0.012568306,0,0.029782923,0.021311475,0.005505913,0.037117037,0.755145119,1431,1895,0.715627125,0.794663112,,,,,,,,,,,,,0.718153846,0.673558162,0.76274953,0.21,,1895,0.165594037,0.254405963,74.28013877,,,71.17755168,77.38272586,,,,,,,,,,,,,76.41226903,73.23947495,79.58506311,,,,508.8488429,82,10905,393.5436582,647.380492,,,,,,,,,,,,,402.9561257,299.0818034,531.2474165,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.104,,,0.088,0.122,0.146,,,0.123,0.168,0.095,,,0.079,0.111,0,0,3299,,,0.081,320,,,,0.111244179,475.1238892,4271,,,,,,,,,,,,,,,,,,,,,,,,,,0.299,,,0.285,0.313,0.174174174,348,1998,0.147961408,0.20038694,0.119387755,117,980,0.084834564,0.153940947,0.003028773,12,3962,,,330.1666667,,,,,,,,,,,3.176545785,,,,,,,,,3.311746267,3.095663771,,,,,,,,,3.18271987,0.075701086,,,,,1947.0114,,,,,0.851421927,41735,49018,0.735385815,0.967458038,49239,,,42557.12766,55920.87234,,,,,,,,,,,,,51300,42670.04255,59929.95745,,,,,,0.252043597,185,734,,,,,,,,0.258737992,,49239,,,10.71428571,3,280,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16,,500,,,8,,0.707836991,2258,3190,,,0.534,,,,,2.676697271,,,,,0.763967357,1217,1593,0.735935939,0.791998776,0.081506849,119,1460,0.045835942,0.117177757,0.787193974,1254,1593,0.739218101,0.835169846,3962,,,,,0.241544674,957,3962,,,0.259717315,1029,3962,,,0.004290762,17,3962,,,0.0795053,315,3962,,,0.00454316,18,3962,,,0.001009591,4,3962,,,0.019434629,77,3962,,,0.865724382,3430,3962,,,0,0,3726,0,0.012791083,0.487884907,1933,3962,,,1,3994,3994,, -46,055,46055,SD,Haakon County,2024,1,6810.414328,22,4915,2738.139779,14032.05642,1,,,,2,,,,2,,,,2,,,,2,6027.396641,2211.948338,13119.10498,1,,,,2,,0.141,,,0.12,0.165,3.205953049,,,2.483164392,4.003672083,4.268047231,,,3.342461431,5.244787794,,,,,,0,,,,,,,,,,,,,,,,,,,,,,0.198,,,0.162,0.239,0.365,,,0.293,0.442,6.7,0.208479972,0.092,,,0.258,,,0.215,0.306,0.584935897,1095,1872,,,0.168306239,,,0.134508676,0.205180096,0.25,1,4,0.023230216,0.544021398,381.5,7,1835,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.113569322,154,1356,0.095696981,0.131441662,0.001089918,2,1835,,,917.5,0.000547645,1,1826,,,1826,,0,1826,,,,3330,,,,,,,,,3365,0.48,,,,,,,,,0.48,0.2,,,,,,,,,0.2,0.96350365,1188,1233,0.905750758,1,0.651351351,241,370,0.469112432,0.833590271,0.018535681,20,1079,,,0.176,72,,0.111659575,0.240340426,,,,,,,,,,,,,0.105121294,0.004866722,0.205375866,7.107329843,135750,19100,3.005411261,11.20924843,0.095959596,38,396,0,0.194904265,16.34877384,3,1835,,,148.0541455,14,9456,80.94257906,248.4096988,,,,,,,,,,,,,150.0461681,79.89326513,256.5835171,,,,3.9,,,,,0,,,,,0.059210526,45,760,0.011625735,0.106795318,0.057352941,0,0.126461532,0,0,0.031354983,0.013157895,0,0.038833722,0.724310777,578,798,0.634364435,0.814257119,,,,,,,,,,,,,0.696925329,0.610320277,0.783530382,0.307,,798,0.178286056,0.435713944,79.07319018,,,74.8468051,83.29957526,,,,,,,,,,,,,79.60194041,75.47059627,83.73328454,,,,302.8858934,22,4915,176.4421946,484.9496563,,,,,,,,,,,,,296.7743852,166.1023705,489.4842164,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.106,,,0.091,0.123,0.146,,,0.126,0.169,0.096,,,0.081,0.112,,,,,,0.092,170,,,,0.208479972,403.8257063,1937,,,,,,,,,,,,,,,,,,,,,,,,,,0.308,,,0.293,0.324,0.120634921,114,945,0.099188112,0.142081729,0.097447796,42,431,0.066469072,0.128426519,0.000547645,1,1826,,,1826,,,,,,,,,,,3.18882169,,,,,,,,,3.058230164,3.228875239,,,,,,,,,3.133580569,,,,,,-597.709,,,,,0.795995702,42222,53043,0.576431777,1.015559626,58799,,,50827.93617,66770.06383,,,,,,,,,,,,,52582,43289.57447,61874.42553,,,,,,0.136645963,44,322,,,,,,,,0.216670352,,58799,,,,,123,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,200,,,0,,0.823913044,1137,1380,,,0.516,,,,,3.278999235,,,,,0.761636107,540,709,0.668607021,0.854665194,0.058626466,35,597,0,0.141701092,0.66854725,474,709,0.578337985,0.758756514,1826,,,,,0.226177437,413,1826,,,0.272179628,497,1826,,,0.002738226,5,1826,,,0.029572837,54,1826,,,0.004381161,8,1826,,,0.002190581,4,1826,,,0.026286966,48,1826,,,0.904162103,1651,1826,,,0,0,1658,0,0.02874522,0.510952903,933,1826,,,1,1872,1872,, -46,057,46057,SD,Hamlin County,2024,1,7052.054193,67,17386,4854.30962,9903.706012,0,,,,2,,,,2,,,,2,,,,2,6940.46043,4648.135276,9967.658903,,,,,2,,0.115,,,0.095,0.137,2.760297967,,,2.129370059,3.498323099,3.606593077,,,2.831628748,4.481071274,0.038505096,34,883,0.025813732,0.051196461,0,,,,,,,,,,,,,0.040914561,0.027445939,0.054383183,,,,,,,0.167,,,0.131,0.205,0.368,,,0.3,0.442,7.3,0.248824392,0.045,,,0.225,,,0.183,0.269,0.223556132,1378,6164,,,0.195961802,,,0.160335738,0.237266225,0,0,4,0,0.360186253,95.9,6,6255,,,25.45003104,41,1611,18.26338167,34.52584082,,,,,,,,,,,,,25.33333333,17.92737443,34.77197928,,,,,,,0.134684599,711,5279,0.116812259,0.15255694,0.000159872,1,6255,,,6255,,0,6352,,,,,0,6352,,,,2785,,,,,,,,,2831,0.55,,,,,,,,,0.56,0.4,,,,,,,,,0.4,0.923735839,3343,3619,0.898646022,0.948825656,0.559593023,770,1376,0.480510089,0.638675957,0.019520357,70,3586,,,0.09,186,,0.055446809,0.124553192,,,,,,,,,,0.288,0.00197262,0.57402738,0.09204793,0.0398956,0.144200261,2.968439003,116627,39289,2.567030237,3.36984777,0.104794859,212,2023,0.049780934,0.159808784,7.993605116,5,6255,,,55.3529565,17,30712,32.24513698,88.62544548,,,,,,,,,,,,,56.10098177,32.06655839,91.10447966,,,,5.4,,,,,0,,,,,0.091517857,205,2240,0.065597665,0.11743805,0.054806828,0.026642502,0.082971155,0.021428571,0.007059435,0.035797708,0.015625,0.004371307,0.026878693,0.758797404,2221,2927,0.713703575,0.803891232,,,,,,,,,,,,,0.730864198,0.6881711,0.773557295,0.276,,2927,0.231754175,0.320245826,76.45861206,,,74.43113253,78.48609159,,,,,,,,,,,,,76.42236272,74.30146586,78.54325958,,,,338.1879169,67,17386,259.2867367,433.5416467,,,,,,,,,,,,,335.195601,253.8738749,434.2847803,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.089,,,0.075,0.104,0.13,,,0.111,0.151,0.081,,,0.068,0.095,,,,,,0.045,270,,,,0.248824392,1468.810386,5903,,,,,,,,,,,,,,,,,,,,,,,,,,0.278,,,0.262,0.293,0.149923664,491,3275,0.127285366,0.172561962,0.110846813,233,2102,0.081059579,0.140634047,0.000314862,2,6352,,,3176,,,,,,,,,,,3.280367699,,,,,,,,,3.306462212,3.082464141,,,,,,,,,3.091834658,0.05895825,,,,,-218.4446333,,,,,0.757425999,43833,57871,0.667768467,0.847083531,73995,,,68502.23404,79487.76596,,,,,,,,,,,,,77944,74685.2766,81202.7234,,,,,,0.201068804,301,1497,,,,,,,,0.172173796,,73995,,,,,580,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.22222222,,900,,,11,,0.76882793,3083,4010,,,0.619,,,,,0.821247508,,,,,0.807066481,1736,2151,0.790959692,0.82317327,0.068899522,144,2090,0.034007009,0.103792035,0.845653185,1819,2151,0.809069243,0.882237126,6352,,,,,0.330604534,2100,6352,,,0.142474811,905,6352,,,0.004408061,28,6352,,,0.009445844,60,6352,,,0.003935768,25,6352,,,0.0020466,13,6352,,,0.060453401,384,6352,,,0.914200252,5807,6352,,,0.019420968,108,5561,0.002500075,0.03634186,0.47402393,3011,6352,,,1,6164,6164,, -46,059,46059,SD,Hand County,2024,1,5455.496378,42,8138,2616.122566,10032.85208,1,,,,2,,,,2,,,,2,,,,2,5616.01572,2693.09783,10328.05286,1,,,,2,,0.108,,,0.089,0.131,2.689828139,,,2.032695927,3.420712959,3.854682001,,,2.970399471,4.794479027,0.048872181,13,266,0.022962291,0.07478207,1,,,,,,,,,,,,,0.050387597,0.02369559,0.077079604,,,,,,,0.155,,,0.118,0.194,0.364,,,0.282,0.449,8.2,0.091139949,0.08,,,0.206,,,0.162,0.25,0.550397456,1731,3145,,,0.184230079,,,0.146384549,0.226310801,0,0,3,0,0.420755624,193.9,6,3095,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.08831283,201,2276,0.074014957,0.102610702,0.000646204,2,3095,,,1547.5,0.000318471,1,3140,,,3140,,0,3140,,,,3046,,,,,,,,,3059,0.59,,,,,,,,,0.59,0.62,,,,,,,,,0.62,0.930758361,1976,2123,0.904637865,0.956878856,0.718032787,438,610,0.597636102,0.838429472,0.017376682,31,1784,,,0.095,67,,0.05806383,0.13193617,,,,,,,,,,,,,0.0395189,0,0.090470308,5.0190117,130414,25984,3.955185917,6.082837482,0.125541126,87,693,0.015514031,0.23556822,16.15508885,5,3095,,,75.22567703,12,15952,38.87020505,131.4041189,,,,,,,,,,,,,77.97270955,40.28963683,136.2026319,,,,4.6,,,,,0,,,,,0.09122807,130,1425,0.057104144,0.125351997,0.083628632,0.04538107,0.121876194,0.005614035,0,0.020305837,0.005614035,0,0.016313423,0.705407085,1135,1609,0.651281481,0.759532689,,,,,,,,,,,,,0.701923077,0.661033869,0.742812285,0.165,,1609,0.092661777,0.237338223,80.52325048,,,77.62929553,83.41720543,,,,,,,,,,,,,80.41694498,77.43377458,83.40011539,,,,287.9174747,42,8138,202.7204728,396.8563127,,,,,,,,,,,,,288.4720465,202.0422749,399.3669073,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.086,,,0.073,0.101,0.129,,,0.109,0.15,0.078,,,0.065,0.091,0,0,2628,,,0.08,240,,,,0.091139949,312.7011639,3431,,,,,,,,,,,,,,,,,,,,,,,,,,0.279,,,0.261,0.296,0.091078067,147,1614,0.074397216,0.107758918,0.080409357,55,684,0.054196591,0.106622123,0.002229299,7,3140,,,448.5714286,,,,,,,,,,,3.020425761,,,,,,,,,2.9948959,3.005878756,,,,,,,,,2.984293962,,,,,,2259.297,,,,,0.602466164,39038,64797,0.533277774,0.671654554,64536,,,54936.17021,74135.82979,,,,,,,,,,,,,74405,62867.80851,85942.19149,,,,,,0.143176734,64,447,,,,,,,,0.197409198,,64536,,,11.49425287,2,174,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,300,,,-888,,0.769811321,1836,2385,,,0.545,,,,,18.51206113,,,,,0.691197691,958,1386,0.674966846,0.707428537,0.093908629,111,1182,0.046763648,0.141053611,0.859307359,1191,1386,0.792562071,0.926052648,3140,,,,,0.226433121,711,3140,,,0.257961783,810,3140,,,0.00477707,15,3140,,,0.007324841,23,3140,,,0.007324841,23,3140,,,0.000636943,2,3140,,,0.020063694,63,3140,,,0.949044586,2980,3140,,,0,0,2900,0,0.016434336,0.491401274,1543,3140,,,1,3145,3145,, -46,061,46061,SD,Hanson County,2024,1,5789.974268,37,10036,2991.764194,10113.91984,1,,,,2,,,,2,,,,2,,,,2,6042.750872,3122.377554,10555.46969,1,,,,2,,0.11,,,0.092,0.131,2.736821887,,,2.08028495,3.459552647,3.963025085,,,3.055360906,4.960279442,0.047101449,13,276,0.022107091,0.072095808,1,,,,,,,,,,,,,0.048327138,0.022698866,0.073955409,,,,,,,0.162,,,0.13,0.198,0.354,,,0.274,0.438,8.1,0.147340544,0.061,,,0.218,,,0.176,0.266,0.271886738,941,3461,,,0.20767113,,,0.167583895,0.2535162,0.285714286,2,7,0.086061846,0.500925625,256.8,9,3505,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.1186843,350,2949,0.102003449,0.135365151,,0,3505,,,,0,0,3461,,,-3461,,0,3461,,,,1840,,,,,,,,,1850,0.47,,,,,,,,,0.47,0.43,,,,,,,,,0.43,0.946723244,2008,2121,0.932176512,0.961269976,0.727399166,523,719,0.601546814,0.853251517,0.026286354,47,1788,,,0.14,118,,0.086382979,0.193617021,,,,,,,,,,,,,0.123620309,0.017684174,0.229556444,2.940604776,133130,45273,2.63786119,3.243348361,0.202651515,214,1056,0.094241726,0.311061304,8.559201141,3,3505,,,69.5813522,12,17246,35.95370004,121.5446193,,,,,,,,,,,,,72.67441861,37.55193259,126.9475839,,,,5,,,,,0,,,,,0.091346154,95,1040,0.047024124,0.135668184,0.090733591,0.038186977,0.143280205,0.003846154,0,0.023820051,0.014423077,0,0.035057524,0.784665579,1443,1839,0.743623659,0.825707499,,,,,,,,,,,,,0.626506024,0.553985486,0.699026562,0.223,,1839,0.169781624,0.276218376,77.54989854,,,74.94367916,80.15611793,,,,,,,,,,,,,77.04884014,74.39744113,79.70023915,,,,269.9717558,37,10036,184.6604811,381.119567,,,,,,,,,,,,,281.8079644,192.7564391,397.828762,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.088,,,0.075,0.102,0.134,,,0.114,0.154,0.081,,,0.068,0.094,0,0,2810,,,0.061,210,,,,0.147340544,490.7913535,3331,,,,,,,,,,,,,,,,,,,,,,,,,,0.287,,,0.27,0.302,0.125128733,243,1942,0.104873414,0.145384052,0.10724365,114,1063,0.078647905,0.135839395,0,0,3461,,,-3461,,,,,,,,,,,3.78367001,,,,,,,,,3.780912074,3.713524685,,,,,,,,,3.719545332,,,,,,-1685.968,,,,,0.765814987,42891,56007,0.694445206,0.837184769,79488,,,68627.57447,90348.42553,,,,,,,,,,,,,87632,76700.08511,98563.91489,,,,,,0.1,59,590,,,,,,,,0.160275765,,79488,,,11.67315175,3,257,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,500,,,-888,,1,2388,2375,,,0.676,,,,,4.749179049,,,,,0.873417722,966,1106,0.846092305,0.900743138,0.090328467,99,1096,0.044079653,0.136577281,0.8960217,991,1106,0.855724172,0.936319228,3461,,,,,0.277954349,962,3461,,,0.160936146,557,3461,,,0.005200809,18,3461,,,0.008956949,31,3461,,,0.00375614,13,3461,,,0,0,3461,,,0.014446692,50,3461,,,0.949725513,3287,3461,,,0,0,3178,0,0.01499672,0.482230569,1669,3461,,,1,3461,3461,, -46,063,46063,SD,Harding County,2024,0,,,,,,2,,,,2,,,,2,,,,2,,,,2,,,,2,,,,2,,0.114,,,0.095,0.137,2.813155927,,,2.152688955,3.557702894,3.912153196,,,3.032316613,4.872182117,,,,,,0,,,,,,,,,,,,,,,,,,,,,,0.164,,,0.127,0.202,0.361,,,0.284,0.45,6.7,0.24980605,0.073,,,0.22,,,0.175,0.269,0.044241037,58,1311,,,0.196587247,,,0.158131285,0.239478713,0.428571429,3,7,0.219826693,0.607881191,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.129882813,133,1024,0.109627493,0.150138132,0,0,1327,,,-1327,0,0,1330,,,-1330,,0,1330,,,,1548,,,,,,,,,1548,0.4,,,,,,,,,0.39,0.27,,,,,,,,,0.26,0.940903824,812,863,0.905912839,0.975894809,0.883211679,242,274,0.742610239,1,0.020026702,15,749,,,0.142,43,,0.087191489,0.196808511,,,,,,,,,,,,,0.017751479,0,0.123318265,2.745155186,126214,45977,2.043144309,3.447166063,0.130252101,31,238,0.014687655,0.245816547,0,0,1327,,,155.5935895,10,6427,74.61317405,286.142151,,,,,,,,,,,,,169.4340901,81.25023206,311.5953243,,,,4.1,,,,,0,,,,,0.077669903,40,515,0.024580989,0.130758817,0.045009785,0,0.121835283,0.027184466,0,0.080056041,0,0,0.032718843,0.476121563,329,691,0.409832443,0.542410683,,,,,,,,,,,,,0.51497006,0.416291854,0.613648266,0.201,,691,0.056176441,0.345823559,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.089,,,0.075,0.104,0.131,,,0.112,0.152,0.081,,,0.068,0.096,0,0,1101,,,0.073,90,,,,0.24980605,313.5065925,1255,,,,,,,,,,,,,,,,,,,,,,,,,,0.282,,,0.265,0.298,0.141900937,106,747,0.11807115,0.165730724,0.097222222,28,288,0.068626478,0.125817967,0.001503759,2,1330,,,665,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1249.434,,,,,0.60563681,34038,56202,0.466445641,0.744827979,65168,,,56314.04255,74021.95745,,,,,,,,,,,,,70417,59532.74468,81301.25532,,,,,,0.123152709,25,203,,,,,,,,0.195494721,,65168,,,,,67,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,100,,,0,,0.883695652,813,920,,,0.553,,,,,3.150941022,,,,,0.67953668,352,518,0.614144716,0.744928644,0.056561086,25,442,0,0.159735657,0.88996139,461,518,0.854898254,0.925024526,1330,,,,,0.228571429,304,1330,,,0.218045113,290,1330,,,0.011278196,15,1330,,,0.02631579,35,1330,,,0.005263158,7,1330,,,0,0,1330,,,0.02631579,35,1330,,,0.915037594,1217,1330,,,0,0,1107,0,0.043052913,0.47443609,631,1330,,,1,1311,1311,, -46,065,46065,SD,Hughes County,2024,1,9288.316781,286,48793,7578.669931,10997.96363,0,25459.37519,18104.10457,34803.804,,,,,2,,,,2,,,,2,6417.710966,4980.339598,7855.082335,,,,,2,,0.113,,,0.094,0.133,2.746221341,,,2.112239045,3.46408137,3.979859049,,,3.105777984,4.930949029,0.079385403,124,1562,0.065978613,0.092792194,0,0.083086053,0.053616777,0.11255533,,,,,,,,,,0.062264151,0.04771752,0.076810782,,,,0.2,0.117359144,0.282640856,0.159,,,0.126,0.194,0.36,,,0.284,0.438,8.4,0.071120478,0.084,,,0.211,,,0.171,0.254,0.807542922,14346,17765,,,0.195480368,,,0.156710426,0.238419171,0.428571429,3,7,0.219826693,0.607881191,333.4,59,17694,,,24.38307873,83,3404,19.4209861,30.22649465,78.57142857,57.09012028,105.4784755,,,,,,,,,,9.580838323,6.138623894,14.25552798,,,,84.61538462,42.23969513,151.4002963,0.088550066,1208,13642,0.075443683,0.101656449,0.000791229,14,17694,,,1263.857143,0.000678273,12,17692,,,1474.333333,0.002769613,49,17692,,,361.0612245,1801,,,,,4994,,,,1549,0.49,,,,,0.37,,,,0.5,0.57,,,,,0.53,,,,0.57,0.966899805,11889,12296,0.954592222,0.979207387,0.715487489,3317,4636,0.612946298,0.818028681,0.016856768,167,9907,,,0.112,477,,0.070297872,0.153702128,0.255131965,0.119748096,0.390515833,,,,,,,0.047244095,0,0.149879077,0.095748134,0.035908052,0.155588216,3.876434402,131070,33812,3.124611164,4.62825764,0.155377574,679,4370,0.09120102,0.219554129,26.56267661,47,17694,,,83.07538237,73,87872,65.11783836,104.4548209,159.6009975,91.22576014,259.1820209,,,,,,,,,,76.85643219,57.89878283,100.0392107,,,,3.3,,,,,0,,,,,0.113043478,845,7475,0.074970206,0.15111675,0.074024226,0.045013547,0.103034905,0.040802676,0.009915828,0.071689523,0.000535117,0,0.00362998,0.786181343,7214,9176,0.74169773,0.830664956,,,,,,,,,,,,,0.848885219,0.805620894,0.892149544,0.07,,9176,0.043625259,0.096374741,75.89090439,,,74.51451462,77.26729415,63.98436249,58.715771,69.25295397,,,,,,,,,,78.07597295,76.79862912,79.35331677,,,,445.6813408,286,48793,391.1718634,500.1908182,1035.758838,752.5839574,1390.457896,,,,,,,,,,375.3128658,323.0629073,427.5628244,,,,65.12536633,12,18426,33.65122712,113.7609088,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.088,,,0.075,0.102,0.131,,,0.112,0.151,0.083,,,0.069,0.096,102.9,15,14573,,,0.084,1500,,,,0.071120478,1210.612771,17022,,,,,,,,,,,,,,,,,,,,,,,,,,0.301,,,0.284,0.317,0.099526066,945,9495,0.082845215,0.116206917,0.065987497,285,4319,0.048115157,0.083859838,0.002260909,40,17692,,,442.3,0.875,152.25,174,,,,,,,,3.185886401,,,,,,,,,3.410139624,3.067838948,,,,,,,,,3.361723978,0.009799343,,,,,2647.749,,,,,0.896570105,48777,54404,0.839297456,0.953842754,79301,,,68545.42553,90056.57447,66346,45248.29787,87443.70213,,,,,,,81528,72917.10638,90138.89362,82712,74528.85106,90895.14894,,,,,,0.158342189,447,2823,,,,,,,,0.193604116,,79301,,,6.825938567,8,1172,,,,,,,,,,,,,,,,,,,,,,,,,,21.09113245,17,87872,12.05540454,34.25067774,19.34632192,,,,,,,,,,,,,17.13436864,8.55341509,30.6581185,,,,,,,,,,,,,,,,,,,,,,,,,,,13.00527527,16,123027,7.433638513,21.11975225,,,,,,,,,,,,,9.92841612,4.761061443,18.25871074,,,,49.44444444,,1800,,,89,,0.657843137,8723,13260,,,0.719,,,,,121.9427143,,,,,0.734586263,5433,7396,0.692534763,0.776637763,0.082287308,590,7170,0.048993792,0.115580824,0.892779881,6603,7396,0.864121931,0.921437831,17692,,,,,0.244856432,4332,17692,,,0.185903233,3289,17692,,,0.006895772,122,17692,,,0.125763057,2225,17692,,,0.00706534,125,17692,,,0.000339136,6,17692,,,0.036061497,638,17692,,,0.806296631,14265,17692,,,0.001015592,17,16739,0,0.005617604,0.506500113,8961,17692,,,0.286799887,5095,17765,, -46,067,46067,SD,Hutchinson County,2024,1,6435.103882,92,19434,4429.629414,9037.278396,0,,,,2,,,,2,,,,2,,,,2,6487.580294,4407.996053,9208.602373,,,,,2,,0.12,,,0.098,0.146,2.908699552,,,2.190701222,3.70372495,3.981652935,,,3.065753487,4.97511112,0.054794521,40,730,0.038285309,0.071303732,0,,,,,,,,,,,,,0.053097345,0.036218983,0.069975707,,,,,,,0.168,,,0.13,0.211,0.356,,,0.276,0.442,9,0.023145093,0.076,,,0.227,,,0.182,0.28,0.442709035,3288,7427,,,0.179472697,,,0.142681559,0.220665049,0.4,4,10,0.227273625,0.556899967,107.9,8,7411,,,9.960159363,15,1506,5.574625586,16.42776818,,,,,,,,,,,,,9.992313605,5.320486158,17.08716058,,,,,,,0.119640021,678,5667,0.10295917,0.136320872,0.001214411,9,7411,,,823.4444444,0.000271444,2,7368,,,3684,0.000271444,2,7368,,,3684,3113,,,,,,,,,3035,0.47,,,,,,,,,0.48,0.31,,,,,,,,,0.31,0.91971096,4582,4982,0.894011045,0.945410874,0.734219269,1105,1505,0.646299559,0.822138979,0.022645678,82,3621,,,0.16,267,,0.096851064,0.223148936,,,,,,,,,,0.148648649,0,0.316078141,0.018531229,0.003568011,0.033494446,3.701159679,120321,32509,2.966926148,4.43539321,0.095238095,174,1827,0.04595103,0.144525161,24.28822021,18,7411,,,103.4802026,38,36722,73.22875019,142.0346629,,,,,,,,,,,,,101.2614281,70.53229488,140.8301336,,,,5.2,,,,,1,,,,,0.112605042,335,2975,0.080817977,0.144392107,0.06855792,0.039624325,0.097491514,0.009411765,0,0.022179093,0.038655462,0.021326803,0.055984122,0.790353522,2884,3649,0.757488454,0.823218589,,,,,,,,,,,,,0.780768068,0.742272771,0.819263364,0.201,,3649,0.158205789,0.243794211,78.70180131,,,76.80148691,80.60211572,,,,,,,,,,,,,78.56864477,76.62086556,80.51642398,,,,335.0755848,92,19434,265.282496,417.6041549,,,,,,,,,,,,,340.4012446,268.639339,425.4431504,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.093,,,0.078,0.11,0.135,,,0.115,0.158,0.084,,,0.069,0.1,,,,,,0.076,570,,,,0.023145093,169.9544139,7343,,,,,,,,,,,,,,,,,,,,,,,,,,0.294,,,0.276,0.31,0.130755065,497,3801,0.109308256,0.152201873,0.098445596,190,1930,0.069849851,0.127041341,0.001764387,13,7368,,,566.7692308,,,,,,,,,,,3.288606764,,,,,,,,,3.318334296,3.456422493,,,,,,,,,3.47491112,0.146136809,,,,,-760.927275,,,,,0.771612068,44093,57144,0.710660985,0.83256315,64422,,,56565.31915,72278.68085,,,,,,,,,,,,,70255,64658.57447,75851.42553,,,,,,0.199703044,269,1347,,,,,,,,0.19775853,,64422,,,4.491017964,3,668,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,25.2962581,13,51391,13.46919206,43.25737175,,,,,,,,,,,,,22.68696119,11.32524928,40.59324034,,,,,,700,,,-888,,0.69373849,3767,5430,,,0.658,,,,,4.334622117,,,,,0.766973729,2248,2931,0.739416627,0.794530832,0.060134418,170,2827,0.032542175,0.087726661,0.812691914,2382,2931,0.779525564,0.845858264,7368,,,,,0.260722041,1921,7368,,,0.217698154,1604,7368,,,0.010450597,77,7368,,,0.017508143,129,7368,,,0.003800217,28,7368,,,0.000542888,4,7368,,,0.026058632,192,7368,,,0.934310532,6884,7368,,,0.004866539,33,6781,0,0.01565514,0.499728556,3682,7368,,,1,7427,7427,, -46,069,46069,SD,Hyde County,2024,1,10457.53791,21,3337,4514.822615,20605.51861,1,,,,2,,,,2,,,,2,,,,2,,,,2,,,,2,,0.118,,,0.098,0.142,2.918441904,,,2.191395604,3.738499813,4.099037078,,,3.107374492,5.172987813,,,,,,0,,,,,,,,,,,,,,,,,,,,,,0.171,,,0.133,0.209,0.367,,,0.281,0.456,9.3,0.048628675,0.052,,,0.22,,,0.175,0.27,0.625198098,789,1262,,,0.186641124,,,0.147857389,0.23098692,0,0,1,0,0.662081041,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.115384615,105,910,0.097512275,0.133256956,0,0,1236,,,-1236,0,0,1184,,,-1184,,0,1184,,,,1962,,,,,,,,,1962,0.49,,,,,,,,,0.49,0.3,,,,,,,,,0.34,0.90835851,902,993,0.856149565,0.960567454,0.815602837,230,282,0.662154065,0.969051609,0.021276596,14,658,,,0.152,40,,0.094808511,0.209191489,,,,,,,,,,0.233333333,0,0.867655599,0.069387755,0,0.144552847,3.217508418,119450,37125,1.888881959,4.546134876,0.074204947,21,283,0,0.16175858,24.27184466,3,1236,,,,,,,,,,,,,,,,,,,,,,,,,,4.3,,,,,0,,,,,0.040650407,25,615,0.009205026,0.072095787,0.042553192,0,0.104315084,0,0,0.038747622,0.006504065,0,0.033893022,0.752407153,547,727,0.550710562,0.954103743,,,,,,,,,,,,,0.797213622,0.759057709,0.835369536,0.223,,727,0.097553653,0.348446347,,,,,,,,,,,,,,,,,,,,,,,,428.1124439,21,3337,249.391275,685.4494947,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.092,,,0.078,0.108,0.136,,,0.114,0.158,0.082,,,0.068,0.097,0,0,1040,,,0.052,70,,,,0.048628675,69.0527187,1420,,,,,,,,,,,,,,,,,,,,,,,,,,0.283,,,0.267,0.298,0.125195618,80,639,0.10255732,0.147833916,0.092198582,26,282,0.062411348,0.121985816,0.001689189,2,1184,,,592,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.03555887,,,,,,,,,,1.202822814,56161,46691,0.982827261,1.422818367,64416,,,54880.51064,73951.48936,,,,,,,,,,,,,69519,48109.12766,90928.87234,,,,,,0.203319502,49,241,,,,,,,,0.19777695,,64416,,,,,101,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,100,,,0,,0.617391304,710,1150,,,0.576,,,,,0.870642075,,,,,0.77818854,421,541,0.700731334,0.855645745,0.071570577,36,503,0,0.151281292,0.865064695,468,541,0.794822291,0.935307099,1184,,,,,0.224662162,266,1184,,,0.249155405,295,1184,,,0.005912162,7,1184,,,0.109797297,130,1184,,,0.003378378,4,1184,,,0.000844595,1,1184,,,0.02027027,24,1184,,,0.836993243,991,1184,,,0,0,1233,0,0.038653345,0.494087838,585,1184,,,1,1262,1262,, -46,071,46071,SD,Jackson County,2024,1,22795.73472,90,8995,16919.43369,30053.33435,0,34189.37466,24425.39051,46556.22446,,,,,2,,,,2,,,,2,12933.1349,6886.349643,22116.05457,1,,,,2,,0.246,,,0.213,0.28,4.559860916,,,3.733264275,5.522535416,4.964146169,,,4.078863606,5.968650268,0.069767442,36,516,0.047786141,0.091748743,0,0.060367454,0.036452253,0.084282655,,,,,,,,,,0.106382979,0.044052002,0.168713956,,,,,,,0.311,,,0.264,0.357,0.387,,,0.326,0.454,1.7,0.458477659,0.204,,,0.328,,,0.28,0.377,0.230220955,646,2806,,,0.164644836,,,0.134315214,0.201403807,0.1875,3,16,0.067648579,0.337423465,1216.1,35,2878,,,69.00584795,59,855,52.53044869,89.01251621,99.25093633,74.34576205,129.8226684,,,,,,,,,,,,,,,,,,,0.17771639,386,2172,0.152695114,0.202737667,,0,2878,,,,0.000708969,2,2821,,,1410.5,0.000708969,2,2821,,,1410.5,,,,,,,,,,,0.38,,,,,,,,,0.39,0.13,,,,,,,,,0.1,0.870911215,1491,1712,0.810104291,0.931718139,0.528198074,384,727,0.41707769,0.639318459,0.030278232,37,1222,,,0.355,363,,0.220361702,0.489638298,0.578947368,0.47029566,0.687599077,,,,,,,,,,,,,5.726392061,72708,12697,2.075988258,9.376795864,0.415135135,384,925,0.253056386,0.577213884,0,0,2878,,,198.2774645,32,16139,135.621639,279.9086194,304.9524274,197.3491321,450.1699402,,,,,,,,,,,,,,,,3.7,,,,,0,,,,,0.233128834,190,815,0.153080764,0.313176905,0.172,0.079120524,0.264879476,0.090797546,0.048174091,0.133421001,0.036809816,0.004448874,0.069170758,0.700122399,572,817,0.53559535,0.864649448,,,,,,,,,,,,,0.750929368,0.569040507,0.93281823,0.225,,817,0.104235632,0.345764368,66.05882234,,,62.47556923,69.64207545,,,,,,,,,,,,,,,,,,,1009.814522,90,8995,804.3116302,1251.817032,1592.39934,1202.881348,2067.862996,,,,,,,,,,661.4527922,428.0573713,976.4348046,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.161,,,0.14,0.183,0.185,,,0.162,0.21,0.161,,,0.141,0.183,239.6,5,2087,,,0.204,580,,,,0.458477659,1389.645785,3031,,,,,,,,,,,,,,,,,,,,,,,,,,0.338,,,0.326,0.35,0.242801556,312,1285,0.203482408,0.282120705,0.085037675,79,929,0.061207888,0.108867462,0.000708969,2,2821,,,1410.5,,,,,,0.407185629,68,167,0.149299283,0.665071975,3.036290538,,,,,,,,,,2.883916428,,,,,,,,,,0.052136913,,,,,,,,,,0.712921909,33605,47137,0.571715108,0.854128709,45190,,,38290.08511,52089.91489,23373,19335.04255,27410.95745,,,,,,,,,,38125,22116.14894,54133.85106,,,,,,0.312883436,102,326,,,,,,,,0.281920779,,45190,,,3.584229391,1,279,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,87.77319407,20,22786,53.61414722,135.5585794,148.0836237,86.26416785,237.0962266,,,,,,,,,,,,,,,,,,500,,,-888,,0.5,1115,2230,,,0.35,,,,,1.781457558,,,,,0.561904762,413,735,0.486843611,0.636965913,0.146969697,97,660,0.048549117,0.245390277,0.572789116,421,735,0.487273251,0.658304981,2821,,,,,0.369018079,1041,2821,,,0.125487416,354,2821,,,0.013115916,37,2821,,,0.534207728,1507,2821,,,0.00248139,7,2821,,,0,0,2821,,,0.046437434,131,2821,,,0.367245658,1036,2821,,,0.001953888,5,2559,0,0.021128705,0.500886211,1413,2821,,,1,2806,2806,, -46,073,46073,SD,Jerauld County,2024,1,2418.325248,20,4940,1044.061195,4765.06481,1,,,,2,,,,2,,,,2,,,,2,2563.028985,1106.533998,5050.188859,1,,,,2,,0.117,,,0.097,0.14,2.822688077,,,2.133184336,3.589980914,3.988151992,,,3.056931761,4.981196859,0.072289157,12,166,0.03289381,0.111684503,1,,,,,,,,,,,,,,,,,,,,,,0.167,,,0.13,0.206,0.364,,,0.281,0.451,7,0.243061338,0.066,,,0.226,,,0.181,0.277,0.683102826,1136,1663,,,0.184889695,,,0.148425472,0.226838316,0,0,2,0,0.510593623,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.101510067,121,1192,0.084829216,0.118190918,0,0,1636,,,-1636,0.002424242,4,1650,,,412.5,0.000606061,1,1650,,,1650,3977,,,,,,,,,4032,0.39,,,,,,,,,0.4,0.27,,,,,,,,,0.27,0.916905444,1280,1396,0.871840678,0.961970211,0.648101266,256,395,0.486660386,0.809542145,0.013473054,18,1336,,,0.188,64,,0.116510638,0.259489362,,,,,,,,,,0.359375,0.218686287,0.500063713,0.058823529,0,0.120334659,4.083762041,118278,28963,2.838587675,5.328936407,0.156657963,60,383,0.069574253,0.243741674,18.33740831,3,1636,,,,,,,,,,,,,,,,,,,,,,,,,,4.7,,,,,0,,,,,0.10106383,95,940,0.038941422,0.163186238,0.053191489,0,0.106513327,0.053191489,0,0.111957772,0,0,0.017925749,0.72528616,697,961,0.634808057,0.815764263,,,,,,,,,,,,,0.686013321,0.576806307,0.795220334,0.15,,961,0.06609512,0.233904881,81.71769925,,,79.11736657,84.31803193,,,,,,,,,,,,,81.31321461,78.62788294,83.99854627,,,,208.4808169,20,4940,121.4477586,333.7979837,,,,,,,,,,,,,218.5592844,127.3188373,349.9345865,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.09,,,0.076,0.106,0.131,,,0.112,0.152,0.081,,,0.068,0.094,0,0,1357,,,0.066,120,,,,0.243061338,503.3800312,2071,,,,,,,,,,,,,,,,,,,,,,,,,,0.279,,,0.263,0.295,0.110159119,90,817,0.08871231,0.131605927,0.081632653,32,392,0.05065393,0.112611377,0.001212121,2,1650,,,825,,,,,,,,,,,2.919071484,,,,,,,,,2.943319615,2.912404396,,,,,,,,,2.853742645,,,,,,-1815.833,,,,,0.721752091,43583,60385,0.482422491,0.961081691,57560,,,48962.21277,66157.78723,,,,,,,,,,38125,1385.425532,74864.57447,66429,47335.38298,85522.61702,,,,,,0.104859335,41,391,,,,,,,,0.22133426,,57560,,,,,90,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,200,,,0,,0.649032258,1006,1550,,,0.504,,,,,0.243687657,,,,,0.854481956,734,859,0.803161169,0.905802743,0.065244668,52,797,0,0.13274633,0.821885914,706,859,0.778879443,0.864892385,1650,,,,,0.224848485,371,1650,,,0.301212121,497,1650,,,0.002424242,4,1650,,,0.011515152,19,1650,,,0.003636364,6,1650,,,0.001818182,3,1650,,,0.062424242,103,1650,,,0.898181818,1482,1650,,,0,0,1751,0,0.027218489,0.498181818,822,1650,,,1,1663,1663,, -46,075,46075,SD,Jones County,2024,0,,,,,,2,,,,2,,,,2,,,,2,,,,2,,,,2,,,,2,,0.11,,,0.09,0.134,2.694940437,,,2.031698445,3.476269689,3.900864895,,,3.010575108,4.960148523,,,,,,0,,,,,,,,,,,,,,,,,,,,,,0.153,,,0.118,0.194,0.353,,,0.277,0.44,5.1,0.401342445,0.075,,,0.204,,,0.162,0.252,0.647764449,594,917,,,0.178574744,,,0.143519884,0.219461449,0,0,7,0,0.25576943,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.1107739,73,659,0.092901559,0.12864624,0,0,879,,,-879,0.002262443,2,884,,,442,0,0,884,,,-884,,,,,,,,,,,0.39,,,,,,,,,0.4,0.23,,,,,,,,,0.22,0.949253731,636,670,0.739881009,1,0.659898477,130,197,0.446321762,0.873475193,0.024856597,13,523,,,0.267,54,,0.165723404,0.368276596,0.8,0.447003627,1,,,,,,,,,,0.133333333,0,0.270735692,3.353746032,105643,31500,2.505531279,4.201960784,0.366666667,110,300,0.123274829,0.610058504,0,0,879,,,,,,,,,,,,,,,,,,,,,,,,,,3.8,,,,,0,,,,,0.083333333,35,420,0.005402294,0.161264373,0.033333333,0,0.127083984,0.047619048,0,0.129019746,0,0,0.040119534,0.658280922,314,477,0.524891634,0.791670211,,,,,,,,,,,,,0.64010989,0.47823564,0.80198414,0.21,,477,0.078768386,0.341231614,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.085,,,0.072,0.1,0.127,,,0.108,0.149,0.08,,,0.067,0.094,0,0,734,,,0.075,70,,,,0.401342445,403.7504992,1006,,,,,,,,,,,,,,,,,,,,,,,,,,0.284,,,0.267,0.301,0.119047619,55,462,0.096409321,0.141685917,0.09178744,19,207,0.063191695,0.120383184,0.001131222,1,884,,,884,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-4280.965,,,,,0.717011656,34570,48214,0.564643222,0.869380091,60864,,,51644.25532,70083.74468,29653,22749.51064,36556.48936,,,,,,,,,,67266,39740.21277,94791.78723,,,,,,0.209677419,39,186,,,,,,,,0.209319138,,60864,,,,,92,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,100,,,-888,,0.921538462,599,650,,,0.449,,,,,12.96593378,,,,,0.755905512,288,381,0.652234944,0.859576079,0.022222222,8,360,0,0.139114335,0.826771654,315,381,0.758192127,0.89535118,884,,,,,0.234162896,207,884,,,0.268099548,237,884,,,0.003393665,3,884,,,0.07239819,64,884,,,0,0,884,,,0.002262443,2,884,,,0.03280543,29,884,,,0.857466063,758,884,,,0,0,886,0,0.053791845,0.476244344,421,884,,,1,917,917,, -46,077,46077,SD,Kingsbury County,2024,1,4510.819229,71,13542,2890.166994,6711.741454,1,,,,2,,,,2,,,,2,,,,2,4451.172095,2789.525854,6739.128044,1,,,,2,,0.11,,,0.092,0.132,2.704757754,,,2.041467833,3.422491889,3.876191828,,,3.010575581,4.798738944,0.063596491,29,456,0.041197846,0.085995136,0,,,,,,,,,,,,,0.063781321,0.040922216,0.086640426,,,,,,,0.156,,,0.123,0.196,0.354,,,0.28,0.432,9.1,0.037701735,0.064,,,0.213,,,0.172,0.263,0.252747253,1311,5187,,,0.192483101,,,0.15549541,0.233437583,0.25,1,4,0.023230216,0.544021398,192.6,10,5192,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.118149824,470,3978,0.101468973,0.134830675,0.000385208,2,5192,,,2596,0.000755572,4,5294,,,1323.5,,0,5294,,,,2996,,,,,,,,,3006,0.48,,,,,,,,,0.48,0.45,,,,,,,,,0.45,0.904586637,3195,3532,0.883760582,0.925412691,0.629767442,677,1075,0.543121819,0.716413065,0.018894831,53,2805,,,0.123,155,,0.078914894,0.167085106,,,,,,,,,,,,,0.079782412,0.035319098,0.124245726,3.831724634,117109,30563,2.883324202,4.780125067,0.105386417,135,1281,0.045265001,0.165507833,17.33436056,9,5192,,,92.04049782,23,24989,58.34578029,138.1059382,,,,,,,,,,,,,97.76417581,61.97410115,146.6942655,,,,5.2,,,,,0,,,,,0.131336406,285,2170,0.089522604,0.173150207,0.107906977,0.069804408,0.146009546,0.013364055,0,0.027515722,0.013364055,0,0.032283478,0.773253493,1937,2505,0.738359987,0.808146999,,,,,,,,,,,,,0.75036855,0.707163122,0.793573979,0.229,,2505,0.190391332,0.267608668,80.45354755,,,78.44754053,82.45955458,,,,,,,,,,,,,80.49383541,78.47165071,82.51602011,,,,309.1492862,71,13542,235.913474,397.936412,,,,,,,,,,,,,308.4911055,234.8377228,397.93105,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.086,,,0.073,0.101,0.129,,,0.11,0.15,0.079,,,0.067,0.093,,,,,,0.064,330,,,,0.037701735,194.0885312,5148,,,,,,,,,,,,,,,,,,,,,,,,,,0.278,,,0.262,0.294,0.126775956,348,2745,0.106520637,0.147031275,0.10162917,131,1289,0.073033425,0.130224915,0.001700038,9,5294,,,588.2222222,,,,,,,,,,,3.023133548,,,,,,,,,3.07144311,2.964184615,,,,,,,,,3.005842662,0.096639095,,,,,2086.38625,,,,,0.689515087,37340,54154,0.60445388,0.774576293,64215,,,55195.42553,73234.57447,,,,,,,,,,31250,3289.319149,59210.68085,66929,60120.82979,73737.17021,,,,,,0.181470869,190,1047,,,,,,,,0.198396013,,64215,,,2.958579882,1,338,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,22,,500,,,11,,0.729396326,2779,3810,,,0.585,,,,,8.306775586,,,,,0.802296555,1607,2003,0.770872298,0.833720813,0.091051805,174,1911,0.051752521,0.13035109,0.850224663,1703,2003,0.818950663,0.881498663,5294,,,,,0.246883264,1307,5294,,,0.230449566,1220,5294,,,0.005855686,31,5294,,,0.012089158,64,5294,,,0.00736683,39,5294,,,0.000188893,1,5294,,,0.032678504,173,5294,,,0.932942954,4939,5294,,,0.000620733,3,4833,0,0.014496786,0.48469966,2566,5294,,,1,5187,5187,, -46,079,46079,SD,Lake County,2024,1,4543.267271,108,33488,2962.58811,6123.946432,0,,,,2,,,,2,,,,2,,,,2,4736.024383,3008.62892,6463.419845,,,,,2,,0.112,,,0.09,0.136,2.735792049,,,2.06628138,3.573672254,3.938439867,,,3.023737522,5.029762737,0.057803468,50,865,0.042251129,0.073355807,0,,,,,,,,,,,,,0.051519155,0.03577183,0.067266479,,,,,,,0.158,,,0.12,0.202,0.344,,,0.268,0.429,8.9,0.024306448,0.079,,,0.213,,,0.169,0.267,0.711908853,7873,11059,,,0.186980606,,,0.148306016,0.229299373,0.166666667,1,6,0.011498194,0.426636125,221.2,24,10851,,,9.504412763,28,2946,6.315613257,13.73652272,,,,,,,,,,112.3595506,53.88077187,206.633214,3.711952487,1.7800255,6.826412785,,,,,,,0.106199253,824,7759,0.090709891,0.121688614,0.000645102,7,10851,,,1550.142857,0.000455705,5,10972,,,2194.4,0.001458257,16,10972,,,685.75,623,,,,,,,,,581,0.56,,,,,,,,,0.56,0.62,,,,,,,,,0.62,0.933307484,7221,7737,0.911702187,0.95491278,0.676867687,1504,2222,0.575739968,0.777995406,0.020557128,138,6713,,,0.107,222,,0.067680851,0.146319149,,,,,,,,,,,,,0.108885465,0.031778363,0.185992567,4.401436137,135463,30777,2.656558407,6.146313868,0.154017857,345,2240,0.071712128,0.236323586,11.98046263,13,10851,,,51.61123835,32,62002,35.30204882,72.85966917,,,,,,,,,,,,,53.88211983,36.61028623,76.48136809,,,,5,,,,,0,,,,,0.09447983,445,4710,0.051665425,0.137294235,0.08159796,0.041027385,0.122168535,0.013800425,0,0.02961312,0,0,0.005724061,0.801728436,4824,6017,0.768017607,0.835439266,,,,,,,,,,,,,0.814428858,0.78205668,0.846801035,0.198,,6017,0.156144961,0.239855039,81.7692287,,,80.2144718,83.3239856,,,,,,,,,,,,,81.42649675,79.79765759,83.05533592,,,,203.5101194,108,33488,158.481936,248.5383029,,,,,,,,,,,,,208.480173,161.0828708,255.8774752,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.087,,,0.073,0.104,0.128,,,0.108,0.151,0.081,,,0.068,0.096,,,,,,0.079,900,,,,0.024306448,272.2322175,11200,,,,,,,,,,,,,,,,,,,,,,,,,,0.282,,,0.263,0.3,0.11482661,649,5652,0.09695427,0.132698951,0.085585586,190,2220,0.061755798,0.109415373,0.000637988,7,10972,,,1567.428571,0.70040107,130.975,187,,,,,,,,3.29139373,,,,,,,,,3.329454463,3.296064865,,,,,,,,,3.386578621,0.078289608,,,,,-4415.101,,,,,0.714711484,40527,56704,0.648822499,0.78060047,74668,,,64760.76596,84575.23404,,,,,,,,,,,,,72733,61000.40426,84465.59575,,,,,,0.132243685,267,2019,,,,,,,,0.205616864,,74668,,,5.050505051,3,594,,,,,,,,,,,,,,,,,,,,,,,,,,14.85943034,10,62002,6.41524733,29.27900152,16.12851198,,,,,,,,,,,,,16.00011772,6.907715175,31.52661039,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.81818182,,1100,,,13,,0.59084507,5873,9940,,,0.654,,,,,51.35657622,,,,,0.73374341,3340,4552,0.692858805,0.774628014,0.110737503,494,4461,0.06060515,0.160869856,0.898725835,4091,4552,0.87589539,0.92155628,10972,,,,,0.197593875,2168,10972,,,0.255468465,2803,10972,,,0.012030623,132,10972,,,0.015676267,172,10972,,,0.009569814,105,10972,,,0.001093693,12,10972,,,0.029620853,325,10972,,,0.918155304,10074,10972,,,0.006394583,68,10634,0,0.014113501,0.475391907,5216,10972,,,0.442173795,4890,11059,, -46,081,46081,SD,Lawrence County,2024,1,6326.381698,341,71558,5054.481995,7598.281402,0,,,,2,,,,2,,,,2,,,,2,6150.230658,4866.07685,7434.384465,,,,,2,,0.117,,,0.096,0.141,2.938271537,,,2.289750675,3.661720433,4.236274244,,,3.386999747,5.147767308,0.072511536,110,1517,0.059461218,0.085561854,0,,,,,,,,,,,,,0.073684211,0.059643244,0.087725177,,,,,,,0.163,,,0.124,0.203,0.32,,,0.253,0.394,8.2,0.064499297,0.095,,,0.219,,,0.173,0.268,0.921530581,23746,25768,,,0.198863739,,,0.160154347,0.239399473,0.314285714,11,35,0.225243422,0.404343522,359.3,94,26165,,,7.170795306,44,6136,5.210310847,9.626457999,,,,,,,,,,,,,6.529481599,4.494594692,9.1698198,,,,,,,0.123682034,2393,19348,0.107001183,0.140362885,0.000955475,25,26165,,,1046.6,0.000661424,18,27214,,,1511.888889,0.002314985,63,27214,,,431.968254,1788,,,,,,,,,1795,0.54,,,,,0.4,,,,0.55,0.52,,,,,0.64,,,,0.52,0.949768456,17433,18355,0.934163995,0.965372916,0.735785953,4180,5681,0.644219467,0.82735244,0.01910017,270,14136,,,0.134,581,,0.081574468,0.186425532,0.222222222,0,0.664838286,,,,,,,0.09122807,0,0.212996025,0.096713866,0.052889174,0.140538557,4.445557587,121586,27350,3.72652955,5.164585624,0.140128854,609,4346,0.087763781,0.192493927,18.34511752,48,26165,,,87.32612056,113,129400,71.22481778,103.4274233,,,,,,,,,,,,,92.28245266,74.87788169,109.6870236,,,,4.1,,,,,0,,,,,0.128,1440,11250,0.099204467,0.156795533,0.116091439,0.085670094,0.146512783,0.007555556,0.000885511,0.0142256,0.015111111,0.00261278,0.027609443,0.799490229,11292,14124,0.766178742,0.832801717,,,,,,,,,,,,,0.784358691,0.749746342,0.81897104,0.202,,14124,0.162053998,0.241946003,79.78358567,,,78.64108327,80.92608806,,,,,,,,,,,,,79.76467071,78.61462385,80.91471757,,,,301.8737764,341,71558,265.7216563,338.0258965,,,,,,,,,,,,,302.2159928,264.5184274,339.9135582,,,,73.10609522,16,21886,41.78645003,118.7197185,,,,,,,,,,,,,70.19438445,37.37555341,120.0345352,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.091,,,0.076,0.106,0.132,,,0.112,0.153,0.085,,,0.071,0.1,38.9,9,23142,,,0.095,2430,,,,0.064499297,1554.239564,24097,,,,,,,,,,,,,,,,,,,,,,,,,,0.281,,,0.265,0.298,0.137316422,2057,14980,0.115869613,0.15876323,0.081180017,377,4644,0.059733209,0.102626826,0.001580069,43,27214,,,632.8837209,0.833227848,197.475,237,,,,,,,,3.180959802,,,,,,,,,3.218762812,3.163303912,,,,,,,,,3.239554181,0.052593032,,,,,2802.118,,,,,0.7789446,41464,53231,0.679013685,0.878875515,67606,,,59729.06383,75482.93617,19075,18218.31915,19931.68085,,,,,,,102888,11510.29787,194265.7021,65764,60625.10638,70902.89362,,,,,,0.175164217,560,3197,,,,,,,,0.227095228,,67606,,,8.737864078,9,1030,,,,,,,,,,,,,,,,,,,,,,,,,,18.16236603,27,129400,11.51338208,27.25246669,20.86553323,,,,,,,,,,,,,19.22804444,11.90246257,29.39210844,,,,14.68315301,19,129400,8.840217283,22.92956227,,,,,,,,,,,,,16.23487593,9.774455845,25.35276982,,,,14.48403414,26,179508,9.461451977,21.2224659,,,,,,,,,,,,,14.13549176,8.96068922,21.2101781,,,,41.81818182,,2200,,,92,,0.665607702,13828,20775,,,0.625,,,,,60.88902499,,,,,0.656776685,7482,11392,0.62254888,0.69100449,0.110927759,1210,10908,0.078951491,0.142904028,0.878247893,10005,11392,0.843894411,0.912601376,27214,,,,,0.163922981,4461,27214,,,0.242154773,6590,27214,,,0.010178585,277,27214,,,0.021349306,581,27214,,,0.014808554,403,27214,,,0.000881899,24,27214,,,0.039171015,1066,27214,,,0.895494966,24370,27214,,,0.005067635,127,25061,0,0.010508397,0.495443522,13483,27214,,,0.327538032,8440,25768,, -46,083,46083,SD,Lincoln County,2024,1,4069.011315,451,182048,3527.292879,4610.729751,0,,,,2,,,,2,,,,2,,,,2,4107.444398,3533.266349,4681.622446,,,,,2,,0.091,,,0.075,0.11,2.39459733,,,1.879357145,3.043017673,3.18554428,,,2.606885814,3.86735599,0.070581697,381,5398,0.063749014,0.07741438,0,,,,,,,0.104477612,0.052686705,0.156268519,0.132450331,0.078382208,0.186518455,0.06701976,0.060024607,0.074014913,,,,,,,0.121,,,0.092,0.152,0.34,,,0.297,0.387,9.7,0.026317171,0.043,,,0.193,,,0.16,0.228,0.922254109,60095,65161,,,0.221504388,,,0.190738772,0.253561942,0.25,5,20,0.13289271,0.377758007,268.2,182,67870,,,7.134724858,94,13175,5.765583939,8.731096298,,,,,,,,,,20.12072435,9.648669409,37.00272846,6.003430532,4.67996862,7.584973313,,,,,,,0.079847192,4661,58374,0.069123788,0.090570597,0.001326065,90,67870,,,754.1111111,0.000901574,64,70987,,,1109.171875,0.003183682,226,70987,,,314.1017699,3441,,,,,,,,,3373,0.51,,,,,,,,,0.52,0.54,,,,,,,,,0.54,0.960119339,41192,42903,0.948345046,0.971893632,0.794345007,15311,19275,0.73926815,0.849421863,0.016481615,619,37557,,,0.056,1026,,0.040510638,0.071489362,,,,,,,0.873684211,0.621689078,1,0.588888889,0.186820708,0.99095707,0.038604158,0.020362948,0.056845368,3.328015824,154796,46513,3.030539826,3.625491821,0.15961862,2846,17830,0.119678092,0.199559149,10.90319729,74,67870,,,42.92850453,132,307488,35.60506895,50.2519401,,,,,,,,,,,,,44.11956756,36.38506635,51.85406877,,,,5.7,,,,,0,,,,,0.07792527,1585,20340,0.060597717,0.095252824,0.065944882,0.049011886,0.082877877,0.011750246,0.004407791,0.019092701,0.001966568,0.000178428,0.003754709,0.816797629,30041,36779,0.797664435,0.835930823,,,,,,,,,,,,,0.77164773,0.754983914,0.788311545,0.142,,36779,0.118229862,0.165770138,84.11487253,,,83.2180372,85.01170786,,,,,,,,,,,,,84.07735455,83.16627418,84.98843492,,,,217.5321097,451,182048,197.1241523,237.940067,,,,,,,,,,,,,217.7815822,196.7761677,238.7869967,,,,25.77319588,19,73720,15.51714754,40.24803794,,,,,,,,,,,,,24.52558325,14.01848992,39.82801067,,,,4.467476769,25,5596,2.891115412,6.594877001,,,,,,,,,,,,,,,,,,,,,,0.075,,,0.064,0.089,0.11,,,0.094,0.127,0.074,,,0.064,0.087,45.5,25,54946,,,0.043,2750,,,,0.026317171,1179.746127,44828,,,7.291021108,14,192017,3.986069086,12.23309453,,,,,,,,,,,,,7.385398499,3.932413657,12.62925636,,,,0.248,,,0.232,0.263,0.091278042,3666,40163,0.07698017,0.105575914,0.056793636,1078,18981,0.042495763,0.071091508,0.001901757,135,70987,,,525.8296296,0.913769531,467.85,512,,,,,,,,3.389182099,,,,,,,,,3.41026299,3.345154312,,,,,,,,,3.387622547,0.03161518,,,,,1482.4263,,,,,0.736313922,50626,68756,0.685516504,0.787111339,98387,,,88009.12766,108764.8723,,,,,,,,,,,,,94025,89786.87234,98263.12766,,,,,,0.082154128,807,9823,,,69.22252767,,,,,0.165560491,,98387,,,9.405074366,43,4572,,,,,,,,,,,,,,,,,,,,,,,,,,13.87365898,40,307488,9.865527768,18.96574854,13.00863774,,,,,,,,,,,,,13.76856397,9.643332934,19.06149617,,,,10.08169425,31,307488,6.850022108,14.31016024,,,,,,,,,,,,,10.23573967,6.855035503,14.70022958,,,,6.267990338,26,414806,4.09445939,9.18405811,,,,,,,,,,,,,6.255587673,4.008073059,9.307818597,,,,13.67088608,,7900,,,108,,0.789183922,32396,41050,,,0.766,,,,,78.00250715,,,,,0.727283341,18689,25697,0.699827593,0.754739088,0.070160941,1783,25413,0.052728396,0.087593486,0.955870335,24563,25697,0.945417009,0.966323661,70987,,,,,0.263132686,18679,70987,,,0.148153887,10517,70987,,,0.0221449,1572,70987,,,0.008142336,578,70987,,,0.017806077,1264,70987,,,0.000788877,56,70987,,,0.030583065,2171,70987,,,0.905785566,64299,70987,,,0.007840968,482,61472,0.002986211,0.012695725,0.500387395,35521,70987,,,0.25475361,16600,65161,, -46,085,46085,SD,Lyman County,2024,1,17693.33305,78,10533,12751.79818,23916.24628,0,37967.50422,27124.54166,51700.96459,,,,,2,,,,2,,,,2,5704.470653,2093.440192,12416.23105,1,,,,2,,0.181,,,0.156,0.21,3.733760693,,,2.952322496,4.583944032,4.577328989,,,3.624737802,5.643707171,0.083333333,39,468,0.058292531,0.108374136,0,0.103053435,0.066238847,0.139868023,,,,,,,,,,0.0625,0.026737705,0.098262295,,,,,,,0.239,,,0.197,0.283,0.411,,,0.33,0.497,6.2,0.168319839,0.138,,,0.281,,,0.232,0.333,0.257665412,958,3718,,,0.174076449,,,0.138738123,0.216136605,0.222222222,2,9,0.058854756,0.422872156,770.5,29,3764,,,50.2994012,42,835,36.25138411,67.99017818,70.96774194,48.85092811,99.6650952,,,,,,,,,,,,,,,,,,,0.163102573,450,2759,0.139272786,0.186932361,,0,3764,,,,0,0,3692,,,-3692,0.000541712,2,3692,,,1846,1476,,,,,,,,,1466,0.47,,,,,0.29,,,,0.52,0.31,,,,,0.27,,,,0.32,0.91454467,2119,2317,0.879372804,0.949716536,0.565272497,446,789,0.472797692,0.657747302,0.025489034,43,1687,,,0.322,327,,0.220723404,0.423276596,0.514240506,0.430221622,0.598259391,,,,,,,,,,0.098360656,0.007712446,0.189008866,4.740962043,110289,23263,2.940185224,6.541738861,0.405534351,425,1048,0.303483053,0.507585649,7.970244421,3,3764,,,125.8719253,24,19067,80.64851762,187.2874474,164.6542261,85.07924134,287.617797,,,,,,,,,,95.52923195,45.8099799,175.6816588,,,,4.2,,,,,0,,,,,0.082437276,115,1395,0.054424755,0.110449798,0.044331395,0.015899699,0.072763091,0.037992832,0.01892832,0.057057343,0.002867384,0,0.015563267,0.681318681,992,1456,0.622795903,0.73984146,0.760290557,0.652630994,0.86795012,,,,,,,,,,0.631742739,0.554944286,0.708541192,0.14,,1456,0.090714953,0.189285047,70.89401784,,,67.3854134,74.40262229,,,,,,,,,,,,,80.39025355,76.37905678,84.40145031,,,,691.9189122,78,10533,537.3021093,877.1720929,1689.006505,1261.430845,2214.90732,,,,,,,,,,249.8729133,145.5601801,400.0707398,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.124,,,0.107,0.142,0.158,,,0.136,0.18,0.124,,,0.106,0.143,0,0,2981,,,0.138,520,,,,0.168319839,632.0409942,3755,,,,,,,,,,,,,,,,,,,,,,,,,,0.316,,,0.302,0.33,0.187329328,343,1831,0.156350605,0.218308052,0.115306122,113,980,0.08194442,0.148667825,0.000812568,3,3692,,,1230.666667,,,,,,,,,,,2.941638267,,,,,,,,,2.948900992,3.003406325,,,,,,,,,3.021224303,0.009291573,,,,,4274.741,,,,,0.713025101,38462,53942,0.557334527,0.868715675,54199,,,46126.65957,62271.34043,30673,22408.82979,38937.17021,,,,,,,43542,6975.191489,80108.80851,70699,65622.06383,75775.93617,,,,,,0.306010929,112,366,,,,,,,,0.235059687,,54199,,,3.095975232,1,323,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,400,,,-888,,0.586055046,1597,2725,,,0.414,,,,,10.50920952,,,,,0.668604651,805,1204,0.611564416,0.725644887,0.109058927,124,1137,0.055203786,0.162914068,0.795681063,958,1204,0.755519797,0.835842329,3692,,,,,0.281960997,1041,3692,,,0.179306609,662,3692,,,0.00595883,22,3692,,,0.393011918,1451,3692,,,0.006229686,23,3692,,,0.000812568,3,3692,,,0.043878657,162,3692,,,0.527356446,1947,3692,,,0.014080376,48,3409,,,0.470747562,1738,3692,,,1,3718,3718,, -46,087,46087,SD,McCook County,2024,1,7681.718864,85,15356,5287.741808,10787.98932,0,,,,2,,,,2,,,,2,,,,2,7263.573711,4864.529312,10431.70347,,,,,2,,0.109,,,0.089,0.132,2.664834046,,,2.019010737,3.363969291,3.746634569,,,2.866636415,4.671492733,0.053285968,30,563,0.034732816,0.07183912,0,,,,,,,,,,,,,0.056818182,0.03707212,0.076564243,,,,,,,0.157,,,0.12,0.199,0.346,,,0.27,0.427,8.4,0.114076188,0.062,,,0.211,,,0.166,0.259,0.304294263,1729,5682,,,0.203379833,,,0.164021646,0.247879364,0.125,1,8,0.007330353,0.353459145,263.4,15,5695,,,10.89494163,14,1285,5.956365974,18.2798608,,,,,,,,,,,,,9.401709402,4.693299459,16.82225514,,,,,,,0.128667681,592,4601,0.110795341,0.146540021,0.000175593,1,5695,,,5695,0.00017307,1,5778,,,5778,,0,5778,,,,3129,,,,,,,,,3155,0.48,,,,,,,,,0.48,0.5,,,,,,,,,0.5,0.925646552,3436,3712,0.888651781,0.962641322,0.696923077,906,1300,0.605880976,0.787965178,0.017008986,53,3116,,,0.108,170,,0.066297872,0.149702128,,,,,,,,,,0.297297297,0,0.695345476,0.063458856,0.030035208,0.096882505,3.18328379,118867,37341,2.763354586,3.603212994,0.140977444,225,1596,0.088892715,0.193062172,14.04741001,8,5695,,,71.82360124,20,27846,43.87172156,110.9257269,,,,,,,,,,,,,73.37323808,44.17548239,114.5814002,,,,5.1,,,,,0,,,,,0.081632653,180,2205,0.047393128,0.115872178,0.063129003,0.029940752,0.096317254,0.010430839,0,0.027238943,0.017687075,0,0.039260567,0.779979501,2283,2927,0.736497266,0.823461736,,,,,,,,,,,,,0.728119181,0.658161885,0.798076477,0.474,,2927,0.402868983,0.545131017,75.71743718,,,73.60196877,77.83290558,,,,,,,,,,,,,75.93184521,73.75075114,78.11293929,,,,418.0253388,85,15356,329.8990602,522.4599496,,,,,,,,,,,,,406.8568512,318.3404287,512.3688695,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.086,,,0.072,0.102,0.129,,,0.108,0.15,0.079,,,0.066,0.093,,,,,,0.062,350,,,,0.114076188,640.8800252,5618,,,,,,,,,,,,,,,,,,,,,,,,,,0.278,,,0.26,0.295,0.13945803,422,3026,0.116819733,0.162096328,0.109489051,180,1644,0.078510328,0.140467775,0.000346141,2,5778,,,2889,,,,,,,,,,,3.50643673,,,,,,,,,3.537983049,3.254081182,,,,,,,,,3.287685126,0.082792802,,,,,-290.52065,,,,,0.828333002,45859,55363,0.729905706,0.926760299,70320,,,62001.02128,78638.97872,68375,65603.59575,71146.40426,,,,,,,55667,13308.3617,98025.6383,79505,73285.42553,85724.57447,,,,,,0.137900356,155,1124,,,,,,,,0.181171786,,70320,,,2.188183807,1,457,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,700,,,0,,0.732323232,2900,3960,,,0.69,,,,,3.677431691,,,,,0.820559062,1820,2218,0.786987754,0.854130371,0.068107093,145,2129,0.031072843,0.105141343,0.863390442,1915,2218,0.833846784,0.8929341,5778,,,,,0.281758394,1628,5778,,,0.182242991,1053,5778,,,0.00657667,38,5778,,,0.017480097,101,5778,,,0.002596054,15,5778,,,0.000865351,5,5778,,,0.047767394,276,5778,,,0.920733818,5320,5778,,,0.002285279,12,5251,0,0.01531022,0.483731395,2795,5778,,,1,5682,5682,, -46,089,46089,SD,McPherson County,2024,1,7303.008001,31,6073,3152.920503,14389.83712,1,,,,2,,,,2,,,,2,,,,2,7645.786608,3300.907975,15065.24763,1,,,,2,,0.131,,,0.107,0.158,3.076608,,,2.403147523,3.918278036,4.18101467,,,3.299995088,5.204914888,0.106918239,17,159,0.058886422,0.154950056,1,,,,,,,,,,,,,0.086666667,0.041641934,0.131691399,,,,,,,0.188,,,0.146,0.233,0.363,,,0.283,0.447,6.7,0.232086175,0.084,,,0.249,,,0.199,0.3,0.574865201,1386,2411,,,0.170253068,,,0.137161554,0.20819862,0,0,3,0,0.420755624,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.098510882,172,1746,0.08302152,0.114000244,0.000413223,1,2420,,,2420,0.000417537,1,2395,,,2395,,0,2395,,,,2022,,,,,,,,,2032,0.58,,,,,,,,,0.58,0.2,,,,,,,,,0.2,0.811184606,1349,1663,0.742036055,0.880333157,0.587064677,236,402,0.409612984,0.76451637,0.026612078,26,977,,,0.244,108,,0.14987234,0.33812766,,,,,,,,,,,,,,,,5.249680236,119026,22673,3.51945103,6.979909443,0.067146283,28,417,0.008761543,0.125531023,20.66115703,5,2420,,,,,,,,,,,,,,,,,,,,,,,,,,4.9,,,,,0,,,,,0.060301508,60,995,0.023847673,0.096755342,0.05,0.002167904,0.097832096,0,0,0.023949535,0.014070352,0,0.033658145,0.735074627,788,1072,0.610975627,0.859173627,,,,,,,,,,,,,0.724700762,0.610209852,0.839191671,0.294,,1072,0.171949376,0.416050624,79.41296902,,,75.37814941,83.44778862,,,,,,,,,,,,,79.1261742,74.8918563,83.36049211,,,,321.912069,31,6073,208.3245179,475.2057168,,,,,,,,,,,,,326.1077359,208.9433797,485.2224614,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.097,,,0.081,0.114,0.139,,,0.117,0.161,0.086,,,0.072,0.101,,,,,,0.084,190,,,,0.232086175,570.6999033,2459,,,,,,,,,,,,,,,,,,,,,,,,,,0.288,,,0.272,0.305,0.107204117,125,1166,0.088140287,0.126267946,0.081125828,49,604,0.053721573,0.108530083,0.000835073,2,2395,,,1197.5,,,,,,,,,,,3.112002359,,,,,,,,,3.091959955,3.05745059,,,,,,,,,3.11164498,,,,,,-4952.2791,,,,,0.795383232,39797,50035,0.660375723,0.930390741,52850,,,45203.02128,60496.97872,,,,,,,,,,,,,59306,49303.44681,69308.55319,,,,,,0.158311346,60,379,,,,,,,,0.241059603,,52850,,,,,135,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,300,,,-888,,0.733518006,1324,1805,,,0.479,,,,,0.003810872,,,,,0.785550459,685,872,0.734823602,0.836277316,0.064312736,51,793,0.000952012,0.127673461,0.712155963,621,872,0.638328377,0.78598355,2395,,,,,0.222129436,532,2395,,,0.306471816,734,2395,,,0.005845512,14,2395,,,0.005427975,13,2395,,,0.004175365,10,2395,,,0.000835073,2,2395,,,0.02045929,49,2395,,,0.952400835,2281,2395,,,0.016981132,36,2120,0,0.043588364,0.497286013,1191,2395,,,1,2411,2411,, -46,091,46091,SD,Marshall County,2024,1,3832.152408,36,12849,1912.996675,6856.779207,1,,,,2,,,,2,,,,2,,,,2,2731.130983,1098.056304,5627.173649,1,,,,2,,0.112,,,0.093,0.133,2.67771782,,,2.032156029,3.389994771,3.680488483,,,2.806511099,4.617373606,0.040685225,19,467,0.022766935,0.058603515,1,,,,,,,,,,,,,0.04,0.020166195,0.059833806,,,,,,,0.153,,,0.119,0.189,0.356,,,0.278,0.437,8,0.15154471,0.062,,,0.213,,,0.169,0.26,0.366233163,1577,4306,,,0.201064877,,,0.159695091,0.243557193,0.25,1,4,0.023230216,0.544021398,232.3,10,4304,,,14.60823373,11,753,7.292377646,26.13816536,,,,,,,,,,,,,,,,,,,,,,0.121026895,396,3272,0.103154554,0.138899235,0.000232342,1,4304,,,4304,0.000228624,1,4374,,,4374,,0,4374,,,,3504,,,,,,,,,3566,0.61,,,,,,,,,0.61,0.19,,,,,0.3,,,,0.19,0.903268405,2736,3029,0.888246843,0.918289967,0.685904551,618,901,0.581724807,0.790084294,0.0277666,69,2485,,,0.157,150,,0.097425532,0.216574468,0.4,0.271864208,0.528135792,,,,,,,0.12195122,0.00040919,0.243493249,0.049315069,0,0.099263788,3.679753808,130933,35582,2.810078554,4.549429063,0.123493976,123,996,0.05604103,0.190946922,23.23420074,10,4304,,,,,,,,,,,,,,,,,,,,,,,,,,5.4,,,,,0,,,,,0.060526316,115,1900,0.03512704,0.085925592,0.039556962,0.012822438,0.066291486,0.016842105,0,0.033931346,0.007894737,0,0.019714517,0.803113553,1754,2184,0.74243508,0.863792027,,,,,,,,,,,,,0.826923077,0.768565974,0.88528018,0.197,,2184,0.133246968,0.260753032,82.31510463,,,79.93597949,84.69422977,,,,,,,,,,,,,83.56485415,81.29310503,85.83660328,,,,176.941196,36,12849,119.3814819,252.5945595,,,,,,,,,,,,,141.5384353,88.70138383,214.2908919,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.086,,,0.073,0.1,0.124,,,0.105,0.144,0.082,,,0.068,0.096,,,,,,0.062,270,,,,0.15154471,705.5921689,4656,,,,,,,,,,,,,,,,,,,,,,,,,,0.277,,,0.262,0.291,0.133215704,302,2267,0.110577406,0.155854001,0.097353497,103,1058,0.068757753,0.125949242,0.000457247,2,4374,,,2187,,,,,,,,,,,3.362545238,,,,,,,,,3.439964764,2.965771915,,,,,,,,,3.046763933,0.133692156,,,,,-2230.2675,,,,,0.615707816,37661,61167,0.517944672,0.713470961,65643,,,55866.82979,75419.17021,21734,13995.2766,29472.7234,,,,,,,49219,29435.51064,69002.48936,75855,62823.68085,88886.31915,,,,,,0.251445087,174,692,,,,,,,,0.1940801,,65643,,,6.711409396,2,298,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14,,500,,,7,,0.605,2178,3600,,,0.473,,,,,0.000384954,,,,,0.7855003,1311,1669,0.773786238,0.797214361,0.026231606,41,1563,0,0.056993631,0.806470941,1346,1669,0.742156373,0.870785508,4374,,,,,0.242341107,1060,4374,,,0.229080933,1002,4374,,,0.007087334,31,4374,,,0.095107453,416,4374,,,0.002972108,13,4374,,,0,0,4374,,,0.087562872,383,4374,,,0.822816644,3599,4374,,,0.016224189,66,4068,0.000294692,0.032153685,0.466620942,2041,4374,,,1,4306,4306,, -46,093,46093,SD,Meade County,2024,1,6287.741919,345,81964,5170.633314,7404.850525,0,,,,2,,,,2,,,,2,,,,2,5989.130602,4863.474011,7114.787194,,,,,2,,0.116,,,0.097,0.137,2.974736609,,,2.389157248,3.632030137,4.105610314,,,3.448717286,4.853878349,0.073210412,135,1844,0.061321213,0.085099612,0,,,,,,,,,,,,,0.071473751,0.058775014,0.084172487,,,,,,,0.164,,,0.128,0.199,0.336,,,0.292,0.381,9,0.045692631,0.064,,,0.221,,,0.184,0.259,0.578286212,17263,29852,,,0.187447664,,,0.158258849,0.218661384,0.529411765,9,17,0.415563015,0.627687466,351.3,106,30173,,,15.84699454,87,5490,12.69279299,19.54720921,46.41350211,23.16945303,83.04657601,,,,,,,,,,13.7254902,10.54704353,17.56086433,,,,,,,0.096771567,2377,24563,0.082473695,0.111069439,0.00059656,18,30173,,,1676.277778,0.000586357,18,30698,,,1705.444444,0.002475731,76,30698,,,403.9210526,2771,,,,,4251,,,,2729,0.51,,,,,0.33,,,,0.51,0.42,,,,,0.4,,,,0.42,0.958166246,19354,20199,0.944793478,0.971539014,0.755515802,6335,8385,0.67778957,0.833242034,0.020757189,301,14501,,,0.103,648,,0.060106383,0.145893617,0.028436019,0,0.143967075,,,,,,,0.017632242,0,0.107054631,0.071012587,0.035498343,0.106526831,3.629833921,120427,33177,3.089269988,4.170397854,0.126512483,826,6529,0.075692545,0.177332421,6.95986478,21,30173,,,77.40315889,111,143405,63.00346476,91.80285301,,,,,,,,,,,,,80.99958297,65.20245387,96.79671207,,,,4.9,,,,,0,,,,,0.068671454,765,11140,0.0463042,0.091038709,0.05597083,0.035013568,0.076928091,0.011220826,0.003207552,0.0192341,0.004039497,0,0.009646263,0.772221873,12293,15919,0.748331845,0.796111902,,,,,,,,,,,,,0.681191078,0.616647257,0.745734899,0.27,,15919,0.227773509,0.312226491,79.03585448,,,77.95321332,80.11849563,,,,,,,,,,,,,79.09730609,78.00990349,80.18470868,,,,324.9755974,345,81964,288.9062075,361.0449872,,,,,,,,,,,,,322.8041815,285.4595497,360.1488134,,,,66.89905285,19,28401,40.27759996,104.471158,,,,,,,,,,,,,55.72702332,29.67229291,95.29490706,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.093,,,0.079,0.107,0.132,,,0.114,0.151,0.077,,,0.065,0.089,89.9,23,25594,,,0.064,1890,,,,0.045692631,1162.146375,25434,,,13.77837484,12,87093,7.11948734,24.068048,,,,,,,,,,,,,14.56201432,7.269305084,26.05546607,,,,0.315,,,0.299,0.329,0.109171516,1970,18045,0.090107686,0.128235345,0.064217487,437,6805,0.045153657,0.083281317,0.001303017,40,30698,,,767.45,0.877822581,163.275,186,,,,,,,,3.105532672,,,,,,,,,3.180318113,3.038539056,,,,,,,,,3.171810183,0.030381955,,,,,-1984.7605,,,,,0.813095143,40645,49988,0.705217878,0.920972408,71106,,,62374.76596,79837.23404,77679,10127.51064,145230.4894,37250,11318.42553,63181.57447,,,,79611,69696.61702,89525.38298,69121,62671.46809,75570.53192,,,,,,0.138920135,494,3556,,,47.62994559,,,,,0.173459342,,71106,,,5.83279326,9,1543,,,,,,,,,,,,,,,,,,,,,,,,,,20.56724,32,143405,13.87663046,29.36101397,22.31442418,,,,,,,,,,,,,21.03436114,13.86177653,30.60389111,,,,13.94651512,20,143405,8.518893752,21.53926146,,,,,,,,,,,,,15.23754531,9.173997662,23.79531451,,,,13.12574463,26,198084,8.574172177,19.23225706,,,,,,,,,,,,,13.90159984,8.907017328,20.68447863,,,,40,,3000,,,120,,0.634928007,13670,21530,,,0.619,,,,,67.8425277,,,,,0.729422067,8330,11420,0.703252598,0.755591535,0.066042878,727,11008,0.046227613,0.085858143,0.869877408,9934,11420,0.845784767,0.893970049,30698,,,,,0.207765978,6378,30698,,,0.171607271,5268,30698,,,0.018633136,572,30698,,,0.033422373,1026,30698,,,0.014658935,450,30698,,,0.001009838,31,30698,,,0.048244185,1481,30698,,,0.862075705,26464,30698,,,0.001579169,45,28496,0,0.00518742,0.477522966,14659,30698,,,0.332540533,9927,29852,, -46,095,46095,SD,Mellette County,2024,1,24764.86524,56,5710,16585.41892,35566.47747,0,42659.27901,27866.45736,62505.72771,,,,,2,,,,2,,,,2,,,,2,,,,2,,0.274,,,0.237,0.312,4.886419449,,,3.962956877,5.89148205,5.390597615,,,4.386693145,6.468371079,0.075313808,18,239,0.041856452,0.108771163,1,0.075342466,0.032528051,0.118156881,,,,,,,,,,,,,,,,,,,0.347,,,0.298,0.402,0.433,,,0.361,0.509,3.1,0.284963325,0.224,,,0.382,,,0.327,0.443,,,1918,,,0.153341669,,,0.121300723,0.188180768,1,1,1,,,1362.7,26,1908,,,53.16973415,26,489,34.73223562,77.90597972,71.42857143,45.27958707,107.1779282,,,,,,,,,,,,,,,,,,,0.165111271,230,1393,0.140089994,0.190132547,0,0,1908,,,-1908,0,0,1892,,,-1892,,0,1892,,,,2036,,,,,3857,,,,,0.36,,,,,0.3,,,,0.4,0.12,,,,,0.14,,,,0.12,0.819711539,1023,1248,0.767214832,0.872208245,0.356347439,160,449,0.212280028,0.50041485,0.030666667,23,750,,,0.422,247,,0.299276596,0.544723404,0.710467706,0.615200415,0.805734997,,,,,,,,,,,,,7.549262793,87043,11530,3.769555154,11.32897043,0.561101549,326,581,0.375459997,0.746743101,0,0,1908,,,166.8629761,17,10188,97.20383264,267.1637889,220.1834862,113.7720203,384.6162394,,,,,,,,,,,,,,,,3.9,,,,,0,,,,,0.207407407,140,675,0.146013146,0.268801669,0.085714286,0.007876867,0.163551705,0.103703704,0.045635839,0.161771568,0.022222222,0,0.05253046,0.681431005,400,587,0.538227807,0.824634203,,,,,,,,,,,,,,,,0.281,,587,0.128307954,0.433692046,65.92410921,,,60.88589045,70.96232796,,,,,,,,,,,,,,,,,,,944.1772248,56,5710,693.745911,1255.55555,1567.153068,1109.010783,2151.040026,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.173,,,0.15,0.199,0.19,,,0.166,0.219,0.17,,,0.148,0.195,0,0,1476,,,0.224,430,,,,0.284963325,583.6048898,2048,,,,,,,,,,,,,,,,,,,,,,,,,,0.375,,,0.361,0.387,0.22235023,193,868,0.18541406,0.259286401,0.069343066,38,548,0.050279236,0.088406896,0.000528541,1,1892,,,1892,,,,,,,,,,,2.256329874,,,,,,,,,,2.514389957,,,,,,,,,,0.045660055,,,,,-4777.34,,,,,1.016502713,41023,40357,0.428132826,1.604872601,44702,,,37973.65957,51430.34043,16563,2344.957447,30781.04255,,,,,,,,,,61406,29696.89362,93115.10638,,,,,,0.987405542,392,397,,,,,,,,0.284998434,,44702,,,,,123,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,300,,,-888,,0.521355932,769,1475,,,0.341,,,,,4.131071284,,,,,0.565217391,351,621,0.478164205,0.652270578,0.074,37,500,0,0.171335092,0.623188406,387,621,0.514971771,0.731405041,1892,,,,,0.31448203,595,1892,,,0.156448203,296,1892,,,0.006871036,13,1892,,,0.550211417,1041,1892,,,0.002642706,5,1892,,,0,0,1892,,,0.039640592,75,1892,,,0.360993658,683,1892,,,0,0,1861,0,0.025609659,0.485729387,919,1892,,,1,1918,1918,, -46,097,46097,SD,Miner County,2024,1,7197.204664,40,6041,4028.220815,11870.69458,1,,,,2,,,,2,,,,2,,,,2,7048.437153,3853.44618,11826.07987,1,,,,2,,0.12,,,0.097,0.144,2.896939658,,,2.229846721,3.707428146,3.910582893,,,3.09539749,4.823196164,0.066666667,12,180,0.030225474,0.103107859,1,,,,,,,,,,,,,0.058139535,0.0231675,0.09311157,,,,,,,0.173,,,0.134,0.216,0.364,,,0.282,0.451,8.6,0.062885719,0.078,,,0.238,,,0.191,0.289,0.517841601,1190,2298,,,0.188356085,,,0.149723578,0.228490898,0,0,3,0,0.420755624,172.9,4,2314,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.119220056,214,1795,0.100156226,0.138283886,0.000432152,1,2314,,,2314,0.002604167,6,2304,,,384,,0,2304,,,,,,,,,,,,,,0.41,,,,,,,,,0.42,0.25,,,,,,,,,0.25,0.90487658,1503,1661,0.859263926,0.950489234,0.608801956,249,409,0.481095479,0.736508433,0.018744906,23,1227,,,0.122,63,,0.077914894,0.166085106,,,,,,,,,,,,,0.152466368,0.050804365,0.254128371,4.530816146,112917,24922,2.857099906,6.204532387,0.243951613,121,496,0.077945349,0.409957877,12.96456353,3,2314,,,98.45162445,11,11173,49.14669621,176.1571513,,,,,,,,,,,,,95.62057755,45.85378367,175.8496466,,,,5,,,,,0,,,,,0.134715026,130,965,0.081594812,0.18783524,0.094240838,0.038086011,0.150395664,0.014507772,0,0.039235264,0.051813472,0.013631246,0.089995697,0.775877588,862,1111,0.695304232,0.856450944,,,,,,,,,,,,,0.74361949,0.62475829,0.862480689,0.268,,1111,0.192681284,0.343318716,77.08636486,,,74.04147236,80.13125736,,,,,,,,,,,,,76.94389015,73.85931022,80.02847007,,,,454.287263,40,6041,310.7321516,641.3180686,,,,,,,,,,,,,454.0926531,308.5339266,644.5482742,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.092,,,0.077,0.108,0.133,,,0.113,0.155,0.082,,,0.068,0.097,,,,,,0.078,180,,,,0.062885719,150.2339834,2389,,,,,,,,,,,,,,,,,,,,,,,,,,0.301,,,0.283,0.318,0.123298639,154,1249,0.10185183,0.144745447,0.111692845,64,573,0.078331143,0.145054547,0.001302083,3,2304,,,768,,,,,,,,,,,3.365991092,,,,,,,,,3.344560221,3.222908805,,,,,,,,,3.167657956,,,,,,2013.821,,,,,0.790508319,37961,48021,0.662965634,0.918051005,64099,,,57013.21277,71184.78723,,,,,,,,,,,,,62679,55547.93617,69810.06383,,,,,,0.129310345,45,348,,,,,,,,0.198755051,,64099,,,9.900990099,1,101,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,300,,,-888,,0.679402985,1138,1675,,,0.581,,,,,0.177777805,,,,,0.810989011,738,910,0.757329917,0.864648105,0.092089729,78,847,0.026368073,0.157811384,0.765934066,697,910,0.697662209,0.834205923,2304,,,,,0.232638889,536,2304,,,0.235243056,542,2304,,,0.0078125,18,2304,,,0.005208333,12,2304,,,0.006076389,14,2304,,,0,0,2304,,,0.037326389,86,2304,,,0.92578125,2133,2304,,,0,0,2201,0,0.0216536,0.482204861,1111,2304,,,1,2298,2298,, -46,099,46099,SD,Minnehaha County,2024,1,7699.618401,2362,560881,7254.817339,8144.419464,0,29979.96806,24637.00548,35322.93064,,4514.051789,2629.601515,7227.434197,1,11463.86364,9274.799491,13652.92779,,5913.421657,4329.367869,7887.675803,,7023.367672,6550.272217,7496.463128,,,,,2,,0.111,,,0.092,0.133,2.832663498,,,2.273452278,3.469119094,4.106274269,,,3.454201034,4.863036597,0.069802655,1383,19813,0.066254484,0.073350825,0,0.07840617,0.059517074,0.097295266,0.109979633,0.082305666,0.137653601,0.088403042,0.076272834,0.10053325,0.075606277,0.061767762,0.089444792,0.063779418,0.059782935,0.067775901,,,,0.089939024,0.068045611,0.111832438,0.152,,,0.121,0.19,0.355,,,0.31,0.399,8.9,0.049048134,0.068,,,0.22,,,0.184,0.261,0.897416005,176983,197214,,,0.230642565,,,0.197925676,0.265873834,0.355263158,27,76,0.297150326,0.41296657,627.5,1253,199685,,,17.85626806,729,40826,16.56003527,19.15250086,74.28571429,60.00845965,88.56296892,15.95744681,9.877911082,24.39265253,27.58867789,21.77255316,34.48111376,41.50812868,34.08138213,48.93487522,11.51990548,10.31472683,12.72508413,,,,28.27763496,21.30258456,36.80722878,0.109442868,18318,167375,0.099910953,0.118974783,0.001021609,204,199685,,,978.8480392,0.000563806,115,203971,,,1773.66087,0.00232386,474,203971,,,430.3185654,3105,,,,,7895,991,2555,2620,3042,0.54,,,,,0.24,0.29,0.23,0.47,0.54,0.59,,,,,0.44,0.47,0.29,0.41,0.6,0.931013113,121689,130706,0.923841632,0.938184595,0.731883807,42177,57628,,,0.01858599,2168,116647,,,0.109,5446,,0.079212766,0.138787234,0.26597582,0.11241739,0.419534251,0.055276382,0,0.15400073,0.188278231,0.120701149,0.255855313,0.214269275,0.134350289,0.294188261,0.054974281,0.04127302,0.068675543,3.813726609,133694,35056,3.654302246,3.973150972,0.216343257,10770,49782,0.191331385,0.241355129,13.62145379,272,199685,,,78.37523301,761,970970,72.80667706,83.94378897,216.9197397,161.5109942,285.2093972,55.99888002,28.93543847,97.81877385,81.36696501,60.19572865,107.5714428,33.61743361,19.58339392,53.82476778,78.38830613,72.22290197,84.55371029,,,,4.7,,,,,0,,,,,0.112612326,8835,78455,0.103264584,0.121960067,0.090189772,0.080663396,0.099716147,0.021795934,0.016103157,0.027488711,0.008030081,0.005250572,0.01080959,0.806277673,87773,108862,0.796169752,0.816385593,0.614947966,0.482472556,0.747423376,0.747572816,0.679519583,0.815626049,0.777420447,0.721094625,0.833746269,0.750393082,0.698648813,0.802137351,0.833681313,0.819473498,0.847889128,0.123,,108862,0.112145015,0.133854985,76.95835102,,,76.56368124,77.3530208,59.22002587,57.13765915,61.3023926,77.97131748,75.27778783,80.66484712,72.71364386,68.76037365,76.66691407,78.25154784,74.43551777,82.06757791,77.57142856,77.15389126,77.98896585,,,,364.9066462,2362,560881,349.822317,379.9909753,1734.392853,1401.423129,2067.362577,196.9618164,110.2380335,324.8585632,604.1034511,466.7226739,741.4842284,250.6160951,177.3508648,343.990171,344.1095326,328.4535375,359.7655276,,,,65.59133825,142,216492,54.8029047,76.3797718,,,,,,,128.0283632,83.63237747,187.5912157,61.54534773,30.72321584,110.1216277,54.3826597,43.3777392,67.32943317,,,,6.939281289,140,20175,5.78978772,8.088774858,,,,,,,11.62790698,7.450219406,17.30140387,,,,5.781919597,4.618392015,7.149433122,,,,,,,0.084,,,0.071,0.099,0.13,,,0.111,0.149,0.083,,,0.071,0.096,186.7,304,162828,,,0.068,13270,,,,0.049048134,8312.089132,169468,,,16.62487828,98,589478,13.49687979,20.26040163,,,,,,,,,,,,,15.86781277,12.50203168,19.86093386,,,,0.276,,,0.262,0.291,0.130951674,15443,117929,0.117845291,0.144058057,0.06129145,3157,51508,0.049376556,0.073206344,0.002765099,564,203971,,,361.6507092,0.883925942,2040.985,2309,,,0.03974809,385,9686,0.020991779,0.058504401,3.072546036,,,,,,,2.426018179,2.617970093,3.26639135,3.07467778,,,,,,2.910187998,2.345120663,2.437640279,3.312017773,0.10504018,,,,,1048.398914,,,,,0.794147774,46518,58576,0.772289787,0.816005761,75623,,,69638.14894,81607.85106,31938,25850.68085,38025.31915,69276,48130.6383,90421.3617,58477,56645.68085,60308.31915,54522,47716.21277,61327.78723,77073,74043.04255,80102.95745,,,,,,0.32196805,11105,34491,,,48.78528996,,,,,0.217645425,,75623,,,7.274490786,105,14434,,,3.572797612,48,1343485,2.634298918,4.737011294,,,,,,,16.63020813,8.854885432,28.43816239,,,,1.993118306,1.249076631,3.017605068,,,,18.79164214,177,970970,15.97336701,21.60991727,18.22919349,45.68431576,22.80544583,81.7418602,,,,,,,,,,18.6795161,15.57647565,21.78255655,,,,10.19598958,99,970970,8.286797208,12.41325147,,,,,,,19.92660368,10.2963669,34.80776647,,,,9.340957574,7.33466079,11.72671684,,,,10.12292657,136,1343485,8.421580336,11.8242728,,,,,,,,,,,,,9.96559153,8.103235064,11.827948,,,,31.72248804,,20900,,,663,,0.680819999,92326,135610,,,0.743,,,,,157.991668,,,,,0.634320978,50674,79887,0.621441942,0.647200015,0.092352679,7264,78655,0.082728736,0.101976623,0.906492921,72417,79887,0.896350188,0.916635655,203971,,,,,0.251413191,51281,203971,,,0.139068789,28366,203971,,,0.067612553,13791,203971,,,0.02999446,6118,203971,,,0.022405146,4570,203971,,,0.001191346,243,203971,,,0.060611558,12363,203971,,,0.798961617,162965,203971,,,0.013922898,2553,183367,,,0.489643136,99873,203971,,,0.143372174,28275,197214,, -46,101,46101,SD,Moody County,2024,1,8222.199519,86,17804,5758.72746,11382.9899,0,38756.80359,23673.66251,59856.73978,1,,,,2,,,,2,,,,2,3224.14372,1842.876713,5235.807408,1,,,,2,,0.117,,,0.098,0.137,2.826156147,,,2.143441885,3.53412729,3.949700204,,,3.037924613,4.888254388,0.074433657,46,618,0.053739379,0.095127935,0,,,,,,,,,,,,,0.07239819,0.048238599,0.096557781,,,,,,,0.165,,,0.133,0.202,0.337,,,0.263,0.416,8.8,0.043045607,0.076,,,0.22,,,0.176,0.266,0.617266414,3911,6336,,,0.198554329,,,0.160306944,0.242775634,0.2,1,5,0.015594715,0.47750127,443.4,28,6315,,,10.72194425,15,1399,6.000990803,17.68421649,,,,,,,,,,,,,,,,,,,,,,0.133644291,659,4931,0.115771951,0.151516632,0.000475059,3,6315,,,2105,0.000472515,3,6349,,,2116.333333,0.001102536,7,6349,,,907,3724,,,,,,,,,3235,0.58,,,,,0.31,,,,0.61,0.43,,,,,0.42,,,,0.43,0.944759207,4002,4236,0.92586337,0.963655044,0.673333333,909,1350,0.58013838,0.766528287,0.022166874,89,4015,,,0.149,237,,0.104914894,0.193085106,0.279475983,0.121991681,0.436960284,,,,,,,0.421686747,0.20043258,0.642940914,0.008249313,0,0.027624499,4.176164864,138206,33094,3.436996681,4.915333047,0.217338952,361,1661,0.129044684,0.305633221,15.83531275,10,6315,,,67.53852766,22,32574,42.32603571,102.2541425,,,,,,,,,,,,,64.51352768,36.87505525,104.7659272,,,,5.1,,,,,1,,,,,0.105363985,275,2610,0.069730686,0.140997283,0.084169884,0.04713398,0.121205789,0.016858238,0.004088258,0.029628218,0.007662835,0,0.016363412,0.703617657,2120,3013,0.651809895,0.755425419,0.606481482,0.374221361,0.838741602,,,,,,,,,,0.655996178,0.581259676,0.730732679,0.355,,3013,0.294573749,0.415426251,77.79119327,,,75.49022114,80.09216541,,,,,,,,,,,,,81.88587343,79.94502269,83.82672418,,,,377.5264457,86,17804,296.4394599,473.9498809,1403.962264,947.2474442,2004.243431,,,,,,,,,,220.0059568,157.1754811,299.5856698,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.089,,,0.076,0.104,0.13,,,0.111,0.151,0.087,,,0.073,0.102,,,,,,0.076,480,,,,0.043045607,279.1938038,6486,,,,,,,,,,,,,,,,,,,,,,,,,,0.286,,,0.271,0.3,0.148281016,496,3345,0.125642719,0.170919314,0.104441777,174,1666,0.077037521,0.131846032,0.001102536,7,6349,,,907,,,,,,,,,,,3.078049059,,,,,,,,,3.251595421,3.028170088,,,,,,,,,3.223431571,0.110520185,,,,,-3416.615,,,,,0.7498342,42964,57298,0.651284299,0.848384101,70603,,,61167.59575,80038.40426,34950,19143.70213,50756.29787,,,,,,,,,,75926,68186.08511,83665.91489,,,,,,0.145875252,145,994,,,,,,,,0.18044559,,70603,,,,,487,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.142857143,,700,,,5,,0.667221644,3206,4805,,,0.655,,,,,4.995934206,,,,,0.695755653,1754,2521,0.654884944,0.736626361,0.091358025,222,2430,0.056365193,0.126350857,0.833796113,2102,2521,0.79217979,0.875412436,6349,,,,,0.258308395,1640,6349,,,0.200189006,1271,6349,,,0.010867853,69,6349,,,0.138131989,877,6349,,,0.020948181,133,6349,,,0.000630021,4,6349,,,0.049141597,312,6349,,,0.760434714,4828,6349,,,0.011758691,69,5868,0,0.02489571,0.487478343,3095,6349,,,1,6336,6336,, -46,102,46102,SD,Oglala Lakota County,2024,1,32809.14696,451,40808,29271.6169,36346.67701,0,35759.51166,31898.14385,39620.87947,,,,,2,,,,2,,,,2,,,,2,,,,2,,0.329,,,0.284,0.377,5.474414736,,,4.486767389,6.546970458,5.998060539,,,4.959035147,7.081843197,0.084611317,160,1891,0.072067569,0.097155064,0,0.085310735,0.072296816,0.098324653,,,,,,,,,,,,,,,,,,,0.428,,,0.37,0.485,0.468,,,0.406,0.533,,,0.263,,,0.395,,,0.341,0.451,0.019236396,263,13672,,,0.159125997,,,0.128139506,0.194163516,0.575757576,19,33,0.503583444,0.640227024,2252.3,306,13586,,,54.74027487,235,4293,47.74138573,61.739164,57.19970157,49.80729377,64.59210936,,,,,,,,,,,,,,,,,,,0.170036288,1640,9645,0.14739799,0.192674586,0.000368026,5,13586,,,2717.2,0.00022191,3,13519,,,4506.333333,0.00118352,16,13519,,,844.9375,1720,,,,,1816,,,,,0.13,,,,,0.14,,,,,0.23,,,,,0.24,,,,0.24,0.739490992,5172,6994,0.676648345,0.80233364,0.282480894,961,3402,0.207726495,0.357235292,0.049232398,186,3778,,,0.466,2213,,0.328978723,0.603021277,0.617384241,0.562224786,0.672543695,,,,,,,0.821510298,0.052834158,1,,,,7.194850846,75733,10526,4.991478606,9.398223085,0.52441445,2642,5038,0.407120795,0.641708106,0,0,13586,,,229.8002724,162,70496,194.4128359,265.1877089,253.7386809,214.4214649,293.0558968,,,,,,,,,,,,,,,,,,,,,0,,,,,0.55062167,1550,2815,0.459785036,0.641458303,0.147727273,0.088749749,0.206704797,0.387211368,0.297450518,0.476972217,0.092362345,0.053173877,0.131550812,0.67339097,2103,3123,0.579234627,0.767547314,0.684979138,0.566331841,0.803626434,,,,,,,,,,,,,0.177,,3123,0.10661131,0.24738869,60.10493903,,,58.41129916,61.7985789,58.38087637,56.67535776,60.08639497,,,,,,,,,,,,,,,,1353.810607,451,40808,1226.212331,1481.408884,1488.439864,1346.749002,1630.130726,,,,,,,,,,,,,,,,190.4846283,43,22574,137.85467,256.5815443,214.5387417,155.2627511,288.9822772,,,,,,,,,,,,,,,,17.32042792,34,1963,11.99489984,24.20356194,18.230563,12.62519484,25.4753845,,,,,,,,,,,,,,,,,,,0.201,,,0.175,0.23,0.215,,,0.186,0.244,0.216,,,0.191,0.243,200.5,20,9976,,,0.263,3640,,,,,,13586,,,,,,,,,,,,,,,,,,,,,,,,,,0.354,,,0.339,0.369,0.245408431,1403,5717,0.20966375,0.281153112,0.060861198,253,4157,0.042988858,0.078733538,0.00044382,6,13519,,,2253.166667,0.175,18.2,104,,,0.14661274,145,989,0.071891102,0.221334378,1.541687887,,,,,,,,,,1.510131946,,,,,,,,,,0.046534921,,,,,,,,,,1.256761239,41683,33167,1.04517398,1.468348498,40683,,,34468.19149,46897.80851,30973,25507.6383,36438.3617,,,,,,,,,,101500,20095.06383,182904.9362,,,,,,0.997284085,1836,1841,,,,,,,,0.313152914,,40683,,,,,1256,,,28.20192579,28,99284,18.73997488,40.75963493,29.30898433,19.14560164,42.94445281,,,,,,,,,,,,,,,,47.32302126,36,70496,32.77256791,66.12917891,51.06672719,52.06808875,36.05866509,72.75993512,,,,,,,,,,,,,,,,15.6037222,11,70496,7.789321901,27.9193692,15.85866756,7.604847513,29.16465427,,,,,,,,,,,,,,,,80.57693083,80,99284,63.89249485,100.2849653,89.05422162,70.5050659,110.9881312,,,,,,,,,,,,,,,,,,2300,,,,,0.355160932,3200,9010,,,0.202,,,,,9.246383068,,,,,0.505961252,1358,2684,0.424078405,0.587844099,0.148026316,360,2432,0.089376567,0.206676065,0.562593145,1510,2684,0.480056462,0.645129827,13519,,,,,0.362600784,4902,13519,,,0.078704046,1064,13519,,,0.003402619,46,13519,,,0.895258525,12103,13519,,,0.003328649,45,13519,,,0.001331459,18,13519,,,0.053628227,725,13519,,,0.048820179,660,13519,,,0,0,12454,0,0.006122958,0.507212072,6857,13519,,,1,13672,13672,, -46,103,46103,SD,Pennington County,2024,1,10171.1526,1667,318314,9446.640082,10895.66511,0,39359.39904,34732.89581,43985.90227,,,,,2,,,,2,6214.57002,4021.742047,9173.931285,,7412.350545,6696.572275,8128.128814,,,,,2,,0.122,,,0.102,0.143,2.772662681,,,2.198655773,3.385157475,4.299097017,,,3.586158382,5.028952913,0.074317691,757,10186,0.069224015,0.079411367,0,0.077723043,0.06544604,0.090000047,0.109195402,0.062853394,0.15553741,0.094594595,0.047444788,0.141744401,0.073976222,0.055331098,0.092621346,0.07156848,0.065366848,0.077770112,,,,0.081469649,0.060040072,0.102899225,0.165,,,0.132,0.199,0.358,,,0.312,0.406,8,0.090046108,0.089,,,0.226,,,0.19,0.266,0.792129791,86518,109222,,,0.183988127,,,0.156936168,0.213659524,0.306666667,23,75,0.247151535,0.367090062,794.2,888,111806,,,30.0407332,649,21604,27.72949742,32.35196897,77.62128326,67.96052868,87.28203783,,,,,,,42.71961492,33.36437368,53.88498141,17.78376558,15.63851596,19.92901519,,,,39.77669225,30.12647827,51.5353185,0.123341282,10810,87643,0.110234899,0.136447665,0.001135896,127,111806,,,880.3622047,0.000943553,108,114461,,,1059.824074,0.003398538,389,114461,,,294.2442159,2212,,,,,4579,,6584,,2067,0.5,,,,,0.31,0.38,0.56,0.33,0.51,0.47,,,,,0.39,0.42,0.23,0.36,0.48,0.941730013,71854,76300,0.931015352,0.952444674,0.705639866,19343,27412,0.665125137,0.746154595,0.020281464,1212,59759,,,0.181,4437,,0.133340426,0.228659575,0.599735362,0.540376098,0.659094626,,,,0.391919192,0.210038197,0.573800187,0.267389678,0.14763957,0.387139786,0.081839439,0.05681726,0.106861618,4.239714383,124690,29410,3.92341989,4.556008876,0.264059378,6475,24521,0.225468985,0.30264977,12.70057063,142,111806,,,97.8030697,551,563377,89.63663004,105.9695094,273.3064046,227.3721762,319.2406331,,,,,,,52.79482611,30.17680477,85.73548999,85.25889319,76.72010237,93.79768402,,,,5.9,,,,,1,,,,,0.114916373,5050,43945,0.099206504,0.130626241,0.099426606,0.085130604,0.113722607,0.012515645,0.008489026,0.016542263,0.006599158,0.003336231,0.009862085,0.789832122,43143,54623,0.770969576,0.808694668,0.761584719,0.709692329,0.813477109,0.572658773,0.382039871,0.763277675,,,,0.791059939,0.695093679,0.8870262,0.815906005,0.798929541,0.832882468,0.134,,54623,0.117793993,0.150206007,76.42944439,,,75.84898331,77.00990546,57.93289636,56.01115259,59.85464013,,,,,,,80.25784997,76.20861684,84.3070831,78.51562968,77.90807839,79.12318097,,,,410.3251541,1667,318314,389.0153439,431.6349642,1496.359591,1329.47674,1663.242443,,,,,,,251.530654,168.4540266,361.2399765,327.0359792,306.8158712,347.2560872,,,,73.32155477,83,113200,58.4002091,90.89309876,213.3495885,148.6058056,296.717631,,,,,,,,,,59.18114811,43.00111282,79.44792904,,,,5.895998454,61,10346,4.509971637,7.573656671,,,,,,,,,,,,,6.209343584,4.475148689,8.393228678,,,,,,,0.088,,,0.075,0.102,0.133,,,0.115,0.154,0.08,,,0.068,0.093,117.6,110,93577,,,0.089,9630,,,,0.090046108,9089.974471,100948,,,9.955872061,34,341507,6.894730821,13.9123333,42.99937155,22.89535438,73.5302349,,,,,,,,,,5.897682579,3.371035174,9.577467018,,,,0.278,,,0.264,0.292,0.141870595,8957,63135,0.125189744,0.158551446,0.078678421,2017,25636,0.060806081,0.096550761,0.002629717,301,114461,,,380.269103,0.749165282,901.995,1204,,,0.051056015,278,5445,0.025453128,0.076658901,2.996672714,,,,,,2.931562069,,2.770414813,3.220613176,2.971970461,,,,,,3.063082741,,2.780046037,3.208389987,0.084412647,,,,,1052.984262,,,,,0.797474422,43259,54245,0.747435274,0.847513569,67573,,,61585.76596,73560.23404,25385,17391.29787,33378.70213,,,,43817,32127.29787,55506.70213,63276,44714.97872,81837.02128,71548,69582.04255,73513.95745,,,,,,0.463175324,7553,16307,,,57.80871654,,,,,0.225652258,,67573,,,6.086074482,42,6901,,,6.782255061,53,781451,5.080374449,8.871356608,37.58583303,24.55231401,55.07195386,,,,,,,,,,3.200578665,1.954996597,4.943034165,,,,29.44210988,160,563377,24.73162002,34.15259973,28.40016543,55.83578286,36.47378714,81.81235879,,,,,,,,,,26.24454498,21.26544329,31.22364667,,,,20.23511787,114,563377,16.52054071,23.94969503,44.21133016,27.70700523,66.93648517,,,,,,,,,,18.92168648,15.11397111,23.39695835,,,,14.46027966,113,781451,11.79407464,17.12648468,46.25948681,31.64145473,65.30459281,,,,,,,,,,11.84214106,9.298627791,14.86672366,,,,40,,11600,,,464,,0.674262939,57518,85305,,,0.706,,,,,105.9825905,,,,,0.691806643,31013,44829,0.676964942,0.706648344,0.105209071,4607,43789,0.091522063,0.118896079,0.885565148,39699,44829,0.871818734,0.899311561,114461,,,,,0.21835385,24993,114461,,,0.200688444,22971,114461,,,0.012851539,1471,114461,,,0.099920497,11437,114461,,,0.014397917,1648,114461,,,0.001293017,148,114461,,,0.058980788,6751,114461,,,0.791614611,90609,114461,,,0.003909116,405,103604,0.001906891,0.00591134,0.488742891,55942,114461,,,0.180192635,19681,109222,, -46,105,46105,SD,Perkins County,2024,1,6382.754184,46,7460,3186.247892,11420.51033,1,,,,2,,,,2,,,,2,,,,2,6269.389851,2866.764259,11901.25482,1,,,,2,,0.121,,,0.1,0.143,2.89771067,,,2.223189366,3.708450747,3.845158707,,,2.977271491,4.864305329,0.0625,15,240,0.031875,0.093125,1,,,,,,,,,,,,,0.062222222,0.030658549,0.093785896,,,,,,,0.172,,,0.136,0.21,0.356,,,0.281,0.439,8.4,0.085528167,0.073,,,0.234,,,0.188,0.284,0.502998236,1426,2835,,,0.178758734,,,0.143975144,0.219544511,0.5,1,2,0.104528646,0.771195053,141.9,4,2819,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.11328125,232,2048,0.09540891,0.13115359,0.000354736,1,2819,,,2819,0,0,2804,,,-2804,0.0021398,6,2804,,,467.3333333,2477,,,,,,,,,2516,0.37,,,,,,,,,0.37,0.15,,,,,,,,,0.15,0.922417896,1938,2101,0.896222921,0.948612872,0.659468439,397,602,0.538914411,0.780022466,0.020964361,30,1431,,,0.196,117,,0.128085106,0.263914894,,,,,,,,,,,,,0.169082126,0.0642152,0.273949051,4.415946027,118471,26828,3.579951317,5.251940736,0.210445469,137,651,0.113111423,0.307779514,24.83150053,7,2819,,,,,,,,,,,,,,,,,,,,,,,,,,4.2,,,,,0,,,,,0.097744361,130,1330,0.05278043,0.142708292,0.070889894,0.025289106,0.116490683,0.02481203,0,0.050973334,0,0,0.012669326,0.615678776,966,1569,0.57732992,0.654027633,,,,,,,,,,,,,0.6273905,0.566308422,0.688472578,0.13,,1569,0.076356508,0.183643492,78.93516337,,,75.64736119,82.22296555,,,,,,,,,,,,,79.10938363,75.67765166,82.5411156,,,,343.4871292,46,7460,240.5741625,475.5309714,,,,,,,,,,,,,324.8605267,222.2043598,458.6061343,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.094,,,0.08,0.109,0.135,,,0.115,0.156,0.087,,,0.072,0.102,,,,,,0.073,220,,,,0.085528167,255.044995,2982,,,,,,,,,,,,,,,,,,,,,,,,,,0.309,,,0.292,0.326,0.128065395,188,1468,0.106618587,0.149512204,0.078431373,48,612,0.053410096,0.103452649,0.0010699,3,2804,,,934.6666667,,,,,,,,,,,2.992763913,,,,,,,,,3.018046912,3.154908882,,,,,,,,,3.137924578,,,,,,-2707.7723,,,,,0.740874186,40714,54954,0.580879358,0.900869013,57148,,,49242.46809,65053.53192,,,,,,,,,,,,,66618,58166.76596,75069.23404,,,,,,0.075794621,31,409,,,,,,,,0.222929936,,57148,,,,,209,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,300,,,0,,0.720950324,1669,2315,,,0.514,,,,,3.390625378,,,,,0.784963622,971,1237,0.767254192,0.802673052,0.08311229,94,1131,0.032720358,0.133504222,0.86742118,1073,1237,0.820535541,0.91430682,2804,,,,,0.215406562,604,2804,,,0.267831669,751,2804,,,0.004992867,14,2804,,,0.025677603,72,2804,,,0.005706134,16,2804,,,0.000713267,2,2804,,,0.022467903,63,2804,,,0.927960057,2602,2804,,,0,0,2778,0,0.017156074,0.4967903,1393,2804,,,1,2835,2835,, -46,107,46107,SD,Potter County,2024,1,4491.986097,27,5843,2054.022082,8527.188842,1,,,,2,,,,2,,,,2,,,,2,4503.390239,1810.596442,9278.705064,1,,,,2,,0.114,,,0.095,0.138,2.778686417,,,2.163523853,3.578466015,4.043146897,,,3.207892021,5.135187666,,,,,,0,,,,,,,,,,,,,,,,,,,,,,0.163,,,0.129,0.204,0.369,,,0.29,0.461,8.3,0.123556735,0.061,,,0.226,,,0.182,0.278,0.591828479,1463,2472,,,0.174508926,,,0.140933289,0.217142177,0.666666667,2,3,0.391498614,0.824051859,202,5,2475,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.095157658,169,1776,0.080859785,0.10945553,0.00040404,1,2475,,,2475,0.000410172,1,2438,,,2438,0.000410172,1,2438,,,2438,3899,,,,,,,,,4021,0.47,,,,,,,,,0.48,0.52,,,,,,,,,0.53,0.965764771,1749,1811,0.936392152,0.99513739,0.62835249,328,522,0.501186005,0.755518976,0.022966507,24,1045,,,0.119,63,,0.072531915,0.165468085,,,,,,,,,,,,,0.071005917,0.01297979,0.129032045,3.8439339,129333,33646,3.093672149,4.594195651,0.037542662,22,586,0,0.082450045,16.16161616,4,2475,,,89.05512512,10,11229,42.70539403,163.7755458,,,,,,,,,,,,,96.57170449,46.30988601,177.5988029,,,,4.4,,,,,0,,,,,0.050251256,50,995,0.017760504,0.082742008,0.053481332,0.011003315,0.095959349,0,0,0.023949535,0,0,0.016934879,0.75990099,921,1212,0.692921604,0.826880377,,,,,,,,,,,,,0.754251701,0.69039963,0.818103772,0.16,,1212,0.096391874,0.223608126,81.87248893,,,79.06211756,84.6828603,,,,,,,,,,,,,82.01091165,79.05781971,84.96400359,,,,265.1680508,27,5843,161.9715343,409.530548,,,,,,,,,,,,,260.8142557,154.5750575,412.1989677,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.089,,,0.076,0.106,0.133,,,0.114,0.155,0.081,,,0.068,0.097,0,0,2086,,,0.061,160,,,,0.123556735,287.7636362,2329,,,,,,,,,,,,,,,,,,,,,,,,,,0.291,,,0.273,0.307,0.102272727,126,1232,0.084400387,0.120145068,0.077057793,44,571,0.052036517,0.10207907,0.002461034,6,2438,,,406.3333333,,,,,,,,,,,3.407693472,,,,,,,,,3.419956218,3.431805007,,,,,,,,,3.446753727,,,,,,2165.09285,,,,,0.805859494,45000,55841,0.640989309,0.970729679,72374,,,62912.38298,81835.61702,,,,46000,11025.02128,80974.97872,,,,,,,80273,67354.87234,93191.12766,,,,,,0.112426036,38,338,,,,,,,,0.176030066,,72374,,,,,150,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,200,,,0,,0.777464789,1380,1775,,,0.47,,,,,5.73459467,,,,,0.778529981,805,1034,0.727536455,0.829523507,0.062761506,60,956,0.013792042,0.11173097,0.890715667,921,1034,0.848026685,0.93340465,2438,,,,,0.221493027,540,2438,,,0.273995078,668,2438,,,0.004922067,12,2438,,,0.036505332,89,2438,,,0.011484824,28,2438,,,0.001230517,3,2438,,,0.025840853,63,2438,,,0.913453651,2227,2438,,,0,0,2441,0,0.019524611,0.506972929,1236,2438,,,1,2472,2472,, -46,109,46109,SD,Roberts County,2024,1,14798.93628,174,28219,11751.66932,17846.20325,0,32068.60616,25211.35199,38925.86033,,,,,2,,,,2,,,,2,3408.889074,1985.803507,5457.961632,1,,,,2,,0.18,,,0.154,0.207,3.801476133,,,3.015778224,4.643041986,4.563598349,,,3.606377176,5.576068345,0.049769585,54,1085,0.036829484,0.062709687,0,0.058303887,0.038999679,0.077608095,,,,,,,,,,0.05027933,0.027642936,0.072915724,,,,,,,0.245,,,0.203,0.288,0.449,,,0.368,0.531,7.4,0.10276276,0.115,,,0.296,,,0.247,0.35,0.088326848,908,10280,,,0.167563948,,,0.132943474,0.205490496,0.416666667,5,12,0.261828357,0.556653137,698.6,71,10163,,,36.8208352,82,2227,29.28470295,45.70436513,48.75804968,36.52312505,63.77672947,,,,,,,,,,,,,,,,109.2436975,58.16766799,186.8100497,0.169554455,1233,7272,0.148107647,0.191001264,0.000295188,3,10163,,,3387.666667,0.00127915,13,10163,,,781.7692308,0.000983961,10,10163,,,1016.3,2609,,,,,2167,,,,2198,0.5,,,,,0.3,,,,0.54,0.21,,,,,0.22,,,,0.21,0.911221481,5871,6443,0.891394767,0.931048194,0.608483667,1248,2051,0.536171445,0.680795888,0.033081081,153,4625,,,0.233,675,,0.146021277,0.319978723,0.460326721,0.378657005,0.541996438,,,,,,,,,,0.112121212,0.052223752,0.172018672,4.60358162,111310,24179,3.939343917,5.267819324,0.393918688,1153,2927,0.301712377,0.486124999,14.75942143,15,10163,,,122.0622711,63,51613,93.79600061,156.1706688,197.3649117,138.9631118,272.0415327,,,,,,,,,,79.98052648,50.70079298,120.0100598,,,,5.8,,,,,1,,,,,0.110539846,430,3890,0.087521985,0.133557706,0.079463364,0.056467369,0.102459359,0.026735219,0.013145406,0.040325031,0.006169666,0.001821817,0.010517515,0.801555503,3401,4243,0.763443331,0.839667675,0.803921569,0.723517318,0.884325819,,,,,,,,,,0.783551402,0.72615367,0.840949134,0.205,,4243,0.165214245,0.244785755,73.37415688,,,71.15042362,75.59789015,60.0830574,56.80530336,63.36081144,,,,,,,,,,83.54256389,81.70783358,85.37729421,,,,551.8881184,174,28219,463.2617502,640.5144866,1349.390613,1100.842169,1597.939058,,,,,,,,,,187.9322456,134.2615516,255.9103785,,,,99.57870548,13,13055,53.0214668,170.2826191,166.2133575,82.97310921,297.4016095,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.125,,,0.108,0.143,0.161,,,0.14,0.185,0.122,,,0.104,0.142,,,,,,0.115,1180,,,,0.10276276,1042.93925,10149,,,,,,,,,,,,,,,,,,,,,,,,,,0.317,,,0.304,0.328,0.203831253,947,4646,0.175235508,0.232426997,0.110828488,305,2752,0.081041254,0.140615722,0.002459904,25,10163,,,406.52,,,,,,,,,,,2.495944108,,,,,,,,,2.741052838,2.284283993,,,,,,,,,2.617673529,0.124115205,,,,,-5860.53625,,,,,0.796472185,41090,51590,0.713762258,0.879182111,57788,,,50332.85106,65243.14894,38281,34613.59575,41948.40426,,,,,,,95577,35498.53192,155655.4681,68250,62110.25532,74389.74468,,,,,,0.334166146,535,1601,,,,,,,,0.220460995,,57788,,,11.08374384,9,812,,,,,,,,,,,,,,,,,,,,,,,,,,26.21879525,11,51613,13.08832812,46.91266708,21.31246004,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,31.86522396,23,72179,20.19981856,47.81348162,49.89253915,26.56567582,85.31776143,,,,,,,,,,,,,,,,121.6666667,,1200,,,146,,0.576187291,4307,7475,,,0.482,,,,,1.093374843,,,,,0.678600711,2483,3659,0.652327715,0.704873707,0.070185449,246,3505,0.047329478,0.093041421,0.803224925,2939,3659,0.773020453,0.833429397,10163,,,,,0.290760602,2955,10163,,,0.205844731,2092,10163,,,0.006297353,64,10163,,,0.383843353,3901,10163,,,0.00432943,44,10163,,,9.83961E-05,1,10163,,,0.043195907,439,10163,,,0.548755289,5577,10163,,,0.000424448,4,9424,0,0.008019808,0.485584965,4935,10163,,,1,10280,10280,, -46,111,46111,SD,Sanborn County,2024,1,9321.331177,33,6521,4963.216274,15939.7602,1,,,,2,,,,2,,,,2,,,,2,8325.204605,4155.912143,14896.0907,1,,,,2,,0.122,,,0.101,0.143,2.903594794,,,2.298276404,3.576109347,3.938874805,,,3.169496522,4.770530098,0.086206897,20,232,0.050090283,0.12232351,1,,,,,,,,,,,,,0.085201794,0.048558824,0.121844763,,,,,,,0.174,,,0.14,0.207,0.361,,,0.296,0.426,6.4,0.27761429,0.077,,,0.241,,,0.197,0.284,0.004291846,10,2330,,,0.189539554,,,0.15851732,0.224403017,0.166666667,1,6,0.011498194,0.426636125,210.3,5,2378,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.115693626,216,1867,0.096629796,0.134757456,,0,2378,,,,0,0,2415,,,-2415,0.000828157,2,2415,,,1207.5,1977,,,,,,,,,1977,0.46,,,,,,,,,0.46,0.35,,,,,,,,,0.35,0.919140872,1455,1583,0.894394306,0.943887437,0.613756614,348,567,0.51312525,0.714387978,0.020661157,25,1210,,,0.178,99,,0.108893617,0.247106383,,,,,,,,,,,,,0.032374101,0.000309549,0.064438653,4.181762147,115333,27580,2.681389941,5.682134352,0.145962733,94,644,0.067792369,0.224133097,0,0,2378,,,83.87150885,10,11923,40.21964855,154.242691,,,,,,,,,,,,,,,,,,,4.9,,,,,0,,,,,0.065989848,65,985,0.027744328,0.104235367,0.058103976,0.009167891,0.10704006,0,0,0.024192677,0.008121827,0,0.02025903,0.691428571,847,1225,0.640788315,0.742068828,,,,,,,,,,,,,0.58974359,0.496393726,0.683093454,0.358,,1225,0.279217412,0.436782588,76.60392651,,,72.55552136,80.65233166,,,,,,,,,,,,,77.27773709,73.25979017,81.29568401,,,,378.1276705,33,6521,249.1885175,550.1559081,,,,,,,,,,,,,360.5915375,231.037802,536.5316248,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.094,,,0.08,0.107,0.134,,,0.117,0.152,0.085,,,0.073,0.097,,,,,,0.077,180,,,,0.27761429,653.781653,2355,,,,,,,,,,,,,,,,,,,,,,,,,,0.289,,,0.272,0.305,0.125194401,161,1286,0.102556103,0.147832699,0.093178037,56,601,0.061007824,0.125348249,0.000828157,2,2415,,,1207.5,,,,,,,,,,,3.60385526,,,,,,,,,,3.34730086,,,,,,,,,,,,,,,-1398.260775,,,,,0.82116541,38782,47228,0.723237753,0.919093068,63266,,,54531.19149,72000.80851,,,,,,,,,,65833,20488.48936,111177.5106,65972,57969.95745,73974.04255,,,,,,0.105788423,53,501,,,,,,,,0.201371985,,63266,,,,,220,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,200,,,-888,,0.663865546,1185,1785,,,0.561,,,,,1.213510622,,,,,0.760383387,714,939,0.723345726,0.797421047,0.087456847,76,869,0.026976907,0.147936787,0.779552716,732,939,0.737897101,0.82120833,2415,,,,,0.249689441,603,2415,,,0.219461698,530,2415,,,0.003726708,9,2415,,,0.010351967,25,2415,,,0.002070393,5,2415,,,0.000414079,1,2415,,,0.046376812,112,2415,,,0.923395445,2230,2415,,,0,0,2165,0,0.02201366,0.484057971,1169,2415,,,1,2330,2330,, -46,115,46115,SD,Spink County,2024,1,7082.431398,82,17079,4778.486723,10110.6112,0,,,,2,,,,2,,,,2,,,,2,7595.108263,5046.894283,10977.04612,,,,,2,,0.113,,,0.091,0.141,2.805667328,,,2.073806955,3.684642545,4.003153032,,,3.048033756,5.114277811,0.050450451,28,555,0.032240829,0.068660072,0,,,,,,,,,,,,,0.047801147,0.029516432,0.066085863,,,,,,,0.157,,,0.12,0.202,0.359,,,0.276,0.453,8.3,0.115166271,0.063,,,0.216,,,0.171,0.269,0.447099513,2844,6361,,,0.18973437,,,0.148508464,0.235329071,1,4,4,,,,,,,,11.29032258,14,1240,6.172524416,18.94324284,,,,,,,,,,,,,10.64773736,5.501841268,18.59945435,,,,,,,0.122903842,579,4711,0.105031502,0.140776183,0.000478545,3,6269,,,2089.666667,0.000801925,5,6235,,,1247,0.00064154,4,6235,,,1558.75,3328,,,,,,,,,3333,0.52,,,,,,,,,0.52,0.29,,,,,,,,,0.29,0.906492355,4091,4513,0.881373617,0.931611094,0.631067961,845,1339,0.52929303,0.732842893,0.023973727,73,3045,,,0.151,199,,0.093808511,0.208191489,,,,,,,,,,,,,0.140224359,0.085105194,0.195343524,3.907200693,117259,30011,3.403314611,4.411086776,0.190865712,280,1467,0.124082448,0.257648976,15.95150742,10,6269,,,78.44613888,25,31869,50.76620493,115.8019759,,,,,,,,,,,,,83.86447501,54.27266638,123.8005089,,,,5.3,,,,,0,,,,,0.084615385,220,2600,0.059716936,0.109513834,0.06201849,0.03701848,0.087018501,0.011153846,0,0.026495335,0.013076923,0.003385341,0.022768506,0.692752637,2036,2939,0.636419383,0.749085891,,,,,,,,,,,,,0.681871805,0.624341156,0.739402454,0.235,,2939,0.182129548,0.287870453,78.82499484,,,76.58294691,81.06704276,,,,,,,,,,,,,78.55577897,76.14533958,80.96621836,,,,337.3586985,82,17079,262.4852041,426.9490244,,,,,,,,,,,,,342.5730018,263.2425007,438.2996835,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.088,,,0.073,0.106,0.129,,,0.108,0.153,0.08,,,0.066,0.096,,,,,,0.063,400,,,,0.115166271,738.7916295,6415,,,,,,,,,,,,,,,,,,,,,,,,,,0.279,,,0.262,0.295,0.132959906,451,3392,0.111513097,0.154406714,0.098336949,136,1383,0.070932693,0.125741204,0.00064154,4,6235,,,1558.75,,,,,,,,,,,3.229062923,,,,,,,,,3.196468806,3.166409432,,,,,,,,,3.151778178,0.107261522,,,,,-5085.688,,,,,0.732693333,41214,56250,0.669530906,0.795855761,61513,,,54254.44681,68771.55319,,,,,,,,,,56181,54952.57447,57409.42553,68088,56793.87234,79382.12766,,,,,,0.16091954,196,1218,,,,,,,,0.207110692,,61513,,,2.652519894,1,377,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,22.85714286,,700,,,16,,0.652837977,3163,4845,,,0.619,,,,,13.3056194,,,,,0.739904988,1869,2526,0.695292891,0.784517085,0.083690987,195,2330,0.048638622,0.118743352,0.877672209,2217,2526,0.847521981,0.907822438,6235,,,,,0.22213312,1385,6235,,,0.241058541,1503,6235,,,0.007217322,45,6235,,,0.02085004,130,6235,,,0.001924619,12,6235,,,0.00032077,2,6235,,,0.033680834,210,6235,,,0.934402566,5826,6235,,,0.004692475,28,5967,0,0.017116022,0.496551724,3096,6235,,,1,6361,6361,, -46,117,46117,SD,Stanley County,2024,1,11091.73407,39,8368,6063.95423,18610.04507,1,,,,2,,,,2,,,,2,,,,2,8764.510796,4202.9236,16118.24741,1,,,,2,,0.104,,,0.085,0.124,2.572471539,,,1.939784027,3.287592679,3.843262591,,,2.974606076,4.806919432,0.061403509,14,228,0.030241553,0.092565464,1,,,,,,,,,,,,,0.060301508,0.027227419,0.093375596,,,,,,,0.15,,,0.115,0.188,0.342,,,0.267,0.426,9.3,0.047468603,0.051,,,0.199,,,0.159,0.243,0.686912752,2047,2980,,,0.199313105,,,0.16030047,0.2435447,0,0,2,0,0.510593623,395.8,12,3032,,,21.8487395,13,595,11.6335336,37.36200995,,,,,,,,,,,,,,,,,,,,,,0.10145548,237,2336,0.085966118,0.116944841,0.000989446,3,3032,,,1010.666667,0.000333445,1,2999,,,2999,0.000333445,1,2999,,,2999,1280,,,,,,,,,589,0.46,,,,,,,,,0.46,0.52,,,,,,,,,0.52,0.942723005,2008,2130,0.906905015,0.978540994,0.535050072,374,699,0.371719886,0.698380257,0.018662519,36,1929,,,0.12,81,,0.074723404,0.165276596,,,,,,,,,,,,,0.026871401,0,0.082454666,4.54145349,151789,33423,3.150937275,5.931969705,0.1,66,660,0,0.218142891,0,0,3032,,,71.9706883,11,15284,35.92750829,128.7754417,,,,,,,,,,,,,,,,,,,3.8,,,,,0,,,,,0.031141869,45,1445,0.002389953,0.059893784,0.026989619,0,0.060840977,0,0,0.016491202,0.002768166,0,0.016290145,0.833722287,1429,1714,0.756635114,0.91080946,,,,,,,,,,,,,0.724752475,0.614131741,0.83537321,0.093,,1714,0.035858178,0.150141822,81.17612343,,,74.78790793,87.56433893,,,,,,,,,,,,,82.02336197,75.93900805,88.1077159,,,,369.2884918,39,8368,254.2012057,518.6183425,,,,,,,,,,,,,328.6236859,216.5650797,478.1302095,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.082,,,0.069,0.096,0.125,,,0.105,0.145,0.076,,,0.064,0.088,0,0,2531,,,0.051,150,,,,0.047468603,140.7918754,2966,,,,,,,,,,,,,,,,,,,,,,,,,,0.281,,,0.265,0.296,0.112068966,182,1624,0.091813646,0.132324285,0.079194631,59,745,0.055364844,0.103024418,0.000333445,1,2999,,,2999,,,,,,,,,,,2.586433772,,,,,,,,,2.734329228,2.765915343,,,,,,,,,2.838616552,0.013251741,,,,,1108.415,,,,,0.641985916,41844,65179,0.469036166,0.814935666,81788,,,69722.97872,93853.02128,,,,,,,,,,,,,85625,71707.21277,99542.78723,,,,,,0.133171913,55,413,,,,,,,,0.150804519,,81788,,,13.88888889,2,144,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,33.33333333,,300,,,10,,0.67704918,1652,2440,,,0.586,,,,,40.98275413,,,,,0.836965295,1037,1239,0.765266333,0.908664256,0.06097561,75,1230,0.0108053,0.11114592,0.847457627,1050,1239,0.778229319,0.916685936,2999,,,,,0.231077026,693,2999,,,0.225741914,677,2999,,,0.010003334,30,2999,,,0.072357453,217,2999,,,0.003667889,11,2999,,,0,0,2999,,,0.027675892,83,2999,,,0.860286762,2580,2999,,,0,0,2851,0,0.016716792,0.487162388,1461,2999,,,0.300335571,895,2980,, -46,119,46119,SD,Sully County,2024,0,,,,,,2,,,,2,,,,2,,,,2,,,,2,,,,2,,,,2,,0.11,,,0.092,0.13,2.733357646,,,2.089081311,3.476353064,3.915483761,,,3.026946777,4.920419981,,,,,,0,,,,,,,,,,,,,,,,,,,,,,0.16,,,0.127,0.198,0.354,,,0.275,0.441,7.3,0.21688225,0.062,,,0.213,,,0.172,0.262,0.009681881,14,1446,,,0.183894607,,,0.146767864,0.227613546,0.333333333,1,3,0.04092282,0.635504717,0,0,1476,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.07175713,78,1087,0.059842236,0.083672023,0,0,1476,,,-1476,0,0,1471,,,-1471,,0,1471,,,,2576,,,,,,,,,2652,0.46,,,,,,,,,0.46,0.35,,,,,,,,,0.35,0.962209302,993,1032,0.934999335,0.98941927,0.686346864,186,271,0.647584176,0.725109551,0.01595092,13,815,,,0.071,21,,0.042404255,0.099595745,,,,,,,,,,,,,0.067357513,0,0.16840041,4.422278923,131722,29786,0.388141074,8.456416772,0.084444444,19,225,0,0.184226485,27.100271,4,1476,,,,,,,,,,,,,,,,,,,,,,,,,,4.1,,,,,0,,,,,0.101694915,60,590,0.044481419,0.158908412,0.067826087,0,0.140620846,0.016949153,0,0.061871583,0.025423729,0,0.066877203,0.675675676,525,777,0.520685022,0.830666329,,,,,,,,,,,,,0.691283293,0.63160308,0.750963506,0.271,,777,0.191223581,0.350776419,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.087,,,0.074,0.102,0.129,,,0.11,0.151,0.081,,,0.068,0.095,0,0,1251,,,0.062,80,,,,0.21688225,297.7793295,1373,,,,,,,,,,,,,,,,,,,,,,,,,,0.29,,,0.274,0.306,0.07830552,61,779,0.062816158,0.093794882,0.055384615,18,325,0.037512275,0.073256956,0.00067981,1,1471,,,1471,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4479.206,,,,,0.994845139,46125,46364,0.720253867,1.269436411,76192,,,65139.74468,87244.25532,,,,,,,,,,,,,67716,58674.97872,76757.02128,,,,,,0.09478673,20,211,,,,,,,,0.167209156,,76192,,,,,60,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,100,,,0,,0.898550725,930,1035,,,0.48,,,,,0.943652994,,,,,0.804674457,482,599,0.788032615,0.821316299,0.074427481,39,524,0,0.151165773,0.803005008,481,599,0.735267623,0.870742394,1471,,,,,0.201903467,297,1471,,,0.27396329,403,1471,,,0.008157716,12,1471,,,0.034670292,51,1471,,,0.001359619,2,1471,,,0,0,1471,,,0.028552005,42,1471,,,0.918422842,1351,1471,,,0.065873016,83,1260,0,0.148116791,0.467709042,688,1471,,,1,1446,1446,, -46,121,46121,SD,Todd County,2024,1,29834.15482,282,29061,25778.67682,33889.63283,0,33036.88149,28443.28962,37630.47335,,,,,2,,,,2,,,,2,,,,2,,,,2,,0.337,,,0.292,0.384,5.472700299,,,4.565020585,6.443418953,5.969121414,,,5.035337154,6.93772478,0.087073007,130,1493,0.072771363,0.101374651,0,0.086631815,0.071564793,0.101698837,,,,,,,,,,,,,,,,,,,0.43,,,0.369,0.488,0.473,,,0.419,0.53,4.1,0.122900065,0.255,,,0.405,,,0.351,0.462,0.324176414,3021,9319,,,0.178772601,,,0.148329177,0.21280335,0,0,2,0,0.510593623,3467.6,322,9286,,,73.87057387,242,3276,64.56335641,83.17779133,75.12690355,65.24421581,85.00959129,,,,,,,,,,,,,,,,268.2926829,133.9307407,480.0497198,0.156125019,1054,6751,0.133486721,0.178763316,0.000215378,2,9286,,,4643,0.00032538,3,9220,,,3073.333333,0.000867679,8,9220,,,1152.5,6491,,,,,6007,,,,6190,0.3,,,,,0.27,,,,0.39,0.13,,,,,0.13,,,,0.13,0.798083067,3747,4695,0.751645399,0.844520736,0.433048433,1064,2457,0.355516031,0.510580835,0.037454425,113,3017,,,0.456,1720,,0.32493617,0.58706383,0.65712564,0.639264976,0.674986305,,,,,,,0.257861635,0,0.548642108,,,,7.23122843,77526,10721,5.560149561,8.9023073,0.552388708,2035,3684,0.465873334,0.638904082,0,0,9286,,,239.4062724,120,50124,196.5710553,282.2414896,258.5216392,209.7641768,307.2791016,,,,,,,,,,,,,,,,4.1,,,,,0,,,,,0.228037383,610,2675,0.179527201,0.276547566,0.103966597,0.062958201,0.144974993,0.119626168,0.084729319,0.154523018,0.024299065,0.00698653,0.041611601,0.768995633,1761,2290,0.696731315,0.841259951,0.837756333,0.769723552,0.905789114,,,,,,,,,,0.695364238,0.626879254,0.763849223,0.198,,2290,0.124464736,0.271535264,61.35581294,,,59.30754287,63.40408301,59.28500742,57.23746785,61.332547,,,,,,,,,,,,,,,,1232.427341,282,29061,1085.003209,1379.851473,1412.945623,1236.211582,1589.679663,,,,,,,,,,,,,,,,181.8281999,33,18149,125.1621664,255.3543957,191.9512841,128.5527875,275.674063,,,,,,,,,,,,,,,,13.82211539,23,1664,8.762035479,20.73995967,,,,,,,,,,,,,,,,,,,,,,0.202,,,0.176,0.231,0.219,,,0.193,0.25,0.222,,,0.199,0.249,,,,,,0.255,2400,,,,0.122900065,1181.315422,9612,,,,,,,,,,,,,,,,,,,,,,,,,,0.377,,,0.361,0.391,0.238797814,874,3660,0.200670155,0.276925474,0.059272838,194,3273,0.041400498,0.077145179,0.002277657,21,9220,,,439.0476191,0.425,62.05,146,,,0.178623719,122,683,0.071632544,0.285614894,1.82878398,,,,,,,,,,1.757517454,,,,,,,,,,0.108961295,,,,,-1335.344,,,,,1.059447218,41168,38858,0.853334443,1.265559993,41862,,,35512.55319,48211.44681,22027,15100.87234,28953.12766,79190,75028.12766,83351.87234,,,,,,,58150,51837.48936,64462.51064,,,,,,1,1991,1991,,,,,,,,0.304333286,,41862,,,1.768346596,2,1131,,,22.77969191,16,70238,13.02056217,36.9927925,23.8724529,13.05129214,40.05391955,,,,,,,,,,,,,,,,51.16808345,26,50124,32.78435655,76.13405223,51.87135903,46.81847549,28.18778063,73.11284898,,,,,,,,,,,,,,,,33.9158886,17,50124,19.75725495,54.30262313,35.90578323,20.09619431,59.22112905,,,,,,,,,,,,,,,,76.88146018,54,70238,57.75571909,100.3136285,76.7328843,55.96949235,102.6746364,,,,,,,,,,,,,,,,0,,1800,,,0,,0.4263644,2539,5955,,,0.264,,,,,11.95037133,,,,,0.429580391,1034,2407,0.375817807,0.483342974,0.101284585,205,2024,0.052934136,0.149635034,0.612380557,1474,2407,0.544148259,0.680612855,9220,,,,,0.414208243,3819,9220,,,0.073752712,680,9220,,,0.004121475,38,9220,,,0.844577007,7787,9220,,,0.037635575,347,9220,,,0,0,9220,,,0.042516269,392,9220,,,0.075921909,700,9220,,,0.001931201,16,8285,0,0.010658845,0.509002169,4693,9220,,,1,9319,9319,, -46,123,46123,SD,Tripp County,2024,1,11570.45303,93,14599,8187.941203,15881.35078,0,39694.54921,25433.04668,59062.34277,1,,,,2,,,,2,,,,2,7196.78111,4192.390206,11522.74372,1,,,,2,,0.164,,,0.136,0.194,3.575687844,,,2.805669977,4.43995678,4.523264318,,,3.519093671,5.573223761,0.0816,51,625,0.06013766,0.10306234,0,0.107296137,0.067556504,0.147035771,,,,,,,,,,0.063400576,0.037760762,0.089040391,,,,,,,0.224,,,0.183,0.271,0.383,,,0.304,0.468,7.4,0.121642046,0.102,,,0.275,,,0.224,0.33,0.698435277,3928,5624,,,0.169936316,,,0.135820122,0.210236152,0.833333333,5,6,0.737313514,0.893476419,610.5,34,5569,,,38.29029386,43,1123,27.71087552,51.57677454,107.266436,72.88233903,152.2561436,,,,,,,,,,,,,,,,,,,0.163482467,676,4135,0.140844169,0.186120765,0.000897827,5,5569,,,1113.8,0.001078167,6,5565,,,927.5,0.004312669,24,5565,,,231.875,4954,,,,,9458,,,,3368,0.47,,,,,0.24,,,,0.49,0.21,,,,,0.2,,,,0.2,0.898200641,3644,4057,0.876636532,0.919764749,0.576164167,730,1267,0.454934006,0.697394328,0.016866688,52,3083,,,0.257,325,,0.158106383,0.355893617,0.784037559,0.516032562,1,,,,,,,,,,0.272067715,0.173557615,0.370577814,4.385948066,109618,24993,3.168810214,5.603085917,0.263487099,337,1279,0.113684189,0.41329001,12.56958161,7,5569,,,128.0878317,35,27325,89.2178679,178.139167,,,,,,,,,,,,,123.3101936,81.26219461,179.4098577,,,,4.2,,,,,1,,,,,0.096196868,215,2235,0.054298071,0.138095665,0.091033852,0.045752831,0.136314873,0.008053691,0,0.018561688,0.011185682,0,0.024321576,0.746825702,1941,2599,0.679092428,0.814558977,,,,,,,,,,,,,0.803473105,0.740929,0.86601721,0.122,,2599,0.073178006,0.170821995,74.92794334,,,72.18837132,77.66751535,,,,,,,,,,,,,78.66203804,75.90242629,81.42164979,,,,470.8738554,93,14599,372.2062427,587.671882,1806.188195,1209.632581,2593.987534,,,,,,,,,,324.6531448,239.3736005,430.4429695,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.116,,,0.098,0.135,0.154,,,0.132,0.177,0.105,,,0.089,0.123,,,,,,0.102,570,,,,0.121642046,686.547706,5644,,,,,,,,,,,,,,,,,,,,,,,,,,0.32,,,0.304,0.334,0.191407614,548,2863,0.16162038,0.221194848,0.102391629,137,1338,0.073795885,0.130987374,0.001437556,8,5565,,,695.625,,,,,,,,,,,3.092947312,,,,,,,,,3.375095345,2.976486931,,,,,,,,,3.389830222,0.048384663,,,,,-5115.311,,,,,0.90987296,43259,47544,0.76182388,1.057922039,55946,,,47600.80851,64291.19149,16600,6518.808511,26681.19149,54464,40063.65957,68864.34043,,,,,,,65359,54624.87234,76093.12766,,,,,,0.356321839,341,957,,,,,,,,0.220462589,,55946,,,2.380952381,1,420,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,62,,500,,,31,,0.663222632,2696,4065,,,0.507,,,,,39.37739635,,,,,0.709040844,1545,2179,0.666443656,0.751638032,0.10107949,206,2038,0.049292451,0.152866528,0.827902708,1804,2179,0.7788141,0.876991316,5565,,,,,0.231087152,1286,5565,,,0.234681042,1306,5565,,,0.004132974,23,5565,,,0.162264151,903,5565,,,0.005390836,30,5565,,,0,0,5565,,,0.026055705,145,5565,,,0.787421384,4382,5565,,,0.010915358,57,5222,0,0.027879711,0.488589398,2719,5565,,,1,5624,5624,, -46,125,46125,SD,Turner County,2024,1,7072.832883,108,23042,4949.280543,9196.385223,0,,,,2,,,,2,,,,2,,,,2,7457.918161,5195.406609,9720.429714,,,,,2,,0.118,,,0.094,0.144,2.861298516,,,2.165541854,3.575270291,4.020257727,,,3.113329166,4.966959265,0.054469274,39,716,0.037846129,0.071092418,0,,,,,,,,,,,,,0.054331865,0.037307175,0.071356554,,,,,,,0.166,,,0.127,0.208,0.346,,,0.27,0.423,9.3,0.007588469,0.07,,,0.226,,,0.18,0.276,0.361697221,3137,8673,,,0.188110006,,,0.149972485,0.227917914,0.214285714,3,14,0.080830645,0.373240293,264.1,23,8708,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.109130752,747,6845,0.093641391,0.124620114,,0,8708,,,,0.000225836,2,8856,,,4428,0.000225836,2,8856,,,4428,3183,,,,,,,,,3213,0.5,,,,,,,,,0.5,0.37,,,,,,,,,0.37,0.913675071,5472,5989,0.892681788,0.934668354,0.636502288,1252,1967,0.566416502,0.706588074,0.018693552,89,4761,,,0.096,206,,0.05906383,0.13293617,,,,,,,,,,0.188235294,0,0.461365551,0.112758073,0.071279972,0.154236174,4.184976005,128190,30631,3.52915779,4.840794219,0.149489322,322,2154,0.104385824,0.19459282,22.96738631,20,8708,,,78.20090524,33,42199,53.82990491,109.8231457,,,,,,,,,,,,,82.42581677,56.73813961,115.7564923,,,,5.3,,,,,0,,,,,0.089235128,315,3530,0.066951307,0.111518948,0.070571429,0.047545041,0.093597817,0.005665722,0,0.014478513,0.018413598,0.009313514,0.027513682,0.802085695,3538,4411,0.770100108,0.834071281,,,,,,,,,,,,,0.766228594,0.702682508,0.82977468,0.423,,4411,0.369848355,0.476151645,78.03549559,,,76.2017958,79.86919538,,,,,,,,,,,,,77.67979952,75.76986618,79.58973286,,,,344.1833573,108,23042,274.3576918,414.0090229,,,,,,,,,,,,,357.3623715,284.2542695,430.4704735,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.091,,,0.076,0.108,0.133,,,0.112,0.155,0.083,,,0.07,0.098,,,,,,0.07,600,,,,0.007588469,63.34095242,8347,,,,,,,,,,,,,,,,,,,,,,,,,,0.291,,,0.274,0.308,0.116666667,553,4740,0.097602837,0.135730497,0.094245582,208,2207,0.068032816,0.120458348,0.00101626,9,8856,,,984,,,,,,,,,,,3.231983081,,,,,,,,,3.230173902,3.24946749,,,,,,,,,3.27692758,0.061428211,,,,,-1193.490875,,,,,0.844948955,45852,54266,0.776492063,0.913405847,74511,,,64444.10638,84577.89362,,,,,,,,,,,,,72875,68758.40426,76991.59575,,,,,,0.160714286,243,1512,,,,,,,,0.170981466,,74511,,,7.722007722,4,518,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,27.24563644,16,58725,15.57323534,44.24520664,,,,,,,,,,,,,28.65278201,16.37754061,46.53032288,,,,20,,1000,,,20,,0.731777957,4548,6215,,,0.661,,,,,0.456753192,,,,,0.787914004,2712,3442,0.769825171,0.806002836,0.08620155,278,3225,0.060722703,0.111680397,0.817257409,2813,3442,0.78692278,0.847592037,8856,,,,,0.247289973,2190,8856,,,0.214092141,1896,8856,,,0.005984643,53,8856,,,0.011404697,101,8856,,,0.003839205,34,8856,,,0.000338753,3,8856,,,0.026761518,237,8856,,,0.94467028,8366,8856,,,0.005135102,42,8179,0,0.013897516,0.500903342,4436,8856,,,1,8673,8673,, -46,127,46127,SD,Union County,2024,1,5446.439113,186,45449,4031.476456,6861.40177,0,,,,2,,,,2,,,,2,,,,2,5281.955904,3793.614236,6770.297572,,,,,2,,0.102,,,0.083,0.122,2.522037455,,,1.951333951,3.137091742,3.673615682,,,2.920225849,4.44502387,0.070261438,86,1224,0.055942715,0.084580161,0,,,,,,,,,,,,,0.068097015,0.053016781,0.083177249,,,,,,,0.138,,,0.105,0.173,0.382,,,0.316,0.442,9.3,0.004263338,0.072,,,0.199,,,0.161,0.24,0.769020284,12928,16811,,,0.194884292,,,0.159788624,0.227678753,0.25,2,8,0.070127692,0.458326521,201.5,34,16872,,,6.701631702,23,3432,4.248259626,10.05573802,,,,,,,,,,,,,5.698960778,3.319854666,9.124588272,,,,,,,0.08219777,1128,13723,0.070282877,0.094112664,0.000474158,8,16872,,,2109,0.000879095,15,17063,,,1137.533333,0.000468851,8,17063,,,2132.875,2430,,,,,,,,,2439,0.58,,,,,,,,,0.58,0.53,,,,,,,,,0.53,0.944594713,10826,11461,0.93076076,0.958428665,0.739252995,3147,4257,0.642062262,0.836443728,0.02207404,192,8698,,,0.064,253,,0.040170213,0.087829787,,,,,,,,,,0.088353414,0,0.224861337,0.096278068,0.052799416,0.13975672,3.84844494,151952,39484,3.180459563,4.516430317,0.16815698,677,4026,0.114772048,0.221541911,12.44665718,21,16872,,,62.77936819,50,79644,46.59605713,82.76677046,,,,,,,,,,,,,66.03475079,48.68881237,87.55249925,,,,5.8,,,,,0,,,,,0.089584851,615,6865,0.062266057,0.116903645,0.069423929,0.045121567,0.093726291,0.012381646,0.003537428,0.021225864,0.011653314,0,0.027174144,0.838885596,7076,8435,0.794633973,0.883137219,,,,,,,,,,0.789617486,0.656688273,0.9225467,0.846253687,0.806218551,0.886288823,0.24,,8435,0.200644762,0.279355238,80.03208681,,,78.6043528,81.45982082,,,,,,,,,,,,,80.13658091,78.65944511,81.61371672,,,,283.6444654,186,45449,240.8129236,326.4760071,,,,,,,,,,,,,282.5476117,238.4505653,326.644658,,,,58.69922517,10,17036,28.14856009,107.949965,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.08,,,0.067,0.093,0.121,,,0.104,0.139,0.076,,,0.065,0.088,,,,,,0.072,1180,,,,0.004263338,61.3877988,14399,,,,,,,,,,,,,,,,,,,,,,,,,,0.288,,,0.27,0.305,0.091426208,884,9669,0.075936846,0.106915569,0.061982494,262,4227,0.044110153,0.079854834,0.002461466,42,17063,,,406.2619048,0.9543379,209,219,,,,,,,,3.269596557,,,,,,,,,3.318580175,3.253468852,,,,,,,,,3.347137241,0.047616417,,,,,912.3841575,,,,,0.737889799,50969,69074,0.613974209,0.86180539,85677,,,75990.19149,95363.80851,,,,,,,,,,,,,79870,72302.85106,87437.14894,,,,,,0.095527157,299,3130,,,,,,,,0.179196284,,85677,,,9.414225941,9,956,,,,,,,,,,,,,,,,,,,,,,,,,,15.69779208,12,79644,7.836281245,28.0876862,15.06704837,,,,,,,,,,,,,15.68420762,7.521187194,28.84381624,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20,,1800,,,36,,0.762376238,8855,11615,,,0.723,,,,,48.69401245,,,,,0.700444955,4880,6967,0.664948241,0.735941668,0.094682423,641,6770,0.064893956,0.124470889,0.854169657,5951,6967,0.826782268,0.881557046,17063,,,,,0.235187247,4013,17063,,,0.193576745,3303,17063,,,0.01265897,216,17063,,,0.009787259,167,17063,,,0.016351169,279,17063,,,0.002051222,35,17063,,,0.048467444,827,17063,,,0.897731935,15318,17063,,,0.004367918,69,15797,0,0.010157961,0.493523999,8421,17063,,,0.579085123,9735,16811,, -46,129,46129,SD,Walworth County,2024,1,9342.664187,81,14170,6390.375388,13189.05424,0,31938.44752,18255.58235,51866.03782,1,,,,2,,,,2,,,,2,5817.703925,3325.320462,9447.586695,1,,,,2,,0.131,,,0.112,0.154,3.042371427,,,2.383767812,3.846810827,3.990051754,,,3.134929295,4.989576823,0.057026477,28,491,0.036514697,0.077538256,0,0.085271318,0.037075556,0.13346708,,,,,,,,,,0.049180328,0.02491138,0.073449275,,,,,,,0.186,,,0.15,0.224,0.363,,,0.289,0.448,7.6,0.095217881,0.107,,,0.239,,,0.197,0.287,0.686735654,3650,5315,,,0.172572746,,,0.138433277,0.212479457,0.5,2,4,0.222237796,0.705426462,533.5,28,5248,,,31.06796117,32,1030,21.25046244,43.85869134,56.29139073,32.7918095,90.12796959,,,,,,,,,,17.74193548,8.85671027,31.74522341,,,,,,,0.128809966,486,3773,0.109746136,0.147873795,0.001143293,6,5248,,,874.6666667,0.000379867,2,5265,,,2632.5,0.001899335,10,5265,,,526.5,3189,,,,,3156,,,,2984,0.49,,,,,,,,,0.53,0.11,,,,,0.08,,,,0.11,0.911889597,3436,3768,0.873979947,0.949799246,0.683284458,932,1364,0.545273893,0.821295022,0.03507109,74,2110,,,0.209,253,,0.127978723,0.290021277,0.612903226,0.307027617,0.918778835,,,,,,,,,,0.104551046,0.039093079,0.170009012,3.908432736,122545,31354,2.745735152,5.071130319,0.18469218,222,1202,0.092444184,0.276940175,15.24390244,8,5248,,,106.8179307,29,27149,71.53764462,153.4083666,,,,,,,,,,,,,94.28180833,57.5897779,145.6106062,,,,4.6,,,,,0,,,,,0.105960265,240,2265,0.057920359,0.154000171,0.087209302,0.044415017,0.130003588,0.019426049,0,0.049383228,0.004415011,0,0.016397591,0.797297297,2006,2516,0.728819008,0.865775587,,,,,,,,,,,,,0.811698307,0.732144949,0.891251665,0.117,,2516,0.055111331,0.178888669,77.36577359,,,74.7971882,79.93435897,,,,,,,,,,,,,79.99617501,77.53291719,82.45943282,,,,416.2867838,81,14170,320.591549,531.5889293,1161.769682,709.6391037,1794.259049,,,,,,,,,,308.9467738,224.4811988,414.7466236,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.098,,,0.084,0.114,0.138,,,0.119,0.159,0.093,,,0.08,0.109,114.3,5,4373,,,0.107,570,,,,0.095217881,517.7948373,5438,,,,,,,,,,,,,,,,,,,,,,,,,,0.31,,,0.296,0.325,0.147215866,386,2622,0.123386079,0.171045653,0.087966805,106,1205,0.062945528,0.112988082,0.001519468,8,5265,,,658.125,,,,,,,,,,,3.171848065,,,,,,,,,3.401657728,3.119447894,,,,,,,,,3.419774815,0.103224334,,,,,-761.1143,,,,,0.6646583,39934,60082,0.548486311,0.780830289,57100,,,49127.74468,65072.25532,43636,17859.31915,69412.68085,,,,,,,35700,15671.06383,55728.93617,59627,54651.34043,64602.65957,,,,,,0.175219024,140,799,,,,,,,,0.216007005,,57100,,,2.770083103,1,361,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,34.02963196,13,38202,18.11934582,58.19170703,,,,,,,,,,,,,33.30336031,15.97025576,61.24606535,,,,50,,500,,,25,,0.618705036,2580,4170,,,0.553,,,,,23.08661396,,,,,0.733613445,1746,2380,0.680655007,0.786571883,0.067662566,154,2276,0.026364596,0.108960536,0.809663866,1927,2380,0.75973862,0.859589111,5265,,,,,0.233618234,1230,5265,,,0.244064577,1285,5265,,,0.003798671,20,5265,,,0.148148148,780,5265,,,0.017853751,94,5265,,,0.000189934,1,5265,,,0.020702754,109,5265,,,0.782336182,4119,5265,,,0.001412429,7,4956,0,0.015724607,0.487749288,2568,5265,,,1,5315,5315,, -46,135,46135,SD,Yankton County,2024,1,6172.54533,322,62852,5030.181106,7314.909554,0,,,,2,,,,2,,,,2,,,,2,5897.883796,4697.087732,7098.67986,,,,,2,,0.117,,,0.097,0.14,2.851002161,,,2.182056386,3.620017429,3.833093642,,,2.954169616,4.83315115,0.066884176,123,1839,0.055466054,0.078302298,0,,,,,,,,,,,,,0.068152032,0.055507849,0.080796214,,,,,,,0.163,,,0.129,0.201,0.365,,,0.293,0.447,8.3,0.092732274,0.076,,,0.221,,,0.181,0.27,0.821664522,19153,23310,,,0.205391928,,,0.167138967,0.2505932,0.631578947,12,19,0.542044269,0.706470577,399.2,93,23297,,,18.35853132,85,4630,14.66414277,22.70060828,,,,,,,,,,30.12048193,14.44394186,55.39263868,16.3975782,12.65530467,20.90005949,,,,,,,0.113163972,1911,16887,0.097674611,0.128653334,0.001030176,24,23297,,,970.7083333,0.000556197,13,23373,,,1797.923077,0.006546015,153,23373,,,152.7647059,1986,,,,,,,,,1970,0.53,,,,,,,,,0.53,0.6,,,,,0.44,,,,0.61,0.930779653,15114,16238,0.915215918,0.946343387,0.65696617,3612,5498,0.571577798,0.742354541,0.018178715,213,11717,,,0.121,586,,0.073340426,0.168659575,0.649484536,0.200867349,1,,,,,,,0.150110375,0,0.341436004,0.066448528,0.024014202,0.108882854,3.502722164,119667,34164,3.037966172,3.967478156,0.17625459,864,4902,0.107556876,0.244952304,17.59883247,41,23297,,,81.30507763,93,114384,65.62369101,99.60421302,,,,,,,,,,,,,76.80031917,60.60961087,95.98722172,,,,5.6,,,,,0,,,,,0.081066946,775,9560,0.054131717,0.108002174,0.055818852,0.032063259,0.079574445,0.013075314,0.002722856,0.023427772,0.014121339,0.003693805,0.024548873,0.82756553,9661,11674,0.797097506,0.858033555,,,,,,,,,,,,,0.847363703,0.823011341,0.871716066,0.104,,11674,0.07725113,0.13074887,78.8493179,,,77.76810747,79.93052833,,,,,,,,,,,,,79.00748464,77.89047028,80.124499,,,,350.6902161,322,62852,310.3492478,391.0311843,,,,,,,,,,,,,343.3829216,301.8886766,384.8771666,,,,46.40155909,10,21551,22.2513512,85.33411926,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.089,,,0.076,0.105,0.129,,,0.11,0.15,0.083,,,0.07,0.099,96.1,19,19774,,,0.076,1760,,,,0.092732274,2080.726758,22438,,,,,,,,,,,,,,,,,,,,,,,,,,0.295,,,0.279,0.31,0.125688073,1507,11990,0.106624244,0.144751903,0.084828393,435,5128,0.060998606,0.10865818,0.001796945,42,23373,,,556.5,0.966532258,179.775,186,,,,,,,,3.184677563,,,,,,,,,3.205384647,3.057790319,,,,,,,,,3.103238136,0.028313182,,,,,935.23095,,,,,0.784290116,44292,56474,0.71819792,0.850382312,62951,,,54891.76596,71010.23404,29181,7769.93617,50592.06383,,,,,,,59886,35452.12766,84319.87234,73714,66461.40426,80966.59575,,,,,,0.150676692,501,3325,,,62.33150145,,,,,0.243888103,,62951,,,5.208333333,7,1344,,,,,,,,,,,,,,,,,,,,,,,,,,12.39476026,17,114384,7.084676437,20.12831413,14.86221849,,,,,,,,,,,,,12.51282433,6.662551963,21.39731068,,,,12.23947405,14,114384,6.691434358,20.53575773,,,,,,,,,,,,,11.96888091,6.184495421,20.90722626,,,,18.1588208,29,159702,12.16124728,26.07909572,,,,,,,,,,,,,15.6321055,9.796557293,23.66719559,,,,49.54545455,,2200,,,109,,0.618089028,10900,17635,,,0.715,,,,,92.62880038,,,,,0.703851262,6890,9789,0.6746516,0.733050924,0.065630579,625,9523,0.041732135,0.089529023,0.854939218,8369,9789,0.829040602,0.880837833,23373,,,,,0.213066359,4980,23373,,,0.214948873,5024,23373,,,0.016643135,389,23373,,,0.030804775,720,23373,,,0.007701194,180,23373,,,0.000470629,11,23373,,,0.055876439,1306,23373,,,0.87755102,20511,23373,,,0.010303195,227,22032,0.004279998,0.016326393,0.482779275,11284,23373,,,0.312655513,7288,23310,, -46,137,46137,SD,Ziebach County,2024,1,21378.96729,64,7457,15202.53567,29225.75208,0,28242.93317,19986.38045,38765.63238,,,,,2,,,,2,,,,2,,,,2,,,,2,,0.266,,,0.223,0.308,4.901734372,,,3.860147912,6.102610971,5.268709603,,,4.1201818,6.531717478,0.086792453,23,265,0.05289564,0.120689265,0,0.092592593,0.053936453,0.131248732,,,,,,,,,,,,,,,,,,,0.33,,,0.271,0.388,0.484,,,0.398,0.57,3.8,0.250177855,0.208,,,0.35,,,0.285,0.416,0.525901368,1269,2413,,,0.173381313,,,0.133707285,0.22099338,,,,,,1008.4,24,2380,,,36.8852459,36,976,25.83397276,51.06472796,44.35483871,30.53183007,62.2906845,,,,,,,,,,,,,,,,,,,0.170964126,305,1784,0.145942849,0.195985402,,0,2380,,,,0,0,2395,,,-2395,,0,2395,,,,4154,,,,,3542,,,,4317,,,,,,,,,,,0.2,,,,,0.26,,,,0.15,0.895875592,1325,1479,0.851219301,0.940531882,0.449010655,295,657,0.344431475,0.553589834,0.036842105,35,950,,,0.46,285,,0.295574468,0.624425532,0.563197026,0.503066437,0.623327615,,,,,,,,,,0.161290323,0,0.365501341,7.853975191,122200,15559,5.306011627,10.40193876,0.535714286,360,672,0.448733005,0.622695567,0,0,2380,,,127.9157261,17,13290,74.5156243,204.8054689,178.8508831,102.228733,290.4426291,,,,,,,,,,,,,,,,4.1,,,,,0,,,,,0.225806452,175,775,0.171899094,0.27971381,0.104,0.049861971,0.158138029,0.121290323,0.081111958,0.161468687,0.012903226,0,0.03934565,0.50486618,415,822,0.434783098,0.574949263,0.582554517,0.465208483,0.699900551,,,,,,,,,,0.390909091,0.224799201,0.55701898,0.338,,822,0.224139491,0.451860509,68.45023507,,,64.0186597,72.88181045,63.53014292,58.60159673,68.45868912,,,,,,,,,,,,,,,,853.8380154,64,7457,653.1184265,1096.790651,1174.128769,886.9242541,1524.703869,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.167,,,0.139,0.194,0.185,,,0.155,0.216,0.181,,,0.152,0.211,,,,,,0.208,520,,,,0.250177855,700.7481728,2801,,,,,,,,,,,,,,,,,,,,,,,,,,0.358,,,0.344,0.372,0.20908379,267,1277,0.174530599,0.243636982,0.080935252,45,556,0.057105465,0.104765039,0,0,2395,,,-2395,0.597815534,61.575,103,,,,,,,,2.306994538,,,,,,,,,,2.279279887,,,,,,,,,,0.107979962,,,,,-7591.0505,,,,,0.686119816,37222,54250,0.503699563,0.868540069,40004,,,33953.61702,46054.38298,32768,25641.70213,39894.29787,,,,,,,46250,6784.297872,85715.70213,93333,41772.48936,144893.5106,,,,,,0.80221519,507,632,,,,,,,,0.318468153,,40004,,,,,180,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,400,,,0,,0.461068702,906,1965,,,0.263,,,,,0.693686716,,,,,0.562225476,384,683,0.498025784,0.626425168,0.099830795,59,591,0.02522034,0.174441251,0.726207906,496,683,0.673395006,0.779020806,2395,,,,,0.260960334,625,2395,,,0.100208768,240,2395,,,0.006263048,15,2395,,,0.687265136,1646,2395,,,0.002505219,6,2395,,,0.000835073,2,2395,,,0.049269311,118,2395,,,0.248851775,596,2395,,,0,0,2262,0,0.021069662,0.493528184,1182,2395,,,1,2413,2413,, -47,000,47000,TN,Tennessee,2024,,11043.40635,129488,19296552,10954.37439,11132.43832,0,4856.014143,3788.329743,5923.698543,,3633.064014,3279.347296,3986.780731,,15684.71749,15425.19498,15944.24,,7119.808879,6826.712365,7412.905393,,10476.91109,10375.61631,10578.20586,,11866.4516,8355.077031,16356.34042,,,0.184,,,0.17,0.199,4.09933403,,,3.787407251,4.411260809,5.792673129,,,5.410487638,6.17485862,0.091508956,51631,564218,0.090756597,0.092261314,0,0.052264808,0.034057393,0.070472224,0.093133817,0.08810517,0.098162463,0.149826522,0.147704395,0.151948648,0.074193973,0.072111612,0.076276333,0.076874092,0.076014595,0.07773359,0.101010101,0.074463234,0.127556968,0.097968824,0.092305579,0.103632069,0.202,,,0.186,0.219,0.355,,,0.336,0.374,6.5,0.088729312,0.115,,,0.274,,,0.257,0.292,0.674074208,4658419,6910840,,,0.168859187,,,0.153551102,0.185359196,0.23816156,1368,5744,0.231659341,0.244712981,562.4,39227,6975218,,,24.1609135,35399,1465135,23.90921888,24.41260812,12.0740542,8.806897985,16.15603448,3.66252021,2.981163383,4.343877037,32.65431646,31.9922063,33.31642662,45.89471907,44.67466504,47.1147731,19.60550252,19.32829656,19.88270847,27.64423077,17.52407096,41.47991935,25.3831628,23.91989812,26.84642747,0.118725401,670735,5649465,0.115150933,0.12229987,0.000695892,4854,6975218,,,1437.00412,0.000562021,3963,7051339,,,1779.293212,0.001879359,13252,7051339,,,532.0962119,2896,,,,,870,1642,4042,2402,2763,0.42,,,,,0.34,0.33,0.38,0.24,0.43,0.47,,,,,0.37,0.47,0.36,0.29,0.48,0.892796412,4248561,4758712,0.891161444,0.89443138,0.632590039,1151658,1820544,0.626748952,0.638431126,0.03385076,113469,3352037,,,0.178,269156,,0.168468085,0.187531915,0.389814524,0.237461297,0.542167751,0.086006991,0.068045145,0.103968837,0.342491028,0.328999129,0.355982928,0.287481511,0.272859656,0.302103366,0.132169122,0.128120437,0.136217807,4.628131092,125825,27187,4.57022177,4.686040414,0.279153326,425215,1523231,0.272392921,0.285913731,10.9688328,7651,6975218,,,108.0602811,36932,34177220,106.9581817,109.1623805,46.39031783,33.83741615,62.07389513,29.49266409,25.29900353,33.68632465,118.8193818,115.991479,121.6472845,52.97220813,49.75734866,56.1870676,113.9606493,112.640523,115.2807756,,,,7.6,,,,,0.168421053,,,,,0.132515993,349770,2639455,0.130360453,0.134671533,0.112276414,0.110228135,0.114324693,0.018380688,0.017504542,0.019256835,0.008831369,0.008206365,0.009456372,0.788106925,2532383,3213248,0.786200076,0.790013773,0.754274634,0.697663922,0.810885347,0.684561525,0.67115564,0.69796741,0.780290961,0.772026246,0.788555675,0.703729528,0.693061216,0.714397841,0.803328316,0.800061496,0.806595137,0.361,,3213248,0.35723218,0.36476782,74.12224169,,,74.0540385,74.19044489,118.901708,101.354394,136.449022,85.61242465,84.72614804,86.49870125,70.4402247,70.25665195,70.62379744,85.12404345,84.06059724,86.18748965,74.46856595,74.39187525,74.54525666,78.60010646,73.70816505,83.49204787,528.1700111,129488,19296552,525.182751,531.1572711,212.9571914,177.2507777,248.6636051,187.6195044,173.8168209,201.4221879,702.8696377,694.0374074,711.7018681,302.0232512,289.3887227,314.6577798,514.1880621,510.8236463,517.5524779,456.1339415,336.3171607,604.7674307,65.12240876,4388,6738080,63.1955352,67.04928232,,,,31.46053621,22.57662395,42.67976978,114.4083504,108.5517336,120.2649672,62.41664287,56.47545139,68.35783434,53.35839429,51.19131861,55.52546997,,,,6.878246021,3887,565115,6.662010764,7.094481278,,,,3.206130748,2.300774779,4.349478383,11.73836096,11.10025639,12.37646553,6.029465737,5.393219312,6.665712162,5.578162864,5.338090104,5.818235624,,,,9.927265579,7.991177883,11.86335328,0.131883307,,,0.119975089,0.144779031,0.185269799,,,0.170025949,0.201548465,0.122,,,0.112,0.133,318.1,18738,5890534,,,0.115,800970,,,,0.088729312,563085.5328,6346105,,,43.18738774,8936,20691226,42.29193756,44.08283791,28.79355025,16.77330409,46.10126322,5.523793742,3.461732129,8.363090107,46.17741234,43.9090411,48.44578358,18.33614242,15.93487772,20.73740712,46.31639909,45.23330124,47.39949694,,,,0.344324453,,,0.324532321,0.364671974,0.14591167,603411,4135454,0.141145713,0.150677628,0.0464153,73745,1588808,0.041649343,0.051181258,0.001755411,12378,7051339,,,569.6670706,0.893299043,63217.88,70769,,,0.073106252,26077,356700,0.068707923,0.077504581,2.993091452,,,,,,,2.600667409,,3.19564436,2.932998665,,,,,,,2.512793832,,3.111222121,0.291855994,,,,,-2125.334,,,,,0.806060388,44796,55574,0.798030601,0.814090175,65231,,,64239.68085,66222.31915,55022,46674.42553,63369.57447,94058,88612.89362,99503.10638,46708,45920.42553,47495.57447,56188,54366.21277,58009.78723,68793,68358.10638,69227.89362,,,,,,,,,,,66.80977733,,,,,0.259830743,,,,,9.033778476,,,,,9.102081265,4317,47428713,8.830558807,9.373603722,,,,2.972940524,1.942023454,4.356046685,33.4035017,32.13168322,34.67532017,7.824873316,6.761460919,8.888285713,3.983708149,3.774505092,4.192911207,,,,16.95665978,5985,34177220,16.51631979,17.39699978,17.5116642,11.33477917,5.182982806,21.51694158,8.452980019,6.331862089,11.05670599,7.874562517,7.139888634,8.609236399,8.158553689,6.743167239,9.573940138,19.76419041,19.20929457,20.31908625,,,,19.85533054,6786,34177220,19.38291273,20.32774835,,,,7.295553748,5.360498483,9.70153988,39.36702312,37.73927534,40.99477089,11.22421668,9.744372541,12.70406082,16.79872642,16.29188021,17.30557263,,,,16.57013126,7859,47428713,16.20377942,16.9364831,,,,5.602849449,4.145018867,7.407264105,19.8278144,18.8479487,20.8076801,11.47397289,10.18625725,12.76168853,16.78419464,16.35478229,17.21360698,,,,,,,,,,,0.600886814,3053851,5082240,,,,,,,,75.51509441,,,,,0.670585764,1819725,2713635,0.666355938,0.67481559,0.120331021,314411,2612884,0.11818829,0.122473753,0.857460565,2326835,2713635,0.854241959,0.860679171,7051339,,,,,0.218134031,1538137,7051339,,,0.173157042,1220989,7051339,,,0.16360297,1153620,7051339,,,0.005204969,36702,7051339,,,0.020765276,146423,7051339,,,0.001098231,7744,7051339,,,0.063748176,449510,7051339,,,0.729133431,5141367,7051339,,,0.015625544,101897,6521181,0.015013645,0.016237443,0.508978649,3588981,7051339,,,0.337666333,2333558,6910840,, -47,001,47001,TN,Anderson County,2024,1,12120.12917,1652,212270,11203.18284,13037.07551,0,,,,2,,,,2,13057.04215,8987.867024,18336.94174,,,,,2,12498.02217,11505.13055,13490.91379,,,,,2,,0.184,,,0.155,0.216,4.39104081,,,3.498171566,5.412001343,5.883634967,,,4.764117358,7.051774922,0.096146985,539,5606,0.088430025,0.103863946,0,,,,,,,0.127272727,0.083232284,0.17131317,0.076923077,0.045313257,0.108532897,0.097356016,0.089037798,0.105674234,,,,,,,0.211,,,0.168,0.26,0.383,,,0.307,0.46,7.6,0.026408468,0.138,,,0.31,,,0.256,0.368,0.660620049,50949,77123,,,0.151364906,,,0.120483895,0.188377245,0.196428571,11,56,0.129809148,0.270652646,277.1,215,77576,,,27.65286261,412,14899,24.98263944,30.32308577,,,,,,,36.28447025,23.48139601,53.56303585,18.65671642,10.44202255,30.77141651,28.0381255,25.11318057,30.96307043,,,,28.57142857,16.93323933,45.15517503,0.121296341,7463,61527,0.10580698,0.136785703,0.000502733,39,77576,,,1989.128205,0.000760331,60,78913,,,1315.216667,0.001140497,90,78913,,,876.8111111,2804,,,,,,,2831,,2796,0.43,,,,,,0.17,0.46,,0.44,0.56,,,,,,0.52,0.49,0.28,0.57,0.908710081,50109,55143,0.897015255,0.920404907,0.623350853,11623,18646,0.570686088,0.676015617,0.033248299,1173,35280,,,0.159,2572,,0.098234043,0.219765957,,,,0.056818182,0,0.398742543,0.178970917,0.048337545,0.309604289,0.235169492,0.115110199,0.355228784,0.17357413,0.13128772,0.21586054,4.532963459,118469,26135,3.880656363,5.185270555,0.268072105,4387,16365,0.211369785,0.324774426,14.95307827,116,77576,,,135.6369088,522,384851,124.001043,147.2727746,,,,,,,126.1452662,75.94769064,196.9914591,,,,144.6378794,131.8959405,157.3798182,,,,8.3,,,,,0,,,,,0.122065728,3770,30885,0.102148927,0.141982528,0.102279062,0.083182238,0.121375886,0.019103125,0.012272465,0.025933784,0.005342399,0.002684367,0.008000432,0.804603013,26115,32457,0.780499161,0.828706865,,,,0.875,0.792625396,0.957374604,0.741731518,0.67274689,0.810716145,0.586402266,0.451638271,0.721166262,0.852998404,0.837518633,0.868478174,0.387,,32457,0.348649587,0.425350413,73.27910482,,,72.61874214,73.93946749,,,,,,,70.89244696,67.77624239,74.00865153,89.97246548,70.36281771,109.5821132,72.98048712,72.27938971,73.68158454,,,,563.0735021,1652,212270,534.0929309,592.0540734,,,,,,,674.0311875,523.411591,854.4951394,,,,577.7651263,546.7470829,608.7831696,,,,56.11829737,40,71278,40.0917344,76.41719319,,,,,,,,,,,,,55.51443375,38.21358181,77.96290504,,,,8.094981112,45,5559,5.90453477,10.83172162,,,,,,,,,,,,,7.434944238,5.207343539,10.29309676,,,,,,,0.132,,,0.112,0.153,0.194,,,0.168,0.224,0.11,,,0.093,0.127,134.4,89,66228,,,0.138,10580,,,,0.026408468,1984.041783,75129,,,78.84124905,183,232112,67.4181479,90.2643502,,,,,,,,,,,,,84.92713252,72.34415248,97.51011256,,,,0.35,,,0.33,0.368,0.149306554,6750,45209,0.127859746,0.170753363,0.045417492,780,17174,0.031119619,0.059715364,0.001571351,124,78913,,,636.3951613,0.933144105,854.76,916,,,,,,,,2.983796451,,,,,,3.280419697,2.726004112,,3.012397248,2.780943495,,,,,,3.496293064,2.530614779,,2.793321616,0.07611443,,,,,-111.8386,,,,,0.841221462,43884,52167,0.759641298,0.922801626,64615,,,57556.61702,71673.38298,,,,54836,18981.70213,90690.29787,38591,33571.25532,43610.74468,69330,59226.17021,79433.82979,61346,58393.48936,64298.51064,,,,,,,,,,,54.65304709,,,,,0.285057649,,64615,,,12.39157373,50,4035,,,2.609330968,14,536536,1.426545521,4.378013986,,,,,,,,,,,,,2.509898412,1.296901135,4.384287419,,,,19.47627879,74,384851,15.15370743,24.64847732,19.22822079,,,,,,,,,,,,,20.76902358,16.06276134,26.42329033,,,,15.59044929,60,384851,11.89715525,20.06799863,,,,,,,,,,,,,16.36307322,12.36048966,21.24881163,,,,12.48751249,67,536536,9.677650656,15.85869944,,,,,,,,,,,,,12.96780846,9.942344389,16.6241452,,,,,,,,,,,0.602830269,35570,59005,,,0.692,,,,,50.80163165,,,,,0.698449241,21844,31275,0.679156459,0.717742023,0.108454114,3270,30151,0.089354119,0.12755411,0.877793765,27453,31275,0.862212175,0.893375355,78913,,,,,0.209547223,16536,78913,,,0.202526833,15982,78913,,,0.03830801,3023,78913,,,0.005385678,425,78913,,,0.014573011,1150,78913,,,0.001064463,84,78913,,,0.038295338,3022,78913,,,0.882642911,69652,78913,,,0.00812986,596,73310,0.003627029,0.01263269,0.506887332,40000,78913,,,0.365208822,28166,77123,, -47,003,47003,TN,Bedford County,2024,1,11553.69186,983,141909,10514.57994,12592.80378,0,,,,2,,,,2,10636.81231,7408.929505,14793.23101,,7431.056278,5232.149399,10242.73222,,12390.41646,11110.38052,13670.45239,,,,,2,,0.205,,,0.175,0.238,4.425045681,,,3.566248162,5.390930255,5.95936977,,,4.828912119,7.150339894,0.090794452,432,4758,0.082630422,0.098958481,0,,,,,,,0.157509158,0.114296573,0.200721743,0.074074074,0.059181523,0.088966625,0.091230324,0.081115391,0.101345258,,,,0.078740158,0.031897296,0.125583019,0.226,,,0.181,0.27,0.367,,,0.292,0.447,7.5,0.089272985,0.115,,,0.305,,,0.253,0.36,0.442681689,22239,50237,,,0.154777492,,,0.121124234,0.192912697,0.393939394,13,33,0.304721321,0.4796795,457.8,234,51119,,,40.25191676,441,10956,36.49507119,44.00876232,,,,,,,26.64796634,16.0438165,41.61410038,69.72391203,58.52838137,80.91944268,33.48961822,29.33820213,37.6410343,,,,45.14672686,27.57679365,69.72545802,0.147159829,6342,43096,0.128095999,0.166223659,0.000293433,15,51119,,,3407.933333,0.000250241,13,51950,,,3996.153846,0.000750722,39,51950,,,1332.051282,2445,,,,,,,1177,,2456,0.44,,,,,,,0.46,,0.44,0.45,,,,,,0.62,0.36,0.17,0.46,0.850260417,28732,33792,0.825045995,0.875474838,0.475332282,6330,13317,0.421725938,0.528938627,0.033963667,731,21523,,,0.179,2242,,0.112276596,0.245723404,,,,,,,0.319749216,0.064165958,0.575332475,0.281207133,0.15658117,0.405833096,0.202677106,0.138006328,0.267347884,3.550810015,106084,29876,3.051275584,4.050344446,0.30068319,3785,12588,0.229704819,0.371661561,7.433635243,38,51119,,,95.09763626,236,248166,82.96459171,107.2306808,,,,,,,,,,58.81078404,35.40793377,91.8403243,107.8435001,93.04441173,122.6425884,,,,7.6,,,,,1,,,,,0.146083476,2555,17490,0.116203613,0.17596334,0.117273253,0.08889799,0.145648515,0.031160663,0.018150269,0.044171058,0.006289308,0.000151035,0.012427581,0.756823821,17385,22971,0.735830926,0.777816717,,,,,,,0.892876864,0.783555912,1,0.503161222,0.431591194,0.574731251,0.747108593,0.701603962,0.792613223,0.363,,22971,0.316992462,0.409007538,73.05758623,,,72.28951813,73.82565434,,,,,,,73.85827589,71.32984287,76.38670891,86.71141298,70.01827678,103.4045492,72.34065244,71.43878711,73.24251777,,,,570.9475321,983,141909,534.2879257,607.6071385,,,,,,,538.9155106,417.6521185,684.4036485,352.1955994,230.0658586,516.0481552,598.7060507,556.972688,640.4394134,,,,78.02293511,43,55112,56.46558501,105.0963816,,,,,,,,,,88.34631757,44.10216342,158.0759659,84.02655239,56.69236205,119.9531283,,,,9.047824214,42,4642,6.520875858,12.2300299,,,,,,,,,,,,,10.9642051,7.593030759,15.32137765,,,,,,,0.139,,,0.118,0.16,0.192,,,0.165,0.218,0.117,,,0.099,0.136,154.4,65,42091,,,0.115,5730,,,,0.089272985,4022.462151,45058,,,35.75898445,54,151011,26.86324968,46.65771791,,,,,,,,,,,,,42.81831925,31.6772283,56.60808881,,,,0.364,,,0.349,0.378,0.183122696,5564,30384,0.15810142,0.208143973,0.063150798,843,13349,0.042895479,0.083406117,0.001039461,54,51950,,,962.037037,0.91,574.21,631,,,,,,,,2.768092534,,,,,,,2.401163739,2.397801095,2.983743176,2.593059011,,,,,,,1.961982607,2.401376102,2.777162935,0.106870533,,,,,-2994.623,,,,,0.760999641,38155,50138,0.664116709,0.857882573,70185,,,64969.85106,75400.14894,,,,,,,39272,27844.42553,50699.57447,51713,43534.61702,59891.38298,64074,58757.57447,69390.42553,,,,,,,,,,,31.97682576,,,,,0.195540358,,70185,,,9.85957574,33,3347,,,3.791933682,13,342833,2.019044984,6.484322081,,,,,,,,,,,,,,,,,,,21.46678921,54,248166,16.03242496,28.15083804,21.75962864,,,,,,,,,,,,,23.40001672,17.00248797,31.41343023,,,,18.93893604,47,248166,13.91561784,25.18477001,,,,,,,,,,,,,20.08849511,14.21581475,27.57302904,,,,15.75110914,54,342833,11.83271796,20.55178072,,,,,,,,,,,,,17.90203398,13.15374121,23.80591009,,,,,,,,,,,0.55016573,19088,34695,,,0.658,,,,,42.43128953,,,,,0.703773891,12998,18469,0.674859157,0.732688626,0.123505754,2211,17902,0.094173263,0.152838244,0.833667226,15397,18469,0.800509275,0.866825177,51950,,,,,0.246737247,12818,51950,,,0.152204042,7907,51950,,,0.077266603,4014,51950,,,0.01358999,706,51950,,,0.011164581,580,51950,,,0.001982676,103,51950,,,0.141366699,7344,51950,,,0.747218479,38818,51950,,,0.020086782,949,47245,0.010275385,0.029898179,0.500442733,25998,51950,,,0.551087844,27685,50237,, -47,005,47005,TN,Benton County,2024,1,13817.89475,466,43424,11650.45452,15985.33498,0,,,,2,,,,2,,,,2,,,,2,13961.64631,11703.73603,16219.55659,,,,,2,,0.221,,,0.188,0.259,4.797207563,,,3.834870184,5.838966551,6.389991933,,,5.18402471,7.662586213,0.07437276,83,1116,0.058978848,0.089766671,0,,,,,,,,,,,,,0.077669903,0.061324071,0.094015735,,,,,,,0.262,,,0.214,0.313,0.353,,,0.277,0.434,6.8,0.057688721,0.16,,,0.343,,,0.285,0.406,0.567385275,9001,15864,,,0.130771679,,,0.102407937,0.163538652,0.25,4,16,0.11917111,0.394165016,233.1,37,15872,,,35.73883162,104,2910,28.87004932,42.60761392,,,,,,,,,,,,,36.32236095,29.42122899,44.35581952,,,,,,,0.138347885,1648,11912,0.119284055,0.157411714,0.000252016,4,15872,,,3968,0.000249969,4,16002,,,4000.5,0.000437445,7,16002,,,2286,3059,,,,,,,,,3083,0.39,,,,,,,,,0.39,0.37,,,,,,,0.23,,0.37,0.846777672,9815,11591,0.817005258,0.876550087,0.474847805,1482,3121,0.386646644,0.563048966,0.0411547,278,6755,,,0.248,795,,0.15387234,0.34212766,,,,,,,,,,,,,0.237707818,0.166227137,0.309188498,4.412106014,89729,20337,3.614566464,5.209645563,0.230398458,717,3112,0.137868589,0.322928326,10.71068548,17,15872,,,155.6023054,125,80333,128.3240186,182.8805923,,,,,,,,,,,,,165.7726623,136.4761159,195.0692088,,,,7.3,,,,,0,,,,,0.110044313,745,6770,0.083124641,0.136963985,0.090687023,0.063394611,0.117979435,0.006646972,0,0.016163435,0.016986706,0.00649153,0.027481882,0.842646555,4916,5834,0.810214092,0.875079018,,,,,,,,,,,,,0.794066318,0.734422721,0.853709914,0.355,,5834,0.288255323,0.421744678,71.30006552,,,69.89226035,72.70787068,,,,,,,,,,,,,71.10795182,69.65954321,72.55636043,,,,680.2979868,466,43424,611.3627716,749.233202,,,,,,,,,,,,,692.5445324,620.2915003,764.7975645,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.15,,,0.128,0.174,0.211,,,0.183,0.241,0.12,,,0.101,0.139,139.5,19,13617,,,0.16,2530,,,,0.057688721,951.2293216,16489,,,37.37308723,18,48163,22.14966007,59.06559032,,,,,,,,,,,,,38.30813259,22.31589893,61.33503125,,,,0.348,,,0.331,0.364,0.169079923,1483,8771,0.144058646,0.194101199,0.053766707,177,3292,0.035894367,0.071639048,0.001374828,22,16002,,,727.3636364,0.975,128.7,132,,,,,,,,2.899259869,,,,,,,,,2.885753251,2.815049013,,,,,,,,,2.834067484,0.031980902,,,,,-5073.831,,,,,0.832723146,38894,46707,0.713761967,0.951684326,50635,,,44122.31915,57147.68085,,,,,,,,,,,,,48244,42913.2766,53574.7234,,,,,,,,,,,46.14877341,,,,,0.27103782,,50635,,,6.613756614,5,756,,,,,,,,,,,,,,,,,,,,,,,,,,26.69989717,24,80333,16.07508225,41.69519681,29.87564264,,,,,,,,,,,,,28.90187342,17.4008158,45.13385548,,,,31.12046108,25,80333,20.13952155,45.93993962,,,,,,,,,,,,,33.69363056,21.80474116,49.73844537,,,,32.89590668,37,112476,23.16175412,45.34267412,,,,,,,,,,,,,35.55333481,25.03282877,49.00558874,,,,,,,,,,,0.563008918,7260,12895,,,0.574,,,,,6.276071919,,,,,0.739311164,4980,6736,0.695774758,0.78284757,0.083746998,523,6245,0.052409973,0.115084022,0.751187649,5060,6736,0.717911331,0.784463966,16002,,,,,0.204286964,3269,16002,,,0.24215723,3875,16002,,,0.023684539,379,16002,,,0.008061492,129,16002,,,0.006311711,101,16002,,,0.000187477,3,16002,,,0.028621422,458,16002,,,0.918697663,14701,16002,,,0,0,15197,0,0.006585846,0.50599925,8097,16002,,,1,15864,15864,, -47,007,47007,TN,Bledsoe County,2024,1,8959.109113,285,42057,7148.14718,10770.07105,0,,,,2,,,,2,,,,2,,,,2,9823.799118,7788.413095,11859.18514,,,,,2,,0.228,,,0.195,0.265,4.896212422,,,3.951332773,5.998030846,5.817208788,,,4.688398404,7.101376085,0.083526682,72,862,0.065056339,0.101997025,0,,,,,,,,,,,,,0.0815822,0.062719682,0.100444718,,,,,,,0.265,,,0.221,0.314,0.375,,,0.298,0.457,7.1,0.018957479,0.165,,,0.329,,,0.276,0.388,0.288607255,4304,14913,,,0.147992916,,,0.117607635,0.18152347,0.434782609,10,23,0.328901221,0.532879371,879.6,134,15234,,,39.62818004,81,2044,31.47049511,49.25420948,,,,,,,,,,,,,41.50943396,32.75859615,51.87967035,,,,,,,0.180476731,1749,9691,0.154263965,0.206689497,0.000131285,2,15234,,,7617,0.000135153,2,14798,,,7399,0.000337884,5,14798,,,2959.6,1179,,,,,,,,,1071,0.49,,,,,,,,,0.48,0.35,,,,,,,,,0.35,0.781138012,8937,11441,0.739319181,0.822956844,0.266119295,1102,4141,0.20172835,0.33051024,0.052969502,231,4361,,,0.321,680,,0.224489362,0.417510638,,,,,,,,,,0.696,0.518231497,0.873768503,0.277265328,0.189140634,0.365390023,5.311910657,100836,18983,3.834428364,6.78939295,0.215416667,517,2400,0.085914819,0.344918514,4.594984902,7,15234,,,113.3439121,85,74993,90.53509128,140.1515026,,,,,,,,,,,,,123.1396038,97.7906201,153.0512841,,,,7.5,,,,,0,,,,,0.119294606,575,4820,0.079478177,0.159111035,0.074841438,0.044122179,0.105560697,0.019709544,0.005993976,0.033425111,0.024896266,0.002855919,0.046936612,0.782244861,4300,5497,0.722400123,0.842089599,,,,,,,,,,,,,0.69706499,0.61113653,0.782993449,0.522,,5497,0.411743769,0.632256231,76.53886879,,,74.99804971,78.07968787,,,,,,,,,,,,,75.66899254,74.031437,77.30654808,,,,452.9295735,285,42057,397.588215,508.2709321,,,,,,,,,,,,,486.5889031,425.6423036,547.5355026,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.149,,,0.129,0.171,0.197,,,0.17,0.225,0.123,,,0.106,0.144,210.8,29,13756,,,0.165,2460,,,,0.018957479,244.0964939,12876,,,24.16467125,11,45521,12.06291682,43.23727184,,,,,,,,,,,,,25.19970768,12.08423934,46.34315965,,,,0.368,,,0.351,0.384,0.213293131,1627,7628,0.179931428,0.246654833,0.060550459,132,2180,0.041486629,0.079614289,0.000675767,10,14798,,,1479.8,0.925,108.225,117,,,,,,,,3.005571103,,,,,,,,,3.056697711,2.817952105,,,,,,,,,2.87141086,0.036527234,,,,,-6808.066,,,,,0.670681415,34803,51892,0.380079466,0.961283364,46207,,,39284.44681,53129.55319,,,,,,,74063,67378.74468,80747.25532,26071,11007,41135,55551,45714.06383,65387.93617,,,,,,,,,,,,,,,,0.297011275,,46207,,,15.03759399,8,532,,,,,,,,,,,,,,,,,,,,,,,,,,21.16096319,17,74993,12.09531884,34.36407849,22.66878242,,,,,,,,,,,,,24.84297117,14.19990454,40.34342876,,,,16.00149347,12,74993,8.268205177,27.95138886,,,,,,,,,,,,,18.24290427,9.426374844,31.86668245,,,,23.99923203,25,104170,15.53103758,35.42760075,,,,,,,,,,,,,25.05937984,15.8854972,37.60137379,,,,,,,,,,,0.466046135,5758,12355,,,0.441,,,,,5.131624895,,,,,0.806431664,3912,4851,0.761098244,0.851765083,0.107932961,483,4475,0.069456992,0.14640893,0.791795506,3841,4851,0.745231455,0.838359558,14798,,,,,0.145830518,2158,14798,,,0.2117178,3133,14798,,,0.05466955,809,14798,,,0.007433437,110,14798,,,0.003176105,47,14798,,,0.000337884,5,14798,,,0.035680497,528,14798,,,0.884511421,13089,14798,,,0.005149185,73,14177,0,0.013023169,0.431679957,6388,14798,,,1,14913,14913,, -47,009,47009,TN,Blount County,2024,1,9619.641872,2411,370559,9003.059834,10236.22391,0,,,,2,,,,2,10901.5331,7856.866172,14735.7058,,4668.173576,2851.441696,7209.615476,1,10010.10656,9338.17501,10682.0381,,,,,2,,0.169,,,0.142,0.203,4.192240553,,,3.31798047,5.15013714,5.696822123,,,4.653646515,6.766925947,0.080567121,716,8887,0.074908411,0.08622583,0,,,,,,,0.165289256,0.118490027,0.212088486,0.065573771,0.044867233,0.086280308,0.078980892,0.073014434,0.08494735,,,,,,,0.196,,,0.155,0.245,0.323,,,0.262,0.393,8,0.08577096,0.095,,,0.261,,,0.211,0.314,0.577831165,78169,135280,,,0.145571676,,,0.11623021,0.179444125,0.22,22,100,0.1694519,0.273856305,305.2,420,137605,,,22.20986281,599,26970,20.43122084,23.98850478,,,,,,,30.06789525,20.42967602,42.67897721,34.91827637,25.65663608,46.43390516,21.58610981,19.70525533,23.46696428,,,,17.37967914,9.253947181,29.71978064,0.113499291,12251,107939,0.100392908,0.126605674,0.000683115,94,137605,,,1463.882979,0.000550165,77,139958,,,1817.636364,0.00162906,228,139958,,,613.8508772,2853,,,,,,,,,2871,0.44,,,,,,0.42,0.52,0.24,0.44,0.52,,,,,,0.52,0.48,0.32,0.52,0.904303978,88771,98165,0.895183647,0.913424309,0.577085533,18581,32198,0.536473903,0.617697164,0.031155595,2042,65542,,,0.12,3224,,0.077106383,0.162893617,,,,,,,0.304,0.086949842,0.521050158,0.243808476,0.129323557,0.358293394,0.075363359,0.057005721,0.093720998,3.725699943,124688,33467,3.496607843,3.954792044,0.192314839,5175,26909,0.154059503,0.230570175,10.46473602,144,137605,,,107.0911114,714,666722,99.23585457,114.9463683,,,,,,,56.83285973,28.37075881,101.6896849,,,,114.6739652,106.1360019,123.2119285,,,,6.6,,,,,0,,,,,0.108824963,5580,51275,0.094850866,0.122799061,0.086300424,0.073394765,0.099206083,0.020575329,0.013330944,0.027819714,0.007118479,0.003740768,0.01049619,0.824496805,53293,64637,0.806213767,0.842779843,,,,,,,0.934187738,0.869512728,0.998862748,0.79943662,0.691593219,0.907280021,0.815433481,0.798259038,0.832607923,0.373,,64637,0.345286664,0.400713336,75.84492456,,,75.36128633,76.32856279,,,,,,,73.97948662,71.24204012,76.71693312,85.56298632,80.07568703,91.0502856,75.48619627,74.97322984,75.99916269,,,,455.5241048,2411,370559,435.9805653,475.0676443,,,,,,,605.1118052,479.816028,753.1140213,235.2184712,147.4101636,356.1235922,466.6068596,445.8310071,487.3827121,,,,48.90965207,58,118586,37.13914938,63.22706706,,,,,,,,,,,,,54.60466225,41.13570447,71.07547355,,,,5.214828251,46,8821,3.817909694,6.955850098,,,,,,,,,,,,,5.236270754,3.757638297,7.103592537,,,,,,,0.122,,,0.103,0.143,0.185,,,0.159,0.215,0.103,,,0.087,0.12,108.6,129,118778,,,0.095,12680,,,,0.08577096,10550.68579,123010,,,50.80849636,206,405444,43.87010483,57.7468879,,,,,,,,,,,,,54.27149383,46.73097361,61.81201405,,,,0.326,,,0.306,0.343,0.136408134,11008,80699,0.118535794,0.154280474,0.047311678,1356,28661,0.033013806,0.06160955,0.00144329,202,139958,,,692.8613861,0.950176056,1214.325,1278,,,0.09740827,669,6868,0.049303008,0.145513532,3.094131605,,,,,,,2.81458142,2.651721955,3.135554003,2.996677946,,,,,,,2.611577158,2.465533932,3.051444963,0.06673902,,,,,1367.391033,,,,,0.719508465,39991,55581,0.679230345,0.759786585,69713,,,64782.61702,74643.38298,66953,58699.55319,75206.44681,,,,71276,48182.55319,94369.44681,52852,41230.21277,64473.78723,71723,69026.65957,74419.34043,,,,,,,,,,,50.42395555,,,,,0.26421184,,69713,,,10.76246779,71,6597,,,3.034753345,28,922645,2.016571559,4.386063539,,,,,,,,,,,,,3.103351142,2.027211999,4.547128455,,,,18.32393546,131,666722,15.0269008,21.62097012,19.64836919,,,,,,,,,,,,,19.78533458,16.15563186,23.4150373,,,,13.94884225,93,666722,11.25851595,17.08827413,,,,,,,,,,,,,14.72724806,11.8271895,18.123146,,,,12.13901338,112,922645,9.89083664,14.38719012,,,,,,,,,,,,,13.01020286,10.56774607,15.45265966,,,,,,,,,,,0.646595156,66609,103015,,,0.705,,,,,42.86910732,,,,,0.762533673,40762,53456,0.746940864,0.778126481,0.089440922,4641,51889,0.077534718,0.101347126,0.860277612,45987,53456,0.845117289,0.875437934,139958,,,,,0.196401778,27488,139958,,,0.212963889,29806,139958,,,0.028701468,4017,139958,,,0.004880035,683,139958,,,0.009810086,1373,139958,,,0.00122894,172,139958,,,0.042855714,5998,139958,,,0.898641021,125772,139958,,,0.007119446,921,129364,0.004427814,0.009811078,0.508038126,71104,139958,,,0.372006209,50325,135280,, -47,011,47011,TN,Bradley County,2024,1,10450.18828,2086,303350,9782.422798,11117.95376,0,,,,2,,,,2,12461.38767,9388.904055,15533.87129,,6504.344892,4555.563198,9004.755001,,10670.48389,9940.521382,11400.44639,,,,,2,,0.183,,,0.152,0.216,4.51965831,,,3.564846916,5.494771275,6.06171024,,,4.945177771,7.170688331,0.083145534,701,8431,0.077251859,0.08903921,0,,,,0.097560976,0.045122445,0.149999507,0.141230068,0.108651964,0.173808173,0.079333986,0.062756301,0.095911672,0.079161641,0.072663593,0.085659688,,,,0.102409639,0.056287277,0.148532,0.209,,,0.167,0.253,0.402,,,0.336,0.467,6.9,0.123687717,0.127,,,0.288,,,0.234,0.339,0.784477997,85210,108620,,,0.146312821,,,0.116707201,0.177414508,0.241935484,15,62,0.176614669,0.311271323,435.7,480,110162,,,23.49271528,595,25327,21.60502473,25.38040584,,,,,,,21.9858156,14.93829502,31.20711029,40.37800687,32.62953969,49.41245435,22.04825844,19.99969057,24.0968263,,,,27.05749718,17.33624899,40.25941104,0.132511851,11797,89026,0.117022489,0.148001212,0.00048111,53,110162,,,2078.528302,0.000479135,53,110616,,,2087.09434,0.001374123,152,110616,,,727.7368421,3106,,,,,,,6133,,3057,0.42,,,,,,0.41,0.49,0.14,0.42,0.42,,,,,,0.25,0.36,0.22,0.43,0.88196818,65801,74607,0.870824931,0.893111429,0.611482617,16551,27067,0.564693633,0.658271601,0.036065443,1812,50242,,,0.174,4051,,0.120382979,0.227617021,,,,0.161971831,0,0.718939024,0.156502572,0.07231885,0.240686293,0.18561001,0.067500504,0.303719517,0.157137966,0.121028296,0.193247637,4.367181613,115905,26540,3.958735638,4.775627587,0.251739352,5934,23572,0.199864168,0.303614536,12.9808827,143,110162,,,91.1735819,492,539630,83.11715377,99.23001003,,,,,,,87.78625954,55.64895816,131.722492,56.01927063,34.21802584,86.51722005,97.43536208,88.41272128,106.4580029,,,,8.9,,,,,0,,,,,0.131230052,5345,40730,0.110366465,0.152093639,0.106887121,0.088475658,0.125298583,0.020869138,0.014145515,0.027592761,0.007856617,0.003619224,0.01209401,0.815115553,40455,49631,0.791925083,0.838306022,,,,,,,0.754785308,0.691084198,0.818486418,0.73922701,0.669467217,0.808986803,0.82173735,0.79163165,0.851843051,0.298,,49631,0.270312289,0.325687711,74.25748534,,,73.74863434,74.76633634,,,,,,,72.44012608,69.92277683,74.95747532,79.54815734,76.65942556,82.43688913,73.98206845,73.44014053,74.52399637,,,,530.3777595,2086,303350,506.7295927,554.0259263,,,,,,,666.4973165,541.3865758,791.6080571,289.6115217,204.9463496,397.5144407,544.5419646,518.9362858,570.1476433,,,,40.40479971,43,106423,29.2411539,54.42500006,,,,,,,,,,,,,35.20015537,23.57409649,50.55329478,,,,3.701934559,31,8374,2.515284927,5.254600609,,,,,,,,,,,,,3.168854685,1.961570995,4.843931,,,,,,,0.132,,,0.113,0.153,0.187,,,0.162,0.215,0.111,,,0.094,0.129,142.3,133,93452,,,0.127,13660,,,,0.123687717,12240.50753,98963,,,32.99291569,108,327343,26.7704159,39.21541548,,,,,,,,,,,,,35.9940106,28.93918452,43.04883667,,,,0.337,,,0.321,0.354,0.165041857,10784,65341,0.143595049,0.186488666,0.045192308,1128,24960,0.030894435,0.05949018,0.001455486,161,110616,,,687.0559006,0.942925801,1118.31,1186,,,0.107579462,660,6135,0.046140447,0.169018477,3.067472709,,,,,,3.297800351,2.755233811,,3.196368274,2.908909,,,,,,3.310456806,2.52118896,,3.024251163,0.083467937,,,,,-628.222,,,,,0.774962686,41018,52929,0.721653311,0.828272061,62666,,,57437.74468,67894.25532,49813,46563.80851,53062.19149,93092,19013.53192,167170.4681,47625,36371.38298,58878.61702,60000,47867.06383,72132.93617,62107,58644.53192,65569.46809,,,,,,,,,,,47.63830051,,,,,0.29392334,,62666,,,8.90648194,54,6063,,,4.811476976,36,748211,3.369899322,6.661112238,,,,,,,,,,,,,4.843628909,3.291010847,6.875144606,,,,15.61448129,90,539630,12.45472179,19.33179032,16.67809425,,,,,,,,,,,,,17.42868533,13.81986353,21.69150755,,,,13.3424754,72,539630,10.43966527,16.8026396,,,,,,,,,,,,,14.35431674,11.10162752,18.2622104,,,,13.6325181,102,748211,10.98687006,16.27816614,,,,,,,,,,,,,14.53088673,11.72830097,17.80131794,,,,,,,,,,,0.571241749,45865,80290,,,0.681,,,,,57.553997,,,,,0.679777455,28102,41340,0.662612503,0.696942408,0.116583494,4649,39877,0.097801439,0.13536555,0.858466376,35489,41340,0.842754646,0.874178106,110616,,,,,0.214390323,23715,110616,,,0.176927388,19571,110616,,,0.04911586,5433,110616,,,0.007177985,794,110616,,,0.01308129,1447,110616,,,0.001500687,166,110616,,,0.074130325,8200,110616,,,0.841460548,93079,110616,,,0.013647063,1403,102806,0.009456592,0.017837535,0.511652925,56597,110616,,,0.319480759,34702,108620,, -47,013,47013,TN,Campbell County,2024,1,16344.55306,1150,108763,14899.12695,17789.97917,0,,,,2,,,,2,,,,2,,,,2,16747.18105,15249.01343,18245.34867,,,,,2,,0.225,,,0.189,0.264,4.918938506,,,3.920561402,5.99915589,6.782612335,,,5.587057822,8.056701153,0.091617934,282,3078,0.081426242,0.101809626,0,,,,,,,,,,,,,0.092338575,0.081959787,0.102717363,,,,,,,0.267,,,0.216,0.319,0.406,,,0.327,0.488,6.5,0.063311178,0.174,,,0.338,,,0.28,0.395,0.452052353,17753,39272,,,0.140246505,,,0.110541583,0.174087625,0.25,8,32,0.157795866,0.348940352,293.1,116,39578,,,38.89831615,298,7661,34.481811,43.3148213,,,,,,,,,,,,,40.48638939,35.85051875,45.12226003,,,,,,,0.136183127,4218,30973,0.118310787,0.154055468,0.000353732,14,39578,,,2827,0.000328416,13,39584,,,3044.923077,0.000581043,23,39584,,,1721.043478,2707,,,,,,,,,2698,0.35,,,,,,,,,0.36,0.41,,,,,,,,,0.41,0.81170797,23059,28408,0.789333763,0.834082177,0.414313854,3786,9138,0.353643627,0.474984081,0.041304638,618,14962,,,0.268,2132,,0.17506383,0.36093617,,,,,,,,,,0.328767123,0.075029108,0.582505139,0.222612929,0.168690601,0.276535258,4.929187896,94808,19234,4.271478268,5.586897525,0.222593005,1801,8091,0.156542818,0.288643191,9.348628026,37,39578,,,123.4331547,245,198488,107.9768789,138.8894304,,,,,,,,,,,,,126.7918518,110.8168935,142.7668101,,,,7.9,,,,,0,,,,,0.118772783,1955,16460,0.093006599,0.144538966,0.084715347,0.063279231,0.106151462,0.02399757,0.006491433,0.041503707,0.013669502,0.006100841,0.021238162,0.837743686,12505,14927,0.795169798,0.880317574,,,,,,,,,,,,,0.809006211,0.760248572,0.857763851,0.475,,14927,0.413861385,0.536138615,69.97981215,,,69.06600214,70.89362216,,,,,,,,,,,,,69.62677212,68.69350508,70.56003917,,,,765.0011749,1150,108763,717.6852938,812.3170559,,,,,,,,,,,,,780.7706123,732.0319699,829.5092547,,,,73.12819936,26,35554,47.76976772,107.1497555,,,,,,,,,,,,,77.56794654,50.66995798,113.6550138,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.154,,,0.131,0.176,0.213,,,0.183,0.241,0.121,,,0.103,0.14,85.7,29,33856,,,0.174,6870,,,,0.063311178,2577.777906,40716,,,46.1188861,55,119257,34.74305657,60.03006949,,,,,,,,,,,,,45.41564045,33.91857255,59.55657019,,,,0.357,,,0.339,0.374,0.167905743,3862,23001,0.144075956,0.191735531,0.045856222,384,8374,0.031558349,0.060154094,0.001919968,76,39584,,,520.8421053,0.9,329.4,366,,,,,,,,2.733706484,,,,,,,,,2.734303659,2.477024319,,,,,,,,,2.471719716,0.059648662,,,,,-2929.824,,,,,0.72705093,35760,49185,0.59957725,0.854524611,44268,,,39534.21277,49001.78723,,,,,,,,,,55854,15376.7234,96331.2766,47750,42441.91489,53058.08511,,,,,,,,,,,,,,,,0.310020783,,44268,,,11.13089938,25,2246,,,5.036804651,14,277954,2.753667973,8.450902351,,,,,,,,,,,,,5.231571788,2.860148979,8.777688513,,,,28.02026067,54,198488,20.79717756,36.9412205,27.2056749,,,,,,,,,,,,,29.13472802,21.6243567,38.41050676,,,,22.67139575,45,198488,16.53667163,30.33611125,,,,,,,,,,,,,23.57699723,17.19722357,31.54787728,,,,21.22653389,59,277954,16.15862108,27.38068219,,,,,,,,,,,,,22.04733825,16.78345539,28.43946001,,,,,,,,,,,0.47353734,14933,31535,,,0.529,,,,,40.29655919,,,,,0.673269763,10944,16255,0.644295185,0.702244341,0.102394394,1578,15411,0.079207291,0.125581496,0.736450323,11971,16255,0.707902838,0.764997808,39584,,,,,0.204931285,8112,39584,,,0.206320736,8167,39584,,,0.004850445,192,39584,,,0.003385206,134,39584,,,0.004395715,174,39584,,,0.000909458,36,39584,,,0.018391269,728,39584,,,0.956901779,37878,39584,,,0.002231423,83,37196,0,0.006085209,0.504218876,19959,39584,,,0.487828478,19158,39272,, -47,015,47015,TN,Cannon County,2024,1,15517.53695,331,40693,13029.26448,18005.80943,0,,,,2,,,,2,,,,2,,,,2,16478.68762,13804.01118,19153.36405,,,,,2,,0.2,,,0.169,0.234,4.53084035,,,3.648786165,5.610288629,6.177361635,,,5.023401817,7.448000867,0.089390142,107,1197,0.073227216,0.105553068,0,,,,,,,,,,,,,0.085944494,0.069507409,0.102381579,,,,,,,0.238,,,0.191,0.285,0.357,,,0.28,0.445,7.9,0.007438386,0.135,,,0.305,,,0.251,0.364,,,14506,,,0.151702481,,,0.119611347,0.188386384,0.571428571,12,21,0.476991863,0.652994015,384.8,56,14553,,,31.42536476,84,2673,25.06610166,38.90673991,,,,,,,,,,,,,31.03307472,24.45053323,38.84252061,,,,,,,0.125903513,1498,11898,0.108031173,0.143775854,0.000206143,3,14553,,,4851,0.000338112,5,14788,,,2957.6,0.000202867,3,14788,,,4929.333333,3828,,,,,,,,,3811,0.45,,,,,,,,,0.45,0.43,,,,,,,0.33,,0.43,0.856119287,8842,10328,0.826618479,0.885620095,0.509387755,1872,3675,0.420971169,0.597804342,0.030307446,208,6863,,,0.171,534,,0.101893617,0.240106383,,,,,,,0.329896907,0,0.945658601,0.436619718,0,0.880237923,0.175895766,0.098373641,0.25341789,5.351798159,105211,19659,3.865028039,6.838568279,0.186834463,579,3099,0.115087234,0.258581691,6.871435443,10,14553,,,160.8114795,117,72756,131.6721075,189.9508515,,,,,,,,,,,,,170.3302351,139.3332951,201.3271751,,,,7.3,,,,,0,,,,,0.130824373,730,5580,0.091319394,0.170329351,0.097069597,0.05857415,0.135565044,0.029569893,0.010099405,0.04904038,0.017921147,0.00192796,0.033914334,0.842850326,5299,6287,0.808891596,0.876809057,,,,,,,,,,,,,0.789078783,0.684189894,0.893967672,0.627,,6287,0.523005433,0.730994568,71.5628468,,,69.87134348,73.25435011,,,,,,,,,,,,,70.77491139,69.01111989,72.5387029,,,,639.75266,331,40693,566.6968174,712.8085027,,,,,,,,,,,,,669.0297536,591.7474857,746.3120216,,,,95.51800147,13,13610,50.85931294,163.3386915,,,,,,,,,,,,,106.1137866,56.50112228,181.4578069,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.14,,,0.12,0.162,0.2,,,0.173,0.23,0.111,,,0.094,0.129,211.2,26,12311,,,0.135,1930,,,,0.007438386,102.6571675,13801,,,63.52375335,28,44078,42.21107277,91.80951029,,,,,,,,,,,,,67.97271381,45.16737469,98.23949686,,,,0.342,,,0.324,0.359,0.149448801,1315,8799,0.125619014,0.173278588,0.060185185,195,3240,0.041121355,0.079249015,0.000540979,8,14788,,,1848.5,0.875,120.75,138,,,,,,,,2.885116643,,,,,,,,,2.886274202,2.748594187,,,,,,,,,2.772700601,0.014953372,,,,,-3398.056,,,,,0.730609943,41457,56743,0.619172645,0.842047241,63155,,,55991.76596,70318.23404,,,,,,,,,,,,,58168,49646.46809,66689.53192,,,,,,,,,,,20.6854765,,,,,0.217306627,,63155,,,11.40684411,9,789,,,,,,,,,,,,,,,,,,,,,,,,,,32.95872638,21,72756,20.13204631,50.90207977,28.86359888,,,,,,,,,,,,,35.24134014,21.5263261,54.4273916,,,,21.99131343,16,72756,12.56993575,35.71251525,,,,,,,,,,,,,23.49382553,13.42875124,38.15250077,,,,29.81425718,30,100623,20.11555412,42.56170597,,,,,,,,,,,,,31.80122117,21.45615038,45.39822061,,,,,,,,,,,0.587281684,6557,11165,,,0.617,,,,,14.72867591,,,,,0.765643959,4417,5769,0.719875784,0.811412134,0.099755317,530,5313,0.061955257,0.137555378,0.749869995,4326,5769,0.702595395,0.797144595,14788,,,,,0.214971599,3179,14788,,,0.182377604,2697,14788,,,0.020151474,298,14788,,,0.005950771,88,14788,,,0.004936435,73,14788,,,0.000946714,14,14788,,,0.030700568,454,14788,,,0.92351907,13657,14788,,,0.003512881,48,13664,0,0.011019596,0.495942656,7334,14788,,,1,14506,14506,, -47,017,47017,TN,Carroll County,2024,1,12665.11357,707,76684,11126.13726,14204.08988,0,,,,2,,,,2,19547.02927,13188.29857,27904.59972,,,,,2,12476.61886,10826.10337,14127.13436,,,,,2,,0.202,,,0.176,0.231,4.544210651,,,3.921436518,5.212758552,6.187545736,,,5.435887075,6.960421351,0.083916084,180,2145,0.072182447,0.095649721,0,,,,,,,0.210227273,0.150027433,0.270427112,0.137931035,0.065471015,0.210391054,0.070918087,0.059121803,0.082714371,,,,,,,0.229,,,0.193,0.266,0.372,,,0.328,0.416,7.6,0.034253596,0.137,,,0.294,,,0.258,0.332,0.258755274,7359,28440,,,0.147240772,,,0.128149036,0.168335303,0.166666667,4,24,0.070875168,0.286798115,503,143,28432,,,28.07843137,179,6375,23.9650176,32.19184514,,,,,,,24.3902439,15.285236,36.92712238,,,,27.71458118,23.02199786,32.40716449,,,,55.08474576,29.33030717,94.19659287,0.109652974,2373,21641,0.094163612,0.125142335,0.000351716,10,28432,,,2843.2,0.000316256,9,28458,,,3162,0.000491953,14,28458,,,2032.714286,2522,,,,,,,1872,,2468,0.37,,,,,,,0.4,,0.37,0.39,,,,,,,0.29,,0.39,0.887286957,17232,19421,0.869944069,0.904629846,0.557283402,3512,6302,0.485925209,0.628641595,0.03873119,453,11696,,,0.23,1406,,0.153744681,0.306255319,,,,,,,0.206798867,0,0.573328291,0.335384615,0.070417184,0.600352046,0.226134745,0.16317891,0.289090579,5.358294755,105328,19657,4.211873644,6.504715866,0.216264377,1335,6173,0.142098943,0.290429812,13.36522229,38,28432,,,102.9615753,144,139858,86.14451801,119.7786326,,,,,,,94.01214926,50.05751006,160.7636384,,,,110.2311462,91.28204052,129.180252,,,,7.6,,,,,0,,,,,0.094133697,1035,10995,0.070915821,0.117351574,0.081081081,0.056736835,0.105425327,0.010732151,0.002792738,0.018671564,0.008640291,0.001973315,0.015307267,0.781077824,9073,11616,0.75269125,0.809464397,,,,,,,,,,,,,0.777309745,0.679165231,0.875454258,0.385,,11616,0.332183278,0.437816722,71.81044755,,,70.76529707,72.85559802,,,,,,,66.7428976,62.65360317,70.83219204,,,,71.91079652,70.79143192,73.03016111,,,,645.1533808,707,76684,594.2735279,696.0332337,,,,,,,837.2876431,655.1260142,1054.425216,,,,645.3999574,590.7027526,700.0971622,,,,68.04913864,19,27921,40.97002673,106.2671594,,,,,,,,,,,,,59.30656934,31.57825042,101.4160398,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.138,,,0.122,0.154,0.196,,,0.176,0.216,0.117,,,0.105,0.129,120.9,29,23983,,,0.137,3880,,,,0.034253596,976.9810715,28522,,,11.90788064,10,83978,5.710291619,21.89901646,,,,,,,,,,,,,,,,,,,0.36,,,0.343,0.376,0.139475909,2145,15379,0.1180291,0.160922717,0.037827944,248,6556,0.024721561,0.050934327,0.002002952,57,28458,,,499.2631579,0.914715719,273.5,299,,,,,,,,3.055518096,,,,,,,2.710550933,,3.124482994,2.896766959,,,,,,,2.415145458,,2.986312342,0.032188719,,,,,-4619.1648,,,,,0.828193176,38911,46983,0.701669731,0.954716622,52680,,,47274.21277,58085.78723,29063,7783,50343,,,,31224,19577.19149,42870.80851,108750,41162.76596,176337.234,51837,46366.87234,57307.12766,,,,,,,,,,,21.8369331,,,,,0.260516325,,52680,,,9.85915493,14,1420,,,7.147962831,14,195860,3.907857795,11.99306705,,,,,,,,,,,,,6.044450892,2.898549148,11.1159604,,,,19.09819064,29,139858,12.4755722,27.98327426,20.73531725,,,,,,,,,,,,,17.72631425,10.97286791,27.09655432,,,,20.73531725,29,139858,13.88676739,29.77937439,,,,,,,,,,,,,19.50243357,12.36286994,29.26322595,,,,22.46502604,44,195860,16.32312231,30.15824889,,,,,,,,,,,,,24.78224866,17.7841695,33.61991862,,,,,,,,,,,0.547608096,11905,21740,,,0.617,,,,,11.28424871,,,,,0.7453343,8227,11038,0.718213871,0.772454729,0.089026718,933,10480,0.064419857,0.113633578,0.773328502,8536,11038,0.740016469,0.806640535,28458,,,,,0.217829784,6199,28458,,,0.20110338,5723,28458,,,0.097687821,2780,28458,,,0.006289971,179,28458,,,0.004532996,129,28458,,,0.00070279,20,28458,,,0.032644599,929,28458,,,0.838955654,23875,28458,,,0.002045218,55,26892,0,0.006386117,0.506219692,14406,28458,,,0.821026723,23350,28440,, -47,019,47019,TN,Carter County,2024,1,12290.95489,1377,152567,11164.00321,13417.90658,0,,,,2,,,,2,,,,2,,,,2,12659.00616,11472.51294,13845.49937,,,,,2,,0.204,,,0.172,0.243,4.645050089,,,3.688211858,5.6200887,6.417166611,,,5.237693758,7.599915578,0.091076357,297,3261,0.081201127,0.100951586,0,,,,,,,,,,,,,0.090584416,0.080447901,0.10072093,,,,,,,0.235,,,0.187,0.284,0.384,,,0.31,0.464,5.2,0.230505429,0.153,,,0.294,,,0.241,0.348,0.870714742,49070,56356,,,0.137668824,,,0.10966576,0.170439434,0.384615385,15,39,0.302723935,0.46404485,299.3,168,56134,,,26.10658553,266,10189,22.96921851,29.24395256,,,,,,,,,,31.44654088,15.07983867,57.83130831,26.87594066,23.54436454,30.20751678,,,,,,,0.134901483,5758,42683,0.115837653,0.153965313,0.000302847,17,56134,,,3302,0.000354547,20,56410,,,2820.5,0.000549548,31,56410,,,1819.677419,3991,,,,,,,,,3955,0.5,,,,,,,,,0.5,0.4,,,,,,,,,0.4,0.874378908,36779,42063,0.859333231,0.889424585,0.577955759,7577,13110,0.523365935,0.632545583,0.036367415,875,24060,,,0.243,2331,,0.161978723,0.324021277,,,,,,,0.84501845,0.654735174,1,0.312260536,0.069900815,0.554620258,0.256497948,0.206974722,0.306021174,4.858160358,95492,19656,4.319922771,5.396397945,0.243741376,2473,10146,0.193650874,0.293831878,14.25161221,80,56134,,,112.8531986,318,281782,100.4493521,125.2570451,,,,,,,,,,,,,116.8672073,103.8784218,129.8559927,,,,7,,,,,0,,,,,0.105855387,2540,23995,0.085502215,0.126208558,0.094254823,0.07443428,0.114075366,0.007918316,0.003681762,0.012154871,0.007501563,0.003162503,0.011840623,0.839789428,19143,22795,0.81286696,0.866711895,,,,,,,,,,,,,0.785544218,0.738361646,0.832726789,0.328,,22795,0.289520243,0.366479757,73.1036373,,,72.30295589,73.90431871,,,,,,,,,,,,,72.72812753,71.89811505,73.55814002,,,,594.4750175,1377,152567,560.2856762,628.6643587,,,,,,,,,,,,,608.8089988,573.2539234,644.3640742,,,,71.52276436,32,44741,48.92151787,100.9688028,,,,,,,,,,,,,76.64350879,52.07554572,108.7893429,,,,6.931886679,23,3318,4.39422153,10.40123354,,,,,,,,,,,,,7.327174259,4.644799948,10.994359,,,,,,,0.143,,,0.123,0.166,0.203,,,0.176,0.232,0.119,,,0.102,0.138,85.1,42,49370,,,0.153,8610,,,,0.230505429,13236.54378,57424,,,32.55535891,55,168943,24.52515166,42.37527449,,,,,,,,,,,,,34.53493994,26.01644301,44.9519713,,,,0.364,,,0.345,0.383,0.164960078,5413,32814,0.141130291,0.188789865,0.036987223,385,10409,0.025072329,0.048902116,0.000921822,52,56410,,,1084.807692,0.904386555,538.11,595,,,,,,,,3.017391221,,,,,,,,2.58272128,3.039124868,2.663319533,,,,,,,,2.345966652,2.690712061,0.050315371,,,,,-1537.529,,,,,0.832639521,38403,46122,0.749381654,0.915897389,48912,,,43412.08511,54411.91489,14107,1429.553192,26784.44681,,,,32159,22777.21277,41540.78723,26587,3383.93617,49790.06383,49019,45807.93617,52230.06383,,,,,,,,,,,64.58440417,,,,,0.280585541,,48912,,,12.44296972,30,2411,,,3.546368772,14,394770,1.938832808,5.9502042,,,,,,,,,,,,,3.481427921,1.853713744,5.953347773,,,,22.34736948,66,281782,17.01185306,28.82647844,23.42236197,,,,,,,,,,,,,23.14173471,17.5724894,29.9160585,,,,19.1637507,54,281782,14.39639933,25.00453769,,,,,,,,,,,,,19.16471888,14.269392,25.19806601,,,,12.91891481,51,394770,9.618980631,16.98598713,,,,,,,,,,,,,13.39010739,9.938395795,17.65318729,,,,,,,,,,,0.538996479,24492,45440,,,0.645,,,,,33.12858804,,,,,0.733291562,17555,23940,0.711809027,0.754774097,0.091269666,2071,22691,0.071869723,0.11066961,0.783876358,18766,23940,0.761924488,0.805828228,56410,,,,,0.175873072,9921,56410,,,0.23081014,13020,56410,,,0.016982805,958,56410,,,0.004697749,265,56410,,,0.004839568,273,56410,,,0.000815458,46,56410,,,0.030845595,1740,56410,,,0.924747385,52165,56410,,,0.004342662,234,53884,0.000683102,0.008002222,0.504715476,28471,56410,,,0.407374548,22958,56356,, -47,021,47021,TN,Cheatham County,2024,1,11567.6301,842,116565,10375.41989,12759.8403,0,,,,2,,,,2,17158.68741,9380.814074,28789.36187,1,,,,2,11904.15302,10635.44373,13172.86232,,,,,2,,0.174,,,0.144,0.206,4.13459556,,,3.288175322,5.103379593,6.156184188,,,4.969371479,7.385482563,0.088116662,284,3223,0.078330225,0.097903098,0,,,,,,,,,,,,,0.086775425,0.076495934,0.097054916,,,,,,,0.205,,,0.16,0.252,0.334,,,0.261,0.418,8.7,0.014028548,0.097,,,0.277,,,0.226,0.334,0.549888002,22585,41072,,,0.169538513,,,0.133433363,0.208972919,0.276595745,13,47,0.200439744,0.355686128,267.3,111,41523,,,18.67766701,163,8727,15.81028935,21.54504467,,,,,,,,,,,,,18.04778851,15.07929645,21.01628058,,,,47.84688995,22.94444352,87.99213417,0.131333638,4593,34972,0.114652787,0.148014489,0.000577993,24,41523,,,1730.125,0.000143438,6,41830,,,6971.666667,0.000860626,36,41830,,,1161.944444,2838,,,,,,,2135,,2812,0.36,,,,,,,0.29,,0.36,0.47,,,,,,,0.26,,0.47,0.889468303,26097,29340,0.869472646,0.909463959,0.570233957,6069,10643,0.514044736,0.626423177,0.026584686,601,22607,,,0.117,1011,,0.070531915,0.163468085,,,,,,,0.362962963,0.091846291,0.634079635,0.053211009,0,0.143541897,0.094452574,0.051464063,0.137441085,3.548847274,132844,37433,3.1265849,3.971109648,0.203330313,1795,8828,0.149571803,0.257088823,7.224911495,30,41523,,,145.5454278,297,204060,128.9924393,162.0984163,,,,,,,,,,,,,153.0152535,135.3121321,170.718375,,,,7.8,,,,,0,,,,,0.094351943,1445,15315,0.074558068,0.114145817,0.067040951,0.049909715,0.084172188,0.02187398,0.010154594,0.033593366,0.006856024,0.001801597,0.01191045,0.758990691,15491,20410,0.72840928,0.789572102,,,,,,,,,,,,,0.658723581,0.606781948,0.710665213,0.648,,20410,0.597674558,0.698325442,72.84261636,,,71.98411121,73.70112151,,,,,,,,,,,,,72.53330097,71.63554134,73.4310606,,,,547.4457704,842,116565,508.7529189,586.1386219,,,,,,,734.1593917,460.0937821,1111.526142,,,,562.7449429,521.9572131,603.5326726,,,,51.29388833,20,38991,31.33163957,79.21925035,,,,,,,,,,,,,52.55474453,31.14727235,83.05915407,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.124,,,0.106,0.146,0.183,,,0.157,0.211,0.101,,,0.087,0.119,209.1,74,35394,,,0.097,3970,,,,0.014028548,548.5863717,39105,,,80.29783196,99,123291,65.26211553,97.75972922,,,,,,,,,,,,,83.40135572,67.39678497,102.0621373,,,,0.346,,,0.329,0.363,0.157997699,4119,26070,0.13655089,0.179444507,0.054962647,515,9370,0.038281796,0.071643498,0.00102797,43,41830,,,972.7906977,0.88,386.32,439,,,,,,,,2.969903755,,,,,,,,2.773583845,2.998643884,3.095796964,,,,,,,,3.159401949,3.084294823,0.021289036,,,,,-711.7021,,,,,0.829147935,47215,56944,0.72773887,0.930557,78437,,,70455.21277,86418.78723,,,,,,,,,,71398,64159.70213,78636.29787,77802,73398.25532,82205.74468,,,,,,,,,,,34.00768189,,,,,0.234825401,,78437,,,10.66666667,24,2250,,,4.230103532,12,283681,2.185756222,7.389139579,,,,,,,,,,,,,4.203221961,2.098233259,7.520725137,,,,18.88956685,42,204060,13.4323286,25.82265973,20.58218171,,,,,,,,,,,,,18.54923964,12.9916594,25.67996642,,,,15.68166226,32,204060,10.72624538,22.13782813,,,,,,,,,,,,,15.46147161,10.3547902,22.20525234,,,,24.32309531,69,283681,18.92481998,30.78243382,,,,,,,,,,,,,25.98355394,20.17724634,32.94034602,,,,,,,,,,,0.653759277,20260,30990,,,0.697,,,,,20.14553789,,,,,0.81162465,12749,15708,0.78855069,0.83469861,0.067042401,1023,15259,0.048832686,0.085252116,0.864336644,13577,15708,0.843508451,0.885164836,41830,,,,,0.210064547,8787,41830,,,0.165240258,6912,41830,,,0.027205355,1138,41830,,,0.006072197,254,41830,,,0.005402821,226,41830,,,0.000621564,26,41830,,,0.042218504,1766,41830,,,0.902701411,37760,41830,,,0.009509368,370,38909,0.002229512,0.016789224,0.49729859,20802,41830,,,1,41072,41072,, -47,023,47023,TN,Chester County,2024,1,11008.19639,356,48414,9224.383913,12792.00886,0,,,,2,,,,2,16477.41952,10557.3936,24517.09412,1,,,,2,10350.51714,8489.23704,12211.79723,,,,,2,,0.213,,,0.18,0.249,4.698254683,,,3.733079509,5.704659611,6.257728165,,,5.072840603,7.509359383,0.0758405,97,1279,0.061331254,0.090349747,0,,,,,,,0.130769231,0.072812387,0.188726074,,,,0.071895425,0.056424709,0.087366141,,,,,,,0.246,,,0.199,0.297,0.369,,,0.295,0.452,8,0.045441523,0.113,,,0.316,,,0.262,0.376,0.356899833,6189,17341,,,0.144224408,,,0.113779661,0.181967758,0.409090909,9,22,0.29849051,0.512929862,337.1,59,17504,,,17.52714803,92,5249,14.12935507,21.49549114,,,,,,,19.45525292,9.329549993,35.77890281,,,,16.25457876,12.69496086,20.50293936,,,,,,,0.119196895,1597,13398,0.101324555,0.137069236,0.000285649,5,17504,,,3500.8,0.000227157,4,17609,,,4402.25,0.000965415,17,17609,,,1035.823529,2616,,,,,,,1096,,2542,0.37,,,,,,,0.39,,0.37,0.4,,,,,,,0.34,,0.41,0.855927698,9660,11286,0.813087851,0.898767545,0.568078669,2253,3966,0.466994598,0.66916274,0.029742389,254,8540,,,0.224,819,,0.156085106,0.291914894,,,,,,,0.591304348,0.411527904,0.771080791,0.147826087,0,0.49647452,0.153137185,0.080461703,0.225812668,4.620261672,103115,22318,3.632794595,5.607728749,0.282958199,1056,3732,0.193698089,0.37221831,11.99725777,21,17504,,,91.19453295,79,86628,72.19957053,113.6555977,,,,,,,,,,,,,92.38502819,71.7405893,117.1200369,,,,7.5,,,,,0,,,,,0.102671119,615,5990,0.057206708,0.14813553,0.093728814,0.048989857,0.13846777,0.008180301,0,0.019924558,0.002337229,0,0.006283485,0.866619014,6062,6995,0.840514417,0.892723611,,,,,,,,,,,,,0.793561141,0.746778206,0.840344076,0.506,,6995,0.41552523,0.59647477,73.41875058,,,72.07783757,74.7596636,,,,,,,,,,,,,73.89545989,72.48395606,75.30696371,,,,573.8864874,356,48414,511.6033754,636.1695994,,,,,,,873.7507501,632.3377503,1176.936526,,,,553.0857635,487.7936191,618.3779079,,,,77.2882853,14,18114,42.25422478,129.6766099,,,,,,,,,,,,,69.83240224,33.48735123,128.424274,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.145,,,0.124,0.168,0.202,,,0.175,0.232,0.124,,,0.106,0.142,94.1,14,14874,,,0.113,1950,,,,0.045441523,778.4587234,17131,,,,,,,,,,,,,,,,,,,,,,,,,,0.363,,,0.346,0.378,0.148343685,1433,9660,0.124513898,0.172173473,0.045443006,179,3939,0.031145134,0.059740878,0.001249361,22,17609,,,800.4090909,0.925,179.45,194,,,,,,,,3.212231308,,,,,,,2.932447579,,3.276117926,3.244948356,,,,,,,3.157389465,,3.293104619,0.015289976,,,,,-1983.477,,,,,0.645058079,37096,57508,0.411450585,0.878665572,57732,,,49747.82979,65716.17021,,,,,,,35606,5846.170213,65365.82979,51467,3035.340426,99898.65957,58917,48607.04255,69226.95745,,,,,,,,,,,54.61525906,,,,,0.237719116,,57732,,,2.293577982,2,872,,,,,,,,,,,,,,,,,,,,,,,,,,17.05389332,16,86628,9.544934632,28.12780355,18.46977882,,,,,,,,,,,,,17.20638597,9.161675864,29.42344403,,,,17.31541765,15,86628,9.691307814,28.55914816,,,,,,,,,,,,,17.66184363,9.404187883,30.20229049,,,,21.39002238,26,121552,13.97267278,31.34133876,,,,,,,,,,,,,19.3020383,11.79018644,29.81043266,,,,,,,,,,,0.571299435,7584,13275,,,0.652,,,,,9.490771997,,,,,0.76645922,4680,6106,0.710676589,0.822241852,0.076660406,449,5857,0.038521324,0.114799489,0.833770062,5091,6106,0.786730143,0.880809981,17609,,,,,0.212561758,3743,17609,,,0.173320461,3052,17609,,,0.091260151,1607,17609,,,0.006530751,115,17609,,,0.007666534,135,17609,,,0.000283946,5,17609,,,0.032085865,565,17609,,,0.843489125,14853,17609,,,0.00279177,46,16477,0,0.010187083,0.513771367,9047,17609,,,0.659419872,11435,17341,, -47,025,47025,TN,Claiborne County,2024,1,13275.0276,811,88507,11855.95383,14694.10138,0,,,,2,,,,2,,,,2,,,,2,13589.14567,12115.55045,15062.74089,,,,,2,,0.211,,,0.177,0.248,4.754404168,,,3.757276319,5.850784237,6.477333013,,,5.250444036,7.786249559,0.090747331,204,2248,0.078872782,0.10262188,0,,,,,,,,,,,,,0.091242549,0.07915743,0.103327668,,,,,,,0.247,,,0.196,0.299,0.369,,,0.289,0.449,7,0.04438557,0.16,,,0.323,,,0.265,0.383,0.414224636,13273,32043,,,0.143511719,,,0.111413843,0.177608706,0.111111111,2,18,0.022704408,0.253963321,195.2,63,32267,,,24.79815456,172,6936,21.0921051,28.50420401,,,,,,,,,,,,,26.71199612,22.636125,30.78786723,,,,,,,0.123815335,3044,24585,0.105942994,0.141687675,0.000526854,17,32267,,,1898.058824,0.000277512,9,32431,,,3603.444444,0.000215843,7,32431,,,4633,1673,,,,,,,,,1694,0.35,,,,,,,,,0.35,0.39,,,,,,,,,0.39,0.821868494,18949,23056,0.793026963,0.850710026,0.574503311,4511,7852,0.500209915,0.648796708,0.038245395,490,12812,,,0.257,1540,,0.160489362,0.353510638,,,,,,,,,,,,,0.192662209,0.134124291,0.251200126,4.665117025,87303,18714,3.945684016,5.384550033,0.218940769,1327,6061,0.154321212,0.283560325,6.198283076,20,32267,,,102.1213678,163,159614,86.44379262,117.798943,,,,,,,,,,,,,104.2133868,87.96347388,120.4632997,,,,8.6,,,,,0,,,,,0.133480826,1810,13560,0.110998784,0.155962868,0.113808801,0.090824415,0.136793188,0.013274336,0.005695498,0.020853175,0.015117994,0.00729359,0.022942399,0.839210714,10590,12619,0.806932229,0.871489199,,,,,,,,,,,,,0.840581086,0.801901345,0.879260828,0.321,,12619,0.273564356,0.368435644,71.88000154,,,70.91615485,72.84384823,,,,,,,,,,,,,71.53433445,70.55140388,72.51726501,,,,650.1832587,811,88507,602.155253,698.2112643,,,,,,,,,,,,,663.7084608,614.1102114,713.3067102,,,,50.54699065,14,27697,27.63451015,84.80926137,,,,,,,,,,,,,54.58089669,29.83988412,91.57747026,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.146,,,0.125,0.17,0.206,,,0.178,0.235,0.116,,,0.099,0.136,53.7,15,27941,,,0.16,5110,,,,0.04438557,1429.792364,32213,,,34.28607051,33,96249,23.60095333,48.15039041,,,,,,,,,,,,,32.87383024,22.17983522,46.92943676,,,,0.369,,,0.35,0.387,0.152353672,2819,18503,0.129715375,0.17499197,0.038214565,244,6385,0.025108182,0.051320948,0.002374272,77,32431,,,421.1818182,0.94,299.86,319,,,,,,,,2.870182711,,,,,,,,,2.872775947,2.656780439,,,,,,,,,2.654826425,0.042955472,,,,,-738.1006,,,,,0.820743169,37549,45750,0.667962622,0.973523717,41087,,,36574.82979,45599.17021,,,,,,,,,,35417,3722.191489,67111.80851,43666,39072.80851,48259.19149,,,,,,,,,,,,,,,,0.334022927,,41087,,,11.92504259,21,1761,,,4.930966469,11,223080,2.461520695,8.822861087,,,,,,,,,,,,,5.182885171,2.587277604,9.273613231,,,,15.98385175,28,159614,10.34390609,23.59531828,17.54232085,,,,,,,,,,,,,16.03299899,10.27264498,23.85583161,,,,18.79534377,30,159614,12.68113951,26.83152192,,,,,,,,,,,,,19.12777353,12.81017013,27.47067346,,,,17.93078716,40,223080,12.81001723,24.41664289,,,,,,,,,,,,,18.37568379,13.06690751,25.12016466,,,,,,,,,,,0.50655449,12945,25555,,,0.575,,,,,13.21671706,,,,,0.716373618,9656,13479,0.684916273,0.747830964,0.104328346,1304,12499,0.079062227,0.129594466,0.710141702,9572,13479,0.671572489,0.748710915,32431,,,,,0.190003392,6162,32431,,,0.204649872,6637,32431,,,0.011994696,389,32431,,,0.004039345,131,32431,,,0.009497086,308,32431,,,0.000215843,7,32431,,,0.016434893,533,32431,,,0.944867565,30643,32431,,,0.00204243,62,30356,0,0.006641611,0.506922389,16440,32431,,,0.713291515,22856,32043,, -47,027,47027,TN,Clay County,2024,1,12319.28975,221,20253,9467.289467,15171.29003,0,,,,2,,,,2,,,,2,,,,2,12570.90679,9623.918025,15517.89556,,,,,2,,0.238,,,0.202,0.279,5.1374301,,,4.116133449,6.221420097,6.682468143,,,5.385601816,7.950785583,0.098969072,48,485,0.072392143,0.125546001,0,,,,,,,,,,,,,0.10021322,0.073036192,0.127390248,,,,,,,0.277,,,0.224,0.332,0.367,,,0.285,0.449,7.2,0.000847671,0.172,,,0.345,,,0.287,0.407,0.114628677,869,7581,,,0.125754197,,,0.096966148,0.154842071,0.375,3,8,0.179126284,0.556186502,304.4,23,7555,,,25.45454546,35,1375,17.73002357,35.40111081,,,,,,,,,,,,,26.45914397,18.32372637,36.97400163,,,,,,,0.140416444,789,5619,0.118969636,0.161863253,0.000397088,3,7555,,,2518.333333,0.000131234,1,7620,,,7620,,0,7620,,,,6526,,,,,,,,,5872,0.37,,,,,,,,,0.37,0.39,,,,,,,,,0.4,0.849727768,4682,5510,0.791632828,0.907822707,0.393799472,597,1516,0.250297137,0.537301808,0.046319569,129,2785,,,0.269,405,,0.162957447,0.375042553,,,,,,,,,,,,,0.202034884,0.102547998,0.30152177,5.56282944,85484,15367,3.687878195,7.437780685,0.359141184,552,1537,0.184819411,0.533462957,3.970880212,3,7555,,,138.6744813,53,38219,103.8767025,181.3896359,,,,,,,,,,,,,144.2801254,107.7552987,189.204189,,,,7.3,,,,,0,,,,,0.102362205,325,3175,0.054501956,0.150222453,0.080360013,0.035825789,0.124894237,0.006299213,0,0.022268291,0.017322835,0,0.040555824,0.821373457,2129,2592,0.755174634,0.88757228,,,,,,,,,,,,,0.79338843,0.690079248,0.896697612,0.489,,2592,0.365234132,0.612765868,72.59107675,,,70.57988959,74.6022639,,,,,,,,,,,,,72.23489308,70.19539246,74.2743937,,,,662.068004,221,20253,565.5062232,758.6297847,,,,,,,,,,,,,680.2321881,580.1034579,780.3609183,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.162,,,0.138,0.188,0.216,,,0.185,0.247,0.128,,,0.11,0.149,,,,,,0.172,1300,,,,0.000847671,6.663541416,7861,,,,,,,,,,,,,,,,,,,,,,,,,,0.365,,,0.346,0.383,0.173439768,717,4134,0.144844023,0.202035513,0.04893754,76,1553,0.0310652,0.066809881,0.000524934,4,7620,,,1905,0.975,76.05,78,,,,,,,,2.913213247,,,,,,,,,2.885562659,2.646803354,,,,,,,,,2.659507957,0.033380883,,,,,-3981.649,,,,,0.787475933,34356,43628,0.546250668,1.028701198,43441,,,36881.85106,50000.14894,,,,,,,,,,47958,16816.04255,79099.95745,38750,28391.19149,49108.80851,,,,,,,,,,,33.03621958,,,,,0.315922746,,43441,,,9.063444109,3,331,,,,,,,,,,,,,,,,,,,,,,,,,,28.62646419,11,38219,13.72750228,52.64508687,28.78149611,,,,,,,,,,,,,30.16583566,14.46569073,55.47604581,,,,26.16499647,10,38219,12.54713283,48.11836009,,,,,,,,,,,,,27.74617796,13.30537082,51.02620916,,,,22.32890477,12,53742,11.53767093,39.00410303,,,,,,,,,,,,,23.64718402,12.21884505,41.30687157,,,,,,,,,,,0.584333333,3506,6000,,,0.46,,,,,6.120927519,,,,,0.78616145,2386,3035,0.732038983,0.840283917,0.100035855,279,2789,0.047602166,0.152469545,0.730807249,2218,3035,0.665313431,0.796301066,7620,,,,,0.199868766,1523,7620,,,0.252624672,1925,7620,,,0.015091864,115,7620,,,0.006430446,49,7620,,,0.001574803,12,7620,,,0.001181102,9,7620,,,0.031496063,240,7620,,,0.932808399,7108,7620,,,0.022530567,164,7279,0.000768713,0.044292422,0.506692913,3861,7620,,,1,7581,7581,, -47,029,47029,TN,Cocke County,2024,1,16502.44468,1104,99504,14957.66233,18047.22704,0,,,,2,,,,2,,,,2,,,,2,16895.14398,15279.68542,18510.60254,,,,,2,,0.224,,,0.19,0.261,4.929906781,,,3.965882074,6.010582492,6.292492058,,,5.108733705,7.529605709,0.080473373,204,2535,0.069883875,0.09106287,0,,,,,,,,,,,,,0.080034057,0.069060742,0.091007372,,,,,,,0.261,,,0.215,0.312,0.39,,,0.313,0.465,6.2,0.111944357,0.164,,,0.335,,,0.279,0.394,0.717575488,25832,35999,,,0.128078251,,,0.099461782,0.158046156,0.456521739,21,46,0.385991311,0.523174879,280.1,102,36418,,,37.07564026,249,6716,32.47047672,41.6808038,,,,,,,,,,43.61370717,23.84401955,73.17638979,38.05883331,33.12943625,42.98823036,,,,,,,0.130286203,3660,28092,0.111222373,0.149350032,0.000384425,14,36418,,,2601.285714,0.00018981,7,36879,,,5268.428571,0.000460967,17,36879,,,2169.352941,2948,,,,,,,4457,42857,2843,0.45,,,,,,,0.32,,0.45,0.45,,,,,,,0.33,,0.45,0.844842025,22194,26270,0.82201069,0.86767336,0.395778031,3131,7911,0.327277316,0.464278746,0.051241812,751,14656,,,0.337,2471,,0.241680851,0.432319149,0.362903226,0,0.823178862,,,,,,,0.611111111,0.367957904,0.854264318,0.328249229,0.259793634,0.396704825,4.435144447,83669,18865,3.847533564,5.022755331,0.341241866,2517,7376,0.244987067,0.437496664,9.610632105,35,36418,,,127.794107,230,179977,111.278179,144.310035,,,,,,,,,,,,,133.4242772,115.9121663,150.9363881,,,,7.8,,,,,0,,,,,0.114678899,1625,14170,0.087139301,0.142218497,0.088703838,0.064125478,0.113282198,0.018348624,0.005416164,0.031281084,0.011291461,0.00390535,0.018677572,0.812585593,11867,14604,0.767333438,0.857837748,,,,,,,,,,,,,0.807941459,0.752818384,0.863064533,0.481,,14604,0.413746784,0.548253216,69.57945298,,,68.63836377,70.52054219,,,,,,,,,,,,,69.20352522,68.23766885,70.1693816,,,,763.0335499,1104,99504,713.5384511,812.5286486,,,,,,,,,,,,,785.4265625,733.5488129,837.304312,,,,88.15288228,28,31763,58.57695009,127.405459,,,,,,,,,,,,,85.72959457,54.92856887,127.5588412,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.152,,,0.131,0.176,0.21,,,0.183,0.239,0.124,,,0.106,0.143,147,46,31289,,,0.164,5880,,,,0.111944357,3992.159657,35662,,,44.17977487,48,108647,32.57467838,58.57597189,,,,,,,,,,,,,45.65303692,33.42376083,60.89475358,,,,0.352,,,0.335,0.367,0.162483866,3399,20919,0.13746259,0.187505143,0.037583001,283,7530,0.024476618,0.050689384,0.001410017,52,36879,,,709.2115385,0.93,341.31,367,,,,,,,,3.035585725,,,,,,,3.103185863,2.809109488,3.044509012,2.881055279,,,,,,,2.667953745,2.637095328,2.909808301,0.048176907,,,,,-4540.6635,,,,,0.751192586,33069,44022,0.668529723,0.833855448,45361,,,38839.97872,51882.02128,30917,3982.191489,57851.80851,,,,,,,33005,24588.31915,41421.68085,46156,41335.23404,50976.76596,,,,,,,,,,,45.01828561,,,,,0.302550649,,45361,,,12.15189873,24,1975,,,7.189704343,18,250358,4.261074454,11.36283253,,,,,,,,,,,,,7.299646182,4.252312901,11.68744067,,,,24.5780885,41,179977,17.39291824,33.73534674,22.78068864,,,,,,,,,,,,,24.96045782,17.38587342,34.71395452,,,,21.11380899,38,179977,14.94138787,28.98035245,,,,,,,,,,,,,22.13766035,15.58695587,30.51384869,,,,23.16682511,58,250358,17.59154159,29.94849366,,,,,,,,,,,,,24.04589331,18.16400939,31.22559256,,,,,,,,,,,0.526168555,14859,28240,,,0.594,,,,,32.53147731,,,,,0.708324741,10304,14547,0.675229441,0.74142004,0.121570066,1657,13630,0.090881431,0.152258701,0.745583282,10846,14547,0.710004455,0.781162109,36879,,,,,0.202716993,7476,36879,,,0.219827002,8107,36879,,,0.020336777,750,36879,,,0.006019686,222,36879,,,0.005477372,202,36879,,,0.00075924,28,36879,,,0.030369587,1120,36879,,,0.921662735,33990,36879,,,0.004907545,168,34233,0,0.009858653,0.510263294,18818,36879,,,0.678935526,24441,35999,, -47,031,47031,TN,Coffee County,2024,1,11771.92877,1236,160578,10778.41469,12765.44284,0,,,,2,,,,2,17915.33283,12087.39983,25575.25159,,,,,2,11985.16671,10906.75493,13063.57848,,,,,2,,0.191,,,0.159,0.226,4.404123917,,,3.481499966,5.379676944,6.029694932,,,4.85970357,7.265374671,0.095632374,462,4831,0.087339358,0.103925391,0,,,,0.205882353,0.109775667,0.301989039,0.14084507,0.083628942,0.198061199,0.073417722,0.047696004,0.099139439,0.095238095,0.086270192,0.104205998,,,,,,,0.216,,,0.168,0.264,0.382,,,0.303,0.466,7.4,0.052987902,0.137,,,0.304,,,0.245,0.366,0.702257769,40653,57889,,,0.152026768,,,0.118271033,0.189006315,0.169491525,10,59,0.106769348,0.241642291,321.9,190,59032,,,32.8207672,397,12096,29.59220211,36.04933229,,,,,,,24.94802495,12.89100854,43.57917889,43.01075269,31.25167875,57.73992794,32.61845387,29.08299681,36.15391092,,,,25.34562212,12.65244324,45.35031916,0.126114991,6122,48543,0.10943414,0.142795842,0.000525139,31,59032,,,1904.258065,0.00071993,43,59728,,,1389.023256,0.002126306,127,59728,,,470.2992126,3090,,,,,,,6271,,3039,0.37,,,,,,0.31,0.32,,0.37,0.45,,,,,,0.53,0.41,,0.45,0.874243154,34509,39473,0.855056988,0.893429319,0.480757142,6883,14317,0.430112457,0.531401826,0.033679685,846,25119,,,0.218,3039,,0.159617021,0.276382979,,,,,,,0.322802198,0.206809509,0.438794886,0.550335571,0.398441595,0.702229546,0.18561086,0.135848206,0.235373514,4.09944245,107348,26186,3.683207051,4.515677849,0.248674975,3472,13962,0.188364573,0.308985376,11.0109771,65,59032,,,105.3120972,299,283918,93.37499973,117.2491946,,,,,,,121.7000562,64.80015438,208.1108025,,,,111.3813288,98.28812077,124.4745368,,,,7.6,,,,,0,,,,,0.107102337,2360,22035,0.086440701,0.127763974,0.075510673,0.057742346,0.093278999,0.020195144,0.01206861,0.028321678,0.022464261,0.01132521,0.033603313,0.809974823,20268,25023,0.787002817,0.83294683,,,,,,,0.802955665,0.699761936,0.906149394,0.728395062,0.683239542,0.773550582,0.823667809,0.803650799,0.843684819,0.391,,25023,0.347270555,0.434729445,72.90132094,,,72.17377334,73.62886855,,,,,,,69.19957131,64.82109018,73.57805244,79.96769524,74.43611309,85.49927739,72.67458861,71.90209247,73.44708476,,,,594.7973286,1236,160578,560.2895582,629.3050991,,,,,,,823.9955189,622.4373597,1070.02672,,,,603.2636339,566.6230979,639.9041699,,,,63.318559,38,60014,44.80798088,86.90966928,,,,,,,,,,,,,65.91550456,45.08615633,93.05302507,,,,6.147540984,30,4880,4.147720086,8.775997007,,,,,,,,,,,,,6.215634712,4.060258957,9.107344988,,,,,,,0.134,,,0.113,0.156,0.191,,,0.164,0.221,0.111,,,0.093,0.131,132.7,65,48990,,,0.137,7810,,,,0.052987902,2797.549278,52796,,,32.33555063,56,173184,24.42592744,41.99040212,,,,,,,,,,,,,33.68715859,25.08230225,44.29239224,,,,0.343,,,0.326,0.36,0.15716451,5392,34308,0.134526212,0.179802808,0.053111588,792,14912,0.036430737,0.069792439,0.00182494,109,59728,,,547.9633028,0.912312404,595.74,653,,,,,,,,2.909528105,,,,,,,2.612522153,2.669661624,2.964946245,2.684341753,,,,,,,2.199416957,2.785685701,2.710606562,0.056791905,,,,,-836.6576,,,,,0.73749082,37157,50383,0.624574161,0.850407479,56519,,,51098.91489,61939.08511,,,,,,,41383,32437.29787,50328.70213,,,,58731,55499.68085,61962.31915,,,,,,,,,,,43.97903649,,,,,0.242820998,,56519,,,10.28277635,36,3501,,,4.072521425,16,392877,2.327797874,6.613519651,,,,,,,,,,,,,3.174062714,1.584480671,5.679274961,,,,24.21798489,71,283918,18.76860565,30.75598473,25.0072204,,,,,,,,,,,,,26.27273639,20.23320841,33.54969783,,,,16.90628984,48,283918,12.46536353,22.41528758,,,,,,,,,,,,,18.43000405,13.4930793,24.58304268,,,,20.36260713,80,392877,16.14628105,25.3430272,,,,,,,,,,,,,21.64133668,17.02228414,27.12760293,,,,,,,,,,,0.582931221,24282,41655,,,0.683,,,,,41.84096669,,,,,0.690202301,15660,22689,0.666184181,0.714220421,0.102074185,2185,21406,0.082612371,0.121535999,0.766847371,17399,22689,0.734096466,0.799598276,59728,,,,,0.238096035,14221,59728,,,0.177019154,10573,59728,,,0.038524645,2301,59728,,,0.006077552,363,59728,,,0.012808063,765,59728,,,0.001004554,60,59728,,,0.058431556,3490,59728,,,0.86306255,51549,59728,,,0.010600577,577,54431,0.002634552,0.018566602,0.508572194,30376,59728,,,0.460761112,26673,57889,, -47,033,47033,TN,Crockett County,2024,1,11861.85978,316,38855,9809.755169,13913.96439,0,,,,2,,,,2,9609.690043,5597.998578,15386.04466,1,,,,2,12041.12241,9672.683739,14409.56108,,,,,2,,0.217,,,0.186,0.252,4.572436853,,,3.666021712,5.574241396,6.248439756,,,5.06368584,7.486478699,0.093227792,106,1137,0.076327367,0.110128218,0,,,,,,,0.126984127,0.068846596,0.185121659,0.084337349,0.042062726,0.126611973,0.085054678,0.065995559,0.104113797,,,,,,,0.235,,,0.19,0.282,0.372,,,0.292,0.454,7.7,0.065417581,0.117,,,0.331,,,0.274,0.39,0.180432751,2510,13911,,,0.140036318,,,0.110132974,0.175137519,0.1,2,20,0.019826373,0.233896636,543.7,76,13979,,,34.51521807,110,3187,28.06506011,40.96537604,,,,,,,27.71855011,14.75896054,47.39956486,27.57352941,15.4326951,45.47834351,38.005923,29.99368009,47.50088277,,,,,,,0.139366035,1574,11294,0.120302205,0.158429865,,0,13979,,,,0.000576037,8,13888,,,1736,,0,13888,,,,2480,,,,,,,4835,,2106,0.39,,,,,,,0.37,,0.39,0.37,,,,,,,0.3,0.25,0.37,0.857489452,8129,9480,0.83033598,0.884642923,0.521182566,1710,3281,0.434776912,0.60758822,0.031701972,217,6845,,,0.224,717,,0.15012766,0.29787234,,,,,,,0.673076923,0.459898639,0.886255208,0.255319149,0.093202066,0.417436232,0.166587339,0.104056714,0.229117965,4.686556373,110195,23513,3.513036759,5.860075987,0.330601093,1089,3294,0.229322963,0.431879223,19.31468632,27,13979,,,87.09088355,62,71190,66.77208103,111.6465822,,,,,,,,,,,,,109.4974643,82.93231013,141.8666655,,,,7.6,,,,,0,,,,,0.118479222,670,5655,0.084215266,0.152743178,0.093501805,0.060399098,0.126604512,0.023695844,0.010485385,0.036906303,0.006896552,0,0.015088906,0.900423397,5742,6377,0.875111262,0.925735531,,,,,,,,,,,,,0.821974965,0.751819968,0.892129963,0.384,,6377,0.324640387,0.443359613,72.69429544,,,71.20679279,74.18179809,,,,,,,73.97789974,70.53679217,77.4190073,,,,72.37416648,70.67056983,74.07776314,,,,606.175991,316,38855,535.7859255,676.5660565,,,,,,,541.6969437,375.1408807,756.9671831,,,,632.6035694,550.7374822,714.4696567,,,,102.4800164,15,14637,57.35728724,169.0252024,,,,,,,,,,,,,129.8139334,67.07675366,226.7588171,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.143,,,0.122,0.164,0.199,,,0.171,0.227,0.126,,,0.107,0.145,103.2,12,11625,,,0.117,1640,,,,0.065417581,954.1808403,14586,,,,,,,,,,,,,,,,,,,,,,,,,,0.36,,,0.346,0.374,0.172910663,1380,7981,0.147889386,0.197931939,0.060213195,209,3471,0.039957876,0.080468514,0.001080069,15,13888,,,925.8666667,0.94,207.74,221,,,,,,,,3.098637193,,,,,,,3.193431905,2.793306942,3.175630636,3.281101174,,,,,,,3.243799954,3.026974598,3.361182361,0.021224934,,,,,-4026.369667,,,,,0.863780247,40659,47071,0.7160944,1.011466093,53598,,,46210.76596,60985.23404,,,,40625,18706.3617,62543.6383,51979,19720.61702,84237.38298,51250,19188.21277,83311.78723,64125,53214.53192,75035.46809,,,,,,,,,,,27.27285718,,,,,0.25605433,,53598,,,12.83547258,11,857,,,,,,,,,,,,,,,,,,,,,,,,,,17.7390815,15,71190,9.698120923,29.76316453,21.07037505,,,,,,,,,,,,,22.59890975,11.67718644,39.4757474,,,,18.26099171,13,71190,9.723209006,31.22685197,,,,,,,,,,,,,23.05209774,11.91135529,40.26737561,,,,25.94758588,26,100202,16.94982457,38.01922525,,,,,,,,,,,,,29.87222833,18.72076646,45.22691269,,,,,,,,,,,0.583675418,6114,10475,,,0.565,,,,,8.202569205,,,,,0.688297282,3723,5409,0.646758621,0.729835944,0.113063855,579,5121,0.075252168,0.150875542,0.855611019,4628,5409,0.826447255,0.884774783,13888,,,,,0.234807028,3261,13888,,,0.188580069,2619,13888,,,0.132416475,1839,13888,,,0.008856567,123,13888,,,0.004464286,62,13888,,,0.000288018,4,13888,,,0.119815668,1664,13888,,,0.721846198,10025,13888,,,0.024360536,320,13136,0.014141522,0.03457955,0.516417051,7172,13888,,,1,13911,13911,, -47,035,47035,TN,Cumberland County,2024,1,12188.9861,1416,159640,11053.63157,13324.34062,0,,,,2,,,,2,,,,2,9000.749265,4650.818487,15722.4976,1,12413.824,11224.65878,13602.98923,,,,,2,,0.196,,,0.165,0.23,4.408935745,,,3.472226145,5.348768239,6.10189515,,,4.984936115,7.266405978,0.084245077,308,3656,0.075241504,0.093248649,0,,,,,,,,,,0.075,0.038495822,0.111504178,0.082986318,0.073661328,0.092311308,,,,,,,0.236,,,0.19,0.285,0.372,,,0.301,0.441,7,0.109221677,0.129,,,0.303,,,0.251,0.357,0.596140322,36451,61145,,,0.124552507,,,0.098080018,0.155249149,0.225806452,14,62,0.16101658,0.295536813,269,168,62451,,,38.05564439,357,9381,34.10797255,42.00331623,,,,,,,,,,46.24277457,29.62861822,68.80558303,38.43433153,34.26211726,42.60654579,,,,,,,0.134400949,5665,42150,0.116528609,0.152273289,0.000640502,40,62451,,,1561.275,0.000362079,23,63522,,,2761.826087,0.000377822,24,63522,,,2646.75,2429,,,,,,,,,2421,0.53,,,,,,0.53,,,0.53,0.46,,,,,,0.67,0.44,0.35,0.46,0.892706843,42425,47524,0.875728453,0.909685233,0.419176451,4927,11754,0.367429597,0.470923304,0.04258059,992,23297,,,0.209,2188,,0.127978723,0.290021277,,,,,,,,,,0.214092141,0.018872749,0.409311533,0.134093377,0.105135953,0.163050801,3.821754992,97428,25493,3.319625802,4.323884182,0.173938168,1806,10383,0.135974808,0.211901528,9.607532305,60,62451,,,117.3658617,356,303325,105.1739204,129.557803,,,,,,,,,,,,,120.1220132,107.4094942,132.8345321,,,,7.3,,,,,0,,,,,0.112732096,2975,26390,0.094393475,0.131070716,0.091916683,0.074240737,0.109592628,0.016294051,0.008672262,0.023915839,0.01061008,0.005048624,0.016171536,0.797903716,17585,22039,0.773052975,0.822754458,,,,,,,,,,,,,0.816262941,0.787669533,0.84485635,0.244,,22039,0.208614571,0.279385429,74.36843879,,,73.56321064,75.17366694,,,,,,,,,,80.86748299,74.33881614,87.39614983,74.12156091,73.28823987,74.95488195,,,,541.350504,1416,159640,507.4111569,575.2898511,,,,,,,,,,408.7017796,246.0651695,638.2384556,551.4720778,516.1498679,586.7942877,,,,61.13670604,28,45799,40.62489717,88.35956231,,,,,,,,,,,,,61.51423439,39.8087691,90.80714475,,,,5.950770895,22,3697,3.729316438,9.00953865,,,,,,,,,,,,,6.171025566,3.819962088,9.433068097,,,,,,,0.138,,,0.118,0.16,0.197,,,0.17,0.226,0.112,,,0.095,0.129,98.2,54,55006,,,0.129,7820,,,,0.109221677,6122.202633,56053,,,38.46695634,71,184574,30.04301205,48.52083127,,,,,,,,,,,,,39.75295555,30.93017224,50.30990949,,,,0.352,,,0.335,0.369,0.161291341,5111,31688,0.137461553,0.185121128,0.054356733,597,10983,0.036484393,0.072229074,0.001086238,69,63522,,,920.6086957,0.89,461.02,518,,,0.10031348,224,2233,0.042148916,0.158478043,2.975900523,,,,,,,,,2.994995949,2.868934325,,,,,,,,,2.869969796,0.036484655,,,,,-1357.002,,,,,0.777669264,36629,47101,0.718808702,0.836529826,53388,,,49719.40426,57056.59575,36583,34951.85106,38214.14894,,,,6824,2604.93617,11043.06383,44680,33357.2766,56002.7234,57893,54804.65957,60981.34043,,,,,,,,,,,79.69678398,,,,,0.257061512,,53388,,,7.459903021,20,2681,,,3.807629061,16,420209,2.176389,6.183351046,,,,,,,,,,,,,3.534487764,1.932337351,5.930269889,,,,24.14461039,75,303325,18.28689213,31.28214329,24.72595401,,,,,,,,,,,,,23.41084573,17.48433935,30.70020951,,,,22.4181983,68,303325,17.40860818,28.4204082,,,,,,,,,,,,,23.11385676,17.87625514,29.40649305,,,,19.99005257,84,420209,15.94484881,24.7490453,,,,,,,,,,,,,20.70199976,16.46491477,25.69664025,,,,,,,,,,,0.657748344,32279,49075,,,0.615,,,,,20.4142642,,,,,0.790278861,21283,26931,0.769689043,0.810868678,0.085941149,2208,25692,0.06867003,0.103212269,0.841929375,22674,26931,0.821270669,0.862588081,63522,,,,,0.168146469,10681,63522,,,0.323037688,20520,63522,,,0.007367526,468,63522,,,0.004974655,316,63522,,,0.006942477,441,63522,,,0.001070495,68,63522,,,0.034665155,2202,63522,,,0.936258304,59473,63522,,,0.00212408,125,58849,0,0.004991735,0.508642675,32310,63522,,,0.539439038,32984,61145,, -47,037,47037,TN,Davidson County,2024,1,10083.20546,10450,1990635,9821.577084,10344.83384,0,,,,2,4393.786855,3533.286102,5254.287608,,14873.53893,14242.02674,15505.05112,,8370.590303,7629.249764,9111.930841,,8470.537872,8158.277539,8782.798206,,,,,2,,0.165,,,0.139,0.192,3.887201432,,,3.200660877,4.66140165,5.759080111,,,4.952922566,6.628870052,0.089755018,6243,69556,0.087630808,0.091879227,0,,,,0.08545518,0.075221922,0.095688438,0.14284915,0.137718918,0.147979381,0.075294292,0.070844298,0.079744286,0.066311497,0.063650844,0.068972151,,,,0.120614035,0.103355588,0.137872482,0.173,,,0.136,0.211,0.326,,,0.28,0.378,7.8,0.082107628,0.104,,,0.247,,,0.205,0.288,0.916721145,656266,715884,,,0.189047406,,,0.159127553,0.222019676,0.245544555,124,505,0.223283312,0.268306513,866.3,6098,703953,,,24.6167214,3343,135802,23.78223725,25.45120556,,,,6.054655539,4.263036257,8.345545106,26.02021715,24.57830655,27.46212774,63.18260203,59.77278417,66.59241989,10.93727365,10.0650122,11.8095351,,,,22.01070791,17.91594659,26.10546924,0.138041523,80865,585802,0.127318118,0.148764927,0.00090489,637,703953,,,1105.10675,0.000833164,590,708144,,,1200.244068,0.004099449,2903,708144,,,243.9352394,3671,,,,,,1689,5345,3225,3199,0.42,,,,,,0.32,0.41,0.2,0.44,0.5,,,,,0.07,0.45,0.38,0.28,0.54,0.903355195,447505,495381,0.898691176,0.908019215,0.742256257,181161,244068,0.723973567,0.760538946,0.028122624,11612,412906,,,0.208,28734,,0.16987234,0.24612766,0.191666667,0,0.61884552,0.227483377,0.152451986,0.302514768,0.353154109,0.320047606,0.386260612,0.299750389,0.25971759,0.339783188,0.086660387,0.07279772,0.100523054,4.429465531,142961,32275,4.262718967,4.596212095,0.329964039,47530,144046,0.306024607,0.353903471,13.29634223,936,703953,,,119.1276553,4141,3476103,115.4992479,122.7560628,118.0776951,56.62284445,217.1490854,40.06137705,30.00872048,52.40126755,137.7277909,130.2060265,145.2495552,62.89342874,54.72959936,71.05725812,129.2115034,124.1765322,134.2464746,,,,9.2,,,,,0,,,,,0.166222898,48070,289190,0.158821048,0.173624749,0.14049442,0.132786872,0.148201967,0.025294789,0.022197932,0.028391645,0.008592967,0.006903697,0.010282236,0.70703305,276136,390556,0.69691014,0.717155961,0.686390533,0.526772592,0.846008473,0.67708073,0.63909801,0.71506345,0.730176212,0.709169204,0.751183219,0.674761088,0.649773431,0.699748745,0.775781204,0.769017634,0.782544775,0.347,,390556,0.334446881,0.359553119,75.44055353,,,75.21447623,75.66663083,88.11403257,71.4899645,104.7381006,85.01071373,82.83311831,87.18830914,71.16376077,70.69661033,71.63091122,82.76335334,80.02958564,85.49712105,76.74032117,76.46528837,77.01535396,,,,475.9864724,10450,1990635,466.6840042,485.2889407,,,,226.7681562,191.0742297,262.4620828,659.0539095,637.7120079,680.3958111,335.5559621,303.6510488,367.4608753,427.3110578,415.9652904,438.6568252,,,,77.46294845,498,642888,70.65940091,84.26649598,,,,,,,124.1793526,108.8166154,139.5420898,82.03241523,66.67189922,99.87152212,46.59991135,38.36443724,54.83538545,,,,7.137554959,500,70052,6.511920682,7.763189236,,,,,,,13.27100795,11.61595648,14.92605942,6.338641946,5.026148846,7.888988588,4.100521352,3.421269031,4.779773673,,,,,,,0.115,,,0.098,0.132,0.175,,,0.151,0.199,0.113,,,0.098,0.13,650.4,3896,598978,,,0.104,73360,,,,0.082107628,51455.2907,626681,,,61.89440862,1295,2092273,58.52330109,65.26551614,,,,,,,71.38627129,64.38165546,78.39088713,27.35840884,20.87734813,35.21569525,68.95511818,64.21804192,73.69219444,,,,0.341,,,0.327,0.353,0.163465906,73057,446925,0.150359523,0.176572289,0.058388664,8451,144737,0.044090791,0.072686536,0.003089767,2188,708144,,,323.6489945,0.773507379,4822.045,6234,,,0.059652504,1981,33209,0.044833662,0.074471346,2.691060276,,,,,,,2.482626699,,3.233272697,2.591811641,,,,,,,2.290582438,,3.088275511,0.171079455,,,,,-7561.801,,,,,0.890452227,52022,58422,0.868159408,0.912745046,72561,,,70091.04255,75030.95745,62104,10511.31915,113696.6809,77287,67529.89362,87044.10638,52053,49791.55319,54314.44681,58950,56316.80851,61583.19149,84272,81900.93617,86643.06383,,,,,,,,,,,48.30945542,,,,,0.253841595,,72561,,,8.294531673,383,46175,,,13.01813737,630,4839402,12.00157355,14.03470118,,,,,,,33.75220688,30.6055665,36.89884725,11.01491419,8.297940806,14.33742487,4.506438712,3.710028198,5.302849225,,,,13.09419399,465,3476103,11.87410515,14.31428283,13.37704895,,,,7.918834384,3.797388889,14.56301838,8.559782531,6.766152882,10.68299599,6.909007563,4.553079519,10.05224327,16.11595681,14.3248184,17.90709522,,,,19.38952902,674,3476103,17.92568979,20.85336826,,,,7.558750387,3.624714617,13.90081109,38.49534527,34.51873491,42.47195564,14.06826696,10.4747488,18.49717293,12.81900686,11.23311492,14.40489879,,,,12.79083655,619,4839402,11.78318658,13.79848652,,,,9.413640919,5.483792739,15.07215103,16.79974098,14.5797699,19.01971206,13.01762587,10.04672882,16.59203278,11.39432878,10.12794708,12.66071047,,,,,,,,,,,0.620949096,309658,498685,,,0.621,,,,,190.0228089,,,,,0.541833657,163993,302663,0.532686815,0.550980499,0.156595395,46089,294319,0.14847106,0.16471973,0.910107942,275456,302663,0.904652795,0.915563089,708144,,,,,0.198760422,140751,708144,,,0.134491008,95239,708144,,,0.262654206,185997,708144,,,0.005370377,3803,708144,,,0.03870258,27407,708144,,,0.001135362,804,708144,,,0.109466436,77518,708144,,,0.563679139,399166,708144,,,0.048353779,32116,664188,0.044548434,0.052159125,0.516942882,366070,708144,,,0.031425482,22497,715884,, -47,039,47039,TN,Decatur County,2024,1,13541.46889,304,31017,10941.38025,16141.55753,0,,,,2,,,,2,,,,2,,,,2,13711.92618,10975.79487,16448.05749,,,,,2,,0.214,,,0.179,0.252,4.625146912,,,3.672077836,5.698643426,5.981186043,,,4.773222338,7.246598687,0.07840617,61,778,0.059517074,0.097295266,0,,,,,,,,,,,,,0.078404402,0.058864189,0.097944614,,,,,,,0.248,,,0.197,0.298,0.369,,,0.289,0.456,7.5,0.02828494,0.143,,,0.316,,,0.259,0.376,0.448797551,5132,11435,,,0.138365538,,,0.108333748,0.172423881,0.181818182,4,22,0.079048597,0.307478905,272.1,31,11391,,,16.56963726,37,2233,11.66655377,22.83906231,,,,,,,,,,,,,17.94871795,12.50193969,24.96232173,,,,,,,0.131527378,1141,8675,0.112463548,0.150591207,0.000263366,3,11391,,,3797,0.000518852,6,11564,,,1927.333333,0.001210654,14,11564,,,826,2793,,,,,,,,,2869,0.35,,,,,,,0.45,,0.35,0.34,,,,,,,0.35,,0.34,0.850516703,7078,8322,0.81625694,0.884776466,0.464169381,1140,2456,0.376340028,0.551998734,0.044752385,197,4402,,,0.23,529,,0.146595745,0.313404255,,,,,,,,,,0.038216561,0,0.206736039,0.23760432,0.148646121,0.32656252,4.396382999,91647,20846,3.337150845,5.455615153,0.092241379,214,2320,0.045272328,0.13921043,7.023088403,8,11391,,,106.6905286,62,58112,81.79901653,136.7724427,,,,,,,,,,,,,110.9251913,84.44139508,143.085415,,,,7.2,,,,,0,,,,,0.110032363,510,4635,0.073465043,0.146599682,0.091885965,0.052832742,0.130939188,0.007119741,0,0.017037949,0.011866235,0.002903498,0.020828972,0.832494279,3638,4370,0.771866784,0.893121774,,,,,,,,,,,,,0.840636338,0.793776265,0.887496411,0.31,,4370,0.240320789,0.379679211,71.741777,,,69.97984745,73.50370655,,,,,,,,,,,,,71.57880064,69.76348292,73.39411836,,,,648.3696094,304,31017,568.3053614,728.4338573,,,,,,,,,,,,,661.5020297,577.2922335,745.7118259,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.145,,,0.124,0.169,0.203,,,0.174,0.233,0.12,,,0.102,0.14,142.5,14,9828,,,0.143,1640,,,,0.02828494,332.5460379,11757,,,37.51262444,13,34655,19.97389263,64.14773025,,,,,,,,,,,,,37.89433795,19.58055739,66.19378232,,,,0.347,,,0.329,0.363,0.159019975,1019,6408,0.133998698,0.184041252,0.055370525,133,2402,0.036306695,0.074434354,0.002334832,27,11564,,,428.2962963,0.975,117.975,121,,,,,,,,3.380145224,,,,,,,,,3.432615961,3.259686426,,,,,,,,,3.31577162,0.012559049,,,,,-4324.336,,,,,0.837751321,38209,45609,0.645978066,1.029524576,52294,,,45485.82979,59102.17021,,,,,,,25302,9708.978723,40895.02128,,,,49515,41132.87234,57897.12766,,,,,,,,,,,42.61472634,,,,,0.35222014,,52294,,,12.98701299,8,616,,,,,,,,,,,,,,,,,,,,,,,,,,18.54932896,11,58112,8.895124242,34.11287639,18.92896476,,,,,,,,,,,,,18.05554653,8.256145604,34.27505151,,,,18.92896476,11,58112,9.449271006,33.86914667,,,,,,,,,,,,,20.68096787,10.32386465,37.00396419,,,,19.62203064,16,81541,11.21568592,31.86494843,,,,,,,,,,,,,20.07817101,11.2375999,33.11588969,,,,,,,,,,,0.569983687,5241,9195,,,0.487,,,,,13.51109409,,,,,0.782259913,3413,4363,0.75875578,0.805764046,0.102817598,416,4046,0.057839853,0.147795343,0.767820307,3350,4363,0.709940642,0.825699972,11564,,,,,0.202698028,2344,11564,,,0.232531996,2689,11564,,,0.025337254,293,11564,,,0.005534417,64,11564,,,0.007955725,92,11564,,,0.000951228,11,11564,,,0.039000346,451,11564,,,0.909200969,10514,11564,,,0.001646994,18,10929,0,0.010923383,0.498270495,5762,11564,,,1,11435,11435,, -47,041,47041,TN,DeKalb County,2024,1,14181.54911,508,57222,12288.16727,16074.93094,0,,,,2,,,,2,,,,2,,,,2,15202.11408,13078.29937,17325.9288,,,,,2,,0.219,,,0.184,0.258,4.738067919,,,3.749787939,5.745213107,6.259641344,,,5.071642957,7.476184415,0.101840491,166,1630,0.087158017,0.116522965,0,,,,,,,,,,0.088235294,0.045597555,0.130873033,0.103399433,0.087517722,0.119281145,,,,,,,0.243,,,0.195,0.292,0.36,,,0.283,0.444,6.9,0.071748276,0.15,,,0.328,,,0.273,0.387,0.548904383,11022,20080,,,0.140932356,,,0.111849729,0.174765187,0.208333333,5,24,0.105577141,0.326751616,268.6,55,20478,,,31.91769982,121,3791,26.23054603,37.6048536,,,,,,,,,,31.63017032,16.84173356,54.08855455,32.48984692,26.24549938,38.73419447,,,,,,,0.157850088,2605,16503,0.136403279,0.179296896,0.000390663,8,20478,,,2559.75,0.000238061,5,21003,,,4200.6,0.000523735,11,21003,,,1909.363636,2330,,,,,,,,,2296,0.39,,,,,,,,,0.39,0.48,,,,,,,0.21,,0.48,0.81092729,11666,14386,0.778210901,0.84364368,0.416328189,2050,4924,0.336856895,0.495799482,0.037617555,300,7975,,,0.218,965,,0.138170213,0.297829787,,,,,,,,,,0.3375,0.097253638,0.577746362,0.275700935,0.193702279,0.35769959,5.137251861,99375,19344,3.923801378,6.350702344,0.227114716,980,4315,0.150775592,0.30345384,7.324934076,15,20478,,,132.6194803,135,101795,110.247908,154.9910527,,,,,,,,,,,,,150.4620533,124.9860875,175.938019,,,,7.2,,,,,1,,,,,0.101542417,790,7780,0.072170416,0.130914417,0.077910053,0.049104776,0.10671533,0.026349614,0.009892282,0.042806947,0.000514139,0,0.004418598,0.833803508,6798,8153,0.793765107,0.873841909,,,,,,,,,,,,,0.857797387,0.803151358,0.912443416,0.427,,8153,0.351813339,0.502186661,71.24697244,,,69.97629654,72.51764833,,,,,,,,,,93.19003997,68.37688249,118.0031974,70.52019451,69.16027382,71.8801152,,,,653.7943227,508,57222,593.3420998,714.2465455,,,,,,,,,,,,,694.4937767,627.6868873,761.300666,,,,67.77540274,13,19181,36.08754753,115.8980028,,,,,,,,,,,,,70.32798414,35.1074763,125.8361902,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.147,,,0.126,0.17,0.202,,,0.174,0.233,0.12,,,0.101,0.139,195.9,34,17360,,,0.15,2970,,,,0.071748276,1343.342978,18723,,,64.71968287,40,61805,46.2366903,88.12983895,,,,,,,,,,,,,74.11112964,52.94607756,100.9183239,,,,0.352,,,0.334,0.368,0.193368352,2356,12184,0.165964097,0.220772607,0.05878453,266,4525,0.038529211,0.07903985,0.000714184,15,21003,,,1400.2,0.825,155.925,189,,,,,,,,2.894994128,,,,,,,,2.72363751,2.943531182,2.638058627,,,,,,,,2.421476966,2.658233632,0.02469813,,,,,-2919.398,,,,,0.753592336,38232,50733,0.597418896,0.909765777,55392,,,47674.7234,63109.2766,,,,,,,19653,2995.978723,36310.02128,45179,22469.21277,67888.78723,47703,38901.46809,56504.53192,,,,,,,,,,,36.88073395,,,,,0.24776141,,55392,,,6.324110672,8,1265,,,,,,,,,,,,,,,,,,,,,,,,,,16.92110824,16,101795,9.470615829,27.90879476,15.71786434,,,,,,,,,,,,,19.97614345,11.18049585,32.94761074,,,,13.75313129,14,101795,7.518964857,23.07541738,,,,,,,,,,,,,15.71991601,8.594224364,26.37534794,,,,19.2392652,27,140338,12.678797,27.99212077,,,,,,,,,,,,,21.06696052,13.76163805,30.86797829,,,,,,,,,,,0.573652291,8513,14840,,,0.522,,,,,15.31562519,,,,,0.686483254,5739,8360,0.637155833,0.735810674,0.126517332,1011,7991,0.082217824,0.17081684,0.779904306,6520,8360,0.73259911,0.827209503,21003,,,,,0.21601676,4537,21003,,,0.186449555,3916,21003,,,0.015569204,327,21003,,,0.006094368,128,21003,,,0.012331572,259,21003,,,0.000333286,7,21003,,,0.08713041,1830,21003,,,0.867161834,18213,21003,,,0.008839721,167,18892,0,0.019063118,0.497167071,10442,21003,,,0.759711155,15255,20080,, -47,043,47043,TN,Dickson County,2024,1,11721.50606,1067,152788,10679.09935,12763.91276,0,,,,2,,,,2,12795.92778,8502.801081,18493.67837,,11974.39723,7314.272916,18493.48535,1,11684.1162,10581.01907,12787.21333,,,,,2,,0.178,,,0.15,0.211,4.215353851,,,3.355750209,5.205827371,5.945702339,,,4.795109799,7.214640093,0.077169682,337,4367,0.069254721,0.085084642,0,,,,,,,0.128571429,0.073124156,0.184018701,0.04467354,0.020937369,0.068409711,0.074721781,0.06633269,0.083110872,,,,0.153153153,0.086155438,0.220150868,0.206,,,0.163,0.254,0.366,,,0.286,0.448,8.2,0.03906537,0.105,,,0.281,,,0.23,0.341,0.524772162,28503,54315,,,0.163761348,,,0.129648519,0.202175964,0.171875,11,64,0.111410137,0.2408279,329.2,182,55292,,,26.70239305,289,10823,23.62376421,29.7810219,,,,,,,33.25415677,18.18035695,55.79482452,47.91344668,32.55486241,68.00931299,24.62678435,21.41601167,27.83755703,,,,39.64757709,23.49766692,62.66026491,0.114823139,5262,45827,0.099333778,0.130312501,0.000307459,17,55292,,,3252.470588,0.000663546,37,55761,,,1507.054054,0.001201557,67,55761,,,832.2537313,2640,,,,,,,3960,,2575,0.4,,,,,,,0.4,,0.4,0.5,,,,,,0.55,0.37,,0.5,0.883593977,33505,37919,0.865332766,0.901855188,0.577064411,8323,14423,0.516262627,0.637866195,0.029550827,825,27918,,,0.142,1737,,0.089574468,0.194425532,,,,,,,0.136125655,0,0.336283295,0.170189099,0.012966311,0.327411887,0.127123786,0.081793444,0.172454129,3.503975202,122082,34841,3.026896546,3.981053858,0.195437632,2416,12362,0.147000049,0.243875214,7.234319612,40,55292,,,127.0770428,343,269915,113.6284727,140.5256129,,,,,,,122.2953904,65.11714479,209.1288421,95.86808551,45.97247336,176.3048226,130.2434391,115.8373166,144.6495616,,,,7.4,,,,,0,,,,,0.089723926,1755,19560,0.07062718,0.108820672,0.064860641,0.049092499,0.080628782,0.021728016,0.011267126,0.032188907,0.00408998,0,0.008231848,0.82241048,20969,25497,0.797359044,0.847461915,,,,,,,,,,,,,0.808838869,0.779307472,0.838370266,0.529,,25497,0.479071051,0.578928949,73.3618231,,,72.58900323,74.13464297,,,,,,,71.57527751,68.20413143,74.9464236,76.85004092,68.65998114,85.0401007,73.33420651,72.52579168,74.14262134,,,,542.4990728,1067,152788,508.6302256,576.36792,,,,,,,762.4965565,574.4167571,992.4940765,500.6206604,296.699531,791.196474,538.6625031,503.2428594,574.0821468,,,,46.42008319,25,53856,30.04063029,68.52519997,,,,,,,,,,,,,44.18620065,26.99007928,68.24200319,,,,5.953743989,26,4367,3.889183242,8.7236144,,,,,,,,,,,,,5.508919203,3.410107813,8.420968189,,,,,,,0.127,,,0.108,0.148,0.189,,,0.162,0.22,0.103,,,0.087,0.121,154.5,72,46596,,,0.105,5690,,,,0.03906537,1940.220646,49666,,,61.72990417,101,163616,49.69088829,73.76892004,,,,,,,,,,,,,66.48799446,53.91728453,81.10971474,,,,0.343,,,0.325,0.359,0.140167927,4691,33467,0.119912608,0.160423246,0.048472725,630,12997,0.034174852,0.062770597,0.001327092,74,55761,,,753.527027,0.94,538.62,573,,,,,,,,3.055746542,,,,,,,2.932002874,,3.104818679,3.000076473,,,,,,,2.866959472,,3.011129101,0.035545398,,,,,-1407.206,,,,,0.86552586,45016,52010,0.768169726,0.962881994,70192,,,62243.57447,78140.42553,83250,42224.6383,124275.3617,,,,56620,39893.87234,73346.12766,65510,48250.08511,82769.91489,69890,65703.10638,74076.89362,,,,,,,,,,,42.03119161,,,,,0.195520857,,70192,,,9.46969697,30,3168,,,6.42446436,24,373572,4.116275539,9.559093721,,,,,,,,,,,,,5.686443519,3.423610462,8.880085947,,,,23.51479687,66,269915,18.02865993,30.14490834,24.45214234,,,,,,,,,,,,,24.17579621,18.35769565,31.25282278,,,,22.22922031,60,269915,16.96323693,28.61341289,,,,,,,,,,,,,23.22812927,17.54627922,30.16365794,,,,23.55636932,88,373572,18.89289702,29.02210584,,,,,,,,,,,,,23.94292008,18.98524655,29.79903659,,,,,,,,,,,0.599383933,24323,40580,,,0.699,,,,,24.7060934,,,,,0.79807172,16224,20329,0.778466363,0.817677077,0.074070295,1452,19603,0.056899555,0.091241036,0.837719514,17030,20329,0.816641656,0.858797372,55761,,,,,0.222646653,12415,55761,,,0.170334105,9498,55761,,,0.0378042,2108,55761,,,0.006420258,358,55761,,,0.007299008,407,55761,,,0.00087875,49,55761,,,0.046107495,2571,55761,,,0.88366421,49274,55761,,,0.004148327,213,51346,0.000340569,0.007956086,0.504169581,28113,55761,,,0.695424837,37772,54315,, -47,045,47045,TN,Dyer County,2024,1,14054.07656,951,102382,12699.34751,15408.80561,0,,,,2,,,,2,22230.97764,17586.28351,26875.67177,,,,,2,12772.17191,11364.45023,14179.89359,,,,,2,,0.202,,,0.173,0.237,4.416120847,,,3.54673322,5.406940777,6.110726384,,,4.9265956,7.327415032,0.105361016,340,3227,0.09476798,0.115954053,0,,,,,,,0.172307692,0.143275075,0.201340309,,,,0.089969867,0.078333755,0.101605979,,,,0.126436782,0.056600625,0.196272938,0.224,,,0.182,0.271,0.345,,,0.272,0.424,6.4,0.149112844,0.137,,,0.306,,,0.254,0.363,0.627673161,23099,36801,,,0.146858392,,,0.115750981,0.181791284,0.204545455,9,44,0.128724208,0.289239842,792,290,36615,,,33.30455162,270,8107,29.33192471,37.27717854,,,,,,,43.64183597,33.13907576,56.41719319,27.84222738,14.38648517,48.63476809,30.20694259,25.80622444,34.60766074,,,,62.5,37.04146104,98.77694537,0.116781919,3462,29645,0.100101068,0.13346277,0.000327735,12,36615,,,3051.25,0.000521835,19,36410,,,1916.31579,0.00076902,28,36410,,,1300.357143,3779,,,,,,,2922,,3838,0.3,,,,,,,0.35,,0.3,0.43,,,,,,,0.37,,0.43,0.881809825,22062,25019,0.861079446,0.902540203,0.538090314,4683,8703,0.461571564,0.614609063,0.035712124,590,16521,,,0.232,1970,,0.150978723,0.313021277,,,,,,,0.32145749,0.13812507,0.50478991,0.130973451,0,0.293446921,0.1112025,0.073682302,0.148722699,5.451487128,109057,20005,4.585869407,6.31710485,0.335864688,2919,8691,0.268079048,0.403650328,13.1093814,48,36615,,,92.30769231,171,185250,78.47215882,106.1432258,,,,,,,109.4504831,73.30070629,157.189151,,,,95.20830216,79.43702464,110.9795797,,,,6.7,,,,,0,,,,,0.127373936,1945,15270,0.102687377,0.152060495,0.111479761,0.085418774,0.137540748,0.012770138,0.004098426,0.021441849,0.008185986,0.00011573,0.016256241,0.869760384,13757,15817,0.841507444,0.898013325,,,,,,,0.88878001,0.80385278,0.97370724,,,,0.892949168,0.863389613,0.922508724,0.242,,15817,0.200400125,0.283599875,70.66691159,,,69.7654531,71.56837008,,,,,,,65.95088021,63.19809123,68.70366919,,,,71.31256977,70.36014311,72.26499642,,,,706.875533,951,102382,659.9735337,753.7775323,,,,,,,939.723528,785.6706505,1093.776406,,,,679.3324764,629.2255966,729.4393563,,,,75.44813591,29,38437,50.52880073,108.3561085,,,,,,,191.3734727,101.8983143,327.2544666,,,,54.93700557,30.74782498,90.61023613,,,,9.185548071,30,3266,6.197450711,13.11294103,,,,,,,,,,,,,,,,,,,,,,0.136,,,0.118,0.158,0.198,,,0.172,0.226,0.118,,,0.1,0.135,121.2,37,30519,,,0.137,5060,,,,0.149112844,5716.240873,38335,,,19.91544986,22,110467,12.4809064,30.15223043,,,,,,,,,,,,,22.90216196,13.98923551,35.37053168,,,,0.368,,,0.352,0.384,0.147072755,3105,21112,0.124434457,0.169711053,0.043507363,390,8964,0.02920949,0.057805235,0.001675364,61,36410,,,596.8852459,0.940826873,364.1,387,,,,,,,,3.026427394,,,,,,,,,3.154428817,3.02426247,,,,,,,2.464375231,3.218255158,3.193654229,0.130174097,,,,,-3580.9453,,,,,0.71598545,39957,55807,0.619208238,0.812762662,53715,,,48006.57447,59423.42553,,,,,,,40128,23842.7234,56413.2766,,,,56270,51515.95745,61024.04255,,,,,,,,,,,44.10604337,,,,,0.255496602,,53715,,,8.699434537,20,2299,,,6.133769853,16,260851,3.505979449,9.96085796,,,,,,,32.22601176,16.65165053,56.29235719,,,,,,,,,,24.25646449,47,185250,17.62478423,32.5631714,25.37112011,,,,,,,,,,,,,23.85259923,16.70606726,33.02205152,,,,22.13225371,41,185250,15.88248738,30.02490125,,,,,,,41.51570048,20.7244881,74.28305598,,,,19.72171973,13.20794523,28.32367928,,,,21.8515551,57,260851,16.55015444,28.31122419,,,,,,,,,,,,,24.56801245,18.29249897,32.30239918,,,,,,,,,,,0.536142222,15079,28125,,,0.651,,,,,27.3347222,,,,,0.632718579,9263,14640,0.602018312,0.663418846,0.115155807,1626,14120,0.087100006,0.143211609,0.849931694,12443,14640,0.825640746,0.874222642,36410,,,,,0.237160121,8635,36410,,,0.180115353,6558,36410,,,0.148008789,5389,36410,,,0.004943697,180,36410,,,0.00755287,275,36410,,,0.00032958,12,36410,,,0.039906619,1453,36410,,,0.781735787,28463,36410,,,0.006097913,211,34602,0.00034807,0.011847757,0.511919802,18639,36410,,,0.543762398,20011,36801,, -47,047,47047,TN,Fayette County,2024,1,10077.94181,782,114540,8878.372863,11277.51076,0,,,,2,,,,2,14913.23411,12140.1481,17686.32012,,,,,2,8403.08105,7083.121344,9723.040756,,,,,2,,0.187,,,0.159,0.215,4.144479328,,,3.306892582,5.096638249,5.582713856,,,4.495277504,6.744674411,0.10052356,288,2865,0.089512666,0.111534454,0,,,,,,,0.162601626,0.137953552,0.1872497,,,,0.071273123,0.059510878,0.083035368,,,,,,,0.194,,,0.156,0.233,0.324,,,0.252,0.4,8.4,0.04852702,0.093,,,0.282,,,0.23,0.331,0.361109788,15163,41990,,,0.13001371,,,0.102807962,0.16203746,0.25,10,40,0.167808311,0.33763196,473.9,203,42832,,,19.30173148,136,7046,16.05771623,22.54574673,,,,,,,33.4841629,26.29226979,42.03630023,,,,12.82660333,9.635739186,16.73593501,,,,,,,0.114772272,3727,32473,0.099282911,0.130261634,0.000303511,13,42832,,,3294.769231,0.00032088,14,43630,,,3116.428571,0.0002292,10,43630,,,4363,2884,,,,,,,3221,,2720,0.33,,,,,,,0.42,,0.31,0.45,,,,,,,0.33,,0.47,0.902597609,28458,31529,0.888213059,0.916982158,0.627301587,5928,9450,0.562779063,0.691824112,0.035057561,673,19197,,,0.162,1205,,0.103617021,0.220382979,0.9,0.815608678,0.984391322,,,,0.421564482,0.314949424,0.52817954,0.124513619,0,0.312273141,0.041755635,0.021055179,0.06245609,4.543888805,150380,33095,4.025881164,5.061896446,0.267609322,2044,7638,0.196204551,0.339014093,9.805752708,42,42832,,,87.80951642,181,206128,75.01692971,100.6021031,,,,,,,103.0799581,78.27293383,133.2547492,,,,86.02582208,70.63384955,101.4177946,,,,8.5,,,,,0,,,,,0.097880299,1570,16040,0.076433136,0.119327462,0.085977157,0.064360293,0.107594022,0.015897756,0.007966518,0.023828993,0.003117207,0.00096439,0.005270024,0.789880385,14924,18894,0.759925359,0.819835412,,,,,,,0.725063475,0.676856973,0.773269977,,,,0.71406681,0.644265383,0.783868236,0.626,,18894,0.576499388,0.675500612,76.17597863,,,75.2307417,77.12121556,,,,,,,71.24237547,69.36547962,73.11927132,,,,77.83001766,76.7354782,78.92455712,,,,451.5540696,782,114540,416.2142135,486.8939258,,,,,,,630.2060561,550.1967745,710.2153378,,,,398.1278447,357.9024575,438.3532318,,,,74.89739058,25,33379,48.46964213,110.5633233,,,,,,,150.7017048,86.13904543,244.7301271,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.123,,,0.105,0.141,0.18,,,0.156,0.206,0.116,,,0.099,0.135,215.4,81,37611,,,0.093,3860,,,,0.04852702,1864.068405,38413,,,25.48075009,32,125585,17.4288142,35.97121637,,,,,,,,,,,,,29.48913031,19.08381029,43.53177359,,,,0.372,,,0.357,0.386,0.130974155,3294,25150,0.111910325,0.150037985,0.060350422,465,7705,0.041286592,0.079414252,0.00041256,18,43630,,,2423.888889,0.91,202.02,222,,,0.096662831,168,1738,0.033391987,0.159933675,2.578850811,,,,,,,2.411088568,,2.775055859,2.21492696,,,,,,,2.01833141,,2.479334476,0.023635594,,,,,-7717.531,,,,,0.744283782,46223,62104,0.654698159,0.833869406,84328,,,77681.87234,90974.12766,38125,19009.93617,57240.06383,,,,49572,39506.29787,59637.70213,86146,37402.17021,134889.8298,92011,84059,99963,,,,,,,,,,,17.27328312,,,,,0.218420928,,84328,,,7.010515774,14,1997,,,9.828596301,28,284883,6.531030864,14.2050582,,,,,,,19.25619729,10.77754744,31.76016903,,,,6.727002706,3.581845626,11.5033795,,,,12.31172679,29,206128,7.888355665,18.31887355,14.06892805,,,,,,,,,,,,,15.02481563,9.045920498,23.46311077,,,,19.89055344,41,206128,14.27380456,26.98378171,,,,,,,23.10412853,12.30197539,39.50876343,,,,20.07269182,13.33815794,29.01062845,,,,18.25310742,52,284883,13.63229368,23.93652192,,,,,,,37.22864809,24.93260991,53.4665487,,,,10.86669668,6.726656516,16.6109002,,,,,,,,,,,0.706547802,22984,32530,,,0.7,,,,,14.99483075,,,,,0.815789474,13392,16416,0.789127842,0.842451105,0.094021461,1472,15656,0.072756525,0.115286398,0.867446394,14240,16416,0.846959897,0.88793289,43630,,,,,0.177469631,7743,43630,,,0.233119413,10171,43630,,,0.271006188,11824,43630,,,0.004561082,199,43630,,,0.008503323,371,43630,,,0.00052716,23,43630,,,0.035434334,1546,43630,,,0.670479028,29253,43630,,,0.009100629,366,40217,0.004521447,0.013679811,0.503690122,21976,43630,,,0.746868302,31361,41990,, -47,049,47049,TN,Fentress County,2024,1,14116.9241,522,51309,12162.15188,16071.69632,0,,,,2,,,,2,,,,2,,,,2,14297.01164,12299.0621,16294.96118,,,,,2,,0.226,,,0.188,0.267,5.034089059,,,4.023130827,6.122785914,6.652840482,,,5.429618249,7.952870437,0.083142639,109,1311,0.068196896,0.098088382,0,,,,,,,,,,,,,0.083790133,0.068593249,0.098987017,,,,,,,0.261,,,0.209,0.313,0.353,,,0.281,0.433,7.4,0.001175137,0.161,,,0.334,,,0.273,0.394,0.683108876,12630,18489,,,0.132401152,,,0.104320858,0.165174641,0.111111111,2,18,0.022704408,0.253963321,217.5,41,18850,,,30.81621322,111,3602,25.08332,36.54910643,,,,,,,,,,,,,32.19198127,26.17598671,38.20797583,,,,,,,0.134682484,1930,14330,0.115618655,0.153746314,0.000318302,6,18850,,,3141.666667,5.17277E-05,1,19332,,,19332,0.000362094,7,19332,,,2761.714286,3540,,,,,,,,,3556,0.39,,,,,,,,,0.39,0.39,,,,,,,,,0.39,0.809113209,10885,13453,0.77765023,0.840576188,0.49153412,1916,3898,0.37703457,0.60603367,0.037757882,291,7707,,,0.338,1300,,0.248638298,0.427361702,,,,,,,,,,,,,0.264946889,0.18306233,0.346831449,4.133894147,82558,19971,3.04244389,5.225344403,0.270128508,1030,3813,0.151680218,0.388576798,6.896551724,13,18850,,,136.197075,126,92513,112.4156114,159.9785386,,,,,,,,,,,,,136.1033936,111.8522435,160.3545437,,,,7,,,,,1,,,,,0.0807327,595,7370,0.059631735,0.101833665,0.069368132,0.043826198,0.094910066,0.006784261,0,0.013893117,0.005427408,0,0.011889637,0.852251999,6074,7127,0.794214086,0.910289913,,,,,,,,,,,,,0.831953331,0.786040342,0.877866319,0.322,,7127,0.249907509,0.394092491,71.17796329,,,69.92306788,72.4328587,,,,,,,,,,,,,70.9633117,69.69712543,72.22949797,,,,682.6263586,522,51309,617.8486406,747.4040765,,,,,,,,,,,,,695.0317766,628.4971069,761.5664463,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.155,,,0.13,0.179,0.213,,,0.182,0.241,0.123,,,0.103,0.143,61.9,10,16154,,,0.161,2960,,,,0.001175137,21.10428759,17959,,,42.73504274,24,56160,27.38114825,63.58635611,,,,,,,,,,,,,44.55666122,28.54829358,66.29678003,,,,0.358,,,0.339,0.376,0.164985387,1750,10607,0.138772621,0.191198153,0.049732211,195,3921,0.03305136,0.066413062,0.001034554,20,19332,,,966.6,0.975,180.375,185,,,,,,,,2.96088417,,,,,,,,,2.962568502,2.772503616,,,,,,,,,2.767557324,0.034851733,,,,,-900.8438,,,,,0.853901235,34583,40500,0.644773829,1.06302864,41147,,,35545.80851,46748.19149,,,,,,,,,,90769,14800.82979,166737.1702,48091,44318.74468,51863.25532,,,,,,,,,,,,,,,,0.333535859,,41147,,,9.451795841,10,1058,,,,,,,,,,,,,,,,,,,,,,,,,,25.31208109,25,92513,15.86294646,38.32279497,27.02322917,,,,,,,,,,,,,25.01759378,15.48628486,38.2420496,,,,22.6995125,21,92513,14.05135601,34.69861612,,,,,,,,,,,,,22.49642869,13.74140309,34.74390955,,,,24.90989624,32,128463,17.03835058,35.16534106,,,,,,,,,,,,,24.25771395,16.36657774,34.62939501,,,,,,,,,,,0.600137504,8729,14545,,,0.474,,,,,4.374121134,,,,,0.773629552,5885,7607,0.731888625,0.815370479,0.08195812,591,7211,0.051428055,0.112488184,0.792559485,6029,7607,0.755168511,0.829950459,19332,,,,,0.203393338,3932,19332,,,0.230912477,4464,19332,,,0.005327954,103,19332,,,0.005224498,101,19332,,,0.005845231,113,19332,,,0.000362094,7,19332,,,0.021829092,422,19332,,,0.951996689,18404,19332,,,0.001192166,21,17615,0,0.006915696,0.506776329,9797,19332,,,1,18489,18489,, -47,051,47051,TN,Franklin County,2024,1,10562.85143,876,117034,9440.638294,11685.06456,0,,,,2,,,,2,9752.859721,5780.162775,15413.72307,1,,,,2,10918.05716,9700.304406,12135.80991,,,,,2,,0.192,,,0.163,0.225,4.262801934,,,3.367180843,5.2122308,5.991607145,,,4.894471605,7.131439461,0.088444595,261,2951,0.078199909,0.098689281,0,,,,,,,0.203703704,0.127744395,0.279663013,0.078431373,0.03583044,0.121032305,0.085212075,0.074515001,0.095909149,,,,,,,0.213,,,0.171,0.26,0.397,,,0.318,0.472,7.5,0.063925586,0.129,,,0.29,,,0.239,0.342,0.414223594,17718,42774,,,0.15390402,,,0.120727994,0.186970126,0.290322581,9,31,0.195384033,0.388273114,293.9,127,43215,,,20.52483599,219,10670,17.80643381,23.24323817,,,,,,,25.11415525,12.53689582,44.93616099,32.88201161,19.1549835,52.64728591,20.42384979,17.48865311,23.35904646,,,,,,,0.122735549,3977,32403,0.106054698,0.1394164,0.000555363,24,43215,,,1800.625,0.000295845,13,43942,,,3380.153846,0.000591689,26,43942,,,1690.076923,2688,,,,,,,1780,,2706,0.43,,,,,,,0.57,,0.43,0.47,,,,,,0.5,0.41,0.19,0.47,0.899763194,26597,29560,0.883105225,0.916421162,0.467533864,4349,9302,0.407302344,0.527765383,0.035272632,676,19165,,,0.187,1581,,0.131,0.243,,,,,,,0.249221184,0.03298313,0.465459238,0.21780303,0.010397117,0.425208944,0.204847768,0.151550502,0.258145035,4.391756272,110277,25110,3.839682501,4.943830044,0.271214446,2298,8473,0.217630527,0.324798365,10.64445216,46,43215,,,90.3286829,191,211450,77.51821285,103.139153,,,,,,,,,,,,,97.68350544,83.49157044,111.8754405,,,,7.8,,,,,0,,,,,0.125492574,2070,16495,0.101328916,0.149656231,0.112754159,0.089260718,0.1362476,0.017277963,0.0087336,0.025822327,0.008184298,0.001340894,0.015027702,0.814045866,15370,18881,0.790118737,0.837972996,,,,,,,,,,,,,0.795451365,0.766534102,0.824368627,0.342,,18881,0.297196198,0.386803803,74.31886777,,,73.48072279,75.15701276,,,,,,,74.51144321,71.16923571,77.85365071,,,,73.90097377,73.01353054,74.788417,,,,526.6622987,876,117034,489.1028102,564.2217873,,,,,,,503.2408311,356.1231635,690.7373587,,,,542.450431,502.1322675,582.7685944,,,,60.83341782,24,39452,38.97711866,90.51530364,,,,,,,,,,,,,60.76072427,37.1142289,93.84001064,,,,9.313556399,27,2899,6.137692353,13.55073558,,,,,,,,,,,,,10.07751938,6.582970239,14.76590081,,,,,,,0.132,,,0.113,0.152,0.192,,,0.165,0.219,0.112,,,0.095,0.129,80.3,30,37352,,,0.129,5470,,,,0.063925586,2624.273135,41052,,,23.45435782,30,127908,15.82455673,33.48255418,,,,,,,,,,,,,23.98997752,15.80954635,34.90415777,,,,0.355,,,0.337,0.371,0.149987491,3597,23982,0.127349193,0.172625789,0.046603032,415,8905,0.03111367,0.062092394,0.00100132,44,43942,,,998.6818182,0.93,336.66,362,,,,,,,,2.815379065,,,,,,,2.367076696,,2.864310851,2.512478117,,,,,,,,,2.573270573,0.043726311,,,,,-341.7959,,,,,0.727413437,38067,52332,0.646099393,0.808727482,61417,,,55401.17021,67432.82979,,,,74286,4103.702128,144468.2979,35905,18199.46809,53610.53192,52381,26591.21277,78170.78723,58888,53448.85106,64327.14894,,,,,,,,,,,34.02088037,,,,,0.223456046,,61417,,,10.17935046,21,2063,,,5.431111443,16,294599,3.104349456,8.819784724,,,,,,,,,,,,,5.378678151,2.940573396,9.024507994,,,,26.65151312,56,211450,19.84380207,35.04181778,26.48380232,,,,,,,,,,,,,29.24425089,21.6350578,38.66245057,,,,20.80870182,44,211450,15.1196346,27.93471094,,,,,,,,,,,,,22.00562485,15.79161632,29.85311491,,,,17.31166773,51,294599,12.88967371,22.76164596,,,,,,,,,,,,,18.82537353,13.92711497,24.88814216,,,,,,,,,,,0.579231002,19132,33030,,,0.663,,,,,18.23478259,,,,,0.75996188,12759,16789,0.732308949,0.787614811,0.105020233,1661,15816,0.084117621,0.125922844,0.760021443,12760,16789,0.729674992,0.790367893,43942,,,,,0.195621501,8596,43942,,,0.210186155,9236,43942,,,0.048063356,2112,43942,,,0.005689318,250,43942,,,0.008761549,385,43942,,,0.000955805,42,43942,,,0.039688681,1744,43942,,,0.878612717,38608,43942,,,0.00518756,212,40867,0.000788887,0.009586233,0.507145783,22285,43942,,,0.679033993,29045,42774,, -47,053,47053,TN,Gibson County,2024,1,13746.12259,1246,137061,12589.09205,14903.15313,0,,,,2,,,,2,18698.37396,15442.94746,21953.80046,,,,,2,13054.60163,11772.65708,14336.54617,,,,,2,,0.208,,,0.177,0.243,4.568299304,,,3.637137938,5.500443202,5.776379321,,,4.636763041,6.925993313,0.090594915,367,4051,0.081755866,0.099433964,0,,,,,,,0.156363636,0.131579452,0.18114782,,,,0.074631861,0.065208948,0.084054774,,,,,,,0.232,,,0.185,0.28,0.386,,,0.313,0.466,7.1,0.106124712,0.125,,,0.316,,,0.263,0.377,0.665549585,33563,50429,,,0.142541318,,,0.113104595,0.176658159,0.326086957,15,46,0.249285606,0.403213906,544.1,275,50541,,,25.29006527,279,11032,22.32247512,28.25765541,,,,,,,38.63845446,30.8195445,47.83703577,22.22222222,11.09325327,39.76169397,21.64664665,18.42094907,24.87234422,,,,36.66666667,18.30386789,65.60679504,0.11892995,4837,40671,0.103440588,0.134419312,0.000395718,20,50541,,,2527.05,0.000373744,19,50837,,,2675.631579,0.000354073,18,50837,,,2824.277778,2937,,,,,,,3558,,2856,0.43,,,,,,,0.42,,0.43,0.46,,,,,,,0.38,0.22,0.46,0.876136001,30175,34441,0.85527426,0.896997742,0.535194559,6767,12644,0.476510896,0.593878222,0.035379764,763,21566,,,0.179,2168,,0.113468085,0.244531915,,,,,,,0.236455982,0.128770764,0.3441412,0.20212766,0.072462644,0.331792675,0.113547931,0.076403119,0.150692743,4.928294845,105638,21435,4.295367078,5.561222612,0.28673394,3495,12189,0.218346026,0.355121855,16.81802893,85,50541,,,104.8629696,259,246989,92.09186854,117.6340707,,,,,,,117.3523504,87.64434836,153.8919946,,,,106.4109993,91.73637782,121.0856208,,,,7.7,,,,,0,,,,,0.118142383,2315,19595,0.093491299,0.142793468,0.102412166,0.079354804,0.125469528,0.013268691,0.006987931,0.019549451,0.011992855,0.003597313,0.020388398,0.833987237,17643,21155,0.803837579,0.864136896,,,,,,,0.845510723,0.803227172,0.887794275,,,,0.776571328,0.730503093,0.822639563,0.401,,21155,0.353206571,0.448793429,70.81374669,,,70.04014069,71.58735269,,,,,,,67.22607455,65.30760198,69.14454711,,,,71.35129326,70.48726772,72.2153188,,,,698.3639075,1246,137061,657.9463023,738.7815128,,,,,,,901.2276999,789.2967423,1013.158658,,,,669.9550443,625.4338919,714.4761967,,,,67.11152017,35,52152,46.74563277,93.33587853,,,,,,,,,,,,,61.68866002,39.10531874,92.56327887,,,,6.125949522,25,4081,3.964391533,9.043109948,,,,,,,,,,,,,,,,,,,,,,0.139,,,0.119,0.161,0.196,,,0.169,0.225,0.125,,,0.106,0.145,211.9,89,42004,,,0.125,6300,,,,0.106124712,5272.594039,49683,,,28.21954808,42,148833,20.3381681,38.14463108,,,,,,,,,,,,,32.40667753,22.81729165,44.66833617,,,,0.36,,,0.345,0.375,0.150218188,4303,28645,0.12877138,0.171664997,0.046056282,581,12615,0.03175841,0.060354155,0.001180243,60,50837,,,847.2833333,0.957087302,602.965,630,,,,,,,,2.932038469,,,,,,,2.467896311,2.639904034,3.08605263,3.047248558,,,,,,,2.541424983,2.626991346,3.219283232,0.164647989,,,,,-6606.33286,,,,,0.789264179,40052,50746,0.706899628,0.871628729,55608,,,49874.55319,61341.44681,11472,10881.02128,12062.97872,,,,34277,26607.38298,41946.61702,87404,17357.53192,157450.4681,60021,55324.14894,64717.85106,,,,,,,,,,,41.71509228,,,,,0.246799022,,55608,,,9.871668312,30,3039,,,9.25419837,32,345789,6.329864834,13.0641669,,,,,,,33.74578178,20.88917079,51.58401211,,,,4.131750247,2.062554837,7.392842499,,,,21.27279098,52,246989,15.73772788,28.12375783,21.05356919,,,,,,,,,,,,,22.71838429,16.3031048,30.82005357,,,,21.05356919,52,246989,15.72381248,27.60895495,,,,,,,49.64907134,31.11480868,75.16929067,,,,15.27682663,10.23113056,21.94007135,,,,24.29227072,84,345789,19.3764665,30.07548412,,,,,,,19.28330387,9.963964501,33.68405118,,,,26.29295612,20.49664919,33.21956828,,,,,,,,,,,0.604874746,22335,36925,,,0.646,,,,,19.68607471,,,,,0.663424905,13234,19948,0.628121615,0.698728195,0.098990767,1844,18628,0.077057442,0.120924091,0.842690997,16810,19948,0.817469854,0.867912139,50837,,,,,0.242107127,12308,50837,,,0.175679131,8931,50837,,,0.173692389,8830,50837,,,0.003619411,184,50837,,,0.005134056,261,50837,,,0.000295061,15,50837,,,0.033518894,1704,50837,,,0.764541574,38867,50837,,,0.006804441,323,47469,0.001780478,0.011828403,0.513366249,26098,50837,,,0.707747526,35691,50429,, -47,055,47055,TN,Giles County,2024,1,12720.22276,716,81991,11192.85591,14247.5896,0,,,,2,,,,2,15868.32855,10923.02723,22285.03307,,,,,2,12795.91503,11116.22926,14475.60081,,,,,2,,0.196,,,0.163,0.23,4.480283655,,,3.553907094,5.507937002,6.074590941,,,4.899612671,7.340428863,0.102961276,226,2195,0.0902473,0.115675251,0,,,,,,,0.180412371,0.126301309,0.234523434,,,,0.095133953,0.081687457,0.108580449,,,,,,,0.226,,,0.181,0.273,0.337,,,0.264,0.413,8,0.048451695,0.113,,,0.306,,,0.252,0.362,0.365649509,11096,30346,,,0.146285818,,,0.114810863,0.179667464,0.275,11,40,0.192155924,0.361346198,409.3,125,30542,,,25.4066615,164,6455,21.51816468,29.29515833,,,,,,,34.81012658,21.815321,52.70294998,,,,24.13127413,19.90087526,28.36167301,,,,44.17670683,22.05285288,79.04433138,0.108383686,2583,23832,0.092894324,0.123873048,0.00036016,11,30542,,,2776.545455,0.000556392,17,30554,,,1797.294118,0.000654579,20,30554,,,1527.7,3222,,,,,,,3087,,3232,0.37,,,,,,,0.43,,0.37,0.43,,,,,,,0.36,,0.44,0.880413432,18825,21382,0.860637854,0.90018901,0.500528781,3313,6619,0.427542283,0.573515279,0.032771473,488,14891,,,0.223,1395,,0.150319149,0.295680851,,,,,,,0.268199234,0.116436934,0.419961533,0.141818182,0,0.446465275,0.139475909,0.095036393,0.183915425,5.35479787,122657,22906,4.258421855,6.451173884,0.285160039,1764,6186,0.221289863,0.349030215,9.822539454,30,30542,,,127.9978443,190,148440,109.7974026,146.1982859,,,,,,,66.55131106,31.91394048,122.3902306,,,,139.6905934,118.9343569,160.4468298,,,,7.6,,,,,0,,,,,0.108547009,1270,11700,0.08418619,0.132907827,0.088392466,0.064906345,0.111878588,0.017521368,0.005821461,0.029221274,0.014957265,0.005346572,0.024567958,0.841938298,10616,12609,0.816206479,0.867670117,,,,,,,,,,,,,0.867995019,0.831185468,0.904804569,0.456,,12609,0.396832025,0.515167975,71.98239181,,,70.94022054,73.02456307,,,,,,,69.42992639,66.38220946,72.47764332,,,,71.88280535,70.73977959,73.02583111,,,,611.4853051,716,81991,562.9844056,659.9862047,,,,,,,774.4391627,602.5598943,980.1023256,,,,611.0186164,558.660437,663.3767959,,,,64.90930727,18,27731,38.46936923,102.5846896,,,,,,,,,,,,,78.38436002,45.66177826,125.5009536,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.136,,,0.116,0.158,0.196,,,0.169,0.225,0.115,,,0.098,0.133,142.2,37,26027,,,0.113,3420,,,,0.048451695,1428.598229,29485,,,26.80486062,24,89536,17.17437998,39.88350786,,,,,,,,,,,,,28.03139516,17.35187541,42.84896515,,,,0.348,,,0.333,0.363,0.132019253,2304,17452,0.110572444,0.153466061,0.045250896,303,6696,0.030953024,0.059548768,0.001112784,34,30554,,,898.6470588,0.9,245.7,273,,,,,,,,2.985895708,,,,,,,2.611100157,,3.082088378,2.987783427,,,,,,,2.643758013,,3.084677063,0.076863519,,,,,-699.1836,,,,,0.951070909,45737,48090,0.852449263,1.049692555,54684,,,47681.61702,61686.38298,84375,39648.87234,129101.1277,,,,54024,40348.08511,67699.91489,,,,59442,52442,66442,,,,,,,,,,,30.83852903,,,,,0.250969205,,54684,,,7.011866235,13,1854,,,,,,,,,,,,,,,,,,,,,,,,,,18.81308032,32,148440,12.59941515,27.01872152,21.55753166,,,,,,,,,,,,,20.2349455,13.21813821,29.6488835,,,,19.53651307,29,148440,13.08390942,28.05769162,,,,,,,,,,,,,21.67612656,14.28470399,31.5376261,,,,30.96379655,64,206693,23.84589635,39.54007693,,,,,,,,,,,,,34.51290783,26.33698458,44.42495364,,,,,,,,,,,0.571558442,13203,23100,,,0.657,,,,,20.97048812,,,,,0.732062879,8336,11387,0.701336436,0.762789321,0.088961341,955,10735,0.062867782,0.115054901,0.83437253,9501,11387,0.804074659,0.864670401,30554,,,,,0.209465209,6400,30554,,,0.209563396,6403,30554,,,0.094553905,2889,30554,,,0.005727564,175,30554,,,0.005531191,169,30554,,,0.000752766,23,30554,,,0.036754598,1123,30554,,,0.835340708,25523,30554,,,0.004296943,123,28625,0,0.01123679,0.514957125,15734,30554,,,0.731167205,22188,30346,, -47,057,47057,TN,Grainger County,2024,1,13688.21181,601,64952,11901.43429,15474.98933,0,,,,2,,,,2,,,,2,,,,2,14324.27653,12413.88374,16234.66932,,,,,2,,0.216,,,0.181,0.256,4.747031352,,,3.764679672,5.826236671,6.452052575,,,5.246961939,7.706537681,0.096072508,159,1655,0.08187463,0.110270385,0,,,,,,,,,,,,,0.098528471,0.083753268,0.113303674,,,,,,,0.25,,,0.2,0.303,0.387,,,0.305,0.47,,,0.142,,,0.325,,,0.268,0.386,0.089939219,2116,23527,,,0.136980048,,,0.106392163,0.170093915,0.068965517,2,29,0.012471029,0.173466731,197.8,47,23763,,,31.54574133,140,4438,26.3201819,36.77130076,,,,,,,,,,,,,31.7615441,26.30162758,37.22146062,,,,,,,0.147886945,2747,18575,0.127631626,0.168142264,0.000126247,3,23763,,,7921,0.000123574,3,24277,,,8092.333333,0.000247148,6,24277,,,4046.166667,2466,,,,,,,,,2476,0.43,,,,,,,,,0.43,0.42,,,,,,,,,0.42,0.810017472,13908,17170,0.775145983,0.844888962,0.479635376,2473,5156,0.401525488,0.557745265,0.038354756,373,9725,,,0.233,1056,,0.154361702,0.311638298,,,,,,,,,,0.326530612,0.036669742,0.616391483,0.215500486,0.158962352,0.27203862,5.351523268,95910,17922,4.095244435,6.6078021,0.211700975,977,4615,0.147192396,0.276209554,6.733156588,16,23763,,,122.2880696,143,116937,102.2446351,142.3315042,,,,,,,,,,,,,129.1308223,107.8914432,150.3702013,,,,9.8,,,,,0,,,,,0.113723346,1040,9145,0.080412348,0.147034344,0.097006652,0.066010744,0.12800256,0.019026791,0.005733939,0.032319643,0.003280481,0,0.008170117,0.784932526,7387,9411,0.753214251,0.816650801,,,,,,,,,,,,,0.706639954,0.669959727,0.743320181,0.53,,9411,0.460914163,0.599085837,71.70167986,,,70.49055945,72.91280028,,,,,,,,,,,,,71.13221297,69.86932536,72.39510058,,,,628.5232002,601,64952,573.9356246,683.1107758,,,,,,,,,,,,,649.6157731,592.3348623,706.8966838,,,,68.17628439,14,20535,37.27260909,114.3882207,,,,,,,,,,,,,75.20412548,41.11479521,126.1797439,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.149,,,0.126,0.173,0.207,,,0.178,0.237,0.117,,,0.099,0.137,97,20,20609,,,0.142,3330,,,,,,22657,,,52.37232477,37,70648,36.87494985,72.1883509,,,,,,,,,,,,,54.27572066,38.01404749,75.14047535,,,,0.354,,,0.336,0.37,0.178199458,2498,14018,0.151986692,0.204412224,0.056752278,274,4828,0.038879938,0.074624619,0.000494295,12,24277,,,2023.083333,0.95,255.55,269,,,,,,,,2.835236419,,,,,,,,,2.82158641,2.770053336,,,,,,,,,2.732321192,0.063867095,,,,,-2961.296,,,,,0.742350702,34719,46769,0.616014392,0.868687013,51951,,,45340.61702,58561.38298,,,,,,,,,,50825,16917.59575,84732.40426,47100,42808.25532,51391.74468,,,,,,,,,,,54.66462949,,,,,0.264172008,,51951,,,8.764241893,10,1141,,,,,,,,,,,,,,,,,,,,,,,,,,20.34553231,25,116937,12.75043678,30.80338043,21.37903316,,,,,,,,,,,,,21.81144118,13.66911407,33.02278407,,,,17.95838785,21,116937,11.11652512,27.45130347,,,,,,,,,,,,,19.09681174,11.82122746,29.19150532,,,,31.9302447,52,162855,23.84703399,41.87226781,,,,,,,,,,,,,33.88328512,25.30565799,44.43342048,,,,,,,,,,,0.557886045,10134,18165,,,0.587,,,,,7.887077897,,,,,0.770034101,7226,9384,0.740730231,0.799337971,0.126119996,1112,8817,0.091887349,0.160352642,0.735720375,6904,9384,0.704487582,0.766953168,24277,,,,,0.191992421,4661,24277,,,0.216871936,5265,24277,,,0.008485398,206,24277,,,0.005396054,131,24277,,,0.003048153,74,24277,,,0.000741443,18,24277,,,0.037319273,906,24277,,,0.933970425,22674,24277,,,0.012316144,278,22572,0.002643466,0.021988822,0.494871689,12014,24277,,,0.844306541,19864,23527,, -47,059,47059,TN,Greene County,2024,1,12459.55979,1734,190014,11492.26846,13426.85112,0,,,,2,,,,2,14529.07727,9210.188669,21800.74961,1,,,,2,12844.70037,11807.41586,13881.98489,,,,,2,,0.206,,,0.173,0.239,4.669765336,,,3.768401272,5.702757332,6.323750656,,,5.204315739,7.495788556,0.086172785,392,4549,0.07801795,0.094327621,0,,,,,,,,,,0.113537118,0.072446986,0.15462725,0.084179971,0.075715881,0.092644061,,,,,,,0.245,,,0.198,0.295,0.373,,,0.302,0.451,6.7,0.111357515,0.141,,,0.314,,,0.263,0.371,0.640466416,44930,70152,,,0.143643457,,,0.113595799,0.17820322,0.185185185,15,81,0.130513732,0.245741946,286,202,70621,,,27.62822329,390,14116,24.88616473,30.37028185,,,,,,,,,,34.79381443,22.92934295,50.62317325,27.95180723,25.01499391,30.88862055,,,,27.77777778,13.32052416,51.08432234,0.114328192,6152,53810,0.09883883,0.129817554,0.000523924,37,70621,,,1908.675676,0.000420139,30,71405,,,2380.166667,0.001050347,75,71405,,,952.0666667,3001,,,,,,,3338,,2990,0.47,,,,,,,0.42,,0.47,0.47,,,,,,,0.48,0.55,0.47,0.864327162,43792,50666,0.847407937,0.881246388,0.486641221,7650,15720,0.434340434,0.538942009,0.039790285,1146,28801,,,0.229,2986,,0.159893617,0.298106383,,,,,,,0.130890052,0,0.38389044,0.280871671,0.096729864,0.465013478,0.234168923,0.180224896,0.28811295,4.489959653,96817,21563,3.8230174,5.156901906,0.244469441,3260,13335,0.187280837,0.301658046,9.912065816,70,70621,,,127.8963924,444,347156,115.9997918,139.792993,,,,,,,,,,,,,134.8127532,122.1291635,147.4963429,,,,7.9,,,,,0,,,,,0.104306742,2870,27515,0.085958129,0.122655355,0.091793648,0.073510407,0.110076889,0.011266582,0.005850531,0.016682632,0.005269853,0.000797572,0.009742134,0.847292368,24158,28512,0.815426941,0.879157795,,,,,,,,,,,,,0.850123832,0.819106857,0.881140806,0.318,,28512,0.285544215,0.350455785,72.42820678,,,71.75523533,73.10117823,,,,,,,,,,,,,72.09866644,71.38880584,72.80852704,,,,609.40098,1734,190014,578.3207472,640.4812128,,,,,,,820.1806093,583.2285909,1121.213893,,,,619.7470521,587.2728178,652.2212864,,,,55.22180759,33,59759,38.01215143,77.55194911,,,,,,,,,,,,,59.45417234,40.39622558,84.39045186,,,,4.80349345,22,4580,3.010323771,7.272546809,,,,,,,,,,,,,5.287190579,3.313454187,8.004870076,,,,,,,0.142,,,0.121,0.164,0.201,,,0.173,0.23,0.114,,,0.097,0.133,100.9,62,61428,,,0.141,9860,,,,0.111357515,7664.849114,68831,,,35.84040982,75,209261,28.1907559,44.92626407,,,,,,,,,,,,,37.67994756,29.53506399,47.376877,,,,0.367,,,0.348,0.383,0.139921143,5678,40580,0.119665824,0.160176463,0.03777507,527,13951,0.025860176,0.049689964,0.001736573,124,71405,,,575.8467742,0.927197724,651.82,703,,,0.093625498,329,3514,0.041710992,0.145540004,2.837878394,,,,,,,2.824556419,,2.861348358,2.7996218,,,,,,,2.410236944,,2.838340598,0.064430102,,,,,-504.21755,,,,,0.803755909,37578,46753,0.712665133,0.894846685,50410,,,44684.89362,56135.10638,,,,,,,36968,24347.74468,49588.25532,28664,19454.97872,37873.02128,52941,48046.3617,57835.6383,,,,,,,,,,,65.65429148,,,,,0.365383852,,50410,,,11.62790698,38,3268,,,2.477542113,12,484351,1.280182163,4.327767476,,,,,,,,,,,,,2.445928308,1.220998599,4.376441377,,,,21.8402287,85,347156,17.20761615,27.33630299,24.48466972,,,,,,,,,,,,,22.60391723,17.71786282,28.42103229,,,,16.7071864,58,347156,12.68646709,21.59791268,,,,,,,,,,,,,17.70582242,13.41021699,22.93994664,,,,22.91726455,111,484351,18.65385199,27.1806771,,,,,,,,,,,,,23.79221172,19.28405507,28.30036837,,,,,,,,,,,0.509422327,28087,55135,,,0.665,,,,,30.96656901,,,,,0.754149116,20948,27777,0.728519121,0.779779112,0.083121093,2154,25914,0.064990073,0.101252113,0.766857472,21301,27777,0.745728784,0.78798616,71405,,,,,0.187031721,13355,71405,,,0.223541769,15962,71405,,,0.022421399,1601,71405,,,0.003949303,282,71405,,,0.006232057,445,71405,,,0.000882291,63,71405,,,0.034745466,2481,71405,,,0.919655486,65668,71405,,,0.004570425,307,67171,0.001024306,0.008116544,0.503480148,35951,71405,,,0.673295131,47233,70152,, -47,061,47061,TN,Grundy County,2024,1,16743.33243,399,36936,14184.55041,19302.11446,0,,,,2,,,,2,,,,2,,,,2,17155.11853,14502.21566,19808.02141,,,,,2,,0.219,,,0.183,0.258,4.779781881,,,3.806357563,5.945148903,6.373485292,,,5.143982721,7.715371872,0.095196507,109,1145,0.078196818,0.112196195,0,,,,,,,,,,,,,0.096514745,0.079212662,0.113816829,,,,,,,0.257,,,0.207,0.311,0.382,,,0.304,0.466,7.2,0.037450746,0.152,,,0.327,,,0.269,0.39,0.377411486,5106,13529,,,0.13970122,,,0.10948448,0.174514613,0.181818182,2,11,0.044108943,0.367070091,249.6,34,13622,,,48.44290657,126,2601,39.98425781,56.90155534,,,,,,,,,,,,,49.38271605,40.69070637,58.07472573,,,,,,,0.15486767,1656,10693,0.134612351,0.17512299,,0,13622,,,,,0,13783,,,,0.000507872,7,13783,,,1969,3011,,,,,,,,,3038,0.35,,,,,,,,,0.35,0.33,,,,,,,,,0.33,0.795489972,7655,9623,0.764078248,0.826901696,0.420396419,1315,3128,0.342984719,0.49780812,0.045260808,223,4927,,,0.27,772,,0.163957447,0.376042553,,,,,,,,,,,,,0.223112128,0.156891912,0.289332344,5.017275953,97581,19449,4.014380707,6.020171198,0.178299931,516,2894,0.110007178,0.246592683,7.341065923,10,13622,,,144.257224,97,67241,116.9828908,175.9815796,,,,,,,,,,,,,147.8622235,119.6293687,180.7539006,,,,7.4,,,,,0,,,,,0.106167846,525,4945,0.073880949,0.138454744,0.082461539,0.051953671,0.112969406,0.02487361,0.006714888,0.043032332,0.014155713,0.001986456,0.02632497,0.802126852,4224,5266,0.763203664,0.841050039,,,,,,,,,,,,,0.802652106,0.729233325,0.876070888,0.529,,5266,0.451874644,0.606125356,69.84992342,,,68.19233719,71.50750965,,,,,,,,,,,,,69.288928,67.61052195,70.96733405,,,,780.7249633,399,36936,698.8153542,862.6345724,,,,,,,,,,,,,800.6450816,715.8526245,885.4375388,,,,87.60054153,11,12557,43.72987471,156.7415666,,,,,,,,,,,,,92.26639826,46.05905358,165.0900731,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.149,,,0.128,0.174,0.209,,,0.18,0.239,0.119,,,0.101,0.138,146.6,17,11595,,,0.152,2050,,,,0.037450746,513.1875686,13703,,,54.2754231,22,40534,34.0141187,82.17364284,,,,,,,,,,,,,56.94171239,35.685068,86.21043687,,,,0.358,,,0.341,0.375,0.189760571,1490,7852,0.162356315,0.217164826,0.060020007,180,2999,0.040956177,0.079083837,0.001015744,14,13783,,,984.5,0.875,126.875,145,,,,,,,,2.876553508,,,,,,,,,2.873281802,2.466551427,,,,,,,,,2.447519037,,,,,,-5480.879,,,,,0.752092003,33614,44694,0.621341309,0.882842698,44219,,,37964.87234,50473.12766,,,,,,,,,,152885,44944.40426,260825.5957,47886,42647.02128,53124.97872,,,,,,,,,,,,,,,,0.310364323,,44219,,,18.15823606,14,771,,,13.81934922,13,94071,7.35822144,23.63150803,,,,,,,,,,,,,14.43674485,7.686958612,24.68727336,,,,19.40708498,14,67241,10.02792401,33.90027187,20.82063027,,,,,,,,,,,,,20.2785695,10.47823278,35.42257994,,,,28.25656965,19,67241,17.01230078,44.12613372,,,,,,,,,,,,,29.57244471,17.80454352,46.18103561,,,,27.63869843,26,94071,18.05451544,40.49709696,,,,,,,,,,,,,27.76297086,17.96673091,40.98362173,,,,,,,,,,,0.563522618,5855,10390,,,0.479,,,,,2.019915699,,,,,0.836052367,4151,4965,0.808143329,0.863961404,0.089381865,415,4643,0.060545941,0.11821779,0.783887211,3892,4965,0.752555768,0.815218653,13783,,,,,0.211710078,2918,13783,,,0.20576072,2836,13783,,,0.01015744,140,13783,,,0.007182761,99,13783,,,0.006312124,87,13783,,,7.25531E-05,1,13783,,,0.018355946,253,13783,,,0.943771313,13008,13783,,,0.001959862,25,12756,0,0.009615749,0.502212871,6922,13783,,,1,13529,13529,, -47,063,47063,TN,Hamblen County,2024,1,12736.23776,1539,178856,11771.80469,13700.67083,0,,,,2,,,,2,11798.16932,7206.628326,18221.31562,1,6137.940247,4275.300276,8536.38904,,13575.45605,12454.74834,14696.16377,,,,,2,,0.215,,,0.181,0.252,4.53095128,,,3.579859322,5.578626681,6.384828688,,,5.19514676,7.643570899,0.086693167,458,5283,0.079105355,0.094280979,0,,,,,,,0.18699187,0.118085032,0.255898708,0.07918552,0.064651249,0.093719792,0.085235084,0.076160048,0.09431012,0.161290323,0.069737822,0.252842823,,,,0.234,,,0.188,0.284,0.384,,,0.308,0.463,6.5,0.145386066,0.135,,,0.319,,,0.265,0.38,0.599513171,38668,64499,,,0.139107674,,,0.108627396,0.171827669,0.17948718,7,39,0.101481343,0.270521787,353.7,228,64468,,,32.95997717,462,14017,29.95444081,35.96551353,,,,,,,32.19315895,18.40117194,52.27967324,49.35370153,40.73601824,57.97138482,29.21762765,25.91683857,32.51841672,,,,26.3653484,14.41418131,44.23657462,0.148560799,7747,52147,0.12949697,0.167624629,0.000573928,37,64468,,,1742.378378,0.000644488,42,65168,,,1551.619048,0.002132949,139,65168,,,468.8345324,2804,,,,,,,2759,,2809,0.41,,,,,,,0.39,0.19,0.41,0.45,,,,,,0.53,0.39,0.14,0.45,0.863994225,38300,44329,0.844576999,0.883411451,0.498458713,7600,15247,0.439068869,0.557848558,0.036405006,1024,28128,,,0.189,2794,,0.121085106,0.256914894,0.846153846,0.201869015,1,0.440677966,0.046951634,0.834404298,0.900321543,0.726086219,1,0.553135889,0.454742951,0.651528826,0.114710945,0.073863712,0.155558177,4.69461483,104089,22172,4.122595889,5.26663377,0.337059847,5035,14938,0.272201918,0.401917777,12.25414159,79,64468,,,98.65226777,319,323358,87.82627325,109.4782623,,,,,,,82.04791598,39.34516489,150.8890387,30.63490848,15.82950425,53.51301996,112.6715376,99.81395618,125.5291191,,,,9.8,,,,,0,,,,,0.135565537,3320,24490,0.112605912,0.158525162,0.105867613,0.08265112,0.129084107,0.025928951,0.014217094,0.037640807,0.009799918,0.002714748,0.016885089,0.858218742,22905,26689,0.834330856,0.882106627,,,,,,,,,,0.728915663,0.632424661,0.825406664,0.891728135,0.886549323,0.896906947,0.241,,26689,0.206426272,0.275573728,71.94520355,,,71.27307981,72.61732728,,,,,,,72.35383849,68.94594163,75.76173535,87.50283524,77.48832929,97.51734119,71.3147707,70.56956329,72.05997811,,,,651.6824166,1539,178856,617.7058069,685.6590262,,,,,,,545.031874,397.5499889,729.2955293,267.5807275,180.5355932,381.9881266,689.0652439,650.9598535,727.1706342,,,,59.63667503,39,65396,42.4075058,81.52529798,,,,,,,,,,,,,49.58193415,31.07273416,75.06764415,,,,6.796299792,36,5297,4.760044821,9.408943645,,,,,,,,,,,,,6.733099919,4.357307258,9.939383705,,,,,,,0.144,,,0.124,0.168,0.199,,,0.172,0.229,0.123,,,0.105,0.143,125.7,68,54105,,,0.135,8640,,,,0.145386066,9093.026115,62544,,,40.6144608,79,194512,32.15485109,50.61773627,,,,,,,,,,,,,47.723585,37.53762699,59.82192705,,,,0.352,,,0.335,0.368,0.188287976,7064,37517,0.16207521,0.214500742,0.048701299,750,15400,0.033211937,0.06419066,0.002086914,136,65168,,,479.1764706,0.91,646.1,710,,,,,,,,2.914462854,,,,,,,2.619251363,2.421671417,3.169270507,2.871596582,,,,,,,2.633723144,2.639907942,3.003331633,0.093080246,,,,,-4504.339,,,,,0.751516834,37902,50434,0.655019358,0.84801431,56734,,,50224.89362,63243.10638,,,,,,,25000,3137.361702,46862.6383,35877,24943.89362,46810.10638,53842,49360.80851,58323.19149,,,,,,,,,,,43.17887215,,,,,0.2419008,,56734,,,11.2923463,45,3985,,,2.885394356,13,450545,1.536350973,4.934112224,,,,,,,,,,,,,,,,,,,18.65374027,64,323358,14.23476898,24.01106134,19.79230451,,,,,,,,,,,,,22.10956633,16.74556963,28.64550766,,,,14.53497362,47,323358,10.67975191,19.32843361,,,,,,,,,,,,,16.42330888,11.88563007,22.12208928,,,,12.65134448,57,450545,9.582004764,16.3912842,,,,,,,,,,,,,14.48032043,10.84675366,18.94061564,,,,,,,,,,,0.527204623,24631,46720,,,0.666,,,,,51.10107833,,,,,0.672220239,16946,25209,0.641436087,0.703004391,0.104549814,2507,23979,0.080123374,0.128976255,0.857630211,21620,25209,0.835569658,0.879690764,65168,,,,,0.231662779,15097,65168,,,0.179766143,11715,65168,,,0.036244783,2362,65168,,,0.009160938,597,65168,,,0.011631476,758,65168,,,0.00498711,325,65168,,,0.126488461,8243,65168,,,0.801819912,52253,65168,,,0.027889957,1692,60667,0.019132008,0.036647906,0.506368156,32999,65168,,,0.226608165,14616,64499,, -47,065,47065,TN,Hamilton County,2024,1,9634.922044,6106,1026428,9272.101156,9997.742932,0,,,,2,3750.833213,2427.341489,5536.969742,1,14869.53155,13815.3134,15923.74971,,6474.286966,5287.987528,7660.586404,,8660.828853,8256.544971,9065.112736,,,,,2,,0.168,,,0.143,0.197,3.932238314,,,3.168694248,4.740203903,5.544118813,,,4.676895866,6.432249669,0.091083477,2754,30236,0.087840262,0.094326691,0,,,,0.097260274,0.075764966,0.118755582,0.164694747,0.155563961,0.173825533,0.069110437,0.061514122,0.076706751,0.07035953,0.066634311,0.074084748,,,,0.087692308,0.065947738,0.109436877,0.168,,,0.134,0.206,0.35,,,0.302,0.402,7.3,0.13207217,0.105,,,0.254,,,0.214,0.297,0.832400801,304831,366207,,,0.153161249,,,0.126002211,0.184329383,0.297297297,66,222,0.263447368,0.331622856,603.6,2228,369135,,,20.92611402,1607,76794,19.90297012,21.94925792,,,,,,,30.86490187,28.26400975,33.46579399,61.93994655,55.82378727,68.05610583,12.27497588,11.29113214,13.25881962,,,,29.39781887,22.53913916,37.68667704,0.1184521,34889,294541,0.106537206,0.130366994,0.001091742,403,369135,,,915.9677419,0.000792672,297,374682,,,1261.555556,0.002671599,1001,374682,,,374.3076923,2274,,,,,,1649,3211,1420,2139,0.49,,,,,,0.41,0.48,0.33,0.49,0.51,,,,,,0.48,0.4,0.36,0.52,0.907010655,235128,259234,0.902017088,0.912004221,0.725468823,71878,99078,0.698907408,0.752030237,0.034273665,6274,183056,,,0.168,12810,,0.125106383,0.210893617,0.065359477,0,0.435525627,0.102649007,0.019713797,0.185584216,0.354700032,0.307181869,0.402218195,0.400022594,0.340142818,0.45990237,0.082782648,0.06534109,0.100224206,4.526009823,135468,29931,4.305865411,4.746154234,0.283387922,21544,76023,0.262108366,0.304667478,13.38263779,494,369135,,,90.10629599,1653,1834500,85.76244637,94.45014561,,,,41.46044415,23.69822615,67.32916379,104.7246949,93.96612654,115.4832632,31.6298405,22.03134283,43.98945133,94.77281427,89.48278213,100.0628464,,,,9.1,,,,,0,,,,,0.123031795,18245,148295,0.114338502,0.131725088,0.109005872,0.100775624,0.11723612,0.012947166,0.010477465,0.015416867,0.009946391,0.007166782,0.012725999,0.762679511,136647,179167,0.748271484,0.777087539,,,,0.696292257,0.627497531,0.765086984,0.745676239,0.717847626,0.773504853,0.727813669,0.684728272,0.770899066,0.809891717,0.796015504,0.823767931,0.26,,179167,0.246893617,0.273106383,75.97357541,,,75.6750955,76.27205532,,,,85.25109288,82.26138856,88.24079721,71.36395846,70.5998727,72.12804421,88.42970251,82.97992129,93.87948374,76.7365661,76.40182566,77.07130654,,,,456.3727595,6106,1026428,444.4237565,468.3217624,,,,182.7580281,134.7513428,242.3106308,657.2264555,623.1894905,691.2634205,269.6217375,219.6920209,319.551454,427.5137846,414.0982059,440.9293633,,,,62.6992312,214,341312,54.29861003,71.09985237,,,,,,,111.3361682,88.67863646,138.0179316,81.15183246,55.13873293,115.1885484,45.33638148,36.63641109,55.48024912,,,,6.935226971,209,30136,5.994976397,7.875477545,,,,,,,13.08900524,10.45503249,16.18475767,5.98056317,3.83185967,8.898603936,5.183347119,4.188672093,6.343104148,,,,,,,0.116,,,0.1,0.135,0.169,,,0.145,0.193,0.111,,,0.096,0.129,356.4,1121,314494,,,0.105,38180,,,,0.13207217,44437.39844,336463,,,36.53253064,405,1108601,32.9745112,40.09055008,,,,,,,35.988311,28.30708955,45.11165947,,,,40.63362987,36.17453872,45.09272102,,,,0.344,,,0.329,0.358,0.145169389,31804,219082,0.130871516,0.159467261,0.043189621,3409,78931,0.031274728,0.055104515,0.002308624,865,374682,,,433.1583815,0.85,2589.1,3046,,,0.053119312,963,18129,0.038232726,0.068005898,2.849070455,,,,,,,2.256724505,,3.279299557,2.823090651,,,,,,,2.158702585,,3.206198864,0.242216085,,,,,-2887.354,,,,,0.789040634,46798,59310,0.761134371,0.816946897,75127,,,71284.44681,78969.55319,,,,79444,61070.04255,97817.95745,43045,39608.74468,46481.25532,57894,51045.31915,64742.68085,79570,76922.51064,82217.48936,,,,,,,,,,,58.1478493,,,,,0.24517151,,75127,,,9.585430146,200,20865,,,9.503851809,242,2546336,8.306427573,10.70127605,,,,,,,37.66028774,32.20378773,43.11678775,,,,2.985211594,2.242582826,3.895053581,,,,14.6370853,277,1834500,12.8591753,16.4149953,15.09948215,,,,,,,7.835621188,5.118487907,11.48100052,,,,17.18604565,14.89833288,19.47375842,,,,18.04306351,331,1834500,16.09926004,19.98686697,,,,,,,40.56643401,33.87046634,47.26240167,,,,14.14290172,12.09934977,16.18645368,,,,11.11400852,283,2546336,9.819116427,12.40890061,,,,,,,14.61136847,11.4116,18.43025317,,,,11.05633924,9.524008795,12.58866968,,,,,,,,,,,0.612879887,171113,279195,,,0.666,,,,,101.6090547,,,,,0.645868035,96162,148888,0.6360516,0.65568447,0.117615856,17073,145159,0.10857487,0.126656842,0.886646338,132011,148888,0.879098774,0.894193903,374682,,,,,0.20691413,77527,374682,,,0.18703594,70079,374682,,,0.180646522,67685,374682,,,0.006183911,2317,374682,,,0.022947459,8598,374682,,,0.001636054,613,374682,,,0.067628015,25339,374682,,,0.706983522,264894,374682,,,0.019353292,6701,346246,0.016709087,0.021997497,0.514446918,192754,374682,,,0.125060417,45798,366207,, -47,067,47067,TN,Hancock County,2024,1,15026.80861,193,18302,11555.04808,18498.56914,0,,,,2,,,,2,,,,2,,,,2,15056.84583,11524.81798,18588.87367,,,,,2,,0.26,,,0.223,0.3,5.481422193,,,4.422606614,6.684597337,6.753097112,,,5.479755643,8.179988475,0.088794926,42,473,0.063160261,0.114429591,0,,,,,,,,,,,,,0.090128755,0.064128072,0.116129439,,,,,,,0.305,,,0.252,0.359,0.389,,,0.303,0.477,6.7,0.005063096,0.192,,,0.369,,,0.307,0.429,0.015610928,104,6662,,,0.127607971,,,0.099628884,0.160261615,0.666666667,10,15,0.571193346,0.743338454,294.7,20,6787,,,35.99648815,41,1139,25.83170138,48.83330076,,,,,,,,,,,,,36.3967243,26.00235345,49.56200816,,,,,,,0.115865573,593,5118,0.096801743,0.134929402,,0,6787,,,,0.000146092,1,6845,,,6845,0.000146092,1,6845,,,6845,2595,,,,,,,,,2595,0.33,,,,,,,,,0.33,0.17,,,,,,,,,0.17,0.797938144,3870,4850,0.748910335,0.846965954,0.457411134,682,1491,0.343588251,0.571234016,0.041739895,95,2276,,,0.368,524,,0.23812766,0.49787234,,,,,,,,,,,,,0.466458658,0.368487406,0.564429911,5.625503356,75438,13410,4.014543067,7.236463644,0.197879859,280,1415,0.09476368,0.300996038,0,0,6787,,,111.9549759,37,33049,78.8266349,154.315187,,,,,,,,,,,,,115.7479822,81.49726136,159.5433465,,,,7.8,,,,,0,,,,,0.139194139,380,2730,0.092757323,0.185630955,0.109421365,0.063015592,0.155827138,0.021245421,0.002810609,0.039680234,0.009157509,0,0.023554593,0.853403141,1793,2101,0.809434708,0.897371575,,,,,,,,,,,,,0.855587808,0.783687518,0.927488099,0.485,,2101,0.378603269,0.591396731,71.24327499,,,69.00921643,73.47733354,,,,,,,,,,,,,71.07004023,68.81774264,73.32233782,,,,719.1408058,193,18302,606.1504349,832.1311766,,,,,,,,,,,,,723.9931777,609.3131851,838.6731703,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.175,,,0.15,0.2,0.228,,,0.199,0.258,0.139,,,0.118,0.161,86.6,5,5775,,,0.192,1290,,,,0.005063096,34.52524798,6819,,,,,,,,,,,,,,,,,,,,,,,,,,0.369,,,0.35,0.387,0.14681366,546,3719,0.120600894,0.173026426,0.03403676,50,1469,0.019738887,0.048334632,0.002191381,15,6845,,,456.3333333,,,,,,,,,,,2.663943744,,,,,,,,,2.689781423,2.505563341,,,,,,,,,2.457683319,,,,,,-16153.38,,,,,0.68459089,30313,44279,0.577417642,0.791764137,38024,,,32881.53192,43166.46809,,,,,,,,,,31563,6315.340426,56810.65957,32086,27168.7234,37003.2766,,,,,,,,,,,,,,,,0.360929939,,38024,,,5.698005698,2,351,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,23.81055457,11,46198,11.88614305,42.60365928,,,,,,,,,,,,,24.5908969,12.27568713,43.99990726,,,,,,,,,,,0.532815534,2744,5150,,,0.488,,,,,0.547457202,,,,,0.778720396,2203,2829,0.725312055,0.832128737,0.11245283,298,2650,0.063975187,0.160930474,0.640862496,1813,2829,0.580833147,0.700891845,6845,,,,,0.211249087,1446,6845,,,0.228195763,1562,6845,,,0.005843682,40,6845,,,0.003360117,23,6845,,,0.002775749,19,6845,,,0.000438276,3,6845,,,0.009934259,68,6845,,,0.963330899,6594,6845,,,0.001728744,11,6363,0,0.015366094,0.503140979,3444,6845,,,1,6662,6662,, -47,069,47069,TN,Hardeman County,2024,1,13698.16601,595,69606,12009.77439,15386.55764,0,,,,2,,,,2,15915.5747,13238.49027,18592.65912,,,,,2,12258.51622,9991.949572,14525.08286,,,,,2,,0.256,,,0.223,0.293,5.040024607,,,4.077057349,6.123606006,6.287246084,,,5.084130077,7.572566526,0.115515289,204,1766,0.100607075,0.130423503,0,,,,,,,0.13496144,0.110951622,0.158971257,,,,0.102247191,0.082342055,0.122152327,,,,,,,0.26,,,0.216,0.307,0.406,,,0.328,0.487,7.5,0.069534825,0.126,,,0.36,,,0.304,0.42,0.162673788,4142,25462,,,0.130643243,,,0.102608066,0.163975343,0.264705882,9,34,0.174780223,0.359592316,892.8,227,25426,,,32.46613632,151,4651,27.28770518,37.64456745,,,,,,,39.61813843,31.55562611,49.11264334,,,,26.78571429,20.44032185,34.47852384,,,,,,,0.118753745,1982,16690,0.100881404,0.136626085,0.000157319,4,25426,,,6356.5,0.000274198,7,25529,,,3647,0.001449332,37,25529,,,689.972973,3371,,,,,,,5130,,3012,0.34,,,,,,,0.38,,0.33,0.42,,,,,,,0.37,,0.44,0.809448904,14923,18436,0.766238131,0.852659678,0.372995781,2652,7110,0.307335829,0.438655732,0.042095835,376,8932,,,0.254,1230,,0.171787234,0.336212766,,,,,,,0.270604396,0.158573625,0.382635167,0.10989011,0,0.492974685,0.189054726,0.115268381,0.262841072,4.803221796,92731,19306,3.74297833,5.863465262,0.416031321,2019,4853,0.334617799,0.497444843,12.97884056,33,25426,,,101.6042356,128,125979,84.00219984,119.2062714,,,,,,,97.01166042,72.23155321,127.5524175,,,,108.7116204,85.36200418,136.4774842,,,,8,,,,,0,,,,,0.139534884,1290,9245,0.109242097,0.16982767,0.12264048,0.091803905,0.153477055,0.008004327,0.001858604,0.014150049,0.015143321,0.005429735,0.024856907,0.832738575,7234,8687,0.773182382,0.892294768,,,,,,,0.74941452,0.685807904,0.813021136,,,,0.821805645,0.771433705,0.872177586,0.5,,8687,0.417502805,0.582497195,71.90604544,,,70.72321314,73.08887774,,,,,,,70.24097122,68.35932218,72.12262026,,,,72.77404848,71.18076227,74.36733469,,,,640.7198854,595,69606,586.7692559,694.6705148,,,,,,,751.021057,657.8305786,844.2115354,,,,586.553368,517.4854433,655.6212927,,,,88.94714667,19,21361,53.55199272,138.9019876,,,,,,,104.2100875,49.97278758,191.6460613,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.153,,,0.133,0.176,0.198,,,0.173,0.226,0.149,,,0.128,0.171,226.9,50,22033,,,0.126,3240,,,,0.069534825,1895.032576,27253,,,18.58933503,14,75312,10.16296245,31.18974549,,,,,,,,,,,,,,,,,,,0.397,,,0.383,0.41,0.150905767,1816,12034,0.12707598,0.174735554,0.036991621,181,4893,0.025076727,0.048906514,0.000626738,16,25529,,,1595.5625,0.92,224.48,244,,,,,,,,2.773898045,,,,,,,2.573168744,,3.010559785,2.481828035,,,,,,,2.344257374,,2.653955466,0.175872307,,,,,-9279.875,,,,,0.842595804,38874,46136,0.747544857,0.93764675,44454,,,38431.02128,50476.97872,,,,,,,39514,35723.87234,43304.12766,55313,44870.78723,65755.21277,49257,44109.76596,54404.23404,,,,,,,,,,,39.24011501,,,,,0.308723624,,44454,,,7.90513834,10,1265,,,13.550059,24,177121,8.681778476,20.16141372,,,,,,,24.39189647,14.45618373,38.5497124,,,,,,,,,,18.75554524,24,125979,11.88940681,28.14252674,19.05079418,,,,,,,,,,,,,27.30174349,15.90427169,43.71273609,,,,23.81349273,30,125979,16.06686354,33.99524158,,,,,,,34.23940956,20.29244409,54.1130286,,,,16.15983546,8.06693164,28.91440945,,,,26.53553221,47,177121,19.49731097,35.2866325,,,,,,,29.81231791,18.68322091,45.13620759,,,,26.01294404,16.83420582,38.40023692,,,,,,,,,,,0.495836413,10063,20295,,,0.474,,,,,10.98188011,,,,,0.706404706,6364,9009,0.675917836,0.736891577,0.137394609,1157,8421,0.101456774,0.173332444,0.782772783,7052,9009,0.744034,0.821511566,25529,,,,,0.193074543,4929,25529,,,0.188099808,4802,25529,,,0.411022758,10493,25529,,,0.003917114,100,25529,,,0.008656822,221,25529,,,0.000274198,7,25529,,,0.021935838,560,25529,,,0.540326687,13794,25529,,,0.003211859,78,24285,0,0.008870689,0.448313683,11445,25529,,,0.792592884,20181,25462,, -47,071,47071,TN,Hardin County,2024,1,15049.64149,726,70241,13219.71369,16879.56928,0,,,,2,,,,2,29245.25308,15988.652,49068.56532,1,,,,2,14859.93985,12984.15275,16735.72695,,,,,2,,0.21,,,0.177,0.248,4.672487451,,,3.728938071,5.696057943,6.315501744,,,5.125245115,7.531760171,0.084745763,150,1770,0.071771003,0.097720522,0,,,,,,,0.267857143,0.151869536,0.38384475,,,,0.078540507,0.065427991,0.091653023,,,,,,,0.24,,,0.191,0.291,0.37,,,0.295,0.449,7.2,0.073826648,0.138,,,0.318,,,0.262,0.379,0.431963028,11590,26831,,,0.136831547,,,0.107677961,0.170317958,0.311111111,14,45,0.233185823,0.390105297,282.6,76,26892,,,25.10544286,125,4979,20.70426468,29.50662104,,,,,,,,,,,,,24.96626181,20.32166411,29.6108595,,,,,,,0.13842622,2834,20473,0.11936239,0.15749005,0.000557787,15,26892,,,1792.8,0.000258522,7,27077,,,3868.142857,0.001034088,28,27077,,,967.0357143,2639,,,,,,,1308,,2617,0.36,,,,,,,0.47,,0.36,0.42,,,,,,,0.3,,0.42,0.853751677,16544,19378,0.826748424,0.880754931,0.506298111,2894,5716,0.427795135,0.584801086,0.040143084,404,10064,,,0.311,1653,,0.233553192,0.388446809,,,,,,,0.17721519,0,0.560167695,0.25,0,0.804548382,0.242050617,0.174348307,0.309752926,4.626815418,92069,19899,3.468296224,5.785334612,0.187069126,1004,5367,0.122073327,0.252064926,12.27130745,33,26892,,,144.1244249,187,129749,123.4671582,164.7816915,,,,,,,,,,,,,147.2431869,125.427331,169.0590427,,,,7.7,,,,,0,,,,,0.115518096,1165,10085,0.085542214,0.145493978,0.099444725,0.068492265,0.130397185,0.013882003,0.005252683,0.022511323,0.005453644,0,0.011578578,0.884135814,9218,10426,0.822538128,0.945733501,,,,,,,,,,,,,0.87486046,0.838024496,0.911696423,0.301,,10426,0.252134408,0.349865592,70.83644446,,,69.62990368,72.04298525,,,,,,,,,,,,,70.76377484,69.541265,71.98628468,,,,700.5931284,726,70241,644.5168899,756.6693669,,,,,,,1066.172339,702.6142895,1551.224777,,,,703.7077837,645.590765,761.8248025,,,,99.42076597,23,23134,63.02423721,149.1799641,,,,,,,,,,,,,98.22217857,59.99665841,151.6961885,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.143,,,0.121,0.165,0.203,,,0.176,0.232,0.117,,,0.1,0.137,129.5,30,23169,,,0.138,3690,,,,0.073826648,1921.412347,26026,,,44.79885315,35,78127,31.20404265,62.30436004,,,,,,,,,,,,,43.31786932,29.43239056,61.48625776,,,,0.367,,,0.348,0.384,0.170266331,2570,15094,0.145245054,0.195287608,0.050343249,286,5681,0.033662398,0.067024101,0.001440337,39,27077,,,694.2820513,0.93,228.78,246,,,,,,,,2.844426033,,,,,,,,,2.845474321,2.564202124,,,,,,,,,2.565428987,0.019433049,,,,,-2935.253,,,,,0.745489525,34874,46780,0.636399709,0.854579342,42573,,,38885.34043,46260.65957,,,,,,,27018,19914.34043,34121.65957,39297,13062.78723,65531.21277,48699,43875.85106,53522.14894,,,,,,,,,,,49.09090512,,,,,0.32236394,,42573,,,8.68878357,11,1266,,,5.519251148,10,181184,2.646695457,10.15009937,,,,,,,,,,,,,,,,,,,29.30579006,41,129749,20.41255655,40.75725977,31.59947283,,,,,,,,,,,,,31.94853,22.25332174,44.43267128,,,,27.74587858,36,129749,19.43287225,38.41199122,,,,,,,,,,,,,29.44863737,20.51205493,40.9559258,,,,28.70010597,52,181184,21.43461189,37.63637062,,,,,,,,,,,,,28.27424818,20.77485407,37.59875614,,,,,,,,,,,0.566977887,11538,20350,,,0.484,,,,,18.54482207,,,,,0.75603045,8243,10903,0.721366534,0.790694367,0.115073565,1181,10263,0.082060025,0.148087106,0.822067321,8963,10903,0.79068782,0.853446822,27077,,,,,0.199985227,5415,27077,,,0.239243639,6478,27077,,,0.032389113,877,27077,,,0.005761347,156,27077,,,0.006056801,164,27077,,,0.000443181,12,27077,,,0.027735717,751,27077,,,0.912656498,24712,27077,,,0.002699108,69,25564,0,0.009186659,0.511836614,13859,27077,,,0.670977601,18003,26831,, -47,073,47073,TN,Hawkins County,2024,1,13319.02013,1474,155717,12192.07278,14445.96747,0,,,,2,,,,2,22165.74676,7197.157638,51727.4588,1,,,,2,13600.04747,12430.26757,14769.82737,,,,,2,,0.2,,,0.167,0.234,4.577558668,,,3.63458367,5.54359671,6.112742132,,,4.971236302,7.267629807,0.08573784,312,3639,0.076641081,0.094834599,0,,,,,,,,,,,,,0.0859375,0.076593163,0.095281837,,,,,,,0.241,,,0.194,0.289,0.375,,,0.301,0.451,7,0.067805275,0.147,,,0.307,,,0.25,0.364,0.36148869,20504,56721,,,0.141592736,,,0.111791825,0.175052391,0.225806452,14,62,0.16101658,0.295536813,244.4,140,57288,,,29.59625409,335,11319,26.42690253,32.76560564,,,,,,,,,,36.58536585,18.90419241,63.90727149,30.37315592,27.01894233,33.7273695,,,,,,,0.109807096,4884,44478,0.093126245,0.126487947,0.000314202,18,57288,,,3182.666667,0.000172286,10,58043,,,5804.3,0.000206743,12,58043,,,4836.916667,3077,,,,,,,,,3130,0.42,,,,,,,0.47,,0.42,0.37,,,,,,,0.28,,0.37,0.861791353,35860,41611,0.843773067,0.879809639,0.536683815,6781,12635,0.477181271,0.596186358,0.038901602,901,23161,,,0.219,2391,,0.139170213,0.298829787,,,,,,,,,,0.654794521,0.410489461,0.89909958,0.230485127,0.188955505,0.272014749,4.591705798,98763,21509,3.870083762,5.313327833,0.258246252,2842,11005,0.20856622,0.307926283,7.855048178,45,57288,,,103.5802113,294,283838,91.74000688,115.4204156,,,,,,,,,,,,,107.3407717,94.96501211,119.7165312,,,,8.3,,,,,1,,,,,0.118611171,2750,23185,0.098694464,0.138527878,0.089320812,0.071407183,0.107234442,0.021134354,0.013052234,0.029216475,0.01099849,0.003706373,0.018290608,0.843768912,18125,21481,0.820050121,0.867487703,,,,,,,,,,,,,0.822731363,0.779246617,0.866216109,0.364,,21481,0.321656004,0.406343996,72.05272671,,,71.29022094,72.81523248,,,,,,,,,,,,,71.74501285,70.96494784,72.52507787,,,,638.1028033,1474,155717,602.7162271,673.4893795,,,,,,,711.8240987,389.1608586,1194.319885,,,,651.6765298,615.062968,688.2900916,,,,51.2085211,25,48820,33.13945483,75.59387894,,,,,,,,,,,,,51.22494432,32.47222057,76.8625677,,,,8.143322476,30,3684,5.494265478,11.62509918,,,,,,,,,,,,,8.271534512,5.53957648,11.87930332,,,,,,,0.141,,,0.121,0.164,0.2,,,0.172,0.228,0.117,,,0.099,0.136,98.4,49,49779,,,0.147,8330,,,,0.067805275,3853.577199,56833,,,34.5334184,59,170849,26.28843811,44.54559369,,,,,,,,,,,,,35.20822266,26.66636402,45.61633625,,,,0.373,,,0.355,0.391,0.134554116,4519,33585,0.113107308,0.156000925,0.035192909,405,11508,0.023278016,0.047107803,0.000826973,48,58043,,,1209.229167,0.94,481.28,512,,,,,,,,2.961711659,,,,,,,,,2.976072062,2.969661662,,,,,,,,,2.994887802,0.029630764,,,,,-2411.471,,,,,0.724650501,37684,52003,0.657829713,0.791471288,52819,,,47458.48936,58179.51064,,,,63750,63069.65957,64430.34043,,,,,,,54339,51269.7234,57408.2766,,,,,,,,,,,68.86011555,,,,,0.259830743,,52819,,,9.796533534,26,2654,,,3.779556129,15,396872,2.115388874,6.233803058,,,,,,,,,,,,,3.714286472,2.030634978,6.23194157,,,,15.58867582,50,283838,11.28160199,20.99784403,17.61568219,,,,,,,,,,,,,16.37893009,11.85351292,22.06231134,,,,16.55874125,47,283838,12.16674024,22.01961553,,,,,,,,,,,,,17.08538234,12.50864721,22.78950575,,,,21.66945514,86,396872,17.33276705,26.76160081,,,,,,,,,,,,,22.02041266,17.53913577,27.29761458,,,,,,,,,,,0.550116344,24824,45125,,,0.643,,,,,21.34243131,,,,,0.782093483,17820,22785,0.759697867,0.804489099,0.086046943,1855,21558,0.066885486,0.105208401,0.826333114,18828,22785,0.804589091,0.848077137,58043,,,,,0.191358131,11107,58043,,,0.220043761,12772,58043,,,0.0142136,825,58043,,,0.004048723,235,58043,,,0.005599297,325,58043,,,0.001378289,80,58043,,,0.020588185,1195,58043,,,0.942456455,54703,58043,,,0.001691487,92,54390,0,0.004941395,0.505091053,29317,58043,,,0.620757744,35210,56721,, -47,075,47075,TN,Haywood County,2024,1,15898.98228,433,48022,13665.82496,18132.1396,0,,,,2,,,,2,17793.36925,14522.05011,21064.6884,,,,,2,15380.44439,11873.05412,18887.83465,,,,,2,,0.265,,,0.23,0.301,4.975144708,,,4.057616422,6.094902862,6.066561419,,,4.894003239,7.386466916,0.10892587,144,1322,0.092131536,0.125720204,0,,,,,,,0.137362637,0.112356948,0.162368326,,,,0.070707071,0.048125133,0.093289009,,,,,,,0.263,,,0.219,0.31,0.428,,,0.347,0.512,6.8,0.109074726,0.138,,,0.376,,,0.319,0.435,0.494849978,8840,17864,,,0.120188678,,,0.094099899,0.150634372,0.162162162,6,37,0.084521101,0.256069995,802.5,142,17694,,,24.88627241,93,3737,20.0864337,30.48736501,,,,,,,28.21011673,21.42112436,36.46811758,,,,17.31601732,11.09469903,25.76486118,,,,,,,0.128633454,1748,13589,0.110761113,0.146505794,0.000226065,4,17694,,,4423.5,0.00022792,4,17550,,,4387.5,5.69801E-05,1,17550,,,17550,3326,,,,,,,4403,,2758,0.38,,,,,,,0.39,,0.38,0.36,,,,,,,0.34,,0.36,0.822492791,10268,12484,0.794572593,0.850412989,0.451551313,1892,4190,0.383907367,0.519195259,0.045141647,341,7554,,,0.318,1188,,0.216723404,0.419276596,,,,,,,0.423996176,0.33818781,0.509804542,0.047945206,0,0.211103966,0.262857143,0.148784384,0.376929902,5.17029435,91690,17734,4.228639021,6.111949679,0.438265306,1718,3920,0.332553049,0.543977564,21.47620662,38,17694,,,92.05136466,80,86908,72.99100726,114.5658915,,,,,,,75.59271561,52.03454718,106.1602778,,,,118.4428711,86.3930429,158.4858803,,,,7.8,,,,,0,,,,,0.131468532,940,7150,0.09930075,0.163636313,0.112732475,0.080722586,0.144742364,0.017482518,0.005369778,0.029595257,0.02027972,0.006298006,0.034261435,0.819656088,5863,7153,0.777561134,0.861751042,,,,,,,0.818010373,0.747684371,0.888336374,,,,0.84171123,0.757111032,0.926311428,0.444,,7153,0.379208829,0.508791171,71.14779974,,,69.65341286,72.64218662,,,,,,,69.9434087,67.78107502,72.10574237,,,,71.31823441,69.01933514,73.61713369,,,,684.878686,433,48022,615.2491977,754.5081742,,,,,,,739.2040825,636.431531,841.9766341,,,,673.0512474,569.5072093,776.5952855,,,,64.96574533,11,16932,32.430666,116.2416638,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.157,,,0.137,0.18,0.205,,,0.179,0.233,0.158,,,0.137,0.182,594.7,89,14965,,,0.138,2470,,,,0.109074726,2049.186885,18787,,,,,,,,,,,,,,,,,,,,,,,,,,0.427,,,0.413,0.44,0.159704663,1579,9887,0.135874876,0.18353445,0.047338792,185,3908,0.030657941,0.064019643,0.000911681,16,17550,,,1096.875,0.92,207,225,,,,,,,,2.825718035,,,,,,,2.700376257,,3.249955609,2.825508259,,,,,,,2.685226904,,3.106395765,0.006151466,,,,,-12232.72,,,,,0.895030426,40595,45356,0.788491172,1.00156968,46351,,,40580.61702,52121.38298,,,,,,,37821,29996.48936,45645.51064,45313,3812.234043,86813.76596,59318,51855.70213,66780.29787,,,,,,,,,,,38.95515897,,,,,0.296088542,,46351,,,6.809338521,7,1028,,,10.58769872,13,122784,5.637503658,18.10528727,,,,,,,19.51854262,10.08551579,34.09496592,,,,,,,,,,13.51419512,14,86908,7.195739738,23.10968524,16.10898882,,,,,,,,,,,,,,,,,,,24.16348322,21,86908,14.95757696,36.93645089,,,,,,,27.48826022,14.20358518,48.01645871,,,,,,,,,,21.98983581,27,122784,14.49144036,31.99405659,,,,,,,,,,,,,33.3185251,19.74666959,52.65763414,,,,,,,,,,,0.566780952,7439,13125,,,0.579,,,,,21.1132838,,,,,0.580833333,4182,7200,0.545833244,0.615833423,0.159217877,1083,6802,0.118168753,0.200267002,0.750138889,5401,7200,0.717407255,0.782870523,17550,,,,,0.216410256,3798,17550,,,0.211111111,3705,17550,,,0.498347578,8746,17550,,,0.004672365,82,17550,,,0.003361823,59,17550,,,0.000740741,13,17550,,,0.045185185,793,17550,,,0.43948718,7713,17550,,,0.002134345,36,16867,0,0.00770418,0.528831909,9281,17550,,,0.461430811,8243,17864,, -47,077,47077,TN,Henderson County,2024,1,11724.54605,635,77656,10271.04691,13178.04519,0,,,,2,,,,2,16412.26658,9185.821018,27069.53783,1,,,,2,11685.12435,10148.92794,13221.32075,,,,,2,,0.209,,,0.178,0.244,4.660942533,,,3.718151468,5.677073287,6.634290749,,,5.442560285,7.880863691,0.094236048,206,2186,0.081988559,0.106483536,0,,,,,,,0.165413534,0.10226672,0.228560347,,,,0.085625324,0.073131988,0.09811866,,,,,,,0.248,,,0.203,0.296,0.388,,,0.314,0.466,7.9,0.017264595,0.131,,,0.308,,,0.253,0.364,0.357481503,9953,27842,,,0.143631941,,,0.113631072,0.178542195,0.195121951,8,41,0.117388214,0.283402896,429.3,120,27953,,,27.65217391,159,5750,23.35397224,31.95037559,,,,,,,23.4741784,11.25678098,43.16984986,,,,26.60342339,22.01251377,31.194333,,,,,,,0.135778836,3050,22463,0.116715007,0.154842666,0.000178872,5,27953,,,5590.6,0.000286441,8,27929,,,3491.125,0.000537076,15,27929,,,1861.933333,2092,,,,,,,,,2098,0.36,,,,,,,0.24,,0.37,0.3,,,,,,,0.16,,0.31,0.878608515,16922,19260,0.861003395,0.896213635,0.414029215,2721,6572,0.338510271,0.489548159,0.036455221,427,11713,,,0.22,1354,,0.156851064,0.283148936,,,,,,,0.064516129,0,0.236976755,0.544502618,0.004607394,1,0.16275889,0.101159478,0.224358303,4.994693513,100713,20164,4.002850122,5.986536904,0.248156863,1582,6375,0.164301157,0.332012568,7.512610453,21,27953,,,95.88962675,134,139744,79.65376665,112.1254868,,,,,,,,,,,,,100.1140644,82.34881743,117.8793113,,,,7.4,,,,,0,,,,,0.107191938,1170,10915,0.077661843,0.136722032,0.078309859,0.052173391,0.104446328,0.025652771,0.005375324,0.045930219,0.007787449,0.001397125,0.014177772,0.843994438,9711,11506,0.801701358,0.886287517,,,,,,,,,,,,,0.820401381,0.763278269,0.877524492,0.388,,11506,0.327175664,0.448824336,72.82121778,,,71.77324327,73.86919229,,,,,,,71.14998761,65.50302779,76.79694742,,,,72.67262554,71.5799175,73.76533357,,,,593.0012697,635,77656,544.5415528,641.4609866,,,,,,,615.3325044,439.6025626,837.9082238,,,,602.3725051,550.6399549,654.1050554,,,,61.12909026,17,27810,35.60994775,97.87359517,,,,,,,,,,,,,56.33070457,29.99372775,96.32722038,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.144,,,0.124,0.165,0.208,,,0.181,0.238,0.122,,,0.104,0.142,114.8,27,23512,,,0.131,3630,,,,0.017264595,479.4205294,27769,,,17.8261593,15,84146,9.977166036,29.40153884,,,,,,,,,,,,,17.77899344,9.466565223,30.40262024,,,,0.381,,,0.364,0.396,0.171714038,2767,16114,0.146692761,0.196735314,0.046525589,310,6663,0.032227717,0.060823461,0.000966737,27,27929,,,1034.407407,0.94,298.92,318,,,0.176724138,287,1624,0.073989171,0.279459105,3.064365921,,,,,,,2.509571142,,3.160238741,3.124841805,,,,,,,2.528931375,,3.223632636,0.078495131,,,,,-1627.4599,,,,,0.782327102,38291,48945,0.661440043,0.903214161,53822,,,46304.89362,61339.10638,,,,,,,52069,20196.65957,83941.34043,24153,21457.85106,26848.14894,50804,44031.57447,57576.42553,,,,,,,,,,,39.04655818,,,,,0.254988666,,53822,,,8.944543828,15,1677,,,5.624268206,11,195581,2.807614424,10.0633694,,,,,,,,,,,,,,,,,,,12.29734244,18,139744,7.16365514,19.6892365,12.88069613,,,,,,,,,,,,,12.0223554,6.728821054,19.82904693,,,,14.31188459,20,139744,8.742070919,22.10354498,,,,,,,,,,,,,13.12971336,7.504765638,21.32183192,,,,29.65523236,58,195581,22.51846124,38.33626464,,,,,,,,,,,,,31.61907216,23.75322015,41.2560304,,,,,,,,,,,0.564319249,12020,21300,,,0.616,,,,,21.27859859,,,,,0.712675794,7652,10737,0.680878175,0.744473413,0.099735665,981,9836,0.071084258,0.128387072,0.8017137,8608,10737,0.769431566,0.833995835,27929,,,,,0.224462029,6269,27929,,,0.191413943,5346,27929,,,0.075942569,2121,27929,,,0.005084321,142,27929,,,0.00479788,134,27929,,,0.000214831,6,27929,,,0.030219485,844,27929,,,0.861112106,24050,27929,,,0.006518507,171,26233,0.000659157,0.012377858,0.506713452,14152,27929,,,0.771675885,21485,27842,, -47,079,47079,TN,Henry County,2024,1,13285.9426,808,86965,11726.59831,14845.2869,0,,,,2,,,,2,18477.02831,11579.45527,27974.44291,1,,,,2,12861.64408,11268.66904,14454.61912,,,,,2,,0.214,,,0.18,0.25,4.656387559,,,3.720561992,5.651581171,6.051780376,,,4.871688392,7.233938746,0.090491502,197,2177,0.078440196,0.102542809,0,,,,,,,0.134969325,0.082513278,0.187425372,,,,0.089736701,0.076751417,0.102721985,,,,,,,0.245,,,0.197,0.293,0.386,,,0.308,0.466,6.6,0.103988443,0.147,,,0.317,,,0.263,0.375,0.60660269,19532,32199,,,0.135590298,,,0.106729513,0.170246831,0.325,13,40,0.24222461,0.408131965,362.9,117,32239,,,28.84456898,175,6067,24.57089783,33.11824013,,,,,,,29.47845805,15.6960374,50.40906104,,,,28.57142857,23.9368356,33.20602155,,,,65.2173913,33.69877777,113.9216579,0.129871732,3159,24324,0.111999391,0.147744072,0.000682403,22,32239,,,1465.409091,0.000555916,18,32379,,,1798.833333,0.001914821,62,32379,,,522.2419355,2725,,,,,,,4572,,2655,0.46,,,,,,,0.47,,0.46,0.48,,,,,,,0.46,,0.48,0.871016043,20360,23375,0.85014216,0.891889926,0.462246239,3165,6847,0.394204765,0.530287714,0.03983476,540,13556,,,0.251,1594,,0.168787234,0.333212766,,,,,,,0.587025317,0.361612852,0.812437781,0.445993031,0.239777327,0.652208735,0.232743535,0.17138487,0.2941022,4.726967844,95844,20276,4.084843348,5.36909234,0.274215761,1792,6535,0.207191394,0.341240129,14.26843264,46,32239,,,128.8340518,208,161448,111.3253047,146.3427989,,,,,,,175.2190238,108.4633374,267.8408906,,,,129.4977338,110.6836729,148.3117947,,,,7.8,,,,,0,,,,,0.114859742,1515,13190,0.090194173,0.139525312,0.096948629,0.073028894,0.120868364,0.010159212,0.003035365,0.017283059,0.010993177,0.002120521,0.019865833,0.845595855,10608,12545,0.80505143,0.88614028,,,,,,,,,,,,,0.859930808,0.812396051,0.907465565,0.206,,12545,0.167853728,0.244146272,72.1593244,,,71.07741619,73.2412326,,,,,,,69.77806693,64.59409,74.96204386,,,,72.24904435,71.13976747,73.35832123,,,,615.2923984,808,86965,568.5920958,661.9927009,,,,,,,756.7217022,570.0663465,984.97731,,,,615.2840206,565.8285058,664.7395354,,,,76.62034619,22,28713,48.01756303,116.0041249,,,,,,,,,,,,,68.60769264,39.21522428,111.4145946,,,,10.57268723,24,2270,6.7741202,15.73132053,,,,,,,,,,,,,,,,,,,,,,0.144,,,0.124,0.166,0.205,,,0.178,0.235,0.119,,,0.101,0.138,122.5,34,27759,,,0.147,4730,,,,0.103988443,3361.946356,32330,,,38.28642384,37,96640,26.95717567,52.77279195,,,,,,,,,,,,,39.27355818,27.03411036,55.15467744,,,,0.364,,,0.346,0.38,0.16052764,2872,17891,0.136697852,0.184357427,0.046019532,311,6758,0.030530171,0.061508894,0.001451558,47,32379,,,688.9148936,0.995,301.485,303,,,0.138606108,177,1277,0.053136919,0.224075297,2.918599892,,,,,,,2.540964917,,2.927520205,2.856093325,,,,,,,2.600424882,,2.874801746,0.067209794,,,,,-4817.0065,,,,,0.907962409,38839,42776,0.81429655,1.001628268,51194,,,45838.25532,56549.74468,,,,,,,47039,18294.31915,75783.68085,34771,4971.851064,64570.14894,48528,45473.02128,51582.97872,,,,,,,,,,,51.41024187,,,,,0.359788256,,51194,,,13.39013999,22,1643,,,6.639959275,15,225905,3.716334801,10.95160305,,,,,,,,,,,,,6.60257094,3.515590951,11.29059739,,,,29.45638192,50,161448,21.4030522,39.54381784,30.969724,,,,,,,,,,,,,30.30567304,21.65081713,41.26772514,,,,24.15638472,39,161448,17.17755097,33.02257313,,,,,,,,,,,,,24.90341034,17.34613777,34.63461529,,,,26.5598371,60,225905,20.26795376,34.18777513,,,,,,,,,,,,,27.4260639,20.6033033,35.78506417,,,,,,,,,,,0.590078431,15047,25500,,,0.589,,,,,22.78484065,,,,,0.753597807,9897,13133,0.733951037,0.773244577,0.096246391,1200,12468,0.071400427,0.121092355,0.800274119,10510,13133,0.772325124,0.828223113,32379,,,,,0.20009883,6479,32379,,,0.23981593,7765,32379,,,0.071651379,2320,32379,,,0.004787053,155,32379,,,0.006053306,196,32379,,,0.000463263,15,32379,,,0.030390068,984,32379,,,0.867166991,28078,32379,,,0.001335679,41,30696,0,0.005649821,0.509774854,16506,32379,,,0.677722911,21822,32199,, -47,081,47081,TN,Hickman County,2024,1,13623.49198,614,70523,11996.0104,15250.97357,0,,,,2,,,,2,,,,2,,,,2,14710.75058,12910.07212,16511.42905,,,,,2,,0.205,,,0.175,0.237,4.537975427,,,3.646059689,5.547647532,6.21703825,,,5.086315595,7.457077637,0.073209549,138,1885,0.061450423,0.084968675,0,,,,,,,,,,,,,0.070501974,0.058586082,0.082417867,,,,,,,0.246,,,0.202,0.291,0.37,,,0.295,0.453,8,0.038672245,0.118,,,0.306,,,0.254,0.362,0.306519559,7640,24925,,,0.159733086,,,0.126689829,0.199580513,0.192982456,11,57,0.127194863,0.266513322,288.5,73,25307,,,28.82846044,141,4891,24.06998354,33.58693733,,,,,,,,,,,,,28.59057405,23.63750979,33.5436383,,,,,,,0.131999181,2579,19538,0.112935351,0.151063011,0.000197574,5,25307,,,5061.4,0.000274995,7,25455,,,3636.428571,0.000667845,17,25455,,,1497.352941,2134,,,,,,,11667,,1884,0.36,,,,,,,0.29,,0.36,0.38,,,,,,,0.45,,0.38,0.825173262,14764,17892,0.791789776,0.858556747,0.425721626,2817,6617,0.346119212,0.505324041,0.028955885,340,11742,,,0.204,1051,,0.125361702,0.282638298,,,,,,,,,,0.614754098,0.508000172,0.721508025,0.198083779,0.113379648,0.28278791,3.991055524,105304,26385,3.226230121,4.755880927,0.291755577,1504,5155,0.189759633,0.393751521,4.346623464,11,25307,,,165.3431267,208,125799,142.8727399,187.8135136,,,,,,,,,,,,,181.1722285,156.3711386,205.9733184,,,,7,,,,,0,,,,,0.100864553,875,8675,0.074053309,0.127675797,0.072674419,0.048649223,0.096699614,0.019596542,0.004410796,0.034782287,0.009682997,0.001738606,0.017627389,0.75620984,7885,10427,0.704592218,0.807827462,,,,,,,,,,,,,0.732019064,0.673168329,0.7908698,0.556,,10427,0.483779624,0.628220376,71.79092999,,,70.64182921,72.94003077,,,,,,,,,,,,,70.94118267,69.71898195,72.16338339,,,,645.7613195,614,70523,592.4047842,699.1178548,,,,,,,,,,,,,684.9355307,626.9463912,742.9246701,,,,74.10959501,17,22939,43.17157012,118.6566407,,,,,,,,,,,,,83.21096427,48.47345311,133.2288146,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.139,,,0.12,0.159,0.196,,,0.171,0.223,0.113,,,0.096,0.13,212.5,46,21646,,,0.118,2920,,,,0.038672245,954.8177165,24690,,,77.76254745,59,75872,59.19645407,100.3080206,,,,,,,,,,,,,86.63348164,65.94942019,111.7508794,,,,0.359,,,0.343,0.374,0.160323435,2300,14346,0.136493648,0.184153222,0.055158512,301,5457,0.037286172,0.073030852,0.000589275,15,25455,,,1697,0.93,224.13,241,,,,,,,,3.078965043,,,,,,,,,3.120114754,3.104537505,,,,,,,,,3.157368482,0.026508932,,,,,-2013.962,,,,,0.806579084,38986,48335,0.662163112,0.950995055,56917,,,49283.12766,64550.87234,,,,,,,36146,13417.14894,58874.85106,51400,42619.91489,60180.08511,55299,50168.44681,60429.55319,,,,,,,,,,,36.73146802,,,,,0.241123039,,56917,,,5.36809816,7,1304,,,5.732071513,10,174457,2.748751094,10.5414836,,,,,,,,,,,,,6.354491672,3.047225754,11.68613643,,,,26.89557569,36,125799,18.62596802,37.58387121,28.61707963,,,,,,,,,,,,,28.40545012,19.42930685,40.10002016,,,,27.02724187,34,125799,18.71715068,37.76786151,,,,,,,,,,,,,29.16430996,20.07536904,40.95753435,,,,36.68525769,64,174457,28.2521186,46.84625507,,,,,,,,,,,,,40.6687467,31.31989054,51.93308162,,,,,,,,,,,0.500101729,9832,19660,,,0.613,,,,,2.901761773,,,,,0.794237288,7029,8850,0.75066804,0.837806537,0.060581205,517,8534,0.035694641,0.085467768,0.753333333,6667,8850,0.704840078,0.801826589,25455,,,,,0.206757022,5263,25455,,,0.180514634,4595,25455,,,0.0456099,1161,25455,,,0.007542723,192,25455,,,0.004124926,105,25455,,,0.00047142,12,25455,,,0.032370851,824,25455,,,0.894401886,22767,25455,,,0.001011037,24,23738,0,0.005949917,0.475741505,12110,25455,,,1,24925,24925,, -47,083,47083,TN,Houston County,2024,1,12896.90594,211,22649,10090.10574,15703.70613,0,,,,2,,,,2,,,,2,,,,2,12978.0453,10028.95241,15927.13819,,,,,2,,0.197,,,0.17,0.227,4.492217045,,,3.870856009,5.113966869,6.147637737,,,5.426161858,6.860994179,0.09430605,53,562,0.070143185,0.118468915,0,,,,,,,,,,,,,0.097087379,0.071515849,0.122658908,,,,,,,0.232,,,0.196,0.271,0.362,,,0.325,0.403,8.2,0.007525065,0.122,,,0.305,,,0.268,0.346,0.452493058,3748,8283,,,0.148489896,,,0.130656123,0.167082777,0.266666667,4,15,0.129817183,0.413965161,324.6,27,8317,,,20.36067481,35,1719,14.18195602,28.31676985,,,,,,,,,,,,,19.26782274,12.99991909,27.50601503,,,,,,,0.159482102,1047,6565,0.138035294,0.180928911,0.000240471,2,8317,,,4158.5,0.000121669,1,8219,,,8219,0.003041733,25,8219,,,328.76,3547,,,,,,,,,3544,0.35,,,,,,,,,0.35,0.43,,,,,,,0.36,,0.43,0.840420038,4882,5809,0.809076987,0.871763089,0.454446855,838,1844,0.350106707,0.558787003,0.043519098,139,3194,,,0.239,397,,0.147255319,0.330744681,,,,,,,,,,,,,0.152280702,0.073586783,0.23097462,4.781170737,96135,20107,2.7943018,6.768039673,0.117384013,210,1789,0.055524339,0.179243688,12.02356619,10,8317,,,125.9506855,52,41286,94.06599622,165.1675671,,,,,,,,,,,,,129.8838997,96.08882402,171.7134035,,,,7.2,,,,,0,,,,,0.102739726,300,2920,0.067956113,0.137523339,0.092831541,0.051147393,0.134515689,0.01130137,0,0.027480542,0.001369863,0,0.010327884,0.764427625,2424,3171,0.692914735,0.835940516,,,,,,,,,,,,,0.808510638,0.738052269,0.878969008,0.57,,3171,0.460111345,0.679888655,71.54538562,,,69.65603033,73.43474091,,,,,,,,,,,,,71.3415843,69.38268683,73.30048177,,,,646.1738295,211,22649,552.862297,739.485362,,,,,,,,,,,,,650.5226692,553.1368343,747.9085042,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.137,,,0.122,0.154,0.199,,,0.18,0.219,0.109,,,0.098,0.121,,,,,,0.122,1010,,,,0.007525065,63.4062003,8426,,,60.45949214,15,24810,33.83871879,99.71873789,,,,,,,,,,,,,57.54249292,30.63895402,98.39941536,,,,0.36,,,0.342,0.378,0.190703465,919,4819,0.16329921,0.218107721,0.07483731,138,1844,0.051007523,0.098667097,0.001095024,9,8219,,,913.2222222,0.875,87.5,100,,,,,,,,2.67263583,,,,,,,,,2.686760629,2.462623263,,,,,,,,,2.490622442,0.013225539,,,,,-2226.502,,,,,0.644925599,36190,56115,0.532517001,0.757334197,60581,,,54353.08511,66808.91489,,,,,,,42031,3088.361702,80973.6383,,,,51691,47039.42553,56342.57447,,,,,,,,,,,25.86295417,,,,,0.226539674,,60581,,,10.12658228,4,395,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,27.79273567,16,57569,15.88594982,45.13366152,,,,,,,,,,,,,30.36917529,17.35860768,49.31763803,,,,,,,,,,,0.576387803,3686,6395,,,0.534,,,,,0.129929078,,,,,0.800396563,2422,3026,0.754518515,0.846274612,0.106466595,298,2799,0.06165048,0.15128271,0.785525446,2377,3026,0.752013876,0.819037017,8219,,,,,0.20598613,1693,8219,,,0.209027862,1718,8219,,,0.031634019,260,8219,,,0.005475119,45,8219,,,0.007178489,59,8219,,,0.000730016,6,8219,,,0.031512349,259,8219,,,0.903272904,7424,8219,,,0.000254001,2,7874,0,0.011390125,0.505900961,4158,8219,,,1,8283,8283,, -47,085,47085,TN,Humphreys County,2024,1,13903.09118,457,51694,11859.75024,15946.43212,0,,,,2,,,,2,,,,2,,,,2,13787.04434,11666.31997,15907.76871,,,,,2,,0.193,,,0.161,0.227,4.54086749,,,3.558309829,5.548917239,6.123657596,,,4.837557217,7.374422897,0.084388186,120,1422,0.06994035,0.098836021,0,,,,,,,,,,,,,0.081570997,0.066827424,0.096314571,,,,,,,0.228,,,0.184,0.276,0.369,,,0.288,0.454,7.6,0.086886253,0.11,,,0.298,,,0.244,0.353,0.668193786,12689,18990,,,0.150998857,,,0.119647283,0.186468722,0.357142857,15,42,0.277350918,0.4357836,166.6,32,19211,,,30.55326177,111,3633,24.86928672,36.23723682,,,,,,,,,,,,,32.0789636,25.91358529,38.24434192,,,,,,,0.137413166,2077,15115,0.118349336,0.156476996,0.000156161,3,19211,,,6403.666667,0.000314038,6,19106,,,3184.333333,0.000523396,10,19106,,,1910.6,3867,,,,,,,,,3795,0.38,,,,,,,0.5,,0.38,0.42,,,,,,,0.21,,0.42,0.872629133,11640,13339,0.848828706,0.896429559,0.457746479,1950,4260,0.368215704,0.547277253,0.034754402,300,8632,,,0.176,667,,0.108085106,0.243914894,,,,,,,,,,0.136612022,0,0.42299424,0.140055164,0.086135641,0.193974687,3.602262017,103194,28647,2.941383408,4.263140626,0.214459591,881,4108,0.11615357,0.312765612,11.45177242,22,19211,,,151.0396024,141,93353,126.1087373,175.9704675,,,,,,,,,,,,,156.9420709,130.4675222,183.4166197,,,,7.2,,,,,0,,,,,0.093158661,640,6870,0.064002332,0.12231499,0.077893175,0.050101834,0.105684516,0.013682678,0.000682742,0.026682615,0.004221252,0,0.009664666,0.831339251,6462,7773,0.784472203,0.8782063,,,,,,,,,,,,,0.83705671,0.781283293,0.892830127,0.446,,7773,0.375219113,0.516780887,71.59742892,,,70.20545076,72.98940708,,,,,,,,,,,,,71.53761968,70.10104044,72.97419892,,,,630.0013989,457,51694,567.9816576,692.0211403,,,,,,,,,,,,,631.6179615,567.5100421,695.7258809,,,,68.189567,12,17598,35.23454432,119.1134507,,,,,,,,,,,,,71.67524598,35.78002455,128.2468138,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.136,,,0.116,0.158,0.196,,,0.169,0.224,0.108,,,0.091,0.127,97.9,16,16344,,,0.11,2080,,,,0.086886253,1610.697349,18538,,,37.24526896,21,56383,23.05540852,56.93335001,,,,,,,,,,,,,40.47958672,25.05750219,61.87734827,,,,0.352,,,0.334,0.369,0.165882353,1833,11050,0.140861076,0.19090363,0.061549263,263,4273,0.041293944,0.081804582,0.001465508,28,19106,,,682.3571429,0.925,174.825,189,,,,,,,,3.038261802,,,,,,,,,3.019075588,3.155398898,,,,,,,,,3.146310085,0.046361761,,,,,-1595.058,,,,,0.652421598,34014,52135,0.504686647,0.800156548,58917,,,50538.44681,67295.55319,,,,,,,,,,,,,54082,50747.02128,57416.97872,,,,,,,,,,,57.35679404,,,,,0.232937862,,58917,,,10.33057851,10,968,,,,,,,,,,,,,,,,,,,,,,,,,,19.201544,20,93353,11.38005191,30.3467178,21.42405707,,,,,,,,,,,,,20.00258975,11.65224565,32.02608386,,,,22.49525993,21,93353,13.92492045,34.38639437,,,,,,,,,,,,,23.25067718,14.20211766,35.90878516,,,,33.88916702,44,129835,24.62392064,45.49462493,,,,,,,,,,,,,35.04497438,25.25733502,47.37062462,,,,,,,,,,,0.572341904,8236,14390,,,0.548,,,,,1.223837216,,,,,0.791958302,5318,6715,0.760967495,0.82294911,0.076506117,494,6457,0.047483438,0.105528796,0.817572599,5490,6715,0.78971066,0.845434538,19106,,,,,0.215796085,4123,19106,,,0.20522349,3921,19106,,,0.027635298,528,19106,,,0.007589239,145,19106,,,0.007589239,145,19106,,,0.000575735,11,19106,,,0.028839108,551,19106,,,0.912017167,17425,19106,,,0.000165911,3,18082,0,0.005531695,0.494661363,9451,19106,,,1,18990,18990,, -47,087,47087,TN,Jackson County,2024,1,11910.3954,297,32209,9549.872891,14270.91791,0,,,,2,,,,2,,,,2,,,,2,12008.60693,9577.49864,14439.71522,,,,,2,,0.215,,,0.18,0.255,4.77496358,,,3.796162454,5.799561584,6.219621005,,,5.033591942,7.465869363,0.099423631,69,694,0.077160747,0.121686515,0,,,,,,,,,,,,,0.101226994,0.078074091,0.124379897,,,,,,,0.254,,,0.206,0.31,0.364,,,0.288,0.45,7.7,0.000323705,0.147,,,0.316,,,0.258,0.379,0.031333391,364,11617,,,0.140012655,,,0.109827932,0.174189284,0.357142857,5,14,0.212111468,0.496744159,246.8,29,11750,,,27.38336714,54,1972,20.57122818,35.72935416,,,,,,,,,,,,,27.18868951,20.17996941,35.84489759,,,,,,,0.141039946,1264,8962,0.120784627,0.161295266,8.51064E-05,1,11750,,,11750,0.000333639,4,11989,,,2997.25,,0,11989,,,,3832,,,,,,,,,3629,0.38,,,,,,,,,0.38,0.38,,,,,,,,,0.38,0.812656785,7127,8770,0.780876583,0.844436986,0.417513683,1068,2558,0.316185036,0.518842329,0.038735343,185,4776,,,0.248,521,,0.158638298,0.337361702,,,,,,,,,,0.115942029,0,0.680150844,0.26187905,0.178281077,0.345477022,5.089819077,95088,18682,4.135856007,6.043782147,0.252036416,526,2087,0.12464691,0.379425922,3.404255319,4,11750,,,124.0758052,73,58835,97.25562492,156.006697,,,,,,,,,,,,,123.512038,96.09973786,156.312389,,,,7.1,,,,,1,,,,,0.108287293,490,4525,0.073547466,0.143027119,0.082860386,0.047740839,0.117979933,0.016574586,0.002336726,0.030812445,0.013259669,0.003980652,0.022538685,0.819940476,3857,4704,0.777435543,0.862445409,,,,,,,,,,,,,0.783614458,0.705172431,0.862056485,0.491,,4704,0.403362738,0.578637262,73.49278432,,,71.83286324,75.1527054,,,,,,,,,,,,,73.16294134,71.4782784,74.84760429,,,,579.80361,297,32209,506.0390039,653.568216,,,,,,,,,,,,,590.9925372,515.0733315,666.9117428,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.147,,,0.125,0.172,0.206,,,0.178,0.235,0.116,,,0.098,0.136,107,11,10280,,,0.147,1710,,,,0.000323705,3.767277464,11638,,,45.19774011,16,35400,25.83441371,73.3982983,,,,,,,,,,,,,44.70139468,25.01903127,73.72815256,,,,0.354,,,0.336,0.37,0.168194384,1156,6873,0.141981618,0.19440715,0.054545455,120,2200,0.036673114,0.072417795,0.00016682,2,11989,,,5994.5,0.875,91,104,,,,,,,,3.251703263,,,,,,,,,3.230454711,2.833579715,,,,,,,,,2.821696081,0.02845199,,,,,-4988.652,,,,,0.742519907,36927,49732,0.597362968,0.887676846,43306,,,38630.59575,47981.40426,,,,,,,,,,,,,41951,34603.08511,49298.91489,,,,,,,,,,,,,,,,0.316907588,,43306,,,11.71875,6,512,,,,,,,,,,,,,,,,,,,,,,,,,,18.00528869,14,58835,9.303595406,31.45161585,23.79535991,,,,,,,,,,,,,16.29243732,8.133126006,29.15167079,,,,16.99668565,10,58835,8.150571422,31.25751006,,,,,,,,,,,,,,,,,,,18.31278232,15,81910,10.24952525,30.20414952,,,,,,,,,,,,,19.24261084,10.76994321,31.73776025,,,,,,,,,,,0.557966457,5323,9540,,,0.556,,,,,5.423070927,,,,,0.829940906,3792,4569,0.797044463,0.86283735,0.095294118,405,4250,0.055501388,0.135086847,0.714160648,3263,4569,0.6618452,0.766476095,11989,,,,,0.179831512,2156,11989,,,0.23279673,2791,11989,,,0.008257569,99,11989,,,0.008424389,101,11989,,,0.001918425,23,11989,,,0.000333639,4,11989,,,0.02819251,338,11989,,,0.93977813,11267,11989,,,0.006340984,71,11197,0,0.016327785,0.492117775,5900,11989,,,1,11617,11617,, -47,089,47089,TN,Jefferson County,2024,1,11688.64778,1194,151610,10607.68044,12769.61512,0,,,,2,,,,2,11339.44512,4559.045051,23363.59081,1,,,,2,12243.29763,11074.03155,13412.56371,,,,,2,,0.185,,,0.154,0.219,4.323596917,,,3.395362817,5.349331542,5.751455821,,,4.591133685,6.981820931,0.083594865,293,3505,0.074431697,0.092758032,0,,,,,,,,,,0.066371681,0.033916782,0.098826581,0.083911672,0.074259917,0.093563427,,,,,,,0.22,,,0.174,0.273,0.347,,,0.27,0.427,7.7,0.05239174,0.122,,,0.28,,,0.228,0.338,0.47484593,25966,54683,,,0.152524201,,,0.119310638,0.190444585,0.307692308,12,39,0.223582628,0.393170151,255.3,142,55624,,,20.84942085,243,11655,18.22793855,23.47090315,,,,,,,,,,22.02643172,12.32802663,36.32924944,21.54381219,18.71615866,24.37146572,,,,,,,0.116498348,5041,43271,0.099817497,0.133179199,0.000449446,25,55624,,,2224.96,0.000246796,14,56727,,,4051.928571,0.000581734,33,56727,,,1719,2698,,,,,,,2970,,2636,0.46,,,,,,,0.47,,0.46,0.48,,,,,,,0.4,,0.48,0.880128741,34729,39459,0.86339198,0.896865502,0.56167979,6848,12192,0.49568107,0.62767851,0.036402912,910,24998,,,0.167,1752,,0.100276596,0.233723404,,,,,,,,,,0.366940211,0.193603027,0.540277395,0.149026346,0.098280646,0.199772046,4.25243942,118103,27773,3.786893097,4.717985742,0.234089387,2446,10449,0.173413334,0.29476544,9.348482669,52,55624,,,92.95789081,254,273242,81.52580504,104.3899766,,,,,,,,,,,,,98.74065846,86.45138382,111.0299331,,,,9.8,,,,,0,,,,,0.101047904,2025,20040,0.082971342,0.119124467,0.075006293,0.057632002,0.092380583,0.01996008,0.010942537,0.028977623,0.007984032,0.003407723,0.012560341,0.836625213,20586,24606,0.80075161,0.872498817,,,,,,,,,,,,,0.820791124,0.790447337,0.851134911,0.441,,24606,0.394593057,0.487406943,73.80052619,,,73.01796834,74.58308404,,,,,,,,,,,,,73.35027429,72.52544058,74.175108,,,,552.1724416,1194,151610,518.2390331,586.1058501,,,,,,,545.8836882,323.5252699,862.731572,,,,571.1709586,535.2035971,607.1383201,,,,62.54951837,30,47962,42.20189738,89.29332679,,,,,,,,,,,,,68.02060053,45.19919506,98.3087065,,,,6.232294618,22,3530,3.905745856,9.435768948,,,,,,,,,,,,,6.560449859,4.061021863,10.0283445,,,,,,,0.132,,,0.112,0.154,0.19,,,0.163,0.219,0.107,,,0.09,0.126,120.1,58,48282,,,0.122,6640,,,,0.05239174,2693.302171,51407,,,38.08349353,63,165426,29.26440209,48.72533174,,,,,,,,,,,,,40.82869072,31.30312306,52.34053886,,,,0.345,,,0.327,0.361,0.141923664,4648,32750,0.120476856,0.163370473,0.038979832,431,11057,0.027064938,0.050894725,0.001110582,63,56727,,,900.4285714,0.96,453.12,472,,,,,,,,2.750453034,,,,,,,,,2.816758218,2.65843688,,,,,,,,,2.699027375,0.041129999,,,,,-1649.179,,,,,0.76204704,41828,54889,0.682185593,0.841908488,60785,,,54486.78723,67083.21277,,,,,,,42833,21201.51064,64464.48936,70373,6668.829787,134077.1702,61222,57338.93617,65105.06383,,,,,,,,,,,64.32801267,,,,,0.225779386,,60785,,,9.033778476,23,2546,,,2.894607347,11,380017,1.444977558,5.179252116,,,,,,,,,,,,,2.859046165,1.371023766,5.257887692,,,,16.16969379,50,273242,11.79428561,21.63632248,18.2987974,,,,,,,,,,,,,16.62639107,11.98284025,22.47405068,,,,12.80915818,35,273242,8.922048002,17.81443825,,,,,,,,,,,,,12.74073012,8.714649973,17.98610945,,,,14.99932898,57,380017,11.36034529,19.43337046,,,,,,,,,,,,,15.15294468,11.35059538,19.82042472,,,,,,,,,,,0.551260504,23616,42840,,,0.634,,,,,31.76930959,,,,,0.744967088,15505,20813,0.717841484,0.772092692,0.090304791,1834,20309,0.071680652,0.10892893,0.81530774,16969,20813,0.789701178,0.840914303,56727,,,,,0.189415975,10745,56727,,,0.208877607,11849,56727,,,0.018985668,1077,56727,,,0.00495355,281,56727,,,0.007174714,407,56727,,,0.000793273,45,56727,,,0.040844748,2317,56727,,,0.915331324,51924,56727,,,0.012670528,665,52484,0.007423262,0.017917794,0.505262045,28662,56727,,,0.758169815,41459,54683,, -47,091,47091,TN,Johnson County,2024,1,12036.00096,451,48522,10125.49511,13946.5068,0,,,,2,,,,2,,,,2,,,,2,12465.02916,10424.5795,14505.47882,,,,,2,,0.23,,,0.195,0.268,4.950288635,,,3.970162715,6.000096454,6.459120687,,,5.229421307,7.74327506,0.089268756,94,1053,0.072046631,0.106490881,0,,,,,,,,,,,,,0.090080972,0.072228617,0.107933326,,,,,,,0.266,,,0.218,0.317,0.359,,,0.282,0.443,7.3,0.027982984,0.154,,,0.336,,,0.28,0.394,1,17948,17948,,,0.1383325,,,0.10841923,0.17349461,0.3,6,20,0.18023908,0.422795722,181.6,33,18170,,,33.49964362,94,2806,27.07112202,40.99507973,,,,,,,,,,,,,34.98654364,28.16898251,42.95572277,,,,,,,0.134861712,1653,12257,0.114606393,0.155117031,0.000330215,6,18170,,,3028.333333,0.000276457,5,18086,,,3617.2,0.000829371,15,18086,,,1205.733333,2614,,,,,,,,,2632,0.39,,,,,,,,,0.39,0.34,,,,,,,,,0.34,0.824215051,11314,13727,0.796501735,0.851928367,0.326539959,1426,4367,0.255947997,0.397131921,0.033941169,255,7513,,,0.295,848,,0.191340426,0.398659575,,,,,,,,,,0.716216216,0.614851779,0.817580654,0.360953921,0.270853016,0.451054825,4.657247489,94109,20207,3.896973048,5.417521929,0.221389646,650,2936,0.128537927,0.314241365,12.65822785,23,18170,,,128.814015,115,89276,105.2705561,152.3574739,,,,,,,,,,,,,132.4613953,107.8189439,157.1038466,,,,6.5,,,,,0,,,,,0.13252149,925,6980,0.089963831,0.175079149,0.100074683,0.065845307,0.134304058,0.028653295,0.00589961,0.05140698,0.007163324,0,0.016582238,0.769450619,4846,6298,0.708929412,0.829971827,,,,,,,,,,,,,0.755829904,0.691000182,0.820659626,0.378,,6298,0.289204061,0.46679594,73.22919664,,,71.85433757,74.60405571,,,,,,,,,,,,,72.7965201,71.357901,74.2351392,,,,590.5347679,451,48522,531.2506627,649.8188731,,,,,,,,,,,,,604.731357,542.7454226,666.7172914,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.155,,,0.134,0.179,0.206,,,0.178,0.237,0.124,,,0.106,0.144,204.8,33,16113,,,0.154,2760,,,,0.027982984,510.521558,18244,,,44.60386195,24,53807,28.57853598,66.36701097,,,,,,,,,,,,,45.57433571,28.89021943,68.38388035,,,,0.379,,,0.361,0.396,0.163173653,1526,9352,0.136960887,0.189386419,0.044517185,136,3055,0.029027823,0.060006547,0.001769324,32,18086,,,565.1875,0.925,138.75,150,,,,,,,,2.807264792,,,,,,,,,2.866827727,2.807934856,,,,,,,,,2.784253764,0.01891411,,,,,-5487.669,,,,,0.942972066,38213,40524,0.730017267,1.155926865,45495,,,39205.12766,51784.87234,,,,,,,,,,,,,47058,42687.61702,51428.38298,,,,,,,,,,,,,,,,0.301659523,,45495,,,15.21438451,11,723,,,,,,,,,,,,,,,,,,,,,,,,,,34.02549026,30,89276,22.42301248,49.50530192,33.60365608,,,,,,,,,,,,,35.29407726,23.05526305,51.71400066,,,,20.16219365,18,89276,11.94939377,31.86495841,,,,,,,,,,,,,21.48022626,12.73054343,33.94801817,,,,26.42960115,33,124860,18.19292133,37.11698644,,,,,,,,,,,,,28.12603875,19.36067091,39.49941555,,,,,,,,,,,0.534681289,7801,14590,,,0.594,,,,,0.189431393,,,,,0.762112615,5238,6873,0.731032201,0.793193028,0.096111287,608,6326,0.061105073,0.131117501,0.755419759,5192,6873,0.701763854,0.809075663,18086,,,,,0.164215415,2970,18086,,,0.241125733,4361,18086,,,0.023609422,427,18086,,,0.004146854,75,18086,,,0.002709278,49,18086,,,0.000497623,9,18086,,,0.02554462,462,18086,,,0.932102179,16858,18086,,,0.004924681,85,17260,0,0.011300695,0.463950017,8391,18086,,,1,17948,17948,, -47,093,47093,TN,Knox County,2024,1,10383.79254,8070,1338612,10058.47066,10709.11443,0,,,,2,3072.229381,1988.184869,4535.216619,1,16464.29613,15084.84148,17843.75077,,6559.861749,5365.312378,7754.41112,,10240.05452,9881.193143,10598.9159,,,,,2,,0.162,,,0.136,0.193,3.848250782,,,3.135176488,4.646198867,5.882093822,,,5.059866135,6.808702067,0.081940303,2995,36551,0.079128462,0.084752143,0,,,,0.074596774,0.058246473,0.090947076,0.147706179,0.136381607,0.159030751,0.080342443,0.07067483,0.090010056,0.073523101,0.070464058,0.076582145,,,,0.078668684,0.05814458,0.099192788,0.173,,,0.137,0.216,0.364,,,0.315,0.414,7.5,0.119691291,0.102,,,0.253,,,0.212,0.297,0.780635988,373902,478971,,,0.16950454,,,0.141188627,0.199844243,0.21656051,68,314,0.18843599,0.245795579,543.7,2646,486677,,,16.56863018,1783,107613,15.79955818,17.33770219,,,,,,,30.00085962,26.8532776,33.14844165,41.06240834,35.99249871,46.13231798,13.08647932,12.30779034,13.86516829,,,,20.4769935,16.35629511,25.32011957,0.103347791,41246,399099,0.093815876,0.112879706,0.001093128,532,486677,,,914.806391,0.000598495,296,494574,,,1670.858108,0.004207662,2081,494574,,,237.6617011,2567,,,,,,623,4206,3073,2433,0.5,,,,,,0.39,0.48,0.3,0.51,0.56,,,,,,0.55,0.45,0.38,0.57,0.923456086,297882,322573,0.918919675,0.927992497,0.718490876,91068,126749,0.69736849,0.739613261,0.028682761,7199,250987,,,0.121,12127,,0.08287234,0.15912766,,,,0.061875298,0.011696147,0.112054448,0.344664281,0.286079895,0.403248668,0.293473025,0.22856989,0.35837616,0.087582065,0.074464226,0.100699904,4.630062251,132392,28594,4.411315756,4.848808746,0.246939675,24651,99826,0.22918327,0.264696081,11.69153258,569,486677,,,131.0309406,3092,2359748,126.4123423,135.6495389,,,,,,,170.3594144,152.4859189,188.23291,56.57262627,43.27357647,72.66990514,137.0770035,131.8598464,142.2941606,,,,9,,,,,0,,,,,0.124119556,23525,189535,0.116286668,0.131952444,0.11016813,0.103046431,0.11728983,0.011106128,0.008954399,0.013257858,0.010288337,0.007960561,0.012616114,0.786175332,187572,238588,0.778112989,0.794237674,,,,0.746046866,0.687926063,0.804167669,0.761494917,0.739504254,0.78348558,0.690503382,0.638102715,0.742904049,0.807007558,0.796436293,0.817578823,0.261,,238588,0.251031285,0.270968715,74.88375213,,,74.62664986,75.14085439,,,,86.20838276,83.31034762,89.1064179,69.74111894,68.78891634,70.69332154,86.38095948,82.21971841,90.54220055,74.96793802,74.6892838,75.24659225,,,,494.7358973,8070,1338612,483.5785381,505.8932565,,,,164.7310285,121.8689217,217.7831558,751.6349396,702.8388375,800.4310417,279.1297758,228.2973209,329.9622307,490.3736048,478.2729906,502.474219,,,,50.36659369,228,452681,43.82879975,56.90438763,,,,,,,94.16800428,68.42261607,126.4161504,41.27910177,23.1035999,68.08360084,47.4245505,40.07604027,54.77306074,,,,6.012407423,220,36591,5.217908828,6.806906017,,,,,,,12.66490765,9.33810312,16.79183013,8.66851595,5.609806466,12.79643956,4.908761071,4.089752547,5.727769596,,,,,,,0.114,,,0.097,0.133,0.179,,,0.155,0.206,0.108,,,0.093,0.125,252.3,1048,415379,,,0.102,48410,,,,0.119691291,51733.68777,432226,,,70.98985829,1017,1432599,66.62679107,75.35292551,,,,,,,87.00906344,70.59905942,103.4190675,23.65534167,13.52107167,38.41479286,75.56539566,70.5867938,80.54399752,,,,0.349,,,0.331,0.366,0.127152336,37868,297816,0.114045953,0.140258719,0.0361001,3843,106454,0.026568185,0.045632015,0.002620437,1296,494574,,,381.6157407,0.899237326,4008.8,4458,,,0.038993017,1061,27210,0.026741509,0.051244526,3.038973414,,,,,,,2.538333891,,3.202285419,2.869543952,,,,,,,2.341172733,2.460875581,3.025755237,0.137747036,,,,,-914.4766,,,,,0.782431381,46237,59094,0.761528523,0.803334239,70013,,,67072.40426,72953.59575,38523,18497.6383,58548.3617,95632,77744.17021,113519.8298,39670,37320.38298,42019.61702,52342,42908.97872,61775.02128,72798,71175.19149,74420.80851,,,,,,,,,,,55.46594648,,,,,0.263079714,,70013,,,8.940646131,238,26620,,,6.61115743,216,3267204,5.729486149,7.492828712,,,,,,,42.16488579,34.62063049,49.70914109,,,,3.313738836,2.661204389,4.077840782,,,,16.71220036,408,2359748,15.0548006,18.36960012,17.28998181,,,,,,,5.037909218,2.303652896,9.563520977,,,,18.63942828,16.7145325,20.56432405,,,,16.95096256,400,2359748,15.28976823,18.61215689,,,,,,,49.30172166,39.68654052,58.91690279,,,,14.7828141,13.0695269,16.4961013,,,,13.74263744,449,3267204,12.47146932,15.01380555,,,,,,,19.32557265,14.5586661,25.15488919,13.84504624,8.456913929,21.38255102,13.81345065,12.40781975,15.21908156,,,,,,,,,,,0.619722109,220556,355895,,,0.699,,,,,93.48223868,,,,,0.649485224,126547,194842,0.640164814,0.658805634,0.114678146,21658,188859,0.107085641,0.122270652,0.868842447,169287,194842,0.860569201,0.877115692,494574,,,,,0.205637579,101703,494574,,,0.165625367,81914,494574,,,0.085133873,42105,494574,,,0.003720374,1840,494574,,,0.02548658,12605,494574,,,0.001255626,621,494574,,,0.051515041,25478,494574,,,0.812553834,401868,494574,,,0.013019752,5924,455001,0.011000803,0.0150387,0.510293707,252378,494574,,,0.091932497,44033,478971,, -47,095,47095,TN,Lake County,2024,1,14084.15295,198,19649,10950.36821,17217.9377,0,,,,2,,,,2,8203.417488,5078.04472,12539.79504,1,,,,2,16724.64701,12390.57159,21058.72243,,,,,2,,0.278,,,0.239,0.316,5.275451349,,,4.23331356,6.430263598,6.245948577,,,4.97359696,7.708646583,0.115812918,52,449,0.086213478,0.145412357,0,,,,,,,0.14893617,0.076962558,0.220909783,,,,0.095092025,0.063248471,0.126935578,,,,,,,0.297,,,0.247,0.346,0.414,,,0.328,0.505,6.9,0.000757408,0.184,,,0.376,,,0.316,0.439,0.219557459,1538,7005,,,0.145885125,,,0.11398421,0.182240268,0.25,1,4,0.023230216,0.544021398,841.8,60,7128,,,72.84768212,55,755,54.87884367,94.82127149,,,,,,,,,,,,,79.54545455,57.32936692,107.5223462,,,,,,,0.143964849,557,3869,0.118943572,0.168986125,,0,7128,,,,0.000153681,1,6507,,,6507,0.000461042,3,6507,,,2169,4616,,,,,,,2974,,4566,0.29,,,,,,,0.22,,0.3,0.28,,,,,,,0.26,,0.28,0.742781155,3910,5264,0.689096543,0.796465767,0.307009346,657,2140,0.233114564,0.380904128,0.0497543,81,1628,,,0.429,399,,0.272914894,0.585085106,,,,,,,0.620087336,0.404328732,0.835845941,0.023809524,0,0.793768699,0.294019934,0.172867821,0.415172046,7.954798465,82889,10420,4.918599447,10.99099748,0.479550102,469,978,0.354143828,0.604956377,9.820426487,7,7128,,,97.19252451,35,36011,67.69815446,135.1712737,,,,,,,,,,,,,112.5,74.13820888,163.6815935,,,,7.7,,,,,0,,,,,0.154734411,335,2165,0.092157313,0.217311509,0.097073171,0.044717337,0.149429005,0.045265589,0,0.100851154,0.057736721,0.010776822,0.104696619,0.852631579,1458,1710,0.790006295,0.915256863,,,,,,,,,,,,,0.884113584,0.815826392,0.952400776,0.353,,1710,0.238685304,0.467314696,70.12459158,,,68.06682636,72.1823568,,,,,,,73.82573604,70.50579537,77.14567671,,,,68.38055013,65.743914,71.01718627,,,,775.8949977,198,19649,664.6953524,887.094643,,,,,,,572.0524537,391.2834548,807.5673798,,,,875.5232136,734.8883471,1016.15808,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.168,,,0.144,0.193,0.204,,,0.177,0.233,0.154,,,0.132,0.178,668.4,43,6434,,,0.184,1320,,,,0.000757408,5.932017564,7832,,,,,,,,,,,,,,,,,,,,,,,,,,0.404,,,0.389,0.417,0.178717599,524,2932,0.145355897,0.212079301,0.035496957,35,986,0.022390574,0.04860334,0.001536807,10,6507,,,650.7,,,,,,,,,,,2.52106992,,,,,,,2.347582304,,2.668436737,2.269091671,,,,,,,1.974877671,,2.404171408,0.005691045,,,,,-16246.84,,,,,0.861217463,33516,38917,0.608940284,1.113494642,38088,,,32371.23404,43804.76596,,,,,,,26080,16619.57447,35540.42553,125417,48819.7234,202014.2766,35721,26309.42553,45132.57447,,,,,,,,,,,1.591347479,,,,,0.360323462,,38088,,,5.780346821,2,346,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.329392713,2034,6175,,,0.503,,,,,0.878558389,,,,,0.464480874,935,2013,0.406049814,0.522911935,0.119006355,206,1731,0.054906083,0.183106626,0.720814704,1451,2013,0.646780688,0.794848721,6507,,,,,0.149377593,972,6507,,,0.169202397,1101,6507,,,0.265867527,1730,6507,,,0.007530352,49,6507,,,0.003380974,22,6507,,,0.000461042,3,6507,,,0.032119256,209,6507,,,0.668971876,4353,6507,,,0.007369529,49,6649,0,0.021634545,0.395573997,2574,6507,,,1,7005,7005,, -47,097,47097,TN,Lauderdale County,2024,1,12750.1328,573,71279,11177.18801,14323.0776,0,,,,2,,,,2,13044.51426,10469.7685,15619.26003,,,,,2,12821.67316,10702.8097,14940.53662,,,,,2,,0.258,,,0.226,0.293,5.069759638,,,4.135736179,6.132178261,6.277067588,,,5.097601666,7.536301331,0.127516779,266,2086,0.113202775,0.141830782,0,,,,,,,0.201405152,0.1745068,0.228303504,,,,0.075757576,0.060274201,0.091240951,,,,,,,0.274,,,0.231,0.318,0.414,,,0.336,0.494,7.3,0.042561529,0.145,,,0.371,,,0.318,0.427,0.485622241,12210,25143,,,0.137476941,,,0.107910769,0.169956893,0.555555556,15,27,0.471831949,0.629785201,1019.6,256,25108,,,46.09403925,249,5402,40.36870079,51.8193777,,,,,,,53.93996248,44.0813047,63.79862025,,,,40.06908463,32.77725525,47.36091401,,,,,,,0.119963468,2233,18614,0.103282617,0.136644319,0.000159312,4,25108,,,6277,0.00020167,5,24793,,,4958.6,0.00020167,5,24793,,,4958.6,3423,,,,,,,2893,,3556,0.33,,,,,,,0.32,,0.33,0.41,,,,,,,0.32,,0.42,0.819561158,14044,17136,0.797214978,0.841907338,0.369104979,2528,6849,0.317226317,0.420983641,0.046833422,440,9395,,,0.252,1355,,0.151914894,0.352085106,,,,,,,0.360917248,0.244986485,0.476848012,0.106382979,0,0.528105737,0.129151292,0.071691765,0.186610818,4.790914813,91334,19064,4.043281683,5.538547944,0.398606396,2231,5597,0.342364639,0.454848154,7.567309224,19,25108,,,85.63056304,109,127291,69.55479904,101.706327,,,,,,,59.4014165,38.80297742,87.03683821,,,,106.9267682,85.04203196,132.724313,,,,7.9,,,,,0,,,,,0.149843913,1440,9610,0.119828508,0.179859317,0.117183395,0.089060792,0.145305997,0.030176899,0.016101817,0.044251982,0.004682622,0,0.010169534,0.836042012,7562,9045,0.80038976,0.871694264,,,,,,,0.768392371,0.676600481,0.860184261,,,,0.906122449,0.862887191,0.949357707,0.309,,9045,0.260134408,0.357865592,71.88695753,,,70.77821266,72.99570239,,,,,,,71.57559007,69.63354048,73.51763966,,,,71.71761744,70.27367702,73.16155787,,,,627.9863569,573,71279,574.8613382,681.1113756,,,,,,,651.5690531,555.7740691,747.3640371,,,,631.1579104,563.790509,698.5253119,,,,88.19049146,22,24946,55.26851147,133.5214639,,,,,,,117.6722294,58.74155292,210.5481227,,,,74.47680048,35.71452071,136.9654878,,,,9.929078014,21,2115,6.146255784,15.17765047,,,,,,,,,,,,,,,,,,,,,,0.158,,,0.138,0.179,0.208,,,0.182,0.236,0.145,,,0.125,0.167,291.2,62,21288,,,0.145,3680,,,,0.042561529,1183.848923,27815,,,15.74968501,12,76192,8.138092068,27.51153015,,,,,,,,,,,,,24.17848115,12.06981068,43.26198157,,,,0.396,,,0.383,0.408,0.151917736,2024,13323,0.129279438,0.174556034,0.040688295,227,5579,0.027581912,0.053794678,0.001048683,26,24793,,,953.5769231,0.96,280.32,292,,,,,,,,2.783958235,,,,,,,2.541233918,,3.049307489,2.753960499,,,,,,,2.529713597,,3.030346628,0.066944968,,,,,-9219.98,,,,,0.826463639,37776,45708,0.732943797,0.919983481,47575,,,40510.65957,54639.34043,,,,,,,34407,28907.08511,39906.91489,,,,54605,46431.38298,62778.61702,,,,,,,,,,,51.90757676,,,,,0.288470836,,47575,,,6.25,9,1440,,,10.49723757,19,181000,6.320022743,16.39273678,,,,,,,22.45352921,12.27555336,37.67320672,,,,,,,,,,13.45241953,17,127291,7.689220096,21.84588652,13.35522543,,,,,,,,,,,,,20.75121102,11.34488016,34.81700605,,,,18.8544359,24,127291,12.08039284,28.05390608,,,,,,,25.13136852,12.54548862,44.96696028,,,,16.95180472,9.026122067,28.98810233,,,,23.20441989,42,181000,16.72370483,31.36563468,,,,,,,,,,,,,29.32631946,20.0591808,41.4000129,,,,,,,,,,,0.456931702,8965,19620,,,0.524,,,,,12.7621603,,,,,0.620247617,5661,9127,0.591463464,0.64903177,0.128397376,1096,8536,0.097722984,0.159071767,0.820532486,7489,9127,0.786538487,0.854526485,24793,,,,,0.220142782,5458,24793,,,0.167829629,4161,24793,,,0.343242044,8510,24793,,,0.008752471,217,24793,,,0.006009761,149,24793,,,0.000121002,3,24793,,,0.031702497,786,24793,,,0.594603316,14742,24793,,,0.00648503,154,23747,5.92291E-05,0.01291083,0.482999234,11975,24793,,,0.724694746,18221,25143,, -47,099,47099,TN,Lawrence County,2024,1,11398.58578,946,123295,10292.87322,12504.29834,0,,,,2,,,,2,21188.79134,10160.84905,38966.94169,1,,,,2,11380.42001,10246.99557,12513.84446,,,,,2,,0.212,,,0.177,0.247,4.6817003,,,3.739369321,5.727543776,6.270435194,,,5.098059629,7.556814358,0.091090592,365,4007,0.082181294,0.099999889,0,,,,,,,,,,,,,0.090836228,0.081629681,0.100042774,,,,,,,0.246,,,0.197,0.296,0.409,,,0.331,0.49,7.8,0.015685348,0.134,,,0.328,,,0.272,0.388,0.533186893,23545,44159,,,0.144200839,,,0.113737583,0.18022208,0.228571429,8,35,0.141673695,0.323835534,348,156,44828,,,26.15652888,255,9749,22.94607754,29.36698021,,,,,,,,,,,,,26.37729549,23.01905215,29.73553884,,,,,,,0.123420664,4513,36566,0.106739813,0.140101515,0.000379227,17,44828,,,2636.941177,0.000198172,9,45415,,,5046.111111,0.000968843,44,45415,,,1032.159091,3288,,,,,,,,,3336,0.39,,,,,,,0.32,,0.39,0.41,,,,,,,0.34,,0.41,0.857602467,25590,29839,0.839656842,0.875548091,0.493450193,5236,10611,0.442445381,0.544455006,0.034791201,669,19229,,,0.169,1885,,0.102276596,0.235723404,,,,,,,0.619469027,0.237004642,1,0.309978769,0.07107975,0.548877787,0.175342182,0.133614378,0.217069986,4.888954114,99940,20442,4.304138875,5.473769353,0.187721048,2070,11027,0.136362944,0.239079153,11.1537432,50,44828,,,102.9329077,227,220532,89.5423895,116.3234259,,,,,,,,,,,,,105.414005,91.38830588,119.4397041,,,,6.9,,,,,0,,,,,0.133519207,2155,16140,0.110232997,0.156805417,0.100760456,0.079475214,0.122045698,0.018587361,0.010951519,0.026223203,0.024473358,0.012950967,0.03599575,0.847405453,15416,18192,0.829936171,0.864874735,,,,,,,,,,,,,0.822013002,0.73280726,0.911218743,0.359,,18192,0.318244793,0.399755207,72.7494891,,,71.96406255,73.53491566,,,,,,,,,,,,,72.67073874,71.87158117,73.46989632,,,,589.1037334,946,123295,549.8232063,628.3842605,,,,,,,985.6596497,631.5307359,1466.583429,,,,593.8149315,553.2498223,634.3800407,,,,56.29339282,27,47963,37.09770059,81.90393104,,,,,,,,,,,,,48.38040824,29.94823523,73.95459322,,,,9.511889862,38,3995,6.731179386,13.055812,,,,,,,,,,,,,8.807045637,6.062364978,12.3683665,,,,,,,0.147,,,0.124,0.169,0.203,,,0.175,0.231,0.117,,,0.099,0.135,113.6,42,36977,,,0.134,5870,,,,0.015685348,656.7298536,41869,,,32.98301375,44,133402,23.96550828,44.27815646,,,,,,,,,,,,,35.41019492,25.72910184,47.53653389,,,,0.358,,,0.34,0.374,0.156895742,4009,25552,0.134257444,0.17953404,0.047890733,554,11568,0.032401371,0.063380095,0.00156336,71,45415,,,639.6478873,0.96,501.12,522,,,0.134299517,278,2070,0.065904046,0.202694988,3.148460204,,,,,,,2.944708355,,3.162492773,2.817490613,,,,,,,2.500268086,,2.844997326,0.08860044,,,,,-192.4326,,,,,0.774987207,37862,48855,0.699708757,0.850265657,55562,,,49355.53192,61768.46809,115536,11812.08511,219259.9149,,,,14042,11670.93617,16413.06383,,,,51518,48876.46809,54159.53192,,,,,,,,,,,74.48406926,,,,,0.247003348,,55562,,,8.887308923,25,2813,,,6.532169301,20,306177,3.99001871,10.08840569,,,,,,,,,,,,,5.939321101,3.459873412,9.509428433,,,,21.69206011,46,220532,15.69865146,29.21906261,20.8586509,,,,,,,,,,,,,20.95361659,14.90006974,28.64428366,,,,21.76554876,48,220532,16.04819746,28.85795993,,,,,,,,,,,,,20.40271065,14.70447924,27.5785377,,,,14.044164,43,306177,10.16383112,18.91739674,,,,,,,,,,,,,14.67361684,10.57545234,19.8344672,,,,,,,,,,,0.57434796,18718,32590,,,0.663,,,,,23.30488169,,,,,0.753821888,12426,16484,0.727909612,0.779734164,0.093847758,1440,15344,0.072277492,0.115418024,0.79555933,13114,16484,0.77358347,0.817535191,45415,,,,,0.25040185,11372,45415,,,0.17518441,7956,45415,,,0.01748321,794,45415,,,0.005130464,233,45415,,,0.004535946,206,45415,,,0.000968843,44,45415,,,0.027303754,1240,45415,,,0.929450622,42211,45415,,,0.012554415,522,41579,0.006044324,0.019064505,0.504150611,22896,45415,,,0.735523902,32480,44159,, -47,101,47101,TN,Lewis County,2024,1,13396.74594,319,34226,10924.11924,15869.37263,0,,,,2,,,,2,,,,2,,,,2,12957.92995,10510.46367,15405.39623,,,,,2,,0.226,,,0.192,0.266,4.951011008,,,3.979689586,6.085204014,6.640031442,,,5.382402757,8.026068062,0.083420229,80,959,0.065919039,0.10092142,0,,,,,,,,,,,,,0.082681564,0.064638556,0.100724573,,,,,,,0.263,,,0.217,0.317,0.374,,,0.292,0.459,5.9,0.169647653,0.152,,,0.338,,,0.281,0.401,0.468605945,5896,12582,,,0.138290198,,,0.107085713,0.172978434,0.166666667,3,18,0.057993584,0.308188518,350,45,12857,,,38.39732888,92,2396,30.95366643,47.09091528,,,,,,,,,,,,,39.10868577,31.28190052,48.29890877,,,,,,,0.144756424,1459,10079,0.124501105,0.165011743,0.000155557,2,12857,,,6428.5,0.000308713,4,12957,,,3239.25,0.000385892,5,12957,,,2591.4,3405,,,,,,,,,3455,0.38,,,,,,,,,0.38,0.3,,,,,,,0.27,,0.3,0.843531968,7375,8743,0.791830929,0.895233008,0.483274021,1358,2810,0.373721113,0.59282693,0.036131584,201,5563,,,0.19,531,,0.112553192,0.267446809,,,,,,,,,,,,,0.250841751,0.133499907,0.368183595,4.913068732,101504,20660,3.83098396,5.995153503,0.248827984,690,2773,0.116019913,0.381636055,8.555650618,11,12857,,,133.0974371,82,61609,105.8563416,165.2090135,,,,,,,,,,,,,134.4978166,106.1435735,168.0991939,,,,6.8,,,,,0,,,,,0.100310238,485,4835,0.057656663,0.142963813,0.085327784,0.043014595,0.127640972,0.005170631,0,0.015908165,0.01344364,0.000126863,0.026760417,0.8124034,4205,5176,0.756737847,0.868068954,,,,,,,,,,,,,0.789347696,0.697763949,0.880931443,0.489,,5176,0.378185084,0.599814916,71.7183009,,,70.00792257,73.42867923,,,,,,,,,,,,,71.87050639,70.18500757,73.55600521,,,,636.6490515,319,34226,561.4285932,711.8695097,,,,,,,,,,,,,637.3168646,559.8078104,714.8259188,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.154,,,0.132,0.18,0.215,,,0.185,0.247,0.123,,,0.104,0.144,64.4,7,10869,,,0.152,1900,,,,0.169647653,2063.085104,12161,,,48.01536492,18,37488,28.45694831,75.88497724,,,,,,,,,,,,,46.06968039,26.33280292,74.81427468,,,,0.362,,,0.345,0.378,0.179088029,1300,7259,0.151683773,0.206492284,0.058151261,173,2975,0.039087431,0.07721509,0.000848962,11,12957,,,1177.909091,0.975,101.4,104,,,,,,,,3.025825213,,,,,,,,,3.074845981,2.995623449,,,,,,,,,2.990412417,0.006783114,,,,,-2263.394,,,,,0.845950964,40093,47394,0.570996429,1.120905499,53189,,,45309.68085,61068.31915,,,,,,,,,,,,,46667,34612.70213,58721.29787,,,,,,,,,,,,,,,,0.258023276,,53189,,,5.970149254,4,670,,,,,,,,,,,,,,,,,,,,,,,,,,23.76026156,16,61609,13.29843803,39.1889381,25.97023162,,,,,,,,,,,,,25.40815602,14.22075205,41.90688941,,,,25.97023162,16,61609,14.84423129,42.17402912,,,,,,,,,,,,,26.20087336,14.66442993,43.21435611,,,,30.45673387,26,85367,19.89534974,44.6261718,,,,,,,,,,,,,31.47782073,20.37078587,46.46747296,,,,,,,,,,,0.600214018,5609,9345,,,0.584,,,,,7.72279957,,,,,0.785728366,3986,5073,0.733872808,0.837583924,0.106439705,519,4876,0.0517523,0.16112711,0.705499704,3579,5073,0.638522374,0.772477035,12957,,,,,0.21918654,2840,12957,,,0.211237169,2737,12957,,,0.020992514,272,12957,,,0.006482982,84,12957,,,0.007640658,99,12957,,,0.001157675,15,12957,,,0.031334414,406,12957,,,0.919888863,11919,12957,,,0,0,11971,0,0.00836063,0.507447712,6575,12957,,,1,12582,12582,, -47,103,47103,TN,Lincoln County,2024,1,12380.6814,771,95598,10964.94936,13796.41344,0,,,,2,,,,2,15505.34272,10384.17136,22268.25856,,,,,2,12871.71969,11287.59801,14455.84137,,,,,2,,0.188,,,0.157,0.224,4.319262298,,,3.423585371,5.303896484,6.228084525,,,5.04741232,7.461274018,0.090558767,235,2595,0.079516965,0.101600569,0,,,,,,,0.153439153,0.102055811,0.204822496,0.089655172,0.043154128,0.136156217,0.085541609,0.073721906,0.097361311,,,,,,,0.212,,,0.17,0.257,0.362,,,0.284,0.441,8.2,0.038015837,0.107,,,0.297,,,0.244,0.356,0.281293355,9935,35319,,,0.150158016,,,0.116797831,0.185569546,0.424242424,14,33,0.336944778,0.506850609,310.4,110,35433,,,26.65322,185,6941,22.81243593,30.49400406,,,,,,,25.91792657,13.39217086,45.27340183,34.96503497,19.56966465,57.66950786,24.06509695,20.06439418,28.06579972,,,,98.36065574,58.29475836,155.4522419,0.128318898,3615,28172,0.110446558,0.146191239,0.000423334,15,35433,,,2362.2,0.000249972,9,36004,,,4000.444444,0.000361071,13,36004,,,2769.538462,2147,,,,,,,,,2208,0.4,,,,,,,0.33,,0.4,0.45,,,,,,,0.39,,0.45,0.880783206,21817,24770,0.860569303,0.900997108,0.459165387,3587,7812,0.392509482,0.525821292,0.032213391,535,16608,,,0.187,1479,,0.117893617,0.256106383,,,,,,,0.007662835,0,0.102571909,,,,0.143610882,0.090875416,0.196346349,4.603689366,116547,25316,4.062076208,5.145302525,0.248883786,1951,7839,0.181835498,0.315932075,6.491124093,23,35433,,,101.6218853,175,172207,86.56537606,116.6783945,,,,,,,,,,,,,112.1949909,95.17844912,129.2115326,,,,7.8,,,,,0,,,,,0.108049311,1490,13790,0.084882107,0.131216515,0.079941328,0.060333229,0.099549426,0.02284264,0.010433631,0.035251648,0.00906454,0.002408289,0.01572079,0.852768483,13507,15839,0.825408491,0.880128474,,,,,,,,,,,,,0.804378152,0.794080135,0.81467617,0.458,,15839,0.405263976,0.510736025,72.83779846,,,71.83781016,73.83778676,,,,,,,70.50752545,66.67304613,74.34200477,,,,72.42079178,71.33098772,73.51059583,,,,580.8155653,771,95598,536.9400385,624.6910921,,,,,,,811.6611376,623.702704,1038.467182,,,,591.4120931,543.7606069,639.0635794,,,,89.45077226,30,33538,60.35206041,127.6965394,,,,,,,,,,,,,95.78191195,62.56792491,140.3426933,,,,10.12066952,26,2569,6.611157344,14.82912576,,,,,,,,,,,,,10.28517999,6.445667542,15.57188611,,,,,,,0.13,,,0.111,0.152,0.191,,,0.164,0.22,0.108,,,0.091,0.126,129.6,39,30091,,,0.107,3770,,,,0.038015837,1268.246321,33361,,,22.04353118,23,104339,13.97370785,33.07612005,,,,,,,,,,,,,25.55839538,16.20183025,38.35014212,,,,0.348,,,0.332,0.364,0.154910233,3158,20386,0.132271935,0.17754853,0.060395315,495,8196,0.041331485,0.079459145,0.00094434,34,36004,,,1058.941177,0.940508242,342.345,364,,,,,,,,2.989309207,,,,,,,2.467780325,,3.081807959,2.984859004,,,,,,,2.473214878,,3.082894524,0.131070504,,,,,-5038.6573,,,,,0.719644603,41227,57288,0.674897172,0.764392034,61591,,,55488.19149,67693.80851,,,,,,,41612,39337.44681,43886.55319,,,,65616,61637.61702,69594.38298,,,,,,,,,,,55.31232787,,,,,0.222824763,,61591,,,11.02756892,22,1995,,,,,,,,,,,,,,,,,,,,,,,,,,29.84000841,47,172207,21.68179579,40.05881849,27.29273491,,,,,,,,,,,,,33.13514912,23.88090096,44.78909567,,,,15.09810867,26,172207,9.862585851,22.12222737,,,,,,,,,,,,,17.46748361,11.41034022,25.59391062,,,,25.45962979,61,239595,19.47459945,32.70395956,,,,,,,,,,,,,27.96177914,21.23255121,36.14708366,,,,,,,,,,,0.601464355,15608,25950,,,0.66,,,,,17.4310028,,,,,0.763282998,10918,14304,0.738448607,0.788117389,0.095806596,1284,13402,0.068882789,0.122730403,0.753076063,10772,14304,0.718298611,0.787853514,36004,,,,,0.223003,8029,36004,,,0.202727475,7299,36004,,,0.06802022,2449,36004,,,0.007915787,285,36004,,,0.007054772,254,36004,,,0.001805355,65,36004,,,0.041217643,1484,36004,,,0.857432508,30871,36004,,,0.002401177,80,33317,0,0.006570327,0.505721587,18208,36004,,,0.713468671,25199,35319,, -47,105,47105,TN,Loudon County,2024,1,10604.64196,1053,147079,9492.604705,11716.67922,0,,,,2,,,,2,21583.67106,10350.20922,39693.13954,1,,,,2,11372.82533,10096.36097,12649.28968,,,,,2,,0.17,,,0.141,0.202,3.997784354,,,3.146875492,4.998683638,5.596623028,,,4.47845313,6.790998036,0.080733443,295,3654,0.071900218,0.089566667,0,,,,,,,,,,0.078740158,0.059616639,0.097863676,0.079956974,0.069890809,0.090023139,,,,,,,0.187,,,0.144,0.231,0.341,,,0.267,0.42,8.2,0.050531864,0.1,,,0.272,,,0.219,0.332,0.506759465,27814,54886,,,0.13822073,,,0.1089653,0.172052688,0.2,11,55,0.132529398,0.274926973,245.2,139,56690,,,25.39648521,237,9332,22.1631144,28.62985603,,,,,,,,,,45.95185996,35.31067089,58.79239044,22.64201501,19.22829582,26.05573419,,,,,,,0.117958174,4862,41218,0.102468812,0.133447535,0.000546834,31,56690,,,1828.709677,0.000515632,30,58181,,,1939.366667,0.000550008,32,58181,,,1818.15625,2255,,,,,,,3005,,2222,0.53,,,,,,0.33,0.43,,0.54,0.55,,,,,,0.63,0.53,0.14,0.56,0.878065975,36121,41137,0.85911446,0.89701749,0.528389555,5686,10761,0.463713773,0.593065336,0.032494974,792,24373,,,0.165,1755,,0.119723404,0.210276596,,,,,,,,,,0.277855478,0.147309477,0.408401479,0.206282051,0.136428611,0.276135491,4.149058932,134471,32410,3.753678546,4.544439319,0.14646608,1548,10569,0.096068519,0.196863641,11.28946904,64,56690,,,120.3511596,326,270874,107.2865165,133.4158027,,,,,,,,,,,,,133.0531026,118.3362055,147.7699997,,,,7.2,,,,,0,,,,,0.120915812,2535,20965,0.099342298,0.142489326,0.086914766,0.068643187,0.105186345,0.030765562,0.018862194,0.04266893,0.009301216,0.002067929,0.016534504,0.825282335,20023,24262,0.783374717,0.867189952,,,,,,,,,,0.685596283,0.590306241,0.780886325,0.796221173,0.746968583,0.845473763,0.368,,24262,0.327682563,0.408317437,76.17011706,,,75.31591997,77.02431416,,,,,,,,,,100.5788786,81.11357643,120.0441807,75.51746936,74.58309815,76.45184057,,,,463.309653,1053,147079,430.8107392,495.8085667,,,,,,,865.9772872,528.9614245,1337.431685,,,,488.1705591,451.8068459,524.5342724,,,,56.72892302,26,45832,37.05721595,83.12101607,,,,,,,,,,,,,49.33255949,28.73803386,78.98620666,,,,7.435968053,27,3631,4.900349802,10.81894311,,,,,,,,,,,,,,,,,,,,,,0.121,,,0.102,0.142,0.181,,,0.155,0.21,0.099,,,0.083,0.116,79.3,39,49189,,,0.1,5420,,,,0.050531864,2453.625186,48556,,,45.8748823,76,165668,36.14418951,57.41925596,,,,,,,,,,,,,51.47109967,40.41588387,64.61725221,,,,0.331,,,0.312,0.347,0.139745738,4254,30441,0.120681908,0.158809567,0.058189846,659,11325,0.040317505,0.076062186,0.000996889,58,58181,,,1003.12069,0.912736419,453.63,497,,,,,,,,3.086111633,,,,,,,,2.431301288,3.23907364,3.151702436,,,,,,,,2.662335788,3.272890055,0.104373854,,,,,-1381.662,,,,,0.870212481,45419,52193,0.784648264,0.955776698,79683,,,70408.44681,88957.55319,78462,65042.25532,91881.74468,35927,23703.51064,48150.48936,,,,51992,27896.51064,76087.48936,77849,73447.6383,82250.3617,,,,,,,,,,,36.49465801,,,,,0.231153446,,79683,,,9.893455099,26,2628,,,3.480980458,13,373458,1.853475489,5.952582598,,,,,,,,,,,,,3.368364322,1.681475334,6.026934211,,,,13.79417768,39,270874,9.372474487,19.57973414,14.39783811,,,,,,,,,,,,,15.26093404,10.14077984,22.05629874,,,,14.02866277,38,270874,9.927516722,19.25543571,,,,,,,,,,,,,15.25449584,10.68406135,21.11865222,,,,14.99499274,56,373458,11.32705637,19.47224534,,,,,,,,,,,,,16.53560667,12.42205665,21.57537983,,,,,,,,,,,0.719024868,29347,40815,,,0.724,,,,,34.67439955,,,,,0.816027038,18350,22487,0.795320772,0.836733304,0.084375575,1835,21748,0.065131496,0.103619653,0.86169787,19377,22487,0.835078483,0.888317257,58181,,,,,0.186263557,10837,58181,,,0.278630481,16211,58181,,,0.013423626,781,58181,,,0.006325089,368,58181,,,0.009865764,574,58181,,,0.002165656,126,58181,,,0.099465461,5787,58181,,,0.861466802,50121,58181,,,0.018361102,972,52938,0.008358166,0.028364038,0.50521648,29394,58181,,,0.356557228,19570,54886,, -47,107,47107,TN,McMinn County,2024,1,13086.20888,1330,148220,11998.50002,14173.91774,0,,,,2,,,,2,17723.41845,12273.9825,24766.70083,,,,,2,13155.92985,12000.90507,14310.95463,,,,,2,,0.198,,,0.167,0.232,4.521640084,,,3.64763686,5.524744246,6.150602934,,,5.089984421,7.297330536,0.083212735,345,4146,0.074805163,0.091620307,0,,,,,,,0.140127389,0.085829266,0.194425512,0.090476191,0.051677183,0.129275198,0.078882498,0.070138743,0.087626253,,,,0.128205128,0.054011156,0.202399101,0.235,,,0.189,0.282,0.35,,,0.283,0.421,7.4,0.059679833,0.135,,,0.309,,,0.258,0.363,0.481286133,25641,53276,,,0.140291432,,,0.111097267,0.174140613,0.2,14,70,0.140262963,0.265597146,358.9,194,54059,,,32.10244715,366,11401,28.81352444,35.39136987,,,,,,,41.2371134,23.57057333,66.96648865,31.51862464,19.75255426,47.71957649,31.80713128,28.28896997,35.32529259,,,,31.70028818,15.82466965,56.72057208,0.129457892,5514,42593,0.112777041,0.146138743,0.000499454,27,54059,,,2002.185185,0.000365504,20,54719,,,2735.95,0.000749283,41,54719,,,1334.609756,2146,,,,,,,5064,,2078,0.44,,,,,,,0.5,,0.44,0.42,,,,,,,0.38,,0.42,0.863875179,32556,37686,0.844073953,0.883676405,0.534836233,6548,12243,0.477593495,0.592078971,0.04048583,870,21489,,,0.21,2370,,0.13493617,0.28506383,,,,,,,0.165024631,0.046184232,0.283865029,0.144186047,0.025203638,0.263168455,0.171431788,0.124050538,0.218813037,4.310795192,111891,25956,3.896715562,4.724874822,0.194118692,2185,11256,0.147533247,0.240704138,14.79864592,80,54059,,,123.777603,332,268223,110.4629731,137.0922328,,,,,,,141.0579345,77.1176854,236.6712456,,,,130.5685821,116.0570066,145.0801576,,,,7.4,,,,,0,,,,,0.124852211,2640,21145,0.103946483,0.145757939,0.102348993,0.082423989,0.122273998,0.021281627,0.011010339,0.031552915,0.007803263,0.002306147,0.013300379,0.859035982,19123,22261,0.828972431,0.889099533,,,,,,,,,,,,,0.847436722,0.814645717,0.880227728,0.296,,22261,0.25839723,0.33360277,72.16934777,,,71.41315079,72.92554476,,,,,,,70.1389579,65.23106903,75.04684677,83.31962705,75.16422625,91.47502785,71.97684311,71.18799611,72.76569011,,,,644.4629074,1330,148220,607.6708973,681.2549175,,,,,,,911.9476986,699.1850713,1169.075793,,,,653.1300304,614.2112431,692.0488178,,,,61.3618369,31,50520,41.69239109,87.09822942,,,,,,,,,,,,,64.49147279,42.50028694,93.83170698,,,,6.822612086,28,4104,4.533576183,9.86057406,,,,,,,,,,,,,6.629834254,4.247859905,9.864667844,,,,,,,0.139,,,0.119,0.161,0.201,,,0.175,0.229,0.113,,,0.097,0.132,121.6,56,46054,,,0.135,7160,,,,0.059679833,3119.226141,52266,,,46.89592191,76,162061,36.94865259,58.69723929,,,,,,,,,,,,,50.84167346,39.85175607,63.92577128,,,,0.364,,,0.347,0.38,0.159909117,4997,31249,0.137270819,0.182547415,0.047547296,568,11946,0.033249424,0.061845169,0.001169612,64,54719,,,854.984375,0.92,459.08,499,,,0.073926074,222,3003,0.026798686,0.121053462,3.026986356,,,,,,,2.875404687,,3.041620531,2.982086669,,,,,,,2.838899035,,3.005617321,0.036586899,,,,,-3787.453333,,,,,0.784596478,40861,52079,0.721531593,0.847661364,60950,,,57592.38298,64307.61702,,,,98108,61119.40426,135096.5957,49805,30089.42553,69520.57447,46607,25330.57447,67883.42553,59626,55068.55319,64183.44681,,,,,,,,,,,51.74681258,,,,,0.225168171,,60950,,,9.262435678,27,2915,,,8.027572034,30,373712,5.416169141,11.45985823,,,,,,,,,,,,,6.013861952,3.673423116,9.287922031,,,,23.2723771,63,268223,17.67169164,30.08494408,23.48791864,,,,,,,,,,,,,26.04758823,19.72818896,33.7476718,,,,20.50532579,55,268223,15.44741762,26.69050006,,,,,,,,,,,,,21.83140279,16.30473582,28.62898024,,,,22.74478743,85,373712,18.16772836,28.12428189,,,,,,,,,,,,,23.45406161,18.53946242,29.27173035,,,,,,,,,,,0.553190459,22844,41295,,,0.572,,,,,28.42768436,,,,,0.74060292,15723,21230,0.72002526,0.761180581,0.084688645,1734,20475,0.066147713,0.103229577,0.844465379,17928,21230,0.823543677,0.865387082,54719,,,,,0.210621539,11525,54719,,,0.203567317,11139,54719,,,0.036641752,2005,54719,,,0.005573932,305,54719,,,0.007419726,406,54719,,,0.000511705,28,54719,,,0.048301321,2643,54719,,,0.882435717,48286,54719,,,0.007575907,383,50555,0.003704282,0.011447533,0.508836053,27843,54719,,,0.616619116,32851,53276,, -47,109,47109,TN,McNairy County,2024,1,13104.47688,674,70408,11545.39803,14663.55573,0,,,,2,,,,2,22589.50194,14886.62412,32866.53933,,,,,2,12480.58123,10892.13429,14069.02816,,,,,2,,0.219,,,0.183,0.252,4.807965555,,,3.815236676,5.851089045,6.217002968,,,4.992451376,7.47652552,0.083934089,163,1942,0.071601223,0.096266955,0,,,,,,,0.161904762,0.091445528,0.232363996,,,,0.078857143,0.066229536,0.09148475,,,,,,,0.251,,,0.204,0.296,0.369,,,0.293,0.442,6.8,0.119277375,0.132,,,0.322,,,0.265,0.377,0.450707493,11658,25866,,,0.137083181,,,0.106810571,0.170079013,0.181818182,6,33,0.096932784,0.281792641,363.5,94,25860,,,27.74674116,149,5370,23.29146201,32.2020203,,,,,,,28.65329513,13.74036876,52.69442992,,,,27.50322303,22.73853273,32.26791333,,,,,,,0.12902749,2619,20298,0.11115515,0.146899831,0.000425367,11,25860,,,2350.909091,0.000500231,13,25988,,,1999.076923,0.001346775,35,25988,,,742.5142857,3091,,,,,,,927,,3134,0.38,,,,,,,0.48,,0.38,0.4,,,,,,,0.39,,0.4,0.863245993,15781,18281,0.841729306,0.88476268,0.480683137,2899,6031,0.408086967,0.553279307,0.045812455,384,8382,,,0.22,1201,,0.14493617,0.29506383,,,,,,,0.086757991,0,0.360344068,0.163551402,0,0.421859333,0.181468008,0.129748752,0.233187264,4.500147871,91299,20288,3.898144146,5.102151595,0.177753934,994,5592,0.119212026,0.236295843,10.05413766,26,25860,,,132.4698263,171,129086,112.6145935,152.3250591,,,,,,,154.7588342,79.96614791,270.3325387,,,,135.0918365,113.8924702,156.2912027,,,,8,,,,,0,,,,,0.083037975,820,9875,0.065262248,0.100813701,0.067047817,0.047976069,0.086119565,0.015189873,0.005932736,0.024447011,0.005063291,0.000884308,0.009242274,0.84469619,8202,9710,0.798335186,0.891057193,,,,,,,,,,,,,0.777477478,0.741047592,0.813907363,0.352,,9710,0.306348695,0.397651305,71.43556607,,,70.38539013,72.48574201,,,,,,,,,,,,,71.73380926,70.65893815,72.80868038,,,,666.7904934,674,70408,613.0477328,720.533254,,,,,,,965.896296,709.7042676,1284.437311,,,,655.4396214,599.7372841,711.1419588,,,,57.07995271,14,24527,31.2061413,95.77046162,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.149,,,0.127,0.17,0.206,,,0.178,0.233,0.122,,,0.103,0.14,104.3,23,22044,,,0.132,3430,,,,0.119277375,3110.157539,26075,,,31.06796117,24,77250,19.90582894,46.22666355,,,,,,,,,,,,,26.10776706,15.47311738,41.26152769,,,,0.373,,,0.357,0.388,0.160081191,2366,14780,0.136251404,0.183910978,0.047414534,276,5821,0.031925172,0.062903895,0.000731107,19,25988,,,1367.789474,0.96,306.24,319,,,0.108469539,146,1346,0.047928854,0.169010225,3.069574373,,,,,,,2.488154155,,3.149590546,2.84814771,,,,,,,2.246723747,,2.927236135,0.064407688,,,,,-818.3057,,,,,0.827548962,40607,49069,0.726406068,0.928691855,49706,,,43281.48936,56130.51064,,,,,,,29859,12356.02128,47361.97872,68269,1841.085106,134696.9149,48421,44176.91489,52665.08511,,,,,,,,,,,46.05910037,,,,,0.276103489,,49706,,,5.80551524,8,1378,,,,,,,,,,,,,,,,,,,,,,,,,,32.24408795,44,129086,22.92869859,44.07872969,34.08580326,,,,,,,,,,,,,35.18816707,24.90124131,48.29850854,,,,34.86048061,45,129086,25.42747377,46.6460658,,,,,,,,,,,,,34.63893243,24.74656117,47.16839454,,,,30.37214157,55,181087,22.88045358,39.53351703,,,,,,,,,,,,,31.43142403,23.4027597,41.32651788,,,,,,,,,,,0.56052697,11275,20115,,,0.425,,,,,10.16384552,,,,,0.791490241,7664,9683,0.757842266,0.825138216,0.068429069,629,9192,0.046032719,0.090825419,0.81142208,7857,9683,0.781373479,0.841470681,25988,,,,,0.214714484,5580,25988,,,0.207903648,5403,25988,,,0.05975835,1553,25988,,,0.005733415,149,25988,,,0.004463599,116,25988,,,0.000115438,3,25988,,,0.026396799,686,25988,,,0.888102201,23080,25988,,,0.002205342,54,24486,0,0.007362378,0.506118208,13153,25988,,,1,25866,25866,, -47,111,47111,TN,Macon County,2024,1,11015.30399,526,70378,9610.125616,12420.48235,0,,,,2,,,,2,,,,2,,,,2,11120.93302,9652.121551,12589.74448,,,,,2,,0.229,,,0.194,0.265,4.994342122,,,4.01105882,6.0471115,6.643016431,,,5.415926203,7.89622649,0.08643617,195,2256,0.07484029,0.098032051,0,,,,,,,,,,0.0703125,0.038992565,0.101632435,0.088130413,0.075589614,0.100671211,,,,,,,0.267,,,0.219,0.315,0.365,,,0.288,0.449,7.1,0.071400768,0.141,,,0.331,,,0.274,0.39,0.494210025,12462,25216,,,0.149506277,,,0.11829027,0.187529694,0.095238095,2,21,0.018632442,0.225063028,299.6,77,25699,,,38.6567747,198,5122,33.27222869,44.04132071,,,,,,,,,,82.22811671,55.87001586,116.716248,36.44444444,30.86661178,42.02227711,,,,,,,0.128334196,2728,21257,0.109270366,0.147398026,0.00019456,5,25699,,,5139.8,0.000152503,4,26229,,,6557.25,7.62515E-05,2,26229,,,13114.5,6254,,,,,,,,,6279,0.32,,,,,,,,,0.32,0.44,,,,,,,,,0.45,0.780126725,13174,16887,0.740974705,0.819278745,0.347405174,2189,6301,0.279035288,0.41577506,0.030646407,357,11649,,,0.195,1233,,0.116361702,0.273638298,,,,,,,,,,0.275917065,0,0.701811284,0.177798862,0.115671066,0.239926657,4.26665264,101397,23765,3.468025971,5.06527931,0.255261044,1589,6225,0.160468091,0.350053998,3.891201992,10,25699,,,126.3444344,156,123472,106.5177594,146.1711094,,,,,,,,,,,,,131.3011232,110.1470669,152.4551794,,,,7.5,,,,,0,,,,,0.15308912,1400,9145,0.112178207,0.194000032,0.128563443,0.08224157,0.174885317,0.018589393,0.006891005,0.030287781,0.00874795,0.001589442,0.015906457,0.798885115,9172,11481,0.763574353,0.834195876,,,,,,,,,,,,,0.785678265,0.717608179,0.853748352,0.499,,11481,0.423615343,0.574384657,73.1729267,,,72.12833283,74.21752058,,,,,,,,,,,,,72.91162006,71.84707621,73.97616391,,,,584.0360147,526,70378,532.2886703,635.7833591,,,,,,,,,,,,,597.9923353,544.0041753,651.9804953,,,,56.59096054,15,26506,31.67353102,93.33818332,,,,,,,,,,,,,48.45174647,24.18693727,86.69355818,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.154,,,0.133,0.178,0.213,,,0.186,0.244,0.121,,,0.104,0.141,71.1,15,21111,,,0.141,3510,,,,0.071400768,1588.524285,22248,,,30.61441806,23,75128,19.40691492,45.93665863,,,,,,,,,,,,,30.62474479,18.95719971,46.81317555,,,,0.373,,,0.356,0.389,0.162913113,2445,15008,0.137891836,0.18793439,0.046721814,305,6528,0.031232452,0.062211175,0.000800641,21,26229,,,1249,0.89,207.37,233,,,,,,,,2.991421971,,,,,,,,2.311788009,3.064072098,3.006684683,,,,,,,,2.59906946,3.053388687,0.017124905,,,,,-2234.769,,,,,0.824217277,37145,45067,0.688388756,0.960045797,56817,,,51393.34043,62240.65957,,,,,,,,,,22313,6432.829787,38193.17021,53491,45919.08511,61062.91489,,,,,,,,,,,,,,,,0.241547424,,56817,,,4.608294931,8,1736,,,,,,,,,,,,,,,,,,,,,,,,,,23.75682192,30,123472,15.91031649,34.11875911,24.29700661,,,,,,,,,,,,,24.15002678,16.04751741,34.90351271,,,,20.24750551,25,123472,13.10311799,29.88931231,,,,,,,,,,,,,22.17924378,14.35323715,32.74093907,,,,24.10361025,41,170099,17.29716687,32.69926899,,,,,,,,,,,,,25.70082949,18.36104939,34.99723521,,,,,,,,,,,0.53629169,9487,17690,,,0.559,,,,,10.36414063,,,,,0.717699695,6577,9164,0.678520161,0.756879228,0.123970723,1084,8744,0.078193108,0.169748338,0.816892187,7486,9164,0.779627467,0.854156907,26229,,,,,0.246444775,6464,26229,,,0.162148767,4253,26229,,,0.011590225,304,26229,,,0.0090358,237,26229,,,0.008845171,232,26229,,,0.000571886,15,26229,,,0.056197339,1474,26229,,,0.905829425,23759,26229,,,0.013537375,322,23786,0.005964153,0.021110597,0.506881696,13295,26229,,,0.755155457,19042,25216,, -47,113,47113,TN,Madison County,2024,1,11540.74579,1927,274185,10762.72112,12318.77046,0,,,,2,,,,2,15048.66155,13643.33717,16453.98593,,10688.99678,7262.654719,15172.17771,,9219.361148,8278.033578,10160.68872,,,,,2,,0.214,,,0.184,0.247,4.455879742,,,3.669743325,5.388709347,6.280559293,,,5.37107738,7.319820004,0.104235684,881,8452,0.097721179,0.110750189,0,,,,0.12195122,0.064120857,0.179781582,0.14957939,0.13824525,0.16091353,0.057040998,0.037849247,0.076232749,0.062835661,0.055041628,0.070629693,,,,0.132701422,0.086925516,0.178477328,0.208,,,0.17,0.251,0.411,,,0.35,0.471,7,0.135731291,0.116,,,0.32,,,0.273,0.373,0.83134493,82156,98823,,,0.138581892,,,0.111476976,0.169185389,0.302325581,26,86,0.246901221,0.358688212,870.7,860,98775,,,22.77521681,583,25598,20.92644073,24.6239929,,,,,,,28.97042241,25.86344808,32.07739675,38.53955375,29.18948165,49.93246207,13.32541165,11.24098374,15.40983955,,,,56.43738977,38.60313282,79.67275499,0.110461219,8404,76081,0.096163347,0.124759091,0.001386991,137,98775,,,720.9854015,0.000705325,70,99245,,,1417.785714,0.00300267,298,99245,,,333.0369128,2767,,,,,,,4673,,2322,0.45,,,,,,0.42,0.46,,0.45,0.49,,,,,,0.59,0.37,0.25,0.52,0.896487401,59594,66475,0.88390238,0.909072422,0.58934921,14254,24186,0.543042775,0.635655646,0.034319214,1686,49127,,,0.204,4400,,0.12893617,0.27906383,,,,0.183783784,0,0.646898356,0.42131925,0.366978314,0.475660185,0.474208675,0.349539973,0.598877378,0.111495246,0.076399298,0.146591195,5.022925079,111961,22290,4.551085331,5.494764826,0.389796385,8519,21855,0.344947578,0.434645193,15.28726905,151,98775,,,91.76800233,450,490367,83.28907151,100.2469332,,,,,,,98.65749497,84.28451343,113.0304765,69.75585451,38.13617477,117.038471,91.04291866,79.71170567,102.3741317,,,,7.5,,,,,0,,,,,0.173134718,6625,38265,0.154044272,0.192225165,0.15942029,0.138874357,0.179966223,0.015680125,0.009405859,0.021954392,0.005749379,0.002776736,0.008722023,0.758101117,33408,44068,0.739569718,0.776632515,,,,,,,0.765822039,0.729456984,0.802187094,0.679856115,0.561277027,0.798435204,0.845804429,0.827528231,0.864080626,0.154,,44068,0.133021665,0.174978335,73.96207065,,,73.37632472,74.54781659,,,,,,,70.86182702,69.87708296,71.84657108,88.701421,71.94434521,105.4584968,75.77783684,75.04259046,76.51308321,,,,545.277634,1927,274185,519.5868654,570.9684026,,,,,,,699.2627649,650.0362262,748.4893037,344.6042087,232.5030125,491.9439354,467.8150693,437.0859484,498.5441903,,,,83.01871874,84,101182,66.21898138,102.7828228,,,,,,,100.2369236,72.83230217,134.5633914,,,,62.78026906,41.71703286,90.73496848,,,,9.039680676,77,8518,7.133974625,11.29804984,,,,,,,11.17173292,8.085038507,15.04825093,,,,7.107133456,4.683645731,10.34050604,,,,,,,0.131,,,0.113,0.152,0.186,,,0.161,0.212,0.131,,,0.114,0.151,317.9,264,83054,,,0.116,11420,,,,0.135731291,13341.57153,98294,,,24.39693818,72,295119,19.08910158,30.72390597,,,,,,,25.3781802,16.86361644,36.67853635,,,,26.30516438,19.03717789,35.43288379,,,,0.348,,,0.334,0.361,0.138745414,7602,54791,0.119681585,0.157809244,0.040087496,898,22401,0.028172603,0.05200239,0.002700388,268,99245,,,370.3171642,0.86,747.34,869,,,0.069606638,453,6508,0.032188668,0.107024608,,,,,,,,,,,,,,,,,,,,,0.132159427,,,,,-11261.36,,,,,0.779769259,41026,52613,0.719857388,0.83968113,57070,,,51567.70213,62572.29787,51296,50419.06383,52172.93617,72388,11626.80851,133149.1915,35652,31574.7234,39729.2766,50228,36105.2766,64350.7234,69859,64484.19149,75233.80851,,,,,,,,,,,46.23594111,,,,,0.322743999,,57070,,,8.294625083,50,6028,,,12.9805729,89,685640,10.42446592,15.97371192,,,,,,,27.72960897,21.65705467,34.97712858,,,,3.13625458,1.620548507,5.478405593,,,,13.8936051,69,490367,10.7227911,17.70854022,14.07109369,,,,,,,7.312934041,3.778699732,12.77422407,,,,18.73626093,13.81463975,24.84156374,,,,21.20860498,104,490367,17.13244234,25.28476763,,,,,,,33.24921101,25.43301187,42.71000252,,,,13.95012463,9.87193846,19.14763598,,,,14.87661163,102,685640,11.9895237,17.76369956,,,,,,,15.62231492,11.16081081,21.2731589,,,,15.41991835,11.7383563,19.89057121,,,,,,,,,,,0.576664877,42950,74480,,,0.662,,,,,54.39590152,,,,,0.621337417,24344,39180,0.601313028,0.641361807,0.155802946,5892,37817,0.136253986,0.175351906,0.863552833,33834,39180,0.85206637,0.875039296,99245,,,,,0.220766789,21910,99245,,,0.182779989,18140,99245,,,0.375867802,37303,99245,,,0.00431256,428,99245,,,0.012443952,1235,99245,,,0.000423195,42,99245,,,0.046420475,4607,99245,,,0.545921709,54180,99245,,,0.015085998,1399,92735,0.009875158,0.020296838,0.519038743,51512,99245,,,0.263238315,26014,98823,, -47,115,47115,TN,Marion County,2024,1,11996.61632,699,79749,10537.03536,13456.19728,0,,,,2,,,,2,18464.54276,10334.46441,30454.45528,1,,,,2,12153.11133,10605.447,13700.77566,,,,,2,,0.207,,,0.171,0.243,4.709052254,,,3.747396767,5.710423311,6.053652683,,,4.911160142,7.237860342,0.09095085,198,2177,0.078872046,0.103029653,0,,,,,,,0.139240506,0.062898032,0.215582981,,,,0.091284167,0.078464435,0.104103899,,,,,,,0.242,,,0.194,0.289,0.341,,,0.269,0.417,7.3,0.051269668,0.14,,,0.311,,,0.253,0.366,0.710059992,20476,28837,,,0.142179697,,,0.112089078,0.175589027,0.192307692,10,52,0.123477648,0.269688581,339.4,98,28877,,,32.76378369,186,5677,28.05516362,37.47240376,,,,,,,,,,,,,33.08750249,28.05404953,38.12095545,,,,,,,0.116129317,2633,22673,0.099448466,0.132810168,0.000346296,10,28877,,,2887.7,0.000206228,6,29094,,,4849,0.000309342,9,29094,,,3232.666667,1988,,,,,,,,,1970,0.42,,,,,,,0.5,,0.42,0.42,,,,,,,0.36,,0.42,0.808485961,16730,20693,0.780667362,0.836304561,0.522110628,3483,6671,0.453334329,0.590886927,0.038872138,477,12271,,,0.212,1229,,0.134553192,0.289446809,,,,,,,0.545454546,0.066928877,1,,,,0.208144796,0.144760459,0.271529134,4.592500437,105205,22908,3.892405587,5.292595286,0.244433283,1460,5973,0.166174019,0.322692548,6.925927209,20,28877,,,114.816155,165,143708,97.29684092,132.335469,,,,,,,,,,,,,120.2508524,101.5002299,139.001475,,,,8.4,,,,,0,,,,,0.09965035,1140,11440,0.080014906,0.119285793,0.079463182,0.060163946,0.098762418,0.018793706,0.008812472,0.02877494,0.003059441,0.000172974,0.005945907,0.801961779,9484,11826,0.77665067,0.827272889,,,,,,,,,,,,,0.758612235,0.733979541,0.783244929,0.542,,11826,0.476598195,0.607401805,73.22887828,,,72.15848434,74.29927223,,,,,,,,,,,,,72.89642641,71.77650456,74.01634827,,,,594.0048357,699,79749,546.5933479,641.4163234,,,,,,,868.3930258,572.2764759,1263.46626,,,,601.6672281,552.2751907,651.0592654,,,,60.55788956,16,26421,34.61406629,98.34221868,,,,,,,,,,,,,64.84243289,36.29181746,106.9477321,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.143,,,0.12,0.164,0.199,,,0.172,0.227,0.115,,,0.097,0.132,105.2,26,24711,,,0.14,4030,,,,0.051269668,1447.701615,28237,,,31.13899525,27,86708,20.52079408,45.30560323,,,,,,,,,,,,,31.59358019,20.44569929,46.63835675,,,,0.36,,,0.342,0.377,0.140792931,2358,16748,0.119346122,0.162239739,0.047916667,299,6240,0.032427305,0.063406028,0.000928026,27,29094,,,1077.555556,0.88126506,292.58,332,,,0.152251608,213,1399,0.060714464,0.243788752,2.765342774,,,,,,,,,2.771216674,2.339407044,,,,,,,,,2.376339858,0.069584366,,,,,-6095.4455,,,,,0.751404651,40388,53750,0.646558997,0.856250306,58686,,,51783.70213,65588.29787,,,,54663,46307.08511,63018.91489,,,,160909,62875.6383,258942.3617,57916,54843.14894,60988.85106,,,,,,,,,,,44.13791637,,,,,0.233854752,,58686,,,8.074534162,13,1610,,,6.977636675,14,200641,3.8147389,11.7072887,,,,,,,,,,,,,6.530932127,3.374627932,11.4082241,,,,13.56098095,19,143708,7.899771139,21.71244417,13.22125421,,,,,,,,,,,,,14.74205738,8.587791683,23.60346194,,,,12.52539873,18,143708,7.423345103,19.79553001,,,,,,,,,,,,,12.17730151,6.960379973,19.77517474,,,,28.40894932,57,200641,21.51666078,36.80708898,,,,,,,,,,,,,29.38919457,22.07806748,38.34652385,,,,,,,,,,,0.589155556,13256,22500,,,0.528,,,,,21.32752041,,,,,0.777416873,9095,11699,0.748342275,0.806491471,0.095229507,1056,11089,0.071113543,0.11934547,0.809043508,9465,11699,0.784115209,0.833971807,29094,,,,,0.203134667,5910,29094,,,0.214408469,6238,29094,,,0.038667767,1125,29094,,,0.005808758,169,29094,,,0.007011755,204,29094,,,0.000412456,12,29094,,,0.024506771,713,29094,,,0.906509933,26374,29094,,,0.001649137,45,27287,0,0.005544146,0.50409019,14666,29094,,,0.913444533,26341,28837,, -47,117,47117,TN,Marshall County,2024,1,10518.99668,713,97882,9335.298633,11702.69474,0,,,,2,,,,2,14909.56302,9343.743764,22573.25758,1,,,,2,10230.93227,8986.120793,11475.74375,,,,,2,,0.196,,,0.165,0.229,4.477777883,,,3.553841627,5.440811942,5.971278598,,,4.816210345,7.124473038,0.083822008,243,2899,0.073734104,0.093909911,0,,,,,,,0.26056338,0.188366395,0.332760366,0.051162791,0.021711129,0.080614453,0.075695581,0.065208654,0.086182508,,,,,,,0.231,,,0.188,0.28,0.324,,,0.253,0.399,7.3,0.089664069,0.122,,,0.31,,,0.256,0.369,0.482108515,16545,34318,,,0.150387502,,,0.118352691,0.186551204,0.16,4,25,0.067364287,0.277512739,394.5,138,34984,,,22.28224173,165,7405,18.8822882,25.68219525,,,,,,,32.60869565,18.25083942,53.7830845,29.6803653,19.38820002,43.48861197,20.13539316,16.47112549,23.79966083,,,,,,,0.119824212,3490,29126,0.103143361,0.136505063,0.000171507,6,34984,,,5830.666667,0.00025085,9,35878,,,3986.444444,0.000557445,20,35878,,,1793.9,3461,,,,,,,1538,,3431,0.43,,,,,,,0.39,,0.44,0.44,,,,,,,0.43,,0.45,0.891698899,20979,23527,0.867684068,0.915713731,0.536524501,4730,8816,0.464523563,0.608525439,0.03293394,514,15607,,,0.149,1207,,0.093,0.205,,,,,,,0.58839779,0.278608482,0.898187098,0.380165289,0.164543086,0.595787493,0.167414051,0.110174641,0.22465346,3.729176269,113270,30374,3.168360821,4.289991717,0.299136745,2391,7993,0.218562253,0.379711237,6.860278985,24,34984,,,97.08226845,166,170989,82.31357953,111.8509574,,,,,,,157.4365623,91.71259927,252.0711874,,,,96.09906441,80.18023191,112.0178969,,,,7.4,,,,,0,,,,,0.124648171,1550,12435,0.092812848,0.156483493,0.107423935,0.077122657,0.137725213,0.016485726,0.006587067,0.026384385,0.010052272,0.003439928,0.016664615,0.821947489,12898,15692,0.788417913,0.855477065,,,,,,,,,,,,,0.771651376,0.748614288,0.794688464,0.504,,15692,0.444354085,0.563645915,73.70371156,,,72.80553543,74.60188769,,,,,,,71.82041915,67.41847852,76.22235978,100.6604003,51.45000477,149.8707958,73.69197635,72.76142104,74.62253166,,,,551.4894894,713,97882,509.5073565,593.4716223,,,,,,,635.1466204,466.6818466,844.6103587,,,,553.7861211,508.9818578,598.5903845,,,,54.22374429,19,35040,32.6462362,84.67709353,,,,,,,,,,,,,46.84009512,24.94037793,80.09798918,,,,7.80141844,22,2820,4.889107402,11.81144127,,,,,,,,,,,,,,,,,,,,,,0.137,,,0.117,0.159,0.196,,,0.171,0.224,0.113,,,0.096,0.132,147,43,29256,,,0.122,4140,,,,0.089664069,2745.244812,30617,,,39.28143713,41,104375,28.18903748,53.28970497,,,,,,,,,,,,,40.57755385,28.42001986,56.17643852,,,,0.38,,,0.364,0.396,0.146993213,3097,21069,0.124354915,0.169631511,0.050591017,428,8460,0.033910166,0.067271868,0.001059145,38,35878,,,944.1578947,0.91,384.02,422,,,0.161725067,360,2226,0.080047527,0.243402608,2.949734276,,,,,,,2.573093909,2.691098482,3.058553708,2.799772499,,,,,,,2.350388428,2.825486827,2.85645498,0.092643164,,,,,-1181.114,,,,,0.73406536,42117,57375,0.658519159,0.80961156,64013,,,55928.74468,72097.25532,12107,10205.38298,14008.61702,,,,31843,12573.04255,51112.95745,52165,26731.46809,77598.53192,70154,60896.12766,79411.87234,,,,,,,,,,,41.20863782,,,,,0.214393951,,64013,,,5.673027334,11,1939,,,4.691711878,11,234456,2.342085665,8.394768534,,,,,,,,,,,,,,,,,,,18.25455969,32,170989,12.40308766,25.91089036,18.71465416,,,,,,,,,,,,,19.27065454,12.69948277,28.0377906,,,,16.96015533,29,170989,11.35848221,24.35761215,,,,,,,,,,,,,16.47412533,10.55528295,24.51219263,,,,16.20773194,38,234456,11.46955576,22.24637839,,,,,,,,,,,,,13.49912256,8.896006825,19.64051459,,,,,,,,,,,0.587830897,14878,25310,,,0.697,,,,,20.1934208,,,,,0.768569015,10006,13019,0.734792414,0.802345615,0.096710578,1226,12677,0.070072449,0.123348708,0.877333129,11422,13019,0.849152577,0.90551368,35878,,,,,0.230531245,8271,35878,,,0.16583979,5950,35878,,,0.059730197,2143,35878,,,0.005546575,199,35878,,,0.006577847,236,35878,,,0.0010034,36,35878,,,0.0662523,2377,35878,,,0.843190813,30252,35878,,,0.008644473,282,32622,0.001438029,0.015850917,0.506995931,18190,35878,,,0.652252462,22384,34318,, -47,119,47119,TN,Maury County,2024,1,9298.430413,1678,282113,8629.361225,9967.499601,0,,,,2,,,,2,12828.1122,10516.49786,15139.72654,,6502.489014,4554.263364,9002.185682,,8943.285673,8197.744665,9688.826682,,,,,2,,0.165,,,0.14,0.194,3.907108139,,,3.098521598,4.813258039,5.76741646,,,4.699928023,6.891515911,0.083570859,733,8771,0.077779127,0.08936259,0,,,,0.116504854,0.054544834,0.178464875,0.147727273,0.125374159,0.170080387,0.084014002,0.065440837,0.102587167,0.072628234,0.06637121,0.078885259,,,,0.120192308,0.075998989,0.164385627,0.188,,,0.151,0.229,0.31,,,0.245,0.381,8.1,0.078384684,0.09,,,0.286,,,0.238,0.34,0.660546279,66698,100974,,,0.155276016,,,0.124013928,0.192453607,0.182926829,15,82,0.12872996,0.243066798,465.8,488,104760,,,22.91567665,434,18939,20.7597008,25.0716525,,,,,,,27.83146502,21.7764073,35.0491241,39.04071389,30.43415176,49.32559333,20.08448825,17.69319854,22.47577797,,,,25.03293808,15.07146399,39.09203369,0.10051127,8709,86647,0.087404887,0.113617653,0.000486827,51,104760,,,2054.117647,0.000674932,73,108159,,,1481.630137,0.002218955,240,108159,,,450.6625,2606,,,,,,,4709,,2458,0.45,,,,,,0.24,0.44,0.29,0.45,0.47,,,,,,0.39,0.41,0.34,0.47,0.91786575,65129,70957,0.906585724,0.929145775,0.646588638,18120,28024,0.59564042,0.697536857,0.030399154,1610,52962,,,0.144,3439,,0.096340426,0.191659575,,,,0.006451613,0,0.556930843,0.242238562,0.076658245,0.407818879,0.228269381,0.104349584,0.352189179,0.06321661,0.043100098,0.083333122,3.875164101,129880,33516,3.531554583,4.218773619,0.257256444,6018,23393,0.206547762,0.307965126,10.11836579,106,104760,,,90.09933503,439,487240,81.67093001,98.52774005,,,,,,,68.86809112,48.97194506,94.14494767,35.7131262,17.82786392,63.90064775,97.47477775,87.59578825,107.3537673,,,,6,,,,,0,,,,,0.110621357,3890,35165,0.093545647,0.127697066,0.093788553,0.078129806,0.109447299,0.015498365,0.00815142,0.02284531,0.00582966,0.002714877,0.008944444,0.790705122,39506,49963,0.769972576,0.811437667,,,,,,,0.819579603,0.741766531,0.897392675,0.68148716,0.583717671,0.779256648,0.77593614,0.751117763,0.800754518,0.477,,49963,0.435605389,0.518394611,75.29171255,,,74.75526007,75.82816502,,,,,,,71.74356648,70.0329752,73.45415776,80.7927834,77.16850631,84.41706049,75.56793427,74.97877551,76.15709303,,,,457.4865803,1678,282113,434.684054,480.2891066,,,,,,,637.7173727,557.375723,718.0590224,294.9463806,210.7140185,401.6332569,441.9777815,417.0873754,466.8681876,,,,52.47489783,52,99095,39.19076361,68.81384706,,,,,,,89.47454043,44.66536821,160.0946682,,,,44.20551286,30.03550128,62.74619691,,,,5.587892899,48,8590,4.120071109,7.408735295,,,,,,,,,,,,,5.060573532,3.483465967,7.10692674,,,,,,,0.118,,,0.102,0.138,0.179,,,0.155,0.206,0.103,,,0.087,0.12,207.8,182,87597,,,0.09,8910,,,,0.078384684,6345.710466,80956,,,36.90932609,111,300737,30.04290082,43.77575136,,,,,,,31.55298032,15.75113409,56.45699763,,,,40.66952201,32.9424434,49.66444721,,,,0.339,,,0.323,0.354,0.122658178,7706,62825,0.104785837,0.140530518,0.043885384,1092,24883,0.030779001,0.056991767,0.001488549,161,108159,,,671.7950311,0.87,755.16,868,,,0.058081852,281,4838,0.023047448,0.093116256,2.823590774,,,,,,,2.363810803,,2.977638744,2.782940074,,,,,,,2.22808917,,2.967540192,0.082876819,,,,,-2512.888,,,,,0.788254962,44322,56228,0.719022318,0.857487606,70225,,,63440.65957,77009.34043,,,,92950,79954.42553,105945.5745,49799,41901.80851,57696.19149,51936,35872.34043,67999.65957,73959,70036.61702,77881.38298,,,,,,,,,,,37.68000706,,,,,0.262285511,,70225,,,6.123698714,40,6532,,,5.26333202,35,664978,3.666103601,7.320020718,,,,,,,,,,,,,3.42494425,2.029839024,5.412888497,,,,16.82805334,83,487240,13.3229283,20.97277543,17.03472621,,,,,,,,,,,,,19.4222527,15.19671656,24.4591129,,,,17.03472621,83,487240,13.56806434,21.11710611,,,,,,,,,,,,,16.68017587,12.84576794,21.30021221,,,,14.73732966,98,664978,11.96447658,17.96008444,,,,,,,,,,,,,16.17334785,12.91869582,19.99859507,,,,,,,,,,,0.659882611,46657,70705,,,0.663,,,,,39.22461721,,,,,0.720037382,28507,39591,0.700081133,0.739993632,0.094972935,3667,38611,0.077905569,0.112040301,0.888105883,35161,39591,0.869626997,0.906584768,108159,,,,,0.225824943,24425,108159,,,0.174280458,18850,108159,,,0.111003245,12006,108159,,,0.00541795,586,108159,,,0.012361431,1337,108159,,,0.001007776,109,108159,,,0.071838682,7770,108159,,,0.780730221,84443,108159,,,0.008206674,784,95532,0.004188615,0.012224734,0.512763617,55460,108159,,,0.37481926,37847,100974,, -47,121,47121,TN,Meigs County,2024,1,15235.87627,379,34970,12778.2751,17693.47744,0,,,,2,,,,2,,,,2,,,,2,16152.30228,13509.69359,18794.91098,,,,,2,,0.2,,,0.168,0.237,4.511828349,,,3.584004449,5.497009638,6.056231021,,,4.917163603,7.297895581,0.085057471,74,870,0.066520039,0.103594904,0,,,,,,,,,,,,,0.082733813,0.064037229,0.101430397,,,,,,,0.245,,,0.197,0.295,0.364,,,0.286,0.445,7.9,0.006948109,0.135,,,0.309,,,0.255,0.368,0.042091237,537,12758,,,0.149892408,,,0.118360972,0.186008766,0.25,4,16,0.11917111,0.394165016,337.2,44,13049,,,34.8,87,2500,27.87337341,42.92567143,,,,,,,,,,,,,37.37505432,29.89521914,46.15788804,,,,,,,0.124436164,1269,10198,0.106563824,0.142308504,0.000383171,5,13049,,,2609.8,7.53466E-05,1,13272,,,13272,0.000150693,2,13272,,,6636,1501,,,,,,,,,1522,0.44,,,,,,,,,0.44,0.38,,,,,,,,,0.39,0.821175713,7655,9322,0.783307505,0.859043922,0.400783755,1125,2807,0.309640163,0.491927347,0.043679938,226,5174,,,0.22,582,,0.134212766,0.305787234,,,,,,,0.247311828,0,0.760902297,,,,0.147309992,0.068860193,0.22575979,4.685102673,96738,20648,3.941566817,5.42863853,0.113723978,295,2594,0.04621981,0.181228147,8.429764733,11,13049,,,117.0303157,73,62377,91.73308579,147.1480517,,,,,,,,,,,,,125.010703,97.98843552,157.1821906,,,,8.1,,,,,0,,,,,0.126968504,645,5080,0.089893149,0.164043859,0.091,0.059816521,0.122183479,0.031496063,0.006739142,0.056252984,0.012795276,0,0.025937042,0.772831288,3715,4807,0.716667192,0.828995384,,,,,,,,,,,,,0.702627939,0.575722772,0.829533106,0.54,,4807,0.449391954,0.630608046,70.75324298,,,69.06327406,72.44321191,,,,,,,,,,,,,69.9628909,68.20861545,71.71716636,,,,731.4654791,379,34970,651.8863885,811.0445698,,,,,,,,,,,,,765.9922624,681.6720007,850.3125242,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.139,,,0.119,0.162,0.2,,,0.173,0.229,0.111,,,0.093,0.129,98.7,11,11139,,,0.135,1700,,,,0.006948109,81.66112786,11753,,,49.99605294,19,38003,30.10088984,78.07502979,,,,,,,,,,,,,53.59359134,32.26684296,83.69303163,,,,0.35,,,0.334,0.366,0.149289414,1124,7529,0.126651116,0.171927712,0.056011416,157,2803,0.036947587,0.075075246,0.000602773,8,13272,,,1659,0.975,111.15,114,,,,,,,,2.999773129,,,,,,,,,3.003596986,3.022484438,,,,,,,,,3.05852005,0.01870631,,,,,-4253.023,,,,,0.743374372,38764,52146,0.577674473,0.909074271,54257,,,46839.97872,61674.02128,,,,,,,,,,,,,56818,50276.7234,63359.2766,,,,,,,,,,,21.26764492,,,,,0.252944321,,54257,,,7.518796993,5,665,,,,,,,,,,,,,,,,,,,,,,,,,,24.4917217,15,62377,13.38985216,41.09294738,24.04732514,,,,,,,,,,,,,26.11455707,14.27707136,43.81578938,,,,17.6347051,11,62377,8.803181248,31.55335863,,,,,,,,,,,,,18.83722922,9.403476954,33.70500645,,,,34.79793996,30,86212,23.47802397,49.67622303,,,,,,,,,,,,,37.08648569,25.02209616,52.94326435,,,,,,,,,,,0.567384615,5532,9750,,,0.5,,,,,2.951578542,,,,,0.765679107,3980,5198,0.720733571,0.810624644,0.095793419,460,4802,0.062261859,0.12932498,0.791650635,4115,5198,0.738923976,0.844377293,13272,,,,,0.203209765,2697,13272,,,0.213833635,2838,13272,,,0.020268234,269,13272,,,0.009267631,123,13272,,,0.003616637,48,13272,,,0.00045208,6,13272,,,0.025316456,336,13272,,,0.927667269,12312,13272,,,0.002292451,28,12214,0,0.010969013,0.497136829,6598,13272,,,1,12758,12758,, -47,123,47123,TN,Monroe County,2024,1,13496.26879,1201,128424,12249.18798,14743.34959,0,,,,2,,,,2,,,,2,,,,2,14161.57336,12804.25107,15518.89564,,,,,2,,0.207,,,0.175,0.242,4.699506777,,,3.766704171,5.701180061,6.323554531,,,5.169457164,7.503107066,0.094555874,330,3490,0.084848127,0.104263621,0,,,,,,,0.25,0.115807973,0.384192027,0.049773756,0.021100722,0.07844679,0.09556962,0.085318767,0.105820474,,,,,,,0.239,,,0.192,0.285,0.35,,,0.278,0.424,7.2,0.058432314,0.143,,,0.326,,,0.27,0.382,0.579610811,26807,46250,,,0.145982975,,,0.115220116,0.179117324,0.179104478,12,67,0.119416177,0.246352903,323.4,151,46698,,,35.68674964,324,9079,31.80085913,39.57264016,,,,,,,,,,32.76539974,21.20403912,48.36819358,37.02754645,32.75848815,41.29660474,,,,,,,0.124609904,4512,36209,0.107929053,0.141290755,0.000192728,9,46698,,,5188.666667,0.000356096,17,47740,,,2808.235294,0.00058651,28,47740,,,1705,2736,,,,,,,,,2732,0.43,,,,,,,0.32,,0.43,0.41,,,,,,,0.42,,0.41,0.857411498,28725,33502,0.836516278,0.878306717,0.460095694,4808,10450,0.395058743,0.525132645,0.034482759,723,20967,,,0.208,1986,,0.138893617,0.277106383,,,,,,,0.097701149,0,0.41608632,0.071707953,0.01195759,0.131458316,0.204115454,0.14810382,0.260127087,4.736811817,98772,20852,4.258706128,5.214917505,0.234977207,2268,9652,0.17249013,0.297464283,11.13538053,52,46698,,,122.3086728,285,233017,108.1085894,136.5087562,,,,,,,,,,,,,128.6082413,113.324122,143.8923606,,,,7.8,,,,,0,,,,,0.102467811,1910,18640,0.075503031,0.129432591,0.075807334,0.052862407,0.098752262,0.02360515,0.014470788,0.032739512,0.007242489,0.001097772,0.013387207,0.819597121,14688,17921,0.780238468,0.858955773,,,,,,,,,,0.752860412,0.581172322,0.924548502,0.817160511,0.774125498,0.860195524,0.439,,17921,0.384529255,0.493470745,72.10800895,,,71.25583616,72.96018174,,,,,,,,,,86.3299766,73.74153684,98.91841636,71.52527083,70.62171335,72.42882831,,,,638.3983277,1201,128424,598.9513466,677.8453088,,,,,,,,,,,,,663.7036231,621.6806128,705.7266333,,,,81.87709079,35,42747,57.03039372,113.8712129,,,,,,,,,,,,,89.70072576,61.74585222,125.9731693,,,,6.603502728,23,3483,4.186054274,9.908496381,,,,,,,,,,,,,6.668783741,4.128082243,10.19394434,,,,,,,0.145,,,0.124,0.166,0.203,,,0.175,0.233,0.118,,,0.101,0.136,105.1,42,39954,,,0.143,6560,,,,0.058432314,2601.348206,44519,,,41.30465746,58,140420,31.36435813,53.39584799,,,,,,,,,,,,,43.94293696,33.19402233,57.06355876,,,,0.356,,,0.339,0.371,0.15506234,4129,26628,0.132424043,0.177700638,0.041765873,421,10080,0.02865949,0.054872256,0.001152074,55,47740,,,868,0.86,424.84,494,,,0.141828005,315,2221,0.0638458,0.219810211,2.860820317,,,,,,,2.877663204,2.738145484,2.87795982,2.715774329,,,,,,,2.514706067,2.646094746,2.728659961,0.048577353,,,,,-3021.028,,,,,0.818168421,38863,47500,0.707016112,0.92932073,56047,,,49689.21277,62404.78723,,,,,,,,,,75819,60180.70213,91457.29787,52249,47648.65957,56849.34043,,,,,,,,,,,67.62910976,,,,,0.244865916,,56047,,,7.475083057,18,2408,,,,,,,,,,,,,,,,,,,,,,,,,,18.75955272,42,233017,13.20845635,25.85757231,18.02443599,,,,,,,,,,,,,19.88990249,13.85404585,27.66203952,,,,15.44951656,36,233017,10.82065146,21.3886431,,,,,,,,,,,,,15.60320575,10.74052889,21.91270208,,,,26.17333522,85,324758,20.90633056,32.36373433,,,,,,,,,,,,,27.10826023,21.49516443,33.7385764,,,,,,,,,,,0.576094183,20797,36100,,,0.626,,,,,16.38891896,,,,,0.720541737,13673,18976,0.694332038,0.746751436,0.101504178,1822,17950,0.075198078,0.127810278,0.827729764,15707,18976,0.79549959,0.859959938,47740,,,,,0.204105572,9744,47740,,,0.219983243,10502,47740,,,0.019271052,920,47740,,,0.0065354,312,47740,,,0.005927943,283,47740,,,0.000795978,38,47740,,,0.048072895,2295,47740,,,0.904713029,43191,47740,,,0.006049209,267,44138,0.002418759,0.00967966,0.501612903,23947,47740,,,0.732972973,33900,46250,, -47,125,47125,TN,Montgomery County,2024,1,10092.28103,3020,628259,9636.71126,10547.8508,0,,,,2,3267.522443,1867.671401,5306.251737,1,14267.50131,13058.11063,15476.89198,,6620.264695,5416.998795,7823.530594,,9566.422039,9010.815551,10122.02853,,,,,2,,0.173,,,0.148,0.201,3.98587005,,,3.174945674,4.883854045,5.606836632,,,4.642180625,6.668102006,0.086331516,2138,24765,0.082833548,0.089829485,0,,,,0.084848485,0.060300151,0.109396819,0.144182295,0.134405295,0.153959295,0.070069753,0.061161025,0.078978481,0.069888829,0.065774472,0.074003185,0.076923077,0.035107216,0.118738938,0.096103896,0.079106013,0.113101779,0.184,,,0.149,0.221,0.384,,,0.318,0.452,7,0.159321237,0.105,,,0.267,,,0.222,0.312,0.691955705,152278,220069,,,0.168355025,,,0.135151834,0.205713594,0.335664336,48,143,0.293647935,0.377799374,1039.5,2369,227900,,,25.01281613,1171,46816,23.58016577,26.4454665,,,,,,,28.80044739,25.58918298,32.01171179,28.91854894,24.55852156,33.27857632,22.84467914,21.01213701,24.67722127,,,,26.14590058,20.76361911,32.49696713,0.095739683,19360,202215,0.083824789,0.107654577,0.000403686,92,227900,,,2477.173913,0.000416665,98,235201,,,2400.010204,0.002189617,515,235201,,,456.7009709,3302,,,,,,779,3303,724,3360,0.35,,,,,,0.2,0.29,0.3,0.38,0.42,,,,,,0.39,0.32,0.3,0.45,0.941440332,129915,137996,0.932933175,0.949947488,0.701535335,50399,71841,0.667055049,0.736015621,0.037215854,3276,88027,,,0.149,9126,,0.11206383,0.18593617,,,,0.036603221,0,0.103482856,0.265723004,0.211076578,0.32036943,0.17526777,0.128209625,0.222325915,0.11152815,0.088650681,0.134405619,3.732308727,122151,32728,3.529104871,3.935512582,0.271670457,16125,59355,0.239536611,0.303804304,6.099166301,139,227900,,,99.50098177,1052,1057276,93.48819826,105.5137653,,,,,,,105.483755,91.73107201,119.2364381,56.08930865,43.00335132,71.90396233,111.5690906,103.4921298,119.6460515,,,,7.8,,,,,1,,,,,0.129481938,9660,74605,0.117037106,0.141926771,0.109444255,0.097049883,0.121838627,0.019033577,0.014195533,0.02387162,0.005696669,0.002870033,0.008523306,0.82552628,86038,104222,0.815321375,0.835731186,,,,0.739524349,0.629117768,0.84993093,0.740888702,0.69934393,0.782433474,0.830589949,0.791269142,0.869910756,0.818857748,0.802772753,0.834942743,0.339,,104222,0.316081245,0.361918756,74.23488241,,,73.84403898,74.62572585,,,,85.73800441,80.60319616,90.87281266,70.66409085,69.74709996,71.58108174,82.29074382,78.25673154,86.3247561,74.45459648,73.99122478,74.91796818,,,,505.2738235,3020,628259,487.0560361,523.4916109,,,,218.1765708,152.808188,302.0483384,665.5088725,617.4945857,713.5231593,310.6311917,251.5301097,369.7322737,497.2540676,475.3547167,519.1534185,,,,70.2300433,176,250605,59.85421745,80.60586914,,,,,,,115.7385081,88.32067466,148.9784021,49.48477615,28.82670568,79.22992029,59.69591047,47.54745947,74.0020626,,,,6.374111302,156,24474,5.37385012,7.374372483,,,,,,,9.593326382,7.023520628,12.79615302,,,,5.255710532,4.154421077,6.559364602,,,,,,,0.118,,,0.101,0.137,0.177,,,0.153,0.201,0.114,,,0.097,0.132,219.2,400,182462,,,0.105,22780,,,,0.159321237,27455.98805,172331,,,43.00124089,280,651144,37.96440218,48.0380796,,,,,,,42.39525768,32.10975415,54.92797373,24.56824915,14.3119105,39.33614685,49.15230978,42.28847392,56.01614565,,,,0.379,,,0.364,0.393,0.12134247,17123,141113,0.104661619,0.138023321,0.038551751,2449,63525,0.026636858,0.050466645,0.00090986,214,235201,,,1099.070094,0.93,2199.45,2365,,,0.075622476,899,11888,0.050021072,0.101223881,3.248029004,,,,,,,2.925582179,3.198929795,3.42407969,3.280116299,,,,,,,2.828807844,3.271385879,3.504418031,0.04915355,,,,,-2482.615,,,,,0.830424654,43491,52372,0.779050277,0.881799031,67478,,,63685.48936,71270.51064,78024,59180.59575,96867.40426,72847,56990.65957,88703.34043,60347,56342.40426,64351.59575,58236,52528.76596,63943.23404,74703,71114.23404,78291.76596,,,,,,,,,,,37.98095201,,,,,0.27296304,,67478,,,5.269420364,93,17649,,,9.056411767,131,1446489,7.505537522,10.60728601,,,,,,,24.30943831,18.95039975,30.71351286,,,,5.403039154,3.997198111,7.143104299,,,,20.97631046,215,1057276,18.08380761,23.86881332,20.33527669,,,,,,,12.80941164,8.703373736,18.18193734,14.34915301,7.844815474,24.07544054,24.6226608,20.72002217,28.52529942,,,,22.4160957,237,1057276,19.56217521,25.2700162,,,,,,,40.60657827,32.52420457,50.08806427,13.56999403,7.595022646,22.38164149,19.48273343,16.10752206,22.85794479,,,,15.34750696,222,1446489,13.32859481,17.36641912,,,,,,,15.28021837,11.10263006,20.51297995,7.375867503,3.682006482,13.19746439,17.42204462,14.70543866,20.13865058,,,,,,,,,,,0.525829765,76758,145975,,,0.659,,,,,63.11103928,,,,,0.62627681,50399,80474,0.609934699,0.642618921,0.119206568,9321,78192,0.105098238,0.133314899,0.915562791,73679,80474,0.903006222,0.928119359,235201,,,,,0.265717408,62497,235201,,,0.100076105,23538,235201,,,0.210449786,49498,235201,,,0.007334153,1725,235201,,,0.023660614,5565,235201,,,0.004285696,1008,235201,,,0.113077751,26596,235201,,,0.603611379,141970,235201,,,0.009272754,1896,204470,0.006094578,0.01245093,0.499470666,117476,235201,,,0.177326202,39024,220069,, -47,127,47127,TN,Moore County,2024,1,8097.49799,115,17639,5743.868982,10451.127,0,,,,2,,,,2,,,,2,,,,2,8193.44768,5718.81747,10668.07789,,,,,2,,0.189,,,0.157,0.224,4.319101568,,,3.407095734,5.2779106,5.927113029,,,4.772483384,7.146456099,0.083333333,33,396,0.056111111,0.110555556,0,,,,,,,,,,,,,0.079155673,0.05197435,0.106336996,,,,,,,0.22,,,0.175,0.27,0.347,,,0.27,0.431,9,0.000540487,0.087,,,0.29,,,0.236,0.347,0.153691379,993,6461,,,0.1428224,,,0.112015418,0.17839457,0.333333333,3,9,0.150331965,0.513162068,225.8,15,6644,,,18.95375284,25,1319,12.26586948,27.97947816,,,,,,,,,,,,,17.54385965,10.85992563,26.81765308,,,,,,,0.10625121,549,5167,0.089570359,0.122932061,,0,6644,,,,,0,6742,,,,0.000148324,1,6742,,,6742,3187,,,,,,,,,3350,0.35,,,,,,,,,0.34,0.44,,,,,,,,,0.44,0.861499896,4124,4787,0.817831016,0.905168775,0.52173913,708,1357,0.391831045,0.651647216,0.024681313,91,3687,,,0.139,183,,0.086574468,0.191425532,,,,,,,,,,,,,0.05193662,0.000954112,0.102919127,4.464835086,124810,27954,3.224056557,5.705613616,0.19418239,247,1272,0.081965525,0.306399255,6.020469597,4,6644,,,111.2312684,36,32365,77.90501288,153.9909609,,,,,,,,,,,,,113.507378,78.60715893,158.6151836,,,,7.5,,,,,0,,,,,0.113461539,295,2600,0.067883828,0.159039249,0.093567252,0.044395117,0.142739386,0.017307692,0,0.037630653,0.007692308,0,0.021352607,0.845026178,2421,2865,0.795361572,0.894690784,,,,,,,,,,,,,0.881638164,0.803898496,0.959377832,0.359,,2865,0.262835662,0.455164338,77.40654854,,,75.28348892,79.52960815,,,,,,,,,,,,,77.30749726,75.12279342,79.49220111,,,,426.1920356,115,17639,343.1657018,509.2183693,,,,,,,,,,,,,428.5534105,341.8924979,515.2143231,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.132,,,0.112,0.154,0.191,,,0.164,0.221,0.11,,,0.093,0.127,,,,,,0.087,570,,,,0.000540487,3.438575032,6362,,,,,,,,,,,,,,,,,,,,,,,,,,0.346,,,0.329,0.363,0.12522686,483,3857,0.103780052,0.146673669,0.051263538,71,1385,0.034582687,0.067944389,0.00074162,5,6742,,,1348.4,0.925,75.85,82,,,,,,,,2.819759181,,,,,,,,,2.843470846,2.26255774,,,,,,,,,2.283706997,0.016409122,,,,,-358.2061,,,,,0.72417536,48036,66332,0.519029856,0.929320864,68086,,,58194.25532,77977.74468,,,,,,,26574,21214.68085,31933.31915,,,,71964,60995.14894,82932.85106,,,,,,,,,,,,,,,,0.201568604,,68086,,,11.49425287,4,348,,,,,,,,,,,,,,,,,,,,,,,,,,34.09023935,12,32365,17.01772466,60.9968549,37.07708945,,,,,,,,,,,,,36.93468122,18.43765979,66.08634712,,,,30.89757454,10,32365,14.81658797,56.82173966,,,,,,,,,,,,,33.38452294,16.00917639,61.39532631,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.691210938,3539,5120,,,0.658,,,,,6.602639201,,,,,0.844018765,2159,2558,0.80425503,0.8837825,0.114853896,283,2464,0.055330454,0.174377339,0.747068022,1911,2558,0.681033461,0.813102583,6742,,,,,0.198309107,1337,6742,,,0.220854346,1489,6742,,,0.022990211,155,6742,,,0.00415307,28,6742,,,0.016463957,111,6742,,,0.000593296,4,6742,,,0.019875408,134,6742,,,0.921833284,6215,6742,,,0.000637349,4,6276,0,0.014654034,0.504301394,3400,6742,,,0.998916576,6454,6461,, -47,129,47129,TN,Morgan County,2024,1,11916.03453,493,59441,10242.28145,13589.7876,0,,,,2,,,,2,,,,2,,,,2,12594.38702,10798.82304,14389.951,,,,,2,,0.227,,,0.194,0.265,4.919693665,,,3.944635798,5.989031946,6.403276253,,,5.150333422,7.674831734,0.089041096,117,1314,0.073641723,0.104440469,0,,,,,,,,,,,,,0.090266876,0.074530941,0.106002812,,,,,,,0.268,,,0.22,0.316,0.357,,,0.277,0.439,6.8,0.068142812,0.157,,,0.333,,,0.276,0.389,0.294318992,6191,21035,,,0.149889017,,,0.116516634,0.186522257,0.5,10,20,0.392533132,0.595381088,258.8,55,21254,,,30.81162325,123,3992,25.36636985,36.25687664,,,,,,,,,,,,,31.80492976,26.11430579,37.49555374,,,,,,,0.128075253,1947,15202,0.109011424,0.147139083,0.0001882,4,21254,,,5313.5,0.000141349,3,21224,,,7074.666667,0.000141349,3,21224,,,7074.666667,3675,,,,,,,,,3701,0.33,,,,,,,,,0.33,0.4,,,,,,,,,0.4,0.814415474,12463,15303,0.787566602,0.841264346,0.367164723,2015,5488,0.294673378,0.439656068,0.038113448,299,7845,,,0.218,866,,0.135787234,0.300212766,,,,,,,,,,,,,0.310178622,0.232269635,0.388087609,4.576736818,101123,22095,3.372902862,5.780570775,0.305748266,1234,4036,0.210656396,0.400840135,7.998494401,17,21254,,,119.2883703,128,107303,98.6227145,139.9540261,,,,,,,,,,,,,127.6240818,105.4274621,149.8207015,,,,7.4,,,,,0,,,,,0.118272425,890,7525,0.086233067,0.150311784,0.087785235,0.061638664,0.113931806,0.017807309,0.002445031,0.033169587,0.015282392,0.002942223,0.027622561,0.852920867,6176,7241,0.809954894,0.89588684,,,,,,,,,,,,,0.808718437,0.749193189,0.868243686,0.519,,7241,0.430004438,0.607995562,73.18979406,,,71.96153014,74.41805799,,,,,,,,,,,,,72.54791576,71.27352759,73.82230394,,,,594.4517594,493,59441,539.3091195,649.5943992,,,,,,,,,,,,,621.6287083,563.1912138,680.0662029,,,,55.88465407,10,17894,26.79886384,102.7738686,,,,,,,,,,,,,59.80503558,28.67883916,109.9835898,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.152,,,0.131,0.175,0.203,,,0.176,0.232,0.123,,,0.105,0.143,140.8,26,18460,,,0.157,3330,,,,0.068142812,1498.255997,21987,,,39.00886281,25,64088,25.24447923,57.58477671,,,,,,,,,,,,,40.46398705,25.92604002,60.20720528,,,,0.377,,,0.359,0.395,0.156444999,1755,11218,0.131423723,0.181466276,0.049726386,209,4203,0.033045535,0.066407237,0.000848097,18,21224,,,1179.111111,0.98,213.64,218,,,,,,,,2.7919793,,,,,,,,,2.804304069,2.393697863,,,,,,,,,2.395267315,0.038296797,,,,,-654.4082,,,,,0.743851733,39895,53633,0.657488876,0.83021459,59967,,,54750.65957,65183.34043,,,,,,,,,,35781,26432.57447,45129.42553,51846,44900.80851,58791.19149,,,,,,,,,,,,,,,,0.228859206,,59967,,,6.869479882,7,1019,,,,,,,,,,,,,,,,,,,,,,,,,,18.99544878,19,107303,11.25790681,30.0209985,17.70686747,,,,,,,,,,,,,20.87818644,12.37373648,32.99653571,,,,12.11522511,13,107303,6.450847125,20.71740391,,,,,,,,,,,,,13.06388239,6.955967171,22.33963674,,,,26.60370457,40,150355,19.00607658,36.2266948,,,,,,,,,,,,,28.63790943,20.45934236,38.99670447,,,,,,,,,,,0.474920635,8228,17325,,,0.578,,,,,3.340305795,,,,,0.815169886,5782,7093,0.776198163,0.854141609,0.081433225,550,6754,0.051476047,0.111390403,0.805582969,5714,7093,0.753181908,0.85798403,21224,,,,,0.190727478,4048,21224,,,0.19190539,4073,21224,,,0.035667169,757,21224,,,0.005512627,117,21224,,,0.00320392,68,21224,,,0.000565398,12,21224,,,0.019553336,415,21224,,,0.922304938,19575,21224,,,0.000595859,12,20139,0,0.006512187,0.455003769,9657,21224,,,1,21035,21035,, -47,131,47131,TN,Obion County,2024,1,11735.8438,718,82485,10300.66696,13171.02065,0,,,,2,,,,2,14041.15123,9886.266259,19353.87738,,,,,2,12100.23262,10430.98267,13769.48256,,,,,2,,0.222,,,0.187,0.257,4.741113031,,,3.776684127,5.804570257,6.392487783,,,5.184610677,7.69194433,0.090562844,214,2363,0.078991453,0.102134235,0,,,,,,,0.116438356,0.079648245,0.153228468,0.078838174,0.044814298,0.112862051,0.084378563,0.07137042,0.097386707,,,,0.178571429,0.078259415,0.278883442,0.25,,,0.202,0.302,0.364,,,0.287,0.448,7.4,0.029359251,0.148,,,0.326,,,0.271,0.385,0.49712541,15305,30787,,,0.134396431,,,0.104858782,0.166714499,0.266666667,8,30,0.170636514,0.368067779,538.3,164,30466,,,27.66295708,174,6290,23.55259528,31.77331887,,,,,,,47.24409449,33.08918296,65.4057408,54.40900563,36.43856499,78.14040795,21.10595188,16.96918531,25.24271845,,,,,,,0.134494538,3189,23711,0.116622198,0.152366879,0.000426705,13,30466,,,2343.538462,0.00052642,16,30394,,,1899.625,0.000493519,15,30394,,,2026.266667,3105,,,,,,,5001,,3016,0.39,,,,,,,0.44,,0.39,0.4,,,,,,,0.3,0.12,0.4,0.848403641,18362,21643,0.826758331,0.870048951,0.485055275,3554,7327,0.42252385,0.547586701,0.038516068,489,12696,,,0.231,1489,,0.152361702,0.309638298,,,,,,,0.333333333,0.163743304,0.502923363,0.258513932,0.109771958,0.407255906,0.160974549,0.111507895,0.210441203,4.465674575,95427,21369,3.908864604,5.022484546,0.284520078,1906,6699,0.225380387,0.343659768,14.77056391,45,30466,,,80.62490913,122,151318,66.31801399,94.93180428,,,,,,,87.66986035,47.92992846,147.0951288,,,,84.26966292,68.15086396,100.3884619,,,,7.9,,,,,0,,,,,0.110803324,1400,12635,0.087947964,0.133658684,0.08705123,0.064939342,0.109163119,0.015749901,0.007385451,0.024114351,0.014246142,0.005689173,0.022803111,0.836966463,10981,13120,0.807930583,0.866002344,,,,,,,0.782735918,0.669473999,0.895997837,,,,0.84597537,0.816268718,0.875682023,0.225,,13120,0.192239459,0.257760541,72.82616475,,,71.79919784,73.85313167,,,,,,,69.53181457,66.53856145,72.52506768,,,,72.61772251,71.44364311,73.79180191,,,,598.3260688,718,82485,551.8998112,644.7523263,,,,,,,785.3801428,626.4499602,972.3540579,,,,599.2015178,548.2120459,650.1909897,,,,90.56708931,26,28708,59.16142962,132.7017698,,,,,,,,,,,,,95.20635979,58.15451795,147.038501,,,,9.147609148,22,2405,5.732757951,13.84959018,,,,,,,,,,,,,,,,,,,,,,0.147,,,0.126,0.17,0.206,,,0.178,0.235,0.123,,,0.105,0.144,120.1,31,25820,,,0.148,4560,,,,0.029359251,933.8296837,31807,,,11.02949286,10,90666,5.28907054,20.28363007,,,,,,,,,,,,,,,,,,,0.377,,,0.362,0.392,0.163734541,2820,17223,0.139904754,0.187564328,0.058418741,399,6830,0.0405464,0.076291081,0.00161216,49,30394,,,620.2857143,0.878601695,311.025,354,,,,,,,,3.064934731,,,,,,,2.732683132,2.51413881,3.236007061,2.87786195,,,,,,,2.531049975,2.47817242,3.043621603,0.147923798,,,,,-4626.36265,,,,,0.750665209,36393,48481,0.675373433,0.825956985,50159,,,45707.59575,54610.40426,34375,800.0212766,67949.97872,,,,30541,18417.59575,42664.40426,55543,31933.6383,79152.3617,52675,49997.7234,55352.2766,,,,,,,,,,,53.36008814,,,,,0.273609921,,50159,,,14.98559078,26,1735,,,,,,,,,,,,,,,,,,,,,,,,,,12.83704122,19,151318,7.608044199,20.28805952,12.55633831,,,,,,,,,,,,,14.49565179,8.28551747,23.54003035,,,,15.19977795,23,151318,9.635355369,22.80712995,,,,,,,,,,,,,13.64365971,7.947934566,21.84482088,,,,15.05634366,32,212535,10.29852792,21.25506485,,,,,,,,,,,,,14.80469195,9.670916305,21.69230389,,,,,,,,,,,0.577203842,13521,23425,,,0.647,,,,,27.87138373,,,,,0.656912773,8239,12542,0.631330748,0.682494798,0.082468924,962,11665,0.062264633,0.102673215,0.815420188,10227,12542,0.797409457,0.833430919,30394,,,,,0.215535961,6551,30394,,,0.210995591,6413,30394,,,0.10400079,3161,30394,,,0.003684938,112,30394,,,0.00427716,130,30394,,,0.001381852,42,30394,,,0.054648944,1661,30394,,,0.814042245,24742,30394,,,0.006108082,177,28978,0,0.012298162,0.512864381,15588,30394,,,0.593074999,18259,30787,, -47,133,47133,TN,Overton County,2024,1,11953.28259,537,62056,10397.78047,13508.78471,0,,,,2,,,,2,,,,2,,,,2,12210.10092,10614.24389,13805.95795,,,,,2,,0.218,,,0.182,0.256,4.930327498,,,3.952267662,5.999977699,6.191913388,,,5.033534488,7.451287421,0.066828676,110,1646,0.054764344,0.078893007,0,,,,,,,,,,,,,0.067211055,0.054911297,0.079510814,,,,,,,0.257,,,0.207,0.308,0.379,,,0.304,0.458,8,0.002211759,0.134,,,0.314,,,0.26,0.377,0.336857536,7583,22511,,,0.139388573,,,0.109994668,0.174795034,0.058823529,1,17,0.002556547,0.2046995,205.8,47,22839,,,20.84734365,93,4461,16.82649691,25.5394044,,,,,,,,,,,,,21.30681818,17.13319795,26.18969692,,,,,,,0.128361858,2310,17996,0.110489518,0.146234199,0.000394063,9,22839,,,2537.666667,0.000303767,7,23044,,,3292,4.33952E-05,1,23044,,,23044,3883,,,,,,,,,3907,0.42,,,,,,,,,0.42,0.46,,,,,,,,,0.46,0.822279338,13117,15952,0.788860197,0.855698479,0.41621517,2151,5168,0.34868826,0.48374208,0.033877919,338,9977,,,0.197,931,,0.127893617,0.266106383,,,,,,,,,,0.634482759,0.466840424,0.802125094,0.173169062,0.109838085,0.23650004,5.305090206,98802,18624,3.716114001,6.894066411,0.258098443,1227,4754,0.173585823,0.342611064,7.881255747,18,22839,,,106.5105705,119,111726,87.37350684,125.6476342,,,,,,,,,,,,,109.2896175,89.48611321,129.0931218,,,,7,,,,,0,,,,,0.099777035,895,8970,0.068568154,0.130985915,0.090898749,0.061096754,0.120700743,0.00613155,1.00728E-05,0.012253026,0.005574136,0.000100303,0.011047969,0.837225619,8353,9977,0.802841588,0.87160965,,,,,,,,,,,,,0.836419303,0.78482419,0.888014416,0.37,,9977,0.314611762,0.425388238,72.37468767,,,71.31534041,73.43403494,,,,,,,,,,,,,72.03497099,70.97047777,73.09946421,,,,609.9318602,537,62056,554.696193,665.1675273,,,,,,,,,,,,,626.5643369,569.492187,683.6364868,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.15,,,0.128,0.174,0.206,,,0.179,0.237,0.116,,,0.098,0.135,87.2,17,19499,,,0.134,3000,,,,0.002211759,48.8422782,22083,,,25.13082814,17,67646,14.63963349,40.23689031,,,,,,,,,,,,,26.28283422,15.31071948,42.08136364,,,,0.353,,,0.335,0.369,0.158126137,2086,13192,0.13429635,0.181955924,0.048173741,244,5065,0.03268438,0.063663103,0.000737719,17,23044,,,1355.529412,0.9,207.9,231,,,0.176681614,197,1115,0.092711607,0.260651621,2.8409764,,,,,,,,,2.835791964,2.814472118,,,,,,,,,2.810088759,0.045399341,,,,,-605.7959,,,,,0.775386437,37973,48973,0.620056533,0.930716342,52108,,,45695.40426,58520.59575,,,,,,,,,,26797,19427.6383,34166.3617,47005,37963.97872,56046.02128,,,,,,,,,,,,,,,,0.263376065,,52108,,,10.19541207,12,1177,,,,,,,,,,,,,,,,,,,,,,,,,,22.80563615,26,111726,14.6120014,33.93297886,23.27121709,,,,,,,,,,,,,23.75541161,15.22054046,35.34616946,,,,17.90093622,20,111726,10.9343569,27.64654414,,,,,,,,,,,,,18.6819859,11.41144233,28.85281202,,,,20.52518825,32,155906,14.03921357,28.97544166,,,,,,,,,,,,,20.73301231,14.08707596,29.42885601,,,,,,,,,,,0.578501441,10037,17350,,,0.561,,,,,10.84470533,,,,,0.78877551,6957,8820,0.749834575,0.827716445,0.108362924,885,8167,0.077385804,0.139340044,0.73446712,6478,8820,0.697454361,0.77147988,23044,,,,,0.208774518,4811,23044,,,0.204044437,4702,23044,,,0.008114911,187,23044,,,0.005337615,123,23044,,,0.003298039,76,23044,,,8.67905E-05,2,23044,,,0.02226176,513,23044,,,0.949487936,21880,23044,,,0.001491911,32,21449,0,0.007495154,0.496788752,11448,23044,,,1,22511,22511,, -47,135,47135,TN,Perry County,2024,1,11496.06096,191,22379,8878.968663,14113.15327,0,,,,2,,,,2,,,,2,,,,2,11951.74714,9143.650632,14759.84365,,,,,2,,0.232,,,0.196,0.269,4.96792809,,,3.978623189,6.089145702,6.632806732,,,5.373070085,8.019103452,0.083676269,61,729,0.063575257,0.103777281,0,,,,,,,,,,,,,0.083090379,0.062435025,0.103745733,,,,,,,0.267,,,0.221,0.32,0.373,,,0.293,0.462,5.9,0.137174445,0.167,,,0.337,,,0.281,0.399,0.239660531,2005,8366,,,0.139887113,,,0.109397068,0.174751383,0.352941177,6,17,0.222343344,0.479798798,165.3,14,8472,,,38.67028494,57,1474,29.28849618,50.10183949,,,,,,,,,,,,,38.99082569,29.03123076,51.265735,,,,,,,0.151106396,997,6598,0.129659587,0.172553204,0.000236072,2,8472,,,4236,0.000115141,1,8685,,,8685,0.000690846,6,8685,,,1447.5,4118,,,,,,,,,4170,0.32,,,,,,,,,0.33,0.35,,,,,,,,,0.35,0.800103573,4635,5793,0.74943957,0.850767576,0.391913747,727,1855,0.23371709,0.550110403,0.053887884,149,2765,,,0.234,446,,0.151787234,0.316212766,,,,,,,,,,,,,0.228293868,0.097784657,0.358803078,4.67491797,96883,20724,3.208422019,6.14141392,0.105738576,199,1882,0.003947465,0.207529687,4.721435316,4,8472,,,132.7237871,54,40686,99.70619371,173.1757518,,,,,,,,,,,,,142.6917589,106.8859191,186.6443339,,,,6.9,,,,,0,,,,,0.078498294,230,2930,0.045585947,0.11141064,0.05840708,0.021026297,0.095787863,0.009897611,0,0.023022332,0.015358362,0.00142976,0.029286964,0.808963036,2473,3057,0.737894354,0.880031717,,,,,,,,,,,,,0.829651657,0.72848683,0.930816484,0.388,,3057,0.282225536,0.493774464,73.42906859,,,71.57422845,75.28390873,,,,,,,,,,,,,72.87697509,70.93494948,74.81900071,,,,597.4771786,191,22379,506.6891221,688.265235,,,,,,,,,,,,,616.6194359,520.2486513,712.9902205,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.155,,,0.134,0.18,0.211,,,0.184,0.241,0.122,,,0.104,0.142,183.2,13,7098,,,0.167,1390,,,,0.137174445,1085.735732,7915,,,,,,,,,,,,,,,,,,,,,,,,,,0.371,,,0.355,0.388,0.187288851,887,4736,0.158693107,0.215884596,0.061025641,119,1950,0.041961811,0.080089471,0.001611975,14,8685,,,620.3571429,0.825,56.1,68,,,,,,,,3.27831541,,,,,,,,,3.313664368,3.246641213,,,,,,,,,3.309147236,0.028814863,,,,,-5208.926,,,,,0.702957061,39438,56103,0.368506847,1.037407275,46448,,,40174.80851,52721.19149,,,,,,,,,,,,,56630,45733.82979,67526.17021,,,,,,,,,,,,,,,,0.295470203,,46448,,,7.518796993,4,532,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,44.18600541,25,56579,28.59485295,65.22726046,,,,,,,,,,,,,46.30790901,29.67035108,68.90249791,,,,,,,,,,,0.560130719,3428,6120,,,0.414,,,,,3.91501144,,,,,0.762017603,2251,2954,0.718716232,0.805318974,0.074643661,199,2666,0.027784372,0.12150295,0.722410291,2134,2954,0.677808439,0.767012143,8685,,,,,0.222682786,1934,8685,,,0.212435233,1845,8685,,,0.02855498,248,8685,,,0.007253886,63,8685,,,0.008981002,78,8685,,,0.000115141,1,8685,,,0.027173287,236,8685,,,0.908232585,7888,8685,,,0,0,7932,0,0.011416187,0.494876223,4298,8685,,,1,8366,8366,, -47,137,47137,TN,Pickett County,2024,1,9573.956372,113,13367,6186.113846,12961.7989,0,,,,2,,,,2,,,,2,,,,2,10006.13994,6441.072806,13571.20707,,,,,2,,0.223,,,0.185,0.262,4.888575734,,,3.90895217,5.936505459,6.439797932,,,5.21923257,7.711862048,0.094545455,26,275,0.05996399,0.129126919,0,,,,,,,,,,,,,0.097378277,0.061816425,0.13294013,,,,,,,0.258,,,0.206,0.306,0.37,,,0.287,0.455,7.3,0.002561445,0.167,,,0.326,,,0.268,0.386,0.072385523,362,5001,,,0.127990356,,,0.099600297,0.159301266,0.2,1,5,0.015594715,0.47750127,137.8,7,5079,,,17.68867925,15,848,9.900219496,29.17478641,,,,,,,,,,,,,18.49568434,10.35189412,30.50581858,,,,,,,0.158025372,573,3626,0.135387074,0.18066367,0.000590668,3,5079,,,1693,,0,5107,,,,,0,5107,,,,4364,,,,,,,,,4366,0.29,,,,,,,,,0.3,0.37,,,,,,,,,0.37,0.815274841,3085,3784,0.747955436,0.882594247,0.571115974,522,914,0.412219535,0.730012413,0.038073395,83,2180,,,0.229,195,,0.13606383,0.32193617,,,,,,,,,,,,,0.313653137,0.137600039,0.489706234,5.829061655,81875,14046,3.451005311,8.207117998,0.123333333,111,900,0.029608948,0.217057719,7.875566056,4,5079,,,110.4841574,28,25343,73.4159202,159.6803691,,,,,,,,,,,,,114.928375,76.36907054,166.103501,,,,6.9,,,,,0,,,,,0.061085973,135,2210,0.020647638,0.101524308,0.056398104,0.010693059,0.102103149,0.001809955,0,0.019947879,0.00678733,0,0.022436584,0.805555556,1363,1692,0.724540647,0.886570465,,,,,,,,,,,,,0.836896279,0.722445604,0.951346953,0.525,,1692,0.371630741,0.678369259,76.11836791,,,73.52134488,78.71539095,,,,,,,,,,,,,75.7208819,73.04354703,78.39821678,,,,478.5065688,113,13367,374.2655852,582.7475525,,,,,,,,,,,,,495.3856067,386.6984587,604.0727547,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.152,,,0.13,0.175,0.21,,,0.181,0.239,0.121,,,0.102,0.14,,,,,,0.167,840,,,,0.002561445,13.00445484,5077,,,,,,,,,,,,,,,,,,,,,,,,,,0.372,,,0.353,0.389,0.184353495,509,2761,0.15575775,0.21294924,0.075327511,69,916,0.050306234,0.100348788,0.001370668,7,5107,,,729.5714286,,,,,,,,,,,2.76794685,,,,,,,,,2.832821175,2.475332811,,,,,,,,,2.514557507,,,,,,-3177.212,,,,,0.756001983,32025,42361,0.076595288,1.435408679,47932,,,40731.82979,55132.17021,,,,,,,,,,55595,12870.57447,98319.42553,43939,34274.82979,53603.17021,,,,,,,,,,,,,,,,0.28632229,,47932,,,15,3,200,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.71750306,2931,4085,,,0.439,,,,,5.369595609,,,,,0.816780045,1801,2205,0.761286926,0.872273165,0.093795799,192,2047,0.034174103,0.153417494,0.708390023,1562,2205,0.615628562,0.801151483,5107,,,,,0.170158606,869,5107,,,0.2813785,1437,5107,,,0.003916194,20,5107,,,0.004307813,22,5107,,,0.002349716,12,5107,,,0.000979048,5,5107,,,0.0242804,124,5107,,,0.955159585,4878,5107,,,0,0,4851,0,0.018666912,0.500293715,2555,5107,,,1,5001,5001,, -47,139,47139,TN,Polk County,2024,1,13060.47957,447,46877,11108.15185,15012.80728,0,,,,2,,,,2,,,,2,,,,2,13626.51942,11561.64903,15691.38981,,,,,2,,0.196,,,0.163,0.229,4.708082869,,,3.713292816,5.792405015,6.655165458,,,5.392426598,7.999696398,0.0836966,96,1147,0.067669759,0.099723441,0,,,,,,,,,,,,,0.084095064,0.067649156,0.100540972,,,,,,,0.23,,,0.184,0.277,0.376,,,0.3,0.456,8.1,0.019332402,0.119,,,0.292,,,0.236,0.348,0.656577747,11519,17544,,,0.151666145,,,0.11948994,0.186780612,0.296296296,8,27,0.194109996,0.401266591,258.8,46,17776,,,33.55283788,107,3189,27.19523435,39.91044141,,,,,,,,,,,,,34.27620632,27.65662979,40.89578285,,,,,,,0.131924409,1829,13864,0.112860579,0.150988238,0.000337534,6,17776,,,2962.666667,0.00033589,6,17863,,,2977.166667,0.000167945,3,17863,,,5954.333333,2345,,,,,,,,,2294,0.36,,,,,,,,,0.37,0.38,,,,,,,,,0.38,0.846893663,10919,12893,0.823571911,0.870215416,0.459586712,1757,3823,0.375834068,0.543339356,0.037331441,263,7045,,,0.198,658,,0.125319149,0.270680851,,,,,,,,,,0.341772152,0,0.783924422,0.147677794,0.091094764,0.204260824,4.670977261,107638,23044,3.995233916,5.346720606,0.293809939,1011,3441,0.197587982,0.390031896,13.50135014,24,17776,,,112.8111119,96,85098,91.37736282,137.761676,,,,,,,,,,,,,117.7476729,95.26489888,143.9404242,,,,7.9,,,,,0,,,,,0.112751678,840,7450,0.080624797,0.144878559,0.077225308,0.048213698,0.106236919,0.017449664,0.005559297,0.029340031,0.022818792,0.011013908,0.034623676,0.813383732,5810,7143,0.76467644,0.862091025,,,,,,,,,,,,,0.744656489,0.662665302,0.826647676,0.51,,7143,0.43295752,0.58704248,71.69567306,,,70.35178481,73.03956131,,,,,,,,,,,,,71.15998726,69.76930378,72.55067074,,,,639.3041987,447,46877,575.3973978,703.2109995,,,,,,,,,,,,,660.8658429,594.184199,727.5474868,,,,68.65774116,10,14565,32.92405559,126.2640305,,,,,,,,,,,,,74.62129692,35.78381237,137.2312219,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.14,,,0.119,0.162,0.201,,,0.173,0.23,0.109,,,0.092,0.128,129.6,20,15433,,,0.119,2090,,,,0.019332402,325.2676661,16825,,,,,,,,,,,,,,,,,,,,,,,,,,0.363,,,0.344,0.381,0.15600803,1632,10461,0.132178243,0.179837817,0.059659883,214,3587,0.040596053,0.078723713,0.000839725,15,17863,,,1190.866667,0.875,138.25,158,,,,,,,,3.043950761,,,,,,,,,3.02829278,2.909362142,,,,,,,,,2.896778047,0.065462158,,,,,-572.9639,,,,,0.802730375,38808,48345,0.639294202,0.966166549,55146,,,49088.46809,61203.53192,,,,,,,,,,43492,41517.70213,45466.29787,54148,45239.23404,63056.76596,,,,,,,,,,,,,,,,0.248866645,,55146,,,7.263922518,6,826,,,8.428647286,10,118643,4.041863992,15.50058246,,,,,,,,,,,,,8.877604467,4.257156411,16.3262307,,,,26.12457941,23,85098,16.17152641,39.93419472,27.02766223,,,,,,,,,,,,,27.51344832,16.80592901,42.49228945,,,,25.85254648,22,85098,16.20165324,39.14106605,,,,,,,,,,,,,27.26788215,17.08863657,41.28390127,,,,23.6002124,28,118643,15.68216975,34.10887785,,,,,,,,,,,,,24.85729251,16.51749035,35.9257086,,,,,,,,,,,0.617429838,8360,13540,,,0.436,,,,,10.96001642,,,,,0.788762146,5601,7101,0.75837399,0.819150302,0.088433293,578,6536,0.054910325,0.12195626,0.818335446,5811,7101,0.784148341,0.852522551,17863,,,,,0.189497845,3385,17863,,,0.213569949,3815,17863,,,0.007669484,137,17863,,,0.005766109,103,17863,,,0.004366568,78,17863,,,0.000615798,11,17863,,,0.022840508,408,17863,,,0.946817444,16913,17863,,,0.00089222,15,16812,0,0.006596814,0.501539495,8959,17863,,,1,17544,17544,, -47,141,47141,TN,Putnam County,2024,1,9950.753194,1422,225374,9172.332499,10729.17389,0,,,,2,,,,2,15914.21221,9851.148186,24326.56386,1,5387.66525,3486.612879,7953.256723,1,10254.56337,9400.213351,11108.91338,,,,,2,,0.191,,,0.16,0.227,4.40442922,,,3.507900964,5.406775849,6.043785794,,,4.989626399,7.260444014,0.072179964,446,6179,0.065727328,0.078632601,0,,,,,,,0.115942029,0.062525293,0.169358765,0.071005917,0.053688566,0.088323268,0.071001197,0.063892265,0.078110128,,,,,,,0.219,,,0.175,0.267,0.348,,,0.284,0.421,6.6,0.152257992,0.124,,,0.301,,,0.248,0.355,0.53738072,42912,79854,,,0.157877887,,,0.124896781,0.193749918,0.25,17,68,0.187542659,0.315738843,365.8,297,81188,,,20.38369305,391,19182,18.36323162,22.40415447,,,,,,,25.22255193,14.69306598,40.38374899,48.3968542,38.37569546,60.23407439,17.84711389,15.77868283,19.91554494,,,,,,,0.121966075,8010,65674,0.106476713,0.137455437,0.000665123,54,81188,,,1503.481482,0.000667622,55,82382,,,1497.854546,0.002658348,219,82382,,,376.173516,3608,,,,,,,3127,,3646,0.48,,,,,,0.32,0.47,0.16,0.49,0.44,,,,,,0.42,0.31,0.22,0.45,0.892291018,46102,51667,0.877684168,0.906897867,0.607428689,11840,19492,0.557175592,0.657681786,0.033632921,1190,35382,,,0.229,3760,,0.178957447,0.279042553,,,,0.007751938,0,0.669177707,0.371794872,0.085279312,0.658310432,0.54473439,0.398525202,0.690943577,0.13618126,0.099869499,0.172493022,4.946041374,109263,22091,4.404237148,5.487845601,0.244132312,4015,16446,0.189784993,0.298479631,11.08538208,90,81188,,,91.25574422,364,398879,81.88086696,100.6306215,,,,,,,115.3535587,55.31651512,212.1393014,37.84008779,18.14579292,69.58926871,96.69910889,86.40523853,106.9929792,,,,6.3,,,,,0,,,,,0.135798584,4315,31775,0.116397893,0.155199274,0.126616637,0.10637707,0.146856205,0.010700236,0.006134089,0.015266384,0.002675059,0.000577737,0.004772382,0.814018319,30660,37665,0.793916806,0.834119833,,,,,,,,,,0.722720831,0.624756557,0.820685106,0.847547525,0.822511541,0.87258351,0.259,,37665,0.227162477,0.290837523,74.34861991,,,73.74316557,74.95407425,,,,,,,71.24787347,65.60304056,76.89270638,79.64863725,75.83127438,83.46600012,74.03183538,73.38778095,74.67588982,,,,509.818985,1422,225374,482.297661,537.3403089,,,,,,,705.0824272,482.2758582,995.3660099,296.3357819,187.8514658,444.6491724,523.6377875,494.2455299,553.0300451,,,,52.17015104,41,78589,37.43820111,70.77470074,,,,,,,,,,,,,52.19867131,35.93116351,73.30634177,,,,6.443298969,40,6208,4.603187249,8.773944421,,,,,,,,,,,,,5.327545383,3.510885977,7.751298825,,,,,,,0.134,,,0.114,0.156,0.196,,,0.169,0.224,0.111,,,0.094,0.13,154.4,107,69282,,,0.124,9780,,,,0.152257992,11011.45021,72321,,,30.53283931,74,242362,23.97484599,38.33118373,,,,,,,,,,,,,33.87517937,26.50524157,42.6601821,,,,0.34,,,0.322,0.357,0.146803989,7184,48936,0.12654867,0.167059308,0.051347518,905,17625,0.034666667,0.068028369,0.002464131,203,82382,,,405.8226601,0.92,745.2,810,,,0.044312881,247,5574,0.016790216,0.071835547,3.092361201,,,,,,,2.997883425,,3.2053981,3.109895738,,,,,,,3.001779448,,3.155557969,0.085987658,,,,,-1633.707,,,,,0.802372118,38493,47974,0.707608198,0.897136039,54996,,,50362.29787,59629.70213,,,,,,,,,,52827,38715,66939,54720,52121.3617,57318.6383,,,,,,,,,,,56.69234,,,,,0.334915267,,54996,,,13.04250056,58,4447,,,2.730435068,15,549363,1.52820378,4.503437412,,,,,,,,,,,,,2.479082739,1.280978227,4.33045864,,,,19.08780396,81,398879,15.06379639,23.85647991,20.30691012,,,,,,,,,,,,,19.32483272,15.03587334,24.45681262,,,,15.29285824,61,398879,11.69782479,19.64431618,,,,,,,,,,,,,15.40339788,11.57150656,20.09809294,,,,15.10840737,83,549363,12.03376214,18.72914408,,,,,,,,,,,,,15.70085735,12.3704898,19.65196425,,,,,,,,,,,0.55668241,33593,60345,,,0.683,,,,,52.02573064,,,,,0.608865671,19930,32733,0.586800048,0.630931294,0.134066559,4242,31641,0.112164729,0.15596839,0.841016711,27529,32733,0.815832925,0.866200497,82382,,,,,0.203236144,16743,82382,,,0.166529096,13719,82382,,,0.022092205,1820,82382,,,0.008278507,682,82382,,,0.015185356,1251,82382,,,0.001662985,137,82382,,,0.072491564,5972,82382,,,0.870469277,71711,82382,,,0.011962765,906,75735,0.007347025,0.016578505,0.49813066,41037,82382,,,0.38526561,30765,79854,, -47,143,47143,TN,Rhea County,2024,1,12183.16887,773,92058,10856.52514,13509.8126,0,,,,2,,,,2,,,,2,,,,2,12667.50608,11221.58737,14113.4248,,,,,2,,0.209,,,0.175,0.246,4.612945521,,,3.698523469,5.720883067,6.175791051,,,5.034338703,7.489134989,0.073977695,199,2690,0.064086676,0.083868715,0,,,,,,,,,,0.058823529,0.029943539,0.08770352,0.075,0.064282004,0.085717996,,,,,,,0.238,,,0.192,0.289,0.409,,,0.333,0.491,6.6,0.116358928,0.145,,,0.316,,,0.261,0.376,0.457742623,15046,32870,,,0.138468184,,,0.109743915,0.172151902,0.2,5,25,0.10034726,0.316172705,295.8,98,33136,,,35.29723992,266,7536,31.05538315,39.53909668,,,,,,,,,,56.43738977,38.60313282,79.67275499,33.65311406,29.21615734,38.09007077,,,,,,,0.133076218,3485,26188,0.115203878,0.150948559,0.000362144,12,33136,,,2761.333333,0.000266825,9,33730,,,3747.777778,0.000296472,10,33730,,,3373,2609,,,,,,,,,2636,0.42,,,,,,,0.42,,0.41,0.41,,,,,,0.36,0.28,,0.41,0.833165521,19032,22843,0.799281738,0.867049305,0.429809586,3273,7615,0.361836928,0.497782245,0.042507205,590,13880,,,0.205,1466,,0.128744681,0.281255319,,,,,,,,,,0.341032609,0.073254448,0.608810769,0.162835926,0.111260553,0.2144113,4.046439385,102905,25431,3.546058251,4.546820519,0.302245488,2194,7259,0.215632722,0.388858255,10.56253018,35,33136,,,99.10503321,164,165481,83.93697947,114.273087,,,,,,,,,,,,,104.704311,88.27352514,121.1350969,,,,7.9,,,,,1,,,,,0.107505071,1325,12325,0.077188531,0.137821611,0.08647541,0.059153475,0.113797344,0.011764706,0.000439498,0.023089914,0.009736308,0.00049473,0.018977887,0.825875796,10373,12560,0.784334329,0.867417264,,,,,,,,,,,,,0.824110482,0.769237108,0.878983857,0.348,,12560,0.293425105,0.402574895,72.44613455,,,71.50753466,73.38473443,,,,,,,,,,,,,72.00424084,71.00983787,72.99864381,,,,612.8158087,773,92058,567.1045185,658.527099,,,,,,,,,,,,,630.8910174,582.4157979,679.3662369,,,,45.19842107,15,33187,25.29721316,74.54792199,,,,,,,,,,,,,46.70043467,24.86601462,79.85916556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.144,,,0.123,0.167,0.202,,,0.174,0.232,0.115,,,0.098,0.134,160.4,45,28052,,,0.145,4750,,,,0.116358928,3701.261143,31809,,,36.09167285,36,99746,25.27816395,49.96608835,,,,,,,,,,,,,37.90497001,26.25029364,52.96839628,,,,0.353,,,0.337,0.371,0.164616441,3118,18941,0.140786653,0.188446228,0.052258403,398,7616,0.035577552,0.068939254,0.000859769,29,33730,,,1163.103448,0.83,310.42,374,,,,,,,,3.114985016,,,,,,,,,3.183566231,3.013070299,,,,,,,,,3.040692236,0.048214933,,,,,-1596.39085,,,,,0.776778143,37558,48351,0.648043521,0.905512765,59207,,,52927.85106,65486.14894,,,,41971,17258.31915,66683.68085,,,,57252,46423.74468,68080.25532,55518,52078.17021,58957.82979,,,,,,,,,,,52.97253222,,,,,0.231796916,,59207,,,5.329457364,11,2064,,,,,,,,,,,,,,,,,,,,,,,,,,15.0617135,27,165481,9.650324037,22.41063579,16.31607254,,,,,,,,,,,,,16.58306687,10.62508385,24.67428902,,,,14.50317559,24,165481,9.292458261,21.57957566,,,,,,,,,,,,,16.10835554,10.32092734,23.96795618,,,,15.62167768,36,230449,10.941231,21.62698666,,,,,,,,,,,,,15.39105299,10.52746885,21.72757455,,,,,,,,,,,0.549104087,13637,24835,,,0.532,,,,,26.84014627,,,,,0.734855618,9365,12744,0.708143827,0.76156741,0.076427795,914,11959,0.052299115,0.100556476,0.872332078,11117,12744,0.83934005,0.905324106,33730,,,,,0.217491847,7336,33730,,,0.193240439,6518,33730,,,0.01968574,664,33730,,,0.006522384,220,33730,,,0.006789208,229,33730,,,0.00074118,25,33730,,,0.058078862,1959,33730,,,0.893596205,30141,33730,,,0.010595601,330,31145,0.003433071,0.017758131,0.498221168,16805,33730,,,0.705263158,23182,32870,, -47,145,47145,TN,Roane County,2024,1,12532.00538,1313,145649,11403.22617,13660.78459,0,,,,2,,,,2,13579.56712,8294.752386,20972.54005,1,,,,2,12853.59275,11656.43921,14050.74628,,,,,2,,0.178,,,0.146,0.211,4.190506681,,,3.339672005,5.162547236,5.772286957,,,4.669015873,6.971811762,0.089328537,298,3336,0.079649793,0.099007282,0,,,,,,,,,,,,,0.090273363,0.080259262,0.100287464,,,,,,,0.21,,,0.165,0.258,0.364,,,0.286,0.444,7.5,0.06242786,0.128,,,0.269,,,0.215,0.327,0.697288593,37238,53404,,,0.143202301,,,0.112164079,0.176807417,0.327272727,18,55,0.257471221,0.397370253,266.7,144,53992,,,27.5974026,272,9856,24.31765949,30.87714571,,,,,,,,,,,,,28.79761358,25.23494265,32.36028452,,,,,,,0.107946537,4442,41150,0.092457175,0.123435899,0.000425989,23,53992,,,2347.478261,0.000490178,27,55082,,,2040.074074,0.000580952,32,55082,,,1721.3125,3212,,,,,,,,,3294,0.47,,,,,,,0.59,,0.47,0.55,,,,,,0.73,0.46,,0.55,0.898824475,35784,39812,0.88070288,0.91694607,0.520098949,5887,11319,0.457836078,0.582361819,0.036623869,870,23755,,,0.195,1971,,0.129468085,0.260531915,,,,,,,0.236749117,0,0.622443978,0.138586957,0,0.290193615,0.169661133,0.117927466,0.2213948,5.092798842,126663,24871,4.16737383,6.018223854,0.188317524,1886,10015,0.127849233,0.248785815,12.03882057,65,53992,,,148.0977295,396,267391,133.5110353,162.6844238,,,,,,,,,,,,,153.3190128,137.8830941,168.7549314,,,,7,,,,,1,,,,,0.099328548,2145,21595,0.078090404,0.120566692,0.084153774,0.062907815,0.105399733,0.014355175,0.005343358,0.023366992,0.004630702,0.000737038,0.008524366,0.813832778,18815,23119,0.788084529,0.839581028,,,,,,,,,,,,,0.79308696,0.762150091,0.824023828,0.456,,23119,0.406729358,0.505270642,73.07789391,,,72.28249593,73.87329188,,,,,,,,,,,,,72.6958136,71.86771416,73.52391305,,,,590.3013734,1313,145649,555.0205608,625.582186,,,,,,,729.4175947,508.0660806,1014.4433,,,,601.6409304,564.6587858,638.623075,,,,70.40494197,31,44031,47.83674225,99.93419523,,,,,,,,,,,,,74.27898161,49.74579975,106.6770079,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.127,,,0.107,0.148,0.189,,,0.162,0.218,0.104,,,0.087,0.122,108.1,51,47182,,,0.128,6840,,,,0.06242786,3382.403901,54181,,,60.1680985,97,161215,48.79227465,73.39997763,,,,,,,,,,,,,61.8333591,49.84641452,75.83312588,,,,0.354,,,0.334,0.372,0.129795683,4053,31226,0.110731853,0.148859513,0.040771508,427,10473,0.027665125,0.053877891,0.00107113,59,55082,,,933.5932203,0.9,426.6,474,,,0.120952009,310,2563,0.051444951,0.190459068,2.910352167,,,,,,,2.727415449,,2.913810094,2.850529086,,,,,,,2.352046262,,2.875756142,0.035719907,,,,,-1591.834,,,,,0.712204804,42342,59452,0.650968322,0.773441286,63430,,,57629.82979,69230.17021,,,,,,,63300,50733.3617,75866.6383,75721,17606.10638,133835.8936,65700,60135.74468,71264.25532,,,,,,,,,,,62.66807544,,,,,0.216364496,,63430,,,12.36749117,28,2264,,,,,,,,,,,,,,,,,,,,,,,,,,24.52126122,66,267391,18.5230972,31.84289734,24.68295492,,,,,,,,,,,,,24.90722264,18.65721893,32.57926046,,,,17.95123995,48,267391,13.23582724,23.80073981,,,,,,,,,,,,,19.01317573,13.97016637,25.28349306,,,,20.37435191,76,373018,16.05267196,25.50153959,,,,,,,,,,,,,20.55278302,16.05189406,25.92453919,,,,,,,,,,,0.601601671,25917,43080,,,0.63,,,,,33.04822406,,,,,0.772818364,16968,21956,0.74975969,0.795877038,0.094099408,2003,21286,0.07477798,0.113420836,0.849198397,18645,21956,0.824021447,0.874375347,55082,,,,,0.186376675,10266,55082,,,0.236084383,13004,55082,,,0.027032424,1489,55082,,,0.004538688,250,55082,,,0.007352674,405,55082,,,0.000599107,33,55082,,,0.026233615,1445,55082,,,0.918194692,50576,55082,,,0.002738024,141,51497,0,0.006197376,0.504230057,27774,55082,,,0.521140739,27831,53404,, -47,147,47147,TN,Robertson County,2024,1,10992.3716,1400,205513,10135.95518,11848.78803,0,,,,2,,,,2,19817.34819,15604.27542,24030.42096,,7251.207391,4926.843617,10292.51008,,10507.95556,9583.87629,11432.03482,,,,,2,,0.18,,,0.153,0.214,4.043108958,,,3.210832286,4.994453268,5.578059763,,,4.507807474,6.733836361,0.082532964,507,6143,0.075651597,0.089414332,0,,,,,,,0.168466523,0.134373756,0.20255929,0.062105263,0.046757838,0.077452688,0.077631579,0.069864726,0.085398432,,,,0.096153846,0.039494705,0.152812988,0.208,,,0.166,0.256,0.341,,,0.267,0.416,8.6,0.018745407,0.098,,,0.275,,,0.225,0.33,0.5441534,39616,72803,,,0.160537891,,,0.128108984,0.198561815,0.333333333,26,78,0.275465947,0.391340428,327.9,243,74098,,,22.44562468,355,15816,20.11069616,24.78055321,,,,,,,24.83974359,16.87740062,35.25803326,40.1955459,31.56214896,50.461827,19.59176982,17.10788879,22.07565085,,,,26.59574468,12.75369334,48.91052139,0.106688743,6637,62209,0.09358236,0.119795126,0.000350887,26,74098,,,2849.923077,0.000331258,25,75470,,,3018.8,0.000702266,53,75470,,,1423.962264,3445,,,,,,,6209,,3246,0.37,,,,,,0.27,0.35,0.23,0.37,0.46,,,,,,0.38,0.39,0.18,0.47,0.886434955,44632,50350,0.872235288,0.900634623,0.564571251,10903,19312,0.516588454,0.612554048,0.028336777,1111,39207,,,0.131,2278,,0.083340426,0.178659575,,,,,,,0.243436754,0.118539462,0.368334046,0.276304888,0.206251715,0.346358061,0.089497572,0.065030794,0.113964349,3.699980227,130983,35401,3.470546871,3.929413582,0.215846837,3743,17341,0.173918027,0.257775647,9.716861454,72,74098,,,107.4086957,386,359375,96.69345667,118.1239346,,,,,,,115.6500653,78.57860839,164.1560362,41.09230827,20.51313223,73.52549036,114.5575719,102.3805689,126.7345749,,,,8,,,,,1,,,,,0.110068913,2875,26120,0.09259601,0.127541816,0.096209352,0.078415842,0.114002861,0.014548239,0.007999018,0.02109746,0.005551302,0.001781246,0.009321357,0.82263342,29164,35452,0.797249006,0.848017834,,,,,,,0.817204301,0.710254418,0.924154184,0.754684838,0.652463376,0.8569063,0.76526992,0.727505003,0.803034838,0.538,,35452,0.500435003,0.575564997,73.5781479,,,72.93646434,74.21983146,,,,,,,65.89212676,63.42141053,68.36284298,97.36829856,70.38678441,124.3498127,73.94768191,73.25867532,74.6366885,,,,536.0880847,1400,205513,507.0266832,565.1494862,,,,,,,901.3636767,761.3487025,1041.378651,261.7704968,170.9971794,383.5544289,521.8830176,490.8590259,552.9070094,,,,58.98993149,44,74589,42.86217453,79.19122965,,,,,,,,,,,,,52.52671618,35.1779662,75.43712632,,,,5.558280203,34,6117,3.84927062,7.767139463,,,,,,,,,,,,,5.863192182,3.863880593,8.530636796,,,,,,,0.126,,,0.108,0.146,0.184,,,0.157,0.211,0.106,,,0.09,0.124,182.7,113,61861,,,0.098,7100,,,,0.018745407,1242.501807,66283,,,46.74910398,102,218186,37.67655593,55.82165202,,,,,,,,,,,,,51.86374891,41.86073899,63.5365963,,,,0.348,,,0.33,0.363,0.129372893,5795,44793,0.111500553,0.147245234,0.04989878,912,18277,0.034409418,0.065388142,0.000980522,74,75470,,,1019.864865,0.87,983.1,1130,,,0.077857537,282,3622,0.028687348,0.127027727,2.81264103,,,,,,,2.436026524,2.528737605,2.944038626,2.68295291,,,,,,,2.281584543,2.606248689,2.771005315,0.10287551,,,,,-2519.483,,,,,0.757117086,44068,58205,0.703171256,0.811062916,77326,,,70389.14894,84262.85106,,,,75365,39143.7234,111586.2766,56275,51484.02128,61065.97872,58844,43365.3617,74322.6383,78304,72774.29787,83833.70213,,,,,,,,,,,58.73968993,,,,,0.238199312,,77326,,,8.976660682,40,4456,,,4.425579852,22,497110,2.773487331,6.70038108,,,,,,,,,,,,,3.151660319,1.678126384,5.38943513,,,,20.56251068,74,359375,16.05949144,25.9368093,20.59130435,,,,,,,,,,,,,22.27542705,17.15479314,28.44522304,,,,17.80869565,64,359375,13.71486568,22.74130677,,,,,,,,,,,,,17.85750386,13.3764958,23.35805472,,,,17.09883125,85,497110,13.65793909,21.14296963,,,,,,,,,,,,,18.4250911,14.51687614,23.06174902,,,,,,,,,,,0.644992826,33717,52275,,,0.692,,,,,35.39831968,,,,,0.762871032,20715,27154,0.739234229,0.786507835,0.100498339,2662,26488,0.082476487,0.118520191,0.851513589,23122,27154,0.830000234,0.873026945,75470,,,,,0.235590301,17780,75470,,,0.154604479,11668,75470,,,0.074559428,5627,75470,,,0.006731152,508,75470,,,0.00934146,705,75470,,,0.00131178,99,75470,,,0.083675633,6315,75470,,,0.812468531,61317,75470,,,0.01353001,931,68810,0.009135971,0.01792405,0.501709289,37864,75470,,,0.530005632,38586,72803,, -47,149,47149,TN,Rutherford County,2024,1,8447.755888,4372,982625,8110.772167,8784.739609,0,,,,2,6047.996533,4580.693512,7835.881012,,10674.20448,9745.590424,11602.81854,,6651.554812,5649.112794,7653.996829,,8239.920609,7837.840861,8642.000358,,,,,2,,0.16,,,0.135,0.186,3.670401595,,,2.939079763,4.486327086,5.863568864,,,4.913920428,6.869677796,0.088088737,2581,29300,0.084843408,0.091334066,0,,,,0.090826521,0.073852211,0.107800831,0.130123359,0.120821895,0.139424822,0.079737733,0.072016172,0.087459293,0.076409876,0.072478064,0.080341689,,,,0.115079365,0.092331216,0.137827514,0.177,,,0.141,0.215,0.347,,,0.287,0.41,8.4,0.063798905,0.084,,,0.266,,,0.223,0.315,0.551844,188447,341486,,,0.169179006,,,0.137278047,0.204878847,0.240223464,43,179,0.202419048,0.279500152,579,2039,352182,,,16.30691379,1347,82603,15.4360624,17.17776518,,,,6.042296073,3.581047593,9.549432785,17.53914388,15.4112782,19.66700955,39.23670669,35.21687308,43.2565403,12.20580506,11.25039737,13.16121274,,,,17.77188329,13.77296544,22.56966356,0.097947837,30265,308991,0.087224432,0.108671241,0.000437274,154,352182,,,2286.896104,0.000537964,194,360619,,,1858.860825,0.001148026,414,360619,,,871.0603865,3219,,,,,,685,6199,885,3024,0.46,,,,,,0.39,0.45,0.27,0.47,0.49,,,,,,0.39,0.41,0.28,0.5,0.927001606,202040,217950,0.920789863,0.933213349,0.700067568,69418,99159,0.670379126,0.72975601,0.027113947,5303,195582,,,0.107,9208,,0.079595745,0.134404255,0.263736264,0,0.801028661,0.024254343,0,0.062318934,0.154459139,0.09477409,0.214144188,0.17096198,0.123282317,0.218641643,0.088499979,0.071561305,0.105438653,3.45898585,137384,39718,3.306882587,3.611089114,0.224937882,18830,83712,0.201896806,0.247978958,6.701080691,236,352182,,,78.9422341,1315,1665775,74.67543094,83.20903725,,,,32.21977277,19.39840794,50.31516631,76.67634611,66.10228549,87.25040672,43.19239814,33.19022467,55.26184006,87.73874896,82.32495248,93.15254545,,,,8.4,,,,,0,,,,,0.126507592,14580,115250,0.113773536,0.139241648,0.103649187,0.091932174,0.115366201,0.02164859,0.016972448,0.026324732,0.008893709,0.005015059,0.012772359,0.765321028,138318,180732,0.754582735,0.77605932,,,,0.622825125,0.555895368,0.689754883,0.730639098,0.684393917,0.776884279,0.661950352,0.616015215,0.707885489,0.777461522,0.76051733,0.794405715,0.425,,180732,0.402267832,0.447732168,76.17079018,,,75.86014297,76.48143738,,,,81.11566261,78.45753759,83.77378763,73.46225099,72.59906892,74.32543306,80.24566705,77.86279969,82.62853441,76.3019537,75.94743889,76.65646851,,,,427.017657,4372,982625,414.2758904,439.7594235,,,,267.5203287,215.9234319,327.7304762,528.3421721,489.0929652,567.5913791,329.7355631,276.4658878,383.0052385,425.6656099,410.9542505,440.3769692,,,,49.57310551,184,371169,42.41013298,56.73607805,,,,,,,87.1245723,65.6341512,113.4046065,59.89338977,40.40981857,85.50153805,38.26882515,30.61012043,47.26168774,,,,6.443566826,186,28866,5.51753495,7.369598702,,,,,,,11.36363636,8.560646069,14.79133471,6.402655917,4.219390593,9.315528206,4.987391426,4.00528485,6.137414312,,,,,,,0.112,,,0.096,0.13,0.176,,,0.152,0.201,0.104,,,0.088,0.121,242.4,707,291687,,,0.084,28350,,,,0.063798905,16753.84757,262604,,,35.45863745,363,1023728,31.81088967,39.10638523,,,,,,,29.52856738,21.84539671,39.03833205,13.99233651,7.450329887,23.92732156,41.69466609,36.90406425,46.48526793,,,,0.336,,,0.321,0.351,0.120356546,26843,223029,0.106058673,0.134654418,0.042096639,3802,90316,0.030181745,0.054011532,0.001192394,430,360619,,,838.6488372,0.95,3740.15,3937,,,0.053456398,1112,20802,0.034294233,0.072618564,3.125840948,,,,,,,2.843936008,,3.317047812,3.247318798,,,,,,,2.83927527,,3.461782361,0.071885961,,,,,-69.8086,,,,,0.809830852,46345,57228,0.776577071,0.843084634,77320,,,73463.14894,81176.85106,42321,9148.744681,75493.25532,69932,39123.65957,100740.3404,62381,57581.68085,67180.31915,70201,59441.85106,80960.14894,82254,80114.08511,84393.91489,,,,,,,,,,,29.98553851,,,,,0.238217796,,77320,,,6.63241476,142,21410,,,5.412212592,123,2272638,4.455727153,6.368698031,,,,,,,13.4222438,9.862159887,17.84873884,6.267889602,3.238710021,10.94874175,3.649504139,2.7712215,4.717830392,,,,14.41772911,238,1665775,12.55711423,16.27834398,14.28764389,,,,,,,10.46718978,7.062168987,14.94256425,7.23128426,3.306603634,13.72723003,15.57827816,13.28878907,17.86776726,,,,14.88796506,248,1665775,13.03500708,16.74092305,,,,,,,24.2934958,18.70895198,31.02225178,8.227123455,4.251074743,14.371129,14.17385142,11.99789524,16.3498076,,,,11.08843555,252,2272638,9.719364218,12.45750689,,,,,,,13.70782346,10.1070669,18.17458518,12.01345507,7.615499988,18.02608116,10.88558993,9.263462422,12.50771744,,,,,,,,,,,0.619429556,143878,232275,,,0.681,,,,,67.67557797,,,,,0.652175333,79898,122510,0.63803295,0.666317715,0.110009836,13197,119962,0.099382156,0.120637517,0.930781161,114030,122510,0.926345973,0.935216348,360619,,,,,0.241709394,87165,360619,,,0.114328419,41229,360619,,,0.16578716,59786,360619,,,0.005984155,2158,360619,,,0.039251953,14155,360619,,,0.001331045,480,360619,,,0.099905995,36028,360619,,,0.665525111,240001,360619,,,0.026629431,8582,322275,0.022489225,0.030769638,0.50639872,182617,360619,,,0.159640512,54515,341486,, -47,151,47151,TN,Scott County,2024,1,13141.91062,543,61317,11460.72051,14823.10074,0,,,,2,,,,2,,,,2,,,,2,13223.32461,11527.12863,14919.52059,,,,,2,,0.239,,,0.201,0.281,5.123909461,,,4.090764766,6.260738812,6.602120286,,,5.296310627,7.963134595,0.092409241,168,1818,0.079096672,0.10572181,0,,,,,,,,,,,,,0.092748735,0.07926886,0.106228611,,,,,,,0.286,,,0.234,0.34,0.371,,,0.291,0.456,6.1,0.078695745,0.184,,,0.357,,,0.296,0.42,0.746361556,16308,21850,,,0.143650224,,,0.110508456,0.178558325,0.142857143,5,35,0.066594236,0.239711679,255.5,56,21917,,,37.09458147,191,5149,31.83380483,42.35535811,,,,,,,,,,,,,37.05929487,31.71897392,42.39961583,,,,,,,0.134447634,2389,17769,0.115383804,0.153511463,0.000228133,5,21917,,,4383.4,0.000363059,8,22035,,,2754.375,0.000544588,12,22035,,,1836.25,3028,,,,,,,,,3030,0.39,,,,,,,,,0.39,0.38,,,,,,,,,0.38,0.803794074,11991,14918,0.768967817,0.838620331,0.438883721,2359,5375,0.358298029,0.519469412,0.048840651,396,8108,,,0.269,1358,,0.177255319,0.360744681,,,,,,,,,,,,,0.343198992,0.280581761,0.405816224,4.267430111,76020,17814,3.539247871,4.995612352,0.367409685,1912,5204,0.267678153,0.467141217,5.475201898,12,21917,,,98.99821077,109,110103,80.41288543,117.5835361,,,,,,,,,,,,,100.1207063,81.14979962,119.0916129,,,,7.2,,,,,0,,,,,0.104927536,905,8625,0.073728207,0.136126866,0.08797654,0.057926524,0.118026555,0.005101449,0,0.011393437,0.015072464,0.000616194,0.029528734,0.848329049,6600,7780,0.797549286,0.899108812,,,,,,,,,,,,,0.856427118,0.796145952,0.916708283,0.342,,7780,0.280560264,0.403439736,71.78188097,,,70.60496313,72.95879881,,,,,,,,,,,,,71.58612871,70.41385383,72.7584036,,,,676.9031969,543,61317,617.7823563,736.0240375,,,,,,,,,,,,,686.7284833,626.4853303,746.9716364,,,,78.0267892,18,23069,46.24362036,123.3159663,,,,,,,,,,,,,76.94048427,44.82066743,123.1891687,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.161,,,0.138,0.189,0.22,,,0.189,0.252,0.128,,,0.109,0.149,27.3,5,18331,,,0.184,4020,,,,0.078695745,1749.249011,22228,,,19.67461218,13,66075,10.47590237,33.64418603,,,,,,,,,,,,,18.73243834,9.679324241,32.72179995,,,,0.367,,,0.35,0.383,0.170112413,2164,12721,0.143899647,0.196325179,0.04576144,244,5332,0.031463568,0.060059313,0.001316088,29,22035,,,759.8275862,0.942081851,264.725,281,,,,,,,,2.96590104,,,,,,,,,2.97520113,2.815783203,,,,,,,,,2.825955671,0.04925886,,,,,-4609.5695,,,,,0.731206199,33596,45946,0.648996213,0.813416185,44599,,,38145.89362,51052.10638,,,,31510,15132.97872,47887.02128,,,,70536,24532.59575,116539.4043,40212,34864.59575,45559.40426,,,,,,,,,,,,,,,,0.307719904,,44599,,,9.908536585,13,1312,,,,,,,,,,,,,,,,,,,,,,,,,,21.18508144,24,110103,13.27657775,32.0744679,21.79777118,,,,,,,,,,,,,21.76862797,13.64228325,32.95796436,,,,18.16480932,20,110103,11.09553744,28.05407473,,,,,,,,,,,,,18.71415071,11.43108943,28.90248796,,,,26.62337662,41,154000,19.10539472,36.1176166,,,,,,,,,,,,,27.3970772,19.66061561,37.1672288,,,,,,,,,,,0.539934387,9052,16765,,,0.565,,,,,13.54556638,,,,,0.71627583,6170,8614,0.684247479,0.748304182,0.100696566,824,8183,0.067724672,0.13366846,0.709774785,6114,8614,0.663872802,0.755676769,22035,,,,,0.233446789,5144,22035,,,0.176038121,3879,22035,,,0.003539823,78,22035,,,0.003948264,87,22035,,,0.004265941,94,22035,,,0.000226912,5,22035,,,0.012343998,272,22035,,,0.96596324,21285,22035,,,0.003495485,72,20598,0,0.009373502,0.500658044,11032,22035,,,1,21850,21850,, -47,153,47153,TN,Sequatchie County,2024,1,10687.21371,332,42619,8810.991149,12563.43628,0,,,,2,,,,2,,,,2,,,,2,10964.14327,8979.392456,12948.89408,,,,,2,,0.227,,,0.189,0.265,4.908664563,,,3.922183549,6.017260579,6.612434955,,,5.378301483,7.937788213,0.088034188,103,1170,0.071798223,0.104270153,0,,,,,,,,,,,,,0.090654206,0.073450473,0.107857939,,,,,,,0.26,,,0.209,0.311,0.373,,,0.296,0.46,5.4,0.221942079,0.148,,,0.331,,,0.27,0.391,0.53961835,8540,15826,,,0.136124353,,,0.106319448,0.169844763,0.2,6,30,0.108784544,0.30493649,189.1,31,16396,,,32.02614379,98,3060,26.00037159,39.02961121,,,,,,,,,,,,,31.92252511,25.63640895,39.28341406,,,,,,,0.136488287,1742,12763,0.117424457,0.155552116,0.000182972,3,16396,,,5465.333333,0.00017742,3,16909,,,5636.333333,0.00017742,3,16909,,,5636.333333,1129,,,,,,,,,1142,0.43,,,,,,,,,0.43,0.39,,,,,,,,,0.4,0.839769502,9764,11627,0.806744298,0.872794707,0.461456954,1742,3775,0.36960714,0.553306767,0.041227074,254,6161,,,0.247,823,,0.17193617,0.32206383,,,,,,,,,,0.447368421,0.084160059,0.810576784,0.408851423,0.332363619,0.485339226,4.771173566,100500,21064,3.843230569,5.699116563,0.329787234,1054,3196,0.19858251,0.460991958,4.879238839,8,16396,,,108.9095919,83,76210,86.74588203,135.0098252,,,,,,,,,,,,,112.6506703,89.32497549,140.2035104,,,,7.8,,,,,0,,,,,0.11101083,615,5540,0.077752666,0.144268994,0.089719626,0.055753604,0.123685649,0.019855596,0.004670439,0.035040752,0.017148014,0.004226882,0.030069147,0.774043847,4837,6249,0.730809453,0.817278241,,,,,,,,,,,,,0.74619416,0.65917668,0.83321164,0.512,,6249,0.433678265,0.590321736,75.520173,,,73.98745529,77.05289071,,,,,,,,,,,,,75.0695283,73.504953,76.6341036,,,,526.9805988,332,42619,465.5181976,588.4430001,,,,,,,,,,,,,541.8173748,477.6694401,605.9653095,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.155,,,0.131,0.179,0.213,,,0.183,0.243,0.124,,,0.106,0.145,184.4,26,14102,,,0.148,2330,,,,0.221942079,3132.046618,14112,,,47.21232671,22,46598,29.58771379,71.48003002,,,,,,,,,,,,,50.7731364,31.81925426,76.87113867,,,,0.353,,,0.335,0.37,0.164269092,1553,9454,0.139247816,0.189290369,0.058975093,206,3493,0.038719774,0.079230412,0.000768821,13,16909,,,1300.692308,0.825,121.275,147,,,,,,,,3.080391062,,,,,,,,,3.125990163,3.121589359,,,,,,,,,3.132213946,0.006058111,,,,,-2431.535,,,,,0.768934074,36682,47705,0.586454695,0.951413453,56264,,,48841.02128,63686.97872,,,,,,,,,,52438,25667.61702,79208.38298,53849,44334.95745,63363.04255,,,,,,,,,,,,,,,,0.243921513,,56264,,,7.5,6,800,,,,,,,,,,,,,,,,,,,,,,,,,,13.26228164,10,76210,6.064359673,25.17594168,13.12163758,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20.77078495,22,105918,13.01694034,31.44721802,,,,,,,,,,,,,20.21631457,12.34865014,31.22245821,,,,,,,,,,,0.619299744,7252,11710,,,0.549,,,,,16.35025662,,,,,0.765738397,4537,5925,0.73559189,0.795884903,0.114373754,631,5517,0.073878091,0.154869417,0.778902954,4615,5925,0.732973444,0.824832463,16909,,,,,0.200011828,3382,16909,,,0.217280738,3674,16909,,,0.009344136,158,16909,,,0.00555917,94,16909,,,0.005322609,90,16909,,,0.000591401,10,16909,,,0.044828198,758,16909,,,0.921343663,15579,16909,,,0.010831747,165,15233,0,0.023653618,0.493701579,8348,16909,,,1,15826,15826,, -47,155,47155,TN,Sevier County,2024,1,11563.82591,2007,273599,10769.5258,12358.12601,0,,,,2,,,,2,,,,2,7115.942311,5035.664298,9767.186786,,12142.58835,11267.1677,13018.00901,,,,,2,,0.188,,,0.158,0.22,4.411505942,,,3.477745529,5.349435427,5.551820064,,,4.430742964,6.631840997,0.07594766,563,7413,0.069917004,0.081978316,0,,,,0.096491228,0.042289423,0.150693033,,,,0.070241692,0.056476109,0.084007274,0.07619539,0.06937557,0.083015211,,,,,,,0.219,,,0.177,0.266,0.404,,,0.329,0.479,7.4,0.077418713,0.124,,,0.306,,,0.255,0.365,0.543331978,53453,98380,,,0.146904958,,,0.115980329,0.179710459,0.21978022,20,91,0.166738536,0.276460901,359.7,358,99517,,,28.15904139,517,18360,25.73171227,30.58637051,,,,,,,,,,88.56345886,73.16033596,103.9665818,23.48866499,21.10491892,25.87241105,,,,,,,0.167534988,13120,78312,0.148471159,0.186598818,0.000361747,36,99517,,,2764.361111,0.000404903,40,98789,,,2469.725,0.000809807,80,98789,,,1234.8625,2581,,,,,,,4372,,2553,0.45,,,,,,0.38,,0.22,0.45,0.44,,,,,,0.53,,0.33,0.44,0.876810472,62293,71045,0.861310346,0.892310598,0.556874296,12856,23086,0.50674589,0.607002702,0.0315462,1734,54967,,,0.161,3113,,0.110957447,0.211042553,,,,0.087912088,0,0.346390123,,,,0.436416185,0.349247074,0.523585296,0.162137563,0.124800963,0.199474164,4.313888274,116915,27102,3.891327417,4.736449131,0.273976696,5502,20082,0.220734925,0.327218466,9.5461077,95,99517,,,122.6293852,604,492541,112.8495361,132.4092343,,,,,,,,,,46.63309084,26.10018695,76.9141916,131.8877226,121.154097,142.6213482,,,,8.9,,,,,0,,,,,0.136070536,5170,37995,0.117419062,0.15472201,0.105186557,0.086405368,0.123967747,0.030135544,0.020257219,0.040013869,0.007500987,0.003252984,0.01174899,0.781894169,35921,45941,0.754538929,0.809249408,,,,,,,,,,0.61069203,0.508566805,0.712817256,0.78330181,0.754934717,0.811668903,0.391,,45941,0.356922571,0.425077429,73.97548029,,,73.40056723,74.55039335,,,,,,,,,,87.9996243,75.99216209,100.0070865,73.48905125,72.87598399,74.10211852,,,,523.4182054,2007,273599,498.6349137,548.2014971,,,,,,,,,,325.4905826,230.3365085,446.761255,545.0833728,518.3115696,571.8551761,,,,49.83971999,44,88283,36.21361684,66.9074978,,,,,,,,,,87.06251088,41.74985805,160.1110573,45.89261129,31.59036196,64.45028894,,,,5.268846258,39,7402,3.746664751,7.202686283,,,,,,,,,,,,,5.227655987,3.551938614,7.420240388,,,,,,,0.134,,,0.116,0.157,0.194,,,0.169,0.223,0.11,,,0.093,0.129,159,136,85509,,,0.124,12190,,,,0.077418713,6959.090704,89889,,,53.53337082,159,297011,45.21224479,61.85449684,,,,,,,,,,,,,57.17336403,48.05406736,66.29266069,,,,0.367,,,0.348,0.385,0.204349014,11963,58542,0.179327738,0.229370291,0.060923461,1268,20813,0.041859632,0.079987291,0.001649981,163,98789,,,606.0674847,0.92,997.28,1084,,,,,,,,2.951020101,,,,,,,,,3.038821579,2.802005081,,,,,,,,2.54268556,2.846448192,0.126373557,,,,,-73.14355,,,,,0.830140727,39523,47610,0.74617092,0.914110533,59530,,,54215.95745,64844.04255,83561,82765.08511,84356.91489,,,,,,,53354,41010.17021,65697.82979,60200,56748.25532,63651.74468,,,,,,,,,,,78.33695697,,,,,0.309407022,,59530,,,8.521113426,45,5281,,,2.18926966,15,685160,1.225317609,3.61086737,,,,,,,,,,,,,2.441402276,1.366434321,4.026721778,,,,24.63086491,120,492541,20.00699212,29.2547377,24.36345401,,,,,,,,,,,,,26.83655988,21.68498753,31.98813223,,,,19.08470564,94,492541,15.42238482,23.35484634,,,,,,,,,,,,,20.92012152,16.86457058,25.65667193,,,,16.78440072,115,685160,13.71669999,19.85210146,,,,,,,,,,,,,18.06637685,14.70539902,21.42735467,,,,,,,,,,,0.584166387,43535,74525,,,0.466,,,,,37.70908637,,,,,0.721729113,27565,38193,0.708446944,0.735011281,0.112231928,4150,36977,0.093379544,0.131084312,0.82145943,31374,38193,0.80474032,0.838178539,98789,,,,,0.201267348,19883,98789,,,0.210337183,20779,98789,,,0.012774702,1262,98789,,,0.007419854,733,98789,,,0.013726225,1356,98789,,,0.000789562,78,98789,,,0.074137809,7324,98789,,,0.881150735,87048,98789,,,0.020200937,1884,93263,0.014877394,0.02552448,0.504863902,49875,98789,,,0.533655215,52501,98380,, -47,157,47157,TN,Shelby County,2024,1,13614.38476,18057,2647692,13340.76701,13888.00251,0,9425.438185,4870.26145,16464.34368,1,3110.129064,2381.601231,3838.656896,,17478.79089,17060.79631,17896.78548,,9425.379203,8546.392473,10304.36593,,9339.458345,8948.082301,9730.83439,,,,,2,,0.209,,,0.179,0.242,3.997108739,,,3.217829578,4.820779744,5.661582285,,,4.747959103,6.597038835,0.11898822,10636,89387,0.116865651,0.121110788,0,,,,0.096282528,0.08513522,0.107429836,0.152259618,0.149156386,0.15536285,0.072164033,0.067385802,0.076942265,0.069608148,0.066281615,0.072934682,,,,0.096,0.079668695,0.112331305,0.192,,,0.158,0.231,0.382,,,0.328,0.436,7.3,0.111893861,0.111,,,0.289,,,0.245,0.334,0.862454611,801862,929744,,,0.154290309,,,0.125571434,0.18656507,0.182207931,170,933,0.166351139,0.198588044,1071.1,9902,924454,,,31.4696607,6626,210552,30.71191686,32.22740454,,,,3.359462486,1.991030381,5.309399079,40.11935264,39.00147275,41.23723253,58.31604237,54.81853621,61.81354853,8.204674281,7.472197442,8.93715112,,,,22.95454546,18.47778268,27.43130823,0.129008783,97502,755778,0.119476868,0.138540698,0.000856722,792,924454,,,1167.239899,0.000775887,711,916371,,,1288.848101,0.001894429,1736,916371,,,527.8634793,2871,,,,,,1762,3679,1822,2325,0.34,,,,,,0.32,0.34,0.19,0.35,0.47,,,,,,0.5,0.34,0.29,0.53,0.896354801,547472,610776,0.891905327,0.900804276,0.63558331,161421,253973,0.618264098,0.652902522,0.045153523,19766,437751,,,0.235,52737,,0.199255319,0.270744681,0.686149937,0.266273451,1,0.052379379,0.025406934,0.079351824,0.365450233,0.344374515,0.386525952,0.312752692,0.271421628,0.354083757,0.067113397,0.052759151,0.081467642,5.470712179,129820,23730,5.268875366,5.672548991,0.435105138,100357,230650,0.4177425,0.452467775,9.291971261,859,924454,,,116.7361331,5452,4670362,113.6374051,119.8348611,,,,29.63032274,20.96817988,40.66993296,128.3468032,123.9157091,132.7778973,79.8386419,69.88182008,89.79546373,114.5961882,109.4242253,119.7681511,,,,9.2,,,,,0,,,,,0.187490361,66860,356605,0.180371178,0.194609543,0.168930977,0.161253432,0.176608522,0.021522413,0.019033488,0.024011338,0.009183831,0.006968638,0.011399023,0.800127348,338025,422464,0.79388856,0.806366136,0.800653595,0.651108279,0.950198911,0.691656681,0.644669973,0.738643389,0.815031301,0.805682245,0.824380356,0.740362285,0.706215044,0.774509526,0.834823075,0.830045922,0.839600228,0.29,,422464,0.279145015,0.300854985,72.54083388,,,72.3389233,72.74274446,,,,85.72387229,83.88760942,87.56013516,69.3286005,69.04580973,69.61139127,79.95262907,77.92126076,81.98399738,76.21388824,75.905236,76.52254049,,,,595.3841652,18057,2647692,586.4685228,604.2998076,400.4852516,241.1182829,625.4073293,162.5206833,133.9338436,191.107523,758.538545,744.5656232,772.5114669,380.1850207,342.6003128,417.7697287,434.5627173,422.2897385,446.8356961,,,,92.42642396,943,1020271,86.52717975,98.32566817,,,,39.66837241,19.02252646,72.95154922,124.5308681,115.4784234,133.5833128,73.1289737,58.41282683,90.42510846,41.84589401,34.06109449,49.63069353,,,,8.862027588,805,90837,8.249830543,9.474224633,,,,,,,11.56047526,10.64455841,12.47639212,5.542725173,4.229683229,7.134585996,4.708549505,3.820511946,5.596587064,,,,,,,0.129,,,0.111,0.149,0.18,,,0.156,0.205,0.141,,,0.121,0.162,863.7,6550,758358,,,0.111,103440,,,,0.111893861,103797.6689,927644,,,45.9673646,1286,2797637,43.45498538,48.47974382,,,,,,,44.19297066,40.83658272,47.54935861,28.62443679,21.5035579,37.34868083,56.09983313,51.40275957,60.79690669,,,,0.364,,,0.35,0.378,0.162401397,86983,535605,0.150486503,0.17431629,0.049218845,11354,230684,0.037303951,0.061133738,0.001789668,1640,916371,,,558.7628049,0.820665473,8478.295,10331,,,0.107139218,5257,49067,0.089615141,0.124663295,2.837799658,,,,,,,2.596417946,,3.709394449,2.863175365,,,,,,,2.577305337,,3.730237946,0.320611558,,,,,,,,,,0.832638497,45736,54929,0.807454457,0.857822537,61452,,,59192.93617,63711.06383,34000,21195.06383,46804.93617,104314,91287.44681,117340.5532,44570,43149.74468,45990.25532,52775,47941.12766,57608.87234,90128,87181.44681,93074.55319,,,,,,,,,,,66.611455,,,,,0.299729871,,61452,,,8.975902672,574,63949,,,26.19579846,1714,6543034,24.95562537,27.43597155,,,,,,,42.26911316,40.11777525,44.42045108,19.10832533,15.17476852,23.74990368,5.62315745,4.660214257,6.586100643,,,,11.08033848,522,4670362,10.11176246,12.04891449,11.17686381,,,,,,,6.541173621,5.524822875,7.557524367,8.550582756,4.418210883,14.9361473,18.12677737,16.04925351,20.20430124,,,,33.68047273,1573,4670362,32.01602605,35.34491942,,,,,,,47.98569588,45.27628828,50.69510349,23.59603587,18.49552546,29.66847252,16.77017388,14.79166003,18.74868774,,,,19.50165627,1276,6543034,18.4316108,20.57170173,,,,,,,24.14156362,22.51571629,25.76741095,19.34423058,15.38504065,24.01129069,13.95058146,12.43385697,15.46730595,,,,,,,,,,,0.57064016,382055,669520,,,0.619,,,,,150.161184,,,,,0.551952135,197510,357839,0.544753359,0.559150911,0.177680591,61104,343898,0.170019495,0.185341688,0.84297128,301648,357839,0.837130622,0.848811939,916371,,,,,0.249285497,228438,916371,,,0.150711884,138108,916371,,,0.539846852,494700,916371,,,0.003555329,3258,916371,,,0.029912557,27411,916371,,,0.00063184,579,916371,,,0.071369565,65401,916371,,,0.341920467,313326,916371,,,0.018935525,16352,863562,0.017320833,0.020550217,0.525078816,481167,916371,,,0.034027646,31637,929744,, -47,159,47159,TN,Smith County,2024,1,10734.00225,403,56686,9141.517092,12326.48741,0,,,,2,,,,2,,,,2,,,,2,11198.87232,9486.543687,12911.20096,,,,,2,,0.19,,,0.159,0.221,4.444945836,,,3.548005438,5.483487701,6.097007429,,,4.925638646,7.342263125,0.078155029,122,1561,0.064839389,0.091470668,0,,,,,,,,,,,,,0.078028747,0.064275129,0.091782366,,,,,,,0.225,,,0.178,0.274,0.37,,,0.287,0.457,8.3,0.012065555,0.117,,,0.296,,,0.243,0.353,0.340936495,6786,19904,,,0.157485069,,,0.124152189,0.196148778,0.28,7,25,0.173955028,0.39080618,292.5,59,20172,,,23.45828295,97,4135,19.0230872,28.61711582,,,,,,,,,,,,,24.41613588,19.68285158,29.9442232,,,,,,,0.124857434,2080,16659,0.106985094,0.142729775,0.000396589,8,20172,,,2521.5,0.000244033,5,20489,,,4097.8,0.00029284,6,20489,,,3414.833333,4259,,,,,,,,,4246,0.36,,,,,,,,,0.36,0.48,,,,,,,0.59,,0.48,0.86615747,12134,14009,0.842626206,0.889688734,0.507190602,2504,4937,0.428916568,0.585464635,0.029734441,290,9753,,,0.158,712,,0.098425532,0.217574468,,,,,,,,,,0.428571429,0.099983752,0.757159105,0.164492198,0.108330364,0.220654031,4.447782661,111328,25030,3.650623397,5.244941924,0.266830138,1197,4486,0.167757942,0.365902335,6.444576641,13,20172,,,119.7700415,120,100192,98.34046206,141.199621,,,,,,,,,,,,,123.1460577,100.540035,145.7520804,,,,7.3,,,,,1,,,,,0.139791938,1075,7690,0.104677121,0.174906755,0.113591596,0.08029351,0.146889681,0.021456437,0.00477709,0.038135784,0.017555267,0.000556514,0.034554019,0.819505737,7428,9064,0.782790561,0.856220913,,,,,,,,,,,,,0.821885362,0.768722417,0.875048308,0.477,,9064,0.413705107,0.540294894,73.64629722,,,72.48653203,74.80606242,,,,,,,,,,,,,73.26982366,72.05393329,74.48571403,,,,529.3933031,403,56686,474.8458725,583.9407338,,,,,,,,,,,,,544.274136,486.8581457,601.6901263,,,,50.31952901,10,19873,24.13017006,92.53940544,,,,,,,,,,,,,56.71184711,27.19553505,104.295106,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.135,,,0.114,0.156,0.194,,,0.166,0.223,0.107,,,0.09,0.125,106.1,18,16965,,,0.117,2320,,,,0.012065555,231.248422,19166,,,47.84373247,29,60614,32.04169851,68.71158056,,,,,,,,,,,,,50.15494295,33.32759535,72.48785703,,,,0.366,,,0.347,0.382,0.152689416,1848,12103,0.130051118,0.175327714,0.052631579,252,4788,0.035950728,0.06931243,0.00058568,12,20489,,,1707.416667,0.94,200.22,213,,,,,,,,3.201503185,,,,,,,,,3.211576187,3.097377811,,,,,,,,,3.135978053,0.029659609,,,,,-641.4482,,,,,0.867473613,41997,48413,0.768178504,0.966768721,63960,,,55923.40426,71996.59575,,,,,,,20464,5257.021277,35670.97872,40733,22871.38298,58594.61702,58222,52749.48936,63694.51064,,,,,,,,,,,31.18152523,,,,,0.214571607,,63960,,,6.25,7,1120,,,,,,,,,,,,,,,,,,,,,,,,,,16.32475769,17,100192,9.331009535,26.51038374,16.96742255,,,,,,,,,,,,,17.41704774,9.955347673,28.28419434,,,,20.95975727,21,100192,12.9744201,32.03921544,,,,,,,,,,,,,22.6848001,14.0422488,34.67612666,,,,22.31275282,31,138934,15.160433,31.67117157,,,,,,,,,,,,,22.5349486,15.09200875,32.3639452,,,,,,,,,,,0.597228637,9051,15155,,,0.585,,,,,12.61834836,,,,,0.748240813,5742,7674,0.708301466,0.78818016,0.126489332,913,7218,0.091551277,0.161427388,0.84857962,6512,7674,0.822413074,0.874746165,20489,,,,,0.223925033,4588,20489,,,0.170628142,3496,20489,,,0.023280785,477,20489,,,0.006100835,125,20489,,,0.005759188,118,20489,,,0.00029284,6,20489,,,0.034750354,712,20489,,,0.914490702,18737,20489,,,0.006198676,117,18875,0,0.013444017,0.49773049,10198,20489,,,1,19904,19904,, -47,161,47161,TN,Stewart County,2024,1,11237.65374,303,38081,9249.679818,13225.62766,0,,,,2,,,,2,,,,2,,,,2,12042.10805,9872.129128,14212.08697,,,,,2,,0.185,,,0.153,0.218,4.282203232,,,3.36316759,5.292658924,5.923340106,,,4.731561002,7.129954503,0.081053698,80,987,0.064027057,0.098080339,0,,,,,,,,,,,,,0.086338798,0.068140066,0.104537529,,,,,,,0.213,,,0.169,0.258,0.344,,,0.265,0.427,7.6,0.068569799,0.119,,,0.291,,,0.238,0.347,0.424324522,5795,13657,,,0.153125014,,,0.120696809,0.190430839,0,0,13,0,0.165938541,194.9,27,13855,,,23.80066939,64,2689,18.3294156,30.39292347,,,,,,,,,,,,,23.67864693,17.88659543,30.7486926,,,,,,,0.133784773,1462,10928,0.114720943,0.152848603,7.21761E-05,1,13855,,,13855,0.000285002,4,14035,,,3508.75,0.000356252,5,14035,,,2807,3342,,,,,,,,,3342,0.34,,,,,,,,,0.34,0.35,,,,,,,0.27,,0.35,0.885331961,8601,9715,0.851234726,0.919429195,0.55317041,1675,3028,0.432742962,0.673597857,0.038581093,211,5469,,,0.18,526,,0.107319149,0.252680851,,,,,,,,,,0.09039548,0,0.352017933,0.160377359,0.062562512,0.258192205,4.259112939,104574,24553,3.543760301,4.974465578,0.175944334,531,3018,0.086620782,0.265267886,7.939372068,11,13855,,,133.1479991,91,68345,107.2024632,163.4762381,,,,,,,,,,,,,142.6922337,114.5935807,175.5950721,,,,7.6,,,,,1,,,,,0.091866029,480,5225,0.056855604,0.126876454,0.061585835,0.03414612,0.089025551,0.024688995,0.002281408,0.047096583,0.004784689,0,0.013129179,0.800915751,4373,5460,0.752603883,0.849227618,,,,,,,,,,,,,0.794074935,0.759687336,0.828462534,0.569,,5460,0.479162966,0.658837034,73.94499753,,,72.47216919,75.41782587,,,,,,,,,,,,,73.13488071,71.59639609,74.67336532,,,,549.14802,303,38081,482.5091265,615.7869135,,,,,,,,,,,,,582.5116306,510.772424,654.2508372,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.13,,,0.11,0.15,0.188,,,0.163,0.216,0.106,,,0.089,0.124,42.2,5,11848,,,0.119,1620,,,,0.068569799,913.6240011,13324,,,65.1717396,27,41429,42.94858706,94.82145947,,,,,,,,,,,,,71.69791279,47.24937631,104.3166988,,,,0.352,,,0.333,0.369,0.159960135,1284,8027,0.136130347,0.183789922,0.062745098,192,3060,0.04129829,0.084191907,0.000855005,12,14035,,,1169.583333,0.975,140.4,144,,,,,,,,2.996986844,,,,,,,,,2.992133638,2.898205418,,,,,,,,,2.869864738,0.021364851,,,,,-2656.798,,,,,0.741620354,34162,46064,0.613667565,0.869573144,60242,,,51551.2766,68932.7234,,,,,,,56016,21965.61702,90066.38298,,,,57873,49197.76596,66548.23404,,,,,,,,,,,,,,,,0.227814482,,60242,,,6.195786865,5,807,,,,,,,,,,,,,,,,,,,,,,,,,,21.63397663,17,68345,12.10837249,35.68195446,24.87380203,,,,,,,,,,,,,23.30425111,13.04321244,38.4368182,,,,23.41063721,16,68345,13.38120192,38.01740815,,,,,,,,,,,,,24.04925287,13.46018427,39.66558531,,,,18.99014622,18,94786,11.25476419,30.01261818,,,,,,,,,,,,,20.75837254,12.30272717,32.80717809,,,,,,,,,,,0.597343454,6296,10540,,,0.621,,,,,8.367629803,,,,,0.813832968,4083,5017,0.790741344,0.836924592,0.072914478,347,4759,0.044450192,0.101378764,0.813235001,4080,5017,0.788257642,0.83821236,14035,,,,,0.211043819,2962,14035,,,0.204488778,2870,14035,,,0.019380121,272,14035,,,0.007695048,108,14035,,,0.009975062,140,14035,,,0.000712505,10,14035,,,0.037050232,520,14035,,,0.904738155,12698,14035,,,0.010306083,133,12905,9.4723738E-6,0.020602694,0.495475597,6954,14035,,,1,13657,13657,, -47,163,47163,TN,Sullivan County,2024,1,11968.66582,3575,429692,11334.96614,12602.36551,0,,,,2,,,,2,18564.28435,13946.06176,24222.36414,,,,,2,12135.88924,11471.59219,12800.1863,,,,,2,,0.183,,,0.155,0.216,4.101868984,,,3.347260289,4.959349525,6.040587227,,,5.129491049,6.986097045,0.082811748,860,10385,0.077511111,0.088112384,0,,,,0.153061225,0.081775653,0.224346796,0.141304348,0.090972305,0.19163639,0.08,0.051577586,0.108422414,0.081446541,0.075957829,0.086935253,,,,0.067039106,0.030401644,0.103676568,0.207,,,0.166,0.252,0.362,,,0.312,0.418,6.8,0.111489591,0.136,,,0.296,,,0.248,0.347,0.586464597,92757,158163,,,0.12507297,,,0.10227443,0.149969672,0.217391304,25,115,0.170401834,0.267349387,303.3,483,159265,,,25.2501511,752,29782,23.44542569,27.05487651,,,,,,,15.36491677,7.939276708,26.83941748,25.07836991,16.0681848,37.31462654,25.68800479,23.7670901,27.60891947,,,,29.71428571,19.41035796,43.53831324,0.113887507,13965,122621,0.100781124,0.12699389,0.001211817,193,159265,,,825.2072539,0.000746176,120,160820,,,1340.166667,0.001411516,227,160820,,,708.4581498,2938,,,,,,,3321,,2936,0.45,,,,,,0.62,0.55,,0.45,0.47,,,,,,0.56,0.43,0.16,0.48,0.893274539,103719,116111,0.882498341,0.904050738,0.626479554,22812,36413,0.590003247,0.662955861,0.035119342,2416,68794,,,0.231,6897,,0.175,0.287,,,,,,,0.379858657,0.149859303,0.609858012,0.313243458,0.195906488,0.430580428,0.233754305,0.195627676,0.271880935,4.719913402,111187,23557,4.376486818,5.063339985,0.24608109,7441,30238,0.213833119,0.278329061,12.99720592,207,159265,,,109.960389,870,791194,102.6534966,117.2672814,,,,,,,152.8619147,100.736965,222.4060604,,,,113.085929,105.4062664,120.7655916,,,,7.1,,,,,0,,,,,0.103533648,6900,66645,0.090759538,0.116307759,0.086087683,0.074728725,0.097446641,0.013279316,0.009323937,0.017234694,0.008777853,0.004937746,0.01261796,0.82743134,56008,67689,0.812623838,0.842238843,,,,,,,0.681021898,0.578103796,0.78394,0.728813559,0.538835428,0.918791691,0.855205707,0.841129409,0.869282004,0.259,,67689,0.239098204,0.278901796,73.45020775,,,72.99430945,73.90610606,,,,,,,68.70444882,65.45811511,71.95078253,,,,73.26840549,72.79723918,73.7395718,,,,572.055502,3575,429692,551.8784707,592.2325333,,,,,,,855.8338367,689.9228637,1049.604227,,,,579.368619,558.3874162,600.3498218,,,,65.15633776,87,133525,52.18755554,80.37010192,,,,,,,,,,,,,64.45156804,50.78050499,80.67074829,,,,6.424393518,67,10429,4.978816735,8.158752673,,,,,,,,,,,,,6.036007909,4.583393868,7.802939926,,,,,,,0.132,,,0.113,0.153,0.196,,,0.17,0.222,0.11,,,0.095,0.127,133.6,185,138473,,,0.136,21400,,,,0.111489591,17484.13205,156823,,,33.16763511,158,476368,27.99583138,38.33943883,,,,,,,111.3482416,57.53526129,194.5029697,,,,32.76369692,27.43077813,38.09661571,,,,0.371,,,0.353,0.39,0.139666552,12951,92728,0.121794211,0.157538892,0.036034034,1135,31498,0.02531063,0.046757438,0.002655142,427,160820,,,376.6276347,0.937654172,1550.88,1654,,,0.105583039,747,7075,0.068512921,0.142653156,2.938345994,,,,,,3.774068075,2.748004106,2.495067268,2.9562381,2.815989017,,,,,,3.599451238,2.56889138,2.614970849,2.829128158,0.065600266,,,,,-1726.626933,,,,,0.779065535,40668,52201,0.728325694,0.829805377,54361,,,50364.74468,58357.25532,92500,8175.914894,176824.0851,137917,78311.55319,197522.4468,34923,31232.95745,38613.04255,57768,29122.21277,86413.78723,54688,52061.95745,57314.04255,,,,,,,,,,,55.51690813,,,,,0.338827468,,54361,,,10.97012953,83,7566,,,4.888417348,54,1104652,3.672329564,6.37832425,,,,,,,,,,,,,4.757207655,3.519408412,6.289280807,,,,18.92282572,161,791194,15.82816605,22.0174854,20.34899152,,,,,,,,,,,,,19.85459082,16.55693009,23.15225156,,,,16.55725397,131,791194,13.72189054,19.39261741,,,,,,,,,,,,,16.83391981,13.87092778,19.79691183,,,,15.02735703,166,1104652,12.74131278,17.31340128,,,,,,,,,,,,,15.82499689,13.39555843,18.25443535,,,,,,,,,,,0.589573422,74357,126120,,,0.666,,,,,55.0874555,,,,,0.725416204,49020,67575,0.711611287,0.739221122,0.099076497,6437,64970,0.086296021,0.111856973,0.852208657,57588,67575,0.840589654,0.86382766,160820,,,,,0.188452929,30307,160820,,,0.223896282,36007,160820,,,0.023243378,3738,160820,,,0.004004477,644,160820,,,0.008636985,1389,160820,,,0.000559632,90,160820,,,0.025270489,4064,160820,,,0.923473449,148513,160820,,,0.00224113,339,151263,0.001000244,0.003482016,0.508581022,81790,160820,,,0.265359155,41970,158163,, -47,165,47165,TN,Sumner County,2024,1,8835.20206,2982,549556,8364.988751,9305.41537,0,,,,2,,,,2,10541.31055,8881.40569,12201.21541,,5660.501455,4187.670138,7483.483114,,9030.080053,8496.368673,9563.791432,,,,,2,,0.159,,,0.133,0.186,3.880363569,,,3.021237929,4.79391597,5.689275837,,,4.611464958,6.800744456,0.081990926,1247,15209,0.077630669,0.086351184,0,,,,0.091633466,0.055940977,0.127325955,0.135014837,0.116771419,0.153258255,0.095238095,0.079899643,0.110576547,0.07414593,0.069429426,0.078862434,,,,0.084507042,0.052157298,0.116856787,0.179,,,0.141,0.22,0.349,,,0.282,0.418,8.2,0.072849453,0.091,,,0.249,,,0.203,0.297,0.604770711,118705,196281,,,0.151097197,,,0.120722273,0.183830195,0.295774648,21,71,0.234426663,0.358439747,350,702,200557,,,20.17255748,823,40798,18.79434202,21.55077293,,,,,,,22.33804914,17.96242942,27.45725485,40.64272212,33.6290735,47.65637074,18.05983912,16.57460204,19.54507619,,,,21.64179105,14.49384712,31.08122197,0.105631828,17704,167601,0.093716934,0.117546722,0.000468695,94,200557,,,2133.585106,0.000431673,88,203858,,,2316.568182,0.001084088,221,203858,,,922.4343891,3242,,,,,,,3000,1502,3234,0.41,,,,,,0.3,0.43,0.23,0.41,0.49,,,,,,0.53,0.42,0.31,0.49,0.913471239,124043,135793,0.905265954,0.921676525,0.677521625,34620,51098,0.642674416,0.712368834,0.027388067,2979,108770,,,0.089,4063,,0.053255319,0.124744681,,,,0.077494692,0,0.225223501,0.341208447,0.241726014,0.440690879,0.239509203,0.165600233,0.313418172,0.096013561,0.073588841,0.11843828,4.009596559,145400,36263,3.735003818,4.284189299,0.186605597,8515,45631,0.15639106,0.216820134,7.529031647,151,200557,,,87.67397805,840,958095,81.74490037,93.60305574,,,,,,,72.06215689,54.28707856,93.79880243,38.78675045,23.69195482,59.90299027,95.26502655,88.48307065,102.0469825,,,,7.1,,,,,0,,,,,0.119146457,8180,68655,0.107159158,0.131133756,0.097399736,0.085661851,0.10913762,0.020610298,0.015700425,0.025520171,0.006700168,0.003986583,0.009413752,0.773453511,75858,98077,0.759542027,0.787364996,,,,0.754684838,0.586300076,0.9230696,0.646942501,0.552362124,0.741522878,0.691803279,0.599757473,0.783849084,0.740200864,0.721795839,0.758605888,0.48,,98077,0.456560645,0.503439355,76.23452986,,,75.8411137,76.62794603,,,,82.54114654,78.66281359,86.41947949,74.22825164,72.72846104,75.72804224,83.28294832,79.40639382,87.15950283,76.05572257,75.62375006,76.48769508,,,,427.9086944,2982,549556,412.0403652,443.7770237,,,,,,,542.8655303,476.7837944,608.9472661,237.6159133,176.3631109,313.2669589,432.5539352,415.2040975,449.9037728,,,,47.17507533,93,197138,38.07637428,57.7926544,,,,,,,53.97819281,25.88464156,99.26781843,,,,48.07917037,37.61898973,60.54775801,,,,4.59571067,69,15014,3.575737216,5.816165985,,,,,,,,,,,,,4.966748043,3.780918733,6.406743107,,,,,,,0.116,,,0.099,0.135,0.177,,,0.152,0.204,0.097,,,0.082,0.112,133.3,224,168100,,,0.091,17600,,,,0.072849453,11702.90035,160645,,,35.41022232,208,587401,30.59791829,40.22252635,,,,,,,22.78517721,11.37427837,40.76897594,,,,39.45229474,33.85714574,45.04744374,,,,0.314,,,0.299,0.329,0.129606499,15668,120889,0.114117137,0.14509586,0.045772851,2242,48981,0.032666468,0.058879234,0.001245965,254,203858,,,802.5905512,0.95,2006.4,2112,,,0.047169811,450,9540,0.027152796,0.067186827,3.301400453,,,,,,3.326306946,2.847798524,2.858176555,3.413871934,3.379490781,,,,,,3.637821462,2.817865663,3.087334007,3.488045285,0.07374808,,,,,337.4619,,,,,0.768800773,48549,63149,0.717200745,0.820400801,87453,,,80685.34043,94220.65957,52381,16566.02128,88195.97872,116750,68177.74468,165322.2553,68036,57569.95745,78502.04255,72411,43578.14894,101243.8511,83360,80604.08511,86115.91489,,,,,,,,,,,42.40618946,,,,,0.210615988,,87453,,,8.830215073,101,11438,,,4.641794259,61,1314147,3.550604808,5.962578914,,,,,,,14.79246176,8.279228556,24.39791611,,,,4.094922115,2.98686429,5.479327968,,,,19.36846548,187,958095,16.53452629,22.20240466,19.5178975,,,,,,,,,,,,,22.11109143,18.77616384,25.44601903,,,,16.28231021,156,958095,13.72719906,18.83742136,,,,,,,17.03287345,9.069287752,29.12673233,,,,17.34376473,14.4500221,20.23750736,,,,10.88158326,143,1314147,9.098054399,12.66511213,,,,,,,12.82013353,6.826181169,21.92281877,,,,11.01079058,9.048867891,12.97271326,,,,,,,,,,,0.663134911,92630,139685,,,0.715,,,,,42.80482251,,,,,0.729217678,54501,74739,0.716670637,0.741764718,0.106131044,7762,73136,0.093279176,0.118982911,0.910582159,68056,74739,0.899960281,0.921204038,203858,,,,,0.227109066,46298,203858,,,0.169372799,34528,203858,,,0.083494393,17021,203858,,,0.004311825,879,203858,,,0.016840153,3433,203858,,,0.001128236,230,203858,,,0.062048092,12649,203858,,,0.814954527,166135,203858,,,0.011843383,2196,185420,0.008800738,0.014886028,0.508535353,103669,203858,,,0.252591947,49579,196281,, -47,167,47167,TN,Tipton County,2024,1,10911.53602,1204,173977,9971.212131,11851.85991,0,,,,2,,,,2,14406.11857,11898.68214,16913.55501,,,,,2,10444.37168,9388.600988,11500.14237,,,,,2,,0.188,,,0.16,0.217,4.264844678,,,3.419923941,5.307966777,6.169445007,,,5.110867186,7.429726854,0.096801171,463,4783,0.08842129,0.105181052,0,,,,,,,0.16426513,0.141757091,0.186773169,0.131147541,0.071247206,0.191047876,0.07749713,0.068618547,0.086375713,,,,,,,0.207,,,0.168,0.25,0.414,,,0.344,0.492,8.5,0.015792433,0.102,,,0.285,,,0.239,0.338,0.586550763,35762,60970,,,0.163964615,,,0.130868467,0.202651374,0.27027027,10,37,0.184074024,0.36059786,460.6,281,61004,,,24.14444678,345,14289,21.59665587,26.69223768,,,,,,,44.45964432,36.81688156,52.10240709,,,,18.52031417,15.89375168,21.14687665,,,,34.72222222,19.4337642,57.26902517,0.100057266,5067,50641,0.086950883,0.113163649,0.00027867,17,61004,,,3588.470588,0.00032438,20,61656,,,3082.8,0.000583885,36,61656,,,1712.666667,3410,,,,,,,3727,,3228,0.32,,,,,,0.35,0.31,,0.32,0.43,,,,,,0.61,0.32,0.29,0.44,0.89031836,36747,41274,0.873634192,0.907002529,0.604780927,9538,15771,0.548017568,0.661544286,0.036179083,998,27585,,,0.186,2649,,0.131191489,0.240808511,,,,,,,0.392422663,0.268689754,0.516155571,0.043782837,0,0.116018373,0.096084012,0.061853846,0.130314179,3.824139196,125057,32702,3.442195336,4.206083057,0.302195554,4432,14666,0.255415535,0.348975574,8.03226018,49,61004,,,100.8235003,310,307468,89.5997759,112.0472248,,,,,,,101.4993411,76.87460979,131.5041693,,,,105.8005359,92.57916813,119.0219036,,,,8.4,,,,,0,,,,,0.103583815,2240,21625,0.082149574,0.125018056,0.083430436,0.064701054,0.102159818,0.015907515,0.008361513,0.023453516,0.01132948,0.003781733,0.018877227,0.846676546,23425,27667,0.830317047,0.863036046,,,,,,,0.752204836,0.681928539,0.822481134,,,,0.786190124,0.745421905,0.826958342,0.576,,27667,0.529257765,0.622742236,73.54704602,,,72.83234133,74.26175071,,,,,,,70.95539567,69.12701838,72.78377295,80.85325284,75.44180158,86.2647041,73.74466469,72.94693005,74.54239933,,,,545.1830079,1204,173977,513.3255078,577.0405081,,,,,,,668.0437247,582.5457607,753.5416888,,,,535.3478632,499.6244812,571.0712453,,,,72.1622576,47,65131,53.02211262,95.96050474,,,,,,,153.287616,92.28915824,239.3776004,,,,57.8728512,38.13857361,84.20196006,,,,7.434944238,36,4842,5.207343539,10.29309676,,,,,,,,,,,,,,,,,,,,,,0.128,,,0.109,0.148,0.193,,,0.168,0.219,0.114,,,0.098,0.133,176.5,90,50993,,,0.102,6220,,,,0.015792433,964.6176182,61081,,,38.47800521,71,184521,30.05164131,48.53476792,,,,,,,35.6792436,18.43598581,62.32445827,,,,40.90390453,30.98021784,52.99575274,,,,0.365,,,0.35,0.379,0.121840856,4416,36244,0.103968516,0.139713197,0.046836863,710,15159,0.03253899,0.061134735,0.000875827,54,61656,,,1141.777778,0.91,689.78,758,,,0.104437066,346,3313,0.051109834,0.157764299,3.141415723,,,,,,,2.72688177,3.1433487,3.282126165,3.161741501,,,,,,,2.76855222,3.178613934,3.293053021,0.081012055,,,,,-3410.176,,,,,0.768995929,45340,58960,0.713960292,0.824031567,68778,,,61911.44681,75644.55319,,,,106500,20540,192460,46730,41107.3617,52352.6383,,,,74807,71371.93617,78242.06383,,,,,,,,,,,41.9861085,,,,,0.199540551,,68778,,,7.407407407,26,3510,,,5.805299542,25,430641,3.756883773,8.569767323,,,,,,,17.78545658,9.723474613,29.84097404,,,,3.066920199,1.470707445,5.640175441,,,,18.38797812,58,307468,13.85234159,23.93448103,18.86375168,,,,,,,,,,,,,22.12976627,16.42513907,29.17533798,,,,18.53851458,57,307468,14.0408899,24.01879591,,,,,,,26.71035293,14.94958177,44.05466518,,,,17.63342265,12.65404853,23.92172892,,,,21.5957143,93,430641,17.43052861,26.45620901,,,,,,,24.13740536,14.53229479,37.69354842,,,,21.46844139,16.73570328,27.12408417,,,,,,,,,,,0.591082251,27308,46200,,,0.695,,,,,19.0870728,,,,,0.75833855,16961,22366,0.730469544,0.786207556,0.09818165,2122,21613,0.079107447,0.117255853,0.833050165,18632,22366,0.805827311,0.86027302,61656,,,,,0.234283768,14445,61656,,,0.158865317,9795,61656,,,0.181636824,11199,61656,,,0.005400934,333,61656,,,0.007931102,489,61656,,,0.001362398,84,61656,,,0.031481121,1941,61656,,,0.752416634,46391,61656,,,0.003707554,214,57720,0.000133293,0.007281815,0.505887505,31191,61656,,,0.666622929,40644,60970,, -47,169,47169,TN,Trousdale County,2024,1,10201.59357,197,33099,8259.831276,12143.35587,0,,,,2,,,,2,14603.33566,7289.932546,26129.40135,1,,,,2,10062.17693,7925.08361,12199.27025,,,,,2,,0.194,,,0.167,0.225,4.303501575,,,3.555471486,5.119590749,5.777854439,,,4.663812365,6.95196724,0.079245283,63,795,0.060468067,0.098022499,0,,,,,,,0.212765957,0.095759415,0.3297725,,,,0.067055394,0.048338283,0.085772504,,,,,,,0.229,,,0.191,0.274,0.363,,,0.287,0.444,,,0.097,,,0.295,,,0.246,0.349,0.467671115,5432,11615,,,0.186193825,,,0.148811155,0.227163668,0.090909091,1,11,0.004610648,0.283082638,265.9,32,12035,,,29.0628707,49,1686,21.50087174,38.42265634,,,,,,,,,,,,,29.01785714,20.6345331,39.66836597,,,,,,,0.105885344,833,7867,0.088013003,0.123757684,0.000332364,4,12035,,,3008.75,0.000165139,2,12111,,,6055.5,8.25696E-05,1,12111,,,12111,4650,,,,,,,,,4361,0.28,,,,,,,0.4,,0.27,0.44,,,,,,,0.3,,0.44,0.859514992,7195,8371,0.829429285,0.889600699,0.402622169,1689,4195,0.3177122,0.487532139,0.029874214,171,5724,,,0.171,387,,0.106659575,0.235340426,,,,,,,,,,,,,0.189241737,0.054657442,0.323826032,3.8515677,109943,28545,2.807265739,4.895869662,0.377417669,722,1913,0.19938346,0.555451877,4.154549231,5,12035,,,116.3435895,65,55869,89.79152612,148.2894554,,,,,,,158.9572405,76.22617543,292.3280248,,,,113.7363463,85.1963281,148.7699413,,,,7.4,,,,,0,,,,,0.155882353,530,3400,0.094073584,0.217691122,0.155882353,0.085729732,0.226034974,0.002941177,0,0.018406649,0,0,0.010407479,0.799795082,3903,4880,0.705452289,0.894137875,,,,,,,,,,,,,0.757532281,0.724284385,0.790780178,0.7,,4880,0.556981566,0.843018434,73.66699905,,,72.08795131,75.2460468,,,,,,,,,,,,,73.33409295,71.63831745,75.02986846,,,,541.8511739,197,33099,465.0157841,618.6865636,,,,,,,611.4380974,391.7599262,909.7714221,,,,550.5583441,464.317392,636.7992962,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.131,,,0.115,0.15,0.184,,,0.161,0.209,0.113,,,0.097,0.13,277.9,29,10436,,,0.097,1110,,,,,,7870,,,40.25996434,14,34774,22.01049714,67.5493792,,,,,,,,,,,,,38.05306673,18.99595381,68.08744772,,,,0.363,,,0.346,0.378,0.132108796,748,5662,0.108279008,0.155938583,0.039096438,90,2302,0.024798566,0.05339431,0.000908265,11,12111,,,1101,0.975,80.925,83,,,,,,,,3.068544236,,,,,,,,,3.078806724,2.957015473,,,,,,,,,3.047566981,0.008703468,,,,,-3232.037,,,,,0.955844988,44767,46835,0.684041493,1.227648483,58584,,,49781.2766,67386.7234,,,,,,,,,,142292,50162.46809,234421.5319,61601,48093.08511,75108.91489,,,,,,,,,,,23.59907691,,,,,0.234261915,,58584,,,8.333333333,6,720,,,,,,,,,,,,,,,,,,,,,,,,,,21.93954871,12,55869,11.33648497,38.32397635,21.47881652,,,,,,,,,,,,,22.33147812,10.21137381,42.39210161,,,,,,,,,,,,,,,,,,,,,,,,,,,16.62464326,12,72182,8.590195767,29.03990614,,,,,,,,,,,,,,,,,,,,,,,,,,0.45149633,3998,8855,,,0.502,,,,,2.495897658,,,,,0.76661036,2723,3552,0.712180535,0.821040186,0.152375435,526,3452,0.081157177,0.223593692,0.797297297,2832,3552,0.73444098,0.860153615,12111,,,,,0.190818264,2311,12111,,,0.12897366,1562,12111,,,0.108413839,1313,12111,,,0.005862439,71,12111,,,0.004128478,50,12111,,,0.000330278,4,12111,,,0.037073735,449,12111,,,0.827594749,10023,12111,,,0.000910581,10,10982,0,0.010174658,0.414168937,5016,12111,,,1,11615,11615,, -47,171,47171,TN,Unicoi County,2024,1,13004.22234,463,47907,10972.90259,15035.54208,0,,,,2,,,,2,,,,2,,,,2,13174.722,11058.72505,15290.71895,,,,,2,,0.202,,,0.17,0.235,4.594056736,,,3.678058355,5.678490016,6.13756384,,,4.959124865,7.41108448,0.093067426,98,1053,0.075519402,0.110615451,0,,,,,,,,,,,,,0.100758397,0.081339076,0.120177718,,,,,,,0.235,,,0.189,0.285,0.381,,,0.301,0.469,7.7,0.018870718,0.14,,,0.305,,,0.252,0.364,1,17928,17928,,,0.144652638,,,0.112419883,0.181506507,0.3125,5,16,0.177519792,0.449075671,327.7,58,17698,,,23.00938541,76,3303,18.12877865,28.79967695,,,,,,,,,,30.67484663,14.70978128,56.4121351,22.72727273,17.54042928,28.96777476,,,,,,,0.122805701,1637,13330,0.103741872,0.141869531,0.000452029,8,17698,,,2212.25,0.000339482,6,17674,,,2945.666667,0.000226321,4,17674,,,4418.5,3566,,,,,,,,,3486,0.46,,,,,,,,,0.46,0.43,,,,,,,,,0.43,0.87997592,11694,13289,0.85040592,0.90954592,0.62503206,2437,3899,0.515555648,0.734508471,0.043336638,306,7061,,,0.214,652,,0.134170213,0.293829787,,,,,,,,,,0.241042345,0,0.549884482,0.256361565,0.148562028,0.364161102,5.327682119,100560,18875,4.40124045,6.254123788,0.242658424,785,3235,0.138775246,0.346541601,13.56085433,24,17698,,,131.6737193,117,88856,107.8141696,155.533269,,,,,,,,,,,,,136.4505793,111.1795784,161.7215802,,,,6.5,,,,,0,,,,,0.098243331,755,7685,0.062669749,0.133816914,0.093520374,0.055867006,0.131173743,0.001301236,0,0.007343604,0.005855563,0.000521965,0.011189161,0.814464571,6115,7508,0.784902068,0.844027074,,,,,,,,,,,,,0.764095536,0.707168115,0.821022958,0.369,,7508,0.292105076,0.445894924,71.77646051,,,70.42690091,73.1260201,,,,,,,,,,,,,71.49311885,70.1020086,72.88422911,,,,625.7082833,463,47907,562.886588,688.5299786,,,,,,,,,,,,,641.1592129,575.272649,707.0457768,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.141,,,0.122,0.164,0.2,,,0.174,0.229,0.115,,,0.098,0.136,109.6,17,15508,,,0.14,2500,,,,0.018870718,345.5794537,18313,,,43.12284386,23,53336,27.33618389,64.70543891,,,,,,,,,,,,,44.8659121,28.11722825,67.92753011,,,,0.362,,,0.343,0.38,0.147679325,1505,10191,0.122658048,0.172700602,0.043909774,146,3325,0.028420413,0.059399136,0.001357927,24,17674,,,736.4166667,0.925,170.2,184,,,,,,,,3.144531901,,,,,,,,,3.241690699,2.916644836,,,,,,,,,3.025088642,0.023029003,,,,,-2446.066,,,,,0.709972382,38046,53588,0.629515365,0.790429399,52260,,,44865.61702,59654.38298,,,,,,,,,,,,,50722,42851.02128,58592.97872,,,,,,,,,,,,,,,,0.262610027,,52260,,,10.47904192,7,668,,,,,,,,,,,,,,,,,,,,,,,,,,17.89795993,14,88856,9.529909873,30.60605657,15.75582966,,,,,,,,,,,,,19.46657409,10.36513085,33.28843455,,,,15.75582966,14,88856,8.613858689,26.43560494,,,,,,,,,,,,,17.05632241,9.32485018,28.6176108,,,,16.87628079,21,124435,10.4466838,25.79718788,,,,,,,,,,,,,16.46375807,9.912257844,25.71019763,,,,,,,,,,,0.57647467,8307,14410,,,0.658,,,,,31.74532688,,,,,0.733211393,5612,7654,0.688091153,0.778331633,0.098916175,721,7289,0.057767754,0.140064596,0.80611445,6170,7654,0.76871648,0.84351242,17674,,,,,0.176247595,3115,17674,,,0.241597827,4270,17674,,,0.005714609,101,17674,,,0.006506733,115,17674,,,0.003507978,62,17674,,,0.000396062,7,17674,,,0.063200181,1117,17674,,,0.910093923,16085,17674,,,0.005692154,97,17041,0,0.012342441,0.500339482,8843,17674,,,0.514446676,9223,17928,, -47,173,47173,TN,Union County,2024,1,15546.05361,500,55826,13460.20153,17631.90568,0,,,,2,,,,2,,,,2,,,,2,15870.87339,13710.34252,18031.40427,,,,,2,,0.212,,,0.178,0.249,4.702734382,,,3.70838361,5.752351676,6.052821904,,,4.842611884,7.272219197,0.097114708,138,1421,0.081718356,0.11251106,0,,,,,,,,,,,,,0.095377843,0.079783557,0.110972129,,,,,,,0.248,,,0.202,0.296,0.376,,,0.3,0.455,7.9,0.00723889,0.134,,,0.321,,,0.266,0.38,0.097464903,1930,19802,,,0.146450474,,,0.116754842,0.181582156,0.260869565,6,23,0.151021274,0.378411613,279.4,56,20040,,,39.68682505,147,3704,33.2711293,46.10252081,,,,,,,,,,,,,38.83219955,32.32958849,45.33481061,,,,,,,0.149953546,2421,16145,0.129698227,0.170208865,0.000149701,3,20040,,,6680,0.00029337,6,20452,,,3408.666667,0.000440055,9,20452,,,2272.444444,1954,,,,,,,,,1977,0.37,,,,,,,,,0.37,0.47,,,,,,,,,0.47,0.803683163,11303,14064,0.765684226,0.841682099,0.440144589,2070,4703,0.356522113,0.523767064,0.037800687,297,7857,,,0.208,879,,0.119829787,0.296170213,,,,,,,,,,0.142857143,0,0.394968312,0.218661153,0.125040174,0.312282131,4.517841041,105216,23289,3.722108904,5.313573178,0.161692127,688,4255,0.099872625,0.223511629,3.493013972,7,20040,,,125.844416,125,99329,103.7829172,147.9059149,,,,,,,,,,,,,129.0891345,106.2755669,151.902702,,,,8.8,,,,,0,,,,,0.109845948,820,7465,0.079195034,0.140496862,0.077142857,0.054925672,0.099360042,0.026121902,0.008433287,0.043810518,0.01406564,0,0.030171806,0.808468735,6568,8124,0.746781705,0.870155764,,,,,,,,,,,,,0.714943151,0.64168738,0.788198923,0.55,,8124,0.478213384,0.621786616,70.95839668,,,69.58336287,72.33343048,,,,,,,,,,,,,70.57092662,69.16822581,71.97362743,,,,672.8151113,500,55826,609.4685197,736.161703,,,,,,,,,,,,,687.5642604,622.3796458,752.7488751,,,,96.50957053,18,18651,57.19768796,152.5267292,,,,,,,,,,,,,102.4531846,60.72025033,161.9202019,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.146,,,0.125,0.168,0.206,,,0.179,0.235,0.115,,,0.097,0.134,87.5,15,17136,,,0.134,2630,,,,0.00723889,138.32795,19109,,,71.42975797,43,60199,51.69407002,96.21541522,,,,,,,,,,,,,71.13979838,51.05114755,96.50916934,,,,0.353,,,0.336,0.37,0.180656477,2163,11973,0.154443711,0.206869243,0.063868613,280,4384,0.043613294,0.084123932,0.00068453,14,20452,,,1460.857143,0.925,189.625,205,,,,,,,,2.782328595,,,,,,,,,2.801724826,2.615556593,,,,,,,,,2.658493957,0.029247931,,,,,-2837.316,,,,,0.822550952,37978,46171,0.72642546,0.918676444,51169,,,43910.44681,58427.55319,,,,,,,,,,33988,20945.95745,47030.04255,57055,50320.70213,63789.29787,,,,,,,,,,,,,,,,0.268209267,,51169,,,10.01001001,10,999,,,,,,,,,,,,,,,,,,,,,,,,,,18.5254315,19,99329,10.58888476,30.08414014,19.12835124,,,,,,,,,,,,,19.28503874,11.02306593,31.3176947,,,,15.10132992,15,99329,8.452099722,24.90734717,,,,,,,,,,,,,15.74257738,8.811001052,25.96498732,,,,21.07741954,29,137588,14.11587867,30.27069035,,,,,,,,,,,,,21.94077504,14.69408139,31.51061286,,,,,,,,,,,0.529358097,8123,15345,,,0.58,,,,,0.868173394,,,,,0.805481992,6083,7552,0.781578759,0.829385225,0.083039617,589,7093,0.056816859,0.109262375,0.737023305,5566,7552,0.698281265,0.775765345,20452,,,,,0.210835126,4312,20452,,,0.190983767,3906,20452,,,0.005329552,109,20452,,,0.005769607,118,20452,,,0.002298064,47,20452,,,0.000929005,19,20452,,,0.023469587,480,20452,,,0.951642871,19463,20452,,,0.000636504,12,18853,0,0.005670249,0.501760219,10262,20452,,,1,19802,19802,, -47,175,47175,TN,Van Buren County,2024,1,16769.44817,196,16550,12658.99298,20879.90336,0,,,,2,,,,2,,,,2,,,,2,16760.90608,12575.49175,20946.32041,,,,,2,,0.234,,,0.196,0.272,5.085770453,,,4.079262588,6.227369244,6.440028707,,,5.258168654,7.716394703,0.069716776,32,459,0.046418382,0.093015169,0,,,,,,,,,,,,,0.069196429,0.045695343,0.092697514,,,,,,,0.275,,,0.225,0.327,0.395,,,0.31,0.484,7.4,0.008868504,0.16,,,0.348,,,0.288,0.412,0.101653697,627,6168,,,0.136314185,,,0.107361206,0.169836689,0.142857143,1,7,0.008995928,0.386311364,158.1,10,6324,,,24.03846154,25,1040,15.55642485,35.48551125,,,,,,,,,,,,,24.71678682,15.83651169,36.77661956,,,,,,,0.147096499,689,4684,0.12564969,0.168543307,,0,6324,,,,0.000155545,1,6429,,,6429,0.000155545,1,6429,,,6429,3010,,,,,,,,,3050,0.4,,,,,,,,,0.41,0.35,,,,,,,,,0.35,0.805797733,3697,4588,0.76712941,0.844466057,0.397865854,522,1312,0.26738568,0.528346028,0.042274053,87,2058,,,0.241,315,,0.149255319,0.332744681,,,,,,,,,,,,,0.163636364,0.072578789,0.254693939,5.348404115,101379,18955,3.841835937,6.854972293,0.093775934,113,1205,0.019286551,0.168265316,0,0,6324,,,128.1618887,38,29650,90.69498025,175.9122055,,,,,,,,,,,,,127.4110777,89.23715242,176.390637,,,,7,,,,,1,,,,,0.091517857,205,2240,0.049831862,0.133203852,0.035426009,0.001130026,0.069721992,0.024107143,0.00048126,0.047733025,0.035714286,0.00386913,0.067559442,0.846757538,2050,2421,0.773336352,0.920178724,,,,,,,,,,,,,0.763489209,0.636217974,0.890760443,0.611,,2421,0.469985837,0.752014163,69.07356087,,,66.55101225,71.5961095,,,,,,,,,,,,,68.94916518,66.40187807,71.49645229,,,,759.6539854,196,16550,640.2680235,879.0399473,,,,,,,,,,,,,767.0915828,645.0580378,889.1251279,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.157,,,0.135,0.183,0.214,,,0.185,0.245,0.125,,,0.106,0.144,92.7,5,5396,,,0.16,970,,,,0.008868504,49.20245829,5548,,,,,,,,,,,,,,,,,,,,,,,,,,0.363,,,0.345,0.38,0.175882353,598,3400,0.148478098,0.203286608,0.073279053,99,1351,0.047066287,0.099491819,0.000155545,1,6429,,,6429,,,,,,,,,,,2.608423206,,,,,,,,,2.623388183,2.764858687,,,,,,,,,2.733305173,,,,,,-3113.794,,,,,0.835179929,36484,43684,0.535103879,1.135255978,50260,,,42896.59575,57623.40426,,,,,,,,,,,,,49875,36226.48936,63523.51064,,,,,,,,,,,,,,,,0.273060088,,50260,,,11.62790698,4,344,,,,,,,,,,,,,,,,,,,,,,,,,,34.00613956,10,29650,15.54977243,64.55424562,33.72681282,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.628848224,2921,4645,,,0.586,,,,,4.255886613,,,,,0.803615448,1956,2434,0.751985816,0.855245079,0.045228403,100,2211,0.007035816,0.083420991,0.776910436,1891,2434,0.723194404,0.830626467,6429,,,,,0.207808368,1336,6429,,,0.243894852,1568,6429,,,0.009332711,60,6429,,,0.005288536,34,6429,,,0.003266449,21,6429,,,0.00031109,2,6429,,,0.024731685,159,6429,,,0.943226007,6064,6429,,,0.002226409,13,5839,0,0.018085194,0.496811324,3194,6429,,,1,6168,6168,, -47,177,47177,TN,Warren County,2024,1,11521.18556,857,115251,10336.72889,12705.64224,0,,,,2,,,,2,18777.11225,11305.04818,29322.78674,1,6007.64499,3560.511166,9494.669136,1,11933.91201,10592.98138,13274.84265,,,,,2,,0.222,,,0.189,0.258,4.921894303,,,3.927497854,5.940541148,6.192873043,,,5.003850557,7.427437856,0.080370049,278,3459,0.071309919,0.08943018,0,,,,,,,,,,0.066518847,0.043520695,0.089516999,0.082419526,0.072282039,0.092557013,,,,,,,0.251,,,0.205,0.3,0.364,,,0.291,0.44,7.2,0.048870655,0.148,,,0.32,,,0.265,0.377,0.568456523,23280,40953,,,0.141084383,,,0.110948553,0.175461144,0.23255814,10,43,0.154096868,0.317509118,329.9,137,41523,,,28.5225328,250,8765,24.986843,32.0582226,,,,,,,,,,29.86217458,21.23492534,40.8225757,27.73294204,23.77908363,31.68680045,,,,45.11278196,23.31043274,78.80295131,0.155294048,5239,33736,0.136230218,0.174357878,0.000457578,19,41523,,,2185.421053,0.000309332,13,42026,,,3232.769231,0.000927997,39,42026,,,1077.589744,3033,,,,,,,1922,,3031,0.37,,,,,,,0.55,,0.37,0.42,,,,,,0.67,0.42,0.15,0.42,0.837446086,23688,28286,0.818556119,0.856336054,0.400649542,4071,10161,0.344351124,0.456947961,0.041519327,681,16402,,,0.206,1954,,0.124978723,0.287021277,,,,,,,0.488888889,0,0.983898856,0.437837838,0.285665602,0.590010073,0.216190082,0.16317007,0.269210094,4.158497019,94847,22808,3.648621116,4.668372921,0.29238916,2816,9631,0.224077821,0.360700499,9.633215326,40,41523,,,101.974419,210,205934,88.18208823,115.7667498,,,,,,,,,,,,,109.5566683,94.01927341,125.0940633,,,,7.3,,,,,0,,,,,0.145665485,2260,15515,0.117800275,0.173530695,0.095657895,0.07307121,0.118244579,0.034482759,0.01842687,0.050538647,0.022558814,0.009745285,0.035372343,0.83500775,14545,17419,0.800478848,0.869536652,,,,,,,,,,0.729209622,0.600450001,0.857969243,0.832,0.78703681,0.87696319,0.378,,17419,0.330028679,0.425971321,73.04997581,,,72.19645588,73.90349574,,,,,,,,,,96.57187428,56.16546103,136.9782875,72.58317941,71.64619965,73.52015918,,,,564.4989264,857,115251,525.0427726,603.9550802,,,,,,,788.5806272,539.3885652,1113.240555,236.3590449,137.6878537,378.4337273,579.4927784,536.7577476,622.2278092,,,,75.99686513,32,42107,51.98179949,107.2848982,,,,,,,,,,,,,86.74101611,57.63877527,125.3649193,,,,6.187389511,21,3394,3.830091628,9.458082126,,,,,,,,,,,,,,,,,,,,,,0.149,,,0.127,0.172,0.203,,,0.176,0.231,0.121,,,0.103,0.14,129.2,45,34818,,,0.148,6060,,,,0.048870655,1946.958009,39839,,,24.9186126,31,124405,16.93098829,35.36998152,,,,,,,,,,,,,25.71795971,16.9482975,37.41828113,,,,0.36,,,0.345,0.376,0.194251408,4724,24319,0.168038642,0.220464174,0.056601873,562,9929,0.037538044,0.075665703,0.001213535,51,42026,,,824.0392157,0.91,462.28,508,,,0.101527846,206,2029,0.032436374,0.170619319,2.769089638,,,,,,,2.643822658,2.43089316,2.867290025,2.713993284,,,,,,,2.427164665,2.618921312,2.781981133,0.019893666,,,,,-1653.308,,,,,0.777828092,37790,48584,0.680591885,0.875064298,52520,,,47789.78723,57250.21277,,,,,,,34338,19520.6383,49155.3617,53824,31686.12766,75961.87234,53723,51254.23404,56191.76596,,,,,,,,,,,25.48183874,,,,,0.261309977,,52520,,,8.67768595,21,2420,,,5.577147638,16,286885,3.187821759,9.056938354,,,,,,,,,,,,,5.330752702,2.838401304,9.11574947,,,,19.73099458,42,205934,14.0961118,26.86801445,20.3948838,,,,,,,,,,,,,22.45647041,15.891535,30.82326015,,,,19.42369886,40,205934,13.87657523,26.44956489,,,,,,,,,,,,,21.22301952,14.94296432,29.25313679,,,,20.21716019,58,286885,15.35173734,26.13536774,,,,,,,,,,,,,21.32301081,15.92504437,27.96229179,,,,,,,,,,,0.537846464,16009,29765,,,0.622,,,,,24.53475333,,,,,0.709829274,11309,15932,0.681267293,0.738391256,0.089229952,1343,15051,0.067204389,0.111255514,0.794752699,12662,15932,0.768060165,0.821445233,42026,,,,,0.229334222,9638,42026,,,0.181221149,7616,42026,,,0.033550659,1410,42026,,,0.005282444,222,42026,,,0.009541712,401,42026,,,0.00114215,48,42026,,,0.097249322,4087,42026,,,0.839623091,35286,42026,,,0.014666839,569,38795,0.006778999,0.022554678,0.499024414,20972,42026,,,0.616365102,25242,40953,, -47,179,47179,TN,Washington County,2024,1,10440.73098,2556,362876,9807.227976,11074.23399,0,,,,2,,,,2,14261.49346,10604.39622,17918.59069,,7988.859177,5390.049739,11404.59322,,10527.25165,9851.562442,11202.94085,,,,,2,,0.17,,,0.141,0.202,4.248907563,,,3.383285712,5.211339186,5.730870961,,,4.725306106,6.818518985,0.085701139,745,8693,0.079816652,0.091585626,0,,,,0.09375,0.048584614,0.138915386,0.150134048,0.113883342,0.186384754,0.08419244,0.061632744,0.106752136,0.080715652,0.07447622,0.086955083,,,,0.12,0.077538359,0.162461641,0.201,,,0.155,0.25,0.291,,,0.234,0.352,7.2,0.093332218,0.126,,,0.262,,,0.215,0.312,0.709821731,94407,133001,,,0.148182158,,,0.118761678,0.181217722,0.246153846,16,65,0.182303758,0.31362313,412.7,554,134236,,,16.28007015,492,30221,14.84150415,17.71863615,,,,,,,14.79654747,9.480427161,22.01608976,28.05486284,20.46340947,37.53961378,15.66289008,14.11628348,17.20949669,,,,24.43792766,15.81493827,36.07520205,0.119209681,12610,105780,0.103720319,0.134699042,0.001854942,249,134236,,,539.1004016,0.00060218,82,136172,,,1660.634146,0.003906824,532,136172,,,255.962406,3019,,,,,,,3296,,3002,0.52,,,,,,0.22,0.38,,0.53,0.48,,,,,,0.43,0.3,0.29,0.48,0.910310216,83074,91259,0.899954498,0.920665934,0.71337678,23097,32377,0.665106851,0.761646709,0.032309598,1982,61344,,,0.174,4238,,0.119191489,0.228808511,,,,0.007853403,0,0.232756627,0.264285714,0.065619707,0.462951721,0.411214953,0.297000126,0.525429781,0.142178658,0.107228789,0.177128527,5.198011165,119180,22928,4.709384761,5.68663757,0.233249818,5772,24746,0.187968597,0.27853104,12.66426294,170,134236,,,98.86360666,643,650391,91.22195855,106.5052548,,,,,,,90.63882242,58.65666684,133.800782,,,,105.9371869,97.51639922,114.3579746,,,,7.4,,,,,1,,,,,0.120410219,6575,54605,0.103881,0.136939438,0.105102136,0.090270094,0.119934178,0.014925373,0.008895174,0.020955572,0.009706071,0.006127799,0.013284343,0.827339754,51281,61983,0.807984412,0.846695097,,,,,,,0.753513514,0.643133943,0.863893084,0.758297872,0.639971244,0.8766245,0.843451844,0.820462919,0.866440769,0.227,,61983,0.204299079,0.249700921,74.31984454,,,73.84295673,74.79673236,,,,96.95076247,74.77362715,119.1278978,71.50506591,68.78836317,74.22176864,85.35613814,77.49564898,93.21662729,74.15235219,73.65267885,74.65202552,,,,523.5648524,2556,362876,502.1137279,545.0159768,,,,,,,725.4833834,594.5003727,856.466394,360.6346939,246.6738637,509.1085843,529.3816751,506.6704463,552.0929038,,,,62.77299715,72,114699,49.11600423,79.05220102,,,,,,,,,,,,,60.79740598,46.04736157,78.77009131,,,,8.867667121,78,8796,7.009522875,11.06724989,,,,,,,,,,,,,8.648648649,6.660513317,11.04413124,,,,,,,0.124,,,0.105,0.145,0.183,,,0.158,0.213,0.106,,,0.09,0.123,210.6,246,116810,,,0.126,16630,,,,0.093332218,11477.90287,122979,,,32.99676632,130,393978,27.32451093,38.66902171,,,,,,,59.93407252,28.74071739,110.2208933,,,,33.16166166,27.10067351,39.22264981,,,,0.343,,,0.324,0.361,0.144157326,11626,80648,0.125093496,0.163221155,0.042010786,1114,26517,0.028904403,0.055117169,0.003774638,514,136172,,,264.92607,0.917702479,1110.42,1210,,,0.048497435,397,8186,0.021381821,0.075613049,3.328821985,,,,,,,3.087496973,,3.390441196,3.225964448,,,,,,,2.849264657,,3.284072856,0.082468787,,,,,-168.444815,,,,,0.851295517,44092,51794,0.773771437,0.928819597,64270,,,60647.87234,67892.12766,,,,106026,56211.02128,155840.9787,39369,30974.95745,47763.04255,36667,31960.61702,41373.38298,61364,58235.14894,64492.85106,,,,,,,,,,,52.2647089,,,,,0.286587833,,64270,,,10.70192005,68,6354,,,4.534731063,41,904133,3.254201303,6.151874732,,,,,,,,,,,,,3.875852688,2.633453857,5.50146351,,,,20.53579498,135,650391,16.92282554,24.14876442,20.75674479,,,,,,,,,,,,,21.76448984,17.79373604,25.73524365,,,,15.83662751,103,650391,12.77818613,18.89506888,,,,,,,,,,,,,17.07540184,13.86263659,20.80944554,,,,10.94971647,99,904133,8.899389233,13.33088691,,,,,,,,,,,,,11.75258557,9.497285453,14.3821883,,,,,,,,,,,0.594597531,60203,101250,,,0.689,,,,,64.39947363,,,,,0.642819881,35735,55591,0.626288087,0.659351675,0.116462166,6198,53219,0.09962032,0.133304012,0.860445036,47833,55591,0.847407601,0.873482471,136172,,,,,0.182320888,24827,136172,,,0.192682784,26238,136172,,,0.041535705,5656,136172,,,0.004509003,614,136172,,,0.017066651,2324,136172,,,0.000660929,90,136172,,,0.041910231,5707,136172,,,0.87656787,119364,136172,,,0.010215807,1298,127058,0.00691738,0.013514234,0.507350997,69087,136172,,,0.257599567,34261,133001,, -47,181,47181,TN,Wayne County,2024,1,10231.53566,369,45460,8374.061457,12089.00987,0,,,,2,,,,2,,,,2,,,,2,10643.27724,8678.231032,12608.32346,,,,,2,,0.222,,,0.19,0.259,4.759359455,,,3.858058134,5.889403791,6.045460651,,,4.929779584,7.414585309,0.088016967,83,943,0.069933704,0.10610023,0,,,,,,,,,,,,,0.089285714,0.070614003,0.107957426,,,,,,,0.256,,,0.211,0.307,0.37,,,0.298,0.463,7.1,0.08948168,0.135,,,0.325,,,0.272,0.387,0.470921636,7644,16232,,,0.154969985,,,0.124490791,0.196667002,0.181818182,4,22,0.079048597,0.307478905,316.9,52,16409,,,28.24858757,75,2655,22.2193061,35.40984913,,,,,,,,,,,,,30.22875817,23.7360769,37.94943771,,,,,,,0.129529961,1444,11148,0.110466131,0.14859379,0.000182827,3,16409,,,5469.666667,6.13196E-05,1,16308,,,16308,0.000858474,14,16308,,,1164.857143,3752,,,,,,,,,3756,0.4,,,,,,,,,0.4,0.39,,,,,,,0.33,,0.39,0.822816925,10054,12219,0.786945035,0.858688814,0.5260631,2301,4374,0.44438749,0.607738711,0.045160296,293,6488,,,0.24,616,,0.148255319,0.331744681,,,,,,,,,,0.203389831,0,0.871759187,0.158460902,0.094167404,0.2227544,4.837615989,94885,19614,3.340333144,6.334898834,0.26483705,772,2915,0.151192507,0.378481593,7.313059906,12,16409,,,100.3057513,83,82747,79.89297098,124.3440702,,,,,,,,,,,,,108.0409475,85.66975203,134.4663114,,,,7.2,,,,,1,,,,,0.102877071,590,5735,0.069072091,0.13668205,0.069402319,0.043152878,0.095651761,0.029642546,0.010675228,0.048609864,0.013949433,0.000382608,0.027516258,0.863688059,5316,6155,0.823859802,0.903516315,,,,,,,,,,,,,0.822904368,0.780859064,0.864949673,0.479,,6155,0.38569033,0.57230967,74.16274952,,,72.71150071,75.61399832,,,,,,,,,,,,,73.74885254,72.2498363,75.24786878,,,,550.2334446,369,45460,491.3318059,609.1350833,,,,,,,,,,,,,566.9650367,504.3444909,629.5855825,,,,107.3581634,13,12109,57.16370048,183.585729,,,,,,,,,,,,,108.3815029,56.00230409,189.3206742,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.147,,,0.128,0.171,0.198,,,0.173,0.227,0.123,,,0.107,0.145,150.6,22,14606,,,0.135,2220,,,,0.08948168,1523.067681,17021,,,,,,,,,,,,,,,,,,,,,,,,,,0.359,,,0.343,0.375,0.156709452,1343,8570,0.131688175,0.181730728,0.041343669,112,2709,0.028237286,0.054450052,0.000981114,16,16308,,,1019.25,0.975,155.025,159,,,,,,,,2.820956518,,,,,,,,,2.834343375,2.905040829,,,,,,,,,2.89522404,0.047431985,,,,,-700.291,,,,,0.885369804,39360,44456,0.777993998,0.99274561,48321,,,41380.57447,55261.42553,,,,,,,,,,,,,48387,43594.82979,53179.17021,,,,,,,,,,,54.29713459,,,,,0.284017301,,48321,,,7.832898172,6,766,,,,,,,,,,,,,,,,,,,,,,,,,,13.55944258,13,82747,7.006361844,23.6856174,15.71053936,,,,,,,,,,,,,15.48774449,8.002743579,27.05397277,,,,16.91904238,14,82747,9.24979791,28.38727824,,,,,,,,,,,,,18.90716582,10.33672349,31.72301154,,,,26.67630456,31,116208,18.1252547,37.86488495,,,,,,,,,,,,,29.75561997,20.21750012,42.23572738,,,,,,,,,,,0.486966046,6669,13695,,,0.551,,,,,2.822908788,,,,,0.802576602,4610,5744,0.761161352,0.843991852,0.081753995,440,5382,0.051629598,0.111878392,0.805884401,4629,5744,0.758938392,0.852830411,16308,,,,,0.163478048,2666,16308,,,0.194873682,3178,16308,,,0.068923228,1124,16308,,,0.004844248,79,16308,,,0.003188619,52,16308,,,0.000245278,4,16308,,,0.026796664,437,16308,,,0.885454991,14440,16308,,,0.004114697,64,15554,0,0.010747221,0.438680402,7154,16308,,,1,16232,16232,, -47,183,47183,TN,Weakley County,2024,1,10842.3469,705,91519,9549.031923,12135.66187,0,,,,2,,,,2,18974.18737,13140.17633,26514.52502,,,,,2,10511.47657,9120.290807,11902.66233,,,,,2,,0.206,,,0.174,0.239,4.549537013,,,3.641092491,5.573295865,6.381118393,,,5.179914555,7.64532813,0.067449957,155,2298,0.05719561,0.077704303,0,,,,,,,0.129533679,0.082159166,0.176908191,,,,0.062564103,0.051815001,0.073313204,,,,,,,0.236,,,0.19,0.283,0.373,,,0.298,0.454,7,0.080797571,0.14,,,0.313,,,0.258,0.371,0.06634855,2183,32902,,,0.150015497,,,0.118670061,0.185601227,0.142857143,4,28,0.058576657,0.253079972,547.9,181,33036,,,15.0845814,140,9281,12.58581697,17.58334584,,,,,,,12.08178439,6.433041349,20.66021926,,,,15.48111571,12.66384011,18.2983913,,,,,,,0.120560418,3072,25481,0.102688077,0.138432758,0.0006054,20,33036,,,1651.8,0.000423434,14,33063,,,2361.642857,0.000453679,15,33063,,,2204.2,2686,,,,,,,3315,,2611,0.37,,,,,,,0.36,,0.38,0.31,,,,,,,0.19,,0.32,0.875201212,18486,21122,0.858241399,0.892161025,0.530617938,3804,7169,0.462431682,0.598804195,0.034654113,530,15294,,,0.229,1381,,0.157510638,0.300489362,,,,,,,0.595387841,0.488430433,0.702345248,0.266081871,0.037810632,0.494353111,0.221157766,0.153964551,0.288350981,4.477728713,93289,20834,3.823810043,5.131647383,0.261753701,1609,6147,0.203092874,0.320414528,13.62150381,45,33036,,,93.12105738,155,166450,78.46091727,107.7811975,,,,,,,94.5402978,48.85035144,165.1428744,,,,97.18847622,81.0891824,113.28777,,,,7.9,,,,,0,,,,,0.089937339,1220,13565,0.071607739,0.108266939,0.077658761,0.059469684,0.095847837,0.010615555,0.003964138,0.017266972,0.007371913,0.00177178,0.012972046,0.805795446,11290,14011,0.773314814,0.838276079,,,,,,,0.714285714,0.573295217,0.855276212,,,,0.828161823,0.804022813,0.852300832,0.261,,14011,0.2226681,0.2993319,74.01348213,,,73.02681438,75.00014989,,,,,,,71.90645943,65.57080523,78.24211364,,,,74.04465249,72.99634398,75.092961,,,,581.323802,705,91519,535.9046235,626.7429805,,,,,,,906.9692727,686.9296701,1175.083892,,,,569.3783575,522.0998408,616.6568742,,,,57.98782256,18,31041,34.36725872,91.6457597,,,,,,,,,,,,,63.48198699,36.28544062,103.0907697,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.141,,,0.121,0.162,0.201,,,0.175,0.23,0.12,,,0.103,0.139,80.3,23,28636,,,0.14,4600,,,,0.080797571,2829.611735,35021,,,20.06058296,20,99698,12.25352523,30.98194337,,,,,,,,,,,,,19.76491379,11.51379064,31.64554164,,,,0.37,,,0.352,0.386,0.146801347,2834,19305,0.124163049,0.169439645,0.040503222,264,6518,0.027396839,0.053609605,0.001119076,37,33063,,,893.5945946,0.93,241.8,260,,,,,,,,3.198818902,,,,,,,3.02022228,,3.237365513,3.10010795,,,,,,,2.982723815,,3.124571443,0.065462925,,,,,-1175.85,,,,,0.834104382,35879,43015,0.715371153,0.952837611,49815,,,44696.3617,54933.6383,76818,66726.08511,86909.91489,61923,8398.914894,115447.0851,36475,28825.6383,44124.3617,65313,5388.234043,125237.766,48292,45272.76596,51311.23404,,,,,,,,,,,38.07409702,,,,,0.275499348,,49815,,,15.06591337,24,1593,,,6.412530941,15,233917,3.589044889,10.5764946,,,,,,,,,,,,,4.932425767,2.365289877,9.070906601,,,,14.47892641,26,166450,9.276921352,21.5434948,15.6203064,,,,,,,,,,,,,14.70603088,9.216191255,22.26510748,,,,19.82577351,33,166450,13.64715024,27.84275715,,,,,,,,,,,,,20.13189865,13.48264848,28.91276462,,,,19.66509488,46,233917,14.39732102,26.23048077,,,,,,,,,,,,,22.19591595,16.1898534,29.69988187,,,,,,,,,,,0.514998125,13735,26670,,,0.636,,,,,15.30295458,,,,,0.651915607,8559,13129,0.628823244,0.67500797,0.087656819,1083,12355,0.063142615,0.112171024,0.783913474,10292,13129,0.758580874,0.809246074,33063,,,,,0.18606902,6152,33063,,,0.185464114,6132,33063,,,0.080543205,2663,33063,,,0.005413907,179,33063,,,0.013519644,447,33063,,,0.000635151,21,33063,,,0.03242295,1072,33063,,,0.852947403,28201,33063,,,0.004555736,143,31389,0,0.009120739,0.507183256,16769,33063,,,0.6743663,22188,32902,, -47,185,47185,TN,White County,2024,1,11276.95192,605,75614,9811.596343,12742.3075,0,,,,2,,,,2,11285.81673,5831.54619,19714.0506,1,,,,2,11439.55389,9914.600055,12964.50772,,,,,2,,0.214,,,0.178,0.252,4.666116682,,,3.689441811,5.64391103,6.130255367,,,4.950522356,7.305870924,0.089509143,186,2078,0.077234616,0.101783671,0,,,,,,,,,,,,,0.08877551,0.076183725,0.101367296,,,,,,,0.254,,,0.205,0.305,0.361,,,0.287,0.442,6.5,0.164503587,0.126,,,0.319,,,0.264,0.378,0.336441081,9202,27351,,,0.144303624,,,0.113583771,0.179285274,0.1875,3,16,0.067648579,0.337423465,282.1,78,27650,,,31.06617647,169,5440,26.38235294,35.75,,,,,,,,,,,,,33.02938197,27.95874268,38.10002125,,,,,,,0.138343375,3008,21743,0.119279545,0.157407205,0.000361664,10,27650,,,2765,0.000356328,10,28064,,,2806.4,0.000427594,12,28064,,,2338.666667,2386,,,,,,,,,2378,0.45,,,,,,,0.5,,0.46,0.41,,,,,,,0.36,,0.41,0.817582531,15875,19417,0.785611413,0.849553649,0.503475977,3259,6473,0.428573161,0.578378793,0.03493014,420,12024,,,0.217,1274,,0.145510638,0.288489362,,,,,,,0.153846154,0,0.552314618,0.119230769,0,0.336739434,0.214994277,0.153436152,0.276552402,4.13700171,91949,22226,3.367631277,4.906372143,0.223701731,1344,6008,0.151405985,0.295997477,7.594936709,21,27650,,,109.8402191,150,136562,92.26212308,127.4183151,,,,,,,,,,,,,115.6879102,96.98602531,134.3897951,,,,7,,,,,0,,,,,0.086105675,880,10220,0.058637424,0.113573926,0.072142504,0.045671491,0.098613517,0.014187867,0.004971675,0.023404059,0.000978474,0,0.005018549,0.856500225,9520,11115,0.824248647,0.888751803,,,,,,,,,,,,,0.809727419,0.776277391,0.843177446,0.35,,11115,0.29227729,0.40772271,73.29923361,,,72.23065183,74.36781539,,,,,,,,,,,,,73.13827943,72.04240807,74.23415078,,,,557.6438909,605,75614,510.1807684,605.1070134,,,,,,,930.6663619,568.4751919,1437.338714,,,,563.8026784,514.45374,613.1516169,,,,61.4462921,16,26039,35.1218651,99.78492875,,,,,,,,,,,,,60.1245437,32.87064753,100.878768,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.148,,,0.126,0.172,0.205,,,0.177,0.235,0.116,,,0.099,0.134,123.7,29,23449,,,0.126,3420,,,,0.164503587,4250.937201,25841,,,48.36642403,40,82702,34.55368243,65.86134188,,,,,,,,,,,,,49.45212254,34.99526515,67.87690185,,,,0.362,,,0.344,0.379,0.17142316,2715,15838,0.146401883,0.196444436,0.050765512,315,6205,0.034084661,0.067446363,0.000641391,18,28064,,,1559.111111,0.92,244.72,266,,,0.198113208,231,1166,0.095150886,0.301075529,2.885332052,,,,,,,,,2.90685523,2.900653297,,,,,,,,,2.930868363,0.018895515,,,,,-2597.074,,,,,0.757170512,34028,44941,0.633201516,0.881139509,49411,,,42494.40426,56327.59575,,,,,,,31786,13060.55319,50511.44681,40854,11700.6383,70007.3617,49123,43813.7234,54432.2766,,,,,,,,,,,72.45401874,,,,,0.277751918,,49411,,,5.674653216,9,1586,,,6.324577307,12,189736,3.268001386,11.04776376,,,,,,,,,,,,,6.219327408,3.104665834,11.12809469,,,,20.44366196,31,136562,13.5846649,29.54678359,22.70031195,,,,,,,,,,,,,21.8926021,14.5474751,31.64090551,,,,20.50350756,28,136562,13.62443187,29.63327715,,,,,,,,,,,,,21.24879984,14.00309299,30.91588816,,,,20.55487625,39,189736,14.61652638,28.09919249,,,,,,,,,,,,,22.05034263,15.67994917,30.14354426,,,,,,,,,,,0.565755054,11895,21025,,,0.608,,,,,15.07243872,,,,,0.759051885,8134,10716,0.728639034,0.789464736,0.110304932,1125,10199,0.078314446,0.142295418,0.816162747,8746,10716,0.792416869,0.839908625,28064,,,,,0.213511973,5992,28064,,,0.207347491,5819,28064,,,0.017887685,502,28064,,,0.005131129,144,28064,,,0.005665621,159,28064,,,0.000855188,24,28064,,,0.031927024,896,28064,,,0.92406642,25933,28064,,,0.00119983,31,25837,0,0.005832325,0.505166762,14177,28064,,,0.791927169,21660,27351,, -47,187,47187,TN,Williamson County,2024,1,4569.277216,1867,700493,4244.065203,4894.489229,0,,,,2,2006.104368,1168.629722,3211.967428,1,6874.904142,5125.589487,8624.218798,,4108.918409,2862.012223,5714.51084,,4691.432086,4325.544509,5057.319664,,,,,2,,0.106,,,0.086,0.128,2.847136967,,,2.190793877,3.596947853,4.525600663,,,3.670848496,5.482548884,0.063494028,1026,16159,0.059734178,0.067253878,0,,,,0.096885813,0.079833685,0.113937941,0.121376812,0.094133762,0.148619862,0.079322638,0.063509723,0.095135554,0.057081644,0.053104052,0.061059235,,,,,,,0.112,,,0.084,0.148,0.276,,,0.221,0.339,9.2,0.049727813,0.055,,,0.185,,,0.148,0.229,0.812982892,201397,247726,,,0.170045547,,,0.137725944,0.208617006,0.247058824,21,85,0.191462326,0.305419269,183,468,255735,,,3.131737564,199,63543,2.696611704,3.566863424,,,,,,,7.168458781,4.248482987,11.32925538,11.26070991,8.244254935,15.02020899,2.236791361,1.829736868,2.643845855,,,,7.539041465,4.121664123,12.64923055,0.058087192,12891,221925,0.050938255,0.065236128,0.001380335,353,255735,,,724.4617564,0.000820505,214,260815,,,1218.761682,0.002419339,631,260815,,,413.3359746,1823,,,,,,,3815,,1691,0.5,,,,,,0.39,0.52,0.28,0.5,0.57,,,,,,0.61,0.46,0.35,0.57,0.960348613,156581,163046,0.955737784,0.964959443,0.865221826,50901,58830,0.829921955,0.900521696,0.024001738,3315,138115,,,0.036,2380,,0.022893617,0.049106383,,,,0.034276811,0,0.078856867,0.155620805,0.039075719,0.272165892,0.101652134,0.040175875,0.163128393,0.026148478,0.017796092,0.034500865,4.043096717,238195,58914,3.788806407,4.297387027,0.110892718,7278,65631,0.091973494,0.129811943,12.55205584,321,255735,,,59.12411136,708,1197481,54.76895182,63.4792709,,,,,,,64.1062999,44.12782713,90.02907953,21.80037564,11.60778188,37.27930628,64.99769572,60.0123252,69.98306624,,,,8.4,,,,,1,,,,,0.098284798,7965,81040,0.086415422,0.110154173,0.088146123,0.07641106,0.099881186,0.009624877,0.006004167,0.013245587,0.004195459,0.002372194,0.006018724,0.706010764,88939,125974,0.68828461,0.723736919,,,,0.570571086,0.505517994,0.635624178,0.797843156,0.727572171,0.86811414,0.7368176,0.666751886,0.806883314,0.736543385,0.720669908,0.752416861,0.458,,125974,0.431868598,0.484131402,81.25680793,,,80.90221997,81.61139589,,,,89.34240397,85.42173412,93.26307383,77.31862442,75.66704116,78.97020769,85.91365343,82.13910706,89.68819979,81.1029364,80.72212077,81.48375204,,,,224.4845511,1867,700493,214.0186433,234.950459,,,,99.47858798,63.73780837,148.0162536,350.2598676,289.0327115,411.4870236,189.2563651,137.5139646,254.0678365,227.6338215,216.2074751,239.0601679,,,,28.92191788,82,283522,23.00245959,35.899726,,,,,,,,,,,,,28.5340521,22.021979,36.36899175,,,,3.283767038,53,16140,2.459766848,4.295248137,,,,,,,,,,,,,3.200243828,2.306454262,4.325799968,,,,,,,0.084,,,0.07,0.099,0.139,,,0.119,0.163,0.078,,,0.065,0.092,89.5,189,211146,,,0.055,13320,,,,0.049727813,9109.240147,183182,,,14.4693338,107,739495,11.72767934,17.21098826,,,,,,,,,,,,,15.87054815,12.88447813,19.34111481,,,,0.299,,,0.283,0.318,0.070451396,10830,153723,0.060919481,0.079983311,0.032551013,2337,71795,0.024210588,0.040891439,0.001545157,403,260815,,,647.1836228,0.96,3046.08,3173,,,0.020368322,313,15367,0.008846227,0.031890417,3.811372624,,,,,,,3.186942472,3.393425461,3.873169479,3.820888523,,,,,,,3.04726017,3.378173648,3.873684713,0.064401171,,,,,5825.6725,,,,,0.631264234,65137,103185,0.587950773,0.674577695,133486,,,123494.1702,143477.8298,83906,79452.21277,88359.78723,144876,119566.383,170185.617,88108,71599.91489,104616.0851,83349,71226.78723,95471.21277,129065,122594.0213,135535.9787,,,,,,,,,,,42.7648798,,,,,0.137984508,,133486,,,10.16069756,141,13877,,,1.78104234,29,1628260,1.192792007,2.557873892,,,,,,,,,,,,,1.530488423,0.947396456,2.339514131,,,,12.19010076,150,1197481,10.17803976,14.20216176,12.52629478,,,,,,,18.77788462,8.586444577,35.64627422,,,,12.74391544,10.4879398,14.99989109,,,,9.352966769,112,1197481,7.620773083,11.08516046,,,,,,,,,,,,,9.854168263,8.008981712,11.99709628,,,,7.676906637,125,1628260,6.331085565,9.022727708,,,,,,,14.22171656,6.819865884,26.15424311,,,,7.725322514,6.254637192,9.196007836,,,,,,,,,,,0.862114729,139016,161250,,,0.771,,,,,50.60746944,,,,,0.799315488,70530,88238,0.787123211,0.811507765,0.098477449,8570,87025,0.086210541,0.110744357,0.955234706,84288,88238,0.946943995,0.963525417,260815,,,,,0.255200046,66560,260815,,,0.149565784,39009,260815,,,0.040499971,10563,260815,,,0.002676226,698,260815,,,0.055280563,14418,260815,,,0.000598125,156,260815,,,0.053091272,13847,260815,,,0.831696797,216919,260815,,,0.007690868,1808,235084,,,0.504637387,131617,260815,,,0.186419673,46181,247726,, -47,189,47189,TN,Wilson County,2024,1,8273.284491,2157,417476,7753.105642,8793.463339,0,,,,2,,,,2,12640.30158,10310.93871,14969.66446,,3740.274353,2371.013095,5612.247987,1,8355.165779,7777.032607,8933.298951,,,,,2,,0.148,,,0.123,0.175,3.725982628,,,2.947358151,4.643750273,5.342933952,,,4.329512651,6.440465215,0.07734186,895,11572,0.072474655,0.082209064,0,,,,0.085574572,0.05846386,0.112685285,0.162018592,0.13570027,0.188336915,0.066140178,0.050835476,0.08144488,0.071098901,0.065818687,0.076379116,,,,0.086065574,0.050874428,0.12125672,0.168,,,0.132,0.21,0.312,,,0.249,0.384,8.5,0.058100666,0.085,,,0.246,,,0.202,0.297,0.621557227,91827,147737,,,0.162918068,,,0.129970309,0.199428821,0.18627451,19,102,0.137542441,0.239626912,308.7,469,151917,,,14.25948994,435,30506,12.91945712,15.59952275,,,,,,,15.45166403,10.98764362,21.12293339,38.48127245,30.26796188,48.23660823,11.8783395,10.50883683,13.24784217,,,,26.41165756,17.68830158,37.93154594,0.096284963,12272,127455,0.08437007,0.108199857,0.000329127,50,151917,,,3038.34,0.000409952,65,158555,,,2439.307692,0.000800984,127,158555,,,1248.464567,3126,,,,,,,4187,,3108,0.42,,,,,,0.44,0.44,0.25,0.42,0.51,,,,,,0.54,0.43,0.23,0.51,0.930723009,95414,102516,0.921317754,0.940128264,0.721489063,27773,38494,0.679522532,0.763455594,0.026338915,2158,81932,,,0.087,3115,,0.059595745,0.114404255,,,,0.062184874,0,0.241296544,0.15406051,0.071793233,0.236327786,0.21637216,0.14145313,0.291291191,0.074032551,0.052462376,0.095602727,3.800649537,159156,41876,3.549647022,4.051652052,0.188257357,6525,34660,0.151378539,0.225136176,9.215558496,140,151917,,,98.78479462,713,721771,91.53373614,106.0358531,,,,,,,112.3873745,85.55447669,144.9715248,32.21649485,16.08235815,57.64420839,104.8657027,96.7156393,113.015766,,,,8.4,,,,,1,,,,,0.104479065,5365,51350,0.091601915,0.117356215,0.087724463,0.075164781,0.100284144,0.01480039,0.009912436,0.019688343,0.004771178,0.002154671,0.007387685,0.780303854,57421,73588,0.761071291,0.799536417,,,,0.616615854,0.454604856,0.778626852,0.789249426,0.711233576,0.867265277,0.712192425,0.617669325,0.806715525,0.758575737,0.731690374,0.7854611,0.541,,73588,0.506694209,0.575305791,76.58235237,,,76.13883096,77.02587377,,,,84.59101154,79.2234997,89.95852339,72.50350056,70.6957442,74.31125692,82.05133599,78.02906914,86.07360284,76.52844663,76.05002148,77.00687177,,,,405.0304063,2157,417476,387.4079633,422.6528493,,,,,,,601.5349155,519.4394593,683.6303718,196.6580697,124.6643467,295.0836628,406.7187145,387.6223379,425.8150911,,,,42.00980229,63,149965,32.28148554,53.74878624,,,,,,,93.1729629,46.51160738,166.7121677,,,,37.66220427,27.36541528,50.55975133,,,,4.380475595,49,11186,3.24069996,5.791221044,,,,,,,,,,,,,3.460593883,2.351305646,4.912036783,,,,,,,0.108,,,0.092,0.127,0.166,,,0.142,0.191,0.095,,,0.08,0.11,165.1,210,127213,,,0.085,12300,,,,0.058100666,6623.069237,113993,,,45.64834137,203,444704,39.36872584,51.92795689,,,,,,,72.38290557,46.37709339,107.7000259,,,,47.41596463,40.41070352,54.42122575,,,,0.327,,,0.308,0.346,0.118206448,10864,91907,0.102717086,0.13369581,0.042015454,1566,37272,0.03010056,0.053930348,0.001097411,174,158555,,,911.2356322,0.96,1539.84,1604,,,0.056686627,426,7515,0.031266144,0.082107109,3.309177766,,,,,,3.704451916,2.863993095,,3.385738988,3.268955362,,,,,,3.666733092,2.802399179,,3.329853163,0.045557524,,,,,530.56395,,,,,0.782808673,52420,66964,0.734156541,0.831460806,88462,,,81290.42553,95633.57447,,,,129559,112115.5957,147002.4043,92567,49559,135575,73237,59599.21277,86874.78723,89557,85715.6383,93398.3617,,,,,,,,,,,31.93142413,,,,,0.208213696,,88462,,,9.782228951,84,8587,,,3.762215762,37,983463,2.648947095,5.185718847,,,,,,,14.26370742,6.840002134,26.2314658,,,,3.249359455,2.141348356,4.727647409,,,,19.08951408,143,721771,15.88522675,22.29380141,19.81237816,,,,,,,,,,,,,20.23827588,16.63075891,23.84579285,,,,14.4090023,104,721771,11.63968122,17.17832339,,,,,,,19.04870755,9.134595684,35.03125139,,,,15.0043694,12.08058228,18.42204075,,,,12.40514386,122,983463,10.20385031,14.60643742,,,,,,,,,,,,,13.35847776,10.87333379,15.84362173,,,,,,,,,,,0.713339731,74330,104200,,,0.723,,,,,43.32375332,,,,,0.770572524,42410,55037,0.753172317,0.787972731,0.09258293,4968,53660,0.080068003,0.105097856,0.898904373,49473,55037,0.886282751,0.911525996,158555,,,,,0.229958059,36461,158555,,,0.161205891,25560,158555,,,0.075973637,12046,158555,,,0.00495727,786,158555,,,0.024899877,3948,158555,,,0.001009114,160,158555,,,0.056825707,9010,158555,,,0.819463278,129930,158555,,,0.012636768,1774,140384,0.009051045,0.01622249,0.505263158,80112,158555,,,0.352382951,52060,147737,, -48,000,48000,TX,Texas,2024,,7874.689516,373903,83394198,7839.455499,7909.923533,0,4453.456595,3983.442047,4923.471144,,3177.698535,3076.38306,3279.01401,,11687.5441,11563.20923,11811.87898,,7261.658705,7209.285662,7314.031748,,8098.552917,8040.249224,8156.856611,,10843.08415,9518.866521,12167.30178,,,0.179,,,0.167,0.191,3.293681148,,,3.06594898,3.521413316,4.596432535,,,4.30960212,4.883262949,0.084796785,226084,2666186,0.08446239,0.085131179,0,0.071249478,0.063961449,0.078537507,0.093099711,0.091578828,0.094620593,0.138269,0.137096091,0.139441909,0.079877478,0.079406148,0.080348809,0.070222875,0.069688163,0.070757586,0.081534772,0.072779502,0.090290043,0.085590466,0.082539732,0.088641199,0.133,,,0.122,0.146,0.362,,,0.345,0.38,5.9,0.083498174,0.137,,,0.249,,,0.235,0.264,0.818010359,23841325,29145505,,,0.182503795,,,0.168770369,0.197089782,0.251743195,4874,19361,0.248208871,0.25529008,506.8,149636,29527941,,,24.31557377,170953,7030597,24.2003075,24.43084004,12.65435249,11.0793902,14.22931477,2.364113759,2.189599916,2.538627603,25.51969526,25.18365162,25.8557389,32.96068202,32.76872483,33.15263922,14.10500223,13.94990884,14.26009562,28.40998273,24.27105586,32.54890961,16.45858882,15.80765853,17.10951912,0.203190189,5082397,25013004,0.20080721,0.205573167,0.000603429,17818,29527941,,,1657.197272,0.000629113,18892,30029572,,,1589.539064,0.001567122,47060,30029572,,,638.1124522,2933,,,,,4365,1754,4806,3070,2682,0.39,,,,,0.36,0.35,0.37,0.29,0.41,0.43,,,,,0.41,0.49,0.32,0.35,0.45,0.852342992,16118614,18910948,0.850982958,0.853703026,0.642220733,5311484,8270496,0.639093735,0.64534773,0.038856141,569731,14662573,,,0.192,1413051,,0.186042553,0.197957447,0.193378192,0.169540365,0.21721602,0.090185181,0.083999332,0.09637103,0.265436632,0.258749967,0.272123297,0.258575097,0.254983557,0.262166638,0.085112462,0.082652568,0.087572356,4.807555309,147116,30601,4.770825389,4.844285229,0.255598866,1885743,7377744,0.252305278,0.258892454,7.422461322,21917,29527941,,,63.00459389,91288,144891022,62.59587808,63.41330971,38.21615482,32.63316538,43.79914426,24.28513775,23.15788587,25.41238964,78.60586208,77.29335349,79.91837068,43.3262392,42.78868832,43.86379008,83.99662417,83.26088348,84.73236485,49.62163503,38.21470549,63.36572014,8.55,,,,,0.55511811,,,,,0.17162457,1700125,9906070,0.170124138,0.173125001,0.126374831,0.125056581,0.12769308,0.047420925,0.046679345,0.048162504,0.009898981,0.009573854,0.010224109,0.75083015,10327933,13755352,0.749580256,0.752080043,0.723599977,0.704103226,0.743096727,0.661374012,0.654600808,0.668147216,0.756519223,0.751347147,0.761691299,0.75525298,0.75307014,0.75743582,0.760327791,0.759307796,0.761347787,0.389,,13755352,0.386617021,0.391382979,77.17620141,,,77.14264026,77.20976257,105.6549732,101.0434988,110.2664475,86.92985393,86.65296986,87.20673799,73.301689,73.19812156,73.40525645,78.24615,78.18083857,78.31146143,76.7752117,76.72642336,76.82400004,76.25699568,74.60545131,77.90854004,403.2669688,373903,83394198,401.9593264,404.5746113,200.1662539,184.2981342,216.0343736,164.0179716,160.274806,167.7611373,568.762649,564.2102388,573.3150593,380.7556515,378.4739417,383.0373612,411.9711678,410.0367725,413.9055632,491.8194225,441.4892627,542.1495822,51.02202343,16809,32944597,50.25068883,51.79335803,22.11954385,13.10944355,34.95841559,33.22462882,30.29175925,36.15749839,93.15906002,90.15564611,96.16247393,44.43444967,43.40906267,45.45983667,50.52273889,49.14766289,51.89781488,63.60684276,38.29547442,99.32996408,5.572165944,14943,2681722,5.482822804,5.661509085,,,,3.036023169,2.746694833,3.325351504,10.6244365,10.27478824,10.97408477,5.10486877,4.980698406,5.229039133,4.728978527,4.586432235,4.871524819,5.926724138,3.714246463,8.97313157,4.46298632,3.718353655,5.207618985,0.103726956,,,0.094539324,0.113695356,0.141294293,,,0.129990518,0.153407704,0.11,,,0.101,0.12,415.3,100700,24250252,,,0.137,4057910,,,,0.083498174,2099608.424,25145561,,,13.98652626,12292,87884581,13.73926581,14.23378671,10.46357108,7.059727466,14.93739834,3.236783958,2.713531693,3.760036223,19.28331737,18.4519986,20.11463613,8.755564816,8.445893963,9.065235669,19.23683787,18.78257037,19.69110536,,,,0.333700998,,,0.316327862,0.351537672,0.241311015,4266108,17678878,0.237736547,0.244885483,0.116501802,898128,7709134,0.111735844,0.121267759,0.001090125,32736,30029572,,,917.3256354,0.902255078,348224.445,385949,,,0.082623067,141153,1708397,0.079992589,0.085253546,2.890374278,,,,,,3.513049566,2.5214799,2.739158387,3.249308699,3.090119773,,,,,,4.006138865,2.659783515,2.966205029,3.386203882,0.259314513,,,,,-7899.378,,,,,0.800738318,47503,59324,0.794886456,0.806590181,72279,,,71754.74468,72803.25532,67936,65293.2766,70578.7234,107347,105590.7447,109103.2553,55459,54941.89362,55976.10638,59959,59543.17021,60374.82979,88575,88159.17021,88990.82979,,,,,,0.60608899,3289708,5427764,,,55.26017067,,,,,0.263870336,,,,,4.910811476,,,,,6.264024007,12542,200222732,6.154394847,6.373653167,3.373358746,2.114065966,5.107305681,1.88987315,1.618998775,2.160747526,19.99513899,19.43012029,20.56015769,5.504638805,5.341186474,5.668091136,3.705632968,3.574910524,3.836355412,,,,13.58209958,19694,144891022,13.39042717,13.77377199,13.59228455,9.948476457,7.228578224,13.35536529,7.063820587,6.447288127,7.680353046,7.818590956,7.405694328,8.231487585,7.848499444,7.612885588,8.0841133,20.76743401,20.39831986,21.13654816,13.7389267,8.392093356,21.21865799,13.44320699,19478,144891022,13.25441361,13.63200038,8.067854906,5.709294306,11.0737612,4.344901258,3.868096434,4.821706083,23.30393691,22.58929359,24.01858022,8.256915918,8.022248384,8.491583452,17.06404228,16.73242679,17.39565777,10.85473266,5.934383355,18.21239698,13.4939723,27018,200222732,13.3330674,13.65487721,9.353403796,7.154612771,12.01483847,4.416441533,4.002358116,4.830524949,16.25046632,15.74109613,16.7598365,11.95303827,11.71217761,12.19389892,15.60999388,15.3416941,15.87829367,10.86751357,6.542953083,16.97096862,10.11815543,,2962200,,,14963,15009,0.609029525,11315056,18578830,,,,,,,,134.9094044,,,,,0.623963961,6545727,10490553,0.620791409,0.627136512,0.140918433,1433704,10173999,0.139562654,0.142274213,0.884040813,9274077,10490553,0.881803001,0.886278624,30029572,,,,,0.248299843,7456338,30029572,,,0.13410291,4027053,30029572,,,0.12459778,3741618,30029572,,,0.010737516,322443,30029572,,,0.057166149,1716675,30029572,,,0.00162027,48656,30029572,,,0.401888812,12068549,30029572,,,0.397595111,11939611,30029572,,,0.067034603,1831380,27319920,0.066264005,0.067805202,0.499844686,15010122,30029572,,,0.162797248,4744808,29145505,, -48,001,48001,TX,Anderson County,2024,1,12110.52344,1279,163451,11153.91332,13067.13357,0,,,,2,,,,2,12661.67216,10662.94286,14660.40147,,12731.80271,10502.94971,14960.65571,,12530.88167,11159.62686,13902.13648,,,,,2,,0.217,,,0.188,0.249,4.172296687,,,3.332345912,5.103626507,5.46210559,,,4.419905167,6.63590811,0.075715371,299,3949,0.067464356,0.083966386,0,,,,,,,0.112307692,0.088034026,0.136581358,0.063991323,0.048193724,0.079788923,0.06875,0.058271441,0.079228559,,,,,,,0.205,,,0.168,0.242,0.423,,,0.34,0.507,6.2,0.158391564,0.14,,,0.29,,,0.238,0.342,0.37163772,21526,57922,,,0.18847775,,,0.150666374,0.230949148,0.186440678,11,59,0.122260707,0.258614508,371.6,217,58402,,,37.93174342,369,9728,34.06143395,41.80205289,,,,,,,42.35605559,32.61932399,54.0877374,41.41501294,33.54629345,50.57481924,33.27907397,28.47047684,38.0876711,,,,84.3373494,52.20614853,128.9185973,0.197707105,7174,36286,0.173877317,0.221536892,0.000376699,22,58402,,,2654.636364,0.000465004,27,58064,,,2150.518519,0.000533894,31,58064,,,1873.032258,3710,,,,,,,4208,1059,3729,0.36,,,,,,,0.47,0.29,0.36,0.4,,,,,,0.5,0.31,0.32,0.41,0.847747196,35975,42436,0.830823097,0.864671295,0.430344383,8010,18613,0.379207357,0.481481409,0.03426319,791,23086,,,0.222,2404,,0.139787234,0.304212766,0.011049724,0,0.339084942,,,,0.437056165,0.287685442,0.586426888,0.263720074,0.169084569,0.358355578,0.183108108,0.114269641,0.251946576,4.335375375,108276,24975,3.63394639,5.036804361,0.271573604,2996,11032,0.21257233,0.330574879,9.075031677,53,58402,,,102.5056948,297,289740,90.84764673,114.1637428,,,,,,,77.20231936,56.72536042,102.6627184,83.30493392,60.52949252,111.8329855,119.7214402,103.2112408,136.2316396,,,,8.9,,,,,0,,,,,0.118393235,1960,16555,0.092520511,0.144265959,0.085280728,0.058739919,0.111821538,0.043430988,0.023708336,0.06315364,0.00422833,0.000717731,0.007738929,0.84574495,16706,19753,0.802727498,0.888762402,,,,,,,0.868577917,0.771239986,0.965915847,0.857403355,0.744873586,0.969933124,0.838940111,0.790782576,0.887097647,0.303,,19753,0.242456394,0.363543607,71.97595489,,,71.28176009,72.6701497,,,,,,,70.66892868,69.15003201,72.18782534,70.8934939,68.81352224,72.97346556,71.80625618,70.86084691,72.75166544,,,,632.8177025,1279,163451,597.7217614,667.9136437,,,,,,,741.8591698,647.1740689,836.5442707,737.3980682,612.524558,862.2715785,623.6856496,579.5662414,667.8050578,,,,51.46256613,25,48579,33.30385938,75.96889952,,,,,,,,,,,,,52.58610976,28.74931554,88.23055674,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.131,,,0.113,0.149,0.175,,,0.152,0.199,0.126,,,0.108,0.146,586.4,297,50644,,,0.14,8130,,,,0.158391564,9259.254054,58458,,,20.69655402,36,173942,14.495612,28.65275465,,,,,,,,,,,,,23.87442055,15.29679173,35.52324532,,,,0.371,,,0.359,0.383,0.242696013,6197,25534,0.21171729,0.273674737,0.093840867,1065,11349,0.065245122,0.122436612,0.000826674,48,58064,,,1209.666667,0.973978805,505.495,519,,,,,,,,2.846894302,,,,,,,2.327108895,2.651710217,3.081904162,2.920580875,,,,,,,2.193265532,2.686721887,3.222357085,0.119735294,,,,,-3728.588286,,,,,0.68497976,35197,51384,0.547527753,0.822431768,60800,,,54766.29787,66833.70213,180780,91463.57447,270096.4255,107572,75319.57447,139824.4255,35388,24080.76596,46695.23404,50093,32165.85106,68020.14894,59943,51254.65957,68631.34043,,,,,,0.657772338,5374,8170,,,49.53486808,,,,,0.230657895,,60800,,,3.004005341,9,2996,,,7.406419885,30,405054,4.997080395,10.57312492,,,,,,,11.76553639,5.642032021,21.63724033,,,,6.325084018,3.54010151,10.4322642,,,,32.52135733,101,289740,26.11220706,38.9305076,34.85883896,,,,,,,17.17188074,9.14330328,29.36443903,35.98429015,21.98013927,55.57481764,37.22344106,28.336208,48.01552693,,,,12.4249327,36,289740,8.70227011,17.20134413,,,,,,,,,,,,,18.37309231,12.48362482,26.07913795,,,,19.50357236,79,405054,15.44116191,24.30727043,,,,,,,14.11864367,7.295309209,24.66242917,,,,23.613647,17.83749518,30.66428478,,,,3.720930233,,4300,,,9,7,0.429030459,19227,44815,,,0.517,,,,,26.35318472,,,,,0.6865495,11602,16899,0.655892185,0.717206815,0.110999749,1772,15964,0.075375608,0.146623891,0.817208119,13810,16899,0.786017371,0.848398867,58064,,,,,0.188895012,10968,58064,,,0.155190824,9011,58064,,,0.210560761,12226,58064,,,0.008180628,475,58064,,,0.010092312,586,58064,,,0.002342243,136,58064,,,0.188120006,10923,58064,,,0.572781758,33258,58064,,,0.019708546,1086,55103,0.012176405,0.027240687,0.390241802,22659,58064,,,0.678619523,39307,57922,, -48,003,48003,TX,Andrews County,2024,1,9348.728746,249,53795,7849.632104,10847.82539,0,,,,2,,,,2,,,,2,9229.586586,7248.803866,11210.36931,,9651.938012,7263.538275,12040.33775,,,,,2,,0.221,,,0.188,0.255,4.111056984,,,3.222802244,5.035612837,5.255182464,,,4.124149584,6.389189232,0.081344374,167,2053,0.069519358,0.09316939,0,,,,,,,,,,0.084302326,0.069621763,0.098982888,0.074840764,0.054260374,0.095421154,,,,,,,0.167,,,0.138,0.201,0.393,,,0.307,0.475,7.4,0.082021834,0.125,,,0.307,,,0.255,0.359,0.745996776,13883,18610,,,0.190624619,,,0.150082526,0.232356649,0.277777778,15,54,0.206953866,0.35113285,314.5,58,18440,,,43.33333333,208,4800,37.44426625,49.22240042,,,,,,,,,,50.38402458,42.67273517,58.09531398,24.98163115,17.30050579,34.90932557,,,,,,,0.243009321,4015,16522,0.217988044,0.268030598,0.000488069,9,18440,,,2048.888889,0.000218174,4,18334,,,4583.5,0.00016363,3,18334,,,6111.333333,3212,,,,,,,,3639,2882,0.32,,,,,,,,0.26,0.35,0.19,,,,,,,,0.17,0.21,0.738295753,8153,11043,0.689161385,0.787430121,0.440631702,2260,5129,0.346733924,0.53452948,0.031835008,301,9455,,,0.154,871,,0.102765957,0.205234043,,,,,,,,,,0.152104422,0.062641499,0.241567345,0.087297146,0,0.196091659,4.279036171,156985,36687,3.157751659,5.400320683,0.175706918,988,5623,0.084911991,0.266501845,7.04989154,13,18440,,,76.19130548,70,91874,59.39486047,96.26313084,,,,,,,,,,59.05774323,40.12687123,83.82775238,105.114658,74.38538808,144.2780806,,,,7.3,,,,,1,,,,,0.112389381,635,5650,0.070970563,0.153808198,0.081105169,0.042209297,0.120001042,0.032743363,0.014159429,0.051327296,0.003539823,0,0.011047456,0.7997558,7205,9009,0.749840973,0.849670627,,,,,,,,,,0.742665174,0.643698013,0.841632334,0.861392029,0.787129413,0.935654644,0.343,,9009,0.272249205,0.413750795,75.0944561,,,73.74929872,76.43961348,,,,,,,,,,76.0544725,73.88288093,78.22606407,74.21628323,72.31614038,76.11642608,,,,498.0891878,249,53795,435.6540055,560.5243701,,,,,,,,,,466.1275722,376.28667,555.9684745,540.8971397,446.2574197,635.5368597,,,,67.7425782,17,25095,39.4625482,108.46243,,,,,,,,,,79.6178344,42.39314362,136.1489216,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.129,,,0.111,0.148,0.17,,,0.147,0.195,0.125,,,0.107,0.143,112.2,16,14258,,,0.125,2270,,,,0.082021834,1212.774838,14786,,,,,,,,,,,,,,,,,,,,,,,,,,0.344,,,0.33,0.356,0.282931354,3050,10780,0.251952631,0.313910078,0.170467788,1024,6007,0.129957149,0.210978426,0.000818152,15,18334,,,1222.266667,0.93,274.35,295,,,,,,,,2.904442759,,,,,,,,2.791510557,3.097821605,2.888821917,,,,,,,,2.742111223,3.151295687,0.003176938,,,,,544.2695,,,,,0.643846481,45462,70610,0.492026752,0.795666209,68998,,,60090.42553,77905.57447,,,,,,,,,,71976,51152.34043,92799.65957,100338,71532.55319,129143.4468,,,,,,0.494574391,2051,4147,,,76.89131282,,,,,0.244702745,,68998,,,2.610966057,4,1532,,,,,,,,,,,,,,,,,,,,,,,,,,15.69288359,14,91874,8.57944549,26.32999214,15.2382611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,34.44523599,44,127739,25.0279612,46.24112157,,,,,,,,,,33.08063405,21.19538643,49.22136126,37.49975329,22.57730113,58.56050994,,,,25.2173913,,2300,,,31,27,0.527248201,5863,11120,,,0.536,,,,,43.52149602,,,,,0.72527639,4789,6603,0.663907945,0.786644835,0.116528523,717,6153,0.064958348,0.168098697,0.906860518,5988,6603,0.864791933,0.948929103,18334,,,,,0.31018872,5687,18334,,,0.100741791,1847,18334,,,0.013690411,251,18334,,,0.016144868,296,18334,,,0.007308825,134,18334,,,0.000272717,5,18334,,,0.593214792,10876,18334,,,0.371004691,6802,18334,,,0.082379456,1389,16861,0.057942508,0.106816403,0.488600415,8958,18334,,,0.183181085,3409,18610,, -48,005,48005,TX,Angelina County,2024,1,11721.36179,1727,241510,10914.66135,12528.06223,0,,,,2,,,,2,17586.46831,15058.55374,20114.38287,,8712.227007,7284.358103,10140.09591,,11413.75564,10366.61868,12460.89261,,,,,2,,0.223,,,0.193,0.254,4.52424239,,,3.755386787,5.348107763,5.587818711,,,4.804533719,6.405109257,0.092403773,725,7846,0.085995764,0.098811782,0,,,,0.117647059,0.049152146,0.186141971,0.152088259,0.132330011,0.171846506,0.076660156,0.065137391,0.088182922,0.080241187,0.072132467,0.088349908,,,,0.155963303,0.087849567,0.224077038,0.191,,,0.159,0.225,0.43,,,0.381,0.479,6.3,0.097603024,0.166,,,0.32,,,0.278,0.363,0.657989467,56847,86395,,,0.147936246,,,0.122117564,0.175135651,0.256410256,20,78,0.198140757,0.317300068,504,436,86506,,,34.11277906,709,20784,31.60175974,36.62379839,,,,,,,47.3905219,40.00095442,54.78008938,31.50421535,27.27329415,35.73513656,32.96921549,29.42275078,36.5156802,,,,,,,0.225179577,15643,69469,0.202541279,0.247817874,0.000658914,57,86506,,,1517.649123,0.000585527,51,87101,,,1707.862745,0.001687696,147,87101,,,592.5238095,3223,,,,,,,4830,2809,2985,0.4,,,,,,0.35,0.44,0.25,0.4,0.44,,,,,,0.61,0.39,0.42,0.44,0.839898438,47634,56714,0.825439809,0.854357067,0.55728064,11845,21255,0.506464142,0.608097138,0.045772266,1624,35480,,,0.218,4731,,0.14412766,0.29187234,0.385093168,0,0.807722333,,,,0.279727794,0.189794457,0.369661131,0.330339032,0.264124664,0.3965534,0.141516588,0.098956236,0.184076939,4.360158259,110203,25275,3.981030492,4.739286027,0.323863636,7125,22000,0.275591739,0.372135534,10.51950154,91,86506,,,77.25665304,336,434914,68.99584896,85.51745712,,,,,,,98.73800488,76.04029521,126.0862279,46.53138846,34.06682455,62.06635144,86.30609896,75.0287687,97.58342923,,,,9.3,,,,,1,,,,,0.145043035,4550,31370,0.125001972,0.165084098,0.09825694,0.081541374,0.114972506,0.04590373,0.033526286,0.058281174,0.008766337,0.003943082,0.013589593,0.805448744,29535,36669,0.776433494,0.834463994,,,,,,,0.738315357,0.674836054,0.80179466,0.774417452,0.727937688,0.820897216,0.8384784,0.805657269,0.871299531,0.218,,36669,0.187716475,0.248283525,73.350723,,,72.74753821,73.9539078,,,,,,,67.96032039,66.40880661,69.51183418,78.07799986,76.02033356,80.13566616,73.5145667,72.75636985,74.27276355,,,,582.8082243,1727,241510,554.2987968,611.3176519,,,,,,,844.9944817,753.593807,936.3951564,430.3125449,368.5503216,492.0747682,577.0455,541.7178614,612.3731387,,,,61.81615874,60,97062,47.1722414,79.56964972,,,,,,,110.4828752,64.3603462,176.8937858,41.3210006,22.00169254,70.66016947,63.68074719,42.96513271,90.90822627,,,,6.640771833,53,7981,4.974393802,8.686293062,,,,,,,,,,,,,6.41025641,4.259568832,9.264605298,,,,,,,0.141,,,0.122,0.16,0.193,,,0.169,0.219,0.135,,,0.117,0.152,260.4,185,71053,,,0.166,14370,,,,0.097603024,8469.111986,86771,,,17.30656073,45,260017,12.62352415,23.15753989,,,,,,,,,,,,,21.30227934,14.66350892,29.9163203,,,,0.372,,,0.36,0.384,0.269037439,12899,47945,0.240441694,0.297633183,0.132545583,2995,22596,0.099183881,0.165907285,0.001182535,103,87101,,,845.6407767,0.931455585,1059.065,1137,,,0.165902459,796,4798,0.099184398,0.232620521,2.829196467,,,,,,,2.450729765,2.628762696,3.11624735,2.939210555,,,,,,,2.490353342,2.834016338,3.18104506,0.130782986,,,,,-7036.271,,,,,0.797932785,39603,49632,0.700266524,0.895599047,56825,,,51327.46809,62322.53192,61694,36628.6383,86759.3617,,,,37113,30642.02128,43583.97872,59261,55018.10638,63503.89362,62830,57533.82979,68126.17021,,,,,,0.705498831,11470,16258,,,44.20643258,,,,,0.239489661,,56825,,,6.490089458,37,5701,,,6.874427131,42,610960,4.95448241,9.292228424,,,,,,,23.0632372,14.27650733,35.25460796,,,,4.344603053,2.483316033,7.055363167,,,,16.02527276,68,434914,12.34141274,20.46391555,15.63527502,,,,,,,,,,12.81917585,6.399286396,22.93704661,19.74229133,14.50589309,26.25306225,,,,16.09513605,70,434914,12.54694816,20.33523612,,,,,,,24.68450122,14.10932527,40.08608349,,,,16.87763713,12.26331698,22.65744008,,,,18.16812885,111,610960,14.78822159,21.5480361,,,,,,,23.0632372,14.27650733,35.25460796,15.33350371,9.491680467,23.43888922,18.73610066,14.57780466,23.71173453,,,,14.22222222,,9000,,,40,88,0.572369837,34574,60405,,,0.548,,,,,52.2770303,,,,,0.645283855,20380,31583,0.62125212,0.66931559,0.119038952,3597,30217,0.099083337,0.138994566,0.884273185,27928,31583,0.869343277,0.899203093,87101,,,,,0.252304796,21976,87101,,,0.16865478,14690,87101,,,0.148919071,12971,87101,,,0.007795548,679,87101,,,0.011951642,1041,87101,,,0.000665894,58,87101,,,0.235186737,20485,87101,,,0.589063271,51308,87101,,,0.036307951,2940,80974,0.028480685,0.044135217,0.509110114,44344,87101,,,0.519057816,44844,86395,, -48,007,48007,TX,Aransas County,2024,1,13926.96647,661,62948,12015.56892,15838.36402,0,,,,2,,,,2,,,,2,11207.8987,8480.588641,13935.20876,,15370.79999,12619.81493,18121.78506,,,,,2,,0.199,,,0.171,0.232,4.048063321,,,3.271079087,4.889032588,5.547971619,,,4.555921182,6.606575423,0.08953168,130,1452,0.074846018,0.104217343,0,,,,,,,,,,0.094991364,0.071108566,0.118874163,0.086683417,0.067136502,0.106230332,,,,,,,0.185,,,0.148,0.224,0.376,,,0.305,0.45,5.3,0.162097263,0.179,,,0.279,,,0.232,0.33,0.67091901,15988,23830,,,0.162410786,,,0.129847041,0.199158718,0.08,2,25,0.014970891,0.19576483,281.5,69,24510,,,27.71699489,114,4113,22.62896344,32.80502635,,,,,,,,,,30.77783996,23.18608113,40.06158924,25.95563945,19.55333977,33.78483246,,,,,,,0.232262115,4069,17519,0.20604935,0.258474881,0.000326397,8,24510,,,3063.75,0.000280629,7,24944,,,3563.428571,0.000881976,22,24944,,,1133.818182,1971,,,,,,12036,,709,1779,0.43,,,,,,0.32,,0.32,0.43,0.47,,,,,,0.47,,0.37,0.47,0.886103227,16859,19026,0.856169297,0.916037158,0.542862502,2894,5331,0.429773622,0.655951383,0.052506994,488,9294,,,0.302,1346,,0.197148936,0.406851064,,,,,,,,,,0.299949925,0.184315874,0.415583976,0.31222813,0.18131353,0.44314273,4.89165844,118926,24312,4.107456421,5.675860459,0.16702509,699,4185,0.066582096,0.267468083,3.671970624,9,24510,,,117.1636496,142,121198,97.89262565,136.4346735,,,,,,,,,,67.20430108,42.60176203,100.8394486,146.3384386,119.93421,172.7426673,,,,8.8,,,,,1,,,,,0.190115986,1885,9915,0.153179468,0.227052504,0.116726711,0.082875612,0.150577811,0.049924357,0.025785705,0.074063009,0.027735754,0.010171327,0.045300181,0.746858372,6597,8833,0.685035313,0.808681432,,,,,,,,,,0.727212463,0.571427949,0.882996976,0.716695185,0.629729263,0.803661106,0.224,,8833,0.154780723,0.293219277,73.00303324,,,71.65796187,74.34810462,,,,,,,,,,74.86771094,72.34521424,77.39020765,71.78660397,69.96227515,73.61093279,,,,644.0108616,661,62948,587.1649422,700.8567809,,,,,,,,,,569.9115128,465.9665409,673.8564848,686.6038789,612.5767178,760.63104,,,,68.81219564,13,18892,36.63959608,117.6709502,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.127,,,0.109,0.146,0.178,,,0.155,0.204,0.117,,,0.1,0.135,168.7,36,21338,,,0.179,4320,,,,0.162097263,3753.848423,23158,,,18.09727984,13,71834,9.636039328,30.94689968,,,,,,,,,,,,,21.09927208,10.11792108,38.80231257,,,,0.358,,,0.344,0.372,0.260018354,3400,13076,0.229039631,0.290997078,0.154011154,718,4662,0.112309026,0.195713282,0.000521167,13,24944,,,1918.769231,0.875,175,200,,,,,,,,2.66759357,,,,,,,,2.447420446,2.867782607,2.873350931,,,,,,,,2.697425429,3.005727786,0.004680883,,,,,-2757.696,,,,,0.652506113,38430,58896,0.422802553,0.882209672,60523,,,52830.74468,68215.25532,,,,45536,22411.57447,68660.42553,,,,38846,20504.21277,57187.78723,65090,58160.29787,72019.70213,,,,,,0.668552413,2009,3005,,,88.35304823,,,,,0.280108389,,60523,,,3.633060854,4,1101,,,,,,,,,,,,,,,,,,,,,,,,,,36.49626779,48,121198,25.82693124,50.09397898,39.60461394,,,,,,,,,,,,,52.26682095,35.26420461,74.61413685,,,,39.60461394,48,121198,29.20131588,52.50997226,,,,,,,,,,,,,54.56687543,39.64837522,73.25348333,,,,16.83413731,29,172269,11.27408596,24.17662925,,,,,,,,,,,,,18.22663519,11.28257446,27.86134802,,,,,,1700,,,-888,16,0.657570894,12290,18690,,,0.387,,,,,40.98648843,,,,,0.790396074,9020,11412,0.754693466,0.826098683,0.125229526,1364,10892,0.089872496,0.160586557,0.894146512,10204,11412,0.864627148,0.923665877,24944,,,,,0.181727069,4533,24944,,,0.278102951,6937,24944,,,0.014472418,361,24944,,,0.013911161,347,24944,,,0.019403464,484,24944,,,0.001162604,29,24944,,,0.297185696,7413,24944,,,0.649815587,16209,24944,,,0.007438987,171,22987,0,0.016427525,0.502766196,12541,24944,,,0.235753252,5618,23830,, -48,009,48009,TX,Archer County,2024,1,7405.474553,128,23685,5370.407431,9440.541675,0,,,,2,,,,2,,,,2,,,,2,7090.430879,4977.075292,9203.786467,,,,,2,,0.162,,,0.136,0.192,3.733582958,,,2.914340458,4.632397282,5.371722985,,,4.369222352,6.471377122,0.065953654,37,561,0.045414702,0.086492606,0,,,,,,,,,,,,,0.059917355,0.038773084,0.081061627,,,,,,,0.175,,,0.139,0.213,0.361,,,0.279,0.452,7.5,0.049312258,0.135,,,0.235,,,0.188,0.285,0.201985981,1729,8560,,,0.189430652,,,0.150714274,0.233880002,0.157894737,3,19,0.054083319,0.295484356,172.8,15,8681,,,15.6774916,28,1786,10.41757932,22.65834039,,,,,,,,,,,,,13.76462491,8.407790492,21.2583468,,,,,,,0.189862419,1311,6905,0.167224121,0.212500716,,0,8681,,,,,0,8835,,,,0.000113186,1,8835,,,8835,2915,,,,,,,,,2667,0.41,,,,,,,,,0.42,0.43,,,,,,,,0.2,0.43,0.911667219,5501,6034,0.88609338,0.937241058,0.622933333,1168,1875,0.534855547,0.711011119,0.033640668,135,4013,,,0.118,229,,0.072723404,0.163276596,,,,,,,,,,0.138528139,0.01218199,0.264874287,0.164606376,0.095919061,0.233293692,4.786648875,129139,26979,3.58895042,5.984347331,0.178899083,351,1962,0.124090095,0.23370807,9.215528165,8,8681,,,80.35078859,35,43559,55.96726831,111.748496,,,,,,,,,,,,,86.15288221,59.30367996,120.9906779,,,,7.9,,,,,0,,,,,0.123755334,435,3515,0.086803478,0.160707191,0.100143062,0.059533478,0.140752645,0.013940256,0.000111987,0.027768525,0.012802276,0,0.025872039,0.850348606,3415,4016,0.811174417,0.889522795,,,,,,,,,,,,,0.781120944,0.715926858,0.84631503,0.177,,4016,0.138336216,0.215663784,78.01834854,,,76.16739677,79.86930031,,,,,,,,,,,,,77.81902478,75.91344664,79.72460292,,,,374.2309138,128,23685,304.166188,444.2956395,,,,,,,,,,,,,371.1313774,298.6492566,443.6134982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.113,,,0.096,0.131,0.176,,,0.151,0.202,0.093,,,0.078,0.11,,,,,,0.135,1170,,,,0.049312258,446.4731877,9054,,,,,,,,,,,,,,,,,,,,,,,,,,0.344,,,0.327,0.361,0.208182185,1033,4962,0.180777929,0.23558644,0.145802651,297,2037,0.108866481,0.182738821,0.000113186,1,8835,,,8835,0.929347826,128.25,138,,,,,,,,3.204623809,,,,,,,,2.925248443,3.294303021,3.385623177,,,,,,,,3.274619363,3.415255364,0.047985309,,,,,-190.5342,,,,,0.648577587,42428,65417,0.554299712,0.742855462,72062,,,62175.02128,81948.97872,,,,,,,,,,63438,46255.53192,80620.46809,72944,61111.31915,84776.68085,,,,,,0.298245614,646,2166,,,,,,,,0.193999611,,72062,,,10.66098081,5,469,,,,,,,,,,,,,,,,,,,,,,,,,,22.79373038,11,43559,10.9304797,41.91848173,25.25310498,,,,,,,,,,,,,25.85679339,11.82337243,49.0842481,,,,,,,,,,,,,,,,,,,,,,,,,,,24.59943913,15,60977,13.76811935,40.57303388,,,,,,,,,,,,,24.23293442,12.90301698,41.43905588,,,,,,800,,,0,-888,0.722289157,4796,6640,,,0.569,,,,,3.37278146,,,,,0.842292842,2836,3367,0.808326894,0.87625879,0.106703567,347,3252,0.066408188,0.146998947,0.832194832,2802,3367,0.797268115,0.86712155,8835,,,,,0.222524052,1966,8835,,,0.211997736,1873,8835,,,0.010639502,94,8835,,,0.017317487,153,8835,,,0.00713073,63,8835,,,0.000565931,5,8835,,,0.093944539,830,8835,,,0.861912847,7615,8835,,,0.012428415,102,8207,0.000754427,0.024102402,0.499377476,4412,8835,,,0.873598131,7478,8560,, -48,011,48011,TX,Armstrong County,2024,1,12902.65475,40,5064,6870.120247,22063.93258,1,,,,2,,,,2,,,,2,,,,2,14929.59734,7714.340802,26079.00203,1,,,,2,,0.137,,,0.116,0.162,3.374794903,,,2.622976055,4.239376943,5.14668724,,,4.17432595,6.18679366,0.079136691,11,139,0.034258515,0.124014867,1,,,,,,,,,,,,,0.084033613,0.034185483,0.133881744,,,,,,,0.145,,,0.114,0.179,0.337,,,0.261,0.425,6.8,0.213417582,0.089,,,0.207,,,0.166,0.254,0.014069264,26,1848,,,0.195462246,,,0.155816179,0.240184609,0.222222222,2,9,0.058854756,0.422872156,380.6,7,1839,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.167375887,236,1410,0.144737589,0.190014184,0,0,1839,,,-1839,0,0,1850,,,-1850,,0,1850,,,,,,,,,,,,,,0.44,,,,,,,,,0.45,0.33,,,,,,,,,0.33,0.927873779,1235,1331,0.880523462,0.975224096,0.588541667,226,384,0.426931535,0.750151798,0.027689031,26,939,,,0.136,56,,0.083574468,0.188425532,,,,,,,,,,,,,0.020671835,0,0.09879453,3.717905909,124706,33542,2.260962884,5.174848934,0.134117647,57,425,0.017112875,0.251122419,27.18868951,5,1839,,,,,,,,,,,,,,,,,,,,,,,,,,5.7,,,,,0,,,,,0.0625,45,720,0,0.126549181,0.051966292,0,0.137836888,0.013888889,0,0.059395956,0,0,0.032764286,0.717791411,585,815,0.655547849,0.780034973,,,,,,,,,,,,,0.625,0.366768853,0.883231147,0.491,,815,0.347723714,0.634276286,72.07032422,,,67.32884692,76.81180152,,,,,,,,,,,,,,,,,,,530.5824976,40,5064,362.9180356,749.0241753,,,,,,,,,,,,,584.7957069,394.5592077,834.8322341,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.1,,,0.086,0.117,0.164,,,0.143,0.189,0.084,,,0.072,0.099,,,,,,0.089,180,,,,0.213417582,405.7068225,1901,,,,,,,,,,,,,,,,,,,,,,,,,,0.335,,,0.317,0.352,0.182817183,183,1001,0.155412928,0.210221438,0.13255814,57,430,0.093238991,0.171877289,0,0,1850,,,-1850,,,,,,,,,,,2.758250475,,,,,,,,,,3.074158987,,,,,,,,,3.256199273,,,,,,522.4014,,,,,0.859097586,53807,62632,0.623100178,1.095094994,67548,,,57618.12766,77477.87234,41389,12460.82979,70317.17021,,,,,,,,,,71917,54608.23404,89225.76596,,,,,,0.361563518,111,307,,,,,,,,0.224788299,,67548,,,,,136,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,200,,,0,0,0.756462585,1112,1470,,,0.549,,,,,52.14311706,,,,,0.874482759,634,725,0.819478835,0.929486682,0.078014184,55,705,0,0.178382231,0.884137931,641,725,0.791647116,0.976628746,1850,,,,,0.224864865,416,1850,,,0.221621622,410,1850,,,0.011891892,22,1850,,,0.018378378,34,1850,,,0.003783784,7,1850,,,0.000540541,1,1850,,,0.115135135,213,1850,,,0.842162162,1558,1850,,,0.009465479,17,1796,0,0.050007052,0.498378378,922,1850,,,1,1848,1848,, -48,013,48013,TX,Atascosa County,2024,1,9455.0012,873,143478,8557.212183,10352.79022,0,,,,2,,,,2,,,,2,10014.60375,8869.93511,11159.27239,,8613.542266,7168.066846,10059.01769,,,,,2,,0.219,,,0.188,0.25,3.978700346,,,3.155086902,4.840765778,5.122240585,,,4.052221768,6.267759853,0.082537662,389,4713,0.07468119,0.090394134,0,,,,,,,,,,0.083037825,0.073740573,0.092335077,0.080414013,0.065374863,0.095453163,,,,,,,0.156,,,0.127,0.187,0.4,,,0.316,0.488,7.7,0.058302308,0.118,,,0.306,,,0.255,0.357,0.437230763,21416,48981,,,0.177176524,,,0.140464696,0.216866643,0.2,9,45,0.125379593,0.283736902,428.5,214,49939,,,36.86856596,462,12531,33.50661535,40.23051657,,,,,,,,,,42.61612621,38.3811084,46.85114401,22.32854864,17.40619908,28.21077794,,,,,,,0.220102142,9309,42294,0.197463844,0.24274044,0.000200244,10,49939,,,4993.9,0.000471847,24,50864,,,2119.333333,0.000550488,28,50864,,,1816.571429,2662,,,,,,,,3411,2244,0.28,,,,,,,,0.27,0.29,0.34,,,,,,,,0.31,0.35,0.805631302,25408,31538,0.785736311,0.825526293,0.438902545,5535,12611,0.3784959,0.499309191,0.040248778,906,22510,,,0.226,3056,,0.142595745,0.309404255,,,,,,,,,,0.198802907,0.137689166,0.259916649,0.093489664,0.037095368,0.14988396,4.680039548,123071,26297,4.050035717,5.310043379,0.259532225,3451,13297,0.193989345,0.325075106,5.606840345,28,49939,,,70.60494155,178,252107,60.2324959,80.97738721,,,,,,,,,,62.15191879,50.09016313,74.21367445,90.21529759,70.83841251,113.2570447,,,,9.4,,,,,0,,,,,0.169303798,2675,15800,0.136030853,0.202576742,0.053775088,0.033409507,0.074140668,0.100316456,0.071589959,0.129042953,0.019303798,0.007045326,0.031562269,0.754257309,15325,20318,0.710828577,0.797686041,,,,,,,,,,0.773782476,0.709106601,0.83845835,0.743839647,0.693745056,0.793934238,0.506,,20318,0.445726653,0.566273348,74.98741444,,,74.22194472,75.75288415,,,,,,,,,,74.54478638,73.5417634,75.54780936,75.33439565,74.14265308,76.52613823,,,,519.8611617,873,143478,484.6144831,555.1078402,,,,,,,,,,541.6328578,494.8691324,588.3965833,505.5634104,448.5951244,562.5316965,,,,47.88164977,29,60566,32.06709233,68.76603612,,,,,,,,,,57.1493885,36.98407098,84.36377117,,,,,,,4.852320675,23,4740,3.075955071,7.28086348,,,,,,,,,,,,,,,,,,,,,,0.125,,,0.109,0.143,0.164,,,0.142,0.187,0.127,,,0.11,0.146,180.6,73,40424,,,0.118,5740,,,,0.058302308,2618.414934,44911,,,9.161344362,14,152816,5.008592213,15.37117915,,,,,,,,,,11.99916006,6.200141099,20.96011784,,,,,,,0.34,,,0.326,0.354,0.266993306,7738,28982,0.237206072,0.29678054,0.121714286,1704,14000,0.089544073,0.153884499,0.000530827,27,50864,,,1883.851852,0.947828829,526.045,555,,,0.149677419,464,3100,0.076013411,0.223341428,2.523246161,,,,,,,,2.422000075,2.92509116,2.848857311,,,,,,,,2.780800545,3.168373914,0.051794843,,,,,-3246.4879,,,,,0.644575999,36911,57264,0.571433843,0.717718155,59817,,,51713.68085,67920.31915,130625,34534.95745,226715.0426,98813,78822.19149,118803.8085,36290,10067.70213,62512.29787,60726,51491.95745,69960.04255,81483,63032.78723,99933.21277,,,,,,0.663576327,5225,7874,,,58.16529475,,,,,0.311416487,,59817,,,3.135689852,11,3508,,,6.297607768,22,349339,3.94667726,9.534653843,,,,,,,,,,6.634966272,3.713540256,10.94336785,,,,,,,19.82062874,50,252107,14.61416697,26.27927814,19.83284875,,,,,,,,,,18.29462752,12.15664713,26.44083047,20.88515245,12.37786497,33.007545,,,,16.26293598,41,252107,11.67056364,22.062509,,,,,,,,,,14.01464835,8.884084866,21.02885366,20.72513593,12.07315543,33.1829503,,,,17.46154881,61,349339,13.35670125,22.43008995,,,,,,,,,,15.48158797,10.78349327,21.53114116,22.58669817,14.75438114,33.09474606,,,,11.96428571,,5600,,,16,51,0.532490816,18118,34025,,,0.441,,,,,28.44569361,,,,,0.751067839,11957,15920,0.713769595,0.788366083,0.0825912,1252,15159,0.058239079,0.106943321,0.845226131,13456,15920,0.811576735,0.878875526,50864,,,,,0.267890846,13626,50864,,,0.148494023,7553,50864,,,0.009908776,504,50864,,,0.015158069,771,50864,,,0.008080371,411,50864,,,0.001808745,92,50864,,,0.667426864,33948,50864,,,0.305559925,15542,50864,,,0.059099804,2718,45990,0.042437704,0.075761904,0.499233249,25393,50864,,,0.714521958,34998,48981,, -48,015,48015,TX,Austin County,2024,1,8248.992403,446,82770,6997.348245,9500.63656,0,,,,2,,,,2,19437.63668,13295.3291,27440.14334,,7307.886204,5457.878959,9583.32049,,7352.541296,5702.130036,9002.952556,,,,,2,,0.181,,,0.155,0.21,3.724833934,,,2.917680445,4.598986241,5.248310781,,,4.196945242,6.352562922,0.079701121,192,2409,0.068885926,0.090516315,0,,,,,,,0.128318584,0.084714665,0.171922503,0.076765609,0.060072081,0.093459137,0.072853426,0.057851721,0.08785513,,,,,,,0.163,,,0.132,0.197,0.356,,,0.28,0.439,8.1,0.022417783,0.118,,,0.26,,,0.214,0.309,0.427884775,12908,30167,,,0.181832304,,,0.14577756,0.223098567,0.192307692,5,26,0.09558881,0.306287398,293,89,30380,,,21.12676056,141,6674,17.63953993,24.61398119,,,,,,,28.83156297,17.35848432,45.02405701,28.27265686,22.16124978,35.5486213,13.50502513,9.773653647,18.19118022,,,,,,,0.219431538,5242,23889,0.19679324,0.242069835,0.000197498,6,30380,,,5063.333333,0.000450204,14,31097,,,2221.214286,0.000450204,14,31097,,,2221.214286,2553,,,,,,,9268,2101,1923,0.36,,,,,,,0.31,0.22,0.37,0.37,,,,,,,0.26,0.33,0.38,0.87880523,18418,20958,0.856981471,0.900628988,0.551772651,3922,7108,0.47960438,0.623940921,0.039226793,554,14123,,,0.236,1699,,0.181191489,0.290808511,,,,,,,0.632394366,0.411623599,0.853165133,0.092762487,0.018517752,0.167007223,0.070843829,0.024476819,0.117210838,4.483537483,143119,31921,3.850742287,5.116332679,0.190195252,1354,7119,0.125861952,0.254528552,11.1915734,34,30380,,,77.2514468,116,150159,63.19311793,91.30977567,,,,,,,92.44280102,47.76654425,161.4789696,50.12650976,31.02909959,76.62369489,89.18472114,70.9312554,110.7017545,,,,9.6,,,,,0,,,,,0.155574762,1800,11570,0.118968695,0.192180829,0.112087912,0.080833221,0.143342603,0.041918755,0.021800482,0.062037029,0.013828868,0.005168826,0.022488909,0.82036883,11833,14424,0.791170779,0.849566881,,,,,,,,,,0.766078697,0.52487573,1,0.753469927,0.710288927,0.796650928,0.421,,14424,0.359803362,0.482196638,77.38454302,,,76.32295633,78.44612971,,,,,,,68.36891086,63.97807753,72.75974419,80.86013932,77.43471734,84.2855613,77.94653713,76.59321983,79.29985443,,,,385.1617753,446,82770,346.7285569,423.5949936,,,,,,,789.0392266,603.5524875,1013.553896,359.3717095,281.1862299,452.5691924,351.2662598,305.405802,397.1267177,,,,54.45750713,17,31217,31.72350472,87.19174429,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.116,,,0.1,0.134,0.171,,,0.148,0.195,0.107,,,0.092,0.126,232,59,25431,,,0.118,3570,,,,0.022417783,637.0461393,28417,,,,,,,,,,,,,,,,,,,,,,,,,,0.351,,,0.337,0.364,0.244777179,4136,16897,0.217372924,0.272181435,0.161382501,1186,7349,0.12563782,0.197127182,0.000610991,19,31097,,,1636.684211,0.964809417,430.305,446,,,,,,,,2.821912517,,,,,,,2.080191246,2.635239273,3.116475048,2.753138566,,,,,,,2.10029781,2.497870325,3.108758465,0.038909894,,,,,-4346.676,,,,,0.732142857,43829,59864,0.569856623,0.894429091,68630,,,59720.04255,77539.95745,,,,,,,38031,25818.23404,50243.76596,71304,62247.48936,80360.51064,81618,72127.78723,91108.21277,,,,,,0.536065574,2943,5490,,,28.27116584,,,,,0.280139881,,68630,,,6.602641056,11,1666,,,5.251097957,11,209480,2.621329181,9.395664748,,,,,,,,,,,,,,,,,,,20.80360601,30,150159,13.82384511,30.06700296,19.97882245,,,,,,,,,,,,,23.29348367,13.56931263,37.29512383,,,,22.64266544,34,150159,15.68070404,31.64085542,,,,,,,,,,,,,23.92760811,14.99530461,36.22668623,,,,20.04964674,42,209480,14.45002183,27.10129787,,,,,,,,,,,,,20.88780926,13.76519792,30.39066582,,,,11.03448276,,2900,,,7,25,0.690253735,14554,21085,,,0.568,,,,,42.05626042,,,,,0.796608747,9490,11913,0.76841381,0.824803683,0.110221139,1266,11486,0.0780951,0.142347177,0.805506589,9596,11913,0.786745051,0.824268128,31097,,,,,0.234813648,7302,31097,,,0.210792038,6555,31097,,,0.085474483,2658,31097,,,0.010354697,322,31097,,,0.009968807,310,31097,,,0.000482362,15,31097,,,0.289159726,8992,31097,,,0.599575522,18645,31097,,,0.034599068,995,28758,0.021372659,0.047825477,0.496575232,15442,31097,,,0.78834488,23782,30167,, -48,017,48017,TX,Bailey County,2024,1,12306.24223,108,19106,9189.846418,15422.63804,0,,,,2,,,,2,,,,2,12264.12496,8838.902536,16577.53416,,13709.44632,7836.133116,22263.28193,1,,,,2,,0.227,,,0.191,0.262,4.130555248,,,3.292580411,5.0948137,5.20337214,,,4.134724931,6.435666308,0.077272727,68,880,0.059630048,0.094915406,0,,,,,,,,,,0.078711986,0.056388176,0.101035795,0.071428571,0.040478697,0.102378446,,,,,,,0.161,,,0.129,0.199,0.382,,,0.302,0.469,8.1,0.021972247,0.12,,,0.313,,,0.256,0.373,0.787369641,5436,6904,,,0.17564372,,,0.141694615,0.216893609,0.444444444,4,9,0.264827841,0.599456043,307.2,21,6835,,,48.06739346,97,2018,38.97941803,58.63814367,,,,,,,,,,41.74573055,32.28614498,53.11080483,50.12531328,30.61784357,77.41448096,,,,,,,0.284504059,1612,5666,0.252333847,0.316674272,0.000292612,2,6835,,,3417.5,0.000442543,3,6779,,,2259.666667,0.000442543,3,6779,,,2259.666667,3612,,,,,,,,4020,3130,0.37,,,,,,,,0.33,0.38,0.33,,,,,,,,0.28,0.34,0.732381391,3180,4342,0.672951256,0.791811526,0.322412156,679,2106,0.223038738,0.421785573,0.042253521,102,2414,,,0.217,429,,0.134787234,0.299212766,,,,,,,,,,0.18230563,0.052253805,0.312357455,0.011406844,0,0.147710988,4.871083337,111465,22883,1.45106799,8.291098685,0.440258342,818,1858,0.198196926,0.682319759,10.24140454,7,6835,,,106.8252685,37,34636,75.21484746,147.244561,,,,,,,,,,94.38626455,58.42658539,144.2794316,140.6717074,80.40603529,228.4420397,,,,5.7,,,,,0,,,,,0.080291971,165,2055,0,0.166998746,0.011678832,0,0.058963065,0.03892944,0,0.130247673,0.02919708,0,0.092661667,0.615712762,1732,2813,0.508115703,0.723309821,,,,,,,,,,0.633554084,0.343427906,0.923680262,0.897908979,0.773109329,1,0.254,,2813,0.128451844,0.379548156,74.37022634,,,71.92340852,76.81704416,,,,,,,,,,74.35325903,70.72288465,77.98363341,73.85893904,69.38261159,78.33526649,,,,527.7767575,108,19106,425.4804418,630.0730731,,,,,,,,,,538.1597105,407.5969093,697.2483259,528.4833072,365.9900533,738.5024506,,,,108.3893345,10,9226,51.97689894,199.3318452,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.129,,,0.11,0.149,0.168,,,0.145,0.195,0.126,,,0.107,0.146,,,,,,0.12,830,,,,0.021972247,157.4311499,7165,,,,,,,,,,,,,,,,,,,,,,,,,,0.341,,,0.326,0.354,0.330962801,1210,3656,0.291643652,0.37028195,0.200378072,424,2116,0.146761051,0.253995093,0.001180115,8,6779,,,847.375,0.975,73.125,75,,,,,,,,2.42058099,,,,,,,,2.372145403,,2.74813691,,,,,,,,2.795327836,,0.017874125,,,,,-8877.016,,,,,0.79712,34874,43750,0.362885665,1.231354335,52751,,,45024.19149,60477.80851,,,,,,,,,,69839,49320.3617,90357.6383,75785,48669.08511,102900.9149,,,,,,0.87537092,1180,1348,,,,,,,,0.281094197,,52751,,,9.433962264,4,424,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,34.67477105,17,49027,20.19933194,55.51766744,,,,,,,,,,41.37492043,22.03040258,70.75237402,,,,,,,22.5,,800,,,8,10,0.421291053,1860,4415,,,0.475,,,,,44.44759838,,,,,0.732022763,1415,1933,0.621046003,0.842999522,0.028184893,50,1774,0,0.086075963,0.79255044,1532,1933,0.700534354,0.884566525,6779,,,,,0.296798938,2012,6779,,,0.154595073,1048,6779,,,0.012096179,82,6779,,,0.034518366,234,6779,,,0.010621036,72,6779,,,0.001917687,13,6779,,,0.650538428,4410,6779,,,0.31671338,2147,6779,,,0.184642069,1171,6342,0.10190112,0.267383017,0.491370409,3331,6779,,,0.252752028,1745,6904,, -48,019,48019,TX,Bandera County,2024,1,8781.453482,461,61083,7138.637645,10424.26932,0,,,,2,,,,2,,,,2,6850.509733,4184.469316,10580.05667,1,9615.33997,7563.60115,11667.07879,,,,,2,,0.163,,,0.137,0.19,3.664636087,,,2.889388891,4.547276897,5.123529017,,,4.086915759,6.21815521,0.07557677,95,1257,0.060964489,0.090189051,0,,,,,,,,,,0.090643275,0.060214956,0.121071593,0.070938215,0.053918089,0.087958342,,,,,,,0.154,,,0.121,0.191,0.353,,,0.277,0.435,6.9,0.102380882,0.134,,,0.236,,,0.192,0.285,0.686154141,14307,20851,,,0.162058941,,,0.129743181,0.200211543,0.333333333,9,27,0.231289482,0.434909506,190.1,41,21565,,,16.05181639,57,3551,12.15748898,20.79698998,,,,,,,,,,21.79836512,13.96662385,32.43423941,12.5432526,8.400413122,18.01420304,,,,,,,0.208035656,3174,15257,0.184205869,0.231865443,0.0003246,7,21565,,,3080.714286,0.000271309,6,22115,,,3685.833333,0.001763509,39,22115,,,567.0512821,2231,,,,,,,,,2362,0.4,,,,,,,,0.41,0.4,0.37,,,,,,,,0.33,0.38,0.919712513,14972,16279,0.901448972,0.937976054,0.587343249,2014,3429,0.464288835,0.710397663,0.036709337,390,10624,,,0.193,707,,0.120319149,0.265680851,,,,,,,,,,0.138344227,0,0.296863092,0.249089253,0.114452111,0.383726395,4.615784381,128785,27901,3.745045652,5.486523109,0.293322063,1041,3549,0.163382126,0.423261999,10.6654301,23,21565,,,94.97594822,108,113713,77.06338106,112.8885154,,,,,,,,,,57.51448923,30.62404323,98.3515282,109.1289215,88.29181426,133.4044474,,,,8.6,,,,,1,,,,,0.131109833,1140,8695,0.091219843,0.170999823,0.084637681,0.053925608,0.115349754,0.043703278,0.02165971,0.065746845,0.006325474,0,0.012677438,0.812220733,7271,8952,0.765590151,0.858851315,,,,,,,,,,,,,0.670656745,0.622530441,0.718783049,0.666,,8952,0.570331491,0.761668509,77.54250331,,,76.20065369,78.88435294,,,,,,,,,,81.36267589,77.77702827,84.94832351,76.4899778,74.90762589,78.07232972,,,,411.1158476,461,61083,365.8752081,456.356487,,,,,,,,,,283.9909713,203.7968241,385.2658198,450.4289296,395.180618,505.6772412,,,,65.60897054,11,16766,32.7517617,117.3925714,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.11,,,0.094,0.127,0.167,,,0.144,0.192,0.099,,,0.085,0.117,142.3,27,18980,,,0.134,2800,,,,0.102380882,2097.272376,20485,,,,,,,,,,,,,,,,,,,,,,,,,,0.346,,,0.331,0.36,0.229957082,2679,11650,0.200169848,0.259744316,0.141312945,536,3793,0.104376775,0.178249115,0.000723491,16,22115,,,1382.1875,0.835833333,150.45,180,,,,,,,,2.734381848,,,,,,,,2.564104089,2.808834535,2.804755327,,,,,,,,2.637685902,2.904755632,0.011824697,,,,,-2496.901,,,,,0.766075994,43448,56715,0.606049813,0.926102175,69284,,,59897.44681,78670.55319,,,,,,,,,,51250,24091.19149,78408.80851,73132,65607.74468,80656.25532,,,,,,0.488136912,1255,2571,,,,,,,,0.268864384,,69284,,,5.037783375,4,794,,,,,,,,,,,,,,,,,,,,,,,,,,29.35330964,33,113713,19.1745564,43.00939965,29.02042862,,,,,,,,,,,,,29.19565716,17.83346588,45.09032457,,,,23.74398706,27,113713,15.64743708,34.54625456,,,,,,,,,,,,,26.42068625,16.74844869,39.64400181,,,,21.05155718,33,156758,14.49092332,29.56421316,,,,,,,,,,,,,21.50751109,14.0494203,31.51348693,,,,15,,1600,,,6,18,0.696330778,12715,18260,,,0.463,,,,,5.531685354,,,,,0.874824191,7464,8532,0.858535122,0.891113261,0.102162294,841,8232,0.070837728,0.133486859,0.879395218,7503,8532,0.838828549,0.919961887,22115,,,,,0.168799457,3733,22115,,,0.292697264,6473,22115,,,0.012480217,276,22115,,,0.015735926,348,22115,,,0.007325345,162,22115,,,0.000813927,18,22115,,,0.217770744,4816,22115,,,0.741080714,16389,22115,,,0.023471883,480,20450,0.008967835,0.03797593,0.500881755,11077,22115,,,1,20851,20851,, -48,021,48021,TX,Bastrop County,2024,1,8377.410547,1373,266668,7707.823679,9046.997414,0,,,,2,,,,2,9071.455457,6724.808541,11418.10237,,7644.525978,6668.98022,8620.071735,,8781.103888,7731.800802,9830.406975,,,,,2,,0.183,,,0.158,0.209,3.576279532,,,2.848302065,4.385157026,4.878056821,,,3.961053775,5.859450011,0.073600973,605,8220,0.067956012,0.079245935,0,,,,,,,0.101036269,0.070970512,0.131102027,0.073819552,0.066189049,0.081450055,0.070090439,0.061097424,0.079083455,,,,,,,0.158,,,0.128,0.189,0.367,,,0.301,0.437,7.9,0.055613588,0.113,,,0.256,,,0.213,0.302,0.473852041,46066,97216,,,0.198519368,,,0.160876136,0.238908265,0.383561644,56,146,0.343139937,0.423543542,425.2,434,102058,,,27.37226277,600,21920,25.1820256,29.56249995,,,,,,,20.12383901,13.14555976,29.48608675,34.22443025,31.00449281,37.44436769,16.75363911,13.78070481,19.72657341,,,,32.82275711,18.37064799,54.13614633,0.228121646,19128,83850,0.204291859,0.251951433,0.00023516,24,102058,,,4252.416667,0.000357856,38,106188,,,2794.421053,0.00068746,73,106188,,,1454.630137,2524,,,,,,,3275,1829,2453,0.36,,,,,,0.33,0.36,0.31,0.37,0.39,,,,,,0.3,0.35,0.36,0.39,0.830760656,53658,64589,0.81046448,0.851056832,0.529546321,12501,23607,0.476078461,0.583014181,0.033433009,1610,48156,,,0.175,4665,,0.121382979,0.228617021,0.257309942,0,0.705964075,,,,0.212339744,0.044504727,0.38017476,0.243502903,0.179464268,0.307541538,0.069695336,0.034853116,0.104537555,4.290966729,144833,33753,3.773650768,4.80828269,0.195955897,4923,25123,0.145402788,0.246509006,6.368927473,65,102058,,,85.21995336,387,454119,76.72928494,93.71062178,,,,,,,53.74177079,30.71806548,87.27326884,69.40657379,57.28744488,81.52570271,104.114248,90.94197824,117.2865178,,,,9.5,,,,,1,,,,,0.163896848,4290,26175,0.136899012,0.190894685,0.102758353,0.081341787,0.124174919,0.042406877,0.02946407,0.055349683,0.028271251,0.018268571,0.038273932,0.75656394,33829,44714,0.730514394,0.782613486,,,,,,,,,,0.726416205,0.643725514,0.809106897,0.688610039,0.639179413,0.738040664,0.613,,44714,0.560344797,0.665655203,77.35583404,,,76.73360482,77.97806326,,,,,,,75.40462586,73.26484228,77.54440944,80.30175164,78.42288317,82.18062012,76.68386924,75.8308907,77.53684777,,,,405.4807677,1373,266668,383.164509,427.7970263,,,,,,,525.3517569,429.0296782,621.6738357,359.5638682,318.9368872,400.1908492,421.9304858,391.1543174,452.7066542,,,,57.04727188,59,103423,43.42702651,73.58682437,,,,,,,,,,62.02538012,43.67159165,85.49381614,54.64323718,32.89879832,85.33218364,,,,4.207573633,33,7843,2.896300086,5.908997739,,,,,,,,,,,,,,,,,,,,,,0.114,,,0.099,0.13,0.161,,,0.14,0.182,0.11,,,0.095,0.125,258.8,217,83846,,,0.113,10710,,,,0.055613588,4124.915446,74171,,,13.10281817,37,282382,9.225593192,18.06050887,,,,,,,,,,,,,21.32347715,14.38686049,30.44058952,,,,0.348,,,0.334,0.361,0.264843642,15380,58072,0.236247898,0.293439387,0.149399455,4055,27142,0.112463285,0.186335625,0.00048028,51,106188,,,2082.117647,0.912590634,1208.27,1324,,,0.078127985,409,5235,0.033991738,0.122264232,2.616056272,,,,,,,2.302025168,2.420037537,3.125134352,2.888480237,,,,,,,2.139280486,2.780630704,3.291757847,0.1085746,,,,,-7963.73725,,,,,0.83666459,47008,56185,0.776442555,0.896886625,73403,,,66758.06383,80047.93617,,,,123849,5168.319149,242529.6809,71250,33333.23404,109166.766,74618,61572.38298,87663.61702,83440,75685.78723,91194.21277,,,,,,0.68254154,11666,17092,,,43.26648792,,,,,0.272168713,,73403,,,5.755632297,35,6081,,,5.993077186,37,617379,4.219679414,8.260667457,,,,,,,,,,8.720676725,5.39823634,13.33048073,4.394914456,2.40274063,7.373919674,,,,18.83565973,86,454119,14.98055916,23.38002017,18.93776741,,,,,,,,,,8.091821414,4.423874065,13.57670137,27.59446928,20.89978156,35.75183563,,,,14.97404865,68,454119,11.62793469,18.98317471,,,,,,,,,,8.262687356,4.62456339,13.62804624,20.38904024,14.98109987,27.11310119,,,,29.15551063,180,617379,24.89618866,33.41483261,,,,,,,29.02336381,14.9967956,50.69797574,34.05216626,27.08269837,42.26771694,26.6834092,21.31375954,32.9944487,,,,8.645833333,,9600,,,32,51,0.628309485,36665,58355,,,0.552,,,,,26.63677594,,,,,0.77825551,25884,33259,0.754002454,0.802508566,0.11227949,3577,31858,0.088458954,0.136100026,0.841696984,27994,33259,0.816318088,0.86707588,106188,,,,,0.254379026,27012,106188,,,0.15799337,16777,106188,,,0.060750744,6451,106188,,,0.02110408,2241,106188,,,0.010264813,1090,106188,,,0.001732776,184,106188,,,0.434032094,46089,106188,,,0.476372095,50585,106188,,,0.048245376,4442,92071,0.037747919,0.058742833,0.489179568,51945,106188,,,0.720046083,70000,97216,, -48,023,48023,TX,Baylor County,2024,1,14845.41006,104,9243,10259.43369,19431.38644,0,,,,2,,,,2,,,,2,,,,2,13404.68582,8977.328469,19251.36484,,,,,2,,0.179,,,0.151,0.211,3.913018887,,,3.033021763,4.840182672,5.540526697,,,4.419958439,6.718817481,0.087412587,25,286,0.054678723,0.120146452,0,,,,,,,,,,,,,0.080717489,0.044964532,0.116470445,,,,,,,0.184,,,0.146,0.226,0.367,,,0.285,0.453,7.2,0.014413413,0.166,,,0.257,,,0.208,0.311,0.881673882,3055,3465,,,0.174573199,,,0.138417926,0.214275069,0.222222222,2,9,0.058854756,0.422872156,172.6,6,3477,,,33.84615385,22,650,21.21120442,51.24348367,,,,,,,,,,,,,23.86117137,11.91141078,42.69422671,,,,,,,0.18,477,2650,0.154978723,0.205021277,0.002300834,8,3477,,,434.625,0.000288517,1,3466,,,3466,,0,3466,,,,4504,,,,,,,,,4272,0.29,,,,,,,,,0.28,0.31,,,,,,,,,0.3,0.86993517,2147,2468,0.816615633,0.923254708,0.464128843,317,683,0.28598744,0.642270247,0.027012987,52,1925,,,0.205,160,,0.127553192,0.282446809,,,,,,,,,,,,,,,,4.938456047,96853,19612,3.021341345,6.855570749,0.042839657,35,817,0,0.100774401,14.38021283,5,3477,,,113.2054112,20,17667,69.14880617,174.8365761,,,,,,,,,,,,,112.1940958,64.12861969,182.1961826,,,,7.2,,,,,0,,,,,0.074074074,120,1620,0.027092001,0.121056147,0.04375,0,0.088380218,0.027777778,0,0.064877938,0.012345679,0,0.032126316,0.855388813,1254,1466,0.756000073,0.954777554,,,,,,,,,,,,,0.844481605,0.753466523,0.935496687,0.175,,1466,0.086404133,0.263595867,70.65312341,,,67.65206012,73.6541867,,,,,,,,,,,,,71.29422327,68.05749729,74.53094924,,,,777.6552153,104,9243,615.7629311,939.5474994,,,,,,,,,,,,,739.897023,579.9611554,930.3094224,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.119,,,0.102,0.139,0.179,,,0.154,0.206,0.101,,,0.085,0.118,,,,,,0.166,580,,,,0.014413413,53.70437605,3726,,,,,,,,,,,,,,,,,,,,,,,,,,0.348,,,0.331,0.364,0.20387305,379,1859,0.172894327,0.234851773,0.124546554,103,827,0.088801873,0.160291235,0.001154068,4,3466,,,866.5,,,,,,,,,,,2.981951949,,,,,,,,,3.067010599,3.326816949,,,,,,,,,3.517570117,0.011208791,,,,,-2201.288,,,,,0.742548537,43448,58512,0.499643742,0.985453332,49059,,,41745.6383,56372.3617,,,,,,,,,,,,,50096,35265.53192,64926.46809,,,,,,0.603225807,374,620,,,,,,,,0.284963004,,49059,,,12.90322581,2,155,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,300,,,0,0,0.63037037,1702,2700,,,0.398,,,,,31.14092356,,,,,0.679756263,1004,1477,0.621270017,0.738242508,0.103202847,145,1405,0.029872901,0.176532793,0.819228165,1210,1477,0.762636917,0.875819414,3466,,,,,0.227639931,789,3466,,,0.232256203,805,3466,,,0.025100981,87,3466,,,0.01067513,37,3466,,,0.003173687,11,3466,,,0.002308136,8,3466,,,0.153491056,532,3466,,,0.79169071,2744,3466,,,0,0,3313,0,0.021578437,0.504904789,1750,3466,,,1,3465,3465,, -48,025,48025,TX,Bee County,2024,1,11508.33959,571,90860,10235.18857,12781.49062,0,,,,2,,,,2,,,,2,13720.15531,11937.1905,15503.12012,,10851.82917,8282.856609,13420.80173,,,,,2,,0.242,,,0.211,0.278,4.231483187,,,3.377677871,5.153038359,5.049637972,,,3.97813364,6.185406185,0.106000876,242,2283,0.093373114,0.118628638,0,,,,,,,0.227272727,0.103445395,0.351100059,0.10951526,0.09454193,0.124488591,0.090909091,0.066639134,0.115179048,,,,,,,0.181,,,0.148,0.215,0.412,,,0.328,0.497,6.3,0.107818232,0.163,,,0.322,,,0.268,0.378,0.553580056,17187,31047,,,0.191951379,,,0.152989022,0.234863513,0.157894737,3,19,0.054083319,0.295484356,569.1,176,30924,,,38.41999691,249,6481,33.6478509,43.19214293,,,,,,,,,,44.34678386,38.51311581,50.18045191,16.69316375,10.33333147,25.51727403,,,,,,,0.175409084,3441,19617,0.152770786,0.198047382,0.000161687,5,30924,,,6184.8,0.000296111,9,30394,,,3377.111111,0.000493519,15,30394,,,2026.266667,2522,,,,,,,,3522,1691,0.32,,,,,,,,0.33,0.32,0.28,,,,,,,0.31,0.24,0.3,0.802361111,17331,21600,0.776724338,0.827997884,0.44700333,4833,10812,0.385291065,0.508715595,0.058194126,533,9159,,,0.323,1962,,0.225297872,0.420702128,,,,,,,,,,0.293314014,0.219621826,0.367006201,0.171821306,0.056252317,0.287390294,5.032699695,102194,20306,3.879990652,6.185408737,0.262835989,1633,6213,0.168056805,0.357615173,4.203854611,13,30924,,,73.84332804,119,161152,60.57568274,87.11097333,,,,,,,,,,59.52318794,45.08228127,77.11919404,115.3635977,87.37526233,149.4669218,,,,9.3,,,,,1,,,,,0.162352941,1380,8500,0.125488615,0.199217267,0.126498801,0.08790359,0.165094012,0.042823529,0.021050006,0.064597053,0.012352941,0.002157567,0.022548315,0.834184951,8326,9981,0.798006016,0.870363887,,,,,,,,,,0.803807011,0.758821571,0.848792451,0.881855389,0.849093753,0.914617024,0.258,,9981,0.201132121,0.314867879,73.43236403,,,72.38294174,74.48178631,,,,,,,,,,71.20918336,69.87107852,72.54728819,74.37071507,72.31510267,76.42632747,,,,586.3259957,571,90860,537.9282153,634.7237762,,,,,,,,,,676.0239883,604.9906234,747.0573533,543.4993884,464.5636493,622.4351275,,,,65.45145139,20,30557,39.97944689,101.0844582,,,,,,,,,,61.32282085,33.5257568,102.8892734,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.136,,,0.118,0.155,0.166,,,0.144,0.19,0.143,,,0.124,0.165,547.8,145,26471,,,0.163,5090,,,,0.107818232,3435.196691,31861,,,13.54138455,13,96002,7.210216965,23.15617999,,,,,,,,,,,,,,,,,,,0.367,,,0.354,0.379,0.215936019,2916,13504,0.184957296,0.246914742,0.088978453,574,6451,0.061574198,0.116382708,0.000723827,22,30394,,,1381.545455,0.878963415,288.3,328,,,,,,,,2.69615241,,,,,,,,2.623758444,3.173371537,2.681220106,,,,,,,,2.623271048,3.059127262,0.080267645,,,,,169.13525,,,,,0.752758593,37930,50388,0.65565711,0.849860077,48176,,,41378.55319,54973.44681,,,,47337,996.4042553,93677.59575,,,,44294,34043.61702,54544.38298,68686,56774.68085,80597.31915,,,,,,0.791288924,4015,5074,,,44.27038883,,,,,0.35189721,,48176,,,3.504672897,6,1712,,,5.291565245,12,226776,2.734228979,9.243299577,,,,,,,,,,,,,,,,,,,21.09627688,36,161152,14.69432982,29.33981426,22.33915806,,,,,,,,,,16.85326417,9.43264402,27.79689628,29.28521955,16.39071507,48.30151609,,,,9.307982526,15,161152,5.209607161,15.35210166,,,,,,,,,,,,,,,,,,,17.63855082,40,226776,12.6012393,24.01869994,,,,,,,,,,14.90823978,9.106340165,23.02456722,27.01127365,16.26255124,42.18144975,,,,15.18518519,,2700,,,9,32,0.375523221,9420,25085,,,0.46,,,,,18.8516575,,,,,0.673245358,5765,8563,0.631536088,0.714954628,0.159645233,1296,8118,0.115514634,0.203775832,0.75580988,6472,8563,0.712130577,0.799489183,30394,,,,,0.202868987,6166,30394,,,0.132164243,4017,30394,,,0.083536224,2539,30394,,,0.009870369,300,30394,,,0.008159505,248,30394,,,0.001414753,43,30394,,,0.601895111,18294,30394,,,0.296736198,9019,30394,,,0.032048447,942,29393,0.021628051,0.042468843,0.385997236,11732,30394,,,0.541662641,16817,31047,, -48,027,48027,TX,Bell County,2024,1,8915.516887,4805,1063266,8585.101039,9245.932734,0,,,,2,6580.018052,4811.906243,8348.129861,,11628.68896,10835.2981,12422.07981,,6430.174635,5878.596451,6981.752819,,9105.020181,8596.472097,9613.568266,,14984.8572,10495.20976,20745.35868,,,0.191,,,0.167,0.217,3.976017128,,,3.295731017,4.704044009,5.033689223,,,4.309496924,5.837163117,0.089557163,3800,42431,0.086840155,0.092274172,0,,,,0.085397097,0.069389893,0.1014043,0.133667837,0.126986351,0.140349324,0.078894973,0.074082484,0.083707461,0.07180914,0.067915785,0.075702496,0.079338843,0.057802536,0.10087515,0.091767881,0.077069289,0.106466474,0.173,,,0.145,0.205,0.401,,,0.354,0.451,6.8,0.106446297,0.141,,,0.27,,,0.233,0.31,0.723626523,268210,370647,,,0.176737017,,,0.148763116,0.208074964,0.291479821,65,223,0.257669458,0.325826969,810.6,3077,379617,,,27.63486353,2358,85327,26.51943565,28.7502914,46.93140794,24.98899816,80.25413689,5.847953216,2.804320875,10.75459418,29.64696704,27.29037421,32.00355987,31.17354882,29.0666469,33.28045074,23.67018668,21.94598338,25.39438998,56.60377359,39.64458713,78.3634819,26.5601382,21.86623806,31.25403834,0.15403075,50322,326701,0.139732878,0.168328622,0.00072178,274,379617,,,1385.463504,0.000839371,326,388386,,,1191.368098,0.002639127,1025,388386,,,378.9131707,3176,,,,,,2283,4232,2717,3038,0.4,,,,,,0.34,0.37,0.35,0.42,0.31,,,,,,0.27,0.23,0.28,0.34,0.908159591,206817,227732,0.900909844,0.915409338,0.682618157,74974,109833,0.654996171,0.710240142,0.044129858,6590,149332,,,0.195,20455,,0.15687234,0.23312766,0.510380623,0.265606419,0.755154826,0.193650794,0.074390408,0.312911179,0.235149749,0.193537917,0.27676158,0.301279305,0.258664748,0.343893862,0.12383323,0.098366755,0.149299704,4.363024718,119320,27348,4.144784117,4.58126532,0.314128516,32201,102509,0.284973193,0.343283839,7.533909177,286,379617,,,66.57697956,1209,1815943,62.82407942,70.32987971,,,,54.5574264,36.5379647,78.35356493,70.69767442,62.48964755,78.90570129,36.31284916,30.83798883,41.7877095,86.09583271,79.69486259,92.49680283,,,,8.4,,,,,0,,,,,0.15734224,19785,125745,0.145827808,0.168856672,0.120811608,0.10947699,0.132146226,0.04012088,0.03372977,0.046511989,0.007157342,0.004548041,0.009766643,0.779317223,131283,168459,0.766579583,0.792054862,0.769557823,0.651815495,0.887300152,0.769543737,0.738157473,0.800930002,0.784673913,0.753590603,0.815757223,0.740009595,0.715380189,0.764639,0.798955315,0.783143178,0.814767452,0.261,,168459,0.245975891,0.276024109,76.04237621,,,75.73376362,76.3509888,,,,81.66997738,79.42227947,83.91767528,72.74540263,72.04972989,73.44107537,79.02598675,78.23227454,79.81969897,75.84525915,75.4176863,76.272832,73.04735227,66.36294674,79.7317578,453.8451913,4805,1063266,440.8686744,466.8217082,,,,291.8392002,236.1503297,347.5280708,575.3955897,542.6540536,608.1371259,343.0980078,316.7872257,369.4087899,466.8359736,448.3805493,485.2913978,719.7810479,532.4979817,951.5887171,66.60223218,297,445931,59.02751135,74.17695302,,,,,,,110.8136468,90.38168359,131.2456099,51.84723283,40.7112293,65.08945294,61.00234478,49.41209512,74.49430391,,,,6.461244198,277,42871,5.700335862,7.222152534,,,,,,,11.113336,9.045866905,13.1808051,5.236928795,4.015123278,6.713506367,5.025125628,4.030297697,6.19109532,,,,,,,0.121,,,0.106,0.139,0.173,,,0.152,0.195,0.121,,,0.106,0.139,291.4,883,303003,,,0.141,51450,,,,0.106446297,33023.36704,310235,,,12.4048512,138,1112468,10.33514792,14.47455447,,,,,,,14.11199278,9.829520032,19.62636579,5.187242151,2.903260055,8.555567077,16.35109062,12.96539794,20.35034766,,,,0.388,,,0.376,0.4,0.188245978,42079,223532,0.170373638,0.206118319,0.085741597,9239,107754,0.066677767,0.104805426,0.002034059,790,388386,,,491.6278481,0.893468506,4241.295,4747,,,0.074155351,1622,21873,0.052469555,0.095841147,2.803409064,,,,,,3.070332331,2.478704665,2.733237331,3.117184227,3.013428929,,,,,,3.430511962,2.672566737,2.956079585,3.281533404,0.094905317,,,,,-3328.633733,,,,,0.839059029,42302,50416,0.797673396,0.880444662,62412,,,58674.29787,66149.70213,60345,37373.08511,83316.91489,64919,55463.34043,74374.65957,53611,50560.78723,56661.21277,54167,51117.97872,57216.02128,71154,69052.21277,73255.78723,,,,,,0.58555701,41167,70304,,,44.89711405,,,,,0.235387426,,62412,,,5.081779633,151,29714,,,8.148372634,203,2491295,7.027441494,9.269303773,,,,,,,20.30545997,16.52793439,24.08298555,4.295607821,2.830832621,6.249883851,4.801638959,3.607138968,6.265097277,,,,18.1434905,324,1815943,16.1321727,20.15480829,17.84196971,,,,18.69982518,8.967293028,34.3896443,11.66475968,8.629653423,15.4214309,9.665362694,6.936031142,13.11215587,25.52081927,21.96166098,29.07997756,,,,18.39264779,334,1815943,16.420102,20.36519357,,,,,,,27.03875969,21.96266648,32.1148529,9.883970778,7.236308855,13.18383191,19.82062336,16.74938595,22.89186077,,,,14.24961717,355,2491295,12.76728651,15.73194783,,,,,,,15.73215818,12.58369586,19.42908737,9.068505399,6.86839743,11.7493006,17.96168648,15.48467797,20.43869499,,,,10.29569893,,37200,,,156,227,0.521419653,127375,244285,,,0.613,,,,,75.93650814,,,,,0.545462657,73362,134495,0.531749375,0.559175939,0.14173005,18485,130424,0.130981786,0.152478313,0.892479274,120034,134495,0.881872792,0.903085757,388386,,,,,0.27334147,106162,388386,,,0.118214869,45913,388386,,,0.223223803,86697,388386,,,0.011213072,4355,388386,,,0.032395606,12582,388386,,,0.008815972,3424,388386,,,0.268094113,104124,388386,,,0.429773473,166918,388386,,,0.022769188,7815,343227,0.019549903,0.025988473,0.50037334,194338,388386,,,0.136906545,50744,370647,, -48,029,48029,TX,Bexar County,2024,1,8348.75842,26024,5759253,8211.326537,8486.190302,0,5002.347443,3055.563775,7725.719911,1,3336.930287,2800.47254,3873.388035,,11498.6684,10888.07976,12109.25705,,8381.833583,8207.370242,8556.296924,,8268.138259,7995.268797,8541.007722,,10391.35497,6158.575524,16422.82083,1,,0.21,,,0.18,0.241,3.962295361,,,3.270344509,4.705333252,5.32661149,,,4.568583366,6.107223962,0.088983945,16455,184921,0.087686222,0.090281667,0,0.070351759,0.034819212,0.105884306,0.092798691,0.085523268,0.100074113,0.142248722,0.13622409,0.148273355,0.088413598,0.086811182,0.090016013,0.074290263,0.07176591,0.076814615,0.074906367,0.043330691,0.106482043,0.074016362,0.063888712,0.084144011,0.132,,,0.107,0.158,0.388,,,0.34,0.435,6.9,0.096878185,0.14,,,0.254,,,0.216,0.295,0.891960679,1792238,2009324,,,0.183486352,,,0.155260507,0.214010508,0.294670846,282,957,0.278656062,0.310814717,692.2,14039,2028236,,,23.75376585,11614,488933,23.32175204,24.18577967,14.64435146,8.006203218,24.57073339,3.183222545,2.204474149,4.448234444,21.67016033,20.13452718,23.20579348,28.51248256,27.9422626,29.08270253,11.00508906,10.33558848,11.67458964,,,,11.24038651,9.176979553,13.30379347,0.189110341,328128,1735114,0.180769915,0.197450766,0.000735615,1492,2028236,,,1359.407507,0.000950702,1958,2059530,,,1051.853933,0.002322375,4783,2059530,,,430.5937696,2437,,,,,,1305,2987,2985,1986,0.37,,,,,0.18,0.28,0.28,0.34,0.4,0.39,,,,,0.43,0.37,0.27,0.37,0.42,0.858864988,1114787,1297977,0.855328398,0.862401577,0.646103847,386080,597551,0.63489474,0.657312955,0.036962556,36154,978125,,,0.215,107610,,0.187595745,0.242404255,0.274064171,0.208461875,0.339666467,0.238081805,0.185769268,0.290394343,0.271341139,0.237241082,0.305441195,0.246554256,0.235195537,0.257912975,0.096143325,0.082974057,0.109312592,4.583894021,131489,28685,4.472275909,4.695512134,0.299574733,150891,503684,0.286313118,0.312836349,5.625578089,1141,2028236,,,64.87897921,6490,10003240,63.30050413,66.4574543,,,,22.87805994,17.76570873,29.0033924,81.06019191,74.58480902,87.53557479,55.04129743,53.17600609,56.90658876,90.07917407,86.49830875,93.6600394,,,,9.1,,,,,1,,,,,0.179432481,115655,644560,0.173894849,0.184970113,0.139421027,0.134488967,0.144353087,0.044092094,0.041050242,0.047133946,0.009665508,0.008460844,0.010870172,0.724703372,696295,960800,0.718976715,0.730430029,0.631260984,0.567298507,0.695223461,0.677193406,0.649584147,0.704802666,0.749622063,0.72800357,0.771240557,0.726104192,0.719723919,0.732484466,0.753770911,0.745437913,0.762103909,0.364,,960800,0.355408048,0.372591952,76.73775905,,,76.60879401,76.86672409,113.9162188,82.58209762,145.25034,88.20531277,86.64688021,89.76374533,73.88702946,73.37641546,74.39764347,76.8404188,76.66188035,77.01895725,76.59067541,76.36357964,76.81777118,73.23044794,69.89503939,76.56585649,424.119381,26024,5759253,418.9181305,429.3206316,233.9159845,161.9936192,326.8741423,165.658171,146.9733627,184.3429792,547.1886733,525.4075039,568.9698428,428.4384147,421.4149641,435.4618653,421.6424052,412.3259267,430.9588836,477.2576061,334.2653599,660.7256974,53.77643824,1219,2266792,50.75755545,56.79532104,,,,53.5371437,35.85466537,76.88826879,105.5402341,89.58072663,121.4997415,50.05086127,46.52017624,53.5815463,51.12096161,44.48524757,57.75667566,,,,6.258975843,1168,186612,5.900022564,6.617929122,,,,,,,12.10264267,10.21548694,13.98979839,6.207442336,5.764067259,6.650817413,5.259238574,4.573553456,5.944923692,,,,,,,0.121,,,0.105,0.138,0.166,,,0.145,0.187,0.127,,,0.111,0.144,414.6,6913,1667200,,,0.14,278860,,,,0.096878185,166124.0952,1714773,,,15.23450995,923,6058613,14.25166794,16.21735195,,,,,,,20.0792136,16.16653027,24.65282486,13.47922656,12.29535014,14.66310299,20.1567638,17.96529548,22.34823213,,,,0.368,,,0.355,0.38,0.230146422,284339,1235470,0.219423018,0.240869826,0.092905508,48846,525760,0.079799125,0.106011891,0.001366331,2814,2059530,,,731.8869936,0.858516787,21581.395,25138,,,0.090618931,10732,118430,0.080566978,0.100670884,2.765826863,,,,,,3.298316003,2.521605708,2.65011326,3.300343776,2.926720764,,,,,,3.715958899,2.628144402,2.813164315,3.42396566,0.152657459,,,,,-4279.016933,,,,,0.835272707,45438,54399,0.817059824,0.853485591,65839,,,63575.17021,68102.82979,60496,53137.3617,67854.6383,85862,81019.78723,90704.21277,53702,50894.85106,56509.14894,59171,58020.02128,60321.97872,84566,82830,86302,,,,,,0.633882327,227269,358535,,,41.97500167,,,,,0.282932608,,65839,,,3.99967709,545,136261,,,8.221452525,1137,13829673,7.743566432,8.699338618,,,,2.733177294,1.364392258,4.89040916,23.78256278,20.79228464,26.77284093,8.227114273,7.612348922,8.841879623,4.856471473,4.154744772,5.558198173,,,,13.17778906,1320,10003240,12.45921685,13.89636126,13.19572459,,,,7.423350813,4.595171154,11.34738027,8.628000258,6.672894774,10.97693181,10.17207401,9.359580873,10.98456715,20.90968022,19.17817601,22.64118444,,,,14.42532619,1443,10003240,13.68102529,15.1696271,,,,,,,27.33425076,23.57401369,31.09448783,11.94618294,11.07718865,12.81517723,18.41602201,16.7969219,20.03512212,,,,11.53317219,1595,13829673,10.96716167,12.09918271,,,,4.224001272,2.4606364,6.763035222,14.68059431,12.33120992,17.0299787,11.38403022,10.66087148,12.10718895,12.35232962,11.2331958,13.47146343,,,,10.64064064,,199800,,,1111,1015,0.575525076,770818,1339330,,,0.651,,,,,158.3199228,,,,,0.58662492,428306,730119,0.581041952,0.592207888,0.153362869,108626,708294,0.148061351,0.158664388,0.884669485,645914,730119,0.880148663,0.889190308,2059530,,,,,0.245889596,506417,2059530,,,0.127516472,262624,2059530,,,0.076989896,158563,2059530,,,0.01291314,26595,2059530,,,0.034793861,71659,2059530,,,0.002409288,4962,2059530,,,0.612828655,1262139,2059530,,,0.258544425,532480,2059530,,,0.055677488,104694,1880365,0.053184015,0.058170962,0.502600108,1035120,2059530,,,0.047076529,94592,2009324,, -48,031,48031,TX,Blanco County,2024,1,7847.969311,188,32680,5640.485806,10055.45282,0,,,,2,,,,2,,,,2,4664.733468,2483.774111,7976.836295,1,9263.388237,6192.837971,12333.9385,,,,,2,,0.158,,,0.134,0.184,3.505299359,,,2.825433285,4.197821951,5.041329908,,,4.06803661,6.040298566,0.060031596,38,633,0.041526097,0.078537094,0,,,,,,,,,,,,,0.073496659,0.049359276,0.097634043,,,,,,,0.151,,,0.121,0.187,0.355,,,0.276,0.438,8.1,0.009537848,0.126,,,0.23,,,0.189,0.279,0.377263935,4291,11374,,,0.176041727,,,0.139731078,0.215474531,0.192307692,5,26,0.09558881,0.306287398,143,17,11886,,,12.42829828,26,2092,8.118577063,18.21033656,,,,,,,,,,18.21192053,9.091325111,32.58615648,9.523809524,5.071027466,16.28600434,,,,,,,0.200113572,1762,8805,0.176283785,0.223943359,0.000420663,5,11886,,,2377.2,0.000322113,4,12418,,,3104.5,0.000402641,5,12418,,,2483.6,1888,,,,,,,,,1671,0.36,,,,,,,,0.31,0.36,0.36,,,,,,,,0.17,0.37,0.903265906,7993,8849,0.880396876,0.926134936,0.529613734,1234,2330,0.433249581,0.625977886,0.0278985,199,7133,,,0.133,271,,0.082957447,0.183042553,,,,,,,,,,0.251612903,0.096802487,0.406423319,0.127694859,0.049096457,0.206293261,4.498116488,155230,34510,3.538458472,5.457774504,0.137712895,283,2055,0.062202079,0.213223712,11.77856302,14,11886,,,82.47214461,49,59414,61.0133466,109.0325489,,,,,,,,,,,,,97.17314488,70.60615583,130.4504114,,,,8.7,,,,,1,,,,,0.126473741,590,4665,0.080461848,0.172485634,0.076523995,0.037029476,0.116018514,0.045016077,0.017969563,0.072062592,0.006430868,0,0.01676954,0.744792644,3969,5329,0.715808379,0.773776909,,,,,,,,,,,,,0.735854189,0.675665019,0.79604336,0.469,,5329,0.384538614,0.553461386,78.6681046,,,76.80986679,80.52634241,,,,,,,,,,79.46880779,76.12818078,82.80943479,77.73278024,75.328711,80.13684947,,,,343.6315449,188,32680,285.6485138,401.6145761,,,,,,,,,,265.7639471,162.3355233,410.4508616,373.3305044,301.3853394,445.2756693,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.107,,,0.092,0.125,0.164,,,0.141,0.189,0.094,,,0.08,0.111,104.6,11,10511,,,0.126,1430,,,,0.009537848,100.118794,10497,,,,,,,,,,,,,,,,,,,,,,,,,,0.33,,,0.314,0.346,0.210557621,1416,6725,0.183153366,0.237961876,0.170232135,374,2197,0.128530007,0.211934262,0.00048317,6,12418,,,2069.666667,0.967226891,115.1,119,,,,,,,,3.077949768,,,,,,,,2.705177497,3.368404982,3.245613314,,,,,,,,2.691454162,3.664868513,0.022348455,,,,,114.3685,,,,,0.720728507,45865,63637,0.605188855,0.836268159,82236,,,70890.6383,93581.3617,128333,87926.02128,168739.9787,,,,,,,62197,52840.23404,71553.76596,82560,71941.44681,93178.55319,,,,,,0.376136364,662,1760,,,,,,,,0.242934968,,82236,,,7.246376812,3,414,,,,,,,,,,,,,,,,,,,,,,,,,,28.82416992,16,59414,15.75844191,48.36205932,26.92967987,,,,,,,,,,,,,32.45896355,15.56533469,59.69318964,,,,20.19725991,12,59414,10.43621892,35.28054844,,,,,,,,,,,,,24.29328622,12.12712095,43.46739954,,,,15.89047794,13,81810,8.461010257,27.17320122,,,,,,,,,,,,,17.56879782,8.770280569,31.43543229,,,,,,1000,,,-888,-888,0.79924812,7441,9310,,,0.503,,,,,31.90403175,,,,,0.779983457,3772,4836,0.746118199,0.813848716,0.106424825,487,4576,0.061793109,0.151056541,0.871794872,4216,4836,0.827245463,0.916344281,12418,,,,,0.165807699,2059,12418,,,0.267514898,3322,12418,,,0.01207924,150,12418,,,0.014253503,177,12418,,,0.010066033,125,12418,,,0.000724754,9,12418,,,0.19729425,2450,12418,,,0.759381543,9430,12418,,,0.013501431,151,11184,0,0.029417009,0.494765663,6144,12418,,,1,11374,11374,, -48,033,48033,TX,Borden County,2024,0,,,,,,2,,,,2,,,,2,,,,2,,,,2,,,,2,,,,2,,0.129,,,0.108,0.153,3.125646805,,,2.451835057,3.89676817,4.856937478,,,3.857464578,5.882601433,,,,,,0,,,,,,,,,,,,,,,,,,,,,,0.127,,,0.095,0.16,0.325,,,0.247,0.41,7,0.151057402,0.108,,,0.193,,,0.153,0.238,0.036450079,23,631,,,0.188701624,,,0.151226886,0.230568046,0,0,9,0,0.215915826,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.126582279,60,474,0.106326959,0.146837598,0,0,617,,,-617,0,0,585,,,-585,0,0,585,,,-585,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.945330296,415,439,0.889592558,1,0.792207792,122,154,0.456260377,1,0.018544936,13,701,,,0.175,22,,0.105893617,0.244106383,,,,,,,,,,,,,,,,3.345051429,146346,43750,2.624256709,4.065846148,0,0,235,0,0.107554495,0,0,617,,,,,,,,,,,,,,,,,,,,,,,,,,6.8,,,,,1,,,,,0.111111111,25,225,0,0.229059422,0,0,0.238685442,0.111111111,0,0.268922479,0.044444444,0,0.148777489,0.771535581,206,267,0.644194503,0.898876658,,,,,,,,,,,,,,,,0.31,,267,0.013261733,0.606738267,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.092,,,0.078,0.107,0.151,,,0.129,0.173,0.083,,,0.07,0.097,3230.2,17,526,,,0.108,60,,,,0.151057402,96.8277948,641,,,,,,,,,,,,,,,,,,,,,,,,,,0.309,,,0.293,0.325,0.134897361,46,341,0.113450552,0.156344169,0.113475177,16,141,0.07177305,0.155177305,0,0,585,,,-585,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13382.12,,,,,0.623483759,44667,71641,0.381138206,0.865829313,75186,,,63666.68085,86705.31915,,,,,,,,,,,,,78750,48583.87234,108916.1277,,,,,,0.420408163,103,245,,,,,,,,0.224563084,,75186,,,11.76470588,1,85,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,100,,,0,0,0.945454546,416,440,,,0.338,,,,,0.193908559,,,,,0.734883721,158,215,0.588305414,0.881462028,0.005952381,1,168,0,0.404558527,0.865116279,186,215,0.841838175,0.888394383,585,,,,,0.215384615,126,585,,,0.244444444,143,585,,,0.01025641,6,585,,,0.008547009,5,585,,,0.001709402,1,585,,,0,0,585,,,0.225641026,132,585,,,0.74017094,433,585,,,0.004792332,3,626,0,0.115769083,0.485470086,284,585,,,1,631,631,, -48,035,48035,TX,Bosque County,2024,1,10003.19538,386,49599,8293.25357,11713.13719,0,,,,2,,,,2,,,,2,4407.263249,2567.393255,7056.4554,1,11709.58471,9422.311056,13996.85837,,,,,2,,0.182,,,0.156,0.213,3.949073643,,,3.124802247,4.84902769,5.472849681,,,4.392698995,6.61919103,0.059551431,77,1293,0.046652003,0.072450858,0,,,,,,,,,,0.061538462,0.037687531,0.085389392,0.058823529,0.043005307,0.074641752,,,,,,,0.178,,,0.142,0.218,0.358,,,0.281,0.443,6.7,0.097418734,0.148,,,0.257,,,0.21,0.309,0.308582397,5627,18235,,,0.17176927,,,0.138167288,0.211815954,0.08,2,25,0.014970891,0.19576483,313.5,58,18503,,,24.54495312,89,3626,19.71161284,30.20467689,,,,,,,,,,33.02752294,23.13207103,45.72401329,20.27883397,14.95201133,26.8867918,,,,,,,0.216437364,2989,13810,0.192607577,0.240267152,0.000540453,10,18503,,,1850.3,0.000374392,7,18697,,,2671,0.000534845,10,18697,,,1869.7,3572,,,,,,,,,3735,0.43,,,,,,,,0.25,0.44,0.26,,,,,,,,0.25,0.27,0.8768918,11646,13281,0.855061631,0.89872197,0.559875583,2160,3858,0.477002641,0.642748526,0.036879596,321,8704,,,0.189,724,,0.117510638,0.260489362,,,,,,,0.056074766,0,0.444250545,0.224422442,0.120535029,0.328309855,0.153846154,0.091900624,0.215791684,4.001121457,117737,29426,3.484397617,4.517845298,0.177280998,682,3847,0.108468401,0.246093596,11.88996379,22,18503,,,98.05189208,91,92808,78.94526711,120.3859957,,,,,,,,,,,,,122.0093681,97.7245022,150.4981048,,,,8.7,,,,,0,,,,,0.117849759,855,7255,0.091575849,0.144123669,0.069396253,0.048292637,0.090499869,0.033769814,0.019479186,0.048060441,0.019986216,0.005027027,0.034945406,0.839834358,6287,7486,0.814259919,0.865408796,,,,,,,,,,0.886409736,0.815707267,0.957112205,0.775152863,0.722504143,0.827801583,0.445,,7486,0.388019894,0.501980106,75.04670095,,,73.76666621,76.32673569,,,,,,,,,,81.90203008,77.14734344,86.65671672,73.73111785,72.13590249,75.3263332,,,,499.764318,386,49599,443.865684,555.6629519,,,,,,,,,,275.4935312,178.2848877,406.6827981,549.0428625,480.849322,617.2364031,,,,58.25129609,10,17167,27.93376068,107.1262075,,,,,,,,,,,,,91.43275121,43.84555816,168.1480849,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.121,,,0.104,0.14,0.179,,,0.157,0.205,0.105,,,0.09,0.122,126,20,15873,,,0.148,2710,,,,0.097418734,1774.189991,18212,,,21.50884551,12,55791,11.11393434,37.57162454,,,,,,,,,,,,,28.12214385,14.53112209,49.12372583,,,,0.349,,,0.333,0.364,0.245166434,2460,10034,0.2153792,0.274953668,0.143001007,568,3972,0.106064837,0.179937177,0.000481361,9,18697,,,2077.444444,0.878870968,136.225,155,,,0.182669789,156,854,0.059930909,0.305408669,2.67851146,,,,,,,,2.472374709,2.834045622,2.983699191,,,,,,,,2.812323995,3.140657199,0.050420684,,,,,-8051.445857,,,,,0.721184839,38931,53982,0.656154094,0.786215585,61048,,,52749.2766,69346.7234,,,,,,,,,,54800,46214.12766,63385.87234,65683,60068.70213,71297.29787,,,,,,0.640435835,1587,2478,,,32.04391201,,,,,0.223791115,,61048,,,5.08646999,5,983,,,,,,,,,,,,,,,,,,,,,,,,,,17.18218476,15,92808,9.148789739,29.38205923,16.16239979,,,,,,,,,,,,,23.45517828,12.11963289,40.9714762,,,,,,,,,,,,,,,,,,,,,,,,,,,28.72760024,37,128796,20.22688171,39.59721276,,,,,,,,,,,,,33.14517587,22.81561396,46.54815017,,,,,,1700,,,0,-888,0.663709091,9126,13750,,,0.498,,,,,18.41072256,,,,,0.757454995,5512,7277,0.728156769,0.786753221,0.065662308,462,7036,0.044868665,0.086455951,0.799230452,5816,7277,0.774297753,0.824163151,18697,,,,,0.207305985,3876,18697,,,0.250681928,4687,18697,,,0.019361395,362,18697,,,0.01101781,206,18697,,,0.008022677,150,18697,,,0.001123175,21,18697,,,0.203562069,3806,18697,,,0.750387763,14030,18697,,,0.021929573,383,17465,0.012315827,0.03154332,0.506605338,9472,18697,,,1,18235,18235,, -48,037,48037,TX,Bowie County,2024,1,11413.01028,1859,259306,10620.00913,12206.01143,0,,,,2,,,,2,15741.89429,13895.58504,17588.20354,,6964.012331,5019.047542,9413.321589,,10695.11105,9717.004322,11673.21778,,,,,2,,0.193,,,0.166,0.224,4.006996224,,,3.234255471,5.083967328,5.803057708,,,4.782222917,7.203547148,0.108859444,838,7698,0.101901623,0.115817265,0,,,,0.188679245,0.114195502,0.263162989,0.165282029,0.150058838,0.18050522,0.071801567,0.053519341,0.090083792,0.083061129,0.074798865,0.091323394,,,,0.127853881,0.083627073,0.17208069,0.189,,,0.153,0.233,0.397,,,0.323,0.496,6.9,0.094905791,0.141,,,0.272,,,0.226,0.333,0.517444802,48067,92893,,,0.174986184,,,0.142594816,0.223606054,0.222222222,18,81,0.165842612,0.282568558,615.7,570,92581,,,37.4821756,736,19636,34.7742174,40.19013379,,,,,,,56.71317268,50.4301613,62.99618405,38.08487486,29.68902835,48.11794822,27.26550781,24.22538994,30.30562568,,,,70.11686144,50.53406633,94.77762734,0.17224085,12226,70982,0.15317702,0.19130468,0.000723691,67,92581,,,1381.80597,0.00061933,57,92035,,,1614.649123,0.001292986,119,92035,,,773.4033613,3221,,,,,,,4632,1637,2944,0.39,,,,,,0.58,0.41,0.23,0.39,0.38,,,,,0.36,0.47,0.33,0.31,0.39,0.899791065,56416,62699,0.889821139,0.909760991,0.523081978,12736,24348,0.481322015,0.564841941,0.04598595,1774,38577,,,0.257,5518,,0.192659575,0.321340426,0.095238095,0,0.810937736,,,,0.385769603,0.314472893,0.457066314,0.209378856,0.112107953,0.30664976,0.152623894,0.110714126,0.194533663,5.629923174,115785,20566,4.947940827,6.311905521,0.363138686,7960,21920,0.309389342,0.41688803,12.9616228,120,92581,,,77.83715356,364,467643,69.84079379,85.83351332,,,,,,,76.04497761,61.07036138,93.57988858,48.24573159,28.5934782,76.24905591,85.99650576,75.39965993,96.59335158,,,,9.4,,,,,0,,,,,0.148169754,5080,34285,0.128386172,0.167953335,0.112303587,0.095074359,0.129532816,0.031063147,0.021722253,0.040404042,0.015312819,0.009022021,0.021603617,0.851163282,32231,37867,0.835376642,0.866949922,,,,,,,0.863890682,0.840271991,0.887509374,0.850830816,0.82228151,0.879380121,0.852053202,0.834987838,0.869118566,0.176,,37867,0.154652713,0.197347287,73.17660628,,,72.58740485,73.7658077,,,,,,,69.65768573,68.38505893,70.93031253,84.30277644,76.4223034,92.18324947,73.64856664,72.93132626,74.36580702,,,,567.6813719,1859,259306,541.0118404,594.3509034,,,,,,,764.8267114,700.4688918,829.184531,326.0314034,237.8095429,436.2556692,540.7852498,508.8796761,572.6908235,,,,80.65683618,78,96706,63.75588196,100.6633819,,,,,,,148.1975473,105.8745005,201.8029972,,,,64.28314836,44.51794896,89.82925658,,,,9.65154174,77,7978,7.616845808,12.06277118,,,,,,,19.64882943,14.43722081,26.12877773,,,,5.861136159,3.828688732,8.587922471,,,,,,,0.122,,,0.105,0.142,0.181,,,0.159,0.211,0.117,,,0.101,0.139,339.7,262,77125,,,0.141,13140,,,,0.094905791,8784.95452,92565,,,7.160579577,20,279307,4.373868033,11.0589344,,,,,,,,,,,,,8.010757303,4.379555561,13.44068957,,,,0.388,,,0.374,0.401,0.20758334,10287,49556,0.183753553,0.231413127,0.094736374,2131,22494,0.069715098,0.119757651,0.002053567,189,92035,,,486.957672,0.889605777,1139.585,1281,,,0.114229765,525,4596,0.071712794,0.156746737,2.90383413,,,,,,,2.372517469,2.778403566,3.229737303,3.154651001,,,,,,,2.665225017,3.022563165,3.463001692,0.16852521,,,,,-4184.922575,,,,,0.775591307,40399,52088,0.701385637,0.849796977,52460,,,46544.25532,58375.74468,64722,38440.12766,91003.87234,90795,68421.21277,113168.7872,40630,37527.3617,43732.6383,56109,47045.34043,65172.65957,63915,60305.97872,67524.02128,,,,,,0.65450094,11495,17563,,,47.25149752,,,,,0.256271445,,52460,,,5.741127349,33,5748,,,10.23069453,67,654892,7.928647735,12.99262041,,,,,,,21.51304305,14.98462272,29.91943511,,,,5.791044632,3.710431567,8.616615374,,,,20.50066014,99,467643,16.58625828,25.06099392,21.16999506,,,,,,,11.13585816,5.929375473,19.0426566,,,,26.56097756,20.89189378,33.29441538,,,,20.52848006,96,467643,16.62813476,25.06878773,,,,,,,22.21538672,14.51182817,32.55068875,,,,22.43387107,17.35035426,28.54138452,,,,17.86554119,117,654892,14.62826825,21.10281413,,,,,,,21.51304305,14.98462272,29.91943511,,,,17.61442742,13.80689929,22.14749795,,,,15.97701149,,8700,,,66,73,0.550597208,38261,69490,,,0.576,,,,,62.72064679,,,,,0.62851592,21675,34486,0.607699809,0.64933203,0.129257776,4197,32470,0.110876817,0.147638736,0.76723888,26459,34486,0.749608877,0.784868882,92035,,,,,0.235758136,21698,92035,,,0.174585755,16068,92035,,,0.253653501,23345,92035,,,0.011332645,1043,92035,,,0.013212365,1216,92035,,,0.001053947,97,92035,,,0.085565274,7875,92035,,,0.617069593,56792,92035,,,0.010706614,932,87049,0.006998402,0.014414825,0.496995708,45741,92035,,,0.379436556,35247,92893,, -48,039,48039,TX,Brazoria County,2024,1,7202.144172,4605,1082135,6907.775662,7496.512682,0,,,,2,2371.914306,1743.823677,3000.004936,,7750.654614,6918.898713,8582.410516,,6251.252396,5774.474087,6728.030704,,8588.488362,8089.073578,9087.903146,,,,,2,,0.168,,,0.145,0.191,3.592760747,,,2.934251605,4.263337398,4.624344574,,,3.933609709,5.30851757,0.084993764,2794,32873,0.081979079,0.088008449,0,,,,0.112557749,0.099862707,0.12525279,0.135178408,0.125043194,0.145313622,0.076891649,0.07217138,0.081611918,0.07131573,0.066940798,0.075690662,,,,0.069135803,0.04442862,0.093842985,0.138,,,0.113,0.165,0.379,,,0.333,0.427,7.9,0.066588459,0.107,,,0.252,,,0.215,0.288,0.761533313,283314,372031,,,0.200303403,,,0.168990148,0.233207302,0.325581395,70,215,0.291467156,0.359894875,383.7,1457,379689,,,18.36831235,1592,86671,17.46600646,19.27061825,,,,,,,12.14608125,10.18921386,14.10294864,24.76851188,23.11693379,26.42008998,16.99044485,15.5533889,18.42750081,,,,15.14476615,10.48819082,21.16329269,0.156371521,50265,321446,0.143265138,0.169477904,0.000653166,248,379689,,,1531.004032,0.000589931,229,388181,,,1695.113537,0.001061361,412,388181,,,942.1868932,3725,,,,,,1416,4856,3486,3613,0.33,,,,,,0.35,0.42,0.28,0.33,0.41,,,,,,0.51,0.36,0.36,0.42,0.887788389,217723,245242,0.878363151,0.897213626,0.674079112,72357,107342,0.644107839,0.704050385,0.04518941,8336,184468,,,0.126,12313,,0.090255319,0.161744681,0.072289157,0,0.324746181,0.037738828,0.006599199,0.068878458,0.061447982,0.027893104,0.095002861,0.12381835,0.102050049,0.145586652,0.070132941,0.050665056,0.089600826,4.12173976,170673,41408,3.950259938,4.293219583,0.204273204,19781,96836,0.182339666,0.226206743,6.926721606,263,379689,,,59.12824402,1104,1867128,55.64032401,62.61616403,,,,13.2821839,7.737361588,21.2660631,49.74588761,41.3230029,58.16877233,40.11701931,34.99868407,45.23535454,84.34090309,78.14571749,90.53608868,,,,10.5,,,,,1,,,,,0.124290373,15435,124185,0.113596618,0.134984129,0.091697898,0.081269444,0.102126352,0.030760559,0.025682747,0.035838371,0.00833434,0.005326427,0.011342252,0.820646161,140923,171722,0.808518004,0.832774317,,,,0.745846072,0.684562087,0.807130057,0.745328142,0.69074556,0.799910725,0.795608228,0.770496384,0.820720071,0.796857899,0.774739078,0.818976721,0.53,,171722,0.505494681,0.554505319,77.47350253,,,77.18276895,77.7642361,,,,92.69821778,88.75431345,96.64212212,76.18776076,75.38533402,76.9901875,79.87483338,79.08461614,80.66505062,75.9147207,75.50704283,76.32239858,,,,381.0577895,4605,1082135,369.9606069,392.154972,,,,131.0229505,106.1320271,155.913874,402.0710522,371.8272743,432.3148302,329.8205503,308.3506471,351.2904536,442.4366656,425.454524,459.4188071,,,,43.3047584,186,429514,37.08125087,49.52826593,,,,,,,73.57344512,53.24546704,99.10294775,35.93583392,27.48806551,46.16108203,46.1257527,36.15522701,57.99620896,,,,4.843641207,160,33033,4.093111227,5.594171188,,,,,,,9.480919649,6.773307998,12.91032163,4.487658938,3.371267512,5.855421457,4.181988608,3.175559282,5.406190046,,,,,,,0.104,,,0.09,0.119,0.151,,,0.131,0.17,0.11,,,0.095,0.126,303.1,942,310775,,,0.107,39420,,,,0.066588459,20853.24141,313166,,,14.10348964,160,1134471,11.91813128,16.28884801,,,,,,,10.65997063,6.317774187,16.84734938,8.286903654,5.591139096,11.83007024,21.31920023,17.27963067,25.35876979,,,,0.368,,,0.357,0.379,0.188790863,42285,223978,0.170918523,0.206663204,0.087359468,8936,102290,0.069487128,0.105231809,0.000762531,296,388181,,,1311.422297,0.949133459,5049.39,5320,,,0.084779862,1812,21373,0.059465038,0.110094687,3.051706528,,,,,,3.765183702,2.8191495,2.82311651,3.271521503,3.259840388,,,,,,4.294483145,2.906026129,3.064253777,3.424372194,0.123386955,,,,,-3558.972521,,,,,0.784134434,58142,74148,0.739871696,0.828397172,86197,,,81805.17021,90588.82979,100412,52066.12766,148757.8723,114167,99512.87234,128821.1277,99025,86284.40426,111765.5957,79991,74193.21277,85788.78723,94978,89275.53192,100680.4681,,,,,,0.515992198,37831,73317,,,45.31511139,,,,,0.223047206,,86197,,,6.192454983,152,24546,,,4.712507814,121,2567635,3.872824603,5.552191024,,,,,,,11.35089492,8.14559817,15.39877066,3.260866839,2.130106482,4.777925447,4.469209675,3.34774473,5.845836293,,,,14.61701683,271,1867128,12.85707492,16.37695874,14.51427005,,,,,,,8.635676829,5.345620065,13.20054936,10.6888986,8.052341242,13.91307076,21.08353889,17.92282607,24.24425172,,,,13.01464067,243,1867128,11.37825708,14.65102426,,,,,,,12.99332885,9.050329623,18.07057507,8.329381127,6.162122012,11.01188358,18.36073031,15.47018239,21.25127823,,,,13.24175749,340,2567635,11.83421264,14.64930235,,,,,,,11.07404383,7.911459266,15.07970459,10.78594416,8.627363093,13.32055329,17.37089044,14.99872736,19.74305352,,,,13.03482587,,40200,,,228,296,0.621116121,154984,249525,,,0.62,,,,,53.65831595,,,,,0.74057864,94249,127264,0.723795389,0.757361891,0.102413636,12810,125081,0.092235386,0.112591886,0.916551421,116644,127264,0.907422617,0.925680225,388181,,,,,0.254798664,98908,388181,,,0.127845,49627,388181,,,0.159760524,62016,388181,,,0.009106577,3535,388181,,,0.075176271,29182,388181,,,0.001190166,462,388181,,,0.32498757,126154,388181,,,0.420929927,163397,388181,,,0.036485684,12784,350384,0.032439763,0.040531606,0.494921184,192119,388181,,,0.225954289,84062,372031,, -48,041,48041,TX,Brazos County,2024,1,6094.892436,1843,671725,5722.349933,6467.434939,0,,,,2,1959.437051,1196.875056,3026.191606,1,11633.63709,10181.67729,13085.59689,,5779.639267,5106.544925,6452.733609,,5791.655987,5256.359266,6326.952708,,,,,2,,0.184,,,0.157,0.213,3.7846577,,,3.034098405,4.609462796,5.50083067,,,4.533604907,6.555193547,0.080772094,1519,18806,0.076877608,0.08466658,0,,,,0.082400814,0.065210984,0.099590644,0.155071901,0.141085286,0.169058515,0.073785518,0.067452519,0.080118517,0.062663808,0.057479059,0.067848556,,,,0.098425197,0.061790446,0.135059948,0.16,,,0.129,0.195,0.347,,,0.28,0.419,6.5,0.123646584,0.142,,,0.248,,,0.204,0.296,0.866918396,202728,233849,,,0.21078118,,,0.170293763,0.252944992,0.233333333,21,90,0.179621641,0.290175363,656.5,1556,237032,,,13.99316114,1109,79253,13.16958049,14.81674179,,,,,,,32.76955603,28.691053,36.84805905,26.77996653,24.67873549,28.88119756,5.005937274,4.336789181,5.675085368,,,,13.77410468,8.413580982,21.27298754,0.181975093,36268,199302,0.164102753,0.199847434,0.000831111,197,237032,,,1203.208122,0.000574347,139,242014,,,1741.107914,0.001409009,341,242014,,,709.7184751,2778,,,,,,,8119,2708,2322,0.44,,,,,,0.39,0.39,0.33,0.46,0.51,,,,,,0.58,0.38,0.42,0.54,0.892780273,109920,123121,0.883297792,0.902262754,0.723989668,44285,61168,0.691896684,0.756082652,0.030861555,3965,128477,,,0.174,8271,,0.128723404,0.219276596,0.097484277,0,0.266624535,0.147757256,0.058969437,0.236545075,0.466984648,0.408307214,0.525662081,0.282710547,0.237937398,0.327483696,0.055676499,0.037617023,0.073735976,6.160745571,126591,20548,5.675145843,6.6463453,0.281924393,13103,46477,0.250616866,0.31323192,8.100172129,192,237032,,,40.31745424,463,1148386,36.64498068,43.98992779,,,,,,,51.68255427,39.71429375,66.12443788,34.76337728,28.11396312,41.41279143,45.04625539,39.81636802,50.27614276,,,,9.5,,,,,1,,,,,0.246212354,20070,81515,0.230291823,0.262132884,0.218836391,0.203117853,0.234554929,0.034042814,0.027320503,0.040765125,0.009139422,0.005095708,0.013183136,0.758946892,85443,112581,0.742955405,0.774938378,,,,0.61678508,0.557116423,0.676453737,0.749758029,0.690753571,0.808762487,0.773740133,0.739134245,0.808346021,0.771438232,0.747201304,0.795675161,0.127,,112581,0.114390462,0.139609538,79.20056656,,,78.78878845,79.61234467,,,,90.78050594,83.03465492,98.52635697,72.5431479,71.31542469,73.77087112,80.94742967,79.5962732,82.29858615,79.60665407,79.08140223,80.13190591,,,,316.5925734,1843,671725,301.8952356,331.2899112,,,,139.1879733,93.90954109,198.6994866,603.3918242,542.3589224,664.424726,309.6875856,276.3083233,343.0668479,290.492302,272.2168593,308.7677447,,,,47.02742463,117,248791,38.50595821,55.54889104,,,,,,,85.14116405,55.09887221,125.6851538,47.15679058,33.84052709,63.97351119,44.28501838,32.86919422,58.38427586,,,,4.851297195,92,18964,3.910830245,5.949685351,,,,,,,,,,5.242868157,3.63083861,7.326382744,4.076878276,2.839695096,5.669950771,,,,,,,0.116,,,0.1,0.134,0.169,,,0.147,0.193,0.118,,,0.101,0.137,217.8,439,201589,,,0.142,32900,,,,0.123646584,24092.66049,194851,,,8.013760772,56,698798,6.053508765,10.40653494,,,,,,,,,,,,,10.97026796,7.906404216,14.82861536,,,,0.38,,,0.366,0.394,0.205527399,31063,151138,0.18408059,0.226974207,0.117519386,5956,50681,0.09130662,0.143732152,0.000793343,192,242014,,,1260.489583,0.898323408,1961.04,2183,,,0.055659381,1370,24614,0.032228337,0.079090424,2.931004599,,,,,,3.75930559,2.288584274,2.719257608,3.378214884,3.20274185,,,,,,4.213118893,2.512489689,3.083351898,3.539590954,0.117822537,,,,,-8935.6955,,,,,0.763118282,43091,56467,0.707294619,0.818941944,60355,,,56037.04255,64672.95745,70472,17883.23404,123060.766,60838,46467.44681,75208.55319,38219,32744.10638,43693.89362,53076,48817.61702,57334.38298,66625,62221.25532,71028.74468,,,,,,0.592528612,19208,32417,,,41.95432515,,,,,0.290448182,,60355,,,5.611017999,77,13723,,,3.535710678,56,1583840,2.670837849,4.591414411,,,,,,,13.08760366,8.201931535,19.81478922,4.865872232,2.972201171,7.514945016,1.592016266,0.870370107,2.671132779,,,,9.500100894,109,1148386,7.592695334,11.40750645,9.491582099,,,,,,,7.300487529,3.338247775,13.85859939,6.401821389,3.794125081,10.11763779,11.64926436,8.990656295,14.84794371,,,,8.185401076,94,1148386,6.614637274,10.0168579,,,,,,,13.94608607,8.124109066,22.32903478,6.621595672,4.044642661,10.22651747,8.693137005,6.548860483,11.31531272,,,,9.596928983,152,1583840,8.071238074,11.12261989,,,,,,,11.30293043,6.805102479,17.65092599,12.6512678,9.448571915,16.59045456,8.642374015,6.809207753,10.81721981,,,,14.94505495,,18200,,,175,97,0.527248497,85061,161330,,,0.573,,,,,96.2767963,,,,,0.468194092,40400,86289,0.454242023,0.482146161,0.221149221,18389,83152,0.204794656,0.237503786,0.840535874,72529,86289,0.829747258,0.851324489,242014,,,,,0.198848001,48124,242014,,,0.103068418,24944,242014,,,0.107072318,25913,242014,,,0.007346682,1778,242014,,,0.058467692,14150,242014,,,0.001330502,322,242014,,,0.267790293,64809,242014,,,0.547889792,132597,242014,,,0.032161326,7121,221415,0.027588198,0.036734454,0.495136645,119830,242014,,,0.118503821,27712,233849,, -48,043,48043,TX,Brewster County,2024,1,9644.714847,156,25124,7202.007434,12087.42226,0,,,,2,,,,2,,,,2,5724.022968,3587.214719,8666.239562,1,14307.32793,9429.583731,19185.07212,,,,,2,,0.166,,,0.138,0.196,3.417769021,,,2.653326437,4.280214866,4.726809165,,,3.693718517,5.840178581,0.064846416,38,586,0.044907951,0.084784882,0,,,,,,,,,,0.070967742,0.042383866,0.099551618,0.059760956,0.030435342,0.089086571,,,,,,,0.123,,,0.095,0.157,0.357,,,0.277,0.443,6.1,0.163240185,0.143,,,0.233,,,0.185,0.283,0.717578043,6850,9546,,,0.170275281,,,0.134915858,0.208047663,0.142857143,1,7,0.008995928,0.386311364,317.5,30,9450,,,15.39448364,24,1559,9.863536148,22.90577139,,,,,,,,,,19.52723536,11.75667129,30.49419689,,,,,,,,,,0.249893993,1768,7075,0.221298248,0.278489738,0.001269841,12,9450,,,787.5,0.000321096,3,9343,,,3114.333333,0.001712512,16,9343,,,583.9375,1162,,,,,,,,,914,0.29,,,,,,,,0.21,0.31,0.25,,,,,,,,0.22,0.26,0.889215275,6357,7149,0.862520333,0.915910217,0.728279387,1710,2348,0.603006402,0.853552372,0.033782188,143,4233,,,0.214,334,,0.134170213,0.293829787,,,,,,,,,,0.217166494,0.071034579,0.36329841,0.026388889,0,0.100064356,6.268324299,106386,16972,3.630492778,8.90615582,0.277003484,477,1722,0.098418323,0.455588646,14.81481482,14,9450,,,90.33423668,42,46494,65.10497211,122.1056454,,,,,,,,,,71.3843811,39.95329621,117.7376808,116.4395377,76.73438905,169.413414,,,,5.6,,,,,1,,,,,0.164335664,705,4290,0.106243289,0.22242804,0.129259695,0.072991406,0.185527984,0.018414918,0,0.037881187,0.018648019,0.002883032,0.034413005,0.70387729,3304,4694,0.61370927,0.794045311,,,,,,,,,,0.75087108,0.570997159,0.930745002,0.669572437,0.562860901,0.776283972,0.202,,4694,0.115964897,0.288035103,78.82157262,,,76.55913069,81.08401455,,,,,,,,,,81.44392128,78.5276154,84.36022717,75.41999954,71.70667568,79.1333234,,,,428.8329372,156,25124,355.2190874,502.446787,,,,,,,,,,280.7941864,197.7050205,387.0377981,573.625428,447.5040243,699.7468317,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.104,,,0.087,0.121,0.149,,,0.127,0.173,0.107,,,0.09,0.126,120.9,10,8274,,,0.143,1360,,,,0.163240185,1507.033385,9232,,,,,,,,,,,,,,,,,,,,,,,,,,0.333,,,0.319,0.348,0.273265495,1477,5405,0.238712303,0.307818686,0.177474403,312,1758,0.131006318,0.223942488,0.00107032,10,9343,,,934.3,0.906578947,68.9,76,,,,,,,,2.583414067,,,,,,,,2.507771101,2.836531802,2.537218946,,,,,,,,2.438056844,2.836982842,0.017252404,,,,,-870.1475,,,,,0.820145939,45970,56051,0.573589973,1.066701904,52388,,,46956,57820,,,,,,,,,,51037,41141.68085,60932.31915,46618,39965.91489,53270.08511,,,,,,0.600347524,691,1151,,,,,,,,0.266625945,,52388,,,1.792114695,1,558,,,,,,,,,,,,,,,,,,,,,,,,,,32.53659202,13,46494,17.32436494,55.63856326,27.96059707,,,,,,,,,,,,,53.4745783,25.64313883,98.34165341,,,,27.96059707,13,46494,14.88784035,47.81347253,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,700,,,0,-888,0.69481268,4822,6940,,,0.352,,,,,33.28125183,,,,,0.598628479,2968,4958,0.55341477,0.643842189,0.159745111,727,4551,0.090568064,0.228922158,0.79790238,3956,4958,0.740171634,0.855633126,9343,,,,,0.17852938,1668,9343,,,0.25227443,2357,9343,,,0.014021192,131,9343,,,0.023547041,220,9343,,,0.025366585,237,9343,,,0.002354704,22,9343,,,0.454778979,4249,9343,,,0.462485283,4321,9343,,,0.02098834,189,9005,0,0.043450563,0.489992508,4578,9343,,,0.341818563,3263,9546,, -48,045,48045,TX,Briscoe County,2024,1,6382.119324,27,3880,3060.474286,11736.94467,1,,,,2,,,,2,,,,2,,,,2,,,,2,,,,2,,0.23,,,0.202,0.257,4.480204989,,,3.88995075,5.153895669,5.729051906,,,4.980082629,6.61208486,,,,,,0,,,,,,,,,,,,,,,,,,,,,,0.205,,,0.176,0.237,0.408,,,0.362,0.461,2.2,0.484569929,0.171,,,0.31,,,0.273,0.35,0.292682927,420,1435,,,0.152147307,,,0.133853958,0.173765948,0,0,2,0,0.510593623,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.270018622,290,1074,0.239039899,0.300997345,0.000712758,1,1403,,,1403,0,0,1431,,,-1431,,0,1431,,,,814,,,,,,,,,1048,0.36,,,,,,,,,0.4,0.27,,,,,,,,,0.31,0.845603272,827,978,0.752655383,0.938551161,0.433212996,120,277,0.240342004,0.626083989,0.034825871,21,603,,,0.201,63,,0.122361702,0.279638298,,,,,,,,,,0.071942446,0,0.234727484,0.028169014,0,0.387274581,6.57129565,84750,12897,3.776707922,9.365883378,0.032258065,8,248,0,0.068846572,0,0,1403,,,133.6898396,10,7480,64.10947455,245.8603749,,,,,,,,,,,,,,,,,,,5.9,,,,,1,,,,,0.152542373,90,590,0.050479704,0.254605042,0.155932203,0.028375954,0.283488453,0.013559322,0,0.05519794,0.006779661,0,0.046752034,0.629032258,312,496,0.483445844,0.774618672,,,,,,,,,,,,,0.517460318,0.35442506,0.680495575,0.237,,496,0.11740509,0.35659491,,,,,,,,,,,,,,,,,,,,,,,,429.2187357,27,3880,272.0878596,644.0388479,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.142,,,0.126,0.158,0.191,,,0.174,0.21,0.13,,,0.117,0.144,0,0,1181,,,0.171,220,,,,0.484569929,793.2409742,1637,,,,,,,,,,,,,,,,,,,,,,,,,,0.364,,,0.349,0.378,0.295188557,227,769,0.258252386,0.332124727,0.204402516,65,318,0.151976984,0.256828048,0.000698812,1,1431,,,1431,,,,,,,,,,,3.116446819,,,,,,,,,,3.460464045,,,,,,,,,,0.021878704,,,,,-6556.9055,,,,,1.437666244,57833,40227,0.713251323,2.162081165,53208,,,45055.82979,61360.17021,,,,,,,13438,8345.574468,18530.42553,33650,24624.46809,42675.53192,40313,20085.08511,60540.91489,,,,,,0.5,190,380,,,,,,,,0.285370621,,53208,,,,,46,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,100,,,-888,-888,0.710784314,725,1020,,,0.413,,,,,,,,,,0.74010327,430,581,0.650700991,0.829505549,0.195608782,98,501,0.047217096,0.344000469,0.666092943,387,581,0.595934017,0.736251869,1431,,,,,0.22152341,317,1431,,,0.238294899,341,1431,,,0.039832285,57,1431,,,0.011879804,17,1431,,,0.002096436,3,1431,,,0.000698812,1,1431,,,0.276030748,395,1431,,,0.648497554,928,1431,,,0.048622366,60,1234,0,0.117828695,0.491963662,704,1431,,,1,1435,1435,, -48,047,48047,TX,Brooks County,2024,1,15148.86667,148,19265,11842.53539,18455.19795,0,,,,2,,,,2,,,,2,15380.26727,11900.71551,18859.81902,,,,,2,,,,2,,0.315,,,0.265,0.363,4.86463376,,,4.06985676,5.808531361,5.293978404,,,4.153498221,6.548999914,0.10359116,75,724,0.081393807,0.125788514,0,,,,,,,,,,0.104803493,0.081898785,0.127708202,,,,,,,,,,0.182,,,0.143,0.227,0.445,,,0.357,0.534,4.8,0.101543078,0.233,,,0.399,,,0.333,0.465,0.890050876,6298,7076,,,0.143232398,,,0.112574288,0.178096726,0.083333333,2,24,0.015751141,0.20231498,586.2,41,6994,,,52.39327296,81,1546,41.60782147,65.12005445,,,,,,,,,,55.24861879,43.80871864,68.76168851,,,,,,,,,,0.211134828,1187,5622,0.183730572,0.238539083,,0,6994,,,,0.000144802,1,6906,,,6906,0.000289603,2,6906,,,3453,3504,,,,,,,,3750,,0.26,,,,,,,,0.23,0.47,0.29,,,,,,,,0.29,0.37,0.701465202,3447,4914,0.600576096,0.802354307,0.352029915,659,1872,0.198617758,0.505442071,0.059638807,142,2381,,,0.471,857,,0.294659575,0.647340426,,,,,,,,,,0.474650992,0.276193216,0.673108768,,,,8.061998766,78411,9726,2.743706404,13.38029113,0.220672162,348,1577,0.060270114,0.381074211,0,0,6994,,,81.92090396,29,35400,54.86371508,117.6520832,,,,,,,,,,86.95382131,57.78018278,125.672482,,,,,,,9.9,,,,,0,,,,,0.175757576,435,2475,0.085032664,0.266482488,0.12704918,0.045256009,0.208842351,0.018181818,0,0.044467969,0.048484849,0,0.098050914,0.856997628,2529,2951,0.768732029,0.945263226,,,,,,,,,,0.823412698,0.813641757,0.83318364,,,,0.178,,2951,0.075656682,0.280343318,70.93078555,,,68.70618984,73.15538126,,,,,,,,,,70.52850287,68.20881229,72.84819345,,,,,,,699.8838648,148,19265,580.735687,819.0320426,,,,,,,,,,711.4767232,585.2596781,837.6937683,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.162,,,0.138,0.19,0.179,,,0.154,0.206,0.183,,,0.159,0.209,198.1,11,5553,,,0.233,1660,,,,0.101543078,733.445654,7223,,,,,,,,,,,,,,,,,,,,,,,,,,0.376,,,0.355,0.395,0.27629809,1027,3717,0.236978941,0.315617239,0.085972851,171,1989,0.058568595,0.113377106,0.000289603,2,6906,,,3453,0.975,89.7,92,,,,,,,,2.399333838,,,,,,,,2.434230189,,2.636087153,,,,,,,,2.663326635,,0.046991136,,,,,-8016.004,,,,,,,,,,35359,,,30112.87234,40605.12766,,,,,,,,,,29148,14817.95745,43478.04255,38875,5322.659575,72427.34043,,,,,,0.927719821,1245,1342,,,,,,,,0.479453605,,35359,,,18.18181818,5,275,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,24.07511436,12,49844,12.4399629,42.05437976,,,,,,,,,,22.12878956,10.61161473,40.69563187,,,,,,,15.71428571,,700,,,11,0,0.512164949,2484,4850,,,0.379,,,,,21.63617937,,,,,0.61199095,1623,2652,0.531625203,0.692356698,0.114360541,262,2291,0.033838946,0.194882137,0.752262443,1995,2652,0.662541482,0.841983405,6906,,,,,0.269475818,1861,6906,,,0.169707501,1172,6906,,,0.010570518,73,6906,,,0.009556907,66,6906,,,0.012163336,84,6906,,,0.000434405,3,6906,,,0.901390096,6225,6906,,,0.071097596,491,6906,,,0.070262391,482,6860,0.038248665,0.102276116,0.466695627,3223,6906,,,0.364471453,2579,7076,, -48,049,48049,TX,Brown County,2024,1,10955.44495,858,103586,9760.009655,12150.88024,0,,,,2,,,,2,16552.90406,9965.929556,25849.41014,1,7345.308093,5532.410723,9158.205464,,12228.65211,10652.54734,13804.75687,,,,,2,,0.189,,,0.16,0.219,4.024065124,,,3.196121021,4.936913468,5.531143496,,,4.443700542,6.682689121,0.083875633,232,2766,0.073545043,0.094206222,0,,,,,,,0.152173913,0.078775673,0.225572154,0.07480315,0.056124065,0.093482235,0.084619478,0.072035189,0.097203768,,,,,,,0.182,,,0.144,0.221,0.377,,,0.296,0.465,6.3,0.132836989,0.151,,,0.264,,,0.217,0.315,0.55676598,21210,38095,,,0.175356378,,,0.13952739,0.216354101,0.210526316,4,19,0.095274272,0.345173375,403.2,154,38192,,,26.60637291,253,9509,23.32782538,29.88492044,,,,,,,18.31501832,10.25077672,30.20783745,24.62121212,19.46204647,30.72838701,30.16330452,25.44500872,34.88160031,,,,,,,0.191807919,5624,29321,0.170361111,0.213254728,0.00052367,20,38192,,,1909.6,0.00036484,14,38373,,,2740.928571,0.001954499,75,38373,,,511.64,1998,,,,,,,,1195,1987,0.31,,,,,,,0.24,0.24,0.32,0.34,,,,,,0.52,0.36,0.33,0.34,0.87386946,23189,26536,0.854971958,0.892766962,0.570511401,5154,9034,0.509909516,0.631113287,0.043350141,662,15271,,,0.25,1883,,0.167787234,0.332212766,,,,,,,0.652567976,0.408381075,0.896754877,0.208097166,0.124455746,0.291738586,0.134991119,0.078142985,0.191839254,4.479466421,106786,23839,3.896882895,5.062049946,0.329885058,2583,7830,0.266480289,0.393289826,16.75743611,64,38192,,,65.90532831,125,189666,54.35161485,77.45904178,,,,,,,,,,25.19007053,12.57479245,45.0719944,81.23234687,65.98227737,96.48241637,,,,7.8,,,,,0,,,,,0.111871365,1635,14615,0.090070176,0.133672554,0.082434783,0.06244039,0.102429175,0.017721519,0.008601874,0.026841164,0.017105713,0.008397726,0.0258137,0.826889958,13924,16839,0.79935465,0.854425266,,,,,,,,,,0.841957387,0.776669214,0.90724556,0.815265669,0.78099134,0.849539997,0.142,,16839,0.116306892,0.167693108,73.18095325,,,72.3182513,74.04365519,,,,,,,,,,76.96055023,74.94587467,78.97522578,72.22111189,71.15027377,73.29195002,,,,577.0642342,858,103586,536.061198,618.0672703,,,,,,,853.7917693,587.7109685,1199.04108,464.3852452,375.3067091,553.4637813,617.139618,567.1845336,667.0947023,,,,57.3817526,21,36597,35.52020926,87.71410426,,,,,,,,,,,,,74.03979639,42.32014092,120.2359907,,,,7.489300999,21,2804,4.635995358,11.44819213,,,,,,,,,,,,,,,,,,,,,,0.123,,,0.105,0.142,0.178,,,0.154,0.204,0.109,,,0.092,0.126,127.8,42,32871,,,0.151,5740,,,,0.132836989,5061.886316,38106,,,12.31429602,14,113689,6.732340223,20.66129628,,,,,,,,,,,,,14.99512658,7.748200721,26.19346843,,,,0.353,,,0.338,0.366,0.219925246,4766,21671,0.19252099,0.247329501,0.117342537,952,8113,0.086363813,0.14832126,0.00101634,39,38373,,,983.9230769,0.943345324,393.375,417,,,0.083931777,187,2228,0.038741143,0.129122412,2.90572578,,,,,,,2.335140889,2.763219872,3.024487065,2.910314485,,,,,,,2.510408595,2.785454323,3.031288545,0.05680273,,,,,-2110.797014,,,,,0.784246356,36749,46859,0.703373225,0.865119487,53455,,,48779.59575,58130.40426,,,,,,,45350,30213.31915,60486.68085,49150,40740.46809,57559.53192,55610,50828.55319,60391.44681,,,,,,0.599129894,3856,6436,,,54.87046534,,,,,0.259021607,,53455,,,6.362672322,12,1886,,,,,,,,,,,,,,,,,,,,,,,,,,18.79470045,37,189666,13.01587643,26.26371004,19.50797718,,,,,,,,,,,,,23.74867265,16.02312971,33.9027069,,,,14.76279354,28,189666,9.809769097,21.33634702,,,,,,,,,,,,,19.37652311,12.65738821,28.3910958,,,,16.92792091,45,265833,12.34734167,22.65089003,,,,,,,,,,,,,19.5435266,13.76044632,26.93817703,,,,15.88235294,,3400,,,20,34,0.557090529,15969,28665,,,0.517,,,,,48.31763224,,,,,0.683114108,10231,14977,0.665414901,0.700813315,0.111072616,1603,14432,0.086599978,0.135545255,0.859117313,12867,14977,0.83784413,0.880390497,38373,,,,,0.202720663,7779,38373,,,0.208219321,7990,38373,,,0.035754306,1372,38373,,,0.010658536,409,38373,,,0.007896177,303,38373,,,0.00085998,33,38373,,,0.23803195,9134,38373,,,0.698850754,26817,38373,,,0.019873582,720,36229,0.011945391,0.027801773,0.502280249,19274,38373,,,0.433993963,16533,38095,, -48,051,48051,TX,Burleson County,2024,1,10296.91482,383,50287,8549.082547,12044.7471,0,,,,2,,,,2,19346.03045,13052.68551,27617.6614,,8196.21781,5489.135702,11771.13597,,9549.612549,7350.937624,11748.28747,,,,,2,,0.185,,,0.158,0.212,3.842173385,,,3.066674649,4.710450741,5.246513733,,,4.206478403,6.374422018,0.099225897,141,1421,0.083681299,0.114770495,0,,,,,,,0.192090396,0.13405357,0.250127221,0.086419753,0.059053936,0.11378557,0.086100861,0.066818346,0.105383376,,,,,,,0.174,,,0.141,0.211,0.359,,,0.282,0.444,7.5,0.053716429,0.13,,,0.263,,,0.216,0.31,0.408910554,7214,17642,,,0.173334033,,,0.13721268,0.21415861,0.34375,11,32,0.250875654,0.43568959,282.5,51,18051,,,28.36074872,100,3526,22.80204197,33.91945547,,,,,,,25.13464991,13.741347,42.17167167,39.74706414,28.88027765,53.35857839,22.28412256,15.92010387,30.34465012,,,,,,,0.218949157,3092,14122,0.19511937,0.242778945,0.00038779,7,18051,,,2578.714286,0.000107198,2,18657,,,9328.5,0.000107198,2,18657,,,9328.5,3324,,,,,,,7333,1913,2461,0.38,,,,,,,0.57,0.24,0.38,0.41,,,,,,,0.4,0.39,0.41,0.837164156,10781,12878,0.80595686,0.868371452,0.547821855,2251,4109,0.453771058,0.641872651,0.035903805,318,8857,,,0.222,894,,0.14693617,0.29706383,,,,,,,0.252988048,0.064970302,0.441005794,0.261771748,0.132367694,0.391175802,0.076687117,0.018000619,0.135373615,3.846097006,130125,33833,2.993031972,4.69916204,0.109355085,429,3923,0.05150041,0.167209761,8.86377486,16,18051,,,85.33169963,78,91408,67.45116752,106.497823,,,,,,,99.61061306,49.72525914,178.2309021,51.66356685,24.77468845,95.01113888,96.82186476,73.33193485,125.4439561,,,,9.3,,,,,1,,,,,0.103896104,720,6930,0.073909962,0.133882246,0.072568941,0.045455163,0.099682718,0.028860029,0.013271344,0.044448714,0.006493507,0.000205065,0.012781948,0.749332622,5614,7492,0.685354707,0.813310536,,,,,,,,,,0.594927536,0.461483971,0.728371102,0.735958486,0.667112893,0.804804079,0.493,,7492,0.412127797,0.573872203,74.8604968,,,73.55080718,76.17018643,,,,,,,68.79780875,64.50898654,73.08663096,77.34092821,73.84711892,80.8347375,75.35621233,73.74377407,76.9686506,,,,512.7398361,383,50287,456.4789441,569.0007281,,,,,,,918.2648684,704.0284092,1177.174119,448.1460013,325.6235706,601.6150894,474.4731853,408.5126008,540.4337699,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.118,,,0.102,0.135,0.174,,,0.151,0.198,0.106,,,0.091,0.122,144.3,22,15246,,,0.13,2290,,,,0.053716429,923.2242669,17187,,,,,,,,,,,,,,,,,,,,,,,,,,0.351,,,0.337,0.363,0.249534815,2548,10211,0.219747581,0.279322049,0.142369576,584,4102,0.107816384,0.176922767,0.000535992,10,18657,,,1865.7,0.958115183,183,191,,,,,,,,2.646433814,,,,,,,2.050542457,2.484409356,2.946122158,2.600989935,,,,,,,2.353947113,2.474784091,2.903163079,0.015156198,,,,,-6130.214333,,,,,0.809234805,46268,57175,0.67099558,0.94747403,62095,,,53345.89362,70844.10638,,,,,,,40909,10846.53192,70971.46809,56358,38460.6383,74255.3617,79562,71167.95745,87956.04255,,,,,,0.63349348,1846,2914,,,27.3738172,,,,,0.282309365,,62095,,,4.206098843,4,951,,,,,,,,,,,,,,,,,,,,,,,,,,17.6736614,16,91408,9.662355146,29.65340072,17.50393839,,,,,,,,,,,,,24.64017055,12.30028436,44.08807144,,,,17.50393839,16,91408,10.00501319,28.42529932,,,,,,,,,,,,,18.68492127,9.327445376,33.43248546,,,,33.95773447,43,126628,24.57538081,45.74084548,,,,,,,,,,,,,36.71386438,24.77069012,52.41132426,,,,10,,1600,,,11,5,0.640312384,8609,13445,,,0.436,,,,,26.96198573,,,,,0.787371474,5973,7586,0.752934141,0.821808806,0.075776571,544,7179,0.047379105,0.104174036,0.804244661,6101,7586,0.761316228,0.847173094,18657,,,,,0.218845474,4083,18657,,,0.213378357,3981,18657,,,0.10660878,1989,18657,,,0.013346197,249,18657,,,0.006914295,129,18657,,,0.00064319,12,18657,,,0.225170177,4201,18657,,,0.640563863,11951,18657,,,0.051765816,878,16961,0.031849563,0.071682069,0.505333119,9428,18657,,,1,17642,17642,, -48,053,48053,TX,Burnet County,2024,1,8027.362128,811,135181,7098.578799,8956.145457,0,,,,2,,,,2,,,,2,6258.718461,4776.061536,8056.211283,,8935.269241,7709.363635,10161.17485,,,,,2,,0.168,,,0.141,0.196,3.676427814,,,2.868616515,4.587777312,5.182644922,,,4.147587966,6.314883135,0.078670832,277,3521,0.069778056,0.087563608,0,,,,,,,0.255813954,0.125399802,0.386228105,0.063531353,0.049798985,0.077263721,0.082261029,0.070716313,0.093805746,,,,,,,0.16,,,0.125,0.196,0.359,,,0.279,0.442,7.7,0.067961284,0.115,,,0.243,,,0.195,0.291,0.420761246,20672,49130,,,0.183205377,,,0.146368581,0.224170671,0.274509804,14,51,0.20156323,0.35030076,237.5,121,50954,,,24.74701934,247,9981,21.66077368,27.833265,,,,,,,,,,34.86710489,28.67993496,41.05427482,19.30437677,15.79133865,22.81741489,,,,,,,0.216621788,8286,38251,0.19398349,0.239260086,0.000412136,21,50954,,,2426.380952,0.000495219,26,52502,,,2019.307692,0.000761876,40,52502,,,1312.55,2133,,,,,,,,2935,2008,0.41,,,,,,,,0.27,0.42,0.41,,,,,,0.25,0.29,0.34,0.42,0.884197489,31412,35526,0.865992054,0.902402924,0.500369004,5424,10840,0.435865621,0.564872387,0.02955415,757,25614,,,0.139,1457,,0.085382979,0.192617021,,,,,,,0.185714286,0,0.694742621,0.083658673,0.031602451,0.135714895,0.101697852,0.06148719,0.141908514,3.872716637,145649,37609,3.443325783,4.302107491,0.187542981,1909,10179,0.134775412,0.240310549,12.3640931,63,50954,,,83.50198266,203,243108,72.01502977,94.98893555,,,,,,,,,,39.96947785,25.04865897,60.51426981,101.9190054,87.07086855,116.7671422,,,,8.9,,,,,1,,,,,0.132873167,2310,17385,0.102218721,0.163527612,0.088439306,0.065185392,0.111693221,0.032211677,0.018114204,0.046309149,0.018119068,0.006869802,0.029368335,0.714674868,16266,22760,0.679312522,0.750037214,,,,,,,,,,0.71855719,0.628196089,0.808918291,0.721539884,0.681440793,0.761638975,0.41,,22760,0.356741625,0.463258375,77.42871515,,,76.65464331,78.20278699,,,,,,,,,,80.28376995,77.6078558,82.95968409,76.63270249,75.68140522,77.58399976,,,,391.5292317,811,135181,361.6346368,421.4238266,,,,,,,,,,291.1337003,231.8863672,360.9040242,422.6207267,385.9592185,459.2822348,,,,30.94606543,14,45240,16.91850194,51.92223944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.112,,,0.095,0.13,0.169,,,0.145,0.194,0.099,,,0.083,0.116,148.8,65,43693,,,0.115,5560,,,,0.067961284,2905.344905,42750,,,13.44429357,20,148762,8.212123785,20.76362102,,,,,,,,,,,,,15.66315014,9.124362159,25.07822068,,,,0.357,,,0.341,0.372,0.244826968,6827,27885,0.217422713,0.272231223,0.146037563,1594,10915,0.111484372,0.180590755,0.00085711,45,52502,,,1166.711111,0.95591954,498.99,522,,,,,,,,2.821806088,,,,,,,,2.305736166,3.085897991,2.794966556,,,,,,,,2.378648836,3.050612147,0.042284769,,,,,-2239.6284,,,,,0.697285727,40718,58395,0.600192422,0.794379031,74897,,,67220.23404,82573.76596,,,,,,,59833,3572.06383,116093.9362,54489,49495.46809,59482.53192,76624,70813.10638,82434.89362,,,,,,0.609107118,4441,7291,,,62.72180542,,,,,0.266739656,,74897,,,8.326394671,20,2402,,,3.882752812,13,334814,2.067402346,6.639625559,,,,,,,,,,,,,4.076757184,1.954963532,7.497301612,,,,18.97200609,47,243108,13.61463912,25.7376685,19.33297135,,,,,,,,,,,,,21.54313765,14.63751683,30.57876427,,,,15.63091301,38,243108,11.06136435,21.45464934,,,,,,,,,,,,,19.70809496,13.72741025,27.40918925,,,,22.69917029,76,334814,17.88436442,28.41139647,,,,,,,,,,13.2863881,6.371339529,24.43414076,26.4989217,20.45130833,33.77505099,,,,15.58139535,,4300,,,19,48,0.694688027,24717,35580,,,0.582,,,,,31.92313853,,,,,0.793816093,14788,18629,0.775092533,0.812539653,0.112841988,2021,17910,0.086991546,0.138692429,0.889527081,16571,18629,0.86668572,0.912368443,52502,,,,,0.201497086,10579,52502,,,0.23715287,12451,52502,,,0.016608891,872,52502,,,0.012551903,659,52502,,,0.011009104,578,52502,,,0.000990439,52,52502,,,0.230581692,12106,52502,,,0.724372405,38031,52502,,,0.027607946,1305,47269,0.016946819,0.038269073,0.507637804,26652,52502,,,0.673234276,33076,49130,, -48,055,48055,TX,Caldwell County,2024,1,8907.333058,717,126575,7985.785838,9828.880278,0,,,,2,,,,2,13386.54837,7933.716959,21156.51771,1,8574.643456,7380.015417,9769.271496,,9294.638785,7624.20593,10965.07164,,,,,2,,0.224,,,0.193,0.256,4.165847916,,,3.330004247,5.064890223,5.144954057,,,4.112560789,6.266661204,0.08930277,374,4188,0.080665585,0.097939955,0,,,,,,,0.153153153,0.086155438,0.220150868,0.090814558,0.080329107,0.10130001,0.078483245,0.062830532,0.094135959,,,,,,,0.173,,,0.139,0.207,0.408,,,0.328,0.492,7.4,0.068826314,0.131,,,0.317,,,0.262,0.373,0.400344354,18369,45883,,,0.174565458,,,0.140132551,0.215785838,0.181818182,10,55,0.115736918,0.256884211,438.1,205,46791,,,33.98058252,371,10918,30.522782,37.43838305,,,,,,,,,,42.53200569,37.71101447,47.35299691,20.51983584,15.6587965,26.41309624,,,,,,,0.254120915,9697,38159,0.230291128,0.277950702,0.00025646,12,46791,,,3899.25,0.000313493,15,47848,,,3189.866667,0.00087778,42,47848,,,1139.238095,3187,,,,,,,3376,3830,2645,0.3,,,,,,,0.29,0.26,0.31,0.41,,,,,,,0.39,0.38,0.42,0.802892481,24538,30562,0.778989944,0.826795017,0.431801365,5252,12163,0.376824188,0.486778542,0.034547591,735,21275,,,0.207,2166,,0.139085106,0.274914894,,,,,,,0.490842491,0.060920298,0.920764684,0.201723195,0.141516288,0.261930101,0.125441696,0.046438491,0.204444901,3.882127534,118533,30533,3.339443813,4.424811255,0.187870407,1902,10124,0.132910427,0.242830387,8.548652519,40,46791,,,69.53944887,153,220019,58.52046365,80.55843408,,,,,,,,,,50.63590254,38.64052809,65.1784438,102.2154607,81.75917472,126.2352624,,,,9.5,,,,,1,,,,,0.19491833,2685,13775,0.164466912,0.225369749,0.120891161,0.092943441,0.148838882,0.069328494,0.045865575,0.092791412,0.011252269,0.004685087,0.01781945,0.79775673,16003,20060,0.769710615,0.825802845,,,,,,,,,,0.696437448,0.644594451,0.748280446,0.675032778,0.603130153,0.746935402,0.559,,20060,0.50045918,0.61754082,75.84050172,,,75.00919329,76.67181015,,,,,,,70.83236089,66.55256321,75.11215857,76.68078618,75.35494499,78.00662738,75.3559869,74.0363386,76.6756352,,,,469.2262988,717,126575,434.0105112,504.4420865,,,,,,,680.0407389,507.8869507,891.7829541,457.6977775,405.7521727,509.6433823,474.3054071,420.1448726,528.4659417,,,,46.52539864,22,47286,29.15721963,70.44001266,,,,,,,,,,49.36443293,28.21603867,80.16474638,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.131,,,0.113,0.15,0.172,,,0.149,0.197,0.128,,,0.11,0.148,230.3,91,39522,,,0.131,5940,,,,0.068826314,2619.942475,38066,,,,,,,,,,,,,,,,,,,,,,,,,,0.34,,,0.327,0.351,0.295463497,8252,27929,0.264484773,0.32644222,0.148356637,1634,11014,0.113803446,0.182909829,0.000376191,18,47848,,,2658.222222,0.917304762,481.585,525,,,0.195460705,577,2952,0.115349241,0.275572168,2.410065485,,,,,,,,2.288154013,2.859957722,2.616519675,,,,,,,,2.523195618,3.183041098,0.033160945,,,,,-8580.179667,,,,,0.763290883,37760,49470,0.67266891,0.853912857,60833,,,54015.29787,67650.70213,,,,96683,63127.08511,130238.9149,27266,1228.382979,53303.61702,67601,59509.59575,75692.40426,69988,61652.34043,78323.65957,,,,,,0.775527737,6319,8148,,,33.2181855,,,,,0.328407279,,60833,,,4.352557127,12,2757,,,5.966152031,18,301702,3.535919808,9.429092372,,,,,,,,,,,,,9.342301943,4.66364347,16.71595879,,,,13.50652056,30,220019,9.045528795,19.39761652,13.63518605,,,,,,,,,,,,,21.5786584,12.99176197,33.69774809,,,,13.63518605,30,220019,9.199602771,19.46507592,,,,,,,,,,,,,26.14814111,16.38690082,39.58859987,,,,22.87024945,69,301702,17.79441918,28.94376441,,,,,,,,,,24.39955205,17.35046671,33.35499088,22.08180459,14.42456789,32.35495998,,,,27.5,,4000,,,72,38,0.515421687,14973,29050,,,0.557,,,,,31.89688194,,,,,0.715052694,10788,15087,0.67882614,0.751279249,0.110748077,1627,14691,0.082440334,0.13905582,0.854179095,12887,15087,0.832466895,0.875891295,47848,,,,,0.225087778,10770,47848,,,0.155555091,7443,47848,,,0.052959371,2534,47848,,,0.018433372,882,47848,,,0.008338907,399,47848,,,0.001253971,60,47848,,,0.563701722,26972,47848,,,0.363087276,17373,47848,,,0.058338339,2525,43282,0.042334386,0.074342292,0.493291256,23603,47848,,,0.545932045,25049,45883,, -48,057,48057,TX,Calhoun County,2024,1,9353.207577,351,57144,7831.142073,10875.27308,0,,,,2,,,,2,,,,2,8961.218457,6928.971115,10993.4658,,10863.90122,8083.499505,13644.30294,,,,,2,,0.198,,,0.17,0.228,3.809433702,,,3.017521867,4.65898572,4.893515494,,,3.862497365,6.007672441,0.075565361,137,1813,0.063399114,0.087731609,0,,,,0.138888889,0.073664872,0.204112906,,,,0.076992754,0.061267451,0.092718056,0.063829787,0.043655155,0.08400442,,,,,,,0.154,,,0.123,0.187,0.368,,,0.287,0.452,5.3,0.283145613,0.124,,,0.289,,,0.238,0.343,0.666517458,13401,20106,,,0.174327406,,,0.138621375,0.214923128,0.4,6,15,0.262274328,0.527864126,405.5,80,19727,,,37.2102913,175,4703,31.69713739,42.72344522,,,,,,,,,,46.62324306,38.78733924,54.45914687,20.08928571,13.23896587,29.22885599,,,,,,,0.200201651,3177,15869,0.177563353,0.222839949,0.00050692,10,19727,,,1972.7,0.00050746,10,19706,,,1970.6,0.00025373,5,19706,,,3941.2,3995,,,,,,,,6217,3426,0.3,,,,,,0.18,,0.2,0.35,0.27,,,,,,0.34,0.21,0.26,0.27,0.843380571,11486,13619,0.801662401,0.885098742,0.497673435,2353,4728,0.407056705,0.588290165,0.03666884,450,12272,,,0.235,1056,,0.155170213,0.314829787,,,,0.123529412,0,0.604738612,,,,0.147403685,0.058095588,0.236711782,0.036171816,0,0.111306618,3.468940098,115762,33371,2.883628136,4.05425206,0.326183903,1536,4709,0.205579808,0.446787998,10.64530846,21,19727,,,73.10843785,77,105323,57.69603587,91.37300352,,,,,,,,,,57.55616523,38.83290298,82.16500469,100.4061887,72.9552904,134.7906218,,,,8.7,,,,,1,,,,,0.152024922,1220,8025,0.111987783,0.192062061,0.052959502,0.030625657,0.075293346,0.061682243,0.039481619,0.083882867,0.038006231,0.006713735,0.069298726,0.854496253,8210,9608,0.805802475,0.903190031,,,,0.813114754,0.656078954,0.970150554,,,,0.853095357,0.794431286,0.911759428,0.849381478,0.783102641,0.915660315,0.202,,9608,0.148728299,0.255271701,76.08990196,,,74.85284575,77.32695816,,,,,,,,,,75.7059036,73.91941679,77.49239041,74.8878918,72.93081106,76.84497254,,,,462.1662657,351,57144,410.8642122,513.4683192,,,,,,,,,,425.0806006,349.5156838,500.6455173,538.9645116,454.2748011,623.6542221,,,,58.7942653,13,22111,31.30547009,100.5399843,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.119,,,0.102,0.136,0.161,,,0.139,0.186,0.119,,,0.103,0.138,140.1,23,16419,,,0.124,2520,,,,0.283145613,6053.936355,21381,,,,,,,,,,,,,,,,,,,,,,,,,,0.35,,,0.337,0.362,0.23296918,2623,11259,0.204373436,0.261564925,0.125383514,613,4889,0.093213301,0.157553727,0.00076119,15,19706,,,1313.733333,0.94,266.96,284,,,,,,,,3.027831472,,,,,,,,2.923281736,3.350493252,3.440362289,,,,,,,,3.408866975,3.531517975,0.029882429,,,,,-1902.287,,,,,0.658672707,40127,60921,0.561799936,0.755545479,62742,,,55926.68085,69557.31915,,,,138750,51592.55319,225907.4468,,,,53294,48096.7234,58491.2766,77200,70341.78723,84058.21277,,,,,,0.642337808,2297,3576,,,43.2960175,,,,,0.237831118,,62742,,,6.696428571,9,1344,,,,,,,,,,,,,,,,,,,,,,,,,,20.3435482,20,105323,12.24814495,31.76897052,18.98920464,,,,,,,,,,,,,37.40833325,19.91836196,63.96938913,,,,16.14082394,17,105323,9.402624754,25.84302272,,,,,,,,,,,,,29.66546484,15.79561063,50.72884834,,,,20.10952991,30,149183,13.56781538,28.70760435,,,,,,,,,,20.44515927,11.44300044,33.72118101,22.32570007,12.20566798,37.45873114,,,,18,,2000,,,21,15,0.522687957,7856,15030,,,0.365,,,,,49.46480739,,,,,0.762461156,6134,8045,0.728430388,0.796491924,0.047273191,371,7848,0.019064391,0.07548199,0.803729024,6466,8045,0.757711256,0.849746792,19706,,,,,0.231300112,4558,19706,,,0.196031666,3863,19706,,,0.022632701,446,19706,,,0.011367096,224,19706,,,0.051913123,1023,19706,,,0.001065665,21,19706,,,0.505328326,9958,19706,,,0.40830204,8046,19706,,,0.04434907,837,18873,0.022944775,0.065753366,0.483000102,9518,19706,,,0.400427733,8051,20106,, -48,059,48059,TX,Callahan County,2024,1,10705.67779,300,38444,8732.290045,12679.06554,0,,,,2,,,,2,,,,2,,,,2,10874.42182,8668.724622,13080.11901,,,,,2,,0.16,,,0.135,0.189,3.741428588,,,2.972455837,4.719164053,5.365903243,,,4.322534664,6.608376543,0.094567404,94,994,0.076376191,0.112758618,0,,,,,,,,,,,,,0.090801887,0.07146285,0.110140924,,,,,,,0.169,,,0.132,0.207,0.358,,,0.281,0.441,7.1,0.09024715,0.131,,,0.233,,,0.188,0.281,0.545958564,7484,13708,,,0.186036858,,,0.150834139,0.227414249,0.0625,3,48,0.017480855,0.137761319,162.9,23,14115,,,24.77320307,71,2866,19.34807713,31.24802481,,,,,,,,,,29.12621359,15.04993958,50.87763361,24.70741222,18.71315274,32.01131834,,,,,,,0.183547143,2046,11147,0.160908845,0.206185441,0.000141693,2,14115,,,7057.5,0.000281492,4,14210,,,3552.5,0.000070373,1,14210,,,14210,2914,,,,,,,,,2769,0.32,,,,,,,,,0.32,0.34,,,,,,,,0.34,0.35,0.920806336,8953,9723,0.897618766,0.943993906,0.600455878,1844,3071,0.507957113,0.692954642,0.035674471,224,6279,,,0.205,613,,0.133510638,0.276489362,,,,,,,,,,0.282555283,0.09566426,0.469446305,0.094238499,0.053655652,0.134821347,3.73878725,111786,29899,3.234555723,4.243018778,0.21709862,645,2971,0.141604805,0.292592435,9.91852639,14,14115,,,105.5514349,74,70108,82.88057888,132.5101608,,,,,,,,,,,,,111.9540153,86.76282412,142.177642,,,,7.4,,,,,1,,,,,0.077281192,415,5370,0.052080762,0.102481622,0.058333333,0.03323534,0.083431327,0.012104283,0.003030011,0.021178555,0.00726257,0.001782317,0.012742823,0.762384278,4694,6157,0.71768522,0.807083336,,,,,,,,,,,,,0.68114241,0.603577071,0.758707749,0.322,,6157,0.266778613,0.377221387,74.10492603,,,72.64510941,75.56474265,,,,,,,,,,,,,73.84704632,72.29831479,75.39577784,,,,531.472115,300,38444,466.7225221,596.2217079,,,,,,,,,,,,,538.4959607,468.2567797,608.7351418,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.112,,,0.096,0.131,0.176,,,0.151,0.203,0.093,,,0.078,0.109,92,11,11960,,,0.131,1810,,,,0.09024715,1222.307404,13544,,,,,,,,,,,,,,,,,,,,,,,,,,0.341,,,0.324,0.358,0.215272638,1745,8106,0.186676893,0.243868382,0.102973396,329,3195,0.074377651,0.131569141,0.000914849,13,14210,,,1093.076923,0.953549383,154.475,162,,,,,,,,3.044928072,,,,,,,,2.847541523,3.044947472,2.897422265,,,,,,,,2.651220434,2.949085866,0.016506808,,,,,-3040.41765,,,,,0.632889404,37162,58718,0.502047364,0.763731443,63836,,,57055.23404,70616.76596,,,,,,,41719,20875.08511,62562.91489,48077,15495.7234,80658.2766,63949,60902.3617,66995.6383,,,,,,0.484636328,1246,2571,,,,,,,,0.216899555,,63836,,,4.249291785,3,706,,,,,,,,,,,,,,,,,,,,,,,,,,27.67529197,20,70108,16.40213199,43.73889285,28.52741485,,,,,,,,,,,,,30.19250851,17.58824883,48.34113091,,,,19.96919039,14,70108,10.91734221,33.50490832,,,,,,,,,,,,,20.05146543,10.36088479,35.02587483,,,,24.61917218,24,97485,15.77396815,36.63137672,,,,,,,,,,,,,20.37123582,11.86699557,32.61632193,,,,,,1200,,,-888,7,0.635239424,6832,10755,,,0.545,,,,,24.94263476,,,,,0.820303605,4323,5270,0.783190233,0.857416978,0.055183287,280,5074,0.028731187,0.081635388,0.872106262,4596,5270,0.839391968,0.904820555,14210,,,,,0.21442646,3047,14210,,,0.216467277,3076,14210,,,0.017382125,247,14210,,,0.011752287,167,14210,,,0.007600282,108,14210,,,0.000985222,14,14210,,,0.118719212,1687,14210,,,0.828712175,11776,14210,,,0.007837468,103,13142,0,0.017760237,0.501618579,7128,14210,,,1,13708,13708,, -48,061,48061,TX,Cameron County,2024,1,8423.74575,5525,1193319,8118.50521,8728.986289,0,,,,2,,,,2,10711.55086,6122.576832,17394.88752,1,8207.762454,7892.086081,8523.438828,,12869.6799,11280.24523,14459.11457,,,,,2,,0.29,,,0.245,0.338,4.289472,,,3.477741931,5.128681695,5.468272342,,,4.612352866,6.336196924,0.085534186,3718,43468,0.082904979,0.088163393,0,,,,0.115853659,0.066870013,0.164837304,0.124481328,0.082800881,0.166161774,0.085730826,0.082977816,0.088483836,0.079141104,0.069873983,0.088408226,,,,,,,0.154,,,0.122,0.191,0.446,,,0.397,0.497,5.1,0.179275135,0.18,,,0.353,,,0.302,0.407,0.745181311,313734,421017,,,0.167796338,,,0.141132144,0.198990254,0.162337662,25,154,0.123843579,0.204647353,549.4,2324,423029,,,37.32757161,4630,124037,36.25235662,38.40278661,,,,20.97902098,10.84016627,36.64612771,103.2448378,71.9138124,143.5885763,36.18830184,35.10004346,37.27656023,61.32783196,54.68061572,67.9750482,,,,,,,0.300765694,107549,357584,0.282893354,0.318638035,0.000491692,208,423029,,,2033.793269,0.000319844,136,425208,,,3126.529412,0.000886625,377,425208,,,1127.872679,3224,,,,,,,,3686,2148,0.31,,,,,,0.29,0.29,0.28,0.36,0.39,,,,,,0.46,0.3,0.36,0.44,0.708574376,177235,250129,0.697510951,0.7196378,0.53335976,55167,103433,0.510675493,0.556044026,0.056599735,10049,177545,,,0.301,36073,,0.241425532,0.360574468,0.233502538,0,0.539302531,0.038690476,0,0.167841524,0.513555383,0.273623964,0.753486803,0.369733544,0.351990129,0.387476959,0.290895062,0.21057431,0.371215813,5.215122753,98352,18859,4.888734686,5.54151082,0.36362309,44826,123276,0.334506748,0.392739431,4.916920589,208,423029,,,35.552324,753,2118005,33.01295053,38.09169748,,,,,,,118.0916391,56.62953113,217.1747289,30.71296607,28.22410933,33.20182281,85.22727273,71.85293261,98.60161285,,,,9.7,,,,,1,,,,,0.217846735,27660,126970,0.205616519,0.230076952,0.128864315,0.118990581,0.13873805,0.101401906,0.091662947,0.111140865,0.009726707,0.006755832,0.012697582,0.798069482,133031,166691,0.787264826,0.808874138,,,,0.69648774,0.612525213,0.780450267,,,,0.802319875,0.787223288,0.817416461,0.768866356,0.731144519,0.806588194,0.221,,166691,0.206456019,0.235543981,77.28424175,,,76.98723999,77.58124351,,,,95.99347591,83.44724763,108.5397042,77.98265358,70.49494151,85.47036564,76.94455754,76.63417568,77.25493939,75.4437139,74.23730566,76.65012214,,,,439.4408909,5525,1193319,427.6753627,451.2064191,,,,,,,463.7401536,293.9714773,695.8379247,435.4305892,422.7793136,448.0818649,563.6715109,517.1507098,610.1923119,,,,41.96668381,235,559968,36.6009788,47.33238882,,,,,,,,,,39.66604964,34.30110339,45.03099589,95.40401527,60.47796183,143.1528658,,,,5.313305683,237,44605,4.63683855,5.989772816,,,,,,,,,,5.39018113,4.6811212,6.099241059,,,,,,,,,,0.146,,,0.125,0.169,0.17,,,0.146,0.195,0.171,,,0.15,0.193,293.3,986,336216,,,0.18,75650,,,,0.179275135,72825.1455,406220,,,5.667631214,72,1270372,4.434572369,7.137443524,,,,,,,,,,4.720952374,3.546524721,6.159818785,13.86180703,7.758348165,22.86294265,,,,0.328,,,0.313,0.343,0.385651599,91841,238145,0.363013301,0.408289897,0.136503552,17295,126700,0.109099296,0.163907807,0.000957179,407,425208,,,1044.737101,0.92152203,6190.785,6718,,,0.153301808,4571,29817,0.129004429,0.177599186,2.873125152,,,,,,3.343472937,,2.864451563,3.254292608,3.218343093,,,,,,4.001993219,,3.210140209,3.451153379,0.09213838,,,,,-11753.405,,,,,0.83157158,34457,41436,0.794573848,0.868569312,49583,,,45867.93617,53298.06383,38802,29592.97872,48011.02128,69181,38145.08511,100216.9149,56346,27006.76596,85685.23404,45272,43488.34043,47055.65957,62504,57200.68085,67807.31915,,,,,,0.85222989,82743,97090,,,83.70274526,,,,,0.275921183,,49583,,,6.191950464,202,32623,,,2.59933511,77,2962296,2.05135462,3.248722899,,,,,,,,,,2.672083092,2.086919064,3.370469233,,,,,,,8.687380306,177,2118005,7.389009266,9.985751346,8.356920782,,,,,,,,,,6.283447826,5.119018758,7.447876894,30.52454933,21.80718556,41.56577253,,,,6.043422938,128,2118005,4.99645333,7.090392547,,,,,,,,,,4.410066923,3.517642092,5.459962933,22.9458042,16.53731738,31.0160614,,,,9.755946064,289,2962296,8.63114287,10.88074926,,,,,,,,,,9.860362959,8.666379454,11.05434647,10.24279211,6.750064542,14.90272475,,,,12.61569417,,49700,,,558,69,0.483572987,114174,236105,,,0.507,,,,,88.81304158,,,,,0.652816551,86523,132538,0.639902625,0.665730476,0.133973679,16919,126286,0.123648207,0.144299151,0.737071632,97690,132538,0.72481735,0.749325914,425208,,,,,0.285559068,121422,425208,,,0.14073818,59843,425208,,,0.005230381,2224,425208,,,0.006770804,2879,425208,,,0.008616959,3664,425208,,,0.000837237,356,425208,,,0.898456755,382031,425208,,,0.085445241,36332,425208,,,0.154278397,60238,390450,0.146711625,0.161845169,0.504602453,214561,425208,,,0.175814753,74021,421017,, -48,063,48063,TX,Camp County,2024,1,12507.81823,313,35868,10378.23311,14637.40334,0,,,,2,,,,2,14242.05638,9538.128681,20453.96866,,8126.67115,5030.537527,12422.48011,1,13513.12779,10443.68854,16582.56705,,,,,2,,0.213,,,0.183,0.245,4.155461484,,,3.398753634,4.944370019,5.536737825,,,4.441355589,6.705039531,0.069340017,83,1197,0.054948834,0.083731199,0,,,,,,,0.129411765,0.078954363,0.179869167,0.043879908,0.024586844,0.063172971,0.069767442,0.048648491,0.090886393,,,,,,,0.189,,,0.153,0.228,0.399,,,0.316,0.486,7,0.049437142,0.156,,,0.29,,,0.239,0.344,0.591784339,7376,12464,,,0.167482532,,,0.132470925,0.205672461,0.333333333,7,21,0.216500607,0.449294301,546.9,69,12616,,,36.2225097,112,3092,29.51400703,42.93101238,,,,,,,44.49152542,27.54095548,68.01002274,25.40415704,17.48705279,35.67688165,43.94693201,32.91926777,57.4836691,,,,,,,0.207240087,2101,10138,0.18221881,0.232261363,0.00071338,9,12616,,,1401.777778,0.000393205,5,12716,,,2543.2,0.000550488,7,12716,,,1816.571429,3468,,,,,,,1196,2254,3452,0.34,,,,,,,0.3,,0.35,0.36,,,,,,,0.33,0.24,0.37,0.872192383,7145,8192,0.831605222,0.912779544,0.486944248,1380,2834,0.393639769,0.580248728,0.044578548,229,5137,,,0.276,913,,0.184255319,0.367744681,,,,,,,0.474698795,0.22057415,0.728823441,0.472809668,0.379981099,0.565638237,0.0855573,0,0.213540281,4.982616171,104331,20939,3.497655989,6.467576353,0.318910741,1054,3305,0.222315246,0.415506237,10.3043754,13,12616,,,100.5289369,65,64658,77.58611112,128.1323824,,,,,,,139.1373484,76.06768313,233.4488285,,,,129.3551925,94.70425862,172.5416994,,,,9,,,,,0,,,,,0.16367713,730,4460,0.105836346,0.221517914,0.137697517,0.088653023,0.18674201,0.025784753,0.004892933,0.046676574,0.00896861,0,0.02036864,0.787081802,4070,5171,0.757878329,0.816285276,,,,,,,,,,,,,0.744487678,0.663661825,0.825313532,0.269,,5171,0.203284204,0.334715796,72.33060821,,,70.87678677,73.78442966,,,,,,,70.91910082,67.82697292,74.01122872,96.17849638,52.3826795,139.9743133,71.56533798,69.59570508,73.53497088,,,,660.3089663,313,35868,581.7898232,738.8281093,,,,,,,808.3247683,608.940838,1052.145794,358.09001,231.7369738,528.6114944,702.321152,596.4531362,808.1891678,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.131,,,0.113,0.151,0.183,,,0.158,0.21,0.125,,,0.107,0.146,204.7,21,10261,,,0.156,1950,,,,0.049437142,613.0699975,12401,,,,,,,,,,,,,,,,,,,,,,,,,,0.368,,,0.355,0.381,0.246084687,1697,6896,0.215105963,0.27706341,0.128235294,436,3400,0.092490613,0.163979975,0.000471847,6,12716,,,2119.333333,0.975,144.3,148,,,,,,,,2.813084754,,,,,,,2.748976781,2.778457792,2.927830056,3.048853442,,,,,,,2.929759899,3.07192036,3.136510292,0.005062406,,,,,-6163.598,,,,,0.716273352,38456,53689,0.531258327,0.901288377,52919,,,45229.12766,60608.87234,,,,,,,23942,13896.55319,33987.44681,54730,22395.3617,87064.6383,62540,55251.65957,69828.34043,,,,,,0.784139101,1849,2358,,,13.91583711,,,,,0.265008787,,52919,,,4.597701149,4,870,,,,,,,,,,,,,,,,,,,,,,,,,,16.73053507,12,64658,8.351822828,29.93554869,18.55918835,,,,,,,,,,,,,29.63443391,14.21086294,54.49877907,,,,21.6523864,14,64658,11.83756113,36.32902521,,,,,,,,,,,,,28.12069402,13.48496582,51.71495752,,,,32.14828118,29,90207,21.53020845,46.17029437,,,,,,,,,,,,,36.0317079,21.35467367,56.94563269,,,,,,1400,,,-888,-888,0.589057043,5060,8590,,,0.49,,,,,15.57122547,,,,,0.783029485,3479,4443,0.741865104,0.824193865,0.124445482,533,4283,0.073975249,0.174915715,0.813864506,3616,4443,0.769391917,0.858337095,12716,,,,,0.263604907,3352,12716,,,0.187087134,2379,12716,,,0.14973262,1904,12716,,,0.012110727,154,12716,,,0.014469959,184,12716,,,0.001651463,21,12716,,,0.2790972,3549,12716,,,0.53200692,6765,12716,,,0.033944563,398,11725,0.015239861,0.052649265,0.511324316,6502,12716,,,1,12464,12464,, -48,065,48065,TX,Carson County,2024,1,12250.51328,106,15992,8509.852711,15991.17385,0,,,,2,,,,2,,,,2,,,,2,13329.35527,9284.384336,18537.90648,,,,,2,,0.15,,,0.124,0.177,3.512600263,,,2.835787978,4.244725929,5.320659501,,,4.276580547,6.449477546,0.061111111,22,360,0.036366991,0.085855231,1,,,,,,,,,,,,,0.069306931,0.040709545,0.097904316,,,,,,,0.158,,,0.121,0.198,0.349,,,0.268,0.434,8,0.052701292,0.109,,,0.221,,,0.176,0.272,0.605131738,3514,5807,,,0.190926085,,,0.152028102,0.232860215,0.25,4,16,0.11917111,0.394165016,243.6,14,5746,,,10.62322946,15,1412,5.945740887,17.52140147,,,,,,,,,,,,,9.573542211,4.779077778,17.1297115,,,,,,,0.170634921,774,4536,0.147996623,0.193273219,,0,5746,,,,0.000172891,1,5784,,,5784,0.000345782,2,5784,,,2892,1941,,,,,,,,,2015,0.41,,,,,,,,,0.42,0.44,,,,,,,,0.59,0.44,0.924199744,3609,3905,0.899690622,0.948708866,0.711627907,918,1290,0.579334108,0.843921706,0.030503979,92,3016,,,0.124,164,,0.077531915,0.170468085,,,,,,,,,,0.10106383,0,0.321464043,0.124648547,0.016456316,0.232840779,4.3884,153594,35000,3.513624931,5.263175069,0.158394161,217,1370,0.060690222,0.2560981,20.88409328,12,5746,,,118.3912323,35,29563,82.46383115,164.6535445,,,,,,,,,,,,,135.3772646,93.75269116,189.1761581,,,,5.9,,,,,0,,,,,0.055793991,130,2330,0.027711017,0.083876966,0.031588057,0,0.065230781,0.021030043,0,0.044092769,0.004291846,0,0.018049794,0.826241135,2330,2820,0.773353867,0.879128403,,,,,,,,,,,,,0.776298841,0.707747708,0.844849974,0.403,,2820,0.314356074,0.491643926,73.58249447,,,70.82963105,76.33535788,,,,,,,,,,,,,72.41773169,69.30605651,75.52940686,,,,492.99622,106,15992,392.0265584,593.9658816,,,,,,,,,,,,,520.8538423,414.857178,645.6767028,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.106,,,0.089,0.122,0.169,,,0.145,0.195,0.09,,,0.075,0.104,0,0,4841,,,0.109,640,,,,0.052701292,325.7993853,6182,,,,,,,,,,,,,,,,,,,,,,,,,,0.329,,,0.312,0.345,0.183590066,584,3181,0.1573773,0.209802832,0.142757173,204,1429,0.103438024,0.182076322,0.001901798,11,5784,,,525.8181818,,,,,,,,,,,3.183004167,,,,,,,,,3.234677995,3.376357734,,,,,,,,,3.362386084,0.024777159,,,,,-576.7003333,,,,,0.560681374,40156,71620,0.445556502,0.675806246,71902,,,64165.65957,79638.34043,,,,,,,,,,78194,60125.06383,96262.93617,84881,75401.51064,94360.48936,,,,,,0.351657941,403,1146,,,,,,,,0.211176323,,71902,,,2.444987775,1,409,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,33.66274736,14,41589,18.40373723,56.4803701,,,,,,,,,,,,,39.5145357,21.60296437,66.29867661,,,,,,600,,,-888,0,0.686908691,3122,4545,,,0.54,,,,,10.99244429,,,,,0.83761062,1893,2260,0.798337588,0.876883651,0.042711235,92,2154,0,0.093969821,0.790707965,1787,2260,0.734126034,0.847289896,5784,,,,,0.229598894,1328,5784,,,0.207987552,1203,5784,,,0.013312586,77,5784,,,0.016251729,94,5784,,,0.007607192,44,5784,,,0.000864454,5,5784,,,0.108748271,629,5784,,,0.836272476,4837,5784,,,0.005529954,30,5425,0,0.022715678,0.490318119,2836,5784,,,1,5807,5807,, -48,067,48067,TX,Cass County,2024,1,12989.01601,714,79467,11445.2176,14532.81442,0,,,,2,,,,2,20017.36029,15066.74167,24967.9789,,,,,2,12375.07135,10642.01557,14108.12714,,,,,2,,0.212,,,0.181,0.243,4.371307892,,,3.486506192,5.330615922,6.089512771,,,4.918078247,7.336981202,0.087294333,191,2188,0.075466891,0.099121774,0,,,,,,,0.138957816,0.10518578,0.172729853,,,,0.073697586,0.060789652,0.08660552,,,,,,,0.217,,,0.173,0.26,0.405,,,0.32,0.491,6.5,0.07490977,0.169,,,0.301,,,0.246,0.355,0.36356927,10345,28454,,,0.161257109,,,0.127226564,0.198828204,0.20754717,11,53,0.138314163,0.283908431,388.7,111,28560,,,29.77061982,183,6147,25.45723303,34.0840066,,,,,,,29.8102981,20.52003755,41.86474189,28.72062663,14.33723334,51.3891345,30.10559425,25.00816888,35.20301962,,,,,,,0.183998544,4043,21973,0.163743225,0.204253863,0.000210084,6,28560,,,4760,0.000315358,9,28539,,,3171,0.000350398,10,28539,,,2853.9,2800,,,,,,,3718,,2652,0.32,,,,,,,0.36,,0.31,0.36,,,,,,,0.31,0.28,0.37,0.876478515,17562,20037,0.852237918,0.900719111,0.483876414,2866,5923,0.413826206,0.553926622,0.046664449,561,12022,,,0.274,1735,,0.195361702,0.352638298,,,,0.311036789,0,0.751144092,0.404761905,0.235354988,0.574168821,0.683087028,0.524098659,0.842075397,0.216234968,0.15445689,0.278013045,5.279779227,105226,19930,4.482322933,6.077235522,0.321445258,2064,6421,0.228508105,0.41438241,19.95798319,57,28560,,,105.6556031,157,148596,89.12842229,122.1827839,,,,,,,113.3878675,75.3454145,163.8770387,,,,110.7920301,91.36933083,130.2147293,,,,9.5,,,,,1,,,,,0.12458194,1490,11960,0.099738087,0.149425792,0.082112436,0.060987496,0.103237376,0.039632107,0.022488922,0.056775292,0.011287625,0.003705311,0.01886994,0.873690979,9511,10886,0.848987829,0.89839413,,,,,,,0.748231966,0.653598443,0.842865489,,,,0.849066667,0.803736513,0.894396821,0.371,,10886,0.316790508,0.425209493,72.08757802,,,71.02650665,73.1486494,,,,,,,67.32645962,64.3604106,70.29250864,,,,72.45495001,71.25840305,73.65149696,,,,623.7414071,714,79467,574.1408545,673.3419596,,,,,,,869.8637567,718.8205907,1020.906923,,,,602.1477627,546.8718842,657.4236413,,,,72.29662272,21,29047,44.75274894,110.5130676,,,,,,,193.5359009,92.80798715,355.9194125,,,,54.67740332,27.29476274,97.832978,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.136,,,0.116,0.155,0.197,,,0.169,0.223,0.118,,,0.101,0.138,212,51,24058,,,0.169,4840,,,,0.07490977,2282.051223,30464,,,12.43429605,11,88465,6.207155787,22.24839034,,,,,,,,,,,,,14.94745968,7.167887918,27.48891054,,,,0.368,,,0.353,0.382,0.219277569,3442,15697,0.193064803,0.245490335,0.10018105,664,6628,0.073968284,0.126393816,0.000665756,19,28539,,,1502.052632,0.957800983,389.825,407,,,,,,,,2.9849514,,,,,,,2.572863503,2.994860007,3.082811142,3.09419513,,,,,,,2.748435231,3.044052235,3.181013908,0.066031598,,,,,-8075.486286,,,,,0.627871551,35859,57112,0.561882012,0.69386109,54276,,,49865.10638,58686.89362,,,,,,,44211,24993.46809,63428.53192,38378,10363.70213,66392.29787,55573,51923.46809,59222.53192,,,,,,0.641272189,3468,5408,,,31.90938678,,,,,0.247696956,,54276,,,3.092145949,5,1617,,,5.733835363,12,209284,2.962756402,10.01585647,,,,,,,,,,,,,,,,,,,29.52375405,43,148596,20.89276553,40.52365911,28.93752187,,,,,,,,,,,,,36.61746413,25.6464217,50.69400511,,,,24.89972812,37,148596,17.53170648,34.32099528,,,,,,,,,,,,,27.47642346,18.66889667,39.00058986,,,,31.05827488,65,209284,23.97012086,39.58632089,,,,,,,28.65083231,13.73918774,52.6899007,,,,33.28643923,24.93382714,43.53948207,,,,,,2700,,,-888,22,0.61163812,13927,22770,,,0.51,,,,,16.50748046,,,,,0.780398959,8998,11530,0.749779754,0.811018165,0.107004608,1161,10850,0.081280427,0.13272879,0.785516045,9057,11530,0.746393857,0.824638233,28539,,,,,0.224780125,6415,28539,,,0.223483654,6378,28539,,,0.160377028,4577,28539,,,0.009706016,277,28539,,,0.006902835,197,28539,,,0.000805915,23,28539,,,0.057570342,1643,28539,,,0.750797155,21427,28539,,,0.006845767,185,27024,0.000997227,0.012694306,0.512491678,14626,28539,,,0.805616082,22923,28454,, -48,069,48069,TX,Castro County,2024,1,9897.825681,113,20640,7236.870043,12558.78132,0,,,,2,,,,2,,,,2,10221.37877,7196.793943,14088.82422,,9114.966983,4983.237269,15293.36578,1,,,,2,,0.223,,,0.19,0.257,4.008651929,,,3.301199046,4.790109803,5.064146096,,,4.012217557,6.227579968,0.063513514,47,740,0.045941399,0.081085629,0,,,,,,,,,,0.060377359,0.040099041,0.080655676,0.070707071,0.035001892,0.10641225,,,,,,,0.157,,,0.124,0.19,0.384,,,0.303,0.471,8,0.044770105,0.112,,,0.307,,,0.252,0.364,0.604531271,4456,7371,,,0.174479317,,,0.139464438,0.215701994,0.4,4,10,0.227273625,0.556899967,122.1,9,7374,,,35.17342452,72,2047,27.52103844,44.29510701,,,,,,,,,,40.97818903,31.41774256,52.53218895,21.27659575,10.20295467,39.12841711,,,,,,,0.26443418,1603,6062,0.235838436,0.293029925,0.000271223,2,7374,,,3687,,0,7298,,,,0.000137024,1,7298,,,7298,3698,,,,,,,,1434,4699,0.37,,,,,,,,0.17,0.47,0.24,,,,,,,,0.19,0.23,0.751500333,3381,4499,0.699363523,0.803637144,0.465506899,776,1667,0.335595284,0.595418513,0.031035512,104,3351,,,0.215,449,,0.133978723,0.296021277,,,,,,,,,,0.128930818,0.04281808,0.215043556,0.109131403,0,0.237741325,3.49975664,100667,28764,2.53966794,4.459845341,0.219261337,469,2139,0.104660991,0.333861684,9.492812585,7,7374,,,68.7685146,26,37808,44.92187689,100.7618072,,,,,,,,,,64.40964534,36.81567752,104.5972288,,,,,,,6.1,,,,,0,,,,,0.135029354,345,2555,0.080874228,0.18918448,0.094,0.039102676,0.148897325,0.044618395,0.016747667,0.072489124,0,0,0.013189984,0.780915577,2627,3364,0.725419532,0.836411622,,,,,,,,,,0.776470588,0.714884652,0.838056525,0.868613139,0.762795272,0.974431006,0.164,,3364,0.093975287,0.234024713,75.94252007,,,73.72270881,78.16233133,,,,,,,,,,74.37450736,71.63542026,77.11359446,77.51352146,73.96228275,81.06476017,,,,470.3614967,113,20640,379.5140696,561.2089238,,,,,,,,,,470.075265,361.2187405,601.4304653,465.3375849,320.3169819,653.5069799,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.126,,,0.108,0.146,0.163,,,0.141,0.188,0.128,,,0.111,0.148,,,,,,0.112,830,,,,0.044770105,360.9365851,8062,,,,,,,,,,,,,,,,,,,,,,,,,,0.352,,,0.336,0.366,0.314436886,1248,3969,0.277500716,0.351373056,0.171493213,379,2210,0.127408106,0.215578319,0.000685119,5,7298,,,1459.6,0.899593496,110.65,123,,,,,,,,2.568013872,,,,,,,,2.390646888,3.482367396,2.981752091,,,,,,,,2.82448816,3.536187996,0.409452711,,,,,-4760.472567,,,,,0.755307885,40662,53835,0.496004247,1.014611524,59958,,,51599.70213,68316.29787,,,,,,,,,,54560,40394.38298,68725.61702,62140,47400.08511,76879.91489,,,,,,0.764669549,1238,1619,,,,,,,,0.253243937,,59958,,,3.436426117,2,582,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,28.23104286,15,53133,15.80070038,46.56281195,,,,,,,,,,,,,,,,,,,,,900,,,0,-888,0.459316428,2083,4535,,,0.424,,,,,0.246212848,,,,,0.645973154,1540,2384,0.571214124,0.720732184,0.081838074,187,2285,0.030944775,0.132731373,0.815855705,1945,2384,0.777425892,0.854285518,7298,,,,,0.289120307,2110,7298,,,0.172650041,1260,7298,,,0.019046314,139,7298,,,0.023431077,171,7298,,,0.010002741,73,7298,,,0.000959167,7,7298,,,0.663606468,4843,7298,,,0.298437928,2178,7298,,,0.087716721,597,6806,0.047649737,0.127783704,0.488078926,3562,7298,,,1,7371,7371,, -48,071,48071,TX,Chambers County,2024,1,8500.034472,626,132532,7595.613137,9404.455808,0,,,,2,,,,2,10952.25921,7628.649832,15231.94129,,5932.360459,4527.015999,7636.123844,,9304.032213,8079.962539,10528.10189,,,,,2,,0.17,,,0.147,0.197,3.626217732,,,2.848474904,4.523073121,5.095176762,,,4.071264252,6.229699513,0.079062958,324,4098,0.070801216,0.087324699,0,,,,,,,0.139622642,0.097891953,0.18135333,0.074957411,0.059894456,0.090020365,0.075049116,0.064812785,0.085285447,,,,,,,0.159,,,0.128,0.192,0.386,,,0.306,0.47,7.4,0.041331504,0.144,,,0.246,,,0.2,0.294,0.788902965,36740,46571,,,0.200397912,,,0.161205326,0.24419583,0.225806452,14,62,0.16101658,0.295536813,182.1,89,48865,,,16.40659831,184,11215,14.03595778,18.77723884,,,,,,,29.14798206,19.04042961,42.70854718,16.31963984,12.39218674,21.09691889,14.83911278,12.00572838,18.14004586,,,,,,,0.153591031,6576,42815,0.135718691,0.171463372,0.000143252,7,48865,,,6980.714286,9.74887E-05,5,51288,,,10257.6,0.000389955,20,51288,,,2564.4,6620,,,,,,,3111,4209,7154,0.32,,,,,,,0.33,0.21,0.33,0.3,,,,,,0.23,0.19,0.27,0.31,0.892319,26708,29931,0.872348579,0.912289422,0.692778926,9047,13059,0.610893526,0.774664327,0.05277183,1109,21015,,,0.108,1527,,0.067489362,0.148510638,,,,,,,0.56440678,0.337003536,0.791810023,0.275524809,0.128658756,0.422390862,0.097692619,0.054650007,0.140735231,4.527070345,179358,39619,3.370726912,5.683413778,0.16024893,2060,12855,0.108292143,0.212205718,4.911490842,24,48865,,,75.16191316,167,222187,63.76215438,86.56167195,,,,,,,97.99965412,57.08840993,156.9069396,22.38722436,11.56780551,39.10597561,93.17992007,77.46140483,108.8984353,,,,9,,,,,1,,,,,0.172450053,2460,14265,0.124715819,0.220184286,0.123903124,0.08098853,0.166817718,0.03743428,0.015542183,0.059326376,0.012267788,0,0.025809505,0.826712486,18043,21825,0.783799658,0.869625313,,,,,,,0.902944384,0.794180958,1,0.792694497,0.74109926,0.844289734,0.823437067,0.778186676,0.868687458,0.469,,21825,0.405637855,0.532362145,76.11012306,,,75.26264127,76.95760486,,,,,,,73.62985,70.74116314,76.51853687,81.72335989,77.16500388,86.28171589,75.33343364,74.30044273,76.36642455,,,,440.9119814,626,132532,406.1447406,475.6792222,,,,,,,576.6443199,445.9766752,733.6329614,327.9650402,253.1164941,418.0183662,463.042295,420.5655974,505.5189926,,,,45.21858665,25,55287,29.26308508,66.75155407,,,,,,,,,,,,,62.10601497,37.93596741,95.91770302,,,,5.329949239,21,3940,3.299322585,8.147393588,,,,,,,,,,,,,,,,,,,,,,0.112,,,0.096,0.128,0.167,,,0.145,0.191,0.105,,,0.089,0.122,102.1,40,39193,,,0.144,6500,,,,0.041331504,1450.570466,35096,,,24.58565933,34,138292,17.02628379,34.35599463,,,,,,,,,,,,,32.59489047,21.82930971,46.81169981,,,,0.35,,,0.337,0.364,0.181865053,5291,29093,0.159226756,0.204503351,0.096208696,1383,14375,0.06999593,0.122421462,0.000565434,29,51288,,,1768.551724,0.978344768,570.375,583,,,,,,,,3.3407545,,,,,,,2.851415763,3.083534779,3.528358982,3.579497765,,,,,,,3.013270156,3.294433863,3.789362867,0.031082334,,,,,-2787.542333,,,,,0.578951392,53014,91569,0.486130998,0.671771786,102146,,,88854.93617,115437.0638,25893,20655.21277,31130.78723,,,,47048,19559.14894,74536.85106,90887,77337.38298,104436.617,128088,102123.0638,154052.9362,,,,,,0.382285714,4014,10500,,,20.21514189,,,,,0.188220782,,102146,,,5.649717514,17,3009,,,4.319668781,13,300949,2.300041698,7.386765172,,,,,,,,,,,,,,,,,,,17.45901372,37,222187,12.22807857,24.1706342,16.65263944,,,,,,,,,,,,,22.97845391,15.71724547,32.43872079,,,,16.20256811,36,222187,11.34807951,22.43118386,,,,,,,,,,,,,22.08709217,15.10755469,31.18038396,,,,13.95585299,42,300949,10.05815129,18.86425899,,,,,,,,,,,,,14.67336582,9.826983377,21.07340095,,,,1.886792453,,5300,,,10,0,0.751283831,21652,28820,,,0.534,,,,,35.89311962,,,,,0.837144309,13180,15744,0.81182316,0.862465458,0.097710521,1498,15331,0.062306797,0.133114246,0.895198171,14094,15744,0.864057567,0.926338774,51288,,,,,0.27801825,14259,51288,,,0.117629855,6033,51288,,,0.079609265,4083,51288,,,0.011659648,598,51288,,,0.014564811,747,51288,,,0.001754796,90,51288,,,0.27396272,14051,51288,,,0.616479488,31618,51288,,,0.026793235,1177,43929,0.015064874,0.038521595,0.493546249,25313,51288,,,0.541066329,25198,46571,, -48,073,48073,TX,Cherokee County,2024,1,11728.18327,1071,145094,10677.83291,12778.53363,0,,,,2,,,,2,16465.70218,13072.87196,19858.53241,,8279.29753,6479.052057,10079.543,,11914.80875,10508.26019,13321.35731,,,,,2,,0.216,,,0.186,0.249,4.246387229,,,3.378719039,5.130022952,5.732581877,,,4.616988547,6.840719582,0.084337349,420,4980,0.076619094,0.092055604,0,,,,,,,0.166402536,0.137342272,0.1954628,0.074159907,0.061797921,0.086521894,0.070541082,0.060493607,0.080588558,,,,,,,0.196,,,0.16,0.237,0.401,,,0.315,0.483,6.7,0.127812252,0.135,,,0.295,,,0.243,0.349,0.564270412,28446,50412,,,0.17288318,,,0.136475289,0.210750934,0.366197183,26,71,0.306286321,0.42538375,477.5,244,51097,,,40.18559947,485,12069,36.60912068,43.76207826,,,,,,,47.56022236,37.53378373,59.44211767,46.97822364,40.33311557,53.6233317,32.81171126,28.20630818,37.41711433,,,,64.81481482,40.12139193,99.07632943,0.242484818,9583,39520,0.21984652,0.265123116,0.000508836,26,51097,,,1965.269231,0.000367896,19,51645,,,2718.157895,0.001084326,56,51645,,,922.2321429,2650,,,,,,,5932,789,2399,0.38,,,,,,,0.32,0.24,0.39,0.38,,,,,,,0.32,0.23,0.4,0.788996318,26358,33407,0.769226935,0.808765702,0.428008214,5211,12175,0.367602081,0.488414346,0.044181977,909,20574,,,0.227,2912,,0.144787234,0.309212766,,,,,,,0.346953405,0.231054858,0.462851952,0.215420462,0.142811404,0.28802952,0.188423018,0.13265163,0.244194406,4.811923811,118484,24623,4.391639416,5.232208207,0.25952954,3343,12881,0.201918416,0.317140663,11.15525373,57,51097,,,89.11837828,233,261450,77.67523368,100.5615229,,,,,,,94.3186862,65.31843205,131.8009102,57.72653657,40.43095652,79.91785913,102.6890499,86.82670937,118.5513904,,,,9.2,,,,,1,,,,,0.146440129,2715,18540,0.122863135,0.170017124,0.088937689,0.068155814,0.109719563,0.05987055,0.044693406,0.075047694,0.012135922,0.005403369,0.018868476,0.750088837,14776,19699,0.714355771,0.785821903,,,,,,,0.77157803,0.673594432,0.869561628,0.774185824,0.690946271,0.857425376,0.7385656,0.634441339,0.842689862,0.354,,19699,0.300901801,0.407098199,73.290725,,,72.50527685,74.07617314,,,,,,,69.0800651,66.86615696,71.29397325,80.63201638,76.89353507,84.37049769,73.07358372,72.07158389,74.07558355,,,,584.3952169,1071,145094,547.7889685,621.0014654,,,,,,,808.1561555,692.3767349,923.9355761,399.1234404,316.932908,481.3139727,592.0420673,546.0055767,638.0785578,,,,64.0917524,38,59290,45.35513855,87.97093763,,,,,,,,,,51.00384847,25.46093739,91.25997363,68.53267927,41.26114978,107.022268,,,,8.773640086,45,5129,6.399553283,11.73982073,,,,,,,,,,,,,8.533747091,5.348053868,12.92019565,,,,,,,0.133,,,0.115,0.153,0.185,,,0.162,0.211,0.122,,,0.104,0.139,276.7,116,41922,,,0.135,6850,,,,0.127812252,6498.613933,50845,,,10.21593942,16,156618,5.83929207,16.59004559,,,,,,,,,,,,,16.03917837,8.977006376,26.45418555,,,,0.372,,,0.359,0.384,0.295881262,7974,26950,0.267285517,0.324477006,0.132961063,1762,13252,0.10079085,0.165131275,0.000658341,34,51645,,,1518.970588,0.954760274,696.975,730,,,,,,,,2.974368345,,,,,,,2.575499536,2.805508055,3.176095037,3.238739541,,,,,,,2.827978264,3.081512085,3.461838017,0.159621078,,,,,-12024.98253,,,,,0.638969778,32475,50824,0.499195737,0.778743819,50351,,,43275.93617,57426.06383,148017,91665.51064,204368.4894,77750,10315.2766,145184.7234,30375,20459.42553,40290.57447,51132,40800.59575,61463.40426,63562,58330.17021,68793.82979,,,,,,0.675484523,7354,10887,,,40.9041299,,,,,0.278524756,,50351,,,2.263083451,8,3535,,,4.387648769,16,364660,2.507920379,7.125266714,,,,,,,,,,,,,4.553671853,2.183662653,8.374364668,,,,20.96770191,54,261450,15.6118313,27.56865572,20.65404475,,,,,,,,,,,,,22.982812,15.72022639,32.4448731,,,,17.59418627,46,261450,12.88115564,23.46817889,,,,,,,,,,,,,22.3237065,15.54927952,31.04687173,,,,31.81045357,116,364660,26.0215417,37.59936545,,,,,,,33.55042431,19.54435854,53.71747941,31.47146587,20.73989432,45.78933053,32.33107016,25.25083403,40.78124575,,,,10.57692308,,5200,,,14,41,0.557053113,19508,35020,,,0.501,,,,,30.44094808,,,,,0.719574963,13002,18069,0.693638587,0.745511338,0.109362611,1793,16395,0.0833788,0.135346421,0.800929769,14472,18069,0.769221721,0.832637818,51645,,,,,0.250672863,12946,51645,,,0.180230419,9308,51645,,,0.132210282,6828,51645,,,0.017039404,880,51645,,,0.006622132,342,51645,,,0.000987511,51,51645,,,0.248291219,12823,51645,,,0.592971246,30624,51645,,,0.046011492,2178,47336,0.037349226,0.054673759,0.485623003,25080,51645,,,0.724648893,36531,50412,, -48,075,48075,TX,Childress County,2024,1,9150.161167,118,19678,6615.808777,11684.51356,0,,,,2,,,,2,,,,2,11987.0069,7216.961199,18719.19613,1,8789.805389,5930.444785,12547.99374,,,,,2,,0.21,,,0.178,0.242,4.105792403,,,3.220526717,5.049244832,5.256793237,,,4.120260955,6.486662221,0.081300813,40,492,0.057151342,0.105450285,0,,,,,,,,,,0.090277778,0.043469824,0.137085732,0.072847682,0.043536319,0.102159045,,,,,,,0.187,,,0.151,0.224,0.386,,,0.302,0.474,6.2,0.189491969,0.125,,,0.285,,,0.233,0.338,0.593937575,3958,6664,,,0.201358519,,,0.162214217,0.24717785,0,0,11,0,0.187423648,356.3,24,6736,,,36.82487725,45,1222,26.86031816,49.27458306,,,,,,,,,,53.14009662,33.30261563,80.4547449,25.71428571,15.2399154,40.63965753,,,,,,,0.215472235,908,4214,0.186876491,0.24406798,0.001484561,10,6736,,,673.6,0.000440593,3,6809,,,2269.666667,0.000881187,6,6809,,,1134.833333,3478,,,,,,,,2762,3013,0.2,,,,,,,,0.12,0.22,0.2,,,,,,,0.22,0.07,0.21,0.819947927,4094,4993,0.773852558,0.866043296,0.436118785,1263,2896,0.332100017,0.540137552,0.028222013,90,3189,,,0.252,329,,0.155489362,0.348510638,,,,,,,,,,0.17578125,0,0.368336059,0.103559871,0,0.210949454,5.005747126,122811,24534,3.10257057,6.908923683,0.425616547,535,1257,0.167505601,0.683727494,10.39192399,7,6736,,,90.03179248,32,35543,61.58167941,127.098028,,,,,,,,,,,,,127.1423486,82.27982428,187.6871876,,,,6.7,,,,,0,,,,,0.123376623,285,2310,0.051939957,0.19481329,0.12139738,0.048539288,0.194255472,0.004329004,0,0.023795551,0.001731602,0,0.01250049,0.889084507,2525,2840,0.83136484,0.946804174,,,,,,,,,,,,,0.873846154,0.778478809,0.969213498,0.387,,2840,0.235849818,0.538150182,74.08674016,,,72.06909071,76.10438961,,,,,,,,,,71.42909112,66.62452576,76.23365648,74.32610599,72.00993074,76.64228124,,,,546.672787,118,19678,444.8657291,648.479845,,,,,,,,,,616.9733716,403.0274902,904.0089394,550.2156725,433.5073693,688.6769612,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.128,,,0.11,0.146,0.169,,,0.147,0.193,0.121,,,0.103,0.14,118.9,7,5886,,,0.125,850,,,,0.189491969,1334.212957,7041,,,,,,,,,,,,,,,,,,,,,,,,,,0.365,,,0.353,0.376,0.262981575,785,2985,0.224853915,0.301109234,0.101694915,132,1298,0.068333213,0.135056617,0.001468644,10,6809,,,680.9,0.875,69.125,79,,,,,,,,3.325802153,,,,,,,,3.033053205,3.616543274,3.586823837,,,,,,,,3.404682169,3.893597205,0.009231159,,,,,-3246.233,,,,,0.541165541,32037,59200,0.246063597,0.836267484,49200,,,41754.38298,56645.61702,,,,,,,,,,33338,14858,51818,64313,37150.61702,91475.38298,,,,,,0.537475345,545,1014,,,,,,,,0.308617886,,49200,,,5.602240896,2,357,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,35,,600,,,10,11,0.422037037,2279,5400,,,0.515,,,,,57.35857978,,,,,0.711416491,1346,1892,0.651078874,0.771754108,0.139778684,240,1717,0.048744694,0.230812674,0.772198732,1461,1892,0.685608714,0.858788749,6809,,,,,0.195182846,1329,6809,,,0.162138346,1104,6809,,,0.095315024,649,6809,,,0.011308562,77,6809,,,0.010427376,71,6809,,,0.000734322,5,6809,,,0.313114995,2132,6809,,,0.557056837,3793,6809,,,0.021379526,137,6408,0,0.044119892,0.412542224,2809,6809,,,0.322328932,2148,6664,, -48,077,48077,TX,Clay County,2024,1,9866.198082,208,28203,7418.712777,12313.68339,0,,,,2,,,,2,,,,2,,,,2,10774.11168,7973.957463,13574.2659,,,,,2,,0.155,,,0.129,0.183,3.629362337,,,2.839890224,4.523613764,5.361377973,,,4.274598902,6.518018772,0.0688,43,625,0.048955884,0.088644116,0,,,,,,,,,,,,,0.063520871,0.043155724,0.083886018,,,,,,,0.167,,,0.13,0.206,0.357,,,0.28,0.443,5.7,0.205718515,0.142,,,0.229,,,0.184,0.278,0.069387356,709,10218,,,0.183289838,,,0.146375797,0.224177532,0.260869565,6,23,0.151021274,0.378411613,155.9,16,10263,,,23.30097087,48,2060,17.18029652,30.89370689,,,,,,,,,,,,,25.04368084,18.124236,33.73367374,,,,,,,0.173275532,1359,7843,0.153020213,0.193530852,0.00038975,4,10263,,,2565.75,,0,10486,,,,0.000190731,2,10486,,,5243,3141,,,,,,,,,3123,0.36,,,,,,,,,0.37,0.44,,,,,,,,,0.43,0.929254048,7001,7534,0.905880474,0.952627623,0.577601411,1310,2268,0.483941626,0.671261196,0.038422026,187,4867,,,0.152,315,,0.093617021,0.210382979,,,,,,,,,,0.125,0,0.283967171,0.086441682,0.036672709,0.136210654,4.013456742,122282,30468,3.134816354,4.892097129,0.256385542,532,2075,0.15521193,0.357559154,11.69248758,12,10263,,,107.3599049,56,52161,81.0985184,139.4157666,,,,,,,,,,,,,114.2192147,85.55802968,149.401545,,,,8.1,,,,,0,,,,,0.120192308,500,4160,0.084415228,0.155969387,0.083495146,0.050306831,0.11668346,0.024038462,0.008992252,0.039084671,0.015625,0,0.031777081,0.792834563,3762,4745,0.757779295,0.827889831,,,,,,,,,,,,,0.698100851,0.59233784,0.803863863,0.381,,4745,0.313493952,0.448506048,75.9082832,,,74.05020532,77.76636108,,,,,,,,,,,,,74.92015679,72.92123114,76.91908244,,,,466.9712532,208,28203,396.1084395,537.8340669,,,,,,,,,,,,,492.499517,414.5865277,570.4125062,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.11,,,0.093,0.127,0.173,,,0.149,0.199,0.092,,,0.077,0.108,78.6,7,8910,,,0.142,1460,,,,0.205718515,2211.88547,10752,,,,,,,,,,,,,,,,,,,,,,,,,,0.336,,,0.317,0.354,0.190639465,1112,5833,0.165618189,0.215660742,0.12535344,266,2122,0.090800249,0.159906632,0.000476826,5,10486,,,2097.2,,,,,,,,,,,3.010371156,,,,,,,,,3.075831892,3.193422296,,,,,,,,,3.260801669,0.030318596,,,,,-4402.84345,,,,,0.725415582,50708,69902,0.6217877,0.829043464,66085,,,57366.87234,74803.12766,132596,36987.31915,228204.6809,,,,,,,93938,59660.04255,128215.9575,74215,68961.7234,79468.2766,,,,,,0.395266272,668,1690,,,,,,,,0.211545737,,66085,,,6.756756757,3,444,,,,,,,,,,,,,,,,,,,,,,,,,,29.33941797,16,52161,16.04013282,49.22655801,30.67425855,,,,,,,,,,,,,33.27497634,18.1917392,55.82975622,,,,19.17141159,10,52161,9.193437043,35.2569085,,,,,,,,,,,,,21.55079522,10.33444398,39.63267972,,,,17.87826278,13,72714,9.51942197,30.57237385,,,,,,,,,,,,,18.4746128,9.546102024,32.27143063,,,,,,900,,,-888,-888,0.707825015,5744,8115,,,0.579,,,,,15.98219052,,,,,0.813986679,3422,4204,0.802568407,0.825404952,0.087506323,346,3954,0.050008731,0.125003915,0.833729781,3505,4204,0.791639889,0.875819673,10486,,,,,0.200076292,2098,10486,,,0.239557505,2512,10486,,,0.011253099,118,10486,,,0.016212092,170,10486,,,0.008582872,90,10486,,,0.000572192,6,10486,,,0.073908068,775,10486,,,0.870970818,9133,10486,,,0.006613757,65,9828,0,0.016810394,0.500095365,5244,10486,,,1,10218,10218,, -48,079,48079,TX,Cochran County,2024,1,13493.42531,58,7636,9036.758704,19378.80956,0,,,,2,,,,2,,,,2,15710.61931,10066.09023,23376.1562,1,,,,2,,,,2,,0.309,,,0.272,0.351,5.125902841,,,4.321147938,6.017649031,5.885613526,,,4.735528582,7.202634753,0.082236842,25,304,0.051353962,0.113119723,0,,,,,,,,,,0.097297297,0.054590897,0.140003698,,,,,,,,,,0.227,,,0.19,0.272,0.433,,,0.348,0.521,5.8,0.091953963,0.194,,,0.392,,,0.335,0.457,0.014919513,38,2547,,,0.15001748,,,0.118113997,0.185795377,0,0,3,0,0.420755624,198.7,5,2516,,,43.87096774,34,775,30.3819205,61.30528012,,,,,,,,,,45.53734062,29.46936584,67.22209781,,,,,,,,,,0.286403086,594,2074,0.255424362,0.317381809,0.000397456,1,2516,,,2516,0,0,2526,,,-2526,,0,2526,,,,817,,,,,,,,,1238,0.28,,,,,,,,0.24,0.32,0.22,,,,,,,,0.17,0.27,0.693901717,1172,1689,0.64632789,0.741475545,0.363877822,274,753,0.264368332,0.463387312,0.048372911,55,1137,,,0.386,252,,0.271617021,0.500382979,,,,,,,,,,0.361054767,0.247176548,0.474932985,0.13986014,0,0.407225255,5.480411765,93167,17000,3.811232276,7.149591253,0.165898618,108,651,0.073404154,0.258393081,15.89825119,4,2516,,,136.1714327,19,13953,81.98409779,212.64856,,,,,,,,,,131.6419339,65.71517912,235.5437831,,,,,,,6,,,,,0,,,,,0.136585366,140,1025,0.083212535,0.189958197,0.066863324,0.002168509,0.131558138,0.058536585,0.012043998,0.105029173,0.024390244,0,0.049190265,0.808880309,838,1036,0.730467019,0.887293599,,,,,,,,,,0.846733668,0.734906703,0.958560634,0.838709677,0.699190122,0.978229233,0.413,,1036,0.2885307,0.5374693,72.00993879,,,68.38202801,75.63784956,,,,,,,,,,70.40763352,65.22541128,75.58985575,,,,,,,620.1729112,58,7636,467.1991099,807.2402893,,,,,,,,,,797.6397249,561.611977,1099.441291,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.17,,,0.148,0.193,0.2,,,0.176,0.228,0.167,,,0.146,0.191,,,,,,0.194,500,,,,0.091953963,287.5400416,3127,,,,,,,,,,,,,,,,,,,,,,,,,,0.37,,,0.36,0.378,0.336783989,488,1449,0.29746484,0.376103138,0.174174174,116,666,0.131280557,0.217067791,0.000791766,2,2526,,,1263,,,,,,,,,,,2.189483589,,,,,,,,1.977313897,,2.582642621,,,,,,,,2.430660599,,0.122314136,,,,,-5045.689,,,,,0.78039352,38155,48892,0.564858355,0.995928686,45766,,,38756.46809,52775.53192,,,,,,,,,,36360,31243.74468,41476.25532,60714,35583.10638,85844.89362,,,,,,0.694362018,468,674,,,,,,,,0.32399598,,45766,,,,,173,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,300,,,0,0,0.546448087,1000,1830,,,0.449,,,,,,,,,,0.674661105,647,959,0.617232368,0.732089843,0.07980653,66,827,0,0.162665925,0.768508863,737,959,0.699020523,0.837997204,2526,,,,,0.265241489,670,2526,,,0.159144893,402,2526,,,0.038004751,96,2526,,,0.040380048,102,2526,,,0.006730008,17,2526,,,0.00277118,7,2526,,,0.604908947,1528,2526,,,0.332145685,839,2526,,,0.106255356,248,2334,0.058580894,0.153929817,0.501187649,1266,2526,,,1,2547,2547,, -48,081,48081,TX,Coke County,2024,1,7906.228868,66,8802,5011.870898,11863.22523,1,,,,2,,,,2,,,,2,,,,2,8380.429456,4790.139531,13609.2924,1,,,,2,,0.192,,,0.163,0.223,4.003018399,,,3.249160429,4.831778473,5.555538855,,,4.43774053,6.725186051,0.089430894,22,246,0.053770285,0.125091504,1,,,,,,,,,,0.151515152,0.065011552,0.238018752,0.06779661,0.03076021,0.10483301,,,,,,,0.183,,,0.146,0.224,0.368,,,0.288,0.456,3.9,0.360753277,0.152,,,0.267,,,0.219,0.321,0.695281583,2284,3285,,,0.168488027,,,0.132803374,0.207746049,0,0,2,0,0.510593623,271,9,3321,,,28.49389417,21,737,17.63816959,43.55594401,,,,,,,,,,,,,26.42276423,14.06900913,45.18373154,,,,,,,0.203546957,505,2481,0.177334191,0.229759723,,0,3321,,,,0,0,3333,,,-3333,,0,3333,,,,2741,,,,,,,,,2571,0.39,,,,,,,,,0.42,0.43,,,,,,,,0.37,0.43,0.860377359,2052,2385,0.80923419,0.911520527,0.443425077,290,654,0.283357781,0.603492372,0.034527687,53,1535,,,0.21,143,,0.137319149,0.282680851,,,,,,,,,,0.098039216,0,0.227256591,0.116915423,0.013893935,0.219936911,5.087097508,89421,17578,2.902765417,7.2714296,0.270392749,179,662,0.097289121,0.443496377,12.04456489,4,3321,,,83.79721075,14,16707,45.81271489,140.5974808,,,,,,,,,,,,,88.45999196,44.15890927,158.2793608,,,,7.2,,,,,1,,,,,0.030153846,49,1625,0.007327882,0.052979811,0.017956656,0,0.05269898,0.008615385,0,0.026218234,0.002461539,0,0.015515146,0.850566038,1127,1325,0.773447145,0.927684931,,,,,,,,,,,,,0.813675214,0.768122363,0.859228065,0.392,,1325,0.26754781,0.51645219,75.58287085,,,73.0104286,78.15531309,,,,,,,,,,,,,74.91994849,71.76002352,78.07987346,,,,447.9317168,66,8802,336.5000918,584.4537257,,,,,,,,,,,,,469.6834514,339.9122427,632.6605267,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.124,,,0.106,0.144,0.181,,,0.157,0.209,0.108,,,0.092,0.125,,,,,,0.152,500,,,,0.360753277,1197.700881,3320,,,,,,,,,,,,,,,,,,,,,,,,,,0.349,,,0.334,0.365,0.226057907,406,1796,0.193887694,0.258228119,0.146648045,105,716,0.104945917,0.188350172,0,0,3333,,,-3333,,,,,,,,,,,2.68726653,,,,,,,,,3.156239845,2.900844986,,,,,,,,,3.216695429,0.047338753,,,,,-4186.0945,,,,,0.783624454,43068,54960,0.479905392,1.087343516,43774,,,37476.97872,50071.02128,,,,,,,,,,,,,42356,33873.78723,50838.21277,,,,,,0.558704453,276,494,,,,,,,,0.312811258,,43774,,,,,161,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,300,,,-888,-888,0.689534884,1779,2580,,,0.314,,,,,0.030064278,,,,,0.696704775,1036,1487,0.634624159,0.758785391,0.073367572,100,1363,0.012247893,0.13448725,0.788164089,1172,1487,0.720310054,0.856018124,3333,,,,,0.207320732,691,3333,,,0.255925593,853,3333,,,0.00930093,31,3333,,,0.02970297,99,3333,,,0.00150015,5,3333,,,0.00030003,1,3333,,,0.234623462,782,3333,,,0.729072907,2430,3333,,,0.016388276,52,3173,0,0.042921712,0.498649865,1662,3333,,,1,3285,3285,, -48,083,48083,TX,Coleman County,2024,1,14527.21631,239,21393,11247.83204,17806.60058,0,,,,2,,,,2,,,,2,12279.97686,7153.539053,19661.43253,1,16025.57892,11804.14171,20247.01614,,,,,2,,0.192,,,0.163,0.225,4.085296925,,,3.266639602,5.037370023,5.627328443,,,4.540309849,6.87055289,0.097472924,54,554,0.072774269,0.122171579,0,,,,,,,,,,0.114754098,0.058196336,0.171311861,0.094202899,0.066064233,0.122341564,,,,,,,0.186,,,0.147,0.227,0.369,,,0.288,0.457,6.1,0.102108009,0.174,,,0.27,,,0.221,0.325,0.657079646,5049,7684,,,0.161960942,,,0.128663356,0.200069492,0.333333333,5,15,0.193378406,0.471634149,297.3,23,7735,,,36.85196752,59,1601,28.05342513,47.53635313,,,,,,,,,,35.95505618,20.55142124,58.38875865,40.07633588,28.88349784,54.17156372,,,,,,,0.22530541,1291,5730,0.199092644,0.251518176,0.00051713,4,7735,,,1933.75,0.000254777,2,7850,,,3925,0.000127389,1,7850,,,7850,5283,,,,,,,,,5480,0.26,,,,,,,,0.22,0.27,0.21,,,,,,,,0.21,0.21,0.881889764,4928,5588,0.850351684,0.913427844,0.523088023,725,1386,0.397191115,0.648984932,0.043335522,132,3046,,,0.273,433,,0.170531915,0.375468085,,,,,,,,,,0.157894737,0,0.361932465,0.288,0.122137946,0.453862054,3.965224767,93500,23580,2.746580741,5.183868792,0.273423689,464,1697,0.093576087,0.453271291,21.97802198,17,7735,,,90.60410902,37,40837,63.7936542,124.8858294,,,,,,,,,,,,,96.59658048,65.17330721,137.897625,,,,7.4,,,,,0,,,,,0.103151863,360,3490,0.069216189,0.137087536,0.085094067,0.046957946,0.123230188,0.017191977,0.003089045,0.031294909,0.005444126,0.001145465,0.009742787,0.718833681,2416,3361,0.649544609,0.788122752,,,,,,,,,,,,,0.741786744,0.656382357,0.82719113,0.379,,3361,0.258129879,0.499870121,70.23651072,,,68.1698279,72.30319353,,,,,,,,,,,,,69.23995586,66.65376522,71.82614649,,,,688.4578925,239,21393,588.59632,788.3194649,,,,,,,,,,773.7743792,532.630679,1086.666915,713.8115699,594.9840759,832.6390638,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.126,,,0.107,0.147,0.182,,,0.158,0.209,0.11,,,0.093,0.128,105.1,7,6661,,,0.174,1370,,,,0.102108009,908.250739,8895,,,,,,,,,,,,,,,,,,,,,,,,,,0.344,,,0.329,0.359,0.265106281,1110,4187,0.231744579,0.298467984,0.120342089,197,1637,0.085788898,0.154895281,0.000636943,5,7850,,,1570,0.845744681,79.5,94,,,,,,,,2.827656054,,,,,,,,2.513683174,3.041961231,2.652336691,,,,,,,,2.648025234,2.753692186,0.016811547,,,,,-10217.075,,,,,0.739636449,38004,51382,0.539450421,0.939822476,45834,,,39531.02128,52136.97872,31111,28324.10638,33897.89362,,,,46767,5013.638298,88520.3617,57981,34285.85106,81676.14894,50806,45948.29787,55663.70213,,,,,,0.7,854,1220,,,41.99311308,,,,,0.302090151,,45834,,,4.716981132,2,424,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,19.09888011,11,57595,9.534092139,34.17317217,,,,,,,,,,,,,,,,,,,,,700,,,-888,-888,0.668395462,4124,6170,,,0.418,,,,,12.86143003,,,,,0.720872274,2314,3210,0.670043796,0.771700753,0.055888224,168,3006,0.015988136,0.095788312,0.832398754,2672,3210,0.793473231,0.871324277,7850,,,,,0.205859873,1616,7850,,,0.257707006,2023,7850,,,0.03044586,239,7850,,,0.01477707,116,7850,,,0.011592357,91,7850,,,0.000382166,3,7850,,,0.188917198,1483,7850,,,0.747770701,5870,7850,,,0.021599141,161,7454,0.002294092,0.040904191,0.49388535,3877,7850,,,0.531624154,4085,7684,, -48,085,48085,TX,Collin County,2024,1,4439.919198,7568,3078299,4295.968095,4583.870302,0,,,,2,2353.381562,2084.730542,2622.032582,,5973.357548,5471.167654,6475.547442,,4150.952845,3810.018546,4491.887143,,4959.71952,4744.981636,5174.457403,,,,,2,,0.123,,,0.105,0.145,2.84473372,,,2.279094761,3.536675929,4.047206629,,,3.383232204,4.843808221,0.074909603,6070,81031,0.073097047,0.076722158,0,0.067567568,0.034549062,0.100586073,0.091664599,0.087210667,0.096118532,0.118971061,0.112289274,0.125652848,0.063937185,0.060151988,0.067722381,0.061802937,0.059379491,0.064226384,,,,0.076754386,0.062647757,0.090861015,0.105,,,0.083,0.132,0.267,,,0.221,0.317,8.4,0.028394115,0.101,,,0.194,,,0.16,0.232,0.92493694,984563,1064465,,,0.177966683,,,0.14747427,0.212757758,0.290322581,81,279,0.26019684,0.320895694,242.9,2695,1109462,,,7.361601885,1875,254700,7.028384415,7.694819354,,,,0.550145789,0.33604334,0.849655551,9.49388703,8.37785224,10.60992182,17.35055479,16.21445774,18.48665184,4.736796475,4.358089277,5.115503674,,,,6.954689147,5.378756082,8.848069804,0.109031583,106627,977946,0.100691157,0.117372008,0.000973445,1080,1109462,,,1027.27963,0.00069561,806,1158696,,,1437.588089,0.001671707,1937,1158696,,,598.191017,2650,,,,,3273,1636,4287,2502,2594,0.49,,,,,0.71,0.39,0.46,0.34,0.5,0.53,,,,,0.4,0.53,0.41,0.41,0.54,0.943508052,671005,711181,0.940014994,0.94700111,0.816492583,251474,307993,0.799925337,0.833059828,0.031700417,19823,625323,,,0.049,13688,,0.033510638,0.064489362,0.063237774,0,0.126505581,0.043807587,0.031173257,0.056441917,0.124084042,0.095125505,0.15304258,0.138486768,0.114826418,0.162147117,0.038940238,0.030638534,0.047241943,4.013386984,207460,51692,3.89440976,4.132364209,0.144398521,39199,271464,0.133612842,0.1551842,6.408511513,711,1109462,,,40.41602694,2098,5191010,38.68658117,42.14547271,,,,16.23165053,13.51359409,18.94970698,33.95692269,29.05038109,38.8634643,26.25952837,22.72464522,29.79441152,54.21301821,51.50971092,56.91632551,,,,9.9,,,,,0,,,,,0.133483267,47185,353490,0.127332777,0.139633756,0.109430452,0.103123128,0.115737776,0.025262384,0.022357855,0.028166913,0.006294379,0.004663842,0.007924916,0.679845626,380496,559680,0.67137861,0.688312642,0.680798005,0.639798145,0.721797865,0.521774601,0.498094041,0.545455161,0.697140524,0.669420474,0.724860574,0.697712811,0.67846259,0.716963032,0.69845369,0.687488964,0.709418417,0.458,,559680,0.447210605,0.468789395,81.55906394,,,81.37469125,81.74343663,93.58933608,83.50784252,103.6708297,88.86903742,87.85314557,89.88492927,78.95821806,78.28860012,79.62783601,84.9823156,83.87351436,86.09111684,80.57270013,80.34934826,80.796052,,,,227.7039321,7568,3078299,222.5395852,232.868279,,,,113.6779147,103.8174782,123.5383512,295.9851508,276.1764251,315.7938764,209.841704,194.0068155,225.6765926,251.6488612,244.6821885,258.6155339,,,,35.07267838,414,1180406,31.6941713,38.45118547,,,,30.33648634,23.20500829,38.96848582,53.08700961,41.38392837,67.07224295,33.01405637,26.09624156,41.20303647,35.39388336,30.43873969,40.34902703,,,,4.280248987,339,79201,3.824605407,4.735892567,,,,3.534956795,2.655568341,4.612351819,7.517913779,5.789709685,9.600208059,4.220231139,3.257085296,5.379031023,3.846657072,3.224813893,4.468500251,,,,,,,0.084,,,0.072,0.098,0.136,,,0.118,0.157,0.087,,,0.074,0.101,235.3,2160,917903,,,0.101,105320,,,,0.028394115,22213.8802,782341,,,9.078865179,292,3216261,8.037516399,10.12021396,,,,,,,9.534761429,6.563291045,13.39035003,5.755281463,3.854402322,8.265544209,12.58743358,10.91647757,14.25838959,,,,0.33,,,0.318,0.343,0.127010028,88811,699244,0.117478113,0.136541943,0.070053443,20501,292648,0.058138549,0.081968337,0.000926904,1074,1158696,,,1078.860335,0.967044041,15853.72,16394,,,0.057037208,3702,64905,0.045925568,0.068148848,3.293536482,,,,,,3.740206332,2.853682824,2.856046102,3.440251249,3.554186689,,,,,,4.26212985,2.965609312,3.099579803,3.644746529,0.109687095,,,,,-1348.144757,,,,,0.689458752,63182,91640,0.671640855,0.707276648,113943,,,109676.2766,118209.7234,110735,98910.65957,122559.3404,139186,134495.1064,143876.8936,80707,76175.76596,85238.23404,83280,78954.89362,87605.10638,119835,117126.7447,122543.2553,,,,,,0.252650278,52765,208846,,,29.08435029,,,,,0.174955899,,113943,,,6.390388855,400,62594,,,2.398959107,169,7044722,2.037269888,2.760648327,,,,1.09208954,0.564298602,1.907660649,7.670144729,5.7782027,9.983747657,2.297065728,1.486539824,3.390922152,1.902227534,1.496222625,2.384458686,,,,11.36841208,591,5191010,10.44011695,12.29670722,11.38506765,,,,6.898635994,5.103648886,9.120362636,6.325289991,4.009691265,9.491040675,5.322647734,3.686088286,7.437866706,15.18170412,13.75068215,16.61272609,,,,8.437664347,438,5191010,7.64745664,9.227872054,,,,3.317417627,2.204399921,4.794592129,10.3347156,7.806733101,13.42048784,4.211433795,2.91654033,5.885056606,11.1233183,9.898812616,12.34782398,,,,6.444541034,454,7044722,5.851724731,7.037357336,,,,3.094253698,2.142860636,4.323909398,6.415030137,4.696608319,8.556751221,7.810023476,6.238369359,9.657214975,7.177738561,6.341460913,8.014016209,,,,6.96366782,,115600,,,282,523,0.760887291,490856,645110,,,0.706,,,,,140.6538231,,,,,0.645176256,247538,383675,0.637255057,0.653097455,0.124861755,47079,377049,0.118118237,0.131605273,0.956648205,367042,383675,0.952158183,0.961138227,1158696,,,,,0.244845067,283701,1158696,,,0.116712235,135234,1158696,,,0.113232461,131202,1158696,,,0.006829229,7913,1158696,,,0.186979156,216652,1158696,,,0.001071895,1242,1158696,,,0.158987344,184218,1158696,,,0.512860146,594249,1158696,,,0.037036089,37631,1016063,0.034469704,0.039602474,0.501236735,580781,1158696,,,0.061495681,65460,1064465,, -48,087,48087,TX,Collingsworth County,2024,1,13327.5605,54,7700,8539.219492,19830.3536,1,,,,2,,,,2,,,,2,,,,2,12587.30075,6702.20752,21524.66763,1,,,,2,,0.234,,,0.198,0.271,4.472961245,,,3.634817926,5.413955171,5.63688822,,,4.591751073,6.712395556,0.090497738,20,221,0.052672585,0.12832289,1,,,,,,,,,,,,,,,,,,,,,,0.2,,,0.162,0.242,0.393,,,0.313,0.479,7.3,0.028576031,0.153,,,0.31,,,0.256,0.366,0.825414781,2189,2652,,,0.160454793,,,0.126596789,0.198063875,0.25,1,4,0.023230216,0.544021398,344.2,9,2615,,,24.5398773,16,652,14.02666021,39.85122331,,,,,,,,,,31.54574133,15.12740914,58.01374146,,,,,,,,,,0.310609698,647,2083,0.278439485,0.34277991,0.000382409,1,2615,,,2615,0,0,2568,,,-2568,0.000389408,1,2568,,,2568,5726,,,,,,,,6735,3727,0.21,,,,,,,,0.16,0.23,0.11,,,,,,,,0.07,0.11,0.777715566,1389,1786,0.726710894,0.828720237,0.560509554,352,628,0.404399949,0.716619159,0.034830431,38,1091,,,0.261,177,,0.163297872,0.358702128,,,,,,,,,,0.223300971,0.044599424,0.402002518,0.124137931,0,0.284572314,5.187205296,114409,22056,2.119779924,8.254630668,0.31042654,262,844,0.131041101,0.48981198,19.12045889,5,2615,,,125.339461,18,14361,74.28410821,198.0903855,,,,,,,,,,,,,158.2278481,84.24966518,270.5744391,,,,6.5,,,,,1,,,,,0.174757282,180,1030,0.096260819,0.253253744,0.087598425,0.013898749,0.161298101,0.033009709,0,0.073992817,0.057281553,0.014756143,0.099806964,0.755336617,920,1218,0.703794185,0.80687905,,,,,,,,,,,,,0.79144385,0.718095087,0.864792614,0.221,,1218,0.121213211,0.32078679,72.33497217,,,68.63388871,76.03605563,,,,,,,,,,,,,,,,,,,583.2863532,54,7700,430.0693116,773.3530815,,,,,,,,,,,,,569.2207918,384.0508779,812.5980744,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.141,,,0.121,0.163,0.188,,,0.163,0.215,0.128,,,0.11,0.149,0,0,2138,,,0.153,450,,,,0.028576031,87.35692737,3057,,,,,,,,,,,,,,,,,,,,,,,,,,0.361,,,0.347,0.375,0.34893617,492,1410,0.309617021,0.388255319,0.230329042,161,699,0.17790351,0.282754573,0.001168224,3,2568,,,856,,,,,,,,,,,3.316762829,,,,,,,,,3.816990434,3.122056699,,,,,,,,2.801539958,3.680357601,0.016210617,,,,,-4717.07,,,,,0.46840643,27480,58667,0.343348538,0.593464321,52093,,,45471.89362,58714.10638,,,,,,,,,,47250,36557.57447,57942.42553,70517,59871.04255,81162.95745,,,,,,0.565377532,307,543,,,,,,,,0.291478702,,52093,,,6.172839506,1,162,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,300,,,0,-888,0.595599022,1218,2045,,,0.464,,,,,0.120071165,,,,,0.764243615,778,1018,0.699820545,0.828666685,0.054247697,53,977,0,0.129146297,0.798624754,813,1018,0.724248754,0.873000755,2568,,,,,0.26635514,684,2568,,,0.18652648,479,2568,,,0.053738318,138,2568,,,0.03699377,95,2568,,,0.006619938,17,2568,,,0,0,2568,,,0.362149533,930,2568,,,0.546339564,1403,2568,,,0.027529762,74,2688,0,0.058680155,0.508566978,1306,2568,,,1,2652,2652,, -48,089,48089,TX,Colorado County,2024,1,11584.70832,384,57482,9744.460242,13424.9564,0,,,,2,,,,2,20399.40528,14127.18117,28506.12419,,10896.90847,8113.464096,14327.4222,,9875.75686,7439.098487,12312.41523,,,,,2,,0.201,,,0.171,0.231,3.973935819,,,3.267565851,4.750558506,5.285992899,,,4.300756548,6.334621562,0.080944351,144,1779,0.068269809,0.093618893,0,,,,,,,0.149321267,0.102331471,0.196311063,0.068741894,0.050882173,0.086601614,0.075898802,0.056957347,0.094840256,,,,,,,0.175,,,0.142,0.211,0.382,,,0.298,0.474,8,0.072853334,0.1,,,0.282,,,0.229,0.336,0.635890451,13072,20557,,,0.164873612,,,0.131818859,0.204023711,0.104166667,5,48,0.045872328,0.183346042,329.6,68,20630,,,25.01675229,112,4477,20.38358493,29.64991965,,,,,,,30.58103976,18.67969356,47.22993563,32.53588517,25.26538792,41.24698716,14.87910725,9.53332477,22.13893217,,,,,,,0.230488419,3662,15888,0.205467142,0.255509696,0.000533204,11,20630,,,1875.454546,0.000240917,5,20754,,,4150.8,0.000337284,7,20754,,,2964.857143,4064,,,,,,,5470,3310,3713,0.35,,,,,,,0.38,0.25,0.36,0.34,,,,,,,0.24,0.29,0.36,0.844144723,11829,14013,0.817287167,0.871002279,0.545275591,2216,4064,0.451015015,0.639536166,0.035151278,359,10213,,,0.212,1020,,0.134553192,0.289446809,,,,,,,0.073855244,0,0.221833857,0.058247423,0,0.121200971,0.051126993,0.000230931,0.102023055,4.290747977,122990,28664,2.813989014,5.767506939,0.166527546,798,4792,0.084768764,0.248286328,15.99612215,33,20630,,,99.82859618,106,106182,80.82402377,118.8331686,,,,,,,130.0918774,74.3587483,211.2610586,88.3553714,59.17297891,126.8930517,103.6956448,79.31895176,133.2013938,,,,9.3,,,,,0,,,,,0.129032258,960,7440,0.093962192,0.164102324,0.045961003,0.02271121,0.069210796,0.072580645,0.042480869,0.102680421,0.019489247,0.006534824,0.032443671,0.842627438,7389,8769,0.803033968,0.882220907,,,,,,,,,,0.83479404,0.777399665,0.892188415,0.857568027,0.791751581,0.923384473,0.355,,8769,0.285545265,0.424454735,74.37845843,,,73.02581377,75.73110308,,,,,,,65.9738136,61.9367268,70.01090039,76.47279401,73.26296255,79.68262547,75.86278114,74.08673582,77.63882647,,,,488.3401586,384,57482,434.8697126,541.8106046,,,,,,,861.0344781,667.2898938,1093.483351,427.1127511,334.1894229,537.8778232,444.6136567,375.991939,513.2353744,,,,119.9206679,26,21681,78.33616169,175.7115635,,,,,,,,,,100.623868,48.25305591,185.0508759,121.6693028,58.34515995,223.7541799,,,,11.17942985,20,1789,6.828686185,17.2657227,,,,,,,,,,,,,,,,,,,,,,0.124,,,0.106,0.142,0.173,,,0.15,0.198,0.116,,,0.099,0.135,239.8,41,17098,,,0.1,2050,,,,0.072853334,1520.740492,20874,,,,,,,,,,,,,,,,,,,,,,,,,,0.356,,,0.344,0.369,0.264024611,2918,11052,0.233045888,0.295003334,0.157563851,802,5090,0.118244702,0.196883,0.000433651,9,20754,,,2306,0.970202952,262.925,271,,,,,,,,2.799533351,,,,,,,2.712834275,2.686690078,3.079290326,3.128452477,,,,,,,2.915923008,3.059454712,3.350001755,0.044896496,,,,,-6685.174667,,,,,0.705568731,39569,56081,0.520876769,0.890260693,59711,,,50914.23404,68507.76596,,,,,,,55000,28627.57447,81372.42553,52939,32777.80851,73100.19149,68750,63088.04255,74411.95745,,,,,,0.623200677,2208,3543,,,21.78437878,,,,,0.321984224,,59711,,,6.736526946,9,1336,,,7.428868583,11,148071,3.708464431,13.29229796,,,,,,,,,,,,,,,,,,,24.21289292,25,106182,15.34889711,36.33122781,23.54448023,,,,,,,,,,,,,19.87381125,9.530264979,36.54864647,,,,18.83558419,20,106182,11.50526416,29.09003212,,,,,,,,,,,,,16.99928603,8.151818407,31.26229226,,,,29.71547433,44,148071,21.59130914,39.89163731,,,,,,,,,,28.9422713,15.41054053,49.49216537,29.04022071,18.60661736,43.20954648,,,,16.84210526,,1900,,,22,10,0.658415842,9975,15150,,,0.526,,,,,15.06848489,,,,,0.821719089,6061,7376,0.789411149,0.854027029,0.055620268,382,6868,0.029721645,0.081518891,0.779690889,5751,7376,0.736857696,0.822524083,20754,,,,,0.234460827,4866,20754,,,0.226606919,4703,20754,,,0.109183772,2266,20754,,,0.012479522,259,20754,,,0.007902091,164,20754,,,0.00110822,23,20754,,,0.324033921,6725,20754,,,0.541485979,11238,20754,,,0.027773468,537,19335,,,0.498699046,10350,20754,,,1,20557,20557,, -48,091,48091,TX,Comal County,2024,1,7063.604137,2106,462483,6569.340757,7557.867517,0,,,,2,,,,2,7468.238565,4082.955519,12530.43531,1,6595.150245,5780.809761,7409.490729,,7603.188362,6936.221906,8270.154819,,,,,2,,0.143,,,0.121,0.167,3.241702876,,,2.525460103,4.045298782,4.859682259,,,3.885247701,5.885987607,0.074772886,856,11448,0.069954656,0.079591116,0,,,,0.115384615,0.068968203,0.161801028,0.123853211,0.080124176,0.167582246,0.078884079,0.070690651,0.087077507,0.069110577,0.063017022,0.075204132,,,,0.078431373,0.03583044,0.121032305,0.126,,,0.098,0.157,0.313,,,0.247,0.384,8,0.044724233,0.113,,,0.207,,,0.169,0.251,0.70784701,114318,161501,,,0.200937446,,,0.161559409,0.243374807,0.25,23,92,0.196589092,0.305870283,262.9,460,174986,,,15.05943735,508,33733,13.74985455,16.36902014,,,,,,,14.70588235,7.341123486,26.31288571,25.43518003,22.64831525,28.22204482,8.464392079,7.1609422,9.767841958,,,,18.75901876,9.988387433,32.07849339,0.148217636,21172,142844,0.132728274,0.163706998,0.000594333,104,174986,,,1682.557692,0.000649906,120,184642,,,1538.683333,0.001695172,313,184642,,,589.9105431,2116,,,,,,,2839,2176,2063,0.42,,,,,,0.3,0.39,0.37,0.42,0.43,,,,,,0.38,0.26,0.39,0.44,0.93611152,108251,115639,0.926961804,0.945261235,0.7049891,28134,39907,0.662553928,0.747424271,0.034552796,2841,82222,,,0.088,3519,,0.057021277,0.118978723,,,,,,,,,,0.102315603,0.05565554,0.148975665,0.022924627,0.01188492,0.033964334,4.207461457,178754,42485,3.864474004,4.55044891,0.148041113,5430,36679,0.118602331,0.177479896,8.857851485,155,174986,,,62.3894656,490,785389,56.86526683,67.91366438,,,,,,,58.65102639,29.27838106,104.9428873,31.58545445,24.62241128,39.90632153,77.18004838,69.63524214,84.72485463,,,,9.7,,,,,1,,,,,0.130438765,7120,54585,0.11358388,0.14729365,0.109454579,0.093513117,0.125396041,0.017312449,0.011794356,0.022830541,0.008885225,0.005329157,0.012441293,0.752345679,57893,76950,0.73380309,0.770888268,,,,0.76959847,0.616629359,0.922567582,0.822237242,0.717517086,0.926957399,0.764423597,0.742169339,0.786677856,0.718773735,0.691508835,0.746038635,0.488,,76950,0.456884101,0.519115899,78.3332791,,,77.9022671,78.76429111,,,,85.51627732,81.8610985,89.17145614,77.12352703,73.75100022,80.49605385,79.73722304,78.70659873,80.76784736,77.73827186,77.19971545,78.27682828,,,,329.513418,2106,462483,314.5692653,344.4575707,,,,,,,312.6600515,224.370251,424.1586642,317.424802,286.9689329,347.8806711,346.9099897,328.0158101,365.8041692,,,,49.86083148,79,158441,39.47528983,62.14147296,,,,,,,,,,47.13725358,31.32236268,68.12645569,49.15651883,35.71720183,65.99033212,,,,5.901815255,66,11183,4.564463491,7.508556062,,,,,,,,,,5.381604697,3.372623012,8.147814185,5.668760533,3.99133056,7.813639672,,,,,,,0.096,,,0.082,0.111,0.152,,,0.131,0.174,0.09,,,0.076,0.106,157.5,233,147944,,,0.113,17670,,,,0.044724233,4851.32697,108472,,,8.467622433,42,496007,6.102717448,11.44576564,,,,,,,,,,,,,9.20324445,6.209390384,13.13820371,,,,0.312,,,0.297,0.326,0.167981788,17414,103666,0.148917958,0.187045618,0.100111667,4124,41194,0.07628188,0.123941454,0.000904453,167,184642,,,1105.640719,0.961494449,2251.82,2342,,,0.082787168,720,8697,0.042827959,0.122746377,3.162212769,,,,,,,3.067782345,2.801715877,3.438423717,3.26654895,,,,,,,3.06968046,2.905984878,3.546526193,0.030052844,,,,,-568.83032,,,,,0.843433098,58137,68929,0.782151213,0.904714983,92979,,,84880.44681,101077.5532,120757,48313.25532,193200.7447,101042,51202,150882,105149,57733.68085,152564.3192,76234,66524.55319,85943.44681,97496,93639.14894,101352.8511,,,,,,0.329840481,9160,27771,,,40.48528855,,,,,0.200346315,,92979,,,4.347328681,38,8741,,,2.478019491,26,1049225,1.618724603,3.6308727,,,,,,,,,,,,,2.138528151,1.196917972,3.527176968,,,,20.43204331,162,785389,17.15952793,23.70455869,20.62672128,,,,,,,,,,10.03916585,6.363969978,15.06367796,25.15079875,20.56213861,29.73945888,,,,15.66102912,123,785389,12.89329854,18.4287597,,,,,,,,,,5.414649334,2.797828324,9.45830271,19.77498752,15.95595218,23.59402286,,,,13.24787343,139,1049225,11.04548031,15.45026655,,,,,,,,,,7.513019722,4.70836946,11.37480215,16.39538249,13.39878298,19.391982,,,,13.37748344,,15100,,,75,127,0.796880323,88892,111550,,,0.656,,,,,86.57279166,,,,,0.758509624,48512,63957,0.745680054,0.771339194,0.121384231,7587,62504,0.105210647,0.137557816,0.940960333,60181,63957,0.929669607,0.952251058,184642,,,,,0.220339901,40684,184642,,,0.185028325,34164,184642,,,0.028265508,5219,184642,,,0.008963291,1655,184642,,,0.01671884,3087,184642,,,0.001706004,315,184642,,,0.293221477,54141,184642,,,0.642741088,118677,184642,,,0.017741254,2772,156246,0.012845713,0.022636796,0.500194972,92357,184642,,,0.466114761,75278,161501,, -48,093,48093,TX,Comanche County,2024,1,9766.672522,274,36742,7725.759374,11807.58567,0,,,,2,,,,2,,,,2,13077.22911,9207.576131,18025.23771,,7510.035926,5619.859142,9400.21271,,,,,2,,0.185,,,0.155,0.215,3.92723536,,,3.003274856,4.86721718,5.288754418,,,4.211367903,6.372871848,0.064606742,69,1068,0.049863042,0.079350442,0,,,,,,,,,,0.061674009,0.039545298,0.083802719,0.064676617,0.045045186,0.084308048,,,,,,,0.169,,,0.134,0.207,0.374,,,0.29,0.464,7.1,0.079355272,0.139,,,0.263,,,0.211,0.316,0.095189054,1294,13594,,,0.170773216,,,0.133289498,0.213382265,0.032258065,1,31,0.001202004,0.12662243,174.2,24,13775,,,36.41456583,104,2856,29.41591159,43.41322006,,,,,,,,,,47.58250192,36.48123138,60.99862001,28.41677943,20.48031511,38.41123057,,,,,,,0.22945825,2410,10503,0.204436973,0.254479527,0.000580762,8,13775,,,1721.875,0.000288226,4,13878,,,3469.5,0.000576452,8,13878,,,1734.75,2290,,,,,,,,3845,1938,0.35,,,,,,,,0.32,0.36,0.24,,,,,,,,0.28,0.23,0.846281851,8137,9615,0.814687399,0.877876303,0.466919366,1355,2902,0.383058361,0.550780371,0.034793611,220,6323,,,0.25,762,,0.15706383,0.34293617,,,,,,,,,,0.320281911,0.191331214,0.449232608,0.10375,0.03603624,0.17146376,5.103025875,118727,23266,4.150222009,6.055829741,0.120325203,370,3075,0.059995744,0.180654662,10.8892922,15,13775,,,104.0033984,71,68267,81.22751704,131.1861355,,,,,,,,,,102.3174912,62.49818174,158.0210667,108.8255377,81.02776084,143.0854843,,,,7.9,,,,,1,,,,,0.121883657,660,5415,0.086630989,0.157136325,0.064844486,0.038117292,0.091571681,0.041551247,0.017795585,0.065306908,0.016620499,0.004356109,0.028884889,0.80387289,4857,6042,0.748848591,0.858897189,,,,,,,,,,0.920096852,0.831724861,1,0.778625954,0.723198624,0.834053284,0.28,,6042,0.222363434,0.337636566,75.02629336,,,73.48493124,76.56765548,,,,,,,,,,74.09310277,70.22062966,77.96557588,76.53049119,75.06322345,77.99775892,,,,485.4206991,274,36742,422.222087,548.6193111,,,,,,,,,,533.7747331,404.2757703,691.567079,460.8119029,389.7735326,531.8502733,,,,74.79991024,10,13369,35.8694644,137.5596981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.12,,,0.102,0.14,0.173,,,0.148,0.2,0.106,,,0.088,0.125,120.3,14,11638,,,0.139,1880,,,,0.079355272,1108.910573,13974,,,,,,,,,,,,,,,,,,,,,,,,,,0.337,,,0.323,0.351,0.268853341,2000,7439,0.236683128,0.301023553,0.137181875,442,3222,0.099054215,0.175309534,0.000648508,9,13878,,,1542,0.940296053,142.925,152,,,,,,,,2.813726518,,,,,,,,2.625843984,2.900705768,3.12459539,,,,,,,,3.089376921,3.126094868,0.043801602,,,,,-6123.2665,,,,,0.75098894,37210,49548,0.639218508,0.862759372,51559,,,44561.38298,58556.61702,73071,8090.744681,138051.2553,,,,,,,53913,39231.46809,68594.53192,59775,49195.76596,70354.23404,,,,,,0.595452596,1388,2331,,,,,,,,0.268546714,,51559,,,3.931847969,3,763,,,,,,,,,,,,,,,,,,,,,,,,,,20.86420045,14,68267,10.78083683,36.44555934,20.50771237,,,,,,,,,,,,,26.18622461,12.55731255,48.1573994,,,,21.97254896,15,68267,12.29786886,36.24037803,,,,,,,,,,,,,25.60600888,13.23099844,44.7285444,,,,38.87330455,37,95181,27.37039385,53.5817297,,,,,,,,,,55.66482354,31.15517918,91.81066119,33.45193565,20.96414997,50.64663259,,,,13.84615385,,1300,,,12,6,0.618181818,6086,9845,,,0.48,,,,,15.27339323,,,,,0.824157303,4401,5340,0.801286715,0.847027892,0.078353779,396,5054,0.044075049,0.112632509,0.825655431,4409,5340,0.785910453,0.865400409,13878,,,,,0.224167748,3111,13878,,,0.233463035,3240,13878,,,0.007710045,107,13878,,,0.01498775,208,13878,,,0.00677331,94,13878,,,0.000432339,6,13878,,,0.298674161,4145,13878,,,0.669404813,9290,13878,,,0.036862077,476,12913,0.020837543,0.052886611,0.495604554,6878,13878,,,1,13594,13594,, -48,095,48095,TX,Concho County,2024,1,5673.389851,45,7857,3101.695025,9518.984148,1,,,,2,,,,2,,,,2,,,,2,9742.48211,4454.883197,18494.26578,1,,,,2,,0.211,,,0.186,0.238,4.10963509,,,3.599346868,4.658718866,5.335959673,,,4.742175034,5.977605286,0.083333333,13,156,0.039961391,0.126705275,1,,,,,,,,,,,,,,,,,,,,,,0.181,,,0.155,0.209,0.373,,,0.334,0.416,6.7,0.120466602,0.135,,,0.292,,,0.26,0.327,0.662125341,2187,3303,,,0.16087584,,,0.143034861,0.179548133,0.0625,1,16,0.002768371,0.214434203,299.3,10,3341,,,18.69158879,10,535,8.963343357,34.37449728,,,,,,,,,,,,,,,,,,,,,,0.173734047,422,2429,0.14871277,0.198755324,0.000299312,1,3341,,,3341,0.000299401,1,3340,,,3340,0.000299401,1,3340,,,3340,2150,,,,,,,,,1977,0.41,,,,,,,,0.22,0.46,0.42,,,,,,,,0.52,0.39,0.748989491,1853,2474,0.679083752,0.81889523,0.371967655,276,742,0.187930654,0.556004656,0.031484258,42,1334,,,0.358,140,,0.220978723,0.495021277,,,,,,,,,,0.268595041,0.117666271,0.419523812,0.461309524,0.228237509,0.694381539,4.709606987,107850,22900,2.65406638,6.765147594,0.314720812,186,591,0.141147458,0.488294166,0,0,3341,,,,,,,,,,,,,,,,,,,,,,,,,,7.2,,,,,1,,,,,0.091428571,80,875,0.052862225,0.129994918,0.061130335,0,0.123044736,0.016,0,0.048896119,0.021714286,0.000419735,0.043008837,0.840725807,834,992,0.800898443,0.88055317,,,,,,,,,,,,,0.725947522,0.526854112,0.925040931,0.494,,992,0.292849916,0.695150084,81.65181779,,,78.00468979,85.29894578,,,,,,,,,,,,,79.53562197,73.51730219,85.55394174,,,,319.7015254,45,7857,225.0993777,440.6664398,,,,,,,,,,,,,427.1141447,267.6701606,646.655948,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.127,,,0.115,0.142,0.173,,,0.158,0.189,0.116,,,0.105,0.127,709.3,21,2961,,,0.135,430,,,,0.120466602,492.3470042,4087,,,,,,,,,,,,,,,,,,,,,,,,,,0.354,,,0.342,0.364,0.191065662,355,1858,0.161278428,0.220852896,0.120661157,73,605,0.081342008,0.159980306,0.000898204,3,3340,,,1113.333333,,,,,,,,,,,2.460442301,,,,,,,,,,2.570735074,,,,,,,,,,0.017516865,,,,,-10817.192,,,,,0.961341126,35038,36447,0.618136375,1.304545876,51191,,,43571.42553,58810.57447,,,,,,,,,,,,,63977,49913.85106,78040.14894,,,,,,0.643518519,278,432,,,,,,,,0.267488426,,51191,,,17.85714286,2,112,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,200,,,-888,-888,0.672679045,1268,1885,,,0.31,,,,,16.75390072,,,,,0.807598039,659,816,0.746384946,0.868811133,0.063307494,49,774,0,0.154890588,0.830882353,678,816,0.776178831,0.885585875,3340,,,,,0.183532934,613,3340,,,0.261377246,873,3340,,,0.015269461,51,3340,,,0.021856287,73,3340,,,0.022155689,74,3340,,,0.008383234,28,3340,,,0.397305389,1327,3340,,,0.418263473,1397,3340,,,0.146490663,455,3106,0.050004971,0.242976355,0.472155689,1577,3340,,,1,3303,3303,, -48,097,48097,TX,Cooke County,2024,1,8361.468461,699,115180,7365.131903,9357.805019,0,,,,2,,,,2,9535.316019,4572.554665,17535.78566,1,6936.922132,5078.698853,9252.882007,,8937.261191,7677.957376,10196.56501,,,,,2,,0.175,,,0.149,0.206,3.847852695,,,3.032063459,4.735056347,5.397889282,,,4.333014371,6.527252039,0.066284779,243,3666,0.058231477,0.074338081,0,,,,,,,0.127906977,0.057318247,0.198495707,0.061028771,0.047175006,0.074882536,0.067455103,0.057166761,0.077743445,,,,,,,0.176,,,0.141,0.215,0.354,,,0.278,0.435,7.6,0.027052191,0.142,,,0.253,,,0.208,0.304,0.620188154,25842,41668,,,0.191199206,,,0.1543855,0.232056148,0.268292683,11,41,0.186632551,0.353859022,288.8,122,42244,,,37.61456969,316,8401,33.46723936,41.76190003,,,,,,,37.26708075,19.25644444,65.09809021,56.99056991,47.51617089,66.46496892,27.71450266,23.21891228,32.21009304,,,,67.79661017,38.75162057,110.0974475,0.221166409,7448,33676,0.198528111,0.243804707,0.000260392,11,42244,,,3840.363636,0.000418119,18,43050,,,2391.666667,0.000603949,26,43050,,,1655.769231,3057,,,,,,,,,3095,0.35,,,,,,,0.2,0.16,0.36,0.39,,,,,,0.33,0.33,0.18,0.4,0.887974506,25357,28556,0.869751728,0.906197285,0.566639577,5578,9844,0.495878414,0.637400741,0.033563081,672,20022,,,0.19,1798,,0.124468085,0.255531915,,,,,,,0.910931174,0.580218739,1,0.407943453,0.316752483,0.499134424,0.136009905,0.087153637,0.184866172,4.27083862,134651,31528,3.728604937,4.813072303,0.230930428,2204,9544,0.177717104,0.284143751,10.65240034,45,42244,,,81.80636239,168,205363,69.43582654,94.17689824,,,,,,,,,,36.19535148,19.78833547,60.72964948,96.7642809,81.17449011,112.3540717,,,,8.9,,,,,1,,,,,0.112685126,1750,15530,0.088150083,0.137220168,0.06821565,0.048777663,0.087653636,0.040888603,0.026128276,0.05564893,0.008370895,0.002149364,0.014592426,0.785527507,15621,19886,0.754958495,0.816096519,,,,,,,,,,0.679016621,0.599354224,0.758679017,0.778113269,0.750600666,0.805625872,0.363,,19886,0.315444795,0.410555205,76.50972055,,,75.66306304,77.35637805,,,,,,,,,,92.54425723,75.64257091,109.4459436,75.79324341,74.81145412,76.77503271,,,,434.9344806,699,115180,400.7311306,469.1378307,,,,,,,530.1541765,336.0722707,795.491568,360.3783784,270.7273293,470.215611,455.1834603,415.4879869,494.8789338,,,,58.28728638,25,42891,37.72045848,86.0435329,,,,,,,,,,,,,58.14404217,32.54277903,95.8997553,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.117,,,0.1,0.135,0.176,,,0.153,0.201,0.101,,,0.085,0.117,116.3,41,35240,,,0.142,5840,,,,0.027052191,1039.805083,38437,,,11.20950566,14,124894,6.128341054,18.80764578,,,,,,,,,,,,,12.95784382,6.695506985,22.63474543,,,,0.336,,,0.322,0.351,0.254153514,6119,24076,0.225557769,0.282749259,0.142388386,1432,10057,0.107835195,0.176941578,0.000859466,37,43050,,,1163.513514,0.940525114,411.95,438,,,,,,,,2.923912521,,,,,,,,2.570024169,3.132403502,3.091302019,,,,,,,,2.945024445,3.16943315,0.18969113,,,,,-2321.506528,,,,,0.822926786,46590,56615,0.741456958,0.904396615,66466,,,61937.14894,70994.85106,98678,98175.19149,99180.80851,,,,,,,48280,41586.21277,54973.78723,72385,66721.85106,78048.14894,,,,,,0.486657102,3392,6970,,,56.32435895,,,,,0.243237144,,66466,,,3.649635037,10,2740,,,,,,,,,,,,,,,,,,,,,,,,,,23.5140183,49,205363,17.1512863,31.46360651,23.86018903,,,,,,,,,,,,,27.38716396,19.28309087,37.74959792,,,,14.608279,30,205363,9.856144496,20.85422661,,,,,,,,,,,,,16.99913043,11.10439638,24.9076647,,,,18.31901866,52,283858,13.68151935,24.02295575,,,,,,,,,,,,,19.76796178,14.24700809,26.72054163,,,,12.89473684,,3800,,,21,28,0.663615721,18996,28625,,,0.612,,,,,49.71605226,,,,,0.691034823,11192,16196,0.662454448,0.719615199,0.089128179,1374,15416,0.066807836,0.111448521,0.789886392,12793,16196,0.752288603,0.82748418,43050,,,,,0.22583043,9722,43050,,,0.197421603,8499,43050,,,0.032055749,1380,43050,,,0.01514518,652,43050,,,0.011939605,514,43050,,,0.000998839,43,43050,,,0.196329849,8452,43050,,,0.734006969,31599,43050,,,0.035547503,1393,39187,0.025199271,0.045895735,0.501788618,21602,43050,,,0.602956705,25124,41668,, -48,099,48099,TX,Coryell County,2024,1,8126.569032,994,226770,7451.210345,8801.927718,0,,,,2,,,,2,7691.810108,5809.40759,9574.212626,,6169.70741,4892.194266,7678.734934,,9155.003411,8202.472446,10107.53438,,,,,2,,0.189,,,0.164,0.216,4.171728939,,,3.37539984,5.039966468,5.263125163,,,4.315395756,6.265846725,0.085597208,564,6589,0.078841904,0.092352511,0,,,,0.091549296,0.044115259,0.138983333,0.147355164,0.122699734,0.172010594,0.075376884,0.061513094,0.089240675,0.076842928,0.068417601,0.085268255,0.093220339,0.040761184,0.145679494,0.072519084,0.041115149,0.103923019,0.185,,,0.153,0.221,0.422,,,0.351,0.493,5.2,0.255710069,0.143,,,0.264,,,0.22,0.311,0.489066468,40638,83093,,,0.200659261,,,0.162343435,0.243513859,0.14893617,7,47,0.081495822,0.230762672,419.1,353,84232,,,26.66204986,385,14440,23.99875505,29.32534467,,,,,,,14.64254953,10.14039121,20.4614953,25.72706935,20.73964898,31.55196672,30.09518477,26.07233462,34.11803492,,,,33.62255965,22.84489803,47.72453959,0.15154546,9394,61988,0.132481631,0.17060929,0.00017808,15,84232,,,5615.466667,0.000329191,28,85057,,,3037.75,0.000646625,55,85057,,,1546.490909,2167,,,,,,943,409,1074,2338,0.37,,,,,,0.31,0.4,0.31,0.38,0.26,,,,,,0.25,0.19,0.22,0.27,0.9000668,47159,52395,0.887505548,0.912628053,0.634819766,17382,27381,0.595338097,0.674301434,0.044690248,1103,24681,,,0.158,2952,,0.104382979,0.211617021,,,,0.067729084,0,0.252311275,0.128971963,0.019983923,0.237960003,0.165869565,0.096529538,0.235209593,0.11907682,0.081456391,0.15669725,3.589824225,108445,30209,3.275650176,3.903998274,0.231110873,4319,18688,0.189916408,0.272305339,6.292145503,53,84232,,,57.41760444,222,386641,49.86451456,64.97069433,,,,,,,39.21076571,25.37514014,57.88282521,41.91228165,28.47736193,59.49113826,71.26876443,60.15588104,82.38164783,,,,8.9,,,,,1,,,,,0.121836506,2720,22325,0.101772514,0.141900498,0.091830731,0.073287825,0.110373637,0.028443449,0.020782708,0.03610419,0.00537514,0.00184488,0.0089054,0.71317738,24176,33899,0.689419354,0.736935406,,,,,,,0.701324885,0.660453673,0.742196097,0.676255904,0.514366779,0.838145029,0.704513135,0.651015515,0.758010755,0.287,,33899,0.257260464,0.316739536,75.65019848,,,75.02058244,76.27981451,,,,,,,77.31857856,74.86838099,79.76877612,81.98128877,77.72058936,86.24198818,74.36018448,73.57917169,75.14119727,,,,458.2136,994,226770,429.5852035,486.8419966,,,,,,,402.9792736,326.7303925,479.2281548,337.7950718,271.2771804,415.6859029,509.1240332,472.0249858,546.2230805,,,,61.76890708,48,77709,45.54351597,81.89660938,,,,,,,,,,,,,74.14793792,49.65803773,106.4888073,,,,6.757771437,45,6659,4.929164858,9.042429869,,,,,,,,,,,,,6.527742907,4.264138392,9.564655808,,,,,,,0.123,,,0.107,0.14,0.174,,,0.153,0.197,0.115,,,0.099,0.132,350.4,246,70214,,,0.143,11650,,,,0.255710069,19277.47069,75388,,,8.01958467,19,236920,4.828313846,12.52357487,,,,,,,,,,,,,7.434115154,3.564947178,13.67160246,,,,0.384,,,0.372,0.396,0.187198931,8122,43387,0.162177654,0.212220207,0.073023568,1416,19391,0.052768249,0.093278887,0.000599598,51,85057,,,1667.784314,0.848704157,694.24,818,,,0.104536489,477,4563,0.067614991,0.141457988,2.819762852,,,,,,3.064494842,2.729799132,2.717003442,2.915138549,3.030951639,,,,,,3.583832518,2.906612075,2.949847453,3.11129016,0.047845256,,,,,-4112.99725,,,,,0.941144788,38442,40846,0.88937912,0.992910455,63428,,,58809.78723,68046.21277,78649,75900.23404,81397.76596,51635,26172.87234,77097.12766,60000,47858.7234,72141.2766,49500,41165.53192,57834.46809,65637,62549.85106,68724.14894,,,,,,0.552593182,8332,15078,,,39.30358581,,,,,0.231616952,,63428,,,5.529953917,30,5425,,,4.098131625,22,536830,2.568277271,6.204620529,,,,,,,,,,,,,4.186876397,2.229335347,7.159686151,,,,18.67624434,74,386641,14.58630178,23.55754098,19.13920148,,,,,,,,,,17.65828019,8.814949847,31.59554098,22.75141686,16.93992424,29.91391147,,,,13.19053075,51,386641,9.821216539,17.34311193,,,,,,,,,,,,,17.14058892,12.12970087,23.52679747,,,,15.08857553,81,536830,11.98250694,18.7537217,,,,,,,,,,,,,19.64611232,15.02771924,25.23625317,,,,13.1147541,,6100,,,11,69,0.418099306,23493,56190,,,0.595,,,,,45.57485187,,,,,0.577913818,14538,25156,0.557147859,0.598679777,0.097271504,2385,24519,0.078358072,0.116184936,0.879313086,22120,25156,0.858109439,0.900516734,85057,,,,,0.221345686,18827,85057,,,0.113159411,9625,85057,,,0.162396981,13813,85057,,,0.013202911,1123,85057,,,0.023701753,2016,85057,,,0.010393031,884,85057,,,0.203063828,17272,85057,,,0.561623382,47770,85057,,,0.013583416,1053,77521,0.009216453,0.01795038,0.493151651,41946,85057,,,0.195287208,16227,83093,, -48,101,48101,TX,Cottle County,2024,1,6932.64,32,3666,3460.74891,12404.40795,1,,,,2,,,,2,,,,2,,,,2,6215.557691,2018.174664,14505.03824,1,,,,2,,0.239,,,0.207,0.272,4.574782873,,,3.731937118,5.544035295,5.914753926,,,4.776968407,7.129319537,,,,,,0,,,,,,,,,,,,,,,,,,,,,,0.209,,,0.172,0.25,0.41,,,0.329,0.496,0.9,0.568841756,0.191,,,0.316,,,0.265,0.371,0.815217391,1125,1380,,,0.144127038,,,0.113144826,0.178777548,0,0,2,0,0.510593623,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.193579767,199,1028,0.167367001,0.219792533,0,0,1381,,,-1381,0,0,1307,,,-1307,,0,1307,,,,2724,,,,,,,,,3015,0.29,,,,,,,,,0.26,0.16,,,,,,,,0.19,0.16,0.818596171,898,1097,0.732905871,0.904286472,0.546875,245,448,0.394130173,0.699619827,0.026682135,23,862,,,0.317,78,,0.195468085,0.438531915,,,,,,,,,,0.346938776,0,0.904820763,0.451388889,0.227256607,0.675521171,5.825748207,94214,16172,3.850291815,7.801204599,0.284009547,119,419,0.122351692,0.445667402,21.72338885,3,1381,,,,,,,,,,,,,,,,,,,,,,,,,,6.5,,,,,0,,,,,0.092198582,65,705,0.032136313,0.15226085,0.063309353,0,0.144684554,0.028368794,0,0.079879526,0,0,0.033461398,0.580645161,414,713,0.454851539,0.706438784,,,,,,,,,,,,,,,,0.287,,713,0.166341478,0.407658522,,,,,,,,,,,,,,,,,,,,,,,,482.4512684,32,3666,317.9384259,701.9412658,,,,,,,,,,,,,420.6989137,230.0000109,705.8612921,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.146,,,0.126,0.166,0.196,,,0.171,0.222,0.136,,,0.117,0.155,,,,,,0.191,300,,,,0.568841756,856.1068426,1505,,,,,,,,,,,,,,,,,,,,,,,,,,0.37,,,0.356,0.384,0.218958612,164,749,0.185596909,0.252320314,0.126666667,38,300,0.090921986,0.162411348,0,0,1307,,,-1307,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-15152.18,,,,,0.629406332,36121,57389,0.511097797,0.747714868,45351,,,38378.40426,52323.59575,,,,,,,17461,12344.74468,22577.25532,,,,59028,43973.53192,74082.46809,,,,,,0.720496894,116,161,,,,,,,,0.308262221,,45351,,,7.8125,1,128,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,100,,,-888,0,0.570689655,662,1160,,,0.343,,,,,0.022424877,,,,,0.667630058,462,692,0.607045608,0.728214508,0.078988942,50,633,0,0.189801226,0.680635838,471,692,0.634628613,0.726643063,1307,,,,,0.189747513,248,1307,,,0.257077276,336,1307,,,0.100229533,131,1307,,,0.007651109,10,1307,,,0.001530222,2,1307,,,0.000765111,1,1307,,,0.261667942,342,1307,,,0.613618975,802,1307,,,0,0,1546,0,0.046241502,0.518745218,678,1307,,,1,1380,1380,, -48,103,48103,TX,Crane County,2024,1,9351.797132,73,13491,6681.060978,12734.49341,0,,,,2,,,,2,,,,2,7359.390211,4612.090664,11142.20522,1,12186.47657,6488.785528,20839.24608,1,,,,2,,0.209,,,0.183,0.235,3.86975147,,,3.324483179,4.418255418,4.888002582,,,4.274327176,5.512079541,0.067085954,32,477,0.044635067,0.089536841,0,,,,,,,,,,0.059945504,0.035658281,0.084232727,0.099009901,0.040760065,0.157259737,,,,,,,0.15,,,0.127,0.172,0.38,,,0.34,0.423,8.4,0.03916445,0.096,,,0.297,,,0.263,0.332,0.940748663,4398,4675,,,0.188237516,,,0.168559402,0.21008182,0.2,3,15,0.07369192,0.354373303,341.9,16,4680,,,36.24901497,46,1269,26.53883484,48.35110616,,,,,,,,,,41.66666667,29.48581321,57.19075539,,,,,,,,,,0.253139621,1028,4061,0.224543876,0.281735366,0.00042735,2,4680,,,2340,0.000219974,1,4546,,,4546,,0,4546,,,,3822,,,,,,,,5664,1417,0.3,,,,,,,,0.38,0.2,0.14,,,,,,,,0.11,0.15,0.750172771,2171,2894,0.641661631,0.858683911,0.292,292,1000,0.142572677,0.441427323,0.04978488,81,1627,,,0.156,200,,0.097617021,0.214382979,,,,,,,,,,,,,,,,5.178594903,141821,27386,1.589190253,8.767999552,0.252086811,302,1198,0.003265463,0.50090816,8.547008547,4,4680,,,67.29475101,16,23776,38.46476469,109.2824596,,,,,,,,,,,,,,,,,,,7.1,,,,,0,,,,,0.126666667,190,1500,0.052481888,0.200851446,0.053835801,0.006960797,0.100710805,0.06,0,0.123162473,0.016666667,0,0.042942208,0.851586947,1905,2237,0.742394957,0.960778936,,,,,,,,,,,,,,,,0.348,,2237,0.207682208,0.488317792,74.65056103,,,72.13965588,77.16146618,,,,,,,,,,78.85008363,74.2762246,83.42394265,,,,,,,529.1690976,73,13491,413.2854555,667.4748132,,,,,,,,,,406.1212841,274.008325,579.7633856,677.993236,457.4391893,967.8775019,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.12,,,0.108,0.133,0.159,,,0.144,0.174,0.121,,,0.11,0.132,,,,,,0.096,440,,,,0.03916445,171.3444668,4375,,,,,,,,,,,,,,,,,,,,,,,,,,0.351,,,0.338,0.364,0.293244247,790,2694,0.258691055,0.327797438,0.175487465,252,1436,0.126636401,0.224338529,0.000219974,1,4546,,,4546,0.975,65.325,67,,,,,,,,2.497642647,,,,,,,,2.374340345,2.937065851,3.040482747,,,,,,,,2.940447628,3.306705926,0.010009653,,,,,-482.3428,,,,,0.961916301,58750,61076,0.403451591,1.520381011,67889,,,57683.89362,78094.10638,,,,,,,,,,58077,33837.34043,82316.65957,91292,54769.2766,127814.7234,,,,,,0.42050391,484,1151,,,,,,,,0.248700084,,67889,,,5.540166205,2,361,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,29.71414988,10,33654,14.24908984,54.64537958,,,,,,,,,,,,,,,,,,,,,600,,,6,-888,0.566101695,1503,2655,,,0.51,,,,,33.38750431,,,,,0.854491018,1427,1670,0.791800755,0.917181281,0.046511628,74,1591,0,0.105247793,0.744311377,1243,1670,0.656007505,0.83261525,4546,,,,,0.285305763,1297,4546,,,0.12516498,569,4546,,,0.028376595,129,4546,,,0.020897492,95,4546,,,0.012758469,58,4546,,,0.001979762,9,4546,,,0.674439067,3066,4546,,,0.272107347,1237,4546,,,0.106870229,448,4192,0.046807982,0.166932476,0.494940607,2250,4546,,,1,4675,4675,, -48,105,48105,TX,Crockett County,2024,1,13236.0562,77,9257,9053.452641,18685.36208,0,,,,2,,,,2,,,,2,14625.90792,9554.128641,21430.34386,,13234.53471,5320.969357,27268.19968,1,,,,2,,0.198,,,0.17,0.233,3.697980906,,,2.891707042,4.53749526,4.821151468,,,3.791976749,5.895517272,0.063157895,18,285,0.034916856,0.091398933,1,,,,,,,,,,0.064039409,0.030360308,0.09771851,,,,,,,,,,0.139,,,0.112,0.17,0.385,,,0.307,0.471,8.2,0.022503017,0.114,,,0.285,,,0.234,0.341,0.896384764,2777,3098,,,0.176323272,,,0.142954355,0.215347026,0.172413793,5,29,0.083591127,0.280159851,325.9,10,3068,,,54.83028721,42,766,39.51684822,74.11461982,,,,,,,,,,59.93690852,42.41492373,82.26808978,,,,,,,,,,0.273354996,673,2462,0.241184783,0.305525209,0.000651891,2,3068,,,1534,0.000339789,1,2943,,,2943,,0,2943,,,,3898,,,,,,,,4267,1640,0.22,,,,,,,,0.17,0.28,0.18,,,,,,,,0.15,0.2,0.719283277,1686,2344,0.615549932,0.823016621,0.583989501,445,762,0.316883563,0.85109544,0.039748954,57,1434,,,0.239,182,,0.148446809,0.329553192,,,,,,,,,,,,,,,,4.041892013,135270,33467,0.951663806,7.13212022,0.284369115,151,531,0.047825687,0.520912543,16.29726206,5,3068,,,87.67827917,15,17108,49.07286727,144.6119878,,,,,,,,,,87.98944127,42.1943572,161.8157153,,,,,,,7.2,,,,,0,,,,,0.143369176,200,1395,0.041699598,0.245038753,0.107526882,0.017370122,0.197683641,0.050179212,0,0.124547717,0,0,0.016910599,0.783697048,1221,1558,0.652698818,0.914695277,,,,,,,,,,,,,,,,0.305,,1558,0.14646474,0.46353526,71.20903859,,,68.06661741,74.35145977,,,,,,,,,,70.75092879,66.80575914,74.69609843,,,,,,,629.5816355,77,9257,490.7897713,795.438521,,,,,,,,,,722.6779139,536.3854771,952.7607356,566.8941493,335.9774008,895.9371587,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.114,,,0.098,0.132,0.154,,,0.132,0.178,0.118,,,0.1,0.136,,,,,,0.114,340,,,,0.022503017,83.68872056,3719,,,,,,,,,,,,,,,,,,,,,,,,,,0.36,,,0.346,0.373,0.304705882,518,1700,0.266578223,0.342833542,0.202261307,161,796,0.149835775,0.254686838,0.000339789,1,2943,,,2943,,,,,,,,,,,2.713973693,,,,,,,,2.504249322,,2.907134832,,,,,,,,2.680099269,,0.011572848,,,,,-953.4854,,,,,0.614896232,36028,58592,0.397239634,0.832552829,71851,,,64321.97872,79380.02128,,,,,,,,,,76268,11720.25532,140815.7447,59556,47364.68085,71747.31915,,,,,,0.658436214,480,729,,,,,,,,0.19057494,,71851,,,22.98850575,2,87,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,400,,,0,0,0.646406571,1574,2435,,,0.302,,,,,22.83889947,,,,,0.723041117,932,1289,0.580077021,0.866005214,0.060176991,68,1130,0,0.157455365,0.703646237,907,1289,0.547581859,0.859710616,2943,,,,,0.261637785,770,2943,,,0.187223921,551,2943,,,0.009174312,27,2943,,,0.03533809,104,2943,,,0.013931363,41,2943,,,0.001019368,3,2943,,,0.670404349,1973,2943,,,0.28916072,851,2943,,,0.054035088,154,2850,0.008101945,0.099968231,0.495073055,1457,2943,,,1,3098,3098,, -48,107,48107,TX,Crosby County,2024,1,14793.43474,144,15033,11204.17786,18382.69163,0,,,,2,,,,2,,,,2,15203.29427,10957.19724,20550.43721,,13597.72246,8521.620274,20587.11522,1,,,,2,,0.256,,,0.221,0.292,4.534600661,,,3.608017326,5.563847693,5.593184301,,,4.46811937,6.856625358,0.085539715,42,491,0.060800743,0.110278687,0,,,,,,,,,,0.104651163,0.072303343,0.136998983,,,,,,,,,,0.191,,,0.158,0.226,0.413,,,0.329,0.499,6.8,0.023264371,0.177,,,0.346,,,0.291,0.402,0.203974284,1047,5133,,,0.155188062,,,0.122844149,0.19133937,0.333333333,3,9,0.150331965,0.513162068,352.5,18,5106,,,46.56011119,67,1439,36.08344665,59.12969536,,,,,,,,,,50.1002004,37.18533441,66.0508684,41.66666667,23.81610014,67.66405624,,,,,,,0.244892996,1007,4112,0.217488741,0.272297251,0.000391696,2,5106,,,2553,,0,4998,,,,0.00040016,2,4998,,,2499,489,,,,,,,,,566,0.27,,,,,,,,0.12,0.32,0.41,,,,,,,,0.33,0.42,0.778200996,2656,3413,0.725919283,0.83048271,0.376375642,513,1363,0.287751009,0.465000275,0.041254125,100,2424,,,0.338,436,,0.210510638,0.465489362,,,,,,,,,,0.422702703,0.342458275,0.50294713,0.363112392,0.232993068,0.493231716,4.032964147,92125,22843,3.488553888,4.577374405,0.380807312,500,1313,0.266066542,0.495548081,9.792401097,5,5106,,,110.3674167,31,28088,74.98930497,156.6577382,,,,,,,,,,106.9855255,62.32301114,171.2941902,118.993135,63.35883287,203.4818848,,,,6.6,,,,,0,,,,,0.135391924,285,2105,0.092541202,0.178242647,0.067804878,0.023491052,0.112118704,0.066508314,0.032132377,0.100884251,0.009501188,0,0.020721781,0.780728051,1823,2335,0.738638466,0.822817637,,,,,,,,,,0.725524476,0.646986016,0.804062936,0.848787447,0.726528977,0.971045916,0.479,,2335,0.390749318,0.567250682,70.71004792,,,68.34301255,73.07708328,,,,,,,,,,69.0554846,66.10873726,72.00223195,72.05241413,68.15473596,75.9500923,,,,749.5287741,144,15033,620.3674423,878.6901059,,,,,,,,,,812.3544266,636.7561933,1021.413729,681.3074409,498.8026753,908.7686499,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.145,,,0.126,0.165,0.182,,,0.158,0.206,0.143,,,0.123,0.165,333.5,14,4198,,,0.177,930,,,,0.023264371,140.9588244,6059,,,,,,,,,,,,,,,,,,,,,,,,,,0.36,,,0.347,0.37,0.288762447,812,2812,0.253017766,0.324507128,0.153284672,210,1370,0.112774033,0.19379531,0.00060024,3,4998,,,1666,,,,,,,,,,,2.586165867,,,,,,,,2.500634194,,2.856340708,,,,,,,,2.763546338,,0.040847852,,,,,-7223.370333,,,,,0.81570712,35449,43458,0.654599425,0.976814814,46457,,,40261.25532,52652.74468,,,,,,,40694,38417.06383,42970.93617,38523,27106.14894,49939.85106,71780,64081.78723,79478.21277,,,,,,0.811900192,846,1042,,,25.31652985,,,,,0.319176873,,46457,,,3.012048193,1,332,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,42.43952368,17,40057,24.72258649,67.94978859,,,,,,,,,,48.97377677,24.44753291,87.62761459,,,,,,,,,600,,,0,-888,0.473454546,1953,4125,,,0.407,,,,,11.9426498,,,,,0.709127382,1414,1994,0.653553717,0.764701047,0.075824176,138,1820,0.027912148,0.123736203,0.848044132,1691,1994,0.800572139,0.895516126,4998,,,,,0.260704282,1303,4998,,,0.182472989,912,4998,,,0.033813525,169,4998,,,0.016206483,81,4998,,,0.004601841,23,4998,,,0.00080032,4,4998,,,0.575830332,2878,4998,,,0.369947979,1849,4998,,,0.033926355,164,4834,0.01098776,0.05686495,0.50080032,2503,4998,,,1,5133,5133,, -48,109,48109,TX,Culberson County,2024,1,14904.8869,52,5873,9340.813264,22566.17788,1,,,,2,,,,2,,,,2,16135.503,9399.525106,25834.50337,1,,,,2,,,,2,,0.306,,,0.265,0.348,4.929331297,,,4.008513577,5.974290929,5.586054542,,,4.470247029,6.770092551,0.099056604,21,212,0.05884248,0.139270728,1,,,,,,,,,,0.098765432,0.052822367,0.144708498,,,,,,,,,,0.205,,,0.169,0.246,0.425,,,0.34,0.51,6.7,0.042500927,0.173,,,0.392,,,0.332,0.456,0.94332724,2064,2188,,,0.14579573,,,0.114919068,0.178371656,0.171428571,6,35,0.090320108,0.268290996,456,10,2193,,,59.21052632,27,456,39.02010994,86.14820712,,,,,,,,,,67.38544474,43.60830687,99.47420943,,,,,,,,,,0.312754805,537,1717,0.278201613,0.347307996,0.000455996,1,2193,,,2193,0,0,2155,,,-2155,,0,2155,,,,3949,,,,,,,,4670,,0.29,,,,,,,,0.36,0.17,0.14,,,,,,,,0.12,0.15,0.763625592,1289,1688,0.644543513,0.882707672,0.512096774,254,496,0.080433568,0.94375998,0.028620989,33,1153,,,0.337,164,,0.209510638,0.464489362,,,,,,,,,,0.726973684,0.300825705,1,,,,5.022959664,80071,15941,1.277723347,8.768195981,0.665662651,221,332,0.158089253,1,0,0,2193,,,137.0113263,15,10948,76.68419924,225.9793467,,,,,,,,,,138.0348852,68.90651735,246.9825388,,,,,,,5.3,,,,,0,,,,,0.119402985,80,670,0.039752486,0.199053484,0.060606061,0,0.157851991,0.059701493,0,0.129590973,0,0,0.035209382,0.975850714,889,911,0.889495007,1,,,,,,,,,,,,,,,,0.385,,911,0.042571679,0.727428321,73.74527816,,,68.84567649,78.64487982,,,,,,,,,,,,,,,,,,,700.6888299,52,5873,507.0919805,943.8232555,,,,,,,,,,748.6989507,518.4957881,1046.23174,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.162,,,0.141,0.186,0.186,,,0.161,0.213,0.168,,,0.146,0.192,,,,,,0.173,380,,,,0.042500927,101.9172233,2398,,,,,,,,,,,,,,,,,,,,,,,,,,0.372,,,0.359,0.384,0.348075348,425,1221,0.305181731,0.390968965,0.225378788,119,528,0.166995809,0.283761767,0.000928074,2,2155,,,1077.5,,,,,,,,,,,2.079903469,,,,,,,,2.076122111,,2.277290825,,,,,,,,2.139976205,,,,,,,-755.3047,,,,,0.983736023,62905,63945,0.059988091,1.907483956,52160,,,44392.68085,59927.31915,,,,,,,,,,28795,13829.89362,43760.10638,,,,,,,,,0.816666667,294,360,,,,,,,,0.279735429,,52160,,,5.813953488,1,172,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,200,,,0,0,0.583783784,864,1480,,,0.289,,,,,52.35780307,,,,,0.758346582,477,629,0.615612341,0.901080823,0.025735294,14,544,0,0.15188121,0.594594595,374,629,0.473323657,0.715865532,2155,,,,,0.228306265,492,2155,,,0.213921114,461,2155,,,0.017633411,38,2155,,,0.024593968,53,2155,,,0.023201856,50,2155,,,0.000464037,1,2155,,,0.696055685,1500,2155,,,0.244547564,527,2155,,,0.06424581,138,2148,0.009178986,0.119312634,0.508584687,1096,2155,,,1,2188,2188,, -48,111,48111,TX,Dallam County,2024,1,14762.53748,135,20745,11527.9635,17997.11146,0,,,,2,,,,2,,,,2,15404.5437,11005.23187,20976.61631,,13290.28108,9308.349478,18399.35105,,,,,2,,0.263,,,0.226,0.3,4.710815031,,,3.798871776,5.659155262,5.590661601,,,4.537678106,6.672290335,0.062008734,71,1145,0.048039289,0.075978179,0,,,,,,,,,,0.052790347,0.035768777,0.069811917,0.076923077,0.051707164,0.10213899,,,,,,,0.213,,,0.173,0.253,0.401,,,0.316,0.484,6.5,0.175952179,0.119,,,0.343,,,0.285,0.4,0.65130007,4634,7115,,,0.176016317,,,0.13785181,0.21318323,0.090909091,1,11,0.004610648,0.283082638,460.1,33,7172,,,67.95016988,120,1766,55.79234187,80.10799788,,,,,,,,,,84.2217484,66.67915134,104.9654277,40,26.78862778,57.44667233,,,,,,,0.323534111,2025,6259,0.286597941,0.360470281,0.000836587,6,7172,,,1195.333333,0.000276205,2,7241,,,3620.5,0.000414307,3,7241,,,2413.666667,3177,,,,,,,,,2892,0.25,,,,,,,,0.26,0.25,0.25,,,,,,,,0.24,0.24,0.780389523,3486,4467,0.686023694,0.874755352,0.544366899,1092,2006,0.360470599,0.7282632,0.02352029,91,3869,,,0.145,352,,0.087808511,0.202191489,,,,,,,,,,0.18734388,0.015777292,0.358910469,0.020562771,0,0.071308191,2.570272438,105759,41147,1.11991313,4.020631746,0.078007933,177,2269,0,0.185152621,13.9431121,10,7172,,,121.7487548,44,36140,88.46283165,163.4420207,,,,,,,,,,105.3432434,62.43308235,166.4877408,126.5022138,79.27826389,191.5258719,,,,5.2,,,,,0,,,,,0.087420043,205,2345,0.038248898,0.136591187,0.031827957,0,0.067447994,0.049040512,0.002299061,0.095781963,0.010660981,0,0.029539698,0.795490299,3034,3814,0.676380595,0.914600003,,,,,,,,,,0.666666667,0.459247618,0.874085715,0.895870736,0.827438894,0.964302578,0.122,,3814,0.048900404,0.195099596,71.61668979,,,69.04318453,74.19019506,,,,,,,,,,72.5709227,67.39197801,77.74986738,71.93167893,68.72947898,75.13387888,,,,631.8266597,135,20745,524.1467111,739.5066084,,,,,,,,,,645.8186907,482.3282882,846.9052909,620.2571565,483.5208825,783.6576028,,,,118.835413,12,10098,61.40399197,207.5815513,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.152,,,0.13,0.173,0.189,,,0.164,0.215,0.142,,,0.123,0.162,165.6,9,5435,,,0.119,850,,,,0.175952179,1179.407457,6703,,,,,,,,,,,,,,,,,,,,,,,,,,0.359,,,0.346,0.373,0.36634664,1450,3958,0.327027491,0.405665789,0.250620347,606,2418,0.183896943,0.317343752,0.00165723,12,7241,,,603.4166667,0.95,119.7,126,,,,,,,,2.525192663,,,,,,,,2.429573215,2.78740183,2.520035366,,,,,,,,2.535471722,2.728466786,0.057144788,,,,,-5553.536,,,,,0.694104738,34792,50125,0.492386705,0.895822772,61636,,,54516.85106,68755.14894,53304,18074.04255,88533.95745,,,,,,,58101,29710.19149,86491.80851,79650,58050.68085,101249.3192,,,,,,0.663212435,384,579,,,,,,,,0.246349536,,61636,,,1.420454546,1,704,,,,,,,,,,,,,,,,,,,,,,,,,,29.64572615,11,36140,14.79903968,53.04439308,30.43718871,,,,,,,,,,,,,54.60291237,26.18421888,100.4166999,,,,30.43718871,11,36140,15.19413494,54.46053822,,,,,,,,,,,,,,,,,,,39.7479977,20,50317,24.27910962,61.38755868,,,,,,,,,,51.38306072,26.55037728,89.75586644,,,,,,,,,800,,,-888,5,0.397775031,1609,4045,,,0.428,,,,,60.8514992,,,,,0.716673811,1672,2333,0.673290157,0.760057464,0.044158234,96,2174,0,0.103237892,0.815259323,1902,2333,0.722181886,0.90833676,7241,,,,,0.338903466,2454,7241,,,0.115315564,835,7241,,,0.020301063,147,7241,,,0.02568706,186,7241,,,0.014638862,106,7241,,,0.009114763,66,7241,,,0.494268747,3579,7241,,,0.454909543,3294,7241,,,0.117547893,767,6525,0.044623462,0.190472324,0.469548405,3400,7241,,,0.233028812,1658,7115,, -48,113,48113,TX,Dallas County,2024,1,8009.872258,31407,7520180,7890.761916,8128.9826,0,5399.738985,3923.458613,7248.897553,,3387.387773,3080.067064,3694.708482,,12483.82253,12167.37876,12800.2663,,6520.157186,6353.057258,6687.257114,,7576.24751,7347.491774,7805.003247,,,,,2,,0.199,,,0.175,0.226,3.724106769,,,3.143024718,4.438849266,5.319619017,,,4.652448619,6.105779918,0.085156271,22481,263997,0.084091544,0.086220998,0,0.06,0.035119357,0.084880643,0.09035491,0.086316142,0.094393679,0.134508948,0.131714601,0.137303296,0.070983541,0.069582413,0.072384668,0.065281192,0.063207612,0.067354771,0.085714286,0.03934188,0.132086691,0.076325566,0.066761747,0.085889385,0.158,,,0.132,0.185,0.351,,,0.317,0.394,7.3,0.072364755,0.131,,,0.288,,,0.254,0.326,0.961535298,2513010,2613539,,,0.188383555,,,0.16490459,0.218455756,0.288700196,442,1531,0.276066633,0.301425233,838.5,21684,2586050,,,28.70392293,17579,612425,28.27959634,29.12824952,10.65246338,6.088803232,17.29893315,4.268333669,3.525977071,5.010690268,30.32072525,29.39865839,31.2427921,35.99767699,35.35260156,36.64275241,11.14648102,10.49483658,11.79812547,,,,16.36464497,13.95376257,18.77552737,0.241547725,539771,2234635,0.23201581,0.25107964,0.00072079,1864,2586050,,,1387.36588,0.000953154,2479,2600840,,,1049.14885,0.002053183,5340,2600840,,,487.0486891,2997,,,,,5525,1778,5257,2891,2393,0.44,,,,,0.48,0.38,0.43,0.31,0.47,0.51,,,,,0.47,0.54,0.36,0.39,0.56,0.81129165,1364294,1681632,0.807958148,0.814625152,0.618776731,486111,785600,0.609635437,0.627918025,0.037046501,52631,1420674,,,0.201,128652,,0.179553192,0.222446809,0.069168506,0.029619834,0.108717178,0.102184959,0.083058141,0.121311778,0.267827415,0.250687532,0.284967298,0.240708445,0.229974731,0.251442159,0.071655342,0.061199034,0.082111649,4.406610491,141721,32161,4.309510276,4.503710706,0.301402348,200183,664172,0.290435614,0.312369081,7.815007444,2021,2586050,,,64.11774727,8408,13113374,62.74721907,65.48827547,63.02578577,39.95294176,94.56962402,23.47474846,20.24544394,26.70405297,87.34878288,83.98991164,90.70765412,41.59532874,39.86579673,43.32486076,89.15170613,86.11084074,92.19257152,,,,9.6,,,,,0,,,,,0.20286048,191905,945995,0.198447944,0.207273017,0.145123327,0.141031229,0.149215426,0.064344949,0.061767053,0.066922845,0.008678693,0.007715978,0.009641407,0.724636168,936835,1292835,0.719685452,0.729586884,0.752365111,0.68974132,0.814988901,0.716462682,0.701834355,0.731091009,0.749551802,0.742524488,0.756579116,0.756244468,0.750194593,0.762294343,0.785560632,0.77984119,0.791280073,0.425,,1292835,0.417655166,0.432344834,77.28248766,,,77.16497658,77.39999873,94.59143235,83.6405645,105.5423002,85.80353508,85.0207961,86.58627406,72.67025937,72.41821672,72.92230202,80.60228453,80.27799942,80.92656964,77.52882773,77.33645151,77.72120395,,,,398.6174218,31407,7520180,394.1679346,403.0669091,312.6717007,246.7556166,390.7859783,182.4670329,170.5524479,194.381618,597.2264677,585.9475852,608.5053503,320.8336653,313.3949297,328.2724008,385.3354035,377.7682192,392.9025878,,,,56.52328057,1682,2975765,53.82199539,59.22456575,,,,34.64034811,26.23626137,44.88058889,98.49692466,90.87769212,106.1161572,46.80546432,43.4466715,50.16425713,43.26663061,37.44236441,49.09089682,,,,6.359508757,1699,267159,6.057107946,6.661909568,,,,2.965538399,2.251857638,3.833646065,11.13799791,10.28107677,11.99491904,5.610466689,5.20234775,6.018585628,4.015636105,3.49208847,4.53918374,,,,7.365836549,4.559568918,11.2594636,0.116,,,0.102,0.133,0.162,,,0.145,0.184,0.121,,,0.107,0.138,926.2,19597,2115765,,,0.131,340260,,,,0.072364755,171369.7974,2368139,,,17.32113227,1361,7857454,16.40088765,18.24137688,,,,3.232701245,1.883167604,5.17586785,23.48731881,21.24103374,25.73360387,9.750865389,8.672329979,10.8294008,27.24276647,25.05375118,29.43178177,,,,0.349,,,0.339,0.36,0.280887106,448036,1595075,0.270163701,0.29161051,0.148754427,99960,671980,0.132073576,0.165435278,0.001462989,3805,2600840,,,683.5321945,0.815781812,29926.14,36684,,,0.088576289,12965,146371,0.078946582,0.098205996,2.781715756,,,,,,3.403691721,2.457246739,2.733941879,3.416414761,3.001123338,,,,,,3.998104422,2.599441659,2.971571807,3.558159058,0.246819741,,,,,-10446.67198,,,,,0.875865821,48304,55150,0.859076283,0.892655358,70871,,,68442.74468,73299.25532,62500,54583.74468,70416.25532,100422,95068.6383,105775.3617,53482,51846.08511,55117.91489,62046,60784.21277,63307.78723,95086,93478.68085,96693.31915,,,,,,0.737934913,345096,467651,,,52.45584277,,,,,0.27578276,,70871,,,3.725207414,700,187909,,,9.105489536,1661,18241743,8.667589929,9.543389142,,,,1.359970625,0.777340718,2.208507092,23.37605526,21.90038685,24.85172366,6.357163615,5.781812394,6.932514836,3.789839497,3.263276484,4.316402511,,,,11.21246722,1459,13113374,10.62791279,11.79702165,11.12604582,,,,6.247818712,4.637251473,8.236970077,6.735661409,5.798660564,7.672662254,6.13467616,5.448617826,6.820734494,20.98046251,19.48259977,22.47832525,,,,14.40514089,1889,13113374,13.75552356,15.05475822,,,,2.775339719,1.778212526,4.129485509,26.49378018,24.64392857,28.34363179,8.929330248,8.127992193,9.730668302,15.84859222,14.56647506,17.13070937,,,,12.14796196,2216,18241743,11.64216686,12.65375706,,,,4.504902694,3.374481251,5.892523641,17.55629046,16.27744065,18.83514028,11.41307412,10.64216593,12.18398232,10.74105265,9.85458403,11.62752126,,,,7.536121673,,263000,,,1437,545,0.599066386,919504,1534895,,,0.621,,,,,247.9239921,,,,,0.505323275,484698,959184,0.500041434,0.510605116,0.164715924,153803,933747,0.160181669,0.169250179,0.881789104,845798,959184,0.877503528,0.88607468,2600840,,,,,0.249274081,648322,2600840,,,0.118032636,306984,2600840,,,0.228594223,594537,2600840,,,0.011395165,29637,2600840,,,0.072422756,188360,2600840,,,0.001120023,2913,2600840,,,0.414809062,1078852,2600840,,,0.267635456,696077,2600840,,,0.100633273,243704,2421704,0.098134544,0.103132002,0.502641839,1307291,2600840,,,0.005782581,15113,2613539,, -48,115,48115,TX,Dawson County,2024,1,11147.74767,233,35561,9172.607422,13122.88792,0,,,,2,,,,2,,,,2,12511.76833,9776.394875,15247.14179,,9342.242627,6430.76996,13119.98206,,,,,2,,0.289,,,0.252,0.33,4.864857984,,,3.937607155,5.880046021,5.482957516,,,4.340856272,6.747273521,0.11407767,141,1236,0.096354354,0.131800986,0,,,,,,,,,,0.117048346,0.094573543,0.139523149,0.101485149,0.072038948,0.130931349,,,,,,,0.214,,,0.176,0.254,0.41,,,0.325,0.498,5.2,0.187872797,0.173,,,0.376,,,0.315,0.438,0.686657033,8553,12456,,,0.169814523,,,0.13349982,0.211550968,0.411764706,7,17,0.284189348,0.52988216,499.5,62,12413,,,61.45251397,165,2685,52.07573339,70.82929455,,,,,,,,,,68.89242183,57.04958223,80.73526144,48.28660436,32.80840495,68.53898054,,,,,,,0.234068093,2145,9164,0.206663837,0.261472348,0.000402804,5,12413,,,2482.6,0.000494641,6,12130,,,2021.666667,8.24402E-05,1,12130,,,12130,3541,,,,,,,,3765,3590,0.21,,,,,,,,0.14,0.25,0.28,,,,,,,,0.21,0.32,0.702024704,5513,7853,0.657431263,0.746618145,0.410678784,1446,3521,,,0.043631556,198,4538,,,0.279,851,,0.177723404,0.380276596,,,,,,,0.511363636,0.066277047,0.956450226,0.403492647,0.297159814,0.50982548,0.096,0.027762186,0.164237814,5.919112964,102229,17271,4.44368351,7.394542418,0.319847085,1004,3139,0.176052547,0.463641623,13.69531942,17,12413,,,86.55011252,55,63547,65.20138948,112.6568681,,,,,,,,,,64.75635422,41.49061803,96.35232204,119.5842149,78.11637943,175.2185819,,,,7.1,,,,,1,,,,,0.17268623,765,4430,0.129413747,0.215958713,0.1221843,0.083490008,0.160878593,0.039503386,0.01826454,0.060742232,0.016930023,0.002740487,0.031119558,0.755053508,3175,4205,0.700252391,0.809854625,,,,,,,,,,0.714940772,0.610073815,0.819807729,0.808087731,0.729523998,0.886651465,0.262,,4205,0.195425699,0.328574302,72.62564979,,,71.1284451,74.12285448,,,,,,,,,,71.19304063,69.08930575,73.29677551,74.43874085,71.98241526,76.89506644,,,,610.555215,233,35561,530.4542861,690.6561439,,,,,,,,,,725.0227093,601.3130938,848.7323248,485.7869837,377.9712696,614.7945189,,,,83.57127934,12,14359,43.18249954,145.9822066,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.16,,,0.138,0.183,0.186,,,0.162,0.212,0.158,,,0.136,0.181,198,20,10103,,,0.173,2140,,,,0.187872797,2598.844397,13833,,,,,,,,,,,,,,,,,,,,,,,,,,0.364,,,0.35,0.377,0.287678039,1737,6038,0.251933358,0.32342272,0.132035291,434,3287,0.09509912,0.168971461,0.000577082,7,12130,,,1732.857143,0.9495,142.425,150,,,,,,,,2.744044039,,,,,,,,2.694855314,3.10667817,2.981161076,,,,,,,,2.831232989,3.489153256,0.138833686,,,,,-1528.887,,,,,0.526445221,29542,56116,0.422719436,0.630171006,48801,,,41721.17021,55880.82979,,,,,,,21538,4568.808511,38507.19149,31425,14280.65957,48569.34043,73516,52231.23404,94800.76596,,,,,,0.738095238,1674,2268,,,27.19793267,,,,,0.345976517,,48801,,,2.320185615,2,862,,,,,,,,,,,,,,,,,,,,,,,,,,21.12135625,13,63547,10.91371298,36.89475878,20.45729932,,,,,,,,,,,,,,,,,,,17.3100225,11,63547,8.641100866,30.97241178,,,,,,,,,,,,,,,,,,,19.96052252,18,90178,11.82987068,31.54623109,,,,,,,,,,19.18649271,9.200669026,35.28464321,,,,,,,,,1300,,,-888,-888,0.416602529,3789,9095,,,0.498,,,,,48.24220636,,,,,0.716186789,2960,4133,0.671622245,0.760751334,0.159015978,627,3943,0.107848648,0.210183307,0.835228648,3452,4133,0.790806483,0.879650812,12130,,,,,0.254492993,3087,12130,,,0.139488871,1692,12130,,,0.060428689,733,12130,,,0.014509481,176,12130,,,0.01055235,128,12130,,,0.001401484,17,12130,,,0.58936521,7149,12130,,,0.328112119,3980,12130,,,0.031636744,363,11474,,,0.433718054,5261,12130,,,0.299052665,3725,12456,, -48,117,48117,TX,Deaf Smith County,2024,1,9556.80588,264,52147,8000.003163,11113.6086,0,,,,2,,,,2,,,,2,10059.28672,8266.151323,11852.42212,,9152.680193,5735.935948,13857.26781,1,,,,2,,0.259,,,0.224,0.295,4.490184171,,,3.586132529,5.486609038,5.329467681,,,4.200896547,6.542126959,0.067200712,151,2247,0.056848442,0.077552982,0,,,,,,,,,,0.066632757,0.055608877,0.077656637,0.077220077,0.044709822,0.109730332,,,,,,,0.173,,,0.14,0.211,0.426,,,0.342,0.516,7.6,0.074327064,0.116,,,0.344,,,0.288,0.404,0.802776731,14918,18583,,,0.169113285,,,0.134292407,0.208536332,0.05,1,20,0.002072424,0.180379928,496.5,91,18329,,,63.60286989,328,5157,56.71958314,70.48615663,,,,,,,,,,71.63053723,63.57828282,79.68279164,30.14416776,19.10881656,45.23105229,,,,,,,0.278507653,4367,15680,0.24752893,0.309486377,0.000109117,2,18329,,,9164.5,0.000380911,7,18377,,,2625.285714,0.000108832,2,18377,,,9188.5,2622,,,,,,,,2921,1379,0.31,,,,,,,,0.24,0.37,0.33,,,,,,,,0.28,0.34,0.721621871,7813,10827,0.689031873,0.75421187,0.325796727,1513,4644,0.257765177,0.393828277,0.029728231,268,9015,,,0.22,1236,,0.141361702,0.298638298,,,,,,,,,,0.227328937,0.146395763,0.30826211,0.135854342,0.034656223,0.237052461,3.513294571,107556,30614,2.928343622,4.09824552,0.248731852,1422,5717,0.154908855,0.34255485,8.183752523,15,18329,,,61.45685082,57,92748,46.54681865,79.62447859,,,,,,,,,,44.90866158,30.51325672,63.74426039,116.512094,75.40048398,171.9948348,,,,5.8,,,,,0,,,,,0.135425268,820,6055,0.101001962,0.169848575,0.07345576,0.046990679,0.09992084,0.047894302,0.025190577,0.070598028,0.015689513,0.001645561,0.029733465,0.775162925,6423,8286,0.717796639,0.832529211,,,,,,,,,,0.79175778,0.709567586,0.873947973,0.867740568,0.812186316,0.92329482,0.16,,8286,0.118571108,0.201428892,74.37575686,,,73.09769463,75.65381909,,,,,,,,,,73.53246937,71.96629363,75.09864511,75.16350307,72.37966056,77.94734558,,,,490.1041566,264,52147,429.9493261,550.2589872,,,,,,,,,,528.9104697,450.1882913,607.632648,438.8980263,334.9254316,564.9487597,,,,75.44772267,19,25183,45.42445763,117.8209648,,,,,,,,,,79.30954047,46.20072997,126.9822571,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.143,,,0.123,0.163,0.173,,,0.15,0.198,0.148,,,0.127,0.17,210.5,30,14250,,,0.116,2170,,,,0.074327064,1439.863887,19372,,,,,,,,,,,,,,,,,,,,,,,,,,0.357,,,0.342,0.372,0.329710503,3337,10121,0.291582843,0.367838163,0.188279515,1102,5853,0.137045472,0.239513557,0.001088317,20,18377,,,918.85,0.92,259.44,282,,,,,,,,2.896510711,,,,,,,,2.831688664,3.373295864,3.072599616,,,,,,,,3.018184451,3.345055863,0.038615541,,,,,-5507.244,,,,,0.811128029,38355,47286,0.653563298,0.968692761,55565,,,47775.04255,63354.95745,,,,,,,,,,50179,46191.08511,54166.91489,64102,42191.70213,86012.29787,,,,,,0.772517601,3182,4119,,,46.72606176,,,,,0.273265545,,55565,,,3.719776813,6,1613,,,,,,,,,,,,,,,,,,,,,,,,,,15.68795118,15,92748,8.780427183,25.87488971,16.17285548,,,,,,,,,,15.47955309,7.07823737,29.38501355,,,,,,,11.86009402,11,92748,5.920516202,21.22098429,,,,,,,,,,,,,,,,,,,18.3865778,24,130530,11.78062733,27.35777032,,,,,,,,,,13.52898325,7.20361379,23.13497338,32.02254387,15.35605449,58.89059832,,,,24.09090909,,2200,,,31,22,0.4471387,4610,10310,,,0.527,,,,,38.06646156,,,,,0.644470276,3881,6022,0.586359579,0.702580973,0.085519412,489,5718,0.051748592,0.119290233,0.801560943,4827,6022,0.754329102,0.848792784,18377,,,,,0.309680579,5691,18377,,,0.127822822,2349,18377,,,0.010121347,186,18377,,,0.019861784,365,18377,,,0.006366654,117,18377,,,0.000816238,15,18377,,,0.768678239,14126,18377,,,0.205691898,3780,18377,,,0.083078371,1412,16996,0.057364753,0.10879199,0.496490178,9124,18377,,,0.164828069,3063,18583,, -48,119,48119,TX,Delta County,2024,1,11307.53766,106,14589,7673.96364,14941.11167,0,,,,2,,,,2,,,,2,,,,2,11420.13712,7648.245059,16401.22187,,,,,2,,0.183,,,0.154,0.214,4.010143141,,,3.115046687,4.930848484,5.597759959,,,4.50282898,6.712952245,0.060796646,29,477,0.039352117,0.082241175,0,,,,,,,,,,,,,0.050131926,0.028162166,0.072101686,,,,,,,0.188,,,0.149,0.231,0.377,,,0.291,0.467,7.4,0.019949149,0.151,,,0.255,,,0.206,0.308,0.612237094,3202,5230,,,0.174724658,,,0.137431027,0.217085299,0,0,1,0,0.662081041,333.8,18,5392,,,28.31050228,31,1095,19.23561277,40.18449818,,,,,,,192.3076923,92.21901339,353.6606931,,,,21.76696543,12.6800595,34.85102025,,,,,,,0.171712394,726,4228,0.149074096,0.194350691,,0,5392,,,,,0,5406,,,,0.000369959,2,5406,,,2703,3078,,,,,,,,,3104,0.4,,,,,,,,,0.41,0.35,,,,,,,,,0.35,0.891899214,3292,3691,0.849232709,0.934565719,0.623762376,819,1313,0.47920664,0.768318113,0.040159046,101,2515,,,0.239,306,,0.154404255,0.323595745,,,,,,,0.071428571,0,0.605557528,0.127071823,0,0.268111991,0.220720721,0.118774482,0.32266696,5.219079498,124736,23900,3.201110863,7.237048133,0.109531773,131,1196,0.035807792,0.183255753,11.12759644,6,5392,,,74.85310079,20,26719,45.72221859,115.6045432,,,,,,,,,,,,,70.64142413,39.53746884,116.5122863,,,,8.7,,,,,1,,,,,0.108958838,225,2065,0.069499477,0.148418199,0.097991181,0.050948804,0.145033558,0.009200969,0,0.030361539,0.004842615,0,0.018918893,0.849934182,1937,2279,0.778977319,0.920891044,,,,,,,,,,,,,0.74498229,0.633931488,0.856033093,0.453,,2279,0.340847998,0.565152002,73.66225039,,,71.03997743,76.28452335,,,,,,,,,,,,,73.36255515,70.42477028,76.30034003,,,,502.0043192,106,14589,399.4620873,604.546551,,,,,,,,,,,,,517.4876443,408.3931563,646.7707659,,,,201.2808783,11,5465,100.4786892,360.1470908,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.123,,,0.105,0.143,0.184,,,0.158,0.211,0.106,,,0.09,0.125,269,12,4461,,,0.151,790,,,,0.019949149,104.3540005,5231,,,,,,,,,,,,,,,,,,,,,,,,,,0.36,,,0.343,0.375,0.198650928,589,2965,0.168863693,0.228438162,0.110859729,147,1326,0.077498026,0.144221431,0.000554939,3,5406,,,1802,0.925,63.825,69,,,,,,,,2.593208024,,,,,,,,,2.737497865,2.844132432,,,,,,,,,2.827269421,0.03637487,,,,,-3979.765,,,,,0.837755284,51563,61549,0.543945628,1.13156494,54587,,,47964.70213,61209.29787,,,,,,,,,,122740,28657.61702,216822.383,61780,46383.57447,77176.42553,,,,,,0.681127983,628,922,,,62.53275109,,,,,0.246285746,,54587,,,2.444987775,1,409,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,32.30061102,12,37151,16.69019706,56.42266708,,,,,,,,,,,,,33.64963995,16.1363103,61.88288594,,,,,,500,,,0,-888,0.641584158,2592,4040,,,0.518,,,,,5.688048506,,,,,0.80294397,1691,2106,0.764108253,0.841779687,0.089030989,181,2033,0.033126847,0.144935131,0.779677113,1642,2106,0.709807196,0.84954703,5406,,,,,0.240103589,1298,5406,,,0.206807251,1118,5406,,,0.064187939,347,5406,,,0.028301887,153,5406,,,0.007584166,41,5406,,,0.000739919,4,5406,,,0.102663707,555,5406,,,0.775434702,4192,5406,,,0.004910988,24,4887,0,0.024864392,0.509064003,2752,5406,,,1,5230,5230,, -48,121,48121,TX,Denton County,2024,1,4910.290741,7204,2640153,4749.911374,5070.670107,0,,,,2,2530.36621,2158.430961,2902.301459,,6734.254922,6172.356454,7296.15339,,4074.8259,3753.512745,4396.139055,,5356.917834,5126.375528,5587.460141,,,,,2,,0.132,,,0.113,0.155,3.054475489,,,2.449346241,3.795038766,4.324887034,,,3.604391574,5.121242618,0.074846064,5397,72108,0.072925381,0.076766748,0,0.139784946,0.089950077,0.189619815,0.09026357,0.084101938,0.096425201,0.129678822,0.122443418,0.136914225,0.064216121,0.060641261,0.06779098,0.063121161,0.060602774,0.065639549,,,,0.083333333,0.068285684,0.098380983,0.115,,,0.091,0.144,0.316,,,0.264,0.371,8.2,0.047453569,0.102,,,0.196,,,0.164,0.234,0.935824594,848252,906422,,,0.194296412,,,0.161664691,0.2304219,0.222614841,63,283,0.192883427,0.253499466,272,2561,941647,,,9.783742247,2139,218628,9.369117059,10.19836744,,,,1.030089455,0.620181142,1.608612284,11.70941845,10.38215907,13.03667783,19.5538766,18.3914269,20.7163263,5.955070395,5.500396244,6.409744545,,,,9.447968687,7.365155096,11.93694005,0.120795812,99762,825873,0.111263898,0.130327727,0.000536294,505,941647,,,1864.647525,0.000624181,610,977281,,,1602.1,0.001668916,1631,977281,,,599.1912937,2626,,,,,,1666,4222,2429,2557,0.48,,,,,0.48,0.41,0.43,0.34,0.5,0.5,,,,,0.59,0.51,0.37,0.38,0.51,0.932741341,569946,611044,0.928609013,0.93687367,0.784476726,215251,274388,0.7669926,0.801960853,0.032039008,17669,551484,,,0.084,18844,,0.06612766,0.10187234,0.244662435,0.058530668,0.430794202,0.037583593,0.020760835,0.054406352,0.194119847,0.15455527,0.233684423,0.118642539,0.096472101,0.140812976,0.054394877,0.043920509,0.064869245,4.113619596,195146,47439,3.990879627,4.236359565,0.174857117,38090,217835,0.160892835,0.188821398,5.670914897,534,941647,,,41.67930699,1852,4443452,39.78104536,43.57756862,,,,21.75148577,17.55625629,26.64703958,42.25072605,36.36557448,48.13587762,23.94246477,20.69644033,27.18848921,52.49072403,49.68020691,55.30124115,,,,10,,,,,1,,,,,0.130279289,39160,300585,0.123369981,0.137188597,0.105797126,0.099856883,0.111737369,0.023254653,0.020192534,0.026316773,0.007701649,0.005827062,0.009576235,0.705176015,347369,492599,0.697135708,0.713216323,0.737513284,0.433880055,1,0.499807729,0.460449067,0.539166392,0.637102771,0.605163988,0.669041555,0.661874448,0.643608617,0.680140279,0.639451863,0.62724984,0.651653885,0.455,,492599,0.442446881,0.467553119,80.9187027,,,80.71648904,81.12091637,,,,87.61081372,86.24114266,88.98048478,78.2465304,77.47091234,79.02214846,86.26246371,84.95499399,87.56993343,80.1022084,79.86369022,80.34072658,,,,254.1188366,7204,2640153,248.2117951,260.0258782,,,,135.987422,120.6974887,151.2773554,332.2162091,308.9620443,355.4703738,215.5280645,199.8498686,231.2062605,272.3540501,264.7345562,279.973544,,,,34.78436788,337,968826,31.07051038,38.49822539,,,,25.41753598,16.28549491,37.81927877,59.57836847,45.98132698,75.93752137,30.78337698,24.29375971,38.47393947,34.22182545,28.9355924,39.50805849,,,,4.219826126,299,70856,3.741509988,4.698142264,,,,2.794360473,1.751210831,4.230695337,7.370695133,5.596877835,9.528332666,4.335672315,3.416016651,5.426740428,3.910691998,3.26518623,4.556197767,,,,,,,0.09,,,0.078,0.104,0.143,,,0.123,0.164,0.091,,,0.078,0.107,216.8,1706,786940,,,0.102,90550,,,,0.047453569,31443.39926,662614,,,9.024160735,248,2748178,7.901012567,10.1473089,,,,,,,10.65718178,7.289504445,15.04476086,3.501697402,2.108250582,5.468334256,12.1460534,10.41440245,13.87770435,,,,0.329,,,0.316,0.342,0.1415174,85304,602781,0.130793996,0.152240804,0.07119148,16665,234087,0.058085097,0.084297863,0.00082883,810,977281,,,1206.519753,0.888514406,11163.295,12564,,,0.04708265,2441,51845,0.033758615,0.060406685,3.114005669,,,,,,3.512523901,2.65946792,2.770370332,3.338091533,3.236677214,,,,,,3.906225894,2.726141216,2.869122986,3.426272738,0.132699893,,,,,-1564.993042,,,,,0.761472355,59455,78079,0.742057173,0.780887537,102711,,,99629.80851,105792.1915,55332,41784.76596,68879.23404,135719,130082.0638,141355.9362,74976,69920.51064,80031.48936,81452,78275.48936,84628.51064,113484,111298.8085,115669.1915,,,,,,0.331977872,55270,166487,,,39.38496995,,,,,0.194088267,,102711,,,5.107194971,273,53454,,,2.056301536,124,6030244,1.694365331,2.418237741,,,,1.791504685,0.859096131,3.2946409,7.441824347,5.448350731,9.926350806,1.783365278,1.103931215,2.726063267,1.337610271,0.982825715,1.778738097,,,,11.55757647,517,4443452,10.54451177,12.57064116,11.63509812,,,,7.016942915,4.495887728,10.44065485,8.52203575,6.167439528,11.47912623,5.794702248,4.120599766,7.921548732,14.65065875,13.16528593,16.13603157,,,,9.024515174,401,4443452,8.141216122,9.907814227,,,,3.7421911,2.138985551,6.077083897,13.23002533,10.14338456,16.96029539,4.582289908,3.273655091,6.239778282,10.96821099,9.683478073,12.25294391,,,,7.677964606,463,6030244,6.978587066,8.377342147,,,,5.016213117,3.333237187,7.249824602,8.574275878,6.422721011,11.21536396,6.878694645,5.462676457,8.549589374,8.452558521,7.491242826,9.413874216,,,,7.081497797,,90800,,,591,52,0.715624385,417964,584055,,,0.684,,,,,118.6595524,,,,,0.6515946,217961,334504,0.644788745,0.658400455,0.125528387,41337,329304,0.118543103,0.132513671,0.950565614,317968,334504,0.946554807,0.95457642,977281,,,,,0.231596644,226335,977281,,,0.115987111,113352,977281,,,0.117401239,114734,977281,,,0.008307744,8119,977281,,,0.111878774,109337,977281,,,0.001280082,1251,977281,,,0.200646488,196088,977281,,,0.543251122,530909,977281,,,0.032662202,28133,861332,0.030098235,0.03522617,0.504371824,492913,977281,,,0.072037087,65296,906422,, -48,123,48123,TX,DeWitt County,2024,1,9993.755365,382,54757,8404.823063,11582.68767,0,,,,2,,,,2,16853.22449,11370.79979,24059.02589,,10214.21452,7749.140018,12679.28902,,8607.010189,6444.893269,10769.12711,,,,,2,,0.218,,,0.189,0.25,4.205238189,,,3.37451159,5.112980324,5.311437491,,,4.325048463,6.380021433,0.089607965,144,1607,0.075643135,0.103572796,0,,,,,,,0.192307692,0.116561518,0.268053867,0.079407806,0.059966434,0.098849178,0.082304527,0.062354042,0.102255012,,,,,,,0.188,,,0.155,0.225,0.393,,,0.31,0.482,7.5,0.021758721,0.146,,,0.3,,,0.248,0.354,0.643260694,12752,19824,,,0.171956129,,,0.137799886,0.212816818,0.166666667,4,24,0.070875168,0.286798115,230.9,46,19918,,,42.68916155,167,3912,36.21452402,49.16379909,,,,,,,29.23976608,14.02160438,53.77297088,60.87437742,49.49825488,72.25049996,23.59882006,16.85934303,32.13489496,,,,,,,0.208877826,3021,14463,0.185048039,0.232707613,0.00060247,12,19918,,,1659.833333,0.000303459,6,19772,,,3295.333333,0.000252883,5,19772,,,3954.4,3519,,,,,,,,4142,3054,0.31,,,,,,,0.2,0.27,0.33,0.34,,,,,,,0.22,0.24,0.37,0.841006885,11727,13944,0.811580484,0.870433285,0.409053834,2006,4904,0.346883806,0.471223861,0.034236805,312,9113,,,0.256,1145,,0.164255319,0.347744681,,,,,,,,,,0.25094518,0.132947478,0.368942881,0.141450777,0.053702357,0.229199197,5.080382901,116229,22878,4.282577258,5.878188543,0.106956719,472,4413,0.056271572,0.157641866,16.06587007,32,19918,,,73.51115085,74,100665,57.72206451,92.28651816,,,,,,,,,,30.34399051,15.14761073,54.2937809,100.7381358,75.8897503,131.1245306,,,,9.2,,,,,0,,,,,0.145787546,995,6825,0.113928638,0.177646454,0.116210215,0.081085704,0.151334726,0.034432234,0.01719105,0.051673419,0.00952381,0.000911091,0.018136528,0.815353805,6107,7490,0.776455126,0.854252485,,,,,,,,,,0.75,0.688931171,0.811068829,0.845839946,0.800673982,0.89100591,0.347,,7490,0.289982534,0.404017466,74.76816427,,,73.53596587,76.00036268,,,,,,,,,,74.75904349,72.43376343,77.08432355,76.26666754,74.60679107,77.92654401,,,,507.9530774,382,54757,454.4263338,561.4798211,,,,,,,982.1663383,745.8000785,1269.677749,565.1772904,459.6928129,670.6617679,433.5420924,367.3579706,499.7262142,,,,50.60216577,10,19762,24.26570538,93.05918451,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.131,,,0.114,0.149,0.176,,,0.153,0.201,0.124,,,0.106,0.143,29.9,5,16705,,,0.146,2890,,,,0.021758721,437.2850118,20097,,,,,,,,,,,,,,,,,,,,,,,,,,0.354,,,0.342,0.365,0.250049692,2516,10062,0.219070969,0.281028415,0.11825861,546,4617,0.087279886,0.149237333,0.000657495,13,19772,,,1520.923077,0.952702703,176.25,185,,,,,,,,2.686838389,,,,,,,2.631216769,2.459767981,3.129660274,3.030235913,,,,,,,2.684078674,2.872407512,3.4187885,0.050243025,,,,,-784.787475,,,,,0.726783392,36321,49975,0.585701012,0.867865771,55525,,,47284.65957,63765.34043,,,,,,,33036,20914.97872,45157.02128,61875,44046.74468,79703.25532,62190,57047.53192,67332.46809,,,,,,0.649838635,2819,4338,,,39.60319619,,,,,0.268743809,,55525,,,6.525285481,8,1226,,,,,,,,,,,,,,,,,,,,,,,,,,17.32990758,19,100665,10.09530979,27.74686082,18.87448468,,,,,,,,,,,,,25.02528954,12.93093229,43.71414459,,,,15.89430289,16,100665,9.08496742,25.81135211,,,,,,,,,,,,,27.47403704,15.37700997,45.31424597,,,,21.07822128,30,142327,14.22138738,30.09047152,,,,,,,,,,,,,25.72314183,15.7123633,39.72730628,,,,17.77777778,,1800,,,7,25,0.536549901,8118,15130,,,0.51,,,,,37.8706736,,,,,0.706802308,4655,6586,0.679014691,0.734589925,0.116807268,720,6164,0.080706584,0.152907952,0.72259338,4759,6586,0.687037248,0.758149512,19772,,,,,0.228960146,4527,19772,,,0.199474004,3944,19772,,,0.077685616,1536,19772,,,0.011126846,220,19772,,,0.00546227,108,19772,,,0.000708072,14,19772,,,0.370220514,7320,19772,,,0.534746106,10573,19772,,,0.020393887,379,18584,0.008308526,0.032479248,0.472233462,9337,19772,,,0.513972962,10189,19824,, -48,125,48125,TX,Dickens County,2024,1,12050.44061,45,5406,6588.088014,20218.59173,1,,,,2,,,,2,,,,2,,,,2,10639.75389,5311.326806,19037.45871,1,,,,2,,0.21,,,0.18,0.241,4.077549884,,,3.31354771,4.857237583,5.135707059,,,4.095431675,6.198062553,0.1,12,120,0.046323189,0.153676811,1,,,,,,,,,,,,,,,,,,,,,,0.181,,,0.148,0.216,0.39,,,0.307,0.475,7.1,0.059120779,0.149,,,0.286,,,0.234,0.336,0.605084746,1071,1770,,,0.171726656,,,0.136809796,0.211505675,0.333333333,2,6,0.110000414,0.553214291,229.9,4,1740,,,24.75247525,10,404,11.869774,45.52068327,,,,,,,,,,,,,,,,,,,,,,0.254578755,278,1092,0.224791521,0.284365989,0.000574713,1,1740,,,1740,0,0,1726,,,-1726,0.000579374,1,1726,,,1726,2070,,,,,,,,,1256,0.26,,,,,,,,,0.27,0.27,,,,,,,,,0.28,0.855195911,1004,1174,0.816832073,0.893559749,0.260989011,95,364,0.131959048,0.390018974,0.047550432,33,694,,,0.261,83,,0.162106383,0.359893617,,,,,,,,,,0.076923077,0,0.211496344,0.060150376,0,0.215932603,5.286549708,113000,21375,2.606254207,7.966845208,0.252427185,78,309,0.143584458,0.361269911,17.24137931,3,1740,,,142.1935729,15,10549,79.58466331,234.5266743,,,,,,,,,,,,,200.7722008,106.9027412,343.3265779,,,,6.3,,,,,1,,,,,0.127906977,110,860,0.063697616,0.192116337,0.103971963,0.019220354,0.188723572,0.01627907,0,0.047882765,0.009302326,0,0.029449112,0.765704584,451,589,0.513872653,1,,,,,,,,,,,,,0.852348993,0.77147325,0.933224737,0.465,,589,0.334446254,0.595553746,72.95539804,,,68.46995776,77.44083832,,,,,,,,,,,,,,,,,,,587.6244712,45,5406,413.741857,809.9629281,,,,,,,,,,,,,603.798527,386.8651093,898.4043469,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.128,,,0.11,0.147,0.169,,,0.145,0.192,0.121,,,0.103,0.139,,,,,,0.149,230,,,,0.059120779,144.4911841,2444,,,,,,,,,,,,,,,,,,,,,,,,,,0.36,,,0.346,0.374,0.28625,229,800,0.250505319,0.321994681,0.171974522,54,314,0.126697927,0.217251118,0.000579374,1,1726,,,1726,,,,,,,,,,,2.454073713,,,,,,,,,,2.92752969,,,,,,,,,,0.015949123,,,,,-13845.12,,,,,0.783692107,36042,45990,0.379364058,1.188020157,47074,,,40539.87234,53608.12766,,,,,,,,,,36027,28956.70213,43097.29787,54760,45780.93617,63739.06383,,,,,,0.618892508,190,307,,,,,,,,0.314993415,,47074,,,,,112,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,200,,,0,0,0.6175,988,1600,,,0.4,,,,,2.331116297,,,,,0.829153605,529,638,0.77558315,0.88272406,0.077186964,45,583,0,0.188242368,0.829153605,529,638,0.764034796,0.894272414,1726,,,,,0.186558517,322,1726,,,0.275202781,475,1726,,,0.022595597,39,1726,,,0.029548088,51,1726,,,0.015063731,26,1726,,,0.001738123,3,1726,,,0.275782155,476,1726,,,0.664542294,1147,1726,,,0.015731874,23,1462,0,0.06470439,0.501158749,865,1726,,,1,1770,1770,, -48,127,48127,TX,Dimmit County,2024,1,14330.949,212,26363,11639.82943,17022.06857,0,,,,2,,,,2,,,,2,14341.28577,11483.72982,17198.84173,,13764.281,6871.079483,24628.1008,1,,,,2,,0.364,,,0.315,0.418,5.438033864,,,4.40284169,6.489161899,5.699962831,,,4.476894643,6.989429528,0.073529412,70,952,0.056949433,0.09010939,0,,,,,,,,,,0.081367925,0.062966325,0.099769524,,,,,,,,,,0.221,,,0.177,0.267,0.457,,,0.369,0.548,2.6,0.266669881,0.254,,,0.45,,,0.379,0.518,0.807777133,6959,8615,,,0.13213748,,,0.104535178,0.166318933,0.08,2,25,0.014970891,0.19576483,2041.8,173,8473,,,38.1294964,106,2780,30.87070681,45.388286,,,,,,,,,,38.46153846,31.22493606,46.87229603,,,,,,,,,,0.215049105,1489,6924,0.188836339,0.241261871,0.000354066,3,8473,,,2824.333333,0.000357696,3,8387,,,2795.666667,0.000476929,4,8387,,,2096.75,1941,,,,,,,,1541,2616,0.17,,,,,,,,0.18,0.15,0.32,,,,,,,,0.33,0.28,0.727614042,3876,5327,0.658560032,0.796668051,0.423529412,972,2295,0.295842809,0.551216015,0.038186545,235,6154,,,0.35,826,,0.215361702,0.484638298,,,,,,,,,,0.559352518,0.471186537,0.647518499,,,,7.83085188,102036,13030,4.322053121,11.33965064,0.397925311,959,2410,0.199547703,0.59630292,8.261536646,7,8473,,,73.09941521,36,49248,51.19793173,101.200403,,,,,,,,,,69.47982769,46.87774798,99.18677427,,,,,,,9,,,,,0,,,,,0.251572327,800,3180,0.127542974,0.37560168,0.188197767,0.062953693,0.313441841,0.061006289,0.01875535,0.103257229,0.006289308,0,0.020519578,0.851615646,2003,2352,0.764728013,0.93850328,,,,,,,,,,0.903250189,0.830426538,0.97607384,,,,0.318,,2352,0.177071436,0.458928564,72.23394233,,,70.23896722,74.22891744,,,,,,,,,,72.02358929,69.88958719,74.15759138,,,,,,,704.9798926,212,26363,606.6041027,803.3556826,,,,,,,,,,716.5407372,609.9682554,823.1132191,669.5317211,414.450688,1023.450357,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.187,,,0.159,0.214,0.199,,,0.169,0.228,0.205,,,0.178,0.233,176.7,12,6792,,,0.254,2240,,,,0.266669881,2665.632131,9996,,,,,,,,,,,,,,,,,,,,,,,,,,0.372,,,0.355,0.389,0.273044236,1253,4589,0.237299555,0.308788917,0.10328068,255,2469,0.073493446,0.133067915,0.000953857,8,8387,,,1048.375,0.975,147.225,151,,,,,,,,2.686150015,,,,,,,,2.629224851,,2.770180515,,,,,,,,2.726879931,,0.011470126,,,,,-836.3457,,,,,0.564277408,32025,56754,0.072956656,1.05559816,44312,,,37681.3617,50942.6383,,,,195278,2048.212766,388507.7872,,,,25688,21070.97872,30305.02128,132795,75555.85106,190034.1489,,,,,,0.774830993,1490,1923,,,,,,,,0.276358549,,44312,,,8.547008547,5,585,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.30418744,13,71022,9.746208909,31.30071797,,,,,,,,,,19.3723363,10.00996886,33.83957292,,,,,,,,,1100,,,-888,5,0.533236364,3666,6875,,,0.317,,,,,55.56379996,,,,,0.649928775,1825,2808,0.543574063,0.756283487,0.228495642,603,2639,0.112087042,0.344904242,0.695868946,1954,2808,0.605018273,0.786719619,8387,,,,,0.284368666,2385,8387,,,0.16620961,1394,8387,,,0.013711697,115,8387,,,0.012280911,103,8387,,,0.010611661,89,8387,,,0.000238464,2,8387,,,0.882675569,7403,8387,,,0.091331823,766,8387,,,0.049168207,399,8115,0.021416058,0.076920356,0.506975081,4252,8387,,,0.348229832,3000,8615,, -48,129,48129,TX,Donley County,2024,1,14420.54193,84,8795,9657.663251,20710.30368,0,,,,2,,,,2,,,,2,,,,2,14001.86843,8667.377245,21403.34325,1,,,,2,,0.185,,,0.163,0.207,4.034872034,,,3.470653578,4.57288876,5.623396208,,,4.84447883,6.341422316,0.121621622,27,222,0.078625845,0.164617398,0,,,,,,,,,,,,,0.113095238,0.065203336,0.16098714,,,,,,,0.188,,,0.161,0.218,0.374,,,0.332,0.412,7.7,0.055254057,0.123,,,0.26,,,0.228,0.293,0.790976059,2577,3258,,,0.173543133,,,0.15383756,0.191621097,0.058823529,1,17,0.002556547,0.2046995,244.8,8,3268,,,14.71941122,16,1087,8.413415321,23.90340165,,,,,,,,,,,,,,,,,,,,,,0.228226887,511,2239,0.200822632,0.255631142,,0,3268,,,,0.000299491,1,3339,,,3339,,0,3339,,,,2248,,,,,,,,,2387,0.29,,,,,,,,,0.3,0.2,,,,,,,,,0.2,0.844547564,1820,2155,0.796873117,0.89222201,0.427868853,261,610,0.327042928,0.528694777,0.035522788,53,1492,,,0.26,172,,0.161106383,0.358893617,,,,,,,0.130434783,0,0.740619151,0.056074766,0,0.310180341,0.139240506,0,0.303090121,4.174048308,96600,23143,1.939764416,6.408332201,0.317610063,202,636,0.142459063,0.492761062,18.35985312,6,3268,,,109.1967969,18,16484,64.71694237,172.5780167,,,,,,,,,,,,,122.1187605,69.80142309,198.3132163,,,,6.1,,,,,0,,,,,0.130111524,175,1345,0.06910955,0.191113498,0.10365399,0.040290635,0.167017344,0.0133829,0,0.036125038,0.005947955,0,0.022863522,0.754880694,1044,1383,0.598290243,0.911471145,,,,,,,,,,,,,0.706131078,0.627167284,0.785094873,0.268,,1383,0.184680895,0.351319106,71.56687772,,,68.17832637,74.95542907,,,,,,,,,,,,,72.03501229,68.29096274,75.77906184,,,,657.8522192,84,8795,507.7164543,838.4866562,,,,,,,,,,,,,651.5124778,485.0938331,856.6185878,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.124,,,0.111,0.137,0.185,,,0.167,0.202,0.106,,,0.096,0.115,213,6,2817,,,0.123,400,,,,0.055254057,203.1691678,3677,,,,,,,,,,,,,,,,,,,,,,,,,,0.351,,,0.336,0.364,0.257357545,411,1597,0.222804354,0.291910737,0.15727003,106,674,0.113184923,0.201355136,0.001197964,4,3339,,,834.75,,,,,,,,,,,3.251351129,,,,,,,,,3.408716851,3.30884006,,,,,,,,,3.346256227,0.035110538,,,,,-7123.6245,,,,,1.070047145,39947,37332,0.733150721,1.406943568,44866,,,39669.91489,50062.08511,,,,,,,,,,52070,34761.23404,69378.76596,56653,46645.68085,66660.31915,,,,,,0.546551724,317,580,,,48.57980526,,,,,0.338429992,,44866,,,,,151,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,300,,,-888,0,0.636293436,1648,2590,,,0.373,,,,,53.76518282,,,,,0.726210351,870,1198,0.690527965,0.761892736,0.120764553,139,1151,0.034837314,0.206691791,0.643572621,771,1198,0.55240757,0.734737672,3339,,,,,0.20425277,682,3339,,,0.240790656,804,3339,,,0.05181192,173,3339,,,0.014375562,48,3339,,,0.00688829,23,3339,,,0.001197964,4,3339,,,0.132075472,441,3339,,,0.767595088,2563,3339,,,0.001261432,4,3171,0,0.023296276,0.504642108,1685,3339,,,1,3258,3258,, -48,131,48131,TX,Duval County,2024,1,14315.6856,223,29105,11743.7966,16887.5746,0,,,,2,,,,2,,,,2,13692.41563,11046.45676,16338.3745,,22000.70462,12027.98994,36913.44399,1,,,,2,,0.281,,,0.24,0.327,4.530559872,,,3.637558734,5.573084252,5.032262758,,,4.004387835,6.161044274,0.092814371,93,1002,0.074847275,0.110781468,0,,,,,,,,,,0.095341278,0.076394382,0.114288175,,,,,,,,,,0.167,,,0.132,0.206,0.42,,,0.336,0.512,5.5,0.139118816,0.185,,,0.368,,,0.308,0.435,,,9831,,,0.160595907,,,0.127655941,0.198436721,0.083333333,2,24,0.015751141,0.20231498,656,64,9756,,,37.62135922,93,2472,30.36529236,46.08870673,,,,,,,,,,38.14116616,30.54951054,47.04698754,,,,,,,,,,0.233222591,1755,7525,0.207009825,0.259435357,,0,9756,,,,,0,9888,,,,0.000101133,1,9888,,,9888,3388,,,,,,,,3465,,0.24,,,,,,,,0.22,0.31,0.31,,,,,,,,0.32,0.23,0.734169279,4684,6380,0.660744939,0.807593619,0.426838514,1126,2638,0.29496777,0.558709258,0.044545635,225,5051,,,0.387,949,,0.240446809,0.533553192,,,,,,,,,,0.341009743,0.204279198,0.477740288,,,,4.852759154,94095,19390,2.957229531,6.748288777,0.420634921,1060,2520,0.192524132,0.648745709,0,0,9756,,,86.30821214,47,54456,63.41602793,114.7716254,,,,,,,,,,86.37532134,62.25173415,116.754342,,,,,,,9.8,,,,,1,,,,,0.118942731,405,3405,0.073456341,0.164429122,0.061654135,0.023991576,0.099316694,0.046989721,0.01516164,0.078817802,0.011453745,0,0.024241554,0.700835655,2516,3590,0.63359678,0.768074529,,,,,,,,,,0.608788396,0.446678907,0.770897885,,,,0.326,,3590,0.186483769,0.465516231,72.20974659,,,70.3868833,74.03260989,,,,,,,,,,72.21857687,70.35240773,74.08474601,,,,,,,685.1276456,223,29105,591.9651612,778.29013,,,,,,,,,,668.4215861,571.121623,765.7215493,936.6748756,593.7715222,1405.472216,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.147,,,0.125,0.171,0.17,,,0.146,0.196,0.164,,,0.141,0.189,214.6,17,7921,,,0.185,1850,,,,0.139118816,1639.097888,11782,,,,,,,,,,,,,,,,,,,,,,,,,,0.361,,,0.345,0.376,0.292716809,1475,5039,0.256972128,0.32846149,0.114078596,299,2621,0.081908383,0.146248809,0.000505663,5,9888,,,1977.6,0.880327869,161.1,183,,,,,,,,2.84140915,,,,,,,,2.805338315,,2.661656563,,,,,,,,2.637625807,,0.080824523,,,,,-6327.079,,,,,0.729623449,38036,52131,0.528973222,0.930273675,40539,,,34401.6383,46676.3617,,,,,,,,,,46107,38311.08511,53902.91489,59073,34292.40426,83853.59575,,,,,,0.853559871,2110,2472,,,,,,,,0.418189891,,40539,,,8.658008658,6,693,,,,,,,,,,,,,,,,,,,,,,,,,,22.4308576,11,54456,11.1974033,40.13500029,20.19979433,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,19.41194741,15,77272,10.8647196,32.01705517,,,,,,,,,,17.40517804,8.993509477,30.40334331,,,,,,,,,1100,,,-888,13,0.628482587,5053,8040,,,0.287,,,,,19.54504917,,,,,0.713001383,2062,2892,0.657810969,0.768191797,0.082186544,215,2616,0.030460053,0.133913035,0.648340249,1875,2892,0.579846552,0.716833946,9888,,,,,0.250505663,2477,9888,,,0.170105178,1682,9888,,,0.016282363,161,9888,,,0.011832524,117,9888,,,0.00566343,56,9888,,,0.00151699,15,9888,,,0.878438511,8686,9888,,,0.09486246,938,9888,,,0.042191368,392,9291,0.019612103,0.064770633,0.465614887,4604,9888,,,1,9831,9831,, -48,133,48133,TX,Eastland County,2024,1,12478.74397,445,49285,10649.23104,14308.2569,0,,,,2,,,,2,,,,2,8053.858592,4848.948986,12577.09784,1,13259.67866,11114.33253,15405.02479,,,,,2,,0.201,,,0.171,0.233,4.233267995,,,3.364685711,5.228015442,5.755119038,,,4.611913613,7.005972519,0.077975376,114,1462,0.064230767,0.091719985,0,,,,,,,,,,0.051948052,0.023329294,0.08056681,0.081718618,0.066134612,0.097302624,,,,,,,0.196,,,0.158,0.238,0.378,,,0.294,0.467,5.9,0.108868062,0.178,,,0.276,,,0.225,0.331,0.59864598,10611,17725,,,0.170367104,,,0.134571591,0.209052135,0.275,11,40,0.192155924,0.361346198,229.5,41,17864,,,27.98589687,127,4538,23.11853719,32.85325655,,,,,,,,,,22.01524132,14.38108655,32.25742937,31.59663866,25.5333003,38.66628361,,,,,,,0.231948787,3116,13434,0.20692751,0.256970063,0.000223914,4,17864,,,4466,0.000334374,6,17944,,,2990.666667,0.00050156,9,17944,,,1993.777778,3675,,,,,,,12500,6813,3508,0.26,,,,,,,,0.26,0.26,0.31,,,,,,,0.41,0.34,0.3,0.854087843,10384,12158,0.819037813,0.889137874,0.606928888,2330,3839,0.500842656,0.71301512,0.045563191,305,6694,,,0.2,750,,0.111829787,0.288170213,,,,,,,,,,0.304061471,0.14730421,0.460818732,0.117267552,0.063701768,0.170833336,5.833349778,118242,20270,4.363698409,7.303001147,0.28340081,1050,3705,0.155819818,0.410981802,13.99462606,25,17864,,,106.190815,97,91345,86.11359743,129.5437889,,,,,,,,,,,,,116.0498315,92.43304302,143.8612265,,,,7.7,,,,,1,,,,,0.119743407,840,7015,0.082017345,0.15746947,0.080800593,0.041762287,0.119838899,0.033499644,0.010911559,0.056087728,0.009978617,0.001339274,0.01861796,0.771028654,5839,7573,0.72958792,0.812469389,,,,,,,,,,0.766277129,0.685156105,0.847398152,0.780286797,0.727568951,0.833004643,0.246,,7573,0.172310453,0.319689547,72.38683574,,,71.11744235,73.65622914,,,,,,,,,,75.40128443,72.21751033,78.58505854,71.61613296,70.17998603,73.0522799,,,,636.4444993,445,49285,572.0366692,700.8523293,,,,,,,,,,379.3187292,254.0357061,544.7649686,681.970814,607.8259179,756.1157101,,,,65.47716484,12,18327,33.83300654,114.37543,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.132,,,0.113,0.152,0.188,,,0.163,0.217,0.113,,,0.096,0.132,85.6,13,15180,,,0.178,3170,,,,0.108868062,2023.095198,18583,,,,,,,,,,,,,,,,,,,,,,,,,,0.349,,,0.333,0.365,0.271945279,2624,9649,0.240966556,0.302924003,0.133116069,531,3989,0.097371388,0.16886075,0.000557289,10,17944,,,1794.4,0.928712871,187.6,202,,,,,,,,2.891189487,,,,,,,,2.651566644,3.034939873,2.617549935,,,,,,,,2.406935157,2.743738065,0.038345376,,,,,-6546.3604,,,,,0.735299462,40465,55032,0.594634764,0.875964161,53351,,,45867.25532,60834.74468,,,,,,,40972,5360.765957,76583.23404,59492,41187.14894,77796.85106,52231,44492.2766,59969.7234,,,,,,0.618568233,1659,2682,,,43.17777726,,,,,0.259526532,,53351,,,4.775549188,5,1047,,,,,,,,,,,,,,,,,,,,,,,,,,24.0339443,21,91345,14.47000447,37.53198117,22.98976408,,,,,,,,,,,,,24.62257119,13.78106618,40.6111867,,,,16.42126006,15,91345,9.190854598,27.0843712,,,,,,,,,,,,,18.17647964,9.678209884,31.08233375,,,,25.82361687,33,127790,17.77578963,36.26595921,,,,,,,,,,,,,28.8712343,19.33551872,41.46390841,,,,10,,1600,,,5,11,0.593204578,8293,13980,,,0.439,,,,,17.54594119,,,,,0.69490329,4922,7083,0.662076461,0.727730118,0.101363636,669,6600,0.066884176,0.135843097,0.809261612,5732,7083,0.770316149,0.848207076,17944,,,,,0.212271511,3809,17944,,,0.222414177,3991,17944,,,0.020508248,368,17944,,,0.013430673,241,17944,,,0.008693714,156,17944,,,0.00105885,19,17944,,,0.179893,3228,17944,,,0.769170754,13802,17944,,,0.016583452,279,16824,0.005259612,0.027907292,0.497436469,8926,17944,,,1,17725,17725,, -48,135,48135,TX,Ector County,2024,1,11614.5932,2640,476209,11056.78417,12172.40222,0,,,,2,,,,2,14167.51891,11163.56877,17171.46904,,9963.525103,9318.51674,10608.53347,,14900.46056,13661.13217,16139.78894,,,,,2,,0.226,,,0.195,0.26,4.180801758,,,3.362844054,5.149708559,4.854608754,,,3.868834345,6.003939759,0.094382354,1917,20311,0.090361593,0.098403115,0,,,,0.119402985,0.080580362,0.158225608,0.181818182,0.156173947,0.207462417,0.085749965,0.081178944,0.090320987,0.102513228,0.093686016,0.111340439,,,,0.110236221,0.055766678,0.164705763,0.163,,,0.132,0.197,0.385,,,0.308,0.468,7.2,0.071804477,0.139,,,0.32,,,0.267,0.378,0.721064836,119099,165171,,,0.184217366,,,0.148690182,0.227901027,0.392996109,101,257,0.363146688,0.422577832,596.6,961,161091,,,46.0797133,1903,41298,44.00935055,48.15007606,,,,,,,32.97997644,24.91271978,42.82724264,51.21036481,48.62048879,53.80024084,35.87686972,32.01180635,39.74193308,,,,26.37362637,13.6276376,46.06941769,0.252561213,35968,142413,0.229922915,0.275199511,0.000571106,92,161091,,,1750.98913,0.000522164,84,160869,,,1915.107143,0.000509732,82,160869,,,1961.817073,4044,,,,,,,2252,4122,4146,0.28,,,,,,0.3,0.2,0.25,0.31,0.37,,,,,,0.49,0.3,0.36,0.38,0.768473821,74502,96948,0.749803905,0.787143737,0.538106424,26343,48955,0.49608383,0.580129018,0.038784117,3237,83462,,,0.207,10015,,0.152191489,0.261808511,0.156069364,0,0.377434136,0.262755102,0,0.66828092,0.173282117,0.042203076,0.304361158,0.276324059,0.23372334,0.318924777,0.109632259,0.046150965,0.173113553,4.876601554,139305,28566,4.312626575,5.440576533,0.260403313,12797,49143,0.219785117,0.301021509,7.387129014,119,161091,,,89.77851358,731,814226,83.27018016,96.286847,,,,,,,75.29280535,49.61843316,109.5470788,69.13781996,61.91510592,76.360534,139.1392724,124.4568994,153.8216453,,,,7.6,,,,,1,,,,,0.15858209,8500,53600,0.139236027,0.177928153,0.10820294,0.092272661,0.124133219,0.051958955,0.040724759,0.063193152,0.012593284,0.008000571,0.017185997,0.817060357,59875,73281,0.806401493,0.827719221,,,,0.844897959,0.743852581,0.945943337,0.794534413,0.714825584,0.874243242,0.80891618,0.784009165,0.833823194,0.835681751,0.817584779,0.853778722,0.313,,73281,0.280001982,0.345998018,72.42633784,,,71.98801764,72.86465805,,,,85.27040631,72.15213155,98.38868107,70.31396196,68.02923475,72.59868916,74.22992156,73.59254145,74.86730168,69.88006755,69.08303947,70.67709563,,,,603.6797849,2640,476209,580.4441042,626.9154656,,,,,,,693.7210953,572.0176338,815.4245567,532.4323067,501.8129094,563.0517039,723.1847427,681.2143351,765.1551502,,,,75.41167921,165,218799,63.90492833,86.91843009,,,,,,,127.8636122,66.06899423,223.3519984,64.26487411,51.66895878,76.86078943,100.3176726,73.9663326,133.0066799,,,,5.766103199,117,20291,4.721273397,6.810933,,,,,,,,,,5.310486441,4.177034462,6.656740738,5.581972297,3.678554917,8.121476627,,,,,,,0.129,,,0.112,0.149,0.165,,,0.143,0.19,0.13,,,0.111,0.151,241.1,301,124827,,,0.139,22450,,,,0.071804477,9846.547894,137130,,,18.78730948,93,495015,15.16378347,23.01572337,,,,,,,,,,13.035737,9.354669932,17.68444918,34.41890562,25.54637516,45.37703616,,,,0.363,,,0.35,0.376,0.289559056,27134,93708,0.262154801,0.316963311,0.18562792,9457,50946,0.146308771,0.224947069,0.000975949,157,160869,,,1024.643312,0.84,1702.68,2027,,,0.125130453,1199,9582,0.070519606,0.1797413,2.63116335,,,,,,2.883837151,2.19296791,2.590107263,2.846339032,2.792154588,,,,,,3.390295663,2.146713073,2.765134931,2.930359369,0.090790199,,,,,-5797.064,,,,,0.689607862,43226,62682,0.618172283,0.761043441,64868,,,56597.87234,73138.12766,69968,22026.04255,117909.9575,98292,65459.31915,131124.6809,51830,45646.17021,58013.82979,65822,59541.65957,72102.34043,83760,76656.34043,90863.65957,,,,,,0.595041322,21024,35332,,,36.60104157,,,,,0.26028242,,64868,,,3.263435634,47,14402,,,7.249426234,82,1131124,5.765683821,8.998449431,,,,,,,,,,6.17086405,4.465884911,8.312113379,7.869766605,5.229402757,11.3740039,,,,16.45741442,128,814226,13.55020335,19.3646255,15.72045108,,,,,,,,,,8.447636922,6.00709566,11.54819777,33.38936627,26.39290847,41.67144021,,,,14.49229084,118,814226,11.87740876,17.10717292,,,,,,,,,,8.249398972,5.945441173,11.15079092,27.42455223,21.2962379,34.76715473,,,,31.11948823,352,1131124,27.86848661,34.37048985,,,,,,,26.36061319,14.03591632,45.07745137,29.27572712,25.25829379,33.29316045,36.81926519,30.51411348,43.1244169,,,,20.21052632,,19000,,,117,267,0.44749862,44591,99645,,,0.509,,,,,85.07368252,,,,,0.649317687,39398,60676,0.626293928,0.672341447,0.132214823,7644,57815,0.110520614,0.153909032,0.842787923,51137,60676,0.823476602,0.862099244,160869,,,,,0.304036203,48910,160869,,,0.097514126,15687,160869,,,0.043476369,6994,160869,,,0.015708434,2527,160869,,,0.014521132,2336,160869,,,0.003008659,484,160869,,,0.656720686,105646,160869,,,0.272401768,43821,160869,,,0.067053918,9939,148224,0.057371579,0.076736258,0.485469544,78097,160869,,,0.090905789,15015,165171,, -48,137,48137,TX,Edwards County,2024,1,9916.697855,44,4675,5421.550996,16638.53396,1,,,,2,,,,2,,,,2,11582.98455,5554.491319,21301.52099,1,,,,2,,,,2,,0.264,,,0.231,0.299,4.613942828,,,3.953443746,5.301889311,5.439108766,,,4.684699937,6.22328264,,,,,,0,,,,,,,,,,,,,,,,,,,,,,0.19,,,0.162,0.219,0.401,,,0.351,0.454,6.7,0.109313189,0.14,,,0.343,,,0.302,0.386,0.010548523,15,1422,,,0.139686244,,,0.120419314,0.160859497,0,0,7,0,0.25576943,,,,,,42.40282686,12,283,21.9101594,74.06920512,,,,,,,,,,55.83756345,27.87391049,99.90882494,,,,,,,,,,0.292277615,299,1023,0.260107402,0.324447828,0.00069541,1,1438,,,1438,0,0,1422,,,-1422,0.000703235,1,1422,,,1422,2395,,,,,,,,,3048,0.35,,,,,,,,0.21,0.4,0.24,,,,,,,,0.24,0.24,0.744351962,626,841,0.674551585,0.814152339,0.569444444,123,216,0.190158079,0.94873081,0.028309742,34,1201,,,0.362,110,,0.226170213,0.497829787,,,,,,,,,,0.375690608,0,0.830470694,,,,4.698324968,83306,17731,0,10.62731421,0.203703704,55,270,0,0.440346602,27.81641168,4,1438,,,,,,,,,,,,,,,,,,,,,,,,,,7.3,,,,,1,,,,,0.133757962,105,785,0.009597365,0.257918558,0.063694268,0,0.15638386,0.012738854,0,0.058523935,0.057324841,0,0.150322051,0.787709497,564,716,0.664158124,0.911260871,,,,,,,,,,,,,,,,0.281,,716,0,0.570603003,75.16073166,,,71.04698593,79.2744774,,,,,,,,,,,,,,,,,,,543.1953529,44,4675,371.5452192,766.8297637,,,,,,,,,,657.5873233,412.1064745,995.5951101,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.149,,,0.133,0.166,0.182,,,0.164,0.201,0.147,,,0.132,0.162,,,,,,0.14,190,,,,0.109313189,218.8450035,2002,,,,,,,,,,,,,,,,,,,,,,,,,,0.358,,,0.343,0.373,0.336146273,239,711,0.295635635,0.376656911,0.198795181,66,332,0.148752628,0.248837734,0,0,1422,,,-1422,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.10662799,,,,,-10530.292,,,,,0.495262435,20542,41477,0,1.091249758,50752,,,42910.80851,58593.19149,,,,,,,,,,,,,45179,19883.68085,70474.31915,,,,,,0.6796875,261,384,,,,,,,,0.241290984,,50752,,,35.71428571,1,28,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,200,,,-888,0,0.713043478,1066,1495,,,0.184,,,,,0.004579501,,,,,0.817490494,430,526,0.674037744,0.960943245,0.096078431,49,510,0,0.264033464,0.581749049,306,526,0.445845977,0.717652122,1422,,,,,0.215189873,306,1422,,,0.291842475,415,1422,,,0.008438819,12,1422,,,0.035161744,50,1422,,,0.013361463,19,1422,,,0,0,1422,,,0.533052039,758,1422,,,0.430379747,612,1422,,,0.048689139,65,1335,0,0.111941046,0.475386779,676,1422,,,1,1422,1422,, -48,139,48139,TX,Ellis County,2024,1,7378.057867,2423,550897,6955.318206,7800.797529,0,,,,2,,,,2,9286.969434,7983.848811,10590.09006,,5613.50078,4920.730743,6306.270817,,7985.2944,7374.938953,8595.649848,,,,,2,,0.164,,,0.139,0.192,3.40906708,,,2.644671708,4.237290151,5.063939701,,,4.050463281,6.126070472,0.07244471,1212,16730,0.068516621,0.076372799,0,,,,0.112299465,0.067045426,0.157553505,0.129638554,0.115185357,0.144091752,0.067192321,0.060767978,0.073616664,0.06122449,0.056076034,0.066372946,,,,0.061320755,0.029024624,0.093616885,0.15,,,0.117,0.183,0.374,,,0.298,0.45,7.9,0.073348758,0.104,,,0.23,,,0.185,0.278,0.536655322,103282,192455,,,0.197311868,,,0.158597104,0.239154495,0.271604938,44,162,0.231646626,0.312600885,370.5,751,202678,,,19.63948279,925,47099,18.37382805,20.90513754,,,,,,,19.41900853,15.98714058,22.85087647,26.07763753,23.6354036,28.51987146,15.28073916,13.66592997,16.89554835,,,,16.7539267,9.576316705,27.20732733,0.189123521,33003,174505,0.17244267,0.205804372,0.000379913,77,202678,,,2632.181818,0.000311054,66,212182,,,3214.878788,0.000942587,200,212182,,,1060.91,3123,,,,,,4771,4281,3186,2879,0.42,,,,,,0.42,0.42,0.29,0.43,0.47,,,,,0.38,0.41,0.34,0.39,0.49,0.883473719,111285,125963,0.873734833,0.893212604,0.635890817,33011,51913,0.602113966,0.669667669,0.034738085,3589,103316,,,0.121,6616,,0.08406383,0.15793617,0.006711409,0,0.204921627,0.237327189,0,0.505737896,0.22687906,0.150065358,0.303692761,0.181196106,0.137607283,0.224784929,0.070102751,0.043960606,0.096244896,3.692156312,157596,42684,3.385918329,3.998394294,0.225618179,11597,51401,0.193951275,0.257285082,8.239670808,167,202678,,,56.84743436,530,932320,52.00761664,61.68725208,,,,,,,47.05967529,35.14641641,61.71250316,30.482253,24.05611737,38.09758616,73.35394843,66.15625874,80.55163812,,,,9.7,,,,,0,,,,,0.132239057,7855,59400,0.118967722,0.145510392,0.093855789,0.080424238,0.107287339,0.03543771,0.028935601,0.04193982,0.00993266,0.006418851,0.013446469,0.796329825,77850,97761,0.783954345,0.808705305,,,,0.815659068,0.692193352,0.939124785,0.669730107,0.617176551,0.722283663,0.739934712,0.69426849,0.785600934,0.754839396,0.739480119,0.770198673,0.5,,97761,0.474032091,0.525967909,77.09602178,,,76.70460058,77.48744298,,,,,,,74.41235159,73.25389851,75.57080468,80.00612498,78.87873018,81.13351979,76.53822758,76.03101522,77.04543995,,,,382.1796512,2423,550897,366.730749,397.6285533,,,,,,,472.4129957,423.1371461,521.6888454,291.3795513,259.3577877,323.4013148,402.4963624,382.4566289,422.536096,,,,47.58214718,105,220671,38.48080468,56.68348968,,,,,,,51.88644281,28.36680111,87.0566345,42.00664469,28.91544135,58.99294705,53.43733301,40.47291418,69.23426308,,,,5.985783764,96,16038,4.848504066,7.30966648,,,,,,,11.50054765,7.119020254,17.57980873,4.770642202,3.116341874,6.990096162,5.754705671,4.243065678,7.629904829,,,,,,,0.106,,,0.09,0.123,0.162,,,0.138,0.185,0.102,,,0.086,0.118,239.9,397,165472,,,0.104,19580,,,,0.073348758,10973.70763,149610,,,9.322174345,54,579264,7.003104279,12.16341537,,,,,,,,,,,,,12.09029029,8.637480638,16.46354384,,,,0.345,,,0.333,0.358,0.217026774,26377,121538,0.196771454,0.237282093,0.129799231,7228,55686,0.102394976,0.157203487,0.000702227,149,212182,,,1424.040269,0.942598438,2896.605,3073,,,0.084874957,991,11676,0.056488263,0.113261652,2.918760098,,,,,,,2.64372139,2.826436624,3.078147398,3.120311986,,,,,,,2.862295081,3.000878941,3.311960317,0.089115361,,,,,-5002.75348,,,,,0.802368295,51768,64519,0.753566756,0.851169833,89314,,,81443.02128,97184.97872,76435,52142.91489,100727.0851,110833,77524.91489,144141.0851,89135,73976.87234,104293.1277,74678,67368.21277,81987.78723,100497,96177.85106,104816.1489,,,,,,0.535420688,22470,41967,,,33.01570763,,,,,0.22320129,,89314,,,5.052974735,62,12270,,,4.50788524,57,1264451,3.414228259,5.840488196,,,,,,,13.34204077,8.032780105,20.83524937,3.551336042,1.835027156,6.203469374,3.463415674,2.262418106,5.07470642,,,,14.73389174,138,932320,12.23797461,17.22980887,14.8017848,,,,,,,,,,5.012011601,2.668685091,8.570692479,21.3277572,17.3531738,25.30234059,,,,11.47674618,107,932320,9.302128277,13.65136409,,,,,,,15.38489384,8.962267615,24.6327054,4.750480986,2.454642847,8.298134268,14.33986962,11.33507187,17.89680626,,,,15.26354125,193,1264451,13.11010152,17.41698098,,,,,,,7.724339393,3.855962395,13.82097686,12.13373148,8.707375198,16.46077685,18.51595303,15.43776786,21.5941382,,,,5.142857143,,21000,,,72,36,0.689070686,85493,124070,,,0.688,,,,,45.78831511,,,,,0.758852724,49846,65686,0.74368924,0.774016207,0.104917677,6761,64441,0.089987829,0.119847524,0.914289194,60056,65686,0.901967285,0.926611104,212182,,,,,0.261332253,55450,212182,,,0.130722682,27737,212182,,,0.151473735,32140,212182,,,0.008822615,1872,212182,,,0.010740779,2279,212182,,,0.001376177,292,212182,,,0.283303956,60112,212182,,,0.534899285,113496,212182,,,0.031754101,5809,182937,0.025898556,0.037609647,0.503327332,106797,212182,,,0.306944481,59073,192455,, -48,141,48141,TX,El Paso County,2024,1,7874.058856,10565,2412676,7670.12646,8077.991251,0,7120.091297,3985.061049,11743.5078,1,3129.242361,2079.358824,4522.626476,,10407.84736,9068.757445,11746.93728,,7643.720569,7423.466477,7863.97466,,9332.307569,8652.887874,10011.72726,,,,,2,,0.231,,,0.199,0.273,3.870514161,,,3.176816233,4.661836132,5.114944805,,,4.357909134,5.933971443,0.088584286,7264,82001,0.086639449,0.090529122,0,,,,0.098059244,0.079429881,0.116688607,0.12818792,0.11618511,0.140190729,0.087413405,0.085297071,0.089529739,0.083590977,0.077786024,0.08939593,0.087649402,0.052664991,0.122633814,0.093959732,0.066910998,0.121008466,0.147,,,0.116,0.182,0.376,,,0.331,0.423,6.7,0.091277941,0.15,,,0.295,,,0.252,0.344,0.833885708,721859,865657,,,0.167869967,,,0.141115066,0.197175219,0.293532338,118,402,0.268580951,0.318782969,419.8,3644,867947,,,30.62853159,6678,218032,29.89391786,31.36314532,20.4778157,10.58118619,35.77062295,9.683666882,5.419874844,15.97173588,22.34749346,18.19007825,26.50490867,31.69686884,30.90601785,32.48771982,24.26048095,21.68924208,26.83171982,32.5732899,15.62015862,59.90343988,8.161044614,4.567674719,13.460402,0.235184628,173483,737646,0.220886756,0.2494825,0.000496574,431,867947,,,2013.798144,0.000484597,421,868763,,,2063.570071,0.001235089,1073,868763,,,809.6579683,2066,,,,,,2219,2367,2058,1980,0.29,,,,,,0.14,0.24,0.28,0.33,0.31,,,,,0.28,0.29,0.18,0.29,0.34,0.800258982,428277,535173,0.793543629,0.806974334,0.66824712,159685,238961,0.648946574,0.687547666,0.042551527,15769,370586,,,0.287,63962,,0.246489362,0.327510638,0.301129235,0.14882443,0.453434039,0.300978179,0.176232121,0.425724238,0.194878201,0.134811073,0.25494533,0.28384595,0.270612967,0.297078934,0.115961346,0.083624495,0.148298197,5.027201601,110518,21984,4.807599436,5.246803766,0.301535073,69006,228849,0.282323288,0.320746859,4.700747857,408,867947,,,55.79672402,2360,4229639,53.54555154,58.0478965,,,,39.24403594,23.62747323,61.28442336,86.48419008,70.60821647,102.3601637,48.20968073,45.91116768,50.50819379,104.2085149,95.17308487,113.243945,,,,8.8,,,,,1,,,,,0.187678141,51360,273660,0.178892389,0.196463893,0.133079848,0.125976764,0.140182932,0.057662793,0.051898975,0.063426611,0.008824819,0.006764533,0.010885106,0.779555457,294396,377646,0.770789094,0.788321819,0.783627979,0.693598652,0.873657305,0.737349872,0.70129341,0.773406334,0.751712589,0.705918405,0.797506774,0.782504458,0.772390205,0.792618712,0.771638606,0.751350001,0.791927211,0.3,,377646,0.287617679,0.312382321,77.02885002,,,76.83468786,77.22301218,89.19019736,75.21362739,103.1667673,85.56174306,83.25243396,87.87105215,75.59530378,74.23080055,76.95980702,77.40096704,77.18379806,77.61813603,75.00657018,74.47068814,75.54245222,,,,418.8317109,10565,2412676,410.7512976,426.9121241,355.9611414,223.0789522,538.9294459,185.7682975,140.3273755,241.2355863,495.0480624,441.8474955,548.2486294,406.1095012,397.2984758,414.9205267,495.0981751,470.6066804,519.5896698,,,,41.62523185,419,1006601,37.63952158,45.61094211,,,,,,,97.10913573,63.43491154,142.2873836,38.44454518,34.32766341,42.56142695,65.07592191,48.8870354,84.90996191,,,,4.420034312,371,83936,3.970259887,4.869808737,,,,,,,9.231783713,6.134453233,13.34249784,4.163675521,3.684456608,4.642894433,5.496281927,4.092342908,7.226595687,,,,,,,0.126,,,0.109,0.148,0.165,,,0.143,0.189,0.144,,,0.126,0.164,356.1,2511,705104,,,0.15,128910,,,,0.091277941,73081.40976,800647,,,14.79318384,377,2548471,13.29988389,16.28648378,,,,,,,23.56823003,14.18961406,36.80471063,12.59367731,11.08022823,14.10712639,28.96703551,23.13783913,35.818188,,,,0.341,,,0.326,0.355,0.295773935,151958,513764,0.277901595,0.313646276,0.100866954,23851,236460,0.081803125,0.119930784,0.001031352,896,868763,,,969.6015625,0.860762957,11609.11,13487,,,0.081463991,4347,53361,0.065957172,0.096970809,2.968075845,,,,,,3.420800716,2.981613512,2.94637288,3.271168609,3.198814279,,,,,,3.855672496,3.166996891,3.178828886,3.473711975,0.114896048,,,,,-21641.67133,,,,,0.831349163,38198,45947,0.801160162,0.861538165,53441,,,51455.97872,55426.02128,70173,56853.34043,83492.65957,67219,52796.02128,81641.97872,67220,60104.42553,74335.57447,51296,50074.7234,52517.2766,74807,70459.25532,79154.74468,,,,,,0.744312007,126702,170227,,,49.73781171,,,,,0.284706499,,53441,,,4.127917249,257,62259,,,3.709883706,219,5903150,3.218529917,4.201237496,,,,,,,13.55917495,8.774783106,20.01601702,3.200633561,2.698372249,3.702894874,4.12477296,2.762425187,5.923862016,,,,11.15476087,470,4229639,10.1313646,12.17815714,11.11205945,,,,,,,10.07610461,5.508700153,16.90599141,8.452600263,7.468503735,9.436696791,30.05074596,25.12817867,34.97331326,,,,8.65322076,366,4229639,7.766691014,9.539750505,,,,,,,20.48309765,13.49849042,29.80183168,5.962025605,5.153717814,6.770333397,25.08345858,20.65052797,29.5163892,,,,11.68867469,690,5903150,10.81651342,12.56083596,,,,,,,18.44047793,12.77056704,25.76871958,11.28428499,10.34120448,12.22736551,13.93888793,11.316263,16.98703972,,,,10.13808976,,86900,,,637,244,0.517719332,266729,515200,,,0.64,,,,,160.9913994,,,,,0.630043065,184338,292580,0.621256184,0.638829946,0.151943688,42913,282427,0.14388298,0.160004397,0.863305763,252586,292580,0.85572317,0.870888356,868763,,,,,0.25884735,224877,868763,,,0.130678908,113529,868763,,,0.033875752,29430,868763,,,0.011158394,9694,868763,,,0.014625393,12706,868763,,,0.002360828,2051,868763,,,0.829215793,720392,868763,,,0.111692142,97034,868763,,,0.131327771,105561,803798,0.125872107,0.136783436,0.501141278,435373,868763,,,0.040236491,34831,865657,, -48,143,48143,TX,Erath County,2024,1,7983.471553,516,121524,6981.480454,8985.462653,0,,,,2,,,,2,,,,2,6995.082667,5224.262316,9173.120268,,8694.317473,7413.916724,9974.718221,,,,,2,,0.181,,,0.153,0.211,3.863060783,,,3.035109455,4.729842767,5.28132115,,,4.186109815,6.325232853,0.077640686,258,3323,0.068541854,0.086739518,0,,,,,,,0.224489796,0.107660949,0.341318643,0.06952381,0.0541394,0.084908219,0.076132648,0.064898555,0.087366741,,,,,,,0.171,,,0.136,0.209,0.367,,,0.281,0.449,5.9,0.181157416,0.146,,,0.257,,,0.208,0.308,0.704195558,29960,42545,,,0.1946699,,,0.152597795,0.236517379,0.171875,11,64,0.111410137,0.2408279,555.6,241,43378,,,11.69957767,205,17522,10.09799513,13.30116022,,,,,,,,,,26.72292546,21.62044249,32.66739061,8.221283135,6.663511514,9.779054756,,,,,,,0.21527369,7315,33980,0.190252414,0.240294967,0.000576329,25,43378,,,1735.12,0.000569541,25,43895,,,1755.8,0.001230209,54,43895,,,812.8703704,2257,,,,,,,,1159,2290,0.4,,,,,,,,0.23,0.41,0.42,,,,,,,,0.34,0.42,0.870855148,21956,25212,0.848539165,0.893171132,0.626132336,6359,10156,0.561430829,0.690833843,0.034784253,736,21159,,,0.15,1318,,0.089234043,0.210765957,,,,,,,,,,0.241765481,0.109461999,0.374068963,0.08085431,0.040657279,0.12105134,4.952902794,118414,23908,4.330740703,5.575064885,0.192505427,1685,8753,0.122654114,0.26235674,11.7571119,51,43378,,,73.93023419,158,213715,62.40234987,85.45811851,,,,,,,,,,45.16031913,27.95494932,69.03234497,84.34751175,70.01235235,98.68267114,,,,8.2,,,,,0,,,,,0.174553102,2490,14265,0.137185287,0.211920917,0.141949153,0.108578813,0.175319492,0.028741675,0.010275136,0.047208215,0.013669821,0.002492186,0.024847456,0.767533992,15693,20446,0.729963482,0.805104502,,,,,,,,,,0.759396434,0.65567538,0.863117487,0.763150609,0.715632774,0.810668444,0.218,,20446,0.17662254,0.25937746,77.39058621,,,76.50181895,78.27935347,,,,,,,,,,83.66726763,76.71881962,90.61571564,76.53073846,75.48378049,77.57769644,,,,394.0704248,516,121524,358.532785,429.6080646,,,,,,,,,,350.3631409,269.822311,447.4059091,418.0593907,376.3110674,459.8077139,,,,41.5394521,20,48147,25.3733765,64.15431471,,,,,,,,,,,,,54.69227552,31.86026596,87.56763123,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.12,,,0.102,0.139,0.177,,,0.152,0.202,0.107,,,0.09,0.125,67.8,25,36851,,,0.146,6160,,,,0.181157416,6864.054491,37890,,,9.280742459,12,129300,4.795495057,16.21158936,,,,,,,,,,,,,,,,,,,0.334,,,0.318,0.349,0.247097911,6173,24982,0.216119187,0.278076634,0.133298097,1261,9460,0.098744906,0.167851289,0.000615104,27,43895,,,1625.740741,0.905919396,359.65,397,,,,,,,,3.153473981,,,,,,,,2.827936828,3.380523482,3.281078525,,,,,,,,3.056682312,3.440332974,0.054394298,,,,,-4616.107914,,,,,0.756222602,40712,53836,0.672947456,0.839497748,60093,,,53704.23404,66481.76596,,,,,,,,,,44973,34026.78723,55919.21277,63856,59194.89362,68517.10638,,,,,,0.516327891,3099,6002,,,69.27048638,,,,,0.33173581,,60093,,,4.75812847,12,2522,,,,,,,,,,,,,,,,,,,,,,,,,,12.92774016,27,213715,8.366151801,19.0838947,12.63364762,,,,,,,,,,,,,15.69080667,9.833345003,23.75606987,,,,10.29408324,22,213715,6.451247162,15.58536574,,,,,,,,,,,,,13.31802817,8.244069345,20.35802077,,,,24.62090551,73,296496,19.29885966,30.95709223,,,,,,,,,,29.87750224,17.98820808,46.65742074,23.63335576,17.65052048,30.99200181,,,,4.571428571,,3500,,,8,8,0.542953777,16856,31045,,,0.488,,,,,52.37532023,,,,,0.632473293,10124,16007,0.602295911,0.662650675,0.171028881,2653,15512,0.133056927,0.209000835,0.876054226,14023,16007,0.852043908,0.900064545,43895,,,,,0.20430573,8968,43895,,,0.150222121,6594,43895,,,0.019227703,844,43895,,,0.014625812,642,43895,,,0.012324866,541,43895,,,0.00097961,43,43895,,,0.22225766,9756,43895,,,0.728420093,31974,43895,,,0.034806986,1403,40308,0.023284988,0.046328984,0.508053309,22301,43895,,,0.509883653,21693,42545,, -48,145,48145,TX,Falls County,2024,1,10932.71218,316,47683,9020.683054,12844.7413,0,,,,2,,,,2,14728.03888,10521.9269,20055.40875,,9161.938138,6266.758904,12933.92298,,11102.34993,7922.312676,14282.38719,,,,,2,,0.246,,,0.214,0.278,4.566999869,,,3.799200144,5.412886114,5.81908869,,,4.730508172,6.973657445,0.089970502,122,1356,0.074740357,0.105200646,0,,,,,,,0.133956386,0.096695331,0.171217441,0.075688073,0.050860411,0.100515736,0.072953737,0.051452552,0.094454921,,,,,,,0.216,,,0.179,0.256,0.429,,,0.343,0.522,6.8,0.051465989,0.165,,,0.331,,,0.277,0.388,0.372937294,6328,16968,,,0.158236823,,,0.125559117,0.196973127,0.37037037,10,27,0.269507269,0.468143558,398.5,69,17313,,,43.74795952,134,3063,36.34063326,51.15528578,,,,,,,59.52380952,43.41707512,79.64754034,55.39906103,42.17233205,71.46075245,24.97846684,16.72847126,35.87324499,,,,,,,0.202929559,2466,12152,0.177908282,0.227950836,5.77601E-05,1,17313,,,17313,0.000293272,5,17049,,,3409.8,0.000175963,3,17049,,,5683,2683,,,,,,,1322,1406,3464,0.4,,,,,,,0.24,0.36,0.44,0.33,,,,,,,0.17,0.37,0.36,0.825161568,9576,11605,0.792470489,0.857852648,0.581428915,2417,4157,0.505696974,0.657160856,0.040502998,277,6839,,,0.276,985,,0.174723404,0.377276596,,,,,,,0.268104777,0.04831689,0.487892663,0.167736758,0.074563744,0.260909772,0.164102564,0.09054346,0.237661669,5.862956172,99125,16907,4.984515114,6.74139723,0.306550952,1095,3572,0.227318134,0.38578377,11.55201294,20,17313,,,75.00836632,65,86657,57.88987356,95.60432027,,,,,,,70.50410435,38.54524992,118.293907,56.95842035,29.43124696,99.4948977,89.27549502,63.48360419,122.0425406,,,,9,,,,,1,,,,,0.172072072,955,5550,0.126216122,0.217928022,0.123161765,0.08047519,0.165848339,0.04954955,0.022956742,0.076142357,0.014414414,0.004438588,0.024390241,0.824516129,5112,6200,0.795845663,0.853186595,,,,,,,,,,,,,0.79672524,0.728599558,0.864850921,0.424,,6200,0.352233163,0.495766837,74.94135036,,,73.43103297,76.45166774,,,,,,,71.64044221,68.2398219,75.04106251,83.89930191,74.05158784,93.74701598,74.49761864,72.18729512,76.80794215,,,,509.5417025,316,47683,450.5726817,568.5107232,,,,,,,690.1350457,548.0668443,857.7748481,424.5401019,308.471488,569.9252712,490.8160719,410.6571984,570.9749454,,,,112.8243701,18,15954,66.86687214,178.3111462,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.146,,,0.127,0.166,0.197,,,0.172,0.223,0.139,,,0.12,0.16,280,41,14643,,,0.165,2820,,,,0.051465989,919.4913585,17866,,,,,,,,,,,,,,,,,,,,,,,,,,0.397,,,0.387,0.406,0.243315508,2093,8602,0.211145295,0.275485721,0.107477888,401,3731,0.075307675,0.139648101,0.000469236,8,17049,,,2131.125,,,,,,,,,,,2.644115672,,,,,,,2.147729619,2.521173273,3.231261039,2.976676724,,,,,,,2.63384406,2.898446595,3.481836285,0.184354647,,,,,-9921.0512,,,,,0.96420994,44991,46661,0.827622779,1.1007971,47534,,,40457.74468,54610.25532,,,,,,,27014,20085.48936,33942.51064,34330,30251.53192,38408.46809,56141,45840.57447,66441.42553,,,,,,0.803385417,1851,2304,,,66.55997292,,,,,0.287415324,,47534,,,6.060606061,6,990,,,,,,,,,,,,,,,,,,,,,,,,,,17.05913789,13,86657,9.08327246,29.17164532,15.00167326,,,,,,,,,,,,,,,,,,,12.69372353,11,86657,6.336661051,22.71257776,,,,,,,,,,,,,,,,,,,18.99696049,23,121072,12.04244337,28.50476815,,,,,,,,,,,,,21.21202232,11.29450852,36.27320419,,,,10,,1400,,,5,9,0.472860447,6133,12970,,,0.458,,,,,15.01312349,,,,,0.784324423,4313,5499,0.75772999,0.810918855,0.112304688,575,5120,0.071896133,0.152713242,0.735224586,4043,5499,0.692530566,0.777918606,17049,,,,,0.211859933,3612,17049,,,0.191741451,3269,17049,,,0.216962872,3699,17049,,,0.013079946,223,17049,,,0.006510646,111,17049,,,0.002346179,40,17049,,,0.260836413,4447,17049,,,0.497624494,8484,17049,,,0.0160911,260,16158,0.004586753,0.027595448,0.519854537,8863,17049,,,0.681989628,11572,16968,, -48,147,48147,TX,Fannin County,2024,1,9268.794685,713,99566,8178.142634,10359.44674,0,,,,2,,,,2,8132.487869,3899.84404,14955.93474,1,5799.717605,3542.618186,8957.193456,1,10047.53568,8730.700469,11364.37088,,,,,2,,0.185,,,0.157,0.215,3.981546084,,,3.136482461,4.923141589,5.70463292,,,4.596756269,6.868153712,0.083165119,206,2477,0.072290621,0.094039618,0,,,,,,,0.156862745,0.086285447,0.227440044,0.084951456,0.058028984,0.111873929,0.07873594,0.066518999,0.090952881,,,,,,,0.189,,,0.151,0.23,0.39,,,0.31,0.476,6.6,0.129970296,0.138,,,0.256,,,0.209,0.308,0.335763558,11974,35662,,,0.184820056,,,0.148257051,0.22637526,0.285714286,16,56,0.216193704,0.357298714,177.7,65,36569,,,26.80235058,187,6977,22.96078588,30.64391528,,,,,,,43.77104377,23.30623734,74.84981791,30.01715266,20.90804666,41.74659294,26.04366143,21.66653937,30.4207835,,,,,,,0.199571983,5502,27569,0.179316664,0.219827302,0.000191419,7,36569,,,5224.142857,0.000242424,9,37125,,,4125,0.001050505,39,37125,,,951.9230769,4356,,,,,,,6972,,4358,0.38,,,,,,,0.48,0.53,0.38,0.4,,,,,0.6,,0.35,0.28,0.4,0.857199351,21676,25287,0.839833738,0.874564965,0.488171114,4519,9257,0.43337646,0.542965768,0.03481213,605,17379,,,0.178,1386,,0.112468085,0.243531915,,,,,,,0.479591837,0.249961714,0.70922196,0.144292893,0.062572305,0.226013481,0.110782319,0.071254717,0.150309921,4.952804954,135167,27291,4.448681084,5.456928824,0.196101518,1499,7644,0.148149851,0.244053184,9.84440373,36,36569,,,91.15052215,162,177728,77.11405786,105.1869864,,,,,,,88.84150675,42.60295572,163.3826941,56.33273871,29.10794812,98.40195779,98.70601458,82.17728766,115.2347415,,,,8.9,,,,,0,,,,,0.131154157,1625,12390,0.107017068,0.155291245,0.096668038,0.07412995,0.119206126,0.024213075,0.014665466,0.033760685,0.01614205,0.008050073,0.024234027,0.768480249,11342,14759,0.738748951,0.798211547,,,,,,,,,,0.640308582,0.535993948,0.744623217,0.718528832,0.672320608,0.764737055,0.499,,14759,0.44568834,0.55231166,74.35911995,,,73.52131033,75.19692958,,,,,,,74.69030488,70.31918864,79.06142111,81.94215172,77.62700925,86.25729419,73.63954493,72.68433552,74.59475434,,,,511.7758951,713,99566,472.5985871,550.9532032,,,,,,,507.0730234,349.0457374,712.1190527,221.4141719,137.0588622,338.4550816,545.8349925,500.6587938,591.0111911,,,,56.54593613,19,33601,34.04434738,88.30348374,,,,,,,,,,,,,53.88601036,28.69203105,92.14671883,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.122,,,0.105,0.141,0.18,,,0.156,0.205,0.106,,,0.09,0.123,211.2,66,31248,,,0.138,4880,,,,0.129970296,4407.942574,33915,,,15.74132375,17,107996,9.169901172,25.20338421,,,,,,,,,,,,,16.68752607,9.12322579,27.99883321,,,,0.347,,,0.332,0.362,0.23259334,4610,19820,0.206380574,0.258806106,0.119275043,974,8166,0.08829632,0.150253766,0.000484849,18,37125,,,2062.5,0.928108466,350.825,378,,,,,,,,2.969284995,,,,,,,2.739290884,2.633193459,3.106585519,3.059448407,,,,,,,2.630670553,2.861808334,3.187226414,0.065140501,,,,,-4427.038799,,,,,0.768769386,44860,58353,0.678463375,0.859075398,60959,,,55232.70213,66685.29787,29583,18224.53192,40941.46809,,,,26250,12787.3617,39712.6383,59274,31842.34043,86705.65957,68337,63702.10638,72971.89362,,,,,,0.52833935,2927,5540,,,52.44747084,,,,,0.265211044,,60959,,,3.370786517,6,1780,,,4.074116324,10,245452,1.953697137,7.492444976,,,,,,,,,,,,,,,,,,,21.43671379,39,177728,15.09342481,29.54768619,21.94364422,,,,,,,,,,,,,24.87382325,17.01367669,35.11441676,,,,18.00504141,32,177728,12.315435,25.41774626,,,,,,,,,,,,,21.61445575,14.58318253,30.85597956,,,,33.00034223,81,245452,26.20703518,41.01641224,,,,,,,,,,34.97726478,16.77295801,64.32443526,31.69654456,24.24534506,40.7155375,,,,7.575757576,,3300,,,5,20,0.563220116,15007,26645,,,0.564,,,,,7.915480953,,,,,0.750295299,9528,12699,0.727410164,0.773180434,0.106446281,1288,12100,0.081599131,0.131293431,0.800299236,10163,12699,0.777117967,0.823480505,37125,,,,,0.212282828,7881,37125,,,0.17837037,6622,37125,,,0.064161616,2382,37125,,,0.014626263,543,37125,,,0.008323232,309,37125,,,0.001023569,38,37125,,,0.136242424,5058,37125,,,0.761131313,28257,37125,,,0.0168131,576,34259,0.009921109,0.023705091,0.465373737,17277,37125,,,0.781307835,27863,35662,, -48,149,48149,TX,Fayette County,2024,1,8898.258271,412,66678,7387.641376,10408.87517,0,,,,2,,,,2,24103.43404,14723.0037,37225.79896,1,7972.064961,5416.631362,11315.70986,,8031.632756,6291.579572,9771.68594,,,,,2,,0.173,,,0.147,0.203,3.703893961,,,2.903050164,4.602352153,5.309391937,,,4.232564914,6.463377253,0.075794621,124,1636,0.062969311,0.088619931,0,,,,,,,0.172413793,0.103672183,0.241155404,0.065055762,0.04421562,0.085895904,0.070512821,0.054111686,0.086913955,,,,,,,0.164,,,0.13,0.199,0.363,,,0.283,0.447,7.8,0.055955412,0.117,,,0.248,,,0.204,0.299,0.519459791,12693,24435,,,0.168407921,,,0.133819397,0.207107786,0.12,9,75,0.069761241,0.181727807,198.5,49,24687,,,19.1069992,95,4972,15.45870335,23.35731569,,,,,,,27.27272727,14.09221616,47.63996602,24.33628319,17.68278062,32.67032427,12.25114855,8.379776536,17.29496634,,,,,,,0.204948957,3694,18024,0.183502148,0.226395766,0.000324057,8,24687,,,3085.875,0.000521816,13,24913,,,1916.384615,0.000441537,11,24913,,,2264.818182,2681,,,,,,,9573,,2289,0.4,,,,,,,0.33,0.34,0.41,0.44,,,,,,,0.32,0.32,0.45,0.898916968,16185,18005,0.879348282,0.918485653,0.534771216,2653,4961,0.459282162,0.610260269,0.034638554,414,11952,,,0.154,753,,0.096808511,0.211191489,,,,,,,0.441791045,0.223652778,0.659929311,0.164398476,0.069270757,0.259526194,0.061756809,0.024291247,0.09922237,4.463309816,124629,27923,3.642141359,5.284478273,0.204276986,1003,4910,0.146594319,0.261959652,20.65864625,51,24687,,,85.5777688,108,126201,69.4377085,101.7178291,,,,,,,134.1741581,64.34172409,246.7510538,54.66870763,30.59766066,90.16771948,93.07854484,74.1365414,115.3848605,,,,9.3,,,,,1,,,,,0.104593249,945,9035,0.073900654,0.135285843,0.08726442,0.05819967,0.116329171,0.014388489,0.004328738,0.024448241,0.006530161,0,0.013333928,0.845208159,9075,10737,0.804991803,0.885424515,,,,,,,,,,0.86701728,0.750115939,0.983918622,0.826147043,0.76342857,0.888865515,0.197,,10737,0.159435003,0.234564997,77.43368664,,,76.22291935,78.64445393,,,,,,,,,,77.55383335,74.59100419,80.51666252,78.1644963,76.76077414,79.56821847,,,,398.6150347,412,66678,354.92496,442.3051095,,,,,,,1044.698204,762.0100384,1397.888391,379.0166074,283.0677311,497.029855,369.531301,319.3193462,419.7432557,,,,58.39547211,13,22262,31.09312951,99.85803575,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.113,,,0.097,0.13,0.169,,,0.145,0.192,0.1,,,0.084,0.117,150.2,32,21302,,,0.117,2860,,,,0.055955412,1373.929179,24554,,,,,,,,,,,,,,,,,,,,,,,,,,0.353,,,0.338,0.368,0.223562648,2928,13097,0.197349882,0.249775414,0.159969237,832,5201,0.121841577,0.198096896,0.000722514,18,24913,,,1384.055556,0.956707317,274.575,287,,,,,,,,2.979756148,,,,,,,,2.682241576,3.287106269,3.182404331,,,,,,,,2.914817735,3.476356419,0.041028166,,,,,-3082.53964,,,,,0.78996626,39334,49792,0.649426759,0.93050576,70476,,,63975.23404,76976.76596,,,,,,,18310,6049.574468,30570.42553,73186,63264.46809,83107.53192,76452,70748.34043,82155.65957,,,,,,0.508192318,1892,3723,,,34.7108427,,,,,0.283472388,,70476,,,7.588532884,9,1186,,,,,,,,,,,,,,,,,,,,,,,,,,11.86979017,16,126201,6.320163354,20.29770268,12.67818797,,,,,,,,,,,,,15.91580647,7.945113244,28.47777417,,,,13.47057472,17,126201,7.84710618,21.56769504,,,,,,,,,,,,,17.94285202,10.25589025,29.13806755,,,,24.93482942,44,176460,18.11768523,33.47384466,,,,,,,,,,26.47323556,12.69494546,48.68522275,20.77822442,13.57302604,30.444913,,,,15,,2200,,,7,26,0.674889179,12941,19175,,,0.527,,,,,21.2359935,,,,,0.813104189,7570,9310,0.793799624,0.832408754,0.094597649,837,8848,0.067359167,0.121836131,0.72244898,6726,9310,0.680644142,0.764253817,24913,,,,,0.198852005,4954,24913,,,0.269417573,6712,24913,,,0.05503151,1371,24913,,,0.014530566,362,24913,,,0.006502629,162,24913,,,0.000923213,23,24913,,,0.224541404,5594,24913,,,0.700919199,17462,24913,,,0.020230101,473,23381,0.007360983,0.03309922,0.506241721,12612,24913,,,0.794556988,19415,24435,, -48,151,48151,TX,Fisher County,2024,1,10246.85367,77,10030,6752.741135,14908.63411,0,,,,2,,,,2,,,,2,10952.93033,5008.377202,20792.07354,1,10383.7834,6048.936487,16625.44312,1,,,,2,,0.18,,,0.155,0.207,3.75627497,,,3.042119199,4.560373623,5.227213699,,,4.239162879,6.306218197,0.125523013,30,239,0.083518786,0.167527239,0,,,,,,,,,,0.132530121,0.059584114,0.205476127,0.103448276,0.053877996,0.153018556,,,,,,,0.165,,,0.133,0.2,0.372,,,0.292,0.461,7.6,0.036718416,0.136,,,0.259,,,0.212,0.309,0.416394336,1529,3672,,,0.171098807,,,0.151885842,0.192340051,0.333333333,2,6,0.110000414,0.553214291,161.9,6,3706,,,34.04255319,24,705,21.81170618,50.6526207,,,,,,,,,,,,,33.17535545,18.13727554,55.66260929,,,,,,,0.175757576,493,2805,0.153119278,0.198395874,0.000539665,2,3706,,,1853,0.000276091,1,3622,,,3622,,0,3622,,,,2042,,,,,,,,3380,1123,0.31,,,,,,,,0.29,0.32,0.11,,,,,,,,0.06,0.11,0.861579755,2247,2608,0.813791335,0.909368174,0.594002307,515,867,0.495270179,0.692734435,0.034734918,57,1641,,,0.247,195,,0.175510638,0.318489362,,,,,,,,,,0.202614379,0.049315367,0.355913391,0.084158416,0.021440277,0.146876555,4.354161025,112542,25847,3.775473006,4.932849043,0.195153061,153,784,0.089515144,0.300790978,21.5866163,8,3706,,,89.29040391,17,19039,52.01495073,142.9625864,,,,,,,,,,,,,96.52509653,49.87592591,168.6099183,,,,7.2,,,,,1,,,,,0.065671642,110,1675,0.035140193,0.096203091,0.043975904,0.007524188,0.08042762,0.011940299,0,0.033823166,0.011343284,0,0.026970372,0.830451757,1489,1793,0.793286971,0.867616542,,,,,,,,,,0.72481203,0.693181399,0.756442661,0.8046875,0.747697769,0.861677231,0.318,,1793,0.246689586,0.389310414,75.06064399,,,72.15158504,77.96970293,,,,,,,,,,,,,74.24289089,70.61381857,77.87196321,,,,517.9960144,77,10030,398.0423601,662.7419206,,,,,,,,,,541.8252347,321.1199732,856.3174658,523.127075,378.5896581,704.648737,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.116,,,0.1,0.133,0.169,,,0.147,0.193,0.106,,,0.09,0.123,159.6,5,3132,,,0.136,510,,,,0.036718416,145.9189845,3974,,,,,,,,,,,,,,,,,,,,,,,,,,0.339,,,0.324,0.353,0.196563921,389,1979,0.169159666,0.223968177,0.127610209,110,862,0.090674039,0.164546379,0.000828272,3,3622,,,1207.333333,,,,,,,,,,,2.782610575,,,,,,,,,2.708872102,2.960012927,,,,,,,,,2.718815015,0.036024501,,,,,-2283.528,,,,,0.680330499,33924,49864,0.544866446,0.815794552,57867,,,51008.78723,64725.21277,,,,,,,,,,43984,30990.80851,56977.19149,64760,50929.19149,78590.80851,,,,,,0.589160839,337,572,,,,,,,,0.239272815,,57867,,,3.831417625,1,261,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,300,,,0,-888,0.614814815,1826,2970,,,0.454,,,,,0.116665166,,,,,0.790620872,1197,1514,0.732483435,0.848758308,0.071791153,99,1379,0.020584293,0.122998013,0.775429326,1174,1514,0.738210619,0.812648033,3622,,,,,0.220596356,799,3622,,,0.246272778,892,3622,,,0.037548316,136,3622,,,0.013804528,50,3622,,,0.004417449,16,3622,,,0,0,3622,,,0.299282165,1084,3622,,,0.638045279,2311,3622,,,0.029616725,102,3444,0.001493169,0.057740281,0.496134732,1797,3622,,,1,3672,3672,, -48,153,48153,TX,Floyd County,2024,1,11471.69967,114,15164,8266.374668,14677.02466,0,,,,2,,,,2,,,,2,12390.80355,8580.991657,17314.90599,,9220.739705,4909.655551,15767.74572,1,,,,2,,0.223,,,0.194,0.257,4.119529263,,,3.328601184,4.996917674,5.260056089,,,4.28198957,6.368119978,0.08436214,41,486,0.059652091,0.109072189,0,,,,,,,,,,0.097178683,0.06467391,0.129683456,0.063694268,0.025494101,0.101894434,,,,,,,0.163,,,0.134,0.197,0.399,,,0.318,0.488,7.7,0.044818081,0.126,,,0.306,,,0.255,0.359,0.762125139,4117,5402,,,0.166712823,,,0.13442933,0.206582251,0.125,1,8,0.007330353,0.353459145,336.4,18,5350,,,32.66518189,44,1347,23.73457116,43.85148202,,,,,,,,,,34.81624758,24.38487178,48.20036218,,,,,,,,,,0.257009346,1100,4280,0.229605091,0.284413601,0.000560748,3,5350,,,1783.333333,0.000191022,1,5235,,,5235,0.000191022,1,5235,,,5235,2722,,,,,,,,1506,1310,0.3,,,,,,,,0.29,0.3,0.25,,,,,,,,0.2,0.24,0.712442661,2485,3488,0.655662995,0.769222326,0.447007931,620,1387,0.345349798,0.548666064,0.041107041,101,2457,,,0.318,431,,0.198851064,0.437148936,,,,,,,0.692307692,0.255851123,1,0.240631164,0.129330385,0.351931942,,,,6.034566172,94797,15709,4.358858168,7.710274176,0.268223638,379,1413,0.13699288,0.399454395,18.69158879,10,5350,,,73.87602899,21,28426,45.73042631,112.9273578,,,,,,,,,,,,,127.1145008,67.68311813,217.3696677,,,,6.4,,,,,0,,,,,0.114416476,250,2185,0.068192785,0.160640167,0.043035632,0.005715707,0.080355556,0.049885584,0.016697105,0.083074062,0.01784897,0,0.043354723,0.809785094,1771,2187,0.72889331,0.890676878,,,,,,,,,,0.767705382,0.63517212,0.900238645,0.802211302,0.706608583,0.897814022,0.298,,2187,0.198056838,0.397943162,72.79379691,,,70.43285279,75.15474104,,,,,,,,,,72.67311864,69.28444319,76.06179409,73.98080605,70.23453601,77.72707608,,,,591.0576865,114,15164,478.096003,704.0193701,,,,,,,,,,613.3954809,463.3523543,796.5450534,529.0357103,376.1961065,723.2092316,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.129,,,0.113,0.147,0.17,,,0.149,0.193,0.127,,,0.11,0.146,136.3,6,4403,,,0.126,690,,,,0.044818081,288.8973491,6446,,,,,,,,,,,,,,,,,,,,,,,,,,0.357,,,0.343,0.37,0.305555556,891,2916,0.269810875,0.341300236,0.156944444,226,1440,0.117625296,0.196263593,0.00095511,5,5235,,,1047,,,,,,,,,,,2.438495607,,,,,,,,2.325431818,,2.544549305,,,,,,,,2.464276171,,0.020762978,,,,,-2353.8175,,,,,0.574756126,29931,52076,0.307675526,0.841836725,45784,,,38838.80851,52729.19149,,,,,,,,,,47973,38213.51064,57732.48936,62167,36455.85106,87878.14894,,,,,,0.779874214,868,1113,,,45.70781427,,,,,0.3238686,,45784,,,5.83090379,2,343,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,600,,,-888,8,0.521483376,2039,3910,,,0.451,,,,,0.064949085,,,,,0.695562436,1348,1938,0.633614528,0.757510343,0.097906056,173,1767,0.026069204,0.169742907,0.757997936,1469,1938,0.699809098,0.816186775,5235,,,,,0.260936008,1366,5235,,,0.185482331,971,5235,,,0.0330468,173,5235,,,0.015472779,81,5235,,,0.006112703,32,5235,,,0.000573066,3,5235,,,0.596370583,3122,5235,,,0.353008596,1848,5235,,,0.064196552,324,5047,0.029592073,0.098801031,0.499522445,2615,5235,,,1,5402,5402,, -48,155,48155,TX,Foard County,2024,1,9955.775558,32,2855,5144.29451,17390.73634,1,,,,2,,,,2,,,,2,,,,2,11553.67221,4988.055605,22765.34016,1,,,,2,,0.237,,,0.202,0.278,4.623680847,,,3.746944735,5.550268232,5.971023858,,,4.846629956,7.135384492,,,,,,0,,,,,,,,,,,,,,,,,,,,,,0.221,,,0.179,0.266,0.396,,,0.311,0.482,3.5,0.412964313,0.146,,,0.312,,,0.258,0.374,0.003652968,4,1095,,,0.141637461,,,0.111528086,0.176327825,0,0,1,0,0.662081041,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.190839695,150,786,0.163435439,0.21824395,0,0,1080,,,-1080,0,0,1057,,,-1057,,0,1057,,,,1678,,,,,,,,,1417,0.19,,,,,,,,,0.2,0.3,,,,,,,,,0.32,0.803724928,561,698,0.737592972,0.869856885,0.43902439,54,123,0,0.883186722,0.03202847,18,562,,,0.276,60,,0.172340426,0.379659575,,,,,,,,,,,,,,,,5.333544384,84238,15794,0,10.90671966,0.65625,147,224,0.249175399,1,0,0,1080,,,,,,,,,,,,,,,,,,,,,,,,,,6.8,,,,,1,,,,,0.098039216,50,510,0.015340672,0.180737759,0.066666667,0,0.181060847,0.007843137,0,0.064523948,0.02745098,0,0.074831279,0.634,317,500,0.567955286,0.700044714,,,,,,,,,,,,,,,,0.207,,500,0.073910052,0.340089948,,,,,,,,,,,,,,,,,,,,,,,,676.4059356,32,2855,445.7557737,984.1351236,,,,,,,,,,,,,740.6857786,458.496171,1132.216892,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.148,,,0.128,0.171,0.204,,,0.177,0.233,0.129,,,0.111,0.15,,,,,,0.146,160,,,,0.412964313,551.7203222,1336,,,,,,,,,,,,,,,,,,,,,,,,,,0.361,,,0.347,0.374,0.211908932,121,571,0.17854723,0.245270634,0.128318584,29,226,0.086616456,0.170020712,0.000946074,1,1057,,,1057,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-11836.87,,,,,0.781965185,35398,45268,0.271637777,1.292292593,47657,,,40931.04255,54382.95745,,,,,,,,,,36667,5663.255319,67670.74468,53583,38952.70213,68213.29787,,,,,,0.729166667,140,192,,,,,,,,0.293346203,,47657,,,14.92537313,1,67,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,100,,,0,-888,0.565128205,551,975,,,0.318,,,,,0.001091218,,,,,0.681818182,315,462,0.564245515,0.799390849,0.150561798,67,445,0,0.311334665,0.651515152,301,462,0.555136051,0.747894252,1057,,,,,0.206244087,218,1057,,,0.257332072,272,1057,,,0.05487228,58,1057,,,0.00756859,8,1057,,,0.010406812,11,1057,,,0,0,1057,,,0.210974456,223,1057,,,0.701986755,742,1057,,,0.000969932,1,1031,0,0.068266666,0.527909177,558,1057,,,1,1095,1095,, -48,157,48157,TX,Fort Bend County,2024,1,5014.41242,6802,2410030,4839.131528,5189.693311,0,,,,2,2860.240082,2570.507142,3149.973022,,7830.699272,7330.148419,8331.250125,,4707.107315,4384.447508,5029.767121,,4931.942128,4618.817809,5245.066447,,,,,2,,0.141,,,0.122,0.163,2.836574136,,,2.225471515,3.533744272,4.261361643,,,3.431342608,5.172096303,0.086206107,5649,65529,0.084057127,0.088355088,0,,,,0.095361912,0.090536009,0.100187814,0.116672396,0.111455116,0.121889676,0.077706294,0.07378169,0.081630897,0.062283737,0.058745114,0.065822361,,,,0.086675291,0.066840548,0.106510034,0.109,,,0.087,0.136,0.3,,,0.242,0.363,8.3,0.059138341,0.091,,,0.229,,,0.192,0.274,0.886307259,729235,822779,,,0.168627167,,,0.136065838,0.204250305,0.233160622,45,193,0.196864483,0.270947051,261.4,2244,858527,,,8.190171794,1681,205246,7.79864163,8.581701958,,,,0.642243571,0.411497574,0.955607525,9.528767371,8.618536108,10.43899864,15.63549161,14.65555454,16.61542867,4.148018775,3.609588637,4.686448914,,,,4.79829394,3.162105941,6.981265762,0.13726476,101837,741902,0.126541356,0.147988164,0.000846799,727,858527,,,1180.917469,0.000581457,517,889146,,,1719.818182,0.001078563,959,889146,,,927.1595412,2830,,,,,,1631,4062,3336,2531,0.37,,,,,,0.38,0.37,0.29,0.39,0.48,,,,,0.42,0.54,0.34,0.39,0.51,0.91471639,490320,536035,0.908893591,0.920539189,0.770772204,173897,225614,0.747003963,0.794540445,0.039238121,16427,418649,,,0.095,22218,,0.071170213,0.118829787,0.305825243,0.021348248,0.590302237,0.050095255,0.035906103,0.064284406,0.126941866,0.100445296,0.153438436,0.120546804,0.098703155,0.142390452,0.039464211,0.02243747,0.056490952,3.995819348,198804,49753,3.820748228,4.170890467,0.163234437,36692,224781,0.148114536,0.178354338,4.752325786,408,858527,,,39.58049597,1608,4062607,37.64588217,41.51510977,,,,21.20704832,18.10027347,24.31382318,48.85238897,44.10620385,53.59857408,30.09872381,26.72076591,33.47668172,54.35183496,50.32539468,58.37827524,,,,10.7,,,,,1,,,,,0.139166331,34555,248300,0.129991408,0.148341254,0.109626591,0.100590102,0.118663081,0.031111559,0.026679998,0.035543119,0.00688683,0.004903352,0.008870309,0.747156523,294293,393884,0.737434898,0.756878149,0.793422405,0.626051154,0.960793656,0.517502016,0.481858685,0.553145347,0.7082978,0.688243257,0.728352342,0.72522052,0.698690242,0.751750798,0.681409295,0.658432976,0.704385615,0.578,,393884,0.557362799,0.598637201,81.40004882,,,81.17097242,81.62912523,,,,87.58956214,86.76062141,88.41850287,78.19484506,77.63591882,78.75377131,82.77393084,82.1237836,83.42407808,80.42435733,80.09585625,80.75285842,,,,252.4656209,6802,2410030,246.4054593,258.5257824,,,,145.5596413,135.582553,155.5367297,357.0137916,341.1418734,372.8857098,244.5045639,230.9423188,258.0668091,262.2335149,251.7900051,272.6770248,,,,35.0610766,344,981145,31.35595814,38.76619506,,,,25.28497195,18.70596145,33.42807385,63.50902483,52.41967095,74.59837872,31.32247722,25.15452122,38.5450035,28.51429418,22.50303505,35.6379753,,,,4.371651057,288,65879,3.86675112,4.876550995,,,,2.96819788,2.139215953,4.012141256,7.468766975,6.073013755,8.864520195,3.970054447,3.094852207,5.015924956,3.358613218,2.575029496,4.305590568,,,,,,,0.086,,,0.075,0.1,0.134,,,0.116,0.154,0.107,,,0.092,0.124,263.9,1842,698058,,,0.091,73250,,,,0.059138341,34618.10661,585375,,,8.167587745,205,2509921,7.049507563,9.285667927,,,,3.404487114,2.017714829,5.380557403,10.97855522,8.315050514,14.22399169,6.650031034,4.792757441,8.988910088,11.18857377,8.961588924,13.8010644,,,,0.363,,,0.352,0.375,0.161592082,83037,513868,0.148485699,0.174698465,0.087519163,20952,239399,0.070838312,0.104200014,0.000854753,760,889146,,,1169.928947,0.940987914,14792.33,15720,,,0.058323709,2828,48488,0.042613723,0.074033695,3.251048785,,,,,,3.684013437,2.825003295,2.90476076,3.554331875,3.504706593,,,,,,4.18983777,3.006866486,3.148411284,3.719555517,0.142897651,,,,,-4153.7304,,,,,0.72972671,58770,80537,0.703254677,0.756198742,105583,,,101581.9787,109584.0213,79452,48003.82979,110900.1702,133378,126479.2766,140276.7234,88533,82722.10638,94343.89362,84304,76718.97872,91889.02128,130735,125864.1915,135605.8085,,,,,,0.430135546,76097,176914,,,48.02945913,,,,,0.182093708,,105583,,,5.508706397,292,53007,,,4.637739131,256,5519931,4.069616088,5.205862175,,,,1.419602582,0.811425534,2.305345655,12.59966602,10.52727867,14.67205337,3.809094066,2.84481364,4.995120092,2.572148773,1.883136177,3.430886011,,,,10.55696248,421,4062607,9.532532742,11.58139221,10.36280398,,,,5.531781556,4.049959349,7.37862139,5.981245396,4.410098189,7.930263639,7.201999741,5.614312118,9.099293403,18.03526912,15.67938855,20.39114969,,,,10.73202503,436,4062607,9.724642292,11.73940776,,,,3.554253909,2.398040187,5.073918458,15.60395716,12.92158431,18.28633001,7.302641188,5.734144016,9.167797277,15.14086831,13.01571851,17.26601811,,,,6.648633833,367,5519931,5.968404345,7.32886332,,,,2.927930326,2.015452514,4.111902771,9.760304664,7.936311934,11.58429739,7.911195367,6.419135314,9.40325542,6.374455655,5.204291609,7.544619701,,,,7.336842105,,95000,,,271,426,0.735898069,357514,485820,,,0.715,,,,,80.65653638,,,,,0.777238132,209960,270136,0.768087375,0.786388889,0.125031269,32988,263838,0.115597017,0.134465521,0.943713537,254931,270136,0.937328495,0.950098578,889146,,,,,0.264904751,235539,889146,,,0.125316877,111425,889146,,,0.211500698,188055,889146,,,0.006523113,5800,889146,,,0.221421454,196876,889146,,,0.001069566,951,889146,,,0.255312401,227010,889146,,,0.292710084,260262,889146,,,0.050167091,39121,779814,0.046348517,0.053985665,0.505888797,449809,889146,,,0.047980077,39477,822779,, -48,159,48159,TX,Franklin County,2024,1,9847.599459,205,29039,7561.50856,12133.69036,0,,,,2,,,,2,,,,2,,,,2,10081.46962,7383.710093,12779.22915,,,,,2,,0.147,,,0.124,0.175,3.39581152,,,2.599699297,4.23101783,4.989061713,,,4.007099811,5.993367477,0.074263764,58,781,0.055874572,0.092652957,0,,,,,,,,,,0.075144509,0.035860248,0.114428769,0.073476703,0.051827497,0.095125909,,,,,,,0.148,,,0.114,0.182,0.332,,,0.257,0.418,6.2,0.207860488,0.119,,,0.217,,,0.175,0.263,0.237185057,2457,10359,,,0.189597333,,,0.151819592,0.232694822,0.444444444,4,9,0.264827841,0.599456043,191.1,20,10464,,,24.08111534,57,2367,18.23880159,31.19987808,,,,,,,,,,,,,23.66127024,16.74412307,32.47694204,,,,,,,0.155936353,1274,8170,0.133298055,0.17857465,0.000286697,3,10464,,,3488,0.000376719,4,10618,,,2654.5,0.000470899,5,10618,,,2123.6,1979,,,,,,,15440,,1777,0.31,,,,,,,,,0.32,0.41,,,,,,,0.55,,0.41,0.914983625,6705,7328,0.885578001,0.944389248,0.658015906,1572,2389,0.527921203,0.78811061,0.032456631,174,5361,,,0.199,463,,0.12393617,0.27406383,,,,,,,,,,0.038664323,0,0.110887533,0.161048689,0.063774769,0.258322609,4.32314142,154682,35780,3.337791137,5.308491702,0.148163434,359,2423,0.05721216,0.239114708,10.51223242,11,10464,,,74.70631082,40,53543,53.37128372,101.7287917,,,,,,,,,,,,,84.07600471,58.56201783,116.9293698,,,,8.9,,,,,0,,,,,0.098484849,390,3960,0.05904848,0.137921217,0.057323232,0.029374652,0.085271813,0.035353535,0.007914296,0.062792775,0.016414141,0.001770809,0.031057474,0.708843841,3182,4489,0.632983907,0.784703774,,,,,,,,,,0.707831325,0.561654518,0.854008133,0.687544232,0.576845918,0.798242547,0.378,,4489,0.279307562,0.476692438,75.96670469,,,74.11162794,77.82178144,,,,,,,,,,,,,75.57600409,73.5098433,77.64216488,,,,479.0963127,205,29039,407.8960078,550.2966176,,,,,,,,,,,,,483.4019051,402.4001644,564.4036458,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.103,,,0.088,0.12,0.163,,,0.141,0.188,0.089,,,0.075,0.104,249.7,22,8811,,,0.119,1240,,,,0.207860488,2204.36048,10605,,,,,,,,,,,,,,,,,,,,,,,,,,0.335,,,0.32,0.35,0.185255854,1068,5765,0.15666011,0.213851599,0.088432689,224,2533,0.058645455,0.118219923,0.000376719,4,10618,,,2654.5,0.975,92.625,95,,,,,,,,2.728552575,,,,,,,,2.641483466,2.801239455,2.756751379,,,,,,,,2.859319734,2.788995017,0.002725749,,,,,-4307.108,,,,,0.956404423,54231,56703,0.59128672,1.321522126,56623,,,48355.25532,64890.74468,,,,,,,48516,30325.53192,66706.46809,65846,46622.51064,85069.48936,69167,63464.53192,74869.46809,,,,,,0.621073298,949,1528,,,70.67577733,,,,,0.23743002,,56623,,,5.145797599,3,583,,,,,,,,,,,,,,,,,,,,,,,,,,19.10911497,10,53543,8.737904183,36.27505259,18.6765777,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,34.7588936,26,74801,22.70566331,50.9298326,,,,,,,,,,,,,41.06073567,26.30838812,61.09511992,,,,,,1100,,,-888,9,0.650519481,5009,7700,,,0.46,,,,,11.10081679,,,,,0.800898995,3029,3782,0.744040711,0.85775728,0.055055874,202,3669,0.023167981,0.086943766,0.902168165,3412,3782,0.854317681,0.950018649,10618,,,,,0.221699002,2354,10618,,,0.22546619,2394,10618,,,0.045017894,478,10618,,,0.012996798,138,10618,,,0.011489923,122,10618,,,0.001130156,12,10618,,,0.157845169,1676,10618,,,0.761819552,8089,10618,,,0.022102871,214,9682,0.005361106,0.038844637,0.499811641,5307,10618,,,1,10359,10359,, -48,161,48161,TX,Freestone County,2024,1,11114.87664,382,54199,9349.546762,12880.20651,0,,,,2,,,,2,14294.03733,9839.357585,20074.14287,,8571.131251,5371.482322,12976.79572,1,11339.96976,9022.416265,13657.52326,,,,,2,,0.199,,,0.172,0.226,4.08552208,,,3.29650743,4.988986967,5.480143275,,,4.421435564,6.648222721,0.071525886,105,1468,0.058343028,0.084708743,0,,,,,,,0.12972973,0.081310594,0.178148866,0.066666667,0.041419468,0.091913865,0.058072009,0.042449645,0.073694374,,,,,,,0.195,,,0.159,0.231,0.384,,,0.304,0.467,6.8,0.087157286,0.15,,,0.277,,,0.231,0.327,0.417236944,8109,19435,,,0.178121439,,,0.142687801,0.219411536,0.08,4,50,0.029367747,0.155366813,247.8,49,19774,,,27.39405292,117,4271,22.43019398,32.35791185,,,,,,,,,,34.93862134,24.60001376,48.1582872,26.24363494,20.33845661,33.32848869,,,,,,,0.209081383,2993,14315,0.185251596,0.23291117,0.000303429,6,19774,,,3295.666667,0.000300752,6,19950,,,3325,0.000250627,5,19950,,,3990,3907,,,,,,,4185,,3776,0.35,,,,,,,0.34,0.42,0.35,0.3,,,,,,,0.22,0.37,0.31,0.849758489,11787,13871,0.821457975,0.878059003,0.49783805,2533,5088,0.416732358,0.578943743,0.053404961,338,6329,,,0.191,828,,0.119510638,0.262489362,,,,,,,0.259649123,0.083074036,0.43622421,0.125,0.043822616,0.206177384,0.105241936,0.03779989,0.172683981,5.394936709,123598,22910,3.776807356,7.013066062,0.206637872,909,4399,0.138195096,0.275080649,11.12572064,22,19774,,,92.10712768,91,98798,74.15891364,113.0871424,,,,,,,113.5149573,66.12664576,181.748443,,,,100.7479774,77.91847843,128.1761295,,,,9,,,,,0,,,,,0.127691166,860,6735,0.090883276,0.164499056,0.091716868,0.062590707,0.120843028,0.035486266,0.02035125,0.050621281,0.005790646,0,0.013552427,0.858598726,6066,7065,0.815578332,0.901619121,,,,,,,,,,0.783962264,0.654591994,0.913332534,0.856353591,0.780360931,0.932346251,0.444,,7065,0.376694033,0.511305968,74.74834156,,,73.36775314,76.12892999,,,,,,,70.87443847,67.3927061,74.35617084,80.95371772,73.19271937,88.71471606,74.71912471,72.97757077,76.46067865,,,,518.755186,382,54199,463.7498166,573.7605554,,,,,,,709.7582528,558.26989,889.6881159,363.4320653,232.8577819,540.7581051,515.2372029,447.5508923,582.9235136,,,,90.88613986,18,19805,53.86488655,143.6392844,,,,,,,,,,,,,105.4574216,54.4913886,184.2128926,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.126,,,0.109,0.144,0.181,,,0.157,0.205,0.115,,,0.099,0.133,462.1,77,16664,,,0.15,2930,,,,0.087157286,1727.108777,19816,,,,,,,,,,,,,,,,,,,,,,,,,,0.372,,,0.359,0.385,0.248090836,2469,9952,0.217112113,0.279069559,0.124266783,572,4603,0.089713591,0.158819974,0.000601504,12,19950,,,1662.5,0.92816092,242.25,261,,,,,,,,2.728799779,,,,,,,2.41580569,2.57552198,2.877430312,3.022583252,,,,,,,2.811408611,2.899113656,3.153138321,0.014153555,,,,,-3391.658175,,,,,0.681856666,41073,60237,0.628937018,0.734776314,56372,,,49051.48936,63692.51064,,,,,,,52656,26996.08511,78315.91489,60337,49851.89362,70822.10638,67679,54773.97872,80584.02128,,,,,,0.637524837,2246,3523,,,20.35574884,,,,,0.24235436,,56372,,,6.306306306,7,1110,,,,,,,,,,,,,,,,,,,,,,,,,,24.38278193,24,98798,15.28055962,36.91582486,24.29198972,,,,,,,,,,,,,28.70769715,16.7232915,45.9638041,,,,21.255491,21,98798,13.15748394,32.49127587,,,,,,,,,,,,,22.89726759,12.81542686,37.76556079,,,,28.96179216,40,138113,20.69072893,39.43774081,,,,,,,,,,,,,31.54196713,21.12415042,45.29952626,,,,,,1900,,,-888,5,0.59787234,8711,14570,,,0.438,,,,,10.6250512,,,,,0.760632741,5097,6701,0.72016812,0.801097363,0.114794252,703,6124,0.07788224,0.151706264,0.699149381,4685,6701,0.649883124,0.748415637,19950,,,,,0.220551378,4400,19950,,,0.206265664,4115,19950,,,0.139548872,2784,19950,,,0.015538847,310,19950,,,0.010175439,203,19950,,,0.000601504,12,19950,,,0.174987469,3491,19950,,,0.658446115,13136,19950,,,0.012928248,240,18564,0.004093134,0.021763362,0.477844612,9533,19950,,,1,19435,19435,, -48,163,48163,TX,Frio County,2024,1,11187.18392,322,56022,9572.57673,12801.79111,0,,,,2,,,,2,,,,2,12061.66672,10174.36978,13948.96367,,10038.45225,6615.403289,14605.42099,,,,,2,,0.29,,,0.252,0.332,4.61980852,,,3.774514245,5.571452331,5.031828315,,,3.998298442,6.179707276,0.095705522,156,1630,0.081423631,0.109987412,0,,,,,,,,,,0.092511013,0.077122916,0.10789911,0.11637931,0.07511421,0.157644411,,,,,,,0.187,,,0.154,0.223,0.422,,,0.338,0.51,6.3,0.116581749,0.159,,,0.377,,,0.318,0.439,0.395811803,7277,18385,,,0.183328954,,,0.14451938,0.227485231,0.1,3,30,0.030565485,0.20471433,916.7,169,18436,,,45.40243064,198,4361,39.07827456,51.72658672,,,,,,,,,,47.39824833,40.54952768,54.24696897,29.26829268,15.12335392,51.12581719,,,,,,,0.235534687,3110,13204,0.208130431,0.262938942,0.000216967,4,18436,,,4609,0.000280662,5,17815,,,3563,0.000336795,6,17815,,,2969.166667,3510,,,,,,,,3674,2762,0.23,,,,,,,,0.2,0.28,0.29,,,,,,,,0.28,0.32,0.700059732,8204,11719,0.65838677,0.741732695,0.292437252,1771,6056,0.211520472,0.373354033,0.03408367,321,9418,,,0.325,1324,,0.203468085,0.446531915,,,,,,,,,,0.356263142,0.214394102,0.498132182,0.235294118,0,0.587553179,6.13134664,109046,17785,4.890158519,7.372534762,0.330107246,1262,3823,0.198949265,0.461265227,6.509004122,12,18436,,,57.84629124,57,98537,43.81221608,74.94657987,,,,,,,,,,55.97323462,40.67023796,75.1414549,94.10061527,50.10461448,160.914918,,,,9.1,,,,,0,,,,,0.110160428,515,4675,0.064284838,0.156036018,0.087719298,0.043697026,0.131741571,0.025668449,0.002903945,0.048432953,0.002994652,0,0.009154766,0.842459737,5754,6830,0.79060395,0.894315523,,,,,,,,,,0.794069994,0.743839526,0.844300461,0.790079717,0.622905412,0.957254022,0.184,,6830,0.114514612,0.253485388,73.75334242,,,72.36307824,75.1436066,,,,,,,,,,72.77835529,71.21345974,74.34325083,75.62722012,72.47724957,78.77719066,,,,596.3428377,322,56022,530.3785095,662.3071659,,,,,,,,,,636.5118747,558.4234823,714.6002671,551.5731018,411.9411746,723.3147398,,,,57.92064871,12,20718,29.92844439,101.175717,,,,,,,,,,66.88963211,34.56284899,116.842726,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.151,,,0.13,0.173,0.169,,,0.145,0.195,0.162,,,0.14,0.186,959.8,148,15419,,,0.159,2930,,,,0.116581749,2007.187977,17217,,,,,,,,,,,,,,,,,,,,,,,,,,0.368,,,0.352,0.382,0.293607206,2673,9104,0.255479546,0.331734865,0.110032363,476,4326,0.080245128,0.139819597,0.000954252,17,17815,,,1047.941177,0.975,207.675,213,,,,,,,,2.40104,,,,,,,,2.369312489,2.875309547,2.680235919,,,,,,,,2.631397288,3.17761625,0.020388391,,,,,-6979.3935,,,,,0.738101795,32165,43578,0.339711749,1.13649184,46769,,,39882.19149,53655.80851,,,,,,,,,,46300,25593.10638,67006.89362,70074,23436.7234,116711.2766,,,,,,0.849389417,2504,2948,,,,,,,,0.398298018,,46769,,,6.644518272,8,1204,,,,,,,,,,,,,,,,,,,,,,,,,,13.42689823,13,98537,6.937874245,23.45408909,13.19301379,,,,,,,,,,,,,,,,,,,11.16331936,11,98537,5.572688804,19.97426197,,,,,,,,,,,,,,,,,,,17.61002598,24,136286,11.28307593,26.20232276,,,,,,,,,,19.40796466,12.01383602,29.6671356,,,,,,,,,1800,,,-888,12,0.408433269,5279,12925,,,0.4,,,,,35.66042416,,,,,0.614567849,2894,4709,0.559402932,0.669732766,0.129329135,534,4129,0.069492653,0.189165618,0.67593969,3183,4709,0.613930427,0.737948953,17815,,,,,0.238787539,4254,17815,,,0.128543362,2290,17815,,,0.027111984,483,17815,,,0.012910469,230,17815,,,0.025933202,462,17815,,,0.001571709,28,17815,,,0.79977547,14248,17815,,,0.12871176,2293,17815,,,0.095791513,1632,17037,0.051744105,0.13983892,0.425147348,7574,17815,,,0.507043786,9322,18385,, -48,165,48165,TX,Gaines County,2024,1,9602.697548,277,63103,8180.722895,11024.6722,0,,,,2,,,,2,,,,2,8658.137732,6625.926764,10690.3487,,10270.85627,8245.459872,12296.25266,,,,,2,,0.234,,,0.204,0.267,4.391161829,,,3.540372119,5.371496638,5.549456427,,,4.472676097,6.775927591,0.057268723,182,3178,0.049190202,0.065347243,0,,,,,,,,,,0.0626703,0.048353713,0.076986886,0.055335968,0.04537519,0.065296747,,,,,,,0.196,,,0.162,0.236,0.374,,,0.293,0.463,8,0.013771733,0.13,,,0.317,,,0.266,0.372,0.41587184,8982,21598,,,0.198146405,,,0.158799112,0.243773946,0.051282051,2,39,0.008733672,0.135511295,214.7,47,21895,,,40.5775076,267,6580,35.71023345,45.44478175,,,,,,,,,,49.12891986,41.01961307,57.23822665,34.32751829,28.23609803,40.41893855,,,,,,,0.324548117,6428,19806,0.291186415,0.357909819,9.13451E-05,2,21895,,,10947.5,0.000135251,3,22181,,,7393.666667,0.000135251,3,22181,,,7393.666667,2531,,,,,,,,1774,1818,0.17,,,,,,,,0.17,0.17,0.21,,,,,,,,0.21,0.21,0.603771967,7043,11665,0.555653074,0.651890861,0.253232759,1410,5568,0.184200644,0.322264873,0.0298581,303,10148,,,0.193,1531,,0.116744681,0.269255319,,,,,,,0.741626794,0.427863229,1,0.226728917,0.130591957,0.322865878,0.066715543,0.007603517,0.125827568,4.954795835,139423,28139,4.205017355,5.704574315,0.073739358,563,7635,0.026136907,0.121341809,11.87485727,26,21895,,,65.46828529,70,106922,51.03574017,82.71523992,,,,,,,,,,37.19993873,21.67033517,59.56070552,88.0129776,65.53144279,115.7208114,,,,7.3,,,,,1,,,,,0.156462585,920,5880,0.09857029,0.21435488,0.069647464,0.031069822,0.108225105,0.06377551,0.029247515,0.098303505,0.034013605,0.005702816,0.062324395,0.699952786,5930,8472,0.667892185,0.732013387,,,,,,,,,,0.691435054,0.583354401,0.799515707,0.691501746,0.651608113,0.731395379,0.223,,8472,0.156639284,0.289360716,74.86877127,,,73.55422412,76.18331841,,,,,,,,,,75.79953932,73.61509792,77.98398072,74.29946926,72.54467897,76.05425955,,,,501.0291731,277,63103,441.0082593,561.0500869,,,,,,,,,,467.8567839,376.6176325,559.0959352,521.6108777,440.0348179,603.1869376,,,,53.19463325,18,33838,31.52651097,84.07045413,,,,,,,,,,,,,84.95214363,47.5470699,140.1156418,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.138,,,0.12,0.159,0.183,,,0.159,0.21,0.124,,,0.107,0.143,49.5,8,16146,,,0.13,2750,,,,0.013771733,241.3633953,17526,,,,,,,,,,,,,,,,,,,,,,,,,,0.35,,,0.338,0.363,0.387255721,4637,11974,0.349128061,0.42538338,0.23266301,1909,8205,0.17666301,0.28866301,0.000180335,4,22181,,,5545.25,0.945571956,256.25,271,,,,,,,,2.829698997,,,,,,,,2.523672027,3.422357865,3.094746769,,,,,,,,2.781626421,3.616479341,0.061770878,,,,,-1737.61828,,,,,0.505114438,34715,68727,0.417379016,0.59284986,62465,,,53309.59575,71620.40426,,,,,,,,,,63726,45394.93617,82057.06383,83438,68443.10638,98432.89362,,,,,,0.586064445,2128,3631,,,62.70400275,,,,,0.270295365,,62465,,,1.76056338,4,2272,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.2878734,11,106922,5.135669336,18.40784732,,,,,,,,,,,,,,,,,,,29.84042156,44,147451,21.68209599,40.05937313,,,,,,,,,,,,,43.4356346,30.25451098,60.40845303,,,,,,3100,,,-888,22,0.547080292,5996,10960,,,0.433,,,,,27.49861784,,,,,0.734983355,5078,6909,0.671403216,0.798563494,0.088915772,588,6613,0.045027938,0.132803606,0.816616008,5642,6909,0.774630153,0.858601863,22181,,,,,0.359271449,7969,22181,,,0.090573013,2009,22181,,,0.016590776,368,22181,,,0.011270908,250,22181,,,0.006266625,139,22181,,,0.000315585,7,22181,,,0.434335693,9634,22181,,,0.533294261,11829,22181,,,0.068568181,1327,19353,0.041664256,0.095472105,0.488120464,10827,22181,,,0.672747477,14530,21598,, -48,167,48167,TX,Galveston County,2024,1,8638.900874,5319,983515,8292.551655,8985.250093,0,,,,2,4059.277403,2811.167606,5672.4333,,14837.58566,13524.57876,16150.59256,,6781.984428,6201.812838,7362.156019,,8541.234434,8072.848915,9009.619952,,,,,2,,0.163,,,0.14,0.188,3.477844416,,,2.753782498,4.238839537,4.855287854,,,3.926074431,5.843607035,0.088164033,2438,27653,0.084822167,0.091505899,0,,,,0.085192698,0.067767264,0.102618132,0.15590381,0.14421633,0.167591289,0.080201973,0.074433285,0.08597066,0.076241135,0.071860667,0.080621603,,,,0.047058824,0.021066832,0.073050815,0.141,,,0.114,0.172,0.342,,,0.276,0.415,7.2,0.086530447,0.131,,,0.243,,,0.202,0.289,0.84937921,297862,350682,,,0.185317405,,,0.150156863,0.224903681,0.345360825,67,194,0.309698683,0.381039598,405.8,1441,355062,,,18.078348,1420,78547,17.13803889,19.0186571,,,,,,,28.88804698,25.64596245,32.13013151,23.2459522,21.39052142,25.10138297,12.95670369,11.80118484,14.11222253,,,,13.87347392,8.978180826,20.47998429,0.160811199,47617,296105,0.146513326,0.175109071,0.000704102,250,355062,,,1420.248,0.000518038,185,357117,,,1930.362162,0.001439304,514,357117,,,694.7801556,4265,,,,,,1538,7273,4640,3837,0.39,,,,,,0.36,0.44,0.34,0.39,0.44,,,,,,0.47,0.37,0.4,0.45,0.897338756,212462,236769,0.890513535,0.904163978,0.680586483,63268,92961,0.650372936,0.710800029,0.043837026,7411,169058,,,0.15,12420,,0.114255319,0.185744681,,,,0.031906301,0,0.078094197,0.247493792,0.18220993,0.312777654,0.209425991,0.177357317,0.241494664,0.068145676,0.049088064,0.087203289,5.136237228,164375,32003,4.816156569,5.456317886,0.230236729,19257,83640,0.20555229,0.254921168,6.618562392,235,355062,,,74.56786784,1279,1715216,70.48117003,78.65456564,,,,27.62049441,15.78749906,44.85395249,93.0116334,80.15298522,105.8702816,45.39680938,39.07343629,51.72018247,88.10935866,82.20333674,94.01538057,,,,7.9,,,,,0,,,,,0.158220518,19810,125205,0.145419804,0.171021233,0.130378518,0.118428926,0.142328111,0.028633042,0.023201695,0.034064389,0.008226509,0.003876364,0.012576653,0.793238501,130433,164431,0.781373229,0.805103774,,,,0.754397394,0.704964933,0.803829855,0.805557282,0.764040506,0.847074058,0.77336192,0.743231886,0.803491954,0.727531294,0.711808566,0.743254022,0.41,,164431,0.392008905,0.427991095,76.46174578,,,76.15544904,76.76804251,,,,85.04928841,82.68785724,87.41071958,71.09800074,70.16001384,72.03598765,79.96361564,79.11493601,80.81229527,76.25504499,75.86782964,76.64226033,,,,433.1328524,5319,983515,421.1513912,445.1143136,,,,180.5103464,140.447824,228.4473963,683.5021352,639.6200959,727.3841746,348.4541024,324.0443815,372.8638234,432.6208044,417.2339781,448.0076306,,,,52.08929906,191,366678,44.70196223,59.47663588,,,,,,,92.62117938,67.5585238,123.9344252,44.60192779,33.50634089,58.19584078,48.9132624,39.07017672,60.48200643,,,,5.097857474,143,28051,4.262301128,5.93341382,,,,,,,9.965906111,7.052468305,13.67898477,5.005959476,3.607855272,6.766602953,4.059167527,3.090026393,5.236030366,,,,,,,0.105,,,0.09,0.12,0.156,,,0.136,0.179,0.103,,,0.089,0.12,383.5,1135,295936,,,0.131,45410,,,,0.086530447,25207.09791,291309,,,21.20331194,221,1042290,18.40778529,23.99883859,,,,,,,22.94525263,15.48106559,32.75577486,10.02442991,6.606162474,14.58501921,27.66322584,23.4033064,31.92314528,,,,0.345,,,0.331,0.358,0.188515536,39934,211834,0.170643195,0.206387876,0.095953666,8499,88574,0.075698347,0.116208985,0.001125682,402,357117,,,888.3507463,0.933712775,5737.665,6145,,,0.067358865,1291,19166,0.04690545,0.08781228,2.9640963,,,,,,3.414834489,2.388533631,2.822995524,3.226958281,3.153489115,,,,,,3.817613633,2.591944109,3.039896518,3.380269347,0.114181648,,,,,-5490.566763,,,,,0.784359549,58063,74026,0.750386787,0.818332312,75947,,,70422.06383,81471.93617,69911,32043.08511,107778.9149,111905,83782.2766,140027.7234,48900,43963.65957,53836.34043,72096,67525.44681,76666.55319,95183,91034.23404,99331.76596,,,,,,0.506748346,30938,61052,,,51.31738638,,,,,0.253150223,,75947,,,5.125070529,109,21268,,,7.689473702,182,2366872,6.572309545,8.806637859,,,,,,,24.9890881,19.655503,31.32403832,6.070498725,4.251702677,8.404129033,5.04984869,3.921405102,6.401886501,,,,15.85371442,277,1715216,13.94923442,17.75819441,16.1495695,,,,,,,8.195784538,4.774346518,13.12224498,8.347021047,5.780554724,11.66412527,20.86397014,17.94751365,23.78042664,,,,17.37390509,298,1715216,15.40127623,19.34653396,,,,,,,28.69015558,21.99657777,36.77948463,9.171072603,6.551948725,12.4883979,19.57985748,16.79573205,22.36398291,,,,13.68895318,324,2366872,12.19837828,15.17952809,,,,,,,15.3266407,11.22102729,20.44359087,11.12924766,8.607359336,14.15913179,15.22380855,13.13978581,17.3078313,,,,15.39823009,,33900,,,283,239,0.647959717,155060,239305,,,0.587,,,,,83.52344184,,,,,0.677760118,91684,135275,0.664806456,0.690713781,0.152972373,20133,131612,0.140368661,0.165576086,0.911624469,123320,135275,0.901769593,0.921479345,357117,,,,,0.234264961,83660,357117,,,0.157500203,56246,357117,,,0.125505087,44820,357117,,,0.008126188,2902,357117,,,0.036517444,13041,357117,,,0.001064077,380,357117,,,0.268391032,95847,357117,,,0.550192234,196483,357117,,,0.030246485,9985,330121,,,0.505573804,180549,357117,,,0.04064366,14253,350682,, -48,169,48169,TX,Garza County,2024,1,7240.889038,87,17253,5196.186988,9823.083594,0,,,,2,,,,2,,,,2,8032.666045,4836.189688,12544.00305,1,4582.649152,3019.994667,6667.513918,,,,,2,,0.229,,,0.197,0.267,4.16293324,,,3.338174217,5.119209039,4.893619508,,,3.972104495,5.935391015,0.070866142,27,381,0.045099838,0.096632445,0,,,,,,,,,,0.055865922,0.022220973,0.089510871,0.079754601,0.038164309,0.121344893,,,,,,,0.178,,,0.145,0.216,0.382,,,0.302,0.465,7.4,0.052620285,0.137,,,0.31,,,0.258,0.365,,,5816,,,0.20957511,,,0.170126048,0.254406955,0.142857143,2,14,0.031645086,0.307569357,324.1,19,5863,,,47.0324748,42,893,33.89687092,63.57424275,,,,,,,,,,47.71784232,30.24901875,71.60019273,51.28205128,29.31212325,83.27883845,,,,,,,0.232006774,822,3543,0.20221954,0.261794008,0.000170561,1,5863,,,5863,0.000319387,2,6262,,,3131,0.000159693,1,6262,,,6262,2097,,,,,,,,,1905,0.24,,,,,,,,,0.26,0.29,,,,,,,,0.22,0.3,0.6998557,2910,4158,0.645659708,0.754051692,0.252512563,402,1592,0.115418586,0.38960654,0.041242363,81,1964,,,0.271,230,,0.168531915,0.373468085,,,,,,,,,,0.328244275,0.135755327,0.520733222,0.359090909,0,0.769264764,3.559505834,103724,29140,1.588573058,5.53043861,0.079905993,68,851,0.011885047,0.147926939,11.93928023,7,5863,,,60.47103756,19,31420,36.40751485,94.43301582,,,,,,,,,,60.84205403,29.17612981,111.8907036,,,,,,,6.6,,,,,0,,,,,0.125364432,215,1715,0.061039737,0.189689126,0.097345133,0.009985198,0.184705067,0.022740525,0,0.0632682,0.005830904,0,0.024981348,0.868193069,1403,1616,0.745008361,0.991377778,,,,,,,,,,,,,0.936662607,0.860972358,1,0.3,,1616,0.129425491,0.470574509,75.68824236,,,73.63751029,77.73897443,,,,,,,,,,76.16705812,70.85166325,81.482453,77.32579643,75.1517973,79.49979555,,,,486.3616047,87,17253,387.9410636,602.148761,,,,,,,,,,535.2252217,342.9288987,796.3727043,424.2524757,309.452667,567.6831917,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.13,,,0.113,0.15,0.161,,,0.14,0.185,0.127,,,0.11,0.146,1032.5,54,5230,,,0.137,790,,,,0.052620285,339.9796637,6461,,,,,,,,,,,,,,,,,,,,,,,,,,0.364,,,0.349,0.377,0.270067517,720,2666,0.230748368,0.309386666,0.117521368,110,936,0.081776687,0.153266048,0.00047908,3,6262,,,2087.333333,0.902848101,71.325,79,,,,,,,,2.701028006,,,,,,,,2.539461194,3.284291732,3.412384141,,,,,,,,3.341847181,3.720507935,0.014429719,,,,,-1526.0121,,,,,0.66849221,36985,55326,0.333351386,1.003633034,50255,,,42603.25532,57906.74468,,,,,,,,,,42321,29935.46809,54706.53192,74523,63655.42553,85390.57447,,,,,,0.705882353,636,901,,,71.45243424,,,,,0.295055218,,50255,,,14.38848921,2,139,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,400,,,0,-888,0.475683453,1653,3475,,,0.411,,,,,50.74647783,,,,,0.69588551,1167,1677,0.601501285,0.790269735,0.050275904,82,1631,0,0.114127999,0.831842576,1395,1677,0.783902615,0.879782537,6262,,,,,0.142606196,893,6262,,,0.10651549,667,6262,,,0.069306931,434,6262,,,0.011977004,75,6262,,,0.007984669,50,6262,,,0.001596934,10,6262,,,0.553816672,3468,6262,,,0.35675503,2234,6262,,,0.136445242,760,5570,0.091651747,0.181238738,0.310443948,1944,6262,,,1,5816,5816,, -48,171,48171,TX,Gillespie County,2024,1,6554.364997,369,70040,5286.320121,7822.409873,0,,,,2,,,,2,,,,2,6185.527331,4230.896115,8732.119,,6910.857833,5270.229446,8551.48622,,,,,2,,0.152,,,0.127,0.181,3.409917408,,,2.688335388,4.261945024,5.058497243,,,4.023435916,6.198467433,0.088118249,155,1759,0.074871011,0.101365487,0,,,,,,,,,,0.094420601,0.072742855,0.116098347,0.082684825,0.065849104,0.099520546,,,,,,,0.139,,,0.107,0.173,0.344,,,0.268,0.429,7.8,0.031331663,0.127,,,0.223,,,0.179,0.271,0.531449953,14203,26725,,,0.165145426,,,0.131441314,0.203292396,0.405405405,15,37,0.322262199,0.485105887,183.2,50,27297,,,24.83713355,122,4912,20.42978266,29.24448445,,,,,,,,,,43.91328516,34.7665614,54.72905568,13.06970509,9.293837966,17.86671711,,,,,,,0.237857514,4574,19230,0.214027727,0.261687302,0.00117229,32,27297,,,853.03125,0.000764276,21,27477,,,1308.428571,0.000946246,26,27477,,,1056.807692,979,,,,,,,,,1104,0.47,,,,,,,,0.42,0.48,0.48,,,,,,,,0.41,0.48,0.887068966,17493,19720,0.864114572,0.910023359,0.528693994,2773,5245,0.438593636,0.618794352,0.026204449,384,14654,,,0.135,710,,0.083765957,0.186234043,0.706185567,0.295133427,1,,,,,,,0.188445667,0.083075587,0.293815747,0.08109029,0.038939627,0.123240953,4.276996625,136881,32004,3.581291435,4.972701816,0.224916076,1206,5362,0.130887889,0.318944264,12.82192182,35,27297,,,80.18115001,108,134695,65.05889788,95.30340213,,,,,,,,,,55.70858222,33.01643645,88.04357732,90.35237426,72.65397865,111.0584076,,,,8.2,,,,,1,,,,,0.137707948,1490,10820,0.104346382,0.171069515,0.096189591,0.068768387,0.123610795,0.036968577,0.019759793,0.054177361,0.021719039,0.006211477,0.037226601,0.742119633,8970,12087,0.709722332,0.774516934,,,,,,,,,,0.697697698,0.674279599,0.721115796,0.746411483,0.692556877,0.800266089,0.235,,12087,0.188015418,0.281984582,79.80282734,,,78.70212108,80.90353359,,,,,,,,,,81.57159947,77.88151243,85.26168652,79.41139251,78.06066962,80.76211539,,,,312.0911026,369,70040,274.9488297,349.2333754,,,,,,,,,,308.0747601,229.3818942,405.0614147,324.4964584,278.9962572,369.9966597,,,,55.3379874,13,23492,29.46514767,94.62964379,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.103,,,0.087,0.12,0.158,,,0.135,0.182,0.091,,,0.077,0.108,89.2,21,23553,,,0.127,3410,,,,0.031331663,778.1845142,24837,,,,,,,,,,,,,,,,,,,,,,,,,,0.322,,,0.307,0.337,0.258896413,3594,13882,0.230300668,0.287492157,0.187477829,1057,5638,0.144584212,0.230371446,0.00080067,22,27477,,,1248.954546,0.967066667,290.12,300,,,,,,,,3.07608699,,,,,,,,2.651523264,3.421846466,3.337581894,,,,,,,,2.977346128,3.668116767,0.063096582,,,,,-625.93845,,,,,0.805500119,43994,54617,0.638192001,0.972808237,77013,,,67114.10638,86911.89362,,,,,,,,,,62471,39752.87234,85189.12766,70445,63103.04255,77786.95745,,,,,,0.552226721,2046,3705,,,,,,,,0.241881241,,77013,,,4.548900682,6,1319,,,,,,,,,,,,,,,,,,,,,,,,,,16.74443187,29,134695,10.36506724,25.59564279,21.53012361,,,,,,,,,,,,,23.26754054,13.5541998,37.25358637,,,,20.78770556,28,134695,13.81327938,30.04402238,,,,,,,,,,,,,25.09788174,16.24202575,37.04942445,,,,18.69867881,35,187179,13.02431491,26.00533573,,,,,,,,,,,,,20.0873801,13.3479182,29.03185711,,,,6.363636364,,2200,,,8,6,0.793889306,15850,19965,,,0.573,,,,,30.82277139,,,,,0.698232895,7705,11035,0.662090636,0.734375155,0.108492366,1137,10480,0.079282067,0.137702666,0.864703217,9542,11035,0.835898109,0.893508325,27477,,,,,0.193689267,5322,27477,,,0.301342941,8280,27477,,,0.004985988,137,27477,,,0.012737926,350,27477,,,0.005786658,159,27477,,,0.001237399,34,27477,,,0.249808931,6864,27477,,,0.725697856,19940,27477,,,0.045082925,1158,25686,0.026191463,0.063974386,0.510645267,14031,27477,,,0.564415341,15084,26725,, -48,173,48173,TX,Glasscock County,2024,0,,,,,,2,,,,2,,,,2,,,,2,,,,2,,,,2,,,,2,,0.189,,,0.164,0.217,3.78815603,,,3.263598377,4.328079454,5.053372829,,,4.428427602,5.71582046,0.10619469,12,113,0.049389278,0.163000103,1,,,,,,,,,,,,,,,,,,,,,,0.158,,,0.131,0.187,0.366,,,0.326,0.41,4.4,0.364457936,0.125,,,0.261,,,0.228,0.296,,,1116,,,0.194995167,,,0.173773572,0.218128977,0.052631579,1,19,0.002213242,0.187781702,0,0,1149,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.262096774,260,992,0.231118051,0.293075498,0,0,1149,,,-1149,0,0,1164,,,-1164,,0,1164,,,,,,,,,,,,,,0.39,,,,,,,,,0.43,0.36,,,,,,,,0.21,0.38,0.860622463,636,739,0.781753123,0.939491803,0.758957655,233,307,0.526780554,0.991134756,0.026255708,23,876,,,0.123,36,,0.076531915,0.169468085,,,,,,,,,,,,,0.136842105,0,0.465486378,5.808193565,208125,35833,1.554323397,10.06206373,0.064150943,17,265,0,0.231825482,0,0,1149,,,,,,,,,,,,,,,,,,,,,,,,,,7.3,,,,,0,,,,,0.114942529,50,435,0.01983919,0.210045868,0.045977012,0,0.17677853,0.045977012,0,0.13717606,0.022988506,0,0.083179378,0.753846154,343,455,0.627627696,0.880064611,,,,,,,,,,,,,,,,0.328,,455,0.107120881,0.548879119,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.118,,,0.104,0.132,0.165,,,0.149,0.181,0.11,,,0.1,0.122,534.5,5,935,,,0.125,150,,,,0.364457936,446.82543,1226,,,,,,,,,,,,,,,,,,,,,,,,,,0.356,,,0.342,0.37,0.263081395,181,688,0.228528204,0.297634587,0.262345679,85,324,0.2039627,0.320728658,0,0,1164,,,-1164,,,,,,,,,,,3.321187232,,,,,,,,,3.441565695,3.658464871,,,,,,,,,3.898948518,0.000593408,,,,,10670.52,,,,,1.061868115,63333,59643,0.802227393,1.321508838,96533,,,81553.59575,111512.4043,,,,,,,,,,84038,8526.170213,159549.8298,113917,64721.59575,163112.4043,,,,,,0.174061433,51,293,,,,,,,,0.174903919,,96533,,,10.30927835,1,97,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,100,,,0,0,0.733707865,653,890,,,0.351,,,,,7.628085016,,,,,0.619277108,257,415,0.483220974,0.755333243,0.018587361,5,269,0,0.259235411,0.8,332,415,0.676352331,0.923647669,1164,,,,,0.25257732,294,1164,,,0.140893471,164,1164,,,0.024914089,29,1164,,,0.007731959,9,1164,,,0.00257732,3,1164,,,0.001718213,2,1164,,,0.382302406,445,1164,,,0.578178694,673,1164,,,0.074596774,74,992,0,0.163339416,0.445876289,519,1164,,,1,1116,1116,, -48,175,48175,TX,Goliad County,2024,1,9024.569701,117,20263,6461.203385,11587.93602,0,,,,2,,,,2,,,,2,12952.83615,8382.392607,19120.94134,,6527.247583,4224.09048,9635.505049,1,,,,2,,0.19,,,0.162,0.221,3.873450889,,,3.213801574,4.68172036,5.265633814,,,4.296082407,6.368411322,0.081135903,40,493,0.057033253,0.105238552,0,,,,,,,,,,0.074766355,0.039526996,0.110005714,0.081395349,0.048028874,0.114761824,,,,,,,0.164,,,0.133,0.2,0.379,,,0.297,0.467,6.9,0.098613689,0.136,,,0.27,,,0.223,0.323,0.503280091,3529,7012,,,0.169920018,,,0.135707693,0.20903996,0.307692308,4,13,0.157450571,0.460702037,111.7,8,7163,,,20.06472492,31,1545,13.63300711,28.48027541,,,,,,,,,,26.57342657,15.99893869,41.4976973,16.50618982,8.528989145,28.83299181,,,,,,,0.201648352,1101,5460,0.177818564,0.225478139,,0,7163,,,,0.000560931,4,7131,,,1782.75,0.000140233,1,7131,,,7131,3078,,,,,,,,3545,1944,0.34,,,,,,,,0.34,0.34,0.41,,,,,,,,0.32,0.44,0.844567803,4260,5044,0.802195416,0.88694019,0.56982131,861,1511,0.43285906,0.706783561,0.043777361,140,3198,,,0.214,305,,0.131787234,0.296212766,,,,,,,,,,0.076923077,0.00093905,0.152907104,0.054172767,0,0.128690978,6.410780408,136774,21335,3.724837683,9.096723133,0.084860828,125,1473,0.020015465,0.149706192,8.376378612,6,7163,,,77.14202112,29,37593,51.66322224,110.7888103,,,,,,,,,,,,,87.52936841,52.69839759,136.6879512,,,,9,,,,,0,,,,,0.088028169,250,2840,0.043516886,0.132539452,0.069767442,0.026103956,0.113430927,0.01056338,0,0.028115459,0.008802817,0,0.027178571,0.781913044,2248,2875,0.703218982,0.860607106,,,,,,,,,,,,,0.775710088,0.686067609,0.865352568,0.515,,2875,0.400208178,0.629791823,78.95431314,,,76.63730885,81.27131744,,,,,,,,,,75.13788626,70.92551845,79.35025407,81.30158558,78.66830675,83.93486441,,,,402.5016502,117,20263,321.8504232,483.1528771,,,,,,,,,,531.5480127,383.0930533,718.4984957,346.7289504,260.4734589,452.4060683,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.12,,,0.104,0.138,0.171,,,0.149,0.196,0.112,,,0.096,0.13,147,9,6124,,,0.136,970,,,,0.098613689,711.0046992,7210,,,,,,,,,,,,,,,,,,,,,,,,,,0.351,,,0.337,0.363,0.229265848,915,3991,0.199478614,0.259053082,0.130406714,202,1549,0.097045012,0.163768416,0.000140233,1,7131,,,7131,0.975,91.65,94,,,,,,,,2.659552033,,,,,,,,2.423339685,3.00027193,2.798940639,,,,,,,,2.413198777,3.271706033,0.00372548,,,,,-1591.304,,,,,0.712582356,46615,65417,0.527366195,0.897798518,62841,,,53677.25532,72004.74468,,,,,,,,,,41490,17162.17021,65817.82979,76500,59271.06383,93728.93617,,,,,,0.541221374,709,1310,,,32.52968012,,,,,0.237456438,,62841,,,12.55230126,3,239,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,30.39455937,16,52641,17.37311687,49.3588602,,,,,,,,,,,,,39.33910307,20.32708861,68.71749622,,,,30,,600,,,5,13,0.690579084,3995,5785,,,0.482,,,,,17.98868163,,,,,0.826838235,2249,2720,0.786373747,0.867302723,0.082733813,207,2502,0.033125598,0.132342028,0.720955882,1961,2720,0.669273181,0.772638584,7131,,,,,0.203057075,1448,7131,,,0.245968307,1754,7131,,,0.040807741,291,7131,,,0.012901416,92,7131,,,0.007011639,50,7131,,,0.000280466,2,7131,,,0.354368251,2527,7131,,,0.580143037,4137,7131,,,0.022215726,152,6842,0.001828201,0.042603252,0.4957229,3535,7131,,,1,7012,7012,, -48,177,48177,TX,Gonzales County,2024,1,9430.090989,377,56765,8016.626396,10843.55558,0,,,,2,,,,2,11032.43067,6031.532506,18510.54403,1,8955.199548,7097.368433,10813.03066,,9946.350864,7523.933658,12368.76807,,,,,2,,0.239,,,0.206,0.276,4.339700047,,,3.429746803,5.332139656,5.524681132,,,4.384109346,6.774669145,0.08225324,165,2006,0.070229806,0.094276675,0,,,,,,,0.144578313,0.068919638,0.220236988,0.070444104,0.056565539,0.084322669,0.100340136,0.076054811,0.124625461,,,,,,,0.185,,,0.15,0.222,0.398,,,0.312,0.491,6.2,0.174779612,0.133,,,0.329,,,0.273,0.385,0.485523839,9542,19653,,,0.165636658,,,0.130592123,0.205562085,0.227272727,10,44,0.149994326,0.311342398,539.7,106,19641,,,37.5,189,5040,32.15366169,42.84633831,,,,,,,,,,46.18656943,38.84396752,53.52917134,22.2057735,14.98214213,31.70012242,,,,,,,0.267920755,4287,16001,0.241707989,0.294133521,0.000407311,8,19641,,,2455.125,0.000453812,9,19832,,,2203.555556,0.000302541,6,19832,,,3305.333333,2518,,,,,,,1502,2384,2020,0.3,,,,,,,0.27,0.2,0.33,0.37,,,,,,,0.24,0.31,0.39,0.774031676,9872,12754,0.739210921,0.808852431,0.327288428,1516,4632,0.258787142,0.395789715,0.032434135,309,9527,,,0.229,1189,,0.139638298,0.318361702,,,,,,,0.548076923,0.267269728,0.828884118,0.144898542,0.078648037,0.211149048,0.113997114,0.039558222,0.188436007,4.831235541,123211,25503,3.861418854,5.801052228,0.248811109,1308,5257,0.163498577,0.334123641,11.20105901,22,19641,,,76.59120655,79,103145,60.6379795,95.45549582,,,,,,,,,,46.96423204,30.39277474,69.32847103,121.1343879,90.19250829,159.2693491,,,,9.3,,,,,0,,,,,0.163429337,1220,7465,0.127386125,0.199472549,0.072739541,0.047194733,0.098284349,0.075686537,0.050395538,0.100977537,0.019423979,0.006592937,0.03225502,0.785780454,6786,8636,0.737330307,0.834230601,,,,,,,,,,0.7414504,0.67310018,0.809800621,0.838699879,0.778478241,0.898921516,0.375,,8636,0.311224704,0.438775296,75.1387596,,,73.99814655,76.27937265,,,,,,,,,,76.44353761,74.23206645,78.65500876,74.78098998,73.0589267,76.50305326,,,,532.6193039,377,56765,476.3056438,588.9329639,,,,,,,780.9306636,534.1559958,1102.441089,495.2619043,411.0862055,579.4376032,541.7930062,455.3384928,628.2475196,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.138,,,0.119,0.158,0.18,,,0.156,0.206,0.132,,,0.112,0.152,168.8,27,16000,,,0.133,2620,,,,0.174779612,3461.859782,19807,,,,,,,,,,,,,,,,,,,,,,,,,,0.354,,,0.341,0.366,0.31650663,3461,10935,0.283144928,0.349868332,0.168407311,903,5362,0.129088162,0.20772646,0.00070593,14,19832,,,1416.571429,0.91861017,270.99,295,,,,,,,,2.489458818,,,,,,,2.308468372,2.350846926,3.06575571,2.774476644,,,,,,,2.372603912,2.68488282,3.295870066,0.029547546,,,,,-10091.21267,,,,,0.732403985,36462,49784,0.589071872,0.875736099,57523,,,50589.7234,64456.2766,,,,,,,75234,18485.74468,131982.2553,65505,58016.48936,72993.51064,61360,51702.97872,71017.02128,,,,,,0.761536543,3053,4009,,,44.0978469,,,,,0.25940928,,57523,,,2.159827214,3,1389,,,,,,,,,,,,,,,,,,,,,,,,,,17.76146134,18,103145,10.34670576,28.43782018,17.45116099,,,,,,,,,,,,,30.4090118,15.18006913,54.41012194,,,,14.54263416,15,103145,8.139401942,23.98586347,,,,,,,,,,,,,26.12702484,13.04251667,46.74846448,,,,26.97207353,39,144594,19.17978097,36.87171243,,,,,,,,,,26.9872755,16.48452899,41.67965821,26.90884628,15.38073067,43.69828052,,,,21.36363636,,2200,,,21,26,0.564219845,7648,13555,,,0.432,,,,,31.71895122,,,,,0.670264436,4968,7412,0.625143984,0.715384888,0.098221967,685,6974,0.065069911,0.131374024,0.811791689,6017,7412,0.778758608,0.84482477,19832,,,,,0.264723679,5250,19832,,,0.174364663,3458,19832,,,0.054860831,1088,19832,,,0.018606293,369,19832,,,0.006706333,133,19832,,,0.002168213,43,19832,,,0.528085922,10473,19832,,,0.397640178,7886,19832,,,0.066350453,1217,18342,0.046182031,0.086518875,0.497327551,9863,19832,,,0.646211774,12700,19653,, -48,179,48179,TX,Gray County,2024,1,11191.34932,418,59736,9612.589064,12770.10958,0,,,,2,,,,2,14919.0296,5475.020925,32472.44659,1,7210.584795,4993.539583,10076.06952,,12363.65075,10324.82346,14402.47803,,,,,2,,0.215,,,0.186,0.246,4.231347317,,,3.375394261,5.205266734,5.430437971,,,4.414152725,6.60189091,0.077595628,142,1830,0.065337905,0.089853352,0,,,,,,,,,,0.076163611,0.056638017,0.095689204,0.077142857,0.061003861,0.093281853,,,,,,,0.196,,,0.163,0.235,0.397,,,0.318,0.487,6.8,0.084917983,0.147,,,0.29,,,0.245,0.346,0.925707825,19650,21227,,,0.182965253,,,0.146815174,0.226376609,0.193548387,6,31,0.104538512,0.296792565,256.8,54,21030,,,36.76624191,176,4787,31.33437678,42.19810703,,,,,,,,,,38.60010293,30.36142959,48.38556328,38.46153846,31.18971672,46.9198152,,,,,,,0.253510436,4008,15810,0.227297671,0.279723202,0.000285307,6,21030,,,3505,0.000571021,12,21015,,,1751.25,0.000380681,8,21015,,,2626.875,2774,,,,,,,,657,2801,0.29,,,,,,,,0.25,0.3,0.31,,,,,,,0.33,0.26,0.32,0.815731456,11470,14061,0.792305648,0.839157264,0.48492049,2653,5471,0.416303116,0.553537863,0.044626594,343,7686,,,0.197,1027,,0.127893617,0.266106383,0.171875,0.064336189,0.279413811,,,,,,,0.310191366,0.22969895,0.390683783,0.106449106,0.05422698,0.158671233,4.93290606,110063,22312,4.120835299,5.74497682,0.252869238,1344,5315,0.190145141,0.315593336,16.16737993,34,21030,,,82.66512358,90,108873,66.47252132,101.6094714,,,,,,,,,,52.43515006,30.5454072,83.95375471,100.4980565,78.04067327,127.4052335,,,,6,,,,,0,,,,,0.129381772,1015,7845,0.095956803,0.162806741,0.089561856,0.060197293,0.118926418,0.034416826,0.017411875,0.051421777,0.012109624,0.003099398,0.02111985,0.817646393,7219,8829,0.788783628,0.846509157,,,,,,,,,,0.795955056,0.743375358,0.848534754,0.822234157,0.784578937,0.859889377,0.227,,8829,0.179206571,0.274793429,72.76120604,,,71.59636584,73.92604624,,,,,,,,,,78.39417622,74.28056547,82.50778697,71.70196156,70.32993056,73.07399256,,,,578.5566217,418,59736,521.9252361,635.1880072,,,,,,,613.6798001,357.4910984,982.560808,312.5018346,226.1591272,420.9379204,663.7476375,589.5790578,737.9162173,,,,54.88474204,13,23686,29.22381361,93.85458042,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.133,,,0.115,0.152,0.181,,,0.158,0.206,0.122,,,0.105,0.141,92.1,16,17365,,,0.147,3150,,,,0.084917983,1913.626741,22535,,,18.58333075,12,64574,9.602278175,32.461339,,,,,,,,,,,,,27.73295684,13.84419213,49.62192042,,,,0.371,,,0.357,0.384,0.307996609,3270,10617,0.274634907,0.341358311,0.14571481,794,5449,0.107587151,0.18384247,0.000618606,13,21015,,,1616.538462,0.896348123,262.63,293,,,,,,,,2.742470028,,,,,,,,2.644529025,2.815808389,2.903964356,,,,,,,,2.85455592,3.023162468,0.062516417,,,,,-9494.580333,,,,,0.695476604,39268,56462,0.549182435,0.841770772,50648,,,43440.68085,57855.31915,32750,17834.93617,47665.06383,53528,25778.21277,81277.78723,40222,37370.76596,43073.23404,42719,26462.31915,58975.68085,59350,53680.89362,65019.10638,,,,,,0.579586563,2243,3870,,,66.58915344,,,,,0.299794661,,50648,,,6.25,9,1440,,,7.105575939,11,154808,3.547077908,12.71383812,,,,,,,,,,,,,,,,,,,17.04894829,19,108873,10.10428726,26.94468854,17.45152609,,,,,,,,,,,,,19.18474972,9.913040131,33.51189691,,,,19.28852884,21,108873,11.93990336,29.48456526,,,,,,,,,,,,,20.69077635,11.31183997,34.71560694,,,,23.25461217,36,154808,16.28724447,32.19418537,,,,,,,,,,26.34294119,13.61178212,46.01581685,22.70639598,14.22997747,34.37775639,,,,22.17391304,,2300,,,9,42,0.513324538,7782,15160,,,0.531,,,,,36.00314607,,,,,0.704151602,5648,8021,0.669865465,0.738437739,0.12592689,968,7687,0.084695622,0.167158157,0.828824336,6648,8021,0.793382064,0.864266608,21015,,,,,0.250202237,5258,21015,,,0.166928385,3508,21015,,,0.047680228,1002,21015,,,0.018510588,389,21015,,,0.0082798,174,21015,,,0.000142755,3,21015,,,0.316059957,6642,21015,,,0.601189627,12634,21015,,,0.043443363,866,19934,0.028275489,0.058611237,0.460052344,9668,21015,,,0.205493004,4362,21227,, -48,181,48181,TX,Grayson County,2024,1,9643.053541,2544,383654,9056.507897,10229.59919,0,,,,2,,,,2,14162.60861,11107.74514,17217.47207,,5699.221905,4571.246536,6827.197274,,10325.2814,9604.074577,11046.48823,,,,,2,,0.167,,,0.141,0.195,3.761604553,,,2.983575599,4.616634917,5.074718689,,,4.067497167,6.117775462,0.079554425,907,11401,0.074587177,0.084521673,0,0.085714286,0.03934188,0.132086691,0.106741573,0.061378608,0.152104538,0.163610719,0.136381007,0.190840432,0.077099237,0.066884952,0.087313522,0.071447685,0.06560817,0.077287201,,,,0.08627451,0.051812936,0.120736083,0.168,,,0.134,0.203,0.372,,,0.293,0.451,7.3,0.058968463,0.137,,,0.239,,,0.193,0.287,0.774425828,104968,135543,,,0.182814359,,,0.145868149,0.222914964,0.191304348,22,115,0.145214444,0.241294148,300,418,139336,,,28.19928362,866,30710,26.32111232,30.07745493,24.83069977,12.39539586,44.42898084,,,,42.50350304,34.22116931,52.18488319,40.54269753,35.55670235,45.52869271,23.37220359,21.25239186,25.49201533,,,,33.36184773,23.72353506,45.60674411,0.194398171,21939,112856,0.176525831,0.212270512,0.000423437,59,139336,,,2361.627119,0.000614821,88,143131,,,1626.488636,0.001460201,209,143131,,,684.8373206,4380,,,,,4816,,8271,4286,4173,0.33,,,,,0.37,0.29,0.25,0.23,0.34,0.45,,,,,0.46,0.49,0.35,0.33,0.46,0.904193235,83665,92530,0.894157863,0.914228607,0.581079845,19060,32801,0.541208807,0.620950883,0.036845065,2424,65789,,,0.146,4868,,0.092382979,0.199617021,0.24822695,0,0.636272016,,,,0.420879121,0.322910089,0.518848153,0.205580029,0.143723488,0.267436571,0.103277862,0.078959808,0.127595916,4.10772444,125873,30643,3.789759699,4.42568918,0.228960891,7441,32499,0.190556817,0.267364966,9.832347706,137,139336,,,73.4907518,499,678997,67.04255196,79.93895164,,,,,,,80.19246191,54.85158458,113.207829,40.53716947,28.82589025,55.41564513,83.23372899,75.29229011,91.17516787,,,,9.1,,,,,1,,,,,0.128839331,6355,49325,0.115122424,0.142556238,0.103826819,0.09048826,0.117165377,0.022706538,0.016756415,0.028656661,0.009832742,0.005976012,0.013689472,0.779968961,49755,63791,0.758835956,0.801101966,0.863636364,0.73825479,0.989017938,0.831443689,0.639862105,1,0.784355938,0.701863227,0.86684865,0.744028103,0.693896131,0.794160075,0.781275853,0.754544064,0.808007641,0.32,,63791,0.293118775,0.346881225,74.77156142,,,74.31243757,75.23068527,,,,82.62468814,78.06705637,87.18231991,71.64279493,69.44181073,73.84377913,83.64903444,80.48447665,86.81359223,74.08414713,73.55282629,74.61546797,,,,492.8727312,2544,383654,472.7419957,513.0034668,,,,,,,628.5761796,529.9478678,727.2044913,273.8924485,223.292492,324.492405,524.0758204,500.5521777,547.5994631,,,,57.63248528,83,144016,45.90395282,71.44413662,,,,,,,109.6491228,52.58101641,201.6486408,39.13540851,20.8379568,66.92274044,63.222343,47.88398519,81.91187848,,,,6.81295346,77,11302,5.376676328,8.515022872,,,,,,,,,,,,,6.842882061,5.094975156,8.997126174,,,,,,,0.114,,,0.097,0.131,0.175,,,0.151,0.199,0.097,,,0.082,0.113,169,196,115963,,,0.137,18350,,,,0.058968463,7127.93095,120877,,,12.80607733,53,413866,9.59263069,16.75066445,,,,,,,,,,,,,13.98892598,10.12385509,18.84299149,,,,0.353,,,0.337,0.367,0.227277284,18139,79810,0.204638986,0.249915581,0.119774338,4140,34565,0.092370083,0.147178594,0.001013058,145,143131,,,987.1103448,0.942042763,1431.905,1520,,,0.09749831,721,7395,0.06176534,0.13323128,2.950754365,,,,,,,2.476748159,2.880360255,3.041746804,3.103405138,,,,,,3.072416339,2.510033238,2.986550756,3.235925165,0.103534059,,,,,-734.1777335,,,,,0.787295075,43365,55081,0.740090491,0.834499658,66141,,,62318.70213,69963.29787,58250,25616.29787,90883.70213,58565,36890.61702,80239.38298,43125,30529.76596,55720.23404,60672,50637.2766,70706.7234,69312,66770.55319,71853.44681,,,,,,0.579362819,14239,24577,,,38.90367911,,,,,0.244432349,,66141,,,4.916656674,41,8339,,,4.82470765,45,932699,3.519174867,6.455838432,,,,,,,,,,,,,4.569215766,3.125340201,6.450369333,,,,20.04475115,135,678997,16.55253563,23.53696667,19.88226752,,,,,,,,,,,,,23.60409775,19.19077761,28.0174179,,,,16.20036613,110,678997,13.17286329,19.22786896,,,,,,,,,,,,,19.13192349,15.51470112,23.33932418,,,,17.90502617,167,932699,15.18938242,20.62066991,,,,,,,31.07633811,18.10311215,49.75622773,18.57786447,11.90318831,27.64238973,17.70571109,14.5892723,20.82214989,,,,11.43939394,,13200,,,69,82,0.61322885,59474,96985,,,0.622,,,,,48.6418005,,,,,0.67110821,34954,52084,0.653693172,0.688523248,0.119803529,6049,50491,0.10538302,0.134224039,0.840795638,43792,52084,0.826066203,0.855525073,143131,,,,,0.236706234,33880,143131,,,0.181931238,26040,143131,,,0.058051715,8309,143131,,,0.018835892,2696,143131,,,0.015349575,2197,143131,,,0.001013058,145,143131,,,0.155144588,22206,143131,,,0.732210353,104802,143131,,,0.024046164,3092,128586,,,0.50890443,72840,143131,,,0.476896631,64640,135543,, -48,183,48183,TX,Gregg County,2024,1,11744.04363,2421,347447,11073.27257,12414.81469,0,,,,2,,,,2,18092.83614,16247.52631,19938.14597,,6612.255454,5481.445389,7743.065519,,11225.84064,10333.42768,12118.2536,,,,,2,,0.202,,,0.174,0.231,3.976411015,,,3.170253246,4.792002121,5.540668149,,,4.510835759,6.615129182,0.088531016,1039,11736,0.083391589,0.093670443,0,,,,0.1,0.051990001,0.148009999,0.153097,0.139167251,0.16702675,0.073617694,0.064519494,0.082715893,0.067405686,0.060834734,0.073976638,,,,0.078838174,0.044814298,0.112862051,0.188,,,0.155,0.225,0.396,,,0.319,0.476,6.6,0.099583359,0.151,,,0.283,,,0.236,0.331,0.83211391,103381,124239,,,0.175044864,,,0.139718108,0.214376183,0.169230769,22,130,0.126937589,0.215776792,726.2,902,124201,,,34.72465802,990,28510,32.56155874,36.88775729,,,,,,,42.01155708,36.99103699,47.03207718,37.12650985,32.86808714,41.38493257,30.14143288,27.14994214,33.13292361,,,,39.03559127,27.03328173,54.54832617,0.220056592,22242,101074,0.199801273,0.240311911,0.000909816,113,124201,,,1099.123894,0.00100444,126,125443,,,995.5793651,0.002216146,278,125443,,,451.233813,3607,,,,,7093,,6390,3578,3250,0.39,,,,,,0.28,0.37,0.23,0.4,0.45,,,,,0.31,0.43,0.36,0.32,0.47,0.864288745,69252,80126,0.849709179,0.878868311,0.586637459,18746,31955,0.543895167,0.629379751,0.042472467,2418,56931,,,0.226,7155,,0.168808511,0.283191489,,,,0.079166667,0,0.529763595,0.313362559,0.234460405,0.392264713,0.372897294,0.321754573,0.424040015,0.120555962,0.078860794,0.16225113,4.58811215,122732,26750,4.120524703,5.055699596,0.285392203,9114,31935,0.245417074,0.325367332,13.20440254,164,124201,,,72.96807324,452,619449,66.2410995,79.69504698,,,,,,,91.52626008,74.79791927,108.2546009,34.19031497,24.53556032,46.3830229,82.39057679,72.90781992,91.87333366,,,,9.5,,,,,1,,,,,0.153546291,7090,46175,0.136405014,0.170687569,0.120748113,0.104834054,0.136662173,0.0292366,0.02146286,0.03701034,0.010720087,0.0066312,0.014808973,0.832889552,46920,56334,0.814452585,0.851326519,,,,0.825905293,0.768892963,0.882917622,0.867149365,0.83106747,0.903231261,0.816489139,0.782335439,0.850642839,0.866587933,0.851334197,0.881841668,0.204,,56334,0.181393079,0.226606921,72.84789985,,,72.35241747,73.34338223,,,,,,,67.95972812,66.81974392,69.09971232,78.94547661,76.89466692,80.99628631,73.2872844,72.64411076,73.93045804,,,,591.5400826,2421,347447,567.2468045,615.8333606,,,,,,,851.9720163,785.9167022,918.0273304,343.7839633,286.2588326,401.309094,572.3084,541.9813422,602.6354578,,,,61.67369652,87,141065,49.39810267,76.07427681,,,,,,,91.43553795,60.25659566,133.0339072,40.24144869,23.44212681,64.43045761,65.9832306,47.35070549,89.51370289,,,,7.078452852,84,11867,5.646051213,8.763606284,,,,,,,11.54734411,7.790944581,16.48455173,,,,6.159802886,4.290528406,8.56679468,,,,,,,0.126,,,0.109,0.144,0.182,,,0.159,0.208,0.119,,,0.102,0.136,498.7,506,101472,,,0.151,18750,,,,0.099583359,12122.28234,121730,,,11.01040618,41,372375,7.901257568,14.93685923,,,,,,,,,,,,,13.76985352,9.22188701,19.77580658,,,,0.37,,,0.357,0.383,0.264703777,18493,69863,0.238491011,0.290916543,0.126547917,4149,32786,0.097952172,0.155143662,0.001785672,224,125443,,,560.0133929,0.962818182,1588.65,1650,,,0.112440857,808,7186,0.073775394,0.15110632,2.828349559,,,,,,,2.37205517,2.798663464,3.155255741,3.066609985,,,,,,,2.580644501,3.053478931,3.375007363,0.102025552,,,,,-5284.684,,,,,0.71936688,40086,55724,0.657030331,0.781703428,60932,,,57724.51064,64139.48936,,,,79951,26297.04255,133604.9575,42517,35200.06383,49833.93617,54618,46569.48936,62666.51064,72675,69279.25532,76070.74468,,,,,,0.701065728,14538,20737,,,36.18370319,,,,,0.230158209,,60932,,,5.538248529,48,8667,,,11.18410888,97,867302,9.069558882,13.64366437,,,,,,,37.61026646,29.08777736,47.84948055,,,,5.245785213,3.426721065,7.686290762,,,,16.76168349,102,619449,13.44049085,20.08287614,16.46624662,,,,,,,,,,,,,23.74758303,18.83035642,29.55592272,,,,19.37205484,120,619449,15.90595444,22.83815524,,,,,,,31.03934037,22.07200529,42.4318001,,,,21.02380235,16.50820674,26.39345862,,,,20.4081162,177,867302,17.40153903,23.41469338,,,,,,,28.49262611,21.14777629,37.56397544,13.26060095,8.310348014,20.07670919,20.78137988,16.76798548,24.79477428,,,,9.193548387,,12400,,,26,88,0.564494118,47982,85000,,,0.608,,,,,75.20087435,,,,,0.595260381,27982,47008,0.574382368,0.616138395,0.127548478,5887,46155,0.109586295,0.145510661,0.865022975,40663,47008,0.848818287,0.881227663,125443,,,,,0.255701793,32076,125443,,,0.16020025,20096,125443,,,0.202163532,25360,125443,,,0.009853081,1236,125443,,,0.014237542,1786,125443,,,0.001283451,161,125443,,,0.202219335,25367,125443,,,0.558684024,70083,125443,,,0.026798721,3109,116013,0.022101283,0.031496159,0.509809236,63952,125443,,,0.134603466,16723,124239,, -48,185,48185,TX,Grimes County,2024,1,10259.33256,574,82483,8941.78903,11576.87609,0,,,,2,,,,2,13331.30786,9574.883281,17087.73243,,8493.497651,6380.576842,11082.17204,,10431.71627,8575.461615,12287.97093,,,,,2,,0.214,,,0.185,0.244,4.182233137,,,3.333819484,5.053389364,5.593167257,,,4.532374629,6.709209592,0.087563452,207,2364,0.076168956,0.098957948,0,,,,,,,0.187739464,0.140363148,0.235115779,0.072229141,0.054324118,0.090134164,0.075039495,0.060526877,0.089552112,,,,,,,0.195,,,0.162,0.233,0.413,,,0.334,0.496,6.5,0.122012038,0.145,,,0.284,,,0.238,0.336,0.31464398,9209,29268,,,0.176134847,,,0.142133497,0.215694676,0.194029851,13,67,0.133309103,0.261264716,402.8,122,30287,,,30.22295624,183,6055,25.84403162,34.60188085,,,,,,,29.98965874,20.08454513,43.07015247,39.17995444,31.33890626,48.386925,24.12675549,18.69790411,30.64012662,,,,,,,0.222373435,4902,22044,0.197352158,0.247394712,0.00026414,8,30287,,,3785.875,0.000195097,6,30754,,,5125.666667,0.000195097,6,30754,,,5125.666667,3028,,,,,,,5455,,2921,0.37,,,,,,,0.35,0.35,0.38,0.44,,,,,,,0.4,0.41,0.44,0.807831475,16298,20175,0.778021058,0.837641891,0.535192947,3703,6919,0.461168426,0.609217468,0.045113438,517,11460,,,0.208,1425,,0.131744681,0.284255319,,,,,,,0.585051546,0.352857986,0.817245107,0.136183341,0.064617339,0.207749342,0.166078871,0.082368855,0.249788888,4.67232293,125008,26755,3.952401889,5.392243972,0.256557999,1692,6595,0.181994175,0.331121822,7.263842573,22,30287,,,81.94294292,119,145223,67.22001629,96.66586956,,,,,,,107.3963392,68.08006648,161.1472399,44.83676615,25.6280859,72.8120992,93.00463846,73.63264811,115.9115292,,,,9.6,,,,,1,,,,,0.117327539,1080,9205,0.085355341,0.149299738,0.068671405,0.045370633,0.091972178,0.036936448,0.016609484,0.057263412,0.016295492,0.000847562,0.031743421,0.827701809,9382,11335,0.787140057,0.86826356,,,,,,,,,,0.921125207,0.816402735,1,0.789540546,0.715953694,0.863127399,0.569,,11335,0.492549452,0.645450548,74.93250086,,,73.86832344,75.99667828,,,,,,,71.02479007,68.25827469,73.79130546,77.50798326,74.46675753,80.549209,74.84134294,73.43830261,76.24438327,,,,511.0217501,574,82483,467.0220246,555.0214756,,,,,,,698.8278862,562.0181575,835.637615,478.5997348,381.2020172,593.2963791,500.3311381,444.4863474,556.1759288,,,,73.5525901,21,28551,45.53021255,112.4329471,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.13,,,0.114,0.148,0.18,,,0.158,0.205,0.123,,,0.107,0.142,410.4,105,25587,,,0.145,4200,,,,0.122012038,3246.008268,26604,,,15.76913979,14,88781,8.621135464,26.45793708,,,,,,,,,,,,,21.13596188,10.55099602,37.81807416,,,,0.369,,,0.356,0.382,0.260437504,4036,15497,0.228267291,0.292607717,0.135288141,932,6889,0.09835197,0.172224311,0.000292645,9,30754,,,3417.111111,0.937697161,297.25,317,,,,,,,,2.696831151,,,,,,,2.102482714,2.529958367,3.007069878,2.991446943,,,,,,,2.479740441,2.887720694,3.236384627,0.167933763,,,,,-4670.054,,,,,0.655082751,37286,56918,0.520726277,0.789439225,61188,,,53724.51064,68651.48936,36792,12970.55319,60613.44681,,,,29542,9828.808511,49255.19149,60727,34622.65957,86831.34043,72995,56783.59575,89206.40426,,,,,,0.651423641,3020,4636,,,47.58481849,,,,,0.286494084,,61188,,,4.904966278,8,1631,,,5.488857619,11,200406,2.740017947,9.821082459,,,,,,,,,,,,,,,,,,,18.52267411,29,145223,12.20655895,26.94951835,19.96928861,,,,,,,,,,,,,27.31915364,17.12076814,41.36152692,,,,20.65788477,30,145223,13.93778811,29.49041501,,,,,,,,,,,,,28.25457371,18.10323851,42.04056603,,,,22.45441753,45,200406,16.37840623,30.04577732,,,,,,,33.25463071,15.94688802,61.15644988,,,,22.14141552,14.46350772,32.4423038,,,,8.076923077,,2600,,,21,0,0.58945869,12414,21060,,,0.475,,,,,24.63688435,,,,,0.782168083,7641,9769,0.747519395,0.816816771,0.105750381,971,9182,0.066874212,0.144626551,0.787695772,7695,9769,0.748448042,0.826943503,30754,,,,,0.225043897,6921,30754,,,0.190024062,5844,30754,,,0.133185927,4096,30754,,,0.010340118,318,30754,,,0.005397672,166,30754,,,0.001300644,40,30754,,,0.251609547,7738,30754,,,0.591630357,18195,30754,,,0.034217802,953,27851,0.021530245,0.046905359,0.459907654,14144,30754,,,0.745182452,21810,29268,, -48,187,48187,TX,Guadalupe County,2024,1,7042.486184,2103,484951,6597.14176,7487.830607,0,,,,2,,,,2,8418.320515,6249.635665,10587.00537,,6723.920881,6062.594575,7385.247187,,7567.233458,6873.613453,8260.853463,,,,,2,,0.171,,,0.147,0.198,3.547324083,,,2.824686396,4.353244674,4.918752366,,,3.981888309,5.931871971,0.079349396,1044,13157,0.074730939,0.083967852,0,,,,0.045283019,0.020248564,0.070317474,0.170769231,0.141839665,0.199698796,0.077470905,0.070565052,0.084376758,0.072997416,0.066518016,0.079476816,,,,0.074626866,0.038296975,0.110956756,0.14,,,0.111,0.17,0.376,,,0.302,0.451,7.3,0.12380454,0.107,,,0.256,,,0.211,0.305,0.664499207,114763,172706,,,0.19118744,,,0.153375612,0.232195064,0.247311828,23,93,0.194237194,0.30291323,322,570,177036,,,16.97624295,701,41293,15.71952261,18.23296329,,,,,,,8.600917431,5.803002873,12.27834444,23.969766,21.78638578,26.15314621,11.56883149,9.9194745,13.21818847,,,,7.746478873,3.867014343,13.8605905,0.148452908,22281,150088,0.132963546,0.163942269,0.000259834,46,177036,,,3848.608696,0.000388488,71,182760,,,2574.084507,0.000519807,95,182760,,,1923.789474,2559,,,,,,1093,2837,2294,2664,0.36,,,,,,0.27,0.34,0.32,0.38,0.35,,,,,,0.34,0.24,0.33,0.37,0.890912552,102969,115577,0.880990071,0.900835033,0.594151333,28221,47498,0.558291839,0.630010827,0.033779284,2891,85585,,,0.131,5639,,0.096446809,0.165553192,,,,0.040139616,0,0.223179418,0.190373175,0.105049286,0.275697063,0.160652343,0.119015184,0.202289501,0.060311958,0.03907307,0.081550847,3.779646083,154425,40857,3.441257661,4.118034505,0.19956192,8473,42458,0.169718752,0.229405088,5.36614022,95,177036,,,56.21571558,471,837844,51.13876003,61.29267112,,,,,,,38.40540748,24.85395476,56.6939576,42.95306991,35.8123355,50.09380431,72.4293632,64.21951468,80.63921173,,,,9.8,,,,,0,,,,,0.116675642,6500,55710,0.101324884,0.132026399,0.079604248,0.066076935,0.093131561,0.035002693,0.026574648,0.043430737,0.007808293,0.004134497,0.011482089,0.790015372,65783,83268,0.773965356,0.806065388,,,,,,,0.675027747,0.558884897,0.791170597,0.781153733,0.757396126,0.80491134,0.702648256,0.688982301,0.716314212,0.442,,83268,0.41454399,0.46945601,78.41150861,,,77.96074019,78.86227703,,,,88.40809947,82.26719283,94.54900611,77.04753645,74.99285422,79.10221869,79.09411776,78.23664811,79.95158741,77.74602633,77.12637366,78.36567901,,,,363.9818811,2103,484951,348.1949591,379.7688031,,,,,,,395.9135125,335.086083,456.740942,358.7975923,331.0272577,386.5679269,381.1445698,358.9706643,403.3184752,,,,51.23890273,95,185406,41.45533212,62.63690152,,,,,,,,,,45.75585147,32.53688331,62.54975523,58.46357719,42.64373438,78.22886606,,,,5.500464828,71,12908,4.295908666,6.938087938,,,,,,,,,,5.246020261,3.513342102,7.534160173,4.654895666,3.117456683,6.685206652,,,,,,,0.107,,,0.092,0.123,0.158,,,0.136,0.181,0.106,,,0.091,0.122,135.2,199,147241,,,0.107,18160,,,,0.12380454,16284.38252,131533,,,8.940875545,46,514491,6.545844613,11.92587503,,,,,,,,,,6.494706814,3.458157847,11.10614645,11.96215175,8.070813555,17.07671543,,,,0.358,,,0.346,0.371,0.17258528,18497,107176,0.153521451,0.19164911,0.093045903,4204,45182,0.071599095,0.114492712,0.000481506,88,182760,,,2076.818182,0.93902704,1944.725,2071,,,0.084620894,827,9773,0.049832712,0.119409076,2.955177902,,,,,,3.091055502,2.677647581,2.771096588,3.249270365,3.070649132,,,,,,3.284548363,2.793177655,2.913656667,3.338446754,0.056197497,,,,,-2013.10375,,,,,0.761489761,48232,63339,0.706934468,0.816045055,86043,,,79234.82979,92851.17021,95357,35305.93617,155408.0638,132662,63810.59575,201513.4043,77852,61491.65957,94212.34043,77079,68827.93617,85330.06383,97882,93054.08511,102709.9149,,,,,,0.424537085,12312,29001,,,42.29173241,,,,,0.216496403,,86043,,,4.624618715,47,10163,,,3.844950619,44,1144358,2.793747006,5.161666741,,,,,,,,,,3.876923638,2.258450888,6.207330308,3.507584274,2.142523599,5.417179429,,,,15.16904054,127,837844,12.50951245,17.82856863,15.15795303,,,,,,,,,,10.96403278,7.679073769,15.17884286,19.28778947,15.24619719,24.07203417,,,,12.53216589,105,837844,10.13505814,14.92927365,,,,,,,,,,6.798327611,4.26047572,10.2927497,18.41013914,14.5050957,23.04303442,,,,14.24379434,163,1144358,12.05710059,16.43048809,,,,,,,,,,13.91131423,10.6410531,17.86966511,15.60875002,12.53510796,19.20791002,,,,10.40697674,,17200,,,72,107,0.662673952,77619,117130,,,0.688,,,,,48.75904384,,,,,0.778194929,47052,60463,0.762520514,0.793869344,0.085211926,5016,58865,0.071646101,0.098777751,0.911086119,55087,60463,0.89842442,0.923747818,182760,,,,,0.238865178,43655,182760,,,0.148467936,27134,182760,,,0.07886299,14413,182760,,,0.010762749,1967,182760,,,0.021208142,3876,182760,,,0.002878092,526,182760,,,0.397608886,72667,182760,,,0.476953382,87168,182760,,,0.027635551,4523,163666,0.022196195,0.033074906,0.500448676,91462,182760,,,0.248219518,42869,172706,, -48,189,48189,TX,Hale County,2024,1,10802.36489,570,92424,9556.477469,12048.25231,0,,,,2,,,,2,9410.16182,5665.532129,14695.13334,1,11553.09347,9928.713309,13177.47363,,9887.438385,7672.094494,12102.78228,,,,,2,,0.242,,,0.209,0.277,4.333028289,,,3.466446175,5.336126384,5.322811794,,,4.224868175,6.532595407,0.083585096,249,2979,0.073646356,0.093523835,0,,,,,,,0.174418605,0.094216974,0.254620235,0.086206897,0.074331827,0.098081966,0.064335664,0.046351553,0.082319776,,,,,,,0.176,,,0.143,0.212,0.414,,,0.33,0.503,7,0.081452229,0.143,,,0.327,,,0.275,0.383,0.650574995,21158,32522,,,0.17728264,,,0.140476575,0.219209787,0.185185185,5,27,0.09124211,0.297028208,527.6,170,32220,,,41.10212911,361,8783,36.86212001,45.34213822,,,,,,,,,,50.1512498,44.61287229,55.68962731,16.21363853,11.22841602,22.65693471,,,,,,,0.242216171,6138,25341,0.217194895,0.267237448,0.000403476,13,32220,,,2478.461539,0.000157099,5,31827,,,6365.4,0.001508154,48,31827,,,663.0625,1579,,,,,,,,1401,1764,0.3,,,,,,,0.21,0.26,0.33,0.29,,,,,,,0.13,0.24,0.31,0.747888174,14874,19888,0.71814055,0.777635797,0.467146166,3832,8203,0.39345395,0.540838383,0.049169094,574,11674,,,0.302,2506,,0.222170213,0.381829787,,,,,,,,,,0.291861553,0.22383799,0.359885115,0.147514698,0.042585687,0.252443709,4.421618176,97112,21963,3.758530272,5.08470608,0.362347245,3143,8674,0.266021881,0.458672608,13.96648045,45,32220,,,64.92569615,108,166344,52.68063922,77.17075308,,,,,,,,,,51.72430943,38.6301883,67.82955024,87.92174964,64.82655754,116.5714844,,,,6.6,,,,,1,,,,,0.163452709,1780,10890,0.132483283,0.194422135,0.109048724,0.082408251,0.135689197,0.044077135,0.023020155,0.065134115,0.019283747,0.00784006,0.030727434,0.832367365,11202,13458,0.797522279,0.867212451,,,,,,,,,,0.831111704,0.781150219,0.881073188,0.825559258,0.78009979,0.871018725,0.21,,13458,0.163577764,0.256422236,73.05607474,,,72.12028811,73.99186138,,,,,,,,,,72.72913436,71.39822258,74.06004615,73.6564398,72.03736123,75.27551836,,,,571.6666717,570,92424,523.9871384,619.3462051,,,,,,,717.746899,480.6863629,1030.804273,593.9789965,526.6061618,661.3518312,541.5055765,466.3383899,616.6727631,,,,57.97832115,23,39670,36.75328217,86.99594882,,,,,,,,,,62.84916201,37.24839658,99.32877188,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.138,,,0.119,0.158,0.173,,,0.151,0.197,0.14,,,0.119,0.162,159.4,42,26350,,,0.143,4710,,,,0.081452229,2954.5167,36273,,,,,,,,,,,,,,,,,,,,,,,,,,0.363,,,0.349,0.376,0.294780059,5026,17050,0.261418357,0.328141761,0.138590066,1211,8738,0.102845386,0.174334747,0.000754077,24,31827,,,1326.125,0.937185567,454.535,485,,,0.161396885,342,2119,0.070689139,0.252104631,2.673624653,,,,,,,2.282886167,2.639144199,2.936075606,2.969243367,,,,,,,2.734560933,2.922853177,3.23351006,0.060704697,,,,,-3797.551725,,,,,0.75469965,35329,46812,0.610584832,0.898814467,49571,,,42821.21277,56320.78723,88472,74470.80851,102473.1915,,,,,,,50766,44544.04255,56987.95745,52444,43447.06383,61440.93617,,,,,,0.775114504,5077,6550,,,40.69712548,,,,,0.299126505,,49571,,,2.80767431,6,2137,,,4.255916788,10,234967,2.040877526,7.826782502,,,,,,,,,,,,,,,,,,,9.668016521,15,166344,5.285594597,16.22128893,9.017457798,,,,,,,,,,,,,,,,,,,9.017457798,15,166344,5.047002677,14.87292531,,,,,,,,,,,,,,,,,,,17.87485051,42,234967,12.88262,24.16160515,,,,,,,,,,18.45856762,12.0577492,27.04607832,16.5943324,8.835783113,28.37681378,,,,22.7027027,,3700,,,35,49,0.432191163,9586,22180,,,0.51,,,,,50.03330263,,,,,0.617350186,6789,10997,0.584428309,0.650272064,0.119504703,1245,10418,0.086323672,0.152685735,0.790215513,8690,10997,0.756605473,0.823825554,31827,,,,,0.263958274,8401,31827,,,0.140352531,4467,31827,,,0.045747322,1456,31827,,,0.019103277,608,31827,,,0.006503912,207,31827,,,0.002010871,64,31827,,,0.62911993,20023,31827,,,0.306155151,9744,31827,,,0.063692388,1943,30506,0.045770542,0.081614235,0.476105194,15153,31827,,,0.304624562,9907,32522,, -48,191,48191,TX,Hall County,2024,1,8834.886536,68,7704,5146.646983,14145.50919,1,,,,2,,,,2,,,,2,,,,2,13409.51238,6131.682942,25455.43148,1,,,,2,,0.228,,,0.199,0.26,4.362695875,,,3.525697864,5.285717565,5.467119773,,,4.421702184,6.557298385,0.105590062,17,161,0.058119654,0.15306047,1,,,,,,,,,,,,,,,,,,,,,,0.191,,,0.158,0.229,0.403,,,0.318,0.49,6.1,0.130086416,0.159,,,0.31,,,0.258,0.364,0.749026549,2116,2825,,,0.152341881,,,0.119971264,0.186637466,0,0,6,0,0.28246769,456.9,13,2845,,,31.11111111,21,675,19.25826813,47.55663813,,,,,,,,,,37.90087464,20.18061951,64.81164991,,,,,,,,,,0.285244361,607,2128,0.254265638,0.316223084,,0,2845,,,,0,0,2810,,,-2810,,0,2810,,,,4275,,,,,,,,,3885,0.17,,,,,,,,,0.21,0.2,,,,,,,,0.33,0.19,0.817997978,1618,1978,0.783487292,0.852508663,0.485454546,267,550,0.329249949,0.641659142,0.042086002,46,1093,,,0.386,231,,0.245404255,0.526595745,,,,,,,0.897959184,0.104122434,1,0.415841584,0.227425891,0.604257277,0.036585366,0,0.137978818,4.419250744,87647,19833,2.898057401,5.940444086,0.304,190,625,0.1506486,0.4573514,10.54481547,3,2845,,,101.0305112,15,14847,56.54601019,166.634464,,,,,,,,,,,,,170.337024,93.12483607,285.7965826,,,,6.3,,,,,1,,,,,0.116,145,1250,0.065768502,0.166231498,0.0544,0.009782383,0.099017617,0.052,0.015978599,0.088021401,0.0192,0,0.041242081,0.771428571,891,1155,0.714158424,0.828698719,,,,,,,,,,,,,0.754850088,0.707115354,0.802584823,0.239,,1155,0.158779932,0.319220069,75.1367472,,,71.81156541,78.46192899,,,,,,,,,,,,,,,,,,,529.0352951,68,7704,402.7261783,682.4169861,,,,,,,,,,,,,617.8335494,419.7879215,876.9654064,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.137,,,0.119,0.156,0.183,,,0.16,0.208,0.131,,,0.113,0.15,,,,,,0.159,460,,,,0.130086416,436.1797531,3353,,,,,,,,,,,,,,,,,,,,,,,,,,0.367,,,0.356,0.377,0.339192708,521,1536,0.29868207,0.379703347,0.147151899,93,632,0.109024239,0.185279558,0.000355872,1,2810,,,2810,,,,,,,,,,,2.808470133,,,,,,,,2.68391836,,3.068614314,,,,,,,,2.829829647,,0.009992999,,,,,-21787.34,,,,,0.866241777,42270,48797,0.751813855,0.980669699,40677,,,34587.29787,46766.70213,,,,,,,,,,25938,3013.744681,48862.25532,58036,42913.61702,73158.38298,,,,,,0.809954751,358,442,,,,,,,,0.373282199,,40677,,,7.936507937,1,126,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,300,,,-888,-888,0.547540984,1169,2135,,,0.41,,,,,39.49658157,,,,,0.700436681,802,1145,0.626986627,0.773886736,0.042186002,44,1043,0,0.104385562,0.684716157,784,1145,0.604972184,0.76446013,2810,,,,,0.215302491,605,2810,,,0.239145908,672,2810,,,0.085053381,239,2810,,,0.018505338,52,2810,,,0.00569395,16,2810,,,0.001067616,3,2810,,,0.366548043,1030,2810,,,0.52455516,1474,2810,,,0.035989717,98,2723,0.006116726,0.065862708,0.496441281,1395,2810,,,1,2825,2825,, -48,193,48193,TX,Hamilton County,2024,1,12777.3375,161,22175,9523.501448,16031.17355,0,,,,2,,,,2,,,,2,,,,2,12419.5853,8923.753369,15915.41723,,,,,2,,0.199,,,0.17,0.233,4.196126805,,,3.307337739,5.146185117,5.71280313,,,4.559954162,6.914063021,0.087478559,51,583,0.064543802,0.110413316,0,,,,,,,,,,0.098039216,0.040329395,0.155749037,0.083511777,0.058419797,0.108603758,,,,,,,0.2,,,0.161,0.242,0.37,,,0.29,0.458,5.9,0.122259067,0.173,,,0.276,,,0.228,0.329,0.373996595,3075,8222,,,0.162930035,,,0.127840826,0.202606213,0.142857143,2,14,0.031645086,0.307569357,158,13,8229,,,21.17061021,34,1606,14.661263,29.58380579,,,,,,,,,,,,,22.04081633,14.52503684,32.06823057,,,,,,,0.228465026,1411,6176,0.201060771,0.255869281,0.000972172,8,8229,,,1028.625,0.000602555,5,8298,,,1659.6,0.00120511,10,8298,,,829.8,3053,,,,,,,,,3119,0.34,,,,,,,,,0.35,0.2,,,,,,,,0.22,0.2,0.893152099,5191,5812,0.861440965,0.924863233,0.453364817,768,1694,0.336945713,0.569783921,0.033941887,132,3889,,,0.207,354,,0.129553192,0.284446809,,,,,,,,,,0.2845953,0.105994013,0.463196588,0.110188679,0.040875652,0.179501707,5.202765184,115902,22277,3.6578521,6.747678268,0.199768385,345,1727,0.082293394,0.317243375,17.0130028,14,8229,,,113.8708989,48,42153,83.95941172,150.9762916,,,,,,,,,,,,,113.5879597,81.14890371,154.6745619,,,,8.1,,,,,0,,,,,0.133111481,400,3005,0.080421545,0.185801417,0.073308897,0.025626928,0.120990866,0.039933444,0.011407035,0.068459854,0.018302829,0.003243122,0.033362535,0.78442029,2598,3312,0.725387692,0.843452888,,,,,,,,,,,,,0.75566232,0.703035957,0.808288683,0.239,,3312,0.176053717,0.301946283,74.00654072,,,71.71116733,76.30191412,,,,,,,,,,,,,73.86204135,71.40583133,76.31825138,,,,523.7084214,161,22175,433.6907802,613.7260625,,,,,,,,,,,,,535.9499647,437.2996959,634.6002334,,,,125.3761284,10,7976,60.12272688,230.571164,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.13,,,0.111,0.151,0.189,,,0.163,0.216,0.111,,,0.094,0.129,99.9,7,7004,,,0.173,1420,,,,0.122259067,1041.280473,8517,,,,,,,,,,,,,,,,,,,,,,,,,,0.352,,,0.335,0.368,0.262114041,1163,4437,0.228752339,0.295475743,0.145196507,266,1832,0.105877358,0.184515656,0.000964088,8,8298,,,1037.25,0.943318966,109.425,116,,,,,,,,3.125584216,,,,,,,,2.525732605,3.249210506,3.050403594,,,,,,,,2.567691014,3.143673748,0.031576194,,,,,-2733.145,,,,,0.706781486,42679,60385,0.456253874,0.957309097,59753,,,51130.19149,68375.80851,,,,,,,,,,63000,39369.19149,86630.80851,54286,41402.42553,67169.57447,,,,,,0.521396396,926,1776,,,,,,,,0.245862132,,59753,,,11.52073733,5,434,,,,,,,,,,,,,,,,,,,,,,,,,,25.36692949,10,42153,10.95163966,49.98296368,23.72310393,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,35.82639552,21,58616,22.17710349,54.76445123,,,,,,,,,,,,,34.55425017,20.12912409,55.32470185,,,,0,,800,,,0,0,0.669899923,4351,6495,,,0.497,,,,,25.79170226,,,,,0.832960715,2608,3131,0.807857216,0.858064215,0.099598931,298,2992,0.046140591,0.15305727,0.816991377,2558,3131,0.758458287,0.875524466,8298,,,,,0.208845505,1733,8298,,,0.257049892,2133,8298,,,0.01000241,83,8298,,,0.022174018,184,8298,,,0.009881899,82,8298,,,0.000723066,6,8298,,,0.150036153,1245,8298,,,0.814895156,6762,8298,,,0.032204473,252,7825,0.012786414,0.051622532,0.49879489,4139,8298,,,1,8222,8222,, -48,195,48195,TX,Hansford County,2024,1,5040.108243,59,14725,3261.69231,7440.194019,0,,,,2,,,,2,,,,2,,,,2,7719.482359,4220.312839,12951.9797,1,,,,2,,0.232,,,0.202,0.264,4.271216115,,,3.705694265,4.905650401,5.281307217,,,4.637507037,5.990652674,0.075697211,38,502,0.052557854,0.098836568,0,,,,,,,,,,0.084175084,0.052597722,0.115752447,0.065656566,0.031156825,0.100156306,,,,,,,0.182,,,0.151,0.212,0.391,,,0.35,0.432,8.3,0.036268878,0.105,,,0.314,,,0.277,0.352,0.619110691,3272,5285,,,0.171290732,,,0.153306426,0.190597063,0,0,6,0,0.28246769,77.5,4,5159,,,21.19460501,33,1557,14.58939086,29.7651055,,,,,,,,,,29.88260406,19.85677338,43.18868297,,,,,,,,,,0.297347174,1289,4335,0.266368451,0.328325898,0.000581508,3,5159,,,1719.666667,0.000194137,1,5151,,,5151,0.000776548,4,5151,,,1287.75,1350,,,,,,,,2549,717,0.33,,,,,,,,0.16,0.38,0.32,,,,,,,,0.28,0.33,0.721611722,2364,3276,0.671368709,0.771854734,0.626229508,764,1220,0.485547828,0.766911188,0.023974983,69,2878,,,0.162,237,,0.101234043,0.222765957,,,,,,,,,,0.095444686,0.005613403,0.185275968,0.143103448,0.000936353,0.285270543,4.196302521,124840,29750,2.690422338,5.702182705,0.164690382,250,1518,0.065635853,0.263744911,17.44524133,9,5159,,,93.46842637,25,26747,60.48783732,137.9778356,,,,,,,,,,,,,152.4390244,93.11371635,235.4297096,,,,6,,,,,0,,,,,0.102150538,190,1860,0.042219533,0.162081542,0.075268817,0.015258123,0.135279512,0.02311828,0,0.056063785,0.002150538,0,0.015215304,0.822149033,1997,2429,0.749175001,0.895123064,,,,,,,,,,0.761133603,0.63620053,0.886066677,0.821858864,0.755442872,0.888274856,0.264,,2429,0.171915523,0.356084477,78.06741543,,,76.11209194,80.02273893,,,,,,,,,,82.10090371,75.50659223,88.69521519,76.24645379,73.36726019,79.12564738,,,,332.0125882,59,14725,251.463092,430.160818,,,,,,,,,,,,,399.5735218,278.3175983,555.710042,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.136,,,0.12,0.152,0.177,,,0.159,0.195,0.126,,,0.113,0.138,,,,,,0.105,560,,,,0.036268878,203.5772111,5613,,,,,,,,,,,,,,,,,,,,,,,,,,0.347,,,0.332,0.361,0.327349525,930,2841,0.290413355,0.364285695,0.240305149,378,1573,0.184305149,0.296305149,0.000582411,3,5151,,,1717,,,,,,,,,,,3.06765667,,,,,,,,2.791044074,3.382795511,3.561716126,,,,,,,,3.374169208,3.839581502,0.035634561,,,,,-3932.098667,,,,,0.721027859,34008,47166,0.569435414,0.872620304,69064,,,60604.42553,77523.57447,,,,,,,,,,64474,36976.80851,91971.19149,58902,44941.31915,72862.68085,,,,,,0.540762902,723,1337,,,,,,,,0.219854048,,69064,,,2.450980392,1,408,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,31.66644676,12,37895,16.36251513,55.31490975,,,,,,,,,,,,,,,,,,,,,700,,,0,-888,0.663533225,2047,3085,,,0.51,,,,,0.003233798,,,,,0.753828701,1329,1763,0.671098665,0.836558737,0.0816935,137,1677,0.009419174,0.153967827,0.841179807,1483,1763,0.786616337,0.895743278,5151,,,,,0.285963891,1473,5151,,,0.153174141,789,5151,,,0.009318579,48,5151,,,0.018637158,96,5151,,,0.004853427,25,5151,,,0.000582411,3,5151,,,0.501261891,2582,5151,,,0.471558921,2429,5151,,,0.082242226,402,4888,0.044605525,0.119878926,0.489613667,2522,5151,,,1,5285,5285,, -48,197,48197,TX,Hardeman County,2024,1,10547.86267,89,10302,7387.593341,14602.68801,0,,,,2,,,,2,,,,2,,,,2,9509.474492,6154.030494,14037.86026,,,,,2,,0.188,,,0.161,0.218,3.92752127,,,3.20413692,4.697110716,5.397378398,,,4.351094303,6.485265826,0.046153846,12,260,0.020649599,0.071658094,1,,,,,,,,,,,,,,,,,,,,,,0.177,,,0.143,0.214,0.377,,,0.295,0.464,7,0.07810915,0.144,,,0.265,,,0.215,0.317,0.002817695,10,3549,,,0.175305355,,,0.13966588,0.215440795,0.428571429,3,7,0.219826693,0.607881191,140.8,5,3552,,,32.25806452,25,775,20.87571851,47.61926671,,,,,,,,,,,,,29.94011976,16.75725775,49.38167439,,,,,,,0.273649873,755,2759,0.243862639,0.303437107,0.001126126,4,3552,,,888,0.001137656,4,3516,,,879,0.001137656,4,3516,,,879,5548,,,,,,,,,5356,0.3,,,,,,,,,0.31,0.33,,,,,,,,0.35,0.33,0.849575415,2101,2473,0.792652852,0.906497977,0.485074627,390,804,0.353276041,0.616873213,0.03515625,63,1792,,,0.248,190,,0.152680851,0.343319149,,,,,,,,,,,,,0.220338983,0.040297209,0.400380757,4.067754485,112929,27762,2.642632316,5.492876653,0.279194631,208,745,0.153640926,0.404748336,14.07657658,5,3552,,,128.7863177,25,19412,83.34371444,190.1140104,,,,,,,,,,,,,160.5259135,99.36807051,245.3809107,,,,7,,,,,1,,,,,0.095808383,160,1670,0.043617297,0.147999469,0.035329341,0,0.071964797,0.038323353,0,0.079058367,0.023952096,0,0.055468597,0.749722531,1351,1802,0.651680087,0.847764974,,,,,,,,,,,,,0.778846154,0.686938155,0.870754153,0.183,,1802,0.10342849,0.26257151,74.83681901,,,71.96360778,77.71003024,,,,,,,,,,,,,75.59470026,72.65550782,78.5338927,,,,590.2221429,89,10302,466.5461113,736.6239461,,,,,,,,,,,,,575.2379525,434.5285674,746.9943289,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.121,,,0.104,0.138,0.177,,,0.153,0.201,0.108,,,0.092,0.125,232.3,7,3013,,,0.144,510,,,,0.07810915,323.2937708,4139,,,,,,,,,,,,,,,,,,,,,,,,,,0.359,,,0.345,0.372,0.308816121,613,1985,0.270688461,0.346943781,0.1863581,153,821,0.138698525,0.234017674,0.000853242,3,3516,,,1172,,,,,,,,,,,2.598602062,,,,,,,,2.40767045,2.946266612,2.880279201,,,,,,,,2.709329044,3.074033443,0.026228398,,,,,-10232.8565,,,,,0.883415664,38092,43119,0.723443489,1.043387839,49539,,,42284.02128,56793.97872,61250,25047.78723,97452.21277,120313,24933.08511,215692.9149,,,,69545,52014.61702,87075.38298,55868,48306.80851,63429.19149,,,,,,0.740315639,516,697,,,,,,,,0.282201902,,49539,,,7.722007722,2,259,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,400,,,0,-888,0.534686971,1580,2955,,,0.402,,,,,61.76735292,,,,,0.677147239,883,1304,0.605985276,0.748309203,0.0616,77,1250,0.005671174,0.117528826,0.71702454,935,1304,0.648190317,0.785858763,3516,,,,,0.221274175,778,3516,,,0.221843003,780,3516,,,0.060580205,213,3516,,,0.015358362,54,3516,,,0.01109215,39,3516,,,0.001137656,4,3516,,,0.249431172,877,3516,,,0.647895336,2278,3516,,,0.046144686,155,3359,0.009192383,0.083096989,0.497155859,1748,3516,,,1,3549,3549,, -48,199,48199,TX,Hardin County,2024,1,11001.14752,1112,160941,10019.21322,11983.08183,0,,,,2,,,,2,15012.05948,10514.2619,20783.01811,,5707.37151,3262.255954,9268.413764,1,11349.22802,10259.91493,12438.5411,,,,,2,,0.177,,,0.148,0.208,4.028673403,,,3.229288484,4.899632644,5.529958123,,,4.545396113,6.540511932,0.086296527,415,4809,0.078360046,0.094233008,0,,,,,,,0.173584906,0.12798245,0.219187362,0.094637224,0.062414018,0.12686043,0.079299441,0.071039506,0.087559375,,,,,,,0.187,,,0.148,0.23,0.357,,,0.291,0.428,6.6,0.092103466,0.153,,,0.271,,,0.224,0.326,0.665166901,37403,56231,,,0.191298024,,,0.154405451,0.230776006,0.152542373,9,59,0.091628798,0.224487826,179,102,56973,,,29.50845963,368,12471,26.49351943,32.52339982,,,,,,,45.63233377,31.78459244,63.46352982,23.12138728,14.81430911,34.40279152,28.86115445,25.57321421,32.14909468,,,,39.56834532,19.75237542,70.79869969,0.16349011,7703,47116,0.145617769,0.18136245,0.000175522,10,56973,,,5697.3,0.000276764,16,57811,,,3613.1875,0.000588123,34,57811,,,1700.323529,2894,,,,,,,2736,,2844,0.41,,,,,,,0.29,,0.42,0.39,,,,,,,0.29,0.35,0.4,0.888593126,34050,38319,0.868552823,0.908633429,0.571835487,8231,14394,0.508235707,0.635435267,0.051501285,1283,24912,,,0.167,2348,,0.118148936,0.215851064,,,,0.049504951,0,0.978162888,0.211488251,0.061426088,0.361550414,0.137175325,0.040393068,0.233957582,0.14185721,0.098553887,0.185160532,5.135186496,137813,26837,4.309975094,5.960397899,0.241617997,3351,13869,0.182980582,0.300255412,11.40891299,65,56973,,,87.03947414,250,287226,76.24994915,97.82899914,,,,,,,171.8869366,113.2745743,250.0864683,,,,87.95680794,76.25384946,99.65976642,,,,9.2,,,,,0,,,,,0.115620576,2450,21190,0.088401005,0.142840147,0.088428158,0.065027979,0.111828337,0.024539877,0.01193799,0.037141765,0.008730533,0.002199769,0.015261297,0.864740671,20324,23503,0.830473167,0.899008176,,,,,,,0.87027027,0.665806836,1,0.762233736,0.734507495,0.789959978,0.827627035,0.781378515,0.873875555,0.527,,23503,0.475918585,0.578081415,74.08470045,,,73.32233249,74.84706842,,,,,,,71.38817903,67.7213273,75.05503075,86.5756129,78.04951946,95.10170633,73.65647658,72.83840936,74.47454381,,,,536.2596783,1112,160941,503.4084507,569.1109059,,,,,,,704.4107038,543.6493098,897.8292667,248.6328045,155.8168548,376.4330539,550.8231776,515.1824286,586.4639266,,,,70.1033617,43,61338,50.73415047,94.42876815,,,,,,,,,,,,,75.88313996,53.69942617,104.1555383,,,,6.177924218,30,4856,4.168219527,8.819370963,,,,,,,,,,,,,5.289733109,3.315047577,8.008719497,,,,,,,0.121,,,0.104,0.141,0.182,,,0.157,0.209,0.107,,,0.092,0.125,119,56,47051,,,0.153,8570,,,,0.092103466,5032.072867,54635,,,16.19620546,28,172880,10.76226091,23.40802634,,,,,,,,,,,,,18.25718285,12.03159854,26.56324251,,,,0.35,,,0.334,0.366,0.19241709,6359,33048,0.169778792,0.215055388,0.098968232,1458,14732,0.073946956,0.123989509,0.000622719,36,57811,,,1605.861111,0.961705321,704.93,733,,,,,,,,3.080842519,,,,,,,2.651652475,2.859187382,3.148940396,3.241650823,,,,,,,2.984739605,3.035114973,3.287178023,0.074227714,,,,,-2484.41506,,,,,0.651263527,44353,68103,0.556970016,0.745557038,70432,,,60882.21277,79981.78723,,,,,,,48125,26130.10638,70119.89362,59339,21916.70213,96761.29787,73563,66563,80563,,,,,,0.468454111,4997,10667,,,65.96906927,,,,,0.210671286,,70432,,,4.584527221,16,3490,,,4.756980869,19,399413,2.864013231,7.428614885,,,,,,,,,,,,,4.068383718,2.224223237,6.82605658,,,,22.82667936,62,287226,17.41916113,29.38246113,21.58578959,,,,,,,,,,,,,23.96407182,17.95073424,31.34559597,,,,18.10421062,52,287226,13.52109043,23.74126358,,,,,,,,,,,,,17.83456014,12.9586187,23.94206455,,,,23.03380211,92,399413,18.56849546,28.24891353,,,,,,,,,,,,,23.5385058,18.69297128,29.25621349,,,,12.75862069,,5800,,,34,40,0.648861235,27635,42590,,,0.563,,,,,32.99552657,,,,,0.825521708,17208,20845,0.804078294,0.846965122,0.101931813,2042,20033,0.077188376,0.126675249,0.838618374,17481,20845,0.818863743,0.858373005,57811,,,,,0.246285309,14238,57811,,,0.176852156,10224,57811,,,0.056234973,3251,57811,,,0.007161267,414,57811,,,0.009358081,541,57811,,,0.000415146,24,57811,,,0.07029804,4064,57811,,,0.843645673,48772,57811,,,0.008503913,452,53152,0.003699091,0.013308736,0.505855287,29244,57811,,,0.507211325,28521,56231,, -48,201,48201,TX,Harris County,2024,1,7723.907757,54906,13597841,7637.381613,7810.433901,0,3007.364218,1981.87197,4375.557045,,3686.722927,3451.999238,3921.446616,,12621.1341,12363.2189,12879.0493,,6463.133992,6346.085467,6580.182517,,7587.487347,7419.110876,7755.863818,,14319.80621,9729.613568,20325.82187,,,0.2,,,0.174,0.227,3.438208089,,,2.842756189,4.071777275,5.192475068,,,4.486798797,5.909957559,0.090058414,42058,467008,0.089237377,0.090879452,0,0.064903846,0.041229785,0.088577907,0.09506744,0.091786084,0.098348796,0.141663267,0.139393886,0.143932649,0.078370305,0.077285982,0.079454627,0.069682318,0.068127345,0.071237291,0.077777778,0.053032327,0.102523229,0.090870578,0.082671528,0.099069629,0.155,,,0.129,0.182,0.365,,,0.322,0.409,7.3,0.057752801,0.138,,,0.278,,,0.242,0.317,0.898399859,4250460,4731145,,,0.196145648,,,0.169201986,0.226408773,0.311643836,728,2336,0.301518275,0.321807833,620.2,29321,4728030,,,24.21605277,26780,1105878,23.92601528,24.50609026,10.63234471,6.401366069,16.60372332,2.363633337,1.974863999,2.752402676,25.6006735,24.91479149,26.28655551,31.50861576,31.05720981,31.9600217,9.974712633,9.558368771,10.3910565,48.54368932,31.41491621,71.66006155,14.1565487,12.48030106,15.83279633,0.237609256,975640,4106069,0.23046032,0.244758192,0.000582484,2754,4728030,,,1716.786492,0.000744419,3559,4780913,,,1343.33043,0.001630651,7796,4780913,,,613.2520523,3047,,,,,2929,1857,5044,3088,2506,0.36,,,,,0.29,0.34,0.33,0.26,0.39,0.45,,,,,0.47,0.5,0.31,0.35,0.49,0.821451712,2491201,3032681,0.818624861,0.824278564,0.63025607,893930,1418360,0.622284775,0.638227366,0.042252456,98856,2339651,,,0.246,298813,,0.231702128,0.260297872,0.237751803,0.168092431,0.307411175,0.116029375,0.096463911,0.13559484,0.293160692,0.277532278,0.308789106,0.287013463,0.278643938,0.295382988,0.076925947,0.067851114,0.08600078,4.892123345,147385,30127,4.800488493,4.983758196,0.274075092,339072,1237150,0.265113791,0.283036393,5.513924404,2607,4728030,,,64.60782059,15203,23531207,63.58080623,65.63483494,45.84632313,28.00412522,70.80592771,29.53076329,26.9370852,32.12444137,92.5491828,89.7196955,95.3786701,42.29012879,41.03236188,43.54789569,91.06006749,88.7834621,93.33667289,91.40008309,45.62659217,163.539996,10.7,,,,,1,,,,,0.2022803,330880,1635750,0.198325455,0.206235144,0.151070084,0.147519503,0.154620664,0.05857252,0.05639012,0.06075492,0.008867492,0.008076313,0.009658671,0.743331416,1664435,2239156,0.740332209,0.746330623,0.713357225,0.675015096,0.751699355,0.728907735,0.717925854,0.739889617,0.764439298,0.756144807,0.772733789,0.749631474,0.744218256,0.755044692,0.785425552,0.779653902,0.791197201,0.469,,2239156,0.462924573,0.475075428,77.87630643,,,77.78486728,77.96774558,110.8431772,89.56232336,132.1240311,85.83137199,85.35936318,86.3033808,72.67634359,72.4672685,72.88541868,80.36461813,80.15490743,80.57432882,77.66543094,77.51720931,77.81365256,67.89778233,64.5284746,71.26709006,386.3346973,54906,13597841,383.0826539,389.5867407,143.272522,103.6870346,192.9871469,184.5424571,176.5369971,192.5479171,603.5486717,594.1662643,612.9310791,330.4965633,325.2795175,335.713609,381.5516473,376.0030953,387.1001993,584.0074692,409.0316517,808.5125045,53.40857708,2921,5469159,51.47170339,55.34545077,,,,37.57241916,30.61390975,44.53092857,101.4707829,95.26478165,107.6767842,42.9929689,40.61336463,45.37257317,44.75268041,40.81017295,48.69518788,,,,5.881188202,2792,474734,5.663034071,6.099342334,,,,2.950685878,2.384454544,3.610892229,11.1943129,10.51165463,11.87697116,4.906337388,4.624596085,5.18807869,4.285540512,3.893050203,4.67803082,,,,4.387889425,2.680236855,6.776739338,0.114,,,0.1,0.131,0.16,,,0.142,0.182,0.122,,,0.107,0.138,723.7,27828,3845448,,,0.138,647450,,,,0.057752801,236350.972,4092459,,,18.17398619,2577,14179608,17.4722901,18.87568228,,,,5.113253652,3.818822398,6.70535188,26.67052981,24.71967256,28.62138706,9.09272997,8.344286789,9.84117315,30.39431626,28.68594734,32.10268518,,,,0.337,,,0.326,0.348,0.280559081,813453,2899400,0.272218656,0.288899507,0.139326357,176670,1268030,0.127411463,0.15124125,0.001214412,5806,4780913,,,823.4435067,0.885222482,51526.145,58207,,,0.08668599,23238,268071,0.079514007,0.093857973,2.81705708,,,,,,3.418042993,2.51860104,2.721072468,3.326362726,3.039112877,,,,,,3.940976866,2.672980381,2.970773962,3.464770133,0.194733964,,,,,-10364.65843,,,,,0.832880928,48173,57839,0.815762414,0.849999442,68748,,,67014.38298,70481.61702,63326,56667.95745,69984.04255,91925,88221.85106,95628.14894,51930,50781.40426,53078.59575,59924,58932.68085,60915.31915,102184,100616,103752,,,,,,0.695695933,618649,889252,,,51.60958755,,,,,0.279659045,,68748,,,4.282417226,1464,341863,,,9.935955799,3245,32659163,9.594087862,10.27782374,,,,2.579652134,1.968546342,3.320523644,26.85904786,25.56226255,28.15583316,7.790304272,7.32992671,8.250681835,4.387715277,3.967581597,4.807848957,,,,10.98403724,2570,23531207,10.55329096,11.41478353,10.9216667,,,,8.264875032,6.889361363,9.640388701,7.621517779,6.799439485,8.443596073,6.434714246,5.915838359,6.953590133,19.12521756,18.0805588,20.16987632,,,,14.89511354,3505,23531207,14.40198984,15.38823724,,,,5.989170868,4.821119108,7.157222627,29.52116269,27.92312071,31.11920467,9.679113058,9.077387523,10.28083859,15.88291447,14.93211512,16.83371382,,,,11.1025503,3626,32659163,10.74116963,11.46393097,,,,4.299420223,3.456733859,5.142106587,15.33638594,14.35648023,16.31629165,10.30444792,9.774968237,10.83392761,11.54000533,10.85865373,12.22135694,,,,6.930794431,,488400,,,1681,1704,0.594489583,1640818,2760045,,,0.611,,,,,229.2155279,,,,,0.546225521,924703,1692896,0.541663893,0.550787149,0.164383312,270618,1646262,0.160652632,0.168113992,0.897664712,1519653,1692896,0.894787472,0.900541952,4780913,,,,,0.257375108,1230488,4780913,,,0.117219242,560415,4780913,,,0.193134031,923357,4780913,,,0.011616401,55537,4780913,,,0.07521806,359611,4780913,,,0.001207301,5772,4780913,,,0.445906253,2131839,4780913,,,0.271168289,1296432,4780913,,,0.111765914,491027,4393352,0.10943318,0.114098647,0.501736175,2398757,4780913,,,0.011337213,53638,4731145,, -48,203,48203,TX,Harrison County,2024,1,10929.14049,1318,187711,10017.76147,11840.51951,0,,,,2,,,,2,17282.83399,14736.05337,19829.61461,,4024.369896,2715.225469,5745.038261,,10638.31727,9445.718023,11830.91651,,,,,2,,0.193,,,0.167,0.221,4.021053439,,,3.275338332,4.902461982,5.62328202,,,4.567057807,6.74186508,0.092170104,505,5479,0.084510564,0.099829644,0,,,,,,,0.125560538,0.106110964,0.145010112,0.071548822,0.056892377,0.086205266,0.086640212,0.076613792,0.096666631,,,,0.126436782,0.056600625,0.196272938,0.186,,,0.152,0.224,0.386,,,0.31,0.467,7.1,0.048363784,0.151,,,0.272,,,0.224,0.32,0.566989643,39031,68839,,,0.177113617,,,0.14279261,0.214902214,0.3,36,120,0.253427173,0.347334108,394.8,273,69150,,,30.25945608,484,15995,27.56361363,32.95529853,,,,,,,37.70150806,31.564866,43.83815012,39.78462459,33.02308624,46.54616293,23.5251097,20.20609578,26.84412363,,,,33.07888041,17.61311066,56.56589292,0.195496048,10834,55418,0.17404924,0.216942857,0.000303688,21,69150,,,3292.857143,0.000243013,17,69955,,,4115,0.000500322,35,69955,,,1998.714286,3495,,,,,,,3911,,3517,0.37,,,,,,,0.32,0.38,0.38,0.42,,,,,,0.5,0.37,0.22,0.43,0.893289136,40692,45553,0.873381713,0.913196558,0.600490769,10278,17116,0.539966954,0.661014583,0.04463546,1293,28968,,,0.227,3700,,0.162659575,0.291340426,0.215909091,0,0.769837338,,,,0.346511628,0.219201517,0.473821739,0.443203487,0.333710183,0.552696791,0.106726884,0.065540312,0.147913456,5.211037148,121339,23285,4.548226773,5.873847524,0.345654526,5751,16638,0.280350568,0.410958483,9.978308026,69,69150,,,84.65583231,284,335476,74.80996938,94.50169524,,,,,,,117.8730464,93.60821327,146.5054341,23.76682583,11.86431382,42.52541649,89.84598507,77.07048391,102.6214862,,,,8.2,,,,,1,,,,,0.148699664,3545,23840,0.125858568,0.171540761,0.107226604,0.086569367,0.127883841,0.044043624,0.030124404,0.057962844,0.006501678,0.002568059,0.010435297,0.820817165,25172,30667,0.794146973,0.847487357,,,,,,,0.754006278,0.696232058,0.811780498,0.676589595,0.596085428,0.757093763,0.81658712,0.798717946,0.834456293,0.282,,30667,0.244435003,0.319564997,74.52616935,,,73.79923739,75.25310131,,,,,,,70.06776755,68.36769862,71.76783648,87.21227414,80.11380325,94.31074502,74.57888713,73.65972468,75.49804959,,,,537.2130077,1318,187711,506.771344,567.6546713,,,,,,,776.7088714,693.89226,859.5254829,181.9179574,124.4317482,256.8138766,521.2861726,484.5603514,558.0119938,,,,58.34859896,43,73695,42.22717038,78.59517988,,,,,,,84.33480919,43.57702656,147.3159396,,,,68.79156157,45.33407254,100.0881104,,,,6.885305309,38,5519,4.872451829,9.450619482,,,,,,,,,,,,,7.89733465,5.059971324,11.75060796,,,,,,,0.123,,,0.107,0.141,0.181,,,0.16,0.207,0.115,,,0.099,0.132,226.5,130,57395,,,0.151,10400,,,,0.048363784,3174.163515,65631,,,13.85528158,28,202089,9.206733991,20.02473957,,,,,,,,,,,,,14.16397158,8.394467223,22.38518155,,,,0.363,,,0.349,0.376,0.228645028,8876,38820,0.202432262,0.254857794,0.122174535,2135,17475,0.091195812,0.153153259,0.000586091,41,69955,,,1706.219512,0.751648812,1613.79,2147,,,0.119752237,522,4359,0.045509825,0.193994649,2.917777869,,,,,,,2.29628341,2.829739462,3.196003499,3.07174726,,,,,,,2.424172189,2.979277525,3.361782961,0.128275251,,,,,-5151.477,,,,,0.75164767,38776,51588,0.681877153,0.821418187,64636,,,59114.6383,70157.3617,136250,3943.446809,268556.5532,,,,35198,29287.02128,41108.97872,56323,47928.95745,64717.04255,71321,66285.76596,76356.23404,,,,,,0.587934637,15759,26804,,,43.14376783,,,,,0.216968872,,64636,,,4.320691311,18,4166,,,8.959885314,42,468756,6.457497234,12.11116205,,,,,,,28.9298039,19.22364459,41.81162146,,,,3.711701984,1.852868257,6.641260127,,,,16.4420292,54,335476,12.24217071,21.61823191,16.0965315,,,,,,,,,,,,,22.12066464,16.00883468,29.7963901,,,,19.37545458,65,335476,14.95356679,24.69560738,,,,,,,34.92534707,22.37732887,51.96614802,,,,18.91494423,13.51311347,25.75678548,,,,27.09298654,127,468756,22.3809235,31.80504959,,,,,,,37.19546215,26.05124441,51.49419801,,,,28.34390606,22.60820952,35.09168436,,,,9.710144928,,6900,,,53,14,0.62039666,29717,47900,,,0.562,,,,,40.48584045,,,,,0.739967191,18494,24993,0.719185739,0.760748643,0.12232739,2895,23666,0.095558173,0.149096606,0.779698316,19487,24993,0.755949796,0.803446835,69955,,,,,0.23716675,16591,69955,,,0.178972196,12520,69955,,,0.207905082,14544,69955,,,0.013337145,933,69955,,,0.008605532,602,69955,,,0.001329426,93,69955,,,0.14499321,10143,69955,,,0.617725681,43213,69955,,,0.020609691,1342,65115,0.013721841,0.02749754,0.508769924,35591,69955,,,0.549049231,37796,68839,, -48,205,48205,TX,Hartley County,2024,1,6267.957849,50,15192,3973.347605,9405.014312,1,,,,2,,,,2,,,,2,,,,2,6574.233858,3594.194826,11030.44732,1,,,,2,,0.156,,,0.13,0.181,3.328135109,,,2.695554144,4.025837095,4.604270411,,,3.703257457,5.592498717,0.065400844,31,474,0.043143606,0.087658082,0,,,,,,,,,,0.079754601,0.038164309,0.121344893,0.059210526,0.032678833,0.085742219,,,,,,,0.144,,,0.114,0.178,0.351,,,0.275,0.44,7.6,0.115390661,0.096,,,0.228,,,0.183,0.277,0.738573021,3975,5382,,,0.21260823,,,0.17161818,0.259925294,0.5,10,20,0.392533132,0.595381088,,,,,,28.16901409,30,1065,19.00551551,40.21301915,,,,,,,,,,39.31203931,22.47022716,63.84028894,22.47191011,12.28560237,37.70404675,,,,,,,0.195018398,689,3533,0.168805632,0.221231164,,0,5397,,,,,0,5208,,,,0.000192012,1,5208,,,5208,,,,,,,,,,,0.27,,,,,,,,,0.29,0.3,,,,,,,,,0.33,0.841703594,3419,4062,0.78423615,0.899171039,0.388187784,769,1981,0.301832034,0.474543534,0.019862491,52,2618,,,0.088,98,,0.054638298,0.121361702,,,,,,,,,,0.027522936,0,0.124808589,0.043923865,0,0.146451624,3.683952821,152733,41459,3.15526817,4.212637472,0.075503356,90,1192,0.00793092,0.143075792,12.97016861,7,5397,,,68.5277357,19,27726,41.25817343,107.014548,,,,,,,,,,,,,79.38758151,43.40192955,133.1988723,,,,5,,,,,0,,,,,0.115384615,195,1690,0.047486451,0.18328278,0.092261905,0.023039247,0.161484562,0.020710059,0,0.052513427,0.014792899,0,0.03407922,0.844247788,1431,1695,0.765324227,0.923171348,,,,,,,,,,,,,0.85039818,0.76487128,0.935925079,0.088,,1695,0.035615103,0.140384897,80.11033919,,,77.53503934,82.68563904,,,,,,,,,,,,,80.0715995,77.07639676,83.06680224,,,,286.6297706,50,15192,212.0502822,378.9397574,,,,,,,,,,,,,301.0637664,208.4954102,420.7064371,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.101,,,0.085,0.117,0.148,,,0.127,0.171,0.095,,,0.08,0.111,,,,,,0.096,520,,,,0.115390661,699.4981876,6062,,,,,,,,,,,,,,,,,,,,,,,,,,0.339,,,0.324,0.354,0.221807629,535,2412,0.189637416,0.253977841,0.139005897,165,1187,0.09611228,0.181899514,,0,5208,,,,,,,,,,,,,,2.459882297,,,,,,,,,,2.749436361,,,,,,,,,,0.029046868,,,,,-5333.692,,,,,0.78930375,47670,60395,0.638561522,0.940045978,84165,,,72886.3617,95443.6383,,,,,,,,,,77632,21972.76596,133291.234,80179,36377.46809,123980.5319,,,,,,0.658936652,1165,1768,,,,,,,,0.180407533,,84165,,,3.086419753,1,324,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,37.81576161,15,39666,21.16519471,62.37134793,,,,,,,,,,,,,39.41974141,18.90329824,72.49430796,,,,12,,500,,,0,6,0.508690331,2078,4085,,,0.577,,,,,13.70966701,,,,,0.797047971,1296,1626,0.766000504,0.828095438,0.066037736,105,1590,0,0.144767072,0.904059041,1470,1626,0.888398417,0.919719664,5208,,,,,0.215053763,1120,5208,,,0.168202765,876,5208,,,0.05702765,297,5208,,,0.008256528,43,5208,,,0.007872504,41,5208,,,0.000384025,2,5208,,,0.2843702,1481,5208,,,0.637672811,3321,5208,,,0.017136104,87,5077,0,0.043037362,0.413786482,2155,5208,,,0.462095875,2487,5382,, -48,207,48207,TX,Haskell County,2024,1,10547.7749,106,15099,7514.667282,13580.88251,0,,,,2,,,,2,,,,2,10063.87491,5502.014061,16885.47204,1,11319.92198,7394.548867,16586.30848,,,,,2,,0.23,,,0.201,0.258,4.373337909,,,3.690689053,5.097640919,5.535477725,,,4.802165286,6.2717053,0.096989967,29,299,0.063444783,0.13053515,0,,,,,,,,,,0.114942529,0.047919731,0.181965327,0.095,0.054362483,0.135637517,,,,,,,0.207,,,0.175,0.24,0.386,,,0.339,0.435,6.6,0.114401023,0.146,,,0.309,,,0.273,0.348,0.691469719,3745,5416,,,0.169072385,,,0.148605013,0.191038306,0.416666667,5,12,0.261828357,0.556653137,147.8,8,5411,,,29.79145978,30,1007,20.10017281,42.52916127,,,,,,,,,,37.12871287,20.78065875,61.23816552,28.95752896,16.20730914,47.76104029,,,,,,,0.247563866,940,3797,0.218968122,0.276159611,0.000924044,5,5411,,,1082.2,0.000370165,2,5403,,,2701.5,0.001110494,6,5403,,,900.5,2975,,,,,,,,3303,2697,0.3,,,,,,,,0.15,0.33,0.36,,,,,,,,0.27,0.37,0.795357053,3152,3963,0.755961335,0.83475277,0.439224459,589,1341,0.331327714,0.547121205,0.029592205,82,2771,,,0.306,288,,0.192808511,0.419191489,,,,,,,,,,0.113259669,0.044133241,0.182386096,0.083809524,0,0.177279114,4.650287592,113188,24340,2.986691906,6.313883279,0.209968187,198,943,0.10923775,0.310698623,18.4808723,10,5411,,,73.9905574,21,28382,45.8013212,113.1024267,,,,,,,,,,,,,104.8507257,63.12698617,163.7373962,,,,7.2,,,,,1,,,,,0.108796296,235,2160,0.068159106,0.149433487,0.081319703,0.03475047,0.127888936,0.025,0.003159411,0.046840589,0.006944444,0,0.022144201,0.750110375,1699,2265,0.692802568,0.807418183,,,,,,,,,,,,,0.770817418,0.657332456,0.88430238,0.219,,2265,0.143474235,0.294525765,74.83735993,,,72.63435262,77.04036723,,,,,,,,,,,,,74.22727415,71.23901872,77.21552958,,,,510.5776115,106,15099,405.1674964,615.9877266,,,,,,,,,,480.1707086,297.2332367,733.9919344,526.177516,402.4841071,675.8970317,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.139,,,0.124,0.155,0.184,,,0.166,0.203,0.124,,,0.113,0.136,547.8,26,4746,,,0.146,790,,,,0.114401023,674.8516363,5899,,,,,,,,,,,,,,,,,,,,,,,,,,0.359,,,0.344,0.372,0.280646294,799,2847,0.244901614,0.316390975,0.151277014,154,1018,0.110766376,0.191787652,0.000185082,1,5403,,,5403,,,,,,,,,,,2.752470296,,,,,,,,2.444229691,2.919155175,2.539744902,,,,,,,,2.588431858,2.583836986,0.013866611,,,,,-4192.7315,,,,,0.673285677,35602,52878,0.446994132,0.899577221,48587,,,41883.68085,55290.31915,76250,15266,137234,,,,32596,3570.12766,61621.87234,47417,34685.93617,60148.06383,59375,40085.97872,78664.02128,,,,,,0.718709677,557,775,,,1.989700375,,,,,0.284973347,,48587,,,6.711409396,1,149,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,400,,,0,0,0.526516052,2214,4205,,,0.411,,,,,3.660305983,,,,,0.699521531,1462,2090,0.647898914,0.751144149,0.078109453,157,2010,0.023512853,0.132706053,0.811004785,1695,2090,0.768457907,0.853551663,5403,,,,,0.176198408,952,5403,,,0.224504905,1213,5403,,,0.043494355,235,5403,,,0.013696095,74,5403,,,0.01017953,55,5403,,,0,0,5403,,,0.285582084,1543,5403,,,0.636498242,3439,5403,,,0.033872209,176,5196,0.008000066,0.059744353,0.459744586,2484,5403,,,1,5416,5416,, -48,209,48209,TX,Hays County,2024,1,5529.237579,2108,698141,5199.681878,5858.79328,0,,,,2,,,,2,8316.681928,6192.315961,10934.90082,,5566.537846,5073.963083,6059.112608,,5676.388669,5179.761133,6173.016205,,,,,2,,0.166,,,0.141,0.193,3.387373678,,,2.695180874,4.132889382,5.389108248,,,4.506877862,6.316969868,0.072054223,1382,19180,0.068394714,0.075713732,0,,,,0.1,0.07096075,0.12903925,0.120629371,0.093938019,0.147320722,0.078466387,0.07306463,0.083868143,0.05943804,0.054359819,0.064516262,,,,0.088122605,0.053731376,0.122513835,0.137,,,0.11,0.169,0.302,,,0.244,0.364,8.1,0.024491003,0.118,,,0.238,,,0.196,0.285,0.811840692,195708,241067,,,0.206436429,,,0.168858884,0.246685801,0.272727273,39,143,0.230103376,0.316495524,434.2,1109,255397,,,13.20171803,876,66355,12.32747039,14.07596568,,,,,,,9.096612296,6.092144021,13.06425265,23.51107574,21.78044085,25.24171063,4.071982136,3.355259546,4.788704726,,,,9.502923977,5.059906792,16.25028941,0.163928433,35870,218815,0.148439071,0.179417794,0.000442448,113,255397,,,2260.150443,0.000390008,105,269225,,,2564.047619,0.001233169,332,269225,,,810.9186747,1976,,,,,,6467,1671,1974,1926,0.4,,,,,,0.35,0.31,0.33,0.41,0.47,,,,,,0.47,0.37,0.39,0.48,0.908760805,136146,149815,0.898875374,0.918646236,0.702150057,48692,69347,0.666817715,0.737482399,0.030171138,4180,138543,,,0.079,4643,,0.048021277,0.109978723,,,,0.1843044,0,0.450845731,0.125853659,0.00927335,0.242433967,0.162979031,0.121292254,0.204665808,0.044678647,0.026347687,0.063009607,4.730759819,154658,32692,4.406935936,5.054583702,0.170040632,9416,55375,0.141229212,0.198852052,5.834054433,149,255397,,,51.11380855,595,1164069,47.00670331,55.22091378,,,,,,,69.47401448,47.20422218,98.61281796,32.45197216,27.27580024,37.62814408,66.19269429,59.7459771,72.63941148,,,,9.8,,,,,0,,,,,0.190224829,14595,76725,0.171155564,0.209294094,0.159515296,0.141984554,0.177046038,0.036689475,0.028174602,0.045204349,0.007494298,0.004208688,0.010779907,0.735005795,91323,124248,0.719011216,0.751000374,,,,0.532922785,0.469778212,0.596067359,0.731256891,0.613849406,0.848664376,0.732966845,0.704864681,0.761069009,0.666259517,0.640753118,0.691765916,0.499,,124248,0.470879841,0.527120159,79.81520478,,,79.4415393,80.18887025,,,,86.2900753,79.08411131,93.49603929,76.4556035,74.08918975,78.82201726,79.64452241,78.90083263,80.3882122,79.69993222,79.21307418,80.18679027,,,,285.7606754,2108,698141,273.4330818,298.088269,,,,,,,419.6081421,337.8423012,515.1858157,315.0815268,290.859073,339.3039807,279.7326333,263.8383673,295.6268993,,,,37.53621658,96,255753,30.40445595,45.83814501,,,,,,,,,,31.61180701,22.58393839,43.0463089,42.25688512,30.93735087,56.364763,,,,3.857228228,71,18407,3.012527248,4.865368561,,,,,,,,,,3.546099291,2.42552929,5.00603414,3.802281369,2.583465716,5.397034896,,,,,,,0.105,,,0.091,0.122,0.158,,,0.137,0.183,0.106,,,0.091,0.122,198.2,425,214406,,,0.118,27620,,,,0.024491003,3847.707947,157107,,,8.666309927,63,726953,6.659430499,11.08797505,,,,,,,,,,5.112910098,2.861656969,8.43296766,12.43277703,9.135136924,16.5329578,,,,0.302,,,0.289,0.315,0.190243266,30609,160894,0.169987947,0.210498585,0.09731792,5918,60811,0.075871111,0.118764728,0.000702015,189,269225,,,1424.4709,0.891210168,2489.15,2793,,,0.056800195,933,16426,0.021518658,0.092081732,2.904059864,,,,,,,2.759423117,2.604817312,3.302732798,2.93337077,,,,,,3.53001089,2.605959048,2.669570997,3.299212739,0.153185339,,,,,-1366.1939,,,,,0.844836508,50615,59911,0.793768591,0.895904424,89074,,,83962.51064,94185.48936,98582,73163.95745,124000.0426,77243,29809.80851,124676.1915,68578,46938.17021,90217.82979,68651,62771,74531,88976,83478.46809,94473.53192,,,,,,0.446885482,18653,41740,,,41.49295962,,,,,0.224285426,,89074,,,6.253553155,88,14072,,,3.838088939,60,1563278,2.9288662,4.940381263,,,,,,,,,,4.542239584,3.018285216,6.564800879,2.523519805,1.562098533,3.857468085,,,,13.25472876,159,1164069,11.13945008,15.37000744,13.65898413,,,,,,,,,,7.853594086,5.43884221,10.97461055,17.13744461,13.87051972,20.4043695,,,,10.82410063,126,1164069,8.934097082,12.71410418,,,,,,,24.65206965,12.30622435,44.10936221,6.447411687,4.35004159,9.204081082,13.40197761,10.65899052,16.63538794,,,,11.96204386,187,1563278,10.24753135,13.67655637,,,,,,,20.35278155,10.51657922,35.55221345,10.05781622,7.711270024,12.89366648,13.33860469,10.8571578,15.82005157,,,,13.31818182,,22000,,,155,138,0.681886181,109395,160430,,,0.59,,,,,97.71633769,,,,,0.628212878,56117,89328,0.610558872,0.645866885,0.17492698,15212,86962,0.15602838,0.19382558,0.91081184,81361,89328,0.898406597,0.923217082,269225,,,,,0.222991921,60035,269225,,,0.119569134,32191,269225,,,0.040898876,11011,269225,,,0.012944563,3485,269225,,,0.021643607,5827,269225,,,0.001444888,389,269225,,,0.407915313,109821,269225,,,0.510175504,137352,269225,,,0.032630822,7534,230886,0.026324013,0.038937631,0.500124431,134646,269225,,,0.297435983,71702,241067,, -48,211,48211,TX,Hemphill County,2024,1,5348.948887,34,10132,3057.386456,8686.35788,1,,,,2,,,,2,,,,2,,,,2,8201.183793,4366.784968,14024.27406,1,,,,2,,0.163,,,0.139,0.189,3.555790415,,,2.774103818,4.42034258,5.141813317,,,4.054918509,6.267287993,0.05204461,14,269,0.025500891,0.078588328,1,,,,,,,,,,0.090909091,0.037185251,0.144632931,,,,,,,,,,0.148,,,0.118,0.18,0.354,,,0.274,0.441,8,0.027796607,0.122,,,0.243,,,0.197,0.29,0.803075104,2716,3382,,,0.192585927,,,0.153556202,0.235500959,0.5,1,2,0.104528646,0.771195053,305.7,10,3271,,,13.66559486,17,1244,7.960712596,21.87994117,,,,,,,,,,20.59925094,10.28307185,36.85775003,,,,,,,,,,0.25329429,692,2732,0.224698545,0.281890035,0.001222868,4,3271,,,817.75,0,0,3217,,,-3217,0.000932546,3,3217,,,1072.333333,5419,,,,,,,,,5159,0.35,,,,,,,,0.45,0.35,0.28,,,,,,,,0.19,0.3,0.886383731,2005,2262,0.825715426,0.947052036,0.626005362,467,746,0.487310466,0.764700258,0.033067973,54,1633,,,0.154,135,,0.095617021,0.212382979,,,,,,,,,,0.216589862,0.047612861,0.385566862,0.012594458,0,0.079556601,4.983066394,141250,28346,3.789339011,6.176793777,0.11820331,100,846,0.034899754,0.201506866,21.40018343,7,3271,,,69.45928617,13,18716,36.98414453,118.7774948,,,,,,,,,,,,,102.6869759,53.05985888,179.3734815,,,,6.3,,,,,0,,,,,0.136531365,185,1355,0.061116232,0.211946499,0.096556886,0.022252872,0.1708609,0.047232472,0.005942117,0.088522828,0.00295203,0,0.016021283,0.681759379,1054,1546,0.579548318,0.78397044,,,,,,,,,,,,,0.813014211,0.734197836,0.891830586,0.215,,1546,0.135768197,0.294231803,81.09867834,,,78.04051939,84.1568373,,,,,,,,,,,,,78.0779485,73.85931279,82.29658421,,,,287.8372681,34,10132,196.8804783,406.3403398,,,,,,,,,,,,,369.933754,239.4016204,546.0951969,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.107,,,0.092,0.123,0.162,,,0.14,0.184,0.096,,,0.081,0.111,261.3,7,2678,,,0.122,420,,,,0.027796607,105.8216819,3807,,,,,,,,,,,,,,,,,,,,,,,,,,0.337,,,0.323,0.35,0.282620766,509,1801,0.249259064,0.315982468,0.19939577,198,993,0.149353217,0.249438324,0.001554243,5,3217,,,643.4,0.975,66.3,68,,,,,,,,3.236447312,,,,,,,,2.975990575,3.596168194,3.128495279,,,,,,,,2.877133935,3.359900715,0.009161909,,,,,710.5029,,,,,0.599744823,38545,64269,0.45313104,0.746358606,73212,,,64633.2766,81790.7234,,,,,,,,,,48691,42769.29787,54612.70213,79063,38986.06383,119139.9362,,,,,,0.401902497,338,841,,,,,,,,0.207397694,,73212,,,5,1,200,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20,,500,,,5,5,0.731914894,1720,2350,,,0.412,,,,,18.00981031,,,,,0.733828996,987,1345,0.66969226,0.797965733,0.094771242,116,1224,0.024649341,0.164893143,0.823791822,1108,1345,0.763627262,0.883956381,3217,,,,,0.275722723,887,3217,,,0.183089835,589,3217,,,0.005595275,18,3217,,,0.019272614,62,3217,,,0.013677339,44,3217,,,0.001865092,6,3217,,,0.343487722,1105,3217,,,0.618277899,1989,3217,,,0.081721772,262,3206,0.041796847,0.121646697,0.501709667,1614,3217,,,1,3382,3382,, -48,213,48213,TX,Henderson County,2024,1,12218.65802,2011,226495,11338.16664,13099.1494,0,,,,2,,,,2,16572.95376,12367.24422,20778.66331,,5545.249385,4115.790977,7310.720006,,13319.48041,12244.63938,14394.32145,,,,,2,,0.201,,,0.172,0.234,4.246509464,,,3.41922276,5.283045512,5.736395892,,,4.643123388,6.957044722,0.078410312,511,6517,0.071883702,0.084936921,0,,,,,,,0.178977273,0.138931076,0.219023469,0.055516014,0.043542425,0.067489603,0.07826087,0.070499229,0.08602251,,,,,,,0.2,,,0.162,0.244,0.373,,,0.291,0.457,6.6,0.083481883,0.159,,,0.275,,,0.227,0.328,0.595727328,48939,82150,,,0.167963884,,,0.133603549,0.2060854,0.294736842,28,95,0.242071737,0.348462061,328.7,275,83667,,,35.70782315,592,16579,32.83136147,38.58428483,,,,,,,27.60736196,19.33585692,38.22022584,38.98582334,32.59591302,45.37573366,35.68194168,32.15858638,39.20529697,,,,40.50632911,23.15286697,65.77974075,0.216911765,13924,64192,0.195464956,0.238358573,0.000358564,30,83667,,,2788.9,0.000343151,29,84511,,,2914.172414,0.000698134,59,84511,,,1432.389831,3207,,,,,,,4729,2133,3173,0.39,,,,,,,0.44,0.26,0.39,0.46,,,,,,0.73,0.37,0.39,0.46,0.866550326,50649,58449,0.854056426,0.879044226,0.505038202,9122,18062,0.458922208,0.551154196,0.038075947,1485,39001,,,0.199,3531,,0.122744681,0.275255319,,,,,,,0.26128266,0.057122866,0.465442454,0.36138371,0.267864706,0.454902713,0.179016681,0.133524048,0.224509315,4.996792843,118409,23697,4.513162641,5.480423045,0.190554485,3361,17638,0.149325098,0.231783872,11.59357931,97,83667,,,103.2500804,427,413559,93.45670207,113.0434587,,,,,,,117.6239953,79.36041569,167.9155671,33.82949932,20.36756849,52.82895373,115.9179389,104.1223462,127.7135315,,,,9.2,,,,,1,,,,,0.147867299,4680,31650,0.126951911,0.168782686,0.111521774,0.092500869,0.130542679,0.028593997,0.018761588,0.038426405,0.021484992,0.013248997,0.029720987,0.789014452,26043,33007,0.768545945,0.809482958,,,,,,,0.892791128,0.731412114,1,0.774284905,0.699890741,0.848679069,0.737806551,0.711165135,0.764447966,0.437,,33007,0.399643436,0.474356564,72.80996386,,,72.18732415,73.43260357,,,,,,,69.38144356,66.60065667,72.16223045,84.25886547,80.24269138,88.27503956,71.87771857,71.15390456,72.60153259,,,,601.1894222,2011,226495,572.4682633,629.910581,,,,,,,746.8510771,612.3700566,881.3320976,256.1934795,199.333819,324.229245,647.4589602,613.7263082,681.1916123,,,,74.92253772,59,78748,57.03450707,96.64461493,,,,,,,,,,54.4247306,26.09877379,100.0890173,81.38430833,58.65465098,110.0079423,,,,7.751937985,50,6450,5.753637789,10.21996382,,,,,,,,,,,,,6.587615283,4.444636368,9.404230434,,,,,,,0.131,,,0.112,0.152,0.19,,,0.165,0.218,0.113,,,0.096,0.131,198.4,141,71053,,,0.159,13020,,,,0.083481883,6555.999195,78532,,,17.98589906,45,250196,13.11903819,24.06654803,,,,,,,,,,,,,19.71261088,13.9498167,27.05709857,,,,0.361,,,0.345,0.374,0.254764616,11857,46541,0.22855185,0.280977382,0.12107189,2250,18584,0.090093166,0.152050613,0.000627137,53,84511,,,1594.54717,0.948012422,610.52,644,,,0.122756827,472,3845,0.068753064,0.17676059,3.02906933,,,,,,,2.374135269,2.726465671,3.204986236,3.316006836,,,,,,,2.805322441,3.217435277,3.411865965,0.096450682,,,,,-4676.241625,,,,,0.806884402,41678,51653,0.693680349,0.920088454,62843,,,58768.10638,66917.89362,,,,80495,64469.46809,96520.53192,45227,34808.61702,55645.38298,53526,34302.51064,72749.48936,61908,58587.31915,65228.68085,,,,,,0.6816839,7384,10832,,,51.6734954,,,,,0.223159302,,62843,,,3.985828167,18,4516,,,5.933630597,34,573005,4.10921168,8.291654016,,,,,,,,,,,,,6.507991365,4.358503956,9.346561186,,,,24.67975639,102,413559,19.61242988,29.74708291,24.66395363,,,,,,,,,,,,,28.85019037,22.87640669,35.90655924,,,,20.79509816,86,413559,16.63339433,25.68177706,,,,,,,,,,,,,24.99578196,19.82010054,31.10941434,,,,27.57393042,158,573005,23.27434875,31.87351209,,,,,,,27.93296089,13.39494049,51.36970962,17.22652885,9.172401101,29.45788898,29.84699488,24.77439202,34.91959774,,,,12.36111111,,7200,,,32,57,0.588558464,36317,61705,,,0.53,,,,,21.50293013,,,,,0.760016264,24300,31973,0.739452356,0.780580172,0.114244444,3480,30461,0.096026159,0.132462728,0.819566509,26204,31973,0.801179057,0.837953962,84511,,,,,0.212694206,17975,84511,,,0.225935085,19094,84511,,,0.060761321,5135,84511,,,0.010637669,899,84511,,,0.007821467,661,84511,,,0.001005786,85,84511,,,0.148643372,12562,84511,,,0.757688348,64033,84511,,,0.013291844,1038,78093,0.009135766,0.017447923,0.506218126,42781,84511,,,0.659440049,54173,82150,, -48,215,48215,TX,Hidalgo County,2024,1,7833.874647,9568,2492836,7633.112431,8034.636863,0,,,,2,2818.206807,1641.709319,4512.222102,1,4543.153862,2596.804976,7377.797242,1,7880.457126,7673.235047,8087.679205,,9781.088631,8580.167997,10982.00927,,,,,2,,0.307,,,0.26,0.356,4.639525921,,,3.788736136,5.50616496,5.391777572,,,4.556784742,6.255592004,0.089906312,8819,98091,0.088116202,0.091696421,0,,,,0.106382979,0.078507718,0.134258239,0.120535714,0.077897497,0.163173932,0.089827215,0.088010896,0.091643534,0.08493665,0.073099763,0.096773536,,,,,,,0.155,,,0.122,0.191,0.445,,,0.398,0.494,4.7,0.202875191,0.19,,,0.338,,,0.287,0.388,0.652122635,567856,870781,,,0.17041655,,,0.142958143,0.200490886,0.315018315,86,273,0.284753636,0.345531278,411.8,3625,880356,,,36.43664711,9591,263224,35.70742046,37.16587377,,,,,,,12.43781095,5.964413801,22.87357717,37.7251538,36.96720991,38.48309769,8.244680851,6.321149533,10.56930876,,,,,,,0.320477238,245026,764566,0.304987876,0.3359666,0.000463449,408,880356,,,2157.735294,0.000310682,276,888367,,,3218.721015,0.000834115,741,888367,,,1198.875844,3178,,,,,,,,3408,2986,0.3,,,,,,0.23,0.33,0.27,0.4,0.42,,,,,,0.42,0.26,0.39,0.48,0.685883102,340471,496398,0.676608008,0.695158196,0.515192041,116725,226566,0.498213865,0.532170217,0.064819818,24112,371985,,,0.371,100640,,0.335255319,0.406744681,0.467326733,0.191881865,0.742771601,0.166666667,0.042749579,0.290583754,0.187271779,0.03121811,0.343325448,0.383351547,0.368846385,0.397856709,0.321790091,0.265011032,0.378569149,5.540592474,103803,18735,5.244341844,5.836843104,0.306015658,84505,276146,0.287462227,0.32456909,3.46450754,305,880356,,,31.92470092,1389,4350863,30.24577402,33.60362781,,,,,,,,,,29.56199516,27.8816485,31.24234181,72.71067725,62.31685378,83.10450073,,,,10.7,,,,,1,,,,,0.249610464,60875,243880,0.239700586,0.259520343,0.135225237,0.126479169,0.143971304,0.127972774,0.119525895,0.136419652,0.0173856,0.014286681,0.020484518,0.770459292,256405,332795,0.761839414,0.77907917,0.771054783,0.739830558,0.802279009,0.762111168,0.703597986,0.82062435,0.716034985,0.585527347,0.846542624,0.774985166,0.766471786,0.783498545,0.742109556,0.707756683,0.77646243,0.253,,332795,0.241696539,0.264303461,77.92431409,,,77.70708078,78.14154741,,,,93.44981404,85.73182824,101.1677998,91.94026633,63.24441039,120.6361223,77.07915574,76.86108864,77.29722285,79.67286067,78.60903417,80.73668716,,,,414.6920297,9568,2492836,406.3408335,423.0432258,,,,149.3561778,106.2068429,204.1748118,208.5230741,129.0790694,318.7496693,424.410854,415.4202846,433.4014234,440.0693195,404.6970795,475.4415595,,,,37.67152697,465,1234354,34.24745551,41.09559842,,,,,,,,,,37.35016626,33.86809643,40.83223609,53.89000766,32.44530495,84.15592243,,,,4.369043921,436,99793,3.95893498,4.779152862,,,,,,,,,,4.360044634,3.944047076,4.776042191,,,,,,,,,,0.154,,,0.13,0.178,0.176,,,0.151,0.202,0.18,,,0.158,0.204,240.6,1643,683001,,,0.19,164390,,,,0.202875191,157181.4092,774769,,,4.953771783,130,2624263,4.10220171,5.805341855,,,,,,,,,,4.611657281,3.757566401,5.465748162,11.1201235,6.477881727,17.80439495,,,,0.342,,,0.326,0.356,0.428108722,212538,496458,0.407853403,0.448364041,0.125724226,35631,283406,0.104277418,0.147171035,0.001087388,966,888367,,,919.6345756,0.925538466,15555.525,16807,,,0.096351206,6018,62459,0.082283394,0.110419018,2.885940788,,,,,,3.784086421,3.489822509,2.874519736,3.360102446,3.182982119,,,,,,4.389586426,3.594301064,3.170689841,3.574003798,0.168710258,,,,,-22135.17333,,,,,0.791114312,35150,44431,0.754091889,0.828136735,48825,,,46587.38298,51062.61702,62311,32258.06383,92363.93617,100397,83669.68085,117124.3192,44348,12523.31915,76172.68085,48148,46684.85106,49611.14894,57673,54077.08511,61268.91489,,,,,,0.854334723,178456,208883,,,82.39521809,,,,,0.290875576,,48825,,,5.29414142,393,74233,,,3.574377669,216,6043010,3.097694702,4.051060637,,,,,,,,,,3.607750957,3.108987538,4.106514376,3.749651818,2.049969541,6.29127861,,,,6.538078393,270,4350863,5.749743764,7.326413023,6.205665405,,,,,,,,,,5.477990647,4.730501465,6.225479828,19.60394721,13.802988,27.02145889,,,,5.83792227,254,4350863,5.119966779,6.55587776,,,,,,,,,,5.146621529,4.445500278,5.84774278,16.63063363,12.03567202,22.40135436,,,,9.283453114,561,6043010,8.515235626,10.0516706,,,,,,,,,,9.046300907,8.256510539,9.836091274,14.19511045,10.63311182,18.56755398,,,,6.762257169,,108100,,,592,139,0.512218538,220884,431230,,,0.523,,,,,80.57813257,,,,,0.678499722,174713,257499,0.670769622,0.686229823,0.149566644,36826,246218,0.140099773,0.159033516,0.803610888,206929,257499,0.792604607,0.814617169,888367,,,,,0.30804386,273656,888367,,,0.114823041,102005,888367,,,0.005642938,5013,888367,,,0.005692467,5057,888367,,,0.010728674,9531,888367,,,0.000556077,494,888367,,,0.925412583,822106,888367,,,0.056887525,50537,888367,,,0.178525414,143134,801757,0.172694743,0.184356084,0.50467093,448333,888367,,,0.089052242,77545,870781,, -48,217,48217,TX,Hill County,2024,1,11923.40649,836,100319,10626.26816,13220.54482,0,,,,2,,,,2,15590.02042,10183.91894,22842.99206,,7805.153271,5863.471358,10184.03194,,13450.82204,11693.16875,15208.47532,,,,,2,,0.188,,,0.163,0.219,3.941758175,,,3.150004578,4.891140095,5.400569654,,,4.354329644,6.628245354,0.083419869,241,2889,0.073336578,0.093503159,0,,,,,,,0.149700599,0.095588355,0.203812842,0.068259386,0.051587285,0.084931487,0.08262592,0.069788753,0.095463086,,,,,,,0.18,,,0.147,0.216,0.381,,,0.305,0.472,7.7,0.018864227,0.14,,,0.264,,,0.219,0.318,0.483581424,17348,35874,,,0.175522276,,,0.141085282,0.219500215,0.176470588,12,68,0.117424769,0.243156342,216.6,79,36471,,,29.66820053,245,8258,25.9531542,33.38324687,,,,,,,32.10272873,19.60918072,49.58006084,39.70037453,32.14253368,47.25821538,23.07366638,18.74195581,27.40537696,,,,,,,0.215615197,6186,28690,0.194168388,0.237062005,0.000246771,9,36471,,,4052.333333,0.000348255,13,37329,,,2871.461539,0.000482199,18,37329,,,2073.833333,3728,,,,,,,3042,,3789,0.39,,,,,,,0.25,0.24,0.4,0.35,,,,,,,0.15,0.22,0.37,0.856043513,21247,24820,0.839455499,0.872631527,0.546888585,4403,8051,0.499286919,0.594490251,0.038635982,690,17859,,,0.206,1722,,0.135702128,0.276297872,0.016393443,0,0.874456158,,,,0.290816327,0.153014163,0.42861849,0.252053772,0.188775522,0.315332021,0.1485702,0.095608156,0.201532244,4.248094899,113165,26639,3.905079018,4.591110779,0.226303746,1879,8303,0.180300432,0.272307059,10.69342766,39,36471,,,101.4632648,185,182332,86.84219874,116.0843309,,,,,,,124.135485,67.86602479,208.2782508,38.21753421,21.39006378,63.03401073,121.9109342,102.7183754,141.1034931,,,,9.1,,,,,1,,,,,0.142802596,1870,13095,0.122125376,0.163479817,0.07217525,0.05675138,0.087599119,0.045819015,0.032991173,0.058646857,0.03054601,0.019456129,0.041635891,0.819601718,12594,15366,0.796438216,0.84276522,,,,,,,0.776377953,0.557911507,0.994844398,0.826103078,0.789966649,0.862239506,0.806950855,0.766151487,0.847750224,0.43,,15366,0.386335532,0.473664468,73.17188392,,,72.24004912,74.10371871,,,,,,,69.29674603,65.58550465,73.0079874,78.49332852,75.38147109,81.60518596,72.05165469,70.87287683,73.23043254,,,,595.2981058,836,100319,552.0159093,638.5803023,,,,,,,755.1512411,560.4878065,995.5727691,434.1077652,342.5910596,542.5602232,640.1160524,586.7861173,693.4459875,,,,66.34819533,25,37680,42.93705374,97.94302468,,,,,,,,,,,,,93.91435011,57.36532488,145.0430968,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.122,,,0.106,0.142,0.178,,,0.155,0.204,0.108,,,0.092,0.125,160.3,49,30568,,,0.14,4990,,,,0.018864227,661.926861,35089,,,30.87372646,34,110126,21.38095308,43.14293818,,,,,,,,,,,,,41.79346194,28.58669703,58.99989823,,,,0.353,,,0.338,0.366,0.248579267,5074,20412,0.221175012,0.275983522,0.137784904,1203,8731,0.103231713,0.172338096,0.000401832,15,37329,,,2488.6,0.90282167,399.95,443,,,0.092021277,173,1880,0.047979842,0.136062711,2.739903357,,,,,,,2.421364092,2.416781729,2.987716291,2.847638714,,,,,,,2.339919256,2.509848304,3.146152375,0.126151777,,,,,-4834.969917,,,,,0.728408879,39050,53610,0.66388913,0.792928628,57566,,,51563.2766,63568.7234,68800,47981.10638,89618.89362,,,,39297,23568.14894,55025.85106,58140,45295.74468,70984.25532,63472,59179.06383,67764.93617,,,,,,0.647331787,4185,6465,,,44.69720893,,,,,0.237327589,,57566,,,3.344481605,7,2093,,,,,,,,,,,,,,,,,,,,,,,,,,27.33627724,48,182332,19.86258089,36.69767626,26.32560384,,,,,,,,,,,,,32.27802067,22.35346764,45.10529858,,,,19.1957528,35,182332,13.37054516,26.69664533,,,,,,,,,,,,,21.23609822,13.99472254,30.89740797,,,,25.37024704,64,252264,19.53818165,32.39723909,,,,,,,,,,,,,29.38566997,21.94662387,38.53539659,,,,10,,3500,,,29,6,0.567395022,14931,26315,,,0.545,,,,,28.37416694,,,,,0.753398058,10088,13390,0.726323466,0.78047265,0.083528311,1071,12822,0.065781854,0.101274768,0.849738611,11378,13390,0.829130108,0.870347114,37329,,,,,0.228374722,8525,37329,,,0.208872458,7797,37329,,,0.056551207,2111,37329,,,0.010903051,407,37329,,,0.008224169,307,37329,,,0.001526963,57,37329,,,0.227196014,8481,37329,,,0.68753516,25665,37329,,,0.026202283,893,34081,0.019106616,0.03329795,0.498191754,18597,37329,,,0.775101745,27806,35874,, -48,219,48219,TX,Hockley County,2024,1,12539.13705,446,62993,10902.15601,14176.11809,0,,,,2,,,,2,,,,2,12043.79,9772.602735,14314.97726,,12878.54466,10383.28198,15373.80734,,,,,2,,0.226,,,0.194,0.259,4.246017686,,,3.311045712,5.265890491,5.354213486,,,4.159372295,6.623871601,0.09009009,180,1998,0.077535688,0.102644492,0,,,,,,,,,,0.085158151,0.069578395,0.100737907,0.094285714,0.072637324,0.115934105,,,,,,,0.177,,,0.143,0.216,0.385,,,0.3,0.481,6.2,0.154507821,0.144,,,0.312,,,0.256,0.371,0.590379347,12715,21537,,,0.179149389,,,0.139535677,0.226036169,0.384615385,10,26,0.282346376,0.482736886,514.9,110,21363,,,30.831879,212,6876,26.6814964,34.9822616,,,,,,,,,,41.84322034,35.31863931,48.36780137,17.99280288,13.12407389,24.07578588,,,,,,,0.252038122,4390,17418,0.227016845,0.277059398,0.000608529,13,21363,,,1643.307692,0.000378054,8,21161,,,2645.125,0.000803365,17,21161,,,1244.764706,2749,,,,,,,,1963,1987,0.33,,,,,,,,0.31,0.33,0.33,,,,,,,0.29,0.28,0.34,0.795497874,10849,13638,0.766058977,0.824936771,0.526868102,2912,5527,0.456606315,0.597129889,0.036545775,394,10781,,,0.203,1124,,0.121978723,0.284021277,,,,,,,,,,0.265822785,0.195840222,0.335805348,0.045776567,0.019183896,0.072369237,5.053906012,116255,23003,4.357523369,5.750288656,0.246065058,1407,5718,0.179351855,0.312778261,10.76627814,23,21363,,,95.26077638,108,113373,77.29449031,113.2270624,,,,,,,,,,71.84424168,51.32657957,97.83146592,119.7165421,91.78598638,153.4712041,,,,6.7,,,,,1,,,,,0.120817844,975,8070,0.094995616,0.146640072,0.073926571,0.051795752,0.096057391,0.049566295,0.031139432,0.067993158,0.008674102,0.002096609,0.015251594,0.785534855,7505,9554,0.748911218,0.822158491,,,,,,,,,,0.74379771,0.675801816,0.811793604,0.860602937,0.813847229,0.907358646,0.319,,9554,0.27477022,0.36322978,72.30338692,,,71.11133523,73.49543861,,,,,,,,,,73.26313937,71.33811928,75.18815945,71.74676059,70.07489153,73.41862964,,,,622.8441622,446,62993,563.1866098,682.5017145,,,,,,,,,,579.6781549,489.2782098,670.0781,651.0913323,565.7077702,736.4748944,,,,58.74577765,16,27236,33.57828776,95.39946247,,,,,,,,,,73.50689127,37.98208336,128.4017461,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.134,,,0.115,0.155,0.178,,,0.153,0.205,0.128,,,0.108,0.15,91.7,16,17453,,,0.144,3130,,,,0.154507821,3543.636879,22935,,,,,,,,,,,,,,,,,,,,,,,,,,0.359,,,0.345,0.372,0.294443048,3513,11931,0.262272835,0.32661326,0.163674033,948,5792,0.125546374,0.201801693,0.000756108,16,21161,,,1322.5625,0.948644068,279.85,295,,,,,,,,2.825086484,,,,,,,,2.751270551,3.044451948,3.000270634,,,,,,,,2.940104427,3.136999909,0.099181832,,,,,-1989.728817,,,,,0.794382906,42455,53444,0.71024348,0.878522331,56923,,,49458.31915,64387.68085,128098,26193.48936,230002.5106,,,,,,,43810,38096.80851,49523.19149,63477,54511.04255,72442.95745,,,,,,0.634390296,2981,4699,,,49.25924133,,,,,0.260492244,,56923,,,4.098360656,6,1464,,,7.496205046,12,160081,3.873398535,13.09436164,,,,,,,,,,,,,,,,,,,16.75208122,20,113373,10.08584722,26.16044994,17.64088451,,,,,,,,,,,,,18.12772078,9.049292898,32.43549986,,,,19.40497297,22,113373,12.16099325,29.37936227,,,,,,,,,,,,,27.03276758,14.77906559,45.35639059,,,,25.61203391,41,160081,18.37963773,34.74561601,,,,,,,,,,29.64337728,18.79135836,44.47962069,22.97390435,13.3831459,36.78344638,,,,,,2400,,,11,-888,0.516416959,8100,15685,,,0.551,,,,,29.52546173,,,,,0.727720273,5765,7922,0.688871111,0.766569435,0.101841965,763,7492,0.072700231,0.130983698,0.809391568,6412,7922,0.785845746,0.832937389,21161,,,,,0.265393885,5616,21161,,,0.154907613,3278,21161,,,0.031331223,663,21161,,,0.014885875,315,21161,,,0.004678418,99,21161,,,0.000614338,13,21161,,,0.511317991,10820,21161,,,0.439771277,9306,21161,,,0.042075245,841,19988,0.027984427,0.056166064,0.498369642,10546,21161,,,0.414913869,8936,21537,, -48,221,48221,TX,Hood County,2024,1,9342.548708,1098,169180,8376.883145,10308.21427,0,,,,2,,,,2,,,,2,5320.374315,3639.132093,7510.78108,,10256.39673,9095.683082,11417.11038,,,,,2,,0.146,,,0.122,0.174,3.53838654,,,2.761045622,4.424410329,4.975617653,,,3.997214799,6.115593941,0.071662764,306,4270,0.063926312,0.079399215,0,,,,,,,0.217391304,0.098192864,0.336589745,0.075977654,0.058618493,0.093336815,0.068365444,0.059645692,0.077085197,,,,,,,0.155,,,0.12,0.193,0.332,,,0.26,0.419,7.7,0.053795437,0.121,,,0.219,,,0.175,0.267,0.780317543,48066,61598,,,0.174978194,,,0.139640959,0.216309959,0.14,7,50,0.075836431,0.218794679,171.3,110,64222,,,20.29136316,234,11532,17.69144687,22.89127946,,,,,,,,,,23.02379125,17.56957826,29.6361832,20.00714541,16.98171924,23.03257158,,,,,,,0.177354143,8466,47735,0.158290313,0.196417972,0.000373704,24,64222,,,2675.916667,0.000542389,36,66373,,,1843.694444,0.001205309,80,66373,,,829.6625,2312,,,,,,,16667,,2254,0.5,,,,,,0.42,,0.27,0.5,0.46,,,,,,0.27,0.25,0.34,0.47,0.923685138,41939,45404,0.911406287,0.935963989,0.611106896,8055,13181,0.551901732,0.670312061,0.037497494,1122,29922,,,0.13,1725,,0.079957447,0.180042553,,,,,,,,,,0.175666199,0.078213059,0.273119339,0.098431585,0.061270504,0.135592665,4.576835638,148976,32550,4.14403879,5.009632485,0.127387052,1641,12882,0.09050033,0.164273774,10.74398181,69,64222,,,92.47182043,285,308202,81.73580694,103.2078339,,,,,,,,,,32.47645457,17.29234428,55.53572639,104.4158556,91.9145571,116.9171542,,,,8.8,,,,,1,,,,,0.121903941,2830,23215,0.099628847,0.144179036,0.092156863,0.071360636,0.11295309,0.027353005,0.017137592,0.037568417,0.011415033,0.004457786,0.018372281,0.80166013,21054,26263,0.779156203,0.824164057,,,,,,,,,,0.816334212,0.730156204,0.902512219,0.748795944,0.708596902,0.788994987,0.513,,26263,0.468069633,0.557930367,76.42867436,,,75.67252491,77.18482381,,,,,,,,,,84.86218298,80.02220664,89.70215932,75.58864845,74.72317494,76.45412196,,,,422.095404,1098,169180,393.9561915,450.2346165,,,,,,,,,,221.8369141,161.1870414,297.8057028,452.5447085,420.306072,484.783345,,,,51.01233091,29,56849,34.16375862,73.26221647,,,,,,,,,,,,,58.3842168,37.40786935,86.87108666,,,,7.00280112,30,4284,4.724760509,9.996934032,,,,,,,,,,,,,6.713457431,4.207288029,10.16425523,,,,,,,0.104,,,0.088,0.122,0.164,,,0.142,0.189,0.088,,,0.074,0.104,139.8,77,55076,,,0.121,7300,,,,0.053795437,2753.358058,51182,,,17.42417842,33,189392,11.99400269,24.47002475,,,,,,,,,,,,,19.08117769,12.87399046,27.23956762,,,,0.328,,,0.311,0.345,0.20039866,6937,34616,0.176568872,0.224228447,0.11983741,1651,13777,0.090050176,0.149624644,0.000693053,46,66373,,,1442.891304,0.941436567,504.61,536,,,0.140607424,375,2667,0.065576885,0.215637963,3.04907423,,,,,,,,2.707767838,3.144394466,3.255324189,,,,,,,,3.163953289,3.281788974,0.041996679,,,,,-75.98546667,,,,,0.713334736,47471,66548,0.625846867,0.800822604,75545,,,66580.23404,84509.76596,40057,9035.382979,71078.61702,,,,,,,68281,43791.12766,92770.87234,80828,77102.21277,84553.78723,,,,,,0.517528673,4783,9242,,,70.49665581,,,,,0.263882454,,75545,,,6.259780908,20,3195,,,3.56733463,15,420482,1.996610112,5.883775969,,,,,,,,,,,,,3.98066534,2.176266783,6.678880046,,,,25.96394705,80,308202,20.16202082,32.91548962,25.95700223,,,,,,,,,,,,,29.29888626,22.46328809,37.55984989,,,,20.76560178,64,308202,15.99204371,26.51720989,,,,,,,,,,,,,23.7662955,18.17933289,30.52880082,,,,16.88538392,71,420482,13.18762493,21.29861424,,,,,,,,,,,,,18.48166051,14.2637554,23.55639347,,,,15,,5400,,,49,32,0.69852957,32541,46585,,,0.653,,,,,28.62246814,,,,,0.80371149,19879,24734,0.792587803,0.814835177,0.133405459,3206,24032,0.107236079,0.15957484,0.901997251,22310,24734,0.884354921,0.919639581,66373,,,,,0.202913835,13468,66373,,,0.256263842,17009,66373,,,0.013574797,901,66373,,,0.010425926,692,66373,,,0.009702741,644,66373,,,0.001054646,70,66373,,,0.13773673,9142,66373,,,0.819866512,54417,66373,,,0.018651678,1105,59244,0.010929009,0.026374347,0.507118859,33659,66373,,,0.410841261,25307,61598,, -48,223,48223,TX,Hopkins County,2024,1,9608.852423,682,102611,8482.859563,10734.84528,0,,,,2,,,,2,12591.56558,8367.003883,18198.31809,,7876.583886,5516.66252,10904.51219,,9656.501889,8319.834742,10993.16904,,,,,2,,0.19,,,0.162,0.218,4.050618855,,,3.196332759,4.999400536,5.602955097,,,4.476739848,6.825604942,0.074387947,237,3186,0.065276257,0.083499638,0,,,,,,,0.134328358,0.08718522,0.181471497,0.064516129,0.047219657,0.081812601,0.070316187,0.059429747,0.081202627,,,,,,,0.184,,,0.148,0.224,0.38,,,0.296,0.469,7,0.089272387,0.136,,,0.27,,,0.221,0.325,0.507081306,18654,36787,,,0.180449604,,,0.142344969,0.222803085,0.14,7,50,0.075836431,0.218794679,389.7,145,37211,,,29.19009451,244,8359,25.52743406,32.85275496,,,,,,,44.7761194,28.68890458,66.62331641,28.59736723,21.97500218,36.58845542,27.56130013,23.075171,32.04742927,,,,43.8247012,21.87713294,78.41449607,0.226103978,6815,30141,0.20346568,0.248742276,0.000241864,9,37211,,,4134.555556,0.000317427,12,37804,,,3150.333333,0.000820019,31,37804,,,1219.483871,3213,,,,,,,4343,,3294,0.39,,,,,0.36,,0.41,0.18,0.4,0.41,,,,,0.36,,0.4,0.31,0.42,0.849011984,21182,24949,0.829733774,0.868290195,0.543696028,4722,8685,0.483725551,0.603666505,0.035185991,647,18388,,,0.18,1613,,0.110893617,0.249106383,0.067567568,0,0.785174861,,,,0.521019108,0.348297242,0.693740974,0.180017606,0.101866251,0.25816896,0.111415525,0.073378975,0.149452075,4.451841667,123040,27638,3.947628893,4.956054442,0.211562116,1892,8943,0.166599656,0.256524575,7.793394426,29,37211,,,99.04151626,183,184771,84.69165153,113.391381,,,,,,,,,,77.21292236,49.96813221,113.981505,110.9208665,93.11036328,128.7313698,,,,8.9,,,,,1,,,,,0.140584536,1900,13515,0.115765321,0.16540375,0.101119403,0.080023153,0.122215653,0.037735849,0.024902973,0.050568725,0.009988901,0.003633203,0.0163446,0.814530067,13667,16779,0.790765913,0.838294222,,,,,,,0.738325282,0.590515561,0.886135003,0.766369624,0.66591899,0.866820259,0.818888279,0.780388552,0.857388006,0.25,,16779,0.218998372,0.281001628,74.64368621,,,73.76988697,75.51748545,,,,,,,73.38445171,69.9156501,76.85325331,80.44424402,74.95622084,85.93226721,74.32669458,73.32304075,75.3303484,,,,498.2551617,682,102611,458.9265742,537.5837493,,,,,,,656.3391484,494.4444693,854.3156182,307.4655627,217.5809316,422.0205069,512.0411573,466.8599362,557.2223784,,,,55.59486506,22,39572,34.84100594,84.17129381,,,,,,,,,,,,,61.19202056,34.24870939,100.9269321,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.124,,,0.107,0.143,0.183,,,0.158,0.21,0.108,,,0.092,0.127,168.3,52,30902,,,0.136,4970,,,,0.089272387,3138.906395,35161,,,8.971426008,10,111465,4.302147487,16.49877185,,,,,,,,,,,,,,,,,,,0.362,,,0.346,0.377,0.264819527,5620,21222,0.236223782,0.293415272,0.139190628,1307,9390,0.104637437,0.17374382,0.001031637,39,37804,,,969.3333333,0.913135593,431,472,,,,,,,,2.70566649,,,,,,,2.073382057,2.656256074,2.879057519,2.662009291,,,,,,,2.078690293,2.573485515,2.84098115,0.06705128,,,,,-5880.995897,,,,,0.705592981,38440,54479,0.603717172,0.80746879,64249,,,58842.02128,69655.97872,80125,48296.74468,111953.2553,,,,34731,27273.46809,42188.53192,49550,36809.40426,62290.59575,69923,66074.48936,73771.51064,,,,,,0.597050148,4048,6780,,,48.2958968,,,,,0.209248393,,64249,,,3.068829461,7,2281,,,6.216151115,16,257394,3.553067458,10.09463997,,,,,,,,,,,,,5.856265938,2.923426856,10.47847743,,,,24.26851883,47,184771,17.56324741,32.68953561,25.43689215,,,,,,,,,,,,,29.10786811,20.59845989,39.95282316,,,,27.60173404,51,184771,20.55130396,36.2911828,,,,,,,,,,,,,34.98846125,25.70820529,46.52723617,,,,30.30373668,78,257394,23.95384632,37.82043484,,,,,,,,,,40.53323726,24.02256526,64.05998979,28.74894188,21.59708995,37.51113297,,,,13.78378378,,3700,,,23,28,0.610181818,15941,26125,,,0.588,,,,,37.29722086,,,,,0.700602279,9655,13781,0.672991264,0.728213293,0.122239147,1605,13130,0.096667518,0.147810776,0.86038749,11857,13781,0.842671168,0.878103812,37804,,,,,0.239472014,9053,37804,,,0.186567559,7053,37804,,,0.068669982,2596,37804,,,0.010977674,415,37804,,,0.007671146,290,37804,,,0.001613586,61,37804,,,0.186911438,7066,37804,,,0.712490742,26935,37804,,,0.029386369,1021,34744,0.020242123,0.038530615,0.506110465,19133,37804,,,0.600864436,22104,36787,, -48,225,48225,TX,Houston County,2024,1,11835.26725,500,61001,10149.52593,13521.00856,0,,,,2,,,,2,15346.35727,11633.2792,19059.43533,,9230.115457,5913.909136,13733.68016,1,11290.68545,9028.418679,13552.95222,,,,,2,,0.243,,,0.21,0.278,4.49821113,,,3.614150514,5.500853691,5.709051911,,,4.600589349,6.948424095,0.099493029,157,1578,0.084724323,0.114261735,0,,,,,,,0.171021378,0.135053742,0.206989013,0.098591549,0.063919656,0.133263443,0.066825776,0.049917963,0.083733589,,,,,,,0.233,,,0.19,0.276,0.388,,,0.308,0.47,5.9,0.135855421,0.166,,,0.322,,,0.269,0.379,0.511918789,11296,22066,,,0.155820504,,,0.124159159,0.191020201,0.282051282,11,39,0.19800229,0.369170081,373.2,83,22241,,,36.17443013,146,4036,30.30654854,42.04231172,,,,,,,47.36842105,34.55085136,63.38267421,59.36073059,42.21128233,81.14807286,26.46669607,20.19687735,34.06788417,,,,,,,0.20503792,3028,14768,0.180016643,0.230059196,0.000134886,3,22241,,,7413.666667,0.00022779,5,21950,,,4390,0.000318907,7,21950,,,3135.714286,2965,,,,,,,4872,,2861,0.33,,,,,,,0.29,,0.34,0.36,,,,,,,0.25,0.24,0.37,0.823875475,13444,16318,0.800600955,0.847149995,0.447912886,2468,5510,0.377587315,0.518238456,0.035551763,375,10548,,,0.292,1259,,0.18,0.404,,,,,,,0.447257384,0.314364434,0.580150334,0.303959132,0.162676652,0.445241611,0.090622182,0.049875853,0.131368511,5.087084479,105440,20727,4.242207287,5.931961671,0.297404723,1272,4277,0.207736137,0.387073309,12.13974192,27,22241,,,82.28723497,94,114234,66.496462,100.6987357,,,,,,,74.63217002,46.19848953,114.0831997,,,,95.70471524,74.16983977,121.5416053,,,,9.1,,,,,1,,,,,0.162720097,1340,8235,0.129042797,0.196397398,0.116962645,0.084244316,0.149680975,0.037037037,0.022665913,0.051408162,0.018822101,0.006975609,0.030668592,0.823606045,6322,7676,0.783064923,0.864147167,,,,,,,0.808767952,0.67084488,0.946691024,0.811512415,0.662247937,0.960776893,0.816014811,0.753276846,0.878752776,0.388,,7676,0.319378074,0.456621926,74.11582951,,,72.83805057,75.39360845,,,,,,,70.43853614,67.74918703,73.12788526,84.24424265,68.40316503,100.0853203,74.54957519,72.88112747,76.2180229,,,,565.6010559,500,61001,512.7103006,618.4918113,,,,,,,772.898562,646.4794072,899.3177167,466.6152207,310.0624255,674.388912,529.9412969,464.0281359,595.8544579,,,,71.33031029,14,19627,38.99694439,119.6801402,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.144,,,0.124,0.165,0.193,,,0.167,0.219,0.137,,,0.117,0.158,547.7,105,19171,,,0.166,3690,,,,0.135855421,3224.120853,23732,,,,,,,,,,,,,,,,,,,,,,,,,,0.383,,,0.371,0.395,0.248190476,2606,10500,0.216020263,0.280360689,0.102090747,459,4496,0.071112024,0.133069471,0.000728929,16,21950,,,1371.875,0.948406863,193.475,204,,,,,,,,2.59131343,,,,,,,2.20376213,2.353703731,2.884793219,2.677386069,,,,,,,2.389750719,2.641363383,2.875800669,0.15793333,,,,,-10395.129,,,,,0.919586566,39236,42667,0.710451714,1.128721418,49741,,,43547.6383,55934.3617,,,,,,,29888,22920.17021,36855.82979,46938,8902.085106,84973.91489,57702,51715.95745,63688.04255,,,,,,0.710321172,2278,3207,,,45.1113344,,,,,0.273597234,,49741,,,3.63967243,4,1099,,,,,,,,,,,,,,,,,,,,,,,,,,19.30329233,20,114234,11.62184296,30.14448211,17.50792234,,,,,,,,,,,,,26.36356333,14.41320539,44.23357957,,,,13.13094175,15,114234,7.349288419,21.65749153,,,,,,,,,,,,,17.14114303,8.857078733,29.94212729,,,,31.92028691,51,159773,23.76675023,41.96928228,,,,,,,32.90139704,17.51860825,56.26239097,,,,34.5974988,23.95977368,48.34653679,,,,11.05263158,,1900,,,15,6,0.523751387,9438,18020,,,0.431,,,,,10.06372877,,,,,0.693997856,5180,7464,0.658220758,0.729774955,0.111915448,773,6907,0.080563866,0.143267031,0.745176849,5562,7464,0.705481857,0.784871841,21950,,,,,0.198132119,4349,21950,,,0.229840547,5045,21950,,,0.234259681,5142,21950,,,0.009157175,201,21950,,,0.008018223,176,21950,,,0.000501139,11,21950,,,0.13047836,2864,21950,,,0.609339408,13375,21950,,,0.013264239,279,21034,,,0.461321185,10126,21950,,,0.73103417,16131,22066,, -48,227,48227,TX,Howard County,2024,1,11054.50693,684,101568,9885.61883,12223.39504,0,,,,2,,,,2,13156.70623,7363.708601,21699.98611,1,10770.14493,9058.422484,12481.86737,,11588.71664,9794.90489,13382.52839,,,,,2,,0.223,,,0.194,0.254,4.125917243,,,3.313383483,5.059922953,5.242310363,,,4.198936287,6.428122263,0.102103121,301,2948,0.091172997,0.113033244,0,,,,,,,0.140740741,0.082078153,0.199403328,0.104457751,0.088994886,0.119920616,0.097381342,0.0807583,0.114004384,,,,,,,0.184,,,0.153,0.219,0.396,,,0.316,0.482,6.3,0.122264631,0.155,,,0.303,,,0.255,0.355,0.643602983,22436,34860,,,0.188252858,,,0.15071779,0.229679979,0.13559322,8,59,0.076899587,0.207122317,342.8,117,34128,,,47.16560036,317,6721,41.97339564,52.35780507,,,,,,,41.2371134,21.30781824,72.03293831,53.1496063,45.57211893,60.72709367,40.49493813,32.85754875,48.13232752,,,,,,,0.20615911,5061,24549,0.183520813,0.228797408,0.00020511,7,34128,,,4875.428571,0.000534569,18,33672,,,1870.666667,0.00204918,69,33672,,,488,3335,,,,,,,,3143,3662,0.31,,,,,,,0.19,0.29,0.32,0.28,,,,,,0.35,0.19,0.31,0.27,0.8101473,19305,23829,0.786090555,0.834204045,0.461022793,4814,10442,0.406173884,0.515871701,0.050556657,663,13114,,,0.224,1564,,0.145361702,0.302638298,,,,,,,0.620853081,0.243958691,0.99774747,0.159316155,0.104310205,0.214322104,0.131588647,0.071595574,0.191581721,4.341499913,124753,28735,3.834438701,4.848561126,0.298711755,2226,7452,0.227918648,0.369504863,11.13455227,38,34128,,,97.86966652,176,179831,83.4103473,112.3289858,,,,,,,111.6382919,57.68513451,195.0096293,70.20320637,52.88666263,91.37912281,125.275137,101.53796,149.012314,,,,7.5,,,,,1,,,,,0.11448701,1300,11355,0.090689095,0.138284926,0.082515611,0.058830396,0.106200826,0.022897402,0.010982038,0.034812767,0.015411713,0.008085384,0.022738042,0.84668596,11995,14167,0.818335279,0.875036642,,,,,,,,,,0.837555632,0.781674996,0.893436267,0.805760214,0.756875749,0.85464468,0.27,,14167,0.218489612,0.321510388,72.80980541,,,71.9048551,73.71475571,,,,,,,72.53997017,66.21957528,78.86036506,73.29345097,71.7639168,74.82298514,72.14162041,70.86177823,73.4214626,,,,592.5167815,684,101568,547.6904181,637.3431448,,,,,,,591.7217131,393.1947811,855.2026264,559.6460819,486.3970387,632.8951252,631.6509031,568.7509785,694.5508276,,,,79.76526223,28,35103,53.00343747,115.2830127,,,,,,,,,,64.53347674,33.34538913,112.7269968,81.21077889,40.54012822,145.3085162,,,,6.540222368,20,3058,3.994937732,10.100843,,,,,,,,,,,,,,,,,,,,,,0.132,,,0.115,0.15,0.171,,,0.15,0.195,0.13,,,0.112,0.15,611.9,177,28927,,,0.155,5370,,,,0.122264631,4280.72927,35012,,,14.90701748,16,107332,8.520648505,24.20806246,,,,,,,,,,,,,,,,,,,0.365,,,0.353,0.377,0.241765179,4213,17426,0.211977944,0.271552413,0.122673095,916,7467,0.092885861,0.152460329,0.001217629,41,33672,,,821.2682927,0.860377129,353.615,411,,,,,,,,2.511280743,,,,,,,,2.343953289,2.863873331,2.840503402,,,,,,,,2.799910945,2.970618038,0.068109759,,,,,426.535,,,,,0.592380325,39587,66827,0.498179398,0.686581252,59598,,,51234.93617,67961.06383,,,,108576,15009.53192,202142.4681,,,,62666,58632.80851,66699.19149,76480,71036.08511,81923.91489,,,,,,0.611222445,3355,5489,,,46.83295806,,,,,0.283298097,,59598,,,4.245283019,9,2120,,,8.670121579,22,253745,5.433519034,13.12666826,,,,,,,,,,11.92879427,6.351580557,20.3986015,,,,,,,27.45043487,49,179831,20.23978371,36.39529414,27.24780488,,,,,,,,,,19.40120501,10.33032457,33.17665144,34.22070217,22.73940807,49.45844259,,,,25.57957193,46,179831,18.72746157,34.11956432,,,,,,,,,,15.31706321,7.914550072,26.75582693,31.61148316,20.8321666,45.99304834,,,,27.19265404,69,253745,21.15750795,34.41404406,,,,,,,,,,20.18719031,12.65120469,30.56364873,34.38902171,24.78458204,46.48396717,,,,23.10344828,,2900,,,21,46,0.410872618,10241,24925,,,0.509,,,,,41.03735664,,,,,0.667527061,8017,12010,0.632375221,0.702678901,0.099965139,1147,11474,0.071039605,0.128890673,0.847127394,10174,12010,0.81817243,0.876082358,33672,,,,,0.211718936,7129,33672,,,0.128652887,4332,33672,,,0.060198384,2027,33672,,,0.017700166,596,33672,,,0.01404728,473,33672,,,0.001247327,42,33672,,,0.45530411,15331,33672,,,0.452928249,15251,33672,,,0.058153145,1888,32466,0.04344071,0.07286558,0.424863388,14306,33672,,,0.169391853,5905,34860,, -48,229,48229,TX,Hudspeth County,2024,1,7605.41336,60,12214,5012.015327,11065.47714,0,,,,2,,,,2,,,,2,6500.673825,3715.696771,10556.68702,1,14218.31394,6818.234192,26147.98556,1,,,,2,,0.345,,,0.301,0.392,5.339321605,,,4.262688179,6.453230938,5.669884824,,,4.455218106,6.949039805,0.104651163,27,258,0.067299118,0.142003208,0,,,,,,,,,,0.104761905,0.063341209,0.146182601,,,,,,,,,,0.22,,,0.18,0.264,0.444,,,0.354,0.537,0,0.581970216,0.223,,,0.422,,,0.357,0.487,0.000936914,3,3202,,,0.159499237,,,0.125381863,0.199415681,0.1875,9,48,0.116281691,0.268455771,243.4,8,3287,,,48.26732673,39,808,34.32278773,65.98302459,,,,,,,,,,55.2238806,38.88270831,76.11884499,,,,,,,,,,0.292163236,809,2769,0.256418555,0.327907917,,0,3287,,,,0,0,3432,,,-3432,,0,3432,,,,1047,,,,,,,,,,0.27,,,,,,,,0.33,0.21,0.17,,,,,,,,0.23,0.17,0.549063336,1231,2242,0.458774433,0.63935224,0.283728536,347,1223,0.159686545,0.407770528,0.039703547,75,1889,,,0.486,236,,0.292978723,0.679021277,,,,,,,,,,0.312649165,0.135191501,0.490106828,0.12244898,0,0.395983251,4.629591762,63393,13693,1.439113247,7.820070278,0.441696113,250,566,0.210509275,0.672882951,0,0,3287,,,53.8551297,12,22282,27.82773139,94.07407346,,,,,,,,,,,,,,,,,,,5.3,,,,,0,,,,,0.253333333,285,1125,0.133270023,0.373396644,0.137777778,0.037925511,0.237630045,0.075555556,0.011433941,0.13967717,0.066666667,0,0.153443372,0.706004141,682,966,0.514999438,0.897008844,,,,,,,,,,0.749222153,0.526389382,0.972054924,,,,0.381,,966,0.136486177,0.625513823,78.54249109,,,75.42810174,81.65688045,,,,,,,,,,80.24672438,76.38615926,84.1072895,,,,,,,426.4450043,60,12214,323.8175707,551.2790573,,,,,,,,,,338.6407911,233.1047387,475.5775759,799.1069788,488.1153029,1234.155917,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.177,,,0.153,0.205,0.194,,,0.168,0.221,0.182,,,0.157,0.21,323.9,9,2778,,,0.223,740,,,,0.581970216,2022.928472,3476,,,,,,,,,,,,,,,,,,,,,,,,,,0.37,,,0.355,0.384,0.340038314,710,2088,0.294761718,0.38531491,0.147180193,107,727,0.104286576,0.19007381,0,0,3432,,,-3432,,,,,,,,,,,2.182843055,,,,,,,,2.201537432,,2.729310309,,,,,,,,2.612774337,,0.207952226,,,,,-27601.975,,,,,1.473005093,39042,26505,0.448050288,2.497959899,39582,,,33787.78723,45376.21277,,,,,,,,,,33939,23829.21277,44048.78723,47750,12419.95745,83080.04255,,,,,,0.848639456,499,588,,,,,,,,0.400156637,,39582,,,10,2,200,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,400,,,0,0,0.520089286,1165,2240,,,0.223,,,,,19.58554708,,,,,0.683146067,608,890,0.573660476,0.792631659,0.075351213,59,783,0,0.161888788,0.743820225,662,890,0.634998843,0.852641607,3432,,,,,0.152972028,525,3432,,,0.098776224,339,3432,,,0.043414918,149,3432,,,0.01544289,53,3432,,,0.021561772,74,3432,,,0.001165501,4,3432,,,0.792540793,2720,3432,,,0.131118881,450,3432,,,0.320848939,1028,3204,0.238203329,0.403494548,0.34965035,1200,3432,,,1,3202,3202,, -48,231,48231,TX,Hunt County,2024,1,10048.47986,1823,282059,9361.146958,10735.81276,0,,,,2,,,,2,17001.51833,13717.65861,20285.37805,,6604.211783,5329.194509,7879.229057,,10451.325,9593.618279,11309.03173,,,,,2,,0.185,,,0.158,0.215,4.075706744,,,3.237380276,5.08211037,5.77411908,,,4.719909926,7.017995075,0.085793358,744,8672,0.079898879,0.091687837,0,,,,,,,0.175965665,0.147736106,0.204195225,0.077319588,0.066469456,0.088169719,0.076908648,0.069756085,0.08406121,,,,0.125,0.073754573,0.176245427,0.179,,,0.144,0.22,0.405,,,0.327,0.49,7,0.084275398,0.142,,,0.257,,,0.208,0.312,0.610698707,61043,99956,,,0.182707032,,,0.145507626,0.223478435,0.328358209,44,134,0.284755866,0.372188008,309.5,320,103394,,,25.0313905,618,24689,23.05784652,27.00493448,,,,,,,25.81818182,20.1642142,32.56612331,31.02547355,26.61385768,35.43708941,22.36007908,19.94020658,24.77995158,,,,43.07116105,27.30342142,64.62788932,0.204633525,17268,84385,0.185569695,0.223697355,0.000270809,28,103394,,,3692.642857,0.000313995,34,108282,,,3184.764706,0.000849633,92,108282,,,1176.978261,4539,,,,,6620,,5441,6455,4384,0.39,,,,,,0.24,0.36,0.36,0.39,0.38,,,,,0.47,0.4,0.3,0.32,0.39,0.876769905,58826,67094,0.862106125,0.891433685,0.551891135,13789,24985,0.509096046,0.594686223,0.039090035,1830,46815,,,0.17,4359,,0.122340426,0.217659575,0.226720648,0,0.529165269,0.374045802,0,0.948883532,0.543836519,0.357320634,0.730352405,0.169271601,0.105600134,0.232943069,0.116572423,0.083139523,0.150005322,4.289691005,124667,29062,4.011782971,4.56759904,0.218642165,5259,24053,0.17731522,0.25996911,10.15532816,105,103394,,,74.16287386,365,492160,66.55442388,81.77132384,,,,,,,88.17427386,61.06324789,123.2147098,43.35029319,30.67724754,59.50166433,84.14003678,74.47257922,93.80749434,,,,9,,,,,1,,,,,0.173686561,5835,33595,0.15527693,0.192096191,0.117691609,0.102137425,0.133245793,0.05700253,0.043748862,0.070256198,0.011757702,0.00746854,0.016046864,0.808833341,36370,44966,0.788371333,0.829295349,,,,0.744801512,0.742766136,0.746836889,0.774107441,0.704476773,0.843738109,0.820730939,0.748326068,0.89313581,0.80173482,0.771140232,0.832329409,0.422,,44966,0.388215446,0.455784554,74.73803145,,,74.18973443,75.28632847,,,,,,,69.40504385,67.22980605,71.58028165,80.28268542,77.42774519,83.13762564,74.28315646,73.64219862,74.92411431,,,,514.9833715,1823,282059,490.4861517,539.4805913,,,,,,,774.9447085,657.8106836,892.0787334,332.4761523,272.4108288,392.5414759,535.7225617,506.8433826,564.6017407,,,,63.38494235,68,107281,49.2208879,80.3555179,,,,,,,107.3652566,51.48581379,197.4485296,63.82907246,38.42927122,99.6770033,62.30927769,44.30798755,85.1788338,,,,6.624111767,55,8303,4.990187519,8.622191976,,,,,,,,,,,,,5.751533742,3.880535664,8.210672047,,,,,,,0.121,,,0.104,0.141,0.179,,,0.154,0.206,0.108,,,0.092,0.127,178.1,153,85884,,,0.142,14060,,,,0.084275398,7258.555767,86129,,,11.26592555,34,301795,7.801980942,15.74300174,,,,,,,,,,,,,13.33098454,8.858342414,19.26698436,,,,0.37,,,0.355,0.385,0.24806318,14857,59892,0.223041904,0.273084457,0.104948342,2702,25746,0.081118554,0.128778129,0.000766517,83,108282,,,1304.60241,0.943839369,1016.515,1077,,,0.078615824,468,5953,0.043848313,0.113383335,2.706695473,,,,,,,2.075832035,2.368804976,3.014400123,2.806801695,,,,,,,2.037726218,2.549280403,3.083361326,0.091555742,,,,,-5337.7077,,,,,0.732491814,41607,56802,0.678153622,0.786830006,68019,,,62858.65957,73179.34043,88300,55232.59575,121367.4043,69852,7798.042553,131905.9575,28278,22678,33878,64534,50559.02128,78508.97872,73310,68745.40426,77874.59575,,,,,,0.607107438,11019,18150,,,45.31444702,,,,,0.293079875,,68019,,,3.707883282,23,6203,,,5.04393415,34,674077,3.493071027,7.048392409,,,,,,,,,,,,,3.55813788,2.072746437,5.696923428,,,,15.64522059,78,492160,12.28486321,19.64114175,15.84850455,,,,,,,,,,,,,19.56742285,15.10172385,24.9402867,,,,16.86443433,83,492160,13.43242781,20.9060037,,,,,,,,,,12.54876908,6.264300312,22.45321421,19.66158935,15.26799346,24.9257495,,,,24.47791573,165,674077,20.74293354,28.21289791,,,,,,,30.12331733,17.21807861,48.91838011,12.07219171,6.599979543,20.25508638,27.83719636,23.1061659,32.56822681,,,,11.47368421,,9500,,,37,72,0.556473472,38597,69360,,,0.589,,,,,43.58751302,,,,,0.699480306,25573,36560,0.678101729,0.720858884,0.12015569,4291,35712,0.103428514,0.136882866,0.855443107,31275,36560,0.839491473,0.871394742,108282,,,,,0.239910604,25978,108282,,,0.158364271,17148,108282,,,0.081167692,8789,108282,,,0.013132377,1422,108282,,,0.016420088,1778,108282,,,0.002290316,248,108282,,,0.201972627,21870,108282,,,0.674267191,73011,108282,,,0.022740867,2167,95291,0.016987767,0.028493968,0.504460575,54624,108282,,,0.613259834,61299,99956,, -48,233,48233,TX,Hutchinson County,2024,1,13242.83098,492,57696,11470.29348,15015.36849,0,,,,2,,,,2,21633.79894,10374.24749,39785.32651,1,8662.775094,6243.366321,11709.55535,,15339.53443,12896.3169,17782.75195,,,,,2,,0.183,,,0.157,0.214,3.889748858,,,3.078405042,4.825824804,5.335141628,,,4.255662924,6.519731347,0.090449438,161,1780,0.077124585,0.103774291,0,,,,,,,,,,0.089108911,0.064260182,0.11395764,0.087029289,0.07104721,0.103011367,,,,,,,0.175,,,0.141,0.213,0.371,,,0.29,0.459,6.9,0.08805034,0.143,,,0.261,,,0.214,0.313,0.632681768,13044,20617,,,0.187230689,,,0.14832635,0.228842333,0.25,3,12,0.099776571,0.4182543,351.3,72,20495,,,32.91780288,169,5134,27.95481106,37.8807947,,,,,,,61.11111111,30.50644649,109.3446584,31.21516165,23.57959765,40.53548384,33.5934849,27.30312686,40.89886249,,,,,,,0.198947243,3326,16718,0.176308945,0.22158554,0.000243962,5,20495,,,4099,0.000494682,10,20215,,,2021.5,0.000148405,3,20215,,,6738.333333,2694,,,,,,,,3379,2562,0.36,,,,,,,0.19,0.37,0.37,0.36,,,,,,,0.1,0.32,0.37,0.858948769,11619,13527,0.827920159,0.889977379,0.555620043,2872,5169,0.468609944,0.642630141,0.044538706,378,8487,,,0.165,807,,0.100659575,0.229340426,,,,,,,,,,0.114352392,0.009579256,0.219125528,0.153846154,0.07855863,0.229133678,4.468170626,123393,27616,3.836756902,5.09958435,0.203915488,1052,5159,0.140297448,0.267533527,14.14979263,29,20495,,,106.0344086,111,104683,86.30830091,125.7605164,,,,,,,,,,43.58161648,21.75578592,77.97955037,127.7858694,103.1396888,156.5463231,,,,5.9,,,,,0,,,,,0.08409894,595,7075,0.059028378,0.109169502,0.069747292,0.046795364,0.092699221,0.009187279,0,0.018700194,0.009893993,0.000375103,0.019412883,0.832759196,7494,8999,0.793727483,0.871790908,,,,,,,,,,0.766336634,0.715772635,0.816900632,0.839880444,0.787622542,0.892138347,0.247,,8999,0.183570675,0.310429325,71.36124229,,,70.13228239,72.59020219,,,,,,,,,,76.82656853,72.68855732,80.96457973,69.74992958,68.18191081,71.31794835,,,,667.7791433,492,57696,606.097517,729.4607696,,,,,,,1223.928211,757.6308534,1870.904283,523.7805925,395.6582307,680.1726668,719.2362679,643.4913054,794.9812304,,,,82.15505686,19,23127,49.46271096,128.295298,,,,,,,,,,,,,123.2687985,71.80861772,197.3652876,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.12,,,0.103,0.138,0.175,,,0.153,0.2,0.107,,,0.091,0.124,112.1,19,16942,,,0.143,2970,,,,0.08805034,1950.315026,22150,,,30.59088714,19,62110,18.41771239,47.77145962,,,,,,,,,,,,,41.83711417,24.79532535,66.12067745,,,,0.348,,,0.332,0.361,0.228809197,2667,11656,0.200213452,0.257404942,0.133833177,714,5335,0.099279986,0.168386369,0.000692555,14,20215,,,1443.928571,0.971116505,300.075,309,,,,,,,,2.816816374,,,,,,,,2.52540852,2.954619261,2.816692295,,,,,,,,2.544741727,2.939180772,0.068396995,,,,,-51.030875,,,,,0.708812548,37779,53299,0.582292581,0.835332515,65019,,,56137.6383,73900.3617,,,,68750,5478.340426,132021.6596,97000,17522.89362,176477.1064,52215,43987.76596,60442.23404,66741,60591.7234,72890.2766,,,,,,0.505494506,1978,3913,,,67.71282726,,,,,0.233531737,,65019,,,3.90625,5,1280,,,,,,,,,,,,,,,,,,,,,,,,,,19.79704449,20,104683,11.91911402,30.91553728,19.10529886,,,,,,,,,,,,,23.13031941,12.94586419,38.14994431,,,,18.15003391,19,104683,10.92750606,28.34352624,,,,,,,,,,,,,20.61062409,11.53560985,33.99409007,,,,28.3921908,42,147928,20.46259378,38.37799387,,,,,,,,,,,,,31.94578896,21.9900112,44.86376502,,,,16.19047619,,2100,,,21,13,0.576602038,8773,15215,,,0.509,,,,,28.76651414,,,,,0.819102965,5497,6711,0.783480365,0.854725565,0.074282147,476,6408,0.047325633,0.101238661,0.839070183,5631,6711,0.813407195,0.864733172,20215,,,,,0.245955973,4972,20215,,,0.179421222,3627,20215,,,0.02384368,482,20215,,,0.02191442,443,20215,,,0.007321296,148,20215,,,0.000692555,14,20215,,,0.252188969,5098,20215,,,0.683700223,13821,20215,,,0.013106972,254,19379,0.003142718,0.023071225,0.491169923,9929,20215,,,0.37682495,7769,20617,, -48,235,48235,TX,Irion County,2024,1,9591.4639,23,4203,4140.91333,18899.00755,1,,,,2,,,,2,,,,2,,,,2,,,,2,,,,2,,0.173,,,0.148,0.202,3.777558552,,,2.954236102,4.643727444,5.298114595,,,4.623577029,5.964450819,0.118644068,14,118,0.06029771,0.176990425,1,,,,,,,,,,,,,,,,,,,,,,0.162,,,0.129,0.198,0.364,,,0.28,0.452,5.2,0.26405268,0.136,,,0.246,,,0.2,0.296,0.728354263,1102,1513,,,0.182536418,,,0.144017205,0.224891672,0,0,2,0,0.510593623,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.187449718,233,1243,0.162428442,0.212470995,0,0,1552,,,-1552,0,0,1530,,,-1530,,0,1530,,,,4702,,,,,,,,,5105,0.53,,,,,,,,,0.54,0.39,,,,,,,,0.27,0.35,0.888198758,1001,1127,0.810444402,0.965953114,0.78960396,319,404,0.58178998,0.997417941,0.030379747,24,790,,,0.103,36,,0.063680851,0.142319149,,,,,,,,,,0.233333333,0,0.523283233,,,,3.099860738,91263,29441,0.970030001,5.229691476,0.122194514,49,401,0,0.283577432,25.77319588,4,1552,,,,,,,,,,,,,,,,,,,,,,,,,,7.1,,,,,0,,,,,0.251968504,160,635,0.138919453,0.365017555,0.136,0.026321027,0.245678973,0.094488189,0.00363605,0.185340328,0.070866142,0,0.142841896,0.870827286,600,689,0.754537109,0.987117463,,,,,,,,,,,,,0.735930736,0.64013227,0.831729202,0.291,,689,0.156932296,0.425067705,,,,,,,,,,,,,,,,,,,,,,,,392.3100481,23,4203,239.6331693,605.8910511,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.115,,,0.098,0.133,0.171,,,0.148,0.196,0.104,,,0.088,0.121,,,,,,0.136,210,,,,0.26405268,422.220236,1599,,,,,,,,,,,,,,,,,,,,,,,,,,0.338,,,0.323,0.353,0.197004608,171,868,0.168408864,0.225600353,0.166246851,66,397,0.120970256,0.211523447,0,0,1530,,,-1530,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.007135357,,,,,5038.518,,,,,0.674138726,42404,62901,0.490617947,0.857659505,77768,,,66118.80851,89417.19149,,,,,,,,,,41694,28642.42553,54745.57447,60298,49683.02128,70912.97872,,,,,,0.389221557,130,334,,,,,,,,0.176074992,,77768,,,19.60784314,1,51,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,100,,,0,-888,0.763090129,889,1165,,,0.401,,,,,0.006601438,,,,,0.882534776,571,647,0.811788873,0.953280678,0.050986842,31,608,0,0.16244306,0.717156105,464,647,0.587625473,0.846686738,1530,,,,,0.22875817,350,1530,,,0.209150327,320,1530,,,0.015686275,24,1530,,,0.011764706,18,1530,,,0.005228758,8,1530,,,0,0,1530,,,0.28496732,436,1530,,,0.669281046,1024,1530,,,0.00330033,5,1515,0,0.049419337,0.501960784,768,1530,,,1,1513,1513,, -48,237,48237,TX,Jack County,2024,1,9361.562931,152,24768,6986.218195,11736.90767,0,,,,2,,,,2,,,,2,,,,2,9175.91594,6684.660755,11667.17112,,,,,2,,0.211,,,0.18,0.245,4.279692843,,,3.508415049,5.068398323,5.547224348,,,4.485829069,6.67771176,0.068403909,42,614,0.048436295,0.088371523,0,,,,,,,,,,,,,0.078947368,0.054196827,0.10369791,,,,,,,0.21,,,0.17,0.252,0.384,,,0.302,0.469,6,0.158225884,0.151,,,0.29,,,0.238,0.341,0.552644004,4682,8472,,,0.186804056,,,0.150017726,0.228179004,0.384615385,5,13,0.234541684,0.524881883,206.6,18,8712,,,21.93995381,38,1732,15.52601712,30.11430076,,,,,,,,,,34.48275862,19.29973824,56.87406637,17.08706265,10.57716109,26.11939035,,,,,,,0.245460338,1541,6278,0.218056082,0.272864593,0.000344353,3,8712,,,2904,,0,8922,,,,0.000224165,2,8922,,,4461,3921,,,,,,,,,3377,0.29,,,,,,,,,0.3,0.32,,,,,,,,,0.32,0.796438966,4652,5841,0.759074587,0.833803345,0.485280999,1088,2242,0.397895872,0.572666126,0.037757769,130,3443,,,0.185,350,,0.119468085,0.250531915,,,,,,,,,,0.427402863,0.208251052,0.646554674,0.134212568,0.049274211,0.219150925,5.35465456,119125,22247,4.036437221,6.672871899,0.265566791,499,1879,0.147107483,0.384026099,9.182736456,8,8712,,,117.1751769,52,44378,87.51202668,153.6596551,,,,,,,,,,,,,132.5556734,96.68701776,177.3699202,,,,7.9,,,,,0,,,,,0.127760252,405,3170,0.080958075,0.17456243,0.080128205,0.036680731,0.123575679,0.034700316,0.01123139,0.058169241,0.014195584,0,0.031989719,0.847058824,2592,3060,0.796861822,0.897255826,,,,,,,,,,,,,0.835641736,0.754636072,0.9166474,0.341,,3060,0.255660744,0.426339256,75.07823815,,,73.14839782,77.00807847,,,,,,,,,,,,,75.11843613,73.16598486,77.07088739,,,,482.1857958,152,24768,403.1080758,561.2635158,,,,,,,,,,,,,500.9329229,412.0996634,589.7661825,,,,115.9958242,10,8621,55.62450639,213.3204506,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.134,,,0.116,0.155,0.184,,,0.16,0.211,0.115,,,0.097,0.132,256,19,7423,,,0.151,1280,,,,0.158225884,1430.994893,9044,,,,,,,,,,,,,,,,,,,,,,,,,,0.361,,,0.345,0.376,0.291242363,1287,4419,0.255497682,0.326987043,0.138406537,271,1958,0.100278878,0.176534197,0.000784577,7,8922,,,1274.571429,,,,,,,,,,,2.762567827,,,,,,,,2.234761101,2.965956057,3.022887348,,,,,,,,2.624130184,3.153341932,0.04593036,,,,,-2632.2592,,,,,0.663453883,39167,59035,0.487756553,0.839151214,54132,,,46967.57447,61296.42553,,,,,,,,,,29191,14100.78723,44281.21277,65486,57507.78723,73464.21277,,,,,,0.638014528,1054,1652,,,,,,,,0.258257593,,54132,,,6.993006993,3,429,,,,,,,,,,,,,,,,,,,,,,,,,,25.42995312,11,44378,12.69454098,45.50121061,24.78705665,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,33.87096774,21,62000,20.96666288,51.77537215,,,,,,,,,,,,,35.7000357,20.79658638,57.15921547,,,,,,800,,,-888,0,0.564056674,3782,6705,,,0.492,,,,,7.485689396,,,,,0.728395062,2183,2997,0.679182684,0.77760744,0.108185053,304,2810,0.059100045,0.157270062,0.82649316,2477,2997,0.78268373,0.87030259,8922,,,,,0.215086304,1919,8922,,,0.167787492,1497,8922,,,0.04046178,361,8922,,,0.012665322,113,8922,,,0.006949115,62,8922,,,0.001232907,11,8922,,,0.186393185,1663,8922,,,0.749943959,6691,8922,,,0.026496565,216,8152,0.008968859,0.044024272,0.437121722,3900,8922,,,1,8472,8472,, -48,239,48239,TX,Jackson County,2024,1,9396.97611,245,40981,7575.556725,11218.3955,0,,,,2,,,,2,17270.42426,9441.901654,28976.83733,1,10392.12284,7489.728066,14047.13112,,7675.712726,5494.673992,9856.751459,,,,,2,,0.197,,,0.168,0.228,4.01393029,,,3.186243039,4.952197332,5.338911325,,,4.249240052,6.49595067,0.079598662,119,1495,0.06587794,0.093319385,0,,,,,,,0.141025641,0.063784637,0.218266645,0.090189873,0.06785663,0.112523117,0.06684492,0.04894643,0.08474341,,,,,,,0.174,,,0.139,0.211,0.37,,,0.288,0.457,7.4,0.057543691,0.134,,,0.276,,,0.226,0.331,0.517814251,7761,14988,,,0.177631861,,,0.141450744,0.218906334,0.258064516,8,31,0.163976301,0.358237809,284.4,43,15121,,,41.72876304,140,3355,34.81638368,48.6411424,,,,,,,79.78723404,44.65630922,131.5969089,54.03602402,42.91240293,67.16184402,25.30044276,18.07500724,34.45202212,,,,,,,0.208934195,2521,12066,0.185104408,0.232763983,0.000132266,2,15121,,,7560.5,0.000396249,6,15142,,,2523.666667,0.000330207,5,15142,,,3028.4,4607,,,,,,,8415,4298,3817,0.32,,,,,,,0.29,0.25,0.33,0.36,,,,,,,0.31,0.33,0.36,0.805845512,8106,10059,0.76679618,0.844894843,0.435823479,1511,3467,0.339804747,0.53184221,0.03479725,248,7127,,,0.197,745,,0.130276596,0.263723404,,,,,,,,,,0.163808397,0.03063278,0.296984015,0.124413146,0.031133643,0.217692649,4.387789731,129295,29467,2.958302843,5.817276619,0.155167856,587,3783,0.06623985,0.244095863,12.56530653,19,15121,,,72.56699008,54,74414,54.51455636,94.68418093,,,,,,,,,,71.64749433,42.46284592,113.2339301,79.16918921,54.82696499,110.6310066,,,,8.9,,,,,0,,,,,0.123857868,610,4925,0.085248237,0.1624675,0.086894296,0.05130285,0.122485741,0.040406091,0.019525857,0.061286326,0.003857868,0,0.009261154,0.750933786,4423,5890,0.688992737,0.812874836,,,,,,,,,,0.723525231,0.629275099,0.817775363,0.827064595,0.759049162,0.895080029,0.423,,5890,0.333932684,0.512067317,76.54633545,,,74.96544861,78.12722228,,,,,,,,,,75.62519053,72.22492169,79.02545938,78.34463977,76.44639063,80.24288891,,,,459.8271482,245,40981,399.4881876,520.1661088,,,,,,,1029.031031,703.8564631,1452.684781,515.5043414,397.8553675,657.0526006,387.7719858,317.048349,458.4956225,,,,96.46108398,16,16587,55.13584406,156.6467571,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.123,,,0.107,0.143,0.175,,,0.151,0.2,0.113,,,0.097,0.131,88.7,11,12404,,,0.134,2000,,,,0.057543691,809.9274554,14075,,,,,,,,,,,,,,,,,,,,,,,,,,0.359,,,0.346,0.373,0.246181818,2031,8250,0.216394584,0.275969052,0.1324007,530,4003,0.097847508,0.166953891,0.000858539,13,15142,,,1164.769231,0.96991342,224.05,231,,,,,,,,2.848478706,,,,,,,,2.656337332,3.145387434,2.96361287,,,,,,,,2.741180703,3.221198946,0.065017455,,,,,-2608.551567,,,,,0.718715019,40450,56281,0.550444993,0.886985046,61953,,,52721.34043,71184.65957,,,,,,,,,,60577,46823.6383,74330.3617,75809,63541.42553,88076.57447,,,,,,0.524508274,1680,3203,,,33.95984938,,,,,0.240860007,,61953,,,7.8125,8,1024,,,,,,,,,,,,,,,,,,,,,,,,,,16.7376818,13,74414,8.648604428,29.23736171,17.46983095,,,,,,,,,,,,,23.44622098,10.72110523,44.5082308,,,,18.8136641,14,74414,10.28560523,31.56613154,,,,,,,,,,,,,23.28505565,11.16608927,42.82204639,,,,20.17310445,21,104099,12.48746961,30.83673305,,,,,,,,,,,,,21.47943757,11.43689588,36.73049241,,,,18.66666667,,1500,,,18,10,0.617095678,6353,10295,,,0.473,,,,,34.87643134,,,,,0.740210124,3875,5235,0.709915107,0.770505142,0.100971267,499,4942,0.062999029,0.138943504,0.838968481,4392,5235,0.788196438,0.889740525,15142,,,,,0.253665302,3841,15142,,,0.200105666,3030,15142,,,0.060692115,919,15142,,,0.009906221,150,15142,,,0.011755382,178,15142,,,0.000990622,15,15142,,,0.344736495,5220,15142,,,0.566239599,8574,15142,,,0.032598616,457,14019,0.017930103,0.047267129,0.499009378,7556,15142,,,0.605684548,9078,14988,, -48,241,48241,TX,Jasper County,2024,1,13361.38627,850,94972,11910.48938,14812.28316,0,,,,2,,,,2,19576.91108,15318.38189,23835.44026,,,,,2,12787.08395,11123.52184,14450.64606,,,,,2,,0.231,,,0.2,0.264,4.551224165,,,3.665438184,5.517979812,5.933834578,,,4.814276136,7.134485572,0.085959885,240,2792,0.075562386,0.096357385,0,,,,,,,0.123173278,0.093742384,0.152604172,0.089285714,0.051942291,0.126629137,0.076508092,0.064970433,0.088045751,,,,,,,0.238,,,0.2,0.284,0.395,,,0.318,0.48,6.2,0.056279921,0.191,,,0.317,,,0.269,0.376,0.277077016,9138,32980,,,0.165531848,,,0.131879853,0.203045567,0.217391304,10,46,0.142390279,0.299724401,339.7,112,32975,,,37.54693367,270,7191,33.06826778,42.02559955,,,,,,,50.58365759,39.03939901,64.47302398,36.33916555,23.94773907,52.87157799,36.76624191,31.33437678,42.19810703,,,,,,,0.195266737,4967,25437,0.175011418,0.215522057,0.000363912,12,32975,,,2747.916667,0.000369413,12,32484,,,2707,0.000523335,17,32484,,,1910.823529,3380,,,,,,,3521,,3308,0.32,,,,,,,0.33,0.32,0.32,0.33,,,,,,,0.28,0.21,0.33,0.872791055,19904,22805,0.846350719,0.89923139,0.415805641,2978,7162,0.347047237,0.484564045,0.063898774,808,12645,,,0.285,2118,,0.199212766,0.370787234,,,,,,,0.629316961,0.525400799,0.733233123,0.255841122,0.057625391,0.454056852,0.243883032,0.173643138,0.314122926,5.033124699,104538,20770,4.089682359,5.97656704,0.313353957,2431,7758,0.239462065,0.387245849,11.52388173,38,32975,,,108.9486173,191,175312,93.49745658,124.3997781,,,,,,,108.1159003,72.94534389,154.3421702,,,,116.1688729,97.7006948,134.6370509,,,,9,,,,,1,,,,,0.118761384,1630,13725,0.088070526,0.149452242,0.075256975,0.050422895,0.100091055,0.039344262,0.019588318,0.059100207,0.011657559,0.001637448,0.021677671,0.801587958,9692,12091,0.742156103,0.861019813,,,,,,,0.874423963,0.769017122,0.979830804,,,,0.826267776,0.779674507,0.872861045,0.412,,12091,0.347461298,0.476538702,71.9552962,,,70.94880648,72.96178593,,,,,,,66.9473357,64.43641831,69.4582531,85.05533175,76.24140039,93.86926311,72.33127087,71.17535231,73.48718943,,,,639.4805347,850,94972,593.3169568,685.6441125,,,,,,,895.4279794,754.2925932,1036.563366,,,,623.9001479,571.8673736,675.9329222,,,,69.60879855,25,35915,45.04714422,102.7563182,,,,,,,,,,,,,70.37006375,40.99315535,112.6692889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.144,,,0.126,0.166,0.203,,,0.177,0.231,0.128,,,0.11,0.148,151.9,42,27644,,,0.191,6370,,,,0.056279921,2009.755975,35710,,,17.3278526,18,103879,10.26958363,27.38547759,,,,,,,,,,,,,19.38184825,10.84787334,31.96741119,,,,0.386,,,0.372,0.399,0.233128492,4173,17900,0.206915726,0.259341258,0.109920585,872,7933,0.08132484,0.13851633,0.00076961,25,32484,,,1299.36,0.959294872,374.125,390,,,,,,,,2.821071341,,,,,,,2.482427309,2.736698264,2.907658526,2.860675988,,,,,,,2.530719243,3.065119024,2.905160861,0.159275584,,,,,-6533.96775,,,,,0.568960585,35799,62920,0.481029733,0.656891437,50763,,,45008.10638,56517.89362,31250,30604.21277,31895.78723,,,,28661,16743.7234,40578.2766,33771,10149.7234,57392.2766,56778,48144.46809,65411.53192,,,,,,0.651920014,3684,5651,,,51.43863352,,,,,0.268088962,,50763,,,4.677754678,9,1924,,,6.491767627,16,246466,3.710606109,10.54222392,,,,,,,,,,,,,,,,,,,23.72165989,41,175312,16.70223773,32.6971834,23.38687597,,,,,,,,,,,,,28.55882022,19.65857777,40.10720165,,,,22.81646436,40,175312,16.30041665,31.06954856,,,,,,,,,,,,,24.45660481,16.72829959,34.52542882,,,,30.43016075,75,246466,23.9352518,38.14447001,,,,,,,35.63519739,19.48209402,59.7898061,,,,32.11933148,24.4507233,41.43159745,,,,9.142857143,,3500,,,18,14,0.591101855,15611,26410,,,0.407,,,,,16.91489141,,,,,0.796378025,10466,13142,0.765436528,0.827319521,0.085686623,1062,12394,0.059896627,0.111476618,0.848881449,11156,13142,0.808265035,0.889497862,32484,,,,,0.232052703,7538,32484,,,0.211026967,6855,32484,,,0.153829578,4997,32484,,,0.008558059,278,32484,,,0.006741781,219,32484,,,0.000861963,28,32484,,,0.072651151,2360,32484,,,0.744889792,24197,32484,,,0.00698041,217,31087,0,0.014460331,0.504863933,16400,32484,,,0.778562765,25677,32980,, -48,243,48243,TX,Jeff Davis County,2024,1,11008.69086,45,5494,5033.874468,20897.92441,1,,,,2,,,,2,,,,2,,,,2,15483.84956,5027.563806,36134.13971,1,,,,2,,0.22,,,0.196,0.249,4.294421773,,,3.702165602,4.920105751,5.594071947,,,4.953286358,6.260554638,0.102803738,11,107,0.045258106,0.16034937,1,,,,,,,,,,,,,,,,,,,,,,0.179,,,0.152,0.208,0.396,,,0.355,0.439,6.7,0.080791954,0.155,,,0.295,,,0.261,0.333,0.443386774,885,1996,,,0.131005022,,,0.116362774,0.146719211,0.4,2,5,0.149190828,0.619170557,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.24686941,276,1118,0.212316218,0.281422601,0.000513084,1,1949,,,1949,0,0,1903,,,-1903,0.002101944,4,1903,,,475.75,2091,,,,,,,,3152,1642,0.33,,,,,,,,0.21,0.35,0.23,,,,,,,,0.14,0.24,0.857405141,1401,1634,0.74585707,0.968953212,0.915540541,271,296,0.624472913,1,0.034448819,35,1016,,,0.366,34,,0.175361702,0.556638298,,,,,,,,,,,,,0.469387755,0,0.967570435,9.193563958,114276,12430,0,25.42829645,0,0,264,0,0.095739796,35.91585428,7,1949,,,,,,,,,,,,,,,,,,,,,,,,,,5.1,,,,,0,,,,,0.121212121,120,990,0,0.330409333,0.121212121,0,0.339729766,0.085858586,0,0.243639344,0.01010101,0,0.158547759,0.531428571,372,700,0.386709972,0.676147171,,,,,,,,,,,,,,,,0.365,,700,0.117316328,0.612683672,80.05087035,,,72.84360939,87.2581313,,,,,,,,,,,,,,,,,,,417.4355211,45,5494,275.0926388,607.3467671,,,,,,,,,,,,,481.1770078,256.2064913,822.8273376,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.136,,,0.122,0.151,0.184,,,0.168,0.201,0.132,,,0.121,0.145,,,,,,0.155,310,,,,0.080791954,189.2147569,2342,,,,,,,,,,,,,,,,,,,,,,,,,,0.349,,,0.332,0.365,0.249045802,261,1048,0.212109631,0.285981972,0.222222222,16,72,0.155498818,0.288945627,0.000525486,1,1903,,,1903,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.006634799,,,,,-8317.293,,,,,0.3801368,34957,91959,0.006489256,0.753784345,58285,,,51308.82979,65261.17021,,,,,,,,,,,,,50438,22901.48936,77974.51064,,,,,,0.528037383,113,214,,,,,,,,0.282456893,,58285,,,,,86,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,100,,,0,0,0.681462141,1305,1915,,,0.298,,,,,0.013747469,,,,,0.893150685,978,1095,0.751907855,1,0.114398422,116,1014,0.004280082,0.224516762,0.746118722,817,1095,0.703999473,0.78823797,1903,,,,,0.049395691,94,1903,,,0.424592748,808,1903,,,0.007356805,14,1903,,,0.021544929,41,1903,,,0.019442985,37,1903,,,0.00262743,5,1903,,,0.321071992,611,1903,,,0.615344193,1171,1903,,,0.071044134,132,1858,0,0.182836644,0.506568576,964,1903,,,1,1996,1996,, -48,245,48245,TX,Jefferson County,2024,1,11126.47939,4642,708751,10668.18283,11584.77595,0,,,,2,3907.227874,2900.019839,5151.19285,,15465.68822,14515.24829,16416.12815,,5961.263966,5277.326714,6645.201219,,11296.11277,10507.11017,12085.11537,,,,,2,,0.219,,,0.191,0.249,4.187703345,,,3.465477231,4.949951521,5.310131539,,,4.516105257,6.15905676,0.106921466,2501,23391,0.10296134,0.110881591,0,,,,0.106164384,0.085764755,0.126564013,0.156001468,0.148134625,0.163868312,0.074954038,0.068816491,0.081091585,0.081879775,0.075427568,0.088331983,,,,0.102040816,0.067439098,0.136642535,0.192,,,0.158,0.225,0.388,,,0.335,0.438,6.5,0.076196181,0.166,,,0.324,,,0.279,0.368,0.653274912,167582,256526,,,0.162749125,,,0.133642904,0.193601327,0.1875,42,224,0.154734918,0.222342534,591.2,1500,253704,,,32.95501408,1838,55773,31.44839029,34.46163786,,,,,,,41.2880679,38.47404338,44.10209242,41.07414512,37.84357773,44.3047125,20.37190572,18.21908181,22.52472963,,,,32.03463204,22.55533729,44.15552047,0.226839327,44774,197382,0.208966986,0.244711667,0.000476934,121,253704,,,2096.727273,0.000649843,163,250830,,,1538.834356,0.001319619,331,250830,,,757.7945619,3021,,,,,,2605,3406,2835,2878,0.38,,,,,,0.33,0.38,0.19,0.4,0.39,,,,,,0.4,0.3,0.26,0.43,0.847506779,144077,170001,0.839504717,0.855508842,0.541838917,38010,70150,0.513040286,0.570637547,0.062152198,6288,101171,,,0.24,14458,,0.175659575,0.304340426,0.136904762,0,0.538975539,0.231275304,0.13677293,0.325777677,0.408663533,0.366331937,0.450995128,0.284649466,0.245730504,0.323568428,0.087204129,0.056418024,0.117990233,5.215461796,121635,23322,4.827627809,5.603295782,0.362242578,22304,61572,0.333555576,0.39092958,11.11531549,282,253704,,,82.02441628,1039,1266696,77.03681823,87.01201432,,,,43.20543154,26.74484309,66.04409163,97.19166005,87.7722562,106.6110639,36.62714287,29.51895287,43.73533287,100.6933977,91.87604514,109.5107502,,,,8.5,,,,,1,,,,,0.144984576,13630,94010,0.132219655,0.157749497,0.119102228,0.106979803,0.131224654,0.025688757,0.019700678,0.031676835,0.007392831,0.004758713,0.010026949,0.876854844,90352,103041,0.863575386,0.890134303,,,,0.778406617,0.6924629,0.864350335,0.890064989,0.86713001,0.912999969,0.848836148,0.812646321,0.885025975,0.897604496,0.881960898,0.913248094,0.219,,103041,0.202619729,0.235380271,73.97337068,,,73.61362553,74.33311583,,,,84.84185156,81.47578645,88.20791668,70.45748582,69.79402521,71.12094643,82.91935117,81.33579157,84.50291077,73.77712235,73.20674564,74.34749907,,,,552.800622,4642,708751,536.4925892,569.1086547,,,,267.8425164,212.0534425,333.8116913,737.078296,704.0959127,770.0606794,307.5384371,275.5078764,339.5689978,546.5974139,521.6361941,571.5586337,,,,69.83008014,189,270657,59.87447393,79.78568634,,,,,,,108.3329722,87.09970967,129.5662348,34.64465337,23.20206809,49.75550126,75.81600241,57.57026925,98.00976425,,,,8.150129566,195,23926,7.006189481,9.294069652,,,,,,,13.70189444,11.19758628,16.2062026,4.547392355,3.110413004,6.419561188,5.939226519,4.298247681,8.000099145,,,,,,,0.132,,,0.114,0.15,0.176,,,0.155,0.198,0.136,,,0.118,0.153,596.9,1249,209242,,,0.166,42560,,,,0.076196181,19222.23909,252273,,,21.5780862,163,755396,18.26543894,24.89073345,,,,,,,22.7177617,17.20621086,29.43349531,5.870577254,2.81516998,10.79620059,32.49507443,26.29045571,39.72354341,,,,0.401,,,0.388,0.413,0.276472507,38138,137945,0.253834209,0.299110805,0.115133426,7175,62319,0.09011215,0.140154703,0.00149105,374,250830,,,670.6684492,0.855087253,2254.01,2636,,,0.115122112,1400,12161,0.08056158,0.149682643,2.70450545,,,,,,3.043232501,2.237901816,2.719050593,3.286308056,2.765821891,,,,,,3.523041651,2.19316239,2.844517678,3.361520911,0.244693905,,,,,-6216.520433,,,,,0.731579861,42139,57600,0.691775805,0.771383917,55065,,,50463.46809,59666.53192,51875,17430.23404,86319.76596,81788,72845.87234,90730.12766,39859,37381.89362,42336.10638,55355,50289.97872,60420.02128,79047,73118.14894,84975.85106,,,,,,0.702247325,29467,41961,,,58.50793553,,,,,0.269463362,,55065,,,4.051586396,71,17524,,,11.93906795,212,1775683,10.33190999,13.54622592,,,,,,,24.06738869,20.10879552,28.02598186,4.222259753,2.413386267,6.856685314,6.34372859,4.627159164,8.488407963,,,,14.475835,186,1266696,12.35785114,16.59381886,14.68387048,,,,,,,9.278976937,6.566356337,12.73612081,8.084248223,4.709372504,12.94366454,23.03421069,18.70114172,27.36727965,,,,19.34165735,245,1266696,16.91969876,21.76361595,,,,,,,26.85246354,21.90137166,31.80355541,5.386344539,3.01469615,8.883956188,22.30931565,18.15900284,26.45962845,,,,17.28912199,307,1775683,15.35510706,19.22313692,,,,,,,18.98272911,15.46707848,22.49837974,10.55564938,7.541110677,14.37379849,20.72284673,17.37283121,24.07286225,,,,11.1637931,,23200,,,104,155,0.545124547,94759,173830,,,0.569,,,,,114.2401158,,,,,0.616913288,57492,93193,0.602160113,0.631666462,0.139222916,12423,89231,0.12585484,0.152590992,0.866073632,80712,93193,0.855476793,0.876670472,250830,,,,,0.243579317,61097,250830,,,0.156037954,39139,250830,,,0.333106088,83553,250830,,,0.010836024,2718,250830,,,0.040752701,10222,250830,,,0.001351513,339,250830,,,0.236977236,59441,250830,,,0.373675398,93729,250830,,,0.048490047,11532,237822,0.043104141,0.053875954,0.485555954,121792,250830,,,0.098469551,25260,256526,, -48,247,48247,TX,Jim Hogg County,2024,1,12229.68119,85,14068,8953.66369,16312.68088,0,,,,2,,,,2,,,,2,12617.42427,9167.839792,16938.30316,,,,,2,,,,2,,0.307,,,0.267,0.348,4.793045876,,,4.149083285,5.478766883,5.207518722,,,4.539723429,5.907882729,0.115720524,53,458,0.086423514,0.145017534,0,,,,,,,,,,0.114754098,0.084522703,0.144985494,,,,,,,,,,0.177,,,0.147,0.208,0.433,,,0.39,0.478,4.6,0.186619253,0.202,,,0.392,,,0.345,0.436,,,4838,,,0.149291665,,,0.131286205,0.16743726,0,0,2,0,0.510593623,249.9,12,4801,,,47.07792208,58,1232,35.74824,60.85913129,,,,,,,,,,46.92832765,35.35283871,61.08366892,,,,,,,,,,0.213346815,844,3956,0.18594256,0.24075107,0.00020829,1,4801,,,4801,0.000209952,1,4763,,,4763,,0,4763,,,,3704,,,,,,,,4211,,0.24,,,,,,,,0.26,0.19,0.3,,,,,,,,0.3,0.33,0.78597786,1917,2439,0.712429548,0.859526172,0.302777778,327,1080,0.172573889,0.432981667,0.053829079,97,1802,,,0.424,580,,0.295319149,0.552680851,,,,,,,,,,0.513962264,0.356286593,0.671637935,,,,4.602308843,98471,21396,2.305433016,6.89918467,0.228351507,356,1559,0.087348257,0.369354758,0,0,4801,,,54.61283402,14,25635,29.85734455,91.63105567,,,,,,,,,,54.67238624,29.11074309,93.49144553,,,,,,,10.1,,,,,1,,,,,0.203883495,315,1545,0.118442149,0.289324841,0.118936877,0.04958869,0.188285064,0.106148867,0.027628643,0.184669092,0.009708738,0,0.031458447,0.772771792,1578,2042,0.610285225,0.93525836,,,,,,,,,,0.856407323,0.763478294,0.949336351,,,,0.274,,2042,0.114362656,0.433637344,72.89452612,,,70.32667157,75.46238067,,,,,,,,,,72.64861362,69.96630617,75.33092108,,,,,,,554.9564043,85,14068,439.3642114,691.6412616,,,,,,,,,,570.8889215,447.4857828,717.8071087,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.158,,,0.14,0.178,0.176,,,0.158,0.194,0.177,,,0.161,0.193,156.6,6,3831,,,0.202,980,,,,0.186619253,989.0820429,5300,,,,,,,,,,,,,,,,,,,,,,,,,,0.362,,,0.343,0.379,0.273680124,705,2576,0.235552465,0.311807784,0.102459016,150,1464,0.071480293,0.13343774,,0,4763,,,,0.975,69.225,71,,,,,,,,2.350100287,,,,,,,,2.378521619,,2.692147364,,,,,,,,2.678899218,,,,,,,-6222.361,,,,,0.833176477,30985,37189,0.514118121,1.152234833,43782,,,37176.38298,50387.61702,,,,,,,,,,40722,34242.68085,47201.31915,96500,27205.3617,165794.6383,,,,,,0.871985158,940,1078,,,,,,,,0.332282673,,43782,,,4.178272981,3,718,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,700,,,0,-888,0.61510574,2036,3310,,,0.354,,,,,,,,,,0.637108793,855,1342,0.573731136,0.70048645,0.130469372,164,1257,0.046553122,0.214385621,0.670640835,900,1342,0.486314781,0.854966889,4763,,,,,0.288473651,1374,4763,,,0.176149486,839,4763,,,0.00734831,35,4763,,,0.006718455,32,4763,,,0.006718455,32,4763,,,0.000839807,4,4763,,,0.911820281,4343,4763,,,0.065504934,312,4763,,,0.008576329,35,4081,0,0.027024088,0.47847995,2279,4763,,,1,4838,4838,, -48,249,48249,TX,Jim Wells County,2024,1,12923.065,845,111723,11690.96785,14155.16215,0,,,,2,,,,2,,,,2,13257.93629,11867.30594,14648.56664,,12073.57066,9296.963789,14850.17753,,,,,2,,0.262,,,0.22,0.303,4.374804963,,,3.45724829,5.397638655,5.056681213,,,3.978113286,6.214185511,0.099012543,371,3747,0.089449003,0.108576084,0,,,,,,,,,,0.0996875,0.089307483,0.110067517,0.091262136,0.066389771,0.116134501,,,,,,,0.167,,,0.131,0.205,0.424,,,0.332,0.519,6,0.096614211,0.179,,,0.353,,,0.29,0.42,0.483505181,18804,38891,,,0.163231892,,,0.127284686,0.205252713,0.146341463,6,41,0.074837578,0.234793398,514.8,200,38847,,,40.16477858,390,9710,36.17848624,44.15107092,,,,,,,,,,43.20685435,38.69950347,47.71420523,25.23431867,17.57662754,35.09482867,,,,,,,0.217431647,7030,32332,0.193601859,0.241261434,0.000308904,12,38847,,,3237.25,0.000334827,13,38826,,,2986.615385,0.001030238,40,38826,,,970.65,2358,,,,,,,,2712,1618,0.29,,,,,,,,0.28,0.3,0.35,,,,,,,,0.35,0.36,0.782657658,19460,24864,0.752126921,0.813188394,0.47071779,4702,9989,0.397793766,0.543641813,0.057204078,881,15401,,,0.363,3783,,0.264106383,0.461893617,,,,,,,,,,0.389921613,0.3155479,0.464295325,0.195727085,0.088284932,0.303169237,5.759052994,115302,20021,4.454867752,7.063238237,0.375154571,3944,10513,0.294925551,0.45538359,5.148402708,20,38847,,,71.47324221,144,201474,59.79927931,83.1472051,,,,,,,,,,69.18576997,56.37238606,81.99915388,83.64467741,56.4347126,119.407978,,,,9.8,,,,,1,,,,,0.164796905,2130,12925,0.12751703,0.20207678,0.1,0.066380746,0.133619254,0.057253385,0.031973358,0.082533412,0.022437137,0.008380167,0.036494108,0.812508452,12017,14790,0.788095704,0.836921199,,,,,,,,,,0.827549669,0.794944248,0.860155089,0.751550388,0.667144393,0.835956382,0.392,,14790,0.327747894,0.456252106,72.2011174,,,71.29423397,73.10800082,,,,,,,,,,71.7335145,70.71741492,72.74961408,73.16249293,71.12694647,75.1980394,,,,653.0118022,845,111723,607.6618045,698.3617999,,,,,,,,,,675.7313289,623.2352573,728.2274006,612.0132762,512.7952753,711.231277,,,,51.62516004,25,48426,33.40908158,76.2089202,,,,,,,,,,58.59375,37.54212123,87.18285545,,,,,,,5.205622072,20,3842,3.1797292,8.039661089,,,,,,,,,,,,,,,,,,,,,,0.141,,,0.118,0.163,0.17,,,0.145,0.198,0.153,,,0.13,0.178,105.2,33,31370,,,0.179,7010,,,,0.096614211,3945.531127,40838,,,10.85314031,13,119781,5.778840126,18.55920047,,,,,,,,,,10.40236342,4.988337594,19.13031669,,,,,,,0.36,,,0.344,0.375,0.265344108,5845,22028,0.234365384,0.296322831,0.117983224,1280,10849,0.085813012,0.150153437,0.001133261,44,38826,,,882.4090909,0.924026639,450.925,488,,,0.181906615,374,2056,0.069206124,0.294607105,2.8229208,,,,,,,,2.738461725,3.458788003,3.008247734,,,,,,,,2.928210705,3.627510882,0.15023643,,,,,-3401.451,,,,,0.741619891,37523,50596,0.568532236,0.914707546,48252,,,41267.48936,55236.51064,,,,,,,,,,44722,41066.51064,48377.48936,67067,51048.61702,83085.38298,,,,,,0.787886909,5880,7463,,,77.88485844,,,,,0.35134295,,48252,,,6.177325581,17,2752,,,7.04212954,20,284005,4.301515672,10.87599792,,,,,,,,,,7.893109754,4.677957079,12.47451634,,,,,,,19.47960969,38,201474,13.71544291,26.85007599,18.86099447,,,,,,,,,,19.65729765,13.26269618,28.06201468,,,,,,,14.89025879,30,201474,10.04639508,21.2567703,,,,,,,,,,12.97233187,8.030077886,19.82958725,,,,,,,20.77428214,59,284005,15.8143461,26.79731039,,,,,,,,,,20.60978658,15.14329597,27.40664703,21.59318441,10.77923986,38.63617156,,,,43.18181818,,4400,,,62,128,0.477770011,13669,28610,,,0.445,,,,,39.79437397,,,,,0.679417686,8774,12914,0.639218104,0.719617269,0.133032883,1594,11982,0.093368124,0.172697641,0.688632492,8893,12914,0.638936533,0.73832845,38826,,,,,0.270900943,10518,38826,,,0.16056251,6234,38826,,,0.007237418,281,38826,,,0.011590172,450,38826,,,0.006799567,264,38826,,,0.000849946,33,38826,,,0.801189924,31107,38826,,,0.178076547,6914,38826,,,0.034783087,1266,36397,0.019700919,0.049865254,0.50082419,19445,38826,,,0.500835669,19478,38891,, -48,251,48251,TX,Johnson County,2024,1,8395.321047,2721,512218,7932.301834,8858.34026,0,,,,2,,,,2,8055.329478,5829.681885,10850.47594,,6420.574403,5598.102576,7243.046231,,9225.206885,8619.264926,9831.148844,,,,,2,,0.174,,,0.148,0.203,3.764045161,,,2.952129545,4.603947482,5.119279244,,,4.115784362,6.173701156,0.06849226,1053,15374,0.064499468,0.072485051,0,,,,0.095890411,0.048128932,0.14365189,0.106,0.079016843,0.132983157,0.063820518,0.056749823,0.070891214,0.068416701,0.06338633,0.073447073,0.086486487,0.045982122,0.126990851,0.064676617,0.030673981,0.098679253,0.168,,,0.134,0.207,0.356,,,0.285,0.43,7.7,0.060402655,0.12,,,0.255,,,0.209,0.306,0.750359868,135010,179927,,,0.193807953,,,0.156849095,0.235514833,0.164285714,23,140,0.123800257,0.208899189,229.1,429,187280,,,24.41898836,1036,42426,22.93201269,25.90596402,,,,,,,10.85714286,6.536709237,16.95477347,31.60133698,28.56454626,34.6381277,21.73913044,19.93536052,23.54290035,46.32152589,26.98399583,74.16525018,21.98852773,13.93884038,32.99358785,0.193865672,30807,158909,0.175993331,0.211738012,0.00040581,76,187280,,,2464.210526,0.00040408,79,195506,,,2474.759494,0.000910458,178,195506,,,1098.348315,3569,,,,,,,5591,3579,3548,0.39,,,,,,,0.45,0.23,0.4,0.41,,,,,0.42,0.36,0.33,0.35,0.41,0.863749466,103098,119361,0.854003942,0.87349499,0.545306038,26371,48360,0.513284759,0.577327317,0.034869618,3105,89046,,,0.128,6300,,0.087489362,0.168510638,,,,0.021772939,0,0.174296815,0.073589165,0.017909368,0.129268962,0.224217687,0.175724712,0.272710662,0.103484766,0.077834164,0.129135367,3.8209296,140572,36790,3.570193094,4.071666106,0.202897316,9524,46940,0.172080717,0.233713915,6.888082016,129,187280,,,66.2631874,584,881334,60.8888866,71.6374882,,,,,,,56.68595978,34.12865077,88.52214802,34.97674047,27.26608511,44.1910074,79.13996909,72.11827287,86.16166531,,,,9.5,,,,,0,,,,,0.127338253,7420,58270,0.112941345,0.141735161,0.076635676,0.065002381,0.088268972,0.043847606,0.034272379,0.053422833,0.010725931,0.006315292,0.01513657,0.859884994,73423,85387,0.844344734,0.875425254,,,,0.775900901,0.740753416,0.811048386,0.819322826,0.727079519,0.911566132,0.797674102,0.745887808,0.849460397,0.830193529,0.80212709,0.858259967,0.578,,85387,0.546952613,0.609047387,75.64046964,,,75.24793367,76.03300561,,,,86.38911653,76.91881639,95.85941666,76.22974039,73.70171786,78.75776292,79.35532155,77.97950358,80.73113952,74.85440701,74.38386081,75.32495321,,,,444.237621,2721,512218,427.2173261,461.2579158,,,,,,,416.8582703,331.5397532,517.4310274,343.9363236,304.4342133,383.4384338,474.6974223,454.3096624,495.0851822,,,,51.84493919,105,202527,41.92822513,61.76165326,,,,,,,,,,39.53881921,25.58743907,58.3670969,59.56763823,46.60800828,75.01558194,,,,5.705566244,86,15073,4.563716529,7.046327896,,,,,,,,,,5.013673655,3.142042587,7.590762167,6.206040546,4.735862738,7.988404366,,,,,,,0.115,,,0.099,0.132,0.17,,,0.147,0.196,0.104,,,0.089,0.12,201.3,309,153538,,,0.12,21160,,,,0.060402655,9116.814331,150934,,,11.97776926,65,542672,9.244189442,15.26665017,,,,,,,,,,,,,14.44139868,10.84882315,18.84289266,,,,0.353,,,0.34,0.367,0.22277183,24635,110584,0.201325021,0.244218638,0.132004023,6693,50703,0.102216789,0.161791258,0.00072632,142,195506,,,1376.802817,0.939136846,2388.225,2543,,,0.165002424,1702,10315,0.127271362,0.202733485,2.896867425,,,,,,2.513397487,2.782628015,2.710341893,3.000491684,3.093141795,,,,,,2.476595522,2.913170975,2.962323264,3.183045883,0.082698335,,,,,-1829.969686,,,,,0.788535319,45422,57603,0.739445755,0.837624884,76747,,,71137.46809,82356.53192,98177,49741.76596,146612.234,77311,55286.31915,99335.68085,73575,65068.95745,82081.04255,67246,59581.14894,74910.85106,79373,75138.44681,83607.55319,,,,,,0.497868826,18689,37538,,,45.38211567,,,,,0.259749567,,76747,,,2.988222886,34,11378,,,2.822518384,34,1204598,1.954676032,3.944186533,,,,,,,,,,,,,2.57753398,1.615326822,3.902417421,,,,15.82144904,138,881334,13.14447188,18.49842619,15.65808195,,,,,,,,,,5.339396918,2.665407704,9.553655981,20.15854986,16.52233838,23.79476134,,,,12.25415109,108,881334,9.943004866,14.56529732,,,,,,,,,,,,,15.56851851,12.61054998,19.01182575,,,,17.35018654,209,1204598,14.99791704,19.70245603,,,,,,,,,,15.37872934,11.03604169,20.86298286,18.27705913,15.40892083,21.14519743,,,,9.12371134,,19400,,,85,92,0.584198572,72020,123280,,,0.685,,,,,46.06928277,,,,,0.744177087,46360,62297,0.730592984,0.75776119,0.101419678,6158,60718,0.087372596,0.11546676,0.90139172,56154,62297,0.890557324,0.912226117,195506,,,,,0.255230019,49899,195506,,,0.141080069,27582,195506,,,0.052105818,10187,195506,,,0.009907624,1937,195506,,,0.012582734,2460,195506,,,0.00493591,965,195506,,,0.251086923,49089,195506,,,0.658245783,128691,195506,,,0.030279662,5183,171171,0.024843913,0.03571541,0.49618426,97007,195506,,,0.464727362,83617,179927,, -48,253,48253,TX,Jones County,2024,1,10476.75556,353,55744,8803.813187,12149.69793,0,,,,2,,,,2,7834.086063,5162.712079,11398.18392,,12081.71281,8845.332244,16115.3118,,11216.76206,8905.1261,13528.39802,,,,,2,,0.223,,,0.193,0.257,4.176378175,,,3.397059976,4.980124806,5.199976009,,,4.087064999,6.398393049,0.071299639,79,1108,0.056147719,0.086451559,0,,,,,,,,,,0.077399381,0.048256638,0.106542124,0.064864865,0.047119613,0.082610116,,,,,,,0.203,,,0.168,0.242,0.391,,,0.31,0.477,6.8,0.118384245,0.135,,,0.297,,,0.25,0.35,0.32619641,6414,19663,,,0.191377215,,,0.152579589,0.235179078,0.342857143,12,35,0.254343101,0.430630248,161,32,19873,,,30.59332509,99,3236,24.86474501,37.24627557,,,,,,,,,,43.0292599,31.93714607,56.72871486,24.40347072,17.800059,32.65376383,,,,,,,0.192165122,2281,11870,0.165952356,0.218377888,0.000100639,2,19873,,,9936.5,0.000100326,2,19935,,,9967.5,0.000050163,1,19935,,,19935,3646,,,,,,,,5218,3151,0.34,,,,,,,,0.2,0.36,0.28,,,,,,,0.14,0.22,0.29,0.80802566,11840,14653,0.782638791,0.83341253,0.378014499,2555,6759,0.3267355,0.429293499,0.043082733,251,5826,,,0.231,776,,0.147595745,0.314404255,,,,,,,,,,0.224543081,0.128709288,0.320376874,0.035530381,0.005755184,0.065305579,3.657889041,101404,27722,2.798402581,4.517375501,0.165009323,531,3218,0.104351269,0.225667377,11.07029638,22,19873,,,90.33332999,90,99631,72.6386648,111.0349989,,,,,,,,,,57.22665331,32.70997694,92.93249972,124.4619613,97.38381941,156.7392419,,,,7.5,,,,,1,,,,,0.110717449,625,5645,0.076930444,0.144504454,0.071161715,0.045064103,0.097259327,0.013108946,0,0.027516268,0.030115146,0.011657165,0.048573127,0.769327864,4876,6338,0.714664782,0.823990946,,,,,,,,,,0.716711349,0.667646107,0.765776592,0.70626151,0.632308324,0.780214697,0.345,,6338,0.263150665,0.426849336,74.59884809,,,73.27891874,75.91877744,,,,,,,74.12064193,69.89150529,78.34977858,72.74796865,69.76062081,75.73531649,74.24004618,72.53732811,75.94276426,,,,520.6193092,353,55744,465.0645764,576.1740421,,,,,,,641.2793444,418.9049586,939.6228211,623.481166,495.1340426,774.9301615,523.2949927,452.4389454,594.1510399,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.133,,,0.115,0.153,0.173,,,0.15,0.199,0.125,,,0.108,0.145,245.9,43,17485,,,0.135,2660,,,,0.118384245,2391.598517,20202,,,,,,,,,,,,,,,,,,,,,,,,,,0.371,,,0.359,0.383,0.236037313,1999,8469,0.201484121,0.270590504,0.085348902,307,3597,0.057944647,0.112753157,0.00050163,10,19935,,,1993.5,,,,,,0.212922173,145,681,0.078842184,0.347002162,2.778962805,,,,,,,,2.556236346,2.949365619,2.700713163,,,,,,,,2.523340619,2.809763895,0.069863958,,,,,-807.32442,,,,,0.700028612,36699,52425,0.598184291,0.801872934,51894,,,44481.74468,59306.25532,,,,60938,29328.97872,92547.02128,,,,35000,19770.38298,50229.61702,65658,62013.23404,69302.76596,,,,,,0.618886381,1645,2658,,,36.32135837,,,,,0.266813119,,51894,,,3.550295858,3,845,,,,,,,,,,,,,,,,,,,,,,,,,,27.15516624,28,99631,17.89542566,39.50934118,28.10370266,,,,,,,,,,,,,45.32339291,29.03955304,67.437616,,,,19.07036966,19,99631,11.4816083,29.78074452,,,,,,,,,,,,,31.11549033,18.44101157,49.17588942,,,,36.5303345,51,139610,27.19923346,48.03064349,,,,,,,,,,30.81031118,15.92013739,53.81941319,43.09071211,30.01425983,59.92874935,,,,,,1400,,,5,-888,0.423962264,6741,15900,,,0.507,,,,,8.799365986,,,,,0.821700186,4862,5917,0.778519264,0.864881108,0.114888424,659,5736,0.069755243,0.160021605,0.834206524,4936,5917,0.794760905,0.873652143,19935,,,,,0.170554302,3400,19935,,,0.156759468,3125,19935,,,0.119187359,2376,19935,,,0.015500376,309,19935,,,0.007524455,150,19935,,,0.000551793,11,19935,,,0.287183346,5725,19935,,,0.572811638,11419,19935,,,0.018749671,356,18987,0.009604818,0.027894524,0.36473539,7271,19935,,,1,19663,19663,, -48,255,48255,TX,Karnes County,2024,1,8500.524668,232,43080,6850.798827,10150.25051,0,,,,2,,,,2,,,,2,9112.820948,7001.237722,11224.40417,,9022.06079,5945.59491,13126.62477,,,,,2,,0.247,,,0.214,0.283,4.359840412,,,3.472723773,5.322858089,5.291930787,,,4.207327363,6.495708492,0.083260298,95,1141,0.067229496,0.0992911,0,,,,,,,,,,0.087012987,0.067104647,0.106921327,0.071005917,0.043624781,0.098387053,,,,,,,0.185,,,0.152,0.222,0.404,,,0.321,0.492,7.4,0.056886577,0.137,,,0.328,,,0.276,0.385,0.371040109,5458,14710,,,0.188440466,,,0.149172269,0.232333987,0.1,2,20,0.019826373,0.233896636,399.9,59,14754,,,33.58577544,102,3037,27.06782032,40.10373055,,,,,,,,,,44.79114243,35.97096535,55.119355,10.70663812,5.134249139,19.6898887,,,,,,,0.196702117,2016,10249,0.170489351,0.222914883,0.000271113,4,14754,,,3688.5,0.000606633,9,14836,,,1648.444444,0.000134807,2,14836,,,7418,2571,,,,,,,,3316,1979,0.3,,,,,,,,0.22,0.33,0.4,,,,,,,0.08,0.36,0.41,0.760606939,7870,10347,0.731650935,0.789562944,0.38585209,1920,4976,0.300233843,0.471470338,0.033097638,220,6647,,,0.251,758,,0.153297872,0.348702128,,,,,,,,,,0.475242718,0.361946993,0.588538444,0.020151134,0,0.063819102,6.196644168,130365,21038,4.494260077,7.899028259,0.230483271,682,2959,0.118011412,0.342955131,12.20008133,18,14754,,,57.32600255,44,76754,41.65316121,76.95748271,,,,,,,,,,46.53543674,28.42505371,71.87020779,75.10608735,45.87674935,115.9952604,,,,9.2,,,,,0,,,,,0.136263736,620,4550,0.088467277,0.184060196,0.075221239,0.034544205,0.115898272,0.052747253,0.022713227,0.082781278,0.014285714,0.001662127,0.026909302,0.785387177,3773,4804,0.71076723,0.860007124,,,,,,,,,,0.775716695,0.691726034,0.859707356,0.894461539,0.840185929,0.948737148,0.249,,4804,0.179198652,0.318801348,74.89349867,,,73.5253805,76.26161684,,,,,,,,,,73.22301277,71.4352012,75.01082435,75.78372079,73.26484076,78.30260082,,,,477.7638402,232,43080,415.1912191,540.3364612,,,,,,,,,,577.0967644,476.3153833,677.8781456,419.0473152,330.1616226,524.5002025,,,,67.26306585,10,14867,32.25525457,123.699173,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.138,,,0.119,0.157,0.169,,,0.147,0.193,0.138,,,0.118,0.159,615.8,77,12504,,,0.137,2030,,,,0.056886577,843.2866188,14824,,,,,,,,,,,,,,,,,,,,,,,,,,0.36,,,0.345,0.374,0.235790658,1676,7108,0.202428956,0.269152361,0.110944077,369,3326,0.078773864,0.14311429,0.000471825,7,14836,,,2119.428571,0.82759009,183.725,222,,,,,,,,2.708845161,,,,,,,,2.632737603,2.930399163,2.930385524,,,,,,,,2.794446376,3.411914865,0.210416881,,,,,-2161.63125,,,,,0.968345688,42063,43438,0.528698143,1.407993234,61860,,,53512.42553,70207.57447,,,,,,,,,,40602,24230.93617,56973.06383,82688,55342.12766,110033.8723,,,,,,0.67242088,1636,2433,,,30.79450769,,,,,0.301131588,,61860,,,4.901960784,4,816,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.69455895,20,106983,11.41912228,28.87223008,,,,,,,,,,18.64217198,9.306105086,33.35599518,,,,,,,9.285714286,,1400,,,8,5,0.477454546,5252,11000,,,0.374,,,,,36.77320953,,,,,0.675154852,2943,4359,0.626145368,0.724164336,0.103268593,436,4222,0.054045137,0.152492049,0.771736637,3364,4359,0.718059035,0.825414239,14836,,,,,0.205311405,3046,14836,,,0.140469129,2084,14836,,,0.092882179,1378,14836,,,0.011660825,173,14836,,,0.006740361,100,14836,,,0.000404422,6,14836,,,0.566527366,8405,14836,,,0.326705311,4847,14836,,,0.063132393,886,14034,0.040732415,0.08553237,0.401455918,5956,14836,,,1,14710,14710,, -48,257,48257,TX,Kaufman County,2024,1,8985.608439,2132,418531,8457.595399,9513.62148,0,,,,2,,,,2,11627.01349,10049.78962,13204.23736,,6292.116625,5392.784281,7191.448968,,9692.450034,8934.65515,10450.24492,,,,,2,,0.178,,,0.152,0.205,3.652557266,,,2.89818041,4.533847107,4.892926721,,,3.914111301,5.978074293,0.080031413,1121,14007,0.075537753,0.084525073,0,,,,0.102362205,0.065083605,0.139640805,0.134315425,0.120403701,0.148227149,0.065272938,0.057894262,0.072651615,0.070318175,0.064277741,0.076358609,,,,0.061452514,0.026269948,0.09663508,0.161,,,0.132,0.194,0.366,,,0.291,0.443,8.2,0.034454547,0.108,,,0.27,,,0.223,0.32,0.661743858,96158,145310,,,0.198049362,,,0.158466108,0.242518011,0.262820513,41,156,0.222087799,0.304787859,375.2,592,157768,,,21.57625741,743,34436,20.02480742,23.12770739,,,,,,,28.38810033,23.78324517,32.9929555,25.21770682,22.25329003,28.18212361,17.98646563,15.96120654,20.01172472,,,,11.82033097,5.668308152,21.73800951,0.190064498,26315,138453,0.171000669,0.209128328,0.000209168,33,157768,,,4780.848485,0.000382906,66,172366,,,2611.606061,0.000992075,171,172366,,,1007.988304,2964,,,,,,,5315,1831,2727,0.39,,,,,,0.34,0.34,0.32,0.4,0.47,,,,,0.37,0.45,0.36,0.37,0.48,0.863471008,81889,94837,0.850882427,0.876059589,0.61824403,26561,42962,0.577191261,0.659296799,0.037377826,2807,75098,,,0.118,5693,,0.078680851,0.157319149,0.162790698,0,0.486708025,0.212569316,0,0.484365032,0.287997588,0.202061549,0.373933626,0.125898226,0.092598264,0.159198187,0.063157336,0.044199082,0.08211559,3.989996578,151568,37987,3.66312235,4.316870806,0.23748722,9988,42057,0.205662721,0.269311719,6.084884134,96,157768,,,72.31802505,498,688625,65.9663546,78.6696955,,,,,,,78.42139844,61.577665,98.45088436,27.70117207,20.20542499,37.06634769,92.68706438,83.33075608,102.0433727,,,,9.3,,,,,1,,,,,0.1392889,5465,39235,0.122374493,0.156203308,0.099909991,0.085896703,0.113923279,0.039505544,0.029153372,0.049857715,0.005734676,0.002651694,0.008817657,0.793500028,57059,71908,0.775954005,0.81104605,,,,,,,0.592840415,0.533637376,0.652043454,0.71994045,0.677992877,0.761888024,0.740243025,0.712272197,0.768213854,0.591,,71908,0.555634637,0.626365363,74.78578619,,,74.33346389,75.23810849,,,,89.5726451,75.68019198,103.4650982,72.33631276,71.07093299,73.60169254,79.91365747,77.97062469,81.85669026,74.06958084,73.48369906,74.65546261,,,,475.6044054,2132,418531,455.2697745,495.9390362,,,,,,,551.5617422,490.9777047,612.1457797,318.2922452,273.0905322,363.4939581,508.2256775,482.2643549,534.1870002,,,,62.48698188,108,172836,50.70186912,74.27209464,,,,,,,100.8299077,65.86544332,147.7391766,48.6214907,32.04186874,70.74171624,66.39064254,50.01451779,86.41654693,,,,5.23764853,67,12792,4.05910567,6.651628489,,,,,,,,,,,,,4.919499106,3.386356824,6.908805794,,,,,,,0.114,,,0.098,0.131,0.168,,,0.145,0.191,0.106,,,0.09,0.123,300.5,379,126136,,,0.108,15190,,,,0.034454547,3560.8774,103350,,,13.26866764,58,437120,10.07545564,17.15282983,,,,,,,15.31323216,7.343290042,28.16157917,,,,16.93869403,12.20792075,22.89619354,,,,0.364,,,0.351,0.377,0.218220586,20571,94267,0.194390799,0.242050373,0.133956925,6201,46291,0.102978201,0.164935648,0.000498938,86,172366,,,2004.255814,0.961763264,2157.235,2243,,,0.048141795,421,8745,0.024388738,0.071894853,2.864916654,,,,,,3.431608853,2.519663043,2.63048947,3.111103736,3.065647114,,,,,,3.640508487,2.676637517,2.819519363,3.307879625,0.11199969,,,,,-3866.820186,,,,,0.787150829,49511,62899,0.719344429,0.85495723,92814,,,87417.74468,98210.25532,,,,70988,21916.51064,120059.4894,59616,54209.02128,65022.97872,78099,73107.85106,83090.14894,94148,89750.21277,98545.78723,,,,,,0.534610361,18420,34455,,,47.79272904,,,,,0.214784408,,92814,,,3.117144294,31,9945,,,6.075960354,56,921665,4.589715155,7.890139911,,,,,,,27.76749352,19.11386488,38.99588475,,,,3.208413172,1.901508985,5.070676043,,,,15.60104749,106,688625,12.5950439,18.60705109,15.39299328,,,,,,,,,,,,,22.57310581,18.15144274,27.7461794,,,,16.11907787,111,688625,13.12036575,19.11779,,,,,,,28.61321295,18.85628763,41.63072258,,,,19.17663401,15.1583334,23.93330712,,,,20.94036336,193,921665,17.9860155,23.89471123,,,,,,,21.03597994,13.61337707,31.05325612,12.88303162,8.489999013,18.74413462,24.95432467,20.82063495,29.08801439,,,,11.58536585,,16400,,,44,146,0.644852481,56718,87955,,,0.651,,,,,38.83228248,,,,,0.773815737,37065,47899,0.756081225,0.791550249,0.124703792,5894,47264,0.106786146,0.142621437,0.878703104,42089,47899,0.865279688,0.892126521,172366,,,,,0.284273001,48999,172366,,,0.107445784,18520,172366,,,0.186127195,32082,172366,,,0.010396482,1792,172366,,,0.02034624,3507,172366,,,0.001073298,185,172366,,,0.270122878,46560,172366,,,0.501746284,86484,172366,,,0.018988525,2641,139084,0.014988532,0.022988518,0.504937169,87034,172366,,,0.419220976,60917,145310,, -48,259,48259,TX,Kendall County,2024,1,5155.555828,466,131334,4338.870632,5972.241024,0,,,,2,,,,2,,,,2,4306.323311,3076.500508,5863.990103,,5654.148663,4591.835186,6716.462141,,,,,2,,0.128,,,0.106,0.155,3.056592545,,,2.302263444,3.886248664,4.810061796,,,3.770748864,5.942463358,0.074403702,209,2809,0.064698865,0.08410854,0,,,,,,,,,,0.085657371,0.068346215,0.102968527,0.067846608,0.055874269,0.079818946,,,,,,,0.114,,,0.087,0.145,0.324,,,0.247,0.41,8.7,0.01272389,0.097,,,0.19,,,0.15,0.233,0.785519095,34782,44279,,,0.195489567,,,0.155325423,0.240545145,0.323529412,11,34,0.233210018,0.414257608,314.2,147,46788,,,9.035872414,100,11067,7.26484142,10.80690341,,,,,,,,,,22.06558382,17.26496037,27.78795098,3.703195721,2.440429315,5.387955348,,,,,,,0.159343122,6045,37937,0.141470781,0.177215462,0.00085492,40,46788,,,1169.7,0.000816777,40,48973,,,1224.325,0.002348233,115,48973,,,425.8521739,1250,,,,,,,,,1192,0.49,,,,,,0.4,0.42,0.39,0.5,0.45,,,,,,0.54,0.44,0.4,0.45,0.924852746,29205,31578,0.908754696,0.940950795,0.782168581,8036,10274,0.693333916,0.871003246,0.03120657,741,23745,,,0.091,969,,0.058829787,0.123170213,,,,,,,,,,0.104073744,0.025806219,0.182341269,0.050842072,0.022378451,0.079305692,4.508588276,211038,46808,3.995890516,5.021286036,0.162357303,1664,10249,0.107613324,0.217101282,8.54920065,40,46788,,,54.64504387,127,232409,45.14107533,64.1490124,,,,,,,,,,40.07457355,25.403842,60.13153676,61.70524253,49.73017285,73.6803122,,,,8.8,,,,,1,,,,,0.137592968,2035,14790,0.108253347,0.16693259,0.118497895,0.091687121,0.145308669,0.018593644,0.005839279,0.03134801,0.009127789,0.002016125,0.016239454,0.713090996,15007,21045,0.667889228,0.758292763,,,,,,,,,,0.753045551,0.704643575,0.801447526,0.684784199,0.636326001,0.733242397,0.492,,21045,0.430849776,0.553150224,80.68751196,,,79.88783397,81.48718995,,,,,,,,,,82.90845432,80.45107163,85.36583701,80.01038102,79.05482786,80.96593417,,,,252.8938621,466,131334,228.4382502,277.349474,,,,,,,,,,208.3118522,161.1083714,265.0237517,273.5722814,243.1731658,303.971397,,,,37.64272868,18,47818,22.30946669,59.49174007,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.091,,,0.076,0.107,0.148,,,0.125,0.172,0.084,,,0.07,0.1,153.5,61,39733,,,0.097,4250,,,,0.01272389,425.1051739,33410,,,,,,,,,,,,,,,,,,,,,,,,,,0.309,,,0.294,0.325,0.173785194,4728,27206,0.152338386,0.195232003,0.127370557,1444,11337,0.097583323,0.157157791,0.001429359,70,48973,,,699.6142857,0.977456468,785.875,804,,,,,,,,3.057533717,,,,,,,,2.641622313,3.278410654,3.410599615,,,,,,,,3.005360756,3.619514076,0.026179143,,,,,-2637.7419,,,,,0.672405208,54017,80334,0.523242369,0.821568048,120238,,,106608.5532,133867.4468,,,,93373,86395.6383,100350.3617,,,,99069,76643.97872,121494.0213,108525,94365.34043,122684.6596,,,,,,0.223511604,2215,9910,,,65.0866949,,,,,0.154926063,,120238,,,7.425742574,15,2020,,,,,,,,,,,,,,,,,,,,,,,,,,15.6592751,37,232409,10.77912445,21.9914443,15.92020963,,,,,,,,,,,,,20.45422021,13.47946,29.75981652,,,,12.90827808,30,232409,8.709161014,18.42736959,,,,,,,,,,,,,15.12383395,9.787347913,22.32576236,,,,13.31925298,42,315333,9.599346003,18.00376072,,,,,,,,,,,,,15.91490829,11.14660611,22.03294142,,,,8,,5000,,,6,34,0.794115881,26452,33310,,,0.663,,,,,35.75839522,,,,,0.763765436,12803,16763,0.738194613,0.789336258,0.124363145,2026,16291,0.09589845,0.152827841,0.923581698,15482,16763,0.902150436,0.945012959,48973,,,,,0.221652747,10855,48973,,,0.199885651,9789,48973,,,0.013415556,657,48973,,,0.008065669,395,48973,,,0.016866437,826,48973,,,0.00106181,52,48973,,,0.260612991,12763,48973,,,0.691135932,33847,48973,,,0.034194739,1482,43340,0.016048408,0.05234107,0.503399833,24653,48973,,,0.568034509,25152,44279,, -48,261,48261,TX,Kenedy County,2024,0,,,,,,2,,,,2,,,,2,,,,2,,,,2,,,,2,,,,2,,0.272,,,0.23,0.313,4.605198788,,,3.699199026,5.693462916,5.266932156,,,4.237937983,6.40856346,,,,,,0,,,,,,,,,,,,,,,,,,,,,,0.184,,,0.149,0.223,0.431,,,0.35,0.518,4.2,0.374808082,0.128,,,0.357,,,0.301,0.418,0.005714286,2,350,,,0.155134459,,,0.123773355,0.192766738,0.142857143,2,14,0.031645086,0.307569357,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.463235294,126,272,0.419150188,0.507320401,0,0,340,,,-340,0,0,358,,,-358,0,0,358,,,-358,,,,,,,,,,,,,,,,,,,,,0.5,,,,,,,,,,0.333333333,29,87,0.090051975,0.576614692,0.117647059,4,34,0,1,0.06122449,9,147,,,0.153,9,,0.093425532,0.212574468,,,,,,,,,,,,,,,,1.651643245,59000,35722,0,5.13264714,0,0,28,0,0.902689508,0,0,340,,,,,,,,,,,,,,,,,,,,,,,,,,9.4,,,,,0,,,,,0.115384615,15,130,0,0.355962902,0,0,0.405765251,0.115384615,0,0.416726614,0,0,0.181463737,0.956521739,44,46,0.714774938,1,,,,,,,,,,,,,,,,0.273,,46,0,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.149,,,0.127,0.171,0.178,,,0.154,0.203,0.157,,,0.135,0.181,,,,,,0.128,20,,,,0.374808082,155.9201622,416,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.470588235,96,204,0.42412015,0.51705632,0.416666667,30,72,0.31777305,0.515560284,0,0,358,,,-358,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,43274,,,36623.10638,49924.89362,,,,,,,,,,45455,31849.38298,59060.61702,,,,,,,,,0.504950495,51,101,,,,,,,,0.391759486,,43274,,,,,44,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,,0,0,0.825531915,194,235,,,0.299,,,,,16.96614802,,,,,0.157894737,6,38,0,0.391422884,,,,,,0.52631579,20,38,0.035188754,1,358,,,,,0.170391062,61,358,,,0.223463687,80,358,,,0.025139665,9,358,,,0.019553073,7,358,,,0.016759777,6,358,,,0,0,358,,,0.681564246,244,358,,,0.240223464,86,358,,,0.363636364,32,88,0,1,0.44972067,161,358,,,1,350,350,, -48,263,48263,TX,Kent County,2024,0,,,,,,2,,,,2,,,,2,,,,2,,,,2,,,,2,,,,2,,0.149,,,0.129,0.171,3.372723047,,,2.883376437,3.907691984,4.945492367,,,4.326922246,5.570780843,,,,,,0,,,,,,,,,,,,,,,,,,,,,,0.141,,,0.115,0.17,0.339,,,0.302,0.378,5.1,0.302446351,0.123,,,0.216,,,0.189,0.246,0.719787517,542,753,,,0.17872525,,,0.15993116,0.198411551,0.5,1,2,0.104528646,0.771195053,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.091710758,52,567,0.077412886,0.106008631,0,0,749,,,-749,0,0,740,,,-740,0,0,740,,,-740,2290,,,,,,,,,2351,0.11,,,,,,,,,,0.17,,,,,,,,,0.17,0.884955752,400,452,0.819183327,0.950728177,0.808510638,76,94,0.283679259,1,0.020733652,13,627,,,0.155,26,,0.095425532,0.214574468,,,,,,,,,,,,,,,,4.1158149,129500,31464,1.299015343,6.932614457,0.055944056,8,143,0,0.20410746,0,0,749,,,,,,,,,,,,,,,,,,,,,,,,,,6.6,,,,,1,,,,,0.052631579,15,285,0,0.137057365,0.049122807,0,0.225791468,0,0,0.117058604,0,0,0.082772933,0.860962567,161,187,0.740288591,0.981636543,,,,,,,,,,,,,,,,0.142,,187,0.055021277,0.228978723,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.102,,,0.09,0.114,0.157,,,0.142,0.172,0.092,,,0.083,0.101,0,0,628,,,0.123,80,,,,0.302446351,244.3766515,808,,,,,,,,,,,,,,,,,,,,,,,,,,0.325,,,0.31,0.338,0.097014925,39,402,0.079142585,0.114887266,0.089385475,16,179,0.063172709,0.115598241,0,0,740,,,-740,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4345.137,,,,,1.093502439,56042,51250,0.416393891,1.770610987,58118,,,49355.78723,66880.21277,,,,,,,,,,,,,68487,56410.06383,80563.93617,,,,,,0.397660819,68,171,,,,,,,,0.238239444,,58118,,,55.55555556,1,18,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,100,,,0,0,0.933333333,462,495,,,0.443,,,,,0.042720566,,,,,0.808943089,199,246,0.640867129,0.977019049,0.104072398,23,221,0,0.387272908,0.926829268,228,246,0.822198109,1,740,,,,,0.233783784,173,740,,,0.25,185,740,,,0.00945946,7,740,,,0.017567568,13,740,,,0.002702703,2,740,,,0.001351351,1,740,,,0.20945946,155,740,,,0.75,555,740,,,0.003252033,2,615,0,0.116067768,0.481081081,356,740,,,1,753,753,, -48,265,48265,TX,Kerr County,2024,1,10036.31939,922,138215,8921.883283,11150.7555,0,,,,2,,,,2,17814.31836,8145.840725,33817.12531,1,7398.280197,5801.981693,8994.578701,,11658.60204,10055.72449,13261.47959,,,,,2,,0.172,,,0.147,0.2,3.727199359,,,2.916384662,4.572821566,5.121561704,,,4.049435925,6.181540816,0.085857183,309,3599,0.076704245,0.09501012,0,,,,,,,,,,0.075471698,0.062031945,0.088911451,0.094051856,0.081151869,0.106951842,,,,,,,0.153,,,0.121,0.187,0.347,,,0.269,0.427,7.4,0.052515215,0.138,,,0.25,,,0.203,0.298,0.647971406,34082,52598,,,0.170262524,,,0.13499783,0.209032521,0.354166667,17,48,0.279817228,0.427690189,205,109,53161,,,24.49952336,257,10490,21.50417633,27.49487038,,,,,,,,,,30.42688465,25.27505896,35.57871034,19.81081563,16.1253112,23.49632007,,,,,,,0.22548225,8346,37014,0.202843952,0.248120548,0.000808864,43,53161,,,1236.302326,0.000725703,39,53741,,,1377.974359,0.003368006,181,53741,,,296.9116022,1667,,,,,,,,1755,1567,0.48,,,,,,0.63,0.24,0.43,0.48,0.45,,,,,,0.54,0.26,0.39,0.46,0.896886856,34514,38482,0.877790428,0.915983284,0.569389299,6023,10578,0.498758612,0.640019985,0.035850154,801,22343,,,0.192,1879,,0.120510638,0.263489362,,,,,,,,,,0.231726635,0.162456981,0.300996289,0.089084065,0.046604285,0.131563845,3.904714671,125970,32261,3.351025076,4.458404266,0.205101725,1986,9683,0.154217151,0.255986299,14.4843024,77,53161,,,92.86217199,244,262755,81.21018488,104.5141591,,,,,,,,,,38.42459174,25.53286216,55.53423349,118.0129087,102.0891951,133.9366223,,,,8.2,,,,,1,,,,,0.121475564,2585,21280,0.097873033,0.145078095,0.081642284,0.062027401,0.101257167,0.033129699,0.017764122,0.048495276,0.013157895,0.00641166,0.01990413,0.740106811,16907,22844,0.703743399,0.776470224,,,,,,,,,,0.73699645,0.653297713,0.820695187,0.756381149,0.707805223,0.804957075,0.247,,22844,0.206770689,0.287229311,76.33663239,,,75.49148999,77.1817748,,,,,,,,,,79.36530916,77.59906005,81.13155828,74.99996044,73.86477683,76.13514406,,,,439.6612518,922,138215,407.0944815,472.2280221,,,,,,,754.8179818,473.0404105,1142.803496,343.3113474,285.0927107,401.529984,489.076443,445.6263465,532.5265395,,,,81.48164461,37,45409,57.37059739,112.3117139,,,,,,,,,,59.69555268,30.84556317,104.276117,95.27521545,59.70847028,144.2478212,,,,7.144820006,26,3639,4.66723364,10.46881673,,,,,,,,,,,,,,,,,,,,,,0.114,,,0.096,0.132,0.167,,,0.143,0.192,0.103,,,0.087,0.12,132.4,61,46081,,,0.138,7210,,,,0.052515215,2606.067522,49625,,,15.75994453,25,158630,10.19900514,23.26478705,,,,,,,,,,,,,20.52909066,12.86547182,31.08128996,,,,0.339,,,0.323,0.354,0.254931547,6927,27172,0.227527292,0.282335803,0.14776566,1531,10361,0.113212468,0.182318851,0.001265328,68,53741,,,790.3088235,0.953596698,404.325,424,,,,,,,,3.047996366,,,,,,,,2.75780966,3.350855503,3.358274113,,,,,,,,3.176481417,3.55819856,0.021141733,,,,,-4671.648,,,,,0.837687682,42067,50218,0.675927749,0.999447614,59619,,,53634.14894,65603.85106,,,,,,,,,,53718,43696.38298,63739.61702,70232,65609.02128,74854.97872,,,,,,0.577836027,3968,6867,,,53.86044309,,,,,0.312450729,,59619,,,4.863449308,13,2673,,,5.202429261,19,365214,3.132202261,8.124237727,,,,,,,,,,,,,5.602442665,3.062907538,9.399946826,,,,23.57933795,63,262755,17.66254217,30.84235459,23.97670834,,,,,,,,,,,,,33.28546803,24.18527203,44.68418722,,,,17.88738559,47,262755,13.14297812,23.78643084,,,,,,,,,,,,,24.05002405,17.40512166,32.39522457,,,,15.33347572,56,365214,11.58274277,19.91179364,,,,,,,,,,13.99762041,7.652629329,23.48562857,16.40715352,11.77405664,22.25815638,,,,16.92307692,,3900,,,42,24,0.692759051,27745,40050,,,0.614,,,,,46.11321759,,,,,0.707001453,15571,22024,0.6810593,0.732943606,0.11452019,2456,21446,0.092904949,0.136135432,0.891164185,19627,22024,0.874556174,0.907772195,53741,,,,,0.187212743,10061,53741,,,0.283210212,15220,53741,,,0.014700136,790,53741,,,0.012467204,670,53741,,,0.01324873,712,53741,,,0.001321151,71,53741,,,0.286485179,15396,53741,,,0.66827934,35914,53741,,,0.016203197,814,50237,0.009167105,0.023239289,0.517016803,27785,53741,,,0.394577741,20754,52598,, -48,267,48267,TX,Kimble County,2024,1,10630.75926,81,11377,7064.062327,15364.40702,0,,,,2,,,,2,,,,2,,,,2,10766.95569,6898.59167,16020.3766,1,,,,2,,0.189,,,0.166,0.216,3.93816724,,,3.359602366,4.536753086,5.387049439,,,4.760309673,6.051371627,0.100628931,32,318,0.06756356,0.133694302,0,,,,,,,,,,0.126126126,0.064364107,0.187888146,0.085427136,0.046590946,0.124263325,,,,,,,0.173,,,0.143,0.203,0.366,,,0.327,0.408,7,0.08434247,0.142,,,0.267,,,0.235,0.302,0.642557163,2754,4286,,,0.154745236,,,0.138190226,0.172338925,0,0,31,0,0.08383431,504,22,4365,,,43.10344828,35,812,30.02313104,59.94646228,,,,,,,,,,57.40181269,34.55964098,89.640041,35.16483517,20.09974166,57.10548923,,,,,,,0.24785195,750,3026,0.218064716,0.277639184,0.00091638,4,4365,,,1091.25,0.000678426,3,4422,,,1474,0.000452284,2,4422,,,2211,1020,,,,,,,,,1133,0.26,,,,,,,,0.44,0.25,0.24,,,,,,,,0.19,0.24,0.852691218,2709,3177,0.804106828,0.901275608,0.618406285,551,891,0.453848317,0.782964253,0.033769063,62,1836,,,0.318,261,,0.197659575,0.438340426,,,,,,,,,,0.204472844,0.042402814,0.366542873,0.107226107,0,0.229737362,5.475452646,125804,22976,2.669097758,8.281807535,0.080722892,67,830,0,0.19667961,20.6185567,9,4365,,,86.87700046,19,21870,52.30562947,135.6691979,,,,,,,,,,,,,107.174379,62.43302528,171.596563,,,,7.4,,,,,0,,,,,0.114503817,225,1965,0.061803424,0.167204209,0.093684211,0.040804842,0.146563579,0.030025445,0.003492203,0.056558687,0.005089059,0,0.017081005,0.755385352,1578,2089,0.682910029,0.827860675,,,,,,,,,,,,,0.732582688,0.659865554,0.805299823,0.154,,2089,0.088478918,0.219521082,76.93427995,,,73.70245033,80.16610957,,,,,,,,,,,,,76.47544866,73.19142917,79.75946816,,,,456.5720614,81,11377,348.4125823,587.6987463,,,,,,,,,,,,,509.1868836,369.9759691,683.5596247,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.122,,,0.109,0.136,0.175,,,0.159,0.192,0.109,,,0.099,0.12,,,,,,0.142,610,,,,0.08434247,388.5657611,4607,,,,,,,,,,,,,,,,,,,,,,,,,,0.347,,,0.333,0.36,0.277753009,623,2243,0.242008329,0.31349769,0.164663462,137,832,0.120578355,0.208748568,0.00113071,5,4422,,,884.4,,,,,,,,,,,3.152794637,,,,,,,,,3.146109207,3.219568594,,,,,,,,,3.415386581,0.005789442,,,,,-6858.912,,,,,0.951329462,37353,39264,0.633419571,1.269239353,51851,,,44068.19149,59633.80851,,,,,,,,,,55771,30046.74468,81495.25532,67500,44600.76596,90399.23404,,,,,,0.640062598,409,639,,,,,,,,0.264083624,,51851,,,,,234,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,32.59346175,10,30681,15.62983181,59.94053663,,,,,,,,,,,,,,,,,,,,,300,,,-888,-888,0.659568345,2292,3475,,,0.356,,,,,9.72818431,,,,,0.792419825,1359,1715,0.742506684,0.842332966,0.077840552,124,1593,0.02432162,0.131359485,0.797667639,1368,1715,0.717037718,0.878297559,4422,,,,,0.187019448,827,4422,,,0.297602895,1316,4422,,,0.009950249,44,4422,,,0.014020805,62,4422,,,0.008593397,38,4422,,,0.00113071,5,4422,,,0.249434645,1103,4422,,,0.715739484,3165,4422,,,0.012996567,53,4078,0,0.032728974,0.512437811,2266,4422,,,1,4286,4286,, -48,269,48269,TX,King County,2024,0,,,,,,2,,,,2,,,,2,,,,2,,,,2,,,,2,,,,2,,0.25,,,0.211,0.292,4.724044424,,,3.722035857,5.855080213,5.913805215,,,4.695179337,7.264841427,,,,,,0,,,,,,,,,,,,,,,,,,,,,,0.231,,,0.185,0.282,0.4,,,0.316,0.493,4.3,0.223684209,0.2,,,0.322,,,0.266,0.383,,,265,,,0.156521676,,,0.123294793,0.196289637,0,0,1,0,0.662081041,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.267281106,58,217,0.233919404,0.300642808,0,0,258,,,-258,0,0,233,,,-233,0,0,233,,,-233,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.7875,126,160,0.62844656,0.94655344,0.611111111,44,72,0,1,0.008591065,5,582,,,0.097,6,,0.056489362,0.137510638,,,,,,,,,,0.194444444,0,0.778202709,,,,7.218930473,96250,13333,0,35.95405754,0.411764706,21,51,0,0.873373148,0,0,258,,,,,,,,,,,,,,,,,,,,,,,,,,6.5,,,,,1,,,,,0.044444444,4,90,0,0.230993709,0.114285714,0,0.780873259,0,0,0.370685579,0,0,0.262114287,0.717647059,61,85,0.503188881,0.932105237,,,,,,,,,,,,,,,,0.197,,85,0.028413729,0.365586271,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.152,,,0.129,0.177,0.201,,,0.174,0.23,0.133,,,0.113,0.154,0,0,212,,,0.2,50,,,,0.223684209,63.9736837,286,,,,,,,,,,,,,,,,,,,,,,,,,,0.376,,,0.362,0.387,0.281690141,40,142,0.239988013,0.323392269,0.236842105,18,76,0.173693169,0.299991041,0,0,233,,,-233,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13447.4,,,,,0.687059982,51625,75139,0.26477798,1.109341985,87856,,,74379.06383,101332.9362,,,,,,,,,,37500,16658.46809,58341.53192,78750,42355.95745,115144.0426,,,,,,0.191176471,26,136,,,,,,,,0.168776179,,87856,,,,,16,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,,0,0,0.757142857,159,210,,,0.401,,,,,1.892495544,,,,,0.4,32,80,0.20018116,0.599818841,0.190476191,4,21,0,1,1,80,80,0.368117345,1,233,,,,,0.266094421,62,233,,,0.210300429,49,233,,,0.025751073,6,233,,,0.012875537,3,233,,,0,0,233,,,0.004291846,1,233,,,0.223175966,52,233,,,0.712446352,166,233,,,0.074257426,15,202,0,0.435474883,0.467811159,109,233,,,1,265,265,, -48,271,48271,TX,Kinney County,2024,1,9220.180217,55,9185,6174.899397,13241.71679,0,,,,2,,,,2,,,,2,9418.449529,5670.521871,14708.07562,1,8815.915697,3806.086663,17370.86841,1,,,,2,,0.24,,,0.21,0.27,4.255567443,,,3.639210385,4.844486476,5.047794557,,,4.384098738,5.740080386,0.075221239,17,226,0.040834498,0.10960798,1,,,,,,,,,,0.083333333,0.039961391,0.126705275,,,,,,,,,,0.166,,,0.14,0.194,0.408,,,0.363,0.457,4.1,0.256184816,0.193,,,0.319,,,0.28,0.359,0.953978907,2985,3129,,,0.161218775,,,0.141665903,0.181407176,0,0,7,0,0.25576943,191.7,6,3130,,,31.40495868,19,605,18.90783664,49.04273318,,,,,,,,,,41.97530864,24.45216412,67.20653535,,,,,,,,,,0.147448015,312,2116,0.126001207,0.168894824,,0,3130,,,,0,0,3128,,,-3128,,0,3128,,,,3101,,,,,,,,3398,862,0.24,,,,,,,,0.17,0.29,0.2,,,,,,,,0.19,0.19,0.846214511,2146,2536,0.742851406,0.949577616,0.490011751,417,851,0.149803441,0.830220061,0.047355959,60,1267,,,0.277,151,,0.172148936,0.381851064,,,,,,,,,,0.257462687,0,0.55899218,,,,3.608308068,79740,22099,1.582118375,5.634497761,0.579514825,215,371,0.162188222,0.996841428,0,0,3130,,,72.3065799,13,17979,38.50020853,123.6464537,,,,,,,,,,,,,,,,,,,7.7,,,,,0,,,,,0.020338983,30,1475,0,0.052884848,0.010273973,0,0.051431777,0,0,0.022618103,0.010169492,0,0.032553011,0.756468798,994,1314,0.712180522,0.800757073,,,,,,,,,,,,,,,,0.062,,1314,0,0.20261089,77.46352999,,,74.58394142,80.34311856,,,,,,,,,,76.12859181,72.43538193,79.82180169,,,,,,,458.7803156,55,9185,338.2683881,608.2761389,,,,,,,,,,422.3379605,273.3148598,623.4541435,491.2884385,291.1686649,776.44754,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.136,,,0.122,0.151,0.166,,,0.15,0.183,0.144,,,0.131,0.157,332.6,9,2706,,,0.193,620,,,,0.256184816,921.7529671,3598,,,,,,,,,,,,,,,,,,,,,,,,,,0.352,,,0.336,0.368,0.171730515,260,1514,0.14432626,0.199134771,0.087363495,56,641,0.057576261,0.117150729,0.000639386,2,3128,,,1564,,,,,,,,,,,2.741349358,,,,,,,,2.401718701,,3.097794555,,,,,,,,2.741698958,,0.017063259,,,,,-5355.883,,,,,0.762160044,48622,63795,0.232505523,1.291814565,52609,,,44682.02128,60535.97872,,,,,,,,,,,,,52477,14849.76596,90104.23404,,,,,,0.616541353,328,532,,,,,,,,0.23277386,,52609,,,5.847953216,1,171,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,300,,,-888,8,0.530794702,1603,3020,,,0.298,,,,,7.821648036,,,,,0.750226244,829,1105,0.633153171,0.867299318,,,,,,0.666063348,736,1105,0.553329507,0.77879719,3128,,,,,0.178388747,558,3128,,,0.246163683,770,3128,,,0.0185422,58,3128,,,0.024296675,76,3128,,,0.010549872,33,3128,,,0.002557545,8,3128,,,0.625319693,1956,3128,,,0.310421995,971,3128,,,0.063203177,191,3022,0.00165618,0.124750173,0.435102302,1361,3128,,,1,3129,3129,, -48,273,48273,TX,Kleberg County,2024,1,10642.0652,485,86140,9351.419907,11932.71049,0,,,,2,,,,2,,,,2,10561.65872,9078.369328,12044.94811,,12116.60906,8933.913218,15299.3049,,,,,2,,0.244,,,0.21,0.279,4.204907512,,,3.346145892,5.119792704,5.043385853,,,4.015943552,6.153486168,0.083363803,228,2735,0.073003685,0.09372392,0,,,,,,,,,,0.08385242,0.071960955,0.095743885,0.075875486,0.05298313,0.098767843,,,,,,,0.157,,,0.126,0.189,0.404,,,0.322,0.487,5.1,0.173557348,0.186,,,0.33,,,0.277,0.385,0.675676546,20973,31040,,,0.176663545,,,0.139096951,0.214568769,0.105263158,2,19,0.021173544,0.243494433,881.3,270,30635,,,27.56316559,264,9578,24.23823026,30.88810091,,,,,,,33.55704698,16.09190838,61.71260417,29.9821383,26.14873296,33.81554364,15.43460601,9.292641076,24.10304921,,,,,,,0.210284447,5308,25242,0.184071681,0.236497213,0.000424351,13,30635,,,2356.538462,0.000592846,18,30362,,,1686.777778,0.000625782,19,30362,,,1598,3993,,,,,,,,4102,4438,0.31,,,,,,0.36,,0.27,0.34,0.36,,,,,,0.5,0.43,0.34,0.39,0.823836905,14184,17217,0.791995393,0.855678417,0.598933957,4607,7692,0.507697727,0.690170188,0.04781546,626,13092,,,0.304,2158,,0.199148936,0.408851064,,,,,,,0.34375,0,0.888696148,0.473348284,0.390705011,0.555991557,0.127717391,0,0.275581159,6.740872991,109492,16243,4.371198114,9.110547869,0.385026738,2880,7480,0.277791493,0.492261983,6.854904521,21,30635,,,54.59153831,84,153870,43.54434896,67.5880391,,,,,,,,,,46.05193241,34.39378582,60.39098245,87.97367306,57.97520489,127.9970755,,,,8.3,,,,,1,,,,,0.216786356,2415,11140,0.171248321,0.26232439,0.13553796,0.091847928,0.179227992,0.08438061,0.052445357,0.116315864,0.015260323,0.001836632,0.028684014,0.763258444,9988,13086,0.704981679,0.821535209,,,,,,,,,,0.747847611,0.67928381,0.816411411,0.809386282,0.730125941,0.888646622,0.253,,13086,0.190031168,0.315968832,73.32073144,,,72.30824986,74.33321301,,,,,,,,,,73.29736386,72.0968919,74.49783581,72.37444003,70.22795194,74.52092811,,,,586.9767098,485,86140,533.4557363,640.4976834,,,,,,,,,,579.6937869,516.4826437,642.90493,645.9181639,526.1467263,765.6896015,,,,44.56203871,16,35905,25.47105543,72.36595905,,,,,,,,,,49.00931177,26.7938468,82.22929749,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.135,,,0.117,0.154,0.168,,,0.146,0.191,0.151,,,0.131,0.172,118.3,30,25365,,,0.186,5770,,,,0.173557348,5564.422126,32061,,,,,,,,,,,,,,,,,,,,,,,,,,0.357,,,0.341,0.372,0.254932561,4574,17942,0.220379369,0.289485752,0.106352698,822,7729,0.076565464,0.136139932,0.000494039,15,30362,,,2024.133333,0.812889518,286.95,353,,,,,,,,2.675696205,,,,,,,,2.566511495,3.216374082,3.153175252,,,,,,,,3.044041193,3.708899363,0.039692729,,,,,-2543.487425,,,,,0.667914652,36750,55022,0.524367652,0.811461653,51342,,,43864.21277,58819.78723,104950,19208.04255,190691.9575,,,,,,,47555,34683.34043,60426.65957,75291,61090.82979,89491.17021,,,,,,0.701687425,3493,4978,,,41.05745073,,,,,0.330197499,,51342,,,5.925925926,12,2025,,,5.979293248,13,217417,3.18372183,10.22477355,,,,,,,,,,7.557055771,3.904840992,13.20065561,,,,,,,8.074706669,12,153870,4.030864476,14.44788069,7.798791187,,,,,,,,,,,,,,,,,,,7.798791187,12,153870,4.02974921,13.62291873,,,,,,,,,,,,,,,,,,,13.3384234,29,217417,8.932951488,19.15620096,,,,,,,,,,11.33558366,6.718185287,17.91510924,,,,,,,26.55172414,,2900,,,33,44,0.494085779,10944,22150,,,0.482,,,,,68.79021807,,,,,0.540746958,6443,11915,0.50851834,0.572975575,0.211663446,2410,11386,0.155957531,0.267369362,0.81695342,9734,11915,0.782783885,0.851122955,30362,,,,,0.236413939,7178,30362,,,0.135597128,4117,30362,,,0.032474804,986,30362,,,0.010111323,307,30362,,,0.023713853,720,30362,,,0.002042026,62,30362,,,0.737599631,22395,30362,,,0.195836901,5946,30362,,,0.02297368,659,28685,0.011752036,0.034195323,0.49219419,14944,30362,,,0.196359536,6095,31040,, -48,275,48275,TX,Knox County,2024,1,13231.20325,80,9652,9107.751513,18581.52868,0,,,,2,,,,2,,,,2,14714.46247,8044.533559,24688.36775,1,12178.85999,6484.730018,20826.22149,1,,,,2,,0.218,,,0.188,0.248,4.227545087,,,3.371963789,5.147579141,5.51351662,,,4.434538403,6.679062429,0.083333333,24,288,0.051412448,0.115254218,0,,,,,,,,,,0.096491228,0.042289423,0.150693033,0.067073171,0.028787844,0.105358497,,,,,,,0.19,,,0.154,0.227,0.386,,,0.303,0.472,7.5,0.059312554,0.127,,,0.301,,,0.249,0.354,0.779898598,2615,3353,,,0.164086226,,,0.129647115,0.202047621,0.428571429,3,7,0.219826693,0.607881191,238.7,8,3351,,,27.77777778,22,792,17.40818545,42.05588938,,,,,,,,,,37.73584906,20.63053983,63.31434265,,,,,,,,,,0.25732775,676,2627,0.228732006,0.285923495,0.000298418,1,3351,,,3351,0,0,3273,,,-3273,,0,3273,,,,4299,,,,,,,,9571,2088,0.22,,,,,,,,0.13,0.22,0.17,,,,,,,0.22,0.13,0.17,0.818181818,1890,2310,0.78136869,0.854994947,0.564259486,461,817,0.431897686,0.696621286,0.039083558,58,1484,,,0.272,237,,0.167148936,0.376851064,,,,,,,0.8,0.304007023,1,0.181176471,0.04773577,0.314617171,0.053050398,0,0.131517044,4.802702574,100583,20943,3.416967714,6.188437433,0.195599022,160,818,0.083657678,0.307540366,17.90510295,6,3351,,,94.12546371,17,18061,54.83155124,150.7039855,,,,,,,,,,,,,125.6888717,66.92403066,214.9317985,,,,7.1,,,,,1,,,,,0.0609319,85,1395,0.031432311,0.090431488,0.039272727,0,0.081516283,0.020788531,0,0.043293464,0.002867384,0,0.019776449,0.827833573,1154,1394,0.748571533,0.907095612,,,,,,,,,,0.840816327,0.733305089,0.948327564,0.763095238,0.717607131,0.808583345,0.16,,1394,0.093714201,0.226285799,71.66111406,,,68.62320186,74.69902626,,,,,,,,,,,,,72.30260872,67.8264233,76.77879415,,,,643.2578126,80,9652,500.4929737,814.0839312,,,,,,,,,,649.7312007,396.8726969,1003.457143,587.4445511,421.5603522,796.9348656,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.133,,,0.115,0.153,0.183,,,0.158,0.207,0.123,,,0.105,0.141,,,,,,0.127,430,,,,0.059312554,220.5833876,3719,,,,,,,,,,,,,,,,,,,,,,,,,,0.353,,,0.342,0.364,0.299886621,529,1764,0.262950451,0.336822792,0.172949002,156,902,0.126480917,0.219417087,0.001833181,6,3273,,,545.5,,,,,,,,,,,2.633394378,,,,,,,,2.36637184,3.070343845,2.825072241,,,,,,,,2.792270709,3.147467236,0.024974146,,,,,-8939.989667,,,,,0.838102257,32981,39352,0.465981999,1.210222514,47207,,,40604.95745,53809.04255,,,,,,,,,,50625,37990.44681,63259.55319,54432,41416.17021,67447.82979,,,,,,0.627937337,481,766,,,36.0021062,,,,,0.293303959,,47207,,,19.23076923,4,208,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,400,,,0,-888,0.575494071,1456,2530,,,0.388,,,,,3.418950144,,,,,0.780448718,974,1248,0.739678686,0.82121875,0.072362685,83,1147,0.007559821,0.13716555,0.828525641,1034,1248,0.765450309,0.891600974,3273,,,,,0.267644363,876,3273,,,0.197066911,645,3273,,,0.055606477,182,3273,,,0.016804155,55,3273,,,0.007943783,26,3273,,,0.00091659,3,3273,,,0.348609838,1141,3273,,,0.557286893,1824,3273,,,0.032430731,103,3176,0.003532713,0.061328748,0.498930645,1633,3273,,,1,3353,3353,, -48,277,48277,TX,Lamar County,2024,1,12333.44552,1133,137319,11229.32739,13437.56365,0,,,,2,,,,2,18217.24009,14528.27418,21906.20599,,7173.945394,4727.675219,10437.7139,,12526.08705,11181.5576,13870.61651,,,,,2,,0.195,,,0.167,0.226,4.093380484,,,3.22675687,4.976242447,5.72666188,,,4.575560473,6.885780515,0.078528158,350,4457,0.070630679,0.086425637,0,,,,,,,0.164596273,0.135956384,0.193236163,0.053173242,0.034959314,0.07138717,0.065934066,0.057057968,0.074810164,,,,0.098214286,0.043097223,0.153331349,0.2,,,0.161,0.239,0.377,,,0.292,0.461,5.9,0.142136744,0.164,,,0.274,,,0.222,0.325,0.623123303,31211,50088,,,0.173969746,,,0.136893529,0.214185844,0.140350877,8,57,0.080003074,0.213448415,531,266,50098,,,34.50184502,374,10840,31.00511107,37.99857897,,,,,,,45.71428571,35.76861314,57.56957717,35.69230769,27.10266565,46.14058446,30.31173682,26.22171462,34.40175902,,,,49.67602592,31.49033917,74.53842958,0.210344656,8471,40272,0.187706359,0.232982954,0.000439139,22,50098,,,2277.181818,0.000495206,25,50484,,,2019.36,0.00124792,63,50484,,,801.3333333,4281,,,,,,,6169,4742,4095,0.43,,,,,0.39,0.46,0.42,0.26,0.43,0.44,,,,,0.48,0.56,0.32,0.36,0.45,0.875318066,29928,34191,0.857306625,0.893329507,0.587957497,6972,11858,0.526296592,0.649618402,0.042672977,1046,24512,,,0.226,2698,,0.144978723,0.307021277,,,,,,,0.385209003,0.262154917,0.508263089,0.299886621,0.171883049,0.427890193,0.179620983,0.133689944,0.225552023,5.600067777,115675,20656,4.891991874,6.308143679,0.366437783,4376,11942,0.310554494,0.422321071,13.37378738,67,50098,,,81.06687214,202,249177,69.88733551,92.24640877,,,,,,,67.49915626,42.30136186,102.1945338,,,,91.19653126,77.36481231,105.0282502,,,,8.9,,,,,0,,,,,0.166791698,3335,19995,0.139233732,0.194349664,0.143949045,0.117949164,0.169948925,0.016754189,0.009359241,0.024149136,0.023755939,0.014918132,0.032593746,0.808258019,18244,22572,0.78376639,0.832749648,,,,,,,0.764232489,0.69425125,0.834213728,0.803641557,0.729341832,0.877941282,0.833458712,0.805292991,0.861624432,0.154,,22572,0.125083361,0.182916639,72.51684515,,,71.73416398,73.29952632,,,,,,,67.51021454,65.29229856,69.72813052,99.72941559,65.22308942,134.2357418,72.3637899,71.43625981,73.29131998,,,,622.6950162,1133,137319,584.4123305,660.9777018,,,,,,,884.8419714,754.1433445,1015.540598,376.8802217,252.4025994,541.262865,620.9480818,577.1659127,664.7302509,,,,67.2249539,35,52064,46.82464352,93.49363739,,,,,,,,,,,,,85.85006899,57.04674737,124.0772526,,,,6.63423264,30,4522,4.476088904,9.47077961,,,,,,,,,,,,,6.829268293,4.22742471,10.43926203,,,,,,,0.127,,,0.109,0.145,0.188,,,0.163,0.214,0.111,,,0.094,0.129,183.4,76,41445,,,0.164,8180,,,,0.142136744,7077.414878,49793,,,14.01289186,21,149862,8.674200921,21.42019374,,,,,,,,,,,,,17.36364966,10.45405136,27.11548981,,,,0.368,,,0.353,0.383,0.250669486,7114,28380,0.222073741,0.27926523,0.118778553,1482,12477,0.087799829,0.149757276,0.001287537,65,50484,,,776.6769231,0.92959434,492.685,530,,,,,,,,2.750433851,,,,,,,2.166596635,2.496244762,3.003245452,3.037641211,,,,,,,2.376074733,3.021101338,3.202375101,0.130355589,,,,,-4325.465,,,,,0.745780247,38926,52195,0.663542082,0.828018413,62620,,,57258.29787,67981.70213,,,,51619,30533.21277,72704.78723,44938,26585.48936,63290.51064,36759,20472.53192,53045.46809,60723,57086.57447,64359.42553,,,,,,0.637191157,5390,8459,,,45.22549779,,,,,0.214691792,,62620,,,4.417797412,14,3169,,,4.879336869,17,348408,2.842393536,7.812290997,,,,,,,,,,,,,4.277010292,2.135068128,7.652752845,,,,20.90265282,53,249177,15.46389762,27.63441554,21.27002091,,,,,,,,,,,,,25.52496892,18.54648149,34.26607938,,,,19.26341516,48,249177,14.20332166,25.54049378,,,,,,,,,,,,,21.84348054,15.60530275,29.74462075,,,,22.96158527,80,348408,18.20710908,28.57768047,,,,,,,,,,,,,24.88442352,19.16403833,31.77685329,,,,8.47826087,,4600,,,22,17,0.583217734,21442,36765,,,0.576,,,,,45.10151209,,,,,0.667080807,13423,20122,0.642066096,0.692095518,0.142894367,2742,19189,0.119229302,0.166559432,0.765828447,15410,20122,0.7396784,0.791978493,50484,,,,,0.2392045,12076,50484,,,0.191664686,9676,50484,,,0.130793915,6603,50484,,,0.02010538,1015,50484,,,0.008339276,421,50484,,,0.001049838,53,50484,,,0.095832343,4838,50484,,,0.721555344,36427,50484,,,0.012187327,572,46934,0.00708615,0.017288504,0.514559068,25977,50484,,,0.475083852,23796,50088,, -48,279,48279,TX,Lamb County,2024,1,11211.07179,249,35367,9159.74837,13262.39521,0,,,,2,,,,2,,,,2,12230.90001,9502.113444,14959.68657,,9185.66147,6176.151808,12195.17113,,,,,2,,0.256,,,0.221,0.293,4.579842401,,,3.703640384,5.566421045,5.49858555,,,4.394352636,6.726146485,0.079901153,97,1214,0.064648672,0.095153634,0,,,,,,,,,,0.087467363,0.067460044,0.107474682,0.053164557,0.031038406,0.075290708,,,,,,,0.191,,,0.157,0.23,0.404,,,0.319,0.491,6.6,0.108389887,0.149,,,0.342,,,0.287,0.401,0.490072825,6393,13045,,,0.159272076,,,0.124759332,0.196104376,0.4375,7,16,0.30773596,0.555081272,341.1,44,12898,,,40.72532699,137,3364,33.90570398,47.54495001,,,,,,,,,,46.43013579,37.59113663,55.26913494,28.29162133,18.48102635,41.45378029,,,,,,,0.261431695,2750,10519,0.23402744,0.28883595,0.000232594,3,12898,,,4299.333333,0.000157183,2,12724,,,6362,0.000392958,5,12724,,,2544.8,1523,,,,,,,,712,1633,0.33,,,,,,,,0.28,0.35,0.28,,,,,,,,0.22,0.3,0.76656535,6305,8225,0.731917533,0.801213166,0.414544236,1237,2984,0.339108939,0.489979533,0.039508507,209,5290,,,0.255,873,,0.16087234,0.34912766,,,,,,,0.025,0,0.352669259,0.249792531,0.16286672,0.336718342,0.11227702,0.027118765,0.197435275,4.3144512,105031,24344,3.726266632,4.902635767,0.28651371,1024,3574,0.195069267,0.377958154,15.50628004,20,12898,,,86.32782993,56,64869,65.21111499,112.1038678,,,,,,,,,,71.02078724,46.39313616,104.0619085,104.1958883,68.06421358,152.671118,,,,6.4,,,,,0,,,,,0.131774708,620,4705,0.091543315,0.172006101,0.082340195,0.04152465,0.12315574,0.034006376,0.015760232,0.05225252,0.020191286,0.005047505,0.035335067,0.77547654,4231,5456,0.722642666,0.828310413,,,,,,,,,,0.707417582,0.641712796,0.773122369,0.830635838,0.776727389,0.884544287,0.242,,5456,0.186701542,0.297298458,73.05462236,,,71.52856198,74.58068275,,,,,,,,,,71.65513227,69.51598434,73.7942802,74.63562726,72.39748888,76.87376564,,,,581.4931727,249,35367,506.5532239,656.4331215,,,,,,,,,,657.6624353,543.5107381,771.8141325,520.5512871,411.9775756,629.1249986,,,,83.00344784,13,15662,44.19584019,141.9384237,,,,,,,,,,93.24009324,44.71224892,171.4718512,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.146,,,0.127,0.167,0.183,,,0.16,0.209,0.144,,,0.124,0.165,239.4,25,10441,,,0.149,1950,,,,0.108389887,1514.965456,13977,,,,,,,,,,,,,,,,,,,,,,,,,,0.362,,,0.348,0.375,0.312146093,2205,7064,0.277592901,0.346699284,0.16043956,584,3640,0.118737433,0.202141688,0.000628733,8,12724,,,1590.5,0.94131579,178.85,190,,,,,,,,2.776026402,,,,,,,,2.690155364,3.085555994,3.020924473,,,,,,,,2.918516398,3.324508898,0.058401263,,,,,-8327.60714,,,,,0.71565861,35000,48906,0.505209085,0.926108136,53008,,,46895.65957,59120.34043,,,,,,,42734,9328.212766,76139.78723,52766,47137.40426,58394.59575,60798,49471.70213,72124.29787,,,,,,0.698237886,1902,2724,,,28.87117039,,,,,0.279731361,,53008,,,3.229278794,3,929,,,,,,,,,,,,,,,,,,,,,,,,,,15.0920388,11,64869,7.237219226,27.75479669,16.95725231,,,,,,,,,,,,,,,,,,,16.95725231,11,64869,8.464999256,30.34120846,,,,,,,,,,,,,,,,,,,26.22119765,24,91529,16.8004161,39.01506363,,,,,,,,,,33.23883078,19.36284382,53.21858797,,,,,,,,,1500,,,-888,9,0.513089005,4410,8595,,,0.439,,,,,22.41490751,,,,,0.728626943,3375,4632,0.687918525,0.769335362,0.072246902,309,4277,0.038980521,0.105513283,0.775690846,3593,4632,0.738682635,0.812699057,12724,,,,,0.271691292,3457,12724,,,0.171408362,2181,12724,,,0.035916379,457,12724,,,0.021298334,271,12724,,,0.007230431,92,12724,,,0.001650424,21,12724,,,0.579613329,7375,12724,,,0.366472807,4663,12724,,,0.076758183,931,12129,0.051673366,0.101842999,0.498899717,6348,12724,,,0.568723649,7419,13045,, -48,281,48281,TX,Lampasas County,2024,1,8947.154767,395,59956,7487.13505,10407.17448,0,,,,2,,,,2,,,,2,8247.152177,5676.960083,11582.06792,,9196.947169,7376.08121,11017.81313,,,,,2,,0.174,,,0.149,0.199,3.888428818,,,3.095288263,4.710125265,5.523269967,,,4.490450452,6.582423727,0.067669173,99,1463,0.054798112,0.080540234,0,,,,,,,,,,0.082446809,0.054645535,0.110248083,0.067010309,0.05127485,0.082745769,,,,,,,0.17,,,0.138,0.203,0.391,,,0.315,0.474,7.4,0.058953449,0.135,,,0.252,,,0.209,0.3,0.717621492,15520,21627,,,0.177300727,,,0.141811677,0.216902606,0.142857143,4,28,0.058576657,0.253079972,314.6,70,22252,,,21.49864329,103,4791,17.34672773,25.65055885,,,,,,,,,,29.63525836,21.07356572,40.51237376,18.29065514,13.7790246,23.80780179,,,,,,,0.194195669,3426,17642,0.172748861,0.215642478,0.000449398,10,22252,,,2225.2,0.000131666,3,22785,,,7595,0.000789993,18,22785,,,1265.833333,2282,,,,,,,,452,2220,0.39,,,,,,0.52,0.33,0.36,0.39,0.22,,,,,,0.15,0.26,0.09,0.23,0.902829028,13946,15447,0.882203465,0.923454592,0.562934205,2755,4894,0.479615355,0.646253055,0.036911328,348,9428,,,0.187,887,,0.119085106,0.254914894,,,,,,,,,,0.1609538,0.07919313,0.242714471,0.07694962,0.026796714,0.127102527,4.037102206,133075,32963,3.561937925,4.512266486,0.221499783,1022,4614,0.140036084,0.302963482,13.0325364,29,22252,,,67.76514273,73,107725,53.11705447,85.20449309,,,,,,,,,,,,,78.98075977,60.41402305,101.4540901,,,,8.6,,,,,1,,,,,0.126517572,990,7825,0.089323645,0.163711499,0.091321244,0.0585673,0.124075187,0.024792332,0.008438025,0.04114664,0.019808307,0.002153675,0.037462938,0.782812143,6859,8762,0.741231971,0.824392315,,,,,,,,,,0.743937233,0.59937636,0.888498105,0.790848048,0.691708971,0.889987125,0.39,,8762,0.323127825,0.456872175,75.8814503,,,74.7186455,77.04425509,,,,,,,,,,78.10874643,74.40691013,81.81058274,75.2394102,73.85473251,76.6240879,,,,452.4533543,395,59956,404.4147538,500.4919548,,,,,,,,,,461.1038795,346.3954258,601.6405408,464.8719198,408.3417609,521.4020788,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.118,,,0.101,0.134,0.176,,,0.154,0.2,0.103,,,0.088,0.119,121.3,23,18956,,,0.135,2890,,,,0.058953449,1160.027024,19677,,,15.27440468,10,65469,7.324670754,28.09017404,,,,,,,,,,,,,,,,,,,0.35,,,0.336,0.364,0.223619846,2880,12879,0.196215591,0.251024102,0.118623725,593,4999,0.086453512,0.150793938,0.000482774,11,22785,,,2071.363636,0.989176245,258.175,261,,,,,,,,2.892413236,,,,,,,,2.774579983,3.020708653,3.069741694,,,,,,,,2.939061311,3.178815325,0.017801751,,,,,-4005.1025,,,,,0.670182766,37549,56028,0.491371085,0.848994446,67917,,,59912.57447,75921.42553,,,,,,,106699,60004.53192,153393.4681,64583,50631.85106,78534.14894,78954,72499.70213,85408.29787,,,,,,0.620559742,2306,3716,,,49.91248946,,,,,0.216308141,,67917,,,5.357142857,6,1120,,,,,,,,,,,,,,,,,,,,,,,,,,16.3008276,19,107725,9.495832779,26.09920407,17.6375029,,,,,,,,,,,,,20.43392927,11.4367151,33.70265884,,,,11.13947552,12,107725,5.755929551,19.45842195,,,,,,,,,,,,,,,,,,,24.8200546,37,149073,17.47560898,34.21117583,,,,,,,,,,,,,23.33025374,15.09811011,34.44005683,,,,18.5,,2000,,,11,26,0.64171552,10399,16205,,,0.594,,,,,30.90414093,,,,,0.805142425,6388,7934,0.782967932,0.827316918,0.124775814,974,7806,0.091191222,0.158360405,0.865767583,6869,7934,0.834666861,0.896868304,22785,,,,,0.21189379,4828,22785,,,0.20566162,4686,22785,,,0.039455782,899,22785,,,0.013034891,297,22785,,,0.014878209,339,22785,,,0.005178846,118,22785,,,0.207768269,4734,22785,,,0.70370858,16034,22785,,,0.009488032,197,20763,0.002307636,0.016668428,0.49835418,11355,22785,,,0.661349239,14303,21627,, -48,283,48283,TX,La Salle County,2024,1,9317.020787,115,20332,7175.512297,11458.52928,0,,,,2,,,,2,,,,2,9189.084705,7091.941576,11712.24278,,,,,2,,,,2,,0.277,,,0.237,0.316,4.45847496,,,3.614421919,5.3510117,4.921266381,,,3.85964263,6.067890474,0.104424779,59,565,0.079208287,0.12964127,0,,,,,,,,,,0.102822581,0.0760926,0.129552562,,,,,,,,,,0.17,,,0.137,0.205,0.414,,,0.328,0.501,6.6,0.115490468,0.143,,,0.367,,,0.305,0.427,,,6664,,,0.186540504,,,0.146933043,0.228937557,0.107142857,3,28,0.033251579,0.216648149,494.8,33,6670,,,49.88662132,66,1323,38.58230931,63.46801394,,,,,,,,,,53.3446232,40.99147316,68.25094605,,,,,,,,,,0.215862069,939,4350,0.187266324,0.244457814,,0,6670,,,,,0,6604,,,,0.000757117,5,6604,,,1320.8,3708,,,,,,,,4177,,0.22,,,,,,,,0.17,0.31,0.26,,,,,,,,0.23,0.3,0.624135624,2798,4483,0.557242253,0.691028994,0.122152206,252,2063,0.048976157,0.195328255,0.02844639,117,4113,,,0.364,449,,0.226978723,0.501021277,,,,,,,,,,0.351194319,0.243519017,0.458869621,,,,4.497767123,95681,21273,1.75292558,7.242608665,0.351839897,545,1549,0.140364669,0.563315124,5.997001499,4,6670,,,54.34044288,20,36805,33.19255423,83.92440675,,,,,,,,,,53.23146293,31.0092888,85.22872876,,,,,,,9.2,,,,,0,,,,,0.168224299,360,2140,0.073556516,0.262892082,0.105140187,0.023280512,0.186999862,0.052803738,0,0.109159043,0.006542056,0,0.019965183,0.864068872,1907,2207,0.752123315,0.976014428,,,,,,,,,,0.790784268,0.71473868,0.866829856,,,,0.343,,2207,0.182923061,0.503076939,75.00645292,,,72.96229313,77.05061272,,,,,,,,,,74.05644098,72.00108616,76.11179581,,,,,,,559.8034878,115,20332,456.1175123,663.4894633,,,,,,,,,,581.8588542,471.30754,710.5492498,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.144,,,0.124,0.164,0.163,,,0.14,0.187,0.155,,,0.133,0.176,313,18,5752,,,0.143,990,,,,0.115490468,795.2673595,6886,,,,,,,,,,,,,,,,,,,,,,,,,,0.36,,,0.343,0.375,0.262785462,817,3109,0.224657802,0.300913121,0.099312452,130,1309,0.070716708,0.127908197,0.001817081,12,6604,,,550.3333333,0.875,88.375,101,,,,,,,,2.585483732,,,,,,,,2.557721456,,2.812645732,,,,,,,,2.822499063,,0.017093374,,,,,-4685.076,,,,,1.205267008,41190,34175,0.446809343,1.963724673,40555,,,36011.85106,45098.14894,,,,,,,,,,68225,58596.57447,77853.42553,49087,45883.08511,52290.91489,,,,,,0.905290102,1061,1172,,,,,,,,0.301960301,,40555,,,7.604562738,2,263,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,500,,,-888,-888,0.439452055,2406,5475,,,0.267,,,,,20.13480955,,,,,0.790876777,1335,1688,0.651593393,0.930160161,0.093416928,149,1595,0.011824188,0.175009668,0.734004739,1239,1688,0.596137686,0.871871793,6604,,,,,0.192156269,1269,6604,,,0.137946699,911,6604,,,0.012265294,81,6604,,,0.012870987,85,6604,,,0.004391278,29,6604,,,0.00045427,3,6604,,,0.863264688,5701,6604,,,0.112053301,740,6604,,,0.082185695,555,6753,0.036454197,0.127917194,0.403846154,2667,6604,,,1,6664,6664,, -48,285,48285,TX,Lavaca County,2024,1,7400.925372,310,54440,6007.833604,8794.017141,0,,,,2,,,,2,19705.67603,11029.11729,32501.51587,1,5806.440475,3638.865332,8791.020658,1,7155.151261,5479.043881,8831.258642,,,,,2,,0.183,,,0.155,0.211,3.924504581,,,3.116915624,4.795385314,5.514202735,,,4.418102821,6.644004295,0.066707466,109,1634,0.054609116,0.078805817,0,,,,,,,0.123809524,0.060809935,0.186809112,0.079741379,0.055092686,0.104390073,0.056621881,0.042588664,0.070655099,,,,,,,0.179,,,0.144,0.217,0.367,,,0.286,0.448,7.8,0.042763467,0.121,,,0.264,,,0.218,0.317,0.500565472,10180,20337,,,0.169328183,,,0.133710782,0.206566424,0.260869565,6,23,0.151021274,0.378411613,301.8,62,20544,,,25.42182227,113,4445,20.73451388,30.10913066,,,,,,,58.82352941,34.86255157,92.96653682,39.51367781,29.51070456,51.81693141,13.89904901,9.835794311,19.0775307,,,,,,,0.190942865,2981,15612,0.170687545,0.211198184,0.000584112,12,20544,,,1712,0.000242848,5,20589,,,4117.8,0.000291418,6,20589,,,3431.5,3341,,,,,,,2629,1686,3073,0.41,,,,,,,0.2,0.35,0.43,0.41,,,,,,,0.29,0.4,0.41,0.853240379,11994,14057,0.834833623,0.871647134,0.511724138,2226,4350,0.442739582,0.580708694,0.033409761,306,9159,,,0.165,792,,0.104234043,0.225765957,,,,,,,0.677419355,0.324421178,1,0.234129693,0.132200266,0.336059119,0.071955072,0.028849113,0.115061031,4.878564479,130365,26722,4.171989399,5.585139558,0.160840616,773,4806,0.10813924,0.213541992,13.14252336,27,20544,,,69.24796708,70,101086,53.98218755,87.49064048,,,,,,,,,,,,,69.22105949,51.53962544,91.01290956,,,,9.1,,,,,0,,,,,0.098671727,780,7905,0.073621122,0.123722332,0.053409815,0.034830097,0.071989533,0.037950664,0.021219019,0.05468231,0.006957622,0,0.014114648,0.773914945,7079,9147,0.741135251,0.806694638,,,,,,,,,,0.703353803,0.569704351,0.837003254,0.750855992,0.698616468,0.803095516,0.295,,9147,0.250450406,0.339549594,77.65354411,,,76.46499833,78.84208989,,,,,,,,,,83.39593094,77.53488737,89.25697451,77.77702925,76.41013558,79.14392293,,,,377.6060174,310,54440,331.5794494,423.6325855,,,,,,,834.7688363,567.1849239,1184.88773,361.9153443,252.0872979,503.3366332,360.8077906,308.5218571,413.0937241,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.12,,,0.103,0.137,0.178,,,0.154,0.203,0.105,,,0.089,0.122,168.8,29,17178,,,0.121,2460,,,,0.042763467,823.7526685,19263,,,,,,,,,,,,,,,,,,,,,,,,,,0.35,,,0.335,0.365,0.217737456,2352,10802,0.192716179,0.242758733,0.133756698,674,5039,0.100394996,0.1671184,0.000728544,15,20589,,,1372.6,0.970932203,286.425,295,,,,,,,,2.990388856,,,,,,,,2.693600086,3.169020376,3.287653876,,,,,,,,3.105344314,3.454369611,0.044971212,,,,,-2747.74615,,,,,0.737935633,42052,56986,0.60449873,0.871372537,58400,,,52601.02128,64198.97872,,,,,,,41715,27790.06383,55639.93617,45845,34766.53192,56923.46809,64201,57174.78723,71227.21277,,,,,,0.381009138,959,2517,,,27.73253599,,,,,0.255513699,,58400,,,6.441223833,8,1242,,,,,,,,,,,,,,,,,,,,,,,,,,9.231899882,12,101086,4.427054834,16.97779258,11.87108007,,,,,,,,,,,,,9.590419321,4.140462355,18.89694931,,,,13.84959342,14,101086,7.571701597,23.23726443,,,,,,,,,,,,,13.57275676,6.508664436,24.96078293,,,,25.58071782,36,140731,17.91642028,35.41449609,,,,,,,,,,,,,24.28552,15.71630807,35.85021828,,,,9.5,,2000,,,9,10,0.693201904,10197,14710,,,0.531,,,,,10.01147891,,,,,0.762978309,6261,8206,0.736763783,0.789192835,0.084494324,655,7752,0.058753594,0.110235054,0.800755545,6571,8206,0.772884102,0.828626988,20589,,,,,0.235174122,4842,20589,,,0.237311186,4886,20589,,,0.058040701,1195,20589,,,0.007431153,153,20589,,,0.006168342,127,20589,,,0.001117101,23,20589,,,0.204769537,4216,20589,,,0.718830443,14800,20589,,,0.014580296,280,19204,0.006122818,0.023037774,0.506678323,10432,20589,,,0.823867827,16755,20337,, -48,287,48287,TX,Lee County,2024,1,9294.382294,278,48236,7525.200365,11063.56422,0,,,,2,,,,2,16199.56655,10152.18211,24526.33843,1,11163.08112,7775.495012,15525.14353,,7056.50165,5050.410754,9062.592546,,,,,2,,0.202,,,0.175,0.232,4.065939036,,,3.397972384,4.833683082,5.63620771,,,4.51550438,6.797059309,0.080363382,115,1431,0.066277843,0.094448922,0,,,,,,,0.14953271,0.081961594,0.217103826,0.073529412,0.051596162,0.095462662,0.077643909,0.058452857,0.096834961,,,,,,,0.188,,,0.155,0.225,0.379,,,0.297,0.466,7.6,0.064460335,0.12,,,0.281,,,0.232,0.333,0.520482893,9097,17478,,,0.173861002,,,0.137241183,0.213832373,0.275862069,8,29,0.177833165,0.378478493,389.7,69,17706,,,25.54399243,81,3171,20.28561715,31.74885026,,,,,,,36.63003663,17.56552636,67.36394155,30.3514377,21.47848374,41.65971958,19.96007984,13.46698205,28.49425509,,,,,,,0.229066899,3157,13782,0.204045622,0.254088175,0.000225912,4,17706,,,4426.5,0.000222792,4,17954,,,4488.5,0.000445583,8,17954,,,2244.25,3073,,,,,,,3111,,3181,0.37,,,,,,,0.32,0.24,0.38,0.47,,,,,,,0.48,0.3,0.48,0.864939049,10714,12387,0.831116653,0.898761445,0.450326323,1863,4137,0.339037977,0.56161467,0.035378979,309,8734,,,0.18,643,,0.113276596,0.246723404,,,,,,,0.461038961,0,0.931698267,0.220402085,0.078597308,0.362206862,0.03054755,0,0.062470756,4.452666069,114153,25637,3.580700961,5.324631177,0.216689847,779,3595,0.11620049,0.317179204,10.16604541,18,17706,,,96.92046753,84,86669,77.30756065,119.9941337,,,,,,,179.0911126,102.3660449,290.8327468,85.52287737,50.68627729,135.1630174,89.61884556,66.30051531,118.4808666,,,,9.2,,,,,0,,,,,0.169642857,1045,6160,0.118742892,0.220542822,0.111129296,0.068680935,0.153577658,0.050324675,0.016476748,0.084172603,0.006493507,0,0.016701222,0.754562044,5789,7672,0.707544475,0.801579613,,,,,,,,,,0.73593899,0.575624245,0.896253735,0.755997819,0.690807983,0.821187655,0.464,,7672,0.361587348,0.566412652,76.36298506,,,74.95745551,77.76851462,,,,,,,70.48151631,66.36114528,74.60188734,75.15547529,71.71517101,78.59577958,78.1839575,76.54863391,79.81928109,,,,415.6765772,278,48236,363.2483573,468.104797,,,,,,,761.4173083,543.9676882,1036.834264,427.1583953,309.1366487,575.3795553,352.1886819,293.9052422,410.4721216,,,,77.8116957,13,16707,41.43145084,133.0603694,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.127,,,0.11,0.145,0.18,,,0.157,0.205,0.116,,,0.099,0.134,145.4,22,15136,,,0.12,2090,,,,0.064460335,1070.815079,16612,,,,,,,,,,,,,,,,,,,,,,,,,,0.359,,,0.345,0.371,0.261955885,2684,10246,0.230977162,0.292934609,0.137614679,510,3706,0.103061487,0.17216787,0.000222792,4,17954,,,4488.5,0.960452586,222.825,232,,,,,,,,2.62869842,,,,,,,,2.363921254,2.927662441,2.782579175,,,,,,,,2.594190031,3.028373054,0.09059486,,,,,-7384.405933,,,,,0.51581295,35849,69500,0.365553646,0.666072254,65911,,,56671,75151,,,,,,,43214,35557.48936,50870.51064,43254,6434.595745,80073.40426,72488,68796.76596,76179.23404,,,,,,0.592002405,1969,3326,,,40.27386498,,,,,0.303105703,,65911,,,5.444646098,6,1102,,,,,,,,,,,,,,,,,,,,,,,,,,14.37121811,12,86669,7.174060303,25.71407895,13.84578108,,,,,,,,,,,,,19.17536638,8.76819855,36.40081842,,,,,,,,,,,,,,,,,,,,,,,,,,,33.99048267,41,120622,24.39215721,46.11192781,,,,,,,,,,41.28961222,21.33494515,72.12464318,26.23466912,16.02481745,40.51731869,,,,11.33333333,,1500,,,8,9,0.657747052,8087,12295,,,0.519,,,,,35.97308287,,,,,0.780928243,4930,6313,0.751184482,0.810672005,0.136812644,831,6074,0.083985486,0.189639802,0.80722319,5096,6313,0.765078199,0.849368181,17954,,,,,0.207920241,3733,17954,,,0.203130222,3647,17954,,,0.092012922,1652,17954,,,0.011585162,208,17954,,,0.00634956,114,17954,,,0.002227916,40,17954,,,0.255987524,4596,17954,,,0.628550741,11285,17954,,,0.027424749,451,16445,0.010457178,0.04439232,0.491032639,8816,17954,,,1,17478,17478,, -48,289,48289,TX,Leon County,2024,1,10112.84277,345,45415,8308.897172,11916.78836,0,,,,2,,,,2,13549.55533,6497.538445,24918.11467,1,,,,2,11250.90228,8960.781456,13541.02311,,,,,2,,0.205,,,0.173,0.236,4.216921339,,,3.263428101,5.143916798,5.773252761,,,4.501758904,6.946380555,0.077376566,105,1357,0.063160379,0.091592753,0,,,,,,,,,,0.075075075,0.046771905,0.103378245,0.072198276,0.05554602,0.088850532,,,,,,,0.202,,,0.16,0.241,0.381,,,0.29,0.464,6.3,0.080589619,0.172,,,0.284,,,0.228,0.336,0.029709269,467,15719,,,0.160427717,,,0.12444081,0.197296938,0.230769231,12,52,0.15966014,0.307394816,294.5,47,15959,,,29.8041442,105,3523,24.10331436,35.50497403,,,,,,,,,,38.19444444,26.29129812,53.63920054,26.85145085,20.58685339,34.42234815,,,,,,,0.228740223,2749,12018,0.203718946,0.2537615,,0,15959,,,,0.000246777,4,16209,,,4052.25,0.000246777,4,16209,,,4052.25,3043,,,,,,,709,2591,3132,0.35,,,,,,,0.36,0.4,0.34,0.37,,,,,,,0.35,0.37,0.37,0.845797308,9489,11219,0.816781916,0.8748127,0.481481482,1599,3321,0.379193379,0.583769584,0.051840845,314,6057,,,0.218,791,,0.136978723,0.299021277,,,,,,,0.125475285,0,0.315405568,0.394291755,0.266536227,0.522047282,0.103284356,0.045909608,0.160659105,5.06462599,123430,24371,3.922613837,6.206638143,0.228315613,816,3574,0.138391984,0.318239241,16.91835328,27,15959,,,93.7108318,80,85369,74.3068615,116.631242,,,,,,,,,,84.72618039,42.29500398,151.5985405,97.63808815,75.02778779,124.9215289,,,,8.9,,,,,0,,,,,0.095098756,650,6835,0.064986029,0.125211484,0.065864662,0.041297231,0.090432093,0.023994148,0.007112314,0.040875982,0.005705925,0,0.014072887,0.801714378,4957,6183,0.761129834,0.842298922,,,,,,,,,,0.69752422,0.395419655,0.999628784,0.848189763,0.838682907,0.857696618,0.44,,6183,0.352622308,0.527377692,75.4096054,,,74.02993205,76.78927876,,,,,,,,,,90.43027772,71.65130716,109.2092483,74.33839613,72.71244029,75.96435197,,,,501.8209571,345,45415,442.0088359,561.6330783,,,,,,,610.0775794,382.332371,923.6647869,,,,540.6919759,468.9375492,612.4464026,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.132,,,0.111,0.152,0.189,,,0.162,0.215,0.114,,,0.095,0.132,223.9,30,13396,,,0.172,2730,,,,0.080589619,1353.986183,16801,,,,,,,,,,,,,,,,,,,,,,,,,,0.358,,,0.343,0.373,0.263751931,2220,8417,0.232773207,0.294730654,0.150623177,568,3771,0.112495517,0.188750837,0.000308471,5,16209,,,3241.8,,,,,,,,,,,2.946037656,,,,,,,,2.842817184,3.01706976,3.144884234,,,,,,,,3.22152206,3.121659307,0.075824171,,,,,-4710.11574,,,,,0.556231231,37045,66600,0.327205496,0.785256967,56749,,,49758.53192,63739.46809,,,,,,,49100,33275.82979,64924.17021,54423,20357.12766,88488.87234,60231,52113.38298,68348.61702,,,,,,0.591443206,1963,3319,,,50.78139986,,,,,0.308904122,,56749,,,5.020080321,5,996,,,,,,,,,,,,,,,,,,,,,,,,,,24.94057548,21,85369,14.5288043,39.93227737,24.59909335,,,,,,,,,,,,,30.78980802,17.59903563,50.00071924,,,,19.91355176,17,85369,11.60037774,31.88352542,,,,,,,,,,,,,20.147542,10.72771758,34.45291042,,,,42.58730397,51,119754,31.70904507,55.99443975,,,,,,,,,,61.46968427,30.68544491,109.9862448,41.88758694,29.64214954,57.49398574,,,,,,1600,,,-888,-888,0.683261126,8674,12695,,,0.341,,,,,15.65813142,,,,,0.783179615,5010,6397,0.764437336,0.801921895,0.07052162,411,5828,0.042358782,0.098684457,0.780209473,4991,6397,0.726798807,0.833620139,16209,,,,,0.225985564,3663,16209,,,0.24585107,3985,16209,,,0.065395768,1060,16209,,,0.010673083,173,16209,,,0.009377506,152,16209,,,0.000185082,3,16209,,,0.165093467,2676,16209,,,0.741810106,12024,16209,,,0.023848957,360,15095,0.012695959,0.035001954,0.500092541,8106,16209,,,1,15719,15719,, -48,291,48291,TX,Liberty County,2024,1,11388.15032,1773,264573,10646.62041,12129.68022,0,,,,2,,,,2,16204.27355,13183.44997,19225.09713,,8134.846033,6990.499876,9279.192189,,12271.74821,11235.19655,13308.29988,,,,,2,,0.23,,,0.198,0.261,4.354734435,,,3.45839313,5.295758575,5.673999492,,,4.519403988,6.860506434,0.0861521,759,8810,0.080292904,0.092011296,0,,,,,,,0.115163148,0.087752104,0.142574192,0.08191862,0.073095088,0.090742153,0.085817525,0.077567473,0.094067577,,,,,,,0.204,,,0.167,0.241,0.411,,,0.324,0.495,7.1,0.041477981,0.157,,,0.313,,,0.26,0.367,0.460034051,42152,91628,,,0.185334158,,,0.146389843,0.226947581,0.179104478,24,134,0.136962745,0.225009856,380,371,97621,,,36.99911574,795,21487,34.42715787,39.57107362,,,,,,,27.88104089,20.33662255,37.30702633,39.20448051,35.05546828,43.35349274,38.13274421,34.38164217,41.88384625,,,,,,,0.232381331,18706,80497,0.209743033,0.255019629,0.000215118,21,97621,,,4648.619048,0.000284336,29,101992,,,3516.965517,0.000274531,28,101992,,,3642.571429,4841,,,,,,,9013,2674,4611,0.25,,,,,,,0.28,0.18,0.26,0.32,,,,,,0.56,0.28,0.27,0.32,0.784046262,46098,58795,0.766512164,0.801580361,0.403113088,10152,25184,0.363239799,0.442986377,0.058453518,2063,35293,,,0.276,8173,,0.215234043,0.336765957,,,,,,,0.505555556,0.368413973,0.642697138,0.320196197,0.254387185,0.386005208,0.11383433,0.07024782,0.157420839,4.878488999,122172,25043,4.081485242,5.675492756,0.170217658,4442,26096,0.13100467,0.209430646,7.273025271,71,97621,,,97.9059745,438,447368,88.7368428,107.0751062,,,,,,,120.6213229,89.23631871,159.4677857,45.11841673,34.34622927,58.19947033,122.6749152,109.3580183,135.9918122,,,,9.6,,,,,1,,,,,0.152653657,4185,27415,0.128615001,0.176692312,0.099742836,0.080011901,0.119473771,0.05070217,0.034025513,0.067378828,0.011307678,0.004665759,0.017949598,0.784319078,25859,32970,0.751776658,0.816861498,,,,,,,0.807843137,0.689617985,0.92606829,0.672281216,0.614988095,0.729574336,0.757000083,0.746523056,0.767477109,0.658,,32970,0.602624579,0.713375422,72.92421993,,,72.34348235,73.50495752,,,,,,,68.99136942,66.99039898,70.99233987,78.77222101,76.16506495,81.37937707,72.13577123,71.3990002,72.87254226,,,,601.2809144,1773,264573,572.8514744,629.7103543,,,,,,,814.4769093,706.6906851,922.2631336,418.5698426,361.7657627,475.3739225,641.6666667,605.1889283,678.1444052,,,,64.89767191,71,109403,50.68562019,81.85958256,,,,,,,137.4003847,65.88882517,252.6841995,57.32484076,37.77743128,83.40463364,65.88891903,45.62999183,92.07316014,,,,6.285578748,53,8432,4.708329807,8.221691761,,,,,,,,,,7.346189164,4.706842013,10.93054717,5.779062014,3.775075176,8.467664833,,,,,,,0.138,,,0.119,0.157,0.189,,,0.164,0.214,0.126,,,0.107,0.145,311.8,242,77606,,,0.157,14130,,,,0.041477981,3137.518945,75643,,,20.90941537,58,277387,15.87739573,27.03026809,,,,,,,,,,,,,30.06256772,22.16576426,39.85860333,,,,0.372,,,0.359,0.382,0.289706769,15373,53064,0.259919535,0.319494003,0.125095666,3596,28746,0.094116942,0.156074389,0.000431406,44,101992,,,2318,0.926618766,1096.19,1183,,,0.132212457,692,5234,0.072549952,0.191874962,2.613891465,,,,,,,2.524928085,2.588904262,2.64690253,2.881801568,,,,,,,2.730210268,2.960486367,2.828619452,0.231265563,,,,,-5493.559043,,,,,0.709437129,41429,58397,0.647895009,0.770979248,61880,,,54770.38298,68989.61702,,,,,,,52188,37657.78723,66718.21277,53049,48918.10638,57179.89362,64233,59824.48936,68641.51064,,,,,,0.765857339,17254,22529,,,36.45821428,,,,,0.310698125,,61880,,,2.461917218,16,6499,,,7.885321146,48,608726,5.814013337,10.45479184,,,,,,,,,,6.608591169,3.298984901,11.82459508,7.267676605,4.789444677,10.57408789,,,,17.06979692,79,447368,13.44905848,21.36539625,17.65884015,,,,,,,,,,,,,23.02355615,17.56939886,29.63588058,,,,19.89413637,89,447368,15.97662509,24.48144668,,,,,,,27.07825616,13.51736791,48.45048006,11.47078391,6.42011068,18.91931364,22.95450868,17.5583803,29.48602669,,,,31.04845201,189,608726,26.62190459,35.47499944,,,,,,,38.66908056,24.23370691,58.54545267,17.42264944,11.66822177,25.02183084,36.33838302,30.20846332,42.46830272,,,,5.346534654,,10100,,,11,43,0.506369757,29334,57930,,,0.466,,,,,22.77923783,,,,,0.807682999,23359,28921,0.78716648,0.828199517,0.114936307,3185,27711,0.090300594,0.13957202,0.876802324,25358,28921,0.854967572,0.898637075,101992,,,,,0.294895678,30077,101992,,,0.121725233,12415,101992,,,0.081967213,8360,101992,,,0.015060005,1536,101992,,,0.008216331,838,101992,,,0.001156954,118,101992,,,0.371274218,37867,101992,,,0.523815593,53425,101992,,,0.056487528,4896,86674,0.045111291,0.067863765,0.502353126,51236,101992,,,0.773704545,70893,91628,, -48,293,48293,TX,Limestone County,2024,1,11432.67367,516,63140,9845.958762,13019.38858,0,,,,2,,,,2,17726.06659,12600.18824,22851.94493,,5536.298566,3509.538382,8307.166146,1,11487.30841,9374.702533,13599.91428,,,,,2,,0.222,,,0.192,0.252,4.328692548,,,3.43205468,5.278864762,5.528589695,,,4.378713684,6.727321116,0.104380746,193,1849,0.09044406,0.118317433,0,,,,,,,0.177935943,0.133217406,0.22265448,0.085106383,0.062980438,0.107232328,0.097669256,0.078284717,0.117053796,,,,,,,0.204,,,0.167,0.243,0.395,,,0.31,0.482,6.6,0.087023678,0.157,,,0.3,,,0.249,0.355,0.541542491,11993,22146,,,0.168902241,,,0.132049623,0.209381072,0.24137931,7,29,0.144907761,0.346292388,470.2,104,22119,,,39.15799004,173,4418,33.32282141,44.99315867,,,,,,,37.1257485,25.22514489,52.69703653,51.8134715,41.08486049,64.48635037,30.65539112,23.27792372,39.62920177,,,,,,,0.223135965,3663,16416,0.199306178,0.246965752,0.00040689,9,22119,,,2457.666667,0.000359502,8,22253,,,2781.625,0.000539253,12,22253,,,1854.416667,3829,,,,,,,2961,,3835,0.37,,,,,,,0.43,0.27,0.37,0.35,,,,,,,0.22,0.35,0.36,0.845916001,13132,15524,0.819476227,0.872355775,0.475374732,2442,5137,0.401906948,0.548842517,0.045957852,386,8399,,,0.258,1250,,0.168638298,0.347361702,,,,,,,0.234444444,0.119742527,0.349146362,0.413499716,0.306138706,0.520860727,0.297108674,0.203453561,0.390763787,4.605562856,105145,22830,3.900262914,5.310862798,0.383461694,1892,4934,0.30826747,0.458655919,10.3983001,23,22119,,,79.35001984,92,115942,63.96731535,97.31575529,,,,,,,67.05870216,35.70593465,114.672423,,,,107.3537305,83.99768249,135.1942566,,,,9,,,,,1,,,,,0.160434258,1330,8290,0.127849516,0.193019,0.100680272,0.073910375,0.12745017,0.058504222,0.035127551,0.081880893,0.010253317,0.003286753,0.017219882,0.850246914,6887,8100,0.826011372,0.874482455,,,,,,,0.832343234,0.734781485,0.929904984,0.831325301,0.744209923,0.918440679,0.856899903,0.811684198,0.902115608,0.384,,8100,0.330675027,0.437324973,73.13097294,,,71.97048383,74.29146205,,,,,,,68.63732879,65.25956723,72.01509034,84.60586404,75.51649531,93.69523277,72.721466,71.27585706,74.16707493,,,,584.9763236,516,63140,530.9817742,638.9708731,,,,,,,814.1596274,655.7987668,972.520488,247.1527008,164.2311748,357.2044666,605.4647921,535.5137427,675.4158415,,,,75.25786887,17,22589,43.84048196,120.4951384,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.135,,,0.117,0.154,0.185,,,0.16,0.211,0.127,,,0.108,0.146,240.8,45,18685,,,0.157,3480,,,,0.087023678,2034.961685,23384,,,,,,,,,,,,,,,,,,,,,,,,,,0.373,,,0.36,0.385,0.259401381,3042,11727,0.229614147,0.289188616,0.135091278,666,4930,0.098155108,0.172027448,0.000898755,20,22253,,,1112.65,0.893726236,235.05,263,,,,,,,,2.812343258,,,,,,,2.341087954,2.781669553,3.057603719,2.818879013,,,,,,,2.481143012,2.824035798,2.953065005,0.063892985,,,,,-10321.35167,,,,,0.758076383,34002,44853,0.634849639,0.881303126,51357,,,44909.85106,57804.14894,63934,52442.08511,75425.91489,21875,15020.3617,28729.6383,32159,24683.59575,39634.40426,60188,47321.10638,73054.89362,56476,50574.55319,62377.44681,,,,,,0.757100352,2799,3697,,,30.98959223,,,,,0.266020212,,51357,,,3.058103976,4,1308,,,,,,,,,,,,,,,,,,,,,,,,,,20.1176923,24,115942,12.60765066,30.45842791,20.70000518,,,,,,,,,,,,,29.18044031,16.99868181,46.72071168,,,,18.11250453,21,115942,11.21192578,27.68688718,,,,,,,,,,,,,20.87433649,11.41219401,35.02358967,,,,20.89350458,34,162730,14.4693593,29.19657844,,,,,,,,,,,,,25.36113195,16.24935578,37.73535405,,,,15.5,,2000,,,20,11,0.552887538,9095,16450,,,0.463,,,,,19.01940493,,,,,0.747895058,6129,8195,0.719406851,0.776383265,0.112378704,857,7626,0.079240883,0.145516526,0.69847468,5724,8195,0.657761056,0.739188303,22253,,,,,0.221408349,4927,22253,,,0.212915113,4738,22253,,,0.160427808,3570,22253,,,0.014335146,319,22253,,,0.010155934,226,22253,,,0.001078506,24,22253,,,0.235428931,5239,22253,,,0.572552016,12741,22253,,,0.028100358,588,20925,0.018186606,0.038014111,0.494225498,10998,22253,,,0.699223336,15485,22146,, -48,295,48295,TX,Lipscomb County,2024,1,7223.689757,43,8481,4208.065485,11565.82707,1,,,,2,,,,2,,,,2,,,,2,8308.205724,3984.107582,15279.08613,1,,,,2,,0.177,,,0.149,0.207,3.705838055,,,2.996071289,4.439739443,5.069638049,,,4.107037423,6.08609084,0.054347826,15,276,0.027601857,0.081093795,1,,,,,,,,,,,,,,,,,,,,,,0.154,,,0.122,0.188,0.369,,,0.285,0.454,4.9,0.315520587,0.127,,,0.251,,,0.202,0.302,,,3059,,,0.181053045,,,0.14502963,0.221883761,0.5,1,2,0.104528646,0.771195053,,,,,,21.9072165,17,776,12.76176091,35.07557579,,,,,,,,,,38.57566766,20.53991837,65.96556652,,,,,,,,,,0.288738357,682,2362,0.257759634,0.319717081,,0,2931,,,,0,0,2854,,,-2854,,0,2854,,,,3015,,,,,,,,,2135,0.34,,,,,,,,0.33,0.34,0.28,,,,,,,,0.17,0.29,0.850961539,1593,1872,0.801083799,0.900839278,0.544680851,384,705,0.438340914,0.651020788,0.030737705,45,1464,,,0.183,124,,0.118659575,0.247340426,,,,,,,,,,0.253101737,0.121410537,0.384792937,0.109785203,0.003564505,0.2160059,4.039330893,125809,31146,2.473855889,5.604805898,0.268841395,239,889,0.168036896,0.369645894,34.11804845,10,2931,,,81.2093953,13,16008,43.24058278,138.8705392,,,,,,,,,,,,,103.1565917,49.46759538,189.708645,,,,6.3,,,,,1,,,,,0.094827586,110,1160,0.053441209,0.136213963,0.047747748,0.002503714,0.092991781,0.042241379,0.008945319,0.075537439,0.012068966,0,0.033117257,0.873511905,1174,1344,0.835858287,0.911165523,,,,,,,,,,0.917177914,0.851274494,0.983081334,0.822122571,0.726540871,0.917704272,0.207,,1344,0.148970676,0.265029324,78.20476323,,,74.90789467,81.5016318,,,,,,,,,,,,,77.07115974,72.95761588,81.18470361,,,,380.2897456,43,8481,269.1156577,521.9773877,,,,,,,,,,,,,415.7631828,269.0600104,613.7484746,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.114,,,0.097,0.133,0.164,,,0.141,0.188,0.105,,,0.089,0.122,0,0,2438,,,0.127,400,,,,0.315520587,1041.848978,3302,,,,,,,,,,,,,,,,,,,,,,,,,,0.339,,,0.325,0.353,0.305674192,501,1639,0.269929511,0.341418872,0.250980392,192,765,0.190214435,0.31174635,0.000350385,1,2854,,,2854,,,,,,,,,,,2.898366538,,,,,,,,2.511105486,3.379187118,3.208309644,,,,,,,,2.82805673,3.660117618,0.115886324,,,,,-9887.750333,,,,,0.695171026,40078,57652,0.543288737,0.847053315,70236,,,60133.3617,80338.6383,55208,20939.57447,89476.42553,,,,,,,65807,62791.34043,68822.65957,77500,66501.3617,88498.6383,,,,,,0.657393851,449,683,,,,,,,,0.216185432,,70236,,,,,243,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,400,,,0,0,0.664864865,1353,2035,,,0.406,,,,,1.796735289,,,,,0.779735683,885,1135,0.710292834,0.849178532,0.076476283,79,1033,0.013611683,0.139340882,0.866960352,984,1135,0.821990153,0.911930552,2854,,,,,0.239313245,683,2854,,,0.209880869,599,2854,,,0.011212334,32,2854,,,0.025227751,72,2854,,,0.010511563,30,2854,,,0.002452698,7,2854,,,0.367203924,1048,2854,,,0.576384022,1645,2854,,,0.079348211,224,2823,0.038101394,0.120595028,0.480378416,1371,2854,,,1,3059,3059,, -48,297,48297,TX,Live Oak County,2024,1,8929.956116,205,32407,7006.234533,10853.6777,0,,,,2,,,,2,,,,2,9430.513788,6767.499513,12793.55681,,9906.880454,6846.506463,12967.25445,,,,,2,,0.243,,,0.212,0.278,4.470417035,,,3.606245639,5.393050218,5.435800174,,,4.299437303,6.628460806,0.072619048,61,840,0.055069304,0.090168792,0,,,,,,,,,,0.09010989,0.063799271,0.11642051,0.048387097,0.026580919,0.070193274,,,,,,,0.204,,,0.168,0.243,0.4,,,0.315,0.487,7.1,0.035772574,0.16,,,0.322,,,0.269,0.378,0.19161888,2172,11335,,,0.164166122,,,0.129980307,0.203840124,0.25,7,28,0.151262701,0.356398836,202.2,23,11377,,,30.49613109,67,2197,23.63408272,38.72900848,,,,,,,,,,43.01075269,31.25167875,57.73992794,21.39534884,13.56281585,32.10352827,,,,,,,0.235470942,1880,7984,0.208066687,0.262875197,,0,11377,,,,0.000262513,3,11428,,,3809.333333,0.000175009,2,11428,,,5714,1853,,,,,,,,1200,1493,0.31,,,,,,,,0.23,0.34,0.3,,,,,,,,0.26,0.32,0.754381724,6241,8273,0.714781842,0.793981606,0.427021696,1299,3042,0.339349634,0.514693758,0.041692339,203,4869,,,0.268,578,,0.17506383,0.36093617,,,,,,,,,,0.358274648,0.23095085,0.485598446,0.096491228,0,0.194515985,6.731680663,117037,17386,3.449460184,10.01390114,0.157444894,350,2223,0.081483713,0.233406076,9.668629692,11,11377,,,61.41282698,37,60248,43.24029772,84.64949234,,,,,,,,,,48.88979426,25.26207011,85.40063169,78.49786486,50.79967925,115.8783336,,,,9.4,,,,,0,,,,,0.106355383,410,3855,0.065866965,0.146843801,0.068848168,0.031596064,0.106100271,0.032425422,0.010387264,0.054463579,0.008819715,0.000232369,0.017407061,0.82725,3309,4000,0.798043183,0.856456817,,,,,,,,,,0.713718571,0.628731061,0.798706081,0.81372549,0.697915934,0.929535046,0.376,,4000,0.283661496,0.468338504,77.60220633,,,75.87980539,79.32460728,,,,,,,,,,77.12052038,74.18426338,80.05677738,76.74176869,74.3200454,79.16349199,,,,455.6421361,205,32407,389.0187518,522.2655204,,,,,,,,,,489.8138685,383.2491857,616.8395035,481.0798839,385.134254,577.0255139,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.143,,,0.124,0.163,0.183,,,0.159,0.209,0.135,,,0.116,0.156,144,14,9723,,,0.16,1820,,,,0.035772574,412.4935482,11531,,,,,,,,,,,,,,,,,,,,,,,,,,0.37,,,0.357,0.381,0.26809325,1541,5748,0.234731548,0.301454952,0.155091606,364,2347,0.113389479,0.196793734,0.000437522,5,11428,,,2285.6,0.902217742,111.875,124,,,,,,,,3.209421715,,,,,,,,3.180467794,3.258424171,3.487726596,,,,,,,,3.536909521,3.46629927,0.016948891,,,,,-2367.802,,,,,0.587759258,32901,55977,0.410523117,0.7649954,58576,,,50245.10638,66906.89362,,,,,,,,,,41280,30972.42553,51587.57447,64795,52554.82979,77035.17021,,,,,,0.606447689,997,1644,,,,,,,,0.289418875,,58576,,,3.129890454,2,639,,,,,,,,,,,,,,,,,,,,,,,,,,20.89092847,11,60248,10.42867622,37.37964171,18.25786748,,,,,,,,,,,,,,,,,,,16.59806135,10,60248,7.959415576,30.52442578,,,,,,,,,,,,,,,,,,,17.74454947,15,84533,9.931489635,29.26693584,,,,,,,,,,,,,24.348673,12.15476983,43.56650179,,,,5,,1000,,,0,5,0.555079627,5054,9105,,,0.295,,,,,27.67947511,,,,,0.748374669,3108,4153,0.70591604,0.790833298,0.094755511,374,3947,0.05192331,0.137587711,0.686010113,2849,4153,0.627808787,0.744211439,11428,,,,,0.190584529,2178,11428,,,0.211585579,2418,11428,,,0.06020301,688,11428,,,0.015138257,173,11428,,,0.010675534,122,11428,,,0.001575079,18,11428,,,0.41459573,4738,11428,,,0.498687434,5699,11428,,,0.034646549,372,10737,0.0186516,0.050641499,0.427283864,4883,11428,,,1,11335,11335,, -48,299,48299,TX,Llano County,2024,1,10128.22922,484,54773,8218.400497,12038.05794,0,,,,2,,,,2,,,,2,9174.190549,5437.206749,14499.1763,1,10020.35074,7837.957861,12202.74362,,,,,2,,0.159,,,0.133,0.189,3.662542956,,,2.856798002,4.540097568,5.235907344,,,4.169845403,6.375800946,0.087719298,110,1254,0.072061917,0.103376679,0,,,,,,,,,,0.079113924,0.049353306,0.108874542,0.090808416,0.072066977,0.109549856,,,,,,,0.159,,,0.124,0.201,0.35,,,0.273,0.433,6.5,0.132648913,0.14,,,0.229,,,0.181,0.28,0.794991291,16888,21243,,,0.150700532,,,0.119871039,0.185760741,0.423076923,11,26,0.323312525,0.516642852,195.7,43,21978,,,33.74836173,103,3052,27.23072495,40.26599852,,,,,,,,,,29.07711757,18.43239828,43.62995309,35.69751057,28.12557815,44.68075762,,,,,,,0.229340628,3186,13892,0.205510841,0.253170415,0.000682501,15,21978,,,1465.2,0.000532387,12,22540,,,1878.333333,0.000665484,15,22540,,,1502.666667,1984,,,,,,,,,2068,0.4,,,,,,,,0.45,0.4,0.36,,,,,,,,0.16,0.36,0.915295908,15636,17083,0.892888004,0.937703812,0.484064943,1610,3326,0.386457391,0.581672494,0.037951678,355,9354,,,0.227,755,,0.15193617,0.30206383,,,,,,,,,,0.342171717,0.219959654,0.46438378,0.136403897,0.067040591,0.205767203,4.538504983,136609,30100,3.925353184,5.151656783,0.263844593,910,3449,0.173139267,0.354549918,10.46501047,23,21978,,,116.0359896,126,108587,95.77486676,136.2971124,,,,,,,,,,,,,124.9084722,102.1774497,147.6394948,,,,8.5,,,,,1,,,,,0.15503876,1400,9030,0.121828588,0.188248931,0.101180438,0.074024208,0.128336669,0.035991141,0.017995651,0.05398663,0.019933555,0.003021782,0.036845328,0.738299193,5947,8055,0.697349063,0.779249323,,,,,,,,,,0.577608143,0.530490852,0.624725434,0.698526484,0.628019872,0.769033095,0.41,,8055,0.335677419,0.484322581,77.05882593,,,75.58762629,78.53002557,,,,,,,,,,89.40497875,71.92073082,106.8892267,76.87231287,75.22207834,78.5225474,,,,456.0572289,484,54773,403.3161395,508.7983183,,,,,,,,,,379.09024,247.6343308,555.4550351,457.3274709,398.7321679,515.9227739,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.11,,,0.093,0.13,0.169,,,0.145,0.196,0.093,,,0.078,0.109,167.9,33,19653,,,0.14,2970,,,,0.132648913,2560.25667,19301,,,,,,,,,,,,,,,,,,,,,,,,,,0.335,,,0.316,0.352,0.251272864,2665,10606,0.22267712,0.279868609,0.162185603,561,3459,0.124057943,0.200313262,0.000621118,14,22540,,,1610,0.975,93.6,96,,,,,,,,2.872822955,,,,,,,,2.679691971,2.944814079,2.916010966,,,,,,,,2.734720077,3.007724667,0.019833121,,,,,-2897.001,,,,,0.658368948,41285,62708,0.492385209,0.824352688,59528,,,52113.3617,66942.6383,,,,,,,,,,43222,34391.87234,52052.12766,67506,61067.19149,73944.80851,,,,,,0.634097707,1272,2006,,,67.64545949,,,,,0.335606773,,59528,,,7.001166861,6,857,,,,,,,,,,,,,,,,,,,,,,,,,,27.11449061,31,108587,16.78429704,41.44737914,28.54853712,,,,,,,,,,,,,30.50036953,17.76758922,48.83404623,,,,23.02301381,25,108587,14.89928062,33.98651008,,,,,,,,,,,,,26.91992936,17.4211589,39.73912618,,,,23.5302027,35,148745,16.38964833,32.72481587,,,,,,,,,,,,,23.51392024,15.86474325,33.56758324,,,,,,1300,,,-888,21,0.714043993,12660,17730,,,0.466,,,,,0.50330157,,,,,0.78849355,7579,9612,0.770443891,0.806543209,0.106839469,981,9182,0.078991749,0.134687188,0.867145235,8335,9612,0.83122665,0.90306382,22540,,,,,0.150488021,3392,22540,,,0.371916593,8383,22540,,,0.011047028,249,22540,,,0.010070985,227,22540,,,0.007364685,166,22540,,,0.000754215,17,22540,,,0.128482697,2896,22540,,,0.834338953,18806,22540,,,0.015086207,315,20880,0.006260091,0.023912323,0.511313221,11525,22540,,,0.502141882,10667,21243,, -48,301,48301,TX,Loving County,2024,0,,,,,,2,,,,2,,,,2,,,,2,,,,2,,,,2,,,,2,,0.137,,,0.109,0.171,3.004865338,,,2.242246421,3.853364459,4.332011633,,,3.317506374,5.425910937,,,,,,0,,,,,,,,,,,,,,,,,,,,,,0.147,,,0.111,0.188,0.324,,,0.248,0.403,6.5,0.186274509,0.113,,,0.193,,,0.149,0.243,,,64,,,0.249909015,,,0.202144856,0.301527076,0.4,6,15,0.262274328,0.527864126,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.049180328,3,61,0.049180328,0.049180328,0,0,57,,,-57,0,0,51,,,-51,0,0,51,,,-51,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.968253968,61,63,0.901278663,1,1,16,16,0,1,0.005720824,5,874,,,0.071,1,,0.020957447,0.121042553,,,,,,,,,,,,,,,,2.768621935,131875,47632,0,6.629576243,0,0,28,0,0.902689508,0,0,57,,,,,,,,,,,,,,,,,,,,,,,,,,6.5,,,,,0,,,,,0.066666667,4,60,0,0.430374033,0,0,0.879158045,0.066666667,0,0.602266165,0,0,0.39317143,0.743589744,29,39,0.212474509,1,,,,,,,,,,,,,,,,0.276,,39,0,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.088,,,0.073,0.105,0.135,,,0.113,0.158,0.078,,,0.064,0.092,,,,,,0.113,10,,,,0.186274509,15.27450976,82,,,,,,,,,,,,,,,,,,,,,,,,,,0.338,,,0.326,0.349,0.027777778,1,36,0.027777778,0.027777778,0.107142857,3,28,0.107142857,0.107142857,0,0,51,,,-51,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,94716,,,79424.42553,110007.5745,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.178259217,,94716,,,,,24,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,,0,0,0.733333333,66,90,,,0.923,,,,,0.426761712,,,,,0.3,12,40,0,0.686947521,,,,,,0.875,35,40,0.514482933,1,51,,,,,0.274509804,14,51,,,0.098039216,5,51,,,0.019607843,1,51,,,0,0,51,,,0.039215686,2,51,,,0,0,51,,,0.215686275,11,51,,,0.725490196,37,51,,,0.068493151,5,73,0,1,0.215686275,11,51,,,1,64,64,, -48,303,48303,TX,Lubbock County,2024,1,10361.67641,4942,890262,9969.775244,10753.57757,0,,,,2,5571.39011,3671.581189,8106.080101,,18288.09852,16340.0689,20236.12814,,11167.35884,10511.46449,11823.25319,,9188.261424,8667.054169,9709.468678,,,,,2,,0.191,,,0.165,0.222,3.875378656,,,3.16345339,4.695829839,5.284712248,,,4.471607551,6.175714087,0.08500898,2414,28397,0.081765131,0.088252829,0,,,,0.080103359,0.060979283,0.099227436,0.148387097,0.133937232,0.162836961,0.085202154,0.080296281,0.090108027,0.072803079,0.068243247,0.077362911,,,,0.092857143,0.058861555,0.126852731,0.163,,,0.134,0.198,0.4,,,0.346,0.457,7,0.081888965,0.143,,,0.275,,,0.233,0.321,0.860770863,267389,310639,,,0.196697498,,,0.161513716,0.236053445,0.354700855,83,234,0.32252022,0.386835371,780.1,2453,314451,,,25.9200351,2363,91165,24.87493041,26.96513979,,,,,,,42.51875828,37.61659556,47.420921,43.02100646,40.89900551,45.1430074,10.17293998,9.23300828,11.11287168,,,,23.56202356,16.31738627,32.92556625,0.173824356,45761,263260,0.158334994,0.189313718,0.000788676,248,314451,,,1267.947581,0.000607757,193,317561,,,1645.393782,0.002053149,652,317561,,,487.0567485,2203,,,,,,,4402,2883,1851,0.38,,,,,,0.42,0.31,0.29,0.39,0.43,,,,,0.55,0.47,0.28,0.36,0.44,0.883395053,163406,184975,0.875964162,0.890825944,0.671018717,55712,83026,0.644839496,0.697197938,0.033559301,5495,163740,,,0.182,13333,,0.136723404,0.227276596,0.118987342,0,0.384515806,0.1875,0.069591453,0.305408548,0.361428342,0.27785501,0.445001673,0.258148818,0.228540328,0.287757308,0.062358437,0.046338785,0.078378089,4.996935774,122305,24476,4.67752458,5.316346968,0.286677056,20971,73152,0.259508343,0.31384577,8.904408,280,314451,,,82.51585097,1281,1552429,77.99709499,87.03460695,,,,,,,82.12203334,66.03581263,100.9419213,63.9845161,57.38400813,70.58502408,97.97605955,91.18666501,104.7654541,,,,6.4,,,,,1,,,,,0.192388553,22420,116535,0.179352167,0.205424939,0.162676704,0.149605226,0.175748182,0.031321062,0.026375322,0.036266803,0.011670314,0.008558866,0.014781761,0.78730939,119164,151356,0.778390392,0.796228387,0.691439323,0.565153673,0.817724972,0.649171271,0.582656736,0.715685805,0.740663468,0.715407524,0.765919411,0.776760478,0.75846104,0.795059916,0.806848339,0.794031142,0.819665536,0.103,,151356,0.093847997,0.112152003,74.01419011,,,73.69597214,74.33240808,,,,82.43093079,78.96185416,85.90000742,67.67347199,66.45616927,68.8907747,73.18753894,72.58804144,73.78703645,75.02685055,74.60972088,75.44398022,,,,541.5728771,4942,890262,526.1438715,557.0018826,,,,230.9959072,166.4815318,312.239361,914.80709,835.6336628,993.9805172,607.6700811,577.6399134,637.7002488,485.8727536,466.6441299,505.1013772,,,,60.2067477,212,352120,52.10211554,68.31137986,,,,,,,110.1869624,74.86669503,156.4015977,63.07611601,50.77455209,75.37767993,47.70928248,37.26134544,60.1787681,,,,5.144830503,146,28378,4.310283667,5.979377338,,,,,,,9.778911565,6.198991087,14.67316875,5.78364288,4.517073074,7.29527852,3.571428571,2.605024507,4.77885242,,,,,,,0.117,,,0.101,0.135,0.178,,,0.154,0.204,0.123,,,0.106,0.142,215.2,563,261580,,,0.143,44020,,,,0.081888965,22833.18202,278831,,,13.40722202,126,939792,11.0661779,15.74826615,,,,,,,16.53414301,8.253784616,29.58414904,8.397278124,5.62378895,12.05989212,16.72957258,13.30552555,20.7658107,,,,0.339,,,0.325,0.352,0.207332205,39435,190202,0.187076886,0.227587524,0.093520504,7195,76935,0.073265185,0.113775824,0.001750845,556,317561,,,571.1528777,0.922615453,3116.595,3378,,,0.042882931,974,22713,0.027696737,0.058069124,2.87585481,,,,,,3.38521409,2.380510678,2.663356695,3.338849779,3.102609076,,,,,,3.954216055,2.698697953,2.889505511,3.508375267,0.1216003,,,,,-399.096575,,,,,0.746725667,42019,56271,0.705229852,0.788221482,59138,,,55038.08511,63237.91489,45521,17140.91489,73901.08511,79458,66436.21277,92479.78723,42152,35241.3617,49062.6383,52432,49280.51064,55583.48936,71736,69257.70213,74214.29787,,,,,,0.593535861,31182,52536,,,47.41082255,,,,,0.250735568,,59138,,,6.068204614,121,19940,,,6.682075657,144,2155019,5.590669966,7.773481348,,,,,,,21.7130976,14.94629731,30.49326188,8.922209967,6.942011914,11.29162775,3.582860643,2.571122656,4.860555026,,,,18.05787883,275,1552429,15.85692243,20.25883523,17.71417566,,,,,,,11.26634319,5.402649479,20.71920626,11.39882343,8.698503136,14.67254527,22.61369314,19.26158767,25.96579862,,,,15.45964421,240,1552429,13.50372935,17.41555907,,,,,,,23.72414297,15.49739784,34.76136622,12.76145474,9.985052382,16.07094023,17.02334035,14.19329462,19.85338608,,,,16.56597923,357,2155019,14.84752063,18.28443784,,,,,,,24.34498822,17.1411184,33.5563594,16.80996081,13.92027187,19.69964975,15.81701894,13.51270621,18.12133167,,,,27.11864407,,29500,,,451,349,0.541003941,120817,223320,,,0.612,,,,,138.2594164,,,,,0.555894317,67644,121685,0.543091392,0.568697242,0.179339906,21045,117347,0.165547188,0.193132625,0.859440358,104581,121685,0.84917864,0.869702077,317561,,,,,0.233945604,74292,317561,,,0.131659744,41810,317561,,,0.070436861,22368,317561,,,0.012381873,3932,317561,,,0.024429952,7758,317561,,,0.001543011,490,317561,,,0.376277314,119491,317561,,,0.511432449,162411,317561,,,0.016654216,4860,291818,0.013403473,0.019904959,0.506255491,160767,317561,,,0.105205721,32681,310639,, -48,305,48305,TX,Lynn County,2024,1,12190.79546,130,16320,9173.287222,15208.30369,0,,,,2,,,,2,,,,2,15341.06134,10908.99429,20971.73587,,10040.43176,6215.185511,15347.8665,1,,,,2,,0.229,,,0.195,0.264,4.290700849,,,3.435363199,5.225195959,5.264954933,,,4.213366506,6.397660018,0.098566308,55,558,0.073833689,0.123298927,0,,,,,,,,,,0.12109375,0.081129816,0.161057684,0.066666667,0.037706144,0.09562719,,,,,,,0.185,,,0.149,0.224,0.403,,,0.322,0.487,6.1,0.150856169,0.15,,,0.31,,,0.257,0.365,0.441744103,2472,5596,,,0.168582161,,,0.135002764,0.206797199,0.3,3,10,0.129013968,0.476732101,351.6,20,5688,,,36.50190114,48,1315,26.9136204,48.39622523,,,,,,,,,,48.84318766,34.56434659,67.04109116,,,,,,,,,,0.221380471,1052,4752,0.195167705,0.247593237,0.001054852,6,5688,,,948,0.000174703,1,5724,,,5724,0.000524109,3,5724,,,1908,4524,,,,,,,,6292,3261,0.36,,,,,,,,0.23,0.41,0.28,,,,,,,,0.25,0.28,0.814067612,2986,3668,0.777308635,0.850826589,0.643908969,962,1494,0.553554175,0.734263763,0.035465925,102,2876,,,0.212,329,,0.133361702,0.290638298,,,,,,,,,,0.420844327,0.305668216,0.536020438,0.131771596,0.041330318,0.222212874,5.529186005,123898,22408,4.553484854,6.504887156,0.253429131,388,1531,0.171015563,0.3358427,12.30661041,7,5688,,,108.8435374,32,29400,74.44889902,153.6545989,,,,,,,,,,110.0998238,61.62203562,181.592916,108.6513649,62.1036429,176.4430096,,,,6.9,,,,,1,,,,,0.129545455,285,2200,0.088280516,0.170810393,0.09833795,0.053226502,0.143449398,0.019090909,0.001270825,0.036910993,0.031818182,0.007721133,0.055915231,0.842340512,2073,2461,0.798668797,0.886012227,,,,,,,,,,0.810490694,0.683161784,0.937819603,0.768134715,0.640040648,0.896228783,0.384,,2461,0.310406842,0.457593158,72.28853198,,,70.0370204,74.54004356,,,,,,,,,,69.61061957,66.29130237,72.92993677,74.28296134,70.99779836,77.56812432,,,,658.186934,130,16320,541.0505863,775.3232818,,,,,,,,,,858.0116547,660.7735248,1095.661728,516.9258574,388.3306136,674.476113,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.135,,,0.115,0.155,0.179,,,0.154,0.203,0.133,,,0.113,0.153,109.3,5,4576,,,0.15,840,,,,0.150856169,892.314238,5915,,,,,,,,,,,,,,,,,,,,,,,,,,0.353,,,0.341,0.364,0.252421118,808,3201,0.220250906,0.284591331,0.157862408,257,1628,0.11735177,0.198373046,0.000524109,3,5724,,,1908,,,,,,,,,,,2.98198337,,,,,,,,2.656003441,3.321622776,3.134004784,,,,,,,,2.786374321,3.453479307,0.127195304,,,,,-3875.207353,,,,,0.617939297,38683,62600,0.494480705,0.741397889,56754,,,49186.85106,64321.14894,,,,89375,12832.53192,165917.4681,,,,37500,22885.19149,52114.80851,73580,56504.76596,90655.23404,,,,,,0.470186335,757,1610,,,,,,,,0.261267928,,56754,,,5.540166205,2,361,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,36.73319456,15,40835,20.55929015,60.58581822,,,,,,,,,,,,,,,,,,,,,700,,,-888,7,0.549221557,2293,4175,,,0.44,,,,,10.731119,,,,,0.72333171,1485,2053,0.680852831,0.765810588,0.120698782,228,1889,0.069522246,0.171875319,0.830491963,1705,2053,0.795266951,0.865716975,5724,,,,,0.274458421,1571,5724,,,0.158280922,906,5724,,,0.022361985,128,5724,,,0.020964361,120,5724,,,0.005066387,29,5724,,,0.000349406,2,5724,,,0.444619147,2545,5724,,,0.511879804,2930,5724,,,0.030660827,161,5251,0.008561352,0.052760301,0.479734451,2746,5724,,,1,5596,5596,, -48,307,48307,TX,McCulloch County,2024,1,12441.25908,189,20983,9347.900156,15534.61801,0,,,,2,,,,2,,,,2,13670.58656,9223.487344,19515.61235,,11193.33814,7382.522373,15004.15392,,,,,2,,0.213,,,0.188,0.238,4.231661524,,,3.694197737,4.770732905,5.569220916,,,4.935376356,6.205990836,0.081314879,47,578,0.059032554,0.103597204,0,,,,,,,,,,,,,0.097058824,0.065591207,0.12852644,,,,,,,0.19,,,0.163,0.218,0.383,,,0.343,0.423,5.3,0.192027642,0.169,,,0.293,,,0.26,0.327,0.814547838,6215,7630,,,0.163857631,,,0.146473238,0.182995308,0.153846154,2,13,0.034991468,0.324991408,292,22,7533,,,34.3106675,55,1603,25.84749031,44.66004989,,,,,,,,,,41.32231405,27.87999177,58.99017272,29.8879203,19.14975449,44.47085628,,,,,,,0.245279689,1390,5667,0.216683945,0.273875434,0.000398248,3,7533,,,2511,0.000266773,2,7497,,,3748.5,0.00040016,3,7497,,,2499,2694,,,,,,,,1924,2335,0.32,,,,,,,,0.24,0.33,0.29,,,,,,,,0.2,0.3,0.798885794,4302,5385,0.736853307,0.860918281,0.519900498,836,1608,0.401195044,0.638605951,0.041891463,132,3151,,,0.301,458,,0.189,0.413,,,,,,,,,,0.075736325,0,0.208400698,0.192259675,0.044501908,0.340017443,3.858267717,98000,25400,2.696567962,5.019967471,0.219194313,370,1688,0.083098687,0.355289938,14.60241604,11,7533,,,99.27705936,39,39284,70.59569415,135.7150083,,,,,,,,,,85.0603155,42.46180303,152.1964005,109.4846113,72.15104875,159.2943613,,,,7.6,,,,,1,,,,,0.115873016,365,3150,0.061670726,0.170075306,0.080388979,0.037534906,0.123243052,0.017460318,0,0.042955189,0.022222222,0,0.051161198,0.790843525,2522,3189,0.729518244,0.852168805,,,,,,,,,,0.95292887,0.883825762,1,0.734494015,0.673419918,0.795568113,0.167,,3189,0.106082375,0.227917625,72.32966858,,,70.21425619,74.44508098,,,,,,,,,,70.90628284,67.49784804,74.31471765,73.16542987,70.56305533,75.76780442,,,,600.5037388,189,20983,506.0949713,694.9125062,,,,,,,,,,739.7855101,558.826024,960.6730192,550.9333169,439.0609856,662.8056483,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.132,,,0.118,0.146,0.182,,,0.167,0.199,0.119,,,0.108,0.129,171.2,11,6425,,,0.169,1300,,,,0.192027642,1590.564957,8283,,,,,,,,,,,,,,,,,,,,,,,,,,0.349,,,0.334,0.363,0.284529039,1166,4098,0.248784358,0.320273719,0.145268234,241,1659,0.105949085,0.184587383,0.00080032,6,7497,,,1249.5,0.953457447,89.625,94,,,,,,,,2.845798167,,,,,,,,2.68845417,3.021673171,2.922581451,,,,,,,,2.752223994,3.086801228,0.019989066,,,,,-3632.485,,,,,0.685130402,37750,55099,0.393134669,0.977126135,45915,,,39178.31915,52651.68085,,,,,,,,,,51531,26002.14894,77059.85106,54525,42069.17021,66980.82979,,,,,,0.677042802,870,1285,,,,,,,,0.298224981,,45915,,,5.813953488,2,344,,,,,,,,,,,,,,,,,,,,,,,,,,38.44005554,13,39284,19.86253763,67.14704112,33.09235312,,,,,,,,,,,,,,,,,,,30.5467875,12,39284,15.78397085,53.35909034,,,,,,,,,,,,,,,,,,,23.29874366,13,55797,12.40559975,39.84156123,,,,,,,,,,,,,,,,,,,,,700,,,-888,5,0.583857264,3436,5885,,,0.455,,,,,30.6522867,,,,,0.699623352,2229,3186,0.645648135,0.753598569,0.095238095,288,3024,0.041661507,0.148814683,0.870684244,2774,3186,0.82375146,0.917617027,7497,,,,,0.207549687,1556,7497,,,0.244764573,1835,7497,,,0.023876217,179,7497,,,0.013071895,98,7497,,,0.008536748,64,7497,,,0.00120048,9,7497,,,0.319727891,2397,7497,,,0.631852741,4737,7497,,,0.027681661,200,7225,0.008767814,0.046595508,0.498732827,3739,7497,,,0.359501966,2743,7630,, -48,309,48309,TX,McLennan County,2024,1,9084.096066,3878,730854,8673.432076,9494.760056,0,,,,2,,,,2,14923.06755,13515.71656,16330.41855,,8231.261144,7487.287835,8975.234453,,8186.403488,7656.591755,8716.215221,,,,,2,,0.204,,,0.176,0.235,4.138622079,,,3.279819914,4.998956734,5.613075063,,,4.578008088,6.659977457,0.087646682,2054,23435,0.084026146,0.091267218,0,,,,0.097345133,0.065789695,0.12890057,0.157949791,0.146390647,0.169508934,0.07779419,0.07196969,0.08361869,0.069297671,0.06448406,0.074111283,,,,0.095238095,0.065645526,0.124830665,0.172,,,0.139,0.207,0.392,,,0.319,0.465,6,0.168026403,0.144,,,0.28,,,0.231,0.332,0.67697704,176406,260579,,,0.173986034,,,0.138858797,0.212598777,0.188172043,35,186,0.152149591,0.226680447,633.2,1666,263115,,,23.87192651,1767,74020,22.75884936,24.98500365,,,,,,,42.36648424,38.44766414,46.28530434,32.90918888,30.62009819,35.19827956,13.61762616,12.39810392,14.83714839,,,,18.7680462,13.34591554,25.65653699,0.195280449,42221,216207,0.178599598,0.2119613,0.000767725,202,263115,,,1302.549505,0.000554648,148,266836,,,1802.945946,0.002001229,534,266836,,,499.6928839,2842,,,,,,1479,3825,3201,2726,0.48,,,,,,0.45,0.46,0.35,0.49,0.46,,,,,0.58,0.42,0.35,0.38,0.48,0.869255195,138242,159035,0.861909801,0.87660059,0.630669177,40535,64273,0.600673506,0.660664847,0.035779246,4544,127001,,,0.193,12032,,0.146531915,0.239468085,0.121771218,0,0.328495836,0.233333333,0,0.501237136,0.50468241,0.438931092,0.570433729,0.262353692,0.224364238,0.300343147,0.088745271,0.068134822,0.10935572,5.275036285,123573,23426,4.863545911,5.686526658,0.307466893,19201,62449,0.280583636,0.33435015,11.02179655,290,263115,,,67.14208136,863,1285334,62.66241702,71.6217457,,,,,,,81.2922121,68.10574106,94.47868313,46.39956655,39.23224223,53.56689088,76.03675625,69.6293683,82.4441442,,,,9.3,,,,,1,,,,,0.18256399,16690,91420,0.168682341,0.19644564,0.153147126,0.140128122,0.16616613,0.029862175,0.02466203,0.035062319,0.008039816,0.005810021,0.010269612,0.799984739,94359,117951,0.782951266,0.817018213,0.85237484,0.524454175,1,0.651223321,0.570348876,0.732097767,0.782931476,0.731470292,0.83439266,0.786686103,0.750776682,0.822595524,0.813132285,0.798110388,0.828154183,0.182,,117951,0.166419255,0.197580745,75.7792182,,,75.42662317,76.13181322,,,,85.78886728,80.48787148,91.08986308,70.51651334,69.53840247,71.4946242,78.47467017,77.43028364,79.5190567,76.38999551,75.94882175,76.83116927,,,,470.3147603,3878,730854,455.0815852,485.5479354,,,,,,,730.3633964,677.8797216,782.8470713,415.3293168,382.7236308,447.9350028,440.8448943,422.1238785,459.56591,,,,58.32070283,172,294921,49.60475551,67.03665016,,,,,,,91.95825095,65.69632269,125.2210377,60.8137992,47.0333879,77.37006343,50.08686941,38.57299265,63.95981406,,,,6.29861346,149,23656,5.28724852,7.309978399,,,,,,,10.28013364,7.344278191,13.99862425,5.880191106,4.335588733,7.796280311,5.262186115,3.985528376,6.817772471,,,,,,,0.126,,,0.109,0.145,0.18,,,0.156,0.206,0.12,,,0.103,0.139,237.7,517,217481,,,0.144,37070,,,,0.168026403,39470.41017,234906,,,12.05950725,94,779468,9.745309416,14.75778271,,,,,,,16.60470651,9.84100143,26.24259501,7.529518064,4.303770149,12.22746561,13.27922244,10.0575534,17.20477293,,,,0.375,,,0.363,0.388,0.234396355,36015,153650,0.212949547,0.255843164,0.106295981,6993,65788,0.083657683,0.128934279,0.000940653,251,266836,,,1063.091634,0.912926136,3374.175,3696,,,0.074986465,1385,18470,0.052277643,0.097695286,2.827305431,,,,,,3.742499575,2.377732396,2.647708673,3.175672096,2.993791182,,,,,,4.186635086,2.576305464,2.8339055,3.325811013,0.187570458,,,,,-2399.276254,,,,,0.780566055,42334,54235,0.730631696,0.830500415,63160,,,58641.87234,67678.12766,115032,95995.57447,134068.4255,63373,39166.70213,87579.29787,34336,28862.29787,39809.70213,48863,45591.17021,52134.82979,74683,70801.12766,78564.87234,,,,,,0.637014427,29009,45539,,,49.31080095,,,,,0.21630779,,63160,,,5.724197745,99,17295,,,5.789968065,103,1778939,4.671783155,6.908152976,,,,,,,18.82153183,13.82935365,25.02864731,3.586475191,2.089253965,5.742294208,3.531052072,2.459507146,4.910838652,,,,15.41821946,192,1285334,13.18029055,17.65614837,14.93775159,,,,,,,9.178650149,5.018053448,15.40021531,9.219974367,6.220677988,13.16208671,19.15653743,15.85804404,22.45503082,,,,14.8599508,191,1285334,12.75250332,16.96739827,,,,,,,25.0558188,18.27588616,33.52665688,8.069489835,5.362117393,11.66265957,16.16308127,13.20893968,19.11722287,,,,13.49118773,240,1778939,11.78431698,15.19805847,,,,,,,16.41878309,11.78240222,22.27393321,9.915549058,7.285572489,13.18557822,14.8304187,12.43296176,17.22787565,,,,15.51020408,,24500,,,177,203,0.551562456,97872,177445,,,0.599,,,,,101.8616342,,,,,0.595725641,56585,94985,0.5854184,0.606032882,0.164398136,14989,91175,0.150172818,0.178623453,0.853903248,81108,94985,0.842274931,0.865531565,266836,,,,,0.237655339,63415,266836,,,0.151651202,40466,266836,,,0.138096059,36849,266836,,,0.011250356,3002,266836,,,0.019109116,5099,266836,,,0.001206734,322,266836,,,0.275772385,73586,266836,,,0.546035767,145702,266836,,,0.037189338,9080,244156,0.032591731,0.041786945,0.508829393,135774,266836,,,0.240218897,62596,260579,, -48,311,48311,TX,McMullen County,2024,0,,,,,,2,,,,2,,,,2,,,,2,,,,2,,,,2,,,,2,,0.227,,,0.197,0.258,4.237814137,,,3.409698474,5.129706386,5.300539423,,,4.316048427,6.317019332,,,,,,0,,,,,,,,,,,,,,,,,,,,,,0.185,,,0.153,0.22,0.405,,,0.323,0.494,6.1,0.253437579,0.099,,,0.316,,,0.264,0.369,0.151666667,91,600,,,0.150825379,,,0.120176341,0.187368374,0,0,4,0,0.360186253,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.213656388,97,454,0.185060643,0.242252132,0,0,608,,,-608,0,0,576,,,-576,0.001736111,1,576,,,576,3974,,,,,,,,,,0.22,,,,,,,,,0.27,0.22,,,,,,,,,0.24,0.888888889,384,432,0.820209901,0.957567877,0.452941177,77,170,0.094345933,0.811536421,0.017738359,16,902,,,0.19,23,,0.119702128,0.260297872,,,,,,,,,,0.245283019,0,0.511557186,,,,7.109071467,119667,16833,0,15.26271277,0.497630332,105,211,0,1,0,0,608,,,,,,,,,,,,,,,,,,,,,,,,,,9.1,,,,,0,,,,,0.147826087,34,230,0.012236066,0.283416108,0.044247788,0,0.276651497,0.07826087,0,0.190188087,0.043478261,0,0.140710886,0.684210526,169,247,0.564846063,0.80357499,,,,,,,,,,,,,,,,0.379,,247,0.116431319,0.641568681,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.134,,,0.117,0.152,0.177,,,0.154,0.2,0.137,,,0.118,0.156,0,0,526,,,0.099,70,,,,0.253437579,179.1803682,707,,,,,,,,,,,,,,,,,,,,,,,,,,0.353,,,0.34,0.366,0.22392638,73,326,0.190564678,0.257288083,0.187969925,25,133,0.134352904,0.241586946,0.001736111,1,576,,,576,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9762.404,,,,,0.613835263,33036,53819,0.402276244,0.825394281,67525,,,56526.3617,78523.6383,,,,,,,,,,41944,6862.978723,77025.02128,65750,37229.31915,94270.68085,,,,,,0.275618375,78,283,,,,,,,,0.251062569,,67525,,,20,1,50,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,100,,,-888,0,1,516,475,,,0.305,,,,,0.160447357,,,,,0.861386139,174,202,0.770509883,0.952262395,0.148148148,28,189,0,0.490795217,0.762376238,154,202,0.670775249,0.853977226,576,,,,,0.21875,126,576,,,0.234375,135,576,,,0.026041667,15,576,,,0.006944444,4,576,,,0.006944444,4,576,,,0,0,576,,,0.451388889,260,576,,,0.498263889,287,576,,,0.029032258,18,620,0,0.150934246,0.473958333,273,576,,,1,600,600,, -48,313,48313,TX,Madison County,2024,1,10962.41534,227,39520,9006.558847,12918.27183,0,,,,2,,,,2,11768.97997,7996.450894,16705.12763,,,,,2,13208.00884,10146.1977,16269.81997,,,,,2,,0.217,,,0.19,0.247,4.158580768,,,3.479025246,4.94294915,5.409792195,,,4.296552286,6.609903517,0.080267559,96,1196,0.064868603,0.095666514,0,,,,,,,0.101123596,0.056831899,0.145415292,0.058201058,0.034598737,0.081803379,0.085621971,0.063579197,0.107664745,,,,,,,0.199,,,0.166,0.237,0.391,,,0.307,0.48,6.5,0.133220061,0.139,,,0.294,,,0.245,0.346,0.24057971,3237,13455,,,0.19348346,,,0.153734607,0.237255417,0.103448276,3,29,0.031854594,0.210504629,386.4,53,13718,,,41.59196845,116,2789,34.02300249,49.1609344,,,,,,,63.82978723,43.93748854,89.64075294,48.30917874,34.51278556,65.78339005,28.8248337,20.49727457,39.40449658,,,,,,,0.240742717,2256,9371,0.213338462,0.268146972,0.000218691,3,13718,,,4572.666667,0.000219603,3,13661,,,4553.666667,0.000219603,3,13661,,,4553.666667,3413,,,,,,,10015,,2632,0.26,,,,,,,0.21,0.16,0.28,0.37,,,,,,,0.36,0.23,0.38,0.789133943,7335,9295,0.746101249,0.832166637,0.443771044,1977,4455,0.371104899,0.516437189,0.043239823,205,4741,,,0.213,635,,0.129595745,0.296404255,,,,,,,0.142394822,0,0.337139744,0.124713959,0,0.260006467,0.135211268,0.066214667,0.204207869,4.716764205,113641,24093,3.378112815,6.055415595,0.209737828,616,2937,0.124159582,0.295316074,10.20556933,14,13718,,,83.01323991,59,71073,63.19352445,107.0810313,,,,,,,,,,,,,109.1249221,78.64764532,147.5051933,,,,9,,,,,1,,,,,0.153388823,645,4205,0.122547652,0.184229993,0.079422383,0.046799783,0.112044983,0.059453032,0.030577889,0.088328175,0.023781213,0.007604957,0.039957469,0.789059174,3707,4698,0.716118847,0.861999502,,,,,,,,,,0.685844058,0.512415911,0.859272205,0.770219826,0.652542971,0.887896681,0.369,,4698,0.28402751,0.45397249,74.22418813,,,72.699358,75.74901826,,,,,,,72.55942905,69.00754233,76.11131577,100.9863226,54.13276992,147.8398752,72.63603507,70.58300271,74.68906743,,,,521.3059641,227,39520,451.7970871,590.814841,,,,,,,676.6995086,493.589265,905.4771836,,,,584.1326084,486.7037971,681.5614198,,,,95.51098376,13,13611,50.85557631,163.3266911,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.131,,,0.114,0.149,0.176,,,0.154,0.2,0.121,,,0.104,0.14,421.5,49,11626,,,0.139,1890,,,,0.133220061,1820.318909,13664,,,,,,,,,,,,,,,,,,,,,,,,,,0.369,,,0.357,0.381,0.293138011,1901,6485,0.25739333,0.328882692,0.125123477,380,3037,0.088187307,0.162059647,0.000439207,6,13661,,,2276.833333,0.96402439,158.1,164,,,,,,,,2.723203442,,,,,,,2.295473441,2.484294509,3.02909322,2.872321465,,,,,,,2.455309522,2.83679508,3.076547475,0.026133895,,,,,-3339.5375,,,,,0.573927203,29959,52200,0.355586538,0.792267869,53906,,,46791.61702,61020.38298,,,,122905,29748.40426,216061.5957,54135,12534.14894,95735.85106,68145,54094.95745,82195.04255,66930,59310.42553,74549.57447,,,,,,0.722854973,1904,2634,,,51.01143729,,,,,0.325195711,,53906,,,8.45410628,7,828,,,,,,,,,,,,,,,,,,,,,,,,,,14.24812787,11,71073,7.112614097,25.4938365,15.47704473,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,33.29129887,33,99125,22.91619831,46.75336118,,,,,,,,,,,,,44.4403296,28.47375772,66.1236878,,,,,,1300,,,-888,11,0.532462312,5298,9950,,,0.44,,,,,18.94565479,,,,,0.713305562,2911,4081,0.647407278,0.779203847,0.099260824,376,3788,0.051969669,0.146551978,0.79122764,3229,4081,0.728180543,0.854274738,13661,,,,,0.221067272,3020,13661,,,0.155113096,2119,13661,,,0.181172681,2475,13661,,,0.012590586,172,13661,,,0.012297782,168,13661,,,0.000951614,13,13661,,,0.25876583,3535,13661,,,0.528658224,7222,13661,,,0.046117647,588,12750,0.025758893,0.066476401,0.43378962,5926,13661,,,1,13455,13455,, -48,315,48315,TX,Marion County,2024,1,13161.07239,297,26178,10498.78483,15823.35994,0,,,,2,,,,2,14243.52974,8816.969402,21772.74823,1,,,,2,13863.8616,10478.9224,17248.8008,,,,,2,,0.215,,,0.188,0.246,4.365272769,,,3.520282792,5.301705647,5.80525466,,,4.755805117,6.923388769,0.10321489,61,591,0.078686011,0.127743769,0,,,,,,,0.221311475,0.147646676,0.294976275,,,,0.076190476,0.050817408,0.101563544,,,,,,,0.218,,,0.18,0.259,0.398,,,0.315,0.487,7,0.028902453,0.166,,,0.289,,,0.242,0.342,0.506323908,4924,9725,,,0.150953725,,,0.119229344,0.187959093,0.16,4,25,0.067364287,0.277512739,279.9,27,9645,,,28.04878049,46,1640,20.53523257,37.41314251,,,,,,,23.14814815,11.1004368,42.57026862,,,,34.16149068,23.51519832,47.97543403,,,,,,,0.214583633,1492,6953,0.188370867,0.240796399,,0,9645,,,,0.000104603,1,9560,,,9560,0.000104603,1,9560,,,9560,3473,,,,,,,2533,,3220,0.28,,,,,,,0.33,,0.27,0.33,,,,,,,0.3,,0.33,0.867413245,6274,7233,0.827699881,0.907126609,0.479384277,872,1819,0.360822153,0.597946401,0.0496673,209,4208,,,0.316,529,,0.190893617,0.441106383,,,,,,,0.291666667,0.121551546,0.461781788,,,,0.255454546,0.15692255,0.353986541,4.425424233,89190,20154,3.425658137,5.42519033,0.352799518,586,1661,0.217463446,0.488135591,8.294453085,8,9645,,,113.2434127,56,49451,85.54285693,147.0559908,,,,,,,127.6386843,67.96222377,218.2660375,,,,122.7484228,88.83364224,165.34132,,,,9.4,,,,,1,,,,,0.120176406,545,4535,0.074864765,0.165488047,0.096188341,0.052105028,0.140271654,0.018743109,0.001852813,0.035633406,0.011025358,0,0.025544865,0.857312723,2884,3364,0.791490374,0.923135072,,,,,,,,,,,,,0.727207466,0.646426342,0.80798859,0.573,,3364,0.463066138,0.682933862,72.34280939,,,70.52976679,74.15585199,,,,,,,71.79725857,67.90440545,75.69011168,,,,71.50335261,69.2093504,73.79735481,,,,671.2361658,297,26178,582.8763302,759.5960015,,,,,,,696.2305845,503.8655262,937.8180283,,,,701.4504033,594.5794845,808.3213222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.136,,,0.119,0.156,0.196,,,0.171,0.222,0.123,,,0.106,0.142,330.7,28,8466,,,0.166,1620,,,,0.028902453,304.8052711,10546,,,,,,,,,,,,,,,,,,,,,,,,,,0.376,,,0.362,0.389,0.244828241,1290,5269,0.211466539,0.278189943,0.122955443,218,1773,0.088402251,0.157508634,0.000313808,3,9560,,,3186.666667,0.975,78,80,,,0.298474946,137,459,0.101173805,0.495776087,2.762383008,,,,,,,2.559777311,,2.873146764,2.555886804,,,,,,,2.195002311,,2.894287298,0.015116277,,,,,-12205.69,,,,,0.528996418,30567,57783,0.41749662,0.640496215,47720,,,41500.42553,53939.57447,,,,66406,8380.468085,124431.5319,22254,324.6382979,44183.3617,,,,54682,49644.38298,59719.61702,,,,,,0.738607051,859,1163,,,43.4240632,,,,,0.293880972,,47720,,,4.115226337,2,486,,,,,,,,,,,,,,,,,,,,,,,,,,23.05002901,10,49451,10.53994103,43.75613502,20.22203798,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,37.27171077,26,69758,24.34711892,54.61169197,,,,,,,,,,,,,36.47046905,21.61471134,57.63906447,,,,,,800,,,-888,7,0.608,4864,8000,,,0.43,,,,,11.92420943,,,,,0.776033881,3115,4014,0.755409574,0.796658189,0.082736675,312,3771,0.045328205,0.120145145,0.762331839,3060,4014,0.730100407,0.794563271,9560,,,,,0.17709205,1693,9560,,,0.275209205,2631,9560,,,0.19790795,1892,9560,,,0.012029289,115,9560,,,0.010564854,101,9560,,,0.000627615,6,9560,,,0.048640167,465,9560,,,0.705648536,6746,9560,,,0.012116663,113,9326,0,0.026528858,0.508995816,4866,9560,,,1,9725,9725,, -48,317,48317,TX,Martin County,2024,1,11229.17727,93,16010,8386.486687,14725.57202,0,,,,2,,,,2,,,,2,11889.01534,7900.164349,17182.93738,,10837.38556,6869.9728,16261.39944,1,,,,2,,0.195,,,0.167,0.227,3.871491219,,,3.085266759,4.729716506,5.152439114,,,4.0682576,6.269578791,0.093103448,54,580,0.069454936,0.116751961,0,,,,,,,,,,0.100946372,0.067782549,0.134110196,0.072580645,0.040289851,0.104871439,,,,,,,0.159,,,0.128,0.196,0.363,,,0.286,0.446,7.5,0.067659561,0.125,,,0.275,,,0.228,0.326,0.03685316,193,5237,,,0.197257436,,,0.158305731,0.240992802,0.119047619,5,42,0.053633678,0.205530428,249.5,13,5211,,,35.48387097,55,1550,26.73130772,46.18713547,,,,,,,,,,44.15584416,30.57920569,61.70336636,26.76056338,16.11160727,41.78993461,,,,,,,0.239016964,1099,4598,0.211612709,0.266421219,0.000191902,1,5211,,,5211,0.000191681,1,5217,,,5217,,0,5217,,,,3312,,,,,,,,2501,2980,0.29,,,,,,,,0.27,0.29,0.25,,,,,,,,0.25,0.26,0.842000663,2542,3019,0.792035943,0.891965382,0.446866485,492,1101,0.310997963,0.582735007,0.031093638,87,2798,,,0.184,308,,0.118468085,0.249531915,,,,,,,,,,0.337528604,0.233072971,0.441984238,0.180743243,0.049907026,0.311579461,4.020541331,137402,34175,1.909905986,6.131176677,0.142671855,220,1542,0.046803968,0.238539742,15.3521397,8,5211,,,110.0188097,31,28177,74.75244341,156.1629184,,,,,,,,,,89.29900283,46.14209785,155.9873869,138.4032634,83.32780568,216.1338401,,,,7.5,,,,,1,,,,,0.139534884,240,1720,0.072426142,0.206643626,0.056547619,0.001547574,0.111547664,0.081395349,0.028432934,0.134357764,0.005813954,0,0.022720953,0.850183824,1850,2176,0.784015362,0.916352285,,,,,,,,,,0.911880409,0.799734894,1,0.917412251,0.816928088,1,0.25,,2176,0.149074451,0.350925549,72.99653435,,,70.56251099,75.43055771,,,,,,,,,,71.19556146,67.93010271,74.46102021,73.66782316,70.0349349,77.30071143,,,,573.9472831,93,16010,462.10655,704.6800802,,,,,,,,,,583.9894543,411.1824696,804.9525362,567.9778328,420.1931275,750.8968162,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.119,,,0.103,0.137,0.165,,,0.143,0.188,0.112,,,0.096,0.129,,,,,,0.125,650,,,,0.067659561,324.6982317,4799,,,,,,,,,,,,,,,,,,,,,,,,,,0.342,,,0.327,0.356,0.258119658,755,2925,0.224757956,0.29148136,0.206659013,360,1742,0.158999438,0.254318587,0.000766724,4,5217,,,1304.25,,,,,,,,,,,2.540447914,,,,,,,,2.238726989,3.052956789,2.882762585,,,,,,,,2.714765284,3.301315495,0.068956033,,,,,4616.201,,,,,0.982195093,58088,59141,0.738077686,1.2263125,73315,,,62138.82979,84491.17021,,,,,,,,,,58188,52299.65957,64076.34043,97219,66945.6383,127492.3617,,,,,,0.496301775,671,1352,,,,,,,,0.230293937,,73315,,,3.003003003,1,333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,800,,,0,-888,0.590971272,2160,3655,,,0.343,,,,,19.97875628,,,,,0.608263598,1163,1912,0.531298008,0.685229189,0.066749844,107,1603,0,0.135145844,0.751569038,1437,1912,0.675040556,0.828097519,5217,,,,,0.323749281,1689,5217,,,0.115200307,601,5217,,,0.019743147,103,5217,,,0.019168104,100,5217,,,0.005942112,31,5217,,,0.000766724,4,5217,,,0.496453901,2590,5217,,,0.461951313,2410,5217,,,0.029417773,144,4895,0.004008667,0.05482688,0.493578685,2575,5217,,,1,5237,5237,, -48,319,48319,TX,Mason County,2024,1,5875.374161,56,10789,3482.11909,9285.624201,1,,,,2,,,,2,,,,2,,,,2,5163.064437,2475.890084,9495.059326,1,,,,2,,0.15,,,0.124,0.179,3.358400273,,,2.673888234,4.116075267,4.910815092,,,3.926197078,5.968959615,0.042016807,10,238,0.016527498,0.067506116,1,,,,,,,,,,,,,,,,,,,,,,0.136,,,0.105,0.172,0.335,,,0.258,0.418,8.1,0.027979767,0.116,,,0.218,,,0.177,0.269,0.720212497,2847,3953,,,0.170479197,,,0.135435688,0.207161675,0.3,3,10,0.129013968,0.476732101,,,,,,12.28501229,10,814,5.891140904,22.59257499,,,,,,,,,,,,,,,,,,,,,,0.286966046,786,2739,0.255987323,0.317944769,,0,3943,,,,0.00025113,1,3982,,,3982,0.00050226,2,3982,,,1991,1000,,,,,,,,,662,0.42,,,,,,,,0.19,0.45,0.37,,,,,,,,0.28,0.39,0.849042976,2351,2769,0.798699647,0.899386304,0.796725784,584,733,0.620480747,0.972970822,0.033388068,61,1827,,,0.212,161,,0.132170213,0.291829787,,,,,,,,,,,,,,,,4.504123813,137074,30433,3.063598409,5.944649217,0.061085973,54,884,0,0.13711642,20.28911996,8,3943,,,52.22427954,11,21063,26.07017219,93.44366194,,,,,,,,,,,,,,,,,,,7.6,,,,,1,,,,,0.095808383,160,1670,0.042642319,0.148974448,0.087009063,0.029074349,0.144943778,0,0,0.019977067,0.00239521,0,0.014667406,0.796807858,1298,1629,0.752380232,0.841235483,,,,,,,,,,,,,0.737689394,0.607215078,0.86816371,0.346,,1629,0.224666829,0.467333171,80.52629899,,,77.901572,83.15102598,,,,,,,,,,,,,80.88786455,77.91093901,83.8647901,,,,309.8150539,56,10789,223.2874399,418.77995,,,,,,,,,,,,,280.7905854,186.5833048,405.8205754,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.101,,,0.085,0.119,0.156,,,0.133,0.18,0.089,,,0.075,0.104,,,,,,0.116,460,,,,0.027979767,112.2548234,4012,,,,,,,,,,,,,,,,,,,,,,,,,,0.325,,,0.309,0.34,0.312342569,620,1985,0.27421491,0.350470229,0.223057644,178,798,0.168249134,0.277866155,0.00075339,3,3982,,,1327.333333,,,,,,,,,,,3.265273343,,,,,,,,,3.441867422,3.610647061,,,,,,,,,3.798338912,0.007340603,,,,,-986.998,,,,,0.771955907,42578,55156,0.454338666,1.089573148,59129,,,50289.34043,67968.65957,,,,,,,,,,43750,22825.06383,64674.93617,80361,71996.74468,88725.25532,,,,,,0.504611331,383,759,,,,,,,,0.231578413,,59129,,,7.142857143,2,280,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,400,,,-888,5,0.824666667,2474,3000,,,0.421,,,,,0.001829378,,,,,0.800526662,1216,1519,0.751869028,0.849184297,0.087617668,121,1381,0.015278586,0.159956751,0.894009217,1358,1519,0.759511565,1,3982,,,,,0.192616776,767,3982,,,0.306127574,1219,3982,,,0.004771472,19,3982,,,0.009291813,37,3982,,,0.002762431,11,3982,,,0.002762431,11,3982,,,0.26368659,1050,3982,,,0.715218483,2848,3982,,,0.03371097,122,3619,0.001056253,0.066365687,0.487443496,1941,3982,,,1,3953,3953,, -48,321,48321,TX,Matagorda County,2024,1,10744.43575,706,102030,9546.237766,11942.63374,0,,,,2,,,,2,16907.96708,12236.37962,22774.9207,,9693.006526,8049.008131,11337.00492,,10447.94584,8547.348313,12348.54338,,,,,2,,0.232,,,0.201,0.266,4.293494657,,,3.441694166,5.230415876,5.392836673,,,4.31676802,6.599884391,0.087004104,318,3655,0.07786683,0.096141378,0,,,,,,,0.149122807,0.111370066,0.186875549,0.07988018,0.068007266,0.091753093,0.08,0.064807581,0.095192419,,,,,,,0.183,,,0.15,0.218,0.406,,,0.325,0.495,5.7,0.142575641,0.174,,,0.313,,,0.26,0.369,0.722796856,26205,36255,,,0.166067893,,,0.131235293,0.205873668,0.163265306,8,49,0.095276894,0.243331948,396.2,144,36344,,,41.86976628,335,8001,37.38609046,46.3534421,,,,,,,36.98811096,24.57833112,53.45811882,51.38159397,44.66773236,58.09545558,28.29457364,22.17842904,35.57617837,,,,,,,0.232065089,6874,29621,0.207043812,0.257086366,0.000357693,13,36344,,,2795.692308,0.000359862,13,36125,,,2778.846154,0.000553633,20,36125,,,1806.25,4347,,,,,,,5532,6092,3778,0.3,,,,,,0.23,0.24,0.24,0.32,0.34,,,,,,0.45,0.28,0.29,0.34,0.814780562,19382,23788,0.788697749,0.840863374,0.555130513,4934,8888,0.467910866,0.642350161,0.059008746,1012,17150,,,0.272,2529,,0.193361702,0.350638298,,,,,,,0.642276423,0.451522005,0.83303084,0.386901382,0.280772743,0.49303002,0.103063063,0.037441001,0.168685126,6.456350987,115078,17824,5.264067101,7.648634874,0.341023176,3193,9363,0.246902684,0.435143669,11.83138895,43,36344,,,90.65886054,166,183104,76.86733577,104.4503853,,,,,,,138.5410561,90.4996175,202.9947465,50.05005005,35.75648954,68.15396267,120.6931599,97.64797371,147.5411292,,,,9.3,,,,,1,,,,,0.177697842,2470,13900,0.139590614,0.215805069,0.137994144,0.102065503,0.173922784,0.029856115,0.014324594,0.045387636,0.017266187,0.002495542,0.032036833,0.842083842,12414,14742,0.802922188,0.881245496,,,,,,,,,,0.822315243,0.754082772,0.890547713,0.838676845,0.775025462,0.902328228,0.319,,14742,0.261363434,0.376636566,74.14374608,,,73.22410288,75.06338929,,,,,,,68.99136138,65.74106297,72.24165978,76.35156491,74.46730249,78.23582734,74.09030681,72.72433003,75.45628359,,,,541.7430016,706,102030,499.4804603,584.0055429,,,,,,,732.9240929,582.0475241,910.9577268,503.652598,434.9998086,572.3053873,539.4764574,477.590524,601.3623908,,,,77.66801777,32,41201,53.12486666,109.6440671,,,,,,,,,,73.0052392,42.52824216,116.8884601,79.39658595,38.07374908,146.0131484,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.136,,,0.118,0.156,0.179,,,0.156,0.204,0.134,,,0.116,0.155,284.8,84,29499,,,0.174,6320,,,,0.142575641,5232.811163,36702,,,,,,,,,,,,,,,,,,,,,,,,,,0.361,,,0.349,0.374,0.279714778,5688,20335,0.247544565,0.31188499,0.132449651,1289,9732,0.097896459,0.167002842,0.000802768,29,36125,,,1245.689655,0.934043659,449.275,481,,,,,,,,2.733397518,,,,,,,2.426540431,2.553603632,3.224094076,2.971253208,,,,,,,2.599064935,2.829110822,3.34968627,0.08470078,,,,,-5258.3868,,,,,0.73171561,40889,55881,0.533224871,0.930206349,58380,,,52343.91489,64416.08511,,,,,,,29464,22245.95745,36682.04255,50456,40604.76596,60307.23404,74419,62645.89362,86192.10638,,,,,,0.708386729,4975,7023,,,60.31226534,,,,,0.329325111,,58380,,,3.341997772,9,2693,,,8.947292666,23,257061,5.671816043,13.42533208,,,,,,,37.63784862,18.04881138,69.21734368,,,,,,,,,,12.82646292,24,183104,8.038276025,19.41941901,13.10730514,,,,,,,,,,,,,18.01875711,9.594229282,30.81262342,,,,18.02254457,33,183104,12.40589041,25.31035328,,,,,,,58.61352374,29.25965987,104.8757847,,,,17.7863604,9.723968742,29.8424905,,,,25.2858271,65,257061,19.51506753,32.22886234,,,,,,,45.16541835,23.33763073,78.89489649,21.71179403,13.91115611,32.30542849,24.15350897,15.91731461,35.14208744,,,,8.918918919,,3700,,,21,12,0.5433208,13727,25265,,,0.391,,,,,36.40791621,,,,,0.69395296,9766,14073,0.662342667,0.725563252,0.156732726,2080,13271,0.116637455,0.196827996,0.75129681,10573,14073,0.714043367,0.788550252,36125,,,,,0.260484429,9410,36125,,,0.178629758,6453,36125,,,0.098020761,3541,36125,,,0.014311419,517,36125,,,0.019487889,704,36125,,,0.001688581,61,36125,,,0.45467128,16425,36125,,,0.414366782,14969,36125,,,0.035313384,1186,33585,0.022178722,0.048448046,0.496802768,17947,36125,,,0.467356227,16944,36255,, -48,323,48323,TX,Maverick County,2024,1,9885.889283,892,166477,9027.062943,10744.71562,0,37805.37305,22761.30419,59037.77305,1,,,,2,,,,2,9634.663794,8772.621011,10496.70658,,14475.12025,7225.927877,25899.98857,1,,,,2,,0.307,,,0.259,0.357,4.687307918,,,3.728256453,5.762065662,5.054338607,,,3.962259509,6.267895041,0.083066202,596,7175,0.076680241,0.089452163,0,,,,,,,,,,0.082169866,0.075678657,0.088661075,0.133333333,0.07598978,0.190676887,,,,,,,0.171,,,0.135,0.214,0.431,,,0.346,0.52,4.8,0.180299398,0.195,,,0.397,,,0.334,0.468,0.597457115,34585,57887,,,0.167789984,,,0.132139269,0.207280458,0.2,5,25,0.10034726,0.316172705,354.8,206,58056,,,45.85868039,784,17096,42.64857277,49.06878802,84.11214953,49.85019056,132.9334592,,,,,,,46.90189329,43.57388671,50.22989987,,,,,,,,,,0.278749017,13824,49593,0.252536251,0.304961783,0.000241147,14,58056,,,4146.857143,0.000224746,13,57843,,,4449.461539,0.000345764,20,57843,,,2892.15,2803,,,,,,,,2894,,0.18,,,,,,,,0.18,0.2,0.23,,,,,,,,0.23,0.28,0.646247024,21447,33187,0.609409141,0.683084908,0.52156999,7508,14395,0.448000708,0.595139271,0.079171117,1853,23405,,,0.307,5412,,0.211680851,0.402319149,0.05,0,0.107779616,,,,,,,0.319042578,0.265760009,0.372325148,0.377659575,0.072749338,0.682569811,6.578410279,107011,16267,4.950880315,8.205940242,0.379099966,6773,17866,0.294302783,0.463897149,2.583712278,15,58056,,,37.34705695,109,291857,30.33574636,44.35836754,,,,,,,,,,37.46870103,30.26744853,44.66995352,,,,,,,7.4,,,,,0,,,,,0.24842295,4135,16645,0.201031093,0.295814807,0.148689823,0.109312898,0.188066749,0.105136678,0.079539636,0.130733719,0.014418744,0.004020048,0.024817441,0.794223179,17708,22296,0.750058388,0.83838797,,,,,,,,,,0.794751048,0.744157469,0.845344628,,,,0.196,,22296,0.155700173,0.236299827,73.75411495,,,73.05004666,74.45818324,,,,,,,,,,73.85632944,73.14561404,74.56704484,,,,,,,548.459268,892,166477,512.1203868,584.7981491,2003.464154,1255.560319,3033.268806,,,,,,,544.6306359,507.4834918,581.7777801,514.5453638,332.9866295,759.5704603,,,,61.07669488,49,80227,45.1848751,80.74662968,,,,,,,,,,55.01126421,39.64728052,74.35924815,,,,,,,6.541291905,48,7338,4.823032274,8.672804059,,,,,,,,,,5.973545726,4.305206334,8.074498475,,,,,,,,,,0.156,,,0.132,0.182,0.173,,,0.148,0.201,0.175,,,0.152,0.203,208.7,94,45039,,,0.195,11270,,,,0.180299398,9782.684731,54258,,,,,,,,,,,,,,,,,,,,,,,,,,0.313,,,0.299,0.328,0.364019068,11760,32306,0.328274387,0.399763749,0.12332895,2251,18252,0.091158738,0.155499163,0.000466781,27,57843,,,2142.333333,0.94,951.28,1012,,,,,,,,2.763479975,,,,,,,,2.771776418,,3.007670968,,,,,,,,3.022553737,,0.154685781,,,,,-15253.66,,,,,0.685267515,31290,45661,0.58978095,0.78075408,43407,,,37324.44681,49489.55319,70688,52312.85106,89063.14894,,,,,,,47446,41508.80851,53383.19149,75938,50926.25532,100949.7447,,,,,,0.830855435,11121,13385,,,,,,,,0.282120395,,43407,,,3.84985563,20,5195,,,3.437708718,14,407248,1.879427346,5.767891094,,,,,,,,,,3.356172518,1.787020517,5.739157218,,,,,,,5.76802454,16,291857,3.296924401,9.366910485,5.4821368,,,,,,,,,,6.07353992,3.471552838,9.863048321,,,,,,,5.4821368,16,291857,3.133514856,8.902646706,,,,,,,,,,5.404139571,3.024655894,8.913306386,,,,,,,13.9963855,57,407248,10.60072569,18.13394084,,,,,,,,,,13.68285719,10.24939897,17.89751409,,,,,,,,,6600,,,-888,21,0.500848564,15346,30640,,,0.501,,,,,78.12299121,,,,,0.681470309,12199,17901,0.64780107,0.715139548,0.142561005,2407,16884,0.10675206,0.178369949,0.739288308,13234,17901,0.699613315,0.7789633,57843,,,,,0.307176322,17768,57843,,,0.116747057,6753,57843,,,0.004823401,279,57843,,,0.018653943,1079,57843,,,0.005635946,326,57843,,,0.000345764,20,57843,,,0.948533098,54866,57843,,,0.028404474,1643,57843,,,0.220017829,11600,52723,0.193338934,0.246696724,0.499835762,28912,57843,,,0.065714236,3804,57887,, -48,325,48325,TX,Medina County,2024,1,9072.749272,830,145230,8116.129695,10029.36885,0,,,,2,,,,2,,,,2,8908.355189,7673.583168,10143.12721,,9808.084253,8153.567007,11462.6015,,,,,2,,0.188,,,0.162,0.216,3.6672638,,,2.884631254,4.515804472,4.714430462,,,3.703482974,5.777302143,0.084836665,348,4102,0.076309605,0.093363726,0,,,,,,,0.2,0.094285462,0.305714538,0.089807853,0.078354894,0.101260812,0.072903226,0.059960489,0.085845963,,,,,,,0.143,,,0.115,0.173,0.377,,,0.296,0.458,7.7,0.04048677,0.129,,,0.27,,,0.221,0.319,0.652557736,33116,50748,,,0.182263663,,,0.143973422,0.22273354,0.209677419,13,62,0.145617882,0.279693756,186.6,97,51981,,,24.35723951,288,11824,21.54412187,27.17035715,,,,,,,,,,30.94176463,26.93417348,34.94935577,13.69180981,10.31454493,17.82177246,,,,,,,0.188894567,7763,41097,0.168639247,0.209149886,0.000288567,15,51981,,,3465.4,0.000223368,12,53723,,,4476.916667,0.000521192,28,53723,,,1918.678571,2166,,,,,,,,3038,1657,0.35,,,,,,,0.38,0.3,0.37,0.34,,,,,,,0.32,0.3,0.35,0.860214744,29883,34739,0.840559553,0.879869935,0.529126606,6549,12377,0.465686073,0.592567139,0.038005379,862,22681,,,0.172,2056,,0.105276596,0.238723404,,,,0.049689441,0,0.824773111,,,,0.195427627,0.130915849,0.259939405,0.107631579,0.037004434,0.178258724,4.156210924,136278,32789,3.490733201,4.821688648,0.200513699,2342,11680,0.142687199,0.258340198,6.540851465,34,51981,,,58.77544665,151,256910,49.40061375,68.15027956,,,,,,,,,,45.10800039,34.50404609,57.94311357,77.51937985,61.91972732,95.85391365,,,,9.2,,,,,1,,,,,0.133917397,2140,15980,0.103683946,0.164150848,0.09314034,0.069523126,0.116757554,0.030663329,0.017759339,0.04356732,0.016270338,0.001095323,0.031445353,0.751423586,16363,21776,0.724283625,0.778563547,,,,,,,,,,0.686162625,0.624813563,0.747511687,0.731032338,0.693102851,0.768961826,0.512,,21776,0.449189183,0.574810817,76.63028014,,,75.79817242,77.46238785,,,,,,,,,,76.43499699,75.23529123,77.63470276,76.1145563,74.83129267,77.39781992,,,,439.7718126,830,145230,408.5354001,471.0082251,,,,,,,,,,446.2690648,400.8534736,491.684656,457.8675788,409.3562468,506.3789107,,,,54.42023682,29,53289,36.44608669,78.15653782,,,,,,,,,,45.46694553,25.44750427,74.99081226,60.59604473,30.2493272,108.4230624,,,,6.996381182,29,4145,4.685586282,10.04797043,,,,,,,,,,,,,,,,,,,,,,0.114,,,0.098,0.13,0.157,,,0.135,0.178,0.115,,,0.099,0.132,157.9,69,43703,,,0.129,6490,,,,0.04048677,1862.634343,46006,,,7.054764211,11,155923,3.521712876,12.6229219,,,,,,,,,,,,,,,,,,,0.333,,,0.319,0.346,0.21919722,6433,29348,0.192984454,0.245409986,0.117514306,1458,12407,0.088918562,0.146110051,0.000204754,11,53723,,,4883.909091,0.975421607,740.345,759,,,,,,,,2.880762697,,,,,,,,2.729537205,3.201696578,2.927393857,,,,,,,,2.750635835,3.252811344,0.052513056,,,,,-2876.2942,,,,,0.775019839,41996,54187,0.663433205,0.886606473,70313,,,62828.06383,77797.93617,109058,87608.80851,130507.1915,,,,,,,64921,53032.31915,76809.68085,73839,70239.51064,77438.48936,,,,,,0.558602197,6458,11561,,,86.09313999,,,,,0.264929672,,70313,,,3.43524562,10,2911,,,3.665999267,13,354610,1.951990212,6.268970395,,,,,,,,,,,,,,,,,,,13.63541067,37,256910,9.442918273,19.0541197,14.40193064,,,,,,,,,,8.06315275,4.025096801,14.42720754,18.37230596,11.06132835,28.69063157,,,,12.06648243,31,256910,8.198589381,17.12740863,,,,,,,,,,,,,17.32786138,10.43250448,27.05960198,,,,18.32999633,65,354610,14.14670419,23.36308503,,,,,,,,,,17.79301867,12.24789534,24.98801358,20.92351149,14.31166637,29.53775522,,,,7.959183674,,4900,,,6,33,0.598916204,22657,37830,,,0.506,,,,,25.25781719,,,,,0.820652174,14194,17296,0.788719802,0.852584545,0.086072457,1435,16672,0.062921336,0.109223578,0.851006013,14719,17296,0.823653411,0.878358615,53723,,,,,0.22556447,12118,53723,,,0.172458724,9265,53723,,,0.032481433,1745,53723,,,0.011559295,621,53723,,,0.008841651,475,53723,,,0.00214061,115,53723,,,0.536697504,28833,53723,,,0.407981684,21918,53723,,,0.036607474,1777,48542,0.024014004,0.049200944,0.475680807,25555,53723,,,0.842614487,42761,50748,, -48,327,48327,TX,Menard County,2024,1,8948.762155,40,5257,4291.279288,16457.09222,1,,,,2,,,,2,,,,2,,,,2,10479.3986,3402.632202,24455.42058,1,,,,2,,0.195,,,0.164,0.228,3.911051755,,,3.068966839,4.828873659,5.238735603,,,4.167691631,6.398281682,0.095652174,11,115,0.041896746,0.149407602,1,,,,,,,,,,,,,,,,,,,,,,0.16,,,0.126,0.195,0.378,,,0.295,0.467,6.3,0.060326321,0.182,,,0.274,,,0.223,0.327,0.783384302,1537,1962,,,0.148337165,,,0.116622792,0.182799323,0.142857143,1,7,0.008995928,0.386311364,302.7,6,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.294510386,397,1348,0.259957194,0.329063577,0.000504541,1,1982,,,1982,0.00050813,1,1968,,,1968,,0,1968,,,,1547,,,,,,,,,765,0.33,,,,,,,,0.24,0.35,0.29,,,,,,,,0.29,0.29,0.779016393,1188,1525,0.674503022,0.883529765,0.628158845,174,277,0.243016326,1,0.03760282,32,851,,,0.347,136,,0.21593617,0.47806383,,,,,,,,,,0.428571429,0.136511613,0.720631244,,,,6.261651505,89479,14290,3.457779365,9.065523644,0.184986595,69,373,0.030984713,0.338988477,15.13622603,3,1982,,,,,,,,,,,,,,,,,,,,,,,,,,7.2,,,,,0,,,,,0.154589372,160,1035,0.074405771,0.234772973,0.111111111,0.030477765,0.191744458,0.009661836,0,0.045099046,0.033816425,0,0.072629013,0.763040239,512,671,0.595194214,0.930886263,,,,,,,,,,,,,,,,0.244,,671,0.042761715,0.445238285,76.87704374,,,72.51839275,81.23569473,,,,,,,,,,,,,,,,,,,416.5832542,40,5257,274.5309895,606.1067633,,,,,,,,,,,,,420.877257,224.0994137,719.7129274,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.121,,,0.102,0.139,0.168,,,0.144,0.192,0.113,,,0.096,0.13,,,,,,0.182,360,,,,0.060326321,135.2516124,2242,,,,,,,,,,,,,,,,,,,,,,,,,,0.336,,,0.322,0.349,0.326446281,316,968,0.284744153,0.368148409,0.216080402,86,398,0.158888913,0.273271891,0,0,1968,,,-1968,,,,,,,,,,,2.823397358,,,,,,,,,,2.971852465,,,,,,,,,,0.020004812,,,,,-2731.176,,,,,0.866671289,50000,57692,0.277814475,1.455528103,44145,,,37651.38298,50638.61702,,,,,,,,,,,,,55000,34357.44681,75642.55319,,,,,,0.686666667,206,300,,,,,,,,0.310182354,,44145,,,17.24137931,1,58,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,200,,,-888,0,0.632615385,1028,1625,,,0.296,,,,,0.004175756,,,,,0.754696133,683,905,0.639550084,0.869842181,0.149061033,127,852,0.040738412,0.257383654,0.740331492,670,905,0.641010282,0.839652702,1968,,,,,0.200203252,394,1968,,,0.31097561,612,1968,,,0.022357724,44,1968,,,0.018800813,37,1968,,,0.003048781,6,1968,,,0,0,1968,,,0.363313008,715,1968,,,0.595020325,1171,1968,,,0.027542373,52,1888,0,0.069692056,0.494918699,974,1968,,,1,1962,1962,, -48,329,48329,TX,Midland County,2024,1,8705.846054,2092,500578,8227.532139,9184.159969,0,,,,2,,,,2,14035.20567,11595.01932,16475.39203,,8063.611411,7411.562435,8715.660388,,9290.904905,8489.202247,10092.60756,,,,,2,,0.176,,,0.148,0.206,3.546290329,,,2.785749121,4.381596754,4.68160629,,,3.719744364,5.709425743,0.08284777,1692,20423,0.079067198,0.086628341,0,,,,0.07,0.047635378,0.092364622,0.145513339,0.125862764,0.165163914,0.080225665,0.075019366,0.085431963,0.077811245,0.071929415,0.083693075,,,,0.071428571,0.034011998,0.108845145,0.143,,,0.114,0.174,0.355,,,0.283,0.434,7.8,0.050975928,0.12,,,0.265,,,0.217,0.317,0.914120824,155385,169983,,,0.205604168,,,0.165994133,0.249317359,0.31372549,64,204,0.278517274,0.349262978,504.9,848,167969,,,35.91327999,1360,37869,34.00456235,37.82199764,,,,13.11084625,6.544887208,23.45892552,42.13938412,34.04045523,50.238313,43.97653372,41.20472135,46.7483461,21.62615256,18.98723708,24.26506804,,,,31.37254902,17.93212246,50.94705411,0.185171059,27674,149451,0.167298719,0.2030434,0.000381023,64,167969,,,2624.515625,0.000616283,106,171999,,,1622.632076,0.001011634,174,171999,,,988.5,2587,,,,,,4579,3473,3367,2071,0.38,,,,,,0.51,0.34,0.35,0.39,0.39,,,,,,0.52,0.29,0.33,0.41,0.84394675,89006,105464,0.825430066,0.862463433,0.62895024,34013,54079,0.589517841,0.668382638,0.029259637,3100,105948,,,0.139,6891,,0.097297872,0.180702128,,,,0.15576324,0,0.331781346,0.202635046,0.056445728,0.348824364,0.189604409,0.143229751,0.235979067,0.037886709,0.017406154,0.058367263,4.900294232,176538,36026,4.248114201,5.552474263,0.199443547,9749,48881,0.15690901,0.241978083,9.823241193,165,167969,,,65.32673247,562,860291,59.92567436,70.72779057,,,,,,,92.27176861,68.26316238,121.9881715,47.68956603,40.90842711,54.47070494,83.19180096,73.97533488,92.40826703,,,,7.8,,,,,1,,,,,0.166537167,9645,57915,0.142886336,0.190187997,0.103157345,0.085064658,0.121250032,0.064318398,0.044422369,0.084214427,0.007511008,0.004417274,0.010604741,0.808338819,68767,85072,0.78943758,0.827240058,,,,0.567773167,0.382728534,0.752817801,0.879911528,0.812676268,0.947146787,0.802891725,0.774778093,0.831005356,0.824248043,0.811174868,0.837321218,0.207,,85072,0.184709275,0.229290725,76.46492932,,,75.99738299,76.93247565,,,,,,,70.67408274,68.85709323,72.49107224,76.80864994,75.94007063,77.67722925,76.22906818,75.55077511,76.90736126,,,,441.4746433,2092,500578,422.321994,460.6272926,,,,,,,713.5863519,616.1975296,810.9751742,441.883394,408.9862048,474.7805833,444.2257304,416.8305639,471.6208969,,,,54.43306578,118,216780,44.61156483,64.25456673,,,,,,,131.128433,77.71501989,207.239457,42.01292318,31.18280137,55.38880159,65.83190026,48.70280222,87.03326337,,,,5.126452495,105,20482,4.145883044,6.107021946,,,,,,,,,,4.870446133,3.614938996,6.421076044,5.257366426,3.804782151,7.081638074,,,,,,,0.11,,,0.094,0.127,0.155,,,0.134,0.179,0.106,,,0.09,0.123,174.1,229,131535,,,0.12,20080,,,,0.050975928,6977.177261,136872,,,11.09699539,58,522664,8.426413849,14.34543985,,,,,,,,,,6.913182626,4.027183638,11.06867508,15.6511318,10.90158676,21.76693558,,,,0.362,,,0.347,0.376,0.217173025,21802,100390,0.194534727,0.239811323,0.124136041,6340,51073,0.096731785,0.151540296,0.001377915,237,171999,,,725.7341772,0.883867188,1583.89,1792,,,0.07263238,668,9197,0.036449411,0.10881535,2.722631724,,,,,,3.194566671,2.287440194,2.569533826,3.102522093,2.907259753,,,,,,3.599152719,2.541207119,2.750525311,3.258315515,0.072363607,,,,,-17.1973,,,,,0.635231524,49071,77249,0.579014202,0.691448846,81187,,,73173.04255,89200.95745,102803,84650.65957,120955.3404,130357,78431.89362,182282.1064,55862,38921.40426,72802.59575,75422,70043.61702,80800.38298,109489,101724.0638,117253.9362,,,,,,0.485713367,15112,31113,,,46.83518533,,,,,0.207964329,,81187,,,3.748438151,54,14406,,,5.490175542,65,1183933,4.237201576,6.997679414,,,,,,,17.92559499,9.544624377,30.65331336,5.546465515,3.742176992,7.917924401,3.792684291,2.316670096,5.857493283,,,,17.7383771,146,860291,14.79737841,20.6793758,16.97100167,,,,,,,,,,7.968069065,5.48485211,11.19013146,28.01610826,22.34278763,33.68942889,,,,15.57612482,134,860291,12.93880323,18.21344642,,,,,,,24.48026514,13.03471017,41.86199894,9.537913205,6.749595052,13.09153107,22.06044562,17.5710218,27.34724146,,,,19.51123923,231,1183933,16.99509846,22.02738001,,,,,,,,,,20.89168677,17.03965061,24.74372293,19.91159253,16.10297451,23.72021055,,,,17.05882353,,18700,,,169,150,0.542004696,58859,108595,,,0.557,,,,,103.7271361,,,,,0.670083506,43733,65265,0.645356011,0.694811001,0.128864923,8173,63423,0.109650008,0.148079837,0.882892822,57622,65265,0.865708861,0.900076782,171999,,,,,0.291745882,50180,171999,,,0.104407584,17958,171999,,,0.06421549,11045,171999,,,0.012529143,2155,171999,,,0.022796644,3921,171999,,,0.001366287,235,171999,,,0.489119123,84128,171999,,,0.407752371,70133,171999,,,0.054122365,8394,155093,0.044098807,0.064145924,0.490537736,84372,171999,,,0.137213721,23324,169983,, -48,331,48331,TX,Milam County,2024,1,10436.10928,498,67913,8923.334267,11948.8843,0,,,,2,,,,2,22313.43362,14827.1146,32249.12424,,10961.01302,8384.306446,14079.87977,,8674.660169,6957.830166,10391.49017,,,,,2,,0.202,,,0.175,0.232,4.050545719,,,3.257008949,4.937298271,5.395569732,,,4.350308104,6.53461474,0.0745,149,2000,0.0629918,0.086008201,0,,,,,,,0.202380952,0.141625675,0.26313623,0.053941909,0.037475118,0.0704087,0.0684803,0.053318306,0.083642294,,,,,,,0.186,,,0.151,0.223,0.377,,,0.299,0.459,6.5,0.114067413,0.147,,,0.285,,,0.237,0.336,0.594085804,14706,24754,,,0.171512868,,,0.135994758,0.210695417,0.301587302,19,63,0.236294597,0.368104789,302.7,76,25106,,,31.74603175,174,5481,27.02897725,36.46308624,,,,,,,40.33970276,24.28713623,62.99544283,37.26435774,29.76544542,46.07795542,25.21971723,19.50492748,32.08566391,,,,,,,0.207880713,4057,19516,0.185242415,0.230519011,3.98311E-05,1,25106,,,25106,0.000156079,4,25628,,,6407,0.000234119,6,25628,,,4271.333333,4101,,,,,,,5169,4685,3764,0.32,,,,,,,0.31,0.21,0.33,0.37,,,,,,,0.29,0.32,0.38,0.857995786,14658,17084,0.835576718,0.880414853,0.520759635,2797,5371,0.44559621,0.595923061,0.042536661,438,10297,,,0.246,1401,,0.167361702,0.324638298,,,,,,,0.384098544,0.224787832,0.543409256,0.260127932,0.13681704,0.383438823,0.07111437,0.029707932,0.112520807,4.237152216,112543,26561,3.641293609,4.833010823,0.232370141,1351,5814,0.139224331,0.325515952,11.94933482,30,25106,,,102.5468471,128,124821,84.7815122,120.312182,,,,,,,121.3478951,64.61264343,207.5085963,80.01659604,52.73144099,116.4199462,111.5087392,89.19259795,137.7123857,,,,9.2,,,,,1,,,,,0.138859557,1315,9470,0.106788486,0.170930627,0.101112878,0.06930812,0.132917635,0.041077086,0.024812528,0.057341643,0.005702218,0.002416496,0.00898794,0.808412098,8553,10580,0.775483319,0.841340878,,,,,,,,,,0.837388724,0.729551098,0.94522635,0.7323578,0.662669055,0.802046546,0.44,,10580,0.380401707,0.499598293,75.15124443,,,73.96823765,76.33425122,,,,,,,66.45276247,61.67734466,71.22818027,75.35590393,72.22021177,78.49159609,76.49349209,75.12851743,77.85846676,,,,514.0577411,498,67913,465.2913985,562.8240837,,,,,,,964.0274743,737.4046314,1238.333621,551.0591766,444.7758761,675.0847206,459.0553174,402.3991356,515.7114992,,,,65.39719177,17,25995,38.09627417,104.7072392,,,,,,,,,,95.09319133,45.60088148,174.8797646,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.127,,,0.11,0.146,0.179,,,0.156,0.205,0.116,,,0.099,0.134,212.4,45,21185,,,0.147,3670,,,,0.114067413,2823.966945,24757,,,,,,,,,,,,,,,,,,,,,,,,,,0.37,,,0.357,0.383,0.239401137,3326,13893,0.211996882,0.266805393,0.134255355,796,5929,0.100893653,0.167617057,0.000858436,22,25628,,,1164.909091,0.926617647,315.05,340,,,,,,,,2.664180419,,,,,,,2.365594655,2.562357525,2.812400512,2.710442789,,,,,,,2.339514378,2.611553592,2.883221767,0.062559144,,,,,-2577.34065,,,,,0.791400787,38819,49051,0.60658762,0.976213954,54667,,,46915.17021,62418.82979,,,,,,,42391,30745.38298,54036.61702,36634,28035.02128,45232.97872,67152,58472,75832,,,,,,0.680953472,2971,4363,,,27.43074338,,,,,0.268736166,,54667,,,4.264392324,6,1407,,,,,,,,,,,,,,,,,,,,,,,,,,19.69231923,23,124821,12.18985598,30.10180176,18.42638659,,,,,,,,,,,,,22.06956044,12.06563406,37.02897236,,,,13.61950313,17,124821,7.933862467,21.80614385,,,,,,,,,,,,,16.8559722,8.975095289,28.82422582,,,,31.57199851,55,174205,23.78435003,41.09529576,,,,,,,,,,23.5430088,11.75258517,42.12494599,33.33549397,23.34777015,46.15037501,,,,25.6,,2500,,,34,30,0.586526199,10578,18035,,,0.451,,,,,37.09638768,,,,,0.76256783,7448,9767,0.731985335,0.793150326,0.106268206,985,9269,0.071733855,0.140802556,0.803010136,7843,9767,0.775510046,0.830510226,25628,,,,,0.228226939,5849,25628,,,0.211760574,5427,25628,,,0.082136726,2105,25628,,,0.013695958,351,25628,,,0.00877946,225,25628,,,0.000975496,25,25628,,,0.27407523,7024,25628,,,0.615966911,15786,25628,,,0.03576556,847,23682,0.020883914,0.050647206,0.49996098,12813,25628,,,0.571180415,14139,24754,, -48,333,48333,TX,Mills County,2024,1,8551.434016,97,12343,5727.02957,12281.2857,0,,,,2,,,,2,,,,2,,,,2,9194.333036,5828.418446,13796.01393,1,,,,2,,0.173,,,0.15,0.198,3.803998106,,,3.278387662,4.364172506,5.37151728,,,4.735258565,6.02474772,0.043307087,11,254,0.018274543,0.06833963,1,,,,,,,,,,,,,,,,,,,,,,0.168,,,0.139,0.198,0.361,,,0.319,0.402,7.4,0.090033994,0.121,,,0.247,,,0.215,0.281,0.492145422,2193,4456,,,0.165563248,,,0.147742752,0.183935217,0.166666667,3,18,0.057993584,0.308188518,223.2,10,4480,,,18.37524178,19,1034,11.0630959,28.69521622,,,,,,,,,,,,,17.66304348,9.404826754,30.20434228,,,,,,,0.274844721,885,3220,0.246248976,0.303440465,0.000223214,1,4480,,,4480,0.000444444,2,4500,,,2250,0.001333333,6,4500,,,750,1936,,,,,,,,,1978,0.37,,,,,,,,0.23,0.38,0.17,,,,,,,,0.1,0.18,0.878939617,2984,3395,0.837698924,0.92018031,0.451783355,342,757,0.319306747,0.584259964,0.042408377,81,1910,,,0.232,190,,0.146212766,0.317787234,,,,,,,,,,0.009868421,0,0.070223374,0.11622276,0.036237314,0.196208206,4.350644166,119882,27555,3.219317212,5.481971121,0.255319149,204,799,0.136386143,0.374252155,17.85714286,8,4480,,,108.1755773,26,24035,70.66387858,158.5022845,,,,,,,,,,,,,132.4433143,85.71032977,195.5124587,,,,7.8,,,,,0,,,,,0.097142857,170,1750,0.053576787,0.140708927,0.08492201,0.037588541,0.13225548,0.008,0,0.027044395,0.005714286,0,0.018707394,0.762425447,1534,2012,0.689460158,0.835390736,,,,,,,,,,,,,0.771840543,0.687727605,0.855953481,0.261,,2012,0.167796892,0.354203108,75.88626483,,,73.4706214,78.30190826,,,,,,,,,,,,,75.30668573,72.4759786,78.13739286,,,,463.6477358,97,12343,362.7757983,583.8875898,,,,,,,,,,,,,491.3192665,372.1204145,636.5610977,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.115,,,0.102,0.129,0.173,,,0.155,0.189,0.099,,,0.089,0.109,0,0,3872,,,0.121,550,,,,0.090033994,444.4077918,4936,,,,,,,,,,,,,,,,,,,,,,,,,,0.344,,,0.328,0.359,0.309810671,720,2324,0.27406599,0.345555352,0.187565859,178,949,0.143480752,0.231650965,0.000666667,3,4500,,,1500,,,,,,,,,,,,,,,,,,,,,3.280853138,,,,,,,,,3.273982778,0.020152813,,,,,-5335.405333,,,,,1.005048616,43000,42784,0.61813988,1.391957353,58068,,,50760.59575,65375.40426,,,,,,,,,,79519,41966.82979,117071.1702,57957,52365.34043,63548.65957,,,,,,0.558679707,457,818,,,,,,,,0.252996487,,58068,,,8.928571429,1,112,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,35.45889723,12,33842,18.32212963,61.9395575,,,,,,,,,,,,,37.47844989,17.9723735,68.92420374,,,,,,500,,,0,-888,0.659210526,2505,3800,,,0.418,,,,,14.22896186,,,,,0.851609384,1561,1833,0.795552247,0.90766652,0.072188025,129,1787,0.030741855,0.113634194,0.836879433,1534,1833,0.797352126,0.87640674,4500,,,,,0.199333333,897,4500,,,0.281777778,1268,4500,,,0.012444444,56,4500,,,0.011777778,53,4500,,,0.006444444,29,4500,,,0.001333333,6,4500,,,0.191111111,860,4500,,,0.774222222,3484,4500,,,0.017934166,79,4405,0,0.040901881,0.483555556,2176,4500,,,1,4456,4456,, -48,335,48335,TX,Mitchell County,2024,1,10648.76454,148,24217,7920.586528,13376.94255,0,,,,2,,,,2,,,,2,9770.743354,6382.573954,14316.40285,,13498.69644,9233.098371,19056.13173,,,,,2,,0.227,,,0.205,0.253,4.211716523,,,3.713794476,4.786810317,5.221936565,,,4.655617178,5.84343189,0.080858086,49,606,0.059152437,0.102563735,0,,,,,,,,,,0.081712062,0.048221531,0.115202593,0.082278481,0.051980679,0.112576283,,,,,,,0.193,,,0.169,0.217,0.393,,,0.355,0.431,7.3,0.060370919,0.137,,,0.309,,,0.277,0.341,0.610567297,5489,8990,,,0.190788697,,,0.171650045,0.211467837,0.090909091,2,22,0.017567586,0.216903757,275.6,25,9070,,,35.50677857,55,1549,26.74856486,46.21695286,,,,,,,,,,48.40940526,33.71892449,67.325764,25.60455192,15.1748802,40.46623082,,,,,,,0.172258065,1068,6200,0.148428277,0.196087852,0.000551268,5,9070,,,1814,0.000111819,1,8943,,,8943,,0,8943,,,,2547,,,,,,,,,1275,0.18,,,,,,,,0.16,0.18,0.25,,,,,,,,0.25,0.25,0.83806558,4575,5459,0.78812852,0.888002639,0.422300263,962,2278,0.311622544,0.532977983,0.044174968,102,2309,,,0.23,407,,0.144212766,0.315787234,,,,,,,,,,0.043269231,0,0.134557723,0.079283888,0,0.171628044,4.430523918,108920,24584,3.031213599,5.829834237,0.481212121,794,1650,0.260762516,0.701661726,8.820286659,8,9070,,,84.84562809,36,42430,59.42483483,117.4621129,,,,,,,,,,,,,123.6521911,80.0211784,182.5350267,,,,7.1,,,,,0,,,,,0.119834711,290,2420,0.031165931,0.20850349,0.042975207,0,0.096414409,0.080578512,0.006857225,0.1542998,0,0,0.013925789,0.789586115,2957,3745,0.710390899,0.868781331,,,,,,,,,,,,,0.807570978,0.702287388,0.912854568,0.432,,3745,0.256875382,0.607124618,73.86308837,,,71.76253515,75.96364159,,,,,,,,,,74.92705975,71.34460511,78.50951438,71.81142166,68.61579452,75.00704881,,,,529.2502814,148,24217,441.9294348,616.5711281,,,,,,,,,,524.4906214,385.3759807,697.4613383,583.8842669,462.9839103,726.6945123,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.133,,,0.121,0.146,0.171,,,0.158,0.185,0.127,,,0.117,0.137,65.6,5,7622,,,0.137,1220,,,,0.060370919,567.6677466,9403,,,,,,,,,,,,,,,,,,,,,,,,,,0.36,,,0.347,0.371,0.209065021,881,4214,0.176894809,0.241235234,0.095535286,199,2083,0.064556562,0.126514009,0.000447277,4,8943,,,2235.75,0.942241379,81.975,87,,,,,,,,2.428745876,,,,,,,,2.409306345,2.482384722,2.761538363,,,,,,,,2.746644602,2.774663441,0.045401095,,,,,-2570.069,,,,,0.593364151,29651,49971,0.152583422,1.034144881,48378,,,43341.57447,53414.42553,,,,,,,46017,34249.85106,57784.14894,53106,37922.85106,68289.14894,56957,25899.6383,88014.3617,,,,,,0.574088441,740,1289,,,15.80941101,,,,,0.286204473,,48378,,,3.159557662,2,633,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.26726672,11,60217,9.118953729,32.6851861,,,,,,,,,,,,,,,,,,,,,700,,,0,-888,0.398608965,2579,6470,,,0.416,,,,,18.72611921,,,,,0.709249274,1710,2411,0.617022153,0.801476395,0.061215566,140,2287,0,0.125355577,0.770634592,1858,2411,0.691088596,0.850180587,8943,,,,,0.200044728,1789,8943,,,0.147266018,1317,8943,,,0.110142011,985,8943,,,0.018338365,164,8943,,,0.009169183,82,8943,,,0.001900928,17,8943,,,0.413507771,3698,8943,,,0.45051996,4029,8943,,,0.040762813,342,8390,0.000459195,0.081066431,0.378396511,3384,8943,,,0.350500556,3151,8990,, -48,337,48337,TX,Montague County,2024,1,14359.95794,514,54337,12395.19924,16324.71665,0,,,,2,,,,2,,,,2,12769.59106,8002.634733,19333.31433,1,14922.62095,12724.24303,17120.99887,,,,,2,,0.18,,,0.15,0.21,4.065410776,,,3.177418051,5.008178655,5.701879288,,,4.533933548,6.924325503,0.085831063,126,1468,0.071501646,0.10016048,0,,,,,,,,,,0.065789474,0.033609237,0.09796971,0.091673675,0.075271237,0.108076114,,,,,,,0.187,,,0.15,0.23,0.362,,,0.284,0.446,7.2,0.045086463,0.149,,,0.253,,,0.206,0.307,0.339043326,6769,19965,,,0.175963033,,,0.139806471,0.216590016,0.235294118,8,34,0.146684527,0.331775647,220.5,45,20409,,,24.703318,102,4129,19.90917179,29.4974642,,,,,,,,,,20.64516129,11.80049349,33.52644851,25.50377834,20.25368136,31.69886782,,,,,,,0.216823374,3436,15847,0.192993586,0.240653161,0.00024499,5,20409,,,4081.8,0.00028486,6,21063,,,3510.5,0.000237383,5,21063,,,4212.6,3105,,,,,,,,,3098,0.32,,,,,,,,,0.32,0.3,,,,,,,,0.26,0.3,0.879921121,12494,14199,0.849448358,0.910393885,0.505979761,2200,4348,0.433227908,0.578731613,0.036031162,333,9242,,,0.183,851,,0.116276596,0.249723404,,,,,,,,,,0.126190476,9.40332E-05,0.252286919,0.204722142,0.127868684,0.2815756,4.308911036,118034,27393,3.687872095,4.929949977,0.239353571,1096,4579,0.148684263,0.330022878,14.20941741,29,20409,,,122.8303331,122,99324,101.0340828,144.6265833,,,,,,,,,,,,,133.5681611,108.9406913,158.195631,,,,8.4,,,,,0,,,,,0.124215809,990,7970,0.092812513,0.155619106,0.096362476,0.063007146,0.129717806,0.022584693,0.008409518,0.036759868,0.017565872,0.006874598,0.028257147,0.801610542,6570,8196,0.761106469,0.842114614,,,,,,,,,,,,,0.775934401,0.719379288,0.832489515,0.468,,8196,0.405905226,0.530094774,71.27695991,,,69.98356044,72.57035939,,,,,,,,,,74.21946808,67.25772637,81.18120979,70.85346353,69.45478478,72.25214228,,,,673.7779092,514,54337,610.2830389,737.2727795,,,,,,,,,,604.6558519,401.7894224,873.8960582,698.6111112,628.3489129,768.8733096,,,,76.02250266,15,19731,42.54921764,125.387557,,,,,,,,,,,,,79.52286282,41.09062365,138.9104377,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.123,,,0.105,0.142,0.184,,,0.16,0.211,0.1,,,0.084,0.116,81.4,14,17189,,,0.149,2950,,,,0.045086463,889.0599725,19719,,,28.24436359,17,60189,16.45338263,45.22196218,,,,,,,,,,,,,29.34501917,16.42418447,48.40014647,,,,0.352,,,0.335,0.367,0.252763909,2835,11216,0.222976675,0.282551143,0.133223684,648,4864,0.097479003,0.168968365,0.000332336,7,21063,,,3009,0.940570175,214.45,228,,,,,,,,2.919278744,,,,,,,,2.497199447,3.063613761,3.036634726,,,,,,,,2.653447909,3.159890311,0.031386517,,,,,-3005.743071,,,,,0.590451515,35779,60596,0.489026256,0.691876774,57076,,,49824.59575,64327.40426,,,,,,,,,,61389,37839.21277,84938.78723,63412,56259.48936,70564.51064,,,,,,0.535547786,1838,3432,,,,,,,,0.244936576,,57076,,,4.608294931,5,1085,,,,,,,,,,,,,,,,,,,,,,,,,,25.65373527,25,99324,16.07705932,38.8400635,25.17015022,,,,,,,,,,,,,27.93237583,17.06182082,43.13928902,,,,16.10889614,16,99324,9.207626005,26.1598381,,,,,,,,,,,,,18.912306,10.81001697,30.71240009,,,,26.08695652,36,138000,18.27098364,36.11534383,,,,,,,,,,,,,30.55612141,21.40113178,42.30255185,,,,7.894736842,,1900,,,6,9,0.66705163,9819,14720,,,0.529,,,,,18.71954077,,,,,0.796888833,6301,7907,0.77106194,0.822715725,0.106891515,805,7531,0.070294152,0.143488879,0.790565322,6251,7907,0.747573145,0.833557499,21063,,,,,0.224374496,4726,21063,,,0.220054123,4635,21063,,,0.008830651,186,21063,,,0.013958126,294,21063,,,0.004795138,101,21063,,,0.000522243,11,21063,,,0.120780516,2544,21063,,,0.841143237,17717,21063,,,0.008566205,164,19145,0,0.018240095,0.506338129,10665,21063,,,0.728575006,14546,19965,, -48,339,48339,TX,Montgomery County,2024,1,6844.217128,7241,1787715,6615.499019,7072.935238,0,,,,2,3193.22808,2346.263885,4246.316405,,9736.442388,8581.32063,10891.56415,,4990.348802,4614.942967,5365.754637,,7572.706627,7258.884565,7886.528689,,,,,2,,0.153,,,0.129,0.18,3.324926386,,,2.622096003,4.096099958,4.804031006,,,3.87912134,5.794969096,0.074724531,3974,53182,0.07248972,0.076959342,0,,,,0.08974359,0.077057658,0.102429521,0.119530103,0.108633442,0.130426763,0.071144523,0.067425747,0.074863299,0.070481654,0.067514612,0.073448695,,,,0.080128205,0.058826217,0.101430193,0.142,,,0.111,0.177,0.344,,,0.277,0.422,7.5,0.082074994,0.117,,,0.22,,,0.18,0.265,0.871909265,540970,620443,,,0.188048734,,,0.150258983,0.228993408,0.298561151,83,278,0.26843248,0.329067437,221.3,1436,648886,,,16.94206376,2471,145850,16.27404908,17.61007845,,,,,,,15.94858367,13.24819801,18.64896933,25.6139161,24.2128793,27.01495289,12.46561861,11.68831366,13.24292357,,,,12.09563994,8.753674603,16.29274763,0.179049616,99760,557164,0.165943233,0.192155999,0.000631852,410,648886,,,1582.648781,0.000508482,345,678490,,,1966.637681,0.00114519,777,678490,,,873.2175032,3083,,,,,,670,5336,3092,3030,0.39,,,,,,0.35,0.41,0.29,0.4,0.46,,,,,0.29,0.46,0.35,0.35,0.47,0.898078671,370435,412475,0.890656802,0.905500541,0.683318002,114397,167414,0.65873059,0.707905414,0.03906206,11791,301853,,,0.108,18571,,0.078212766,0.137787234,0.192239859,0.02926815,0.355211568,0.028513238,0,0.062604422,0.162396827,0.102611885,0.222181769,0.21639044,0.18851136,0.24426952,0.052987038,0.041824666,0.064149409,4.569584763,189062,41374,4.304820299,4.834349228,0.151080813,24644,163118,0.133740944,0.168420682,5.655847098,367,648886,,,64.54289343,1965,3044487,61.68909546,67.3966914,,,,24.86222185,15.92969467,36.99301537,63.66800471,51.48981706,75.84619235,38.79612247,34.39122037,43.20102458,78.01892304,74.10311765,81.93472844,,,,10.5,,,,,1,,,,,0.138343379,28460,205720,0.128066225,0.148620533,0.102885392,0.093643249,0.112127535,0.035849699,0.030199004,0.041500394,0.007874781,0.00517276,0.010576803,0.768563948,228388,297162,0.756206257,0.78092164,0.592207792,0.563066596,0.621348989,0.627056337,0.588276954,0.665835719,0.77144101,0.739301163,0.803580857,0.766570997,0.748887812,0.784254182,0.740922847,0.725330506,0.756515187,0.495,,297162,0.476350242,0.513649759,78.4210169,,,78.19051259,78.65152122,106.8697506,81.99858406,131.7409171,88.0615093,84.85070033,91.27231827,75.16047174,74.02913459,76.29180888,83.02483439,82.03277268,84.0168961,77.56534127,77.28812859,77.84255395,,,,345.5730058,7241,1787715,337.483811,353.6622005,,,,148.8505243,119.061206,183.8291866,479.7813905,436.5594096,523.0033714,253.2224964,235.5888783,270.8561145,374.2428489,364.086201,384.3994968,,,,45.55032886,321,704715,40.56728084,50.53337687,,,,,,,93.78084896,66.36491028,128.7215423,39.53366745,32.02239756,48.27737439,46.82205239,39.92410489,53.7199999,,,,4.590592167,239,52063,4.008588351,5.172595983,,,,,,,8.041170795,5.203821759,11.87035436,4.356798899,3.432661997,5.453183499,4.486020309,3.711875062,5.260165556,,,,,,,0.101,,,0.087,0.119,0.156,,,0.135,0.18,0.099,,,0.084,0.115,194.7,1035,531454,,,0.117,70920,,,,0.082074994,37405.35023,455746,,,17.74115757,334,1882628,15.83848179,19.64383336,,,,,,,12.151009,6.46990054,20.77859545,5.783056883,3.8427993,8.358127352,23.82566326,21.05462897,26.59669755,,,,0.337,,,0.322,0.351,0.214756028,83562,389102,0.196883688,0.232628368,0.102612099,18090,176295,0.083548269,0.121675929,0.000856313,581,678490,,,1167.796902,0.939151715,7694.47,8193,,,0.050896359,1817,35700,0.031832624,0.069960093,3.029138939,,,,,,3.664609165,2.706575838,2.7454097,3.249234195,3.274041089,,,,,,4.153070204,2.878894875,3.053311427,3.444111888,0.086217836,,,,,-3774.337022,,,,,0.746246084,55264,74056,0.702950876,0.789541292,95241,,,90751.46809,99730.53192,103600,81583.65957,125616.3404,119209,110495.6383,127922.3617,64958,48852.6383,81063.3617,73757,67571.97872,79942.02128,105508,101318.7234,109697.2766,,,,,,0.462339423,56613,122449,,,46.47112925,,,,,0.201866843,,95241,,,4.286758958,170,39657,,,3.842204759,159,4138249,3.24497971,4.439429808,,,,,,,13.4575137,9.012708133,19.3272345,3.716595872,2.63008444,5.10131821,3.341759518,2.687169282,4.107589796,,,,16.89528147,505,3044487,15.40230216,18.38826079,16.58735938,,,,,,,8.498711431,4.756664273,14.01733206,9.434724552,6.979861162,12.47320621,20.65036925,18.58907569,22.7116628,,,,13.23704125,403,3044487,11.94464863,14.52943387,,,,,,,18.79722044,12.77179931,26.68115397,7.681111496,5.847217957,9.908074197,15.65494456,13.90087467,17.40901444,,,,12.22739376,506,4138249,11.16198881,13.29279871,,,,,,,12.99346151,8.634060808,18.7791696,11.24759277,9.19185964,13.3033259,13.1442541,11.77498003,14.51352818,,,,13.89221557,,66800,,,413,515,0.695399311,271543,390485,,,0.649,,,,,76.02433186,,,,,0.727291357,163258,224474,0.715351662,0.739231051,0.110878241,24283,219006,0.101849665,0.119906817,0.931399628,209075,224474,0.925779443,0.937019812,678490,,,,,0.256173267,173811,678490,,,0.139075005,94361,678490,,,0.066079087,44834,678490,,,0.010132795,6875,678490,,,0.036358679,24669,678490,,,0.001391325,944,678490,,,0.270801338,183736,678490,,,0.607037687,411869,678490,,,0.040512172,23891,589724,0.036463402,0.044560942,0.501868856,340513,678490,,,0.228762352,141934,620443,, -48,341,48341,TX,Moore County,2024,1,9997.754928,285,59789,8500.438996,11495.07086,0,,,,2,,,,2,,,,2,9826.592543,7892.64808,11760.53701,,11210.59259,8194.779184,14226.40599,,,,,2,,0.235,,,0.203,0.271,4.220085912,,,3.267997219,5.255462775,5.234846889,,,4.020797775,6.487020574,0.070068272,195,2783,0.060584399,0.079552144,0,,,,0.108910891,0.065949671,0.151872112,,,,0.066836735,0.055780316,0.077893153,0.071984436,0.049639895,0.094328977,,,,,,,0.177,,,0.145,0.215,0.38,,,0.293,0.473,7.7,0.085735856,0.109,,,0.322,,,0.267,0.385,0.718466149,15345,21358,,,0.179903377,,,0.139474953,0.225746536,0.28,7,25,0.173955028,0.39080618,520.9,110,21118,,,57.0005534,309,5421,50.64496295,63.35614385,,,,83.01886793,52.02748254,125.6915637,,,,64.86919381,56.71292679,73.02546082,32.81378179,23.44264679,44.6830574,,,,,,,0.310572207,5699,18350,0.280784973,0.340359441,0.000331471,7,21118,,,3016.857143,0.000333397,7,20996,,,2999.428571,0.000285769,6,20996,,,3499.333333,3143,,,,,,,,2355,2886,0.35,,,,,,,,0.3,0.38,0.34,,,,,,0.25,,0.27,0.36,0.679365585,8524,12547,0.640661049,0.718070121,0.40551042,2296,5662,0.339576889,0.471443951,0.026232115,297,11322,,,0.141,907,,0.089765957,0.192234043,,,,0.419878296,0.088735906,0.751020686,0.03652968,0,0.272625207,0.154020385,0.083368518,0.224672252,0.130792227,0.044721252,0.216863202,4.07240079,113396,27845,3.19131265,4.95348893,0.267086331,1782,6672,0.178547874,0.355624788,12.78530164,27,21118,,,80.90767118,86,106294,64.7156935,99.92031571,,,,,,,,,,72.33154148,52.55620877,97.10171834,108.528534,76.01205094,150.2492373,,,,5.8,,,,,0,,,,,0.138138138,920,6660,0.100066212,0.176210064,0.074604371,0.041070129,0.108138613,0.061561562,0.034962934,0.088160189,0.005105105,0,0.013696381,0.843364757,8141,9653,0.797733354,0.88899616,,,,,,,,,,0.791075398,0.726311005,0.85583979,0.864872685,0.813203263,0.916542108,0.161,,9653,0.114853815,0.207146185,75.3439227,,,74.01782269,76.67002271,,,,,,,,,,77.0546395,74.33310171,79.77617728,73.79909539,71.64202569,75.95616509,,,,478.8430883,285,59789,422.6102279,535.0759486,,,,,,,,,,457.3270273,379.4874931,535.1665614,545.4791097,445.077456,645.8807634,,,,44.99515437,13,28892,23.95802468,76.94308431,,,,,,,,,,57.30061989,28.604263,102.526637,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.132,,,0.114,0.153,0.169,,,0.146,0.196,0.13,,,0.11,0.152,122.3,20,16358,,,0.109,2340,,,,0.085735856,1877.958192,21904,,,,,,,,,,,,,,,,,,,,,,,,,,0.357,,,0.343,0.369,0.365839293,4348,11885,0.330094612,0.401583974,0.21211226,1436,6770,0.160878217,0.263346303,0.000333397,7,20996,,,2999.428571,0.967419355,299.9,310,,,,,,,,2.81410393,,,,,,2.558745234,,2.717158582,3.175067031,3.028628723,,,,,,3.431653398,,2.903162704,3.399687479,0.067256181,,,,,-3573.7676,,,,,0.850671911,38931,45765,0.765488218,0.935855604,66583,,,57338.23404,75827.76596,,,,92734,48211.61702,137256.383,,,,57025,52821.42553,61228.57447,66466,47764.38298,85167.61702,,,,,,0.62755102,3075,4900,,,43.75004683,,,,,0.228046198,,66583,,,2.964426878,6,2024,,,,,,,,,,,,,,,,,,,,,,,,,,14.97781275,15,106294,8.382968096,24.70362437,14.11180311,,,,,,,,,,,,,34.95469511,16.76213498,64.28292884,,,,13.17101624,14,106294,7.20071714,22.09872723,,,,,,,,,,,,,,,,,,,25.22084835,38,150669,17.84777336,34.61758485,,,,,,,,,,29.48078443,19.07840927,43.51945342,,,,,,,17.2,,2500,,,29,14,0.526829268,5508,10455,,,0.5,,,,,47.17565858,,,,,0.64916297,4537,6989,0.614002689,0.684323252,0.107242544,730,6807,0.065628855,0.148856234,0.839891258,5870,6989,0.800294376,0.879488139,20996,,,,,0.308392075,6475,20996,,,0.120022862,2520,20996,,,0.044389408,932,20996,,,0.018955992,398,20996,,,0.046389789,974,20996,,,0.003429225,72,20996,,,0.602257573,12645,20996,,,0.292960564,6151,20996,,,0.168181349,3257,19366,0.135028966,0.201333732,0.477852924,10033,20996,,,0.314589381,6719,21358,, -48,343,48343,TX,Morris County,2024,1,12000.51715,283,33276,9732.850232,14268.18406,0,,,,2,,,,2,13967.84711,9490.474435,19826.24402,,,,,2,12897.11867,9786.886364,16007.35098,,,,,2,,0.199,,,0.172,0.228,4.067238518,,,3.351663183,4.84343344,5.615204946,,,4.556237871,6.70857477,0.099694812,98,983,0.08096599,0.118423634,0,,,,,,,0.173469388,0.12045803,0.226480746,0.079365079,0.040827572,0.117902587,0.086725664,0.063519343,0.109931985,,,,,,,0.199,,,0.164,0.237,0.397,,,0.314,0.487,7.1,0.008627185,0.172,,,0.279,,,0.231,0.331,0.047690637,571,11973,,,0.166312533,,,0.132855591,0.205227475,0.1,2,20,0.019826373,0.233896636,523.7,63,12030,,,34.63552155,86,2483,27.70394653,42.77458735,,,,,,,48.73646209,32.11763562,70.90899358,49.64539007,30.73127892,75.88825233,27.59134974,19.4268565,38.03104112,,,,,,,0.179578223,1669,9294,0.155748435,0.20340801,0.000249377,3,12030,,,4010,0.000413805,5,12083,,,2416.6,0.000331044,4,12083,,,3020.75,2729,,,,,,,3456,,2461,0.28,,,,,,,0.4,,0.27,0.38,,,,,,,0.29,0.31,0.4,0.87587563,7127,8137,0.841961932,0.909789328,0.490196078,1225,2499,0.38626527,0.594126887,0.062597809,280,4473,,,0.279,771,,0.172957447,0.385042553,,,,,,,0.486597938,0.252572884,0.720622992,0.258252427,0,0.559239432,0.074099252,0.025094705,0.1231038,3.864544294,93835,24281,3.295097143,4.433991445,0.265143272,731,2757,0.162083191,0.368203352,16.62510391,20,12030,,,82.7693656,51,61617,61.62722924,108.82643,,,,,,,88.56088561,45.76070191,154.6980446,,,,97.13949743,68.74168983,133.3315497,,,,9.1,,,,,0,,,,,0.154738878,800,5170,0.11234896,0.197128797,0.11693627,0.081037103,0.152835437,0.028046422,0.006682567,0.049410277,0.016441006,0.003573479,0.029308533,0.800323037,3964,4953,0.748271145,0.852374928,,,,,,,,,,,,,0.749368155,0.699038552,0.799697758,0.42,,4953,0.329973536,0.510026464,72.70465435,,,71.10521778,74.30409092,,,,,,,71.41897547,68.137226,74.70072494,,,,71.7620604,69.63191998,73.89220082,,,,596.6957683,283,33276,521.3030365,672.0885002,,,,,,,691.9745847,526.7631149,892.5967982,,,,624.7156016,529.1333971,720.2978062,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.127,,,0.11,0.145,0.187,,,0.163,0.213,0.117,,,0.101,0.135,208.4,21,10076,,,0.172,2070,,,,0.008627185,111.5840058,12934,,,,,,,,,,,,,,,,,,,,,,,,,,0.386,,,0.374,0.399,0.215037365,1410,6557,0.184058641,0.246016088,0.097255992,280,2879,0.067468758,0.127043226,0.000413805,5,12083,,,2416.6,0.966058394,132.35,137,,,,,,,,2.510516681,,,,,,,2.043505732,2.385379743,2.897117035,2.65264573,,,,,,,2.074949916,2.672725267,3.097005983,0.045534548,,,,,-12728.057,,,,,0.665135642,34031,51164,0.560126352,0.770144933,49847,,,44120.70213,55573.29787,,,,,,,29327,15529.55319,43124.44681,,,,54145,50690.87234,57599.12766,,,,,,0.805048335,1499,1862,,,8.878015049,,,,,0.269705298,,49847,,,6.768189509,4,591,,,,,,,,,,,,,,,,,,,,,,,,,,15.73744325,10,61617,7.196161174,29.87456941,16.22928737,,,,,,,,,,,,,25.88936502,11.83826626,49.14607921,,,,,,,,,,,,,,,,,,,,,,,,,,,32.2855891,28,86726,21.45353949,46.66166541,,,,,,,,,,,,,32.46870378,19.24301162,51.31455007,,,,8.333333333,,1200,,,5,5,0.606952743,5587,9205,,,0.452,,,,,17.80096821,,,,,0.735191638,3587,4879,0.703462084,0.766921191,0.087842278,401,4565,0.051973292,0.123711264,0.841360935,4105,4879,0.808835938,0.873885931,12083,,,,,0.230985682,2791,12083,,,0.221137135,2672,12083,,,0.209054043,2526,12083,,,0.015724572,190,12083,,,0.010510635,127,12083,,,0.001489696,18,12083,,,0.119258462,1441,12083,,,0.626582802,7571,12083,,,0.004369865,50,11442,0,0.013785107,0.515352148,6227,12083,,,1,11973,11973,, -48,345,48345,TX,Motley County,2024,1,11180.97253,27,2965,5112.652618,21224.96868,1,,,,2,,,,2,,,,2,,,,2,13641.35632,5484.532742,28106.40767,1,,,,2,,0.173,,,0.152,0.195,3.776929548,,,3.243980902,4.324912389,5.349613496,,,4.70875351,6.004313452,,,,,,0,,,,,,,,,,,,,,,,,,,,,,0.167,,,0.141,0.195,0.362,,,0.323,0.401,7.6,0.033135185,0.139,,,0.246,,,0.216,0.275,0.248353716,264,1063,,,0.166950846,,,0.150839037,0.185157421,0,0,1,0,0.662081041,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.174434088,131,751,0.149412811,0.199455365,0,0,1067,,,-1067,0,0,1032,,,-1032,,0,1032,,,,989,,,,,,,,,1048,0.33,,,,,,,,,0.35,0.33,,,,,,,,,0.35,0.859934853,792,921,0.78748408,0.932385627,0.658436214,160,243,0.413714564,0.903157864,0.041015625,21,512,,,0.315,64,,0.195851064,0.434148936,,,,,,,,,,0.171428571,0,0.918471376,0.044025157,0.004283918,0.083766397,4.287085687,108519,25313,2.500151322,6.074020052,0.4,86,215,0.168066107,0.631933894,0,0,1067,,,,,,,,,,,,,,,,,,,,,,,,,,6.2,,,,,0,,,,,0.080808081,40,495,0.01452661,0.147089552,0.046464647,0,0.149150769,0.03030303,0,0.107375181,0.008080808,0,0.05572169,0.717081851,403,562,0.58620472,0.847958981,,,,,,,,,,,,,0.694594595,0.556999311,0.832189878,0.27,,562,0.139598579,0.400401421,,,,,,,,,,,,,,,,,,,,,,,,572.4055449,27,2965,344.6255301,893.8821634,,,,,,,,,,,,,623.7837545,341.0283832,1046.603147,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.115,,,0.103,0.127,0.172,,,0.156,0.188,0.1,,,0.09,0.109,,,,,,0.139,180,,,,0.033135185,40.09357418,1210,,,,,,,,,,,,,,,,,,,,,,,,,,0.344,,,0.329,0.359,0.197781885,107,541,0.166803162,0.228760609,0.116591928,26,223,0.073698311,0.159485545,0.000968992,1,1032,,,1032,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-1118.592,,,,,0.734051367,37212,50694,0.433313919,1.034788815,46320,,,39501.10638,53138.89362,,,,,,,,,,68583,13015.51064,124150.4894,64531,51894.06383,77167.93617,,,,,,0.732484076,115,157,,,,,,,,0.320120898,,46320,,,,,71,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,100,,,0,0,0.606511628,652,1075,,,0.445,,,,,,,,,,0.758695652,349,460,0.70228307,0.815108235,0.041958042,18,429,0,0.192487761,0.767391304,353,460,0.680669088,0.854113521,1032,,,,,0.200581395,207,1032,,,0.304263566,314,1032,,,0.03003876,31,1032,,,0.028100775,29,1032,,,0.002906977,3,1032,,,0.002906977,3,1032,,,0.209302326,216,1032,,,0.728682171,752,1032,,,0,0,1147,0,0.062327255,0.493217054,509,1032,,,1,1063,1063,, -48,347,48347,TX,Nacogdoches County,2024,1,10557.58631,1072,182634,9644.701492,11470.47113,0,,,,2,,,,2,17318.79573,14518.98495,20118.60652,,5269.116876,3969.419931,6858.479876,,10641.10865,9402.225789,11879.99151,,,,,2,,0.211,,,0.183,0.239,4.186787795,,,3.363336546,5.037430226,5.706611579,,,4.640717023,6.745494593,0.081258891,457,5624,0.074117785,0.088399996,0,,,,,,,0.129515419,0.109981048,0.149049789,0.077325581,0.064702142,0.08994902,0.063401671,0.05409541,0.072707931,,,,,,,0.195,,,0.161,0.23,0.419,,,0.344,0.494,6.3,0.093391588,0.17,,,0.287,,,0.24,0.334,0.561458865,36300,64653,,,0.175907466,,,0.141872019,0.209476851,0.202247191,18,89,0.149255601,0.259744336,668,432,64668,,,19.56020425,475,24284,17.80113615,21.31927235,,,,,,,23.83419689,19.8575498,27.81084398,35.00091625,30.03706452,39.96476799,10.83809051,8.982110916,12.69407011,,,,,,,0.219854625,11040,50215,0.196024838,0.243684412,0.000711326,46,64668,,,1405.826087,0.000585859,38,64862,,,1706.894737,0.001387561,90,64862,,,720.6888889,3507,,,,,,,4874,,3437,0.34,,,,,,0.5,0.39,0.23,0.34,0.46,,,,,,0.61,0.37,0.32,0.47,0.851650537,32120,37715,0.836708665,0.866592409,0.603473327,8722,14453,0.548836818,0.658109837,0.042821429,1199,28000,,,0.289,4268,,0.222276596,0.355723404,0.819672131,0.457028113,1,0.244604317,0,0.966550278,0.589197414,0.483533265,0.694861562,0.312030838,0.22471944,0.399342235,0.101973684,0.06348497,0.140462399,5.231791517,100780,19263,4.755480269,5.708102766,0.336015557,5011,14913,0.276498888,0.395532226,9.123523226,59,64668,,,85.91170731,280,325916,75.84866253,95.9747521,,,,,,,76.86663639,55.85141567,103.1898716,32.14794177,19.90008264,49.14154392,108.9658107,94.22787427,123.7037471,,,,9.3,,,,,1,,,,,0.21249737,5050,23765,0.183431636,0.241563104,0.156912638,0.132059053,0.181766222,0.051756785,0.03638371,0.067129861,0.012202819,0.004941178,0.019464461,0.759028777,21101,27800,0.729463878,0.788593676,,,,,,,0.725567827,0.611996711,0.839138943,0.704946654,0.674557576,0.735335732,0.78090796,0.743851016,0.817964905,0.214,,27800,0.182747527,0.245252473,74.1632457,,,73.4602515,74.86623991,,,,,,,68.44553872,66.73975341,70.15132403,87.49541861,80.26108515,94.72975207,74.04006231,73.11831809,74.96180653,,,,530.0532858,1072,182634,496.6869718,563.4195998,,,,,,,868.565129,760.6933128,976.4369452,278.732562,214.658037,355.935259,522.3433331,480.8226876,563.8639785,,,,55.41555066,42,75791,39.93865463,74.90572598,,,,,,,80.75370121,41.72661581,141.0604647,,,,69.28806513,44.39417072,103.0951487,,,,3.864394871,22,5693,2.421795692,5.850740275,,,,,,,,,,,,,,,,,,,,,,0.132,,,0.114,0.149,0.188,,,0.164,0.21,0.124,,,0.108,0.141,218.7,118,53965,,,0.17,11040,,,,0.093391588,6025.998825,64524,,,11.81759795,23,194625,7.491343372,17.7321993,,,,,,,,,,,,,13.92818281,7.961159916,22.61849628,,,,0.385,,,0.372,0.398,0.265122157,9441,35610,0.234143433,0.29610088,0.116389704,1786,15345,0.087793959,0.144985448,0.001110049,72,64862,,,900.8611111,0.937107497,662.535,707,,,,,,,,2.842595747,,,,,,,2.228123061,2.804803314,3.216757504,2.966677624,,,,,,,2.33943488,2.970409265,3.310974665,0.159665699,,,,,-6069.484,,,,,0.764241061,37042,48469,0.666350694,0.862131428,51708,,,48564.85106,54851.14894,32935,13132.44681,52737.55319,,,,28159,24395.08511,31922.91489,49902,42891.2766,56912.7234,60625,55557.59575,65692.40426,,,,,,0.689984996,7358,10664,,,45.77596082,,,,,0.263189448,,51708,,,3.242703916,13,4009,,,5.684476569,26,457386,3.713288823,8.329075241,,,,,,,14.8959148,7.696936542,26.0201654,,,,4.422707655,2.285277583,7.725580222,,,,19.84070044,66,325916,15.14054464,25.53891436,20.25061672,,,,,,,,,,,,,29.8318646,22.34611369,39.0208134,,,,19.63696167,64,325916,15.1228533,25.07596166,,,,,,,19.2166591,9.592886984,34.38391131,,,,25.94424064,19.25631547,34.2042469,,,,24.92424342,114,457386,20.34887964,29.4996072,,,,,,,23.58519843,14.19983014,36.83120889,19.91282607,11.80160274,31.47085013,27.64192285,21.74212581,34.64938965,,,,11.01694915,,5900,,,29,36,0.574723742,26785,46605,,,0.518,,,,,50.51151047,,,,,0.590848833,14708,24893,0.564545606,0.61715206,0.162471779,3886,23918,0.137722265,0.187221292,0.841602057,20950,24893,0.820989736,0.862214378,64862,,,,,0.23064352,14960,64862,,,0.159353705,10336,64862,,,0.168989547,10961,64862,,,0.008649132,561,64862,,,0.01342851,871,64862,,,0.000647529,42,64862,,,0.211865191,13742,64862,,,0.5845179,37913,64862,,,0.035984942,2189,60831,0.027440802,0.044529082,0.516866578,33525,64862,,,0.47826087,30921,64653,, -48,349,48349,TX,Navarro County,2024,1,11357.30616,969,143549,10283.63944,12430.97288,0,,,,2,,,,2,14322.21581,10741.07008,17903.36154,,9335.46507,7568.224783,11102.70536,,11856.95484,10277.41273,13436.49695,,,,,2,,0.216,,,0.186,0.248,4.225643177,,,3.365999691,5.194389093,5.526428957,,,4.405218434,6.707905662,0.079867577,386,4833,0.072224679,0.087510476,0,,,,,,,0.144112478,0.115254953,0.172970003,0.073658537,0.062350786,0.084966288,0.064351379,0.053482493,0.075220265,0.118055556,0.065352153,0.170758958,,,,0.194,,,0.159,0.235,0.392,,,0.312,0.481,7,0.081029222,0.144,,,0.293,,,0.246,0.348,0.533881879,28095,52624,,,0.172503691,,,0.137036417,0.213646646,0.269230769,14,52,0.197082941,0.344467642,397.5,213,53591,,,42.40673069,499,11767,38.68589415,46.12756722,,,,,,,50.91487669,39.21065915,65.01716087,49.89196622,43.75618546,56.02774697,32.93780687,27.84991572,38.02569803,,,,63.55932203,35.57367005,104.8314359,0.244631377,10731,43866,0.223184569,0.266078186,0.000279898,15,53591,,,3572.733333,0.000366059,20,54636,,,2731.8,0.000713815,39,54636,,,1400.923077,3592,,,,,,,8349,1999,2997,0.36,,,,,,,0.36,0.19,0.38,0.41,,,,,,0.5,0.28,0.33,0.43,0.804356144,27328,33975,0.781575132,0.827137157,0.551315362,6790,12316,0.489561144,0.61306958,0.038733737,914,23597,,,0.335,4730,,0.280191489,0.389808511,,,,,,,0.443768997,0.272915844,0.61462215,0.262051282,0.196880171,0.327222393,0.102672293,0.067139475,0.13820511,5.142900354,119017,23142,4.458488433,5.827312276,0.298954444,4003,13390,0.231674099,0.366234788,8.023735329,43,53591,,,83.11433366,210,252664,71.87288319,94.35578413,,,,,,,72.90709101,46.21684166,109.3964336,67.50613066,49.94140709,89.24668475,99.1223691,82.5239219,115.7208163,,,,9.1,,,,,0,,,,,0.172758424,3025,17510,0.141677898,0.20383895,0.111431871,0.085856486,0.137007255,0.053398058,0.038303469,0.068492648,0.01541976,0.007686515,0.023153005,0.812345123,18030,22195,0.781402247,0.843287998,,,,,,,0.758441558,0.666869525,0.850013592,0.851122058,0.794597754,0.907646362,0.80747236,0.762413293,0.852531427,0.302,,22195,0.267058673,0.336941327,73.79396972,,,72.98770657,74.60023287,,,,,,,70.75566749,68.29660726,73.21472772,78.99995976,75.64372398,82.35619553,73.26716866,72.16167889,74.37265843,,,,544.3662212,969,143549,508.4558115,580.2766309,,,,,,,667.3209797,554.5097816,780.1321778,406.6468437,335.1819527,478.1117347,571.415532,523.2334999,619.597564,,,,85.8730426,51,59390,63.93812062,112.9071921,,,,,,,,,,83.40946102,51.631771,127.5002214,94.40034327,59.16019254,142.9232542,,,,7.971470527,38,4767,5.641086982,10.9414661,,,,,,,,,,,,,,,,,,,,,,0.132,,,0.115,0.152,0.183,,,0.16,0.21,0.125,,,0.107,0.144,218.8,95,43420,,,0.144,7450,,,,0.081029222,3867.929911,47735,,,10.36282853,16,154398,5.92325189,16.82858431,,,,,,,,,,,,,13.19356154,6.586178386,23.60692604,,,,0.371,,,0.358,0.384,0.303168026,9072,29924,0.274572281,0.33176377,0.123960747,1819,14674,0.094173513,0.153747981,0.00049418,27,54636,,,2023.555556,0.885686547,638.58,721,,,0.116247906,347,2985,0.051816611,0.180679202,2.661927044,,,,,,,2.400235959,2.488245542,2.965589147,2.933704107,,,,,,,2.407740535,2.903588646,3.134951218,0.101502289,,,,,-5680.4967,,,,,0.847415453,39165,46217,0.755654705,0.939176202,50822,,,44022.17021,57621.82979,61618,48728.46809,74507.53192,,,,28125,19976.40426,36273.59575,48818,44687.10638,52948.89362,64560,56360.17021,72759.82979,,,,,,0.675620636,6967,10312,,,37.02884906,,,,,0.392251387,,50822,,,3.834565872,14,3651,,,6.58064147,23,349510,4.171562198,9.874193269,,,,,,,,,,,,,,,,,,,19.80949944,48,252664,14.5030433,26.42309621,18.99756198,,,,,,,,,,,,,29.44338975,20.50839977,40.94862763,,,,16.62286673,42,252664,11.98030021,22.46928679,,,,,,,,,,,,,20.25858639,13.46168353,29.27929785,,,,22.31695803,78,349510,17.64062923,27.85257362,,,,,,,22.63365171,10.85371576,41.62409135,21.41524153,13.25637204,32.73547153,23.76315368,17.39761511,31.69671692,,,,18.67924528,,5300,,,40,59,0.588852964,19123,32475,,,0.539,,,,,44.33594654,,,,,0.678757338,12257,18058,0.651475576,0.706039099,0.131159926,2257,17208,0.105517871,0.15680198,0.810887141,14643,18058,0.783666457,0.838107826,54636,,,,,0.262555824,14345,54636,,,0.167051029,9127,54636,,,0.124917637,6825,54636,,,0.011000073,601,54636,,,0.009206384,503,54636,,,0.016948532,926,54636,,,0.308898895,16877,54636,,,0.524196501,28640,54636,,,0.047988337,2370,49387,0.037660172,0.058316502,0.499029944,27265,54636,,,0.536713287,28244,52624,, -48,351,48351,TX,Newton County,2024,1,12574.87253,320,35648,10428.06075,14721.68432,0,,,,2,,,,2,16829.46976,11787.15372,23299.08,,,,,2,12230.36687,9720.7704,14739.96335,,,,,2,,0.241,,,0.208,0.275,4.726452475,,,3.820826592,5.735929052,6.172231466,,,4.970749355,7.445687807,0.096428571,81,840,0.076466733,0.11639041,0,,,,,,,0.164634146,0.107875443,0.22139285,,,,0.084664537,0.062856839,0.106472234,,,,,,,0.248,,,0.205,0.292,0.421,,,0.335,0.512,5.4,0.141260618,0.187,,,0.323,,,0.27,0.379,0.022509618,275,12217,,,0.162834326,,,0.128929514,0.202898405,0.227272727,5,22,0.117752454,0.350313422,294.1,36,12241,,,33.08550186,89,2690,26.57037477,40.71455702,,,,,,,30.25210084,17.92931224,47.81136179,,,,36.18609994,27.80639276,46.29774112,,,,,,,0.2248311,2030,9029,0.199809823,0.249852376,8.16927E-05,1,12241,,,12241,,0,12052,,,,0.000248921,3,12052,,,4017.333333,3035,,,,,,,4826,,2641,0.34,,,,,,,0.35,,0.33,0.29,,,,,,,0.18,,0.3,0.819232971,7156,8735,0.781207601,0.857258341,0.417649451,1027,2459,0.311373737,0.523925166,0.068195781,333,4883,,,0.291,676,,0.179,0.403,,,,,,,0.779116466,0.684292843,0.873940089,0.798833819,0.747128383,0.850539256,0.141232795,0.042816726,0.239648864,5.067857756,88500,17463,3.536166784,6.599548729,0.362258431,956,2639,0.263685142,0.46083172,10.62004738,13,12241,,,103.0650654,69,66948,80.19077277,130.4354366,,,,,,,122.2961095,69.90279335,198.6012199,,,,104.0922543,77.50352044,136.8620908,,,,9,,,,,0,,,,,0.149268293,765,5125,0.102313023,0.196223563,0.060120241,0.031531025,0.088709456,0.059512195,0.027181498,0.091842893,0.037073171,0.0107035,0.063442842,0.885098318,3736,4221,0.853273287,0.916923349,,,,,,,,,,,,,0.848425197,0.761330033,0.935520361,0.583,,4221,0.475329964,0.690670036,73.36518703,,,71.81328514,74.91708892,,,,,,,69.88882208,66.35151778,73.42612638,,,,73.57607375,71.78064002,75.37150748,,,,621.2436218,320,35648,547.4405912,695.0466525,,,,,,,794.5689917,617.0139125,1007.305528,,,,608.0287027,523.1736946,692.8837108,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.15,,,0.13,0.17,0.208,,,0.181,0.235,0.132,,,0.113,0.151,122.3,13,10628,,,0.187,2340,,,,0.141260618,2040.509621,14445,,,,,,,,,,,,,,,,,,,,,,,,,,0.388,,,0.374,0.402,0.260747109,1759,6746,0.229768386,0.291725833,0.122778007,297,2419,0.091799284,0.153756731,0.000165948,2,12052,,,6026,0.956762295,116.725,122,,,0.338526912,239,706,0.143884465,0.53316936,2.581350475,,,,,,,2.121248926,,2.916182494,2.681688325,,,,,,,2.292448037,,3.001337645,0.108088579,,,,,-8213.381667,,,,,0.549840363,34271,62329,0.390484329,0.709196397,47804,,,41377.10638,54230.89362,,,,,,,21234,16421.57447,26046.42553,4000,3463.829787,4536.170213,51463,45647.34043,57278.65957,,,,,,0.713209734,1231,1726,,,23.79047603,,,,,0.28468329,,47804,,,3.430531732,2,583,,,,,,,,,,,,,,,,,,,,,,,,,,22.77384535,16,66948,12.45067317,38.21064276,23.89914561,,,,,,,,,,,,,28.20629145,14.57460239,49.27071475,,,,28.38023541,19,66948,17.08675564,44.31925311,,,,,,,,,,,,,28.57434432,15.62185994,47.94289442,,,,29.49324289,28,94937,19.59804571,42.62594767,,,,,,,,,,,,,31.64374892,19.83096898,47.90901615,,,,,,1000,,,-888,-888,0.554504095,6094,10990,,,0.348,,,,,3.307160206,,,,,0.805932735,3858,4787,0.781883873,0.829981596,0.067732832,288,4252,0.034025041,0.101440622,0.881972008,4222,4787,0.845177057,0.918766959,12052,,,,,0.195071358,2351,12052,,,0.23572851,2841,12052,,,0.16702622,2013,12052,,,0.011118487,134,12052,,,0.005559243,67,12052,,,0.000248921,3,12052,,,0.044722868,539,12052,,,0.752821109,9073,12052,,,0,0,11756,0,0.009324347,0.497510787,5996,12052,,,1,12217,12217,, -48,353,48353,TX,Nolan County,2024,1,10582.37446,314,40536,8800.013203,12364.73571,0,,,,2,,,,2,,,,2,8658.053146,6504.195994,11296.88126,,13318.54424,10307.14463,16329.94385,,,,,2,,0.234,,,0.202,0.269,4.452126764,,,3.584233274,5.435350089,5.61439168,,,4.520621325,6.844469348,0.079850746,107,1340,0.065337242,0.094364251,0,,,,,,,0.131578947,0.055579987,0.207577908,0.081705151,0.059078636,0.104331666,0.069767442,0.050731077,0.088803807,,,,,,,0.195,,,0.161,0.235,0.392,,,0.31,0.479,6.7,0.070924862,0.159,,,0.318,,,0.264,0.374,0.601099199,8859,14738,,,0.166457335,,,0.131873502,0.205980098,0.244897959,12,49,0.171048131,0.323578132,596,87,14597,,,48.82405478,164,3359,41.3515192,56.29659036,,,,,,,60.60606061,29.0629618,111.4567033,54.11764706,43.62646163,66.37049,43.57142857,33.3286904,55.9693228,,,,,,,0.216458423,2512,11605,0.191437147,0.2414797,0.000479551,7,14597,,,2085.285714,0.000552753,8,14473,,,1809.125,0.000690942,10,14473,,,1447.3,3637,,,,,,,,4921,3296,0.3,,,,,,,,0.17,0.33,0.31,,,,,,,0.05,0.25,0.32,0.838719832,7993,9530,0.813229596,0.864210068,0.542546771,1798,3314,0.449060862,0.63603268,0.037452079,254,6782,,,0.253,927,,0.151723404,0.354276596,,,,,,,0.179591837,0.012448955,0.346734719,0.104347826,0.038733272,0.16996238,0.095354523,0.045071902,0.145637144,4.949297435,100738,20354,4.192619262,5.705975609,0.288572933,1096,3798,0.181698643,0.395447223,13.01637323,19,14597,,,82.80505518,61,73667,63.33930601,106.3665575,,,,,,,,,,48.93222886,26.75170486,82.09996547,112.7339229,82.22889693,150.8468585,,,,7.2,,,,,1,,,,,0.158658205,875,5515,0.118901978,0.198414432,0.105118327,0.07100453,0.139232123,0.050770626,0.025763804,0.075777447,0.01087942,0.001209311,0.020549528,0.811863585,5023,6187,0.751976632,0.871750538,,,,,,,,,,0.773395482,0.697025442,0.849765523,0.85864149,0.835986187,0.881296792,0.196,,6187,0.149823062,0.242176938,73.27692253,,,71.9224832,74.63136186,,,,,,,,,,74.47720101,72.28232013,76.6720819,71.45862056,69.43601776,73.48122337,,,,592.5768064,314,40536,524.3381323,660.8154805,,,,,,,,,,544.1764466,436.4454228,670.440602,672.2305613,574.446752,770.0143705,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.14,,,0.122,0.161,0.185,,,0.161,0.211,0.134,,,0.115,0.154,158.8,19,11966,,,0.159,2340,,,,0.070924862,1079.192695,15216,,,24.9173198,11,44146,12.43863627,44.583968,,,,,,,,,,,,,,,,,,,0.359,,,0.347,0.371,0.255313765,2018,7904,0.224335042,0.286292489,0.136701718,533,3899,0.099765548,0.173637889,0.000898224,13,14473,,,1113.307692,0.917929293,181.75,198,,,0.20104712,192,955,0.069556054,0.332538187,3.016388179,,,,,,,,2.921026289,3.18203265,3.381898433,,,,,,,,3.339668619,3.490262661,0.062523322,,,,,4323.84925,,,,,0.811397527,36293,44729,0.68343134,0.939363715,50579,,,43590.91489,57567.08511,,,,,,,34469,5494.361702,63443.6383,41960,37715.91489,46204.08511,53156,47488.08511,58823.91489,,,,,,0.642313271,3543,5516,,,55.9944739,,,,,0.273749975,,50579,,,6.776379477,7,1033,,,,,,,,,,,,,,,,,,,,,,,,,,19.54103379,13,73667,10.09713731,34.13425348,17.64697897,,,,,,,,,,,,,,,,,,,14.93205913,11,73667,7.454030118,26.71757845,,,,,,,,,,,,,,,,,,,15.41916023,16,103767,8.813382341,25.03975021,,,,,,,,,,,,,19.30976372,9.639364476,34.5505012,,,,44.375,,1600,,,13,58,0.512141491,5357,10460,,,0.522,,,,,30.94834958,,,,,0.654497355,3711,5670,0.61543816,0.693556549,0.114157806,612,5361,0.073924243,0.15439137,0.76984127,4365,5670,0.730782312,0.808900228,14473,,,,,0.255233884,3694,14473,,,0.184205072,2666,14473,,,0.046431286,672,14473,,,0.012298763,178,14473,,,0.00877496,127,14473,,,0.001381884,20,14473,,,0.401091688,5805,14473,,,0.525115733,7600,14473,,,0.027574069,376,13636,0.011517522,0.043630615,0.496165273,7181,14473,,,0.29624101,4366,14738,, -48,355,48355,TX,Nueces County,2024,1,10181.33335,5986,1012559,9818.842906,10543.8238,0,,,,2,3773.149489,2441.783406,5569.912967,1,15224.57956,12756.3964,17692.76272,,9305.820769,8877.214245,9734.427292,,12162.60635,11400.73275,12924.47995,,,,,2,,0.218,,,0.188,0.253,4.004200932,,,3.282496263,4.765810531,5.517676781,,,4.713164463,6.323272853,0.088400449,2755,31165,0.085248699,0.0915522,0,,,,0.082390953,0.060729911,0.104051996,0.150699677,0.127694,0.173705354,0.08928654,0.085486031,0.093087049,0.076703809,0.070766596,0.082641023,,,,0.167487685,0.116119428,0.218855941,0.153,,,0.123,0.185,0.405,,,0.357,0.456,6.5,0.099167188,0.154,,,0.298,,,0.253,0.343,0.922622587,325850,353178,,,0.195517386,,,0.164879471,0.228807234,0.234234234,52,222,0.200438558,0.269312978,745.2,2631,353079,,,28.46199107,2467,86677,27.33884362,29.58513852,,,,,,,21.15196876,16.32464293,26.95992054,33.02280859,31.60871529,34.4369019,16.96397342,15.01485978,18.91308706,,,,10.3480715,5.165720007,18.51555834,0.211561722,62094,293503,0.19607236,0.227051083,0.000790191,279,353079,,,1265.516129,0.000582926,205,351674,,,1715.482927,0.001544044,543,351674,,,647.6500921,2473,,,,,,2600,4398,2813,2113,0.42,,,,,,0.39,0.39,0.38,0.44,0.41,,,,,0.36,0.4,0.33,0.34,0.44,0.844921332,195797,231734,0.836171209,0.853671456,0.587668253,56452,96061,0.561991592,0.613344913,0.046777781,7676,164095,,,0.253,20875,,0.198191489,0.307808511,0.363636364,0.090586795,0.636685932,0.161410019,0.009059201,0.313760836,0.47488,0.361814331,0.587945669,0.28414079,0.259893036,0.308388543,0.115349159,0.076749295,0.153949023,4.938662149,125363,25384,4.609626242,5.267698057,0.340994096,28992,85022,0.312948556,0.369039636,6.372511534,225,353079,,,75.91535438,1368,1802007,71.8924228,79.93828596,,,,32.43330901,16.75876404,56.65446376,112.5420023,87.73201194,142.1900494,56.07497534,51.77068692,60.37926376,120.3602293,110.9012585,129.8192001,,,,9.3,,,,,1,,,,,0.182978234,23875,130480,0.171626915,0.194329554,0.138311084,0.126948292,0.149673875,0.041807174,0.03603045,0.047583897,0.014561619,0.010920625,0.018202612,0.819261107,131389,160375,0.806628467,0.831893747,,,,0.734772727,0.659399039,0.810146416,0.804267325,0.741507261,0.867027389,0.818963674,0.804541773,0.833385574,0.834669599,0.814481624,0.854857574,0.17,,160375,0.157790867,0.182209133,75.49228921,,,75.18187345,75.80270497,,,,88.38332967,84.22790166,92.53875768,71.15258988,69.35207666,72.9531031,76.72813147,76.30782163,77.14844131,73.41352297,72.86505816,73.96198777,,,,505.1775484,5986,1012559,492.0494815,518.3056154,,,,184.0546671,134.2507371,246.2796255,676.1081549,593.5022481,758.7140617,464.8575562,448.5705937,481.1445187,594.4909741,568.8534452,620.128503,,,,49.62360242,194,390943,42.64057906,56.60662578,,,,,,,78.92659826,37.84837171,145.1488243,48.9326349,40.79782753,57.06744227,48.50444624,34.49140289,66.30717476,,,,5.303219366,170,32056,4.506012184,6.100426548,,,,,,,,,,5.410767427,4.442658299,6.378876556,4.239930166,2.936274895,5.924877428,,,,,,,0.124,,,0.107,0.142,0.172,,,0.15,0.195,0.128,,,0.111,0.146,224,656,292876,,,0.154,54330,,,,0.099167188,33738.9583,340223,,,21.97453735,237,1078521,19.17683416,24.77224055,,,,,,,29.72571274,14.8389687,53.18751118,15.29539409,12.39721743,18.19357074,38.28947498,31.35134308,45.22760688,,,,0.37,,,0.356,0.383,0.259280291,54334,209557,0.239024972,0.27953561,0.098348255,8711,88573,0.078092936,0.118603574,0.001373431,483,351674,,,728.1035197,0.914560142,3877.735,4240,,,0.140099657,2896,20671,0.104887324,0.175311989,2.905334987,,,,,,3.624833496,2.752007415,2.803318814,3.305319718,3.125923787,,,,,,4.05892523,2.890363774,3.053374936,3.420754416,0.130262027,,,,,-2420.712867,,,,,0.741458184,41492,55960,0.710828352,0.772088017,60250,,,57214.08511,63285.91489,57731,41897.29787,73564.70213,102500,79914.12766,125085.8723,45938,37105.48936,54770.51064,57304,55222.46809,59385.53192,80396,75778.97872,85013.02128,,,,,,0.679417276,40248,59239,,,49.20474418,,,,,0.281377593,,60250,,,5.161854768,118,22860,,,7.887210512,199,2523072,6.791355835,8.983065189,,,,,,,18.16551051,10.38315882,29.49965099,8.284292178,6.881610644,9.686973713,6.26508387,4.586828806,8.356743915,,,,15.99866892,290,1802007,14.12623709,17.87110075,16.09316723,,,,,,,16.50957544,8.241520574,29.54019087,9.942554123,8.089771932,11.79533631,28.64179493,23.93089763,33.35269223,,,,17.14754715,309,1802007,15.235587,19.05950731,,,,,,,33.76260069,20.89958196,51.6097216,12.29865257,10.28286118,14.31444396,26.89722165,22.42569223,31.36875108,,,,12.84148847,324,2523072,11.44319306,14.23978388,,,,,,,18.16551051,10.38315882,29.49965099,11.25179982,9.617083594,12.88651606,16.75228948,13.79170346,19.7128755,,,,19.51289398,,34900,,,111,570,0.499301961,127322,255000,,,0.55,,,,,159.1851137,,,,,0.593865757,77275,130122,0.579541795,0.608189719,0.149678452,18899,126264,0.13810919,0.161247713,0.86077681,112006,130122,0.850263688,0.871289931,351674,,,,,0.237970393,83688,351674,,,0.157785335,55489,351674,,,0.034210661,12031,351674,,,0.00897422,3156,351674,,,0.023243117,8174,351674,,,0.001760153,619,351674,,,0.65444986,230153,351674,,,0.27633547,97180,351674,,,0.02588079,8569,331095,0.022428529,0.02933305,0.503059652,176913,351674,,,0.062770048,22169,353178,, -48,357,48357,TX,Ochiltree County,2024,1,8936.944376,129,27873,6711.403,11162.48575,0,,,,2,,,,2,,,,2,7550.387411,5130.121925,10717.17224,,10746.21861,6954.386076,15863.53855,1,,,,2,,0.219,,,0.186,0.253,4.137308869,,,3.269789582,5.129990698,5.188267895,,,4.112481767,6.337131575,0.074948665,73,974,0.058412247,0.091485084,0,,,,,,,,,,0.062200957,0.043295999,0.081105915,0.085106383,0.054953802,0.115258964,,,,,,,0.168,,,0.136,0.204,0.39,,,0.309,0.475,8,0.028750322,0.121,,,0.299,,,0.246,0.355,0.829755367,8310,10015,,,0.185632214,,,0.147974077,0.22726174,0.25,3,12,0.099776571,0.4182543,255.6,25,9782,,,31.26122889,87,2783,25.03896282,38.56061034,,,,,,,,,,33.91626921,26.11966007,43.31031861,28.01461632,17.75886363,42.03567953,,,,,,,0.315746084,2681,8491,0.283575871,0.347916297,0.000408914,4,9782,,,2445.5,0.000416406,4,9606,,,2401.5,0.000208203,2,9606,,,4803,3449,,,,,,,,1381,3257,0.28,,,,,,,,0.22,0.3,0.28,,,,,,,,0.19,0.29,0.763079961,4638,6078,0.728090748,0.798069173,0.422669492,1197,2832,0.335476298,0.509862685,0.033975659,134,3944,,,0.156,444,,0.097617021,0.214382979,,,,,,,,,,0.173187023,0.087370503,0.259003542,0.086904762,0.00986026,0.163949264,3.903996152,113618,29103,3.276651774,4.531340529,0.28718802,863,3005,0.169971796,0.404404244,16.3565733,16,9782,,,81.24136811,40,49236,58.04002446,110.627685,,,,,,,,,,62.05511955,36.14939394,99.35625777,112.1076233,71.06661648,168.2164793,,,,6.1,,,,,0,,,,,0.166666667,565,3390,0.11213188,0.221201453,0.084544646,0.04060335,0.128485941,0.08259587,0.037654239,0.127537502,0,0,0.009941123,0.745420483,3581,4804,0.674352311,0.816488654,,,,,,,,,,0.775487256,0.682049073,0.868925439,0.779290429,0.697766808,0.86081405,0.174,,4804,0.110705107,0.237294894,75.11298712,,,73.24626883,76.9797054,,,,,,,,,,77.70803746,73.34169918,82.07437575,73.63770336,70.65143706,76.62396965,,,,438.4899158,129,27873,361.6459684,515.3338632,,,,,,,,,,410.1535514,294.3332698,556.4196055,488.2126967,377.5836643,621.1262543,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.13,,,0.111,0.149,0.171,,,0.147,0.194,0.123,,,0.105,0.143,,,,,,0.121,1220,,,,0.028750322,293.9145454,10223,,,,,,,,,,,,,,,,,,,,,,,,,,0.351,,,0.337,0.365,0.366944243,2027,5524,0.328816584,0.405071903,0.222151088,694,3124,0.166151088,0.278151088,0.00062461,6,9606,,,1601,0.975,163.8,168,,,,,,,,2.81398929,,,,,,,,2.699521471,3.102898587,2.873689356,,,,,,,,2.818558216,3.098982586,0.012373502,,,,,-5164.915,,,,,0.540485588,31633,58527,0.445827417,0.635143759,69383,,,59756.95745,79009.04255,193496,192449.8723,194542.1277,,,,,,,60981,44564.65957,77397.34043,63583,49342.31915,77823.68085,,,,,,0.616959064,1266,2052,,,,,,,,0.218843233,,69383,,,1.239157373,1,807,,,,,,,,,,,,,,,,,,,,,,,,,,24.11990341,12,49236,12.04056888,43.1571698,24.37241043,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,24.18586123,17,70289,14.08915544,38.72390675,,,,,,,,,,,,,,,,,,,,,1200,,,-888,9,0.597727273,3156,5280,,,0.523,,,,,26.73387599,,,,,0.704940282,2597,3684,0.661683705,0.74819686,0.090653943,323,3563,0.041572488,0.139735399,0.874864278,3223,3684,0.826392157,0.923336399,9606,,,,,0.30002082,2882,9606,,,0.128877785,1238,9606,,,0.006662503,64,9606,,,0.017072663,164,9606,,,0.007183011,69,9606,,,0.000832813,8,9606,,,0.57599417,5533,9606,,,0.397564023,3819,9606,,,0.152705061,1400,9168,0.117919606,0.187490516,0.496044139,4765,9606,,,0.162156765,1624,10015,, -48,359,48359,TX,Oldham County,2024,1,7230.119819,28,5593,3467.123485,13296.44777,1,,,,2,,,,2,,,,2,,,,2,8314.114188,3342.705111,17130.25284,1,,,,2,,0.175,,,0.148,0.206,3.797503584,,,3.060674635,4.596584638,5.430205235,,,4.265392252,6.628964429,,,,,,0,,,,,,,,,,,,,,,,,,,,,,0.174,,,0.14,0.216,0.366,,,0.287,0.454,5,0.32554411,0.115,,,0.251,,,0.205,0.302,0,0,1758,,,0.189942827,,,0.151358666,0.234434412,0.05,1,20,0.002072424,0.180379928,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.151563753,189,1247,0.130116945,0.173010562,0,0,1717,,,-1717,0,0,1752,,,-1752,0.002283105,4,1752,,,438,3623,,,,,,,,,2982,0.35,,,,,,,,,0.36,0.4,,,,,,,,,0.39,0.834869432,1087,1302,0.799620328,0.870118535,0.592905405,351,592,0.476518454,0.709292357,0.029818956,28,939,,,0.284,57,,0.172,0.396,,,,,,,,,,0.320895522,0.054012302,0.587778743,0.126279864,0.028396304,0.224163423,4.335580524,144700,33375,2.769229368,5.90193168,0.057471264,25,435,0.009268983,0.105673546,23.29644729,4,1717,,,,,,,,,,,,,,,,,,,,,,,,,,5,,,,,0,,,,,0.04496124,29,645,0.009670041,0.08025244,0.049921997,0,0.121599176,0.012403101,0,0.057279691,0.00620155,0,0.033634794,0.76201373,666,874,0.680238923,0.843788537,,,,,,,,,,,,,0.766566265,0.643096633,0.890035898,0.493,,874,0.356721532,0.629278468,77.23910523,,,72.96891692,81.50929353,,,,,,,,,,,,,,,,,,,369.6182564,28,5593,241.4469166,541.5763845,,,,,,,,,,,,,409.9217764,256.8957949,620.6264958,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.116,,,0.1,0.135,0.175,,,0.151,0.201,0.102,,,0.087,0.119,0,0,1537,,,0.115,260,,,,0.32554411,668.0165135,2052,,,,,,,,,,,,,,,,,,,,,,,,,,0.335,,,0.32,0.347,0.15704825,166,1057,0.132026973,0.182069526,0.12,24,200,0.084255319,0.155744681,0,0,1752,,,-1752,,,,,,,,,,,2.983431801,,,,,,,,,3.074370737,3.420899384,,,,,,,,,3.596827615,0.127932093,,,,,3840.5805,,,,,0.614887472,34917,56786,0.372690796,0.857084149,66411,,,57560.61702,75261.38298,,,,,,,,,,54583,36419.93617,72746.06383,73800,67438.6383,80161.3617,,,,,,0.384960718,343,891,,,,,,,,0.228636822,,66411,,,7.299270073,1,137,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,300,,,0,0,0.764393939,1009,1320,,,0.501,,,,,18.1387729,,,,,0.716323296,452,631,0.656870599,0.775775994,0.109289618,60,549,0,0.238392076,0.874801902,552,631,0.830223354,0.919380449,1752,,,,,0.206621005,362,1752,,,0.168949772,296,1752,,,0.032534247,57,1752,,,0.019977169,35,1752,,,0.022260274,39,1752,,,0.000570776,1,1752,,,0.197488585,346,1752,,,0.719178082,1260,1752,,,0.015647922,32,2045,0,0.049882542,0.480593607,842,1752,,,1,1758,1758,, -48,361,48361,TX,Orange County,2024,1,12006.42672,1821,234105,11190.30174,12822.55169,0,,,,2,,,,2,19555.73448,15857.31065,23254.15831,,4140.362414,2704.622191,6066.59024,,12150.67215,11230.90062,13070.44367,,,,,2,,0.182,,,0.156,0.212,4.041626238,,,3.25034603,4.879976955,6.093999113,,,5.096578049,7.095840159,0.09270903,693,7475,0.086134196,0.099283864,0,,,,0.086206897,0.035130292,0.137283501,0.153751538,0.128956231,0.178546844,0.066905615,0.049978326,0.083832905,0.087375178,0.079984365,0.094765992,,,,,,,0.194,,,0.156,0.232,0.375,,,0.312,0.44,6.5,0.098571811,0.158,,,0.257,,,0.216,0.304,0.505034902,42831,84808,,,0.192751395,,,0.157164417,0.231871949,0.161016949,19,118,0.117119278,0.209967684,312.7,265,84742,,,33.2554777,598,17982,30.59003918,35.92091622,,,,,,,42.33654877,33.51824435,52.76397169,32.27459016,24.80068125,41.29322095,32.96540485,29.90249313,36.02831656,,,,33.63914373,16.79253935,60.18972022,0.160003393,11318,70736,0.143322542,0.176684244,0.000165207,14,84742,,,6053,0.000329668,28,84934,,,3033.357143,0.000353215,30,84934,,,2831.133333,2902,,,,,,8571,5811,1339,2651,0.35,,,,,,0.18,0.32,0.28,0.35,0.38,,,,,,0.36,0.28,0.36,0.39,0.893152667,50623,56679,0.879744565,0.906560769,0.578519815,12890,22281,0.528156448,0.628883182,0.057182186,1994,34871,,,0.186,3922,,0.119276596,0.252723404,,,,0.12605042,0,0.849685087,0.496190476,0.410230157,0.582150796,0.227938415,0.154326772,0.301550059,0.086999735,0.056191418,0.117808052,4.705995414,139561,29656,4.112514429,5.299476399,0.232694305,4928,21178,0.181551034,0.283837577,9.558424394,81,84742,,,98.18056168,412,419635,88.70002385,107.6610995,,,,,,,116.0637798,83.64856366,156.8845132,42.26304519,23.65430557,69.70646588,104.5522029,93.59864429,115.5057615,,,,8.2,,,,,1,,,,,0.11038961,3485,31570,0.09182372,0.128955501,0.076665604,0.060145415,0.093185794,0.023123218,0.016055905,0.030190531,0.01678809,0.009575489,0.024000691,0.861072793,32459,37696,0.840651697,0.881493889,,,,,,,0.776183644,0.653537696,0.898829593,0.891232424,0.658350382,1,0.846036275,0.828003266,0.864069284,0.336,,37696,0.302766203,0.369233797,72.56720791,,,71.9654838,73.16893203,,,,,,,67.34785141,65.07216055,69.62354226,92.64781316,83.77804231,101.517584,72.21454081,71.56057403,72.86850758,,,,618.3082343,1821,234105,588.963567,647.6529016,,,,,,,877.2825804,750.4183552,1004.146806,186.4286611,124.8542002,267.7426552,633.900483,601.2334341,666.567532,,,,61.7821957,56,90641,46.66960667,80.22932007,,,,,,,150.9759517,82.53995769,253.3119931,,,,57.35589332,40.58844376,78.72544476,,,,6.528267398,50,7659,4.845405893,8.606706706,,,,,,,,,,,,,6.584647375,4.659688381,9.037942977,,,,,,,0.122,,,0.106,0.142,0.189,,,0.165,0.215,0.108,,,0.092,0.124,222.7,155,69610,,,0.158,13460,,,,0.098571811,8066.821266,81837,,,28.28504956,71,251016,22.09085837,35.6777413,,,,,,,,,,,,,31.66513367,24.33235815,40.51346134,,,,0.366,,,0.35,0.38,0.194154993,9633,49615,0.171516696,0.216793291,0.083427334,1849,22163,0.061980525,0.104874142,0.000447406,38,84934,,,2235.105263,0.904606458,896.465,991,,,0.141061453,606,4296,0.081438747,0.200684158,2.763987689,,,,,,,2.24803118,2.668853705,2.841929461,2.853136842,,,,,,,2.306153092,2.789836858,2.925363326,0.207859386,,,,,-3176.87708,,,,,0.647806285,45373,70041,0.562716059,0.732896511,63901,,,56713.93617,71088.06383,,,,86151,72982.65957,99319.34043,42500,29996.51064,55003.48936,50549,36814.70213,64283.29787,78865,73804.74468,83925.25532,,,,,,0.551474975,8319,15085,,,72.42936876,,,,,0.232202939,,63901,,,4.250797024,24,5646,,,7.641897296,45,588859,5.574052326,10.22545983,,,,,,,29.58813319,16.56025354,48.80112607,,,,5.928686373,3.939569039,8.568602512,,,,19.44571182,80,419635,15.32100919,24.33920805,19.06418673,,,,,,,,,,,,,22.60110948,17.61867362,28.55514216,,,,16.68116339,70,419635,13.00378522,21.07564642,,,,,,,41.45134993,23.20000589,68.36769799,,,,15.83219073,11.85939728,20.70889528,,,,23.43515171,138,588859,19.52508382,27.34521959,,,,,,,,,,,,,26.04387228,21.44121039,30.64653417,,,,6.829268293,,8200,,,32,24,0.585411076,35994,61485,,,0.537,,,,,62.02097413,,,,,0.751518834,23503,31274,0.730710515,0.772327153,0.093868081,2832,30170,0.073803622,0.11393254,0.905480591,28318,31274,0.886816892,0.92414429,84934,,,,,0.252030989,21406,84934,,,0.16085431,13662,84934,,,0.08901029,7560,84934,,,0.007994443,679,84934,,,0.012174159,1034,84934,,,0.001083194,92,84934,,,0.096698613,8213,84934,,,0.780947559,66329,84934,,,0.015715332,1245,79222,0.010303094,0.02112757,0.50275508,42701,84934,,,0.360685313,30589,84808,, -48,363,48363,TX,Palo Pinto County,2024,1,10485.62794,643,79945,9162.845896,11808.40998,0,,,,2,,,,2,21735.62052,10850.34345,38891.02912,1,6172.414002,4299.31251,8584.333689,,11681.84277,9973.055254,13390.63029,,,,,2,,0.19,,,0.163,0.221,4.047559161,,,3.252835508,4.940742293,5.536240447,,,4.476077456,6.67924617,0.070153591,169,2409,0.059954341,0.080352841,0,,,,,,,,,,0.061840121,0.043505459,0.080174782,0.069360676,0.057131106,0.081590245,,,,,,,0.187,,,0.149,0.226,0.393,,,0.311,0.477,5.1,0.243137014,0.153,,,0.274,,,0.224,0.326,0.565278609,16059,28409,,,0.175401694,,,0.140093391,0.214432779,0.268292683,11,41,0.186632551,0.353859022,327.7,94,28686,,,38.87207265,244,6277,33.99455493,43.74959037,,,,,,,,,,38.005923,29.99368009,47.50088277,41.64524422,35.23220379,48.05828464,,,,,,,0.2141291,4883,22804,0.191490802,0.236767398,0.000488043,14,28686,,,2049,0.000342009,10,29239,,,2923.9,0.000239406,7,29239,,,4177,4447,,,,,,,10946,5832,4236,0.33,,,,,,,0.29,0.26,0.33,0.44,,,,,,0.2,0.34,0.38,0.45,0.875044939,17038,19471,0.858560913,0.891528964,0.475571563,3037,6386,0.409897061,0.541246064,0.037761705,496,13135,,,0.238,1586,,0.159361702,0.316638298,,,,,,,0.354285714,0,0.770145009,0.237518911,0.144570852,0.33046697,0.184339715,0.127159911,0.24151952,4.668421053,117971,25270,4.102700376,5.23414173,0.198915826,1321,6641,0.128738109,0.269093543,11.50386948,33,28686,,,96.7920354,140,144640,80.75841209,112.8256587,,,,,,,,,,51.09687968,28.59853568,84.27653247,111.2584255,91.35176738,131.1650836,,,,8.2,,,,,1,,,,,0.144170295,1490,10335,0.116883651,0.17145694,0.112371638,0.0873984,0.137344876,0.030962748,0.016469319,0.045456177,0.005321722,0.001332721,0.009310724,0.737505215,8839,11985,0.694595411,0.780415019,,,,,,,,,,0.524526198,0.434382839,0.614669558,0.757614943,0.69578809,0.819441795,0.417,,11985,0.361241353,0.472758647,73.9951709,,,73.00005846,74.99028334,,,,,,,,,,76.56440846,74.3830899,78.74572703,73.10875407,71.88817722,74.32933091,,,,557.3409994,643,79945,511.0059289,603.6760699,,,,,,,953.892499,582.6623198,1473.209599,374.1085048,279.4021253,490.5935314,595.5964432,540.7754409,650.4174454,,,,57.73868152,17,29443,33.63490972,92.44522235,,,,,,,,,,,,,80.77109472,45.20696857,133.2196375,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.125,,,0.108,0.144,0.183,,,0.158,0.208,0.107,,,0.092,0.124,104.4,25,23948,,,0.153,4330,,,,0.243137014,6834.824593,28111,,,20.64338552,18,87195,12.23457857,32.62544901,,,,,,,,,,,,,26.24469317,15.28850092,42.02029613,,,,0.345,,,0.331,0.36,0.257264221,4179,16244,0.227476987,0.287051455,0.111951149,770,6878,0.082163915,0.141738383,0.00075242,22,29239,,,1329.045455,0.946498055,243.25,257,,,0.258594918,346,1338,0.08128307,0.435906765,2.549128693,,,,,,,,2.513838313,2.601760577,2.677663456,,,,,,,,2.531849737,2.799600383,0.044478643,,,,,-1949.80126,,,,,0.801028151,42227,52716,0.663329219,0.938727083,56809,,,49744.65957,63873.34043,93565,64223.38298,122906.617,93065,58086.44681,128043.5532,,,,53214,39204.46809,67223.53192,67105,62402.19149,71807.80851,,,,,,0.675136911,3082,4565,,,72.03591342,,,,,0.350912708,,56809,,,3.525264395,6,1702,,,,,,,,,,,,,,,,,,,,,,,,,,21.06048203,29,144640,13.87899036,30.64189564,20.04977876,,,,,,,,,,,,,25.50809487,16.16994404,38.27466666,,,,11.0619469,16,144640,6.322858444,17.96390874,,,,,,,,,,,,,13.90730319,7.783812022,22.93798165,,,,26.42231838,53,200588,19.79212961,34.561043,,,,,,,,,,,,,30.68303095,22.46383499,40.92686347,,,,5.185185185,,2700,,,5,9,0.592738491,12489,21070,,,0.473,,,,,23.65664973,,,,,0.720582707,7667,10640,0.690582651,0.750582762,0.141644718,1452,10251,0.114168916,0.169120519,0.847368421,9016,10640,0.826366714,0.868370128,29239,,,,,0.231471665,6768,29239,,,0.202503506,5921,29239,,,0.023496016,687,29239,,,0.011696707,342,29239,,,0.009986662,292,29239,,,0.000957625,28,29239,,,0.209583091,6128,29239,,,0.737439721,21562,29239,,,0.017188139,462,26879,0.009801116,0.024575163,0.50802011,14854,29239,,,0.503784012,14312,28409,, -48,365,48365,TX,Panola County,2024,1,12926.22122,527,63457,11205.72617,14646.71627,0,,,,2,,,,2,19102.24813,13931.74163,24272.75463,,10089.77205,5979.838372,15946.1898,1,12297.2068,10278.81308,14315.60052,,,,,2,,0.192,,,0.163,0.222,4.081219542,,,3.219551161,4.974605109,5.748290082,,,4.587327355,6.859188041,0.088219473,164,1859,0.075326776,0.101112169,0,,,,,,,0.104693141,0.068638493,0.140747789,0.083333333,0.050725899,0.115940768,0.08627451,0.070862826,0.101686194,,,,,,,0.194,,,0.157,0.233,0.406,,,0.32,0.485,6.8,0.095663624,0.144,,,0.265,,,0.216,0.315,0.429238362,9654,22491,,,0.177795749,,,0.139972875,0.215408603,0.147540984,9,61,0.088198851,0.218037854,330.8,75,22675,,,28.41652645,152,5349,23.89895254,32.93410037,,,,,,,33.17535545,22.04478277,47.94762553,30.38674033,19.04320839,46.00589004,28.72062663,23.34270811,34.96633239,,,,,,,0.194257136,3457,17796,0.171618839,0.216895434,0.000220507,5,22675,,,4535,0.000264585,6,22677,,,3779.5,0.00017639,4,22677,,,5669.25,3342,,,,,,,3298,,3073,0.35,,,,,,,0.36,,0.36,0.33,,,,,,,0.27,0.05,0.34,0.837169762,12802,15292,0.80491342,0.869426104,0.624555863,3164,5066,0.534994347,0.714117378,0.045903001,442,9629,,,0.188,971,,0.11293617,0.26306383,,,,,,,0.336336336,0.201410399,0.471262274,0.445582586,0.315730865,0.575434308,0.159084151,0.074343628,0.243824674,5.733541905,130117,22694,4.75082804,6.716255771,0.214601345,1117,5205,0.138352982,0.290849708,11.02535832,25,22675,,,103.9438011,120,115447,85.3458953,122.5417068,,,,,,,139.8132096,90.47973742,206.391878,,,,109.3181872,88.12588793,134.0690523,,,,9.5,,,,,1,,,,,0.098729792,855,8660,0.069412999,0.128046585,0.063188746,0.037319542,0.08905795,0.037528868,0.020385213,0.054672524,0.004618938,0,0.010395169,0.841011649,8014,9529,0.791473494,0.890549804,,,,,,,0.857752489,0.718192212,0.997312766,0.831606218,0.707085495,0.956126941,0.773253833,0.70814409,0.838363576,0.389,,9529,0.323262605,0.454737396,72.13182555,,,70.93843124,73.32521987,,,,,,,68.00292394,64.97010841,71.03573948,,,,72.52000347,71.12378988,73.91621705,,,,606.9991379,527,63457,551.6603017,662.3379742,,,,,,,877.8231649,704.4596272,1051.186703,505.5652801,308.8124073,780.8045712,576.2928725,513.8997805,638.6859644,,,,75.56675063,18,23820,44.78564559,119.4280448,,,,,,,,,,,,,83.68200837,44.5571451,143.0987829,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.126,,,0.108,0.144,0.188,,,0.164,0.213,0.11,,,0.093,0.126,199.4,38,19058,,,0.144,3250,,,,0.095663624,2276.411602,23796,,,,,,,,,,,,,,,,,,,,,,,,,,0.367,,,0.353,0.381,0.22895756,2897,12653,0.200361815,0.257553304,0.113217968,615,5432,0.082239244,0.144196691,0.000573268,13,22677,,,1744.384615,0.944176136,332.35,352,,,,,,,,2.865603522,,,,,,,2.278739344,2.553032936,3.105375951,3.030577542,,,,,,,2.490986295,2.693002569,3.313943661,0.062084026,,,,,-2833.431,,,,,0.656942096,40015,60911,0.501040938,0.812843254,59772,,,53061.53192,66482.46809,,,,,,,21875,15027.51064,28722.48936,105401,87828.91489,122973.0851,63352,50334.97872,76369.02128,,,,,,0.52243346,2061,3945,,,20.58807557,,,,,0.234624908,,59772,,,3.790750569,5,1319,,,7.989920408,13,162705,4.254296113,13.66300723,,,,,,,,,,,,,,,,,,,22.62848833,27,115447,14.64396454,33.40411265,23.38735524,,,,,,,,,,,,,26.67403291,16.71647441,40.38480638,,,,29.45074363,34,115447,20.3954961,41.1544623,,,,,,,,,,,,,30.8942703,20.18116307,45.26726406,,,,39.33499278,64,162705,30.2927375,50.22990763,,,,,,,63.26111023,36.15919047,102.7320797,,,,35.39673844,25.51085562,47.84610744,,,,5.909090909,,2200,,,5,8,0.664403829,11451,17235,,,0.495,,,,,14.42322001,,,,,0.80538328,6493,8062,0.777424957,0.833341602,0.083957634,650,7742,0.053899774,0.114015493,0.818035227,6595,8062,0.778174001,0.857896453,22677,,,,,0.230497861,5227,22677,,,0.203907042,4624,22677,,,0.152048331,3448,22677,,,0.008554924,194,22677,,,0.006526437,148,22677,,,0.000705561,16,22677,,,0.099969132,2267,22677,,,0.72081845,16346,22677,,,0.015153654,322,21249,,,0.49821405,11298,22677,,,0.718643013,16163,22491,, -48,367,48367,TX,Parker County,2024,1,7187.980806,2137,421130,6717.68588,7658.275731,0,,,,2,,,,2,10224.92537,4414.39703,20147.17917,1,5233.768608,4145.904664,6321.632552,,7565.798254,7031.297726,8100.298782,,,,,2,,0.149,,,0.124,0.178,3.558571646,,,2.758882485,4.437779022,5.230101628,,,4.177455094,6.354970862,0.064918203,750,11553,0.060425407,0.069410999,0,,,,,,,0.131782946,0.073410891,0.190155,0.078854847,0.067016292,0.090693401,0.061267218,0.056333005,0.06620143,,,,,,,0.158,,,0.122,0.196,0.371,,,0.295,0.45,7.9,0.057540346,0.111,,,0.227,,,0.183,0.277,0.544750442,80744,148222,,,0.20251027,,,0.163084934,0.246770833,0.140625,18,128,0.099898934,0.186919694,133.3,209,156764,,,17.45348767,576,33002,16.02811951,18.87885583,,,,,,,,,,25.09778357,21.13380698,29.06176016,15.74896858,14.19974915,17.29818801,,,,15.66951567,7.822165765,28.0370919,0.168691511,22244,131862,0.153202149,0.184180873,0.000382741,60,156764,,,2612.733333,0.000343717,57,165834,,,2909.368421,0.000639193,106,165834,,,1564.471698,2298,,,,,,,,,2378,0.42,,,,,,0.32,0.61,0.31,0.42,0.41,,,,,0.25,0.53,0.36,0.37,0.41,0.902761446,92125,102048,0.892848334,0.912674557,0.660355558,25147,38081,0.617486059,0.703225057,0.032710218,2441,74625,,,0.1,4009,,0.066638298,0.133361702,0.092920354,0,0.198485298,0.245762712,0,0.543034886,0.307036247,0.124956781,0.489115714,0.143587559,0.081699935,0.205475182,0.070413768,0.048584402,0.092243134,4.293588684,176664,41146,3.944785171,4.642392198,0.126649644,4712,37205,0.099320753,0.153978534,8.675461203,136,156764,,,71.97703405,518,719674,65.77855499,78.1755131,,,,,,,,,,34.91620112,24.03470625,49.03532807,79.86614838,72.67613595,87.05616081,,,,9.1,,,,,1,,,,,0.129989095,5960,45850,0.114379627,0.145598563,0.098834653,0.082661702,0.115007603,0.021592148,0.016166072,0.027018224,0.014503817,0.008961354,0.020046279,0.77858066,56029,71963,0.762697642,0.794463677,,,,,,,,,,0.738057995,0.668585333,0.807530658,0.704095871,0.67511131,0.733080433,0.539,,71963,0.505595772,0.572404228,77.20708416,,,76.7800338,77.63413452,,,,,,,78.51113761,70.64379021,86.37848501,81.20951621,78.9108079,83.50822452,76.69319612,76.23248138,77.15391086,,,,388.2109632,2137,421130,371.2071424,405.2147841,,,,,,,391.0824645,247.9127351,586.8157165,273.2174683,223.2875843,323.1473523,408.6404233,389.7476806,427.5331661,,,,36.59190562,58,158505,27.78576807,47.30352339,,,,,,,,,,49.94506043,27.95387118,82.37678178,32.54474903,23.14249801,44.48974329,,,,3.87143243,43,11107,2.801774846,5.214794077,,,,,,,,,,,,,3.50639068,2.382422348,4.977041681,,,,,,,0.106,,,0.09,0.124,0.166,,,0.142,0.192,0.09,,,0.076,0.105,120.4,156,129588,,,0.111,16030,,,,0.057540346,6728.01998,116927,,,13.62093605,61,447840,10.4189368,17.49666218,,,,,,,,,,,,,15.79899322,11.99683794,20.4238624,,,,0.331,,,0.315,0.347,0.195010556,18104,92836,0.174755237,0.215265875,0.111121975,4546,40910,0.088483677,0.133760273,0.000548742,91,165834,,,1822.351648,0.956922377,1577.965,1649,,,0.077473958,595,7680,0.04045242,0.114495497,3.044796979,,,,,,,2.620865504,2.817130162,3.112648207,3.115094747,,,,,,,2.588344359,2.880459776,3.183578006,0.030380209,,,,,97.254225,,,,,0.708834807,53242,75112,0.648160364,0.769509249,95277,,,88098.2766,102455.7234,70750,7030.340426,134469.6596,135347,78288.95745,192405.0426,,,,80694,59499.78723,101888.2128,97787,93646.57447,101927.4255,,,,,,0.338550058,8826,26070,,,54.47444227,,,,,0.209232029,,95277,,,5.376959158,47,8741,,,2.563689744,25,975157,1.659084829,3.784511796,,,,,,,,,,,,,2.350077429,1.41490013,3.669937014,,,,18.44257738,136,719674,15.2596825,21.62547225,18.89744523,,,,,,,,,,,,,19.96882764,16.32153205,23.61612324,,,,12.78356589,92,719674,10.30535837,15.67790875,,,,,,,,,,,,,14.32198863,11.43989584,17.70936074,,,,19.38149447,189,975157,16.61829376,22.14469517,,,,,,,,,,8.030386984,3.850882697,14.76816758,21.64545,18.43841525,24.85248476,,,,10.66666667,,15000,,,74,86,0.757643312,76128,100480,,,0.68,,,,,36.21202838,,,,,0.81956216,43127,52622,0.804633312,0.834491009,0.102260053,5226,51105,0.086509472,0.118010634,0.907871233,47774,52622,0.893502212,0.922240253,165834,,,,,0.245154793,40655,165834,,,0.159701871,26484,165834,,,0.016751692,2778,165834,,,0.010245185,1699,165834,,,0.009105491,1510,165834,,,0.001001001,166,165834,,,0.146079815,24225,165834,,,0.803942497,133321,165834,,,0.015527055,2207,142139,0.012190314,0.018863795,0.497051268,82428,165834,,,0.643480725,95378,148222,, -48,369,48369,TX,Parmer County,2024,1,8581.804896,126,27083,6444.162705,10719.44709,0,,,,2,,,,2,,,,2,8594.9454,6194.480644,11617.8693,,8571.340881,5079.919829,13546.41392,1,,,,2,,0.229,,,0.194,0.264,4.160753982,,,3.344362699,5.093714332,5.00645457,,,3.981029981,6.189951641,0.07805326,85,1089,0.062120516,0.093986004,0,,,,,,,,,,0.083135392,0.064486819,0.101783965,0.06302521,0.032151509,0.093898911,,,,,,,0.161,,,0.129,0.195,0.394,,,0.311,0.481,7.8,0.08200631,0.103,,,0.318,,,0.262,0.376,0.173371162,1711,9869,,,0.171044356,,,0.135566147,0.211261416,0.181818182,2,11,0.044108943,0.367070091,244.6,24,9813,,,41.78384894,104,2489,33.75325171,49.81444616,,,,,,,,,,49.4645589,40.11242508,60.34256702,,,,,,,,,,0.286112796,2359,8245,0.256325562,0.31590003,0.000101906,1,9813,,,9813,0.00010395,1,9620,,,9620,0.00010395,1,9620,,,9620,3280,,,,,,,,2796,3492,0.36,,,,,,,,0.29,0.39,0.26,,,,,,,,0.24,0.26,0.710572758,4429,6233,0.665694665,0.755450851,0.467914439,1225,2618,0.368798122,0.567030755,0.024152707,124,5134,,,0.185,488,,0.114702128,0.255297872,,,,,,,,,,0.121404193,0.048366132,0.194442254,0.060702875,0,0.132733741,3.410269547,119813,35133,2.983065613,3.837473482,0.183129856,495,2703,0.103970392,0.26228932,12.22867625,12,9813,,,78.11536406,38,48646,55.2790808,107.2194403,,,,,,,,,,69.95452956,43.84013124,105.9119984,99.96251406,57.13721388,162.3328602,,,,5.9,,,,,0,,,,,0.135303266,435,3215,0.091986791,0.178619741,0.059493671,0.026627826,0.092359516,0.071539658,0.036696117,0.106383199,0.00466563,0,0.014634891,0.832157366,3892,4677,0.786020341,0.878294391,,,,,,,,,,0.614997604,0.489138044,0.740857165,0.885218365,0.807149912,0.963286818,0.198,,4677,0.141194565,0.254805435,76.02882349,,,74.24523911,77.81240787,,,,,,,,,,77.64087613,74.7120998,80.56965245,75.34983249,72.47402403,78.22564094,,,,402.0052093,126,27083,329.9669331,474.0434856,,,,,,,,,,380.3207646,292.8933317,485.6611257,443.2711793,326.8331753,587.7132742,,,,108.523249,13,11979,57.78405953,185.5780609,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.13,,,0.112,0.15,0.166,,,0.143,0.19,0.131,,,0.111,0.152,75.9,6,7904,,,0.103,1020,,,,0.08200631,842.1227929,10269,,,,,,,,,,,,,,,,,,,,,,,,,,0.35,,,0.334,0.365,0.31637406,1766,5582,0.281820868,0.350927251,0.223214286,625,2800,0.167214286,0.279214286,0.000831601,8,9620,,,1202.5,0.949662162,140.55,148,,,,,,,,2.596446578,,,,,,,,2.443087251,3.330883986,3.089521322,,,,,,,,3.015328652,3.496385877,0.200612297,,,,,-9164.747,,,,,0.867789298,37413,43113,0.710246267,1.025332328,57786,,,49689.82979,65882.17021,,,,,,,,,,57679,40131.93617,75226.06383,89125,80539.12766,97710.87234,,,,,,0.688646288,1577,2290,,,,,,,,0.262762607,,57786,,,1.298701299,1,770,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,24.93729005,17,68171,14.52689042,39.92701708,,,,,,,,,,25.17969143,12.56961124,45.05342332,,,,,,,,,1100,,,-888,0,0.485347985,2650,5460,,,0.465,,,,,35.72516938,,,,,0.711832657,2280,3203,0.667724535,0.755940778,0.054569803,163,2987,0.022324874,0.086814731,0.85170153,2728,3203,0.799755429,0.90364763,9620,,,,,0.276195426,2657,9620,,,0.148752599,1431,9620,,,0.012681913,122,9620,,,0.016839917,162,9620,,,0.01018711,98,9620,,,0.003326403,32,9620,,,0.658316008,6333,9620,,,0.314033264,3021,9620,,,0.110315975,1002,9083,0.077344,0.14328795,0.477130977,4590,9620,,,1,9869,9869,, -48,371,48371,TX,Pecos County,2024,1,11210.6772,239,44086,9266.377959,13154.97645,0,,,,2,,,,2,,,,2,10197.51082,8026.46695,12368.5547,,14435.12491,9739.318157,20607.03838,,,,,2,,0.262,,,0.228,0.298,4.418399804,,,3.645964814,5.238770049,5.170552162,,,4.069597958,6.333492896,0.091895803,127,1382,0.076665178,0.107126428,0,,,,,,,,,,0.096803653,0.079289628,0.114317678,0.073469388,0.040798862,0.106139914,,,,,,,0.183,,,0.15,0.219,0.411,,,0.326,0.499,5.5,0.191153797,0.158,,,0.346,,,0.289,0.403,0.738103074,11214,15193,,,0.176796862,,,0.140275062,0.217187324,0.16,8,50,0.093067704,0.239130524,555.6,84,15118,,,43.04738309,139,3229,35.89096959,50.20379659,,,,,,,,,,47.58364312,39.34019753,55.82708872,,,,,,,,,,0.247281876,2752,11129,0.218686132,0.275877621,0.000463024,7,15118,,,2159.714286,0.000271463,4,14735,,,3683.75,0.000271463,4,14735,,,3683.75,2550,,,,,,,,2442,2787,0.19,,,,,,,,0.1,0.32,0.18,,,,,,,,0.19,0.16,0.759090025,7808,10286,0.715581295,0.802598756,0.386547281,1770,4579,0.310705662,0.4623889,0.040335337,255,6322,,,0.24,871,,0.150638298,0.329361702,,,,,,,,,,0.418936877,0.315055425,0.522818329,0.199275362,0.025804956,0.372745769,4.890061533,131127,26815,3.823761568,5.956361497,0.333063864,1236,3711,0.192912537,0.473215191,7.276094722,11,15118,,,78.23923249,61,77966,59.84681343,100.5015672,,,,,,,,,,62.9419823,43.58915248,87.95511144,135.8411703,88.73596246,199.0387883,,,,6.8,,,,,1,,,,,0.141683778,690,4870,0.089532081,0.193835476,0.082089552,0.039453903,0.124725201,0.054414784,0.019765595,0.089063974,0.011293635,0,0.023096959,0.891566265,5328,5976,0.854301029,0.928831501,,,,,,,,,,0.876095424,0.820437288,0.931753559,0.89135255,0.869991487,0.912713613,0.16,,5976,0.107547396,0.212452604,73.80170522,,,72.30204596,75.30136448,,,,,,,,,,75.11046671,73.27919905,76.94173437,70.57347994,67.16401612,73.98294376,,,,498.5855512,239,44086,434.7959806,562.3751217,,,,,,,,,,454.1287256,378.155067,530.1023841,626.1311236,494.9306704,781.439979,,,,83.19467554,14,16828,45.48330328,139.5865291,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.142,,,0.123,0.164,0.17,,,0.146,0.194,0.153,,,0.132,0.175,152.8,19,12435,,,0.158,2400,,,,0.191153797,2964.221928,15507,,,,,,,,,,,,,,,,,,,,,,,,,,0.371,,,0.357,0.384,0.298415257,2222,7446,0.262670576,0.334159937,0.146524896,565,3856,0.106014258,0.187035535,0.000746522,11,14735,,,1339.545455,0.90204918,165.075,183,,,,,,,,2.666958439,,,,,,,,2.641510394,2.837503391,3.067764308,,,,,,,,3.05666708,3.096619083,0.063370865,,,,,-2599.066333,,,,,0.598506512,36628,61199,0.457577009,0.739436014,54003,,,46124.87234,61881.12766,,,,121061,16086.02128,226035.9787,,,,51936,32907.91489,70964.08511,75950,54051.61702,97848.38298,,,,,,0.705442903,1983,2811,,,13.04645234,,,,,0.312649297,,54003,,,3.875968992,4,1032,,,,,,,,,,,,,,,,,,,,,,,,,,23.57537761,19,77966,14.19391737,36.81587247,24.369597,,,,,,,,,,,,,45.80666926,20.94572604,86.95532679,,,,20.5217659,16,77966,11.72996236,33.32606213,,,,,,,,,,,,,52.24660397,25.05427741,96.0833649,,,,29.05419515,32,110139,19.87304798,41.01585458,,,,,,,,,,23.70385978,14.04840958,37.4623178,50.84992009,27.8001245,85.3175255,,,,16.25,,1600,,,0,26,0.438104176,4668,10655,,,0.442,,,,,31.0616929,,,,,0.706114398,3580,5070,0.659941838,0.752286959,0.116123462,538,4633,0.061232389,0.171014535,0.745759369,3781,5070,0.689354807,0.802163931,14735,,,,,0.248456057,3661,14735,,,0.132541568,1953,14735,,,0.040244316,593,14735,,,0.015744825,232,14735,,,0.015405497,227,14735,,,0.001357313,20,14735,,,0.709874449,10460,14735,,,0.225856804,3328,14735,,,0.039926246,563,14101,0.019252608,0.060599885,0.430607397,6345,14735,,,0.437175015,6642,15193,, -48,373,48373,TX,Polk County,2024,1,12725.37133,1348,148002,11560.58455,13890.15812,0,17085.94354,8529.241457,30571.47263,1,,,,2,15740.75321,11494.23638,19987.27004,,6963.423662,5079.169002,9317.608726,,14079.41994,12539.71805,15619.12182,,,,,2,,0.21,,,0.18,0.244,4.247969523,,,3.433930845,5.176059068,5.725676607,,,4.65267672,6.863537069,0.084313726,301,3570,0.075198982,0.093428469,0,,,,,,,0.178947368,0.134445136,0.223449601,0.059210526,0.040449786,0.077971266,0.081875994,0.071162535,0.092589453,,,,,,,0.207,,,0.171,0.25,0.415,,,0.337,0.497,6.6,0.050299081,0.173,,,0.292,,,0.244,0.347,0.293218682,14697,50123,,,0.180285681,,,0.145125823,0.221718332,0.231707317,19,82,0.17540266,0.291509118,256.3,133,51899,,,41.17108875,360,8744,36.91807122,45.42410628,,,,,,,36.69724771,25.10089027,51.80556431,33.35155823,25.51129938,42.8414718,44.54823065,39.00375231,50.09270898,,,,,,,0.202271003,7731,38221,0.182015684,0.222526322,0.000481705,25,51899,,,2075.96,0.000413107,22,53255,,,2420.681818,0.00061966,33,53255,,,1613.787879,1674,,,,,,,2903,,1563,0.38,,,,,0.28,0.44,0.37,0.33,0.38,0.42,,,,,0.23,0.39,0.34,0.41,0.43,0.81368738,29724,36530,0.792010016,0.835364744,0.410518445,4941,12036,0.35872557,0.462311319,0.055377379,1036,18708,,,0.31,3280,,0.240893617,0.379106383,0.251282051,0.120302551,0.382261552,,,,0.621933622,0.499305626,0.744561618,0.239219247,0.149431026,0.329007467,0.224502585,0.171249029,0.277756141,4.527885598,110820,24475,3.737986938,5.317784257,0.311133005,3158,10150,0.255503228,0.366762782,8.670687297,45,51899,,,123.7081115,316,255440,110.0682265,137.3479964,,,,,,,134.9858878,92.91807409,189.5703737,58.16747174,36.87318742,87.27976757,140.0205069,122.8005977,157.2404162,,,,9.2,,,,,1,,,,,0.148230705,2660,17945,0.122515407,0.173946003,0.102175157,0.080124348,0.124225967,0.046252438,0.028675575,0.063829302,0.006129841,0.001735731,0.010523952,0.820462009,14491,17662,0.792608574,0.848315444,0.882352941,0.716409063,1,,,,0.837225761,0.739396868,0.935054653,0.852531431,0.822797247,0.882265614,0.827879019,0.776268583,0.879489456,0.346,,17662,0.293223611,0.398776389,70.77609312,,,70.01826502,71.53392121,,,,,,,68.21741317,65.49641603,70.93841031,82.58570464,75.06029903,90.11111026,69.77186393,68.80661355,70.7371143,,,,600.450418,1348,148002,565.1483234,635.7525126,713.5873509,422.917089,1127.775661,,,,750.9822878,614.1683553,887.7962203,374.5446658,290.8485884,474.824611,640.5244182,596.7438513,684.3049852,,,,81.54090268,37,45376,57.41232054,112.3933933,,,,,,,,,,,,,97.20534629,64.59224668,140.4887899,,,,7.707129094,28,3633,5.121331312,11.13894741,,,,,,,,,,,,,8.678500986,5.438770364,13.13935479,,,,,,,0.132,,,0.115,0.153,0.185,,,0.162,0.212,0.118,,,0.101,0.137,447.3,199,44494,,,0.173,8560,,,,0.050299081,2284.232149,45413,,,20.48039322,32,156247,14.0085738,28.91220445,,,,,,,,,,,,,26.09345054,17.47519335,37.47454758,,,,0.384,,,0.371,0.396,0.234700451,6558,27942,0.208487685,0.260913217,0.117086264,1265,10804,0.08729903,0.146873498,0.00054455,29,53255,,,1836.37931,0.89356044,406.57,455,,,0.172812084,389,2251,0.089881303,0.255742864,2.770893263,,,,,,,2.406452572,2.594956042,2.863233793,2.943847986,,,,,,,2.611942953,2.824640425,3.023771357,0.078827622,,,,,-5480.91125,,,,,0.647285329,36982,57134,0.565662223,0.728908435,58894,,,52776.89362,65011.10638,49875,33836.3617,65913.6383,101100,66707.65957,135492.3404,32976,24452.08511,41499.91489,61250,34928.80851,87571.19149,59110,54220.12766,63999.87234,,,,,,0.654424277,4615,7052,,,53.63723777,,,,,0.231076171,,58894,,,2.723735409,7,2570,,,11.70331803,41,350328,8.39850308,15.87687241,,,,,,,,,,,,,11.65763535,7.807301353,16.74230895,,,,26.4066633,67,255440,20.15106602,33.99061009,26.22925149,,,,,,,,,,,,,34.12518279,25.24599809,45.11530139,,,,26.22925149,67,255440,20.32730963,33.31022222,,,,,,,,,,,,,31.97318662,24.2785811,41.33275804,,,,28.25923135,99,350328,22.96770879,34.40460019,,,,,,,,,,18.71152443,8.972903273,34.41115963,32.15899407,25.50008224,40.02465187,,,,15.11627907,,4300,,,31,34,0.634470094,24186,38120,,,0.436,,,,,25.47801062,,,,,0.780247733,14110,18084,0.753896039,0.806599427,0.115438109,1992,17256,0.092967258,0.137908959,0.819619553,14822,18084,0.792638998,0.846600109,53255,,,,,0.201596094,10736,53255,,,0.187926016,10008,53255,,,0.088686508,4723,53255,,,0.021688104,1155,53255,,,0.009839452,524,53255,,,0.001070322,57,53255,,,0.15818233,8424,53255,,,0.711632711,37898,53255,,,0.020296741,974,47988,0.013635789,0.026957692,0.46198479,24603,53255,,,0.888434451,44531,50123,, -48,375,48375,TX,Potter County,2024,1,13004.93192,2440,331028,12294.05457,13715.80927,0,,,,2,8458.23305,6277.8636,11151.12582,,17946.47821,15320.60099,20572.35542,,10531.64172,9511.948678,11551.33476,,14509.10374,13304.51917,15713.68831,,,,,2,,0.246,,,0.214,0.28,4.625395864,,,3.811657751,5.601541968,5.805953653,,,4.750736956,6.95688957,0.097756687,1133,11590,0.092349773,0.1031636,0,,,,0.106104651,0.083091695,0.129117607,0.145770393,0.126762497,0.164778289,0.083687943,0.07646075,0.090915137,0.099810657,0.090148219,0.109473096,,,,0.107476636,0.065979701,0.14897357,0.204,,,0.169,0.242,0.399,,,0.324,0.478,6.3,0.117467489,0.155,,,0.328,,,0.277,0.384,0.842244252,99827,118525,,,0.172175459,,,0.137225104,0.211381642,0.278195489,37,133,0.233942657,0.323560558,1227,1430,116547,,,43.61826698,1192,27328,41.14206338,46.09447058,,,,27.94653706,20.46037753,37.2767641,44.80286738,36.02150538,53.58422939,52.84435461,49.01611485,56.67259436,31.02272727,27.34266877,34.70278578,,,,58.99705015,42.14835758,80.33723741,0.244439497,23057,94326,0.222992689,0.265886306,0.000875183,102,116547,,,1142.617647,0.000613948,71,115645,,,1628.802817,0.002594146,300,115645,,,385.4833333,2776,,,,,,1320,2332,3028,2707,0.4,,,,,0.47,0.23,0.38,0.32,0.41,0.44,,,,,0.4,0.44,0.39,0.37,0.45,0.771690775,57937,75078,0.757178958,0.786202592,0.472061125,15384,32589,0.437527368,0.506594882,0.032009732,1763,55077,,,0.276,8384,,0.206893617,0.345106383,0.056818182,0,0.409574139,0.306818182,0.173288064,0.4403483,0.6005118,0.523698416,0.677325183,0.318668025,0.276648788,0.360687262,0.119602394,0.08416537,0.155039419,4.990391181,102313,20502,4.528252156,5.452530206,0.307136748,9696,31569,0.271370374,0.342903123,10.98269368,128,116547,,,105.580336,623,590072,97.28956175,113.8711102,,,,40.72936901,21.68667364,69.64846143,120.2146933,93.88867282,151.6344781,73.10826945,62.08579191,84.130747,141.3369457,126.7569239,155.9169675,,,,5.1,,,,,0,,,,,0.203617336,8950,43955,0.185744098,0.221490574,0.152508981,0.13364816,0.171369803,0.05346377,0.043550444,0.063377095,0.011830281,0.007392272,0.01626829,0.805670634,39867,49483,0.786547818,0.824793451,,,,0.800413956,0.714721741,0.886106172,0.832982948,0.758579294,0.907386602,0.84945958,0.824078056,0.874841103,0.845821089,0.826485237,0.865156941,0.146,,49483,0.125709667,0.166290333,71.0716942,,,70.57413861,71.56924978,,,,78.40314871,74.60178142,82.204516,66.93278803,65.2821562,68.58341985,74.33885801,73.32264242,75.3550736,69.9041806,69.141198,70.6671632,,,,671.4618406,2440,331028,644.4604737,698.4632076,,,,495.2529018,389.5478241,620.803801,875.5106011,773.1179377,977.9032645,532.4763427,487.6634881,577.2891972,738.858494,698.9427688,778.7742191,,,,70.61485362,98,138781,57.32855151,86.0568884,,,,,,,187.373883,122.3988413,274.5461522,57.98866322,41.42795118,78.96410062,66.1266325,43.94066707,95.57139537,,,,7.518796993,90,11970,6.046000679,9.241878011,,,,,,,,,,7.004027316,5.003779801,9.53749728,6.199948334,3.972423884,9.22503167,,,,,,,0.144,,,0.125,0.164,0.187,,,0.163,0.213,0.138,,,0.119,0.159,329.2,310,94173,,,0.155,18430,,,,0.117467489,14222.1413,121073,,,22.57362144,79,349966,17.87174867,28.13346758,,,,,,,,,,9.372476641,4.990449079,16.0272205,39.90078006,30.4484987,51.36021321,,,,0.368,,,0.356,0.379,0.300170694,19168,63857,0.272766439,0.327574949,0.133589575,4275,32001,0.102610852,0.164568299,0.002542263,294,115645,,,393.3503401,0.897566449,2059.915,2295,,,0.120480097,793,6582,0.067591844,0.17336835,2.8673478,,,,,,2.902326374,2.455731574,2.800124623,3.121797058,3.122241675,,,,,,3.159415072,2.623488854,3.051098438,3.398251653,0.165025221,,,,,-3188.996575,,,,,0.762837278,35877,47031,0.677232052,0.848442504,51028,,,47428.51064,54627.48936,32214,27128.7234,37299.2766,58088,43432.68085,72743.31915,31619,25916.53192,37321.46809,45787,42996.53192,48577.46809,56223,51476.10638,60969.89362,,,,,,0.700878872,16109,22984,,,58.46929901,,,,,0.297562123,,51028,,,4.223262185,37,8761,,,10.92822677,91,832706,8.798726501,13.41744084,,,,,,,37.58441338,25.53678542,53.34807471,8.98247179,6.015702333,12.90032784,8.215441744,5.542924046,11.72805393,,,,25.02008526,143,590072,20.87153721,29.16863331,24.23433073,,,,,,,19.16284887,9.901723644,33.47364053,14.3361454,9.672537098,20.46573898,35.90745826,28.79883152,44.23899286,,,,23.21750566,137,590072,19.32963913,27.1053722,,,,,,,50.79494082,34.27113327,72.51293645,12.545206,8.401721348,18.01700846,29.36363138,23.09635879,36.80756621,,,,22.09663435,184,832706,18.90382277,25.28944592,,,,,,,27.88520993,17.67683107,41.8415064,21.37208805,16.62876019,27.04774527,22.72938883,18.10383133,28.17649721,,,,22.95081967,,12200,,,68,212,0.448108072,33337,74395,,,0.574,,,,,140.29599,,,,,0.558191668,23904,42824,0.538134911,0.578248426,0.16616018,6780,40804,0.148844398,0.183475963,0.831496357,35608,42824,0.813936548,0.849056167,115645,,,,,0.265441653,30697,115645,,,0.14138095,16350,115645,,,0.10153487,11742,115645,,,0.013740326,1589,115645,,,0.049634658,5740,115645,,,0.001452722,168,115645,,,0.403649099,46680,115645,,,0.425379394,49193,115645,,,0.065566593,7188,109629,0.056912014,0.074221172,0.483488262,55913,115645,,,0.112642902,13351,118525,, -48,377,48377,TX,Presidio County,2024,1,7583.167928,78,16916,5311.15759,10498.30082,0,,,,2,,,,2,,,,2,7104.090104,4720.616282,10267.38817,,,,,2,,,,2,,0.359,,,0.306,0.41,5.439190509,,,4.369086458,6.536081229,5.749963109,,,4.498231027,7.115667123,0.065789474,45,684,0.047210206,0.084368742,0,,,,,,,,,,0.06504065,0.045550853,0.084530447,,,,,,,,,,0.223,,,0.179,0.271,0.443,,,0.35,0.541,3.8,0.178437692,0.245,,,0.434,,,0.365,0.504,0.932474311,5717,6131,,,0.124743783,,,0.09659084,0.158817425,0.444444444,4,9,0.264827841,0.599456043,325.7,20,6140,,,66.13226453,99,1497,53.74904132,80.51365915,,,,,,,,,,69.4143167,56.22581939,84.76676139,,,,,,,,,,0.387124464,1804,4660,0.350188293,0.424060634,0.000488599,3,6140,,,2046.666667,,0,5939,,,,0.000841893,5,5939,,,1187.8,1351,,,,,,,,1633,,0.25,,,,,,,,0.22,0.37,0.21,,,,,,,,0.17,0.42,0.616236162,2338,3794,0.475747791,0.756724533,0.476360393,534,1121,0.206472957,0.746247828,0.061692507,191,3096,,,0.383,609,,0.237638298,0.528361702,,,,,,,,,,0.671419313,0.451743866,0.89109476,0.782608696,0.21296933,1,5.583531104,77639,13905,2.06732409,9.099738118,0.294788274,543,1842,0.042154512,0.547422035,9.771986971,6,6140,,,59.78000957,20,33456,36.51518288,92.32537632,,,,,,,,,,43.12823462,22.28498817,75.33634649,,,,,,,5.5,,,,,1,,,,,0.137596899,355,2580,0.060146165,0.215047633,0.102362205,0.026507547,0.178216863,0.050387597,0.007078599,0.093696595,0,0,0.013062174,0.711310739,1742,2449,0.621618387,0.801003091,,,,,,,,,,,,,,,,0.019,,2449,0,0.073574895,83.11004427,,,79.85234345,86.3677451,,,,,,,,,,83.15925649,79.76462456,86.55388843,,,,,,,370.9706666,78,16916,288.6373216,469.4871212,,,,,,,,,,364.9508719,274.9309417,475.0337237,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.186,,,0.159,0.216,0.2,,,0.17,0.232,0.198,,,0.171,0.228,142.8,7,4901,,,0.245,1550,,,,0.178437692,1395.025876,7818,,,,,,,,,,,,,,,,,,,,,,,,,,0.375,,,0.356,0.393,0.463772955,1389,2995,0.418496359,0.509049551,0.249714937,438,1754,0.187757491,0.311672384,0.000336757,2,5939,,,2969.5,0.879961832,115.275,131,,,,,,,,2.47760659,,,,,,,,2.418430649,,2.773084435,,,,,,,,2.766108859,,,,,,,-27293.46,,,,,0.791734752,26649,33659,0,1.708070597,43666,,,36909.06383,50422.93617,,,,,,,,,,23272,13645.95745,32898.04255,36614,19946.25532,53281.74468,,,,,,0.829916477,1093,1317,,,,,,,,0.319882746,,43666,,,2.247191011,1,445,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,700,,,0,0,0.732892562,2217,3025,,,0.289,,,,,9.11675997,,,,,0.73978022,1683,2275,0.621480149,0.858080291,0.165107577,353,2138,0.057040904,0.27317425,0.703736264,1601,2275,0.601394678,0.806077849,5939,,,,,0.269574002,1601,5939,,,0.232530729,1381,5939,,,0.018690015,111,5939,,,0.019531908,116,5939,,,0.018521637,110,5939,,,0.000336757,2,5939,,,0.829095807,4924,5939,,,0.127125779,755,5939,,,0.18135264,1027,5663,0.099504512,0.263200768,0.485435259,2883,5939,,,1,6131,6131,, -48,379,48379,TX,Rains County,2024,1,9508.504304,281,33818,7537.54398,11479.46463,0,,,,2,,,,2,,,,2,,,,2,9577.851694,7411.788231,11743.91516,,,,,2,,0.174,,,0.147,0.206,3.869327039,,,3.01146972,4.788039748,5.543321092,,,4.407083681,6.739537392,0.072929543,59,809,0.055011526,0.090847559,0,,,,,,,,,,,,,0.06962963,0.050428395,0.088830865,,,,,,,0.183,,,0.143,0.226,0.361,,,0.279,0.45,,,0.142,,,0.246,,,0.199,0.3,0.488161789,5938,12164,,,0.175240691,,,0.139919216,0.215207502,0.15,3,20,0.050642257,0.283837277,143.9,18,12509,,,25.67567568,57,2220,19.44650602,33.26581595,,,,,,,,,,31.15264798,14.9389056,57.29082879,25.56818182,18.64960727,34.21223892,,,,,,,0.2455295,2293,9339,0.219316734,0.271742266,7.99424E-05,1,12509,,,12509,0.00015597,2,12823,,,6411.5,0.000545894,7,12823,,,1831.857143,2845,,,,,,,,,2978,0.37,,,,,,,,,0.37,0.34,,,,,,,0.33,,0.34,0.873898379,8032,9191,0.846484591,0.901312166,0.502336449,1290,2568,0.3933663,0.611306597,0.034207701,223,6519,,,0.205,513,,0.132319149,0.277680851,,,,,,,,,,,,,0.15092291,0.079142585,0.222703235,4.276140808,131192,30680,3.592893137,4.95938848,0.23566879,555,2355,0.125690826,0.345646753,9.593092973,12,12509,,,91.06283336,56,61496,68.78788569,118.2526636,,,,,,,,,,,,,103.7324471,77.92700688,135.348342,,,,8.7,,,,,0,,,,,0.136574074,590,4320,0.086163331,0.186984817,0.073317308,0.043008146,0.10362647,0.02662037,0.009473312,0.043767429,0.043981482,0.009868111,0.078094852,0.726041044,3644,5019,0.663697048,0.78838504,,,,,,,,,,,,,0.791964286,0.700241268,0.883687303,0.529,,5019,0.43393438,0.62406562,75.84997469,,,74.27627064,77.42367874,,,,,,,,,,,,,75.4128996,73.71568067,77.11011853,,,,497.1476667,281,33818,431.2767494,563.0185841,,,,,,,,,,,,,511.0758989,439.7242533,582.4275446,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.118,,,0.101,0.138,0.181,,,0.156,0.208,0.097,,,0.083,0.115,129.7,14,10790,,,0.142,1700,,,,,,10914,,,,,,,,,,,,,,,,,,,,,,,,,,0.349,,,0.332,0.365,0.272265738,1877,6894,0.240095526,0.304435951,0.173390225,447,2578,0.130496608,0.216283842,0.000233955,3,12823,,,4274.333333,0.925,104.525,113,,,,,,,,2.611471709,,,,,,,,2.21659391,2.737936193,2.78417972,,,,,,,,2.645463349,2.801964025,0.003182758,,,,,-2622.531,,,,,0.764748512,44321,57955,0.521906933,1.007590091,45419,,,41264.2766,49573.7234,,,,111071,61384.70213,160757.2979,92870,39303.02128,146436.9787,41291,31365.89362,51216.10638,62376,44933.78723,79818.21277,,,,,,0.58935801,1019,1729,,,36.73284226,,,,,0.308769458,,45419,,,5.75815739,3,521,,,,,,,,,,,,,,,,,,,,,,,,,,19.36008885,11,61496,9.283915124,35.6038927,17.88734227,,,,,,,,,,,,,23.10859246,10.56671997,43.86730669,,,,,,,,,,,,,,,,,,,,,,,,,,,29.77218325,25,83971,19.26698723,43.94961558,,,,,,,,,,,,,30.84169798,19.32832792,46.69470138,,,,,,1000,,,-888,0,0.642569002,6053,9420,,,0.503,,,,,14.44771043,,,,,0.799575372,3766,4710,0.754593682,0.844557062,0.077197999,324,4197,0.045064276,0.109331721,0.86029724,4052,4710,0.821072835,0.899521645,12823,,,,,0.197925602,2538,12823,,,0.250643375,3214,12823,,,0.02417531,310,12823,,,0.015129065,194,12823,,,0.011619746,149,12823,,,0.000467909,6,12823,,,0.106293379,1363,12823,,,0.82773142,10614,12823,,,0.021930199,257,11719,0.00212286,0.041737538,0.492396475,6314,12823,,,1,12164,12164,, -48,381,48381,TX,Randall County,2024,1,7638.180078,1864,395336,7117.15715,8159.203005,0,,,,2,,,,2,12262.06998,8944.037987,16407.61439,,6665.06492,5721.158714,7608.971125,,8084.557169,7408.658563,8760.455774,,,,,2,,0.151,,,0.128,0.178,3.615607399,,,2.868487282,4.475555571,5.074851796,,,4.112329955,6.128947735,0.078736034,902,11456,0.073804087,0.08366798,0,,,,0.140672783,0.102987957,0.178357609,0.105906314,0.078687589,0.133125038,0.081957718,0.072808498,0.091106938,0.071253426,0.065197968,0.077308883,,,,0.096774194,0.057436929,0.136111458,0.14,,,0.11,0.175,0.401,,,0.328,0.479,8.2,0.02382399,0.113,,,0.223,,,0.183,0.27,0.909536564,128020,140753,,,0.207993702,,,0.169873027,0.251051672,0.225806452,14,62,0.16101658,0.295536813,110.5,159,143854,,,18.72262881,637,34023,17.26866639,20.17659123,,,,,,,30.0081103,21.12847897,41.3622272,29.39424032,26.04556951,32.74291113,12.59694477,11.08876226,14.10512728,,,,33.54037267,22.10331693,48.7994813,0.157287519,18841,119787,0.140606668,0.17396837,0.000549168,79,143854,,,1820.936709,0.000609005,89,146140,,,1642.022472,0.001279595,187,146140,,,781.4973262,2319,,,,,,,15695,,2346,0.43,,,,,,,,0.32,0.44,0.45,,,,,,,0.45,0.36,0.46,0.938502129,87505,93239,0.931131659,0.945872599,0.733995781,28882,39349,0.692579473,0.775412089,0.028409987,2162,76100,,,0.084,2853,,0.050638298,0.117361702,0.079881657,0,0.227477432,0.056399132,0,0.182114828,0.439896036,0.29779736,0.581994713,0.137569635,0.093929456,0.181209813,0.076895288,0.053015102,0.100775475,3.961576522,140117,35369,3.735460005,4.187693039,0.2127362,7149,33605,0.175221976,0.250250424,7.785671584,112,143854,,,71.22435093,493,692179,64.93709539,77.51160646,,,,,,,63.8336677,34.89846013,107.1020478,38.03727653,29.0955026,48.86047298,85.06270011,76.83886631,93.28653391,,,,5.9,,,,,1,,,,,0.120882412,6055,50090,0.105804094,0.135960729,0.100301508,0.08580052,0.114802495,0.022259932,0.015457696,0.029062168,0.004691555,0.001959897,0.007423213,0.814754914,58941,72342,0.79743753,0.832072299,,,,,,,0.718017415,0.572309644,0.863725185,0.762043658,0.706644128,0.817443189,0.755377583,0.723936844,0.786818321,0.173,,72342,0.154969494,0.191030506,77.06000764,,,76.59582228,77.52419301,,,,82.10541474,77.13866218,87.07216729,74.57748889,69.91721554,79.23776224,77.47095072,76.11360192,78.82829953,76.6894358,76.13205827,77.24681333,,,,390.5041483,1864,395336,372.3082281,408.7000686,,,,,,,628.1100992,473.1784861,817.5716305,405.8418597,354.2238386,457.4598807,398.9240497,377.5673807,420.2807186,,,,58.55541139,88,150285,46.96315219,72.14190454,,,,,,,,,,44.89001945,27.78762956,68.6191632,62.37052547,47.11402466,80.99331523,,,,6.670177286,76,11394,5.255341046,8.348721517,,,,,,,,,,,,,6.612267867,4.858445719,8.792914511,,,,,,,0.104,,,0.089,0.121,0.162,,,0.139,0.186,0.095,,,0.081,0.111,130.3,156,119680,,,0.113,15750,,,,0.02382399,2876.151239,120725,,,13.28695553,56,421466,10.03682342,17.25421695,,,,,,,,,,11.91031533,6.154233729,20.80492397,14.45658721,10.41903648,19.5411062,,,,0.337,,,0.323,0.352,0.183714631,15667,85279,0.162267822,0.205161439,0.097202662,3520,36213,0.073372875,0.121032449,0.00074586,109,146140,,,1340.733945,0.95,670.7,706,,,0.055281817,460,8321,0.024030917,0.086532718,3.091623831,,,,,,3.42743043,2.819244337,2.851248834,3.226534888,3.262506604,,,,,,3.841295334,2.73652518,3.057816957,3.382570008,0.066763925,,,,,24.36426,,,,,0.757286282,48199,63647,0.709742298,0.804830266,77066,,,73162.68085,80969.31915,36861,13485.17021,60236.82979,71591,46385.04255,96796.95745,66250,53016.12766,79483.87234,70800,62660.93617,78939.06383,79038,75942.51064,82133.48936,,,,,,0.438085417,10196,23274,,,45.00096864,,,,,0.197025926,,77066,,,3.731343284,32,8576,,,3.455681927,33,954949,2.378732432,4.853062234,,,,,,,,,,,,,2.817486209,1.696310749,4.399853724,,,,20.45404291,142,692179,17.03162199,23.87646383,20.51492461,,,,,,,,,,8.558298577,4.678901471,14.35937079,24.47219248,19.98970155,28.95468341,,,,16.46972821,114,692179,13.44636671,19.4930897,,,,,,,,,,,,,20.07562509,16.27997955,24.4905601,,,,14.13688061,135,954949,11.75213105,16.52163017,,,,,,,,,,9.773487786,6.049942981,14.93981427,15.86689602,12.86043098,18.87336106,,,,18.24817518,,13700,,,127,123,0.648036072,64674,99800,,,0.685,,,,,130.1784415,,,,,0.69489306,38208,54984,0.680485574,0.709300546,0.108914938,5863,53831,0.094190854,0.123639021,0.912756438,50187,54984,0.903596086,0.921916791,146140,,,,,0.236636102,34582,146140,,,0.157362803,22997,146140,,,0.036122896,5279,146140,,,0.009826194,1436,146140,,,0.020398248,2981,146140,,,0.00106747,156,146140,,,0.25405091,37127,146140,,,0.668892843,97752,146140,,,0.008376822,1114,132986,0.005420524,0.011333119,0.505433146,73864,146140,,,0.16977258,23896,140753,, -48,383,48383,TX,Reagan County,2024,1,7849.881708,48,10460,5080.029548,11587.97393,0,,,,2,,,,2,,,,2,6472.623882,3446.399616,11068.38396,1,10793.70527,5176.001224,19850.00829,1,,,,2,,0.204,,,0.175,0.236,3.740512333,,,2.970302428,4.608339636,4.695483674,,,3.765704793,5.733007151,0.075949367,30,395,0.049823694,0.10207504,0,,,,,,,,,,0.072131148,0.04309688,0.101165415,,,,,,,,,,0.138,,,0.109,0.166,0.395,,,0.313,0.481,8.4,0.01502697,0.107,,,0.291,,,0.241,0.344,0.919940916,3114,3385,,,0.191284726,,,0.152124248,0.235004541,0.307692308,4,13,0.157450571,0.460702037,707,23,3253,,,59.73451327,54,904,44.87440484,77.94058229,,,,,,,,,,59.72045743,43.88034583,79.41554808,,,,,,,,,,0.225376796,643,2853,0.197972541,0.252781052,0.000307409,1,3253,,,3253,0,0,3135,,,-3135,,0,3135,,,,3793,,,,,,,,4940,1428,0.25,,,,,,,,0.22,0.26,0.27,,,,,,,,0.19,0.33,0.881168177,1750,1986,0.839456026,0.922880328,0.341130604,350,1026,0.229789271,0.452471938,0.035495716,58,1634,,,0.154,137,,0.096808511,0.211191489,,,,,,,,,,0.085889571,0.018666846,0.153112295,,,,3.195546667,119833,37500,1.567121373,4.823971961,0.100798403,101,1002,0.024757695,0.176839111,15.3704273,5,3253,,,92.46165561,17,18386,53.86232171,148.0400675,,,,,,,,,,,,,,,,,,,7.1,,,,,0,,,,,0.147982063,165,1115,0.065345715,0.23061841,0.102242153,0.026594256,0.177890049,0.044843049,0,0.101137601,0,0,0.021157207,0.738825032,1157,1566,0.660316024,0.81733404,,,,,,,,,,0.769688948,0.630040788,0.909337108,0.901273885,0.791832535,1,0.313,,1566,0.19187762,0.434122381,75.99773838,,,73.10978025,78.88569652,,,,,,,,,,77.11833459,73.44532776,80.79134143,,,,,,,438.3550755,48,10460,322.0868215,582.9193224,,,,,,,,,,355.8393999,225.5716553,533.9338154,589.8219318,349.5658578,932.1729399,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.116,,,0.1,0.132,0.152,,,0.131,0.173,0.125,,,0.107,0.144,,,,,,0.107,360,,,,0.01502697,50.59580734,3367,,,,,,,,,,,,,,,,,,,,,,,,,,0.359,,,0.346,0.369,0.263295099,505,1918,0.228741908,0.297848291,0.150406504,148,984,0.106321398,0.19449161,0.000956938,3,3135,,,1045,0.975,68.25,70,,,,,,,,3.008175659,,,,,,,,2.891692137,,3.090455504,,,,,,,,3.063446518,,0.003643191,,,,,3671.658,,,,,0.753433018,39504,52432,0.552517919,0.954348117,83195,,,74587.68085,91802.31915,,,,,,,,,,61500,46526.55319,76473.44681,94079,78086.82979,110071.1702,,,,,,0.586206897,476,812,,,,,,,,0.164589218,,83195,,,,,320,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,38.78073373,10,25786,18.59686922,71.31915009,,,,,,,,,,,,,,,,,,,0,,400,,,0,0,0.498447894,1124,2255,,,0.433,,,,,,,,,,0.674311927,735,1090,0.595667852,0.752956002,0.119318182,126,1056,0.036827716,0.201808647,0.844036697,920,1090,0.752038883,0.936034512,3135,,,,,0.285805423,896,3135,,,0.114513557,359,3135,,,0.027751196,87,3135,,,0.016586922,52,3135,,,0.011164274,35,3135,,,0,0,3135,,,0.728548644,2284,3135,,,0.222328549,697,3135,,,0.020930233,63,3010,0,0.053702312,0.453588517,1422,3135,,,1,3385,3385,, -48,385,48385,TX,Real County,2024,1,13077.41418,88,8414,8289.958797,19622.54222,1,,,,2,,,,2,,,,2,,,,2,14164.7527,8096.380048,23002.67095,1,,,,2,,0.231,,,0.207,0.258,4.505081829,,,3.92831777,5.167888388,5.675298589,,,4.99501689,6.459448281,0.072727273,16,220,0.038411236,0.10704331,1,,,,,,,,,,,,,0.099236641,0.048037602,0.15043568,,,,,,,0.204,,,0.175,0.235,0.397,,,0.347,0.45,1.3,0.485044297,0.213,,,0.313,,,0.279,0.35,0.00217549,6,2758,,,0.141578474,,,0.122498855,0.162308782,0.133333333,2,15,0.028850285,0.292021979,,,,,,44.397463,21,473,27.48272935,67.86623834,,,,,,,,,,55.81395349,28.83988423,97.49574441,,,,,,,,,,0.250385604,487,1945,0.219406881,0.281364328,0.000707714,2,2826,,,1413,0.000704225,2,2840,,,1420,0.000352113,1,2840,,,2840,3457,,,,,,,,,3213,0.39,,,,,,,,0.38,0.4,0.31,,,,,,,,0.28,0.31,0.890696492,1752,1967,0.751183786,1,0.263929619,90,341,0.066064494,0.461794744,0.046369204,53,1143,,,0.357,175,,0.214021277,0.499978723,,,,,,,,,,0.508,0.308140897,0.707859104,0.271062271,0.068356861,0.473767681,3.889004464,89731,23073,1.872134278,5.90587465,0.407012195,267,656,0.024979096,0.789045294,21.23142251,6,2826,,,90.38322487,15,16596,50.58680485,149.0733844,,,,,,,,,,,,,97.72565743,48.78429608,174.8581958,,,,7.5,,,,,1,,,,,0.15936255,200,1255,0.073649305,0.245075795,0.115537849,0.042218438,0.188857259,0.03187251,0,0.071904907,0.015936255,0,0.03526519,0.724462366,539,744,0.531076122,0.917848609,,,,,,,,,,,,,,,,0.03,,744,0,0.222018409,73.24453585,,,69.57219628,76.91687541,,,,,,,,,,,,,72.6476886,68.13805206,77.15732514,,,,583.3526706,88,8414,445.1595434,750.8905212,,,,,,,,,,,,,642.4580954,456.85051,878.2613659,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.143,,,0.128,0.158,0.191,,,0.173,0.21,0.132,,,0.119,0.146,,,,,,0.213,610,,,,0.485044297,1605.011578,3309,,,,,,,,,,,,,,,,,,,,,,,,,,0.358,,,0.344,0.371,0.282191781,412,1460,0.244064121,0.32031944,0.162790698,84,516,0.125854528,0.199726868,0.001056338,3,2840,,,946.6666667,,,,,,,,,,,2.449858229,,,,,,,,2.431014076,2.450937045,2.73072335,,,,,,,,2.700618378,2.702149709,0.005522769,,,,,-13466.67,,,,,0.635255046,24484,38542,0.173339579,1.097170514,49467,,,41849.80851,57084.19149,,,,,,,,,,28611,20663.76596,36558.23404,57308,39253.3617,75362.6383,,,,,,0.663176265,380,573,,,,,,,,0.247558979,,49467,,,6.451612903,1,155,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,200,,,0,0,0.768217054,1982,2580,,,0.206,,,,,,,,,,0.741935484,736,992,0.653753982,0.830116986,0.115860517,103,889,0.013480324,0.218240711,0.743951613,738,992,0.673749694,0.814153532,2840,,,,,0.177816901,505,2840,,,0.296126761,841,2840,,,0.016549296,47,2840,,,0.026760563,76,2840,,,0.006690141,19,2840,,,0.00528169,15,2840,,,0.298239437,847,2840,,,0.64471831,1831,2840,,,0.019115442,51,2668,0,0.051584854,0.504577465,1433,2840,,,1,2758,2758,, -48,387,48387,TX,Red River County,2024,1,17341.69989,360,31481,14375.05396,20308.34583,0,,,,2,,,,2,32063.68081,22205.03106,44805.78011,,,,,2,16086.03553,12654.85148,19517.21959,,,,,2,,0.211,,,0.183,0.242,4.327805479,,,3.419528049,5.318619761,5.915106829,,,4.710089433,7.182459185,0.082644628,70,847,0.06410118,0.101188076,0,,,,,,,0.097560976,0.045122445,0.149999507,0.09009009,0.036826273,0.143353908,0.081034483,0.058825605,0.103243361,,,,,,,0.217,,,0.176,0.259,0.389,,,0.305,0.477,4.6,0.25870836,0.167,,,0.29,,,0.24,0.344,0.321912488,3730,11587,,,0.155298311,,,0.121824512,0.192970636,0.230769231,6,26,0.129644728,0.34280412,285.6,33,11555,,,34.65346535,70,2020,27.01407629,43.78256873,,,,,,,40.93567252,22.37991309,68.6831027,48.58299595,25.10354295,84.86471679,27.92064658,19.75831128,38.32326886,,,,,,,0.182041102,1559,8564,0.158211315,0.20587089,0.000259628,3,11555,,,3851.666667,0.00025992,3,11542,,,3847.333333,0.000433201,5,11542,,,2308.4,3354,,,,,,,,,3557,0.39,,,,,,,0.55,,0.36,0.4,,,,,,,0.36,0.21,0.41,0.851222104,7209,8469,0.812281235,0.890162974,0.551501155,1194,2165,0.448877889,0.654124421,0.051127527,263,5144,,,0.273,636,,0.171723404,0.374276596,0.0125,0,0.25851853,,,,,,,0.208588957,0.022109989,0.395067925,0.125326371,0.041935311,0.208717431,5.294036477,88241,16668,3.904241264,6.68383169,0.218562874,511,2338,0.133610401,0.303515347,12.11596711,14,11555,,,108.374877,65,59977,83.6414421,138.1326772,,,,,,,,,,,,,127.3277097,96.18198354,165.345622,,,,9,,,,,1,,,,,0.146744412,755,5145,0.107690475,0.18579835,0.127596439,0.086370832,0.168822046,0.016326531,0,0.033316439,0.009718173,0,0.019667779,0.750639089,3230,4303,0.698029953,0.803248225,,,,,,,,,,,,,0.692616776,0.619091548,0.766142003,0.424,,4303,0.333682277,0.514317723,69.55749233,,,67.67829063,71.43669404,,,,,,,61.19942171,55.8505608,66.54828262,,,,70.07659199,67.88115007,72.27203392,,,,764.8086175,360,31481,677.0214498,852.5957852,,,,,,,1275.986955,998.3812074,1606.894395,,,,718.2563551,619.9569999,816.5557104,,,,164.8724663,17,10311,96.04428736,263.97679,,,,,,,,,,,,,205.4895054,112.3430248,344.7764732,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.135,,,0.117,0.155,0.195,,,0.168,0.223,0.121,,,0.103,0.14,181.8,18,9902,,,0.167,1950,,,,0.25870836,3326.989509,12860,,,,,,,,,,,,,,,,,,,,,,,,,,0.368,,,0.353,0.382,0.212792907,1344,6316,0.183005673,0.242580141,0.098353736,233,2369,0.069757991,0.12694948,0.000433201,5,11542,,,2308.4,,,,,,,,,,,2.815843793,,,,,,,2.380871173,,3.035171831,2.984221683,,,,,,,2.465628556,,3.247428794,0.182220112,,,,,-6213.856638,,,,,0.670243647,35789,53397,0.458596867,0.881890426,47081,,,40169.17021,53992.82979,35000,28617.19149,41382.80851,,,,27880,15794.7234,39965.2766,50921,39406.44681,62435.55319,52820,45723.48936,59916.51064,,,,,,0.731998093,1535,2097,,,67.50790554,,,,,0.285550434,,47081,,,,,642,,,,,,,,,,,,,,,,,,,,,,,,,,25.50437658,15,59977,13.58000638,43.61326069,25.00958701,,,,,,,,,,,,,35.31135093,18.80180719,60.3834855,,,,21.67497541,13,59977,11.54101154,37.06486806,,,,,,,,,,,,,27.28450922,14.09830406,47.66054671,,,,37.80763005,32,84639,25.86039097,53.37309288,,,,,,,,,,,,,40.36098868,26.1195038,59.58078122,,,,18.88888889,,900,,,8,9,0.602594707,5806,9635,,,0.479,,,,,14.08949636,,,,,0.75010725,3497,4662,0.699835855,0.800378646,0.131379962,556,4232,0.083313566,0.179446358,0.675461176,3149,4662,0.625350622,0.725571729,11542,,,,,0.204037429,2355,11542,,,0.25038988,2890,11542,,,0.150927049,1742,11542,,,0.018974181,219,11542,,,0.005198406,60,11542,,,0.000519841,6,11542,,,0.081528331,941,11542,,,0.730635938,8433,11542,,,0.016562958,181,10928,0.003960724,0.029165191,0.505371686,5833,11542,,,1,11587,11587,, -48,389,48389,TX,Reeves County,2024,1,9223.813411,223,43957,7652.334363,10795.29246,0,,,,2,,,,2,,,,2,9933.694185,8073.359267,11794.0291,,8892.679664,5697.707656,13231.60244,1,,,,2,,0.279,,,0.25,0.31,4.511086829,,,3.884092754,5.085608007,5.03456089,,,4.390036352,5.629972832,0.079883805,110,1377,0.065563911,0.0942037,0,,,,,,,,,,0.077943615,0.06281318,0.093074051,0.1,0.051990001,0.148009999,,,,,,,0.188,,,0.163,0.213,0.427,,,0.385,0.468,7.4,0.071886015,0.126,,,0.365,,,0.329,0.401,0.813466233,11997,14748,,,0.184626131,,,0.163558971,0.204159129,0.176470588,15,85,0.123652529,0.235388397,1028.5,149,14487,,,66.49892164,185,2782,56.91628965,76.08155363,,,,,,,,,,72.44556114,61.65001046,83.24111182,38.02281369,18.2334171,69.92530815,,,,,,,0.227067216,2260,9953,0.199662961,0.254471471,0.000345137,5,14487,,,2897.4,0.000154979,2,12905,,,6452.5,,0,12905,,,,2933,,,,,,,,2933,3124,0.21,,,,,,,,0.21,0.26,0.25,,,,,,,,0.26,0.2,0.707936508,6467,9135,0.649837633,0.766035383,0.461556886,1927,4175,0.349824582,0.57328919,0.034017595,290,8525,,,0.284,898,,0.19106383,0.37693617,,,,,,,,,,0.375090777,0.26472144,0.485460114,,,,5.218482707,112260,21512,3.627585446,6.809379968,0.378578024,1230,3249,0.196773792,0.560382256,4.141644233,6,14487,,,74.94702021,58,77388,56.91041464,96.88640325,,,,,,,,,,72.34892855,52.14274398,97.79473365,108.0069124,60.450649,178.1409769,,,,6.6,,,,,1,,,,,0.128647215,485,3770,0.074904641,0.182389789,0.076860623,0.035391156,0.118330089,0.042440318,0.00969417,0.075186467,0.00928382,0,0.020573539,0.779056755,4873,6255,0.705150624,0.852962885,,,,,,,,,,0.782102462,0.73876609,0.825438834,0.835744491,0.746792843,0.92469614,0.196,,6255,0.129778483,0.262221517,74.65708963,,,73.22700976,76.0871695,,,,,,,,,,73.870386,72.23040791,75.5103641,75.81452367,72.78249856,78.84654878,,,,526.1018619,223,43957,456.8994238,595.3043,,,,,,,,,,574.4625879,490.3057158,658.6194599,458.274018,325.8776259,626.4756689,,,,83.68200837,13,15535,44.5571451,143.0987829,,,,,,,,,,99.48725798,52.97277486,170.1262411,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.147,,,0.132,0.162,0.168,,,0.154,0.182,0.162,,,0.147,0.175,1000,121,12100,,,0.126,1830,,,,0.071886015,990.8049392,13783,,,,,,,,,,,,,,,,,,,,,,,,,,0.372,,,0.357,0.386,0.275744048,1853,6720,0.239999367,0.311488729,0.130029155,446,3430,0.094284474,0.165773835,0.000387447,5,12905,,,2581,0.87761194,176.4,201,,,,,,,,2.669172524,,,,,,,,2.610945338,3.053365696,2.900962212,,,,,,,,2.885249751,2.822278025,0.020820854,,,,,5582.933,,,,,0.687781142,39295,57133,0.528669904,0.846892381,53969,,,46062.2766,61875.7234,,,,,,,,,,50037,37871.89362,62202.10638,111558,15187.95745,207928.0426,,,,,,0.683930472,1928,2819,,,54.08546492,,,,,0.312846264,,53969,,,3.851091143,3,779,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,30.8293084,33,107041,21.22147735,43.2958112,,,,,,,,,,28.65329513,18.1637312,42.99401133,,,,,,,17.14285714,,1400,,,10,14,0.364705882,3689,10115,,,0.396,,,,,74.96530331,,,,,0.750303619,3089,4117,0.67555393,0.825053309,0.118608876,457,3853,0.057831259,0.179386494,0.707068254,2911,4117,0.654807766,0.759328742,12905,,,,,0.24610616,3176,12905,,,0.123750484,1597,12905,,,0.036807439,475,12905,,,0.013715614,177,12905,,,0.018674932,241,12905,,,0.00123983,16,12905,,,0.77280124,9973,12905,,,0.161022859,2078,12905,,,0.118298324,1560,13187,0.07941762,0.157179028,0.423479272,5465,12905,,,0.113032276,1667,14748,, -48,391,48391,TX,Refugio County,2024,1,11525.95292,123,18391,8069.934108,14981.97174,0,,,,2,,,,2,,,,2,9232.313391,5378.162772,14781.82809,1,13317.29115,7892.670743,21047.06145,1,,,,2,,0.233,,,0.204,0.265,4.261579237,,,3.409706913,5.212428442,5.403210826,,,4.293443628,6.589214021,0.070281125,35,498,0.047830079,0.09273217,0,,,,,,,,,,0.066666667,0.037706144,0.09562719,0.065217391,0.029540732,0.100894051,,,,,,,0.182,,,0.152,0.215,0.409,,,0.326,0.495,6.6,0.08796067,0.159,,,0.317,,,0.268,0.372,0.125352322,845,6741,,,0.159337847,,,0.126402796,0.196948838,0.166666667,3,18,0.057993584,0.308188518,355.2,24,6756,,,26.2273033,39,1487,18.65017652,35.853587,,,,,,,,,,31.71247357,21.39627275,45.2715279,,,,,,,,,,0.198029366,1025,5176,0.17300809,0.223050643,0.000148017,1,6756,,,6756,0.000301568,2,6632,,,3316,,0,6632,,,,4325,,,,,,,,3101,4859,0.32,,,,,,,0.17,0.34,0.32,0.24,,,,,,,,0.21,0.28,0.838401021,3943,4703,0.798639167,0.878162874,0.35,525,1500,0.269271625,0.430728375,0.047169811,140,2968,,,0.282,411,,0.179531915,0.384468085,,,,,,,0.64,0.24248572,1,0.329100529,0.198283412,0.459917646,0.01986755,0,0.080804054,4.781527901,91944,19229,3.794488201,5.768567601,0.441001978,669,1517,0.267907915,0.61409604,5.920663114,4,6756,,,80.37431467,28,34837,53.40814839,116.163263,,,,,,,,,,79.10051415,43.24498715,132.717222,76.28823081,38.08280995,136.5007179,,,,8.8,,,,,1,,,,,0.1208577,310,2565,0.078643772,0.163071627,0.08709422,0.042237559,0.131950881,0.023001949,0.002153139,0.043850759,0.01754386,0,0.035592654,0.84473993,2160,2557,0.782797476,0.906682383,,,,,,,,,,0.833487512,0.698981138,0.967993885,0.841446453,0.730892505,0.952000402,0.411,,2557,0.310433781,0.51156622,74.06602999,,,71.49776025,76.63429972,,,,,,,,,,75.78504242,72.17530779,79.39477706,72.71922691,68.44356216,76.99489165,,,,485.4443175,123,18391,391.8951297,578.9935053,,,,,,,,,,405.7113999,293.6153518,546.4905932,530.4935773,386.9456555,709.8421444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.135,,,0.118,0.153,0.178,,,0.156,0.201,0.134,,,0.116,0.153,,,,,,0.159,1090,,,,0.08796067,649.4136252,7383,,,,,,,,,,,,,,,,,,,,,,,,,,0.357,,,0.345,0.369,0.231816944,851,3671,0.199646731,0.263987156,0.117758186,187,1588,0.083204995,0.152311378,0.00075392,5,6632,,,1326.4,,,,,,,,,,,2.72665931,,,,,,,,2.721723018,2.809121322,2.789546702,,,,,,,,2.648786538,3.044585735,0.042313344,,,,,-3480.076667,,,,,0.731359879,34861,47666,0.582657511,0.880062248,50936,,,43254.46809,58617.53192,,,,,,,,,,51164,38597.3617,63730.6383,57611,51265.12766,63956.87234,,,,,,0.686009539,863,1258,,,45.75956039,,,,,0.332829433,,50936,,,2.207505519,1,453,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,28.31314337,14,49447,15.47905895,47.5046436,,,,,,,,,,,,,,,,,,,,,600,,,-888,8,0.627985075,3366,5360,,,0.402,,,,,54.30893792,,,,,0.757941835,1694,2235,0.715443138,0.800440531,0.147423664,309,2096,0.081407082,0.213440246,0.756152125,1690,2235,0.700103285,0.812200965,6632,,,,,0.222406514,1475,6632,,,0.219390832,1455,6632,,,0.05548854,368,6632,,,0.012515078,83,6632,,,0.010102533,67,6632,,,0.000150784,1,6632,,,0.526085645,3489,6632,,,0.394149578,2614,6632,,,0.012143195,77,6341,0,0.028872167,0.509197829,3377,6632,,,1,6741,6741,, -48,393,48393,TX,Roberts County,2024,0,,,,,,2,,,,2,,,,2,,,,2,,,,2,,,,2,,,,2,,0.149,,,0.13,0.171,3.492824992,,,3.037757072,4.034899748,5.210171131,,,4.63219249,5.838378934,,,,,,0,,,,,,,,,,,,,,,,,,,,,,0.155,,,0.128,0.184,0.349,,,0.313,0.387,5.9,0.214080329,0.127,,,0.22,,,0.192,0.251,0.009673519,8,827,,,0.188954269,,,0.170219321,0.207836935,0.666666667,4,6,0.494967173,0.784226735,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.157894737,99,627,0.135256439,0.180533035,0,0,797,,,-797,0,0,803,,,-803,0,0,803,,,-803,,,,,,,,,,,0.44,,,,,,,,,0.44,0.3,,,,,,,,,0.3,0.917910448,492,536,0.678901028,1,0.62345679,101,162,0.312795596,0.934117985,0.037593985,15,399,,,0.133,24,,0.081765957,0.184234043,,,,,,,,,,0.711111111,0.038330139,1,0.032520325,0,0.251332081,3.812147617,119000,31216,2.965399355,4.658895879,0.02247191,4,178,0,0.135720109,0,0,797,,,,,,,,,,,,,,,,,,,,,,,,,,5.9,,,,,0,,,,,0.042424242,14,330,0,0.09256529,0.024539877,0,0.170937118,0.012121212,0,0.115033135,0.012121212,0,0.083553736,0.74120603,295,398,0.571015953,0.911396108,,,,,,,,,,,,,,,,0.22,,398,0.119025231,0.320974769,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.105,,,0.093,0.118,0.167,,,0.151,0.184,0.09,,,0.082,0.099,0,0,675,,,0.127,90,,,,0.214080329,198.8806254,929,,,,,,,,,,,,,,,,,,,,,,,,,,0.333,,,0.319,0.347,0.169724771,74,436,0.142320515,0.197129026,0.134328358,27,201,0.098583677,0.170073039,0.00124533,1,803,,,803,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4566.615,,,,,0.745995688,38750,51944,0.465676391,1.026314985,70814,,,60394.42553,81233.57447,,,,,,,,,,,,,61635,46466.14894,76803.85106,,,,,,0.295918367,58,196,,,,,,,,0.214420877,,70814,,,,,9,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,100,,,0,0,0.916666667,550,600,,,0.486,,,,,9.083803972,,,,,0.865625,277,320,0.808747345,0.922502655,0.009966777,3,301,0,0.232994391,0.71875,230,320,0.576367865,0.861132135,803,,,,,0.229140722,184,803,,,0.231631382,186,803,,,0,0,803,,,0.02615193,21,803,,,0.00249066,2,803,,,0,0,803,,,0.128268991,103,803,,,0.840597758,675,803,,,0,0,745,0,0.095958875,0.501867995,403,803,,,1,827,827,, -48,395,48395,TX,Robertson County,2024,1,10120.38592,349,46865,8435.593275,11805.17857,0,,,,2,,,,2,13129.73622,9244.545985,18097.61186,,5992.330549,3839.399252,8916.112863,1,11522.54567,8843.519927,14201.57141,,,,,2,,0.212,,,0.183,0.243,4.142683664,,,3.27827999,5.00597661,5.505545736,,,4.344162432,6.549564256,0.091774303,135,1471,0.077020392,0.106528215,0,,,,,,,0.165242165,0.126387497,0.204096833,0.07875895,0.052966912,0.104550988,0.059612519,0.041697512,0.077527525,,,,,,,0.192,,,0.157,0.228,0.4,,,0.314,0.476,6.8,0.097046454,0.141,,,0.291,,,0.24,0.337,0.580414155,9726,16757,,,0.161290971,,,0.126702713,0.193838239,0.058823529,2,34,0.010286647,0.152061578,583.8,99,16958,,,33.6854125,118,3503,27.6074651,39.76335991,,,,,,,50.82417582,35.78491012,70.05443151,34.39380911,24.57144148,46.83460616,25.19893899,17.832269,34.58751255,,,,,,,0.192732187,2567,13319,0.170093889,0.215370485,0.000117938,2,16958,,,8479,5.82988E-05,1,17153,,,17153,0.000174897,3,17153,,,5717.666667,3548,,,,,,,3310,,3815,0.38,,,,,,,0.35,0.36,0.38,0.41,,,,,,,0.39,0.34,0.41,0.852803738,9855,11556,0.822012912,0.883594565,0.444388271,1758,3956,0.37647019,0.512306352,0.038389161,306,7971,,,0.266,1085,,0.175446809,0.356553192,,,,,,,0.498122653,0.372390271,0.623855036,0.106317411,0.021905381,0.190729442,0.063865546,0.018107129,0.109623964,4.921471007,117633,23902,4.036144963,5.80679705,0.296793438,1194,4023,0.225333679,0.368253197,10.02476707,17,16958,,,86.37392908,74,85674,67.82211201,108.4345583,,,,,,,85.52229689,46.75583553,143.4918822,,,,107.0135002,79.92280046,140.333968,,,,9.1,,,,,0,,,,,0.140740741,950,6750,0.105090202,0.176391279,0.09469697,0.06206701,0.12732693,0.037777778,0.014058006,0.06149755,0.011111111,0.002045236,0.020176987,0.775880308,5134,6617,0.726455105,0.825305511,,,,,,,,,,0.725839616,0.551532708,0.900146524,0.818824977,0.752653823,0.884996131,0.392,,6617,0.322790979,0.461209021,74.90661381,,,73.5522981,76.26092952,,,,,,,71.61247378,68.40872825,74.81621931,79.66860649,76.05034753,83.28686545,74.04621338,72.11799349,75.97443328,,,,525.1142581,349,46865,466.557831,583.6706852,,,,,,,692.8146693,546.7585026,865.8994649,384.2541844,269.1269068,531.9697596,546.7915305,466.8641691,626.7188919,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.129,,,0.112,0.147,0.182,,,0.159,0.205,0.122,,,0.104,0.14,170.4,24,14085,,,0.141,2370,,,,0.097046454,1613.106165,16622,,,,,,,,,,,,,,,,,,,,,,,,,,0.376,,,0.363,0.388,0.225391082,2118,9397,0.195603848,0.255178316,0.117145641,481,4106,0.084975428,0.149315853,0.00052469,9,17153,,,1905.888889,0.925118483,195.2,211,,,,,,,,3.077494763,,,,,,,2.472378671,2.782724031,3.537972157,3.300829458,,,,,,,2.630711969,3.229974255,3.637567076,0.177668408,,,,,-16952.7772,,,,,0.717709634,44259,61667,0.510584988,0.924834281,57796,,,50755.48936,64836.51064,,,,,,,30361,21884.74468,38837.25532,71801,61196.74468,82405.25532,68650,56094.08511,81205.91489,,,,,,0.598925694,2007,3351,,,51.79380007,,,,,0.303308187,,57796,,,2.806361085,3,1069,,,10.07692049,12,119084,5.206891865,17.60235216,,,,,,,,,,,,,,,,,,,18.70315752,15,85674,10.22519026,31.38072027,17.50822887,,,,,,,,,,,,,29.03824816,14.49578886,51.95744716,,,,17.50822887,15,85674,9.79922279,28.87716095,,,,,,,,,,,,,,,,,,,25.19230123,30,119084,16.99713985,35.96357646,,,,,,,,,,,,,32.37150719,20.28705121,49.01085091,,,,,,1600,,,6,-888,0.644311854,8099,12570,,,0.439,,,,,41.14331117,,,,,0.752258678,4746,6309,0.715358109,0.789159247,0.116244411,702,6039,0.074498931,0.157989892,0.803296878,5068,6309,0.767883385,0.838710371,17153,,,,,0.239316738,4105,17153,,,0.20853495,3577,17153,,,0.182358771,3128,17153,,,0.012184458,209,17153,,,0.009152918,157,17153,,,0.000582988,10,17153,,,0.229347636,3934,17153,,,0.561009736,9623,17153,,,0.016277603,258,15850,0.003923857,0.028631348,0.507083309,8698,17153,,,1,16757,16757,, -48,397,48397,TX,Rockwall County,2024,1,5456.437964,992,315245,4953.85446,5959.021467,0,,,,2,,,,2,8741.322662,6491.888551,10990.75677,,4448.563052,3450.871754,5446.25435,,5584.384752,4946.295097,6222.474406,,,,,2,,0.126,,,0.106,0.149,2.958882532,,,2.331233737,3.773797459,4.550579088,,,3.661407922,5.593835896,0.073279603,591,8065,0.067592124,0.078967082,0,,,,0.126984127,0.090214724,0.16375353,0.144130758,0.117595056,0.17066646,0.066522445,0.055163875,0.077881015,0.063020214,0.056315388,0.06972504,,,,0.082706767,0.035895018,0.129518516,0.116,,,0.089,0.147,0.324,,,0.257,0.406,8.8,0.032371832,0.083,,,0.192,,,0.153,0.235,0.833044269,89818,107819,,,0.207797151,,,0.169350974,0.254718771,0.341463415,14,41,0.260140378,0.422314709,244,284,116381,,,8.465417867,235,27760,7.383060841,9.547774894,,,,,,,11.59678858,7.575407322,16.9919822,14.51084413,11.712124,17.7767644,6.097560976,4.936755921,7.258366031,,,,,,,0.128064431,13023,101691,0.113766558,0.142362303,0.00066162,77,116381,,,1511.441558,0.000698007,86,123208,,,1432.651163,0.001607039,198,123208,,,622.2626263,2398,,,,,,,4647,879,2333,0.4,,,,,,0.26,0.36,0.31,0.41,0.48,,,,,,0.49,0.28,0.34,0.49,0.943435774,67967,72042,0.934032107,0.95283944,0.79116925,23527,29737,0.740571685,0.841766815,0.033096368,1960,59221,,,0.06,1909,,0.038553192,0.081446809,0.073863636,0,0.282260272,0.129100529,0,0.277955676,0.156292594,0.083371481,0.229213708,0.05594891,0.01678087,0.09511695,0.032167108,0.016986856,0.04734736,3.323776168,208783,62815,3.092310846,3.555241491,0.128927079,3796,29443,0.098990201,0.158863958,7.733221058,90,116381,,,47.29214629,250,528629,41.4297511,53.15454148,,,,,,,33.9727173,18.08904116,58.09438122,24.17332272,15.48830399,35.96798807,56.8089372,49.05112744,64.56674697,,,,9.3,,,,,0,,,,,0.102307357,3525,34455,0.084888863,0.119725852,0.084169211,0.068538271,0.09980015,0.020896822,0.012398692,0.029394952,0.008852126,0.004562606,0.013141646,0.748713291,42041,56151,0.72539413,0.772032452,,,,0.690825688,0.578011494,0.803639882,0.747337412,0.623819095,0.870855729,0.677089365,0.614638502,0.739540228,0.679907429,0.640814742,0.719000115,0.578,,56151,0.537419335,0.618580665,79.60177196,,,79.08041888,80.12312503,,,,86.75845058,82.18623545,91.33066571,74.2704912,72.24939085,76.29159156,82.43335149,80.27901798,84.587685,79.4024846,78.79415649,80.0108127,,,,279.6779049,992,315245,262.0664208,297.289389,,,,,,,453.5490603,360.9378548,546.1602658,234.6056112,186.1190411,283.0921813,283.226939,262.454292,303.9995861,,,,35.56440714,45,126531,25.94092261,47.58797488,,,,,,,,,,,,,37.58765051,25.17303946,53.98213607,,,,4.018667358,31,7714,2.730489497,5.704177535,,,,,,,,,,,,,,,,,,,,,,0.088,,,0.075,0.104,0.145,,,0.123,0.168,0.084,,,0.071,0.099,168,160,95230,,,0.083,8760,,,,0.032371832,2535.912214,78337,,,9.964249481,33,331184,6.858930858,13.99351094,,,,,,,,,,,,,12.10583187,7.977819485,17.61334979,,,,0.32,,,0.305,0.336,0.148639625,10462,70385,0.130767285,0.166511965,0.085443809,2807,32852,0.063997,0.106890617,0.001055126,130,123208,,,947.7538462,0.968671566,1713.58,1769,,,0.079082028,510,6449,0.032446371,0.125717686,3.19735431,,,,,,3.545636049,2.702036791,2.872869985,3.360749197,3.50314408,,,,,,3.99583927,2.899774206,3.211640259,3.671007114,0.029657077,,,,,-1650.8195,,,,,0.755977949,64590,85439,0.694444984,0.817510914,124291,,,115182.0638,133399.9362,76515,75616.61702,77413.38298,98958,76075.44681,121840.5532,105740,77940.17021,133539.8298,115322,98989.06383,131654.9362,126453,119774.7021,133131.2979,,,,,,0.299491472,6655,22221,,,41.12490602,,,,,0.160389731,,124291,,,3.745902919,24,6407,,,2.102406835,15,713468,1.176701146,3.467600351,,,,,,,,,,,,,2.016377014,0.966931154,3.70818912,,,,14.1180629,73,528629,11.04651472,17.7793637,13.80930672,,,,,,,,,,,,,19.63108182,15.21381877,24.93077998,,,,11.16094652,59,528629,8.496229611,14.39680785,,,,,,,,,,,,,14.34012007,10.70988757,18.80515961,,,,8.269466886,59,713468,6.29510134,10.66700978,,,,,,,,,,10.69240992,5.845639999,17.94004699,8.267145758,5.932646529,11.21531672,,,,6.09375,,12800,,,32,46,0.76817048,53891,70155,,,0.72,,,,,63.40579146,,,,,0.831630633,31503,37881,0.817245623,0.846015643,0.085148884,3197,37546,0.070232978,0.10006479,0.965286027,36566,37881,0.960831859,0.969740196,123208,,,,,0.262385559,32328,123208,,,0.126290501,15560,123208,,,0.09040809,11139,123208,,,0.009220181,1136,123208,,,0.036791442,4533,123208,,,0.001396013,172,123208,,,0.209199078,25775,123208,,,0.639163041,78750,123208,,,0.013414235,1395,103994,0.009493126,0.017335345,0.499853906,61586,123208,,,0.137359835,14810,107819,, -48,399,48399,TX,Runnels County,2024,1,10769.75798,227,27708,8533.965975,13005.54999,0,,,,2,,,,2,,,,2,10170.25073,7083.952272,14144.3568,,11842.71658,8583.160076,15102.27308,,,,,2,,0.202,,,0.174,0.232,4.079919682,,,3.244447433,4.970681655,5.367663399,,,4.260489957,6.53255072,0.09656925,76,787,0.075932773,0.117205728,0,,,,,,,,,,0.141566265,0.104067212,0.179065319,0.064073227,0.041113084,0.087033369,,,,,,,0.177,,,0.144,0.214,0.38,,,0.3,0.466,6.3,0.159853875,0.136,,,0.286,,,0.238,0.339,0.685252525,6784,9900,,,0.171601236,,,0.135829913,0.211986071,0.388888889,7,18,0.263815024,0.50698808,492.8,49,9943,,,27.47009304,62,2257,21.06116282,35.21541953,,,,,,,,,,39.66005666,28.58348039,53.60887515,16.96428571,10.21360818,26.49183355,,,,,,,0.21587868,1694,7847,0.190857403,0.240899956,0.000704013,7,9943,,,1420.428571,0.00020286,2,9859,,,4929.5,0.000507151,5,9859,,,1971.8,4613,,,,,,,,4506,4303,0.39,,,,,,,,0.26,0.41,0.32,,,,,,,0.36,0.27,0.32,0.828947368,5670,6840,0.794147387,0.86374735,0.511972138,1176,2297,0.420024722,0.603919553,0.033020878,155,4694,,,0.242,552,,0.14906383,0.33493617,,,,,,,,,,0.174686193,0.071080414,0.278291971,0.135434412,0.054737931,0.216130894,4.222146171,111034,26298,3.090686862,5.35360548,0.22034632,509,2310,0.141860371,0.298832269,18.10318817,18,9943,,,88.04883776,45,51108,64.22342645,117.8162724,,,,,,,,,,78.51934941,42.92725898,131.7421263,100.1486076,68.04611998,142.1529544,,,,7.4,,,,,1,,,,,0.131105399,510,3890,0.09121563,0.170995167,0.087596899,0.050991747,0.124202051,0.015424165,0,0.03098013,0.033419023,0.009608904,0.057229142,0.852406903,3754,4404,0.79215477,0.912659036,,,,,,,,,,0.867052023,0.772690306,0.96141374,0.805632502,0.739223138,0.872041867,0.337,,4404,0.271197849,0.402802151,73.15030058,,,71.51788116,74.78272,,,,,,,,,,73.19392833,70.38351369,76.00434297,72.37642555,70.14335451,74.60949658,,,,582.9712426,227,27708,502.6499611,663.2925242,,,,,,,,,,602.7650257,462.1364889,772.7175595,613.4638327,508.7338182,718.1938473,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.126,,,0.108,0.145,0.175,,,0.152,0.201,0.116,,,0.099,0.134,144.6,12,8300,,,0.136,1340,,,,0.159853875,1678.625537,10501,,,,,,,,,,,,,,,,,,,,,,,,,,0.35,,,0.338,0.363,0.250453391,1381,5514,0.218283179,0.282623604,0.136363636,336,2464,0.098235977,0.174491296,0.001217162,12,9859,,,821.5833333,0.953911565,140.225,147,,,,,,,,2.815916765,,,,,,,,2.706630845,2.831722672,2.957043399,,,,,,,,2.755280176,3.139638413,0.036505835,,,,,-4184.74125,,,,,0.801018198,36975,46160,0.648545784,0.953490611,52729,,,45846.95745,59611.04255,,,,,,,52396,10871.40426,93920.59575,46667,30340.02128,62993.97872,61641,49057.68085,74224.31915,,,,,,0.617426139,1233,1997,,,31.11228528,,,,,0.26258795,,52729,,,7.054673721,4,567,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,30.51021399,22,72107,19.12058867,46.19283064,,,,,,,,,,,,,38.64251131,22.51068686,61.87040396,,,,15,,1000,,,8,7,0.579750164,4409,7605,,,0.505,,,,,16.90953349,,,,,0.769047619,2907,3780,0.728812526,0.809282712,0.068281938,248,3632,0.031189942,0.105373935,0.821428571,3105,3780,0.783777978,0.859079165,9859,,,,,0.234303682,2310,9859,,,0.204381783,2015,9859,,,0.022720357,224,9859,,,0.020286033,200,9859,,,0.01196876,118,9859,,,0.000405721,4,9859,,,0.358251344,3532,9859,,,0.593467897,5851,9859,,,0.027186761,253,9306,0.011300698,0.043072825,0.485951922,4791,9859,,,1,9900,9900,, -48,401,48401,TX,Rusk County,2024,1,9577.145677,1007,150210,8669.31458,10484.97677,0,,,,2,,,,2,12772.70295,10154.28587,15391.12004,,7752.984073,5944.168432,9938.975681,,9169.765635,8063.381097,10276.15017,,,,,2,,0.196,,,0.169,0.226,4.043287488,,,3.257578332,4.985769607,5.517457339,,,4.487227804,6.720125761,0.082425743,333,4040,0.073945321,0.090906164,0,,,,,,,0.162698413,0.13047486,0.194921965,0.061565523,0.047593909,0.075537138,0.074956672,0.064213703,0.085699642,,,,,,,0.19,,,0.155,0.229,0.383,,,0.308,0.469,7,0.111996608,0.126,,,0.275,,,0.229,0.328,0.466350021,24350,52214,,,0.185532418,,,0.149741382,0.227591708,0.151162791,13,86,0.10062601,0.209307432,367.8,194,52743,,,28.58179839,315,11021,25.42541066,31.73818611,,,,,,,29.81205444,21.82617071,39.76510286,35.57725846,28.67281839,42.48169853,25.55859187,21.58581263,29.5313711,,,,,,,0.203009691,7730,38077,0.182754372,0.22326501,0.000227518,12,52743,,,4395.25,0.000337502,18,53333,,,2962.944444,0.000337502,18,53333,,,2962.944444,3729,,,,,,,4180,2722,3550,0.35,,,,,,,0.22,0.22,0.37,0.42,,,,,,,0.32,0.2,0.44,0.841527936,30380,36101,0.8278215,0.855234371,0.529896322,7462,14082,0.475298681,0.584493962,0.041530981,931,22417,,,0.221,2596,,0.156659575,0.285340426,,,,,,,0.076124568,0.010662009,0.141587126,0.374729018,0.254730564,0.494727473,0.123410853,0.077356279,0.169465426,4.177424395,120314,28801,3.774009191,4.580839599,0.223747775,2640,11799,0.177773222,0.269722328,12.13431166,64,52743,,,87.0678236,234,268756,75.9118923,98.22375491,,,,,,,122.702075,92.68782879,159.3388506,67.87714237,46.42791514,95.82227236,85.05762063,71.16487593,98.95036533,,,,9.5,,,,,1,,,,,0.124342288,2245,18055,0.101701753,0.146982822,0.081209745,0.061702827,0.100716663,0.032124065,0.019680158,0.044567973,0.012738854,0.006391407,0.0190863,0.850607441,17924,21072,0.828965343,0.87224954,,,,,,,0.825046904,0.752296805,0.897797004,0.874572962,0.777460477,0.971685448,0.828039546,0.734263793,0.921815299,0.402,,21072,0.358027747,0.445972254,74.65351248,,,73.92403882,75.38298614,,,,,,,71.94676067,70.07186298,73.82165835,86.60911701,75.55209831,97.6661357,74.75334613,73.88487787,75.62181439,,,,512.5175259,1007,150210,479.8388486,545.1962032,,,,,,,632.7972078,543.9379608,721.6564547,382.2705113,299.6390586,480.647776,512.7076347,472.9203267,552.4949428,,,,68.23997725,36,52755,47.79444113,94.4728926,,,,,,,,,,76.8263724,38.3514483,137.4636019,48.42782525,26.4759427,81.25366191,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.124,,,0.108,0.143,0.178,,,0.156,0.205,0.114,,,0.098,0.133,421.9,188,44561,,,0.126,6600,,,,0.111996608,5972.77911,53330,,,9.289478736,15,161473,5.199250731,15.32158248,,,,,,,,,,,,,12.8561398,6.845352991,21.98439059,,,,0.363,,,0.349,0.375,0.245083662,6518,26595,0.217679407,0.272487918,0.111553454,1345,12057,0.084149199,0.13895771,0.000487503,26,53333,,,2051.269231,0.93459854,512.16,548,,,0.151668352,450,2967,0.062796663,0.240540041,2.782642222,,,,,,,2.221421994,2.596354309,3.063832357,2.911020512,,,,,,,2.416112888,2.828426071,3.100623201,0.034105106,,,,,-13172.565,,,,,0.696680071,37248,53465,0.621319298,0.772040845,55085,,,48581.85106,61588.14894,,,,,,,40504,33181.10638,47826.89362,52068,41702.04255,62433.95745,74814,67754.42553,81873.57447,,,,,,0.680460197,7334,10778,,,22.80313761,,,,,0.254588363,,55085,,,2.737850787,8,2922,,,6.14057102,23,374558,3.892595282,9.213871522,,,,,,,18.8747503,9.752858909,32.97039031,,,,,,,,,,16.21776362,44,268756,11.68833752,21.92170507,16.37172752,,,,,,,,,,,,,17.26595215,11.56327914,24.7967874,,,,16.37172752,44,268756,11.89572228,21.97828003,,,,,,,24.1021933,12.03172806,43.12548153,,,,16.53898179,10.99003329,23.90343358,,,,31.77078049,119,374558,26.06243206,37.47912893,,,,,,,36.17660475,22.93286414,54.28266967,32.46251353,20.09480752,49.62240027,31.61248988,24.86522866,39.62652981,,,,6.93877551,,4900,,,5,29,0.544775739,21377,39240,,,0.512,,,,,18.04266,,,,,0.791591727,14084,17792,0.771029271,0.812154183,0.087231797,1488,17058,0.068000542,0.106463053,0.729485162,12979,17792,0.696130907,0.762839417,53333,,,,,0.222601391,11872,53333,,,0.173813586,9270,53333,,,0.16318227,8703,53333,,,0.011081319,591,53333,,,0.007575047,404,53333,,,0.001256258,67,53333,,,0.185944912,9917,53333,,,0.622578891,33204,53333,,,0.024980938,1245,49838,0.016752763,0.033209114,0.467309171,24923,53333,,,0.640747692,33456,52214,, -48,403,48403,TX,Sabine County,2024,1,16185.43437,281,26729,12840.00979,19530.85894,0,,,,2,,,,2,,,,2,,,,2,17756.43436,13811.55889,21701.30984,,,,,2,,0.201,,,0.169,0.233,4.330658501,,,3.456701018,5.298438927,5.979145001,,,4.806262961,7.155806975,0.089163237,65,729,0.068475857,0.109850618,0,,,,,,,,,,,,,0.08988764,0.067427651,0.11234763,,,,,,,0.214,,,0.169,0.257,0.377,,,0.295,0.462,6,0.055449779,0.202,,,0.272,,,0.22,0.323,0.752173034,7442,9894,,,0.148607266,,,0.117853867,0.183039565,0.260869565,6,23,0.151021274,0.378411613,328.7,33,10039,,,47.21930745,90,1906,37.96989933,58.04054554,,,,,,,,,,,,,48.55643045,38.12724163,60.9581519,,,,,,,0.213289228,1483,6953,0.188267951,0.238310504,0.000199223,2,10039,,,5019.5,0.000298567,3,10048,,,3349.333333,0.000298567,3,10048,,,3349.333333,2716,,,,,,,,,2717,0.28,,,,,,,0.43,,0.28,0.34,,,,,,,0.23,,0.34,0.869136776,6615,7611,0.822754396,0.915519156,0.507002801,905,1785,0.38605755,0.627948053,0.07020202,278,3960,,,0.271,476,,0.163765957,0.378234043,,,,,,,0.113924051,0.075170549,0.152677552,0.35483871,0,0.748927767,0.164575646,0.091213063,0.237938229,4.580283042,95476,20845,3.189950481,5.970615602,0.27904328,490,1756,0.190007541,0.368079019,13.94561211,14,10039,,,128.505121,67,52138,99.58970372,163.1969612,,,,,,,,,,,,,143.5556951,110.5553778,183.3174178,,,,8.8,,,,,1,,,,,0.150276243,680,4525,0.105267864,0.195284622,0.138702461,0.095410288,0.181994634,0.005082873,0,0.014432044,0.012154696,0.001705786,0.022603607,0.861340376,2609,3029,0.809302014,0.913378738,,,,,,,,,,,,,0.790856542,0.690119979,0.891593106,0.373,,3029,0.261234741,0.484765259,71.22603626,,,69.08008899,73.37198352,,,,,,,,,,,,,69.99708337,67.57192027,72.42224647,,,,668.7695557,281,26729,574.4498433,763.089268,,,,,,,,,,,,,713.2651474,605.6524361,820.8778587,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.134,,,0.114,0.154,0.198,,,0.171,0.224,0.114,,,0.096,0.132,158.9,14,8813,,,0.202,2010,,,,0.055449779,600.7429045,10834,,,,,,,,,,,,,,,,,,,,,,,,,,0.37,,,0.353,0.385,0.242570436,1257,5182,0.211591713,0.27354916,0.130294906,243,1865,0.095741715,0.164848098,0.001393312,14,10048,,,717.7142857,0.89962963,121.45,135,,,,,,,,2.806086598,,,,,,,,,2.953038989,2.993800433,,,,,,,,,3.108898796,0.037634908,,,,,-3984.680333,,,,,0.74386048,40861,54931,0.454618908,1.033102051,50564,,,43577.10638,57550.89362,,,,,,,39886,18473.74468,61298.25532,,,,46716,36024.76596,57407.23404,,,,,,0.620425997,1136,1831,,,15.7997649,,,,,0.269144055,,50564,,,4.098360656,2,488,,,,,,,,,,,,,,,,,,,,,,,,,,19.56456739,12,52138,8.446591548,38.54999723,23.01584257,,,,,,,,,,,,,22.86530284,9.871614835,45.05376191,,,,23.01584257,12,52138,11.89262171,40.20404513,,,,,,,,,,,,,24.6736351,12.31698974,44.14794875,,,,39.83024077,29,72809,26.67493735,57.20286975,,,,,,,,,,,,,43.32477535,28.55129996,63.0352735,,,,,,800,,,-888,-888,0.644862008,5491,8515,,,0.294,,,,,2.429121269,,,,,0.848356073,3793,4471,0.810581939,0.886130206,0.121426884,514,4233,0.07508048,0.167773288,0.853947663,3818,4471,0.815846478,0.892048848,10048,,,,,0.176154459,1770,10048,,,0.306926752,3084,10048,,,0.063097134,634,10048,,,0.011246019,113,10048,,,0.005573248,56,10048,,,0.000696656,7,10048,,,0.052448248,527,10048,,,0.846735669,8508,10048,,,0.000210062,2,9521,0,0.0104006,0.497511943,4999,10048,,,1,9894,9894,, -48,405,48405,TX,San Augustine County,2024,1,13888.9678,246,21313,10792.70928,16985.22633,0,,,,2,,,,2,16057.22641,10062.9783,24310.83375,1,,,,2,14692.71065,10591.10726,18794.31404,,,,,2,,0.245,,,0.214,0.277,4.691790085,,,3.747549376,5.708949883,6.106711261,,,4.946989283,7.371128607,0.075862069,44,580,0.054313283,0.097410855,0,,,,,,,0.108695652,0.056763583,0.160627721,,,,0.068306011,0.042460707,0.094151315,,,,,,,0.242,,,0.202,0.282,0.405,,,0.323,0.495,5.1,0.120088597,0.211,,,0.328,,,0.277,0.381,0.418034857,3310,7918,,,0.144201455,,,0.11419604,0.177731024,0.392857143,11,28,0.295131698,0.486362997,467.1,37,7922,,,45.38904899,63,1388,34.8781915,58.07231073,,,,,,,41.06280193,23.92059534,65.74552371,,,,54.05405405,38.61700871,73.60627968,,,,,,,0.252519986,1453,5754,0.223924241,0.281115731,0.000252462,2,7922,,,3961,0.0005091,4,7857,,,1964.25,0.00025455,2,7857,,,3928.5,2492,,,,,,,1815,,2559,0.33,,,,,,,0.29,,0.33,0.41,,,,,,,0.36,0.46,0.42,0.823157175,4813,5847,0.785030374,0.861283975,0.306620209,440,1435,0.207962731,0.405277687,0.058177117,180,3094,,,0.321,494,,0.198276596,0.443723404,,,,,,,0.314009662,0.146435434,0.48158389,0.622807018,0.01299295,1,0.328036322,0.201062596,0.455010049,5.574585635,88792,15928,3.329228428,7.819942843,0.347909968,541,1555,0.233496746,0.46232319,7.573844989,6,7922,,,112.4914409,46,40892,82.35787296,150.0478179,,,,,,,,,,,,,131.2010212,92.37762692,180.8433252,,,,8.9,,,,,1,,,,,0.109164421,405,3710,0.065965805,0.152363036,0.08489011,0.040455614,0.129324606,0.018867925,0,0.040412509,0.014824798,0.001179496,0.0284701,0.793810445,2052,2585,0.734405593,0.853215297,,,,,,,,,,,,,0.825830654,0.720971314,0.930689993,0.375,,2585,0.272767713,0.477232287,71.80057981,,,69.7383582,73.86280142,,,,,,,69.16104224,64.86359857,73.45848592,,,,71.45007321,68.81013848,74.09000794,,,,706.3544427,246,21313,605.6377739,807.0711114,,,,,,,948.2240058,720.0262424,1225.799413,,,,696.5560369,572.4723097,820.6397642,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.15,,,0.131,0.17,0.206,,,0.18,0.232,0.135,,,0.116,0.155,205.5,14,6812,,,0.211,1680,,,,0.120088597,1064.585416,8865,,,,,,,,,,,,,,,,,,,,,,,,,,0.383,,,0.369,0.396,0.294381492,1247,4236,0.257445322,0.331317662,0.137931035,220,1595,0.100994864,0.174867205,0.000636375,5,7857,,,1571.4,,,,,,,,,,,2.191600736,,,,,,,1.654773539,,2.653677075,2.537395501,,,,,,,2.162414934,,2.954332055,0.238557387,,,,,-14532.6985,,,,,0.592788971,32981,55637,0.468786071,0.716791872,49591,,,43212.95745,55969.04255,,,,,,,24960,10327.31915,39592.68085,27227,12854.06383,41599.93617,52788,45058.80851,60517.19149,,,,,,0.794547225,816,1027,,,45.1154218,,,,,0.274424795,,49591,,,5.66572238,2,353,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,48.53948167,28,57685,32.25413306,70.15306569,,,,,,,,,,,,,47.88668498,28.83091253,74.78099043,,,,,,600,,,-888,0,0.627272727,4002,6380,,,0.308,,,,,5.83397456,,,,,0.725008194,2212,3051,0.703665324,0.746351064,0.133691756,373,2790,0.069482259,0.197901254,0.766633891,2339,3051,0.718631551,0.81463623,7857,,,,,0.19867634,1561,7857,,,0.267023037,2098,7857,,,0.209240168,1644,7857,,,0.009672903,76,7857,,,0.004709177,37,7857,,,0.000127275,1,7857,,,0.082983327,652,7857,,,0.683339697,5369,7857,,,0.026202018,200,7633,0.008610528,0.043793507,0.500827288,3935,7857,,,1,7918,7918,, -48,407,48407,TX,San Jacinto County,2024,1,13018.86608,708,78284,11435.02919,14602.70298,0,,,,2,,,,2,18559.35118,12123.58437,27193.74959,,7031.238984,4505.047489,10461.92626,1,13832.82295,11902.07325,15763.57266,,,,,2,,0.208,,,0.177,0.241,4.242441998,,,3.519810734,5.051183155,5.715919813,,,4.684061265,6.789824592,0.095845137,203,2118,0.083307966,0.108382308,0,,,,,,,0.139240506,0.085258225,0.193222788,0.080645161,0.055027354,0.106262968,0.09703504,0.081974559,0.112095522,,,,,,,0.205,,,0.163,0.247,0.381,,,0.297,0.466,6.9,0.032333332,0.171,,,0.289,,,0.235,0.344,0.681264141,18668,27402,,,0.16479943,,,0.130341555,0.203318289,0.279069767,12,43,0.199251669,0.361901334,154.2,43,27878,,,32.70690278,181,5534,27.9419763,37.47182926,,,,,,,22.22222222,11.09325327,39.76169397,29.64118565,20.97586712,40.68484315,36.10005685,29.82146725,42.37864646,,,,,,,0.232665856,4973,21374,0.208836069,0.256495643,7.17412E-05,2,27878,,,13939,3.52759E-05,1,28348,,,28348,0.000176379,5,28348,,,5669.6,3960,,,,,,,1681,,3878,0.34,,,,,,,0.37,,0.33,0.37,,,,,,,0.22,0.32,0.38,0.855602126,16739,19564,0.824126819,0.887077434,0.454660177,2522,5547,0.362317498,0.547002856,0.048472776,584,12048,,,0.27,1574,,0.174680851,0.365319149,,,,,,,0.261176471,0.222975463,0.299377479,0.182926829,0.064138662,0.301714997,0.269053431,0.141940101,0.396166761,5.085773797,122084,24005,3.588908533,6.582639061,0.204495147,1201,5873,0.108543646,0.300446649,2.869646316,8,27878,,,96.485279,138,143027,80.38706912,112.5834889,,,,,,,,,,,,,115.4581417,94.97008726,135.9461961,,,,9.3,,,,,1,,,,,0.168063085,1705,10145,0.119579468,0.216546703,0.106901352,0.065134339,0.148668366,0.043272548,0.023223377,0.063321719,0.023656974,0.006372187,0.040941761,0.807670071,8382,10378,0.762244323,0.85309582,,,,,,,,,,,,,0.759755684,0.673509503,0.846001865,0.594,,10378,0.497158958,0.690841042,74.04794887,,,72.80790163,75.28799611,,,,,,,72.07495561,66.82462196,77.32528926,84.68661999,77.59065531,91.78258467,72.97627241,71.57472289,74.37782194,,,,610.817836,708,78284,560.6978922,660.9377798,,,,,,,754.099848,574.0557437,972.7338615,313.2479618,215.6254834,439.9166027,651.1810377,591.1305106,711.2315648,,,,48.60358171,13,26747,25.87936027,83.11360496,,,,,,,,,,,,,58.86508123,28.22809452,108.2549802,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.133,,,0.113,0.152,0.19,,,0.165,0.216,0.117,,,0.099,0.135,180.5,43,23819,,,0.171,4690,,,,0.032333332,853.0826244,26384,,,18.59643413,16,86038,10.6294689,30.19944396,,,,,,,,,,,,,19.01321418,9.824405217,33.21225885,,,,0.379,,,0.363,0.393,0.268444331,4188,15601,0.239848586,0.297040075,0.139492754,847,6072,0.103748073,0.175237435,0.000105828,3,28348,,,9449.333333,0.925,219.225,237,,,,,,,,2.307478804,,,,,,,2.201066227,2.23814217,2.421897243,2.508822387,,,,,,,2.332769468,2.665888799,2.503274018,0.065263239,,,,,-7295.4515,,,,,0.759774003,40208,52921,0.556949244,0.962598762,57855,,,50395.08511,65314.91489,,,,,,,55726,39468.12766,71983.87234,45786,33734.08511,57837.91489,55977,46731.04255,65222.95745,,,,,,0.730878995,2561,3504,,,17.77202817,,,,,0.235225996,,57855,,,2.980625931,4,1342,,,7.570137322,15,198147,4.236948393,12.48579028,,,,,,,,,,,,,7.495179237,3.74156647,13.41094604,,,,21.59843069,30,143027,14.23350192,31.42458269,20.97506065,,,,,,,,,,,,,25.69043235,16.28553036,38.5482624,,,,18.87755459,27,143027,12.44042742,27.46585082,,,,,,,,,,,,,22.71307705,14.55269704,33.79525826,,,,25.7384669,51,198147,19.16397919,33.84133062,,,,,,,,,,,,,30.66209688,22.36514387,41.02829805,,,,6.153846154,,2600,,,7,9,0.590378328,12640,21410,,,0.414,,,,,10.80520295,,,,,0.83008744,8354,10064,0.80943756,0.85073732,0.117153512,1131,9654,0.080616428,0.153690595,0.811307631,8165,10064,0.761411983,0.861203279,28348,,,,,0.208797799,5919,28348,,,0.232432623,6589,28348,,,0.086813885,2461,28348,,,0.012875688,365,28348,,,0.005785241,164,28348,,,0.001411034,40,28348,,,0.168054184,4764,28348,,,0.714336108,20250,28348,,,0.032254388,849,26322,0.020717727,0.043791049,0.498342035,14127,28348,,,1,27402,27402,, -48,409,48409,TX,San Patricio County,2024,1,10750.86176,1277,190905,9918.450476,11583.27305,0,,,,2,,,,2,,,,2,10850.87688,9790.817531,11910.93623,,10976.94073,9517.940359,12435.94111,,,,,2,,0.222,,,0.192,0.255,4.233292441,,,3.391590185,5.15217082,5.527340906,,,4.508940291,6.611454172,0.092907249,596,6415,0.08580316,0.100011338,0,,,,,,,,,,0.100868726,0.091699429,0.110038022,0.080552908,0.06890743,0.092198385,,,,,,,0.166,,,0.135,0.197,0.42,,,0.348,0.497,6.2,0.110325977,0.166,,,0.319,,,0.271,0.371,0.661450076,45478,68755,,,0.188336507,,,0.152683159,0.22994449,0.260273973,19,73,0.199915621,0.323259309,520.8,363,69699,,,32.70327033,545,16665,29.95759612,35.44894454,,,,,,,,,,37.20684183,33.65688841,40.75679524,24.27497315,19.79912228,28.75082402,,,,,,,0.206652778,12102,58562,0.18520597,0.228099587,0.000229559,16,69699,,,4356.1875,0.000400263,28,69954,,,2498.357143,0.000471739,33,69954,,,2119.818182,2269,,,,,,,,2832,1996,0.39,,,,,,0.56,,0.38,0.39,0.39,,,,,,0.39,0.34,0.32,0.41,0.82296147,36737,44640,0.804764105,0.841158834,0.510244222,9339,18303,0.461667055,0.558821389,0.060142677,1762,29297,,,0.237,4255,,0.169085106,0.304914894,,,,0.770992366,0.640397937,0.901586795,0.487603306,0.035612083,0.939594528,0.289718048,0.246586215,0.332849882,0.072981367,0.03371388,0.112248853,5.146737869,133002,25842,4.400363874,5.893111863,0.339698882,6137,18066,0.278244396,0.401153368,7.604126315,53,69699,,,64.27610884,217,337606,55.72394954,72.82826814,,,,,,,,,,50.20309434,40.80259781,61.120466,89.59376302,73.14696256,106.0405635,,,,9.6,,,,,1,,,,,0.173996584,4075,23420,0.152318585,0.195674583,0.102872063,0.085124087,0.120620038,0.061699402,0.044151504,0.0792473,0.023911187,0.011547338,0.036275036,0.866234635,24595,28393,0.851478237,0.880991034,,,,,,,,,,0.8407322,0.800278826,0.881185573,0.852575872,0.817956153,0.887195591,0.321,,28393,0.290274356,0.351725644,73.99486613,,,73.32911844,74.66061383,,,,,,,,,,73.87685097,72.96024845,74.7934535,73.74877082,72.66939121,74.82815044,,,,570.7791611,1277,190905,538.6921187,602.8662035,,,,,,,,,,609.8858824,563.820828,655.9509367,555.4123898,506.3349466,604.4898329,,,,47.1367603,37,78495,33.1886293,64.97181495,,,,,,,,,,37.76862938,23.07006003,58.33058485,62.53908693,34.19070078,104.9299612,,,,4.706954145,31,6586,3.198146975,6.681145688,,,,,,,,,,4.69924812,2.870422835,7.25760759,,,,,,,,,,0.132,,,0.115,0.15,0.173,,,0.151,0.198,0.133,,,0.115,0.153,125,71,56794,,,0.166,11380,,,,0.110325977,7149.564639,64804,,,10.31951174,21,203498,6.387940414,15.77446989,,,,,,,,,,,,,15.73687938,8.131475213,27.48916129,,,,0.353,,,0.34,0.363,0.249685798,10132,40579,0.222281543,0.277090053,0.113901962,2154,18911,0.086497707,0.141306217,0.000729051,51,69954,,,1371.647059,0.951239035,867.53,912,,,0.164003144,626,3817,0.103017494,0.224988793,2.902779802,,,,,,,,2.792517308,3.169804936,3.076966523,,,,,,,,2.960318341,3.305866287,0.069264937,,,,,-2345.683843,,,,,0.656764358,39463,60087,0.586813523,0.726715194,62919,,,56158.48936,69679.51064,,,,,,,43590,1990.340426,85189.65957,51931,47995.51064,55866.48936,84037,77007.21277,91066.78723,,,,,,0.699904825,9560,13659,,,48.11056633,,,,,0.269441663,,62919,,,4.212299916,20,4748,,,6.347621123,30,472618,4.282713316,9.061623847,,,,,,,,,,5.110402955,2.79390485,8.5743878,7.767335027,4.246474338,13.03226835,,,,14.27359571,48,337606,10.45006601,19.03897642,14.21775679,,,,,,,,,,11.16916483,6.913889066,17.07325489,19.76309484,12.66258777,29.40591856,,,,15.99497639,54,337606,12.01591855,20.86997458,,,,,,,,,,10.64914122,6.59198626,16.27834357,25.93503666,17.85248589,36.42243402,,,,15.65746544,74,472618,12.29447804,19.65651404,,,,,,,,,,13.14103617,9.203820179,18.19273319,18.86352792,13.06354145,26.35988954,,,,9.857142857,,7000,,,9,60,0.54970276,25891,47100,,,0.504,,,,,52.71281191,,,,,0.6784699,16229,23920,0.659315183,0.697624617,0.119358251,2708,22688,0.098321626,0.140394877,0.797658863,19080,23920,0.779498929,0.815818797,69954,,,,,0.258784344,18103,69954,,,0.15058467,10534,69954,,,0.016553735,1158,69954,,,0.010992938,769,69954,,,0.012250908,857,69954,,,0.001686823,118,69954,,,0.586871373,41054,69954,,,0.371987306,26022,69954,,,0.025332006,1629,64306,0.01765107,0.033012943,0.492495068,34452,69954,,,0.278321577,19136,68755,, -48,411,48411,TX,San Saba County,2024,1,8993.810114,113,15979,5886.904609,12100.71562,0,,,,2,,,,2,,,,2,6443.214294,3522.565212,10810.61876,1,11767.52794,6974.182845,18597.76743,1,,,,2,,0.216,,,0.186,0.25,4.260650829,,,3.386982495,5.17324296,5.492359195,,,4.383417444,6.663274092,0.064935065,25,385,0.040320836,0.089549294,0,,,,,,,,,,0.058510638,0.024959885,0.092061391,0.072916667,0.036139502,0.109693832,,,,,,,0.197,,,0.159,0.238,0.381,,,0.299,0.469,6.5,0.137283808,0.137,,,0.295,,,0.245,0.351,0.506631763,2903,5730,,,0.175898938,,,0.140767472,0.215588618,0,0,3,0,0.420755624,291.7,17,5827,,,34.06998158,37,1086,23.9884112,46.96098171,,,,,,,,,,59.12596401,37.4807893,88.71797659,23.56902357,12.88540451,39.5448167,,,,,,,0.275660569,1085,3936,0.244681846,0.306639293,0.00034323,2,5827,,,2913.5,0.000171703,1,5824,,,5824,0.000343407,2,5824,,,2912,2147,,,,,,,,2992,1915,0.26,,,,,,,,0.28,0.26,0.24,,,,,,,,0.16,0.24,0.858114674,3532,4116,0.802624978,0.913604371,0.441196013,664,1505,0.311273142,0.571118884,0.035315154,79,2237,,,0.279,303,,0.180106383,0.377893617,,,,,,,,,,0.386694387,0.25956289,0.513825884,0.121908127,0.023883432,0.219932822,3.752689398,98722,26307,2.916420447,4.588958349,0.260829493,283,1085,0.129336838,0.392322149,13.72919169,8,5827,,,60.13229104,18,29934,35.63820666,95.03494444,,,,,,,,,,,,,89.7334389,52.27303494,143.6719283,,,,7.8,,,,,0,,,,,0.117096019,250,2135,0.062030919,0.172161119,0.096181047,0.036470519,0.155891574,0.034660422,0,0.076295498,0.014051522,0,0.029306903,0.747404844,1728,2312,0.658335503,0.836474186,,,,,,,,,,0.655929722,0.482047987,0.829811456,0.804530201,0.720034626,0.889025776,0.313,,2312,0.227760615,0.398239385,76.35084133,,,73.87175826,78.82992441,,,,,,,,,,76.09927099,72.40104591,79.79749607,74.83322328,70.96946793,78.69697862,,,,477.0075624,113,15979,380.0086259,574.0064989,,,,,,,,,,430.941864,266.759806,658.7404162,534.2714059,408.6752916,686.293972,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.133,,,0.114,0.153,0.179,,,0.155,0.205,0.117,,,0.1,0.135,199.7,10,5008,,,0.137,790,,,,0.137283808,841.6870252,6131,,,,,,,,,,,,,,,,,,,,,,,,,,0.357,,,0.343,0.37,0.322027847,902,2801,0.283900188,0.360155507,0.163197336,196,1201,0.11792074,0.208473931,0.00051511,3,5824,,,1941.333333,,,,,,,,,,,2.497162794,,,,,,,,2.318087568,2.807258187,3.251325564,,,,,,,,3.136570967,3.473280165,0.129825143,,,,,-2316.507033,,,,,0.814981709,33640,41277,0.670974063,0.958989355,51350,,,43792.38298,58907.61702,,,,,,,,,,51935,33326.31915,70543.68085,57679,42977.21277,72380.78723,,,,,,0.611273081,629,1029,,,,,,,,0.286095424,,51350,,,6.944444444,2,288,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,26.32901697,11,41779,13.14335041,47.10988418,,,,,,,,,,,,,,,,,,,,,500,,,-888,-888,0.581452514,2602,4475,,,0.426,,,,,24.83363571,,,,,0.760675273,1532,2014,0.710639035,0.810711511,0.085561497,160,1870,0.027820678,0.143302317,0.863455809,1739,2014,0.811028541,0.915883077,5824,,,,,0.190418956,1109,5824,,,0.226820055,1321,5824,,,0.039663462,231,5824,,,0.015453297,90,5824,,,0.007554945,44,5824,,,0,0,5824,,,0.312328297,1819,5824,,,0.620020604,3611,5824,,,0.02836495,157,5535,0.000489874,0.056240026,0.446943681,2603,5824,,,1,5730,5730,, -48,413,48413,TX,Schleicher County,2024,1,6477.809408,37,7376,3702.627781,10519.55664,1,,,,2,,,,2,,,,2,8089.628913,4038.313607,14474.58071,1,,,,2,,,,2,,0.198,,,0.169,0.23,3.842903454,,,3.136071398,4.606094281,5.130975261,,,4.076917669,6.275231683,0.092391304,17,184,0.050549343,0.134233266,1,,,,,,,,,,0.081300813,0.03300187,0.129599756,,,,,,,,,,0.149,,,0.119,0.182,0.376,,,0.295,0.461,8.3,0.02966576,0.107,,,0.28,,,0.232,0.333,0.810281518,1986,2451,,,0.175554526,,,0.139782889,0.214845438,0,0,3,0,0.420755624,329.4,8,2429,,,18.44532279,14,759,10.08422961,30.94811742,,,,,,,,,,23.40425532,11.68331993,41.87667769,,,,,,,,,,0.296526698,572,1929,0.264356485,0.328696911,,0,2429,,,,0,0,2357,,,-2357,0.000848536,2,2357,,,1178.5,2459,,,,,,,,,2405,0.35,,,,,,,,0.24,0.42,0.29,,,,,,,,0.27,0.3,0.819939577,1357,1655,0.767247147,0.872632007,0.532094595,315,592,0.350344538,0.713844651,0.035369775,44,1244,,,0.227,122,,0.143595745,0.310404255,,,,,,,,,,0.263297872,0.112475805,0.41411994,,,,5.75936231,114882,19947,2.036699758,9.482024862,0.162207358,97,598,0.035121354,0.289293362,16.46768217,4,2429,,,79.25643058,11,13879,39.56452459,141.8116472,,,,,,,,,,,,,,,,,,,7.2,,,,,0,,,,,0.086956522,90,1035,0.0299394,0.143973643,0.052173913,0,0.115902148,0.024154589,0,0.065480571,0.024154589,0,0.056050963,0.708884688,750,1058,0.671373943,0.746395433,,,,,,,,,,,,,,,,0.342,,1058,0.180159074,0.503840926,77.66913532,,,74.95482004,80.3834506,,,,,,,,,,,,,,,,,,,359.6162175,37,7376,245.9772265,507.6707995,,,,,,,,,,436.4403721,262.7656142,681.5557038,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.119,,,0.103,0.138,0.164,,,0.142,0.188,0.117,,,0.1,0.135,,,,,,0.107,270,,,,0.02966576,102.6731939,3461,,,,,,,,,,,,,,,,,,,,,,,,,,0.351,,,0.338,0.362,0.318382353,433,1360,0.280254693,0.356510013,0.246280992,149,605,0.186706524,0.30585546,0.000424268,1,2357,,,2357,,,,,,,,,,,2.751088945,,,,,,,,2.505663173,,3.150197489,,,,,,,,2.857487598,,0.017089665,,,,,-624.6895,,,,,0.513099061,33393,65081,0.287375839,0.738822283,54168,,,45938.38298,62397.61702,,,,,,,,,,41055,23615.17021,58494.82979,66417,41420.74468,91413.25532,,,,,,0.645290581,322,499,,,,,,,,0.252787624,,54168,,,5.076142132,1,197,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,300,,,0,0,0.585353535,1159,1980,,,0.33,,,,,19.56745368,,,,,0.842046719,757,899,0.797974733,0.886118704,0.07985258,65,814,0,0.173677188,0.667408231,600,899,0.542991288,0.791825175,2357,,,,,0.231226135,545,2357,,,0.22316504,526,2357,,,0.014849385,35,2357,,,0.014000849,33,2357,,,0.005939754,14,2357,,,0,0,2357,,,0.551972847,1301,2357,,,0.415358507,979,2357,,,0.047240618,107,2265,0.005557764,0.088923472,0.490453967,1156,2357,,,1,2451,2451,, -48,415,48415,TX,Scurry County,2024,1,10860.99904,292,46818,9162.494509,12559.50357,0,,,,2,,,,2,,,,2,12609.15101,9801.598905,15416.70311,,9831.625498,7589.224263,12074.02673,,,,,2,,0.219,,,0.19,0.25,4.163217419,,,3.328757962,5.060350608,5.260171654,,,4.187104582,6.340980581,0.084265965,128,1519,0.070296236,0.098235693,0,,,,,,,,,,0.08478803,0.065508475,0.104067585,0.082695253,0.061570259,0.103820247,,,,,,,0.183,,,0.15,0.215,0.375,,,0.296,0.454,7.7,0.025277636,0.134,,,0.297,,,0.252,0.347,0.751240255,12720,16932,,,0.183584874,,,0.146939986,0.223845206,0.148148148,4,27,0.061251894,0.260709132,428,72,16824,,,43.11251314,164,3804,36.51413065,49.71089564,,,,,,,,,,53.19148936,43.25113471,63.13184402,33.31112592,24.72415972,43.91656673,,,,,,,0.223249256,2850,12766,0.198227979,0.248270532,0.000594389,10,16824,,,1682.4,0.000539374,9,16686,,,1854,0.000299652,5,16686,,,3337.2,2992,,,,,,,,,3099,0.23,,,,,,,,0.19,0.24,0.27,,,,,,,,0.22,0.29,0.844333636,9313,11030,0.809209554,0.879457717,0.551746032,2607,4725,0.453366551,0.650125512,0.041381506,260,6283,,,0.21,873,,0.128978723,0.291021277,,,,,,,,,,0.201620162,0.086245502,0.316994822,0.091895341,0.018093946,0.165696736,4.520846216,138903,30725,3.596361787,5.445330646,0.096667455,409,4231,0.045762928,0.147571981,10.69900143,18,16824,,,85.60727662,72,84105,66.9824216,107.808197,,,,,,,,,,72.02535292,46.6110108,106.3236292,93.92467699,67.40196983,127.41943,,,,7.2,,,,,0,,,,,0.117743254,720,6115,0.075009821,0.160476687,0.053278689,0.023411587,0.08314579,0.052166803,0.022280409,0.082053197,0.013082584,0.000626887,0.025538281,0.813408959,5593,6876,0.755086256,0.871731662,,,,,,,,,,0.82733813,0.775042008,0.879634252,0.848411935,0.790471456,0.906352413,0.154,,6876,0.101439246,0.206560754,74.11756444,,,72.80902692,75.42610197,,,,,,,,,,72.8427008,70.59020947,75.09519213,74.63600793,72.95621258,76.31580327,,,,552.2700801,292,46818,487.5422322,616.997928,,,,,,,,,,610.2252678,492.3541194,728.0964162,535.2424801,451.3926822,619.0922779,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.131,,,0.114,0.149,0.174,,,0.152,0.196,0.125,,,0.108,0.142,108.1,15,13878,,,0.134,2280,,,,0.025277636,427.7228701,16921,,,,,,,,,,,,,,,,,,,,,,,,,,0.353,,,0.341,0.366,0.26059273,2251,8638,0.228422517,0.292762943,0.147609148,639,4329,0.110672977,0.184545318,0.000599305,10,16686,,,1668.6,0.910674157,162.1,178,,,,,,,,2.60693293,,,,,,,,2.513621291,2.718444846,2.776881355,,,,,,,,2.730274782,2.853064609,0.060699629,,,,,307.2041133,,,,,0.731174875,40695,55657,0.578552285,0.883797464,60387,,,51817.80851,68956.19149,,,,,,,34955,7556.702128,62353.29787,51716,40355.14894,63076.85106,69643,54492.02128,84793.97872,,,,,,0.608990944,1883,3092,,,50.39973351,,,,,0.229287761,,60387,,,3.693444137,4,1083,,,,,,,,,,,,,,,,,,,,,,,,,,17.25940401,14,84105,9.435876779,28.95834721,16.64585934,,,,,,,,,,,,,,,,,,,17.8348493,15,84105,9.982029764,29.41587167,,,,,,,,,,,,,22.9084578,10.98549596,42.12946954,,,,23.51893694,28,119053,15.6281628,33.99141218,,,,,,,,,,34.89111918,20.3253627,55.86406177,17.63951251,8.805581089,31.56196041,,,,,,1600,,,-888,35,0.477818478,5870,12285,,,0.545,,,,,27.43157453,,,,,0.8085368,4603,5693,0.751813595,0.865260005,0.058985667,321,5442,0.024018757,0.093952577,0.843667662,4803,5693,0.8077005,0.879634824,16686,,,,,0.252966559,4221,16686,,,0.15210356,2538,16686,,,0.043809181,731,16686,,,0.014083663,235,16686,,,0.009768668,163,16686,,,0.000958888,16,16686,,,0.428562867,7151,16686,,,0.500359583,8349,16686,,,0.028761062,455,15820,0.015200056,0.042322068,0.464041712,7743,16686,,,0.318036853,5385,16932,, -48,417,48417,TX,Shackelford County,2024,1,5065.490381,39,8873,2697.160289,8662.142821,1,,,,2,,,,2,,,,2,,,,2,5867.038008,3031.584153,10248.53468,1,,,,2,,0.151,,,0.128,0.177,3.536210221,,,2.999445546,4.120502263,5.229076645,,,4.556261617,5.914392194,0.081545064,19,233,0.046404731,0.116685398,1,,,,,,,,,,,,,0.085858586,0.046835462,0.12488171,,,,,,,0.152,,,0.122,0.184,0.341,,,0.298,0.386,7.6,0.053826419,0.125,,,0.217,,,0.184,0.251,0.782930757,2431,3105,,,0.183500582,,,0.162666471,0.205509727,0,0,1,0,0.662081041,342.5,11,3212,,,24.12545235,20,829,14.73645306,37.25980447,,,,,,,,,,,,,26.5625,15.47363511,42.52913565,,,,,,,0.242964725,613,2523,0.21436898,0.271560469,0.000311333,1,3212,,,3212,0,0,3186,,,-3186,0.000627746,2,3186,,,1593,3666,,,,,,,,,2655,0.4,,,,,,,,,0.39,0.42,,,,,,,,,0.42,0.935288641,2009,2148,0.90724905,0.963328232,0.690076336,452,655,0.502603519,0.877549153,0.027322404,50,1830,,,0.195,139,,0.122319149,0.267680851,,,,,,,,,,0.387096774,0,0.963106551,0.074750831,0,0.15615946,5.192364499,116013,22343,3.492735294,6.891993704,0.074452555,51,685,0.001545858,0.147359251,31.13325031,10,3212,,,79.47181807,13,16358,42.31539608,135.8992292,,,,,,,,,,,,,93.66669068,49.87356792,160.1728937,,,,7.1,,,,,1,,,,,0.084249084,115,1365,0.032190881,0.136307288,0.055720654,0,0.112278929,0.028571429,0,0.059508557,0.002930403,0,0.015425714,0.792987188,1176,1483,0.700189249,0.885785127,,,,,,,,,,,,,0.856794142,0.667612589,1,0.234,,1483,0.137983403,0.330016597,79.01858018,,,76.56809536,81.469065,,,,,,,,,,,,,78.04341728,75.34731025,80.73952432,,,,288.965045,39,8873,198.9102408,405.8143592,,,,,,,,,,,,,320.4020537,216.1739202,457.3938542,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.107,,,0.093,0.122,0.169,,,0.15,0.188,0.09,,,0.081,0.101,,,,,,0.125,390,,,,0.053826419,181.8256445,3378,,,,,,,,,,,,,,,,,,,,,,,,,,0.332,,,0.314,0.349,0.268973214,482,1792,0.233228533,0.304717895,0.181818182,140,770,0.134158607,0.229477756,0.00094162,3,3186,,,1062,,,,,,,,,,,2.817380137,,,,,,,,,2.754742917,3.208772182,,,,,,,,,3.22060326,0.029330175,,,,,-1803.0375,,,,,0.793094137,44054,55547,0.606691561,0.979496713,64690,,,55088.97872,74291.02128,,,,,,,,,,59886,22392.21277,97379.78723,62120,49816.68085,74423.31915,,,,,,0.485576923,303,624,,,,,,,,0.214036173,,64690,,,5.917159763,1,169,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,300,,,-888,-888,0.661788618,1628,2460,,,0.44,,,,,0.186424271,,,,,0.810422961,1073,1324,0.768218841,0.85262708,0.053471668,67,1253,0,0.122355011,0.862537764,1142,1324,0.809117425,0.915958104,3186,,,,,0.231952291,739,3186,,,0.206528563,658,3186,,,0.016635279,53,3186,,,0.011299435,36,3186,,,0.006277464,20,3186,,,0.00094162,3,3186,,,0.12868801,410,3186,,,0.824231011,2626,3186,,,0,0,2991,0,0.023901492,0.494036409,1574,3186,,,1,3105,3105,, -48,419,48419,TX,Shelby County,2024,1,12859.99017,539,68411,11203.61563,14516.3647,0,,,,2,,,,2,15776.27694,11537.36418,20015.1897,,7069.125046,4617.787179,10357.90608,,14203.50979,11789.17831,16617.84126,,,,,2,,0.236,,,0.204,0.269,4.528524145,,,3.593287893,5.507786408,5.877888692,,,4.709106059,7.111534266,0.084554207,202,2389,0.073397605,0.095710808,0,,,,,,,0.162303665,0.125326649,0.199280681,0.051928783,0.0351774,0.068680167,0.08015873,0.065165243,0.095152218,,,,,,,0.219,,,0.182,0.26,0.407,,,0.322,0.494,6.6,0.07484447,0.164,,,0.317,,,0.263,0.372,0.388352344,9329,24022,,,0.161975355,,,0.128990579,0.201271317,0.23255814,10,43,0.154096868,0.317509118,518,124,23939,,,36.94751381,214,5792,31.99718092,41.89784671,,,,,,,44.7761194,33.01437577,59.36663823,43.34170854,33.72243628,54.85170609,31.44016227,25.37626867,38.51632286,,,,,,,0.267281343,5189,19414,0.241068577,0.293494109,0.000167091,4,23939,,,5984.75,0.00029157,7,24008,,,3429.714286,0.00074975,18,24008,,,1333.777778,3866,,,,,,,3533,2225,3701,0.28,,,,,,,0.26,,0.3,0.38,,,,,,,0.32,0.08,0.4,0.816872169,12985,15896,0.792424892,0.841319446,0.470952468,2586,5491,0.403603151,0.538301785,0.042161574,465,11029,,,0.274,1673,,0.191787234,0.356212766,0.282352941,0,0.644994535,0.772413793,0.084463989,1,0.596417281,0.456528251,0.736306312,0.478675645,0.380741145,0.576610146,0.172358762,0.111941926,0.232775597,5.555826476,109372,19686,4.011147212,7.10050574,0.273726115,1719,6280,0.227786051,0.319666178,10.86093822,26,23939,,,100.7524449,126,125059,83.15999214,118.3448976,,,,,,,83.41056534,49.43438731,131.8246537,50.87548226,26.28810408,88.86922902,124.593432,100.8035267,152.3090096,,,,9.3,,,,,1,,,,,0.162361624,1540,9485,0.125811156,0.198912091,0.094601817,0.063401297,0.125802338,0.069478123,0.047663398,0.091292849,0.015287296,0.004281181,0.026293411,0.832188713,8361,10047,0.795304785,0.869072641,,,,,,,0.764673913,0.647650795,0.881697032,0.778280543,0.651529967,0.905031119,0.829691169,0.781028759,0.878353578,0.317,,10047,0.255203154,0.378796846,72.20775513,,,71.02784359,73.38766668,,,,,,,68.91290982,66.23113771,71.59468194,,,,71.25188041,69.62740878,72.87635203,,,,614.7714942,539,68411,560.454804,669.0881844,,,,,,,760.6934443,614.8076119,906.5792766,332.5904909,221.0039659,480.6858614,643.6304484,573.5728259,713.6880709,,,,92.28366579,26,28174,60.28275437,135.2169521,,,,,,,,,,,,,135.4627121,81.55740171,211.541805,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.144,,,0.124,0.165,0.197,,,0.17,0.224,0.132,,,0.113,0.153,235.3,46,19551,,,0.164,3980,,,,0.07484447,1904.642063,25448,,,,,,,,,,,,,,,,,,,,,,,,,,0.378,,,0.365,0.39,0.318232872,4250,13355,0.28487117,0.351594574,0.158225857,1006,6358,0.118906708,0.197545006,0.00104132,25,24008,,,960.32,0.961760563,341.425,355,,,,,,,,2.795047087,,,,,,,2.285965556,2.631131688,3.068737101,3.048137733,,,,,,,2.746287773,3.113939505,3.122672772,0.109301277,,,,,-12931.0672,,,,,0.687461586,35792,52064,0.587408604,0.787514567,51551,,,45949.80851,57152.19149,36250,36123.70213,36376.29787,,,,33750,26883.44681,40616.55319,36839,25605.6383,48072.3617,58905,47591.80851,70218.19149,,,,,,0.693498452,3584,5168,,,24.14180952,,,,,0.263990999,,51551,,,2.910360885,5,1718,,,10.22494888,18,176040,6.059952727,16.15982746,,,,,,,,,,,,,9.281087001,4.450641969,17.06824944,,,,15.48128754,19,125059,9.175192147,24.46710869,15.19282899,,,,,,,,,,,,,21.06367665,11.51570803,35.34127027,,,,17.59169672,22,125059,11.02462268,26.63404024,,,,,,,,,,,,,20.98415696,11.99425881,34.07695625,,,,36.92342649,65,176040,28.49672105,47.06193809,,,,,,,39.53089999,20.42619287,69.05252684,,,,42.6930002,31.25664193,56.94647942,,,,,,2600,,,-888,18,0.589710611,10087,17105,,,0.434,,,,,15.60254747,,,,,0.751668892,6756,8988,0.711654794,0.79168299,0.100305021,855,8524,0.066393699,0.134216343,0.775144637,6967,8988,0.739582371,0.810706904,24008,,,,,0.257580806,6184,24008,,,0.181814395,4365,24008,,,0.168360547,4042,24008,,,0.010788071,259,24008,,,0.016286238,391,24008,,,0.0014995,36,24008,,,0.195893036,4703,24008,,,0.602132623,14456,24008,,,0.035739687,804,22496,,,0.502457514,12063,24008,,,0.786737158,18899,24022,, -48,421,48421,TX,Sherman County,2024,1,4410.529294,33,8183,2411.277407,7400.118718,1,,,,2,,,,2,,,,2,,,,2,4618.619347,1993.992014,9100.521338,1,,,,2,,0.208,,,0.177,0.242,4.060578479,,,3.219862931,5.026317722,5.192701998,,,4.162872154,6.322750552,0.046052632,14,304,0.022490818,0.069614445,1,,,,,,,,,,,,,,,,,,,,,,0.168,,,0.135,0.203,0.369,,,0.285,0.455,7.3,0.095371474,0.123,,,0.281,,,0.23,0.337,0.717109993,1995,2782,,,0.18368686,,,0.145244927,0.224723787,0.055555556,1,18,0.002373261,0.195855257,143,4,2798,,,28.73563218,20,696,17.55247067,44.37985331,,,,,,,,,,38.46153846,21.98409244,62.45912884,,,,,,,,,,0.327475354,764,2333,0.292922162,0.362028545,,0,2798,,,,0,0,2799,,,-2799,,0,2799,,,,693,,,,,,,,,845,0.32,,,,,,,,0.27,0.32,0.31,,,,,,,,0.17,0.31,0.72070931,1138,1579,0.649468479,0.791950141,0.439163498,231,526,0.304862494,0.573464503,0.02832244,39,1377,,,0.153,115,,0.094617021,0.211382979,,,,,,,,,,0.269592477,0.089069119,0.450115834,,,,3.607762654,119536,33133,2.368591231,4.846934076,0.140569395,79,562,0,0.296007676,17.86990708,5,2798,,,66.6977923,10,14993,31.98418393,122.6596148,,,,,,,,,,,,,,,,,,,5.6,,,,,0,,,,,0.112149533,120,1070,0.05933841,0.164960655,0.065666041,0,0.133611028,0.044859813,0.006516452,0.083203174,0.013084112,0,0.032211015,0.684587814,764,1116,0.585334847,0.78384078,,,,,,,,,,,,,0.794827586,0.744027593,0.84562758,0.267,,1116,0.122058857,0.411941143,79.334731,,,76.58972468,82.07973733,,,,,,,,,,,,,,,,,,,317.2757392,33,8183,217.0163707,447.8986773,,,,,,,,,,,,,328.9957324,206.1798739,498.1034926,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.126,,,0.108,0.145,0.17,,,0.147,0.196,0.114,,,0.097,0.133,,,,,,0.123,290,,,,0.095371474,289.3570517,3034,,,,,,,,,,,,,,,,,,,,,,,,,,0.341,,,0.327,0.354,0.336495889,532,1581,0.298368229,0.374623548,0.307106599,242,788,0.239191705,0.375021493,0.000357271,1,2799,,,2799,,,,,,,,,,,3.012935842,,,,,,,,2.848177356,3.278705636,3.095217161,,,,,,,,2.905822362,3.277702603,0.018992019,,,,,-11859.21,,,,,0.705747368,33523,47500,0.264083939,1.147410798,73395,,,63872.61702,82917.38298,,,,,,,,,,50577,37774.44681,63379.55319,77333,47332.48936,107333.5106,,,,,,0.582781457,440,755,,,,,,,,0.206880578,,73395,,,7.936507937,1,126,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,400,,,0,-888,0.499748111,992,1985,,,0.464,,,,,28.68690617,,,,,0.764632628,614,803,0.698650852,0.830614403,0.125854993,92,731,0.009670706,0.24203928,0.855541719,687,803,0.784517892,0.926565545,2799,,,,,0.272954627,764,2799,,,0.158628082,444,2799,,,0.012147195,34,2799,,,0.017506252,49,2799,,,0.009646302,27,2799,,,0,0,2799,,,0.460164344,1288,2799,,,0.508753126,1424,2799,,,0.04091509,93,2273,0,0.083285471,0.47266881,1323,2799,,,1,2782,2782,, -48,423,48423,TX,Smith County,2024,1,9090.878983,3618,654450,8647.996408,9533.761558,0,,,,2,3983.64699,2229.61698,6570.419896,1,12892.93615,11610.84444,14175.02787,,5744.307916,4985.637666,6502.978166,,9369.564121,8759.430187,9979.698054,,,,,2,,0.183,,,0.156,0.214,3.790773692,,,3.034604275,4.64263447,5.480910562,,,4.498702543,6.500658511,0.080034219,1684,21041,0.076367762,0.083700676,0,,,,0.061611374,0.038669882,0.084552867,0.145005675,0.133380159,0.156631191,0.072519698,0.066073908,0.078965487,0.063211246,0.058547117,0.067875375,,,,0.086834734,0.057623938,0.11604553,0.167,,,0.136,0.204,0.361,,,0.291,0.432,7.3,0.081379072,0.129,,,0.244,,,0.202,0.291,0.699094994,163224,233479,,,0.176033298,,,0.142368807,0.213039333,0.169811321,45,265,0.140239656,0.201448832,540.9,1283,237186,,,24.85871728,1412,56801,23.56208318,26.15535137,,,,,,,26.15659879,23.23064034,29.08255724,36.36936653,33.40177651,39.33695655,18.09904094,16.48824411,19.70983776,,,,31.38622494,21.98252608,43.45176503,0.211840922,40515,191252,0.193968582,0.229713262,0.000986568,234,237186,,,1013.615385,0.000644836,156,241922,,,1550.782051,0.001686494,408,241922,,,592.9460784,2923,,,,,,,5486,2091,2711,0.44,,,,,,0.31,0.42,0.33,0.45,0.46,,,,,0.52,0.54,0.39,0.35,0.47,0.875946241,135501,154691,0.864765521,0.887126961,0.642527246,38675,60192,0.608385426,0.676669066,0.037189087,4167,112049,,,0.165,9468,,0.111382979,0.218617021,0.317307692,0.003534226,0.631081158,0.110714286,0,0.233861873,0.25017096,0.189954923,0.310386996,0.221400081,0.174441984,0.268358178,0.108985217,0.082701716,0.135268718,4.491826824,131350,29242,4.192723327,4.790930322,0.251942502,14267,56628,0.221960479,0.281924525,12.39533531,294,237186,,,72.44191113,843,1163691,67.5516485,77.33217375,,,,,,,75.66894835,63.6393265,87.6985702,35.4606899,28.24424157,43.95886039,87.12042981,80.14352706,94.09733257,,,,9.4,,,,,1,,,,,0.146767768,11420,77810,0.133729982,0.159805554,0.116324792,0.104369574,0.12828001,0.029366405,0.023090473,0.035642338,0.008932014,0.006397794,0.011466234,0.810946198,87257,107599,0.79851843,0.823373967,,,,0.722439843,0.646160663,0.798719024,0.857725802,0.833175887,0.882275718,0.802486531,0.77410812,0.830864943,0.819929523,0.80445316,0.835405887,0.299,,107599,0.277786135,0.320213865,75.88311125,,,75.51837762,76.24784488,,,,91.05180632,82.86358091,99.24003173,72.13457353,71.18741399,73.08173306,83.03098422,80.92145122,85.14051721,75.64696276,75.17765112,76.11627439,,,,449.4703007,3618,654450,434.2872385,464.653363,,,,192.7760255,119.3313982,294.6786327,618.7334206,574.7512687,662.7155726,284.7893545,248.856591,320.7221179,456.9343138,437.6393218,476.2293059,,,,64.53126833,165,255690,54.68471358,74.37782309,,,,,,,102.6133659,75.39644165,136.4540234,53.26612275,38.22468933,72.26151012,63.22269362,49.81229172,79.1326287,,,,7.405649181,156,21065,6.243513309,8.567785054,,,,,,,13.40033501,9.880349197,17.76690011,5.49983824,3.808797862,7.685472678,6.853879105,5.362738286,8.63132642,,,,,,,0.116,,,0.1,0.134,0.172,,,0.15,0.197,0.113,,,0.096,0.13,262.8,516,196344,,,0.129,29760,,,,0.081379072,17066.33076,209714,,,9.35184621,66,705743,7.232717182,11.89784135,,,,,,,9.846557808,5.087860104,17.19995491,,,,11.31682041,8.31517397,15.04897206,,,,0.35,,,0.337,0.36,0.254081989,34219,134677,0.231443691,0.276720287,0.117383543,6970,59378,0.092362266,0.142404819,0.00174023,421,241922,,,574.6365796,0.944804005,2217.455,2347,,,0.095442561,1267,13275,0.061681952,0.12920317,2.918864062,,,,,,3.289396757,2.487650014,2.666782191,3.337414678,3.084793787,,,,,,3.793918189,2.559300952,2.975551179,3.428290066,0.154183184,,,,,-4568.595129,,,,,0.774442068,40913,52829,0.718161108,0.830723028,67978,,,64672.80851,71283.19149,56167,26606.14894,85727.85106,62383,50694.48936,74071.51064,53355,46936.44681,59773.55319,67163,61140.02128,73185.97872,76782,72978.76596,80585.23404,,,,,,0.685571219,25192,36746,,,41.47900711,,,,,0.206302039,,67978,,,3.930560105,60,15265,,,5.025072631,81,1611917,3.990633016,6.245706459,,,,,,,11.12886145,7.561521416,15.79653049,5.001797521,2.858959455,8.122605811,3.551025097,2.459188109,4.962201646,,,,19.84107535,233,1163691,17.22760429,22.45454642,20.02249738,,,,,,,10.05740632,6.22569303,15.37381392,7.473918657,4.183095537,12.32709223,26.56433068,22.5818468,30.54681457,,,,18.04602768,210,1163691,15.60525101,20.48680435,,,,,,,17.92159303,12.55206343,24.81103895,9.39921901,5.890440512,14.23053054,21.81646823,18.32510618,25.30783029,,,,18.48730425,298,1611917,16.38826032,20.58634818,,,,,,,19.38575865,14.56317854,25.2942099,11.56665677,8.1439938,15.94311273,21.09726676,18.18784568,24.00668783,,,,13.95555556,,22500,,,271,43,0.616425448,100089,162370,,,0.612,,,,,63.69244094,,,,,0.687240115,55863,81286,0.672293609,0.702186621,0.123580127,9661,78176,0.110677734,0.13648252,0.87129395,70824,81286,0.859230123,0.883357777,241922,,,,,0.240118716,58090,241922,,,0.173737816,42031,241922,,,0.171104736,41394,241922,,,0.00908144,2197,241922,,,0.017270029,4178,241922,,,0.001070593,259,241922,,,0.210204115,50853,241922,,,0.581720555,140731,241922,,,0.038462064,8446,219593,0.033624231,0.043299897,0.514558411,124483,241922,,,0.349247684,81542,233479,, -48,425,48425,TX,Somervell County,2024,1,6704.112103,135,25562,4783.400464,8624.823741,0,,,,2,,,,2,,,,2,,,,2,6712.324127,4422.907046,9001.741207,,,,,2,,0.159,,,0.135,0.187,3.598433181,,,2.867874398,4.45343664,5.243952583,,,4.201737352,6.34994757,0.07266436,42,578,0.051501646,0.093827073,0,,,,,,,,,,,,,0.074941452,0.04996747,0.099915434,,,,,,,0.157,,,0.125,0.195,0.351,,,0.273,0.434,8.2,0,0.127,,,0.232,,,0.19,0.278,0.791634981,7287,9205,,,0.187447892,,,0.150006039,0.229182866,0.363636364,8,22,0.250508545,0.473251594,105.6,10,9469,,,12.73306048,28,2199,8.461026219,18.40281762,,,,,,,,,,,,,14.35406699,8.885393701,21.94171616,,,,,,,0.180681669,1373,7599,0.158043371,0.203319967,0.000739254,7,9469,,,1352.714286,0.000409962,4,9757,,,2439.25,0.000409962,4,9757,,,2439.25,2519,,,,,,,,,2427,0.47,,,,,,,,0.31,0.48,0.46,,,,,,,,0.34,0.46,0.928658537,6092,6560,0.906912594,0.950404479,0.640163562,1409,2201,0.507691768,0.772635356,0.038049421,174,4573,,,0.134,269,,0.083957447,0.184042553,,,,,,,,,,0.088691796,0.019464726,0.157918867,0.035564854,0,0.090980286,4.577227723,138690,30300,2.646129418,6.508326028,0.232969319,448,1923,0.096012299,0.369926338,9.504699546,9,9469,,,96.4975766,44,45597,70.11528688,129.5434925,,,,,,,,,,,,,98.95391575,68.925028,137.6209425,,,,8.4,,,,,0,,,,,0.13036566,410,3145,0.075834804,0.184896515,0.091353997,0.036464539,0.146243454,0.041335453,0.001892885,0.080778022,0.00317965,0,0.012879408,0.744662118,3383,4543,0.675344938,0.813979297,,,,,,,,,,,,,0.783565664,0.730519372,0.836611956,0.356,,4543,0.245769524,0.466230476,77.68226078,,,75.95063294,79.41388863,,,,,,,,,,,,,77.22822921,75.2899051,79.16655332,,,,361.6523212,135,25562,296.6275864,426.677056,,,,,,,,,,,,,367.0795268,294.5110353,439.6480182,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.108,,,0.093,0.125,0.167,,,0.144,0.191,0.094,,,0.08,0.109,74.1,6,8098,,,0.127,1170,,,,0,0,8490,,,,,,,,,,,,,,,,,,,,,,,,,,0.345,,,0.328,0.36,0.202158273,1124,5560,0.174754018,0.229562529,0.12575406,271,2155,0.092392358,0.159115763,0.001127396,11,9757,,,887,0.885459184,173.55,196,,,,,,,,3.125323975,,,,,,,,3.027925375,3.168633133,3.060238243,,,,,,,,3.115425332,3.101336407,0.005601406,,,,,334.4502,,,,,0.573803472,36794,64123,0.382420744,0.765186199,75568,,,64628.93617,86507.06383,,,,,,,,,,101080,32628.93617,169531.0638,87830,54419.44681,121240.5532,,,,,,0.376324275,817,2171,,,,,,,,0.263802139,,75568,,,10.41666667,5,480,,,,,,,,,,,,,,,,,,,,,,,,,,20.57218975,10,45597,9.406915139,39.05242427,21.93126741,,,,,,,,,,,,,26.64113213,12.18202205,50.57316734,,,,,,,,,,,,,,,,,,,,,,,,,,,30.10568681,19,63111,18.12559009,47.01375921,,,,,,,,,,,,,20.48844452,9.825005524,37.67897894,,,,,,900,,,-888,0,0.728571429,4947,6790,,,0.509,,,,,18.02960703,,,,,0.821823617,2749,3345,0.759007803,0.884639432,0.108323133,354,3268,0.047086811,0.169559456,0.881315396,2948,3345,0.824821005,0.937809787,9757,,,,,0.210618018,2055,9757,,,0.199549042,1947,9757,,,0.010351543,101,9757,,,0.016910936,165,9757,,,0.011478938,112,9757,,,0.000819924,8,9757,,,0.179255919,1749,9757,,,0.777493082,7586,9757,,,0.016269222,146,8974,0,0.035129676,0.499948755,4878,9757,,,1,9205,9205,, -48,427,48427,TX,Starr County,2024,1,9549.148533,896,185219,8740.551371,10357.7457,0,,,,2,,,,2,,,,2,9811.279954,8978.897083,10643.66283,,,,,2,,,,2,,0.351,,,0.299,0.405,5.213999503,,,4.154782488,6.291421643,5.454407883,,,4.22970456,6.690307292,0.098894273,796,8049,0.092372607,0.105415939,0,,,,,,,,,,0.098619824,0.09207402,0.105165629,,,,,,,,,,0.198,,,0.155,0.246,0.442,,,0.354,0.528,3.3,0.237320865,0.237,,,0.43,,,0.364,0.499,0.478701456,31556,65920,,,0.149793133,,,0.11780456,0.187282614,0.333333333,6,18,0.206402932,0.459068619,243.8,161,66049,,,49.59060714,963,19419,46.45845857,52.7227557,,,,,,,,,,50.9943635,47.76684349,54.22188351,,,,,,,,,,0.289972805,16527,56995,0.264951528,0.314994081,0.000257385,17,66049,,,3885.235294,0.000152142,10,65728,,,6572.8,0.000212999,14,65728,,,4694.857143,4808,,,,,,,,4972,,0.21,,,,,,,,0.21,0.36,0.33,,,,,,,,0.33,0.39,0.608696844,22215,36496,0.580104214,0.637289473,0.474824105,7761,16345,0.41749445,0.532153761,0.109513725,2689,24554,,,0.4,8407,,0.303489362,0.496510638,,,,,,,,,,0.429369283,0.385280117,0.473458449,0.376835237,0,0.803563586,6.550857599,82115,12535,5.610167815,7.491547383,0.411962303,8830,21434,0.336655519,0.487269087,1.968235704,13,66049,,,39.51507593,128,323927,32.66943828,46.36071357,,,,,,,,,,41.02287987,33.91602852,48.12973122,,,,,,,10.9,,,,,1,,,,,0.213452089,3475,16280,0.181864428,0.245039749,0.114713217,0.087813806,0.141612628,0.102272727,0.07950702,0.125038435,0.018120393,0.009919535,0.026321251,0.715767368,16701,23333,0.676530301,0.755004435,,,,,,,,,,0.724051772,0.679310722,0.768792821,,,,0.238,,23333,0.197965248,0.278034752,74.29681023,,,73.61784915,74.97577131,,,,,,,,,,73.67601469,73.00501961,74.34700977,,,,,,,523.9875665,896,185219,489.4480571,558.527076,,,,,,,,,,540.2845622,504.4776236,576.0915009,,,,,,,38.64941758,36,93145,27.06957692,53.50708518,,,,,,,,,,39.77373166,27.85703268,55.06360979,,,,,,,4.006799417,33,8236,2.758096354,5.627036094,,,,,,,,,,4.045605002,2.784808333,5.681533563,,,,,,,,,,0.178,,,0.151,0.208,0.19,,,0.162,0.219,0.197,,,0.171,0.225,83.3,42,50430,,,0.237,15550,,,,0.237320865,14468.9785,60968,,,5.129573014,10,194948,2.459829645,9.433467408,,,,,,,,,,5.325919653,2.55398549,9.794555867,,,,,,,0.373,,,0.353,0.39,0.384125065,13981,36397,0.350763363,0.417486767,0.124568112,2704,21707,0.09001492,0.159121303,0.000775925,51,65728,,,1288.784314,0.952218515,1141.71,1199,,,0.087384744,417,4772,0.043798841,0.130970647,2.938464861,,,,,,,,2.934690977,,3.212132821,,,,,,,,3.206970239,,0.116119592,,,,,-35763.39333,,,,,0.82158962,29698,36147,0.697438537,0.945740704,35758,,,31145.74468,40370.25532,,,,,,,,,,35177,31398.78723,38955.21277,72903,39341.12766,106464.8723,,,,,,0.915299362,14783,16151,,,,,,,,0.397169864,,35758,,,3.450439147,22,6376,,,4.647621746,21,451844,2.876951112,7.104383534,,,,,,,,,,4.829007156,2.98923154,7.381650402,,,,,,,6.037984998,19,323927,3.635261397,9.429061513,5.865519083,,,,,,,,,,6.267140161,3.773227774,9.786915686,,,,,,,8.335211329,27,323927,5.492956787,12.12729487,,,,,,,,,,8.653263723,5.702555319,12.5900444,,,,,,,11.95102735,54,451844,8.977979562,15.59349829,,,,,,,,,,12.41744697,9.328368341,16.20207472,,,,,,,12.66666667,,7500,,,13,82,0.561248999,17525,31225,,,0.46,,,,,60.42477418,,,,,0.725984759,13528,18634,0.695202416,0.756767102,0.128801221,2194,17034,0.100871049,0.156731393,0.670333798,12491,18634,0.631333265,0.709334332,65728,,,,,0.321993671,21164,65728,,,0.112433057,7390,65728,,,0.001886563,124,65728,,,0.004168695,274,65728,,,0.002571203,169,65728,,,0.000273856,18,65728,,,0.960640823,63141,65728,,,0.034566699,2272,65728,,,0.227307028,13555,59633,0.206360739,0.248253317,0.51183666,33642,65728,,,0.28595267,18850,65920,, -48,429,48429,TX,Stephens County,2024,1,11270.87128,191,25386,8795.462721,13746.27983,0,,,,2,,,,2,,,,2,8362.192281,4680.255541,13792.16449,1,12941.30326,9721.745137,16160.86138,,,,,2,,0.191,,,0.163,0.222,3.988944602,,,3.219171557,4.882919127,5.32342364,,,4.309344734,6.447773331,0.097488922,66,677,0.075144679,0.119833165,0,,,,,,,,,,0.091304348,0.054078285,0.128530411,0.104513064,0.075289718,0.13373641,,,,,,,0.181,,,0.148,0.221,0.365,,,0.287,0.448,6.3,0.134733996,0.15,,,0.271,,,0.222,0.324,0.679156137,6181,9101,,,0.181123088,,,0.145236258,0.220335238,0.5,4,8,0.315552499,0.64971552,272.5,25,9173,,,42.29122056,79,1868,33.48235758,52.70747921,,,,,,,,,,47.34576758,32.59064788,66.49106064,39.19781222,28.36765106,52.79919582,,,,,,,0.241389683,1605,6649,0.213985427,0.268793938,0.000327047,3,9173,,,3057.666667,0.000319489,3,9390,,,3130,0.000638978,6,9390,,,1565,4222,,,,,,,,3099,4034,0.3,,,,,,,,0.24,0.3,0.31,,,,,,,,0.22,0.31,0.832755906,5288,6350,0.796504674,0.869007137,0.457792208,1128,2464,0.362304978,0.553279437,0.03731893,152,4073,,,0.26,503,,0.16587234,0.35412766,,,,,,,,,,0.315352697,0.182327915,0.44837748,0.214160839,0.094763817,0.333557862,5.36027763,100398,18730,4.091881902,6.628673357,0.254420432,518,2036,0.143991688,0.364849176,6.540935354,6,9173,,,105.053277,49,46643,77.71899267,138.8860035,,,,,,,,,,,,,140.1755241,102.6261013,186.9745055,,,,7.4,,,,,1,,,,,0.140762463,480,3410,0.074033338,0.207491589,0.123018203,0.054399476,0.191636931,0.005865103,0,0.020992515,0.01026393,0,0.02283804,0.802621232,3062,3815,0.759283656,0.845958808,,,,,,,,,,,,,0.819175185,0.656260462,0.982089908,0.246,,3815,0.158841922,0.333158078,73.69862278,,,71.79226095,75.60498461,,,,,,,,,,87.37945705,67.5531583,107.2057558,72.28137589,70.02156715,74.54118463,,,,548.0180449,191,25386,465.5470005,630.4890893,,,,,,,,,,407.6891312,249.0271128,629.6427976,615.7651412,511.4631023,720.06718,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.123,,,0.106,0.142,0.174,,,0.151,0.2,0.107,,,0.092,0.125,205.5,16,7785,,,0.15,1370,,,,0.134733996,1297.488381,9630,,,,,,,,,,,,,,,,,,,,,,,,,,0.35,,,0.335,0.363,0.283636364,1326,4675,0.249083172,0.318189555,0.14313253,297,2075,0.102621892,0.183643168,0.00085197,8,9390,,,1173.75,0.975,101.4,104,,,,,,,,2.731442994,,,,,,,,2.828503905,2.702753533,2.831450181,,,,,,,,2.929076221,2.734616304,0.01186218,,,,,-6592.66,,,,,0.750760446,40231,53587,0.356166016,1.145354875,50710,,,43140.46809,58279.53192,,,,,,,,,,36621,19427.80851,53814.19149,46800,33696,59904,,,,,,0.650670431,922,1417,,,51.13039501,,,,,0.273042792,,50710,,,4.310344828,2,464,,,,,,,,,,,,,,,,,,,,,,,,,,23.95409722,11,46643,11.48692071,44.05243766,23.58338872,,,,,,,,,,,,,31.91607212,14.59406051,60.58664656,,,,,,,,,,,,,,,,,,,,,,,,,,,33.33888982,22,65989,20.89330475,50.47547983,,,,,,,,,,,,,45.01318243,27.86386939,68.80743089,,,,,,900,,,-888,9,0.539389638,3800,7045,,,0.459,,,,,40.21683044,,,,,0.78619677,2677,3405,0.732496072,0.839897467,0.117993187,381,3229,0.057134013,0.178852361,0.838472834,2855,3405,0.786382772,0.890562896,9390,,,,,0.208306709,1956,9390,,,0.203940362,1915,9390,,,0.031842386,299,9390,,,0.015761448,148,9390,,,0.010223642,96,9390,,,0.000745474,7,9390,,,0.259105431,2433,9390,,,0.678807242,6374,9390,,,0.031758771,277,8722,0.006758173,0.056759369,0.450905218,4234,9390,,,0.400615317,3646,9101,, -48,431,48431,TX,Sterling County,2024,0,,,,,,2,,,,2,,,,2,,,,2,,,,2,,,,2,,,,2,,0.167,,,0.15,0.187,3.52024327,,,3.048673316,4.045878243,4.994667165,,,4.408910475,5.631489218,0.105263158,14,133,0.053105737,0.157420579,1,,,,,,,,,,0.188679245,0.083343325,0.294015166,,,,,,,,,,0.147,,,0.126,0.171,0.366,,,0.321,0.41,5.4,0.359020854,0.082,,,0.248,,,0.219,0.278,,,1372,,,0.196293544,,,0.174458201,0.219522498,0.222222222,2,9,0.058854756,0.422872156,362.1,5,1381,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.215136054,253,1176,0.188923289,0.24134882,0,0,1381,,,-1381,0,0,1417,,,-1417,,0,1417,,,,3670,,,,,,,,,,0.38,,,,,,,,,0.36,0.4,,,,,,,,0.3,0.41,0.901219512,739,820,0.858889914,0.943549111,0.529780564,169,319,0.299877684,0.759683444,0.04,21,525,,,0.171,70,,0.106659575,0.235340426,,,,,,,,,,,,,,,,3.166660222,163786,51722,1.521419682,4.811900762,0.257261411,124,482,0,0.551292464,21.72338885,3,1381,,,,,,,,,,,,,,,,,,,,,,,,,,7,,,,,0,,,,,0.04691358,19,405,0,0.113452365,0.044444444,0,0.174308597,0,0,0.082374573,0,0,0.058247619,0.796521739,458,575,0.68040303,0.912640449,,,,,,,,,,,,,,,,0.379,,575,0.183701118,0.574298882,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.108,,,0.097,0.12,0.159,,,0.145,0.174,0.102,,,0.092,0.112,0,0,1111,,,0.082,110,,,,0.359020854,410.360836,1143,,,,,,,,,,,,,,,,,,,,,,,,,,0.349,,,0.338,0.36,0.23255814,180,774,0.201579416,0.263536863,0.18501171,79,427,0.137352135,0.232671284,0,0,1417,,,-1417,,,,,,,,,,,3.138254665,,,,,,,,,,3.124938461,,,,,,,,,,0.002967738,,,,,-1439.127,,,,,0.586497525,33889,57782,0.174205408,0.998789643,75895,,,64368.53192,87421.46809,,,,,,,,,,59074,18096.29787,100051.7021,64663,18414.14894,110911.8511,,,,,,0.487654321,158,324,,,,,,,,0.180420318,,75895,,,10,1,100,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,200,,,0,-888,0.846357616,639,755,,,0.312,,,,,44.93070584,,,,,0.859693878,337,392,0.77585279,0.943534965,0.073972603,27,365,0,0.255118979,0.885204082,347,392,0.796532426,0.973875737,1417,,,,,0.292166549,414,1417,,,0.138320395,196,1417,,,0.01340861,19,1417,,,0.018348624,26,1417,,,0.002822865,4,1417,,,0.000705716,1,1417,,,0.384615385,545,1417,,,0.575864503,816,1417,,,0.023696683,30,1266,0,0.08579771,0.497529993,705,1417,,,1,1372,1372,, -48,433,48433,TX,Stonewall County,2024,1,17035.40488,26,3408,8802.442288,29757.42401,1,,,,2,,,,2,,,,2,,,,2,17768.85253,7671.329326,35011.72308,1,,,,2,,0.189,,,0.167,0.213,3.941746769,,,3.422996063,4.471388207,5.434224878,,,4.721984725,6.16825529,0.11627907,10,86,0.048528151,0.184029989,1,,,,,,,,,,,,,,,,,,,,,,0.184,,,0.156,0.214,0.37,,,0.328,0.411,7.9,0.048480351,0.116,,,0.268,,,0.238,0.301,0.729317269,908,1245,,,0.164442187,,,0.145702156,0.183767921,0,0,4,0,0.360186253,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.230515917,210,911,0.203111661,0.257920172,0.000821693,1,1217,,,1217,0,0,1182,,,-1182,0.003384095,4,1182,,,295.5,3207,,,,,,,,,3912,0.27,,,,,,,,,0.3,0.12,,,,,,,,,0.12,0.808842653,622,769,0.746419798,0.871265508,0.290322581,63,217,0.024093554,0.556551607,0.030215827,21,695,,,0.196,47,,0.12093617,0.27106383,,,,,,,,,,,,,0.102803738,0.011618975,0.193988501,4.320202524,112632,26071,2.26099374,6.379411308,0.211382114,78,369,0.082930478,0.33983375,24.65078061,3,1217,,,180.0450113,12,6665,93.0318846,314.5024013,,,,,,,,,,,,,200.3606492,96.08071922,368.4703675,,,,6.8,,,,,0,,,,,0.09245283,49,530,0.022766051,0.162139609,0.045627376,0,0.148823568,0.054716981,0,0.128984077,0,0,0.044509973,0.894578313,594,664,0.783514061,1,,,,,,,,,,,,,0.878216124,0.775187383,0.981244864,0.214,,664,0.082865783,0.345134217,,,,,,,,,,,,,,,,,,,,,,,,605.3787355,26,3408,374.7389787,925.3857038,,,,,,,,,,,,,632.2383681,353.8590152,1042.78104,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.123,,,0.11,0.137,0.179,,,0.163,0.196,0.107,,,0.097,0.118,,,,,,0.116,160,,,,0.048480351,72.23572259,1490,,,,,,,,,,,,,,,,,,,,,,,,,,0.357,,,0.346,0.368,0.252307692,164,650,0.21894599,0.285669394,0.185964912,53,285,0.139496827,0.232432997,0.005076142,6,1182,,,197,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.013612793,,,,,-3031.85,,,,,0.517788764,28802,55625,0.36976617,0.665811358,53153,,,45029.42553,61276.57447,,,,,,,,,,,,,78750,47369.74468,110130.2553,,,,,,0.508108108,94,185,,,,,,,,0.260493293,,53153,,,7.042253521,1,142,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,100,,,0,0,0.721568628,736,1020,,,0.317,,,,,,,,,,0.831111111,374,450,0.712996583,0.949225639,0.05,21,420,0,0.210419261,0.851111111,383,450,0.785213406,0.917008816,1182,,,,,0.205583756,243,1182,,,0.27072758,320,1182,,,0.0321489,38,1182,,,0.015228426,18,1182,,,0.018612521,22,1182,,,0.000846024,1,1182,,,0.203891709,241,1182,,,0.726734349,859,1182,,,0.000840336,1,1190,0,0.059085226,0.497461929,588,1182,,,1,1245,1245,, -48,435,48435,TX,Sutton County,2024,1,8835.140117,69,9977,5660.840983,13145.98816,1,,,,2,,,,2,,,,2,9974.823006,5810.701985,15970.65791,1,6953.215987,2795.553452,14326.28241,1,,,,2,,0.227,,,0.197,0.258,4.09281242,,,3.525194155,4.687360311,5.127016246,,,4.470474868,5.780655788,0.071186441,21,295,0.041843207,0.100529675,1,,,,,,,,,,0.065656566,0.031156825,0.100156306,,,,,,,,,,0.159,,,0.134,0.184,0.392,,,0.346,0.437,7.4,0.057783434,0.135,,,0.312,,,0.274,0.352,0.872775801,2943,3372,,,0.163197241,,,0.143725644,0.183611588,0.0625,1,16,0.002768371,0.214434203,331.4,11,3319,,,29.94652406,28,935,19.89924776,43.28106518,,,,,,,,,,34.53453454,21.89193249,51.8187581,,,,,,,,,,0.237556561,630,2652,0.210152306,0.264960816,0.001205182,4,3319,,,829.75,0.000621697,2,3217,,,1608.5,,0,3217,,,,3439,,,,,,,,2381,3657,0.32,,,,,,,,0.4,0.27,0.21,,,,,,,,0.25,0.19,0.8,1580,1975,0.741945978,0.858054022,0.495486459,494,997,0.346006874,0.644966045,0.057059961,59,1034,,,0.216,166,,0.133787234,0.298212766,,,,,,,,,,0.274122807,0.1371009,0.411144714,,,,4.467806334,115256,25797,3.331723379,5.603889289,0.412361624,447,1084,0.192857096,0.631866151,18.07773426,6,3319,,,70.81381414,13,18358,37.70537363,121.0937788,,,,,,,,,,,,,,,,,,,7.2,,,,,0,,,,,0.16796875,215,1280,0.079292328,0.256645172,0.06984127,0.003153527,0.136529012,0.0859375,0.010486467,0.161388533,0.015625,0,0.041371524,0.746657284,1061,1421,0.631076134,0.862238434,,,,,,,,,,,,,0.788990826,0.52806978,1,0.216,,1421,0.077315552,0.354684448,76.48447964,,,73.61909644,79.34986285,,,,,,,,,,75.59927729,71.4814619,79.71709267,,,,,,,488.0467978,69,9977,373.3171291,626.916529,,,,,,,,,,523.7090028,374.1453897,713.1430197,434.344434,261.5037226,678.2826369,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.129,,,0.115,0.144,0.166,,,0.15,0.184,0.131,,,0.118,0.143,,,,,,0.135,460,,,,0.057783434,238.5300166,4128,,,,,,,,,,,,,,,,,,,,,,,,,,0.344,,,0.331,0.356,0.272384035,505,1854,0.237830843,0.306937226,0.160142349,135,843,0.117248732,0.203035966,0.001243395,4,3217,,,804.25,,,,,,,,,,,3.113776919,,,,,,,,2.934017388,3.479949919,3.258333573,,,,,,,,3.143199241,3.402858357,0.008780902,,,,,-872.125,,,,,0.484104143,28932,59764,0.262461564,0.705746722,68838,,,60000.7234,77675.2766,,,,,,,,,,46094,32010.59575,60177.40426,80375,65139.42553,95610.57447,,,,,,0.506512301,350,691,,,,,,,,0.198916296,,68838,,,2.898550725,1,345,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,400,,,0,-888,0.636809816,1557,2445,,,0.342,,,,,21.63989242,,,,,0.637640449,681,1068,0.534613274,0.740667625,0.087737844,83,946,0,0.178144688,0.646067416,690,1068,0.530642608,0.761492224,3217,,,,,0.240285981,773,3217,,,0.200808206,646,3217,,,0.007460367,24,3217,,,0.01802922,58,3217,,,0.00683867,22,3217,,,0,0,3217,,,0.659309916,2121,3217,,,0.324836805,1045,3217,,,0.043959519,139,3162,0.000160671,0.087758368,0.492695058,1585,3217,,,1,3372,3372,, -48,437,48437,TX,Swisher County,2024,1,12519.56475,141,19943,9378.598236,15660.53127,0,,,,2,,,,2,,,,2,14720.26911,10253.20678,20472.33092,,10893.3769,6826.821304,16492.70353,1,,,,2,,0.275,,,0.24,0.312,4.822560046,,,3.896261039,5.82989707,5.61658388,,,4.568249222,6.787593162,0.080586081,44,546,0.05775401,0.103418152,0,,,,,,,,,,0.073170732,0.043041803,0.103299661,0.072072072,0.038053176,0.106090968,,,,,,,0.22,,,0.184,0.259,0.427,,,0.342,0.517,5.7,0.141644835,0.172,,,0.353,,,0.298,0.412,0.503371109,3509,6971,,,0.160865859,,,0.127330912,0.197496433,0,0,5,0,0.316144538,313.9,22,7008,,,33.75527426,56,1659,25.49837142,43.83403135,,,,,,,,,,42.98642534,30.41975299,59.00222728,16.2601626,7.797379994,29.90301796,,,,,,,0.285113702,1492,5233,0.254134978,0.316092425,0.000142694,1,7008,,,7008,0.000145328,1,6881,,,6881,,0,6881,,,,3360,,,,,,,,2875,3780,0.32,,,,,,,,0.29,0.33,0.24,,,,,,,,0.23,0.24,0.778979907,3528,4529,0.715523413,0.842436401,0.455228192,788,1731,0.332184678,0.578271706,0.04026326,104,2583,,,0.274,447,,0.172723404,0.375276596,,,,,,,,,,0.474279835,0.227044488,0.721515183,0.178278689,0.039428986,0.317128391,6.408950299,93231,14547,4.562105814,8.255794784,0.140401146,245,1745,0.043976467,0.236825826,14.26940639,10,7008,,,106.2033658,39,36722,75.52097514,145.1834973,,,,,,,,,,90.74959163,50.79185754,149.6776506,139.1746339,88.22477936,208.830285,,,,6.2,,,,,0,,,,,0.126923077,330,2600,0.071352732,0.182493422,0.08678501,0.033442288,0.140127732,0.038076923,0,0.078386942,0.001538462,0,0.010985301,0.777777778,2030,2610,0.71658221,0.838973346,,,,,,,,,,0.766972477,0.612507819,0.921437135,0.842767296,0.771598588,0.913936003,0.272,,2610,0.173877397,0.370122603,72.78833852,,,70.46731648,75.10936056,,,,,,,,,,71.4421496,67.57302896,75.31127024,73.99183159,70.77598537,77.20767782,,,,592.7511736,141,19943,491.3414994,694.1608479,,,,,,,,,,688.3244677,519.9529057,893.8465753,537.771795,410.3765334,692.2188991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.156,,,0.135,0.179,0.19,,,0.165,0.218,0.151,,,0.13,0.174,119.5,7,5860,,,0.172,1210,,,,0.141644835,1112.478532,7854,,,,,,,,,,,,,,,,,,,,,,,,,,0.377,,,0.366,0.387,0.342309828,1233,3602,0.30179919,0.382820466,0.161233993,277,1718,0.118340376,0.20412761,0.000435983,3,6881,,,2293.666667,0.931793478,85.725,92,,,,,,,,2.035946435,,,,,,,,2.065163026,2.564800797,2.252507138,,,,,,,,2.086077787,2.922635443,0.142842858,,,,,-5388.945667,,,,,0.824644443,36761,44578,0.449998664,1.199290223,52148,,,44134.04255,60161.95745,,,,,,,,,,29293,13819.12766,44766.87234,43996,39760.25532,48231.74468,,,,,,0.714285714,1055,1477,,,21.52423085,,,,,0.291171282,,52148,,,6.172839506,2,324,,,,,,,,,,,,,,,,,,,,,,,,,,36.6825434,13,36722,18.95440546,64.0770211,35.40112194,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,34.80211133,18,51721,20.62593682,55.00233999,,,,,,,,,,52.11273722,26.92741177,91.03046445,,,,,,,26.25,,800,,,9,12,0.475757576,2355,4950,,,0.503,,,,,6.420688844,,,,,0.686380675,1648,2401,0.633578538,0.739182811,0.149147727,315,2112,0.076765378,0.221530076,0.713869221,1714,2401,0.641853275,0.785885168,6881,,,,,0.239209417,1646,6881,,,0.16974277,1168,6881,,,0.080366226,553,6881,,,0.019909897,137,6881,,,0.007847697,54,6881,,,0.001162622,8,6881,,,0.470861793,3240,6881,,,0.421450371,2900,6881,,,0.053367797,351,6577,0.00837758,0.098358014,0.458944921,3158,6881,,,1,6971,6971,, -48,439,48439,TX,Tarrant County,2024,1,7503.783553,25089,6066795,7374.716361,7632.850746,0,5460.657496,3844.806817,7526.797048,,3767.367004,3382.227541,4152.506468,,10825.05672,10455.75344,11194.36001,,6151.083064,5939.441859,6362.72427,,7599.284116,7398.967552,7799.60068,,13537.44499,10015.07633,17897.22021,,,0.181,,,0.157,0.208,3.573410059,,,2.931272246,4.251589546,4.989726642,,,4.264715277,5.742021984,0.086808312,16731,192735,0.085551306,0.088065318,0,0.074074074,0.047672403,0.100475745,0.093897619,0.088284299,0.099510939,0.136809363,0.133351231,0.140267495,0.076277434,0.074318446,0.078236422,0.069049026,0.067162298,0.070935754,0.077966102,0.056331126,0.099601078,0.086866291,0.077361541,0.096371042,0.146,,,0.119,0.177,0.349,,,0.304,0.394,7.5,0.082282649,0.12,,,0.253,,,0.218,0.294,0.942414623,1989098,2110640,,,0.173265699,,,0.146757177,0.202764993,0.225772098,212,939,0.209594871,0.24228955,419.7,8925,2126477,,,20.25278577,10558,521311,19.86646326,20.63910827,10.96067054,6.3849945,17.5490953,3.005865103,2.39065372,3.731071156,26.91971479,25.87608589,27.9633437,28.76842606,28.02072059,29.51613153,10.63626381,10.16380691,11.10872072,22.28682171,14.12793318,33.44117529,15.16112662,13.23897078,17.08328246,0.198743414,365511,1839110,0.190402988,0.20708384,0.000582654,1239,2126477,,,1716.284907,0.000637243,1373,2154595,,,1569.260743,0.001790592,3858,2154595,,,558.4745982,3361,,,,,1556,2035,5972,3415,3037,0.44,,,,,0.37,0.36,0.42,0.3,0.47,0.47,,,,,0.51,0.51,0.34,0.37,0.49,0.870596241,1188511,1365169,0.866544547,0.874647935,0.648501412,392951,605937,0.637413525,0.659589299,0.036055377,41131,1140773,,,0.139,74671,,0.116361702,0.161638298,0.10584344,0.037810508,0.173876372,0.096683133,0.074740423,0.118625844,0.220777288,0.202051,0.239503577,0.198289344,0.184327441,0.212251246,0.082710032,0.071458035,0.093962029,4.264385605,151552,35539,4.177175585,4.351595625,0.250593671,136341,544072,0.238455198,0.262732145,6.959868364,1480,2126477,,,56.3395317,5911,10491745,54.90325265,57.77581074,44.97116555,26.19736117,72.00319247,26.86231385,22.6999552,31.02467251,66.22835672,62.45271034,70.0040031,36.31861116,34.19535619,38.44186612,71.30940151,68.90747682,73.7113262,50.61497191,24.27184642,93.08273545,9.2,,,,,1,,,,,0.165742721,119740,722445,0.161046889,0.170438553,0.124861793,0.120122794,0.129600793,0.043248967,0.040782947,0.045714987,0.007578432,0.006578156,0.008578707,0.759542334,797802,1050372,0.753571949,0.765512719,0.73853962,0.699384572,0.777694668,0.713878194,0.684666864,0.743089524,0.761948589,0.743281459,0.78061572,0.757274759,0.748395474,0.766154044,0.773587525,0.76665559,0.78051946,0.412,,1050372,0.403574898,0.420425102,77.45595952,,,77.33050821,77.58141082,93.78903323,84.22772031,103.3503462,85.16665698,84.30089119,86.03242277,73.94760322,73.60801939,74.28718705,80.747777,80.34016345,81.15539054,77.11270531,76.94211566,77.28329496,72.17833996,68.686297,75.67038293,381.2378556,25089,6066795,376.4735994,386.0021119,245.3097074,186.7411152,316.4316498,198.5282121,184.2009317,212.8554925,531.715025,517.3174474,546.1126026,312.9937728,303.2293127,322.7582329,390.3558095,383.6800252,397.0315938,579.9198284,451.2122415,733.9256585,52.94551774,1282,2421357,50.04723161,55.84380387,,,,39.57620481,29.18036923,52.47230588,92.20034329,83.29726892,101.1034177,44.99020237,40.69762835,49.28277639,46.29907488,41.63159467,50.96655508,,,,6.169002704,1191,193062,5.818642193,6.519363215,,,,4.090776274,2.948271718,5.52954113,9.970089731,8.954181974,10.98599749,5.879414913,5.311685267,6.447144559,4.779592123,4.27228645,5.286897795,,,,,,,0.112,,,0.097,0.128,0.159,,,0.139,0.18,0.11,,,0.096,0.126,367.4,6407,1743873,,,0.12,251130,,,,0.082282649,148852.1092,1809034,,,13.93187612,885,6352339,13.01397893,14.84977331,,,,3.013541761,1.504349189,5.392058636,18.1545863,15.63848901,20.6706836,7.927515031,6.658848403,9.196181658,18.17298561,16.60189659,19.74407463,,,,0.341,,,0.33,0.352,0.233926851,304260,1300663,0.223203447,0.244650255,0.119653272,67721,565977,0.1053554,0.133951145,0.001093941,2357,2154595,,,914.1260076,0.903742242,23589.48,26102,,,0.07192499,8952,124463,0.062983096,0.080866884,2.906777465,,,,,,3.341131632,2.537484178,2.728828242,3.311256906,3.043955702,,,,,,3.748794904,2.66336966,2.869688206,3.421504014,0.167000718,,,,,-5463.734598,,,,,0.846097325,50666,59882,0.826743705,0.865450945,76285,,,73725.68085,78844.31915,85589,77173.51064,94004.48936,93276,88020.34043,98531.65957,58679,56698.74468,60659.25532,67533,66264.06383,68801.93617,94450,93007.10638,95892.89362,,,,,,0.586202605,226062,385638,,,48.36905673,,,,,0.270026873,,76285,,,4.268754557,603,141259,,,6.252106895,906,14491115,5.84499071,6.659223079,,,,2.352987799,1.416652363,3.674481918,17.13592472,15.4852426,18.78660684,5.299576294,4.605554337,5.993598252,3.624677524,3.167991455,4.081363592,,,,13.02682098,1374,10491745,12.32944832,13.72419364,13.09601024,,,,8.451848296,6.231725734,11.20592465,6.936611443,5.7209486,8.152274286,6.748456642,5.795021362,7.701891922,19.15796343,17.90255395,20.41337291,,,,13.40101194,1406,10491745,12.70052345,14.10150043,,,,5.036683847,3.398229441,7.190179372,20.95550373,18.83168046,23.07932701,7.72255166,6.743472193,8.701631128,15.77399342,14.64430984,16.90367701,,,,10.48228518,1519,14491115,9.955136461,11.0094339,,,,4.210609746,2.915969652,5.88390508,14.03159053,12.53789141,15.52528965,9.274258515,8.356153763,10.19236327,11.05376865,10.25625475,11.85128255,,,,10.02243158,,222900,,,1060,1174,0.616260415,834697,1354455,,,0.668,,,,,156.2876057,,,,,0.596778146,450549,754969,0.591054847,0.602501444,0.141959434,105047,739979,0.13730348,0.146615388,0.920145066,694681,754969,0.917065188,0.923224943,2154595,,,,,0.252069647,543108,2154595,,,0.123432942,265948,2154595,,,0.180384249,388655,2154595,,,0.009402695,20259,2154595,,,0.061862206,133288,2154595,,,0.002643652,5696,2154595,,,0.305252727,657696,2154595,,,0.427601475,921308,2154595,,,0.053260432,105213,1975444,0.051101429,0.055419435,0.507565923,1093599,2154595,,,0.012281583,25922,2110640,, -48,441,48441,TX,Taylor County,2024,1,10622.92825,2387,393024,10028.05754,11217.79897,0,,,,2,,,,2,16422.75328,13683.22917,19162.27738,,10850.39719,9696.388938,12004.40545,,10401.87087,9647.596956,11156.14479,,,,,2,,0.179,,,0.15,0.206,3.712564713,,,2.892753955,4.562930884,4.846374662,,,3.835521662,5.849824151,0.089533962,1243,13883,0.084784547,0.094283378,0,,,,0.104790419,0.071942642,0.137638197,0.132930514,0.114643139,0.151217889,0.100527771,0.091184348,0.109871194,0.076009501,0.070201778,0.081817225,,,,0.113513514,0.067801532,0.159225495,0.164,,,0.13,0.201,0.347,,,0.272,0.424,6.8,0.099455817,0.141,,,0.249,,,0.202,0.297,0.828996983,118719,143208,,,0.193884443,,,0.154121756,0.237148156,0.15625,15,96,0.107964929,0.211035621,497.5,713,143326,,,27.3881804,1033,37717,25.71797805,29.05838275,,,,,,,34.51380552,28.20568476,40.82192628,39.84063745,36.23872277,43.44255213,19.77894125,17.85970238,21.69818011,,,,26.14379085,17.37235916,37.7850569,0.188648041,22471,119116,0.169584211,0.20771187,0.000669802,96,143326,,,1492.979167,0.000881767,128,145163,,,1134.085938,0.002218196,322,145163,,,450.8167702,3384,,,,,,,5445,3656,3279,0.4,,,,,,0.42,0.35,0.3,0.41,0.41,,,,,,0.34,0.26,0.36,0.42,0.899892172,78449,87176,0.890341841,0.909442504,0.617360872,23285,37717,0.57774138,0.656980364,0.033352209,2297,68871,,,0.195,6759,,0.146148936,0.243851064,,,,0.060270603,0,0.191984311,0.377086743,0.274523477,0.479650009,0.244760607,0.200904523,0.28861669,0.109041789,0.080051113,0.138032465,4.407351087,118831,26962,4.071447686,4.743254487,0.26339439,9203,34940,0.225769239,0.301019542,12.90763714,185,143326,,,80.05874815,556,694490,73.40406364,86.71343265,,,,,,,101.4258129,75.74964833,133.0064595,61.26398479,49.6556634,72.87230619,89.6867174,80.785449,98.5879858,,,,7.6,,,,,1,,,,,0.125409267,6320,50395,0.110555379,0.140263155,0.102458605,0.087907829,0.117009382,0.024407183,0.018269321,0.030545046,0.00704435,0.004361534,0.009727165,0.787625609,55337,70258,0.766469604,0.808781613,,,,0.837398374,0.723305855,0.951490893,0.772197962,0.711283244,0.833112681,0.778415126,0.746472983,0.81035727,0.801775833,0.780886075,0.82266559,0.089,,70258,0.074504906,0.103495094,73.78384374,,,73.31883338,74.24885411,,,,85.24402381,80.0485925,90.43945511,68.43875726,66.63185376,70.24566075,73.6011655,72.48422799,74.71810302,73.99298828,73.42811107,74.55786548,,,,564.5648034,2387,393024,541.2100206,587.9195862,,,,,,,843.3331905,727.9595618,958.7068191,599.0656481,544.7709707,653.3603255,555.1226914,526.9468945,583.2984882,,,,52.7237464,84,159321,42.05452498,65.27558562,,,,,,,94.96676163,50.56580094,162.3960546,41.61858459,26.08214539,63.01103722,55.33768015,40.51413686,73.81271048,,,,5.491370703,77,14022,4.333703884,6.863271181,,,,,,,,,,5.087763928,3.107738384,7.857638744,5.14201763,3.705914022,6.950514052,,,,,,,0.117,,,0.099,0.134,0.17,,,0.146,0.194,0.108,,,0.092,0.125,221.3,260,117495,,,0.141,19920,,,,0.099455817,13079.03662,131506,,,13.55335743,57,420560,10.26518056,17.5599466,,,,,,,,,,17.72173151,10.66964003,27.67467898,12.61120792,8.680975256,17.71082472,,,,0.355,,,0.342,0.368,0.223052625,18713,83895,0.199222838,0.246882413,0.112225535,4140,36890,0.086012769,0.138438301,0.001853089,269,145163,,,539.6394052,0.926834221,1392.105,1502,,,0.049977837,451,9024,0.029618625,0.070337049,2.944896307,,,,,,3.434176183,2.56266418,2.691787706,3.186980356,3.105970472,,,,,,3.24426973,2.699767443,2.889715268,3.3194793,0.079883859,,,,,-2984.2739,,,,,0.846017625,40608,47999,0.769798353,0.922236898,61798,,,57035.61702,66560.38298,62083,24878.74468,99287.25532,70909,32578.78723,109239.2128,47393,40674.19149,54111.80851,55554,51516.04255,59591.95745,66826,63233.65957,70418.34043,,,,,,0.517956605,12461,24058,,,35.25056878,,,,,0.224052558,,61798,,,4.438307525,45,10139,,,5.170224471,50,967076,3.837440257,6.816296409,,,,,,,19.82693915,10.83957213,33.2662349,5.000333356,2.583745212,8.734576075,3.932144297,2.519399046,5.850719024,,,,20.67362319,142,694490,17.16095818,24.1862882,20.4466587,,,,,,,,,,18.05345614,11.9963905,26.09227069,23.7642253,18.92388225,28.60456836,,,,16.84689484,117,694490,13.79420272,19.89958696,,,,,,,31.20794242,17.83803557,50.67974331,14.88657574,9.724405519,21.81228262,17.24744565,13.56621012,21.61982248,,,,17.37195422,168,967076,14.7450145,19.99889394,,,,,,,21.24314908,11.88962928,35.03734386,14.16761117,9.811482592,19.79781656,18.51384606,15.10023924,21.92745289,,,,21.70542636,,12900,,,122,158,0.558329114,55135,98750,,,0.594,,,,,81.22651713,,,,,0.587255048,31646,53888,0.573011719,0.601498376,0.126237862,6565,52005,0.111722557,0.140753166,0.88572595,47730,53888,0.872547285,0.898904615,145163,,,,,0.243050915,35282,145163,,,0.14959046,21715,145163,,,0.076073104,11043,145163,,,0.010346989,1502,145163,,,0.02155508,3129,145163,,,0.001853089,269,145163,,,0.26047271,37811,145163,,,0.613227889,89018,145163,,,0.019698438,2622,133107,0.014098089,0.025298787,0.509289557,73930,145163,,,0.175060053,25070,143208,, -48,443,48443,TX,Terrell County,2024,0,,,,,,2,,,,2,,,,2,,,,2,,,,2,,,,2,,,,2,,0.218,,,0.187,0.252,4.079104362,,,3.210784645,4.973562589,5.168581447,,,4.146305165,6.177728003,,,,,,0,,,,,,,,,,,,,,,,,,,,,,0.162,,,0.13,0.198,0.392,,,0.308,0.474,4.4,0.415313224,0.1,,,0.296,,,0.243,0.351,,,760,,,0.135703187,,,0.106716621,0.166366197,0,0,8,0,0.234018599,690.6,5,724,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.235908142,113,479,0.206120908,0.265695376,0,0,724,,,-724,0,0,693,,,-693,0,0,693,,,-693,,,,,,,,,,,0.1,,,,,,,,,,0.11,,,,,,,,0.09,0.13,0.937325905,673,718,0.495715489,1,0.675,54,80,0,1,0.034146342,14,410,,,0.23,29,,0.141829787,0.318170213,,,,,,,,,,,,,,,,3.081285272,101553,32958,1.056244359,5.106326185,0.361111111,39,108,0.044026105,0.678196118,0,0,724,,,,,,,,,,,,,,,,,,,,,,,,,,7,,,,,0,,,,,0.083333333,35,420,0,0.185500113,0.071428571,0,0.221611445,0.00952381,0,0.086239321,0,0,0.056167347,0.700549451,255,364,0.501467635,0.899631266,,,,,,,,,,,,,,,,0.082,,364,0,0.462029076,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.128,,,0.11,0.147,0.17,,,0.146,0.193,0.133,,,0.114,0.153,,,,,,0.1,100,,,,0.415313224,408.6682122,984,,,,,,,,,,,,,,,,,,,,,,,,,,0.345,,,0.33,0.359,0.247734139,82,331,0.211989458,0.28347882,0.209150327,32,153,0.14719288,0.271107774,0.001443001,1,693,,,693,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-1387.988,,,,,0.353005803,22813,64625,0.06057644,0.645435166,47969,,,40754.53192,55183.46809,,,,,,,,,,63188,48551.74468,77824.25532,44427,32991.08511,55862.91489,,,,,,0.518796993,69,133,,,,,,,,0.351977319,,47969,,,,,29,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,100,,,0,0,0.58343949,458,785,,,0.28,,,,,9.809686391,,,,,0.912844037,398,436,0.783555798,1,0.136476427,55,403,0,0.345414243,0.743119266,324,436,0.563024241,0.923214292,693,,,,,0.181818182,126,693,,,0.334776335,232,693,,,0.014430014,10,693,,,0.043290043,30,693,,,0.007215007,5,693,,,0,0,693,,,0.544011544,377,693,,,0.398268398,276,693,,,0.015276146,13,851,0,0.09644036,0.477633478,331,693,,,1,760,760,, -48,445,48445,TX,Terry County,2024,1,12504.86544,250,33869,10289.96562,14719.76525,0,,,,2,,,,2,,,,2,13730.49857,10685.16673,16775.83041,,11626.88385,7984.111647,15269.65605,,,,,2,,0.277,,,0.242,0.314,4.816369182,,,3.872148284,5.861347373,5.516638156,,,4.355979146,6.75224506,0.085205267,110,1291,0.069975685,0.10043485,0,,,,,,,,,,0.095112285,0.074213368,0.116011203,0.065573771,0.043611171,0.08753637,,,,,,,0.21,,,0.174,0.246,0.439,,,0.354,0.53,4.9,0.204192728,0.178,,,0.356,,,0.302,0.413,0.48905418,5786,11831,,,0.168428794,,,0.133623631,0.209549846,0.153846154,2,13,0.034991468,0.324991408,408.4,48,11754,,,51.95681512,154,2964,43.75068814,60.16294209,,,,,,,,,,55.77689243,45.44686739,66.10691747,45.7433291,32.03806533,63.32804891,,,,,,,0.274674321,2488,9058,0.244887087,0.304461555,0.00034031,4,11754,,,2938.5,0.000518717,6,11567,,,1927.833333,8.64528E-05,1,11567,,,11567,3699,,,,,,,,3326,3115,0.24,,,,,,,,0.14,0.28,0.39,,,,,,,,0.27,0.43,0.759923872,5590,7356,0.707264366,0.812583378,0.493576741,1460,2958,0.373605111,0.613548371,0.041478616,193,4653,,,0.3,962,,0.185617021,0.414382979,,,,,,,,,,0.464485981,0.333607532,0.59536443,0.148851149,0.042498165,0.255204132,4.842801222,101447,20948,3.69504206,5.990560384,0.368046972,1191,3236,0.221022416,0.515071528,8.507742045,10,11754,,,81.59801554,50,61276,60.56361991,107.5768109,,,,,,,,,,72.65752151,47.02011697,107.2568347,102.6606211,65.77659703,152.7508666,,,,6.8,,,,,1,,,,,0.218292683,895,4100,0.147327338,0.289258028,0.153320313,0.094706724,0.211933901,0.036341463,0.005473346,0.067209581,0.031707317,0,0.065398418,0.780915877,3871,4957,0.705212461,0.856619292,,,,,,,,,,0.726495727,0.595175859,0.857815594,0.800096572,0.538908192,1,0.27,,4957,0.189127797,0.350872203,71.88919522,,,70.26590351,73.51248693,,,,,,,,,,70.57967456,68.33566982,72.8236793,72.71721151,70.09431888,75.34010415,,,,645.1879959,250,33869,563.4452299,726.9307619,,,,,,,,,,720.1643096,595.7799064,844.5487128,585.5350772,465.4478,705.6223543,,,,75.21367521,11,14625,37.54639567,134.5780411,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.155,,,0.135,0.176,0.186,,,0.161,0.211,0.155,,,0.133,0.177,243.8,23,9433,,,0.178,2120,,,,0.204192728,2583.242197,12651,,,,,,,,,,,,,,,,,,,,,,,,,,0.369,,,0.356,0.381,0.342755586,2025,5908,0.303436437,0.382074735,0.149303453,493,3302,0.107601325,0.19100558,0.000345811,4,11567,,,2891.75,0.948970588,161.325,170,,,,,,,,2.432843829,,,,,,,,2.364878752,2.584702134,2.484299719,,,,,,,,2.428771443,2.68299756,0.083384981,,,,,-4293.105,,,,,0.843424516,36845,43685,0.619072487,1.067776546,46998,,,40050.42553,53945.57447,,,,,,,,,,36751,30816.19149,42685.80851,54321,40541.42553,68100.57447,,,,,,0.796810934,1749,2195,,,25.44263209,,,,,0.315502787,,46998,,,2.176278564,2,919,,,,,,,,,,,,,,,,,,,,,,,,,,26.51189564,16,61276,15.15383907,43.05365754,26.11136497,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20.733983,18,86814,12.28827238,32.7686321,,,,,,,,,,24.84574931,12.83816123,43.40052393,,,,,,,13.07692308,,1300,,,6,11,0.448138958,3612,8060,,,0.495,,,,,48.382951,,,,,0.658033573,2744,4170,0.590777322,0.725289824,0.15246162,576,3778,0.084335142,0.220588098,0.814388489,3396,4170,0.759268806,0.869508172,11567,,,,,0.279674937,3235,11567,,,0.1506873,1743,11567,,,0.035705023,413,11567,,,0.013659549,158,11567,,,0.006224605,72,11567,,,0.000691623,8,11567,,,0.582086972,6733,11567,,,0.365349702,4226,11567,,,0.081547022,894,10963,0.050754011,0.112340033,0.473156393,5473,11567,,,0.30149607,3567,11831,, -48,447,48447,TX,Throckmorton County,2024,1,5154.191721,31,3845,1891.497522,11218.50548,1,,,,2,,,,2,,,,2,,,,2,2594.089273,1537.421708,4099.779431,1,,,,2,,0.181,,,0.157,0.206,3.9659974,,,3.416860129,4.541417695,5.560404317,,,4.870902196,6.303631856,,,,,,0,,,,,,,,,,,,,,,,,,,,,,0.185,,,0.152,0.218,0.367,,,0.325,0.412,4.3,0.32190611,0.15,,,0.259,,,0.227,0.292,0.566666667,816,1440,,,0.165021918,,,0.148012232,0.184798586,0.166666667,1,6,0.011498194,0.426636125,,,,,,46.2633452,13,281,24.63328289,79.11172925,,,,,,,,,,,,,,,,,,,,,,0.242180518,271,1119,0.211201795,0.273159242,0.000668896,1,1495,,,1495,0,0,1550,,,-1550,0.000645161,1,1550,,,1550,3766,,,,,,,,,3890,0.25,,,,,,,,,0.25,0.14,,,,,,,,,0.14,0.902255639,960,1064,0.740828148,1,0.594936709,188,316,0.39432074,0.795552678,0.031165312,23,738,,,0.19,68,,0.119702128,0.260297872,,,,,,,,,,0.604651163,0.17957511,1,0.174157303,0,0.372246709,3.935248164,101250,25729,2.65975177,5.210744558,0.338461539,88,260,0.074463819,0.602459258,20.06688963,3,1495,,,132.8903655,10,7525,63.72609563,244.3901135,,,,,,,,,,,,,,,,,,,7.1,,,,,0,,,,,0.104895105,75,715,0.035322218,0.174467992,0.096503497,0.004094805,0.188912188,0,0,0.046659723,0.020979021,0,0.055062165,0.782426778,561,717,0.678152647,0.886700909,,,,,,,,,,,,,0.838038633,0.675759743,1,0.253,,717,0.105534237,0.400465763,,,,,,,,,,,,,,,,,,,,,,,,402.9312065,31,3845,267.7448606,582.3477802,,,,,,,,,,,,,335.2851737,216.9788862,494.9470574,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.122,,,0.108,0.136,0.182,,,0.164,0.199,0.104,,,0.094,0.115,,,,,,0.15,210,,,,0.32190611,528.2479267,1641,,,,,,,,,,,,,,,,,,,,,,,,,,0.348,,,0.329,0.364,0.262483995,205,781,0.225547825,0.299420165,0.195467422,69,353,0.141850401,0.249084443,0.001290323,2,1550,,,775,,,,,,,,,,,,,,,,,,,,,2.82669139,,,,,,,,,,0.024639086,,,,,392.042,,,,,0.717939757,32868,45781,0.301405967,1.134473546,50997,,,43284.48936,58709.51064,,,,,,,,,,89531,54068.70213,124993.2979,53409,37751.6383,69066.3617,,,,,,0.463722398,147,317,,,,,,,,0.271506167,,50997,,,,,125,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,100,,,0,0,0.748117155,894,1195,,,0.358,,,,,0.005437091,,,,,0.700787402,445,635,0.640689374,0.760885429,0.081521739,45,552,0,0.19948999,0.831496063,528,635,0.805679033,0.857313093,1550,,,,,0.232258065,360,1550,,,0.254193548,394,1550,,,0.010322581,16,1550,,,0.010967742,17,1550,,,0.007096774,11,1550,,,0,0,1550,,,0.135483871,210,1550,,,0.829032258,1285,1550,,,0.009077156,12,1322,0,0.062195223,0.498064516,772,1550,,,1,1440,1440,, -48,449,48449,TX,Titus County,2024,1,9395.558869,520,91115,8228.259514,10562.85822,0,,,,2,,,,2,16865.52283,11935.04774,23149.24777,,5633.071565,4399.475628,7105.353294,,11701.08011,9606.50933,13795.65089,,,,,2,,0.235,,,0.204,0.268,4.351249066,,,3.461362736,5.300592049,5.436356314,,,4.353729811,6.574069727,0.071204517,227,3188,0.06227741,0.080131624,0,,,,,,,0.115107914,0.077590627,0.1526252,0.068565401,0.057190029,0.079940773,0.062370062,0.047088338,0.077651787,,,,,,,0.191,,,0.158,0.227,0.402,,,0.317,0.491,6.4,0.140591671,0.142,,,0.32,,,0.266,0.377,0.516593593,16142,31247,,,0.169708743,,,0.132891232,0.209020652,0.14893617,7,47,0.081495822,0.230762672,506.7,158,31183,,,31.65352531,277,8751,27.92584833,35.38120229,,,,,,,30.92783505,19.14481736,47.2764812,34.9371132,29.76075807,40.11346833,26.00641254,20.384876,32.69915931,,,,,,,0.268301065,7026,26187,0.2420883,0.294513831,0.000416894,13,31183,,,2398.692308,0.000672904,21,31208,,,1486.095238,0.00083312,26,31208,,,1200.307692,2711,,,,,,,3369,703,2754,0.28,,,,,,,0.34,0.14,0.29,0.34,,,,,,0.29,0.24,0.23,0.36,0.775890467,15074,19428,0.753392245,0.79838869,0.442678923,3371,7615,0.385683633,0.499674213,0.04315238,593,13742,,,0.221,1927,,0.159042553,0.282957447,,,,,,,0.163636364,0.058387641,0.268885086,0.326148079,0.256175496,0.396120662,0.198031496,0.138671578,0.257391414,4.356681387,106547,24456,3.87376025,4.839602524,0.312597374,2809,8986,0.236304738,0.388890009,10.58268929,33,31183,,,74.32615052,121,162796,61.08258188,87.56971916,,,,,,,88.16547982,46.94440482,150.7656556,30.49245312,19.10945803,46.16594047,118.580935,94.71823915,146.6271625,,,,9.1,,,,,0,,,,,0.198825124,2200,11065,0.164142339,0.233507909,0.096347032,0.07086984,0.121824224,0.102123814,0.078489178,0.12575845,0.012200633,0.004705962,0.019695303,0.799939353,10552,13191,0.759140423,0.840738282,,,,,,,0.911379658,0.866395153,0.956364162,0.767382846,0.68876112,0.846004571,0.863439729,0.824867201,0.902012257,0.173,,13191,0.140239459,0.205760541,74.95304018,,,74.00441507,75.90166529,,,,,,,68.66689054,65.46491685,71.86886423,91.34699544,73.2534588,109.4405321,73.34964586,71.91468385,74.78460786,,,,497.0927268,520,91115,453.21587,540.9695836,,,,,,,790.2070625,614.8282615,1000.057612,338.240906,269.4069936,419.3004932,583.210534,514.1380409,652.283027,,,,46.06507298,19,41246,27.73418311,71.93631764,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.138,,,0.12,0.157,0.182,,,0.158,0.207,0.132,,,0.113,0.151,180.4,45,24950,,,0.142,4450,,,,0.140591671,4545.891077,32334,,,,,,,,,,,,,,,,,,,,,,,,,,0.356,,,0.344,0.369,0.312686055,5462,17468,0.280515842,0.344856267,0.181847969,1665,9156,0.137762862,0.225933075,0.001345809,42,31208,,,743.0476191,0.978964286,411.165,420,,,0.154013015,284,1844,0.058136823,0.249889208,3.025134232,,,,,,,2.728243718,2.95618788,3.361312949,3.210451333,,,,,,,2.968959156,3.166463078,3.383225639,0.07716206,,,,,-8734.516333,,,,,0.714202587,31912,44682,0.642735686,0.785669488,58411,,,52785.97872,64036.02128,,,,75364,65294.7234,85433.2766,28650,26676.89362,30623.10638,59245,46334.02128,72155.97872,63530,58080.12766,68979.87234,,,,,,0.730042919,5103,6990,,,38.6349973,,,,,0.230162127,,58411,,,2.519949601,6,2381,,,5.701479315,13,228011,3.035797611,9.749703268,,,,,,,,,,,,,9.833325139,4.715461622,18.08383504,,,,20.27802165,30,162796,13.58050935,29.12262163,18.4279712,,,,,,,,,,,,,41.22105944,26.41111058,61.33366897,,,,17.8137055,29,162796,11.93011815,25.58345257,,,,,,,,,,,,,37.66688523,24.82271471,54.80334042,,,,20.6130406,47,228011,15.1456869,27.41097418,,,,,,,,,,15.04151458,8.418621528,24.80869086,24.58331285,15.90902389,36.28981926,,,,11.28205128,,3900,,,10,34,0.564746852,10541,18665,,,0.545,,,,,45.19806519,,,,,0.668857619,7225,10802,0.639068972,0.698646266,0.12015128,1239,10312,0.091064723,0.149237837,0.829105721,8956,10802,0.798511582,0.859699861,31208,,,,,0.282427583,8814,31208,,,0.149609075,4669,31208,,,0.089432197,2791,31208,,,0.024865419,776,31208,,,0.013009485,406,31208,,,0.001954627,61,31208,,,0.457831325,14288,31208,,,0.425115355,13267,31208,,,0.095559613,2774,29029,0.078309384,0.112809842,0.506664958,15812,31208,,,0.506544628,15828,31247,, -48,451,48451,TX,Tom Green County,2024,1,9255.686523,1840,334466,8655.423562,9855.949485,0,,,,2,,,,2,16831.37916,12676.62254,20986.13577,,8498.814652,7621.230919,9376.398385,,9698.46208,8821.985411,10574.93875,,,,,2,,0.18,,,0.153,0.206,3.674604752,,,2.89649067,4.531767597,5.15604759,,,4.123104296,6.262760557,0.084851936,894,10536,0.079530918,0.090172955,0,,,,0.116129032,0.065691357,0.166566707,0.120141343,0.082260856,0.158021829,0.085551717,0.077736819,0.093366615,0.082780792,0.075125291,0.090436293,,,,,,,0.151,,,0.12,0.182,0.375,,,0.301,0.453,7.1,0.104340477,0.128,,,0.254,,,0.209,0.298,0.831554211,99789,120003,,,0.192526859,,,0.154748395,0.234764247,0.357142857,25,70,0.296484261,0.417284063,556.1,664,119411,,,26.44446662,795,30063,24.60620501,28.28272824,,,,,,,14.89361702,9.219383677,22.7664757,35.12880562,32.07996749,38.17764375,18.32620648,16.00762145,20.6447915,,,,26.04920405,15.43840923,41.16897289,0.201891036,19388,96032,0.181635717,0.222146356,0.000720202,86,119411,,,1388.5,0.000647647,77,118892,,,1544.051948,0.002043872,243,118892,,,489.2674897,4065,,,,,,,9516,4505,3801,0.49,,,,,,0.39,0.54,0.45,0.5,0.5,,,,,,0.49,0.4,0.46,0.52,0.866459708,66986,77310,0.853381636,0.879537779,0.62274196,20236,32495,0.578559835,0.666924086,0.034252237,1906,55646,,,0.168,4702,,0.106042553,0.229957447,,,,,,,0.271575614,0.115415477,0.42773575,0.185468833,0.132294094,0.238643573,0.111746551,0.071385778,0.152107323,4.177348582,120905,28943,3.910400447,4.444296716,0.248553697,7089,28521,0.20907727,0.288030124,10.88676923,130,119411,,,68.25491024,406,594829,61.61553897,74.8942815,,,,,,,97.23122511,60.18766082,148.628256,46.03597383,37.50999216,54.56195549,86.54805186,76.20527327,96.89083046,,,,7.6,,,,,0,,,,,0.138866255,5965,42955,0.121119526,0.156612985,0.103448276,0.088013665,0.118882887,0.030962635,0.02225563,0.039669641,0.009894075,0.005621778,0.014166372,0.766137197,43892,57290,0.743410201,0.788864192,,,,0.602941177,0.429094558,0.776787795,0.764295676,0.665573991,0.863017362,0.765889213,0.728781536,0.80299689,0.786594228,0.759942641,0.813245815,0.124,,57290,0.105160899,0.142839101,75.46509989,,,74.96980434,75.96039544,,,,,,,69.17720602,66.52150582,71.83290622,76.91992302,75.97189669,77.86794935,74.91140019,74.24391547,75.57888491,,,,477.5558414,1840,334466,454.9345181,500.1771646,,,,,,,808.857534,644.9801236,972.7349445,449.775672,412.5962363,486.9551077,491.5519026,460.9156087,522.1881964,,,,47.88070863,63,131577,36.79285118,61.26022579,,,,,,,,,,49.5123781,34.08204287,69.53378735,47.18436383,30.822393,69.13602541,,,,4.991680532,54,10818,3.749904046,6.513060306,,,,,,,,,,5.192730178,3.392063754,7.608552843,5.019305019,3.278776683,7.354444804,,,,,,,0.114,,,0.098,0.13,0.165,,,0.142,0.187,0.109,,,0.093,0.125,161.6,160,99008,,,0.128,15290,,,,0.104340477,11500.82473,110224,,,10.03845285,36,358621,7.030808965,13.89745009,,,,,,,,,,8.767374576,4.668257714,14.99247754,11.8519157,7.42753247,17.9439428,,,,0.346,,,0.333,0.36,0.234569904,15909,67822,0.209548627,0.25959118,0.128898059,3811,29566,0.099110825,0.158685293,0.00118595,141,118892,,,843.2056738,0.90643295,1182.895,1305,,,0.065525877,471,7188,0.032150999,0.098900754,2.806628435,,,,,,2.730868016,2.3277569,2.635687076,3.127744248,2.917096594,,,,,,3.776662533,2.263824454,2.718412192,3.263931225,0.083680044,,,,,-2894.395983,,,,,0.715342461,39552,55291,0.64723091,0.783454012,60348,,,54761.10638,65934.89362,41591,33348.2766,49833.7234,92051,53982.91489,130119.0851,78272,25724.93617,130819.0638,59838,53729.23404,65946.76596,69954,67021.74468,72886.25532,,,,,,0.574757179,10829,18841,,,42.64877957,,,,,0.226900643,,60348,,,6.585612969,52,7896,,,4.571043641,38,831320,3.234742535,6.274114531,,,,,,,,,,5.064769464,2.950414855,8.109186543,3.645900982,2.083947429,5.920714778,,,,19.57879629,114,594829,15.88337661,23.27421597,19.16517184,,,,,,,,,,11.8170973,7.719320294,17.31478552,25.13623558,19.73735134,31.55624194,,,,16.97966979,101,594829,13.66817082,20.29116876,,,,,,,,,,9.453816053,5.99290842,14.18536586,22.52179788,17.55684634,28.45493672,,,,13.35225906,111,831320,10.86827198,15.83624613,,,,,,,,,,11.61917701,8.262370696,15.88379747,14.35573512,11.03134103,18.36722137,,,,18.57142857,,11200,,,86,122,0.520882539,45210,86795,,,0.646,,,,,76.53375002,,,,,0.674844331,30671,45449,0.656597714,0.693090948,0.10673775,4705,44080,0.091033193,0.122442306,0.84901758,38587,45449,0.830667403,0.867367757,118892,,,,,0.238552636,28362,118892,,,0.167185345,19877,118892,,,0.034527134,4105,118892,,,0.011800626,1403,118892,,,0.01454261,1729,118892,,,0.001732665,206,118892,,,0.427270128,50799,118892,,,0.505105474,60053,118892,,,0.025842848,2886,111675,0.019833942,0.031851753,0.499486929,59385,118892,,,0.166837496,20021,120003,, -48,453,48453,TX,Travis County,2024,1,5448.136976,10752,3739815,5307.697991,5588.575961,0,5125.4592,2343.686322,9729.718114,1,2619.078649,2224.104441,3014.052857,,9589.45197,8925.186833,10253.71711,,5498.585914,5261.49081,5735.681017,,5248.850505,5044.891986,5452.809025,,,,,2,,0.141,,,0.12,0.162,3.103526761,,,2.572468797,3.696650701,5.021767531,,,4.387222827,5.689814714,0.075322456,8199,108852,0.07375464,0.076890273,0,0.087591241,0.040252048,0.134930434,0.091687042,0.085724179,0.097649904,0.136814502,0.129622503,0.144006502,0.073713521,0.071334049,0.076092993,0.060534739,0.058267144,0.062802335,,,,0.0847009,0.072144486,0.097257314,0.107,,,0.085,0.131,0.28,,,0.245,0.314,7.8,0.05290023,0.119,,,0.185,,,0.157,0.214,0.923280173,1191205,1290188,,,0.2295053,,,0.201439679,0.258527778,0.254185693,167,657,0.234701297,0.274017262,662.5,8646,1305154,,,18.92423112,4997,264053,18.39952076,19.44894148,,,,0.84087649,0.489841543,1.346324718,24.26508958,22.2517322,26.27844696,34.28596097,33.21955528,35.35236667,3.808616996,3.419482741,4.197751251,,,,9.412363266,7.390729616,11.81636015,0.150000436,172235,1148230,0.140468521,0.15953235,0.000837449,1093,1305154,,,1194.10247,0.000761439,1010,1326436,,,1313.30297,0.003692602,4898,1326436,,,270.8117599,2272,,,,,2706,1154,4818,2633,1969,0.4,,,,,,0.34,0.35,0.31,0.43,0.51,,,,,0.34,0.53,0.34,0.39,0.54,0.908234942,818851,901585,0.904260999,0.912208884,0.783800378,365095,465801,0.770044498,0.797556259,0.028192303,23188,822494,,,0.117,30619,,0.088404255,0.145595745,0.269249632,0.13658082,0.401918445,0.056509522,0.029099685,0.08391936,0.217665048,0.176388637,0.258941458,0.227479466,0.204282389,0.250676542,0.047688723,0.036366418,0.059011028,4.544227923,184223,40540,4.423976345,4.664479501,0.221481495,59037,266555,0.204394292,0.238568699,8.788234952,1147,1305154,,,61.4471762,3905,6355052,59.51988436,63.37446804,,,,22.81284559,18.44928628,27.17640489,81.53679299,73.72012697,89.35345901,42.12850035,39.376105,44.88089571,79.06357744,75.93281951,82.19433538,,,,9.5,,,,,1,,,,,0.180202633,88575,491530,0.173981402,0.186423863,0.14352558,0.137663743,0.149387418,0.041136858,0.037548007,0.04472571,0.008605782,0.00698231,0.010229254,0.631431347,458195,725645,0.624618379,0.638244316,0.6586417,0.583485805,0.733797595,0.58282765,0.558393082,0.607262218,0.701997512,0.671419109,0.732575916,0.702230844,0.689826438,0.71463525,0.667402834,0.658958666,0.675847002,0.371,,725645,0.361320295,0.380679705,80.63927938,,,80.45988562,80.81867314,86.94773045,75.92649194,97.96896897,88.90121515,87.4364448,90.36598549,75.33448226,74.71525817,75.95370635,81.79082564,81.29581879,82.2858325,80.61112918,80.38727553,80.83498284,,,,276.4774879,10752,3739815,271.2170174,281.7379584,231.2607875,144.9299043,350.1316115,119.8129096,105.7172363,133.9085829,478.6075598,454.395699,502.8194206,283.5576356,272.7205405,294.3947308,265.9756373,259.0910034,272.8602711,,,,40.6098228,493,1213992,37.02503291,44.19461269,,,,43.10875724,30.02682892,59.95384576,78.49693658,61.94855479,98.10770239,40.83574732,35.48797918,46.18351547,33.65280762,28.23096988,39.07464537,,,,4.073787979,443,108744,3.694427024,4.453148935,,,,2.526992879,1.583652983,3.825897586,8.933619812,7.072830935,11.1339558,4.238479337,3.64509223,4.831866445,3.067843844,2.542487872,3.593199816,,,,,,,0.093,,,0.081,0.107,0.145,,,0.127,0.165,0.093,,,0.08,0.105,473.2,5262,1111901,,,0.119,150980,,,,0.05290023,54183.90652,1024266,,,16.75425706,650,3879611,15.46623125,18.04228288,,,,,,,22.88351338,17.90493988,28.8179979,9.711978184,8.016163088,11.40779328,22.9398869,20.7791425,25.1006313,,,,0.304,,,0.293,0.315,0.16985835,149377,879421,0.157943456,0.181773244,0.092118589,25923,281409,0.076629227,0.107607951,0.001307263,1734,1326436,,,764.9573241,0.923240991,9581.395,10378,,,0.044981367,2921,64938,0.035315091,0.054647643,3.017524259,,,,,,3.668652928,2.555012344,2.673828659,3.624989083,3.184119477,,,,,,4.167905689,2.640469842,2.882436347,3.677456983,0.221356488,,,,,-6685.234914,,,,,0.813740605,59115,72646,0.789992223,0.837488987,95151,,,91956.61702,98345.38298,70522,58717.91489,82326.08511,114322,109320.1277,119323.8723,65307,59748.70213,70865.29787,71741,69206.70213,74275.29787,109559,107367.8511,111750.1489,,,,,,0.494956284,93521,188948,,,49.67767326,,,,,0.219535265,,95151,,,6.648761092,505,75954,,,3.859839493,337,8730933,3.447732137,4.271946848,,,,,,,13.3604712,10.79662071,16.3498331,4.590998175,3.816542962,5.365453387,2.293381535,1.861877986,2.794897514,,,,13.04544583,843,6355052,12.14058939,13.95030228,13.26503701,,,,5.922201956,3.902768406,8.616492918,8.748558003,6.331374806,11.78425022,7.087194523,5.841053464,8.333335581,18.2852036,16.78874663,19.78166058,,,,9.693075682,616,6355052,8.92760719,10.45854417,,,,4.779834314,2.995496717,7.236726593,16.38538424,13.06962418,20.28622063,6.787369501,5.682595201,7.892143801,11.68204695,10.47861723,12.88547668,,,,10.05619903,878,8730933,9.391013687,10.72138438,,,,3.087086716,1.858627865,4.820868312,16.48738999,13.48699116,19.48778882,11.83457307,10.59114965,13.0779965,9.103320582,8.198669499,10.00797167,,,,6.650763359,,104800,,,328,369,0.708786825,608575,858615,,,0.644,,,,,171.5195695,,,,,0.528857536,284583,538109,0.523384124,0.534330948,0.156404363,82546,527773,0.150240998,0.162567729,0.925617301,498083,538109,0.921241555,0.929993047,1326436,,,,,0.199241426,264281,1326436,,,0.109730888,145551,1326436,,,0.084569478,112176,1326436,,,0.01197947,15890,1326436,,,0.083600717,110891,1326436,,,0.001328372,1762,1326436,,,0.330116191,437878,1326436,,,0.479123003,635526,1326436,,,0.050710216,61612,1214982,0.047369341,0.054051092,0.488063503,647385,1326436,,,0.051106505,65937,1290188,, -48,455,48455,TX,Trinity County,2024,1,11526.24708,397,38466,9546.48432,13506.00985,0,,,,2,,,,2,13738.07477,7852.496749,22309.77274,1,,,,2,12535.43355,10083.36944,14987.49766,,,,,2,,0.211,,,0.18,0.242,4.428615162,,,3.582693805,5.34535217,6.07603122,,,4.968983706,7.238959891,0.090810811,84,925,0.072293364,0.109328258,0,,,,,,,0.134146342,0.060379564,0.207913119,,,,0.093195266,0.071280515,0.115110017,,,,,,,0.212,,,0.172,0.252,0.392,,,0.313,0.48,6.1,0.077912953,0.183,,,0.294,,,0.244,0.345,0.844728716,11490,13602,,,0.155909232,,,0.123715701,0.193494538,0.3125,5,16,0.177519792,0.449075671,238.7,33,13827,,,33.52769679,92,2744,27.02805567,41.11874381,,,,,,,35.94771242,17.94496852,64.3203873,24.43280977,13.35764446,40.99410318,36.88989784,28.47084434,47.01920307,,,,,,,0.203340957,2045,10057,0.179511169,0.227170744,0.000144645,2,13827,,,6913.5,0.000071449,1,13996,,,13996,0.000357245,5,13996,,,2799.2,3353,,,,,,,,5260,3338,0.29,,,,,,,0.18,0.23,0.3,0.37,,,,,,,0.37,0.34,0.38,0.864214851,8624,9979,0.8351292,0.893300503,0.502027575,1238,2466,0.402913543,0.601141607,0.052435156,281,5359,,,0.278,757,,0.171957447,0.384042553,,,,,,,0.644171779,0.313943178,0.97440038,0.443447038,0.20128269,0.685611385,0.075731497,0.020440845,0.13102215,4.477231019,104906,23431,3.442666758,5.51179528,0.366826746,993,2707,0.234523831,0.49912966,15.91089897,22,13827,,,104.4415128,76,72768,82.28803303,130.7241273,,,,,,,,,,,,,116.729453,90.27855047,148.5084849,,,,9.1,,,,,1,,,,,0.104832105,640,6105,0.071302468,0.138361742,0.060833333,0.035072333,0.086594334,0.034398034,0.013464033,0.055332036,0.024570025,0.005326928,0.043813121,0.845947618,4102,4849,0.791785483,0.900109753,,,,,,,,,,,,,0.73902439,0.671707791,0.80634099,0.571,,4849,0.477235011,0.664764989,73.17717954,,,71.79603468,74.5583244,,,,,,,,,,,,,72.1273342,70.51176684,73.74290157,,,,612.0416164,397,38466,543.3632478,680.719985,,,,,,,809.3461221,557.11663,1136.622867,,,,644.1890346,563.9505466,724.4275226,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.137,,,0.118,0.156,0.197,,,0.172,0.225,0.117,,,0.1,0.134,309.7,37,11946,,,0.183,2500,,,,0.077912953,1136.360415,14585,,,,,,,,,,,,,,,,,,,,,,,,,,0.358,,,0.343,0.372,0.234943835,1736,7389,0.205156601,0.26473107,0.118275739,332,2807,0.084914037,0.151637441,0.000643041,9,13996,,,1555.111111,0.921118012,148.3,161,,,,,,,,2.564762127,,,,,,,,2.526754351,2.689456643,2.733848019,,,,,,,,2.732429122,2.818053521,0.070484918,,,,,-4605.01675,,,,,0.67580459,39813,58912,0.514798782,0.836810398,49629,,,42704.06383,56553.93617,,,,,,,,,,46550,45120.21277,47979.78723,58438,50662.34043,66213.65957,,,,,,0.738413547,1657,2244,,,58.41783528,,,,,0.274214673,,49629,,,4.437869823,3,676,,,,,,,,,,,,,,,,,,,,,,,,,,17.74614375,14,72768,8.858811021,31.75275316,19.23922603,,,,,,,,,,,,,19.18962669,8.774719272,36.42788893,,,,15.11653474,11,72768,7.546119678,27.04765627,,,,,,,,,,,,,19.45490883,9.711820391,34.81020589,,,,40.34956501,41,101612,28.95554449,54.73874106,,,,,,,,,,,,,49.21818801,34.99894306,67.28288326,,,,21.66666667,,1200,,,14,12,0.612897527,6938,11320,,,0.348,,,,,0.266757986,,,,,0.763874874,4542,5946,0.732733935,0.795015813,0.075332614,419,5562,0.042467069,0.10819816,0.80810629,4805,5946,0.76912811,0.84708447,13996,,,,,0.196913404,2756,13996,,,0.265933124,3722,13996,,,0.083166619,1164,13996,,,0.011146042,156,13996,,,0.006501858,91,13996,,,0.000785939,11,13996,,,0.124964276,1749,13996,,,0.761503287,10658,13996,,,0.01644108,215,13077,0.002464818,0.030417342,0.510360103,7143,13996,,,1,13602,13602,, -48,457,48457,TX,Tyler County,2024,1,13613.20548,510,56875,11707.22345,15519.18751,0,,,,2,,,,2,23671.6099,15463.0815,34684.39311,,,,,2,13641.25706,11448.96532,15833.5488,,,,,2,,0.214,,,0.182,0.245,4.367475003,,,3.487647611,5.353246381,5.673201151,,,4.570648688,6.871062677,0.080114449,112,1398,0.065883797,0.094345102,0,,,,,,,0.111111111,0.051839508,0.170382715,,,,0.080069626,0.064376573,0.095762679,,,,,,,0.223,,,0.183,0.266,0.4,,,0.321,0.486,5.1,0.161571735,0.192,,,0.292,,,0.241,0.344,0.490453581,9710,19798,,,0.171081156,,,0.138161513,0.209863651,0.12195122,5,41,0.055178758,0.209782365,209.2,42,20077,,,39.31071621,146,3714,32.93409529,45.68733713,,,,,,,33.99433428,17.56536858,59.38126076,49.10714286,24.51410878,87.86624336,38.55101363,31.53544498,45.56658227,,,,,,,0.222629574,3097,13911,0.197608297,0.24765085,0.000249041,5,20077,,,4015.4,9.98502E-05,2,20030,,,10015,0.000299551,6,20030,,,3338.333333,2820,,,,,,,2489,,2804,0.27,,,,,,,0.24,,0.28,0.29,,,,,,,0.23,,0.29,0.825840365,11940,14458,0.796988487,0.854692243,0.337299959,1644,4874,0.271188946,0.403410972,0.060136738,431,7167,,,0.254,979,,0.164638298,0.343361702,,,,,,,0.665254237,0.440589688,0.889918786,0.059347181,0,0.177241999,0.30628732,0.201117268,0.411457372,4.691962057,112776,24036,3.881108138,5.502815976,0.347046414,1316,3792,0.239338575,0.454754253,12.45205957,25,20077,,,107.9052311,115,106575,88.18329029,127.6271718,,,,,,,115.7819736,61.64902468,197.9907011,,,,110.0175789,88.68969634,134.9267941,,,,8.9,,,,,1,,,,,0.144866385,1030,7110,0.106148398,0.183584373,0.090327169,0.058318539,0.1223358,0.050632911,0.026960079,0.074305744,0.013361463,0.004238186,0.022484739,0.77490008,4847,6255,0.71746507,0.83233509,,,,,,,,,,,,,0.744932432,0.680437995,0.80942687,0.439,,6255,0.365570994,0.512429006,72.36872461,,,71.01925218,73.71819704,,,,,,,64.21817977,58.90171281,69.53464673,,,,72.36729838,70.86237544,73.87222132,,,,634.9683603,510,56875,575.3075431,694.6291775,,,,,,,1060.635611,805.3850871,1371.11748,,,,633.8243638,566.7655289,700.8831987,,,,94.29775904,17,18028,54.93191962,150.979847,,,,,,,,,,,,,79.32501623,39.59876229,141.9343659,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.136,,,0.118,0.155,0.19,,,0.166,0.216,0.117,,,0.1,0.135,466.1,81,17380,,,0.192,3840,,,,0.161571735,3516.770386,21766,,,20.52415535,13,63340,10.92824833,35.09693072,,,,,,,,,,,,,22.19935016,11.08183562,39.72076954,,,,0.383,,,0.368,0.397,0.262074426,2648,10104,0.229904213,0.294244639,0.120099875,481,4005,0.087929662,0.152270088,0.000599101,12,20030,,,1669.166667,0.946261682,202.5,214,,,,,,,,2.721033888,,,,,,,2.340914259,2.00665751,2.851551492,2.918475261,,,,,,,2.675885323,2.749302473,2.983647529,0.111884877,,,,,-2766.1011,,,,,0.713105033,38482,53964,0.559803027,0.866407039,50722,,,43668.38298,57775.61702,,,,,,,,,,78500,25910.04255,131089.9575,51234,45233.65957,57234.34043,,,,,,0.669099074,2384,3563,,,54.94379756,,,,,0.268305666,,50722,,,4.62962963,4,864,,,,,,,,,,,,,,,,,,,,,,,,,,24.85164476,25,106575,15.75381098,37.28966919,23.45765893,,,,,,,,,,,,,19.60959237,10.44128206,33.53300017,,,,14.07459536,15,106575,7.877444178,23.21390464,,,,,,,,,,,,,13.15427574,6.566567054,23.53663288,,,,30.15236998,45,149242,21.99334557,40.34624335,,,,,,,,,,,,,31.5065227,22.18349958,43.42759132,,,,8.888888889,,1800,,,0,16,0.569911504,9660,16950,,,0.369,,,,,10.46355333,,,,,0.806489502,5493,6811,0.771893393,0.841085611,0.093617689,597,6377,0.060930775,0.126304602,0.819116136,5579,6811,0.793339339,0.844892932,20030,,,,,0.195007489,3906,20030,,,0.229755367,4602,20030,,,0.110634049,2216,20030,,,0.009236146,185,20030,,,0.006689965,134,20030,,,0.000748877,15,20030,,,0.076934598,1541,20030,,,0.784073889,15705,20030,,,0.011517615,221,19188,0.003814378,0.019220852,0.462855716,9271,20030,,,1,19798,19798,, -48,459,48459,TX,Upshur County,2024,1,10021.93574,863,116077,8972.863742,11071.00773,0,,,,2,,,,2,12277.33523,8341.853633,17426.69735,,6659.577689,4122.383552,10179.87192,1,10285.15027,9088.020688,11482.27986,,,,,2,,0.196,,,0.168,0.228,4.173416555,,,3.314028794,5.085512042,5.774435977,,,4.645707956,6.961840581,0.078638144,261,3319,0.069480491,0.087795797,0,,,,,,,0.177272727,0.126807336,0.227738118,0.091858038,0.065992366,0.11772371,0.068514852,0.058661007,0.078368696,,,,,,,0.203,,,0.165,0.244,0.363,,,0.285,0.444,7,0.033956193,0.163,,,0.271,,,0.224,0.323,0.329135283,13459,40892,,,0.175026239,,,0.138527108,0.215176004,0.083333333,5,60,0.035457891,0.151081782,272.9,114,41774,,,29.597831,262,8852,26.01385319,33.18180881,,,,,,,32.34501348,20.72406045,48.12681616,36.00900225,26.55019567,47.74271282,28.4463895,24.31355961,32.57921939,,,,,,,0.190703749,6425,33691,0.16925694,0.212150557,0.000215445,9,41774,,,4641.555556,0.000141216,6,42488,,,7081.333333,0.000400113,17,42488,,,2499.294118,4322,,,,,,,4835,,4240,0.32,,,,,,,0.28,0.23,0.33,0.37,,,,,,,0.33,0.21,0.37,0.865534925,24473,28275,0.848124946,0.882944904,0.55031478,5507,10007,0.482667673,0.617961886,0.042587813,759,17822,,,0.214,2105,,0.143702128,0.284297872,,,,,,,0.213675214,0.117039958,0.31031047,0.170584285,0.059741257,0.281427313,0.154356607,0.11226738,0.196445834,5.034895726,121920,24215,3.976745091,6.093046361,0.211726384,2080,9824,0.150981705,0.272471064,7.181500455,30,41774,,,87.40167312,182,208234,74.70353275,100.0998135,,,,,,,68.35694755,34.12354193,122.3094613,,,,97.19222462,82.22538563,112.1590636,,,,9.3,,,,,0,,,,,0.138985407,2000,14390,0.112179816,0.165790997,0.1,0.077207034,0.122792966,0.035788742,0.019066064,0.05251142,0.011118833,0.003968232,0.018269433,0.841240765,13777,16377,0.812492799,0.869988731,,,,,,,,,,,,,0.772266222,0.723886811,0.820645633,0.478,,16377,0.422394326,0.533605674,74.35460937,,,73.54059803,75.16862071,,,,,,,72.98290425,69.5924261,76.3733824,,,,73.96766126,73.07359598,74.86172655,,,,535.0066536,863,116077,497.0757277,572.9375794,,,,,,,655.2423809,514.5062014,822.5968058,340.5683747,220.3978953,502.7461043,547.3911185,504.969771,589.8124661,,,,64.50721099,28,43406,42.86457323,93.23088039,,,,,,,,,,,,,72.25887528,45.80592849,108.4237917,,,,6.762988011,22,3253,4.238328581,10.23924512,,,,,,,,,,,,,,,,,,,,,,0.13,,,0.113,0.149,0.192,,,0.167,0.219,0.111,,,0.095,0.128,154.6,54,34928,,,0.163,6650,,,,0.033956193,1334.783971,39309,,,11.13824955,14,125693,6.089384672,18.68809013,,,,,,,,,,,,,11.9495728,6.17451864,20.87349888,,,,0.365,,,0.35,0.38,0.226370768,5396,23837,0.198966513,0.253775024,0.109052307,1130,10362,0.079265073,0.138839541,0.000211825,9,42488,,,4720.888889,0.934440228,492.45,527,,,,,,,,2.927334426,,,,,,,2.236636324,2.750544898,3.017955082,2.995257378,,,,,,,2.445559396,3.10237976,3.033568903,0.044326681,,,,,-900.5137286,,,,,0.747954662,45071,60259,0.599155011,0.896754314,59690,,,53037.91489,66342.08511,61635,6544.106383,116725.8936,24405,3067.808511,45742.19149,42635,31373.04255,53896.95745,52941,31172.48936,74709.51064,63604,57495.23404,69712.76596,,,,,,0.663057164,5266,7942,,,34.98484347,,,,,0.234947227,,59690,,,2.995293111,7,2337,,,8.971518878,26,289806,5.860493991,13.14535382,,,,,,,,,,,,,9.468148288,5.933638124,14.33489029,,,,17.98307422,39,208234,12.52587009,25.01010298,18.72892995,,,,,,,,,,,,,20.60121094,14.09121303,29.08276301,,,,22.09053277,46,208234,16.17304639,29.46567502,,,,,,,,,,,,,25.79793617,18.67009432,34.74965071,,,,23.46397245,68,289806,18.22069272,29.74617612,,,,,,,,,,,,,25.39185223,19.32945439,32.75363937,,,,7.857142857,,4200,,,9,24,0.614873881,18892,30725,,,0.56,,,,,16.25048405,,,,,0.783085042,11722,14969,0.757831354,0.808338731,0.10865743,1545,14219,0.084285664,0.133029197,0.869597168,13017,14969,0.847651854,0.891542481,42488,,,,,0.235148748,9991,42488,,,0.187535304,7968,42488,,,0.079363585,3372,42488,,,0.012403502,527,42488,,,0.008049332,342,42488,,,0.000941442,40,42488,,,0.098686688,4193,42488,,,0.785468838,33373,42488,,,0.009615385,374,38896,0.003948922,0.015281848,0.50334212,21386,42488,,,0.806905996,32996,40892,, -48,461,48461,TX,Upton County,2024,1,10967.33093,55,9836,7287.711753,15850.84679,0,,,,2,,,,2,,,,2,10984.82006,6278.773787,17838.65957,1,11857.81294,6313.785983,20277.22125,1,,,,2,,0.228,,,0.195,0.262,4.193408565,,,3.405343325,5.075936851,5.255354932,,,4.169737593,6.458759301,0.114285714,36,315,0.07915042,0.149421008,0,,,,,,,,,,0.119170985,0.073461272,0.164880697,0.110169492,0.053675874,0.166663109,,,,,,,0.176,,,0.142,0.211,0.396,,,0.308,0.491,7.3,0.085644179,0.126,,,0.313,,,0.259,0.369,0.919891173,3043,3308,,,0.177752587,,,0.138675454,0.221678967,0.375,6,16,0.240765683,0.502616143,183.8,6,3265,,,40.5982906,38,936,28.72976672,55.72432577,,,,,,,,,,52.45901639,35.88192838,74.05647882,,,,,,,,,,0.22324384,607,2719,0.197031074,0.249456606,,0,3265,,,,0,0,3152,,,-3152,,0,3152,,,,3531,,,,,,,,2420,2501,0.27,,,,,,,,0.21,0.33,0.14,,,,,,,,0.04,0.16,0.78952164,1733,2195,0.730606274,0.848437007,0.383863081,314,818,0.279545312,0.48818085,0.026819923,63,2349,,,0.225,192,,0.146361702,0.303638298,,,,,,,,,,0.301526718,0.103967299,0.499086136,0.276595745,0.074452909,0.478738581,5.744810745,117625,20475,3.883877103,7.605744387,0.186098655,166,892,0.070010923,0.302186386,0,0,3265,,,95.08361765,17,17879,55.38971122,152.2380828,,,,,,,,,,,,,,,,,,,7.2,,,,,1,,,,,0.066914498,90,1345,0.026951159,0.106877837,0.044106464,0,0.092711552,0.014869889,0,0.041079036,0.007434944,0,0.02905409,0.845454546,1116,1320,0.679008115,1,,,,,,,,,,0.815489749,0.703811409,0.92716809,0.849122807,0.698068157,1,0.42,,1320,0.2979203,0.5420797,76.10828159,,,72.34104208,79.87552111,,,,,,,,,,74.73115568,69.51053696,79.95177439,,,,,,,504.1463034,55,9836,376.5205731,661.1208035,,,,,,,,,,484.6332151,313.629064,715.4142281,576.0287714,376.281118,844.0156134,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.132,,,0.114,0.152,0.173,,,0.149,0.199,0.129,,,0.11,0.151,0,0,2626,,,0.126,420,,,,0.085644179,287.3362198,3355,,,,,,,,,,,,,,,,,,,,,,,,,,0.359,,,0.347,0.37,0.254847645,460,1805,0.221485943,0.288209348,0.16442606,159,967,0.123915422,0.204936698,0.000951777,3,3152,,,1050.666667,,,,,,,,,,,2.792159571,,,,,,,,2.631459462,,3.063995052,,,,,,,,2.951584409,,0.073488013,,,,,6599.1271,,,,,0.601037597,37536,62452,0.402336837,0.799738357,61607,,,52215.68085,70998.31915,,,,,,,,,,45662,34304.7234,57019.2766,74948,51663.91489,98232.08511,,,,,,0.567664671,474,835,,,58.88888889,,,,,0.274059766,,61607,,,19.8019802,2,101,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,400,,,-888,5,0.576,1368,2375,,,0.344,,,,,3.124358371,,,,,0.771093177,1051,1363,0.702213434,0.83997292,0.097580645,121,1240,0.019906878,0.175254412,0.70726339,964,1363,0.619152591,0.795374188,3152,,,,,0.273477157,862,3152,,,0.164340102,518,3152,,,0.029187817,92,3152,,,0.030774112,97,3152,,,0.007931472,25,3152,,,0,0,3152,,,0.556154822,1753,3152,,,0.38642132,1218,3152,,,0.036477987,116,3180,0.005563372,0.067392603,0.49714467,1567,3152,,,1,3308,3308,, -48,463,48463,TX,Uvalde County,2024,1,11514.26739,474,72392,10051.7835,12976.75127,0,,,,2,,,,2,,,,2,10903.02869,9280.332826,12525.72456,,14464.11326,10750.93209,18177.29443,,,,,2,,0.248,,,0.212,0.287,4.351364111,,,3.421842956,5.347405189,5.240820299,,,4.119504222,6.448907483,0.078581871,215,2736,0.068498922,0.088664821,0,,,,,,,,,,0.079641847,0.068122378,0.091161317,0.07029877,0.049292666,0.091304873,,,,,,,0.165,,,0.132,0.202,0.401,,,0.315,0.492,4.9,0.250599068,0.159,,,0.334,,,0.275,0.397,0.622862726,15300,24564,,,0.166518647,,,0.13202377,0.206691711,0.052631579,2,38,0.009007055,0.13851551,586.4,145,24729,,,41.43449064,290,6999,36.66558119,46.2034001,,,,,,,,,,45.34313726,39.82086576,50.86540875,25.9965338,17.53975219,37.11166845,,,,,,,0.238570445,4853,20342,0.213549169,0.263591722,0.000323507,8,24729,,,3091.125,0.000360866,9,24940,,,2771.111111,0.000801925,20,24940,,,1247,2675,,,,,,,,2853,2078,0.26,,,,,,,,0.19,0.31,0.26,,,,,,,,0.22,0.3,0.761397391,11791,15486,0.717791235,0.805003548,0.541092637,3417,6315,0.441372883,0.64081239,0.043728934,493,11274,,,0.387,2509,,0.288106383,0.485893617,,,,0.841772152,0.574535799,1,,,,0.3701849,0.285875868,0.454493932,0.177757521,0.081101643,0.274413398,5.559662999,97005,17448,3.834803955,7.284522043,0.355047854,2300,6478,0.247084377,0.463011332,10.91835497,27,24729,,,71.10976625,94,132190,57.4639295,87.02034475,,,,,,,,,,58.64427014,44.29925143,76.15446273,103.7313654,72.25269673,144.2652185,,,,8.3,,,,,0,,,,,0.118273543,1055,8920,0.083395799,0.153151287,0.081993205,0.049322867,0.114663543,0.025224215,0.007201451,0.04324698,0.021300448,0.005171901,0.037428996,0.818134769,7904,9661,0.775727941,0.860541596,,,,,,,,,,0.822590012,0.771808249,0.873371774,0.884846212,0.824048119,0.945644304,0.12,,9661,0.084136368,0.155863632,73.46763002,,,72.34148209,74.59377794,,,,,,,,,,73.82931163,72.47674967,75.18187358,71.68147676,69.24168542,74.1212681,,,,574.2609007,474,72392,520.9314702,627.5903311,,,,,,,,,,570.6400864,505.3083798,635.971793,641.3529732,531.5663036,751.1396429,,,,53.51465357,17,31767,31.17425778,85.68214441,,,,,,,,,,50.4129988,26.84279866,86.20776328,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.138,,,0.118,0.16,0.171,,,0.146,0.196,0.143,,,0.123,0.166,150.8,30,19899,,,0.159,3970,,,,0.250599068,6617.06839,26405,,,,,,,,,,,,,,,,,,,,,,,,,,0.345,,,0.33,0.36,0.28959768,3995,13795,0.256235978,0.322959382,0.13477128,931,6908,0.099026599,0.170515961,0.001082598,27,24940,,,923.7037037,0.888725762,320.83,361,,,,,,,,2.515470963,,,,,,,,2.460000466,3.002389282,2.677915347,,,,,,,,2.629800005,3.104591916,0.14360673,,,,,-5177.06025,,,,,0.705501966,32839,46547,0.541007274,0.869996657,48427,,,41410.31915,55443.68085,,,,,,,,,,44167,28526.31915,59807.68085,65690,56181.91489,75198.08511,,,,,,0.749406646,3789,5056,,,77.33464095,,,,,0.252875462,,48427,,,6.117908788,11,1798,,,,,,,,,,,,,,,,,,,,,,,,,,15.39956669,21,132190,9.406455402,23.78338177,15.88622437,,,,,,,,,,10.41347455,4.993665816,19.15075047,26.53142664,10.66700955,54.66487904,,,,9.077842499,12,132190,4.690653687,15.85716397,,,,,,,,,,,,,,,,,,,17.67352185,33,186720,12.16563923,24.82019562,,,,,,,,,,17.89135475,11.46332858,26.62091767,,,,,,,10,,2800,,,8,20,0.573869626,10344,18025,,,0.398,,,,,47.62449925,,,,,0.682897862,5750,8420,0.645234898,0.720560826,0.102357242,812,7933,0.057142999,0.147571485,0.79263658,6674,8420,0.747431175,0.837841984,24940,,,,,0.263672815,6576,24940,,,0.163672815,4082,24940,,,0.008019246,200,24940,,,0.013151564,328,24940,,,0.013311949,332,24940,,,0.001002406,25,24940,,,0.723576584,18046,24940,,,0.2478749,6182,24940,,,0.07126148,1645,23084,0.048373918,0.094149041,0.504129912,12573,24940,,,0.351652825,8638,24564,, -48,465,48465,TX,Val Verde County,2024,1,9275.673236,698,136107,8358.8619,10192.48457,0,,,,2,,,,2,,,,2,9789.861313,8750.512977,10829.20965,,8154.043573,5729.376747,10578.7104,,,,,2,,0.272,,,0.23,0.319,4.465875506,,,3.496498828,5.475557572,5.163823583,,,4.042872021,6.366488529,0.067018758,368,5491,0.060404746,0.07363277,0,,,,,,,,,,0.067109777,0.059928776,0.074290778,0.061493411,0.043476569,0.079510254,,,,,,,0.166,,,0.133,0.208,0.406,,,0.322,0.494,5.5,0.215941623,0.148,,,0.355,,,0.293,0.421,0.688752995,32775,47586,,,0.169230689,,,0.133746044,0.207713071,0.178571429,5,28,0.087257021,0.288336239,447.8,213,47564,,,46.78650579,570,12183,42.94555047,50.6274611,,,,,,,,,,49.39271255,45.26097453,53.52445057,19.48842875,11.13932089,31.64798733,,,,,,,0.244871958,9610,39245,0.219850682,0.269893235,0.000336389,16,47564,,,2972.75,0.000294081,14,47606,,,3400.428571,0.000630173,30,47606,,,1586.866667,2704,,,,,,,,2709,2547,0.22,,,,,,,,0.21,0.24,0.26,,,,,,,0.17,0.24,0.3,0.735397095,21214,28847,0.700804577,0.769989614,0.572140879,7229,12635,0.494510535,0.649771222,0.044919594,1000,22262,,,0.299,3941,,0.198914894,0.399085106,,,,,,,,,,0.189034163,0.142629061,0.235439265,0.05132592,0,0.10669773,5.230932203,113574,21712,4.308065584,6.153798823,0.344489368,4601,13356,0.265845039,0.423133697,6.938020352,33,47564,,,53.68192435,131,244030,44.4891098,62.87473891,,,,,,,,,,47.18621169,38.17646305,57.68269688,98.51107546,68.61657351,137.0050589,,,,8,,,,,1,,,,,0.207748627,3405,16390,0.168525386,0.246971868,0.104263928,0.077878199,0.130649656,0.103721782,0.074953867,0.132489697,0.011897499,0.001534909,0.022260088,0.807202688,17057,21131,0.777477906,0.83692747,,,,,,,,,,0.810419589,0.774074038,0.84676514,0.771543624,0.702596296,0.840490952,0.114,,21131,0.079694209,0.148305791,75.23447775,,,74.44263658,76.02631891,,,,,,,,,,74.67744951,73.7858709,75.56902812,76.27399805,74.36078865,78.18720746,,,,501.8435398,698,136107,464.1009466,539.5861329,,,,,,,,,,526.4858624,483.1979014,569.7738234,451.2648448,362.5123459,540.0173438,,,,29.55131257,18,60911,17.51398069,46.7038142,,,,,,,,,,25.93505122,14.17893384,43.51460907,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.144,,,0.123,0.169,0.171,,,0.147,0.197,0.159,,,0.137,0.185,124.7,47,37695,,,0.148,7050,,,,0.215941623,10555.01057,48879,,,,,,,,,,,,,,,,,,,,,,,,,,0.349,,,0.332,0.365,0.304521532,7927,26031,0.27115983,0.337883234,0.130804118,1817,13891,0.096250926,0.165357309,0.000735201,35,47606,,,1360.171429,0.839199492,660.45,787,,,0.108782435,327,3006,0.050932419,0.166632452,2.547529854,,,,,,,,2.524358792,2.852783946,2.660259389,,,,,,,,2.632207327,2.913534966,0.121361295,,,,,-4664.6875,,,,,0.663974434,34281,51630,0.562597287,0.76535158,52593,,,46645.08511,58540.91489,,,,41793,20373.59575,63212.40426,42409,13478.44681,71339.55319,54564,47975.06383,61152.93617,76723,65040.44681,88405.55319,,,,,,0.715067459,7579,10599,,,69.95191358,,,,,0.232844675,,52593,,,3.823604384,15,3923,,,3.217324415,11,341899,1.606076756,5.756682094,,,,,,,,,,3.560492772,1.707394679,6.547872977,,,,,,,10.46971424,26,244030,6.77544703,15.45536356,10.65442773,,,,,,,,,,7.377750315,4.129270846,12.16847717,29.60364394,14.19609795,54.44215523,,,,9.425070688,23,244030,5.974686324,14.1422337,,,,,,,,,,6.953757513,3.80168394,11.66722352,,,,,,,11.11439343,38,341899,7.865206288,15.25537335,,,,,,,,,,10.68147832,7.206748566,15.24847447,,,,,,,16.47058824,,5100,,,36,48,0.520435967,15280,29360,,,0.523,,,,,52.42784588,,,,,0.6594364,10975,16643,0.623277419,0.695595381,0.1116619,1757,15735,0.082163646,0.141160155,0.713573274,11876,16643,0.674636817,0.752509731,47606,,,,,0.280720918,13364,47606,,,0.134289795,6393,47606,,,0.014514977,691,47606,,,0.009935722,473,47606,,,0.00846532,403,47606,,,0.001953535,93,47606,,,0.826954586,39368,47606,,,0.142713103,6794,47606,,,0.12422332,5458,43937,0.102879874,0.145566765,0.481367895,22916,47606,,,0.10309755,4906,47586,, -48,467,48467,TX,Van Zandt County,2024,1,10590.61866,1163,160271,9612.504798,11568.73252,0,,,,2,,,,2,9830.402043,5502.0014,16213.75321,1,6772.978885,4717.627956,9419.574058,,11220.99069,10093.53461,12348.44676,,,,,2,,0.181,,,0.153,0.211,3.97728007,,,3.161897642,4.966617732,5.516900438,,,4.438193601,6.715882625,0.073375738,323,4402,0.065672752,0.081078725,0,,,,,,,,,,0.066919192,0.049516018,0.084322366,0.073803967,0.065051571,0.082556364,,,,,,,0.186,,,0.15,0.225,0.356,,,0.279,0.437,6.8,0.106706709,0.137,,,0.253,,,0.206,0.303,0.487731143,29040,59541,,,0.182302893,,,0.145599475,0.224796853,0.131868132,12,91,0.084629244,0.187612917,225.2,138,61275,,,24.4765778,325,13278,21.81545395,27.13770165,,,,,,,,,,37.05263158,29.71729401,45.64987842,22.75233036,19.79248496,25.71217576,,,,,,,0.206765833,10036,48538,0.185319024,0.228212642,8.15993E-05,5,61275,,,12255,0.000206812,13,62859,,,4835.307692,0.000413624,26,62859,,,2417.653846,3538,,,,,,,,4044,3491,0.38,,,,,,,0.46,0.31,0.38,0.34,,,,,,,0.36,0.23,0.34,0.860311377,35918,41750,0.844377578,0.876245176,0.546070362,7497,13729,0.487734867,0.604405857,0.03473892,968,27865,,,0.174,2464,,0.115617021,0.232382979,,,,,,,0.110294118,0,0.336127463,0.212990937,0.129365945,0.296615928,0.154436598,0.11558295,0.193290246,4.664942085,120822,25900,4.29931407,5.0305701,0.258147012,3533,13686,0.206425226,0.309868797,9.62872297,59,61275,,,93.51044491,268,286599,82.31480819,104.7060816,,,,,,,,,,62.05307015,38.41182845,94.85470934,100.7601277,87.9855712,113.5346841,,,,9,,,,,1,,,,,0.118809466,2435,20495,0.099477886,0.138141046,0.07620222,0.059294118,0.093110321,0.03391071,0.023174154,0.044647266,0.014881679,0.008301768,0.021461589,0.800900068,19932,24887,0.762932075,0.838868062,,,,,,,,,,0.700621118,0.617401147,0.783841089,0.757729845,0.71816733,0.79729236,0.56,,24887,0.505477155,0.614522845,74.23489557,,,73.51076847,74.95902266,,,,,,,,,,82.05859447,77.97645915,86.14072979,73.54339573,72.74500798,74.34178348,,,,518.1012685,1163,160271,486.2094144,549.9931225,,,,,,,487.2262145,318.2723395,713.8992923,267.6143857,195.1997693,358.0891033,548.5950164,512.9002399,584.2897928,,,,75.32054025,44,58417,54.72801985,101.1143097,,,,,,,,,,,,,83.15432056,58.24026382,115.1206303,,,,6.454587368,28,4338,4.289026431,9.328675874,,,,,,,,,,,,,6.406523005,4.014933859,9.699552821,,,,,,,0.121,,,0.104,0.14,0.183,,,0.158,0.208,0.103,,,0.088,0.12,120.2,62,51578,,,0.137,8030,,,,0.106706709,5610.532046,52579,,,13.68316629,24,175398,8.767062826,20.35946681,,,,,,,,,,,,,15.24717754,9.555324988,23.08441003,,,,0.343,,,0.328,0.357,0.239183768,8287,34647,0.211779512,0.266588023,0.130482381,1907,14615,0.098312168,0.162652594,0.000381807,24,62859,,,2619.125,0.948104435,662.725,699,,,0.077237049,246,3185,0.028347397,0.1261267,2.910972013,,,,,,,2.229976633,2.612384746,3.040778366,2.985936401,,,,,,,2.496847753,2.780258266,3.085358396,0.031001892,,,,,-2033.909243,,,,,0.770657286,40310,52306,0.678052687,0.863261885,57706,,,50807.2766,64604.7234,,,,112422,69796.46809,155047.5319,44131,31733.55319,56528.44681,51182,40870.85106,61493.14894,65228,60452.51064,70003.48936,,,,,,0.558230257,5867,10510,,,57.59291732,,,,,0.243024989,,57706,,,3.910950662,13,3324,,,6.337119551,25,394501,4.101049642,9.354838568,,,,,,,,,,,,,6.100964868,3.72662784,9.42244542,,,,19.1966618,55,286599,14.2481324,25.3084054,19.19057638,,,,,,,,,,,,,20.72257578,14.99703084,27.91317358,,,,18.49273724,53,286599,13.85232919,24.18895562,,,,,,,,,,,,,19.39316265,14.19823244,25.86776128,,,,30.67165863,121,394501,25.20652673,36.13679053,,,,,,,,,,,,,32.64016204,26.45549265,38.82483143,,,,9.444444444,,5400,,,19,32,0.619369423,26029,42025,,,0.559,,,,,12.57879233,,,,,0.796560065,17784,22326,0.777584738,0.815535391,0.102922138,2226,21628,0.083339039,0.122505237,0.809101496,18064,22326,0.782739605,0.835463387,62859,,,,,0.228065989,14336,62859,,,0.202500835,12729,62859,,,0.028985507,1822,62859,,,0.010054248,632,62859,,,0.005981642,376,62859,,,0.001543136,97,62859,,,0.136623236,8588,62859,,,0.807521596,50760,62859,,,0.015118294,855,56554,0.008750533,0.021486055,0.506069139,31811,62859,,,1,59541,59541,, -48,469,48469,TX,Victoria County,2024,1,9597.891485,1483,255408,8899.631145,10296.15182,0,,,,2,,,,2,16154.15647,12274.0719,20034.24103,,10073.90227,9088.283521,11059.52102,,9036.693092,7915.919355,10157.46683,,,,,2,,0.21,,,0.183,0.242,4.052073545,,,3.274161531,4.897836614,5.66941291,,,4.650414268,6.719248258,0.081808647,702,8581,0.076009644,0.08760765,0,,,,,,,0.113122172,0.083593039,0.142651305,0.087762167,0.079848481,0.095675853,0.069034185,0.059981957,0.078086413,,,,,,,0.168,,,0.137,0.201,0.412,,,0.335,0.495,6.7,0.088573239,0.15,,,0.296,,,0.247,0.349,0.71676212,65454,91319,,,0.175813118,,,0.140747886,0.214504798,0.304347826,28,92,0.250870363,0.358662198,527.7,480,90964,,,32.0608613,708,22083,29.69921623,34.42250636,,,,,,,31.08108108,22.75525771,41.45780656,41.34585772,37.84881502,44.84290041,17.04463383,13.9692258,20.12004186,,,,,,,0.203931237,15137,74226,0.183675918,0.224186556,0.000725562,66,90964,,,1378.242424,0.000592983,54,91065,,,1686.388889,0.001735024,158,91065,,,576.3607595,3515,,,,,,,3950,3985,3213,0.39,,,,,,0.4,0.34,0.34,0.4,0.48,,,,,,0.43,0.39,0.47,0.48,0.838377076,50088,59744,0.819118323,0.857635828,0.568365849,13547,23835,0.518797396,0.617934302,0.041750272,1727,41365,,,0.197,4405,,0.12312766,0.27087234,,,,,,,0.374269006,0.093666703,0.654871309,0.270394061,0.219846041,0.320942082,0.135809313,0.076360696,0.195257929,4.660183458,122437,26273,4.14290313,5.177463787,0.2747657,6274,22834,0.223336811,0.32619459,8.904621609,81,90964,,,63.60228533,292,459103,56.30708258,70.89748808,,,,,,,53.01825343,28.98557251,88.9556204,52.25538799,42.70462148,61.80615449,80.25162123,67.85518222,92.64806024,,,,9.2,,,,,1,,,,,0.137607626,4475,32520,0.120098679,0.155116573,0.100759572,0.087563492,0.113955652,0.035516605,0.025729578,0.045303633,0.015682657,0.010630915,0.020734398,0.798221315,32850,41154,0.77154947,0.82489316,,,,,,,0.804464286,0.713957129,0.894971442,0.763022295,0.7290834,0.79696119,0.853063004,0.818756177,0.887369832,0.232,,41154,0.205118775,0.258881225,75.65470707,,,75.06826699,76.24114715,,,,,,,69.84719116,67.18977598,72.50460633,74.90873017,73.99958261,75.81787774,76.38738108,75.50061612,77.27414605,,,,485.6694856,1483,255408,459.9754404,511.3635307,,,,,,,774.1820845,640.0918194,908.2723496,540.9105537,498.6723508,583.1487565,435.0123426,399.5315283,470.4931569,,,,39.8735716,41,102825,28.6139634,54.09300225,,,,,,,,,,29.77815276,17.64842057,47.0623195,51.09247738,29.76325089,81.8040057,,,,5.059215822,44,8697,3.676033961,6.791761099,,,,,,,,,,5.094762584,3.297061718,7.520874607,,,,,,,,,,0.126,,,0.109,0.144,0.175,,,0.152,0.199,0.124,,,0.107,0.143,186.3,139,74599,,,0.15,13700,,,,0.088573239,7687.537112,86793,,,8.727780525,24,274984,5.592053667,12.9862456,,,,,,,,,,9.009550123,4.65536602,15.73787093,10.1042421,5.221009337,17.65007751,,,,0.352,,,0.339,0.365,0.247691682,12796,51661,0.221478916,0.273904448,0.109311741,2592,23712,0.084290464,0.134333018,0.001185966,108,91065,,,843.1944444,0.938643617,882.325,940,,,0.095410115,449,4706,0.047038774,0.143781455,2.505059322,,,,,,,2.356518111,2.309734238,3.070547283,2.656444779,,,,,,,2.473377355,2.43832265,3.287623047,0.075532928,,,,,-7080.550667,,,,,0.679217722,39523,58189,0.603044377,0.755391066,67905,,,61592.48936,74217.51064,,,,152740,65766.04255,239713.9575,38503,24996.2766,52009.7234,62810,58321.65957,67298.34043,75243,68960.2766,81525.7234,,,,,,0.686531175,9965,14515,,,42.15655921,,,,,0.219748178,,67905,,,4.810776139,30,6236,,,5.435187716,35,643952,3.78580739,7.559030389,,,,,,,,,,4.588478985,2.508564159,7.698688063,5.968661019,3.476964995,9.556404484,,,,18.23943043,81,459103,14.41751287,22.76363465,17.6430997,,,,,,,,,,11.91687621,7.784499187,17.46098473,24.59033949,17.79615062,33.12302592,,,,16.55401947,76,459103,13.04268451,20.71982387,,,,,,,,,,11.35986695,7.351506931,16.76940456,22.92903464,16.78693514,30.58411901,,,,18.16905608,117,643952,14.87678561,21.46132654,,,,,,,,,,18.68166444,14.14931021,24.20426316,19.31037388,14.54721631,25.1351059,,,,29.56521739,,9200,,,67,205,0.5240745,34188,65235,,,0.594,,,,,96.96292246,,,,,0.671413979,23006,34265,0.649993744,0.692834215,0.118480845,3937,33229,0.10035457,0.13660712,0.762760835,26136,34265,0.741022888,0.784498781,91065,,,,,0.249283479,22701,91065,,,0.170449679,15522,91065,,,0.056168671,5115,91065,,,0.009147312,833,91065,,,0.014242574,1297,91065,,,0.001120079,102,91065,,,0.492823807,44879,91065,,,0.423565585,38572,91065,,,0.028234797,2406,85214,0.020570738,0.035898856,0.506275737,46104,91065,,,0.277412149,25333,91319,, -48,471,48471,TX,Walker County,2024,1,7617.60696,1004,210699,6883.119034,8352.094885,0,,,,2,,,,2,9543.388648,7614.634617,11472.14268,,5651.478555,4304.235171,6998.721938,,7883.631439,6893.728985,8873.533893,,,,,2,,0.217,,,0.188,0.248,4.218628674,,,3.421197393,5.134129439,5.403749612,,,4.385720517,6.526758097,0.084875847,376,4430,0.076668812,0.093082881,0,,,,,,,0.146414343,0.124546568,0.168282117,0.063021316,0.048521786,0.077520847,0.067324955,0.056919725,0.077730185,,,,,,,0.199,,,0.165,0.239,0.385,,,0.308,0.466,7.1,0.062780047,0.144,,,0.289,,,0.24,0.345,0.742905759,56758,76400,,,0.194710337,,,0.155725478,0.237164286,0.182926829,15,82,0.12872996,0.243066798,593.8,463,77977,,,13.25717879,253,19084,11.62357428,14.8907833,,,,,,,15.71144058,12.27076545,19.81784446,19.87979658,15.90127121,24.55138705,9.415210796,7.570941326,11.57289254,,,,,,,0.200603683,9969,49695,0.173199427,0.228007938,0.00026931,21,77977,,,3713.190476,0.000380373,30,78870,,,2629,0.000621276,49,78870,,,1609.591837,4161,,,,,,,6693,3280,3931,0.33,,,,,,0.44,0.35,0.18,0.34,0.41,,,,,,0.5,0.27,0.3,0.43,0.852938881,43708,51244,0.833428141,0.87244962,0.452553406,9872,21814,0.401472704,0.503634108,0.046875652,1123,23957,,,0.212,2357,,0.134553192,0.289446809,,,,,,,0.400565885,0.271415396,0.529716374,0.276183892,0.179341003,0.373026781,0.091345193,0.054675354,0.128015032,4.829799454,100909,20893,3.814131393,5.845467515,0.315337995,3382,10725,0.257337496,0.373338495,6.155661285,48,77977,,,54.3719093,200,367837,46.83634713,61.90747147,,,,,,,27.32694912,17.32294161,41.00384109,29.79471442,18.19938561,46.01551992,76.01801191,64.12689217,87.90913166,,,,9.3,,,,,1,,,,,0.212747058,4790,22515,0.17766589,0.247828225,0.191867259,0.155203046,0.228531472,0.028425494,0.016481892,0.040369096,0.011992005,0.003422334,0.020561677,0.809703599,22947,28340,0.783611741,0.835795458,,,,,,,0.805441406,0.707300152,0.903582659,0.729963483,0.537858236,0.922068729,0.835458211,0.791025153,0.879891268,0.366,,28340,0.308845757,0.423154243,77.13499692,,,76.45537342,77.81462042,,,,,,,74.70830985,73.05230331,76.36431639,79.14408361,76.75915984,81.52900739,76.92390493,76.06148425,77.7863256,,,,409.3415742,1004,210699,383.5048412,435.1783071,,,,,,,490.1325329,424.4196472,555.8454187,365.2336587,293.6036103,436.8637071,418.5244461,385.0415936,452.0072987,,,,55.73553489,32,57414,38.1230646,78.68194531,,,,,,,101.6657543,54.13273239,173.8515361,,,,59.04712699,33.75053494,95.88883492,,,,5.221339387,23,4405,3.30988128,7.834572734,,,,,,,,,,,,,,,,,,,,,,0.132,,,0.116,0.151,0.179,,,0.157,0.203,0.132,,,0.114,0.152,993.7,694,69837,,,0.144,11050,,,,0.062780047,4260.316775,67861,,,8.515902327,19,223112,5.127129498,13.29863637,,,,,,,,,,,,,13.60217635,7.923768979,21.778402,,,,0.372,,,0.36,0.385,0.234245654,9055,38656,0.199692463,0.268798846,0.088116341,1024,11621,0.059520596,0.116712086,0.000570559,45,78870,,,1752.666667,0.837950902,836.275,998,,,0.150528469,883,5866,0.079673328,0.221383611,2.552960407,,,,,,,2.156202466,2.435645997,2.826651778,2.658114783,,,,,,,2.274392372,2.473034642,3.040041445,0.036693581,,,,,-4319.648,,,,,0.739091719,36520,49412,0.651593873,0.826589564,53301,,,45924.48936,60677.51064,,,,75498,59135.2766,91860.7234,38060,27887.06383,48232.93617,40711,34919.17021,46502.82979,51224,47246.80851,55201.19149,,,,,,0.564192608,9479,16801,,,29.53395854,,,,,0.360706178,,53301,,,6.754583467,21,3109,,,3.529273362,18,510020,2.091671068,5.577773473,,,,,,,,,,,,,3.832071653,1.912956362,6.856634714,,,,11.6274754,45,367837,8.4148616,15.66213306,12.23367959,,,,,,,,,,,,,17.10409989,11.77367535,24.02051548,,,,8.155786395,30,367837,5.502674832,11.6428922,,,,,,,,,,,,,11.62058781,7.445529877,17.29051353,,,,14.50923493,74,510020,11.39287013,18.21501578,,,,,,,11.18298809,5.954470177,19.12325022,,,,18.81198811,14.13214445,24.54556382,,,,17.61904762,,4200,,,25,49,0.411215604,23612,57420,,,0.46,,,,,48.54689635,,,,,0.548674366,13493,24592,0.514438951,0.58290978,0.179596587,4167,23202,0.14340092,0.215792253,0.840923878,20680,24592,0.814132045,0.867715711,78870,,,,,0.143527323,11320,78870,,,0.14427539,11379,78870,,,0.227437556,17938,78870,,,0.007861037,620,78870,,,0.01186763,936,78870,,,0.001065044,84,78870,,,0.187333587,14775,78870,,,0.557753265,43990,78870,,,0.023429496,1738,74180,0.014330341,0.032528651,0.415722074,32788,78870,,,0.431740838,32985,76400,, -48,473,48473,TX,Waller County,2024,1,8259.533685,723,164585,7421.982995,9097.084374,0,,,,2,,,,2,13523.7841,10504.9249,16542.6433,,7350.472619,5984.544424,8716.400815,,8065.600309,6829.164399,9302.036219,,,,,2,,0.183,,,0.157,0.211,3.651051657,,,2.987500114,4.404352403,5.139468985,,,4.06217075,6.266688216,0.076716849,372,4849,0.069225797,0.084207901,0,,,,0.097744361,0.047273477,0.148215245,0.110932476,0.086251768,0.135613183,0.068886861,0.058284436,0.079489287,0.073369565,0.061455543,0.085283588,,,,,,,0.155,,,0.125,0.188,0.377,,,0.29,0.469,7.4,0.110550423,0.109,,,0.259,,,0.213,0.311,0.286350671,16263,56794,,,0.189848048,,,0.148724771,0.235647655,0.176470588,15,85,0.123652529,0.235388397,458.3,274,59781,,,13.3321561,302,22652,11.82848453,14.83582768,,,,,,,3.573607601,2.564482513,4.848002228,33.3000333,28.68488415,37.91518246,11.053316,8.229919774,14.53306922,,,,,,,0.237628111,11361,47810,0.213798324,0.261457899,0.000117094,7,59781,,,8540.142857,0.00014541,9,61894,,,6877.111111,0.00029082,18,61894,,,3438.555556,4189,,,,,,,6478,2965,3871,0.32,,,,,,0.25,0.33,0.23,0.33,0.42,,,,,,0.45,0.37,0.32,0.44,0.866969439,27489,31707,0.852100021,0.881838857,0.560005978,7494,13382,0.488181253,0.631830704,0.042946955,1093,25450,,,0.182,2598,,0.124808511,0.239191489,,,,,,,0.149570201,0.025519633,0.273620768,0.186762779,0.124093546,0.249432012,0.043783209,0.012861323,0.074705096,4.385578953,153697,35046,3.818646202,4.952511704,0.223838081,2986,13340,0.168827646,0.278848516,4.014653485,24,59781,,,70.780609,196,276912,60.87132374,80.68989426,,,,,,,58.81533533,41.62123179,80.72864294,39.31772189,27.22866538,54.94257542,102.7731771,84.4608655,121.0854886,,,,10.1,,,,,1,,,,,0.144048765,2245,15585,0.111664367,0.176433163,0.106583279,0.075928717,0.13723784,0.042669233,0.026408164,0.058930302,0.006095605,0,0.012666201,0.791725338,19117,24146,0.764650568,0.818800107,,,,,,,0.79021197,0.691386785,0.889037155,0.786315323,0.694768909,0.877861738,0.800666297,0.741576916,0.859755677,0.525,,24146,0.462076275,0.587923725,76.93247053,,,76.14104804,77.72389302,,,,,,,72.94205127,70.59757725,75.28652529,79.00376522,76.94511822,81.06241223,76.83968512,75.78465577,77.89471447,,,,427.5693892,723,164585,395.5695749,459.5692035,,,,,,,658.6849401,549.1906333,768.179247,377.9433556,314.5537492,441.3329619,417.4966214,374.4878415,460.5054013,,,,41.60808058,29,69698,27.86558458,59.75614428,,,,,,,,,,48.49996536,26.51538238,81.37470076,,,,,,,6.638115632,31,4670,4.510277512,9.422275268,,,,,,,,,,9.980988593,6.178389251,15.2570013,,,,,,,,,,0.113,,,0.098,0.131,0.165,,,0.143,0.19,0.113,,,0.096,0.132,161.3,80,49610,,,0.109,6050,,,,0.110550423,4776.331003,43205,,,11.01583381,19,172479,6.632251558,17.20258905,,,,,,,,,,,,,21.95962175,12.55182121,35.66104994,,,,0.357,,,0.345,0.369,0.274872373,9261,33692,0.245085139,0.304659607,0.153238866,2271,14820,0.116302696,0.190175037,0.000113097,7,61894,,,8842,0.903394256,692,766,,,0.049377839,250,5063,0.017286852,0.081468827,2.663543257,,,,,,,2.390002903,2.447540307,3.175999322,2.953315133,,,,,,,2.600821377,2.773014167,3.457938605,0.114100189,,,,,-14265.72967,,,,,0.705891196,42261,59869,0.574147323,0.837635068,75223,,,68581.6383,81864.3617,188825,78800.48936,298849.5106,,,,36537,33704.82979,39369.17021,68767,58984.87234,78549.12766,108508,98781.87234,118234.1277,,,,,,0.682113173,5991,8783,,,57.30306034,,,,,0.255586722,,75223,,,3.914988814,14,3576,,,4.258909772,16,375683,2.434334919,6.916202649,,,,,,,,,,,,,,,,,,,16.56489954,39,276912,11.66321797,22.83253198,14.08389669,,,,,,,,,,,,,21.74212652,14.0703579,32.09566776,,,,11.5560178,32,276912,7.904307618,16.31364913,,,,,,,,,,,,,19.53539729,12.38376612,29.31268773,,,,18.89891212,71,375683,14.76020716,23.83840608,,,,,,,20.13175113,11.9313516,31.8168461,14.693045,8.55924017,23.52498839,21.22863868,14.70144941,29.66489476,,,,9.285714286,,5600,,,21,31,0.619961822,22734,36670,,,0.505,,,,,23.13054428,,,,,0.694488189,12348,17780,0.660316959,0.728659419,0.105446187,1789,16966,0.076618521,0.134273852,0.828908886,14738,17780,0.786249763,0.87156801,61894,,,,,0.232655831,14400,61894,,,0.119026077,7367,61894,,,0.244821792,15153,61894,,,0.014686399,909,61894,,,0.022215401,1375,61894,,,0.001567196,97,61894,,,0.319691731,19787,61894,,,0.396516625,24542,61894,,,0.04870449,2626,53917,0.038994449,0.058414531,0.502730475,31116,61894,,,0.773602845,43936,56794,, -48,475,48475,TX,Ward County,2024,1,11824.89889,192,33151,9577.395833,14072.40195,0,,,,2,,,,2,,,,2,9297.447587,6922.560414,12224.42654,,15258.19036,10837.72819,19678.65253,,,,,2,,0.234,,,0.203,0.266,4.260832856,,,3.429649336,5.202886463,5.310517421,,,4.248734377,6.461470111,0.089773614,115,1281,0.074119425,0.105427803,0,,,,,,,,,,0.083224968,0.063701763,0.102748172,0.098214286,0.070655754,0.125772817,,,,,,,0.176,,,0.146,0.21,0.399,,,0.317,0.484,7.9,0.02632793,0.127,,,0.317,,,0.266,0.372,0.857007901,9979,11644,,,0.178480422,,,0.142125906,0.219456597,0.118644068,7,59,0.062661804,0.189508474,375.2,42,11194,,,40.96638656,117,2856,33.54319275,48.38958036,,,,,,,,,,35.71428571,27.56353172,45.52078891,50.82742317,36.78405817,68.46420545,,,,,,,0.231864336,2215,9553,0.20565157,0.258077102,8.93336E-05,1,11194,,,11194,,0,10964,,,,0.000182415,2,10964,,,5482,2240,,,,,,,,660,2270,0.22,,,,,,,,0.21,0.22,0.22,,,,,,,,0.2,0.22,0.802199332,5763,7184,0.773430261,0.830968403,0.472081218,1488,3152,0.378624033,0.565538404,0.03671357,227,6183,,,0.197,616,,0.130276596,0.263723404,,,,,,,0.386904762,0,0.818286812,0.250378597,0.137720633,0.363036561,0.112359551,0.021986028,0.202733073,3.977821631,135055,33952,3.146645486,4.808997775,0.233861145,768,3284,0.133710593,0.334011697,6.253350009,7,11194,,,92.33768232,54,58481,69.36690886,120.4806457,,,,,,,,,,68.21705426,42.75126472,103.28144,115.9265204,75.72705197,169.8592121,,,,7.1,,,,,0,,,,,0.141463415,580,4100,0.093929789,0.188997041,0.083743842,0.045370288,0.122117396,0.048780488,0.016206992,0.081353983,0.012195122,0,0.024694325,0.842721142,4249,5042,0.787008112,0.898434173,,,,,,,,,,0.809970864,0.759863276,0.860078453,0.933119744,0.876707058,0.989532429,0.302,,5042,0.219968748,0.384031252,74.32265453,,,72.42604591,76.21926315,,,,,,,,,,76.57997932,73.93878719,79.22117144,71.07251174,67.95536418,74.18965929,,,,555.3167661,192,33151,475.371788,635.2617443,,,,,,,,,,473.6385509,376.1373771,588.6894726,681.6791666,541.9925823,821.365751,,,,67.23141052,10,14874,32.2400746,123.6409577,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.135,,,0.117,0.153,0.175,,,0.153,0.198,0.134,,,0.116,0.154,159,14,8804,,,0.127,1440,,,,0.02632793,280.6030779,10658,,,,,,,,,,,,,,,,,,,,,,,,,,0.354,,,0.341,0.366,0.267941827,1695,6326,0.235771615,0.30011204,0.164152618,555,3381,0.12245049,0.205854745,0.000912076,10,10964,,,1096.4,0.959899329,143.025,149,,,,,,,,2.489476446,,,,,,,,2.416417227,2.681178643,2.77376162,,,,,,,,2.641588169,3.069813339,0.010190334,,,,,-793.0774,,,,,0.545384324,38833,71203,0.416890591,0.673878056,60775,,,51753.04255,69796.95745,,,,,,,46166,21618.93617,70713.06383,70075,55408.95745,84741.04255,82308,57469.02128,107146.9787,,,,,,0.325541126,752,2310,,,31.40313813,,,,,0.2778116,,60775,,,2.304147465,2,868,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,35.45145596,29,81802,23.74239644,50.91420435,,,,,,,,,,38.16879589,22.23473017,61.11193968,31.31458633,15.01656133,57.5886392,,,,22.85714286,,1400,,,11,21,0.509090909,4060,7975,,,0.448,,,,,47.34180587,,,,,0.804409006,3430,4264,0.758348687,0.850469324,0.068948891,286,4148,0.031584502,0.10631328,0.768761726,3278,4264,0.711353194,0.826170258,10964,,,,,0.288672018,3165,10964,,,0.13389274,1468,10964,,,0.041134622,451,10964,,,0.017147027,188,10964,,,0.00985042,108,10964,,,0.001276906,14,10964,,,0.570959504,6260,10964,,,0.358901861,3935,10964,,,0.048000763,503,10479,0.026018832,0.069982695,0.488325429,5354,10964,,,0.213156991,2482,11644,, -48,477,48477,TX,Washington County,2024,1,8534.034217,517,96507,7301.334242,9766.734192,0,,,,2,,,,2,16345.0664,12112.58999,20577.54282,,6660.386652,4493.734906,9508.116088,,7213.456271,5766.353874,8660.558667,,,,,2,,0.172,,,0.146,0.2,3.660758563,,,2.862884473,4.57332609,5.446537679,,,4.364512369,6.631449116,0.083430345,215,2577,0.072753484,0.094107207,0,,,,,,,0.169491525,0.135643674,0.203339376,0.079081633,0.060191004,0.097972262,0.053514377,0.041047831,0.065980923,,,,,,,0.161,,,0.128,0.197,0.37,,,0.291,0.458,7.6,0.072772157,0.119,,,0.243,,,0.197,0.291,0.573188102,20523,35805,,,0.174864607,,,0.140786257,0.216886708,0.230769231,9,39,0.148393644,0.320454524,468.1,168,35891,,,15.15607749,151,9963,12.73864466,17.57351031,,,,,,,16.52523448,11.63529012,22.77785893,31.42488162,24.6320908,39.51207068,7.296311309,5.11024674,10.10117035,,,,,,,0.199797634,5134,25696,0.177159336,0.222435932,0.000612967,22,35891,,,1631.409091,0.000497801,18,36159,,,2008.833333,0.000802013,29,36159,,,1246.862069,2704,,,,,,,5691,,2392,0.42,,,,,,,0.3,0.36,0.43,0.36,,,,,,0.28,0.26,0.25,0.37,0.897251498,21709,24195,0.876447313,0.918055683,0.576625173,4169,7230,0.499635601,0.653614745,0.039722077,606,15256,,,0.186,1388,,0.118085106,0.253914894,,,,,,,0.413305025,0.152348181,0.674261868,0.113004484,0.031359934,0.194649034,0.025327025,0.002680983,0.047973067,4.527954191,130473,28815,3.686424497,5.369483884,0.196225917,1487,7578,0.124452952,0.267998882,15.0455546,54,35891,,,65.84315822,117,177695,53.91224204,77.7740744,,,,,,,87.87346221,57.40186297,128.754982,,,,72.57985997,57.72491655,90.09074353,,,,9.4,,,,,1,,,,,0.146021021,1945,13320,0.111348378,0.180693665,0.104483283,0.078220234,0.130746331,0.036036036,0.016509351,0.055562721,0.015765766,0.005068551,0.026462981,0.764005132,12506,16369,0.727838529,0.800171734,,,,,,,0.782347358,0.679087561,0.885607156,0.790932812,0.697286779,0.884578844,0.797340966,0.7317509,0.862931032,0.214,,16369,0.165704246,0.262295754,77.46247551,,,76.43620094,78.48875008,,,,,,,70.63398562,67.59492113,73.67305012,86.50027764,75.65757281,97.34298248,78.51076095,77.31848174,79.70304016,,,,386.7471361,517,96507,350.471355,423.0229173,,,,,,,686.3897132,559.7032203,813.076206,309.6218035,219.1068159,424.9801159,345.3049913,303.4836165,387.1263662,,,,77.5442537,29,37398,51.93260372,111.3664833,,,,,,,134.5713901,64.5322123,247.4815777,95.52923195,45.8099799,175.6816588,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.112,,,0.096,0.131,0.171,,,0.146,0.197,0.104,,,0.088,0.121,189.8,58,30552,,,0.119,4230,,,,0.072772157,2453.731582,33718,,,12.08807558,13,107544,6.436391143,20.67097738,,,,,,,,,,,,,,,,,,,0.349,,,0.335,0.362,0.222545734,4051,18203,0.195141479,0.24994999,0.148698413,1171,7875,0.111762243,0.185634583,0.000746702,27,36159,,,1339.222222,0.936947368,356.04,380,,,,,,,,2.878731244,,,,,,,2.433928411,2.735003438,3.295874864,3.091973404,,,,,,,2.691260333,3.02819148,3.414878777,0.031292445,,,,,-4103.143,,,,,0.720667608,43395,60215,0.61690997,0.824425246,66911,,,57986.74468,75835.25532,,,,,,,51289,13945.34043,88632.65957,71921,53485.08511,90356.91489,79939,74059,85819,,,,,,0.529994496,2889,5451,,,38.71542474,,,,,0.261989807,,66911,,,6.188757091,12,1939,,,,,,,,,,,,,,,,,,,,,,,,,,8.420592278,17,177695,4.712941576,13.8884864,9.566954613,,,,,,,,,,,,,12.87018683,7.036250901,21.5939866,,,,11.25524072,20,177695,6.874993436,17.38280644,,,,,,,,,,,,,14.1619239,8.094763145,22.99807716,,,,21.81677144,54,247516,16.38943017,28.46615427,,,,,,,,,,,,,24.7148289,17.57465937,33.78598471,,,,16.4516129,,3100,,,33,18,0.663885714,17427,26250,,,0.595,,,,,42.68198455,,,,,0.734912305,10643,14482,0.696513298,0.773311312,0.116949396,1627,13912,0.08595526,0.147943533,0.814873636,11801,14482,0.786304657,0.843442616,36159,,,,,0.210625294,7616,36159,,,0.23540474,8512,36159,,,0.158964573,5748,36159,,,0.006609696,239,36159,,,0.01747836,632,36159,,,0.000995603,36,36159,,,0.17937443,6486,36159,,,0.628335961,22720,36159,,,0.019428066,659,33920,0.009470966,0.029385166,0.512209962,18521,36159,,,0.514173998,18410,35805,, -48,479,48479,TX,Webb County,2024,1,8126.442661,3025,789297,7761.132856,8491.752466,0,,,,2,,,,2,,,,2,8313.226045,7936.513682,8689.938409,,6475.500397,4148.97529,9635.031298,1,,,,2,,0.281,,,0.234,0.33,4.659128648,,,3.696716983,5.794074631,5.128839693,,,4.029080187,6.350013099,0.081821821,2657,32473,0.078840609,0.084803034,0,,,,0.194805195,0.106342237,0.283268153,,,,0.081412826,0.078413508,0.084412143,0.091133005,0.063137967,0.119128043,,,,,,,0.158,,,0.12,0.199,0.443,,,0.359,0.528,6.4,0.096706214,0.16,,,0.361,,,0.3,0.427,0.92426829,246885,267114,,,0.168625298,,,0.132028673,0.210005221,0.218487395,26,119,0.172284255,0.267525926,482.6,1293,267945,,,44.14575722,3649,82658,42.71337767,45.57813676,,,,,,,,,,45.27061519,43.79911429,46.74211608,7.138607971,3.688622908,12.46971151,,,,,,,0.29685036,70027,235900,0.277786531,0.31591419,0.000306033,82,267945,,,3267.621951,0.000321159,86,267780,,,3113.72093,0.000522817,140,267780,,,1912.714286,3159,,,,,,,,3422,1584,0.27,,,,,,0.28,,0.27,0.24,0.36,,,,,,0.49,0.08,0.36,0.28,0.6912642,104056,150530,0.679305971,0.703222428,0.535920384,37426,69835,0.50684127,0.564999498,0.041171058,4832,117364,,,0.272,22371,,0.199319149,0.344680851,0.141242938,0,0.408646012,0.497005988,0.176872828,0.817139148,0.073979592,0,0.281817079,0.285801445,0.263683822,0.307919068,0.22625,0.121990357,0.330509643,5.093475424,117099,22990,4.678502329,5.50844852,0.29231692,24856,85031,0.261116206,0.323517633,3.620145926,97,267945,,,41.87964591,575,1372982,38.45650206,45.30278976,,,,,,,,,,41.89768265,38.39290959,45.40245572,42.86501602,26.53412052,65.52373035,,,,10.7,,,,,1,,,,,0.239853365,18320,76380,0.224899793,0.254806937,0.145810884,0.132418229,0.159203539,0.10624509,0.095747629,0.116742552,0.016561927,0.011974792,0.021149062,0.790966681,87526,110657,0.778067701,0.803865661,,,,,,,,,,0.792052409,0.778890371,0.805214446,0.754545455,0.707579986,0.801510923,0.229,,110657,0.210048202,0.247951799,76.78852682,,,76.42070379,77.15634985,,,,,,,,,,76.34449626,75.97133379,76.71765873,83.76465721,80.77099126,86.75832315,,,,421.2598441,3025,789297,406.1694467,436.3502416,,,,,,,,,,436.2107404,420.2712344,452.1502465,268.5755003,210.1437881,338.2263936,,,,46.1144147,181,392502,39.3962061,52.83262331,,,,,,,,,,44.95729057,38.2188695,51.69571165,,,,,,,4.864718777,162,33301,4.115590305,5.613847249,,,,,,,,,,4.835945152,4.081879959,5.590010345,,,,,,,,,,0.149,,,0.126,0.175,0.168,,,0.143,0.194,0.168,,,0.145,0.193,260.2,538,206744,,,0.16,42720,,,,0.096706214,24205.95217,250304,,,13.37747088,110,822278,10.87750695,15.87743481,,,,,,,,,,13.76716913,11.17066605,16.3636722,,,,,,,0.373,,,0.354,0.392,0.392987654,60223,153244,0.366774888,0.41920042,0.122818069,10723,87308,0.096605303,0.149030835,0.000765554,205,267780,,,1306.243902,0.95634686,4689.925,4904,,,0.094422624,1803,19095,0.072745394,0.116099853,2.883386813,,,,,,,,2.876356383,3.832294792,3.239801417,,,,,,,,3.234210791,3.815483296,0.116774178,,,,,-16456.24933,,,,,0.706666667,33284,47100,0.660461309,0.752872025,56289,,,52066.3617,60511.6383,107760,27253.44681,188266.5532,109826,87454.59575,132197.4043,97596,27744.93617,167447.0638,58975,56812.44681,61137.55319,77743,69561.04255,85924.95745,,,,,,0.826450312,50830,61504,,,69.16757072,,,,,0.258451918,,56289,,,3.956728543,94,23757,,,4.336703771,83,1913896,3.454160346,5.375996804,,,,,,,,,,4.490621173,3.571524285,5.574044929,,,,,,,6.630026692,88,1372982,5.295829839,8.198130679,6.409406678,,,,,,,,,,6.685381309,5.301091597,8.320535739,,,,,,,6.409406678,88,1372982,5.140531578,7.89656829,,,,,,,,,,6.486890757,5.181497938,8.021140878,,,,,,,9.50939863,182,1913896,8.127826924,10.89097034,,,,,,,,,,9.693170094,8.265146865,11.12119332,,,,,,,14.71810089,,33700,,,222,274,0.493591687,68397,138570,,,0.51,,,,,154.7128716,,,,,0.632762189,49227,77797,0.61769152,0.647832858,0.155077188,11512,74234,0.140521167,0.16963321,0.810159775,63028,77797,0.797650886,0.822668664,267780,,,,,0.310064232,83029,267780,,,0.102136082,27350,267780,,,0.004343118,1163,267780,,,0.00571738,1531,267780,,,0.006367167,1705,267780,,,0.000582568,156,267780,,,0.952916573,255172,267780,,,0.035939951,9624,267780,,,0.184501332,45146,244692,0.175341077,0.193661588,0.502367615,134524,267780,,,0.058596704,15652,267114,, -48,481,48481,TX,Wharton County,2024,1,10502.16357,764,115508,9398.650993,11605.67614,0,,,,2,,,,2,16804.67239,12836.78385,20772.56092,,9871.744563,8273.655947,11469.83318,,9424.897964,7759.767483,11090.02844,,,,,2,,0.218,,,0.19,0.251,4.150090109,,,3.297585035,5.019570888,5.290903973,,,4.180426987,6.396843083,0.093398158,365,3908,0.084274768,0.102521548,0,,,,,,,0.173814898,0.138526139,0.209103658,0.085583524,0.073853539,0.097313509,0.079610073,0.0644885,0.094731647,,,,,,,0.174,,,0.143,0.207,0.391,,,0.308,0.473,7.4,0.047808768,0.138,,,0.293,,,0.242,0.344,0.481501083,20016,41570,,,0.170756254,,,0.136659799,0.209056774,0.083333333,6,72,0.039085331,0.144029711,385.9,161,41721,,,35.43078412,366,10330,31.80087049,39.06069776,,,,,,,34.83768804,25.31311747,46.76797014,50.67009363,44.69213043,56.64805683,12.35632184,8.942331383,16.64388443,,,,,,,0.235746392,7972,33816,0.211916605,0.25957618,0.0003835,16,41721,,,2607.5625,0.000549924,23,41824,,,1818.434783,0.000597743,25,41824,,,1672.96,4464,,,,,,,8211,5607,3389,0.27,,,,,,,0.23,0.21,0.28,0.36,,,,,,,0.27,0.3,0.38,0.812869795,22119,27211,0.788809893,0.836929698,0.525892944,5433,10331,0.456201446,0.595584441,0.038008965,814,21416,,,0.211,2217,,0.127595745,0.294404255,,,,,,,0.38367052,0.234752309,0.532588732,0.198977854,0.132192303,0.265763404,0.070326959,0.019899767,0.120754151,5.101554192,124733,24450,4.275347163,5.927761222,0.226742559,2430,10717,0.170353037,0.28313208,14.38124685,60,41721,,,82.95412589,173,208549,70.5926305,95.31562128,,,,,,,64.692899,37.68599768,103.5795982,66.56212277,50.67017185,85.86028877,106.8505524,86.64860001,130.3486125,,,,9.5,,,,,1,,,,,0.176721312,2695,15250,0.145569725,0.207872898,0.110854504,0.084244245,0.137464762,0.054754098,0.035213831,0.074294366,0.020983607,0.010621267,0.031345946,0.831695332,14894,17908,0.804826839,0.858563824,,,,,,,0.699446835,0.593900645,0.804993024,0.833225598,0.779767869,0.886683327,0.851069059,0.803600754,0.898537364,0.319,,17908,0.274117053,0.363882947,74.63356512,,,73.76253797,75.50459227,,,,,,,69.37372909,66.98321879,71.76423938,76.14126255,74.49116759,77.7913575,75.28102118,73.99845533,76.56358703,,,,530.4944659,764,115508,491.1428732,569.8460586,,,,,,,845.2380994,700.4878028,989.9883959,486.0820994,422.1043307,550.0598681,488.787677,434.898464,542.6768901,,,,52.73149125,25,47410,34.12504081,77.84208331,,,,,,,,,,53.26231691,29.11900429,89.36511745,,,,,,,6.818181818,27,3960,4.493224781,9.920096577,,,,,,,,,,,,,,,,,,,,,,0.129,,,0.113,0.148,0.176,,,0.153,0.2,0.127,,,0.109,0.146,216.9,74,34122,,,0.138,5760,,,,0.047808768,1973.545961,41280,,,17.60535203,22,124962,11.03318039,26.65471454,,,,,,,,,,,,,22.26758211,11.50598461,38.89698469,,,,0.374,,,0.361,0.387,0.281043508,6550,23306,0.250064785,0.312022232,0.140625,1557,11072,0.106071809,0.175178192,0.000789021,33,41824,,,1267.393939,0.948511905,557.725,588,,,,,,,,2.821865406,,,,,,,2.459460721,2.635579805,3.328079146,3.038539697,,,,,,,2.532686741,2.91448353,3.451766336,0.077645093,,,,,-4835.75054,,,,,0.83910562,41018,48883,0.667642584,1.010568655,57487,,,50709.80851,64264.19149,,,,,,,35982,26202.25532,45761.74468,47265,41547.04255,52982.95745,74598,62067.10638,87128.89362,,,,,,0.687999002,5515,8016,,,42.80378326,,,,,0.33444083,,57487,,,5.248425472,15,2858,,,4.798300031,14,291770,2.623275277,8.050732125,,,,,,,,,,,,,,,,,,,13.80170514,32,208549,9.311952504,19.70279228,15.34411577,,,,,,,,,,,,,19.05360759,11.47151644,29.75456846,,,,17.26213024,36,208549,12.0901838,23.89806448,,,,,,,,,,12.4098873,6.194971025,22.20471634,24.23414591,15.18741022,36.69078815,,,,23.64876444,69,291770,18.40015031,29.92902495,,,,,,,26.96871629,12.93254772,49.59642946,20.42867532,13.22036155,30.1567547,26.49171744,18.34628445,37.0195198,,,,18.13953488,,4300,,,59,19,0.591425547,16761,28340,,,0.545,,,,,39.33226185,,,,,0.667546871,10112,15148,0.633625713,0.701468029,0.1122477,1635,14566,0.082889607,0.141605793,0.805188804,12197,15148,0.775090673,0.835286934,41824,,,,,0.254566756,10647,41824,,,0.178366488,7460,41824,,,0.120433244,5037,41824,,,0.008272762,346,41824,,,0.006885999,288,41824,,,0.000765111,32,41824,,,0.441182096,18452,41824,,,0.423321538,17705,41824,,,0.051205363,1986,38785,0.035629504,0.066781222,0.503442999,21056,41824,,,0.475294684,19758,41570,, -48,483,48483,TX,Wheeler County,2024,1,12446.16446,110,13619,8527.866237,16364.46268,0,,,,2,,,,2,,,,2,,,,2,12794.8826,8358.042115,18747.46753,,,,,2,,0.216,,,0.189,0.242,4.337575993,,,3.770188158,4.907881636,5.687881363,,,5.003741451,6.366590289,0.070886076,28,395,0.045577222,0.09619493,0,,,,,,,,,,,,,0.072519084,0.041115149,0.103923019,,,,,,,0.203,,,0.17,0.233,0.39,,,0.347,0.432,7.1,0.031033146,0.162,,,0.292,,,0.255,0.327,0.398597194,1989,4990,,,0.166363906,,,0.148231972,0.184806311,0.095238095,2,21,0.018632442,0.225063028,182.7,9,4927,,,22.36719478,24,1073,14.33108374,33.28061286,,,,,,,,,,26.6075388,13.74850357,46.47801563,22.68431002,11.72131401,39.62492448,,,,,,,0.281733746,1092,3876,0.251946512,0.31152098,0.000202963,1,4927,,,4927,0.00020803,1,4807,,,4807,0.00062409,3,4807,,,1602.333333,2829,,,,,,,,,2670,0.26,,,,,,,,,0.27,0.28,,,,,,,,0.14,0.29,0.858053302,2962,3452,0.817529848,0.898576757,0.442533229,566,1279,0.361740926,0.523325532,0.039215686,78,1989,,,0.218,253,,0.146510638,0.289489362,,,,,,,,,,0.290388548,0.13458409,0.446193006,0.19126506,0.073334851,0.30919527,3.915553952,108500,27710,2.985761981,4.845345922,0.184791496,226,1223,0.089094192,0.280488801,20.29632637,10,4927,,,117.7486459,30,25478,79.44451692,168.0935136,,,,,,,,,,,,,165.1951011,110.6337519,237.2477211,,,,6.4,,,,,1,,,,,0.106796117,220,2060,0.071985692,0.141606541,0.066990291,0.026090227,0.107890356,0.040291262,0.010651884,0.06993064,0.001941748,0,0.014399869,0.784927281,1781,2269,0.754169672,0.815684889,,,,,,,,,,,,,0.815141956,0.776768218,0.853515694,0.327,,2269,0.24667382,0.40732618,72.4489896,,,69.60782903,75.29015018,,,,,,,,,,,,,71.9711767,68.55483042,75.38752299,,,,582.4127575,110,13619,466.1734321,698.6520828,,,,,,,,,,,,,600.0242423,466.8546755,759.369081,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.136,,,0.12,0.151,0.189,,,0.171,0.206,0.118,,,0.106,0.129,,,,,,0.162,820,,,,0.031033146,167.8893193,5410,,,,,,,,,,,,,,,,,,,,,,,,,,0.356,,,0.343,0.371,0.31780924,853,2684,0.28087307,0.35474541,0.202875399,254,1252,0.152832846,0.252917953,0.00104015,5,4807,,,961.4,,,,,,,,,,,2.891542294,,,,,,,,2.898606296,2.92732598,3.283976351,,,,,,,,3.240268503,3.325042344,0.101386657,,,,,-966.4278875,,,,,0.543163726,28043,51629,0.404615493,0.681711959,55713,,,48714.19149,62711.80851,,,,,,,20625,16090.19149,25159.80851,52857,23910.95745,81803.04255,66025,55156.23404,76893.76596,,,,,,0.598526704,650,1086,,,27.96590909,,,,,0.272539623,,55713,,,3.125,1,320,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,29.98827731,11,36681,14.97003999,53.65731172,,,,,,,,,,,,,39.80257921,19.08688384,73.1983603,,,,,,500,,,-888,-888,0.654621849,2337,3570,,,0.424,,,,,2.517436623,,,,,0.735324948,1403,1908,0.678718478,0.791931417,0.076670318,140,1826,0.023713636,0.129626999,0.808176101,1542,1908,0.759148454,0.857203747,4807,,,,,0.243395049,1170,4807,,,0.212814645,1023,4807,,,0.027876014,134,4807,,,0.020594966,99,4807,,,0.008321198,40,4807,,,0,0,4807,,,0.258789266,1244,4807,,,0.680257957,3270,4807,,,0.053632479,251,4680,0.02820085,0.079064107,0.498231745,2395,4807,,,1,4990,4990,, -48,485,48485,TX,Wichita County,2024,1,10326.3145,2428,369875,9719.716844,10932.91216,0,,,,2,4141.899349,1986.201732,7617.100372,1,14093.4682,11856.20945,16330.72694,,8462.084715,7245.447681,9678.721749,,10656.57775,9879.90757,11433.24793,,,,,2,,0.19,,,0.163,0.218,3.979097471,,,3.174135933,4.842990119,5.663278557,,,4.609887057,6.790925604,0.080284096,893,11123,0.07523415,0.085334042,0,,,,0.083333333,0.04540567,0.121260996,0.147909968,0.128181773,0.167638163,0.072690217,0.063311627,0.082068808,0.070400253,0.06409361,0.076706897,,,,0.093841642,0.062890354,0.124792931,0.178,,,0.142,0.213,0.369,,,0.292,0.447,6.4,0.112872638,0.155,,,0.273,,,0.223,0.322,0.710181678,91862,129350,,,0.197099127,,,0.158395863,0.240210827,0.295774648,21,71,0.234426663,0.358439747,485.9,632,130069,,,29.75127551,933,31360,27.84220997,31.66034105,,,,,,,34.27243683,28.08857108,40.45630257,42.20739842,37.77279249,46.64200435,23.74206709,21.46871037,26.01542381,,,,38.00904977,27.39357985,51.37719347,0.178540115,17716,99227,0.160667775,0.196412456,0.000830329,108,130069,,,1204.342593,0.000807829,105,129978,,,1237.885714,0.002100355,273,129978,,,476.1098901,3160,,,,,8365,,4037,3874,3024,0.41,,,,,0.33,0.28,0.4,0.31,0.42,0.41,,,,,0.42,0.39,0.3,0.31,0.43,0.875497149,73083,83476,0.865111238,0.88588306,0.591093929,20641,34920,0.553168734,0.629019124,0.039092647,2168,55458,,,0.207,6002,,0.155765957,0.258234043,0.045,0,0.349585583,0.023112481,0,0.155433034,0.276653171,0.175658886,0.377647456,0.284263353,0.231602189,0.336924517,0.15895464,0.109910058,0.207999223,4.797976867,115732,24121,4.35498661,5.240967124,0.295715169,8613,29126,0.244289361,0.347140976,10.22534193,133,130069,,,81.26531305,536,659568,74.38546433,88.14516178,,,,,,,69.47962655,51.22879181,92.11990473,48.07398816,36.94137247,61.50751426,97.12436622,87.75717808,106.4915544,,,,8.3,,,,,1,,,,,0.148434281,7205,48540,0.135182312,0.16168625,0.124711801,0.11087354,0.138550061,0.019159456,0.013433114,0.024885799,0.014421096,0.008726773,0.02011542,0.740190488,46085,62261,0.718204259,0.762176718,0.763768116,0.630014957,0.897521275,0.624325944,0.473679089,0.774972799,0.65359347,0.592301233,0.714885707,0.741738361,0.70173021,0.781746513,0.776851668,0.754144701,0.799558636,0.074,,62261,0.059456019,0.088543981,73.8650501,,,73.38986984,74.34023036,,,,88.12516354,79.14993075,97.10039633,70.88053495,69.23247141,72.5285985,76.99932208,75.45478707,78.5438571,73.42875546,72.85447271,74.00303822,,,,562.7362823,2428,369875,539.6374385,585.8351262,,,,223.361503,136.4350088,344.9637257,747.7439352,658.1600488,837.3278217,456.9895613,401.0132495,512.9658731,582.1276843,554.0677639,610.1876048,,,,61.46585466,87,141542,49.23162986,75.81790464,,,,,,,106.4962726,60.87182144,172.9432747,58.70042366,37.21103322,88.07945714,59.50455986,43.56481652,79.37074408,,,,6.9646478,79,11343,5.513977251,8.680029196,,,,,,,,,,7.162346521,4.433605383,10.94840748,6.123698714,4.374860141,8.338739584,,,,,,,0.121,,,0.104,0.138,0.181,,,0.156,0.205,0.116,,,0.099,0.133,151.7,165,108771,,,0.155,20110,,,,0.112872638,14842.75189,131500,,,15.67620049,62,395504,12.01885303,20.09618155,,,,,,,,,,,,,19.72970307,14.6437659,26.01115386,,,,0.368,,,0.354,0.382,0.217175393,15219,70077,0.194537095,0.239813691,0.091054836,2783,30564,0.068416538,0.113693134,0.001438705,187,129978,,,695.0695187,0.94927881,1276.78,1345,,,0.073292063,663,9046,0.046531268,0.100052857,2.740144717,,,,,,3.59039991,2.202593722,2.507456682,2.96847677,2.798051543,,,,,,4.067366091,2.30725158,2.527880925,3.06881399,0.102506956,,,,,-1985.03998,,,,,0.84436223,40168,47572,0.76786432,0.92086014,56634,,,51434.34043,61833.65957,56776,20824,92728,84655,58202.74468,111107.2553,39617,35076.23404,44157.76596,51915,44478.91489,59351.08511,63444,60193.61702,66694.38298,,,,,,0.609165222,12296,20185,,,43.07279763,,,,,0.246848183,,56634,,,5.905511811,48,8128,,,5.524796043,51,923111,4.11357354,7.264086483,,,,,,,18.74394727,11.10885108,29.62351768,6.095634971,3.042919015,10.90677475,3.671715275,2.301044415,5.559021052,,,,18.99081631,125,659568,15.55836216,22.42327046,18.95179875,,,,,,,,,,13.49757797,7.86283657,21.61092986,22.42503676,17.98553523,27.62827249,,,,13.6452951,90,659568,10.97242864,16.77238432,,,,,,,,,,14.49850437,8.729046734,22.64121053,14.34524537,10.97297604,18.42706781,,,,13.75782544,127,923111,11.36503863,16.15061225,,,,,,,13.53729525,7.208039582,23.14918716,10.52882404,6.339039862,16.44206297,14.85375725,11.92878677,18.27882645,,,,31.2173913,,11500,,,111,248,0.469747985,46040,98010,,,0.634,,,,,86.42533252,,,,,0.605978932,29453,48604,0.591626902,0.620330961,0.119512509,5570,46606,0.105329293,0.133695725,0.854682742,41541,48604,0.838436158,0.870929327,129978,,,,,0.226923018,29495,129978,,,0.152856637,19868,129978,,,0.104740802,13614,129978,,,0.014694795,1910,129978,,,0.022103741,2873,129978,,,0.001700288,221,129978,,,0.20953546,27235,129978,,,0.631260675,82050,129978,,,0.015900682,1934,121630,0.011770714,0.020030651,0.481935405,62641,129978,,,0.127483572,16490,129350,, -48,487,48487,TX,Wilbarger County,2024,1,11824.88292,279,34895,9636.257554,14013.50829,0,,,,2,,,,2,25910.52753,14165.52651,43473.46247,1,9998.629788,6793.583839,14192.25687,,11822.71399,8845.131025,14800.29695,,,,,2,,0.252,,,0.219,0.286,4.656167861,,,3.858099577,5.508842506,5.750417422,,,4.674680542,6.89810498,0.090493602,99,1094,0.073493198,0.107494005,0,,,,,,,0.191780822,0.101465423,0.282096221,0.097156398,0.068898373,0.125414424,0.069632495,0.04769212,0.09157287,,,,,,,0.22,,,0.182,0.261,0.409,,,0.322,0.497,5.2,0.15591786,0.187,,,0.333,,,0.278,0.392,0.813688213,10486,12887,,,0.157471132,,,0.124390954,0.194837546,0.15,3,20,0.050642257,0.283837277,400.6,51,12731,,,40.50632911,112,2765,33.00445198,48.00820625,,,,,,,,,,52.43445693,39.60842527,68.09050375,35.3460972,26.06142181,46.86379689,,,,,,,0.238133069,2398,10070,0.209537324,0.266728813,0.000314194,4,12731,,,3182.75,0.000400288,5,12491,,,2498.2,0.001761268,22,12491,,,567.7727273,3468,,,,,,,,1829,3478,0.31,,,,,,,0.23,0.31,0.31,0.46,,,,,,,0.34,0.4,0.47,0.784442146,6827,8703,0.74387277,0.825011523,0.454113924,1435,3160,0.366617314,0.541610534,0.04884106,236,4832,,,0.241,626,,0.155212766,0.326787234,,,,,,,0.64516129,0.466210533,0.824112048,0.308537616,0.150876118,0.466199114,0.234458259,0.118794237,0.350122282,4.917059037,95032,19327,4.077106356,5.757011717,0.206715635,591,2859,0.090966196,0.322465074,10.99677952,14,12731,,,80.14331511,51,63636,59.67196216,105.3736586,,,,,,,,,,,,,102.7663593,72.3570008,141.6498893,,,,7.4,,,,,1,,,,,0.149700599,750,5010,0.10056566,0.198835538,0.102081665,0.055825351,0.14833798,0.0249501,0.00299057,0.046909629,0.04491018,0.016264045,0.073556315,0.788999264,4289,5436,0.739131246,0.838867282,,,,,,,,,,0.80536193,0.671144897,0.939578964,0.784201488,0.723410982,0.844991995,0.14,,5436,0.087479776,0.192520224,72.79947245,,,71.21010526,74.38883964,,,,,,,,,,73.87570895,70.64520996,77.10620794,72.79325119,70.75012782,74.83637456,,,,606.2954295,279,34895,531.5099077,681.0809514,,,,,,,1131.200445,778.6663365,1588.626001,532.7546172,400.2216652,695.129211,612.9250478,515.1887936,710.661302,,,,111.2700684,14,12582,60.83238179,186.6922677,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.151,,,0.13,0.171,0.196,,,0.171,0.223,0.14,,,0.119,0.161,,,,,,0.187,2410,,,,0.15591786,2110.348241,13535,,,,,,,,,,,,,,,,,,,,,,,,,,0.37,,,0.358,0.382,0.277755185,2049,7377,0.242010504,0.313499866,0.133590463,381,2852,0.096654293,0.170526633,0.000640461,8,12491,,,1561.375,0.897619048,131.95,147,,,0.222116301,233,1049,0.079303249,0.364929354,2.575993719,,,,,,,,2.508840519,2.671993633,2.692022256,,,,,,,,2.646854913,2.746007521,0.046447622,,,,,-4018.8086,,,,,0.8677702,35753,41201,0.617980077,1.117560322,52983,,,45507.59575,60458.40426,,,,,,,58438,2839.531915,114036.4681,41034,30471.44681,51596.55319,58266,45742.25532,70789.74468,,,,,,0.68761302,1521,2212,,,29.42517063,,,,,0.263858219,,52983,,,8.526187576,7,821,,,,,,,,,,,,,,,,,,,,,,,,,,16.06958907,11,63636,7.705992575,29.55254644,17.28581306,,,,,,,,,,,,,,,,,,,17.28581306,11,63636,8.6290156,30.9290944,,,,,,,,,,,,,,,,,,,20.09938027,18,89555,11.91216658,31.76568619,,,,,,,,,,,,,23.44207853,12.11286405,40.94859357,,,,,,1100,,,-888,24,0.476963627,4524,9485,,,0.548,,,,,41.72638886,,,,,0.591223519,2735,4626,0.529924914,0.652522124,0.117564731,504,4287,0.068293094,0.166836367,0.735840899,3404,4626,0.676167125,0.795514674,12491,,,,,0.210551597,2630,12491,,,0.187895285,2347,12491,,,0.075174125,939,12491,,,0.016491874,206,12491,,,0.03698663,462,12491,,,0.001120807,14,12491,,,0.313745897,3919,12491,,,0.544311905,6799,12491,,,0.033380741,399,11953,0.017175457,0.049586026,0.49931951,6237,12491,,,0.260960658,3363,12887,, -48,489,48489,TX,Willacy County,2024,1,10644.48576,351,58922,9088.232437,12200.73909,0,,,,2,,,,2,,,,2,11132.38016,9460.809669,12803.95066,,8765.382569,4667.197054,14989.07114,1,,,,2,,0.322,,,0.277,0.366,4.975356541,,,4.028182431,6.026097086,5.229248839,,,4.169485378,6.434526492,0.085533869,149,1742,0.072400236,0.098667502,0,,,,,,,,,,0.08397398,0.070754617,0.097193343,,,,,,,,,,0.193,,,0.155,0.233,0.453,,,0.367,0.545,4,0.256396845,0.194,,,0.406,,,0.345,0.471,0.623338623,12569,20164,,,0.163110561,,,0.128065527,0.202815426,0.470588235,8,17,0.348761796,0.579131995,551.3,112,20316,,,39.35376968,190,4828,33.75792553,44.94961383,,,,,,,,,,40.75723831,34.85202928,46.66244734,,,,,,,,,,0.230666854,3293,14276,0.204454088,0.256879619,0.000393778,8,20316,,,2539.5,0.000049645,1,20143,,,20143,0.00039716,8,20143,,,2517.875,4807,,,,,,,,5688,1052,0.2,,,,,,,,0.19,0.21,0.42,,,,,,,,0.43,0.41,0.674841405,8723,12926,0.63691087,0.71277194,0.333564855,1921,5759,0.261859562,0.405270148,0.081776671,591,7227,,,0.364,1732,,0.224595745,0.503404255,,,,,,,,,,0.339281629,0.269597331,0.408965927,0.08988764,0,0.238122559,5.9035712,92078,15597,4.573460046,7.233682353,0.345547595,1688,4885,0.239537495,0.451557694,3.44556015,7,20316,,,52.86310344,56,105934,39.93222023,68.6471369,,,,,,,,,,51.28424292,37.81295229,67.99546581,,,,,,,10.2,,,,,1,,,,,0.202380952,1190,5880,0.153130814,0.251631091,0.068788683,0.040076961,0.097500404,0.12244898,0.079254041,0.165643918,0.028911565,0.00446636,0.05335677,0.802871898,6374,7939,0.754275832,0.851467965,,,,,,,,,,0.767946877,0.72541431,0.810479445,0.742506812,0.672174016,0.812839608,0.295,,7939,0.222250817,0.367749183,74.07861767,,,72.79725189,75.35998345,,,,,,,,,,73.19278027,71.86030562,74.52525493,78.49219901,74.06473465,82.91966338,,,,569.4863064,351,58922,508.9291836,630.0434292,,,,,,,,,,595.2029545,528.5311259,661.8747831,480.2423975,324.0175289,685.5758838,,,,75.00551511,17,22665,43.69347659,120.0910956,,,,,,,,,,80.97937408,47.17346958,129.6558225,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.165,,,0.142,0.189,0.178,,,0.153,0.204,0.181,,,0.158,0.208,748.2,127,16973,,,0.194,3960,,,,0.256396845,5675.087758,22134,,,,,,,,,,,,,,,,,,,,,,,,,,0.375,,,0.357,0.391,0.297604296,2882,9684,0.261859615,0.333348977,0.091488487,445,4864,0.064084232,0.118892742,0.000794321,16,20143,,,1258.9375,0.909003215,282.7,311,,,,,,,,2.807898643,,,,,,,,2.789464308,,3.004346287,,,,,,,,2.978039804,,0.060317576,,,,,-7066.6185,,,,,0.670400661,30821,45974,0.539817469,0.800983853,41648,,,36699.74468,46596.25532,,,,,,,,,,39784,34977.53192,44590.46809,82143,51270.31915,113015.6809,,,,,,0.844376745,3326,3939,,,,,,,,0.341000768,,41648,,,6.98757764,9,1288,,,,,,,,,,,,,,,,,,,,,,,,,,11.65400857,13,105934,6.205268743,19.92870958,12.27179187,,,,,,,,,,11.18312682,5.582576617,20.00970298,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20.71541695,31,149647,14.07512077,29.4038808,,,,,,,,,,21.96570321,14.71077618,31.54641386,,,,,,,14,,2000,,,14,14,0.373418573,5549,14860,,,0.414,,,,,27.55515104,,,,,0.691355744,3743,5414,0.645557556,0.737153933,0.110748521,543,4903,0.068066271,0.153430772,0.703176949,3807,5414,0.646096208,0.760257689,20143,,,,,0.237849377,4791,20143,,,0.145608896,2933,20143,,,0.01970908,397,20143,,,0.006950305,140,20143,,,0.008390011,169,20143,,,0.001042546,21,20143,,,0.88234126,17773,20143,,,0.086829171,1749,20143,,,0.091128356,1738,19072,0.068947084,0.113309627,0.454103162,9147,20143,,,0.355980956,7178,20164,, -48,491,48491,TX,Williamson County,2024,1,4840.562618,4914,1761986,4648.151965,5032.973271,0,,,,2,2074.78609,1584.392484,2565.179697,,6860.09636,5996.908258,7723.284463,,4078.79898,3737.758735,4419.839226,,5440.166445,5157.638469,5722.694422,,,,,2,,0.131,,,0.112,0.154,2.935932249,,,2.362674806,3.589177569,4.854233166,,,4.133915115,5.635181324,0.074642733,3651,48913,0.07231361,0.076971856,0,,,,0.088050315,0.080605149,0.09549548,0.134365325,0.122603743,0.146126907,0.07181553,0.067598261,0.076032799,0.064831008,0.061753213,0.067908804,,,,0.097502973,0.077454103,0.117551842,0.11,,,0.087,0.136,0.32,,,0.275,0.368,7.8,0.086903433,0.101,,,0.194,,,0.162,0.229,0.886513841,539902,609017,,,0.180458383,,,0.150850641,0.212510158,0.231481482,50,216,0.197238166,0.267086024,265.5,1707,643026,,,9.959383928,1356,136153,9.429282834,10.48948502,,,,,,,13.06984525,10.77860036,15.36109015,16.9453635,15.73901619,18.1517108,6.218978965,5.624913766,6.813044163,,,,7.56302521,5.297049878,10.47041481,0.133305801,74563,559338,0.122582397,0.144029205,0.00068271,439,643026,,,1464.751708,0.000610648,410,671418,,,1637.604878,0.001639813,1101,671418,,,609.8256131,2102,,,,,,899,2845,2000,2057,0.42,,,,,0.38,0.36,0.35,0.31,0.43,0.49,,,,,0.43,0.5,0.37,0.39,0.5,0.941068913,390122,414552,0.936447611,0.945690215,0.785510141,148690,189291,0.764784791,0.80623549,0.029248461,10662,364532,,,0.065,10284,,0.048319149,0.081680851,0.158102767,0.000212793,0.31599274,0.032703823,0.015839442,0.049568204,0.195472225,0.103827346,0.287117104,0.094873395,0.078544514,0.111202275,0.037360778,0.028524398,0.046197159,3.573286216,179990,50371,3.439505579,3.707066854,0.166935812,25430,152334,0.150942558,0.182929066,6.002867691,386,643026,,,43.02531345,1276,2965696,40.66453747,45.38608943,,,,11.90041056,7.907736396,17.19940666,47.42109936,38.32107535,58.03141584,24.79127239,21.19933016,28.38321462,55.90083495,52.36092992,59.44073999,,,,9.9,,,,,0,,,,,0.12564123,23635,188115,0.116052122,0.135230338,0.099775365,0.091842202,0.107708528,0.025409989,0.021342051,0.029477926,0.008638333,0.0057844,0.011492266,0.688808118,221157,321072,0.679341965,0.698274271,0.669616519,0.582905439,0.756327599,0.475533629,0.431002032,0.520065225,0.700331469,0.642867217,0.757795721,0.649956025,0.63367321,0.66623884,0.649011324,0.631305385,0.666717263,0.44,,321072,0.424283176,0.455716824,80.9788749,,,80.74627802,81.21147178,,,,89.56948931,87.33011758,91.80886104,77.68344738,76.64776736,78.7191274,83.33763569,82.4893774,84.18589399,80.17920607,79.89386284,80.46454931,,,,252.6909101,4914,1761986,245.5927262,259.7890941,,,,96.41205113,78.61321023,114.210892,332.8698503,299.7192052,366.0204954,224.5207146,207.9521414,241.0892877,275.1257934,265.8550646,284.3965222,,,,33.53864422,222,661923,29.12675005,37.9505384,,,,28.44697306,16.25990302,46.19610205,46.61901168,28.857903,71.26211148,29.52136669,22.58150635,37.92143054,37.50949362,30.82598385,44.19300339,,,,3.7431798,177,47286,3.191724739,4.29463486,,,,,,,6.437077567,3.931934208,9.941544224,3.084153327,2.22278644,4.168879335,3.786953335,3.056560091,4.63927368,,,,,,,0.089,,,0.076,0.103,0.146,,,0.127,0.167,0.088,,,0.076,0.102,181.6,967,532345,,,0.101,59840,,,,0.086903433,36732.25599,422679,,,8.966032779,166,1851432,7.602070532,10.32999503,,,,,,,,,,4.314249968,2.635255961,6.663009168,12.79696058,10.63824205,14.95567911,,,,0.323,,,0.31,0.335,0.156032313,62561,400949,0.14292593,0.169138696,0.081099499,13448,165821,0.065610137,0.096588861,0.000857886,576,671418,,,1165.65625,0.947406048,8772.98,9260,,,0.058924731,1918,32550,0.039267355,0.078582107,3.108937864,,,,,,3.691000332,2.612589757,2.730937583,3.308214347,3.214824831,,,,,,4.207250337,2.662772533,2.818597373,3.378400687,0.097295383,,,,,-1588.6602,,,,,0.721091893,56742,78689,0.701195482,0.740988305,101891,,,98314.14894,105467.8511,74156,55455.57447,92856.42553,146756,137751.9149,155760.0851,77435,65981.21277,88888.78723,88084,83141.70213,93026.29787,106308,103548.5106,109067.4894,,,,,,0.262856406,30561,116265,,,37.97069389,,,,,0.196072273,,101891,,,7.750257439,286,36902,,,1.77370165,71,4002928,1.385275705,2.237283286,,,,,,,6.470865878,3.769517833,10.36048311,2.327280381,1.475296125,3.492063255,1.236879481,0.828357601,1.776365256,,,,12.9771154,385,2965696,11.67278135,14.28144945,12.98177561,,,,5.894710095,2.942618041,10.54726465,9.087348234,4.838630211,15.53964224,5.554157354,3.967971443,7.563185902,17.87994282,15.85404909,19.90583655,,,,9.036664581,268,2965696,7.954740376,10.11858879,,,,,,,10.08959561,6.162987118,15.5825621,5.012443051,3.529222484,6.908992478,12.02043006,10.37892409,13.66193604,,,,8.468800838,339,4002928,7.567275075,9.3703266,,,,,,,14.46428843,10.23579137,19.85336596,8.196074384,6.508866128,10.18697211,8.956713483,7.745292461,10.16813451,,,,6.485623003,,62600,,,212,194,0.74678582,289555,387735,,,0.694,,,,,74.55340062,,,,,0.676659156,155568,229906,0.666942684,0.686375629,0.112694186,25564,226844,0.105001891,0.120386482,0.950736388,218580,229906,0.943994039,0.957478737,671418,,,,,0.238323965,160015,671418,,,0.129117778,86692,671418,,,0.070937925,47629,671418,,,0.008808224,5914,671418,,,0.103281413,69345,671418,,,0.001732155,1163,671418,,,0.253406969,170142,671418,,,0.545913276,366536,671418,,,0.028842107,16723,579812,0.025763869,0.031920346,0.500427454,335996,671418,,,0.091526181,55741,609017,, -48,493,48493,TX,Wilson County,2024,1,7786.346603,739,144553,6908.101737,8664.591469,0,,,,2,,,,2,,,,2,7868.514581,6573.407189,9163.621973,,8061.62871,6794.745541,9328.51188,,,,,2,,0.174,,,0.148,0.201,3.611884137,,,2.875628482,4.505608808,4.882468635,,,3.877804515,6.022516821,0.077086093,291,3775,0.068577334,0.085594851,0,,,,,,,,,,0.093592965,0.079285332,0.107900597,0.065675935,0.055045505,0.076306365,,,,,,,0.147,,,0.117,0.18,0.361,,,0.283,0.444,8.4,0.015981301,0.106,,,0.252,,,0.205,0.3,0.655176572,32597,49753,,,0.183964093,,,0.14767821,0.224754756,0.261904762,11,42,0.18140659,0.346686893,218.5,112,51257,,,17.76332249,213,11991,15.3777618,20.14888318,,,,,,,,,,21.21880835,17.49898724,24.93862947,14.37083772,11.42955371,17.8379988,,,,,,,0.169003535,7220,42721,0.151131194,0.186875875,0.000468229,24,51257,,,2135.708333,0.000246516,13,52735,,,4056.538462,0.000530957,28,52735,,,1883.392857,2188,,,,,,,,2776,2024,0.35,,,,,,,0.17,0.33,0.36,0.32,,,,,,0.22,0.23,0.33,0.32,0.907518161,31107,34277,0.893855743,0.921180579,0.630107704,7664,12163,0.570712478,0.68950293,0.032599492,847,25982,,,0.131,1583,,0.084531915,0.177468085,,,,,,,,,,0.099335303,0.049764483,0.148906122,0.123906195,0.068388195,0.179424196,4.112977023,163606,39778,3.56516271,4.660791335,0.13294167,1584,11915,0.091871444,0.174011897,6.24304973,32,51257,,,75.23298592,191,253878,64.56339702,85.90257483,,,,,,,,,,56.64007187,43.00918124,73.22042729,89.5994624,74.07714748,105.1217773,,,,9.3,,,,,0,,,,,0.144913928,2315,15975,0.118452706,0.17137515,0.085795455,0.064151918,0.107438991,0.061658842,0.043921957,0.079395727,0.003693271,6.16467E-05,0.007324895,0.781721536,18236,23328,0.747427736,0.816015337,,,,,,,,,,0.734062553,0.647732859,0.820392248,0.667182881,0.60108836,0.733277401,0.616,,23328,0.564365739,0.667634261,77.20473885,,,76.43653637,77.97294133,,,,,,,,,,77.80005587,76.52258127,79.07753047,76.60023561,75.56358968,77.63688153,,,,391.5600248,739,144553,362.1891215,420.9309282,,,,,,,,,,398.3840266,349.1312546,447.6367986,399.3344861,360.6244136,438.0445586,,,,52.10562555,28,53737,34.62380977,75.3071365,,,,,,,,,,39.74878766,19.0610887,73.09943573,67.47385388,39.98928208,106.6377789,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.111,,,0.095,0.127,0.161,,,0.14,0.185,0.106,,,0.09,0.122,112,48,42851,,,0.106,5240,,,,0.015981301,685.8854863,42918,,,10.36605118,16,154350,5.925093912,16.83381769,,,,,,,,,,,,,,,,,,,0.349,,,0.335,0.363,0.19501519,5970,30613,0.172376892,0.217653488,0.108163106,1382,12777,0.08075885,0.135567361,0.00062577,33,52735,,,1598.030303,0.935056818,658.28,704,,,,,,,,2.892608178,,,,,,,,2.775098078,2.99741863,3.0671864,,,,,,,,2.859134609,3.253924478,0.059362429,,,,,-968.937625,,,,,0.711835359,49012,68853,0.636750189,0.78692053,79432,,,70635.23404,88228.76596,137000,78108.25532,195891.7447,,,,130167,58889.7234,201444.2766,77060,67835.48936,86284.51064,99745,94340.40426,105149.5957,,,,,,0.38509589,3514,9125,,,30.36146563,,,,,0.234515057,,79432,,,6.676036543,19,2846,,,12.57581214,44,349878,9.137604353,16.88244082,,,,,,,,,,7.149291505,3.428363167,13.14780162,16.64279518,11.45613442,23.37267216,,,,13.68768068,37,253878,9.533971109,19.03625037,14.57392921,,,,,,,,,,,,,16.70251926,10.70161925,24.85202469,,,,24.81506866,63,253878,19.0685801,31.74925251,,,,,,,,,,9.765529634,4.682951042,17.95915669,37.0997774,27.79027911,48.52742229,,,,19.14953212,67,349878,14.84062437,24.31922888,,,,,,,,,,18.58815791,12.14240189,27.23595814,20.17308507,14.41194773,27.47001622,,,,6,,5000,,,5,25,0.676209786,25013,36990,,,0.625,,,,,21.05476256,,,,,0.856212165,14851,17345,0.834192011,0.878232319,0.094359702,1596,16914,0.07195963,0.116759774,0.862323436,14957,17345,0.842538379,0.882108494,52735,,,,,0.232028065,12236,52735,,,0.167403053,8828,52735,,,0.017843937,941,52735,,,0.010657059,562,52735,,,0.008305679,438,52735,,,0.001346354,71,52735,,,0.415321893,21902,52735,,,0.544742581,28727,52735,,,0.022936069,1091,47567,0.015140735,0.030731403,0.493713852,26036,52735,,,0.873113179,43440,49753,, -48,495,48495,TX,Winkler County,2024,1,14126.49495,154,22195,11110.33913,17142.65076,0,,,,2,,,,2,,,,2,10134.63115,7135.71561,13969.25405,,22077.69498,15911.66062,29842.62993,,,,,2,,0.226,,,0.195,0.258,4.126146151,,,3.249631387,5.005530383,5.110330385,,,4.084526464,6.111687895,0.099143207,81,817,0.078650261,0.119636153,0,,,,,,,,,,0.096539162,0.071834647,0.121243677,0.108870968,0.07010447,0.147637466,,,,,,,0.165,,,0.135,0.197,0.392,,,0.307,0.475,8.1,0.014399816,0.123,,,0.31,,,0.254,0.365,0.977281479,7614,7791,,,0.189007132,,,0.151264135,0.229281012,0.3,12,40,0.216980958,0.384837631,350.6,26,7415,,,32.92978208,68,2065,25.57126429,41.74634535,,,,,,,,,,36.76470588,27.69620787,47.85431817,25.91792657,13.39217086,45.27340183,,,,,,,0.233839412,1494,6389,0.207626646,0.260052177,0.000269724,2,7415,,,3707.5,0.000273748,2,7306,,,3653,,0,7306,,,,2172,,,,,,,,1876,1661,0.14,,,,,,,,0.13,0.15,0.18,,,,,,,,0.18,0.18,0.724705882,3388,4675,0.637512782,0.811898982,0.401534527,785,1955,0.304750552,0.498318502,0.039476993,157,3977,,,0.194,396,,0.121319149,0.266680851,,,,,,,,,,0.177124183,0.07774934,0.276499026,0.096085409,0.003057774,0.189113044,3.230457469,133111,41205,2.30961116,4.151303777,0.123739688,270,2182,0.03989014,0.207589237,6.743088335,5,7415,,,160.5967984,62,38606,123.1286445,205.8778477,,,,,,,,,,108.7820593,71.06005278,159.3909212,252.2164476,173.6141973,354.2056655,,,,7.1,,,,,0,,,,,0.124045802,325,2620,0.065695316,0.182396287,0.053929122,0.014082426,0.093775818,0.041984733,0,0.090593671,0.028625954,0,0.058463339,0.913017752,3086,3380,0.857201136,0.968834367,,,,,,,,,,0.903786468,0.808484794,0.999088142,0.867611138,0.758224756,0.97699752,0.381,,3380,0.284320348,0.477679652,71.04604458,,,68.85069264,73.24139653,,,,,,,,,,73.80848101,71.02147218,76.59548983,66.36138842,62.5886296,70.13414725,,,,655.5918491,154,22195,550.6790617,760.5046366,,,,,,,,,,468.3884232,357.4297112,602.9087462,968.6943575,765.7126913,1208.974398,,,,100.431857,10,9957,48.16097917,184.6977608,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.129,,,0.112,0.147,0.168,,,0.145,0.191,0.127,,,0.109,0.146,118.4,7,5913,,,0.123,940,,,,0.014399816,102.3826895,7110,,,,,,,,,,,,,,,,,,,,,,,,,,0.354,,,0.341,0.366,0.274468582,1175,4281,0.24110688,0.307830284,0.153015302,340,2222,0.112504663,0.19352594,0.000547495,4,7306,,,1826.5,0.956415929,108.075,113,,,,,,,,2.361351811,,,,,,,,2.289142507,2.548243096,2.476383181,,,,,,,,2.466295407,2.62681616,0.095822756,,,,,2581.446,,,,,0.727882587,47958,65887,0.523404804,0.93236037,69775,,,60624.3617,78925.6383,,,,,,,76278,32596.80851,119959.1915,92527,70982.48936,114071.5106,99000,78689.87234,119310.1277,,,,,,0.648390942,1088,1678,,,31.81065635,,,,,0.241977786,,69775,,,1.818181818,1,550,,,,,,,,,,,,,,,,,,,,,,,,,,44.66653302,16,38606,25.53078296,72.53565126,41.44433508,,,,,,,,,,,,,99.44534186,49.64275636,177.9351862,,,,38.85406414,15,38606,21.74632475,64.08387005,,,,,,,,,,,,,76.42922654,36.6507849,140.5560688,,,,60.54601497,33,54504,41.67709081,85.02911579,,,,,,,,,,47.93863854,27.40107399,77.84934563,79.37347868,44.42473348,130.9144823,,,,8.888888889,,900,,,0,8,0.436998972,2126,4865,,,0.46,,,,,69.4396254,,,,,0.833891993,2239,2685,0.785060698,0.882723287,0.015965732,41,2568,0,0.055327902,0.84320298,2264,2685,0.777639681,0.908766278,7306,,,,,0.28113879,2054,7306,,,0.125376403,916,7306,,,0.021078566,154,7306,,,0.022036682,161,7306,,,0.012181768,89,7306,,,0.00109499,8,7306,,,0.641801259,4689,7306,,,0.30632357,2238,7306,,,0.089171975,630,7065,0.046360646,0.131983304,0.481932658,3521,7306,,,0.180978052,1410,7791,, -48,497,48497,TX,Wise County,2024,1,8307.13734,1162,200117,7572.712952,9041.561728,0,,,,2,,,,2,,,,2,5726.928198,4435.185138,7018.671257,,9354.101839,8414.527161,10293.67652,,,,,2,,0.175,,,0.147,0.204,3.838969869,,,3.056915475,4.70521352,5.305181195,,,4.284099078,6.431530655,0.06751661,376,5569,0.06092649,0.07410673,0,,,,,,,,,,0.069300518,0.056632596,0.081968441,0.065868264,0.058023568,0.073712959,,,,,,,0.174,,,0.139,0.212,0.365,,,0.29,0.451,7.8,0.032135025,0.128,,,0.252,,,0.206,0.3,0.38350915,26321,68632,,,0.193077851,,,0.15563501,0.236769083,0.2125,17,80,0.156114489,0.273370367,168.7,121,71714,,,18.74960808,299,15947,16.62434513,20.87487103,,,,,,,,,,22.78428094,18.50689784,27.06166404,17.16861692,14.65346127,19.68377257,,,,31.15264798,14.9389056,57.29082879,0.208771144,12577,60243,0.188515824,0.229026463,0.000376496,27,71714,,,2656.074074,0.000213632,16,74895,,,4680.9375,0.000587489,44,74895,,,1702.159091,4061,,,,,,,,3078,4014,0.35,,,,,,,,0.18,0.36,0.41,,,,,,0.29,0.4,0.35,0.41,0.870200246,41110,47242,0.857752749,0.882647742,0.561983942,9869,17561,0.512187358,0.611780526,0.035119932,1205,34311,,,0.116,2086,,0.070723404,0.161276596,,,,,,,0.017123288,0,0.229193304,0.139315489,0.085742154,0.192888825,0.114843395,0.075351605,0.154335186,3.980885286,153698,38609,3.519153633,4.442616939,0.205305719,3529,17189,0.154369729,0.256241709,10.03988064,72,71714,,,86.38861053,300,347268,76.61281897,96.16440208,,,,,,,,,,60.34222663,43.48936933,81.56516067,96.46058028,84.59772907,108.3234315,,,,9.1,,,,,1,,,,,0.130757133,2910,22255,0.109030521,0.152483746,0.090781808,0.072905607,0.108658008,0.034598967,0.024029081,0.045168852,0.017074815,0.008827406,0.025322223,0.783290824,26411,33718,0.75967526,0.806906388,,,,,,,,,,0.734604817,0.595968361,0.873241273,0.782606319,0.752545286,0.812667352,0.519,,33718,0.47962673,0.55837327,75.62038947,,,75.0089101,76.23186884,,,,,,,,,,80.02763131,77.59384876,82.46141386,74.65016406,73.92997812,75.37035,,,,448.9815438,1162,200117,422.2866515,475.6764361,,,,,,,,,,318.53538,254.843379,382.227381,485.1353667,453.9046536,516.3660797,,,,46.20279065,35,75753,32.18193656,64.25689724,,,,,,,,,,,,,51.86618524,33.88071419,75.99597854,,,,4.69229381,26,5541,3.065162104,6.875297615,,,,,,,,,,,,,,,,,,,,,,0.117,,,0.1,0.136,0.175,,,0.151,0.201,0.099,,,0.084,0.117,112.8,67,59412,,,0.128,8690,,,,0.032135025,1900.047626,59127,,,15.50883063,33,212782,10.6755654,21.78016433,,,,,,,,,,,,,17.44037572,11.58900301,25.20619877,,,,0.337,,,0.322,0.351,0.243279979,10381,42671,0.218258703,0.268301256,0.12977595,2398,18478,0.099988716,0.159563184,0.000934642,70,74895,,,1069.928571,0.95326087,679.675,713,,,0.136893204,564,4120,0.083842072,0.189944336,2.898779794,,,,,,,,2.587728026,3.069742577,2.99975853,,,,,,,,2.60967812,3.204775737,0.068384209,,,,,-2688.820471,,,,,0.787828111,48052,60993,0.688061382,0.887594841,80096,,,73728.68085,86463.31915,62528,1667.914894,123388.0851,164010,86849.14894,241170.8511,76563,59771.34043,93354.65957,68951,61517.29787,76384.70213,87500,83493.02128,91506.97872,,,,,,0.458504098,5370,11712,,,54.2751746,,,,,0.248888833,,80096,,,5.332040717,22,4126,,,4.002730283,19,474676,2.409905107,6.250759165,,,,,,,,,,,,,4.145982819,2.320475111,6.838168159,,,,17.04227529,60,347268,12.90765288,22.08024436,17.27772211,,,,,,,,,,,,,18.82477421,13.78210067,25.10961076,,,,14.68606379,51,347268,10.93473912,19.30946168,,,,,,,,,,,,,15.57040863,11.17359406,21.12301746,,,,25.28040179,120,474676,20.75716399,29.80363959,,,,,,,,,,17.08543787,9.765803981,27.74568069,28.46908202,22.9710037,33.96716035,,,,10.28169014,,7100,,,28,45,0.680365777,32365,47570,,,0.6,,,,,20.02084024,,,,,0.81647909,19660,24079,0.790019457,0.842938722,0.078362221,1822,23251,0.063501115,0.093223327,0.869762033,20943,24079,0.856006937,0.883517129,74895,,,,,0.24395487,18271,74895,,,0.155337473,11634,74895,,,0.017077242,1279,74895,,,0.01232392,923,74895,,,0.007356966,551,74895,,,0.001081514,81,74895,,,0.212991522,15952,74895,,,0.739822418,55409,74895,,,0.036334673,2395,65915,0.028410523,0.044258824,0.494505641,37036,74895,,,0.905073435,62117,68632,, -48,499,48499,TX,Wood County,2024,1,11328.72161,1050,121524,10101.66719,12555.77603,0,,,,2,,,,2,17867.04342,9768.078901,29977.8629,1,9300.012579,6401.700738,13060.67537,,11570.28184,10152.81946,12987.74423,,,,,2,,0.179,,,0.151,0.209,3.905924143,,,3.070670472,4.778551491,5.598625345,,,4.494357151,6.736896213,0.066619419,188,2822,0.057419005,0.075819833,0,,,,,,,0.158536585,0.07948119,0.237591981,0.076759062,0.052665999,0.100852124,0.059464367,0.049588736,0.069339998,,,,,,,0.185,,,0.149,0.229,0.38,,,0.3,0.466,6.8,0.088498827,0.149,,,0.251,,,0.205,0.302,0.471266418,21133,44843,,,0.166156564,,,0.132262897,0.206032737,0.269230769,14,52,0.197082941,0.344467642,263.8,121,45875,,,25.86687479,232,8969,22.53831747,29.19543211,,,,,,,10.34126163,4.959036914,19.01794834,19.56815115,13.10509793,28.10312918,30.22022183,25.90031088,34.54013278,,,,,,,0.22585378,7235,32034,0.203215483,0.248492078,0.000326976,15,45875,,,3058.333333,0.000362806,17,46857,,,2756.294118,0.000490855,23,46857,,,2037.26087,3042,,,,,,,3437,,2946,0.41,,,,,,0.55,0.43,0.32,0.41,0.36,,,,,,0.44,0.35,0.23,0.36,0.860942618,28387,32972,0.840805818,0.881079418,0.504085921,4318,8566,0.43842622,0.569745622,0.04491674,820,18256,,,0.184,1570,,0.10893617,0.25906383,,,,,,,0.012121212,0,0.17616027,0.151419558,0.039753572,0.263085545,0.158640227,0.106047778,0.211232675,4.614620133,118868,25759,4.142726802,5.086513464,0.250087977,2132,8525,0.188597327,0.311578626,12.86103542,59,45875,,,94.65194499,215,227148,81.99973521,107.3041548,,,,,,,,,,67.19583386,38.408225,109.1218244,102.1099133,87.59056313,116.6292634,,,,9.1,,,,,0,,,,,0.132814837,2220,16715,0.10860122,0.157028454,0.099847328,0.077703247,0.121991409,0.020041879,0.010634959,0.029448798,0.026024529,0.014623265,0.037425792,0.777429838,13158,16925,0.744178789,0.810680887,,,,,,,,,,0.735294118,0.616908533,0.853679702,0.76755678,0.72471158,0.81040198,0.471,,16925,0.4115448,0.5304552,74.13014856,,,73.24555221,75.0147449,,,,,,,68.96787449,62.98869919,74.9470498,88.16505305,73.93978985,102.3903163,73.71951011,72.71540898,74.72361123,,,,534.8774293,1050,121524,497.5767903,572.1780683,,,,,,,795.4279076,562.8921289,1091.78695,401.6491653,294.0576694,535.7437007,543.8472788,502.5630028,585.1315547,,,,64.06970784,25,39020,41.46253677,94.57952767,,,,,,,,,,,,,68.92548792,41.49764625,107.6356873,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.12,,,0.103,0.139,0.18,,,0.156,0.207,0.102,,,0.087,0.119,170.3,68,39927,,,0.149,6640,,,,0.088498827,3713.764795,41964,,,13.07142079,18,137705,7.746952384,20.65848028,,,,,,,,,,,,,15.115545,8.80536199,24.20145182,,,,0.373,,,0.357,0.388,0.264459649,6223,23531,0.235863904,0.293055394,0.125167187,1123,8972,0.094188463,0.15614591,0.000661587,31,46857,,,1511.516129,0.963646532,430.75,447,,,,,,,,2.94218785,,,,,,,,2.562552817,3.033336035,3.045470102,,,,,,,,2.831977469,3.115060407,0.05636945,,,,,-3378.0339,,,,,0.771719662,40070,51923,0.69353409,0.849905234,57504,,,50657.70213,64350.29787,,,,,,,53869,35832.23404,71905.76596,40054,20786.42553,59321.57447,62861,56815.38298,68906.61702,,,,,,0.605192338,3823,6317,,,74.73881881,,,,,0.243878687,,57504,,,6.208213945,13,2094,,,3.177316502,10,314731,1.523646764,5.843198173,,,,,,,,,,,,,,,,,,,21.04844606,49,227148,14.96750277,28.77391868,21.57183863,,,,,,,,,,,,,22.74451391,15.65627683,31.94175384,,,,17.16942258,39,227148,12.20913787,23.47116588,,,,,,,,,,,,,20.42198265,14.45181038,28.03076675,,,,28.59584852,90,314731,22.9944391,35.1491527,,,,,,,,,,,,,30.15541638,23.83660528,37.63532438,,,,18.33333333,,3600,,,30,36,0.648697138,22779,35115,,,0.555,,,,,11.09617833,,,,,0.804869838,14346,17824,0.774509609,0.835230068,0.114927035,1961,17063,0.091354313,0.138499757,0.834717235,14878,17824,0.803387521,0.866046949,46857,,,,,0.184967027,8667,46857,,,0.277503895,13003,46857,,,0.041445248,1942,46857,,,0.010649423,499,46857,,,0.007064046,331,46857,,,0.000768295,36,46857,,,0.113985104,5341,46857,,,0.817359199,38299,46857,,,0.016662815,721,43270,0.008898754,0.024426876,0.496297245,23255,46857,,,0.87291216,39144,44843,, -48,501,48501,TX,Yoakum County,2024,1,11498.93055,121,23761,8809.925727,14187.93537,0,,,,2,,,,2,,,,2,11659.42877,8681.210544,15329.99558,,11568.01735,6855.940224,18282.45469,1,,,,2,,0.225,,,0.19,0.261,4.11002963,,,3.248616275,5.104634087,5.126344895,,,4.027914076,6.328299398,0.06879845,71,1032,0.053355602,0.084241298,0,,,,,,,,,,0.069230769,0.051416035,0.087045504,0.070539419,0.038211409,0.10286743,,,,,,,0.159,,,0.128,0.193,0.39,,,0.303,0.482,7.7,0.053652027,0.123,,,0.308,,,0.253,0.368,0.875877307,6739,7694,,,0.188683248,,,0.149143594,0.233620236,0.285714286,2,7,0.086061846,0.500925625,302.4,23,7607,,,36.69337832,87,2371,29.38989183,45.2611466,,,,,,,,,,39.0625,30.45113511,49.35311877,32.44274809,18.89909632,51.94398247,,,,,,,0.281692261,1871,6642,0.250713538,0.312670985,0.000262916,2,7607,,,3803.5,0.00013421,1,7451,,,7451,0.000402631,3,7451,,,2483.666667,3099,,,,,,,,1867,3056,0.26,,,,,,,,0.26,0.26,0.19,,,,,,,,0.15,0.22,0.684943429,3148,4596,0.615763231,0.754123628,0.471070395,977,2074,0.341148094,0.600992697,0.040474741,133,3286,,,0.181,441,,0.117851064,0.244148936,,,,,,,,,,0.234832636,0.124647269,0.345018003,0.096774194,0,0.226257441,4.566510918,143667,31461,0.946607736,8.1864141,0.182372055,449,2462,0.087969288,0.276774823,11.8312081,9,7607,,,87.71721865,37,42181,61.76101697,120.9066313,,,,,,,,,,91.11617312,59.52010939,133.5063048,88.14808879,44.00320833,157.7212799,,,,6.9,,,,,1,,,,,0.153846154,400,2600,0.079182714,0.228509593,0.100154083,0.027343832,0.172964335,0.053846154,0.013567784,0.094124524,0,0,0.012961696,0.762297586,2495,3273,0.685690873,0.8389043,,,,,,,,,,0.67113164,0.560303695,0.781959585,0.816765579,0.700556778,0.93297438,0.336,,3273,0.224724844,0.447275156,73.65271981,,,71.63485655,75.67058307,,,,,,,,,,73.81971433,70.9808852,76.65854347,73.52824066,69.97775756,77.07872375,,,,522.4218159,121,23761,427.3201716,617.5234603,,,,,,,,,,522.2235365,405.52701,662.0427688,544.121865,385.0530162,746.8497717,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.129,,,0.11,0.148,0.167,,,0.144,0.192,0.128,,,0.109,0.149,103.4,6,5802,,,0.123,950,,,,0.053652027,422.724318,7879,,,,,,,,,,,,,,,,,,,,,,,,,,0.347,,,0.332,0.362,0.334784712,1384,4134,0.296657053,0.372912372,0.195809524,514,2625,0.145766971,0.245852077,0.000671051,5,7451,,,1490.2,0.962101911,151.05,157,,,,,,,,2.505855785,,,,,,,,2.405797316,3.066711387,2.235947423,,,,,,,,2.157288098,2.782726037,0.052515146,,,,,-2206.1135,,,,,0.602533567,46042,76414,0.196183202,1.008883932,62748,,,53494.89362,72001.10638,,,,,,,,,,72969,49719.46809,96218.53192,83024,68642.7234,97405.2766,,,,,,0.672627919,1354,2013,,,24.83971045,,,,,0.236310321,,62748,,,2.844950213,2,703,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,42.21903234,25,59215,27.32193169,62.32362019,,,,,,,,,,48.04531432,28.92641775,75.02870979,,,,,,,,,1200,,,-888,-888,0.565198711,2631,4655,,,0.466,,,,,0.070943109,,,,,0.662396383,1758,2654,0.583106232,0.741686534,0.115563054,274,2371,0.032167495,0.198958612,0.90844009,2411,2654,0.867068211,0.94981197,7451,,,,,0.328949134,2451,7451,,,0.118776003,885,7451,,,0.011542075,86,7451,,,0.021607838,161,7451,,,0.006844719,51,7451,,,0.000402631,3,7451,,,0.687424507,5122,7451,,,0.279828211,2085,7451,,,0.11876348,826,6955,0.074214264,0.163312696,0.485169776,3615,7451,,,1,7694,7694,, -48,503,48503,TX,Young County,2024,1,12332.67177,406,49074,10419.03463,14246.30891,0,,,,2,,,,2,,,,2,10984.71803,7299.265353,15875.97598,,12636.28988,10414.82427,14857.75549,,,,,2,,0.179,,,0.149,0.211,3.875838382,,,3.045676133,4.854507975,5.471107407,,,4.385355223,6.691263731,0.057666214,85,1474,0.045765571,0.069566858,0,,,,,,,,,,0.070528967,0.045342775,0.095715159,0.051010587,0.037632034,0.06438914,,,,,,,0.175,,,0.136,0.217,0.361,,,0.278,0.45,6.5,0.136950692,0.137,,,0.255,,,0.206,0.309,0.834667264,14913,17867,,,0.17869346,,,0.142151751,0.219346582,0.066666667,1,15,0.003015681,0.225205905,166.9,30,17977,,,32.98119042,128,3881,27.26749068,38.69489015,,,,,,,,,,36.75777568,26.13837181,50.24908941,32.43847875,25.9818917,40.01274369,,,,,,,0.216877697,3066,14137,0.19185642,0.241898973,0.0008344,15,17977,,,1198.466667,0.000668077,12,17962,,,1496.833333,0.00072375,13,17962,,,1381.692308,3009,,,,,,,,1669,3036,0.3,,,,,,,,0.27,0.3,0.35,,,,,,,0.25,0.26,0.35,0.881055851,10948,12426,0.852249827,0.909861874,0.635065543,2713,4272,0.524134557,0.745996529,0.034269454,277,8083,,,0.222,931,,0.14812766,0.29587234,,,,,,,0.04040404,0,0.442399337,0.199367089,0.024328565,0.374405613,0.293318649,0.178500118,0.408137181,4.691997719,123423,26305,3.799785324,5.584210114,0.203227315,869,4276,0.100909339,0.305545292,12.23785949,22,17977,,,111.2161486,100,89915,89.41778346,133.0145137,,,,,,,,,,63.47374495,31.68586479,113.572063,124.0963334,99.26104853,153.2579622,,,,7.6,,,,,0,,,,,0.120160214,900,7490,0.087123,0.153197427,0.1,0.067023431,0.132976569,0.014018692,0,0.028735882,0.018024032,0.00436357,0.031684495,0.796558082,6480,8135,0.75090343,0.842212734,,,,,,,,,,0.85106383,0.794142471,0.907985188,0.760432008,0.718470402,0.802393614,0.205,,8135,0.153379488,0.256620512,72.23722924,,,70.90200412,73.57245435,,,,,,,,,,74.61420253,70.43760425,78.79080081,71.79183434,70.27361912,73.31004956,,,,598.3236593,406,49074,535.7720443,660.8752744,,,,,,,,,,479.9441805,336.1470036,664.4450489,625.1963828,553.9922048,696.4005608,,,,85.87837475,16,18631,49.08691135,139.4611003,,,,,,,,,,,,,98.44942161,50.87025276,171.971327,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.118,,,0.1,0.137,0.176,,,0.15,0.202,0.102,,,0.086,0.119,66.6,10,15017,,,0.137,2440,,,,0.136950692,2540.43533,18550,,,,,,,,,,,,,,,,,,,,,,,,,,0.348,,,0.331,0.363,0.254208245,2522,9921,0.222038032,0.286378458,0.13298713,589,4429,0.097242449,0.168731811,0.000779423,14,17962,,,1283,0.946219512,193.975,205,,,,,,,,2.676454806,,,,,,,,2.467222889,2.838097044,2.775584725,,,,,,,,2.581996196,2.912698989,0.011347281,,,,,-3371.869667,,,,,0.580668567,33612,57885,0.504807572,0.656529562,58297,,,50640.48936,65953.51064,,,,,,,,,,73597,41787.80851,105406.1915,64271,51632.87234,76909.12766,,,,,,0.601875,1926,3200,,,57.05505762,,,,,0.239806508,,58297,,,7.944389275,8,1007,,,,,,,,,,,,,,,,,,,,,,,,,,25.71374678,24,89915,15.91721453,39.3061934,26.69187566,,,,,,,,,,,,,27.17550676,16.1059276,42.94901674,,,,20.01890675,18,89915,11.86447287,31.63850333,,,,,,,,,,,,,23.08768993,13.19660965,37.492962,,,,28.49521518,36,126337,19.95769839,39.44938893,,,,,,,,,,,,,29.65417101,19.85986373,42.58833613,,,,17.77777778,,1800,,,12,20,0.639177657,8239,12890,,,0.571,,,,,23.41357822,,,,,0.736682089,5573,7565,0.698819352,0.774544825,0.098387764,714,7257,0.063137532,0.133637995,0.875346993,6622,7565,0.841754321,0.908939665,17962,,,,,0.235831199,4236,17962,,,0.205656386,3694,17962,,,0.013918272,250,17962,,,0.014196637,255,17962,,,0.007961252,143,17962,,,0.001224808,22,17962,,,0.204876963,3680,17962,,,0.755428126,13569,17962,,,0.033512619,567,16919,0.021944787,0.045080451,0.499610288,8974,17962,,,0.519505233,9282,17867,, -48,505,48505,TX,Zapata County,2024,1,9455.04204,200,39836,7653.668166,11256.41591,0,,,,2,,,,2,,,,2,9628.233717,7776.230061,11480.23737,,,,,2,,,,2,,0.33,,,0.282,0.379,5.047027051,,,4.038033397,6.163270928,5.480883708,,,4.300386062,6.764249911,0.077077748,115,1492,0.06354398,0.090611516,0,,,,,,,,,,0.077445652,0.063790496,0.091100808,,,,,,,,,,0.188,,,0.149,0.232,0.438,,,0.349,0.528,5.1,0.084227541,0.229,,,0.423,,,0.356,0.492,0.309741522,4302,13889,,,0.147535022,,,0.114967914,0.184308704,0.2,1,5,0.015594715,0.47750127,323.6,45,13908,,,45.44294103,178,3917,38.76699986,52.1188822,,,,,,,,,,46.18210444,39.35913452,53.00507435,,,,,,,,,,0.263056093,3128,11891,0.235651838,0.290460348,,0,13908,,,,0.000144415,2,13849,,,6924.5,,0,13849,,,,5293,,,,,,,,5414,6121,0.25,,,,,,,,0.24,0.31,0.33,,,,,,,,0.33,0.35,0.655839232,5189,7912,0.595452855,0.716225608,0.376023392,1286,3420,0.26899854,0.483048244,0.069213974,317,4580,,,0.471,2075,,0.337553192,0.604446809,,,,,,,,,,0.5408,0.475922293,0.605677708,0.364583333,0,0.916318267,7.521823065,89615,11914,5.238411824,9.805234306,0.341716303,1549,4533,0.196853233,0.486579372,0,0,13908,,,52.28130166,37,70771,36.81086118,72.06288754,,,,,,,,,,50.69632899,35.10868157,70.84303834,,,,,,,10.2,,,,,1,,,,,0.220682303,1035,4690,0.138646397,0.302718208,0.089632829,0.029035247,0.150230412,0.116204691,0.068589641,0.16381974,0.031982942,0,0.073475301,0.73677447,3440,4669,0.660318576,0.813230364,,,,,,,,,,0.745177423,0.671435122,0.818919724,,,,0.21,,4669,0.119808112,0.300191888,75.74848701,,,74.11633521,77.38063881,,,,,,,,,,75.26167449,73.62794791,76.89540108,,,,,,,502.7357846,200,39836,432.190696,573.2808732,,,,,,,,,,508.1647389,434.196132,582.1333458,,,,,,,54.27274521,11,20268,27.09275887,97.10893287,,,,,,,,,,50.53823217,24.23504673,92.94160834,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.169,,,0.144,0.196,0.184,,,0.157,0.211,0.188,,,0.163,0.217,121.5,13,10699,,,0.229,3190,,,,0.084227541,1180.701672,14018,,,,,,,,,,,,,,,,,,,,,,,,,,0.366,,,0.345,0.384,0.357275871,2686,7518,0.317956722,0.39659502,0.104017372,479,4605,0.07184716,0.136187585,0.000361037,5,13849,,,2769.8,0.93,212.04,228,,,,,,,,2.748391349,,,,,,,,2.745741927,,3.038622591,,,,,,,,3.029095677,,,,,,,-18948.12,,,,,0.88857256,35893,40394,0.533393719,1.243751402,39403,,,33358.57447,45447.42553,,,,,,,,,,34098,31488.6383,36707.3617,69200,40858.04255,97541.95745,,,,,,0.881046547,2896,3287,,,,,,,,0.369210466,,39403,,,2.461033634,3,1219,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.06611454,13,99494,6.957155699,22.34345379,,,,,,,,,,13.80878026,7.352593917,23.61343479,,,,,,,5.263157895,,1900,,,0,10,0.536565097,3874,7220,,,0.239,,,,,34.51777203,,,,,0.745196507,3413,4580,0.696103,0.794290013,0.118592015,502,4233,0.058471369,0.178712661,0.654585153,2998,4580,0.59524095,0.713929355,13849,,,,,0.321250632,4449,13849,,,0.131922883,1827,13849,,,0.003538162,49,13849,,,0.004982309,69,13849,,,0.002671673,37,13849,,,0.000649866,9,13849,,,0.950321323,13161,13849,,,0.040075096,555,13849,,,0.207255916,2645,12762,0.162453144,0.252058688,0.499458445,6917,13849,,,0.212182303,2947,13889,, -48,507,48507,TX,Zavala County,2024,1,13737.26679,209,31256,11320.04644,16154.48714,0,,,,2,,,,2,,,,2,13554.31821,11075.75889,16032.87753,,,,,2,,,,2,,0.327,,,0.283,0.371,4.96462251,,,4.305999103,5.662196535,5.253910201,,,4.601437403,5.925473935,0.08765653,98,1118,0.071079508,0.104233551,0,,,,,,,,,,0.087203792,0.070178897,0.104228686,,,,,,,,,,0.187,,,0.154,0.222,0.45,,,0.408,0.494,3.8,0.230499503,0.216,,,0.414,,,0.368,0.465,,,9670,,,0.151095161,,,0.133298126,0.169712904,0.318181818,7,22,0.204127461,0.433005911,503.5,48,9534,,,46.18408123,141,3053,38.56085474,53.80730773,,,,,,,,,,45.61042524,37.85877137,53.36207911,,,,,,,,,,0.204349505,1588,7771,0.178136739,0.230562271,,0,9534,,,,0.000426576,4,9377,,,2344.25,0.000639864,6,9377,,,1562.833333,1884,,,,,,,,2000,,0.14,,,,,,,,0.15,,0.22,,,,,,,,0.21,0.28,0.725523875,4224,5822,0.670729143,0.780318607,0.568515498,1394,2452,0.378533636,0.758497359,0.085714286,291,3395,,,0.419,1136,,0.262914894,0.575085106,,,,,,,,,,0.559466469,0.473523865,0.645409073,,,,4.7650417,95987,20144,1.889661799,7.640421601,0.583421145,1661,2847,0.358789822,0.808052468,4.195510803,4,9534,,,75.24717823,43,57145,54.45675599,101.3574553,,,,,,,,,,68.97451671,48.56442512,95.07228556,,,,,,,8.7,,,,,0,,,,,0.144217687,530,3675,0.07397302,0.214462355,0.087912088,0.028458991,0.147365185,0.072108844,0.014667913,0.129549774,0.021768708,0.000173023,0.043364392,0.859080842,3103,3612,0.786792847,0.931368837,,,,,,,,,,0.794716327,0.680698695,0.90873396,,,,0.147,,3612,0.080575136,0.213424864,71.27486108,,,69.58637936,72.96334281,,,,,,,,,,71.39051537,69.63086152,73.15016922,,,,,,,653.8444742,209,31256,562.8963632,744.7925853,,,,,,,,,,641.919855,548.6808081,735.158902,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.167,,,0.147,0.189,0.182,,,0.163,0.201,0.19,,,0.174,0.207,157.7,12,7609,,,0.216,2140,,,,0.230499503,2691.542699,11677,,,,,,,,,,,,,,,,,,,,,,,,,,0.373,,,0.355,0.389,0.265746501,1367,5144,0.228810331,0.302682671,0.087441526,243,2779,0.06122876,0.113654292,0.001173083,11,9377,,,852.4545455,0.905120482,150.25,166,,,,,,,,2.235773555,,,,,,,,2.209508894,,2.256444931,,,,,,,,2.256813432,,0.162834604,,,,,-6594.674,,,,,0.651678826,30103,46193,0.287574415,1.015783236,36237,,,31390.02128,41083.97872,,,,,,,,,,48596,33827.48936,63364.51064,80733,34096.91489,127369.0851,,,,,,0.85768904,2019,2354,,,,,,,,0.337941883,,36237,,,8.310249308,6,722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,23.34066312,19,81403,14.05260391,36.44933672,,,,,,,,,,22.28514499,12.98191819,35.68067592,,,,,,,,,1400,,,-888,-888,0.541285538,4379,8090,,,0.348,,,,,54.77509641,,,,,0.725124015,2485,3427,0.640356582,0.809891448,0.073079325,234,3202,0.018030823,0.128127827,0.802159323,2749,3427,0.729792719,0.874525927,9377,,,,,0.291457822,2733,9377,,,0.146208809,1371,9377,,,0.009278021,87,9377,,,0.014076997,132,9377,,,0.003519249,33,9377,,,0.002026234,19,9377,,,0.936973446,8786,9377,,,0.046176816,433,9377,,,0.058647118,528,9003,0.034272782,0.083021453,0.493548043,4628,9377,,,0.306204757,2961,9670,, -49,000,49000,UT,Utah,2024,,6328.419529,28579,9349084,6231.960253,6424.878805,0,16392.87068,14825.033,17960.70836,,3410.439803,2961.564456,3859.31515,,10166.37242,9043.994061,11288.75077,,5993.034647,5745.413593,6240.655702,,6204.298494,6095.487354,6313.109634,,15329.53074,13828.21301,16830.84847,,,0.126,,,0.119,0.134,3.565640452,,,3.3823092,3.748971704,5.207585157,,,4.996548291,5.418622023,0.072944694,24156,331155,0.072058987,0.073830401,0,0.070605723,0.060926975,0.080284471,0.097811468,0.09137349,0.104249447,0.110943016,0.101168517,0.120717515,0.081596437,0.07935845,0.083834424,0.068500475,0.067492544,0.069508406,0.086827238,0.077310303,0.096344173,0.079300217,0.073315499,0.085284935,0.073,,,0.067,0.08,0.316,,,0.305,0.328,8.1,0.057895119,0.095,,,0.175,,,0.167,0.185,0.848248389,2775143,3271616,,,0.124058085,,,0.115995004,0.132597579,0.223104693,309,1385,0.209825956,0.236621363,336.2,11221,3337975,,,12.08168038,10580,875706,11.85146169,12.31189907,25,21.61059913,28.38940087,4.095601436,3.21029774,5.149603915,16.86770619,14.34685113,19.38856125,28.27158849,27.42090155,29.12227543,7.914401757,7.698453694,8.13034982,14.0321915,11.67382053,16.39056247,12.98183269,11.63705478,14.32661059,0.10113864,295109,2917866,0.096372683,0.105904598,0.00056022,1870,3337975,,,1785.013369,0.000693919,2346,3380800,,,1441.091219,0.003855892,13036,3380800,,,259.3433569,1528,,,,,2678,1431,2932,1679,1484,0.41,,,,,0.24,0.34,0.36,0.27,0.42,0.47,,,,,0.26,0.47,0.38,0.34,0.48,0.932414044,1827456,1959919,0.930819153,0.934008934,0.718172159,669860,932729,0.710794506,0.725549813,0.023165115,40378,1743052,,,0.085,78357,,0.076659575,0.093340426,0.24789916,0.210333608,0.285464712,0.126353021,0.096773922,0.155932121,0.24173028,0.190174349,0.293286211,0.158128741,0.146781442,0.169476039,0.065866683,0.061702073,0.070031292,3.745312916,154820,41337,3.687249235,3.803376597,0.14140455,131946,933110,0.135267553,0.147541548,3.54406489,1183,3337975,,,68.18939076,10949,16056750,66.9121121,69.46666941,152.9213944,133.2008759,172.641913,26.87674915,21.83107082,31.92242748,82.17632999,69.15494746,95.19771253,47.5378919,44.72730418,50.34847961,73.09424932,71.5951426,74.59335605,59.08437871,47.80279069,72.22758906,4.7,,,,,0.310344828,,,,,0.131784182,132225,1003345,0.12883484,0.134733524,0.097544181,0.094783039,0.100305322,0.033612566,0.031944823,0.035280309,0.008068013,0.007232548,0.008903477,0.706996842,1143356,1617201,0.703370968,0.710622716,0.670380746,0.641597061,0.699164432,0.623380334,0.606609597,0.64015107,0.672402,0.634052203,0.710751796,0.691198934,0.678543951,0.703853917,0.716656189,0.713316153,0.719996224,0.254,,1617201,0.249704024,0.258295976,79.05251249,,,78.95176017,79.1532648,70.97078826,69.7164005,72.22517602,85.53663543,84.57437646,86.4988944,75.04825994,73.76497716,76.33154272,80.81256359,80.36871242,81.25641477,79.06412246,78.95497845,79.17326646,69.78964938,68.62122463,70.95807413,309.7490126,28579,9349084,306.126232,313.3717932,738.2053969,678.1834191,798.2273747,176.6527483,159.2198489,194.0856477,496.352927,446.6462209,546.0596332,286.4349243,275.2741083,297.5957403,306.2448785,302.2716651,310.2180919,742.2475057,679.5774815,804.9175298,47.33172254,1956,4132535,45.23411635,49.42932873,56.75675676,35.13332698,86.75873172,52.02101649,37.16457686,70.83785955,99.14270718,73.8182575,130.3543504,53.6439779,48.39342715,58.89452864,44.09083572,41.72388439,46.45778705,92.8946402,67.22831172,125.1284707,5.33787722,1795,336276,5.090936662,5.584817778,,,,4.074577108,2.804751398,5.722221172,8.062418726,5.478022361,11.44395982,6.729951828,6.053282909,7.406620747,4.91570757,4.63906965,5.19234549,18.22752986,13.84092762,23.56330916,9.174311927,7.151826227,11.5911912,0.108097655,,,0.100844747,0.115805019,0.16464173,,,0.15566167,0.174033067,0.082,,,0.076,0.088,129.1,3453,2675193,,,0.095,316980,,,,0.057895119,160015.4516,2763885,,,18.94053102,1855,9793812,18.07859255,19.80246949,42.60432598,30.29584061,58.24151613,,,,29.36401009,20.3354306,41.03326087,13.73189457,11.80942933,15.65435981,20.3713002,19.3561515,21.3864489,,,,0.308964734,,,0.297757469,0.320401367,0.113094941,223910,1979841,0.107137494,0.119052387,0.078683378,77494,984884,0.071534442,0.085832314,0.001174574,3971,3380800,,,851.3724503,0.880345405,89167.545,101287,,,0.060015187,12804,213346,0.05455098,0.065479393,3.171765766,,,,,,2.954032417,2.546428037,2.649576866,3.325850557,3.103573072,,,,,,2.908824715,2.367673137,2.475619409,3.286645446,0.135078425,,,,,-684.2411,,,,,0.715145098,46601,65163,0.705632126,0.724658069,88531,,,86525.7234,90536.2766,61542,55682.25532,67401.74468,86191,81228.44681,91153.55319,57433,52086.78723,62779.21277,71154,69166.59575,73141.40426,90761,89997.25532,91524.74468,,,,,,0.269846596,184982,685508,,,69.81461461,,,,,0.253409192,,,,,4.574372189,,,,,2.483726165,549,22103886,2.27596058,2.69149175,11.40229186,7.305663544,16.96570646,,,,7.99840032,4.885630708,12.35288059,4.867305482,4.096048763,5.638562201,1.806944016,1.606439818,2.007448215,6.431872686,3.516364649,10.79158946,21.35357232,3273,16056750,20.61165292,22.09549173,20.38395068,31.95648821,23.48042555,42.49535478,10.11324534,7.083192705,14.00099442,18.39527163,13.01758904,25.24894753,11.67420054,10.13168331,13.21671777,23.31401009,22.44048106,24.18753913,14.4777819,9.45736781,21.21330492,12.95405359,2080,16056750,12.39734222,13.51076496,21.18391611,14.48978294,29.90536885,5.917816326,3.791656583,8.805241606,18.26140667,12.64655498,25.51848543,9.472973908,8.218330368,10.72761745,13.67766036,13.02917996,14.32614077,14.92657989,9.563741381,22.20956769,8.681731348,1919,22103886,8.29329047,9.070172226,39.43292602,31.40810546,48.8830447,3.637911402,2.222130795,5.618459109,9.9980004,6.470178703,14.75902088,9.925485689,8.824122538,11.02684884,8.333950127,7.903347602,8.764552651,6.891292163,3.857003911,11.36613843,19.03796879,,429300,,,3045,5128,0.714529057,1488289,2082895,,,,,,,,144.2356787,,,,,0.707224843,751652,1062819,0.702476024,0.711973662,0.107853993,112405,1042196,0.104838253,0.110869733,0.919196025,976939,1062819,0.916635214,0.921756836,3380800,,,,,0.275558448,931608,3380800,,,0.119853289,405200,3380800,,,0.012168126,41138,3380800,,,0.015419427,52130,3380800,,,0.027957584,94519,3380800,,,0.011625059,39302,3380800,,,0.151469179,512087,3380800,,,0.766947468,2592896,3380800,,,0.021578088,65690,3044292,0.020703828,0.022452347,0.492182028,1663969,3380800,,,0.102185892,334313,3271616,, -49,001,49001,UT,Beaver County,2024,1,9270.932681,96,19544,6787.487919,12366.125,0,,,,2,,,,2,,,,2,,,,2,8904.555445,6269.628796,12273.75672,,,,,2,,0.136,,,0.113,0.162,3.727901985,,,2.88647231,4.622677882,4.926088227,,,3.919549795,5.988045638,0.081346424,58,713,0.061280626,0.101412221,0,,,,,,,,,,0.074626866,0.030132019,0.119121713,0.078014184,0.055879903,0.100148466,,,,,,,0.107,,,0.082,0.136,0.329,,,0.256,0.41,8.7,0.042305092,0.083,,,0.191,,,0.154,0.238,0.799915158,5657,7072,,,0.135485164,,,0.106190813,0.16882291,0.266666667,4,15,0.129817183,0.413965161,96.6,7,7249,,,23.37938363,44,1882,16.98749594,31.38573129,,,,,,,,,,,,,25.8186398,18.52790168,35.02590023,,,,,,,0.129848784,790,6084,0.109593465,0.150104103,0.0008277,6,7249,,,1208.166667,0.000682408,5,7327,,,1465.4,0.000818889,6,7327,,,1221.166667,2558,,,,,,,,,2653,0.29,,,,,,,,,0.29,0.22,,,,,,,,,0.22,0.922895544,3914,4241,0.899819874,0.945971214,0.730046948,1244,1704,0.591733651,0.868360246,0.027187173,78,2869,,,0.132,275,,0.079574468,0.184425532,,,,,,,,,,0.333333333,0.145118919,0.521547747,0.012865497,0,0.034339723,3.399152588,125150,36818,2.223751697,4.57455348,0.081772499,179,2189,0.024448632,0.139096366,0,0,7249,,,115.7750995,39,33686,82.32741343,158.2683722,,,,,,,,,,,,,134.180791,94.95431372,184.1736191,,,,4.4,,,,,0,,,,,0.06772009,150,2215,0.038648886,0.096791295,0.046952596,0.010398608,0.083506584,0.024379233,0.00268735,0.046071115,0,0,0.012932437,0.772742309,2336,3023,0.702438461,0.843046157,,,,,,,,,,,,,0.780833333,0.703436712,0.858229955,0.191,,3023,0.125284204,0.256715796,75.45085948,,,73.27978312,77.62193584,,,,,,,,,,,,,75.1059963,72.86172241,77.35027018,,,,436.5387351,96,19544,350.1168307,537.827931,,,,,,,,,,,,,444.4179463,350.7276933,555.4461806,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.109,,,0.093,0.128,0.162,,,0.14,0.188,0.085,,,0.071,0.1,,,,,,0.083,580,,,,0.042305092,280.4404516,6629,,,,,,,,,,,,,,,,,,,,,,,,,,0.318,,,0.302,0.334,0.144039307,557,3867,0.12020952,0.167869094,0.106255356,248,2334,0.070510675,0.142000037,0.001228334,9,7327,,,814.1111111,0.925,117.475,127,,,,,,,,3.658246038,,,,,,,,3.262462865,3.731148804,3.504709796,,,,,,,,3.229164712,3.5824079,0.025753661,,,,,203.9785,,,,,0.669597474,42419,63350,0.513646408,0.825548541,66394,,,59235.53192,73552.46809,69554,62551.61702,76556.38298,,,,,,,70880,37150.12766,104609.8723,83149,72600.74468,93697.25532,,,,,,0.370299554,581,1569,,,,,,,,0.256935868,,66394,,,7.751937985,5,645,,,,,,,,,,,,,,,,,,,,,,,,,,34.97948851,11,33686,17.46163464,62.58796728,32.65451523,,,,,,,,,,,,,40.63844085,19.48771199,74.73553963,,,,29.68592294,10,33686,14.23555393,54.59346922,,,,,,,,,,,,,35.31073446,16.93286969,64.93769789,,,,,,,,,,,,,,,,,,,,,,,,,,,12,,1000,,,7,5,0.740740741,3100,4185,,,0.44,,,,,15.797871,,,,,0.804803493,1843,2290,0.755092265,0.854514722,0.08558952,196,2290,0.033042338,0.138136701,0.799563319,1831,2290,0.739591687,0.859534951,7327,,,,,0.286884127,2102,7327,,,0.154087621,1129,7327,,,0.003275556,24,7327,,,0.021973523,161,7327,,,0.00818889,60,7327,,,0.003685001,27,7327,,,0.134707247,987,7327,,,0.828442746,6070,7327,,,0.021589343,141,6531,0.004612464,0.038566222,0.464856012,3406,7327,,,1,7072,7072,, -49,003,49003,UT,Box Elder County,2024,1,6804.258581,590,163404,6063.32049,7545.196672,0,,,,2,,,,2,,,,2,9429.689902,6705.43133,12890.69652,,6512.48429,5733.365346,7291.603233,,,,,2,,0.133,,,0.112,0.158,3.731829372,,,2.980654914,4.638962175,5.354678076,,,4.462164509,6.355347639,0.073348361,423,5767,0.066619609,0.080077114,0,,,,,,,,,,0.064205458,0.044957339,0.083453576,0.072611986,0.065337858,0.079886114,,,,,,,0.112,,,0.086,0.141,0.349,,,0.291,0.412,8.5,0.051067889,0.089,,,0.184,,,0.15,0.223,0.748950855,43189,57666,,,0.13670196,,,0.108965005,0.168776522,0.288461539,15,52,0.216174871,0.36280725,189.3,113,59688,,,15.58720774,232,14884,13.58144111,17.59297437,,,,,,,,,,36.57817109,28.04427403,46.89156453,12.39504198,10.44367827,14.3464057,,,,,,,0.099866921,5178,51849,0.086760538,0.112973304,0.000284814,17,59688,,,3511.058824,0.000650428,40,61498,,,1537.45,0.004618036,284,61498,,,216.5422535,1114,,,,,,,,,1071,0.4,,,,,,,,0.17,0.4,0.45,,,,,,,,0.31,0.45,0.934216944,32564,34857,0.921278635,0.947155252,0.613661814,9316,15181,0.567978319,0.65934531,0.022521871,623,27662,,,0.091,1673,,0.060021277,0.121978723,,,,,,,0.797468354,0.185777594,1,0.272851296,0.170511652,0.37519094,0.055152201,0.038643189,0.071661214,3.514565206,130060,37006,3.106250614,3.922879797,0.112504161,2028,18026,0.082144269,0.142864052,2.513067953,15,59688,,,82.69155694,233,281770,72.07364108,93.30947281,,,,,,,,,,103.1687546,68.55488819,149.1075753,82.22775862,70.85995677,93.59556047,,,,6.8,,,,,0,,,,,0.117630545,2095,17810,0.097006568,0.138254521,0.093039049,0.073461007,0.112617091,0.023020775,0.014265726,0.031775824,0.005334082,0.000402034,0.01026613,0.758415397,20255,26707,0.737436974,0.77939382,,,,,,,,,,0.772927906,0.669632347,0.876223465,0.750986972,0.716153404,0.78582054,0.337,,26707,0.305792985,0.368207015,77.86219331,,,77.16223273,78.56215388,,,,,,,,,,75.87318843,72.92556164,78.82081521,78.06930021,77.33617971,78.80242071,,,,348.3256444,590,163404,319.6816997,376.9695891,,,,,,,,,,434.581435,321.505738,574.5397041,336.9612497,307.2570122,366.6654871,,,,32.50594859,25,76909,21.03613602,47.9851925,,,,,,,,,,,,,31.00727121,18.9400468,47.88821554,,,,3.779419344,22,5821,2.368541981,5.722086306,,,,,,,,,,,,,,,,,,,,,,0.11,,,0.094,0.127,0.171,,,0.148,0.196,0.086,,,0.073,0.1,53.4,25,46810,,,0.089,5060,,,,0.051067889,2552.11775,49975,,,19.68264627,34,172741,13.63080472,27.50452533,,,,,,,,,,,,,18.72133296,12.44018979,27.05753864,,,,0.33,,,0.315,0.345,0.112138419,3772,33637,0.095457568,0.12881927,0.078906004,1506,19086,0.057459196,0.100352813,0.000422778,26,61498,,,2365.307692,0.87,790.83,909,,,0.087784241,332,3782,0.045711516,0.129856966,3.198870397,,,,,,,,2.684300105,3.27690231,3.117515402,,,,,,,,2.529981935,3.216044021,0.021502197,,,,,1281.154,,,,,0.681536597,40486,59404,0.639886045,0.723187149,79450,,,70890.34043,88009.65957,,,,49250,24742.25532,73757.74468,,,,58027,43853.04255,72200.95745,74459,71103.76596,77814.23404,,,,,,0.291426375,3790,13005,,,,,,,,0.234197609,,79450,,,2.962625342,13,4388,,,,,,,,,,,,,,,,,,,,,,,,,,20.67893981,55,281770,15.53465603,26.98153081,19.51946623,,,,,,,,,,,,,19.60733655,14.24672075,26.32193414,,,,11.71167974,33,281770,8.061781443,16.44755271,,,,,,,,,,,,,11.86370647,7.945310415,17.03826145,,,,13.17809026,51,387006,9.811953778,17.32675498,,,,,,,,,,,,,13.68269823,10.01745478,18.25080199,,,,25.18072289,,8300,,,83,126,0.732033049,27023,36915,,,0.72,,,,,49.34023461,,,,,0.7606833,14116,18557,0.734132935,0.787233666,0.097139055,1752,18036,0.076249951,0.118028159,0.915180255,16983,18557,0.894689897,0.935670614,61498,,,,,0.30456275,18730,61498,,,0.128817197,7922,61498,,,0.004178998,257,61498,,,0.011349963,698,61498,,,0.008423038,518,61498,,,0.002617971,161,61498,,,0.101808189,6261,61498,,,0.86171908,52994,61498,,,0.00543448,293,53915,0.001927565,0.008941395,0.484975121,29825,61498,,,0.317379392,18302,57666,, -49,005,49005,UT,Cache County,2024,1,5015.619039,805,379627,4576.878163,5454.359915,0,,,,2,,,,2,,,,2,4706.962712,3470.542731,6240.749673,,5079.365828,4594.771661,5563.959994,,,,,2,,0.139,,,0.118,0.164,4.149343725,,,3.428234359,4.971916582,5.411905878,,,4.643715887,6.246581877,0.063224941,943,14915,0.059319174,0.067130708,0,,,,0.086614173,0.052023356,0.121204991,0.06097561,0.024352884,0.097598335,0.067159932,0.055456077,0.078863786,0.061061875,0.056830079,0.065293671,,,,0.090909091,0.051933721,0.129884461,0.1,,,0.078,0.126,0.328,,,0.279,0.38,7.9,0.08529053,0.098,,,0.183,,,0.15,0.219,0.813674392,108344,133154,,,0.120231358,,,0.09725122,0.145699655,0.132075472,7,53,0.07088962,0.208043446,227,312,137417,,,7.097636312,324,45649,6.32478258,7.870490044,,,,,,,,,,21.60714286,17.75714286,25.45714286,4.378704544,3.708542559,5.04886653,64.51612903,30.93799159,118.6474583,19.03807615,11.4621655,29.7303142,0.097400538,11668,119794,0.085485644,0.109315431,0.000414796,57,137417,,,2410.824561,0.000656332,92,140173,,,1523.619565,0.002140213,300,140173,,,467.2433333,1649,,,,,,,,784,1535,0.41,,,,,,0.43,,0.25,0.42,0.5,,,,,,0.55,,0.29,0.51,0.941568918,64779,68799,0.932107794,0.951030042,0.753331591,25947,34443,0.720471787,0.786191396,0.019996915,1426,71311,,,0.095,3822,,0.071170213,0.118829787,0.555555556,0.086785747,1,0.359484778,0.216263058,0.502706498,0.387096774,0,0.934274704,0.326258551,0.251142006,0.401375097,0.092676978,0.073602503,0.111751454,3.745725236,127055,33920,3.549874186,3.941576285,0.130096256,5163,39686,0.10636849,0.153824022,2.983619203,41,137417,,,52.06917011,337,647216,46.50984878,57.62849143,,,,,,,,,,24.01503058,13.9896403,38.45039034,56.471233,50.13350754,62.80895845,,,,8.2,,,,,0,,,,,0.145907024,5775,39580,0.131971169,0.159842879,0.112566777,0.100040145,0.125093409,0.034487115,0.026784088,0.042190141,0.009600809,0.004768943,0.014432674,0.714759736,47390,66302,0.698584157,0.730935315,,,,0.656050955,0.514978499,0.797123412,,,,0.698530526,0.651208931,0.74585212,0.724499783,0.705889532,0.743110033,0.128,,66302,0.113504906,0.142495094,80.7057996,,,80.18427834,81.22732087,,,,95.02290972,80.64902448,109.396795,,,,83.90799503,80.54787087,87.26811919,80.50262832,79.95372009,81.05153655,,,,251.7343611,805,379627,234.0341579,269.4345643,,,,,,,,,,185.569429,136.8242478,246.0381405,256.4270457,237.2817507,275.5723406,,,,37.74611298,68,180151,29.31133369,47.85219241,,,,,,,,,,,,,41.54031488,31.69963649,53.47061951,,,,4.413411501,67,15181,3.420333293,5.604876598,,,,,,,,,,,,,4.312065799,3.239356542,5.6263105,,,,,,,0.12,,,0.102,0.139,0.169,,,0.146,0.192,0.09,,,0.077,0.105,53.4,58,108695,,,0.098,12930,,,,0.08529053,9608.489962,112656,,,9.350281772,37,395710,6.583461264,12.88813175,,,,,,,,,,,,,10.60506437,7.386815906,14.74907732,,,,0.298,,,0.283,0.313,0.111927572,8926,79748,0.09643821,0.127416934,0.073093723,3079,42124,0.055221383,0.090966064,0.000813281,114,140173,,,1229.587719,0.929854894,1890.395,2033,,,0.057177389,615,10756,0.0356113,0.078743479,3.354302371,,,,,,3.005356928,,2.721913588,3.4835879,3.351229432,,,,,,2.677792695,,2.482703191,3.522531684,0.073534651,,,,,-1195.82655,,,,,0.694848107,40691,58561,0.656639666,0.733056549,76631,,,71238.31915,82023.68085,73500,63047.06383,83952.93617,56042,38815.44681,73268.55319,,,,62676,55107.65957,70244.34043,75274,73094.76596,77453.23404,,,,,,0.322614841,9130,28300,,,76.91742218,,,,,0.242812961,,76631,,,4.323714635,46,10639,,,,,,,,,,,,,,,,,,,,,,,,,,18.5605186,108,647216,14.86629744,22.25473977,16.6868557,,,,,,,,,,,,,19.87559645,15.91953798,24.5164748,,,,8.806951621,57,647216,6.670299153,11.41042734,,,,,,,,,,,,,8.887276013,6.55277576,11.78323863,,,,8.644381377,77,890752,6.822010599,10.80399354,,,,,,,,,,10.36828135,4.97199392,19.06763856,8.326640684,6.383987667,10.67437757,,,,31.64772727,,17600,,,235,322,0.699526521,58358,83425,,,0.741,,,,,53.09209033,,,,,0.641162088,26748,41718,0.628362107,0.65396207,0.119991247,4935,41128,0.104663979,0.135318515,0.914952778,38170,41718,0.905863021,0.924042536,140173,,,,,0.289285383,40550,140173,,,0.10137473,14210,140173,,,0.008817675,1236,140173,,,0.009994792,1401,140173,,,0.023485265,3292,140173,,,0.006113874,857,140173,,,0.112939011,15831,140173,,,0.829389397,116258,140173,,,0.015756353,1953,123950,0.01242444,0.019088267,0.497135682,69685,140173,,,0.144396714,19227,133154,, -49,007,49007,UT,Carbon County,2024,1,11146.47398,351,57337,9452.906993,12840.04096,0,,,,2,,,,2,,,,2,12370.84845,7752.744858,18729.61321,1,10869.72142,9031.131292,12708.31155,,,,,2,,0.164,,,0.139,0.191,4.376585092,,,3.554191619,5.270205129,5.868264468,,,4.941716698,6.834399851,0.110767327,179,1616,0.095465301,0.126069353,0,,,,,,,,,,0.143518519,0.096762001,0.190275036,0.108532934,0.09185331,0.125212559,,,,,,,0.136,,,0.107,0.169,0.391,,,0.332,0.452,6.9,0.090348291,0.141,,,0.225,,,0.184,0.268,0.69973545,14283,20412,,,0.12901448,,,0.103637087,0.157435657,0.15,3,20,0.050642257,0.283837277,240.5,49,20372,,,16.72002846,94,5622,13.51148495,20.46108035,,,,,,,,,,13.97205589,7.63865297,23.44273565,17.31701686,13.62093228,21.70703058,,,,,,,0.094573643,1525,16125,0.080275771,0.108871516,0.000392696,8,20372,,,2546.5,0.001020855,21,20571,,,979.5714286,0.002236158,46,20571,,,447.1956522,1858,,,,,,,,1530,1743,0.44,,,,,,,,0.38,0.44,0.48,,,,,,,,0.37,0.49,0.919915701,12222,13286,0.901603782,0.938227619,0.666189405,3257,4889,0.589863045,0.742515765,0.035110533,297,8459,,,0.168,857,,0.102468085,0.233531915,,,,,,,,,,0.339912281,0.212804685,0.467019877,0.161418299,0.097275538,0.22556106,4.409717604,99470,22557,3.786670586,5.032764623,0.197825258,1037,5242,0.125390025,0.27026049,5.399568035,11,20372,,,101.8020928,104,102159,82.23636048,121.3678252,,,,,,,,,,94.24387415,50.1808938,161.159895,105.3042583,84.56796638,129.5859512,,,,4.8,,,,,0,,,,,0.175,1365,7800,0.137939233,0.212060767,0.128738622,0.094896109,0.162581135,0.021025641,0.008112684,0.033938598,0.033974359,0.017533528,0.05041519,0.793851494,6404,8067,0.770118899,0.817584089,,,,,,,,,,0.766069547,0.68366349,0.848475603,0.779370433,0.748554904,0.810185962,0.141,,8067,0.10611967,0.17588033,73.74795645,,,72.48495216,75.01096074,,,,,,,,,,74.12533565,70.21457394,78.03609737,73.68478229,72.31807475,75.05148984,,,,499.7454329,351,57337,444.2749631,555.2159027,,,,,,,,,,484.8355309,333.7384707,680.8893452,498.6331936,439.1072022,558.1591851,,,,72.11334521,17,23574,42.00868105,115.4604514,,,,,,,,,,,,,87.03220192,49.74642327,141.3348433,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.131,,,0.112,0.15,0.185,,,0.16,0.211,0.098,,,0.084,0.113,101.1,17,16819,,,0.141,2840,,,,0.090348291,1933.724472,21403,,,29.22315123,18,61595,17.31949149,46.1851778,,,,,,,,,,,,,27.56122529,15.06797834,46.24305284,,,,0.367,,,0.352,0.38,0.10883679,1207,11090,0.09096445,0.12670913,0.065561417,348,5308,0.045306098,0.085816736,0.001263915,26,20571,,,791.1923077,0.871535581,232.7,267,,,0.093975904,117,1245,0.030470569,0.157481239,3.239794741,,,,,,,,3.05905559,3.264143012,3.425204686,,,,,,,,2.890135061,3.519558041,0.022022463,,,,,11.01465,,,,,0.594333157,38155,64198,0.507868373,0.680797941,59243,,,51717.55319,66768.44681,,,,,,,,,,43182,24236.12766,62127.87234,55182,49385.40426,60978.59575,,,,,,0.40667176,1597,3927,,,62.49171637,,,,,0.314079301,,59243,,,4.594180704,6,1306,,,,,,,,,,,,,,,,,,,,,,,,,,24.52087447,26,102159,15.71098696,36.48511752,25.4505232,,,,,,,,,,,,,26.45438222,16.5788205,40.0522526,,,,24.47165693,25,102159,15.83676607,36.1249931,,,,,,,,,,,,,26.0302661,16.31302918,39.4101357,,,,15.38063578,22,143037,9.638962557,23.28646741,,,,,,,,,,,,,16.04743283,9.661602855,25.0600542,,,,48.46153846,,2600,,,53,73,0.634541145,9369,14765,,,0.6,,,,,47.44075554,,,,,0.669542386,5355,7998,0.63840865,0.700676121,0.139640223,1079,7727,0.105043583,0.174236862,0.823330833,6585,7998,0.785829413,0.860832252,20571,,,,,0.25132468,5170,20571,,,0.189781732,3904,20571,,,0.00549317,113,20571,,,0.017111468,352,20571,,,0.006659861,137,20571,,,0.002916727,60,20571,,,0.138350105,2846,20571,,,0.822662972,16923,20571,,,0.00466286,89,19087,0,0.01194883,0.500704876,10300,20571,,,0.34616892,7066,20412,, -49,009,49009,UT,Daggett County,2024,0,,,,,,2,,,,2,,,,2,,,,2,,,,2,,,,2,,,,2,,0.128,,,0.107,0.151,3.613763227,,,2.834630846,4.497044842,5.104665325,,,4.105339021,6.215526732,,,,,,0,,,,,,,,,,,,,,,,,,,,,,0.109,,,0.084,0.136,0.341,,,0.265,0.425,7.4,0.153846154,0.09,,,0.182,,,0.144,0.225,0.977540107,914,935,,,0.120285142,,,0.094250337,0.152487393,0.5,1,2,0.104528646,0.771195053,0,0,976,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.118367347,87,735,0.099303517,0.137431177,0,0,976,,,-976,0,0,1014,,,-1014,,0,1014,,,,,,,,,,,,,,0.38,,,,,,,,,0.38,0.47,,,,,,,,,0.47,0.927738928,398,429,0.842738123,1,0.760330579,92,121,0.458633127,1,0.045454546,19,418,,,0.089,19,,0.053255319,0.124744681,,,,,,,,,,,,,0.014184397,0,0.159673962,4.061613445,120833,29750,2.553209326,5.570017564,0,0,161,0,0.125591584,0,0,976,,,,,,,,,,,,,,,,,,,,,,,,,,4.4,,,,,0,,,,,0.058823529,10,170,0,0.17581812,0.058823529,0,0.3234598,0,0,0.168210263,0.023529412,0,0.124246788,0.66796875,171,256,0.548631782,0.787305718,,,,,,,,,,,,,0.624584718,0.433792097,0.815377338,0.204,,256,0,0.44851092,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.107,,,0.091,0.124,0.161,,,0.138,0.185,0.082,,,0.069,0.097,0,0,838,,,0.09,50,,,,0.153846154,162.9230767,1059,,,,,,,,,,,,,,,,,,,,,,,,,,0.324,,,0.308,0.34,0.118773946,62,522,0.098518627,0.139029266,0.116883117,27,231,0.075180989,0.158585245,0.000986193,1,1014,,,1014,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5169.124,,,,,0.649431002,35268,54306,0.264869274,1.03399273,66427,,,56554.31915,76299.68085,,,,,,,,,,,,,59375,41433.55319,77316.44681,,,,,,0.172897196,37,214,,,,,,,,0.256808226,,66427,,,35.71428571,1,28,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,100,,,-888,-888,1,619,440,,,0.219,,,,,0.00711799,,,,,0.838297872,197,235,0.534432985,1,0.147186147,34,231,0,0.351764044,0.927659575,218,235,0.589539973,1,1014,,,,,0.212031558,215,1014,,,0.265285996,269,1014,,,0.000986193,1,1014,,,0.013806706,14,1014,,,0.00591716,6,1014,,,0.000986193,1,1014,,,0.071005917,72,1014,,,0.892504931,905,1014,,,0,0,611,0,0.093603092,0.427021696,433,1014,,,1,935,935,, -49,011,49011,UT,Davis County,2024,1,5571.439155,2762,1037602,5298.331111,5844.547198,0,,,,2,2285.729637,1432.454594,3460.62214,1,9733.754728,6657.881029,13741.15739,,5815.080447,4928.280212,6701.880682,,5471.822184,5174.396097,5769.248271,,13596.78089,9173.690973,19410.25017,,,0.114,,,0.096,0.137,3.500082981,,,2.855244911,4.207534519,5.285442803,,,4.588267229,6.075373739,0.07204651,2590,35949,0.069373613,0.074719408,0,,,,0.080838323,0.060166802,0.101509845,0.156626506,0.117530748,0.195722264,0.083432658,0.075064299,0.091801017,0.068047441,0.065127964,0.070966917,0.088825215,0.058977414,0.118673016,0.08839779,0.069902755,0.106892826,0.08,,,0.06,0.102,0.332,,,0.288,0.378,8.8,0.046376146,0.075,,,0.165,,,0.136,0.198,0.913455149,331291,362679,,,0.114887582,,,0.095705873,0.13644125,0.222222222,16,72,0.162337634,0.286560057,262.5,964,367285,,,9.050438873,862,95244,8.446250897,9.654626849,,,,,,,9.016393443,4.500951121,16.13281845,20.33685719,17.69124014,22.98247425,6.879747743,6.292918666,7.466576819,17.8343949,9.750229651,29.92308423,14.39060206,10.64624662,19.02513909,0.076792769,25250,328807,0.068452344,0.085133195,0.000457411,168,367285,,,2186.220238,0.000673068,249,369948,,,1485.73494,0.002589553,958,369948,,,386.1670146,1472,,,,,,583,2194,847,1453,0.44,,,,,,0.42,0.53,0.36,0.44,0.51,,,,,0.47,0.46,0.48,0.4,0.51,0.957181064,206150,215372,0.95220418,0.962157947,0.755933244,78769,104201,0.73279732,0.779069169,0.021610032,3981,184220,,,0.068,7435,,0.05012766,0.08587234,0.029126214,0,0.151122785,0.06514658,0,0.13326534,0.180827887,0.034748542,0.326907231,0.155553927,0.116100999,0.195006855,0.069054226,0.051654201,0.08645425,3.306584642,170385,51529,3.176878394,3.436290889,0.133750732,15082,112762,0.115136559,0.152364904,2.559320419,94,367285,,,54.73383078,975,1781348,51.29817529,58.16948628,,,,,,,64.37965603,35.19695703,108.0181234,37.48745824,29.11047816,47.5242859,58.21252434,54.3263805,62.09866817,,,,6.3,,,,,0,,,,,0.089258205,9560,107105,0.081065174,0.097451235,0.068034861,0.06059755,0.075472171,0.018066384,0.014395538,0.021737229,0.006629009,0.004559883,0.008698135,0.74393097,132599,178241,0.733598216,0.754263724,,,,0.588005997,0.513551572,0.662460422,0.749342682,0.654761351,0.843924013,0.705568101,0.666477945,0.744658256,0.71654349,0.700555177,0.732531802,0.291,,178241,0.277414931,0.304585069,79.48564018,,,79.19016328,79.78111708,,,,86.15168976,83.57797746,88.72540206,75.92358023,72.04950484,79.79765562,80.45329189,79.04368782,81.86289597,79.46996176,79.15686751,79.78305602,71.99597593,66.88093921,77.11101264,279.917691,2762,1037602,269.4278087,290.4075733,,,,146.7815739,102.2387443,204.1376371,431.9742918,313.8731817,579.9053241,299.6099558,258.2051494,341.0147623,276.5996822,265.3857111,287.8136534,627.7303088,450.4701074,851.5870448,42.89443475,210,489574,37.09284022,48.69602929,,,,,,,,,,73.22514177,52.99339818,98.63378542,36.97260229,30.97524859,42.96995599,,,,5.101903816,190,37241,4.376447046,5.827360585,,,,,,,,,,8.519961052,5.934465044,11.84920335,4.613995787,3.844167754,5.38382382,,,,,,,0.096,,,0.082,0.113,0.155,,,0.134,0.178,0.077,,,0.066,0.091,79.6,230,288809,,,0.075,26750,,,,0.046376146,14213.31499,306479,,,15.15714447,164,1081998,12.83733916,17.47694977,,,,,,,,,,16.82964853,10.1325478,26.2815809,15.74630799,13.14719442,18.34542156,,,,0.321,,,0.305,0.336,0.085245871,18386,215682,0.074522467,0.095969276,0.063161089,7494,118649,0.048863216,0.077458961,0.000778488,288,369948,,,1284.541667,0.910453867,5486.395,6026,,,0.041025863,947,23083,0.030770593,0.051281134,3.342082103,,,,,,2.924159124,2.69052643,2.793312651,3.443118084,3.280111929,,,,,,2.906433202,2.479251767,2.613360148,3.39866481,0.051572716,,,,,594.0166,,,,,0.655975455,48533,73986,0.620419406,0.691531504,103143,,,98356.78723,107929.2128,81384,66031.65957,96736.34043,92000,76758.46809,107241.5319,77152,51443.23404,102860.766,75950,66542,85358,104652,101533.8723,107770.1277,,,,,,0.16109644,13482,83689,,,58.8516838,,,,,0.180400027,,103143,,,4.489337823,128,28512,,,0.975739855,24,2459672,0.625174936,1.45182356,,,,,,,,,,,,,0.828366787,0.48255418,1.326295471,,,,19.88758644,334,1781348,17.73597236,22.03920053,18.74984562,,,,,,,,,,9.534765486,5.449942311,15.4838618,21.48657633,19.04225208,23.93090059,,,,10.10470722,180,1781348,8.628512822,11.58090162,,,,,,,,,,6.615433807,3.418291183,11.55583153,10.80510893,9.130839952,12.4793779,,,,6.342309056,156,2459672,5.347038461,7.337579651,,,,,,,,,,7.747860163,4.664717943,12.09924339,6.090932259,5.023144754,7.158719763,,,,12.17973231,,52300,,,224,413,0.735682877,169814,230825,,,0.785,,,,,156.6886256,,,,,0.777049619,87150,112155,0.76758468,0.786514557,0.08315324,9196,110591,0.075014805,0.091291676,0.936400517,105022,112155,0.927726679,0.945074356,369948,,,,,0.299255571,110709,369948,,,0.111126429,41111,369948,,,0.012063858,4463,369948,,,0.008122763,3005,369948,,,0.022876188,8463,369948,,,0.00930401,3442,369948,,,0.110988571,41060,369948,,,0.817674376,302497,369948,,,0.009322537,3128,335531,,,0.491442041,181808,369948,,,0.008365524,3034,362679,, -49,013,49013,UT,Duchesne County,2024,1,10375.93349,270,56505,8773.126987,11978.74,0,30627.43737,18439.71802,47828.53734,1,,,,2,,,,2,,,,2,10017.37473,8294.798039,11739.95142,,,,,2,,0.16,,,0.136,0.187,3.994478696,,,3.232521974,4.755726409,5.439932147,,,4.573046294,6.274176267,0.082395317,183,2221,0.070959667,0.093830968,0,,,,,,,,,,0.096938776,0.055516362,0.138361189,0.078947368,0.066572098,0.091322639,,,,,,,0.134,,,0.106,0.164,0.335,,,0.282,0.386,7.5,0.067188742,0.125,,,0.216,,,0.18,0.256,0.633139416,12407,19596,,,0.120563653,,,0.096693794,0.145433298,0.166666667,4,24,0.070875168,0.286798115,262.8,52,19790,,,21.22418041,112,5277,17.29340719,25.15495363,82.80254777,44.08886937,141.5948785,,,,,,,31.39013453,17.16127865,52.66731193,17.86112972,14.16276504,22.22972203,,,,,,,0.148520116,2514,16927,0.129456286,0.167583946,0.000404245,8,19790,,,2473.75,0.000446406,9,20161,,,2240.111111,0.002182431,44,20161,,,458.2045455,2503,,,,,,,,,2564,0.29,,,,,,,,,0.28,0.27,,,,,0.26,,,0.22,0.27,0.89172355,10451,11720,0.876460007,0.906987092,0.504748982,2604,5159,0.457357687,0.552140278,0.031897729,257,8057,,,0.17,1085,,0.114,0.226,0.618090452,0.423882041,0.812298864,,,,,,,0.328,0.19581277,0.46018723,0.147489744,0.104402663,0.190576825,4.0240249,124113,30843,3.495795682,4.552254119,0.139177657,897,6445,0.105455374,0.17289994,2.52652855,5,19790,,,121.4713087,121,99612,99.82733004,143.1152873,343.5442313,177.5143175,600.1026352,,,,,,,,,,120.7543596,97.31969163,144.1890276,,,,6.1,,,,,0,,,,,0.153409091,1080,7040,0.13113474,0.175683441,0.099427754,0.079313995,0.119541513,0.049005682,0.037190224,0.06082114,0.009943182,0.004423372,0.015462992,0.780201765,6187,7930,0.752184601,0.80821893,,,,,,,,,,0.796992481,0.565699059,1,0.800663992,0.769728394,0.831599591,0.256,,7930,0.221201167,0.290798833,75.36301934,,,74.00231332,76.72372535,,,,,,,,,,,,,75.44396076,73.98693605,76.90098547,,,,482.0804263,270,56505,423.5060097,540.6548429,1273.055667,815.6707872,1894.205922,,,,,,,,,,465.2352536,404.1568199,526.3136873,,,,38.61139387,11,28489,19.27466871,69.0864492,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.126,,,0.108,0.144,0.181,,,0.157,0.205,0.1,,,0.085,0.115,52.6,8,15218,,,0.125,2450,,,,0.067188742,1250.180916,18607,,,25.15849854,15,59622,14.08102065,41.49511736,,,,,,,,,,,,,23.78734117,12.2912663,41.55169792,,,,0.335,,,0.321,0.348,0.168189956,1785,10613,0.144360169,0.192019743,0.117833434,781,6628,0.086854711,0.148812157,0.001240018,25,20161,,,806.44,0.83,319.55,385,,,0.14927905,176,1179,0.074947215,0.223610885,2.927795332,,,,,,,,2.691921359,3.02374243,2.943238004,,,,,,,,2.555456212,3.069396609,0.046456548,,,,,-880.4473,,,,,0.649556363,43632,67172,0.595215784,0.703896942,67256,,,59143.14894,75368.85106,,,,,,,,,,54188,48689.2766,59686.7234,74167,70404.2766,77929.7234,,,,,,0.401528176,2102,5235,,,,,,,,0.253642798,,67256,,,2.326934264,4,1719,,,,,,,,,,,,,,,,,,,,,,,,,,38.55147453,35,99612,26.69801681,53.87182154,35.13632896,,,,,,,,,,,,,40.41289477,27.26641039,57.69192014,,,,25.09737783,25,99612,16.24169964,37.04868058,,,,,,,,,,,,,27.22892422,17.26080223,40.85675561,,,,23.43566909,33,140811,16.13203626,32.91239269,,,,,,,,,,,,,21.74185726,14.202503,31.85685837,,,,26.33333333,,3000,,,36,43,0.665190365,8561,12870,,,0.331,,,,,21.64730571,,,,,0.772635815,4992,6461,0.749554108,0.795717522,0.100912944,619,6134,0.077922042,0.123903846,0.872620337,5638,6461,0.852970717,0.892269958,20161,,,,,0.319577402,6443,20161,,,0.131541094,2652,20161,,,0.003372849,68,20161,,,0.048856704,985,20161,,,0.005852884,118,20161,,,0.003521651,71,20161,,,0.087694063,1768,20161,,,0.843311344,17002,20161,,,0.008664937,157,18119,0.003155306,0.014174569,0.490898269,9897,20161,,,0.68049602,13335,19596,, -49,015,49015,UT,Emery County,2024,1,9697.130609,161,28004,7364.077962,12030.18326,0,,,,2,,,,2,,,,2,,,,2,9089.420801,6791.299198,11387.54241,,,,,2,,0.151,,,0.127,0.181,4.153017972,,,3.282006267,5.113380073,5.459477569,,,4.386183983,6.553231806,0.065533981,54,824,0.048637063,0.082430899,0,,,,,,,,,,,,,0.057534247,0.040641874,0.074426619,,,,,,,0.126,,,0.096,0.16,0.376,,,0.295,0.456,7.1,0.115086097,0.12,,,0.212,,,0.168,0.261,0.408956743,4018,9825,,,0.11948811,,,0.090630795,0.151558717,0.192307692,5,26,0.09558881,0.306287398,140.5,14,9967,,,14.42125237,38,2635,10.20533649,19.79429561,,,,,,,,,,,,,11.30434783,7.384375311,16.56348873,,,,,,,0.097107692,789,8125,0.08280982,0.111405565,0.000100331,1,9967,,,9967,0.000198039,2,10099,,,5049.5,0.000990197,10,10099,,,1009.9,1880,,,,,,,,,1818,0.37,,,,,,,,,0.37,0.41,,,,,,,,,0.41,0.933142311,5862,6282,0.913367927,0.952916696,0.615757042,1399,2272,0.534989823,0.696524262,0.032910829,148,4497,,,0.148,410,,0.093191489,0.202808511,,,,,,,,,,0.419708029,0.2755971,0.563818958,0.145154465,0.097678589,0.19263034,4.113559379,122654,29817,3.385090557,4.842028201,0.185840708,525,2825,0.113055854,0.258625562,0,0,9967,,,117.490093,59,50217,89.43890242,151.5536598,,,,,,,,,,,,,125.2059308,94.82974929,162.2188059,,,,4.6,,,,,0,,,,,0.089812332,335,3730,0.06211748,0.117507185,0.038753388,0.017177297,0.060329478,0.02922252,0.013859734,0.044585306,0.030831099,0.00965566,0.052006538,0.803792668,3179,3955,0.758792789,0.848792546,,,,,,,,,,,,,0.807830343,0.762359331,0.853301354,0.206,,3955,0.155421312,0.256578688,75.20469795,,,73.35272246,77.05667343,,,,,,,,,,,,,75.50553192,73.65935974,77.35170409,,,,458.4478233,161,28004,383.2899883,533.6056584,,,,,,,,,,,,,448.5383407,371.484851,525.5918304,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.123,,,0.104,0.143,0.181,,,0.154,0.207,0.096,,,0.079,0.113,,,,,,0.12,1180,,,,0.115086097,1263.184998,10976,,,,,,,,,,,,,,,,,,,,,,,,,,0.334,,,0.317,0.349,0.109307965,586,5361,0.091435625,0.127180305,0.074698795,217,2905,0.050869008,0.098528582,0.000495099,5,10099,,,2019.8,0.875,161.875,185,,,,,,,,3.125010821,,,,,,,,,3.142086643,3.10617067,,,,,,,,,3.138332203,0.190897749,,,,,906.9053,,,,,0.495527543,33571,67748,0.404058987,0.5869961,64651,,,55256.10638,74045.89362,,,,,,,,,,40417,23521.68085,57312.31915,68636,62452.17021,74819.82979,,,,,,0.497775801,1119,2248,,,,,,,,0.263862895,,64651,,,11.64725458,7,601,,,,,,,,,,,,,,,,,,,,,,,,,,25.88510037,13,50217,13.37520909,45.21606107,25.88764761,,,,,,,,,,,,,28.26504207,14.60495969,49.37334028,,,,19.91357508,10,50217,9.549333286,36.62177359,,,,,,,,,,,,,21.96595277,10.53352816,40.39616923,,,,19.77317345,14,70803,10.81017793,33.1760252,,,,,,,,,,,,,20.22370529,10.76827133,34.58315197,,,,11.33333333,,1500,,,11,6,0.701719198,4898,6980,,,0.441,,,,,16.63114105,,,,,0.782709603,2698,3447,0.741756148,0.823663058,0.059479554,192,3228,0.027968429,0.090990679,0.857267189,2955,3447,0.822636337,0.89189804,10099,,,,,0.276760075,2795,10099,,,0.178037429,1798,10099,,,0.002970591,30,10099,,,0.013268641,134,10099,,,0.005743143,58,10099,,,0.001287256,13,10099,,,0.071393207,721,10099,,,0.895237152,9041,10099,,,0.009672219,90,9305,8.23196E-05,0.019262119,0.485493613,4903,10099,,,1,9825,9825,, -49,017,49017,UT,Garfield County,2024,1,8118.678552,60,13845,5253.980693,11984.7711,0,,,,2,,,,2,,,,2,,,,2,8267.273632,5117.57268,12637.40594,1,,,,2,,0.146,,,0.122,0.171,3.966473154,,,3.158189528,4.853932005,5.272722826,,,4.263445523,6.350557137,0.083123426,33,397,0.055966665,0.110280187,0,,,,,,,,,,,,,0.091176471,0.060578137,0.121774805,,,,,,,0.121,,,0.094,0.15,0.339,,,0.264,0.416,5.5,0.216244153,0.144,,,0.197,,,0.157,0.241,0.366515837,1863,5083,,,0.116762267,,,0.091048413,0.145628901,0.266666667,4,15,0.129817183,0.413965161,195,10,5129,,,12.62398557,14,1109,6.901650384,21.18090273,,,,,,,,,,,,,13.61256545,7.248117792,23.27790149,,,,,,,0.138829216,517,3724,0.116190918,0.161467514,0.00038994,2,5129,,,2564.5,0.000378716,2,5281,,,2640.5,0.001136149,6,5281,,,880.1666667,2195,,,,,,,,,2246,0.38,,,,,,,,,0.37,0.25,,,,,,,,,0.25,0.959434214,3595,3747,0.935345136,0.983523293,0.644237652,900,1397,0.489311943,0.799163362,0.058923706,173,2936,,,0.143,162,,0.084617021,0.201382979,,,,,,,,,,0.328767123,0,0.803963372,0.176470588,0.086462575,0.266478602,3.943347509,103852,26336,3.076009355,4.810685663,0.156137184,173,1108,0.067435233,0.244839136,0,0,5129,,,110.2883252,28,25388,73.28579115,159.3973371,,,,,,,,,,,,,107.1524243,68.65458012,159.4343138,,,,4.2,,,,,0,,,,,0.121621622,225,1850,0.074439099,0.168804144,0.105722071,0.055958553,0.155485588,0.013513514,0,0.036486902,0.008108108,0,0.024997567,0.649719948,1508,2321,0.572190936,0.727248961,,,,,,,,,,,,,0.638572906,0.570458554,0.706687258,0.132,,2321,0.073556263,0.190443737,78.60016365,,,75.79790253,81.40242476,,,,,,,,,,,,,78.56642652,75.58595373,81.54689931,,,,326.875907,60,13845,241.8245955,432.1472841,,,,,,,,,,,,,329.130833,238.1936158,443.3370722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.118,,,0.102,0.136,0.172,,,0.147,0.197,0.092,,,0.078,0.107,,,,,,0.144,730,,,,0.216244153,1118.414758,5172,,,,,,,,,,,,,,,,,,,,,,,,,,0.327,,,0.309,0.344,0.147125567,389,2644,0.120912801,0.173338333,0.119613017,136,1137,0.080293868,0.158932166,0.000757432,4,5281,,,1320.25,0.875,59.5,68,,,,,,,,3.130423757,,,,,,,,,3.165176617,3.11490147,,,,,,,,,3.166359708,0.117151006,,,,,289.8604,,,,,0.847895351,42845,50531,0.608713866,1.087076836,66786,,,57917.74468,75654.25532,,,,,,,,,,63352,30122.55319,96581.44681,56620,48030.55319,65209.44681,,,,,,0.244897959,324,1323,,,,,,,,0.255427784,,66786,,,12.34567901,4,324,,,,,,,,,,,,,,,,,,,,,,,,,,33.54039813,10,25388,15.33680579,63.6701233,39.38868757,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,600,,,-888,-888,0.737381916,2732,3705,,,0.262,,,,,6.762618652,,,,,0.731557377,1428,1952,0.691662428,0.771452326,0.099369085,189,1902,0.047744222,0.150993949,0.800204918,1562,1952,0.762108632,0.838301204,5281,,,,,0.220791517,1166,5281,,,0.240484757,1270,5281,,,0.00492331,26,5281,,,0.029918576,158,5281,,,0.012876349,68,5281,,,0.00397652,21,5281,,,0.076121947,402,5281,,,0.853058133,4505,5281,,,0.005584281,27,4835,0,0.021820592,0.480969513,2540,5281,,,1,5083,5083,, -49,019,49019,UT,Grand County,2024,1,7811.528285,130,27123,5533.777935,10089.27863,0,,,,2,,,,2,,,,2,,,,2,7399.957654,4835.051926,9964.863382,,,,,2,,0.151,,,0.127,0.178,4.142151871,,,3.342289965,5.037220755,5.499865305,,,4.558413087,6.520325159,0.058655222,41,699,0.041235341,0.076075103,0,,,,,,,,,,,,,0.0625,0.040474655,0.084525345,,,,,,,0.125,,,0.096,0.155,0.312,,,0.248,0.38,7.8,0.024976303,0.134,,,0.2,,,0.16,0.243,0.949322577,9179,9669,,,0.124973676,,,0.098265054,0.155864075,0.212121212,7,33,0.123895162,0.31120731,186.3,18,9663,,,19.68731905,34,1727,13.63404076,27.51105506,,,,,,,,,,31.94888179,15.32073066,58.75513113,14.58670989,8.645008736,23.05329033,,,,,,,0.154352693,1172,7593,0.131714395,0.176990991,0.00124185,12,9663,,,805.25,0.000716552,7,9769,,,1395.571429,0.002968574,29,9769,,,336.862069,873,,,,,,,,,901,0.34,,,,,,,,,0.34,0.42,,,,,,,,0.3,0.43,0.944906743,6586,6970,0.883268035,1,0.736460849,2135,2899,0.597287246,0.875634451,0.032258065,226,7006,,,0.141,271,,0.086191489,0.195808511,,,,,,,,,,0.245,0,0.507132446,0.163161711,0.064932663,0.26139076,4.060591081,115000,28321,2.653556228,5.467625934,0.279932546,498,1779,0.152980141,0.406884952,5.174376488,5,9663,,,131.5491973,64,48651,101.3089115,167.9853882,,,,,,,,,,,,,143.703517,108.8396404,186.1845743,,,,4.3,,,,,0,,,,,0.200450451,890,4440,0.115727176,0.285173725,0.138983051,0.05001217,0.227953932,0.096621622,0.035783684,0.157459559,0.000900901,0,0.005834187,0.748540146,4102,5480,0.685069524,0.812010768,,,,,,,,,,,,,0.736036409,0.677464662,0.794608155,0.107,,5480,0.054385254,0.159614746,79.84140426,,,77.66071999,82.02208853,,,,,,,,,,,,,79.73565421,77.38418257,82.08712585,,,,334.6894186,130,27123,273.0703671,396.3084701,,,,,,,,,,,,,330.8013868,264.8109616,396.7918121,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.12,,,0.103,0.138,0.173,,,0.15,0.198,0.092,,,0.078,0.107,121.3,10,8247,,,0.134,1290,,,,0.024976303,230.4063961,9225,,,,,,,,,,,,,,,,,,,,,,,,,,0.314,,,0.298,0.33,0.167933534,950,5657,0.139337789,0.196529278,0.117214321,239,2039,0.082661129,0.151767512,0.001228376,12,9769,,,814.0833333,0.775,97.65,126,,,,,,,,2.738505402,,,,,,,,2.584259671,2.972486456,2.482224485,,,,,,,,1.79850256,2.887471623,0.007061975,,,,,-2170.293,,,,,0.935601458,42350,45265,0.748170315,1.123032601,67218,,,57290.51064,77145.48936,,,,,,,,,,76136,54926.29787,97345.70213,60294,51880.89362,68707.10638,,,,,,0.353316327,554,1568,,,,,,,,0.253786188,,67218,,,14.95726496,7,468,,,,,,,,,,,,,,,,,,,,,,,,,,25.03275748,13,48651,12.93479108,43.72718958,26.72093071,,,,,,,,,,,,,27.11611993,13.53626937,48.5182288,,,,,,,,,,,,,,,,,,,,,,,,,,,23.61763056,16,67746,13.49951651,38.35355238,,,,,,,,,,,,,18.05217077,8.656717567,33.19858479,,,,,,900,,,-888,14,0.716160221,5185,7240,,,0.515,,,,,29.76553143,,,,,0.670357555,2906,4335,0.611858548,0.728856561,0.145838274,615,4217,0.080838124,0.210838424,0.846597463,3670,4335,0.800042791,0.893152134,9769,,,,,0.201044119,1964,9769,,,0.206469444,2017,9769,,,0.007370253,72,9769,,,0.049851571,487,9769,,,0.023236769,227,9769,,,0.00266148,26,9769,,,0.11249872,1099,9769,,,0.799365339,7809,9769,,,0.011743159,109,9282,0,0.025878301,0.504248132,4926,9769,,,0.179542869,1736,9669,, -49,021,49021,UT,Iron County,2024,1,6750.819653,543,163588,5978.466466,7523.172839,0,,,,2,,,,2,,,,2,4766.301002,2776.545977,7631.309622,1,6916.607738,6070.62058,7762.594896,,,,,2,,0.158,,,0.132,0.187,4.224353055,,,3.39877653,5.149061399,5.470131687,,,4.495516404,6.46364685,0.078831603,448,5683,0.071825332,0.085837874,0,,,,,,,,,,0.087628866,0.064656594,0.110601138,0.076730609,0.06919766,0.084263558,,,,0.080645161,0.032718633,0.128571689,0.124,,,0.095,0.154,0.378,,,0.314,0.443,6.6,0.175887013,0.114,,,0.206,,,0.166,0.252,0.552025694,31625,57289,,,0.130447206,,,0.104388202,0.160533126,0.090909091,4,44,0.034089754,0.173386571,244.6,148,60519,,,13.73446697,252,18348,12.03869439,15.43023956,42.14559387,21.03892861,75.41010925,,,,,,,36.36363636,28.00443099,46.43555182,10.63761615,9.019363441,12.25586886,,,,,,,0.110235603,5624,51018,0.094746241,0.125724965,0.000330475,20,60519,,,3025.95,0.00044851,28,62429,,,2229.607143,0.003011421,188,62429,,,332.0691489,1379,,,,,,,,1841,1333,0.46,,,,,,0.36,,0.52,0.46,0.41,,,,,0.24,0.29,,0.35,0.42,0.930126847,30284,32559,0.917679173,0.94257452,0.666548296,9385,14080,0.605218264,0.727878327,0.024456033,680,27805,,,0.135,2228,,0.082574468,0.187425532,0.09469697,0,0.193762903,,,,,,,0.14305949,0.009939537,0.276179443,0.115471463,0.07897896,0.151963967,3.887421447,115678,29757,3.480633083,4.294209811,0.147435897,2369,16068,0.087805857,0.207065938,3.80045936,23,60519,,,71.02787482,196,275948,61.08397234,80.97177729,,,,,,,,,,59.58765344,33.35075729,98.28077254,71.60137102,60.80608739,82.39665465,,,,4.3,,,,,1,,,,,0.125431531,2180,17380,0.102181222,0.14868184,0.102130143,0.07989267,0.124367616,0.023878021,0.013741824,0.034014218,0.008055236,0.001435566,0.014674906,0.758250825,20218,26664,0.729074572,0.787427078,,,,,,,,,,0.714492754,0.582802358,0.846183149,0.761297327,0.731201963,0.791392691,0.118,,26664,0.097328432,0.138671568,78.62265459,,,77.87068805,79.37462113,,,,,,,,,,81.34260873,78.42353662,84.26168084,78.39667235,77.59643244,79.19691227,,,,322.7725826,543,163588,294.738511,350.8066543,,,,,,,,,,179.5920788,111.1703274,274.5255697,331.5887123,301.2434578,361.9339668,,,,54.82831883,40,72955,39.17015481,74.66060855,,,,,,,,,,,,,56.86759885,39.38246535,79.46676941,,,,6.139273812,35,5701,4.276229153,8.538243706,,,,,,,,,,,,,5.610972569,3.697666278,8.1636705,,,,,,,0.124,,,0.106,0.144,0.18,,,0.156,0.207,0.103,,,0.086,0.12,67.6,33,48803,,,0.114,6340,,,,0.175887013,8119.472197,46163,,,12.77791976,22,172172,8.007854281,19.34592407,,,,,,,,,,,,,14.9681247,9.380444058,22.66192067,,,,0.324,,,0.306,0.339,0.126279864,4366,34574,0.106024544,0.146535183,0.079896164,1385,17335,0.056066377,0.103725951,0.00062471,39,62429,,,1600.74359,0.919525862,746.655,812,,,0.085180356,392,4602,0.045488706,0.124872007,3.230635047,,,,,,,,2.358809508,,3.118244765,,,,,,,,2.23310079,,0.03146579,,,,,-1032.874,,,,,0.752160118,37693,50113,0.651791799,0.852528437,66499,,,58654.23404,74343.76596,85027,47766.74468,122287.2553,,,,,,,56281,45804.23404,66757.76596,64841,57817.17021,71864.82979,,,,,,0.311733249,3964,12716,,,69.70162864,,,,,0.279808719,,66499,,,4.42804428,18,4065,,,,,,,,,,,,,,,,,,,,,,,,,,22.61117766,60,275948,17.08024061,29.36249496,21.74322699,,,,,,,,,,,,,22.60733634,16.66886517,29.97404813,,,,14.49548466,40,275948,10.35578676,19.73873591,,,,,,,,,,,,,15.67603981,11.0373787,21.60735594,,,,10.15355922,38,374253,7.185262816,13.93655333,,,,,,,,,,,,,9.04348043,6.056560776,12.98794643,,,,24.13333333,,7500,,,68,113,0.67986459,25104,36925,,,0.612,,,,,70.8356082,,,,,0.679931168,12644,18596,0.65228635,0.707575986,0.103124827,1858,18017,0.081581839,0.124667814,0.873467412,16243,18596,0.858559561,0.888375263,62429,,,,,0.269746432,16840,62429,,,0.138140928,8624,62429,,,0.005974787,373,62429,,,0.024892278,1554,62429,,,0.01057201,660,62429,,,0.004164731,260,62429,,,0.103974115,6491,62429,,,0.841243653,52518,62429,,,0.014050916,760,54089,0.008232682,0.01986915,0.497573243,31063,62429,,,0.286093316,16390,57289,, -49,023,49023,UT,Juab County,2024,1,6582.515417,127,34644,5001.629566,8163.401267,0,,,,2,,,,2,,,,2,,,,2,6754.655074,5055.837668,8453.472479,,,,,2,,0.141,,,0.12,0.168,3.922756226,,,3.106889316,4.83626469,5.351583976,,,4.380241944,6.407757234,0.058953574,80,1357,0.046421391,0.071485758,0,,,,,,,,,,,,,0.060483871,0.047215514,0.073752228,,,,,,,0.123,,,0.097,0.156,0.371,,,0.299,0.449,7.3,0.130151327,0.104,,,0.196,,,0.16,0.242,0.591888682,6976,11786,,,0.144579358,,,0.114789905,0.180141264,0.15625,5,32,0.074172521,0.258294933,131.6,16,12155,,,14.51027811,48,3308,10.69873362,19.23852363,,,,,,,,,,,,,12.00400133,8.407454957,16.6185977,,,,,,,0.107390733,1145,10662,0.090709882,0.124071585,0.000822707,10,12155,,,1215.5,0.000318294,4,12567,,,3141.75,0.005172277,65,12567,,,193.3384615,4113,,,,,,,,,4111,0.36,,,,,,,,,0.36,0.37,,,,,,,,,0.37,0.935718527,6303,6736,0.914942188,0.956494866,0.573859769,1686,2938,0.469814598,0.67790494,0.019641465,126,6415,,,0.102,422,,0.061489362,0.142510638,,,,,,,,,,0.195121951,0.072897886,0.317346017,0.090212766,0.051063634,0.129361898,3.539195253,144339,40783,2.765344072,4.313046434,0.143569292,576,4012,0.095742632,0.191395952,0,0,12155,,,103.2166365,61,59099,78.95254837,132.5860876,,,,,,,,,,,,,101.7595145,76.65919253,132.4539954,,,,4.7,,,,,0,,,,,0.110632184,385,3480,0.075260294,0.146004074,0.055972302,0.023541594,0.088403011,0.05316092,0.02828467,0.078037169,0.004310345,0,0.012813757,0.75646711,4094,5412,0.706524491,0.80640973,,,,,,,,,,,,,0.754434174,0.742121304,0.766747045,0.38,,5412,0.310157987,0.449842013,77.42065598,,,75.85704565,78.98426632,,,,,,,,,,,,,77.31956723,75.68590662,78.95322784,,,,368.2389875,127,34644,303.4759146,433.0020603,,,,,,,,,,,,,371.0982089,303.8156767,438.380741,,,,67.97711437,12,17653,35.12476695,118.7423387,,,,,,,,,,,,,76.0263558,39.28392745,132.8027436,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.115,,,0.099,0.134,0.171,,,0.148,0.197,0.086,,,0.073,0.101,,,,,,0.104,1210,,,,0.130151327,1333.530494,10246,,,,,,,,,,,,,,,,,,,,,,,,,,0.353,,,0.336,0.371,0.122153521,810,6631,0.101898202,0.142408841,0.084577114,357,4221,0.059555838,0.109598391,0.000238721,3,12567,,,4189,0.96872093,208.275,215,,,,,,,,3.060453728,,,,,,,,,3.080101989,3.043478376,,,,,,,,,3.03671967,0.036307254,,,,,-47.745,,,,,0.605672978,41809,69029,0.529364861,0.681981095,94181,,,86731.80851,101630.1915,46354,45305.48936,47402.51064,,,,,,,,,,89119,81214.65957,97023.34043,,,,,,0.277739959,816,2938,,,,,,,,0.197566388,,94181,,,3.045685279,3,985,,,,,,,,,,,,,,,,,,,,,,,,,,36.11929285,18,59099,21.40658206,57.08405466,30.45736815,,,,,,,,,,,,,32.37817209,18.12181713,53.40287094,,,,18.61283609,11,59099,9.291460714,33.30350516,,,,,,,,,,,,,18.50172991,8.872298648,34.02534005,,,,17.34755833,14,80703,9.484071567,29.10625519,,,,,,,,,,,,,17.55831386,9.349062644,30.02525145,,,,19,,2000,,,26,12,0.781479014,5865,7505,,,0.65,,,,,48.99800484,,,,,0.796327212,2862,3594,0.749496422,0.843158002,0.078320091,276,3524,0.037778607,0.118861575,0.884808013,3180,3594,0.845652168,0.923963858,12567,,,,,0.331741864,4169,12567,,,0.119678523,1504,12567,,,0.003899101,49,12567,,,0.012572611,158,12567,,,0.00501313,63,12567,,,0.002785072,35,12567,,,0.057770351,726,12567,,,0.906023713,11386,12567,,,0.003079431,34,11041,0,0.01332567,0.481419591,6050,12567,,,0.462922111,5456,11786,, -49,025,49025,UT,Kane County,2024,1,6649.732304,109,21619,4510.410802,8789.053807,0,,,,2,,,,2,,,,2,,,,2,7136.341266,4749.388339,9523.294193,,,,,2,,0.138,,,0.115,0.164,3.827656585,,,3.023117239,4.721918077,5.202485594,,,4.20906178,6.254082971,0.066225166,40,604,0.046392997,0.086057334,0,,,,,,,,,,,,,0.056925996,0.037143597,0.076708396,,,,,,,0.111,,,0.084,0.143,0.314,,,0.245,0.389,6.7,0.143740696,0.124,,,0.188,,,0.149,0.232,0.795356724,6098,7667,,,0.118150649,,,0.092429238,0.147739122,0.318181818,7,22,0.204127461,0.433005911,87.6,7,7992,,,13.58535145,23,1693,8.611947453,20.38469752,,,,,,,,,,,,,13.57466063,8.402928884,20.75031075,,,,,,,0.118047287,694,5879,0.100174947,0.135919627,0.000500501,4,7992,,,1998,0.000243102,2,8227,,,4113.5,0.002309469,19,8227,,,433,900,,,,,,,,,917,0.33,,,,,,,,,0.34,0.36,,,,,,,,0.38,0.36,0.943820225,5292,5607,0.914860438,0.972780011,0.712860892,1358,1905,0.573611203,0.852110582,0.02495155,103,4128,,,0.1,189,,0.059489362,0.140510638,,,,,,,,,,,,,0.129930394,0.064698619,0.19516217,4.10007856,120038,29277,2.817508399,5.382648721,0.178268251,315,1767,0.045130212,0.311406291,0,0,7992,,,97.2663049,38,39068,68.83142635,133.5056028,,,,,,,,,,,,,107.5177546,76.08596227,147.5765185,,,,4.2,,,,,1,,,,,0.108963093,310,2845,0.053623515,0.164302671,0.065808824,0.024688669,0.106928979,0.015465729,0,0.036846961,0.029876977,0,0.072667388,0.735242548,2516,3422,0.666334954,0.804150143,,,,,,,,,,,,,0.754050074,0.675688472,0.832411676,0.053,,3422,0.023452025,0.082547975,78.43133189,,,76.5290603,80.33360348,,,,,,,,,,,,,77.77422565,75.73374662,79.81470467,,,,331.2914922,109,21619,261.641197,400.9417873,,,,,,,,,,,,,346.3406905,271.6098603,421.0715208,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.114,,,0.097,0.133,0.167,,,0.143,0.194,0.087,,,0.073,0.102,74.6,5,6701,,,0.124,950,,,,0.143740696,1024.152456,7125,,,,,,,,,,,,,,,,,,,,,,,,,,0.31,,,0.292,0.328,0.125433813,506,4034,0.103987004,0.146880621,0.103055412,199,1931,0.070885199,0.135225625,0.000607755,5,8227,,,1645.4,0.975,98.475,101,,,,,,,,3.395488003,,,,,,,,,3.497739338,3.31424205,,,,,,,,,3.404552131,0.104337686,,,,,2078.254,,,,,0.91996652,46163,50179,0.588847309,1.251085731,66609,,,56798.2766,76419.7234,,,,,,,,,,,,,70224,54787.06383,85660.93617,,,,,,0.238636364,357,1496,,,,,,,,0.256106532,,66609,,,2.583979328,1,387,,,,,,,,,,,,,,,,,,,,,,,,,,26.39085396,10,39068,12.06757893,50.09806143,25.59639603,,,,,,,,,,,,,28.85317662,13.19350965,54.77231682,,,,,,,,,,,,,,,,,,,,,,,,,,,29.8881064,16,53533,17.08363524,48.5364123,,,,,,,,,,,,,30.86927889,17.27730106,50.91418108,,,,12.22222222,,900,,,5,6,0.703111859,4180,5945,,,0.325,,,,,15.44109405,,,,,0.779534884,2514,3225,0.728624505,0.830445262,0.10362173,309,2982,0.054946844,0.152296617,0.898294574,2897,3225,0.860929567,0.93565958,8227,,,,,0.231676188,1906,8227,,,0.236416677,1945,8227,,,0.00741461,61,8227,,,0.017624894,145,8227,,,0.008751671,72,8227,,,0.000850857,7,8227,,,0.056035007,461,8227,,,0.891454965,7334,8227,,,0.002840141,21,7394,0,0.013682302,0.491673757,4045,8227,,,1,7667,7667,, -49,027,49027,UT,Millard County,2024,1,8829.21012,157,36636,6884.417055,10774.00319,0,,,,2,,,,2,,,,2,,,,2,9953.979717,7637.406977,12270.55246,,,,,2,,0.154,,,0.127,0.182,4.115577663,,,3.300508269,5.042603561,5.021662549,,,4.088071069,6.067594381,0.080152672,105,1310,0.065448611,0.094856733,0,,,,,,,,,,0.09787234,0.059880868,0.135863813,0.078063241,0.061534504,0.094591978,,,,,,,0.125,,,0.095,0.157,0.342,,,0.276,0.417,8,0.050295421,0.111,,,0.203,,,0.163,0.25,0.585510597,7597,12975,,,0.113530998,,,0.088498683,0.141836819,0.183673469,9,49,0.113526063,0.263733337,220.3,29,13164,,,17.36407629,61,3513,13.28214249,22.30488241,,,,,,,,,,29.75206612,17.63295997,47.02109135,13.93472681,9.861042041,19.12650125,,,,,,,0.143964149,1542,10711,0.122517341,0.165410958,0.000607718,8,13164,,,1645.5,0.000750188,10,13330,,,1333,0.00180045,24,13330,,,555.4166667,1549,,,,,,,,,1561,0.45,,,,,,,,,0.46,0.42,,,,,,,,0.41,0.42,0.905495894,7167,7915,0.883948155,0.927043633,0.542894141,1677,3089,0.467607755,0.618180526,0.022712732,142,6252,,,0.141,572,,0.083808511,0.198191489,0.148148148,0,0.77740632,,,,,,,0.365963855,0.195632186,0.536295525,0.108847868,0.042684992,0.175010743,3.82567505,123971,32405,2.735907127,4.915442973,0.130445545,527,4040,0.07516346,0.185727629,0,0,13164,,,117.4711662,77,65548,92.7064073,146.8188023,,,,,,,,,,,,,132.6382109,103.7812311,167.035875,,,,4.7,,,,,1,,,,,0.073341094,315,4295,0.040854826,0.105827363,0.048751486,0.017976719,0.079526254,0.019324796,0.002653919,0.035995673,0.015133877,0,0.030742864,0.773040153,4043,5230,0.740744604,0.805335702,,,,,,,,,,0.775800712,0.631510153,0.920091271,0.765254846,0.720061758,0.810447933,0.151,,5230,0.115295058,0.186704942,77.27992416,,,75.60697142,78.9528769,,,,,,,,,,95.90198906,66.60832737,125.1956507,76.27546972,74.39303126,78.15790818,,,,382.0740848,157,36636,319.068161,445.0800086,,,,,,,,,,,,,417.2245687,344.5908861,489.8582514,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.121,,,0.102,0.14,0.17,,,0.147,0.196,0.093,,,0.078,0.11,106.5,11,10333,,,0.111,1420,,,,0.050295421,628.8436465,12503,,,27.72247285,11,39679,13.83895856,49.60316166,,,,,,,,,,,,,30.38682427,14.57166336,55.88245174,,,,0.324,,,0.309,0.34,0.157847399,1053,6671,0.132826123,0.182868676,0.121807001,515,4228,0.08606232,0.157551682,0.000675169,9,13330,,,1481.111111,0.89,191.35,215,,,,,,,,2.771378062,,,,,,,,2.477214867,2.816949813,2.848115918,,,,,,,,2.333286306,2.972174268,0.022655564,,,,,782.8027,,,,,0.650386219,38058,58516,0.582676381,0.718096057,67318,,,59324.29787,75311.70213,63583,30925.46809,96240.53192,,,,,,,48750,26655.02128,70844.97872,70824,66880.17021,74767.82979,,,,,,0.37934302,1201,3166,,,,,,,,0.253409192,,67318,,,5.06585613,5,987,,,,,,,,,,,,,,,,,,,,,,,,,,24.12123683,16,65548,13.50047315,39.78431191,24.40959297,,,,,,,,,,,,,26.02648825,14.22892332,43.66802487,,,,19.83279429,13,65548,10.56012768,33.91468225,,,,,,,,,,,,,23.94856585,12.7516027,40.95277696,,,,19.80481257,18,90887,11.73758709,31.30014223,,,,,,,,,,,,,21.2001961,12.11774384,34.42779027,,,,24,,2000,,,27,21,0.73081464,6190,8470,,,0.551,,,,,11.58006109,,,,,0.759636103,3173,4177,0.71885996,0.800412245,0.083438367,331,3967,0.043412812,0.123463921,0.851807517,3558,4177,0.815013078,0.888601957,13330,,,,,0.308552138,4113,13330,,,0.175993999,2346,13330,,,0.003300825,44,13330,,,0.021905476,292,13330,,,0.016729182,223,13330,,,0.002325581,31,13330,,,0.128057014,1707,13330,,,0.826031508,11011,13330,,,0.028249524,341,12071,0.016473342,0.040025706,0.482295574,6429,13330,,,1,12975,12975,, -49,029,49029,UT,Morgan County,2024,1,3946.062361,77,35448,2748.577018,5488.0175,0,,,,2,,,,2,,,,2,,,,2,3712.598818,2522.530773,5269.737673,,,,,2,,0.101,,,0.083,0.122,3.113905727,,,2.410306312,4.029079633,4.81231986,,,3.850156752,5.966503523,0.071005917,72,1014,0.055197411,0.086814424,0,,,,,,,,,,,,,0.067297582,0.051374134,0.083221029,,,,,,,0.084,,,0.062,0.11,0.306,,,0.239,0.392,9.8,0.000577042,0.053,,,0.146,,,0.115,0.186,0.94249695,11588,12295,,,0.140154103,,,0.110551599,0.179419364,0.357142857,5,14,0.212111468,0.496744159,79,10,12657,,,2.936465563,11,3746,1.465873029,5.254148028,,,,,,,,,,,,,,,,,,,,,,0.072214765,807,11175,0.060299872,0.084129659,0.000790077,10,12657,,,1265.7,0.000233791,3,12832,,,4277.333333,0.00015586,2,12832,,,6416,865,,,,,,,,,874,0.39,,,,,,,,,0.38,0.48,,,,,,,,,0.48,0.982132565,6816,6940,0.968528294,0.995736836,0.812068339,2234,2751,0.692621948,0.931514729,0.019835266,118,5949,,,0.036,153,,0.021702128,0.050297872,,,,,,,,,,0.028571429,0,0.266662648,0.012693577,0,0.028315891,2.906812878,194303,66844,2.388984753,3.424641002,0.049446668,210,4247,0.022646293,0.076247043,0,0,12657,,,50.68589461,31,61161,34.43860627,71.94458152,,,,,,,,,,,,,51.81615628,34.96014305,73.97078501,,,,5.8,,,,,0,,,,,0.068413392,235,3435,0.042871193,0.09395559,0.048387097,0.016936545,0.079837649,0.011644833,0,0.02756122,0.008733625,0,0.024720315,0.758314437,4013,5292,0.704994392,0.811634482,,,,,,,,,,,,,0.688588695,0.606985789,0.770191602,0.445,,5292,0.362356663,0.527643338,80.96711428,,,79.56819286,82.3660357,,,,,,,,,,,,,81.14447488,79.75527392,82.53367585,,,,209.9343665,77,35448,165.1266966,263.1545462,,,,,,,,,,,,,201.4528948,157.0424145,254.5236133,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.091,,,0.077,0.107,0.149,,,0.127,0.177,0.07,,,0.058,0.084,,,,,,0.053,650,,,,0.000577042,5.464006246,9469,,,,,,,,,,,,,,,,,,,,,,,,,,0.318,,,0.299,0.339,0.072953216,499,6840,0.059846833,0.086059599,0.072273325,330,4566,0.049635027,0.094911622,0.000467581,6,12832,,,2138.666667,0.93,221.34,238,,,,,,,,3.328444885,,,,,,,,,3.348649201,3.429931947,,,,,,,,,3.454177064,0.017294162,,,,,601.0151,,,,,0.589359916,55457,94097,0.43270207,0.746017762,119482,,,104581.234,134382.766,,,,,,,,,,108857,56942.61702,160771.383,119948,109433.1064,130462.8936,,,,,,0.10053223,340,3382,,,,,,,,0.15573057,,119482,,,2.2172949,2,902,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2300,,,-888,6,0.862402089,6606,7660,,,0.781,,,,,13.15456548,,,,,0.8693668,3048,3506,0.847561307,0.891172293,0.053581829,184,3434,0.018116349,0.089047309,0.936679977,3284,3506,0.89520114,0.978158815,12832,,,,,0.332995636,4273,12832,,,0.124298628,1595,12832,,,0.003117207,40,12832,,,0.003896509,50,12832,,,0.006468205,83,12832,,,0.001870324,24,12832,,,0.030470698,391,12832,,,0.945059227,12127,12832,,,0.001215172,14,11521,0,0.009158254,0.481140898,6174,12832,,,1,12295,12295,, -49,031,49031,UT,Piute County,2024,1,4756.470817,23,3900,1745.54096,10352.83451,1,,,,2,,,,2,,,,2,,,,2,5359.973233,1967.01571,11666.4052,1,,,,2,,0.191,,,0.16,0.225,4.640221289,,,3.711658438,5.676390453,5.748806882,,,4.664634239,6.961141516,,,,,,0,,,,,,,,,,,,,,,,,,,,,,0.153,,,0.118,0.191,0.362,,,0.285,0.452,2.6,0.478345453,0.155,,,0.247,,,0.199,0.3,0.117524339,169,1438,,,0.100150698,,,0.078361751,0.127450462,0,0,1,0,0.662081041,0,0,1487,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.13229572,136,1028,0.110848911,0.153742528,0,0,1487,,,-1487,0,0,1487,,,-1487,0.004707465,7,1487,,,212.4285714,1777,,,,,,,,,1777,0.37,,,,,,,,,0.37,0.32,,,,,,,,,0.32,0.88897893,1097,1234,0.84136366,0.936594201,0.455882353,124,272,0.257988115,0.653776591,0.040697674,21,516,,,0.259,78,,0.154148936,0.363851064,,,,,,,,,,,,,0.196774194,0.057896412,0.335651975,5.519358678,78833,14283,3.703925674,7.334791682,0.148036254,49,331,0,0.346366755,0,0,1487,,,,,,,,,,,,,,,,,,,,,,,,,,4.4,,,,,1,,,,,0.144067797,85,590,0.0635848,0.224550793,0.144329897,0.029158788,0.259501006,0.013559322,0,0.055683579,0.006779661,0,0.04103786,0.684210526,390,570,0.594285112,0.774135941,,,,,,,,,,,,,0.560906516,0.430134221,0.69167881,0.361,,570,0.13763467,0.58436533,,,,,,,,,,,,,,,,,,,,,,,,305.2073587,23,3900,180.8852238,482.3592096,,,,,,,,,,,,,329.5202804,191.9577066,527.5938901,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.144,,,0.122,0.166,0.194,,,0.167,0.222,0.11,,,0.093,0.13,0,0,1282,,,0.155,280,,,,0.478345453,744.3055243,1556,,,,,,,,,,,,,,,,,,,,,,,,,,0.328,,,0.312,0.344,0.145183175,107,737,0.121353388,0.169012962,0.096463023,30,311,0.061909831,0.131016214,0,0,1487,,,-1487,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.059285114,,,,,355.7207,,,,,0.905681029,33925,37458,0.700417868,1.110944191,54495,,,46296.3617,62693.6383,,,,,,,,,,41250,32764.21277,49735.78723,32917,18511.89362,47322.10638,,,,,,0.568627451,174,306,,,,,,,,0.313037893,,54495,,,15.15151515,1,66,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,200,,,0,0,0.596575343,871,1460,,,0.304,,,,,7.507281615,,,,,0.910369069,518,569,0.861564027,0.95917411,0.166351607,88,529,0.028586395,0.304116819,0.692442882,394,569,0.613030367,0.771855397,1487,,,,,0.203765972,303,1487,,,0.293207801,436,1487,,,0.00268998,4,1487,,,0.010087424,15,1487,,,0.004707465,7,1487,,,0.002017485,3,1487,,,0.0800269,119,1487,,,0.893745797,1329,1487,,,0.002333722,4,1714,0,0.034827211,0.503026227,748,1487,,,1,1438,1438,, -49,033,49033,UT,Rich County,2024,1,6421.671477,23,6943,3079.441081,11809.68248,1,,,,2,,,,2,,,,2,,,,2,7249.370014,3476.354702,13331.84956,1,,,,2,,0.135,,,0.113,0.16,3.785023842,,,2.974795766,4.663996318,5.197018853,,,4.187159122,6.310419809,0.073059361,16,219,0.038592803,0.107525918,1,,,,,,,,,,,,,0.070754717,0.036237878,0.105271556,,,,,,,0.111,,,0.085,0.143,0.337,,,0.26,0.422,5.1,0.345848771,0.103,,,0.193,,,0.155,0.238,0.452589641,1136,2510,,,0.124284814,,,0.095964526,0.155615987,0.333333333,3,9,0.150331965,0.513162068,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.156712852,328,2093,0.132883065,0.18054264,,0,2597,,,,0.000761035,2,2628,,,1314,0.000380518,1,2628,,,2628,,,,,,,,,,,0.37,,,,,,,,,0.37,0.39,,,,,,,,,0.39,0.958115183,1464,1528,0.907522033,1,0.707964602,400,565,0.520281524,0.89564768,0.024780176,31,1251,,,0.116,83,,0.069531915,0.162468085,,,,,,,,,,0.349206349,0,0.922353001,0.042360061,0,0.109453577,3.436713751,111188,32353,2.649529152,4.223898351,0.155256724,127,818,0.06159726,0.248916187,0,0,2597,,,80.72979737,10,12387,38.71307577,148.4649717,,,,,,,,,,,,,,,,,,,4.9,,,,,1,,,,,0.0296875,19,640,0,0.076835338,0.036163522,0,0.111624601,0.00625,0,0.045328771,0,0,0.031594133,0.717213115,700,976,0.621984958,0.812441271,,,,,,,,,,,,,0.696315121,0.519190506,0.873439736,0.419,,976,0.271746183,0.566253817,81.99588654,,,77.30557024,86.68620285,,,,,,,,,,,,,80.92408229,75.97552011,85.87264446,,,,278.3982841,23,6943,170.0529045,429.9635703,,,,,,,,,,,,,304.8501299,183.5396924,476.0612403,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.112,,,0.097,0.13,0.167,,,0.145,0.193,0.087,,,0.074,0.104,,,,,,0.103,260,,,,0.345848771,783.001617,2264,,,,,,,,,,,,,,,,,,,,,,,,,,0.323,,,0.305,0.34,0.157660992,213,1351,0.132639715,0.182682269,0.151282051,118,780,0.103622477,0.198941626,0.001141553,3,2628,,,876,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5076.976,,,,,0.583609023,38810,66500,0.407382575,0.759835471,71800,,,60933.61702,82666.38298,,,,,,,,,,30250,27839.61702,32660.38298,71250,61514.34043,80985.65957,,,,,,0.31640625,162,512,,,,,,,,0.237590529,,71800,,,,,205,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,300,,,0,0,0.894771242,1369,1530,,,0.124,,,,,2.597670681,,,,,0.790849673,605,765,0.74476966,0.836929687,0.091891892,68,740,0.008854333,0.174929451,0.941176471,720,765,0.77250991,1,2628,,,,,0.273592085,719,2628,,,0.204718417,538,2628,,,0.00608828,16,2628,,,0.008751903,23,2628,,,0.004185693,11,2628,,,0.00152207,4,2628,,,0.066210046,174,2628,,,0.899543379,2364,2628,,,0.005165734,12,2323,0,0.029785114,0.4695586,1234,2628,,,1,2510,2510,, -49,035,49035,UT,Salt Lake County,2024,1,6566.644555,10869,3360017,6403.104451,6730.18466,0,16114.25842,13091.76979,19136.74706,,3765.234711,3137.654826,4392.814596,,10674.79,9161.087717,12188.49228,,6104.606048,5740.622586,6468.589509,,6439.569788,6245.522129,6633.617448,,15506.8785,13539.50244,17474.25457,,,0.129,,,0.109,0.15,3.596740581,,,3.026733165,4.194045967,5.488937733,,,4.82516355,6.151221139,0.076726871,8543,111343,0.075163495,0.078290247,0,0.079622132,0.060130556,0.099113708,0.103649929,0.095166287,0.112133572,0.1046875,0.092827879,0.116547122,0.083235238,0.079898885,0.086571591,0.069935039,0.068031556,0.071838521,0.083248731,0.071049357,0.095448105,0.08176531,0.071831792,0.091698827,0.086,,,0.067,0.107,0.308,,,0.274,0.342,8.7,0.026211848,0.09,,,0.191,,,0.163,0.222,0.916966044,1086823,1185238,,,0.167931622,,,0.147155176,0.188429652,0.273239437,97,355,0.246563252,0.300396682,491.2,5828,1186421,,,15.25844051,4227,277027,14.79844871,15.71843232,31.11353712,23.56508917,40.31119618,5.236636696,3.92260023,6.849649731,24.0704501,19.81654568,28.32435451,31.72481915,30.39427617,33.05536214,8.46342672,8.033105359,8.893748081,15.02363268,12.06521069,18.48787279,13.30699657,11.00167703,15.61231611,0.109572697,113880,1039310,0.103615251,0.115530144,0.000762798,905,1186421,,,1310.962431,0.00081264,964,1186257,,,1230.557054,0.005632844,6682,1186257,,,177.5302305,1607,,,,,497,1441,1442,1720,1568,0.41,,,,,0.29,0.3,0.27,0.25,0.42,0.52,,,,,0.41,0.48,0.37,0.37,0.53,0.917880396,692471,754424,,,0.707523264,259949,367407,,,0.022997471,15597,678205,,,0.084,24703,,0.06493617,0.10306383,0.095238095,0.04321734,0.14725885,0.124248366,0.082723365,0.165773367,0.271229404,0.200844348,0.34161446,0.155351722,0.137461037,0.173242408,0.049813898,0.042351166,0.05727663,3.802104232,162981,42866,3.690197323,3.914011141,0.169259194,52034,307422,0.157032635,0.181485754,4.652648596,552,1186421,,,72.6641827,4215,5800657,70.47048047,74.85788492,127.2694216,94.15461871,168.2569247,26.06748318,20.16058961,33.16423006,94.25345434,76.43320207,114.9812212,52.96969986,48.64759124,57.29180848,80.95343855,78.19387788,83.71299922,58.48733288,44.29773476,75.77712366,9,,,,,1,,,,,0.137937781,52875,383325,0.132223832,0.143651731,0.105677362,0.100579449,0.110775275,0.032831149,0.029814278,0.035848019,0.0067958,0.005535606,0.008055994,0.686444454,425229,619466,0.678595212,0.694293696,0.648239605,0.620971467,0.675507743,0.621078752,0.599496004,0.642661499,0.684479766,0.639487956,0.729471577,0.694624824,0.676132522,0.713117126,0.718117812,0.711618252,0.724617372,0.254,,619466,0.246655166,0.261344834,78.82263653,,,78.65345814,78.99181492,70.90223069,68.06534672,73.73911467,85.55318234,84.20734138,86.8990233,74.59344387,72.72718544,76.4597023,80.87351689,80.201729,81.54530478,78.7918601,78.60274126,78.98097894,69.0054658,67.62796437,70.38296723,316.6788434,10869,3360017,310.6866004,322.6710864,749.2227876,621.5773206,876.8682546,185.786956,163.0280453,208.5458667,542.4410448,470.0610729,614.8210167,287.3640487,271.1219433,303.6061541,314.5366484,307.7041116,321.3691853,749.3598798,668.9486223,829.7711372,49.69466945,673,1354270,45.94011554,53.44922337,,,,63.86647649,43.09044349,91.17336639,110.1928375,75.37181925,155.559408,53.89041693,46.0823762,61.69845766,43.48294864,39.03415741,47.93173987,97.91921665,65.06660834,141.5205314,5.63244569,643,114160,5.197086619,6.067804761,,,,4.614767255,2.925366581,6.924416712,8.369868474,5.181080504,12.79423306,7.019562716,6.002516742,8.03660869,4.753250385,4.247999241,5.258501528,21.42110763,15.37215667,29.06015129,11.00070972,7.474448538,15.61462935,0.103,,,0.089,0.118,0.175,,,0.155,0.195,0.09,,,0.079,0.102,230.5,2239,971231,,,0.09,105370,,,,0.026211848,26989.1601,1029655,,,22.71966974,798,3512375,21.14330526,24.29603422,64.00409626,35.82260681,105.5650234,,,,37.39016639,23.95658512,55.63360378,15.57261556,12.5796552,18.56557591,25.66532578,23.66275363,27.66789793,,,,0.299,,,0.285,0.311,0.120334333,88426,734836,0.113185397,0.127483269,0.086340408,27607,319746,0.074425514,0.098255301,0.001571329,1864,1186257,,,636.40397,0.86904519,58942.99,67825,,,0.065472058,4432,67693,0.053747464,0.077196652,3.085342428,,,,,,2.919073069,2.413781021,2.583771941,3.336277044,3.02334174,,,,,,2.899643663,2.265695863,2.463410134,3.30265424,0.134485014,,,,,-2033.854388,,,,,0.782017911,50473,64542,0.763088129,0.800947693,91713,,,89462.2766,93963.7234,70503,60081.04255,80924.95745,94238,86965.14894,101510.8511,44521,34736.48936,54305.51064,72356,69826.46809,74885.53192,95273,93700.23404,96845.76596,,,,,,0.325862224,69001,211749,,,61.72969274,,,,,0.202882907,,91713,,,5.793338862,482,83199,,,3.586851946,288,8029325,3.172591681,4.00111221,,,,,,,9.418651829,5.015035422,16.10618147,6.438795892,5.215445344,7.862871824,2.513711152,2.101705262,2.925717042,,,,21.51800352,1230,5800657,20.3011327,22.73487434,21.20449459,20.64330985,9.899269471,37.96378181,10.87795223,6.969709248,16.18553065,21.07130685,13.50078389,31.35243433,11.29835673,9.07012195,13.5265915,24.55346576,23.01990425,26.08702726,15.87059744,9.071417707,25.77285594,13.5329498,785,5800657,12.58624689,14.47965272,,,,5.52946613,3.023010588,9.2775046,21.37707212,13.39689729,32.36514409,10.4654173,8.544272078,12.38656253,14.59414682,13.42245971,15.76583393,13.33921627,7.102570868,22.81046607,8.307049472,667,8029325,7.676615001,8.937483942,,,,4.083728094,2.23261215,6.851801835,9.418651829,5.015035422,16.10618147,10.6642557,9.006623937,12.32188745,8.068485445,7.330340333,8.806630558,,,,17.69450393,,140100,,,1047,1432,0.723368691,546581,755605,,,0.721,,,,,198.5308971,,,,,0.671467083,273739,407673,0.664565103,0.678369063,0.114849489,46028,400768,0.109627198,0.12007178,0.928158107,378385,407673,0.923450928,0.932865286,1186257,,,,,0.250268702,296883,1186257,,,0.120679583,143157,1186257,,,0.019156894,22725,1186257,,,0.014483371,17181,1186257,,,0.047661679,56539,1186257,,,0.019055736,22605,1186257,,,0.197073653,233780,1186257,,,0.688806051,817101,1186257,,,0.034860745,38373,1100751,,,0.493125014,584973,1186257,,,0.006914223,8195,1185238,, -49,037,49037,UT,San Juan County,2024,1,13465.13571,249,42355,11259.27055,15671.00087,0,22013.60543,17849.46591,26177.74494,,,,,2,,,,2,,,,2,5438.451821,3642.216537,7810.523993,,,,,2,,0.21,,,0.183,0.239,4.80195406,,,3.987436304,5.699485852,5.654897725,,,4.810553286,6.582148045,0.063455658,83,1308,0.050244175,0.07666714,0,0.052950076,0.035878442,0.070021709,,,,,,,,,,0.071428571,0.049543705,0.093313438,,,,,,,0.162,,,0.132,0.195,0.368,,,0.314,0.423,4.1,0.301295056,0.171,,,0.224,,,0.19,0.263,0.339922854,4935,14518,,,0.112512726,,,0.089908769,0.136685575,0.238095238,10,42,0.158420999,0.323934708,289.9,42,14489,,,21.14480991,99,4682,17.18545811,25.74304736,28.07316036,21.71178019,35.71594319,,,,,,,29.3255132,14.06272345,53.93066288,10.47409041,6.30608664,16.35658962,,,,,,,0.140944059,1484,10529,0.123071719,0.1588164,0.000621161,9,14489,,,1609.888889,0.001183927,17,14359,,,844.6470588,0.001671426,24,14359,,,598.2916667,2118,,,,,2590,,,,1390,0.25,,,,,0.25,,,,0.28,0.17,,,,,0.21,,,,0.13,0.877988551,7822,8909,0.854971205,0.901005897,0.587193863,1990,3389,0.496202466,0.678185259,0.04377345,245,5597,,,0.29,1167,,0.203021277,0.376978723,0.34674221,0.283823338,0.409661081,,,,,,,0.354098361,0,0.722061862,0.07201889,0.023031068,0.121006712,5.601722995,101436,18108,4.031291669,7.172154322,0.276351186,1130,4089,0.209282782,0.34341959,0,0,14489,,,152.8729573,116,75880,125.0529177,180.6929969,224.6433786,178.1282281,279.5881303,,,,,,,,,,92.36086283,62.75472524,131.0988723,,,,4.3,,,,,1,,,,,0.219672131,1005,4575,0.17793871,0.261405552,0.069977427,0.04179251,0.098162343,0.107103825,0.079274645,0.134933005,0.080874317,0.054298371,0.107450263,0.750387898,3869,5156,0.693278285,0.807497511,0.769027134,0.694883441,0.843170828,,,,,,,,,,0.73010989,0.637781884,0.822437897,0.29,,5156,0.233772305,0.346227695,73.73462561,,,72.04074322,75.42850799,66.93335802,64.48273314,69.38398291,,,,,,,,,,81.31311951,79.17744104,83.44879797,,,,554.1866558,249,42355,482.5180992,625.8552125,881.4388994,745.8524567,1017.025342,,,,,,,,,,269.1702799,203.8669414,348.7413185,,,,50.60216577,10,19762,24.26570538,93.05918451,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.154,,,0.136,0.174,0.195,,,0.173,0.221,0.137,,,0.12,0.156,51.3,6,11685,,,0.171,2490,,,,0.301295056,4442.896892,14746,,,22.18524681,10,45075,10.63868818,40.79945877,,,,,,,,,,,,,,,,,,,0.334,,,0.322,0.346,0.170185265,1185,6963,0.146355478,0.194015052,0.088056947,334,3793,0.06422716,0.111886734,0.001671426,24,14359,,,598.2916667,0.91,242.97,267,,,,,,,,2.484845386,,,,,,,,,,2.369908375,,,,,,,,,,0.311195154,,,,,-11165.58,,,,,0.731999059,40451,55261,0.566354582,0.897643536,50452,,,44475.48936,56428.51064,33688,27986.7234,39389.2766,,,,,,,,,,66736,54905.70213,78566.29787,,,,,,0.993390615,3006,3026,,,,,,,,0.338123365,,50452,,,6.63507109,7,1055,,,,,,,,,,,,,,,,,,,,,,,,,,23.35068263,17,75880,13.3469327,37.92004567,22.40379547,,,,,,,,,,,,,,,,,,,18.4501845,14,75880,10.08688755,30.95627454,,,,,,,,,,,,,,,,,,,50.66929533,55,108547,38.17104754,65.95305257,90.33601068,66.1373135,120.4955789,,,,,,,,,,,,,,,,9.545454546,,2200,,,7,14,0.650614948,6877,10570,,,0.363,,,,,9.10950795,,,,,0.797397353,3554,4457,0.746849855,0.84794485,0.110869565,459,4140,0.070425282,0.151313849,0.667264976,2974,4457,0.623858267,0.710671686,14359,,,,,0.281426283,4041,14359,,,0.151821158,2180,14359,,,0.003691065,53,14359,,,0.470715231,6759,14359,,,0.006267846,90,14359,,,0.000835713,12,14359,,,0.066578453,956,14359,,,0.454349189,6524,14359,,,0.030995823,423,13647,0.02094443,0.041047216,0.500661606,7189,14359,,,1,14518,14518,, -49,039,49039,UT,Sanpete County,2024,1,7137.346981,323,86198,6031.531017,8243.162945,0,,,,2,,,,2,,,,2,7194.887964,3830.97482,12303.47754,1,7259.789911,6068.868675,8450.711147,,,,,2,,0.155,,,0.132,0.183,4.144028216,,,3.369756463,4.98175522,5.353555999,,,4.452759526,6.261931616,0.083270535,221,2654,0.072758861,0.093782209,0,,,,,,,,,,0.083056478,0.051879726,0.114233231,0.080255358,0.068884129,0.091626587,,,,,,,0.119,,,0.095,0.15,0.345,,,0.289,0.403,7.9,0.081479457,0.1,,,0.201,,,0.166,0.245,0.582867391,16575,28437,,,0.121365823,,,0.097442499,0.148071086,0.0625,1,16,0.002768371,0.214434203,171.8,50,29106,,,10.18347819,116,11391,8.330274248,12.03668212,,,,,,,,,,34.81012658,23.96168942,48.88635999,7.925887802,6.254986707,9.905999846,,,,,,,0.114251433,2571,22503,0.097570582,0.130932284,0.000412286,12,29106,,,2425.5,0.000471,14,29724,,,2123.142857,0.009823712,292,29724,,,101.7945206,2007,,,,,,,,3990,1947,0.39,,,,,,,,0.17,0.4,0.37,,,,,,,,0.29,0.37,0.898045095,15573,17341,0.880902449,0.915187742,0.559977812,4038,7211,0.495519638,0.624435985,0.027369041,372,13592,,,0.184,1240,,0.132765957,0.235234043,,,,0.333333333,0,0.995445004,,,,0.365654206,0.255698512,0.475609899,0.184914408,0.133693549,0.236135267,3.798026917,120500,31727,3.08690255,4.509151284,0.117428571,822,7000,0.066127273,0.16872987,0,0,29106,,,87.44477172,133,152096,72.58322199,102.3063215,,,,,,,,,,,,,94.97112571,78.25495435,111.6872971,,,,4.6,,,,,0,,,,,0.126055149,1120,8885,0.101783991,0.150326307,0.082004298,0.058254594,0.105754003,0.038266742,0.022971737,0.053561747,0.017445132,0.00387532,0.031014945,0.718012629,8642,12036,0.685322676,0.750702581,,,,,,,,,,0.583333333,0.42705541,0.739611256,0.738851313,0.702573305,0.77512932,0.227,,12036,0.189567508,0.264432492,78.14652938,,,77.11039307,79.18266569,,,,,,,,,,77.50920167,70.2448582,84.77354515,78.00036065,76.91803563,79.08268568,,,,332.6327462,323,86198,295.4482165,369.817276,,,,,,,,,,399.427424,232.6811939,639.521999,337.7157129,297.8930089,377.5384169,,,,73.81687946,27,36577,48.6457887,107.3996841,,,,,,,,,,,,,75.92262494,48.1284315,113.9212151,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.123,,,0.106,0.142,0.177,,,0.155,0.203,0.09,,,0.077,0.104,49.3,12,24350,,,0.1,2840,,,,0.081479457,2266.921448,27822,,,17.4981955,16,91438,10.00173063,28.41597323,,,,,,,,,,,,,20.34277577,11.62765404,33.03539338,,,,0.312,,,0.296,0.326,0.132256211,2071,15659,0.110809402,0.153703019,0.075926936,557,7336,0.054480127,0.097373744,0.000773786,23,29724,,,1292.347826,0.897752809,399.5,445,,,,,,,,3.371298131,,,,,,,,2.826662362,3.510673464,3.342102286,,,,,,,,2.653333108,3.535876709,0.049484997,,,,,461.52295,,,,,0.635156104,37250,58647,0.534497594,0.735814613,65044,,,58750.55319,71337.44681,118750,106022.5106,131477.4894,,,,,,,49018,30959.78723,67076.21277,65524,61340.68085,69707.31915,,,,,,0.447997363,2718,6067,,,,,,,,0.262268618,,65044,,,6.417736289,11,1714,,,,,,,,,,,,,,,,,,,,,,,,,,25.13216211,38,152096,17.60225737,34.7935059,24.98422049,,,,,,,,,,,,,26.98045944,18.57210683,37.89059629,,,,13.14958973,20,152096,8.032111026,20.30847485,,,,,,,,,,,,,13.02023498,7.584766685,20.84665749,,,,15.21758773,32,210283,10.40881874,21.48269336,,,,,,,,,,,,,15.50413351,10.30238412,22.40778969,,,,25.52631579,,3800,,,40,57,0.581395349,12625,21715,,,0.522,,,,,18.52205997,,,,,0.778229082,6706,8617,0.755883555,0.800574609,0.094624179,778,8222,0.070417094,0.118831264,0.862132993,7429,8617,0.832275958,0.891990027,29724,,,,,0.234928004,6983,29724,,,0.148062172,4401,29724,,,0.00968914,288,29724,,,0.01688871,502,29724,,,0.00851164,253,29724,,,0.007401427,220,29724,,,0.094199973,2800,29724,,,0.857589826,25491,29724,,,0.018593669,504,27106,0.009666291,0.027521048,0.467601938,13899,29724,,,0.822449626,23388,28437,, -49,041,49041,UT,Sevier County,2024,1,7877.887658,282,60810,6540.283528,9215.491789,0,,,,2,,,,2,,,,2,,,,2,8226.588588,6789.084094,9664.093081,,,,,2,,0.147,,,0.122,0.175,3.974011004,,,3.160876332,4.873858307,5.615163733,,,4.673304352,6.62969172,0.080374754,163,2028,0.068541958,0.092207549,0,,,,,,,,,,0.081481482,0.035332449,0.127630514,0.080529509,0.068003763,0.093055255,,,,,,,0.13,,,0.101,0.162,0.37,,,0.31,0.431,8.3,0.013201658,0.112,,,0.204,,,0.165,0.247,0.529829942,11403,21522,,,0.127348801,,,0.102151781,0.156656319,0.210526316,4,19,0.095274272,0.345173375,191.7,42,21906,,,18.82732652,105,5577,15.22610301,22.42855003,,,,,,,,,,,,,19.02063942,15.37061279,23.27644551,,,,,,,0.121142793,2171,17921,0.104461942,0.137823644,0.000456496,10,21906,,,2190.6,0.000679686,15,22069,,,1471.266667,0.002673433,59,22069,,,374.0508475,2001,,,,,,,,,1854,0.4,,,,,,,,,0.4,0.38,,,,,,,,0.25,0.38,0.919844244,12520,13611,0.904388087,0.9353004,0.601419499,3220,5354,0.536496437,0.666342562,0.028382582,292,10288,,,0.134,794,,0.080382979,0.187617021,,,,,,,,,,0.123913044,0.025842617,0.22198347,0.133271202,0.090071539,0.176470865,3.676991823,120962,32897,2.983356934,4.370626712,0.10885459,670,6155,0.063119514,0.154589666,0,0,21906,,,91.53021884,99,108161,74.39124532,111.4347572,,,,,,,,,,,,,96.01293648,77.68019917,117.3708359,,,,4.5,,,,,0,,,,,0.09752839,730,7485,0.070162453,0.124894327,0.071919192,0.045546907,0.098291476,0.037942552,0.016219986,0.059665117,0.004008016,0,0.008739839,0.775354417,7110,9170,0.745030226,0.805678607,,,,,,,,,,,,,0.770924073,0.739942543,0.801905603,0.129,,9170,0.103865504,0.154134496,76.61752666,,,75.47860312,77.75645019,,,,,,,,,,,,,76.13836055,74.95177873,77.32494237,,,,390.3522829,282,60810,342.7572309,437.9473349,,,,,,,,,,,,,406.1418306,355.7505862,456.533075,,,,58.64027854,16,27285,33.5179859,95.22813853,,,,,,,,,,,,,62.00909467,34.70601957,102.2745716,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.12,,,0.102,0.139,0.176,,,0.152,0.202,0.091,,,0.078,0.106,33.9,6,17678,,,0.112,2410,,,,0.013201658,274.6208847,20802,,,22.96879307,15,65306,12.85545912,37.88353118,,,,,,,,,,,,,25.12099948,14.06003271,41.43326836,,,,0.331,,,0.313,0.347,0.140869857,1681,11933,0.119423048,0.162316665,0.084562907,533,6303,0.060733119,0.108392694,0.000634374,14,22069,,,1576.357143,0.85,320.45,377,,,,,,,,3.291588693,,,,,,,,,3.342099077,3.499101512,,,,,,,,,3.603110123,0.03628487,,,,,90.42285,,,,,0.739353333,41823,56567,0.677859649,0.800847018,73014,,,67735.70213,78292.29787,51607,22367.85106,80846.14894,,,,,,,38750,19683.78723,57816.21277,69526,62636.80851,76415.19149,,,,,,0.428748964,2070,4828,,,78.26259028,,,,,0.233640124,,73014,,,5.291005291,8,1512,,,,,,,,,,,,,,,,,,,,,,,,,,35.76649278,38,108161,25.05041183,49.51590208,35.13281127,,,,,,,,,,,,,37.18063402,25.7486699,51.95620933,,,,28.66097762,31,108161,19.47374375,40.68196994,,,,,,,,,,,,,29.30921219,19.62883939,42.09291772,,,,9.972608569,15,150412,5.581593312,16.44830125,,,,,,,,,,,,,10.15648238,5.552643425,17.04085164,,,,30,,3000,,,29,61,0.692647059,10362,14960,,,0.585,,,,,30.34013251,,,,,0.795700379,5885,7396,0.768079638,0.82332112,0.082942313,601,7246,0.055134848,0.110749778,0.874661979,6469,7396,0.844230138,0.905093821,22069,,,,,0.278898002,6155,22069,,,0.170873171,3771,22069,,,0.004893742,108,22069,,,0.015904663,351,22069,,,0.004032806,89,22069,,,0.002673433,59,22069,,,0.057728035,1274,22069,,,0.906611083,20008,22069,,,0.004303735,87,20215,0,0.00991396,0.487561738,10760,22069,,,0.610026949,13129,21522,, -49,043,49043,UT,Summit County,2024,1,3916.924794,284,122113,3211.538339,4622.31125,0,,,,2,,,,2,,,,2,,,,2,4138.941999,3348.174993,4929.709004,,,,,2,,0.096,,,0.079,0.116,2.951298648,,,2.293676427,3.633538242,4.239044698,,,3.481867064,4.997069789,0.081174439,235,2895,0.07122593,0.091122947,0,,,,,,,,,,0.082311734,0.059768486,0.104854981,0.07869934,0.067242374,0.090156306,,,,,,,0.071,,,0.051,0.094,0.23,,,0.188,0.276,8.8,0.056752998,0.069,,,0.137,,,0.109,0.169,0.951271337,40293,42357,,,0.15660206,,,0.127614473,0.187822604,0.125,3,24,0.040232942,0.245512437,257.6,111,43093,,,4.862075809,49,10078,3.596990449,6.427922067,,,,,,,,,,20.38132807,13.84812359,28.92966831,1.869391825,1.046284413,3.083277526,,,,,,,0.08398611,3120,37149,0.073262706,0.094709514,0.001392338,60,43093,,,718.2166667,0.000580909,25,43036,,,1721.44,0.002463054,106,43036,,,406,1408,,,,,,,,,1277,0.49,,,,,,,,0.21,0.49,0.57,,,,,,0.73,,0.34,0.58,0.960390197,27665,28806,0.951562317,0.969218076,0.759319049,7761,10221,0.69663709,0.822001008,0.021461518,563,26233,,,0.051,484,,0.030744681,0.071255319,,,,,,,,,,0.060410557,0.019259382,0.101561733,0.039812646,0.018024006,0.061601287,,,,,,0.187075509,1873,10012,0.147679468,0.226471551,8.586081266,37,43093,,,56.45804076,119,210776,46.31406055,66.60202098,,,,,,,,,,,,,63.56563855,51.8453241,75.285953,,,,6,,,,,1,,,,,0.125388601,1815,14475,0.104034609,0.146742593,0.111692845,0.090532549,0.13285314,0.017892919,0.007821252,0.027964585,0.003108808,0,0.006252,0.659719774,14973,22696,0.629967658,0.689471891,,,,0.618937644,0.494635006,0.743240283,,,,0.663843802,0.593212762,0.734474841,0.670781893,0.640067172,0.701496614,0.344,,22696,0.307762266,0.380237734,84.82655258,,,83.55263277,86.1004724,,,,,,,,,,85.0953769,79.08213148,91.10862232,84.57405975,83.25157826,85.89654125,,,,180.1354581,284,122113,158.3573634,201.9135528,,,,,,,,,,,,,187.1284927,163.2260382,211.0309472,,,,31.57633579,14,44337,17.26307661,52.97972601,,,,,,,,,,,,,32.10928834,16.02884105,57.45238634,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.087,,,0.073,0.102,0.135,,,0.115,0.156,0.068,,,0.057,0.081,95.8,35,36525,,,0.069,2920,,,,0.056752998,2061.495906,36324,,,12.52573647,16,127737,7.159540661,20.3410113,,,,,,,,,,,,,14.87265291,8.501006185,24.15225655,,,,0.267,,,0.252,0.283,0.088571958,2391,26995,0.075465575,0.101678341,0.074411683,800,10751,0.055347853,0.093475512,0.001138582,49,43036,,,878.2857143,0.942976366,638.395,677,,,,,,,,3.268669048,,,,,,,,2.590374559,3.403169921,3.205380006,,,,,,,,2.515828602,3.349698177,0.039708866,,,,,3919.488667,,,,,0.794691545,60480,76105,0.662899734,0.926483356,132358,,,116288.383,148427.617,,,,178309,100187.8085,256430.1915,45313,27835.04255,62790.95745,79743,71931.59575,87554.40426,131296,122227.5745,140364.4255,,,,,,0.157331342,1264,8034,,,73.79015789,,,,,0.140580849,,132358,,,10.3480715,22,2126,,,,,,,,,,,,,,,,,,,,,,,,,,19.12106446,42,210776,13.66036878,26.03746274,19.92636733,,,,,,,,,,,,,21.89651013,15.41716386,30.18145487,,,,13.28424489,28,210776,8.827284252,19.19943255,,,,,,,,,,,,,15.7507777,10.46627739,22.7642592,,,,4.815696419,14,290716,2.632786044,8.079920308,,,,,,,,,,,,,4.889616899,2.526536403,8.541176706,,,,13.46153846,,5200,,,13,57,0.88879046,26086,29350,,,0.417,,,,,69.23320235,,,,,0.809813255,11058,13655,0.791312117,0.828314394,0.133610586,1767,13225,0.109532721,0.157688451,0.944415965,12896,13655,0.898746875,0.990085055,43036,,,,,0.225020913,9684,43036,,,0.156194814,6722,43036,,,0.007923599,341,43036,,,0.00580909,250,43036,,,0.021563342,928,43036,,,0.001626545,70,43036,,,0.108676457,4677,43036,,,0.843689005,36309,43036,,,0.018879612,762,40361,0.012693044,0.025066179,0.486104657,20920,43036,,,0.446419718,18909,42357,, -49,045,49045,UT,Tooele County,2024,1,7263.626452,713,215957,6573.156055,7954.09685,0,,,,2,,,,2,,,,2,8736.475025,6756.789151,11114.93832,,6789.791471,6051.758041,7527.824901,,,,,2,,0.138,,,0.117,0.16,3.981540327,,,3.248306736,4.783596293,5.629907334,,,4.821128304,6.468691232,0.080989399,573,7075,0.07463218,0.087346619,0,,,,,,,,,,0.092557252,0.075010761,0.110103743,0.079920977,0.072798199,0.087043755,,,,0.081632653,0.037369986,0.12589532,0.106,,,0.083,0.13,0.383,,,0.333,0.435,8.6,0.068041861,0.073,,,0.193,,,0.161,0.23,0.830187901,60353,72698,,,0.14160983,,,0.117440044,0.170241992,0.28,14,50,0.206244449,0.356341939,257,197,76640,,,13.33005411,271,20330,11.74295759,14.91715062,,,,,,,,,,20.55498458,15.68561869,26.45833964,11.40496887,9.761489292,13.04844844,,,,23.06425041,12.60944032,38.69789312,0.089822945,6240,69470,0.077908052,0.101737839,0.000143528,11,76640,,,6967.272727,0.000275227,22,79934,,,3633.363636,0.001050867,84,79934,,,951.5952381,1310,,,,,,,,,1308,0.33,,,,,,,,0.24,0.33,0.43,,,,,0.25,0.31,,0.36,0.43,0.926007629,40298,43518,0.912112708,0.93990255,0.618890847,13347,21566,0.565886312,0.671895381,0.025292287,967,38233,,,0.071,1722,,0.045978723,0.096021277,,,,,,,,,,0.046728972,0.022484447,0.070973497,0.042573861,0.021443044,0.063704679,2.972037971,149654,50354,2.699685761,3.244390182,0.136478122,3197,23425,0.091057041,0.181899202,2.218162839,17,76640,,,75.94782329,274,360774,66.95499873,84.94064786,,,,,,,,,,71.76629517,49.70024566,100.2862042,75.91041896,65.99145755,85.82938037,,,,5.8,,,,,0,,,,,0.09009222,1905,21145,0.071258545,0.108925896,0.059957173,0.044914149,0.075000198,0.02927406,0.017098781,0.041449339,0.0037834,0.000362513,0.007204287,0.711985101,25996,36512,0.685803675,0.738166527,,,,,,,,,,0.567221892,0.473552993,0.66089079,0.662797539,0.627557496,0.698037583,0.521,,36512,0.474272953,0.567727047,77.19472702,,,76.51116671,77.87828732,,,,,,,,,,76.86455424,74.75092308,78.97818539,77.39922702,76.66477291,78.13368113,,,,356.7656024,713,215957,330.4988972,383.0323077,,,,,,,,,,359.8947045,284.0232727,449.8066307,345.1617602,317.1429663,373.180554,,,,54.04236922,55,101772,40.71210841,70.34357188,,,,,,,,,,90.77940604,49.62994603,152.3124181,44.61629982,31.24870788,61.76776533,,,,5.762858378,40,6941,4.117070515,7.847377462,,,,,,,,,,,,,5.634314795,3.828243544,7.997460106,,,,,,,0.11,,,0.095,0.126,0.169,,,0.147,0.192,0.092,,,0.078,0.106,86.8,52,59912,,,0.073,5190,,,,0.068041861,3961.261063,58218,,,22.38027671,50,223411,16.61107275,29.50560477,,,,,,,,,,,,,23.58400018,17.06785787,31.76749347,,,,0.344,,,0.327,0.357,0.101268048,4608,45503,0.085778687,0.11675741,0.070762611,1776,25098,0.050507291,0.09101793,0.000688068,55,79934,,,1453.345455,0.77,1030.26,1338,,,0.074588375,376,5041,0.038846509,0.110330242,,,,,,,,,,,,,,,,,,,,,0.067066686,,,,,500.6865,,,,,0.69284223,45465,65621,0.639134522,0.746549939,91353,,,81041.85106,101664.1489,,,,,,,141216,140327.1489,142104.8511,83808,70446.6383,97169.3617,96218,91297.14894,101138.8511,,,,,,0.19958371,5082,25463,,,75.35372748,,,,,0.203682419,,91353,,,3.295496155,18,5462,,,3.888987819,19,488559,2.341424713,6.073136217,,,,,,,,,,,,,,,,,,,26.83932758,88,360774,21.4080988,33.22891382,24.39200164,,,,,,,,,,32.84535999,15.7506268,60.40378645,25.97273886,20.168848,32.92663533,,,,19.12554674,69,360774,14.88081695,24.20460346,,,,,,,,,,25.32928065,13.08800893,44.24515588,17.88112091,13.39418659,23.38894641,,,,10.84822918,53,488559,8.126068076,14.18975087,,,,,,,,,,15.96857385,7.657551852,29.36677585,9.423271016,6.668467415,12.9341757,,,,19.55752212,,11300,,,56,165,0.690693851,31506,45615,,,0.692,,,,,38.56221171,,,,,0.821144459,18167,22124,0.798566952,0.843721965,0.061463549,1338,21769,0.047391833,0.075535266,0.943500271,20874,22124,0.928990237,0.958010306,79934,,,,,0.309079991,24706,79934,,,0.093689794,7489,79934,,,0.008381915,670,79934,,,0.013999049,1119,79934,,,0.00895739,716,79934,,,0.011009083,880,79934,,,0.150499162,12030,79934,,,0.793629745,63438,79934,,,0.009388573,642,68381,0.006161341,0.012615805,0.488965897,39085,79934,,,0.197474484,14356,72698,, -49,047,49047,UT,Uintah County,2024,1,10581.55485,495,103192,9358.275932,11804.83378,0,30405.87341,23088.45446,39306.64226,,,,,2,,,,2,,,,2,9283.684271,7995.783992,10571.58455,,,,,2,,0.164,,,0.141,0.189,4.211284899,,,3.452420958,5.032237487,4.839308366,,,4.049686611,5.672424992,0.08599574,323,3756,0.077029593,0.094961887,0,0.111111111,0.069199758,0.153022464,,,,,,,0.10738255,0.072230757,0.142534343,0.079854208,0.070183157,0.089525259,,,,0.123809524,0.060809935,0.186809112,0.135,,,0.109,0.163,0.387,,,0.336,0.438,7.3,0.082802042,0.126,,,0.215,,,0.182,0.253,0.678551376,24170,35620,,,0.144967067,,,0.119447082,0.174549919,0.6,12,20,0.507556597,0.678623692,207.2,75,36204,,,24.6783379,234,9482,21.51632201,27.8403538,37.29281768,24.57620184,54.25909178,,,,,,,30.23255814,19.74891072,44.29770242,22.14809873,18.77880807,25.51738939,,,,,,,0.153328828,4765,31077,0.133073509,0.173584148,0.000386698,14,36204,,,2586,0.000511564,19,37141,,,1954.789474,0.001669314,62,37141,,,599.0483871,2216,,,,,4515,,,4959,1932,0.27,,,,,0.1,,,0.33,0.28,0.4,,,,,0.33,,,0.25,0.41,0.887055062,18865,21267,0.865074387,0.909035737,0.575942294,5669,9843,0.518228617,0.633655972,0.035856009,506,14112,,,0.146,1651,,0.092382979,0.199617021,0.355008787,0.192214321,0.517803254,,,,,,,0.137931035,0.040935986,0.234926083,0.094725885,0.058446193,0.131005577,3.814940847,119957,31444,3.076498824,4.55338287,0.116901164,1346,11514,0.077621681,0.156180646,3.314550878,12,36204,,,103.0835425,184,178496,88.18868012,117.9784049,304.2512951,214.2209898,419.3703326,,,,,,,,,,93.52285465,77.80459814,109.2411112,,,,5.1,,,,,0,,,,,0.119646183,1285,10740,0.091917437,0.147374928,0.08329367,0.058505491,0.108081849,0.038640596,0.025429001,0.05185219,0.002327747,0,0.004758699,0.775146689,11097,14316,0.743720594,0.806572784,,,,,,,,,,0.750681199,0.58746484,0.913897558,0.786923214,0.745002489,0.828843939,0.185,,14316,0.152697671,0.217302329,74.60104958,,,73.58432376,75.6177754,62.77607352,57.73164613,67.82050092,,,,,,,88.3680537,73.76786942,102.968238,75.46341846,74.38619104,76.54064588,,,,481.3892135,495,103192,438.4679514,524.3104756,1248.668202,991.6227925,1551.980564,,,,,,,,,,427.3345216,383.5665189,471.1025243,,,,67.72908367,34,50200,46.90435933,94.64460577,,,,,,,,,,,,,84.29118774,58.02217515,118.3761667,,,,7.832238504,31,3958,5.321626069,11.11723737,,,,,,,,,,,,,9.139615506,6.120943945,13.12601243,,,,,,,0.129,,,0.112,0.147,0.173,,,0.151,0.196,0.098,,,0.084,0.113,60.3,17,28188,,,0.126,4450,,,,0.082802042,2698.352927,32588,,,31.5083219,34,107908,21.82042887,44.0297217,,,,,,,,,,,,,27.3059288,17.49542382,40.6290576,,,,0.337,,,0.323,0.35,0.174924774,3488,19940,0.148712008,0.20113754,0.11754146,1375,11698,0.086562737,0.148520184,0.000538489,20,37141,,,1857.05,0.852947368,486.18,570,,,,,,,,2.980108263,,,,,,,,2.844199282,3.09746867,2.850929033,,,,,,,,2.621514744,3.03357839,0.104465196,,,,,572.7783,,,,,0.634170558,40878,64459,0.549650351,0.718690765,67554,,,62060.04255,73047.95745,27359,6818.914894,47899.08511,,,,,,,62532,46916.34043,78147.65957,73394,66239.10638,80548.89362,,,,,,0.343202884,2666,7768,,,,,,,,0.275438908,,67554,,,2.06043956,6,2912,,,7.911486291,20,252797,4.832541361,12.21864892,58.31583858,27.96471131,107.2449034,,,,,,,,,,,,,,,,31.99665823,54,178496,23.96769267,41.85241677,30.25277877,,,,,,,,,,,,,31.10927481,22.51393643,41.90398901,,,,26.33112227,47,178496,19.34711824,35.01481061,,,,,,,,,,,,,23.38071366,16.19182389,32.67220384,,,,12.26280375,31,252797,8.331980197,17.40607108,,,,,,,,,,,,,9.217171105,5.549339112,14.39375443,,,,37.63636364,,5500,,,81,126,0.649257531,15303,23570,,,0.576,,,,,25.20897708,,,,,0.736987962,8510,11547,0.706479108,0.767496817,0.08223148,908,11042,0.058443017,0.106019943,0.882566901,10191,11547,0.855904868,0.909228933,37141,,,,,0.308903907,11473,37141,,,0.123556178,4589,37141,,,0.004711774,175,37141,,,0.07536146,2799,37141,,,0.007161897,266,37141,,,0.004307908,160,37141,,,0.09033144,3355,37141,,,0.813036806,30197,37141,,,0.006703911,222,33115,0.00068102,0.012726802,0.491639967,18260,37141,,,0.447641774,15945,35620,, -49,049,49049,UT,Utah County,2024,1,5378.243222,4021,1909306,5178.88598,5577.600464,0,7507.347331,4519.913507,11723.65281,1,2244.27171,1422.675748,3367.509492,1,10555.20293,6895.00899,15465.81788,,4535.375946,4017.782378,5052.969514,,5472.347154,5249.457186,5695.237122,,14253.99507,10903.17679,18309.85298,,,0.118,,,0.1,0.139,3.637184696,,,3.055180331,4.277596046,4.960167506,,,4.331246042,5.647471069,0.06649136,5487,82522,0.064791501,0.068191219,0,0.054852321,0.025863587,0.083841054,0.091168091,0.076111185,0.106224997,0.09190372,0.065416861,0.118390579,0.07300885,0.0683053,0.077712399,0.064175655,0.0622902,0.066061109,0.09496124,0.069666047,0.120256433,0.071250623,0.059996129,0.082505117,0.07,,,0.054,0.09,0.309,,,0.275,0.347,8.2,0.0821106,0.085,,,0.171,,,0.144,0.2,0.828431648,546267,659399,,,0.090380958,,,0.076640159,0.105951496,0.173913044,28,161,0.135718477,0.215392283,233.4,1599,684986,,,7.21721675,1546,214210,6.857449957,7.576983543,,,,,,,7.607192255,3.797482965,13.61136827,21.84769039,20.09218114,23.60319963,4.839549003,4.511681605,5.167416401,,,,7.588156524,5.649880946,9.977024457,0.085674056,53423,623561,0.07852512,0.092822992,0.000408768,280,684986,,,2446.378571,0.000605039,425,702434,,,1652.785882,0.003248704,2282,702434,,,307.8150745,1265,,,,,,2418,1209,298,1258,0.42,,,,,,0.33,,0.26,0.43,0.49,,,,,0.39,0.41,0.37,0.31,0.5,0.952587826,319477,335378,,,0.802601166,145144,180842,,,0.021389368,7385,345265,,,0.059,12847,,0.042319149,0.075680851,0.126420455,0,0.269584567,0.165149137,0.095353679,0.234944594,0.150117279,0.036691894,0.263542664,0.12841995,0.104660617,0.152179284,0.057830209,0.051545674,0.064114745,3.543771864,160058,45166,3.442178425,3.645365303,0.101896266,21795,213894,0.092548287,0.111244246,1.751860622,120,684986,,,48.86098301,1564,3200918,46.43939701,51.28256901,,,,26.78523598,14.99149325,44.17817338,,,,26.63791138,21.51826964,31.75755313,53.8464039,51.03378139,56.65902641,,,,6.5,,,,,0,,,,,0.14886562,25590,171900,0.141979757,0.155751482,0.105210933,0.098829774,0.111592091,0.047265852,0.043318876,0.051212828,0.006631763,0.004550425,0.0087131,0.684622225,219418,320495,0.677204945,0.692039505,0.660367976,0.532995921,0.787740031,0.597882939,0.535036271,0.660729607,0.567871094,0.462325388,0.673416799,0.671233945,0.650019274,0.692448617,0.683178022,0.673764594,0.692591451,0.264,,320495,0.254320295,0.273679705,79.66688226,,,79.42940544,79.90435907,76.49539693,72.37800854,80.61278532,86.10975559,83.24701929,88.9724919,74.51748878,70.28138418,78.75359339,82.94350306,81.62941125,84.25759487,79.4974366,79.2445723,79.75030091,70.10284957,66.89290098,73.31279816,276.0591216,4021,1909306,267.3782994,284.7399438,413.7248764,256.1022193,632.4224218,115.781146,76.30050479,168.4554887,482.0987661,302.1287301,729.9033256,229.4156644,203.1950976,255.6362313,280.7191484,271.2525677,290.1857291,774.5276279,612.231949,966.6455325,43.12307346,412,955405,38.95901163,47.28713529,,,,,,,,,,47.27245442,36.32545194,60.48200442,41.84139077,37.23529937,46.44748218,,,,5.183548606,427,82376,4.691883589,5.675213624,,,,,,,,,,5.693950178,4.385035458,7.271047261,5.062710309,4.517297727,5.608122891,,,,,,,0.103,,,0.089,0.118,0.145,,,0.126,0.165,0.09,,,0.079,0.102,52.3,276,527986,,,0.085,55390,,,,0.0821106,42415.38002,516564,,,13.03060417,257,1972280,11.43746373,14.62374462,,,,,,,,,,5.317190887,2.831180208,9.092558353,14.77217197,12.89144283,16.65290111,,,,0.301,,,0.285,0.315,0.099080776,40043,404145,0.089548861,0.10861269,0.064172564,14762,230036,0.05344916,0.074895969,0.001046362,735,702434,,,955.692517,0.918873903,9946.81,10825,,,0.054696589,2915,53294,0.044520096,0.064873082,3.229169334,,,,,,3.076322129,2.964780802,2.7256364,3.324998891,3.146489313,,,,,,2.933024846,2.617743461,2.505184744,3.269500098,0.063781493,,,,,-630.3479667,,,,,0.630873065,43652,69193,0.610573534,0.651172597,95085,,,91304.40426,98865.59575,76452,60895.91489,92008.08511,66104,61270.12766,70937.87234,61601,30698.53192,92503.46809,74710,71398.85106,78021.14894,94708,92957.70213,96458.29787,,,,,,0.190463312,28875,151604,,,84.77796326,,,,,0.195688069,,95085,,,3.169194071,186,58690,,,1.190361188,52,4368422,0.889018671,1.561000328,,,,,,,,,,2.099288723,1.047957367,3.756207408,0.976866135,0.680423056,1.358584319,,,,16.72552348,484,3200918,15.16024318,18.29080379,15.12066226,,,,,,,,,,6.137973734,3.846635461,9.292965997,18.83239816,17.00479393,20.66000239,,,,9.122383016,292,3200918,8.076042726,10.16872331,,,,,,,,,,5.378809029,3.329567565,8.222080968,9.866741623,8.662759679,11.07072357,,,,5.745781887,251,4368422,5.034947634,6.456616139,,,,,,,,,,5.343644022,3.550812645,7.723053424,5.972838656,5.17258076,6.773096552,,,,16.73015873,,94500,,,490,1091,0.728471493,284286,390250,,,0.739,,,,,158.8710614,,,,,0.685832741,128368,187171,0.678067242,0.69359824,0.110967917,20407,183900,0.103812289,0.118123546,0.911460643,170599,187171,0.904776249,0.918145037,702434,,,,,0.313084219,219921,702434,,,0.080028871,56215,702434,,,0.006911681,4855,702434,,,0.008763813,6156,702434,,,0.020191221,14183,702434,,,0.010287088,7226,702434,,,0.131118368,92102,702434,,,0.802236224,563518,702434,,,0.016912815,10279,607764,,,0.491034033,344919,702434,,,0.042291541,27887,659399,, -49,051,49051,UT,Wasatch County,2024,1,3960.613002,229,101130,3216.403258,4704.822747,0,,,,2,,,,2,,,,2,4741.984865,2854.984656,7405.196766,1,3908.134423,3068.65448,4747.614367,,,,,2,,0.106,,,0.089,0.126,3.26951915,,,2.589451924,4.045970636,4.853845241,,,4.054320571,5.708274518,0.067264574,195,2899,0.058146473,0.076382675,0,,,,,,,,,,0.072758037,0.051816944,0.093699131,0.064892624,0.054460452,0.075324796,,,,,,,0.084,,,0.064,0.108,0.28,,,0.231,0.338,8.6,0.068358364,0.074,,,0.164,,,0.132,0.199,0.85690468,29810,34788,,,0.136690288,,,0.110312503,0.167823352,0.276595745,13,47,0.200439744,0.355686128,141,51,36173,,,9.422592309,86,9127,7.536857592,11.63682485,,,,,,,,,,22.33980012,15.80897216,30.66312106,6.467941507,4.735346092,8.627327575,,,,,,,0.09939979,3130,31489,0.085101918,0.113697663,0.000497609,18,36173,,,2009.611111,0.000546165,20,36619,,,1830.95,0.001119637,41,36619,,,893.1463415,1520,,,,,,,,,1338,0.46,,,,,,,,0.19,0.48,0.49,,,,,,0.29,,0.26,0.51,0.955083517,20413,21373,0.943881566,0.966285467,0.762762763,6604,8658,0.686394278,0.839131248,0.023138268,412,17806,,,0.056,582,,0.034553192,0.077446809,,,,,,,,,,0.230279275,0.127288915,0.333269635,0.028950695,0.008489566,0.049411825,3.779070685,191614,50704,3.390688801,4.167452569,0.118269322,1241,10493,0.065215149,0.171323496,2.488043568,9,36173,,,55.58481072,95,170910,44.9714312,67.94954867,,,,,,,,,,,,,60.62144025,48.48932727,74.86698555,,,,5.5,,,,,0,,,,,0.136125655,1430,10505,0.10399924,0.168252069,0.105691057,0.074870425,0.136511689,0.027986673,0.016626616,0.03934673,0.004283674,0,0.008694404,0.70073165,11876,16948,0.671172752,0.730290547,,,,,,,,,,0.538339503,0.43556773,0.641111276,0.643953069,0.605215156,0.682690981,0.332,,16948,0.288743849,0.375256151,81.50115224,,,80.6112371,82.39106738,,,,,,,,,,86.52892324,72.72715946,100.330687,81.41705667,80.48645866,82.34765468,,,,199.5666993,229,101130,173.2896867,225.8437119,,,,,,,,,,240.5981492,134.6609577,396.8300581,196.4025058,168.5595752,224.2454364,,,,30.50441225,14,45895,16.67704603,51.18122044,,,,,,,,,,,,,31.08925442,15.51964379,55.6272639,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.093,,,0.08,0.109,0.146,,,0.126,0.169,0.075,,,0.063,0.088,31.1,9,28965,,,0.074,2510,,,,0.068358364,1608.472314,23530,,,11.36751165,12,105564,5.87375915,19.85675519,,,,,,,,,,,,,12.57257806,6.276185671,22.49581506,,,,0.258,,,0.243,0.274,0.104853436,2182,20810,0.088172585,0.121534287,0.090868676,1022,11247,0.06465591,0.117081442,0.000491548,18,36619,,,2034.388889,0.9,500.4,556,,,,,,,,3.261446208,,,,,,,,2.434622424,3.475609491,3.175283363,,,,,,,,2.399888154,3.385067621,0.046907879,,,,,2023.997,,,,,0.585741177,44497,75967,0.522196153,0.649286201,115793,,,103625.5106,127960.4894,,,,217019,130288.1064,303749.8936,,,,73839,57485.80851,90192.19149,111135,100562.9149,121707.0851,,,,,,0.163414897,1516,9277,,,74.03450585,,,,,0.160691924,,115793,,,4.204892966,11,2616,,,,,,,,,,,,,,,,,,,,,,,,,,12.85169431,21,170910,7.850148761,19.84839952,12.28716869,,,,,,,,,,,,,13.89068965,8.232503033,21.95327829,,,,9.361652332,16,170910,5.350993186,15.20273688,,,,,,,,,,,,,10.57350702,5.917911615,17.43939186,,,,9.974024172,23,230599,6.322675743,14.96593346,,,,,,,,,,,,,8.861782261,5.162314734,14.18857185,,,,17.73584906,,5300,,,41,53,0.826672863,17790,21520,,,0.58,,,,,41.60560091,,,,,0.773998422,8829,11407,0.739907883,0.808088961,0.123632088,1367,11057,0.091417511,0.155846666,0.942403787,10750,11407,0.926525853,0.958281721,36619,,,,,0.284442503,10416,36619,,,0.139599661,5112,36619,,,0.00507933,186,36619,,,0.00740053,271,36619,,,0.012561785,460,36619,,,0.002730823,100,36619,,,0.13823425,5062,36619,,,0.828449712,30337,36619,,,0.021035798,684,32516,0.012076235,0.02999536,0.4858953,17793,36619,,,0.278601817,9692,34788,, -49,053,49053,UT,Washington County,2024,1,6590.988905,1869,499099,6137.814094,7044.163717,0,11138.59903,6601.439714,17603.78861,1,,,,2,12839.30828,6836.390917,21955.60818,1,5208.80333,4065.194275,6352.412384,,6561.086079,6055.926344,7066.245815,,21283.86669,14254.13956,30567.18289,,,0.136,,,0.115,0.161,3.867991913,,,3.157483483,4.62132447,5.090390902,,,4.334353972,5.878029795,0.065386345,1018,15569,0.061503185,0.069269505,0,0.085714286,0.044237545,0.127191026,0.084507042,0.038757595,0.13025649,,,,0.076607948,0.06605674,0.087159155,0.061640983,0.057338746,0.065943219,0.080745342,0.038661072,0.122829611,0.080428954,0.052829499,0.10802841,0.094,,,0.071,0.12,0.325,,,0.278,0.374,7.6,0.106060064,0.101,,,0.168,,,0.137,0.203,0.783507785,141250,180279,,,0.114685004,,,0.093383601,0.138124116,0.191176471,13,68,0.131086014,0.257874667,261.5,500,191226,,,13.34613099,584,43758,12.26368801,14.42857398,17.06484642,8.183257161,31.38286014,,,,,,,32.46212752,27.9057915,37.01846354,10.0020294,8.946586721,11.05747207,,,,12.40875912,7.228559467,19.86762541,0.130461346,19218,147308,0.114971985,0.145950708,0.00053863,103,191226,,,1856.563107,0.000657629,130,197680,,,1520.615385,0.003283084,649,197680,,,304.5916795,1344,,,,,,,,,1356,0.46,,,,,0.32,0.47,,0.39,0.46,0.46,,,,,0.38,0.49,0.12,0.32,0.46,0.943912982,113767,120527,0.936027659,0.951798305,0.739478489,31592,42722,0.69669283,0.782264148,0.025140657,2194,87269,,,0.13,6061,,0.096638298,0.163361702,0.53180212,0.245254606,0.818349635,0.073913044,0,0.250013475,,,,0.180586283,0.109834112,0.251338454,0.082311272,0.06350655,0.101115995,3.976310894,136801,34404,3.730390743,4.222231045,0.119016104,5395,45330,0.092733329,0.145298879,3.503707655,67,191226,,,77.77280241,693,891057,71.98228726,83.56331757,,,,,,,,,,42.41452439,30.43739499,57.54009162,83.50641286,76.95426628,90.05855945,,,,4.5,,,,,1,,,,,0.156867672,9365,59700,0.141032022,0.172703322,0.114900802,0.101333175,0.128468429,0.037939699,0.028572586,0.047306811,0.010050251,0.006460855,0.013639647,0.738726294,57221,77459,0.722407667,0.755044921,0.901992032,0.774536615,1,,,,,,,0.695736622,0.645516804,0.745956441,0.750916147,0.727510826,0.774321469,0.158,,77459,0.140287237,0.175712763,80.74575805,,,80.30137555,81.19014056,77.68233483,71.54408623,83.82058344,83.45549347,78.4448666,88.46612034,,,,83.7202953,81.30192366,86.13866693,80.73541478,80.2561527,81.21467686,,,,293.2067457,1869,499099,278.8571008,307.5563907,486.4127562,314.7806892,718.0411818,,,,598.8930227,360.572722,935.2456412,221.8511093,179.1665613,264.5356572,291.7027868,276.1175081,307.2880655,1047.548078,729.6556187,1456.885791,44.84393326,91,202926,36.10553773,55.05841288,,,,,,,,,,62.96436217,38.46026818,97.24335066,40.9382536,31.52744369,52.27723591,,,,4.87773153,75,15376,3.836645272,6.11427871,,,,,,,,,,,,,4.617580388,3.478593483,6.01041558,,,,,,,0.112,,,0.095,0.13,0.164,,,0.14,0.188,0.083,,,0.071,0.096,88.9,141,158540,,,0.101,17770,,,,0.106060064,14648.48568,138115,,,19.14411364,106,553695,15.49960988,22.78861739,,,,,,,,,,,,,21.18607426,17.19987917,25.81903856,,,,0.305,,,0.29,0.318,0.14339105,14426,100606,0.12432722,0.16245488,0.105414383,5173,49073,0.079201617,0.131627149,0.001431607,283,197680,,,698.5159011,0.930247162,2540.505,2731,,,0.047506388,502,10567,0.026245505,0.06876727,3.247769326,,,,,,2.977822429,,2.677026236,3.386835415,3.080437275,,,,,,2.84165119,,2.329052545,3.243197089,0.070740465,,,,,-1367.29,,,,,0.757716797,43793,57796,0.706421349,0.809012245,75572,,,68706.6383,82437.3617,,,,,,,48519,39062.14894,57975.85106,52818,42910.76596,62725.23404,76956,72937.10638,80974.89362,,,,,,0.282461871,11501,40717,,,70.7169915,,,,,0.24621553,,75572,,,4.554563673,50,10978,,,1.574275999,19,1206904,0.94781699,2.458426981,,,,,,,,,,,,,1.575214008,0.900370909,2.558048861,,,,24.94779937,208,891057,21.40734128,28.48825745,23.34306335,,,,,,,,,,18.01082152,10.29474069,29.24844577,26.48556964,22.45312551,30.51801376,,,,14.70164086,131,891057,12.18404374,17.21923798,,,,,,,,,,,,,16.05892555,13.1856192,18.9322319,,,,10.27422231,124,1206904,8.465823603,12.08262101,,,,,,,,,,10.10768573,5.381916955,17.28445043,10.33734193,8.360052228,12.31463162,,,,31.57657658,,22200,,,255,446,0.743914393,91070,122420,,,0.654,,,,,92.06879066,,,,,0.724493773,46477,64151,0.707486683,0.741500862,0.124838385,7821,62649,0.110441238,0.139235533,0.911396549,58467,64151,0.899652778,0.92314032,197680,,,,,0.240135573,47470,197680,,,0.223639215,44209,197680,,,0.006485229,1282,197680,,,0.017047754,3370,197680,,,0.011801902,2333,197680,,,0.009060097,1791,197680,,,0.116157426,22962,197680,,,0.827923917,163664,197680,,,0.012455382,2146,172295,0.008851264,0.0160595,0.500222582,98884,197680,,,0.148658468,26800,180279,, -49,055,49055,UT,Wayne County,2024,1,9854.208572,41,7393,5515.325733,16253.01846,1,,,,2,,,,2,,,,2,,,,2,11201.16847,6123.783035,18793.65739,1,,,,2,,0.142,,,0.119,0.168,3.964843428,,,3.15570779,4.930806436,5.225306409,,,4.254113656,6.372528562,0.103286385,22,213,0.062415439,0.144157331,1,,,,,,,,,,,,,0.106598985,0.063504399,0.149693571,,,,,,,0.118,,,0.092,0.148,0.318,,,0.249,0.394,6.7,0.158319043,0.118,,,0.193,,,0.156,0.237,0.434030571,1079,2486,,,0.128847741,,,0.101366766,0.161045215,0,0,3,0,0.420755624,351.8,9,2558,,,15.84786054,10,631,7.599665129,29.14477978,,,,,,,,,,,,,17.33102253,8.310898953,31.87236749,,,,,,,0.185128983,366,1977,0.157724728,0.212533239,,0,2558,,,,0.000756144,2,2645,,,1322.5,0.006805293,18,2645,,,146.9444444,,,,,,,,,,,0.39,,,,,,,,,0.4,0.12,,,,,,,,,0.12,0.930975471,1632,1753,0.872313334,0.989637608,0.608378871,334,549,0.405544179,0.811213562,0.044107966,67,1519,,,0.186,112,,0.11212766,0.25987234,,,,,,,,,,,,,0.07530648,0.013230726,0.137382234,3.297782377,111531,33820,2.270354699,4.325210055,0.155821918,91,584,0,0.325746899,0,0,2558,,,119.0741981,16,13437,68.06119263,193.3690377,,,,,,,,,,,,,132.2204777,75.57542727,214.7177721,,,,4,,,,,0,,,,,0.095477387,95,995,0.039548036,0.151406738,0.069346734,0.004784081,0.133909387,0.024120603,0,0.058544933,0.004020101,0,0.019159768,0.593233674,754,1271,0.519276054,0.667191295,,,,,,,,,,,,,0.62509992,0.540841815,0.709358025,0.264,,1271,0.107179902,0.420820098,76.49499996,,,72.68205659,80.30794333,,,,,,,,,,,,,75.46678034,71.29529093,79.63826974,,,,380.0524449,41,7393,261.6106157,533.7349346,,,,,,,,,,,,,416.346397,282.887177,590.9704767,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.116,,,0.099,0.134,0.173,,,0.15,0.196,0.089,,,0.075,0.104,,,,,,0.118,300,,,,0.158319043,439.8103005,2778,,,,,,,,,,,,,,,,,,,,,,,,,,0.313,,,0.295,0.33,0.184604419,259,1403,0.153625696,0.215583143,0.187086093,113,604,0.132277582,0.241894603,0.001890359,5,2645,,,529,,,,,,,,,,,3.078058674,,,,,,,,,3.112593834,3.323578676,,,,,,,,,3.305773782,0.02936884,,,,,2177.548,,,,,0.802243956,40685,50714,0.595669112,1.0088188,63705,,,54644.91489,72765.08511,,,,,,,,,,,,,64531,45928.2766,83133.7234,,,,,,0.4397463,208,473,,,,,,,,0.267781179,,63705,,,6.535947712,1,153,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,300,,,-888,0,0.862234043,1621,1880,,,0.34,,,,,,,,,,0.781160799,821,1051,0.661489255,0.900832343,0.055502392,58,1045,0.00335189,0.107652894,0.891531874,937,1051,0.840181295,0.942882454,2645,,,,,0.228733459,605,2645,,,0.230623819,610,2645,,,0.006049149,16,2645,,,0.010964083,29,2645,,,0.010586011,28,2645,,,0.002268431,6,2645,,,0.069943289,185,2645,,,0.884688091,2340,2645,,,0,0,2378,,,0.482041588,1275,2645,,,1,2486,2486,, -49,057,49057,UT,Weber County,2024,1,7313.050387,2907,753084,6948.953964,7677.146811,0,14844.50261,9067.407844,22926.13032,1,5681.779438,3025.308256,9716.015879,1,15172.28917,10443.90574,21307.53499,,8071.095691,7181.311975,8960.879406,,7052.585517,6636.918966,7468.252067,,,,,2,,0.144,,,0.122,0.168,3.92370591,,,3.235366272,4.679715664,5.121703309,,,4.381946493,5.913808265,0.079284591,2017,25440,0.075964465,0.082604718,0,,,,0.108187135,0.075266538,0.141107731,0.189655172,0.139208868,0.240101477,0.092956739,0.085347359,0.10056612,0.072612603,0.068812809,0.076412396,0.083333333,0.033881711,0.132784956,0.087986464,0.065147789,0.110825139,0.111,,,0.088,0.137,0.334,,,0.294,0.378,8.4,0.056032047,0.091,,,0.213,,,0.181,0.249,0.823158152,215851,262223,,,0.134905623,,,0.112416551,0.159347967,0.154639175,15,97,0.106729423,0.209075027,359.8,961,267066,,,17.15570651,1091,63594,16.1376959,18.17371712,,,,,,,17.56756757,9.353989853,30.04107557,32.79108492,29.95070211,35.63146774,11.31278254,10.31918424,12.30638083,,,,13.67279585,9.156885968,19.63641558,0.107077168,24975,233243,0.095162275,0.118992062,0.000438094,117,267066,,,2282.615385,0.000805013,217,269561,,,1242.21659,0.002774882,748,269561,,,360.3756685,1434,,,,,,,3653,2229,1341,0.4,,,,,,0.45,0.4,0.26,0.41,0.44,,,,,0.26,0.49,0.35,0.3,0.44,0.922440682,152009,164790,0.916613993,0.928267371,0.618474469,47685,77101,0.594520143,0.642428795,0.02462606,3329,135182,,,0.104,7263,,0.073021277,0.134978723,0.270967742,0.103987974,0.43794751,0.064748201,0,0.19267053,0.324786325,0.042818164,0.606754485,0.125580063,0.09455984,0.156600286,0.075738549,0.058510763,0.092966335,3.463224019,140032,40434,3.283125845,3.643322194,0.175724688,12597,71686,0.154070494,0.197378883,3.295065639,88,267066,,,81.12074511,1053,1298065,76.22099629,86.02049393,,,,,,,121.54888,75.24067248,185.8003747,60.25041061,50.47714607,70.02367516,86.24771525,80.43924238,92.05618812,,,,6.8,,,,,0,,,,,0.117246641,9990,85205,0.107158729,0.127334552,0.082997869,0.074662853,0.091332885,0.028343407,0.022964404,0.033722411,0.011677718,0.008432249,0.014923188,0.736307916,97066,131828,0.721825021,0.750790812,0.619146722,0.563071101,0.675222343,0.743600868,0.610324497,0.876877239,0.572424477,0.458377458,0.686471496,0.697957389,0.667301926,0.728612851,0.746735787,0.729052476,0.764419098,0.249,,131828,0.233881695,0.264118305,77.35676544,,,77.01480919,77.69872169,,,,81.28008839,77.86823754,84.69193924,70.61422263,66.98405053,74.24439473,77.20385918,76.06282296,78.3448954,77.51811861,77.14081841,77.89541882,,,,369.8659729,2907,753084,356.2788561,383.4530897,762.72921,510.8117225,1095.406375,246.4063397,165.0221929,353.8806064,686.0726268,523.5456915,883.1114664,399.9355339,359.9118401,439.9592277,360.0402131,345.1430224,374.9374039,,,,55.66889659,176,316155,47.44434269,63.89345048,,,,,,,,,,54.20893673,39.06903345,73.27473448,54.95965046,45.12612129,64.79317962,,,,6.225590658,161,25861,5.263925912,7.187255403,,,,,,,,,,6.859205776,4.853982246,9.414795834,5.812374382,4.711043639,6.913705125,,,,,,,0.115,,,0.1,0.132,0.163,,,0.143,0.185,0.091,,,0.079,0.105,97.7,211,216004,,,0.091,23600,,,,0.056032047,12956.62636,231236,,,24.93869764,197,789937,21.45615271,28.42124257,,,,,,,,,,22.27712747,15.33454951,31.28536951,25.65259016,21.58776773,29.71741259,,,,0.365,,,0.35,0.378,0.117579265,18976,161389,0.103281393,0.131877137,0.085334147,6433,75386,0.065078828,0.105589466,0.001135179,306,269561,,,880.9183007,0.879472727,3385.97,3850,,,0.080767693,1212,15006,0.058761895,0.102773491,3.050251023,,,,,,2.971101487,2.790327599,2.685251622,3.172744177,2.951892606,,,,,,3.042765608,2.536150692,2.414917833,3.129918525,0.123655134,,,,,-1939.2718,,,,,0.727226803,44627,61366,0.693805721,0.760647885,83465,,,79785.68085,87144.31915,66308,57799.57447,74816.42553,80851,67483.68085,94218.31915,58942,51253.31915,66630.68085,76541,72019.29787,81062.70213,84808,81961.53192,87654.46809,,,,,,0.340712658,17345,50908,,,58.14548496,,,,,0.222931768,,83465,,,4.422216373,84,18995,,,3.241545435,58,1789270,2.461441352,4.190449163,,,,,,,,,,6.050412033,3.695748855,9.344370667,2.650207894,1.856173028,3.669004824,,,,25.60563485,320,1298065,22.76560873,28.44566097,24.65207829,,,,,,,,,,15.34892166,10.69108632,21.34663443,27.18544407,23.83860786,30.53228029,,,,15.8697754,206,1298065,13.70260409,18.0369467,,,,,,,,,,12.7928954,8.692151756,18.15849387,16.29236652,13.76783817,18.81689486,,,,9.612858875,172,1789270,8.176230585,11.04948717,,,,,,,,,,9.680659253,6.621563763,13.66620242,9.496578287,7.857769179,11.1353874,,,,20.15243902,,32800,,,201,460,0.63808351,111403,174590,,,0.704,,,,,121.9219306,,,,,0.741649072,66741,89990,0.729426509,0.753871635,0.101202858,8952,88456,0.09127525,0.111130466,0.934081565,84058,89990,0.927836752,0.940326377,269561,,,,,0.26377703,71104,269561,,,0.124183395,33475,269561,,,0.013214078,3562,269561,,,0.013766828,3711,269561,,,0.016946072,4568,269561,,,0.004192001,1130,269561,,,0.19211978,51788,269561,,,0.74898075,201896,269561,,,0.017979578,4395,244444,0.014674632,0.021284524,0.491710596,132546,269561,,,0.055914241,14662,262223,, -50,000,50000,VT,Vermont,2024,,6692.652655,8138,1741374,6454.688337,6930.616973,0,11766.27215,6585.493201,19406.67655,1,3412.092608,2267.310759,4931.423836,,7641.137319,5772.033014,9922.652389,,5370.841698,3973.378255,7100.537553,,6815.098119,6563.671084,7066.525154,,,,,2,,0.113,,,0.102,0.126,3.063266566,,,2.803620822,3.322912309,5.462431029,,,5.081949876,5.842912182,0.069607095,2645,37999,0.067048333,0.072165857,0,0.114942529,0.047919731,0.181965327,0.056565657,0.042175327,0.070955986,0.079245283,0.060468067,0.098022499,0.073995772,0.057314835,0.090676709,0.069089957,0.066408415,0.071771498,,,,0.070422535,0.047928027,0.092917043,0.161,,,0.147,0.176,0.294,,,0.276,0.312,9.2,0.029741455,0.089,,,0.164,,,0.151,0.179,0.709698839,456391,643077,,,0.216046634,,,0.199046775,0.234074081,0.31875,102,320,0.290906181,0.346786175,141,910,645570,,,8.013934835,1141,142377,7.548928301,8.478941369,,,,,,,7.933884298,5.083389374,11.80499094,6.581834138,4.440735854,9.395977489,8.320647799,7.815913334,8.825382265,,,,4.477277815,2.734837606,6.914792456,0.045007422,22255,494474,0.039049975,0.050964869,0.001112195,718,645570,,,899.1225627,0.000726358,470,647064,,,1376.731915,0.005433775,3516,647064,,,184.0341297,2182,,,,,,1647,1603,268,2185,0.45,,,,,,0.29,0.19,0.37,0.45,0.49,,,,,0.28,0.45,0.37,0.43,0.49,0.942080417,432446,459033,0.938946746,0.945214088,0.714678724,108589,151941,0.698496695,0.730860753,0.026411708,9036,342121,,,0.111,12569,,0.095510638,0.126489362,0.37414966,0.273099245,0.475200075,0.267387944,0.171423606,0.363352283,0.239511418,0.148846084,0.330176752,0.182286928,0.133107741,0.231466114,0.099212301,0.089786029,0.108638574,4.464235183,141985,31805,4.298048811,4.630421555,0.211482702,24580,116227,0.196505575,0.226459829,12.62450238,815,645570,,,95.89985179,3014,3142862,92.47609913,99.32360446,116.7883212,60.34622977,204.0056939,31.38524563,18.89596809,49.01194881,87.67016536,61.403106,121.372463,59.98615704,42.65602167,82.0030514,99.41688044,95.79222038,103.0415405,,,,5.85,,,,,0.428571429,,,,,0.15573521,40935,262850,0.149691991,0.16177843,0.135952879,0.129667342,0.142238415,0.01576945,0.01379628,0.017742621,0.011622598,0.00961559,0.013629607,0.71611305,236757,330614,0.709281191,0.72294491,0.651741294,0.376634411,0.926848176,0.565253952,0.508823431,0.621684474,0.536888072,0.475008578,0.598767565,0.612494896,0.561455832,0.66353396,0.726385098,0.719740008,0.733030188,0.322,,330614,0.312320295,0.331679705,79.21587599,,,78.99992261,79.43182938,90.64594922,74.9311086,106.3607898,85.60710574,82.71301215,88.50119933,79.8764028,76.1894171,83.5633885,96.88334769,87.87206588,105.8946295,78.99214262,78.76923861,79.21504663,,,,324.6832354,8138,1741374,317.063643,332.3028278,419.633956,276.5414212,610.5453744,168.3624696,126.115043,220.2222555,389.0116705,305.9823562,487.6294975,212.5123509,164.0125459,270.8644363,330.003512,322.0501586,337.9568655,,,,35.95311714,195,542373,30.90679099,40.99944328,,,,,,,,,,,,,36.84352949,31.41564414,42.27141483,,,,4.064830157,157,38624,3.428988981,4.700671334,,,,,,,,,,,,,3.888936547,3.235328374,4.542544721,,,,,,,0.089142529,,,0.079287835,0.100088913,0.167675344,,,0.152062876,0.184541903,0.071,,,0.063,0.079,128.8,728,565045,,,0.089,57150,,,,0.029741455,18610.44748,625741,,,30.37657443,575,1892906,27.89366461,32.85948425,,,,,,,39.90104541,19.13410221,73.37944315,39.58338487,22.62532459,64.28093713,30.65986201,28.06422551,33.25549851,,,,0.288967574,,,0.270725085,0.307920288,0.054244828,20534,378543,0.047095892,0.061393764,0.015680626,1916,122189,0.009723179,0.021638073,0.001344535,870,647064,,,743.7517241,0.835252257,4718.34,5649,,,0.051391389,1856,36115,0.041148599,0.061634179,,,,,,,,,,,,,,,,,,,,,0.123499528,,,,,,,,,,0.899256799,53602,59607,0.881678799,0.916834798,74555,,,72198.23404,76911.76596,48725,47173.68085,50276.31915,71207,55391.17021,87022.82979,52736,35669.10638,69802.89362,71848,55665.19149,88030.80851,74597,73397.17021,75796.82979,,,,,,0.343610026,27540,80149,,,64.19021807,,,,,0.385993471,,,,,23.83419997,,,,,2.025720736,89,4393498,1.626820091,2.492823677,,,,,,,,,,,,,1.890944097,1.49230351,2.363355677,,,,18.29411102,605,3142862,16.76420151,19.82402053,19.24997025,,,,,,,,,,,,,18.86831491,17.24481555,20.49181426,,,,12.02725414,378,3142862,10.81476835,13.23973994,,,,,,,,,,,,,12.41850998,11.13744263,13.69957732,,,,9.718907349,427,4393498,8.797058801,10.6407559,,,,,,,,,,,,,10.14233652,9.164155882,11.12051716,,,,9.744816587,,62700,,,611,,0.745829229,370968,497390,,,,,,,,47.39412024,,,,,0.72678648,193222,265858,0.720200577,0.733372383,0.140040153,36411,260004,0.134028791,0.146051515,0.860944564,228889,265858,0.854701196,0.867187933,647064,,,,,0.177350309,114757,647064,,,0.215513458,139451,647064,,,0.014018706,9071,647064,,,0.003934696,2546,647064,,,0.020637835,13354,647064,,,0.000386361,250,647064,,,0.022960635,14857,647064,,,0.919371191,594892,647064,,,0.004914376,3025,615541,0.003978762,0.005849991,0.502328981,325039,647064,,,0.648797889,417227,643077,, -50,001,50001,VT,Addison County,2024,1,5234.652382,384,101912,4353.282678,6116.022086,0,,,,2,,,,2,,,,2,,,,2,5441.892559,4496.407435,6387.377684,,,,,2,,0.103,,,0.084,0.125,2.761048053,,,2.158160615,3.488978283,4.893342687,,,4.109023905,5.773751401,0.074411906,155,2083,0.063141449,0.085682363,0,,,,,,,,,,,,,0.073808303,0.062206367,0.08541024,,,,,,,0.146,,,0.11,0.188,0.286,,,0.242,0.338,9.2,0.015146946,0.073,,,0.164,,,0.131,0.202,0.656237454,24519,37363,,,0.192260013,,,0.162022167,0.227419397,0.346153846,9,26,0.242307924,0.448466838,128.8,48,37260,,,5.564387917,56,10064,4.203278834,7.225820549,,,,,,,,,,,,,6.419573643,4.808701179,8.396960384,,,,,,,0.04203755,1124,26738,0.034888613,0.049186486,0.001127214,42,37260,,,887.1428571,0.000532226,20,37578,,,1878.9,0.003486082,131,37578,,,286.8549618,1663,,,,,,,,,1674,0.43,,,,,,,,,0.43,0.58,,,,,,,,,0.58,0.944595683,24636,26081,0.933936482,0.955254884,0.653905447,5090,7784,0.601655036,0.706155858,0.024247652,506,20868,,,0.09,527,,0.049489362,0.130510638,,,,,,,0.192307692,0,0.948037804,0.17948718,0,0.397814922,0.071374906,0.049531117,0.093218696,4.022285972,151427,37647,3.703311203,4.341260742,0.150553628,911,6051,0.116285751,0.184821504,10.46698873,39,37260,,,74.74124905,138,184637,62.27094968,87.21154841,,,,,,,,,,,,,77.32275808,64.13179689,90.51371927,,,,6.3,,,,,0,,,,,0.129591837,1905,14700,0.111753091,0.147430582,0.113349266,0.097014984,0.129683548,0.01292517,0.005436901,0.020413439,0.01292517,0.00457496,0.02127538,0.703738173,13611,19341,0.687586576,0.71988977,,,,,,,,,,0.318072289,0.107392576,0.528752003,0.696476618,0.671015096,0.721938139,0.415,,19341,0.383229433,0.446770567,81.01738291,,,80.17928695,81.85547888,,,,,,,,,,,,,80.73518793,79.86901795,81.60135791,,,,253.9664304,384,101912,225.9891708,281.94369,,,,,,,,,,,,,260.8786803,231.5084091,290.2489515,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.084,,,0.071,0.099,0.147,,,0.125,0.171,0.067,,,0.056,0.078,18.1,6,33135,,,0.073,2710,,,,0.015146946,557.7256803,36821,,,12.62535171,14,110888,6.902397262,21.18319487,,,,,,,,,,,,,12.69469264,6.759389181,21.70831104,,,,0.28,,,0.263,0.296,0.05022853,1044,20785,0.040696615,0.059760445,0.014405572,91,6317,0.009639615,0.01917153,0.000904785,34,37578,,,1105.235294,0.869281046,266,306,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.106029109,,,,,,,,,,0.848071188,53180,62707,0.781156967,0.914985409,79526,,,71615.70213,87436.29787,59583,19131.93617,100034.0638,,,,123424,70792.34043,176055.6596,38558,3902.340426,73213.65957,86021,82750.3617,89291.6383,,,,,,0.296253997,1297,4378,,,56.32397709,,,,,0.327339487,,79526,,,29.08129544,44,1513,,,,,,,,,,,,,,,,,,,,,,,,,,13.03957113,30,184637,8.517880785,19.10599292,16.24809762,,,,,,,,,,,,,12.76908379,8.094503779,19.15989525,,,,10.83206508,20,184637,6.616506759,16.72924598,,,,,,,,,,,,,11.71556941,7.156174155,18.09374676,,,,10.82623506,28,258631,7.193954575,15.64692397,,,,,,,,,,,,,11.69649272,7.772234471,16.9046886,,,,5.714285714,,3500,,,20,,0.759013092,22611,29790,,,0.655,,,,,19.57610115,,,,,0.794603219,11455,14416,0.779828449,0.809377989,0.121409829,1712,14101,0.103558215,0.139261443,0.88713929,12789,14416,0.873242929,0.90103565,37578,,,,,0.15823088,5946,37578,,,0.230533823,8663,37578,,,0.011655756,438,37578,,,0.003113524,117,37578,,,0.018840811,708,37578,,,0.000345947,13,37578,,,0.026345202,990,37578,,,0.921922401,34644,37578,,,0.002782725,100,35936,0,0.006312227,0.49877588,18743,37578,,,0.835291599,31209,37363,, -50,003,50003,VT,Bennington County,2024,1,8173.912136,572,97320,7043.170818,9304.653454,0,,,,2,,,,2,,,,2,,,,2,8227.967642,7064.064443,9391.870841,,,,,2,,0.122,,,0.099,0.145,3.201017473,,,2.522000578,3.928388149,5.216234689,,,4.342321091,6.089556717,0.08199903,169,2061,0.070153813,0.093844246,0,,,,,,,,,,,,,0.082588112,0.07021423,0.094961993,,,,,,,0.163,,,0.125,0.201,0.311,,,0.264,0.358,8.4,0.027851632,0.101,,,0.174,,,0.141,0.21,0.820788818,30654,37347,,,0.176960048,,,0.149067462,0.206842298,0.388888889,7,18,0.263815024,0.50698808,120.6,45,37312,,,11.90622315,97,8147,9.655144909,14.52458254,,,,,,,,,,,,,12.38347015,9.94494339,15.23892562,,,,,,,0.05140136,1414,27509,0.043060934,0.059741785,0.001152444,43,37312,,,867.7209302,0.000855798,32,37392,,,1168.5,0.005054557,189,37392,,,197.8412698,2858,,,,,,,,,2871,0.47,,,,,,,,,0.47,0.51,,,,,,0.35,0.31,,0.51,0.941270729,25259,26835,0.930896355,0.951645102,0.697857048,5243,7513,0.626311317,0.769402779,0.031980041,564,17636,,,0.13,878,,0.072808511,0.187191489,,,,,,,0.226415094,0,0.926869007,0.5917603,0.38313211,0.800388489,0.138545513,0.090424067,0.186666959,5.013896448,138188,27561,4.303921438,5.723871458,0.265998568,1858,6985,0.203690648,0.328306488,13.66852487,51,37312,,,108.728986,195,179345,93.46794698,123.9900251,,,,,,,,,,,,,112.5361723,96.49200035,128.5803443,,,,5.6,,,,,0,,,,,0.153925266,2245,14585,0.123471474,0.184379058,0.129927007,0.102162266,0.157691748,0.009530339,0.003712881,0.015347798,0.020569078,0.009547495,0.031590661,0.726361606,12683,17461,0.690213336,0.762509875,,,,,,,,,,,,,0.744358292,0.708382034,0.78033455,0.204,,17461,0.171785688,0.236214312,77.27598683,,,76.36316538,78.18880828,,,,,,,,,,,,,77.13711305,76.20521229,78.06901382,,,,387.0538336,572,97320,351.6355043,422.4721629,,,,,,,,,,,,,391.7113355,354.9834355,428.4392355,,,,38.6224654,12,31070,19.95679147,67.46567444,,,,,,,,,,,,,39.31660591,19.62670801,70.34826833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.094,,,0.079,0.109,0.161,,,0.137,0.186,0.074,,,0.062,0.085,27.6,9,32601,,,0.101,3780,,,,0.027851632,1033.991842,37125,,,36.07103219,39,108120,25.65003005,49.31028844,,,,,,,,,,,,,37.62450742,26.62534075,51.64257601,,,,0.326,,,0.306,0.343,0.063108914,1302,20631,0.05119402,0.075023807,0.0169235,123,7268,0.010966054,0.022880947,0.001337184,50,37392,,,747.84,0.745691057,183.44,246,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.036865879,,,,,,,,,,1.008719007,51830,51382,0.88877465,1.128663364,69249,,,61982.10638,76515.89362,,,,49000,7722.042553,90277.95745,,,,51467,5888.957447,97045.04255,69099,64940.70213,73257.29787,,,,,,0.55996011,2246,4011,,,82.88526304,,,,,0.412612457,,69249,,,20.65404475,36,1743,,,,,,,,,,,,,,,,,,,,,,,,,,21.829058,39,179345,15.02611911,30.65611339,21.74579721,,,,,,,,,,,,,21.93619839,14.90458254,31.13668262,,,,15.05478268,27,179345,9.92119665,21.9039184,,,,,,,,,,,,,14.88573708,9.633264173,21.97428441,,,,9.132311309,23,251853,5.789101991,13.70295089,,,,,,,,,,,,,9.723513993,6.163873779,14.59004519,,,,24.86486487,,3700,,,92,,0.678003503,19357,28550,,,0.543,,,,,26.69783829,,,,,0.743031718,10823,14566,0.716315703,0.769747733,0.159333286,2256,14159,0.128651325,0.190015248,0.800494302,11660,14566,0.771286382,0.829702222,37392,,,,,0.184798888,6910,37392,,,0.246817501,9229,37392,,,0.013478819,504,37392,,,0.003877835,145,37392,,,0.014361361,537,37392,,,0.000454643,17,37392,,,0.02610184,976,37392,,,0.928487377,34718,37392,,,0.002381486,85,35692,0,0.005592113,0.506846384,18952,37392,,,0.631590221,23588,37347,, -50,005,50005,VT,Caledonia County,2024,1,8246.480684,469,82688,7060.423478,9432.537891,0,,,,2,,,,2,,,,2,,,,2,8244.32645,7015.758159,9472.894741,,,,,2,,0.132,,,0.11,0.159,3.24211229,,,2.582276017,3.966771876,5.451925509,,,4.635211485,6.313670781,0.070646221,129,1826,0.058893439,0.082399003,0,,,,,,,,,,,,,0.068430132,0.056563221,0.080297043,,,,,,,0.178,,,0.14,0.221,0.318,,,0.27,0.367,8.6,0.01671233,0.097,,,0.196,,,0.159,0.235,0.615188701,18599,30233,,,0.182429849,,,0.154224655,0.214334036,0.333333333,7,21,0.216500607,0.449294301,88.8,27,30403,,,8.915304606,60,6730,6.803316635,11.47576425,,,,,,,,,,,,,9.084902544,6.843991902,11.82524942,,,,,,,0.050688224,1160,22885,0.041156309,0.060220139,0.000789396,24,30403,,,1266.791667,0.000784852,24,30579,,,1274.125,0.004283986,131,30579,,,233.4274809,2221,,,,,,,,,2225,0.43,,,,,,,,,0.43,0.24,,,,,,,,,0.24,0.937457357,20610,21985,0.926867714,0.948047,0.6496198,4357,6707,0.588869959,0.710369642,0.031213715,457,14641,,,0.141,786,,0.079042553,0.202957447,,,,,,,,,,0.04,0,0.227892244,0.132781718,0.089885188,0.175678248,4.504321264,120914,26844,3.995922353,5.012720175,0.210672693,1212,5753,0.160946753,0.260398632,12.49876657,38,30403,,,117.5556397,177,150567,100.2370347,134.8742447,,,,,,,,,,,,,120.0766806,102.0789938,138.0743673,,,,5.2,,,,,0,,,,,0.146196514,1845,12620,0.125620438,0.166772589,0.122222222,0.1022367,0.142207745,0.01703645,0.009355598,0.024717302,0.012678288,0.005660156,0.019696421,0.740711566,11284,15234,0.714323326,0.767099807,,,,,,,,,,,,,0.745743002,0.715935137,0.775550867,0.33,,15234,0.296257493,0.363742508,77.49414465,,,76.51869949,78.46958982,,,,,,,,,,,,,77.35488361,76.35829928,78.35146794,,,,382.5582377,469,82688,344.513781,420.6026944,,,,,,,,,,,,,383.2273906,344.2054885,422.2492926,,,,41.26186279,11,26659,20.59777324,73.82887023,,,,,,,,,,,,,45.34025803,22.63369345,81.12624588,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.097,,,0.082,0.114,0.167,,,0.143,0.194,0.08,,,0.068,0.094,41.4,11,26547,,,0.097,2960,,,,0.01671233,521.8759411,31227,,,41.06502703,37,90101,28.91356874,56.60273043,,,,,,,,,,,,,38.77198548,26.68885079,54.45028288,,,,0.328,,,0.309,0.346,0.062626848,1080,17245,0.050711955,0.074541742,0.015353805,92,5992,0.010587848,0.020119763,0.001275385,39,30579,,,784.0769231,0.877380952,128.975,147,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.076153839,,,,,,,,,,0.932817971,48750,52261,0.84249316,1.023142783,61554,,,54812.55319,68295.44681,108036,79740.51064,136331.4894,45313,5101.425532,85524.57447,,,,,,,63253,60174.19149,66331.80851,,,,,,0.39051332,1202,3078,,,51.58646646,,,,,0.360057835,,61554,,,23.74100719,33,1390,,,,,,,,,,,,,,,,,,,,,,,,,,29.95159862,44,150567,21.39786118,40.78557628,29.22287088,,,,,,,,,,,,,29.73226283,20.93425689,40.9820078,,,,17.26806007,26,150567,11.28007015,25.30170893,,,,,,,,,,,,,17.55507026,11.36071586,25.91474675,,,,9.448223734,20,211680,5.771220515,14.59201526,,,,,,,,,,,,,9.976604862,6.093969434,15.40805706,,,,4.375,,3200,,,14,,0.632110092,15158,23980,,,0.535,,,,,18.26929888,,,,,0.771589048,9891,12819,0.753131601,0.790046494,0.131518007,1647,12523,0.110574787,0.152461227,0.830720025,10649,12819,0.807039465,0.854400585,30579,,,,,0.184145983,5631,30579,,,0.230059845,7035,30579,,,0.008142843,249,30579,,,0.005232349,160,30579,,,0.011314955,346,30579,,,0.000163511,5,30579,,,0.020569672,629,30579,,,0.93868341,28704,30579,,,0.003851179,112,29082,0,0.008032921,0.498708264,15250,30579,,,0.838487745,25350,30233,, -50,007,50007,VT,Chittenden County,2024,1,5073.443,1466,464487,4672.938862,5473.947137,0,,,,2,3690.578017,2149.897697,5908.972917,1,8720.679539,6002.91453,12247.07639,,5184.049939,2760.288261,8864.883278,1,5039.06716,4615.91192,5462.222399,,,,,2,,0.1,,,0.081,0.122,2.797265861,,,2.212036222,3.462766287,5.245218928,,,4.437248883,6.116295376,0.061930053,618,9979,0.057200927,0.066659179,0,,,,0.059347181,0.041509399,0.077184963,0.076388889,0.054696644,0.098081134,0.073260073,0.042350902,0.104169244,0.060301508,0.055136203,0.065466812,,,,,,,0.119,,,0.09,0.154,0.272,,,0.23,0.315,8.9,0.024980935,0.079,,,0.137,,,0.11,0.169,0.857036769,144259,168323,,,0.219379768,,,0.188144443,0.251720079,0.268292683,11,41,0.186632551,0.353859022,175.3,296,168865,,,3.602578688,171,47466,3.062606375,4.142551001,,,,,,,10.31553398,6.009178683,16.51616918,6.203473945,2.974806884,11.40840946,3.126240572,2.580365586,3.672115558,,,,,,,0.039769302,5344,134375,0.033811856,0.045726749,0.001746958,295,168865,,,572.4237288,0.000968689,164,169301,,,1032.323171,0.007554592,1279,169301,,,132.3698202,2049,,,,,,900,,,2056,0.44,,,,,,0.25,0.17,,0.45,0.6,,,,,,0.46,0.33,0.54,0.61,0.952729119,106981,112289,0.94544425,0.960013987,0.832492545,37130,44601,0.799793634,0.865191457,0.020637551,2005,97153,,,0.09,2572,,0.062595745,0.117404255,,,,0.24807396,0.116644931,0.379502989,0.338682432,0.217023765,0.4603411,0.1107628,0.043487954,0.178037647,0.068934221,0.050828923,0.087039519,4.608353795,167039,36247,4.212562623,5.004144967,0.209923926,6126,29182,0.177298165,0.242549686,11.42924822,193,168865,,,74.6459778,615,823889,68.74634577,80.54560983,,,,39.56530914,22.14440318,65.25696052,99.74067425,60.92419502,154.0413819,,,,77.68926772,71.27750345,84.101032,,,,6.6,,,,,0,,,,,0.164109507,10910,66480,0.15217544,0.176043573,0.150846433,0.136702618,0.164990248,0.012259326,0.008306119,0.016212533,0.009702166,0.006140972,0.013263361,0.65595546,61383,93578,0.642566449,0.669344471,,,,0.562697274,0.46542754,0.659967008,0.454309225,0.358122378,0.550496071,0.578394599,0.48907713,0.667712067,0.700729071,0.686999341,0.714458802,0.255,,93578,0.235458122,0.274541879,81.29835644,,,80.85923699,81.73747589,,,,82.58513479,79.84980942,85.32046015,76.24940175,71.43438343,81.06442006,95.02719773,76.54860211,113.5057934,81.25069089,80.7970716,81.70431018,,,,258.2523401,1466,464487,244.5080476,271.9966326,,,,170.5356855,115.8707245,242.061793,578.4100353,402.8837825,804.4283403,255.4697553,153.8094811,398.9476685,258.0193132,243.5891133,272.4495132,,,,29.65758965,44,148360,21.54925004,39.81392982,,,,,,,,,,,,,27.76552828,19.22843548,38.79954276,,,,4.043791301,41,10139,2.901894454,5.485859509,,,,,,,,,,,,,3.380009657,2.245991871,4.885055039,,,,,,,0.082,,,0.069,0.098,0.152,,,0.13,0.176,0.066,,,0.056,0.078,26.9,40,148557,,,0.079,13280,,,,0.024980935,3910.640534,156545,,,22.53770538,112,496945,18.36366393,26.71174683,,,,,,,,,,,,,23.11218104,18.60467502,27.61968705,,,,0.249,,,0.234,0.265,0.047325575,4953,104658,0.040176639,0.054474511,0.01410884,441,31257,0.010534372,0.017683308,0.001712926,290,169301,,,583.7965517,0.860765217,1484.82,1725,,,0.021342226,256,11995,0.009705486,0.032978965,,,,,,,,,,,,,,,,,,,,,0.098761354,,,,,,,,,,0.856682008,59751,69747,0.818783343,0.894580673,86579,,,79244.19149,93913.80851,,,,76393,60188.74468,92597.25532,57766,44374.85106,71157.14894,83451,54985.12766,111916.8723,91490,88915.19149,94064.80851,,,,,,0.264278394,5673,21466,,,48.84365829,,,,,0.335277608,,86579,,,23.08707124,175,7580,,,1.569582195,18,1146802,0.930233884,2.480616555,,,,,,,,,,,,,1.085008438,0.541632303,1.941379807,,,,12.63832252,111,823889,10.21314006,15.06350499,13.47268868,,,,,,,,,,,,,12.9990398,10.39189781,15.60618178,,,,7.039783272,58,823889,5.345602585,9.100552349,,,,,,,,,,,,,7.162840287,5.34955173,9.393112067,,,,5.667935703,65,1146802,4.374393115,7.224249331,,,,,,,,,,,,,5.523679323,4.172527999,7.172957053,,,,5.952380952,,16800,,,100,,0.751611901,96755,128730,,,0.735,,,,,114.3398791,,,,,0.633789203,43933,69318,0.619483919,0.648094488,0.155342362,10622,68378,0.141194262,0.169490461,0.897097435,62185,69318,0.88538029,0.908814581,169301,,,,,0.169561905,28707,169301,,,0.169709571,28732,169301,,,0.025865175,4379,169301,,,0.002545762,431,169301,,,0.049332254,8352,169301,,,0.000372118,63,169301,,,0.026532625,4492,169301,,,0.872162598,147658,169301,,,0.012168231,1959,160993,0.008975735,0.015360727,0.507327187,85891,169301,,,0.260653624,43874,168323,, -50,009,50009,VT,Essex County,2024,1,8253.212269,120,16206,5575.737107,10930.68743,0,,,,2,,,,2,,,,2,,,,2,8489.222855,5662.789364,11315.65635,,,,,2,,0.153,,,0.126,0.18,3.902133864,,,3.037120768,4.857532071,5.460763148,,,4.386092163,6.594317134,0.033232628,11,331,0.013922489,0.052542768,1,,,,,,,,,,,,,0.031746032,0.01238448,0.051107584,,,,,,,0.211,,,0.166,0.254,0.354,,,0.282,0.429,7.3,0.100246344,0.119,,,0.226,,,0.18,0.272,0.316047297,1871,5920,,,0.155144626,,,0.123876582,0.189740998,0.6,3,5,0.381076261,0.751373291,84.4,5,5925,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.053795994,231,4294,0.04307259,0.064519399,0.000168776,1,5925,,,5925,0.000500501,3,5994,,,1998,0.000667334,4,5994,,,1498.5,2762,,,,,,,,,2771,0.4,,,,,,,,,0.4,0.3,,,,,,,,,0.3,0.888864533,4055,4562,0.869248885,0.908480181,0.520585544,569,1093,0.431232991,0.609938097,0.039567003,106,2679,,,0.174,180,,0.090595745,0.257404255,,,,,,,,,,,,,0.199570816,0.127404185,0.271737446,4.040403213,98602,24404,3.385029075,4.69577735,0.248289345,254,1023,0.16674227,0.32983642,5.063291139,3,5925,,,123.8147991,38,30691,87.61872095,169.9454854,,,,,,,,,,,,,130.2217196,92.1526392,178.7394843,,,,4.9,,,,,0,,,,,0.159722222,460,2880,0.124004917,0.195439527,0.137762238,0.101705909,0.173818566,0.026041667,0.008690118,0.043393215,0.008333333,0.002198674,0.014467993,0.784879189,2014,2566,0.757357648,0.812400731,,,,,,,,,,,,,0.690674754,0.636029691,0.745319816,0.439,,2566,0.380750913,0.497249087,78.32137575,,,76.06459237,80.57815914,,,,,,,,,,,,,77.97737381,75.66510544,80.28964218,,,,419.4235442,120,16206,331.9482629,506.8988255,,,,,,,,,,,,,427.3410389,336.313147,518.3689307,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.117,,,0.099,0.135,0.182,,,0.158,0.209,0.087,,,0.072,0.102,0,0,5235,,,0.119,710,,,,0.100246344,632.1534452,6306,,,,,,,,,,,,,,,,,,,,,,,,,,0.321,,,0.303,0.338,0.064993954,215,3308,0.051887571,0.078100337,0.016299137,17,1043,0.009150201,0.023448073,0.000834168,5,5994,,,1198.8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.878768942,45000,51208,0.779026572,0.978511313,54570,,,47982.25532,61157.74468,,,,,,,,,,,,,55272,50751.48936,59792.51064,,,,,,0.441287879,233,528,,,,,,,,0.471101338,,54570,,,20.66115703,5,242,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,23.23960028,10,43030,11.14429165,42.73845234,,,,,,,,,,,,,24.39381373,11.69778186,44.86109197,,,,14,,500,,,7,,0.835700197,4237,5070,,,0.378,,,,,1.676291936,,,,,0.836520435,2231,2667,0.813640955,0.859399915,0.131650485,339,2575,0.098677474,0.164623497,0.80952381,2159,2667,0.774882086,0.844165533,5994,,,,,0.173840507,1042,5994,,,0.277610944,1664,5994,,,0.007173841,43,5994,,,0.006006006,36,5994,,,0.007507508,45,5994,,,0,0,5994,,,0.017684351,106,5994,,,0.943443443,5655,5994,,,0.004369102,25,5722,0,0.015842529,0.493827161,2960,5994,,,1,5920,5920,, -50,011,50011,VT,Franklin County,2024,1,6734.197976,636,139875,5915.30195,7553.094003,0,,,,2,,,,2,,,,2,,,,2,6683.940781,5834.760897,7533.120664,,,,,2,,0.127,,,0.105,0.152,3.296854506,,,2.603233788,4.058743518,5.139038089,,,4.306186085,5.997119017,0.070905285,271,3822,0.062767991,0.07904258,0,,,,,,,,,,0.125,0.052528023,0.197471977,0.068839562,0.060521476,0.077157647,,,,,,,0.179,,,0.139,0.221,0.33,,,0.281,0.381,8.9,0.018801226,0.082,,,0.2,,,0.164,0.241,0.501241341,25035,49946,,,0.203603546,,,0.172385486,0.236759942,0.387096774,12,31,0.294382391,0.476377731,117.2,59,50325,,,14.09601634,138,9790,11.74414845,16.44788423,,,,,,,,,,,,,14.61988304,12.10667585,17.13309023,,,,,,,0.044039082,1830,41554,0.036890146,0.051188018,0.000675609,34,50325,,,1480.147059,0.000532219,27,50731,,,1878.925926,0.002897637,147,50731,,,345.1088435,2790,,,,,,,,,2781,0.41,,,,,,,,,0.41,0.43,,,,,,,,,0.43,0.91910036,32447,35303,0.900822388,0.937378331,0.652355212,8448,12950,0.595663137,0.709047288,0.026295855,729,27723,,,0.098,1049,,0.056297872,0.139702128,0.701612903,0.57496648,0.828259327,,,,,,,0.255555556,0,0.550127137,0.093109486,0.06497895,0.121240023,4.24177895,135054,31839,3.62977344,4.85378446,0.201298701,2170,10780,0.158524857,0.244072546,8.544461004,43,50325,,,89.97087042,223,247858,78.162076,101.7796648,,,,,,,,,,,,,91.05581592,78.76947579,103.3421561,,,,6.4,,,,,0,,,,,0.142032029,2705,19045,0.120486294,0.163577765,0.127200424,0.10523819,0.149162658,0.013389341,0.007579752,0.01919893,0.01680231,0.00523443,0.028370191,0.765346966,19312,25233,0.742328721,0.788365212,,,,,,,,,,,,,0.754904553,0.734605402,0.775203704,0.444,,25233,0.403401847,0.484598153,78.41533213,,,77.67454895,79.15611531,,,,,,,,,,,,,78.30042221,77.54295203,79.05789238,,,,337.510458,636,139875,309.9821266,365.0387894,,,,,,,,,,,,,335.8453616,307.6409641,364.049759,,,,33.66153328,16,47532,19.24047474,54.66422115,,,,,,,,,,,,,32.58769582,17.81599655,54.67661628,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.098,,,0.083,0.115,0.162,,,0.139,0.187,0.075,,,0.063,0.087,14.1,6,42587,,,0.082,4070,,,,0.018801226,897.683356,47746,,,21.41728911,32,149412,14.64940989,30.23482189,,,,,,,,,,,,,18.64708245,12.18089335,27.32229623,,,,0.343,,,0.325,0.36,0.054313099,1666,30674,0.044781184,0.063845014,0.015771489,180,11413,0.011005531,0.020537446,0.001222132,62,50731,,,818.2419355,0.874686347,474.08,542,,,0.07622739,177,2322,0.026089043,0.126365738,,,,,,,,,,,,,,,,,,,,,0.089727287,,,,,,,,,,0.923942549,53779,58206,0.859600057,0.988285041,76395,,,68593.12766,84196.87234,,,,,,,,,,88611,389.5531915,176832.4468,73959,68728.3617,79189.6383,,,,,,0.368186874,2979,8091,,,,,,,,0.280306303,,76395,,,11.90059503,34,2857,,,,,,,,,,,,,,,,,,,,,,,,,,22.98118046,55,247858,17.16344477,30.13676068,22.19012499,,,,,,,,,,,,,24.59058081,18.36542194,32.24727512,,,,12.50716136,31,247858,8.498009336,17.7529172,,,,,,,,,,,,,13.37786869,9.089612723,18.98881675,,,,14.46876483,50,345572,10.73899614,19.07526266,,,,,,,,,,,,,14.51894413,10.66797404,19.30711779,,,,7.777777778,,5400,,,42,,0.686647353,26072,37970,,,0.647,,,,,22.3542999,,,,,0.778089742,14965,19233,0.752997598,0.803181885,0.136803094,2547,18618,0.112595162,0.161011026,0.863671814,16611,19233,0.838319971,0.889023658,50731,,,,,0.213853462,10849,50731,,,0.179712602,9117,50731,,,0.008180403,415,50731,,,0.009836195,499,50731,,,0.009757348,495,50731,,,0.000295677,15,50731,,,0.020460862,1038,50731,,,0.929313438,47145,50731,,,0.002493449,118,47324,0,0.005201728,0.498925706,25311,50731,,,0.772394186,38578,49946,, -50,013,50013,VT,Grand Isle County,2024,1,7138.696954,107,20322,4439.609204,9837.784704,0,,,,2,,,,2,,,,2,,,,2,7293.099848,4474.288714,10111.91098,,,,,2,,0.104,,,0.085,0.129,2.904660983,,,2.229129264,3.786614842,4.889852838,,,3.98868623,6.01978647,0.064285714,27,420,0.040829372,0.087742057,0,,,,,,,,,,,,,0.066838046,0.042019768,0.091656325,,,,,,,0.143,,,0.106,0.186,0.269,,,0.214,0.346,9.5,0.004448036,0.064,,,0.152,,,0.118,0.197,0.527354998,3846,7293,,,0.206540234,,,0.170697982,0.256636848,0,0,2,0,0.510593623,175.2,13,7421,,,9.925558313,12,1209,5.128680818,17.33795289,,,,,,,,,,,,,9.233610342,4.427875066,16.98093817,,,,,,,0.048847609,284,5814,0.039315694,0.058379524,0.000673764,5,7421,,,1484.2,0.000133529,1,7489,,,7489,0.000667646,5,7489,,,1497.8,1854,,,,,,,,,1872,0.47,,,,,,,,,0.47,0.52,,,,,,,,,0.53,0.960592011,5387,5608,0.948625155,0.972558868,0.624227441,1010,1618,0.528845238,0.719609645,0.032711413,135,4127,,,0.118,150,,0.069148936,0.166851064,,,,,,,,,,,,,0.072192513,0.018955606,0.125429421,4.294919455,173300,40350,3.377730772,5.212108137,0.120634921,152,1260,0.067863126,0.173406715,5.39010915,4,7421,,,86.31971709,31,35913,58.65005981,122.5239482,,,,,,,,,,,,,90.38322487,60.98118228,129.0276735,,,,6.5,,,,,0,,,,,0.152941177,455,2975,0.113177616,0.192704737,0.146572104,0.106651948,0.18649226,0.004033613,0,0.013380127,0.003361345,0,0.011288177,0.785496817,2838,3613,0.739470759,0.831522875,,,,,,,,,,,,,0.601818182,0.514075469,0.689560895,0.615,,3613,0.528627293,0.701372707,78.35638887,,,76.13352867,80.57924908,,,,,,,,,,,,,77.78294209,75.5306968,80.03518739,,,,317.9310205,107,20322,248.9272188,386.9348223,,,,,,,,,,,,,331.8079629,258.9812741,404.6346517,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.086,,,0.072,0.105,0.147,,,0.126,0.175,0.067,,,0.056,0.083,,,,,,0.064,460,,,,0.004448036,31.00281062,6970,,,,,,,,,,,,,,,,,,,,,,,,,,0.293,,,0.274,0.31,0.05660793,257,4540,0.045884525,0.067331334,0.022997033,31,1348,0.014656607,0.031337458,0.000133529,1,7489,,,7489,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.94970056,58833,61949,0.791192166,1.108208954,76260,,,69748.51064,82771.48936,,,,,,,,,,103542,54969.74468,152114.2553,90536,77561.87234,103510.1277,,,,,,0.362799263,197,543,,,,,,,,0.343495935,,76260,,,25.3164557,8,316,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.142857143,,700,,,5,,0.996037898,5782,5805,,,0.453,,,,,4.99885344,,,,,0.898249092,2719,3027,0.81775572,0.978742463,0.15738255,469,2980,0.112506426,0.202258675,0.903204493,2734,3027,0.820620902,0.985788084,7489,,,,,0.171451462,1284,7489,,,0.231406062,1733,7489,,,0.009079984,68,7489,,,0.014154093,106,7489,,,0.006809988,51,7489,,,0.001201763,9,7489,,,0.022967018,172,7489,,,0.920016024,6890,7489,,,0.002279527,16,7019,0,0.012277615,0.485645614,3637,7489,,,1,7293,7293,, -50,015,50015,VT,Lamoille County,2024,1,5671.382,304,71303,4676.062242,6666.701758,0,,,,2,,,,2,,,,2,,,,2,5977.251657,4915.350989,7039.152325,,,,,2,,0.112,,,0.09,0.137,3.147181611,,,2.472733119,3.913799987,5.236606846,,,4.392456187,6.15365329,0.054134444,91,1681,0.043317022,0.064951866,0,,,,,,,,,,,,,0.058333333,0.04670277,0.069963897,,,,,,,0.151,,,0.113,0.192,0.277,,,0.231,0.328,9,0.002893736,0.089,,,0.146,,,0.114,0.183,0.683291578,17728,25945,,,0.218181517,,,0.184548086,0.255278002,0.357142857,5,14,0.212111468,0.496744159,149.3,39,26126,,,9.40049663,53,5638,7.041617051,12.29608105,,,,,,,,,,,,,10.09708738,7.540987806,13.24098675,,,,,,,0.06393419,1329,20787,0.053210785,0.074657594,0.000880349,23,26126,,,1135.913044,0.000459946,12,26090,,,2174.166667,0.005327712,139,26090,,,187.6978417,2151,,,,,,,,,2163,0.41,,,,,,0.24,,,0.41,0.58,,,,,,0.46,0.26,,0.59,0.942139384,17439,18510,0.925996256,0.958282512,0.741167775,5014,6765,0.660552802,0.821782749,0.033504055,471,14058,,,0.091,461,,0.049297872,0.132702128,,,,,,,0.148148148,0,0.464763068,0.022900763,0,0.258678132,0.073866091,0.045882587,0.101849595,4.034123029,138439,34317,3.269124125,4.799121934,0.210526316,1100,5225,0.137258203,0.283794429,7.65520937,20,26126,,,76.09872437,97,127466,61.71093905,92.83399019,,,,,,,,,,,,,79.82903282,64.66177288,97.48491231,,,,5.4,,,,,1,,,,,0.167595172,1805,10770,0.131230162,0.203960181,0.146490815,0.111453048,0.181528582,0.016620241,0.006778861,0.026461622,0.008820799,0.000523009,0.017118588,0.745714494,10223,13709,0.708526004,0.782902984,,,,,,,,,,,,,0.739109545,0.691648653,0.786570437,0.421,,13709,0.375317608,0.466682392,79.68883391,,,78.68190225,80.69576558,,,,,,,,,,,,,79.32613683,78.28939873,80.36287494,,,,304.6346191,304,71303,268.8466786,340.4225597,,,,,,,,,,,,,316.8904343,279.3844214,354.3964472,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.093,,,0.077,0.11,0.164,,,0.14,0.19,0.073,,,0.061,0.086,,,,,,0.089,2320,,,,0.002893736,70.82418474,24475,,,26.03183694,20,76829,15.90092229,40.20406084,,,,,,,,,,,,,27.60867465,16.86409573,42.63935879,,,,0.275,,,0.258,0.292,0.077360419,1211,15654,0.063062547,0.091658291,0.023955432,129,5385,0.015615006,0.032295857,0.001303181,34,26090,,,767.3529412,0.775,143.375,185,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.066581676,,,,,,,,,,0.857406792,46408,54126,0.790481935,0.924331648,65190,,,59493.48936,70886.51064,,,,,,,,,,,,,71511,65582.14894,77439.85106,,,,,,0.316448326,1087,3435,,,51.82224112,,,,,0.504295137,,65190,,,23.92739274,29,1212,,,,,,,,,,,,,,,,,,,,,,,,,,13.37965939,19,127466,7.929634112,21.14563015,14.9059357,,,,,,,,,,,,,14.13675,8.378333989,22.34215972,,,,8.629752248,11,127466,4.307941229,15.44101055,,,,,,,,,,,,,9.147076677,4.566187721,16.36664686,,,,9.548737882,17,178034,5.562491698,15.28845435,,,,,,,,,,,,,10.10719573,5.887813974,16.18259946,,,,7.777777778,,2700,,,21,,0.796090378,15679,19695,,,0.549,,,,,0.138176986,,,,,0.734878311,8213,11176,0.705524279,0.764232342,0.1500871,1637,10907,0.116442651,0.18373155,0.885379384,9895,11176,0.862326343,0.908432426,26090,,,,,0.197010349,5140,26090,,,0.189497892,4944,26090,,,0.011230357,293,26090,,,0.003602913,94,26090,,,0.006630893,173,26090,,,0.000766577,20,26090,,,0.020927559,546,26090,,,0.94039862,24535,26090,,,0.001817081,45,24765,0,0.005174236,0.495745496,12934,26090,,,1,25945,25945,, -50,017,50017,VT,Orange County,2024,1,6607.281987,398,80143,5436.155642,7778.408331,0,,,,2,,,,2,,,,2,,,,2,6746.911088,5529.935884,7963.886291,,,,,2,,0.118,,,0.096,0.142,3.148526729,,,2.487799261,3.896218619,5.407439437,,,4.53938154,6.320236698,0.076086957,133,1748,0.063657389,0.088516524,0,,,,,,,,,,,,,0.075595238,0.062954287,0.088236189,,,,,,,0.168,,,0.13,0.212,0.292,,,0.245,0.343,8.8,0.034708149,0.08,,,0.162,,,0.131,0.199,0.477678724,13985,29277,,,0.18070674,,,0.151968908,0.213544767,0.4,4,10,0.227273625,0.556899967,98.2,29,29541,,,8.150591888,42,5153,5.874229717,11.01723244,,,,,,,,,,,,,8.373456144,5.982119833,11.40227066,,,,,,,0.048282017,1082,22410,0.039941591,0.056622443,0.00081243,24,29541,,,1230.875,0.000301548,9,29846,,,3316.222222,0.003752597,112,29846,,,266.4821429,2059,,,,,,,,,2063,0.43,,,,,,,,,0.43,0.44,,,,,,,,,0.44,0.939378712,20563,21890,0.930433032,0.948324392,0.665419722,4447,6683,0.603296677,0.727542767,0.025758153,406,15762,,,0.121,621,,0.074531915,0.167468085,,,,,,,,,,0.096774194,0,0.349897302,0.115100317,0.083588963,0.146611671,3.584422841,128308,35796,3.279660899,3.889184783,0.201412753,1055,5238,0.153221023,0.249604483,10.49388985,31,29541,,,103.9637022,151,145243,87.38122786,120.5461766,,,,,,,,,,,,,105.1903513,88.12734509,122.2533575,,,,5.6,,,,,1,,,,,0.151539069,1920,12670,0.128809987,0.17426815,0.128611001,0.106267249,0.150954754,0.023283347,0.015657511,0.030909182,0.007498027,0.003824266,0.011171788,0.728051118,11394,15650,0.705222219,0.750880018,,,,,,,,,,,,,0.644813366,0.609494892,0.68013184,0.416,,15650,0.380295058,0.451704942,79.56216119,,,78.49561482,80.62870756,,,,,,,,,,,,,79.31034363,78.22106655,80.39962071,,,,310.1144394,398,80143,276.3109216,343.9179572,,,,,,,,,,,,,315.4547035,280.6039426,350.3054643,,,,54.5553737,13,23829,29.04843884,93.29135053,,,,,,,,,,,,,58.40071878,31.09592314,99.86700772,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.094,,,0.078,0.111,0.159,,,0.137,0.184,0.074,,,0.063,0.087,,,,,,0.08,2350,,,,0.034708149,1004.314999,28936,,,27.5008594,24,87270,17.62031953,40.91909888,,,,,,,,,,,,,27.5680211,17.47576056,41.36556742,,,,0.314,,,0.295,0.331,0.05784644,996,17218,0.047123036,0.068569844,0.017070485,93,5448,0.011113038,0.023027931,0.000938149,28,29846,,,1065.928571,0.82128821,188.075,229,,,0.06971831,99,1420,0.02547938,0.11395724,,,,,,,,,,,,,,,,,,,,,0.063518282,,,,,,,,,,0.925790974,51324,55438,0.846413162,1.005168785,73057,,,66004.57447,80109.42553,,,,23462,7854.680851,39069.31915,68875,6594.659575,131155.3404,41293,21308.14894,61277.85106,75236,71761.61702,78710.38298,,,,,,0.413125336,1536,3718,,,,,,,,0.382372668,,73057,,,26.51515152,35,1320,,,,,,,,,,,,,,,,,,,,,,,,,,23.93340189,38,145243,16.57457656,33.44453024,26.16305089,,,,,,,,,,,,,23.75673557,16.24958954,33.53742227,,,,22.03204285,32,145243,15.069901,31.10267075,,,,,,,,,,,,,22.33493761,15.17550648,31.7026611,,,,10.34171998,21,203061,6.401687662,15.80841754,,,,,,,,,,,,,10.81888669,6.697061376,16.53781754,,,,9.642857143,,2800,,,27,,0.635590686,14876,23405,,,0.57,,,,,3.991434685,,,,,0.824349882,10461,12690,0.805220841,0.843478923,0.121182822,1504,12411,0.100894357,0.141471287,0.851930654,10811,12690,0.835731411,0.868129897,29846,,,,,0.174328218,5203,29846,,,0.237284728,7082,29846,,,0.006935603,207,29846,,,0.004355693,130,29846,,,0.006030959,180,29846,,,0.000234537,7,29846,,,0.015713999,469,29846,,,0.95238893,28425,29846,,,0.001277366,36,28183,0,0.004102967,0.496682973,14824,29846,,,1,29277,29277,, -50,019,50019,VT,Orleans County,2024,1,7682.708185,471,73842,6473.943025,8891.473345,0,,,,2,,,,2,,,,2,,,,2,8014.431302,6727.931125,9300.931478,,,,,2,,0.126,,,0.104,0.153,3.480499294,,,2.794452568,4.287700185,5.145200011,,,4.341102681,6.033245899,0.078034682,135,1730,0.065395058,0.090674306,0,,,,,,,,,,,,,0.079141104,0.066035415,0.092246794,,,,,,,0.176,,,0.137,0.218,0.301,,,0.253,0.351,8.4,0.040001576,0.097,,,0.207,,,0.17,0.25,0.567809294,15554,27393,,,0.177244274,,,0.147535399,0.208881993,0.266666667,8,30,0.170636514,0.368067779,141.6,39,27546,,,19.75894092,100,5061,15.8861885,23.63169334,,,,,,,,,,,,,20.57436777,16.66530395,25.12482448,,,,,,,0.050568653,1036,20487,0.041036738,0.060100568,0.000726058,20,27546,,,1377.3,0.000542182,15,27666,,,1844.4,0.003036218,84,27666,,,329.3571429,2746,,,,,,,,,2765,0.44,,,,,,,,,0.44,0.25,,,,,,,,,0.25,0.915338645,18380,20080,0.902229242,0.928448049,0.595218735,3660,6149,0.541960562,0.648476907,0.043979921,587,13347,,,0.172,910,,0.102893617,0.241106383,,,,,,,,,,0.125984252,0.011372735,0.240595769,0.107663474,0.083109554,0.132217393,4.040210447,118261,29271,3.453891156,4.626529739,0.208537968,1104,5294,0.165226018,0.251849917,9.801786103,27,27546,,,106.4868223,144,135228,89.09397462,123.8796699,,,,,,,,,,,,,112.2623196,93.92614075,130.5984985,,,,5.5,,,,,0,,,,,0.167808219,1960,11680,0.146600908,0.18901553,0.149048443,0.127370781,0.170726105,0.015839041,0.008843955,0.022834127,0.008133562,0.003816678,0.012450446,0.773740898,10201,13184,0.743884709,0.803597087,,,,,,,,,,,,,0.762720237,0.734367804,0.79107267,0.295,,13184,0.266354653,0.323645347,77.17165742,,,76.18218144,78.1611334,,,,,,,,,,,,,76.7579355,75.73502289,77.7808481,,,,396.8798147,471,73842,357.4735051,436.2861243,,,,,,,,,,,,,407.7331525,366.6584494,448.8078556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.103,,,0.086,0.121,0.167,,,0.144,0.193,0.077,,,0.065,0.091,46.1,11,23838,,,0.097,2650,,,,0.040001576,1089.282907,27231,,,27.00049092,22,81480,16.92106391,40.87906773,,,,,,,,,,,,,28.50442466,17.86357118,43.1560415,,,,0.343,,,0.325,0.361,0.063113788,964,15274,0.051198895,0.075028682,0.014748725,81,5492,0.009982768,0.019514683,0.000722909,20,27666,,,1383.3,0.759042553,214.05,282,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.056982027,,,,,,,,,,0.834638816,44114,52854,0.750297308,0.918980325,56818,,,50758.08511,62877.91489,97885,23066.61702,172703.383,,,,31394,31084.21277,31703.78723,42125,29086.53192,55163.46809,64800,61250.55319,68349.44681,,,,,,0.562871159,2180,3873,,,61.32350637,,,,,0.425692562,,56818,,,15.34919417,20,1303,,,,,,,,,,,,,,,,,,,,,,,,,,22.87845932,32,135228,15.20257007,33.06574369,23.66373828,,,,,,,,,,,,,24.26877625,16.12642557,35.07513875,,,,19.96627917,27,135228,13.15790379,29.04988793,,,,,,,,,,,,,21.04918493,13.8715455,30.62545895,,,,16.38555745,31,189191,11.13319131,23.25799087,,,,,,,,,,,,,17.24646308,11.71813492,24.47997769,,,,17.03703704,,2700,,,46,,0.729256198,15442,21175,,,0.479,,,,,7.30693308,,,,,0.800485774,9228,11528,0.775746316,0.825225232,0.135412027,1520,11225,0.115052019,0.155772034,0.866932686,9994,11528,0.845441756,0.888423615,27666,,,,,0.193269717,5347,27666,,,0.239355165,6622,27666,,,0.007915853,219,27666,,,0.006506181,180,27666,,,0.005602545,155,27666,,,0.000325309,9,27666,,,0.017964288,497,27666,,,0.944986626,26144,27666,,,0.002063431,54,26170,0,0.005499574,0.494325165,13676,27666,,,1,27393,27393,, -50,021,50021,VT,Rutland County,2024,1,8661.28379,1019,160607,7744.177557,9578.390023,0,,,,2,,,,2,,,,2,,,,2,8970.612023,8004.322414,9936.901632,,,,,2,,0.117,,,0.095,0.141,3.153133087,,,2.477579795,3.884691289,5.146673721,,,4.285454029,6.021900902,0.078304386,266,3397,0.069270074,0.087338699,0,,,,,,,,,,,,,0.079591205,0.070255546,0.088926863,,,,,,,0.167,,,0.126,0.209,0.304,,,0.256,0.353,8.3,0.049147104,0.096,,,0.171,,,0.137,0.209,0.804183451,48711,60572,,,0.188201365,,,0.159780393,0.21981835,0.285714286,8,28,0.18563205,0.389524284,127.1,77,60591,,,9.636827015,121,12556,7.919719656,11.35393437,,,,,,,,,,,,,10.26038972,8.41687569,12.10390375,,,,,,,0.04216192,1880,44590,0.035012984,0.049310856,0.000726181,44,60591,,,1377.068182,0.000762018,46,60366,,,1312.304348,0.003561608,215,60366,,,280.772093,1977,,,,,,,,,1968,0.49,,,,,,0.33,,,0.49,0.52,,,,,,0.31,0.15,,0.52,0.935788206,41957,44836,0.92652312,0.945053292,0.606676455,7851,12941,0.556541356,0.656811553,0.03271216,976,29836,,,0.14,1430,,0.087574468,0.192425532,,,,0.015873016,0,0.989917869,,,,0.096551724,0,0.228898533,0.100105153,0.070986184,0.129224121,4.752477529,123726,26034,4.136185803,5.368769256,0.19821008,2104,10615,0.151313182,0.245106978,11.22278886,68,60591,,,117.565111,346,294305,105.1772456,129.9529765,,,,,,,,,,,,,122.1790745,109.2299666,135.1281824,,,,7.5,,,,,1,,,,,0.177120316,4490,25350,0.15890478,0.195335851,0.138617805,0.121602336,0.155633275,0.042011834,0.030820876,0.053202793,0.005325444,0.002595059,0.008055829,0.81449849,23460,28803,0.791680006,0.837316974,,,,,,,,,,,,,0.813415049,0.787859622,0.838970477,0.292,,28803,0.261576164,0.322423836,76.93867549,,,76.22298255,77.65436843,,,,,,,,,,,,,76.59696357,75.85848699,77.33544016,,,,410.2371172,1019,160607,381.8664282,438.6078063,,,,,,,,,,,,,420.4676156,390.9796376,449.9555935,,,,41.51186202,20,48179,25.35652377,64.11170407,,,,,,,,,,,,,44.96301792,27.46457945,69.44173445,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.097,,,0.081,0.114,0.162,,,0.137,0.188,0.072,,,0.06,0.085,18.7,10,53359,,,0.096,5810,,,,0.049147104,3029.525752,61642,,,39.0832984,69,176546,30.40913901,49.46241552,,,,,,,,,,,,,40.52467536,31.46899609,51.3746823,,,,0.322,,,0.303,0.338,0.051057622,1750,34275,0.041525707,0.060589537,0.013313745,145,10891,0.008547788,0.018079703,0.001374946,83,60366,,,727.3012048,0.848413979,473.415,558,,,0.070422535,215,3053,0.029779536,0.111065534,,,,,,,,,,,,,,,,,,,,,0.058994692,,,,,,,,,,0.851258374,47015,55230,0.778480154,0.924036594,61290,,,54608.12766,67971.87234,67188,64691.82979,69684.17021,,,,78438,7948.297872,148927.7021,66667,30423.08511,102910.9149,62761,59697.68085,65824.31915,,,,,,0.372271791,2712,7285,,,69.45282332,,,,,0.388790994,,61290,,,25.81888247,67,2595,,,,,,,,,,,,,,,,,,,,,,,,,,19.81580737,59,294305,14.70767417,26.12467164,20.04722992,,,,,,,,,,,,,20.47204167,15.14532913,27.06512477,,,,12.9117752,38,294305,9.137140601,17.72242025,,,,,,,,,,,,,13.21820397,9.306835443,18.21955299,,,,9.193155454,38,413351,6.505623948,12.61832412,,,,,,,,,,,,,9.650573066,6.829319875,13.24616553,,,,5.636363636,,5500,,,31,,0.729125603,34772,47690,,,0.561,,,,,38.02553957,,,,,0.722902029,18314,25334,0.705595749,0.740208309,0.138355391,3429,24784,0.12040983,0.156300951,0.829675535,21019,25334,0.809442123,0.849908947,60366,,,,,0.171536958,10355,60366,,,0.246910513,14905,60366,,,0.007487659,452,60366,,,0.002783024,168,60366,,,0.008266243,499,60366,,,0.000314747,19,60366,,,0.01855349,1120,60366,,,0.948547195,57260,60366,,,0.003532169,205,58038,0.000917261,0.006147076,0.500298181,30201,60366,,,0.677243611,41022,60572,, -50,023,50023,VT,Washington County,2024,1,7097.182278,737,162625,6264.254337,7930.11022,0,,,,2,,,,2,,,,2,,,,2,7163.730155,6293.005656,8034.454655,,,,,2,,0.112,,,0.09,0.135,3.000898765,,,2.355617655,3.646822626,5.292090606,,,4.467148978,6.132943764,0.071823204,247,3439,0.063193663,0.080452746,0,,,,,,,,,,,,,0.070444584,0.061569958,0.07931921,,,,,,,0.16,,,0.122,0.203,0.268,,,0.225,0.315,8.5,0.059314127,0.085,,,0.161,,,0.129,0.198,0.753105824,45041,59807,,,0.204851869,,,0.173406719,0.238149798,0.291666667,7,24,0.183021186,0.403882272,73.4,44,59969,,,8.199464525,98,11952,6.656721643,9.992520942,,,,,,,,,,,,,8.230452675,6.601063718,10.14014789,,,,,,,0.040656849,1847,45429,0.033507913,0.047805785,0.000967166,58,59969,,,1033.948276,0.000865974,52,60048,,,1154.769231,0.006161737,370,60048,,,162.2918919,2254,,,,,,,,,2268,0.43,,,,,,,,,0.44,0.57,,,,,,0.65,0.5,0.51,0.57,0.951091823,41421,43551,0.941973018,0.960210629,0.728432945,10445,14339,0.680706668,0.776159223,0.024390963,827,33906,,,0.091,961,,0.05287234,0.12912766,,,,,,,,,,0.033962264,0,0.150824699,0.135526992,0.090830117,0.180223868,4.297625871,142462,33149,3.935036572,4.66021517,0.23886751,2607,10914,0.187759447,0.289975572,20.1770915,121,59969,,,93.13083347,273,293136,82.08322594,104.178441,,,,,,,,,,,,,94.33448833,82.86775017,105.8012265,,,,5.7,,,,,1,,,,,0.128210194,3245,25310,0.110615541,0.145804846,0.114171657,0.096897039,0.131446275,0.008297116,0.004259357,0.012334875,0.009482418,0.003975373,0.014989464,0.714003753,22067,30906,0.698727184,0.729280323,,,,,,,,,,0.567607727,0.40641927,0.728796183,0.731565866,0.713691747,0.749439985,0.318,,30906,0.285918167,0.350081833,79.08776685,,,78.34853789,79.82699581,,,,,,,,,,,,,78.88038806,78.12135279,79.63942332,,,,323.5189449,737,162625,298.2683837,348.7695062,,,,,,,,,,,,,327.8717977,301.7652712,353.9783243,,,,29.48634782,15,50871,16.50328504,48.63324659,,,,,,,,,,,,,30.20431059,16.51297766,50.67770085,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.089,,,0.074,0.106,0.16,,,0.136,0.185,0.07,,,0.059,0.082,26.6,14,52615,,,0.085,5100,,,,0.059314127,3531.207225,59534,,,33.38879268,59,176706,25.41709598,43.06910991,,,,,,,,,,,,,32.54070601,24.44557987,42.45856266,,,,0.271,,,0.253,0.288,0.048581948,1689,34766,0.040241522,0.056922373,0.015795545,178,11269,0.011029588,0.020561503,0.001382228,83,60048,,,723.4698795,0.835114504,437.6,524,,,0.083718067,272,3249,0.030077665,0.137358469,,,,,,,,,,,,,,,,,,,,,0.045834958,,,,,,,,,,0.970240883,58001,59780,0.913706479,1.026775288,77432,,,71664,83200,,,,67000,37803.74468,96196.25532,34271,12284.44681,56257.55319,92708,28067.31915,157348.6809,78303,74697.55319,81908.44681,,,,,,0.27002584,2090,7740,,,68.82543853,,,,,0.403231222,,77432,,,22.73588481,60,2639,,,2.925031444,12,410252,1.51140643,5.109441282,,,,,,,,,,,,,2.8499772,1.42269835,5.099396456,,,,15.75756168,48,293136,11.44946844,21.15379106,16.37465204,,,,,,,,,,,,,15.46215301,11.09590796,20.97615649,,,,12.28098903,36,293136,8.601453734,17.00206542,,,,,,,,,,,,,11.97322352,8.241816147,16.81485742,,,,10.23761005,42,410252,7.37836884,13.83827471,,,,,,,,,,,,,10.62264229,7.622991509,14.41081374,,,,15.5,,6000,,,93,,0.752877238,35325,46920,,,0.619,,,,,33.85410811,,,,,0.726575538,18285,25166,0.708341939,0.744809138,0.115510749,2853,24699,0.098822932,0.132198567,0.895692601,22541,25166,0.8853276,0.906057602,60048,,,,,0.177474687,10657,60048,,,0.217059686,13034,60048,,,0.009359179,562,60048,,,0.003064215,184,60048,,,0.009225953,554,60048,,,0.000366374,22,60048,,,0.02136624,1283,60048,,,0.937783107,56312,60048,,,0.001818754,104,57182,0,0.003717304,0.503130829,30212,60048,,,0.665356898,39793,59807,, -50,025,50025,VT,Windham County,2024,1,8453.313912,660,118407,7310.305831,9596.321993,0,,,,2,,,,2,,,,2,,,,2,8613.815816,7392.352629,9835.279004,,,,,2,,0.123,,,0.101,0.147,3.214550405,,,2.543278335,3.952935854,5.630635415,,,4.770995459,6.535782196,0.076498088,180,2353,0.065758458,0.087237717,0,,,,,,,,,,,,,0.073251418,0.062149776,0.08435306,,,,,,,0.156,,,0.116,0.194,0.278,,,0.236,0.325,8.1,0.036947898,0.11,,,0.162,,,0.13,0.197,0.574251171,26361,45905,,,0.182133594,,,0.154957037,0.212654508,0.333333333,9,27,0.231289482,0.434909506,49.9,23,46090,,,10.74724997,85,7909,8.584521558,13.28914102,,,,,,,,,,,,,11.60458453,9.215715185,14.42343899,,,,,,,0.051440875,1744,33903,0.041908961,0.06097279,0.000889564,41,46090,,,1124.146342,0.000632608,29,45842,,,1580.758621,0.008027573,368,45842,,,124.5706522,1789,,,,,,,,,1786,0.46,,,,,,0.46,,,0.47,0.42,,,,,,0.47,0.27,,0.42,0.942034944,32081,34055,0.931427528,0.952642359,0.629922047,6303,10006,0.573144528,0.686699566,0.02888648,613,21221,,,0.146,1083,,0.09,0.202,,,,,,,,,,0.358208955,0.131237317,0.585180593,0.150277736,0.104843788,0.195711684,4.365739093,122686,28102,3.834634643,4.896843543,0.270874167,2073,7653,0.222670812,0.319077522,12.58407464,58,46090,,,114.8403349,248,215952,100.5472925,129.1333773,,,,,,,,,,,,,119.4426675,104.2995039,134.5858311,,,,6,,,,,1,,,,,0.174843424,3350,19160,0.151123293,0.198563555,0.152310924,0.128829576,0.175792273,0.009133612,0.005096631,0.013170593,0.019311065,0.008872144,0.029749985,0.708003012,15986,22579,0.682274051,0.733731972,,,,,,,,,,,,,0.722975969,0.689419921,0.756532016,0.286,,22579,0.258647598,0.313352402,78.55954346,,,77.59893823,79.52014869,,,,,,,,,,,,,78.29936834,77.29461145,79.30412522,,,,363.3503149,660,118407,331.7060414,394.9945883,,,,,,,,,,,,,370.3635802,337.1417147,403.5854458,,,,67.02608189,23,34315,42.48878635,100.5720323,,,,,,,,,,,,,72.34224458,45.33649953,109.5270277,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.092,,,0.077,0.109,0.167,,,0.144,0.193,0.071,,,0.06,0.083,32.1,13,40506,,,0.11,5020,,,,0.036947898,1644.661794,44513,,,46.80534348,61,130327,35.80237906,60.12342179,,,,,,,,,,,,,45.58716266,34.3424897,59.33795834,,,,0.273,,,0.257,0.291,0.06223176,1624,26096,0.050316866,0.074146653,0.016033038,132,8233,0.010075591,0.021990485,0.001221587,56,45842,,,818.6071429,0.778346354,298.885,384,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.075207223,,,,,,,,,,0.935528146,51121,54644,0.843351541,1.027704751,61976,,,54987.91489,68964.08511,16000,4062.468085,27937.53192,,,,,,,90125,16.23404255,180233.766,64694,60982.51064,68405.48936,,,,,,0.391947092,2015,5141,,,70.49774989,,,,,0.503130244,,61976,,,25.74457345,51,1981,,,,,,,,,,,,,,,,,,,,,,,,,,20.8468739,45,215952,14.82416526,28.4983629,20.83796399,,,,,,,,,,,,,22.60765905,15.99852509,31.03077838,,,,9.724383196,21,215952,6.019546466,14.86475269,,,,,,,,,,,,,10.49496242,6.496547149,16.04266489,,,,11.90149529,36,302483,8.335660985,16.47668612,,,,,,,,,,,,,12.45680159,8.676618727,17.32439553,,,,8,,4000,,,32,,0.827694546,28452,34375,,,0.495,,,,,45.519036,,,,,0.717676194,13910,19382,0.696743623,0.738608766,0.154259279,2901,18806,0.129940849,0.178577709,0.754772469,14629,19382,0.72591614,0.783628799,45842,,,,,0.164456176,7539,45842,,,0.256053401,11738,45842,,,0.015117142,693,45842,,,0.002879456,132,45842,,,0.012804851,587,45842,,,0.000610794,28,45842,,,0.027180315,1246,45842,,,0.92262554,42295,45842,,,0.001408675,62,44013,0,0.003661454,0.501919637,23009,45842,,,0.709421632,32566,45905,, -50,027,50027,VT,Windsor County,2024,1,7654.440075,795,151637,6739.727704,8569.152446,0,,,,2,,,,2,,,,2,,,,2,7719.615894,6766.06719,8673.164599,,,,,2,,0.108,,,0.087,0.132,2.991120503,,,2.320987904,3.7141647,5.469641808,,,4.592136264,6.375301413,0.068072867,213,3129,0.05924753,0.076898204,0,,,,,,,,,,,,,0.067029602,0.057988455,0.076070749,,,,,,,0.139,,,0.105,0.176,0.302,,,0.258,0.35,9,0.011567973,0.082,,,0.16,,,0.128,0.196,0.69655256,40228,57753,,,0.155667653,,,0.130710063,0.183589995,0.279069767,12,43,0.199251669,0.361901334,87.6,51,58196,,,10.42419238,101,9689,8.3911904,12.45719437,,,,,,,,,,,,,11.0013471,8.931425356,13.40711835,,,,,,,0.044623447,1950,43699,0.037474511,0.051772383,0.001099732,64,58196,,,909.3125,0.000619174,36,58142,,,1615.055556,0.005882151,342,58142,,,170.005848,2100,,,,,,,,,2078,0.48,,,,,,,,,0.48,0.46,,,,,,0.48,0.3,0.47,0.46,0.94895047,41230,43448,0.939683273,0.958217666,0.705284553,9022,12792,0.650515812,0.760053294,0.022424907,654,29164,,,0.096,960,,0.054297872,0.137702128,,,,,,,,,,0.291666667,0.069294655,0.514038678,0.06938326,0.042068526,0.096697994,4.552582068,140347,30828,4.005896852,5.099267285,0.18080749,1854,10254,0.136066226,0.225548753,12.54381744,73,58196,,,121.3069569,338,278632,108.3744288,134.2394849,,,,,,,,,,,,,124.7798283,111.275794,138.2838626,,,,6,,,,,1,,,,,0.147787251,3640,24630,0.130420926,0.165153576,0.125748503,0.108658373,0.142838633,0.014210313,0.008440555,0.01998007,0.014819326,0.008816684,0.020821968,0.705949856,20301,28757,0.676182888,0.735716824,,,,,,,,,,,,,0.719534292,0.694001378,0.745067206,0.346,,28757,0.311922571,0.380077429,78.99497664,,,78.21280816,79.77714512,,,,,,,,,,,,,78.81926841,78.01435125,79.62418557,,,,340.72217,795,151637,314.004143,367.440197,,,,,,,,,,,,,345.1236677,317.4478693,372.799466,,,,43.48721705,19,43691,26.18214544,67.91067628,,,,,,,,,,,,,42.52551531,24.77267978,68.08746952,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.09,,,0.075,0.106,0.158,,,0.135,0.182,0.072,,,0.06,0.084,35.2,18,51146,,,0.082,4740,,,,0.011567973,655.5570065,56670,,,45.76631837,77,168246,36.11806275,57.20004547,,,,,,,,,,,,,46.72277609,36.68742857,58.65616678,,,,0.287,,,0.269,0.305,0.053352883,1783,33419,0.043820968,0.062884798,0.016892828,183,10833,0.010935381,0.022850274,0.001461938,85,58142,,,684.0235294,0.812221095,400.425,493,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.06976397,,,,,,,,,,0.884864144,52399,59217,0.811318338,0.958409949,74244,,,68151.91489,80336.08511,,,,70625,40634.02128,100615.9787,43500,8110.382979,78889.61702,91049,69652.23404,112445.766,69094,65496.89362,72691.10638,,,,,,0.305013116,2093,6862,,,69.0473318,,,,,0.383195949,,74244,,,27.85627776,69,2477,,,,,,,,,,,,,,,,,,,,,,,,,,25.15471054,70,278632,19.24136039,32.31227803,25.12274254,,,,,,,,,,,,,24.85888695,18.82787822,32.20757142,,,,13.99695656,39,278632,9.953204402,19.13430039,,,,,,,,,,,,,13.69534701,9.592052673,18.96013303,,,,10.25996178,40,389865,7.329867119,13.9711559,,,,,,,,,,,,,10.85829384,7.757324311,14.78591434,,,,15.57692308,,5200,,,81,,0.820705244,36308,44240,,,0.543,,,,,18.87302464,,,,,0.765976524,18794,24536,0.749344889,0.782608159,0.124800738,2975,23838,0.1069366,0.142664876,0.864566352,21213,24536,0.8452921,0.883840603,58142,,,,,0.174521,10147,58142,,,0.257180696,14953,58142,,,0.0094424,549,58142,,,0.00282068,164,58142,,,0.01155791,672,58142,,,0.000395583,23,58142,,,0.022238657,1293,58142,,,0.937480651,54507,58142,,,0.001876511,104,55422,0,0.003979959,0.506329332,29439,58142,,,0.786435337,45419,57753,, -51,000,51000,VA,Virginia,2024,,7297.069384,110096,24084909,7231.851901,7362.286867,0,6199.058609,4842.526708,7555.590511,,2594.655266,2447.66985,2741.640683,,11170.94713,10985.61005,11356.28422,,4551.529947,4391.112218,4711.947677,,7023.686255,6941.369298,7106.003211,,7111.118194,4863.99958,10038.77713,,,0.142,,,0.133,0.153,3.249532894,,,3.046123223,3.452942564,4.873030285,,,4.604950644,5.141109927,0.082848363,56830,685952,0.082196026,0.083500699,0,0.0761079,0.059976098,0.092239702,0.084883968,0.082482708,0.087285228,0.135551294,0.133759941,0.137342647,0.071020766,0.069450679,0.072590852,0.066230659,0.065434614,0.067026705,0.076923077,0.058673139,0.095173015,0.079235828,0.074551346,0.083920311,0.129,,,0.119,0.139,0.342,,,0.328,0.357,9,0.04437811,0.081,,,0.204,,,0.193,0.216,0.836488965,7220065,8631393,,,0.178437913,,,0.166831293,0.190667229,0.3021099,1303,4313,0.294655782,0.309590116,467.6,40409,8642274,,,13.45669167,25260,1877133,13.2907415,13.62264184,5.626487773,3.675408616,8.24410822,1.538585468,1.320382319,1.756788617,19.5587401,19.12055994,19.99692027,28.5117766,27.82154633,29.20200688,9.605437157,9.416641218,9.794233096,8.766014835,4.667533709,14.99015234,8.34043118,7.745099627,8.935762734,0.079626823,559026,7020574,0.077243844,0.082009801,0.000745521,6443,8642274,,,1341.343163,0.000752566,6535,8683619,,,1328.786381,0.002432626,21124,8683619,,,411.0783469,2601,,,,,1463,1404,3915,1952,2426,0.44,,,,,0.38,0.33,0.45,0.29,0.45,0.49,,,,,0.46,0.5,0.38,0.38,0.5,0.911166686,5393325,5919142,0.909608856,0.912724516,0.722277028,1672262,2315264,0.717202722,0.727351333,0.028642892,127056,4435865,,,0.128,234609,,0.122042553,0.133957447,0.142857143,0.093503471,0.192210815,0.066809422,0.059607937,0.074010907,0.249983988,0.240262017,0.25970596,0.171492686,0.162418356,0.180567017,0.080696329,0.077490052,0.083902606,4.850773531,175273,36133,4.796757541,4.904789521,0.236387133,442668,1872640,0.23185061,0.240923655,11.04454684,9545,8642274,,,71.83309052,30713,42756061,71.02971332,72.63646772,50.88299543,38.63759173,65.77807096,21.89623439,20.20112984,23.59133895,82.19871037,80.23396071,84.16346003,31.8027124,30.09479005,33.51063475,82.22931972,81.12999968,83.32863977,46.81355721,26.2011926,77.21184343,7.3,,,,,0.2,,,,,0.137350351,437340,3184120,0.135498741,0.139201961,0.117611761,0.115912137,0.119311386,0.019396254,0.0186399,0.020152608,0.007182518,0.006750686,0.007614351,0.709365801,3043612,4290610,0.707022032,0.711709571,0.644598182,0.597476928,0.691719436,0.600070998,0.590270139,0.609871857,0.729748057,0.723812935,0.73568318,0.648386706,0.639896276,0.656877135,0.743714615,0.740831839,0.746597391,0.401,,4290610,0.397847616,0.404152385,78.1383757,,,78.07795628,78.19879513,89.5645833,86.39513814,92.73402845,87.96260723,87.54477169,88.38044277,74.09748415,73.94882615,74.24614214,85.82437946,85.32337482,86.3253841,78.2627606,78.18985168,78.33566953,82.02850596,76.63234191,87.42467001,361.8902809,110096,24084909,359.6892398,364.091322,252.2761726,214.8319358,289.7204094,138.9331572,133.5703202,144.2959943,530.2651196,524.0441929,536.4860462,203.7335781,197.1208457,210.3463104,354.3932957,351.6713838,357.1152077,324.7202469,249.5239536,415.4582548,50.28059721,4217,8386933,48.76300636,51.79818806,,,,27.77633421,23.40347846,32.14918996,86.66281366,82.20670216,91.11892516,46.81933163,42.94497272,50.69369054,40.72345556,38.84733214,42.59957899,,,,5.817002882,4037,694000,5.637560107,5.996445656,,,,3.461928352,2.95757506,3.966281643,10.12288583,9.601659651,10.644112,5.424004442,4.969453623,5.878555262,4.186987408,3.981953131,4.392021684,,,,14.62966059,12.46209975,16.79722144,0.095498064,,,0.087784653,0.103812104,0.152074798,,,0.141269035,0.163549683,0.102,,,0.095,0.109,333.9,24411,7311943,,,0.081,704270,,,,0.04437811,355070.3244,8001024,,,24.88711348,6413,25768356,24.27799752,25.49622944,30.53568313,18.90206913,46.67703533,3.250155503,2.467979338,4.201579673,32.3086649,30.72256359,33.89476622,10.45827866,9.208479753,11.70807757,27.73358571,26.90884547,28.55832595,,,,0.345396516,,,0.331169724,0.3599056,0.093198966,481061,5161656,0.089624498,0.096773434,0.043539258,84941,1950906,0.03996479,0.047113726,0.001248788,10844,8683619,,,800.776374,0.899072624,87277.475,97075,,,0.058505606,27084,462930,0.05497388,0.062037332,3.192979505,,,,,,3.547221356,2.837072924,2.814225359,3.420787549,,,,,,,,,,,0.200221014,,,,,-806.3747,,,,,0.802696218,56208,70024,0.795847303,0.809545134,85838,,,84942,86734,83852,72119.40426,95584.59575,125583,123129.7234,128036.2766,60201,59287.12766,61114.87234,83441,81453.59575,85428.40426,93942,93331.95745,94552.04255,,,,,,0.463516553,571591,1233162,,,51.02113109,,,,,0.260855581,,,,,7.470491558,,,,,5.454161184,3248,59550862,5.26658572,5.641736648,,,,1.022568078,0.733812507,1.387229062,18.17108073,17.38790077,18.95426068,3.468169821,2.985084511,3.95125513,2.403865306,2.245128278,2.562602335,,,,13.35603242,5944,42756061,13.00989821,13.70216664,13.90212256,9.18937766,4.406663776,16.8995927,6.349196961,5.434520269,7.263873652,7.653150277,7.047453474,8.25884708,5.204060564,4.476890593,5.931230535,17.04578738,16.54364494,17.54792981,,,,12.91746684,5523,42756061,12.57678741,13.25814626,9.650223271,4.817356687,17.2669151,2.596121395,2.04544838,3.249433054,22.02886319,21.01174654,23.04597984,4.727430222,4.068941102,5.385919341,12.83518041,12.40085845,13.26950237,,,,10.24670306,6102,59550862,9.989601852,10.50380427,8.803924035,4.813187194,14.77148857,3.217348341,2.662135758,3.772560925,13.76889918,13.08715601,14.45064234,6.708631522,6.036753209,7.380509834,10.71780128,10.38262287,11.05297968,,,,,,,,,,,0.719608811,4460524,6198540,,,,,,,,133.9545466,,,,,0.668525456,2199299,3289776,0.664555859,0.672495053,0.12695103,406590,3202731,0.124944506,0.128957555,0.886870109,2917604,3289776,0.883929251,0.889810967,8683619,,,,,0.214992159,1866910,8683619,,,0.168707079,1464988,8683619,,,0.191637611,1664108,8683619,,,0.0058243,50576,8683619,,,0.073432056,637656,8683619,,,0.001266292,10996,8683619,,,0.104910522,911003,8683619,,,0.598374249,5196054,8683619,,,0.02559037,208059,8130363,0.024879529,0.026301212,0.504916786,4384505,8683619,,,0.243654761,2103080,8631393,, -51,001,51001,VA,Accomack County,2024,1,11805.17124,731,87868,10306.0027,13304.33978,0,,,,2,,,,2,16777.45529,13602.19889,19952.71169,,,,,2,10207.13602,8242.121779,12172.15026,,,,,2,,0.205,,,0.176,0.234,4.157676759,,,3.364400523,4.995110082,5.122809652,,,4.192445759,6.077315642,0.103238866,255,2470,0.091239244,0.115238489,0,,,,,,,0.148148148,0.124460096,0.1718362,0.064853557,0.04277611,0.086931003,0.085046729,0.068332265,0.101761193,,,,,,,0.198,,,0.162,0.236,0.401,,,0.334,0.468,8.7,0.008994452,0.097,,,0.284,,,0.236,0.332,0.370394757,12376,33413,,,0.136501431,,,0.109195765,0.16706476,0.307692308,8,26,0.203357238,0.41377518,538.4,179,33246,,,25.94056004,151,5821,21.80297488,30.0781452,,,,,,,31.38297872,23.89017746,40.48175604,43.4298441,30.88286469,59.37002658,17.51250894,12.95585052,23.15246554,,,,,,,0.133961643,3255,24298,0.116089303,0.151833983,0.000360946,12,33246,,,2770.5,0.000542316,18,33191,,,1843.944444,0.001295532,43,33191,,,771.8837209,2002,,,,,,,2387,,1929,0.46,,,,,,,0.52,,0.45,0.44,,,,,,0.43,0.4,0.28,0.45,0.815666503,19899,24396,0.793177093,0.838155913,0.445832123,3070,6886,0.376433192,0.515231054,0.032717108,515,15741,,,0.226,1479,,0.13306383,0.31893617,,,,,,,0.295522388,0.189474973,0.401569803,0.387640449,0.232344494,0.542936405,0.111035884,0.062021465,0.160050303,3.933561006,101360,25768,3.409726129,4.457395883,0.362749446,2454,6765,0.287969702,0.437529189,11.42994646,38,33246,,,93.39076046,152,162757,78.54377821,108.2377427,,,,,,,96.12443745,69.84416341,129.0425706,73.27959496,36.58090978,131.1174373,97.45788793,78.84925118,119.1372142,,,,6.9,,,,,1,,,,,0.147727273,2015,13640,0.11752696,0.177927586,0.118562431,0.08975908,0.147365781,0.021554252,0.010347359,0.032761146,0.010630499,0.003269824,0.017991173,0.728136747,10266,14099,0.68298185,0.773291645,,,,,,,0.693113076,0.593703562,0.79252259,0.703919933,0.524237524,0.883602343,0.804970834,0.754585574,0.855356095,0.254,,14099,0.205250755,0.302749245,74.09965193,,,73.01876719,75.18053667,,,,,,,69.21278579,67.23045111,71.19512046,,,,75.62180597,74.18488884,77.0587231,,,,536.9606503,731,87868,492.8821389,581.0391617,,,,,,,766.4058373,665.2253762,867.5862984,,,,473.5509398,420.0159667,527.0859129,,,,88.89192793,26,29249,58.06715859,130.2472703,,,,,,,102.0199959,48.92255352,187.6184048,,,,78.49293564,37.64041363,144.3513033,,,,9.471191792,24,2534,6.068371292,14.09238263,,,,,,,,,,,,,,,,,,,,,,0.129,,,0.112,0.147,0.175,,,0.152,0.199,0.123,,,0.107,0.14,372.5,106,28458,,,0.097,3230,,,,0.008994452,298.2919881,33164,,,27.60736196,27,97800,18.19342549,40.16726221,,,,,,,,,,,,,37.63514438,23.58574462,56.98006088,,,,0.388,,,0.375,0.4,0.155057064,2758,17787,0.132418766,0.177695362,0.077574872,531,6845,0.053745085,0.101404659,0.000873731,29,33191,,,1144.517241,0.85,306,360,,,0.077569489,120,1547,0.024583599,0.13055538,2.929125474,,,,,,,2.757965823,2.707497864,3.182295028,,,,,,,,,,,0.070984316,,,,,-11041.42,,,,,0.758880288,35785,47155,0.695845415,0.821915162,56357,,,49107.97872,63606.02128,,,,,,,44148,35908.85106,52387.14894,48260,20282.6383,76237.3617,60192,52832.17021,67551.82979,,,,,,0.972847822,4622,4751,,,28.00436731,,,,,0.254591266,,56357,,,4.417448923,8,1811,,,14.86813278,34,228677,10.29661417,20.77672529,,,,,,,31.20903814,19.06329128,48.1998282,,,,7.271140842,3.48679466,13.37188689,,,,14.04550051,26,162757,8.694386187,21.47003951,15.97473534,,,,,,,,,,,,,18.06305676,10.32459765,29.33327253,,,,20.27562563,33,162757,13.95680774,28.47451678,,,,,,,30.58504828,16.7211305,51.31651401,,,,18.46570508,10.94394713,29.18377508,,,,19.67841103,45,228677,14.35356804,26.33126222,,,,,,,31.20903814,19.06329128,48.1998282,,,,13.8151676,8.317633363,21.57409552,,,,9,,3000,,,21,6,0.705427324,16962,24045,,,0.389,,,,,17.42892419,,,,,0.66867808,9530,14252,0.642300772,0.695055388,0.118300853,1554,13136,0.091290019,0.145311686,0.805781645,11484,14252,0.778851562,0.832711727,33191,,,,,0.200355518,6650,33191,,,0.26344491,8744,33191,,,0.273989937,9094,33191,,,0.007080233,235,33191,,,0.008978338,298,33191,,,0.001837848,61,33191,,,0.096682836,3209,33191,,,0.600644753,19936,33191,,,0.040198778,1270,31593,0.028496284,0.051901273,0.507667741,16850,33191,,,0.903540538,30190,33413,, -51,003,51003,VA,Albemarle County,2024,1,4986.100802,951,305630,4467.439225,5504.762379,0,,,,2,2581.146377,1288.498972,4618.383854,1,8781.283217,6602.947295,10959.61914,,3819.852362,2263.886599,6037.013569,1,4784.00098,4198.27558,5369.72638,,,,,2,,0.115,,,0.095,0.139,3.057793021,,,2.373142484,3.832480678,4.778499479,,,3.91528771,5.700098386,0.06360279,465,7311,0.058008618,0.069196962,0,,,,0.060185185,0.037757723,0.082612648,0.134831461,0.111178485,0.158484437,0.067307692,0.049106832,0.085508553,0.052681992,0.046621613,0.058742372,,,,,,,0.111,,,0.084,0.141,0.286,,,0.233,0.345,9.1,0.035266638,0.068,,,0.166,,,0.134,0.202,0.790373237,88834,112395,,,0.184796846,,,0.151535609,0.222059804,0.23943662,17,71,0.17859049,0.303925943,276.6,314,113535,,,4.392471711,151,34377,3.691861325,5.093082096,,,,,,,9.431266076,6.492049606,13.24500408,16.32165605,11.71270218,22.14216941,2.791523918,2.158964396,3.551502874,,,,,,,0.078001897,6663,85421,0.067278492,0.088725301,0.001391641,158,113535,,,718.5759494,0.001038993,119,114534,,,962.4705882,0.00211291,242,114534,,,473.2809917,1790,,,,,,,3279,,1708,0.53,,,,,,0.47,0.52,,0.54,0.61,,,,,,0.59,0.53,0.45,0.62,0.938260372,72186,76936,0.930199294,0.94632145,0.807498824,22312,27631,0.765977157,0.849020491,0.026589893,1547,58180,,,0.085,1827,,0.054021277,0.115978723,0.013888889,0,0.74592047,0.086538462,0,0.182696261,0.283342557,0.155420383,0.411264731,0.142184557,0.002312284,0.282056831,0.054998992,0.033987469,0.076010514,4.500919359,188485,41877,4.10298586,4.898852858,0.220729367,4830,21882,0.172210306,0.269248427,10.30519223,117,113535,,,65.46204383,360,549937,58.69974465,72.22434302,,,,,,,57.9396655,39.091649,82.71247517,49.57090188,28.33405352,80.50003903,72.63129412,64.49326686,80.76932138,,,,6.4,,,,,0,,,,,0.129070316,5470,42380,0.11125194,0.146888692,0.118032396,0.100711733,0.13535306,0.011326097,0.007317455,0.01533474,0.004719207,0.002275781,0.007162634,0.682659088,36753,53838,0.663302281,0.702015896,,,,0.414331465,0.322519919,0.506143012,0.609724047,0.563714515,0.65573358,0.543621943,0.439658292,0.647585595,0.706697911,0.677979669,0.735416152,0.245,,53838,0.220120972,0.269879028,81.9053583,,,81.37991864,82.43079796,,,,86.02665215,82.47588679,89.5774175,76.60759846,74.74372536,78.47147156,87.1620034,82.55355962,91.77044717,82.18369668,81.60432466,82.7630687,,,,233.8775455,951,305630,218.1142773,249.6408136,,,,133.7090018,81.67293197,206.5027089,428.0258997,355.52932,500.5224793,151.1150426,92.3049939,233.3849272,223.3534785,206.0489394,240.6580177,,,,42.88516812,47,109595,31.51040847,57.02818225,,,,,,,,,,,,,42.21858673,28.87748207,59.6000476,,,,3.830893419,28,7309,2.545600856,5.536707613,,,,,,,,,,,,,,,,,,,,,,0.085,,,0.071,0.099,0.14,,,0.12,0.16,0.081,,,0.068,0.093,209.7,205,97773,,,0.068,7570,,,,0.035266638,3490.339155,98970,,,11.69355685,39,333517,8.315262037,15.98547716,,,,,,,,,,,,,11.35762821,7.606381866,16.31144866,,,,0.303,,,0.288,0.318,0.086780134,5476,63102,0.073673751,0.099886517,0.054616107,1279,23418,0.039126746,0.070105469,0.000960414,110,114534,,,1041.218182,,,,,,0.019061584,182,9548,0.00630031,0.031822858,3.209291346,,,,,,,2.476900322,2.440687301,3.485692804,,,,,,,,,,,0.087649974,,,,,,,,,,0.838728648,62752,74818,0.759958656,0.91749864,94727,,,86276.95745,103177.0426,,,,127163,86308.02128,168017.9787,49134,41879.02128,56388.97872,92235,84883.51064,99586.48936,102888,98465.19149,107310.8085,,,,,,0.311948615,4031,12922,,,42.6495443,,,,,0.283182197,,94727,,,9.797297297,58,5920,,,2.098311122,16,762518,1.199366107,3.407525802,,,,,,,,,,,,,1.878383224,0.937682138,3.360946451,,,,14.38565247,87,549937,11.42428456,17.88005251,15.81999393,,,,,,,,,,,,,16.75151247,13.03367658,21.20011115,,,,10.1829846,56,549937,7.69211713,13.22345251,,,,,,,,,,,,,12.34257286,9.218023764,16.1856422,,,,8.393244487,64,762518,6.463820991,10.71798583,,,,,,,15.24707187,7.611283342,27.28122325,,,,7.342770786,5.313999626,9.890664062,,,,7.7,,10000,,,41,36,0.793532155,64657,81480,,,0.7,,,,,56.31087887,,,,,0.672344485,29604,44031,0.655830432,0.688858537,0.124447872,5325,42789,0.108266123,0.140629621,0.900547342,39652,44031,0.887700934,0.91339375,114534,,,,,0.190912742,21866,114534,,,0.208339882,23862,114534,,,0.093579199,10718,114534,,,0.003946426,452,114534,,,0.058786037,6733,114534,,,0.000890565,102,114534,,,0.060593361,6940,114534,,,0.760088707,87056,114534,,,0.016659335,1780,106847,0.012098282,0.021220389,0.51912096,59457,114534,,,0.403745718,45379,112395,, -51,005,51005,VA,Alleghany County,2024,1,11573.33479,352,39412,9315.765847,13830.90373,0,,,,2,,,,2,20714.05479,6725.797208,48339.69401,1,,,,2,11589.47989,9247.806422,13931.15337,,,,,2,,0.172,,,0.146,0.201,4.093906179,,,3.267196007,5.007760606,5.668171226,,,4.615516743,6.803138401,0.086526576,70,809,0.067153235,0.105899917,0,,,,,,,,,,,,,0.085948158,0.065656956,0.106239361,,,,,,,0.193,,,0.155,0.235,0.378,,,0.307,0.459,7.7,0.078947574,0.109,,,0.247,,,0.202,0.297,1,15223,15223,,,0.151607284,,,0.120353463,0.186570472,0.636363636,7,11,0.512526108,0.732783617,220.2,33,14986,,,19.5035461,55,2820,14.69274006,25.38654609,,,,,,,,,,,,,17.83590963,13.00963487,23.86585038,,,,,,,0.079985523,884,11052,0.068070629,0.091900417,0.000400374,6,14986,,,2497.666667,0.000269633,4,14835,,,3708.75,0.000337041,5,14835,,,2967,4445,,,,,,,,,4746,0.43,,,,,,,,,0.44,0.45,,,,,,,,,0.45,0.881820625,9842,11161,0.856016073,0.907625178,0.493884298,1494,3025,0.398281984,0.589486611,0.032720753,219,6693,,,0.188,489,,0.116510638,0.259489362,,,,,,,0.055555556,0,0.246902722,,,,0.138533674,0.055310637,0.221756712,5.563198846,107965,19407,3.646770425,7.479627266,0.287521968,818,2845,0.189864902,0.385179035,16.68223675,25,14986,,,91.17848188,68,74579,70.80365888,115.5904519,,,,,,,,,,,,,99.76379455,77.47049009,126.4743815,,,,6.7,,,,,0,,,,,0.092649311,605,6530,0.062779479,0.122519143,0.084382284,0.054061469,0.1147031,0.007503829,0.000012231,0.014995426,0.005972435,0,0.013295913,0.900948893,5412,6007,0.864900316,0.93699747,,,,,,,,,,,,,0.904650619,0.854349979,0.954951259,0.262,,6007,0.205886037,0.318113963,73.56335633,,,71.97269617,75.15401649,,,,,,,,,,,,,73.48523981,71.8389183,75.13156132,,,,558.3905866,352,39412,492.5014752,624.279698,,,,,,,903.7562129,526.4712985,1447.001245,,,,556.3374314,487.9017457,624.7731171,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.12,,,0.103,0.14,0.185,,,0.16,0.212,0.101,,,0.086,0.118,106.6,14,13128,,,0.109,1670,,,,0.078947574,1282.898078,16250,,,22.44820078,10,44547,10.76478483,41.28304048,,,,,,,,,,,,,24.58935773,11.79155281,45.22070434,,,,0.374,,,0.357,0.39,0.09273183,777,8379,0.077242468,0.108221191,0.041105599,116,2822,0.027999216,0.054211982,0.000943714,14,14835,,,1059.642857,0.875,146.125,167,,,,,,,,2.87297978,,,,,,,,,2.935763962,,,,,,,,,,,0.030674427,,,,,383.2588,,,,,0.606285404,34571,57021,0.54595786,0.666612947,52412,,,47753.2766,57070.7234,,,,,,,27596,14194.12766,40997.87234,85227,2492.361702,167961.6383,54188,49032.42553,59343.57447,,,,,,0.569335427,1088,1911,,,34.0066906,,,,,0.273754102,,52412,,,1.620745543,1,617,,,,,,,,,,,,,,,,,,,,,,,,,,19.75895614,17,74579,10.80240519,33.15217096,22.79462047,,,,,,,,,,,,,21.24483763,11.61475043,35.64522762,,,,22.79462047,17,74579,13.27870643,36.49639552,,,,,,,,,,,,,24.94094864,14.52902168,39.93287483,,,,14.17086282,15,105851,7.931324345,23.37268318,,,,,,,,,,,,,15.48387097,8.66620504,25.53829045,,,,27.69230769,,1300,,,23,13,0.679056291,8203,12080,,,0.61,,,,,23.98345798,,,,,0.832144555,5250,6309,0.802666016,0.861623095,0.077080143,453,5877,0.051726958,0.102433328,0.783166904,4941,6309,0.749718445,0.816615364,14835,,,,,0.180316818,2675,14835,,,0.264172565,3919,14835,,,0.044826424,665,14835,,,0.003774857,56,14835,,,0.003707449,55,14835,,,0.000876306,13,14835,,,0.018200202,270,14835,,,0.910279744,13504,14835,,,0.000825878,12,14530,0,0.007714046,0.508527132,7544,14835,,,0.53136701,8089,15223,, -51,007,51007,VA,Amelia County,2024,1,11804.70371,278,36113,9490.073609,14119.33381,0,,,,2,,,,2,14627.01854,8806.42066,22841.90132,1,,,,2,11959.49064,9281.068695,14637.91259,,,,,2,,0.181,,,0.156,0.212,3.969474237,,,3.192263082,4.93830527,5.612979533,,,4.599969913,6.78293649,0.077330509,73,944,0.060290548,0.094370469,0,,,,,,,0.125827815,0.072927968,0.178727662,,,,0.069863014,0.051370679,0.088355349,,,,,,,0.19,,,0.153,0.232,0.396,,,0.323,0.476,8.6,0.061539266,0.078,,,0.259,,,0.212,0.31,0.314134942,4167,13265,,,0.160663583,,,0.128500949,0.198051285,0.45,9,20,0.336869521,0.553114298,263.8,35,13268,,,11.86579378,29,2444,7.946708321,17.04125918,,,,,,,19.56947162,9.384322302,35.98895507,,,,8.751458576,4.898124932,14.43420004,,,,,,,0.111227702,1166,10483,0.09573834,0.126717064,7.53693E-05,1,13268,,,13268,0.000371609,5,13455,,,2691,0.000743218,10,13455,,,1345.5,3624,,,,,,,4190,,3323,0.39,,,,,,,0.44,,0.38,0.41,,,,,,,0.39,,0.41,0.86389144,8467,9801,0.825000137,0.902782742,0.366624123,1149,3134,0.257797179,0.475451066,0.029393073,185,6294,,,0.149,409,,0.103723404,0.194276596,,,,,,,,,,0.630952381,0.302655643,0.959249119,0.065217391,0.011927051,0.118507731,3.914049958,121907,31146,2.985937521,4.842162396,0.064902103,179,2758,0,0.131001197,9.79801025,13,13268,,,128.3226398,84,65460,102.3551631,158.8721598,,,,,,,98.12061288,52.2450939,167.7892363,,,,146.7760941,114.6333472,185.1380711,,,,7.7,,,,,0,,,,,0.150943396,760,5035,0.091801594,0.210085198,0.099492386,0.054560183,0.144424589,0.073485601,0.025493895,0.121477306,0,0,0.006693229,0.819542688,4982,6079,0.761696905,0.877388471,,,,,,,,,,,,,0.685221675,0.573852711,0.796590638,0.721,,6079,0.594915877,0.847084123,73.35413694,,,71.7365965,74.97167738,,,,,,,71.01200771,66.65573918,75.36827623,,,,73.3737025,71.53481421,75.21259078,,,,533.878815,278,36113,465.6097501,602.1478799,,,,,,,620.3507639,464.6852915,811.4340731,,,,529.6684418,449.8685943,609.4682893,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.12,,,0.103,0.14,0.179,,,0.154,0.205,0.111,,,0.095,0.129,158.1,18,11385,,,0.078,1030,,,,0.061539266,780.9332832,12690,,,43.11766049,17,39427,25.11762617,69.03555131,,,,,,,,,,,,,51.46856986,28.80656785,84.88957889,,,,0.369,,,0.354,0.384,0.122847302,963,7839,0.102591983,0.143102621,0.077421678,215,2777,0.053591891,0.101251465,0.000222965,3,13455,,,4485,0.875,97.125,111,,,,,,,,3.108442878,,,,,,,2.635551,,3.34645877,,,,,,,,,,,0.004704699,,,,,-911.3574,,,,,0.831120288,46694,56182,0.590488021,1.071752554,65835,,,56179.17021,75490.82979,,,,,,,67656,33071.82979,102240.1702,,,,61954,43801.65957,80106.34043,,,,,,0.559021407,914,1635,,,17.55018493,,,,,0.189519253,,65835,,,8.510638298,6,705,,,,,,,,,,,,,,,,,,,,,,,,,,18.72688759,14,65460,9.676456085,32.7121039,21.38710663,,,,,,,,,,,,,22.73134893,11.34740748,40.67266228,,,,24.44240758,16,65460,13.97094784,39.69293859,,,,,,,,,,,,,31.00903397,17.35552092,51.14468582,,,,31.77176914,29,91276,21.27805243,45.62956028,,,,,,,,,,,,,31.26069935,19.3508656,47.78529963,,,,13.33333333,,1200,,,11,5,0.781197427,7894,10105,,,0.693,,,,,5.921270318,,,,,0.844047166,4438,5258,0.802322836,0.885771497,0.101497181,522,5143,0.053177449,0.149816912,0.790604793,4157,5258,0.729845179,0.851364407,13455,,,,,0.207506503,2792,13455,,,0.214418432,2885,13455,,,0.190635452,2565,13455,,,0.006614641,89,13455,,,0.005871423,79,13455,,,0.000594575,8,13455,,,0.038201412,514,13455,,,0.743069491,9998,13455,,,0.008820725,111,12584,0,0.021853365,0.501895206,6753,13455,,,1,13265,13265,, -51,009,51009,VA,Amherst County,2024,1,10010.53418,582,85778,8658.505725,11362.56263,0,,,,2,,,,2,11711.80793,8528.852497,14894.76336,,,,,2,9328.479999,7821.605287,10835.35471,,,,,2,,0.174,,,0.148,0.202,3.958054208,,,3.121389885,4.865595454,5.526233572,,,4.490497878,6.648918267,0.078493648,173,2204,0.067265278,0.089722018,0,,,,,,,0.12849162,0.093826896,0.163156344,,,,0.072387624,0.060116261,0.084658988,,,,,,,0.182,,,0.144,0.221,0.364,,,0.289,0.442,8.7,0.038668218,0.085,,,0.247,,,0.201,0.295,0.834605679,26129,31307,,,0.16444316,,,0.129947275,0.202602176,0.347826087,8,23,0.236887913,0.456754526,287.8,90,31273,,,18.09954751,116,6409,14.80576595,21.39332908,,,,,,,18.22503962,11.55311176,27.34650784,,,,16.17614019,12.65683345,20.37117143,,,,39.86710964,20.59991731,69.63981744,0.088600093,2093,23623,0.07549371,0.101706476,0.000223835,7,31273,,,4467.571429,0.000221596,7,31589,,,4512.714286,0.000506505,16,31589,,,1974.3125,2357,,,,,,,1548,,2499,0.38,,,,,,,0.46,,0.37,0.54,,,,,,,0.49,,0.54,0.877156041,19579,22321,0.858290764,0.896021319,0.568716997,3985,7007,0.500029803,0.637404192,0.030988952,460,14844,,,0.172,1052,,0.111234043,0.232765957,,,,,,,0.135951662,0.005580219,0.266323105,0.34962406,0,0.763778303,0.115976901,0.062934019,0.169019783,4.766570272,123621,25935,4.247734894,5.28540565,0.261970015,1625,6203,0.192359902,0.331580127,13.11035078,41,31273,,,102.0246507,161,157805,86.26493965,117.7843617,,,,,,,70.79526683,43.82338598,108.2180856,,,,114.0886849,94.84307137,133.3342985,,,,7.4,,,,,0,,,,,0.102384868,1245,12160,0.078530969,0.126238768,0.075333333,0.054938582,0.095728085,0.024259868,0.009954832,0.038564905,0.006990132,0.002037538,0.011942726,0.794784037,11611,14609,0.765065402,0.824502673,,,,,,,0.743455497,0.646837207,0.840073788,,,,0.734362438,0.679460724,0.789264151,0.344,,14609,0.297623659,0.390376342,75.76793928,,,74.72432122,76.81155733,,,,,,,74.88332526,72.39091746,77.37573307,,,,76.07539731,74.90953404,77.24126058,,,,468.8401066,582,85778,427.4093877,510.2708255,,,,,,,557.1541876,449.2053529,665.1030223,,,,448.2582525,402.6336299,493.8828752,,,,57.86409172,16,27651,33.07432807,93.96765975,,,,,,,,,,,,,66.91373276,35.62874455,114.4245209,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.117,,,0.1,0.134,0.177,,,0.152,0.202,0.104,,,0.088,0.119,167.2,45,26918,,,0.085,2670,,,,0.038668218,1251.03286,32353,,,30.67322439,29,94545,20.54233977,44.05186677,,,,,,,,,,,,,31.07651887,19.47548892,47.05022303,,,,0.368,,,0.353,0.382,0.103473846,1814,17531,0.086792995,0.120154697,0.047241647,304,6435,0.032943775,0.06153952,0.000728102,23,31589,,,1373.434783,0.93,279,300,,,,,,,,3.098801454,,,,,,,2.732196767,,3.221789074,,,,,,,,,,,0.022349811,,,,,16.39063,,,,,0.779972615,42723,54775,0.704794406,0.855150824,61271,,,54460.44681,68081.55319,,,,,,,42308,34221.3617,50394.6383,,,,69328,60937.53192,77718.46809,,,,,,0.564231738,2240,3970,,,29.20680989,,,,,0.203636304,,61271,,,9.339975093,15,1606,,,,,,,,,,,,,,,,,,,,,,,,,,20.61763578,34,157805,13.91063228,29.43295708,21.5455784,,,,,,,,,,,,,27.00520519,17.94476273,39.03004047,,,,18.37711099,29,157805,12.30743965,26.39259684,,,,,,,,,,,,,20.28243288,12.99533745,30.1786524,,,,14.90838122,33,221352,10.26224365,20.93691011,,,,,,,28.85378345,14.90917096,50.40175298,,,,11.42575365,6.879050078,17.84272966,,,,,,2800,,,36,-888,0.66988379,17005,25385,,,0.679,,,,,19.71632589,,,,,0.757035276,9550,12615,0.727443841,0.78662671,0.087930319,1060,12055,0.064974881,0.110885758,0.790091161,9967,12615,0.755770707,0.824411615,31589,,,,,0.196840672,6218,31589,,,0.224191966,7082,31589,,,0.181328944,5728,31589,,,0.008832188,279,31589,,,0.006078065,192,31589,,,0.000443192,14,31589,,,0.029187375,922,31589,,,0.748456741,23643,31589,,,0.002653322,79,29774,0,0.007525471,0.520719238,16449,31589,,,0.62366244,19525,31307,, -51,011,51011,VA,Appomattox County,2024,1,8066.824582,259,43945,6447.918463,9685.730701,0,,,,2,,,,2,8987.713314,5326.688521,14204.46187,1,,,,2,7534.922254,5790.640112,9279.204396,,,,,2,,0.174,,,0.149,0.202,3.969087382,,,3.184254887,4.906083045,5.356125738,,,4.32059375,6.499767634,0.090242113,123,1363,0.075030485,0.105453741,0,,,,,,,0.165322581,0.1190892,0.211555961,,,,0.073515551,0.057811668,0.089219435,,,,,,,0.189,,,0.154,0.228,0.399,,,0.321,0.478,8.8,0.020415934,0.089,,,0.252,,,0.207,0.301,0.562876109,9073,16119,,,0.159084222,,,0.125978111,0.196498989,0.1875,3,16,0.067648579,0.337423465,354.7,58,16353,,,25.24768297,79,3129,19.98882837,31.46614611,,,,,,,29.49852507,18.01846547,45.5580795,,,,23.48249889,17.59000307,30.71568672,,,,,,,0.101964743,1313,12877,0.087666871,0.116262616,0.000122302,2,16353,,,8176.5,5.97086E-05,1,16748,,,16748,0.000477669,8,16748,,,2093.5,2447,,,,,,,3527,,2262,0.34,,,,,,,0.32,,0.34,0.52,,,,,,,0.42,,0.54,0.899138456,10332,11491,0.87368587,0.924591042,0.600474684,2277,3792,0.509530426,0.691418941,0.032041416,229,7147,,,0.161,580,,0.101425532,0.220574468,,,,,,,0.517184943,0.367427669,0.666942216,0.070866142,0,0.398918392,0.078817734,0.030712264,0.126923204,4.574635379,112289,24546,3.663805669,5.485465089,0.245984784,873,3549,0.156800269,0.3351693,17.73374916,29,16353,,,82.67672149,66,79829,63.94217041,105.1850611,,,,,,,88.46546444,47.104134,151.2786384,,,,82.95245686,61.76355271,109.0671612,,,,7.3,,,,,0,,,,,0.090909091,560,6160,0.061702657,0.120115525,0.070909091,0.044398929,0.097419252,0.01948052,0.003366378,0.035594661,0.002272727,0,0.005273737,0.854741266,6508,7614,0.809232613,0.900249919,,,,,,,,,,,,,0.768292683,0.67575381,0.860831556,0.459,,7614,0.392255323,0.525744678,77.59191317,,,76.20241118,78.98141516,,,,,,,77.86352754,73.62609933,82.10095575,,,,77.69475827,76.22570504,79.1638115,,,,406.7708905,259,43945,353.8125748,459.7292062,,,,,,,421.8617257,307.7088375,564.4841801,,,,399.7440644,340.6368207,458.851308,,,,80.04802882,12,14991,41.36198458,139.827797,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.118,,,0.102,0.136,0.177,,,0.154,0.202,0.105,,,0.09,0.121,145.2,20,13774,,,0.089,1420,,,,0.020415934,305.6877732,14973,,,,,,,,,,,,,,,,,,,,,,,,,,0.374,,,0.357,0.389,0.117672184,1102,9365,0.098608354,0.136736013,0.061463149,226,3677,0.04239932,0.080526979,0.000298543,5,16748,,,3349.6,0.925,160.025,173,,,,,,,,3.033219623,,,,,,,2.939531762,,3.18427625,,,,,,,,,,,0.00206839,,,,,208.4199,,,,,0.720105173,39438,54767,0.608786964,0.831423382,62375,,,55242.74468,69507.25532,,,,,,,42278,36407.53192,48148.46809,78654,67977.06383,89330.93617,63481,54691.38298,72270.61702,,,,,,0.471343028,1102,2338,,,5.896933327,,,,,0.21002004,,62375,,,6.147540984,6,976,,,,,,,,,,,,,,,,,,,,,,,,,,20.59372643,15,79829,11.25878188,34.55277367,18.79016398,,,,,,,,,,,,,20.69145151,10.32909805,37.02272233,,,,15.03213118,12,79829,7.767321536,26.25810802,,,,,,,,,,,,,,,,,,,19.87030113,22,110718,12.45261193,30.0838747,,,,,,,,,,,,,16.44311856,8.989605925,27.58875892,,,,,,1500,,,22,-888,0.754723127,9268,12280,,,0.647,,,,,7.447349341,,,,,0.777811783,5083,6535,0.740072004,0.815551561,0.073503164,453,6163,0.047389455,0.099616874,0.782402448,5113,6535,0.741639556,0.823165341,16748,,,,,0.218414139,3658,16748,,,0.211308813,3539,16748,,,0.175603057,2941,16748,,,0.004358729,73,16748,,,0.004000478,67,16748,,,0.000776212,13,16748,,,0.024301409,407,16748,,,0.767733461,12858,16748,,,0.000327912,5,15248,0,0.006731159,0.507762121,8504,16748,,,1,16119,16119,, -51,013,51013,VA,Arlington County,2024,1,3313.824827,1296,678221,3052.817058,3574.832596,0,,,,2,2590.312255,1913.09358,3267.53093,,7480.947676,6276.638043,8685.257309,,3761.445987,3040.281406,4482.610569,,2546.975607,2257.279883,2836.671331,,,,,2,,0.1,,,0.084,0.119,2.588261478,,,2.025461915,3.188629012,4.038483099,,,3.348242536,4.733853997,0.067212096,1298,19312,0.063680609,0.070743583,0,,,,0.07911618,0.069128898,0.089103462,0.092039801,0.077910057,0.106169545,0.063682387,0.055869923,0.071494852,0.062353052,0.057757087,0.066949017,,,,0.045454546,0.022191441,0.06871765,0.079,,,0.059,0.104,0.239,,,0.198,0.285,9.3,0.000781377,0.075,,,0.142,,,0.116,0.172,1,238643,238643,,,0.217234325,,,0.183234211,0.257211931,0.230769231,6,26,0.129644728,0.34280412,390.2,909,232965,,,6.681852696,220,32925,5.798891479,7.564813913,,,,,,,3.93907563,2.204670728,6.496906216,23.87934646,20.3001919,27.45850102,1.368070426,0.867239296,2.052777355,,,,,,,0.050433144,10386,205936,0.043284208,0.05758208,0.000772648,180,232965,,,1294.25,0.000722222,169,234000,,,1384.615385,0.002679487,627,234000,,,373.2057416,1629,,,,,,897,3545,1038,1407,0.4,,,,,,0.36,0.28,0.33,0.42,0.53,,,,,,0.54,0.38,0.42,0.55,0.953137636,165011,173124,0.947305064,0.958970207,0.918485686,85376,92953,0.893709035,0.943262338,0.020762634,3261,157061,,,0.071,2985,,0.043595745,0.098404255,,,,0.110829103,0.033905608,0.187752599,0.21628131,0.116476566,0.316086054,0.127160353,0.082672341,0.171648364,0.022538222,0.011507623,0.033568821,,,,,,0.161524203,6884,42619,0.13516312,0.187885285,14.68031679,342,232965,,,29.51593861,349,1182412,26.41923275,32.61264447,,,,17.17113376,10.76105811,25.99730287,49.58495556,37.2497447,64.6976111,23.83222116,17.31652838,31.99364453,30.43382027,26.4121987,34.45544185,,,,8,,,,,0,,,,,0.155379587,16875,108605,0.145244188,0.165514985,0.12438694,0.11455734,0.13421654,0.034528797,0.029551063,0.039506531,0.007228028,0.003807611,0.010648445,0.411167924,60954,148246,0.397734868,0.424600979,,,,0.489107152,0.452240777,0.525973528,0.614493468,0.581144101,0.647842836,0.529909521,0.497220357,0.562598685,0.451939644,0.439137809,0.46474148,0.411,,148246,0.387289661,0.434710339,84.71797115,,,84.24248374,85.19345856,,,,86.95134291,85.1998861,88.70279971,77.72923521,76.37691343,79.081557,89.62117936,86.8084595,92.43389922,85.20531828,84.67296547,85.7376711,,,,184.5345911,1296,678221,174.4056079,194.6635743,,,,161.42209,130.2303393,192.6138408,428.1785677,378.4080959,477.9490395,167.9819051,142.121658,193.8421523,153.0730573,141.6345586,164.511556,,,,29.5916885,55,185863,22.29250952,38.51765008,,,,,,,,,,45.45110219,26.9372037,71.83233661,18.25428215,10.8186445,28.84963569,,,,2.6909852,54,20067,2.021550903,3.511151961,,,,,,,,,,,,,,,,,,,,,,0.071,,,0.06,0.083,0.117,,,0.101,0.136,0.076,,,0.065,0.088,591.8,1195,201933,,,0.075,17570,,,,0.000781377,162.2350546,207627,,,11.26878013,80,709926,8.935441805,14.02497232,,,,,,,39.17786752,25.59228379,57.40465325,9.059448098,4.3443575,16.66064761,8.787874583,6.218823083,12.06204446,,,,0.284,,,0.272,0.297,0.055875315,9106,162970,0.047534889,0.06421574,0.03101712,1386,44685,0.021485205,0.040549035,0.000957265,224,234000,,,1044.642857,0.91,1562.47,1717,,,0.069119145,543,7856,0.032108343,0.106129946,3.455787774,,,,,,,2.991090321,2.884782359,3.806068386,,,,,,,,,,,0.089637942,,,,,5374.801,,,,,0.851868183,94663,111124,0.811192869,0.892543497,131020,,,124193.9575,137846.0426,93380,37086.89362,149673.1064,114051,103290.6596,124811.3404,76064,63633.19149,88494.80851,89602,79595.87234,99608.12766,157754,153072.6383,162435.3617,,,,,,0.3,7962,26540,,,50.14788595,,,,,0.366623416,,131020,,,6.236381396,83,13309,,,1.157389076,19,1641626,0.69682383,1.807406411,,,,,,,,,,,,,,,,,,,6.625472077,79,1182412,5.211354082,8.305086621,6.681258309,,,,,,,,,,,,,7.85337593,5.916237517,10.22224825,,,,3.12919693,37,1182412,2.203243418,4.313185771,,,,,,,,,,,,,3.043382027,1.907271314,4.607716964,,,,2.863015084,47,1641626,2.103635796,3.807203123,,,,,,,,,,6.252246901,3.573699319,10.15325726,2.376917752,1.522936054,3.536665204,,,,6.704545455,,17600,,,108,10,0.77154913,130739,169450,,,0.735,,,,,540.0021702,,,,,0.422430041,46842,110887,0.410103924,0.434756159,0.13606802,14771,108556,0.124793445,0.147342596,0.939884748,104221,110887,0.933879477,0.945890018,234000,,,,,0.180606838,42262,234000,,,0.119769231,28026,234000,,,0.099649573,23318,234000,,,0.007025641,1644,234000,,,0.112683761,26368,234000,,,0.001448718,339,234000,,,0.155982906,36500,234000,,,0.598735043,140104,234000,,,0.035874902,8001,223025,0.030722839,0.041026965,0.495991453,116062,234000,,,0,0,238643,, -51,015,51015,VA,Augusta County,2024,1,7694.878718,1097,208116,6831.280022,8558.477414,0,,,,2,,,,2,4751.051453,3044.088314,7069.187961,1,8279.223272,4984.633245,12929.03271,1,7868.910689,6934.95116,8802.870219,,,,,2,,0.152,,,0.126,0.178,3.8211562,,,3.057691997,4.655698911,5.448457375,,,4.48279961,6.451719189,0.071997875,271,3764,0.063740051,0.080255698,0,,,,,,,0.13,0.064084527,0.195915473,0.092485549,0.049314089,0.135657009,0.068043036,0.05962657,0.076459501,,,,,,,0.176,,,0.137,0.215,0.364,,,0.299,0.429,8.5,0.075045913,0.077,,,0.23,,,0.187,0.275,0.542620052,42046,77487,,,0.173556163,,,0.140302379,0.210157118,0.236842105,18,76,0.17815724,0.299055566,255.3,198,77563,,,12.26561399,174,14186,10.44310054,14.08812743,,,,,,,,,,,,,12.83811062,10.84257896,14.83364228,,,,,,,0.087336546,5056,57891,0.074230163,0.100442929,0.000528603,41,77563,,,1891.780488,0.00035868,28,78064,,,2788,0.00081984,64,78064,,,1219.75,2142,,,,,,,2042,,2119,0.5,,,,,,,0.58,,0.5,0.54,,,,,,,0.49,,0.54,0.898679648,51320,57106,0.885683491,0.911675806,0.519946092,9645,18550,0.470381647,0.569510536,0.025964508,992,38206,,,0.101,1411,,0.065255319,0.136744681,,,,,,,0.398550725,0.149256083,0.647845366,0.468427095,0.338585523,0.598268668,0.092048153,0.058446993,0.125649313,3.784651782,127978,33815,3.504816028,4.064487535,0.173957975,2525,14515,0.124826101,0.223089848,13.02167271,101,77563,,,84.414594,321,380266,75.17993015,93.64925784,,,,,,,,,,,,,89.52838662,79.51346299,99.54331025,,,,7.1,,,,,0,,,,,0.089673463,2705,30165,0.071940228,0.107406697,0.075133869,0.059835993,0.090431744,0.008785016,0.002495449,0.015074583,0.007127466,0.002923269,0.011331662,0.845863852,31412,37136,0.827485543,0.864242161,,,,,,,0.775689223,0.657289887,0.894088559,0.770382696,0.666899509,0.873865882,0.84982365,0.821263274,0.878384026,0.313,,37136,0.280045033,0.345954967,78.56189156,,,77.83219357,79.29158955,,,,,,,80.7585211,77.23048179,84.2865604,77.83206326,72.97778699,82.68633952,78.41190111,77.63929463,79.18450758,,,,355.7140811,1097,208116,332.5865463,378.841616,,,,,,,357.3960297,252.9147017,490.5539739,447.9578153,265.4881914,707.9664743,358.0976158,333.6459265,382.5493051,,,,51.84766214,33,63648,35.68954496,72.8133944,,,,,,,,,,,,,54.73553614,36.92983638,78.13838128,,,,5.070993915,20,3944,3.097494824,7.831738819,,,,,,,,,,,,,,,,,,,,,,0.11,,,0.093,0.128,0.174,,,0.15,0.2,0.094,,,0.079,0.11,116.8,79,67640,,,0.077,5900,,,,0.075045913,5534.636103,73750,,,14.36875449,33,229665,9.890789442,20.17907355,,,,,,,,,,,,,14.54693569,9.814756422,20.76665522,,,,0.347,,,0.33,0.364,0.099636765,4334,43498,0.084147403,0.115126127,0.051629898,784,15185,0.036140536,0.06711926,0.00163968,128,78064,,,609.875,0.92,745.2,810,,,0.087057458,300,3446,0.040847987,0.133266929,3.036321107,,,,,,,,2.869758905,3.058103017,,,,,,,,,,,0.038269204,,,,,4309.425,,,,,0.849550748,46614,54869,0.792826221,0.906275276,77487,,,69629.12766,85344.87234,,,,,,,59125,31438.3617,86811.6383,50428,33931.82979,66924.17021,76893,72749,81037,,,,,,0.407493202,4046,9929,,,50.60112454,,,,,0.233471421,,77487,,,5.681818182,20,3520,,,1.88829953,10,529577,0.905513022,3.472650066,,,,,,,,,,,,,,,,,,,21.31325021,84,380266,16.76422332,26.7163437,22.0898003,,,,,,,,,,,,,23.96774338,18.81983364,30.08930698,,,,14.72653353,56,380266,11.12426517,19.12362873,,,,,,,,,,,,,16.03928751,12.08298639,20.87733736,,,,16.99469577,90,529577,13.66574231,20.88936638,,,,,,,,,,,,,17.32400481,13.79847313,21.47571045,,,,15.65217391,,6900,,,97,11,0.699851018,42278,60410,,,0.718,,,,,17.50940258,,,,,0.787297046,23663,30056,0.767024512,0.807569579,0.083339033,2437,29242,0.065374019,0.101304047,0.845322066,25407,30056,0.825899285,0.864744846,78064,,,,,0.181453679,14165,78064,,,0.228684157,17852,78064,,,0.046538737,3633,78064,,,0.002959111,231,78064,,,0.007327321,572,78064,,,0.00035868,28,78064,,,0.038801496,3029,78064,,,0.889936462,69472,78064,,,0.0077993,577,73981,0.004315498,0.011283102,0.490956139,38326,78064,,,0.842644573,65294,77487,, -51,017,51017,VA,Bath County,2024,1,8875.044392,90,10858,5561.94307,13436.92387,1,,,,2,,,,2,,,,2,,,,2,8640.093194,5277.593387,13343.92319,1,,,,2,,0.199,,,0.168,0.235,4.545053031,,,3.661707824,5.475215311,5.954146332,,,4.819101294,7.035613049,0.05923345,17,287,0.031922326,0.086544573,1,,,,,,,,,,,,,0.062043796,0.033479649,0.090607942,,,,,,,0.217,,,0.173,0.264,0.407,,,0.324,0.488,7.1,0.104824768,0.127,,,0.267,,,0.217,0.32,1,4209,4209,,,0.14277642,,,0.112647584,0.174202225,0.25,1,4,0.023230216,0.544021398,243.1,10,4114,,,32.62642741,20,613,19.92906947,50.38887097,,,,,,,,,,,,,36.900369,22.53970403,56.98962713,,,,,,,0.084555063,248,2933,0.070257191,0.098852935,,0,4114,,,,0.000493949,2,4049,,,2024.5,0.000246975,1,4049,,,4049,3687,,,,,,,,,3799,0.44,,,,,,,,,0.43,0.4,,,,,,,0.5,,0.4,0.860428971,2768,3217,0.766662791,0.954195152,0.66962306,604,902,0.429325814,0.909920306,0.024596774,61,2480,,,0.153,98,,0.098191489,0.207808511,,,,,,,,,,,,,0.295302013,0.06125328,0.529350747,5.556081609,113833,20488,2.708158772,8.404004446,0.218068536,140,642,0.019368888,0.416768184,12.15362178,5,4114,,,114.4546712,24,20969,73.33326747,170.2994783,,,,,,,,,,,,,125.1564456,80.19009624,186.2228702,,,,6.1,,,,,0,,,,,0.112021858,205,1830,0.034160472,0.189883244,0.092896175,0.016525836,0.169266513,0.010928962,0,0.036366098,0.008196721,0,0.025366081,0.87746806,1511,1722,0.781679858,0.973256263,,,,,,,,,,,,,0.876647338,0.805582578,0.947712098,0.303,,1722,0.145962787,0.460037213,75.7309724,,,72.9619381,78.50000669,,,,,,,,,,,,,75.8556896,73.019208,78.6921712,,,,438.8004399,90,10858,342.0664698,554.3979577,,,,,,,,,,,,,422.9055331,325.6887925,540.0409245,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.135,,,0.115,0.157,0.19,,,0.164,0.217,0.113,,,0.096,0.131,,,,,,0.127,540,,,,0.104824768,495.9259794,4731,,,,,,,,,,,,,,,,,,,,,,,,,,0.365,,,0.347,0.382,0.093339176,213,2282,0.076658325,0.110020027,0.057101025,39,683,0.038037195,0.076164855,0.001234873,5,4049,,,809.8,,,,,,,,,,,2.866002005,,,,,,,,,2.810310998,,,,,,,,,,,,,,,,5135.318,,,,,1.442706554,59125,40982,0.421854298,2.46355881,59763,,,50660.02128,68865.97872,,,,,,,,,,,,,56335,43862.48936,68807.51064,,,,,,0.579681275,291,502,,,,,,,,0.292271138,,59763,,,5.524861879,1,181,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,300,,,-888,0,0.705500705,2501,3545,,,0.404,,,,,1.977168377,,,,,0.711286089,1355,1905,0.623229374,0.799342805,0.15497076,265,1710,0.060979986,0.248961535,0.730708661,1392,1905,0.586364085,0.875053238,4049,,,,,0.162262287,657,4049,,,0.295875525,1198,4049,,,0.037046184,150,4049,,,0.002469746,10,4049,,,0.00543344,22,4049,,,0,0,4049,,,0.023956533,97,4049,,,0.9155347,3707,4049,,,0.004030227,16,3970,0,0.02209681,0.486292912,1969,4049,,,1,4209,4209,, -51,019,51019,VA,Bedford County,2024,1,7508.793294,1221,217607,6765.071723,8252.514865,0,,,,2,,,,2,7770.148455,5442.116452,10757.16068,,,,,2,7823.896419,6996.923632,8650.869205,,,,,2,,0.139,,,0.116,0.166,3.556397853,,,2.799847733,4.379431965,5.120955483,,,4.213934706,6.07823753,0.07096635,329,4636,0.063574957,0.078357744,0,,,,,,,0.111764706,0.078273332,0.14525608,,,,0.069904341,0.062077229,0.077731454,,,,,,,0.153,,,0.119,0.195,0.357,,,0.297,0.422,9.2,0.014753635,0.074,,,0.207,,,0.169,0.255,0.558015152,44341,79462,,,0.170409299,,,0.13755695,0.205443078,0.337837838,25,74,0.27843433,0.397253422,207.2,166,80131,,,12.93911739,207,15998,11.17642897,14.70180581,,,,,,,16.11459266,9.550528899,25.46800382,,,,12.91663574,10.99738879,14.83588269,,,,,,,0.075190151,4666,62056,0.064466747,0.085913555,0.000748774,60,80131,,,1335.516667,0.00033396,27,80848,,,2994.37037,0.001137938,92,80848,,,878.7826087,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.924129503,53691,58099,0.912053003,0.936206004,0.685838569,11352,16552,0.632623667,0.739053472,0.028644077,1104,38542,,,0.099,1513,,0.057297872,0.140702128,,,,0.365217391,0.041551023,0.688883759,0.518808777,0.240171349,0.797446206,0.004823151,0,0.090181249,0.113834247,0.07288348,0.154785014,3.907608234,138005,35317,3.600648498,4.21456797,0.163538531,2553,15611,0.118015661,0.209061401,13.35313424,107,80131,,,90.48172674,358,395660,81.10879535,99.85465813,,,,,,,65.26468455,38.67998833,103.1463389,,,,96.73665395,86.37748946,107.0958184,,,,7.6,,,,,0,,,,,0.078599841,2470,31425,0.066293301,0.090906381,0.061028352,0.048916995,0.073139709,0.015910899,0.009615673,0.022206125,0.005568815,0.001167971,0.009969658,0.81920873,29879,36473,0.796092119,0.842325341,,,,,,,0.724003466,0.595999029,0.852007904,,,,0.745509642,0.69933488,0.791684404,0.407,,36473,0.376716475,0.437283525,77.83978459,,,77.22174331,78.45782586,,,,,,,76.38274233,74.19456379,78.57092087,106.2899085,70.15478579,142.4250313,77.55868288,76.8886086,78.22875716,,,,362.2229745,1221,217607,339.7247237,384.7212253,,,,,,,419.7931206,333.8739268,521.0739505,,,,370.1106891,345.7273517,394.4940265,,,,37.80443475,26,68775,24.69511191,55.39225603,,,,,,,,,,,,,42.0425681,26.93746668,62.55600875,,,,5.694261936,26,4566,3.71968095,8.343413071,,,,,,,,,,,,,5.464480874,3.424561071,8.273289714,,,,,,,0.103,,,0.087,0.121,0.165,,,0.142,0.191,0.086,,,0.072,0.099,92.1,64,69484,,,0.074,5890,,,,0.014753635,1105.017782,74898,,,22.18139358,53,238939,16.61538591,29.01380893,,,,,,,,,,,,,23.95496467,17.7798365,31.58163453,,,,0.338,,,0.319,0.354,0.086595059,4031,46550,0.073488676,0.099701442,0.042756938,701,16395,0.030842045,0.054671832,0.000457649,37,80848,,,2185.081081,0.89,731.58,822,,,,,,,,3.109782242,,,,,,,2.424441479,3.002623594,3.176600967,,,,,,,,,,,0.034063115,,,,,2804.497,,,,,0.772624844,49030,63459,0.717740211,0.827509478,71135,,,64913.04255,77356.95745,58958,36353.06383,81562.93617,,,,65042,47091.02128,82992.97872,66250,49204.55319,83295.44681,75972,71966.21277,79977.78723,,,,,,0.44065642,3813,8653,,,35.64419557,,,,,0.201700991,,71135,,,7.107709131,26,3658,,,3.083374445,17,551344,1.79617924,4.936781178,,,,,,,,,,,,,2.895547269,1.583022636,4.858236306,,,,18.65586921,80,395660,14.54316528,23.57056842,20.21938028,,,,,,,,,,,,,20.66145358,16.01234273,26.23931569,,,,15.67001971,62,395660,12.01411426,20.08825807,,,,,,,,,,,,,17.32596787,13.22153876,22.30195506,,,,15.59824719,86,551344,12.47658436,19.26370839,,,,,,,,,,,,,15.92550998,12.56816343,19.90415501,,,,12.89473684,,7600,,,84,14,0.779639568,48669,62425,,,0.709,,,,,14.40052385,,,,,0.842509997,27390,32510,0.826608092,0.858411902,0.077457298,2476,31966,0.063545701,0.091368896,0.850353737,27645,32510,0.835892625,0.864814849,80848,,,,,0.19184148,15510,80848,,,0.233203048,18854,80848,,,0.068993667,5578,80848,,,0.004242529,343,80848,,,0.014508708,1173,80848,,,0.000321591,26,80848,,,0.027533149,2226,80848,,,0.868951613,70253,80848,,,0.004276924,326,76223,0.001344969,0.00720888,0.502708787,40643,80848,,,0.707344391,56207,79462,, -51,021,51021,VA,Bland County,2024,1,9465.160376,139,16782,7144.517021,11785.80373,0,,,,2,,,,2,,,,2,,,,2,9026.540249,6696.134494,11356.946,,,,,2,,0.164,,,0.137,0.193,3.879996365,,,3.034634945,4.832246538,5.343096056,,,4.230504832,6.507892574,0.101010101,30,297,0.066738243,0.13528196,0,,,,,,,,,,,,,0.100346021,0.065704657,0.134987385,,,,,,,0.192,,,0.152,0.234,0.359,,,0.277,0.442,8.2,0.051961147,0.098,,,0.236,,,0.19,0.285,0.899521531,5640,6270,,,0.171201121,,,0.13526417,0.210192876,0,0,7,0,0.25576943,113.4,7,6173,,,14.78352693,14,947,8.082291738,24.80424617,,,,,,,,,,,,,14.73922903,7.848018697,25.20453052,,,,,,,0.076221016,309,4054,0.064306123,0.08813591,,0,6173,,,,0.000487964,3,6148,,,2049.333333,0.000813273,5,6148,,,1229.6,2905,,,,,,,,,2612,0.41,,,,,,,,,0.42,0.41,,,,,,,,,0.41,0.91951952,4593,4995,0.891443166,0.947595873,0.417624521,763,1827,0.283518164,0.551730878,0.02889761,81,2803,,,0.167,145,,0.102659575,0.231340426,,,,,,,,,,,,,0.132723112,0.019977526,0.245468698,3.479795723,109022,31330,2.373640744,4.585950702,0.175789474,167,950,0,0.361234753,9.719747287,6,6173,,,98.93090793,31,31335,67.21875213,140.4245269,,,,,,,,,,,,,95.56966346,63.50534731,138.1247728,,,,6.8,,,,,0,,,,,0.083870968,195,2325,0.042422951,0.125318985,0.077321814,0.031996481,0.122647148,0.015053763,0,0.040584429,0,0,0.013045319,0.807641634,1839,2277,0.737932446,0.877350821,,,,,,,,,,,,,0.883663366,0.784519461,0.982807272,0.326,,2277,0.22238837,0.42961163,75.7430794,,,73.78527766,77.70088113,,,,,,,,,,,,,75.823992,73.83132563,77.81665836,,,,516.5068957,139,16782,425.0401239,607.9736675,,,,,,,,,,,,,500.390387,408.0027245,592.7780495,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.115,,,0.098,0.134,0.172,,,0.147,0.198,0.097,,,0.082,0.113,143.8,8,5562,,,0.098,620,,,,0.051961147,354.5828689,6824,,,,,,,,,,,,,,,,,,,,,,,,,,0.361,,,0.343,0.377,0.08622868,273,3166,0.070739318,0.101718041,0.044444444,42,945,0.030146572,0.058742317,0.002927781,18,6148,,,341.5555556,0.925,61.05,66,,,,,,,,3.176510484,,,,,,,,,3.195241293,,,,,,,,,,,0.042485608,,,,,150.0967,,,,,1.068659542,54196,50714,0.597110338,1.540208746,55722,,,48194.17021,63249.82979,,,,,,,,,,,,,60101,56623.04255,63578.95745,,,,,,0.488178025,351,719,,,,,,,,0.22391515,,55722,,,7.604562738,2,263,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,500,,,-888,0,0.656415094,3479,5300,,,0.522,,,,,12.00207917,,,,,0.851901566,1904,2235,0.791978243,0.911824889,0.079241614,163,2057,0.027856004,0.130627224,0.636241611,1422,2235,0.567997642,0.70448558,6148,,,,,0.14281067,878,6148,,,0.253903709,1561,6148,,,0.041802212,257,6148,,,0.001951854,12,6148,,,0.005692908,35,6148,,,0.000162655,1,6148,,,0.010735198,66,6148,,,0.930058556,5718,6148,,,0,0,5978,0,0.01514774,0.445022772,2736,6148,,,1,6270,6270,, -51,023,51023,VA,Botetourt County,2024,1,6831.161106,502,91505,5757.565803,7904.756409,0,,,,2,,,,2,15791.27549,8159.582478,27584.18035,1,,,,2,6758.861094,5630.708085,7887.014103,,,,,2,,0.136,,,0.113,0.161,3.363942128,,,2.615160477,4.175596449,4.806711538,,,3.869794004,5.8086204,0.066091954,115,1740,0.054418274,0.077765635,0,,,,,,,,,,,,,0.063701923,0.051967473,0.075436373,,,,,,,0.156,,,0.119,0.195,0.326,,,0.26,0.397,8.4,0.108473376,0.064,,,0.199,,,0.158,0.245,0.669663055,22498,33596,,,0.171798975,,,0.138508287,0.210499018,0.25,8,32,0.157795866,0.348940352,209.6,71,33866,,,9.028309105,59,6535,6.872767196,11.64586096,,,,,,,,,,,,,9.17743032,6.894368112,11.97455581,,,,,,,0.062073223,1609,25921,0.052541308,0.071605137,0.000561035,19,33866,,,1782.421053,0.000292954,10,34135,,,3413.5,0.000498023,17,34135,,,2007.941177,2012,,,,,,,,,2009,0.45,,,,,,,0.57,,0.45,0.47,,,,,,,0.39,,0.47,0.935920614,23296,24891,0.919874219,0.951967009,0.647144949,4420,6830,0.565369,0.728920897,0.025501838,451,17685,,,0.077,473,,0.047212766,0.106787234,,,,,,,,,,,,,0.083063646,0.046463568,0.119663724,3.885689065,140864,36252,3.349727949,4.421650182,0.137025317,866,6320,0.084787379,0.189263254,18.01216559,61,33866,,,87.82044006,147,167387,73.62355674,102.0173234,,,,,,,,,,,,,89.08455932,74.22113199,103.9479867,,,,7.2,,,,,0,,,,,0.071753986,945,13170,0.051058302,0.092449671,0.06097561,0.04013759,0.081813629,0.005998481,0.000117286,0.011879677,0.006757783,0.001540163,0.011975403,0.817147912,12933,15827,0.783824077,0.850471747,,,,,,,,,,,,,0.772684399,0.740613128,0.80475567,0.348,,15827,0.309080041,0.386919959,78.29359074,,,77.37939415,79.20778734,,,,,,,,,,,,,78.3343156,77.38093982,79.28769137,,,,339.590797,502,91505,306.4210467,372.7605473,,,,,,,748.2292453,484.2145163,1104.533968,,,,332.1427508,298.0067577,366.278744,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.1,,,0.084,0.116,0.162,,,0.137,0.187,0.085,,,0.072,0.1,101.4,30,29591,,,0.064,2160,,,,0.108473376,3595.675468,33148,,,26.75439466,27,100918,17.63131466,38.92623957,,,,,,,,,,,,,27.87307033,18.20761494,40.84050609,,,,0.346,,,0.327,0.364,0.070674083,1385,19597,0.058759189,0.082588976,0.036594474,245,6695,0.02467958,0.048509367,0.000703091,24,34135,,,1422.291667,0.93,363.63,391,,,,,,,,3.279340648,,,,,,,,2.827849228,3.319103283,,,,,,,,,,,0.042210638,,,,,3953.684,,,,,0.76233855,46864,61474,0.643591692,0.881085408,81122,,,72150.08511,90093.91489,49205,47370.10638,51039.89362,,,,50625,21316.74468,79933.25532,,,,78491,72232.10638,84749.89362,,,,,,0.286289421,1280,4471,,,20.89101508,,,,,0.192253643,,81122,,,11.69993118,17,1453,,,,,,,,,,,,,,,,,,,,,,,,,,15.72765774,28,167387,9.969985873,23.59920882,16.72770287,,,,,,,,,,,,,16.95011363,10.74491804,25.43349288,,,,14.33803103,24,167387,9.186647024,21.33385364,,,,,,,,,,,,,14.20188627,8.900246514,21.50182648,,,,9.830530208,23,233965,6.231712879,14.75062206,,,,,,,,,,,,,10.14694623,6.35903718,15.36259854,,,,17.5,,3200,,,31,25,0.78949729,21123,26755,,,0.733,,,,,25.13652659,,,,,0.866986683,11198,12916,0.83648036,0.897493006,0.086593718,1100,12703,0.061872231,0.111315205,0.856921648,11068,12916,0.833639792,0.880203503,34135,,,,,0.181426688,6193,34135,,,0.243767394,8321,34135,,,0.030789512,1051,34135,,,0.003544749,121,34135,,,0.009813974,335,34135,,,0.000351545,12,34135,,,0.022205947,758,34135,,,0.918734437,31361,34135,,,0.001298822,42,32337,0,0.005304882,0.500952102,17100,34135,,,0.594386237,19969,33596,, -51,025,51025,VA,Brunswick County,2024,1,10371.18069,370,43827,8477.675709,12264.68566,0,,,,2,,,,2,11324.43642,8646.043917,14002.82892,,,,,2,10281.51905,7262.594198,13300.44391,,,,,2,,0.228,,,0.196,0.266,4.407381077,,,3.557135964,5.371541382,5.476443287,,,4.425285702,6.752200991,0.143169399,131,915,0.12047503,0.165863768,0,,,,,,,0.192816635,0.159197496,0.226435774,,,,0.068767908,0.042217865,0.095317952,,,,,,,0.216,,,0.177,0.264,0.443,,,0.366,0.531,7.9,0.100651136,0.091,,,0.294,,,0.247,0.353,0.223610322,3544,15849,,,0.143565168,,,0.114513901,0.18021149,0.272727273,9,33,0.181168814,0.368649754,570.9,91,15940,,,26.07003891,67,2570,20.20392207,33.10802787,,,,,,,28.57142857,20.50335043,38.76036904,,,,20.47413793,12.3267685,31.97290256,,,,,,,0.099636792,1015,10187,0.08414743,0.115126154,0.000250941,4,15940,,,3985,0.00018843,3,15921,,,5307,0.000879342,14,15921,,,1137.214286,3846,,,,,,,5523,,2086,0.42,,,,,,,0.44,,0.41,0.48,,,,,,,0.41,,0.53,0.765208023,9233,12066,0.728149672,0.802266373,0.40953987,1700,4151,0.34004568,0.47903406,0.045524036,268,5887,,,0.281,705,,0.180914894,0.381085106,,,,,,,0.41521284,0.299431211,0.530994469,,,,0.112831858,0.036463479,0.189200238,4.536429831,100305,22111,3.721104919,5.351754744,0.442524116,1101,2488,0.32480026,0.560247972,8.78293601,14,15940,,,111.3365332,90,80836,89.52772049,136.8515016,,,,,,,107.1469281,78.72753258,142.4827,,,,118.196145,84.04901349,161.5780212,,,,7.8,,,,,0,,,,,0.114006515,700,6140,0.079591404,0.148421625,0.099412341,0.066770053,0.132054629,0.012214984,0.002879645,0.021550322,0.008143323,0.000881885,0.01540476,0.801536492,5008,6248,0.772333195,0.830739788,,,,,,,0.784447476,0.698630581,0.870264371,,,,0.784462617,0.681838494,0.88708674,0.508,,6248,0.415684561,0.600315439,74.54497885,,,73.06583977,76.02411793,,,,,,,72.59361867,70.57867039,74.60856694,,,,75.83200016,73.51631107,78.14768925,,,,541.8889149,370,43827,482.4053046,601.3725251,,,,,,,621.3298878,533.7338942,708.9258814,,,,496.9977498,406.2934979,587.7020017,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.134,,,0.116,0.155,0.18,,,0.156,0.207,0.14,,,0.121,0.163,416.2,59,14177,,,0.091,1460,,,,0.100651136,1754.751912,17434,,,39.41254564,19,48208,23.72892708,61.54757213,,,,,,,,,,,,,61.11224282,31.57758764,106.7507896,,,,0.409,,,0.393,0.422,0.11540933,898,7781,0.096345501,0.13447316,0.049276496,126,2557,0.033787134,0.064765858,0.00018843,3,15921,,,5307,0.925,106.375,115,,,,,,,,2.406295065,,,,,,,2.329906533,,2.754466996,,,,,,,,,,,0.036413048,,,,,-17564.99,,,,,0.782453057,36503,46652,0.640746311,0.924159803,49080,,,43020.08511,55139.91489,,,,,,,45154,35622.08511,54685.91489,53341,43862.70213,62819.29787,68845,60191.21277,77498.78723,,,,,,0.989429176,1404,1419,,,29.85444167,,,,,0.254217604,,49080,,,8.888888889,6,675,,,,,,,,,,,,,,,,,,,,,,,,,,13.08726858,11,80836,6.275853979,24.06795287,13.60779851,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,22.85171871,26,113777,14.92750135,33.48306256,,,,,,,25.84313219,14.77158298,41.9676276,,,,21.44128305,10.28192864,39.43128292,,,,,,1200,,,6,-888,0.588958874,7948,13495,,,0.536,,,,,8.793174806,,,,,0.732197891,4514,6165,0.699597313,0.764798469,0.099131944,571,5760,0.066661544,0.131602345,0.783292782,4829,6165,0.741144004,0.82544156,15921,,,,,0.160103009,2549,15921,,,0.224985868,3582,15921,,,0.528107531,8408,15921,,,0.004145468,66,15921,,,0.011305823,180,15921,,,0.000439671,7,15921,,,0.027824885,443,15921,,,0.415049306,6608,15921,,,0.001763553,27,15310,0,0.007990953,0.45744614,7283,15921,,,1,15849,15849,, -51,027,51027,VA,Buchanan County,2024,1,13005.30401,584,55338,11125.67054,14884.93748,0,,,,2,,,,2,,,,2,,,,2,13652.49618,11657.68473,15647.30762,,,,,2,,0.23,,,0.194,0.27,4.956667664,,,4.036401497,6.078580858,6.337766588,,,5.228096221,7.651791937,0.092964824,111,1194,0.076493622,0.109436026,0,,,,,,,,,,,,,0.094017094,0.077293618,0.11074057,,,,,,,0.261,,,0.211,0.309,0.405,,,0.331,0.486,6.7,0.0111253,0.188,,,0.294,,,0.24,0.348,0.263866372,5371,20355,,,0.14532875,,,0.117488166,0.180959511,0.1,2,20,0.019826373,0.233896636,161.5,32,19816,,,33.23345138,122,3671,27.33617336,39.13072939,,,,,,,,,,,,,36.76694014,30.2157399,43.31814038,,,,,,,0.109550562,1560,14240,0.092869711,0.126231413,0.000252321,5,19816,,,3963.2,0.000206697,4,19352,,,4838,0.000516743,10,19352,,,1935.2,4572,,,,,,,,,4594,0.32,,,,,,,,,0.32,0.33,,,,,,,,,0.33,0.742440919,11467,15445,0.708367827,0.776514012,0.480607083,2280,4744,0.386252391,0.574961774,0.047371734,301,6354,,,0.297,917,,0.187382979,0.406617021,,,,,,,,,,,,,0.378940924,0.307644639,0.45023721,4.614976806,83568,18108,3.792709742,5.437243869,0.273820259,911,3327,0.180551417,0.3670891,8.074283407,16,19816,,,115.1985255,120,104168,94.586894,135.8101569,,,,,,,,,,,,,121.5694618,99.81792516,143.3209983,,,,7.2,,,,,1,,,,,0.108222491,895,8270,0.076045871,0.140399111,0.097648515,0.065781365,0.129515665,0.007255139,0,0.016839455,0.008948005,0.001332561,0.016563449,0.861326443,5000,5805,0.824926101,0.897726784,,,,,,,,,,,,,0.879087708,0.851010278,0.907165137,0.459,,5805,0.377707588,0.540292412,72.00818412,,,70.69931776,73.31705049,,,,,,,,,,,,,71.51795475,70.16210665,72.87380286,,,,659.1229571,584,55338,600.7876983,717.4582159,,,,,,,,,,,,,680.1554093,619.1503783,741.1604403,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.152,,,0.13,0.176,0.209,,,0.181,0.238,0.124,,,0.106,0.144,80,14,17492,,,0.188,3870,,,,0.0111253,268.0974764,24098,,,30.92800287,19,61433,18.62067808,48.29790759,,,,,,,,,,,,,32.73830037,19.71059543,51.12491139,,,,0.4,,,0.381,0.416,0.125473912,1390,11078,0.105218593,0.145729231,0.054094441,181,3346,0.038605079,0.069583803,0.00134353,26,19352,,,744.3076923,0.93,198.09,213,,,0.303630363,276,909,0.161281245,0.445979481,3.061204753,,,,,,,,,3.05492945,,,,,,,,,,,0.049870933,,,,,-128.0293,,,,,0.8574,38583,45000,0.755802435,0.958997566,39652,,,34545.2766,44758.7234,,,,,,,,,,28906,1000.12766,56811.87234,39321,35910.95745,42731.04255,,,,,,0.920889988,2235,2427,,,,,,,,0.314662564,,39652,,,9.626955475,8,831,,,,,,,,,,,,,,,,,,,,,,,,,,19.03083412,22,104168,11.45780532,29.71900487,21.11972967,,,,,,,,,,,,,20.23557425,11.99288376,31.98093139,,,,19.19975424,20,104168,11.72770869,29.65246324,,,,,,,,,,,,,20.26157696,12.37629759,31.2923623,,,,26.15308271,39,149122,18.59739843,35.75212502,,,,,,,,,,,,,27.57333447,19.60733627,37.69365592,,,,12.94117647,,1700,,,16,6,0.56493617,9957,17625,,,0.454,,,,,3.868204995,,,,,0.816253002,6117,7494,0.784172431,0.848333574,0.110156138,769,6981,0.076571603,0.143740673,0.711502535,5332,7494,0.659255693,0.763749377,19352,,,,,0.170421662,3298,19352,,,0.24452253,4732,19352,,,0.043509715,842,19352,,,0.001911947,37,19352,,,0.004547334,88,19352,,,0.000155023,3,19352,,,0.011006614,213,19352,,,0.931893344,18034,19352,,,0.000927405,18,19409,0,0.00684877,0.480260438,9294,19352,,,1,20355,20355,, -51,029,51029,VA,Buckingham County,2024,1,10026.33654,316,47176,8138.508765,11914.16431,0,,,,2,,,,2,13473.14518,9254.325972,17691.96439,,,,,2,8878.196004,6679.016352,11077.37566,,,,,2,,0.218,,,0.188,0.252,4.382989387,,,3.549689343,5.341486131,5.31571967,,,4.312783224,6.428765123,0.078242229,73,933,0.061009889,0.09547457,0,,,,,,,0.128787879,0.088381163,0.169194595,,,,0.056603774,0.038644148,0.074563399,,,,,,,0.226,,,0.185,0.267,0.408,,,0.332,0.487,8.2,0.050087663,0.099,,,0.285,,,0.238,0.339,0.327151688,5504,16824,,,0.155483592,,,0.123454379,0.190578515,0.428571429,12,28,0.333260393,0.517981881,401.3,68,16947,,,13.84083045,36,2601,9.693947488,19.16154344,,,,,,,,,,,,,17.578125,11.58409514,25.57524899,,,,,,,0.104512856,1195,11434,0.089023495,0.120002218,0.000118015,2,16947,,,8473.5,0.000588859,10,16982,,,1698.2,0.000588859,10,16982,,,1698.2,3067,,,,,,,3433,,2953,0.45,,,,,,,0.56,,0.41,0.37,,,,,,,0.38,,0.37,0.841286225,10596,12595,0.814944246,0.867628203,0.443342152,2011,4536,0.363054511,0.523629792,0.039367638,254,6452,,,0.226,659,,0.139021277,0.312978723,,,,,,,0.271523179,0.142757072,0.400289286,,,,0.101010101,0.055067884,0.146952318,4.590878745,110025,23966,3.598691565,5.583065925,0.253395164,765,3019,0.14912679,0.357663538,11.80149879,20,16947,,,101.9606924,87,85327,81.66633485,125.7681374,,,,,,,123.0055528,85.67787447,171.0709474,,,,95.48727155,70.87249344,125.8880635,,,,7.4,,,,,0,,,,,0.145378151,865,5950,0.108352098,0.182404205,0.132653061,0.094293354,0.171012768,0.012605042,0.001394053,0.023816031,0.004033613,0,0.008595663,0.813242784,5269,6479,0.771391364,0.855094205,,,,,,,,,,,,,0.800394477,0.724947485,0.875841469,0.622,,6479,0.536718988,0.707281012,75.93381945,,,74.43131788,77.43632102,,,,,,,74.41628839,71.1562064,77.67637038,,,,76.29204175,74.54884624,78.03523727,,,,461.6404958,316,47176,407.3607396,515.920252,,,,,,,541.9650447,434.2032634,649.726826,,,,432.1429176,367.3596291,496.926206,,,,90.25949605,12,13295,46.63839871,157.6651752,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.134,,,0.117,0.155,0.182,,,0.158,0.208,0.129,,,0.112,0.149,378.1,56,14809,,,0.099,1660,,,,0.050087663,858.8030679,17146,,,,,,,,,,,,,,,,,,,,,,,,,,0.388,,,0.375,0.401,0.119415301,1013,8483,0.099159982,0.13967062,0.0625,194,3104,0.042244681,0.082755319,0.000588859,10,16982,,,1698.2,0.875,129.5,148,,,0.270234987,207,766,0.093857346,0.446612628,2.563703889,,,,,,,2.327318015,,2.772029016,,,,,,,,,,,0.00613841,,,,,-1921.94,,,,,0.788947798,38690,49040,0.669091821,0.908803774,55965,,,49484.48936,62445.51064,,,,,,,47143,27448.87234,66837.12766,,,,65446,58034.93617,72857.06383,,,,,,0.785825142,1519,1933,,,28.08027152,,,,,0.222942911,,55965,,,5.102040816,4,784,,,,,,,,,,,,,,,,,,,,,,,,,,14.94027039,14,85327,7.955064756,25.54831737,16.40746774,,,,,,,,,,,,,20.90078916,10.43359865,37.39728521,,,,17.57942972,15,85327,9.839073368,28.99459593,,,,,,,,,,,,,24.8266906,13.21916714,42.45439703,,,,37.6862328,45,119407,27.48859681,50.42714455,,,,,,,52.34688536,32.40354709,80.01777485,,,,31.46805309,19.9480463,47.2175303,,,,25,,1400,,,24,11,0.588844622,8129,13805,,,0.557,,,,,0.148786067,,,,,0.754832147,4452,5898,0.706618253,0.80304604,0.123187108,688,5585,0.08570748,0.160666737,0.688368939,4060,5898,0.638573371,0.738164507,16982,,,,,0.174832175,2969,16982,,,0.203980685,3464,16982,,,0.32381345,5499,16982,,,0.004475327,76,16982,,,0.004593099,78,16982,,,0.000294429,5,16982,,,0.026086445,443,16982,,,0.620127194,10531,16982,,,0.003730415,60,16084,0,0.009770003,0.441349664,7495,16982,,,1,16824,16824,, -51,031,51031,VA,Campbell County,2024,1,8109.605843,899,151041,7162.33224,9056.879447,0,,,,2,,,,2,9486.170217,6805.812523,12166.52791,,,,,2,8061.3519,6993.731913,9128.971887,,,,,2,,0.166,,,0.139,0.194,3.879058676,,,3.070409209,4.79442111,5.252317066,,,4.236777098,6.353717592,0.080244924,249,3103,0.070685977,0.089803872,0,,,,,,,0.155555556,0.122068411,0.1890427,,,,0.068,0.058131561,0.077868439,,,,,,,0.182,,,0.144,0.222,0.337,,,0.272,0.407,8.9,0.022319704,0.081,,,0.254,,,0.207,0.304,0.493554295,27489,55696,,,0.161467762,,,0.127527085,0.198101786,0.272727273,12,44,0.193946965,0.35487242,313.6,174,55492,,,16.48669495,171,10372,14.01558756,18.95780233,,,,,,,27.85145889,20.07288179,37.64708142,,,,14.81576913,12.10787705,17.52366122,,,,,,,0.083731618,3644,43520,0.071816724,0.095646511,0.000144165,8,55492,,,6936.5,0.000163218,9,55141,,,6126.777778,0.000253895,14,55141,,,3938.642857,2603,,,,,,,3337,,2450,0.39,,,,,,,0.43,,0.39,0.52,,,,,,0.64,0.49,,0.53,0.904803559,36203,40012,0.892015243,0.917591875,0.607179714,8237,13566,0.547831272,0.666528156,0.031110939,804,25843,,,0.159,1659,,0.103,0.215,,,,0.101123596,0,0.609131134,0.122213682,0.038102245,0.206325119,0.136801541,0,0.357492319,0.113086233,0.076582012,0.149590454,3.991078955,113634,28472,3.696575792,4.285582117,0.164772727,1798,10912,0.12410428,0.205441174,12.79463707,71,55492,,,86.69975042,239,275664,75.70779475,97.69170609,,,,,,,84.27105537,58.36015562,117.7603532,,,,89.86002925,77.27962516,102.4404334,,,,7.7,,,,,0,,,,,0.091125027,2110,23155,0.073899636,0.108350418,0.079333772,0.063213197,0.095454346,0.00993306,0.004625396,0.015240724,0.004102786,0.000573749,0.007631822,0.838475923,21522,25668,0.813677596,0.863274251,,,,,,,0.837296621,0.632935535,1,,,,0.798498641,0.708843931,0.88815335,0.319,,25668,0.282781859,0.355218141,77.06201341,,,76.28039391,77.8436329,,,,,,,75.39344272,73.22330508,77.56358036,,,,77.11561651,76.24679626,77.98443676,,,,409.7715306,899,151041,381.0123718,438.5306893,,,,,,,503.1823563,422.2965365,584.0681761,,,,400.4000563,368.4196542,432.3804583,,,,52.5408768,25,47582,34.00168519,77.56069879,,,,,,,,,,,,,61.90730788,38.79698025,93.7284081,,,,6.12745098,20,3264,3.742806246,9.463351073,,,,,,,,,,,,,,,,,,,,,,0.115,,,0.098,0.133,0.175,,,0.151,0.2,0.101,,,0.087,0.117,172,82,47688,,,0.081,4520,,,,0.022319704,1224.057185,54842,,,15.69280726,26,165681,10.25106271,22.99359859,,,,,,,,,,,,,18.40095685,11.78984026,27.37916521,,,,0.377,,,0.361,0.392,0.096730746,3160,32668,0.081241384,0.112220107,0.045959906,525,11423,0.031662033,0.060257778,0.000145083,8,55141,,,6892.625,0.91,541.45,595,,,0.097108176,272,2801,0.053309196,0.140907155,3.114193296,,,,,,,2.553370371,2.765243282,3.256573249,,,,,,,,,,,0.034226131,,,,,200.4297,,,,,0.836524357,43342,51812,0.775179344,0.897869371,63516,,,56700.68085,70331.31915,,,,36563,22163.85106,50962.14894,53324,37781.02128,68866.97872,49552,33221.44681,65882.55319,60582,56423.70213,64740.29787,,,,,,0.477397173,3749,7853,,,27.40850904,,,,,0.216071541,,63516,,,6.793478261,20,2944,,,5.185350348,20,385702,3.167346704,8.008353056,,,,,,,,,,,,,4.568221494,2.4974892,7.664699435,,,,14.60504384,43,275664,10.38561391,19.96557573,15.59869987,,,,,,,,,,,,,17.2606993,12.0227095,24.00545434,,,,14.14765802,39,275664,10.06036787,19.34031425,,,,,,,,,,,,,14.67102518,10.03497037,20.71111013,,,,18.14872622,70,385702,14.14782244,22.92982376,,,,,,,24.91502198,13.62127436,41.80317332,,,,16.6413783,12.3905992,21.88033915,,,,,,4900,,,52,-888,0.691112909,29901,43265,,,0.676,,,,,22.27201806,,,,,0.741086171,16607,22409,0.716360193,0.765812149,0.07189573,1539,21406,0.054218015,0.089573446,0.81516355,18267,22409,0.790105025,0.840222075,55141,,,,,0.191164469,10541,55141,,,0.218149834,12029,55141,,,0.150505069,8299,55141,,,0.00388096,214,55141,,,0.011352714,626,55141,,,0.000834225,46,55141,,,0.033568488,1851,55141,,,0.780490017,43037,55141,,,0.015772392,831,52687,0.006594452,0.024950332,0.5118333,28223,55141,,,0.568550704,31666,55696,, -51,033,51033,VA,Caroline County,2024,1,9467.562022,546,86669,8268.086314,10667.03773,0,,,,2,,,,2,9696.42932,7059.207903,12333.65074,,,,,2,10202.10732,8674.268995,11729.94565,,,,,2,,0.164,,,0.139,0.192,3.639855005,,,2.865520073,4.485104041,4.929453569,,,3.956709136,5.965396872,0.088535292,217,2451,0.077288917,0.099781667,0,,,,,,,0.12394958,0.094346311,0.153552849,0.077844311,0.037208082,0.118480541,0.078977933,0.066239166,0.0917167,,,,,,,0.17,,,0.135,0.205,0.375,,,0.299,0.455,9.3,0.015182674,0.067,,,0.246,,,0.2,0.295,0.587107845,18134,30887,,,0.170103305,,,0.135852165,0.208344078,0.325581395,14,43,0.245954344,0.405547825,389.4,122,31332,,,20.40816327,118,5782,16.72586479,24.09046174,,,,,,,24.35629784,16.96505386,33.87371424,20.52238806,10.24470218,36.72022111,19.02173913,14.61682663,24.33706742,,,,,,,0.088324117,2252,25497,0.075217734,0.1014305,9.57488E-05,3,31332,,,10444,0.000250336,8,31957,,,3994.625,0.000469381,15,31957,,,2130.466667,4396,,,,,,,3592,,4706,0.42,,,,,,,0.49,,0.4,0.42,,,,,,0.36,0.37,0.22,0.44,0.893542839,19221,21511,0.875959131,0.911126546,0.533316665,4266,7999,0.450061064,0.616572265,0.032484408,500,15392,,,0.142,996,,0.095531915,0.188468085,,,,,,,0.20610687,0.004951626,0.407262114,0.293375394,0.020124117,0.566626671,0.140089771,0.075464894,0.204714648,3.820019711,143415,37543,3.285089739,4.354949683,0.307822889,2176,7069,0.217384476,0.398261301,9.894038044,31,31332,,,104.4437237,161,154150,88.31033929,120.577108,,,,,,,83.18042814,57.60486455,116.2363109,,,,126.9594242,104.6128902,149.3059582,,,,7.9,,,,,0,,,,,0.094262295,1035,10980,0.071613798,0.116910792,0.062413315,0.041973571,0.082853058,0.025956284,0.013252889,0.038659679,0.007741348,0,0.01556034,0.772880066,12186,15767,0.728294192,0.81746594,,,,,,,0.748055988,0.669920565,0.826191411,,,,0.713857357,0.624047077,0.803667637,0.644,,15767,0.566178321,0.721821679,75.73504193,,,74.73628663,76.73379724,,,,,,,75.88442366,73.84662533,77.922222,80.48132314,75.58401013,85.37863615,74.94940262,73.70700285,76.19180239,,,,477.3157552,546,86669,435.6372067,518.9943037,,,,,,,463.2272532,383.1267449,543.3277614,,,,515.0084608,461.0581806,568.958741,,,,39.43347245,12,30431,20.37585064,68.88234054,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.109,,,0.093,0.127,0.166,,,0.143,0.192,0.105,,,0.089,0.123,259.2,68,26239,,,0.067,2060,,,,0.015182674,433.3894297,28545,,,38.74425563,36,92917,27.13600032,53.63838102,,,,,,,,,,,,,49.39280909,33.07913944,70.93631298,,,,0.376,,,0.36,0.389,0.104703852,1941,18538,0.088023001,0.121384703,0.045898035,334,7277,0.031600163,0.060195907,0.00015646,5,31957,,,6391.4,0.89,257.21,289,,,,,,,,3.323475952,,,,,,,3.064045025,3.104417687,3.487021069,,,,,,,,,,,0.003944786,,,,,-892.2041,,,,,0.767580546,48911,63721,0.626993572,0.908167521,72210,,,62214.59575,82205.40426,16250,5724.382979,26775.61702,,,,59858,49162,70554,,,,92471,82617.38298,102324.617,,,,,,0.525719679,2228,4238,,,31.99673051,,,,,0.233250242,,72210,,,7.882291119,15,1903,,,5.599313151,12,214312,2.893246813,9.780873235,,,,,,,,,,,,,,,,,,,16.16823187,27,154150,10.46322718,23.86749972,17.51540707,,,,,,,,,,,,,17.79161241,10.7117129,27.78380666,,,,18.16412585,28,154150,12.06992972,26.25221923,,,,,,,,,,,,,21.5011928,13.30957723,32.86685718,,,,22.3972526,48,214312,16.513966,29.69550757,,,,,,,27.89254397,15.94299889,45.29574394,,,,23.53997013,16.10132215,33.23141415,,,,14,,3000,,,28,14,0.709253211,16288,22965,,,0.69,,,,,15.20230151,,,,,0.81698428,9303,11387,0.786012975,0.847955586,0.08983773,991,11031,0.062699969,0.116975491,0.837973127,9542,11387,0.808653735,0.867292519,31957,,,,,0.223894608,7155,31957,,,0.172857277,5524,31957,,,0.256594799,8200,31957,,,0.00885565,283,31957,,,0.010764465,344,31957,,,0.001877523,60,31957,,,0.0696561,2226,31957,,,0.623869575,19937,31957,,,0.010188782,299,29346,0.00077862,0.019598945,0.500422443,15992,31957,,,1,30887,30887,, -51,035,51035,VA,Carroll County,2024,1,9438.194669,594,79299,8088.856539,10787.5328,0,,,,2,,,,2,,,,2,,,,2,9665.148364,8255.439216,11074.85751,,,,,2,,0.182,,,0.153,0.216,4.199568122,,,3.36905253,5.11475678,5.67234656,,,4.658473417,6.802157064,0.069325153,113,1630,0.056993916,0.081656391,0,,,,,,,,,,,,,0.071808511,0.058760662,0.084856359,,,,,,,0.207,,,0.166,0.253,0.371,,,0.297,0.448,8.3,0.017000395,0.114,,,0.254,,,0.208,0.306,0.628811525,18333,29155,,,0.154542658,,,0.122155581,0.189566882,0.266666667,8,30,0.170636514,0.368067779,123.9,36,29048,,,23.26461131,123,5287,19.15312057,27.37610205,,,,,,,,,,31.79190751,15.87040569,56.88450437,22.91666667,18.63403054,27.1993028,,,,,,,0.116217472,2501,21520,0.099536621,0.132898323,0.000929496,27,29048,,,1075.851852,0.000274471,8,29147,,,3643.375,0.000514633,15,29147,,,1943.133333,2623,,,,,,,,,2628,0.43,,,,,,,,,0.43,0.37,,,,,,,,,0.37,0.830155028,18153,21867,0.802836154,0.857473902,0.5551254,3298,5941,0.464722748,0.645528051,0.035264094,456,12931,,,0.21,1047,,0.133744681,0.286255319,,,,,,,,,,0.40302267,0.085019377,0.721025963,0.1583533,0.082695273,0.234011327,4.44556137,96851,21786,3.663828329,5.227294411,0.230992455,1194,5169,0.135837557,0.326147353,11.70476453,34,29048,,,84.98755539,126,148257,70.14782072,99.82729007,,,,,,,,,,,,,88.92331082,73.27163468,104.574987,,,,7.2,,,,,0,,,,,0.102595797,1245,12135,0.076199968,0.128991627,0.081268252,0.058736411,0.103800093,0.01565719,0.002519248,0.028795132,0.007004532,0,0.014527175,0.839471278,10098,12029,0.797913095,0.88102946,,,,,,,,,,,,,0.781751825,0.730434599,0.83306905,0.39,,12029,0.327563229,0.452436771,75.66432814,,,74.65319997,76.67545631,,,,,,,,,,,,,75.40515788,74.36899773,76.44131803,,,,457.4914415,594,79299,416.0933854,498.8894975,,,,,,,,,,,,,468.3792827,425.1039456,511.6546198,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.127,,,0.109,0.148,0.189,,,0.163,0.216,0.103,,,0.088,0.12,70.6,18,25512,,,0.114,3330,,,,0.017000395,510.7258791,30042,,,22.49389853,20,88913,13.7398576,34.74000192,,,,,,,,,,,,,24.01133335,14.66674621,37.08355692,,,,0.359,,,0.341,0.375,0.13375257,2212,16538,0.113497251,0.154007889,0.059383327,312,5254,0.041510987,0.077255667,0.000823412,24,29147,,,1214.458333,0.93,243.66,262,,,,,,,,3.264463328,,,,,,,,3.235123961,3.258962151,,,,,,,,,,,0.032764724,,,,,-536.54,,,,,0.902871809,40808,45198,0.738456529,1.067287088,51111,,,43875.08511,58346.91489,,,,,,,,,,,,,49149,43489.42553,54808.57447,,,,,,0.615865795,2166,3517,,,,,,,,0.244115748,,51111,,,8.814102564,11,1248,,,,,,,,,,,,,,,,,,,,,,,,,,21.65877453,34,148257,14.39209838,31.30295958,22.93314987,,,,,,,,,,,,,23.18056246,15.40331541,33.50236684,,,,16.8626102,25,148257,10.91259222,24.8925391,,,,,,,,,,,,,17.21096338,11.02738899,25.60854926,,,,15.90269478,33,207512,10.94668336,22.33329604,,,,,,,,,,,,,16.34170505,11.17771416,23.06961162,,,,13.07692308,,2600,,,21,13,0.648188781,15657,24155,,,0.575,,,,,14.37296705,,,,,0.784284655,9522,12141,0.741095388,0.827473922,0.086876479,991,11407,0.063302917,0.110450042,0.775224446,9412,12141,0.744764536,0.805684356,29147,,,,,0.173842934,5067,29147,,,0.262325454,7646,29147,,,0.008954609,261,29147,,,0.003705356,108,29147,,,0.002916252,85,29147,,,0.000411706,12,29147,,,0.046591416,1358,29147,,,0.928603287,27066,29147,,,0.006022585,168,27895,0,0.012486529,0.49926236,14552,29147,,,0.976264792,28463,29155,, -51,036,51036,VA,Charles City County,2024,1,10378.86749,144,18301,7121.680481,13636.05451,0,,,,2,,,,2,10924.41039,6762.382215,16699.12174,1,,,,2,9837.230215,6008.835779,15192.80422,1,,,,2,,0.203,,,0.176,0.235,4.201391042,,,3.38910482,5.162908943,5.470546115,,,4.397196163,6.651059323,0.093645485,28,299,0.060622757,0.126668213,0,,,,,,,0.160377359,0.090519264,0.230235453,,,,,,,,,,,,,0.2,,,0.164,0.239,0.408,,,0.324,0.497,9.2,0.007185727,0.074,,,0.274,,,0.225,0.328,0.190905064,1293,6773,,,0.139424356,,,0.110946619,0.173024876,0.5,5,10,0.338551574,0.634481032,288.1,19,6594,,,10.19367992,10,981,4.888265745,18.74654031,,,,,,,,,,,,,,,,,,,,,,0.143727674,684,4759,0.124663844,0.162791504,0.000151653,1,6594,,,6594,0.000151401,1,6605,,,6605,0.000302801,2,6605,,,3302.5,3042,,,,,,,4277,,2318,0.5,,,,,,,0.52,,0.49,0.47,,,,,,,0.41,,0.5,0.849145219,4520,5323,0.824404119,0.873886318,0.591851852,799,1350,0.497060417,0.686643287,0.031059346,112,3606,,,0.187,174,,0.115510638,0.258489362,,,,,,,0.152061856,0.034327054,0.269796657,0.193548387,0,0.924720649,0.213776722,0.089411554,0.338141891,4.671820392,122981,26324,3.52766437,5.815976414,0.347263682,349,1005,0.253431368,0.441095996,16.68183197,11,6594,,,87.40494712,30,34323,58.97175078,124.7759968,,,,,,,78.46214202,40.54253373,137.0575719,,,,101.2965964,56.69493607,167.0733311,,,,6.6,,,,,1,,,,,0.135,405,3000,0.104652776,0.165347224,0.121694915,0.089751538,0.153638293,0.011333333,0.000260546,0.022406121,0.008,0.002706544,0.013293456,0.814400993,2624,3222,0.775878091,0.852923896,,,,,,,0.572649573,0.30329231,0.842006835,,,,0.757238307,0.629552625,0.884923989,0.701,,3222,0.629540432,0.772459568,75.22752312,,,72.83504977,77.61999646,,,,,,,74.08350556,70.85108891,77.31592221,,,,76.48727258,72.99314192,79.98140325,,,,462.0491256,144,18301,372.7420532,551.356198,,,,,,,513.8442738,380.1448225,679.3293804,,,,428.3277389,309.9829085,576.9546534,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.125,,,0.109,0.144,0.179,,,0.156,0.205,0.127,,,0.109,0.147,302.5,18,5951,,,0.074,510,,,,0.007185727,52.13963349,7256,,,,,,,,,,,,,,,,,,,,,,,,,,0.396,,,0.383,0.409,0.153846154,592,3848,0.131207856,0.176484452,0.104615385,102,975,0.074828151,0.134402619,0.000908403,6,6605,,,1100.833333,,,,,,,,,,,2.877438744,,,,,,,,,,,,,,,,,,,,0.005215928,,,,,-9314.455,,,,,0.860633823,48285,56104,0.765087831,0.956179815,67596,,,58403.65957,76788.34043,86667,63091,110243,,,,55676,44017.2766,67334.7234,59286,40864.38298,77707.61702,81589,74853.51064,88324.48936,,,,,,0.662878788,350,528,,,13.14125804,,,,,0.239955027,,67596,,,10.25641026,2,195,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,39.22864104,19,48434,23.61820449,61.26038232,,,,,,,64.08495835,35.03584307,107.5236708,,,,,,,,,,0,,500,,,0,0,0.763058419,4441,5820,,,0.67,,,,,0.824116835,,,,,0.846471601,2459,2905,0.816976553,0.875966649,0.120043259,333,2774,0.081015366,0.159071152,0.696729776,2024,2905,0.658063802,0.735395751,6605,,,,,0.14337623,947,6605,,,0.271158214,1791,6605,,,0.42331567,2796,6605,,,0.067221802,444,6605,,,0.005904618,39,6605,,,0.000908403,6,6605,,,0.025283876,167,6605,,,0.447085541,2953,6605,,,0.002000308,13,6499,0,0.014737751,0.50340651,3325,6605,,,1,6773,6773,, -51,037,51037,VA,Charlotte County,2024,1,14007.03241,262,31697,11291.70809,16722.35674,0,,,,2,,,,2,19630.28188,13391.93625,25868.62751,,,,,2,12480.81603,9325.314135,15636.31792,,,,,2,,0.202,,,0.176,0.233,4.325369761,,,3.483856116,5.254177219,5.660596472,,,4.588049805,6.824199731,0.104366347,98,939,0.084810856,0.123921838,0,,,,,,,0.170212766,0.12216186,0.218263672,,,,0.086053413,0.064880989,0.107225836,,,,,,,0.212,,,0.173,0.254,0.424,,,0.346,0.507,6.7,0.146033203,0.125,,,0.279,,,0.229,0.328,0.164368115,1895,11529,,,0.145015169,,,0.115115432,0.178940644,0.357142857,5,14,0.212111468,0.496744159,419.3,48,11448,,,19.57446809,46,2350,14.33097081,26.10959732,,,,,,,15.66579635,8.094745573,27.36499354,,,,21.58774373,14.6678245,30.64207904,,,,,,,0.103368978,899,8697,0.087879616,0.11885834,0.000524109,6,11448,,,1908,0.000348584,4,11475,,,2868.75,0.000610022,7,11475,,,1639.285714,3476,,,,,,,2943,,3821,0.35,,,,,,,0.43,,0.33,0.39,,,,,,,0.38,,0.39,0.844861418,6889,8154,0.807810261,0.881912574,0.576724138,1338,2320,0.472763768,0.680684508,0.030021444,168,5596,,,0.247,603,,0.150489362,0.343510638,,,,,,,0.247582205,0.085817105,0.409347305,0.927659575,0.499732087,1,0.230322581,0.10841808,0.352227081,5.40118216,100516,18610,4.459633156,6.342731164,0.358226371,921,2571,0.253460623,0.462992119,12.22921034,14,11448,,,150.3251415,89,59205,120.7234324,184.988022,,,,,,,159.7247819,104.3375305,234.033813,,,,151.4850502,115.8740602,194.5888843,,,,7.6,,,,,0,,,,,0.134436401,650,4835,0.088522252,0.180350551,0.110074231,0.0683284,0.151820062,0.012409514,0,0.026966289,0.022750776,0.005771035,0.039730516,0.807361693,3663,4537,0.755332637,0.859390749,,,,,,,0.745901639,0.617285684,0.874517595,,,,0.759597806,0.676283726,0.842911886,0.527,,4537,0.435557558,0.618442442,71.83952377,,,70.02627539,73.65277215,,,,,,,67.7426062,64.08453582,71.40067659,,,,73.16230472,70.98101463,75.34359482,,,,596.0254986,262,31697,515.7389743,676.3120228,,,,,,,827.3608098,643.8797765,1010.841843,,,,521.4731738,430.5223178,612.4240299,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.131,,,0.113,0.149,0.187,,,0.163,0.214,0.122,,,0.105,0.14,164.2,16,9746,,,0.125,1450,,,,0.146033203,1837.97389,12586,,,54.05712985,19,35148,32.54592342,84.41690444,,,,,,,,,,,,,54.32738518,28.92704455,92.90148321,,,,0.389,,,0.375,0.402,0.119351283,758,6351,0.099095964,0.139606602,0.060495331,149,2463,0.040240012,0.08075065,0.00043573,5,11475,,,2295,0.875,116.375,133,,,,,,,,3.248327346,,,,,,,2.784393179,,3.456586745,,,,,,,,,,,0.015121051,,,,,-5879.627,,,,,0.763103358,37927,49701,0.640304827,0.88590189,50151,,,42739.93617,57562.06383,,,,75375,42491.08511,108258.9149,38953,28895.6383,49010.3617,18561,12174.61702,24947.38298,56906,47192.97872,66619.02128,,,,,,0.600470035,1022,1702,,,13.67810187,,,,,0.248788658,,50151,,,4.04040404,2,495,,,,,,,,,,,,,,,,,,,,,,,,,,33.04070728,16,59205,18.06366213,55.43669254,27.02474453,,,,,,,,,,,,,33.6450809,16.13412406,61.87450168,,,,20.2685584,12,59205,10.47305989,35.40509256,,,,,,,,,,,,,,,,,,,41.89860538,35,83535,29.18391381,58.27081747,,,,,,,69.07866333,39.48442472,112.1794215,,,,33.52329869,20.1832157,52.35078351,,,,,,1100,,,9,-888,0.666774367,6191,9285,,,0.553,,,,,2.373194888,,,,,0.690969163,3137,4540,0.642662896,0.73927543,0.129071761,527,4083,0.081106256,0.177037266,0.701982379,3187,4540,0.648585382,0.755379376,11475,,,,,0.21620915,2481,11475,,,0.228148148,2618,11475,,,0.262657952,3014,11475,,,0.005751634,66,11475,,,0.003485839,40,11475,,,0.000348584,4,11475,,,0.027363834,314,11475,,,0.685751634,7869,11475,,,0.001369738,15,10951,0,0.009870221,0.501176471,5751,11475,,,1,11529,11529,, -51,041,51041,VA,Chesterfield County,2024,1,7367.918891,4322,1020043,7034.943178,7700.894604,0,,,,2,2801.424485,1928.371714,3934.241535,,9536.135096,8761.116462,10311.15373,,5661.268944,4779.501456,6543.036433,,6993.351801,6569.9625,7416.741101,,,,,2,,0.135,,,0.115,0.159,3.191093507,,,2.590577972,3.843720717,4.681791497,,,3.987623103,5.425383735,0.079730022,2209,27706,0.076540411,0.082919633,0,,,,0.112322792,0.091885051,0.132760532,0.12627451,0.118120686,0.134428334,0.07227388,0.064895954,0.079651806,0.060781858,0.056979545,0.06458417,,,,0.080729167,0.053481618,0.107976715,0.132,,,0.105,0.164,0.358,,,0.311,0.405,8.9,0.081912144,0.054,,,0.201,,,0.168,0.237,0.804066954,293121,364548,,,0.184119264,,,0.154562622,0.21475849,0.262068966,38,145,0.219770303,0.30570599,430,1594,370688,,,10.38747481,897,86354,9.707692542,11.06725708,,,,,,,9.430870626,8.282299283,10.57944197,35.5334891,31.88806976,39.17890843,5.753437739,5.02703919,6.479836287,,,,3.265511178,1.738747172,5.584123567,0.076485173,23445,306530,0.068144747,0.084825598,0.000806608,299,370688,,,1239.759197,0.00079808,302,378408,,,1253.006623,0.00242331,917,378408,,,412.6586696,2508,,,,,,575,3804,2446,2286,0.47,,,,,,0.33,0.48,0.39,0.47,0.53,,,,,,0.53,0.39,0.34,0.55,0.926193752,228881,247120,0.920582683,0.931804821,0.728626117,68520,94040,0.702408257,0.754843976,0.027964782,5425,193994,,,0.086,7481,,0.056212766,0.115787234,0.228855721,0,0.535631341,0.120277564,0.041766806,0.198788322,0.144646277,0.113462722,0.175829831,0.157479033,0.11403009,0.200927975,0.03420342,0.025156876,0.043249965,3.723816558,171411,46031,3.569036843,3.878596274,0.219989073,18925,86027,0.198660856,0.24131729,8.173989986,303,370688,,,78.69710072,1396,1773890,74.56879269,82.82540876,,,,33.96634244,21.28652597,51.42545065,76.68217032,68.29340681,85.07093383,43.91482897,34.48258613,55.1310463,89.13395547,83.48367111,94.78423983,,,,6.7,,,,,0,,,,,0.110744321,14090,127230,0.102023357,0.119465285,0.092498122,0.084005523,0.10099072,0.016151851,0.012309945,0.019993757,0.007073803,0.004786626,0.009360981,0.757128166,139887,184760,0.74539606,0.768860272,,,,0.627300931,0.592580558,0.662021303,0.718451025,0.689469547,0.747432504,0.67179942,0.622612522,0.720986317,0.732120215,0.717190634,0.747049797,0.401,,184760,0.382657254,0.419342746,77.98043403,,,77.68259792,78.27827015,,,,86.04164429,83.96550161,88.11778696,75.41607207,74.73769916,76.09444497,80.57733778,79.11971357,82.03496198,78.31735359,77.95083921,78.68386796,,,,338.3317963,4322,1020043,327.9210853,348.7425072,,,,136.5277887,105.1430335,174.3429382,423.0175214,398.5726939,447.462349,246.3252064,208.4524114,284.1980015,330.8876226,317.8826132,343.892632,,,,51.76368154,195,376712,44.49820805,59.02915503,,,,,,,73.96527859,57.6595633,93.45067978,73.54189059,52.29547338,100.5341854,40.63244399,32.21900105,50.57059378,,,,5.977264393,163,27270,5.059640453,6.894888334,,,,,,,8.576874206,6.443211876,11.19096036,8.031206976,5.594029923,11.16946475,4.19864856,3.233471006,5.361580477,,,,,,,0.091,,,0.078,0.105,0.153,,,0.132,0.175,0.092,,,0.079,0.107,240,743,309630,,,0.054,19560,,,,0.081912144,25903.56879,316236,,,30.87632368,334,1081735,27.56494825,34.18769912,,,,,,,32.13417373,25.59469,39.83514309,16.00361493,9.322695451,25.6233378,34.77040714,30.22707394,39.31374034,,,,0.362,,,0.349,0.375,0.090286514,19881,220199,0.079563109,0.101009918,0.043299105,3930,90764,0.032575701,0.05402251,0.000882645,334,378408,,,1132.958084,0.9,4471.2,4968,,,0.080725428,1687,20898,0.053536811,0.107914045,3.271255964,,,,,,3.62372726,2.943545606,2.953664857,3.491559379,,,,,,,,,,,0.117619231,,,,,-1491.303,,,,,0.839450357,56631,67462,0.804497493,0.874403222,100149,,,95754.78723,104543.2128,,,,115991,98669.12766,133312.8723,79262,72949.48936,85574.51064,72470,63543.3617,81396.6383,104012,100798.5532,107225.4468,,,,,,0.378115942,23481,62100,,,38.09343116,,,,,0.249158754,,100149,,,5.7441741,123,21413,,,6.085144651,149,2448586,5.108056282,7.06223302,,,,,,,18.35173459,14.8414806,21.86198858,4.901720504,2.446921215,8.770531976,2.006050248,1.353473678,2.863761464,,,,14.89428522,273,1773890,13.08755005,16.70102039,15.3899058,,,,,,,7.718459287,5.24431861,10.95573685,,,,18.71129537,16.09877428,21.32381646,,,,15.27715924,271,1773890,13.45823742,17.09608105,,,,,,,23.88852658,19.20637537,28.57067779,6.527879982,3.258694167,11.68018047,14.35839868,12.09061452,16.62618285,,,,10.00577476,245,2448586,8.75285358,11.25869594,,,,,,,10.83626233,8.308100191,13.89159925,8.912219098,5.443814958,13.76419957,10.43146129,8.794498063,12.06842451,,,,23.21518987,,39500,,,516,401,0.808976063,203955,252115,,,0.752,,,,,65.89848875,,,,,0.774026419,103831,134144,0.764569566,0.783483273,0.10138186,13382,131996,0.092735881,0.110027839,0.926720539,124314,134144,0.919844208,0.93359687,378408,,,,,0.232672142,88045,378408,,,0.16337921,61824,378408,,,0.245005391,92712,378408,,,0.006458637,2444,378408,,,0.038788821,14678,378408,,,0.001498383,567,378408,,,0.106874062,40442,378408,,,0.581369844,219995,378408,,,0.028875534,9951,344617,0.025600642,0.032150427,0.515956322,195242,378408,,,0.080310412,29277,364548,, -51,043,51043,VA,Clarke County,2024,1,7294.04202,205,40206,5592.00783,8996.07621,0,,,,2,,,,2,,,,2,,,,2,7582.960925,5634.750095,9531.171755,,,,,2,,0.129,,,0.107,0.154,3.313919677,,,2.55522261,4.145564804,4.814525351,,,3.788793155,5.840669388,0.053022269,50,943,0.038720187,0.067324351,0,,,,,,,,,,,,,0.052770449,0.036854062,0.068686835,,,,,,,0.141,,,0.107,0.179,0.338,,,0.261,0.413,9.4,0.00059654,0.071,,,0.198,,,0.157,0.244,0.74281269,10981,14783,,,0.176219311,,,0.140134635,0.214060547,0.263157895,5,19,0.14192256,0.393259063,147.8,22,14881,,,9.1714105,29,3162,6.142237551,13.17167534,,,,,,,,,,,,,6.220839813,3.555747455,10.10225412,,,,,,,0.0737486,856,11607,0.063025196,0.084472004,0.000335999,5,14881,,,2976.2,0.000327525,5,15266,,,3053.2,0.00065505,10,15266,,,1526.6,2919,,,,,,,3347,,2618,0.37,,,,,,,0.37,,0.37,0.53,,,,,,,0.5,0.42,0.53,0.937087307,10218,10904,0.917709716,0.956464899,0.691684285,1963,2838,0.582842629,0.800525941,0.025497593,196,7687,,,0.082,233,,0.051021277,0.112978723,,,,,,,0.114503817,0,0.363893279,0.048780488,0,0.198638266,0.044064748,0,0.094717993,3.785319464,173943,45952,3.071843464,4.498795464,0.165712241,463,2794,0.082501562,0.248922919,15.45595054,23,14881,,,97.05685344,71,73153,75.80220778,122.4240142,,,,,,,,,,,,,104.1649974,80.39234584,132.76684,,,,7.6,,,,,1,,,,,0.14059754,800,5690,0.103997664,0.177197415,0.124422325,0.087222408,0.161622242,0.007029877,0,0.01545629,0.010544816,0,0.02862155,0.745317343,5531,7421,0.701159769,0.789474917,,,,,,,,,,,,,0.609090909,0.564457924,0.653723894,0.587,,7421,0.49907971,0.67492029,77.93396929,,,76.52978463,79.33815394,,,,,,,,,,,,,77.5078994,75.96107113,79.05472767,,,,340.0601273,205,40206,288.2017761,391.9184784,,,,,,,,,,,,,349.1191779,291.7800883,406.4582674,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.096,,,0.081,0.111,0.155,,,0.131,0.179,0.085,,,0.072,0.1,200.2,26,12987,,,0.071,1040,,,,0.00059654,8.371835972,14034,,,29.46375958,13,44122,15.68821108,50.3839262,,,,,,,,,,,,,29.2802385,14.61658956,52.39043471,,,,0.312,,,0.295,0.33,0.081332568,708,8705,0.068226185,0.094438951,0.052011776,159,3057,0.036522415,0.067501138,0.000327525,5,15266,,,3053.2,0.975,153.075,157,,,,,,,,3.016397395,,,,,,,,,3.106468362,,,,,,,,,,,0.004810404,,,,,3068.414,,,,,0.868222088,60173,69306,0.569435352,1.167008823,106914,,,97812.21277,116015.7872,,,,,,,92031,18377.89362,165684.1064,95664,44583.65957,146744.3404,107987,90260.02128,125713.9787,,,,,,0.223131479,409,1833,,,29.07789389,,,,,0.175047234,,106914,,,10.15228426,6,591,,,,,,,,,,,,,,,,,,,,,,,,,,20.16573018,16,73153,11.02479234,33.83466869,21.87196697,,,,,,,,,,,,,19.3120949,9.640528193,34.55467233,,,,16.40397523,12,73153,8.476173375,28.65444349,,,,,,,,,,,,,16.02538421,7.684794629,29.47125213,,,,17.66611051,18,101890,10.47005671,27.92007093,,,,,,,,,,,,,19.47575841,11.34534698,31.18257586,,,,13.33333333,,1500,,,13,7,0.817600701,9337,11420,,,0.697,,,,,18.1003804,,,,,0.779063557,4376,5617,0.740642004,0.81748511,0.107352941,584,5440,0.068042576,0.146663307,0.859889621,4830,5617,0.824603718,0.895175524,15266,,,,,0.191733264,2927,15266,,,0.23156033,3535,15266,,,0.040547622,619,15266,,,0.007205555,110,15266,,,0.01480414,226,15266,,,0.001048081,16,15266,,,0.078213022,1194,15266,,,0.840298703,12828,15266,,,0.0071777,103,14350,0,0.015926658,0.504716363,7705,15266,,,1,14783,14783,, -51,045,51045,VA,Craig County,2024,1,10865.79946,100,13577,7085.703309,14645.89562,0,,,,2,,,,2,,,,2,,,,2,10988.74414,7414.059524,15687.11553,,,,,2,,0.157,,,0.13,0.188,3.849220594,,,3.011469754,4.767050327,5.408845706,,,4.306002973,6.562739908,0.05734767,16,279,0.030064952,0.084630388,1,,,,,,,,,,,,,0.05734767,0.030064952,0.084630388,,,,,,,0.18,,,0.141,0.226,0.376,,,0.293,0.461,8.3,0.036064908,0.105,,,0.23,,,0.186,0.282,0.940106296,4599,4892,,,0.164021026,,,0.130097019,0.202831763,0.5,1,2,0.104528646,0.771195053,246.7,12,4865,,,21.25398512,20,941,12.98248628,32.82505622,,,,,,,,,,,,,22.93577982,14.00977017,35.42245172,,,,,,,0.080465998,297,3691,0.067359615,0.093572381,0.0004111,2,4865,,,2432.5,0.00061894,3,4847,,,1615.666667,,0,4847,,,,2946,,,,,,,,,2977,0.4,,,,,,,,,0.4,0.44,,,,,,,,,0.44,0.879171461,3056,3476,0.800164571,0.958178352,0.403208556,377,935,0.247651511,0.558765601,0.030237581,70,2315,,,0.199,154,,0.122744681,0.275255319,,,,,,,,,,,,,0.178642715,0.051603289,0.30568214,4.453310638,130816,29375,1.527325689,7.379295588,0.105306122,129,1225,0.006673155,0.20393909,6.166495375,3,4865,,,111.1155205,28,25199,73.83545639,160.5928646,,,,,,,,,,,,,114.956686,76.38788297,166.1444182,,,,6.7,,,,,0,,,,,0.074324324,165,2220,0.011382109,0.13726654,0.06332574,0,0.130077817,0.006756757,0,0.029965758,0.004504505,0,0.019752132,0.905804481,1779,1964,0.859503678,0.952105283,,,,,,,,,,,,,,,,0.668,,1964,0.46386202,0.872137981,75.86667902,,,73.01240627,78.72095177,,,,,,,,,,,,,75.84156932,72.9132563,78.76988234,,,,472.9260058,100,13577,366.9247335,578.927278,,,,,,,,,,,,,471.9372542,369.9234714,593.3902431,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.113,,,0.096,0.132,0.176,,,0.15,0.203,0.093,,,0.078,0.108,116.4,5,4295,,,0.105,510,,,,0.036064908,187.1768701,5190,,,,,,,,,,,,,,,,,,,,,,,,,,0.338,,,0.319,0.356,0.088881143,255,2869,0.072200292,0.105561994,0.051162791,44,860,0.03448194,0.067843642,0.000206313,1,4847,,,4847,,,,,,,,,,,3.030446495,,,,,,,,,3.000816456,,,,,,,,,,,,,,,,-7502.949,,,,,0.926584561,48301,52128,0.624590182,1.228578941,62672,,,53468.93617,71875.06383,,,,,,,,,,,,,66009,55695.46809,76322.53192,,,,,,0.631578947,324,513,,,,,,,,0.228937963,,62672,,,3.164556962,1,316,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,500,,,-888,-888,0.754761905,3170,4200,,,0.575,,,,,0.719796303,,,,,0.809392265,1465,1810,0.743816281,0.874968249,0.06561086,116,1768,0,0.136371844,0.88121547,1595,1810,0.848821375,0.913609565,4847,,,,,0.162574789,788,4847,,,0.247163194,1198,4847,,,0.00515783,25,4847,,,0.004745203,23,4847,,,0.004951516,24,4847,,,0,0,4847,,,0.017536621,85,4847,,,0.95853105,4646,4847,,,0,0,4523,0,0.013698308,0.493501135,2392,4847,,,1,4892,4892,, -51,047,51047,VA,Culpeper County,2024,1,7542.102524,686,149483,6705.644827,8378.560221,0,,,,2,,,,2,12052.29502,9199.008102,14905.58194,,5650.587892,3784.287394,8115.186778,,7181.341082,6170.458949,8192.223216,,,,,2,,0.152,,,0.127,0.177,3.65660912,,,2.874453254,4.532890432,4.862701226,,,3.866770384,5.914991976,0.07622739,354,4644,0.06859522,0.08385956,0,,,,,,,0.122807018,0.094404518,0.151209517,0.0657277,0.05084464,0.080610759,0.07218611,0.062804035,0.081568186,,,,,,,0.161,,,0.128,0.199,0.395,,,0.318,0.475,9.2,0.028807514,0.066,,,0.222,,,0.179,0.27,0.590120262,31012,52552,,,0.172506294,,,0.13609745,0.213695737,0.35,14,40,0.267839208,0.431250314,371.3,199,53596,,,21.44907955,254,11842,18.81124305,24.08691605,,,,,,,28.06788512,20.31286763,37.80725706,46.73342871,37.9404564,56.95308073,14.49870059,11.73855354,17.25884764,,,,,,,0.098237352,4297,43741,0.085130969,0.111343735,0.000335846,18,53596,,,2977.555556,0.000367776,20,54381,,,2719.05,0.002188264,119,54381,,,456.9831933,2472,,,,,,,4147,,2289,0.41,,,,,,0.34,0.41,0.2,0.41,0.49,,,,,,0.55,0.43,0.47,0.49,0.893803063,31688,35453,0.874637081,0.912969045,0.579312471,7516,12974,0.524771694,0.633853248,0.027905886,714,25586,,,0.107,1403,,0.065297872,0.148702128,,,,,,,,,,0.102319801,0,0.208107572,0.084011944,0.033392427,0.13463146,3.86913482,165332,42731,3.457792023,4.280477618,0.183400684,2360,12868,0.132042078,0.23475929,9.702216583,52,53596,,,90.52493049,238,262911,79.02392547,102.0259355,,,,,,,104.5708468,74.0005549,143.5316572,48.51228978,27.15196033,80.01364447,97.743704,83.4245174,112.0628906,,,,7.6,,,,,0,,,,,0.134191702,2345,17475,0.107937963,0.160445442,0.106034483,0.080920226,0.13114874,0.02832618,0.01347431,0.043178051,0.008297568,0.00174294,0.014852196,0.772519865,19639,25422,0.743151273,0.801888456,,,,,,,0.741171404,0.62252875,0.859814058,0.664985994,0.525265962,0.804706027,0.754705839,0.725133694,0.784277984,0.503,,25422,0.458706073,0.547293928,77.81804007,,,77.08338229,78.55269784,,,,,,,73.15452663,71.15168188,75.15737138,,,,78.18196263,77.30933491,79.05459036,,,,366.8689579,686,149483,338.3949069,395.3430089,,,,,,,586.6640249,488.2480377,685.0800122,251.6497918,170.9838243,357.1967922,348.6165018,316.1171409,381.1158627,,,,41.78927757,24,57431,26.77517866,62.17913251,,,,,,,,,,,,,40.60560357,22.19946133,68.1293031,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.105,,,0.089,0.122,0.158,,,0.136,0.183,0.098,,,0.083,0.115,239.9,106,44183,,,0.066,3420,,,,0.028807514,1344.994006,46689,,,33.17268574,53,159770,24.84861797,43.3906897,,,,,,,,,,,,,35.2858151,25.09166394,48.23687084,,,,0.346,,,0.331,0.359,0.115154896,3509,30472,0.098474045,0.131835747,0.061111511,850,13909,0.04323917,0.078983851,0.001232048,67,54381,,,811.6567164,0.89,549.13,617,,,0.12383323,398,3214,0.054983439,0.19268302,2.903826529,,,,,,,2.630040394,2.669507535,3.074783084,,,,,,,,,,,0.03281584,,,,,-888.1768,,,,,0.760127184,48769,64159,0.679739973,0.840514395,94287,,,87351.34043,101222.6596,120882,39406.76596,202357.234,95927,76058.91489,115795.0851,86188,65800.42553,106575.5745,81875,38962.31915,124787.6809,95241,85967.6383,104514.3617,,,,,,0.480808322,4021,8363,,,30.64675691,,,,,0.211725901,,94287,,,5.222734255,17,3255,,,2.759183944,10,362426,1.323135949,5.074237511,,,,,,,,,,,,,,,,,,,15.90626676,42,262911,11.36367018,21.65982072,15.97498773,,,,,,,,,,,,,19.76889217,13.69053252,27.62504533,,,,12.93213293,34,262911,8.955877991,18.07135955,,,,,,,,,,,,,13.65135531,8.834437372,20.15209341,,,,14.07183811,51,362426,10.47740776,18.50186835,,,,,,,19.65099827,9.423417498,36.13888548,,,,13.38182276,9.267301274,18.69975602,,,,18.52459016,,6100,,,82,31,0.73049569,27116,37120,,,0.742,,,,,32.23864777,,,,,0.742522542,13505,18188,0.714881287,0.770163798,0.127136752,2261,17784,0.099865821,0.154407684,0.894655817,16272,18188,0.874220627,0.915091008,54381,,,,,0.24462588,13303,54381,,,0.172578658,9385,54381,,,0.130836138,7115,54381,,,0.009047278,492,54381,,,0.019308214,1050,54381,,,0.001489491,81,54381,,,0.135819496,7386,54381,,,0.682205182,37099,54381,,,0.028431907,1409,49557,0.0173339,0.039529913,0.498703591,27120,54381,,,0.570653829,29989,52552,, -51,049,51049,VA,Cumberland County,2024,1,8903.488713,177,26747,6594.776982,11212.20044,0,,,,2,,,,2,11380.68341,7214.377035,17076.61298,1,,,,2,8217.367114,5373.984817,11060.74941,,,,,2,,0.164,,,0.141,0.19,3.805148977,,,3.06343366,4.744946629,5.173489356,,,4.197095077,6.334166868,0.098591549,56,568,0.074074818,0.12310828,0,,,,,,,0.142857143,0.0862886,0.199425685,,,,0.081012658,0.054104205,0.107921111,,,,,,,0.172,,,0.141,0.208,0.405,,,0.328,0.49,7.7,0.194706015,0.056,,,0.238,,,0.199,0.286,0.376124031,3639,9675,,,0.159223267,,,0.127496221,0.199348593,0.285714286,4,14,0.142392906,0.436004848,495.8,48,9681,,,14.3693454,27,1879,9.46948916,20.90664313,,,,,,,,,,,,,15.82867784,9.220788147,25.34324657,,,,,,,0.093898628,691,7359,0.079600755,0.1081965,0.000309885,3,9681,,,3227,0.000102606,1,9746,,,9746,0.000513031,5,9746,,,1949.2,3024,,,,,,,2248,,2257,0.43,,,,,,,0.52,,0.39,0.42,,,,,,,0.38,,0.44,0.860984061,6212,7215,0.822592454,0.899375668,0.659574468,1457,2209,0.522340117,0.796808819,0.033583646,161,4794,,,0.224,417,,0.138212766,0.309787234,,,,,,,0.073770492,0,0.205133336,0.166666667,0,0.696285872,0.073394495,0.008603963,0.138185028,3.454903704,116603,33750,2.075521863,4.834285544,0.238798102,453,1897,0.125739059,0.351857146,3.098853424,3,9681,,,83.39096123,41,49166,59.84279353,113.1292551,,,,,,,73.88004567,36.88065261,132.1918095,,,,89.74358974,59.63396364,129.7044742,,,,7.4,,,,,0,,,,,0.102189781,420,4110,0.054216813,0.150162749,0.102469136,0.058060053,0.146878219,0.00243309,0,0.018065638,0.008515815,0,0.025010619,0.822045963,4042,4917,0.771556332,0.872535594,,,,,,,,,,,,,0.641387419,0.529555911,0.753218927,0.614,,4917,0.513144807,0.714855193,77.57272995,,,75.62979532,79.51566458,,,,,,,75.97470562,72.18693532,79.76247592,,,,77.76003737,75.42502442,80.09505032,,,,433.0599775,177,26747,361.7840438,504.3359113,,,,,,,525.392025,387.3826042,696.5936015,,,,408.2880259,323.1129586,493.4630932,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.11,,,0.096,0.126,0.168,,,0.147,0.193,0.105,,,0.09,0.122,263.3,22,8356,,,0.056,540,,,,0.194706015,1957.18486,10052,,,,,,,,,,,,,,,,,,,,,,,,,,0.375,,,0.361,0.389,0.108982469,603,5533,0.089918639,0.128046299,0.048805815,94,1926,0.033316454,0.064295177,,0,9746,,,,0.925,88.8,96,,,,,,,,3.192705275,,,,,,,2.996704891,,3.593045757,,,,,,,,,,,0.001016108,,,,,-5773.822,,,,,0.758168189,39750,52429,0.536236991,0.980099388,55257,,,48516.74468,61997.25532,,,,63688,46450.7234,80925.2766,47837,34636.48936,61037.51064,,,,62782,53303.70213,72260.29787,,,,,,0.879966887,1063,1208,,,5.798094076,,,,,0.225799446,,55257,,,4.366812227,2,458,,,,,,,,,,,,,,,,,,,,,,,,,,20.04377556,10,49166,9.165290523,38.04932954,20.33925884,,,,,,,,,,,,,,,,,,,20.33925884,10,49166,9.753465192,37.40462117,,,,,,,,,,,,,,,,,,,17.50879087,12,68537,9.047047739,30.58433408,,,,,,,,,,,,,,,,,,,,,900,,,6,-888,0.670833333,5313,7920,,,0.605,,,,,4.138010489,,,,,0.775832306,3146,4055,0.726636247,0.825028365,0.1107161,436,3938,0.06519196,0.15624024,0.762762022,3093,4055,0.711619021,0.813905024,9746,,,,,0.194028319,1891,9746,,,0.236199466,2302,9746,,,0.288118202,2808,9746,,,0.007695465,75,9746,,,0.005745947,56,9746,,,0.000205212,2,9746,,,0.033860045,330,9746,,,0.643956495,6276,9746,,,0.000970664,9,9272,0,0.010301152,0.510465832,4975,9746,,,0.933023256,9027,9675,, -51,051,51051,VA,Dickenson County,2024,1,13898.39655,380,38067,11718.90497,16077.88814,0,,,,2,,,,2,,,,2,,,,2,14244.24955,11999.85039,16488.64871,,,,,2,,0.217,,,0.182,0.254,4.796070668,,,3.811660639,5.884187736,6.202941478,,,4.981392722,7.46200952,0.078916372,67,849,0.060780631,0.097052114,0,,,,,,,,,,,,,0.078478002,0.060302564,0.096653441,,,,,,,0.242,,,0.195,0.295,0.382,,,0.304,0.463,,,0.177,,,0.296,,,0.241,0.357,0.57596998,8135,14124,,,0.145689743,,,0.115346761,0.180668462,0.5,4,8,0.315552499,0.64971552,217.6,30,13787,,,25.6116208,67,2616,19.84865433,32.52585307,,,,,,,,,,,,,26.5451664,20.57213935,33.71142299,,,,,,,0.093156646,942,10112,0.080050263,0.106263029,0.000217596,3,13787,,,4595.666667,7.28597E-05,1,13725,,,13725,0.000728597,10,13725,,,1372.5,4260,,,,,,,,,4278,0.34,,,,,,,,,0.35,0.42,,,,,,,,,0.42,0.813662203,8445,10379,0.781016762,0.846307643,0.536397286,1739,3242,0.438947472,0.6338471,0.043907794,200,4555,,,0.279,723,,0.18487234,0.37312766,,,,,,,,,,,,,0.281828485,0.186111816,0.377545154,5.650554146,84634,14978,4.429291262,6.87181703,0.145060595,395,2723,0.07538438,0.21473681,2.175962864,3,13787,,,135.6871083,97,71488,110.0331043,165.5267652,,,,,,,,,,,,,139.3197748,112.9789521,169.9583103,,,,7.1,,,,,1,,,,,0.143231441,820,5725,0.10609955,0.180363332,0.134417344,0.094506689,0.174327999,0.00419214,0,0.011019471,0.007860262,0,0.016588946,0.850135014,3778,4444,0.780042643,0.920227384,,,,,,,,,,,,,0.86583229,0.775256743,0.956407837,0.437,,4444,0.35773237,0.51626763,72.1598619,,,70.64873964,73.67098416,,,,,,,,,,,,,71.83453945,70.30401254,73.36506637,,,,669.4762146,380,38067,596.5051958,742.4472335,,,,,,,,,,,,,682.1660319,607.489997,756.8420668,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.146,,,0.124,0.171,0.204,,,0.176,0.235,0.118,,,0.1,0.138,41.8,5,11974,,,0.177,2520,,,,,,15903,,,49.78308797,21,42183,30.81651609,76.0987382,,,,,,,,,,,,,51.15463315,31.66552417,78.19529069,,,,0.387,,,0.369,0.405,0.109563603,826,7539,0.091691262,0.127435943,0.046255507,126,2724,0.031957634,0.060553379,0.001530055,21,13725,,,653.5714286,0.875,124.25,142,,,0.255067568,151,592,0.088773322,0.421361814,3.258906427,,,,,,,,,3.248231714,,,,,,,,,,,,,,,,-2338.341,,,,,0.779170148,39172,50274,0.631226805,0.92711349,43271,,,37256.3617,49285.6383,,,,,,,43214,32998.17021,53429.82979,11250,10124.04255,12375.95745,40275,36773.21277,43776.78723,,,,,,0.831043257,1633,1965,,,,,,,,0.288345543,,43271,,,4.608294931,3,651,,,,,,,,,,,,,,,,,,,,,,,,,,33.56688797,25,71488,21.03618998,50.82067178,34.97090421,,,,,,,,,,,,,34.42380054,21.57321253,52.1180477,,,,33.57206804,24,71488,21.51025746,49.95257609,,,,,,,,,,,,,34.47087211,22.08613819,51.2899253,,,,24.61332467,25,101571,15.92844596,36.33412263,,,,,,,,,,,,,25.24640491,16.33814212,37.26867396,,,,35.38461539,,1300,,,39,7,0.624263135,7307,11705,,,0.476,,,,,0.670070942,,,,,0.772325456,4281,5543,0.731801856,0.812849055,0.108904934,543,4986,0.073338221,0.144471647,0.757351615,4198,5543,0.707130378,0.807572852,13725,,,,,0.191256831,2625,13725,,,0.2456102,3371,13725,,,0.00568306,78,13725,,,0.00276867,38,13725,,,0.002040073,28,13725,,,0,0,13725,,,0.011001822,151,13725,,,0.972167577,13343,13725,,,0.000297619,4,13440,0,0.007542756,0.483205829,6632,13725,,,1,14124,14124,, -51,053,51053,VA,Dinwiddie County,2024,1,10434.71443,520,78898,8911.293372,11958.13549,0,,,,2,,,,2,11379.69032,8140.048264,14619.33238,,,,,2,10721.11009,8850.329559,12591.89063,,,,,2,,0.171,,,0.147,0.197,3.817829584,,,3.000971229,4.650724675,5.297318161,,,4.251123639,6.354673805,0.085735403,116,1353,0.070816969,0.100653836,0,,,,,,,0.125,0.084486933,0.165513067,,,,0.075712881,0.059454252,0.09197151,,,,,,,0.185,,,0.151,0.222,0.423,,,0.344,0.498,8.4,0.082452575,0.078,,,0.25,,,0.208,0.299,0.324041937,9056,27947,,,0.163285756,,,0.130293767,0.198672646,0.355555556,16,45,0.278624636,0.431514197,433.5,121,27912,,,10.86229947,65,5984,8.383293404,13.84489235,,,,,,,4.80139677,2.396839968,8.591025104,,,,15.57935735,11.48698826,20.6559676,,,,,,,0.090728895,2014,22198,0.077622512,0.103835278,0.000143308,4,27912,,,6978,7.10202E-05,2,28161,,,14080.5,0.000213061,6,28161,,,4693.5,3637,,,,,,,4443,,3272,0.43,,,,,,,0.51,,0.4,0.48,,,,,,,0.43,,0.49,0.895431321,18051,20159,0.873530846,0.917331796,0.570236854,3828,6713,0.485691042,0.654782666,0.032633864,451,13820,,,0.166,913,,0.105234043,0.226765957,,,,,,,0.336532694,0.217198109,0.455867278,,,,0.07773232,0.025946227,0.129518413,3.990345074,133908,33558,3.484309376,4.496380773,0.221734551,1263,5696,0.142523356,0.300945745,6.090570364,17,27912,,,87.39718497,124,141881,72.01412712,102.7802428,,,,,,,62.92417637,41.81265822,90.94295461,,,,106.7429765,86.25919057,130.6263698,,,,8.1,,,,,1,,,,,0.11244594,1170,10405,0.082562558,0.142329321,0.085868499,0.058222232,0.113514765,0.021047573,0.004487864,0.037607283,0.006727535,0,0.015148238,0.82678932,11055,13371,0.784226211,0.869352429,,,,,,,0.762293116,0.692755488,0.831830744,,,,0.824623396,0.769023103,0.880223689,0.518,,13371,0.454839824,0.581160176,75.19489172,,,74.01708187,76.37270156,,,,,,,75.6279463,73.14466664,78.11122597,,,,74.39699604,73.00456473,75.78942736,,,,481.5364729,520,78898,437.0232312,526.0497147,,,,,,,490.7476627,406.5342809,574.9610445,,,,504.483259,447.7250417,561.2414763,,,,62.45364768,16,25619,35.69765586,101.4208111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.113,,,0.097,0.13,0.171,,,0.148,0.194,0.109,,,0.094,0.126,204.4,49,23972,,,0.078,2190,,,,0.082452575,2308.754539,28001,,,28.18754111,24,85144,18.06028946,41.94082683,,,,,,,,,,,,,35.86732864,21.59447485,56.01127663,,,,0.381,,,0.368,0.394,0.104042095,1740,16724,0.087361244,0.120722946,0.05151778,297,5765,0.036028418,0.067007141,3.55101E-05,1,28161,,,28161,0.88,281.6,320,,,,,,,,3.1864484,,,,,,,3.060078039,,3.277692303,,,,,,,,,,,0.026496396,,,,,-1736.151,,,,,0.848011873,49713,58623,0.754985377,0.941038368,72695,,,66041.7234,79348.2766,,,,,,,58952,47604.25532,70299.74468,72461,25413.85106,119508.1489,81325,73909.17021,88740.82979,,,,,,0.54251497,2265,4175,,,23.23378913,,,,,0.223124011,,72695,,,4.824259132,7,1451,,,7.07510221,14,197877,3.868024215,11.87081931,,,,,,,,,,,,,,,,,,,15.94109281,22,141881,9.867787696,24.3676537,15.50595217,,,,,,,,,,,,,24.38224468,14.89330849,37.65639939,,,,15.50595217,22,141881,9.717497672,23.47619793,,,,,,,,,,,,,18.16901728,10.38516324,29.50534578,,,,18.69848441,37,197877,13.16545863,25.77339769,,,,,,,16.00640256,7.675692191,29.43634421,,,,21.97569651,14.48212247,31.97348465,,,,15.38461539,,2600,,,26,14,0.680126183,15092,22190,,,0.677,,,,,18.00302481,,,,,0.785467791,8194,10432,0.749629898,0.821305685,0.104170864,1034,9926,0.074199008,0.134142721,0.814321319,8495,10432,0.779280419,0.849362219,28161,,,,,0.198572494,5592,28161,,,0.19374312,5456,28161,,,0.298036291,8393,28161,,,0.005042435,142,28161,,,0.009587728,270,28161,,,0.000816732,23,28161,,,0.0414758,1168,28161,,,0.627925145,17683,28161,,,0.008451974,225,26621,0,0.017308312,0.504136927,14197,28161,,,0.716642216,20028,27947,, -51,057,51057,VA,Essex County,2024,1,12276.04432,224,29408,9528.907437,15023.18119,0,,,,2,,,,2,16214.60833,11530.1716,22165.90337,,,,,2,10248.10012,6832.386624,13663.81362,,,,,2,,0.208,,,0.181,0.237,4.278516637,,,3.434562178,5.238641046,5.669831341,,,4.620274984,6.828099957,0.137150466,103,751,0.112546661,0.161754271,0,,,,,,,0.213836478,0.168771429,0.258901527,,,,0.076294278,0.049133898,0.103454658,,,,,,,0.207,,,0.172,0.246,0.439,,,0.359,0.521,7.1,0.165772547,0.098,,,0.275,,,0.228,0.326,0.530144353,5619,10599,,,0.137850775,,,0.108932931,0.169707474,0.25,3,12,0.099776571,0.4182543,576.9,61,10573,,,19.04761905,44,2310,13.84002916,25.57053952,,,,,,,23.61275089,14.42328168,36.46797863,,,,13.95348837,7.809661519,23.01415709,,,,,,,0.103579107,819,7907,0.088089745,0.119068469,0.000378322,4,10573,,,2643.25,0.00056444,6,10630,,,1771.666667,0.000376294,4,10630,,,2657.5,3040,,,,,,,3826,,2804,0.49,,,,,,,0.44,,0.5,0.48,,,,,,,0.44,,0.5,0.826070039,6369,7710,0.786714609,0.865425468,0.438318777,803,1832,0.32378153,0.552856025,0.034319956,189,5507,,,0.211,378,,0.129978723,0.292021277,,,,,,,0.446428571,0.241946087,0.650911056,0.180555556,0,0.637432792,0.172588833,0.043770904,0.301406762,5.484141791,105822,19296,3.747415506,7.220868076,0.394267171,729,1849,0.254891032,0.533643311,10.40385889,11,10573,,,97.39782417,53,54416,72.95765388,127.3987521,,,,,,,69.13921675,37.79905317,116.0038576,,,,131.2954484,93.36389877,179.4852002,,,,7.2,,,,,0,,,,,0.181318681,825,4550,0.136022011,0.226615352,0.144927536,0.102933737,0.186921335,0.024175824,0.00350111,0.044850539,0.012087912,0,0.028385429,0.696538178,2837,4073,0.57550242,0.817573937,,,,,,,0.628107075,0.417097436,0.839116713,,,,0.773924495,0.715244014,0.832604976,0.447,,4073,0.351911982,0.542088018,73.81102539,,,71.8783125,75.74373828,,,,,,,70.8002274,67.35123498,74.24921983,,,,75.12256286,72.74284368,77.50228204,,,,500.5775716,224,29408,426.870356,574.2847873,,,,,,,619.6757662,493.5682888,768.1813457,,,,453.9827021,358.4227872,549.5426171,,,,136.8925394,12,8766,70.73437268,239.1237172,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.13,,,0.113,0.149,0.187,,,0.164,0.211,0.129,,,0.111,0.148,226.4,21,9275,,,0.098,1050,,,,0.165772547,1848.529668,11151,,,30.7986079,10,32469,14.76912962,56.63973649,,,,,,,,,,,,,,,,,,,0.399,,,0.386,0.413,0.117433614,712,6063,0.098369784,0.136497444,0.059837728,118,1972,0.041965388,0.077710069,0.000752587,8,10630,,,1328.75,0.925,100.825,109,,,0.563786008,411,729,0.309510615,0.818061401,3.335487201,,,,,,,3.322064591,,3.411711429,,,,,,,,,,,0.003494573,,,,,-8087.688,,,,,0.561986504,35227,62683,0.393140509,0.730832498,58214,,,49816.38298,66611.61702,,,,49375,1790.489362,96959.51064,31667,12911.76596,50422.23404,124088,88785.3617,159390.6383,63725,48466.78723,78983.21277,,,,,,0.766690596,1068,1393,,,35.1122572,,,,,0.278627134,,58214,,,12.43339254,7,563,,,,,,,,,,,,,,,,,,,,,,,,,,20.99299796,11,54416,9.599335449,39.85124934,20.21464275,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,29.99908698,23,76669,19.0168478,45.01335989,,,,,,,,,,,,,35.75941069,20.01427071,58.9797098,,,,,,900,,,13,-888,0.695720721,6178,8880,,,0.504,,,,,15.0045214,,,,,0.653828088,2784,4258,0.588890977,0.718765199,0.178474451,723,4051,0.124264384,0.232684518,0.706669798,3009,4258,0.657581994,0.755757602,10630,,,,,0.173095014,1840,10630,,,0.24289746,2582,10630,,,0.359642521,3823,10630,,,0.010630292,113,10630,,,0.009783631,104,10630,,,0.002351834,25,10630,,,0.05042333,536,10630,,,0.542991533,5772,10630,,,0.003267003,33,10101,0,0.01218664,0.523518344,5565,10630,,,1,10599,10599,, -51,059,51059,VA,Fairfax County,2024,1,3592.265057,6805,3241511,3464.089289,3720.440824,0,,,,2,2698.907874,2441.901816,2955.913933,,5508.016846,5019.581029,5996.452664,,3741.793591,3428.003651,4055.583531,,3439.061563,3262.930979,3615.192146,,,,,2,,0.104,,,0.087,0.122,2.60539097,,,2.085413494,3.143892588,4.006964497,,,3.419442788,4.655608827,0.071533457,6674,93299,0.069879762,0.073187152,0,,,,0.087019418,0.082898589,0.091140248,0.101428571,0.095451348,0.107405795,0.070716498,0.067443972,0.073989024,0.057998598,0.055705988,0.060291207,,,,0.06043257,0.048653004,0.072212137,0.083,,,0.064,0.105,0.244,,,0.213,0.278,9.5,0.015694088,0.058,,,0.156,,,0.13,0.185,0.997566741,1147510,1150309,,,0.160397973,,,0.138304919,0.185173903,0.298642534,66,221,0.264723647,0.333024543,281,3203,1139720,,,7.846500075,1949,248391,7.498141797,8.194858352,,,,1.054496373,0.782667533,1.390222007,6.145841188,5.202337499,7.089344878,32.1682452,30.55370627,33.78278412,1.541051656,1.31141024,1.770693073,,,,2.087973274,1.4087468,2.980711678,0.074417781,72284,971327,0.068460334,0.080375228,0.001113431,1269,1139720,,,898.1245075,0.001162228,1323,1138331,,,860.4164777,0.002465891,2807,1138331,,,405.5329533,1732,,,,,,1274,2997,1893,1611,0.37,,,,,,0.32,0.31,0.28,0.39,0.52,,,,,0.39,0.54,0.38,0.42,0.54,0.935038714,731708,782543,0.931983776,0.938093651,0.837981315,264244,315334,0.824713581,0.851249049,0.024657676,15771,639598,,,0.062,15837,,0.04412766,0.07987234,0.12761194,0.044688343,0.210535538,0.061178684,0.047943014,0.074414354,0.156409281,0.128675122,0.18414344,0.136854252,0.119185469,0.154523035,0.042045455,0.03309899,0.05099192,,,,,,0.160070258,42377,264740,0.148960114,0.171180402,8.888147966,1013,1139720,,,36.39325421,2088,5737327,34.83222254,37.95428589,,,,21.50353031,18.82719825,24.17986237,35.8628352,30.94146984,40.78420057,27.86648668,24.49857717,31.2343962,46.39430059,43.89994588,48.8886553,,,,9.1,,,,,0,,,,,0.142867893,56955,398655,0.137691219,0.148044568,0.117331347,0.112551184,0.122111509,0.029699866,0.027160046,0.032239686,0.0057694,0.004633338,0.006905461,0.602602833,368623,611718,0.596467846,0.608737821,0.658661417,0.567096847,0.750225988,0.596853558,0.585851639,0.607855477,0.735536572,0.719492134,0.751581011,0.635610926,0.617287229,0.653934623,0.678735785,0.671280702,0.686190869,0.48,,611718,0.46981991,0.49018009,84.86967305,,,84.6718002,85.06754591,,,,88.80889708,88.12154366,89.49625049,83.46831269,82.52703147,84.40959392,87.65567026,86.66409097,88.64724955,84.2061115,83.97584592,84.43637707,,,,175.234103,6805,3241511,170.9991402,179.4690657,,,,132.400462,124.155952,140.6449721,259.7268053,243.0905641,276.3630466,159.8761568,148.4516801,171.3006335,177.8328817,172.023172,183.6425914,,,,29.94236096,352,1175592,26.81433188,33.07039003,,,,29.9697025,23.08032281,38.27064103,41.8298029,31.04688597,55.14738034,40.07543612,32.29803957,47.85283266,23.17506206,18.99352478,27.35659935,,,,3.701179554,353,95375,3.31507149,4.087287619,,,,3.901170351,3.052425536,4.912878416,5.523227143,4.172186427,7.17236986,4.533166979,3.682137627,5.38419633,2.225646293,1.791951562,2.732600458,,,,13.21003963,8.069035393,20.40183481,0.073,,,0.062,0.085,0.119,,,0.103,0.136,0.082,,,0.071,0.094,283.1,2702,954573,,,0.058,66170,,,,0.015694088,16976.70319,1081726,,,9.976443378,343,3438099,8.920635852,11.0322509,,,,3.882579298,2.558644222,5.648949035,16.83912251,12.78665171,21.7684707,5.97980935,4.141191809,8.356184195,12.33052139,10.66278323,13.99825954,,,,0.311,,,0.3,0.323,0.087297437,61768,707558,0.080148501,0.094446373,0.041806782,11562,276558,0.033466356,0.050147208,0.001285215,1463,1138331,,,778.0799727,0.92,13340,14500,,,0.042423827,2477,58387,0.033247714,0.05159994,3.237885723,,,,,,3.536371116,2.926219521,2.609208665,3.542766632,,,,,,,,,,,0.110513408,,,,,1591.645,,,,,0.778051007,83530,107358,0.755603091,0.800498923,144632,,,140907.4043,148356.5957,115104,96620.42553,133587.5745,142663,136970.0638,148355.9362,102056,96927.82979,107184.1702,99916,95553.95745,104278.0426,166267,163206.0638,169327.9362,,,,,,0.325279069,56123,172538,,,44.43022843,,,,,0.271731014,,144632,,,7.467591492,534,71509,,,1.758496563,141,8018213,1.468235996,2.048757129,,,,1.002747528,0.573156853,1.628399164,5.72463003,4.175584426,7.660005381,3.196303247,2.303614238,4.320473447,0.816948361,0.562349662,1.147299237,,,,8.43761097,498,5737327,7.686163146,9.189058793,8.680000286,,,,6.61827211,5.214445671,8.283754449,4.874947253,3.239367046,7.045656095,4.440287382,3.157478394,6.070019024,11.1933407,9.965877087,12.4208043,,,,4.967470043,285,5737327,4.390744883,5.544195203,,,,2.254402371,1.472650476,3.303221808,6.680332048,4.72740055,9.169277666,3.496555363,2.406867825,4.910463735,6.35347081,5.430407655,7.276533966,,,,4.315175963,346,8018213,3.860484781,4.769867145,,,,2.569540541,1.843946656,3.485871887,6.487914034,4.830678145,8.530408774,5.479376995,4.287275037,6.900368492,4.307545905,3.667499648,4.947592161,,,,7.555373257,,121900,,,751,170,0.806225947,601243,745750,,,0.776,,,,,244.4601141,,,,,0.685535142,281648,410844,0.679251647,0.691818637,0.121964217,49436,405332,0.116580506,0.127347928,0.959332496,394136,410844,0.956531467,0.962133525,1138331,,,,,0.226489483,257820,1138331,,,0.1511599,172070,1138331,,,0.10146258,115498,1138331,,,0.005609089,6385,1138331,,,0.209112288,238039,1138331,,,0.000874965,996,1138331,,,0.168334166,191620,1138331,,,0.485185768,552302,1138331,,,0.058455134,62910,1076210,0.055644966,0.061265302,0.499730746,568859,1138331,,,0.015417597,17735,1150309,, -51,061,51061,VA,Fauquier County,2024,1,6356.404487,846,201267,5661.62379,7051.185185,0,,,,2,,,,2,10946.8595,7464.595503,14429.12349,,4150.365657,2630.975804,6227.586296,1,6207.617877,5435.447563,6979.788192,,,,,2,,0.126,,,0.105,0.148,3.243671942,,,2.521364991,4.054130077,4.806636421,,,3.860618161,5.839964695,0.059252157,309,5215,0.052844229,0.065660085,0,,,,0.099009901,0.040760065,0.157259737,0.141176471,0.104163858,0.178189083,0.054666667,0.038396979,0.070936355,0.051541182,0.044653001,0.058429364,,,,,,,0.129,,,0.099,0.164,0.338,,,0.268,0.413,9.5,0.011543856,0.058,,,0.189,,,0.153,0.231,0.565806063,41288,72972,,,0.181774279,,,0.145639794,0.222598035,0.253968254,16,63,0.188911523,0.322352231,215.4,159,73815,,,8.094914416,131,16183,6.708692742,9.481136091,,,,,,,19.55555556,12.25536255,29.60734612,13.33333333,8.85990317,19.27037902,6.417834825,5.056523888,8.032877298,,,,,,,0.081852039,5033,61489,0.071128634,0.092575443,0.000447064,33,73815,,,2236.818182,0.00052234,39,74664,,,1914.461539,0.001178614,88,74664,,,848.4545455,2451,,,,,,,6163,,2111,0.36,,,,,,0.26,0.37,0.19,0.36,0.52,,,,,,0.54,0.44,0.37,0.53,0.922374248,46448,50357,0.91149231,0.933256186,0.683639545,11721,17145,0.636973946,0.730305145,0.025579304,967,37804,,,0.071,1197,,0.047170213,0.094829787,,,,0.110047847,0,0.483326472,0.040669857,0,0.081934573,0.288531187,0.193419566,0.383642809,0.035187383,0.021145127,0.04922964,3.730426165,214548,57513,3.42506191,4.035790419,0.15836383,2683,16942,0.121067585,0.195660075,11.37980085,84,73815,,,70.96017816,253,356538,62.21617093,79.70418539,,,,,,,87.49904892,55.46689126,131.291535,,,,74.97876786,64.86173541,85.09580031,,,,7.9,,,,,0,,,,,0.109079829,2685,24615,0.093200199,0.12495946,0.096498371,0.08027066,0.112726083,0.00828763,0.002400963,0.014174296,0.00893764,0.002509065,0.015366214,0.756175027,28808,38097,0.737365759,0.774984295,,,,0.780263158,0.623492607,0.937033709,0.576458753,0.484976636,0.667940869,0.693525587,0.589046929,0.798004244,0.712052398,0.682034713,0.742070082,0.596,,38097,0.555471844,0.636528156,79.47915888,,,78.80517798,80.15313979,,,,,,,74.5637794,71.88812221,77.23943659,84.95948926,79.71321336,90.20576516,79.5605243,78.82649957,80.29454903,,,,314.08363,846,201267,291.8659322,336.3013278,,,,,,,538.2143684,431.7421276,644.6866092,199.9160596,131.745943,290.8673708,308.3326546,283.7136121,332.9516971,,,,45.17144617,33,73055,31.09394507,63.43750499,,,,,,,,,,,,,34.17570108,20.2546864,54.01234173,,,,4.025301898,21,5217,2.491725318,6.15310154,,,,,,,,,,,,,,,,,,,,,,0.092,,,0.078,0.108,0.152,,,0.13,0.176,0.083,,,0.07,0.097,154.8,96,62027,,,0.058,4220,,,,0.011543856,752.6940502,65203,,,23.10557399,50,216398,17.14940237,30.46181881,,,,,,,,,,,,,25.92413655,18.8365173,34.8019433,,,,0.332,,,0.315,0.348,0.092402094,4096,44328,0.079295711,0.105508477,0.056281852,1016,18052,0.040792491,0.071771214,0.00068306,51,74664,,,1464,0.95,868.3,914,,,,,,,,3.173752495,,,,,,,2.711979246,2.818369481,3.353332879,,,,,,,,,,,0.040688227,,,,,3614.251,,,,,0.768373401,65009,84606,0.695430316,0.841316487,120301,,,108445.6809,132156.3192,156842,68215.44681,245468.5532,158015,117131.4255,198898.5745,91389,59769.25532,123008.7447,90125,58997.34043,121252.6596,130674,121777.1489,139570.8511,,,,,,0.276674025,3008,10872,,,26.05886273,,,,,0.165942095,,120301,,,10.28403526,42,4084,,,3.640857705,18,494389,2.157803022,5.754124843,,,,,,,,,,,,,3.311806591,1.763397529,5.663290132,,,,13.23451121,47,356538,9.577881385,17.82679975,13.18232559,,,,,,,,,,,,,15.20145169,10.75745196,20.86518012,,,,11.2190005,40,356538,8.015018439,15.27709444,,,,,,,,,,,,,11.37118754,7.777883862,16.05272396,,,,13.34981159,66,494389,10.32474331,16.98423356,,,,,,,,,,,,,14.26624377,10.77656723,18.52590419,,,,12.43589744,,7800,,,34,63,0.84979568,43671,51390,,,0.743,,,,,45.33580005,,,,,0.774979816,20158,26011,0.751001208,0.798958424,0.103998417,2627,25260,0.085124245,0.122872588,0.905924417,23564,26011,0.888569017,0.923279816,74664,,,,,0.22915997,17110,74664,,,0.177260795,13235,74664,,,0.072109718,5384,74664,,,0.006268081,468,74664,,,0.019058716,1423,74664,,,0.001419694,106,74664,,,0.114111218,8520,74664,,,0.765040716,57121,74664,,,0.022533135,1559,69187,0.016673449,0.028392821,0.498325833,37207,74664,,,0.574562846,41927,72972,, -51,063,51063,VA,Floyd County,2024,1,8161.560952,257,42488,6286.614978,10036.50693,0,,,,2,,,,2,,,,2,,,,2,7789.054696,5974.163685,9603.945708,,,,,2,,0.155,,,0.129,0.184,3.843510368,,,3.067159192,4.689354782,5.58297781,,,4.555242329,6.646888401,0.077399381,75,969,0.06057381,0.094224951,0,,,,,,,,,,,,,0.074479737,0.057449029,0.091510446,,,,,,,0.178,,,0.138,0.218,0.318,,,0.25,0.391,8.3,0.093978673,0.074,,,0.219,,,0.174,0.267,0.27080641,4191,15476,,,0.165227315,,,0.132725287,0.201494878,0.571428571,4,7,0.387251166,0.710103252,109.2,17,15566,,,14.75634866,43,2914,10.6792427,19.87670481,,,,,,,,,,,,,14.48170732,10.24811801,19.87727474,,,,,,,0.08944468,1055,11795,0.075146808,0.103742552,0.000321213,5,15566,,,3113.2,0.000192074,3,15619,,,5206.333333,0.001088418,17,15619,,,918.7647059,1872,,,,,,,,,1845,0.37,,,,,,,,,0.37,0.3,,,,,,,0.35,,0.3,0.908437447,10616,11686,0.883235709,0.933639184,0.667180753,2163,3242,0.549375527,0.784985978,0.025103123,213,8485,,,0.154,446,,0.095617021,0.212382979,,,,,,,,,,0.112903226,0,0.475269521,0.090737952,0.040799936,0.140675968,4.964701216,112659,22692,4.025719895,5.903682538,0.155215379,436,2809,0.070714964,0.239715795,13.4909418,21,15566,,,106.8131533,84,78642,85.19835424,132.2419518,,,,,,,,,,,,,106.550099,84.22343174,132.9793457,,,,6.9,,,,,0,,,,,0.119459053,795,6655,0.072202059,0.166716048,0.114438503,0.065212887,0.163664118,0.006010518,0,0.014608625,0.002253944,0,0.008413862,0.794171941,6023,7584,0.753530533,0.834813349,,,,,,,,,,,,,0.754444181,0.708543883,0.800344479,0.574,,7584,0.487446683,0.660553317,77.56255657,,,76.0452748,79.07983833,,,,,,,,,,,,,77.75511206,76.2580897,79.25213442,,,,381.0303211,257,42488,328.6205336,433.4401086,,,,,,,,,,,,,378.200609,324.5554958,431.8457222,,,,97.65625,13,13312,51.99784023,166.9951616,,,,,,,,,,,,,84.30992328,40.42988531,155.0489507,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.111,,,0.093,0.13,0.176,,,0.15,0.201,0.091,,,0.077,0.106,147.7,20,13539,,,0.074,1150,,,,0.093978673,1435.90014,15279,,,,,,,,,,,,,,,,,,,,,,,,,,0.344,,,0.326,0.361,0.101612721,901,8867,0.083740381,0.119485062,0.054220779,167,3080,0.036348439,0.07209312,0.00070427,11,15619,,,1419.909091,0.975,143.325,147,,,,,,,,2.924322919,,,,,,,,,2.978192464,,,,,,,,,,,0.029862432,,,,,-14.2998,,,,,1.00146943,47026,46957,0.760476278,1.242462581,62561,,,56079.29787,69042.70213,,,,,,,42193,28451.55319,55934.44681,,,,58892,46884.17021,70899.82979,,,,,,0.510698198,907,1776,,,61.13316618,,,,,0.22934416,,62561,,,8.955223881,6,670,,,,,,,,,,,,,,,,,,,,,,,,,,20.29083117,20,78642,11.59796321,32.95103859,25.43170316,,,,,,,,,,,,,18.93059115,10.59530816,31.22313123,,,,15.2590219,12,78642,7.88455928,26.65444044,,,,,,,,,,,,,15.02629602,7.501072833,26.88619427,,,,17.2689595,19,110024,10.3970417,26.9676194,,,,,,,,,,,,,17.54916203,10.40074563,27.7352419,,,,24.66666667,,1500,,,16,21,0.752358114,9412,12510,,,0.629,,,,,0.462813445,,,,,0.862809917,5742,6655,0.824783169,0.900836666,0.099186483,634,6392,0.046035397,0.15233757,0.782870023,5210,6655,0.727113559,0.838626486,15619,,,,,0.187463986,2928,15619,,,0.246046482,3843,15619,,,0.018695179,292,15619,,,0.002560983,40,15619,,,0.005250016,82,15619,,,0.000384148,6,15619,,,0.029259236,457,15619,,,0.926755874,14475,15619,,,0.004707148,70,14871,0,0.012748103,0.493373455,7706,15619,,,1,15476,15476,, -51,065,51065,VA,Fluvanna County,2024,1,6629.034841,340,75485,5445.793697,7812.275984,0,,,,2,,,,2,7840.463404,4853.370422,11984.98117,1,,,,2,6218.664181,4928.663031,7508.665332,,,,,2,,0.13,,,0.107,0.154,3.36696881,,,2.640756242,4.194817758,4.934630181,,,3.976283944,5.926554478,0.07247191,129,1780,0.060427253,0.084516568,0,,,,,,,0.094827586,0.057127262,0.13252791,,,,0.068648266,0.055463979,0.081832553,,,,,,,0.135,,,0.104,0.171,0.372,,,0.298,0.45,9.5,0.031577055,0.05,,,0.2,,,0.161,0.244,0.518477742,14128,27249,,,0.169368587,,,0.13644656,0.207135006,0.210526316,4,19,0.095274272,0.345173375,241.7,67,27723,,,9.803921569,53,5406,7.343810013,12.8237708,,,,,,,,,,,,,9.254498715,6.481737125,12.81212712,,,,,,,0.07546627,1574,20857,0.063551377,0.087381164,0.000216427,6,27723,,,4620.5,0.000106538,3,28159,,,9386.333333,0.001100891,31,28159,,,908.3548387,2053,,,,,,,3982,,1875,0.54,,,,,,,0.54,,0.55,0.59,,,,,,0.54,0.46,0.5,0.6,0.932855731,18881,20240,0.91418677,0.951524692,0.678686684,4837,7127,0.594889103,0.762484266,0.025635623,365,14238,,,0.092,488,,0.057446809,0.126553192,,,,0.307086614,0,0.808295675,,,,0.282722513,0.019073196,0.546371831,0.063482467,0.012480872,0.114484062,3.703129864,154639,41759,3.039919529,4.366340199,0.160582596,871,5424,0.090512661,0.230652531,6.492803809,18,27723,,,75.93070402,103,135650,61.26662185,90.59478619,,,,,,,74.15097138,41.50173579,122.3007508,,,,80.57253898,64.3584824,99.62919221,,,,7.4,,,,,0,,,,,0.104867035,1045,9965,0.073010569,0.1367235,0.089068826,0.058221458,0.119916194,0.015052684,0,0.03018823,0.005017562,0,0.01125114,0.756836828,9963,13164,0.715644344,0.798029311,,,,,,,,,,,,,0.567039106,0.500349812,0.633728401,0.588,,13164,0.504680895,0.671319106,79.6876402,,,78.59172379,80.78355661,,,,,,,76.10052547,73.41114652,78.78990441,,,,80.39692547,79.17124906,81.62260188,,,,312.7427218,340,75485,277.1445841,348.3408595,,,,,,,433.1720428,329.750629,558.7603751,,,,295.3897956,256.327296,334.4522952,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.095,,,0.08,0.111,0.158,,,0.135,0.182,0.086,,,0.072,0.1,183,44,24047,,,0.05,1340,,,,0.031577055,811.2461106,25691,,,12.13371352,10,82415,5.818587267,22.31433118,,,,,,,,,,,,,,,,,,,0.349,,,0.333,0.365,0.086502514,1342,15514,0.072204642,0.100800386,0.044646033,251,5622,0.030348161,0.058943906,0.000426152,12,28159,,,2346.583333,0.94,254.74,271,,,,,,,,3.375327643,,,,,,,2.843610112,,3.508942317,,,,,,,,,,,0.003135411,,,,,2276.334,,,,,0.862865742,51608,59810,0.733804974,0.991926509,88162,,,77769.82979,98554.17021,,,,,,,65536,37782.6383,93289.3617,,,,94296,84855.82979,103736.1702,,,,,,0.42745098,1308,3060,,,26.1320979,,,,,0.198123908,,88162,,,7.162041182,8,1117,,,,,,,,,,,,,,,,,,,,,,,,,,16.48066715,22,135650,10.06681965,25.45305375,16.21820863,,,,,,,,,,,,,19.16405671,11.35783456,30.28747173,,,,12.53225212,17,135650,7.300498688,20.06534966,,,,,,,,,,,,,13.27077113,7.255254065,22.26609898,,,,20.72748145,39,188156,14.73926555,28.33514949,,,,,,,,,,,,,19.74468085,13.22332265,28.35665528,,,,10.38461539,,2600,,,18,9,0.746924346,15846,21215,,,0.767,,,,,4.205032392,,,,,0.884158901,9014,10195,0.852216279,0.916101524,0.079544288,775,9743,0.051586959,0.107501618,0.89435998,9118,10195,0.867355823,0.921364138,28159,,,,,0.191768174,5400,28159,,,0.217088675,6113,28159,,,0.14382613,4050,28159,,,0.004794204,135,28159,,,0.009304308,262,28159,,,0.001171917,33,28159,,,0.047196278,1329,28159,,,0.768848326,21650,28159,,,0.00330071,86,26055,0,0.00768742,0.532085657,14983,28159,,,0.63943631,17424,27249,, -51,067,51067,VA,Franklin County,2024,1,9513.743583,991,150722,8444.954318,10582.53285,0,,,,2,,,,2,12988.27464,8883.970237,18335.56844,,,,,2,9417.036743,8269.620508,10564.45298,,,,,2,,0.163,,,0.137,0.195,3.875766551,,,3.062238047,4.743589297,5.319078657,,,4.316175268,6.33145011,0.08467279,295,3484,0.075428424,0.093917156,0,,,,,,,0.156779661,0.110390612,0.20316871,0.062893082,0.025157285,0.100628878,0.080315997,0.070651428,0.089980567,,,,,,,0.178,,,0.138,0.222,0.363,,,0.293,0.436,8,0.079447083,0.094,,,0.232,,,0.19,0.284,0.439286304,23931,54477,,,0.154274605,,,0.123299259,0.188401503,0.368421053,21,57,0.301110878,0.4346741,269.4,148,54938,,,18.14155523,213,11741,15.70519902,20.57791144,,,,,,,19.75128018,13.01621809,28.73707567,24.91694352,13.94582414,41.09670909,17.90722762,15.18308161,20.63137363,,,,,,,0.087756407,3568,40658,0.074650024,0.10086279,0.000345844,19,54938,,,2891.473684,0.000181574,10,55074,,,5507.4,0.001071286,59,55074,,,933.4576271,2016,,,,,,,2845,,1932,0.44,,,,,,,0.54,,0.44,0.33,,,,,,,0.21,,0.34,0.896847491,35760,39873,0.877676707,0.916018275,0.577906645,6079,10519,0.509404122,0.646409169,0.029490516,782,26517,,,0.189,1866,,0.134191489,0.243808511,,,,,,,0.250322581,0.167749589,0.332895572,0.258680556,0.115978899,0.401382212,0.222691162,0.17106632,0.274316004,4.676055266,122854,26273,4.024925136,5.327185396,0.19251389,1975,10259,0.139094305,0.245933476,8.919145218,49,54938,,,107.581839,301,279787,95.42804738,119.7356307,,,,,,,123.9271125,81.66874802,180.3074423,,,,109.9861697,96.8179594,123.1543799,,,,7.5,,,,,1,,,,,0.117685878,2675,22730,0.09526099,0.140110765,0.104166667,0.081652357,0.126680976,0.014078311,0.007726012,0.020430609,0.001099868,0,0.002954321,0.796784621,18734,23512,0.766932528,0.826636713,,,,,,,0.75884017,0.606707743,0.910972597,,,,0.750304013,0.713900767,0.786707259,0.542,,23512,0.488888435,0.595111566,76.72607529,,,75.89532328,77.5568273,,,,,,,74.06704112,70.78830267,77.34577958,,,,76.69853196,75.81706446,77.57999947,,,,421.9125295,991,150722,391.9149063,451.9101527,,,,,,,561.0718702,437.3830483,708.8805542,,,,417.9871443,386.2242477,449.7500409,,,,67.29899682,32,47549,46.03246401,95.00610335,,,,,,,,,,,,,72.84458088,48.40469498,105.2807012,,,,7.979481334,28,3509,5.302307397,11.53257223,,,,,,,,,,,,,8.10110175,5.242605913,11.95882427,,,,,,,0.115,,,0.097,0.135,0.175,,,0.15,0.201,0.098,,,0.083,0.114,127.3,61,47921,,,0.094,5140,,,,0.079447083,4461.668749,56159,,,34.69999462,58,167147,26.34916073,44.8577897,,,,,,,,,,,,,37.8014667,28.477238,49.20380487,,,,0.321,,,0.305,0.336,0.101086814,3088,30548,0.085597453,0.116576176,0.048594793,517,10639,0.033105431,0.064084154,0.000562879,31,55074,,,1776.580645,0.89,434.32,488,,,,,,,,3.190020812,,,,,,,2.792439887,2.926961917,3.289649698,,,,,,,,,,,0.03037482,,,,,643.7324,,,,,0.747026211,42579,56998,0.652632281,0.841420142,68089,,,61545.34043,74632.65957,72065,41164.91489,102965.0851,118088,54319.48936,181856.5106,53846,41815.53192,65876.46809,,,,67813,62440.57447,73185.42553,,,,,,0.544748931,3439,6313,,,47.02555279,,,,,0.210724199,,68089,,,11.07325383,26,2348,,,7.650719168,30,392120,5.161908095,10.92187733,,,,,,,,,,,,,6.731799264,4.267383273,10.10100418,,,,17.09261138,46,279787,12.09574911,23.46094455,16.44107839,,,,,,,,,,,,,16.97649604,11.75671701,23.72295161,,,,16.44107839,46,279787,12.03693574,21.93009458,,,,,,,,,,,,,16.82624237,12.07480203,22.82669773,,,,18.10670203,71,392120,14.14148451,22.83914085,,,,,,,,,,,,,17.56121547,13.40105746,22.60476536,,,,43.1372549,,5100,,,191,29,0.659942235,29704,45010,,,0.616,,,,,13.62654357,,,,,0.799518663,17607,22022,0.773384369,0.825652957,0.097125726,2041,21014,0.075934182,0.118317269,0.794523658,17497,22022,0.763537691,0.825509626,55074,,,,,0.182336493,10042,55074,,,0.251516142,13852,55074,,,0.077713622,4280,55074,,,0.005229328,288,55074,,,0.005483531,302,55074,,,0.000599194,33,55074,,,0.031049134,1710,55074,,,0.867269492,47764,55074,,,0.004784324,251,52463,0.001044381,0.008524267,0.501979155,27646,55074,,,0.900673679,49066,54477,, -51,069,51069,VA,Frederick County,2024,1,6841.92429,1136,253505,6213.192257,7470.656322,0,,,,2,,,,2,6662.013806,3948.331598,10528.85398,1,4056.78545,2673.447174,5902.40984,,7185.330691,6471.981068,7898.680315,,,,,2,,0.142,,,0.119,0.17,3.455029145,,,2.74113823,4.259675977,4.887604861,,,3.96249577,5.843131645,0.074002382,497,6716,0.067741601,0.080263163,0,,,,0.072625698,0.034606562,0.110644835,0.101449275,0.065828997,0.137069553,0.076608785,0.059947945,0.093269624,0.071428571,0.064396038,0.078461105,,,,0.118811881,0.055707482,0.181916281,0.157,,,0.121,0.196,0.334,,,0.27,0.399,8.9,0.049745222,0.067,,,0.22,,,0.178,0.267,0.778404927,71161,91419,,,0.18254144,,,0.147452927,0.220769375,0.391304348,27,69,0.331429625,0.449860522,243.3,228,93717,,,14.50279925,272,18755,12.77925097,16.22634754,,,,,,,,,,22.75402119,17.27808226,29.41484886,13.30892191,11.41148193,15.20636188,,,,14.49275362,7.488617281,25.31592397,0.089382976,6794,76010,0.077468082,0.10129787,0.000448158,42,93717,,,2231.357143,0.000126248,12,95051,,,7920.916667,0.000873215,83,95051,,,1145.192771,3491,,,,,,,2503,,3478,0.41,,,,,,0.37,0.48,0.19,0.41,0.5,,,,,,0.68,0.4,0.36,0.51,0.886854592,56819,64068,0.872617875,0.901091309,0.608049644,13914,22883,0.561451919,0.654647369,0.024279859,1250,51483,,,0.091,1914,,0.060021277,0.121978723,,,,0.071593534,0,0.28031799,0.07223796,0,0.145119176,0.229881657,0.16195747,0.297805844,0.063407026,0.044213457,0.082600595,3.562368789,162900,45728,3.30723138,3.817506198,0.196332565,4090,20832,0.15573197,0.23693316,7.682704312,72,93717,,,72.38500806,325,448988,64.51522034,80.25479579,,,,,,,,,,23.4945845,11.26656649,43.2073774,81.17169578,71.97090625,90.37248531,,,,7.7,,,,,0,,,,,0.095030379,3050,32095,0.079730112,0.110330645,0.079949914,0.06538284,0.094516988,0.011372488,0.005508898,0.017236078,0.0099704,0.003949363,0.015991438,0.797240511,35478,44501,0.781643883,0.81283714,,,,,,,0.759249873,0.640405405,0.878094341,0.699066874,0.603941794,0.794191954,0.787956459,0.760679505,0.815233412,0.405,,44501,0.371702189,0.438297811,78.72228658,,,78.14458895,79.29998421,,,,94.93119949,75.29532565,114.5670733,78.04376125,74.98178293,81.10573956,84.55230558,80.55870726,88.54590391,78.33457149,77.71015856,78.95898441,,,,335.0181683,1136,253505,314.6443011,355.3920355,,,,,,,299.6685757,209.8841863,414.8676231,195.2042292,133.5195483,275.570128,352.8993795,330.0586009,375.7401582,,,,34.2825546,31,90425,23.29333257,48.66134974,,,,,,,,,,,,,30.29017992,18.50202881,46.78072621,,,,5.47823512,37,6754,3.857183087,7.551025487,,,,,,,,,,,,,4.575786463,2.931792727,6.808407549,,,,,,,0.102,,,0.085,0.12,0.16,,,0.137,0.184,0.09,,,0.076,0.104,143.2,113,78927,,,0.067,6050,,,,0.049745222,3895.299619,78305,,,22.2506739,61,274149,17.02000247,28.58192148,,,,,,,,,,,,,25.0925287,18.95462652,32.58473568,,,,0.337,,,0.32,0.353,0.104911692,5750,54808,0.08942233,0.120401053,0.050610742,1127,22268,0.03631287,0.064908614,0.000357703,34,95051,,,2795.617647,,,,,,,,,,,3.106480502,,,,,,,2.72687489,2.679043299,3.243771249,,,,,,,,,,,0.038747898,,,,,,,,,,0.816695786,55158,67538,0.737590531,0.895801042,97091,,,91280.10638,102901.8936,,,,107991,66108.95745,149873.0426,94186,73504.12766,114867.8723,64646,49414,79878,94054,87282.76596,100825.234,,,,,,0.355309311,4457,12544,,,30.51592652,,,,,0.19275731,,97091,,,4.032258065,21,5208,,,1.7839535,11,616608,0.89054316,3.191985591,,,,,,,,,,,,,,,,,,,16.35152902,76,448988,12.79406441,20.59204464,16.92695573,,,,,,,,,,,,,17.35142272,13.30323631,22.24374084,,,,10.91343199,49,448988,8.073817062,14.42813585,,,,,,,,,,,,,10.85908974,7.757892914,14.78699813,,,,12.97420728,80,616608,10.28773947,16.14752403,,,,,,,,,,,,,14.32082975,11.22524447,18.00629335,,,,21.44329897,,9700,,,167,41,0.754031884,48718,64610,,,0.76,,,,,43.4011149,,,,,0.774527345,25973,33534,0.751127397,0.797927294,0.084286722,2748,32603,0.069450158,0.099123286,0.872875291,29271,33534,0.855735327,0.890015255,95051,,,,,0.224374283,21327,95051,,,0.190571378,18114,95051,,,0.044912731,4269,95051,,,0.006796351,646,95051,,,0.022650998,2153,95051,,,0.001009984,96,95051,,,0.113959874,10832,95051,,,0.793815951,75453,95051,,,0.023457402,2035,86753,0.018031654,0.02888315,0.499479227,47476,95051,,,0.394097507,36028,91419,, -51,071,51071,VA,Giles County,2024,1,11253.04018,420,45208,9406.452908,13099.62745,0,,,,2,,,,2,,,,2,,,,2,11745.44583,9795.481967,13695.4097,,,,,2,,0.164,,,0.134,0.195,4.072096077,,,3.208847629,5.00921739,5.470881491,,,4.35395514,6.597280998,0.084581498,96,1135,0.068393033,0.100769963,0,,,,,,,,,,,,,0.085299456,0.068807283,0.101791628,,,,,,,0.19,,,0.147,0.232,0.355,,,0.283,0.437,8.9,0.003608224,0.089,,,0.234,,,0.188,0.284,0.838922976,14083,16787,,,0.164665545,,,0.131390742,0.203197141,0.277777778,5,18,0.152183671,0.410166986,181.1,30,16562,,,25.10460251,84,3346,20.02441415,31.08120615,,,,,,,,,,,,,27.03583062,21.53388818,33.51497974,,,,,,,0.086066527,1110,12897,0.072960144,0.09917291,0.000483034,8,16562,,,2070.25,0.000364675,6,16453,,,2742.166667,0.000425454,7,16453,,,2350.428571,3346,,,,,,,,,3393,0.49,,,,,,,,,0.49,0.33,,,,,,,0.26,,0.34,0.904055391,10968,12132,0.88312984,0.924980941,0.50336655,1869,3713,0.416629403,0.590103697,0.031400074,255,8121,,,0.167,529,,0.107425532,0.226574468,,,,,,,0.979166667,0.126430439,1,0.122807018,0,0.499579694,0.093760209,0.045131588,0.14238883,3.714680675,107488,28936,2.946931407,4.482429942,0.158239143,532,3362,0.095973875,0.220504412,10.86825263,18,16562,,,106.4262311,89,83626,85.46900263,130.9666353,,,,,,,,,,,,,112.5656106,90.3994285,138.52167,,,,7,,,,,1,,,,,0.100521221,675,6715,0.06852873,0.132513712,0.084147258,0.052546422,0.115748093,0.009530901,0.001988973,0.017072829,0.00893522,0.000519261,0.017351178,0.85457737,6329,7406,0.827062962,0.882091777,,,,,,,,,,,,,0.844824121,0.788838538,0.900809703,0.511,,7406,0.430585501,0.591414499,72.78759524,,,71.46614224,74.10904825,,,,,,,,,,,,,72.34145372,70.97164642,73.71126102,,,,602.3524591,420,45208,540.2373279,664.4675904,,,,,,,,,,,,,620.0718875,555.2206344,684.9231406,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.117,,,0.099,0.137,0.177,,,0.151,0.202,0.096,,,0.08,0.112,83.8,12,14314,,,0.089,1500,,,,0.003608224,62.37176775,17286,,,24.02642907,12,49945,12.41480651,41.96933637,,,,,,,,,,,,,25.44097693,13.14572403,44.44026681,,,,0.344,,,0.325,0.362,0.099783528,968,9701,0.083102676,0.116464379,0.046203649,157,3398,0.031905777,0.060501522,0.001033246,17,16453,,,967.8235294,0.92,201.48,219,,,,,,,,3.088298246,,,,,,,,,3.0821938,,,,,,,,,,,0.017027904,,,,,1417.667,,,,,0.767827884,43112,56148,0.649605409,0.886050358,62716,,,54376.76596,71055.23404,,,,,,,,,,57738,37555.3617,77920.6383,62355,57772.53192,66937.46809,,,,,,0.328514739,1159,3528,,,26.97550464,,,,,0.228777346,,62716,,,9.456264775,8,846,,,,,,,,,,,,,,,,,,,,,,,,,,25.43468925,21,83626,15.31334444,39.71941791,25.11180733,,,,,,,,,,,,,26.94194417,16.22081036,42.07318318,,,,23.91600698,20,83626,14.60851839,36.93633308,,,,,,,,,,,,,25.29564283,15.4512358,39.06706874,,,,11.94630987,14,117191,6.531158772,20.04387805,,,,,,,,,,,,,12.62216452,6.900654799,21.17784731,,,,16.25,,1600,,,11,15,0.696622391,9178,13175,,,0.607,,,,,24.52246111,,,,,0.776853473,5323,6852,0.741336138,0.812370809,0.078687529,518,6583,0.050503003,0.106872055,0.804582604,5513,6852,0.768380365,0.840784842,16453,,,,,0.195405093,3215,16453,,,0.223485079,3677,16453,,,0.01647116,271,16453,,,0.003282076,54,16453,,,0.005956361,98,16453,,,0.000243117,4,16453,,,0.019631678,323,16453,,,0.942138212,15501,16453,,,0.005409486,86,15898,0,0.013318299,0.499848052,8224,16453,,,1,16787,16787,, -51,073,51073,VA,Gloucester County,2024,1,8294.893726,647,104636,7204.291843,9385.495608,0,,,,2,,,,2,17994.94025,11277.33325,27244.55579,1,,,,2,7852.516422,6712.944745,8992.0881,,,,,2,,0.141,,,0.117,0.167,3.67282287,,,2.907947144,4.549008595,5.0870332,,,4.156715791,6.113692099,0.076332795,189,2476,0.0658737,0.08679189,0,,,,,,,0.156028369,0.096130382,0.215926355,,,,0.071162791,0.060295204,0.082030378,,,,,,,0.161,,,0.126,0.199,0.351,,,0.287,0.419,9,0.01560726,0.081,,,0.207,,,0.167,0.247,0.747436129,28934,38711,,,0.161627069,,,0.130971559,0.196714767,0.333333333,8,24,0.22460658,0.441421063,256,100,39069,,,13.12598088,92,7009,10.58139318,16.09785034,,,,,,,,,,,,,12.64245014,9.87385845,15.94673061,,,,,,,0.090168404,2811,31175,0.077062021,0.103274787,0.000460723,18,39069,,,2170.5,0.000354493,14,39493,,,2820.928571,0.002101638,83,39493,,,475.8192771,2164,,,,,,,2600,,2137,0.52,,,,,,0.35,0.57,,0.51,0.51,,,,,,0.23,0.41,0.36,0.52,0.899441143,25429,28272,0.881609222,0.917273065,0.642002415,5848,9109,0.568244468,0.715760363,0.027183373,531,19534,,,0.118,903,,0.073914894,0.162085106,,,,,,,0.214417745,0,0.434155544,,,,0.092669433,0.040205196,0.14513367,3.609208768,145877,40418,3.318203175,3.900214362,0.212590299,1648,7752,0.140008568,0.285172031,8.446594487,33,39069,,,82.75115772,156,188517,69.76538341,95.73693203,,,,,,,96.30597785,52.65137426,161.5850665,,,,85.8406747,71.46630169,100.2150477,,,,7.2,,,,,0,,,,,0.101757945,1505,14790,0.077322986,0.126192903,0.087874659,0.063485221,0.112264098,0.006693712,0.001033596,0.012353828,0.008451657,0.001282493,0.01562082,0.846984227,16163,19083,0.817396386,0.876572068,,,,,,,,,,,,,0.788567328,0.746909425,0.830225232,0.586,,19083,0.523415611,0.648584389,76.5793078,,,75.69985612,77.45875949,,,,,,,69.15550359,64.41074497,73.90026222,,,,76.82984448,75.91342643,77.74626254,,,,416.4690746,647,104636,381.7698133,451.1683358,,,,,,,747.5477301,576.941556,952.8109479,,,,399.5746022,363.0068084,436.1423961,,,,45.30216544,15,33111,25.3552781,74.71903256,,,,,,,,,,,,,44.91017964,23.20574517,78.44904584,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.103,,,0.088,0.119,0.161,,,0.138,0.185,0.089,,,0.076,0.104,157.9,53,33572,,,0.081,3120,,,,0.01560726,575.2523724,36858,,,22.83185219,26,113876,14.91452388,33.4539535,,,,,,,,,,,,,24.89962339,15.95365854,37.04866589,,,,0.367,,,0.35,0.383,0.10187679,2383,23391,0.086387429,0.117366152,0.056734993,465,8196,0.040054142,0.073415844,0.000784949,31,39493,,,1273.967742,0.88,378.4,430,,,,,,,,3.243583414,,,,,,,2.754671402,3.291430035,3.318175019,,,,,,,,,,,0.008479516,,,,,3147.537,,,,,0.734390349,47847,65152,0.629199042,0.839581655,76960,,,67001.53192,86918.46809,,,,,,,46471,24628.61702,68313.38298,108033,55169,160897,88235,80322.31915,96147.68085,,,,,,0.414416203,2087,5036,,,21.7794559,,,,,0.259394491,,76960,,,5.364806867,10,1864,,,,,,,,,,,,,,,,,,,,,,,,,,12.97338351,25,188517,8.224012275,19.46644514,13.26140348,,,,,,,,,,,,,12.8690245,7.860734494,19.87516461,,,,12.2004912,23,188517,7.734064852,18.30672719,,,,,,,,,,,,,11.27833682,6.684257184,17.82463456,,,,13.69477392,36,262874,9.591651292,18.95933964,,,,,,,,,,,,,13.01972264,8.719512585,18.6984935,,,,20,,3500,,,55,15,0.747910723,22284,29795,,,0.698,,,,,23.03668675,,,,,0.791142223,11754,14857,0.754120811,0.828163634,0.081441739,1184,14538,0.059472439,0.103411039,0.872787238,12967,14857,0.84030182,0.905272657,39493,,,,,0.198085737,7823,39493,,,0.209657408,8280,39493,,,0.076064113,3004,39493,,,0.005292077,209,39493,,,0.00939407,371,39493,,,0.000734307,29,39493,,,0.045071279,1780,39493,,,0.840984478,33213,39493,,,0.001080468,40,37021,0,0.004602536,0.505279417,19955,39493,,,0.725711038,28093,38711,, -51,075,51075,VA,Goochland County,2024,1,6539.206786,330,67184,5317.002563,7761.41101,0,,,,2,,,,2,10291.77048,7352.591722,14014.47033,,,,,2,6229.168467,4777.320967,7681.015967,,,,,2,,0.118,,,0.098,0.142,3.027436469,,,2.341610768,3.846764911,4.552971656,,,3.615429904,5.57147542,0.070376432,86,1222,0.056035161,0.084717704,0,,,,,,,0.136054422,0.080630542,0.191478302,,,,0.061440678,0.04612173,0.076759626,,,,,,,0.123,,,0.093,0.156,0.336,,,0.264,0.415,9.6,0.023759453,0.047,,,0.175,,,0.137,0.215,0.633801108,15672,24727,,,0.164610615,,,0.131483637,0.202974345,0.2,5,25,0.10034726,0.316172705,196.2,50,25488,,,5.432322318,24,4418,3.480591411,8.082865005,,,,,,,17.08074534,8.526646533,30.56217161,,,,3.286525247,1.640621562,5.880501498,,,,,,,0.048356833,902,18653,0.040016407,0.056697258,0.000706215,18,25488,,,1416,0.000268107,7,26109,,,3729.857143,0.001225631,32,26109,,,815.90625,2173,,,,,,,4132,,1733,0.55,,,,,,,0.5,,0.56,0.55,,,,,,,0.4,,0.58,0.942059744,17755,18847,0.92676369,0.957355799,0.70281827,3616,5145,0.609928077,0.795708463,0.027238995,323,11858,,,0.078,323,,0.048212766,0.107787234,,,,,,,,,,,,,0.037155669,0.004610028,0.069701311,4.127007469,213292,51682,3.396777407,4.85723753,0.161236224,673,4174,0.076888999,0.245583449,13.73195229,35,25488,,,76.08632035,91,119601,61.25995894,93.41714109,,,,,,,86.82910946,49.63033838,141.0050339,,,,76.26044553,59.56004066,96.19217536,,,,8,,,,,0,,,,,0.09184845,800,8710,0.061684624,0.122012276,0.066550926,0.040557583,0.092544269,0.01435132,0,0.032379863,0.012055109,0.001809602,0.022300617,0.772735299,8752,11326,0.735606053,0.809864546,,,,0.951871658,0.900716008,1,0.773057788,0.510292332,1,,,,0.786382095,0.749546939,0.82321725,0.505,,11326,0.432701038,0.577298962,80.05905058,,,78.95206443,81.16603672,,,,,,,74.72253722,72.13787985,77.30719459,,,,80.87001334,79.57511006,82.16491663,,,,305.2407764,330,67184,268.3660039,342.1155489,,,,,,,524.6370809,409.7459129,661.7582908,,,,276.2053996,235.8685218,316.5422774,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.087,,,0.073,0.102,0.144,,,0.123,0.167,0.081,,,0.069,0.095,243.2,55,22617,,,0.047,1150,,,,0.023759453,515.9840336,21717,,,16.28841351,12,73672,8.416460947,28.45258042,,,,,,,,,,,,,17.44591766,8.365995632,32.08366372,,,,0.336,,,0.319,0.353,0.05280322,761,14412,0.043271305,0.062335134,0.033921,152,4481,0.022006106,0.045835893,0.000229806,6,26109,,,4351.5,0.96,204.48,213,,,,,,,,3.318902902,,,,,,,2.629228012,,3.459015932,,,,,,,,,,,0.013516008,,,,,3727.53,,,,,0.706795031,56897,80500,0.589831044,0.823759018,113617,,,100022.1064,127211.8936,,,,140455,40931.08511,239978.9149,68879,62409.21277,75348.78723,116736,44423.31915,189048.6809,110638,100515.1064,120760.8936,,,,,,0.26628131,691,2595,,,19.98415366,,,,,0.192171946,,113617,,,8.130081301,8,984,,,,,,,,,,,,,,,,,,,,,,,,,,18.48215069,23,119601,11.28937779,28.54418274,19.23060844,,,,,,,,,,,,,21.14623391,12.31846051,33.85716895,,,,15.8861548,19,119601,9.564502943,24.80819857,,,,,,,,,,,,,17.18545251,9.822970993,27.90809821,,,,15.19553616,25,164522,9.833749801,22.43160896,,,,,,,,,,,,,13.29298521,7.743653749,21.28335704,,,,21.42857143,,2100,,,31,14,0.888469602,16952,19080,,,0.68,,,,,18.96866696,,,,,0.845116469,8272,9788,0.820573585,0.869659353,0.077003998,732,9506,0.051163901,0.102844094,0.885778504,8670,9788,0.861815027,0.909741981,26109,,,,,0.162511012,4243,26109,,,0.24861159,6491,26109,,,0.137347275,3586,26109,,,0.00356199,93,26109,,,0.018805776,491,26109,,,0.000459612,12,26109,,,0.035083688,916,26109,,,0.788999962,20600,26109,,,0.004958127,119,24001,0,0.011199557,0.50473017,13178,26109,,,0.927285963,22929,24727,, -51,077,51077,VA,Grayson County,2024,1,8739.649413,320,41332,6910.301244,10568.99758,0,,,,2,,,,2,,,,2,,,,2,9427.76975,7400.264741,11455.27476,,,,,2,,0.201,,,0.17,0.238,4.518588458,,,3.634148152,5.48655262,5.653949688,,,4.588349587,6.857219182,0.071871128,58,807,0.054051416,0.089690839,0,,,,,,,,,,,,,0.073627845,0.054899062,0.092356628,,,,,,,0.22,,,0.176,0.267,0.367,,,0.292,0.451,7.4,0.090421879,0.118,,,0.276,,,0.225,0.333,0.668427575,10249,15333,,,0.149825326,,,0.119327818,0.185833056,0.444444444,4,9,0.264827841,0.599456043,136.7,21,15359,,,23.28288708,60,2577,17.76729567,29.96969088,,,,,,,,,,,,,24.16107383,18.15054227,31.52496036,,,,,,,0.094178893,995,10565,0.07988102,0.108476765,0.000130217,2,15359,,,7679.5,0.000195529,3,15343,,,5114.333333,0.000586587,9,15343,,,1704.777778,2027,,,,,,,,,2060,0.42,,,,,,,,,0.42,0.34,,,,,,,0.22,,0.34,0.830401903,9773,11769,0.801413817,0.859389989,0.485185185,1572,3240,0.393828662,0.576541709,0.026341948,212,8048,,,0.247,600,,0.158829787,0.335170213,,,,,,,0.509615385,0.372934483,0.646296287,0.123076923,0,0.395448062,0.278711485,0.197331094,0.360091875,4.460303576,86686,19435,3.955549453,4.965057699,0.241573034,602,2492,0.144013047,0.33913302,5.859756495,9,15359,,,74.64799609,58,77698,56.68335309,96.49984523,,,,,,,,,,,,,79.44991766,59.85255102,103.4149886,,,,6.9,,,,,0,,,,,0.090766823,580,6390,0.057332001,0.124201645,0.073113208,0.04102216,0.105204255,0.008450704,0,0.01777347,0.010172144,0.00222286,0.018121428,0.815857216,4754,5827,0.776291404,0.855423029,,,,,,,,,,,,,0.756882153,0.695379027,0.818385278,0.393,,5827,0.32570458,0.46029542,75.98024035,,,74.57243808,77.38804263,,,,,,,,,,,,,75.40718249,73.89300025,76.92136474,,,,456.9620674,320,41332,401.2378248,512.68631,,,,,,,,,,,,,482.6804137,421.721741,543.6390865,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.135,,,0.115,0.158,0.187,,,0.161,0.215,0.112,,,0.095,0.131,132.1,18,13624,,,0.118,1820,,,,0.090421879,1404.523051,15533,,,,,,,,,,,,,,,,,,,,,,,,,,0.386,,,0.368,0.403,0.110074856,897,8149,0.091011026,0.129138686,0.041813208,107,2559,0.027515336,0.056111081,0.000325882,5,15343,,,3068.6,0.975,126.75,130,,,,,,,,3.188550986,,,,,,,,,3.27135369,,,,,,,,,,,0.0470668,,,,,-995.5488,,,,,0.911274065,36163,39684,0.827103776,0.995444354,45414,,,38711.87234,52116.12766,,,,,,,,,,39308,16251.48936,62364.51064,45018,39874.34043,50161.65957,,,,,,0.688235294,1053,1530,,,40.33434531,,,,,0.274739067,,45414,,,2.949852507,2,678,,,,,,,,,,,,,,,,,,,,,,,,,,19.50115303,13,77698,10.07653034,34.06458982,16.7314474,,,,,,,,,,,,,22.97276202,11.46792003,41.10461699,,,,14.15737857,11,77698,7.067312373,25.33146093,,,,,,,,,,,,,15.88998353,7.932222528,28.43156981,,,,16.54153303,18,108817,9.803560823,26.14275368,,,,,,,,,,,,,14.3314873,7.835157469,24.04580049,,,,28.18181818,,1100,,,17,14,0.632762646,8131,12850,,,0.553,,,,,3.988176339,,,,,0.808230319,4969,6148,0.784861173,0.831599465,0.075118967,442,5884,0.04595445,0.104283483,0.779115159,4790,6148,0.746276284,0.811954035,15343,,,,,0.160789937,2467,15343,,,0.259597211,3983,15343,,,0.062960308,966,15343,,,0.003258815,50,15343,,,0.002607052,40,15343,,,0.000456234,7,15343,,,0.042625301,654,15343,,,0.8748615,13423,15343,,,0.011167513,165,14775,0,0.022498006,0.474353125,7278,15343,,,0.99889128,15316,15333,, -51,079,51079,VA,Greene County,2024,1,6017.923733,244,56627,4830.353116,7205.494351,0,,,,2,,,,2,8194.637308,4234.288676,14314.38224,1,,,,2,6314.961784,4918.550564,7711.373005,,,,,2,,0.148,,,0.123,0.175,3.478653282,,,2.710146608,4.318475339,5.043410407,,,3.981636621,6.119654245,0.060377359,96,1590,0.048669666,0.072085051,0,,,,,,,,,,0.112676056,0.060668216,0.164683897,0.0562249,0.043429024,0.069020775,,,,,,,0.157,,,0.122,0.195,0.34,,,0.263,0.421,8.5,0.065224548,0.079,,,0.214,,,0.172,0.263,0.617360841,12688,20552,,,0.178785106,,,0.141916671,0.218585921,0.272727273,3,11,0.11266692,0.445445377,262.3,55,20968,,,12.8426772,52,4049,9.591525611,16.84146252,,,,,,,,,,25.17162471,12.56558436,45.03898973,10.2853351,6.988386191,14.59921218,,,,,,,0.092029197,1576,17125,0.077731325,0.106327069,0.000238459,5,20968,,,4193.6,0.000142133,3,21107,,,7035.666667,0.000947553,20,21107,,,1055.35,2237,,,,,,,1096,,2069,0.5,,,,,,,0.5,,0.5,0.55,,,,,,0.69,0.42,,0.55,0.893181501,12785,14314,0.863635075,0.922727926,0.598324607,2857,4775,0.490810886,0.705838329,0.024106557,257,10661,,,0.107,517,,0.067680851,0.146319149,,,,,,,0.346590909,0.046388502,0.646793316,0.234285714,0.061215535,0.407355894,0.077013868,0.025482601,0.128545135,3.563906968,152774,42867,2.929972109,4.197841828,0.195228216,941,4820,0.108719887,0.281736545,2.861503243,6,20968,,,78.75664198,79,100309,62.35237512,98.15427446,,,,,,,,,,,,,90.23509902,70.85396089,113.2819036,,,,7.1,,,,,0,,,,,0.098798398,740,7490,0.061538754,0.136058042,0.072580645,0.042753604,0.102407686,0.026034713,0.003693253,0.048376173,0.004672897,0,0.011376502,0.718480629,7585,10557,0.674129033,0.762832225,,,,,,,,,,,,,0.611521795,0.54953744,0.673506149,0.452,,10557,0.378929541,0.525070459,78.64928668,,,77.53409495,79.7644784,,,,,,,,,,,,,78.27533429,77.03324457,79.51742401,,,,308.8918532,244,56627,268.0438515,349.739855,,,,,,,418.8095399,259.2497061,640.19487,,,,317.244322,271.7198988,362.7687452,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.104,,,0.088,0.122,0.162,,,0.137,0.187,0.091,,,0.077,0.107,131.2,23,17536,,,0.079,1610,,,,0.065224548,1200.327352,18403,,,19.69861125,12,60918,10.17855988,34.40950958,,,,,,,,,,,,,22.24379196,11.1040208,39.80028819,,,,0.354,,,0.337,0.372,0.107192652,1307,12193,0.089320311,0.125064992,0.055823836,289,5177,0.037951496,0.073696177,0.000189511,4,21107,,,5276.75,0.9,208.8,232,,,,,,,,2.970165498,,,,,,,2.388219756,2.621418982,3.052603535,,,,,,,,,,,0.012192712,,,,,1511.391,,,,,0.8752586,49923,57038,0.663717042,1.086800157,82772,,,72064.08511,93479.91489,,,,,,,36690,16759.95745,56620.04255,187952,53170.7234,322733.2766,82139,73283.85106,90994.14894,,,,,,0.424378453,1229,2896,,,10.15987434,,,,,0.211025468,,82772,,,4.237288136,5,1180,,,,,,,,,,,,,,,,,,,,,,,,,,15.39777433,17,100309,8.618017404,25.39628713,16.94763182,,,,,,,,,,,,,17.90999428,9.791560531,30.04992713,,,,12.95995374,13,100309,6.900629546,22.1619156,,,,,,,,,,,,,13.41332553,6.695883776,24.00014451,,,,12.24413362,17,138842,7.132659044,19.60404403,,,,,,,,,,,,,14.0011901,8.002889893,22.73705555,,,,15.65217391,,2300,,,19,17,0.769591837,11313,14700,,,0.686,,,,,17.11016529,,,,,0.781780214,5990,7662,0.737585881,0.825974547,0.083928571,611,7280,0.049354452,0.118502691,0.902766902,6917,7662,0.872582999,0.932950804,21107,,,,,0.232197849,4901,21107,,,0.191832094,4049,21107,,,0.071777136,1515,21107,,,0.005306297,112,21107,,,0.024494244,517,21107,,,0.001042308,22,21107,,,0.074146018,1565,21107,,,0.799166153,16868,21107,,,0.010675974,208,19483,0.001602374,0.019749574,0.504477188,10648,21107,,,1,20552,20552,, -51,081,51081,VA,Greensville County,2024,1,11937.01283,242,32091,9539.139921,14334.88574,0,,,,2,,,,2,12660.96701,9378.671122,15943.2629,,,,,2,11099.69348,7965.331679,15057.98754,,,,,2,,0.228,,,0.195,0.266,4.276549157,,,3.399423342,5.280889752,5.090530139,,,4.047865468,6.215717203,0.125810636,97,771,0.102401234,0.149220038,0,,,,,,,0.146825397,0.115925263,0.17772553,,,,0.095454546,0.056625364,0.134283727,,,,,,,0.218,,,0.177,0.262,0.456,,,0.376,0.54,9.5,0.002504177,0.065,,,0.293,,,0.243,0.35,0.154507945,1760,11391,,,0.164212248,,,0.130141116,0.203836557,0.32,8,25,0.213480444,0.427129614,463.4,53,11437,,,30.66164605,57,1859,23.22283129,39.72571888,,,,,,,40.45734389,29.61986052,53.96442719,,,,,,,,,,,,,0.068562973,417,6082,0.05545659,0.081669356,0.000349742,4,11437,,,2859.25,8.90789E-05,1,11226,,,11226,0.00080171,9,11226,,,1247.333333,1973,,,,,,,,,952,0.58,,,,,,,0.45,,0.64,0.45,,,,,,,0.45,,0.48,0.796956673,6861,8609,0.7667518,0.827161547,0.380248374,1286,3382,0.29378263,0.466714117,0.037913603,165,4352,,,0.221,389,,0.134021277,0.307978723,,,,,,,0.202979516,0,0.410637646,,,,0.015473888,0,0.034758689,3.975514789,106186,26710,2.757770305,5.193259272,0.422380691,770,1823,0.248322513,0.596438869,0,0,11437,,,106.3477397,61,57359,81.34759421,136.6081206,,,,,,,87.97653959,59.35740182,125.5919806,,,,150.5512117,102.2922441,213.6954276,,,,7.7,,,,,0,,,,,0.130813954,450,3440,0.076392621,0.185235286,0.109144543,0.058437597,0.159851489,0.021802326,0,0.052394548,0.001162791,0,0.009424349,0.799329378,3099,3877,0.715816002,0.882842755,,,,,,,0.78343949,0.664498691,0.90238029,,,,0.871559633,0.799200892,0.943918375,0.401,,3877,0.296481184,0.505518816,72.25939895,,,70.53545533,73.98334257,,,,,,,71.34403287,69.02808219,73.65998355,,,,73.56866971,71.03253219,76.10480722,,,,579.6188443,242,32091,504.7304288,654.5072598,,,,,,,607.8618287,506.6583976,709.0652597,,,,530.2237263,420.434439,659.9093247,,,,119.9040767,10,8340,57.49866542,220.5078662,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.13,,,0.112,0.151,0.17,,,0.147,0.196,0.143,,,0.124,0.163,587.6,60,10210,,,0.065,740,,,,0.002504177,30.65863675,12243,,,,,,,,,,,,,,,,,,,,,,,,,,0.437,,,0.421,0.452,0.084937712,375,4415,0.067065372,0.102810053,0.024445708,43,1759,0.013722304,0.035169112,8.90789E-05,1,11226,,,11226,,,,,,,,,,,2.548723983,,,,,,,2.443617053,,2.996044069,,,,,,,,,,,0.002820062,,,,,,,,,,0.80683745,35212,43642,0.574784845,1.038890056,47596,,,40958.21277,54233.78723,,,,,,,41799,33054.65957,50543.34043,102500,4706.12766,200293.8723,59421,39619.6383,79222.3617,,,,,,0.993818681,1447,1456,,,4.813452626,,,,,0.34078494,,47596,,,4.158004158,2,481,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,28.41260037,23,80950,18.01115137,42.63285101,,,,,,,22.91618925,11.43967911,41.00339267,,,,40.90955579,21.13856445,71.46076108,,,,,,900,,,21,-888,0.478451883,4574,9560,,,0.588,,,,,32.0739331,,,,,0.696772191,2245,3222,0.627796384,0.765747998,0.15412422,469,3043,0.09408804,0.214160399,0.815642458,2628,3222,0.764853885,0.866431031,11226,,,,,0.162390878,1823,11226,,,0.161054695,1808,11226,,,0.594067344,6669,11226,,,0.003206841,36,11226,,,0.007749866,87,11226,,,0.000623553,7,11226,,,0.030019597,337,11226,,,0.353732407,3971,11226,,,0.005342176,58,10857,0,0.016127796,0.37252806,4182,11226,,,0.877798262,9999,11391,, -51,083,51083,VA,Halifax County,2024,1,13467.63036,784,90267,11893.52433,15041.73639,0,,,,2,,,,2,17048.57649,14067.54775,20029.60522,,,,,2,12016.00864,10079.17799,13952.83929,,,,,2,,0.207,,,0.178,0.238,4.298013963,,,3.42842757,5.213202615,5.970824417,,,4.915579111,7.031177236,0.106011373,261,2462,0.093850793,0.118171952,0,,,,,,,0.147942158,0.124733141,0.171151175,,,,0.08,0.066035963,0.093964037,,,,,,,0.207,,,0.168,0.246,0.44,,,0.366,0.513,7.7,0.103489803,0.1,,,0.289,,,0.241,0.337,0.457380519,15561,34022,,,0.133975074,,,0.10513275,0.164935799,0.352941177,12,34,0.263338918,0.441188858,376.4,127,33738,,,27.12212286,185,6821,23.21376892,31.03047679,,,,,,,35.11393351,28.37563257,42.97056172,39.71119134,19.82368364,71.05429066,20.26286966,15.91071091,25.4381773,,,,,,,0.093326767,2274,24366,0.080220384,0.10643315,0.000385322,13,33738,,,2595.230769,0.000475568,16,33644,,,2102.75,0.001278088,43,33644,,,782.4186047,3888,,,,,,,4267,,3710,0.41,,,,,,,0.51,,0.37,0.4,,,,,,,0.4,,0.4,0.821560433,20249,24647,0.798428354,0.844692513,0.546723647,3838,7020,0.472692307,0.620754986,0.038743591,597,15409,,,0.212,1432,,0.133361702,0.290638298,,,,,,,0.232649498,0.143920445,0.321378551,,,,0.157880934,0.099145024,0.216616843,5.273843854,98758,18726,4.31833895,6.229348757,0.38762072,2649,6834,0.299967852,0.475273588,13.93087913,47,33738,,,103.550731,176,169965,88.25208816,118.8493739,,,,,,,75.5535116,55.31466627,100.7777967,,,,125.1626128,103.3940964,146.9311293,,,,7.9,,,,,0,,,,,0.10738255,1520,14155,0.082815374,0.131949727,0.100107258,0.076090254,0.124124261,0.005651713,0,0.012448313,0.006711409,0.002839537,0.010583282,0.808441318,10918,13505,0.778038865,0.838843771,,,,,,,0.802174427,0.725197854,0.879151,,,,0.800340626,0.758211066,0.842470186,0.364,,13505,0.312420757,0.415579243,72.77983412,,,71.69771317,73.86195507,,,,,,,70.16751057,68.26337204,72.07164911,,,,73.81763439,72.45841801,75.17685078,,,,588.0577559,784,90267,541.767348,634.3481639,,,,,,,727.5642354,640.4459278,814.682543,,,,530.8392812,474.1363687,587.5421936,,,,79.70244421,24,30112,51.06685991,118.5909192,,,,,,,126.6624446,69.24753711,212.5180596,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.131,,,0.112,0.15,0.189,,,0.164,0.215,0.127,,,0.108,0.146,269.7,78,28918,,,0.1,3420,,,,0.103489803,3750.573966,36241,,,36.53166407,37,101282,25.72166285,50.35408675,,,,,,,,,,,,,48.01562992,32.15682093,68.95845396,,,,0.386,,,0.373,0.4,0.110778443,1961,17702,0.092906103,0.128650784,0.047788366,336,7031,0.033490494,0.062086238,0.001545595,52,33644,,,647,0.84,299.88,357,,,,,,,,3.214305108,,,,,,,2.905825421,,3.407563642,,,,,,,,,,,0.043518166,,,,,-6369.502,,,,,0.867015866,40057,46201,0.785527522,0.948504209,50578,,,44129.65957,57026.34043,,,,,,,35044,27580.51064,42507.48936,40987,12593.80851,69380.19149,55783,51606.82979,59959.17021,,,,,,0.899934598,4128,4587,,,27.60097157,,,,,0.246688283,,50578,,,5.011135858,9,1796,,,7.913962729,19,240082,4.764722538,12.35863312,,,,,,,,,,,,,,,,,,,14.72859649,23,169965,8.996609374,22.74712272,13.53219781,,,,,,,,,,,,,22.27894998,13.20391772,35.210346,,,,17.06233636,29,169965,11.42691445,24.50436116,,,,,,,,,,,,,21.68171246,13.58781377,32.82637323,,,,23.74188819,57,240082,17.98187426,30.76036996,,,,,,,23.18249258,14.16046873,35.80347958,,,,25.1177394,17.59215588,34.7735388,,,,21.5625,,3200,,,53,16,0.676980152,18248,26955,,,0.589,,,,,22.33710212,,,,,0.726828908,9826,13519,0.704002703,0.749655112,0.123284448,1572,12751,0.096520609,0.150048288,0.653302759,8832,13519,0.616683601,0.689921917,33644,,,,,0.203929378,6861,33644,,,0.25707407,8649,33644,,,0.347877779,11704,33644,,,0.004428724,149,33644,,,0.00618238,208,33644,,,0.000208061,7,33644,,,0.026869576,904,33644,,,0.599898942,20183,33644,,,0.002414188,78,32309,0,0.006242395,0.519082154,17464,33644,,,0.782111575,26609,34022,, -51,085,51085,VA,Hanover County,2024,1,6728.877341,1402,303068,6142.274361,7315.480321,0,,,,2,,,,2,9980.855974,7681.027212,12280.68474,,,,,2,6449.72879,5825.715317,7073.742262,,,,,2,,0.125,,,0.104,0.149,3.044786709,,,2.373785735,3.77875605,4.630280215,,,3.792670342,5.546552461,0.066116898,457,6912,0.060258799,0.071974997,0,,,,0.092592593,0.053936453,0.131248732,0.157212318,0.128490239,0.185934396,0.059006211,0.033268473,0.084743949,0.056019918,0.050009223,0.062030613,,,,,,,0.128,,,0.099,0.161,0.319,,,0.262,0.383,9.3,0.039725359,0.055,,,0.169,,,0.135,0.208,0.863346639,94950,109979,,,0.187792227,,,0.153634795,0.227118683,0.267441861,23,86,0.211953196,0.324936637,249.1,278,111603,,,5.672864797,144,25384,4.74629688,6.599432714,,,,,,,10.48313583,6.645408859,15.72985091,16.29327902,9.313016755,26.45926436,4.421983576,3.560305335,5.429215944,,,,14.36464088,7.648566288,24.56397339,0.059373393,5310,89434,0.051032967,0.067713818,0.000725787,81,111603,,,1377.814815,0.000717208,81,112938,,,1394.296296,0.002116205,239,112938,,,472.5439331,2408,,,,,,,2499,2617,2378,0.49,,,,,,0.36,0.5,0.33,0.49,0.54,,,,,,0.5,0.42,0.4,0.55,0.944014867,72641,76949,0.937607209,0.950422525,0.762973575,19172,25128,0.71954324,0.806403911,0.024463206,1472,60172,,,0.059,1398,,0.036361702,0.081638298,,,,,,,0.242458737,0.140222081,0.344695392,0.187751813,0.081126312,0.294377315,0.031691672,0.01903219,0.044351154,3.77131928,181408,48102,3.505428371,4.037210189,0.166262034,3972,23890,0.13897392,0.193550149,12.27565567,137,111603,,,74.52019534,403,540793,67.24444928,81.79594141,,,,,,,89.79705865,65.49859076,120.1555295,,,,76.5121122,68.43833585,84.58588855,,,,8.4,,,,,0,,,,,0.088973869,3490,39225,0.076227899,0.101719839,0.07971849,0.066994731,0.092442249,0.005226259,0.002403822,0.008048695,0.006373486,0.002790559,0.009956414,0.77640777,44204,56934,0.755233387,0.797582154,,,,0.77997365,0.634892001,0.925055298,0.83372066,0.803497354,0.863943966,0.734084019,0.65119265,0.816975388,0.715517735,0.688790516,0.742244955,0.378,,56934,0.350777662,0.405222338,78.32563019,,,77.81050866,78.84075172,,,,84.1457261,79.60553031,88.6859219,74.61134181,72.90266326,76.32002036,95.82439238,77.33895297,114.3098318,78.57014319,78.016351,79.12393538,,,,329.9913586,1402,303068,311.6990511,348.2836661,,,,,,,464.4113022,392.2895099,536.5330944,,,,322.8475905,303.2079066,342.4872745,,,,48.25843813,51,105681,35.93157695,63.45093383,,,,,,,,,,,,,39.23900119,27.01032292,55.10614658,,,,4.854368932,33,6798,3.341524209,6.817338816,,,,,,,,,,,,,3.783102144,2.341799853,5.782873489,,,,,,,0.091,,,0.077,0.107,0.151,,,0.13,0.175,0.081,,,0.068,0.095,132.1,126,95362,,,0.055,5980,,,,0.039725359,3967.093533,99863,,,25.02815668,82,327631,19.90563575,31.06654167,,,,,,,32.79226103,15.72516379,60.30613557,,,,25.33858222,19.7149294,32.0675975,,,,0.322,,,0.305,0.338,0.067362748,4400,65318,0.057830834,0.076894663,0.039224189,995,25367,0.028500785,0.049947593,0.001151074,130,112938,,,868.7538462,0.94,1375.22,1463,,,,,,,,3.416530083,,,,,,,2.731348011,2.882993473,3.520981617,,,,,,,,,,,0.035097919,,,,,2027.426,,,,,0.795986713,58470,73456,0.753726169,0.838247258,103639,,,95893.12766,111384.8723,,,,114013,59131.80851,168894.1915,73652,60384.76596,86919.23404,42734,20224.38298,65243.61702,108815,105266.7447,112363.2553,,,,,,0.237027812,3997,16863,,,28.80190377,,,,,0.222715387,,103639,,,8.412787437,45,5349,,,2.271476139,17,748412,1.323218557,3.63685334,,,,,,,,,,,,,,,,,,,17.41251046,99,540793,14.03694101,21.35489834,18.30644997,,,,,,,,,,,,,17.63053407,13.97991703,21.94272579,,,,13.12886816,71,540793,10.25375496,16.56028076,,,,,,,21.95039211,10.95755666,39.27531482,,,,12.86290582,9.767343673,16.62828858,,,,13.09439186,98,748412,10.63066026,15.9578695,,,,,,,21.66409105,12.1252273,35.73162361,,,,12.61966719,9.991109358,15.72787064,,,,19.9137931,,11600,,,148,83,0.8715531,70988,81450,,,0.784,,,,,41.88029261,,,,,0.830292632,34360,41383,0.814891586,0.845693679,0.083580917,3404,40727,0.070759817,0.096402017,0.901263804,37297,41383,0.885326779,0.917200829,112938,,,,,0.212709628,24023,112938,,,0.193982539,21908,112938,,,0.092847403,10486,112938,,,0.004896492,553,112938,,,0.023402221,2643,112938,,,0.001204201,136,112938,,,0.03621456,4090,112938,,,0.82346066,93000,112938,,,0.004718507,496,105118,0.002767904,0.00666911,0.504489189,56976,112938,,,0.37007065,40700,109979,, -51,087,51087,VA,Henrico County,2024,1,7261.855317,4095,932147,6922.246537,7601.464097,0,,,,2,2712.995774,2028.696423,3397.295124,,9890.503274,9141.163045,10639.8435,,5709.652544,4539.995311,6879.309776,,6765.822101,6309.813104,7221.831099,,,,,2,,0.138,,,0.117,0.161,3.359290387,,,2.712083055,4.091177251,5.103680917,,,4.337596968,5.927596064,0.084124164,2225,26449,0.080778902,0.087469425,0,,,,0.087571472,0.077960404,0.09718254,0.130526316,0.1227039,0.138348732,0.067164179,0.057441223,0.076887135,0.0610865,0.056948383,0.065224618,,,,0.072463768,0.049342673,0.095584863,0.132,,,0.105,0.161,0.365,,,0.315,0.415,9,0.047260929,0.066,,,0.221,,,0.185,0.26,0.951176624,318063,334389,,,0.170412515,,,0.141741876,0.200205036,0.232876712,34,146,0.190998239,0.276719554,563.9,1881,333554,,,9.814095532,662,67454,9.066481648,10.56170942,,,,2.324333989,1.237609957,3.974681909,12.89410555,11.43742593,14.35078517,31.10859729,26.3618673,35.85532727,4.944131316,4.152905518,5.735357114,,,,10.47512159,6.960642221,15.13946724,0.07563919,20765,274527,0.067298765,0.083979616,0.001049305,350,333554,,,953.0114286,0.000853391,285,333962,,,1171.796491,0.003904636,1304,333962,,,256.1058282,2092,,,,,,981,3354,2147,1849,0.5,,,,,,0.36,0.53,0.35,0.5,0.57,,,,,,0.53,0.42,0.38,0.59,0.92882732,216231,232800,0.92292643,0.934728209,0.760569754,70590,92812,0.732988381,0.788151126,0.028285276,5253,185715,,,0.116,8302,,0.082638298,0.149361702,,,,0.024811083,0.00699429,0.042627876,0.235275952,0.192844185,0.277707719,0.287149498,0.218451774,0.355847222,0.041142165,0.029772774,0.052511557,4.249028667,161854,38092,4.008323276,4.489734059,0.280012961,20740,74068,0.257254699,0.302771223,12.26188263,409,333554,,,71.34671301,1181,1655297,67.27754996,75.41587606,,,,16.42597143,10.63002263,24.24797415,76.12597141,68.46172756,83.79021526,26.33258049,17.20131584,38.58333156,84.84212064,78.69584481,90.98839646,,,,7,,,,,0,,,,,0.144286426,18820,130435,0.132749806,0.155823046,0.127841019,0.116378008,0.13930403,0.014489976,0.010906595,0.018073357,0.009391651,0.00723187,0.011551432,0.718842363,125011,173906,0.707069475,0.730615251,0.894894895,0.688531112,1,0.557261575,0.516823473,0.597699677,0.745105656,0.723018902,0.767192409,0.683471658,0.642875406,0.72406791,0.777821872,0.763331145,0.792312598,0.246,,173906,0.232003169,0.259996831,77.92248295,,,77.62080554,78.22416035,,,,88.43236048,85.9680695,90.89665146,76.02647329,75.37746633,76.67548025,83.29122343,80.54456425,86.0378826,78.17743741,77.79000723,78.5648676,,,,348.9246816,4095,932147,337.9296107,359.9197524,,,,136.75885,110.4516193,163.0660808,444.4347517,421.2416657,467.6278377,260.3415219,210.0629242,310.6201196,334.2981869,319.7628028,348.833571,,,,53.85062759,175,324973,45.87200695,61.82924823,,,,47.22550177,26.9934547,76.69125619,77.08144289,61.02610423,96.06647656,60.65507481,35.94804145,95.86116818,37.3152718,27.95169921,48.80929427,,,,7.400485891,198,26755,6.369663814,8.431307967,,,,6.612995975,4.192072179,9.922740913,11.88977479,9.497129809,14.70189066,,,,4.580152672,3.495139004,5.895564382,,,,,,,0.095,,,0.081,0.11,0.153,,,0.133,0.175,0.104,,,0.089,0.119,363,1022,281580,,,0.066,21780,,,,0.047260929,14506.03331,306935,,,28.85372564,288,998138,25.52129034,32.18616093,,,,,,,34.89600989,28.22122625,41.57079354,,,,32.24453009,27.33931473,37.14974544,,,,0.355,,,0.342,0.367,0.089809598,18141,201994,0.079086194,0.100533003,0.038445894,2930,76211,0.028913979,0.047977809,0.001305538,436,333962,,,765.9678899,0.87,3507.84,4032,,,0.050724171,788,15535,0.031308715,0.070139627,3.236154467,,,,,,3.773409697,2.781844581,2.878708872,3.594488937,,,,,,,,,,,0.206468923,,,,,-2571.106,,,,,0.80693514,54803,67915,0.776329185,0.837541094,82187,,,78314.65957,86059.34043,115588,63331.65957,167844.3404,124078,110561.7447,137594.2553,60405,57027.12766,63782.87234,63563,57025.29787,70100.70213,94328,90894.12766,97761.87234,,,,,,0.461520279,23430,50767,,,55.55751189,,,,,0.273254894,,82187,,,8.252818035,164,19872,,,6.545430271,151,2306953,5.501417531,7.589443011,,,,,,,17.65621043,14.52311479,20.78930607,,,,1.972764344,1.263987339,2.935316969,,,,11.69719031,201,1655297,10.04544488,13.34893575,12.142836,,,,,,,7.293283008,5.135144303,10.05282991,,,,15.81287353,13.12464959,18.50109746,,,,13.16984203,218,1655297,11.42157249,14.91811157,,,,,,,23.29976961,19.05964419,27.53989504,,,,10.89502642,8.804290369,13.33275308,,,,7.325680237,169,2306953,6.221193063,8.430167411,,,,,,,8.393936105,6.373867605,10.8511089,,,,7.973255891,6.465773408,9.726696017,,,,17.04678363,,34200,,,436,147,0.781125884,183299,234660,,,0.737,,,,,131.2433898,,,,,0.645591898,86570,134094,0.635158126,0.656025671,0.128213885,16895,131772,0.117944364,0.138483405,0.905588617,121434,134094,0.897674886,0.913502348,333962,,,,,0.217671472,72694,333962,,,0.171100305,57141,333962,,,0.299905379,100157,333962,,,0.003820794,1276,333962,,,0.100765955,33652,333962,,,0.000778532,260,333962,,,0.064207904,21443,333962,,,0.506970853,169309,333962,,,0.021493923,6740,313577,,,0.522870866,174619,333962,,,0.036942005,12353,334389,, -51,089,51089,VA,Henry County,2024,1,14493.4122,1230,133858,13074.02237,15912.80203,0,,,,2,,,,2,16413.58116,12478.86722,20348.2951,,,,,2,15265.14999,13519.40281,17010.89717,,,,,2,,0.221,,,0.19,0.255,4.52102587,,,3.645043377,5.423950437,5.855793188,,,4.835157726,6.94244681,0.095150625,259,2722,0.084127468,0.106173781,0,,,,,,,0.138592751,0.107321578,0.169863923,0.072289157,0.04443244,0.100145873,0.089881593,0.076876378,0.102886808,,,,,,,0.22,,,0.181,0.263,0.419,,,0.354,0.493,7,0.14451129,0.111,,,0.292,,,0.247,0.342,0.394225485,20085,50948,,,0.142193257,,,0.114188347,0.175851684,0.285714286,16,56,0.216193704,0.357298714,340.3,171,50248,,,20.4853451,195,9519,17.61005248,23.36063772,,,,,,,14.82544237,10.07316881,21.04353204,22.59414226,14.88968212,32.87329075,22.7664712,18.88259994,26.65034246,,,,,,,0.098449488,3670,37278,0.084151615,0.11274736,0.00045773,23,50248,,,2184.695652,0.000701319,35,49906,,,1425.885714,0.000240452,12,49906,,,4158.833333,3416,,,,,,,3056,,3455,0.46,,,,,,,0.51,,0.45,0.38,,,,,,,0.31,,0.39,0.812779279,30376,37373,0.791500271,0.834058287,0.515209858,5352,10388,0.453255907,0.577163809,0.0343481,818,23815,,,0.208,1921,,0.128170213,0.287829787,,,,,,,0.264524648,0.165325097,0.363724199,0.201224178,0.108299865,0.29414849,0.208065667,0.141041944,0.275089391,4.605573081,87598,19020,4.058487061,5.152659101,0.266897394,2622,9824,0.198258104,0.335536685,14.9259672,75,50248,,,151.9972838,385,253294,136.814146,167.1804216,,,,,,,97.57482215,73.50670955,127.0070431,,,,185.3821089,165.2580727,205.5061451,,,,7.8,,,,,0,,,,,0.118514993,2490,21010,0.096872195,0.14015779,0.098062954,0.075624178,0.12050173,0.015706806,0.007682693,0.02373092,0.006425512,0.001673211,0.011177812,0.837392109,16299,19464,0.814287228,0.860496989,,,,,,,0.799894681,0.723546324,0.876243039,,,,0.815228064,0.777107068,0.85334906,0.275,,19464,0.238723111,0.311276889,72.11102348,,,71.15925738,73.06278958,,,,,,,71.43256717,68.83362688,74.03150745,90.90816983,59.76172238,122.0546173,71.39430726,70.2600632,72.52855131,,,,629.3038348,1230,133858,589.9849039,668.6227657,,,,,,,610.8520422,523.3299992,698.3740852,,,,667.8914118,619.578647,716.2041767,,,,74.63730933,32,42874,51.05186433,105.365611,,,,,,,,,,,,,77.98487094,47.63518516,120.4413082,,,,9.691313711,27,2786,6.386636803,14.10035264,,,,,,,,,,,,,,,,,,,,,,0.137,,,0.119,0.158,0.191,,,0.166,0.217,0.126,,,0.109,0.145,148.8,65,43682,,,0.111,5680,,,,0.14451129,7825.43085,54151,,,66.83695753,101,151114,53.80192688,79.87198818,,,,,,,32.60708463,16.27733917,58.34308141,,,,86.09227178,69.22835318,105.8220184,,,,0.396,,,0.383,0.409,0.117743957,3288,27925,0.099871617,0.135616298,0.042200909,418,9905,0.030286015,0.054115802,0.00034064,17,49906,,,2935.647059,0.87,477.63,549,,,,,,,,3.1651215,,,,,,,2.898119613,2.898871451,3.339456621,,,,,,,,,,,0.026954589,,,,,-4197.521,,,,,0.844795519,38608,45701,0.750738695,0.938852342,49370,,,43273.14894,55466.85106,,,,,,,37112,33778.21277,40445.78723,55814,46402.42553,65225.57447,46559,43015.51064,50102.48936,,,,,,0.928398577,6522,7025,,,21.07332067,,,,,0.240085072,,49370,,,6.768189509,16,2364,,,7.290673546,26,356620,4.762510015,10.68252596,,,,,,,16.44611998,8.756866244,28.12336604,,,,4.832824544,2.497190965,8.441971892,,,,19.15207079,56,253294,14.07222124,25.46819404,22.10869582,,,,,,,,,,,,,23.10614282,16.43072631,31.58685788,,,,22.8982921,58,253294,17.38763322,29.60135248,,,,,,,23.06313978,12.2801506,39.43867142,,,,25.58955491,18.66519695,34.2408378,,,,24.11530481,86,356620,19.28913108,29.78220526,,,,,,,26.5668092,16.44527362,40.61018993,,,,24.16412272,18.43977131,31.10401584,,,,16.17021277,,4700,,,39,37,0.641242938,26105,40710,,,0.628,,,,,21.11476111,,,,,0.732007251,14941,20411,0.711229629,0.752784874,0.104336114,2014,19303,0.083349174,0.125323053,0.716280437,14620,20411,0.686266704,0.74629417,49906,,,,,0.187432373,9354,49906,,,0.252334389,12593,49906,,,0.221476376,11053,49906,,,0.00412776,206,49906,,,0.005229832,261,49906,,,0.000801507,40,49906,,,0.064601451,3224,49906,,,0.687091733,34290,49906,,,0.011896417,577,48502,0.005691681,0.018101152,0.514266822,25665,49906,,,0.650643794,33149,50948,, -51,091,51091,VA,Highland County,2024,1,8181.561707,33,5698,3289.412139,16857.14406,1,,,,2,,,,2,,,,2,,,,2,8442.865998,3645.030281,16635.81179,1,,,,2,,0.152,,,0.126,0.18,3.779450864,,,2.960493093,4.69638839,5.510276113,,,4.411990467,6.718726875,0.092436975,11,119,0.040396189,0.144477761,1,,,,,,,,,,,,,0.092436975,0.040396189,0.144477761,,,,,,,0.177,,,0.137,0.218,0.344,,,0.265,0.427,5.1,0.34448678,0.105,,,0.222,,,0.175,0.274,0.630376344,1407,2232,,,0.141336366,,,0.110626262,0.176371452,0.666666667,2,3,0.391498614,0.824051859,0,0,2226,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.110175439,157,1425,0.092303098,0.128047779,0.001347709,3,2226,,,742,0.000869187,2,2301,,,1150.5,0.002607562,6,2301,,,383.5,1011,,,,,,,,,1013,0.45,,,,,,,,,0.45,0.47,,,,,,,,,0.47,0.90034965,1545,1716,0.855781893,0.944917407,0.590909091,169,286,0.383088559,0.798729622,0.022873481,32,1399,,,0.177,52,,0.107893617,0.246106383,,,,,,,,,,,,,0.127819549,0,0.270413843,3.602668194,106938,29683,2.752642974,4.452693414,0.118055556,34,288,0.012855271,0.22325584,0,0,2226,,,,,,,,,,,,,,,,,,,,,,,,,,5.8,,,,,0,,,,,0.045685279,45,985,0.001468195,0.089902363,0.018348624,0,0.069061987,0.004060914,0,0.036128855,0.01928934,0,0.050590106,0.771428571,621,805,0.665006643,0.8778505,,,,,,,,,,,,,0.744217687,0.593070516,0.895364858,0.331,,805,0.208490788,0.453509212,78.61615199,,,74.04453129,83.1877727,,,,,,,,,,,,,78.25538336,73.60183379,82.90893293,,,,325.0125773,33,5698,192.6230515,513.6599935,,,,,,,,,,,,,335.9637284,199.1133977,530.9675336,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.11,,,0.094,0.13,0.172,,,0.147,0.199,0.091,,,0.077,0.108,0,0,2007,,,0.105,230,,,,0.34448678,799.553817,2321,,,,,,,,,,,,,,,,,,,,,,,,,,0.333,,,0.312,0.353,0.119650655,137,1145,0.098203847,0.141097464,0.06779661,20,295,0.047541291,0.088051929,0.000869187,2,2301,,,1150.5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3339.697,,,,,0.683544304,33750,49375,0.376942527,0.990146081,54470,,,46670.51064,62269.48936,,,,,,,,,,,,,56895,47769.38298,66020.61702,,,,,,0.719101124,128,178,,,,,,,,0.32067193,,54470,,,12.65822785,1,79,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,100,,,0,-888,0.808970976,1533,1895,,,0.467,,,,,1.577406711,,,,,0.863905325,876,1014,0.822327503,0.905483148,0.02238806,21,938,0,0.084004541,0.746548324,757,1014,0.672869345,0.820227302,2301,,,,,0.130378097,300,2301,,,0.379400261,873,2301,,,0.009995654,23,2301,,,0.002607562,6,2301,,,0.008257279,19,2301,,,0,0,2301,,,0.014776184,34,2301,,,0.960451977,2210,2301,,,0.000457457,1,2186,0,0.027948963,0.500217297,1151,2301,,,1,2232,2232,, -51,093,51093,VA,Isle of Wight County,2024,1,7550.679272,589,105072,6525.345897,8576.012646,0,,,,2,,,,2,12006.41169,9260.584579,14752.23881,,,,,2,6449.110234,5296.582149,7601.638318,,,,,2,,0.15,,,0.127,0.175,3.572614576,,,2.836880987,4.433520251,4.955594538,,,3.990276623,5.989231965,0.085594192,224,2617,0.0748754,0.096312984,0,,,,,,,0.136666667,0.109181334,0.164152,,,,0.071620894,0.059892659,0.083349129,,,,,,,0.154,,,0.122,0.189,0.379,,,0.307,0.453,8.9,0.04465237,0.07,,,0.219,,,0.18,0.264,0.70258509,27124,38606,,,0.177071454,,,0.14200022,0.214820804,0.257142857,9,35,0.168809624,0.350986489,381.9,150,39278,,,9.151193634,69,7540,7.120174875,11.58142123,,,,,,,13.49892009,8.735789335,19.92706895,,,,7.736156352,5.474564667,10.61847902,,,,,,,0.069866769,2192,31374,0.060334854,0.079398684,0.000407353,16,39278,,,2454.875,0.00024906,10,40151,,,4015.1,0.000523026,21,40151,,,1911.952381,2546,,,,,,,3156,,2484,0.53,,,,,,0.42,0.55,,0.53,0.48,,,,,,0.43,0.41,0.21,0.49,0.911864893,25431,27889,0.895294598,0.928435188,0.706296835,6315,8941,0.633951792,0.778641878,0.027997565,552,19716,,,0.09,757,,0.054255319,0.125744681,,,,,,,0.465303927,0.318977475,0.611630378,0.393559928,0.171858938,0.615260919,0.033200531,0.007529104,0.058871958,4.967494652,167186,33656,4.509751762,5.425237542,0.2057568,1687,8199,0.15714482,0.254368779,12.2205815,48,39278,,,71.95510002,135,187617,59.81699842,84.09320162,,,,,,,63.27630654,41.69948472,92.06370388,,,,76.81543001,61.83432492,91.79653511,,,,7.4,,,,,1,,,,,0.115674196,1690,14610,0.091878255,0.139470136,0.101404591,0.079809332,0.12299985,0.009514032,0.000168021,0.018860042,0.004722793,0,0.009489006,0.826962642,15274,18470,0.801706283,0.852219002,,,,,,,0.710548523,0.638354246,0.782742801,,,,0.750651607,0.696053051,0.805250164,0.47,,18470,0.427007207,0.512992793,77.78691079,,,76.88188603,78.69193555,,,,,,,73.5011253,71.47918919,75.52306141,,,,78.8690195,77.81775195,79.92028705,,,,378.4044915,589,105072,345.5032399,411.3057431,,,,,,,559.0716951,472.6133414,645.5300488,,,,331.1242537,295.0588998,367.1896076,,,,40.49754122,14,34570,22.14038263,67.94799283,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.104,,,0.088,0.12,0.16,,,0.138,0.184,0.101,,,0.086,0.117,235.9,79,33490,,,0.07,2700,,,,0.04465237,1574.889098,35270,,,18.40297252,21,114112,11.39173004,28.13089836,,,,,,,,,,,,,15.04513541,7.774041009,26.28082378,,,,0.366,,,0.351,0.381,0.078556263,1813,23079,0.06544988,0.091662646,0.046912729,408,8697,0.032614856,0.061210601,0.000199248,8,40151,,,5018.875,0.93,454.77,489,,,,,,,,3.279841739,,,,,,,2.817942609,,3.499994195,,,,,,,,,,,0.016719482,,,,,240.9541,,,,,0.696864749,53322,76517,0.607988075,0.785741423,85227,,,75268.53192,95185.46809,,,,,,,50505,36544.31915,64465.68085,,,,106208,99526.12766,112889.8723,,,,,,0.349350418,1963,5619,,,20.27181148,,,,,0.204946789,,85227,,,8.961518187,17,1897,,,3.838373758,10,260527,1.840649413,7.058906003,,,,,,,,,,,,,,,,,,,16.79880285,34,187617,11.33408174,23.98133562,18.12202519,,,,,,,,,,,,,20.09905227,13.12936824,29.44976843,,,,18.65502593,35,187617,12.99390908,25.94462515,,,,,,,,,,,,,21.29536674,14.15061654,30.77773413,,,,11.89895865,31,260527,8.084765103,16.889622,,,,,,,,,,,,,12.01404551,7.529138359,18.18940928,,,,14.05405405,,3700,,,38,14,0.816286758,23456,28735,,,0.727,,,,,25.92126085,,,,,0.783166623,11901,15196,0.756682916,0.80965033,0.105899222,1551,14646,0.082506518,0.129291926,0.834956568,12688,15196,0.807505462,0.862407673,40151,,,,,0.212971034,8551,40151,,,0.20104107,8072,40151,,,0.221414162,8890,40151,,,0.005055914,203,40151,,,0.011406939,458,40151,,,0.000672462,27,40151,,,0.046350029,1861,40151,,,0.692386242,27800,40151,,,0.006840426,253,36986,0.000995384,0.012685468,0.504545341,20258,40151,,,0.584546444,22567,38606,, -51,095,51095,VA,James City County,2024,1,5194.447138,766,206661,4546.488959,5842.405318,0,,,,2,,,,2,8904.927198,6835.014705,10974.83969,,4971.60057,2946.485582,7857.272287,1,4474.036419,3759.479974,5188.592864,,,,,2,,0.118,,,0.098,0.141,2.906360472,,,2.244584499,3.635508973,4.614211122,,,3.758812574,5.518612034,0.076484018,402,5256,0.069298866,0.08366917,0,,,,0.091891892,0.050264655,0.133519128,0.139043382,0.116426016,0.161660747,0.093489149,0.070175526,0.116802771,0.057686761,0.049925811,0.065447711,,,,,,,0.117,,,0.089,0.148,0.335,,,0.269,0.4,8.5,0.086788451,0.069,,,0.179,,,0.143,0.217,0.974391085,76250,78254,,,0.179306421,,,0.145754656,0.214900382,0.388888889,14,36,0.303559261,0.471308391,319.2,255,79882,,,11.19477577,168,15007,9.501932196,12.88761935,,,,,,,27.92321117,21.50427511,35.65731728,23.62751911,16.36274384,33.01708971,6.622516556,5.121853825,8.425464825,,,,,,,0.060210591,3511,58312,0.051870166,0.068551017,0.001114143,89,79882,,,897.5505618,0.001120704,91,81199,,,892.2967033,0.004101036,333,81199,,,243.8408408,2447,,,,,,,5110,,1817,0.56,,,,,,0.25,0.62,0.27,0.56,0.56,,,,,,0.62,0.42,0.33,0.58,0.957447179,55058,57505,0.947795035,0.967099322,0.709789343,11456,16140,0.654226512,0.765352174,0.029052814,1076,37036,,,0.088,1364,,0.058212766,0.117787234,,,,0.102339181,0,0.3872617,0.261804582,0.142285284,0.381323879,0.251643754,0.145094411,0.358193097,0.033101588,0.012534461,0.053668715,3.754638004,178503,47542,3.326672378,4.182603631,0.293107932,4508,15380,0.234265519,0.351950346,8.637740668,69,79882,,,60.11328244,232,385938,52.37788697,67.84867792,,,,,,,80.4394742,57.72475548,109.1252297,50.78075409,26.23915665,88.70375798,60.38772369,51.44055334,69.33489405,,,,7.4,,,,,0,,,,,0.124831536,3705,29680,0.1037774,0.145885673,0.10681587,0.087222138,0.126409602,0.015667116,0.008356783,0.022977449,0.005896226,0.001867995,0.009924458,0.769346165,27181,35330,0.748542175,0.790150155,,,,0.627013631,0.513439459,0.740587802,0.819751037,0.736766893,0.902735181,0.615153337,0.527389449,0.702917226,0.737106981,0.705812976,0.768400986,0.363,,35330,0.328901748,0.397098252,81.9885017,,,81.36563553,82.61136787,,,,88.52882603,82.19391623,94.86373583,76.83934667,75.03185487,78.64683847,87.26125941,80.36942324,94.15309559,82.72886004,82.045299,83.41242109,,,,236.6484594,766,206661,217.9770944,255.3198244,,,,,,,432.7292784,363.3123968,502.14616,169.6035247,106.289626,256.7817747,211.71852,191.3762631,232.0607769,,,,43.13293869,29,67234,28.88680599,61.94609489,,,,,,,,,,,,,32.02708576,17.50950581,53.73600787,,,,5.363984674,28,5220,3.564328861,7.75245133,,,,,,,,,,,,,,,,,,,,,,0.085,,,0.072,0.1,0.143,,,0.122,0.165,0.083,,,0.07,0.097,66.5,46,69169,,,0.069,5350,,,,0.086788451,5815.607328,67009,,,14.9561784,35,234017,10.41752625,20.80042363,,,,,,,,,,,,,16.00905655,10.63790182,23.13754406,,,,0.307,,,0.292,0.322,0.069866542,2984,42710,0.057951648,0.081781435,0.035244704,579,16428,0.0245213,0.045968108,0.001403958,114,81199,,,712.2719298,,,,,,0.077057284,265,3439,0.026069953,0.128044615,3.354167245,,,,,,,2.984586998,2.955291553,3.565326155,,,,,,,,,,,0.025093941,,,,,,,,,,0.820040655,54864,66904,0.724287475,0.915793836,103070,,,91282.59575,114857.4043,,,,93281,29902.10638,156659.8936,56684,49083.48936,64284.51064,80438,47872.21277,113003.7872,108802,104565.0638,113038.9362,,,,,,0.339468952,3209,9453,,,36.997725,,,,,0.217890754,,103070,,,8.374771002,32,3821,,,3.374015209,18,533489,1.999655247,5.332398656,,,,,,,14.22940649,6.823553504,26.16838516,,,,,,,,,,11.84730373,51,385938,8.573952453,15.95824038,13.21455778,,,,,,,,,,,,,13.41139183,9.231785035,18.83458043,,,,8.809705186,34,385938,6.100976941,12.31067998,,,,,,,19.61938395,9.408257203,36.08074562,,,,7.59159955,4.75761502,11.49377295,,,,9.37226447,50,533489,6.956275338,12.3561623,,,,,,,15.65234714,7.813595298,28.00637266,,,,7.463206393,5.035394013,10.65419119,,,,22.32876712,,7300,,,110,53,0.839773304,49639,59110,,,0.779,,,,,41.48183612,,,,,0.776148583,23820,30690,0.755789391,0.796507774,0.10954684,3307,30188,0.091464195,0.127629484,0.916389704,28124,30690,0.900518908,0.932260499,81199,,,,,0.19247774,15629,81199,,,0.267835811,21748,81199,,,0.137119915,11134,81199,,,0.004852277,394,81199,,,0.029101344,2363,81199,,,0.001256173,102,81199,,,0.069151098,5615,81199,,,0.734627274,59651,81199,,,0.00868301,651,74974,0.003825569,0.013540451,0.516422616,41933,81199,,,0.141615764,11082,78254,, -51,097,51097,VA,King and Queen County,2024,1,13008.93559,155,18679,9444.427083,16573.44409,0,,,,2,,,,2,20596.12485,12580.64813,31809.04439,1,,,,2,11367.14703,7612.756769,16325.11928,,,,,2,,0.175,,,0.149,0.202,3.969449609,,,3.13106144,4.87268716,5.328417943,,,4.241267431,6.464674119,0.096153846,40,416,0.067824275,0.124483417,0,,,,,,,0.168539326,0.090765663,0.246312988,,,,0.070707071,0.041553914,0.099860227,,,,,,,0.181,,,0.147,0.218,0.395,,,0.312,0.477,8.9,0.049757047,0.068,,,0.243,,,0.2,0.291,0.222608959,1471,6608,,,0.155455741,,,0.122501449,0.192579298,0.222222222,4,18,0.102162676,0.360013884,255.2,17,6662,,,21.64502165,25,1155,14.00751675,31.95232182,,,,,,,,,,,,,22.42152466,12.54915715,36.98089517,,,,,,,0.095172414,483,5075,0.080874542,0.109470286,0.00030021,2,6662,,,3331,,0,6718,,,,,0,6718,,,,2423,,,,,,,2246,,2051,0.49,,,,,,,0.55,,0.47,0.48,,,,,,,0.42,,0.5,0.864309053,4497,5203,0.828945163,0.899672942,0.670951157,1044,1556,0.528735516,0.813166798,0.026349126,104,3947,,,0.208,246,,0.146042553,0.269957447,,,,,,,0.9,0.770285801,1,,,,0.26300578,0.14574684,0.380264721,4.883900814,131963,27020,3.391242837,6.376558791,0.263458401,323,1226,0.154056113,0.37286069,16.51155809,11,6662,,,147.0842706,51,34674,109.5139004,193.3886525,,,,,,,179.3520906,102.5152164,291.2565587,,,,148.0320446,102.5164942,206.8599447,,,,7.3,,,,,0,,,,,0.163410302,460,2815,0.096345681,0.230474923,0.160714286,0.085698904,0.235729668,0.010301954,0,0.026221491,0,0,0.010774553,0.799876847,2598,3248,0.753185141,0.846568554,,,,,,,,,,,,,0.651950719,0.513507513,0.790393924,0.627,,3248,0.504566134,0.749433866,73.34106933,,,70.87621178,75.80592688,,,,,,,66.75232242,61.15790163,72.3467432,,,,74.83025228,71.84887177,77.8116328,,,,546.1708907,155,18679,448.3384473,644.0033341,,,,,,,804.902153,580.1026737,1087.993883,,,,479.1253112,374.2008431,604.351386,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.116,,,0.1,0.132,0.172,,,0.149,0.195,0.112,,,0.096,0.131,188.5,11,5836,,,0.068,460,,,,0.049757047,345.562691,6945,,,,,,,,,,,,,,,,,,,,,,,,,,0.378,,,0.362,0.393,0.106041295,416,3923,0.088168955,0.123913635,0.059983566,73,1217,0.040919736,0.079047396,0.000148854,1,6718,,,6718,,,,,,,,,,,2.878454429,,,,,,,,,3.211867971,,,,,,,,,,,0.015393041,,,,,-3438.391,,,,,0.791423834,48208,60913,0.608544512,0.974303156,62180,,,52932.85106,71427.14894,,,,,,,,,,,,,87789,68530.95745,107047.0426,,,,,,0.488484849,403,825,,,23.02535119,,,,,0.260855581,,62180,,,3.067484663,1,326,,,,,,,,,,,,,,,,,,,,,,,,,,28.61091727,10,34674,13.08273325,54.31243312,28.84005307,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,26.53548611,13,48991,14.12902878,45.37648939,,,,,,,,,,,,,,,,,,,,,600,,,-888,-888,0.724471831,4115,5680,,,0.552,,,,,6.773753843,,,,,0.776716207,2195,2826,0.694090046,0.859342368,0.187042036,485,2593,0.115843538,0.258240535,0.711606511,2011,2826,0.643296599,0.779916424,6718,,,,,0.178178029,1197,6718,,,0.239356952,1608,6718,,,0.238463829,1602,6718,,,0.018457874,124,6718,,,0.005358738,36,6718,,,0.000446562,3,6718,,,0.038701995,260,6718,,,0.666716285,4479,6718,,,0,0,6381,0,0.014191066,0.488835963,3284,6718,,,1,6608,6608,, -51,099,51099,VA,King George County,2024,1,7759.216596,327,77275,6485.093629,9033.339563,0,,,,2,,,,2,10118.49977,6723.669611,14624.04942,,,,,2,7322.164055,5903.799868,8740.528243,,,,,2,,0.14,,,0.119,0.165,3.320861994,,,2.609333914,4.120617088,4.837548841,,,3.882719331,5.863653258,0.08126195,170,2092,0.069553088,0.092970813,0,,,,,,,0.152173913,0.112940903,0.191406923,0.082644628,0.033583277,0.131705979,0.068109484,0.055651315,0.080567654,,,,,,,0.143,,,0.112,0.178,0.363,,,0.288,0.444,9.6,0.021241339,0.052,,,0.206,,,0.168,0.25,0.69258691,18508,26723,,,0.184249465,,,0.147209204,0.223492752,0.2,5,25,0.10034726,0.316172705,312.9,86,27489,,,13.5587546,81,5974,10.7676083,16.85229397,,,,,,,21.59827214,13.19278573,33.35677959,,,,12.38465274,9.22118743,16.28353118,,,,,,,0.062080109,1460,23518,0.052548194,0.071612024,0.000218269,6,27489,,,4581.5,0.000466686,13,27856,,,2142.769231,0.000717978,20,27856,,,1392.8,4502,,,,,,,5768,,4440,0.4,,,,,,0.44,0.44,,0.39,0.39,,,,,,0.35,0.37,0.38,0.4,0.903220424,16239,17979,0.883447395,0.922993452,0.67654215,4727,6987,0.600905302,0.752178998,0.025735294,371,14416,,,0.08,539,,0.050212766,0.109787234,,,,,,,,,,0.147110333,0,0.378854537,0.100586378,0.056273453,0.144899303,3.759629439,174913,46524,3.275864012,4.243394866,0.13575612,904,6659,0.090927473,0.180584766,9.822110662,27,27489,,,81.71269815,110,134618,66.44233801,96.9830583,,,,,,,80.69492571,47.00776793,129.2003931,,,,89.37730426,71.68321156,110.1153386,,,,7.7,,,,,1,,,,,0.10122536,950,9385,0.072696658,0.129754061,0.083895131,0.05648412,0.111306143,0.010122536,0,0.021065079,0.006925946,0,0.014816301,0.783502171,10828,13820,0.743206123,0.823798218,,,,,,,0.786821705,0.700842445,0.872800966,,,,0.810413355,0.767329722,0.853496987,0.509,,13820,0.449247076,0.568752924,78.16138291,,,76.95328848,79.36947734,,,,,,,76.58942521,73.3263038,79.85254662,83.04417017,73.00874416,93.07959619,78.02935537,76.71246309,79.34624765,,,,358.8977235,327,77275,319.0845885,398.7108585,,,,,,,391.5556047,292.432454,513.4730816,,,,362.1422886,316.400503,407.8840741,,,,61.9877402,18,29038,36.73786342,97.96735405,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.098,,,0.083,0.114,0.155,,,0.133,0.179,0.094,,,0.08,0.109,206.2,47,22797,,,0.052,1380,,,,0.021241339,500.955739,23584,,,29.37360781,24,81706,18.82022478,43.70560007,,,,,,,,,,,,,35.23962948,21.81388607,53.86751701,,,,0.351,,,0.334,0.366,0.069875499,1173,16787,0.057960605,0.081790393,0.043792517,309,7056,0.030686134,0.0568989,0.000861574,24,27856,,,1160.666667,0.88,289.52,329,,,,,,,,3.345960437,,,,,,,2.882439285,3.479096979,3.400206994,,,,,,,,,,,0.006253944,,,,,1306.282,,,,,0.584670232,49200,84150,0.501874914,0.667465549,100092,,,89830.89362,110353.1064,,,,81500,5625.957447,157374.0426,82405,60601.93617,104208.0638,115995,87973.55319,144016.4468,106327,97280.02128,115373.9787,,,,,,0.326941515,1364,4172,,,12.41879264,,,,,0.199446509,,100092,,,5.128205128,8,1560,,,,,,,,,,,,,,,,,,,,,,,,,,16.20154439,23,134618,10.15342161,24.5293329,17.08538234,,,,,,,,,,,,,20.61338715,12.76001154,31.50975193,,,,14.1140115,19,134618,8.497556912,22.04077729,,,,,,,,,,,,,15.23476777,8.526783872,25.12743261,,,,15.04430009,28,186117,9.996828154,21.74320236,,,,,,,,,,,,,13.92818919,8.385679743,21.75059273,,,,12.5,,3200,,,27,13,0.718898434,14227,19790,,,0.702,,,,,15.71857885,,,,,0.752285098,7325,9737,0.715183043,0.789387153,0.087407097,835,9553,0.06168427,0.113129925,0.899661087,8760,9737,0.866420179,0.932901994,27856,,,,,0.243968983,6796,27856,,,0.144098219,4014,27856,,,0.156842332,4369,27856,,,0.008723435,243,27856,,,0.01873923,522,27856,,,0.00132826,37,27856,,,0.070505457,1964,27856,,,0.71481907,19912,27856,,,0.010346591,263,25419,0.001312934,0.019380249,0.49113297,13681,27856,,,1,26723,26723,, -51,101,51101,VA,King William County,2024,1,9682.940337,291,49576,7955.941683,11409.93899,0,,,,2,,,,2,16306.82402,10337.12761,24468.2426,1,,,,2,9196.700938,7284.223442,11109.17843,,,,,2,,0.145,,,0.124,0.171,3.516366861,,,2.760846808,4.322470765,5.500542388,,,4.486664298,6.554547754,0.066712049,98,1469,0.053951918,0.07947218,0,,,,,,,0.13836478,0.084694729,0.192034831,,,,0.060131796,0.04675869,0.073504902,,,,,,,0.162,,,0.128,0.2,0.389,,,0.315,0.467,9.3,0.028596134,0.059,,,0.218,,,0.177,0.265,0.5952274,10601,17810,,,0.179675955,,,0.144438697,0.218865481,0.4,6,15,0.262274328,0.527864126,302.7,55,18171,,,12.35987353,43,3479,8.944901757,16.64866853,,,,,,,22.63374486,11.29868388,40.49802163,,,,11.20989563,7.507443037,16.09928003,,,,,,,0.07072117,1064,15045,0.059997766,0.081444574,0.000330197,6,18171,,,3028.5,0.000324465,6,18492,,,3082,0.000594852,11,18492,,,1681.090909,2528,,,,,,,2677,,2477,0.5,,,,,,,0.5,,0.5,0.51,,,,,,,0.42,,0.53,0.934907415,11562,12367,0.911268002,0.958546828,0.644944793,2979,4619,0.548959827,0.740929759,0.026592971,255,9589,,,0.094,384,,0.05706383,0.13093617,,,,,,,0.269689738,0,0.5409584,0.465968586,0.289271042,0.642666131,0.077634622,0.030300172,0.124969071,3.776138603,137965,36536,3.320870912,4.231406294,0.209388056,852,4069,0.118498185,0.300277927,4.952947004,9,18171,,,88.90736315,77,86607,70.16430064,111.1189494,,,,,,,83.52315869,41.69445989,149.4460024,,,,95.89451603,73.85046231,122.4551561,,,,7.7,,,,,0,,,,,0.070367475,450,6395,0.041603769,0.09913118,0.064465409,0.035758611,0.093172207,0.003752932,0,0.011169306,0.002971071,0,0.007135834,0.811796832,7432,9155,0.775009408,0.848584257,,,,,,,,,,,,,0.698558942,0.645334495,0.751783388,0.666,,9155,0.581488205,0.750511795,75.3135078,,,73.94747121,76.67954439,,,,,,,69.48405891,65.15633215,73.81178567,,,,75.94032185,74.38534677,77.49529693,,,,450.6907864,291,49576,396.5159814,504.8655913,,,,,,,684.8630584,517.3381943,889.3516473,,,,423.9075091,364.5313209,483.2836974,,,,63.156686,11,17417,31.5275901,113.0047569,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.103,,,0.088,0.121,0.165,,,0.142,0.19,0.095,,,0.081,0.111,91.6,14,15276,,,0.059,1040,,,,0.028596134,455.67939,15935,,,39.65256798,21,52960,24.54556455,60.61316226,,,,,,,,,,,,,44.04423999,26.103408,69.6088878,,,,0.376,,,0.359,0.392,0.080928023,886,10948,0.066630151,0.095225896,0.044578593,192,4307,0.030280721,0.058876465,0.000811162,15,18492,,,1232.8,0.899897959,220.475,245,,,,,,,,3.442348274,,,,,,,3.020177024,,3.525081181,,,,,,,,,,,0.016871403,,,,,2153.9195,,,,,0.832741866,50216,60302,0.700127577,0.965356155,82715,,,70521.29787,94908.70213,,,,36875,31058.14894,42691.85106,59583,22509.80851,96656.19149,,,,84446,73423.53192,95468.46809,,,,,,0.297925608,833,2796,,,20.37038979,,,,,0.196095025,,82715,,,7.736943907,8,1034,,,,,,,,,,,,,,,,,,,,,,,,,,14.33251987,13,86607,7.405822162,25.03602785,15.01033404,,,,,,,,,,,,,14.97414343,7.180683814,27.53798291,,,,11.5464108,10,86607,5.536952782,21.23426056,,,,,,,,,,,,,,,,,,,27.68224142,33,119210,19.05518125,38.87615911,,,,,,,,,,,,,28.37560571,18.53588774,41.57683687,,,,,,1800,,,12,-888,0.823389571,10737,13040,,,0.664,,,,,11.28264564,,,,,0.861018425,5935,6893,0.827285282,0.894751567,0.08382778,551,6573,0.051719318,0.115936243,0.74945597,5166,6893,0.694396175,0.804515765,18492,,,,,0.222961281,4123,18492,,,0.170992862,3162,18492,,,0.144548994,2673,18492,,,0.01541207,285,18492,,,0.014168289,262,18492,,,0.000162232,3,18492,,,0.031364915,580,18492,,,0.771414666,14265,18492,,,0.004114245,69,16771,0,0.011155865,0.504596582,9331,18492,,,1,17810,17810,, -51,103,51103,VA,Lancaster County,2024,1,10785.09554,250,26530,8232.234888,13337.95619,0,,,,2,,,,2,14941.43424,10347.37756,20879.15674,,,,,2,9479.564532,6390.757675,12568.37139,,,,,2,,0.161,,,0.135,0.19,3.598170286,,,2.793216232,4.500737436,5.187655891,,,4.140454368,6.301341551,0.124100719,69,556,0.096695524,0.151505915,0,,,,,,,0.159663866,0.113126968,0.206200764,,,,0.102040816,0.067439098,0.136642535,,,,,,,0.164,,,0.13,0.202,0.373,,,0.3,0.45,8.9,0.021335689,0.082,,,0.231,,,0.188,0.279,0.709039289,7742,10919,,,0.127029902,,,0.100939891,0.15654032,0.666666667,8,12,0.557018037,0.752003686,384.3,42,10928,,,25.03209243,39,1558,17.80026476,34.21969439,,,,,,,38.96103896,24.96307282,57.97093765,,,,16.76646707,9.166383564,28.13128278,,,,,,,0.112540668,761,6762,0.097051307,0.12803003,0.000366032,4,10928,,,2732,9.30233E-05,1,10750,,,10750,0.000930233,10,10750,,,1075,1215,,,,,,,2350,,1098,0.53,,,,,,,0.58,,0.53,0.48,,,,,,,0.35,,0.49,0.863599954,7547,8739,0.826593833,0.900606075,0.680189317,1006,1479,0.524710493,0.835668141,0.035806571,194,5418,,,0.241,377,,0.159978723,0.322021277,,,,,,,0.349926794,0.20971833,0.490135257,,,,0.081190798,0,0.167964283,4.94095463,129705,26251,4.290543644,5.591365617,0.463949843,740,1595,0.344445882,0.583453804,24.70717423,27,10928,,,119.1362621,64,53720,91.74943884,152.134347,,,,,,,119.0712443,70.56916571,188.1839007,,,,127.3779525,93.25667048,169.9043384,,,,6.9,,,,,0,,,,,0.095553453,505,5285,0.068789944,0.122316962,0.095807247,0.067079576,0.124534919,0,0,0.009017895,0,0,0.006376615,0.757146471,2993,3953,0.691645548,0.822647394,,,,,,,0.667744543,0.557650168,0.777838918,,,,0.782945736,0.721546553,0.84434492,0.282,,3953,0.214651861,0.349348139,75.12540883,,,73.28930906,76.9615086,,,,,,,70.03527165,66.63250661,73.43803669,,,,76.67411932,74.49358887,78.85464976,,,,514.7463932,250,26530,433.3882582,596.1045283,,,,,,,726.2731398,565.0838535,919.1451409,,,,459.9580793,360.7004634,559.2156952,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.106,,,0.09,0.124,0.164,,,0.141,0.19,0.103,,,0.087,0.12,338,33,9763,,,0.082,900,,,,0.021335689,243.0348368,11391,,,,,,,,,,,,,,,,,,,,,,,,,,0.358,,,0.343,0.374,0.122800156,628,5114,0.103736327,0.141863986,0.083381254,145,1739,0.059551466,0.107211041,0.001023256,11,10750,,,977.2727273,0.875,82.25,94,,,,,,,,2.632539146,,,,,,,2.268606345,,3.251409971,,,,,,,,,,,0.020497824,,,,,-8070.57,,,,,0.753240449,41899,55625,0.468817642,1.037663257,60857,,,51846.95745,69867.04255,,,,93750,38724.6383,148775.3617,34160,22886.12766,45433.87234,131127,42838.82979,219415.1702,68095,57294.14894,78895.85106,,,,,,0.767491927,713,929,,,25.21878211,,,,,0.266526447,,60857,,,12.5,5,400,,,,,,,,,,,,,,,,,,,,,,,,,,19.96511592,14,53720,8.619519974,39.33923751,26.06105733,,,,,,,,,,,,,18.86777033,6.126313668,44.03108196,,,,22.33804914,12,53720,11.54239596,39.02007641,,,,,,,,,,,,,,,,,,,19.82632142,15,75657,11.0966416,32.7005021,,,,,,,,,,,,,,,,,,,16.25,,800,,,8,5,0.812265758,7152,8805,,,0.52,,,,,0.243127854,,,,,0.82187858,4305,5238,0.795554775,0.848202384,0.101797577,521,5118,0.072228686,0.131366468,0.732722413,3838,5238,0.678315064,0.787129763,10750,,,,,0.147348837,1584,10750,,,0.386139535,4151,10750,,,0.263348837,2831,10750,,,0.003069767,33,10750,,,0.009860465,106,10750,,,0,0,10750,,,0.026697674,287,10750,,,0.685674419,7371,10750,,,0.006370638,67,10517,0,0.017094492,0.522604651,5618,10750,,,1,10919,10919,, -51,105,51105,VA,Lee County,2024,1,12412.52068,591,62153,10753.80253,14071.23883,0,,,,2,,,,2,,,,2,,,,2,13198.41476,11383.11022,15013.71931,,,,,2,,0.227,,,0.191,0.268,5.054599938,,,4.053202482,6.13841999,6.190681267,,,5.023818559,7.448825196,0.088937093,123,1383,0.073934697,0.103939489,0,,,,,,,,,,,,,0.088970588,0.073839295,0.104101882,,,,,,,0.248,,,0.201,0.297,0.424,,,0.341,0.511,7,1.82939E-05,0.179,,,0.32,,,0.26,0.383,0.348306499,7723,22173,,,0.147983259,,,0.116225506,0.185163788,0.214285714,3,14,0.080830645,0.373240293,154.7,34,21983,,,34.43941679,137,3978,28.67239522,40.20643837,,,,,,,,,,,,,35.4309889,29.43187723,41.43010056,,,,,,,0.095695004,1496,15633,0.081397132,0.109992877,0.000318428,7,21983,,,3140.428571,0.000227459,5,21982,,,4396.4,0.001501228,33,21982,,,666.1212121,4370,,,,,,,,,4394,0.35,,,,,,,,,0.35,0.35,,,,,,,,,0.35,0.817460794,13605,16643,0.789673192,0.845248397,0.428887659,2325,5421,0.353457647,0.504317671,0.037825347,311,8222,,,0.313,1255,,0.203382979,0.422617021,,,,,,,,,,,,,0.442766296,0.359322849,0.526209742,5.504473503,87978,15983,4.448086115,6.560860891,0.321480058,1338,4162,0.231163627,0.411796489,5.003866624,11,21983,,,106.0866115,123,115943,87.33821658,124.8350065,,,,,,,,,,,,,113.2261088,93.13412877,133.3180889,,,,7.7,,,,,0,,,,,0.145279819,1285,8845,0.114969237,0.175590401,0.123732719,0.096695686,0.150769752,0.014584511,0.001920542,0.027248481,0.012436405,0.000659805,0.024213005,0.832198232,5743,6901,0.772297042,0.892099422,,,,,,,,,,,,,0.789616867,0.710288911,0.868944823,0.304,,6901,0.239924897,0.368075103,72.83839849,,,71.66740644,74.00939055,,,,,,,,,,,,,72.25301901,71.00989791,73.49614012,,,,628.5306686,591,62153,573.6649511,683.3963861,,,,,,,,,,,,,652.8383218,594.3690664,711.3075773,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.151,,,0.129,0.175,0.204,,,0.175,0.233,0.123,,,0.104,0.143,104.4,20,19165,,,0.179,4020,,,,1.82939E-05,0.468085907,25587,,,21.85187343,15,68644,12.23032768,36.0413421,,,,,,,,,,,,,23.53938139,13.17481307,38.82462984,,,,0.391,,,0.374,0.408,0.113776559,1328,11672,0.09471273,0.132840389,0.04342639,182,4191,0.029128518,0.057724262,0.001046311,23,21982,,,955.7391304,0.83,188.41,227,,,,,,,,3.298539497,,,,,,,,,3.314403047,,,,,,,,,,,0.046909081,,,,,-2716.238,,,,,0.887508732,40655,45808,0.718531772,1.056485693,41573,,,35420.14894,47725.85106,,,,,,,,,,9036,5285.191489,12786.80851,42316,36015.40426,48616.59575,,,,,,0.944482289,2773,2936,,,,,,,,0.300122676,,41573,,,11.17886179,11,984,,,,,,,,,,,,,,,,,,,,,,,,,,21.35505684,24,115943,13.38310043,32.33181269,20.69982664,,,,,,,,,,,,,23.40878342,14.49040589,35.78281207,,,,19.83733386,23,115943,12.575168,29.76574083,,,,,,,,,,,,,21.34590576,13.53147318,32.02933939,,,,18.19681677,30,164864,12.27731586,25.97708741,,,,,,,,,,,,,19.5979801,13.22267488,27.97733519,,,,,,2000,,,7,-888,0.519425588,9947,19150,,,0.431,,,,,1.254472267,,,,,0.721528112,6006,8324,0.688624473,0.75443175,0.13952862,1036,7425,0.102482015,0.176575225,0.627462758,5223,8324,0.583693152,0.671232365,21982,,,,,0.185151488,4070,21982,,,0.23364571,5136,21982,,,0.041579474,914,21982,,,0.004776635,105,21982,,,0.002956965,65,21982,,,0.000409426,9,21982,,,0.022063507,485,21982,,,0.917932854,20178,21982,,,0.00611477,130,21260,0,0.012333572,0.470794286,10349,21982,,,1,22173,22173,, -51,107,51107,VA,Loudoun County,2024,1,3243.251852,2137,1212383,3047.028038,3439.475666,0,,,,2,1683.415361,1393.902555,1972.928167,,4811.397623,3924.066552,5698.728695,,3276.502952,2742.146922,3810.858982,,3499.232572,3223.642343,3774.822802,,,,,2,,0.105,,,0.088,0.125,2.703598215,,,2.161773984,3.322256229,4.151258955,,,3.494666741,4.885878441,0.067146488,2351,35013,0.064524929,0.069768048,0,,,,0.083869308,0.077707416,0.0900312,0.098101266,0.086505919,0.109696612,0.069642857,0.06355682,0.075728894,0.05355678,0.050178896,0.056934663,,,,0.069828722,0.051697224,0.08796022,0.086,,,0.065,0.109,0.296,,,0.253,0.342,9.9,0.009939537,0.041,,,0.161,,,0.132,0.193,0.92483591,389318,420959,,,0.184255427,,,0.155017358,0.215722237,0.476923077,31,65,0.41986908,0.531118587,201.1,860,427592,,,4.440059201,450,101350,4.029818661,4.850299741,,,,0.676628137,0.349623632,1.181933186,4.122245913,2.760732784,5.920232756,20.22150324,18.02299636,22.42001011,1.281741683,0.997271535,1.622126133,,,,,,,0.058419199,22531,385678,0.052461753,0.064376646,0.00076007,325,427592,,,1315.667692,0.000735966,318,432085,,,1358.757862,0.001964891,849,432085,,,508.9340401,2340,,,,,,2114,4196,1719,2281,0.36,,,,,,0.29,0.32,0.3,0.37,0.53,,,,,,0.5,0.43,0.39,0.54,0.943590044,257384,272771,0.937954163,0.949225925,0.850883029,101033,118739,0.828008932,0.873757127,0.023893486,5556,232532,,,0.038,4278,,0.026085106,0.049914894,0.047169811,0.00377603,0.090563593,0.017370497,0.008943456,0.025797538,0.084620956,0.034022657,0.135219255,0.122040175,0.090899407,0.153180943,0.016123411,0.010204895,0.022041927,,,,,,0.11772511,13486,114555,0.102614758,0.132835463,6.992647196,299,427592,,,29.96842681,620,2068844,27.60944728,32.32740634,,,,15.45815596,11.93027842,19.70268872,27.79878849,20.11812107,37.44478567,20.19498607,15.33489961,26.10670256,38.86355528,35.22803695,42.49907361,,,,7.2,,,,,0,,,,,0.103307811,13695,132565,0.095650365,0.110965257,0.085395993,0.077764281,0.093027705,0.016256176,0.013096947,0.019415406,0.007581187,0.005458711,0.009703663,0.63919748,144706,226387,0.629263503,0.649131458,0.587234043,0.400065873,0.774402212,0.482014191,0.456357444,0.507670939,0.702180716,0.664697898,0.739663534,0.656836827,0.626541566,0.687132087,0.657986367,0.64589013,0.670082605,0.487,,226387,0.469367568,0.504632432,84.14753147,,,83.8083491,84.48671384,,,,90.3942856,88.53484246,92.25372874,81.76402639,80.4173501,83.11070267,87.35602594,85.30932604,89.40272584,83.24505074,82.85625785,83.63384364,,,,178.0074774,2137,1212383,170.37646,185.6384948,,,,113.2854705,98.86893014,127.7020109,243.4941463,211.03117,275.9571225,146.2139558,124.478057,167.9498547,195.2640232,184.9849528,205.5430937,,,,24.31266889,122,501796,19.99838429,28.6269535,,,,15.64241441,8.940991391,25.402301,35.38048766,18.28161426,61.80259176,37.49667368,25.47717055,53.22353522,21.22530056,15.89920663,27.76321573,,,,3.463617932,123,35512,2.851502265,4.075733599,,,,,,,,,,4.206730769,2.795342046,6.079897227,2.782825988,2.058749986,3.679043537,,,,,,,0.073,,,0.062,0.086,0.124,,,0.107,0.144,0.082,,,0.07,0.094,128.7,447,347450,,,0.041,16800,,,,0.009939537,3104.226576,312311,,,8.861362403,112,1263914,7.220215119,10.50250969,,,,,,,13.63212147,7.258530553,23.31134289,,,,12.03740403,9.573704653,14.94159233,,,,0.314,,,0.302,0.326,0.069530359,18715,269163,0.061189933,0.077870785,0.034675258,4230,121989,0.026334832,0.043015683,0.000974345,421,432085,,,1026.330166,0.96,6199.68,6458,,,0.022143813,546,24657,0.012043315,0.032244311,3.335128982,,,,,,3.603816817,2.921584454,2.769524894,3.468209994,,,,,,,,,,,0.118019196,,,,,7368.48,,,,,0.672713035,84186,125144,0.643646844,0.701779225,167605,,,158580.6596,176629.3404,133500,69774.38298,197225.617,189204,178577.1064,199830.8936,137795,123134.9149,152455.0851,115267,107013.5532,123520.4468,178328,174124.4255,182531.5745,,,,,,0.201565033,15790,78337,,,29.97704353,,,,,0.238208884,,167605,,,7.400786557,207,27970,,,0.883261766,25,2830418,0.571600444,1.303868605,,,,,,,,,,,,,,,,,,,9.401900561,187,2068844,8.029395633,10.77440549,9.038864216,,,,5.873069488,3.68062138,8.891897785,,,,5.379959613,3.075111765,8.736717356,12.11425424,10.04970994,14.17879854,,,,4.640272539,96,2068844,3.758635654,5.666566981,,,,,,,,,,,,,6.905141941,5.458228159,8.617929648,,,,3.639038474,103,2830418,2.936250848,4.3418261,,,,2.147235971,1.109508159,3.750789118,4.759366433,2.282301199,8.752644324,2.813910953,1.404694209,5.034863976,4.33925301,3.369599752,5.501037155,,,,6.727272727,,55000,,,136,234,0.88616839,224976,253875,,,0.798,,,,,65.20334641,,,,,0.774274805,107275,138549,0.764475071,0.78407454,0.090334784,12369,136924,0.082815941,0.097853627,0.964063256,133570,138549,0.959797632,0.968328879,432085,,,,,0.26358934,113893,432085,,,0.108166217,46737,432085,,,0.076031336,32852,432085,,,0.004716665,2038,432085,,,0.226279552,97772,432085,,,0.001043776,451,432085,,,0.13955356,60299,432085,,,0.521332608,225260,432085,,,0.037277976,14664,393369,0.033694233,0.040861718,0.49802238,215188,432085,,,0.119465316,50290,420959,, -51,109,51109,VA,Louisa County,2024,1,9455.697342,650,105919,8222.358279,10689.03641,0,,,,2,,,,2,14357.36124,9931.561296,18783.16119,,,,,2,8885.706316,7557.631679,10213.78095,,,,,2,,0.161,,,0.137,0.189,3.818350778,,,3.032163849,4.69415329,5.029993821,,,4.100773272,6.078351092,0.073384447,201,2739,0.063618556,0.083150338,0,,,,,,,0.085106383,0.054953802,0.115258964,,,,0.073741007,0.062879016,0.084602998,,,,,,,0.174,,,0.139,0.215,0.356,,,0.286,0.432,9.1,0.005442561,0.079,,,0.232,,,0.191,0.282,0.387940206,14585,37596,,,0.166792396,,,0.134351818,0.204433225,0.409090909,18,44,0.333681102,0.48161079,306.3,119,38848,,,15.00825454,100,6663,12.06663665,17.94987243,,,,,,,10.18518519,5.084407747,18.22410974,,,,15.05331382,11.77829097,18.95715744,,,,,,,0.094944112,2922,30776,0.081837729,0.108050495,0.000102965,4,38848,,,9712,0.000174494,7,40116,,,5730.857143,0.000473627,19,40116,,,2111.368421,3355,,,,,,,5050,,3208,0.48,,,,,,,0.55,,0.48,0.52,,,,,,0.46,0.42,0.32,0.53,0.886471958,24737,27905,0.862641201,0.910302716,0.594031532,5275,8880,0.521796824,0.666266239,0.027160376,567,20876,,,0.14,1090,,0.091148936,0.188851064,,,,,,,0.150974026,0.038656353,0.263291699,0.237623762,0.01666736,0.458580165,0.079800037,0.036999712,0.122600362,4.095343309,146429,35755,3.57610972,4.614576897,0.171770272,1307,7609,0.113054384,0.23048616,7.722405272,30,38848,,,99.35419772,186,187209,85.07559138,113.6328041,,,,,,,122.4118635,85.26434808,170.2452692,,,,99.30282568,83.13939009,115.4662613,,,,7.7,,,,,0,,,,,0.110879388,1595,14385,0.084783358,0.136975418,0.085024493,0.062395017,0.107653968,0.023913799,0.01353918,0.034288418,0.004171012,0,0.008515518,0.776043145,13670,17615,0.738727612,0.813358678,,,,,,,0.772249474,0.703640593,0.840858356,,,,0.733725281,0.690976046,0.776474515,0.623,,17615,0.552965151,0.693034849,76.49180276,,,75.49665144,77.48695407,,,,,,,73.38004652,70.2954949,76.46459814,,,,76.71914397,75.64342039,77.79486755,,,,417.1894169,650,105919,381.9539357,452.4248982,,,,,,,574.7718117,461.5341582,688.0094653,,,,399.9983707,361.3689023,438.627839,,,,66.89980234,22,32885,41.92574995,101.2871047,,,,,,,,,,,,,61.9527507,34.67448428,102.1816408,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.111,,,0.095,0.128,0.167,,,0.143,0.191,0.1,,,0.085,0.116,140.8,47,33381,,,0.079,2920,,,,0.005442561,180.4372098,33153,,,37.53131246,43,114571,27.16159692,50.55443158,,,,,,,75.64736689,40.2790369,129.3593012,,,,31.32516642,20.81534559,45.27358723,,,,0.359,,,0.343,0.375,0.106140427,2458,23158,0.089459576,0.122821278,0.062030075,495,7980,0.044157735,0.079902416,0.000199422,8,40116,,,5014.5,0.89,317.73,357,,,,,,,,3.083755729,,,,,,,2.648874609,2.628396211,3.202200822,,,,,,,,,,,0.014121911,,,,,1452.549,,,,,0.840474599,50294,59840,0.738651634,0.942297564,72569,,,62244.74468,82893.25532,,,,206250,21475.02128,391024.9787,42241,34032.82979,50449.17021,72411,8406.574468,136415.4255,84152,76668.25532,91635.74468,,,,,,0.433823529,2242,5168,,,26.08289434,,,,,0.240695063,,72569,,,6.451612903,13,2015,,,4.668406945,12,257047,2.412233992,8.154767435,,,,,,,,,,,,,,,,,,,17.419926,33,187209,11.75315092,24.86802753,17.62735766,,,,,,,,,,,,,22.41546005,15.01198539,32.19233972,,,,18.69568237,35,187209,13.02222778,26.00116841,,,,,,,,,,,,,19.86056514,13.30093217,28.52308444,,,,24.89817037,64,257047,19.17462509,31.79440772,,,,,,,25.08466073,12.02906985,46.1315842,,,,25.9346447,19.36923313,34.00983608,,,,22.64705882,,3400,,,53,24,0.765223464,21916,28640,,,0.673,,,,,4.819897923,,,,,0.798524792,11692,14642,0.766926638,0.830122945,0.094426369,1335,14138,0.071526136,0.117326602,0.810476711,11867,14642,0.782401474,0.838551948,40116,,,,,0.197626882,7928,40116,,,0.212010171,8505,40116,,,0.144032306,5778,40116,,,0.005184964,208,40116,,,0.007478313,300,40116,,,0.000697976,28,40116,,,0.041654203,1671,40116,,,0.777894107,31206,40116,,,0.004930885,178,36099,1.20087E-05,0.00984976,0.498055639,19980,40116,,,1,37596,37596,, -51,111,51111,VA,Lunenburg County,2024,1,12374.39115,266,33061,9789.534676,14959.24762,0,,,,2,,,,2,17061.91028,11217.33749,22906.48308,,,,,2,11880.27724,8529.752604,15230.80187,,,,,2,,0.22,,,0.19,0.252,4.479206382,,,3.594655854,5.432676609,5.531169522,,,4.424163623,6.717853295,0.106958763,83,776,0.085213275,0.128704251,0,,,,,,,0.189873418,0.1399401,0.239806736,,,,0.078431373,0.052343736,0.104519009,,,,,,,0.22,,,0.182,0.261,0.425,,,0.344,0.511,8.8,0.000185013,0.097,,,0.287,,,0.237,0.341,0.224865952,2684,11936,,,0.142878865,,,0.112467718,0.176187998,0.4,6,15,0.262274328,0.527864126,377.3,45,11926,,,26.88172043,55,2046,20.2509907,34.99025414,,,,,,,43.8247012,27.46470692,66.35112428,,,,22.54428341,14.98051261,32.58276646,,,,,,,0.116840172,954,8165,0.10015932,0.133521023,0.000167701,2,11926,,,5963,0.000332474,4,12031,,,3007.75,0.000748068,9,12031,,,1336.777778,3073,,,,,,,2828,,2934,0.47,,,,,,,0.57,,0.42,0.48,,,,,,,0.4,,0.51,0.78747585,6929,8799,0.754999386,0.819952313,0.474507138,1396,2942,0.401345385,0.547668891,0.034436322,179,5198,,,0.272,636,,0.183829787,0.360170213,,,,,,,0.253275109,0.108872095,0.397678123,0.331058021,0.122945524,0.539170517,0.058580858,0.016164394,0.100997322,4.463224437,96727,21672,3.412517807,5.513931067,0.367590618,862,2345,0.256621734,0.478559503,14.25456985,17,11926,,,113.6550815,69,60710,88.43043742,143.8377798,,,,,,,105.2420567,65.14649185,160.8736631,,,,130.9593469,96.22400225,174.1481689,,,,7.7,,,,,0,,,,,0.13310962,595,4470,0.090889936,0.175329304,0.116891892,0.076620067,0.157163717,0.008724832,0,0.019925275,0.011185682,0.002135244,0.020236121,0.818042142,3727,4556,0.751733463,0.884350821,,,,,,,0.822033898,0.67331149,0.970756306,,,,0.788551402,0.724716434,0.852386369,0.446,,4556,0.353576976,0.538423024,73.7276991,,,71.84895554,75.60644266,,,,,,,70.96622448,67.10967981,74.82276914,,,,73.741911,71.28456706,76.19925495,,,,540.8792133,266,33061,469.557146,612.2012806,,,,,,,656.2983731,512.3940776,800.2026687,,,,531.6074909,440.28211,622.9328717,,,,99.18666931,10,10082,47.56386328,182.4078163,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.135,,,0.117,0.155,0.185,,,0.161,0.21,0.132,,,0.113,0.152,330.3,34,10294,,,0.097,1170,,,,0.000185013,2.389263051,12914,,,,,,,,,,,,,,,,,,,,,,,,,,0.386,,,0.373,0.399,0.136340512,804,5897,0.114893704,0.157787321,0.067142258,160,2383,0.045695449,0.088589066,0.000831186,10,12031,,,1203.1,0.875,94.5,108,,,,,,,,3.003322909,,,,,,,2.835088022,,3.218073199,,,,,,,,,,,0.031205781,,,,,-8596.432,,,,,0.699765881,36166,51683,0.576368359,0.823163402,47660,,,40495.57447,54824.42553,,,,,,,48341,44863.04255,51818.95745,,,,63643,53688.10638,73597.89362,,,,,,0.787181083,1265,1607,,,8.4688595,,,,,0.261791859,,47660,,,3.527336861,2,567,,,,,,,,,,,,,,,,,,,,,,,,,,27.29247807,16,60710,14.92105173,45.79214067,26.35480152,,,,,,,,,,,,,32.64301137,15.65359278,60.03166015,,,,26.35480152,16,60710,15.06404621,42.79854653,,,,,,,,,,,,,30.65005991,15.30039947,54.84142359,,,,24.62418799,21,85282,15.24276047,37.64068706,,,,,,,,,,,,,27.65322851,15.11827736,46.39741861,,,,32.72727273,,1100,,,28,8,0.619082001,6002,9695,,,0.544,,,,,0.717429521,,,,,0.698204117,3188,4566,0.663707763,0.732700472,0.06926714,293,4230,0.034372751,0.104161528,0.623959702,2849,4566,0.577058182,0.670861222,12031,,,,,0.198071648,2383,12031,,,0.233313939,2807,12031,,,0.313357161,3770,12031,,,0.007314438,88,12031,,,0.004571524,55,12031,,,0.002161084,26,12031,,,0.069819633,840,12031,,,0.584240712,7029,12031,,,0.018917499,216,11418,0.003192668,0.03464233,0.463136896,5572,12031,,,1,11936,11936,, -51,113,51113,VA,Madison County,2024,1,8415.850878,206,36704,6477.510469,10354.19129,0,,,,2,,,,2,15192.65419,4933.01346,35454.58684,1,,,,2,7248.653072,5329.847096,9167.459047,,,,,2,,0.16,,,0.134,0.189,3.80039318,,,2.965868295,4.691937603,5.533528569,,,4.443629019,6.665898579,0.078280044,71,907,0.060798594,0.095761494,0,,,,,,,,,,,,,0.078358209,0.059782244,0.096934174,,,,,,,0.175,,,0.137,0.215,0.375,,,0.298,0.46,9.4,0.002925757,0.07,,,0.236,,,0.19,0.284,0.492881405,6820,13837,,,0.163450102,,,0.130346192,0.202088402,0.071428571,1,14,0.003307818,0.237195967,229.5,32,13942,,,14.14216598,38,2687,10.00783835,19.41122773,,,,,,,,,,,,,16.40112465,11.42398426,22.80999408,,,,,,,0.09958042,1068,10725,0.085282547,0.113878292,7.17257E-05,1,13942,,,13942,0.000357143,5,14000,,,2800,0.000357143,5,14000,,,2800,1589,,,,,,,1700,,1493,0.51,,,,,,,0.42,,0.52,0.54,,,,,,,0.52,,0.54,0.87009392,8801,10115,0.833112506,0.907075334,0.536585366,1584,2952,0.419428338,0.653742394,0.02227788,169,7586,,,0.137,371,,0.084574468,0.189425532,,,,,,,,,,0.346153846,0,0.692672435,0.072767857,0.014754223,0.130781491,4.061756773,132527,32628,3.065013823,5.058499723,0.113078035,313,2768,0.037792135,0.188363935,10.75885813,15,13942,,,110.3045299,74,67087,86.61278078,138.4772363,,,,,,,,,,,,,107.5117205,82.23794734,138.1033028,,,,7.1,,,,,0,,,,,0.130392157,665,5100,0.088428419,0.172355895,0.095284872,0.052675701,0.137894043,0.031176471,0.006949403,0.055403538,0.003921569,0,0.012735227,0.734157651,4750,6470,0.668611049,0.799704252,,,,,,,,,,,,,0.683846154,0.590502373,0.777189935,0.401,,6470,0.315063959,0.486936041,78.06599806,,,76.44210628,79.68988984,,,,,,,,,,,,,78.9240537,77.26130814,80.58679926,,,,382.7176611,206,36704,324.1073151,441.3280072,,,,,,,519.8923427,297.1633943,844.2725931,,,,353.0591829,293.444497,412.6738688,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.112,,,0.096,0.131,0.175,,,0.15,0.2,0.099,,,0.084,0.114,83.3,10,12010,,,0.07,960,,,,0.002925757,38.93597346,13308,,,24.68221646,10,40515,11.83608218,45.39147487,,,,,,,,,,,,,,,,,,,0.341,,,0.323,0.358,0.109465227,872,7966,0.091592887,0.127337568,0.072463768,210,2898,0.04982547,0.095102066,0.000285714,4,14000,,,3500,0.975,114.075,117,,,,,,,,2.986626021,,,,,,,,,3.053424177,,,,,,,,,,,0.011862168,,,,,2743.145,,,,,1.02807845,51004,49611,0.836143853,1.220013048,71697,,,60956.91489,82437.08511,,,,,,,66458,27404.55319,105511.4468,14236,5330.808511,23141.19149,77006,66787.78723,87224.21277,,,,,,0.458307597,742,1619,,,26.75991723,,,,,0.287124984,,71697,,,5.174644243,4,773,,,,,,,,,,,,,,,,,,,,,,,,,,16.46088636,13,67087,7.893634838,30.27215609,19.37782283,,,,,,,,,,,,,14.74808797,6.367177598,29.05961267,,,,22.35902634,15,67087,12.51417731,36.87781369,,,,,,,,,,,,,21.14984666,10.9284344,36.9445258,,,,23.58010268,22,93299,14.77752481,35.70055884,,,,,,,,,,,,,18.96765383,10.61605186,31.28426048,,,,13.33333333,,1200,,,10,6,0.78503861,8133,10360,,,0.653,,,,,8.487506997,,,,,0.792449286,4219,5324,0.750189458,0.834709115,0.111678236,547,4898,0.066296837,0.157059635,0.804470323,4283,5324,0.75640968,0.852530966,14000,,,,,0.197,2758,14000,,,0.236214286,3307,14000,,,0.083142857,1164,14000,,,0.003142857,44,14000,,,0.008785714,123,14000,,,0.000428571,6,14000,,,0.038357143,537,14000,,,0.840214286,11763,14000,,,0.000610967,8,13094,0,0.008136649,0.512428571,7174,14000,,,1,13837,13837,, -51,115,51115,VA,Mathews County,2024,1,9920.536478,176,22335,7035.081789,12805.99117,0,,,,2,,,,2,23726.58651,7703.958058,55369.93811,1,,,,2,9224.441878,6361.168275,12087.71548,,,,,2,,0.141,,,0.118,0.165,3.574136301,,,2.806504414,4.399297153,4.971132733,,,4.006205435,5.990078369,0.086746988,36,415,0.059666606,0.11382737,0,,,,,,,,,,,,,0.082417582,0.05416632,0.110668845,,,,,,,0.15,,,0.117,0.187,0.369,,,0.295,0.449,9.2,0,0.077,,,0.203,,,0.164,0.248,0.483534513,4126,8533,,,0.150699364,,,0.119421432,0.185591761,0.142857143,1,7,0.008995928,0.386311364,163.8,14,8546,,,6.711409396,10,1490,3.218381675,12.34252083,,,,,,,,,,,,,,,,,,,,,,0.085592498,502,5865,0.072486115,0.098698881,0.000351041,3,8546,,,2848.666667,0.000235571,2,8490,,,4245,0.000471143,4,8490,,,2122.5,1696,,,,,,,,,1747,0.51,,,,,,,0.53,,0.5,0.54,,,,,,,0.52,,0.54,0.942521632,6100,6472,0.900223789,0.984819475,0.689119171,798,1158,0.523374226,0.854864116,0.028564453,117,4096,,,0.147,186,,0.091,0.203,,,,,,,,,,,,,0.143939394,0,0.313594677,4.226599647,155560,36805,2.982943666,5.470255628,0.092176607,119,1291,0,0.215208132,17.55207114,15,8546,,,89.18974547,39,43727,63.42262787,121.9253182,,,,,,,,,,,,,99.21965085,69.85979075,136.7612189,,,,6.8,,,,,0,,,,,0.112113402,435,3880,0.065586515,0.158640289,0.096649485,0.049122925,0.144176044,0.005154639,0,0.01908739,0.010309278,0,0.031294915,0.74369483,2359,3172,0.6636379,0.82375176,,,,,,,,,,,,,0.621166566,0.499587646,0.742745487,0.577,,3172,0.429828152,0.724171848,76.23189283,,,74.05728648,78.40649918,,,,,,,,,,,,,76.53695351,74.31810659,78.75580044,,,,453.6406183,176,22335,371.7992246,535.482012,,,,,,,813.0009918,432.8887877,1390.256456,,,,443.954302,357.6465308,530.2620733,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.102,,,0.087,0.119,0.16,,,0.138,0.185,0.093,,,0.079,0.108,210,16,7619,,,0.077,660,,,,0,0,8978,,,,,,,,,,,,,,,,,,,,,,,,,,0.328,,,0.311,0.344,0.092910612,422,4542,0.07742125,0.108399974,0.061965812,87,1404,0.042901982,0.081029642,0.000588928,5,8490,,,1698,0.875,59.5,68,,,,,,,,3.401984087,,,,,,,,,3.569400805,,,,,,,,,,,0.011213101,,,,,2579.326,,,,,0.795396223,51762,65077,0.598583101,0.992209345,73827,,,63508.70213,84145.29787,,,,,,,36567,25396.78723,47737.21277,,,,88080,68488.34043,107671.6596,,,,,,0.502768549,454,903,,,24.1614216,,,,,0.219702819,,73827,,,11.14206128,4,359,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,700,,,7,-888,0.78399462,5829,7435,,,0.455,,,,,0.757747009,,,,,0.838321753,3137,3742,0.795632873,0.881010633,0.054844098,197,3592,0.009413255,0.100274941,0.742650989,2779,3742,0.646605567,0.838696411,8490,,,,,0.151707892,1288,8490,,,0.327090695,2777,8490,,,0.077385159,657,8490,,,0.00459364,39,8490,,,0.009187279,78,8490,,,0.001177856,10,8490,,,0.031919906,271,8490,,,0.851590106,7230,8490,,,0.003506651,29,8270,0,0.015316178,0.508127209,4314,8490,,,1,8533,8533,, -51,117,51117,VA,Mecklenburg County,2024,1,11868.30719,660,81395,10326.48388,13410.13049,0,,,,2,,,,2,18430.38464,15200.77447,21659.99481,,,,,2,8960.161449,7215.529895,10704.793,,,,,2,,0.19,,,0.161,0.218,4.002064405,,,3.23464656,4.890976088,4.991020158,,,4.078148424,6.070193789,0.095581172,199,2082,0.082951657,0.108210687,0,,,,,,,0.119366626,0.097188568,0.141544684,,,,0.083989501,0.067909144,0.100069858,,,,,,,0.195,,,0.159,0.231,0.402,,,0.334,0.475,7.5,0.09547304,0.113,,,0.275,,,0.23,0.324,0.557142386,16892,30319,,,0.134073559,,,0.107501504,0.165049799,0.183673469,9,49,0.113526063,0.263733337,509.1,154,30248,,,22.87701318,125,5464,18.86649594,26.88753041,,,,,,,28.1892021,21.45892672,36.3620169,,,,18.55670103,13.94036494,24.21246955,,,,,,,0.103125585,2204,21372,0.088827713,0.117423457,0.000562021,17,30248,,,1779.294118,0.000295005,9,30508,,,3389.777778,0.001114462,34,30508,,,897.2941177,3023,,,,,,,3365,,2911,0.45,,,,,,,0.42,,0.46,0.49,,,,,,,0.43,,0.51,0.864812362,19588,22650,0.845564964,0.88405976,0.595317197,3763,6321,0.520851914,0.669782479,0.035858702,470,13107,,,0.329,1806,,0.269425532,0.388574468,,,,,,,0.38781575,0.282374049,0.493257452,0.528985507,0.38570742,0.672263595,0.166202091,0.102701377,0.229702805,5.595447137,106431,19021,4.735019997,6.455874278,0.373922414,2082,5568,0.292352502,0.455492326,15.86881777,48,30248,,,117.7625123,180,152850,100.5586134,134.9664111,,,,,,,116.0047949,88.52387949,149.3211659,,,,125.9063083,102.9936981,148.8189186,,,,8,,,,,0,,,,,0.126515764,1565,12370,0.100250337,0.152781191,0.104118616,0.079588485,0.128648748,0.0109135,0.004145581,0.01768142,0.014955538,0.003950814,0.025960261,0.828892691,10173,12273,0.801510965,0.856274418,,,,,,,0.777132295,0.725803396,0.828461193,,,,0.848070932,0.803969666,0.892172199,0.359,,12273,0.312715584,0.405284416,73.90217046,,,72.81942821,74.9849127,,,,,,,68.86929222,66.92382653,70.81475791,,,,76.13828386,74.83714109,77.43942663,,,,526.1011061,660,81395,480.0433366,572.1588756,,,,,,,790.824298,691.6949178,889.9536782,,,,415.9403265,364.7487837,467.1318692,,,,84.43568815,21,24871,52.26702177,129.0689186,,,,,,,117.0212766,58.41659965,209.3833884,,,,,,,,,,11.03117506,23,2085,6.992818723,16.55217885,,,,,,,,,,,,,,,,,,,,,,0.123,,,0.106,0.141,0.177,,,0.155,0.201,0.122,,,0.105,0.14,269.9,71,26310,,,0.113,3440,,,,0.09547304,3124.54618,32727,,,30.59641148,28,91514,20.33109323,44.22033344,,,,,,,,,,,,,32.56150507,19.29801154,51.46121611,,,,0.382,,,0.368,0.397,0.119699812,1914,15990,0.101827472,0.137572153,0.055399226,315,5686,0.038718375,0.072080077,0.001278353,39,30508,,,782.2564103,0.88,295.68,336,,,,,,,,3.228096176,,,,,,,2.990309207,,3.5431995,,,,,,,,,,,0.024774098,,,,,-4164.504,,,,,0.726677149,38822,53424,0.623772983,0.829581314,52092,,,45131.31915,59052.68085,,,,188728,188549.2766,188906.7234,33008,29384.68085,36631.31915,58413,23709.68085,93116.31915,59366,53082.08511,65649.91489,,,,,,0.738816338,2659,3599,,,25.47058561,,,,,0.227539737,,52092,,,7.06940874,11,1556,,,7.913491572,17,214823,4.609900462,12.6702666,,,,,,,17.84145806,9.499825004,30.50943665,,,,,,,,,,22.0408046,32,152850,14.52502911,32.0682135,20.93555774,,,,,,,,,,,,,26.01546458,15.66300912,40.62637053,,,,22.2440301,34,152850,15.40463748,31.08380248,,,,,,,19.33413248,9.271468033,35.556158,,,,24.96418183,15.82514983,37.45853004,,,,27.92997026,60,214823,21.3135097,35.95140809,,,,,,,38.42775582,25.53496467,55.53880647,,,,23.18052218,15.63980097,33.09163677,,,,28.07692308,,2600,,,56,17,0.662456571,16207,24465,,,0.496,,,,,8.125350037,,,,,0.708752014,9240,13037,0.687672238,0.729831789,0.122699387,1480,12062,0.096609847,0.148788926,0.703075861,9166,13037,0.671972511,0.734179211,30508,,,,,0.182280058,5561,30508,,,0.271502557,8283,30508,,,0.325783401,9939,30508,,,0.004228399,129,30508,,,0.011013505,336,30508,,,0.000786679,24,30508,,,0.033007736,1007,30508,,,0.608168349,18554,30508,,,0.00464214,134,28866,0,0.009681761,0.509899043,15556,30508,,,0.83258023,25243,30319,, -51,119,51119,VA,Middlesex County,2024,1,13188.53804,247,27226,10083.9412,16293.13488,0,,,,2,,,,2,14475.40732,7479.654194,25285.62347,1,,,,2,13780.67905,10033.68464,17527.67345,,,,,2,,0.161,,,0.135,0.19,3.768309452,,,2.979661941,4.660098751,5.131658779,,,4.129962394,6.251295527,0.087579618,55,628,0.065470304,0.109688932,0,,,,,,,0.113636364,0.047326312,0.179946415,,,,0.086868687,0.062057261,0.111680113,,,,,,,0.169,,,0.134,0.209,0.365,,,0.293,0.441,9.2,0.002705239,0.079,,,0.23,,,0.189,0.278,0.392564706,4171,10625,,,0.150201381,,,0.120591479,0.186729258,0.25,4,16,0.11917111,0.394165016,259.7,28,10781,,,20.39515615,32,1569,13.95027171,28.79187513,,,,,,,,,,,,,16.69449082,10.1974287,25.78328706,,,,,,,0.113675214,798,7020,0.096994363,0.130356065,0.000371023,4,10781,,,2695.25,0.000456913,5,10943,,,2188.6,0.000822444,9,10943,,,1215.888889,2334,,,,,,,3133,,2137,0.51,,,,,,,0.64,,0.49,0.49,,,,,,,0.39,,0.5,0.893939394,7493,8382,0.861568263,0.926310525,0.555145119,1052,1895,0.442286454,0.668003784,0.027469426,146,5315,,,0.2,345,,0.121361702,0.278638298,,,,,,,,,,,,,0.109074244,0.043361584,0.174786904,4.337802121,136220,31403,3.308405825,5.367198417,0.315044248,534,1695,0.170831721,0.459256775,15.76848159,17,10781,,,123.6418134,66,53380,95.62456954,157.3027022,,,,,,,116.1305307,55.68910343,213.5681807,,,,127.6124434,95.59047706,166.920218,,,,7.1,,,,,1,,,,,0.139559287,665,4765,0.096017047,0.183101526,0.124177457,0.080949465,0.167405449,0.014690451,0,0.03472474,0.017838405,0,0.038394259,0.723461799,3210,4437,0.686533615,0.760389982,,,,,,,,,,,,,0.707259159,0.643671372,0.770846945,0.431,,4437,0.338946362,0.523053638,74.0062048,,,71.82004427,76.19236532,,,,,,,73.46486748,67.81142657,79.1183084,,,,73.3912298,70.83273197,75.94972762,,,,540.4978097,247,27226,457.589726,623.4058934,,,,,,,628.2690501,426.8783379,891.7777666,,,,548.5123859,451.7394131,645.2853586,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.11,,,0.093,0.127,0.168,,,0.145,0.193,0.097,,,0.082,0.113,177.5,17,9579,,,0.079,850,,,,0.002705239,29.64671476,10959,,,,,,,,,,,,,,,,,,,,,,,,,,0.35,,,0.334,0.366,0.123366928,661,5358,0.103111609,0.143622247,0.083952027,147,1751,0.058930751,0.108973304,0.000639678,7,10943,,,1563.285714,0.875,87.5,100,,,,,,,,2.787600015,,,,,,,2.571485272,,2.92413313,,,,,,,,,,,0.007592467,,,,,-4504.705,,,,,0.79174388,44861,56661,0.582590414,1.000897347,68881,,,60552.48936,77209.51064,,,,,,,48585,27461.08511,69708.91489,111950,2916.808511,220983.1915,72896,63191.31915,82600.68085,,,,,,0.485024958,583,1202,,,27.97962436,,,,,0.235478579,,68881,,,10.41666667,4,384,,,,,,,,,,,,,,,,,,,,,,,,,,30.66510681,17,53380,16.32787788,52.43826656,31.84713376,,,,,,,,,,,,,33.26656237,15.95260972,61.17839263,,,,22.48032971,12,53380,11.6159144,39.26861193,,,,,,,,,,,,,24.07781951,11.54625035,44.27996736,,,,22.73821625,17,74764,13.2458489,36.40608691,,,,,,,,,,,,,24.06532016,13.15673447,40.37751804,,,,20,,800,,,8,8,0.763646595,6785,8885,,,0.461,,,,,1.5258622,,,,,0.843445057,3976,4714,0.832234493,0.854655622,0.098216205,457,4653,0.060753851,0.135678559,0.772380144,3641,4714,0.733931561,0.810828727,10943,,,,,0.160376496,1755,10943,,,0.330896464,3621,10943,,,0.152243443,1666,10943,,,0.005848488,64,10943,,,0.005757105,63,10943,,,0.000639678,7,10943,,,0.032532212,356,10943,,,0.777117792,8504,10943,,,0.0055014,57,10361,0,0.015413852,0.503335466,5508,10943,,,1,10625,10625,, -51,121,51121,VA,Montgomery County,2024,1,5651.356266,899,279120,5096.170166,6206.542366,0,,,,2,,,,2,9568.969534,5671.177795,15123.09729,1,,,,2,5668.416925,5096.260748,6240.573102,,,,,2,,0.152,,,0.128,0.179,3.713103829,,,2.970771029,4.501383306,5.597886279,,,4.678022842,6.524091485,0.069762997,365,5232,0.062860097,0.076665897,0,,,,0.065340909,0.039524018,0.0911578,0.103305785,0.064958653,0.141652918,0.05859375,0.02982306,0.08736444,0.068265683,0.060758816,0.075772549,,,,,,,0.158,,,0.123,0.195,0.317,,,0.262,0.377,8.2,0.044036232,0.106,,,0.22,,,0.18,0.261,0.760170877,75805,99721,,,0.199044858,,,0.163344851,0.236883609,0.25,12,48,0.175199998,0.329372152,365.6,360,98473,,,4.563362717,161,35281,3.858461722,5.268263711,,,,,,,8.064516129,4.167053165,14.08708673,,,,4.710298909,3.909766869,5.510830949,,,,,,,0.075180908,5683,75591,0.063266014,0.087095801,0.00072101,71,98473,,,1386.943662,0.000515594,51,98915,,,1939.509804,0.003295759,326,98915,,,303.4202454,2254,,,,,,,,,2346,0.47,,,,,,0.29,0.47,,0.47,0.57,,,,,,0.53,0.44,0.27,0.57,0.949852455,53111,55915,0.94078039,0.95892452,0.758708098,17360,22881,0.708298867,0.80911733,0.027636112,1436,51961,,,0.121,1771,,0.079297872,0.162702128,,,,,,,0.341085271,0.036347837,0.645822706,0.397694525,0.24965859,0.545730459,0.145687646,0.106959645,0.184415647,6.389430973,132274,20702,5.412802636,7.36605931,0.136942032,2034,14853,0.104653518,0.169230546,11.069024,109,98473,,,55.78738313,275,492943,49.1937358,62.38103045,,,,,,,74.53416149,41.71620439,122.9327646,,,,60.64766858,53.1297057,68.16563147,,,,7.2,,,,,0,,,,,0.170245832,6025,35390,0.146191169,0.194300495,0.157064001,0.134047287,0.180080715,0.018790619,0.011175741,0.026405497,0.012574174,0.005946215,0.019202132,0.733491192,33145,45188,0.715946933,0.751035452,,,,0.472789116,0.351240457,0.594337774,0.647906977,0.550909129,0.744904824,0.564034506,0.412786633,0.715282378,0.782667193,0.77021954,0.795114845,0.173,,45188,0.146544643,0.199455357,79.39742663,,,78.81978397,79.97506929,,,,92.3179979,81.42470992,103.2112859,74.18153045,70.809194,77.5538669,85.60145637,79.92424991,91.27866282,79.25737746,78.66558765,79.84916727,,,,308.0074612,899,279120,287.1916422,328.8232802,,,,,,,427.6625745,309.5015257,576.0586813,,,,316.3406015,293.9594367,338.7217663,,,,30.83007314,29,94064,20.64738384,44.27712774,,,,,,,,,,,,,23.53248791,13.94684375,37.19147636,,,,4.611695259,25,5421,2.984446015,6.807771942,,,,,,,,,,,,,,,,,,,,,,0.109,,,0.093,0.126,0.167,,,0.145,0.191,0.097,,,0.084,0.113,80.9,71,87741,,,0.106,10520,,,,0.044036232,4156.668041,94392,,,14.21805761,42,295399,10.24712532,19.21868347,,,,,,,,,,,,,14.17526295,9.873590028,19.71435929,,,,0.318,,,0.301,0.334,0.085328575,5164,60519,0.071030702,0.099626447,0.036814852,583,15836,0.026091448,0.047538257,0.001283931,127,98915,,,778.8582677,0.93,727.26,782,,,,,,,,3.248286587,,,,,,,2.584646822,2.959912383,3.261119024,,,,,,,,,,,0.056532062,,,,,4137.456,,,,,0.870099271,50223,57721,0.772381095,0.967817447,69668,,,65172.51064,74163.48936,,,,54704,41490.38298,67917.61702,50466,32254.08511,68677.91489,43631,19481.89362,67780.10638,67279,63461.46809,71096.53192,,,,,,0.381404959,3692,9680,,,43.54835389,,,,,0.304443934,,69668,,,9.457441513,38,4018,,,1.741154211,12,689198,0.899679789,3.041446007,,,,,,,,,,,,,2.07776737,1.07361272,3.629441453,,,,14.42069831,68,492943,11.03069156,18.52399027,13.79469837,,,,,,,,,,,,,15.28908872,11.54921331,19.85415343,,,,7.708802032,38,492943,5.455207122,10.58093307,,,,,,,,,,,,,8.97585495,6.319830227,12.3720337,,,,6.81952066,47,689198,5.010727275,9.068516789,,,,,,,,,,,,,7.099038513,5.094392603,9.63064734,,,,25,,6800,,,125,45,0.576178597,45037,78165,,,0.674,,,,,60.18142799,,,,,0.549442627,19814,36062,0.533182279,0.565702974,0.176484674,5896,33408,0.154781374,0.198187975,0.903388609,32578,36062,0.885776247,0.92100097,98915,,,,,0.149896376,14827,98915,,,0.14292069,14137,98915,,,0.040843148,4040,98915,,,0.002891371,286,98915,,,0.065541121,6483,98915,,,0.000596472,59,98915,,,0.036809382,3641,98915,,,0.830197644,82119,98915,,,0.004591522,439,95611,0.001880655,0.007302389,0.479775565,47457,98915,,,0.260847765,26012,99721,, -51,125,51125,VA,Nelson County,2024,1,7841.724797,280,39703,6075.563737,9607.885857,0,,,,2,,,,2,9265.250664,4443.04783,17039.12585,1,,,,2,8302.100175,6255.258364,10348.94199,,,,,2,,0.158,,,0.13,0.188,3.7773431,,,3.022397277,4.666037349,5.290352189,,,4.317302227,6.354334465,0.073170732,72,984,0.05689925,0.089442213,0,,,,,,,,,,,,,0.070332481,0.05241015,0.088254812,,,,,,,0.17,,,0.129,0.213,0.372,,,0.298,0.446,8.7,0.021073214,0.091,,,0.226,,,0.181,0.274,0.55499154,8200,14775,,,0.149521606,,,0.119828407,0.182280447,0.258064516,8,31,0.163976301,0.358237809,216.4,32,14790,,,19.36758893,49,2530,14.32824891,25.60497968,,,,,,,,,,,,,21.253406,15.11324931,29.05410565,,,,,,,0.115834522,1218,10515,0.10034516,0.131323884,0.000811359,12,14790,,,1232.5,0.000477751,7,14652,,,2093.142857,0.001365001,20,14652,,,732.6,2209,,,,,,,4935,,1941,0.46,,,,,,,0.55,,0.46,0.53,,,,,,,0.49,,0.53,0.865958978,9626,11116,0.82388616,0.908031796,0.451647565,1261,2792,0.334137522,0.569157607,0.027717685,205,7396,,,0.176,433,,0.109276596,0.242723404,,,,,,,,,,0.425641026,0.199480993,0.651801058,0.100107643,0.029282107,0.170933178,5.194669757,147939,28479,3.256905271,7.132434242,0.09001957,230,2555,0.031246707,0.148792432,10.81812035,16,14790,,,121.2055916,90,74254,97.46360887,148.9822498,,,,,,,158.3820663,84.33177986,270.8381569,,,,124.0838476,97.59981752,155.5401774,,,,6.9,,,,,1,,,,,0.13125,840,6400,0.083550779,0.178949221,0.099920064,0.056033307,0.14380682,0.02265625,0.001132787,0.044179713,0.009375,0,0.022012738,0.579214781,3762,6495,0.503748957,0.654680604,,,,,,,,,,,,,0.555455365,0.480999161,0.62991157,0.522,,6495,0.418937892,0.625062108,77.5838185,,,76.15612891,79.01150809,,,,,,,,,,,,,77.39211882,75.78151287,79.00272476,,,,387.3709297,280,39703,334.108244,440.6336154,,,,,,,481.0191281,329.0167275,679.055486,,,,397.352532,336.6471712,458.0578928,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.11,,,0.092,0.129,0.167,,,0.142,0.193,0.097,,,0.082,0.113,207.3,27,13026,,,0.091,1350,,,,0.021073214,316.519672,15020,,,,,,,,,,,,,,,,,,,,,,,,,,0.344,,,0.327,0.362,0.125500501,1003,7992,0.106436671,0.14456433,0.087200599,233,2672,0.062179322,0.112221875,0.000819001,12,14652,,,1221,0.875,138.25,158,,,,,,,,3.087161334,,,,,,,,,3.168756885,,,,,,,,,,,0.010992361,,,,,-117.2813,,,,,0.866874428,49235,56796,0.723380258,1.010368598,66612,,,57201.61702,76022.38298,,,,,,,53867,46942.06383,60791.93617,65227,26134.23404,104319.766,73049,57114.02128,88983.97872,,,,,,0.575422627,885,1538,,,23.17962989,,,,,0.26222002,,66612,,,8.733624454,6,687,,,,,,,,,,,,,,,,,,,,,,,,,,19.21611455,17,74254,10.23177169,32.86014112,22.89438953,,,,,,,,,,,,,22.67569617,11.7168631,39.60987781,,,,14.81401675,11,74254,7.395103789,26.50636803,,,,,,,,,,,,,16.54451301,7.933737068,30.42594848,,,,27.90930439,29,103908,18.69129917,40.0824166,,,,,,,,,,,,,28.36812369,18.17599212,42.20951939,,,,,,1200,,,34,-888,0.779748954,9318,11950,,,0.488,,,,,7.437513472,,,,,0.790443575,4847,6132,0.759229406,0.821657743,0.134323019,751,5591,0.086672314,0.181973724,0.780821918,4788,6132,0.733618207,0.828025629,14652,,,,,0.17007917,2492,14652,,,0.296273546,4341,14652,,,0.103398853,1515,14652,,,0.006347256,93,14652,,,0.00989626,145,14652,,,0.000477751,7,14652,,,0.049140049,720,14652,,,0.812312312,11902,14652,,,0.007531619,106,14074,0,0.017032534,0.50975976,7469,14652,,,1,14775,14775,, -51,127,51127,VA,New Kent County,2024,1,7632.188513,348,66519,6256.495253,9007.881773,0,,,,2,,,,2,8475.518605,4633.64489,14220.48006,1,,,,2,7877.441571,6307.017987,9447.865156,,,,,2,,0.131,,,0.108,0.156,3.25408934,,,2.502335399,4.117582441,4.657766123,,,3.629246786,5.769474448,0.069343066,114,1644,0.057062977,0.081623154,0,,,,,,,0.14556962,0.090577401,0.200561839,,,,0.062316716,0.049488116,0.075145315,,,,,,,0.139,,,0.107,0.177,0.357,,,0.278,0.442,10,0,0.042,,,0.192,,,0.151,0.238,0.85940292,19719,22945,,,0.189152393,,,0.148228505,0.235406007,0.193548387,6,31,0.104538512,0.296792565,226,54,23897,,,6.35230882,26,4093,4.149539022,9.307604223,,,,,,,,,,,,,5.946481665,3.524261903,9.398004713,,,,,,,0.081625202,1565,19173,0.069710309,0.093540096,0.000292924,7,23897,,,3413.857143,0.000240135,6,24986,,,4164.333333,0.001240695,31,24986,,,806,2701,,,,,,,3643,,2350,0.49,,,,,,0.27,0.53,,0.49,0.49,,,,,,0.4,0.41,,0.49,0.941419237,16424,17446,0.923929188,0.958909285,0.636785657,3978,6247,0.555764927,0.717806387,0.023910092,317,13258,,,0.065,308,,0.041170213,0.088829787,,,,,,,,,,,,,0.043797766,0.003955754,0.083639778,3.285451596,182244,55470,2.422640436,4.148262755,0.089160444,394,4419,0.043889471,0.134431416,10.04310165,24,23897,,,79.33117715,91,114709,63.87251523,97.40110621,,,,,,,,,,,,,86.05563441,67.91376092,107.5547778,,,,7.7,,,,,0,,,,,0.11090573,900,8115,0.072461075,0.149350385,0.103772418,0.060716391,0.146828446,0.014787431,0,0.031333305,0.014787431,0,0.031872395,0.74178598,8963,12083,0.701408845,0.782163116,,,,,,,0.690335306,0.5794648,0.801205812,,,,0.578873522,0.507498877,0.650248167,0.589,,12083,0.512169721,0.665830279,77.21887113,,,76.0372925,78.40044975,,,,,,,76.65874816,73.12435402,80.1931423,,,,76.79333744,75.47632253,78.11035236,,,,358.3408902,348,66519,318.147289,398.5344915,,,,,,,330.2204845,231.2823676,457.1643429,,,,379.1730469,332.7568542,425.5892395,,,,59.8056317,12,20065,30.90244261,104.4684029,,,,,,,,,,,,,65.59527714,31.45548505,120.6320501,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.095,,,0.079,0.111,0.153,,,0.13,0.177,0.085,,,0.07,0.101,150,31,20669,,,0.042,950,,,,0,0,18429,,,28.31417408,20,70636,17.29503311,43.72894544,,,,,,,,,,,,,32.80780097,19.4439821,51.85046982,,,,0.331,,,0.314,0.348,0.088771593,1295,14588,0.073282231,0.104260955,0.060208333,289,4800,0.042335993,0.078080674,0.000360202,9,24986,,,2776.222222,0.93,211.11,227,,,,,,,,3.361127588,,,,,,,2.910412042,,3.398139088,,,,,,,,,,,0.00660734,,,,,2764.014,,,,,0.833395659,60172,72201,0.627864782,1.038926537,115627,,,100033.9787,131220.0213,96823,47663.34043,145982.6596,,,,120208,79992.85106,160423.1489,,,,111378,100232.8085,122523.1915,,,,,,0.24908313,815,3272,,,20.61514846,,,,,0.16185666,,115627,,,8.26446281,8,968,,,,,,,,,,,,,,,,,,,,,,,,,,13.18024503,16,114709,7.376883091,21.73880979,13.94833884,,,,,,,,,,,,,14.61293791,7.780773995,24.98856886,,,,,,,,,,,,,,,,,,,,,,,,,,,17.92022938,28,156248,11.90786228,25.89972092,,,,,,,,,,,,,16.3146775,9.96542886,25.1966962,,,,20.90909091,,2200,,,32,14,0.832144911,14471,17390,,,0.706,,,,,28.05375204,,,,,0.923458213,8011,8675,0.894166624,0.952749803,0.079407649,681,8576,0.045673821,0.113141477,0.888876081,7711,8675,0.850068306,0.927683856,24986,,,,,0.191707356,4790,24986,,,0.186424398,4658,24986,,,0.141359161,3532,24986,,,0.010645962,266,24986,,,0.013007284,325,24986,,,0.000720403,18,24986,,,0.042984071,1074,24986,,,0.76658929,19154,24986,,,0.005776723,129,22331,0,0.012740195,0.48158969,12033,24986,,,1,22945,22945,, -51,131,51131,VA,Northampton County,2024,1,12784.62494,275,31241,10127.48015,15441.76972,0,,,,2,,,,2,15513.58655,10821.93072,20205.24238,,,,,2,13248.12829,9200.411917,17295.84467,,,,,2,,0.186,,,0.158,0.215,3.968945009,,,3.154169383,4.934824529,5.055758443,,,4.052549002,6.186651725,0.098191215,76,774,0.077226974,0.119155455,0,,,,,,,0.144262295,0.104829923,0.183694667,,,,0.063768116,0.037984725,0.089551507,,,,,,,0.172,,,0.138,0.209,0.373,,,0.3,0.451,8.4,3.8784003E-6,0.115,,,0.259,,,0.212,0.309,0.465640775,5719,12282,,,0.132332132,,,0.104090535,0.163453014,0.368421053,7,19,0.246027076,0.486088994,579.2,70,12085,,,26.43171806,54,2043,19.8563201,34.48765854,,,,,,,49.67320261,35.15171457,68.18035153,,,,,,,,,,,,,0.119101661,997,8371,0.102420809,0.135782512,0.001075714,13,12085,,,929.6153846,0.001428571,17,11900,,,700,0.001176471,14,11900,,,850,1620,,,,,,,1375,,1166,0.52,,,,,,,0.56,,0.51,0.5,,,,,,,0.43,0.64,0.52,0.868848858,7910,9104,0.845786892,0.891910824,0.565404475,1314,2324,0.474747889,0.656061061,0.035043353,194,5536,,,0.304,650,,0.205106383,0.402893617,,,,,,,0.324848485,0.135561139,0.51413583,0.60496614,0.438759552,0.771172728,0.083232811,0.02278949,0.143676132,5.67907346,121606,21413,4.16229439,7.195852531,0.311800172,724,2322,0.209814729,0.413785615,11.58460902,14,12085,,,104.9975444,62,59049,80.50101524,134.6021133,,,,,,,82.25375283,47.01512674,133.5749414,,,,132.6300854,95.98505047,178.6518547,,,,6.6,,,,,0,,,,,0.105825243,545,5150,0.076946675,0.13470381,0.091625616,0.062831707,0.120419525,0.018252427,0.005485638,0.031019217,0.000776699,0,0.005495232,0.698969072,3390,4850,0.635558897,0.762379248,,,,,,,0.73553719,0.690666218,0.780408162,,,,0.70015949,0.636294739,0.76402424,0.301,,4850,0.234639284,0.367360716,73.9078094,,,72.0671634,75.74845541,,,,,,,69.93521524,67.02966357,72.84076692,,,,74.77706175,72.05194447,77.50217903,,,,566.276386,275,31241,486.6296656,645.9231065,,,,,,,795.0131704,636.7617027,953.264638,,,,521.2017001,410.4085717,631.9948285,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.117,,,0.101,0.134,0.169,,,0.146,0.194,0.115,,,0.098,0.133,380.2,40,10522,,,0.115,1410,,,,3.8784003E-6,0.048049502,12389,,,31.01387166,11,35468,15.48201299,55.49238331,,,,,,,,,,,,,,,,,,,0.373,,,0.358,0.386,0.131115776,812,6193,0.110860457,0.151371095,0.085514834,196,2292,0.059302068,0.1117276,0.001344538,16,11900,,,743.75,0.875,93.625,107,,,,,,,,3.095246182,,,,,,,2.879954096,2.654141748,3.544732725,,,,,,,,,,,0.003239867,,,,,-14058.12,,,,,0.865509469,44926,51907,0.736285793,0.994733145,52783,,,45096.70213,60469.29787,,,,,,,43720,32472.34043,54967.65957,65593,27130.53192,104055.4681,72159,55988.10638,88329.89362,,,,,,0.880740741,1189,1350,,,15.16788844,,,,,0.342742929,,52783,,,11.70568562,7,598,,,,,,,,,,,,,,,,,,,,,,,,,,15.28694534,11,59049,6.599817964,30.12137651,18.62859659,,,,,,,,,,,,,26.75056826,10.75511585,55.11639454,,,,16.93508781,10,59049,8.121032865,31.14422944,,,,,,,,,,,,,,,,,,,25.19707714,21,83343,15.59738788,38.51640898,,,,,,,,,,,,,28.52879214,15.19038029,48.7851034,,,,29,,1000,,,24,5,0.72936078,6732,9230,,,0.439,,,,,23.00398186,,,,,0.643151198,3437,5344,0.603251587,0.683050808,0.096845936,479,4946,0.065995773,0.127696099,0.815119761,4356,5344,0.772152822,0.858086699,11900,,,,,0.18184874,2164,11900,,,0.29487395,3509,11900,,,0.301932773,3593,11900,,,0.004789916,57,11900,,,0.010588235,126,11900,,,0.002184874,26,11900,,,0.097058824,1155,11900,,,0.568403361,6764,11900,,,0.016486836,191,11585,0.0007797,0.032193973,0.523277311,6227,11900,,,1,12282,12282,, -51,133,51133,VA,Northumberland County,2024,1,9179.722221,247,30140,6865.917571,11493.52687,0,,,,2,,,,2,12723.01859,8454.353452,18388.30428,,,,,2,8867.643605,5829.027613,11906.2596,,,,,2,,0.165,,,0.138,0.193,3.685825703,,,2.848852871,4.538805228,5.012606502,,,3.961401436,6.066455413,0.112605042,67,595,0.087204968,0.138005116,0,,,,,,,0.183035714,0.132394802,0.233676626,,,,0.07165109,0.043436706,0.099865474,,,,,,,0.164,,,0.129,0.201,0.385,,,0.312,0.463,8.7,0.020974221,0.091,,,0.228,,,0.187,0.275,0.382718135,4531,11839,,,0.129137555,,,0.102072779,0.158912375,0.416666667,5,12,0.261828357,0.556653137,432.3,52,12029,,,26.44526445,43,1626,19.13856901,35.62159767,,,,,,,35.21126761,21.50795702,54.38094701,,,,21.73913044,13.08837662,33.94834505,,,,,,,0.107071779,807,7537,0.091582418,0.122561141,0.000831324,10,12029,,,1202.9,0.001300602,16,12302,,,768.875,0.000243863,3,12302,,,4100.666667,1895,,,,,,,1041,,1353,0.47,,,,,,,0.52,,0.47,0.4,,,,,,,0.24,,0.41,0.891993552,8300,9305,0.857133274,0.92685383,0.562356979,983,1748,0.385751174,0.738962785,0.039756447,222,5584,,,0.231,385,,0.139255319,0.322744681,,,,,,,0.389140272,0.204296257,0.573984286,0.640522876,0.280676162,1,0.290115533,0.147324952,0.432906113,5.560884314,142620,25647,3.590553932,7.531214696,0.390642616,693,1774,0.232988563,0.548296668,19.12045889,23,12029,,,110.5336963,67,60615,85.66209639,140.373887,,,,,,,86.75920982,46.19562527,148.3608911,,,,129.0230091,96.92605541,168.3470394,,,,6.9,,,,,0,,,,,0.133685136,760,5685,0.098789703,0.16858057,0.124329159,0.086333148,0.162325171,0.006156552,0,0.016548917,0.009674582,0.000149432,0.019199733,0.723247233,3136,4336,0.642059419,0.804435046,,,,,,,,,,,,,0.636171338,0.5016495,0.770693176,0.495,,4336,0.369961721,0.620038279,76.98323222,,,75.22614302,78.74032143,,,,,,,72.16931098,68.89118582,75.44743614,,,,77.6080112,75.34872136,79.86730103,,,,432.0985749,247,30140,361.7739431,502.4232067,,,,,,,665.0131031,513.2430733,847.6137904,,,,400.5440241,310.6010562,490.4869919,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.11,,,0.094,0.129,0.165,,,0.142,0.189,0.103,,,0.088,0.12,194.4,21,10802,,,0.091,1090,,,,0.020974221,258.6121426,12330,,,35.91854779,13,36193,19.12511395,61.42181062,,,,,,,,,,,,,,,,,,,0.347,,,0.332,0.362,0.115733607,676,5841,0.096669778,0.134797437,0.079799107,143,1792,0.05596932,0.103628894,0.000487726,6,12302,,,2050.333333,0.925,104.525,113,,,,,,,,3.447459987,,,,,,,3.150412782,,3.566709224,,,,,,,,,,,0.004881844,,,,,-5457.68,,,,,0.863003045,52153,60432,0.686911297,1.039094793,67077,,,57713.08511,76440.91489,,,,,,,39606,22001.74468,57210.25532,,,,74047,63317.6383,84776.3617,,,,,,0.853513971,1008,1181,,,18.26292147,,,,,0.241811649,,67077,,,13.24503311,4,302,,,,,,,,,,,,,,,,,,,,,,,,,,17.21878258,11,60615,7.433848163,33.92786598,18.14732327,,,,,,,,,,,,,26.9244391,10.82502094,55.47463493,,,,16.49756661,10,60615,7.911224443,30.33961238,,,,,,,,,,,,,23.89314983,11.45769406,43.94035324,,,,27.03687595,23,85069,17.1390601,40.5685889,,,,,,,,,,,,,23.7682931,12.99434701,39.87915711,,,,,,800,,,13,-888,0.757267442,7815,10320,,,0.484,,,,,2.770206053,,,,,0.888480866,4597,5174,0.848944556,0.928017176,0.138389207,677,4892,0.095700848,0.181077565,0.797062234,4124,5174,0.764464558,0.829659911,12302,,,,,0.137457324,1691,12302,,,0.371646887,4572,12302,,,0.231507072,2848,12302,,,0.002845066,35,12302,,,0.006990733,86,12302,,,0.001463177,18,12302,,,0.0425947,524,12302,,,0.697935295,8586,12302,,,0.001031726,12,11631,0,0.009504019,0.504145667,6202,12302,,,1,11839,11839,, -51,135,51135,VA,Nottoway County,2024,1,10188.55446,313,42227,8282.523071,12094.58586,0,,,,2,,,,2,12359.8526,8834.148976,15885.55622,,,,,2,10202.67315,7507.707519,12897.63879,,,,,2,,0.217,,,0.189,0.248,4.330967431,,,3.490717355,5.248391918,5.556938052,,,4.49427013,6.709366248,0.102888087,114,1108,0.08499884,0.120777333,0,,,,,,,0.145502646,0.109955807,0.181049484,,,,0.081861958,0.060333789,0.103390128,,,,,,,0.214,,,0.178,0.255,0.396,,,0.318,0.479,6.6,0.217688329,0.094,,,0.289,,,0.242,0.341,0.477048971,7462,15642,,,0.152700396,,,0.121708501,0.189281802,0.347826087,8,23,0.236887913,0.456754526,711.8,111,15594,,,23.77572747,67,2818,18.42586222,30.19433344,,,,,,,29.49852507,19.902531,42.11097876,,,,22.78645833,15.87160313,31.69044751,,,,,,,0.097973937,1030,10513,0.083676065,0.112271809,0.000384763,6,15594,,,2599,0.0004499,7,15559,,,2222.714286,0.001156887,18,15559,,,864.3888889,3180,,,,,,,4481,,2732,0.43,,,,,,,0.44,,0.42,0.49,,,,,,,0.43,,0.51,0.837507799,9396,11219,0.800771935,0.874243663,0.392309507,1663,4239,0.31644464,0.468174374,0.030641822,222,7245,,,0.242,731,,0.155021277,0.328978723,,,,,,,0.403996525,0.295386213,0.512606836,0.113122172,0,0.448857511,0.03499676,0.002585049,0.06740847,4.672367762,112006,23972,3.884893391,5.459842134,0.305355977,935,3062,0.208320707,0.402391246,14.74926254,23,15594,,,96.30400833,74,76840,75.61936003,120.9008635,,,,,,,87.6985867,57.28762848,128.4987489,,,,110.5423786,80.9309144,147.448042,,,,7.7,,,,,1,,,,,0.10502693,585,5570,0.071679641,0.138374219,0.087706422,0.051606532,0.123806312,0.017773788,0.002335256,0.033212321,0.000718133,0,0.005409332,0.792731013,4624,5833,0.746913365,0.838548661,,,,,,,0.815734119,0.72066684,0.910801398,,,,0.803862262,0.74830921,0.859415313,0.405,,5833,0.320824839,0.489175161,73.69784681,,,72.30420602,75.09148761,,,,,,,72.38739029,69.84021618,74.9345644,,,,73.55012607,71.65556667,75.44468547,,,,517.9523528,313,42227,457.8976533,578.0070523,,,,,,,600.5577651,492.7902594,708.3252708,,,,505.6376867,426.0722513,585.2031221,,,,108.5271318,14,12900,59.33279284,182.0900862,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.131,,,0.114,0.15,0.179,,,0.157,0.204,0.132,,,0.114,0.152,606.8,82,13513,,,0.094,1470,,,,0.217688329,3451.013084,15853,,,23.92032358,11,45986,11.94093935,42.80006635,,,,,,,,,,,,,,,,,,,0.409,,,0.395,0.422,0.11451676,878,7667,0.09545293,0.13358059,0.054539408,164,3007,0.036667068,0.072411749,0.000706986,11,15559,,,1414.454546,0.825,127.875,155,,,,,,,,3.146412236,,,,,,,2.914672764,,3.28238086,,,,,,,,,,,0.010630799,,,,,-6769.832,,,,,0.992988845,47446,47781,0.782737706,1.203239984,50756,,,43300.85106,58211.14894,,,,,,,61949,44654.53192,79243.46809,,,,64073,52791.97872,75354.02128,,,,,,0.973121229,1774,1823,,,25.42216269,,,,,0.245823154,,50756,,,6.666666667,5,750,,,,,,,,,,,,,,,,,,,,,,,,,,13.07912926,10,76840,5.980610742,24.82826141,13.01405518,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,32.37503238,35,108108,22.55039627,45.02583284,,,,,,,35.79268875,20.03289618,59.03459691,,,,34.07909759,20.81639816,52.63240224,,,,29.23076923,,1300,,,29,9,0.587142265,7078,12055,,,0.584,,,,,18.80420406,,,,,0.713019391,3861,5415,0.661932796,0.764105985,0.128809661,672,5217,0.077483969,0.180135353,0.708402585,3836,5415,0.652189097,0.764616074,15559,,,,,0.196413651,3056,15559,,,0.184266341,2867,15559,,,0.378687576,5892,15559,,,0.007262678,113,15559,,,0.005655891,88,15559,,,0.001092615,17,15559,,,0.0507102,789,15559,,,0.544700816,8475,15559,,,0.003769521,56,14856,0,0.011333246,0.468603381,7291,15559,,,1,15642,15642,, -51,137,51137,VA,Orange County,2024,1,8866.85102,560,102134,7690.335545,10043.36649,0,,,,2,,,,2,13603.17298,9626.302697,17580.04327,,,,,2,8498.437856,7168.505943,9828.369769,,,,,2,,0.152,,,0.127,0.18,3.636084006,,,2.86850582,4.453892282,5.341065391,,,4.315044648,6.404936162,0.073211876,217,2964,0.063834141,0.082589611,0,,,,,,,0.138211382,0.102997398,0.173425367,0.051587302,0.024277038,0.078897565,0.065178571,0.054956267,0.075400876,,,,,,,0.164,,,0.128,0.202,0.368,,,0.293,0.444,8,0.099512857,0.088,,,0.216,,,0.171,0.262,0.578639598,20978,36254,,,0.173238628,,,0.138299755,0.211865692,0.333333333,13,39,0.249594321,0.416968855,263.5,98,37188,,,19.23637424,132,6862,15.95472376,22.51802471,,,,,,,20.95238095,13.13074559,31.72215656,40.56795132,24.77995859,62.65391055,17.73927393,14.18912938,21.90785899,,,,,,,0.087319433,2563,29352,0.07540454,0.099234327,0.000457137,17,37188,,,2187.529412,0.000315864,12,37991,,,3165.916667,0.000684373,26,37991,,,1461.192308,2377,,,,,,,4274,,2254,0.5,,,,,,0.27,0.52,,0.49,0.52,,,,,,0.43,0.46,0.35,0.53,0.897829156,23533,26211,0.879009058,0.916649254,0.529289187,4572,8638,0.456724902,0.601853473,0.029781188,524,17595,,,0.132,1052,,0.086723404,0.177276596,,,,,,,0.675386445,0.533042507,0.817730383,0.140939597,0,0.293210716,0.156703753,0.09771565,0.215691855,3.879074162,156028,40223,3.434031223,4.324117101,0.196453993,1518,7727,0.135570017,0.257337968,7.52931053,28,37188,,,109.9371246,203,184651,94.8136206,125.0606287,,,,,,,96.64677704,61.26576619,145.0176187,,,,118.9693059,101.0852286,136.8533832,,,,7.7,,,,,1,,,,,0.114183124,1590,13925,0.087241742,0.141124506,0.098591549,0.071088906,0.126094193,0.024775584,0.009036516,0.040514651,0.001436266,0,0.004703233,0.754758334,13086,17338,0.715599548,0.793917121,,,,,,,0.68137573,0.533419451,0.829332009,,,,0.684749106,0.620900248,0.748597964,0.567,,17338,0.499789016,0.634210985,76.54612852,,,75.61037233,77.48188471,,,,,,,71.72502067,68.97887314,74.4711682,95.24630485,71.84002364,118.6525861,76.84089551,75.79377952,77.8880115,,,,394.8228287,560,102134,359.8136839,429.8319734,,,,,,,586.3669053,467.4781442,705.2556665,,,,382.085138,343.1290888,421.0411871,,,,58.82872018,20,33997,35.93411061,90.85618702,,,,,,,,,,,,,62.68282491,35.08310127,103.3857872,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.106,,,0.09,0.124,0.165,,,0.141,0.19,0.095,,,0.081,0.112,183.4,58,31622,,,0.088,3180,,,,0.099512857,3331.789948,33481,,,35.73534404,40,111934,25.5298537,48.66139597,,,,,,,,,,,,,37.10273981,25.37824656,52.37799817,,,,0.36,,,0.344,0.376,0.101044169,2187,21644,0.085554808,0.116533531,0.050253118,407,8099,0.034763756,0.065742479,0.000526441,20,37991,,,1899.55,0.86,320.78,373,,,0.141272621,242,1713,0.073466561,0.209078681,3.10435965,,,,,,,3.031934152,2.79947343,3.162321236,,,,,,,,,,,0.009888331,,,,,897.751,,,,,0.762928835,50837,66634,0.674049932,0.851807738,81390,,,72217.91489,90562.08511,,,,,,,50057,15775.46809,84338.53192,115507,81837.89362,149176.1064,92899,85147.17021,100650.8298,,,,,,0.453224522,2277,5024,,,30.1841488,,,,,0.245275832,,81390,,,7.364544976,14,1901,,,,,,,,,,,,,,,,,,,,,,,,,,15.02946632,29,184651,9.904513007,21.86708442,15.70530352,,,,,,,,,,,,,16.88938067,10.82134488,25.13005967,,,,11.372806,21,184651,7.03994616,17.38454205,,,,,,,,,,,,,13.29656949,8.005403421,20.76424033,,,,21.52060696,55,255569,16.21226634,28.01202805,,,,,,,,,,,,,22.15129333,16.09516365,29.73707738,,,,16,,3500,,,47,9,0.739497595,20754,28065,,,0.695,,,,,2.870303658,,,,,0.783283248,11208,14309,0.747896611,0.818669885,0.112237456,1539,13712,0.084138131,0.140336782,0.883569781,12643,14309,0.856623472,0.910516091,37991,,,,,0.212734595,8082,37991,,,0.205864547,7821,37991,,,0.124529494,4731,37991,,,0.00636993,242,37991,,,0.01339791,509,37991,,,0.001131847,43,37991,,,0.067963465,2582,37991,,,0.760127399,28878,37991,,,0.006655093,230,34560,0.00171876,0.011591425,0.510752547,19404,37991,,,0.566834005,20550,36254,, -51,139,51139,VA,Page County,2024,1,10503.85941,507,64948,8949.176178,12058.54265,0,,,,2,,,,2,,,,2,,,,2,10301.00907,8713.946069,11888.07207,,,,,2,,0.174,,,0.146,0.206,4.112375759,,,3.23287176,5.0482388,5.471724785,,,4.34789801,6.616261921,0.085956417,142,1652,0.072439624,0.099473209,0,,,,,,,,,,,,,0.085714286,0.071732479,0.099696092,,,,,,,0.201,,,0.162,0.246,0.383,,,0.301,0.465,,,0.119,,,0.261,,,0.213,0.311,0.594542157,14096,23709,,,0.163193204,,,0.128598875,0.20059819,0.272727273,6,22,0.159704728,0.392079091,268.8,64,23807,,,23.23462415,102,4390,18.72550577,27.74374252,,,,,,,,,,,,,23.72627373,19.19597229,29.00413927,,,,,,,0.099924463,1852,18534,0.085626591,0.114222336,0.000252027,6,23807,,,3967.833333,0.000168421,4,23750,,,5937.5,0.000505263,12,23750,,,1979.166667,3043,,,,,,,,,3033,0.38,,,,,,,0.57,,0.38,0.31,,,,,,,0.17,,0.32,0.824176457,14311,17364,0.794717551,0.853635363,0.411917579,2219,5387,0.335374519,0.48846064,0.033892755,414,12215,,,0.177,816,,0.109085106,0.244914894,,,,,,,,,,0.01980198,0,0.234646844,0.095565568,0.054640653,0.136490483,4.043518554,104715,25897,3.205337425,4.881699684,0.198143068,939,4739,0.136062174,0.260223963,10.50111312,25,23807,,,93.87625099,112,119306,76.490126,111.262376,,,,,,,,,,,,,92.13292187,74.33979385,109.9260499,,,,6.9,,,,,0,,,,,0.103558152,975,9415,0.072839686,0.134276618,0.087922705,0.061410184,0.114435227,0.007222517,0.00154204,0.012902995,0.018056293,0.002171494,0.033941092,0.776706301,8296,10681,0.744427169,0.808985432,,,,,,,,,,,,,0.768939394,0.714034881,0.823843907,0.504,,10681,0.436778455,0.571221545,74.56465989,,,73.40313211,75.72618767,,,,,,,,,,,,,74.61576071,73.43385437,75.79766704,,,,519.0395877,507,64948,470.0333431,568.0458323,,,,,,,,,,,,,515.7503015,465.4770391,566.0235638,,,,62.43996158,13,20820,33.24664981,106.7742359,,,,,,,,,,,,,64.13339747,33.13866233,112.0281388,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.122,,,0.104,0.142,0.183,,,0.156,0.211,0.099,,,0.084,0.115,68.4,14,20479,,,0.119,2830,,,,,,24042,,,34.89573155,25,71642,22.58267755,51.51298358,,,,,,,,,,,,,34.34732614,21.77325842,51.53785358,,,,0.352,,,0.334,0.37,0.116766684,1615,13831,0.097702854,0.135830513,0.05165456,256,4956,0.036165198,0.067143922,0.000884211,21,23750,,,1130.952381,0.95,261.25,275,,,,,,,,3.051173889,,,,,,,,,3.073970088,,,,,,,,,,,0.025401262,,,,,1591.974,,,,,0.773893158,37564,48539,0.643531097,0.904255219,60061,,,52449.76596,67672.23404,,,,,,,47273,27993.51064,66552.48936,65707,30624.78723,100789.2128,56187,51082.65957,61291.34043,,,,,,0.590749601,1852,3135,,,47.14398905,,,,,0.290820999,,60061,,,5.809128631,7,1205,,,,,,,,,,,,,,,,,,,,,,,,,,19.23280264,25,119306,12.05309502,29.11869433,20.95452031,,,,,,,,,,,,,18.47123173,11.28270821,28.5273193,,,,15.08725462,18,119306,8.94166327,23.84436681,,,,,,,,,,,,,14.31191019,8.180493272,23.24164551,,,,18.59784265,31,166686,12.63633177,26.39815312,,,,,,,,,,,,,18.52798364,12.40848143,26.60927513,,,,35,,2200,,,71,6,0.660892527,12514,18935,,,0.629,,,,,3.612322606,,,,,0.716500909,6700,9351,0.674877887,0.758123931,0.115253078,1011,8772,0.079001798,0.151504358,0.768794781,7189,9351,0.727849222,0.80974034,23750,,,,,0.196631579,4670,23750,,,0.222947368,5295,23750,,,0.022484211,534,23750,,,0.002947368,70,23750,,,0.005094737,121,23750,,,0.000463158,11,23750,,,0.026273684,624,23750,,,0.928884211,22061,23750,,,0.005499623,124,22547,0,0.012774337,0.501684211,11915,23750,,,0.799991564,18967,23709,, -51,141,51141,VA,Patrick County,2024,1,12323.69774,387,46332,10168.23519,14479.1603,0,,,,2,,,,2,8900.011662,4267.901532,16367.43833,1,,,,2,12471.09879,10194.0536,14748.14398,,,,,2,,0.171,,,0.143,0.202,3.969570084,,,3.087262733,4.95363098,5.450187921,,,4.321080369,6.705649586,0.087048832,82,942,0.069046206,0.105051459,0,,,,,,,,,,,,,0.086956522,0.068275649,0.105637395,,,,,,,0.189,,,0.149,0.232,0.329,,,0.245,0.418,8.3,0.031404479,0.104,,,0.235,,,0.189,0.285,0.332235348,5850,17608,,,0.152207616,,,0.116384254,0.19238389,0.4375,7,16,0.30773596,0.555081272,147.7,26,17602,,,21.89531304,64,2923,16.86205903,27.95982594,,,,,,,,,,,,,24.52754323,18.76162709,31.50665537,,,,,,,0.090104331,1140,12652,0.075806459,0.104402204,0.000227247,4,17602,,,4400.5,0.000113359,2,17643,,,8821.5,0.000510117,9,17643,,,1960.333333,2446,,,,,,,,,2423,0.45,,,,,,,0.52,,0.45,0.32,,,,,,,0.26,,0.33,0.8364548,11344,13562,0.807200339,0.865709261,0.579844961,1870,3225,0.470998506,0.688691417,0.035863801,257,7166,,,0.217,655,,0.131212766,0.302787234,,,,,,,,,,,,,0.099496709,0.039869245,0.159124173,5.677539802,109480,19283,3.470956732,7.884122872,0.116173121,357,3073,0.036939758,0.195406484,9.08987615,16,17602,,,143.1151395,126,88041,118.125708,168.1045711,,,,,,,,,,,,,153.3664571,126.0393429,180.6935713,,,,7.3,,,,,0,,,,,0.103448276,810,7830,0.068105987,0.138790565,0.075178224,0.044014485,0.106341964,0.01596424,0.005338567,0.026589914,0.015325671,0,0.032771548,0.781553398,5635,7210,0.755498103,0.807608693,,,,,,,,,,,,,0.745085045,0.687541962,0.802628129,0.458,,7210,0.376515716,0.539484284,73.46676484,,,71.96752006,74.96600961,,,,,,,,,,,,,73.32611159,71.75845594,74.89376725,,,,535.3834759,387,46332,474.0756711,596.6912807,,,,,,,572.0330773,358.4900841,866.0649535,,,,539.7638834,474.3996145,605.1281523,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.119,,,0.1,0.139,0.179,,,0.152,0.207,0.098,,,0.081,0.116,77.1,12,15568,,,0.104,1840,,,,0.031404479,580.6688096,18490,,,49.33305504,26,52703,32.22598944,72.28435589,,,,,,,,,,,,,52.91117272,34.24132119,78.10732862,,,,0.353,,,0.337,0.369,0.103348191,997,9647,0.085475851,0.121220532,0.048895899,155,3170,0.033406537,0.064385261,0.000736836,13,17643,,,1357.153846,0.975,181.35,186,,,,,,,,3.286976768,,,,,,,,,3.30674702,,,,,,,,,,,0.055232935,,,,,-1689.133,,,,,0.80030869,40963,51184,0.667926604,0.932690777,49319,,,42347.59575,56290.40426,,,,48750,47707.44681,49792.55319,42031,13162.40426,70899.59575,83718,39133.65957,128302.3404,48139,42434.14894,53843.85106,,,,,,0.619385343,1572,2538,,,24.3962451,,,,,0.290922363,,49319,,,4.662004662,4,858,,,,,,,,,,,,,,,,,,,,,,,,,,30.75382072,25,88041,19.27325571,46.56165415,28.39586102,,,,,,,,,,,,,34.63395481,21.70491509,52.43622381,,,,23.85252326,21,88041,14.76508784,36.46111554,,,,,,,,,,,,,26.617319,16.47653998,40.68739953,,,,22.57900636,28,124009,15.00358575,32.63295079,,,,,,,,,,,,,23.38529065,15.27604826,34.26486907,,,,,,1500,,,9,-888,0.658949551,9535,14470,,,0.552,,,,,3.267545316,,,,,0.789304538,6140,7779,0.752129678,0.826479397,0.085468902,617,7219,0.052261041,0.118676763,0.751510477,5846,7779,0.713316062,0.789704891,17643,,,,,0.174120048,3072,17643,,,0.2786941,4917,17643,,,0.052598764,928,17643,,,0.006121408,108,17643,,,0.00379754,67,17643,,,0.000566797,10,17643,,,0.033384345,589,17643,,,0.89514255,15793,17643,,,0.004620579,78,16881,0,0.011865067,0.495040526,8734,17643,,,1,17608,17608,, -51,143,51143,VA,Pittsylvania County,2024,1,11015.14119,1184,162192,9911.108564,12119.17382,0,,,,2,,,,2,11708.52673,9195.241836,14221.81162,,,,,2,11089.88739,9803.306373,12376.4684,,,,,2,,0.199,,,0.17,0.228,4.269525702,,,3.496179572,5.141044756,5.04706736,,,4.140296296,6.010632789,0.086227193,293,3398,0.07678907,0.095665315,0,,,,,,,0.147710487,0.120982825,0.17443815,0.071942446,0.028985962,0.11489893,0.070119522,0.060129826,0.080109217,,,,,,,0.201,,,0.162,0.239,0.418,,,0.357,0.483,8,0.059244586,0.106,,,0.278,,,0.234,0.323,0.362704749,21944,60501,,,0.143956693,,,0.116630778,0.175719848,0.414634146,34,82,0.36104047,0.466790153,350.2,210,59972,,,19.18976546,225,11725,16.68230277,21.69722815,,,,,,,20.85036795,15.52446845,27.41438323,17.48251748,8.383546672,32.1509721,18.3641416,15.44466559,21.2836176,,,,29.94011976,14.35745119,55.06094623,0.096820156,4281,44216,0.083713773,0.109926539,8.33722E-05,5,59972,,,11994.4,8.34001E-05,5,59952,,,11990.4,0.00023352,14,59952,,,4282.285714,2415,,,,,,,3102,,2325,0.45,,,,,,,0.44,,0.46,0.49,,,,,,,0.42,,0.51,0.842097068,37859,44958,0.827649046,0.856545091,0.552929982,6973,12611,0.498875597,0.606984367,0.031382556,947,30176,,,0.189,1980,,0.124659575,0.253340426,,,,,,,0.388068517,0.261685397,0.514451638,0.25,0.060914679,0.439085321,0.172153546,0.132938461,0.211368631,4.636603791,100044,21577,4.143146418,5.130061164,0.301621818,3329,11037,0.244512928,0.358730707,13.67304742,82,59972,,,113.4323027,343,302383,101.4277562,125.4368493,,,,,,,93.45939968,71.31936783,120.3007732,,,,123.7806268,109.2036029,138.3576506,,,,8.1,,,,,0,,,,,0.118298035,3100,26205,0.098215141,0.138380929,0.100058061,0.081012591,0.11910353,0.016599886,0.008490397,0.024709375,0.005342492,0.000138726,0.010546258,0.85869264,21688,25257,0.836012402,0.881372878,,,,,,,0.807336622,0.751954289,0.862718954,0.744318182,0.590115037,0.898521327,0.795277187,0.74604208,0.844512293,0.335,,25257,0.300735616,0.369264384,75.26149231,,,74.43513127,76.08785336,,,,,,,74.5697943,72.76143303,76.37815558,90.10464353,76.82525882,103.3840282,75.14359609,74.18452558,76.1026666,,,,480.509947,1184,162192,449.8325725,511.1873215,,,,,,,531.4185967,461.5997247,601.2374688,,,,478.7083702,443.049793,514.3669474,,,,95.29795819,47,49319,70.02135519,126.7260819,,,,,,,153.0612245,85.66720544,252.451213,,,,83.16127552,55.69441138,119.4334636,,,,7.278020379,25,3435,4.709951047,10.7437938,,,,,,,,,,,,,,,,,,,,,,0.129,,,0.111,0.148,0.182,,,0.158,0.208,0.123,,,0.107,0.141,176.7,93,52639,,,0.106,6440,,,,0.059244586,3762.386678,63506,,,27.75064382,50,180176,20.59706273,36.58576429,,,,,,,,,,,,,34.49749893,25.25650496,46.01482921,,,,0.368,,,0.353,0.381,0.111630121,3752,33611,0.09494927,0.128310972,0.051261549,577,11256,0.036963677,0.065559422,0.0002502,15,59952,,,3996.8,0.9,630,700,,,0.098905395,253,2558,0.041007001,0.156803789,3.440708537,,,,,,,3.168367079,2.822266384,3.556535628,,,,,,,,,,,0.026367113,,,,,-720.3828,,,,,0.788265256,39928,50653,0.709756735,0.866773777,49659,,,45472.10638,53845.89362,,,,,,,38443,31989.89362,44896.10638,53623,41714.06383,65531.93617,55989,53297.42553,58680.57447,,,,,,0.675006318,5342,7914,,,23.21244463,,,,,0.251253549,,49659,,,5.003849115,13,2598,,,4.926524407,21,426264,3.049596256,7.530715879,,,,,,,,,,,,,3.484552346,1.739475976,6.234826679,,,,23.21182491,73,302383,17.83660359,29.69800731,24.14156881,,,,,,,,,,,,,28.9475089,21.92456055,37.50485538,,,,21.49591743,65,302383,16.59009525,27.39831135,,,,,,,15.57656661,7.469569146,28.64586059,,,,24.1305193,18.12758877,31.48509332,,,,24.63262204,105,426264,19.92098242,29.34426166,,,,,,,29.76288898,19.61393138,43.30344086,,,,23.12475648,18.12611765,29.07590945,,,,11.07142857,,5600,,,51,11,0.701301096,34227,48805,,,0.639,,,,,11.13024673,,,,,0.773920856,18951,24487,0.748584715,0.799256997,0.112236251,2649,23602,0.09195636,0.132516142,0.740597052,18135,24487,0.714274444,0.766919659,59952,,,,,0.177542034,10644,59952,,,0.24943288,14954,59952,,,0.210034694,12592,59952,,,0.003686282,221,59952,,,0.005571124,334,59952,,,0.00051708,31,59952,,,0.0312083,1871,59952,,,0.737523352,44216,59952,,,0.005512204,320,58053,0.001577886,0.009446523,0.5001668,29986,59952,,,0.890613378,53883,60501,, -51,145,51145,VA,Powhatan County,2024,1,7217.57446,414,84529,6007.83401,8427.314909,0,,,,2,,,,2,10186.99769,4095.701417,20989.10867,1,,,,2,7130.810684,5834.467141,8427.154228,,,,,2,,0.128,,,0.106,0.153,3.291767875,,,2.564511962,4.106086928,5.122874751,,,4.138730831,6.171152378,0.060773481,110,1810,0.049766733,0.071780228,0,,,,,,,0.208333333,0.114525224,0.302141443,,,,0.054844607,0.043828698,0.065860516,,,,,,,0.142,,,0.109,0.18,0.337,,,0.268,0.413,9.8,0.010930959,0.044,,,0.191,,,0.151,0.233,0.634358619,19242,30333,,,0.191238532,,,0.154245795,0.233688124,0.416666667,10,24,0.311849505,0.514990361,195.9,61,31136,,,4.963271789,25,5037,3.211967808,7.326768254,,,,,,,,,,,,,3.961780471,2.30788312,6.343194317,,,,,,,0.077403866,1870,24159,0.065488972,0.08931876,0.000545992,17,31136,,,1831.529412,0.000412843,13,31489,,,2422.230769,0.000539871,17,31489,,,1852.294118,2132,,,,,,,1773,,2069,0.46,,,,,,0.5,0.58,,0.45,0.51,,,,,,0.56,0.44,,0.52,0.915389972,21032,22976,0.894325218,0.936454726,0.658387568,4957,7529,0.576227906,0.74054723,0.025377602,373,14698,,,0.072,403,,0.043404255,0.100595745,,,,,,,,,,0.514705882,0.129528005,0.89988376,0.046208269,0.010633963,0.081782575,3.496849889,185382,53014,3.000101551,3.993598226,0.159746788,858,5371,0.090567034,0.228926543,7.065775951,22,31136,,,74.63389051,111,148726,60.74937714,88.51840388,,,,,,,,,,,,,78.98708835,63.58245062,94.39172608,,,,8,,,,,0,,,,,0.061116458,635,10390,0.041317026,0.080915891,0.057823129,0.035703856,0.079942403,0.004331088,0,0.011354946,0,0,0.003892251,0.778371955,11790,15147,0.739110627,0.817633283,,,,,,,,,,,,,0.641177958,0.605621695,0.67673422,0.614,,15147,0.547000571,0.680999429,78.6604097,,,77.60041333,79.72040607,,,,,,,74.74537262,69.45733849,80.03340674,,,,78.91994187,77.77290855,80.06697519,,,,331.4250927,414,84529,297.013985,365.8362005,,,,,,,472.5182474,334.3820347,648.5682122,,,,321.3839132,284.6243768,358.1434497,,,,66.22242457,16,24161,37.85183748,107.5410687,,,,,,,,,,,,,68.189567,37.27987081,114.4105067,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.095,,,0.079,0.11,0.155,,,0.133,0.179,0.082,,,0.069,0.096,227.8,62,27219,,,0.044,1330,,,,0.010930959,306.5696692,28046,,,35.18958388,32,90936,24.06964933,49.67719284,,,,,,,,,,,,,37.07254714,24.82806665,53.2423617,,,,0.334,,,0.315,0.35,0.083518028,1545,18499,0.069220156,0.0978159,0.058882907,350,5944,0.041010567,0.076755248,0.000190543,6,31489,,,5248.166667,0.91,319.41,351,,,,,,,,3.381037761,,,,,,,,,3.441498811,,,,,,,,,,,0.009698967,,,,,3431.412,,,,,0.807856154,60115,74413,0.732473333,0.883238975,105231,,,94013.12766,116448.8723,,,,,,,39871,17543.68085,62198.31915,,,,111534,103226.9362,119841.0638,,,,,,0.205355064,882,4295,,,40.06304137,,,,,0.189706455,,105231,,,7.73395205,10,1293,,,,,,,,,,,,,,,,,,,,,,,,,,12.17625079,20,148726,7.216417911,19.24372575,13.44754784,,,,,,,,,,,,,13.23682812,7.565990978,21.49577958,,,,12.10279306,18,148726,7.1728822,19.12763086,,,,,,,,,,,,,12.51280608,7.15214982,20.32001314,,,,14.13255361,29,205200,9.464792952,20.29670441,,,,,,,,,,,,,14.21439862,9.198809316,20.9832564,,,,11.53846154,,2600,,,24,6,0.834199958,19733,23655,,,0.793,,,,,10.09684789,,,,,0.911708947,10099,11077,0.884166439,0.939251454,0.056966116,617,10831,0.032972458,0.080959774,0.911077006,10092,11077,0.885101341,0.937052672,31489,,,,,0.179586522,5655,31489,,,0.201022579,6330,31489,,,0.08352123,2630,31489,,,0.004128426,130,31489,,,0.006859538,216,31489,,,0.000825685,26,31489,,,0.026644225,839,31489,,,0.862523421,27160,31489,,,0.001781432,52,29190,0,0.006188481,0.47915145,15088,31489,,,0.980911878,29754,30333,, -51,147,51147,VA,Prince Edward County,2024,1,10071.56187,356,62675,8434.724822,11708.39892,0,,,,2,,,,2,14046.06053,10781.50107,17310.62,,,,,2,8279.080837,6331.143468,10227.01821,,,,,2,,0.203,,,0.176,0.233,4.23095944,,,3.375103447,5.215187407,5.433129873,,,4.37274378,6.639661952,0.110340479,175,1586,0.094920499,0.12576046,0,,,,,,,0.168674699,0.138225317,0.19912408,,,,0.076839827,0.059666604,0.09401305,,,,,,,0.199,,,0.163,0.236,0.417,,,0.334,0.503,7.6,0.051274123,0.127,,,0.274,,,0.226,0.323,0.807679985,17647,21849,,,0.161264488,,,0.126208549,0.201819917,0.285714286,8,28,0.18563205,0.389524284,620.1,136,21932,,,8.090946334,79,9764,6.405678406,10.08373322,,,,,,,20.57200201,14.76282382,27.90824364,,,,5.022962113,3.498677153,6.985724364,,,,,,,0.091760171,1333,14527,0.076270809,0.107249532,0.000638337,14,21932,,,1566.571429,0.000410453,9,21927,,,2436.333333,0.003009988,66,21927,,,332.2272727,2966,,,,,,,2894,,2813,0.45,,,,,,,0.48,,0.44,0.47,,,,,,,0.37,,0.51,0.88420803,11187,12652,0.851308307,0.917107754,0.617614517,2791,4519,0.529557817,0.705671216,0.039486871,394,9978,,,0.246,831,,0.154255319,0.337744681,,,,,,,0.439963336,0.341414262,0.538512411,,,,0.074123097,0.01701297,0.131233224,5.11596337,111175,21731,3.447863824,6.784062916,0.284310715,926,3257,0.184813011,0.38380842,10.03100492,22,21932,,,88.18886527,100,113393,70.90384768,105.4738829,,,,,,,71.08680793,46.43626306,104.1586441,,,,102.3452928,79.93252282,129.0946609,,,,7.5,,,,,0,,,,,0.180527383,1335,7395,0.130909323,0.230145443,0.147540984,0.096982124,0.198099843,0.009465855,0,0.020278818,0.025693036,0.002898208,0.048487864,0.725992473,5980,8237,0.67970437,0.772280577,,,,,,,0.712391214,0.61726832,0.807514108,,,,0.801337589,0.73865522,0.864019959,0.302,,8237,0.242892039,0.361107961,75.00028667,,,73.72224333,76.27833001,,,,,,,71.2351515,68.97525819,73.4950448,,,,76.8169848,75.22402848,78.40994112,,,,497.9621368,356,62675,442.6156651,553.3086085,,,,,,,678.8063416,569.4598137,788.1528695,,,,416.0420565,350.3273144,481.7567986,,,,44.56129406,10,22441,21.36887258,81.94980635,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.127,,,0.11,0.144,0.182,,,0.159,0.208,0.129,,,0.111,0.15,221.6,43,19404,,,0.127,2770,,,,0.051274123,1198.173705,23368,,,20.66725716,14,67740,11.29898181,34.67614574,,,,,,,,,,,,,,,,,,,0.374,,,0.36,0.387,0.105234803,1172,11137,0.086170973,0.124298633,0.049153013,177,3601,0.033663651,0.064642375,0.001048935,23,21927,,,953.3478261,0.675,105.975,157,,,,,,,,2.855692849,,,,,,,2.640984633,,3.317160558,,,,,,,,,,,0.005787919,,,,,-10341.4,,,,,0.822624703,41559,50520,0.715570778,0.929678628,57400,,,51673.70213,63126.29787,,,,,,,37088,24933.61702,49242.38298,115945,46027.21277,185862.7872,62232,53361.3617,71102.6383,,,,,,0.886624869,1697,1914,,,18.14802483,,,,,0.239094077,,57400,,,9.44386149,9,953,,,,,,,,,,,,,,,,,,,,,,,,,,11.86381294,15,113393,6.316980735,20.28748145,13.22832979,,,,,,,,,,,,,20.40104232,10.54151626,35.6365153,,,,13.22832979,15,113393,7.403795766,21.81811829,,,,,,,,,,,,,17.29779597,8.938023595,30.21576845,,,,25.08041408,40,159487,17.91781552,34.1524055,,,,,,,33.14163174,19.3062218,53.06296289,,,,21.39756679,13.24543109,32.70845381,,,,,,1600,,,21,-888,0.510939168,9575,18740,,,0.556,,,,,36.8770194,,,,,0.609492988,4520,7416,0.57925576,0.639730216,0.128557129,899,6993,0.088343162,0.168771095,0.750943905,5569,7416,0.702277858,0.799609952,21927,,,,,0.157431477,3452,21927,,,0.169471428,3716,21927,,,0.312491449,6852,21927,,,0.003922105,86,21927,,,0.012678433,278,21927,,,0.001094541,24,21927,,,0.040634834,891,21927,,,0.6110275,13398,21927,,,0.013813471,290,20994,0.00372629,0.023900651,0.486523464,10668,21927,,,0.667353197,14581,21849,, -51,149,51149,VA,Prince George County,2024,1,6725.045905,462,112935,5788.616879,7661.47493,0,,,,2,,,,2,5581.672529,4114.450526,7048.894533,,,,,2,8035.274369,6620.991826,9449.556913,,,,,2,,0.172,,,0.148,0.2,3.852831493,,,3.069055297,4.678208309,5.304802785,,,4.381064326,6.291649047,0.092339545,223,2415,0.080792972,0.103886117,0,,,,,,,0.153400868,0.126530732,0.180271004,0.102362205,0.065083605,0.139640805,0.061894109,0.048997003,0.074791215,,,,,,,0.17,,,0.139,0.206,0.424,,,0.358,0.492,8.6,0.069481605,0.072,,,0.238,,,0.2,0.284,0.371192746,15965,43010,,,0.169821622,,,0.138354666,0.206299327,0.444444444,16,36,0.362711109,0.521336837,464.1,199,42880,,,11.26726436,93,8254,9.094136506,13.80316005,,,,,,,14.10658307,9.880077358,19.52945709,10.90512541,5.229431512,20.0549139,9.903381643,7.106837649,13.43505545,,,,,,,0.06764105,2152,31815,0.056917646,0.078364454,0.000163246,7,42880,,,6125.714286,0.000370937,16,43134,,,2695.875,0.001228729,53,43134,,,813.8490566,2781,,,,,,,4328,,2415,0.4,,,,,,0.2,0.47,,0.39,0.42,,,,,,0.38,0.38,0.34,0.43,0.893811075,24696,27630,0.879057166,0.908564984,0.635060555,8285,13046,0.571905674,0.698215436,0.034230146,528,15425,,,0.119,993,,0.074914894,0.163085106,,,,,,,0.151434879,0.089233958,0.2136358,0.065740741,0,0.161326662,0.096053611,0.038702368,0.153404855,3.354439453,140390,41852,2.745100561,3.963778346,0.293270961,2445,8337,0.225500456,0.361041466,5.830223881,25,42880,,,61.7945968,121,195810,50.78392319,72.80527042,,,,,,,35.93655564,22.5212481,54.40837712,,,,85.41954136,68.77448631,104.8762683,,,,8.1,,,,,0,,,,,0.107947301,1270,11765,0.081187303,0.134707299,0.097696246,0.070012467,0.125380024,0.011899703,0.002318994,0.021480412,0.000849979,0,0.004193483,0.748575175,14842,19827,0.719817323,0.777333027,,,,,,,0.796066495,0.751695401,0.840437589,0.61394448,0.490450879,0.737438081,0.798272553,0.760087956,0.836457149,0.389,,19827,0.336669332,0.441330669,79.40089953,,,78.4038867,80.39791237,,,,,,,80.54894884,78.55521819,82.5426795,80.84416579,76.98733193,84.70099965,78.10787998,76.81556743,79.40019252,,,,342.6974393,462,112935,310.705149,374.6897297,,,,,,,327.6598235,270.4521279,384.8675191,,,,385.9909959,341.0845882,430.8974035,,,,51.64889084,20,38723,31.54848433,79.76752293,,,,,,,,,,,,,68.80127018,36.63377873,117.6522674,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.113,,,0.098,0.13,0.163,,,0.143,0.186,0.113,,,0.098,0.13,407.4,147,36080,,,0.072,3020,,,,0.069481605,2482.230321,35725,,,23.34909397,28,119919,15.51530338,33.7459418,,,,,,,,,,,,,36.93614664,23.6656861,54.95805838,,,,0.375,,,0.362,0.387,0.078678732,1765,22433,0.06438086,0.092976605,0.042254952,416,9845,0.029148569,0.055361335,0.000857792,37,43134,,,1165.783784,0.88,381.04,433,,,,,,,,3.345859906,,,,,,,3.171776704,3.379034624,3.403199105,,,,,,,,,,,0.016026739,,,,,-589.3896,,,,,0.855056364,46952,54911,0.736750629,0.973362099,76571,,,68765.55319,84376.44681,,,,63244,38515.82979,87972.17021,71064,61427.23404,80700.76596,68333,50670.3617,85995.6383,90783,78740.61702,102825.383,,,,,,0.403974589,2480,6139,,,17.95481971,,,,,0.211829544,,76571,,,3.41442595,8,2343,,,3.68301064,10,271517,1.766146759,6.773187698,,,,,,,,,,,,,,,,,,,14.63208381,30,195810,9.799336166,21.0141131,15.32097441,,,,,,,,,,,,,20.82309165,13.04972067,31.526411,,,,11.74608038,23,195810,7.446007373,17.62488785,,,,,,,,,,,,,16.89617302,10.01374295,26.70323775,,,,9.944128729,27,271517,6.553243492,14.46818521,,,,,,,,,,,,,12.10816629,7.176066716,19.13612288,,,,,,3900,,,40,,0.590752033,17439,29520,,,0.701,,,,,29.91021263,,,,,0.70908807,9082,12808,0.676206254,0.741969886,0.109022856,1369,12557,0.081056501,0.13698921,0.884525297,11329,12808,0.855560732,0.913489861,43134,,,,,0.195391107,8428,43134,,,0.139147772,6002,43134,,,0.311471229,13435,43134,,,0.009250243,399,43134,,,0.020981129,905,43134,,,0.004636714,200,43134,,,0.099387954,4287,43134,,,0.529141744,22824,43134,,,0.004095226,166,40535,0.00031846,0.007871993,0.436453842,18826,43134,,,0.490560335,21099,43010,, -51,153,51153,VA,Prince William County,2024,1,5340.108859,3837,1374759,5106.473958,5573.743759,0,,,,2,2941.006445,2399.927744,3482.085146,,7554.320313,6911.821811,8196.818815,,4207.185559,3802.591156,4611.779963,,5543.575699,5168.378342,5918.773056,,,,,2,,0.139,,,0.12,0.16,3.161972248,,,2.595263346,3.8062975,4.145787793,,,3.52124807,4.824687898,0.07532278,3407,45232,0.072890624,0.077754936,0,,,,0.085685072,0.077839906,0.093530237,0.108757682,0.102365089,0.115150276,0.067997199,0.063868187,0.07212621,0.05881976,0.055128333,0.062511188,,,,0.076709797,0.060852215,0.092567379,0.116,,,0.094,0.141,0.357,,,0.312,0.402,9.5,0.038156001,0.045,,,0.21,,,0.18,0.244,0.967474347,466520,482204,,,0.165611491,,,0.137999984,0.193942611,0.272727273,30,110,0.223887073,0.323027207,412.6,1999,484472,,,12.86666429,1444,112228,12.20301529,13.53031329,,,,2.682403434,1.73591007,3.95975662,11.58284533,10.19865699,12.96703368,26.70741024,24.93676265,28.47805783,5.448279357,4.720003004,6.176555711,,,,6.277901786,4.579144641,8.40032652,0.096047904,41303,430025,0.087707479,0.10438833,0.000441718,214,484472,,,2263.887851,0.00062841,306,486943,,,1591.316994,0.001630581,794,486943,,,613.2783375,2617,,,,,,1571,3869,1779,2518,0.34,,,,,,0.28,0.3,0.27,0.37,0.47,,,,,,0.49,0.36,0.38,0.5,0.899475233,277847,308899,0.894097444,0.904853022,0.718316017,96931,134942,0.696666914,0.739965121,0.027296323,6857,251206,,,0.088,11040,,0.065361702,0.110638298,0.083003953,0,0.235667185,0.080560902,0.051445561,0.109676243,0.055865264,0.037119856,0.074610671,0.153768011,0.124488272,0.18304775,0.022532338,0.015771018,0.029293658,3.595149502,216428,60200,3.434716075,3.755582928,0.190013523,24309,127933,0.171781476,0.208245569,6.254231411,303,484472,,,43.95745867,1038,2361374,41.28328276,46.63163457,,,,20.9386906,15.32975316,27.92927899,46.21784009,40.17870898,52.25697119,26.60199273,22.40043939,30.80354607,59.97443411,55.11849287,64.83037534,,,,8.5,,,,,0,,,,,0.142827414,20590,144160,0.134061861,0.151592967,0.113427624,0.104636244,0.122219003,0.031700888,0.027231534,0.036170242,0.004786349,0.003291123,0.006281574,0.68422464,170959,249858,0.674216461,0.694232818,0.618593564,0.474006994,0.763180133,0.624333399,0.593360666,0.655306133,0.631201764,0.602527612,0.659875916,0.605044209,0.579044958,0.631043459,0.683320326,0.666991348,0.699649304,0.643,,249858,0.623241384,0.662758616,81.00059897,,,80.69641679,81.30478116,,,,85.89622303,84.51115383,87.28129223,78.48762351,77.7272391,79.24800793,84.3049918,83.03321149,85.57677211,80.47650142,80.07374748,80.87925537,,,,264.5379192,3837,1374759,256.1034364,272.9724019,,,,165.0066783,144.2091835,185.804173,346.8616007,325.3108559,368.4123455,207.7399709,188.8679986,226.6119433,279.4123885,266.7010839,292.123693,,,,38.31810504,213,555873,33.17209898,43.46411109,,,,33.64435672,18.83049106,55.49124994,69.11164258,54.4521137,86.50352648,35.09711192,26.71754774,45.27271727,27.88780838,20.95017997,36.38754055,,,,4.619291563,211,45678,3.996001477,5.242581648,,,,,,,9.167385677,7.322582076,11.33561436,4.053765735,3.07028258,5.252123704,2.749098907,2.005211607,3.67851063,,,,,,,0.09,,,0.078,0.104,0.135,,,0.118,0.154,0.098,,,0.085,0.112,289.2,1139,393911,,,0.045,21310,,,,0.038156001,15338.78888,402002,,,18.03766937,258,1430340,15.83663593,20.2387028,,,,,,,17.30996375,12.88840499,22.75940555,10.09834668,7.072757863,13.98036839,27.1419835,22.90975497,31.37421202,,,,0.342,,,0.33,0.352,0.114922285,34714,302065,0.103007391,0.126837179,0.05327591,7150,134207,0.041361016,0.065190803,0.000651,317,486943,,,1536.097792,0.89,6166.81,6929,,,0.037598326,1042,27714,0.027518763,0.047677888,3.224998712,,,,,,3.490112116,3.127879019,2.919513733,3.549854131,,,,,,,,,,,0.101850277,,,,,-1832.843,,,,,0.804086672,65127,80995,0.775535201,0.832638143,119051,,,112789.7234,125312.2766,100375,87670.14894,113079.8511,117199,108265.2128,126132.7872,112197,104566.7021,119827.2979,99718,95154.59575,104281.4043,141837,138201.766,145472.234,,,,,,0.444096627,38588,86891,,,39.90456319,,,,,0.26723841,,119051,,,5.812047331,195,33551,,,2.937302363,96,3268305,2.379224345,3.586948923,,,,,,,7.587580767,5.649452257,9.976267442,3.317147355,2.166870784,4.860389444,1.08731975,0.60856461,1.793368573,,,,9.608769674,225,2361374,8.336413035,10.88112631,9.528350867,,,,5.829000701,2.909816148,10.42969239,7.815844962,5.346032168,11.03364105,4.380899185,2.637587489,6.841316749,14.65877151,12.23647303,17.08106999,,,,7.495636015,177,2361374,6.391359268,8.599912763,,,,,,,11.70851949,8.86791832,15.16974506,4.145765101,2.656269926,6.168569848,8.90405421,7.131782411,10.98311797,,,,6.670124116,218,3268305,5.784678811,7.555569422,,,,,,,9.224117795,7.072078221,11.82490272,6.251546939,4.624928841,8.264876589,6.958846397,5.636687924,8.497942501,,,,11.79310345,,58000,,,418,266,0.781254706,228267,292180,,,0.743,,,,,102.3280574,,,,,0.74145568,113158,152616,0.729602166,0.753309194,0.117970022,17748,150445,0.109097668,0.126842376,0.961576768,146752,152616,0.958298179,0.964855357,486943,,,,,0.262544076,127844,486943,,,0.113005013,55027,486943,,,0.203136712,98916,486943,,,0.010869855,5293,486943,,,0.107437626,52316,486943,,,0.001891392,921,486943,,,0.257771444,125520,486943,,,0.391427744,190603,486943,,,0.057368653,25705,448067,0.052982143,0.061755162,0.496592004,241812,486943,,,0.045949432,22157,482204,, -51,155,51155,VA,Pulaski County,2024,1,11130.07161,807,91955,9837.229174,12422.91404,0,,,,2,,,,2,16345.24223,9342.718216,26543.64934,1,,,,2,11202.24912,9856.067287,12548.43096,,,,,2,,0.162,,,0.134,0.19,3.987623212,,,3.102020705,4.890456294,5.409726158,,,4.32878832,6.531530939,0.09228585,195,2113,0.079944904,0.104626795,0,,,,,,,0.14953271,0.081961594,0.217103826,,,,0.088280847,0.075646434,0.100915259,,,,,,,0.185,,,0.146,0.225,0.377,,,0.301,0.457,7.9,0.039031996,0.119,,,0.236,,,0.189,0.287,0.801153846,27079,33800,,,0.166806556,,,0.133071929,0.207906612,0.258064516,8,31,0.163976301,0.358237809,239.9,81,33759,,,28.23153409,159,5632,23.84327777,32.61979042,,,,,,,49.01960784,27.4359024,80.85038847,,,,27.89087948,23.22043733,32.56132163,,,,,,,0.077161598,1941,25155,0.065246705,0.089076492,0.000325839,11,33759,,,3069,0.000296683,10,33706,,,3370.6,0.000593366,20,33706,,,1685.3,3222,,,,,,,9093,,3010,0.44,,,,,,,0.43,,0.44,0.48,,,,,,,0.41,,0.48,0.903284098,22994,25456,0.886130765,0.920437431,0.569936831,4421,7757,0.499934745,0.639938917,0.030936505,515,16647,,,0.194,1128,,0.132042553,0.255957447,,,,,,,0.578512397,0.123605223,1,0.310606061,0,0.708862528,0.171919192,0.116538155,0.227300229,4.270896984,109036,25530,3.734901301,4.806892667,0.267351333,1614,6037,0.206841145,0.327861522,15.10708256,51,33759,,,109.4304323,186,169971,93.70372821,125.1571363,,,,,,,141.6597804,73.1976757,247.4511279,,,,111.6245262,94.94239719,128.3066553,,,,7.1,,,,,1,,,,,0.11660416,1710,14665,0.090088751,0.143119568,0.111311589,0.085737847,0.136885331,0.005727924,0.000519306,0.010936542,0.011251279,0,0.022614665,0.84858871,12627,14880,0.810205791,0.886971629,,,,,,,,,,,,,0.847213717,0.815937176,0.878490258,0.304,,14880,0.257242581,0.350757419,73.82602243,,,72.88410972,74.76793514,,,,,,,70.80399065,65.32835362,76.27962767,,,,73.66299472,72.69765362,74.62833583,,,,557.7795745,807,91955,515.8294724,599.7296766,,,,,,,676.740752,483.473515,921.5288277,,,,564.5280845,520.3816766,608.6744925,,,,45.55981624,12,26339,23.54142188,79.58383025,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.116,,,0.097,0.135,0.177,,,0.151,0.203,0.096,,,0.081,0.112,77.8,23,29544,,,0.119,4020,,,,0.039031996,1361.12378,34872,,,44.23865279,45,101721,32.26797691,59.19479802,,,,,,,,,,,,,41.27742777,29.21036459,56.65649459,,,,0.362,,,0.345,0.379,0.08956001,1720,19205,0.074070649,0.105049372,0.038025244,238,6259,0.02611035,0.049940137,0.000949386,32,33706,,,1053.3125,0.93,265.98,286,,,,,,,,3.079356435,,,,,,,,,3.1165235,,,,,,,,,,,0.014050228,,,,,451.8184,,,,,0.870402321,44394,51004,0.780334404,0.960470239,57731,,,51022.91489,64439.08511,,,,111176,28517.61702,193834.383,32941,24321.76596,41560.23404,115250,11311.61702,219188.383,60713,55850.53192,65575.46809,,,,,,0.673586714,2109,3131,,,38.85985239,,,,,0.248531985,,57731,,,7.585335019,12,1582,,,,,,,,,,,,,,,,,,,,,,,,,,21.37183225,36,169971,14.71138594,30.01399844,21.18008366,,,,,,,,,,,,,22.06562976,14.88758774,31.50005852,,,,15.88506275,27,169971,10.46835644,23.1119323,,,,,,,,,,,,,15.57551529,9.97952654,23.17513213,,,,14.25540657,34,238506,9.872283458,19.92050183,,,,,,,,,,,,,14.78900253,10.11566678,20.87765894,,,,37.77777778,,2700,,,74,28,0.623042466,17386,27905,,,0.618,,,,,31.92782822,,,,,0.702663438,10157,14455,0.678027203,0.727299673,0.126726944,1752,13825,0.09683297,0.156620918,0.779522657,11268,14455,0.75084888,0.808196433,33706,,,,,0.175933068,5930,33706,,,0.235685041,7944,33706,,,0.049575743,1671,33706,,,0.002907494,98,33706,,,0.007595087,256,33706,,,0.000385688,13,33706,,,0.021123836,712,33706,,,0.90144188,30384,33706,,,0.001084196,35,32282,0,0.005093175,0.492375245,16596,33706,,,0.42591716,14396,33800,, -51,157,51157,VA,Rappahannock County,2024,1,9801.53226,106,19450,6473.426668,13129.63785,0,,,,2,,,,2,,,,2,,,,2,10794.60565,6990.008337,14599.20296,,,,,2,,0.137,,,0.114,0.164,3.411692865,,,2.620682219,4.247901518,5.083209196,,,4.029052588,6.153775506,0.064220184,21,327,0.037649373,0.090790994,1,,,,,,,,,,,,,0.066889632,0.038571384,0.095207881,,,,,,,0.151,,,0.116,0.191,0.346,,,0.269,0.43,8.8,0.051290812,0.073,,,0.204,,,0.162,0.252,0.386908002,2843,7348,,,0.16033719,,,0.126482179,0.197698261,0.285714286,2,7,0.086061846,0.500925625,216,16,7407,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.109630186,584,5327,0.092949335,0.126311037,0.000270015,2,7407,,,3703.5,0.000266596,2,7502,,,3751,0.001066382,8,7502,,,937.75,1970,,,,,,,9926,,1429,0.34,,,,,,,0.53,,0.34,0.46,,,,,,,0.55,0.44,0.46,0.905711207,5043,5568,0.868531171,0.942891243,0.527406417,789,1496,0.369702326,0.685110509,0.025275612,94,3719,,,0.152,184,,0.097191489,0.206808511,,,,,,,,,,,,,0.128358209,0.01902195,0.237694468,4.735332052,194589,41093,3.403972906,6.066691198,0.161797753,216,1335,0.024772243,0.298823262,10.80059403,8,7407,,,133.8432122,49,36610,99.01794523,176.9478246,,,,,,,,,,,,,145.160294,106.6583241,193.0324181,,,,6.8,,,,,0,,,,,0.143362832,405,2825,0.073972825,0.212752839,0.092362345,0.050121066,0.134603624,0.015929204,0,0.037545485,0.046017699,0,0.102070477,0.713956171,2476,3468,0.627741337,0.800171005,,,,,,,,,,,,,0.622427984,0.554994112,0.689861856,0.557,,3468,0.442654261,0.671345739,78.43361121,,,75.74360215,81.12362028,,,,,,,,,,,,,77.39723338,74.46036114,80.33410561,,,,369.9215047,106,19450,286.6098771,453.2331323,,,,,,,,,,,,,394.1479464,301.0401434,487.2557494,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.1,,,0.085,0.118,0.161,,,0.137,0.189,0.086,,,0.072,0.101,198.1,13,6561,,,0.073,540,,,,0.051290812,378.1671561,7373,,,54.45387303,12,22037,28.13711081,95.11995756,,,,,,,,,,,,,56.54654809,28.22783307,101.1773943,,,,0.326,,,0.307,0.345,0.114738124,471,4105,0.095674295,0.133801954,0.093603744,120,1282,0.065008,0.122199489,0.000266596,2,7502,,,3751,,,,,,,,,,,2.962122282,,,,,,,,,3.050510439,,,,,,,,,,,0.006200458,,,,,5010.838,,,,,0.944142562,63419,67171,0.655190903,1.23309422,85575,,,72868.95745,98281.04255,,,,,,,,,,,,,99774,87620.80851,111927.1915,,,,,,0.395750332,298,753,,,11.92424098,,,,,0.240560912,,85575,,,13.1147541,4,305,,,,,,,,,,,,,,,,,,,,,,,,,,28.77113509,12,36610,13.7968776,52.91114181,32.77792953,,,,,,,,,,,,,32.48100583,15.57590482,59.73372619,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,500,,,15,-888,0.84533107,4979,5890,,,0.619,,,,,2.716109157,,,,,0.745660645,2105,2823,0.69889795,0.792423339,0.093382353,254,2720,0.045535267,0.141229439,0.867162593,2448,2823,0.808515614,0.925809572,7502,,,,,0.164622767,1235,7502,,,0.290189283,2177,7502,,,0.038523061,289,7502,,,0.005065316,38,7502,,,0.012396694,93,7502,,,0.000666489,5,7502,,,0.050386564,378,7502,,,0.874166889,6558,7502,,,0.004490598,32,7126,0,0.016943498,0.500266596,3753,7502,,,1,7348,7348,, -51,159,51159,VA,Richmond County,2024,1,8557.985883,162,24293,6487.43029,10628.54148,0,,,,2,,,,2,9713.962802,6454.857736,14039.38087,,,,,2,8193.979884,5343.693544,11044.26622,,,,,2,,0.209,,,0.18,0.242,4.33314088,,,3.476562756,5.297047537,5.451388156,,,4.433639225,6.555341016,0.105172414,61,580,0.080205626,0.130139202,0,,,,,,,0.15,0.09467121,0.20532879,,,,0.088145897,0.057510617,0.118781176,,,,,,,0.206,,,0.166,0.245,0.388,,,0.318,0.463,9,0.02376061,0.075,,,0.288,,,0.242,0.34,0.552280623,4928,8923,,,0.155565728,,,0.123877477,0.191836671,0.230769231,3,13,0.089378268,0.394382228,366,33,9017,,,14.57321305,21,1441,9.021048566,22.27670419,,,,,,,,,,,,,16.31116688,8.685009399,27.89259212,,,,,,,0.103153394,579,5613,0.086472543,0.119834245,0.000110902,1,9017,,,9017,0.000330397,3,9080,,,3026.666667,0.001872247,17,9080,,,534.1176471,3755,,,,,,,5882,,3337,0.48,,,,,,,0.48,,0.49,0.43,,,,,,,0.37,,0.45,0.750626382,5093,6785,0.69140595,0.809846814,0.411657559,904,2196,0.318927796,0.504387323,0.028785983,115,3995,,,0.199,313,,0.121553192,0.276446809,,,,,,,0.051724138,0,0.189971381,,,,0.017441861,0,0.045836136,4.044259945,135418,33484,3.128726842,4.959793048,0.180878553,280,1548,0.051871271,0.309885835,14.41721193,13,9017,,,102.0227111,46,45088,74.69344706,136.0839995,,,,,,,136.1470388,80.68936374,215.1710178,,,,91.97939662,59.52421578,135.779734,,,,7,,,,,0,,,,,0.105442177,310,2940,0.057785325,0.153099029,0.093950178,0.044656338,0.143244018,0.011904762,0,0.029971845,0.003401361,0,0.012162098,0.767144638,2461,3208,0.671322183,0.862967094,,,,,,,,,,,,,0.772818455,0.685435996,0.860200915,0.356,,3208,0.23970307,0.47229693,76.72236742,,,74.97727951,78.46745532,,,,,,,75.3078815,72.11587882,78.49988419,,,,76.88978368,74.56029737,79.21927,,,,463.9603923,162,24293,389.6292831,538.2915015,,,,,,,577.8062405,428.8589288,761.7654949,,,,430.7297749,339.7760985,521.6834513,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.13,,,0.112,0.149,0.178,,,0.155,0.204,0.125,,,0.108,0.144,389.7,31,7955,,,0.075,670,,,,0.02376061,219.880685,9254,,,,,,,,,,,,,,,,,,,,,,,,,,0.41,,,0.396,0.423,0.119041858,492,4133,0.09759505,0.140488667,0.059050064,92,1558,0.039986234,0.078113894,0.000770925,7,9080,,,1297.142857,0.925,78.625,85,,,,,,,,3.151883826,,,,,,,2.669477843,,3.398009147,,,,,,,,,,,0.002052068,,,,,-2105.149,,,,,0.954628294,50286,52676,0.704956268,1.20430032,60180,,,58034.12766,62325.87234,,,,,,,52575,29773.46809,75376.53192,62148,5814.382979,118481.617,72757,57828.82979,87685.17021,,,,,,0.718518519,970,1350,,,11.38897318,,,,,0.269524759,,60180,,,10.05025126,4,398,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20.71053051,13,62770,11.02748525,35.41563791,,,,,,,,,,,,,,,,,,,17.14285714,,700,,,12,0,0.569326856,4102,7205,,,0.548,,,,,12.30221011,,,,,0.685956246,1944,2834,0.62196524,0.749947251,0.076697248,209,2725,0.035528923,0.117865573,0.787226535,2231,2834,0.713518364,0.860934706,9080,,,,,0.176872247,1606,9080,,,0.214647577,1949,9080,,,0.288876652,2623,9080,,,0.005176212,47,9080,,,0.006387665,58,9080,,,0.000660793,6,9080,,,0.078634361,714,9080,,,0.598898678,5438,9080,,,0.009802764,83,8467,0,0.022896087,0.433920705,3940,9080,,,1,8923,8923,, -51,161,51161,VA,Roanoke County,2024,1,6933.056841,1299,258147,6245.410447,7620.703236,0,,,,2,,,,2,8307.597875,5818.539419,11501.21723,,,,,2,6991.219872,6235.491071,7746.948673,,,,,2,,0.133,,,0.11,0.159,3.3678499,,,2.695489814,4.128190658,5.043860378,,,4.239017779,5.909712078,0.076489533,380,4968,0.069098805,0.083880261,0,,,,0.115879828,0.07478022,0.156979437,0.127753304,0.097046552,0.158460056,0.067857143,0.038398273,0.097316013,0.069281712,0.061338441,0.077224982,,,,,,,0.143,,,0.111,0.179,0.345,,,0.291,0.403,9,0.033979373,0.071,,,0.202,,,0.166,0.242,0.703587162,68198,96929,,,0.170376979,,,0.141083755,0.203147467,0.166666667,7,42,0.092975613,0.254046475,295.1,285,96589,,,8.450561684,167,19762,7.168870456,9.732252912,,,,,,,17.3370319,11.21961293,25.59287913,10.6856634,5.521438209,18.66570352,7.961680368,6.554634504,9.368726232,,,,,,,0.065298937,4822,73845,0.055767022,0.074830852,0.001242378,120,96589,,,804.9083333,0.001042161,101,96914,,,959.5445545,0.003105846,301,96914,,,321.9734219,1811,,,,,,,1472,,1811,0.46,,,,,,0.28,0.43,,0.46,0.53,,,,,,0.52,0.38,0.42,0.54,0.933015723,65215,69897,0.92461933,0.941412117,0.728913299,16722,22941,0.682781783,0.775044816,0.025643082,1279,49877,,,0.087,1607,,0.057212766,0.116787234,,,,0.023041475,0,0.102461948,0.270009643,0.112164438,0.427854848,0.057460612,0,0.157232375,0.064071979,0.040091045,0.088052913,4.200979966,144896,34491,3.862371855,4.539588077,0.203214696,3894,19162,0.163010912,0.24341848,11.90611767,115,96589,,,87.29895347,413,473087,78.87938015,95.71852678,,,,,,,75.75757576,47.4768694,114.6978801,,,,93.67786246,84.22153792,103.134187,,,,6.3,,,,,0,,,,,0.088923761,3400,38235,0.077345618,0.100501904,0.081098843,0.067806013,0.094391674,0.007323133,0.003480154,0.011166113,0.004707729,0.001733058,0.007682399,0.79734062,37058,46477,0.784197158,0.810484082,,,,0.655049151,0.448303175,0.861795128,0.715192965,0.616978889,0.813407042,0.787037037,0.647216246,0.926857828,0.768946036,0.734926377,0.802965694,0.288,,46477,0.257622863,0.318377138,78.50222985,,,77.91514863,79.08931108,,,,85.18106098,78.31014159,92.05198036,77.68191491,74.88292616,80.48090366,90.38357856,76.57996153,104.1871956,78.39703025,77.77101813,79.02304237,,,,339.5478604,1299,258147,319.5842702,359.5114505,,,,,,,374.1081378,293.755353,469.6585083,,,,346.5529261,324.7634177,368.3424345,,,,44.56864776,37,83018,31.38044107,61.4320101,,,,,,,,,,,,,38.5297064,24.93439446,56.87744733,,,,8.381560567,42,5011,6.040691625,11.329435,,,,,,,,,,,,,9.243067699,6.507972662,12.74035127,,,,,,,0.097,,,0.082,0.114,0.156,,,0.135,0.18,0.083,,,0.07,0.097,120.6,101,83722,,,0.071,6830,,,,0.033979373,3138.878525,92376,,,26.64012002,76,285284,20.98938457,33.34408273,,,,,,,,,,,,,28.14359857,21.85460552,35.6787173,,,,0.316,,,0.299,0.332,0.075929799,4175,54985,0.064014905,0.087844693,0.035757393,711,19884,0.025033989,0.046480797,0.001155664,112,96914,,,865.3035714,0.94,1034,1100,,,0.051539638,236,4579,0.018125003,0.084954272,3.394307317,,,,,,3.545816041,3.131109281,3.253612581,3.429441323,,,,,,,,,,,0.051205821,,,,,1797.738,,,,,0.813384634,52639,64716,0.744729064,0.882040204,77010,,,69172.38298,84847.61702,93378,40091.02128,146664.9787,114242,109044.7234,119439.2766,61383,40313.89362,82452.10638,56373,47983.7234,64762.2766,81789,79453.68085,84124.31915,,,,,,0.305255962,4019,13166,,,36.41803114,,,,,0.243020387,,77010,,,6.463115668,29,4487,,,3.174473604,21,661527,1.965049194,4.852520114,,,,,,,,,,,,,2.833111997,1.619368296,4.600796387,,,,12.75269269,66,473087,9.70794054,16.45004443,13.95092235,,,,,,,,,,,,,13.32223905,9.949685334,17.47034408,,,,13.1054119,62,473087,10.04784416,16.8005466,,,,,,,,,,,,,12.67260208,9.435584627,16.66213138,,,,8.162932125,54,661527,6.132245845,10.65085573,,,,,,,,,,,,,7.96812749,5.812006868,10.6619815,,,,20.76086957,,9200,,,140,51,0.78172256,57226,73205,,,0.786,,,,,49.87152633,,,,,0.757023189,29642,39156,0.73605948,0.777986899,0.078479699,3025,38545,0.064356485,0.092602913,0.879277761,34429,39156,0.864757191,0.89379833,96914,,,,,0.193604639,18763,96914,,,0.223620942,21672,96914,,,0.066791176,6473,96914,,,0.002940752,285,96914,,,0.037259839,3611,96914,,,0.000412737,40,96914,,,0.039292569,3808,96914,,,0.835885424,81009,96914,,,0.007761518,716,92250,0.004588627,0.010934408,0.515560187,49965,96914,,,0.194100837,18814,96929,, -51,163,51163,VA,Rockbridge County,2024,1,8992.319655,354,59939,7236.202196,10748.43711,0,,,,2,,,,2,20115.28822,9646.062576,36992.73123,1,,,,2,8545.481693,6823.58145,10267.38194,,,,,2,,0.155,,,0.128,0.185,3.721867848,,,2.941131436,4.561863969,5.25145675,,,4.256182201,6.339939535,0.078720787,64,813,0.060208881,0.097232694,0,,,,,,,,,,,,,0.085333333,0.065338572,0.105328095,,,,,,,0.169,,,0.132,0.213,0.345,,,0.275,0.42,8.1,0.072951407,0.095,,,0.223,,,0.18,0.273,0.535099338,12120,22650,,,0.156535619,,,0.124575805,0.193049097,0.25,8,32,0.157795866,0.348940352,141.3,32,22641,,,7.575757576,34,4488,5.24643235,10.58636188,,,,,,,,,,,,,8.119434259,5.51676165,11.52488882,,,,,,,0.089566135,1443,16111,0.076459752,0.102672518,0.000927521,21,22641,,,1078.142857,4.42615E-05,1,22593,,,22593,4.42615E-05,1,22593,,,22593,2442,,,,,,,,,2373,0.47,,,,,,,,,0.48,0.45,,,,,,,0.43,,0.45,0.90610687,15431,17030,0.888876532,0.923337209,0.646906661,3001,4639,0.537982726,0.755830596,0.028724485,311,10827,,,0.17,647,,0.109234043,0.230765957,,,,,,,0.063613232,0,0.182548403,0.100478469,0,0.391839446,0.121868234,0.048147139,0.195589328,4.074293007,121308,29774,3.491182836,4.657403178,0.190877541,770,4034,0.117898385,0.263856697,10.60023851,24,22641,,,92.60729216,105,113382,74.89370138,110.320883,,,,,,,,,,,,,96.1067169,77.26980039,114.9436334,,,,6.8,,,,,0,,,,,0.102150538,950,9300,0.074052598,0.130248477,0.093886463,0.064794816,0.12297811,0.005376344,0,0.012746898,0.005376344,0.0002107,0.010541989,0.800983047,7985,9969,0.755360903,0.846605192,,,,,,,,,,,,,0.762934363,0.702359634,0.823509092,0.409,,9969,0.335031634,0.482968366,77.52082369,,,76.1318544,78.90979297,,,,,,,,,,,,,77.76430102,76.37574874,79.15285331,,,,380.9430578,354,59939,334.7499635,427.1361522,,,,,,,852.9271939,505.4987108,1347.992685,,,,371.2177796,324.2761019,418.1594574,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.111,,,0.094,0.131,0.173,,,0.148,0.2,0.091,,,0.076,0.107,95.1,19,19971,,,0.095,2160,,,,0.072951407,1627.327042,22307,,,14.71215666,10,67971,7.055050972,27.0561799,,,,,,,,,,,,,,,,,,,0.333,,,0.315,0.351,0.100744742,1231,12219,0.084063891,0.117425593,0.055596196,228,4101,0.037723856,0.073468537,0.000354092,8,22593,,,2824.125,0.86,219.3,255,,,,,,,,3.092419859,,,,,,,,,3.119494341,,,,,,,,,,,0.030073967,,,,,1991.174,,,,,0.954085923,48791,51139,0.794394203,1.113777642,64393,,,56188.40426,72597.59575,,,,,,,,,,120625,88600.14894,152649.8511,61254,57662.85106,64845.14894,,,,,,0.422888617,691,1634,,,47.06862227,,,,,0.271256192,,64393,,,2.034587996,2,983,,,,,,,,,,,,,,,,,,,,,,,,,,21.76719108,26,113382,13.47423436,33.2734638,22.93132949,,,,,,,,,,,,,23.68589227,14.66194063,36.20640238,,,,21.16738107,24,113382,13.56234046,31.49538515,,,,,,,,,,,,,23.06561206,14.77857287,34.3198024,,,,22.13396742,35,158128,15.4171193,30.7829906,,,,,,,,,,,,,22.65487698,15.59457489,31.81587027,,,,16.31578947,,1900,,,25,6,0.674312177,12377,18355,,,0.645,,,,,15.79284517,,,,,0.782023911,7326,9368,0.751390555,0.812657268,0.080823738,730,9032,0.057108199,0.104539276,0.827284372,7750,9368,0.790275333,0.864293412,22593,,,,,0.170362502,3849,22593,,,0.276590094,6249,22593,,,0.034214137,773,22593,,,0.006639225,150,22593,,,0.008055592,182,22593,,,0.000177046,4,22593,,,0.022086487,499,22593,,,0.91218519,20609,22593,,,0.001102536,24,21768,0,0.006454344,0.504713849,11403,22593,,,0.900794702,20403,22650,, -51,165,51165,VA,Rockingham County,2024,1,6389.179404,1001,227233,5739.545447,7038.813361,0,,,,2,,,,2,7474.159369,4272.127872,12137.56656,1,5752.774705,3722.892467,8492.230302,,6451.296716,5750.641626,7151.951805,,,,,2,,0.147,,,0.121,0.177,3.637195666,,,2.897562419,4.48167088,5.19500342,,,4.283435253,6.195004585,0.063913471,390,6102,0.057776216,0.070050726,0,,,,,,,0.122137405,0.066063856,0.178210953,0.059633028,0.041483751,0.077782304,0.063522618,0.056890135,0.070155101,,,,,,,0.162,,,0.124,0.203,0.369,,,0.306,0.435,9.1,0.027783047,0.07,,,0.223,,,0.183,0.27,0.51126473,42822,83757,,,0.177071844,,,0.144542368,0.215023208,0.403225807,25,62,0.340352723,0.464322769,285.6,241,84394,,,13.67617682,267,19523,12.0357187,15.31663494,,,,,,,,,,19.1740413,13.63461774,26.21154566,13.34657645,11.56252769,15.13062521,,,,,,,0.113086889,7498,66303,0.098789017,0.127384761,0.000248833,21,84394,,,4018.761905,0.00018736,16,85397,,,5337.3125,0.00029275,25,85397,,,3415.88,3304,,,,,,,,,3326,0.44,,,,,,,0.38,0.29,0.44,0.49,,,,,,0.56,0.42,0.26,0.49,0.871787729,50072,57436,0.859315974,0.884259484,0.586104269,11422,19488,0.540765675,0.631442864,0.02556461,1098,42950,,,0.115,2103,,0.081638298,0.148361702,,,,0.293333333,0,0.901895264,0.117788462,0,0.270724308,0.245454546,0.166567372,0.324341719,0.064984977,0.043208779,0.086761175,3.535366932,127952,36192,3.249197324,3.82153654,0.130460867,2392,18335,0.10034217,0.160579564,13.38957746,113,84394,,,70.94809574,291,410159,62.79635572,79.09983576,,,,,,,,,,32.24766205,15.4640074,59.30459865,76.36025379,67.33504854,85.38545905,,,,7.1,,,,,0,,,,,0.100303466,3140,31305,0.08574301,0.114863921,0.077554304,0.064767241,0.090341368,0.015652452,0.010336149,0.020968755,0.013096949,0.007434782,0.018759117,0.795031206,32865,41338,0.769681188,0.820381224,,,,,,,0.729750189,0.613509501,0.845990878,0.724658519,0.654800513,0.794516526,0.771434467,0.753386688,0.789482246,0.275,,41338,0.248304256,0.301695744,79.03420176,,,78.43900362,79.62939989,,,,,,,76.13519056,72.51619137,79.75418976,83.93822991,78.46393733,89.41252249,78.92241542,78.29335158,79.55147926,,,,317.1523804,1001,227233,296.4315111,337.8732496,,,,,,,456.3437428,298.0988837,668.649316,226.6671863,150.6186991,327.5971943,321.4728214,299.399141,343.5465019,,,,58.94199126,48,81436,43.4591714,78.14852913,,,,,,,,,,,,,54.48436601,38.16018013,75.42932846,,,,6.358768407,38,5976,4.49984298,8.727906446,,,,,,,,,,,,,5.259057265,3.465751876,7.65165221,,,,,,,0.108,,,0.091,0.126,0.166,,,0.142,0.192,0.094,,,0.08,0.111,105.1,75,71332,,,0.07,5850,,,,0.027783047,2120.235423,76314,,,12.86752879,32,248688,8.801380168,18.16511134,,,,,,,,,,,,,13.81444438,9.320547614,19.72097834,,,,0.318,,,0.3,0.334,0.133546273,6397,47901,0.114482443,0.152610102,0.061707961,1193,19333,0.04383562,0.079580301,0.00036301,31,85397,,,2754.741936,,,,,,0.060435133,300,4964,0.026311003,0.094559263,3.110081592,,,,,,,,2.717269731,3.187152441,,,,,,,,,,,0.038994828,,,,,,,,,,0.780290645,42955,55050,0.728544353,0.832036937,72921,,,68329,77513,,,,73690,53158.25532,94221.74468,67292,61339.31915,73244.68085,63381,55563.6383,71198.3617,73912,70690.21277,77133.78723,,,,,,0.415312387,4600,11076,,,48.57577124,,,,,0.239533194,,72921,,,4.665959703,22,4715,,,2.46263826,14,568496,1.346347253,4.131888548,,,,,,,,,,,,,2.59210445,1.38018645,4.432577552,,,,16.42001282,67,410159,12.58912967,21.04971538,16.33512857,,,,,,,,,,,,,17.71243298,13.41522377,22.94851138,,,,11.45897079,47,410159,8.419620724,15.23800193,,,,,,,,,,,,,12.49531426,9.114167962,16.71971358,,,,14.59992682,83,568496,11.62876022,18.09880594,,,,,,,,,,,,,15.5526267,12.29370601,19.41038199,,,,8.915662651,,8300,,,55,19,0.716614881,43821,61150,,,0.699,,,,,21.37185137,,,,,0.75240415,23785,31612,0.732684545,0.772123755,0.073680089,2258,30646,0.059925496,0.087434682,0.835663672,26417,31612,0.820700805,0.850626539,85397,,,,,0.216974835,18529,85397,,,0.205136012,17518,85397,,,0.025258499,2157,85397,,,0.005936977,507,85397,,,0.012494584,1067,85397,,,0.000655761,56,85397,,,0.085096666,7267,85397,,,0.860826493,73512,85397,,,0.019332273,1531,79194,0.014577485,0.02408706,0.50472499,43102,85397,,,0.592810153,49652,83757,, -51,167,51167,VA,Russell County,2024,1,11386.58432,619,71379,9884.633621,12888.53501,0,,,,2,,,,2,,,,2,,,,2,11512.628,9990.47168,13034.78431,,,,,2,,0.198,,,0.167,0.229,4.584093493,,,3.76738751,5.530129199,5.777189755,,,4.811613899,6.840544006,0.08543578,149,1744,0.072316505,0.098555055,0,,,,,,,,,,,,,0.084696262,0.071507047,0.097885476,,,,,,,0.216,,,0.174,0.256,0.401,,,0.337,0.468,7.5,0.009835322,0.155,,,0.293,,,0.246,0.34,0.461425081,11896,25781,,,0.148805197,,,0.121466391,0.179533704,0.105263158,4,38,0.040528908,0.196357122,184,47,25550,,,32.51864126,157,4828,27.43191185,37.60537067,,,,,,,,,,,,,33.52928369,28.23362501,38.82494238,,,,,,,0.084652831,1652,19515,0.071546448,0.097759214,0.000352251,9,25550,,,2838.888889,0.000117888,3,25448,,,8482.666667,0.001021691,26,25448,,,978.7692308,4421,,,,,,,,,4459,0.39,,,,,,,,,0.39,0.43,,,,,,,,,0.43,0.829364041,15845,19105,0.801450353,0.857277729,0.544477717,3091,5677,0.460854047,0.628101387,0.035711016,390,10921,,,0.238,1131,,0.149829787,0.326170213,,,,,,,,,,,,,0.166155195,0.11761475,0.21469564,4.571530285,89890,19663,3.713071254,5.429989316,0.171921602,807,4694,0.105627839,0.238215365,8.610567515,22,25550,,,79.95233031,106,132579,64.73164296,95.17301766,,,,,,,,,,,,,82.07806014,66.37846311,97.77765718,,,,7.1,,,,,0,,,,,0.104783599,1150,10975,0.075602212,0.133964986,0.096938776,0.06801006,0.125867491,0.003644647,0,0.009033281,0.006378132,0.000305351,0.012450914,0.78738126,6714,8527,0.729125864,0.845636656,,,,,,,,,,,,,0.813047069,0.749606502,0.876487635,0.434,,8527,0.363732426,0.504267574,73.8145471,,,72.72339168,74.90570252,,,,,,,,,,,,,73.59042799,72.50293837,74.6779176,,,,563.6910624,619,71379,515.0748276,612.3072971,,,,,,,,,,,,,572.7983619,522.9408426,622.6558813,,,,50.46334526,11,21798,25.19112014,90.29286409,,,,,,,,,,,,,48.23926676,23.13260346,88.7137291,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.136,,,0.117,0.155,0.195,,,0.171,0.22,0.109,,,0.094,0.126,40.6,9,22146,,,0.155,4020,,,,0.009835322,284.2113083,28897,,,13.96240306,11,78783,6.9699813,24.98259588,,,,,,,,,,,,,14.48359404,7.23015796,25.91515052,,,,0.37,,,0.352,0.386,0.099099099,1463,14763,0.082418248,0.11577995,0.040718563,204,5010,0.028803669,0.052633457,0.001571833,40,25448,,,636.2,0.89,248.31,279,,,0.177848775,167,939,0.056738375,0.298959176,3.282269969,,,,,,,,,3.291200935,,,,,,,,,,,0.066904216,,,,,1408.527,,,,,0.811184595,43052,53073,0.670386016,0.951983174,49537,,,43357.93617,55716.06383,,,,,,,40213,18087.04255,62338.95745,,,,44579,39403.17021,49754.82979,,,,,,0.673321759,2327,3456,,,60.9467202,,,,,0.251872338,,49537,,,5.695687551,7,1229,,,,,,,,,,,,,,,,,,,,,,,,,,16.79834882,22,132579,10.26086787,25.94368732,16.59387988,,,,,,,,,,,,,17.43218944,10.64803418,26.92260275,,,,17.34814714,23,132579,10.99723715,26.03073858,,,,,,,,,,,,,17.97900365,11.39714606,26.97733308,,,,21.82708688,41,187840,15.66349439,29.61090799,,,,,,,,,,,,,22.05570168,15.75691664,30.0336057,,,,14.7826087,,2300,,,24,10,0.617720351,13386,21670,,,0.525,,,,,9.363070476,,,,,0.748419237,7812,10438,0.714087744,0.782750731,0.105762217,1015,9597,0.073365953,0.138158482,0.655010538,6837,10438,0.604670277,0.7053508,25448,,,,,0.188855706,4806,25448,,,0.238093367,6059,25448,,,0.009273813,236,25448,,,0.003182961,81,25448,,,0.002593524,66,25448,,,0.000275071,7,25448,,,0.014696636,374,25448,,,0.962629676,24497,25448,,,0,0,24579,0,0.004847591,0.508291418,12935,25448,,,0.993871456,25623,25781,, -51,169,51169,VA,Scott County,2024,1,11226.40015,497,57306,9574.848793,12877.9515,0,,,,2,,,,2,,,,2,,,,2,11408.7511,9705.864117,13111.63808,,,,,2,,0.191,,,0.16,0.224,4.463895235,,,3.606190102,5.503069548,5.858387956,,,4.796521755,7.03853423,0.067241379,78,1160,0.052829188,0.081653571,0,,,,,,,,,,,,,0.065486726,0.051062709,0.079910743,,,,,,,0.222,,,0.178,0.268,0.372,,,0.298,0.45,7.4,0.057019651,0.137,,,0.28,,,0.227,0.334,0.498934001,10765,21576,,,0.146023232,,,0.116363716,0.18023068,0.16,4,25,0.067364287,0.277512739,144.7,31,21419,,,23.2133542,89,3834,18.64222956,28.56602984,,,,,,,,,,,,,23.73806276,19.01321515,29.28081271,,,,,,,0.085585003,1324,15470,0.07247862,0.098691386,0.000326813,7,21419,,,3059.857143,0.000139691,3,21476,,,7158.666667,0.001443472,31,21476,,,692.7741936,3979,,,,,,,,,4008,0.42,,,,,,,,,0.42,0.52,,,,,,,,,0.52,0.829857028,13408,16157,0.809057771,0.850656285,0.553363038,2608,4713,0.477913221,0.628812856,0.032097159,296,9222,,,0.227,863,,0.147170213,0.306829787,,,,,,,,,,0.333333333,0,0.694486787,0.200227208,0.14144773,0.259006686,5.282342261,93096,17624,4.430177909,6.134506613,0.260667184,1008,3867,0.167469601,0.353864767,4.668752043,10,21419,,,112.9493672,122,108013,92.90649497,132.9922395,,,,,,,,,,,,,115.2261794,94.60960002,135.8427588,,,,7.6,,,,,1,,,,,0.102755454,895,8710,0.079807728,0.125703179,0.081754386,0.060448966,0.103059806,0.011481056,0.003311302,0.019650811,0.020091849,0.009481961,0.030701736,0.850665984,6642,7808,0.826633458,0.87469851,,,,,,,,,,,,,0.796485492,0.745442653,0.847528332,0.505,,7808,0.436367731,0.57363227,73.90072223,,,72.69044237,75.11100209,,,,,,,,,,,,,73.69540716,72.4617886,74.92902571,,,,556.0839262,497,57306,502.5697606,609.5980919,,,,,,,,,,,,,562.4648,507.6753375,617.2542624,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.132,,,0.112,0.153,0.196,,,0.169,0.224,0.106,,,0.09,0.123,58.4,11,18842,,,0.137,2950,,,,0.057019651,1321.544454,23177,,,27.85773981,18,64614,16.51026214,44.02723909,,,,,,,,,,,,,27.31976987,15.91477272,43.74159807,,,,0.358,,,0.339,0.375,0.100990268,1183,11714,0.084309417,0.117671119,0.038568188,153,3967,0.026653294,0.050483081,0.000838145,18,21476,,,1193.111111,0.88,220,250,,,0.272727273,219,803,0.129229583,0.416224963,3.344472435,,,,,,,,,3.354380405,,,,,,,,,,,0.186792914,,,,,-482.6191,,,,,0.746620778,41869,56078,0.648621038,0.844620518,43743,,,39662.14894,47823.85106,,,,,,,,,,,,,44469,41136.40426,47801.59575,,,,,,0.653748232,2311,3535,,,58.09803922,,,,,0.285234209,,43743,,,11.9760479,10,835,,,,,,,,,,,,,,,,,,,,,,,,,,24.07190651,35,108013,16.24121424,34.36414333,32.40350699,,,,,,,,,,,,,24.79669245,16.73022427,35.39882033,,,,30.55187802,33,108013,21.03050704,42.9061958,,,,,,,,,,,,,31.68719933,21.81201,44.50060904,,,,17.75509802,27,152069,11.70072147,25.83273543,,,,,,,,,,,,,18.39462604,12.12217447,26.76321514,,,,17.89473684,,1900,,,28,6,0.615458664,10869,17660,,,0.546,,,,,20.66461493,,,,,0.785358678,6941,8838,0.756939652,0.813777705,0.102271317,824,8057,0.076914654,0.12762798,0.711586332,6289,8838,0.678788262,0.744384401,21476,,,,,0.179549264,3856,21476,,,0.254283852,5461,21476,,,0.009359285,201,21476,,,0.003259452,70,21476,,,0.002467871,53,21476,,,0.000931272,20,21476,,,0.016716335,359,21476,,,0.958558391,20586,21476,,,0,0,20719,0,0.005750709,0.493946731,10608,21476,,,0.983083055,21211,21576,, -51,171,51171,VA,Shenandoah County,2024,1,7797.833374,731,119515,6850.161275,8745.505472,0,,,,2,,,,2,,,,2,5854.124751,3410.243399,9373.020824,1,8091.560018,7026.920146,9156.199891,,,,,2,,0.168,,,0.141,0.199,3.952086567,,,3.12553689,4.82224105,5.379276849,,,4.368957713,6.447477978,0.078455039,260,3314,0.069300247,0.087609832,0,,,,,,,0.127659575,0.060197166,0.195121983,0.069135803,0.04442862,0.093842985,0.078725742,0.068625121,0.088826362,,,,,,,0.178,,,0.14,0.221,0.379,,,0.307,0.455,8.4,0.03198842,0.102,,,0.247,,,0.199,0.301,0.622821708,27520,44186,,,0.157874964,,,0.124435792,0.195184892,0.3125,10,32,0.219087806,0.407096383,241.3,108,44752,,,20.2991453,171,8424,17.256609,23.3416816,,,,,,,,,,26.06429192,17.58546831,37.20839739,19.78120785,16.40661088,23.15580482,,,,,,,0.095303788,3316,34794,0.082197405,0.108410171,0.000335181,15,44752,,,2983.466667,0.000333571,15,44968,,,2997.866667,0.000733855,33,44968,,,1362.666667,2731,,,,,,,,,2775,0.4,,,,,,0.36,0.35,0.24,0.41,0.37,,,,,,0.4,0.31,0.29,0.37,0.88567724,28006,31621,0.865703233,0.905651247,0.536180905,5335,9950,0.475332076,0.597029733,0.02808607,620,22075,,,0.148,1369,,0.101531915,0.194468085,,,,,,,0.506535948,0.238953064,0.774118831,0.257922535,0.135579041,0.380266029,0.186869385,0.132408644,0.241330126,4.068124153,117044,28771,3.576806731,4.559441574,0.254239084,2399,9436,0.197912311,0.310565858,14.07758313,63,44752,,,83.56355168,183,218995,71.45624852,95.67085484,,,,,,,,,,,,,88.14871948,74.81910963,101.4783293,,,,7.1,,,,,1,,,,,0.13654504,2395,17540,0.108999901,0.164090179,0.115439702,0.088980782,0.141898622,0.012542759,0.006433414,0.018652105,0.012827822,0.004692916,0.020962728,0.774316967,15786,20387,0.74922583,0.799408104,,,,,,,,,,0.75462963,0.611543959,0.8977153,0.787385958,0.748305478,0.826466438,0.444,,20387,0.400482085,0.487517915,76.87930889,,,76.10570057,77.6529172,,,,,,,,,,82.96161842,76.52693845,89.3962984,76.56472142,75.7261759,77.40326694,,,,405.0703794,731,119515,373.5388456,436.6019132,,,,,,,,,,261.5326559,155.0008269,413.3343498,414.3702563,380.2768924,448.4636201,,,,37.06907204,15,40465,20.74727822,61.13979704,,,,,,,,,,,,,34.33637158,17.14059298,61.43725344,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.118,,,0.1,0.137,0.175,,,0.15,0.202,0.098,,,0.083,0.116,86.7,33,38077,,,0.102,4480,,,,0.03198842,1343.289703,41993,,,23.43637779,31,132273,15.92388165,33.26606753,,,,,,,,,,,,,22.6696079,14.80854053,33.21622802,,,,0.355,,,0.337,0.371,0.111974872,2852,25470,0.095294021,0.128655724,0.051365675,504,9812,0.035876313,0.066855036,0.000644903,29,44968,,,1550.62069,0.95,456,480,,,0.092576029,207,2236,0.039931071,0.145220986,2.696762974,,,,,,,,2.404028667,2.749790601,,,,,,,,,,,0.022952626,,,,,764.7559,,,,,0.818941883,42119,51431,0.722872915,0.915010852,65289,,,57034.3617,73543.6383,,,,,,,33964,15304.08511,52623.91489,48348,41042.97872,55653.02128,64318,57303.70213,71332.29787,,,,,,0.566930693,2863,5050,,,48.57808541,,,,,0.229318875,,65289,,,9.466437177,22,2324,,,,,,,,,,,,,,,,,,,,,,,,,,17.65857546,41,218995,12.43326675,24.34002017,18.72188863,,,,,,,,,,,,,18.79754412,12.93936444,26.3987408,,,,14.61220576,32,218995,9.994737922,20.62807465,,,,,,,,,,,,,16.26553752,11.0516436,23.08763216,,,,14.73670422,45,305360,10.74905318,19.71886969,,,,,,,,,,,,,15.74059499,11.34443635,21.27671171,,,,43.57142857,,4200,,,132,51,0.716286103,23684,33065,,,0.628,,,,,46.59778664,,,,,0.727682134,12765,17542,0.706880919,0.748483349,0.118612173,2017,17005,0.096158451,0.141065895,0.817865694,14347,17542,0.791323215,0.844408173,44968,,,,,0.21037182,9460,44968,,,0.223937022,10070,44968,,,0.027019214,1215,44968,,,0.005292653,238,44968,,,0.01234211,555,44968,,,0.000756093,34,44968,,,0.087061911,3915,44968,,,0.852294965,38326,44968,,,0.015181944,635,41826,0.008384234,0.021979655,0.505314891,22723,44968,,,0.696193364,30762,44186,, -51,173,51173,VA,Smyth County,2024,1,12359.61689,786,80719,10867.87608,13851.35771,0,,,,2,,,,2,,,,2,,,,2,12930.6968,11327.85385,14533.53976,,,,,2,,0.197,,,0.166,0.23,4.591881353,,,3.703962078,5.60553636,6.156257604,,,5.03311048,7.35329412,0.091476092,176,1924,0.078594322,0.104357861,0,,,,,,,,,,,,,0.091356674,0.078148742,0.104564606,,,,,,,0.218,,,0.175,0.264,0.399,,,0.325,0.479,7.6,0.011493941,0.146,,,0.277,,,0.224,0.33,0.788087248,23485,29800,,,0.147460503,,,0.117043641,0.182046442,0.214285714,6,28,0.11834453,0.322712758,173,51,29477,,,27.49662618,163,5928,23.2753703,31.71788206,,,,,,,,,,,,,30.535855,25.72856517,35.34314484,,,,,,,0.0902326,2025,22442,0.077126217,0.103338983,0.000508871,15,29477,,,1965.133333,0.000543312,16,29449,,,1840.5625,0.002037421,60,29449,,,490.8166667,2914,,,,,,,,,2935,0.4,,,,,,,,,0.4,0.43,,,,,,,0.2,,0.43,0.847008076,18458,21792,0.827216087,0.866800066,0.487098235,3228,6627,0.427679442,0.546517027,0.031763579,431,13569,,,0.235,1298,,0.157553192,0.312446809,,,,,,,0.050632911,0,0.593204971,0.36036036,0.071391382,0.649329339,0.237708091,0.17662841,0.298787772,4.764231426,92145,19341,4.291046084,5.237416767,0.348023785,1990,5718,0.265005708,0.431041861,9.159683821,27,29477,,,118.7010524,179,150799,101.3116713,136.0904335,,,,,,,,,,,,,125.8270655,107.3420364,144.3120946,,,,6.8,,,,,0,,,,,0.107128791,1360,12695,0.087691324,0.126566257,0.089120835,0.068453515,0.109788156,0.014572666,0.007327979,0.021817354,0.008192202,0.003280735,0.013103669,0.813329907,9494,11673,0.788973619,0.837686195,,,,,,,,,,,,,0.801716655,0.767666681,0.835766629,0.324,,11673,0.272724411,0.375275589,72.22002532,,,71.18155477,73.25849587,,,,,,,,,,,,,71.72406634,70.63325664,72.81487605,,,,636.3113197,786,80719,588.2722277,684.3504117,,,,,,,,,,,,,655.3682588,605.0036991,705.7328185,,,,62.81160444,16,25473,35.90225907,102.0021105,,,,,,,,,,,,,68.89424733,39.37901504,111.8799414,,,,10.27749229,20,1946,6.277759294,15.87275329,,,,,,,,,,,,,10.80497029,6.599956556,16.68740027,,,,,,,0.136,,,0.115,0.157,0.196,,,0.169,0.225,0.108,,,0.091,0.125,148.1,38,25651,,,0.146,4370,,,,0.011493941,370.1968462,32208,,,28.99488129,26,89671,18.94041911,42.48421907,,,,,,,,,,,,,29.76119616,19.25987697,43.93339646,,,,0.372,,,0.355,0.39,0.106661942,1806,16932,0.089981091,0.123342793,0.040854701,239,5850,0.027748318,0.053961084,0.002173249,64,29449,,,460.140625,0.92,305.44,332,,,,,,,,3.086765446,,,,,,,,,3.099208978,,,,,,,,,,,0.037414186,,,,,224.3936,,,,,0.816111586,37271,45669,0.701799606,0.930423565,45484,,,39177.44681,51790.55319,,,,,,,53365,26419.46809,80310.53192,28476,5761.446809,51190.55319,45052,41060.51064,49043.48936,,,,,,0.807901235,3272,4050,,,42.76741006,,,,,0.274316243,,45484,,,6.545454546,9,1375,,,6.562571778,14,213331,3.587819059,11.01088033,,,,,,,,,,,,,6.991714818,3.822435552,11.73090943,,,,24.51456323,40,150799,17.0752915,34.09382308,26.52537484,,,,,,,,,,,,,26.23085202,18.27074953,36.48076532,,,,26.52537484,40,150799,18.95011667,36.12003194,,,,,,,,,,,,,28.27574507,20.20060683,38.50353939,,,,14.53140894,31,213331,9.873387355,20.62617505,,,,,,,,,,,,,15.48165424,10.51903294,21.97497241,,,,10,,2800,,,15,13,0.583288632,14136,24235,,,0.603,,,,,29.43787354,,,,,0.684451822,8659,12651,0.657560764,0.71134288,0.107397169,1282,11937,0.083673671,0.131120666,0.77709272,9831,12651,0.752082363,0.802103077,29449,,,,,0.190770485,5618,29449,,,0.230364359,6784,29449,,,0.020238378,596,29449,,,0.002139292,63,29449,,,0.006180176,182,29449,,,0.000203742,6,29449,,,0.024584876,724,29449,,,0.935345852,27545,29449,,,0.006813951,194,28471,0.001921724,0.011706178,0.504737003,14864,29449,,,0.755671141,22519,29800,, -51,175,51175,VA,Southampton County,2024,1,9548.787821,319,48613,7607.4383,11490.13734,0,,,,2,,,,2,12067.39482,8075.424855,16059.36478,,,,,2,8466.766904,6181.768665,10751.76514,,,,,2,,0.168,,,0.144,0.196,3.710660478,,,2.983804745,4.584155412,5.308244745,,,4.325674811,6.418808506,0.107579462,88,818,0.086345605,0.128813319,0,,,,,,,0.16254417,0.119557925,0.205530414,,,,0.078431373,0.055097881,0.101764864,,,,,,,0.17,,,0.138,0.205,0.377,,,0.302,0.456,9,0.050980481,0.063,,,0.231,,,0.188,0.277,0.198877528,3579,17996,,,0.160893915,,,0.128227586,0.197030427,0.3,9,30,0.20331993,0.398927246,422.1,76,18006,,,10.70791196,36,3362,7.499689892,14.82426368,,,,,,,15.58441558,9.236312364,24.63009547,,,,8.355091384,4.775656634,13.56814496,,,,,,,0.080278679,1014,12631,0.068363786,0.092193573,0.000222148,4,18006,,,4501.5,0.000111533,2,17932,,,8966,,0,17932,,,,3923,,,,,,,4451,,3586,0.47,,,,,,,0.49,,0.46,0.46,,,,,,,0.37,,0.49,0.867784829,11486,13236,0.843678094,0.891891564,0.564289573,2089,3702,0.473074742,0.655504405,0.028140477,250,8884,,,0.201,656,,0.12712766,0.27487234,,,,,,,0.329059829,0.161481732,0.496637926,,,,0.058093347,0.020479502,0.095707192,4.148379799,124692,30058,3.266021078,5.03073852,0.379350014,1319,3477,0.281132159,0.47756787,11.66277907,21,18006,,,72.22742611,64,88609,55.62391918,92.23281067,,,,,,,72.35176111,45.34246349,109.5414358,,,,70.29356814,49.74391248,96.48341427,,,,7.5,,,,,0,,,,,0.105740181,700,6620,0.073560049,0.137920313,0.068288973,0.044959842,0.091618104,0.019486405,0.004871474,0.034101336,0.021148036,0,0.042531738,0.802398265,6290,7839,0.76685258,0.837943951,,,,,,,0.899511514,0.846618181,0.952404848,,,,0.745091164,0.663939003,0.826243325,0.484,,7839,0.412391589,0.555608412,76.1861283,,,74.65251405,77.71974254,,,,,,,74.26631627,71.32531912,77.20731341,,,,77.162637,75.30714602,79.01812799,,,,431.4399553,319,48613,379.2741601,483.6057504,,,,,,,484.7109078,384.8590402,584.5627753,,,,405.3740561,342.172158,468.5759542,,,,89.77280575,13,14481,47.80023818,153.5142319,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.111,,,0.096,0.127,0.167,,,0.144,0.19,0.109,,,0.093,0.126,261.1,41,15702,,,0.063,1130,,,,0.050980481,946.7075329,18570,,,,,,,,,,,,,,,,,,,,,,,,,,0.365,,,0.352,0.378,0.090870307,852,9376,0.075380946,0.106359669,0.051103368,176,3444,0.035614007,0.06659273,0.000334597,6,17932,,,2988.666667,0.9,190.8,212,,,,,,,,3.194122002,,,,,,,2.92064753,,3.439099447,,,,,,,,,,,0.016980982,,,,,198.6016,,,,,0.734539217,47106,64130,0.641558753,0.827519681,61246,,,52244.29787,70247.70213,,,,,,,43520,40974.97872,46065.02128,,,,81533,72705.25532,90360.74468,,,,,,0.471923077,1227,2600,,,17.61389475,,,,,0.295382556,,61246,,,6.150061501,5,813,,,,,,,,,,,,,,,,,,,,,,,,,,12.12024712,14,88609,6.262708549,21.17163256,15.79974946,,,,,,,,,,,,,19.53910879,10.09614263,34.13089088,,,,16.92830299,15,88609,9.474642681,27.92066141,,,,,,,,,,,,,20.34813815,10.15771725,36.40843988,,,,20.83750751,26,124775,13.61175173,30.53177646,,,,,,,30.0724051,16.01228918,51.42472858,,,,14.4668315,7.221790162,25.88515771,,,,,,1600,,,15,-888,0.68409647,9786,14305,,,0.576,,,,,6.170289698,,,,,0.769624324,5265,6841,0.731612144,0.807636504,0.11554033,742,6422,0.082159076,0.148921584,0.818301418,5598,6841,0.784099762,0.852503074,17932,,,,,0.184474682,3308,17932,,,0.221726522,3976,17932,,,0.330470667,5926,17932,,,0.006413116,115,17932,,,0.005520857,99,17932,,,0.00089226,16,17932,,,0.025819764,463,17932,,,0.614989962,11028,17932,,,0.000991485,17,17146,0,0.006864996,0.479143431,8592,17932,,,0.982440542,17680,17996,, -51,177,51177,VA,Spotsylvania County,2024,1,7311.565154,1651,394411,6791.272106,7831.858201,0,,,,2,,,,2,7527.819588,6195.5103,8860.128876,,3753.441486,2757.887624,4991.281474,,8037.250948,7351.923014,8722.578882,,,,,2,,0.146,,,0.125,0.17,3.442324659,,,2.73923485,4.186254863,4.926005096,,,4.077223577,5.836295228,0.077539368,842,10859,0.072509041,0.082569695,0,,,,0.114035088,0.080347452,0.147722723,0.120718697,0.10558743,0.135849965,0.077958497,0.065513713,0.090403281,0.064033513,0.058164411,0.069902615,,,,0.080168776,0.045595654,0.114741898,0.137,,,0.107,0.167,0.359,,,0.298,0.421,9.1,0.049793042,0.058,,,0.214,,,0.176,0.256,0.844185615,118213,140032,,,0.172063647,,,0.139506984,0.20810315,0.320512821,25,78,0.262403399,0.379104962,324.3,466,143676,,,12.49765669,400,32006,11.27288633,13.72242705,,,,,,,16.15508885,12.9905992,19.85734694,22.81021898,18.33941606,27.2810219,9.926203097,8.518462794,11.3339434,,,,9.259259259,5.393859733,14.82497103,0.083355829,10190,122247,0.072632425,0.094079233,0.000480247,69,143676,,,2082.26087,0.000449935,66,146688,,,2222.545455,0.001152105,169,146688,,,867.9763314,4475,,,,,,,6095,,4374,0.41,,,,,,0.17,0.44,0.26,0.42,0.41,,,,,,0.46,0.34,0.25,0.43,0.910277031,86023,94502,0.90057218,0.919981882,0.676059054,24545,36306,0.640248674,0.711869433,0.029493432,2050,69507,,,0.101,3514,,0.067638298,0.134361702,0.195652174,0,0.757389438,0.136243386,0.013119841,0.259366931,0.236327418,0.160230982,0.312423853,0.154629961,0.104031931,0.20522799,0.058039175,0.037653779,0.078424571,3.81130757,179989,47225,3.580975667,4.041639473,0.185348198,6401,34535,0.155172061,0.215524334,6.194493165,89,143676,,,77.01159987,528,685611,70.44266047,83.58053928,,,,,,,62.78907293,49.03878689,79.19987186,24.40380157,14.46323944,38.56852759,93.16551821,84.29746384,102.0335726,,,,8,,,,,0,,,,,0.115473441,5250,45465,0.100867331,0.130079551,0.09642343,0.082435265,0.110411596,0.019685472,0.014456254,0.024914691,0.004069064,0.001874933,0.006263195,0.727563551,50717,69708,0.707294062,0.74783304,,,,0.694369973,0.530425354,0.858314592,0.634968521,0.574776821,0.69516022,0.630047764,0.543704581,0.716390947,0.70546875,0.669576331,0.74136117,0.496,,69708,0.467779052,0.524220948,78.79555475,,,78.27961411,79.31149539,,,,88.55904635,84.90286111,92.21523159,79.34881137,77.84589128,80.85173146,83.05226759,80.68753386,85.41700132,77.94092631,77.32561165,78.55624098,,,,343.1323058,1651,394411,326.110019,360.1545926,,,,,,,337.7377643,295.9647744,379.5107542,180.2772032,134.6396382,236.4095673,371.7243552,350.2554323,393.193278,,,,48.53452692,72,148348,37.97527819,61.12120423,,,,,,,70.88354251,41.29227565,113.4914182,,,,49.45996618,35.79442277,66.62224987,,,,5.257817545,57,10841,3.982219663,6.812112481,,,,,,,,,,,,,3.501604902,2.243544333,5.210110533,,,,,,,0.1,,,0.086,0.116,0.155,,,0.134,0.177,0.094,,,0.08,0.109,197.5,236,119487,,,0.058,8050,,,,0.049793042,6094.518919,122397,,,36.09504231,151,418340,30.33779146,41.85229317,,,,,,,17.01283051,8.790777782,29.71799114,,,,46.74586683,38.64755857,54.84417508,,,,0.34,,,0.326,0.352,0.097188544,8497,87428,0.084082161,0.110294927,0.049840325,1826,36637,0.036733942,0.062946708,0.000899869,132,146688,,,1111.272727,0.87,1612.11,1853,,,0.043290627,321,7415,0.02516974,0.061411515,3.167759908,,,,,,,2.770920065,2.889466995,3.401550469,,,,,,,,,,,0.035257193,,,,,-188.958,,,,,0.721698239,54022,74854,0.670597825,0.772798654,96322,,,88829.91489,103814.0851,,,,103587,66310.06383,140863.9362,87963,76343.59575,99582.40426,95114,74053.23404,116174.766,111633,105509.9362,117756.0638,,,,,,0.391165335,9298,23770,,,24.87754038,,,,,0.239633729,,96322,,,5.978715772,50,8363,,,3.375185635,32,948096,2.308624476,4.764755054,,,,,,,7.802340702,4.031583296,13.62911902,,,,2.982029349,1.795376468,4.65680822,,,,11.06899127,76,685611,8.691538916,13.89610491,11.08500301,,,,,,,,,,,,,14.47192158,11.14514305,18.48032077,,,,8.022041653,55,685611,6.043299622,10.44178987,,,,,,,8.843531399,4.24081705,16.26356911,,,,9.008929827,6.464963584,12.22163057,,,,12.55147158,119,948096,10.29631222,14.80663095,,,,,,,20.80624187,14.23145404,29.37220551,,,,12.39896414,9.816376671,15.45280878,,,,10.1242236,,16100,,,124,39,0.769797629,75317,97840,,,0.736,,,,,50.87796395,,,,,0.78905539,39018,49449,0.772698552,0.805412229,0.110782502,5394,48690,0.097140854,0.124424149,0.938360735,46401,49449,0.926113652,0.950607819,146688,,,,,0.241055846,35360,146688,,,0.153461769,22511,146688,,,0.175719895,25776,146688,,,0.005106076,749,146688,,,0.031188645,4575,146688,,,0.001799738,264,146688,,,0.126520233,18559,146688,,,0.629281196,92308,146688,,,0.016040081,2129,132730,,,0.502624618,73729,146688,,,0.320405336,44867,140032,, -51,179,51179,VA,Stafford County,2024,1,5839.871282,1388,451596,5402.432537,6277.310027,0,,,,2,4282.722033,2397.007011,7063.698697,1,7241.870519,6126.278925,8357.462114,,3880.989687,3031.085144,4895.340408,,5824.709648,5254.553389,6394.865907,,,,,2,,0.129,,,0.109,0.151,3.121807382,,,2.441322121,3.844245967,4.558000306,,,3.729025462,5.431943125,0.078622692,975,12401,0.073885506,0.083359878,0,,,,0.080827068,0.057665002,0.103989133,0.117879747,0.105309291,0.130450203,0.074815137,0.064060504,0.08556977,0.06409675,0.058194404,0.069999095,,,,0.072423398,0.04561177,0.099235027,0.118,,,0.093,0.146,0.375,,,0.314,0.439,9.5,0.043266486,0.043,,,0.191,,,0.155,0.229,0.831303727,130454,156927,,,0.1927829,,,0.157499381,0.23150375,0.291666667,14,48,0.216265193,0.369095517,377.3,607,160877,,,9.04733834,353,39017,8.103517526,9.991159153,,,,,,,8.125886754,6.244154495,10.39653905,14.7972773,11.89701095,17.69754365,8.19552883,6.959895252,9.431162407,,,,8.424599832,5.145964442,13.01111116,0.059410616,8304,139773,0.05226168,0.066559552,0.000261069,42,160877,,,3830.404762,0.000355001,58,163380,,,2816.896552,0.00104664,171,163380,,,955.4385965,4086,,,,,,,4715,4100,4209,0.4,,,,,,0.3,0.4,0.27,0.41,0.44,,,,,,0.44,0.36,0.33,0.45,0.928968207,94320,101532,0.919571727,0.938364687,0.725105353,31144,42951,0.686554527,0.763656178,0.028728727,2176,75743,,,0.067,2812,,0.041978723,0.092021277,,,,0.127192983,0.040043841,0.214342124,0.101803772,0.05633603,0.147271513,0.140637041,0.082030904,0.199243177,0.019479199,0.00972821,0.029230187,3.492957062,215491,61693,3.250858473,3.73505565,0.153237007,6289,41041,0.128055713,0.178418301,5.345698888,86,160877,,,52.79514441,405,767116,47.65325725,57.93703157,,,,,,,48.43553231,37.75787362,61.19538121,23.03425655,14.90655633,34.00310658,63.92466588,56.56724604,71.28208573,,,,8.1,,,,,0,,,,,0.095618771,4605,48160,0.083165862,0.10807168,0.08034188,0.068446159,0.092237601,0.01733804,0.010750045,0.023926035,0.002699336,0.000720392,0.004678279,0.673795364,53025,78696,0.652500318,0.695090411,,,,0.722897938,0.629334808,0.816461067,0.631000093,0.573869385,0.688130801,0.601786681,0.523716228,0.679857134,0.688243147,0.668985621,0.707500672,0.543,,78696,0.514058824,0.571941176,79.42592508,,,78.95551334,79.89633683,,,,86.91019317,82.58852208,91.23186426,77.19929542,76.01549741,78.38309343,83.35408652,80.94990656,85.75826648,79.28775803,78.7210298,79.85448626,,,,288.480639,1388,451596,273.1403004,303.8209776,,,,169.6378601,113.6091373,243.6282641,352.7572448,311.8478755,393.6666142,195.539716,152.9977849,246.2499106,294.5289286,275.1225835,313.9352738,,,,45.24375071,80,176820,35.87548048,56.30976415,,,,,,,53.97139516,31.9868693,85.29807282,39.46689335,21.01445852,67.4895896,39.54653309,27.69790559,54.74907119,,,,5.817764667,71,12204,4.543722473,7.338318511,,,,,,,8.950366151,5.609146815,13.55096192,,,,4.284869976,2.869644672,6.153788038,,,,,,,0.089,,,0.076,0.104,0.146,,,0.125,0.168,0.091,,,0.078,0.106,187.6,248,132183,,,0.043,6640,,,,0.043266486,5579.689353,128961,,,23.80410918,112,470507,19.39552647,28.2126919,,,,,,,24.22080567,15.17904996,36.67059086,,,,30.10223748,23.94120279,37.36481384,,,,0.363,,,0.35,0.376,0.070308352,6886,97940,0.059584948,0.081031756,0.035472282,1560,43978,0.025940367,0.045004197,0.000569225,93,163380,,,1756.774194,0.93,2322.21,2497,,,0.071041275,642,9037,0.045098873,0.096983677,3.19013548,,,,,,,2.97464321,2.93563404,3.390151013,,,,,,,,,,,0.031174731,,,,,16.53418,,,,,0.725812778,62912,86678,0.673419168,0.778206389,134456,,,126806.6383,142105.3617,,,,99235,69682.48936,128787.5106,139227,129851.1702,148602.8298,102742,84987.61702,120496.383,130390,125216.5532,135563.4468,,,,,,0.327512834,9697,29608,,,31.91999295,,,,,0.190225799,,134456,,,6.093152949,59,9683,,,3.512169192,37,1053480,2.472891234,4.841062587,,,,,,,9.26803147,5.492822826,14.64748541,,,,2.361401476,1.32165848,3.894772624,,,,12.36382514,94,767116,9.954580754,15.18003751,12.25368784,,,,,,,12.20052284,6.496264574,20.86326563,,,,14.8563606,11.48990821,18.90093329,,,,8.864369926,68,767116,6.883530099,11.2377011,,,,,,,13.83872352,8.453051844,21.37278608,,,,9.037625177,6.485555862,12.26055905,,,,6.26495045,66,1053480,4.845312224,7.970553066,,,,,,,,,,6.991149205,3.352527787,12.8569723,6.139643838,4.365886957,8.393095241,,,,12.61538462,,19500,,,131,115,0.76305879,79629,104355,,,0.779,,,,,65.96154808,,,,,0.795897681,40044,50313,0.777489288,0.814306073,0.084804306,4223,49797,0.072208629,0.097399982,0.958837676,48242,50313,0.949470911,0.968204441,163380,,,,,0.258966826,42310,163380,,,0.115889338,18934,163380,,,0.205055698,33502,163380,,,0.008881136,1451,163380,,,0.041914555,6848,163380,,,0.002050435,335,163380,,,0.162694332,26581,163380,,,0.543830334,88851,163380,,,0.025810292,3816,147848,0.020799173,0.030821411,0.492183866,80413,163380,,,0.186468868,29262,156927,, -51,181,51181,VA,Surry County,2024,1,8784.979128,126,17490,5883.450247,11686.50801,0,,,,2,,,,2,10859.01136,6325.774281,17386.32911,1,,,,2,7938.212375,4442.957206,13092.87411,1,,,,2,,0.193,,,0.165,0.224,4.0369675,,,3.239641452,4.934046738,5.379308585,,,4.331049299,6.496486282,0.095671982,42,439,0.068156369,0.123187595,0,,,,,,,0.15862069,0.099157541,0.218083838,,,,0.057761733,0.030288064,0.085235402,,,,,,,0.188,,,0.151,0.227,0.419,,,0.337,0.507,8.3,0.07827675,0.085,,,0.26,,,0.212,0.309,0.099832343,655,6561,,,0.140899593,,,0.111152993,0.173947975,0,0,8,0,0.234018599,413.5,27,6530,,,16.36363636,18,1100,9.698127982,25.86160024,,,,,,,20.28397566,9.726954759,37.30295343,,,,,,,,,,,,,0.090119884,436,4838,0.075822012,0.104417757,0.000153139,1,6530,,,6530,,0,6527,,,,0.000612839,4,6527,,,1631.75,3468,,,,,,,6184,,1644,0.52,,,,,,,0.55,,0.5,0.45,,,,,,,0.46,,0.45,0.876232642,4354,4969,0.835875914,0.916589371,0.582781457,792,1359,0.48147299,0.684089924,0.029639889,107,3610,,,0.192,208,,0.11812766,0.26587234,,,,,,,0.410752688,0.228414631,0.593090745,,,,0.122287968,0,0.265273212,5.223149372,126442,24208,3.849255975,6.597042769,0.319783198,354,1107,0.181936094,0.457630301,15.31393568,10,6530,,,89.64174214,29,32351,60.03448159,128.7404947,,,,,,,,,,,,,104.6329129,62.01209545,165.3651123,,,,7.2,,,,,0,,,,,0.114490161,320,2795,0.073462217,0.155518105,0.091365102,0.048567794,0.13416241,0.024686941,0.001822312,0.04755157,0,0,0.010851652,0.811990877,2492,3069,0.759634319,0.864347434,,,,,,,0.711711712,0.591996011,0.831427413,,,,0.830202312,0.743591872,0.916812752,0.659,,3069,0.532488739,0.785511261,76.82421962,,,74.62612633,79.02231291,,,,,,,76.20527841,72.53531939,79.87523743,,,,76.72378344,73.80105484,79.64651205,,,,420.141327,126,17490,334.6637385,505.6189154,,,,,,,476.0904122,333.4478717,659.1098091,,,,397.2167158,298.4014222,518.2816504,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.121,,,0.104,0.139,0.175,,,0.15,0.2,0.124,,,0.106,0.143,243.2,14,5756,,,0.085,560,,,,0.07827675,552.4773047,7058,,,,,,,,,,,,,,,,,,,,,,,,,,0.388,,,0.372,0.402,0.099761842,377,3779,0.083080991,0.116442693,0.058191585,65,1117,0.040319244,0.076063925,,0,6527,,,,,,,,,,,,,,3.283303353,,,,,,,3.269351427,,3.14851675,,,,,,,,,,,0.002492183,,,,,-4726.307,,,,,0.810646291,51138,63083,0.521737446,1.099555137,65339,,,56869.89362,73808.10638,,,,,,,57404,38649.95745,76158.04255,100598,87286.68085,113909.3192,84688,65256,104120,,,,,,0.679389313,445,655,,,5.370740509,,,,,0.248243775,,65339,,,3.289473684,1,304,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,30.69906149,14,45604,16.78346258,51.50780879,,,,,,,,,,,,,,,,,,,,,500,,,-888,-888,0.85815739,4471,5210,,,0.615,,,,,0.823195162,,,,,0.779234973,2139,2745,0.760228464,0.798241482,0.103132162,270,2618,0.058668978,0.147595346,0.741347905,2035,2745,0.686202489,0.796493321,6527,,,,,0.16791788,1096,6527,,,0.254941014,1664,6527,,,0.383790409,2505,6527,,,0.005362341,35,6527,,,0.005668761,37,6527,,,0.000459629,3,6527,,,0.030488739,199,6527,,,0.552780757,3608,6527,,,0.002249719,14,6223,0,0.015167604,0.497625249,3248,6527,,,1,6561,6561,, -51,183,51183,VA,Sussex County,2024,1,12232.75752,278,30380,9592.119494,14873.39555,0,,,,2,,,,2,11851.79901,8279.597842,15424.00018,,,,,2,13958.33448,9235.638576,18681.03038,,,,,2,,0.212,,,0.183,0.245,4.178974986,,,3.350738864,5.151873893,5.30451243,,,4.259104254,6.464431275,0.128289474,78,608,0.101707579,0.154871369,0,,,,,,,0.165540541,0.123199159,0.207881922,,,,0.093425606,0.059871796,0.126979415,,,,,,,0.204,,,0.168,0.245,0.423,,,0.344,0.507,7.9,0.137956469,0.071,,,0.293,,,0.245,0.346,0.271770247,2943,10829,,,0.168199557,,,0.134366691,0.207434417,0.25,11,44,0.171757275,0.333210138,594.6,64,10763,,,20.24035421,32,1581,13.84438729,28.57334097,,,,,,,24.91103203,15.42032145,38.07915864,,,,17.6056338,8.442585733,32.3773874,,,,,,,0.086006064,539,6267,0.071708191,0.100303936,0.000278733,3,10763,,,3587.666667,0.000187266,2,10680,,,5340,0.000187266,2,10680,,,5340,4401,,,,,,,6191,,2890,0.43,,,,,,,0.5,,0.39,0.43,,,,,,,0.4,,0.45,0.813440321,6488,7976,0.778734342,0.8481463,0.462992631,1445,3121,0.386730732,0.539254529,0.042443904,157,3699,,,0.3,500,,0.198723404,0.401276596,,,,,,,0.130099228,0.054058861,0.206139595,0.297297297,0,0.854752225,0.306870229,0.169906442,0.443834016,4.432643099,112598,25402,3.725694661,5.139591537,0.407114625,721,1771,0.261636195,0.552593054,13.93663477,15,10763,,,122.6175235,68,55457,95.21730485,155.4469285,,,,,,,97.32991597,65.66808559,138.944507,,,,157.34913,108.9688467,219.8796376,,,,7.6,,,,,0,,,,,0.12005277,455,3790,0.07896608,0.161139461,0.102639296,0.062514625,0.142763967,0.015831135,0,0.033184568,0.006596306,0,0.014619144,0.863478059,3719,4307,0.835863548,0.89109257,,,,,,,0.701754386,0.59452499,0.808983782,,,,0.849164678,0.783674805,0.914654551,0.649,,4307,0.536601434,0.761398567,72.35033155,,,70.45708684,74.24357625,,,,,,,72.23284622,69.70516518,74.76052725,,,,71.68928263,68.49145168,74.88711359,,,,651.3206014,278,30380,570.9846313,731.6565715,,,,,,,672.2325549,558.9934709,785.471639,,,,655.8424015,529.5905383,782.0942646,,,,134.0302909,10,7461,64.27273417,246.4864769,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.124,,,0.108,0.143,0.167,,,0.146,0.192,0.132,,,0.114,0.153,572.1,55,9615,,,0.071,780,,,,0.137956469,1667.479844,12087,,,,,,,,,,,,,,,,,,,,,,,,,,0.421,,,0.407,0.436,0.100656919,475,4719,0.082784578,0.118529259,0.043504902,71,1632,0.02920703,0.057802774,0.000280899,3,10680,,,3560,0.775,59.675,77,,,,,,,,2.993502173,,,,,,,2.885822598,,,,,,,,,,,,,0.006287866,,,,,-11095.51,,,,,1.091178082,49785,45625,0.880483715,1.30187245,49340,,,42281.61702,56398.38298,,,,,,,59421,46716.14894,72125.85106,,,,59621,39644.48936,79597.51064,,,,,,0.957948718,934,975,,,23.95502684,,,,,0.32873936,,49340,,,11.46788991,5,436,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,41.94417612,33,78676,28.87244086,58.90521794,,,,,,,47.72184979,29.54057717,72.94791668,,,,36.01951603,17.98081262,64.44886379,,,,,,700,,,13,-888,0.541853035,5088,9390,,,0.532,,,,,14.66413926,,,,,0.694429421,2568,3698,0.643033102,0.745825741,0.119542924,408,3413,0.07381416,0.165271688,0.786641428,2909,3698,0.737400261,0.835882594,10680,,,,,0.158333333,1691,10680,,,0.190449438,2034,10680,,,0.528838951,5648,10680,,,0.006460674,69,10680,,,0.005243446,56,10680,,,0.000187266,2,10680,,,0.040262172,430,10680,,,0.408707865,4365,10680,,,0.002400154,25,10416,0,0.011843411,0.41076779,4387,10680,,,1,10829,10829,, -51,185,51185,VA,Tazewell County,2024,1,14596.6783,1124,109548,13196.34017,15997.01643,0,,,,2,,,,2,11175.78065,6109.903277,18751.06094,1,,,,2,14899.38058,13450.93684,16347.82433,,,,,2,,0.19,,,0.159,0.225,4.545036057,,,3.726153044,5.503932238,6.157920461,,,5.187619719,7.270812009,0.099421965,258,2595,0.087908946,0.110934985,0,,,,,,,,,,,,,0.096115338,0.084554225,0.107676452,,,,,,,0.21,,,0.164,0.258,0.364,,,0.298,0.438,7.1,0.082830094,0.137,,,0.264,,,0.215,0.316,0.610601301,24686,40429,,,0.162069555,,,0.131415383,0.197902724,0.371428571,13,35,0.283933479,0.456696423,175.3,70,39925,,,28.21437774,219,7762,24.47753785,31.95121763,,,,,,,,,,,,,28.76291539,24.83506113,32.69076964,,,,,,,0.091764464,2682,29227,0.078658081,0.104870847,0.000475892,19,39925,,,2101.31579,0.000452023,18,39821,,,2212.277778,0.0026368,105,39821,,,379.2476191,3396,,,,,,,,,3385,0.39,,,,,,0.36,0.48,,0.39,0.35,,,,,,0.51,0.27,,0.35,0.863548897,25131,29102,0.837687074,0.88941072,0.500441209,4537,9066,0.442392836,0.558489582,0.042324946,651,15381,,,0.237,1793,,0.157170213,0.316829787,,,,,,,0.490740741,0.364000652,0.61748083,0.651465798,0.472732999,0.830198597,0.246273953,0.198586084,0.293961822,5.142505278,102305,19894,4.228231266,6.05677929,0.290789971,2308,7937,0.227618696,0.353961247,12.02254227,48,39925,,,140.3947803,285,202999,124.0948929,156.6946676,,,,,,,,,,,,,145.6491905,128.4968156,162.8015655,,,,7,,,,,0,,,,,0.114233354,1870,16370,0.088063724,0.140402984,0.096483038,0.072760521,0.120205555,0.009773977,0.004717146,0.014830808,0.010995724,0.00413974,0.017851708,0.856374319,12098,14127,0.842434166,0.870314471,,,,,,,,,,,,,0.865258886,0.837439093,0.89307868,0.321,,14127,0.273789348,0.368210652,71.23462507,,,70.3140695,72.15518065,,,,,,,,,,,,,70.92875101,69.99292237,71.86457964,,,,691.9478359,1124,109548,647.6322457,736.2634261,,,,,,,632.061524,412.8835723,926.1165785,,,,706.8822748,660.5977912,753.1667585,,,,49.27250594,17,34502,28.70305046,78.89005512,,,,,,,,,,,,,47.08245708,26.35169382,77.65535287,,,,8.14211695,22,2702,5.102621344,12.32726291,,,,,,,,,,,,,,,,,,,,,,0.132,,,0.113,0.155,0.192,,,0.164,0.221,0.109,,,0.093,0.127,66.5,23,34598,,,0.137,5550,,,,0.082830094,3733.81496,45078,,,61.13226875,74,121049,48.00197957,76.74596527,,,,,,,,,,,,,63.5873885,49.75321531,80.07779214,,,,0.371,,,0.354,0.388,0.108616309,2351,21645,0.091935458,0.12529716,0.044705295,358,8008,0.031598912,0.057811678,0.001556967,62,39821,,,642.2741936,0.86,342.28,398,,,0.111831443,207,1851,0.043968225,0.17969466,3.3018277,,,,,,,,,3.335651169,,,,,,,,,,,0.061424198,,,,,-2479.82,,,,,0.840359943,42118,50119,0.708926663,0.971793223,48360,,,43619.06383,53100.93617,,,,,,,,,,,,,47137,42792.82979,51481.17021,,,,,,0.662790698,3591,5418,,,62.85072556,,,,,0.23219603,,48360,,,6.490264603,13,2003,,,4.513136699,13,288048,2.403055217,7.717601205,,,,,,,,,,,,,4.814636495,2.56359116,8.233175037,,,,23.69262539,45,202999,17.07556041,32.0255467,22.16759689,,,,,,,,,,,,,24.94737736,17.90266871,33.84393435,,,,17.73407751,36,202999,12.42072986,24.55143843,,,,,,,,,,,,,18.40332732,12.81859178,25.59457332,,,,15.27523191,44,288048,11.09900689,20.50628586,,,,,,,,,,,,,15.55497945,11.21066099,21.02581341,,,,17.2972973,,3700,,,35,29,0.609650582,20152,33055,,,0.54,,,,,19.4179382,,,,,0.726329114,11476,15800,0.704038246,0.748619982,0.09777027,1447,14800,0.074934902,0.120605638,0.837151899,13227,15800,0.81420665,0.860097147,39821,,,,,0.192235253,7655,39821,,,0.237010623,9438,39821,,,0.033977047,1353,39821,,,0.002360564,94,39821,,,0.008814445,351,39821,,,0.000301349,12,39821,,,0.012757088,508,39821,,,0.929258432,37004,39821,,,0.001092498,42,38444,0,0.004565218,0.497576656,19814,39821,,,0.522941453,21142,40429,, -51,187,51187,VA,Warren County,2024,1,9753.675626,693,113703,8618.490896,10888.86036,0,,,,2,,,,2,8054.406932,4603.78949,13079.85225,1,,,,2,10396.53856,9105.364874,11687.71225,,,,,2,,0.157,,,0.131,0.185,3.843629812,,,3.036998708,4.761250377,5.292773099,,,4.280103385,6.410579877,0.069120287,231,3342,0.060520209,0.077720365,0,,,,,,,0.147887324,0.089499016,0.206275632,0.04954955,0.021002306,0.078096793,0.067454798,0.05828831,0.076621287,,,,,,,0.17,,,0.133,0.209,0.363,,,0.289,0.442,8.4,0.054054189,0.089,,,0.231,,,0.187,0.278,0.82208363,33481,40727,,,0.171146731,,,0.13594621,0.209968211,0.238095238,5,21,0.124889996,0.363491167,229.7,94,40925,,,16.85923131,143,8482,14.09594541,19.62251722,,,,,,,37.53351206,20.51992031,62.97485556,,,,16.9142521,13.8228183,20.00568589,,,,,,,0.093797367,3156,33647,0.080690984,0.10690375,0.000586439,24,40925,,,1705.208333,0.000361969,15,41440,,,2762.666667,0.001061776,44,41440,,,941.8181818,3413,,,,,,,6323,,3319,0.35,,,,,,0.22,0.32,0.4,0.36,0.36,,,,,,0.38,0.31,0.11,0.36,0.888415613,25446,28642,0.87144258,0.905388647,0.577869659,5870,10158,0.507934909,0.64780441,0.028680044,596,20781,,,0.116,1009,,0.075489362,0.156510638,,,,,,,0.12,0,0.335759873,0.122529644,0,0.258049089,0.224435196,0.161365633,0.287504759,4.355681818,157153,36080,3.488212126,5.22315151,0.207962107,1844,8867,0.137121802,0.278802411,10.75137447,44,40925,,,98.94098344,199,201130,85.19405234,112.6879145,,,,,,,,,,,,,104.1853573,88.96494197,119.4057727,,,,7.2,,,,,1,,,,,0.132513661,1940,14640,0.10290353,0.162123792,0.096124568,0.071511977,0.120737158,0.029713115,0.012905399,0.046520831,0.011270492,0.00152376,0.021017224,0.725888589,13969,19244,0.69344265,0.758334528,,,,,,,,,,0.64990689,0.394852029,0.904961752,0.719984045,0.688361527,0.751606562,0.583,,19244,0.530049055,0.635950946,75.06557909,,,74.20049537,75.93066281,,,,,,,75.97586215,72.41851478,79.53320952,82.10056169,71.04985344,93.15126994,74.49512365,73.54839271,75.44185459,,,,457.0763935,693,113703,421.0686456,493.0841414,,,,,,,526.9131447,369.0434887,729.4698933,,,,474.1561046,434.5158274,513.7963818,,,,69.1031941,27,39072,45.53944035,100.5415194,,,,,,,,,,,,,79.91560912,51.71716858,117.9712038,,,,7.587253414,25,3295,4.910070364,11.20028276,,,,,,,,,,,,,8.388675288,5.374782543,12.48168389,,,,,,,0.112,,,0.095,0.13,0.171,,,0.147,0.197,0.094,,,0.079,0.111,176.8,61,34506,,,0.089,3620,,,,0.054054189,2031.086149,37575,,,48.53410549,59,121564,36.94640982,62.60545997,,,,,,,,,,,,,53.03044912,39.94979171,69.02641878,,,,0.359,,,0.342,0.375,0.10711392,2644,24684,0.090433069,0.123794771,0.058254491,548,9407,0.040382151,0.076126832,0.000530888,22,41440,,,1883.636364,0.92,390.08,424,,,,,,,,2.933088705,,,,,,,3.04370402,2.594841492,2.993803827,,,,,,,,,,,0.014033535,,,,,1753.65,,,,,0.736144998,50688,68856,0.637109609,0.835180388,79949,,,70712.57447,89185.42553,,,,,,,69273,24171.55319,114374.4468,57231,39714.91489,74747.08511,81891,74398.91489,89383.08511,,,,,,0.485625486,2500,5148,,,47.26416148,,,,,0.202879336,,79949,,,4.508196721,11,2440,,,,,,,,,,,,,,,,,,,,,,,,,,20.19078392,41,201130,14.2882004,27.71342843,20.38482574,,,,,,,,,,,,,22.08469592,15.46784952,30.57452816,,,,13.42415353,27,201130,8.846601766,19.5314386,,,,,,,,,,,,,14.47018852,9.364343052,21.36085276,,,,12.88622892,36,279368,9.02535631,17.83997254,,,,,,,,,,,,,11.19737235,7.379138935,16.29158888,,,,33.33333333,,3900,,,76,54,0.698843358,21147,30260,,,0.705,,,,,56.77595683,,,,,0.741713161,11300,15235,0.713472973,0.769953348,0.122377149,1808,14774,0.093399397,0.151354901,0.902592714,13751,15235,0.886929447,0.918255981,41440,,,,,0.215275097,8921,41440,,,0.176689189,7322,41440,,,0.046525097,1928,41440,,,0.006274131,260,41440,,,0.014333977,594,41440,,,0.001110039,46,41440,,,0.075072394,3111,41440,,,0.829971043,34394,41440,,,0.007052662,272,38567,0.002849586,0.011255737,0.494570463,20495,41440,,,0.602401355,24534,40727,, -51,191,51191,VA,Washington County,2024,1,10387.11368,1103,144829,9294.640388,11479.58696,0,,,,2,,,,2,,,,2,,,,2,10424.58047,9301.344762,11547.81619,,,,,2,,0.159,,,0.131,0.191,3.842513519,,,3.044513522,4.855881446,5.681714581,,,4.665373774,6.8839497,0.086227545,288,3340,0.07670781,0.09574728,0,,,,,,,,,,,,,0.084257206,0.074567535,0.093946878,,,,,,,0.182,,,0.141,0.227,0.374,,,0.306,0.444,8.2,0.014976766,0.117,,,0.241,,,0.195,0.292,0.641512932,34600,53935,,,0.161659537,,,0.130313047,0.197158773,0.325,13,40,0.24222461,0.408131965,190.2,102,53635,,,21.79735846,236,10827,19.01633958,24.57837733,,,,,,,,,,,,,22.02111614,19.10453985,24.93769243,,,,,,,0.084278272,3300,39156,0.072363378,0.096193165,0.000913583,49,53635,,,1094.591837,0.000722784,39,53958,,,1383.538462,0.00233515,126,53958,,,428.2380952,3261,,,,,,,,,3230,0.43,,,,,,,0.53,,0.43,0.5,,,,,,,0.52,,0.5,0.892471249,35930,40259,0.881343057,0.90359944,0.610361304,7281,11929,0.555012329,0.66571028,0.02917802,771,26424,,,0.142,1318,,0.082425532,0.201574468,,,,,,,0.311111111,0,0.910388803,0.11969112,0,0.388351203,0.146825852,0.110036859,0.183614846,4.40694857,112765,25588,4.042811637,4.771085502,0.193336916,1799,9305,0.154644576,0.232029255,10.44094341,56,53635,,,92.64097177,250,269859,81.15707793,104.1248656,,,,,,,,,,,,,93.75680807,81.91957051,105.5940456,,,,7.2,,,,,0,,,,,0.076453291,1690,22105,0.064362693,0.08854389,0.066681891,0.054487847,0.078875935,0.007464375,0.002102662,0.012826087,0.00429767,0.001396849,0.007198491,0.843515177,19869,23555,0.818860197,0.868170158,,,,,,,,,,,,,0.844559586,0.825495417,0.863623754,0.316,,23555,0.285810378,0.346189623,74.95591587,,,74.15411544,75.75771629,,,,,,,,,,,,,74.87506793,74.05647431,75.69366156,,,,488.3889578,1103,144829,456.4308338,520.3470818,,,,,,,,,,,,,491.3247527,458.6015662,524.0479393,,,,70.33625267,31,44074,47.7900712,99.83669625,,,,,,,,,,,,,71.48667636,47.8757491,102.6667918,,,,9.061677872,31,3421,6.15697047,12.86232841,,,,,,,,,,,,,8.610086101,5.721339685,12.44397169,,,,,,,0.113,,,0.096,0.134,0.177,,,0.152,0.205,0.092,,,0.078,0.108,89,42,47167,,,0.117,6340,,,,0.014976766,821.8650355,54876,,,19.24629043,31,161070,13.07692058,27.31857298,,,,,,,,,,,,,18.9056867,12.6614351,27.15171973,,,,0.328,,,0.31,0.345,0.09834306,2932,29814,0.082853699,0.113832422,0.041165166,407,9887,0.029250273,0.05308006,0.001816227,98,53958,,,550.5918367,0.91,498.68,548,,,0.095099819,262,2755,0.034570248,0.15562939,3.513351171,,,,,,,,,3.517457103,,,,,,,,,,,0.042455628,,,,,1189.441,,,,,0.8595729,44317,51557,0.784628002,0.934517798,61686,,,55948.97872,67423.02128,,,,,,,64167,43843.76596,84490.23404,113920,97546.55319,130293.4468,58783,55774.48936,61791.51064,,,,,,0.577180211,3885,6731,,,58.92887461,,,,,0.2224816,,61686,,,10.37735849,22,2120,,,2.904950035,11,378664,1.450140591,5.197758042,,,,,,,,,,,,,,,,,,,22.15828792,63,269859,16.69265491,28.84205747,23.34552489,,,,,,,,,,,,,23.01332984,17.28832166,30.02740342,,,,18.15763047,49,269859,13.43311498,24.00535042,,,,,,,,,,,,,17.89549034,13.10174808,23.87007629,,,,12.14797287,46,378664,8.893842934,16.20369344,,,,,,,,,,,,,12.18819684,8.855962482,16.36208537,,,,11.27659575,,4700,,,33,20,0.653599089,28693,43900,,,0.674,,,,,31.63087885,,,,,0.75173761,16548,22013,0.72753252,0.775942699,0.081726442,1725,21107,0.065698765,0.097754118,0.791123427,17415,22013,0.763670439,0.818576415,53958,,,,,0.174339301,9407,53958,,,0.249286482,13451,53958,,,0.014678083,792,53958,,,0.002427814,131,53958,,,0.006134401,331,53958,,,0.000500389,27,53958,,,0.017773083,959,53958,,,0.949497758,51233,53958,,,0.0021398,111,51874,0,0.005149429,0.502576078,27118,53958,,,0.691740058,37309,53935,, -51,193,51193,VA,Westmoreland County,2024,1,9826.409096,363,48855,8018.309372,11634.50882,0,,,,2,,,,2,11921.91927,8349.965688,16504.96152,,,,,2,9557.590658,7326.399134,11788.78218,,,,,2,,0.2,,,0.172,0.228,4.210698482,,,3.386787768,5.134679047,5.518978676,,,4.511029189,6.614676085,0.109149278,136,1246,0.091834778,0.126463778,0,,,,,,,0.128125,0.091504427,0.164745573,0.126126126,0.064364107,0.187888146,0.096732026,0.075785172,0.11767888,,,,,,,0.201,,,0.167,0.238,0.387,,,0.315,0.463,,,0.099,,,0.273,,,0.227,0.321,0.219840883,4062,18477,,,0.148886013,,,0.118436154,0.182860458,0.444444444,8,18,0.323758094,0.554110027,475.1,89,18731,,,23.5645536,71,3013,18.40411187,29.72347797,,,,,,,29.50474183,19.60568668,42.64256685,,,,19.02346227,12.83505011,27.15717527,,,,,,,0.100175362,1371,13686,0.085877489,0.114473234,0.00021355,4,18731,,,4682.75,0.000106883,2,18712,,,9356,0.000106883,2,18712,,,9356,3732,,,,,,,6395,,3110,0.42,,,,,,,0.46,,0.42,0.39,,,,,,,0.32,,0.41,0.818547807,11386,13910,0.784352704,0.85274291,0.432508293,1695,3919,0.336746621,0.528269965,0.031679867,304,9596,,,0.227,757,,0.149553192,0.304446809,,,,,,,0.330759331,0.117746276,0.543772385,,,,0.221955609,0.083100377,0.360810841,5.849072066,121339,20745,4.306943051,7.39120108,0.40736342,1372,3368,0.274236051,0.54049079,18.68560141,35,18731,,,112.7009558,102,90505,90.82920316,134.5727083,,,,,,,87.46610688,53.42657039,135.0843082,,,,129.3103448,101.7107891,162.091637,,,,7.4,,,,,0,,,,,0.154235145,1220,7910,0.112622994,0.195847297,0.134796643,0.097223147,0.172370139,0.012010114,0.001515104,0.022505124,0.009481669,0,0.021017517,0.747723392,5255,7028,0.685174996,0.810271789,,,,,,,,,,,,,0.659063137,0.576695299,0.741430974,0.532,,7028,0.427291199,0.636708801,76.04465096,,,74.64812964,77.44117228,,,,,,,74.83677483,71.80172752,77.87182215,,,,75.8903689,74.22177968,77.55895813,,,,459.1584648,363,48855,405.0626089,513.2543207,,,,,,,527.3672241,416.1899661,659.1185455,,,,460.590179,393.3823683,527.7979898,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.126,,,0.11,0.145,0.18,,,0.158,0.205,0.117,,,0.101,0.135,190.8,31,16247,,,0.099,1820,,,,,,17454,,,36.43319064,20,54895,22.25433935,56.26810803,,,,,,,,,,,,,42.58701948,23.83563152,70.2408122,,,,0.394,,,0.38,0.408,0.113842552,1167,10251,0.094778722,0.132906382,0.060294526,217,3599,0.041230697,0.079358356,0.000106883,2,18712,,,9356,0.892675159,140.15,157,,,,,,,,3.016503383,,,,,,,2.638793415,,3.18784005,,,,,,,,,,,0.056396264,,,,,-5150.1015,,,,,0.740248976,46441,62737,0.557703514,0.922794438,61545,,,52942.44681,70147.55319,,,,,,,52513,44258.3617,60767.6383,,,,56759,47732.2766,65785.7234,,,,,,0.765769944,1651,2156,,,30.87844266,,,,,0.263546998,,61545,,,9.142857143,8,875,,,,,,,,,,,,,,,,,,,,,,,,,,11.63345793,11,90505,5.319557754,22.08392691,12.15402464,,,,,,,,,,,,,15.7292297,6.323966128,32.40822481,,,,13.25893597,12,90505,6.851085696,23.16069283,,,,,,,,,,,,,17.24137931,8.267911545,31.70751042,,,,23.86141291,30,125726,16.09919509,34.06365063,,,,,,,,,,,,,23.62625748,14.22455037,36.89532769,,,,34.66666667,,1500,,,39,13,0.706032647,9948,14090,,,0.558,,,,,1.346436494,,,,,0.765704801,5997,7832,0.716842855,0.814566747,0.159508374,1181,7404,0.115675847,0.2033409,0.795454546,6230,7832,0.756124076,0.834785015,18712,,,,,0.181220607,3391,18712,,,0.27244549,5098,18712,,,0.244548953,4576,18712,,,0.008336896,156,18712,,,0.009352287,175,18712,,,0.001549808,29,18712,,,0.071023942,1329,18712,,,0.639589568,11968,18712,,,0.016823917,296,17594,0.003317131,0.030330704,0.503313382,9418,18712,,,0.784867673,14502,18477,, -51,195,51195,VA,Wise County,2024,1,13641.79499,986,102167,12381.23263,14902.35734,0,,,,2,,,,2,,,,2,,,,2,14506.68889,13117.28444,15896.09335,,,,,2,,0.2,,,0.171,0.238,4.496824193,,,3.649096707,5.430647428,6.020113587,,,5.007423015,7.105899015,0.100395257,254,2530,0.08868468,0.112105834,0,,,,,,,,,,,,,0.09877551,0.086961042,0.110589978,,,,,,,0.216,,,0.175,0.264,0.435,,,0.365,0.509,6.6,0.085348068,0.156,,,0.279,,,0.231,0.335,0.723138666,26127,36130,,,0.157701316,,,0.126067159,0.194176333,0.086956522,2,23,0.016612403,0.209342713,230,82,35647,,,33.58758196,251,7473,29.43232439,37.74283954,,,,,,,,,,,,,35.48999562,31.02769443,39.95229681,,,,,,,0.094952562,2502,26350,0.081846179,0.108058945,0.000224423,8,35647,,,4455.875,0.000282318,10,35421,,,3542.1,0.001298665,46,35421,,,770.0217391,4177,,,,,,,21015,,4048,0.41,,,,,,,,,0.41,0.47,,,,,,,0.61,,0.47,0.803592722,20891,25997,0.777372268,0.829813177,0.563976483,5276,9355,0.493956117,0.633996849,0.041302311,529,12808,,,0.266,1777,,0.177829787,0.354170213,,,,,,,,,,,,,0.260780932,0.202257666,0.319304197,4.534090315,86651,19111,3.866664919,5.20151571,0.274200613,1878,6849,0.202865114,0.345536113,8.415855472,30,35647,,,120.4277594,225,186834,104.6918655,136.1636533,,,,,,,,,,,,,127.3354615,110.3930365,144.2778864,,,,7.3,,,,,0,,,,,0.135434127,2020,14915,0.105444313,0.165423941,0.11888927,0.08937984,0.1483987,0.009922896,0.002877627,0.016968166,0.011733155,0,0.027206932,0.807386782,9859,12211,0.773746753,0.841026812,,,,,,,,,,,,,0.788256228,0.746428319,0.830084136,0.277,,12211,0.226071669,0.327928331,71.14933015,,,70.31216308,71.98649723,,,,,,,72.87190323,69.2023027,76.54150377,,,,70.55401876,69.66148982,71.4465477,,,,697.5614749,986,102167,651.6148843,743.5080655,,,,,,,,,,,,,724.0761633,675.1742763,772.9780503,,,,33.8711664,11,32476,16.90836423,60.60487287,,,,,,,,,,,,,36.70337004,18.32219008,65.67246751,,,,8.021390374,21,2618,4.965367068,12.26154726,,,,,,,,,,,,,,,,,,,,,,0.135,,,0.116,0.158,0.195,,,0.169,0.224,0.112,,,0.095,0.13,126.5,39,30839,,,0.156,5690,,,,0.085348068,3537.848122,41452,,,40.82151021,45,110236,29.77548967,54.62239241,,,,,,,,,,,,,42.7886242,30.9663395,57.63599599,,,,0.383,,,0.367,0.399,0.113848985,2227,19561,0.095976645,0.131721326,0.041318865,297,7188,0.029403971,0.053233758,0.001129274,40,35421,,,885.525,0.95,356.25,375,,,,,,,,3.321436261,,,,,,,,,3.326232122,,,,,,,,,,,0.017297758,,,,,-614.7217,,,,,0.82122504,37755,45974,0.738132623,0.904317457,45220,,,39565.19149,50874.80851,,,,,,,59375,38856.3617,79893.6383,73662,72760.04255,74563.95745,46715,43089.29787,50340.70213,,,,,,0.759063313,4376,5765,,,67.54361587,,,,,0.331092437,,45220,,,6.988934188,12,1717,,,3.762510347,10,265780,1.804269959,6.919390489,,,,,,,,,,,,,,,,,,,22.57868407,41,186834,16.05565158,30.86580441,21.94461394,,,,,,,,,,,,,25.72274523,18.29138642,35.16383952,,,,16.05703459,30,186834,10.83361381,22.9224153,,,,,,,,,,,,,17.60398085,11.87733195,25.13077727,,,,12.41628415,33,265780,8.546798695,17.43707926,,,,,,,,,,,,,13.18445882,9.018160072,18.61252197,,,,22.35294118,,3400,,,57,19,0.545559022,16615,30455,,,0.512,,,,,24.53949718,,,,,0.70324509,9882,14052,0.670722064,0.735768116,0.117741198,1545,13122,0.091771188,0.143711208,0.730216339,10261,14052,0.699122933,0.761309746,35421,,,,,0.192032975,6802,35421,,,0.201293018,7130,35421,,,0.059879732,2121,35421,,,0.002117388,75,35421,,,0.004968804,176,35421,,,8.46955E-05,3,35421,,,0.014285311,506,35421,,,0.906354987,32104,35421,,,0.002811839,97,34497,0,0.006783363,0.473956128,16788,35421,,,0.653861057,23624,36130,, -51,197,51197,VA,Wythe County,2024,1,10797.20118,657,77540,9397.935898,12196.46647,0,,,,2,,,,2,14955.16281,7465.563392,26758.91731,1,,,,2,10957.74775,9481.416446,12434.07905,,,,,2,,0.168,,,0.141,0.197,4.131653741,,,3.276295485,5.06931008,5.675037594,,,4.63414257,6.784420773,0.090863952,183,2014,0.078311269,0.103416636,0,,,,,,,,,,,,,0.09014233,0.077254686,0.103029974,,,,,,,0.193,,,0.154,0.236,0.396,,,0.323,0.472,7.9,0.044386176,0.119,,,0.243,,,0.198,0.291,0.71300813,20171,28290,,,0.174095185,,,0.138957216,0.210254723,0.176470588,6,34,0.093514624,0.274869215,170.3,48,28178,,,26.5768295,142,5343,22.20548464,30.94817435,,,,,,,,,,,,,26.98215027,22.34382766,31.62047288,,,,,,,0.084247577,1843,21876,0.072332684,0.096162471,0.000425864,12,28178,,,2348.166667,0.000355733,10,28111,,,2811.1,0.002525702,71,28111,,,395.9295775,2999,,,,,,,,,2987,0.38,,,,,,,,,0.38,0.38,,,,,,,0.19,,0.38,0.901362345,18724,20773,0.883398609,0.919326082,0.605459451,3815,6301,0.522460332,0.688458569,0.030579741,432,14127,,,0.182,967,,0.121234043,0.242765957,,,,,,,,,,0.454545455,0.066497545,0.842593364,0.247177171,0.175391232,0.31896311,4.711161175,100376,21306,3.879616023,5.542706328,0.229036983,1251,5462,0.141360615,0.316713351,9.227056569,26,28178,,,88.73796448,127,143118,73.30449124,104.1714377,,,,,,,,,,,,,93.34558027,76.98137854,109.709782,,,,6.9,,,,,1,,,,,0.087938685,1090,12395,0.062576979,0.113300391,0.078669911,0.054158169,0.103181653,0.006050827,1.46635E-05,0.01208699,0.005647439,0,0.011756559,0.838262702,10345,12341,0.79494597,0.881579433,,,,,,,,,,,,,0.845644692,0.819886512,0.871402871,0.292,,12341,0.238595219,0.345404781,73.67691861,,,72.6540162,74.69982101,,,,,,,,,,,,,73.44146384,72.37536346,74.50756422,,,,550.6885999,657,77540,505.4029529,595.9742469,,,,,,,784.5279454,479.2100505,1211.639783,,,,555.7159421,508.8846854,602.5471988,,,,48.79834086,12,24591,25.21481481,85.24088101,,,,,,,,,,,,,54.04431634,27.92548689,94.40454444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.12,,,0.102,0.14,0.183,,,0.158,0.209,0.099,,,0.084,0.115,118.7,29,24428,,,0.119,3370,,,,0.044386176,1297.629841,29235,,,21.05706465,18,85482,12.47975104,33.27924039,,,,,,,,,,,,,22.51914127,13.34627031,35.58995179,,,,0.345,,,0.327,0.363,0.097886002,1616,16509,0.08239664,0.113375363,0.043516561,247,5676,0.030410178,0.056622944,0.001494077,42,28111,,,669.3095238,0.91,290.29,319,,,,,,,,3.427066605,,,,,,,,,3.423880205,,,,,,,,,,,0.069337437,,,,,-657.8516,,,,,0.788699167,40786,51713,0.681186515,0.896211818,47257,,,40597.76596,53916.23404,,,,43231,39321.7234,47140.2766,31298,7886.425532,54709.57447,,,,55719,50690.91489,60747.08511,,,,,,0.523635414,2005,3829,,,55.41854708,,,,,0.264024377,,47257,,,7.4019245,10,1351,,,,,,,,,,,,,,,,,,,,,,,,,,24.62077364,36,143118,16.84059094,34.75718621,25.15406867,,,,,,,,,,,,,26.11820055,17.86482984,36.87110622,,,,18.16682737,26,143118,11.86717479,26.61861127,,,,,,,,,,,,,19.4158807,12.68309789,28.44876379,,,,18.38481911,37,201253,12.94460931,25.34105138,,,,,,,,,,,,,18.56842731,12.93358997,25.82418743,,,,28.84615385,,2600,,,52,23,0.66167691,15073,22780,,,0.644,,,,,29.72397331,,,,,0.752897618,9354,12424,0.717444378,0.788350857,0.104940933,1217,11597,0.073826866,0.136055,0.80022537,9942,12424,0.77000951,0.830441231,28111,,,,,0.192664793,5416,28111,,,0.224360571,6307,28111,,,0.026110775,734,28111,,,0.002241116,63,28111,,,0.006189748,174,28111,,,0.000249013,7,28111,,,0.016399274,461,28111,,,0.933335705,26237,28111,,,0.005687944,153,26899,0.000503575,0.010872313,0.504926897,14194,28111,,,0.747119123,21136,28290,, -51,199,51199,VA,York County,2024,1,4979.755941,619,193165,4327.142832,5632.369051,0,,,,2,,,,2,6650.769936,4523.417275,8778.122598,,,,,2,5043.268765,4300.083742,5786.453788,,,,,2,,0.115,,,0.097,0.135,2.946805073,,,2.333811916,3.65081428,4.560496084,,,3.763837519,5.486559937,0.075920421,332,4373,0.068069867,0.083770975,0,,,,0.091666667,0.055159444,0.128173889,0.125874126,0.101560022,0.15018823,0.049627792,0.028424031,0.070831552,0.065949323,0.056886264,0.075012383,,,,,,,0.113,,,0.087,0.141,0.337,,,0.274,0.401,9.3,0.028443079,0.059,,,0.171,,,0.138,0.208,0.899350418,62995,70045,,,0.172107242,,,0.138870953,0.209088165,0.441176471,15,34,0.356552717,0.520719635,276.4,196,70915,,,6.259088323,99,15817,5.087078135,7.620215449,,,,,,,17.06484642,11.88629079,23.73307039,9.776536313,5.344923377,16.40336671,4.612365064,3.388992362,6.133467747,,,,,,,0.054392088,3179,58446,0.046051663,0.062732514,0.001156314,82,70915,,,864.8170732,0.000532653,38,71341,,,1877.394737,0.00109334,78,71341,,,914.6282051,1814,,,,,,,2825,1778,1752,0.55,,,,,,0.37,0.53,0.36,0.56,0.54,,,,,,0.46,0.43,0.38,0.55,0.953323635,45219,47433,0.94300743,0.963639841,0.831178364,14721,17711,0.772470737,0.889885991,0.027683327,920,33233,,,0.059,952,,0.035170213,0.082829787,,,,0.094144661,0,0.211114148,0.078376876,0,0.160379865,0.01450116,0,0.031239047,0.044501838,0.021907984,0.067095691,3.438118053,179401,52180,3.114936556,3.76129955,0.196461257,3220,16390,0.156617216,0.236305297,7.896777833,56,70915,,,56.68950721,195,343979,48.73265214,64.64636227,,,,,,,48.2509047,30.23858509,73.05244958,,,,67.36667013,56.9927322,77.74060806,,,,7.4,,,,,0,,,,,0.119929453,3060,25515,0.100412416,0.139446491,0.102772277,0.082893416,0.122651139,0.012541642,0.006324377,0.018758907,0.010777974,0.00432239,0.017233558,0.77932607,27684,35523,0.759276217,0.799375924,,,,0.63963039,0.469151794,0.810108986,0.776882213,0.719985956,0.83377847,0.711193242,0.606066474,0.81632001,0.72431805,0.694406288,0.754229812,0.31,,35523,0.2779403,0.3420597,81.10792759,,,80.43319889,81.78265629,,,,85.99557674,82.59783391,89.39331957,79.18901775,77.15691797,81.22111753,94.7157862,78.10644117,111.3251312,80.85596533,80.11090039,81.60103027,,,,246.7303348,619,193165,226.5254861,266.9351834,,,,,,,311.4244514,249.3244746,373.5244282,,,,255.060823,230.8980481,279.2235979,,,,37.70001955,27,71618,24.84455044,54.85154912,,,,,,,,,,,,,30.78343851,16.82959229,51.6493791,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.085,,,0.072,0.098,0.14,,,0.121,0.161,0.083,,,0.07,0.097,126.2,75,59429,,,0.059,4130,,,,0.028443079,1861.997694,65464,,,17.27496953,36,208394,12.09917628,23.91583946,,,,,,,,,,,,,22.13782178,15.14225371,31.25199903,,,,0.34,,,0.326,0.355,0.063443458,2652,41801,0.052720054,0.074166863,0.033264746,582,17496,0.023732831,0.042796661,0.000672825,48,71341,,,1486.270833,0.96,964.8,1005,,,0.065846599,273,4146,0.021688859,0.11000434,3.600093513,,,,,,3.758229263,3.054033562,3.400455893,3.769569256,,,,,,,,,,,0.021967845,,,,,3302.409,,,,,0.741898435,56845,76621,0.677112428,0.806684442,111346,,,102308.5532,120383.4468,177500,79718.04255,275281.9575,120599,91612.44681,149585.5532,91190,73559.53192,108820.4681,96597,66993.25532,126200.7447,108519,102786.7447,114251.2553,,,,,,0.261970376,3042,11612,,,30.58279327,,,,,0.19048731,,111346,,,8.481314604,32,3773,,,3.334778404,16,479792,1.906113994,5.415471204,,,,,,,,,,,,,2.960033626,1.419451179,5.443607228,,,,12.30003274,43,343979,8.826715852,16.68638328,12.50076313,,,,,,,,,,,,,16.41735692,11.55933436,22.62916392,,,,8.721462647,30,343979,5.884334224,12.45043023,,,,,,,,,,,,,10.39609107,6.727801995,15.34668123,,,,7.294827759,35,479792,5.081114817,10.14533952,,,,,,,,,,,,,7.696087428,5.027339822,11.27655123,,,,15.06493507,,7700,,,92,24,0.768899901,38791,50450,,,0.733,,,,,68.16704158,,,,,0.721500889,18671,25878,0.704619177,0.7383826,0.100665362,2572,25550,0.08301983,0.118310894,0.923989489,23911,25878,0.908759002,0.939219977,71341,,,,,0.227933446,16261,71341,,,0.180148863,12852,71341,,,0.138615943,9889,71341,,,0.005102255,364,71341,,,0.064661275,4613,71341,,,0.00234087,167,71341,,,0.07678614,5478,71341,,,0.678880307,48432,71341,,,0.013890977,924,66518,0.008499202,0.019282752,0.501506847,35778,71341,,,0.070640303,4948,70045,, -51,510,51510,VA,Alexandria city,2024,1,4555.464603,1191,450226,4171.46607,4939.463136,0,,,,2,2502.89152,1762.266611,3449.906265,,7936.633064,6913.186963,8960.079166,,5124.082012,4153.790839,6094.373186,,3275.08973,2776.970695,3773.208764,,,,,2,,0.12,,,0.1,0.142,2.737668939,,,2.114605916,3.405572484,4.548332301,,,3.707301392,5.413018347,0.067411203,1171,17371,0.063682525,0.07113988,0,,,,0.076652602,0.062824828,0.090480377,0.106032907,0.095499524,0.11656629,0.068994181,0.060725332,0.07726303,0.051323734,0.046663345,0.055984124,,,,0.06097561,0.035079432,0.086871787,0.097,,,0.075,0.124,0.305,,,0.249,0.363,,,0.08,,,0.166,,,0.134,0.2,1,159467,159467,,,0.192879287,,,0.156520199,0.232401333,0.24,6,25,0.136098495,0.353867991,471.2,729,154706,,,15.87382346,312,19655,14.11241401,17.6352329,,,,,,,9.968027083,7.466736305,13.03842485,39.48070425,34.28715236,44.67425614,3.749479239,2.470930445,5.455295438,,,,,,,0.090052559,12062,133944,0.078137666,0.101967453,0.00080152,124,154706,,,1247.629032,0.000919466,143,155525,,,1087.587413,0.004539463,706,155525,,,220.2903683,2384,,,,,,983,5210,2644,1930,0.39,,,,,,0.24,0.32,0.31,0.42,0.51,,,,,,0.51,0.34,0.42,0.54,0.936850814,112112,119669,0.928520497,0.94518113,0.866008072,53211,61444,0.835238263,0.896777882,0.023621969,2384,100923,,,0.134,3666,,0.086340426,0.181659575,,,,0.246811703,0.138769377,0.354854029,0.264902825,0.181083415,0.348722236,0.166545981,0.116212218,0.216879744,0.045856158,0.01974402,0.071968297,4.150557,223549,53860,3.869333039,4.431780961,0.207015082,5902,28510,0.170172498,0.243857667,21.39542099,331,154706,,,40.3314743,320,793425,35.91246231,44.7504863,,,,,,,51.0092963,40.96465351,62.77132842,35.72324367,26.24809577,47.50434101,41.18536321,34.99416781,47.37655861,,,,8.5,,,,,,,,,,0.167274513,11925,71290,0.15242684,0.182122185,0.133742245,0.121177258,0.146307231,0.041730958,0.033944454,0.049517462,0.005119933,0.002805966,0.007433899,0.524836314,51382,97901,0.50811956,0.541553068,,,,0.583298275,0.539693022,0.626903528,0.638896718,0.595069882,0.682723555,0.5769542,0.539639996,0.614268404,0.538481959,0.518655525,0.558308393,0.447,,97901,0.417985338,0.476014662,82.50367351,,,81.97884589,83.02850113,,,,85.64662042,83.37468882,87.91855202,76.74557167,75.64580032,77.84534302,84.10106422,81.75062277,86.45150567,84.16112416,83.50700999,84.81523834,,,,235.6609767,1191,450226,222.0593328,249.2626207,,,,184.3282421,138.861258,239.9285438,442.0918439,401.0464352,483.1372527,219.1682948,182.2698674,256.0667223,171.4166865,155.8217246,187.0116485,,,,47.74273946,59,123579,36.34398533,61.58465545,,,,,,,56.0498844,32.03735183,91.02150073,69.06510956,43.28273646,104.5654059,39.25417076,23.97746729,60.62488303,,,,3.564863811,64,17953,2.745379521,4.552251502,,,,,,,6.719252118,4.259429459,10.0821773,5.470459519,3.341498793,8.448681046,,,,,,,,,,0.081,,,0.068,0.095,0.132,,,0.113,0.152,0.09,,,0.077,0.105,845.7,1124,132904,,,0.08,12600,,,,,,139966,,,14.80353593,70,472860,11.5400825,18.70337707,,,,,,,30.02712127,20.40197208,42.62110181,,,,12.54684831,8.524974696,17.80924966,,,,0.337,,,0.325,0.35,0.100701276,10698,106235,0.086403403,0.114999148,0.050141218,1438,28679,0.035843346,0.064439091,0.001067353,166,155525,,,936.8975904,0.82,830.66,1013,,,0.054078212,242,4475,0.017501758,0.090654667,2.962606665,,,,,,3.030595826,2.693342608,2.42770699,3.788702571,,,,,,,,,,,0.060142684,,,,,-2826.865,,,,,0.94988297,87659,92284,0.895782337,1.003983603,110115,,,102080.7872,118149.2128,,,,104587,91517.55319,117656.4468,78942,72485.31915,85398.68085,79583,71001.89362,88164.10638,145083,139120.7872,151045.2128,,,,,,0.584704744,9060,15495,,,40.23307217,,,,,0.379575898,,110115,,,8.859157476,98,11062,,,2.901846844,32,1102746,1.984861093,4.096541913,,,,,,,5.78792226,3.164310959,9.711150069,7.090535226,3.775411383,12.12503118,,,,,,,8.928254309,77,793425,6.946714773,11.29927725,9.704761005,,,,,,,7.414020318,3.70105223,13.26573031,,,,11.41512616,8.155133489,15.54416193,,,,5.41954186,43,793425,3.922149316,7.300087319,,,,,,,6.877657928,3.553786213,12.0138843,,,,5.08760369,3.149306871,7.776942674,,,,4.624818408,51,1102746,3.443481077,6.0807821,,,,,,,6.201345279,3.470845877,10.22817597,7.090535226,3.775411383,12.12503118,3.837994752,2.405250878,5.810770179,,,,14.90196078,,10200,,,122,30,0.761720589,82521,108335,,,0.725,,,,,597.2122697,,,,,0.426809057,31933,74818,0.413666149,0.439951965,0.145347736,10738,73878,0.130556611,0.16013886,0.935884413,70021,74818,0.924932491,0.946836334,155525,,,,,0.179347372,27893,155525,,,0.132178106,20557,155525,,,0.222858061,34660,155525,,,0.006288378,978,155525,,,0.064369073,10011,155525,,,0.00194824,303,155525,,,0.167645073,26073,155525,,,0.514772545,80060,155525,,,0.046585924,6839,146804,0.038719681,0.054452167,0.513628034,79882,155525,,,0,0,159467,, -51,520,51520,VA,Bristol city,2024,1,11285.19164,361,46077,9387.1773,13183.20599,0,,,,2,,,,2,19967.85571,9967.881626,35728.00955,1,,,,2,11318.36972,9287.473148,13349.2663,,,,,2,,0.185,,,0.155,0.221,4.289652641,,,3.393498779,5.27412693,5.723069729,,,4.607475518,6.93408508,0.088122605,92,1044,0.07092699,0.10531822,0,,,,,,,,,,,,,0.08839779,0.069902755,0.106892826,,,,,,,0.201,,,0.158,0.251,0.39,,,0.31,0.473,6.4,0.138406985,0.143,,,0.266,,,0.214,0.32,0.935594402,16110,17219,,,0.157882111,,,0.125238944,0.193631495,0.2,1,5,0.015594715,0.47750127,293.2,50,17054,,,26.09844731,79,3027,20.66238651,32.52645232,,,,,,,,,,,,,25.3164557,19.40998142,32.45455365,,,,,,,0.082438095,1082,13125,0.068140223,0.096735968,0.00064501,11,17054,,,1550.363636,0.000353461,6,16975,,,2829.166667,0.001119293,19,16975,,,893.4210526,3601,,,,,,,4771,,3574,0.4,,,,,,,0.24,,0.41,0.49,,,,,,,0.4,,0.49,0.862209208,10600,12294,0.832222275,0.89219614,0.529687115,2150,4059,0.42379487,0.635579361,0.034005536,258,7587,,,0.273,911,,0.163382979,0.382617021,,,,,,,0.266666667,0,0.825816065,0.112903226,0,0.749045445,0.183387271,0.115781199,0.250993342,5.284477784,100738,19063,4.121778921,6.447176647,0.366587958,1242,3388,0.261972947,0.471202968,18.76392635,32,17054,,,91.21385503,77,84417,71.98454796,114.0016685,,,,,,,,,,,,,97.09392489,75.97001644,122.2737294,,,,6.5,,,,,,,,,,0.117647059,880,7480,0.082737134,0.152556984,0.10020339,0.064386072,0.136020708,0.010695187,0,0.022142793,0.00802139,0,0.017293628,0.778204776,5670,7286,0.727886376,0.828523177,,,,,,,,,,,,,0.817361894,0.786215924,0.848507864,0.182,,7286,0.12438807,0.23961193,73.55215853,,,72.16897817,74.93533889,,,,,,,,,,,,,73.46976691,72.01045662,74.92907719,,,,552.1002304,361,46077,491.5282991,612.6721616,,,,,,,813.6694466,521.3333675,1210.67564,,,,556.1304421,491.9004194,620.3604647,,,,67.01963675,10,14921,32.13852085,123.2514982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.128,,,0.109,0.151,0.188,,,0.162,0.218,0.107,,,0.092,0.125,177.6,26,14638,,,0.143,2430,,,,0.138406985,2468.488569,17835,,,27.37315476,14,51145,14.96515843,45.92750244,,,,,,,,,,,,,26.7606262,13.82760606,46.7454285,,,,0.367,,,0.348,0.385,0.09952946,973,9776,0.08165712,0.1174018,0.033560865,118,3516,0.02283746,0.044284269,0.000706922,12,16975,,,1414.583333,0.775,117.025,151,,,,,,,,2.852913031,,,,,,,,,2.978651133,,,,,,,,,,,0.012603238,,,,,-2806.482,,,,,0.906966529,41296,45532,0.737323913,1.076609145,43123,,,36865.29787,49380.70213,,,,,,,39287,36805.12766,41768.87234,,,,46864,43359.82979,50368.17021,,,,,,0.888636364,1955,2200,,,27.84084318,,,,,0.303782204,,43123,,,12.14128035,11,906,,,,,,,,,,,,,,,,,,,,,,,,,,16.91215338,13,84417,8.738756441,29.54212845,15.39974176,,,,,,,,,,,,,15.98136345,7.663684966,29.3902964,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,26.25,,1600,,,29,13,0.580319347,7814,13465,,,0.653,,,,,109.4784335,,,,,0.629675298,4596,7299,0.583984237,0.67536636,0.137847814,971,7044,0.097421454,0.178274173,0.751472805,5485,7299,0.707503284,0.795442325,16975,,,,,0.200471281,3403,16975,,,0.228748159,3883,16975,,,0.063151694,1072,16975,,,0.005419735,92,16975,,,0.010368189,176,16975,,,0.000294551,5,16975,,,0.026921944,457,16975,,,0.871575847,14795,16975,,,0.003216031,52,16169,0,0.009917706,0.52353461,8887,16975,,,0.010221267,176,17219,, -51,530,51530,VA,Buena Vista city,2024,1,13547.71704,144,17851,10189.3522,16906.08187,0,,,,2,,,,2,,,,2,,,,2,13944.75156,10328.32896,17561.17415,,,,,2,,0.207,,,0.174,0.241,4.517558433,,,3.604723737,5.481750281,5.861012455,,,4.738759872,7.053568209,0.07962963,43,540,0.056795848,0.102463412,0,,,,,,,,,,,,,0.083832335,0.059564532,0.108100139,,,,,,,0.22,,,0.177,0.267,0.384,,,0.311,0.463,2.5,0.499402169,0.148,,,0.279,,,0.227,0.336,1,6641,6641,,,0.16103364,,,0.127955991,0.198796782,,,,,,363.6,24,6601,,,11.01928375,24,2178,7.060263019,16.39582075,,,,,,,,,,,,,10.92896175,6.675693763,16.87889503,,,,,,,0.08797054,430,4888,0.072481178,0.103459902,,0,6601,,,,0.00075861,5,6591,,,1318.2,0.00075861,5,6591,,,1318.2,3072,,,,,,,,,3101,0.42,,,,,,,,,0.42,0.42,,,,,,,0.24,,0.42,0.812624255,3270,4024,0.749043768,0.876204741,0.535767511,719,1342,0.397860334,0.673674689,0.030774214,95,3087,,,0.205,278,,0.134702128,0.275297872,,,,,,,,,,,,,0.326216909,0.137487416,0.514946401,4.106637108,90769,22103,2.850225775,5.363048441,0.371549894,525,1413,0.18492102,0.558178768,10.60445387,7,6601,,,87.37712592,28,32045,58.06146561,126.2842751,,,,,,,,,,,,,96.29444702,63.45864736,140.1033648,,,,6.6,,,,,,,,,,0.193227092,485,2510,0.107732123,0.278722061,0.18556701,0.095073923,0.276060098,0.013944223,0,0.044347239,0,0,0.012083812,0.805955497,2463,3056,0.782616755,0.82929424,,,,,,,,,,,,,0.782854209,0.690074437,0.875633982,0.131,,3056,0.068121414,0.193878586,71.6244461,,,69.38316342,73.86572878,,,,,,,,,,,,,71.23644446,68.88935062,73.5835383,,,,655.8648375,144,17851,540.7803149,770.9493601,,,,,,,,,,,,,670.4207876,546.5932809,794.2482943,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.14,,,0.119,0.162,0.2,,,0.172,0.229,0.114,,,0.097,0.134,125,7,5600,,,0.148,980,,,,0.499402169,3321.024423,6650,,,,,,,,,,,,,,,,,,,,,,,,,,0.369,,,0.352,0.385,0.107862617,380,3523,0.087607298,0.128117936,0.037762238,54,1430,0.024655855,0.050868621,0.000151722,1,6591,,,6591,0.975,76.05,78,,,,,,,,3.061161666,,,,,,,,,3.129765805,,,,,,,,,,,0.018976722,,,,,-4543.873,,,,,0.704846338,35618,50533,0.526085117,0.88360756,51030,,,43891.78723,58168.21277,,,,,,,,,,,,,48106,37311.10638,58900.89362,,,,,,0.675310034,599,887,,,1.069894366,,,,,0.34228885,,51030,,,8.746355685,3,343,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,24.38213455,11,45115,12.17147372,43.62637374,,,,,,,,,,,,,25.27422535,12.11997345,46.48020028,,,,,,600,,,7,-888,0.545919371,2776,5085,,,0.69,,,,,37.02707177,,,,,0.57740113,1533,2655,0.482386293,0.672415967,0.147323341,344,2335,0.071174443,0.223472238,0.837664783,2224,2655,0.75993789,0.915391677,6591,,,,,0.209376422,1380,6591,,,0.189804279,1251,6591,,,0.049764831,328,6591,,,0.011530875,76,6591,,,0.006068882,40,6591,,,0.005765438,38,6591,,,0.035958125,237,6591,,,0.866029434,5708,6591,,,0,0,6312,0,0.014346196,0.526930663,3473,6591,,,0.021834061,145,6641,, -51,540,51540,VA,Charlottesville city,2024,1,6341.78409,461,133521,5535.942064,7147.626116,0,,,,2,,,,2,14008.73009,11157.84324,16859.61693,,,,,2,4335.337815,3542.81232,5127.86331,,,,,2,,0.154,,,0.13,0.181,3.578171549,,,2.802306502,4.384051193,5.212398947,,,4.183624773,6.215123115,0.065661479,270,4112,0.058090762,0.073232195,0,,,,,,,0.131897712,0.107566388,0.156229036,0.060453401,0.037009474,0.083897327,0.05187429,0.043416032,0.060332548,,,,,,,0.145,,,0.111,0.182,0.324,,,0.252,0.392,8.1,0.039872442,0.112,,,0.213,,,0.173,0.255,1,46553,46553,,,0.186306572,,,0.149063528,0.224926273,0.181818182,2,11,0.044108943,0.367070091,442.3,202,45672,,,12.0831881,104,8607,9.760874115,14.40550209,,,,,,,19.8019802,13.71344693,27.67128253,52.47813411,36.75503997,72.65185786,5.253940455,3.366298786,7.817446934,,,,,,,0.083483039,3160,37852,0.070376656,0.096589422,0.002846383,130,45672,,,351.3230769,0.000991779,45,45373,,,1008.288889,0.011526679,523,45373,,,86.75525813,1865,,,,,,814,3280,,1681,0.54,,,,,,0.39,0.49,0.42,0.55,0.63,,,,,,0.62,0.49,0.46,0.65,0.919805548,27057,29416,0.900686799,0.938924297,0.823973705,11782,14299,0.772084019,0.87586339,0.026157488,674,25767,,,0.174,1249,,0.114425532,0.233574468,,,,0.185840708,0,0.436970818,0.591477273,0.484080304,0.698874242,0.256410256,0.049323393,0.46349712,0.094040459,0.040918055,0.147162864,7.54939325,159262,21096,6.500265221,8.598521279,0.36760781,2617,7119,0.305572421,0.429643199,23.64687336,108,45672,,,61.01074467,144,236024,51.04565637,70.97583297,,,,,,,94.96450702,67.84403609,129.3147052,,,,59.61500247,48.117001,73.03240558,,,,7.3,,,,,,,,,,0.200106298,3765,18815,0.176411939,0.223800657,0.187208345,0.163345716,0.211070973,0.015147489,0.007426826,0.022868151,0.009566835,0.002561058,0.016572612,0.54469793,12893,23670,0.518878743,0.570517117,,,,0.584557082,0.501367953,0.667746211,0.774861085,0.716951004,0.832771165,0.571880937,0.514361953,0.629399921,0.726175007,0.701251277,0.751098738,0.124,,23670,0.096312289,0.151687711,78.69211405,,,77.86691587,79.51731222,,,,90.17896333,76.98681602,103.3711106,71.6403225,69.56350867,73.71713633,98.75569523,55.60410039,141.9072901,80.61462143,79.69111599,81.53812687,,,,324.5203931,461,133521,294.0931248,354.9476614,,,,,,,655.8370078,557.3686063,754.3054092,,,,238.4504131,207.5234618,269.3773644,,,,51.01607006,18,35283,30.23535635,80.62738505,,,,,,,,,,,,,,,,,,,4.786979416,20,4178,2.92401139,7.393101461,,,,,,,,,,,,,,,,,,,,,,0.104,,,0.088,0.121,0.159,,,0.136,0.182,0.107,,,0.091,0.123,406.1,163,40140,,,0.112,5230,,,,0.039872442,1733.454417,43475,,,17.87144001,25,139888,11.56545368,26.38177092,,,,,,,,,,,,,15.08897104,8.249280877,25.31672949,,,,0.34,,,0.324,0.355,0.091894179,2824,30731,0.076404817,0.10738354,0.048836271,363,7433,0.033346909,0.064325632,0.006589822,299,45373,,,151.7491639,0.931870873,1270.14,1363,,,,,,,,3.091665417,,,,,,,2.392656136,2.950253152,3.898456807,,,,,,,,,,,0.022584266,,,,,2711.677,,,,,0.867069035,58039,66937,0.754676434,0.979461636,67903,,,57905.21277,77900.78723,28750,27123.61702,30376.38298,37667,13721.6383,61612.3617,38162,32158.08511,44165.91489,56525,46174.53192,66875.46809,83684,76272.93617,91095.06383,,,,,,0.574796909,2901,5047,,,38.38270248,,,,,0.39504882,,67903,,,11.78861789,29,2460,,,4.248436424,14,329533,2.322659726,7.128154425,,,,,,,16.77176976,8.042715511,30.84388173,,,,,,,,,,6.420396769,17,236024,3.593447334,10.58946809,7.202657357,,,,,,,,,,,,,8.555984186,4.788719399,14.11179476,,,,6.77897163,16,236024,3.874768012,11.00862522,,,,,,,,,,,,,,,,,,,8.496872847,28,329533,5.6461103,12.28034702,,,,,,,,,,,,,7.349934999,4.201122911,11.93583396,,,,22.5,,2800,,,56,7,0.652114193,24213,37130,,,0.671,,,,,196.8587055,,,,,0.423453437,8262,19511,0.398313018,0.448593855,0.206429871,3859,18694,0.179074701,0.233785041,0.885346728,17274,19511,0.865947368,0.904746087,45373,,,,,0.160425804,7279,45373,,,0.139642519,6336,45373,,,0.166640954,7561,45373,,,0.004121394,187,45373,,,0.074052851,3360,45373,,,0.000859542,39,45373,,,0.061071562,2771,45373,,,0.665285522,30186,45373,,,0.019416591,852,43880,0.011032281,0.0278009,0.516474555,23434,45373,,,0,0,46553,, -51,550,51550,VA,Chesapeake city,2024,1,7412.706048,3155,703596,7031.45208,7793.960017,0,,,,2,3329.881939,2133.51819,4954.600376,1,9068.283975,8288.652829,9847.915121,,5546.682049,4362.817291,6952.813979,,7052.281856,6558.157512,7546.406201,,,,,2,,0.147,,,0.127,0.169,3.430464291,,,2.788031042,4.10841772,4.663125073,,,3.928687172,5.442723102,0.09192516,1867,20310,0.087951606,0.095898714,0,,,,0.101694915,0.081082561,0.122307269,0.139160156,0.130505514,0.147814798,0.076587494,0.065111686,0.088063302,0.067779035,0.062995527,0.072562542,,,,0.084095064,0.060837038,0.107353091,0.141,,,0.113,0.169,0.361,,,0.313,0.412,9.1,0.048938817,0.058,,,0.212,,,0.179,0.248,0.910861913,227189,249422,,,0.161155742,,,0.133242317,0.191617457,0.344444444,31,90,0.291043432,0.397757417,654.7,1645,251269,,,12.76244614,696,54535,11.81427796,13.71061431,,,,,,,19.54983177,17.46253526,21.63712827,23.86117137,19.40202746,28.32031528,7.737431173,6.703161858,8.771700488,,,,8.220044262,5.369605822,12.04426939,0.070379304,14881,211440,0.062038878,0.078719729,0.000780041,196,251269,,,1281.984694,0.000518837,131,252488,,,1927.389313,0.001825829,461,252488,,,547.6963124,3513,,,,,,,4128,2467,3321,0.47,,,,,,0.36,0.51,0.23,0.46,0.44,,,,,,0.42,0.39,0.36,0.46,0.933154603,156979,168224,0.926785983,0.939523223,0.74496035,52513,70491,0.711075884,0.778844815,0.029437829,3654,124126,,,0.105,6228,,0.074021277,0.135978723,,,,0.070837642,0,0.155888559,0.194324914,0.152349898,0.23629993,0.112366912,0.062746435,0.161987389,0.05768004,0.038393207,0.076966873,3.95162392,167782,42459,3.635756355,4.267491484,0.25447283,15290,60085,0.226348131,0.282597529,8.954546721,225,251269,,,62.14594347,762,1226146,57.73337587,66.55851106,,,,23.55934599,11.29762215,43.32647609,55.46143361,47.79401572,63.1288515,41.08264862,28.45092845,57.40888363,72.97375252,66.61535769,79.33214736,,,,7.5,,,,,,,,,,0.139150535,12040,86525,0.126480526,0.151820543,0.124461521,0.112363618,0.136559423,0.012308581,0.00869183,0.015925333,0.006240971,0.003333956,0.009147986,0.792188765,97867,123540,0.778330804,0.806046725,,,,0.679053194,0.611380267,0.746726122,0.755591109,0.729643689,0.781538529,0.714002642,0.658718448,0.769286836,0.797978947,0.777745836,0.818212059,0.399,,123540,0.378466244,0.419533756,77.18863477,,,76.84446966,77.53279988,,,,84.40116753,81.88180552,86.92052954,75.80548304,75.13388821,76.47707788,83.21232358,80.10502116,86.319626,77.31633879,76.88372059,77.748957,,,,375.6262488,3155,703596,362.2415073,389.0109902,,,,186.2290734,140.2932243,242.402737,445.719601,418.7459253,472.6932767,261.288685,203.2981931,330.6775537,363.6265092,346.5910359,380.6619824,,,,51.33332567,134,261039,42.64165878,60.02499256,,,,,,,79.61043958,60.7511523,102.4744164,61.0477317,34.89405339,99.13769162,36.58436429,27.0653141,48.36646975,,,,6.75146771,138,20440,5.625010438,7.877924983,,,,,,,9.748172218,7.438882364,12.54782996,,,,4.391984628,3.238302756,5.82313443,,,,,,,0.098,,,0.085,0.112,0.155,,,0.134,0.176,0.106,,,0.092,0.121,312.1,651,208559,,,0.058,14370,,,,0.048938817,10874.64547,222209,,,21.12728178,157,743115,17.82244611,24.43211745,,,,,,,17.76320284,12.63137368,24.28288304,,,,25.62776037,20.77180332,30.48371743,,,,0.362,,,0.349,0.374,0.084756747,12817,151221,0.072841853,0.09667164,0.036046291,2280,63252,0.026514376,0.045578206,0.001097082,277,252488,,,911.5090253,0.9,2958.3,3287,,,0.056971064,758,13305,0.03570464,0.078237487,3.305050225,,,,,,3.503476104,3.030252365,3.293975493,3.467382805,,,,,,,,,,,0.094868404,,,,,-449.1875,,,,,0.710740512,51781,72855,0.669672985,0.751808039,87127,,,81101.6383,93152.3617,106250,45367.2766,167132.7234,85128,69991.31915,100264.6809,70351,64244.61702,76457.38298,71518,42003.61702,101032.383,105058,101663.4468,108452.5532,,,,,,0.393445054,15918,40458,,,41.10350547,,,,,0.24343774,,87127,,,7.316757317,113,15444,,,7.060837945,120,1699515,5.797493741,8.324182149,,,,,,,15.95599337,12.6521104,19.85861493,,,,2.887809627,1.918928525,4.173688954,,,,13.69880664,169,1226146,11.60410326,15.79351002,13.78302421,,,,,,,5.581138285,3.454812564,8.531362728,16.41637199,7.506610628,31.16338765,18.39512085,15.15321816,21.63702354,,,,14.43547506,177,1226146,12.30880303,16.56214709,,,,,,,18.48714454,14.32728309,23.47802006,12.08313195,5.794331436,22.22130986,13.70060571,11.08460817,16.74828002,,,,7.29619921,124,1699515,6.011971868,8.580426551,,,,,,,8.376896519,6.03733019,11.32313056,,,,7.632068301,5.992815155,9.58136285,,,,12.82608696,,27600,,,213,141,0.712164545,127246,178675,,,0.732,,,,,115.2455127,,,,,0.733166973,66988,91368,0.720600324,0.745733622,0.129700503,11658,89884,0.116747289,0.142653717,0.924568777,84476,91368,0.916543531,0.932594023,252488,,,,,0.238145971,60129,252488,,,0.146046545,36875,252488,,,0.295978423,74731,252488,,,0.004934888,1246,252488,,,0.039459301,9963,252488,,,0.001417889,358,252488,,,0.074581762,18831,252488,,,0.552018314,139378,252488,,,0.014760526,3456,234138,0.010919168,0.018601883,0.508911315,128494,252488,,,0.07732277,19286,249422,, -51,570,51570,VA,Colonial Heights city,2024,1,12686.85523,388,47944,10825.71956,14547.9909,0,,,,2,,,,2,15301.25633,11073.59508,20610.69186,,,,,2,12521.77437,10288.89285,14754.65589,,,,,2,,0.148,,,0.126,0.174,3.560785314,,,2.788851118,4.4452009,5.205607304,,,4.190838529,6.316622097,0.083993661,159,1893,0.071498172,0.09648915,0,,,,,,,0.123893805,0.096727222,0.151060389,0.088541667,0.048358171,0.128725162,0.068400771,0.05304391,0.083757632,,,,,,,0.156,,,0.125,0.192,0.378,,,0.299,0.46,8.4,0.051861222,0.091,,,0.224,,,0.182,0.27,0.768079252,13956,18170,,,0.170427869,,,0.135932154,0.209905541,0.2,1,5,0.015594715,0.47750127,498,91,18273,,,22.85864425,87,3806,18.30883698,28.19605323,,,,,,,25.3164557,15.46394884,39.09921254,46.64723032,26.66292261,75.75217959,20.39082413,15.03458404,27.0352745,,,,,,,0.075714286,1113,14700,0.063799392,0.087629179,0.001258688,23,18273,,,794.4782609,0.002350497,43,18294,,,425.4418605,0.00240516,44,18294,,,415.7727273,3524,,,,,,,2292,,3756,0.39,,,,,,0.31,0.44,,0.38,0.47,,,,,,0.61,0.37,0.33,0.48,0.914654291,11628,12713,0.89469681,0.934611772,0.662077597,3174,4794,0.569948058,0.754207136,0.032276927,276,8551,,,0.142,618,,0.088382979,0.195617021,,,,0.305555556,0,0.651377039,0.158911326,0,0.326941002,0.148594378,0,0.331477104,0.131263858,0.062161908,0.200365808,3.887150366,128688,33106,3.008164916,4.766135815,0.418319169,1772,4236,0.330179133,0.506459205,12.0396213,22,18273,,,114.1101106,101,88511,91.85552506,136.3646962,,,,,,,131.9994442,79.47228821,206.1334832,,,,124.1174764,97.95157138,155.1255497,,,,8.1,,,,,,,,,,0.141649049,1005,7095,0.108921076,0.174377021,0.119285714,0.087204588,0.151366841,0.017618041,0.00300415,0.032231932,0.009866103,0,0.021429755,0.82412178,7038,8540,0.803424815,0.844818745,,,,,,,0.713165632,0.699239748,0.727091516,,,,0.832916458,0.779250156,0.88658276,0.371,,8540,0.310726653,0.431273348,72.52897099,,,71.23479676,73.82314522,,,,,,,68.17624013,65.26909255,71.08338771,,,,72.69728719,71.20754758,74.18702679,,,,634.8987828,388,47944,568.4908781,701.3066875,,,,,,,807.1655846,608.0675821,1050.636957,,,,646.2194233,567.4496356,724.9892111,,,,54.87570653,10,18223,26.31503428,100.9183781,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.104,,,0.089,0.12,0.163,,,0.14,0.189,0.093,,,0.079,0.109,270.3,41,15169,,,0.091,1650,,,,0.051861222,902.9557334,17411,,,39.73660309,21,52848,24.59758361,60.74161886,,,,,,,,,,,,,43.7098757,24.98397064,70.98209971,,,,0.364,,,0.349,0.378,0.089723926,936,10432,0.073043075,0.106404777,0.042486583,190,4472,0.026997222,0.057975945,0.002569148,47,18294,,,389.2340426,0.91,202.02,222,,,,,,,,3.086170339,,,,,,,3.164021016,,3.062618614,,,,,,,,,,,0.014038399,,,,,-862.6836,,,,,0.798455919,50056,62691,0.641972959,0.954938879,68456,,,61292.76596,75619.23404,,,,71964,25618.6383,118309.3617,47576,25633.53192,69518.46809,45288,19636.42553,70939.57447,79527,71766.82979,87287.17021,,,,,,0.5994257,1670,2786,,,32.66757631,,,,,0.364511511,,68456,,,6.535947712,7,1071,,,8.057822937,10,124103,3.864039303,14.81862327,,,,,,,,,,,,,,,,,,,23.20571431,19,88511,13.753177,36.67503319,21.46625843,,,,,,,,,,,,,26.17853561,13.93896768,44.76609317,,,,20.33645536,18,88511,12.0526723,32.14036704,,,,,,,,,,,,,19.34298333,9.994801749,33.78829919,,,,15.30986358,19,124103,9.217537984,23.90824845,,,,,,,,,,,,,14.71320567,7.834162356,25.16002979,,,,77.22222222,,1800,,,99,40,0.704886495,9160,12995,,,0.706,,,,,196.7795936,,,,,0.66434577,5057,7612,0.626593079,0.702098461,0.124293025,923,7426,0.087543345,0.161042705,0.85036784,6473,7612,0.80845353,0.892282151,18294,,,,,0.243249153,4450,18294,,,0.187329179,3427,18294,,,0.187219854,3425,18294,,,0.00759812,139,18294,,,0.036460042,667,18294,,,0.001967858,36,18294,,,0.082376736,1507,18294,,,0.662184323,12114,18294,,,0.015478783,263,16991,0.006537781,0.024419785,0.532087023,9734,18294,,,0,0,18170,, -51,580,51580,VA,Covington city,2024,1,15887.53499,172,15490,12210.4449,19564.62509,0,,,,2,,,,2,19066.59192,8718.459937,36194.3306,1,,,,2,15220.92845,11380.63614,19061.22076,,,,,2,,0.197,,,0.169,0.229,4.360677866,,,3.494491522,5.342913162,5.786572474,,,4.664419928,7.005742871,0.117521368,55,468,0.088344164,0.146698571,0,,,,,,,,,,,,,0.103960396,0.074198338,0.133722454,,,,,,,0.216,,,0.175,0.26,0.399,,,0.315,0.485,7.5,0.108305619,0.105,,,0.277,,,0.228,0.331,1,5737,5737,,,0.156846249,,,0.124364613,0.193144851,0,0,1,0,0.662081041,349.8,20,5717,,,17.4152154,19,1091,10.48509731,27.19601611,,,,,,,,,,,,,20.02355713,11.66445992,32.05965467,,,,,,,0.074626866,335,4489,0.061520483,0.087733249,0.000524751,3,5717,,,1905.666667,0.000528262,3,5679,,,1893,0.003345659,19,5679,,,298.8947368,2624,,,,,,,,,2667,0.47,,,,,,,0.43,,0.47,0.48,,,,,,,0.31,,0.48,0.886244049,3537,3991,0.833876508,0.93861159,0.403026135,586,1454,0.28796673,0.51808554,0.041250543,95,2303,,,0.238,308,,0.147446809,0.328553192,,,,,,,0.095238095,0,0.390977475,,,,0.329025845,0.165426866,0.492624824,3.887056277,89791,23100,2.956906264,4.81720629,0.243579767,313,1285,0.080846196,0.406313337,31.4850446,18,5717,,,147.0324547,41,27885,105.513028,199.4661272,,,,,,,,,,,,,151.5151515,104.928647,211.7272375,,,,6.6,,,,,,,,,,0.050420168,120,2380,0.018262742,0.082577594,0.047311828,0.008750709,0.085872947,0.004201681,0,0.022221556,0,0,0.012743852,0.901372213,2102,2332,0.836560967,0.966183458,,,,,,,,,,,,,0.879464286,0.810118011,0.94881056,0.175,,2332,0.097014313,0.252985687,69.32123672,,,67.11139713,71.53107631,,,,,,,,,,,,,69.46869382,67.17742077,71.75996686,,,,791.5869759,172,15490,665.0684004,918.1055513,,,,,,,857.4459073,537.3567851,1298.183408,,,,793.7800546,653.3751221,934.184987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.131,,,0.113,0.152,0.19,,,0.166,0.217,0.115,,,0.099,0.134,313.3,15,4788,,,0.105,600,,,,0.108305619,645.6097928,5961,,,,,,,,,,,,,,,,,,,,,,,,,,0.37,,,0.353,0.385,0.091022057,293,3219,0.073149716,0.108894397,0.033008252,44,1333,0.019901869,0.046114635,0.001408699,8,5679,,,709.875,0.825,56.925,69,,,,,,,,2.947151504,,,,,,,,,2.973386782,,,,,,,,,,,0.000910065,,,,,-8770.947,,,,,0.813427928,40817,50179,0.520581196,1.10627466,46592,,,39718.29787,53465.70213,,,,,,,63136,30495.14894,95776.85106,57115,11880.10638,102349.8936,45018,34821.23404,55214.76596,,,,,,0.693665628,668,963,,,49.48087079,,,,,0.307949863,,46592,,,8.823529412,3,340,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,25.60098308,10,39061,12.27666649,47.08111938,,,,,,,,,,,,,,,,,,,50,,500,,,25,0,0.594971429,2603,4375,,,0.626,,,,,70.54526183,,,,,0.752297243,1883,2503,0.680581852,0.824012635,0.099272572,232,2337,0.040480598,0.158064546,0.806232521,2018,2503,0.73433151,0.878133532,5679,,,,,0.231378764,1314,5679,,,0.193519986,1099,5679,,,0.126078535,716,5679,,,0.004050009,23,5679,,,0.009156542,52,5679,,,0.000528262,3,5679,,,0.030287022,172,5679,,,0.800669132,4547,5679,,,0.002605621,14,5373,0,0.019808412,0.513646769,2917,5679,,,0.006449364,37,5737,, -51,590,51590,VA,Danville city,2024,1,16344.01677,1109,110991,14810.22713,17877.80641,0,,,,2,,,,2,16968.59251,14780.26191,19156.9231,,,,,2,16704.39782,14168.41056,19240.38508,,,,,2,,0.236,,,0.204,0.269,4.401794088,,,3.563455367,5.315561057,5.565302913,,,4.514237353,6.687663095,0.143808659,475,3303,0.131841812,0.155775505,0,,,,,,,0.186058981,0.16839704,0.203720923,0.114173228,0.075062513,0.153283943,0.088044486,0.071136835,0.104952136,,,,,,,0.221,,,0.181,0.261,0.45,,,0.371,0.532,7.2,0.070795438,0.137,,,0.319,,,0.266,0.374,0.920873445,39220,42590,,,0.126549104,,,0.099997376,0.157925311,0.185185185,5,27,0.09124211,0.297028208,750.9,317,42215,,,35.06493507,297,8470,31.07697422,39.05289591,,,,,,,37.40197064,32.02677737,42.77716391,34.375,21.54262949,52.04416311,30.1369863,23.7836383,37.66606204,,,,,,,0.088332591,2777,31438,0.075226208,0.101438974,0.001113348,47,42215,,,898.1914894,0.001184021,50,42229,,,844.58,0.003930948,166,42229,,,254.3915663,2875,,,,,,,4272,,2461,0.51,,,,,,0.57,0.49,,0.52,0.49,,,,,,0.64,0.38,0.53,0.53,0.844243103,24879,29469,0.824409951,0.864076255,0.472429812,4678,9902,0.413089481,0.531770143,0.046438305,869,18713,,,0.353,3233,,0.242191489,0.463808511,,,,0.024590164,0,0.638479887,0.423018868,0.330349669,0.515688067,0.645808737,0.487079609,0.804537864,0.261904762,0.181314515,0.342495009,5.257438713,84282,16031,4.424737097,6.090140328,0.523170993,4877,9322,0.449888268,0.596453719,19.1874926,81,42215,,,135.8169364,277,203951,119.8224567,151.8114161,,,,,,,104.7512878,85.08591455,124.416661,,,,185.3259837,156.2435942,214.4083731,,,,8,,,,,,,,,,0.172460991,3150,18265,0.145981663,0.198940319,0.151178918,0.12676144,0.175596397,0.02053107,0.009019602,0.032042539,0.009307419,0.002982334,0.015632503,0.782346355,12577,16076,0.74986744,0.81482527,,,,,,,0.784028827,0.730416799,0.837640855,0.773979107,0.588485796,0.959472419,0.901284697,0.871827988,0.930741405,0.172,,16076,0.140975484,0.203024516,69.35583982,,,68.41247872,70.29920093,,,,,,,69.1229162,67.76231786,70.48351454,,,,68.85708929,67.36160808,70.35257051,,,,737.0092006,1109,110991,689.8294869,784.1889143,,,,,,,721.8026723,655.2998233,788.3055214,,,,791.4297644,716.3089402,866.5505886,,,,118.1349755,47,39785,86.80113653,157.0944737,,,,,,,142.0332272,97.76913821,199.4674583,,,,98.64586136,49.24365857,176.5046948,,,,15.71471744,52,3309,11.73650263,20.60776118,,,,,,,19.27083333,13.56844509,26.56230528,,,,,,,,,,,,,0.139,,,0.121,0.16,0.191,,,0.165,0.217,0.147,,,0.127,0.168,505.6,180,35601,,,0.137,5830,,,,0.070795438,3048.097591,43055,,,36.02777414,44,122128,26.17783584,48.36560517,,,,,,,19.09702882,9.867713463,33.35866615,,,,60.4534005,40.78765546,86.3009882,,,,0.416,,,0.403,0.43,0.109406006,2481,22677,0.091533666,0.127278347,0.034598335,320,9249,0.022683441,0.046513229,0.002510123,106,42229,,,398.3867925,0.75,282,376,,,,,,,,2.542529854,,,,,,,2.410174297,2.543815744,2.942693999,,,,,,,,,,,0.040623123,,,,,-18717.63,,,,,0.756844491,37071,48981,0.683230813,0.830458168,40799,,,36060.44681,45537.55319,,,,101321,20415.29787,182226.7021,35590,30136.55319,41043.44681,,,,46569,42612.06383,50525.93617,,,,,,0.948737279,5034,5306,,,28.38037191,,,,,0.366969779,,40799,,,8.834665545,21,2377,,,25.00599102,72,287931,19.56564791,31.49090721,,,,,,,36.40359915,27.26879383,47.61680399,,,,11.57656242,6.329014402,19.42350466,,,,13.96391434,33,203951,9.278919668,20.18174414,16.18035705,,,,,,,,,,,,,25.09877662,15.11110309,39.19484873,,,,30.88977254,63,203951,23.73654937,39.52143764,,,,,,,32.67471362,22.62818904,45.65963721,,,,29.69967687,19.22006492,43.84258185,,,,18.0598824,52,287931,13.487984,23.68313302,,,,,,,17.85836939,11.6656798,26.16664887,,,,19.84553558,12.71540911,29.52858385,,,,58.20512821,,3900,,,206,21,0.629847847,19456,30890,,,0.581,,,,,78.14708031,,,,,0.494854705,9281,18755,0.465963434,0.523745977,0.175153425,3168,18087,0.147903977,0.202402874,0.743321781,13941,18755,0.715519449,0.771124113,42229,,,,,0.22051197,9312,42229,,,0.213928817,9034,42229,,,0.519950745,21957,42229,,,0.004688721,198,42229,,,0.013616235,575,42229,,,0.000876175,37,42229,,,0.053280921,2250,42229,,,0.395628597,16707,42229,,,0.013818563,554,40091,0.007304378,0.020332748,0.538800351,22753,42229,,,0.032261094,1374,42590,, -51,595,51595,VA,Emporia city,2024,1,20918.2629,165,14614,16034.73851,25801.78728,0,,,,2,,,,2,25651.87355,18901.16845,32402.57865,,,,,2,13291.88616,7077.369577,22729.53014,1,,,,2,,0.284,,,0.246,0.323,5.033146449,,,4.06697554,6.06538633,5.985608109,,,4.799328136,7.273975888,0.112781955,45,399,0.081743177,0.143820733,0,,,,,,,0.123287671,0.085577976,0.160997367,,,,,,,,,,,,,0.25,,,0.207,0.294,0.473,,,0.385,0.564,8.1,0.017611969,0.123,,,0.36,,,0.304,0.42,0.85865418,4951,5766,,,0.118069962,,,0.092422248,0.148495547,0.5,1,2,0.104528646,0.771195053,723.5,41,5667,,,22.96964725,28,1219,15.26316379,33.19753564,,,,,,,27.56892231,17.27729683,41.73967968,,,,,,,,,,,,,0.093475243,404,4322,0.077985881,0.108964605,,0,5667,,,,0.000912242,5,5481,,,1096.2,0.004378763,24,5481,,,228.375,2541,,,,,,,2111,,1752,0.43,,,,,,,0.48,,0.38,0.45,,,,,,,0.38,,0.5,0.769049489,2937,3819,0.713325904,0.824773075,0.454992968,647,1422,0.318973324,0.591012612,0.047008547,110,2340,,,0.332,449,,0.205702128,0.458297872,,,,,,,0.172458173,0,0.345714845,,,,0.1,0,0.432333524,4.740982044,89505,18879,2.060894076,7.421070012,0.351888668,531,1509,0.162200903,0.541576433,22.93982707,13,5667,,,123.7206164,33,26673,85.16357955,173.7497442,,,,,,,136.0785706,86.26214079,204.1846698,,,,,,,,,,7.6,,,,,,,,,,0.178313253,370,2075,0.095424465,0.261202041,0.16097561,0.076611167,0.245340053,0.021686747,0,0.063022409,0,0,0.014617045,0.752297794,1637,2176,0.640777902,0.863817686,,,,,,,0.830451489,0.714255745,0.946647233,,,,0.858162355,0.556277933,1,0.258,,2176,0.152051201,0.363948799,67.26194195,,,64.40936204,70.11452187,,,,,,,64.229937,60.58804739,67.87182662,,,,,,,,,,918.0033699,165,14614,768.8872959,1067.119444,,,,,,,1097.553248,891.4316615,1303.674834,,,,643.9823746,427.9216111,930.733833,,,,178.7949222,10,5593,85.7391149,328.8102278,,,,,,,256.6076469,123.0533409,471.910599,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.158,,,0.137,0.181,0.205,,,0.178,0.234,0.17,,,0.148,0.194,473.4,22,4647,,,0.123,710,,,,0.017611969,104.3861378,5927,,,,,,,,,,,,,,,,,,,,,,,,,,0.438,,,0.423,0.451,0.116644385,349,2992,0.095197577,0.138091194,0.042857143,60,1400,0.028559271,0.057155015,0.002189382,12,5481,,,456.75,0.875,159.25,182,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-8703.771,,,,,0.723139271,36580,50585,0.53910808,0.907170461,43496,,,37010.7234,49981.2766,,,,,,,35763,27471.42553,44054.57447,,,,58906,27711.61702,90100.38298,,,,,,0.994836489,578,581,,,60.72067312,,,,,0.372907854,,43496,,,8.498583569,3,353,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,50,,600,,,24,6,0.649591281,2384,3670,,,0.591,,,,,115.4656151,,,,,0.400445434,899,2245,0.327007362,0.473883507,0.189873418,420,2212,0.10584566,0.273901176,0.818708241,1838,2245,0.725416374,0.912000108,5481,,,,,0.250684182,1374,5481,,,0.197774129,1084,5481,,,0.636562671,3489,5481,,,0.006933041,38,5481,,,0.008392629,46,5481,,,0.001277139,7,5481,,,0.06860062,376,5481,,,0.263273125,1443,5481,,,0.011156564,60,5378,0,0.033721264,0.536763364,2942,5481,,,0.04977454,287,5766,, -51,600,51600,VA,Fairfax city,2024,1,7970.982092,336,67259,6765.840634,9176.12355,0,,,,2,5326.829432,3510.414161,7750.257155,,16243.16578,10179.50551,24592.34819,1,6521.082448,4178.18057,9702.853776,1,8703.918854,6914.513632,10493.32408,,,,,2,,0.119,,,0.1,0.139,2.950707321,,,2.311026074,3.659693443,4.347079369,,,3.521829475,5.252689784,0.061874431,272,4396,0.054752245,0.068996618,0,,,,0.068744271,0.053730271,0.083758272,0.093373494,0.06207575,0.124671239,0.063968668,0.046639787,0.08129755,0.053639847,0.043975716,0.063303978,,,,,,,0.102,,,0.078,0.129,0.286,,,0.224,0.357,9.3,0.015896525,0.065,,,0.186,,,0.148,0.226,1,24146,24146,,,0.177102762,,,0.141237316,0.21543621,0,0,6,0,0.28246769,313.1,76,24276,,,10.62445794,49,4612,7.860032469,14.04609683,,,,,,,,,,33.39517625,23.38957089,46.23300045,,,,,,,,,,0.087375804,1794,20532,0.074269421,0.100482187,8.23859E-05,2,24276,,,12138,,0,24835,,,,0.019971814,496,24835,,,50.07056452,1658,,,,,,1253,2418,1628,1567,0.38,,,,,,0.32,0.39,0.24,0.4,0.54,,,,,,0.57,0.4,0.46,0.55,0.92232296,15056,16324,0.895122097,0.949523823,0.824612108,5421,6574,0.744445365,0.904778852,0.024441179,316,12929,,,0.065,397,,0.041170213,0.088829787,,,,0.013452915,0,0.093628268,,,,0.137598598,0.029415993,0.245781202,0.088258786,0.021912879,0.154604693,4.678444672,237272,50716,3.938080464,5.418808881,0.13559322,760,5605,0.05556612,0.215620321,25.95155709,63,24276,,,85.55172557,103,120395,69.02958805,102.0738631,,,,79.81907676,47.30584356,126.1485534,202.6929202,110.8141056,340.0842786,56.37243388,29.12845919,98.47129726,88.18074011,66.95933299,113.994055,,,,8.4,,,,,,,,,,0.160571429,1405,8750,0.127115897,0.19402696,0.152023121,0.118001153,0.18604509,0.018285714,0.006488457,0.030082972,0.002857143,0,0.008088364,0.616085915,7974,12943,0.579233046,0.652938785,,,,0.74970012,0.68855181,0.81084843,0.822714681,0.776136072,0.869293291,0.61914557,0.580112527,0.658178612,0.776882079,0.754985332,0.798778825,0.51,,12943,0.449915376,0.570084624,75.74972293,,,74.76618939,76.73325648,,,,77.20092503,75.30130193,79.10054814,,,,77.59306807,74.56296532,80.62317082,75.48029168,74.12194939,76.83863398,,,,408.5989575,336,67259,363.9062273,453.2916877,,,,289.1884452,208.4215946,390.8987671,847.7383732,583.5440891,1190.539862,363.1053673,252.9161925,504.9916671,433.2459811,372.618074,493.8738882,,,,43.89290132,11,25061,21.91117819,78.53652493,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.082,,,0.069,0.095,0.133,,,0.113,0.153,0.09,,,0.076,0.105,410.8,82,19963,,,0.065,1570,,,,0.015896525,358.7050901,22565,,,27.88466901,20,71724,17.03268025,43.0656097,,,,,,,,,,,,,41.30417947,23.60890739,67.07539974,,,,0.317,,,0.304,0.33,0.10007438,1480,14789,0.083393529,0.116755231,0.055667001,333,5982,0.037794661,0.073539341,0.002093819,52,24835,,,477.5961539,,,,,,,,,,,2.796009738,,,,,,,,2.2972664,3.053781489,,,,,,,,,,,0.011403256,,,,,,,,,,0.797129637,77870,97688,0.653324957,0.940934317,122790,,,109251.1064,136328.8936,,,,135066,80028.7234,190103.2766,,,,84346,69328.46809,99363.53192,146885,125963.6383,167806.3617,,,,,,0.304588608,1540,5056,,,45.52537807,,,,,0.320066781,,122790,,,11.31861913,20,1767,,,,,,,,,,,,,,,,,,,,,,,,,,25.78797965,31,120395,17.39904158,36.81394444,25.7485776,,,,,,,,,,,,,24.97087251,13.97600779,41.18565676,,,,10.79779061,13,120395,5.749368737,18.46455079,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2100,,,,,0.861789137,13487,15650,,,0.773,,,,,261.6909362,,,,,0.682550115,6231,9129,0.647639826,0.717460404,0.163463712,1446,8846,0.125195912,0.201731513,0.963961003,8800,9129,0.941291943,0.986630064,24835,,,,,0.250533521,6222,24835,,,0.143185021,3556,24835,,,0.059714113,1483,24835,,,0.008294745,206,24835,,,0.200563721,4981,24835,,,0.002013288,50,24835,,,0.188202134,4674,24835,,,0.519146366,12893,24835,,,0.056529867,1270,22466,0.040107693,0.072952041,0.506663982,12583,24835,,,0,0,24146,, -51,610,51610,VA,Falls Church city,2024,1,6854.925237,150,41377,5191.439747,8518.410727,0,,,,2,,,,2,22992.07222,9926.344855,45303.54812,1,23155.42702,15386.6131,33466.03913,,3330.253945,2155.164762,4916.111775,,,,,2,,0.084,,,0.071,0.101,2.424299676,,,1.82992667,3.095928872,4.003557653,,,3.130023793,4.936606985,0.054074638,71,1313,0.041841188,0.066308088,0,,,,0.076086957,0.037776457,0.114397456,,,,0.109452736,0.066290907,0.152614565,0.036729858,0.024039656,0.049420059,,,,,,,0.075,,,0.056,0.101,0.309,,,0.239,0.385,,,0.056,,,0.134,,,0.106,0.166,1,14658,14658,,,0.19889675,,,0.159314085,0.24332067,,,,,,207,30,14493,,,5.003126954,16,3198,2.859719341,8.124764727,,,,,,,,,,37.12871287,20.78065875,61.23816552,,,,,,,,,,0.04416905,556,12588,0.037020114,0.051317986,0.00296695,43,14493,,,337.0465116,0.003496504,51,14586,,,286,0.01611134,235,14586,,,62.06808511,1108,,,,,,,,,904,0.44,,,,,,0.51,0.21,0.29,0.45,0.59,,,,,,0.66,0.53,0.46,0.6,0.974052718,9460,9712,0.960818006,0.987287431,0.925571505,3482,3762,0.833166329,1,0.022045958,189,8573,,,0.031,108,,0.019085106,0.042914894,,,,,,,,,,,,,0.011073254,0,0.037573289,,,,,,0.138087153,488,3534,0.075996063,0.200178244,13.7997654,20,14493,,,61.56287622,45,73096,44.90438436,82.37597201,,,,,,,,,,124.3162606,59.61447907,228.6220294,51.99707276,34.26639859,75.65301091,,,,8.4,,,,,,,,,,0.146536412,825,5630,0.096599842,0.196472982,0.117312478,0.067835762,0.166789194,0.030195382,0.012965378,0.047425385,0.005328597,0,0.012608642,0.509562154,4050,7948,0.463113537,0.556010771,,,,0.537426409,0.458021693,0.616831125,0.660493827,0.539719595,0.781268059,0.569135163,0.466512406,0.67175792,0.591012947,0.513547848,0.668478047,0.376,,7948,0.295479646,0.456520354,77.36864667,,,75.96519199,78.77210135,,,,,,,,,,,,,80.50274969,79.20374656,81.80175283,,,,304.4566408,150,41377,254.8103474,354.1029342,,,,,,,1158.218801,716.9556928,1770.46047,841.5698441,592.542835,1159.993174,191.6406323,149.6729238,241.7285813,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.066,,,0.056,0.077,0.118,,,0.1,0.137,0.069,,,0.059,0.081,347.6,42,12082,,,0.056,810,,,,,,12332,,,27.43421504,12,43741,14.17565924,47.92205265,,,,,,,,,,,,,,,,,,,0.299,,,0.284,0.313,0.049726226,445,8949,0.041385801,0.058066652,0.031903766,122,3824,0.022371851,0.041435681,0.00308515,45,14586,,,324.1333333,0.97,199.82,206,,,,,,,,3.714124391,,,,,,,,3.128573052,3.913638064,,,,,,,,,,,0.004461985,,,,,11462.01,,,,,0.701106585,103273,147300,0.587872769,0.814340401,142513,,,123938.8723,161087.1277,,,,122216,66070.6383,178361.3617,,,,66719,28867.76596,104570.234,176929,164706.7021,189151.2979,,,,,,0.028414756,57,2006,,,10.73065852,,,,,0.275771333,,142513,,,15.93625498,12,753,,,,,,,,,,,,,,,,,,,,,,,,,,14.98942969,11,73096,7.482669292,26.82023021,15.04870308,,,,,,,,,,,,,19.85282845,9.520202913,36.51005836,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3.333333333,,1800,,,6,0,0.875334988,8819,10075,,,0.791,,,,,269.4841496,,,,,0.555923345,3191,5740,0.508366416,0.603480274,0.10154603,578,5692,0.064819514,0.138272545,0.965505227,5542,5740,0.942203985,0.988806468,14586,,,,,0.241121624,3517,14586,,,0.150761004,2199,14586,,,0.045248869,660,14586,,,0.007267243,106,14586,,,0.098930481,1443,14586,,,0.001439737,21,14586,,,0.115658851,1687,14586,,,0.694364459,10128,14586,,,0.022276692,309,13871,0.010397655,0.03415573,0.504799122,7363,14586,,,0,0,14658,, -51,620,51620,VA,Franklin city,2024,1,17924.74508,241,22004,14409.41559,21440.07457,0,,,,2,,,,2,21889.40616,16828.03062,26950.78171,,,,,2,13893.70237,8991.271613,20509.84548,1,,,,2,,0.227,,,0.194,0.26,4.418857541,,,3.541003553,5.430306857,5.679874498,,,4.55937571,6.943843529,0.126470588,129,1020,0.106072497,0.146868679,0,,,,,,,0.163907285,0.134384049,0.19343052,,,,0.072351421,0.046539766,0.098163077,,,,,,,0.208,,,0.169,0.248,0.439,,,0.353,0.529,5.4,0.274323051,0.124,,,0.301,,,0.247,0.356,0.873227384,7143,8180,,,0.130461508,,,0.103508111,0.163094101,,,,,,888.4,73,8217,,,38.85853066,64,1647,29.92580361,49.62147614,,,,,,,47.0046083,34.99801828,61.80237915,,,,30.37974684,15.6976585,53.06730392,,,,,,,0.076115897,486,6385,0.063009514,0.08922228,0.00109529,9,8217,,,913,0.000606281,5,8247,,,1649.4,0.002061356,17,8247,,,485.1176471,3441,,,,,,,3521,,3373,0.47,,,,,,,0.5,,0.46,0.49,,,,,,,0.35,,0.54,0.842551688,4768,5659,0.786479842,0.898623533,0.51614435,1087,2106,0.387226121,0.645062579,0.040798611,141,3456,,,0.306,663,,0.189234043,0.422765957,,,,,,,0.385532591,0.195703394,0.575361789,,,,,,,4.91633959,115239,23440,3.084560132,6.748119049,0.291211401,613,2105,0.156121165,0.426301638,14.60387003,12,8217,,,106.9492116,43,40206,77.39967471,144.0598861,,,,,,,101.1923094,64.14724377,151.838149,,,,132.8815361,81.16749442,205.2247552,,,,7.2,,,,,,,,,,0.152204836,535,3515,0.091829478,0.212580195,0.14,0.084081247,0.195918753,0.011095306,0,0.028659156,0.012802276,0,0.02895386,0.849420849,2860,3367,0.821548808,0.877292891,,,,,,,0.878001298,0.766739078,0.989263517,,,,0.861207898,0.797421568,0.924994228,0.316,,3367,0.209336744,0.422663256,67.93071053,,,65.84710563,70.01431543,,,,,,,64.56730097,61.82318344,67.3114185,,,,71.5821472,67.97439416,75.18990023,,,,824.0039871,241,22004,711.636271,936.3717033,,,,,,,1032.01482,861.59314,1202.4365,,,,620.1718953,467.1983446,807.2389669,,,,147.1253961,13,8836,78.33807708,251.5889081,,,,,,,194.8627104,97.27476293,348.6632155,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.135,,,0.117,0.155,0.189,,,0.164,0.216,0.142,,,0.122,0.163,377.1,25,6629,,,0.124,1020,,,,0.274323051,2354.240419,8582,,,,,,,,,,,,,,,,,,,,,,,,,,0.41,,,0.395,0.425,0.092272203,400,4335,0.075591352,0.108953054,0.042227378,91,2155,0.026738017,0.05771674,0.001576331,13,8247,,,634.3846154,0.875,78.75,90,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.005500233,,,,,-22947.81,,,,,0.713590552,41207,57746,0.615559739,0.811621364,54594,,,49023.78723,60164.21277,,,,,,,45714,23744.12766,67683.87234,,,,72100,50622.21277,93577.78723,,,,,,0.989919355,982,992,,,71.32271919,,,,,0.331373411,,54594,,,9.966777409,6,602,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,27.35910063,11,40206,13.65756446,48.95298839,,,,,,,,,,,,,,,,,,,17.5432441,10,57002,8.412667444,32.26265051,,,,,,,,,,,,,,,,,,,26.66666667,,900,,,19,5,0.686486487,4064,5920,,,0.64,,,,,60.77943582,,,,,0.556285458,1863,3349,0.499847884,0.612723033,0.188578601,601,3187,0.122074857,0.255082344,0.851597492,2852,3349,0.795144032,0.908050952,8247,,,,,0.26555111,2190,8247,,,0.190372257,1570,8247,,,0.548926883,4527,8247,,,0.004850249,40,8247,,,0.008609191,71,8247,,,0.000485025,4,8247,,,0.031890384,263,8247,,,0.382078332,3151,8247,,,0.002109148,16,7586,,,0.546501758,4507,8247,,,0.039486553,323,8180,, -51,630,51630,VA,Fredericksburg city,2024,1,10532.48364,415,82807,9183.440694,11881.52658,0,,,,2,,,,2,14738.22915,11498.3865,17978.07181,,,,,2,9537.962744,7884.23415,11191.69134,,,,,2,,0.151,,,0.128,0.175,3.498225794,,,2.768991989,4.297615479,5.21525603,,,4.218934099,6.251204849,0.088855422,236,2656,0.078034166,0.099676677,0,,,,,,,0.141361257,0.116656543,0.166065971,0.067873303,0.044423894,0.091322712,0.060386473,0.047138796,0.073634151,,,,0.157303371,0.081660899,0.232945842,0.14,,,0.111,0.172,0.361,,,0.286,0.437,8.2,0.03791873,0.106,,,0.223,,,0.182,0.266,1,27982,27982,,,0.188208097,,,0.150351554,0.227785053,0.4,4,10,0.227273625,0.556899967,546.4,155,28367,,,11.41226819,120,10515,9.370354327,13.45418205,,,,,,,17.40294511,12.37519522,23.79039887,50.60728745,37.56170419,66.71939946,4.20233463,2.769365001,6.114176256,,,,,,,0.099209486,2259,22770,0.082528635,0.115890337,0.001762612,50,28367,,,567.34,0.002051674,59,28757,,,487.4067797,0.00831102,239,28757,,,120.3221757,4127,,,,,,,8598,,3276,0.39,,,,,,0.4,0.37,0.31,0.39,0.46,,,,,,0.48,0.33,0.28,0.48,0.92543055,15637,16897,0.909203859,0.941657241,0.712197715,5360,7526,0.631220151,0.793175278,0.033639144,484,14388,,,0.198,1156,,0.127702128,0.268297872,,,,0.112903226,0,0.350587119,0.57220339,0.393274142,0.751132638,0.227390181,0.052511941,0.402268421,0.178318584,0.059017013,0.297620156,5.383777899,168130,31229,4.393761528,6.373794269,0.433072207,2543,5872,0.323216136,0.542928279,14.45341418,41,28367,,,90.0283243,130,144399,74.55215179,105.5044968,,,,,,,90.20386073,60.86016604,128.7716201,68.38669568,34.13839209,122.3626889,99.25675596,79.1710758,122.8866178,,,,7.9,,,,,,,,,,0.19755877,2185,11060,0.166008393,0.229109148,0.163487738,0.131880915,0.195094562,0.030741411,0.01685724,0.044625581,0.015370705,0.005284889,0.025456521,0.64776369,9298,14354,0.600497937,0.695029442,,,,0.59824781,0.472125711,0.724369909,0.776143415,0.732307769,0.819979062,0.699899967,0.601716527,0.798083407,0.8220269,0.785521276,0.858532523,0.395,,14354,0.332848096,0.457151904,74.52384105,,,73.43763196,75.61005014,,,,,,,70.88605237,68.6355734,73.13653133,81.12314294,75.38636751,86.85991836,75.22675581,73.89641845,76.55709318,,,,506.14031,415,82807,456.3872019,555.8934181,,,,,,,665.1781614,546.6465252,783.7097976,,,,489.3737847,427.3151609,551.4324085,,,,57.53556017,18,31285,34.09921937,90.93099015,,,,,,,,,,,,,,,,,,,10.03717472,27,2690,6.614561387,14.60356225,,,,,,,,,,,,,,,,,,,,,,0.102,,,0.087,0.118,0.16,,,0.137,0.183,0.103,,,0.088,0.119,447.7,107,23899,,,0.106,2960,,,,0.03791873,920.8942694,24286,,,43.73093964,38,86895,30.94661562,60.02413133,,,,,,,50.04003203,23.99614039,92.02540053,,,,51.45559976,33.61250612,75.39437567,,,,0.348,,,0.333,0.361,0.115293561,1948,16896,0.093846752,0.136740369,0.054702809,335,6124,0.036830468,0.072575149,0.005633411,162,28757,,,177.5123457,0.82,191.06,233,,,,,,,,2.866403041,,,,,,,2.527857975,2.723108304,3.391340645,,,,,,,,,,,0.006890342,,,,,-6777.898,,,,,0.774227162,57954,74854,0.611851852,0.936602472,71217,,,61890.02128,80543.97872,,,,93839,14828.95745,172849.0426,70000,48774.80851,91225.19149,83795,77525.38298,90064.61702,85512,78878.97872,92145.02128,,,,,,0.582863007,1136,1949,,,24.8522652,,,,,0.306584102,,71217,,,5.549949546,11,1982,,,5.477705738,11,200814,2.734450968,9.801128663,,,,,,,,,,,,,,,,,,,14.87821889,24,144399,9.324100566,22.5258022,16.62061372,,,,,,,,,,,,,14.29467946,7.611314778,24.44433723,,,,16.62061372,24,144399,10.64914082,24.73015575,,,,,,,,,,,,,12.99790852,6.488509101,23.25684873,,,,7.967571982,16,200814,4.554155813,12.93883773,,,,,,,,,,,,,9.296507894,4.640783245,16.63402058,,,,41.25,,2400,,,55,44,0.596709917,12877,21580,,,0.673,,,,,213.1626543,,,,,0.384533523,4336,11276,0.351696262,0.417370783,0.18820759,2078,11041,0.147511852,0.228903328,0.903955303,10193,11276,0.88466595,0.923244656,28757,,,,,0.207566853,5969,28757,,,0.118892791,3419,28757,,,0.230483013,6628,28757,,,0.009284696,267,28757,,,0.034217756,984,28757,,,0.001738707,50,28757,,,0.121048788,3481,28757,,,0.565810064,16271,28757,,,0.034520445,916,26535,0.018722356,0.050318533,0.529331989,15222,28757,,,0,0,27982,, -51,640,51640,VA,Galax city,2024,1,19045.69372,221,17643,15329.17898,22762.20845,0,,,,2,,,,2,,,,2,,,,2,20221.53123,15822.90914,24620.15332,,,,,2,,0.21,,,0.177,0.245,4.556082166,,,3.686404214,5.536157855,5.847261908,,,4.722148889,7.042296325,0.132047478,89,674,0.106488754,0.157606201,0,,,,,,,,,,0.085889571,0.042873393,0.128905748,0.148148148,0.116564079,0.179732218,,,,,,,0.212,,,0.17,0.256,0.396,,,0.315,0.484,7.7,0.037832434,0.128,,,0.284,,,0.235,0.341,0.984226191,6614,6720,,,0.152427241,,,0.120932217,0.189191479,1,1,1,,,345.3,23,6660,,,44.79669194,65,1451,34.5731411,57.09706121,,,,,,,,,,47.52851711,30.75795028,70.16146711,48.71794872,34.47572006,66.86919092,,,,,,,0.12871471,693,5384,0.109650881,0.14777854,,0,6660,,,,0.001188707,8,6730,,,841.25,0.009212481,62,6730,,,108.5483871,2514,,,,,,,,,2464,0.45,,,,,,,0.46,,0.46,0.27,,,,,,,0.22,0.36,0.27,0.80234657,3556,4432,0.747882377,0.856810764,0.531060606,701,1320,0.41075064,0.651370573,0.031206171,89,2852,,,0.318,548,,0.217914894,0.418085106,,,,,,,,,,0.321144674,0.146498875,0.495790473,0.19579646,0.064595049,0.326997871,5.644614633,103923,18411,3.407185106,7.882044159,0.29623086,503,1698,0.119556836,0.472904884,16.51651652,11,6660,,,117.4615932,38,32351,83.12281427,161.2252138,,,,,,,,,,,,,144.7836519,100.8471184,201.3590112,,,,6.9,,,,,,,,,,0.158699809,415,2615,0.095543817,0.221855801,0.147024952,0.081223813,0.212826091,0.013384321,0,0.033700676,0,0,0.011598611,0.760729614,2127,2796,0.680421944,0.841037283,,,,,,,,,,,,,0.898028169,0.869571006,0.926485332,0.235,,2796,0.150656354,0.319343646,66.18723064,,,64.12474221,68.24971907,,,,,,,,,,,,,65.58548117,63.2913823,67.87958003,,,,969.2538497,221,17643,836.1631163,1102.344583,,,,,,,,,,,,,1050.064072,893.4332025,1206.694942,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.138,,,0.118,0.16,0.192,,,0.167,0.22,0.12,,,0.102,0.14,145.8,8,5485,,,0.128,860,,,,0.037832434,266.415997,7042,,,,,,,,,,,,,,,,,,,,,,,,,,0.368,,,0.353,0.384,0.158353128,600,3789,0.132140362,0.184565893,0.057738095,97,1680,0.037482776,0.077993414,0.004011887,27,6730,,,249.2592593,0.825,66,80,,,,,,,,3.012027755,,,,,,,,2.545762688,3.39169522,,,,,,,,,,,0.010805878,,,,,-9298.668,,,,,0.658613846,34514,52404,0.471577074,0.845650619,44706,,,38027.70213,51384.29787,,,,,,,39632,21154.38298,58109.61702,52973,15329.08511,90616.91489,46135,33064.3617,59205.6383,,,,,,0.631462334,855,1354,,,1.967989652,,,,,0.320941261,,44706,,,4.784688995,2,418,,,,,,,,,,,,,,,,,,,,,,,,,,38.43559942,12,32351,19.18691275,68.77190436,37.09313468,,,,,,,,,,,,,41.12078954,17.75303825,81.02434829,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,30,,700,,,6,15,0.606666667,2639,4350,,,0.629,,,,,59.01771982,,,,,0.705500382,1847,2618,0.639730518,0.771270246,0.122861586,316,2572,0.062965799,0.182757374,0.832314744,2179,2618,0.781191713,0.883437775,6730,,,,,0.259435364,1746,6730,,,0.173105498,1165,6730,,,0.053937593,363,6730,,,0.005794948,39,6730,,,0.008469539,57,6730,,,0.002674591,18,6730,,,0.178900446,1204,6730,,,0.734026746,4940,6730,,,0.030191103,188,6227,0.005596504,0.054785703,0.525557207,3537,6730,,,0.098511905,662,6720,, -51,650,51650,VA,Hampton city,2024,1,10422.97349,2329,381282,9798.771695,11047.17528,0,,,,2,4433.879027,2360.853844,7582.06817,1,11676.4981,10725.71132,12627.28488,,4808.955707,3289.322143,6788.810597,,10143.29874,9135.901714,11150.69577,,,,,2,,0.186,,,0.161,0.211,3.816095287,,,3.066678031,4.627905054,5.22390965,,,4.322587005,6.176677161,0.10150441,1174,11566,0.096000581,0.107008238,0,,,,0.100671141,0.06650785,0.134834432,0.129434837,0.120649881,0.138219793,0.087415946,0.070258112,0.104573781,0.06981177,0.062102091,0.07752145,,,,0.070175439,0.043102457,0.097248421,0.177,,,0.144,0.21,0.426,,,0.363,0.488,8.2,0.070052723,0.091,,,0.259,,,0.219,0.303,0.898350687,123207,137148,,,0.159343742,,,0.129079232,0.192725243,0.285714286,18,63,0.220362237,0.352930756,1074.4,1480,137746,,,16.41686778,517,31492,15.00172226,17.83201329,,,,,,,16.19553878,14.43744243,17.95363512,18.90941073,13.68483431,25.47085216,17.29843562,14.13678424,20.460087,,,,15.97796143,10.70069154,22.94701787,0.069549918,7629,109691,0.060018003,0.079081832,0.000370247,51,137746,,,2700.901961,0.001006976,139,138037,,,993.0719425,0.003759862,519,138037,,,265.9672447,2658,,,,,,722,3247,,2195,0.48,,,,,,0.31,0.5,0.33,0.47,0.43,,,,,,0.42,0.38,0.3,0.47,0.927523858,85821,92527,0.918695429,0.936352287,0.686203169,26027,37929,0.642978936,0.729427403,0.038484191,2483,64520,,,0.208,6034,,0.141276596,0.274723404,,,,0.064285714,0,0.373798136,0.304060235,0.248655817,0.359464654,0.155697098,0.084108875,0.227285322,0.126823388,0.086958957,0.166687818,4.245621499,119752,28206,3.918524611,4.572718387,0.402853331,11775,29229,0.356434087,0.449272574,8.929478896,123,137746,,,85.11870809,576,676702,78.16734693,92.07006925,,,,,,,78.99879423,69.5050896,88.49249886,40.33023344,23.4938472,64.57261059,108.350502,95.52094332,121.1800607,,,,6.5,,,,,,,,,,0.182696691,10020,54845,0.164200824,0.201192557,0.169471154,0.151121253,0.187821055,0.014586562,0.009615719,0.019557406,0.004011305,0.001688311,0.006334298,0.792733266,53389,67348,0.775335083,0.810131449,,,,0.827289211,0.756368623,0.8982098,0.754600993,0.717311479,0.791890507,0.796856106,0.740281886,0.853430327,0.843238379,0.819674217,0.86680254,0.265,,67348,0.239640583,0.290359417,75.0027434,,,74.50373496,75.50175184,,,,83.88279913,79.97217098,87.79342728,73.918823,73.18273939,74.65490661,86.38912034,81.06997464,91.70826604,75.11531757,74.34691839,75.88371675,,,,502.9073738,2329,381282,481.5002944,524.3144532,,,,228.1071208,149.0071446,334.2297833,555.6684622,523.8357594,587.5011649,208.7385296,146.1978999,288.982111,492.2746246,458.3431969,526.2060524,,,,72.3043786,95,131389,58.49856005,88.38835338,,,,,,,88.63220494,67.9538033,113.6224867,,,,60.1355784,37.68664682,91.04598838,,,,7.590787544,88,11593,6.088033578,9.352062559,,,,,,,10.15138023,7.688556253,13.15229054,,,,4.884856944,3.023803439,7.467022734,,,,,,,0.113,,,0.098,0.129,0.168,,,0.145,0.191,0.125,,,0.108,0.143,560.6,653,116473,,,0.091,12450,,,,0.070052723,9627.76603,137436,,,33.60149122,137,407720,27.97478372,39.22819872,,,,,,,26.03207348,19.49980939,34.05059305,,,,50.57563053,39.84784446,63.30294334,,,,0.405,,,0.391,0.418,0.084027923,6825,81223,0.07092154,0.097134306,0.029498426,881,29866,0.019966511,0.039030341,0.001122887,155,138037,,,890.5612903,0.92,1345.96,1463,,,0.08983354,653,7269,0.039406542,0.140260538,3.073812531,,,,,,,2.926609861,3.16417841,3.304443626,,,,,,,,,,,0.047738936,,,,,-6796.479,,,,,0.775797177,44523,57390,0.727185224,0.824409131,64086,,,60024.21277,68147.78723,71111,15718.65957,126503.3404,65028,42664.93617,87391.06383,55160,50666.89362,59653.10638,57410,47669.57447,67150.42553,76280,72120.51064,80439.48936,,,,,,0.585546476,11465,19580,,,33.81667372,,,,,0.282292544,,64086,,,5.518234165,46,8336,,,14.54827603,138,948566,12.12095029,16.97560177,,,,,,,24.92830449,20.41124426,29.44536472,,,,4.999750013,2.963168725,7.901760542,,,,12.74915193,86,676702,10.12466692,15.84603177,12.708696,,,,,,,6.415309939,4.020440584,9.712856345,,,,22.0339076,16.24606408,29.21376481,,,,20.68857488,140,676702,17.26150761,24.11564215,,,,,,,27.91686713,22.55967034,34.1631752,,,,14.63127217,10.30176586,20.16728137,,,,10.96391817,104,948566,8.856720935,13.0711154,,,,,,,11.29230887,8.458714239,14.77061804,,,,11.38831947,8.172454674,15.44954129,,,,41.77419355,,12400,,,420,98,0.63098632,65957,104530,,,0.679,,,,,149.1931512,,,,,0.555803028,31942,57470,0.536180197,0.575425858,0.183716373,10312,56130,0.163677861,0.203754885,0.887228119,50989,57470,0.872577927,0.901878311,138037,,,,,0.213232684,29434,138037,,,0.167404392,23108,138037,,,0.502734774,69396,138037,,,0.005556481,767,138037,,,0.026695741,3685,138037,,,0.001832842,253,138037,,,0.070495592,9731,138037,,,0.357324486,49324,138037,,,0.007960338,1026,128889,0.005111721,0.010808955,0.519288307,71681,138037,,,0.003157173,433,137148,, -51,660,51660,VA,Harrisonburg city,2024,1,5529.854342,405,151047,4790.436671,6269.272013,0,,,,2,,,,2,7423.085489,4803.829538,10957.93852,1,4448.736177,3232.458517,5972.220671,,5961.776898,4905.10996,7018.443837,,,,,2,,0.206,,,0.177,0.236,4.446252439,,,3.603214891,5.388192795,5.617823484,,,4.562652098,6.725672819,0.071969697,323,4488,0.064408587,0.079530807,0,,,,,,,0.111111111,0.081779274,0.140442948,0.067897558,0.055864123,0.079930993,0.067462139,0.056930626,0.077993651,,,,,,,0.185,,,0.149,0.221,0.378,,,0.305,0.458,8.3,0.014741575,0.113,,,0.285,,,0.237,0.336,0.987377929,51160,51814,,,0.179990596,,,0.142688331,0.222426303,0.363636364,4,11,0.198476333,0.520352029,991.6,510,51430,,,7.826031176,244,31178,6.844050974,8.808011378,,,,,,,10.88731628,6.650255626,16.81457698,41.4449734,34.76773198,48.12221482,3.01627087,2.355732574,3.804615281,,,,,,,0.123078877,4845,39365,0.104015047,0.142142707,0.001341629,69,51430,,,745.3623188,0.001426952,73,51158,,,700.7945206,0.006743813,345,51158,,,148.284058,2419,,,,,,6206,1229,,2396,0.47,,,,,,0.35,0.24,0.18,0.48,0.57,,,,,,0.65,0.35,0.24,0.59,0.836117983,21969,26275,0.81322524,0.859010726,0.614620355,7609,12380,0.555645111,0.6735956,0.03448829,860,24936,,,0.207,1733,,0.148617021,0.265382979,0.166666667,0,0.842946633,,,,0.463276836,0.23757136,0.688982313,0.225169648,0.145744708,0.304594589,0.119559073,0.064083248,0.175034898,5.205344122,110650,21257,4.610084327,5.800603917,0.245493359,2070,8432,0.192940783,0.298045935,14.38848921,74,51430,,,48.8909281,130,265898,40.48641271,57.29544349,,,,,,,,,,34.76478876,20.93067382,54.28952404,58.53545452,47.1194435,69.95146554,,,,7.1,,,,,,,,,,0.204776119,3430,16750,0.171287875,0.238264364,0.166465621,0.136989692,0.19594155,0.035522388,0.022590775,0.048454002,0.012835821,0.004165747,0.021505895,0.697197134,16442,23583,0.669546862,0.724847406,,,,0.564738292,0.413679837,0.715796747,0.628557646,0.512493526,0.744621766,0.690782953,0.642868455,0.738697452,0.809915938,0.788267968,0.831563907,0.135,,23583,0.110436818,0.159563183,78.63180356,,,77.84917297,79.41443416,,,,83.46783705,77.0341537,89.90152039,75.96348565,72.82493638,79.10203493,96.70811822,70.13147673,123.2847597,78.19454358,77.22542491,79.16366225,,,,321.9875075,405,151047,290.1944184,353.7805965,,,,,,,400.3572748,275.5875263,562.250465,228.811584,163.4663502,311.5764347,344.6548577,304.247907,385.0618084,,,,41.66736112,25,59999,26.96491916,61.50924465,,,,,,,,,,,,,,,,,,,5.72939621,26,4538,3.742631824,8.394892923,,,,,,,,,,,,,,,,,,,,,,0.131,,,0.114,0.15,0.182,,,0.157,0.206,0.13,,,0.111,0.149,179.8,81,45057,,,0.113,5890,,,,0.014741575,721.0693781,48914,,,13.95496353,22,157650,8.745501346,21.12798249,,,,,,,,,,,,,13.78821305,7.538144379,23.1342786,,,,0.371,,,0.356,0.384,0.140745522,4361,30985,0.118107224,0.16338382,0.059922534,526,8778,0.040858704,0.078986363,0.003010282,154,51158,,,332.1948052,0.887000759,1168.18,1317,,,,,,,,2.758699326,,,,,,,,2.437577841,3.237013363,,,,,,,,,,,0.014648125,,,,,-954.604,,,,,0.860627315,43682,50756,0.753020743,0.968233887,56057,,,51362.53192,60751.46809,,,,57213,46370.44681,68055.55319,41393,27130.87234,55655.12766,56109,49473.59575,62744.40426,56389,53287.55319,59490.44681,,,,,,0.723144105,4968,6870,,,20.02131707,,,,,0.311593557,,56057,,,7.3200488,18,2459,,,2.691688604,10,371514,1.290769311,4.950111178,,,,,,,,,,,,,,,,,,,12.93864218,28,265898,8.526646726,18.82504507,10.53035375,,,,,,,,,,,,,15.42295877,9.285628674,24.08486059,,,,7.145597184,19,265898,4.302116287,11.15873514,,,,,,,,,,,,,8.113825379,4.435903837,13.61362029,,,,4.306701766,16,371514,2.461652173,6.993813853,,,,,,,,,,,,,4.09999057,1.966104843,7.540028635,,,,13.14285714,,3500,,,37,9,0.430662635,17093,39690,,,0.635,,,,,170.3105482,,,,,0.381169059,6534,17142,0.350890139,0.411447978,0.199322075,3293,16521,0.168769355,0.229874795,0.819099288,14041,17142,0.790376743,0.847821833,51158,,,,,0.166992455,8543,51158,,,0.104284765,5335,51158,,,0.079596544,4072,51158,,,0.008678995,444,51158,,,0.045369248,2321,51158,,,0.002932093,150,51158,,,0.212009852,10846,51158,,,0.636811447,32578,51158,,,0.074172481,3657,49304,0.059760287,0.088584675,0.515755112,26385,51158,,,0.006214537,322,51814,, -51,670,51670,VA,Hopewell city,2024,1,17560.00783,608,63508,15613.17004,19506.84562,0,,,,2,,,,2,18034.4978,15112.56907,20956.42653,,12083.90195,6606.381641,20274.73417,1,18984.02728,15773.3225,22194.73206,,,,,2,,0.241,,,0.211,0.274,4.708145176,,,3.832878261,5.660847351,5.684778894,,,4.599235568,6.836809746,0.147296722,346,2349,0.132964614,0.16162883,0,,,,,,,0.197132617,0.173791312,0.220473921,0.063492064,0.028727193,0.098256934,0.10631579,0.086714475,0.125917104,,,,,,,0.225,,,0.189,0.265,0.456,,,0.377,0.539,6.3,0.144419069,0.144,,,0.331,,,0.282,0.387,0.9004906,20741,23033,,,0.142527249,,,0.113228431,0.17614089,0.2,1,5,0.015594715,0.47750127,911.8,211,23140,,,37.31498854,179,4797,31.84844428,42.78153279,,,,,,,38.66503867,31.28232522,47.26600473,28,15.30786055,46.97924224,43.20987654,33.20365555,55.28420253,,,,,,,0.085371602,1630,19093,0.07107373,0.099669475,0.000302507,7,23140,,,3305.714286,0.000566153,13,22962,,,1766.307692,0.001567808,36,22962,,,637.8333333,4225,,,,,,,5052,2704,4324,0.38,,,,,,0.36,0.39,,0.38,0.42,,,,,,0.35,0.32,0.28,0.46,0.868652539,13035,15006,0.839907756,0.897397322,0.521900896,3086,5913,0.426697969,0.617103824,0.044122217,426,9655,,,0.261,1481,,0.157340426,0.364659575,,,,,,,0.288064403,0.189965717,0.38616309,0.424791086,0.223263432,0.626318741,0.244013683,0.140092301,0.347935065,5.094628228,98255,19286,3.91870413,6.270552326,0.420074983,2465,5868,0.302502162,0.537647804,11.23595506,26,23140,,,157.159128,178,113261,134.0711617,180.2470944,,,,,,,128.0409731,97.94119889,164.4739865,,,,210.9788623,170.8143882,251.1433364,,,,8.1,,,,,,,,,,0.22542735,2110,9360,0.185288817,0.265565884,0.208319827,0.167702037,0.248937618,0.030982906,0.008996773,0.052969039,0.001602564,0,0.006296547,0.814017602,7677,9431,0.792688231,0.835346972,,,,,,,0.806770099,0.716008957,0.897531241,,,,0.874907476,0.82800886,0.921806092,0.381,,9431,0.305803899,0.456196101,68.51082066,,,67.32824033,69.693401,,,,,,,68.30468247,66.40735452,70.20201043,85.56215299,57.1518659,113.9724401,67.53889705,65.72934374,69.34845036,,,,829.7952818,608,63508,761.4602067,898.1303568,,,,,,,897.008632,781.6243775,1012.392887,438.4724813,271.4213768,670.2517646,873.5663698,770.2697239,976.8630157,,,,82.6511335,21,25408,51.16235431,126.3410372,,,,,,,,,,,,,,,,,,,9.185803758,22,2395,5.75669431,13.90741728,,,,,,,,,,,,,,,,,,,,,,0.146,,,0.128,0.166,0.195,,,0.171,0.222,0.147,,,0.128,0.168,473.4,89,18800,,,0.144,3330,,,,0.144419069,3262.571177,22591,,,73.48186468,50,68044,54.53965631,96.87667783,,,,,,,51.65645017,28.91172303,85.19945889,,,,108.7362805,74.3755354,153.5031842,,,,0.44,,,0.428,0.453,0.106421194,1422,13362,0.087357365,0.125485024,0.037080146,223,6014,0.023973763,0.050186529,0.000653253,15,22962,,,1530.8,0.8,251.2,314,,,,,,,,2.832209799,,,,,,,2.735917209,,3.043642224,,,,,,,,,,,0.018512439,,,,,-16298.38,,,,,0.842016917,38625,45872,0.66915708,1.014876754,53098,,,46619.87234,59576.12766,,,,,,,44137,38651.38298,49622.61702,76394,24731.02128,128056.9787,53009,44690.02128,61327.97872,,,,,,0.990674847,4037,4075,,,17.22523323,,,,,0.305472899,,53098,,,6.727828746,11,1635,,,17.67966964,28,158374,11.74801208,25.55204512,,,,,,,35.17572569,22.29839268,52.78085966,,,,,,,,,,30.28286541,32,113261,20.43172213,43.23067336,28.25332639,,,,,,,22.90758472,10.98507728,42.12786391,,,,35.33832712,19.77859343,58.2851965,,,,30.90207574,35,113261,21.52442801,42.97730672,,,,,,,44.07967927,27.28601621,67.38047215,,,,25.87476613,13.77722322,44.24663811,,,,15.15400255,24,158374,9.709455374,22.54795459,,,,,,,,,,,,,20.78915638,11.63553301,34.28855193,,,,36.8,,2500,,,67,25,0.588508558,9628,16360,,,0.607,,,,,114.0971036,,,,,0.535622593,5007,9348,0.489274173,0.581971013,0.191052398,1721,9008,0.148159514,0.233945282,0.857723577,8018,9348,0.822784863,0.892662291,22962,,,,,0.251763784,5781,22962,,,0.159393781,3660,22962,,,0.437636094,10049,22962,,,0.007708388,177,22962,,,0.014894173,342,22962,,,0.002264611,52,22962,,,0.090889295,2087,22962,,,0.416731992,9569,22962,,,0.007945039,170,21397,0.000269096,0.015620982,0.530877101,12190,22962,,,0.000347328,8,23033,, -51,678,51678,VA,Lexington city,2024,1,7174.510659,75,20572,4804.882388,10303.79407,0,,,,2,,,,2,,,,2,,,,2,6843.534664,4288.806739,10361.19373,1,,,,2,,0.15,,,0.128,0.176,3.668847504,,,2.880665151,4.586049152,5.190514856,,,4.134439111,6.361439757,0.064275037,43,669,0.045691076,0.082858999,0,,,,,,,,,,,,,0.05831904,0.039296046,0.077342033,,,,,,,0.158,,,0.125,0.197,0.364,,,0.287,0.452,7.9,0.016729781,0.131,,,0.218,,,0.178,0.265,1,7320,7320,,,0.206478383,,,0.165728381,0.251859653,,,,,,362.1,27,7456,,,5.626223092,23,4088,3.566542817,8.442097088,,,,,,,,,,,,,5.837711617,3.565825915,9.015872126,,,,,,,0.067897882,250,3682,0.055982988,0.079812775,,0,7456,,,,0.002145635,16,7457,,,466.0625,0.008314336,62,7457,,,120.2741936,1990,,,,,,,2943,,1863,0.48,,,,,,,0.43,,0.48,0.49,,,,,,,0.29,,0.49,0.961983962,3239,3367,0.939465738,0.984502186,0.908045977,1106,1218,0.714182269,1,0.04140414,92,2222,,,0.105,102,,0.064489362,0.145510638,,,,,,,,,,,,,0.087048832,0,0.273071101,4.880213652,124260,25462,2.707565975,7.052861328,0.225048924,115,511,0,0.481320277,22.80042919,17,7456,,,65.89243061,24,36423,42.21852361,98.04271365,,,,,,,,,,,,,73.56383334,46.1020627,111.3765277,,,,6.6,,,,,,,,,,0.225181598,465,2065,0.100677377,0.349685819,0.207920792,0.08318777,0.332653814,0,0,0.020771727,0.03874092,0,0.095951023,0.553472988,1506,2721,0.467436036,0.63950994,,,,,,,,,,,,,0.751187281,0.703684584,0.798689977,0.167,,2721,0.055909989,0.278090011,76.32421322,,,74.19424364,78.45418279,,,,,,,,,,,,,76.56059439,74.19263779,78.92855099,,,,414.6449853,75,20572,319.3271641,529.4923894,,,,,,,,,,,,,393.982163,292.4211553,519.4163655,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.107,,,0.093,0.125,0.165,,,0.142,0.192,0.099,,,0.085,0.116,,,,,,0.131,960,,,,0.016729781,117.8111148,7042,,,,,,,,,,,,,,,,,,,,,,,,,,0.342,,,0.325,0.36,0.078068264,215,2754,0.062578903,0.093557626,0.038065844,37,972,0.023767971,0.052363716,0.002950248,22,7457,,,338.9545455,,,,,,,,,,,3.358121745,,,,,,,,,3.334567016,,,,,,,,,,,0.017008034,,,,,2914.021,,,,,0.684210526,56667,82821,0.249211115,1.119209938,62382,,,53875.95745,70888.04255,,,,,,,73000,45847.14894,100152.8511,,,,92750,63073.57447,122426.4255,,,,,,0.47826087,704,1472,,,9.290540541,,,,,0.280000641,,62382,,,34.18803419,8,234,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,400,,,-888,-888,0.427863777,2764,6460,,,0.662,,,,,69.94137637,,,,,0.52787544,1051,1991,0.428836964,0.626913915,0.122188139,239,1956,0.034158357,0.210217921,0.858864892,1710,1991,0.791753421,0.925976363,7457,,,,,0.131017836,977,7457,,,0.144428054,1077,7457,,,0.089446158,667,7457,,,0.004023066,30,7457,,,0.027490948,205,7457,,,0.000536409,4,7457,,,0.036609897,273,7457,,,0.819096151,6108,7457,,,0,0,7138,0,0.012686073,0.511197533,3812,7457,,,0,0,7320,, -51,680,51680,VA,Lynchburg city,2024,1,10718.17458,1208,226646,9859.0885,11577.26065,0,,,,2,,,,2,15195.36997,13336.05587,17054.68407,,,,,2,8858.675003,7851.295701,9866.054304,,,,,2,,0.173,,,0.149,0.199,3.848760983,,,3.086387127,4.702429839,5.010314587,,,4.061676333,6.027692473,0.084247745,691,8202,0.078236501,0.090258988,0,,,,0.096069869,0.057901873,0.134237865,0.14657308,0.132487353,0.160658808,0.07591623,0.04935505,0.102477411,0.056076631,0.04970643,0.062446833,,,,,,,0.17,,,0.138,0.206,0.384,,,0.315,0.453,7.7,0.080284764,0.111,,,0.236,,,0.197,0.279,0.983875255,77735,79009,,,0.174703691,,,0.139554372,0.213608489,0.322580645,10,31,0.22766888,0.417943398,625.2,494,79009,,,11.7398881,384,32709,10.56565474,12.91412147,,,,,,,30.88538092,26.84969115,34.92107069,13.72315036,8.699300141,20.59146354,5.390214687,4.41349666,6.366932714,,,,22.81879195,13.29278721,36.5350964,0.074753961,4284,57308,0.064030557,0.085477365,0.001265679,100,79009,,,790.09,0.001147729,91,79287,,,871.2857143,0.007062949,560,79287,,,141.5839286,2586,,,,,,,3384,,2321,0.37,,,,,,0.25,0.38,,0.37,0.53,,,,,,0.54,0.43,0.3,0.56,0.903173238,39904,44182,0.890170335,0.916176141,0.71963021,13311,18497,0.668636456,0.770623965,0.039084576,1397,35743,,,0.239,3533,,0.166319149,0.311680851,,,,,,,0.401345699,0.321173998,0.481517401,0.177277179,0.027508563,0.327045796,0.09296445,0.051780407,0.134148494,4.297488504,109341,25443,3.852167305,4.742809702,0.415623738,6177,14862,0.358293642,0.472953835,16.45382172,130,79009,,,86.2368458,350,405859,77.20212133,95.27157027,,,,,,,94.00413264,76.10837517,111.8998901,,,,90.10504351,78.40903304,101.801054,,,,6.3,,,,,,,,,,0.146501329,4135,28225,0.125204729,0.167797928,0.123082476,0.103950688,0.142214265,0.024092117,0.014460176,0.033724058,0.003720106,0.001189128,0.006251085,0.712215838,25659,36027,0.686019983,0.738411693,,,,0.611392405,0.314489939,0.908294871,0.740182761,0.699288511,0.781077012,0.737777778,0.648544784,0.827010772,0.819764879,0.798120717,0.84140904,0.116,,36027,0.097048202,0.134951799,74.11688149,,,73.45659504,74.77716794,,,,87.94546308,81.96712002,93.92380615,70.58388212,69.30204859,71.86571565,81.28752099,76.25248258,86.32255939,75.66370386,74.85605678,76.47135094,,,,541.3827936,1208,226646,509.338715,573.4268721,,,,,,,736.1476775,667.5596256,804.7357294,,,,464.229337,426.6577468,501.8009271,,,,70.27164021,61,86806,53.75223667,90.26686164,,,,,,,93.42301943,60.45845235,137.910806,,,,52.29031583,33.83953534,77.19082137,,,,6.872852234,56,8148,5.191678717,8.9249703,,,,,,,11.82225846,7.917552033,16.9787352,,,,4.014452027,2.452131591,6.199995565,,,,,,,0.115,,,0.1,0.132,0.173,,,0.15,0.196,0.115,,,0.098,0.131,362.7,247,68096,,,0.111,8780,,,,0.080284764,6066.959065,75568,,,27.6017764,67,242738,21.39099759,35.05328034,,,,,,,32.73858242,20.5170953,49.56660722,,,,26.48725963,18.92288661,36.06812984,,,,0.358,,,0.344,0.373,0.088668687,3803,42890,0.074370815,0.10296656,0.034566603,526,15217,0.023843199,0.045290007,0.004124257,327,79287,,,242.4678899,0.83,496.34,598,,,,,,,,3.079985974,,,,,,,2.758519779,3.052930413,3.564941255,,,,,,,,,,,0.028946657,,,,,-5742.43,,,,,0.758871313,37275,49119,0.663408173,0.854334453,50494,,,45776.89362,55211.10638,26154,23332.55319,28975.44681,69816,14227.06383,125404.9362,38836,33182.38298,44489.61702,76860,49007.74468,104712.2553,65595,62316.02128,68873.97872,,,,,,0.806925633,6315,7826,,,39.88988847,,,,,0.271794669,,50494,,,8.075076386,37,4582,,,5.478164214,31,565883,3.722146801,7.775816821,,,,,,,15.26484506,9.780474263,22.71287946,,,,,,,,,,13.44548833,54,405859,9.879239096,17.87964914,13.30511335,,,,,,,8.876966505,4.059114349,16.85124755,,,,16.6325354,11.51851427,23.2423011,,,,12.81233138,52,405859,9.568861896,16.801668,,,,,,,23.05761744,15.06200124,33.78475189,,,,9.484741422,6.077052796,14.11254341,,,,9.012463707,51,565883,6.710371197,11.84972536,,,,,,,13.99277464,8.76919737,21.18522896,,,,7.622876535,5.02352367,11.09088514,,,,35.69230769,,6500,,,220,12,0.574017364,36364,63350,,,0.661,,,,,116.5763694,,,,,0.48716707,14084,28910,0.465982871,0.50835127,0.156760984,4410,28132,0.133403901,0.180118067,0.90335524,26116,28910,0.889124203,0.917586278,79287,,,,,0.190674386,15118,79287,,,0.145332778,11523,79287,,,0.275366706,21833,79287,,,0.004780103,379,79287,,,0.027848197,2208,79287,,,0.000870256,69,79287,,,0.049163167,3898,79287,,,0.619798958,49142,79287,,,0.005836498,435,74531,0.002122371,0.009550624,0.529960775,42019,79287,,,0.016162716,1277,79009,, -51,683,51683,VA,Manassas city,2024,1,8388.146037,492,120052,7418.800993,9357.491081,0,,,,2,,,,2,13046.23557,9699.288028,16393.18312,,7640.573157,6177.968216,9103.178098,,8548.377479,6843.963049,10252.79191,,,,,2,,0.158,,,0.134,0.183,3.331487295,,,2.63552574,4.133982082,4.556584139,,,3.644102115,5.582619402,0.076742365,392,5108,0.069442587,0.084042143,0,,,,0.080267559,0.049469648,0.111065469,0.103626943,0.07880147,0.128452416,0.074214313,0.064217284,0.084211341,0.071476736,0.058364878,0.084588595,,,,,,,0.132,,,0.107,0.162,0.347,,,0.274,0.426,9.7,0.018137628,0.047,,,0.227,,,0.186,0.274,1,42772,42772,,,0.181605411,,,0.143767767,0.224509866,0.333333333,3,9,0.150331965,0.513162068,526.8,225,42708,,,36.67372645,329,8971,32.71082599,40.63662691,,,,,,,25.8780037,17.19574552,37.40092047,54.39419795,47.71785621,61.07053969,14.55133387,10.19157535,20.14517966,,,,,,,0.141459146,5334,37707,0.122395316,0.160522975,0.000960008,41,42708,,,1041.658537,0.001219455,52,42642,,,820.0384615,0.003681816,157,42642,,,271.6050955,2822,,,,,,1226,3705,1201,2888,0.32,,,,,,0.23,0.32,0.24,0.33,0.47,,,,,,0.49,0.41,0.35,0.48,0.858314071,23765,27688,0.832205577,0.884422565,0.549390098,6891,12543,0.497806536,0.600973661,0.026223937,571,21774,,,0.139,1514,,0.085382979,0.192617021,,,,,,,,,,0.078326734,0.02932504,0.127328429,0.022900763,0,0.059156159,3.44053286,193702,56300,2.924583594,3.956482126,0.150904715,1693,11219,0.098650474,0.203158957,9.834223096,42,42708,,,66.4087313,138,207804,55.32868153,77.48878108,,,,,,,117.7268025,81.03771386,165.332201,36.54602279,24.47544503,52.4861849,85.45339128,66.61511073,107.965219,,,,8.1,,,,,,,,,,0.188289323,2460,13065,0.154302017,0.222276628,0.149034749,0.118657782,0.179411716,0.047072331,0.026134213,0.068010449,0.009567547,0.003723193,0.0154119,0.722507526,16320,22588,0.692790688,0.752224364,,,,0.720649652,0.60035941,0.840939894,0.807851899,0.733443517,0.882260281,0.659568041,0.576596907,0.742539175,0.780662489,0.730931959,0.830393018,0.525,,22588,0.473530969,0.576469031,76.38503282,,,75.52418028,77.24588536,,,,81.46194367,78.5770937,84.34679363,72.00437243,69.5963586,74.41238626,79.79646223,75.57213795,84.02078651,76.27749181,74.95146217,77.60352145,,,,384.5462663,492,120052,350.1076134,418.9849193,,,,,,,549.8286292,440.5758548,659.0814037,329.8032031,266.1895257,393.4168805,392.7432176,340.0665204,445.4199149,,,,45.98950603,22,47837,28.82137858,69.62866481,,,,,,,,,,43.3497537,21.64004086,77.5646838,,,,,,,4.079254079,21,5148,2.525122569,6.235573181,,,,,,,,,,,,,,,,,,,,,,0.1,,,0.085,0.115,0.144,,,0.124,0.165,0.105,,,0.09,0.122,300.7,104,34588,,,0.047,2000,,,,0.018137628,685.9832345,37821,,,38.50411513,48,124662,28.38989494,51.0508705,,,,,,,100.6691538,58.64349186,161.1810672,20.71551385,9.933894094,38.09656753,43.59740907,26.98748336,66.64327092,,,,0.347,,,0.334,0.359,0.168233013,4511,26814,0.143211736,0.193254289,0.076875823,876,11395,0.053046036,0.10070561,0.002720323,116,42642,,,367.6034483,0.74,418.1,565,,,,,,,,2.893576953,,,,,,3.642877081,3.029275736,2.601640367,3.413591905,,,,,,,,,,,0.054502642,,,,,-5858.359,,,,,0.775297123,55840,72024,0.670986716,0.879607531,97722,,,90530.17021,104913.8298,,,,123750,72940.12766,174559.8723,96283,83886.74468,108679.2553,114924,96507.14894,133340.8511,113938,101862.2553,126013.7447,,,,,,0.621524664,4851,7805,,,13.69939574,,,,,0.312805714,,97722,,,7.566585956,25,3304,,,,,,,,,,,,,,,,,,,,,,,,,,9.642418087,20,207804,5.88983947,14.89193269,9.624453812,,,,,,,,,,,,,11.62971054,5.805509601,20.80876462,,,,7.69956305,16,207804,4.400965551,12.50360801,,,,,,,,,,,,,,,,,,,10.65105428,31,291051,7.23687463,15.11832136,,,,,,,,,,10.11382652,5.048785759,18.09642937,8.531913623,4.091384214,15.69049292,,,,19.55555556,,4500,,,66,22,0.698683128,16978,24300,,,0.719,,,,,107.696433,,,,,0.739595376,10236,13840,0.708879438,0.770311314,0.137933552,1889,13695,0.106472987,0.169394118,0.95549133,13224,13840,0.934812011,0.976170648,42642,,,,,0.261127527,11135,42642,,,0.113831434,4854,42642,,,0.13568782,5786,42642,,,0.013695418,584,42642,,,0.071760236,3060,42642,,,0.002415459,103,42642,,,0.40000469,17057,42642,,,0.365883401,15602,42642,,,0.132770588,5222,39331,0.112489653,0.153051524,0.491229304,20947,42642,,,0,0,42772,, -51,685,51685,VA,Manassas Park city,2024,1,5425.994365,108,50748,3109.856584,7742.132147,1,,,,2,,,,2,,,,2,5144.051642,2738.990852,8796.484972,1,10840.35297,2235.541395,31680.11155,1,,,,2,,0.18,,,0.157,0.207,3.650630477,,,2.911575591,4.500061278,4.566199914,,,3.643964866,5.663779947,0.080188679,17,212,0.043629701,0.116747657,1,,,,,,,,,,,,,,,,,,,,,,0.141,,,0.117,0.17,0.37,,,0.294,0.453,8.8,0.10172289,0.047,,,0.261,,,0.219,0.313,1,17219,17219,,,0.176217779,,,0.140819037,0.217172682,0,0,1,0,0.662081041,629.3,107,17002,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.152421931,2338,15339,0.130975123,0.17386874,,0,17002,,,,,0,16703,,,,,0,16703,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.801159828,9118,11381,0.748760353,0.853559303,0.439041214,2546,5799,0.351559539,0.526522889,0.025280326,248,9810,,,0.153,563,,0.106531915,0.199468085,0.708029197,0.278186322,1,,,,,,,0.138069705,0.040738219,0.235401191,0.069868996,0,0.155166688,2.964332893,161568,54504,2.306965113,3.621700673,0.229141621,953,4159,0.117956189,0.340327052,4.705328785,8,17002,,,26.62591744,23,86382,16.87854766,39.95194936,,,,,,,,,,,,,48.33252779,25.73503547,82.6500945,,,,8.1,,,,,,,,,,0.16648531,765,4595,0.096883631,0.236086989,0.115342764,0.067203815,0.163481712,0.065070729,0.013773799,0.116367659,0.005440696,0,0.014360562,0.710639606,6933,9756,0.647908436,0.773370777,,,,,,,,,,0.659340659,0.510788367,0.807892952,0.803053435,0.696021786,0.910085084,0.597,,9756,0.50097601,0.69302399,85.34483058,,,81.95326564,88.73639552,,,,89.65939371,82.04854653,97.27024089,93.06419493,78.60840169,107.5199882,99.09744943,57.9999648,140.1949341,78.68696696,69.7981151,87.57581882,,,,235.9191528,108,50748,185.434089,286.4042166,,,,,,,,,,194.7479598,127.2158331,285.3508833,379.2300452,220.9154764,607.184039,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.107,,,0.094,0.124,0.149,,,0.13,0.171,0.118,,,0.102,0.137,232.3,33,14205,,,0.047,800,,,,0.10172289,1451.890804,14273,,,20.95876839,11,52484,10.46254167,37.50102605,,,,,,,,,,,,,,,,,,,0.354,,,0.342,0.366,0.174768316,1999,11438,0.147364061,0.202172572,0.087518284,359,4102,0.060114028,0.114922539,,0,16703,,,,0.83,224.1,270,,,,,,,,3.047095763,,,,,,,3.031344049,2.956536252,3.245277296,,,,,,,,,,,0.001261659,,,,,-7768.725,,,,,0.923790691,60730,65740,0.756083578,1.091497803,90816,,,78164.76596,103467.234,56413,14258.10638,98567.89362,126352,77073.19149,175630.8085,105038,83600.7234,126475.2766,80492,69470.7234,91513.2766,93850,48627.02128,139072.9787,,,,,,0.687571266,2412,3508,,,35.76439405,,,,,0.425894116,,90816,,,2.615518745,3,1147,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.5,,2000,,,12,17,0.599212598,6088,10160,,,0.732,,,,,94.30040452,,,,,0.634169699,3311,5221,0.556002344,0.712337054,0.162146455,837,5162,0.102191922,0.222100988,0.950201111,4961,5221,0.917541874,0.982860348,16703,,,,,0.22415135,3744,16703,,,0.100041909,1671,16703,,,0.135065557,2256,16703,,,0.018858888,315,16703,,,0.116386278,1944,16703,,,0.003232952,54,16703,,,0.443034186,7400,16703,,,0.281446447,4701,16703,,,0.10479117,1671,15946,0.070314335,0.139268006,0.48548165,8109,16703,,,0,0,17219,, -51,690,51690,VA,Martinsville city,2024,1,17859.60114,458,35711,15393.80885,20325.39342,0,,,,2,,,,2,19512.12122,15788.14462,23236.09782,,,,,2,18524.73778,14672.00121,22377.47435,,,,,2,,0.23,,,0.199,0.264,4.52791724,,,3.632750197,5.50294895,5.816733648,,,4.682916305,7.038027423,0.118932039,196,1648,0.103303024,0.134561054,0,,,,,,,0.171223022,0.143216215,0.199229828,0.071856287,0.032687707,0.111024868,0.085597826,0.06538546,0.105810192,,,,,,,0.211,,,0.173,0.253,0.446,,,0.359,0.53,6.2,0.141975695,0.148,,,0.299,,,0.251,0.353,0.875194661,11802,13485,,,0.139151407,,,0.108089122,0.172251015,0.25,1,4,0.023230216,0.544021398,651,88,13517,,,48.20198929,126,2614,39.78540726,56.61857132,,,,,,,30.34682081,21.87131917,41.02008582,90.25270758,58.40679367,133.2308004,65.82278481,49.15960405,86.31782499,,,,,,,0.085470086,920,10764,0.071172213,0.099767958,,0,13517,,,,,0,13725,,,,0.004881603,67,13725,,,204.8507463,2891,,,,,,,4226,,2559,0.47,,,,,,,0.48,,0.47,0.35,,,,,,,0.27,,0.37,0.864792203,7720,8927,0.843701311,0.885883096,0.569701041,1696,2977,0.463243689,0.676158394,0.045929395,255,5552,,,0.275,992,,0.164191489,0.385808511,,,,,,,0.424985057,0.269242161,0.580727953,0.341409692,0,0.758790223,0.233146067,0.114046194,0.352245941,5.294739445,85653,16177,3.567135869,7.02234302,0.480081419,1651,3439,0.316432939,0.643729899,29.59236517,40,13517,,,172.1731038,111,64470,140.1428861,204.2033215,,,,,,,130.6007635,92.86990988,178.5355431,,,,249.5098913,194.5052009,315.2407372,,,,7.6,,,,,,,,,,0.186773905,1045,5595,0.132953639,0.240594172,0.182230281,0.126515206,0.237945356,0,0,0.008518244,0.008042895,0.000418217,0.015667574,0.73417483,3897,5308,0.665677313,0.802672348,,,,,,,0.793155322,0.751339612,0.834971031,,,,0.885181551,0.825519524,0.944843577,0.195,,5308,0.138886037,0.251113963,66.65524497,,,65.28326653,68.02722342,,,,,,,65.03168142,63.07379327,66.98956957,,,,66.82795698,64.75736228,68.89855168,,,,948.6415232,458,35711,857.2674397,1040.015607,,,,,,,1050.906533,909.3101581,1192.502907,,,,956.4395623,819.144633,1093.734492,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.138,,,0.12,0.16,0.191,,,0.167,0.218,0.145,,,0.124,0.167,364.1,40,10985,,,0.148,2000,,,,0.141975695,1962.246084,13821,,,59.8553063,23,38426,37.94312975,89.81234814,,,,,,,,,,,,,108.866578,64.5212337,172.0561284,,,,0.406,,,0.392,0.419,0.108860076,806,7404,0.089796246,0.127923905,0.035127479,124,3530,0.022021096,0.048233862,0.003861567,53,13725,,,258.9622642,0.925,138.75,150,,,,,,,,2.796077449,,,,,,,2.600049836,,3.235755782,,,,,,,,,,,0.012108695,,,,,-15060.72,,,,,0.842916878,34874,41373,0.705296038,0.980537718,41500,,,36432.59575,46567.40426,,,,,,,33571,27595.68085,39546.31915,76324,38342.89362,114305.1064,51779,34115.17021,69442.82979,,,,,,0.991744634,1802,1817,,,30.86759848,,,,,0.285614458,,41500,,,11.13360324,11,988,,,13.1061599,12,91560,6.772144068,22.89382378,,,,,,,,,,,,,,,,,,,18.32437417,13,64470,9.147461562,32.7873671,20.16441756,,,,,,,,,,,,,,,,,,,27.91996277,18,64470,16.54713941,44.1255782,,,,,,,,,,,,,,,,,,,20.75141983,19,91560,12.49371032,32.4059126,,,,,,,26.12020041,13.03910994,46.73625368,,,,,,,,,,20.71428571,,1400,,,19,10,0.651948052,6024,9240,,,0.588,,,,,64.56179448,,,,,0.545309168,3069,5628,0.49337046,0.597247877,0.226230115,1223,5406,0.158464929,0.2939953,0.788557214,4438,5628,0.745799132,0.831315296,13725,,,,,0.267249545,3668,13725,,,0.170783242,2344,13725,,,0.458287796,6290,13725,,,0.004735883,65,13725,,,0.010491803,144,13725,,,0.001020036,14,13725,,,0.080364299,1103,13725,,,0.420692168,5774,13725,,,0.015488483,195,12590,0.004069001,0.026907965,0.523934426,7191,13725,,,0.000815721,11,13485,, -51,700,51700,VA,Newport News city,2024,1,10288.58861,2927,512655,9771.283944,10805.89328,0,,,,2,2539.364691,1451.466331,4123.769167,1,13805.77589,12874.62381,14736.92797,,5240.024344,4114.546158,6578.370713,,8503.226317,7781.987265,9224.46537,,,,,2,,0.19,,,0.17,0.213,3.917708893,,,3.444888162,4.542643915,5.456373807,,,4.912887551,6.187791478,0.104310947,1943,18627,0.099921314,0.108700579,0,,,,0.081936685,0.058739011,0.105134359,0.137978933,0.130706333,0.145251532,0.080414013,0.069779728,0.091048298,0.070782416,0.064449952,0.07711488,,,,0.094674556,0.069190351,0.120158761,0.181,,,0.156,0.21,0.457,,,0.423,0.506,7.9,0.071438962,0.107,,,0.27,,,0.241,0.307,0.996010674,185504,186247,,,0.176685485,,,0.15895037,0.203648526,0.375,33,88,0.321849543,0.427457361,1041.8,1923,184587,,,21.25749917,900,42338,19.86867589,22.64632245,,,,,,,28.92750972,26.40697978,31.44803966,36.02569986,30.3903787,41.66102102,11.24726218,9.647976348,12.84654801,,,,13.50308642,9.405394445,18.77952445,0.076057897,11408,149991,0.065334493,0.086781301,0.000568838,105,184587,,,1757.971429,0.000792161,146,184306,,,1262.369863,0.002045511,377,184306,,,488.8753316,2785,,,,,,920,4017,,2284,0.47,,,,,,0.41,0.43,0.38,0.49,0.45,,,,,,0.48,0.37,0.27,0.49,0.917220609,110249,120199,0.906848239,0.927592979,0.678379228,36682,54073,0.643165403,0.713593053,0.036378417,3222,88569,,,0.237,9924,,0.176234043,0.297765957,,,,0.073025335,0,0.165691004,0.283898516,0.240517718,0.327279313,0.188883342,0.12071368,0.257053003,0.076095378,0.04899328,0.103197475,4.221465443,117762,27896,3.998472878,4.444458008,0.382539348,16357,42759,0.343992831,0.421085866,10.29324925,190,184587,,,86.58123984,780,900888,80.5050327,92.65744698,,,,,,,91.03594023,81.30176153,100.7701189,46.6853408,33.35269193,63.57218367,98.7583905,88.74930789,108.7674731,,,,7.4,,,,,,,,,,0.183730018,12930,70375,0.167774025,0.199686011,0.153251445,0.139379512,0.167123379,0.025008881,0.017829652,0.03218811,0.016483126,0.010905238,0.022061015,0.754969332,69544,92115,0.739627673,0.770310991,,,,0.754281266,0.713246066,0.795316466,0.745730785,0.72729554,0.764166031,0.702140863,0.664668857,0.739612869,0.849461655,0.836378533,0.862544777,0.3,,92115,0.278853162,0.321146838,74.63335988,,,74.20859982,75.05811994,,,,85.67823104,82.88163542,88.47482666,71.25153232,70.5615685,71.94149615,83.262485,80.5241453,86.00082469,76.26827572,75.67423355,76.86231789,,,,510.4678696,2927,512655,491.4935377,529.4422015,,,,159.9196441,112.0057527,221.3961957,671.5944367,637.2929773,705.8958961,232.7527531,184.2725465,290.0793766,443.5567086,417.1388846,469.9745326,,,,71.02792024,136,191474,59.09035617,82.96548431,,,,,,,108.4219362,87.51049562,132.8241968,46.56216048,24.05934778,81.33472392,31.15571297,18.75777444,48.65350514,,,,6.911105249,131,18955,5.727606154,8.094604345,,,,,,,10.41902605,8.399205523,12.77801053,,,,,,,,,,,,,0.118,,,0.106,0.132,0.172,,,0.156,0.191,0.131,,,0.119,0.144,597.1,913,152904,,,0.107,19820,,,,0.071438962,12910.37779,180719,,,31.49902187,171,542874,26.77779268,36.22025107,,,,,,,28.64611308,22.06099767,36.58044688,22.64535487,11.70118531,39.55687767,40.32740535,32.4691112,49.51311745,,,,0.381,,,0.369,0.392,0.094519072,10266,108613,0.0802212,0.108816945,0.028905076,1250,43245,0.02056465,0.037245501,0.001725392,318,184306,,,579.5786164,0.9,1566.9,1741,,,0.080011363,845,10561,0.054998771,0.105023954,2.926829213,,,,,,3.579229668,2.708385779,2.913429144,3.306519488,,,,,,,,,,,0.058814424,,,,,-8539.457,,,,,0.778086067,42906,55143,0.731930453,0.824241681,63350,,,59918.51064,66781.48936,,,,66397,55555.6383,77238.3617,47346,45020.21277,49671.78723,67316,60624.59575,74007.40426,78825,76719.6383,80930.3617,,,,,,0.799766117,21201,26509,,,36.1707997,,,,,0.285572218,,63350,,,6.310570205,84,13311,,,14.46528253,183,1265098,12.3694458,16.56111926,,,,,,,28.03345325,23.45465589,32.61225062,11.06034696,5.889168935,18.91353014,3.516584397,2.117213526,5.491582143,,,,13.12504407,121,900888,10.73084228,15.51924586,13.43119234,,,,,,,9.290418174,6.395096391,13.04720126,,,,18.55820997,14.49411595,23.40865668,,,,20.64629566,186,900888,17.67913036,23.61346096,,,,,,,33.32565669,27.43610508,39.2152083,,,,13.46705325,10.0271057,17.70668794,,,,10.11779325,128,1265098,8.364974993,11.8706115,,,,,,,12.06995904,9.253968386,15.47314276,,,,9.439252855,7.02814375,12.41087427,,,,24.94047619,,16800,,,373,46,0.614123248,81270,132335,,,0.651,,,,,167.1823588,,,,,0.476128006,35931,75465,0.459800499,0.492455514,0.167008656,12290,73589,0.15139039,0.182626923,0.851547075,64262,75465,0.841024611,0.862069539,184306,,,,,0.230963723,42568,184306,,,0.141471249,26074,184306,,,0.415265917,76536,184306,,,0.00621792,1146,184306,,,0.034133452,6291,184306,,,0.002626068,484,184306,,,0.103241349,19028,184306,,,0.404094278,74477,184306,,,0.0144487,2486,172057,0.010692279,0.018205122,0.513233427,94592,184306,,,0.003736973,696,186247,, -51,710,51710,VA,Norfolk city,2024,1,10538.65458,3829,688288,10080.95075,10996.35841,0,,,,2,3398.315461,2275.905199,4880.547869,,14963.19715,14101.56552,15824.82878,,5781.091527,4556.479969,7005.703085,,7681.478467,7112.950578,8250.006357,,,,,2,,0.178,,,0.154,0.205,3.741609963,,,3.029407188,4.489570644,4.81118499,,,4.024989878,5.644471287,0.1094862,2523,23044,0.105454603,0.113517798,0,,,,0.091984231,0.071450535,0.112517927,0.157258904,0.149977252,0.164540557,0.083275503,0.07318792,0.093363086,0.06726357,0.062069854,0.072457287,,,,0.121985816,0.097827484,0.146144148,0.175,,,0.144,0.209,0.41,,,0.357,0.466,7.6,0.081409448,0.113,,,0.238,,,0.202,0.278,0.914783303,217723,238005,,,0.179072809,,,0.148382635,0.213792542,0.330357143,37,112,0.282490636,0.378433474,1288.9,3030,235089,,,22.37317589,1133,50641,21.07040287,23.6759489,,,,6.887052342,3.302609295,12.66553446,25.82485642,23.89511212,27.75460073,39.13043478,33.26537167,44.99549789,14.27627231,12.37237281,16.1801718,,,,15.45650611,11.18595011,20.8198123,0.092927727,16062,172844,0.081012833,0.10484262,0.000991114,233,235089,,,1008.965665,0.001021481,238,232995,,,978.9705882,0.002965729,691,232995,,,337.1852388,3559,,,,,,1024,5569,1652,2523,0.44,,,,,,0.3,0.42,0.23,0.46,0.41,,,,,,0.36,0.32,0.32,0.46,0.892531218,135945,152314,0.884286757,0.90077568,0.718005284,52726,73434,0.69018263,0.745827938,0.035322049,3898,110356,,,0.251,11512,,0.186659575,0.315340426,0.502645503,0.451220308,0.554070697,0.111587983,0.024499262,0.198676704,0.378647396,0.338456222,0.418838569,0.205907906,0.139392093,0.27242372,0.094389165,0.067382165,0.121396166,4.537981946,118641,26144,4.191545757,4.884418136,0.41823224,20058,47959,0.387390508,0.449073973,11.3999379,268,235089,,,88.14193332,1066,1209413,82.85066188,93.43320476,,,,22.28759918,10.68777012,40.98768842,103.9414007,94.91144243,112.9713591,27.99416949,18.74813466,40.20429705,93.57287991,85.28758393,101.8581759,,,,7.1,,,,,,,,,,0.201342282,18000,89400,0.190044422,0.212640142,0.18386545,0.172346014,0.195384886,0.022762864,0.018054452,0.027471275,0.00458613,0.002826349,0.00634591,0.726979192,91185,125430,0.709617565,0.744340818,,,,0.738768354,0.695445305,0.782091403,0.752178875,0.730598651,0.7737591,0.782003352,0.747245393,0.816761311,0.818220955,0.804265726,0.832176184,0.27,,125430,0.252816096,0.287183904,74.00561674,,,73.62921521,74.38201827,,,,85.32664777,82.80927845,87.84401708,70.26697777,69.66441023,70.86954531,86.47890688,80.62231724,92.33549653,76.42907808,75.92022852,76.93792765,,,,544.8919216,3829,688288,527.1152178,562.6686254,,,,174.6844243,128.3515445,232.2932525,754.4341665,721.4320122,787.4363208,291.0971172,226.0804706,356.1137637,419.551184,397.0239398,442.0784282,,,,81.48353764,182,223358,69.64521279,93.32186249,,,,,,,111.9109265,91.71854425,132.1033087,66.9977142,39.02863746,107.2698306,46.3112396,31.87852642,65.03819873,,,,8.004044149,190,23738,6.865922337,9.14216596,,,,,,,11.64052481,9.540194361,13.74085526,,,,4.240974337,3.015747335,5.79755153,,,,,,,0.114,,,0.099,0.131,0.162,,,0.141,0.185,0.123,,,0.107,0.142,957.2,1922,200800,,,0.113,27040,,,,0.081409448,19766.45828,242803,,,33.30400731,240,720634,29.09046903,37.51754558,,,,,,,40.02636219,32.74230751,47.31041688,,,,35.31674303,28.71679715,41.9166889,,,,0.411,,,0.397,0.423,0.109904158,14185,129067,0.095606286,0.124202031,0.043903399,2007,45714,0.030797016,0.057009782,0.002373442,553,232995,,,421.3291139,0.82,1496.5,1825,,,0.044043816,579,13146,0.028658232,0.059429399,2.983084986,,,,,,3.374523294,2.721699558,3.035429442,3.562725722,,,,,,,,,,,0.095166804,,,,,-7846.662,,,,,0.851738262,42213,49561,0.811287272,0.892189252,60030,,,57218.08511,62841.91489,70240,39737.87234,100742.1277,68148,57401.95745,78894.04255,44814,41755.44681,47872.55319,55670,45361.23404,65978.76596,77035,74360.10638,79709.89362,,,,,,0.739583333,20164,27264,,,53.76958366,,,,,0.322155589,,60030,,,6.692474247,102,15241,,,15.344628,261,1700921,13.48300309,17.20625291,,,,,,,32.67780122,28.41735901,36.93824342,,,,3.111135159,1.972192814,4.668230291,,,,13.43353682,171,1209413,11.31353059,15.55354305,14.13909062,,,,,,,7.463034991,5.254665365,10.28681066,,,,20.66443945,16.72903216,24.59984673,,,,23.48246629,284,1209413,20.75134738,26.2135852,,,,,,,36.14465212,30.81972722,41.46957703,9.653161893,4.629066342,17.75250842,16.61396031,13.30710114,20.49325866,,,,9.23029347,157,1700921,7.786444543,10.6741424,,,,,,,10.9889951,8.658078267,13.75436602,,,,9.19813873,7.142714635,11.66083259,,,,19.72375691,,18100,,,272,85,0.477149447,89988,188595,,,0.619,,,,,285.952119,,,,,0.447786177,42001,93797,0.433933124,0.461639229,0.188807743,17244,91331,0.17615102,0.201464467,0.860613879,80723,93797,0.848434657,0.872793101,232995,,,,,0.20068671,46759,232995,,,0.131011395,30525,232995,,,0.402982897,93893,232995,,,0.006545205,1525,232995,,,0.040696152,9482,232995,,,0.002390609,557,232995,,,0.092826026,21628,232995,,,0.424627138,98936,232995,,,0.013771306,3050,221475,0.011071613,0.016471,0.492624305,114779,232995,,,0,0,238005,, -51,720,51720,VA,Norton city,2024,1,16104.49389,110,10683,11709.58832,20499.39946,0,,,,2,,,,2,,,,2,,,,2,17247.81127,12316.01274,22179.60979,,,,,2,,0.202,,,0.168,0.237,4.507846665,,,3.602014089,5.531157831,5.975822717,,,4.801077313,7.200087907,0.115241636,31,269,0.077082636,0.153400635,0,,,,,,,,,,,,,0.125506073,0.084190064,0.166822082,,,,,,,0.216,,,0.171,0.267,0.401,,,0.318,0.489,5,0.180655664,0.187,,,0.28,,,0.225,0.337,0.926227285,3415,3687,,,0.157766912,,,0.124367821,0.194883552,0,0,1,0,0.662081041,327.3,12,3666,,,40.73033708,29,712,27.27774598,58.4955582,,,,,,,,,,,,,47.78156997,31.75050624,69.05767226,,,,,,,0.075610572,226,2989,0.06012121,0.091099934,0.000818331,3,3666,,,1222,0.001385425,5,3609,,,721.8,0.004987531,18,3609,,,200.5,3966,,,,,,,,,4060,0.43,,,,,,,,,0.42,0.47,,,,,,,,,0.48,0.901639344,2420,2684,0.855426841,0.947851848,0.694169417,631,909,0.526440809,0.861898025,0.037546934,60,1598,,,0.29,230,,0.181574468,0.398425532,,,,,,,,,,,,,0.415357766,0.197682555,0.633032978,7.940647482,97130,12232,4.761938026,11.11935694,0.383012821,239,624,0.09675395,0.669271691,0,0,3666,,,112.6126126,22,19536,70.57372478,170.4968488,,,,,,,,,,,,,132.1083288,82.79158633,200.0135975,,,,7,,,,,,,,,,0.165333333,310,1875,0.073282334,0.257384333,0.153424658,0.043691285,0.26315803,0.005333333,0,0.021842898,0.010666667,0,0.034357823,0.698499318,1024,1466,0.502797992,0.894200644,,,,,,,,,,,,,0.779320988,0.684887118,0.873754858,0.197,,1466,0.082710144,0.311289856,69.03161397,,,66.25715123,71.80607671,,,,,,,,,,,,,68.03728748,65.03980877,71.0347662,,,,795.0588132,110,10683,640.1276906,949.9899357,,,,,,,,,,,,,851.9115219,680.8181662,1023.004878,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.137,,,0.116,0.16,0.195,,,0.168,0.224,0.118,,,0.1,0.138,,,,,,0.187,690,,,,0.180655664,715.035118,3958,,,,,,,,,,,,,,,,,,,,,,,,,,0.369,,,0.352,0.386,0.091659028,200,2182,0.071403709,0.111914348,0.032520325,28,861,0.020605432,0.044435219,0.007204212,26,3609,,,138.8076923,0.975,61.425,63,,,,,,,,3.019122274,,,,,,,,,3.127907891,,,,,,,,,,,0.002949489,,,,,-6590.695,,,,,0.595804455,35417,59444,0.243149253,0.948459656,41298,,,35020.04255,47575.95745,,,,,,,,,,,,,37368,25169.53192,49566.46809,,,,,,0.915254237,756,826,,,,,,,,0.362535716,,41298,,,27.39726027,2,73,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,50,,400,,,13,7,0.48005997,1601,3335,,,0.604,,,,,58.08267986,,,,,0.530150754,844,1592,0.437561218,0.62274029,0.159061278,244,1534,0.061911453,0.256211102,0.714824121,1138,1592,0.6031533,0.826494941,3609,,,,,0.224993073,812,3609,,,0.182044888,657,3609,,,0.062621225,226,3609,,,0.003602106,13,3609,,,0.021058465,76,3609,,,0.000831255,3,3609,,,0.04100859,148,3609,,,0.847880299,3060,3609,,,0.000563698,2,3548,0,0.017591451,0.520642837,1879,3609,,,0.098996474,365,3687,, -51,730,51730,VA,Petersburg city,2024,1,23389.5835,1126,88552,21445.17499,25333.992,0,,,,2,,,,2,23101.33556,20805.80077,25396.87035,,,,,2,30762.67389,25511.89495,36013.45283,,,,,2,,0.246,,,0.211,0.283,4.386503547,,,3.494229601,5.346583766,5.855549784,,,4.776504236,7.060229145,0.118541033,585,4935,0.109522251,0.127559816,0,,,,,,,0.143598055,0.131223158,0.155972952,0.050147493,0.026914299,0.073380687,0.085714286,0.07086323,0.100565341,,,,,,,0.207,,,0.166,0.25,0.46,,,0.383,0.54,5,0.267627376,0.145,,,0.314,,,0.259,0.371,0.936636978,31338,33458,,,0.120896447,,,0.095719477,0.151964595,0.272727273,6,22,0.159704728,0.392079091,1295.3,433,33429,,,65.05125816,349,5365,58.22631469,71.87620163,,,,,,,58.83759866,51.48495604,66.19024128,67.1641791,44.26161724,97.72035434,113.5972461,87.85610193,144.5235498,,,,,,,0.090355522,2389,26440,0.07605765,0.104653394,0.000658111,22,33429,,,1519.5,0.000778583,26,33394,,,1284.384615,0.005480026,183,33394,,,182.4808743,4020,,,,,,,4839,,3133,0.42,,,,,,0.21,0.46,,0.37,0.4,,,,,,0.37,0.37,0.35,0.44,0.864340916,19796,22903,0.846883779,0.881798053,0.539504132,4896,9075,0.467297405,0.61171086,0.056381465,713,12646,,,0.333,2557,,0.213851064,0.452148936,,,,,,,0.357267645,0.286537914,0.427997376,0.3,0.036594357,0.563405643,0.193548387,0.056648389,0.330448385,5.19723243,90515,17416,4.288935483,6.105529377,0.578063106,4232,7321,0.481229731,0.674896481,14.65793174,49,33429,,,184.1829719,292,158538,163.0571253,205.3088185,,,,,,,175.7789828,152.1167846,199.441181,120.0336094,57.56078137,220.7460814,261.6585778,200.6121312,335.4344878,,,,8,,,,,,,,,,0.250944822,3320,13230,0.214017755,0.28787189,0.228549442,0.191283325,0.265815559,0.021919879,0.01149109,0.032348668,0.010204082,0.002031072,0.018377091,0.723503915,10349,14304,0.671686658,0.775321173,,,,,,,0.701003698,0.620069713,0.781937683,,,,0.881644749,0.710573346,1,0.346,,14304,0.290470971,0.401529029,64.92227885,,,63.87997325,65.96458445,,,,,,,65.21273525,63.95393166,66.47153885,81.84959228,66.89886739,96.80031717,60.77507732,58.56996635,62.98018829,,,,1041.228454,1126,88552,976.4709844,1105.985923,,,,,,,985.2032383,912.9139055,1057.492571,,,,1520.101668,1324.496879,1715.706458,,,,152.7312904,47,30773,112.2212075,203.1002383,,,,,,,165.2461298,116.9379964,226.8132237,,,,,,,,,,11.00244499,54,4908,8.2653753,14.35580407,,,,,,,13.11580294,9.412126637,17.79306768,,,,,,,,,,,,,0.136,,,0.116,0.156,0.187,,,0.161,0.214,0.165,,,0.142,0.189,1164.7,322,27646,,,0.145,4800,,,,0.267627376,8676.479544,32420,,,98.71771983,94,95221,79.77396625,120.805488,,,,,,,85.77515841,65.76332211,109.959882,,,,188.3107825,124.0979923,273.9823019,,,,0.444,,,0.426,0.459,0.110534163,2150,19451,0.091470333,0.129597993,0.034823142,254,7294,0.022908249,0.046738036,0.001856621,62,33394,,,538.6129032,0.81,187.11,231,,,,,,,,2.845927535,,,,,,,2.811511863,2.981530596,,,,,,,,,,,,0.021504239,,,,,-19916.24,,,,,0.782516531,40237,51420,0.660143609,0.904889452,42385,,,37284.23404,47485.76596,,,,71250,31388.7234,111111.2766,45199,40590.31915,49807.68085,60563,18529.6383,102596.3617,46958,38791.53192,55124.46809,,,,,,0.94662518,3955,4178,,,28.07178472,,,,,0.309071606,,42385,,,7.806080526,19,2434,,,46.20968429,103,222897,37.28546034,55.13390825,,,,,,,57.14588697,46.34146469,69.71313586,,,,,,,,,,15.48608509,25,158538,9.922226924,23.04206708,15.76909006,,,,,,,11.23872481,5.80721311,19.6317905,,,,,,,,,,50.46108819,80,158538,40.01250463,62.80319227,,,,,,,58.86937632,45.97747132,74.25570793,,,,,,,,,,21.53461016,48,222897,15.87792156,28.55176884,,,,,,,21.79791565,15.34774425,30.04555537,,,,,,,,,,20,,2500,,,39,11,0.593324937,14133,23820,,,0.489,,,,,204.9877151,,,,,0.374277358,5503,14703,0.334568071,0.413986646,0.234625105,3342,14244,0.195469956,0.273780255,0.801537101,11785,14703,0.767326631,0.835747572,33394,,,,,0.235970534,7880,33394,,,0.171168473,5716,33394,,,0.756842547,25274,33394,,,0.005240462,175,33394,,,0.010690543,357,33394,,,0.002096185,70,33394,,,0.056896449,1900,33394,,,0.150266515,5018,33394,,,0.016397701,505,30797,0.006613649,0.026181754,0.548661436,18322,33394,,,0.027078726,906,33458,, -51,735,51735,VA,Poquoson city,2024,1,7000.497009,140,33900,5201.139001,8799.855017,0,,,,2,,,,2,,,,2,,,,2,7657.499926,5643.381668,9671.618183,,,,,2,,0.113,,,0.092,0.136,3.075454487,,,2.348213192,3.875843322,4.75222023,,,3.744341025,5.832028829,0.047619048,36,756,0.03243838,0.062799715,0,,,,,,,,,,,,,0.042521994,0.027378186,0.057665802,,,,,,,0.125,,,0.093,0.162,0.318,,,0.244,0.398,8.8,0.078538038,0.061,,,0.172,,,0.135,0.216,0.957303371,11928,12460,,,0.190220115,,,0.152155805,0.232821902,0.5,1,2,0.104528646,0.771195053,206.8,26,12574,,,3.955411722,11,2781,1.974527281,7.077324169,,,,,,,,,,,,,,,,,,,,,,0.054623488,560,10252,0.046283063,0.062963914,0.000795292,10,12574,,,1257.4,0.000635829,8,12582,,,1572.75,0.000874265,11,12582,,,1143.818182,2569,,,,,,,,,2753,0.52,,,,,,0.33,,,0.53,0.5,,,,,,0.21,,,0.51,0.96158683,8411,8747,0.947084973,0.976088687,0.749826268,2158,2878,0.621721398,0.877931138,0.024612008,157,6379,,,0.062,175,,0.038170213,0.085829787,,,,,,,,,,0.326241135,0,0.692349333,0.054463555,0.008259964,0.100667145,3.487455597,187517,53769,2.696042346,4.278868848,0.115957447,327,2820,0.059387766,0.172527128,6.362334977,8,12574,,,66.83511289,41,61345,47.96203092,90.6693774,,,,,,,,,,,,,70.15397899,49.88633704,95.90279872,,,,6.9,,,,,,,,,,0.091792657,425,4630,0.0553243,0.128261013,0.093201754,0.053542285,0.132861224,0.002159827,0,0.012205851,0,0,0.007278706,0.853700787,5421,6350,0.803973296,0.903428279,,,,,,,,,,,,,0.713941342,0.61116061,0.816722074,0.349,,6350,0.266563056,0.431436944,78.41283447,,,76.78002338,80.04564556,,,,,,,,,,,,,77.91208937,76.14448392,79.67969482,,,,315.5369693,140,33900,260.4134119,370.6605268,,,,,,,,,,,,,332.9153925,273.0055984,392.8251867,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.087,,,0.073,0.103,0.147,,,0.123,0.171,0.076,,,0.064,0.09,93.8,10,10661,,,0.061,750,,,,0.078538038,954.2371599,12150,,,29.64799741,11,37102,14.80017349,53.04845699,,,,,,,,,,,,,32.90851433,16.42781179,58.88242241,,,,0.312,,,0.293,0.331,0.061955338,455,7344,0.050040444,0.073870231,0.036964344,113,3057,0.025049451,0.048879238,0.000158957,2,12582,,,6291,0.975,171.6,176,,,,,,,,3.713230063,,,,,,,,,3.72570813,,,,,,,,,,,0.010540411,,,,,4471.45,,,,,0.838527644,61667,73542,0.629193422,1.047861866,109549,,,94455.21277,124642.7872,,,,223333,172038.1915,274627.8085,,,,110181,85902.02128,134459.9787,116058,105294.0851,126821.9149,,,,,,0.166828794,343,2056,,,,,,,,0.193611991,,109549,,,7.155635063,4,559,,,,,,,,,,,,,,,,,,,,,,,,,,22.94655783,14,61345,12.21807562,39.23931272,22.82174586,,,,,,,,,,,,,25.2488178,13.4439321,43.1762474,,,,16.30124705,10,61345,7.817081581,29.97857371,,,,,,,,,,,,,17.98819974,8.62604097,33.08093978,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1500,,,9,-888,0.840320856,7857,9350,,,0.827,,,,,9.087879886,,,,,0.820700022,3822,4657,0.776189581,0.865210462,0.098994755,453,4576,0.061876778,0.136112733,0.923770668,4302,4657,0.890186694,0.957354642,12582,,,,,0.227308854,2860,12582,,,0.195199491,2456,12582,,,0.017246861,217,12582,,,0.005642982,71,12582,,,0.02130027,268,12582,,,0.000715308,9,12582,,,0.037911302,477,12582,,,0.898346845,11303,12582,,,0.003193277,38,11900,0,0.012019624,0.497059291,6254,12582,,,0.088844302,1107,12460,, -51,740,51740,VA,Portsmouth city,2024,1,13091.66906,1986,269822,12271.9938,13911.34433,0,,,,2,,,,2,15846.44929,14616.93129,17075.96729,,6767.359891,4289.92566,10154.36258,1,10163.95625,8979.022734,11348.88976,,,,,2,,0.202,,,0.177,0.231,4.127411392,,,3.366866269,4.977689728,4.734842806,,,3.860272417,5.658857321,0.121793556,1187,9746,0.115300438,0.128286675,0,,,,,,,0.155055769,0.145462644,0.164648894,0.078431373,0.056183761,0.100678984,0.074754902,0.065732353,0.083777451,,,,0.145098039,0.101869067,0.188327011,0.183,,,0.152,0.219,0.476,,,0.412,0.541,8.1,0.058957504,0.103,,,0.284,,,0.241,0.331,0.935586989,91608,97915,,,0.152729206,,,0.122618398,0.186791687,0.295454546,13,44,0.216510832,0.376352951,1335.9,1307,97840,,,28.4113197,507,17845,25.93820933,30.88443007,,,,,,,31.95948306,28.68520714,35.23375898,20.39007092,12.92555588,30.59511782,23.01009627,18.6807084,28.04193714,,,,19.45525292,10.88895737,32.08848103,0.068834089,5418,78711,0.059302174,0.078366004,0.000603025,59,97840,,,1658.305085,0.001752054,170,97029,,,570.7588235,0.003308289,321,97029,,,302.271028,2655,,,,,,,3136,,2343,0.46,,,,,,0.48,0.47,0.27,0.45,0.41,,,,,,0.42,0.34,0.28,0.46,0.895173466,58701,65575,0.885198295,0.905148636,0.630370161,17813,28258,0.584710583,0.676029738,0.03866878,1708,44170,,,0.262,5701,,0.180978723,0.343021277,,,,,,,0.315342081,0.252982413,0.37770175,0.450757576,0.294063973,0.607451179,0.121495327,0.065440304,0.17755035,4.813990391,109215,22687,4.271324555,5.356656227,0.438692587,9771,22273,0.38002505,0.497360125,8.99427637,88,97840,,,118.1442745,563,476536,108.385067,127.9034821,,,,,,,125.4734663,111.7256735,139.2212591,44.05092287,21.12412976,81.01121555,125.4477235,108.9082104,141.9872365,,,,7.4,,,,,,,,,,0.191950887,7035,36650,0.171179003,0.21272277,0.182503139,0.161018002,0.203988277,0.01691678,0.008023138,0.025810423,0.006002729,0.002422048,0.009583409,0.753508928,33929,45028,0.729800094,0.777217761,,,,0.722253842,0.702799637,0.741708046,0.756732805,0.723795383,0.789670227,0.783243243,0.672070227,0.89441626,0.85032115,0.835251629,0.865390671,0.335,,45028,0.305284341,0.364715659,72.11438368,,,71.52223379,72.70653358,,,,,,,69.91608541,69.08952052,70.74265031,81.92824579,74.12609402,89.73039757,74.33816333,73.42040825,75.25591841,,,,627.0210786,1986,269822,598.4580794,655.5840779,,,,,,,736.4453845,693.5152187,779.3755503,337.9481243,209.1952154,516.5896067,523.4264663,482.6497026,564.2032299,,,,98.42009842,95,96525,79.62773692,120.3134666,,,,,,,112.935453,87.16119838,143.9455057,,,,66.2483925,38.59212996,106.070094,,,,9.81668837,98,9983,7.969662133,11.96339881,,,,,,,12.44002133,9.697606915,15.71721856,,,,,,,,,,,,,0.121,,,0.106,0.138,0.169,,,0.148,0.193,0.145,,,0.126,0.164,796.6,646,81097,,,0.103,9990,,,,0.058957504,5632.505125,95535,,,56.38077207,162,287332,47.69857613,65.06296801,,,,,,,55.21882897,44.10683934,68.27893715,,,,63.5963247,49.28627812,80.76508432,,,,0.441,,,0.428,0.454,0.083344982,4770,57232,0.070238599,0.096451365,0.031071064,700,22529,0.021539149,0.040602979,0.001515011,147,97029,,,660.0612245,0.79,817.65,1035,,,0.119466921,502,4202,0.074334736,0.164599105,3.007709786,,,,,,3.63758377,2.860406807,3.359485981,3.28883354,,,,,,,,,,,0.056527665,,,,,-10377.45,,,,,0.807386159,42500,52639,0.736953149,0.877819169,54843,,,48849.80851,60836.19149,,,,75214,58652.29787,91775.70213,45230,41240.89362,49219.10638,56992,37071.48936,76912.51064,71580,67507.48936,75652.51064,,,,,,0.781021353,10461,13394,,,49.85335118,,,,,0.329868899,,54843,,,7.684784127,55,7157,,,20.65902283,138,667989,17.21214172,24.10590394,,,,,,,34.243211,28.16675108,40.31967093,,,,5.597402805,3.0601522,9.391490797,,,,15.26570674,70,476536,11.80649649,19.42172195,14.68934141,,,,,,,11.44735806,7.477794346,16.77303186,,,,21.49069351,15.05181753,29.75217844,,,,27.90974869,133,476536,23.16638771,32.65310967,,,,,,,36.85783072,29.78487904,45.10465025,,,,20.43492328,14.31236904,28.29054742,,,,15.56911865,104,667989,12.57683038,18.56140692,,,,,,,19.0863799,14.82132082,24.19653446,,,,13.19387804,9.082058554,18.5291102,,,,22.22222222,,9000,,,140,60,0.622658104,44601,71630,,,0.645,,,,,195.4202684,,,,,0.560520507,21839,38962,0.538333276,0.582707738,0.214377441,8013,37378,0.19108959,0.237665293,0.862147734,33591,38962,0.847515812,0.876779656,97029,,,,,0.228663595,22187,97029,,,0.154036422,14946,97029,,,0.534036216,51817,97029,,,0.005225242,507,97029,,,0.014964598,1452,97029,,,0.001721135,167,97029,,,0.05552979,5388,97029,,,0.360521081,34981,97029,,,0.005504709,498,90468,0.002720969,0.008288449,0.517525688,50215,97029,,,0,0,97915,, -51,750,51750,VA,Radford city,2024,1,7381.505714,177,51047,5832.856727,8930.154702,0,,,,2,,,,2,,,,2,,,,2,7508.556805,5838.448874,9178.664736,,,,,2,,0.199,,,0.168,0.231,4.454569797,,,3.583352328,5.461662026,6.050951122,,,4.907247317,7.303081859,0.103658537,102,984,0.084612799,0.122704274,0,,,,,,,0.225225225,0.147512734,0.302937717,,,,0.0925,0.072422702,0.112577298,,,,,,,0.202,,,0.158,0.248,0.391,,,0.314,0.475,6.3,0.163939012,0.136,,,0.269,,,0.218,0.324,0.770566273,12383,16070,,,0.181556444,,,0.146037531,0.224161191,0.25,1,4,0.023230216,0.544021398,981.9,162,16499,,,5.971957764,69,11554,4.646539602,7.557894763,,,,,,,12.95896328,6.696085431,22.63670092,,,,5.260443528,3.916745729,6.916511746,,,,,,,0.063625751,763,11992,0.050519368,0.076732134,0.000545488,9,16499,,,1833.222222,0.000776676,13,16738,,,1287.538462,0.002449516,41,16738,,,408.2439024,3565,,,,,,,1193,,3660,0.4,,,,,,,0.34,,0.41,0.55,,,,,,0.53,0.47,,0.55,0.93334244,6833,7321,0.910552498,0.956132381,0.839872408,2633,3135,0.699293813,0.980451004,0.035495716,319,8987,,,0.161,324,,0.101425532,0.220574468,,,,,,,0.928286853,0.751978683,1,,,,0.128446537,0.022078477,0.234814597,8.464662567,111505,13173,5.55032093,11.37900421,0.218360996,421,1928,0.143206216,0.293515776,15.15243348,25,16499,,,42.69662921,38,89000,30.21467601,58.60445946,,,,,,,,,,,,,47.33439723,32.97014201,65.83068807,,,,7.1,,,,,,,,,,0.224669604,1275,5675,0.162477901,0.286861306,0.207373272,0.144198193,0.270548351,0.011453745,0,0.025127332,0.01938326,0,0.040357209,0.748809677,5819,7771,0.722923426,0.774695928,,,,,,,,,,,,,0.816549968,0.797490257,0.835609679,0.199,,7771,0.135481212,0.262518789,75.98879129,,,74.64960503,77.32797754,,,,,,,,,,,,,75.68903065,74.28640646,77.09165484,,,,421.0097928,177,51047,357.3845826,484.6350029,,,,,,,,,,,,,430.1511944,360.7346215,499.5677674,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.136,,,0.116,0.157,0.194,,,0.167,0.223,0.124,,,0.105,0.143,93.1,14,15040,,,0.136,2200,,,,0.163939012,2689.911313,16408,,,,,,,,,,,,,,,,,,,,,,,,,,0.356,,,0.336,0.374,0.070575243,703,9961,0.055085882,0.086064605,0.031191806,67,2148,0.020468402,0.041915211,0.00125463,21,16738,,,797.0476191,0.925,115.625,125,,,,,,,,3.340749811,,,,,,,,,3.47617263,,,,,,,,,,,0.005200754,,,,,-565.4453,,,,,0.944382775,49344,52250,0.70967697,1.179088581,47892,,,41770.12766,54013.87234,,,,52115,5263.255319,98966.74468,15729,4772.06383,26685.93617,,,,53254,46607.87234,59900.12766,,,,,,0.276934469,748,2701,,,38.73486776,,,,,0.299590746,,47892,,,11.04972376,6,543,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,25,,1000,,,10,15,0.401397269,6320,15745,,,0.59,,,,,55.04519935,,,,,0.45728919,2500,5467,0.418610448,0.495967931,0.214044162,1076,5027,0.149777583,0.27831074,0.874885678,4783,5467,0.843485484,0.906285872,16738,,,,,0.122834269,2056,16738,,,0.097861154,1638,16738,,,0.08973593,1502,16738,,,0.003106703,52,16738,,,0.023240531,389,16738,,,0.000477954,8,16738,,,0.034532202,578,16738,,,0.825845382,13823,16738,,,0.002916561,46,15772,0,0.010551772,0.532022942,8905,16738,,,0.041941506,674,16070,, -51,760,51760,VA,Richmond city,2024,1,11283.31368,3898,653254,10784.19617,11782.43118,0,,,,2,,,,2,17474.6299,16529.35551,18419.9043,,8778.065028,7208.584207,10347.54585,,5448.491898,4953.958656,5943.025139,,,,,2,,0.18,,,0.154,0.208,3.741666983,,,3.045597081,4.522899158,5.957321298,,,5.107898012,6.85502836,0.111662648,2362,21153,0.107418281,0.115907016,0,,,,0.089514067,0.061216444,0.11781169,0.161887408,0.154817169,0.168957647,0.070710059,0.062068066,0.079352053,0.055782932,0.050244722,0.061321142,,,,0.082706767,0.049605862,0.115807672,0.163,,,0.131,0.199,0.332,,,0.286,0.383,7.8,0.065194306,0.113,,,0.223,,,0.186,0.262,0.897047791,203280,226610,,,0.209503261,,,0.178077749,0.245712061,0.28125,27,96,0.228820725,0.335091426,1104.6,2503,226604,,,24.70990571,1250,50587,23.34005842,26.07975299,,,,,,,32.28111971,30.06210905,34.50013038,82.61748358,73.66271931,91.57224785,4.821376706,3.840199634,5.97682183,,,,8.378216637,4.580448998,14.05722389,0.091059366,16526,181486,0.080335961,0.10178277,0.001059116,240,226604,,,944.1833333,0.001521393,349,229395,,,657.2922636,0.004908564,1126,229395,,,203.7255773,2771,,,,,,1093,3688,,2266,0.47,,,,,,0.39,0.48,0.38,0.47,0.52,,,,,,0.51,0.38,0.35,0.59,0.887647991,142827,160905,0.878993523,0.896302459,0.747121307,58590,78421,0.720895388,0.773347226,0.034025356,4117,120998,,,0.301,11503,,0.22593617,0.37606383,,,,0.724935733,0.546033371,0.903838095,0.418744953,0.373373564,0.464116341,0.240388205,0.17139071,0.309385699,0.065281562,0.040146355,0.090416769,5.716025155,128159,22421,5.259920668,6.172129642,0.502946498,19459,38690,0.466754769,0.539138227,14.69523927,333,226604,,,117.4589396,1345,1145081,111.1815222,123.736357,,,,,,,159.6998705,148.9127733,170.4869676,80.46211675,62.3570353,102.184044,79.21268398,71.26905194,87.15631602,,,,8.5,,,,,,,,,,0.214823361,19550,91005,0.201649097,0.227997626,0.199475944,0.185638312,0.213313576,0.017141915,0.013953021,0.02033081,0.008955552,0.006168608,0.011742496,0.660640625,79117,119758,0.64730141,0.673979841,,,,0.68528805,0.677596483,0.692979616,0.731042458,0.714804659,0.747280257,0.62924282,0.5856379,0.672847739,0.77254174,0.759220961,0.78586252,0.224,,119758,0.204973441,0.243026559,75.01089826,,,74.58303362,75.43876289,,,,95.74821122,84.03727877,107.4591437,69.41364075,68.79611641,70.0311651,87.55198066,77.63697978,97.46698154,81.7454715,81.09568884,82.39525416,,,,523.1541313,3898,653254,506.1044187,540.203844,,,,,,,767.0937568,736.5019825,797.6855311,323.4458842,261.0444105,385.8473578,287.1671083,268.3106909,306.0235257,,,,97.47307636,185,189796,83.42700468,111.519148,,,,,,,141.4665031,118.2796575,164.6533488,91.02061815,57.69926407,136.5756179,26.87140115,14.69084506,45.08564515,,,,9.308199635,199,21379,8.014911712,10.60148756,,,,,,,12.39897135,10.3073896,14.49055309,8.865790278,5.937558893,12.73275373,3.695719125,2.367916978,5.49893711,,,,,,,0.113,,,0.097,0.13,0.181,,,0.157,0.205,0.125,,,0.109,0.143,882.9,1742,197307,,,0.113,25560,,,,0.065194306,13313.59003,204214,,,66.44749632,458,689266,60.36191663,72.53307602,,,,,,,97.26658427,86.31445851,108.21871,36.68449404,22.08646181,57.28738164,41.49391706,34.1308189,48.85701523,,,,0.349,,,0.336,0.362,0.104246437,15083,144686,0.091140054,0.11735282,0.040363532,1550,38401,0.028448639,0.052278426,0.002179647,500,229395,,,458.79,0.74,1102.6,1490,,,0.05016614,619,12339,0.03141451,0.06891777,2.654574133,,,,,,3.137253269,2.512185874,2.527369466,3.465346844,,,,,,,,,,,0.224508347,,,,,-15733.94,,,,,0.907757788,50760,55918,0.86100992,0.954505656,58719,,,54489.21277,62948.78723,44926,6988.978723,82863.02128,56875,33299,80451,39537,37399.46809,41674.53192,59172,47618.12766,70725.87234,84303,80834.57447,87771.42553,,,,,,0.905526831,18039,19921,,,57.9146285,,,,,0.35058499,,58719,,,6.156963604,79,12831,,,22.15871177,352,1588540,19.84382769,24.47359585,,,,,,,42.05424189,37.38777076,46.72071301,11.60279181,6.177997975,19.84112736,2.718035525,1.610880112,4.295667945,,,,11.63952419,135,1145081,9.593968786,13.68507959,11.78955899,,,,,,,10.10340624,7.39696319,13.47652806,,,,13.9673812,10.80237161,17.76993353,,,,27.33431085,313,1145081,24.30605872,30.36256298,,,,,,,48.74449728,42.78492481,54.70406975,12.00927116,5.758912316,22.08547724,8.087158836,5.750760502,11.05541236,,,,9.820338172,156,1588540,8.279275803,11.36140054,,,,,,,12.26582055,9.875673575,15.0597096,16.95792649,10.20977952,26.48190283,5.88907697,4.187709419,8.050562085,,,,25.98684211,,15200,,,335,60,0.619755289,111181,179395,,,0.607,,,,,309.5194368,,,,,0.432327744,43752,101201,0.419612532,0.445042956,0.20518508,20166,98282,0.19188994,0.21848022,0.82985346,83982,101201,0.817198979,0.842507941,229395,,,,,0.169659321,38919,229395,,,0.145835785,33454,229395,,,0.435179494,99828,229395,,,0.005592973,1283,229395,,,0.024551538,5632,229395,,,0.001556268,357,229395,,,0.083205824,19087,229395,,,0.432681619,99255,229395,,,0.03229209,6919,214263,0.028026818,0.036557362,0.525582511,120566,229395,,,0,0,226610,, -51,770,51770,VA,Roanoke city,2024,1,14085.89054,2297,277334,13248.94934,14922.83174,0,,,,2,,,,2,17081.7325,15314.45909,18849.00591,,6575.378091,4675.736607,8988.75831,,14008.76708,12902.15341,15115.38076,,,,,2,,0.196,,,0.168,0.226,4.224572509,,,3.423087552,5.095038971,5.695111608,,,4.734599754,6.71077596,0.100030528,983,9827,0.094098192,0.105962864,0,,,,0.046413502,0.019628967,0.073198037,0.150448833,0.137170833,0.163726833,0.069911504,0.055043479,0.08477953,0.084568918,0.077190578,0.091947259,,,,,,,0.201,,,0.164,0.241,0.409,,,0.346,0.473,7.8,0.072758579,0.11,,,0.259,,,0.217,0.303,0.979502255,97961,100011,,,0.164053212,,,0.134049259,0.199497301,0.260869565,12,46,0.184114715,0.341630065,766.7,758,98865,,,41.04520754,710,17298,38.02602513,44.06438995,,,,,,,44.04343172,38.95667488,49.13018856,84.19768151,70.14961157,98.24575146,36.12433492,31.71628932,40.53238052,,,,17.31996354,10.42774947,27.04726853,0.096137778,7709,80187,0.083031395,0.109244161,0.001102514,109,98865,,,907.0183486,0.000766503,75,97847,,,1304.626667,0.004169775,408,97847,,,239.8210784,2416,,,,,,,3604,,2216,0.44,,,,,,0.27,0.44,0.33,0.44,0.52,,,,,,0.51,0.39,0.32,0.53,0.891187916,62065,69643,0.877834604,0.904541227,0.593035475,16366,27597,0.548789308,0.637281642,0.031868289,1564,49077,,,0.264,5649,,0.186553192,0.341446809,,,,0.263318113,0,0.536020238,0.397870016,0.324444832,0.471295201,0.470317886,0.388991333,0.551644439,0.131247284,0.084508159,0.177986408,5.152025198,104684,20319,4.703440453,5.600609943,0.435271106,9569,21984,0.384109358,0.486432855,16.790573,166,98865,,,152.7707051,759,496823,141.9020635,163.6393466,,,,,,,129.7935103,111.190285,148.3967357,45.06534475,25.22273136,74.32843284,186.5989897,170.8016861,202.3962933,,,,7.4,,,,,,,,,,0.179997602,7505,41695,0.161903527,0.198091677,0.1646857,0.146295688,0.183075712,0.016428828,0.009326143,0.023531514,0.006355678,0.002887312,0.009824044,0.765743616,35506,46368,0.742960929,0.788526304,,,,0.755925689,0.661950498,0.84990088,0.693615148,0.643238749,0.743991546,0.716788786,0.632175699,0.801401873,0.869659681,0.858996643,0.880322718,0.248,,46368,0.217320595,0.278679405,71.3851263,,,70.81294795,71.95730465,,,,86.53646035,79.72259458,93.35032612,69.51349134,68.34394317,70.6830395,81.72587442,76.60412996,86.84761887,71.4154875,70.67787562,72.15309939,,,,657.2538663,2297,277334,629.2357429,685.2719897,,,,,,,761.660878,704.3107455,819.0110105,336.153907,240.1532795,457.7462121,657.4793537,621.4462388,693.5124687,,,,83.12379211,80,96242,65.91199746,103.4547547,,,,,,,114.0421956,80.70304506,156.5318235,,,,75.01693931,50.97037068,106.4805573,,,,7.841191067,79,10075,6.20794481,9.772463639,,,,,,,12.93706294,9.108886212,17.83203711,,,,5.89561297,4.082883368,8.238528194,,,,,,,0.126,,,0.108,0.146,0.184,,,0.161,0.209,0.121,,,0.103,0.139,506.9,419,82662,,,0.11,10950,,,,0.072758579,7059.910458,97032,,,66.65185514,198,297066,57.36784261,75.93586768,,,,,,,47.44162366,34.04492822,64.35991943,,,,86.12154269,72.19929985,100.0437855,,,,0.369,,,0.357,0.382,0.116977984,6870,58729,0.100297133,0.133658835,0.039941289,898,22483,0.026834906,0.053047672,0.003464593,339,97847,,,288.6342183,0.82,765.88,934,,,0.120087336,440,3664,0.049700706,0.190473966,2.992313545,,,,,,,2.819460693,2.813718726,3.27609855,,,,,,,,,,,0.102823618,,,,,-9931.943,,,,,0.927390259,43183,46564,0.854723792,1.000056725,50425,,,44960.82979,55889.17021,,,,65690,48064.29787,83315.70213,37682,33492.7234,41871.2766,42241,24199.46809,60282.53192,57721,54331.21277,61110.78723,,,,,,0.890956326,12689,14242,,,60.63998531,,,,,0.358770451,,50425,,,7.470491558,50,6693,,,13.35477756,93,696380,10.77902908,16.36050476,,,,,,,31.77440175,24.47016113,40.57520167,,,,5.419480075,3.39635931,8.205157962,,,,22.71710597,115,496823,18.4311912,27.00302073,23.14707652,,,,,,,12.60473722,7.342723932,20.18140533,,,,30.21072397,24.02748532,37.49947418,,,,24.55602901,122,496823,20.19856013,28.91349788,,,,,,,38.8686448,29.36095657,50.47416832,,,,21.23607905,16.2439178,27.27863195,,,,13.06757805,91,696380,10.5211987,16.04409014,,,,,,,15.88720087,10.86683364,22.42798733,,,,13.79504019,10.42062511,17.91400714,,,,19.02173913,,9200,,,144,31,0.591723008,43323,73215,,,0.65,,,,,143.799821,,,,,0.521141896,22308,42806,0.498589347,0.543694445,0.163351896,6776,41481,0.142135308,0.184568484,0.823015465,35230,42806,0.805283237,0.840747693,97847,,,,,0.222786595,21799,97847,,,0.181344344,17744,97847,,,0.287918894,28172,97847,,,0.004190215,410,97847,,,0.033143581,3243,97847,,,0.001216185,119,97847,,,0.07381933,7223,97847,,,0.571749773,55944,97847,,,0.019561377,1816,92836,0.014216023,0.024906731,0.524011978,51273,97847,,,3.99956E-05,4,100011,, -51,775,51775,VA,Salem city,2024,1,8908.761903,480,69707,7639.101211,10178.42259,0,,,,2,,,,2,12251.78361,7376.374074,19132.67776,1,,,,2,9012.174064,7626.532443,10397.81568,,,,,2,,0.142,,,0.118,0.166,3.559154168,,,2.801092541,4.436917704,5.019497196,,,4.026240456,6.122551848,0.076997579,159,2065,0.065499216,0.088495941,0,,,,,,,0.094674556,0.050534618,0.138814495,,,,0.074074074,0.061628207,0.086519941,,,,,,,0.157,,,0.122,0.194,0.36,,,0.286,0.44,8.5,0.047590432,0.087,,,0.21,,,0.167,0.259,0.864278387,21906,25346,,,0.184173446,,,0.147039883,0.225456102,0.2,1,5,0.015594715,0.47750127,382.3,97,25373,,,9.831460674,77,7832,7.758835017,12.28763898,,,,,,,19.57585644,10.11513068,34.19508165,,,,8.186397985,6.113993577,10.73537181,,,,,,,0.070791736,1326,18731,0.058876842,0.082706629,0.001379419,35,25373,,,724.9428571,0.001410493,36,25523,,,708.9722222,0.008502135,217,25523,,,117.6175115,2204,,,,,,,7634,,2082,0.49,,,,,,,0.49,,0.49,0.54,,,,,,0.57,0.52,0.57,0.54,0.939229392,16259,17311,0.924412507,0.954046276,0.704657908,4130,5861,0.618871319,0.790444498,0.028981015,374,12905,,,0.125,600,,0.083297872,0.166702128,,,,,,,0.102409639,0,0.269626645,0.369047619,0.10863169,0.629463548,0.125746799,0.076993036,0.174500563,4.164861999,129623,31123,3.518714314,4.811009684,0.268437832,1263,4705,0.172598206,0.364277458,15.76478934,40,25373,,,105.0823799,134,127519,87.29001927,122.8747405,,,,,,,113.1803684,56.49923209,202.5109426,,,,113.1295148,93.05467532,133.2043542,,,,6.7,,,,,,,,,,0.118481013,1170,9875,0.087788459,0.149173566,0.103909465,0.071504554,0.136314376,0.013670886,0.00215116,0.025190613,0.006582279,0,0.013457225,0.77666289,9598,12358,0.73998748,0.813338301,,,,,,,0.770330044,0.683491554,0.857168535,0.480924856,0.291869512,0.669980199,0.843291929,0.804870124,0.881713734,0.203,,12358,0.161297872,0.244702128,74.45278916,,,73.4870271,75.41855122,,,,,,,69.83545045,66.17307026,73.49783065,,,,74.46517692,73.42845853,75.50189531,,,,492.5220959,480,69707,446.0153231,539.0288687,,,,,,,713.9885354,522.729344,952.3606502,,,,491.3082258,441.0234569,541.5929948,,,,40.94668741,10,24422,19.6355282,75.30241603,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.105,,,0.088,0.121,0.164,,,0.14,0.189,0.089,,,0.074,0.105,185.8,41,22062,,,0.087,2200,,,,0.047590432,1180.337899,24802,,,39.46641408,30,76014,26.62782385,56.34076012,,,,,,,,,,,,,42.19211476,27.80486949,61.38731181,,,,0.344,,,0.326,0.36,0.083523864,1169,13996,0.069225992,0.097821736,0.034517159,173,5012,0.023793755,0.045240563,0.005955413,152,25523,,,167.9144737,0.93,297.6,320,,,,,,,,3.337052699,,,,,,,3.2600503,,3.415760032,,,,,,,,,,,0.034362949,,,,,184.6445,,,,,0.868345055,51116,58866,0.733816108,1.002874002,63676,,,55093.70213,72258.29787,,,,58523,24921.80851,92124.19149,39670,13795.61702,65544.38298,60128,23141.78723,97114.21277,70761,65427.89362,76094.10638,,,,,,0.395630429,1503,3799,,,47.17188869,,,,,0.293909793,,63676,,,18.42870999,19,1031,,,5.602240896,10,178500,2.686492267,10.30272047,,,,,,,,,,,,,,,,,,,17.94585436,25,127519,11.37613225,26.92759288,19.60492162,,,,,,,,,,,,,20.01659785,12.39058955,30.59749609,,,,14.89974043,19,127519,8.970617057,23.26779035,,,,,,,,,,,,,13.90936657,7.78496688,22.94138488,,,,6.722689076,12,178500,3.473711546,11.7431849,,,,,,,,,,,,,6.612488346,3.170945187,12.1606015,,,,34.34782609,,2300,,,62,17,0.654185464,13051,19950,,,0.742,,,,,113.0014521,,,,,0.639721254,6426,10045,0.612865908,0.666576601,0.120431212,1173,9740,0.090247435,0.150614988,0.865704331,8696,10045,0.837986399,0.893422262,25523,,,,,0.19076911,4869,25523,,,0.196058457,5004,25523,,,0.083062336,2120,25523,,,0.004309838,110,25523,,,0.019981977,510,25523,,,0.000548525,14,25523,,,0.042784939,1092,25523,,,0.828154998,21137,25523,,,0.00591133,144,24360,0,0.012797261,0.51921796,13252,25523,,,0,0,25346,, -51,790,51790,VA,Staunton city,2024,1,8179.781067,464,68912,6989.286082,9370.276053,0,,,,2,,,,2,10023.01358,6605.229103,14582.95852,,,,,2,8109.720081,6776.999354,9442.440808,,,,,2,,0.153,,,0.128,0.184,3.667489589,,,2.89979579,4.564831594,5.231630025,,,4.220914025,6.369681703,0.089306698,228,2553,0.078244059,0.100369337,0,,,,,,,0.155462185,0.109427039,0.201497331,0.083333333,0.036183061,0.130483605,0.082625118,0.070899856,0.09435038,,,,,,,0.167,,,0.13,0.21,0.358,,,0.281,0.439,8.5,0.008224992,0.107,,,0.223,,,0.178,0.273,0.986796117,25410,25750,,,0.169311388,,,0.134167519,0.20707052,1,1,1,,,385.8,99,25661,,,22.87893232,120,5245,18.78537193,26.97249271,,,,,,,11.24744376,5.614683402,20.12478376,38.75968992,18.58677789,71.28044978,27.44765139,22.25819626,33.483807,,,,,,,0.079385081,1575,19840,0.067470187,0.091299974,0.000467636,12,25661,,,2138.416667,0.000810686,21,25904,,,1233.52381,0.007373379,191,25904,,,135.6230367,1882,,,,,,,2821,,1828,0.5,,,,,,0.25,0.43,,0.51,0.57,,,,,,0.44,0.47,,0.57,0.92591382,16997,18357,0.910804142,0.941023498,0.665433013,4495,6755,0.586569445,0.74429658,0.027375201,340,12420,,,0.169,812,,0.103468085,0.234531915,,,,,,,0.205240175,0.031298555,0.379181795,0.119047619,0,0.297579795,0.096687556,0.043626444,0.149748668,4.731280505,119233,25201,4.115607767,5.346953243,0.270593167,1291,4771,0.194590477,0.346595857,21.43330346,55,25661,,,83.84371532,105,125233,67.80639009,99.88104054,,,,,,,,,,,,,92.22073479,74.43403513,112.9766305,,,,6.9,,,,,,,,,,0.145206767,1545,10640,0.120227522,0.170186012,0.127066604,0.100927471,0.153205737,0.015507519,0.004514358,0.02650068,0.01306391,0.00385951,0.02226831,0.805594754,9705,12047,0.769463269,0.841726239,,,,,,,0.875,0.742282521,1,,,,0.826981187,0.790568538,0.863393837,0.274,,12047,0.232331929,0.315668071,75.34531549,,,74.40458112,76.28604985,,,,,,,74.07789965,71.21939171,76.93640759,,,,75.30293199,74.27571789,76.3301461,,,,452.8354906,464,68912,409.3825039,496.2884774,,,,,,,565.3094796,425.8684649,735.8279918,,,,452.6686189,404.8281258,500.509112,,,,50.94951366,11,21590,25.43381365,91.16275365,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.109,,,0.093,0.128,0.171,,,0.146,0.198,0.097,,,0.082,0.113,276.4,61,22066,,,0.107,2720,,,,0.008224992,195.3106632,23746,,,13.19557157,10,75783,6.327789473,24.26712593,,,,,,,,,,,,,,,,,,,0.346,,,0.329,0.364,0.092042953,1380,14993,0.076553592,0.107532315,0.041855874,212,5065,0.028749491,0.054962257,0.001698579,44,25904,,,588.7272727,0.870614035,148.875,171,,,,,,,,3.181645315,,,,,,,2.632736213,,3.35503662,,,,,,,,,,,0.025654551,,,,,2551.431,,,,,0.814221957,46339,56912,0.719569229,0.908874684,61917,,,53959.04255,69874.95745,,,,50500,7266.808511,93733.19149,,,,70625,42124.57447,99125.42553,60873,54697.51064,67048.48936,,,,,,0.581386861,1593,2740,,,30.64982771,,,,,0.292181469,,61917,,,9.150326797,14,1530,,,,,,,,,,,,,,,,,,,,,,,,,,15.11228661,20,125233,8.956498811,23.88392814,15.97023149,,,,,,,,,,,,,17.69108371,10.3057082,28.32513878,,,,13.57469677,17,125233,7.907761109,21.73440452,,,,,,,,,,,,,14.87431206,8.325039549,24.53291573,,,,10.91878721,19,174012,6.573823164,17.05103876,,,,,,,,,,,,,12.09250052,7.044327173,19.36126475,,,,51,,2000,,,81,21,0.665914915,12992,19510,,,0.704,,,,,57.27300738,,,,,0.594812003,6581,11064,0.564949864,0.624674142,0.138334417,1490,10771,0.109817034,0.1668518,0.808839479,8949,11064,0.777922361,0.839756598,25904,,,,,0.192441322,4985,25904,,,0.213712168,5536,25904,,,0.111063928,2877,25904,,,0.004979926,129,25904,,,0.014746757,382,25904,,,0.000463249,12,25904,,,0.043892835,1137,25904,,,0.79620908,20625,25904,,,0.009550702,230,24082,0.00344442,0.015656983,0.540457072,14000,25904,,,0.021436893,552,25750,, -51,800,51800,VA,Suffolk city,2024,1,8668.189627,1423,265311,7981.006501,9355.372753,0,,,,2,,,,2,10188.98426,9065.50621,11312.46231,,,,,2,7921.556728,6963.611999,8879.501456,,,,,2,,0.161,,,0.137,0.19,3.658615829,,,2.901630647,4.529553556,5.436709622,,,4.493558082,6.480153112,0.094848633,777,8192,0.088503551,0.101193715,0,,,,0.085889571,0.042873393,0.128905748,0.138667426,0.127237288,0.150097564,0.059340659,0.037631513,0.081049806,0.060015389,0.052559985,0.067470792,,,,0.095588235,0.04617174,0.145004731,0.153,,,0.123,0.188,0.424,,,0.354,0.497,9.2,0.038721447,0.06,,,0.24,,,0.199,0.291,0.816313982,76998,94324,,,0.175398507,,,0.140552604,0.214037383,0.277777778,15,54,0.206953866,0.35113285,725.6,698,96194,,,15.04956598,293,19469,13.32632411,16.77280784,,,,,,,21.03885645,18.18649172,23.89122119,15.3217569,8.575471024,25.27090794,8.980381321,6.930868711,11.44623319,,,,,,,0.067861972,5420,79868,0.058330057,0.077393887,0.000769279,74,96194,,,1299.918919,0.000497275,49,98537,,,2010.959184,0.001623756,160,98537,,,615.85625,4305,,,,,,,6191,25000,3427,0.46,,,,,,,0.48,,0.46,0.44,,,,,,0.51,0.36,,0.48,0.911751512,58942,64647,0.900687994,0.92281503,0.719801238,18252,25357,0.67759531,0.762007166,0.03121648,1426,45681,,,0.147,3336,,0.105297872,0.188702128,,,,0.065274151,0,0.298254527,0.22343864,0.168536298,0.278340983,0.095696853,0.022593625,0.168800081,0.059940718,0.035992691,0.083888745,4.320512118,157595,36476,3.858256934,4.782767301,0.280785539,6291,22405,0.239992155,0.321578923,10.81148512,104,96194,,,62.98030571,292,463637,55.75644423,70.2041672,,,,,,,57.89400229,47.17188301,68.61612156,,,,76.95709863,65.52225755,88.39193971,,,,7.5,,,,,,,,,,0.133940182,4635,34605,0.117706958,0.150173406,0.116712808,0.100981506,0.13244411,0.01965034,0.012342656,0.026958023,0.006068487,0.002635489,0.009501486,0.830234332,38087,45875,0.811877313,0.848591352,,,,0.811752988,0.699188761,0.924317215,0.743290865,0.713200842,0.773380887,0.699436986,0.646490047,0.752383925,0.831745388,0.801498475,0.861992301,0.498,,45875,0.467182087,0.528817913,76.02730769,,,75.44506925,76.60954614,,,,92.96559956,72.80323795,113.1279612,73.86785779,72.97295041,74.76276517,82.57758451,77.54126388,87.61390513,77.10609227,76.30280908,77.90937546,,,,427.6891536,1423,265311,404.8389938,450.5393133,,,,,,,510.5923008,471.5857421,549.5988594,,,,391.5667509,360.8534697,422.280032,,,,61.80087757,60,97086,47.16058026,79.54997982,,,,,,,67.9475164,45.50551813,97.58396776,,,,49.57735307,30.28313524,76.56820084,,,,6.848477437,56,8177,5.173266257,8.893317599,,,,,,,8.739780096,5.938256549,12.40542022,,,,,,,,,,,,,0.106,,,0.091,0.123,0.166,,,0.144,0.191,0.108,,,0.093,0.126,346.3,277,79995,,,0.06,5600,,,,0.038721447,3275.25356,84585,,,26.22114345,74,282215,20.58923737,32.91824442,,,,,,,22.01766494,14.38266974,32.26098053,,,,34.36576877,25.25067428,45.69918717,,,,0.365,,,0.352,0.378,0.078886271,4553,57716,0.066971377,0.090801164,0.04045795,940,23234,0.028543056,0.052372843,0.001156926,114,98537,,,864.3596491,0.82,911.02,1111,,,0.062753859,309,4924,0.02463181,0.100875908,3.153484515,,,,,,,2.86187735,3.444260745,3.547800287,,,,,,,,,,,0.040636876,,,,,-3210.03,,,,,0.734037314,50675,69036,0.687394036,0.780680592,81858,,,75391.78723,88324.21277,108953,105929,111977,51402,12844.21277,89959.78723,69912,63930.7234,75893.2766,79841,59514.19149,100167.8085,101422,96727.53192,106116.4681,,,,,,0.504626993,7089,14048,,,36.91269035,,,,,0.23625058,,81858,,,5.833333333,35,6000,,,5.771591602,37,641071,4.063733123,7.955378756,,,,,,,11.94796661,8.172400313,16.8669639,,,,,,,,,,11.46796809,54,463637,8.564827093,15.03871441,11.64704284,,,,,,,6.862730928,3.654115188,11.73547889,,,,16.96640089,11.94591198,23.38594872,,,,12.29410077,57,463637,9.311431867,15.92843354,,,,,,,16.02423278,10.88768873,22.74511933,,,,11.0570544,7.155542613,16.3223935,,,,8.42340396,54,641071,6.327920304,10.99071497,,,,,,,10.08109682,6.643506329,14.6674666,,,,8.592678402,5.662629211,12.50189594,,,,31.11111111,,9900,,,236,72,0.729171563,49642,68080,,,0.654,,,,,60.34872808,,,,,0.704444077,25584,36318,0.687766066,0.721122089,0.13567981,4807,35429,0.117455653,0.153903968,0.867283441,31498,36318,0.85172764,0.882839241,98537,,,,,0.234267331,23084,98537,,,0.153252078,15101,98537,,,0.421669018,41550,98537,,,0.004231913,417,98537,,,0.022691984,2236,98537,,,0.000984402,97,98537,,,0.052132701,5137,98537,,,0.473507414,46658,98537,,,0.007258609,645,88860,0.003933903,0.010583315,0.510782752,50331,98537,,,0.270556804,25520,94324,, -51,810,51810,VA,Virginia Beach city,2024,1,6600.927745,4996,1276170,6332.765302,6869.090187,0,,,,2,2521.749952,1918.187107,3125.312798,,9235.986617,8513.006522,9958.966712,,4978.478223,4166.044919,5790.911527,,6424.565953,6087.67758,6761.454326,,,,,2,,0.133,,,0.115,0.154,3.000145172,,,2.441319701,3.638514965,4.643892067,,,3.971105635,5.395836602,0.083367973,3209,38492,0.080606327,0.086129618,0,,,,0.087138508,0.076355228,0.097921789,0.140164453,0.132511452,0.147817454,0.079372512,0.07126536,0.087479664,0.06323629,0.060031361,0.066441219,,,,0.088303641,0.072825907,0.103781374,0.137,,,0.111,0.167,0.315,,,0.274,0.358,9.2,0.025527005,0.068,,,0.191,,,0.162,0.222,0.97133654,446300,459470,,,0.179652109,,,0.15323368,0.209649391,0.393103448,57,145,0.352821967,0.432847021,631.9,2892,457672,,,10.90082931,974,89351,10.21623052,11.58542811,,,,,,,17.88204822,16.03224254,19.7318539,18.91012607,16.19247294,21.62777919,7.240358611,6.470738,8.009979222,,,,11.28220765,8.858959635,14.16377855,0.070445178,26817,380679,0.063296242,0.077594114,0.000712301,326,457672,,,1403.901841,0.000803305,366,455618,,,1244.857924,0.002464784,1123,455618,,,405.715049,2779,,,,,,1818,4317,2716,2607,0.5,,,,,,0.42,0.48,0.43,0.51,0.45,,,,,0.58,0.39,0.36,0.34,0.47,0.945144824,298834,316178,0.940724267,0.94956538,0.769483268,104552,135873,0.748064633,0.790901902,0.027955378,6493,232263,,,0.126,12295,,0.096212766,0.155787234,,,,0.075412685,0.041133331,0.109692038,0.229029794,0.185723725,0.272335863,0.124436506,0.093275937,0.155597075,0.060707772,0.047188089,0.074227456,3.635097684,158712,43661,3.504219799,3.76597557,0.256583845,25848,100739,0.235178989,0.277988701,7.407051338,339,457672,,,61.69503798,1394,2259501,58.45630666,64.93376929,,,,25.77098187,18.57345695,34.83488089,64.33368354,56.7710668,71.89630029,28.59356073,21.54058309,37.21844959,71.82389855,67.34751903,76.30027807,,,,6.8,,,,,,,,,,0.135343578,23340,172450,0.126717475,0.14396968,0.120334262,0.112008113,0.128660411,0.013569151,0.009999318,0.017138983,0.006146709,0.004249601,0.008043817,0.771277319,187071,242547,0.763860943,0.778693696,,,,0.669296421,0.628147092,0.71044575,0.744092374,0.720681078,0.76750367,0.697424447,0.665613631,0.729235263,0.776286049,0.763483352,0.789088746,0.319,,242547,0.305362781,0.332637219,79.19502197,,,78.92538046,79.46466348,,,,88.81443758,87.06763778,90.56123738,76.20092468,75.52355601,76.87829335,82.70472794,81.05825913,84.35119675,79.15176053,78.83109608,79.47242498,,,,327.0862549,4996,1276170,317.7916627,336.3808472,,,,148.2135303,126.4494978,169.9775628,443.6153548,417.8034493,469.4272603,229.3116775,195.2207734,263.4025816,324.9049746,313.3781608,336.4317884,,,,50.1387933,220,438782,43.51329406,56.76429254,,,,,,,77.58202683,60.7031579,97.70172302,67.04659739,46.43171774,93.6908996,38.95395642,31.32358105,47.88102587,,,,5.4131991,214,39533,4.687923302,6.138474898,,,,,,,8.883405305,6.950717544,11.18717878,8.1281377,5.628971644,11.35825773,3.463353392,2.746223845,4.310443091,,,,,,,0.093,,,0.081,0.108,0.145,,,0.127,0.166,0.096,,,0.084,0.11,307.5,1186,385704,,,0.068,31310,,,,0.025527005,11180.67496,437994,,,20.45806942,278,1358877,18.05316223,22.86297661,,,,,,,18.45245418,13.60538305,24.46527716,,,,25.3926444,21.95001035,28.83527844,,,,0.343,,,0.33,0.355,0.082877518,23243,280450,0.073345603,0.092409433,0.037768584,3962,104902,0.028236669,0.047300499,0.001231295,561,455618,,,812.1532977,0.92,4662.56,5068,,,0.059805222,1308,21871,0.044285739,0.075324704,3.456203665,,,,,,3.714244985,3.037558665,3.375609393,3.623520297,,,,,,,,,,,0.070438504,,,,,1650.44,,,,,0.834354207,53669,64324,0.797596298,0.871112116,83066,,,79976.46809,86155.53192,74848,66351.48936,83344.51064,100068,86857.95745,113278.0426,65686,61496.7234,69875.2766,77568,67988.42553,87147.57447,94600,92169.3617,97030.6383,,,,,,0.407707353,26682,65444,,,42.09824896,,,,,0.270363326,,83066,,,5.953441945,167,28051,,,4.64477283,147,3164848,3.893907793,5.395637866,,,,,,,14.88639202,11.97041712,18.29790313,,,,2.474395165,1.824423663,3.280689005,,,,14.01637018,322,2259501,12.45816194,15.57457843,14.25093417,,,,,,,6.808173559,4.559540682,9.777672889,5.875279726,3.035842769,10.26293131,18.04292699,15.77620926,20.30964472,,,,13.32152542,301,2259501,11.8165591,14.82649174,,,,,,,19.901787,15.9188607,24.57854504,6.758477991,3.59860489,11.5572032,13.87094502,11.90375896,15.83813108,,,,6.445807192,204,3164848,5.561265519,7.330348865,,,,4.906508707,2.449311468,8.779099394,10.42047441,8.007378655,13.33231344,5.658348894,3.166934923,9.332586006,5.825138618,4.751092044,6.899185192,,,,17.05747126,,43500,,,604,138,0.676832766,227717,336445,,,0.725,,,,,158.9038895,,,,,0.645518822,115493,178915,0.634976827,0.656060817,0.145249614,25490,175491,0.135722048,0.15477718,0.935371545,167352,178915,0.928919016,0.941824075,455618,,,,,0.217083171,98907,455618,,,0.160272421,73023,455618,,,0.191135996,87085,455618,,,0.004815438,2194,455618,,,0.07839901,35720,455618,,,0.001867793,851,455618,,,0.090395902,41186,455618,,,0.598692326,272775,455618,,,0.014191731,6107,430321,0.011873127,0.016510335,0.508173514,231533,455618,,,0.018146996,8338,459470,, -51,820,51820,VA,Waynesboro city,2024,1,10393.55831,418,62605,8939.212459,11847.90416,0,,,,2,,,,2,10221.71138,6614.952656,15089.26242,1,,,,2,11314.3708,9515.532361,13113.20924,,,,,2,,0.18,,,0.151,0.21,4.016113994,,,3.169765077,4.924218241,5.347518647,,,4.294168041,6.481325244,0.090157155,218,2418,0.078741227,0.101573083,0,,,,,,,0.116541353,0.077980344,0.155102363,0.086956522,0.053713665,0.120199379,0.087288598,0.074366878,0.100210318,,,,,,,0.182,,,0.142,0.221,0.391,,,0.311,0.474,7.4,0.079537351,0.122,,,0.252,,,0.203,0.303,0.748918724,16623,22196,,,0.165603807,,,0.131438636,0.203869622,0.285714286,2,7,0.086061846,0.500925625,456.8,103,22550,,,31.89227498,135,4233,26.51236899,37.27218098,,,,,,,24.5398773,14.02666021,39.85122331,27.52293578,16.31183606,43.49810439,38.01396431,30.86157373,46.32684651,,,,,,,0.100194238,1857,18534,0.084704876,0.115683599,0.000842572,19,22550,,,1186.842105,0.001183795,27,22808,,,844.7407407,0.001534549,35,22808,,,651.6571429,2310,,,,,,,3632,,2203,0.52,,,,,,,0.57,0.45,0.52,0.57,,,,,,0.36,0.46,0.43,0.58,0.881827964,13932,15799,0.852236571,0.911419356,0.576559546,3660,6348,0.486605027,0.666514066,0.02992126,323,10795,,,0.185,947,,0.114702128,0.255297872,,,,,,,0.517799353,0.220282555,0.815316151,0.326023392,0.091193629,0.560853155,0.197330791,0.125162826,0.269498756,4.855457754,108670,22381,3.616330464,6.094585045,0.361462729,1799,4977,0.264255263,0.458670194,17.29490022,39,22550,,,87.70686417,99,112876,71.28381131,106.7799601,,,,,,,,,,,,,98.47484088,78.31996333,122.2332426,,,,6.9,,,,,,,,,,0.158124318,1450,9170,0.120499891,0.195748746,0.149501661,0.109721362,0.18928196,0.014721919,0.001522645,0.027921193,0,0,0.004410086,0.78783137,8559,10864,0.755810833,0.819851907,,,,,,,,,,,,,0.800482981,0.76084966,0.840116301,0.293,,10864,0.223524829,0.362475172,74.40771734,,,73.26694481,75.54848987,,,,,,,73.56889738,70.25553157,76.8822632,98.53673678,71.16673969,125.9067339,73.65666139,72.3315544,74.98176839,,,,523.7803897,418,62605,471.6021453,575.9586341,,,,,,,565.4207817,419.6662025,745.4368115,,,,560.9486209,498.7891186,623.1081232,,,,56.88282139,13,22854,30.28770671,97.27135695,,,,,,,,,,,,,69.66213863,33.40570321,128.1111532,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.12,,,0.102,0.139,0.177,,,0.151,0.203,0.109,,,0.092,0.126,282.2,53,18782,,,0.122,2690,,,,0.079537351,1670.761589,21006,,,30.9182727,21,67921,19.13889811,47.26186413,,,,,,,,,,,,,34.25485613,19.95471603,54.84534298,,,,0.357,,,0.342,0.373,0.120706428,1613,13363,0.100451109,0.140961747,0.048315439,261,5402,0.032826077,0.0638048,0.000657664,15,22808,,,1520.533333,0.88,195.36,222,,,,,,,,2.949557731,,,,,,,2.557386161,2.619708251,3.148741404,,,,,,,,,,,0.0103385,,,,,1211.924,,,,,0.814793067,40241,49388,0.692972338,0.936613797,58527,,,50398.65957,66655.34043,,,,,,,29125,8701.680851,49548.31915,39104,22641.19149,55566.80851,59286,52537.40426,66034.59575,,,,,,0.615028136,1858,3021,,,33.87985192,,,,,0.309105199,,58527,,,8.422664625,11,1306,,,,,,,,,,,,,,,,,,,,,,,,,,30.0699389,32,112876,20.2880615,42.92670752,28.34969347,,,,,,,,,,,,,33.00679098,21.3602548,48.72453466,,,,15.06077466,17,112876,8.773456244,24.11375918,,,,,,,,,,,,,16.81277771,9.191702025,28.20898417,,,,8.95977063,14,156254,4.898389978,15.03297267,,,,,,,,,,,,,10.30502885,5.324758784,18.00081156,,,,24.7826087,,2300,,,49,8,0.647357294,10717,16555,,,0.715,,,,,73.68288189,,,,,0.568656558,5363,9431,0.524911525,0.612401591,0.184103115,1714,9310,0.140576502,0.227629728,0.85579472,8071,9431,0.817704132,0.893885308,22808,,,,,0.228034023,5201,22808,,,0.18379516,4192,22808,,,0.121010172,2760,22808,,,0.006620484,151,22808,,,0.017362329,396,22808,,,0.000526131,12,22808,,,0.100096457,2283,22808,,,0.724351105,16521,22808,,,0.018484906,387,20936,0.008094757,0.028875056,0.518283059,11821,22808,,,0.023517751,522,22196,, -51,830,51830,VA,Williamsburg city,2024,1,8956.218855,189,42149,6531.093803,11381.34391,0,,,,2,,,,2,19342.06993,12261.21315,29022.60176,1,,,,2,5908.032766,4017.054121,7799.011412,,,,,2,,0.15,,,0.128,0.173,3.658238129,,,2.866145196,4.512692756,5.170524179,,,4.145915905,6.257644949,0.064453125,33,512,0.043182715,0.085723535,0,,,,,,,0.081300813,0.03300187,0.129599756,,,,0.048034935,0.020338272,0.075731597,,,,,,,0.147,,,0.116,0.178,0.351,,,0.275,0.43,8.2,0.056415095,0.097,,,0.218,,,0.178,0.261,0.996110211,15365,15425,,,0.177040179,,,0.139753085,0.218324217,0.333333333,1,3,0.04092282,0.635504717,404.1,63,15590,,,2.535122003,24,9467,1.624300502,3.772060589,,,,,,,,,,12.36093943,5.927550922,22.73220772,,,,,,,,,,0.084462617,723,8560,0.068973255,0.099951979,0.000128287,2,15590,,,7795,,0,15909,,,,0.000440003,7,15909,,,2272.714286,1730,,,,,,,4523,,1154,0.58,,,,,,0.54,0.5,,0.59,0.57,,,,,,0.57,0.48,0.31,0.59,0.932752341,7171,7688,0.913915966,0.951588716,0.753939828,2105,2792,0.646286329,0.861593328,0.040885111,279,6824,,,0.202,349,,0.125744681,0.278255319,,,,,,,0.374712644,0.190182253,0.559243035,,,,,,,5.172430145,141797,27414,3.565120095,6.779740196,0.350821745,555,1582,0.228466094,0.473177395,14.11161001,22,15590,,,64.70355209,49,75730,47.86804404,85.54152726,,,,,,,113.7158852,60.54891962,194.457627,,,,60.26907225,40.94991053,85.54713723,,,,7.2,,,,,,,,,,0.154960981,695,4485,0.101852097,0.208069866,0.147816349,0.091351997,0.204280701,0.013154961,0.001635149,0.024674773,0.000891862,0,0.006438626,0.61902545,3989,6444,0.568875206,0.669175694,,,,0.45472837,0.283923186,0.625533555,0.831604426,0.743348615,0.919860237,,,,0.775611779,0.742496823,0.808726736,0.239,,6444,0.16367186,0.31432814,76.58339656,,,74.71808104,78.44871209,,,,,,,67.27905884,62.50723567,72.050882,,,,79.39887768,77.71426083,81.08349453,,,,416.0088627,189,42149,349.3148297,482.7028957,,,,,,,875.8282161,668.3491966,1127.364524,,,,314.3329798,246.7632139,381.9027456,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.106,,,0.091,0.121,0.164,,,0.142,0.187,0.103,,,0.088,0.119,231.2,33,14275,,,0.097,1480,,,,0.056415095,793.6475562,14068,,,26.19915726,12,45803,13.53748687,45.76465526,,,,,,,,,,,,,,,,,,,0.355,,,0.34,0.37,0.093368622,635,6801,0.075496282,0.111240963,0.052088985,96,1843,0.034216645,0.069961326,6.28575E-05,1,15909,,,15909,0.92,875.84,952,,,,,,,,3.108394661,,,,,,,,,3.715443075,,,,,,,,,,,0.004387983,,,,,-2377.232,,,,,0.888198506,43885,49409,0.647002647,1.129394365,67543,,,57728.70213,77357.29787,,,,,,,48750,25403.95745,72096.04255,45667,32781.04255,58552.95745,76340,67736.25532,84943.74468,,,,,,0.429274293,698,1626,,,19.88733718,,,,,0.304783619,,67543,,,17.89709172,8,447,,,,,,,,,,,,,,,,,,,,,,,,,,21.3392362,14,75730,10.65246983,38.18178807,18.48672917,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,700,,,29,-888,0.541666667,6890,12720,,,0.642,,,,,97.79101024,,,,,0.508807866,2484,4882,0.464368764,0.553246967,0.160486068,766,4773,0.108975193,0.211996942,0.890823433,4349,4882,0.845445064,0.936201802,15909,,,,,0.110440631,1757,15909,,,0.176126721,2802,15909,,,0.14318939,2278,15909,,,0.00427431,68,15909,,,0.058960337,938,15909,,,0.00125715,20,15909,,,0.083160475,1323,15909,,,0.67791816,10785,15909,,,0.014138478,214,15136,0.002106666,0.02617029,0.536174492,8530,15909,,,0.001166937,18,15425,, -51,840,51840,VA,Winchester city,2024,1,9861.33677,446,78192,8508.757228,11213.91631,0,,,,2,,,,2,16983.58507,11895.09419,23512.44055,,4057.066244,2404.47458,6411.913772,1,10239.48207,8511.435168,11967.52896,,,,,2,,0.167,,,0.143,0.193,3.773369074,,,3.032922602,4.639347477,5.027002341,,,4.075429146,6.106565275,0.08488695,214,2521,0.074006985,0.095766914,0,,,,,,,0.098540146,0.063249421,0.133830871,0.077028886,0.057646389,0.096411383,0.084051724,0.069475493,0.098627955,,,,,,,0.158,,,0.127,0.193,0.38,,,0.305,0.46,8,0.043648086,0.112,,,0.236,,,0.196,0.283,1,28120,28120,,,0.167290892,,,0.134025276,0.20449732,0,0,1,0,0.662081041,501.1,141,28136,,,20.07198228,145,7224,16.80488298,23.33908159,,,,,,,30.26134801,18.96462568,45.81604455,36.79525223,28.21070889,47.16985275,13.39491917,10.17132371,17.3160392,,,,,,,0.111017025,2491,22438,0.094336174,0.127697876,0.002558999,72,28136,,,390.7777778,0.002434135,68,27936,,,410.8235294,0.00762457,213,27936,,,131.1549296,3316,,,,,,,709,1449,3363,0.4,,,,,,0.3,0.35,0.38,0.41,0.52,,,,,,0.45,0.43,0.35,0.53,0.869993085,16355,18799,0.844499339,0.895486831,0.5924,4443,7500,0.519150443,0.665649557,0.027222149,411,15098,,,0.217,1310,,0.152659575,0.281340426,,,,0.458715596,0.032985891,0.884445302,0.187387387,0,0.390502206,0.324543611,0.227201528,0.421885693,0.172023375,0.080467498,0.263579251,4.162707338,118454,28456,3.564719401,4.760695274,0.318481583,1980,6217,0.222466255,0.414496911,18.83707705,53,28136,,,82.16985581,115,139954,67.15159383,97.18811779,,,,,,,87.53029895,46.60619776,149.679477,,,,100.2014921,80.77654497,122.888235,,,,7.5,,,,,,,,,,0.143861293,1535,10670,0.110605743,0.177116844,0.115819209,0.084104163,0.147534255,0.021555764,0.004205025,0.038906502,0.015463918,0.001986284,0.028941551,0.71540397,10236,14308,0.677950387,0.752857553,,,,,,,0.792440318,0.648896292,0.935984345,0.607460036,0.51536794,0.699552131,0.839873572,0.813883509,0.865863634,0.212,,14308,0.161702776,0.262297224,75.30261082,,,74.2261972,76.37902443,,,,,,,70.03036073,66.10705325,73.95366822,80.47041005,75.51948529,85.4213348,75.11505993,73.82913307,76.40098679,,,,466.5320676,446,78192,421.5766835,511.4874517,,,,,,,715.2240303,551.9948069,911.611739,251.8853194,146.7324808,403.2927969,481.9705361,426.6175193,537.3235528,,,,71.19368071,21,29497,44.07001046,108.8271036,,,,,,,,,,,,,,,,,,,9.148766905,23,2514,5.799533428,13.72764236,,,,,,,,,,,,,,,,,,,,,,0.111,,,0.096,0.129,0.163,,,0.143,0.188,0.103,,,0.088,0.12,287.2,68,23680,,,0.112,3160,,,,0.043648086,1143.710791,26203,,,44.09276164,37,83914,31.04537332,60.77606376,,,,,,,,,,,,,56.42005642,38.33469102,80.0837665,,,,0.356,,,0.34,0.371,0.129514932,2112,16307,0.108068124,0.150961741,0.063265623,408,6449,0.043010303,0.083520942,0.009056415,253,27936,,,110.4189723,0.905657534,1322.26,1460,,,,,,,,2.932644207,,,,,,,2.595041274,2.612728158,3.29254461,,,,,,,,,,,0.015168424,,,,,316.0315,,,,,0.963910116,50960,52868,0.782188921,1.145631311,60557,,,54053.85106,67060.14894,,,,203125,84041.59575,322208.4043,42468,23693.70213,61242.29787,57971,48642.82979,67299.17021,70494,64790.34043,76197.65957,,,,,,0.676879661,3358,4961,,,20.28036261,,,,,0.309047674,,60557,,,11.04009297,19,1721,,,,,,,,,,,,,,,,,,,,,,,,,,10.97059308,16,139954,6.27064184,17.81555585,11.43232777,,,,,,,,,,,,,13.3113214,7.087718025,22.76276499,,,,9.288766309,13,139954,4.945876853,15.88407328,,,,,,,,,,,,,10.89146654,5.222881551,20.02979474,,,,7.188555819,14,194754,3.930050359,12.06117519,,,,,,,,,,,,,8.555051758,4.270651014,15.30735074,,,,54.44444444,,2700,,,136,11,0.622936488,12113,19445,,,0.677,,,,,163.0561523,,,,,0.439422305,4929,11217,0.402056039,0.476788572,0.151049857,1633,10811,0.113810556,0.188289158,0.824552019,9249,11217,0.7830573,0.866046738,27936,,,,,0.220611398,6163,27936,,,0.17389748,4858,27936,,,0.106171249,2966,27936,,,0.014747995,412,27936,,,0.027419817,766,27936,,,0.001217068,34,27936,,,0.198811569,5554,27936,,,0.640249141,17886,27936,,,0.044651972,1181,26449,0.029237888,0.060066055,0.50533362,14117,27936,,,0,0,28120,, -53,000,53000,WA,Washington,2024,,6333.473978,86805,21610982,6269.88079,6397.067166,0,16541.97864,15597.40402,17486.55326,,2935.910878,2797.239789,3074.581967,,10068.72505,9674.779742,10462.67036,,5726.431195,5561.50315,5891.35924,,6339.211512,6259.846013,6418.577011,,14574.89175,13533.66057,15616.12293,,,0.138,,,0.13,0.146,3.464536412,,,3.282678121,3.646394703,5.216041377,,,4.998905665,5.43317709,0.066632699,39887,598610,0.066000936,0.067264462,0,0.080536004,0.074330815,0.086741194,0.082716891,0.08054239,0.084891391,0.100428705,0.096831767,0.104025642,0.067317304,0.065863004,0.068771604,0.058697325,0.057903139,0.059491512,0.073734366,0.068143894,0.079324838,0.074703019,0.07148706,0.077918977,0.108,,,0.101,0.116,0.287,,,0.276,0.298,8.5,0.050759088,0.089,,,0.175,,,0.166,0.184,0.854704196,6585736,7705281,,,0.17707965,,,0.16760591,0.186968603,0.322953114,923,2858,0.313853971,0.332075784,382.9,29632,7738692,,,12.51152026,19223,1536424,12.33464969,12.68839083,24.44055787,22.38859766,26.49251808,1.995585523,1.754858718,2.236312328,12.20479174,11.35100066,13.05858283,24.55416895,24.00589831,25.10243959,8.610772578,8.416667323,8.804877832,30.19862181,27.39906404,32.99817957,11.37490311,10.74731587,12.00249034,0.075853845,487958,6432871,0.073470866,0.078236824,0.000832182,6440,7738692,,,1201.660248,0.000867864,6757,7785786,,,1152.254847,0.00499333,38877,7785786,,,200.2671502,1791,,,,,3477,1473,2757,2243,1750,0.39,,,,,0.23,0.3,0.28,0.27,0.4,0.44,,,,,0.35,0.45,0.31,0.3,0.45,0.920773495,4923665,5347314,0.919433184,0.922113806,0.719150422,1602859,2228823,0.714054882,0.724245961,0.042108107,168026,3990348,,,0.115,185218,,0.107851064,0.122148936,0.239167413,0.208454369,0.269880456,0.091852662,0.082762334,0.100942989,0.202370165,0.182946788,0.221793541,0.199593019,0.191321795,0.207864242,0.084686409,0.080691276,0.088681542,4.437219219,174822,39399,4.389311161,4.485127276,0.192036315,318763,1659910,0.18720459,0.19686804,8.27530027,6404,7738692,,,73.88545769,28068,37988531,73.02106855,74.74984684,172.1675094,160.3976477,183.937371,28.07730354,26.33180988,29.8227972,92.46579196,87.61693959,97.31464433,45.19425714,43.32888258,47.05963171,84.28919549,83.16455861,85.41383238,74.48185334,64.21042451,84.75328218,7.1,,,,,0.435897436,,,,,0.16367497,475610,2905820,0.161381393,0.165968546,0.128270546,0.126280089,0.130261004,0.034043747,0.032951869,0.035135625,0.011955317,0.011270097,0.012640537,0.659417479,2454824,3722716,0.657311832,0.661523126,0.710239419,0.683644718,0.736834119,0.53716511,0.529928682,0.544401538,0.638061184,0.624524297,0.651598071,0.676870037,0.670478257,0.683261817,0.678169536,0.675011725,0.681327348,0.37,,3722716,0.365704024,0.374295976,79.4012328,,,79.33751946,79.46494615,70.8181667,70.11630824,71.52002516,86.68918691,86.38430592,86.9940679,75.59835487,75.20057848,75.99613127,82.484104,82.08931912,82.87888888,79.13176501,79.05844877,79.20508125,72.00345454,70.96660819,73.04030089,319.1955329,86805,21610982,317.0083278,321.3827381,704.7740065,674.3865012,735.1615119,154.1785349,149.0310662,159.3260036,485.6747411,471.1086701,500.2408121,275.8955579,268.3191084,283.4720073,325.0658358,322.4707795,327.6608922,695.1341112,652.3827055,737.8855168,42.78495608,3154,7371750,41.2917618,44.27815036,95.45148553,77.22595182,116.6844913,29.01216863,24.72589462,33.29844263,82.81509282,72.88141813,92.74876751,45.37241894,42.07418999,48.67064789,37.92886765,36.03694969,39.82078561,113.2146676,88.58350477,142.5751369,4.399752741,2662,605034,4.232612773,4.56689271,8.650742415,6.704206549,10.98613707,2.528860207,2.129448736,2.928271678,8.794812551,7.672725224,9.916899878,5.110837983,4.694175626,5.52750034,3.780085586,3.5753836,3.984787572,7.163671685,5.453318799,9.240614541,9.057323323,7.881644977,10.23300167,0.105517724,,,0.098460225,0.113017678,0.159331905,,,0.150333826,0.168761582,0.079,,,0.074,0.085,222.9,14591,6545098,,,0.089,688170,,,,0.050759088,341331.5161,6724540,,,22.80537629,5256,23047197,22.18883008,23.4219225,83.97036996,73.36871619,94.57202372,4.892851092,3.970054053,5.815648131,43.15791395,38.93897258,47.37685531,13.96819539,12.64792725,15.28846354,24.81665703,24.02946374,25.60385033,18.02202291,12.15938318,25.72755831,0.299317013,,,0.28848377,0.310379609,0.091778287,437017,4761660,0.088203819,0.095352756,0.032194938,56380,1751207,0.02862047,0.035769406,0.001145421,8918,7785786,,,873.0417134,,,,,,0.072804936,26811,368258,0.068265946,0.077343925,3.021057347,,,,,,3.401782495,2.605584503,2.544178493,3.22714205,2.950701146,,,,,,3.519369561,2.441862072,2.478797585,3.142798167,0.178069106,,,,,2800.839,,,,,0.786635622,59461,75589,0.777654128,0.795617115,91255,,,90269.6383,92240.3617,64058,60510.93617,67605.06383,125153,122648.4894,127657.5106,65817,63441.17021,68192.82979,70492,69316,71668,92595,92024.2766,93165.7234,,,,,,0.434606973,458639,1055296,,,60.10612736,,,,,0.323683165,,,,,4.661016949,,,,,3.542631953,1858,52446882,3.381545413,3.703718492,9.483781229,7.287597893,12.13387596,1.603603889,1.263457473,2.007149393,17.16335871,15.37287243,18.95384499,5.808647809,5.235082329,6.382213289,2.427902918,2.266196059,2.589609778,7.594620839,5.046570393,10.97634166,15.82363823,6247,37988531,15.42329667,16.2239798,16.44443688,23.5865327,19.14279836,28.03026704,7.453359028,6.550658976,8.35605908,11.18245179,9.484752625,12.88015095,8.355788921,7.510571448,9.201006393,17.93752999,17.41792777,18.45713221,18.21042076,13.68022854,23.76064891,11.21391085,4260,37988531,10.87716026,11.55066145,15.91816388,12.54170263,19.92395578,3.163639835,2.577725539,3.749554132,21.11423596,18.79718225,23.43128967,8.898558834,8.070837284,9.726280385,12.21039089,11.7823442,12.63843759,15.1176039,10.84865356,20.50873671,8.458081455,4436,52446882,8.209177289,8.706985621,31.91367652,27.61766952,36.20968351,3.776909159,3.223602247,4.330216071,9.724282555,8.376565752,11.07199936,9.582794608,8.846093077,10.31949614,8.492053048,8.189627042,8.794479053,10.30698542,7.293836327,14.14714277,,,,,,,,0.764808701,4087631,5344645,,,,,,,,175.9981136,,,,,0.637824274,1900252,2979272,0.634135444,0.641513104,0.138836794,404353,2912434,0.136729679,0.140943909,0.920986738,2743870,2979272,0.919173333,0.922800143,7785786,,,,,0.211484492,1646573,7785786,,,0.168070379,1308560,7785786,,,0.041584498,323768,7785786,,,0.019802497,154178,7785786,,,0.104580064,814238,7785786,,,0.008473518,65973,7785786,,,0.14042423,1093313,7785786,,,0.651429926,5071894,7785786,,,0.035558167,257739,7248377,0.034681431,0.036434903,0.495446959,3857444,7785786,,,0.166281541,1281246,7705281,, -53,001,53001,WA,Adams County,2024,1,7468.869425,207,57872,6132.367501,8805.371349,0,,,,2,,,,2,,,,2,6151.95858,4737.757737,7855.913765,,9893.726603,7002.546726,12784.90648,,,,,2,,0.249,,,0.213,0.283,4.633033712,,,3.724761147,5.543720359,5.298786643,,,4.349018163,6.269405523,0.067915691,174,2562,0.058172995,0.077658387,0,,,,,,,,,,0.068158169,0.056891139,0.079425198,0.061769616,0.0424906,0.081048632,,,,,,,0.165,,,0.134,0.199,0.394,,,0.331,0.459,6.2,0.232286947,0.108,,,0.293,,,0.246,0.345,0.807257556,16640,20613,,,0.151918403,,,0.122483515,0.183936638,0.2,7,35,0.115443134,0.296296308,451,93,20621,,,32.17481074,187,5812,27.56321458,36.7864069,,,,,,,,,,37.38317757,31.73019503,43.03616011,15.8870256,9.415658235,25.10834975,,,,,,,0.163183912,2905,17802,0.141737103,0.18463072,0.00033946,7,20621,,,2945.857143,0.001288107,27,20961,,,776.3333333,0.001812891,38,20961,,,551.6052632,1157,,,,,,,,,1096,0.34,,,,,,,,0.21,0.36,0.29,,,,,,,,0.15,0.31,0.709628709,7989,11258,0.675133153,0.744124264,0.339137645,1636,4824,0.281418805,0.396856486,0.051372273,511,9947,,,0.174,1253,,0.113234043,0.234765957,,,,,,,,,,0.352877698,0.288751509,0.417003887,0.037390029,0.002024824,0.072755235,4.153485488,107189,25807,3.594426352,4.712544625,0.210680833,1507,7153,0.140356767,0.2810049,10.66873576,22,20621,,,62.06454713,62,99896,47.5845324,79.56394838,,,,,,,,,,51.12553643,35.19246684,71.79926142,88.93523062,59.56131973,127.7258263,,,,9.4,,,,,0,,,,,0.187241094,1130,6035,0.143127075,0.231355112,0.092138631,0.058317842,0.12595942,0.102734051,0.067748348,0.137719754,0.013256007,0.005562687,0.020949327,0.730434783,5880,8050,0.668258253,0.792611312,,,,,,,,,,0.691631891,0.588084931,0.795178851,0.760634706,0.691407834,0.829861579,0.283,,8050,0.207888904,0.358111096,78.09975497,,,76.71174205,79.4877679,,,,,,,,,,78.47019837,76.49209104,80.44830571,76.29754563,73.97755233,78.61753893,,,,375.2928271,207,57872,323.1803901,427.4052642,,,,,,,,,,313.7032376,245.8932614,394.4347236,468.3999777,376.1604542,560.6395012,,,,41.72551034,13,31156,22.21707694,71.35189343,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.152,,,0.131,0.173,0.181,,,0.157,0.206,0.127,,,0.109,0.146,84.5,13,15377,,,0.108,2190,,,,0.232286947,4350.269941,18728,,,,,,,,,,,,,,,,,,,,,,,,,,0.34,,,0.327,0.353,0.232962513,2492,10697,0.199600811,0.266324215,0.059368704,442,7445,0.040304874,0.078432534,0.001097276,23,20961,,,911.3478261,,,,,,,,,,,2.409841612,,,,,,,,2.264677398,3.233822483,2.738335023,,,,,,,,2.648002463,3.169046384,0.292333023,,,,,749.8393333,,,,,0.805646779,36553,45371,0.662273724,0.949019834,62410,,,54560.46809,70259.53192,,,,,,,,,,59264,50203.91489,68324.08511,70700,59617.95745,81782.04255,,,,,,0.772194305,4149,5373,,,,,,,,0.329290178,,62410,,,1.071237279,2,1867,,,,,,,,,,,,,,,,,,,,,,,,,,12.23635385,11,99896,6.108343753,21.89421706,11.01145191,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,25.29121022,35,138388,17.61625459,35.17395104,,,,,,,,,,28.1899779,18.24306735,41.61396836,21.74905935,10.42951934,39.99729451,,,,23.4375,,3200,,,26,49,0.637173913,5862,9200,,,0.532,,,,,19.32839021,,,,,0.649111675,4092,6304,0.602675682,0.695547668,0.099242923,603,6076,0.063150688,0.135335158,0.850253807,5360,6304,0.809241011,0.891266604,20961,,,,,0.347884166,7292,20961,,,0.116597491,2444,20961,,,0.007394685,155,20961,,,0.062592434,1312,20961,,,0.014741663,309,20961,,,0.002623921,55,20961,,,0.653499356,13698,20961,,,0.315204427,6607,20961,,,0.143733988,2693,18736,0.106243733,0.181224243,0.492629169,10326,20961,,,0.472905448,9748,20613,, -53,003,53003,WA,Asotin County,2024,1,8924.619114,388,60579,7370.376205,10478.86202,0,,,,2,,,,2,,,,2,,,,2,9041.499234,7386.921379,10696.07709,,,,,2,,0.16,,,0.132,0.189,4.090928252,,,3.270858164,4.959737099,5.949163093,,,4.956265561,6.902943912,0.066284258,104,1569,0.053974283,0.078594232,0,,,,,,,,,,,,,0.062544932,0.049819756,0.075270108,,,,,,,0.164,,,0.128,0.201,0.343,,,0.286,0.403,8.3,0.046132835,0.1,,,0.197,,,0.162,0.237,0.892035001,19879,22285,,,0.170874094,,,0.138801381,0.205519038,0.333333333,1,3,0.04092282,0.635504717,205.4,46,22397,,,20.07469655,86,4284,16.05716602,24.79208692,,,,,,,,,,,,,20.21064617,15.78468234,25.4929801,,,,,,,0.085218837,1435,16839,0.070920965,0.09951671,0.000669733,15,22397,,,1493.133333,0.000622001,14,22508,,,1607.714286,0.004798294,108,22508,,,208.4074074,1423,,,,,10132,,,,1356,0.48,,,,,0.55,,,,0.48,0.44,,,,,0.37,,,0.28,0.44,0.930095886,15035,16165,0.912336335,0.947855438,0.597986853,2911,4868,0.516385842,0.679587864,0.039327952,419,10654,,,0.204,876,,0.139659575,0.268340426,,,,,,,,,,0.664987406,0.613298336,0.716676475,0.135881696,0.089939743,0.18182365,4.475359456,122325,27333,3.489744837,5.460974075,0.262411348,1184,4512,0.169911289,0.354911406,8.036790642,18,22397,,,97.3933985,110,112944,79.19264996,115.594147,,,,,,,,,,,,,105.639365,85.62278093,125.655949,,,,8.1,,,,,0,,,,,0.105546581,980,9285,0.08193132,0.129161841,0.087215601,0.065390258,0.109040945,0.018847604,0.007492394,0.030202813,0.003769521,0,0.007785489,0.786989247,7319,9300,0.755994323,0.817984172,,,,,,,,,,,,,0.749855324,0.698268232,0.801442416,0.084,,9300,0.05636361,0.11163639,77.37643591,,,76.06833799,78.68453383,,,,,,,,,,,,,77.08713492,75.72907403,78.44519582,,,,418.915624,388,60579,372.7593629,465.0718851,,,,,,,,,,,,,425.4224969,376.5837083,474.2612855,,,,60.24701275,12,19918,31.13051064,105.2394068,,,,,,,,,,,,,61.86204763,29.66525639,113.7665082,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.126,,,0.108,0.146,0.19,,,0.165,0.217,0.09,,,0.078,0.105,88.5,17,19216,,,0.1,2230,,,,0.046132835,997.5302816,21623,,,22.12422012,15,67799,12.38275805,36.49053654,,,,,,,,,,,,,23.11375268,12.63650368,38.78094952,,,,0.303,,,0.287,0.317,0.105029466,1301,12387,0.085965637,0.124093296,0.031223268,146,4676,0.020499864,0.041946672,0.000622001,14,22508,,,1607.714286,,,,,,0.244353183,238,974,0.11728019,0.371426176,2.874247386,,,,,,,,,2.903113495,2.94908402,,,,,,,,,3.026905379,0.020446279,,,,,3069.862,,,,,0.694484659,44613,64239,0.574274651,0.814694667,65625,,,60048.82979,71201.17021,,,,,,,8571,6570.489362,10571.51064,,,,66027,59943.25532,72110.74468,,,,,,0.497235772,1529,3075,,,75.29186931,,,,,0.313158095,,65625,,,8.090614887,10,1236,,,,,,,,,,,,,,,,,,,,,,,,,,27.55347224,32,112944,18.3090822,39.82243901,28.33262502,,,,,,,,,,,,,30.77861265,20.28329968,44.78126546,,,,21.24946876,24,112944,13.61493559,31.61752514,,,,,,,,,,,,,23.69481084,15.1817124,35.25600031,,,,8.897079851,14,157355,4.864116346,14.9277882,,,,,,,,,,,,,9.878912755,5.400893531,16.57513698,,,,24.76190476,,2100,,,6,46,0.679613307,11951,17585,,,0.704,,,,,75.40259534,,,,,0.722076008,6859,9499,0.689506633,0.754645383,0.113495623,1063,9366,0.080328811,0.146662434,0.87756606,8336,9499,0.851393841,0.903738278,22508,,,,,0.195397192,4398,22508,,,0.255864582,5759,22508,,,0.008796872,198,22508,,,0.019681891,443,22508,,,0.011462591,258,22508,,,0.00493158,111,22508,,,0.049848943,1122,22508,,,0.885196375,19924,22508,,,0.00681431,144,21132,0.000684137,0.012944483,0.513506309,11558,22508,,,0.072604891,1618,22285,, -53,005,53005,WA,Benton County,2024,1,6576.470366,2347,583043,6177.529388,6975.411343,0,,,,2,2053.767254,1254.494394,3171.876954,1,8721.965287,5588.327734,12977.59298,1,5904.252244,5132.823764,6675.680725,,6946.152347,6425.863417,7466.441277,,,,,2,,0.146,,,0.122,0.175,3.517372601,,,2.773686845,4.405253603,5.374361001,,,4.494772065,6.376918719,0.063747909,1143,17930,0.060171927,0.06732389,0,,,,0.063492064,0.043420556,0.083563571,0.088669951,0.049564785,0.127775117,0.065573771,0.059361809,0.071785732,0.058649229,0.05399403,0.063304427,,,,0.089156627,0.061738948,0.116574306,0.132,,,0.102,0.166,0.326,,,0.27,0.386,8.4,0.052280779,0.089,,,0.197,,,0.159,0.241,0.765967526,158458,206873,,,0.188215693,,,0.15148326,0.228488747,0.383561644,28,73,0.325160501,0.440890308,471.8,991,210025,,,17.16369878,800,46610,15.97431513,18.35308242,,,,,,,,,,28.01120448,25.36359683,30.65881213,10.78924032,9.551710956,12.02676968,,,,13.48182884,8.546322999,20.22936278,0.085420743,15107,176854,0.074697338,0.096144147,0.000704678,148,210025,,,1419.087838,0.000714316,152,212791,,,1399.94079,0.003604476,767,212791,,,277.4328553,2419,,,,,4687,1736,1664,3056,2378,0.42,,,,,0.22,0.34,0.41,0.33,0.42,0.48,,,,,0.45,0.56,0.43,0.34,0.49,0.900988485,121592,134954,0.892988844,0.908988126,0.666056708,36763,55195,0.633543557,0.698569859,0.050434881,5358,106236,,,0.131,7110,,0.097638298,0.164361702,0.264,0.091471991,0.436528009,0.058009229,0,0.132725735,0.145623548,0,0.294033348,0.299322269,0.252323139,0.346321399,0.067543499,0.049557683,0.085529316,4.136218161,156378,37807,3.818895898,4.453540424,0.206766297,11276,54535,0.178691839,0.234840755,8.094274491,170,210025,,,63.76795127,651,1020889,58.86939567,68.66650686,,,,,,,,,,40.32258065,32.58474966,49.34462669,73.76103407,67.4272361,80.09483204,,,,10.4,,,,,1,,,,,0.119466302,8730,73075,0.107562877,0.131369726,0.09336457,0.082254693,0.104474446,0.023605884,0.018299148,0.028912621,0.010195005,0.006644156,0.013745855,0.769060785,71345,92769,0.752029975,0.786091596,0.773965691,0.59558354,0.952347843,0.676217765,0.605780041,0.746655489,0.704643963,0.577138599,0.832149327,0.734230554,0.699441932,0.769019176,0.774655559,0.752367264,0.796943854,0.226,,92769,0.208610785,0.243389215,78.79213173,,,78.40867461,79.17558884,,,,85.61525158,83.23500827,87.99549489,80.11180298,72.42307999,87.80052597,80.76197717,79.13305081,82.39090353,78.37646846,77.92331827,78.82961865,,,,334.1999736,2347,583043,320.2648372,348.1351101,,,,174.8014628,123.6999188,239.9286649,456.589234,321.4809574,629.3481145,311.3755462,271.3764235,351.3746689,345.4109552,329.0241004,361.7978099,,,,41.77796908,99,236967,33.95507174,50.86317831,,,,,,,,,,40.59140446,27.9412551,57.00542359,41.35524911,31.15443326,53.82954116,,,,5.346414595,97,18143,4.335582074,6.522172404,,,,,,,,,,5.675179436,3.930226738,7.930494424,5.022156573,3.73932544,6.603208407,,,,,,,0.11,,,0.093,0.129,0.162,,,0.138,0.188,0.086,,,0.072,0.103,111.6,191,171197,,,0.089,18150,,,,0.052280779,9158.390057,175177,,,18.36218935,114,620841,14.99142721,21.73295149,,,,,,,,,,10.35947374,5.798118811,17.08637651,22.30073123,18.04262329,27.26148749,,,,0.306,,,0.292,0.321,0.109855793,13438,122324,0.095557921,0.124153665,0.031965148,1827,57156,0.022433233,0.041497063,0.00127825,272,212791,,,782.3198529,,,,,,0.065471483,745,11379,0.037781092,0.093161873,3.020451619,,,,,,3.310732114,,2.495877547,3.306170183,2.852834925,,,,,,3.296690036,,2.349352551,3.13266283,0.090666751,,,,,-179.9449167,,,,,0.719767605,51413,71430,0.67923353,0.760301679,85144,,,78117.78723,92170.21277,50625,5238.787234,96011.21277,86825,78453.59575,95196.40426,72556,57993.61702,87118.38298,62680,56503.31915,68856.68085,90511,87537.04255,93484.95745,,,,,,0.530016548,19538,36863,,,52.54044662,,,,,0.2392535,,85144,,,4.266705236,59,13828,,,2.918390415,41,1404884,2.094287348,3.959126132,,,,,,,,,,5.088136057,2.908309389,8.262814184,2.346852565,1.487703211,3.521431141,,,,17.03316797,171,1020889,14.43280887,19.63352707,16.75010702,,,,,,,,,,5.882944158,3.039803093,10.27631953,20.33265652,16.93330588,23.73200717,,,,10.77492264,110,1020889,8.761319456,12.78852583,,,,,,,,,,6.434454358,3.601315259,10.61265394,12.45867754,9.9922237,15.34943918,,,,9.18225277,129,1404884,7.597686306,10.76681923,,,,,,,,,,11.13029762,7.75266011,15.47954963,8.469076646,6.745572275,10.49869472,,,,22.56,,25000,,,224,340,0.761965686,103033,135220,,,0.736,,,,,95.99786854,,,,,0.680501662,51384,75509,0.666308565,0.694694759,0.097667619,7215,73873,0.085648531,0.109686706,0.902951966,68181,75509,0.894446196,0.911457736,212791,,,,,0.258356791,54976,212791,,,0.160866766,34231,212791,,,0.013877467,2953,212791,,,0.014963039,3184,212791,,,0.034794705,7404,212791,,,0.003303711,703,212791,,,0.248863909,52956,212791,,,0.668491619,142249,212791,,,0.041109031,7971,193899,0.035297846,0.046920216,0.494569789,105240,212791,,,0.121436824,25122,206873,, -53,007,53007,WA,Chelan County,2024,1,5844.762215,874,215747,5222.899867,6466.624563,0,,,,2,,,,2,,,,2,3573.427162,2774.906015,4530.170411,,6627.177628,5759.085834,7495.269423,,,,,2,,0.159,,,0.134,0.187,3.849901354,,,3.121617965,4.637624826,5.128408199,,,4.281708751,5.98615219,0.06402439,378,5904,0.057780031,0.07026875,0,,,,,,,,,,0.068016813,0.058370388,0.077663238,0.056889181,0.048656448,0.065121915,,,,0.12,0.056307539,0.183692461,0.142,,,0.111,0.175,0.309,,,0.255,0.365,8.3,0.045962806,0.099,,,0.187,,,0.152,0.224,0.84917925,67148,79074,,,0.182361997,,,0.150614512,0.216955445,0.225806452,7,31,0.133616464,0.327772988,345.3,275,79646,,,17.93333746,290,16171,15.86929706,19.99737785,,,,,,,,,,26.35960044,22.61144068,30.10776021,10.40137053,8.308245351,12.86145574,,,,,,,0.120225949,7577,63023,0.104736588,0.135715311,0.001104889,88,79646,,,905.0681818,0.000863299,69,79926,,,1158.347826,0.005317419,425,79926,,,188.0611765,1439,,,,,,,,1062,1394,0.39,,,,,,0.42,,0.24,0.41,0.36,,,,,0.38,0.42,,0.23,0.37,0.854025058,46488,54434,0.838225761,0.869824355,0.611409396,11843,19370,0.563672291,0.659146501,0.048240129,2160,44776,,,0.123,2162,,0.078914894,0.167085106,,,,,,,,,,0.212981744,0.150189142,0.275774347,0.058596942,0.026791535,0.090402349,4.355605714,140869,32342,3.873406295,4.837805133,0.218512562,3940,18031,0.167692581,0.269332543,13.81111418,110,79646,,,75.25986562,292,387989,66.62753463,83.8921966,,,,,,,,,,24.52895325,16.16473475,35.68833916,97.09591471,85.15492922,109.0369002,,,,7,,,,,0,,,,,0.141738983,4165,29385,0.12164974,0.161828225,0.096879848,0.078917861,0.114841836,0.043389484,0.031175305,0.055603664,0.007997278,0.003800628,0.012193928,0.76287204,28092,36824,0.73767557,0.78806851,,,,,,,,,,0.816784769,0.78773533,0.845834209,0.751131391,0.715807724,0.786455058,0.226,,36824,0.197034308,0.254965692,79.74391183,,,79.16359902,80.32422464,,,,,,,,,,86.11101542,82.63584808,89.58618277,78.99956945,78.27676752,79.72237138,,,,292.1462038,874,215747,271.407151,312.8852567,,,,,,,,,,197.0433438,155.7545865,245.9190106,316.955657,291.0432187,342.8680954,,,,36.65596481,29,79114,24.54907493,52.64407998,,,,,,,,,,32.76182156,16.92851127,57.22830908,38.95092184,21.80053527,64.2436221,,,,3.947368421,24,6080,2.52915343,5.873371315,,,,,,,,,,,,,,,,,,,,,,0.116,,,0.099,0.134,0.164,,,0.141,0.187,0.087,,,0.074,0.1,112.3,75,66791,,,0.099,7750,,,,0.045962806,3330.143186,72453,,,14.50388192,34,234420,10.04435986,20.26772123,,,,,,,,,,,,,16.46799509,10.75744114,24.12942836,,,,0.271,,,0.257,0.284,0.149021609,6717,45074,0.12876629,0.169276928,0.049578003,934,18839,0.035280131,0.063875875,0.002001852,160,79926,,,499.5375,,,,,,0.090112298,329,3651,0.04502554,0.135199056,2.761470641,,,,,,,,2.405469496,3.187795346,2.669247889,,,,,,,,2.373140251,2.994267784,0.056229347,,,,,-337.0039,,,,,0.757514754,44026,58119,0.683310388,0.831719121,81697,,,76245.93617,87148.06383,124643,48388.87234,200897.1277,94250,57274.51064,131225.4894,,,,60530,56151.2766,64908.7234,76078,71433.57447,80722.42553,,,,,,0.518674173,6541,12611,,,85.4105915,,,,,0.251551465,,81697,,,4.972972973,23,4625,,,2.22234157,12,539971,1.148316319,3.881983486,,,,,,,,,,,,,,,,,,,17.42656981,67,387989,13.36085115,22.34007602,17.26853081,,,,,,,,,,,,,21.01042585,15.38227237,28.02496375,,,,11.85600623,46,387989,8.680086654,15.81425085,,,,,,,,,,,,,15.29069523,10.92389685,20.82158701,,,,7.593000365,41,539971,5.448868156,10.30076237,,,,,,,,,,7.228994841,3.608688179,12.93466863,7.940571666,5.317925468,11.40398547,,,,18.19277108,,8300,,,110,41,0.819723642,43306,52830,,,0.564,,,,,94.45138935,,,,,0.634510423,19298,30414,0.612520381,0.656500464,0.11071563,3235,29219,0.091783048,0.129648213,0.879759321,26757,30414,0.859157152,0.900361491,79926,,,,,0.224370042,17933,79926,,,0.210882566,16855,79926,,,0.005142257,411,79926,,,0.020644096,1650,79926,,,0.0138378,1106,79926,,,0.003002778,240,79926,,,0.290393614,23210,79926,,,0.667554988,53355,79926,,,0.071668053,5344,74566,0.061109576,0.082226529,0.494957836,39560,79926,,,0.336292587,26592,79074,, -53,009,53009,WA,Clallam County,2024,1,8106.175789,1323,204298,7277.972359,8934.379218,0,18720.52123,13938.65767,24614.02813,,,,,2,,,,2,3820.190673,2333.471709,5899.974658,1,8136.585073,7149.89922,9123.270927,,,,,2,,0.154,,,0.13,0.181,3.858074577,,,3.109066489,4.671850283,5.491314619,,,4.582426011,6.423123374,0.060943799,257,4217,0.05372334,0.068164258,0,0.074626866,0.046485854,0.102767878,,,,,,,0.07398568,0.048922756,0.099048605,0.053530378,0.045535425,0.061525331,,,,0.095652174,0.057641346,0.133663002,0.146,,,0.115,0.179,0.302,,,0.245,0.359,7.2,0.126004902,0.113,,,0.183,,,0.148,0.22,0.780130905,60191,77155,,,0.165732085,,,0.133313495,0.19873017,0.388888889,14,36,0.303559261,0.471308391,198.2,155,78209,,,16.77275073,195,11626,14.41855234,19.12694912,33.11258278,21.42871768,48.88070424,,,,,,,23.9268121,16.57001294,33.43532167,13.91131537,11.3349037,16.48772703,,,,13.99354144,7.450971465,23.92938204,0.099979151,5275,52761,0.086872768,0.113085534,0.000958969,75,78209,,,1042.786667,0.000938243,73,77805,,,1065.821918,0.004447015,346,77805,,,224.8699422,1384,,,,,,1785,,,1378,0.35,,,,,0.18,0.36,,0.21,0.35,0.47,,,,,0.23,0.52,0.31,0.35,0.47,0.929524764,55646,59865,0.92014305,0.938906478,0.640483929,10641,16614,0.594538805,0.686429053,0.060161257,1746,29022,,,0.158,1937,,0.102,0.214,0.269382392,0.186913603,0.35185118,,,,,,,0.212712713,0.102617435,0.322807991,0.123611609,0.087811725,0.159411492,4.316605839,123006,28496,3.805093068,4.828118611,0.24588373,3151,12815,0.194976874,0.296790586,8.311063944,65,78209,,,116.8944943,451,385818,106.1059747,127.6830139,193.6328948,134.0964086,270.5825622,,,,,,,,,,123.0691554,110.8547315,135.2835793,,,,5.1,,,,,0,,,,,0.146558217,4865,33195,0.127038243,0.16607819,0.121728545,0.103179735,0.140277356,0.018978762,0.012843153,0.025114371,0.01656876,0.006935984,0.026201537,0.713395119,21399,29996,0.691456567,0.735333672,0.798422437,0.750900952,0.845943921,0.632862644,0.535016882,0.730708407,,,,0.656197655,0.550439034,0.761956276,0.718815514,0.697734598,0.739896429,0.223,,29996,0.19536361,0.25063639,77.893185,,,77.22866177,78.55770824,69.48063287,66.0396892,72.92157654,,,,,,,88.67636117,79.91431589,97.43840645,77.84446863,77.07388018,78.61505708,,,,372.5436327,1323,204298,348.5574453,396.5298201,797.8886245,639.0760797,984.1926705,,,,,,,227.1162732,153.2343958,324.222602,368.091879,341.3777537,394.8060043,,,,49.27668861,28,56822,32.74400172,71.21853498,,,,,,,,,,,,,57.14434141,35.81205453,86.51721964,,,,5.004549591,22,4396,3.136324584,7.576948223,,,,,,,,,,,,,,,,,,,,,,0.116,,,0.099,0.134,0.172,,,0.149,0.197,0.085,,,0.071,0.098,117.3,81,69065,,,0.113,8630,,,,0.126004902,8997.254007,71404,,,32.10520233,75,233607,25.25277826,40.24414913,,,,,,,,,,,,,30.86839599,23.49845325,39.81798182,,,,0.314,,,0.299,0.328,0.118799281,4761,40076,0.10211843,0.135480132,0.042082364,561,13331,0.030167471,0.053997258,0.001439496,112,77805,,,694.6875,,,,,,0.0582357,169,2902,0.020500988,0.095970411,3.105400024,,,,,,,,2.977238627,3.194828181,3.144964605,,,,,,,,3.101408179,3.227537568,0.120679146,,,,,3387.7778,,,,,0.848960708,50278,59223,0.74652261,0.951398806,66693,,,61662.53192,71723.46809,52963,41386.48936,64539.51064,78990,30076.97872,127903.0213,,,,43523,37840.78723,49205.21277,67143,64126.14894,70159.85106,,,,,,0.54532179,5228,9587,,,61.91928705,,,,,0.373862324,,66693,,,6.853396901,23,3356,,,3.746202287,20,533874,2.288277681,5.785705598,,,,,,,,,,,,,2.726795538,1.408975045,4.763163048,,,,25.58430857,111,385818,20.15363429,31.01498286,28.77004183,,,,,,,,,,,,,27.23538575,20.91390516,33.55686635,,,,19.69840702,76,385818,15.52010427,24.65549377,,,,,,,,,,,,,22.08933558,17.21972076,27.90854663,,,,12.92439789,69,533874,10.05595301,16.35665271,40.83966348,19.58420606,75.10559521,,,,,,,,,,12.49781288,9.415063039,16.26762134,,,,24.57627119,,5900,,,82,63,0.793556701,49264,62080,,,0.699,,,,,30.5745552,,,,,0.72943038,24894,34128,0.710913613,0.747947146,0.131131617,4320,32944,0.112084665,0.15017857,0.903774027,30844,34128,0.889435819,0.918112236,77805,,,,,0.161686267,12580,77805,,,0.323359681,25159,77805,,,0.009022556,702,77805,,,0.057824047,4499,77805,,,0.020589936,1602,77805,,,0.002120686,165,77805,,,0.075804897,5898,77805,,,0.812994024,63255,77805,,,0.006635646,492,74145,0.003579273,0.009692019,0.50721676,39464,77805,,,0.360909857,27846,77155,, -53,011,53011,WA,Clark County,2024,1,6274.056291,5672,1405888,6021.442607,6526.669976,0,4430.834827,2667.652007,6919.297439,1,3460.329252,2537.013429,4383.645075,,11748.34199,9250.215041,14246.46895,,5309.331615,4593.124537,6025.538693,,6382.489739,6088.1036,6676.875878,,13414.20091,10132.94321,17419.45566,,,0.133,,,0.112,0.153,3.613655654,,,2.962295699,4.29367674,5.346551299,,,4.622841993,6.077765538,0.065584349,2541,38744,0.063119308,0.068049389,0,0.06875,0.029542823,0.107957177,0.08969697,0.075909138,0.103484802,0.112056738,0.088771906,0.13534157,0.070719603,0.06403027,0.077408936,0.060266959,0.057446246,0.063087673,0.087743733,0.067048976,0.10843849,0.078981723,0.065475805,0.092487642,0.13,,,0.104,0.158,0.32,,,0.28,0.361,8.7,0.036129785,0.084,,,0.169,,,0.142,0.199,0.908416466,457216,503311,,,0.193796785,,,0.165690694,0.224587237,0.329268293,54,164,0.290049741,0.368680069,376.8,1927,511404,,,11.5779767,1243,107359,10.93432165,12.22163174,,,,1.930501931,0.925750714,3.550261784,9.970918155,6.388555403,14.83593585,18.8373393,16.82611419,20.8485644,10.00838615,9.281352627,10.73541967,31.09540636,22.59396986,41.74413165,8.716434697,6.682840501,11.1740759,0.078486141,33747,429974,0.070145716,0.086826567,0.000758696,388,511404,,,1318.051546,0.000729519,377,516779,,,1370.766578,0.004442905,2296,516779,,,225.0779617,2065,,,,,2014,2063,2323,3613,2002,0.43,,,,,0.33,0.33,0.29,0.34,0.44,0.42,,,,,0.43,0.43,0.3,0.31,0.42,0.92959981,321094,345411,,,0.675397065,91725,135809,,,0.047142008,11741,249056,,,0.094,10585,,0.067787234,0.120212766,0.033505155,0,0.122129296,0.164798206,0.09014071,0.239455703,0.170264966,0.064125511,0.27640442,0.163126844,0.127822717,0.19843097,0.089409225,0.076448554,0.102369896,3.766814253,160794,42687,3.610953237,3.922675268,0.175320557,20455,116672,0.158937574,0.191703539,6.628810099,339,511404,,,76.55900302,1878,2453010,73.09638531,80.02162074,,,,32.48511099,23.10008953,44.40821612,110.0673688,83.57876778,142.287598,41.92490695,33.94357735,49.90623656,85.06553949,80.91415892,89.21692006,95.13842641,58.11302248,146.9335834,7.1,,,,,1,,,,,0.15228597,27180,178480,0.144256655,0.160315286,0.117959287,0.110268902,0.125649672,0.03263671,0.028325825,0.036947595,0.010813537,0.008787083,0.012839991,0.72183765,171640,237782,0.712591922,0.731083377,0.648879402,0.506421137,0.791337668,0.636912245,0.593147725,0.680676766,0.727962782,0.666440409,0.789485154,0.646655136,0.603147525,0.690162747,0.71575329,0.700892351,0.730614228,0.334,,237782,0.319952548,0.348047452,78.83787863,,,78.59898716,79.07677011,83.59897841,79.29723833,87.90071849,87.08376925,85.26139699,88.90614151,74.35180178,72.03487817,76.66872538,82.80568111,80.96223591,84.6491263,78.52306828,78.25937151,78.78676506,71.98404397,67.91502545,76.05306248,314.1668801,5672,1405888,305.7336301,322.6001302,233.7866557,157.7348749,333.7449878,164.2652574,137.0280475,191.5024674,523.874406,444.6741124,603.0746995,251.8700738,219.3108625,284.429285,322.9307975,313.4276723,332.4339228,689.2820737,538.3350182,869.4355461,44.01199968,223,506680,38.23536716,49.78863221,,,,,,,129.8588867,72.6810331,214.1824853,38.47328935,26.6438713,53.7625656,42.51413962,35.59414965,49.43412958,,,,4.381556226,170,38799,3.722898182,5.040214269,,,,,,,,,,5.563531945,3.780150032,7.896989502,4.101309541,3.348428789,4.854190293,,,,,,,0.106,,,0.092,0.121,0.165,,,0.144,0.187,0.081,,,0.07,0.093,195.5,840,429573,,,0.084,41880,,,,0.036129785,15368.27391,425363,,,19.71253116,295,1496510,17.4630236,21.96203871,,,,,,,,,,13.83360686,8.66944777,20.94424704,21.61172959,18.92193104,24.30152815,,,,0.322,,,0.307,0.336,0.097618865,30518,312624,0.086895461,0.108342269,0.029612406,3655,123428,0.022463469,0.036761342,0.000770155,398,516779,,,1298.439699,,,,,,0.081316323,2046,25161,0.064040415,0.098592231,2.997449972,,,,,,,,2.514196982,3.134184325,2.857664911,,,,,,3.186096508,,2.356972082,3.006134491,0.060039972,,,,,4320.531444,,,,,0.780743552,56365,72194,0.749956109,0.811530995,91149,,,87448.23404,94849.76596,96250,80764.21277,111735.7872,111662,107609.7447,115714.2553,54471,43866.74468,65075.25532,70191,66139.93617,74242.06383,92048,89896.17021,94199.82979,,,,,,0.417973438,30999,74165,,,50.58693107,,,,,0.273552096,,91149,,,3.673219509,108,29402,,,3.047767392,103,3379523,2.459168721,3.636366063,,,,,,,28.16306414,17.20273123,43.49556841,4.439432818,2.484716848,7.322169306,2.3187304,1.773645028,2.978506202,,,,17.55286205,440,2453010,15.87945848,19.22626562,17.93714661,,,,8.752235428,4.197037084,16.09567257,19.96741951,9.967663876,35.72722907,9.067992253,5.538965248,14.00477858,19.11680002,17.12837102,21.10522903,,,,10.96611918,269,2453010,9.655631646,12.27660671,,,,,,,39.85197837,24.66900272,60.91798223,7.119323822,4.219362496,11.25160097,11.28581863,9.77371258,12.79792468,,,,8.137243037,275,3379523,7.17548237,9.099003704,,,,,,,,,,9.470790012,6.478013357,13.36992967,8.286610282,7.186579751,9.386640813,,,,8.860294118,,54400,,,184,298,0.793474221,275403,347085,,,0.748,,,,,150.5229687,,,,,0.667277339,126024,188863,0.657728617,0.67682606,0.126653911,23433,185016,0.119004346,0.134303476,0.932083044,176036,188863,0.92510109,0.939064999,516779,,,,,0.222839937,115159,516779,,,0.16930448,87493,516779,,,0.023354277,12069,516779,,,0.012688209,6557,516779,,,0.056231,29059,516779,,,0.010743471,5552,516779,,,0.114066168,58947,516779,,,0.750249139,387713,516779,,,0.028386945,13488,475148,,,0.502628783,259748,516779,,,0.13481128,67852,503311,, -53,013,53013,WA,Columbia County,2024,1,9679.223647,80,10551,6135.797499,14523.58793,1,,,,2,,,,2,,,,2,,,,2,9133.120888,5498.735391,14262.49961,1,,,,2,,0.147,,,0.125,0.176,3.815715837,,,3.064545871,4.695975752,5.401964584,,,4.476685307,6.438112176,0.088607595,21,237,0.052427469,0.124787721,1,,,,,,,,,,,,,0.083333333,0.04540567,0.121260996,,,,,,,0.144,,,0.113,0.181,0.331,,,0.269,0.397,7.3,0.142272399,0.098,,,0.187,,,0.152,0.228,0.820597166,3243,3952,,,0.151892699,,,0.121517137,0.186207071,0.666666667,2,3,0.391498614,0.824051859,123.7,5,4042,,,19.15184679,14,731,10.47049285,32.13354463,,,,,,,,,,,,,20.14652015,10.05707027,36.04768959,,,,,,,0.089707928,258,2876,0.075410055,0.1040058,0.000742207,3,4042,,,1347.333333,0.000745157,3,4026,,,1342,0.003229011,13,4026,,,309.6923077,1735,,,,,,,,,1810,0.33,,,,,,,,,0.34,0.15,,,,,,,,,0.15,0.898709037,2715,3021,0.855481072,0.941937002,0.729619565,537,736,0.618549107,0.840690023,0.054617117,97,1776,,,0.176,119,,0.109276596,0.242723404,,,,,,,,,,0.243902439,0,0.766824585,0.037807183,0,0.090633261,5.134025464,120167,23406,2.885106841,7.382944087,0.238439306,165,692,0.079625015,0.397253597,9.896091044,4,4042,,,104.0582726,21,20181,64.41371084,159.0641234,,,,,,,,,,,,,117.8689298,71.99740444,182.0390023,,,,6.6,,,,,0,,,,,0.066852368,120,1795,0.031040545,0.102664191,0.057995496,0.016817949,0.099173042,0.002228412,0,0.020186704,0.002228412,0,0.013531152,0.728055078,1269,1743,0.618006904,0.838103251,,,,,,,,,,,,,0.676046671,0.580683322,0.771410021,0.385,,1743,0.251611715,0.518388285,76.07744627,,,73.07499485,79.07989769,,,,,,,,,,,,,76.2826366,73.14410003,79.42117316,,,,463.8025253,80,10551,352.1847026,599.5723161,,,,,,,,,,,,,461.2922955,343.4624131,606.5141776,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.112,,,0.096,0.131,0.173,,,0.149,0.2,0.085,,,0.072,0.1,,,,,,0.098,390,,,,0.142272399,580.1868438,4078,,,,,,,,,,,,,,,,,,,,,,,,,,0.284,,,0.27,0.298,0.105871475,229,2163,0.087999134,0.123743815,0.042440318,32,754,0.029333935,0.055546701,0.002235469,9,4026,,,447.3333333,,,,,,,,,,,3.19782294,,,,,,,,,3.22025585,3.311305283,,,,,,,,,3.278485726,0.042455088,,,,,2600.566,,,,,0.660668037,39539,59847,0.443061845,0.878274229,62935,,,53586.57447,72283.42553,,,,,,,,,,,,,68329,63711.97872,72946.02128,,,,,,0.521518987,206,395,,,,,,,,0.323683165,,62935,,,,,176,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,63.33333333,,300,,,13,6,0.783359498,2495,3185,,,0.582,,,,,18.56971434,,,,,0.750554324,1354,1804,0.697759747,0.803348901,0.10410642,180,1729,0.049398126,0.158814714,0.757206208,1366,1804,0.679526426,0.834885991,4026,,,,,0.172627919,695,4026,,,0.291107799,1172,4026,,,0.008445107,34,4026,,,0.019125683,77,4026,,,0.018380527,74,4026,,,0.020119225,81,4026,,,0.08271237,333,4026,,,0.828614009,3336,4026,,,0.006036745,23,3810,0,0.022628754,0.503725782,2028,4026,,,1,3952,3952,, -53,015,53015,WA,Cowlitz County,2024,1,9062.035618,2047,307618,8427.639527,9696.431709,0,,,,2,,,,2,,,,2,8241.021278,6346.590571,10523.60019,,9107.094481,8407.66487,9806.524092,,,,,2,,0.167,,,0.143,0.194,4.271639984,,,3.481045428,5.08625738,5.55919339,,,4.738580788,6.39432192,0.063308529,553,8735,0.058201668,0.06841539,0,,,,0.107843137,0.047646414,0.168039861,,,,0.071672355,0.056904455,0.086440255,0.059800665,0.054089503,0.065511826,,,,0.070469799,0.041410762,0.099528835,0.172,,,0.139,0.207,0.37,,,0.317,0.423,7.5,0.088716294,0.117,,,0.199,,,0.166,0.236,0.67187754,74397,110730,,,0.169949391,,,0.139581078,0.202059079,0.31147541,19,61,0.245160744,0.378662199,327.3,365,111524,,,19.70421537,445,22584,17.87343937,21.53499138,,,,,,,,,,26.47058824,21.4782065,31.46296998,16.41137856,14.45379976,18.36895735,,,,32.8685259,22.62518085,46.15963075,0.082443072,7393,89674,0.071719667,0.093166476,0.000555934,62,111524,,,1798.774194,0.000580585,65,111956,,,1722.4,0.00549323,615,111956,,,182.0422764,2002,,,,,989,,7369,5995,1872,0.43,,,,,0.35,0.39,,0.19,0.44,0.4,,,,,0.44,0.4,0.21,0.23,0.41,0.900664314,69416,77072,0.890619881,0.910708747,0.558035879,15149,27147,0.518316865,0.597754893,0.056790577,2782,48987,,,0.165,4007,,0.119723404,0.210276596,0.664246824,0.236152593,1,,,,0.383333333,0,0.793378794,0.280722055,0.215421039,0.346023071,0.134450371,0.106913391,0.161987351,4.348134631,128670,29592,4.002181736,4.694087526,0.219739218,5477,24925,0.182690854,0.256787582,8.339012231,93,111524,,,88.46255358,486,549385,80.59757746,96.3275297,,,,,,,,,,73.59349279,52.07913556,101.0128187,93.9956705,85.10088918,102.8904518,,,,6.7,,,,,0,,,,,0.154409161,6540,42355,0.13780424,0.171014081,0.115916131,0.101733342,0.130098919,0.027505607,0.019688976,0.035322238,0.018179672,0.012012578,0.024346766,0.817126302,37511,45906,0.795967854,0.838284749,,,,,,,,,,0.798898072,0.744048722,0.853747422,0.826852615,0.804037941,0.849667288,0.359,,45906,0.328274356,0.389725644,75.67508972,,,75.16479166,76.18538777,,,,81.59072134,74.21354111,88.96790158,,,,81.86978372,76.39116674,87.3484007,75.46832251,74.92261993,76.0140251,,,,472.366203,2047,307618,450.6347347,494.0976714,,,,,,,,,,384.3898429,300.2116564,484.8554833,481.9528611,458.3206141,505.585108,,,,41.08688507,45,109524,29.9690559,54.97748484,,,,,,,,,,,,,42.42310812,29.37923562,59.28204142,,,,5.842593653,51,8729,4.350194735,7.68193165,,,,,,,,,,,,,5.5380931,3.899328629,7.633531828,,,,,,,0.126,,,0.108,0.145,0.182,,,0.16,0.207,0.088,,,0.075,0.102,165.4,155,93684,,,0.117,12760,,,,0.088716294,9085.435644,102410,,,23.38914744,78,333488,18.48815046,29.19071452,,,,,,,,,,,,,25.72277371,20.08969968,32.44577897,,,,0.372,,,0.358,0.386,0.101855276,6610,64896,0.086365914,0.117344638,0.032980973,858,26015,0.023449058,0.042512887,0.000964665,108,111956,,,1036.62963,,,,,,0.154106371,820,5321,0.096851696,0.211361046,2.635507956,,,,,,,,2.418604519,2.697616012,2.519587139,,,,,,,,2.179248538,2.601819099,0.034442455,,,,,1845.512,,,,,0.689574891,46798,67865,0.632217628,0.746932155,71847,,,65131.76596,78562.23404,56270,44512.38298,68027.61702,89145,63837.76596,114452.234,61523,35964.3617,87081.6383,55831,48778.57447,62883.42553,71540,68119.23404,74960.76596,,,,,,0.553287572,9189,16608,,,61.4451109,,,,,0.347043022,,71847,,,4.778788346,31,6487,,,3.298096471,25,758013,2.13435414,4.868640999,,,,,,,,,,,,,3.322017382,2.056381118,5.078056451,,,,21.23199441,118,549385,17.25196368,25.21202514,21.47856239,,,,,,,,,,,,,22.20826934,17.73491286,26.68162583,,,,15.65386751,86,549385,12.52107343,19.33239903,,,,,,,,,,,,,16.87101778,13.3143434,21.08587753,,,,10.02621327,76,758013,7.899515691,12.549301,,,,,,,,,,15.7575063,7.866090373,28.19453145,9.649669538,7.381232589,12.39540421,,,,19.38053097,,11300,,,150,69,0.737324934,60280,81755,,,0.701,,,,,91.26162729,,,,,0.66402576,28664,43167,0.641679598,0.686371923,0.131637377,5573,42336,0.116966827,0.146307928,0.883267311,38128,43167,0.869204917,0.897329705,111956,,,,,0.222158705,24872,111956,,,0.19826539,22197,111956,,,0.009619851,1077,111956,,,0.022142628,2479,111956,,,0.01751581,1961,111956,,,0.005430705,608,111956,,,0.103701454,11610,111956,,,0.815793705,91333,111956,,,0.012855002,1338,104084,0.008516948,0.017193055,0.499705241,55945,111956,,,0.329766098,36515,110730,, -53,017,53017,WA,Douglas County,2024,1,5298.86137,437,120858,4527.113027,6070.609713,0,,,,2,,,,2,,,,2,4267.19335,3146.291519,5657.6793,,5561.480945,4553.524303,6569.437588,,,,,2,,0.171,,,0.145,0.199,4.007309844,,,3.189834941,4.889186598,5.397090516,,,4.39384954,6.413876714,0.059722615,211,3533,0.051908467,0.067536764,0,,,,,,,,,,0.056009335,0.045123425,0.066895244,0.061004785,0.049532456,0.072477113,,,,,,,0.148,,,0.117,0.18,0.327,,,0.263,0.394,7.3,0.149285824,0.094,,,0.217,,,0.177,0.261,0.873585169,37510,42938,,,0.182760587,,,0.14824033,0.221138475,0.5,6,12,0.355111295,0.623019394,418.8,183,43696,,,18.44492,181,9813,15.7577598,21.13208021,,,,,,,,,,26.20749404,21.53779511,30.87719298,12.33499243,9.342402805,15.98141342,,,,,,,0.126507887,4499,35563,0.109827036,0.143188739,0.000274625,12,43696,,,3641.333333,0.000497828,22,44192,,,2008.727273,0.000633599,28,44192,,,1578.285714,1721,,,,,,,,1574,1759,0.39,,,,,0.27,0.32,,0.21,0.4,0.38,,,,,0.34,0.32,,0.25,0.39,0.817877796,23478,28706,0.800542569,0.835213022,0.523304493,5625,10749,0.465537199,0.581071788,0.053043755,1165,21963,,,0.118,1231,,0.069148936,0.166851064,0.078947368,0,0.329041829,,,,0.14516129,0,0.354405502,0.100859599,0.066541252,0.135177945,0.094911734,0.040728663,0.149094805,3.718392969,148085,39825,3.316459359,4.120326579,0.219266648,2374,10827,0.166640387,0.271892909,5.492493592,24,43696,,,51.96323601,112,215537,42.33951002,61.586962,,,,,,,,,,27.1556591,16.3494807,42.40692551,67.49816581,54.41304825,82.78050844,,,,7.6,,,,,0,,,,,0.135406544,2090,15435,0.108006514,0.162806574,0.086829268,0.062963404,0.110695132,0.047942987,0.033792247,0.062093726,0.004859087,0,0.009823559,0.796024796,16180,20326,0.765361934,0.826687658,,,,,,,,,,0.748668797,0.668818798,0.828518796,0.76344086,0.718104,0.808777721,0.216,,20326,0.181018067,0.250981933,81.12741834,,,80.28228702,81.97254966,,,,,,,,,,85.2864578,81.00940646,89.56350913,80.67565678,79.6995639,81.65174966,,,,276.1495369,437,120858,249.0583269,303.240747,,,,,,,,,,187.1286251,137.973876,248.1054083,297.6920028,263.5667253,331.8172804,,,,26.84730081,13,48422,14.29505698,45.90970203,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.122,,,0.105,0.141,0.168,,,0.145,0.191,0.095,,,0.081,0.111,66.5,24,36085,,,0.094,4010,,,,0.149285824,5737.203506,38431,,,9.182385125,12,130685,4.744672387,16.03977889,,,,,,,,,,,,,13.42363781,6.701031628,24.01859603,,,,0.311,,,0.298,0.324,0.162722251,4036,24803,0.140083954,0.185360549,0.044695698,506,11321,0.031589315,0.057802081,0.000520456,23,44192,,,1921.391304,,,,,,,,,,,2.924652384,,,,,,,,2.530457911,3.397830387,2.73247872,,,,,,,,2.345318024,3.182507851,0.095207886,,,,,-5489.6216,,,,,0.807042279,44648,55323,0.706631688,0.90745287,83870,,,78445.14894,89294.85106,61382,42651.78723,80112.21277,177593,117434.7021,237751.2979,155900,62022.55319,249777.4468,65470,58403.2766,72536.7234,88550,81204.46809,95895.53192,,,,,,0.610241626,4445,7284,,,62.43531862,,,,,0.245033981,,83870,,,2.93901543,8,2722,,,,,,,,,,,,,,,,,,,,,,,,,,10.33795671,25,215537,6.553377753,15.51201095,11.59893661,,,,,,,,,,,,,13.44294647,8.093531927,20.99282612,,,,7.887276895,17,215537,4.594629446,12.62829436,,,,,,,,,,,,,11.73881145,6.709745014,19.06309435,,,,7.733744006,23,297398,4.902530292,11.60441324,,,,,,,,,,10.46945014,5.020508288,19.25369157,5.80956254,2.900112688,10.39491215,,,,22.5,,5200,,,48,69,0.787872065,21308,27045,,,0.62,,,,,61.8738781,,,,,0.699237431,10820,15474,0.672657135,0.725817726,0.098474059,1452,14745,0.072614515,0.124333603,0.862285123,13343,15474,0.837216021,0.887354226,44192,,,,,0.240066075,10609,44192,,,0.188291999,8321,44192,,,0.005747647,254,44192,,,0.024732983,1093,44192,,,0.01432386,633,44192,,,0.003484794,154,44192,,,0.343274801,15170,44192,,,0.60852643,26892,44192,,,0.089630801,3627,40466,0.077910841,0.101350762,0.482485518,21322,44192,,,0.253807816,10898,42938,, -53,019,53019,WA,Ferry County,2024,1,11017.22994,170,20334,7759.836736,14274.62314,0,20622.18281,11274.33924,34600.51864,1,,,,2,,,,2,,,,2,10374.98519,6491.244948,14258.72544,,,,,2,,0.193,,,0.168,0.222,4.474815162,,,3.647923503,5.42155645,6.262268704,,,5.217359847,7.388629201,0.075471698,36,477,0.051766202,0.099177194,0,,,,,,,,,,,,,0.079872205,0.049838714,0.109905695,,,,,,,0.198,,,0.163,0.236,0.356,,,0.287,0.429,5.1,0.245354106,0.15,,,0.228,,,0.187,0.273,0.754388409,5415,7178,,,0.150127975,,,0.120242892,0.183712642,0.416666667,5,12,0.261828357,0.556653137,165,12,7273,,,31.78928247,35,1101,22.1424,44.21119652,,,,,,,,,,,,,33.16749585,20.25956814,51.2245073,,,,,,,0.095714286,469,4900,0.081416413,0.110012158,0.001099959,8,7273,,,909.125,0.000805585,6,7448,,,1241.333333,0.003088077,23,7448,,,323.826087,1297,,,,,,,,,1235,0.22,,,,,0.12,,,,0.23,0.09,,,,,0.08,,,,0.1,0.9141932,5082,5559,0.894563668,0.933822733,0.517366136,715,1382,0.410796519,0.623935753,0.096348438,219,2273,,,0.271,324,,0.166148936,0.375851064,0.375,0.238242883,0.511757118,,,,,,,0.189189189,0.020716865,0.357661514,0.098187311,0.023303059,0.173071564,5.608900342,113182,20179,4.472231673,6.745569011,0.257588187,314,1219,0.158915178,0.356261196,8.249690637,6,7273,,,158.3029919,60,37902,120.8018599,203.76733,204.6035806,105.7216557,357.4012796,,,,,,,,,,170.3948084,125.1996961,226.5889727,,,,7,,,,,1,,,,,0.181102362,575,3175,0.137608716,0.224596009,0.097435897,0.061171486,0.133700309,0.040629921,0.017090913,0.064168929,0.05511811,0.028088188,0.082148032,0.647560976,1593,2460,0.591922111,0.703199841,0.840399003,0.723585841,0.957212164,,,,,,,,,,0.618254879,0.522969899,0.71353986,0.282,,2460,0.201664984,0.362335016,75.56821567,,,73.06605302,78.07037833,,,,,,,,,,,,,75.73980723,72.85325432,78.62636013,,,,469.8883661,170,20334,383.8638439,555.9128883,747.3211082,488.1749594,1094.998574,,,,,,,,,,455.1766101,355.7267844,554.6264358,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.138,,,0.12,0.158,0.197,,,0.172,0.224,0.107,,,0.092,0.125,,,,,,0.15,1080,,,,0.245354106,1852.668854,7551,,,,,,,,,,,,,,,,,,,,,,,,,,0.362,,,0.348,0.376,0.112754159,427,3787,0.093690329,0.131817989,0.03893952,47,1207,0.027024626,0.050854413,0.001208378,9,7448,,,827.5555556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.343299844,,,,,-4404.79951,,,,,0.702118666,41524,59141,0.497487418,0.906749913,57064,,,49405.10638,64722.89362,45893,30943.38298,60842.61702,73542,21140.29787,125943.7021,,,,63295,16742.31915,109847.6809,50975,43745.04255,58204.95745,,,,,,0.681318681,620,910,,,,,,,,0.360139493,,57064,,,5.882352941,2,340,,,,,,,,,,,,,,,,,,,,,,,,,,49.56927094,16,37902,27.09998169,83.16881384,42.21413118,,,,,,,,,,,,,56.06949629,26.88750287,103.1138,,,,26.38383199,10,37902,12.65207297,48.5208064,,,,,,,,,,,,,,,,,,,33.89958191,18,53098,20.09104068,53.5759544,,,,,,,,,,,,,25.7751888,12.3602049,47.40148991,,,,16.66666667,,600,,,5,5,0.687175452,4367,6355,,,0.415,,,,,0.539758214,,,,,0.761652893,2304,3025,0.717147712,0.806158073,0.117957747,335,2840,0.077334922,0.158580571,0.745454546,2255,3025,0.698989374,0.791919717,7448,,,,,0.164876477,1228,7448,,,0.299274973,2229,7448,,,0.008190118,61,7448,,,0.160177229,1193,7448,,,0.01141246,85,7448,,,0.002685285,20,7448,,,0.058404941,435,7448,,,0.722878625,5384,7448,,,0.004762592,33,6929,0,0.016910811,0.49556928,3691,7448,,,1,7178,7178,, -53,021,53021,WA,Franklin County,2024,1,5739.186489,806,280463,5222.75347,6255.619508,0,,,,2,,,,2,13148.5747,5286.408973,27091.08919,1,5358.389972,4663.737094,6053.04285,,5953.942714,5087.547209,6820.338219,,,,,2,,0.204,,,0.172,0.237,4.306699602,,,3.462526347,5.237571797,5.355815811,,,4.373676586,6.34615532,0.064245283,681,10600,0.059577563,0.068913003,0,,,,0.165354331,0.100742348,0.229966314,0.136986301,0.058110814,0.215861789,0.064110429,0.058164648,0.070056211,0.056217537,0.048326122,0.064108953,,,,0.088709677,0.03866486,0.138754495,0.151,,,0.121,0.183,0.366,,,0.3,0.432,8,0.088785856,0.092,,,0.244,,,0.201,0.291,0.552233098,53428,96749,,,0.177687461,,,0.142675708,0.217252639,0.333333333,13,39,0.249594321,0.416968855,667.6,656,98268,,,24.69041138,644,26083,22.78345191,26.59737085,,,,,,,,,,27.94687327,25.50937898,30.38436757,12.26343679,9.738938985,15.2423322,,,,23.57563851,12.18187644,41.18189597,0.123694977,10521,85056,0.108205616,0.139184339,0.000203525,20,98268,,,4913.4,0.000516833,51,98678,,,1934.862745,0.001439024,142,98678,,,694.915493,2237,,,,,,,,2958,2142,0.4,,,,,,0.39,0.29,0.31,0.43,0.42,,,,,0.23,0.46,0.41,0.32,0.43,0.758472995,42677,56267,0.736106263,0.780839727,0.516651116,14397,27866,0.472606625,0.560695607,0.061611803,2727,44261,,,0.129,3864,,0.083723404,0.174276596,0.050632911,0,0.153261448,0.035087719,0,0.277394321,0.343634116,0.17105658,0.516211652,0.211031175,0.171252222,0.250810128,0.061413245,0.032244744,0.090581745,3.772600558,142095,37665,3.295709164,4.249491951,0.267862413,8169,30497,0.2193047,0.316420125,3.765213498,37,98268,,,47.58540742,227,477037,41.39503276,53.77578208,,,,,,,,,,34.39797677,27.58818323,42.37926945,65.25937972,53.77286773,76.74589171,,,,10.4,,,,,0,,,,,0.182101596,4965,27265,0.155126318,0.209076873,0.106642066,0.086192202,0.127091931,0.077938749,0.060279913,0.095597586,0.009169265,0.004449199,0.01388933,0.765786098,32235,42094,0.737770467,0.793801729,,,,,,,,,,0.749825256,0.716978435,0.782672077,0.800327715,0.763571072,0.837084359,0.217,,42094,0.186716475,0.247283525,79.42025751,,,78.8064419,80.03407312,,,,87.43622442,79.57855824,95.2938906,76.48729342,66.70946952,86.26511732,80.11144413,78.88604582,81.33684243,78.87830962,78.04624712,79.71037212,,,,306.6096661,806,280463,285.3472735,327.8720586,,,,,,,516.6008443,327.4806208,775.1549151,286.4529921,250.3666541,322.5393301,316.994148,287.1418289,346.8464672,,,,39.53955074,53,134043,29.61783676,51.71870589,,,,,,,,,,34.82950396,23.66495813,49.4377007,45.995671,26.79417335,73.64352494,,,,4.058666175,44,10841,2.949033056,5.4485699,,,,,,,,,,3.303799369,2.070473475,5.001991949,,,,,,,,,,0.132,,,0.113,0.152,0.169,,,0.146,0.193,0.11,,,0.094,0.127,136.3,104,76312,,,0.092,8790,,,,0.088785856,6939.768898,78163,,,15.83122537,46,290565,11.59044669,21.11663611,,,,,,,,,,8.957878774,4.897355683,15.02979846,24.32308,16.16251002,35.15362279,,,,0.314,,,0.302,0.325,0.170463257,9339,54786,0.14663347,0.194293044,0.040970452,1302,31779,0.029055559,0.052885346,0.000547234,54,98678,,,1827.37037,,,,,,0.095856903,627,6541,0.062659077,0.129054728,2.243128174,,,,,,,,2.017962788,2.947891656,2.278746306,,,,,,,,2.072774886,2.981071139,0.102451936,,,,,-4204.5685,,,,,0.798630426,45367,56806,0.726467005,0.870793848,77820,,,71351.40426,84288.59575,61250,28170.68085,94329.31915,71850,39435.53192,104264.4681,58750,50105.74468,67394.25532,65039,61755.25532,68322.74468,92786,85719.2766,99852.7234,,,,,,0.723635131,14938,20643,,,73.18933204,,,,,0.261770753,,77820,,,3.391062129,28,8257,,,3.353638088,22,656004,2.101707135,5.077448367,,,,,,,,,,4.283682596,2.397544631,7.065283001,,,,,,,10.30206955,44,477037,7.424825577,13.92540523,9.223603201,,,,,,,,,,6.851306088,3.916113405,11.12609185,12.0804379,7.657961355,18.12658829,,,,8.175466473,39,477037,5.813555865,11.1761318,,,,,,,,,,6.645063695,3.870994481,10.63939069,9.999421086,6.0203047,15.61533468,,,,8.079219029,53,656004,6.05188946,10.56781741,,,,,,,,,,7.710628673,5.081352882,11.2185599,8.72504353,5.530929155,13.09184925,,,,17.92857143,,14000,,,138,113,0.645112483,32404,50230,,,0.664,,,,,108.7529242,,,,,0.699259259,19824,28350,0.676737246,0.721781272,0.102438493,2823,27558,0.082079205,0.122797782,0.924444444,26208,28350,0.907321337,0.941567552,98678,,,,,0.30794098,30387,98678,,,0.103944142,10257,98678,,,0.018464095,1822,98678,,,0.018028335,1779,98678,,,0.026226717,2588,98678,,,0.004479215,442,98678,,,0.548207301,54096,98678,,,0.386904883,38179,98678,,,0.127847487,11320,88543,0.111138502,0.144556471,0.486633292,48020,98678,,,0.114450795,11073,96749,, -53,023,53023,WA,Garfield County,2024,1,10796.63637,36,6112,5389.641973,19318.1648,1,,,,2,,,,2,,,,2,,,,2,12528.34155,6254.102962,22416.66372,1,,,,2,,0.144,,,0.122,0.169,3.783567746,,,3.053924232,4.631334673,5.580017312,,,4.684408305,6.629060658,0.080924856,14,173,0.040285249,0.121564462,1,,,,,,,,,,,,,0.08974359,0.044892049,0.13459513,,,,,,,0.146,,,0.114,0.181,0.403,,,0.334,0.476,8.2,0.035352684,0.107,,,0.194,,,0.158,0.235,0.429133858,981,2286,,,0.166470773,,,0.133790093,0.205269127,0.5,3,6,0.280972677,0.671334317,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.074505239,128,1718,0.062590345,0.086420132,0.000852515,2,2346,,,1173,0.000846382,2,2363,,,1181.5,0.000423191,1,2363,,,2363,1515,,,,,,,,,1523,0.42,,,,,,,,,0.42,0.35,,,,,,,,,0.35,0.92865566,1575,1696,0.874227257,0.983084064,0.570175439,260,456,0.437924185,0.702426692,0.069912609,56,801,,,0.184,92,,0.114893617,0.253106383,,,,,,,,,,,,,0.147727273,0.012980837,0.282473709,3.45144357,102570,29718,2.670548046,4.232339093,0.077777778,35,450,0.009945441,0.145610115,17.05029838,4,2346,,,,,,,,,,,,,,,,,,,,,,,,,,6.8,,,,,1,,,,,0.055837564,55,985,0.011749751,0.099925376,0.043832824,0,0.098488884,0.014213198,0,0.043281456,0,0,0.022238848,0.684454756,590,862,0.583476236,0.785433277,,,,,,,,,,,,,0.610729023,0.491252286,0.730205761,0.415,,862,0.256218675,0.573781325,77.25271947,,,72.14694252,82.35849642,,,,,,,,,,,,,75.93360864,70.22764135,81.63957593,,,,389.9318846,36,6112,256.967569,567.3304199,,,,,,,,,,,,,432.2144926,276.9279809,643.1009047,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.11,,,0.094,0.128,0.172,,,0.148,0.197,0.084,,,0.071,0.098,0,0,1995,,,0.107,240,,,,0.035352684,80.10918077,2266,,,,,,,,,,,,,,,,,,,,,,,,,,0.292,,,0.275,0.306,0.089733226,111,1237,0.073052375,0.106414077,0.037698413,19,504,0.02340054,0.051996285,0.002115954,5,2363,,,472.6,,,,,,,,,,,3.37566553,,,,,,,,,3.251082807,3.145046284,,,,,,,,,3.061511287,0.031525931,,,,,1881.918,,,,,0.656218309,42708,65082,0.429674033,0.882762586,64413,,,55279.04255,73546.95745,,,,,,,,,,,,,59250,41426.51064,77073.48936,,,,,,0.516483517,188,364,,,,,,,,0.319050502,,64413,,,,,90,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,200,,,0,0,0.863188406,1489,1725,,,0.587,,,,,15.21839392,,,,,0.775024777,782,1009,0.708256634,0.84179292,0.104366347,98,939,0.026411029,0.182321665,0.828543112,836,1009,0.784129495,0.872956729,2363,,,,,0.213711384,505,2363,,,0.269995768,638,2363,,,0.001692763,4,2363,,,0.008463817,20,2363,,,0.038510368,91,2363,,,0,0,2363,,,0.06390182,151,2363,,,0.865848498,2046,2363,,,0.007269423,16,2201,0,0.037944442,0.506136268,1196,2363,,,1,2286,2286,, -53,025,53025,WA,Grant County,2024,1,7895.666354,1211,280779,7271.69999,8519.632719,0,,,,2,,,,2,,,,2,6621.861879,5744.92824,7498.795517,,8478.814552,7552.620687,9405.008416,,,,,2,,0.195,,,0.167,0.227,4.34475636,,,3.579499628,5.198044399,5.274110242,,,4.455030381,6.178155858,0.065918654,658,9982,0.061050729,0.070786578,0,,,,,,,,,,0.063636364,0.05711953,0.070153197,0.065422825,0.057878662,0.072966988,,,,0.111888112,0.060221038,0.163555186,0.159,,,0.129,0.192,0.366,,,0.311,0.424,7.7,0.106460238,0.097,,,0.251,,,0.211,0.297,0.683706103,67771,99123,,,0.176336507,,,0.145448035,0.21049679,0.244444444,22,90,0.190509371,0.301090894,441.7,443,100297,,,28.28916045,713,25204,26.21266318,30.36565773,,,,,,,,,,35.47593959,32.38176875,38.57011043,18.09445921,15.42873605,20.76018238,,,,26.18657938,14.96789272,42.52536432,0.137648898,11625,84454,0.120968047,0.154329749,0.000398816,40,100297,,,2507.425,0.000552753,56,101311,,,1809.125,0.002595967,263,101311,,,385.2129278,1577,,,,,,,1127,1645,1537,0.38,,,,,0.31,0.58,0.32,0.32,0.38,0.23,,,,,0.23,0.24,0.14,0.15,0.24,0.804291619,48839,60723,0.785774318,0.822808921,0.505785845,12763,25234,0.462430663,0.549141026,0.060281449,2960,49103,,,0.165,4649,,0.113765957,0.216234043,0.084183674,0.011041098,0.157326249,0.571428571,0.1245619,1,,,,0.241842493,0.193499838,0.290185147,0.089844865,0.057489021,0.12220071,4.066025751,118423,29125,3.725866982,4.40618452,0.205676244,5870,28540,0.166677185,0.244675303,7.67719872,77,100297,,,74.09735944,363,489896,66.47471802,81.72000086,,,,,,,,,,49.60795269,40.02743972,59.18846565,93.50217595,81.74576787,105.258584,,,,9.6,,,,,1,,,,,0.150109684,4790,31910,0.130546032,0.169673335,0.092979127,0.07492773,0.111030524,0.057505484,0.045512749,0.069498219,0.011125039,0.004263856,0.017986222,0.738853055,31501,42635,0.710680794,0.767025316,,,,,,,,,,0.706461383,0.661985525,0.750937241,0.7800541,0.746956085,0.813152114,0.254,,42635,0.221918167,0.286081833,77.58874692,,,76.99758655,78.17990729,,,,,,,,,,80.45746973,78.80245781,82.11248165,76.81705236,76.05036115,77.58374357,,,,387.4331431,1211,280779,365.0451343,409.821152,,,,,,,,,,310.5193235,270.8381064,350.2005406,417.8044562,387.9301246,447.6787877,,,,47.68755117,60,125819,36.39062538,61.38333114,,,,,,,,,,47.26357785,32.73140162,66.0461127,48.14132619,30.51747119,72.23562645,,,,4.64840273,47,10111,3.415471483,6.181390203,,,,,,,,,,5.527915976,3.729661696,7.89144378,,,,,,,,,,0.131,,,0.112,0.151,0.172,,,0.149,0.196,0.104,,,0.089,0.121,77.6,62,79861,,,0.097,9530,,,,0.106460238,9487.736369,89120,,,19.50189471,58,297407,14.80860628,25.21072125,,,,,,,,,,8.665374738,4.325723848,15.50474903,25.53071984,18.23952056,34.76559414,,,,0.304,,,0.292,0.315,0.185365594,10427,56251,0.161535806,0.209195381,0.044231029,1308,29572,0.031124646,0.057337412,0.001056154,107,101311,,,946.8317757,,,,,,0.067193039,417,6206,0.032555501,0.101830577,2.600166362,,,,,,,,2.340740327,3.062216327,2.580131721,,,,,,,,2.336424095,3.018002237,0.160580193,,,,,-1582.780111,,,,,0.767231577,42510,55407,0.687998473,0.846464682,63809,,,57365.42553,70252.57447,87907,49709.04255,126104.9575,53984,37612.93617,70355.06383,,,,58992,53419.40426,64564.59575,69597,64443.80851,74750.19149,,,,,,0.704451472,14480,20555,,,65.71104549,,,,,0.322070554,,63809,,,2.877500685,21,7298,,,4.581048351,31,676701,3.112600097,6.502432463,,,,,,,,,,6.344976365,3.760435118,10.02779814,3.035495986,1.51530866,5.43134081,,,,15.72366267,74,489896,12.30279765,19.80135087,15.10524683,,,,,,,,,,6.29963356,3.354289555,10.77256524,21.02670667,15.60642697,27.72109141,,,,13.47224717,66,489896,10.41943499,17.14000164,,,,,,,,,,9.632612172,5.883849763,14.87678825,15.7760873,11.32119262,21.4020438,,,,17.43753888,118,676701,14.29123797,20.5838398,,,,,,,,,,21.5024199,16.44764745,27.62075791,15.45343411,11.67335805,20.06756959,,,,28.71212121,,13200,,,107,272,0.663088429,37680,56825,,,0.547,,,,,35.18681861,,,,,0.647686093,21805,33666,0.621596607,0.673775579,0.103188154,3324,32213,0.084352531,0.122023776,0.883948197,29759,33666,0.865380282,0.902516112,101311,,,,,0.282871554,28658,101311,,,0.147190335,14912,101311,,,0.010571409,1071,101311,,,0.026660481,2701,101311,,,0.01274294,1291,101311,,,0.003385615,343,101311,,,0.435757223,44147,101311,,,0.514425877,52117,101311,,,0.102041039,9374,91865,0.089871949,0.114210128,0.489255856,49567,101311,,,0.448695056,44476,99123,, -53,027,53027,WA,Grays Harbor County,2024,1,10014.79107,1610,208726,9181.145137,10848.437,0,17926.15187,13171.46213,23837.98177,,,,,2,10284.01906,5755.887398,16961.92549,1,8876.350329,6566.772838,11735.00587,,9556.068602,8634.98436,10477.15284,,,,,2,,0.178,,,0.153,0.208,4.416408228,,,3.5709941,5.319015428,6.113380539,,,5.100763051,7.116052351,0.074126155,369,4978,0.06684852,0.08140379,0,0.072243346,0.040954167,0.103532525,,,,,,,0.062431544,0.046737885,0.078125204,0.075466114,0.066559772,0.084372457,,,,0.065891473,0.035618192,0.096164754,0.182,,,0.15,0.221,0.348,,,0.287,0.412,7.5,0.05421983,0.131,,,0.233,,,0.194,0.278,0.627558306,47466,75636,,,0.158981775,,,0.127766838,0.193807455,0.340909091,15,44,0.262598167,0.41884339,312.3,240,76841,,,19.82752267,269,13567,17.4580681,22.19697724,42.69293925,27.88844535,62.55504776,,,,,,,28.16901409,22.11873477,35.36361763,16.02529162,13.43467382,18.61590942,,,,16.60735469,9.079395346,27.86431924,0.089639608,5084,56716,0.077724714,0.101554502,0.000364389,28,76841,,,2744.321429,0.000519224,40,77038,,,1925.95,0.004426387,341,77038,,,225.9178886,1868,,,,,3176,,,716,1840,0.33,,,,,0.11,0.31,0.24,0.18,0.33,0.37,,,,,0.23,0.35,0.26,0.28,0.38,0.900550785,49705,55194,0.888498764,0.912602805,0.487998214,8742,17914,0.446603232,0.529393196,0.067162134,1961,29198,,,0.264,3925,,0.210382979,0.317617021,0.288109756,0.173326782,0.40289273,0.047619048,0,0.530464088,0.113636364,0,0.456317139,0.31430236,0.234310205,0.394294514,0.186061519,0.142005843,0.230117194,4.268037341,112928,26459,3.874195527,4.661879155,0.259885141,3937,15149,0.205859839,0.313910443,9.89055322,76,76841,,,101.2151155,379,374450,91.02493583,111.4052952,152.4099829,97.65195183,226.7739734,,,,,,,81.86655751,55.99666473,115.5711525,104.8913191,93.21476293,116.5678752,,,,6,,,,,0,,,,,0.142007814,4180,29435,0.124256448,0.159759179,0.107179663,0.091514971,0.122844356,0.032953966,0.021217242,0.04469069,0.010361814,0.006263336,0.014460293,0.770367524,22051,28624,0.743166218,0.79756883,0.720792079,0.618498864,0.823085294,,,,,,,0.764748992,0.689460142,0.840037843,0.768268316,0.738371279,0.798165353,0.31,,28624,0.277566093,0.342433907,75.49327937,,,74.82969515,76.15686359,70.62488184,65.99598058,75.2537831,,,,,,,81.18853659,75.40808435,86.96898883,75.77485396,75.05641631,76.49329161,,,,498.7102631,1610,208726,471.7958777,525.6246485,878.2774105,701.5368012,1086.003619,,,,634.7661281,387.7316418,980.3448022,353.6729618,265.690014,461.4664969,487.1787967,457.8280584,516.529535,,,,46.40162855,31,66808,31.52765534,65.86340783,,,,,,,,,,,,,37.29864559,21.31939868,60.57066368,,,,5.906674542,30,5079,3.98520851,8.432145185,,,,,,,,,,,,,,,,,,,,,,0.133,,,0.116,0.153,0.193,,,0.169,0.219,0.099,,,0.085,0.115,166.8,110,65950,,,0.131,9770,,,,0.05421983,3947.04097,72797,,,35.98827309,82,227852,28.62254159,44.67093602,115.7772866,57.79560433,207.1575467,,,,,,,,,,35.15291518,27.01246522,44.97584899,,,,0.367,,,0.352,0.381,0.110343832,4586,41561,0.09485447,0.125833194,0.034214326,545,15929,0.023490922,0.04493773,0.000960565,74,77038,,,1041.054054,,,,,,0.144850104,488,3369,0.086575409,0.203124799,2.746388694,,,,,,,,2.481072124,2.894534064,2.642173231,,,,,,,,2.348800255,2.785484213,0.087178289,,,,,-352.79135,,,,,0.885044683,49320,55726,0.806898465,0.963190901,62258,,,58918.25532,65597.74468,42500,8162.468085,76837.53192,68333,52749.51064,83916.48936,145200,98783.14894,191616.8511,55451,47572.87234,63329.12766,59502,55934.68085,63069.31915,,,,,,0.686231747,7237,10546,,,70.69828312,,,,,0.400494716,,62258,,,4.672897196,18,3852,,,4.253673627,22,517200,2.665754616,6.440112991,,,,,,,,,,,,,4.156082916,2.421071455,6.654291355,,,,18.24101757,76,374450,14.10760167,23.20704684,20.29643477,,,,,,,,,,,,,19.35207449,14.61834909,25.1302784,,,,15.22232608,57,374450,11.52924112,19.72228907,,,,,,,,,,,,,17.59467287,13.14054327,23.07307262,,,,13.53441609,70,517200,10.55074132,17.0999205,,,,,,,,,,,,,13.44615061,10.1294808,17.50201325,,,,26.61971831,,7100,,,73,116,0.674758645,38441,56970,,,0.586,,,,,59.06870128,,,,,0.712375601,21045,29542,0.691819955,0.732931247,0.115844466,3304,28521,0.098575767,0.133113164,0.874551486,25836,29542,0.856609108,0.892493864,77038,,,,,0.197551858,15219,77038,,,0.236065318,18186,77038,,,0.012967626,999,77038,,,0.055777668,4297,77038,,,0.016563255,1276,77038,,,0.004127833,318,77038,,,0.113229835,8723,77038,,,0.778680651,59988,77038,,,0.019936691,1436,72028,0.01480458,0.025068803,0.487097277,37525,77038,,,0.391149717,29585,75636,, -53,029,53029,WA,Island County,2024,1,6236.090362,1043,232719,5581.909379,6890.271344,0,,,,2,,,,2,10717.41342,6634.247825,16382.70487,1,5227.176467,3473.420801,7554.72538,,6548.21508,5760.107259,7336.322901,,,,,2,,0.126,,,0.105,0.148,3.389883758,,,2.697169979,4.153120733,5.260594212,,,4.388523264,6.14411833,0.055657697,333,5983,0.049848395,0.061466998,0,,,,0.052805281,0.027623115,0.077987446,0.086330935,0.053315931,0.119345939,0.063454759,0.047075744,0.079833774,0.052553664,0.045683825,0.059423503,,,,0.054662379,0.02939771,0.079927049,0.13,,,0.099,0.161,0.308,,,0.252,0.368,8.6,0.051405605,0.082,,,0.175,,,0.14,0.209,0.7965046,69182,86857,,,0.170637767,,,0.13949102,0.204897478,0.392857143,11,28,0.295131698,0.486362997,213.9,187,87432,,,7.944073721,100,12588,6.387035272,9.50111217,,,,,,,,,,13.98601399,8.764960504,21.17499325,7.260351673,5.591355479,9.271307,,,,,,,0.065137831,4147,63665,0.055605916,0.074669746,0.000446061,39,87432,,,2241.846154,0.000761905,66,86625,,,1312.5,0.003116883,270,86625,,,320.8333333,1279,,,,,,,3693,1446,1286,0.38,,,,,0.29,0.33,0.32,0.24,0.39,0.4,,,,,0.31,0.32,0.21,0.21,0.41,0.95656545,60894,63659,0.947214181,0.96591672,0.710661091,15125,21283,0.663725887,0.757596295,0.049442046,1821,36831,,,0.08,1173,,0.047829787,0.112170213,0.362416107,0,0.943430356,0.025500911,0,0.145538508,,,,0.030749242,0,0.068832793,0.069910626,0.043595,0.096226251,3.61422948,148740,41154,3.407200411,3.821258548,0.16467765,2539,15418,0.124569783,0.204785516,8.349345777,73,87432,,,76.95809069,328,426206,68.62946328,85.2867181,,,,,,,,,,36.84493949,19.61837851,63.00596865,87.25586288,77.24758711,97.26413864,,,,7.3,,,,,1,,,,,0.155697098,5500,35325,0.137385659,0.174008538,0.129542857,0.113775652,0.145310063,0.019249823,0.012441811,0.026057836,0.011464968,0.003542319,0.019387618,0.718556886,28023,38999,0.695249568,0.741864204,,,,0.795616114,0.740011169,0.851221059,0.754650133,0.576253836,0.93304643,0.782570679,0.687977882,0.877163477,0.673970549,0.637349927,0.710591172,0.317,,38999,0.283257493,0.350742508,80.83111772,,,80.20193878,81.46029666,,,,91.36710365,86.79555614,95.93865116,76.83583939,70.88464418,82.78703459,85.23621951,78.19584323,92.2765958,80.37672857,79.67222144,81.0812357,,,,291.8429134,1043,232719,271.6134934,312.0723333,,,,,,,492.8635734,312.4332272,739.5373539,233.1765533,161.4815416,325.8408613,304.7333381,281.4001857,328.0664905,,,,41.46919431,28,67520,27.55597846,59.93453191,,,,,,,,,,,,,41.60371368,25.04815337,64.96935245,,,,5.190592052,32,6165,3.550361121,7.327567247,,,,,,,,,,,,,5.660377359,3.626710579,8.422192829,,,,,,,0.1,,,0.085,0.116,0.16,,,0.137,0.184,0.079,,,0.066,0.092,138.2,105,75962,,,0.082,7040,,,,0.051405605,4035.648431,78506,,,15.46868172,40,258587,11.05105301,21.06395409,,,,,,,,,,,,,15.33090017,10.41660286,21.76098904,,,,0.308,,,0.295,0.322,0.076600341,3688,48146,0.064685447,0.088515234,0.031209443,505,16181,0.021677528,0.040741358,0.000658009,57,86625,,,1519.736842,,,,,,0.105766358,354,3347,0.045412582,0.166120134,3.060713521,,,,,,3.293544909,,,,,,,,,,,,,,0.037376891,,,,,4133.721,,,,,0.769855989,47738,62009,0.691450656,0.848261321,82717,,,74768.57447,90665.42553,72589,8028.148936,137149.8511,92642,86013.74468,99270.25532,86122,70289.48936,101954.5106,72312,59466.55319,85157.44681,83186,79039.61702,87332.38298,,,,,,0.357791672,3033,8477,,,53.26917648,,,,,0.366526833,,82717,,,3.214744964,15,4666,,,1.696539907,10,589435,0.813556829,3.119997293,,,,,,,,,,,,,,,,,,,17.49837782,76,426206,13.50487858,22.30311897,17.83175272,,,,,,,,,,,,,19.41007529,14.58144595,25.32593784,,,,12.20067291,52,426206,9.1120461,15.99955931,,,,,,,,,,,,,14.04460807,10.31944974,18.67635137,,,,9.670277469,57,589435,7.324173719,12.52896611,,,,,,,,,,,,,10.53575383,7.794408686,13.92882531,,,,8.888888889,,6300,,,36,20,0.805993573,53925,66905,,,0.691,,,,,36.40930242,,,,,0.738266945,26207,35498,0.720929448,0.755604441,0.148892086,5174,34750,0.131890255,0.165893918,0.934982253,33190,35498,0.926263284,0.943701221,86625,,,,,0.1724329,14937,86625,,,0.270476191,23430,86625,,,0.028963925,2509,86625,,,0.010308802,893,86625,,,0.052606061,4557,86625,,,0.005033189,436,86625,,,0.087134199,7548,86625,,,0.777327561,67336,86625,,,0.007068861,580,82050,0.003951342,0.010186379,0.495572872,42929,86625,,,0.477808352,41501,86857,, -53,031,53031,WA,Jefferson County,2024,1,7858.142798,529,84175,6406.59052,9309.695076,0,,,,2,,,,2,,,,2,,,,2,8325.854785,6622.986931,10028.72264,,,,,2,,0.13,,,0.106,0.155,3.596985229,,,2.8471648,4.433340331,5.319744689,,,4.43448249,6.302684489,0.049372385,59,1195,0.037088963,0.061655807,0,,,,,,,,,,,,,0.046875,0.033503934,0.060246066,,,,,,,0.129,,,0.098,0.165,0.31,,,0.251,0.373,7.8,0.066965463,0.113,,,0.155,,,0.121,0.192,0.825090214,27209,32977,,,0.142612517,,,0.114369458,0.173452648,0.333333333,8,24,0.22460658,0.441421063,122,41,33605,,,6.123535676,23,3756,3.881796336,9.188310142,,,,,,,,,,,,,6.946856547,4.243320453,10.72885651,,,,,,,0.076399583,1538,20131,0.064484689,0.088314476,0.000833209,28,33605,,,1200.178571,0.000506118,17,33589,,,1975.823529,0.004912323,165,33589,,,203.569697,1108,,,,,,,,,1113,0.33,,,,,,0.37,,,0.33,0.42,,,,,0.16,0.41,0.35,0.37,0.42,0.970526921,27002,27822,0.962278588,0.978775255,0.680270957,4017,5905,0.598463973,0.762077941,0.055511749,704,12682,,,0.155,574,,0.095425532,0.214574468,0.31092437,0,0.674731203,,,,,,,0.538011696,0.376925224,0.699098168,0.266409266,0.205643,0.327175533,5.019574214,134630,26821,4.166206099,5.87294233,0.245115916,941,3839,0.162325838,0.327905994,9.224817736,31,33605,,,116.416598,188,161489,99.77511407,133.058082,,,,,,,,,,,,,122.1155466,103.9707374,140.2603557,,,,5.8,,,,,0,,,,,0.155481728,2340,15050,0.127363334,0.183600121,0.133874239,0.107687711,0.160060768,0.012292359,0.004011416,0.020573302,0.017940199,0.005831272,0.030049126,0.662920369,7609,11478,0.624312896,0.701527843,,,,,,,,,,,,,0.634159034,0.591811046,0.676507022,0.311,,11478,0.253920322,0.368079678,80.26680417,,,79.04752182,81.48608651,,,,,,,,,,,,,79.78480183,78.42510062,81.14450303,,,,325.7500393,529,84175,288.5383683,362.9617102,,,,,,,,,,,,,337.3787451,295.7400933,379.0173969,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.104,,,0.087,0.122,0.163,,,0.139,0.188,0.076,,,0.064,0.09,132.8,41,30865,,,0.113,3680,,,,0.066965463,2000.392305,29872,,,26.38897347,26,98526,17.2381536,38.66596034,,,,,,,,,,,,,25.37573388,15.90283732,38.41916605,,,,0.295,,,0.279,0.312,0.087194972,1415,16228,0.072897099,0.101492844,0.033170732,136,4100,0.022447328,0.043894136,0.001399268,47,33589,,,714.6595745,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.065577457,,,,,3749.407667,,,,,0.815824571,52606,64482,0.654005787,0.977643355,69176,,,61633.87234,76718.12766,48542,8101.659575,88982.34043,54853,10639.21277,99066.78723,45985,17631.12766,74338.87234,,,,67779,61783.42553,73774.57447,,,,,,0.455287873,1115,2449,,,79.67967968,,,,,0.360442928,,69176,,,5.561735261,5,899,,,,,,,,,,,,,,,,,,,,,,,,,,36.55116536,57,161489,26.22974732,49.58578304,35.29652175,,,,,,,,,,,,,36.39871117,25.35303598,50.62179601,,,,16.71940504,27,161489,11.01819327,24.32585653,,,,,,,,,,,,,17.54533715,11.35441711,25.90037877,,,,12.9990049,29,223094,8.705637596,18.66873938,,,,,,,,,,,,,14.72380179,9.860761138,21.14583542,,,,22.22222222,,1800,,,12,28,0.905313128,24792,27385,,,0.654,,,,,11.17758246,,,,,0.80377073,12747,15859,0.783031481,0.824509978,0.137210839,2076,15130,0.11174672,0.162674959,0.899047859,14258,15859,0.877359968,0.920735751,33589,,,,,0.112953646,3794,33589,,,0.408824318,13732,33589,,,0.010152133,341,33589,,,0.019262259,647,33589,,,0.021376046,718,33589,,,0.00270922,91,33589,,,0.045401768,1525,33589,,,0.875405639,29404,33589,,,0.004076298,131,32137,0,0.008994606,0.51216172,17203,33589,,,0.532583316,17563,32977,, -53,033,53033,WA,King County,2024,1,5119.006077,18996,6412859,5012.200054,5225.812101,0,17749.36451,15067.5296,20431.19943,,2654.855637,2488.127503,2821.583772,,10323.04451,9751.471836,10894.61717,,5672.548119,5320.025513,6025.070724,,4911.660055,4769.833006,5053.487105,,15258.17814,13367.48829,17148.86799,,,0.115,,,0.098,0.133,2.971315946,,,2.530738459,3.486010422,4.879095757,,,4.336901867,5.453535117,0.068492263,11628,169771,0.067290723,0.069693803,0,0.093786635,0.074222202,0.113351068,0.082506891,0.079769926,0.085243856,0.09427892,0.089489059,0.099068782,0.067483865,0.064247925,0.070719806,0.055386842,0.053775219,0.056998466,0.068879372,0.05950225,0.078256494,0.071678832,0.06557004,0.077787625,0.09,,,0.07,0.111,0.233,,,0.208,0.258,9.1,0.024562499,0.073,,,0.143,,,0.122,0.165,0.978316719,2220461,2269675,,,0.190310164,,,0.170520686,0.210430704,0.309859155,176,568,0.289056775,0.330812456,332.4,7486,2252305,,,6.516323366,2702,414651,6.270617216,6.762029516,20.48857368,15.30184681,26.86803851,1.291791369,1.0398568,1.543725938,10.28176276,9.187242511,11.37628301,20.20993519,19.08413668,21.3357337,2.481884239,2.26390109,2.699867387,24.44033683,20.0490705,28.83160315,7.578417603,6.655453687,8.501381519,0.060973544,118398,1941793,0.057399075,0.064548012,0.001191224,2683,2252305,,,839.4726053,0.001157143,2623,2266789,,,864.1971026,0.005939238,13463,2266789,,,168.3717596,1630,,,,,2643,1290,2752,1611,1604,0.41,,,,,0.26,0.33,0.29,0.24,0.43,0.53,,,,,0.37,0.5,0.35,0.37,0.55,0.937910289,1521887,1622636,,,0.825744396,628408,761020,,,0.029018623,38302,1319911,,,0.091,38828,,0.076702128,0.105297872,0.265690377,0.16946348,0.361917273,0.073489392,0.062678096,0.084300687,0.244830711,0.21511782,0.274543602,0.162219013,0.140961539,0.183476486,0.04670131,0.040471485,0.052931136,4.803633576,231881,48272,4.693619781,4.913647372,0.169299667,75230,444360,0.161068669,0.177530665,8.746595155,1970,2252305,,,61.33263769,6870,11201214,59.8822993,62.78297609,187.0580184,153.9997695,220.1162673,25.14730447,23.04179484,27.2528141,98.9039824,91.75365083,106.054314,48.6215957,44.52818203,52.71500938,70.90758476,68.85978825,72.95538126,78.87412816,61.48625236,99.6527159,8.3,,,,,0,,,,,0.17621603,158605,900060,0.172261125,0.180170935,0.136888804,0.133078275,0.140699334,0.039114059,0.037240571,0.040987548,0.013249117,0.011874449,0.014623785,0.532550696,645935,1212908,0.527878002,0.537223391,0.593245409,0.542699596,0.643791222,0.483672413,0.476133978,0.491210848,0.59206575,0.575152885,0.608978615,0.572981183,0.555750407,0.59021196,0.57876186,0.572708147,0.584815573,0.428,,1212908,0.420655166,0.435344834,81.61570235,,,81.48839368,81.74301101,70.06239183,68.1436199,71.98116375,87.15513953,86.75126458,87.55901448,75.47835551,74.92387285,76.03283817,83.94773113,82.94604912,84.94941313,81.41179327,81.26063936,81.56294719,70.79966918,69.06477042,72.53456795,255.751736,18996,6412859,252.0638859,259.4395861,728.9007116,646.2762779,811.5251453,143.9254179,137.3543138,150.496522,488.4927305,467.7593888,509.2260722,263.737429,247.9165428,279.5583151,252.9142333,248.3188644,257.5096023,741.8015866,660.6316523,822.9715209,40.70055134,811,1992602,37.89933961,43.50176307,144.1571313,82.39825618,234.1021497,24.56876419,19.78123635,30.16499813,81.08593252,67.20029132,94.97157372,53.22952002,45.20414623,61.25489381,33.63100583,29.88113172,37.38087994,105.6016896,66.18001667,159.8822272,3.95050556,681,172383,3.653793504,4.247217616,,,,2.325641489,1.870090393,2.858608227,8.414464534,6.915159944,9.913769124,5.031664787,4.115995227,5.947334347,3.08290412,2.699976744,3.465831497,7.04721635,4.304622828,10.88385409,9.494140335,7.311644941,12.12380525,0.086,,,0.074,0.098,0.148,,,0.131,0.165,0.071,,,0.063,0.08,371.7,7182,1932215,,,0.073,164250,,,,0.024562499,47436.30097,1931249,,,23.24688815,1576,6779402,22.09915007,24.39462623,107.1291927,77.20929915,144.8075469,4.553219052,3.490926939,5.837021334,48.66276049,42.26134045,55.06418054,19.00429205,15.73739017,22.27119393,26.68570523,25.05755338,28.31385708,29.99962501,17.14737776,48.71751153,0.274,,,0.264,0.285,0.071229257,106369,1493333,0.0664633,0.075995214,0.02863707,13437,469217,0.023871112,0.033403027,0.001315958,2983,2266789,,,759.9024472,,,,,,0.050527819,4954,98045,0.042389162,0.058666476,3.26639093,,,,,,3.545442703,2.554787257,2.646258267,3.543198176,3.223366369,,,,,,3.732292435,2.440043314,2.548997885,3.45617855,0.119908229,,,,,2959.633659,,,,,0.757094992,75923,100282,0.742658489,0.771531495,116044,,,113232.0851,118855.9149,57738,41561.14894,73914.85106,140765,137878.0213,143651.9787,63220,59342.89362,67097.10638,83895,80486.14894,87303.85106,122103,120557.6383,123648.3617,,,,,,0.317209806,81482,256871,,,56.66556306,,,,,0.328866637,,116044,,,6.458213441,808,125112,,,3.471614124,537,15468309,3.177984158,3.76524409,12.95266879,6.692832974,22.6257057,1.171868672,0.811553122,1.63756901,20.0816259,17.32587562,22.83737618,6.708641717,5.406702875,8.010580559,1.568845493,1.31170633,1.825984657,9.735202492,5.030321188,17.00543958,12.35573145,1452,11201214,11.70744754,13.00401536,12.96288063,,,,6.937818555,5.82456052,8.05107659,9.447928316,7.336686023,11.97750041,8.197244175,6.608135754,10.0531923,14.18106465,13.28203943,15.08008987,14.4903124,8.282465549,23.53135952,8.677630835,972,11201214,8.132093963,9.223167708,,,,2.66157602,2.02104626,3.440704205,22.87575103,19.43695061,26.31455146,10.13697475,8.267906267,12.00604323,8.528615275,7.818416837,9.238813713,20.28191867,12.0203504,32.05417556,5.462782002,845,15468309,5.09444819,5.831115813,22.66717038,14.03133573,34.64917776,3.584539468,2.895613162,4.273465774,9.450176896,7.654673626,11.54028345,6.577099723,5.287988177,7.866211268,5.386735225,4.910259308,5.863211142,8.112668744,3.890339999,14.91948666,,,197000,,,,,0.793803711,1210507,1524945,,,0.741,,,,,332.9684682,,,,,0.562014472,514957,916270,0.557058779,0.566970165,0.14783765,132858,898675,0.143882589,0.151792711,0.940490249,861743,916270,0.937983062,0.942997435,2266789,,,,,0.192209332,435698,2266789,,,0.142454812,322915,2266789,,,0.069227881,156925,2266789,,,0.010440319,23666,2266789,,,0.216824327,491495,2266789,,,0.00857292,19433,2266789,,,0.104876987,237734,2266789,,,0.549762682,1246196,2266789,,,0.044902673,95762,2132657,,,0.49173302,1114655,2266789,,,0.032943483,74771,2269675,, -53,035,53035,WA,Kitsap County,2024,1,6139.180465,3201,760202,5796.233567,6482.127363,0,13474.83301,8879.999858,19605.17457,,3037.249023,2034.093338,4361.996235,,9583.182821,7218.45991,11947.90573,,4497.255223,3558.669355,5435.84109,,6144.751625,5740.79105,6548.712199,,12940.43645,8666.413385,18584.62532,,,0.13,,,0.111,0.152,3.261360593,,,2.652678204,3.95027722,4.867250342,,,4.146359066,5.635216316,0.0649357,1328,20451,0.061558465,0.068312935,0,0.069090909,0.03911628,0.099065538,0.092161017,0.073708819,0.110613215,0.125184094,0.100292421,0.150075768,0.075080443,0.065314252,0.084846635,0.056515029,0.052635095,0.060394963,0.068345324,0.03868229,0.098008357,0.072617247,0.058628148,0.086606346,0.13,,,0.102,0.159,0.323,,,0.278,0.372,8.3,0.07841842,0.082,,,0.157,,,0.129,0.187,0.844044686,232628,275611,,,0.187549819,,,0.157561335,0.220322011,0.310810811,23,74,0.250921558,0.371487727,388.6,1066,274314,,,12.41725258,604,48642,11.42696093,13.40754423,12.57861635,6.499554621,21.97231137,,,,18.47575058,11.83776201,27.49045234,21.9972067,18.15625953,25.83815388,11.07391998,9.920318455,12.22752151,,,,9.877446497,7.42024181,12.88792508,0.066655367,14550,218287,0.058314941,0.074995792,0.00067441,185,274314,,,1482.778378,0.000792299,220,277673,,,1262.15,0.004566523,1268,277673,,,218.9850158,1411,,,,,1505,1563,2942,2214,1351,0.37,,,,,0.14,0.29,0.29,0.17,0.38,0.45,,,,,0.21,0.37,0.29,0.33,0.46,0.952444156,185138,194382,,,0.714213117,53406,74776,,,0.045165936,5833,129146,,,0.105,5517,,0.075212766,0.134787234,0.11908646,0.05649909,0.18167383,0.072470374,0.021438369,0.123502379,0.185119048,0.090288454,0.279949642,0.149175101,0.112865982,0.185484219,0.092743444,0.074934201,0.110552688,3.717171717,166704,44847,3.558099836,3.876243599,0.198336882,10900,54957,0.177771144,0.218902619,8.02000627,220,274314,,,69.38329324,940,1354793,64.94774758,73.8188389,113.9693911,70.54884937,174.2143207,36.84285107,24.06697352,53.98331314,90.44161348,62.99589758,125.7823907,33.30512899,23.44988439,45.90673317,74.22736503,68.96387946,79.49085059,,,,4.9,,,,,1,,,,,0.140601362,14870,105760,0.131508467,0.149694256,0.122192615,0.112991616,0.131393614,0.016546899,0.013251036,0.019842761,0.006524206,0.004663047,0.008385365,0.661051619,86609,131017,0.647143678,0.674959561,0.751138088,0.643403143,0.858873033,0.686604053,0.652774635,0.720433472,0.659755449,0.576824939,0.74268596,0.63371934,0.582868247,0.684570433,0.692706353,0.67341134,0.712001365,0.332,,131017,0.315149796,0.348850204,79.53848705,,,79.20697996,79.86999414,74.8837462,70.26277833,79.50471407,87.03366921,85.08146923,88.98586919,75.17492192,72.59520037,77.75464347,83.20940094,80.85401122,85.56479066,79.33628684,78.96718591,79.70538776,74.31047086,68.91322682,79.70771489,306.6464487,3201,760202,295.3708845,317.9220129,530.0308621,399.2917822,689.9080219,153.0013908,120.7463049,191.2254868,527.1525612,426.8158329,627.4892895,239.549209,193.4463927,285.6520252,309.0491336,296.3341252,321.764142,640.7458299,478.5396332,840.2529089,45.99358576,111,241338,37.43717054,54.55000098,,,,,,,,,,51.79669796,29.60628829,84.11459242,39.49075728,30.3457822,50.5258334,,,,4.743465634,98,20660,3.850974689,5.780765261,,,,,,,,,,7.754943777,4.736921127,11.9768817,3.341153053,2.454953591,4.443025261,,,,,,,0.101,,,0.087,0.117,0.154,,,0.134,0.175,0.083,,,0.071,0.096,153.4,361,235378,,,0.082,22280,,,,0.07841842,19693.45299,251133,,,16.61425845,136,818574,13.82192307,19.40659384,,,,,,,42.35672837,20.31169764,77.89553154,,,,16.63237921,13.42025865,19.84449976,,,,0.296,,,0.282,0.309,0.080008833,13044,163032,0.069285428,0.090732237,0.028921696,1675,57915,0.021772759,0.036070632,0.000918346,255,277673,,,1088.913726,,,,,,0.096511139,1148,11895,0.070975566,0.122046712,3.204938207,,,,,,,2.747423414,3.001155255,3.295640382,3.08360039,,,,,,,2.531064885,2.857027136,3.197063614,0.04765409,,,,,5836.0456,,,,,0.780151678,55138,70676,0.739687317,0.82061604,93794,,,88451.3617,99136.6383,65225,60134.95745,70315.04255,85625,66773.25532,104476.7447,73900,54634.80851,93165.19149,76967,67607.85106,86326.14894,96748,94409.10638,99086.89362,,,,,,0.365018455,12461,34138,,,51.9441621,,,,,0.280497686,,93794,,,4.606172271,70,15197,,,2.60675042,49,1879735,1.928488311,3.446262297,,,,,,,,,,,,,1.743380037,1.128223639,2.573572848,,,,17.5714539,246,1354793,15.30109132,19.84181648,18.15775547,,,,,,,,,,,,,18.85363393,16.15313022,21.55413764,,,,11.29323816,153,1354793,9.50374994,13.08272637,,,,,,,,,,,,,12.92177951,10.72567716,15.11788187,,,,7.181863401,135,1879735,5.970355285,8.393371517,,,,,,,,,,,,,7.322196157,5.921632731,8.722759582,,,,6.458333333,,24000,,,65,90,0.765145268,158672,207375,,,0.728,,,,,75.855659,,,,,0.698380662,74050,106031,0.685304742,0.711456582,0.127313457,13242,104011,0.117474346,0.137152569,0.942535674,99938,106031,0.935513,0.949558348,277673,,,,,0.193580219,53752,277673,,,0.198402437,55091,277673,,,0.029221422,8114,277673,,,0.017196487,4775,277673,,,0.057218383,15888,277673,,,0.010058594,2793,277673,,,0.090602975,25158,277673,,,0.745877345,207110,277673,,,0.007908854,2061,260594,,,0.485542347,134822,277673,,,0.175711419,48428,275611,, -53,037,53037,WA,Kittitas County,2024,1,5747.716453,473,133380,4892.530571,6602.902335,0,,,,2,,,,2,,,,2,,,,2,5726.247633,4836.665012,6615.830254,,,,,2,,0.15,,,0.127,0.179,3.74529065,,,3.004593147,4.561228252,5.361580156,,,4.487802088,6.293638596,0.061282324,173,2823,0.052434515,0.070130133,0,,,,,,,,,,0.060052219,0.036257911,0.083846527,0.059432688,0.049599612,0.069265765,,,,0.113207547,0.052888868,0.173526226,0.15,,,0.118,0.186,0.309,,,0.254,0.368,7.8,0.097179045,0.096,,,0.206,,,0.168,0.248,0.745607506,33058,44337,,,0.193301897,,,0.158603135,0.231286132,0.195121951,8,41,0.117388214,0.283402896,369.2,168,45499,,,5.872035385,77,13113,4.634118497,7.339036719,,,,,,,,,,18.09408926,12.20800604,25.83043751,3.744211252,2.649626726,5.139222477,,,,,,,0.083752423,2981,35593,0.07064604,0.096858806,0.000505506,23,45499,,,1978.217391,0.000553232,25,45189,,,1807.56,0.00214654,97,45189,,,465.8659794,1305,,,,,,,,,1312,0.37,,,,,,0.27,,0.29,0.37,0.41,,,,,0.28,0.28,0.36,0.31,0.41,0.931392638,26364,28306,0.916289783,0.946495492,0.699054673,7173,10261,0.626818675,0.771290672,0.058408102,1315,22514,,,0.113,855,,0.071297872,0.154702128,,,,,,,,,,0.169585987,0.0772918,0.261880174,0.143935107,0.089081272,0.198788941,4.787940708,138247,28874,4.138181858,5.437699558,0.215981321,1665,7709,0.152310863,0.279651779,8.791402009,40,45499,,,67.73719661,160,236207,57.24120926,78.23318397,,,,,,,,,,50.63990425,25.27925774,90.60877688,70.88176921,59.14018756,82.62335086,,,,7,,,,,0,,,,,0.21111691,4045,19160,0.181722782,0.240511039,0.183560924,0.153879164,0.213242685,0.015135699,0.006494284,0.023777115,0.018789144,0.007969083,0.029609206,0.731649676,15789,21580,0.70071822,0.762581131,,,,,,,,,,0.708248679,0.629966885,0.786530474,0.718560926,0.678682345,0.758439508,0.255,,21580,0.218411381,0.291588619,80.28598485,,,79.43321354,81.13875615,,,,,,,,,,,,,80.05454961,79.18526503,80.92383418,,,,283.8945454,473,133380,256.5743668,311.2147239,,,,,,,,,,,,,293.9038908,264.111878,323.6959036,,,,44.99064668,19,42231,27.08730829,70.25846788,,,,,,,,,,,,,31.00486776,14.86803924,57.01905572,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.115,,,0.098,0.133,0.173,,,0.15,0.199,0.087,,,0.074,0.102,82.4,33,40069,,,0.096,4230,,,,0.097179045,3976.080607,40915,,,20.33118804,29,142638,13.61611572,29.19897744,,,,,,,,,,,,,20.16230657,12.91837026,29.99991397,,,,0.289,,,0.274,0.305,0.097685549,2735,27998,0.081004698,0.1143664,0.034193387,273,7984,0.023469983,0.044916791,0.000818783,37,45189,,,1221.324324,,,,,,0.083890126,339,4041,0.028486567,0.139293686,,,,,,,,,,,,,,,,,,,,,0.037546164,,,,,3296.85525,,,,,0.83032256,52307,62996,0.735424069,0.925221051,71737,,,63057,80417,,,,45750,27654.85106,63845.14894,12292,1276.680851,23307.31915,56250,24278.76596,88221.23404,69694,63039.53192,76348.46809,,,,,,0.409848931,2089,5097,,,64.01049462,,,,,0.283967827,,71737,,,5.376344086,10,1860,,,,,,,,,,,,,,,,,,,,,,,,,,18.08575261,43,236207,12.79855495,24.82410848,18.20437159,,,,,,,,,,,,,19.30002626,13.36582924,26.96985221,,,,11.85400941,28,236207,7.876903164,17.13234406,,,,,,,,,,,,,12.15116044,7.785477771,18.07996354,,,,8.941179372,29,324342,5.988048152,12.84102504,,,,,,,,,,,,,8.099371931,5.075833268,12.26254644,,,,21.08108108,,3700,,,40,38,0.693515718,26364,38015,,,0.546,,,,,59.48175037,,,,,0.61548052,11848,19250,0.593219431,0.637741608,0.187132611,3470,18543,0.158960294,0.215304928,0.887272727,17080,19250,0.865446882,0.909098572,45189,,,,,0.170904424,7723,45189,,,0.183274691,8282,45189,,,0.009980305,451,45189,,,0.013852929,626,45189,,,0.020425325,923,45189,,,0.002788289,126,45189,,,0.100068601,4522,45189,,,0.828830025,37454,45189,,,0.00425652,181,42523,0.000582285,0.007930755,0.493991901,22323,45189,,,0.427927014,18973,44337,, -53,039,53039,WA,Klickitat County,2024,1,7342.112865,370,61958,5894.461775,8789.763956,0,57908.98358,31659.38019,97161.43457,1,,,,2,,,,2,,,,2,6267.205379,4856.04349,7678.367268,,,,,2,,0.157,,,0.132,0.185,3.796565483,,,3.028614008,4.591158532,5.415976422,,,4.480719573,6.36314358,0.081329562,115,1414,0.067082167,0.095576956,0,0.192307692,0.085186425,0.299428959,,,,,,,0.086124402,0.048088863,0.124159941,0.077872745,0.061687098,0.094058391,,,,,,,0.155,,,0.12,0.191,0.307,,,0.248,0.368,8.1,0.048610892,0.108,,,0.198,,,0.16,0.237,0.598284583,13602,22735,,,0.176449619,,,0.142709282,0.214033557,0.222222222,4,18,0.102162676,0.360013884,242.2,56,23118,,,15.83181936,61,3853,12.11008735,20.33663429,,,,,,,,,,,,,16.64201183,12.13879763,22.26832119,,,,,,,0.106437369,1832,17212,0.090948008,0.121926731,0.000562332,13,23118,,,1778.307692,0.000300804,7,23271,,,3324.428571,0.001890765,44,23271,,,528.8863636,1108,,,,,,,,5747,973,0.35,,,,,,,,0.26,0.35,0.24,,,,,0.32,,,0.22,0.24,0.89432794,15310,17119,0.87029092,0.918364959,0.612090203,3230,5277,0.512496795,0.711683611,0.058279089,573,9832,,,0.176,722,,0.111659575,0.240340426,,,,,,,,,,0.014460512,0,0.035175059,0.20020429,0.109378681,0.291029899,4.23647404,124188,29314,3.167875721,5.305072359,0.163179916,702,4302,0.089553444,0.236806388,6.055887188,14,23118,,,90.94313379,102,112158,73.29389818,108.5923694,,,,,,,,,,,,,95.48714721,76.58348427,117.642836,,,,7,,,,,1,,,,,0.154800432,1435,9270,0.118485348,0.191115516,0.107433532,0.074597332,0.140269733,0.03236246,0.016406561,0.048318358,0.019417476,0.006721659,0.032113292,0.660611958,6110,9249,0.605524717,0.7156992,,,,,,,,,,0.57125961,0.435676414,0.706842806,0.643106325,0.599186655,0.687025995,0.313,,9249,0.247685079,0.378314921,79.92110522,,,78.51550037,81.32671007,,,,,,,,,,89.11466066,74.59402482,103.6352965,80.39593533,79.00038384,81.79148682,,,,352.6950087,370,61958,311.9250368,393.4649806,1700.67795,1023.919221,2655.819285,,,,,,,,,,336.5389335,294.368625,378.709242,,,,63.82639221,12,18801,32.98002824,111.4918624,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.117,,,0.1,0.135,0.176,,,0.152,0.203,0.087,,,0.074,0.102,119.3,24,20111,,,0.108,2440,,,,0.048610892,987.6761048,20318,,,24.91207503,17,68240,14.51220174,39.88664539,,,,,,,,,,,,,21.38046538,11.04759846,37.34737029,,,,0.313,,,0.297,0.329,0.127766212,1657,12969,0.107510893,0.148021531,0.042943413,192,4471,0.02983703,0.056049796,0.000859439,20,23271,,,1163.55,,,,,,,,,,,2.6799145,,,,,,,,2.106404663,2.901889782,2.462412503,,,,,,,,1.871072967,2.641003975,0.063546456,,,,,-2001.81655,,,,,0.841072661,51186,60858,0.643926838,1.038218484,70371,,,62582.23404,78159.76596,48603,40715.34043,56490.65957,,,,,,,73798,67918,79678,65990,60559.19149,71420.80851,,,,,,0.487319741,1960,4022,,,,,,,,0.354322093,,70371,,,4.807692308,5,1040,,,,,,,,,,,,,,,,,,,,,,,,,,18.58629685,21,112158,11.01541745,29.37436207,18.72358637,,,,,,,,,,,,,19.47319388,10.89899879,32.11807192,,,,15.15718897,17,112158,8.829621132,24.26812783,,,,,,,,,,,,,18.44638071,10.74569654,29.53444245,,,,14.88817685,23,154485,9.437826998,22.3395753,,,,,,,,,,,,,14.99345023,9.027036477,23.41412981,,,,12.5,,2000,,,7,18,0.819087889,13560,16555,,,0.504,,,,,12.73547323,,,,,0.749948014,7213,9618,0.715529135,0.784366894,0.114357904,1041,9103,0.079893407,0.148822401,0.864108962,8311,9618,0.827258089,0.900959836,23271,,,,,0.180911865,4210,23271,,,0.254694684,5927,23271,,,0.005285549,123,23271,,,0.025912079,603,23271,,,0.010742985,250,23271,,,0.002191569,51,23271,,,0.127970435,2978,23271,,,0.810751579,18867,23271,,,0.037525868,816,21745,0.02782875,0.047222986,0.483907009,11261,23271,,,0.797096987,18122,22735,, -53,041,53041,WA,Lewis County,2024,1,8793.818698,1478,226386,8029.435925,9558.201472,0,,,,2,,,,2,,,,2,6883.238531,4939.530809,9337.890296,,8878.048357,8033.912368,9722.184345,,,,,2,,0.167,,,0.142,0.197,4.045488411,,,3.222299915,4.928155058,5.647374536,,,4.676471458,6.658322926,0.059943803,384,6406,0.054130651,0.065756954,0,,,,,,,,,,0.065789474,0.050892919,0.080686029,0.057900102,0.051363911,0.064436293,,,,0.056074766,0.025249863,0.086899669,0.177,,,0.141,0.217,0.353,,,0.295,0.416,7.8,0.06364833,0.112,,,0.217,,,0.177,0.261,0.573664926,47126,82149,,,0.162005464,,,0.13179902,0.196552428,0.307692308,16,52,0.235486711,0.381032196,255.9,216,84398,,,24.7034285,379,15342,22.21632592,27.19053108,,,,,,,,,,32.13927017,26.03291202,39.24754972,23.88924079,21.00748977,26.77099182,,,,20.2020202,11.54720007,32.80681515,0.092438495,6132,66336,0.080523601,0.104353389,0.000462096,39,84398,,,2164.051282,0.000691109,59,85370,,,1446.949153,0.006079419,519,85370,,,164.4894027,2006,,,,,,6206,,1664,2005,0.3,,,,,0.18,0.24,,0.18,0.31,0.3,,,,,0.2,0.42,,0.23,0.3,0.894946537,52562,58732,0.884087166,0.905805908,0.573419511,11356,19804,0.531641121,0.615197901,0.060249606,2100,34855,,,0.146,2607,,0.091191489,0.200808511,0.296137339,0,0.602961686,0.230769231,0,0.625598885,,,,0.299016773,0.226037521,0.371996024,0.09707854,0.070103827,0.124053254,4.2829423,125593,29324,3.969086259,4.596798341,0.195899125,3449,17606,0.156555708,0.235242542,7.701604303,65,84398,,,92.83538016,376,405018,83.45164657,102.2191137,,,,,,,,,,55.56327268,35.60043722,82.67374541,100.8326149,90.0828553,111.5823745,,,,6.8,,,,,1,,,,,0.156651671,4875,31120,0.137011948,0.176291394,0.117313916,0.098616423,0.136011409,0.032133676,0.024005342,0.04026201,0.016709512,0.010023472,0.023395551,0.75381668,25182,33406,0.728451388,0.779181971,,,,0.698025552,0.528735033,0.867316071,,,,0.784275504,0.767212616,0.801338391,0.747446534,0.725772351,0.769120717,0.355,,33406,0.325500109,0.384499891,76.21992945,,,75.59824338,76.84161553,,,,,,,,,,83.35042921,78.03633188,88.66452654,75.92956621,75.26281383,76.59631859,,,,438.9903612,1478,226386,414.7942691,463.1864532,,,,,,,,,,234.9312173,171.360442,314.3564526,454.7578495,428.110755,481.4049441,,,,67.5947952,52,76929,50.48302617,88.64158086,,,,,,,,,,90.18294254,49.30385388,151.3116537,53.02226935,35.50984594,76.14882334,,,,7.867820614,50,6355,5.83964811,10.37274062,,,,,,,,,,,,,5.919575424,3.964432565,8.501497742,,,,,,,0.125,,,0.108,0.144,0.184,,,0.16,0.211,0.09,,,0.077,0.105,101,72,71254,,,0.112,9100,,,,0.06364833,4802.58477,75455,,,23.86596228,59,247214,18.16787627,30.78535251,,,,,,,,,,,,,26.51608151,19.91969653,34.59773454,,,,0.323,,,0.307,0.336,0.1143183,5513,48225,0.097637449,0.130999151,0.035497653,673,18959,0.024774249,0.046221057,0.001042521,89,85370,,,959.2134832,,,,,,0.093270658,377,4042,0.047736451,0.138804865,2.904018442,,,,,,,,2.664716201,3.007688689,2.86359845,,,,,,,,2.61739962,2.95502078,0.072939312,,,,,1959.867547,,,,,0.785046415,46682,59464,0.713868698,0.856224132,67954,,,61135.10638,74772.89362,,,,79327,49886.48936,108767.5106,,,,59583,37865.7234,81300.2766,67494,63974.34043,71013.65957,,,,,,0.587986105,6940,11803,,,74.79250619,,,,,0.366924684,,67954,,,4.661016949,22,4720,,,3.226003018,18,557966,1.911933842,5.098475582,,,,,,,,,,,,,3.66744474,2.136421711,5.8719343,,,,22.52838691,92,405018,17.94373442,27.92732509,22.71503983,,,,,,,,,,,,,24.01836554,18.75854276,30.29589998,,,,17.77698769,72,405018,13.90939802,22.38717391,,,,,,,,,,,,,18.79424479,14.44201373,24.04600333,,,,14.33779119,80,557966,11.36897671,17.84462225,,,,,,,,,,,,,15.53270714,12.15338671,19.56087398,,,,24.81012658,,7900,,,111,85,0.75496126,45309,60015,,,0.629,,,,,50.94264931,,,,,0.729459554,22986,31511,0.710387418,0.748531689,0.121111111,3706,30600,0.103959087,0.138263135,0.859065088,27070,31511,0.840621071,0.877509106,85370,,,,,0.214489868,18311,85370,,,0.215309828,18381,85370,,,0.008433876,720,85370,,,0.020815275,1777,85370,,,0.012498536,1067,85370,,,0.003033853,259,85370,,,0.116809184,9972,85370,,,0.813482488,69447,85370,,,0.014177209,1105,77942,0.009050361,0.019304056,0.493826871,42158,85370,,,0.601784562,49436,82149,, -53,043,53043,WA,Lincoln County,2024,1,7806.948729,181,29720,5711.163916,9902.733542,0,,,,2,,,,2,,,,2,,,,2,8009.901754,5710.983644,10308.81986,,,,,2,,0.145,,,0.122,0.174,3.740340596,,,2.995884982,4.560635692,5.416315266,,,4.520268153,6.369891928,0.06518724,47,721,0.047168183,0.083206297,0,,,,,,,,,,,,,0.065116279,0.046074839,0.08415772,,,,,,,0.153,,,0.12,0.192,0.322,,,0.263,0.384,7.5,0.12135666,0.1,,,0.198,,,0.16,0.241,0.366954763,3991,10876,,,0.175339013,,,0.142434846,0.210693653,0.384615385,5,13,0.234541684,0.524881883,115.7,13,11232,,,14.11557124,32,2267,9.655040279,19.92697489,,,,,,,,,,,,,14.88706366,9.970100173,21.38030669,,,,,,,0.073103282,608,8317,0.062379878,0.083826687,0.000267094,3,11232,,,3744,0.000430997,5,11601,,,2320.2,0.001292992,15,11601,,,773.4,1964,,,,,,,,,1956,0.51,,,,,,,,,0.51,0.23,,,,,0.27,,,,0.23,0.924482802,7284,7879,0.909902772,0.939062833,0.643596987,1367,2124,0.557266219,0.729927755,0.053821313,250,4645,,,0.135,332,,0.084957447,0.185042553,,,,,,,,,,0.086956522,0,0.190123358,0.191499756,0.122927461,0.26007205,4.314146971,127043,29448,3.859296845,4.768997097,0.161290323,390,2418,0.071204087,0.251376558,16.91595442,19,11232,,,87.94430194,48,54580,64.84318583,116.6013855,,,,,,,,,,,,,92.91803014,68.02767626,123.939631,,,,8.3,,,,,0,,,,,0.107991361,500,4630,0.081683908,0.134298814,0.080374646,0.055860117,0.104889175,0.024838013,0.01154195,0.038134076,0.005183585,0,0.012459613,0.703259393,3107,4418,0.66438137,0.742137416,,,,,,,,,,,,,0.685696556,0.601590744,0.769802368,0.394,,4418,0.336845757,0.451154243,79.75574872,,,77.77727643,81.734221,,,,,,,,,,,,,79.3662297,77.27001872,81.46244068,,,,378.9708979,181,29720,315.0378302,442.9039657,,,,,,,,,,,,,380.614493,313.1881283,448.0408576,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.114,,,0.097,0.132,0.174,,,0.149,0.2,0.084,,,0.07,0.099,125.5,12,9562,,,0.1,1080,,,,0.12135666,1282.739894,10570,,,,,,,,,,,,,,,,,,,,,,,,,,0.286,,,0.269,0.302,0.08808115,521,5915,0.073783277,0.102379022,0.037608868,95,2526,0.025693974,0.049523761,0.000689596,8,11601,,,1450.125,,,,,,,,,,,2.982417745,,,,,,,,,2.990435011,2.934251637,,,,,,,,,2.991308825,0.067670993,,,,,5147.25365,,,,,0.746163062,46089,61768,0.627362518,0.864963606,68318,,,58697.91489,77938.08511,,,,,,,,,,82000,71132.42553,92867.57447,68081,64276.57447,71885.42553,,,,,,0.444183865,947,2132,,,,,,,,0.300813841,,68318,,,1.709401709,1,585,,,,,,,,,,,,,,,,,,,,,,,,,,21.40780619,10,54580,9.789012186,40.63868457,18.32172957,,,,,,,,,,,,,24.00076299,10.97467715,45.56092426,,,,,,,,,,,,,,,,,,,,,,,,,,,27.90660589,21,75251,17.27462889,42.6582115,,,,,,,,,,,,,30.69322849,18.9995922,46.91786015,,,,9.166666667,,1200,,,0,11,0.840262844,7033,8370,,,0.522,,,,,12.08246043,,,,,0.778464254,3528,4532,0.754157174,0.802771335,0.081642284,346,4238,0.056357189,0.10692738,0.844218888,3826,4532,0.818425791,0.870011985,11601,,,,,0.21446427,2488,11601,,,0.260925782,3027,11601,,,0.007413154,86,11601,,,0.022842858,265,11601,,,0.008275149,96,11601,,,0.001723989,20,11601,,,0.041548142,482,11601,,,0.892940264,10359,11601,,,0.003538977,37,10455,0,0.012273358,0.485733988,5635,11601,,,1,10876,10876,, -53,045,53045,WA,Mason County,2024,1,8457.59548,1194,184934,7622.079178,9293.111781,0,20399.81172,13201.68254,30114.14632,1,,,,2,,,,2,5652.735395,3840.759448,8023.606678,,8397.987607,7432.282195,9363.693019,,,,,2,,0.16,,,0.136,0.184,3.96872024,,,3.243078812,4.746804148,5.562008395,,,4.662272891,6.478802553,0.058297967,261,4477,0.051434462,0.065161473,0,,,,,,,,,,0.059019119,0.045702008,0.07233623,0.056281772,0.04767423,0.064889314,,,,0.056122449,0.023900325,0.088344574,0.171,,,0.139,0.205,0.346,,,0.289,0.406,7.9,0.06040613,0.109,,,0.201,,,0.166,0.238,0.665855217,43764,65726,,,0.169866122,,,0.140697137,0.201948607,0.340909091,15,44,0.262598167,0.41884339,335.7,227,67615,,,25.37885704,278,10954,22.39549656,28.36221752,,,,,,,,,,72.57203842,60.37495655,84.76912029,14.72359791,11.97207155,17.47512427,,,,18.49405548,10.11087223,31.02988259,0.107003537,5294,49475,0.092705665,0.12130141,0.000266213,18,67615,,,3756.388889,0.000366752,25,68166,,,2726.64,0.002772643,189,68166,,,360.6666667,1900,,,,,1847,,,,1910,0.35,,,,,0.27,0.33,,0.13,0.35,0.41,,,,,0.3,0.34,0.25,0.19,0.41,0.905079856,43919,48525,0.891938363,0.918221349,0.51975605,8011,15413,0.468325986,0.571186114,0.063323601,1605,25346,,,0.157,1992,,0.097425532,0.216574468,0.623152709,0.346408465,0.899896954,0.070422535,0,0.51234691,,,,0.33193953,0.242968387,0.420910674,0.137944664,0.080898451,0.194990877,4.311368664,138382,32097,3.87689874,4.745838587,0.165154123,2111,12782,0.119633089,0.210675157,5.767950899,39,67615,,,103.3680505,343,331824,92.42860432,114.3074967,190.1521217,114.4839988,296.9460926,,,,,,,56.8101122,34.70109242,87.73861072,108.9914131,96.40354715,121.5792791,,,,6,,,,,1,,,,,0.139064976,3510,25240,0.120254301,0.157875652,0.105400522,0.088783157,0.122017887,0.029120444,0.019480944,0.038759944,0.015649762,0.007706686,0.023592838,0.739847269,18892,25535,0.711767306,0.767927231,0.712737127,0.549895752,0.875578503,,,,,,,0.673913044,0.520333678,0.827492409,0.738257038,0.700300389,0.776213688,0.547,,25535,0.492165594,0.601834407,77.66004921,,,76.9457364,78.37436203,70.52991828,63.02817625,78.03166031,,,,,,,84.4254199,77.98656137,90.86427842,77.59436004,76.80424804,78.38447204,,,,411.5511384,1194,184934,385.3538229,437.7484538,795.6188889,582.4930223,1061.244102,,,,,,,243.1186659,167.351703,341.4289975,414.8890377,385.7255513,444.0525241,,,,42.17629692,24,56904,27.02314926,62.75498663,,,,,,,,,,,,,41.36219495,23.15010653,68.22065041,,,,4.480286738,20,4464,2.736675534,6.919439494,,,,,,,,,,,,,,,,,,,,,,0.123,,,0.106,0.14,0.178,,,0.157,0.201,0.09,,,0.077,0.103,161.4,94,58251,,,0.109,7110,,,,0.06040613,3666.591654,60699,,,33.56251265,68,202607,26.06260433,42.54848211,,,,,,,,,,,,,35.51623154,26.89964693,46.01539747,,,,0.332,,,0.317,0.346,0.130889766,4778,36504,0.113017425,0.148762106,0.041399632,562,13575,0.029484738,0.053314525,0.000498782,34,68166,,,2004.882353,,,,,,0.056462585,166,2940,0.021375892,0.091549278,2.58562613,,,,,,,,2.040151394,2.793459603,2.441714843,,,,,,,,1.872887222,2.708156962,0.058948889,,,,,2560.172599,,,,,0.787408787,52443,66602,0.686542342,0.888275231,78029,,,71721.25532,84336.74468,28281,11782.44681,44779.55319,96490,11527.2766,181452.7234,,,,57857,30865,84849,77763,72620.53192,82905.46809,,,,,,0.611933117,5087,8313,,,65.41428308,,,,,0.31954786,,78029,,,3.231492362,11,3404,,,5.054445165,23,455045,3.204084659,7.584149457,,,,,,,,,,,,,4.117756866,2.304677259,6.791613741,,,,22.14078437,84,331824,17.29213629,27.92758681,25.31462462,,,,,,,,,,,,,23.22251131,17.63382646,30.02048099,,,,17.17778099,57,331824,13.01028357,22.25580772,,,,,,,,,,,,,18.92212034,14.04436243,24.94645671,,,,14.28430155,65,455045,11.02432237,18.20651492,,,,,,,,,,,,,14.00037334,10.42419754,18.40790537,,,,10.5,,6000,,,48,15,0.742274401,37303,50255,,,0.549,,,,,26.57693764,,,,,0.791862837,20183,25488,0.765372873,0.818352802,0.130810635,3208,24524,0.108472555,0.153148714,0.902306968,22998,25488,0.882742865,0.921871071,68166,,,,,0.192104568,13095,68166,,,0.244916821,16695,68166,,,0.013731186,936,68166,,,0.047002905,3204,68166,,,0.015873016,1082,68166,,,0.005046504,344,68166,,,0.120529296,8216,68166,,,0.778790013,53087,68166,,,0.025085264,1574,62746,0.019052288,0.031118241,0.482674647,32902,68166,,,0.694976113,45678,65726,, -53,047,53047,WA,Okanogan County,2024,1,8984.297227,741,116758,7903.401358,10065.1931,0,21354.41559,16149.90264,26558.92853,,,,,2,,,,2,5382.946175,3790.090876,7419.682229,,8223.956183,6852.824421,9595.087946,,,,,2,,0.197,,,0.169,0.227,4.400061435,,,3.570424643,5.270923886,5.464379966,,,4.524534551,6.427086573,0.066318698,216,3257,0.057772666,0.07486473,0,0.094972067,0.064602158,0.125341976,,,,,,,0.061814556,0.046910814,0.076718299,0.065124772,0.053193487,0.077056057,,,,,,,0.178,,,0.145,0.214,0.317,,,0.259,0.377,7.5,0.053809885,0.134,,,0.22,,,0.18,0.261,0.533559757,22465,42104,,,0.16191629,,,0.131648169,0.19547459,0.348837209,15,43,0.269780573,0.427139369,246.3,105,42634,,,29.69325153,242,8150,25.95209271,33.43441036,37.10094909,26.85014082,49.97473495,,,,,,,35.12705531,28.38623632,42.98661948,19.84024736,15.65761295,24.79690505,,,,45.75163399,25.01284404,76.76346772,0.142938353,4526,31664,0.125066012,0.160810693,0.000820941,35,42634,,,1218.114286,0.000765182,33,43127,,,1306.878788,0.003663598,158,43127,,,272.9556962,1367,,,,,1559,,,446,1298,0.31,,,,,0.16,0.33,,0.33,0.32,0.25,,,,,0.29,0.3,,0.16,0.25,0.860131901,25693,29871,0.843351996,0.876911805,0.513606506,4926,9591,0.459530987,0.567682025,0.064104527,1256,19593,,,0.207,1966,,0.13312766,0.28087234,0.161559889,0.102816424,0.220303354,,,,,,,0.410418964,0.334334367,0.48650356,0.200595091,0.143229627,0.257960554,4.23431826,110774,26161,3.798225021,4.670411499,0.285669814,2753,9637,0.228558985,0.342780643,12.1968382,52,42634,,,103.1361918,218,211371,89.44507373,116.8273099,172.4450899,122.032409,236.6943589,,,,,,,38.76764498,22.58358183,62.07075509,115.9080072,97.83456114,133.9814532,,,,7.5,,,,,0,,,,,0.153201006,2740,17885,0.130933803,0.17546821,0.108108108,0.086671385,0.129544831,0.04752586,0.034455658,0.060596062,0.010623428,0.005789388,0.015457467,0.662019313,11586,17501,0.630218447,0.693820179,0.830827068,0.76275164,0.898902495,,,,,,,0.636709996,0.537263314,0.736156677,0.693208652,0.655310214,0.73110709,0.236,,17501,0.191898795,0.280101205,76.7992653,,,75.90027001,77.69826058,66.78621756,63.56556747,70.00686765,,,,,,,90.14460806,75.5248841,104.764332,77.39588667,76.32577379,78.46599956,,,,427.7112614,741,116758,393.6790649,461.7434579,928.0503248,761.9951665,1094.105483,,,,,,,247.7819338,177.8125937,336.1441718,402.353963,362.2575622,442.4503637,,,,63.51894982,27,42507,41.85938818,92.41673711,,,,,,,,,,63.97952655,30.68066984,117.6606273,62.82393592,32.46204444,109.740773,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.138,,,0.12,0.159,0.187,,,0.163,0.213,0.106,,,0.09,0.122,89.6,32,35726,,,0.134,5610,,,,0.053809885,2212.662462,41120,,,25.88296195,33,127497,17.81664006,36.34930176,,,,,,,,,,,,,23.19222694,13.96323564,36.21753524,,,,0.339,,,0.326,0.35,0.179776786,4027,22400,0.154755509,0.204798062,0.055280528,536,9696,0.038599677,0.071961379,0.001599926,69,43127,,,625.0289855,,,,,,0.089219331,144,1614,0.028250504,0.150188158,2.571780946,,,,,,,,2.516174094,2.897852654,2.423457638,,,,,,,,2.369893336,2.81835408,0.202615095,,,,,-1869.161575,,,,,0.947889547,46239,48781,0.849262076,1.046517018,58661,,,53381.51064,63940.48936,47448,36607.82979,58288.17021,69071,54232.19149,83909.80851,,,,50282,41997.57447,58566.42553,60824,56006.80851,65641.19149,,,,,,0.619650441,7587,12244,,,,,,,,0.350334976,,58661,,,5.99280863,15,2503,,,4.075519374,12,294441,2.105880332,7.119112165,,,,,,,,,,,,,,,,,,,25.09086407,49,211371,18.30144843,33.57355022,23.18198807,50.61030957,24.26961064,93.07416125,,,,,,,,,,26.45462456,17.71707725,37.99325371,,,,19.39717369,41,211371,13.91974673,26.31445637,,,,,,,,,,,,,24.9422294,17.27321893,34.85426556,,,,19.01909041,56,294441,14.3668165,24.69787088,55.10892116,32.1029774,88.23472127,,,,,,,,,,17.28273507,11.89663959,24.27138569,,,,27.04545455,,4400,,,83,36,0.723631418,21282,29410,,,0.428,,,,,21.09290962,,,,,0.697853573,11867,17005,0.677174995,0.71853215,0.121469803,1957,16111,0.099199938,0.143739669,0.843104969,14337,17005,0.821684252,0.864525687,43127,,,,,0.224638857,9688,43127,,,0.231919679,10002,43127,,,0.006793888,293,43127,,,0.122846477,5298,43127,,,0.01164004,502,43127,,,0.003014353,130,43127,,,0.225148979,9710,43127,,,0.634799546,27377,43127,,,0.06051801,2416,39922,0.04697804,0.074057981,0.487722309,21034,43127,,,0.806075432,33939,42104,, -53,049,53049,WA,Pacific County,2024,1,8428.769981,496,60980,6962.674416,9894.865546,0,,,,2,,,,2,,,,2,,,,2,8775.29555,7021.092685,10529.49842,,,,,2,,0.162,,,0.138,0.188,4.144675155,,,3.355935776,5.047468831,5.764425846,,,4.819802555,6.813378869,0.077246012,92,1191,0.06208315,0.092408874,0,,,,,,,,,,0.082568807,0.046032674,0.119104941,0.071676301,0.054485919,0.088866683,,,,,,,0.157,,,0.126,0.193,0.352,,,0.289,0.43,7.8,0.03922966,0.125,,,0.2,,,0.161,0.242,0.547656752,12796,23365,,,0.150676867,,,0.121927196,0.188188527,0.375,3,8,0.179126284,0.556186502,121.1,29,23948,,,16.73101673,52,3108,12.49552355,21.94050249,,,,,,,,,,31.61397671,19.03367914,49.36914072,13.65348399,9.143952513,19.60868053,,,,,,,0.104556295,1666,15934,0.089066933,0.120045656,0.000208786,5,23948,,,4789.6,0.0002903,7,24113,,,3444.714286,0.005100983,123,24113,,,196.0406504,1943,,,,,,,,,1984,0.4,,,,,0.44,0.29,,0.43,0.4,0.35,,,,,0.27,0.25,,0.23,0.35,0.913043478,16842,18446,0.892969769,0.933117188,0.539190751,2332,4325,0.464014106,0.614367397,0.068249258,598,8762,,,0.184,640,,0.123234043,0.244765957,0.246268657,0,0.51935754,,,,,,,0.267326733,0.145746609,0.388906856,0.10697888,0.069251029,0.144706731,4.767727597,113696,23847,4.237115212,5.298339981,0.257223796,908,3530,0.191483006,0.322964586,10.43928512,25,23948,,,102.5958519,116,113065,83.92531195,121.2663919,,,,,,,,,,,,,113.7397634,91.98402931,135.4954975,,,,5.6,,,,,0,,,,,0.131755018,1280,9715,0.105774879,0.157735157,0.111398964,0.086698459,0.136099469,0.020072054,0.0073656,0.032778507,0.007205353,0.001639799,0.012770906,0.686394718,5822,8482,0.641619758,0.731169678,,,,,,,,,,,,,0.647276395,0.597922147,0.696630644,0.34,,8482,0.282696917,0.397303083,77.35468045,,,76.18178251,78.5275784,,,,,,,,,,,,,76.55769327,75.22452783,77.89085872,,,,418.362522,496,60980,373.1718389,463.553205,,,,,,,,,,,,,433.6445902,381.872644,485.4165364,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.12,,,0.102,0.138,0.176,,,0.152,0.203,0.093,,,0.079,0.109,181.5,39,21482,,,0.125,2870,,,,0.03922966,820.6844877,20920,,,24.49461839,17,69403,14.26901787,39.21825687,,,,,,,,,,,,,24.7559768,13.53432288,41.53632254,,,,0.327,,,0.313,0.343,0.123075683,1527,12407,0.104011853,0.142139513,0.041014571,152,3706,0.027908188,0.054120954,0.000705014,17,24113,,,1418.411765,,,,,,,,,,,2.873434885,,,,,,,,2.419746465,3.120576167,2.660605635,,,,,,,,2.343398714,2.870431791,0.077641311,,,,,172.56282,,,,,0.760061164,46724,61474,0.646530323,0.873592006,55615,,,48081.21277,63148.78723,84500,9756.680851,159243.3192,41385,13289.68085,69480.31915,,,,70594,51026.17021,90161.82979,60147,53138.65957,67155.34043,,,,,,0.632743363,1859,2938,,,,,,,,0.448332285,,55615,,,4.634994206,4,863,,,,,,,,,,,,,,,,,,,,,,,,,,19.90820771,26,113065,11.98604154,31.08913242,22.99562199,,,,,,,,,,,,,24.82690586,14.46258756,39.75028129,,,,15.92004599,18,113065,9.435228214,25.16053621,,,,,,,,,,,,,19.49824516,11.55589582,30.81563355,,,,12.88975394,20,155162,7.87339657,19.90717953,,,,,,,,,,,,,14.18149158,8.404850685,22.4128707,,,,25.29411765,,1700,,,18,25,0.785040469,14064,17915,,,0.419,,,,,9.460465559,,,,,0.821311629,8779,10689,0.795616879,0.847006379,0.113460796,1175,10356,0.086023156,0.140898435,0.885115539,9461,10689,0.85946495,0.910766129,24113,,,,,0.148301746,3576,24113,,,0.337909012,8148,24113,,,0.008418695,203,24113,,,0.026914942,649,24113,,,0.020611289,497,24113,,,0.002280927,55,24113,,,0.104839713,2528,24113,,,0.813751918,19622,24113,,,0.023022092,520,22587,0.011979296,0.034064889,0.501098992,12083,24113,,,0.629231757,14702,23365,, -53,051,53051,WA,Pend Oreille County,2024,1,11672.42743,284,37821,9183.908696,14160.94617,0,,,,2,,,,2,,,,2,,,,2,11031.50121,8450.999693,13612.00272,,,,,2,,0.153,,,0.129,0.179,4.071146729,,,3.281617148,4.988954034,5.831659382,,,4.842467745,6.894616438,0.067155067,55,819,0.050013195,0.084296939,0,,,,,,,,,,,,,0.068115942,0.049316851,0.086915033,,,,,,,0.166,,,0.134,0.202,0.329,,,0.264,0.402,7.4,0.100669159,0.113,,,0.2,,,0.162,0.241,0.624580255,8370,13401,,,0.168536138,,,0.135333215,0.206957494,0.615384615,8,13,0.498967911,0.709082703,158.4,22,13886,,,22.01386058,54,2453,16.53748959,28.72331284,,,,,,,,,,,,,21.27659575,15.33429875,28.75977648,,,,,,,0.079691517,806,10114,0.067776623,0.09160641,0.00057612,8,13886,,,1735.75,0.000282107,4,14179,,,3544.75,0.003455815,49,14179,,,289.3673469,1444,,,,,,,,,1455,0.36,,,,,,,,,0.36,0.25,,,,,0.17,,,,0.25,0.934324162,9304,9958,0.917262161,0.951386162,0.548770492,1339,2440,0.452496206,0.645044778,0.069145845,357,5163,,,0.238,651,,0.165319149,0.310680851,0.301369863,0,0.822863014,,,,,,,,,,0.130276186,0.077506374,0.183045997,4.006107964,117403,29306,3.345391011,4.666824918,0.275636083,715,2594,0.169535721,0.381736446,10.08209708,14,13886,,,125.1637316,86,68710,100.1148294,154.5761903,,,,,,,,,,,,,122.3848507,96.0984309,153.6429728,,,,9.1,,,,,0,,,,,0.126724138,735,5800,0.097254148,0.156194128,0.090086957,0.062943934,0.117229979,0.03362069,0.018874769,0.048366611,0.017241379,0.006368139,0.02811462,0.770911361,3705,4806,0.73377199,0.808050731,,,,,,,,,,,,,0.748601514,0.6793323,0.817870728,0.431,,4806,0.352560535,0.509439465,74.92486173,,,73.11445551,76.73526794,,,,,,,,,,,,,75.19511166,73.33301519,77.05720814,,,,472.7590745,284,37821,406.6697528,538.8483961,,,,,,,,,,,,,464.3316666,394.7058791,533.9574541,,,,93.47382733,11,11768,46.66179782,167.2504972,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.119,,,0.102,0.137,0.181,,,0.156,0.207,0.086,,,0.073,0.1,75.1,9,11986,,,0.113,1500,,,,0.100669159,1308.799731,13001,,,33.5297217,14,41754,18.33101086,56.25717565,,,,,,,,,,,,,32.76629441,16.93082246,57.23612224,,,,0.312,,,0.295,0.327,0.096288327,716,7436,0.080798965,0.111777689,0.03485064,98,2812,0.024127236,0.045574044,0.000846322,12,14179,,,1181.583333,,,,,,,,,,,2.972535228,,,,,,,,,2.925321633,2.855207562,,,,,,,,,2.857312229,0.1410864,,,,,-1655.629533,,,,,0.562001064,41184,73281,0.42645406,0.697548069,59332,,,50804.51064,67859.48936,,,,,,,,,,55755,24335.42553,87174.57447,62222,53627.78723,70816.21277,,,,,,0.614258434,965,1571,,,,,,,,0.346372952,,59332,,,3.333333333,2,600,,,,,,,,,,,,,,,,,,,,,,,,,,39.25412734,22,68710,23.63354891,61.30018233,32.01862902,,,,,,,,,,,,,37.75066842,21.57776879,61.30472042,,,,23.28627565,16,68710,13.31011855,37.81545277,,,,,,,,,,,,,24.80774002,13.88470377,40.91659451,,,,21.07015308,20,94921,12.87019689,32.54114253,,,,,,,,,,,,,17.90830946,10.02314486,29.53703304,,,,33.07692308,,1300,,,16,27,0.787931829,8553,10855,,,0.42,,,,,13.7196323,,,,,0.760502005,4363,5737,0.730974212,0.790029797,0.098108968,524,5341,0.069490712,0.126727225,0.811573993,4656,5737,0.765622687,0.8575253,14179,,,,,0.196840398,2791,14179,,,0.273573595,3879,14179,,,0.006488469,92,14179,,,0.03744975,531,14179,,,0.011354821,161,14179,,,0.001763171,25,14179,,,0.051555117,731,14179,,,0.870935891,12349,14179,,,0.000308285,4,12975,0,0.007459213,0.488609916,6928,14179,,,1,13401,13401,, -53,053,53053,WA,Pierce County,2024,1,7194.307786,11251,2592966,7002.452484,7386.163088,0,13276.12052,10861.84429,15690.39675,,4221.65978,3675.160569,4768.158991,,11560.37673,10629.35119,12491.40228,,5825.351261,5309.841405,6340.861116,,6804.409295,6572.00094,7036.817649,,17731.43137,15557.14934,19905.7134,,,0.15,,,0.13,0.172,3.901072195,,,3.282532774,4.566515292,5.831987599,,,5.135485385,6.54593918,0.06875493,5404,78598,0.066985904,0.070523956,0,0.08353222,0.064798687,0.102265752,0.076689599,0.069270575,0.084108624,0.122338506,0.113711345,0.130965667,0.071153695,0.066688285,0.075619105,0.057154512,0.054988533,0.059320491,0.073754414,0.063607634,0.083901193,0.082819986,0.075753625,0.089886348,0.142,,,0.117,0.171,0.338,,,0.303,0.375,8.3,0.073246224,0.084,,,0.187,,,0.161,0.218,0.812294682,748229,921130,,,0.178803269,,,0.155952412,0.203697466,0.318965517,111,348,0.292302251,0.345806822,556.3,5150,925708,,,14.20336462,2597,182844,13.65708961,14.74963963,16.02699283,11.34165401,21.99829984,5.222402305,3.965589022,6.751166013,18.00805624,15.67053543,20.34557705,24.79732952,23.05707134,26.5375877,9.675183205,9.068491598,10.28187481,34.54498582,28.69589061,40.39408103,14.71165163,13.04687153,16.37643173,0.071744047,56594,788832,0.0657866,0.077701494,0.000717289,664,925708,,,1394.138554,0.000857254,795,927380,,,1166.515723,0.00577541,5356,927380,,,173.1478716,2324,,,,,5123,2267,2873,2617,2254,0.34,,,,,0.26,0.19,0.26,0.21,0.36,0.43,,,,,0.46,0.36,0.27,0.3,0.45,0.923582941,574657,622204,,,0.668946116,180483,269802,,,0.051487707,23354,453584,,,0.101,20893,,0.079553192,0.122446809,0.143232096,0.069310296,0.217153896,0.150398262,0.11153077,0.189265754,0.149489582,0.108351028,0.190628136,0.137103728,0.116285786,0.157921671,0.076917367,0.066487632,0.087347101,3.767304179,162902,43241,3.675355166,3.859253192,0.202407488,42861,211756,0.187947477,0.216867498,6.740786512,624,925708,,,80.4406998,3630,4512641,77.82385119,83.05754842,161.8029471,129.0603674,200.3230584,45.27737313,37.72301185,52.8317344,103.0085381,91.87761083,114.1394654,41.40611308,35.87132107,46.94090509,89.59951925,86.18678273,93.01225577,82.43909812,62.90971675,106.1154606,8.3,,,,,1,,,,,0.163806647,54220,331000,0.158032116,0.169581177,0.132730384,0.126849059,0.138611709,0.030347432,0.027361718,0.033333147,0.009909366,0.008218335,0.011600396,0.726870778,324848,446913,0.719125927,0.734615629,0.714588634,0.65300097,0.776176299,0.733901042,0.708160422,0.759641663,0.726010237,0.691585406,0.760435067,0.727181391,0.705842948,0.748519835,0.739567188,0.728416889,0.750717487,0.463,,446913,0.452210605,0.473789395,78.14061133,,,77.95455859,78.32666407,71.5825209,69.75496801,73.41007379,84.01226808,83.16189187,84.86264429,73.80632598,73.00195971,74.61069224,81.75277717,80.52951689,82.97603745,78.26791942,78.0545901,78.48124874,68.3722384,66.77669733,69.96777947,366.9056316,11251,2592966,359.9830256,373.8282376,668.5841358,580.0373337,757.1309379,218.0063439,198.3693432,237.6433446,544.174689,511.0519234,577.2974546,285.2139173,260.0536935,310.3741411,358.6489728,350.5636167,366.7343289,848.7956768,755.2882492,942.3031044,47.98231663,445,927425,43.52413993,52.44049333,98.02960494,47.00900594,180.2799338,34.83578797,20.64589573,55.0555636,101.0348417,78.14033926,128.5410912,51.55036233,41.28972698,63.58718149,36.57578321,31.26187545,41.88969098,126.3111648,80.07044339,189.5287654,4.944937116,392,79273,4.455413317,5.434460916,,,,,,,10.40732101,7.902715177,13.45387578,5.673528935,4.422794141,7.168162493,3.46955357,2.928548761,4.010558378,,,,9.93204391,7.522433066,12.8681149,0.111,,,0.097,0.127,0.182,,,0.162,0.204,0.094,,,0.082,0.107,216.2,1667,771029,,,0.084,76060,,,,0.073246224,58247.22865,795225,,,26.88937972,738,2744578,24.94934869,28.82941074,89.21743564,59.28433806,128.944035,8.974528177,5.227993385,14.36908899,47.26978851,38.15282004,57.90868444,11.71212822,8.288198997,16.07581104,28.63880169,26.15079226,31.12681113,,,,0.326,,,0.314,0.338,0.08702452,49801,572264,0.078684095,0.095364946,0.032556167,7370,226378,0.025407231,0.039705103,0.001351118,1253,927380,,,740.1276935,,,,,,0.078978786,3440,43556,0.064542407,0.093415165,3.038761859,,,,,,2.958957977,2.611794743,2.779698367,3.228549182,2.952704609,,,,,,2.957879869,2.38340662,2.669222871,3.160796068,0.069662821,,,,,4603.077813,,,,,0.803546391,56736,70607,0.781116209,0.825976573,92793,,,89586.70213,95999.29787,73950,58346.25532,89553.74468,87577,81463.46809,93690.53192,67844,63638.04255,72049.95745,77913,74281.34043,81544.65957,97089,95469.76596,98708.23404,,,,,,0.407489205,53507,131309,,,48.67435629,,,,,0.283523542,,92793,,,4.426812865,260,58733,,,4.792609475,298,6217907,4.248457786,5.336761163,,,,4.116332396,2.397915312,6.590646922,19.27012122,15.37060337,23.8577213,4.579547455,3.132407069,6.464954595,3.187134681,2.641350631,3.732918731,,,,17.6486951,819,4512641,16.41909387,18.87829632,18.14901739,31.41595139,18.3009494,50.29998148,8.147639977,5.322308939,11.93818034,13.97233905,10.15232294,18.75721301,11.46603287,8.263707955,15.4987455,19.30619865,17.72760988,20.88478741,24.91503333,14.76622778,39.37649417,13.05222374,589,4512641,11.99812102,14.10632646,19.26225561,9.237000282,35.42397388,4.921453601,2.754500221,8.117189283,24.73457298,19.58259436,30.82665797,9.436742052,6.98135372,12.47587345,13.39932388,12.07957481,14.71907294,19.23578956,10.51638515,32.27438634,9.778209935,608,6217907,9.00095473,10.55546514,19.5590824,10.69313235,32.81681679,6.053429995,3.917460719,8.936056819,11.24090404,8.316082694,14.86107128,8.872873194,6.802781,11.37462299,10.07231876,9.10206494,11.04257259,12.29243708,6.351681614,21.47241377,9.252437703,,92300,,,260,594,0.716373375,464081,647820,,,0.709,,,,,151.1980012,,,,,0.645567509,220644,341783,0.63763337,0.653501649,0.142533545,47696,334630,0.136748494,0.148318595,0.927287197,316931,341783,0.923325939,0.931248455,927380,,,,,0.227409476,210895,927380,,,0.149338998,138494,927380,,,0.073896353,68530,927380,,,0.018353857,17021,927380,,,0.076434687,70884,927380,,,0.019064461,17680,927380,,,0.125671246,116545,927380,,,0.630281007,584510,927380,,,0.023798083,20503,861540,,,0.49661843,460554,927380,,,0.067816703,62468,921130,, -53,055,53055,WA,San Juan County,2024,1,3524.433279,169,46622,2327.20377,4721.662788,0,,,,2,,,,2,,,,2,,,,2,3625.893463,2215.135829,5036.651096,,,,,2,,0.12,,,0.098,0.143,3.338035593,,,2.65218747,4.125129971,5.324984342,,,4.441850045,6.267328438,0.034690799,23,663,0.020761166,0.048620433,1,,,,,,,,,,,,,0.03187251,0.01650588,0.04723914,,,,,,,0.118,,,0.088,0.154,0.24,,,0.188,0.297,,,0.081,,,0.142,,,0.112,0.176,0.814650326,14491,17788,,,0.165183641,,,0.134410979,0.200616884,0.8,4,5,0.671311679,0.877725163,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.110779188,1335,12051,0.095289827,0.12626855,0.000646656,12,18557,,,1546.416667,0.000696603,13,18662,,,1435.538462,0.00455471,85,18662,,,219.5529412,571,,,,,,,,,567,0.36,,,,,,,,,0.36,0.38,,,,,,0.44,,0.3,0.38,0.957962213,14197,14820,0.949967886,0.96595654,0.690574985,2330,3374,0.638689235,0.742460735,0.039368302,349,8865,,,0.121,277,,0.078106383,0.163893617,,,,,,,,,,0.318181818,0.16237741,0.473986226,0.105263158,0.070121871,0.140404445,4.966877119,159700,32153,4.542024574,5.391729663,0.194918966,445,2283,0.149865064,0.239972869,13.47200517,25,18557,,,74.30779432,65,87474,57.34918688,94.71138374,,,,,,,,,,,,,76.60347962,58.31411793,98.81290751,,,,5.9,,,,,1,,,,,0.189716312,1605,8460,0.170110054,0.20932257,0.148913044,0.131391255,0.166434832,0.030732861,0.022794914,0.038670807,0.021867612,0.014647443,0.029087782,0.618430792,5013,8106,0.595995598,0.640865986,,,,,,,,,,0.641765705,0.534276349,0.74925506,0.607569141,0.582089046,0.633049236,0.082,,8106,0.064898911,0.09910109,86.26851107,,,84.76961395,87.7674082,,,,,,,,,,,,,86.12930061,84.50382511,87.75477612,,,,173.0469911,169,46622,139.7088397,206.3851425,,,,,,,,,,,,,172.1480315,135.6961305,208.5999324,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.097,,,0.082,0.114,0.158,,,0.135,0.182,0.07,,,0.058,0.082,129.4,22,17002,,,0.081,1440,,,,,,15769,,,,,,,,,,,,,,,,,,,,,,,,,,0.267,,,0.25,0.283,0.122704422,1196,9747,0.104832081,0.140576762,0.063348416,154,2431,0.044284587,0.082412246,0.000643018,12,18662,,,1555.166667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.02444664,,,,,1103.68,,,,,0.65954023,45904,69600,0.588418067,0.730662393,84024,,,73868.93617,94179.06383,117857,23609,212105,50417,18724.57447,82109.42553,70556,38151.06383,102960.9362,51771,36996.53192,66545.46809,77759,73013.29787,82504.70213,,,,,,0.343678161,598,1740,,,50.98143721,,,,,0.360825478,,84024,,,11.85770751,6,506,,,,,,,,,,,,,,,,,,,,,,,,,,17.63904273,18,87474,9.643428798,29.59531647,20.57754304,,,,,,,,,,,,,16.49601388,8.234750692,29.51592549,,,,12.57516519,11,87474,6.277477156,22.50044415,,,,,,,,,,,,,12.98364061,6.226160343,23.87737736,,,,,,,,,,,,,,,,,,,,,,,,,,,17.27272727,,1100,,,6,13,0.937953092,13197,14070,,,0.452,,,,,0.041332006,,,,,0.77524844,6709,8654,0.759780884,0.790715996,0.170818071,1399,8190,0.151455044,0.190181098,0.906748325,7847,8654,0.892539537,0.920957112,18662,,,,,0.12528132,2338,18662,,,0.36094738,6736,18662,,,0.007180367,134,18662,,,0.011145644,208,18662,,,0.018111671,338,18662,,,0.001607545,30,18662,,,0.070464045,1315,18662,,,0.873379059,16299,18662,,,0.006057835,106,17498,0.000551149,0.011564521,0.5077698,9476,18662,,,0.800876996,14246,17788,, -53,057,53057,WA,Skagit County,2024,1,6563.491894,1671,356856,6055.333441,7071.650348,0,14418.70299,9238.335073,21453.88713,1,,,,2,,,,2,4806.588393,3854.419457,5758.757329,,6972.15095,6330.527692,7613.774209,,,,,2,,0.149,,,0.126,0.177,3.876333477,,,3.141898254,4.663399639,5.199884179,,,4.371821827,6.044470971,0.060139719,594,9877,0.055450981,0.064828456,0,0.087209302,0.045043647,0.129374958,0.06,0.027086003,0.092913997,,,,0.068835616,0.05965262,0.078018613,0.055027842,0.049308073,0.06074761,,,,0.056277056,0.026557794,0.085996319,0.137,,,0.108,0.173,0.299,,,0.248,0.353,8.2,0.067530723,0.094,,,0.17,,,0.138,0.205,0.761671672,98654,129523,,,0.169833345,,,0.1389976,0.204488751,0.341772152,27,79,0.284485692,0.398989961,295.3,386,130696,,,17.08883772,423,24753,15.46029778,18.71737765,28.46975089,16.27292252,46.23309181,,,,,,,29.92874109,26.23348748,33.62399471,9.957428386,8.296068501,11.61878827,,,,,,,0.088051117,8971,101884,0.077327713,0.098774521,0.000818694,107,130696,,,1221.457944,0.00079281,104,131179,,,1261.336539,0.005633524,739,131179,,,177.5087957,1726,,,,,2109,,7945,1082,1667,0.45,,,,,0.25,0.34,,0.27,0.46,0.47,,,,,0.43,0.4,0.3,0.34,0.47,0.907821533,83545,92028,0.899495014,0.916148051,0.615922005,19837,32207,0.582822812,0.649021197,0.052771346,3259,61757,,,0.133,3533,,0.09487234,0.17112766,0.4864,0.29564084,0.67715916,0.084805654,0,0.220201666,0.371134021,0.080232227,0.662035815,0.307405784,0.241512502,0.373299066,0.091524973,0.068118291,0.114931656,4.092333628,148077,36184,3.833816671,4.350850586,0.219789014,6042,27490,0.186988588,0.25258944,9.717206341,127,130696,,,80.37051116,518,644515,73.44920721,87.29181511,200.5539108,124.1460318,306.5679566,,,,,,,28.81868109,20.0732673,40.07980911,93.55539951,84.86289503,102.247904,,,,5.5,,,,,1,,,,,0.162488582,8005,49265,0.148669694,0.17630747,0.121451266,0.108375144,0.134527388,0.044250482,0.036036178,0.052464786,0.007002943,0.004429981,0.009575906,0.761900594,43519,57119,0.744500299,0.779300888,0.738341969,0.492300341,0.984383597,0.768072289,0.710379229,0.82576535,0.967661692,0.898384505,1,0.727659575,0.692422672,0.762896477,0.781834725,0.763393586,0.800275865,0.348,,57119,0.322306892,0.373693108,79.12699953,,,78.66438205,79.58961701,70.95768845,67.02475245,74.89062445,84.82134447,80.42430625,89.21838269,,,,88.18795647,83.0646079,93.31130503,78.68177866,78.14028589,79.22327143,,,,324.5111366,1671,356856,307.6887438,341.3335293,569.9967899,401.3303426,785.6654915,,,,,,,239.2385285,194.1066133,284.3704438,339.6677374,319.8832665,359.4522082,,,,30.27575485,37,122210,21.31692543,41.73113996,,,,,,,,,,,,,35.96863535,23.27700431,53.09680123,,,,3.732472511,37,9913,2.628005101,5.144721693,,,,,,,,,,,,,3.538684253,2.217674581,5.357610485,,,,,,,0.11,,,0.095,0.128,0.166,,,0.144,0.191,0.082,,,0.07,0.095,100,111,110980,,,0.094,12090,,,,0.067530723,7894.409,116901,,,24.82786864,97,390690,20.13372894,30.28789422,,,,,,,,,,,,,28.19754995,22.39292485,35.04697997,,,,0.297,,,0.283,0.31,0.10737597,7995,74458,0.093078098,0.121673843,0.037590328,1082,28784,0.028058413,0.047122243,0.001295939,170,131179,,,771.6411765,,,,,,0.079196787,493,6225,0.047358927,0.111034647,2.785719027,,,,,,3.255890528,,2.386989977,3.042820055,2.878687466,,,,,,3.557866185,,2.510920482,3.111925608,0.141674712,,,,,3019.210286,,,,,0.716779656,49270,68738,0.674269102,0.75929021,79118,,,73919.53192,84316.46809,84706,56335.44681,113076.5532,99594,92275.87234,106912.1277,,,,70133,63629.85106,76636.14894,83524,80620.34043,86427.65957,,,,,,0.5187754,9574,18455,,,61.08116406,,,,,0.383199778,,79118,,,4.33193448,32,7387,,,3.033564708,27,890042,1.999138258,4.413677382,,,,,,,,,,6.647047804,3.318182315,11.89340463,2.27294768,1.272151562,3.748881539,,,,18.64616586,124,644515,15.20200892,22.0903228,19.23927294,,,,,,,,,,7.889681973,3.607664993,14.97707398,20.40145375,16.15085435,24.65205314,,,,11.94696788,77,644515,9.428360217,14.93166001,,,,,,,,,,,,,13.87563229,10.73141301,17.65320642,,,,8.763631379,78,890042,6.927286938,10.93740858,,,,,,,,,,,,,9.243320564,7.070407822,11.87343196,,,,18.01587302,,12600,,,154,73,0.788054095,73423,93170,,,0.654,,,,,82.63551044,,,,,0.703329136,35746,50824,0.687739156,0.718919116,0.136074925,6727,49436,0.123091158,0.149058692,0.91877853,46696,50824,0.909874971,0.927682089,131179,,,,,0.20808971,27297,131179,,,0.225295207,29554,131179,,,0.008263518,1084,131179,,,0.026665854,3498,131179,,,0.025629102,3362,131179,,,0.003788716,497,131179,,,0.198880918,26089,131179,,,0.724399485,95026,131179,,,0.033557596,4105,122327,0.027994856,0.039120335,0.50055268,65662,131179,,,0.341012793,44169,129523,, -53,059,53059,WA,Skamania County,2024,1,6921.980383,144,33336,4647.850268,9196.110498,0,,,,2,,,,2,,,,2,,,,2,7859.743251,5116.797389,10602.68911,,,,,2,,0.148,,,0.125,0.174,3.968680548,,,3.190072455,4.818646773,5.334754114,,,4.445973305,6.273322117,0.061102832,41,671,0.042979648,0.079226015,0,,,,,,,,,,,,,0.06,0.040152113,0.079847887,,,,,,,0.158,,,0.125,0.195,0.294,,,0.238,0.353,8.9,0.010192563,0.086,,,0.182,,,0.147,0.219,0.715437022,8611,12036,,,0.17375256,,,0.140872029,0.209582312,0.25,4,16,0.11917111,0.394165016,156.1,19,12170,,,14.77832512,30,2030,9.970873902,21.09697803,,,,,,,,,,,,,14.24148607,9.027880518,21.36922161,,,,,,,0.076765499,712,9275,0.064850605,0.088680392,,0,12170,,,,8.02568E-05,1,12460,,,12460,0.001605136,20,12460,,,623,1946,,,,,,,,,1783,0.35,,,,,,,,,0.35,0.3,,,,,,,,,0.3,0.934193266,8546,9148,0.916844949,0.951541584,0.571214953,1528,2675,0.491353731,0.651076175,0.052830189,294,5565,,,0.13,274,,0.079957447,0.180042553,,,,,,,,,,0.054982818,0,0.117591116,0.095061728,0.019841763,0.170281694,4.984638554,148941,29880,3.843071122,6.126205986,0.320429105,687,2144,0.213147917,0.427710292,4.108463435,5,12170,,,73.18574209,44,60121,53.17687224,98.24844277,,,,,,,,,,,,,76.49646204,54.650194,104.1664696,,,,6.1,,,,,0,,,,,0.136690648,665,4865,0.097376484,0.176004812,0.102066116,0.063741386,0.140390846,0.029804728,0.01444292,0.045166536,0.010277492,0.003697741,0.016857244,0.750680457,4137,5511,0.706673933,0.794686982,,,,,,,,,,,,,0.625783972,0.580626741,0.670941204,0.505,,5511,0.433619942,0.576380058,81.62745422,,,79.4089435,83.84596493,,,,,,,,,,,,,80.67531462,78.22148431,83.12914493,,,,275.9311344,144,33336,224.0257667,327.836502,,,,,,,,,,,,,295.9735519,236.9373756,355.0097283,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.117,,,0.1,0.136,0.176,,,0.152,0.2,0.083,,,0.07,0.096,56,6,10721,,,0.086,1030,,,,0.010192563,112.7908971,11066,,,,,,,,,,,,,,,,,,,,,,,,,,0.334,,,0.319,0.35,0.08787077,631,7181,0.072381408,0.103360132,0.040577097,90,2218,0.027470714,0.05368348,0.000160514,2,12460,,,6230,,,,,,,,,,,2.840873142,,,,,,,,,2.937560082,2.728480632,,,,,,,,,2.865778892,0.035721851,,,,,3372.413,,,,,0.958718299,61845,64508,0.704716319,1.212720278,82132,,,73892.85106,90371.14894,15189,3691.12766,26686.87234,135787,121483.1702,150090.8298,,,,113984,55651.06383,172316.9362,84395,77852.53192,90937.46809,,,,,,0.402406417,602,1496,,,,,,,,0.303584474,,82132,,,2.012072435,1,497,,,,,,,,,,,,,,,,,,,,,,,,,,21.46611505,12,60121,10.71580729,38.40880937,19.95974784,,,,,,,,,,,,,25.12606495,12.5428411,44.95747074,,,,,,,,,,,,,,,,,,,,,,,,,,,20.48933349,17,82970,11.93579182,32.80540776,,,,,,,,,,,,,19.34262701,10.57479418,32.45364142,,,,28,,1000,,,12,16,0.77171504,7312,9475,,,0.482,,,,,13.71968939,,,,,0.81234414,3909,4812,0.790941042,0.833747238,0.134395865,624,4643,0.095096604,0.173695126,0.837697423,4031,4812,0.798519298,0.876875548,12460,,,,,0.172150883,2145,12460,,,0.251284109,3131,12460,,,0.006661316,83,12460,,,0.022873194,285,12460,,,0.013081862,163,12460,,,0.003370787,42,12460,,,0.089165329,1111,12460,,,0.82600321,10292,12460,,,0.003874968,45,11613,0,0.012212066,0.488362761,6085,12460,,,1,12036,12036,, -53,061,53061,WA,Snohomish County,2024,1,5823.665484,8600,2355495,5640.824785,6006.506183,0,14005.32583,11080.58251,16930.06915,,3075.423619,2669.477735,3481.369503,,6545.03224,5557.4967,7532.567779,,4732.345636,4225.961429,5238.729844,,6158.411204,5926.276806,6390.545603,,9400.178015,6652.125433,12902.47876,,,0.134,,,0.114,0.156,3.67138138,,,3.106051305,4.291497463,5.42272783,,,4.799798749,6.088708288,0.065410703,4465,68261,0.063555871,0.067265535,0,0.090620032,0.068185576,0.113054488,0.084883603,0.079375845,0.09039136,0.081345327,0.070749541,0.091941112,0.06481859,0.059946951,0.069690228,0.057639265,0.055320017,0.059958513,0.069672131,0.047083302,0.09226096,0.067914831,0.058466336,0.077363326,0.116,,,0.092,0.141,0.323,,,0.288,0.359,9,0.032318307,0.072,,,0.181,,,0.154,0.21,0.87184721,721852,827957,,,0.165711976,,,0.144131382,0.189910378,0.293838863,62,211,0.25906275,0.329152136,285.5,2380,833540,,,9.164853514,1449,158104,8.692956308,9.636750721,18.16488123,12.91700628,24.83199062,2.027457568,1.412198482,2.81970268,6.905561777,4.862152775,9.518407268,19.12931127,17.50528967,20.75333287,6.47116113,5.952495233,6.989827026,24.60629921,15.92389946,36.32375167,8.71586287,7.048723873,10.38300187,0.070547767,50494,715742,0.06459032,0.076505214,0.000533868,445,833540,,,1873.123596,0.000771356,648,840079,,,1296.41821,0.004176988,3509,840079,,,239.4069536,1830,,,,,2836,1023,2510,1059,1878,0.36,,,,,0.14,0.3,0.23,0.26,0.38,0.47,,,,,0.32,0.47,0.3,0.32,0.48,0.927855836,538470,580338,0.924043524,0.931668148,0.722384689,177854,246204,,,0.032478431,14610,449837,,,0.083,14983,,0.06512766,0.10087234,0.116743472,0.072276575,0.161210368,0.082863585,0.060195402,0.105531768,0.163697789,0.100339021,0.227056557,0.149629094,0.121083649,0.178174538,0.062869618,0.052535238,0.073203998,3.931113855,187864,47789,3.784803513,4.077424196,0.157824459,29076,184230,0.143659041,0.171989876,7.042253521,587,833540,,,71.39462042,2929,4102550,68.80901723,73.98022361,213.0437771,171.9538239,260.99302,24.59449821,20.19398413,28.99501229,51.42853172,40.38245887,64.56381204,37.36776028,31.64861386,43.0869067,84.99456351,81.57045049,88.41867652,70.70746749,41.90572644,111.7482825,8.5,,,,,0,,,,,0.158208256,47275,298815,0.15170605,0.164710462,0.124684333,0.118142529,0.131226136,0.034034436,0.030156103,0.037912769,0.007864398,0.006560949,0.009167847,0.675246796,282634,418564,0.668021697,0.682471895,0.730018416,0.677487984,0.782548849,0.578098337,0.552808036,0.603388637,0.621478429,0.574549439,0.668407419,0.670033057,0.633464833,0.706601282,0.687725143,0.678399652,0.697050633,0.486,,418564,0.473966547,0.498033453,79.77839406,,,79.5839512,79.97283693,71.76111306,69.65117464,73.87105148,87.07529808,86.1563383,87.99425787,78.96964931,77.09908915,80.84020946,84.21029619,82.62408764,85.79650474,79.14541714,78.92355491,79.36727936,79.0738674,74.63989969,83.5078351,296.2029341,8600,2355495,289.8075088,302.5983593,576.6950236,485.5925746,667.7974725,141.9934485,128.7462859,155.2406111,351.8728129,307.9547429,395.7908828,226.8149312,203.108318,250.5215445,317.4415852,309.6637021,325.2194684,389.9083706,296.8163172,502.95339,38.25464428,308,805131,33.98231339,42.52697516,,,,43.23820927,30.74659359,59.10805546,47.40534732,26.53241304,78.18791123,39.81642532,30.15657171,51.5867973,34.42076647,29.03649706,39.80503587,,,,3.869379141,264,68228,3.402617246,4.336141035,,,,3.364080304,2.285729352,4.775043462,,,,4.43599493,3.197074961,5.996176466,3.682826005,3.087467441,4.278184569,,,,,,,0.105,,,0.09,0.12,0.161,,,0.142,0.181,0.081,,,0.07,0.092,176.6,1237,700486,,,0.072,58670,,,,0.032318307,23053.77957,713335,,,26.10602667,649,2486016,24.09751435,28.11453899,134.7657002,93.86924802,187.4264656,4.555615936,2.490597624,7.64354945,23.15350776,14.33238623,35.3925961,16.91406552,12.38322177,22.56099312,30.17024553,27.53098017,32.80951088,,,,0.34,,,0.327,0.351,0.085574138,45289,529237,0.077233712,0.093914563,0.029652965,5789,195225,0.022504028,0.036801901,0.000709457,596,840079,,,1409.528524,,,,,,0.074704142,2828,37856,0.060724598,0.088683686,3.102972273,,,,,,3.458445147,,2.637191986,3.228378952,3.00942183,,,,,,3.500519785,2.705830143,2.498546272,3.137868753,0.093638649,,,,,4130.954957,,,,,0.758201955,61751,81444,0.734930165,0.781473745,101440,,,97752.34043,105127.6596,110529,90707.38298,130350.617,132726,127266.5957,138185.4043,78874,73408.6383,84339.3617,86960,80010.04255,93909.95745,104263,102697.383,105828.617,,,,,,0.353354787,40957,115909,,,51.6806283,,,,,0.298876183,,101440,,,4.186156205,213,50882,,,2.489991031,141,5662671,2.078988688,2.900993374,,,,1.694090397,0.845683822,3.031195676,5.776704128,2.883709887,10.33611938,2.864383248,1.668608798,4.586155057,2.33671858,1.881380038,2.868972612,,,,14.67964538,619,4102550,13.49890622,15.86038455,15.08817687,29.77725349,14.86469766,53.27973182,7.678324576,5.285405335,10.78322248,8.655205716,4.731881505,14.5219645,6.538938868,4.442891712,9.281501769,16.66933036,15.14335348,18.19530724,,,,8.921280667,366,4102550,8.007287958,9.835273376,,,,3.279266428,1.874384103,5.325323233,9.729722216,5.319329675,16.32482061,5.696304921,3.686348201,8.408869761,10.4851764,9.282523269,11.68782954,,,,6.869549723,389,5662671,6.186881729,7.552217717,,,,2.92615614,1.761737146,4.569555282,7.35216889,4.019499147,12.33569012,6.402739024,4.530959205,8.788259553,7.677789618,6.807514264,8.548064973,,,,23.03658537,,82000,,,581,1308,0.769966134,438796,569890,,,0.736,,,,,139.9645168,,,,,0.685635623,210931,307643,0.67832258,0.692948666,0.13734362,41586,302788,0.13045742,0.14422982,0.933513846,287189,307643,0.929714931,0.93731276,840079,,,,,0.218446122,183512,840079,,,0.149919234,125944,840079,,,0.038477334,32324,840079,,,0.016262756,13662,840079,,,0.142494932,119707,840079,,,0.006775553,5692,840079,,,0.116261685,97669,840079,,,0.642902632,540089,840079,,,0.036518992,28409,777924,,,0.495030825,415865,840079,,,0.117960232,97666,827957,, -53,063,53063,WA,Spokane County,2024,1,7597.344918,7294,1493934,7336.308729,7858.381106,0,13143.39377,10389.19462,15897.59291,,3836.304639,2686.900606,5311.062675,,12904.16749,10591.57714,15216.75783,,6796.132266,5779.269289,7812.995242,,7393.701715,7112.842418,7674.561012,,16269.87967,12151.12434,21335.78259,,,0.152,,,0.128,0.175,3.851226813,,,3.188868287,4.584201358,5.673928209,,,4.938745642,6.433238502,0.071418129,2931,41040,0.068926595,0.073909662,0,0.077054795,0.055425745,0.098683844,0.098060345,0.078925827,0.117194863,0.095756257,0.076731257,0.114781256,0.067515924,0.058739551,0.076292296,0.068700873,0.065942922,0.071458823,0.094682231,0.074015887,0.115348575,0.090178059,0.076723008,0.103633109,0.142,,,0.112,0.174,0.295,,,0.256,0.336,8.3,0.045355512,0.101,,,0.184,,,0.153,0.216,0.872208388,470416,539339,,,0.190320609,,,0.163598073,0.218237744,0.363207547,77,212,0.329502361,0.396787624,460,2512,546040,,,13.75983481,1546,112356,13.0739289,14.44574072,19.60784314,13.73309228,27.14551987,6.008010681,3.560727897,9.495247085,18.95344046,13.87630054,25.2812335,17.93767938,15.27999561,20.59536315,11.85725294,11.13346586,12.58104001,67.94258373,53.06372158,85.7003245,18.92443839,15.77834456,22.07053223,0.06192333,27617,445987,0.054774393,0.069072266,0.0008699,475,546040,,,1149.557895,0.000836835,460,549690,,,1194.978261,0.005463079,3003,549690,,,183.0469531,1663,,,,,3458,1374,2211,1903,1637,0.48,,,,,0.33,0.38,0.34,0.38,0.49,0.44,,,,,0.32,0.42,0.27,0.33,0.45,0.941228084,349702,371538,,,0.70358699,105607,150098,0.68388723,0.72328675,0.048049486,12646,263187,,,0.15,17244,,0.120212766,0.179787234,0.1940545,0.036916191,0.351192809,0.22788434,0.165010653,0.290758028,0.1328,0.062113027,0.203486973,0.181713983,0.132145612,0.231282355,0.122254844,0.107164526,0.137345163,4.389655964,133845,30491,4.217645042,4.561666886,0.214449256,25008,116615,0.194340731,0.234557781,8.937074207,488,546040,,,96.30054633,2521,2617846,92.54132064,100.059772,138.151479,102.8628504,181.6436813,48.94443176,33.02260257,69.87121969,126.0136989,96.61398038,161.5438749,55.2263349,44.35128177,67.96075728,101.3360332,97.12627268,105.5457937,,,,7.6,,,,,1,,,,,0.146271186,30205,206500,0.138975707,0.153566666,0.123976237,0.116960041,0.130992432,0.01842615,0.015746436,0.021105864,0.014915254,0.011986231,0.017844278,0.72441819,178798,246816,0.716425035,0.732411346,0.728119935,0.621492982,0.834746889,0.59758635,0.536453713,0.658718987,0.667191719,0.581142619,0.75324082,0.716027338,0.676065796,0.755988881,0.742975005,0.734782142,0.751167869,0.249,,246816,0.236790867,0.261209133,77.37724041,,,77.14563808,77.60884273,71.76615369,69.52793897,74.00436842,83.47843433,81.70476189,85.25210678,73.52709588,71.15566947,75.89852229,83.44457813,80.74051094,86.14864531,77.44011632,77.19589226,77.68434037,74.80393559,65.12297835,84.48489282,383.2462941,7294,1493934,374.1020534,392.3905349,655.1897437,547.1739238,763.2055636,189.5003209,149.5506898,236.842887,644.0476019,547.6333866,740.4618172,326.7066698,281.8321201,371.5812195,379.5188762,369.7903512,389.2474013,780.2101611,593.9321239,1006.414263,42.73702612,221,517116,37.10241131,48.37164094,,,,,,,,,,53.95086321,35.24249505,79.05051478,37.87792702,31.81619623,43.93965781,,,,4.29122118,177,41247,3.659027226,4.923415133,,,,,,,,,,7.236842105,4.535290419,10.95666592,3.715660596,3.056316392,4.3750048,,,,,,,0.111,,,0.095,0.127,0.176,,,0.154,0.2,0.088,,,0.076,0.1,165.6,765,461829,,,0.101,53630,,,,0.045355512,21372.46966,471221,,,22.79183727,364,1597063,20.4503882,25.13328633,57.77264243,30.76149894,98.79297804,,,,,,,20.66258007,12.79046273,31.58494853,22.55350651,20.00558,25.10143302,,,,0.319,,,0.303,0.334,0.075942886,24918,328115,0.06760246,0.084283311,0.024448849,3022,123605,0.018491402,0.030406296,0.001673671,920,549690,,,597.4891304,,,,,,0.06917603,1847,26700,0.053516047,0.084836013,2.976049358,,,,,,,2.411487011,2.624230737,3.079086697,2.906177955,,,,,,,2.14282566,2.501506992,3.02730614,0.04757952,,,,,4312.056167,,,,,0.812981995,50074,61593,0.781920788,0.844043202,69079,,,65497.38298,72660.61702,55219,36999.93617,73438.06383,67156,54809.78723,79502.21277,45945,40335.46809,51554.53192,61767,51585.7234,71948.2766,72212,70725.02128,73698.97872,,,,,,0.462113199,34512,74683,,,56.28565088,,,,,0.354290016,,69079,,,5.296100144,165,31155,,,3.409220361,123,3607863,2.806718228,4.011722495,,,,,,,23.72444062,13.56056769,38.52700523,,,,2.829778616,2.263457629,3.49475357,,,,19.13939247,515,2617846,17.44267569,20.83610924,19.67266218,26.09233228,11.93107581,49.53137429,15.32805523,7.35039828,28.18883932,25.3992468,13.12416146,44.36737266,13.70932196,8.374010011,21.17293587,19.22039731,17.36312862,21.077666,,,,13.06417566,342,2617846,11.67957342,14.4487779,,,,,,,36.58462226,21.68236577,57.81947576,11.1693711,6.619677193,17.65242175,12.88324232,11.38221696,14.38426767,,,,9.035819819,326,3607863,8.054942181,10.01669746,,,,,,,,,,6.971102457,3.901673126,11.49777337,9.377754715,8.288993829,10.4665156,,,,13.48747592,,51900,,,376,324,0.75926497,295430,389100,,,0.728,,,,,150.3830394,,,,,0.637516157,136125,213524,0.628995122,0.646037193,0.133237324,27940,209701,0.125728206,0.140746441,0.906919129,193649,213524,0.899992467,0.91384579,549690,,,,,0.213074642,117125,549690,,,0.174742127,96054,549690,,,0.019925776,10953,549690,,,0.018681439,10269,549690,,,0.024952246,13716,549690,,,0.007484218,4114,549690,,,0.069042551,37952,549690,,,0.825781804,453924,549690,,,0.009950836,5056,508098,,,0.500094599,274897,549690,,,0.146260515,78884,539339,, -53,065,53065,WA,Stevens County,2024,1,7733.363858,794,126952,6769.679621,8697.048095,0,12581.73053,7975.737884,18878.77337,1,,,,2,,,,2,,,,2,7399.222838,6378.999379,8419.446298,,,,,2,,0.162,,,0.135,0.192,3.966434723,,,3.126797027,5.00576811,5.18493921,,,4.227142801,6.36418744,0.066488473,199,2993,0.057562908,0.075414039,0,0.063953488,0.02738789,0.100519087,,,,,,,,,,0.064724919,0.055025689,0.07442415,,,,0.101010101,0.041649501,0.160370701,0.166,,,0.13,0.204,0.32,,,0.26,0.387,7.2,0.1250326,0.113,,,0.198,,,0.157,0.244,0.478587577,22228,46445,,,0.152196973,,,0.119378795,0.192277384,0.192307692,5,26,0.09558881,0.306287398,189.8,90,47426,,,15.8577092,148,9333,13.3028577,18.41256071,17.6366843,8.457475655,32.43449037,,,,,,,,,,15.87091655,13.03124927,18.71058382,,,,,,,0.082080467,2899,35319,0.070165573,0.09399536,0.000695821,33,47426,,,1437.151515,0.000497626,24,48229,,,2009.541667,0.004520102,218,48229,,,221.233945,1037,,,,,1244,,,,986,0.35,,,,,0.32,0.25,,,0.35,0.24,,,,,0.34,0.18,0.19,0.09,0.23,0.920421973,31148,33841,0.906960988,0.933882959,0.543684155,5109,9397,0.488203185,0.599165124,0.067211153,1292,19223,,,0.18,1771,,0.113276596,0.246723404,0.4092827,0.263615007,0.554950394,,,,,,,0.100591716,0.002474594,0.198708838,0.160811348,0.11751745,0.204105247,4.264377253,119458,28013,3.793007974,4.735746533,0.155102455,1529,9858,0.109854711,0.200350198,8.434192215,40,47426,,,96.29671589,221,229499,83.60058443,108.9928474,109.4091904,58.25578599,187.0930476,,,,,,,,,,101.3999243,87.38161388,115.4182348,,,,8.8,,,,,0,,,,,0.143416271,2565,17885,0.118509417,0.168323125,0.106557377,0.083938315,0.129176439,0.026558569,0.018657194,0.034459943,0.024881185,0.01396955,0.03579282,0.787039144,13833,17576,0.758407558,0.815670731,0.756,0.681181104,0.830818896,,,,,,,,,,0.755877186,0.720936567,0.790817805,0.449,,17576,0.403739085,0.494260916,78.33506381,,,77.48676367,79.18336395,74.69679303,70.18293325,79.21065282,,,,,,,86.6404785,71.96599025,101.3149667,78.42686279,77.54156668,79.3121589,,,,382.6365526,794,126952,352.3799983,412.893107,589.9721018,423.3741662,800.3637736,,,,,,,,,,372.7222854,341.024,404.4205709,,,,44.35210906,19,42839,26.70286693,69.26131229,,,,,,,,,,,,,46.95938014,26.8413432,76.25909133,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.123,,,0.105,0.143,0.181,,,0.155,0.209,0.088,,,0.074,0.105,56.7,23,40549,,,0.113,5190,,,,0.1250326,5442.794092,43531,,,10.7519945,15,139509,6.017809699,17.73377981,,,,,,,,,,,,,11.62674817,6.356451414,19.50770781,,,,0.334,,,0.319,0.348,0.100975667,2577,25521,0.085486305,0.116465029,0.034074362,351,10301,0.023350958,0.044797766,0.000663501,32,48229,,,1507.15625,,,,,,0.077279038,167,2161,0.026076358,0.128481717,,,,,,,,,,,,,,,,,,,,,0.20600828,,,,,887.7958222,,,,,0.771486143,45179,58561,0.680204227,0.862768058,65748,,,58911.23404,72584.76596,52760,40277.95745,65242.04255,125404,67248.59575,183559.4043,,,,44539,33827.51064,55250.48936,64057,59096.82979,69017.17021,,,,,,0.473211964,3639,7690,,,71.40672552,,,,,0.312572246,,65748,,,2.078137988,5,2406,,,3.147336252,10,317729,1.509270069,5.788063426,,,,,,,,,,,,,,,,,,,23.9119389,54,229499,17.50654459,31.89517555,23.52951429,,,,,,,,,,,,,24.64363199,17.60577199,33.55763226,,,,18.30073334,42,229499,13.18955888,24.73727501,,,,,,,,,,,,,19.67461218,13.99057258,26.89584254,,,,19.19875114,61,317729,14.68552337,24.66159901,66.54164902,33.21735144,119.0613908,,,,,,,,,,17.8335511,13.19335928,23.57690031,,,,30.63829787,,4700,,,52,92,0.808474335,28430,35165,,,0.54,,,,,9.653448668,,,,,0.797249743,14726,18471,0.776670022,0.817829464,0.1091585,1938,17754,0.089874965,0.128442034,0.827405122,15283,18471,0.809148286,0.845661957,48229,,,,,0.208235709,10043,48229,,,0.254141699,12257,48229,,,0.005867839,283,48229,,,0.054697381,2638,48229,,,0.0083145,401,48229,,,0.002405192,116,48229,,,0.043625205,2104,48229,,,0.860415932,41497,48229,,,0.009292593,413,44444,0.002766742,0.015818444,0.495345124,23890,48229,,,0.891096996,41387,46445,, -53,067,53067,WA,Thurston County,2024,1,6355.130599,3451,822181,6021.822203,6688.438995,0,14111.63149,10034.74948,19291.06479,,3313.901399,2437.991568,4189.81123,,7755.889091,5792.468943,10170.81667,,5550.471596,4540.957539,6559.985652,,6151.071584,5773.06206,6529.081107,,10178.21277,6648.746507,14913.43996,,,0.132,,,0.111,0.156,3.429228286,,,2.808434873,4.110299504,5.727601136,,,4.972631975,6.513128096,0.06444548,1383,21460,0.061160203,0.067730757,0,0.0609319,0.032863033,0.089000766,0.086789555,0.071497363,0.102081747,0.100871731,0.080041511,0.121701951,0.070772372,0.061500889,0.080043855,0.058376706,0.054522852,0.062230559,0.074380165,0.047387383,0.101372948,0.058778626,0.046041366,0.071515886,0.125,,,0.099,0.157,0.323,,,0.278,0.37,8.4,0.069114979,0.085,,,0.168,,,0.137,0.203,0.758644201,223643,294793,,,0.172332669,,,0.144580983,0.201497296,0.342592593,37,108,0.294052301,0.391123292,321.2,957,297977,,,12.46066934,697,55936,11.53558558,13.38575309,13.12649165,6.552697336,23.48691947,,,,10.86464464,6.961182822,16.16573001,18.82443335,15.78131168,21.86755501,11.46115628,10.34629331,12.57601924,33.48554034,20.98520985,50.69751048,13.6171845,10.63513407,17.17622538,0.06778488,16553,244199,0.059444455,0.076125306,0.000872551,260,297977,,,1146.065385,0.000789937,236,298758,,,1265.923729,0.005124549,1531,298758,,,195.1391248,1822,,,,,4581,1615,2156,1415,1787,0.37,,,,,0.17,0.26,0.24,0.25,0.38,0.45,,,,,0.41,0.39,0.23,0.32,0.46,0.942957122,196715,208615,0.935861092,0.950053152,0.731037369,61133,83625,0.7032926,0.758782138,0.046599106,6925,148608,,,0.098,5946,,0.069404255,0.126595745,0.379834254,0.1554024,0.604266108,0.122753663,0.039389463,0.206117863,0.131753032,0,0.3341377,0.133374058,0.094284297,0.172463819,0.105726872,0.08430255,0.127151195,3.792901021,153127,40372,3.566799594,4.019002447,0.199932128,12372,61881,0.178610653,0.221253603,8.72550566,260,297977,,,75.2624528,1091,1449594,70.7964184,79.7284872,95.33898305,56.50392363,150.6766963,35.4399122,24.07970091,50.30412647,59.1891092,39.33073322,85.54474262,42.17261688,32.02343611,54.51788682,85.12622083,79.60437807,90.6480636,,,,7.2,,,,,1,,,,,0.152370354,17115,112325,0.142064753,0.162675955,0.131328118,0.121179139,0.141477097,0.017671934,0.013922722,0.021421146,0.011217449,0.008144646,0.014290253,0.712485606,97763,137214,0.697648625,0.727322588,0.748288973,0.660519365,0.836058582,0.611231884,0.567035472,0.655428296,0.73606228,0.630125719,0.841998842,0.633915512,0.573046402,0.694784623,0.703775793,0.693036785,0.7145148,0.353,,137214,0.333787811,0.372212189,79.25253333,,,78.9333504,79.57171626,71.91725196,68.44487015,75.38963378,87.41111398,85.36133392,89.46089405,78.66203057,75.7363944,81.58766673,82.43463976,80.25484384,84.61443568,79.15786349,78.80936198,79.506365,75.45299319,69.80173809,81.10424829,314.4719093,3451,822181,303.5121197,325.431699,597.4412299,465.7347484,754.8310522,172.6533886,139.8906541,205.4161231,335.7684143,271.656698,410.4594746,225.8624185,187.1893382,264.5354987,317.5600558,305.14066,329.9794517,487.2130391,348.0721382,663.4458755,46.228523,126,272559,38.15652925,54.30051675,,,,,,,102.7221366,49.25925728,188.9096666,62.72920286,40.97679795,91.91281626,36.70430314,28.20459433,46.96074812,,,,4.866067291,105,21578,3.935303388,5.796831194,,,,,,,,,,,,,3.922648132,2.970975388,5.082245641,,,,,,,0.103,,,0.088,0.119,0.173,,,0.151,0.197,0.086,,,0.074,0.1,139.1,352,253020,,,0.085,24750,,,,0.069114979,17435.22106,252264,,,20.50789327,181,882587,17.52018746,23.49559909,,,,,,,33.91900143,16.2654796,62.37825128,15.1139944,8.047565474,25.84539072,21.74828443,18.15847397,25.3380949,,,,0.337,,,0.323,0.349,0.082709924,14970,180994,0.07198652,0.093433328,0.026807707,1774,66175,0.019658771,0.033956643,0.001081143,323,298758,,,924.9473684,,,,,,0.082660544,1116,13501,0.055106248,0.110214839,3.123591424,,,,,,3.276466385,2.696499592,2.831331386,3.24873657,3.085847515,,,,,,3.444325347,2.662065241,2.805349376,3.168001178,0.042766537,,,,,4110.321288,,,,,0.843034984,58510,69404,0.806375473,0.879694495,88560,,,84329.02128,92790.97872,62292,34570.80851,90013.19149,90176,77692.76596,102659.234,85943,80166.65957,91719.34043,77920,72092.42553,83747.57447,90687,87655.85106,93718.14894,,,,,,0.36812749,15708,42670,,,45.65132965,,,,,0.281549232,,88560,,,5.163406634,85,16462,,,2.456938394,49,1994352,1.81765655,3.248202855,,,,,,,,,,,,,2.626927761,1.868002436,3.591096727,,,,16.79002019,251,1449594,14.66285133,18.91718905,17.31519308,,,,,,,,,,9.810455934,5.490837714,16.18085514,18.24935184,15.65275667,20.84594702,,,,10.69264911,155,1449594,9.009294795,12.37600343,,,,,,,,,,10.17959718,5.565280503,17.07963435,12.02769166,9.952092425,14.1032909,,,,8.473930379,169,1994352,7.196322415,9.751538344,,,,,,,,,,7.053295788,3.75558295,12.06135061,8.689068747,7.18961025,10.18852724,,,,7.246376812,,27600,,,160,40,0.781582373,168134,215120,,,0.734,,,,,87.35920369,,,,,0.672717058,77830,115695,0.661774132,0.683659984,0.148953982,16903,113478,0.137558933,0.160349031,0.924197243,106925,115695,0.916453453,0.931941032,298758,,,,,0.206304099,61635,298758,,,0.189394092,56583,298758,,,0.036350491,10860,298758,,,0.018386119,5493,298758,,,0.065541341,19581,298758,,,0.010945314,3270,298758,,,0.104783805,31305,298758,,,0.718578247,214681,298758,,,0.015010501,4174,278072,,,0.507644984,151663,298758,,,0.213380236,62903,294793,, -53,069,53069,WA,Wahkiakum County,2024,1,7123.248914,81,11815,4351.065493,11001.28022,1,,,,2,,,,2,,,,2,,,,2,7919.050325,4613.138641,12679.1667,1,,,,2,,0.16,,,0.135,0.186,3.952490933,,,3.189776397,4.816171279,5.771954615,,,4.842099272,6.736317877,,,,,,0,,,,,,,,,,,,,,,,,,,,,,0.159,,,0.127,0.193,0.345,,,0.284,0.41,8.1,0.044252394,0.109,,,0.196,,,0.16,0.235,0.647896879,2865,4422,,,0.152091047,,,0.122328087,0.184513737,0,0,2,0,0.510593623,87.3,4,4582,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.102133161,316,3094,0.08545231,0.118814012,,0,4582,,,,0.000639932,3,4688,,,1562.666667,0.002773038,13,4688,,,360.6153846,1084,,,,,,,,,1103,0.43,,,,,,,,,0.43,0.36,,,,,,,,,0.35,0.920602724,3177,3451,0.893964713,0.947240735,0.520923521,361,693,0.355086273,0.686760769,0.067587209,93,1376,,,0.211,156,,0.139510638,0.282489362,,,,,,,,,,,,,0.215328467,0.054775864,0.37588107,5.360415143,117243,21872,4.15790428,6.562926005,0.066233766,51,770,0,0.143703758,6.547359232,3,4582,,,116.8119328,26,22258,76.30543272,171.1565463,,,,,,,,,,,,,129.0722288,83.52874102,190.5360715,,,,5.5,,,,,0,,,,,0.165789474,315,1900,0.111353706,0.220225242,0.11827957,0.064860496,0.171698644,0.023684211,0,0.056051081,0.034210526,7.34934E-05,0.068347559,0.683870968,1060,1550,0.620554569,0.747187367,,,,,,,,,,,,,0.673341677,0.563445905,0.783237449,0.514,,1550,0.3613219,0.6666781,79.24504068,,,76.27304213,82.21703924,,,,,,,,,,,,,78.21084526,74.86581066,81.55587986,,,,351.41835,81,11815,263.236459,459.6638542,,,,,,,,,,,,,377.9953813,278.7039548,501.1670362,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.117,,,0.101,0.135,0.178,,,0.156,0.203,0.089,,,0.076,0.103,,,,,,0.109,480,,,,0.044252394,176.0360227,3978,,,,,,,,,,,,,,,,,,,,,,,,,,0.328,,,0.312,0.342,0.118845501,280,2356,0.098590182,0.13910082,0.050955414,40,785,0.034274563,0.067636265,0.001066553,5,4688,,,937.6,,,,,,,,,,,2.832751988,,,,,,,,,2.954576626,2.975340696,,,,,,,,,3.204152654,0.002767457,,,,,-2994.072,,,,,0.462577462,27843,60191,0.3935987,0.531556223,70099,,,60089.29787,80108.70213,,,,,,,,,,,,,62448,52785.02128,72110.97872,,,,,,0.577680525,264,457,,,,,,,,0.355696943,,70099,,,6.172839506,1,162,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,400,,,-888,-888,0.861560694,2981,3460,,,0.542,,,,,7.981410062,,,,,0.852610031,1666,1954,0.800840436,0.904379626,0.188056574,359,1909,0.119235762,0.256877387,0.857727738,1676,1954,0.795236908,0.920218568,4688,,,,,0.162755973,763,4688,,,0.335110922,1571,4688,,,0.004906143,23,4688,,,0.018558021,87,4688,,,0.016638225,78,4688,,,0.004906143,23,4688,,,0.065699659,308,4688,,,0.856868601,4017,4688,,,0.000231107,1,4327,0,0.014106159,0.492320819,2308,4688,,,1,4422,4422,, -53,071,53071,WA,Walla Walla County,2024,1,6713.548685,741,169702,5954.135263,7472.962107,0,,,,2,,,,2,,,,2,6882.452245,5375.252304,8681.277019,,6662.267744,5742.47159,7582.063899,,,,,2,,0.158,,,0.135,0.186,3.703007277,,,2.977091077,4.529730882,5.558254723,,,4.668851525,6.538393005,0.067018977,279,4163,0.059422921,0.074615033,0,,,,,,,,,,0.071428571,0.057937834,0.084919309,0.064231232,0.054603443,0.073859022,,,,,,,0.141,,,0.111,0.176,0.338,,,0.28,0.401,8.4,0.053705285,0.088,,,0.211,,,0.174,0.254,0.839080276,52513,62584,,,0.182478259,,,0.149250828,0.219993746,0.1875,3,16,0.067648579,0.337423465,406.8,255,62682,,,14.6747992,243,16559,12.82967714,16.51992127,,,,,,,,,,20.27298274,16.31919787,24.22676761,11.89414214,9.766010085,14.02227419,,,,,,,0.087138181,4046,46432,0.075223287,0.099053074,0.001005073,63,62682,,,994.952381,0.000743254,46,61890,,,1345.434783,0.003538536,219,61890,,,282.6027397,2056,,,,,,,,3697,2021,0.46,,,,,,0.42,,0.36,0.47,0.4,,,,,,0.36,0.22,0.29,0.41,0.889369185,36417,40947,0.874211137,0.904527232,0.669446913,9792,14627,0.61529132,0.723602507,0.046121798,1417,30723,,,0.138,1708,,0.087957447,0.188042553,,,,,,,,,,0.153634827,0.106162682,0.201106971,0.064325843,0.034638765,0.09401292,4.684509846,131794,28134,3.920786523,5.448233169,0.236175751,2994,12677,0.18424415,0.288107353,7.179094477,45,62682,,,77.06801906,236,306223,67.23528562,86.9007525,,,,,,,,,,34.41207714,21.81430501,51.63501189,93.1949335,80.37456953,106.0152975,,,,8.6,,,,,0,,,,,0.156970362,3575,22775,0.132890863,0.181049862,0.11979628,0.100651948,0.138940612,0.026564215,0.017565352,0.035563078,0.023271131,0.013052714,0.033489547,0.711433555,19171,26947,0.686793326,0.736073783,,,,0.417391304,0.285324781,0.549457828,,,,0.734229326,0.673377983,0.795080668,0.723906379,0.691077152,0.756735607,0.116,,26947,0.094920401,0.137079599,78.94419407,,,78.24717138,79.64121676,,,,,,,,,,80.17898167,77.73217356,82.62578977,78.77511579,77.97350361,79.57672797,,,,337.6971219,741,169702,312.0461971,363.3480468,,,,,,,,,,332.432274,266.9704133,409.0865187,338.9175211,309.4272067,368.4078355,,,,37.65861646,23,61075,23.87233244,56.50641489,,,,,,,,,,47.64173416,22.84606335,87.61484537,33.92801606,17.53110099,59.26541618,,,,5.071461503,22,4338,3.178257924,7.678253662,,,,,,,,,,,,,,,,,,,,,,0.114,,,0.099,0.133,0.171,,,0.149,0.196,0.09,,,0.077,0.105,117.7,63,53525,,,0.088,5460,,,,0.053705285,3156.850362,58781,,,16.78088495,31,184734,11.40179717,23.81912669,,,,,,,,,,,,,19.118558,12.37252269,28.22276309,,,,0.282,,,0.269,0.294,0.109055647,3655,33515,0.092374796,0.125736498,0.031980591,435,13602,0.022448676,0.041512506,0.001114881,69,61890,,,896.9565217,,,,,,,,,,,2.674361747,,,,,,,,2.312577127,2.977147634,2.461499616,,,,,,,,2.089514132,2.768375088,0.051269325,,,,,-302.9597667,,,,,0.740391335,46618,62964,0.683545073,0.797237597,66542,,,58710.34043,74373.65957,80437,49143.7234,111730.2766,73917,19363.46809,128470.5319,,,,54432,48914.21277,59949.78723,71225,67470.61702,74979.38298,,,,,,0.556099266,4773,8583,,,68.6297324,,,,,0.306137477,,66542,,,5.369551485,17,3166,,,3.045202518,13,426901,1.621442089,5.207389048,,,,,,,,,,,,,,,,,,,15.48528379,50,306223,11.37800408,20.59214468,16.32797014,,,,,,,,,,,,,20.1556132,14.52639313,27.24453373,,,,13.71549492,42,306223,9.884922339,18.5393647,,,,,,,,,,,,,16.52718033,11.57543392,22.880584,,,,7.261636773,31,426901,4.933929876,10.30731376,,,,,,,,,,,,,6.887526689,4.263487576,10.52831618,,,,17.45762712,,5900,,,50,53,0.694766085,31261,44995,,,0.697,,,,,79.60170051,,,,,0.661502307,15200,22978,0.63953794,0.683466673,0.133912496,2975,22216,0.107957702,0.159867289,0.885760293,20353,22978,0.868849954,0.902670631,61890,,,,,0.204588787,12662,61890,,,0.204394894,12650,61890,,,0.017240265,1067,61890,,,0.015285183,946,61890,,,0.01888835,1169,61890,,,0.003829375,237,61890,,,0.233963484,14480,61890,,,0.696542252,43109,61890,,,0.041958042,2478,59059,0.033613752,0.050302332,0.493165293,30522,61890,,,0.202527803,12675,62584,, -53,073,53073,WA,Whatcom County,2024,1,5848.773213,2450,641152,5484.914588,6212.631837,0,23892.43296,19242.45838,28542.40753,,3664.932926,2593.524664,5030.40678,,8814.728838,5524.143634,13345.60539,1,5396.232839,4295.54724,6496.918438,,5418.669818,5018.22122,5819.118416,,,,,2,,0.139,,,0.116,0.165,3.617981504,,,2.950274472,4.407399424,5.801169522,,,5.0081799,6.693895051,0.057814965,843,14581,0.05402661,0.06160332,0,0.082862524,0.059414561,0.106310486,0.053254438,0.036327544,0.070181332,0.094488189,0.043614875,0.145361503,0.060187249,0.050344547,0.070029952,0.052657626,0.048302357,0.057012896,,,,0.078324226,0.055848846,0.100799606,0.139,,,0.108,0.174,0.253,,,0.209,0.302,8,0.071430267,0.098,,,0.169,,,0.138,0.204,0.821959294,186459,226847,,,0.195042747,,,0.16426595,0.230534458,0.265822785,21,79,0.207839505,0.326036184,326,746,228831,,,8.068334628,426,52799,7.302146931,8.834522324,27.06883217,18.85443341,37.64619286,,,,,,,21.33333333,17.94182416,24.72484251,5.26161941,4.528722472,5.994516347,,,,7.24137931,4.482527926,11.0692175,0.080080107,14675,183254,0.070548193,0.089612022,0.000939558,215,228831,,,1064.330233,0.000754302,174,230677,,,1325.729885,0.005843669,1348,230677,,,171.1253709,1919,,,,,4269,1331,,2903,1845,0.44,,,,,0.3,0.35,0.22,0.18,0.45,0.45,,,,,0.39,0.43,0.33,0.33,0.46,0.9330387,142294,152506,0.92565378,0.940423621,0.726580608,42946,59107,0.692913752,0.760247464,0.04894558,5633,115087,,,0.112,4645,,0.076255319,0.147744681,0.109195402,0.044865201,0.173525604,0.015430267,0,0.056949347,0.176646707,0,0.560597208,0.26686874,0.202774103,0.330963377,0.114251799,0.084707953,0.143795646,4.1782547,141342,33828,3.906190705,4.450318695,0.198823172,8515,42827,0.167412881,0.230233464,10.61919058,243,228831,,,59.40944373,675,1136183,54.92756944,63.89131801,171.5626204,126.922971,226.8148825,28.9547341,16.20574488,47.7564306,91.69723241,45.77492804,164.0716782,49.28624555,37.12914517,64.15282318,59.80168771,54.71993303,64.88344239,,,,4.5,,,,,1,,,,,0.1952686,17375,88980,0.180571505,0.209965695,0.160993873,0.146535969,0.175451778,0.037705102,0.028823383,0.046586822,0.013935716,0.008308544,0.019562888,0.719602161,78718,109391,0.702666372,0.73653795,0.703455389,0.614208755,0.792702024,0.574686431,0.478409741,0.670963121,0.690702087,0.524547812,0.856856362,0.740810811,0.681832478,0.799789143,0.729307117,0.711049302,0.747564933,0.241,,109391,0.222773718,0.259226283,80.02845682,,,79.67052274,80.3863909,65.75077594,63.02056601,68.48098588,85.87598804,83.2763242,88.47565188,75.76838911,71.41017299,80.12660523,84.95735923,81.59690131,88.31781715,80.26962484,79.88446612,80.65478356,,,,292.4612302,2450,641152,280.2591743,304.6632861,975.0850977,820.1683582,1130.001837,181.830064,139.4080674,233.0979359,502.0262991,345.5718046,705.0315754,253.138643,206.3028248,299.9744612,279.5106835,266.3986659,292.6227011,,,,30.71133297,63,205136,23.5994315,39.29313591,,,,,,,,,,35.20197131,18.18937226,61.49075962,27.94136612,19.86904275,38.1967673,,,,3.931236674,59,15008,2.992639501,5.071008886,,,,,,,,,,,,,2.751162129,1.842496456,3.951127734,,,,,,,0.108,,,0.092,0.126,0.17,,,0.146,0.195,0.079,,,0.067,0.092,125.5,249,198457,,,0.098,22000,,,,0.071430267,14367.48397,201140,,,14.07645401,97,689094,11.41505594,17.17208014,122.5776325,75.87748648,187.3729321,,,,,,,,,,10.43234624,7.880482232,13.54726934,,,,0.283,,,0.269,0.297,0.094659987,13302,140524,0.081553604,0.10776637,0.034378407,1545,44941,0.024846492,0.043910322,0.00098406,227,230677,,,1016.198238,,,,,,0.047665687,584,12252,0.027998461,0.067332914,2.867869963,,,,,,,,2.355811926,3.063228116,2.728136976,,,,,,2.743297201,,2.268105491,2.90656678,0.049313407,,,,,2593.770929,,,,,0.768806797,52029,67675,0.726951907,0.810661688,78796,,,73567.74468,84024.25532,64750,51362.42553,78137.57447,89265,74755.04255,103774.9575,102533,82263.38298,122802.617,57981,50335.21277,65626.78723,79048,76060.93617,82035.06383,,,,,,0.366705428,9776,26659,,,67.95829983,,,,,0.384765724,,78796,,,6.609094114,75,11348,,,2.236040241,35,1565267,1.557483957,3.109790686,,,,,,,,,,,,,2.43786888,1.644819896,3.480209413,,,,17.11269464,206,1136183,14.70125133,19.52413796,18.13088209,,,,,,,,,,11.53415575,6.141452163,19.72375761,18.26260722,15.44989274,21.0753217,,,,10.12160893,115,1136183,8.271672928,11.97154493,,,,,,,,,,,,,11.69055549,9.443703063,13.93740792,,,,7.60253682,119,1565267,6.236566941,8.968506699,43.08050987,25.09598457,68.97606958,,,,,,,9.926740654,5.555921389,16.3726491,6.419721384,5.082553876,8.000888292,,,,10.70351759,,19900,,,143,70,0.813688659,138620,170360,,,0.709,,,,,85.77492097,,,,,0.630046835,57442,91171,0.617915464,0.642178207,0.169728774,15169,89372,0.154274007,0.185183542,0.914402606,83367,91171,0.904740763,0.92406445,230677,,,,,0.183108849,42239,230677,,,0.189104245,43622,230677,,,0.010889686,2512,230677,,,0.033241285,7668,230677,,,0.050876334,11736,230677,,,0.003246964,749,230677,,,0.105359442,24304,230677,,,0.769998743,177621,230677,,,0.016311912,3516,215548,0.01278617,0.019837654,0.503864711,116230,230677,,,0.285871094,64849,226847,, -53,075,53075,WA,Whitman County,2024,1,5192.583802,377,140817,4402.32178,5982.845823,0,,,,2,,,,2,,,,2,,,,2,5659.619066,4698.02828,6621.209853,,,,,2,,0.157,,,0.133,0.184,3.880400822,,,3.141559857,4.709385033,5.708929199,,,4.81332687,6.628557312,0.056922512,155,2723,0.048219933,0.065625091,0,,,,0.073260073,0.042350902,0.104169244,,,,0.072115385,0.036960526,0.107270243,0.053097345,0.043352618,0.062842072,,,,,,,0.14,,,0.111,0.172,0.351,,,0.298,0.403,7.5,0.103248626,0.108,,,0.219,,,0.183,0.259,0.811102078,38911,47973,,,0.192901196,,,0.157670289,0.228018103,0.285714286,6,21,0.169385198,0.406827936,741.5,355,47873,,,2.565463553,58,22608,1.948064034,3.316456553,,,,,,,,,,,,,2.359304868,1.693077907,3.200663458,,,,,,,0.071973347,2614,36319,0.057675475,0.08627122,0.000689324,33,47873,,,1450.69697,0.000462001,22,47619,,,2164.5,0.001869002,89,47619,,,535.0449438,1218,,,,,,,,,1211,0.42,,,,,,0.44,,0.33,0.42,0.51,,,,,0.36,0.55,,0.39,0.51,0.958097116,23322,24342,0.946086107,0.970108125,0.877350202,9986,11382,0.811570201,0.943130203,0.046737821,1086,23236,,,0.113,812,,0.065340426,0.160659575,,,,0.39484127,0.121718179,0.667964361,0.234375,0,0.64200419,0.071539658,0,0.14616779,0.072708548,0.039294864,0.106122232,7.347240494,117284,15963,6.337903658,8.35657733,0.152587044,1100,7209,0.114718878,0.19045521,8.773212458,42,47873,,,55.6200622,137,246314,46.30625469,64.93386971,,,,,,,,,,,,,65.20895329,53.82277374,76.59513284,,,,8.5,,,,,0,,,,,0.262374899,4850,18485,0.233352834,0.291396963,0.250915141,0.220511501,0.281318782,0.01325399,0.006410587,0.020097392,0.012713011,0.006875532,0.018550489,0.616464696,13786,22363,0.585588344,0.647341048,,,,0.392390012,0.284515458,0.500264566,,,,0.608579089,0.489997203,0.727160974,0.656098433,0.62318235,0.689014515,0.169,,22363,0.149026999,0.188973001,78.91050039,,,78.11286141,79.70813936,,,,93.2917362,74.3796604,112.203812,,,,87.72414456,81.1011424,94.34714672,78.29226947,77.40655359,79.17798535,,,,311.6168326,377,140817,278.8936973,344.3399678,,,,,,,,,,,,,328.0493687,291.6679543,364.4307831,,,,28.03532451,14,49937,15.32717279,47.03851077,,,,,,,,,,,,,34.0947835,18.15403627,58.30311815,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.118,,,0.101,0.136,0.184,,,0.16,0.208,0.097,,,0.082,0.112,70.2,30,42717,,,0.108,5190,,,,0.103248626,4623.060494,44776,,,8.814933854,13,147477,4.693581027,15.07380535,,,,,,,,,,,,,10.38125146,5.364144117,18.13395712,,,,0.304,,,0.288,0.319,0.084159945,2452,29135,0.066287605,0.102032286,0.025701858,195,7587,0.017361433,0.034042284,0.000777001,37,47619,,,1287,,,,,,,,,,,3.420085001,,,,,,,,3.07140434,3.444316481,3.19655688,,,,,,,,2.734737083,3.244286103,0.080324528,,,,,5824.804222,,,,,0.841413651,46807,55629,0.696501191,0.986326111,54412,,,49044.34043,59779.65957,,,,22500,7269.191489,37730.80851,,,,47744,8622.638298,86865.3617,54075,47189.38298,60960.61702,,,,,,0.365103599,1674,4585,,,47.97434245,,,,,0.377692421,,54412,,,6.066734075,12,1978,,,,,,,,,,,,,,,,,,,,,,,,,,19.16072547,40,246314,13.2693594,26.77519332,16.23943422,,,,,,,,,,,,,20.06859334,13.54019565,28.64916485,,,,10.55563224,26,246314,6.895289434,15.46644693,,,,,,,,,,,,,13.45581576,8.789785595,19.71588774,,,,6.698860029,23,343342,4.246502623,10.05157915,,,,,,,,,,,,,8.145161589,5.104529403,12.33187253,,,,19.39393939,,3300,,,19,45,0.546103141,21126,38685,,,0.597,,,,,82.96937241,,,,,0.452207315,8123,17963,0.426049537,0.478365094,0.255763477,4360,17047,0.222156687,0.289370268,0.846517842,15206,17963,0.825155732,0.867879953,47619,,,,,0.152943153,7283,47619,,,0.117201117,5581,47619,,,0.022722023,1082,47619,,,0.01018501,485,47619,,,0.082257082,3917,47619,,,0.003024003,144,47619,,,0.07005607,3336,47619,,,0.776475777,36975,47619,,,0.012900513,583,45192,0.007316995,0.018484032,0.49037149,23351,47619,,,0.318554187,15282,47973,, -53,077,53077,WA,Yakima County,2024,1,9421.656512,3588,714394,8995.727115,9847.58591,0,32020.81591,27806.26407,36235.36775,,4408.085033,1903.098241,8685.684809,1,14184.74826,9347.838484,20638.06399,,7245.636441,6720.375515,7770.897368,,9716.567873,9010.674094,10422.46165,,,,,2,,0.228,,,0.196,0.261,4.516864822,,,3.722548086,5.324667004,5.246770622,,,4.436328585,6.047289718,0.068533851,1730,25243,0.065416959,0.071650743,0,0.089808275,0.072007297,0.107609252,0.120535714,0.077897497,0.163173932,0.115107914,0.062050458,0.168165369,0.068040959,0.063989941,0.072091978,0.061280532,0.055629034,0.06693203,,,,0.062211982,0.039487156,0.084936807,0.16,,,0.131,0.191,0.398,,,0.347,0.448,8,0.054737128,0.107,,,0.278,,,0.236,0.321,0.749700072,192469,256728,,,0.159876496,,,0.133716142,0.18934503,0.39,78,200,0.35589615,0.423762364,686.6,1758,256035,,,28.70442203,1887,65739,27.40927544,29.99956863,47.19659333,39.17536455,55.2178221,,,,26.54867257,13.71808652,46.37518816,29.88979441,28.2593129,31.52027592,14.90114223,13.07930711,16.72297735,,,,19.69796454,13.29013396,28.1200692,0.152658221,32631,213752,0.138360348,0.166956093,0.000617103,158,256035,,,1620.474684,0.00071206,183,257001,,,1404.377049,0.003766522,968,257001,,,265.4969008,2455,,,,,5740,,,2473,2346,0.35,,,,,0.22,0.3,0.15,0.27,0.37,0.44,,,,,0.48,0.43,0.41,0.29,0.46,0.756659139,117945,155876,0.743115875,0.770202403,0.482704716,31496,65249,0.456521809,0.508887622,0.064046315,8452,131967,,,0.206,14986,,0.160723404,0.251276596,0.329472844,0.225802959,0.433142728,0.057842047,0,0.162831986,0.110183639,0.016904561,0.203462718,0.245712798,0.219253523,0.272172072,0.108507471,0.077775381,0.139239561,4.027662374,116335,28884,3.790446108,4.264878639,0.239010147,17926,75001,0.214012748,0.264007545,7.420860429,190,256035,,,87.19274277,1099,1260426,82.03763719,92.34784835,331.7587609,278.8423965,384.6751252,,,,122.3644578,65.15392028,209.2469495,59.46294578,53.46839571,65.45749584,100.3785382,91.85669903,108.9003774,,,,9.8,,,,,1,,,,,0.203605324,17055,83765,0.189276203,0.217934445,0.123795761,0.110584768,0.137006755,0.082074852,0.073009802,0.091139903,0.012535068,0.007709607,0.01736053,0.798613734,84570,105896,0.788050955,0.809176514,0.832305795,0.626878964,1,0.753834916,0.628024388,0.879645444,,,,0.775143499,0.759167902,0.791119096,0.831847624,0.810868512,0.852826736,0.2,,105896,0.184881695,0.215118305,75.90189588,,,75.53262263,76.27116913,59.87227933,57.82324163,61.92131703,84.33819445,79.96089028,88.71549862,70.71309453,66.82019994,74.60598912,78.91893759,78.15214122,79.68573395,75.62451661,75.0895787,76.15945453,,,,463.0900088,3588,714394,447.5902163,478.5898013,1343.904246,1198.875037,1488.933455,228.9824476,145.1552294,343.5861007,743.7381879,538.2470144,1001.810458,352.5089355,329.2141438,375.8037273,484.3442301,461.6967689,506.9916912,,,,49.41712349,161,325798,41.78367824,57.05056875,152.3901187,91.74880626,237.9760473,,,,,,,44.6942819,36.24405178,54.52323362,41.999664,29.25430485,58.41136555,,,,4.216145128,109,25853,3.424631542,5.007658715,,,,,,,,,,4.944620253,3.889257496,6.198124304,3.776751993,2.488903362,5.494975863,,,,,,,0.143,,,0.123,0.163,0.175,,,0.152,0.198,0.119,,,0.103,0.137,133.2,270,202744,,,0.107,27340,,,,0.054737128,13313.76627,243231,,,28.59827593,217,758787,24.79317609,32.40337577,102.8390936,68.33583081,148.6311233,,,,,,,16.29907509,12.52465683,20.85359738,36.74863301,30.06106418,43.43620185,,,,0.317,,,0.306,0.328,0.204939372,28969,141354,0.184684053,0.225194691,0.052801767,4017,76077,0.039695384,0.06590815,0.001062253,273,257001,,,941.3956044,,,,,,0.102960103,1600,15540,0.076417021,0.129503185,2.652423473,,,,,,3.645434388,2.93494898,2.509074344,3.215643483,2.733078707,,,,,,3.751124143,2.482854481,2.576782222,3.370500415,0.240258656,,,,,-5782.466567,,,,,0.806576822,40937,50754,0.759656559,0.853497084,63058,,,58840.12766,67275.87234,56731,45641.80851,67820.19149,69861,28219.6383,111502.3617,49143,41877.29787,56408.70213,59131,55687.59575,62574.40426,69546,65730.85106,73361.14894,,,,,,0.73507477,38243,52026,,,69.30971801,,,,,0.323051794,,63058,,,4.175890521,83,19876,,,10.40427724,183,1758892,8.896828882,11.9117256,35.96616053,22.79946057,53.96690002,,,,,,,12.30418684,9.983603817,14.62476987,5.861485114,4.258964057,7.868770178,,,,13.73642561,166,1260426,11.61411498,15.85873625,13.17015041,32.51309891,17.31185584,55.59838933,,,,,,,6.842244863,4.910113046,9.282277757,19.10056553,15.09899961,23.10213145,,,,16.81971016,212,1260426,14.55555259,19.08386774,46.13863562,28.56054264,70.52780564,,,,,,,14.78708175,11.94946726,18.09564312,16.38448935,13.12330431,20.21020708,,,,16.99933822,299,1758892,15.07246788,18.92620856,107.8984816,83.95145906,136.5524341,,,,,,,14.58273996,12.05640915,17.10907077,12.25583251,9.879930777,15.0306906,,,,13.77245509,,33400,,,286,174,0.653218797,96193,147260,,,0.644,,,,,101.0096573,,,,,0.623249725,53324,85558,0.609650214,0.636849237,0.132609407,10942,82513,0.118929037,0.146289777,0.871969892,74604,85558,0.858805174,0.885134609,257001,,,,,0.288177867,74062,257001,,,0.144050023,37021,257001,,,0.008677009,2230,257001,,,0.068871327,17700,257001,,,0.016392932,4213,257001,,,0.003206213,824,257001,,,0.526048537,135195,257001,,,0.400263034,102868,257001,,,0.109199916,25864,236850,,,0.497344368,127818,257001,,,0.304322084,78128,256728,, -54,000,54000,WV,West Virginia,2024,,12553.94856,40230,4915459,12360.90988,12746.98724,0,4419.615101,2283.679615,7720.178151,1,2889.922139,2055.017148,3950.618699,,17217.79183,15990.14156,18445.4421,,5560.218503,4549.855941,6570.581065,,12715.89616,12512.81703,12918.97528,,,,,2,,0.207,,,0.195,0.22,4.261820252,,,3.997065418,4.526575087,6.171155873,,,5.833489979,6.508821767,0.096087819,12062,125531,0.09445748,0.097718158,0,,,,0.082324455,0.067019593,0.097629318,0.154639175,0.143666392,0.165611958,0.078254327,0.068044031,0.088464622,0.093930497,0.092237692,0.095623301,,,,0.107421875,0.095426728,0.119417022,0.241,,,0.226,0.255,0.41,,,0.394,0.427,6.8,0.075040693,0.117,,,0.282,,,0.268,0.296,0.57814169,1037022,1793716,,,0.143429329,,,0.131062881,0.156752123,0.256227758,360,1405,0.242980706,0.269635163,293.1,5226,1782959,,,24.32833597,8818,362458,23.82054681,24.83612514,,,,,,,19.03299052,16.82325309,21.24272795,21.90765083,18.83272548,24.98257617,24.70088649,24.15855266,25.24322032,,,,26.09688468,23.23751869,28.95625068,0.076562135,105912,1383347,0.070604688,0.082519582,0.00075829,1352,1782959,,,1318.756657,0.000586427,1041,1775156,,,1705.241114,0.001793082,3183,1775156,,,557.6990261,3958,,,,,,1191,4761,2931,3951,0.4,,,,,0.36,0.33,0.4,0.32,0.4,0.39,,,,,0.14,0.44,0.32,0.3,0.39,0.884390368,1124528,1271529,0.881465569,0.887315167,0.570923584,243234,426036,0.560227858,0.58161931,0.039058948,30666,785121,,,0.227,78339,,0.211510638,0.242489362,0.226586103,0.024533162,0.428639044,0.082630691,0.028753034,0.136508349,0.389337801,0.3365701,0.442105501,0.268122271,0.215320288,0.320924253,0.208809243,0.199202977,0.218415508,5.069205403,112217,22137,4.958676922,5.179733883,0.241351717,86562,358655,0.230399509,0.252303925,12.73164442,2270,1782959,,,142.3579944,12786,8981582,139.8904181,144.8255707,,,,28.14522938,17.42234059,43.02297285,178.4298802,163.7169413,193.1428191,50.60501822,40.06446949,63.06895169,146.0351977,143.428372,148.6420234,,,,7.3,,,,,0.454545455,,,,,0.109563015,80445,734235,0.105874708,0.113251321,0.093583703,0.090387175,0.096780231,0.012979496,0.011828741,0.014130251,0.007899378,0.006883359,0.008915398,0.804083698,581527,723217,0.801086809,0.807080587,0.704225352,0.540172602,0.868278103,0.703604994,0.663939052,0.743270935,0.689916567,0.650882256,0.728950878,0.713728042,0.669042174,0.758413909,0.811524805,0.807183791,0.815865819,0.345,,723217,0.337655166,0.352344834,72.94294101,,,72.80638139,73.07950063,,,,87.79012372,85.18428498,90.39596245,69.5050931,68.68937845,70.32080776,97.61983576,91.61993161,103.6197399,72.7435459,72.60189485,72.88519695,,,,587.1303063,40230,4915459,580.9803111,593.2803014,173.0017619,104.1583619,270.1636813,156.5743966,123.5660653,195.6911311,756.6322668,718.4068337,794.8576998,221.1580464,187.5230229,254.79307,595.246337,588.8129565,601.6797175,,,,60.58739981,976,1610896,56.78626321,64.38853641,,,,,,,102.2528079,78.57386515,130.8257601,46.73729191,28.93112032,71.44291537,60.58331471,56.53890197,64.62772745,,,,7.04477519,905,128464,6.585789738,7.503760642,,,,,,,19.0023753,15.0677018,23.65010094,8.921644686,5.655557423,13.38684752,6.694617835,6.225994586,7.163241083,,,,,,,0.139673157,,,0.129622384,0.150368618,0.206414126,,,0.192747742,0.220784477,0.131,,,0.122,0.14,143.3,2196,1532546,,,0.117,208720,,,,0.075040693,139049.9533,1852994,,,69.04988588,3701,5359893,66.82524715,71.27452462,,,,,,,112.0875651,97.03454283,127.1405874,27.87960143,18.37283301,40.56335634,69.85594144,67.52015655,72.19172632,,,,0.405438979,,,0.387910454,0.423211917,0.092216011,94858,1028650,0.083875586,0.100556437,0.032515527,12120,372745,0.025366591,0.039664463,0.001919268,3407,1775156,,,521.031993,0.911473982,16587.915,18199,,,0.089218276,8174,91618,0.079771397,0.098665155,2.916960567,,,,,,3.454352328,2.548893269,2.745187788,2.941101598,2.814862412,,,,,,3.669446248,2.45870984,2.628109261,2.835670173,0.158016042,,,,,1615.928,,,,,0.75984431,41777,54981,0.743086579,0.776602041,54097,,,52565.93617,55628.06383,42222,34194.93617,50249.06383,76737,62879.97872,90594.02128,38004,34970.46809,41037.53192,61786,54772.89362,68799.10638,55825,55093.42553,56556.57447,,,,,,,,,,,61.30174624,,,,,0.289032796,,,,,3.841273722,,,,,5.633330099,713,12656812,5.219829154,6.046831045,,,,,,,26.66810092,21.87656574,31.45963609,,,,4.970752829,4.565861051,5.375644607,,,,20.17555288,1846,8981582,19.21692009,21.13418568,20.55317204,,,,,,,11.05596204,7.78441758,15.23918731,6.775632048,3.382371106,12.12347736,21.04581363,20.02239603,22.06923122,,,,18.20391998,1635,8981582,17.32152686,19.08631309,,,,,,,29.68567919,23.98905053,36.32775318,,,,18.36341736,17.43901728,19.28781744,,,,15.8807763,2010,12656812,15.1865041,16.57504849,,,,,,,15.4630165,12.03114981,19.56943703,8.481964046,5.026949452,13.40515999,16.44040012,15.7040505,17.17674973,,,,,,,,,,,0.556274479,794652,1428525,,,,,,,,49.25119863,,,,,0.74161639,531027,716040,0.736664365,0.746568415,0.104090839,70495,677245,0.100282272,0.107899406,0.826815541,592033,716040,0.821635177,0.831995905,1775156,,,,,0.198248492,351922,1775156,,,0.21186814,376099,1775156,,,0.036015426,63933,1775156,,,0.002753561,4888,1775156,,,0.009177222,16291,1775156,,,0.000347575,617,1775156,,,0.020724939,36790,1775156,,,0.911619035,1618266,1775156,,,0.002533791,4314,1702587,0.002165066,0.002902516,0.500716557,888850,1775156,,,0.553520736,992859,1793716,, -54,001,54001,WV,Barbour County,2024,1,11990.05223,367,44215,10021.9471,13958.15736,0,,,,2,,,,2,,,,2,,,,2,12391.45993,10343.12145,14439.79841,,,,,2,,0.235,,,0.205,0.271,4.988766508,,,4.047161081,5.986356729,6.352081012,,,5.215321126,7.542630929,0.077464789,88,1136,0.061919079,0.093010498,0,,,,,,,,,,,,,0.076714801,0.06104391,0.092385693,,,,,,,0.244,,,0.205,0.293,0.407,,,0.335,0.484,7.7,0.052718824,0.125,,,0.321,,,0.271,0.378,0.145231167,2246,15465,,,0.126073136,,,0.099441664,0.157110902,0.315789474,6,19,0.192486042,0.440144871,245.7,38,15468,,,23.14814815,100,4320,18.61111111,27.68518519,,,,,,,,,,,,,24.4203256,19.84763563,29.73087019,,,,,,,0.083841594,976,11641,0.069543722,0.098139467,0.000323248,5,15468,,,3093.6,0.000259504,4,15414,,,3853.5,0.001362398,21,15414,,,734,2655,,,,,,,,,2666,0.44,,,,,,,,,0.44,0.35,,,,,,,,,0.35,0.879068013,9319,10601,0.8508181,0.907317925,0.300090389,996,3319,0.221644879,0.378535898,0.043772869,323,7379,,,0.275,841,,0.176106383,0.373893617,,,,,,,,,,0.127659575,0,0.544967596,0.281432749,0.20168381,0.361181687,4.132826434,88054,21306,3.015837299,5.249815569,0.194015444,603,3108,0.092764045,0.295266843,5.171967934,8,15468,,,132.7025865,108,81385,107.6747343,157.7304387,,,,,,,,,,,,,137.7516865,111.6504485,163.8529245,,,,6.7,,,,,0,,,,,0.089437163,580,6485,0.056906032,0.121968294,0.086427457,0.050988695,0.121866219,0.00385505,0,0.011137545,0.00154202,0,0.006350182,0.845105773,4714,5578,0.795892946,0.8943186,,,,,,,,,,,,,0.804403318,0.741262563,0.867544074,0.407,,5578,0.320602642,0.493397358,73.1087531,,,71.69437712,74.52312908,,,,,,,,,,,,,72.69503486,71.24983666,74.14023305,,,,590.4075883,367,44215,525.4812729,655.3339038,,,,,,,,,,,,,609.9744621,542.4762148,677.4727094,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.156,,,0.137,0.18,0.216,,,0.191,0.246,0.128,,,0.11,0.148,82.6,11,13320,,,0.125,1940,,,,0.052718824,874.5525751,16589,,,35.15810808,17,48353,20.48089357,56.29153686,,,,,,,,,,,,,36.900369,21.49582477,59.08106537,,,,0.417,,,0.398,0.435,0.102316378,879,8591,0.083252548,0.121380207,0.033395755,107,3204,0.021480862,0.045310649,0.001751654,27,15414,,,570.8888889,0.925,116.55,126,,,,,,,,2.642809495,,,,,,,,,2.662415539,2.569729719,,,,,,,,,2.587414047,0.051725294,,,,,-1194.966,,,,,0.706856414,34918,49399,0.465242239,0.94847059,46302,,,39442.59575,53161.40426,,,,,,,,,,,,,44686,41073.40426,48298.59575,,,,,,,,,,,,,,,,0.293378256,,46302,,,3.802281369,3,789,,,,,,,,,,,,,,,,,,,,,,,,,,28.47910626,22,81385,17.39577797,43.98366982,27.03200836,,,,,,,,,,,,,29.83274301,18.22261446,46.074252,,,,22.11709775,18,81385,13.10799383,34.95454969,,,,,,,,,,,,,23.17318091,13.73389564,36.62361639,,,,24.3647755,28,114920,16.19021637,35.21388439,,,,,,,,,,,,,24.6015909,16.21260342,35.79402313,,,,,,1500,,,7,,0.50411476,6677,13245,,,0.478,,,,,0.773200178,,,,,0.751079634,4348,5789,0.716829689,0.785329579,0.104398613,572,5479,0.059601872,0.149195354,0.784245984,4540,5789,0.732712488,0.83577948,15414,,,,,0.202283638,3118,15414,,,0.20838199,3212,15414,,,0.013364474,206,15414,,,0.007850007,121,15414,,,0.003049176,47,15414,,,0.000129752,2,15414,,,0.012585961,194,15414,,,0.946542105,14590,15414,,,0.004936435,73,14788,0,0.013113137,0.505579344,7793,15414,,,1,15465,15465,, -54,003,54003,WV,Berkeley County,2024,1,11091.47686,2325,347388,10424.27167,11758.68204,0,,,,2,,,,2,13504.75429,10597.99939,16411.50919,,7327.134661,4907.097078,10522.9876,,11302.92715,10571.35787,12034.49643,,,,,2,,0.18,,,0.152,0.211,3.851966839,,,3.13034175,4.692513171,5.827261959,,,4.969145448,6.774017334,0.086196855,888,10302,0.080777254,0.091616456,0,,,,0.131386861,0.074817021,0.187956702,0.168345324,0.140526695,0.196163952,0.072727273,0.0529149,0.092539646,0.079355609,0.073568404,0.085142813,,,,0.089775561,0.061796239,0.117754884,0.196,,,0.159,0.239,0.391,,,0.343,0.444,8.2,0.107889416,0.072,,,0.259,,,0.219,0.307,0.498050395,60800,122076,,,0.139131516,,,0.115067152,0.167721597,0.3375,27,80,0.280494415,0.394544498,278.4,351,126069,,,20.26560533,499,24623,18.48746767,22.04374298,,,,,,,20.91152815,14.87014075,28.58674738,26.12562535,19.19612683,34.74154327,19.60477606,17.62313937,21.58641275,,,,23.42225114,16.40465675,32.42626837,0.068135313,7259,106538,0.058603398,0.077667228,0.000420405,53,126069,,,2378.660377,0.000501969,65,129490,,,1992.153846,0.001953819,253,129490,,,511.8181818,3547,,,,,,,2581,1002,3564,0.38,,,,,,0.23,0.45,0.35,0.38,0.43,,,,,,0.48,0.34,0.36,0.43,0.905554512,77146,85192,0.892905663,0.918203362,0.610604903,20774,34022,0.567400233,0.653809572,0.029109389,1747,60015,,,0.13,3772,,0.09187234,0.16812766,,,,,,,0.436464088,0.274355377,0.5985728,0.163822526,0.098039638,0.229605413,0.106699029,0.079376233,0.134021826,3.736881689,129184,34570,3.447717085,4.026046294,0.199273189,5648,28343,0.164077596,0.234468783,7.376912643,93,126069,,,145.4768705,872,599408,135.8209923,155.1327487,,,,,,,155.1452825,120.9433589,196.0167309,61.80469716,36.62938051,97.67806712,155.4690283,144.5372844,166.4007721,,,,8.8,,,,,0,,,,,0.115098468,5260,45700,0.098003174,0.132193762,0.09149967,0.075924832,0.107074508,0.024617068,0.015994838,0.033239297,0.002078775,0.000342526,0.003815023,0.805478241,49197,61078,0.783385127,0.827571355,,,,,,,0.600280505,0.491719589,0.708841421,0.809032258,0.695086667,0.922977849,0.759037522,0.733601716,0.784473327,0.391,,61078,0.356487919,0.425512081,73.75038359,,,73.24216005,74.25860714,,,,,,,71.21831076,69.16912085,73.26750067,83.09550153,76.41057374,89.78042931,73.53690917,72.99251031,74.08130802,,,,531.4879542,2325,347388,509.2264181,553.7494903,,,,,,,617.1680498,529.2933299,705.0427697,271.0717213,193.6576119,369.1227472,546.3909167,521.8854691,570.8963642,,,,67.66904884,82,121178,53.81920272,83.99513207,,,,,,,131.4636284,67.92917516,229.6405023,,,,58.78454928,44.28456742,76.51617107,,,,6.748040091,68,10077,5.240117173,8.55474875,,,,,,,,,,,,,5.55019305,4.063438877,7.403179743,,,,,,,0.127,,,0.109,0.148,0.193,,,0.168,0.22,0.11,,,0.095,0.127,180.8,191,105627,,,0.072,8710,,,,0.107889416,11238.73255,104169,,,70.5020892,259,367365,61.91574734,79.08843107,,,,,,,89.14244964,57.68829327,131.5918406,,,,74.55382655,64.85513647,84.25251663,,,,0.406,,,0.388,0.422,0.083249659,6467,77682,0.070143276,0.096356042,0.029093437,879,30213,0.020753011,0.037433862,0.000988493,128,129490,,,1011.640625,0.96,1299.84,1354,,,0.102300944,618,6041,0.050993646,0.153608241,2.826157162,,,,,,,2.654547695,2.720807173,2.853021892,2.703928686,,,,,,,2.418482304,2.518695827,2.739607224,0.032422651,,,,,1603.988,,,,,0.824556517,47365,57443,0.774145962,0.874967072,70829,,,65124.14894,76533.85106,103125,438.8723404,205811.1277,,,,68813,51967.7234,85658.2766,63894,33972.12766,93815.87234,74240,71685.44681,76794.55319,,,,,,,,,,,31.15442224,,,,,0.288765901,,70829,,,3.374730022,25,7408,,,4.728224103,39,824834,3.36222955,6.463638001,,,,,,,16.30496812,7.818865983,29.98541691,,,,3.762249015,2.457625965,5.512566503,,,,18.2865005,116,599408,14.88316932,21.68983168,19.35242773,,,,,,,,,,,,,19.9538656,16.11061939,23.7971118,,,,14.84798334,89,599408,11.92414985,18.27172116,,,,,,,,,,,,,16.00710716,12.69264045,19.92223046,,,,14.79085489,122,824834,12.16621677,17.41549301,,,,,,,17.93546494,8.953319475,32.09150106,,,,15.48310171,12.54935815,18.41684527,,,,,,12700,,,109,,0.583800623,51535,88275,,,0.698,,,,,62.01079898,,,,,0.753977085,36589,48528,0.7313038,0.776650371,0.103885637,4898,47148,0.086798993,0.120972281,0.894061161,43387,48528,0.877179471,0.91094285,129490,,,,,0.228226118,29553,129490,,,0.15340953,19865,129490,,,0.078345818,10145,129490,,,0.003390223,439,129490,,,0.013390995,1734,129490,,,0.000501969,65,129490,,,0.059479497,7702,129490,,,0.813329215,105318,129490,,,0.005701057,660,115768,0.002870398,0.008531717,0.498887945,64601,129490,,,0.32425702,39584,122076,, -54,005,54005,WV,Boone County,2024,1,16431.83505,622,58956,14309.4221,18554.248,0,,,,2,,,,2,,,,2,,,,2,16740.47125,14567.92111,18913.02138,,,,,2,,0.23,,,0.194,0.269,5.028669556,,,4.042503164,6.07252442,7.304869719,,,6.10753293,8.598373072,0.113170086,171,1511,0.097196228,0.129143944,0,,,,,,,,,,,,,0.111111111,0.095028984,0.127193239,,,,,,,0.247,,,0.201,0.298,0.414,,,0.347,0.486,7.7,0.032884612,0.133,,,0.316,,,0.263,0.375,0.014856252,324,21809,,,0.1214194,,,0.095365096,0.151814605,0.166666667,3,18,0.057993584,0.308188518,276.8,59,21312,,,44.05690684,192,4358,37.82502142,50.28879226,,,,,,,,,,,,,44.11417787,37.79131944,50.4370363,,,,,,,0.077334134,1288,16655,0.06541924,0.089249028,0.000328454,7,21312,,,3044.571429,0.000238459,5,20968,,,4193.6,0.000429226,9,20968,,,2329.777778,7116,,,,,,,,,7185,0.31,,,,,,,,,0.31,0.3,,,,,,,,,0.3,0.844379845,13071,15480,0.814827455,0.873932235,0.489010989,2314,4732,0.400183801,0.577838177,0.045325779,320,7060,,,0.26,1087,,0.157531915,0.362468085,,,,,,,,,,,,,0.166866747,0.115350548,0.218382946,5.20103546,106486,20474,4.010253483,6.391817436,0.215394854,971,4508,0.14303793,0.287751777,6.569069069,14,21312,,,185.897673,201,108124,160.1977397,211.5976063,,,,,,,,,,,,,190.6116643,164.2600324,216.9632962,,,,7.6,,,,,0,,,,,0.111622555,970,8690,0.082286435,0.140958674,0.098016336,0.067871865,0.128160807,0.01150748,0.002444297,0.020570663,0.005638665,0,0.012627171,0.817831669,5733,7010,0.767998834,0.867664504,,,,,,,,,,,,,0.78442256,0.70402692,0.864818201,0.581,,7010,0.498287979,0.663712021,69.80241714,,,68.47064052,71.13419375,,,,,,,,,,,,,69.52404393,68.17629047,70.87179739,,,,733.377632,622,58956,670.3237137,796.4315502,,,,,,,,,,,,,744.993475,680.7119627,809.2749873,,,,71.20695794,14,19661,38.92950652,119.4731759,,,,,,,,,,,,,74.38104346,40.66480861,124.7987521,,,,13.63636364,21,1540,8.441124016,20.84463035,,,,,,,,,,,,,13.34222815,8.149779577,20.60598926,,,,,,,0.154,,,0.133,0.18,0.227,,,0.199,0.259,0.123,,,0.105,0.143,87.2,16,18356,,,0.133,2940,,,,0.032884612,809.9151058,24629,,,86.17447982,55,63824,64.91841153,112.1679305,,,,,,,,,,,,,88.45145623,66.63374177,115.1317283,,,,0.427,,,0.408,0.444,0.093461725,1155,12358,0.076780874,0.110142576,0.031945362,145,4539,0.021221958,0.042668767,0.001478443,31,20968,,,676.3870968,0.89,255.43,287,,,,,,,,2.843313066,,,,,,,,,2.838848621,2.697472464,,,,,,,,,2.677796517,,,,,,593.2334,,,,,0.752503196,42387,56328,0.635782606,0.869223785,46508,,,39967.91489,53048.08511,,,,,,,,,,,,,56734,50880.21277,62587.78723,,,,,,,,,,,,,,,,0.306828933,,46508,,,1.848428836,2,1082,,,7.776452901,12,154312,4.018206691,13.58389824,,,,,,,,,,,,,7.96654053,4.116427743,13.91594307,,,,18.72496868,21,108124,11.27365434,29.2413581,19.42214495,,,,,,,,,,,,,19.16405343,11.53801205,29.92704333,,,,24.97132922,27,108124,16.4562633,36.33197296,,,,,,,,,,,,,25.60455192,16.87356105,37.25327875,,,,16.84898129,26,154312,11.00631397,24.68766142,,,,,,,,,,,,,17.26083782,11.27535233,25.29112666,,,,22.72727273,,2200,,,43,7,0.524105845,9012,17195,,,0.506,,,,,4.980811407,,,,,0.790665666,6319,7992,0.760470958,0.820860374,0.095231735,713,7487,0.06428848,0.126174991,0.843218218,6739,7992,0.811304918,0.875131518,20968,,,,,0.20397749,4277,20968,,,0.225009538,4718,20968,,,0.007916826,166,20968,,,0.001716902,36,20968,,,0.001526135,32,20968,,,9.53834E-05,2,20968,,,0.006629149,139,20968,,,0.972720336,20396,20968,,,0.002907822,60,20634,0,0.008000107,0.498092331,10444,20968,,,1,21809,21809,, -54,007,54007,WV,Braxton County,2024,1,10643.80251,263,36061,8457.848797,12829.75622,0,,,,2,,,,2,,,,2,,,,2,11031.3889,8754.207984,13308.56982,,,,,2,,0.246,,,0.208,0.288,5.233422793,,,4.220089426,6.407689354,6.604843364,,,5.390465541,7.964627523,0.08531995,68,797,0.065925083,0.104714817,0,,,,,,,,,,,,,0.086787565,0.06692835,0.10664678,,,,,,,0.268,,,0.217,0.323,0.408,,,0.332,0.486,7.2,0.094537936,0.128,,,0.337,,,0.278,0.398,,,12447,,,0.114381346,,,0.089657711,0.143486141,0.136363636,3,22,0.044872665,0.263216149,253.1,31,12247,,,21.77554439,52,2388,16.26301809,28.55572937,,,,,,,,,,,,,21.84359983,16.21274082,28.7980632,,,,,,,0.096429359,875,9074,0.079748508,0.11311021,0.000489916,6,12247,,,2041.166667,0.000492409,6,12185,,,2030.833333,0.000820681,10,12185,,,1218.5,3471,,,,,,,,,3498,0.43,,,,,,,,,0.43,0.27,,,,,,,,,0.28,0.825656479,7672,9292,0.784781894,0.866531063,0.325396825,902,2772,0.229726964,0.421066687,0.061045934,307,5029,,,0.272,588,,0.167148936,0.376851064,,,,,,,,,,,,,0.197596154,0.104776223,0.290416084,3.610951416,76628,21221,2.840678091,4.381224741,0.169827223,403,2373,0.080150185,0.259504261,8.981791459,11,12247,,,146.5587994,100,68232,117.8332747,175.2843241,,,,,,,,,,,,,150.1638151,122.0457391,182.8190568,,,,6.9,,,,,0,,,,,0.074906367,400,5340,0.045424595,0.104388139,0.052190476,0.02314061,0.081240342,0.0082397,0,0.019553574,0.017602996,0.002645832,0.032560161,0.81689008,3047,3730,0.776195947,0.857584214,,,,,,,,,,,,,0.866433363,0.830927734,0.901938991,0.436,,3730,0.322139491,0.549860509,75.10467183,,,73.43272973,76.77661393,,,,,,,,,,,,,74.69091884,72.9824731,76.39936459,,,,480.3055319,263,36061,415.6205739,544.9904899,,,,,,,,,,,,,492.8401866,425.9040434,559.7763298,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.166,,,0.142,0.192,0.221,,,0.193,0.254,0.136,,,0.116,0.157,75.1,8,10659,,,0.128,1620,,,,0.094537936,1372.974438,14523,,,55.12955445,22,39906,34.54939827,83.46680797,,,,,,,,,,,,,57.16067346,35.82228973,86.54194655,,,,0.403,,,0.385,0.42,0.115119519,785,6819,0.093672711,0.136566328,0.041211102,98,2378,0.026913229,0.055508974,0.000656545,8,12185,,,1523.125,0.925,137.825,149,,,,,,,,2.61185422,,,,,,,,,2.653787993,2.330967356,,,,,,,,,2.329325574,0.080858213,,,,,-1004.79,,,,,0.830837215,34783,41865,0.59382523,1.0678492,43328,,,38168.85106,48487.14894,,,,,,,24142,582.6808511,47701.31915,,,,44697,39708.23404,49685.76596,,,,,,,,,,,57.73731968,,,,,0.311276773,,43328,,,1.689189189,1,592,,,,,,,,,,,,,,,,,,,,,,,,,,26.24962018,19,68232,15.29137109,42.02818476,27.84617188,,,,,,,,,,,,,27.15549281,15.81907527,43.47857458,,,,30.77734787,21,68232,19.05166342,47.04644556,,,,,,,,,,,,,31.85293047,19.717466,48.69058782,,,,26.77155625,26,97118,17.48806938,39.22653276,,,,,,,,,,,,,27.67694617,18.07950013,40.55313876,,,,,,1200,,,6,,0.504138852,5664,11235,,,0.486,,,,,9.189532126,,,,,0.814977009,3722,4567,0.788359418,0.8415946,0.070973827,301,4241,0.031367424,0.11058023,0.763958835,3489,4567,0.710997401,0.816920269,12185,,,,,0.180796061,2203,12185,,,0.245711941,2994,12185,,,0.008206812,100,12185,,,0.005580632,68,12185,,,0.00303652,37,12185,,,0.000246204,3,12185,,,0.012228149,149,12185,,,0.959212146,11688,12185,,,0,0,11968,0,0.007964501,0.483709479,5894,12185,,,1,12447,12447,, -54,009,54009,WV,Brooke County,2024,1,10640.96865,505,59135,8994.964793,12286.9725,0,,,,2,,,,2,,,,2,,,,2,10788.90975,9082.042045,12495.77745,,,,,2,,0.183,,,0.155,0.215,4.273602271,,,3.462958984,5.218653991,5.843765225,,,4.82494196,7.003930811,0.087308003,108,1237,0.071576857,0.10303915,0,,,,,,,,,,,,,0.083191851,0.067420712,0.098962989,,,,,,,0.202,,,0.161,0.247,0.404,,,0.331,0.481,8.2,0.048097477,0.102,,,0.27,,,0.222,0.324,0.657165655,14825,22559,,,0.133781497,,,0.10600284,0.16522264,0.5,4,8,0.315552499,0.64971552,284.6,63,22140,,,16.54000894,74,4474,12.98746452,20.76446659,,,,,,,,,,,,,16.67875272,12.97706516,21.10802903,,,,,,,0.065008026,1053,16198,0.053093132,0.076922919,0.000225836,5,22140,,,4428,0.000230065,5,21733,,,4346.6,0.000322091,7,21733,,,3104.714286,5255,,,,,,,,,5253,0.36,,,,,,,,,0.36,0.44,,,,,,,,,0.44,0.925055378,15034,16252,0.905710836,0.94439992,0.625962361,2927,4676,0.520690252,0.73123447,0.045459148,449,9877,,,0.172,632,,0.104085106,0.239914894,,,,,,,,,,0.189189189,0,0.821489311,0.121993127,0.071079523,0.172906732,3.991687253,101800,25503,3.397121599,4.586252906,0.26748341,1048,3918,0.161796294,0.373170525,14.00180669,31,22140,,,107.7908314,119,110399,88.42373958,127.1579233,,,,,,,,,,,,,110.026653,90.0038452,130.0494608,,,,9.6,,,,,0,,,,,0.060265577,590,9790,0.039240665,0.081290489,0.046058091,0.027613166,0.064503016,0.014811032,0.004114297,0.025507767,0.004596527,0.000211359,0.008981695,0.823421676,7643,9282,0.785830276,0.861013077,,,,,,,,,,,,,0.848329342,0.820967299,0.875691385,0.343,,9282,0.282024142,0.403975858,73.94293572,,,72.79508456,75.09078687,,,,,,,,,,,,,73.76913778,72.5915339,74.94674167,,,,535.8595237,505,59135,483.6648721,588.0541752,,,,,,,,,,,,,542.1350746,488.5352592,595.7348901,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.13,,,0.113,0.151,0.192,,,0.166,0.221,0.108,,,0.093,0.126,92.3,18,19492,,,0.102,2310,,,,0.048097477,1157.658167,24069,,,57.79203991,38,65753,40.89708705,79.32409003,,,,,,,,,,,,,57.40345059,40.20467107,79.47057194,,,,0.409,,,0.39,0.427,0.076213592,942,12360,0.06191572,0.090511465,0.029928271,121,4043,0.019204867,0.040651675,0.000414117,9,21733,,,2414.777778,0.92,195.96,213,,,,,,,,2.799266128,,,,,,,,,2.793823099,2.556437633,,,,,,,,,2.569018781,0.030498654,,,,,2593.425,,,,,0.845108008,43387,51339,0.723584119,0.966631896,61551,,,56490.74468,66611.25532,,,,69375,50466.06383,88283.93617,41543,34405.97872,48680.02128,76094,53592.7234,98595.2766,53435,45385.29787,61484.70213,,,,,,,,,,,,,,,,0.238777599,,61551,,,3.910068426,4,1023,,,,,,,,,,,,,,,,,,,,,,,,,,11.83830324,16,110399,6.472110543,19.86266128,14.4928849,,,,,,,,,,,,,11.92146597,6.347678542,20.38606988,,,,10.86966367,12,110399,5.616513835,18.98711496,,,,,,,,,,,,,10.43356192,5.20839652,18.66852433,,,,8.932787157,14,156726,4.883637862,14.98769899,,,,,,,,,,,,,9.345357694,5.109194014,15.67992225,,,,,,1800,,,6,,0.588729282,10656,18100,,,0.615,,,,,46.67948934,,,,,0.74689878,7165,9593,0.705725402,0.788072159,0.046298318,424,9158,0.027333926,0.065262711,0.824663817,7911,9593,0.791746062,0.857581573,21733,,,,,0.172318594,3745,21733,,,0.252565223,5489,21733,,,0.014724152,320,21733,,,0.00216261,47,21733,,,0.005659596,123,21733,,,0.000184052,4,21733,,,0.011825335,257,21733,,,0.950950168,20667,21733,,,0.007714246,165,21389,0.001387816,0.014040675,0.503519993,10943,21733,,,0.416286183,9391,22559,, -54,011,54011,WV,Cabell County,2024,1,16115.54608,2255,254200,15162.03225,17069.05991,0,,,,2,,,,2,26350.01391,20695.93953,32004.08829,,,,,2,15995.01553,15001.1049,16988.92617,,,,,2,,0.21,,,0.177,0.246,4.690211303,,,3.854715712,5.564241152,6.191859259,,,5.271138147,7.124828955,0.113443566,789,6955,0.105990231,0.120896901,0,,,,,,,0.164285714,0.128848446,0.199722983,,,,0.111500478,0.103714514,0.119286442,,,,,,,0.215,,,0.17,0.26,0.424,,,0.373,0.478,7.8,0.029962096,0.127,,,0.294,,,0.247,0.344,0.785871754,74147,94350,,,0.138655026,,,0.1132308,0.165783922,0.290909091,16,55,0.220724209,0.362941414,538.4,503,93418,,,19.26940639,422,21900,17.43088714,21.10792565,,,,,,,16.17076326,10.46486536,23.87123654,,,,20.77852349,18.70830934,22.84873764,,,,,,,0.079612872,5824,73154,0.067697978,0.091527765,0.001680618,157,93418,,,595.0191083,0.000625472,58,92730,,,1598.793103,0.003440095,319,92730,,,290.6896552,3810,,,,,,5424,5585,,3769,0.35,,,,,,0.33,0.37,,0.35,0.41,,,,,,0.47,0.37,,0.41,0.897998534,56353,62754,0.886481002,0.909516066,0.672841695,15182,22564,0.623839167,0.721844223,0.035439805,1471,41507,,,0.222,3917,,0.151702128,0.292297872,,,,,,,0.500632111,0.25072144,0.750542782,0.347629797,0.133619648,0.561639946,0.210760571,0.168540682,0.25298046,5.946367375,104109,17508,5.110570688,6.782164062,0.288350257,5282,18318,0.242273568,0.334426945,14.34413068,134,93418,,,211.5519399,984,465134,198.333642,224.7702377,,,,,,,316.3412871,246.6035526,399.6781853,,,,214.5497203,200.5168712,228.5825695,,,,7.1,,,,,0,,,,,0.156635704,6155,39295,0.137407358,0.175864051,0.147082123,0.127194365,0.166969881,0.012215295,0.00463745,0.019793139,0.005344191,0.002845929,0.007842454,0.785793759,31075,39546,0.761482662,0.810104857,,,,,,,0.792235047,0.652956101,0.931513993,0.747517731,0.51480217,0.980233291,0.841705752,0.821869098,0.861542406,0.243,,39546,0.213476057,0.272523943,70.43417094,,,69.81139816,71.05694371,,,,,,,63.29955611,60.19989358,66.39921864,,,,70.48475834,69.84024937,71.12926731,,,,720.4873836,2255,254200,689.07816,751.8966072,,,,,,,1130.808365,945.3115466,1316.305184,,,,719.5791074,686.7307968,752.427418,,,,62.2073029,53,85199,46.59753862,81.36868382,,,,,,,,,,,,,57.61791094,41.52592221,77.88267728,,,,8.465167916,61,7206,6.475182703,10.87386233,,,,,,,,,,,,,6.405368309,4.616426069,8.65819716,,,,,,,0.141,,,0.121,0.163,0.206,,,0.177,0.234,0.12,,,0.104,0.138,351.4,282,80254,,,0.127,12010,,,,0.029962096,2885.919107,96319,,,123.1260291,341,276952,110.0574384,136.1946197,,,,,,,183.4301437,117.5271542,272.9295139,,,,124.4899926,110.631702,138.3482833,,,,0.407,,,0.388,0.425,0.097043256,5317,54790,0.080362405,0.113724107,0.029119171,562,19300,0.019587256,0.038651086,0.003828319,355,92730,,,261.2112676,0.89,767.18,862,,,0.080635894,421,5221,0.04143745,0.119834337,2.943499158,,,,,,,2.299601965,,3.011155046,2.785414077,,,,,,,2.245226938,,2.858140126,0.118029948,,,,,779.4424,,,,,0.82256212,42969,52238,0.728726952,0.916397287,51017,,,45265.68085,56768.31915,40750,23840.38298,57659.61702,,,,17128,8990.12766,25265.87234,41809,33171.89362,50446.10638,52526,49507.95745,55544.04255,,,,,,,,,,,59.69465912,,,,,0.350647823,,51017,,,4.839334108,25,5166,,,9.574977392,63,657965,7.357675529,12.25055547,,,,,,,69.42253077,43.50673043,105.1065459,,,,6.586536107,4.683671046,9.004011685,,,,17.8627683,83,465134,14.0970174,22.32539551,17.84432013,,,,,,,,,,,,,19.37413211,15.23898392,24.28564237,,,,17.62932832,82,465134,14.02112799,21.88264482,,,,,,,72.3065799,41.32945794,117.4213557,,,,15.29084867,11.7758167,19.52607238,,,,11.09481507,73,657965,8.696563939,13.95006424,,,,,,,,,,,,,11.31533126,8.769226306,14.37007072,,,,,,8100,,,48,,0.503673745,37360,74175,,,0.579,,,,,117.4831126,,,,,0.646265507,25110,38854,0.628010074,0.664520939,0.158745247,5845,36820,0.13744183,0.180048665,0.819040511,31823,38854,0.798142484,0.839938537,92730,,,,,0.19484525,18068,92730,,,0.199148064,18467,92730,,,0.047578993,4412,92730,,,0.002307775,214,92730,,,0.012811388,1188,92730,,,0.000237248,22,92730,,,0.016229915,1505,92730,,,0.89516877,83009,92730,,,0.002853003,254,89029,0.00081507,0.004890936,0.512660412,47539,92730,,,0.220286169,20784,94350,, -54,013,54013,WV,Calhoun County,2024,1,12051.33525,159,18201,8580.532929,15522.13756,0,,,,2,,,,2,,,,2,,,,2,12426.94454,8832.429407,16021.45967,,,,,2,,0.264,,,0.226,0.306,5.246029144,,,4.19714286,6.359192894,6.441269623,,,5.202408166,7.770253614,0.086448598,37,428,0.059824209,0.113072988,0,,,,,,,,,,,,,0.086330935,0.059374297,0.113287573,,,,,,,0.277,,,0.224,0.327,0.442,,,0.36,0.529,5.5,0.133811402,0.186,,,0.357,,,0.298,0.415,,,6229,,,0.109483467,,,0.085535482,0.138042479,0.285714286,2,7,0.086061846,0.500925625,64.8,4,6176,,,27.86885246,34,1220,19.29999048,38.94392795,,,,,,,,,,,,,27.91878173,19.21800472,39.20834964,,,,,,,0.092093832,424,4604,0.07660447,0.107583193,0.000647668,4,6176,,,1544,0.000494397,3,6068,,,2022.666667,0.000494397,3,6068,,,2022.666667,2391,,,,,,,,,2396,0.34,,,,,,,,,0.33,0.24,,,,,,,,,0.24,0.867740568,4094,4718,0.83649437,0.898986766,0.335809807,452,1346,0.213117324,0.45850229,0.082113821,202,2460,,,0.273,297,,0.163382979,0.382617021,,,,,,,,,,,,,0.488764045,0.319071852,0.658456238,4.428993525,70452,15907,2.801486711,6.056500339,0.179229481,214,1194,0.029037434,0.329421527,6.476683938,4,6176,,,132.2181024,46,34791,96.80026849,176.36042,,,,,,,,,,,,,136.4094656,99.86887317,181.9511112,,,,7.5,,,,,0,,,,,0.076376554,215,2815,0.036008076,0.116745032,0.050362319,0.011228254,0.089496383,0.019538188,0,0.045283284,0.008880995,0,0.023452712,0.904682274,1623,1794,0.821810585,0.987553963,,,,,,,,,,,,,0.903880071,0.828253719,0.979506422,0.48,,1794,0.34044816,0.61955184,73.42968106,,,70.86379255,75.99556957,,,,,,,,,,,,,72.98395604,70.3728907,75.59502138,,,,533.5908673,159,18201,438.4771258,628.7046088,,,,,,,,,,,,,547.9553307,449.9043066,646.0063548,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.171,,,0.147,0.196,0.228,,,0.198,0.259,0.139,,,0.119,0.16,92.6,5,5399,,,0.186,1200,,,,0.133811402,1020.579563,7627,,,,,,,,,,,,,,,,,,,,,,,,,,0.419,,,0.4,0.439,0.109581182,382,3486,0.089325863,0.129836501,0.039898132,47,1178,0.026791749,0.053004515,0.001483191,9,6068,,,674.2222222,0.925,61.05,66,,,,,,,,3.341076634,,,,,,,,,3.334842117,3.011575745,,,,,,,,,3.015411567,,,,,,-1649.07,,,,,0.671119579,29942,44615,0,1.480023216,43589,,,37829.34043,49348.65957,,,,,,,,,,,,,39209,30318.10638,48099.89362,,,,,,,,,,,,,,,,0.307508775,,43589,,,,,289,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,26.21126278,13,49597,13.95639351,44.82205762,,,,,,,,,,,,,27.02084762,14.38746335,46.20647236,,,,,,600,,,-888,0,0.509605489,2971,5830,,,0.452,,,,,0.262090786,,,,,0.781456954,1888,2416,0.748285862,0.814628045,0.034695818,73,2104,0,0.075379717,0.683360927,1651,2416,0.619727797,0.746994057,6068,,,,,0.182432432,1107,6068,,,0.263348715,1598,6068,,,0.005932762,36,6068,,,0.004614371,28,6068,,,0.001812788,11,6068,,,0.000494397,3,6068,,,0.014667106,89,6068,,,0.962590639,5841,6068,,,0,0,6017,0,0.014257476,0.501977587,3046,6068,,,1,6229,6229,, -54,015,54015,WV,Clay County,2024,1,14587.17421,206,22593,11145.15044,18029.19799,0,,,,2,,,,2,,,,2,,,,2,14471.9657,10994.75761,17949.17379,,,,,2,,0.253,,,0.216,0.298,5.307829405,,,4.309949685,6.38265174,6.694100304,,,5.516259554,8.006022348,0.112540193,70,622,0.08770377,0.137376616,0,,,,,,,,,,,,,0.113300493,0.088126532,0.138474454,,,,,,,0.268,,,0.218,0.324,0.449,,,0.372,0.532,6.1,0.098604287,0.174,,,0.335,,,0.276,0.398,,,8051,,,0.114839133,,,0.089859446,0.144604197,0.090909091,1,11,0.004610648,0.283082638,139.4,11,7892,,,34.96081977,58,1659,26.5472162,45.19496669,,,,,,,,,,,,,36.02484472,27.35517496,46.57046568,,,,,,,0.093302991,574,6152,0.077813629,0.108792353,,0,7892,,,,0.000383926,3,7814,,,2604.666667,0.000895828,7,7814,,,1116.285714,4944,,,,,,,,,4972,0.38,,,,,,,,,0.38,0.33,,,,,,,,,0.33,0.833303619,4674,5609,0.7925759,0.874031339,0.332282472,527,1586,0.21403495,0.450529993,0.059736753,177,2963,,,0.343,578,,0.214319149,0.471680851,,,,,,,,,,,,,0.363914373,0.2434565,0.484372246,4.883238667,91131,18662,3.918846411,5.847630922,0.153628118,271,1764,0.02636885,0.280887385,0,0,7892,,,196.9765289,83,42137,156.8907058,244.1820438,,,,,,,,,,,,,197.7249426,157.0221452,245.7540501,,,,7.1,,,,,1,,,,,0.11816839,400,3385,0.063991662,0.172345118,0.096969697,0.042513572,0.151425822,0.029542098,0,0.059095698,0.00590842,0,0.017131907,0.82651846,2082,2519,0.742265345,0.910771575,,,,,,,,,,,,,0.808135593,0.688171348,0.928099838,0.505,,2519,0.357346631,0.652653369,70.74085582,,,68.47272512,73.00898652,,,,,,,,,,,,,70.62448281,68.33295885,72.91600677,,,,618.7340566,206,22593,525.8470755,711.6210377,,,,,,,,,,,,,619.3935539,525.8861362,712.9009715,,,,162.2363659,13,8013,86.38403209,277.4291267,,,,,,,,,,,,,169.1827173,90.08267167,289.3075991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.17,,,0.146,0.198,0.225,,,0.194,0.258,0.13,,,0.112,0.151,,,,,,0.174,1420,,,,0.098604287,925.4998331,9386,,,52.54435957,13,24741,27.97765851,89.85245511,,,,,,,,,,,,,49.97501249,25.82281821,87.29628956,,,,0.421,,,0.403,0.439,0.113330341,505,4456,0.093075022,0.13358566,0.042387061,76,1793,0.028089189,0.056684933,0.001791656,14,7814,,,558.1428571,0.975,127.725,131,,,,,,,,3.190004135,,,,,,,,,3.202203,2.755087981,,,,,,,,,2.744901992,,,,,,-1195.021,,,,,0.575151916,27827,48382,0.366094249,0.784209583,42604,,,36367.74468,48840.25532,,,,,,,,,,,,,41941,34162.95745,49719.04255,,,,,,,,,,,,,,,,0.277837762,,42604,,,,,437,,,,,,,,,,,,,,,,,,,,,,,,,,35.21806366,14,42137,18.75213565,60.22396144,33.22495669,,,,,,,,,,,,,32.78862541,16.94236121,57.27513001,,,,47.46422384,20,42137,28.99238101,73.30464414,,,,,,,,,,,,,46.37992482,27.92374448,72.42799778,,,,36.72420125,22,59906,23.0148614,55.60088203,,,,,,,,,,,,,37.71967424,23.63871903,57.1080401,,,,,,900,,,0,,0.50411985,3365,6675,,,0.449,,,,,0.796063797,,,,,0.817801047,2343,2865,0.773468077,0.862134017,0.124372345,322,2589,0.05283745,0.195907239,0.805584642,2308,2865,0.76225924,0.848910044,7814,,,,,0.21947786,1715,7814,,,0.224084976,1751,7814,,,0.005246993,41,7814,,,0.003583312,28,7814,,,0.001279754,10,7814,,,0.000511902,4,7814,,,0.011005887,86,7814,,,0.965446634,7544,7814,,,0,0,7645,0,0.011221352,0.497312516,3886,7814,,,1,8051,8051,, -54,017,54017,WV,Doddridge County,2024,1,9781.823846,134,22334,6748.198625,12815.44907,0,,,,2,,,,2,,,,2,,,,2,9617.479579,6528.440024,12706.51914,,,,,2,,0.214,,,0.179,0.254,4.594300542,,,3.602763674,5.770633522,6.300766138,,,4.977620863,7.772498145,0.083710407,37,442,0.057890716,0.109530098,0,,,,,,,,,,,,,0.082949309,0.057000689,0.108897929,,,,,,,0.236,,,0.188,0.288,0.396,,,0.311,0.485,8.9,0.01187464,0.089,,,0.3,,,0.242,0.364,0.158043033,1234,7808,,,0.135694681,,,0.104020487,0.171445328,0.052631579,1,19,0.002213242,0.187781702,271.5,21,7735,,,39.76801988,48,1207,29.32179853,52.72662484,,,,,,,,,,,,,42.47787611,31.31983259,56.31950105,,,,,,,0.084759095,431,5085,0.069269734,0.100248457,0.000129283,1,7735,,,7735,0.000129904,1,7698,,,7698,0.000129904,1,7698,,,7698,2715,,,,,,,,,2719,0.41,,,,,,,,,0.4,0.34,,,,,,,,,0.34,0.819848085,4965,6056,0.77680489,0.862891279,0.403608737,850,2106,0.282809382,0.524408092,0.030657314,118,3849,,,0.254,256,,0.152723404,0.355276596,,,,,,,,,,0.74025974,0.237206726,1,0.099190283,0.01525938,0.183121187,5.15216594,126429,24539,3.390621574,6.913710306,0.210992908,238,1128,0.088669457,0.333316358,6.464124111,5,7735,,,105.9806826,44,41517,77.00572623,142.2741197,,,,,,,,,,,,,104.0503502,74.66832776,141.1560491,,,,7.5,,,,,0,,,,,0.051428571,135,2625,0.013935153,0.08892199,0.019105846,0,0.043285663,0.024761905,0,0.058956851,0.007619048,0,0.023255107,0.787154083,2304,2927,0.721789348,0.852518818,,,,,,,,,,,,,0.801391863,0.705443571,0.897340155,0.567,,2927,0.401503028,0.732496972,78.25853464,,,75.52579919,80.99127008,,,,,,,,,,,,,78.10804909,75.36964952,80.84644866,,,,409.6664165,134,22334,333.5618574,485.7709755,,,,,,,,,,,,,410.9891739,333.3570444,488.6213035,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.143,,,0.121,0.168,0.2,,,0.17,0.232,0.118,,,0.099,0.139,142.5,10,7017,,,0.089,700,,,,0.01187464,97.39579758,8202,,,,,,,,,,,,,,,,,,,,,,,,,,0.405,,,0.384,0.423,0.097410604,395,4055,0.078346774,0.116474434,0.03597786,39,1084,0.022871477,0.049084243,0.000129904,1,7698,,,7698,0.975,59.475,61,,,,,,,,2.993453102,,,,,,,,,3.009644133,2.7822602,,,,,,,,,2.782140334,,,,,,10749.27,,,,,0.79128036,38150,48213,0.654709789,0.927850931,47755,,,41466.31915,54043.68085,,,,,,,,,,,,,56531,44694.74468,68367.25532,,,,,,,,,,,,,,,,0.292388232,,47755,,,3.484320558,1,287,,,,,,,,,,,,,,,,,,,,,,,,,,29.45481919,13,41517,15.21973489,51.45164145,31.31247441,,,,,,,,,,,,,28.37967847,14.16703324,50.77908405,,,,24.08651878,10,41517,11.55042199,44.29596561,,,,,,,,,,,,,25.3781342,12.16980179,46.67129236,,,,,,,,,,,,,,,,,,,,,,,,,,,13.33333333,,600,,,8,0,0.43799435,3101,7080,,,0.448,,,,,4.754133604,,,,,0.898507463,2107,2345,0.846416107,0.950598819,0.029738127,67,2253,0,0.06686862,0.741577825,1739,2345,0.65666372,0.82649193,7698,,,,,0.134450507,1035,7698,,,0.220836581,1700,7698,,,0.029098467,224,7698,,,0.004806443,37,7698,,,0.005066251,39,7698,,,0.000259808,2,7698,,,0.00805404,62,7698,,,0.940504027,7240,7698,,,0,0,7556,0,0.011353525,0.430111717,3311,7698,,,1,7808,7808,, -54,019,54019,WV,Fayette County,2024,1,14254.48722,1182,113524,12923.31595,15585.6585,0,,,,2,,,,2,11202.67059,7177.762431,16668.68584,1,,,,2,14833.86748,13401.42509,16266.30987,,,,,2,,0.23,,,0.196,0.268,5.007396904,,,4.083847555,5.999385916,6.90754023,,,5.833745817,7.990854272,0.106081548,307,2894,0.094861992,0.117301104,0,,,,,,,0.136842105,0.067730773,0.205953438,,,,0.103198781,0.091563039,0.114834524,,,,,,,0.25,,,0.205,0.299,0.421,,,0.36,0.483,7.1,0.060266299,0.146,,,0.328,,,0.276,0.38,0.584098992,23649,40488,,,0.123381841,,,0.098598625,0.151930406,0.161290323,5,31,0.077077658,0.265177158,295.5,118,39927,,,35.61853696,279,7833,31.43898194,39.79809198,,,,,,,42.14559387,21.03892861,75.41010925,,,,34.33835846,30.04726427,38.62945265,,,,66.39004149,37.94764504,107.813268,0.0832801,2477,29743,0.070173717,0.096386483,0.000400731,16,39927,,,2495.4375,0.000557145,22,39487,,,1794.863636,0.000759744,30,39487,,,1316.233333,4488,,,,,,,8414,,4309,0.38,,,,,,,0.37,,0.38,0.37,,,,,,,0.29,,0.37,0.84961972,25023,29452,0.832155734,0.867083706,0.527342912,4918,9326,0.45766235,0.597023474,0.046677266,734,15725,,,0.275,2182,,0.196361702,0.353638298,,,,,,,0.621212121,0.117064482,1,,,,0.282279849,0.224153105,0.340406593,5.204566509,95509,18351,4.34001516,6.069117857,0.278619529,2317,8316,0.204145307,0.353093751,10.26874045,41,39927,,,154.0766306,325,210934,137.3252285,170.8280327,,,,,,,121.2789416,60.54201066,217.0015272,,,,161.2240707,143.3912053,179.056936,,,,7.4,,,,,1,,,,,0.110983324,1930,17390,0.087377315,0.134589332,0.089117647,0.069148481,0.109086813,0.014951121,0.006416082,0.02348616,0.011788384,0.003822599,0.01975417,0.789694601,10912,13818,0.764008596,0.815380606,,,,,,,,,,,,,0.772894157,0.726645067,0.819143248,0.438,,13818,0.377175664,0.498824336,71.16610482,,,70.28150667,72.05070297,,,,,,,73.08505042,69.68618589,76.48391495,,,,70.67698177,69.74448769,71.60947585,,,,700.9902907,1182,113524,657.6232299,744.3573514,,,,,,,684.4818813,501.1267647,913.0029086,,,,717.3273259,671.6659141,762.9887376,,,,65.55829444,25,38134,42.42587153,96.77697513,,,,,,,,,,,,,72.61531312,46.99280193,107.1945268,,,,7.296849088,22,3015,4.572896475,11.04751721,,,,,,,,,,,,,7.988380537,5.006275553,12.09450414,,,,,,,0.153,,,0.132,0.176,0.219,,,0.19,0.249,0.124,,,0.107,0.144,105.3,36,34199,,,0.146,6000,,,,0.060266299,2774.60012,46039,,,83.60464649,104,124395,67.53635074,99.67294224,,,,,,,,,,,,,87.14521006,70.06474889,104.2256712,,,,0.434,,,0.414,0.453,0.103468955,2243,21678,0.085596614,0.121341295,0.029998819,254,8467,0.019275415,0.040722223,0.001418188,56,39487,,,705.125,0.91,401.31,441,,,0.128701595,226,1756,0.061150749,0.19625244,2.768940698,,,,,,,,,2.838491099,2.652894974,,,,,,,,,2.700208103,0.060934543,,,,,1611.031,,,,,0.839715294,39758,47347,0.668463167,1.01096742,48710,,,43181.48936,54238.51064,26635,21456.78723,31813.21277,,,,29890,11716.21277,48063.78723,13307,5058.319149,21555.68085,51082,47164.38298,54999.61702,,,,,,,,,,,45.11352248,,,,,0.288708684,,48710,,,3.787878788,8,2112,,,6.661026997,20,300254,4.068728339,10.28741596,,,,,,,,,,,,,6.488427169,3.845453156,10.25451226,,,,14.61217258,30,210934,9.629513802,21.25994393,14.22245821,,,,,,,,,,,,,15.77286982,10.3944206,22.94869747,,,,11.37796657,24,210934,7.29007787,16.92951236,,,,,,,,,,,,,11.80940645,7.486150666,17.71990804,,,,16.65256749,50,300254,12.35985657,21.95433422,,,,,,,,,,,,,17.30247245,12.75747731,22.94056824,,,,,,4000,,,6,,0.494922219,16862,34070,,,0.471,,,,,23.39302815,,,,,0.756870373,12063,15938,0.735715494,0.778025251,0.111164187,1629,14654,0.085877982,0.136450393,0.784853809,12509,15938,0.759693467,0.81001415,39487,,,,,0.204978854,8094,39487,,,0.232228328,9170,39487,,,0.040038494,1581,39487,,,0.003038975,120,39487,,,0.003342872,132,39487,,,0.000202598,8,39487,,,0.013650062,539,39487,,,0.922632765,36432,39487,,,0.000700153,27,38563,0,0.004120686,0.491098336,19392,39487,,,0.629519858,25488,40488,, -54,021,54021,WV,Gilmer County,2024,1,7548.517392,135,21173,5427.258188,9669.776596,0,,,,2,,,,2,,,,2,,,,2,9419.386505,6621.265576,12217.50743,,,,,2,,0.216,,,0.182,0.248,4.555939429,,,3.657044097,5.592105468,5.718944687,,,4.602158327,6.953905425,0.077306733,31,401,0.051165792,0.103447674,0,,,,,,,,,,,,,0.079283888,0.052503119,0.106064656,,,,,,,0.217,,,0.173,0.258,0.431,,,0.352,0.512,5.7,0.310865287,0.089,,,0.302,,,0.248,0.356,0.554535637,4108,7408,,,0.140886656,,,0.111338433,0.175489521,0.2,1,5,0.015594715,0.47750127,135.6,10,7377,,,17.86814541,29,1623,11.96657741,25.66163736,,,,,,,,,,,,,18.72175597,12.5382538,26.88756452,,,,,,,0.085078246,386,4537,0.069588884,0.100567607,0.000406669,3,7377,,,2459,0.000136519,1,7325,,,7325,0.000409556,3,7325,,,2441.666667,5138,,,,,,,,,5173,0.37,,,,,,,,,0.37,0.36,,,,,,,,,0.36,0.829614221,4387,5288,0.784672285,0.874556157,0.440802348,901,2044,0.347842386,0.533762311,0.051959114,122,2348,,,0.248,271,,0.150297872,0.345702128,,,,,,,,,,,,,0.068788501,0,0.16971402,4.169829858,93375,22393,3.313247637,5.026412078,0.394803018,471,1193,0.18590392,0.603702116,5.422258371,4,7377,,,71.71763742,28,39042,47.65584923,103.6519542,,,,,,,,,,,,,88.28908369,58.66745493,127.602308,,,,7.2,,,,,0,,,,,0.083499006,210,2515,0.046034744,0.120963268,0.046435845,0.012395779,0.080475912,0.009940358,0,0.02701705,0.027833002,0.003491838,0.052174166,0.713140312,1601,2245,0.639135551,0.787145073,,,,,,,,,,,,,0.796867803,0.751892617,0.841842989,0.415,,2245,0.287349277,0.542650723,76.72963352,,,74.76518525,78.69408179,,,,,,,,,,,,,75.16222475,72.93945679,77.38499271,,,,476.4739368,135,21173,393.778032,559.1698416,,,,,,,,,,,,,536.5012145,438.1997933,634.8026357,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.141,,,0.12,0.162,0.188,,,0.161,0.213,0.126,,,0.107,0.145,288.3,19,6590,,,0.089,670,,,,0.310865287,2702.351941,8693,,,,,,,,,,,,,,,,,,,,,,,,,,0.415,,,0.398,0.432,0.102437609,353,3446,0.08218229,0.122692928,0.030701754,35,1140,0.018786861,0.042616648,0.000682594,5,7325,,,1465,,,,,,,,,,,3.00616481,,,,,,,,,3.071047844,3.035180421,,,,,,,,,3.052511805,,,,,,1715.67,,,,,0.937144218,39346,41985,0.553605116,1.32068332,44938,,,39027.02128,50848.97872,,,,,,,,,,,,,53031,43626.57447,62435.42553,,,,,,,,,,,,,,,,0.288441853,,44938,,,6.116207951,2,327,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.91825691,10,55809,8.592500665,32.95231243,,,,,,,,,,,,,22.12976897,10.61208439,40.69743304,,,,,,500,,,10,,0.403639121,2662,6595,,,0.505,,,,,0.292196878,,,,,0.742964353,1584,2132,0.70241726,0.783511445,0.047402925,94,1983,0.002836283,0.091969567,0.742964353,1584,2132,0.679763815,0.80616489,7325,,,,,0.151672355,1111,7325,,,0.180750853,1324,7325,,,0.117679181,862,7325,,,0.010648464,78,7325,,,0.008464164,62,7325,,,0.000819113,6,7325,,,0.067303754,493,7325,,,0.78334471,5738,7325,,,0.008390435,60,7151,0,0.021623687,0.388668942,2847,7325,,,1,7408,7408,, -54,023,54023,WV,Grant County,2024,1,9329.658231,228,30209,7211.624314,11447.69215,0,,,,2,,,,2,,,,2,,,,2,9629.623607,7422.565628,11836.68159,,,,,2,,0.213,,,0.181,0.249,4.702252107,,,3.805653951,5.723912221,5.9639118,,,4.847435124,7.245983729,0.095823096,78,814,0.075601954,0.116044238,0,,,,,,,,,,,,,0.098734177,0.07793229,0.119536064,,,,,,,0.228,,,0.185,0.273,0.414,,,0.337,0.497,8.5,0.052143872,0.084,,,0.316,,,0.264,0.375,0.566873178,6222,10976,,,0.130765597,,,0.102589836,0.163022489,0.294117647,5,17,0.163936752,0.428688912,163.9,18,10983,,,29.68270215,58,1954,22.53932021,38.37177571,,,,,,,,,,,,,30.4,23.02466313,39.38672608,,,,,,,0.08782556,725,8255,0.073527688,0.102123433,0.000637349,7,10983,,,1569,0.000547046,6,10968,,,1828,0.000911743,10,10968,,,1096.8,3960,,,,,,,,,4019,0.39,,,,,,,,,0.4,0.29,,,,,,,0.35,,0.29,0.877021068,7160,8164,0.846882138,0.907159999,0.50334728,1203,2390,0.375380993,0.631313568,0.036931341,220,5957,,,0.197,412,,0.118361702,0.275638298,,,,,,,,,,,,,0.09285005,0.010458133,0.175241966,4.165513899,94553,22699,3.284821313,5.046206485,0.248444232,519,2089,0.128353012,0.368535451,12.74697259,14,10983,,,122.0426452,70,57357,95.13822918,154.1935402,,,,,,,,,,,,,124.9049636,97.18351717,158.0752255,,,,6.2,,,,,0,,,,,0.074380165,360,4840,0.047743713,0.101016618,0.067226891,0.039374309,0.095079472,0.008264463,0,0.021391015,0,0,0.00661475,0.841343254,4184,4973,0.782738034,0.899948474,,,,,,,,,,,,,0.807026349,0.771062663,0.842990034,0.251,,4973,0.184799925,0.317200075,75.91736519,,,74.3057229,77.52900747,,,,,,,,,,,,,75.59071974,73.94640257,77.23503692,,,,477.4435382,228,30209,408.7800888,546.1069875,,,,,,,,,,,,,488.5072418,417.5388579,559.4756256,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.146,,,0.126,0.168,0.204,,,0.177,0.234,0.115,,,0.099,0.133,84.8,8,9439,,,0.084,930,,,,0.052143872,622.4413997,11937,,,38.16681836,13,34061,20.32222334,65.26642177,,,,,,,,,,,,,39.69829297,21.13766907,67.88529001,,,,0.392,,,0.373,0.409,0.104071661,639,6140,0.085007832,0.123135491,0.041704036,93,2230,0.027406164,0.056001908,0.000911743,10,10968,,,1096.8,0.975,117,120,,,,,,,,2.896848435,,,,,,,,,2.939662357,3.042151457,,,,,,,,,3.077440963,0.040159924,,,,,-376.2031,,,,,0.735180114,34899,47470,0.602520594,0.867839634,58150,,,53156.46809,63143.53192,,,,,,,,,,35700,9588.510638,61811.48936,52450,44467.02128,60432.97872,,,,,,,,,,,31.1291091,,,,,0.230232158,,58150,,,6.339144216,4,631,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,29.68276544,24,80855,19.0183079,44.16560212,,,,,,,,,,,,,30.78501796,19.72454189,45.80566649,,,,10,,1000,,,10,0,0.584199364,5509,9430,,,0.507,,,,,0.389204676,,,,,0.803125,3341,4160,0.767771427,0.838478573,0.075140092,295,3926,0.037124302,0.113155881,0.807451923,3359,4160,0.75444664,0.860457206,10968,,,,,0.194930708,2138,10968,,,0.249452954,2736,10968,,,0.011032093,121,10968,,,0.001914661,21,10968,,,0.002644055,29,10968,,,0.000182349,2,10968,,,0.016958425,186,10968,,,0.95678337,10494,10968,,,0.013223457,138,10436,0,0.029053923,0.492067834,5397,10968,,,1,10976,10976,, -54,025,54025,WV,Greenbrier County,2024,1,12612.14915,820,91581,11188.01397,14036.28434,0,,,,2,,,,2,12195.80918,5848.364547,22428.5273,1,,,,2,13039.8567,11523.64044,14556.07295,,,,,2,,0.222,,,0.186,0.259,4.65444285,,,3.747774002,5.62959528,6.651871004,,,5.601007021,7.775265585,0.093994778,216,2298,0.082063189,0.105926367,0,,,,,,,,,,,,,0.094151213,0.081669412,0.106633013,,,,,,,0.229,,,0.182,0.276,0.395,,,0.333,0.457,7.3,0.089338574,0.122,,,0.304,,,0.251,0.359,0.571034357,18831,32977,,,0.120983945,,,0.096290635,0.147854654,0.323529412,11,34,0.233210018,0.414257608,226.9,74,32608,,,26.58352478,162,6094,22.48987082,30.67717874,,,,,,,,,,,,,27.83336365,23.42298325,32.24374406,,,,,,,0.08884012,2186,24606,0.074542248,0.103137993,0.001502699,49,32608,,,665.4693878,0.000709111,23,32435,,,1410.217391,0.001325728,43,32435,,,754.3023256,3829,,,,,,,2119,,3809,0.42,,,,,,,0.42,,0.42,0.37,,,,,,,0.35,,0.37,0.881121174,21502,24403,0.86176015,0.900482198,0.566532258,4215,7440,0.484657438,0.648407078,0.037780935,585,15484,,,0.233,1422,,0.146021277,0.319978723,,,,,,,,,,0.159763314,0,0.49970752,0.272628922,0.197421794,0.347836049,4.556189618,91019,19977,3.807157382,5.305221854,0.262261473,1663,6341,0.185476423,0.339046523,12.57360157,41,32608,,,143.8874067,247,171662,125.9429472,161.8318661,,,,,,,,,,,,,152.356489,133.1605508,171.5524273,,,,6.9,,,,,1,,,,,0.103660512,1600,15435,0.07729254,0.130028484,0.087649402,0.063936858,0.111361947,0.009394234,0.002748395,0.016040072,0.010366051,0.00287748,0.017854622,0.843702464,11093,13148,0.8170698,0.870335129,,,,,,,,,,,,,0.843364373,0.815756528,0.870972217,0.38,,13148,0.321617021,0.438382979,72.54246667,,,71.56176891,73.52316442,,,,,,,,,,,,,72.1848287,71.16208846,73.20756893,,,,596.2407629,820,91581,551.3510239,641.130502,,,,,,,619.7687896,373.1412974,967.8457371,,,,612.8288001,565.5586246,660.0989757,,,,72.52132472,21,28957,44.89184302,110.8565485,,,,,,,,,,,,,77.062382,47.07170495,119.0165989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.146,,,0.124,0.169,0.207,,,0.179,0.236,0.127,,,0.109,0.146,120.7,34,28159,,,0.122,4070,,,,0.089338574,3169.7326,35480,,,60.04587111,61,101589,45.93033356,77.13143344,,,,,,,,,,,,,62.7272534,47.75089161,80.91358668,,,,0.403,,,0.385,0.421,0.10663765,1960,18380,0.08757382,0.125701479,0.03764922,246,6534,0.024542837,0.050755602,0.002034839,66,32435,,,491.4393939,0.9,283.5,315,,,,,,,,3.118224603,,,,,,,,,3.138481187,3.064328271,,,,,,,,,3.070146316,0.043411735,,,,,1707.722,,,,,0.90497641,38171,42179,0.756100482,1.053852338,45137,,,39865.85106,50408.14894,39313,36700.06383,41925.93617,,,,40685,25738.95745,55631.04255,,,,46377,43017,49737,,,,,,,,,,,45.43039992,,,,,0.352039347,,45137,,,4.046242775,7,1730,,,4.949331222,12,242457,2.557391665,8.645485611,,,,,,,,,,,,,4.893891534,2.443013021,8.756523786,,,,18.82003835,34,171662,12.69780085,26.86677498,19.80636367,,,,,,,,,,,,,20.377538,13.64715702,29.26554372,,,,16.89366313,29,171662,11.31395133,24.26211826,,,,,,,,,,,,,18.25759579,12.22739844,26.22095307,,,,14.84799367,36,242457,10.39935222,20.55588186,,,,,,,,,,,,,15.57147306,10.84610153,21.65614956,,,,4.516129032,,3100,,,9,5,0.566476054,15850,27980,,,0.492,,,,,15.76297485,,,,,0.748913339,11027,14724,0.726346383,0.771480294,0.103368008,1421,13747,0.075654117,0.131081899,0.803110568,11825,14724,0.766109757,0.840111378,32435,,,,,0.191675659,6217,32435,,,0.247880376,8040,32435,,,0.024849699,806,32435,,,0.004717127,153,32435,,,0.008077694,262,32435,,,0.000154155,5,32435,,,0.020810853,675,32435,,,0.923786034,29963,32435,,,0.00147233,46,31243,0,0.00530079,0.508493911,16493,32435,,,0.780847257,25750,32977,, -54,027,54027,WV,Hampshire County,2024,1,11494.40009,495,63250,9791.605006,13197.19517,0,,,,2,,,,2,,,,2,,,,2,11593.04073,9848.368265,13337.7132,,,,,2,,0.212,,,0.18,0.25,4.654036554,,,3.762949271,5.633823912,5.978249159,,,4.939270851,7.112903389,0.092698413,146,1575,0.078375618,0.107021208,0,,,,,,,,,,,,,0.094302554,0.079644043,0.108961065,,,,,,,0.235,,,0.19,0.286,0.365,,,0.297,0.437,7.3,0.098949903,0.121,,,0.287,,,0.236,0.346,0.324600528,7496,23093,,,0.130593698,,,0.103358926,0.162855866,0.225806452,7,31,0.133616464,0.327772988,137.3,32,23302,,,22.87959325,99,4327,18.5954044,27.85508384,,,,,,,,,,,,,23.3702337,18.90791465,28.5688988,,,,,,,0.081770357,1430,17488,0.067472485,0.096068229,0.000257489,6,23302,,,3883.666667,0.00034089,8,23468,,,2933.5,0.000894836,21,23468,,,1117.52381,2629,,,,,,,,,2594,0.33,,,,,,,,,0.33,0.32,,,,,,,,,0.32,0.877435393,15177,17297,0.853109545,0.901761242,0.467091732,2271,4862,0.377046772,0.557136692,0.026439954,297,11233,,,0.233,929,,0.144829787,0.321170213,,,,,,,,,,0.127272727,0,0.442340854,0.236257635,0.13857321,0.333942059,5.175887119,111147,21474,4.280624017,6.071150222,0.236267525,1028,4351,0.115699693,0.356835356,7.724658828,18,23302,,,152.8093746,178,116485,130.3604227,175.2583265,,,,,,,,,,,,,156.3342318,133.1049635,179.5635002,,,,7,,,,,0,,,,,0.090016367,825,9165,0.062819228,0.117213506,0.059267481,0.034816379,0.083718583,0.016366612,0.003806585,0.028926639,0.020185488,0.005913815,0.034457162,0.859910756,7323,8516,0.817634885,0.902186628,,,,,,,,,,,,,0.820535132,0.744816447,0.896253816,0.642,,8516,0.539345049,0.744654951,74.77993353,,,73.52162022,76.03824683,,,,,,,,,,,,,74.62764855,73.3443801,75.910917,,,,510.8301598,495,63250,460.5224371,561.1378825,,,,,,,,,,,,,517.0817577,465.4215901,568.7419253,,,,91.02104192,17,18677,53.02311115,145.7335055,,,,,,,,,,,,,92.20307728,52.70202532,149.732021,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.144,,,0.124,0.168,0.203,,,0.176,0.233,0.116,,,0.099,0.134,98,20,20410,,,0.121,2810,,,,0.098949903,2371.235471,23964,,,70.3345917,49,69667,52.03391814,92.98606025,,,,,,,,,,,,,70.68306915,51.93526058,93.99349767,,,,0.416,,,0.395,0.433,0.095517728,1285,13453,0.077645388,0.113390069,0.037429379,159,4248,0.024322996,0.050535762,0.000724391,17,23468,,,1380.470588,0.85,206.55,243,,,,,,,,3.119104438,,,,,,,,,3.101313447,3.091768312,,,,,,,,,3.046964702,0.053067766,,,,,375.4102,,,,,0.71496227,36383,50888,0.589265134,0.840659407,58266,,,51809.31915,64722.68085,,,,,,,,,,,,,55949,49139.6383,62758.3617,,,,,,,,,,,,,,,,0.239865445,,58266,,,1.84501845,2,1084,,,,,,,,,,,,,,,,,,,,,,,,,,16.97250272,22,116485,10.05898077,26.82387158,18.88655192,,,,,,,,,,,,,17.77584175,10.5350904,28.0934936,,,,14.59415375,17,116485,8.501632373,23.36665392,,,,,,,,,,,,,15.27403414,8.897687754,24.45520828,,,,33.71358167,55,163139,25.39768355,43.88286061,,,,,,,,,,,,,34.61760369,26.00580933,45.16846362,,,,8.5,,2000,,,7,10,0.534499205,10086,18870,,,0.413,,,,,0.901535647,,,,,0.8130424,6558,8066,0.768265837,0.857818964,0.082968854,626,7545,0.051059898,0.114877809,0.777460947,6271,8066,0.736453191,0.818468703,23468,,,,,0.17602693,4131,23468,,,0.245397989,5759,23468,,,0.012868587,302,23468,,,0.002684507,63,23468,,,0.003238452,76,23468,,,0.000553946,13,23468,,,0.017427987,409,23468,,,0.950698824,22311,23468,,,0.000768153,17,22131,0,0.005759142,0.485597409,11396,23468,,,1,23093,23093,, -54,029,54029,WV,Hancock County,2024,1,12137.55414,669,77593,10540.68747,13734.4208,0,,,,2,,,,2,14384.89858,6210.378198,28343.98478,1,,,,2,12318.45302,10653.8076,13983.09845,,,,,2,,0.192,,,0.162,0.225,4.458348172,,,3.59068863,5.41994077,6.41570636,,,5.298431858,7.488096099,0.087219867,144,1651,0.07360939,0.100830343,0,,,,,,,,,,,,,0.083662714,0.06973391,0.097591519,,,,,,,0.206,,,0.166,0.25,0.417,,,0.349,0.482,6.7,0.174180548,0.112,,,0.276,,,0.232,0.324,0.977590651,28443,29095,,,0.130885922,,,0.103293459,0.161156849,0.222222222,2,9,0.058854756,0.422872156,160.5,46,28656,,,19.62689468,101,5146,15.79911461,23.45467474,,,,,,,,,,,,,19.20236337,15.46054516,23.57624708,,,,,,,0.083520308,1824,21839,0.069222435,0.09781818,0.000593244,17,28656,,,1685.647059,0.00085191,24,28172,,,1173.833333,0.001668323,47,28172,,,599.4042553,4201,,,,,,,,,4198,0.37,,,,,,,0.45,,0.37,0.44,,,,,,0.27,0.27,,0.44,0.904677682,19437,21485,0.886721863,0.922633502,0.608123294,3788,6229,0.521384896,0.694861692,0.048960172,638,13031,,,0.168,847,,0.100085106,0.235914894,,,,,,,,,,0.487341772,0.120234084,0.854449461,0.155608904,0.095576408,0.215641401,4.482892659,110714,24697,3.94968944,5.016095878,0.220452019,1190,5398,0.155598125,0.285305913,12.91178113,37,28656,,,130.7243791,189,144579,112.0871322,149.3616259,,,,,,,,,,,,,134.6163803,115.0586575,154.1741031,,,,9.3,,,,,1,,,,,0.101380671,1285,12675,0.078550749,0.124210592,0.079631853,0.057542986,0.101720719,0.014990138,0.005021538,0.024958738,0.010650888,0.002933334,0.018368441,0.797243936,9893,12409,0.76619891,0.828288962,,,,,,,,,,,,,0.799137659,0.773661187,0.824614131,0.346,,12409,0.296199165,0.395800835,73.04980391,,,71.93886204,74.16074577,,,,,,,,,,,,,72.80822075,71.66263281,73.95380869,,,,558.7404772,669,77593,511.8951457,605.5858087,,,,,,,672.8417107,391.9550915,1077.284758,,,,567.8518023,519.1859831,616.5176215,,,,50.44136192,12,23790,26.06378776,88.11090815,,,,,,,,,,,,,51.50053842,25.70888322,92.14868914,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.137,,,0.118,0.158,0.202,,,0.176,0.23,0.114,,,0.097,0.132,40,10,25015,,,0.112,3280,,,,0.174180548,5343.162484,30676,,,62.76369469,54,86037,47.15001915,81.89300696,,,,,,,,,,,,,60.93238992,45.0781175,80.55585087,,,,0.439,,,0.419,0.456,0.098977555,1636,16529,0.081105214,0.116849895,0.036581014,205,5604,0.023474631,0.049687397,0.001845804,52,28172,,,541.7692308,0.92,269.56,293,,,,,,,,3.060255254,,,,,,,,,3.084430075,3.040581331,,,,,,,,,3.063758076,0.045020704,,,,,-372.1094,,,,,0.684327618,39988,58434,0.584846444,0.783808791,58077,,,51707.29787,64446.70213,,,,,,,58561,26444.40426,90677.59575,28214,13270.34043,43157.65957,57547,52340.19149,62753.80851,,,,,,,,,,,57.49479091,,,,,0.265406271,,58077,,,3.765060241,5,1328,,,,,,,,,,,,,,,,,,,,,,,,,,17.39122765,27,144579,11.02454649,26.09538049,18.67491129,,,,,,,,,,,,,18.5015447,11.72839226,27.76140122,,,,13.83326763,20,144579,8.449719244,21.3643599,,,,,,,,,,,,,14.79300882,9.035954101,22.84660234,,,,9.804690564,20,203984,5.988959715,15.14254937,,,,,,,,,,,,,9.945248788,5.987689438,15.53073792,,,,2.692307692,,2600,,,7,0,0.587234043,13800,23500,,,0.674,,,,,49.92044153,,,,,0.735078937,9545,12985,0.700521283,0.769636591,0.091260572,1133,12415,0.062478083,0.120043061,0.870619946,11305,12985,0.844945437,0.896294455,28172,,,,,0.182308675,5136,28172,,,0.24396564,6873,28172,,,0.026018742,733,28172,,,0.00330115,93,28172,,,0.005111458,144,28172,,,0.000212977,6,28172,,,0.017606134,496,28172,,,0.929539969,26187,28172,,,0.000253082,7,27659,0,0.004290464,0.509087037,14342,28172,,,0.329197457,9578,29095,, -54,031,54031,WV,Hardy County,2024,1,13584.78724,288,37703,10949.92197,16219.65251,0,,,,2,,,,2,,,,2,,,,2,14721.19187,11785.83089,17656.55285,,,,,2,,0.227,,,0.193,0.266,4.62837364,,,3.640813834,5.661358739,6.172318768,,,4.896219036,7.372593016,0.09168242,97,1058,0.074293399,0.109071441,0,,,,,,,,,,,,,0.088987764,0.070375317,0.107600211,,,,,,,0.232,,,0.187,0.281,0.408,,,0.326,0.483,7.9,0.064404994,0.108,,,0.302,,,0.242,0.359,0.674732499,9648,14299,,,0.121809594,,,0.09294201,0.151345189,0.238095238,5,21,0.124889996,0.363491167,176.6,25,14160,,,30.04655099,71,2363,23.46660561,37.89963568,,,,,,,,,,86.09271523,45.84074497,147.221165,27.11864407,20.48513229,35.21581502,,,,,,,0.101662228,1107,10889,0.084981377,0.118343079,0.000141243,2,14160,,,7080,0.000352311,5,14192,,,2838.4,0.000775085,11,14192,,,1290.181818,3370,,,,,,,,,3408,0.38,,,,,,,,,0.38,0.29,,,,,,,0.25,,0.29,0.864730131,9020,10431,0.839787597,0.889672666,0.412572475,1352,3277,0.305819405,0.519325545,0.040372126,230,5697,,,0.186,512,,0.113319149,0.258680851,,,,,,,0.021428571,0,0.282102077,0.676470588,0.345765234,1,0.265605362,0.158485367,0.372725358,4.068897959,99688,24500,3.034926543,5.102869376,0.155700999,452,2903,0.054187765,0.257214233,6.355932203,9,14160,,,118.7356106,82,69061,94.43395472,147.3822,,,,,,,,,,,,,122.3202215,96.374422,153.1019973,,,,6.5,,,,,1,,,,,0.060657119,360,5935,0.035260961,0.086053277,0.047158609,0.021627732,0.072689486,0.004043808,0,0.012980081,0.00926706,0,0.019801781,0.812895891,5005,6157,0.767925982,0.8578658,,,,,,,,,,,,,0.82865782,0.777608283,0.879707356,0.347,,6157,0.275689586,0.418310414,73.31210981,,,71.48259372,75.1416259,,,,,,,,,,,,,72.43546753,70.46745802,74.40347704,,,,538.1401285,288,37703,469.0665142,607.2137427,,,,,,,,,,,,,574.5780127,498.6812091,650.4748163,,,,115.2263375,14,12150,62.99531092,193.330215,,,,,,,,,,,,,126.7180037,67.47200011,216.6916456,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.151,,,0.129,0.173,0.208,,,0.177,0.238,0.126,,,0.106,0.145,122.9,15,12208,,,0.108,1550,,,,0.064404994,903.2800384,14025,,,48.11277635,20,41569,29.38853373,74.30628089,,,,,,,,,,,,,48.16826782,28.54756825,76.12662974,,,,0.41,,,0.393,0.426,0.120221266,978,8135,0.098774458,0.141668075,0.048063624,139,2892,0.031382773,0.064744475,0.001197858,17,14192,,,834.8235294,0.925,159.1,172,,,,,,,,2.845515263,,,,,,,,,3.002821445,2.770384884,,,,,,,,,2.868872462,0.064474394,,,,,-1199.521,,,,,0.697124326,29236,41938,0.561734098,0.832514555,53876,,,46207.57447,61544.42553,,,,,,,,,,,,,49120,42322.55319,55917.44681,,,,,,,,,,,62.06729513,,,,,0.291372782,,53876,,,2.392344498,2,836,,,,,,,,,,,,,,,,,,,,,,,,,,31.19296023,20,69061,18.48692514,49.29832525,28.95990501,,,,,,,,,,,,,34.9538797,20.71588437,55.24219945,,,,31.85589551,22,69061,19.96392012,48.23020864,,,,,,,,,,,,,33.79900856,20.92211901,51.6653749,,,,25.82591269,25,96802,16.71316899,38.12414175,,,,,,,,,,,,,28.66545125,18.55076863,42.31586082,,,,17.69230769,,1300,,,11,12,0.592512869,6331,10685,,,0.471,,,,,3.58744215,,,,,0.774390244,4445,5740,0.728191564,0.820588923,0.08668454,485,5595,0.048967591,0.124401488,0.846167247,4857,5740,0.800610368,0.891724127,14192,,,,,0.197646561,2805,14192,,,0.232454904,3299,14192,,,0.031989853,454,14192,,,0.002466178,35,14192,,,0.009371477,133,14192,,,0.000704622,10,14192,,,0.04544814,645,14192,,,0.895081736,12703,14192,,,0.004760842,64,13443,0,0.013129804,0.487739572,6922,14192,,,1,14299,14299,, -54,033,54033,WV,Harrison County,2024,1,11173.05327,1414,182685,10266.11996,12079.98658,0,,,,2,,,,2,19081.60247,9525.467202,34142.2577,1,,,,2,11484.87842,10535.76532,12433.99153,,,,,2,,0.194,,,0.163,0.227,4.275873161,,,3.471445194,5.126509314,5.8409851,,,4.876432056,6.769413475,0.091581109,446,4870,0.083480128,0.09968209,0,,,,,,,,,,0.108910891,0.048154551,0.169667232,0.090652787,0.08236547,0.098940104,,,,,,,0.22,,,0.177,0.267,0.374,,,0.322,0.429,8.2,0.041342257,0.104,,,0.299,,,0.251,0.351,0.755540723,49806,65921,,,0.12761175,,,0.103249663,0.156305016,0.352941177,12,34,0.263338918,0.441188858,216.4,141,65158,,,25.66289347,331,12898,22.89819549,28.42759146,,,,,,,,,,,,,26.31578947,23.3957066,29.23587235,,,,,,,0.081965638,4265,52034,0.070050744,0.093880532,0.001258479,82,65158,,,794.6097561,0.000955095,62,64915,,,1047.016129,0.003188785,207,64915,,,313.5990338,3916,,,,,,,1572,,3944,0.46,,,,,,,0.39,,0.46,0.43,,,,,,0.27,0.34,,0.43,0.885862017,41461,46803,0.870580123,0.901143912,0.557129308,8811,15815,0.505911409,0.608347206,0.036031765,1216,33748,,,0.204,2731,,0.133702128,0.274297872,,,,,,,0.188034188,0,0.598278227,0.077363897,0,0.21500945,0.170330579,0.129925505,0.210735653,4.820276118,116964,24265,4.274174557,5.366377679,0.245356372,3408,13890,0.181141064,0.309571679,17.95635225,117,65158,,,118.6317604,397,334649,106.962004,130.3015169,,,,,,,251.0040161,140.4850424,413.992953,,,,120.5175577,108.3840383,132.6510771,,,,7.3,,,,,1,,,,,0.095168106,2590,27215,0.079736493,0.110599718,0.074513438,0.060097936,0.08892894,0.019474555,0.011866256,0.027082853,0.007900055,0.002858993,0.012941118,0.842905525,23893,28346,0.81910473,0.866706319,,,,,,,,,,,,,0.846303664,0.825412125,0.867195204,0.257,,28346,0.228107918,0.285892082,73.83225308,,,73.15778946,74.50671671,,,,,,,,,,,,,73.45666028,72.76550722,74.14781334,,,,554.2519117,1414,182685,523.6618942,584.8419292,,,,,,,730.7415294,472.8973887,1078.718649,,,,568.7814336,536.9104173,600.65245,,,,46.69436125,29,62106,31.27194657,67.06089176,,,,,,,,,,,,,47.62996807,31.38844908,69.29910287,,,,5.557761016,28,5038,3.693091833,8.032512097,,,,,,,,,,,,,5.016722408,3.214308707,7.464485283,,,,,,,0.137,,,0.117,0.158,0.194,,,0.169,0.221,0.117,,,0.101,0.135,102.9,57,55415,,,0.104,6890,,,,0.041342257,2856.708637,69099,,,52.68862528,105,199284,42.61053396,62.7667166,,,,,,,,,,,,,52.92900563,43.018084,64.43916519,,,,0.408,,,0.389,0.426,0.098484054,3755,38128,0.082994692,0.113973415,0.038052794,555,14585,0.0261379,0.049967688,0.002279905,148,64915,,,438.6148649,0.95,698.25,735,,,0.11143695,304,2728,0.057345653,0.165528248,2.826845638,,,,,,,,,2.82603634,2.782862936,,,,,,,,,2.792437573,0.05813153,,,,,2647.915,,,,,0.771203679,43600,56535,0.687051919,0.85535544,57764,,,51984.08511,63543.91489,28750,1839.021277,55660.97872,,,,52583,11911.51064,93254.48936,76023,21352.70213,130693.2979,56191,53959.34043,58422.65957,,,,,,,,,,,50.90468726,,,,,0.300342774,,57764,,,3.880266075,14,3608,,,5.299271032,25,471763,3.429408802,7.82276942,,,,,,,,,,,,,4.957858205,3.107063342,7.506256904,,,,26.61358738,85,334649,21.10291963,33.12291323,25.3997472,,,,,,,,,,,,,27.57109234,21.75867491,34.45913484,,,,20.91743887,70,334649,16.30616978,26.42792563,,,,,,,,,,,,,20.98722641,16.23151939,26.70089782,,,,13.56613384,64,471763,10.44757612,17.32365006,,,,,,,,,,,,,14.19750304,10.90975116,18.16477381,,,,11.21212121,,6600,,,50,24,0.576224702,30465,52870,,,0.578,,,,,77.47770187,,,,,0.736789246,19074,25888,0.719085494,0.754492998,0.081553319,1993,24438,0.065867328,0.097239309,0.820032448,21229,25888,0.797165412,0.842899483,64915,,,,,0.210506046,13665,64915,,,0.20705538,13441,64915,,,0.018901641,1227,64915,,,0.002125857,138,64915,,,0.007455904,484,64915,,,0.000184857,12,64915,,,0.019086498,1239,64915,,,0.934991913,60695,64915,,,0.001763047,110,62392,0,0.004024547,0.505106678,32789,64915,,,0.44275724,29187,65921,, -54,035,54035,WV,Jackson County,2024,1,10346.32616,544,77078,8892.739719,11799.91259,0,,,,2,,,,2,,,,2,,,,2,10581.78324,9076.678636,12086.88785,,,,,2,,0.212,,,0.179,0.244,4.674816616,,,3.813199685,5.650281941,6.792053666,,,5.731650041,7.958167176,0.090464548,185,2045,0.078032049,0.102897047,0,,,,,,,,,,,,,0.089385475,0.076783634,0.101987315,,,,,,,0.238,,,0.194,0.285,0.432,,,0.367,0.498,7.6,0.053809795,0.125,,,0.295,,,0.246,0.346,0.503220467,13985,27791,,,0.127651906,,,0.102019218,0.156534135,0.285714286,10,35,0.196703372,0.377807478,223.5,62,27738,,,30.02894356,166,5528,25.46077542,34.59711171,,,,,,,,,,,,,30.29155623,25.59783096,34.9852815,,,,,,,0.073510599,1609,21888,0.061595706,0.085425493,0.000360516,10,27738,,,2773.8,0.000360802,10,27716,,,2771.6,0.000902006,25,27716,,,1108.64,2790,,,,,,,,,2757,0.39,,,,,,,,,0.39,0.42,,,,,,,,,0.42,0.903578629,17927,19840,0.87562737,0.931529888,0.632218845,3952,6251,0.529314746,0.735122944,0.043223007,508,11753,,,0.26,1521,,0.18493617,0.33506383,,,,,,,,,,,,,0.31964862,0.224992742,0.414304497,5.082047405,114280,22487,3.70795251,6.456142301,0.156548994,949,6062,0.096364265,0.216733723,8.291873964,23,27738,,,103.1948276,147,142449,86.5125504,119.8771048,,,,,,,,,,,,,105.9345093,88.75079262,123.1182259,,,,8.2,,,,,1,,,,,0.101094092,1155,11425,0.061953436,0.140234748,0.084935181,0.048465087,0.121405275,0.010065646,0.000728727,0.019402565,0.010503282,0.000496227,0.020510338,0.824711794,8370,10149,0.788497164,0.860926425,,,,,,,,,,,,,0.794769115,0.752945618,0.836592613,0.431,,10149,0.339993297,0.522006703,74.78060161,,,73.6923222,75.86888102,,,,,,,,,,,,,74.51820721,73.40558358,75.63083084,,,,484.6409501,544,77078,440.8584176,528.4234826,,,,,,,,,,,,,492.7573997,447.9304981,537.5843013,,,,75.9791817,20,26323,46.41005807,117.3436839,,,,,,,,,,,,,80.21819349,48.99935659,123.8904938,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.146,,,0.126,0.167,0.207,,,0.18,0.236,0.117,,,0.1,0.135,42.4,10,23607,,,0.125,3510,,,,0.053809795,1571.83792,29211,,,35.39113098,30,84767,23.87824746,50.52304009,,,,,,,,,,,,,36.59384492,24.6897135,52.23998902,,,,0.394,,,0.373,0.412,0.089359311,1431,16014,0.07267846,0.106040162,0.031710079,196,6181,0.020986675,0.042433484,0.001118488,31,27716,,,894.0645161,0.92,277.84,302,,,,,,,,3.199134197,,,,,,,,,3.19844438,2.954401729,,,,,,,,,2.97698489,0.042631786,,,,,1746.104,,,,,0.698919951,42451,60738,0.52670299,0.871136912,54735,,,47226.23404,62243.76596,,,,,,,,,,63407,34259.59575,92554.40426,55851,48287.42553,63414.57447,,,,,,,,,,,,,,,,0.273737097,,54735,,,6.324666198,9,1423,,,,,,,,,,,,,,,,,,,,,,,,,,22.25312104,29,142449,14.66494698,32.37712277,20.35816327,,,,,,,,,,,,,22.57259467,14.74516827,33.07408117,,,,16.14612949,23,142449,10.23526107,24.22712191,,,,,,,,,,,,,15.96273427,10.00376058,24.16777152,,,,21.41029088,43,200838,15.49473367,28.83952131,,,,,,,,,,,,,22.09819823,15.99257563,29.76612799,,,,5.172413793,,2900,,,5,10,0.60088968,13508,22480,,,0.579,,,,,10.14756697,,,,,0.766864012,8549,11148,0.732159148,0.801568875,0.087926633,930,10577,0.052222658,0.123630609,0.768568353,8568,11148,0.726651112,0.810485594,27716,,,,,0.214172319,5936,27716,,,0.212548708,5891,27716,,,0.006674845,185,27716,,,0.00303074,84,27716,,,0.003896666,108,27716,,,0.000396883,11,27716,,,0.013133208,364,27716,,,0.96276519,26684,27716,,,0.001402418,37,26383,0,0.005842251,0.499170154,13835,27716,,,1,27791,27791,, -54,037,54037,WV,Jefferson County,2024,1,8229.28169,907,162122,7395.696022,9062.867359,0,,,,2,,,,2,12497.68397,8753.22421,17302.06256,,,,,2,8496.353549,7559.449388,9433.25771,,,,,2,,0.168,,,0.14,0.198,3.78233116,,,3.016716049,4.588018708,5.640752231,,,4.728634589,6.598487262,0.076472088,300,3923,0.068155917,0.084788259,0,,,,,,,0.122905028,0.074805846,0.17100421,0.082872928,0.054472631,0.111273225,0.071132376,0.062134337,0.080130415,,,,0.122302158,0.067834557,0.176769759,0.173,,,0.135,0.213,0.363,,,0.304,0.422,9,0.055026862,0.061,,,0.234,,,0.19,0.28,0.36933502,21311,57701,,,0.147405471,,,0.118342619,0.177967713,0.25,9,36,0.163218055,0.342798685,183.3,107,58370,,,14.86424996,196,13186,12.78325497,16.94524496,,,,,,,,,,18.14516129,10.75397256,28.67717769,15.5159038,13.1116896,17.920118,,,,20.80624187,11.89256496,33.78803329,0.068583283,3273,47723,0.057859878,0.079306687,0.000582491,34,58370,,,1716.764706,0.000305193,18,58979,,,3276.611111,0.001254684,74,58979,,,797.0135135,2410,,,,,,,2691,,2397,0.39,,,,,,0.26,0.45,0.56,0.39,0.41,,,,,,0.44,0.35,0.29,0.41,0.903609384,36476,40367,0.890856068,0.9163627,0.683256946,9541,13964,0.631649122,0.734864771,0.024826378,765,30814,,,0.117,1417,,0.08006383,0.15393617,,,,,,,0.144092219,0,0.362297537,0.178070899,0.108690306,0.247451491,0.092992653,0.067659367,0.118325938,4.448305197,167323,37615,3.947068623,4.949541771,0.190103751,2382,12530,0.144641725,0.235565777,8.052081549,47,58370,,,109.0333425,312,286151,96.93465946,121.1320256,,,,,,,159.2718999,105.8350208,230.1922409,,,,116.4100323,102.7010064,130.1190582,,,,8.2,,,,,0,,,,,0.126461465,2650,20955,0.107165153,0.145757777,0.107880827,0.089670472,0.126091181,0.01789549,0.010045141,0.02574584,0.003579098,0.001086003,0.006072193,0.741061172,20643,27856,0.719991453,0.762130891,,,,,,,0.464180569,0.305997462,0.622363676,0.580571429,0.447742359,0.713400498,0.725961248,0.683669016,0.768253481,0.563,,27856,0.522401847,0.603598153,76.97432418,,,76.25428647,77.69436189,,,,,,,73.02350749,70.19716603,75.84984896,90.16712755,77.51560206,102.818653,76.67055685,75.88655709,77.4545566,,,,411.057624,907,162122,383.032622,439.082626,,,,,,,548.9172082,421.8030544,702.3035596,,,,423.7760658,392.8521109,454.7000206,,,,33.68435982,19,56406,20.28018502,52.60230041,,,,,,,,,,,,,36.77653657,21.02096827,59.72279133,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.118,,,0.1,0.136,0.181,,,0.156,0.208,0.104,,,0.088,0.12,124.2,62,49904,,,0.061,3530,,,,0.055026862,2943.827035,53498,,,50.86646397,88,173002,40.79639153,62.66890628,,,,,,,112.3595506,58.05781937,196.2695229,,,,51.68391792,40.58299197,64.88442603,,,,0.37,,,0.353,0.387,0.081066454,2846,35107,0.067960071,0.094172837,0.035489196,473,13328,0.023574302,0.047404089,0.000610387,36,58979,,,1638.305556,0.87,550.71,633,,,0.093246592,301,3228,0.04457746,0.141915725,2.95801883,,,,,,,2.453213892,2.562034335,3.089286961,2.831037096,,,,,,,2.26394074,2.544602281,2.916963106,0.024098351,,,,,3573.563,,,,,0.78196712,55271,70682,0.674157832,0.889776409,87259,,,77586.48936,96931.51064,,,,63925,50381.34043,77468.65957,79470,45467.2766,113472.7234,79525,65802.61702,93247.38298,97474,92015.78723,102932.2128,,,,,,,,,,,37.2688948,,,,,0.25718837,,87259,,,5.655355955,17,3006,,,3.258137198,13,399001,1.734820838,5.571513835,,,,,,,,,,,,,3.309893271,1.652286795,5.922313349,,,,16.95963748,51,286151,12.50469787,22.4860188,17.82275792,,,,,,,,,,,,,18.05288963,13.01093494,24.40226232,,,,12.93023613,37,286151,9.104079513,17.82262726,,,,,,,,,,,,,14.28859602,9.895268115,19.96688076,,,,13.78442661,55,399001,10.38431657,17.94232595,,,,,,,,,,,,,15.64676819,11.68575488,20.51865478,,,,,,6100,,,18,,0.640679926,27703,43240,,,0.725,,,,,29.24054355,,,,,0.796013413,17092,21472,0.774979489,0.817047336,0.104559561,2190,20945,0.086444371,0.122674751,0.910255216,19545,21472,0.901089279,0.919421153,58979,,,,,0.209566117,12360,58979,,,0.175774428,10367,58979,,,0.060886078,3591,58979,,,0.004221842,249,58979,,,0.017853812,1053,58979,,,0.000864715,51,58979,,,0.069736686,4113,58979,,,0.819037285,48306,58979,,,0.005303691,292,55056,0.002059358,0.008548023,0.500313671,29508,58979,,,0.61699104,35601,57701,, -54,039,54039,WV,Kanawha County,2024,1,14615.47064,4505,486597,13942.75607,15288.18522,0,,,,2,,,,2,21089.11156,18211.46235,23966.76076,,,,,2,14515.06375,13791.11262,15239.01488,,,,,2,,0.198,,,0.169,0.23,4.565561874,,,3.820717223,5.398571814,6.089984625,,,5.317205717,6.906296956,0.105957109,1334,12590,0.10058076,0.111333458,0,,,,0.095238095,0.050849241,0.139626949,0.16255144,0.139356278,0.185746603,0.071748879,0.037876637,0.105621121,0.099952941,0.094249697,0.105656186,,,,0.137176938,0.107111087,0.16724279,0.205,,,0.166,0.249,0.399,,,0.359,0.44,7.6,0.091967722,0.11,,,0.303,,,0.262,0.349,0.720473595,130222,180745,,,0.127695864,,,0.107969413,0.149201619,0.152777778,22,144,0.113530316,0.196470089,447.3,796,177952,,,25.97628001,898,34570,24.27727422,27.67528581,,,,,,,23.74141876,18.90990752,29.43106058,20.37617555,10.84945532,34.84388075,25.66746063,23.79518244,27.53973881,,,,38.52242744,30.19543373,48.43616896,0.067882619,9364,137944,0.058350704,0.077414534,0.001298103,231,177952,,,770.3549784,0.000922998,162,175515,,,1083.425926,0.002865852,503,175515,,,348.9363817,3792,,,,,,1478,4602,,3778,0.41,,,,,,0.33,0.38,,0.41,0.45,,,,,,0.44,0.37,0.31,0.46,0.906043669,118014,130252,0.897643801,0.914443537,0.617605876,26906,43565,0.582643966,0.652567787,0.037630697,2998,79669,,,0.258,8731,,0.203191489,0.312808511,,,,,,,0.425665102,0.324294965,0.527035238,0.146304676,0.024409555,0.268199796,0.215372128,0.183099916,0.24764434,5.11978789,112963,22064,4.724896703,5.514679077,0.296910049,10589,35664,0.25909392,0.334726179,17.36423305,309,177952,,,179.1142716,1605,896076,170.3513536,187.8771895,,,,,,,210.5731445,175.9381693,245.2081198,,,,184.0825301,174.591033,193.5740273,,,,7.8,,,,,1,,,,,0.119536699,9340,78135,0.107458979,0.13161442,0.105519797,0.094111934,0.116927661,0.011390542,0.007404265,0.015376819,0.006079222,0.003791205,0.008367239,0.791590206,60392,76292,0.778527384,0.804653029,,,,0.815694744,0.697509299,0.93388019,0.713270597,0.626997365,0.799543829,0.709359606,0.583013572,0.83570564,0.826779037,0.808767399,0.844790676,0.226,,76292,0.206494479,0.245505522,71.45617358,,,71.00688243,71.90546472,,,,83.74652589,79.30337212,88.18967967,66.71025054,64.9940118,68.42648929,90.15410575,69.06235024,111.2458613,71.52728588,71.04681664,72.00775511,,,,658.7930871,4505,486597,637.9803681,679.6058061,,,,,,,899.3479777,806.7925577,991.9033976,,,,655.2659129,633.2414571,677.2903687,,,,67.54345721,106,156936,54.68507221,80.4018422,,,,,,,84.06893653,43.43964627,146.8515136,,,,70.95184631,57.12600073,87.11314474,,,,7.28695252,95,13037,5.89557974,8.907921579,,,,,,,,,,,,,7.368995633,5.852046215,9.158988736,,,,,,,0.139,,,0.121,0.16,0.205,,,0.181,0.231,0.121,,,0.106,0.136,298.2,457,153269,,,0.11,20100,,,,0.091967722,17755.56423,193063,,,96.74468233,515,532329,88.38904542,105.1003192,,,,,,,142.5819846,107.9902028,184.7314991,,,,96.32257982,87.41292237,105.2322373,,,,0.397,,,0.379,0.413,0.081443299,8374,102820,0.069528405,0.093358193,0.029819676,1103,36989,0.021479251,0.038160102,0.003110845,546,175515,,,321.456044,0.86,1586.7,1845,,,0.094040734,748,7954,0.05913014,0.128951328,2.939160014,,,,,,3.313917846,2.528614487,2.697468739,3.009819914,2.994328148,,,,,,3.644425333,2.58105687,3.12533451,3.053417243,0.140317628,,,,,1517.146,,,,,0.774387323,42026,54270,0.720387696,0.82838695,55160,,,50068.76596,60251.23404,66500,20538.29787,112461.7021,92667,73953.46809,111380.5319,35489,27452.40426,43525.59575,91705,43643.89362,139766.1064,56307,54331.51064,58282.48936,,,,,,,,,,,49.97839356,,,,,0.32086657,,55160,,,5,47,9400,,,9.365292854,119,1270649,7.682603477,11.04798223,,,,,,,40.84111758,29.04202707,55.83115221,,,,6.913865803,5.456314771,8.641145987,,,,21.29770559,193,896076,18.15215506,24.44325613,21.53835166,,,,,,,,,,,,,22.6778695,19.20466854,26.15107046,,,,21.42675398,192,896076,18.39592215,24.45758581,,,,,,,48.93601246,33.68529929,68.7243557,,,,20.00066244,16.87205823,23.12926665,,,,14.48078895,184,1270649,12.38841462,16.57316328,,,,,,,15.70812215,8.791716723,25.90815866,,,,14.90521719,12.63775352,17.17268085,,,,12.65432099,,16200,,,158,47,0.572909338,82244,143555,,,0.615,,,,,100.854592,,,,,0.697134055,53855,77252,0.682726947,0.711541163,0.112052937,8196,73144,0.100660191,0.123445683,0.847978046,65508,77252,0.835920793,0.860035299,175515,,,,,0.195857904,34376,175515,,,0.22121756,38827,175515,,,0.074073441,13001,175515,,,0.001532633,269,175515,,,0.011019001,1934,175515,,,0.000250691,44,175515,,,0.012477566,2190,175515,,,0.873794263,153364,175515,,,0.001650329,282,170875,0.000566121,0.002734538,0.51559126,90494,175515,,,0.293767462,53097,180745,, -54,041,54041,WV,Lewis County,2024,1,13080.64454,438,44445,11139.97492,15021.31417,0,,,,2,,,,2,,,,2,,,,2,12747.89216,10853.00933,14642.77499,,,,,2,,0.218,,,0.186,0.256,4.521291151,,,3.661445664,5.46742717,6.410823383,,,5.301820542,7.555090148,0.097581318,117,1199,0.080784235,0.1143784,0,,,,,,,,,,,,,0.09556314,0.078731494,0.112394786,,,,,,,0.23,,,0.185,0.277,0.394,,,0.324,0.468,7.7,0.043545318,0.128,,,0.299,,,0.249,0.353,0.532789291,9075,17033,,,0.130357615,,,0.103762631,0.16196855,0.12,3,25,0.038239959,0.237563726,183.5,31,16892,,,26.56088306,77,2899,20.96143355,33.19654657,,,,,,,,,,,,,27.66798419,21.83514044,34.58023302,,,,,,,0.07852054,1036,13194,0.065414157,0.091626923,0.000414397,7,16892,,,2413.142857,0.000298205,5,16767,,,3353.4,0.001908511,32,16767,,,523.96875,3994,,,,,,,,,4009,0.42,,,,,,,,,0.42,0.39,,,,,,,,,0.39,0.877688948,10649,12133,0.849849711,0.905528184,0.495454546,1962,3960,0.408122012,0.582787079,0.046803832,298,6367,,,0.253,883,,0.167212766,0.338787234,,,,,,,,,,,,,0.244171393,0.175883328,0.312459457,5.648082922,112250,19874,4.515267115,6.78089873,0.229079789,824,3597,0.143600398,0.314559179,10.06393559,17,16892,,,137.2844881,111,80854,111.7447729,162.8242033,,,,,,,,,,,,,140.101027,113.7993075,166.4027464,,,,7.2,,,,,0,,,,,0.110510046,715,6470,0.081324551,0.139695542,0.098909657,0.06879735,0.129021965,0.013137558,0.002080565,0.024194551,0.00618238,0,0.012993116,0.782774973,5117,6537,0.752175933,0.813374013,,,,,,,,,,,,,0.794143433,0.744249283,0.844037584,0.448,,6537,0.379865975,0.516134025,71.47323631,,,70.1839107,72.76256192,,,,,,,,,,,,,71.56088484,70.3038125,72.81795718,,,,675.5025415,438,44445,607.8012689,743.2038141,,,,,,,,,,,,,676.1052185,607.5959206,744.6145164,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.146,,,0.125,0.168,0.212,,,0.185,0.242,0.118,,,0.102,0.137,34.8,5,14355,,,0.128,2170,,,,0.043545318,712.9239518,16372,,,43.20632047,21,48604,26.74539335,66.04545045,,,,,,,,,,,,,44.95729057,27.82927144,68.72199425,,,,0.378,,,0.36,0.396,0.094581995,913,9653,0.076709655,0.112454336,0.03588775,133,3706,0.022781367,0.048994133,0.002147075,36,16767,,,465.75,0.875,161.875,185,,,,,,,,2.379311064,,,,,,,,,2.389890588,2.579978162,,,,,,,,,2.609258248,0.054397903,,,,,1917.612,,,,,0.645123077,41933,65000,0.493210365,0.797035789,53283,,,46291.34043,60274.65957,,,,21989,16450.95745,27527.04255,,,,,,,50054,41593.23404,58514.76596,,,,,,,,,,,,,,,,0.268922546,,53283,,,2.2172949,2,902,,,,,,,,,,,,,,,,,,,,,,,,,,27.85075299,24,80854,17.45391862,42.16637473,29.68313256,,,,,,,,,,,,,26.29017144,15.8284006,41.05535933,,,,32.15672694,26,80854,21.00584166,47.11705554,,,,,,,,,,,,,32.13326307,20.7949536,47.43503515,,,,22.0049115,25,113611,14.24041849,32.48359023,,,,,,,,,,,,,22.85756082,14.79220818,33.74226884,,,,,,1500,,,9,,0.593001988,7457,12575,,,0.622,,,,,31.20976265,,,,,0.727445533,4975,6839,0.680729133,0.774161933,0.108959219,692,6351,0.076130544,0.141787894,0.773797339,5292,6839,0.727650012,0.819944666,16767,,,,,0.212739309,3567,16767,,,0.214349615,3594,16767,,,0.006858711,115,16767,,,0.002087434,35,16767,,,0.004473072,75,16767,,,0.000119282,2,16767,,,0.014313831,240,16767,,,0.960398402,16103,16767,,,0.000874126,14,16016,0,0.006844654,0.497823105,8347,16767,,,0.739916632,12603,17033,, -54,043,54043,WV,Lincoln County,2024,1,16462.72477,582,55755,14393.68771,18531.76182,0,,,,2,,,,2,,,,2,,,,2,16486.60329,14386.90091,18586.30567,,,,,2,,0.257,,,0.222,0.299,5.495885406,,,4.490194496,6.540256097,7.388805422,,,6.152139495,8.579035902,0.111414901,163,1463,0.095291559,0.127538243,0,,,,,,,,,,,,,0.110878661,0.09462744,0.127129882,,,,,,,0.271,,,0.223,0.323,0.445,,,0.374,0.522,7.5,0.011535192,0.152,,,0.345,,,0.289,0.406,0.051165518,1047,20463,,,0.125579499,,,0.098373135,0.156208533,0.304347826,7,23,0.193028658,0.417911766,173.9,35,20126,,,30.17131169,118,3911,24.72742272,35.61520066,,,,,,,,,,,,,30.78556263,25.18316188,36.38796339,,,,,,,0.083937047,1344,16012,0.069639175,0.09823492,0.00049687,10,20126,,,2012.6,0.000200995,4,19901,,,4975.25,0.000653234,13,19901,,,1530.846154,7018,,,,,,,,,7041,0.3,,,,,,,,,0.3,0.34,,,,,,,,,0.35,0.821843854,11874,14448,0.785569113,0.858118595,0.49139621,2256,4591,0.385592673,0.597199747,0.050127443,354,7062,,,0.337,1434,,0.235723404,0.438276596,,,,,,,,,,0.865248227,0.683968536,1,0.265497357,0.191735267,0.339259448,5.106634404,90750,17771,3.681889776,6.531379032,0.273047305,1241,4545,0.159461858,0.386632752,3.478088045,7,20126,,,184.3101116,188,102002,157.9634066,210.6568166,,,,,,,,,,,,,187.0117335,160.1354969,213.88797,,,,8,,,,,0,,,,,0.109704641,910,8295,0.074278385,0.145130898,0.091743119,0.059885808,0.123600431,0.012658228,0.00194263,0.023373826,0.016274864,0.001441743,0.031107986,0.835930196,5365,6418,0.813157411,0.858702982,,,,,,,,,,,,,0.671997157,0.607693526,0.736300788,0.622,,6418,0.50757359,0.73642641,69.78781087,,,68.50310851,71.07251324,,,,,,,,,,,,,69.67733405,68.38407131,70.9705968,,,,756.7688197,582,55755,690.5929368,822.9447025,,,,,,,,,,,,,759.1116381,692.2664864,825.9567898,,,,76.93096728,15,19498,43.05767839,126.8859312,,,,,,,,,,,,,80.62782197,45.1267799,132.9833309,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.169,,,0.147,0.195,0.231,,,0.203,0.263,0.134,,,0.116,0.155,99.9,17,17024,,,0.152,3140,,,,0.011535192,250.5443711,21720,,,84.1889795,51,60578,62.68422503,110.6929601,,,,,,,,,,,,,84.78743789,62.93087066,111.7816667,,,,0.423,,,0.406,0.439,0.102167183,1188,11628,0.084294842,0.120039523,0.036691272,169,4606,0.023584889,0.049797655,0.001004975,20,19901,,,995.05,0.85,184.45,217,,,,,,,,2.665254235,,,,,,,,,2.670437302,2.533587866,,,,,,,,,2.540762438,0.094666475,,,,,648.9111,,,,,0.676985537,40020,59115,0.514396588,0.839574486,43727,,,37221.46809,50232.53192,,,,,,,,,,,,,51366,45138.08511,57593.91489,,,,,,,,,,,,,,,,0.30418277,,43727,,,1.787310098,2,1119,,,,,,,,,,,,,,,,,,,,,,,,,,23.45667737,22,102002,14.520053,35.85602306,21.56820455,,,,,,,,,,,,,22.71714791,13.87622412,35.08479248,,,,19.60745868,20,102002,11.97674515,30.28212967,,,,,,,,,,,,,20.10878855,12.28297046,31.05639299,,,,21.4311886,31,144649,14.56145288,30.41986153,,,,,,,,,,,,,21.95125405,14.91481213,31.15805293,,,,10,,2000,,,20,0,0.491679749,7830,15925,,,0.43,,,,,2.165679511,,,,,0.779320988,6060,7776,0.746010689,0.812631286,0.085385636,579,6781,0.050783673,0.1199876,0.818544239,6365,7776,0.774586495,0.862501982,19901,,,,,0.217476509,4328,19901,,,0.211748153,4214,19901,,,0.004723381,94,19901,,,0.001406965,28,19901,,,0.003668157,73,19901,,,5.02487E-05,1,19901,,,0.007688056,153,19901,,,0.971056731,19325,19901,,,0.001139188,22,19312,0,0.007407112,0.499874378,9948,19901,,,1,20463,20463,, -54,045,54045,WV,Logan County,2024,1,21038.84453,1187,88284,19191.03642,22886.65265,0,,,,2,,,,2,30286.49176,15649.47225,52904.40608,1,,,,2,21258.19514,19359.51065,23156.87962,,,,,2,,0.268,,,0.229,0.314,5.50743347,,,4.512083088,6.625209801,7.063914917,,,5.859641248,8.325603691,0.105822354,249,2353,0.093393082,0.118251627,0,,,,,,,,,,,,,0.103494029,0.090938355,0.116049703,,,,,,,0.266,,,0.217,0.321,0.465,,,0.397,0.535,6.8,0.032591424,0.173,,,0.354,,,0.298,0.413,0.3920226,12767,32567,,,0.116378471,,,0.092564371,0.143467242,0.125,5,40,0.056811768,0.214221075,266.4,85,31909,,,36.25922888,221,6095,31.4786719,41.03978585,,,,,,,,,,,,,37.06293706,32.07377085,42.05210328,,,,,,,0.080784506,1973,24423,0.067678123,0.093890889,0.000407409,13,31909,,,2454.538462,0.00012773,4,31316,,,7829,0.001213437,38,31316,,,824.1052632,8395,,,,,,,5526,,8461,0.29,,,,,,,0.5,,0.29,0.32,,,,,,,0.27,,0.32,0.810599553,18874,23284,0.789481623,0.831717484,0.374737119,2851,7608,0.298233392,0.451240846,0.042723632,480,11235,,,0.329,2070,,0.242021277,0.415978723,,,,,,,0.174603175,0,0.633841067,0.748031496,0.471946248,1,0.327269748,0.255686693,0.398852802,5.659222969,99342,17554,4.545765027,6.772680911,0.304210526,2023,6650,0.209475605,0.398945448,6.267824125,20,31909,,,212.8478169,343,161148,190.3221213,235.3735125,,,,,,,339.7893306,162.9421915,624.8846769,,,,214.9409883,191.8200066,238.0619701,,,,7.5,,,,,1,,,,,0.124955877,1770,14165,0.096257709,0.153654045,0.112187959,0.082643892,0.141732025,0.010589481,0.003292343,0.01788662,0.017649135,0.006706014,0.028592257,0.874305631,8027,9181,0.829761092,0.918850171,,,,,,,,,,,,,0.863090307,0.837017546,0.889163067,0.322,,9181,0.255553767,0.388446233,66.72499709,,,65.67508978,67.77490441,,,,,,,,,,,,,66.5179007,65.44557535,67.59022606,,,,955.049493,1187,88284,896.0952717,1014.003714,,,,,,,1242.007909,709.9148335,2016.943032,,,,964.1351389,903.8692185,1024.401059,,,,79.82507896,23,28813,50.60225258,119.7768122,,,,,,,,,,,,,80.92698179,50.71650863,122.524423,,,,8.406893653,20,2379,5.135149048,12.98376541,,,,,,,,,,,,,,,,,,,,,,0.175,,,0.15,0.202,0.234,,,0.204,0.266,0.136,,,0.116,0.156,73.4,20,27266,,,0.173,5680,,,,0.032591424,1197.506692,36743,,,148.5107095,142,95616,124.0837354,172.9376836,,,,,,,,,,,,,151.6258877,126.4188374,176.8329379,,,,0.431,,,0.413,0.45,0.09825206,1765,17964,0.081571209,0.114932911,0.033088235,225,6800,0.022364831,0.04381164,0.001915954,60,31316,,,521.9333333,0.85,341.7,402,,,,,,,,2.946025023,,,,,,,,,2.943025981,2.532027021,,,,,,,,,2.532244639,0.090197194,,,,,-132.8438,,,,,0.5278423,33632,63716,0.338005831,0.717678769,42615,,,36918.48936,48311.51064,,,,,,,18427,1009.808511,35844.19149,,,,43439,37294.48936,49583.51064,,,,,,,,,,,70.35189076,,,,,0.336243107,,42615,,,1.102535832,2,1814,,,6.970007188,16,229555,3.98396134,11.318855,,,,,,,,,,,,,6.815269839,3.814454793,11.24075117,,,,20.32232686,32,161148,13.61018124,29.1862513,19.85752228,,,,,,,,,,,,,21.12525868,14.14791729,30.33939534,,,,17.37533199,28,161148,11.54578193,25.11219248,,,,,,,,,,,,,18.12755323,12.04562748,26.19936161,,,,18.29626887,42,229555,13.18634128,24.73124035,,,,,,,,,,,,,17.71970158,12.60044003,24.22341539,,,,4.666666667,,3000,,,14,0,0.503614924,13026,25865,,,0.364,,,,,22.96682449,,,,,0.757171717,9370,12375,0.722698552,0.791644883,0.095068224,1066,11213,0.064080056,0.126056393,0.880484849,10896,12375,0.851524401,0.909445296,31316,,,,,0.204496104,6404,31316,,,0.226178311,7083,31316,,,0.017530975,549,31316,,,0.001468898,46,31316,,,0.00287393,90,31316,,,6.38651E-05,2,31316,,,0.011527654,361,31316,,,0.957178439,29975,31316,,,0.000390638,12,30719,0,0.004257267,0.508206668,15915,31316,,,0.729142998,23746,32567,, -54,047,54047,WV,McDowell County,2024,1,22082.43579,732,48164,19498.96407,24665.90752,0,,,,2,,,,2,22077.75895,13836.01399,33425.99237,1,,,,2,22686.43004,19895.74069,25477.11939,,,,,2,,0.308,,,0.27,0.349,6.082393188,,,5.018239243,7.20992866,7.006351085,,,5.765741734,8.283279496,0.118357488,147,1242,0.100391984,0.136322992,0,,,,,,,,,,,,,0.117493473,0.098874235,0.13611271,,,,,,,0.31,,,0.262,0.359,0.434,,,0.36,0.512,6.8,0.019709341,0.182,,,0.407,,,0.346,0.463,0.277013238,5294,19111,,,0.103761487,,,0.080669849,0.130816481,0.346153846,9,26,0.242307924,0.448466838,206.9,38,18363,,,38.21656051,120,3140,31.37875024,45.05437078,,,,,,,,,,,,,42.15542522,34.45063843,49.86021202,,,,,,,0.103078791,1443,13999,0.084014962,0.122142621,0.000272287,5,18363,,,3672.6,0.000168067,3,17850,,,5950,0.000336135,6,17850,,,2975,5181,,,,,,,2762,,5355,0.19,,,,,,,0.23,,0.19,0.21,,,,,,,0.19,,0.21,0.774981871,10687,13790,0.734151545,0.815812197,0.266837567,1145,4291,0.200477544,0.33319759,0.062850183,258,4105,,,0.462,1460,,0.284468085,0.639531915,,,,,,,0.882562278,0.589868183,1,,,,0.352997756,0.256036416,0.449959096,5.944050433,67887,11421,4.774444475,7.113656391,0.364057673,1414,3884,0.262022254,0.466093091,4.901159941,9,18363,,,242.2361635,217,89582,210.0058015,274.4665256,,,,,,,248.8249931,147.4694606,393.250764,,,,247.8766908,213.2621441,282.4912374,,,,7.1,,,,,1,,,,,0.107671602,800,7430,0.073834711,0.141508493,0.099431818,0.063957323,0.134906314,0.01076716,0.000436696,0.021097624,0.006594886,0.001161581,0.01202819,0.8,2540,3175,0.716887882,0.883112118,,,,,,,,,,,,,0.798378926,0.716246562,0.88051129,0.555,,3175,0.419909064,0.690090936,66.32173347,,,64.85622864,67.78723829,,,,,,,,,,,,,65.87114653,64.31190135,67.4303917,,,,1018.002536,732,48164,936.1953266,1099.809745,,,,,,,1095.141648,810.1918196,1447.835336,,,,1032.138733,944.3246883,1119.952778,,,,95.3531244,15,15731,53.36841989,157.2704779,,,,,,,,,,,,,93.83571532,49.96356641,160.461931,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.194,,,0.17,0.218,0.242,,,0.214,0.273,0.153,,,0.134,0.175,88.8,14,15762,,,0.182,3510,,,,0.019709341,435.8326638,22113,,,143.6591498,76,52903,113.1870704,179.8108481,,,,,,,,,,,,,153.4265257,120.0468072,193.2153172,,,,0.447,,,0.432,0.462,0.128948382,1339,10384,0.103927106,0.153969659,0.028932141,110,3802,0.018208737,0.039655545,0.001512605,27,17850,,,661.1111111,0.88,186.56,212,,,,,,,,2.576931003,,,,,,,,,2.564221094,2.347124182,,,,,,,,,2.339337282,0.180019948,,,,,-2902.307,,,,,0.791380171,36485,46103,0.529356873,1.053403468,28972,,,25043.65957,32900.34043,,,,,,,23319,13489.21277,33148.78723,12056,1872.340426,22239.65957,30598,25594.93617,35601.06383,,,,,,,,,,,43.95993644,,,,,0.435282342,,28972,,,2.098635887,2,953,,,16.33503944,21,128558,10.11164687,24.96984298,,,,,,,,,,,,,14.02020662,8.013759478,22.76793719,,,,35.64545441,30,89582,23.49057907,51.86226471,33.48887053,,,,,,,,,,,,,37.85117316,24.72564299,55.46073863,,,,31.25627916,28,89582,20.76957051,45.17402597,,,,,,,,,,,,,28.93991821,18.34542565,43.42408669,,,,29.55864279,38,128558,20.91745488,40.57154663,,,,,,,,,,,,,30.66920199,21.36222291,42.65343571,,,,0,,1600,,,0,0,0.458517738,6527,14235,,,0.272,,,,,9.476513192,,,,,0.770734688,5046,6547,0.722505502,0.818963874,0.126665482,713,5629,0.082355456,0.170975509,0.790743852,5177,6547,0.749568133,0.831919571,17850,,,,,0.202577031,3616,17850,,,0.249691877,4457,17850,,,0.068235294,1218,17850,,,0.005266106,94,17850,,,0.004257703,76,17850,,,0.003809524,68,17850,,,0.068907563,1230,17850,,,0.798431373,14252,17850,,,0.005940154,107,18013,0.000162978,0.011717331,0.505770308,9028,17850,,,1,19111,19111,, -54,049,54049,WV,Marion County,2024,1,10375.82246,1076,154365,9403.243165,11348.40175,0,,,,2,,,,2,19866.6296,12593.73899,29809.69883,1,,,,2,10372.03353,9364.56211,11379.50494,,,,,2,,0.195,,,0.16,0.23,4.192530254,,,3.414428394,5.067330346,5.740965385,,,4.825013155,6.748412088,0.097416974,396,4065,0.088301344,0.106532604,0,,,,,,,0.177419355,0.11017823,0.24466048,,,,0.096066363,0.086618177,0.10551455,,,,,,,0.21,,,0.164,0.257,0.387,,,0.327,0.448,8.1,0.05129231,0.106,,,0.271,,,0.222,0.322,0.611191175,34352,56205,,,0.140712281,,,0.113636223,0.171466639,0.15,3,20,0.050642257,0.283837277,316.1,177,56001,,,16.47896655,199,12076,14.18936713,18.76856596,,,,,,,,,,,,,16.87569163,14.43061707,19.32076619,,,,,,,0.078024937,3448,44191,0.064918554,0.09113132,0.000482134,27,56001,,,2074.111111,0.000536174,30,55952,,,1865.066667,0.001268945,71,55952,,,788.056338,4399,,,,,,,11654,,4234,0.43,,,,,,,0.4,,0.43,0.41,,,,,,0.45,0.33,,0.41,0.913796675,35289,38618,0.900621473,0.926971877,0.628220402,8437,13430,0.575603107,0.680837697,0.043373399,1097,25292,,,0.202,2173,,0.135276596,0.268723404,,,,,,,0.336700337,0.088534958,0.584865716,0.102040816,0,0.243455821,0.200701233,0.157970642,0.243431823,4.536267383,114822,25312,4.112296979,4.960237787,0.252739292,2791,11043,0.2041277,0.301350884,14.64259567,82,56001,,,109.8160581,308,280469,97.55165084,122.0804654,,,,,,,230.6171755,142.7556664,352.5228502,,,,109.0768031,96.3906689,121.7629374,,,,7.6,,,,,1,,,,,0.095289776,2195,23035,0.079786233,0.11079332,0.081945662,0.066233873,0.097657451,0.011504233,0.006954899,0.016053567,0.004297808,0.000641329,0.007954286,0.783309167,19448,24828,0.762363831,0.804254503,,,,,,,,,,,,,0.781342547,0.762088409,0.800596685,0.369,,24828,0.334241986,0.403758014,74.3590848,,,73.63374268,75.08442691,,,,,,,68.92580125,63.89948575,73.95211675,,,,74.2083209,73.46432648,74.95231531,,,,515.1734026,1076,154365,482.5377838,547.8090214,,,,,,,821.6345187,578.5065262,1132.514954,,,,518.5455474,484.9092603,552.1818346,,,,46.25346901,24,51888,29.63547035,68.82149552,,,,,,,,,,,,,45.61647406,28.23731641,69.72962624,,,,6.242496999,26,4165,4.077806294,9.146704462,,,,,,,,,,,,,6.028833552,3.821763313,9.046210457,,,,,,,0.134,,,0.113,0.156,0.193,,,0.166,0.221,0.119,,,0.1,0.137,77,37,48052,,,0.106,5960,,,,0.05129231,2893.809562,56418,,,55.94072663,94,168035,45.20580141,68.45728195,,,,,,,,,,,,,55.85372743,44.73654602,68.89536644,,,,0.445,,,0.425,0.462,0.093689614,3103,33120,0.077008763,0.110370465,0.032612427,380,11652,0.021889023,0.043335831,0.001054475,59,55952,,,948.3389831,0.97,526.71,543,,,0.073187184,217,2965,0.026116709,0.120257659,2.965449115,,,,,,,2.520355529,,3.006578232,2.920134796,,,,,,,2.598835887,,2.955369778,0.093645269,,,,,3464.857,,,,,0.770176033,43183,56069,0.710399741,0.829952326,58855,,,54490.57447,63219.42553,,,,,,,21645,11539.97872,31750.02128,103021,62330.44681,143711.5532,61771,58095.25532,65446.74468,,,,,,,,,,,60.91776741,,,,,0.296559341,,58855,,,6.093649776,19,3118,,,6.092422042,24,393932,3.90352976,9.065041072,,,,,,,,,,,,,4.921354029,2.916706296,7.777861089,,,,16.41534122,48,280469,11.97346253,21.96501808,17.11419087,,,,,,,,,,,,,16.35854007,11.73917078,22.19220675,,,,17.47073652,49,280469,12.92494705,23.09724019,,,,,,,,,,,,,16.89922302,12.27900132,22.68641813,,,,10.91558949,43,393932,7.89966624,14.70322741,,,,,,,,,,,,,10.38952517,7.352246364,14.26043503,,,,7.4,,5000,,,37,0,0.576273458,25794,44760,,,0.59,,,,,48.14692659,,,,,0.752675129,17374,23083,0.734487308,0.77086295,0.099054256,2189,22099,0.080930187,0.117178324,0.87129056,20112,23083,0.856839789,0.885741331,55952,,,,,0.196007292,10967,55952,,,0.203245639,11372,55952,,,0.032098942,1796,55952,,,0.002823849,158,55952,,,0.006398341,358,55952,,,0.000250215,14,55952,,,0.014941378,836,55952,,,0.925132256,51763,55952,,,0.001521984,81,53220,0,0.004209849,0.502287675,28104,55952,,,0.434801174,24438,56205,, -54,051,54051,WV,Marshall County,2024,1,10665.94686,645,82554,9224.507454,12107.38626,0,,,,2,,,,2,,,,2,,,,2,10870.05752,9376.763814,12363.35122,,,,,2,,0.196,,,0.165,0.231,4.663384212,,,3.73557762,5.69335291,6.077624779,,,4.97460039,7.214826495,0.089492207,178,1989,0.076947136,0.102037278,0,,,,,,,,,,,,,0.089473684,0.076639355,0.102308014,,,,,,,0.213,,,0.169,0.259,0.404,,,0.335,0.475,8.1,0.039634468,0.11,,,0.282,,,0.233,0.335,0.480370044,14695,30591,,,0.136096675,,,0.107262245,0.168010336,0.153846154,2,13,0.034991468,0.324991408,192.6,58,30115,,,22.7636493,128,5623,18.82004826,26.70725034,,,,,,,,,,,,,22.57041597,18.54877821,26.59205372,,,,,,,0.063392423,1434,22621,0.052669019,0.074115827,0.000365267,11,30115,,,2737.727273,0.000403334,12,29752,,,2479.333333,0.00026889,8,29752,,,3719,5516,,,,,,,,,5542,0.4,,,,,,,,,0.4,0.45,,,,,,,,,0.45,0.924482607,20995,22710,0.901494284,0.947470929,0.595680346,4137,6945,0.509188762,0.68217193,0.050065069,654,13063,,,0.265,1448,,0.198276596,0.331723404,,,,,,,,,,,,,0.213840156,0.151074131,0.276606181,5.571801567,117370,21065,4.729371303,6.41423183,0.32245546,1828,5669,0.247342226,0.397568693,12.61829653,38,30115,,,102.7998219,157,152724,86.71935674,118.8802871,,,,,,,,,,,,,104.5017168,87.99657971,121.0068539,,,,9.2,,,,,0,,,,,0.082591093,1020,12350,0.058540837,0.106641349,0.076651621,0.049660741,0.103642501,0.004777328,0,0.010405337,0.011336032,0,0.027732321,0.833721291,10745,12888,0.809565803,0.857876779,,,,,,,,,,,,,0.823333333,0.80187573,0.844790937,0.352,,12888,0.29899546,0.40500454,74.28753329,,,73.23332758,75.34173899,,,,,,,,,,,,,74.03570799,72.95303625,75.11837972,,,,504.0113311,645,82554,460.8078618,547.2148005,,,,,,,,,,,,,511.157119,466.9611279,555.35311,,,,59.11796004,15,25373,33.08787346,97.5060847,,,,,,,,,,,,,62.94850812,35.23180214,103.8239912,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.14,,,0.119,0.163,0.198,,,0.171,0.226,0.115,,,0.098,0.134,99.3,26,26182,,,0.11,3390,,,,0.039634468,1312.178319,33107,,,39.66985862,36,90749,27.78428128,54.91980572,,,,,,,,,,,,,41.16591005,28.83209731,56.9909715,,,,0.372,,,0.353,0.39,0.076338128,1295,16964,0.062040256,0.090636,0.025864965,154,5954,0.01633305,0.03539688,0.000941113,28,29752,,,1062.571429,0.98,283.22,289,,,,,,,,2.987387358,,,,,,,,,2.972664692,2.848751194,,,,,,,,,2.834115677,0.05375707,,,,,7000.28,,,,,0.736079918,40968,55657,0.627511462,0.844648374,51934,,,45309.31915,58558.68085,,,,,,,63692,63524,63860,38958,28284.6383,49631.3617,57872,50339.40426,65404.59575,,,,,,,,,,,82.7941276,,,,,0.285496977,,51934,,,4.029550034,6,1489,,,,,,,,,,,,,,,,,,,,,,,,,,27.27417132,40,152724,19.10249429,37.75894954,26.19103743,,,,,,,,,,,,,26.52078124,18.36641197,37.06013354,,,,16.36939839,25,152724,10.59341155,24.16446118,,,,,,,,,,,,,16.28598184,10.43473587,24.23225004,,,,11.08570637,24,216495,7.102821245,16.49465235,,,,,,,,,,,,,11.48402285,7.358030133,17.0873157,,,,20,,2700,,,24,30,0.567055981,14080,24830,,,0.623,,,,,52.24313613,,,,,0.796350062,9600,12055,0.762522131,0.830177994,0.107888831,1250,11586,0.076822202,0.138955461,0.815678142,9833,12055,0.780815198,0.850541085,29752,,,,,0.186979027,5563,29752,,,0.241093036,7173,29752,,,0.009511966,283,29752,,,0.003159452,94,29752,,,0.005747513,171,29752,,,0.00026889,8,29752,,,0.01105808,329,29752,,,0.958591019,28520,29752,,,0.000755495,22,29120,0,0.004861851,0.493210541,14674,29752,,,0.489359616,14970,30591,, -54,053,54053,WV,Mason County,2024,1,14201.75128,653,70901,12510.21031,15893.29224,0,,,,2,,,,2,,,,2,,,,2,14297.25064,12570.54164,16023.95964,,,,,2,,0.221,,,0.185,0.256,4.714403438,,,3.821399095,5.680013626,6.714758589,,,5.610729695,7.880749893,0.09668353,172,1779,0.082950565,0.110416495,0,,,,,,,,,,,,,0.095404305,0.081516635,0.109291975,,,,,,,0.239,,,0.191,0.288,0.462,,,0.389,0.534,7.9,0.064651468,0.11,,,0.312,,,0.26,0.367,0.194633246,4954,25453,,,0.123799016,,,0.09776892,0.153818724,0.368421053,7,19,0.246027076,0.486088994,242.5,61,25157,,,29.05668099,142,4887,24.27745129,33.8359107,,,,,,,,,,,,,28.95752896,24.0726851,33.84237282,,,,,,,0.066934894,1281,19138,0.05621149,0.077658298,0.000477004,12,25157,,,2096.416667,0.00028,7,25000,,,3571.428571,0.00036,9,25000,,,2777.777778,4119,,,,,,,,,4119,0.36,,,,,,,,,0.36,0.35,,,,,,,,,0.35,0.855621945,15752,18410,0.829073211,0.882170679,0.508122593,3034,5971,0.42367157,0.592573615,0.04277512,447,10450,,,0.25,1248,,0.161829787,0.338170213,,,,,,,,,,,,,0.236693801,0.148871335,0.324516267,4.440837927,100696,22675,3.654267303,5.227408551,0.238983051,1269,5310,0.148098228,0.329867873,14.70763605,37,25157,,,154.3409338,203,131527,133.1090184,175.5728492,,,,,,,,,,,,,155.1486513,133.4830392,176.8142634,,,,8.4,,,,,0,,,,,0.080226522,850,10595,0.056167191,0.104285853,0.067210754,0.042680739,0.091740768,0.008966494,0.002290417,0.015642571,0.00660689,0.000764333,0.012449447,0.902210978,8202,9091,0.872186905,0.932235051,,,,,,,,,,,,,0.844769941,0.729341067,0.960198815,0.421,,9091,0.362811875,0.479188125,71.81702259,,,70.68576418,72.948281,,,,,,,,,,,,,71.65294754,70.50603098,72.79986409,,,,648.8955232,653,70901,594.8001063,702.99094,,,,,,,,,,,,,654.6814787,599.5092586,709.8536988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.147,,,0.126,0.17,0.217,,,0.188,0.248,0.12,,,0.102,0.139,78.7,17,21595,,,0.11,2820,,,,0.064651468,1766.536719,27324,,,78.19710799,61,78008,59.81459153,100.4474566,,,,,,,,,,,,,81.09114113,62.02829757,104.1649632,,,,0.418,,,0.399,0.436,0.080921146,1135,14026,0.066623274,0.095219019,0.029247392,157,5368,0.018523988,0.039970796,0.0008,20,25000,,,1250,0.95,234.65,247,,,,,,,,2.890246898,,,,,,,,,2.896500366,2.607198167,,,,,,,,,2.613845877,0.04594561,,,,,1610.751,,,,,0.635613424,34660,54530,0.467998296,0.803228552,48077,,,42303.04255,53850.95745,,,,,,,,,,81187,80264.78723,82109.21277,51855,43434.74468,60275.25532,,,,,,,,,,,,,,,,0.280321152,,48077,,,2.271006813,3,1321,,,,,,,,,,,,,,,,,,,,,,,,,,23.27801189,29,131527,15.20597021,34.10768083,22.04870483,,,,,,,,,,,,,23.13751606,14.97338044,34.15553799,,,,20.5281045,27,131527,13.52815021,29.86731427,,,,,,,,,,,,,20.47647175,13.37591118,30.00277542,,,,17.26100254,32,185389,11.80651296,24.36738538,,,,,,,,,,,,,17.30712328,11.75935058,24.56607999,,,,,,2600,,,15,,0.531956315,11203,21060,,,0.546,,,,,30.02000091,,,,,0.842391304,8525,10120,0.808239586,0.876543023,0.053511706,496,9269,0.03243282,0.074590591,0.783003953,7924,10120,0.756405182,0.809602723,25000,,,,,0.20276,5069,25000,,,0.22784,5696,25000,,,0.0108,270,25000,,,0.0022,55,25000,,,0.00404,101,25000,,,0.0002,5,25000,,,0.00872,218,25000,,,0.961,24025,25000,,,4.14388E-05,1,24132,0,0.004633205,0.51788,12947,25000,,,0.687188151,17491,25453,, -54,055,54055,WV,Mercer County,2024,1,16625.59896,1629,159743,15364.10351,17887.09441,0,,,,2,,,,2,22876.1512,16620.88458,29131.41783,,,,,2,16607.45548,15280.93482,17933.97615,,,,,2,,0.233,,,0.199,0.273,5.16109793,,,4.288636988,6.154156872,6.912321348,,,5.930510116,7.97645766,0.11025583,487,4417,0.101018941,0.119492719,0,,,,,,,0.159010601,0.116404562,0.201616639,,,,0.108461539,0.098701946,0.118221131,,,,0.090909091,0.037185251,0.144632931,0.216,,,0.175,0.262,0.444,,,0.386,0.501,6.7,0.126409511,0.136,,,0.324,,,0.277,0.379,0.639380531,38148,59664,,,0.112472846,,,0.08939132,0.138302702,0.172413793,10,58,0.10888259,0.245275224,299.5,177,59097,,,40.27657736,466,11570,36.61965558,43.93349913,,,,,,,25.24038462,15.62419589,38.58260906,61.34969325,29.41956255,112.8242702,40.34096541,36.42169567,44.26023514,,,,70.84468665,46.27810141,103.8038803,0.085693972,3857,45009,0.072587589,0.098800355,0.00050764,30,59097,,,1969.9,0.000425894,25,58700,,,2348,0.001601363,94,58700,,,624.4680851,4318,,,,,,,4517,,4292,0.42,,,,,,0.36,0.37,,0.43,0.36,,,,,,0.48,0.24,,0.36,0.864012557,36330,42048,0.84356574,0.884459374,0.567050093,7641,13475,0.502681468,0.631418718,0.044652433,916,20514,,,0.28,3400,,0.184680851,0.375319149,,,,,,,0.245253165,0.004939889,0.48556644,,,,0.267840966,0.206044582,0.32963735,4.305805852,92704,21530,3.824939357,4.786672348,0.268031984,3285,12256,0.197616206,0.338447763,11.67571958,69,59097,,,174.9170331,516,294997,159.8244588,190.0096074,,,,,,,163.8973663,109.7646385,235.3839575,,,,182.2417616,166.0224242,198.4610989,,,,7.1,,,,,1,,,,,0.114388203,2870,25090,0.09513855,0.133637855,0.098546042,0.079607021,0.117485063,0.012754085,0.003936654,0.021571517,0.005779195,0.000912518,0.010645872,0.849248667,19272,22693,0.826943595,0.871553739,,,,,,,0.722259583,0.537418426,0.90710074,,,,0.853918495,0.830880775,0.876956215,0.287,,22693,0.246019001,0.327980999,69.8697683,,,69.06840681,70.67112978,,,,,,,65.62164562,62.10788078,69.13541045,,,,69.80967495,68.97061454,70.64873536,,,,741.8072877,1629,159743,702.594099,781.0204764,,,,,,,983.0226712,791.2428651,1174.802477,,,,741.8409518,700.8969497,782.784954,,,,81.09702153,44,54256,58.92521999,108.8689662,,,,,,,,,,,,,84.73655622,60.25597499,115.8376619,,,,8.969590899,41,4571,6.43673329,12.16826287,,,,,,,,,,,,,8.388847767,5.809520944,11.72257392,,,,,,,0.157,,,0.135,0.181,0.221,,,0.193,0.251,0.132,,,0.114,0.151,107.5,54,50213,,,0.136,8170,,,,0.126409511,7870.761762,62264,,,99.3680194,175,176113,84.64544761,114.0905912,,,,,,,122.7805062,65.37544854,209.958405,,,,101.4658986,85.79249784,117.1392994,,,,0.41,,,0.391,0.426,0.105333781,3454,32791,0.08746144,0.123206121,0.033859869,433,12788,0.021944975,0.045774762,0.002129472,125,58700,,,469.6,0.87,494.16,568,,,0.058131488,168,2890,0.019600279,0.096662697,2.682496143,,,,,,,2.395347238,,2.715655894,2.604208822,,,,,,,2.315559323,,2.638171365,0.121908645,,,,,-184.9482,,,,,0.703996092,36027,51175,0.617833454,0.79015873,43917,,,38854.3617,48979.6383,,,,77946,5311.617021,150580.383,39700,21193.78723,58206.21277,,,,47509,43714.10638,51303.89362,,,,,,,,,,,54.34077448,,,,,0.35220985,,43917,,,4.608294931,15,3255,,,8.640781127,36,416629,6.051896872,11.96248329,,,,,,,,,,,,,7.977259492,5.382223481,11.38803395,,,,19.67843455,65,294997,14.94266039,25.43893994,22.03412238,,,,,,,,,,,,,21.34773595,16.16856673,27.65846803,,,,21.69513588,64,294997,16.70789823,27.70420418,,,,,,,,,,,,,22.16961635,16.87653915,28.59718986,,,,15.84143207,66,416629,12.25176241,20.15418573,,,,,,,,,,,,,17.01815358,13.10605196,21.7318022,,,,,,5300,,,47,,0.534936682,25134,46985,,,0.517,,,,,42.75299474,,,,,0.699521883,17118,24471,0.670488498,0.728555268,0.085055854,1934,22738,0.067412415,0.102699293,0.816844428,19989,24471,0.794046738,0.839642119,58700,,,,,0.210834753,12376,58700,,,0.228381601,13406,58700,,,0.060919932,3576,58700,,,0.002725724,160,58700,,,0.005945486,349,58700,,,0.000102215,6,58700,,,0.014344123,842,58700,,,0.89572402,52579,58700,,,0.004524164,255,56364,0.00032124,0.008727089,0.514531516,30203,58700,,,0.418124832,24947,59664,, -54,057,54057,WV,Mineral County,2024,1,9648.093712,530,73075,8287.009116,11009.17831,0,,,,2,,,,2,17199.47788,8247.818182,31630.4522,1,,,,2,9466.930215,8062.707908,10871.15252,,,,,2,,0.182,,,0.152,0.214,4.363586944,,,3.500217194,5.304703538,6.054727621,,,4.967662317,7.181963156,0.091061453,163,1790,0.07773348,0.104389426,0,,,,,,,,,,,,,0.088757396,0.075198261,0.102316532,,,,,,,0.198,,,0.156,0.245,0.343,,,0.277,0.41,8.3,0.055362534,0.092,,,0.25,,,0.203,0.3,0.402776747,10850,26938,,,0.133163133,,,0.104283132,0.165409151,0.142857143,2,14,0.031645086,0.307569357,201.1,54,26857,,,23.01292264,130,5649,19.05692365,26.96892164,,,,,,,,,,,,,22.96747968,18.73270614,27.20225321,,,,,,,0.062732615,1281,20420,0.052009211,0.073456019,0.000297874,8,26857,,,3357.125,0.000335133,9,26855,,,2983.888889,0.000856451,23,26855,,,1167.608696,2722,,,,,,,,,2709,0.51,,,,,,,0.29,,0.52,0.38,,,,,,,0.3,,0.38,0.939279818,18207,19384,0.92361048,0.954949157,0.567459657,3411,6011,0.477579004,0.657340311,0.037681622,472,12526,,,0.223,1159,,0.151510638,0.294489362,,,,,,,0.053571429,0,0.109834512,0.336633663,0,0.790120608,0.194492255,0.130306404,0.258678105,4.494632535,114303,25431,3.618219176,5.371045894,0.252765798,1348,5333,0.179892223,0.325639373,13.03198421,35,26857,,,100.2904709,135,134609,83.37247727,117.2084646,,,,,,,,,,,,,98.36429693,81.05088266,115.6777112,,,,7,,,,,1,,,,,0.06706753,725,10810,0.044606912,0.089528148,0.066073102,0.041816347,0.090329857,0.002312674,0,0.008936291,0.000370028,0,0.003955147,0.798926686,9230,11553,0.763137019,0.834716352,,,,,,,,,,,,,0.791741015,0.755584066,0.827897963,0.309,,11553,0.25515839,0.36284161,74.75566233,,,73.731611,75.77971365,,,,,,,,,,,,,74.82876481,73.7736431,75.88388652,,,,484.0906395,530,73075,439.4518142,528.7294648,,,,,,,850.5643815,504.0983584,1344.258423,,,,477.1028105,431.6660973,522.5395238,,,,49.1360249,12,24422,25.38930108,85.83074707,,,,,,,,,,,,,55.15466287,28.49921914,96.34409637,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.13,,,0.11,0.151,0.194,,,0.167,0.222,0.108,,,0.091,0.126,73.6,17,23101,,,0.092,2480,,,,0.055362534,1561.887814,28212,,,34.80552413,28,80447,23.12801802,50.30367316,,,,,,,,,,,,,29.24715173,18.32903428,44.28053919,,,,0.391,,,0.373,0.408,0.075948532,1151,15155,0.06165066,0.090246404,0.026002167,144,5538,0.016470252,0.035534082,0.000819214,22,26855,,,1220.681818,0.96,240.96,251,,,0.131414268,210,1598,0.054478723,0.208349813,2.872833634,,,,,,,,,2.884605647,2.6450037,,,,,,,,,2.663724448,0.064805531,,,,,1171.784,,,,,0.779147938,39869,51170,0.694160763,0.864135113,59669,,,53377.93617,65960.06383,,,,,,,68355,47066.65957,89643.34043,,,,63825,58495.46809,69154.53192,,,,,,,,,,,57.34230601,,,,,0.237845447,,59669,,,3.210272873,4,1246,,,,,,,,,,,,,,,,,,,,,,,,,,18.17059579,25,134609,11.51859904,27.26481536,18.57230943,,,,,,,,,,,,,18.45945328,11.56844109,27.9478341,,,,13.37206279,18,134609,7.925131886,21.13362425,,,,,,,,,,,,,13.48542781,7.85575865,21.59147627,,,,12.13906086,23,189471,7.695123284,18.21455151,,,,,,,,,,,,,12.94855483,8.208273021,19.42918992,,,,11.25,,2400,,,27,0,0.595374653,12872,21620,,,0.617,,,,,31.6237157,,,,,0.810197493,8533,10532,0.785686964,0.834708023,0.074784652,764,10216,0.046714919,0.102854385,0.877421193,9241,10532,0.848875311,0.905967074,26855,,,,,0.196499721,5277,26855,,,0.22580525,6064,26855,,,0.027704338,744,26855,,,0.002196984,59,26855,,,0.006255818,168,26855,,,0.000148948,4,26855,,,0.011282815,303,26855,,,0.93342022,25067,26855,,,0.003694629,95,25713,0,0.00947537,0.500837833,13450,26855,,,0.692256292,18648,26938,, -54,059,54059,WV,Mingo County,2024,1,20522.29497,851,64618,18421.64778,22622.94217,0,,,,2,,,,2,,,,2,,,,2,20980.49965,18815.52687,23145.47242,,,,,2,,0.281,,,0.242,0.325,5.742227358,,,4.722263349,6.864948358,7.078084033,,,5.882949182,8.381812172,0.118884798,226,1901,0.104335416,0.133434179,0,,,,,,,,,,,,,0.117741936,0.103094453,0.132389419,,,,,,,0.284,,,0.233,0.335,0.419,,,0.346,0.496,6,0.046003479,0.203,,,0.368,,,0.311,0.428,0.335369993,7904,23568,,,0.114846959,,,0.090043841,0.14428447,0.5625,9,16,0.449994641,0.657537814,152.1,35,23005,,,44.35937852,197,4441,38.1648478,50.55390924,,,,,,,,,,,,,45.67078972,39.21061925,52.1309602,,,,,,,0.097979079,1789,18259,0.082489717,0.113468441,0.000130406,3,23005,,,7668.333333,0.000398706,9,22573,,,2508.111111,0.002037833,46,22573,,,490.7173913,11106,,,,,,,3977,,11174,0.25,,,,,,,,,0.25,0.29,,,,,,,0.21,,0.29,0.766308588,12769,16663,0.734478019,0.798139156,0.354210426,1855,5237,0.28148141,0.426939442,0.055966043,356,6361,,,0.39,1934,,0.268468085,0.511531915,,,,,,,,,,,,,0.396400082,0.325988895,0.466811269,6.85549321,84302,12297,5.694689523,8.016296897,0.277322144,1454,5243,0.171872344,0.382771944,6.955009781,16,23005,,,163.6940286,192,117292,140.5393747,186.8486825,,,,,,,,,,,,,167.3655067,143.4409938,191.2900195,,,,7.5,,,,,1,,,,,0.108599509,1105,10175,0.080836698,0.13636232,0.08443299,0.06075265,0.10811333,0.011793612,0.002451009,0.021136215,0.020638821,0.001847864,0.039429777,0.783280705,4713,6017,0.727832094,0.838729316,,,,,,,,,,,,,0.813207112,0.76765714,0.858757083,0.534,,6017,0.449530211,0.618469789,67.20088614,,,66.01987129,68.38190099,,,,,,,,,,,,,66.857419,65.66064442,68.05419358,,,,946.7060277,851,64618,877.6626616,1015.749394,,,,,,,,,,,,,963.5448598,892.4223073,1034.667412,,,,48.85414816,11,22516,24.38781474,87.41356597,,,,,,,,,,,,,47.1475719,22.60909333,86.70606338,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.182,,,0.158,0.211,0.238,,,0.209,0.271,0.143,,,0.123,0.165,77.4,15,19381,,,0.203,4830,,,,0.046003479,1234.687367,26839,,,93.68694148,65,69380,72.30560353,119.4116976,,,,,,,,,,,,,97.89598928,75.55405776,124.7764746,,,,0.436,,,0.419,0.452,0.12146999,1613,13279,0.101214671,0.141725309,0.035967094,188,5227,0.0240522,0.047881988,0.001151819,26,22573,,,868.1923077,0.91,228.41,251,,,,,,,,2.967809289,,,,,,,,,2.958565369,2.696203476,,,,,,,,,2.677556607,0.061258229,,,,,148.3672,,,,,0.732351695,34567,47200,0.612435642,0.852267748,35761,,,31079.6383,40442.3617,,,,,,,,,,,,,40083,35336.10638,44829.89362,,,,,,,,,,,61.06003006,,,,,0.383853919,,35761,,,6.526468455,9,1379,,,5.979752558,10,167231,2.867523782,10.99697786,,,,,,,,,,,,,6.244029147,2.994254679,11.48299192,,,,16.71960034,20,117292,9.909094794,26.42417679,17.05146131,,,,,,,,,,,,,17.37640704,10.29836007,27.46221454,,,,18.75660744,22,117292,11.75466602,28.39772908,,,,,,,,,,,,,19.58532525,12.27401906,29.6524178,,,,22.72305972,38,167231,16.08018947,31.18917481,,,,,,,,,,,,,22.47850493,15.7436685,31.11972582,,,,,,2300,,,-888,,0.542022715,10022,18490,,,0.3,,,,,13.96435014,,,,,0.725503134,6597,9093,0.682377879,0.76862839,0.11752348,951,8092,0.07955124,0.15549572,0.823820521,7491,9093,0.79287052,0.854770523,22573,,,,,0.222921189,5032,22573,,,0.212333319,4793,22573,,,0.016834271,380,22573,,,0.001151819,26,22573,,,0.002835246,64,22573,,,0.000132902,3,22573,,,0.008771541,198,22573,,,0.958844637,21644,22573,,,0.00045212,10,22118,0,0.005542448,0.503787711,11372,22573,,,1,23568,23568,, -54,061,54061,WV,Monongalia County,2024,1,6873.489542,1119,302862,6313.920993,7433.058091,0,,,,2,,,,2,10045.59402,6218.38103,15355.75756,1,,,,2,7071.686859,6473.334309,7670.039408,,,,,2,,0.163,,,0.136,0.193,3.852899962,,,3.112997076,4.695915256,5.989449046,,,5.097477227,6.928868846,0.083587892,602,7202,0.077195747,0.089980037,0,,,,0.064139942,0.038211361,0.090068523,0.16286645,0.121561693,0.204171207,0.06763285,0.033423626,0.101842075,0.079521233,0.072731148,0.086311318,,,,0.112820513,0.068414831,0.157226195,0.162,,,0.127,0.202,0.347,,,0.297,0.397,8.3,0.060969409,0.093,,,0.238,,,0.198,0.279,0.759293909,80350,105822,,,0.156579853,,,0.12826234,0.187099252,0.291666667,14,48,0.216265193,0.369095517,502.9,535,106387,,,8.281141267,238,28740,7.229039412,9.333243121,,,,,,,,,,12.41534989,6.197697931,22.21449042,8.129758883,7.016857183,9.242660584,,,,,,,0.074999714,6548,87307,0.06308482,0.086914607,0.00133475,142,106387,,,749.2042254,0.00139423,149,106869,,,717.2416107,0.003546398,379,106869,,,281.9762533,3836,,,,,,,3311,20000,3815,0.5,,,,,,0.38,0.61,,0.5,0.44,,,,,,0.44,0.36,0.46,0.44,0.939025328,61062,65027,0.928895958,0.949154698,0.776214147,23111,29774,0.731805803,0.82062249,0.03409541,1894,55550,,,0.146,2450,,0.098340426,0.193659575,,,,0.119617225,0,0.260517717,0.235993209,0.127909541,0.344076877,0.166666667,0.010157404,0.323175929,0.167166801,0.126367958,0.207965643,6.283292978,140130,22302,5.701721995,6.864863961,0.206740772,3478,16823,0.157373859,0.256107684,10.43360561,111,106387,,,68.26736669,362,530268,61.23478255,75.29995083,,,,,,,124.6634088,80.67558516,184.0277835,,,,71.06924971,63.42440338,78.71409604,,,,7.2,,,,,1,,,,,0.165030446,6640,40235,0.146703665,0.183357227,0.154030831,0.135739482,0.172322181,0.01478812,0.009041892,0.020534348,0.003976637,0.001233894,0.006719381,0.728149533,38956,53500,0.71045862,0.745840446,,,,0.587653157,0.475331232,0.699975083,0.703859649,0.555739219,0.851980079,0.525839793,0.392193677,0.65948591,0.770201845,0.757143394,0.783260296,0.248,,53500,0.221304256,0.274695744,78.61170794,,,78.04918868,79.17422721,,,,92.76926718,81.63333245,103.9052019,77.76415347,72.95739111,82.57091583,,,,78.21564489,77.63586856,78.79542122,,,,341.8595547,1119,302862,321.278588,362.4405215,,,,,,,372.1670096,259.2279584,517.594218,,,,355.0045954,332.9690521,377.0401387,,,,42.00549303,39,92845,29.87001184,57.42289177,,,,,,,,,,,,,38.05754301,25.67726445,54.32950905,,,,6.27301241,46,7333,4.592633494,8.367319475,,,,,,,,,,,,,5.614372794,3.910616362,7.808233457,,,,,,,0.119,,,0.102,0.138,0.177,,,0.153,0.201,0.106,,,0.091,0.122,119.6,112,93628,,,0.093,9850,,,,0.060969409,5864.586489,96189,,,36.07073628,115,318818,29.47805382,42.66341875,,,,,,,91.65902841,45.75585674,164.0033207,,,,36.68639896,29.60135509,43.77144283,,,,0.367,,,0.349,0.387,0.087371101,6075,69531,0.071881739,0.102860462,0.029030697,540,18601,0.019498782,0.038562612,0.004631839,495,106869,,,215.8969697,0.94,749.18,797,,,,,,,,3.199149541,,,,,,3.631553702,2.86463026,,3.224116858,3.184561722,,,,,,4.032037547,2.904884633,,3.201800428,0.071795401,,,,,3980.248,,,,,0.817164662,50540,61848,0.753885693,0.880443631,59094,,,51929.57447,66258.42553,,,,73894,23278.34043,124509.6596,55098,33051.87234,77144.12766,34006,22311.53192,45700.46809,61617,58484.57447,64749.42553,,,,,,,,,,,33.29851148,,,,,0.33778387,,59094,,,5.757395275,29,5037,,,2.029423941,15,739126,1.135853174,3.347226166,,,,,,,,,,,,,1.687365011,0.842326534,3.019162103,,,,11.68791,61,530268,8.852308895,15.14304308,11.50361704,,,,,,,,,,,,,12.14543235,9.070789803,15.92711866,,,,8.674858751,46,530268,6.351086886,11.57104591,,,,,,,,,,,,,8.990688216,6.479697256,12.15279863,,,,7.441221118,55,739126,5.605746107,9.685772111,,,,,,,,,,,,,7.209650501,5.297380008,9.587306772,,,,9.166666667,,7200,,,25,41,0.49391876,42072,85180,,,0.581,,,,,75.26560556,,,,,0.570035742,25199,44206,0.553646263,0.58642522,0.168366271,7182,42657,0.148353419,0.188379122,0.897909786,39693,44206,0.882063829,0.913755743,106869,,,,,0.159204259,17014,106869,,,0.136391283,14576,106869,,,0.036072201,3855,106869,,,0.001908879,204,106869,,,0.036671065,3919,106869,,,0.000626936,67,106869,,,0.02467507,2637,106869,,,0.877027014,93727,106869,,,0.002569272,260,101196,0.000635383,0.00450316,0.483367487,51657,106869,,,0.26650413,28202,105822,, -54,063,54063,WV,Monroe County,2024,1,11690.46133,282,34551,9445.937131,13934.98552,0,,,,2,,,,2,,,,2,,,,2,12056.00742,9720.593742,14391.42109,,,,,2,,0.208,,,0.177,0.243,4.776921763,,,3.874523664,5.825262801,6.065048,,,4.971787925,7.252989076,0.070215176,62,883,0.053361973,0.087068378,0,,,,,,,,,,,,,0.069493522,0.052388088,0.086598955,,,,,,,0.231,,,0.185,0.278,0.393,,,0.316,0.472,6.7,0.187259103,0.104,,,0.292,,,0.24,0.348,0.37289916,4615,12376,,,0.118663609,,,0.091799155,0.147923604,0.333333333,4,12,0.175768434,0.488588466,259.5,32,12332,,,32.86384977,77,2343,25.9356363,41.0741735,,,,,,,,,,,,,35.1039261,27.6579011,43.93779814,,,,,,,0.089591281,822,9175,0.074101919,0.105080642,0.000405449,5,12332,,,2466.4,0.000162655,2,12296,,,6148,0.000731945,9,12296,,,1366.222222,3127,,,,,,,,,3159,0.42,,,,,,,,,0.41,0.3,,,,,,,,,0.3,0.885319054,7936,8964,0.854193692,0.916444416,0.402376238,1016,2525,0.290860411,0.513892064,0.033758682,209,6191,,,0.205,488,,0.120404255,0.289595745,,,,,,,,,,,,,0.240724382,0.137117444,0.344331319,3.790024958,92632,24441,3.202255416,4.3777945,0.14217633,358,2518,0.075379724,0.208972937,11.35257866,14,12332,,,155.6824079,102,65518,125.4692914,185.8955244,,,,,,,,,,,,,160.5238481,129.2173172,191.8303791,,,,6.9,,,,,0,,,,,0.062784349,345,5495,0.035329294,0.090239405,0.045101664,0.019428702,0.070774625,0.013648772,0,0.028765786,0.004549591,0,0.010073274,0.773051331,3253,4208,0.71302221,0.833080452,,,,,,,,,,,,,0.766479305,0.678159099,0.854799511,0.576,,4208,0.447727994,0.704272006,74.0308955,,,72.44506507,75.61672594,,,,,,,,,,,,,73.64543552,72.02238623,75.26848481,,,,542.3971299,282,34551,471.5455409,613.2487188,,,,,,,,,,,,,555.7100394,482.5902203,628.8298585,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.144,,,0.124,0.167,0.206,,,0.177,0.235,0.114,,,0.098,0.133,272.2,29,10656,,,0.104,1300,,,,0.187259103,2528.372409,13502,,,54.07354001,21,38836,33.47237353,82.6571499,,,,,,,,,,,,,56.39097744,34.90690382,86.19959918,,,,0.383,,,0.363,0.4,0.108012395,732,6777,0.087757076,0.128267714,0.038492064,97,2520,0.024194191,0.052789936,0.000731945,9,12296,,,1366.222222,0.925,97.125,105,,,,,,,,2.653352718,,,,,,,,,2.662258896,2.254381064,,,,,,,,,2.234768858,,,,,,2761.617,,,,,0.718077814,31948,44491,0.42408455,1.012071077,53154,,,47188.21277,59119.78723,,,,,,,,,,92917,8813.340426,177020.6596,52795,47858.65957,57731.34043,,,,,,,,,,,,,,,,0.259209091,,53154,,,3.436426117,2,582,,,,,,,,,,,,,,,,,,,,,,,,,,20.58856338,13,65518,10.27773666,36.83862704,19.84187552,,,,,,,,,,,,,21.33734545,10.65152597,38.17840499,,,,27.4733661,18,65518,16.28245792,43.41976292,,,,,,,,,,,,,28.60821056,16.95503867,45.21330642,,,,23.81106998,22,92394,14.92227079,36.05024611,,,,,,,,,,,,,23.64199268,14.6347661,36.1392972,,,,,,1300,,,13,-888,0.612264151,6490,10600,,,0.385,,,,,4.680195654,,,,,0.816579635,3753,4596,0.781863834,0.851295435,0.055248619,240,4344,0.020988227,0.089509011,0.78437772,3605,4596,0.734220869,0.834534571,12296,,,,,0.197299935,2426,12296,,,0.25772609,3169,12296,,,0.010247235,126,12296,,,0.004310345,53,12296,,,0.002765127,34,12296,,,0.000487964,6,12296,,,0.023096942,284,12296,,,0.938516591,11540,12296,,,0.010551194,125,11847,0,0.023193384,0.495445673,6092,12296,,,1,12376,12376,, -54,065,54065,WV,Morgan County,2024,1,12733.32209,376,47939,10548.70642,14917.93777,0,,,,2,,,,2,,,,2,,,,2,12677.66634,10464.52786,14890.80482,,,,,2,,0.19,,,0.16,0.226,4.423028896,,,3.487486771,5.387717239,6.20066592,,,5.018783234,7.373208064,0.083417085,83,995,0.066235711,0.10059846,0,,,,,,,,,,,,,0.085084034,0.067360422,0.102807646,,,,,,,0.21,,,0.166,0.258,0.413,,,0.337,0.487,9.1,0.044650978,0.064,,,0.27,,,0.22,0.325,0.673797105,11497,17063,,,0.131331503,,,0.102392663,0.16259718,0.357142857,5,14,0.212111468,0.496744159,116.1,20,17221,,,20.21478206,64,3166,15.5678454,25.8138254,,,,,,,,,,,,,20.35968782,15.53658668,26.20695399,,,,,,,0.081743661,1067,13053,0.068637278,0.094850043,0.000522618,9,17221,,,1913.444444,0.000286862,5,17430,,,3486,0.000745841,13,17430,,,1340.769231,2937,,,,,,,,,2968,0.36,,,,,,,,,0.36,0.31,,,,,,,,,0.31,0.882235835,11522,13060,0.850744185,0.913727485,0.451586433,1651,3656,0.355119364,0.548053503,0.028183838,241,8551,,,0.219,634,,0.159425532,0.278574468,,,,,,,,,,,,,0.178849722,0.113349409,0.244350035,3.504511447,109141,31143,3.056551319,3.952471575,0.172275908,517,3001,0.090499575,0.254052241,11.61372743,20,17221,,,153.7574476,136,88451,127.9156466,179.5992487,,,,,,,,,,,,,157.1035813,130.3023226,183.90484,,,,7.7,,,,,0,,,,,0.096192385,720,7485,0.066431542,0.125953227,0.070215327,0.043130838,0.097299816,0.018704075,0,0.038898386,0.012024048,0.001725042,0.022323055,0.79808315,6162,7721,0.745127263,0.851039037,,,,,,,,,,,,,0.78391214,0.734879517,0.832944764,0.564,,7721,0.478785601,0.6492144,73.81189624,,,72.2469605,75.37683198,,,,,,,,,,,,,73.84069228,72.29323301,75.38815156,,,,525.9610342,376,47939,465.6802837,586.2417847,,,,,,,,,,,,,527.7823007,466.1041712,589.4604302,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.132,,,0.112,0.154,0.195,,,0.168,0.223,0.108,,,0.092,0.126,92.2,14,15186,,,0.064,1100,,,,0.044650978,783.2228035,17541,,,67.9527351,36,52978,47.59326025,94.07522838,,,,,,,,,,,,,71.72886489,50.23801514,99.3029837,,,,0.38,,,0.361,0.398,0.09427042,951,10088,0.077589569,0.110951271,0.040725422,128,3143,0.026427549,0.055023294,0.000458979,8,17430,,,2178.75,0.825,131.175,159,,,,,,,,2.593409726,,,,,,,,,2.567156973,2.506416558,,,,,,,,,2.526763708,0.039228048,,,,,2527.557,,,,,0.759363204,38827,51131,0.646543371,0.872183038,56162,,,49797.06383,62526.93617,,,,,,,40625,26731.04255,54518.95745,,,,61568,54776.51064,68359.48936,,,,,,,,,,,,,,,,0.288593711,,56162,,,8.8365243,6,679,,,,,,,,,,,,,,,,,,,,,,,,,,27.68278703,24,88451,17.13608148,42.31608059,27.13366723,,,,,,,,,,,,,29.24816201,18.10507327,44.70892253,,,,21.48081989,19,88451,12.9328568,33.54496113,,,,,,,,,,,,,22.61339427,13.61474056,35.31361632,,,,25.88850146,32,123607,17.70771583,36.54683965,,,,,,,,,,,,,27.19955121,18.60447289,38.39765071,,,,,,1500,,,-888,6,0.597184066,8695,14560,,,0.542,,,,,16.64400509,,,,,0.843187296,5947,7053,0.807073263,0.879301329,0.073653137,499,6775,0.046720446,0.100585827,0.795264427,5609,7053,0.751817617,0.838711236,17430,,,,,0.168846816,2943,17430,,,0.250831899,4372,17430,,,0.011187608,195,17430,,,0.004360298,76,17430,,,0.006081469,106,17430,,,0.000286862,5,17430,,,0.022145726,386,17430,,,0.939185313,16370,17430,,,0.001629254,27,16572,0,0.007421374,0.489558233,8533,17430,,,1,17063,17063,, -54,067,54067,WV,Nicholas County,2024,1,13349.78648,585,66282,11522.15492,15177.41804,0,,,,2,,,,2,,,,2,,,,2,13736.8474,11834.25938,15639.43542,,,,,2,,0.212,,,0.18,0.247,4.553968507,,,3.648915656,5.611176779,6.198591396,,,5.10657407,7.404933745,0.110698825,179,1617,0.095405673,0.125991977,0,,,,,,,,,,,,,0.110115237,0.094591147,0.125639327,,,,,,,0.224,,,0.181,0.272,0.44,,,0.368,0.509,7.7,0.039739435,0.129,,,0.298,,,0.246,0.353,0.486912697,11980,24604,,,0.12119234,,,0.095754724,0.149655064,0.242424242,8,33,0.152046161,0.340132436,234.6,57,24300,,,28.34101383,123,4340,23.33238444,33.34964322,,,,,,,,,,,,,29.455081,24.18489832,34.72526369,,,,,,,0.07732684,1429,18480,0.064220457,0.090433223,0.000864198,21,24300,,,1157.142857,0.000575303,14,24335,,,1738.214286,0.001232792,30,24335,,,811.1666667,4237,,,,,,,,,4253,0.43,,,,,,,,,0.43,0.39,,,,,,,,,0.39,0.890701194,15891,17841,0.868339707,0.913062681,0.540510337,2902,5369,0.447603707,0.633416968,0.04635614,416,8974,,,0.255,1220,,0.156106383,0.353893617,,,,,,,,,,,,,0.207105538,0.14883551,0.265375566,4.654150482,97053,20853,3.697121997,5.611178967,0.249323017,1289,5170,0.156631208,0.342014827,10.69958848,26,24300,,,146.3164826,180,123021,124.9411406,167.6918245,,,,,,,,,,,,,149.5270577,127.5603051,171.4938102,,,,7,,,,,0,,,,,0.09192607,945,10280,0.06117726,0.12267488,0.083168317,0.053184842,0.113151792,0.009241245,0.00100487,0.01747762,0.003891051,0,0.009037426,0.850619195,7693,9044,0.811362546,0.889875844,,,,,,,,,,,,,0.85970948,0.804968421,0.914450539,0.333,,9044,0.271387211,0.394612789,72.68332324,,,71.42160081,73.94504567,,,,,,,,,,,,,72.32167773,71.02821708,73.61513839,,,,595.1501656,585,66282,541.7834685,648.5168628,,,,,,,,,,,,,607.7504215,552.8264298,662.6744132,,,,73.67500115,16,21717,42.11162893,119.6435861,,,,,,,,,,,,,72.72022107,40.7009557,119.9409457,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.143,,,0.122,0.166,0.21,,,0.181,0.24,0.12,,,0.102,0.14,47.8,10,20937,,,0.129,3200,,,,0.039739435,1042.484599,26233,,,35.55020783,26,73136,23.22257604,52.0892913,,,,,,,,,,,,,36.79175865,24.03359826,53.9084509,,,,0.402,,,0.382,0.42,0.093573679,1277,13647,0.076892828,0.11025453,0.032715806,166,5074,0.020800913,0.0446307,0.001150606,28,24335,,,869.1071429,0.94,242.52,258,,,,,,,,2.81565667,,,,,,,,,2.815220284,2.721816518,,,,,,,,,2.720288988,,,,,,2115.929,,,,,0.618838044,34309,55441,0.500187681,0.737488407,46757,,,40098.95745,53415.04255,,,,,,,,,,,,,49471,43232.3617,55709.6383,,,,,,,,,,,,,,,,0.291357444,,46757,,,3.375527426,4,1185,,,8.04940032,14,173926,4.400682058,13.50552598,,,,,,,,,,,,,8.30895052,4.542580568,13.94100712,,,,26.99007605,34,123021,18.07567752,38.76225137,27.63755782,,,,,,,,,,,,,26.85348499,17.84394576,38.81076253,,,,30.88903521,38,123021,21.85891973,42.39761416,,,,,,,,,,,,,31.08146705,21.88422117,42.84170809,,,,27.02298679,47,173926,19.85547426,35.93484375,,,,,,,,,,,,,27.30083742,19.98764424,36.41549127,,,,,,2400,,,6,,0.542762318,10630,19585,,,0.522,,,,,8.062755982,,,,,0.802260473,7737,9644,0.776314384,0.828206562,0.089498019,813,9084,0.05623568,0.122760357,0.832227292,8026,9644,0.797768741,0.866685842,24335,,,,,0.200739675,4885,24335,,,0.239120608,5819,24335,,,0.007191288,175,24335,,,0.003862749,94,24335,,,0.004438052,108,24335,,,0.000287652,7,24335,,,0.009245942,225,24335,,,0.964372303,23468,24335,,,0.000979307,23,23486,0,0.005740814,0.504047668,12266,24335,,,1,24604,24604,, -54,069,54069,WV,Ohio County,2024,1,11765.56913,917,112594,10530.64704,13000.49122,0,,,,2,,,,2,19006.55886,11911.30925,28776.15853,1,,,,2,11619.21502,10337.82307,12900.60697,,,,,2,,0.181,,,0.151,0.214,3.950881162,,,3.076552092,4.794295271,5.708244626,,,4.579131569,6.708262029,0.092538405,253,2734,0.081675851,0.103400959,0,,,,,,,0.178217822,0.103581658,0.252853986,,,,0.088163265,0.076935963,0.099390567,,,,0.111111111,0.051839508,0.170382715,0.194,,,0.151,0.239,0.393,,,0.32,0.458,8.1,0.065373367,0.098,,,0.254,,,0.207,0.305,0.897984679,38097,42425,,,0.136282166,,,0.107392075,0.165242168,0.368421053,7,19,0.246027076,0.486088994,318.4,133,41776,,,17.32425396,173,9986,14.74266223,19.90584569,,,,,,,26.20967742,13.95554938,44.81934661,,,,16.52045118,13.83143154,19.20947082,,,,29.41176471,15.660526,50.29501339,0.064779302,1993,30766,0.054055898,0.075502706,0.001316545,55,41776,,,759.5636364,0.001109851,46,41447,,,901.0217391,0.003763843,156,41447,,,265.6858974,3864,,,,,,,4042,,3833,0.47,,,,,,,0.29,,0.47,0.48,,,,,,0.58,0.34,,0.48,0.930149154,27751,29835,0.915544623,0.944753685,0.681733361,6576,9646,0.618973314,0.744493408,0.039810998,792,19894,,,0.194,1525,,0.123702128,0.264297872,,,,,,,0.347826087,0.179345958,0.516306216,0.059701493,0,0.418745969,0.128791209,0.087549774,0.170032643,5.804826152,120038,20679,5.221535886,6.388116419,0.252329573,2058,8156,0.201552003,0.303107143,20.34661049,85,41776,,,128.2673341,267,208159,112.8816607,143.6530075,,,,,,,190.1398886,103.9512465,319.0224246,,,,128.9083498,112.8319557,144.9847439,,,,8.1,,,,,1,,,,,0.106056216,1830,17255,0.084671051,0.12744138,0.096555785,0.074953264,0.118158305,0.005505651,0.001351546,0.009659755,0.009852217,0.004128321,0.015576113,0.811455717,14861,18314,0.782137858,0.840773576,,,,,,,0.737288136,0.540283205,0.934293066,,,,0.846734866,0.832793323,0.860676409,0.222,,18314,0.18945685,0.25454315,73.49559552,,,72.61354164,74.3776494,,,,,,,,,,,,,73.5232391,72.61279972,74.43367849,,,,569.0765333,917,112594,528.7498717,609.403195,,,,,,,884.0398845,622.4456628,1218.53253,,,,566.6055425,525.0037973,608.2072877,,,,42.71906872,16,37454,24.41763885,69.37309125,,,,,,,,,,,,,40.11479002,21.35943621,68.59751263,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.125,,,0.105,0.146,0.188,,,0.159,0.215,0.109,,,0.092,0.126,141.2,51,36109,,,0.098,4160,,,,0.065373367,2905.388563,44443,,,69.14906448,86,124369,55.31032592,85.3985321,,,,,,,,,,,,,63.87316365,50.06636415,80.31091372,,,,0.406,,,0.386,0.427,0.077468511,1759,22706,0.063170638,0.091766383,0.03037466,257,8461,0.019651256,0.041098065,0.003329553,138,41447,,,300.3405797,0.97,335.62,346,,,,,,,,3.148594101,,,,,,,2.79224437,,3.194557936,3.002198791,,,,,,,2.773997496,,3.026099652,0.05677666,,,,,4500.797,,,,,0.79665859,44060,55306,0.690763197,0.902553984,60241,,,54159.6383,66322.3617,,,,141458,37760.29787,245155.7021,30078,22854,37302,,,,56994,52786.85106,61201.14894,,,,,,,,,,,43.54034174,,,,,0.292093425,,60241,,,4.723665565,10,2117,,,,,,,,,,,,,,,,,,,,,,,,,,20.28801914,43,208159,14.28463777,27.96436193,20.65728602,,,,,,,,,,,,,21.77539159,15.33188523,30.01450892,,,,13.93165801,29,208159,9.330250019,20.00818482,,,,,,,,,,,,,15.13498844,10.13613929,21.73636804,,,,9.191770982,27,293741,6.057434996,13.37354419,,,,,,,,,,,,,9.242075844,5.980984188,13.64312711,,,,,,3700,,,10,-888,0.592819902,19898,33565,,,0.622,,,,,128.4754779,,,,,0.683707897,11956,17487,0.665234907,0.702180888,0.11655123,1952,16748,0.091901872,0.141200588,0.835191857,14605,17487,0.815480392,0.854903322,41447,,,,,0.194682365,8069,41447,,,0.229763312,9523,41447,,,0.036094289,1496,41447,,,0.002099066,87,41447,,,0.008709919,361,41447,,,0.000265399,11,41447,,,0.013897266,576,41447,,,0.914541463,37905,41447,,,0.004792332,192,40064,0.000340919,0.009243745,0.512847733,21256,41447,,,0.329758397,13990,42425,, -54,071,54071,WV,Pendleton County,2024,1,10232.03372,130,17410,7220.53328,13243.53417,0,,,,2,,,,2,,,,2,,,,2,10795.75011,7568.65713,14022.84308,,,,,2,,0.217,,,0.185,0.255,4.671758162,,,3.778778046,5.6692244,5.739909468,,,4.653421585,6.939530556,0.092105263,42,456,0.065563265,0.118647262,0,,,,,,,,,,,,,0.096997691,0.069121254,0.124874127,,,,,,,0.225,,,0.18,0.271,0.418,,,0.341,0.496,6.8,0.203632259,0.091,,,0.306,,,0.254,0.361,0.868305388,5334,6143,,,0.117749381,,,0.093560969,0.147100052,0.25,2,8,0.070127692,0.458326521,162.8,10,6142,,,35.65062389,40,1122,25.46932838,48.54603116,,,,,,,,,,,,,34.41494592,23.9712708,47.86285877,,,,,,,0.098754247,436,4415,0.082073396,0.115435098,0.000325627,2,6142,,,3071,0.001164532,7,6011,,,858.7142857,0.00099817,6,6011,,,1001.833333,4246,,,,,,,,,4242,0.43,,,,,,,,,0.43,0.29,,,,,,,0.33,,0.29,0.83129164,3868,4653,0.79573184,0.866851439,0.411101474,474,1153,0.2813455,0.540857449,0.025614219,98,3826,,,0.224,244,,0.142978723,0.305021277,,,,,,,,,,,,,0.186640472,0.103186652,0.270094291,3.625639579,89992,24821,2.771587289,4.47969187,0.247515809,274,1107,0.133019389,0.362012228,11.39693911,7,6142,,,176.2839347,60,34036,134.5232135,226.9123675,,,,,,,,,,,,,179.6054873,136.3819765,232.1817414,,,,6.1,,,,,0,,,,,0.084507042,270,3195,0.048892934,0.120121151,0.061587302,0.030083427,0.093091176,0.014084507,0,0.034859819,0.005946792,0,0.012370051,0.789473684,1920,2432,0.722453904,0.856493465,,,,,,,,,,,,,0.736196319,0.656877368,0.81551527,0.471,,2432,0.365946038,0.576053962,75.42393962,,,73.10448095,77.74339829,,,,,,,,,,,,,75.03596998,72.60112089,77.47081908,,,,467.7519221,130,17410,375.7932219,559.7106223,,,,,,,,,,,,,485.1733463,388.4553632,581.8913293,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.144,,,0.124,0.167,0.2,,,0.174,0.229,0.117,,,0.1,0.136,94,5,5320,,,0.091,570,,,,0.203632259,1566.950233,7695,,,,,,,,,,,,,,,,,,,,,,,,,,0.416,,,0.397,0.435,0.116590563,383,3285,0.095143755,0.138037372,0.050209205,60,1195,0.033528354,0.066890056,0.001330893,8,6011,,,751.375,0.975,74.1,76,,,,,,,,2.795040776,,,,,,,,,2.779530165,2.595127574,,,,,,,,,2.582463174,,,,,,3315.116,,,,,0.784042553,36850,47000,0.586626441,0.981458665,52553,,,45438.61702,59667.38298,,,,,,,,,,13942,13222.34043,14661.65957,53292,42805.70213,63778.29787,,,,,,,,,,,52.68077601,,,,,0.24344947,,52553,,,6.493506494,2,308,,,,,,,,,,,,,,,,,,,,,,,,,,41.30418026,14,34036,20.61889797,73.90458788,41.13291809,,,,,,,,,,,,,43.60466531,21.76729181,78.02079108,,,,47.00904924,16,34036,26.86973338,76.33975085,,,,,,,,,,,,,49.54634131,28.32001503,80.46015421,,,,28.9759086,14,48316,15.84139887,48.61665105,,,,,,,,,,,,,30.52037235,16.68577157,51.20799878,,,,8.333333333,,600,,,5,0,0.633044983,3659,5780,,,0.345,,,,,0.07594764,,,,,0.828038967,1955,2361,0.786163116,0.869914818,0.077464789,176,2272,0.031029463,0.123900115,0.714527743,1687,2361,0.651268707,0.777786778,6011,,,,,0.183330561,1102,6011,,,0.288304775,1733,6011,,,0.022292464,134,6011,,,0.003160872,19,6011,,,0.00299451,18,6011,,,0.000665447,4,6011,,,0.016137082,97,6011,,,0.939610714,5648,6011,,,0.003236246,19,5871,0,0.017508913,0.488936949,2939,6011,,,1,6143,6143,, -54,073,54073,WV,Pleasants County,2024,1,7024.679294,142,20697,5166.780366,8882.578223,0,,,,2,,,,2,,,,2,,,,2,7087.008476,5137.138602,9036.878351,,,,,2,,0.189,,,0.161,0.221,4.329008099,,,3.470246872,5.348696803,5.682751001,,,4.609543899,6.959025948,0.060165975,29,482,0.038936776,0.081395174,0,,,,,,,,,,,,,0.05982906,0.038341226,0.081316894,,,,,,,0.21,,,0.169,0.252,0.438,,,0.359,0.523,9.1,1.04989E-05,0.085,,,0.286,,,0.235,0.338,0.68247746,5223,7653,,,0.145079132,,,0.115318622,0.17884045,0.75,3,4,0.567659215,0.8560462,144.7,11,7601,,,29.47845805,39,1323,20.96206537,40.29802257,,,,,,,,,,,,,29.43516309,20.72507126,40.57249494,,,,,,,0.055375764,308,5562,0.04465236,0.066099168,0.000131562,1,7601,,,7601,0.000527287,4,7586,,,1896.5,0.000922752,7,7586,,,1083.714286,4066,,,,,,,,,4089,0.5,,,,,,,,,0.5,0.45,,,,,,,,,0.45,0.876611418,4760,5430,0.848160644,0.905062192,0.4210823,747,1774,0.314281474,0.527883126,0.053497942,143,2673,,,0.179,251,,0.107510638,0.250489362,,,,,,,,,,,,,0.051073279,0.009532925,0.092613633,4.527099574,123119,27196,3.626291534,5.427907613,0.347915243,509,1463,0.193174067,0.502656418,14.47178003,11,7601,,,87.95778027,33,37518,60.54608874,123.5254259,,,,,,,,,,,,,92.01684187,63.34015998,129.2258575,,,,8,,,,,0,,,,,0.076241135,215,2820,0.036119961,0.116362309,0.053290415,0.023132551,0.083448279,0.014184397,0,0.046652605,0.008510638,0,0.022498285,0.821344931,2455,2989,0.779265371,0.863424492,,,,,,,,,,,,,0.835414302,0.75711765,0.913710954,0.416,,2989,0.33279172,0.49920828,75.62487606,,,74.09099048,77.15876164,,,,,,,,,,,,,75.58887161,74.00804619,77.16969703,,,,445.3677145,142,20697,369.2648849,521.4705442,,,,,,,,,,,,,442.6566696,365.2278175,520.0855217,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.133,,,0.114,0.153,0.191,,,0.165,0.218,0.108,,,0.092,0.125,197.6,13,6580,,,0.085,640,,,,1.04989E-05,0.079843757,7605,,,,,,,,,,,,,,,,,,,,,,,,,,0.376,,,0.357,0.391,0.066504854,274,4120,0.053398471,0.079611237,0.024310118,37,1522,0.015969693,0.032650544,0.000395465,3,7586,,,2528.666667,0.975,70.2,72,,,,,,,,3.11330216,,,,,,,,,3.061205626,3.163858808,,,,,,,,,3.154395,,,,,,3474.888,,,,,0.695928059,34438,49485,0.383810121,1.008045997,56391,,,48391.34043,64390.65957,,,,,,,,,,,,,59346,51764.55319,66927.44681,,,,,,,,,,,,,,,,0.252274299,,56391,,,2.604166667,1,384,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,700,,,15,,0.583291562,3491,5985,,,0.623,,,,,43.66973074,,,,,0.854585312,2339,2737,0.8280788,0.881091825,0.0471445,123,2609,0.009353498,0.084935502,0.853123858,2335,2737,0.814578426,0.891669291,7586,,,,,0.188241498,1428,7586,,,0.191800686,1455,7586,,,0.016741366,127,7586,,,0.003427366,26,7586,,,0.003031901,23,7586,,,0,0,7586,,,0.013182178,100,7586,,,0.949644081,7204,7586,,,0,0,7258,0,0.01181968,0.449512259,3410,7586,,,1,7653,7653,, -54,075,54075,WV,Pocahontas County,2024,1,12604.98277,184,21563,9532.151093,15677.81444,0,,,,2,,,,2,,,,2,,,,2,13098.45524,9844.064103,16352.84637,,,,,2,,0.242,,,0.208,0.283,5.204579607,,,4.194952535,6.271903499,6.568525653,,,5.374282952,7.828808782,0.057943925,31,535,0.038145916,0.077741934,0,,,,,,,,,,,,,0.059171598,0.038633323,0.079709872,,,,,,,0.256,,,0.21,0.308,0.412,,,0.339,0.487,6,0.197178018,0.133,,,0.315,,,0.263,0.373,0.949294701,7470,7869,,,0.117187603,,,0.092672009,0.144804391,0.375,3,8,0.179126284,0.556186502,153,12,7841,,,33.11258278,40,1208,23.6561146,45.08993954,,,,,,,,,,,,,32.31292517,22.86654902,44.35201439,,,,,,,0.099008115,549,5545,0.082327264,0.115688967,0.000510139,4,7841,,,1960.25,0.000383681,3,7819,,,2606.333333,0.000639468,5,7819,,,1563.8,2964,,,,,,,,,2980,0.35,,,,,,,,,0.35,0.25,,,,,,,,,0.24,0.831831832,4986,5994,0.794321055,0.869342609,0.290130797,488,1682,0.204918529,0.375343064,0.039512923,159,4024,,,0.291,389,,0.19806383,0.38393617,,,,,,,,,,,,,0.248803828,0.163922946,0.33368471,4.118608799,83130,20184,3.330448719,4.906768879,0.106913756,150,1403,0.048522969,0.165304543,7.652085193,6,7841,,,121.5125887,50,41148,90.18898546,160.1991996,,,,,,,,,,,,,127.7791976,94.84018333,168.4609422,,,,6.1,,,,,1,,,,,0.103351955,370,3580,0.053116121,0.15358779,0.065918654,0.025809186,0.106028122,0.006703911,0,0.019020516,0.030726257,0.00090258,0.060549934,0.730893001,1817,2486,0.684323658,0.777462344,,,,,,,,,,,,,0.734710744,0.684889676,0.784531812,0.337,,2486,0.245177982,0.428822018,74.58466857,,,72.43776599,76.73157116,,,,,,,,,,,,,74.06432435,71.85114901,76.27749968,,,,556.4329331,184,21563,464.2567981,648.609068,,,,,,,,,,,,,574.9142254,478.602925,671.2255258,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.161,,,0.139,0.186,0.215,,,0.187,0.246,0.128,,,0.11,0.148,101.9,7,6869,,,0.133,1070,,,,0.197178018,1719.195141,8719,,,45.30850976,11,24278,22.61784483,81.06943947,,,,,,,,,,,,,47.80737972,23.86527171,85.54060808,,,,0.412,,,0.393,0.43,0.116456299,489,4199,0.095009491,0.137903108,0.046577276,66,1417,0.031087914,0.062066638,0.001662617,13,7819,,,601.4615385,0.925,67.525,73,,,,,,,,2.715673196,,,,,,,,,2.694400683,2.742680418,,,,,,,,,2.737973438,,,,,,2666.023,,,,,0.787653879,30776,39073,0.553655612,1.021652146,44553,,,38487.12766,50618.87234,,,,,,,,,,,,,42218,35420.55319,49015.44681,,,,,,,,,,,,,,,,0.325410186,,44553,,,5.263157895,2,380,,,,,,,,,,,,,,,,,,,,,,,,,,25.86582021,11,41148,11.82750007,49.10138381,26.73276952,,,,,,,,,,,,,27.22803833,12.45039294,51.68729813,,,,,,,,,,,,,,,,,,,,,,,,,,,24.03185938,14,58256,13.13844115,40.32137655,,,,,,,,,,,,,25.23249946,13.79484225,42.33584659,,,,,,600,,,-888,0,0.58044895,4008,6905,,,0.255,,,,,2.199989826,,,,,0.843781769,2490,2951,0.81591015,0.871653387,0.104776009,283,2701,0.052928464,0.156623553,0.719078279,2122,2951,0.66233694,0.775819618,7819,,,,,0.174830541,1367,7819,,,0.281621691,2202,7819,,,0.015986699,125,7819,,,0.002813659,22,7819,,,0.002429978,19,7819,,,0,0,7819,,,0.019056145,149,7819,,,0.943343139,7376,7819,,,0,0,7593,0,0.0112982,0.481263589,3763,7819,,,1,7869,7869,, -54,077,54077,WV,Preston County,2024,1,10762.38203,646,92787,9399.860847,12124.90322,0,,,,2,,,,2,,,,2,,,,2,10622.3089,9233.969816,12010.64798,,,,,2,,0.201,,,0.17,0.236,4.448625735,,,3.539399871,5.380829921,6.021864769,,,4.95780324,7.125336472,0.09692029,214,2208,0.084579955,0.109260624,0,,,,,,,,,,,,,0.096126925,0.083646734,0.108607116,,,,,,,0.222,,,0.176,0.268,0.434,,,0.366,0.502,7.8,0.101318195,0.096,,,0.28,,,0.233,0.329,0.453384382,15513,34216,,,0.125043693,,,0.098198661,0.154761194,0.47826087,11,23,0.376622098,0.570307191,142.6,49,34358,,,21.00105005,120,5714,17.24348543,24.75861468,,,,,,,,,,,,,21.60101652,17.71989912,25.48213392,,,,,,,0.083431813,2118,25386,0.07032543,0.096538196,0.000378369,13,34358,,,2642.923077,0.000263374,9,34172,,,3796.888889,0.00023411,8,34172,,,4271.5,3055,,,,,,,,,3070,0.42,,,,,,,,,0.42,0.42,,,,,,,,,0.42,0.867636705,22182,25566,0.852708187,0.882565223,0.471698113,4500,9540,0.420111566,0.523284661,0.040192308,627,15600,,,0.18,1079,,0.108510638,0.251489362,,,,,,,,,,,,,0.163059163,0.114957413,0.211160913,4.560081948,115744,25382,3.678597078,5.441566817,0.230942064,1439,6231,0.156587806,0.305296322,6.985272717,24,34358,,,102.5561984,173,168688,87.2736798,117.8387171,,,,,,,,,,,,,101.3083604,85.80308681,116.813634,,,,6.9,,,,,1,,,,,0.094127112,1170,12430,0.073073146,0.115181078,0.079902558,0.058954442,0.100850673,0.015687852,0.00804529,0.023330414,0.004424779,0.000248843,0.008600714,0.763863773,10138,13272,0.726161023,0.801566524,,,,,,,,,,,,,0.75913556,0.70759061,0.81068051,0.487,,13272,0.433928544,0.540071456,75.06210244,,,74.03133924,76.09286564,,,,,,,,,,,,,75.00862621,73.9667491,76.05050331,,,,485.8487664,646,92787,445.5875113,526.1100215,,,,,,,,,,,,,483.4489488,442.7012394,524.1966583,,,,71.73086579,20,27882,43.81507634,110.7825045,,,,,,,,,,,,,76.47306236,46.71173321,118.1064425,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.137,,,0.117,0.158,0.199,,,0.171,0.227,0.112,,,0.095,0.13,104.4,31,29685,,,0.096,3300,,,,0.101318195,3396.185904,33520,,,33.60680044,34,101170,23.27368626,46.96213511,,,,,,,,,,,,,32.97439332,22.55446062,46.55000472,,,,0.379,,,0.359,0.395,0.100317292,1897,18910,0.083636441,0.116998144,0.035155096,238,6770,0.023240202,0.04706999,0.000907176,31,34172,,,1102.322581,0.85,243.1,286,,,,,,,,2.703239315,,,,,,,,,2.709751847,2.774206875,,,,,,,,,2.789435239,0.059642695,,,,,829.8223,,,,,0.789670987,39602,50150,0.688512027,0.890829947,55965,,,51412.31915,60517.68085,,,,,,,,,,,,,60963,57638.74468,64287.25532,,,,,,,,,,,63.84203291,,,,,0.262950058,,55965,,,2.371072911,4,1687,,,6.345553459,15,236386,3.551558101,10.46602543,,,,,,,,,,,,,,,,,,,23.07020464,38,168688,16.06924282,32.08506993,22.52679503,,,,,,,,,,,,,21.40491004,14.54359788,30.38256121,,,,17.78431187,30,168688,11.99900053,25.38821101,,,,,,,,,,,,,18.53201715,12.50347415,26.4556068,,,,17.34451279,41,236386,12.44672183,23.52979008,,,,,,,,,,,,,18.04815777,12.95166962,24.48436394,,,,,,2900,,,6,-888,0.540504451,14572,26960,,,0.597,,,,,2.767573813,,,,,0.807256595,10190,12623,0.786041881,0.828471309,0.087983912,1050,11934,0.066228973,0.10973885,0.825160422,10416,12623,0.803759731,0.846561112,34172,,,,,0.180323072,6162,34172,,,0.207830973,7102,34172,,,0.016826642,575,34172,,,0.002662999,91,34172,,,0.003570174,122,34172,,,0.00046822,16,34172,,,0.015158609,518,34172,,,0.952270865,32541,34172,,,0.002298569,75,32629,0,0.006046248,0.469682781,16050,34172,,,1,34216,34216,, -54,079,54079,WV,Putnam County,2024,1,9051.092672,939,157108,8120.341329,9981.844016,0,,,,2,,,,2,,,,2,,,,2,9129.643924,8169.564805,10089.72304,,,,,2,,0.178,,,0.148,0.209,4.097242675,,,3.344502107,4.899657653,5.848136228,,,4.980080137,6.806214433,0.079421397,291,3664,0.070665966,0.088176829,0,,,,,,,,,,,,,0.079493088,0.07049512,0.088491055,,,,,,,0.188,,,0.149,0.229,0.441,,,0.386,0.499,9,0.040083706,0.068,,,0.266,,,0.22,0.314,0.670229805,38498,57440,,,0.13663606,,,0.111455423,0.165280702,0.268292683,11,41,0.186632551,0.353859022,200.8,115,57260,,,12.32922359,148,12004,10.34284996,14.31559723,,,,,,,,,,,,,12.12445395,10.08671379,14.16219412,,,,,,,0.060137531,2781,46244,0.050605617,0.069669446,0.001047852,60,57260,,,954.3333333,0.000420942,24,57015,,,2375.625,0.000999737,57,57015,,,1000.263158,3092,,,,,,,,,3089,0.43,,,,,,,,,0.43,0.48,,,,,,0.77,0.21,,0.48,0.936293484,37977,40561,0.922668253,0.949918715,0.692178974,9514,13745,0.628965935,0.755392014,0.033023583,892,27011,,,0.126,1504,,0.079531915,0.172468085,,,,,,,0.302083333,0,0.753961623,0.023809524,0,0.231388229,0.177386535,0.117568026,0.237205043,4.093937159,138764,33895,3.629652166,4.558222152,0.233872259,2922,12494,0.177191738,0.290552779,9.954593084,57,57260,,,119.8820924,340,283612,107.1391146,132.6250703,,,,,,,,,,,,,124.0593707,110.7743193,137.3444222,,,,8.5,,,,,0,,,,,0.090112929,1955,21695,0.070268133,0.109957726,0.074463119,0.056154519,0.092771719,0.010371053,0.003522914,0.017219193,0.012214796,0.002943811,0.021485781,0.829817759,21401,25790,0.808296366,0.851339152,,,,,,,,,,,,,0.817538359,0.792102444,0.842974275,0.43,,25790,0.38617327,0.47382673,75.57808193,,,74.84728195,76.30888191,,,,,,,,,,,,,75.41627984,74.67164228,76.1609174,,,,432.3621564,939,157108,403.2196362,461.5046765,,,,,,,,,,,,,437.9688809,408.0321676,467.9055942,,,,51.35164876,28,54526,34.12279767,74.21743011,,,,,,,,,,,,,51.45152673,33.60984548,75.38840774,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.125,,,0.108,0.145,0.189,,,0.164,0.215,0.107,,,0.092,0.124,67.7,33,48730,,,0.068,3890,,,,0.040083706,2224.084528,55486,,,41.73083027,71,170138,32.59212466,52.63776411,,,,,,,,,,,,,42.66580923,33.19654627,53.99631225,,,,0.391,,,0.37,0.41,0.071954405,2424,33688,0.060039512,0.083869299,0.029652042,392,13220,0.020120128,0.039183957,0.001017276,58,57015,,,983.0172414,0.97,675.12,696,,,,,,,,3.324777092,,,,,,,,,3.329505338,3.202265247,,,,,,,,,3.211273846,0.054657364,,,,,3176.709,,,,,0.750885235,51106,68061,0.679980071,0.8217904,80034,,,73232.97872,86835.02128,,,,,,,,,,,,,74544,67619.06383,81468.93617,,,,,,,,,,,51.44877871,,,,,0.239935527,,80034,,,5.612065942,16,2851,,,,,,,,,,,,,,,,,,,,,,,,,,19.06241876,57,283612,14.27905974,24.93411307,20.0978802,,,,,,,,,,,,,19.93927859,14.93588792,26.08106733,,,,14.10377558,40,283612,10.07594405,19.20533932,,,,,,,,,,,,,14.44273271,10.27019483,19.74369107,,,,13.83992491,55,397401,10.42612549,18.01456463,,,,,,,,,,,,,14.25708696,10.71036252,18.60240586,,,,,,6000,,,11,,0.650782053,28501,43795,,,0.614,,,,,51.12297973,,,,,0.821265958,18398,22402,0.796826078,0.845705839,0.079891579,1739,21767,0.061659443,0.098123716,0.843183644,18889,22402,0.821142273,0.865225016,57015,,,,,0.212926423,12140,57015,,,0.199754451,11389,57015,,,0.012698413,724,57015,,,0.002385337,136,57015,,,0.009383496,535,57015,,,0.000350785,20,57015,,,0.013838464,789,57015,,,0.947768131,54037,57015,,,0.002287743,125,54639,0,0.005045818,0.50277997,28666,57015,,,0.339397632,19495,57440,, -54,081,54081,WV,Raleigh County,2024,1,16488.17987,2010,201614,15379.68574,17596.674,0,,,,2,,,,2,19792.91989,14878.64995,24707.18983,,,,,2,16655.30277,15473.6861,17836.91944,,,,,2,,0.23,,,0.196,0.264,5.090716958,,,4.25259655,6.04075692,6.268226521,,,5.367577391,7.222226367,0.106345818,548,5153,0.097928554,0.114763082,0,,,,,,,0.152777778,0.115612825,0.189942731,,,,0.102408283,0.09349321,0.111323355,,,,0.123076923,0.066602285,0.179551562,0.241,,,0.196,0.285,0.399,,,0.348,0.452,6.1,0.16998731,0.141,,,0.314,,,0.267,0.364,0.572884128,42732,74591,,,0.118810464,,,0.096464287,0.144398584,0.180327869,11,61,0.117684114,0.25118401,387.7,286,73771,,,31.71247357,435,13717,28.73229999,34.69264716,,,,,,,37.69633508,26.40204965,52.18761727,,,,30.36197564,27.22118582,33.50276546,,,,40.44117647,25.34426999,61.22842718,0.072118891,3955,54840,0.060203998,0.084033785,0.000772661,57,73771,,,1294.22807,0.000782086,57,72882,,,1278.631579,0.002510908,183,72882,,,398.2622951,4747,,,,,,,6096,,4726,0.4,,,,,,0.41,0.43,,0.39,0.41,,,,,,0.44,0.31,,0.41,0.852751208,45021,52795,0.831289893,0.874212523,0.555475941,10078,18143,0.497252563,0.613699319,0.036885661,1092,29605,,,0.27,4033,,0.193744681,0.346255319,,,,,,,0.356294537,0.179731109,0.532857965,,,,0.255205096,0.201369896,0.309040297,5.948062325,104216,17521,5.125821931,6.77030272,0.281825203,4379,15538,0.220704431,0.342945975,10.30215125,76,73771,,,193.5948534,715,369328,179.4043808,207.7853259,,,,,,,154.5701233,112.7445086,206.8269862,,,,201.7922625,186.2908923,217.2936326,,,,7.3,,,,,1,,,,,0.141571589,4405,31115,0.120795079,0.1623481,0.127133799,0.107032139,0.14723546,0.00996304,0.004598579,0.015327502,0.008677487,0.002961016,0.014393958,0.835484851,22005,26338,0.798399895,0.872569806,,,,,,,0.838302752,0.772014041,0.904591464,,,,0.849109619,0.823748101,0.874471138,0.23,,26338,0.197152905,0.262847095,69.9609187,,,69.25733011,70.66450728,,,,,,,68.25085341,65.1718813,71.32982551,,,,69.72566926,68.98749053,70.46384798,,,,733.5158226,2010,201614,699.0446709,767.9869743,,,,,,,745.4936765,616.7559786,874.2313745,,,,751.7578503,714.578726,788.9369746,,,,70.02905461,47,67115,51.45471529,93.12379698,,,,,,,218.2929491,104.6799541,401.4485056,,,,59.12734988,40.94740863,82.62454497,,,,9.597290177,51,5314,7.145812917,12.61866417,,,,,,,,,,,,,8.474576271,6.026252171,11.58502474,,,,,,,0.158,,,0.135,0.18,0.212,,,0.184,0.24,0.129,,,0.112,0.148,189.3,119,62861,,,0.141,10550,,,,0.16998731,13405.02926,78859,,,125.8793376,277,220052,111.0551591,140.7035161,,,,,,,92.44280102,52.83904815,150.1213173,,,,133.715576,117.3673171,150.063835,,,,0.431,,,0.413,0.448,0.088995288,3513,39474,0.073505926,0.10448465,0.029886914,481,16094,0.020355,0.039418829,0.002936253,214,72882,,,340.5700935,0.86,589.1,685,,,0.159695818,546,3419,0.088584461,0.230807174,2.925233774,,,,,,,2.520251975,,2.988760306,2.790930349,,,,,,,2.307494437,,2.862112709,0.150524272,,,,,226.2285,,,,,0.792596956,41712,52627,0.667355771,0.917838141,51317,,,48146.44681,54487.55319,,,,,,,33625,12854.95745,54395.04255,,,,50171,44139.68085,56202.31915,,,,,,,,,,,60.86180143,,,,,0.307675819,,51317,,,4.070211142,16,3931,,,6.877592231,36,523439,4.816981046,9.521486647,,,,,,,28.84823425,14.9063036,50.39205964,,,,5.24899941,3.363132965,7.810095049,,,,20.496712,77,369328,15.97819255,25.89636254,20.84867652,,,,,,,,,,,,,21.99234789,17.00888026,27.97965879,,,,21.93172465,81,369328,17.41695512,27.25913123,,,,,,,34.34891629,16.47164049,63.16888003,,,,21.69809274,16.91472777,27.41423483,,,,17.00293635,89,523439,13.65475407,20.92357627,,,,,,,,,,,,,17.4966647,13.87376694,21.77611377,,,,,,7000,,,52,,0.566108071,33106,58480,,,0.562,,,,,46.61435568,,,,,0.750637864,22065,29395,0.722663443,0.778612284,0.151244648,4168,27558,0.12474556,0.177743735,0.733594149,21564,29395,0.707922115,0.759266183,72882,,,,,0.209283499,15253,72882,,,0.221097116,16114,72882,,,0.076809089,5598,72882,,,0.002799045,204,72882,,,0.007546445,550,72882,,,0.000370462,27,72882,,,0.017096128,1246,72882,,,0.874756456,63754,72882,,,0.000779722,55,70538,0,0.002584025,0.496816772,36209,72882,,,0.430655173,32123,74591,, -54,083,54083,WV,Randolph County,2024,1,9990.347793,568,76673,8569.714057,11410.98153,0,,,,2,,,,2,,,,2,,,,2,10228.05318,8753.521138,11702.58523,,,,,2,,0.204,,,0.174,0.24,4.423989218,,,3.561692085,5.365128627,5.964945161,,,4.929672159,7.049391535,0.087512794,171,1954,0.074983028,0.10004256,0,,,,,,,,,,,,,0.088091354,0.075137246,0.101045462,,,,,,,0.222,,,0.181,0.269,0.397,,,0.334,0.466,8.3,0.033835799,0.106,,,0.294,,,0.245,0.344,0.654589718,18284,27932,,,0.129897377,,,0.103807487,0.159947578,0.206896552,6,29,0.113372568,0.31356155,381.2,106,27806,,,31.46584804,164,5212,26.64999098,36.28170511,,,,,,,,,,,,,31.62375836,26.6611814,36.58633532,,,,,,,0.083129833,1634,19656,0.07002345,0.096236216,0.000755233,21,27806,,,1324.095238,0.000434783,12,27600,,,2300,0.001195652,33,27600,,,836.3636364,2563,,,,,,,,,2542,0.4,,,,,,,,,0.4,0.33,,,,,,,,,0.33,0.876832416,18004,20533,0.858537714,0.895127119,0.406975004,2719,6681,0.334148551,0.479801457,0.046705163,550,11776,,,0.225,1091,,0.138021277,0.311978723,,,,,,,,,,,,,0.209486166,0.153425962,0.26554637,5.843394927,101827,17426,5.003070232,6.683719623,0.224946068,1147,5099,0.150993329,0.298898806,11.86794217,33,27806,,,106.6696609,152,142496,89.711639,123.6276828,,,,,,,,,,,,,110.9665851,93.26713315,128.666037,,,,6.3,,,,,1,,,,,0.104328018,1145,10975,0.080853765,0.127802271,0.098603352,0.074000881,0.123205823,0.006287016,0.000475759,0.012098273,0.001822324,0,0.005925582,0.812859333,8483,10436,0.775059155,0.850659511,,,,,,,,,,,,,0.820337732,0.780464776,0.860210687,0.223,,10436,0.172674558,0.273325442,74.85366476,,,73.7672225,75.94010702,,,,,,,,,,,,,74.57082977,73.4577181,75.68394144,,,,490.1909499,568,76673,446.6571118,533.724788,,,,,,,,,,,,,501.2748747,456.3165484,546.2332009,,,,66.94000502,16,23902,38.26199671,108.7063744,,,,,,,,,,,,,67.34611413,37.69310884,111.0771736,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.141,,,0.121,0.164,0.197,,,0.171,0.225,0.113,,,0.097,0.131,103.5,25,24147,,,0.106,2970,,,,0.033835799,994.9416586,29405,,,25.91650174,22,84888,16.24173366,39.23789509,,,,,,,,,,,,,27.16720178,17.02554072,41.13146998,,,,0.396,,,0.378,0.413,0.100849548,1472,14596,0.082977207,0.118721888,0.03313253,176,5312,0.022409126,0.043855934,0.002355073,65,27600,,,424.6153846,0.95,249.85,263,,,,,,,,2.798708674,,,,,,,,,2.798572571,2.688255814,,,,,,,,,2.689146812,0.079705593,,,,,966.126,,,,,0.742298004,34479,46449,0.629798762,0.854797246,49362,,,46271.2766,52452.7234,,,,,,,22687,827.9361702,44546.06383,57292,29129.95745,85454.04255,51341,46259.29787,56422.70213,,,,,,,,,,,54.34301441,,,,,0.29938009,,49362,,,2.175489485,3,1379,,,,,,,,,,,,,,,,,,,,,,,,,,31.74059522,44,142496,22.67594658,43.22168189,30.87805974,,,,,,,,,,,,,33.40823155,23.86733042,45.49252925,,,,20.35144846,29,142496,13.62968444,29.22807478,,,,,,,,,,,,,21.31146336,14.27262149,30.60681632,,,,17.94365692,36,200628,12.56751671,24.84158467,,,,,,,,,,,,,18.76192164,13.14061926,25.97440795,,,,,,2400,,,7,-888,0.528024237,12200,23105,,,0.485,,,,,29.41733697,,,,,0.744161359,7711,10362,0.717067881,0.771254837,0.098029205,960,9793,0.072262208,0.123796201,0.758347809,7858,10362,0.722656304,0.794039315,27600,,,,,0.181014493,4996,27600,,,0.226847826,6261,27600,,,0.019855073,548,27600,,,0.00326087,90,27600,,,0.005181159,143,27600,,,7.24638E-05,2,27600,,,0.01057971,292,27600,,,0.94865942,26183,27600,,,0.002330477,62,26604,0,0.007036419,0.468623188,12934,27600,,,0.602284119,16823,27932,, -54,085,54085,WV,Ritchie County,2024,1,10884.25435,181,24812,8225.88478,13542.62392,0,,,,2,,,,2,,,,2,,,,2,10966.50527,8245.97153,13687.03902,,,,,2,,0.228,,,0.193,0.266,4.909531773,,,3.952720828,5.956399297,5.988402126,,,4.846120315,7.241368625,0.072,45,625,0.051734548,0.092265452,0,,,,,,,,,,,,,0.071661238,0.051259494,0.092062981,,,,,,,0.251,,,0.203,0.298,0.43,,,0.351,0.508,7.4,0.047475582,0.138,,,0.32,,,0.264,0.376,0.292870677,2473,8444,,,0.120901848,,,0.094466221,0.150313542,0.333333333,2,6,0.110000414,0.553214291,262.4,22,8383,,,35.79952267,60,1676,27.31880725,46.08108199,,,,,,,,,,,,,36.50990099,27.79302824,47.09511223,,,,,,,0.099504797,643,6462,0.084015436,0.114994159,0.000119289,1,8383,,,8383,0.000121847,1,8207,,,8207,0.000487389,4,8207,,,2051.75,3853,,,,,,,,,3866,0.41,,,,,,,,,0.41,0.35,,,,,,,,,0.35,0.835418672,5208,6234,0.797150497,0.873686846,0.398989899,711,1782,0.29973477,0.498245028,0.041627247,176,4228,,,0.283,446,,0.18887234,0.37712766,,,,,,,,,,,,,0.302702703,0.20835404,0.397051365,4.490853062,91811,20444,3.410793142,5.570912982,0.181923523,314,1726,0.111002964,0.252844081,11.92890373,10,8383,,,106.5393876,50,46931,79.07558701,140.4589007,,,,,,,,,,,,,109.6202754,81.36228128,144.5206671,,,,7.7,,,,,0,,,,,0.079326923,330,4160,0.048271652,0.110382194,0.05595092,0.025486933,0.086414908,0.004807692,0,0.015077389,0.019230769,0.003063264,0.035398275,0.808324589,2311,2859,0.731764393,0.884884785,,,,,,,,,,,,,0.835770529,0.789692865,0.881848192,0.433,,2859,0.332278618,0.533721382,74.84684743,,,72.88332456,76.81037029,,,,,,,,,,,,,74.667747,72.67897773,76.65651627,,,,484.9044366,181,24812,406.3102101,563.4986631,,,,,,,,,,,,,489.0165625,409.1767625,568.8563624,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.155,,,0.132,0.178,0.212,,,0.185,0.242,0.119,,,0.101,0.137,110.8,8,7222,,,0.138,1200,,,,0.047475582,496.0723579,10449,,,,,,,,,,,,,,,,,,,,,,,,,,0.408,,,0.389,0.425,0.116375727,560,4812,0.096120408,0.136631047,0.051428571,90,1750,0.03474772,0.068109423,0.001462166,12,8207,,,683.9166667,0.925,107.3,116,,,,,,,,2.906904431,,,,,,,,,2.919719536,2.98046852,,,,,,,,,3.006361656,,,,,,-312.3008,,,,,0.6829909,36400,53295,0.423234485,0.942747315,51965,,,44127.38298,59802.61702,,,,,,,,,,,,,49629,44437.68085,54820.31915,,,,,,,,,,,,,,,,0.25397864,,51965,,,2.375296912,1,421,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,21.30787752,10,46931,10.2179555,39.18594541,,,,,,,,,,,,,21.92405507,10.51343659,40.31911787,,,,25.45367431,17,66788,14.82770328,40.75379831,,,,,,,,,,,,,26.14861643,15.23253268,41.86646796,,,,11.11111111,,900,,,10,0,0.554792746,4283,7720,,,0.424,,,,,4.531609148,,,,,0.839115751,2733,3257,0.81143117,0.866800331,0.072954321,222,3043,0.034528117,0.111380525,0.773718146,2520,3257,0.74216384,0.805272451,8207,,,,,0.196661387,1614,8207,,,0.232118923,1905,8207,,,0.005117583,42,8207,,,0.002802486,23,8207,,,0.002924333,24,8207,,,0,0,8207,,,0.011941026,98,8207,,,0.965273547,7922,8207,,,0.003330455,27,8107,0,0.013447955,0.492750091,4044,8207,,,1,8444,8444,, -54,087,54087,WV,Roane County,2024,1,12181.23591,312,37336,9855.668996,14506.80283,0,,,,2,,,,2,,,,2,,,,2,12508.12362,10085.3418,14930.90544,,,,,2,,0.25,,,0.211,0.295,5.131918947,,,4.193360698,6.22015769,6.136094632,,,5.087996734,7.409279558,0.103218646,93,901,0.083352389,0.123084903,0,,,,,,,,,,,,,0.099067599,0.079077067,0.119058131,,,,,,,0.264,,,0.215,0.322,0.434,,,0.37,0.515,6,0.12647427,0.164,,,0.326,,,0.272,0.39,0.434416881,6094,14028,,,0.118983957,,,0.096550523,0.151363355,0.15,3,20,0.050642257,0.283837277,151.1,21,13898,,,31.18355776,88,2822,25.01012519,38.41901532,,,,,,,,,,,,,32.0059546,25.6006324,39.52709356,,,,,,,0.09288243,997,10734,0.077393068,0.108371791,0.000575622,8,13898,,,1737.25,0.000289143,4,13834,,,3458.5,0.000722857,10,13834,,,1383.4,2468,,,,,,,,,2494,0.36,,,,,,,,,0.36,0.24,,,,,,,,,0.24,0.806330366,8152,10110,0.767145628,0.845515104,0.418612521,1237,2955,0.326602921,0.510622121,0.063393037,315,4969,,,0.28,761,,0.170382979,0.389617021,,,,,,,,,,,,,0.348882036,0.25505522,0.442708851,4.660367643,90509,19421,3.505410098,5.815325189,0.255975061,739,2887,0.150064844,0.361885278,6.475751907,9,13898,,,149.1823936,103,69043,120.3716127,177.9931745,,,,,,,,,,,,,152.854788,123.1904246,182.5191513,,,,7.7,,,,,0,,,,,0.089285714,500,5600,0.062894372,0.115677056,0.077687444,0.051102369,0.104272519,0.00875,0,0.019604759,0.008928571,0,0.018735669,0.78230303,3227,4125,0.722713789,0.841892272,,,,,,,,,,,,,0.719050481,0.664052463,0.774048499,0.465,,4125,0.377809352,0.552190648,73.39961202,,,71.72365501,75.07556902,,,,,,,,,,,,,73.06082322,71.33788647,74.78375997,,,,553.0784008,312,37336,485.4457952,620.7110064,,,,,,,,,,,,,562.3860548,492.9569235,631.8151861,,,,89.25673483,11,12324,44.55664044,159.7049539,,,,,,,,,,,,,94.75407012,47.30089041,169.5412052,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.166,,,0.143,0.195,0.22,,,0.192,0.255,0.134,,,0.116,0.157,41.7,5,11991,,,0.164,2320,,,,0.12647427,1887.754948,14926,,,,,,,,,,,,,,,,,,,,,,,,,,0.407,,,0.387,0.426,0.112998616,898,7947,0.092743297,0.133253935,0.036320435,107,2946,0.023214052,0.049426818,0.001011999,14,13834,,,988.1428571,0.975,143.325,147,,,,,,,,2.694889467,,,,,,,,,2.672340562,2.583801165,,,,,,,,,2.551203538,0.035600424,,,,,656.1729,,,,,0.905046921,42339,46781,0.756035831,1.05405801,42697,,,37904.82979,47489.17021,,,,,,,,,,,,,42086,38337.57447,45834.42553,,,,,,,,,,,,,,,,0.286390145,,42697,,,4.47761194,3,670,,,,,,,,,,,,,,,,,,,,,,,,,,24.04147558,18,69043,13.74178056,39.04185013,26.07070956,,,,,,,,,,,,,24.81432287,13.88838814,40.92745194,,,,34.76094608,24,69043,22.27199405,51.72153237,,,,,,,,,,,,,35.96583246,23.04398749,53.5143078,,,,20.47376287,20,97686,12.50590626,31.62006624,,,,,,,,,,,,,20.1053946,12.10476092,31.39706416,,,,,,1400,,,11,,0.531887402,5763,10835,,,0.565,,,,,1.038917168,,,,,0.73960813,4039,5461,0.699243458,0.779972803,0.098039216,505,5151,0.06512124,0.130957192,0.728804248,3980,5461,0.678642076,0.778966421,13834,,,,,0.200014457,2767,13834,,,0.235795865,3262,13834,,,0.003758855,52,13834,,,0.003903426,54,13834,,,0.003686569,51,13834,,,0.000361428,5,13834,,,0.012216279,169,13834,,,0.963784878,13333,13834,,,0.000224517,3,13362,0,0.007188916,0.500361428,6922,13834,,,1,14028,14028,, -54,089,54089,WV,Summers County,2024,1,16059.63406,362,32953,13168.98145,18950.28667,0,,,,2,,,,2,,,,2,,,,2,16869.1728,13742.90006,19995.44555,,,,,2,,0.232,,,0.198,0.274,5.028323728,,,4.069552835,6.154858008,6.538818379,,,5.349393415,7.802976848,0.098290598,69,702,0.076267582,0.120313615,0,,,,,,,,,,,,,0.101949026,0.078985679,0.124912373,,,,,,,0.241,,,0.196,0.291,0.419,,,0.345,0.502,6.7,0.082378606,0.153,,,0.311,,,0.258,0.368,0.619115311,7404,11959,,,0.113347194,,,0.088265517,0.143412289,0.111111111,1,9,0.006152008,0.326116915,209.9,25,11908,,,24.85314053,55,2213,18.7227867,32.34977857,,,,,,,,,,,,,26.59307577,19.9200386,34.78439786,,,,,,,0.080948795,645,7968,0.066650923,0.095246668,0.000251932,3,11908,,,3969.333333,0.000170039,2,11762,,,5881,0.001615372,19,11762,,,619.0526316,3612,,,,,,,,,3680,0.35,,,,,,,,,0.34,0.28,,,,,,,0.25,,0.28,0.82799236,7803,9424,0.794532006,0.861452714,0.425665681,1151,2704,0.331840608,0.519490753,0.036917098,171,4632,,,0.346,619,,0.219702128,0.472297872,,,,,,,0.676470588,0.283127136,1,,,,0.332945962,0.230588385,0.435303539,4.219109674,88711,21026,3.565703981,4.872515367,0.208421053,396,1900,0.106120967,0.310721138,10.07725899,12,11908,,,164.3319825,103,62678,132.5954442,196.0685208,,,,,,,,,,,,,170.3962582,138.335919,207.6584603,,,,7,,,,,0,,,,,0.122885129,690,5615,0.084038782,0.161731476,0.061041293,0.032785503,0.089297083,0.041852182,0.012378989,0.071325375,0.032947462,0.009504651,0.056390273,0.799165673,2682,3356,0.732342827,0.865988519,,,,,,,,,,,,,0.79325449,0.681778227,0.904730752,0.537,,3356,0.412382516,0.661617484,71.31917409,,,69.41252936,73.22581882,,,,,,,,,,,,,70.67543244,68.67675603,72.67410884,,,,698.7883648,362,32953,617.3120722,780.2646574,,,,,,,,,,,,,727.3806026,639.7030563,815.058149,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.158,,,0.136,0.185,0.217,,,0.189,0.248,0.125,,,0.106,0.145,141,15,10638,,,0.153,1860,,,,0.082378606,1147.286848,13927,,,97.49492214,36,36925,68.28424487,134.9740677,,,,,,,,,,,,,100.3186593,69.47358782,140.1852711,,,,0.393,,,0.374,0.409,0.095823096,585,6105,0.077950755,0.113695436,0.033045247,65,1967,0.021130353,0.04496014,0.001020235,12,11762,,,980.1666667,0.825,82.5,100,,,,,,,,2.686202481,,,,,,,,,2.654377928,2.419180687,,,,,,,,,2.431550974,0.027922296,,,,,-2753.011,,,,,0.817190547,38971,47689,0.621288071,1.013093024,40569,,,34828.40426,46309.59575,,,,,,,60536,1115.234043,119956.766,,,,42605,35254.70213,49955.29787,,,,,,,,,,,31.25707719,,,,,0.363602751,,40569,,,2.164502165,1,462,,,,,,,,,,,,,,,,,,,,,,,,,,19.92979942,14,62678,10.29801818,34.81334879,22.33638597,,,,,,,,,,,,,22.07798928,11.40801923,38.56580416,,,,20.74092983,13,62678,11.04367161,35.46762168,,,,,,,,,,,,,20.86484795,10.7811714,36.4466904,,,,21.39904718,19,88789,12.88362428,33.41726292,,,,,,,,,,,,,22.1141088,13.1062224,34.94982587,,,,,,1000,,,7,,0.527135441,5585,10595,,,0.356,,,,,1.037223939,,,,,0.788957055,3858,4890,0.729961718,0.847952392,0.06852295,315,4597,0.033942754,0.103103146,0.692433538,3386,4890,0.629653617,0.755213459,11762,,,,,0.154990648,1823,11762,,,0.2786941,3278,11762,,,0.044380207,522,11762,,,0.004506036,53,11762,,,0.003570821,42,11762,,,0.000595137,7,11762,,,0.021169869,249,11762,,,0.909369155,10696,11762,,,0.002255574,26,11527,0,0.010507314,0.544125149,6400,11762,,,1,11959,11959,, -54,091,54091,WV,Taylor County,2024,1,10432.61472,341,45576,8653.393126,12211.8363,0,,,,2,,,,2,,,,2,,,,2,10850.06773,8990.108485,12710.02697,,,,,2,,0.203,,,0.168,0.239,4.507268612,,,3.603523166,5.479386969,5.794111139,,,4.705852843,6.884352837,0.112077295,116,1035,0.092858228,0.131296362,0,,,,,,,,,,,,,0.11332008,0.093731906,0.132908254,,,,,,,0.218,,,0.171,0.265,0.408,,,0.331,0.482,,,0.106,,,0.301,,,0.247,0.357,0.504938641,8435,16705,,,0.128669917,,,0.100876153,0.160772058,0.8,4,5,0.671311679,0.877725163,218.3,36,16492,,,26.98028364,78,2891,21.32679461,33.67261503,,,,,,,,,,,,,27.53303965,21.65648227,34.51290362,,,,,,,0.072564691,917,12637,0.060649797,0.084479585,0.000242542,4,16492,,,4123,0.000244768,4,16342,,,4085.5,0.000734304,12,16342,,,1361.833333,1898,,,,,,,,,1906,0.41,,,,,,,,,0.41,0.39,,,,,,,,,0.39,0.869943382,10602,12187,0.830846457,0.909040308,0.476190476,1940,4074,0.372553809,0.579827143,0.038233439,303,7925,,,0.2,629,,0.123744681,0.276255319,,,,,,,,,,,,,0.237041928,0.158972426,0.31511143,5.511734522,131047,23776,4.552424545,6.4710445,0.198927933,668,3358,0.117314646,0.28054122,12.12709192,20,16492,,,97.99469395,82,83678,77.93808823,121.6372537,,,,,,,,,,,,,99.62888241,78.99950757,123.9967683,,,,7.3,,,,,0,,,,,0.066165414,440,6650,0.04023528,0.092095547,0.057359636,0.033825107,0.080894165,0.001203008,0,0.006742701,0.008270677,0,0.021090578,0.811802974,5241,6456,0.770623723,0.852982225,,,,,,,,,,,,,0.737992376,0.676324871,0.799659882,0.427,,6456,0.344416807,0.509583193,74.56333064,,,73.21423531,75.91242597,,,,,,,,,,,,,74.14112724,72.75866845,75.52358602,,,,510.6873504,341,45576,452.9031529,568.4715479,,,,,,,,,,,,,527.9256788,468.0160737,587.8352838,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.141,,,0.119,0.162,0.2,,,0.173,0.23,0.117,,,0.1,0.136,56,8,14294,,,0.106,1770,,,,,,16895,,,44.10054925,22,49886,27.63757943,66.76876155,,,,,,,,,,,,,45.97220771,28.81053782,69.60247495,,,,0.41,,,0.39,0.43,0.085750448,813,9481,0.070261087,0.10123981,0.033684211,112,3325,0.020577828,0.046790594,0.00091788,15,16342,,,1089.466667,0.875,137.375,157,,,,,,,,2.948133659,,,,,,,,,2.932811496,2.886699678,,,,,,,,,2.896989761,,,,,,1764.803,,,,,0.600286038,38195,63628,0.468544481,0.732027594,53972,,,46024.76596,61919.23404,,,,,,,,,,,,,53292,45344.76596,61239.23404,,,,,,,,,,,71.97480596,,,,,0.27412362,,53972,,,4.784688995,4,836,,,,,,,,,,,,,,,,,,,,,,,,,,23.78061065,20,83678,14.09389701,37.58361727,23.90114487,,,,,,,,,,,,,24.7688644,14.67959881,39.14548426,,,,22.70608762,19,83678,13.67054801,35.45836847,,,,,,,,,,,,,23.66185957,14.24598516,36.95092477,,,,11.06863405,13,117449,5.893581462,18.92770132,,,,,,,,,,,,,10.63876945,5.497207419,18.58378922,,,,,,1600,,,-888,0,0.551587598,7383,13385,,,0.607,,,,,23.21586989,,,,,0.802745449,5380,6702,0.761043266,0.844447632,0.074744661,483,6462,0.045686374,0.103802948,0.824380782,5525,6702,0.787752107,0.861009457,16342,,,,,0.194896586,3185,16342,,,0.21380492,3494,16342,,,0.012299596,201,16342,,,0.003181985,52,16342,,,0.005017746,82,16342,,,0.000061192,1,16342,,,0.009851915,161,16342,,,0.957349162,15645,16342,,,0.000822889,13,15798,0,0.006895976,0.490760005,8020,16342,,,0.685124214,11445,16705,, -54,093,54093,WV,Tucker County,2024,1,10033.61502,138,17941,6829.363123,13237.86691,0,,,,2,,,,2,,,,2,,,,2,9677.595595,6607.080743,12748.11045,,,,,2,,0.191,,,0.158,0.23,4.386748893,,,3.461310988,5.443686258,6.062474691,,,4.854889608,7.37967355,0.09375,39,416,0.065739617,0.121760383,0,,,,,,,,,,,,,0.094763092,0.066095935,0.123430249,,,,,,,0.206,,,0.163,0.257,0.364,,,0.286,0.449,8.5,0.009170977,0.106,,,0.271,,,0.218,0.329,0.987429755,6677,6762,,,0.124844463,,,0.097313882,0.155790876,0,0,7,0,0.25576943,164.9,11,6672,,,28.35332606,26,917,18.52133393,41.54419202,,,,,,,,,,,,,28.16901409,18.04841884,41.91326009,,,,,,,0.102239121,484,4734,0.084366781,0.120111462,0.00059952,4,6672,,,1668,0.000609013,4,6568,,,1642,0.001218027,8,6568,,,821,2160,,,,,,,,,2165,0.41,,,,,,,,,0.41,0.24,,,,,,,,,0.24,0.889012621,4790,5388,0.860110381,0.917914861,0.56969697,846,1485,0.452190709,0.68720323,0.038384987,135,3517,,,0.24,202,,0.14706383,0.33293617,,,,,,,,,,,,,0.121428571,0.063652642,0.179204501,4.275367115,103357,24175,3.251955562,5.298778667,0.271149675,250,922,0.146162358,0.396136991,5.995203837,4,6672,,,96.49969296,33,34197,66.4259484,135.5214471,,,,,,,,,,,,,99.26006136,68.32605899,139.3980307,,,,6.2,,,,,1,,,,,0.05511811,175,3175,0.033964364,0.076271857,0.039871383,0.014238824,0.065503941,0.010708661,0,0.022197406,0.007559055,0.001123075,0.013995035,0.710969044,2113,2972,0.64123646,0.780701629,,,,,,,,,,,,,0.714510421,0.648985596,0.780035246,0.396,,2972,0.311858577,0.480141423,74.89223258,,,72.51770235,77.2667628,,,,,,,,,,,,,75.03403482,72.7545121,77.31355754,,,,452.1493824,138,17941,366.3145602,537.9842045,,,,,,,,,,,,,453.1617218,366.7537246,539.569719,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.133,,,0.113,0.155,0.196,,,0.167,0.227,0.105,,,0.089,0.123,,,,,,0.106,720,,,,0.009170977,65.48994465,7141,,,,,,,,,,,,,,,,,,,,,,,,,,0.384,,,0.364,0.403,0.113960114,440,3861,0.092513305,0.135406923,0.048913044,45,920,0.031040703,0.066785384,0.002131547,14,6568,,,469.1428571,0.925,81.4,88,,,,,,,,2.588030945,,,,,,,,,2.529538556,2.623490293,,,,,,,,,2.639406176,,,,,,3099.581,,,,,0.784845464,39360,50150,0.568969559,1.000721369,50444,,,43720.42553,57167.57447,,,,,,,,,,,,,54034,47969.31915,60098.68085,,,,,,,,,,,,,,,,0.257989057,,50444,,,3.521126761,1,284,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,500,,,-888,0,0.655972696,3844,5860,,,0.41,,,,,7.704677171,,,,,0.802538787,2276,2836,0.772934552,0.832143022,0.0622598,162,2602,0.028564491,0.09595511,0.776798308,2203,2836,0.733813399,0.819783216,6568,,,,,0.134439708,883,6568,,,0.27908039,1833,6568,,,0.00411084,27,6568,,,0.002588307,17,6568,,,0.00319732,21,6568,,,0.000152253,1,6568,,,0.011266748,74,6568,,,0.969853837,6370,6568,,,0.000154155,1,6487,0,0.012979767,0.494518879,3248,6568,,,1,6762,6762,, -54,095,54095,WV,Tyler County,2024,1,11572.9358,182,22824,8675.061296,14470.8103,0,,,,2,,,,2,,,,2,,,,2,11945.19999,8938.715735,14951.68425,,,,,2,,0.192,,,0.162,0.224,4.524416483,,,3.612407582,5.523693568,6.105144819,,,4.939434428,7.307468694,0.094642857,53,560,0.070398206,0.118887509,0,,,,,,,,,,,,,0.096715329,0.071968146,0.121462511,,,,,,,0.212,,,0.17,0.257,0.417,,,0.332,0.502,8.4,0.007073965,0.113,,,0.281,,,0.228,0.336,0.683748346,5684,8313,,,0.131251222,,,0.102938034,0.163849884,0.333333333,4,12,0.175768434,0.488588466,134.9,11,8155,,,35.62653563,58,1628,27.05272216,46.05555881,,,,,,,,,,,,,36.52968037,27.59412797,47.43682845,,,,,,,0.065462754,406,6202,0.05473935,0.076186158,0.000245248,2,8155,,,4077.5,0.000122205,1,8183,,,8183,0.000244409,2,8183,,,4091.5,4696,,,,,,,,,4709,0.44,,,,,,,,,0.44,0.44,,,,,,,,,0.44,0.909414429,5622,6182,0.881367148,0.93746171,0.526666667,869,1650,0.384724267,0.668609066,0.059470609,173,2909,,,0.216,337,,0.129021277,0.302978723,,,,,,,,,,,,,0.13002681,0.051636105,0.208417515,4.644179517,114140,24577,2.599137023,6.689222012,0.174160861,275,1579,0.090752991,0.257568732,15.94114041,13,8155,,,112.0971509,48,42820,82.65158997,148.624559,,,,,,,,,,,,,115.3818418,85.07346175,152.9795827,,,,7.9,,,,,1,,,,,0.05,170,3400,0.032844644,0.067155356,0.045045045,0.021237455,0.068852635,0.004411765,0,0.015688945,0.002352941,0,0.007453917,0.852991453,2495,2925,0.795609608,0.910373298,,,,,,,,,,,,,0.819753086,0.755678685,0.883827487,0.558,,2925,0.450646875,0.665353125,75.07839457,,,72.86863311,77.28815603,,,,,,,,,,,,,74.76258049,72.5050796,77.02008139,,,,522.8654696,182,22824,437.9078773,607.823062,,,,,,,,,,,,,534.2696726,446.7986304,621.7407148,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.136,,,0.116,0.156,0.197,,,0.171,0.226,0.111,,,0.093,0.128,,,,,,0.113,950,,,,0.007073965,65.13706938,9208,,,,,,,,,,,,,,,,,,,,,,,,,,0.396,,,0.375,0.417,0.077290491,356,4606,0.062992618,0.091588363,0.032993401,55,1667,0.021078508,0.044908295,0.000611023,5,8183,,,1636.6,0.925,68.45,74,,,,,,,,2.782934332,,,,,,,,,2.770457845,2.820307898,,,,,,,,,2.798485721,,,,,,5136.063,,,,,0.679051301,39167,57679,0.421628693,0.936473909,57560,,,50668.42553,64451.57447,,,,,,,,,,,,,60262,51042.25532,69481.74468,,,,,,,,,,,,,,,,0.251928423,,57560,,,2.512562814,1,398,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,19.74756035,12,60767,10.2038526,34.49501382,,,,,,,,,,,,,20.2812331,10.47960909,35.42723271,,,,,,800,,,-888,0,0.560285714,3922,7000,,,0.475,,,,,17.09024231,,,,,0.886702849,2614,2948,0.86209159,0.911314109,0.046938027,128,2727,0.016979444,0.07689661,0.817503392,2410,2948,0.760638102,0.874368683,8183,,,,,0.194794085,1594,8183,,,0.248075278,2030,8183,,,0.00427716,35,8183,,,0.003543933,29,8183,,,0.008309911,68,8183,,,0.000122205,1,8183,,,0.008920934,73,8183,,,0.963949652,7888,8183,,,0.002643837,21,7943,0,0.012736614,0.497983625,4075,8183,,,1,8313,8313,, -54,097,54097,WV,Upshur County,2024,1,9695.810806,422,65879,8205.708779,11185.91283,0,,,,2,,,,2,,,,2,,,,2,9876.002563,8335.736756,11416.26837,,,,,2,,0.226,,,0.191,0.263,4.78068162,,,3.839471215,5.762150677,5.72739404,,,4.641833392,6.841922145,0.074449077,125,1679,0.06189281,0.087005344,0,,,,,,,,,,,,,0.074303406,0.061512288,0.087094523,,,,,,,0.24,,,0.191,0.288,0.421,,,0.351,0.493,7.9,0.034037851,0.122,,,0.315,,,0.259,0.373,0.582801478,13880,23816,,,0.125753674,,,0.099464802,0.155446629,0.380952381,8,21,0.265693072,0.491053906,285.8,68,23791,,,24.60812405,146,5933,20.61642169,28.59982641,,,,,,,,,,,,,25.9502924,21.68200008,30.21858472,,,,,,,0.08338519,1474,17677,0.069087318,0.097683062,0.000588458,14,23791,,,1699.357143,0.0004639,11,23712,,,2155.636364,0.000969973,23,23712,,,1030.956522,2983,,,,,,,,,2996,0.38,,,,,,,,,0.38,0.31,,,,,,,,,0.31,0.8734316,14340,16418,0.84726921,0.899593989,0.489210019,2539,5190,0.406466358,0.571953681,0.048146614,465,9658,,,0.245,1153,,0.153255319,0.336744681,,,,,,,0.844444444,0.301927583,1,0.355555556,0.089448499,0.621662612,0.214790287,0.15324605,0.276334524,4.846215591,102638,21179,4.013848995,5.678582187,0.275656814,1343,4872,0.197858435,0.353455194,13.03013745,31,23791,,,93.32903855,113,121077,76.12091001,110.5371671,,,,,,,,,,,,,94.9257853,77.18618103,112.6653896,,,,6.8,,,,,0,,,,,0.116788321,1120,9590,0.083120213,0.150456429,0.099523557,0.066469296,0.132577819,0.011991658,0.001510884,0.022472432,0.008863399,0.001413943,0.016312856,0.796590051,7382,9267,0.757980253,0.835199848,,,,,,,,,,,,,0.793459997,0.751455267,0.835464728,0.357,,9267,0.294279656,0.419720344,75.84360625,,,74.67007127,77.01714123,,,,,,,,,,,,,75.59117014,74.3973821,76.78495817,,,,463.296071,422,65879,415.433974,511.1581681,,,,,,,,,,,,,470.8477573,421.8308892,519.8646254,,,,52.10594876,12,23030,26.92390408,91.01860638,,,,,,,,,,,,,56.16662766,29.02211612,98.11179522,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.151,,,0.13,0.175,0.208,,,0.18,0.238,0.12,,,0.102,0.14,34.3,7,20431,,,0.122,2910,,,,0.034037851,825.5540288,24254,,,24.93178387,18,72197,14.77615522,39.40296725,,,,,,,,,,,,,26.09300707,15.46436968,41.23820055,,,,0.403,,,0.384,0.422,0.102369521,1322,12914,0.083305692,0.121433351,0.032832833,164,4995,0.022109429,0.043556237,0.001939946,46,23712,,,515.4782609,0.93,218.55,235,,,,,,,,2.721807079,,,,,,,,,2.697333315,2.779570151,,,,,,,,,2.763828329,0.036799219,,,,,2921.735,,,,,0.843784667,41834,49579,0.678823393,1.008745941,47035,,,42020.02128,52049.97872,,,,,,,,,,33125,7323.297872,58926.70213,50254,45073.40426,55434.59575,,,,,,,,,,,,,,,,0.322376953,,47035,,,7.086614173,9,1270,,,,,,,,,,,,,,,,,,,,,,,,,,15.57603407,20,121077,9.231344947,24.61684906,16.5184139,,,,,,,,,,,,,14.89646105,8.677737512,23.85067718,,,,11.56288973,14,121077,6.321539414,19.4005642,,,,,,,,,,,,,12.08146358,6.605048564,20.27064301,,,,16.42296165,28,170493,10.91293875,23.73575217,,,,,,,,,,,,,15.91167795,10.39403631,23.31429486,,,,,,2300,,,9,-888,0.526177606,10221,19425,,,0.584,,,,,26.461485,,,,,0.768690364,7331,9537,0.734809455,0.802571273,0.108237123,975,9008,0.07057861,0.145895636,0.815036175,7773,9537,0.782499948,0.847572402,23712,,,,,0.202218286,4795,23712,,,0.220352564,5225,23712,,,0.010247976,243,23712,,,0.00307861,73,23712,,,0.004301619,102,23712,,,8.43455E-05,2,23712,,,0.014718286,349,23712,,,0.956266869,22675,23712,,,0.000529101,12,22680,0,0.005348864,0.499578273,11846,23712,,,0.641123614,15269,23816,, -54,099,54099,WV,Wayne County,2024,1,15761.57094,975,106022,14242.80937,17280.33252,0,,,,2,,,,2,,,,2,,,,2,15867.08431,14318.11728,17416.05134,,,,,2,,0.231,,,0.193,0.27,5.054444712,,,4.104149413,6.071969247,6.58965583,,,5.457978788,7.732452452,0.102723735,264,2570,0.0909859,0.11446157,0,,,,,,,,,,,,,0.102024613,0.090204362,0.113844864,,,,,,,0.246,,,0.195,0.298,0.453,,,0.381,0.524,7,0.108288275,0.129,,,0.326,,,0.27,0.382,0.417115592,16260,38982,,,0.125208377,,,0.098993391,0.154714968,0.354166667,17,48,0.279817228,0.427690189,264.9,102,38498,,,23.97088353,191,7968,20.57131791,27.37044916,,,,,,,,,,,,,24.65110213,21.13661861,28.16558564,,,,,,,0.089066257,2667,29944,0.074768385,0.103364129,0.000467557,18,38498,,,2138.777778,0.00036844,14,37998,,,2714.142857,0.002184326,83,37998,,,457.8072289,4500,,,,,,,,,4511,0.33,,,,,,,,,0.33,0.38,,,,,,,,,0.38,0.842105263,23584,28006,0.814640239,0.869570288,0.569869244,5012,8795,0.490522555,0.649215933,0.039692209,619,15595,,,0.248,1846,,0.165787234,0.330212766,,,,,,,,,,0.077777778,0,0.16327557,0.198311652,0.13882438,0.257798925,5.57768569,106333,19064,4.838182229,6.317189152,0.144912901,1148,7922,0.100224242,0.189601559,6.493843836,25,38498,,,190.3060629,375,197051,171.0444318,209.5676941,,,,,,,,,,,,,191.8683375,172.238064,211.4986111,,,,8.4,,,,,1,,,,,0.104727512,1595,15230,0.083100641,0.126354382,0.091961853,0.069451483,0.114472222,0.012147078,0.003348971,0.020945185,0.008207485,0.000793939,0.015621031,0.834702999,11579,13872,0.800151257,0.869254741,,,,,,,,,,,,,0.757069847,0.734021522,0.780118171,0.353,,13872,0.297483755,0.408516245,71.14017077,,,70.13554574,72.1447958,,,,,,,,,,,,,70.98195056,69.96730898,71.99659215,,,,677.8704489,975,106022,631.8572275,723.8836703,,,,,,,,,,,,,682.0231623,635.23413,728.8121945,,,,60.18571592,21,34892,37.25590675,92.00026005,,,,,,,,,,,,,60.37553583,36.8789458,93.24511834,,,,8.925106713,23,2577,5.657752052,13.39204226,,,,,,,,,,,,,8.709422011,5.458148406,13.18616959,,,,,,,0.154,,,0.131,0.178,0.218,,,0.187,0.248,0.12,,,0.102,0.138,60.3,20,33165,,,0.129,5090,,,,0.108288275,4600.194211,42481,,,106.0245909,124,116954,87.36286377,124.686318,,,,,,,,,,,,,106.7188795,87.70351555,125.7342435,,,,0.39,,,0.372,0.408,0.10694637,2391,22357,0.087882541,0.1260102,0.037397158,300,8022,0.025482264,0.049312051,0.001315859,50,37998,,,759.96,0.9,433.8,482,,,0.201932859,397,1966,0.087611901,0.316253816,2.952889921,,,,,,,,,2.962577376,3.011406969,,,,,,,,,3.010898246,0.056006792,,,,,-57.15039,,,,,0.705699187,39661,56201,0.604733122,0.806665252,52540,,,46980.51064,58099.48936,,,,,,,78870,78535.19149,79204.80851,90682,52399.44681,128964.5532,52264,46096.85106,58431.14894,,,,,,,,,,,85.93788179,,,,,0.285477731,,52540,,,3.081664099,6,1947,,,4.666975405,13,278553,2.484967849,7.980670077,,,,,,,,,,,,,4.803890412,2.557869324,8.214798909,,,,17.39983331,33,197051,11.73959447,24.83934397,16.74693354,,,,,,,,,,,,,17.2568507,11.55718375,24.7837162,,,,15.73196787,31,197051,10.6891089,22.33027262,,,,,,,,,,,,,15.68406029,10.58196962,22.3899713,,,,22.61688081,63,278553,17.37943221,28.93681536,,,,,,,,,,,,,22.54133193,17.24233283,28.95528388,,,,,,3700,,,11,-888,0.537317692,16947,31540,,,0.53,,,,,31.1235444,,,,,0.767364129,11479,14959,0.738705791,0.796022467,0.092897358,1287,13854,0.06824348,0.117551237,0.7650244,11444,14959,0.73472241,0.79532639,37998,,,,,0.199773672,7591,37998,,,0.226301384,8599,37998,,,0.007474078,284,37998,,,0.003473867,132,37998,,,0.00326333,124,37998,,,0.00018422,7,37998,,,0.008053055,306,37998,,,0.966787726,36736,37998,,,0.000891555,33,37014,0,0.004411935,0.50810569,19307,37998,,,0.598199169,23319,38982,, -54,101,54101,WV,Webster County,2024,1,12748.18653,194,22123,9756.618698,15739.75436,0,,,,2,,,,2,,,,2,,,,2,13026.86637,9961.191345,16092.5414,,,,,2,,0.263,,,0.223,0.309,5.359123363,,,4.246550145,6.541317696,6.40068675,,,5.105614473,7.738420828,0.094339623,50,530,0.069454036,0.11922521,0,,,,,,,,,,,,,0.090909091,0.066128132,0.11569005,,,,,,,0.267,,,0.215,0.321,0.413,,,0.332,0.492,7.5,0.021941692,0.148,,,0.357,,,0.297,0.42,0.312126999,2615,8378,,,0.112442314,,,0.086893631,0.141145999,0.75,3,4,0.567659215,0.8560462,254.6,21,8249,,,35.0631136,50,1426,26.02451875,46.22634408,,,,,,,,,,,,,36.87315634,27.36796736,48.61265978,,,,,,,0.089885834,559,6219,0.074396472,0.105375195,0.000242454,2,8249,,,4124.5,0.000367332,3,8167,,,2722.333333,0.000367332,3,8167,,,2722.333333,2740,,,,,,,,,2746,0.36,,,,,,,,,0.35,0.23,,,,,,,,,0.23,0.799223427,4940,6181,0.753552807,0.844894047,0.484468339,811,1674,0.345127923,0.623808756,0.04559848,144,3158,,,0.354,546,,0.211021277,0.496978723,,,,,,,,,,,,,0.271262887,0.172593965,0.369931808,5.647192143,89700,15884,3.498958852,7.795425435,0.189108318,316,1671,0.093267652,0.284948985,7.273608922,6,8249,,,131.4572277,54,41078,98.75471535,171.5231666,,,,,,,,,,,,,135.4367836,101.7442802,176.7156239,,,,6.3,,,,,1,,,,,0.11452514,410,3580,0.077281434,0.151768845,0.106413994,0.066229495,0.146598493,0.005586592,0,0.020802456,0.00698324,0,0.016385697,0.815360745,2102,2578,0.738411857,0.892309633,,,,,,,,,,,,,0.775132275,0.67886856,0.87139599,0.458,,2578,0.339628065,0.576371935,73.30793894,,,71.2587126,75.35716528,,,,,,,,,,,,,72.95837565,70.89048613,75.02626518,,,,583.6790235,194,22123,490.3986954,676.9593515,,,,,,,,,,,,,595.5508904,500.3664364,690.7353444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.172,,,0.147,0.2,0.225,,,0.194,0.256,0.133,,,0.112,0.154,84.1,6,7134,,,0.148,1250,,,,0.021941692,200.854251,9154,,,,,,,,,,,,,,,,,,,,,,,,,,0.419,,,0.4,0.435,0.108154506,504,4660,0.087899187,0.128409826,0.036607688,60,1639,0.023501305,0.049714071,0.002693768,22,8167,,,371.2272727,0.975,74.1,76,,,,,,,,2.120804479,,,,,,,,,2.157121711,2.030869615,,,,,,,,,2.047981299,,,,,,-3264.449,,,,,0.956792137,44000,45987,0.570681065,1.342903208,40598,,,35033.74468,46162.25532,,,,,,,,,,,,,43920,37483.57447,50356.42553,,,,,,,,,,,,,,,,0.315311099,,40598,,,2.551020408,1,392,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,29.21271727,12,41078,15.0946373,51.02873813,,,,,,,,,,,,,30.09706303,15.55159166,52.5735122,,,,29.07026454,17,58479,16.93450037,46.54430961,,,,,,,,,,,,,29.92641622,17.43324027,47.91509139,,,,,,700,,,-888,,0.513122172,3402,6630,,,0.45,,,,,0.236034769,,,,,0.784053156,2360,3010,0.75594545,0.812160862,0.134517767,371,2758,0.080944742,0.188090791,0.762458472,2295,3010,0.711440948,0.813475996,8167,,,,,0.192604384,1573,8167,,,0.258479246,2111,8167,,,0.003918207,32,8167,,,0.00122444,10,8167,,,0.002081548,17,8167,,,0.000122444,1,8167,,,0.008693523,71,8167,,,0.970246112,7924,8167,,,0,0,7985,0,0.010743548,0.496877679,4058,8167,,,1,8378,8378,, -54,103,54103,WV,Wetzel County,2024,1,13183.15218,348,39591,10939.27496,15427.0294,0,,,,2,,,,2,,,,2,,,,2,13560.16366,11235.55737,15884.76996,,,,,2,,0.213,,,0.18,0.249,4.590350391,,,3.675233298,5.694183459,6.155064328,,,4.989554333,7.45530197,0.084304933,94,1115,0.067996187,0.100613679,0,,,,,,,,,,,,,0.082720588,0.066352451,0.099088725,,,,,,,0.234,,,0.188,0.282,0.409,,,0.331,0.486,6.5,0.16728666,0.123,,,0.296,,,0.245,0.351,0.591538568,8543,14442,,,0.124282142,,,0.096166927,0.156189387,0.384615385,5,13,0.234541684,0.524881883,183.5,26,14170,,,32.38296375,92,2841,26.10523927,39.71483034,,,,,,,,,,,,,32.26989366,25.88139834,39.75741153,,,,,,,0.075786594,831,10965,0.062680211,0.088892977,0.00042343,6,14170,,,2361.666667,0.00057041,8,14025,,,1753.125,0.001283423,18,14025,,,779.1666667,3935,,,,,,,,,3950,0.39,,,,,,,,,0.39,0.41,,,,,,,,,0.41,0.899757399,9272,10305,0.876320636,0.923194163,0.468444144,1388,2963,0.37218118,0.564707109,0.055710306,360,6462,,,0.267,756,,0.168106383,0.365893617,,,,,,,,,,,,,0.14797136,0.095046457,0.200896264,4.67075846,100071,21425,3.850343448,5.491173471,0.202603471,607,2996,0.122087634,0.283119309,18.34862385,26,14170,,,133.6076744,100,74846,107.4205702,159.7947786,,,,,,,,,,,,,137.7524313,110.7529548,164.7519079,,,,7.9,,,,,0,,,,,0.081395349,490,6020,0.055288245,0.107502453,0.061551433,0.037320699,0.085782168,0.011627907,0,0.024309765,0.008305648,0,0.017946539,0.817985045,4157,5082,0.780122926,0.855847165,,,,,,,,,,,,,0.841867765,0.790715488,0.893020043,0.38,,5082,0.306156492,0.453843508,72.14147737,,,70.62077024,73.6621845,,,,,,,,,,,,,71.82100252,70.26673876,73.37526629,,,,606.5810954,348,39591,537.0839266,676.0782642,,,,,,,,,,,,,619.6960087,548.2882406,691.1037767,,,,76.37668983,10,13093,36.62559151,140.4594519,,,,,,,,,,,,,80.30193528,38.50789927,147.6781181,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.144,,,0.124,0.166,0.209,,,0.181,0.238,0.113,,,0.096,0.132,82.5,10,12116,,,0.123,1800,,,,0.16728666,2774.114685,16583,,,40.78026235,18,44139,24.16896799,64.45039595,,,,,,,,,,,,,42.11018833,24.95716641,66.55225235,,,,0.391,,,0.374,0.41,0.090942882,734,8071,0.074262031,0.107623733,0.034948896,106,3033,0.023034002,0.046863789,0.000641711,9,14025,,,1558.333333,0.975,180.375,185,,,,,,,,2.823272585,,,,,,,,,2.816337415,2.894514805,,,,,,,,,2.888890138,0.07671345,,,,,6906.049,,,,,0.666525301,34576,51875,0.508948158,0.824102444,48563,,,42144.44681,54981.55319,,,,,,,,,,,,,50642,46915.02128,54368.97872,,,,,,,,,,,,,,,,0.306550254,,48563,,,,,823,,,,,,,,,,,,,,,,,,,,,,,,,,22.73993682,17,74846,12.72737002,37.5060676,22.71330465,,,,,,,,,,,,,23.38322171,13.08741169,38.5670682,,,,16.03292093,12,74846,8.284444204,28.00628631,,,,,,,,,,,,,16.53029176,8.541442969,28.87509305,,,,19.75503754,21,106302,12.2286796,30.19767336,,,,,,,,,,,,,20.34390894,12.59320028,31.09782585,,,,,,1400,,,-888,0,0.547372742,6667,12180,,,0.502,,,,,43.52632897,,,,,0.807370756,4732,5861,0.78212338,0.832618132,0.071051193,390,5489,0.042947949,0.099154438,0.766592732,4493,5861,0.722669417,0.810516046,14025,,,,,0.204991087,2875,14025,,,0.230231729,3229,14025,,,0.005775401,81,14025,,,0.00171123,24,14025,,,0.003707665,52,14025,,,0,0,14025,,,0.012263815,172,14025,,,0.9657041,13544,14025,,,0.001472104,20,13586,0,0.008031433,0.499180036,7001,14025,,,0.624082537,9013,14442,, -54,105,54105,WV,Wirt County,2024,1,11920.66753,120,15237,8303.33438,15538.00069,0,,,,2,,,,2,,,,2,,,,2,12270.85618,8535.436841,16006.27552,,,,,2,,0.231,,,0.192,0.273,4.86772945,,,3.884507704,5.951789137,6.50834209,,,5.267401961,7.742325711,0.07751938,30,387,0.050876304,0.104162456,0,,,,,,,,,,,,,0.079575597,0.052256307,0.106894887,,,,,,,0.245,,,0.192,0.298,0.425,,,0.342,0.511,7.6,0.006400111,0.149,,,0.306,,,0.249,0.369,0.465344628,2417,5194,,,0.122062246,,,0.094490467,0.153831835,0.2,1,5,0.015594715,0.47750127,237,12,5063,,,32.32323232,32,990,22.10906698,45.63075968,,,,,,,,,,,,,32.36245955,21.83481556,46.1994233,,,,,,,0.084410646,333,3945,0.070112774,0.098708519,0.000197511,1,5063,,,5063,0.000196425,1,5091,,,5091,0.0007857,4,5091,,,1272.75,3951,,,,,,,,,3954,0.38,,,,,,,,,0.39,0.26,,,,,,,,,0.26,0.858367983,3303,3848,0.817392205,0.899343761,0.466666667,525,1125,0.330831834,0.602501499,0.058510638,132,2256,,,0.283,304,,0.173382979,0.392617021,,,,,,,,,,,,,0.309594461,0.156992858,0.462196064,4.780009497,100667,21060,3.172259389,6.387759605,0.151624549,168,1108,0.047167001,0.256082097,7.900454276,4,5063,,,102.7894942,29,28213,68.83973749,147.6228598,,,,,,,,,,,,,106.1105013,71.06386805,152.3923799,,,,7.8,,,,,0,,,,,0.11741683,300,2555,0.058546426,0.176287233,0.070333988,0.024252337,0.116415639,0.023483366,0,0.063191307,0.025440313,0,0.0509204,0.835300154,1628,1949,0.758529115,0.912071193,,,,,,,,,,,,,0.697701149,0.564868372,0.830533927,0.661,,1949,0.520121813,0.801878187,74.76483625,,,71.84047801,77.68919448,,,,,,,,,,,,,74.30279129,71.3658069,77.23977568,,,,530.1442259,120,15237,425.1440947,635.1443571,,,,,,,,,,,,,542.5680083,434.7157189,650.4202977,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.155,,,0.132,0.181,0.216,,,0.186,0.247,0.124,,,0.106,0.144,,,,,,0.149,790,,,,0.006400111,36.5894333,5717,,,60.28090904,10,16589,28.90703898,110.858738,,,,,,,,,,,,,62.32859636,29.88898464,114.6245079,,,,0.426,,,0.406,0.445,0.100761773,291,2888,0.081697943,0.119825603,0.039711191,44,1108,0.02422183,0.055200553,0.001964251,10,5091,,,509.1,0.925,60.125,65,,,,,,,,2.736054495,,,,,,,,,2.736731042,2.739597422,,,,,,,,,2.748346818,,,,,,-1462.064,,,,,1.001902279,46875,46786,0.681725516,1.322079041,43441,,,40403.89362,46478.10638,,,,,,,,,,,,,54237,43948.48936,64525.51064,,,,,,,,,,,,,,,,0.280840681,,43441,,,3.937007874,1,254,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,600,,,-888,-888,0.581798246,2653,4560,,,0.398,,,,,0.771171667,,,,,0.845509539,1817,2149,0.821065006,0.869954072,0.076661815,158,2061,0.022367599,0.13095603,0.782689623,1682,2149,0.731132747,0.834246499,5091,,,,,0.214299745,1091,5091,,,0.230210175,1172,5091,,,0.006089177,31,5091,,,0.002749951,14,5091,,,0.003535651,18,5091,,,0,0,5091,,,0.009035553,46,5091,,,0.962679238,4901,5091,,,0,0,4952,0,0.017323755,0.490473384,2497,5091,,,1,5194,5194,, -54,107,54107,WV,Wood County,2024,1,11725.67522,1773,227853,10857.31591,12594.03454,0,,,,2,,,,2,19684.15148,11466.74362,31516.23335,1,,,,2,11815.19402,10920.16649,12710.22156,,,,,2,,0.191,,,0.16,0.22,4.452291243,,,3.632234479,5.339333096,6.136042358,,,5.210231543,7.117727977,0.097328882,583,5990,0.08982254,0.104835223,0,,,,,,,,,,,,,0.097281073,0.089563427,0.10499872,,,,,,,0.209,,,0.166,0.253,0.399,,,0.346,0.453,7.6,0.090671355,0.108,,,0.277,,,0.232,0.325,0.76699962,64655,84296,,,0.129486135,,,0.105020343,0.157059417,0.283018868,15,53,0.211467291,0.356871404,255.9,214,83624,,,29.06976744,470,16168,26.44162621,31.69790867,,,,,,,,,,,,,29.33297616,26.58587188,32.08008044,,,,30.20667727,18.18639295,47.17146832,0.069729672,4594,65883,0.059006268,0.080453077,0.000860997,72,83624,,,1161.444444,0.00062395,52,83340,,,1602.692308,0.001859851,155,83340,,,537.6774194,3732,,,,,,,,,3752,0.52,,,,,,0.25,0.48,,0.52,0.46,,,,,,0.38,0.43,,0.46,0.908763844,54813,60316,0.8975677,0.919959988,0.57594124,11213,19469,0.528736142,0.623146337,0.040945141,1492,36439,,,0.257,4347,,0.193851064,0.320148936,,,,,,,0.517857143,0.264979457,0.770734828,0.488095238,0.323225138,0.652965338,0.172398277,0.140917687,0.203878867,4.751750253,107917,22711,4.312412891,5.191087615,0.212746499,3722,17495,0.175778605,0.249714393,17.21993686,144,83624,,,106.5841335,447,419387,96.70327072,116.4649963,,,,,,,218.9054726,109.2768232,391.6823585,,,,107.5916033,97.41024309,117.7729636,,,,7.8,,,,,0,,,,,0.095765843,3370,35190,0.081760804,0.109770881,0.082069166,0.069135253,0.095003079,0.010940608,0.006596284,0.015284933,0.008098892,0.003948229,0.012249554,0.81044482,28787,35520,0.794453247,0.826436392,,,,,,,,,,,,,0.822212515,0.804282962,0.840142068,0.178,,35520,0.153465732,0.202534268,73.54699701,,,72.91874786,74.17524616,,,,,,,,,,,,,73.43041272,72.78820145,74.072624,,,,551.9094837,1773,227853,524.3631395,579.455828,,,,,,,842.4951661,550.3458138,1234.450621,,,,557.8647671,529.5792663,586.1502678,,,,57.49754982,44,76525,41.77780772,77.18777691,,,,,,,,,,,,,58.39623985,41.90614993,79.22109324,,,,6.281204703,39,6209,4.46655057,8.586613604,,,,,,,,,,,,,6.113092206,4.281534627,8.463096364,,,,,,,0.137,,,0.116,0.156,0.198,,,0.17,0.225,0.116,,,0.1,0.132,96.7,69,71322,,,0.108,9140,,,,0.090671355,7884.418333,86956,,,49.58413308,124,250080,40.85667134,58.31159481,,,,,,,,,,,,,49.23993738,40.31755909,58.16231567,,,,0.377,,,0.359,0.393,0.084497164,4096,48475,0.070199291,0.098795036,0.030019173,548,18255,0.020487258,0.039551088,0.001547876,129,83340,,,646.0465116,0.89,722.68,812,,,0.11862277,472,3979,0.078782233,0.158463306,3.055538278,,,,,,,,,3.068906201,2.865536267,,,,,,,,,2.865979465,0.034322569,,,,,1257.305,,,,,0.764158043,40615,53150,0.685032579,0.843283507,57599,,,51307.93617,63890.06383,27159,14644.78723,39673.21277,63214,28142.51064,98285.48936,,,,60143,35192.02128,85093.97872,55089,51897,58281,,,,,,,,,,,62.28396058,,,,,0.289032796,,57599,,,4.074630067,19,4663,,,5.241072425,31,591482,3.561054433,7.439283952,,,,,,,,,,,,,5.331058748,3.596842951,7.610417848,,,,20.8800827,86,419387,16.556607,25.98707035,20.50611965,,,,,,,,,,,,,21.00835049,16.57946167,26.25683354,,,,14.78348161,62,419387,11.33441058,18.95175622,,,,,,,,,,,,,14.29538786,10.82718716,18.52133308,,,,11.83467967,70,591482,9.225713396,14.95240579,,,,,,,,,,,,,12.26143512,9.5401284,15.51763089,,,,6.5,,8000,,,29,23,0.584513308,38762,66315,,,0.69,,,,,60.37221536,,,,,0.746595769,26537,35544,0.72757658,0.765614957,0.080984984,2756,34031,0.06741788,0.094552088,0.835949809,29713,35544,0.816420194,0.855479424,83340,,,,,0.207283417,17275,83340,,,0.216714663,18061,83340,,,0.012311015,1026,83340,,,0.002231822,186,83340,,,0.006455484,538,83340,,,0.000419966,35,83340,,,0.014986801,1249,83340,,,0.944216463,78691,83340,,,0.002807616,224,79783,0.000702752,0.004912479,0.510367171,42534,83340,,,0.296277403,24975,84296,, -54,109,54109,WV,Wyoming County,2024,1,16041.25461,638,56730,14040.44533,18042.06389,0,,,,2,,,,2,,,,2,,,,2,16096.10529,14055.15821,18137.05237,,,,,2,,0.254,,,0.215,0.296,5.427817216,,,4.407180021,6.449947301,7.150419427,,,5.971474412,8.359834882,0.113587347,158,1391,0.096911978,0.130262716,0,,,,,,,,,,,,,0.11598513,0.098872141,0.133098119,,,,,,,0.271,,,0.22,0.32,0.434,,,0.366,0.506,7.1,0.000055786,0.176,,,0.335,,,0.279,0.392,0.276353943,5909,21382,,,0.114232571,,,0.090413827,0.14270085,0.25,3,12,0.099776571,0.4182543,142.5,30,21051,,,34.71552555,144,4148,29.04532305,40.38572806,,,,,,,,,,,,,33.79571248,28.07348289,39.51794208,,,,,,,0.091530644,1486,16235,0.076041282,0.107020005,0.000285022,6,21051,,,3508.5,0.000243582,5,20527,,,4105.4,0.00053588,11,20527,,,1866.090909,8504,,,,,,,,,8505,0.28,,,,,,,,,0.28,0.25,,,,,,,,,0.25,0.763967113,11801,15447,0.719066061,0.808868166,0.364549925,1705,4677,0.265750052,0.463349798,0.043368421,309,7125,,,0.333,1333,,0.223382979,0.442617021,,,,,,,,,,,,,0.303359434,0.20577105,0.400947818,4.673691701,85379,18268,3.470251319,5.877132083,0.226542491,973,4295,0.123180077,0.329904906,9.025699492,19,21051,,,166.0808775,172,103564,141.2603231,190.901432,,,,,,,,,,,,,169.1592784,143.7303866,194.5881702,,,,7.1,,,,,1,,,,,0.09740634,845,8675,0.069547118,0.125265562,0.066745422,0.044307008,0.089183837,0.025936599,0.008598459,0.04327474,0.007953891,0.001893956,0.014013825,0.886302746,5293,5972,0.832390078,0.940215415,,,,,,,,,,,,,0.842461122,0.78948721,0.895435035,0.496,,5972,0.379965819,0.612034181,70.0389854,,,68.7984906,71.27948019,,,,,,,,,,,,,69.88392184,68.62968,71.13816368,,,,755.6039426,638,56730,690.9866306,820.2212547,,,,,,,,,,,,,758.2170043,692.655464,823.7785446,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.168,,,0.143,0.193,0.228,,,0.199,0.257,0.132,,,0.114,0.152,77.2,14,18143,,,0.176,3810,,,,0.000055786,1.327483628,23796,,,94.20478171,58,61568,71.53364033,121.7815257,,,,,,,,,,,,,95.46619324,72.30516248,123.6875264,,,,0.434,,,0.414,0.451,0.111018987,1339,12061,0.091955157,0.130082817,0.036441829,161,4418,0.024526935,0.048356723,0.000487163,10,20527,,,2052.7,0.89,256.32,288,,,,,,,,3.127684075,,,,,,,,,3.123552667,2.80681257,,,,,,,,,2.819358377,0.077145379,,,,,-1087.33,,,,,0.613899044,37446,60997,0.367113366,0.860684723,39892,,,34650.6383,45133.3617,,,,,,,,,,,,,44815,37792.3617,51837.6383,,,,,,,,,,,,,,,,0.360297804,,39892,,,11.5146147,13,1129,,,,,,,,,,,,,,,,,,,,,,,,,,29.02078668,31,103564,19.28410199,41.94311691,29.93318141,,,,,,,,,,,,,28.2613208,18.62438849,41.11873799,,,,23.17407593,24,103564,14.84806772,34.48118805,,,,,,,,,,,,,22.88625531,14.50792266,34.34062001,,,,13.56134474,20,147478,8.283621683,20.94439706,,,,,,,,,,,,,13.96355512,8.529302231,21.56557837,,,,,,2000,,,19,,0.519154079,8592,16550,,,0.397,,,,,1.972284151,,,,,0.803858105,6209,7724,0.74780705,0.859909159,0.102457845,717,6998,0.065378331,0.139537359,0.742232004,5733,7724,0.700077852,0.784386156,20527,,,,,0.198860038,4082,20527,,,0.234422955,4812,20527,,,0.006869002,141,20527,,,0.002094802,43,20527,,,0.002484533,51,20527,,,0.000194865,4,20527,,,0.011302187,232,20527,,,0.962878161,19765,20527,,,0.002968387,60,20213,0,0.010802953,0.499975642,10263,20527,,,1,21382,21382,, -55,000,55000,WI,Wisconsin,2024,,7082.395642,74389,16292893,7002.223548,7162.567737,0,16457.59921,15212.0597,17703.13872,,4624.26704,4278.414508,4970.119571,,16481.52149,16027.15269,16935.89029,,6403.990665,6131.448457,6676.532873,,6380.480961,6295.079178,6465.882745,,7667.928106,4291.681153,12647.08131,1,,0.127,,,0.115,0.14,3.104790286,,,2.837113754,3.372466818,4.833806196,,,4.465978012,5.201634379,0.076745014,33850,441071,0.075959439,0.077530589,0,0.078078078,0.070085739,0.086070417,0.081612778,0.077868309,0.085357246,0.158979151,0.155598515,0.162359788,0.075782609,0.073364093,0.078201125,0.064292272,0.063433965,0.065150579,0.075757576,0.038899771,0.11261538,0.092732619,0.086906547,0.098558692,0.138,,,0.124,0.152,0.335,,,0.316,0.354,9.1,0.050005492,0.072,,,0.193,,,0.178,0.208,0.837270803,4934638,5893718,,,0.252944528,,,0.235151365,0.271605939,0.351216261,1054,3001,0.342474966,0.35996258,472.3,27847,5895908,,,12.23215553,15947,1303695,12.04230161,12.42200945,25.16918866,22.45767816,27.88069916,8.895092076,8.05138327,9.738800881,41.78571429,40.52377134,43.04765723,25.39416869,24.56589031,26.22244708,6.742183865,6.577629096,6.906738635,,,,19.85513022,18.51795874,21.1923017,0.06456408,305258,4727985,0.062181101,0.066947058,0.000799368,4713,5895908,,,1250.98833,0.00073347,4322,5892539,,,1363.382462,0.002513008,14808,5892539,,,397.92943,2451,,,,,3819,2530,5500,3022,2326,0.5,,,,,0.32,0.28,0.35,0.32,0.51,0.52,,,,,0.43,0.5,0.38,0.4,0.53,0.930974144,3768426,4047831,0.929825403,0.932122885,0.700882271,1027089,1465423,0.695456725,0.706307816,0.029227143,90082,3082135,,,0.13,159967,,0.122851064,0.137148936,0.305616338,0.275864612,0.335368065,0.164473393,0.143581062,0.185365723,0.36285238,0.347087272,0.378617487,0.217001587,0.205472185,0.228530988,0.08056625,0.078032462,0.083100037,4.168601062,135046,32396,4.122133319,4.215068805,0.223280241,282976,1267358,0.21845796,0.228102523,11.01102663,6492,5895908,,,93.08969587,27145,29160048,91.98227486,94.19711689,158.3793031,143.0858382,173.672768,29.7671181,26.14880464,33.38543156,144.225916,138.7715237,149.6803083,52.87367462,49.75187683,55.99547241,95.59860946,94.3500091,96.84720981,114.8308453,61.14258891,196.3642427,7.8,,,,,0.416666667,,,,,0.128954324,306645,2377935,0.126932841,0.130975807,0.109170612,0.107306056,0.111035167,0.016217853,0.015510113,0.016925593,0.010317776,0.009692961,0.01094259,0.770044472,2290304,2974249,0.767843495,0.772245449,0.733336835,0.70811182,0.75856185,0.677299107,0.659695587,0.694902627,0.705325739,0.693119016,0.717532463,0.718769799,0.710365755,0.727173842,0.781182646,0.779266506,0.783098786,0.278,,2974249,0.274847616,0.281152385,78.24026934,,,78.16929314,78.31124554,70.21124498,69.32240136,71.10008861,82.59504526,81.90127228,83.28881825,69.50580333,69.18094909,69.83065757,81.74578632,81.14041557,82.35115706,78.8394834,78.7641521,78.91481469,80.4224199,74.40796982,86.43686998,344.1054272,74389,16292893,341.5096498,346.7012045,721.172635,678.8241171,763.5211529,243.4151091,227.5857764,259.2444418,766.3032452,749.0063496,783.6001408,313.2358699,300.7297857,325.7419541,320.3937726,317.6760978,323.1114475,352.9158561,215.5701734,545.0499166,49.13267402,2799,5696820,47.31244924,50.9528988,74.29297849,54.18980831,99.40985042,46.30787327,37.23153011,55.38421642,135.447117,125.1908709,145.7033632,47.15434999,42.0511697,52.25753028,39.61812529,37.6670573,41.56919328,,,,5.968231878,2676,448374,5.742101606,6.19436215,10.23519164,7.520433834,13.61063509,5.331809959,4.344344936,6.319274982,15.44090424,14.30430939,16.57749909,6.832366145,6.07422528,7.59050701,4.426673836,4.196104277,4.657243395,,,,8.377518558,6.632560335,10.44088772,0.090479095,,,0.08004194,0.10212613,0.142609646,,,0.128030081,0.158547593,0.079,,,0.07,0.088,136.6,6840,5009066,,,0.072,427380,,,,0.050005492,284380.5328,5686986,,,25.67945285,4507,17550997,24.92973465,26.42917106,82.38337006,68.16660554,96.60013457,5.608189452,3.783821873,8.006039159,62.82491426,58.19059846,67.45923007,21.30352609,18.7764039,23.83064827,23.48205134,22.68303822,24.28106447,,,,0.311937468,,,0.292596997,0.331956433,0.073511148,255294,3472861,0.07112817,0.075894127,0.041141471,54293,1319666,0.037567003,0.044715939,0.001487983,8768,5892539,,,672.0505246,0.895046577,58226.36,65054,,,0.052891489,16537,312659,0.04934426,0.056438718,2.999213937,,,,,,3.000620739,2.021448495,2.517479697,3.231697768,3.003415262,,,,,,3.050567706,1.889126233,2.450315476,3.28062507,0.271762123,,,,,355.4047,,,,,0.805495584,49248,61140,0.798305171,0.812685997,71050,,,70289.82979,71810.17021,53521,48994.53192,58047.46809,83757,80149.17021,87364.82979,38732,37411.82979,40052.17021,58083,56369.6383,59796.3617,76154,75688.12766,76619.87234,,,,,,0.394987745,324879,822504,,,76.68953811,,,,,0.31246134,,,,,6.478953949,,,,,4.374836481,1781,40710093,4.171654151,4.578018811,5.248995784,3.16023835,8.196957122,2.435000189,1.630757842,3.497066449,39.71586751,37.28918792,42.1425471,5.466479965,4.608649368,6.324310563,1.593848931,1.457638504,1.730059358,,,,14.74739528,4426,29160048,14.29938137,15.19540918,15.17830149,24.21979467,18.52622382,31.11133948,7.861751611,5.954413896,10.18581109,9.096998543,7.673150081,10.520847,8.229092425,6.866553102,9.591631748,15.81505741,15.29680397,16.33331085,,,,11.44031039,3336,29160048,11.05208775,11.82853303,11.53247352,7.780911458,16.46332304,4.923023378,3.562816429,6.631280182,41.98982364,39.04677971,44.93286758,7.484839601,6.310276725,8.659402477,9.755133416,9.356279122,10.15398771,,,,10.43230238,4247,40710093,10.11854416,10.74606059,23.48234956,18.75686679,29.03628888,4.450172759,3.333484774,5.820935538,18.37196592,16.72149368,20.02243817,7.779221489,6.755891454,8.802551524,10.27517438,9.92932948,10.62101928,,,,,,,,,,,0.750836314,3298041,4392490,,,,,,,,280.7318985,,,,,0.676808131,1641590,2425488,0.673231493,0.680384769,0.111790779,264847,2369131,0.110063924,0.113517634,0.877468782,2128290,2425488,0.875225808,0.879711755,5892539,,,,,0.211390879,1245629,5892539,,,0.187036352,1102119,5892539,,,0.062728308,369629,5892539,,,0.012143322,71555,5892539,,,0.03236262,190698,5892539,,,0.000612979,3612,5892539,,,0.076053973,448151,5892539,,,0.801027028,4720083,5892539,,,0.013518846,75172,5560534,0.013010029,0.014027662,0.498466451,2937233,5892539,,,0.329168617,1940027,5893718,, -55,001,55001,WI,Adams County,2024,1,10701.15649,431,54146,8639.938573,12762.3744,0,,,,2,,,,2,,,,2,,,,2,11504.25676,9143.94906,13864.56446,,,,,2,,0.16,,,0.132,0.188,3.770106411,,,2.963203071,4.621919234,5.065058762,,,4.037519664,6.148309567,0.08013544,71,886,0.062257665,0.098013215,0,,,,,,,,,,,,,0.080100125,0.061277961,0.098922289,,,,,,,0.191,,,0.152,0.231,0.384,,,0.303,0.467,8.2,0.036511226,0.109,,,0.241,,,0.194,0.288,0.441803041,9125,20654,,,0.2058307,,,0.16517321,0.249997385,0.666666667,12,18,0.581234489,0.736844829,129.3,27,20875,,,15.15151515,44,2904,11.0091141,20.34020189,,,,,,,,,,,,,15.15740381,10.77839584,20.72066998,,,,,,,0.081813405,1090,13323,0.071090001,0.09253681,9.58084E-05,2,20875,,,10437.5,9.42241E-05,2,21226,,,10613,0.000706681,15,21226,,,1415.066667,1376,,,,,,,,,1395,0.47,,,,,,,,,0.47,0.25,,,,,,,,0.27,0.25,0.883526151,14663,16596,0.869887723,0.897164579,0.502644104,1901,3782,0.451736297,0.55355191,0.048033234,370,7703,,,0.233,635,,0.167468085,0.298531915,,,,,,,,,,0.407239819,0.231511448,0.58296819,0.2,0.153335769,0.246664231,4.21902988,106463,25234,4.017712932,4.420346829,0.224940537,662,2943,0.168655385,0.281225689,4.790419162,10,20875,,,134.427066,137,101914,111.9167025,156.9374294,,,,,,,,,,,,,144.7729351,120.1682602,169.3776099,,,,7.9,,,,,1,,,,,0.133369923,1215,9110,0.117947179,0.148792668,0.113827434,0.098776242,0.128878625,0.017563118,0.010597441,0.024528794,0.010428101,0.004797447,0.016058755,0.809315137,6464,7987,0.782064159,0.836566115,,,,,,,,,,,,,0.75240951,0.70546566,0.799353359,0.438,,7987,0.399189623,0.476810377,76.41864641,,,74.86203568,77.97525714,,,,,,,,,,,,,75.67889558,73.95440958,77.40338158,,,,447.8385205,431,54146,395.4755521,500.2014889,,,,,,,,,,,,,468.3619579,410.066895,526.6570208,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.113,,,0.096,0.13,0.159,,,0.136,0.181,0.091,,,0.076,0.106,110.8,21,18949,,,0.109,2230,,,,0.036511226,762.1718447,20875,,,30.84766126,19,61593,18.57230719,48.17244423,,,,,,,,,,,,,32.51268898,19.26908004,51.38406565,,,,0.332,,,0.316,0.347,0.089792421,943,10502,0.076686038,0.102898804,0.053872054,160,2970,0.038382692,0.069361416,0.000424008,9,21226,,,2358.444444,0.925,100.825,109,,,,,,,,2.452537684,,,,,,,,,2.481147283,2.568224946,,,,,,,,,2.710037424,0.007712403,,,,,-4560.502,,,,,0.714791773,40558,56741,0.673820557,0.75576299,54682,,,48743.61702,60620.38298,,,,,,,,,,44167,19487.68085,68846.31915,54881,51568.65957,58193.34043,,,,,,0.659883721,908,1376,,,,,,,,0.399290443,,54682,,,4.731861199,3,634,,,,,,,,,,,,,,,,,,,,,,,,,,22.69395602,21,101914,13.22006568,36.33522198,20.60560865,,,,,,,,,,,,,24.46135437,13.98177756,39.72370699,,,,10.79341406,11,101914,5.388033408,19.31239919,,,,,,,,,,,,,11.9737014,5.977228597,21.42425928,,,,15.47867812,22,142131,9.70040517,23.43490469,,,,,,,,,,,,,17.14116529,10.74227703,25.95193024,,,,16.15384615,,1300,,,21,,0.694359577,11818,17020,,,0.457,,,,,1.230990762,,,,,0.847972973,7781,9176,0.831928411,0.864017535,0.125518323,1120,8923,0.108120299,0.142916348,0.802092415,7360,9176,0.788931188,0.815253642,21226,,,,,0.131159898,2784,21226,,,0.319702252,6786,21226,,,0.029021012,616,21226,,,0.013332705,283,21226,,,0.007349477,156,21226,,,0.000659569,14,21226,,,0.048054273,1020,21226,,,0.893197023,18959,21226,,,0.005524587,111,20092,0.001482502,0.009566672,0.459860548,9761,21226,,,1,20654,20654,, -55,003,55003,WI,Ashland County,2024,1,10801.2366,285,43384,8772.46191,12830.0113,0,21461.988,14143.58533,31226.06575,,,,,2,,,,2,,,,2,10012.24633,7777.209752,12247.2829,,,,,2,,0.155,,,0.133,0.182,3.917332733,,,3.188647458,4.792500156,5.441148572,,,4.578920934,6.394783453,0.068361087,78,1141,0.0537177,0.083004474,0,0.09929078,0.04992872,0.148652841,,,,,,,,,,0.062785388,0.04672142,0.078849356,,,,,,,0.196,,,0.161,0.235,0.384,,,0.328,0.442,7.4,0.112848326,0.107,,,0.212,,,0.176,0.254,0.686404193,11001,16027,,,0.251700905,,,0.214202282,0.292754391,0.222222222,2,9,0.058854756,0.422872156,291.8,47,16107,,,13.08258381,48,3669,9.646064547,17.34560812,,,,,,,,,,,,,9.084302326,5.878881485,13.41022227,,,,75,38.75359443,131.0099066,0.082875687,996,12018,0.070960793,0.09479058,0.001738375,28,16107,,,575.25,0.000685828,11,16039,,,1458.090909,0.004052622,65,16039,,,246.7538462,1127,,,,,3700,,,,893,0.47,,,,,0.41,,,,0.47,0.5,,,,,0.39,,,,0.51,0.95079023,10588,11136,0.937948413,0.963632047,0.662162162,2352,3552,0.584518892,0.739805433,0.039194631,292,7450,,,0.169,550,,0.102276596,0.235723404,0.304093567,0.150012359,0.458174776,,,,,,,0.122807018,0,0.270657845,0.095218801,0.048898323,0.141539278,5.18995367,106420,20505,4.128351823,6.251555517,0.200352526,682,3404,0.153412948,0.247292105,12.41696157,20,16107,,,130.4614755,102,78184,105.1429581,155.7799929,266.8607472,167.2402095,404.0303783,,,,,,,,,,123.1028142,97.46165731,153.4228366,,,,5,,,,,1,,,,,0.125674634,815,6485,0.102048995,0.149300273,0.104902724,0.081024905,0.128780542,0.014494988,0.007109538,0.021880439,0.007555898,0.00297182,0.012139977,0.733148661,5558,7581,0.69106905,0.775228272,0.727873184,0.617707167,0.8380392,,,,,,,,,,0.753656246,0.710856631,0.796455861,0.166,,7581,0.139706122,0.192293878,74.8312422,,,73.32870371,76.3337807,,,,,,,,,,,,,75.4083597,73.74452467,77.07219473,,,,475.0227751,285,43384,414.2781624,535.7673878,903.328107,653.7430301,1216.777032,,,,,,,,,,443.4527622,379.5820834,507.3234409,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.116,,,0.1,0.134,0.163,,,0.141,0.186,0.092,,,0.079,0.106,58.5,8,13681,,,0.107,1720,,,,0.112848326,1823.290407,16157,,,42.47727466,20,47084,25.94622289,65.6027056,,,,,,,,,,,,,31.09211038,16.06574714,54.31165967,,,,0.343,,,0.327,0.357,0.095764273,832,8688,0.080274911,0.111253634,0.05059693,178,3518,0.035107568,0.066086292,0.001683397,27,16039,,,594.037037,0.961210762,214.35,223,,,0.121243523,117,965,0.042168917,0.20031813,3.047359415,,,,,,,,,3.158180158,2.926417917,,,,,,,,,3.114598528,0.105202145,,,,,-1522.709333,,,,,0.779372277,43828,56235,0.691481798,0.867262756,56848,,,50073.19149,63622.80851,55714,35244.21277,76183.78723,,,,,,,,,,56551,51154.74468,61947.25532,,,,,,0.55590801,1402,2522,,,,,,,,0.373645511,,56848,,,5.813953488,5,860,,,,,,,,,,,,,,,,,,,,,,,,,,22.85465707,16,78184,12.79157807,37.69528122,20.46454518,,,,,,,,,,,,,21.59244863,11.15713329,37.71766236,,,,16.62744296,13,78184,8.853413091,28.43343385,,,,,,,,,,,,,17.14089818,8.556674615,30.66980165,,,,12.75731039,14,109741,6.974540305,21.40459912,,,,,,,,,,,,,12.19458117,6.087490984,21.81947421,,,,33.57142857,,1400,,,47,,0.727627752,8757,12035,,,0.534,,,,,110.7457894,,,,,0.717937482,4915,6846,0.687413496,0.748461467,0.110530361,719,6505,0.08421432,0.136846402,0.782208589,5355,6846,0.756936907,0.807480271,16039,,,,,0.208242409,3340,16039,,,0.217968701,3496,16039,,,0.005736019,92,16039,,,0.116403766,1867,16039,,,0.007107675,114,16039,,,0.000374088,6,16039,,,0.034852547,559,16039,,,0.816073321,13089,16039,,,0.002702346,41,15172,0,0.007141999,0.493734023,7919,16039,,,0.549198228,8802,16027,, -55,005,55005,WI,Barron County,2024,1,7362.297382,653,123850,6404.023263,8320.571501,0,,,,2,,,,2,,,,2,,,,2,7515.985723,6490.630753,8541.340694,,,,,2,,0.143,,,0.119,0.171,3.560291687,,,2.794246655,4.450494282,4.64775043,,,3.729628234,5.729191682,0.060120846,199,3310,0.052022606,0.068219086,0,,,,,,,,,,,,,0.057745505,0.049243915,0.066247094,,,,,,,0.179,,,0.139,0.225,0.36,,,0.285,0.437,8.5,0.060000062,0.083,,,0.221,,,0.177,0.272,0.759457087,35475,46711,,,0.219987929,,,0.178652719,0.264110629,0.2,7,35,0.115443134,0.296296308,250.4,117,46719,,,13.70478544,122,8902,11.27287041,16.13670047,,,,,,,,,,,,,13.34349981,10.79120301,15.89579661,,,,,,,0.083310075,2985,35830,0.072586671,0.09403348,0.001006015,47,46719,,,994.0212766,0.000725829,34,46843,,,1377.735294,0.001046047,49,46843,,,955.9795918,1999,,,,,,,,,1934,0.53,,,,,,,,,0.54,0.36,,,,,0.31,,0.28,0.17,0.36,0.906022502,30118,33242,0.896927243,0.91511776,0.62239635,6275,10082,0.575992543,0.668800156,0.033455836,792,23673,,,0.154,1479,,0.108723404,0.199276596,0.708333333,0.329679865,1,,,,0.044164038,0,0.155495469,0.228571429,0.116178317,0.34096454,0.166131526,0.129959921,0.20230313,3.937723238,111347,28277,3.675487385,4.199959091,0.257160084,2559,9951,0.203254243,0.311065926,16.48151716,77,46719,,,98.91501222,225,227468,85.99011729,111.8399072,,,,,,,,,,,,,103.2025943,89.5026614,116.9025271,,,,6.8,,,,,0,,,,,0.118310598,2255,19060,0.10108589,0.135535307,0.092661035,0.077690272,0.107631798,0.019412382,0.011212181,0.027612583,0.009443862,0.005422067,0.013465657,0.769680612,17110,22230,0.751648928,0.787712296,,,,,,,,,,0.578352181,0.429175819,0.727528543,0.78012959,0.771712547,0.788546633,0.219,,22230,0.200198615,0.237801385,77.76913001,,,76.97076591,78.56749411,,,,,,,,,,,,,77.58660901,76.74601828,78.42719974,,,,350.9803802,653,123850,321.4586569,380.5021034,,,,,,,,,,,,,357.1447626,326.3311414,387.9583839,,,,42.25054574,18,42603,25.0403511,66.77407757,,,,,,,,,,,,,45.78507945,26.67149601,73.30634747,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.108,,,0.091,0.127,0.156,,,0.132,0.183,0.085,,,0.071,0.1,70.4,28,39782,,,0.083,3870,,,,0.060000062,2752.202831,45870,,,8.026092096,11,137053,4.006596256,14.3608958,,,,,,,,,,,,,7.875814162,3.776759021,14.48390266,,,,0.329,,,0.311,0.345,0.092563382,2406,25993,0.079457,0.105669765,0.059625048,617,10348,0.042944197,0.076305899,0.00143031,67,46843,,,699.1492537,0.9145,585.28,640,,,0.048597194,97,1996,0.024518171,0.072676218,2.880711222,,,,,,,,2.735280027,2.964040052,2.848498449,,,,,,,,2.845488313,2.944268121,0.10317134,,,,,793.8629857,,,,,0.781756231,40151,51360,0.736563071,0.82694939,62344,,,56317.44681,68370.55319,78083,48837.89362,107328.1064,40938,21402.34043,60473.65957,32015,22169.7234,41860.2766,61429,47519.55319,75338.44681,60486,57422.68085,63549.31915,,,,,,0.428571429,3186,7434,,,71.50418373,,,,,0.270162325,,62344,,,6.538618717,16,2447,,,3.768335307,12,318443,1.947153842,6.582523418,,,,,,,,,,,,,4.049498368,2.092434899,7.073658704,,,,22.90324223,52,227468,16.76805185,30.54971554,22.86035838,,,,,,,,,,,,,22.94031981,16.53336472,31.0086481,,,,16.26602423,37,227468,11.45278218,22.42057175,,,,,,,,,,,,,17.51603664,12.33290627,24.1435492,,,,14.44528534,46,318443,10.57576439,19.26798633,,,,,,,,,,,,,14.51070249,10.50146734,19.54582102,,,,6.153846154,,3900,,,24,,0.724792679,25346,34970,,,0.67,,,,,75.28528318,,,,,0.752982237,14455,19197,0.733056375,0.772908099,0.100720577,1887,18735,0.085852232,0.115588921,0.800906392,15375,19197,0.782831806,0.818980977,46843,,,,,0.208654441,9774,46843,,,0.23691907,11098,46843,,,0.017355848,813,46843,,,0.012488526,585,46843,,,0.006895374,323,46843,,,0.000213479,10,46843,,,0.032363427,1516,46843,,,0.919603783,43077,46843,,,0.006552044,290,44261,0.002415473,0.010688614,0.496253442,23246,46843,,,0.78257798,36555,46711,, -55,007,55007,WI,Bayfield County,2024,1,7538.638939,241,41619,5710.079625,9367.198253,0,20378.60864,12614.67994,31150.86804,1,,,,2,,,,2,,,,2,6409.177136,4580.099369,8238.254904,,,,,2,,0.126,,,0.103,0.15,3.21919929,,,2.498402823,4.027265831,4.797092475,,,3.932737271,5.743567074,0.049939099,41,821,0.035039294,0.064838903,0,,,,,,,,,,,,,0.054945055,0.037248889,0.072641221,,,,,,,0.155,,,0.12,0.192,0.362,,,0.301,0.428,7.9,0.102763418,0.091,,,0.189,,,0.151,0.233,0.659432799,10696,16220,,,0.232004088,,,0.193061948,0.274615498,0.5,7,14,0.367701684,0.614002043,128.7,21,16320,,,11.02796377,28,2539,7.328001834,15.93847812,,,,,,,,,,,,,8.103727715,4.535594885,13.36586649,,,,,,,0.088966694,991,11139,0.0770518,0.100881587,0.000428922,7,16320,,,2331.428571,0.000421484,7,16608,,,2372.571429,0.002227842,37,16608,,,448.8648649,1089,,,,,,,,,1115,0.52,,,,,0.25,,,,0.54,0.5,,,,,0.61,,,,0.49,0.958150658,12020,12545,0.948968213,0.967333102,0.737174982,2098,2846,0.677258957,0.797091008,0.047560643,349,7338,,,0.174,464,,0.107276596,0.240723404,0.422839506,0.249023932,0.596655081,,,,,,,0.262195122,0.076165126,0.448225118,0.118537859,0.084905361,0.152170357,3.909693096,117455,30042,3.595595043,4.22379115,0.190493873,513,2693,0.147137133,0.233850613,14.70588235,24,16320,,,97.84991128,75,76648,76.96516243,122.6557111,192.4398625,105.2086636,322.88139,,,,,,,,,,94.36589214,72.18243025,121.2169362,,,,5.4,,,,,0,,,,,0.125175809,890,7110,0.107607949,0.142743669,0.086486487,0.069269725,0.103703248,0.021097046,0.013017398,0.029176695,0.020393812,0.014376702,0.026410922,0.722777702,5277,7301,0.700215679,0.745339725,0.670498084,0.599157144,0.741839025,,,,,,,,,,0.673567646,0.634852645,0.712282647,0.3,,7301,0.272987068,0.327012932,79.52756958,,,77.88929029,81.16584887,,,,,,,,,,,,,80.45169621,78.75942351,82.14396891,,,,334.1402245,241,41619,282.3891843,385.8912646,866.4599931,616.1377569,1184.479334,,,,,,,,,,296.9861581,243.9674082,350.0049079,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.096,,,0.08,0.112,0.146,,,0.124,0.171,0.08,,,0.067,0.094,41.7,6,14395,,,0.091,1460,,,,0.102763418,1542.889953,15014,,,,,,,,,,,,,,,,,,,,,,,,,,0.305,,,0.289,0.32,0.097385775,827,8492,0.083087903,0.111683647,0.06420373,179,2788,0.045139901,0.08326756,6.02119E-05,1,16608,,,16608,,,,,,,,,,,3.506283046,,,,,,,,,3.658739289,3.41210231,,,,,,,,,3.525487543,0.277499462,,,,,5940.79175,,,,,0.844155163,48246,57153,0.796302473,0.892007852,63680,,,60010.21277,67349.78723,58125,44408.57447,71841.42553,108304,92570.38298,124037.617,,,,,,,68403,64971.51064,71834.48936,,,,,,0.475922452,761,1599,,,,,,,,0.313489322,,63680,,,7.122507123,5,702,,,,,,,,,,,,,,,,,,,,,,,,,,37.88755574,26,76648,23.45299416,57.91515358,33.92130258,,,,,,,,,,,,,32.63358529,18.26476996,53.82413617,,,,19.56998226,15,76648,10.95317051,32.27770962,,,,,,,,,,,,,17.01680022,8.49472536,30.44775612,,,,26.28713057,28,106516,17.46760736,37.99222271,,,,,,,,,,,,,26.6693336,17.08754526,39.6818544,,,,16,,1000,,,16,,0.876359243,10880,12415,,,0.407,,,,,2.330525055,,,,,0.828106391,6258,7557,0.81882135,0.837391433,0.089210203,654,7331,0.074813612,0.103606795,0.874288739,6607,7557,0.864205627,0.884371851,16608,,,,,0.164318401,2729,16608,,,0.308646436,5126,16608,,,0.005238439,87,16608,,,0.097964836,1627,16608,,,0.005118015,85,16608,,,0.000361272,6,16608,,,0.024626686,409,16608,,,0.848988439,14100,16608,,,0.001544998,24,15534,0,0.005528336,0.490366089,8144,16608,,,1,16220,16220,, -55,009,55009,WI,Brown County,2024,1,6201.373743,2864,749594,5853.633422,6549.114064,0,17487.92491,14047.59201,20928.25781,,5381.777425,3878.711794,7274.599644,,16121.24563,12889.72768,19352.76359,,6382.018968,5230.871474,7533.166461,,5564.707417,5193.726983,5935.68785,,,,,2,,0.125,,,0.103,0.15,3.192445811,,,2.502931071,3.949077438,4.10819839,,,3.313424587,4.951628843,0.069607262,1526,21923,0.066238529,0.072975994,0,0.091022444,0.071114807,0.110930081,0.073033708,0.058586275,0.087481141,0.126072041,0.107019452,0.14512463,0.067751578,0.058774681,0.076728474,0.064236453,0.060341957,0.068130949,,,,0.062921348,0.040360101,0.085482595,0.141,,,0.109,0.178,0.359,,,0.302,0.421,8.8,0.057230132,0.072,,,0.194,,,0.157,0.235,0.911341817,244914,268740,,,0.24675602,,,0.206516704,0.290076898,0.364864865,27,74,0.306219595,0.422857782,475.5,1282,269591,,,14.11528562,872,61777,13.17839801,15.05217324,39.48967193,30.4772951,50.33282856,12.57635645,8.759893066,17.4906674,49.46236559,39.87364772,60.66120054,33.91854771,29.9736645,37.86343092,7.924604329,7.099075912,8.750132747,,,,17.28395062,12.45675133,23.36288016,0.069811047,15414,220796,0.061470622,0.078151473,0.000693643,187,269591,,,1441.663102,0.000818409,221,270036,,,1221.882353,0.002477448,669,270036,,,403.6412556,1786,,,,,3599,2255,12568,,1698,0.52,,,,,0.24,0.23,0.32,0.28,0.53,0.57,,,,,0.5,0.45,0.33,0.29,0.58,0.928740408,167633,180495,,,0.692595957,48792,70448,0.667157429,0.718034485,0.026112508,3688,141235,,,0.121,7313,,0.094787234,0.147212766,0.332124728,0.218405703,0.445843753,0.142977292,0.062124228,0.223830356,0.286530224,0.187560089,0.385500359,0.257052084,0.200204631,0.313899537,0.053178014,0.042070759,0.064285268,3.90140056,132316,33915,3.732830146,4.069970974,0.188431369,11747,62341,0.167250949,0.20961179,8.160509809,220,269591,,,76.9536911,1019,1324173,72.22872785,81.67865435,155.8846454,116.4221092,204.421973,,,,82.45155971,55.6297211,117.7047283,42.2643761,31.46860406,55.56984924,81.95014982,76.50454406,87.39575558,,,,7.3,,,,,0,,,,,0.116476469,12350,106030,0.107008341,0.125944597,0.093641509,0.084724989,0.102558028,0.019522777,0.015295796,0.023749757,0.009101198,0.00526333,0.012939065,0.799929634,111407,139271,0.788042204,0.811817063,0.719190459,0.642103488,0.79627743,0.709252885,0.63988848,0.77861729,0.701312155,0.613622784,0.789001525,0.714559562,0.664193615,0.764925508,0.832288892,0.819929003,0.844648781,0.155,,139271,0.143509693,0.166490307,78.97238887,,,78.64716842,79.29760932,68.6364783,66.3719021,70.9010545,77.65449766,75.55415212,79.7548432,68.99937698,65.63328319,72.36547077,84.12810016,79.56487874,88.69132159,79.53190503,79.18806313,79.87574694,,,,305.8444329,2864,749594,294.264574,317.4242918,795.4996291,668.1885108,922.8107475,345.497716,258.0342197,453.0742883,815.5870755,642.8718094,988.3023416,303.1888067,248.2220651,358.1555484,284.8276798,272.7998324,296.8555273,,,,44.6685879,124,277600,36.80632698,52.53084881,,,,,,,208.560029,132.2091679,312.9424456,40.61096947,24.0686343,64.18284021,35.62920106,27.61214144,45.24782589,,,,6.263141413,140,22353,5.225650573,7.300632253,,,,,,,19.55782313,12.39798217,29.3463375,,,,4.862132941,3.830807746,6.085684407,,,,,,,0.095,,,0.08,0.11,0.141,,,0.121,0.164,0.08,,,0.068,0.093,109.9,248,225581,,,0.072,19140,,,,0.057230132,14193.47328,248007,,,17.77793358,142,798743,14.85382713,20.70204003,94.11531603,56.66356828,146.9727243,,,,,,,14.7117828,7.344068968,26.32344324,15.70221071,12.62457741,18.77984401,,,,0.314,,,0.298,0.328,0.079148685,12581,158954,0.06961677,0.088680599,0.047543533,3088,64951,0.035628639,0.059458426,0.001870121,505,270036,,,534.7247525,0.914937985,2950.675,3225,,,0.053775517,814,15137,0.0352626,0.072288434,2.956009963,,,,,,2.719800772,2.186879019,2.253332657,3.224432687,2.872308696,,,,,,2.663276331,1.831316453,2.160758613,3.203315502,0.168509382,,,,,2909.25975,,,,,0.793291615,47538,59925,0.759595883,0.826987347,72398,,,67555.78723,77240.21277,47294,34877.48936,59710.51064,90684,74308.17021,107059.8298,38006,16583.02128,59428.97872,61585,54971.04255,68198.95745,75785,73571.21277,77998.78723,,,,,,0.383215539,15941,41598,,,59.88445077,,,,,0.361902263,,72398,,,5.76771295,95,16471,,,1.953027518,36,1843292,1.367876463,2.703813313,,,,,,,22.47696112,11.22041801,40.21749221,,,,0.942517856,0.515283282,1.581384809,,,,14.68364992,202,1324173,12.61018963,16.75711022,15.25480432,,,,,,,,,,8.612744262,3.938295115,16.34967143,15.1315106,12.78612979,17.47689141,,,,8.835703492,117,1324173,7.234655781,10.4367512,,,,,,,,,,,,,9.042775152,7.324676906,11.04277619,,,,7.703608544,142,1843292,6.436522506,8.970694581,21.65486477,10.38434937,39.82406731,,,,,,,,,,8.011401773,6.57196994,9.450833606,,,,8.032128514,,24900,,,200,,0.749834691,144017,192065,,,0.778,,,,,225.2892041,,,,,0.647347291,70623,109096,0.632686099,0.662008482,0.097336535,10419,107041,0.088367016,0.106306053,0.895917357,97741,109096,0.888281269,0.903553446,270036,,,,,0.22690308,61272,270036,,,0.165396466,44663,270036,,,0.02921092,7888,270036,,,0.034980521,9446,270036,,,0.036706217,9912,270036,,,0.000962835,260,270036,,,0.098675732,26646,270036,,,0.789354012,213154,270036,,,0.022897256,5780,252432,,,0.49998889,135015,270036,,,0.165900127,44584,268740,, -55,011,55011,WI,Buffalo County,2024,1,4430.852014,135,35579,3038.134272,5823.569755,0,,,,2,,,,2,,,,2,,,,2,4645.31638,3157.365405,6133.267355,,,,,2,,0.129,,,0.106,0.154,3.328370943,,,2.584022605,4.115146444,4.690123961,,,3.732839699,5.701023954,0.054932735,49,892,0.039980001,0.06988547,0,,,,,,,,,,,,,0.051825677,0.036914264,0.066737091,,,,,,,0.163,,,0.127,0.2,0.371,,,0.289,0.451,8.8,0.054007113,0.073,,,0.206,,,0.163,0.25,0.652023729,8683,13317,,,0.225827243,,,0.181593152,0.271614361,0.384615385,5,13,0.234541684,0.524881883,187.9,25,13302,,,7.2769054,19,2611,4.381172411,11.36378919,,,,,,,,,,,,,7.033512619,4.097280294,11.26133505,,,,,,,0.071988247,735,10210,0.061264843,0.082711651,0.00022553,3,13302,,,4434,0.001194832,16,13391,,,836.9375,0.000074677,1,13391,,,13391,2255,,,,,,,,,2211,0.54,,,,,,,,,0.54,0.4,,,,,,,,,0.4,0.918744229,8955,9747,0.905670141,0.931818317,0.613802719,1761,2869,0.553694237,0.6739112,0.038492773,237,6157,,,0.108,279,,0.067489362,0.148510638,,,,,,,,,,0.166666667,0,0.35236144,0.081171548,0.052848834,0.109494262,3.691277597,112189,30393,3.243853331,4.138701863,0.151219512,403,2665,0.107301868,0.195137156,9.02119982,12,13302,,,57.87565872,38,65658,40.95626069,79.43886338,,,,,,,,,,,,,60.71936468,42.96863628,83.342072,,,,7.9,,,,,0,,,,,0.106956522,615,5750,0.084639559,0.129273485,0.091688539,0.068570871,0.114806207,0.009217391,0.003679717,0.014755065,0.015652174,0.004111836,0.027192512,0.794325199,5403,6802,0.771152001,0.817498396,,,,,,,,,,,,,0.697933982,0.650468759,0.745399206,0.37,,6802,0.335058673,0.404941327,81.40957171,,,80.05565813,82.76348529,,,,,,,,,,,,,81.19907681,79.79795757,82.60019605,,,,235.6208054,135,35579,191.8512033,279.3904075,,,,,,,,,,,,,240.5703684,195.0280833,286.1126535,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.1,,,0.084,0.116,0.149,,,0.125,0.171,0.077,,,0.064,0.091,,,,,,0.073,970,,,,0.054007113,733.7946496,13587,,,,,,,,,,,,,,,,,,,,,,,,,,0.313,,,0.293,0.33,0.077767491,588,7561,0.064661108,0.090873874,0.056968828,159,2791,0.040287977,0.073649679,0.000224031,3,13391,,,4463.666667,,,,,,,,,,,3.051784303,,,,,,,,,3.086472965,2.974856122,,,,,,,,,3.03132819,0.051816076,,,,,1344.7416,,,,,0.80648297,43142,53494,0.759769229,0.853196711,63969,,,57685.08511,70252.91489,,,,,,,,,,81563,58349.21277,104776.7872,64223,60232.70213,68213.29787,,,,,,0.3329718,614,1844,,,,,,,,0.368631681,,63969,,,4.322766571,3,694,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.87559408,10,91949,5.215270091,20.00060473,,,,,,,,,,,,,11.38627953,5.460163616,20.93977346,,,,5.454545455,,1100,,,6,,0.756997579,7816,10325,,,0.687,,,,,1.607456062,,,,,0.776175214,4359,5616,0.756561105,0.795789322,0.099207081,538,5423,0.0786012,0.119812962,0.858262108,4820,5616,0.836762417,0.8797618,13391,,,,,0.196773953,2635,13391,,,0.238891793,3199,13391,,,0.005675454,76,13391,,,0.004779329,64,13391,,,0.005078038,68,13391,,,0.000149354,2,13391,,,0.028526622,382,13391,,,0.947950116,12694,13391,,,0.004810346,61,12681,0,0.010539506,0.490777388,6572,13391,,,1,13317,13317,, -55,013,55013,WI,Burnett County,2024,1,8635.658488,293,42155,6671.54317,10599.77381,0,,,,2,,,,2,,,,2,,,,2,8070.504356,6049.192393,10091.81632,,,,,2,,0.145,,,0.12,0.171,3.575878578,,,2.77305625,4.492445254,4.96257203,,,3.940010847,6.083636665,0.056320401,45,799,0.040334841,0.07230596,0,,,,,,,,,,,,,0.058394161,0.040833936,0.075954385,,,,,,,0.182,,,0.143,0.221,0.36,,,0.287,0.442,8.6,0.028966134,0.094,,,0.222,,,0.18,0.267,0.647525112,10701,16526,,,0.195022396,,,0.157099691,0.238357243,0.535714286,15,28,0.451224223,0.611355729,209,35,16744,,,18.14516129,45,2480,13.23520516,24.27965343,,,,,,,,,,,,,19.13640824,13.60785696,26.16010003,,,,,,,0.080643751,922,11433,0.068728857,0.092558644,0.000179169,3,16744,,,5581.333333,0.000352195,6,17036,,,2839.333333,0.001291383,22,17036,,,774.3636364,2159,,,,,4783,,,,1984,0.47,,,,,0.28,,,,0.47,0.24,,,,,0.36,,,,0.24,0.927002181,11899,12836,0.915025019,0.938979344,0.593368237,1700,2865,0.545382338,0.641354137,0.046241967,331,7158,,,0.177,466,,0.110276596,0.243723404,0.37007874,0.21969716,0.52046032,,,,0.173913044,0,0.923442521,0.272727273,0.032971052,0.512483494,0.113452915,0.085370457,0.141535372,4.459239339,116074,26030,4.083830856,4.834647822,0.213144517,587,2754,0.158616273,0.267672761,16.12517917,27,16744,,,90.4931238,71,78459,70.67588047,114.1447624,,,,,,,,,,,,,86.14115853,65.89116073,110.6519218,,,,5.7,,,,,0,,,,,0.11878453,860,7240,0.101578361,0.1359907,0.100905923,0.083604786,0.118207061,0.020580111,0.014158979,0.027001242,0.004005525,0.002010018,0.006001032,0.773676471,5261,6800,0.750852059,0.796500882,0.751412429,0.644548451,0.858276408,,,,,,,,,,0.764373824,0.731001953,0.797745695,0.399,,6800,0.362256508,0.435743492,78.83098448,,,77.15958324,80.50238572,,,,,,,,,,,,,79.1569811,77.4598738,80.85408841,,,,390.67558,293,42155,335.1932867,446.1578733,,,,,,,,,,,,,378.1783003,321.3979266,434.9586741,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.108,,,0.092,0.125,0.157,,,0.135,0.182,0.085,,,0.072,0.1,47,7,14904,,,0.094,1550,,,,0.028966134,447.7295387,15457,,,,,,,,,,,,,,,,,,,,,,,,,,0.312,,,0.295,0.328,0.085795455,755,8800,0.072689072,0.098901838,0.065295815,181,2772,0.046231986,0.084359645,0.000704391,12,17036,,,1419.666667,0.830739645,280.79,338,,,,,,,,3.007079772,,,,,,,,,3.108631465,2.974858863,,,,,,,,,3.074748082,0.09378988,,,,,467.1637667,,,,,0.832774039,45910,55129,0.762135371,0.903412707,57438,,,51269.65957,63606.34043,49688,25787.91489,73588.08511,55938,12455.78723,99420.21277,,,,38879,38042.57447,39715.42553,60826,57659.02128,63992.97872,,,,,,0.551100071,1553,2818,,,,,,,,0.260663672,,57438,,,8.941877794,6,671,,,,,,,,,,,,,,,,,,,,,,,,,,17.59074837,11,78459,8.043610289,33.39271983,14.02006143,,,,,,,,,,,,,19.94461195,9.119946605,37.86108611,,,,,,,,,,,,,,,,,,,,,,,,,,,27.56567522,30,108831,18.59844532,39.35171541,,,,,,,,,,,,,24.3999146,15.63348569,36.30513882,,,,10,,1100,,,11,,0.804522015,10141,12605,,,0.432,,,,,6.811870033,,,,,0.846759193,5918,6989,0.831276734,0.862241653,0.102140946,687,6726,0.085965638,0.118316253,0.826298469,5775,6989,0.806274847,0.846322091,17036,,,,,0.158957502,2708,17036,,,0.320673867,5463,17036,,,0.008041794,137,17036,,,0.045609298,777,17036,,,0.005048133,86,17036,,,0.000645692,11,17036,,,0.022012209,375,17036,,,0.902148392,15369,17036,,,0.003073835,49,15941,0,0.006833372,0.486146983,8282,17036,,,1,16526,16526,, -55,015,55015,WI,Calumet County,2024,1,4756.97709,463,143256,4033.467557,5480.486623,0,,,,2,,,,2,,,,2,,,,2,4579.753373,3820.329113,5339.177634,,,,,2,,0.115,,,0.095,0.138,3.047583214,,,2.33866416,3.842304273,4.541276981,,,3.632972415,5.50734979,0.061787643,206,3334,0.053614771,0.069960514,0,,,,,,,,,,0.05923345,0.031922326,0.086544573,0.061862917,0.053010471,0.070715363,,,,,,,0.139,,,0.108,0.176,0.34,,,0.268,0.416,9.6,0.036404443,0.045,,,0.189,,,0.151,0.232,0.842530796,44184,52442,,,0.245357285,,,0.202437676,0.29399762,0.315789474,6,19,0.192486042,0.440144871,228.4,120,52539,,,7.289879931,85,11660,5.82289717,9.014049427,,,,,,,,,,26.46720368,16.77793675,39.7138008,5.211465224,3.892171497,6.834143289,,,,,,,0.042869202,1879,43831,0.036911755,0.048826649,0.000152268,8,52539,,,6567.375,0.000265564,14,52718,,,3765.571429,0.000303502,16,52718,,,3294.875,2038,,,,,,,,,2066,0.52,,,,,,,,,0.52,0.51,,,,,,,,,0.51,0.948335531,34527,36408,0.939632977,0.957038085,0.734047545,9387,12788,0.684084624,0.784010465,0.023273574,640,27499,,,0.057,654,,0.035553192,0.078446809,,,,0.168421053,0,0.370324226,0.246153846,0,0.542139757,0.153998026,0.047548571,0.260447481,0.051053816,0.033394945,0.068712687,3.685848532,145908,39586,3.29702318,4.074673885,0.155291956,1859,11971,0.117653975,0.192929936,7.232722359,38,52539,,,52.55608287,133,253063,43.6239898,61.48817594,,,,,,,,,,,,,53.70334795,44.21250303,63.19419286,,,,8.5,,,,,0,,,,,0.088220551,1760,19950,0.072771645,0.103669458,0.076250632,0.060630383,0.091870881,0.010526316,0.005863335,0.015189297,0.008270677,0.002493751,0.014047603,0.808643054,23128,28601,0.787319792,0.829966317,,,,,,,,,,,,,0.744265326,0.710434876,0.778095776,0.272,,28601,0.247933095,0.296066905,80.95783295,,,80.21257431,81.70309158,,,,,,,,,,82.84571487,76.57526816,89.11616158,80.98634218,80.2175662,81.75511815,,,,243.5410181,463,143256,220.3944554,266.6875807,,,,,,,,,,,,,239.1920206,215.528075,262.8559661,,,,29.07540221,15,51590,16.2732819,47.9554543,,,,,,,,,,,,,32.36320766,17.69326678,54.2999633,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.089,,,0.075,0.105,0.14,,,0.119,0.163,0.072,,,0.06,0.086,42.7,19,44546,,,0.045,2330,,,,0.036404443,1782.761978,48971,,,11.77725289,18,152837,6.979946466,18.61313705,,,,,,,,,,,,,10.87027415,6.084009923,17.92886411,,,,0.299,,,0.282,0.316,0.047592263,1523,32001,0.039251837,0.055932688,0.031305044,391,12490,0.021773129,0.040836959,0.000265564,14,52718,,,3765.571429,0.954609375,305.475,320,,,,,,,,3.204506053,,,,,,3.010987262,,2.564268547,3.321477926,3.337268812,,,,,,3.001495276,,2.536484889,3.505213066,0.10353823,,,,,66.3592,,,,,0.820499343,53074,64685,0.76133152,0.879667166,85589,,,75899.80851,95278.19149,19361,2838.617021,35883.38298,,,,44830,35800.89362,53859.10638,63427,47949.55319,78904.44681,86021,83229.34043,88812.65957,,,,,,0.265563205,1813,6827,,,57.50740169,,,,,0.276974845,,85589,,,6.229388054,17,2729,,,,,,,,,,,,,,,,,,,,,,,,,,8.695030235,23,253063,5.382360759,13.29127735,9.08864591,,,,,,,,,,,,,9.058641333,5.533253463,13.99033684,,,,6.322536285,16,253063,3.613875776,10.26740282,,,,,,,,,,,,,6.985801359,3.992989073,11.34450375,,,,7.378440198,26,352378,4.819842106,10.81112444,,,,,,,,,,,,,7.197666704,4.562703267,10.80003408,,,,7,,5000,,,35,,0.816611384,30774,37685,,,0.825,,,,,96.32493147,,,,,0.81411742,16862,20712,0.800469561,0.827765279,0.081465496,1661,20389,0.064665505,0.098265487,0.908217459,18811,20712,0.892167643,0.924267274,52718,,,,,0.219204067,11556,52718,,,0.174475511,9198,52718,,,0.009237832,487,52718,,,0.006601161,348,52718,,,0.025607952,1350,52718,,,0.000625972,33,52718,,,0.049584582,2614,52718,,,0.896828408,47279,52718,,,0.009006111,448,49744,0.004603511,0.013408711,0.491464016,25909,52718,,,0.526295717,27600,52442,, -55,017,55017,WI,Chippewa County,2024,1,6257.691445,822,181622,5528.933799,6986.449091,0,,,,2,,,,2,,,,2,,,,2,6352.220409,5586.4935,7117.947317,,,,,2,,0.136,,,0.111,0.163,3.340826659,,,2.606625981,4.185002047,4.693665623,,,3.784596537,5.692467146,0.062207073,292,4694,0.055297394,0.069116752,0,,,,,,,,,,,,,0.061985361,0.054837677,0.069133046,,,,,,,0.166,,,0.129,0.206,0.34,,,0.276,0.413,8.7,0.060795303,0.073,,,0.197,,,0.158,0.239,0.585954116,38847,66297,,,0.241243454,,,0.199575586,0.286728907,0.276595745,13,47,0.200439744,0.355686128,215.4,144,66865,,,9.473520733,122,12878,7.792443889,11.15459758,,,,,,,,,,,,,9.13514898,7.404217737,10.86608022,,,,,,,0.06381305,3326,52121,0.055472625,0.072153476,0.000717864,48,66865,,,1393.020833,0.000568803,38,66807,,,1758.078947,0.000943015,63,66807,,,1060.428571,2946,,,,,,,,,2936,0.57,,,,,,,,,0.57,0.52,,,,,,,,,0.52,0.926927076,43687,47131,0.918023213,0.935830938,0.646480487,10718,16579,0.603869963,0.689091011,0.033021955,1110,33614,,,0.132,1836,,0.091489362,0.172510638,,,,,,,0.288,0.099130229,0.476869771,0.16507177,0,0.389970589,0.131001263,0.105727411,0.156275115,4.068068356,127119,31248,3.676557048,4.459579665,0.161589404,2318,14345,0.126708909,0.196469899,10.7679653,72,66865,,,74.95188274,243,324208,65.52787832,84.37588716,,,,,,,,,,,,,78.08545063,68.12290804,88.04799321,,,,7.8,,,,,0,,,,,0.109234018,2845,26045,0.094002792,0.124465244,0.092173913,0.076846297,0.107501529,0.012862354,0.007934874,0.017789833,0.00883087,0.004382729,0.01327901,0.781049464,25438,32569,0.756753675,0.805345253,,,,,,,,,,,,,0.777897729,0.751649971,0.804145487,0.268,,32569,0.245299079,0.290700921,78.81288293,,,78.15528561,79.47048025,,,,,,,,,,,,,78.65233134,77.97625206,79.32841061,,,,318.977802,822,181622,295.9242036,342.0314004,,,,,,,,,,,,,322.9904941,299.0900303,346.8909578,,,,51.77239561,32,61809,35.41228027,73.08717514,,,,,,,,,,,,,51.88763643,34.74996446,74.5193012,,,,5.279831045,25,4735,3.416828268,7.794072164,,,,,,,,,,,,,5.66379701,3.665310795,8.360881671,,,,,,,0.1,,,0.085,0.118,0.149,,,0.129,0.173,0.08,,,0.068,0.096,54.4,31,56940,,,0.073,4840,,,,0.060795303,3794.538832,62415,,,13.75726078,27,196260,9.066121539,20.01609215,,,,,,,,,,,,,13.69195297,8.860710036,20.21202356,,,,0.315,,,0.297,0.331,0.071050962,2688,37832,0.060327558,0.081774366,0.046114887,692,15006,0.033008504,0.05922127,0.000673582,45,66807,,,1484.6,0.942425197,598.44,635,,,0.047135843,144,3055,0.018859928,0.075411758,3.124820659,,,,,,,,,3.139959745,3.223626362,,,,,,,,,3.239323927,0.050851152,,,,,1101.258055,,,,,0.764192735,44852,58692,0.7217931,0.80659237,74425,,,69094.2766,79755.7234,86688,52188.42553,121187.5745,107065,90394.87234,123735.1277,,,,111111,80509.97872,141712.0213,69134,65893.14894,72374.85106,,,,,,0.396298,3447,8698,,,70.4307647,,,,,0.335277125,,74425,,,7.254464286,26,3584,,,,,,,,,,,,,,,,,,,,,,,,,,19.15019728,63,324208,14.54154767,24.75607076,19.4319696,,,,,,,,,,,,,20.63199237,15.62646954,26.73113921,,,,12.33775848,40,324208,8.81427554,16.80052527,,,,,,,,,,,,,12.24221048,8.619645958,16.87427453,,,,10.63386709,48,451388,7.840574145,14.09896501,,,,,,,,,,,,,11.38657665,8.395562752,15.09694868,,,,14.57627119,,5900,,,86,,0.723753902,35938,49655,,,0.762,,,,,63.62554739,,,,,0.73801565,19429,26326,0.715119091,0.760912209,0.103343819,2661,25749,0.086786875,0.119900764,0.876092076,23064,26326,0.861074852,0.891109301,66807,,,,,0.212462766,14194,66807,,,0.197254779,13178,66807,,,0.015911506,1063,66807,,,0.006631042,443,66807,,,0.014908617,996,66807,,,0.000658614,44,66807,,,0.019578787,1308,66807,,,0.930426452,62159,66807,,,0.006168019,387,62743,0.003383608,0.00895243,0.479500651,32034,66807,,,0.625216827,41450,66297,, -55,019,55019,WI,Clark County,2024,1,7144.396127,460,96542,6120.486707,8168.305547,0,,,,2,,,,2,,,,2,,,,2,7038.350766,5980.779762,8095.921771,,,,,2,,0.164,,,0.137,0.194,3.748273495,,,2.937463919,4.65074836,4.87188909,,,3.921763814,5.943994371,0.049004975,197,4020,0.042331497,0.055678453,0,,,,,,,,,,0.042735043,0.021575286,0.063894799,0.048766972,0.041739987,0.055793956,,,,,,,0.196,,,0.156,0.237,0.371,,,0.299,0.448,8.6,0.068501286,0.072,,,0.248,,,0.199,0.297,0.34934649,12108,34659,,,0.227579337,,,0.185816356,0.275326683,0.294117647,10,34,0.203660539,0.387070928,161.2,56,34746,,,12.81469721,113,8818,10.45190681,15.17748762,,,,,,,,,,76.22504537,54.93630804,103.0341176,8.802816901,6.862227629,11.12182958,,,,,,,0.166578679,4733,28413,0.14632336,0.186833998,0.000201462,7,34746,,,4963.714286,0.000432389,15,34691,,,2312.733333,0.000490041,17,34691,,,2040.647059,3965,,,,,,,,,3958,0.49,,,,,,,,,0.49,0.27,,,,,,,,,0.27,0.821870797,17722,21563,0.80928589,0.834455705,0.462059238,3276,7090,0.431895277,0.4922232,0.026431467,463,17517,,,0.164,1642,,0.109191489,0.218808511,,,,,,,,,,0.220603538,0.122408964,0.318798112,0.17111442,0.141603699,0.200625141,3.624455979,112427,31019,3.378482989,3.870428969,0.12739726,1302,10220,0.104355508,0.150439013,11.22431359,39,34746,,,84.08781994,146,173628,70.44787125,97.72776863,,,,,,,,,,,,,89.154343,74.54164003,103.767046,,,,7.6,,,,,1,,,,,0.137824235,1780,12915,0.1257907,0.149857771,0.084489478,0.074251787,0.094727169,0.035617499,0.028515623,0.042719375,0.030971738,0.024324197,0.037619279,0.706422599,11153,15788,0.684906338,0.727938861,,,,,,,,,,0.73210634,0.634481353,0.829731326,0.677358951,0.650648959,0.704068943,0.305,,15788,0.285861847,0.324138153,77.78991884,,,76.87948093,78.70035675,,,,,,,,,,83.6666064,65.15116865,102.1820442,77.79552004,76.86348467,78.72755541,,,,370.6118039,460,96542,334.9069645,406.3166433,,,,,,,,,,,,,369.1246144,332.7147896,405.5344393,,,,71.92465892,32,44491,49.19641346,101.5361581,,,,,,,,,,,,,74.37232324,49.8083121,106.8110621,,,,5.227781927,21,4017,3.236079409,7.991219999,,,,,,,,,,,,,,,,,,,,,,0.119,,,0.101,0.138,0.164,,,0.14,0.189,0.09,,,0.076,0.106,54.7,15,27399,,,0.072,2480,,,,0.068501286,2376.309605,34690,,,,,,,,,,,,,,,,,,,,,,,,,,0.323,,,0.307,0.339,0.152383547,2797,18355,0.133319717,0.171447377,0.188840387,1990,10538,0.14713826,0.230542515,0.000605344,21,34691,,,1651.952381,0.918834688,339.05,369,,,0.118129219,245,2074,0.086828366,0.149430072,2.761031689,,,,,,,,2.471239261,2.879888849,2.627409544,,,,,,,,1.95492591,2.836006192,0.235152146,,,,,-3094.554263,,,,,0.7805038,40466,51846,0.746625227,0.814382372,63641,,,61789.42553,65492.57447,48214,8623.191489,87804.80851,45781,25196.82979,66365.17021,50000,29913.87234,70086.12766,61875,52414.57447,71335.42553,63635,61635.68085,65634.31915,,,,,,0.409540181,1906,4654,,,59.09974014,,,,,0.294071432,,63641,,,3.858295335,11,2851,,,,,,,,,,,,,,,,,,,,,,,,,,16.19175092,25,173628,10.26418114,24.29557646,14.3985993,,,,,,,,,,,,,16.46010815,10.18906638,25.16102379,,,,8.06321561,14,173628,4.408235006,13.52870569,,,,,,,,,,,,,8.728397217,4.77189598,14.6447674,,,,19.37105881,47,242630,14.2331254,25.7594017,,,,,,,,,,,,,19.12922011,13.84391144,25.76693395,,,,11.75,,4000,,,47,,0.625309549,14898,23825,,,0.672,,,,,9.962363999,,,,,0.780377896,9871,12649,0.767080168,0.793675623,0.088907149,1082,12170,0.078282188,0.099532109,0.768519251,9721,12649,0.751408582,0.785629919,34691,,,,,0.292410135,10144,34691,,,0.175549854,6090,34691,,,0.004727451,164,34691,,,0.009137817,317,34691,,,0.005707532,198,34691,,,0.000432389,15,34691,,,0.0587184,2037,34691,,,0.916462483,31793,34691,,,0.024219068,773,31917,0.019694353,0.028743784,0.489550604,16983,34691,,,1,34659,34659,, -55,021,55021,WI,Columbia County,2024,1,6300.197795,756,161010,5538.547224,7061.848366,0,,,,2,,,,2,,,,2,,,,2,6331.858205,5533.629638,7130.086772,,,,,2,,0.123,,,0.103,0.147,3.245004209,,,2.544030671,4.09803507,4.415200208,,,3.553809257,5.403485117,0.058316929,237,4064,0.051112013,0.065521845,0,,,,,,,,,,0.112820513,0.068414831,0.157226195,0.054658051,0.047347389,0.061968712,,,,,,,0.157,,,0.124,0.196,0.354,,,0.285,0.425,9.2,0.046804817,0.058,,,0.188,,,0.152,0.229,0.746178834,43644,58490,,,0.249700847,,,0.206975291,0.294670116,0.290909091,16,55,0.220724209,0.362941414,246.2,144,58488,,,8.350550964,97,11616,6.771734295,10.18696401,,,,,,,,,,19.43005181,10.8748525,32.04691564,7.630600665,6.031673176,9.523334969,,,,,,,0.061762934,2870,46468,0.053422508,0.070103359,0.000393243,23,58488,,,2542.956522,0.000360868,21,58193,,,2771.095238,0.001288815,75,58193,,,775.9066667,2457,,,,,2535,,,,2423,0.41,,,,,,,0.67,,0.41,0.52,,,,,0.13,0.33,0.48,0.18,0.53,0.938974445,39205,41753,0.93151847,0.94643042,0.640691731,9151,14283,0.601477216,0.679906247,0.026244487,833,31740,,,0.091,1067,,0.060021277,0.121978723,,,,,,,0.238095238,0.022991859,0.453198618,0.239949749,0.148333732,0.331565765,0.071573066,0.050172992,0.092973141,3.740408424,140486,37559,3.483253666,3.997563182,0.201495604,2452,12169,0.160985455,0.242005752,12.31021748,72,58488,,,102.3260977,295,288294,90.64909242,114.0031029,,,,,,,,,,,,,106.5676554,94.15146784,118.983843,,,,8.5,,,,,1,,,,,0.11916992,2900,24335,0.103571225,0.134768615,0.091938818,0.077505571,0.106372065,0.014177111,0.007983899,0.020370323,0.023423053,0.015438906,0.031407201,0.788571995,23889,30294,0.769152454,0.807991535,,,,,,,,,,0.833609272,0.763862521,0.903356022,0.768832082,0.741659967,0.796004196,0.415,,30294,0.390035526,0.439964475,78.37618169,,,77.70655417,79.04580922,,,,,,,,,,,,,78.26285213,77.57124721,78.95445705,,,,323.9682868,756,161010,299.5474054,348.3891683,,,,,,,,,,,,,327.2898678,301.9326247,352.6471109,,,,35.74990122,19,53147,21.52377588,55.82789917,,,,,,,,,,,,,30.0719579,16.44061922,50.45563553,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.095,,,0.081,0.111,0.146,,,0.124,0.169,0.074,,,0.062,0.088,93.8,47,50125,,,0.058,3400,,,,0.046804817,2660.058167,56833,,,25.90852563,45,173688,18.89785638,34.66764572,,,,,,,,,,,,,26.96533387,19.51494583,36.32212776,,,,0.312,,,0.293,0.328,0.067431433,2316,34346,0.056708029,0.078154837,0.047196482,601,12734,0.034090099,0.060302865,0.00085921,50,58193,,,1163.86,0.902347611,547.725,607,,,0.059498956,171,2874,0.026988595,0.092009317,2.927658836,,,,,,,,2.508950496,2.975658772,2.947987313,,,,,,,,2.480409984,3.015140594,0.065645504,,,,,2829.518,,,,,0.813937699,50351,61861,0.755756674,0.872118724,78767,,,70381.29787,87152.70213,,,,92232,36857.53192,147606.4681,30313,5213.085106,55412.91489,,,,80097,77233.85106,82960.14894,,,,,,0.299166762,2621,8761,,,51.56508559,,,,,0.241560552,,78767,,,9.848982272,30,3046,,,,,,,,,,,,,,,,,,,,,,,,,,17.50115217,52,288294,12.94744872,23.1374513,18.03714264,,,,,,,,,,,,,16.88953925,12.2230433,22.75009853,,,,8.671703192,25,288294,5.611869081,12.80114456,,,,,,,,,,,,,9.03753968,5.790522202,13.44714267,,,,14.42915286,58,401964,10.95666072,18.65302608,,,,,,,,,,,,,15.08608497,11.39586646,19.59053618,,,,10,,5000,,,50,,0.764019851,33869,44330,,,0.742,,,,,40.04161741,,,,,0.758392887,18253,24068,0.743454231,0.773331543,0.091322261,2150,23543,0.077259828,0.105384694,0.858692039,20667,24068,0.84368467,0.873699408,58193,,,,,0.205385528,11952,58193,,,0.197137113,11472,58193,,,0.016548382,963,58193,,,0.008488994,494,58193,,,0.008540546,497,58193,,,0.000945131,55,58193,,,0.040537522,2359,58193,,,0.914061829,53192,58193,,,0.004231235,234,55303,0.002070846,0.006391625,0.487378207,28362,58193,,,0.662420927,38745,58490,, -55,023,55023,WI,Crawford County,2024,1,6768.602579,231,43335,5228.57225,8308.632908,0,,,,2,,,,2,,,,2,,,,2,6886.386381,5247.296261,8525.476501,,,,,2,,0.143,,,0.119,0.169,3.505635656,,,2.724759272,4.401680343,4.890791619,,,3.868542384,6.046227283,0.066666667,75,1125,0.05209019,0.081243144,0,,,,,,,,,,,,,0.066852368,0.051935357,0.081769378,,,,,,,0.178,,,0.139,0.218,0.375,,,0.296,0.462,8.2,0.084141471,0.084,,,0.215,,,0.174,0.264,0.545584311,8791,16113,,,0.215073799,,,0.17457325,0.261890707,0.5,6,12,0.355111295,0.623019394,168,27,16075,,,7.509386733,24,3196,4.811405774,11.17337221,,,,,,,,,,,,,8.119079838,5.20204765,12.08054722,,,,,,,0.062008129,717,11563,0.052476215,0.071540044,0.000746501,12,16075,,,1339.583333,0.000562254,9,16007,,,1778.555556,0.001062035,17,16007,,,941.5882353,2753,,,,,,,,,2770,0.53,,,,,,,,,0.53,0.41,,,,,,,,,0.41,0.918010525,10816,11782,0.903795746,0.932225303,0.597832455,2041,3414,0.536431788,0.659233122,0.037942305,267,7037,,,0.166,504,,0.102851064,0.229148936,,,,,,,,,,0.568807339,0.372708156,0.764906523,0.188410949,0.135803084,0.241018814,4.013446514,106854,26624,3.712611069,4.31428196,0.196892835,621,3154,0.148693657,0.245092012,8.087091757,13,16075,,,80.51330328,65,80732,62.13846768,102.6208143,,,,,,,,,,,,,83.00723349,63.78503735,106.2023101,,,,8.2,,,,,0,,,,,0.121348315,810,6675,0.101424803,0.141271826,0.088464477,0.07073265,0.106196304,0.013483146,0.006468521,0.020497772,0.031460674,0.019005865,0.043915483,0.746328248,5234,7013,0.710730561,0.781925934,,,,,,,,,,,,,0.791855808,0.754649918,0.829061698,0.268,,7013,0.241066015,0.294933985,78.66578156,,,77.33373995,79.99782317,,,,,,,,,,,,,78.50204701,77.1119448,79.89214922,,,,335.2545054,231,43335,287.1136413,383.3953695,,,,,,,,,,,,,335.5078051,285.7982567,385.2173535,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.106,,,0.09,0.124,0.155,,,0.133,0.18,0.085,,,0.071,0.1,50.2,7,13935,,,0.084,1350,,,,0.084141471,1400.450649,16644,,,,,,,,,,,,,,,,,,,,,,,,,,0.314,,,0.298,0.332,0.068879962,583,8464,0.056965069,0.080794856,0.044166921,145,3283,0.029869048,0.058464793,0.001124508,18,16007,,,889.2777778,0.951017442,163.575,172,,,0.124671916,95,762,0.049900346,0.199443486,3.074856295,,,,,,,,,3.023360788,3.05480206,,,,,,,,,3.006802024,0.045995527,,,,,2098.1815,,,,,0.84201787,42596,50588,0.765604379,0.91843136,63862,,,58278.68085,69445.31915,,,,,,,41447,25774.14894,57119.85106,50556,38617.2766,62494.7234,62570,59011.02128,66128.97872,,,,,,0.515057113,992,1926,,,,,,,,0.463311516,,63862,,,3.891050584,3,771,,,,,,,,,,,,,,,,,,,,,,,,,,14.24738432,13,80732,7.112242917,25.49250607,16.10266066,,,,,,,,,,,,,15.31142229,7.643406838,27.39636392,,,,13.62532825,11,80732,6.801714769,24.37947594,,,,,,,,,,,,,14.49332648,7.235016361,25.93256455,,,,10.57790628,12,113444,5.465758532,18.47747351,,,,,,,,,,,,,10.28517999,5.134324794,18.40302806,,,,12.85714286,,1400,,,18,,0.677180685,8695,12840,,,0.612,,,,,84.40048916,,,,,0.74648533,4885,6544,0.722456597,0.770514063,0.087970409,547,6218,0.069992289,0.105948528,0.803331296,5257,6544,0.785461478,0.821201114,16007,,,,,0.192603236,3083,16007,,,0.253639033,4060,16007,,,0.019429,311,16007,,,0.004123196,66,16007,,,0.006497158,104,16007,,,0.000499781,8,16007,,,0.019179109,307,16007,,,0.940276129,15051,16007,,,0.006328288,97,15328,0.000968675,0.011687901,0.476104204,7621,16007,,,0.63005027,10152,16113,, -55,025,55025,WI,Dane County,2024,1,5054.810206,4608,1571631,4840.773598,5268.846813,0,9838.753313,5623.69762,15977.51898,1,2560.275902,1984.178657,3251.459892,,14159.80913,12697.01893,15622.59933,,5141.726159,4279.270528,6004.181789,,4561.780982,4335.619836,4787.942128,,,,,2,,0.103,,,0.085,0.124,2.726447215,,,2.121600472,3.349816272,4.691179721,,,3.958115431,5.453677238,0.07038835,2842,40376,0.067893206,0.072883493,0,,,,0.077225924,0.068120571,0.086331277,0.133694413,0.122432337,0.144956489,0.069960988,0.061898178,0.078023799,0.061461207,0.058661849,0.064260564,,,,0.083739046,0.066797835,0.100680256,0.117,,,0.087,0.149,0.28,,,0.236,0.327,9.1,0.042892653,0.061,,,0.155,,,0.124,0.189,0.939309426,527426,561504,,,0.257285944,,,0.222265119,0.295955447,0.378531073,67,177,0.341866566,0.414893482,512.3,2889,563951,,,6.484395437,818,126149,6.040021161,6.928769714,,,,1.885118652,1.098151083,3.018257576,31.15554522,27.42541469,34.88567576,18.92414237,16.50457151,21.34371324,2.308084955,1.994412637,2.621757274,,,,13.17194731,10.34281172,16.53617364,0.04801881,22731,473377,0.043252852,0.052784767,0.001280253,722,563951,,,781.0955679,0.000753252,428,568203,,,1327.577103,0.00482398,2741,568203,,,207.2977016,2210,,,,,,1846,4163,1743,2098,0.46,,,,,0.31,0.31,0.35,0.31,0.46,0.68,,,,,0.69,0.6,0.51,0.55,0.69,0.960055758,356077,370892,0.956619183,0.963492332,0.837809955,136434,162846,0.819146169,0.856473742,0.021605435,7121,329593,,,0.072,7872,,0.050553192,0.093446809,0.122881356,0,0.376852635,0.137659935,0.077130251,0.198189619,0.261928429,0.192705982,0.331150877,0.165541048,0.124858435,0.20622366,0.037568419,0.030722781,0.044414058,4.299720112,161304,37515,4.134873805,4.464566419,0.192660962,21458,111377,0.175293731,0.210028193,11.80953664,666,563951,,,83.33448822,2285,2741962,79.91754516,86.75143129,155.5814858,80.39122402,271.7695456,17.92062896,12.17619792,25.43690233,137.6905353,118.5597137,156.8213569,44.64753254,35.45658551,55.49280634,89.70824056,85.7203771,93.69610402,,,,8.8,,,,,1,,,,,0.139210062,31545,226600,0.131952891,0.146467233,0.123399146,0.117029522,0.12976877,0.015776699,0.01305587,0.018497528,0.007082966,0.005183488,0.008982444,0.671365445,211035,314337,0.661989602,0.680741289,0.736680328,0.600763182,0.872597474,0.54571963,0.502973902,0.588465358,0.656445692,0.611925634,0.70096575,0.69200422,0.666206555,0.717801886,0.71067786,0.702048993,0.719306727,0.242,,314337,0.232847997,0.251152003,81.15613326,,,80.91691142,81.39535509,,,,87.34286888,85.12604316,89.55969459,71.12224027,69.91268977,72.33179077,84.08566599,81.55002201,86.62130997,81.55215296,81.30241964,81.80188627,,,,251.2962514,4608,1571631,243.8634193,258.7290835,551.8241387,327.0459574,872.1200449,131.8644418,105.1802431,163.2571517,680.5214905,617.0950003,743.9479808,225.154728,185.520814,264.7886421,237.42276,229.5902413,245.2552786,,,,39.87923401,205,514052,34.42007243,45.33839559,,,,,,,100.2833003,71.64386001,136.557392,58.49261101,40.50783351,81.73756102,32.14857764,26.22098142,38.07617386,,,,5.147345824,211,40992,4.452804339,5.841887308,,,,,,,13.45163137,9.883752767,17.88781807,8.421052632,5.759993766,11.88801371,3.684009314,2.982676986,4.385341642,,,,,,,0.081,,,0.068,0.095,0.131,,,0.112,0.152,0.07,,,0.059,0.082,167.2,810,484551,,,0.061,34020,,,,0.042892653,20934.74571,488073,,,25.97430708,432,1663182,23.52491579,28.42369837,,,,,,,99.24103166,79.59420937,122.2677266,19.67289344,12.32889758,29.78499708,23.74274167,21.10394004,26.3815433,,,,0.258,,,0.244,0.273,0.05467378,19738,361014,0.048716333,0.060631227,0.028902028,3407,117881,0.022944582,0.034859475,0.002039764,1159,568203,,,490.2528041,0.894673985,5419.935,6058,,,0.026958533,851,31567,0.018037862,0.035879204,3.089548482,,,,,,3.142709795,2.187834787,2.331145323,3.385762233,3.160460824,,,,,,3.295313615,1.872920524,2.260299633,3.538518016,0.117346221,,,,,3337.072667,,,,,0.853732075,59179,69318,0.828062673,0.879401478,85189,,,82026.78723,88351.21277,59167,38252.78723,80081.21277,74712,68170.7234,81253.2766,43048,37968.68085,48127.31915,57304,47898.38298,66709.61702,89569,86913.17021,92224.82979,,,,,,0.293648227,22704,77317,,,54.64729327,,,,,0.402763268,,85189,,,10.71180613,324,30247,,,2.159669076,82,3796878,1.717648907,2.680718768,,,,,,,18.65953906,13.1380375,25.71971665,,,,1.194994963,0.836959781,1.654376735,,,,11.79811003,343,2741962,10.52514524,13.07107482,12.50929079,,,,6.78839596,2.729287253,13.98669017,10.18027659,5.697823529,16.79081807,6.018931932,3.290606096,10.09874505,12.67686538,11.20621146,14.1475193,,,,7.148166167,196,2741962,6.147422904,8.148909431,,,,,,,23.52501609,16.29175752,32.87385201,,,,6.968078356,5.856652174,8.079504539,,,,7.111105493,270,3796878,6.262880019,7.959330966,,,,,,,19.16385093,13.56148149,26.30388266,6.852048158,3.991570558,10.97079287,6.672055209,5.74965865,7.594451767,,,,8.878718536,,43700,,,388,,0.846819432,344791,407160,,,0.759,,,,,399.7002839,,,,,0.57903895,139432,240799,0.572798406,0.585279493,0.131951349,31190,236375,0.124084153,0.139818544,0.917711452,220984,240799,0.911458864,0.923964041,568203,,,,,0.193921891,110187,568203,,,0.153239247,87071,568203,,,0.055027869,31267,568203,,,0.004896138,2782,568203,,,0.065944742,37470,568203,,,0.000579018,329,568203,,,0.070455453,40033,568203,,,0.779647415,442998,568203,,,0.013105046,6953,530559,0.011095646,0.015114446,0.498944919,283502,568203,,,0.135769291,76235,561504,, -55,027,55027,WI,Dodge County,2024,1,6948.032483,1255,244035,6313.461869,7582.603097,0,,,,2,,,,2,,,,2,5165.08078,3109.716036,8065.913448,1,7393.613256,6682.179493,8105.047019,,,,,2,,0.13,,,0.11,0.157,3.329714198,,,2.628585508,4.156694493,4.614392059,,,3.720244514,5.576010618,0.065628476,354,5394,0.05901992,0.072237032,0,,,,,,,,,,0.052734375,0.033374441,0.072094309,0.065045852,0.057987214,0.07210449,,,,,,,0.164,,,0.13,0.204,0.36,,,0.293,0.436,9.3,0.02717666,0.063,,,0.213,,,0.173,0.26,0.711687324,63622,89396,,,0.244247807,,,0.201134288,0.291548617,0.415384615,27,65,0.354688478,0.474165463,357.2,319,89313,,,8.870188207,156,17587,7.478228683,10.26214773,,,,,,,,,,23.91799544,17.23798732,32.33018154,7.271258332,5.8998911,8.642625564,,,,,,,0.058058399,3919,67501,0.050909463,0.065207335,0.000571026,51,89313,,,1751.235294,0.00033982,30,88282,,,2942.733333,0.00118937,105,88282,,,840.7809524,2017,,,,,,,,,2003,0.48,,,,,,,,,0.48,0.54,,,,,,0.73,0.29,0.41,0.54,0.922239454,59466,64480,0.913899248,0.93057966,0.567375568,12619,22241,0.533870227,0.600880908,0.025828234,1224,47390,,,0.104,1734,,0.073021277,0.134978723,,,,,,,0.083682008,0,0.242771008,0.206285714,0.126772021,0.285799408,0.081350035,0.058850339,0.103849731,3.471065581,120623,34751,3.287535918,3.654595244,0.161790806,2826,17467,0.133038665,0.190542946,10.97264676,98,89313,,,107.4704456,473,440121,97.78511277,117.1557785,,,,,,,,,,56.9700688,30.33416228,97.42055269,115.8928195,105.2555496,126.5300894,,,,7.8,,,,,1,,,,,0.115554921,4045,35005,0.100530368,0.130579474,0.09602649,0.082444032,0.109608948,0.010141408,0.006414416,0.013868401,0.015854878,0.008246539,0.023463217,0.80945707,37541,46378,0.793697858,0.825216283,,,,,,,,,,0.554669704,0.502946861,0.606392547,0.796793481,0.776774316,0.816812647,0.334,,46378,0.309581734,0.358418266,77.18481957,,,76.6517803,77.71785884,,,,,,,,,,85.16169947,76.73188863,93.59151031,76.81877511,76.24326007,77.39429015,,,,362.0402676,1255,244035,340.9944495,383.0860857,,,,,,,,,,281.4959727,174.2504438,430.2964963,374.00293,351.447309,396.558551,,,,38.09723992,29,76121,25.51431949,54.71399146,,,,,,,,,,,,,40.42539959,26.40721316,59.23257678,,,,4.945960799,27,5459,3.259419332,7.196113289,,,,,,,,,,,,,5.028284098,3.2217165,7.481688161,,,,,,,0.098,,,0.084,0.116,0.147,,,0.126,0.17,0.078,,,0.065,0.092,90.1,70,77650,,,0.063,5580,,,,0.02717666,2412.173123,88759,,,26.08814011,69,264488,20.29813018,33.01621098,,,,,,,,,,,,,28.4135486,22.02010989,36.08420233,,,,0.329,,,0.313,0.344,0.065066455,3280,50410,0.05553454,0.07459837,0.039279778,709,18050,0.028556374,0.050003183,0.000974151,86,88282,,,1026.534884,0.911679537,708.375,777,,,0.031695721,140,4417,0.013393332,0.04999811,3.06183629,,,,,,,,2.734204983,3.144654553,3.153239406,,,,,,,,2.866415491,3.244163097,0.048149457,,,,,2097.984638,,,,,0.7939084,45641,57489,0.761260465,0.826556335,69681,,,64014.2766,75347.7234,65000,18397.2766,111602.7234,116875,53007.59575,180742.4043,71183,49609.89362,92756.10638,61000,45175.82979,76824.17021,72468,69859.82979,75076.17021,,,,,,0.403996685,4387,10859,,,79.79006273,,,,,0.313342231,,69681,,,6.961710592,28,4022,,,,,,,,,,,,,,,,,,,,,,,,,,15.06242055,70,440121,11.62485818,19.19829146,15.90471711,,,,,,,,,,,,,16.17778537,12.37472394,20.78104211,,,,8.861199534,39,440121,6.301179105,12.11355147,,,,,,,,,,,,,9.403584036,6.620990977,12.9616019,,,,13.94539567,86,616691,11.15451648,17.2224502,,,,,,,,,,,,,14.65098107,11.63499378,18.20983175,,,,4.72972973,,7400,,,35,,0.699689419,48436,69225,,,0.772,,,,,83.0250548,,,,,0.705994665,25144,35615,0.689755483,0.722233848,0.099882693,3491,34951,0.087243777,0.112521609,0.875333427,31175,35615,0.863126485,0.887540369,88282,,,,,0.191896423,16941,88282,,,0.191443329,16901,88282,,,0.027978523,2470,88282,,,0.005980834,528,88282,,,0.007204187,636,88282,,,0.000623004,55,88282,,,0.060261435,5320,88282,,,0.888459709,78435,88282,,,0.008301097,706,85049,0.005230407,0.011371787,0.473482703,41800,88282,,,0.548861247,49066,89396,, -55,029,55029,WI,Door County,2024,1,5227.907559,377,75577,4143.25934,6312.555778,0,,,,2,,,,2,,,,2,,,,2,5374.412483,4198.678207,6550.146759,,,,,2,,0.113,,,0.092,0.137,3.007043186,,,2.283044461,3.826464466,4.538073991,,,3.626001699,5.596636012,0.075932203,112,1475,0.062413813,0.089450594,0,,,,,,,,,,0.095238095,0.039090143,0.151386048,0.075630252,0.061306497,0.089954007,,,,,,,0.141,,,0.107,0.182,0.342,,,0.267,0.424,9,0.036443057,0.07,,,0.183,,,0.144,0.228,0.779784474,23445,30066,,,0.211135736,,,0.170880335,0.256084305,0.277777778,5,18,0.152183671,0.410166986,191,58,30369,,,6.920415225,32,4624,4.733558891,9.769561436,,,,,,,,,,,,,5.790533736,3.670701671,8.68864373,,,,,,,0.071308523,1485,20825,0.061776609,0.080840438,0.000691495,21,30369,,,1446.142857,0.000655179,20,30526,,,1526.3,0.001408635,43,30526,,,709.9069767,1448,,,,,,,,,1444,0.54,,,,,,,,,0.54,0.37,,,,,,,,,0.37,0.957756675,22491,23483,0.948646428,0.966866922,0.72681311,4169,5736,0.660527713,0.793098508,0.031330899,472,15065,,,0.106,494,,0.066680851,0.145319149,,,,,,,,,,0.11,0,0.233433565,0.153279293,0.101292691,0.205265894,3.767125776,124447,33035,3.35486514,4.179386412,0.210472489,1029,4889,0.149273313,0.271671665,19.09842273,58,30369,,,109.9142669,155,141019,92.61035519,127.2181786,,,,,,,,,,,,,114.608396,96.32806598,132.888726,,,,6.8,,,,,0,,,,,0.119508563,1605,13430,0.100192304,0.138824822,0.09715994,0.078939174,0.115380706,0.014519732,0.008244048,0.020795416,0.012285927,0.004343669,0.020228185,0.778609777,11022,14156,0.763258676,0.793960877,,,,,,,,,,,,,0.781464785,0.761494518,0.801435051,0.182,,14156,0.158200019,0.205799981,80.95007842,,,79.98525416,81.91490267,,,,,,,,,,,,,80.78429274,79.76656568,81.8020198,,,,260.1482734,377,75577,228.1877414,292.1088055,,,,,,,,,,,,,263.0517427,229.4645111,296.6389743,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.09,,,0.076,0.106,0.139,,,0.117,0.162,0.072,,,0.06,0.085,107,29,27095,,,0.07,2090,,,,0.036443057,1012.570328,27785,,,11.637921,10,85926,5.580835482,21.40255108,,,,,,,,,,,,,,,,,,,0.3,,,0.28,0.318,0.076870153,1229,15988,0.064955259,0.088785046,0.054143862,277,5116,0.037463011,0.070824714,0.000982769,30,30526,,,1017.533333,0.961775362,265.45,276,,,,,,,,3.103841418,,,,,,,,2.784032836,3.133957173,3.193062986,,,,,,,,2.793479874,3.263046162,0.050866411,,,,,6908.40775,,,,,0.845864594,46789,55315,0.788295361,0.903433827,72296,,,63986.55319,80605.44681,,,,,,,,,,48247,42724.44681,53769.55319,68750,64950.34043,72549.65957,,,,,,0.389061529,1252,3218,,,,,,,,0.32271495,,72296,,,6.644518272,8,1204,,,,,,,,,,,,,,,,,,,,,,,,,,21.6807287,32,141019,13.89125197,32.25920574,22.69197768,,,,,,,,,,,,,21.94237734,13.75117106,33.22102298,,,,12.76423744,18,141019,7.564896064,20.17299816,,,,,,,,,,,,,12.902932,7.516433379,20.65884406,,,,11.72512235,23,196160,7.432721777,17.59344051,,,,,,,,,,,,,11.42316291,7.071117884,17.46151794,,,,5.5,,2000,,,11,,0.883293085,20117,22775,,,0.536,,,,,51.94449132,,,,,0.811068564,11226,13841,0.800010557,0.822126572,0.117443869,1564,13317,0.095589478,0.13929826,0.864388411,11964,13841,0.842735435,0.886041388,30526,,,,,0.15458953,4719,30526,,,0.325034397,9922,30526,,,0.00723973,221,30526,,,0.007894909,241,30526,,,0.005962131,182,30526,,,0.000360349,11,30526,,,0.038983162,1190,30526,,,0.929306165,28368,30526,,,0.007732853,223,28838,0.003484728,0.011980977,0.500425867,15276,30526,,,0.686389942,20637,30066,, -55,031,55031,WI,Douglas County,2024,1,8392.205438,664,121145,7312.564759,9471.846117,0,20667.59789,9450.541817,39233.53865,1,,,,2,,,,2,,,,2,8277.371284,7140.068342,9414.674226,,,,,2,,0.126,,,0.105,0.152,3.367176745,,,2.624574107,4.247884076,4.694677449,,,3.773407148,5.746913997,0.067562787,191,2827,0.058310337,0.076815237,0,,,,,,,,,,,,,0.068596352,0.058731218,0.078461487,,,,,,,0.157,,,0.121,0.198,0.357,,,0.285,0.435,8.1,0.085072599,0.09,,,0.202,,,0.161,0.25,0.809233548,35845,44295,,,0.260807201,,,0.214389677,0.309683249,0.416666667,10,24,0.311849505,0.514990361,348.4,154,44203,,,12.77846885,113,8843,10.42235827,15.13457942,,,,,,,,,,,,,11.60031637,9.303792944,14.29191422,,,,32.11991435,17.97727223,52.97691407,0.064680359,2236,34570,0.055148444,0.074212274,0.000248852,11,44203,,,4018.454546,0.000611635,27,44144,,,1634.962963,0.001698985,75,44144,,,588.5866667,4334,,,,,1127,,,,4303,0.46,,,,,,,,,0.46,0.47,,,,,0.61,0.36,0.35,,0.47,0.943990923,29950,31727,0.934091301,0.953890544,0.714954558,7788,10893,0.662739747,0.767169369,0.040728974,923,22662,,,0.137,1117,,0.088148936,0.185851064,0.368932039,0.014409557,0.72345452,,,,0.393258427,0,0.862830179,0.031690141,0,0.123262218,0.131773228,0.095450357,0.168096098,4.483639969,122094,27231,4.080924478,4.88635546,0.241140577,2055,8522,0.197154605,0.28512655,11.31144945,50,44203,,,87.33744892,190,217547,74.91864491,99.75625293,,,,,,,,,,,,,87.07819924,74.10215077,100.0542477,,,,5.6,,,,,1,,,,,0.109239274,2075,18995,0.095710765,0.122767782,0.09293305,0.079269864,0.106596236,0.011318768,0.005744928,0.016892608,0.007633588,0.003761277,0.011505899,0.765003449,16635,21745,0.741145722,0.788861176,,,,,,,,,,,,,0.769620115,0.742199575,0.797040656,0.288,,21745,0.265773054,0.310226946,77.1038922,,,76.22289575,77.98488864,,,,,,,,,,,,,77.09035802,76.17789703,78.002819,,,,386.2943291,664,121145,354.6535092,417.935149,738.9749298,430.4801287,1183.170448,,,,,,,,,,382.8721756,350.2374582,415.506893,,,,62.65827742,24,38303,40.14634064,93.23055007,,,,,,,,,,,,,67.11409396,42.06004537,101.6115448,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.099,,,0.084,0.117,0.148,,,0.126,0.173,0.078,,,0.066,0.093,65.3,25,38275,,,0.09,3970,,,,0.085072599,3756.720886,44159,,,28.2324215,37,131055,19.87823018,38.9146741,,,,,,,,,,,,,23.43880797,15.57491768,33.8756035,,,,0.311,,,0.293,0.329,0.073380411,1912,26056,0.061465518,0.085295305,0.039624958,355,8959,0.027710065,0.051539852,0.000815513,36,44144,,,1226.222222,0.888511628,382.06,430,,,,,,,,3.010797401,,,,,,,,,3.053205267,2.772125283,,,,,,,,,2.808424627,0.041096946,,,,,99.15766667,,,,,0.777605924,47259,60775,0.702431328,0.852780519,66180,,,60093.87234,72266.12766,29345,15135.29787,43554.70213,80461,45565.85106,115356.1489,62583,37859.59575,87306.40426,65735,23906.57447,107563.4255,65939,61231.42553,70646.57447,,,,,,0.437960042,2499,5706,,,73.25232703,,,,,0.301647023,,66180,,,6.277160792,13,2071,,,,,,,,,,,,,,,,,,,,,,,,,,16.8372276,38,217547,11.79258722,23.30982012,17.46748978,,,,,,,,,,,,,17.19063873,11.83324471,24.14204819,,,,11.03209881,24,217547,7.068473872,16.41488855,,,,,,,,,,,,,11.57687042,7.338742771,17.37098982,,,,9.518901584,29,304657,6.374957785,13.67073051,,,,,,,,,,,,,9.329697144,6.094467926,13.67016796,,,,17.14285714,,3500,,,60,,0.716313498,24677,34450,,,0.653,,,,,204.6741562,,,,,0.704588708,13328,18916,0.683638187,0.725539229,0.102249932,1886,18445,0.085868276,0.118631588,0.847113555,16024,18916,0.830465423,0.863761686,44144,,,,,0.188066328,8302,44144,,,0.208046394,9184,44144,,,0.012957593,572,44144,,,0.019753534,872,44144,,,0.010646974,470,44144,,,0.00043041,19,44144,,,0.019912106,879,44144,,,0.909274194,40139,44144,,,0.006511716,274,42078,0.003503308,0.009520125,0.493521203,21786,44144,,,0.38613839,17104,44295,, -55,033,55033,WI,Dunn County,2024,1,6229.424053,489,127341,5372.801818,7086.046289,0,,,,2,,,,2,,,,2,,,,2,6313.134816,5394.828718,7231.440914,,,,,2,,0.126,,,0.104,0.151,3.210036592,,,2.448235854,4.049020828,4.519142621,,,3.566675934,5.545969849,0.062747688,190,3028,0.054109846,0.07138553,0,,,,0.073863636,0.035222264,0.112505009,,,,,,,0.059149723,0.050259574,0.068039872,,,,,,,0.155,,,0.118,0.194,0.361,,,0.283,0.44,8.6,0.057149174,0.079,,,0.197,,,0.157,0.244,0.531932218,24171,45440,,,0.243996019,,,0.197643576,0.291916246,0.457142857,16,35,0.375136966,0.533789056,311.8,142,45547,,,5.828927748,86,14754,4.662389809,7.19867835,,,,20.56074766,10.26385115,36.78885703,,,,,,,4.922067268,3.806726469,6.2620764,,,,,,,0.061684629,2175,35260,0.052152714,0.071216543,0.000746482,34,45547,,,1339.617647,0.000394296,18,45651,,,2536.166667,0.002102911,96,45651,,,475.53125,1785,,,,,,,,,1820,0.54,,,,,,0.29,,,0.54,0.56,,,,,,0.5,,,0.56,0.940764559,26332,27990,0.931734594,0.949794524,0.680315882,6978,10257,0.632606203,0.728025561,0.031110182,744,23915,,,0.123,1036,,0.080106383,0.165893617,,,,0.068027211,0,0.173147893,,,,0.322485207,0.178840291,0.466130123,0.073533387,0.052689575,0.0943772,4.474621518,127388,28469,3.988048858,4.961194179,0.119981647,1046,8718,0.095355371,0.144607923,9.660350846,44,45547,,,81.78928428,185,226191,70.00327944,93.57528911,,,,,,,,,,,,,85.56896189,73.03334188,98.1045819,,,,7.6,,,,,0,,,,,0.136934307,2345,17125,0.116246551,0.157622062,0.112157786,0.092130622,0.13218495,0.016934307,0.011085551,0.022783063,0.014014599,0.007328782,0.020700416,0.774174378,18238,23558,0.756784992,0.791563764,,,,0.521525215,0.337320636,0.705729795,,,,0.564738292,0.345371386,0.784105198,0.763955949,0.742740669,0.785171228,0.309,,23558,0.284494681,0.333505319,80.00831026,,,79.12101927,80.89560125,,,,,,,,,,,,,79.92802365,79.00729237,80.84875492,,,,318.9004483,489,127341,289.2534447,348.5474518,,,,,,,,,,,,,319.1925857,288.7215649,349.6636064,,,,41.73072699,19,45530,25.12462369,65.16769948,,,,,,,,,,,,,44.76832392,26.53254603,70.75325259,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.098,,,0.083,0.115,0.148,,,0.126,0.172,0.08,,,0.067,0.095,48.1,19,39474,,,0.079,3560,,,,0.057149174,2506.391316,43857,,,8.066467694,11,136367,4.026751609,14.43313889,,,,,,,,,,,,,8.742231335,4.364090385,15.64226671,,,,0.304,,,0.286,0.32,0.068804928,1832,26626,0.056890034,0.080719821,0.04091509,372,9092,0.029000197,0.052829984,0.000920024,42,45651,,,1086.928571,0.928596698,393.725,424,,,,,,,,3.038969111,,,,,,2.870371387,,,3.092762803,3.146948318,,,,,,2.675737686,,,3.237641119,0.058968216,,,,,2012.35175,,,,,0.747344817,42994,57529,0.7069951,0.787694534,71434,,,64221.91489,78646.08511,,,,76786,799.9574468,152772.0426,93125,3793.085106,182456.9149,84583,47738.57447,121427.4255,69866,65860.21277,73871.78723,,,,,,0.4076885,2471,6061,,,,,,,,0.366786124,,71434,,,4.393673111,10,2276,,,,,,,,,,,,,,,,,,,,,,,,,,14.94482779,33,226191,10.08321256,21.33467094,14.5894399,,,,,,,,,,,,,15.77622949,10.56558849,22.65729716,,,,8.399980547,19,226191,5.057337014,13.11761015,,,,,,,,,,,,,9.082738972,5.468402186,14.183822,,,,15.21915584,48,315392,11.2214041,20.17839266,,,,,,,,,,,,,16.42744204,12.11229896,21.78040486,,,,13.61111111,,3600,,,49,,0.658843299,23524,35705,,,0.729,,,,,107.0593576,,,,,0.663382975,11448,17257,0.648948246,0.677817704,0.120269384,2018,16779,0.101141885,0.139396884,0.864460799,14918,17257,0.848281656,0.880639941,45651,,,,,0.188144838,8589,45651,,,0.169350069,7731,45651,,,0.008345929,381,45651,,,0.006111586,279,45651,,,0.032069396,1464,45651,,,0.000591444,27,45651,,,0.023088213,1054,45651,,,0.918402664,41926,45651,,,0.009367301,403,43022,0.005857257,0.012877344,0.492891722,22501,45651,,,0.625396127,28418,45440,, -55,035,55035,WI,Eau Claire County,2024,1,6050.967948,1122,295985,5518.389108,6583.546787,0,,,,2,5425.771377,3400.302035,8214.683069,1,19619.99763,11628.05405,31008.05495,1,,,,2,5880.989006,5333.148333,6428.829679,,,,,2,,0.119,,,0.099,0.143,3.172291727,,,2.486586711,3.970885834,4.929877182,,,4.040239719,5.902004973,0.066049696,521,7888,0.060568568,0.071530823,0,,,,0.088777219,0.065961616,0.111592823,0.095238095,0.039090143,0.151386048,0.089219331,0.05515371,0.123284952,0.061462539,0.055705868,0.067219211,,,,0.117647059,0.066593965,0.168700152,0.147,,,0.114,0.183,0.319,,,0.259,0.384,8.4,0.07583133,0.078,,,0.19,,,0.153,0.231,0.854772491,90358,105710,,,0.258754641,,,0.214288768,0.305156387,0.357142857,10,28,0.257736274,0.454444222,378.6,403,106452,,,6.730035385,194,28826,5.782986158,7.677084612,,,,11.14649682,6.093893532,18.70192765,,,,19.95305164,11.62338788,31.94676856,5.324603613,4.426396542,6.222810684,,,,17.62114537,10.07200711,28.61563612,0.059707441,5094,85316,0.050175526,0.069239356,0.00141848,151,106452,,,704.9801325,0.001010886,108,106837,,,989.2314815,0.004024823,430,106837,,,248.4581395,3425,,,,,,2872,,,3396,0.59,,,,,,0.31,,,0.59,0.6,,,,,0.38,0.49,0.51,0.49,0.6,0.960691754,64717,67365,0.955207615,0.966175893,0.757179565,20038,26464,0.716541829,0.797817301,0.025159865,1503,59738,,,0.102,2100,,0.062680851,0.141319149,,,,0.117591722,0.013589956,0.221593487,0.421471173,0.070654295,0.772288051,0.150907354,0.055241268,0.246573441,0.081410719,0.058811448,0.104009989,3.866191702,129154,33406,3.630569821,4.101813583,0.184324145,3885,21077,0.144495005,0.224153285,12.77571112,136,106452,,,78.35093211,411,524563,70.77598983,85.92587439,,,,,,,187.2340426,93.46655944,335.0134215,,,,81.78565343,73.6053844,89.96592247,,,,7.7,,,,,1,,,,,0.128725962,5355,41600,0.114320473,0.14313145,0.105880929,0.092081732,0.119680127,0.016826923,0.011230322,0.022423524,0.014663462,0.008603366,0.020723557,0.783244892,44428,56723,0.768321832,0.798167952,,,,0.735679214,0.630873313,0.840485116,,,,0.826312379,0.721229762,0.931394995,0.797916299,0.781662932,0.814169666,0.145,,56723,0.128750252,0.161249748,78.87021775,,,78.36987763,79.37055787,,,,79.93543931,75.04217494,84.82870369,,,,99.75030226,51.89109895,147.6095056,78.97626595,78.46507222,79.48745967,,,,313.7179494,1122,295985,294.551834,332.8840648,,,,365.1675704,240.6477299,531.2996429,786.9745782,473.8101048,1228.958288,,,,309.6258783,289.8695079,329.3822486,,,,36.15858962,37,102327,25.45898401,49.83985277,,,,,,,,,,,,,28.18687901,18.05986524,41.93984168,,,,5.009392611,40,7985,3.578783524,6.821370941,,,,,,,,,,,,,4.550792719,3.092042863,6.459487009,,,,,,,0.095,,,0.08,0.111,0.147,,,0.126,0.17,0.077,,,0.064,0.091,54.8,50,91291,,,0.078,8220,,,,0.07583133,7487.282151,98736,,,16.43707445,52,316358,12.2759934,21.5550363,,,,,,,,,,,,,16.64824733,12.23250594,22.13863964,,,,0.305,,,0.287,0.321,0.067311442,4315,64105,0.056588038,0.078034846,0.037868226,842,22235,0.027144822,0.04859163,0.002574015,275,106837,,,388.4981818,0.878313492,885.34,1008,,,0.033927057,240,7074,0.016610197,0.051243917,3.101412054,,,,,,2.797255794,2.900140126,2.839705597,3.184331817,3.103401478,,,,,,2.763226619,2.611620924,2.700919975,3.210564385,0.044875704,,,,,1441.8645,,,,,0.776880416,44826,57700,0.725450322,0.82831051,70564,,,63935.74468,77192.25532,,,,61060,50983.57447,71136.42553,,,,69746,46150.93617,93341.06383,70681,68401.68085,72960.31915,,,,,,0.377887904,5414,14327,,,56.15554608,,,,,0.36246528,,70564,,,10.14054439,57,5621,,,,,,,,,,,,,,,,,,,,,,,,,,16.37788328,86,524563,12.98664285,20.38369344,16.39459893,,,,,,,,,,,,,16.52801005,12.9780428,20.74940308,,,,11.05682254,58,524563,8.395908915,14.29350712,,,,,,,,,,,,,11.07514057,8.27144471,14.52357338,,,,8.360367472,61,729633,6.395018668,10.73924177,,,,,,,,,,,,,9.006451061,6.856127841,11.61766568,,,,7.738095238,,8400,,,65,,0.712582539,58275,81780,,,0.785,,,,,210.8693242,,,,,0.63517808,26983,42481,0.618292077,0.652064083,0.09703284,4042,41656,0.082268834,0.111796847,0.896400744,38080,42481,0.881788122,0.911013366,106837,,,,,0.196289675,20971,106837,,,0.173048663,18488,106837,,,0.011372465,1215,106837,,,0.006289956,672,106837,,,0.043758249,4675,106837,,,0.001984331,212,106837,,,0.029456087,3147,106837,,,0.890197216,95106,106837,,,0.007809461,783,100263,0.004784318,0.010834605,0.502934377,53732,106837,,,0.237271781,25082,105710,, -55,037,55037,WI,Florence County,2024,1,8183.559507,91,11756,5128.593174,12390.00744,1,,,,2,,,,2,,,,2,,,,2,8382.609834,5188.967607,12813.70958,1,,,,2,,0.133,,,0.111,0.16,3.455595287,,,2.677169909,4.336799066,4.911733187,,,3.906591669,6.005009692,0.107981221,23,213,0.066301252,0.149661189,0,,,,,,,,,,,,,0.105,0.062513863,0.147486137,,,,,,,0.171,,,0.135,0.215,0.367,,,0.29,0.451,8.6,0.050069264,0.084,,,0.215,,,0.171,0.266,0.62856516,2865,4558,,,0.214466691,,,0.172167624,0.261502269,0.363636364,4,11,0.198476333,0.520352029,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.079754601,260,3260,0.066648218,0.092860984,0.000653168,3,4593,,,1531,0.000213311,1,4688,,,4688,0.000213311,1,4688,,,4688,2117,,,,,,,,,2133,0.53,,,,,,,,,0.52,0.35,,,,,,,,,0.35,0.914056002,3297,3607,0.888144625,0.93996738,0.619631902,505,815,0.514548886,0.724714918,0.035497431,76,2141,,,0.195,126,,0.124702128,0.265297872,,,,,,,,,,,,,0.09752322,0.037892964,0.157153476,3.84634453,107063,27835,2.625641969,5.067047092,0.213592233,154,721,0.089691851,0.337492615,8.708904855,4,4593,,,132.5532498,29,21878,88.77299176,190.3685777,,,,,,,,,,,,,138.8224031,92.97154207,199.3721275,,,,5.4,,,,,1,,,,,0.164215686,335,2040,0.105764588,0.222666785,0.126968504,0.064378141,0.189558867,0.026960784,0.007320866,0.046600703,0.009803922,0.001061703,0.01854614,0.831230284,1581,1902,0.783743516,0.878717052,,,,,,,,,,,,,0.732298739,0.650483868,0.81411361,0.219,,1902,0.169341902,0.268658098,76.67729913,,,74.10767944,79.24691882,,,,,,,,,,,,,76.56859691,73.89604399,79.24114984,,,,405.0275278,91,11756,309.078673,521.3507142,,,,,,,,,,,,,409.4949261,310.1474581,530.5481738,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.102,,,0.087,0.12,0.153,,,0.131,0.179,0.08,,,0.067,0.094,0,0,4150,,,0.084,380,,,,0.050069264,221.4563557,4423,,,,,,,,,,,,,,,,,,,,,,,,,,0.331,,,0.312,0.35,0.084577114,221,2613,0.069087753,0.100066476,0.060830861,41,674,0.041767031,0.07989469,0.000426621,2,4688,,,2344,,,,,,,,,,,3.530701169,,,,,,,,,3.46809764,3.869164339,,,,,,,,,3.772994635,,,,,,6791.556,,,,,0.766986531,43561,56795,0.663951233,0.870021828,64512,,,56036.93617,72987.06383,,,,,,,,,,46250,10064.46809,82435.53192,58384,52258.55319,64509.44681,,,,,,0.491048593,192,391,,,,,,,,0.274631076,,64512,,,5.434782609,1,184,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,32.46964089,10,30798,15.57045489,59.71282565,,,,,,,,,,,,,33.94663589,16.2787314,62.42907204,,,,33.33333333,,300,,,10,,0.806584362,2940,3645,,,0.372,,,,,7.772668879,,,,,0.895773295,1865,2082,0.857796978,0.933749612,0.112304688,230,2048,0.053752027,0.170857348,0.840537944,1750,2082,0.793428017,0.887647871,4688,,,,,0.139931741,656,4688,,,0.295435154,1385,4688,,,0.005759386,27,4688,,,0.01109215,52,4688,,,0.004266212,20,4688,,,0.000213311,1,4688,,,0.014291809,67,4688,,,0.947738908,4443,4688,,,0.000681973,3,4399,0,0.009855111,0.481228669,2256,4688,,,1,4558,4558,, -55,039,55039,WI,Fond du Lac County,2024,1,6690.637691,1382,285768,6116.622506,7264.652876,0,,,,2,,,,2,14023.54859,8985.152192,20865.9287,1,5682.622332,3776.061271,8212.971463,,6719.977681,6100.627107,7339.328255,,,,,2,,0.124,,,0.102,0.147,3.326923,,,2.593949599,4.11238384,4.814464073,,,3.892794544,5.766363604,0.075090555,539,7178,0.06899383,0.08118728,0,,,,,,,0.135416667,0.09589827,0.174935063,0.054347826,0.037969332,0.07072632,0.074524585,0.067787167,0.081262002,,,,0.103448276,0.048027018,0.158869534,0.154,,,0.12,0.19,0.401,,,0.335,0.476,8.8,0.066865655,0.066,,,0.208,,,0.169,0.252,0.778088216,81041,104154,,,0.230360355,,,0.189082868,0.274863451,0.377358491,20,53,0.30771596,0.445557044,351.7,367,104362,,,11.71316166,262,22368,10.29482423,13.13149909,,,,,,,36.26943005,24.10077287,52.4194248,38.81048387,30.62862694,48.50644582,7.734626069,6.462438283,9.006813855,,,,23.41137124,12.79921451,39.28030288,0.05612476,4585,81693,0.048975824,0.063273696,0.000479102,50,104362,,,2087.24,0.000770446,80,103836,,,1297.95,0.001733503,180,103836,,,576.8666667,2174,,,,,47368,,3084,,2069,0.55,,,,,,0.42,,0.36,0.55,0.56,,,,,,0.56,0.18,0.46,0.57,0.924553113,67497,73005,0.915469643,0.933636583,0.62215195,15346,24666,0.585123339,0.659180562,0.025567274,1440,56322,,,0.115,2436,,0.081638298,0.148361702,,,,0.154446178,0,0.328279065,0.605058366,0.11441467,1,0.144218815,0.07550427,0.212933359,0.099898429,0.071842028,0.127954829,3.685063217,125329,34010,3.489018706,3.881107728,0.187893728,4116,21906,0.148827517,0.226959939,11.59425845,121,104362,,,100.5266512,519,516281,91.87789593,109.1754064,,,,,,,,,,,,,108.259055,98.7411337,117.7769763,,,,8.3,,,,,0,,,,,0.092623538,3880,41890,0.079029523,0.106217552,0.07480457,0.062564205,0.087044935,0.010981141,0.006073528,0.015888754,0.012413464,0.007144467,0.017682461,0.802625312,42129,52489,0.788037974,0.81721265,,,,0.589805825,0.430077283,0.749534367,,,,0.710344828,0.610101642,0.810588013,0.812580521,0.791721635,0.833439408,0.237,,52489,0.219692617,0.254307383,78.59481217,,,78.07257278,79.11705155,,,,96.5671222,58.1096301,135.0246143,,,,83.79558649,77.56597466,90.02519832,78.52089543,77.97495937,79.0668315,,,,342.9609036,1382,285768,323.8416529,362.0801544,,,,,,,861.1381309,526.0055421,1329.958001,280.469205,186.3697499,405.3560913,343.3094565,323.291825,363.3270879,,,,34.68679861,34,98020,24.02161639,48.47132432,,,,,,,,,,,,,32.14937887,20.8053829,47.45882526,,,,5.081719544,37,7281,3.577999529,7.004480997,,,,,,,,,,,,,4.830113258,3.234802655,6.936848341,,,,,,,0.098,,,0.083,0.115,0.149,,,0.127,0.172,0.076,,,0.064,0.09,77.3,69,89217,,,0.066,6880,,,,0.066865655,6795.7571,101633,,,19.95706013,62,310667,15.30096357,25.58405041,,,,,,,,,,,,,20.34824569,15.37084612,26.42388957,,,,0.327,,,0.31,0.342,0.06320504,3782,59837,0.054864615,0.071545466,0.038456519,884,22987,0.027733115,0.049179923,0.001155669,120,103836,,,865.3,0.937883065,930.38,992,,,,,,,,3.101622637,,,,,,3.015300862,2.456818668,2.671726004,3.202693602,3.055832224,,,,,,2.955138898,2.03855982,2.649338693,3.19334658,0.093048728,,,,,1783.49795,,,,,0.772076132,45920,59476,0.747629771,0.796522493,71206,,,66095.70213,76316.29787,122813,11467.12766,234158.8723,100797,95143.38298,106450.617,,,,63561,44020.57447,83101.42553,70433,67531.7234,73334.2766,,,,,,0.425645321,5590,13133,,,60.35182286,,,,,0.332921383,,71206,,,5.93141798,32,5395,,,,,,,,,,,,,,,,,,,,,,,,,,17.37999562,91,516281,13.88252321,21.49063373,17.62606023,,,,,,,,,,,,,17.68663218,13.93505451,22.13745757,,,,9.297262537,48,516281,6.855067458,12.32682128,,,,,,,,,,,,,10.01995278,7.335864767,13.36521284,,,,10.13328743,73,720398,7.942879759,12.74108759,,,,,,,,,,,,,10.88264467,8.483555408,13.74956685,,,,13.58695652,,9200,,,125,,0.728152623,57251,78625,,,0.77,,,,,207.3494899,,,,,0.706452983,29931,42368,0.688512012,0.724393955,0.076000867,3157,41539,0.065624502,0.086377231,0.86874528,36807,42368,0.854271731,0.883218828,103836,,,,,0.207741053,21571,103836,,,0.201384876,20911,103836,,,0.022208097,2306,103836,,,0.005970954,620,103836,,,0.017720251,1840,103836,,,0.000808968,84,103836,,,0.061443045,6380,103836,,,0.87981047,91356,103836,,,0.009811168,969,98765,0.006604762,0.013017574,0.502995108,52229,103836,,,0.362568888,37763,104154,, -55,041,55041,WI,Forest County,2024,1,12856.92082,189,24669,9667.449401,16046.39225,0,33119.49973,22345.58739,47280.14524,,,,,2,,,,2,,,,2,10350.49022,6772.869223,13928.11122,,,,,2,,0.165,,,0.14,0.194,4.035094745,,,3.181857436,4.911419454,5.053597211,,,4.033283434,6.030252445,0.084057971,58,690,0.063353937,0.104762005,0,0.074324324,0.032065236,0.116583413,,,,,,,,,,0.087719298,0.061754469,0.113684127,,,,,,,0.199,,,0.162,0.239,0.399,,,0.325,0.475,7.3,0.124554438,0.105,,,0.224,,,0.181,0.27,0.819479246,7522,9179,,,0.220214101,,,0.179232315,0.264805107,0.5,4,8,0.315552499,0.64971552,151.2,14,9258,,,21.19927317,35,1651,14.7660705,29.48305716,37.61755486,19.43753953,65.71029796,,,,,,,,,,17.09401709,10.13099789,27.01591668,,,,,,,0.10348906,700,6764,0.089191187,0.117786932,,0,9258,,,,0.000426394,4,9381,,,2345.25,0.001812174,17,9381,,,551.8235294,1815,,,,,,,,,1764,0.52,,,,,0.16,,,,0.55,0.31,,,,,0.3,,,,0.31,0.902579219,6124,6785,0.885917832,0.919240605,0.555310952,1009,1817,0.480633686,0.629988218,0.047021944,180,3828,,,0.196,347,,0.128085106,0.263914894,0.471428571,0.33573139,0.607125752,,,,,,,0.48,0.443714565,0.516285435,0.1272052,0.084064252,0.170346148,4.237973194,100868,23801,3.946711418,4.52923497,0.196648045,352,1790,0.131480111,0.261815978,9.7213221,9,9258,,,143.8594162,65,45183,111.0276603,183.3606352,381.9223425,244.7048513,568.2701718,,,,,,,,,,115.0877193,82.58893437,156.1294865,,,,5.4,,,,,1,,,,,0.114503817,450,3930,0.092187618,0.136820015,0.089548387,0.066727101,0.112369674,0.017811705,0.006728537,0.028894873,0.010178117,0.003276788,0.017079446,0.77857906,2915,3744,0.750566965,0.806591154,0.803225807,0.699885412,0.906566201,,,,,,,,,,0.766762797,0.725950646,0.807574949,0.316,,3744,0.275647367,0.356352633,72.94768183,,,70.74100194,75.15436171,,,,,,,,,,,,,74.94624511,72.38718099,77.50530924,,,,513.4798571,189,24669,430.7363058,596.2234084,1346.668021,982.2688949,1801.947764,,,,,,,,,,417.0762222,334.9198299,499.2326144,,,,125.849484,10,7946,60.34971931,231.4416819,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.118,,,0.101,0.137,0.164,,,0.142,0.188,0.094,,,0.079,0.11,62.7,5,7980,,,0.105,960,,,,0.124554438,1158.854493,9304,,,44.08199251,12,27222,22.77780879,77.00236958,,,,,,,,,,,,,,,,,,,0.332,,,0.318,0.345,0.113537977,577,5082,0.095665637,0.131410318,0.075070028,134,1785,0.054814709,0.095325347,0.001065984,10,9381,,,938.1,0.884855769,92.025,104,,,,,,,,2.826578568,,,,,,,,,3.045968723,2.871964122,,,,,,,,,3.230390664,0.03393147,,,,,-47.4733,,,,,0.910411775,43423,47696,0.849644133,0.971179417,56118,,,48983.3617,63252.6383,37198,21690.76596,52705.23404,,,,,,,,,,55427,52155.17021,58698.82979,,,,,,0.459693538,690,1501,,,,,,,,0.25569336,,56118,,,9.633911368,5,519,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20.53582712,13,63304,10.93446305,35.1168898,,,,,,,,,,,,,,,,,,,28.33333333,,600,,,17,,0.703760446,5053,7180,,,0.375,,,,,11.81492559,,,,,0.812785388,3026,3723,0.787256913,0.838313863,0.099742784,349,3499,0.074012621,0.125472947,0.817351598,3043,3723,0.798744806,0.83595839,9381,,,,,0.192623388,1807,9381,,,0.248587571,2332,9381,,,0.007248694,68,9381,,,0.14795864,1388,9381,,,0.002984756,28,9381,,,0.00138578,13,9381,,,0.025477028,239,9381,,,0.799061934,7496,9381,,,0.001489289,13,8729,0,0.007748868,0.494829976,4642,9381,,,1,9179,9179,, -55,043,55043,WI,Grant County,2024,1,6895.692816,641,142557,6025.166924,7766.218708,0,,,,2,,,,2,,,,2,,,,2,7107.728394,6185.501616,8029.955173,,,,,2,,0.142,,,0.117,0.171,3.553575732,,,2.788489035,4.408418699,4.78126971,,,3.856969868,5.819915042,0.06242166,249,3989,0.054914157,0.069929162,0,,,,,,,,,,0.147540984,0.084609315,0.210472652,0.058981233,0.051420608,0.066541859,,,,,,,0.171,,,0.132,0.212,0.346,,,0.275,0.423,9,0.036869675,0.072,,,0.213,,,0.17,0.263,0.670857561,34843,51938,,,0.237525436,,,0.195208147,0.285260003,0.351351351,13,37,0.265703518,0.435893311,261,136,52110,,,6.209037599,90,14495,4.992799457,7.631961352,,,,,,,,,,,,,5.606115763,4.42425889,7.006682818,,,,,,,0.079948076,3141,39288,0.069224672,0.09067148,0.000422184,22,52110,,,2368.636364,0.000448553,23,51276,,,2229.391304,0.00152118,78,51276,,,657.3846154,3076,,,,,,,,,3061,0.47,,,,,,,,,0.47,0.43,,,,,,,,,0.43,0.924611837,30073,32525,0.915945297,0.933278378,0.703621516,7927,11266,0.659015027,0.748228005,0.027410979,739,26960,,,0.154,1628,,0.107531915,0.200468085,,,,0.032258065,0,0.981551195,0.707446809,0.549061631,0.865831987,0.156334232,0.017290375,0.295378089,0.139274062,0.112432694,0.16611543,3.915748084,116517,29756,3.648255989,4.18324018,0.175469429,1897,10811,0.140610546,0.210328313,11.51410478,60,52110,,,66.63489887,172,258123,56.67640659,76.59339114,,,,,,,,,,,,,68.66475659,58.28145866,79.04805451,,,,8.4,,,,,1,,,,,0.122360723,2405,19655,0.106152983,0.138568462,0.106521174,0.090055971,0.122986378,0.018570338,0.012477941,0.024662736,0.012210633,0.007768383,0.016652884,0.7583788,19460,25660,0.742245903,0.774511696,,,,,,,,,,0.649509804,0.503495776,0.795523832,0.740430563,0.721490294,0.759370832,0.275,,25660,0.251957692,0.298042308,77.9336815,,,77.18207662,78.68528638,,,,,,,,,,,,,77.72387335,76.94614567,78.50160104,,,,349.6078938,641,142557,320.9392754,378.2765122,,,,,,,,,,,,,356.4557521,326.7789703,386.1325339,,,,60.35554905,33,54676,41.54598283,84.76163082,,,,,,,,,,,,,60.96361849,41.421821,86.53299017,,,,5.006257822,20,3995,3.057952337,7.731759175,,,,,,,,,,,,,,,,,,,,,,0.107,,,0.09,0.126,0.155,,,0.132,0.179,0.084,,,0.07,0.099,45,20,44476,,,0.072,3750,,,,0.036869675,1888.022337,51208,,,9.704341075,15,154570,5.431446033,16.00583481,,,,,,,,,,,,,10.25059283,5.737178991,16.90679401,,,,0.325,,,0.307,0.342,0.081914968,2339,28554,0.070000075,0.093829862,0.075101968,847,11278,0.054846649,0.095357288,0.001053124,54,51276,,,949.5555556,0.943726236,496.4,526,,,0.069937107,278,3975,0.039853257,0.100020957,3.200811015,,,,,,,,3.052706937,3.216474498,3.193889663,,,,,,,,3.037460698,3.21675279,0.074683468,,,,,1689.44463,,,,,0.867499079,44743,51577,0.819764447,0.915233712,63247,,,57773.29787,68720.70213,,,,,,,,,,56250,36620.21277,75879.78723,63601,60829.59575,66372.40426,,,,,,0.424390947,2944,6937,,,63.02641767,,,,,0.295903363,,63247,,,7.804546997,23,2947,,,,,,,,,,,,,,,,,,,,,,,,,,13.83177793,37,258123,9.521159489,19.42495882,14.3342515,,,,,,,,,,,,,14.11880733,9.593044583,20.04052001,,,,8.135656257,21,258123,5.03609945,12.4362148,,,,,,,,,,,,,7.765656995,4.675432798,12.12703535,,,,13.7897939,50,362587,10.23505083,18.18012413,,,,,,,,,,,,,13.65524856,10.03336302,18.15858576,,,,19.76744186,,4300,,,85,,0.633626129,25608,40415,,,0.712,,,,,71.24749195,,,,,0.69672255,13839,19863,0.681820878,0.711624221,0.095589389,1827,19113,0.079857206,0.111321573,0.82832402,16453,19863,0.812343585,0.844304454,51276,,,,,0.20949372,10742,51276,,,0.186227475,9549,51276,,,0.014665731,752,51276,,,0.0033934,174,51276,,,0.009244091,474,51276,,,0.000312037,16,51276,,,0.021784071,1117,51276,,,0.943911382,48400,51276,,,0.003598005,176,48916,0.001479573,0.005716437,0.482564943,24744,51276,,,0.772074396,40100,51938,, -55,045,55045,WI,Green County,2024,1,6196.807025,409,101710,5191.334008,7202.280041,0,,,,2,,,,2,,,,2,,,,2,6336.616627,5276.121505,7397.11175,,,,,2,,0.123,,,0.101,0.145,3.203952927,,,2.487279579,3.995280148,4.553689015,,,3.658048433,5.521119012,0.063786839,158,2477,0.054163052,0.073410625,0,,,,,,,,,,,,,0.066134044,0.055872084,0.076396003,,,,,,,0.153,,,0.119,0.189,0.373,,,0.299,0.448,9.2,0.035991963,0.062,,,0.202,,,0.161,0.245,0.670584746,24874,37093,,,0.249966544,,,0.205734053,0.298301359,0.333333333,8,24,0.22460658,0.441421063,197.4,73,36988,,,7.95994351,62,7789,6.102843046,10.20428834,,,,,,,,,,,,,7.038207412,5.206904589,9.304883452,,,,,,,0.062316344,1845,29607,0.053975919,0.07065677,0.000729967,27,36988,,,1369.925926,0.00051608,19,36816,,,1937.684211,0.001358105,50,36816,,,736.32,1966,,,,,,,,,1976,0.41,,,,,,,,,0.41,0.6,,,,,,,,,0.6,0.932323728,24687,26479,0.922060395,0.942587062,0.697809204,6020,8627,0.649562802,0.746055605,0.024315085,505,20769,,,0.086,661,,0.053829787,0.118170213,,,,,,,0.350877193,0.06720057,0.634553817,0.004319654,0,0.077825184,0.07878349,0.053616111,0.103950869,3.781125999,131500,34778,3.456394798,4.105857201,0.16674938,1344,8060,0.125451046,0.208047714,9.732886342,36,36988,,,79.74784491,147,184331,66.85596179,92.63972803,,,,,,,,,,,,,83.04594055,69.48177026,96.61011084,,,,9,,,,,0,,,,,0.108595801,1655,15240,0.091738767,0.125452834,0.085420809,0.070057836,0.100783781,0.01312336,0.00800853,0.01823819,0.016732284,0.00916964,0.024294927,0.801371967,15654,19534,0.782854187,0.819889747,,,,,,,,,,,,,0.776046362,0.747573742,0.804518982,0.378,,19534,0.351118775,0.404881225,79.22482609,,,78.33915778,80.11049439,,,,,,,,,,,,,79.03772145,78.12040146,79.95504144,,,,284.7120858,409,101710,255.0644827,314.3596888,,,,,,,,,,,,,289.0996184,258.3745758,319.8246609,,,,45.4416359,16,35210,25.97382123,73.79436977,,,,,,,,,,,,,41.58935313,22.14457896,71.11906046,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.095,,,0.081,0.111,0.145,,,0.123,0.167,0.074,,,0.061,0.087,25.3,8,31601,,,0.062,2290,,,,0.035991963,1326.015895,36842,,,13.5683983,15,110551,7.594129526,22.37900957,,,,,,,,,,,,,14.44766574,8.08624884,23.8292275,,,,0.304,,,0.286,0.322,0.066552822,1442,21667,0.055829418,0.077276227,0.051738559,433,8369,0.037440687,0.066036431,0.000950674,35,36816,,,1051.885714,0.94003856,365.675,389,,,,,,,,3.137084879,,,,,,,,2.691619809,3.167536884,3.13303101,,,,,,,,2.656482741,3.183843361,0.053555994,,,,,3565.090917,,,,,0.784780141,47706,60789,0.722603441,0.846956842,79337,,,76364.23404,82309.76596,51250,9510.93617,92989.06383,110104,101030.8085,119177.1915,70917,46649.93617,95184.06383,,,,76182,72630.17021,79733.82979,,,,,,0.346565162,1912,5517,,,76.63197442,,,,,0.306653894,,79337,,,8.316008316,16,1924,,,,,,,,,,,,,,,,,,,,,,,,,,15.3777353,30,184331,10.13402446,22.37379751,16.27507039,,,,,,,,,,,,,15.54360624,10.15359966,22.77498453,,,,8.680037541,16,184331,4.961391439,14.09583716,,,,,,,,,,,,,8.650618808,4.841685679,14.26788018,,,,15.08167306,39,258592,10.72454387,20.61714356,,,,,,,,,,,,,15.60152074,11.04056463,21.41430615,,,,13.71428571,,3500,,,48,,0.758674464,21406,28215,,,0.739,,,,,76.64836256,,,,,0.753751443,11754,15594,0.731104096,0.776398789,0.081219946,1233,15181,0.065594884,0.096845008,0.853276901,13306,15594,0.836911348,0.869642454,36816,,,,,0.211728596,7795,36816,,,0.207328336,7633,36816,,,0.007170795,264,36816,,,0.00412864,152,36816,,,0.006546067,241,36816,,,0.000679053,25,36816,,,0.03680465,1355,36816,,,0.936033246,34461,36816,,,0.007796494,274,35144,0.004168253,0.011424736,0.492258801,18123,36816,,,0.710861888,26368,37093,, -55,047,55047,WI,Green Lake County,2024,1,7513.521168,269,51609,5968.124611,9058.917725,0,,,,2,,,,2,,,,2,,,,2,7345.538078,5747.121557,8943.954599,,,,,2,,0.145,,,0.118,0.172,3.553196382,,,2.764739851,4.468734533,5.021621653,,,4.00947022,6.150996451,0.075714286,106,1400,0.061856811,0.08957176,0,,,,,,,,,,0.093457944,0.038305308,0.14861058,0.074459568,0.059900525,0.08901861,,,,,,,0.176,,,0.136,0.219,0.369,,,0.291,0.455,8.7,0.028098973,0.088,,,0.221,,,0.177,0.272,0.656115259,12478,19018,,,0.217493187,,,0.176589276,0.263473974,0.375,3,8,0.179126284,0.556186502,187.2,36,19229,,,10.68588469,43,4024,7.733427737,14.39381655,,,,,,,,,,,,,10.09817672,7.072638827,13.9801331,,,,,,,0.090214797,1323,14665,0.077108414,0.10332118,0.000832077,16,19229,,,1201.8125,0.000572321,11,19220,,,1747.272727,0.001040583,20,19220,,,961,1420,,,,,,,,,1439,0.55,,,,,,,,,0.55,0.54,,,,,,,,,0.54,0.910679899,12296,13502,0.896424701,0.924935098,0.602167183,2334,3876,0.543498951,0.660835415,0.033289531,304,9132,,,0.148,592,,0.099148936,0.196851064,,,,,,,0.357142857,0,0.82009342,0.228571429,0.108427858,0.348714999,0.20572089,0.159106798,0.252334982,3.91533053,119167,30436,3.504245121,4.326415938,0.181993724,754,4143,0.130334609,0.23365284,14.0412918,27,19229,,,93.95321341,89,94728,75.45214524,115.6175137,,,,,,,,,,,,,100.0862813,80.16500838,123.4560582,,,,7.9,,,,,0,,,,,0.117757009,945,8025,0.09864063,0.136873388,0.089703095,0.07137449,0.108031701,0.016697819,0.009388534,0.024007104,0.024922118,0.017246669,0.032597568,0.764612776,6763,8845,0.740013857,0.789211694,,,,,,,,,,,,,0.752518187,0.707185633,0.797850741,0.348,,8845,0.312235467,0.383764534,77.33462077,,,76.10574612,78.56349543,,,,,,,,,,,,,77.40688912,76.13813671,78.67564153,,,,347.9241473,269,51609,301.4582165,394.3900782,,,,,,,,,,,,,349.4724049,301.2697156,397.6750942,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.107,,,0.089,0.126,0.157,,,0.134,0.184,0.086,,,0.071,0.102,67.2,11,16363,,,0.088,1670,,,,0.028098973,535.3135333,19051,,,19.28133217,11,57050,9.625171546,34.4996293,,,,,,,,,,,,,19.15672114,9.186392399,35.22989223,,,,0.319,,,0.301,0.335,0.09264692,979,10567,0.077157558,0.108136281,0.083506824,361,4323,0.058485547,0.108528101,0.000832466,16,19220,,,1201.25,0.8937751,222.55,249,,,,,,,,3.169151641,,,,,,,,,3.234832365,2.982545887,,,,,,,,,3.088249209,0.053233154,,,,,97.864675,,,,,0.838923373,46223,55098,0.763526416,0.91432033,66070,,,61581.65957,70558.34043,,,,107500,10902.38298,204097.617,,,,64327,44896.19149,83757.80851,66532,61472.93617,71591.06383,,,,,,0.475381415,1371,2884,,,55.87886814,,,,,0.356909339,,66070,,,5.687203792,6,1055,,,,,,,,,,,,,,,,,,,,,,,,,,13.66845703,13,94728,6.823244504,24.45664525,13.72350308,,,,,,,,,,,,,15.02700844,7.501428469,26.88746898,,,,,,,,,,,,,,,,,,,,,,,,,,,12.84929291,17,132303,7.485186632,20.57296268,,,,,,,,,,,,,13.96464481,8.134920212,22.35874911,,,,12.94117647,,1700,,,22,,0.737966805,10671,14460,,,0.645,,,,,9.255758906,,,,,0.767352025,6158,8025,0.746593898,0.788110152,0.091335505,701,7675,0.072536525,0.110134485,0.813831776,6531,8025,0.794303776,0.833359776,19220,,,,,0.21144641,4064,19220,,,0.241519251,4642,19220,,,0.007960458,153,19220,,,0.008168574,157,19220,,,0.007544225,145,19220,,,0.000676379,13,19220,,,0.056503642,1086,19220,,,0.913111342,17550,19220,,,0.009365994,169,18044,0.004104553,0.014627435,0.494536941,9505,19220,,,0.72646966,13816,19018,, -55,049,55049,WI,Iowa County,2024,1,5072.393488,249,65740,3985.088176,6159.698801,0,,,,2,,,,2,,,,2,,,,2,5078.643805,3953.626174,6203.661436,,,,,2,,0.117,,,0.098,0.139,3.074686008,,,2.378669563,3.915916136,4.50250098,,,3.593523488,5.546284132,0.055648303,100,1797,0.045049059,0.066247546,0,,,,,,,,,,,,,0.055588409,0.044667544,0.066509274,,,,,,,0.149,,,0.116,0.187,0.337,,,0.265,0.419,9.4,0.01577688,0.064,,,0.185,,,0.147,0.229,0.407566747,9663,23709,,,0.242153564,,,0.197798092,0.2919594,0.285714286,6,21,0.169385198,0.406827936,172.6,41,23756,,,6.819590825,33,4839,4.694292534,9.577241015,,,,,,,,,,,,,6.024096386,3.969917477,8.764743964,,,,,,,0.054199399,1028,18967,0.047050463,0.061348335,0.000505136,12,23756,,,1979.666667,0.000544731,13,23865,,,1835.769231,0.00087995,21,23865,,,1136.428571,4036,,,,,,,,,4053,0.43,,,,,,,,,0.43,0.45,,,,,,,,,0.45,0.954760777,16124,16888,0.943868432,0.965653122,0.695539515,3758,5403,0.639864952,0.751214078,0.02595296,352,13563,,,0.106,536,,0.073829787,0.138170213,,,,,,,0.666666667,0.042682552,1,0.294117647,0.115063676,0.473171618,0.077073808,0.057423687,0.096723929,3.818705234,138619,36300,3.337059144,4.300351324,0.185624164,971,5231,0.137356437,0.23389189,8.418925745,20,23756,,,64.94601889,77,118560,51.25438247,81.17138031,,,,,,,,,,,,,66.58794492,52.37564275,83.46856556,,,,8.4,,,,,1,,,,,0.106014271,1040,9810,0.084761733,0.127266809,0.094447328,0.073544684,0.115349971,0.007543323,0.003544769,0.011541878,0.010703364,0.006188743,0.015217985,0.764940551,9779,12784,0.743452444,0.786428658,,,,,,,,,,,,,0.763120314,0.733932185,0.792308444,0.38,,12784,0.346958988,0.413041012,80.65284624,,,79.58455975,81.72113274,,,,,,,,,,,,,80.55401555,79.47120262,81.63682849,,,,251.2169796,249,65740,217.4888224,284.9451369,,,,,,,,,,,,,251.835261,217.397264,286.2732581,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.092,,,0.078,0.108,0.144,,,0.124,0.168,0.073,,,0.061,0.086,79,16,20244,,,0.064,1520,,,,0.01577688,373.7069542,23687,,,,,,,,,,,,,,,,,,,,,,,,,,0.3,,,0.281,0.317,0.05880223,812,13809,0.049270316,0.068334145,0.042796532,232,5421,0.029690149,0.055902915,0.000670438,16,23865,,,1491.5625,0.956224066,230.45,241,,,,,,,,3.250216698,,,,,,,,,3.287512564,3.375690373,,,,,,,,,3.401617205,0.059172559,,,,,5003.02894,,,,,0.843926467,47973,56845,0.774937977,0.912914956,76404,,,70165.3617,82642.6383,,,,69167,21592.02128,116741.9787,,,,90625,20615.46809,160634.5319,79045,75099.97872,82990.02128,,,,,,0.295422634,1052,3561,,,,,,,,0.261282132,,76404,,,5.255255255,7,1332,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.26241515,27,166027,10.71703406,23.66096023,,,,,,,,,,,,,16.43998457,10.73914374,24.08838647,,,,10.43478261,,2300,,,24,,0.771972414,13992,18125,,,0.763,,,,,11.36458788,,,,,0.780193977,7642,9795,0.764894586,0.795493367,0.087874587,824,9377,0.070298109,0.105451064,0.8618683,8442,9795,0.840457026,0.883279575,23865,,,,,0.214414414,5117,23865,,,0.208212864,4969,23865,,,0.008715692,208,23865,,,0.003226482,77,23865,,,0.008757595,209,23865,,,0.000544731,13,23865,,,0.022752986,543,23865,,,0.942928976,22503,23865,,,0.001556316,35,22489,0,0.004756734,0.491011942,11718,23865,,,0.793411785,18811,23709,, -55,051,55051,WI,Iron County,2024,1,6692.839286,107,15158,4028.583967,9357.094604,1,,,,2,,,,2,,,,2,,,,2,5991.699846,3491.947648,8491.452045,1,,,,2,,0.137,,,0.115,0.163,3.526326118,,,2.778577296,4.381298274,4.824605026,,,3.835627418,5.855620793,0.048872181,13,266,0.022962291,0.07478207,1,,,,,,,,,,,,,0.050420168,0.022620765,0.078219572,,,,,,,0.17,,,0.134,0.211,0.363,,,0.288,0.447,8.3,0.030561181,0.107,,,0.21,,,0.168,0.257,0.565748737,3472,6137,,,0.201233937,,,0.162083751,0.244472464,0.538461539,7,13,0.406585144,0.648781759,259,16,6178,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.06066396,254,4187,0.051132045,0.070195875,0.000161865,1,6178,,,6178,0.000482005,3,6224,,,2074.666667,0.001446015,9,6224,,,691.5555556,1420,,,,,,,,,1465,0.48,,,,,,,,,0.48,0.34,,,,,,,,,0.34,0.962130417,4751,4938,0.949951713,0.974309122,0.761638734,818,1074,0.677315924,0.845961543,0.05105704,128,2507,,,0.164,156,,0.102042553,0.225957447,,,,,,,,,,,,,0.150385604,0.103826117,0.196945091,4.170087065,107288,25728,3.73496314,4.60521099,0.261487965,239,914,0.187982308,0.334993622,4.855940434,3,6178,,,110.6883431,32,28910,75.71074476,156.2589142,,,,,,,,,,,,,105.4660508,70.63226948,151.4668416,,,,5.4,,,,,0,,,,,0.134615385,385,2860,0.107775158,0.161455612,0.120871399,0.093989911,0.147752886,0.00979021,0,0.019586684,0.008391608,0.001476737,0.01530648,0.811627029,2150,2649,0.78383966,0.839414398,,,,,,,,,,,,,0.782897862,0.723753001,0.842042724,0.231,,2649,0.192171338,0.269828662,78.56150856,,,76.35213765,80.77087946,,,,,,,,,,,,,78.9622891,76.78779692,81.13678128,,,,350.827915,107,15158,269.9095632,431.7462669,,,,,,,,,,,,,337.8669732,259.1601575,416.5737889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.104,,,0.088,0.122,0.156,,,0.133,0.18,0.084,,,0.07,0.099,,,,,,0.107,650,,,,0.030561181,180.7999481,5916,,,,,,,,,,,,,,,,,,,,,,,,,,0.317,,,0.298,0.335,0.066954644,217,3241,0.05503975,0.078869537,0.039880359,40,1003,0.025582487,0.054178231,0.000321337,2,6224,,,3112,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.044756138,,,,,-235.988,,,,,0.80709699,43488,53882,0.729222231,0.884971749,60694,,,55761.23404,65626.76596,55833,44484.06383,67181.93617,,,,,,,62868,42518.55319,83217.44681,55786,51476.38298,60095.61702,,,,,,0.399688958,257,643,,,,,,,,0.251968893,,60694,,,5.405405405,1,185,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,25,,400,,,10,,0.831950208,4010,4820,,,0.42,,,,,45.09518772,,,,,0.849370962,2498,2941,0.799706503,0.899035421,0.093793584,269,2868,0.067643,0.119944169,0.843930636,2482,2941,0.823683664,0.864177608,6224,,,,,0.155044987,965,6224,,,0.332101542,2067,6224,,,0.002570694,16,6224,,,0.016709512,104,6224,,,0.003534704,22,6224,,,0,0,6224,,,0.016548843,103,6224,,,0.943926735,5875,6224,,,0.003540718,21,5931,0,0.013758585,0.491484576,3059,6224,,,0.671500733,4121,6137,, -55,053,55053,WI,Jackson County,2024,1,9277.790626,347,57376,7708.974964,10846.60629,0,24975.57512,16162.87535,36868.87576,,,,,2,,,,2,,,,2,8754.949024,7049.150571,10460.74748,,,,,2,,0.154,,,0.129,0.181,3.723307804,,,2.906393753,4.583957341,4.889453288,,,3.886031911,5.972793713,0.055063291,87,1580,0.043815688,0.066310894,0,,,,,,,,,,,,,0.054154303,0.042072333,0.066236273,,,,,,,0.189,,,0.151,0.231,0.373,,,0.294,0.459,7.7,0.115148096,0.093,,,0.234,,,0.189,0.285,0.416836132,8814,21145,,,0.232235546,,,0.187518291,0.281107864,0.285714286,6,21,0.169385198,0.406827936,203.6,43,21121,,,14.16853095,57,4023,10.73110698,18.35697524,,,,,,,,,,,,,13.75429822,9.993894141,18.46450337,,,,,,,0.081866084,1274,15562,0.07114268,0.092589488,0.000899579,19,21121,,,1111.631579,0.00062392,13,20836,,,1602.769231,0.001679785,35,20836,,,595.3142857,3258,,,,,3693,,,,3122,0.44,,,,,0.28,,,,0.46,0.51,,,,,0.18,,,,0.53,0.918052575,13690,14912,0.908218926,0.927886224,0.501603206,2503,4990,0.45685623,0.546350183,0.037967914,355,9350,,,0.161,698,,0.102617021,0.219382979,0.372881356,0.248751348,0.497011364,,,,,,,0.373540856,0.242631648,0.504450065,0.10417258,0.079258029,0.129087132,4.569251421,115730,25328,3.949957268,5.188545575,0.174297722,788,4521,0.13704789,0.211547554,9.942711046,21,21121,,,110.2503844,114,103401,90.01163105,130.4891378,237.2291634,132.7753619,391.2734283,,,,,,,,,,106.9530758,86.53142514,130.7445889,,,,7.8,,,,,1,,,,,0.139478472,1150,8245,0.117845091,0.161111853,0.102020821,0.081402871,0.122638771,0.024863554,0.016548042,0.033179065,0.021831413,0.01454379,0.029119036,0.781554995,7127,9119,0.757159976,0.805950014,0.831125828,0.711117165,0.95113449,,,,,,,0.462184874,0.252982887,0.671386861,0.776179278,0.757567395,0.794791161,0.337,,9119,0.305975484,0.368024516,76.57561733,,,75.29374636,77.8574883,,,,,,,,,,,,,77.08911151,75.7005654,78.47765762,,,,437.3530112,347,57376,388.2609486,486.4450738,1105.674147,782.440833,1517.624153,,,,,,,,,,409.8225848,359.1661736,460.4789959,,,,71.37758744,14,19614,39.02279125,119.7594633,,,,,,,,,,,,,83.54218881,44.48269707,142.8596872,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.112,,,0.095,0.129,0.158,,,0.136,0.18,0.089,,,0.075,0.104,44.7,8,17898,,,0.093,1950,,,,0.115148096,2354.663408,20449,,,27.24620957,17,62394,15.87192113,43.62382091,,,,,,,,,,,,,22.41649854,11.58293191,39.15711172,,,,0.324,,,0.308,0.339,0.091503854,1021,11158,0.077205981,0.105801726,0.058099352,269,4630,0.041418501,0.074780203,0.000767902,16,20836,,,1302.25,0.876086957,201.5,230,,,,,,,,2.773941194,,,,,,,,,2.853879098,2.628446309,,,,,,,,,2.783443238,0.113218236,,,,,828.4564333,,,,,0.858828603,43814,51016,0.790777116,0.92688009,64344,,,58690.38298,69997.61702,36000,28044.42553,43955.57447,80938,69394.85106,92481.14894,,,,81250,19875.19149,142624.8085,65761,62346.19149,69175.80851,,,,,,0.535677706,1569,2929,,,,,,,,0.300556384,,64344,,,5.627009646,7,1244,,,,,,,,,,,,,,,,,,,,,,,,,,20.84279549,22,103401,12.73132096,32.19000718,21.27638998,,,,,,,,,,,,,19.78837201,11.52745592,31.68310052,,,,12.57241226,13,103401,6.694280027,21.49920786,,,,,,,,,,,,,12.38404035,6.182068323,22.15846901,,,,15.91508266,23,144517,10.08879719,23.88043822,,,,,,,,,,,,,12.8759164,7.359698747,20.90968156,,,,10.55555556,,1800,,,19,,0.643742099,10184,15820,,,0.642,,,,,46.40193374,,,,,0.755944931,6040,7990,0.729091728,0.782798135,0.123176022,937,7607,0.09901744,0.147334605,0.835669587,6677,7990,0.811289765,0.860049409,20836,,,,,0.213092724,4440,20836,,,0.206085621,4294,20836,,,0.021693223,452,20836,,,0.066999424,1396,20836,,,0.005279324,110,20836,,,0.001055865,22,20836,,,0.037867153,789,20836,,,0.859042043,17899,20836,,,0.007437013,147,19766,0.002879629,0.011994397,0.463236706,9652,20836,,,0.791203594,16730,21145,, -55,055,55055,WI,Jefferson County,2024,1,6380.541166,1089,236704,5752.943328,7008.139004,0,,,,2,,,,2,,,,2,5984.883411,4037.975705,8543.793208,,6285.828181,5630.55898,6941.097381,,,,,2,,0.12,,,0.097,0.145,3.124690778,,,2.445748705,3.907016257,4.419888547,,,3.573577089,5.363200948,0.062049569,353,5689,0.055780581,0.068318557,0,,,,,,,,,,0.060820368,0.04320283,0.078437906,0.059516299,0.052791576,0.066241022,,,,,,,0.144,,,0.109,0.184,0.332,,,0.266,0.403,9.4,0.024026164,0.06,,,0.184,,,0.146,0.227,0.750636042,63729,84900,,,0.237669538,,,0.195873071,0.282212567,0.326923077,17,52,0.254998049,0.399152589,260.2,221,84943,,,7.214810781,159,22038,6.093354224,8.336267339,,,,,,,,,,17.43264659,12.6665877,23.40251437,5.926901548,4.809081468,7.044721628,,,,,,,0.063401005,4266,67286,0.055060579,0.07174143,0.000388496,33,84943,,,2574.030303,0.000629488,54,85784,,,1588.592593,0.001224005,105,85784,,,816.9904762,2472,,,,,,,,6437,2424,0.48,,,,,,,,0.17,0.49,0.53,,,,,,0.62,0.36,0.36,0.53,0.927393461,55166,59485,0.916089524,0.938697397,0.660823882,13459,20367,0.621349423,0.700298341,0.02693456,1236,45889,,,0.099,1622,,0.068021277,0.129978723,,,,,,,0.116766467,0,0.257810025,0.152501017,0.078819033,0.226183,0.079267848,0.05410602,0.104429676,3.767085885,136587,36258,3.475934171,4.058237598,0.177058076,3067,17322,0.140744391,0.213371762,11.30169643,96,84943,,,92.2980568,392,424711,83.16101534,101.4350983,,,,,,,,,,41.46995024,22.08100195,70.91487788,97.89770613,87.93581865,107.8595936,,,,9,,,,,1,,,,,0.114992504,3835,33350,0.101893799,0.128091209,0.096048632,0.083371189,0.108726076,0.01814093,0.01177527,0.024506589,0.008395802,0.005205794,0.01158581,0.783799572,36228,46221,0.764124101,0.803475042,,,,,,,,,,0.686297041,0.586496287,0.786097795,0.768999066,0.743294216,0.794703916,0.404,,46221,0.375829402,0.432170598,78.70716605,,,78.12708768,79.28724443,,,,,,,,,,96.52590801,67.76627179,125.2855442,78.7310837,78.13760604,79.32456137,,,,327.4908669,1089,236704,307.0450937,347.9366401,,,,,,,,,,270.6053376,181.2286416,388.634404,328.3735427,306.9998756,349.7472099,,,,38.08634543,31,81394,25.87782389,54.06052719,,,,,,,,,,,,,33.32828359,20.88665789,50.45942189,,,,4.184829991,24,5735,2.681299539,6.226695308,,,,,,,,,,,,,,,,,,,,,,0.094,,,0.078,0.11,0.144,,,0.123,0.169,0.072,,,0.06,0.086,61.3,45,73360,,,0.06,5090,,,,0.024026164,2010.653588,83686,,,19.23454367,49,254750,14.2298213,25.42908679,,,,,,,,,,,,,20.28478068,14.85100891,27.05705479,,,,0.322,,,0.303,0.34,0.070984827,3565,50222,0.060261423,0.081708232,0.042827028,772,18026,0.030912134,0.054741921,0.000582859,50,85784,,,1715.68,0.953068732,984.52,1033,,,0.06623826,402,6069,0.033195382,0.099281138,3.01788149,,,,,,,,2.635421733,3.14771448,3.089460647,,,,,,,,2.713643586,3.223603353,0.055390476,,,,,2347.451,,,,,0.815489052,47932,58777,0.763641056,0.867337048,78728,,,73458.04255,83997.95745,,,,,,,,,,54638,41797.31915,67478.68085,78284,75637.70213,80930.29787,,,,,,0.363682245,3603,9907,,,72.1634416,,,,,0.277334621,,78728,,,7.753759399,33,4256,,,,,,,,,,,,,,,,,,,,,,,,,,15.18048004,65,424711,11.61186438,19.49996168,15.30452472,,,,,,,,,,,,,16.06561178,12.19929259,20.76852872,,,,8.476352155,36,424711,5.936732841,11.73484428,,,,,,,,,,,,,8.971757435,6.213202834,12.53713175,,,,11.61821534,69,593895,9.039665018,14.7035951,,,,,,,,,,,,,11.68015222,8.955105731,14.97342801,,,,6.621621622,,7400,,,49,,0.733231451,47979,65435,,,0.772,,,,,122.425063,,,,,0.731364729,24941,34102,0.715561522,0.747167937,0.088991708,2962,33284,0.073443525,0.104539891,0.881590523,30064,34102,0.865852351,0.897328694,85784,,,,,0.194068824,16648,85784,,,0.189848923,16286,85784,,,0.010782897,925,85784,,,0.005070876,435,85784,,,0.009908608,850,85784,,,0.000396344,34,85784,,,0.077158911,6619,85784,,,0.886004383,76005,85784,,,0.011357385,929,81797,0.007304231,0.015410539,0.496199758,42566,85784,,,0.445005889,37781,84900,, -55,057,55057,WI,Juneau County,2024,1,8647.721754,474,73478,7374.007438,9921.43607,0,45200.7751,25836.14847,73403.22693,1,,,,2,,,,2,,,,2,8392.75167,7045.95712,9739.546221,,,,,2,,0.152,,,0.128,0.18,3.754598847,,,2.991307581,4.627152339,4.702725207,,,3.772126651,5.748039998,0.073647871,128,1738,0.061367844,0.085927899,0,,,,,,,,,,,,,0.069418387,0.056960444,0.081876329,,,,,,,0.189,,,0.152,0.23,0.384,,,0.307,0.468,7.8,0.094283508,0.098,,,0.231,,,0.185,0.279,0.500261996,13366,26718,,,0.227159443,,,0.185307952,0.274367717,0.421052632,16,38,0.340090048,0.498159689,365.6,98,26802,,,17.42874718,85,4877,13.92146422,21.55091579,,,,,,,,,,,,,16.51546871,12.89871809,20.83201654,,,,,,,0.077631778,1542,19863,0.066908373,0.088355182,0.000746213,20,26802,,,1340.1,0.000372218,10,26866,,,2686.6,0.002158863,58,26866,,,463.2068966,2110,,,,,,,,,2118,0.42,,,,,,,,,0.42,0.3,,,,,,,,,0.3,0.893705584,17606,19700,0.881031317,0.906379851,0.562459442,3467,6164,0.516773034,0.60814585,0.032189974,427,13265,,,0.183,919,,0.130574468,0.235425532,,,,,,,,,,0.156146179,0.024370845,0.287921514,0.131603124,0.107472682,0.155733565,3.842477257,109818,28580,3.650692212,4.034262302,0.141341417,746,5278,0.11425964,0.168423194,10.07387508,27,26802,,,98.80979115,132,133590,81.95322586,115.6663564,,,,,,,,,,,,,99.86330187,82.14255274,117.584051,,,,8,,,,,0,,,,,0.12012987,1295,10780,0.101940426,0.138319314,0.101267011,0.082798139,0.119735883,0.020408163,0.01118461,0.029631716,0.004638219,0.002294427,0.006982011,0.806880505,9710,12034,0.797188387,0.816572623,,,,,,,,,,0.700803213,0.566715321,0.834891105,0.801745898,0.791110996,0.8123808,0.33,,12034,0.300380044,0.359619956,76.72291586,,,75.68326951,77.76256221,,,,,,,,,,,,,76.78855182,75.70448307,77.87262057,,,,431.2966672,474,73478,389.2737204,473.319614,1900.176365,1160.677089,2934.668283,,,,,,,,,,421.2879286,378.0178065,464.5580506,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.112,,,0.096,0.13,0.157,,,0.135,0.181,0.09,,,0.077,0.106,90.8,21,23125,,,0.098,2610,,,,0.094283508,2513.975466,26664,,,24.87655012,20,80397,15.19524309,38.41981405,,,,,,,,,,,,,23.16644409,13.49530739,37.09172115,,,,0.336,,,0.319,0.352,0.088040434,1289,14641,0.074934051,0.101146817,0.049481535,272,5497,0.035183663,0.063779408,0.000967766,26,26866,,,1033.307692,0.961915888,308.775,321,,,0.091150443,103,1130,0.032423034,0.149877851,2.952337929,,,,,,,,,2.959102817,2.791891567,,,,,,,,,2.813744728,0.048424373,,,,,640.46262,,,,,0.770455303,43946,57039,0.721484854,0.819425751,61904,,,56877.10638,66930.89362,28750,10156.80851,47343.19149,88092,86098.6383,90085.3617,,,,81000,30896.68085,131103.3192,63845,60886.53192,66803.46809,,,,,,0.548511577,1990,3628,,,,,,,,0.26201861,,61904,,,9.316770186,12,1288,,,,,,,,,,,,,,,,,,,,,,,,,,17.77382489,24,133590,11.13876143,26.90978448,17.96541657,,,,,,,,,,,,,19.75406159,12.22807547,30.19618152,,,,8.234149263,11,133590,4.110457645,14.73316754,,,,,,,,,,,,,9.004068202,4.494798405,16.11076519,,,,18.80830575,35,186088,13.10067409,26.15780027,,,,,,,,,,,,,19.37734143,13.33847023,27.21299179,,,,5.454545455,,2200,,,12,,0.651568441,13709,21040,,,0.57,,,,,21.06160034,,,,,0.792602378,8400,10598,0.774364901,0.810839854,0.099756928,1026,10285,0.082723894,0.116789961,0.813361012,8620,10598,0.79634664,0.830375383,26866,,,,,0.190910444,5129,26866,,,0.225228914,6051,26866,,,0.025534132,686,26866,,,0.016154247,434,26866,,,0.0063277,170,26866,,,0.000558327,15,26866,,,0.033983474,913,26866,,,0.909699993,24440,26866,,,0.005389881,137,25418,0.001681085,0.009098678,0.46419266,12471,26866,,,1,26718,26718,, -55,059,55059,WI,Kenosha County,2024,1,7238.065408,2328,478023,6780.718554,7695.412261,0,,,,2,,,,2,14461.5287,12074.71227,16848.34513,,6491.965285,5362.252058,7621.678513,,6764.313409,6257.013735,7271.613082,,,,,2,,0.138,,,0.116,0.16,3.502363297,,,2.82701128,4.293757676,4.831069612,,,4.052190254,5.749833896,0.078903457,993,12585,0.074193357,0.083613556,0,,,,0.109649123,0.069091562,0.150206683,0.143154969,0.125059075,0.161250862,0.069174233,0.058832945,0.079515521,0.069635827,0.064102236,0.075169418,,,,0.077694236,0.051427779,0.103960692,0.152,,,0.121,0.186,0.372,,,0.316,0.431,8.2,0.095477767,0.077,,,0.214,,,0.176,0.253,0.951977819,161028,169151,,,0.235192922,,,0.198610712,0.274450197,0.388235294,33,85,0.334570851,0.440938026,467,788,168732,,,15.69204069,651,41486,14.48660234,16.89747903,,,,,,,45.04264392,38.25159915,51.8336887,24.97966771,21.64061328,28.31872214,8.235869279,7.145073475,9.326665083,,,,24.26916713,17.63401399,32.58022409,0.068423644,9588,140127,0.060083219,0.07676407,0.000491904,83,168732,,,2032.915663,0.000703147,118,167817,,,1422.177966,0.001608895,270,167817,,,621.5444444,2416,,,,,,1780,2174,2122,2336,0.48,,,,,,0.4,0.45,0.39,0.49,0.53,,,,,,0.47,0.37,0.41,0.54,0.912796738,104549,114537,0.903634068,0.921959408,0.668260596,28649,42871,0.635623088,0.700898104,0.032836286,2953,89931,,,0.126,4496,,0.083106383,0.168893617,0.083333333,0,0.345500434,0.08801214,0,0.186611233,0.325123153,0.213821652,0.436424654,0.224890051,0.167672293,0.282107809,0.093959421,0.068660736,0.119258107,4.162983586,143548,34482,3.920017535,4.405949636,0.254099239,9484,37324,0.225906992,0.282291486,7.111869711,120,168732,,,97.66190772,826,845775,91.00164668,104.3221688,,,,,,,90.86856633,68.06679171,118.8583221,50.18820577,38.11000881,64.87989421,110.4648967,102.2932082,118.6365853,,,,7.4,,,,,1,,,,,0.146296153,9450,64595,0.132220429,0.160371877,0.129331153,0.115665548,0.142996758,0.015171453,0.010678148,0.019664758,0.006424646,0.003749466,0.009099826,0.812062814,69191,85204,0.798038331,0.826087297,,,,0.786344635,0.696620947,0.876068324,0.774476463,0.718339775,0.830613152,0.76918086,0.752485883,0.785875837,0.795785757,0.778176286,0.813395228,0.375,,85204,0.353355521,0.396644479,77.17917128,,,76.77523771,77.58310485,,,,86.07319869,81.90726964,90.23912775,70.0800718,68.30039558,71.85974801,79.40899315,77.32619953,81.49178677,77.4957609,77.05699315,77.93452865,,,,382.7828812,2328,478023,366.7102965,398.8554658,,,,,,,722.4469921,622.6956104,822.1983738,340.3972608,285.1025166,395.692005,370.47343,352.9221604,388.0246996,,,,42.58322688,73,171429,33.37845226,53.54201459,,,,,,,112.7183919,66.80406275,178.143655,29.18933263,14.57120968,52.22777899,38.66173808,27.74433075,52.44901325,,,,6.234899852,80,12831,4.943887818,7.759872572,,,,,,,17.06484642,11.04346884,25.19107966,,,,4.072831816,2.82055443,5.691374233,,,,,,,0.101,,,0.086,0.117,0.147,,,0.127,0.168,0.083,,,0.071,0.097,148.1,212,143171,,,0.077,13030,,,,0.095477767,15889.98281,166426,,,27.36414392,139,507964,22.81499098,31.91329685,,,,,,,34.11319897,17.6267877,59.58889345,,,,30.81883268,25.23439658,36.40326877,,,,0.321,,,0.306,0.336,0.079395323,8209,103394,0.067480429,0.091310216,0.039151418,1517,38747,0.028428014,0.049874822,0.000893831,150,167817,,,1118.78,0.887077799,1869.96,2108,,,0.067745617,653,9639,0.041971741,0.093519492,3.022958334,,,,,,3.551455473,2.345105396,2.714280589,3.287765665,2.958954474,,,,,,3.500358509,2.178248162,2.629990599,3.253518473,0.121644423,,,,,2472.611464,,,,,0.821955927,51101,62170,0.77421631,0.869695545,75067,,,70009.12766,80124.87234,,,,77604,43582.21277,111625.7872,44984,32779.57447,57188.42553,64185,60810.70213,67559.29787,79834,77103.10638,82564.89362,,,,,,0.456832889,12001,26270,,,50.10443291,,,,,0.340722288,,75067,,,8.250475989,78,9454,,,4.989872251,59,1182395,3.798521952,6.43657165,,,,,,,25.81152669,15.97774184,39.45566039,6.918238994,3.453559979,12.37864057,2.802404687,1.813568554,4.136902143,,,,14.43532853,129,845775,11.8698941,17.00076296,15.25228341,,,,,,,,,,9.987821341,4.985884428,17.8709713,15.63163414,12.57401826,18.68925003,,,,12.05994502,102,845775,9.719484534,14.40040551,,,,,,,30.86102253,18.29019782,48.77372058,10.38376671,5.365443784,18.13835075,11.17237559,8.72571803,14.0924316,,,,8.288262383,98,1182395,6.728812036,10.10073709,,,,,,,,,,,,,9.303983562,7.410570973,11.53368746,,,,10.25641026,,15600,,,160,,0.713873135,88738,124305,,,0.732,,,,,259.0653117,,,,,0.673712615,44940,66705,0.661083933,0.686341298,0.136883292,8956,65428,0.122899728,0.150866856,0.904250056,60318,66705,0.894866411,0.913633702,167817,,,,,0.215037809,36087,167817,,,0.159638177,26790,167817,,,0.069450652,11655,167817,,,0.007949135,1334,167817,,,0.019664277,3300,167817,,,0.001007049,169,167817,,,0.146063867,24512,167817,,,0.738256553,123892,167817,,,0.017621836,2811,159518,0.013234679,0.022008993,0.502553377,84337,167817,,,0.13082985,22130,169151,, -55,061,55061,WI,Kewaunee County,2024,1,5990.625611,220,55800,4638.965599,7342.285623,0,,,,2,,,,2,,,,2,,,,2,5751.616255,4364.373469,7138.859042,,,,,2,,0.123,,,0.102,0.148,3.289988749,,,2.544654349,4.08802665,4.714161467,,,3.705679617,5.755889017,0.055555556,77,1386,0.043496136,0.067614975,0,,,,,,,,,,,,,0.057480315,0.04467887,0.07028176,,,,,,,0.156,,,0.121,0.193,0.35,,,0.269,0.437,9.7,0.000942433,0.054,,,0.195,,,0.155,0.24,0.499878422,10279,20563,,,0.236217682,,,0.19038899,0.28629181,0.272727273,3,11,0.11266692,0.445445377,209.3,43,20543,,,10.62824752,45,4234,7.752316672,14.22143139,,,,,,,,,,41.95804196,21.68033255,73.29225541,8.13648294,5.528345401,11.54908806,,,,,,,0.062084395,999,16091,0.05255248,0.07161631,0.000535462,11,20543,,,1867.545455,0.000387916,8,20623,,,2577.875,0.000678854,14,20623,,,1473.071429,1870,,,,,,,,,1885,0.53,,,,,,,,,0.52,0.37,,,,,,,,,0.38,0.941088231,13802,14666,0.928909097,0.953267366,0.637396924,2860,4487,0.579572605,0.695221244,0.024918944,269,10795,,,0.082,338,,0.053404255,0.110595745,,,,,,,,,,0.040145985,0,0.167485431,0.068624833,0.042491204,0.094758462,3.474476301,131363,37808,3.180873951,3.768078652,0.13856544,595,4294,0.099267883,0.177862997,10.22246021,21,20543,,,86.11325851,88,102191,69.06535142,106.093943,,,,,,,,,,,,,86.31268069,68.74756837,106.9975539,,,,7.2,,,,,0,,,,,0.09030303,745,8250,0.073688687,0.106917374,0.066178266,0.050390938,0.081965594,0.013333333,0.007010921,0.019655746,0.013939394,0.004954311,0.022924477,0.797757009,8536,10700,0.777354152,0.818159867,,,,,,,,,,,,,0.749605169,0.717236671,0.781973667,0.41,,10700,0.369401847,0.450598153,80.48570819,,,79.23031382,81.74110256,,,,,,,,,,,,,80.65937027,79.37935824,81.93938229,,,,270.2595638,220,55800,231.5123242,309.0068034,,,,,,,,,,,,,264.2301445,225.0466473,303.4136417,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.096,,,0.082,0.113,0.147,,,0.124,0.17,0.074,,,0.062,0.088,73.8,13,17607,,,0.054,1110,,,,0.000942433,19.38961059,20574,,,,,,,,,,,,,,,,,,,,,,,,,,0.313,,,0.296,0.331,0.068441065,810,11835,0.05771766,0.079164469,0.045667187,205,4489,0.032560804,0.058773569,0.000678854,14,20623,,,1473.071429,0.928436426,270.175,291,,,,,,,,3.197824562,,,,,,,,2.648518475,3.26572081,3.306953318,,,,,,,,2.280006444,3.419572785,0.020820004,,,,,1414.361033,,,,,0.821317946,46402,56497,0.762884127,0.879751765,73717,,,65414.70213,82019.29787,,,,,,,59135,47454.82979,70815.17021,38472,21666.04255,55277.95745,78669,75281.59575,82056.40426,,,,,,0.263142938,926,3519,,,,,,,,0.304651573,,73717,,,5.186721992,5,964,,,,,,,,,,,,,,,,,,,,,,,,,,13.94052742,15,102191,7.422743733,23.83872646,14.67839634,,,,,,,,,,,,,14.72568264,7.840805815,25.18136578,,,,13.69983658,14,102191,7.489828142,22.98599791,,,,,,,,,,,,,14.55876542,7.959412529,24.42713455,,,,7.694352345,11,142962,3.840992968,13.76732175,,,,,,,,,,,,,7.413228164,3.554931054,13.63319054,,,,18.88888889,,1800,,,34,,0.766233766,12095,15785,,,0.764,,,,,1.241688339,,,,,0.862737965,7115,8247,0.842356644,0.883119286,0.067656153,547,8085,0.050405995,0.084906312,0.838122954,6912,8247,0.812990189,0.863255719,20623,,,,,0.203462154,4196,20623,,,0.223488338,4609,20623,,,0.00543083,112,20623,,,0.007903797,163,20623,,,0.005770257,119,20623,,,0.000436406,9,20623,,,0.034718518,716,20623,,,0.935799835,19299,20623,,,0.00553052,108,19528,0.00105274,0.0100083,0.489550502,10096,20623,,,1,20563,20563,, -55,063,55063,WI,La Crosse County,2024,1,6284.420722,1302,331462,5751.46699,6817.374454,0,,,,2,5476.348186,3577.332453,8024.118938,,16677.847,10793.02322,24619.79218,1,,,,2,6234.068162,5666.672284,6801.464039,,,,,2,,0.12,,,0.1,0.144,3.067817167,,,2.407349491,3.824468677,4.747258744,,,3.904047312,5.665277991,0.071419669,573,8023,0.065784507,0.07705483,0,,,,0.087447109,0.066653268,0.108240949,0.148571429,0.095875288,0.201267569,0.105932203,0.066667773,0.145196634,0.065412186,0.059489923,0.07133445,,,,0.083333333,0.041539084,0.125127583,0.147,,,0.113,0.184,0.35,,,0.289,0.416,8.9,0.04750443,0.071,,,0.184,,,0.148,0.223,0.826144191,99785,120784,,,0.247951384,,,0.206738258,0.294251685,0.333333333,13,39,0.249594321,0.416968855,532.2,641,120433,,,5.381268605,188,34936,4.61202868,6.150508531,,,,13.02545885,8.162985715,19.72070124,33.72681282,20.60121347,52.08832699,15.02347418,8.587213572,24.39718084,3.751604305,3.06291923,4.44028938,,,,12.85583104,7.028402458,21.56990002,0.051899529,4959,95550,0.043559104,0.060239955,0.001394967,168,120433,,,716.8630952,0.001022495,123,120294,,,978,0.003765774,453,120294,,,265.5496689,1637,,,,,,2175,824,,1577,0.6,,,,,,0.23,0.47,,0.61,0.63,,,,,0.38,0.53,0.4,0.47,0.64,0.962523719,75073,77996,0.956681052,0.968366386,0.782127631,23115,29554,0.742124239,0.822131022,0.024768595,1643,66334,,,0.105,2395,,0.069255319,0.140744681,0.263803681,0,0.789779727,0.019704434,0,0.067886391,0.460652591,0.210133469,0.711171713,0.127508855,0.019603841,0.235413869,0.046078747,0.03083013,0.061327364,4.236705344,129622,30595,3.816833313,4.656577375,0.17146636,4019,23439,0.140956305,0.201976414,13.03629404,157,120433,,,82.90434827,492,593455,75.57861959,90.23007694,,,,50.00535772,27.33839439,83.90049335,186.0159755,108.3611606,297.8295964,,,,84.978096,77.13522997,92.82096203,,,,7.6,,,,,1,,,,,0.131171396,6310,48105,0.115221768,0.147121024,0.114384567,0.099583334,0.1291858,0.011953019,0.007522565,0.016383474,0.009874233,0.005431447,0.01431702,0.773691091,48529,62724,0.759846322,0.787535861,,,,0.779702113,0.711996683,0.847407543,0.556768559,0.402964348,0.71057277,0.725466586,0.595479307,0.855453866,0.799315414,0.787623843,0.811006984,0.172,,62724,0.153503111,0.190496889,79.14293299,,,78.64568583,79.64018015,,,,81.48551823,77.04285201,85.92818444,68.48082531,63.35795995,73.60369066,87.21029869,78.3931939,96.02740348,79.15707578,78.63919193,79.67495962,,,,316.6383785,1302,331462,298.5686757,334.7080814,,,,314.1683785,210.4034938,451.1981974,824.9139757,560.4890243,1170.899542,,,,314.6480457,295.8706901,333.4254013,,,,29.83869552,34,113946,20.66416406,41.69658619,,,,,,,,,,,,,27.61990758,18.04224063,40.46956401,,,,5.35540409,44,8216,3.89124481,7.189380024,,,,,,,,,,,,,4.668125456,3.192994356,6.590000303,,,,,,,0.093,,,0.079,0.109,0.143,,,0.122,0.167,0.078,,,0.066,0.091,96,100,104216,,,0.071,8560,,,,0.04750443,5445.812891,114638,,,25.49369521,91,356951,20.52593311,31.30060846,,,,,,,,,,,,,24.81701379,19.64786353,30.92940382,,,,0.323,,,0.306,0.34,0.059036812,4266,72260,0.049504897,0.068568726,0.030933725,758,24504,0.02140181,0.04046564,0.00280147,337,120294,,,356.9554896,0.918142007,1079.735,1176,,,0.034522587,269,7792,0.012330568,0.056714607,3.226036366,,,,,,2.857205082,2.198128394,2.961484942,3.35087348,3.123017303,,,,,,2.626670679,1.958122693,2.850396634,3.278711943,0.06757545,,,,,3880.9658,,,,,0.794415139,45632,57441,0.756286912,0.832543366,70075,,,64633.46809,75516.53192,64261,28513.93617,100008.0638,62500,46858.12766,78141.87234,78516,6324.851064,150707.1489,47418,21175.44681,73660.55319,69678,66323.95745,73032.04255,,,,,,0.362081163,5630,15549,,,62.11521085,,,,,0.31158045,,70075,,,9.679572764,58,5992,,,2.169226153,18,829789,1.285620896,3.428312531,,,,,,,,,,,,,1.61320028,0.833564125,2.817936239,,,,17.58997609,105,593455,14.09712017,21.08283201,17.69300115,,,,,,,,,,,,,17.40390603,13.95844156,21.442099,,,,8.088229099,48,593455,5.963621643,10.72381835,,,,,,,,,,,,,7.536859956,5.384443251,10.2630641,,,,6.628191022,55,829789,4.993260572,8.627501687,,,,,,,,,,,,,6.856101191,5.104817667,9.014506889,,,,4.742268041,,9700,,,46,,0.723517186,67884,93825,,,0.719,,,,,315.4130341,,,,,0.621734192,31198,50179,0.604782048,0.638686335,0.125017767,6157,49249,0.108265981,0.141769553,0.876960482,44005,50179,0.864029297,0.889891666,120294,,,,,0.192096031,23108,120294,,,0.181197732,21797,120294,,,0.016418109,1975,120294,,,0.005378489,647,120294,,,0.049013251,5896,120294,,,0.000465526,56,120294,,,0.024298801,2923,120294,,,0.885522137,106523,120294,,,0.007124375,815,114396,0.004652196,0.009596554,0.507905631,61098,120294,,,0.181091867,21873,120784,, -55,065,55065,WI,Lafayette County,2024,1,6473.174141,200,45923,4970.800336,7975.547946,0,,,,2,,,,2,,,,2,,,,2,6757.705152,5146.316562,8369.093743,,,,,2,,0.138,,,0.115,0.164,3.457670111,,,2.69555854,4.318737167,4.639348285,,,3.672600405,5.720106689,0.056733167,91,1604,0.04541204,0.068054295,0,,,,,,,,,,,,,0.05878187,0.046512972,0.071050768,,,,,,,0.172,,,0.134,0.212,0.339,,,0.266,0.421,9.1,0.040228844,0.063,,,0.219,,,0.175,0.267,0.446330745,7414,16611,,,0.225708919,,,0.183594944,0.272579942,0.411764706,7,17,0.284189348,0.52988216,196.6,33,16784,,,11.18508655,42,3755,8.06122656,15.11898769,,,,,,,,,,85.56149733,48.90578852,138.9465112,7.292882147,4.7195688,10.7657327,,,,,,,0.097639565,1303,13345,0.084533182,0.110745948,0.000238322,4,16784,,,4196,0.000177757,3,16877,,,5625.666667,0.001836819,31,16877,,,544.4193548,2550,,,,,,,,,2519,0.42,,,,,,,,,0.42,0.43,,,,,,,,,0.43,0.912657226,10376,11369,0.900951609,0.924362842,0.623000552,2259,3626,0.580015691,0.665985412,0.024496678,247,10083,,,0.147,588,,0.095765957,0.198234043,,,,,,,,,,0.221893491,0.058192011,0.385594972,0.126808511,0.097325686,0.156291335,3.997484741,119197,29818,3.647670609,4.347298872,0.129850746,522,4020,0.097897917,0.161803576,9.532888465,16,16784,,,70.65783643,59,83501,53.78801886,91.14346099,,,,,,,,,,,,,74.07218206,56.24611336,95.75547208,,,,8.8,,,,,0,,,,,0.102583026,695,6775,0.087628227,0.117537825,0.086726999,0.073607565,0.099846432,0.017712177,0.01005019,0.025374164,0.002804428,0.000355362,0.005253495,0.774418885,6430,8303,0.758020794,0.790816975,,,,,,,,,,,,,0.728084271,0.6872843,0.768884242,0.37,,8303,0.34236361,0.39763639,80.07325733,,,78.60479464,81.54172003,,,,,,,,,,,,,79.78574778,78.25985072,81.31164483,,,,301.8106879,200,45923,256.9413971,346.6799787,,,,,,,,,,,,,311.317137,264.2260026,358.4082714,,,,67.76215484,12,17709,35.01369422,118.3668476,,,,,,,,,,,,,69.91229185,34.8999642,125.0924019,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.104,,,0.088,0.12,0.154,,,0.131,0.178,0.08,,,0.067,0.094,36,5,13886,,,0.063,1060,,,,0.040228844,677.2928247,16836,,,,,,,,,,,,,,,,,,,,,,,,,,0.311,,,0.294,0.328,0.102332581,952,9303,0.086843219,0.117821943,0.087213425,369,4231,0.062192148,0.112234701,0.000592522,10,16877,,,1687.7,,,,,,,,,,,3.344439589,,,,,,,,2.965833743,3.416936501,3.382796911,,,,,,,,3.082906983,3.444241785,0.159319728,,,,,1920.398871,,,,,0.808527273,44469,55000,0.752883447,0.864171099,67311,,,60402.74468,74219.25532,,,,46250,4323.87234,88176.12766,,,,42292,17661.53192,66922.46809,69899,66804.70213,72993.29787,,,,,,0.366930917,972,2649,,,,,,,,0.333645318,,67311,,,4.743833017,5,1054,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,19.64418404,23,117083,12.45272758,29.47592127,,,,,,,,,,,,,18.17884346,11.10410986,28.07574933,,,,18.125,,1600,,,29,,0.693554925,8555,12335,,,0.745,,,,,5.636806625,,,,,0.792393265,5271,6652,0.774388159,0.810398371,0.088962368,565,6351,0.07377357,0.104151167,0.783974744,5215,6652,0.765884416,0.802065073,16877,,,,,0.241926883,4083,16877,,,0.205546009,3469,16877,,,0.004917936,83,16877,,,0.007525034,127,16877,,,0.005154945,87,16877,,,5.92522E-05,1,16877,,,0.046275997,781,16877,,,0.93191918,15728,16877,,,0.017570762,275,15651,0.009821364,0.025320161,0.489719737,8265,16877,,,1,16611,16611,, -55,067,55067,WI,Langlade County,2024,1,8406.76251,348,51641,6778.341813,10035.18321,0,,,,2,,,,2,,,,2,,,,2,8818.334765,7036.827115,10599.84242,,,,,2,,0.147,,,0.124,0.174,3.79287382,,,3.042553417,4.650999863,5.202167477,,,4.261142305,6.203865739,0.08320951,112,1346,0.068453971,0.097965049,0,,,,,,,,,,,,,0.078753076,0.063632233,0.093873919,,,,,,,0.178,,,0.141,0.218,0.422,,,0.351,0.498,7.8,0.098757882,0.098,,,0.235,,,0.191,0.284,0.615617465,11999,19491,,,0.219350321,,,0.180676346,0.263209629,0.416666667,5,12,0.261828357,0.556653137,230.7,45,19502,,,20.75154234,74,3566,16.29442407,26.05166111,,,,,,,,,,,,,18.49489796,14.04395143,23.90894443,,,,,,,0.077226217,1117,14464,0.066502813,0.087949621,0.000820429,16,19502,,,1218.875,0.000562401,11,19559,,,1778.090909,0.001073675,21,19559,,,931.3809524,1975,,,,,,,,,1998,0.52,,,,,,,,,0.52,0.34,,,,,,,,,0.34,0.89709063,12858,14333,0.87844955,0.91573171,0.569299163,2177,3824,0.495389241,0.643209086,0.03639909,336,9231,,,0.185,666,,0.114702128,0.255297872,,,,,,,,,,0.109289618,0,0.324042312,0.115153433,0.074103322,0.156203543,4.026594927,104772,26020,3.527090251,4.526099603,0.194341618,735,3782,0.12865109,0.260032147,13.84473387,27,19502,,,100.791787,97,96238,81.73534942,122.9574325,,,,,,,,,,,,,104.5350415,84.47495429,127.9244164,,,,6.5,,,,,1,,,,,0.094847775,810,8540,0.069875026,0.119820525,0.079881306,0.05698927,0.102773342,0.008665105,0.001840601,0.01548961,0.010538642,0.000588119,0.020489164,0.844152855,7334,8688,0.805750853,0.882554856,,,,,,,,,,,,,0.839675292,0.798529296,0.880821288,0.278,,8688,0.236519739,0.319480261,76.67019317,,,75.38381396,77.95657237,,,,,,,,,,,,,76.2961397,74.91903776,77.67324163,,,,407.2181711,348,51641,358.7407475,455.6955947,,,,,,,,,,,,,418.8646751,367.7870173,469.9423328,,,,66.70709521,11,16490,33.29994158,119.3574197,,,,,,,,,,,,,76.64971082,38.26325948,137.1475055,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.11,,,0.095,0.127,0.162,,,0.14,0.186,0.087,,,0.074,0.101,29.6,5,16897,,,0.098,1910,,,,0.098757882,1972.886201,19977,,,19.02784985,11,57810,9.49863409,34.04607942,,,,,,,,,,,,,18.56389693,8.902110151,34.13966741,,,,0.328,,,0.311,0.344,0.087109628,940,10791,0.074003245,0.100216011,0.049112883,191,3889,0.033623521,0.064602244,0.00097142,19,19559,,,1029.421053,0.871734234,193.525,222,,,,,,,,2.761972916,,,,,,,,,2.827159292,2.531990753,,,,,,,,,2.609219131,0.022556673,,,,,-345.6042667,,,,,0.799676101,40490,50633,0.726028199,0.873324002,57745,,,50710.44681,64779.55319,,,,,,,,,,,,,55400,50149.10638,60650.89362,,,,,,0.586638831,1405,2395,,,,,,,,0.356498398,,57745,,,5.785920926,6,1037,,,,,,,,,,,,,,,,,,,,,,,,,,20.52018586,18,96238,11.48499225,33.84492596,18.70363058,,,,,,,,,,,,,20.60783121,11.26649309,34.57643909,,,,12.46908706,12,96238,6.442959235,21.78098573,,,,,,,,,,,,,13.34489891,6.895504002,23.31085279,,,,12.62232518,17,134682,7.352969565,20.20956536,,,,,,,,,,,,,12.67527529,7.245015015,20.58385297,,,,37.33333333,,1500,,,56,,0.730932897,11165,15275,,,0.58,,,,,54.06738307,,,,,0.770342295,6504,8443,0.736039509,0.804645082,0.084850006,676,7967,0.058064922,0.11163509,0.843065261,7118,8443,0.815878347,0.870252175,19559,,,,,0.190091518,3718,19559,,,0.258602178,5058,19559,,,0.010685618,209,19559,,,0.019275014,377,19559,,,0.0054195,106,19559,,,0.000306764,6,19559,,,0.023978731,469,19559,,,0.928114934,18153,19559,,,0.002276299,42,18451,0,0.006335334,0.49061813,9596,19559,,,0.585911446,11420,19491,, -55,069,55069,WI,Lincoln County,2024,1,8159.323874,444,75773,6797.184415,9521.463333,0,,,,2,,,,2,,,,2,,,,2,7914.171693,6530.60658,9297.736806,,,,,2,,0.14,,,0.117,0.167,3.579502721,,,2.780648124,4.480550188,5.062741119,,,4.094610274,6.108368937,0.081788441,150,1834,0.06924624,0.094330641,0,,,,,,,,,,,,,0.082468281,0.069520793,0.09541577,,,,,,,0.174,,,0.137,0.216,0.37,,,0.302,0.441,8.9,0.036272744,0.075,,,0.214,,,0.173,0.261,0.666162238,18929,28415,,,0.228110501,,,0.187778113,0.271063591,0.423076923,11,26,0.323312525,0.516642852,238.3,68,28541,,,14.56102784,68,4670,11.30720787,18.45957241,,,,,,,,,,,,,15.12683267,11.6745701,19.28039,,,,,,,0.061850455,1345,21746,0.05231854,0.07138237,0.000490522,14,28541,,,2038.642857,0.000528616,15,28376,,,1891.733333,0.00066958,19,28376,,,1493.473684,1826,,,,,,,,,1839,0.53,,,,,,,,,0.53,0.44,,,,,,,,,0.44,0.921807815,19723,21396,0.908333505,0.935282125,0.527985075,3113,5896,0.471508648,0.584461501,0.030523453,449,14710,,,0.13,618,,0.087106383,0.172893617,,,,,,,,,,,,,0.126482213,0.091302513,0.161661914,4.363684171,116170,26622,3.925944677,4.801423665,0.202046549,1007,4984,0.14432537,0.259767728,15.06604534,43,28541,,,96.96395096,135,139227,80.60710776,113.3207942,,,,,,,,,,,,,98.32172381,81.41988797,115.2235597,,,,6.8,,,,,1,,,,,0.088107467,1115,12655,0.070887561,0.105327374,0.071371611,0.055661394,0.087081828,0.009403398,0.004147117,0.014659679,0.01066772,0.002291953,0.019043488,0.805099626,10546,13099,0.784407826,0.825791426,,,,,,,,,,,,,0.786708296,0.762151657,0.811264936,0.309,,13099,0.273235467,0.344764534,76.72588112,,,75.67710677,77.77465546,,,,,,,,,,,,,76.83004961,75.76225633,77.8978429,,,,376.6945367,444,75773,337.6437731,415.7453003,,,,,,,,,,,,,371.1420727,331.7825147,410.5016307,,,,58.71725384,13,22140,31.26446473,100.4082923,,,,,,,,,,,,,61.8907628,31.97986028,108.1107074,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.104,,,0.088,0.121,0.157,,,0.135,0.181,0.077,,,0.065,0.091,55.9,14,25058,,,0.075,2140,,,,0.036272744,1042.587473,28743,,,11.9474313,10,83700,5.729257702,21.97175154,,,,,,,,,,,,,,,,,,,0.316,,,0.299,0.333,0.066857347,1122,16782,0.056133943,0.077580751,0.045776671,239,5221,0.032670288,0.058883054,0.00066958,19,28376,,,1493.473684,0.928717949,289.76,312,,,0.099670511,121,1214,0.036445266,0.162895755,2.919640377,,,,,,,,,2.925754062,2.800353742,,,,,,,,,2.82887175,0.023758346,,,,,2467.4705,,,,,0.815627681,45636,55952,0.768644531,0.862610831,59637,,,54451.6383,64822.3617,86154,85856.12766,86451.87234,,,,50764,25748.68085,75779.31915,54375,31249.38298,77500.61702,64412,57774.21277,71049.78723,,,,,,0.419605078,1785,4254,,,68.95949052,,,,,0.292888643,,59637,,,4.569687738,6,1313,,,,,,,,,,,,,,,,,,,,,,,,,,24.13609691,33,139227,16.03826112,34.88338017,23.70229912,,,,,,,,,,,,,24.4078752,16.08494355,35.51217695,,,,17.23803573,24,139227,11.04473475,25.64883075,,,,,,,,,,,,,16.63906095,10.42761091,25.19173824,,,,17.42615666,34,195109,12.06812007,24.35130727,,,,,,,,,,,,,17.77433064,12.23503136,24.96176864,,,,10.47619048,,2100,,,22,,0.734996659,16497,22445,,,0.627,,,,,62.03394134,,,,,0.784721086,9594,12226,0.76487285,0.804569322,0.080074331,948,11839,0.063426947,0.096721715,0.830116146,10149,12226,0.80691977,0.853312522,28376,,,,,0.173914576,4935,28376,,,0.239321962,6791,28376,,,0.006308148,179,28376,,,0.008845503,251,28376,,,0.006801522,193,28376,,,0.000493375,14,28376,,,0.02184945,620,28376,,,0.943332394,26768,28376,,,0.004946657,134,27089,0,0.010280699,0.490062024,13906,28376,,,0.66500088,18896,28415,, -55,071,55071,WI,Manitowoc County,2024,1,7086.90798,1139,217778,6377.107113,7796.708847,0,,,,2,,,,2,,,,2,,,,2,7271.090737,6486.406017,8055.775458,,,,,2,,0.128,,,0.106,0.154,3.324747484,,,2.595554758,4.136396984,4.761044117,,,3.84481605,5.728472049,0.080377359,426,5300,0.073057717,0.087697,0,,,,0.083591331,0.053407107,0.113775556,0.177966102,0.108953472,0.246978731,0.070484582,0.046939321,0.094029842,0.07747958,0.069474563,0.085484597,,,,,,,0.159,,,0.125,0.199,0.355,,,0.285,0.428,8.7,0.067842826,0.07,,,0.206,,,0.165,0.251,0.729716442,59369,81359,,,0.221492986,,,0.180060617,0.266669542,0.367346939,18,49,0.294284208,0.439140127,289.6,236,81505,,,14.13652573,222,15704,12.27691402,15.99613744,,,,,,,69.95884774,40.75360687,112.0108923,45.3047776,34.12975863,58.97039537,9.741248097,8.053662964,11.42883323,,,,37.68115942,20.06363041,64.4359302,0.063607022,4040,63515,0.055266596,0.071947448,0.000466229,38,81505,,,2144.868421,0.000652935,53,81172,,,1531.54717,0.001330508,108,81172,,,751.5925926,2067,,,,,,,,,2052,0.54,,,,,,0.17,,,0.55,0.56,,,,,0.33,0.54,0.42,0.25,0.56,0.925567503,54229,58590,0.916939888,0.934195118,0.646227465,11614,17972,0.608319696,0.684135234,0.027931854,1128,40384,,,0.135,2150,,0.095680851,0.174319149,0.347368421,0.117377753,0.577359089,0.107894737,0.016631865,0.199157609,0.403794038,0.179297938,0.628290138,0.180958386,0.067929448,0.293987324,0.106838954,0.080436375,0.133241533,4.011587408,119786,29860,3.745394449,4.277780367,0.207456404,3450,16630,0.170836204,0.244076605,8.833813876,72,81505,,,91.82574744,365,397492,82.40524403,101.2462509,,,,,,,,,,62.61740764,31.25838428,112.039839,96.0639007,85.89745305,106.2303484,,,,7.9,,,,,1,,,,,0.092493103,3185,34435,0.081556378,0.103429828,0.073605621,0.061651767,0.085559476,0.011180485,0.007226003,0.015134967,0.011180485,0.006756996,0.015603974,0.812304717,32757,40326,0.791418443,0.83319099,,,,0.692567568,0.538630062,0.846505073,,,,0.57275321,0.459775545,0.685730875,0.806948512,0.784439236,0.829457787,0.218,,40326,0.200448266,0.235551734,78.36346368,,,77.75488156,78.97204581,,,,79.37736928,75.09055843,83.66418014,,,,82.93785336,76.75512624,89.12058048,78.21834368,77.56490666,78.87178071,,,,347.3206196,1139,217778,325.3284836,369.3127557,,,,,,,,,,,,,351.3574694,328.0631029,374.6518358,,,,48.80769767,35,71710,33.99634975,67.87969233,,,,,,,,,,,,,47.24492117,31.13470075,68.73887985,,,,5.196733482,28,5388,3.453191659,7.51072679,,,,,,,,,,,,,4.977375566,3.119294768,7.535806422,,,,,,,0.099,,,0.084,0.116,0.146,,,0.123,0.17,0.078,,,0.065,0.093,51.4,36,70005,,,0.07,5680,,,,0.067842826,5525.255449,81442,,,19.64529788,47,239243,14.43462595,26.12408152,,,,,,,,,,,,,21.04013054,15.34681559,28.15335006,,,,0.322,,,0.306,0.338,0.070628805,3318,46978,0.059905401,0.081352209,0.04520131,787,17411,0.033286416,0.057116203,0.000923964,75,81172,,,1082.293333,0.89237013,687.125,770,,,0.071966745,277,3849,0.036794301,0.107139189,3.044137094,,,,,,2.688507111,2.471899751,2.732619305,3.152582939,3.004465376,,,,,,2.477021363,2.18008062,2.644218756,3.138749623,0.095877777,,,,,1519.2191,,,,,0.777415742,45810,58926,0.738483358,0.816348125,62910,,,58864.89362,66955.10638,,,,67212,34181.53192,100242.4681,,,,51451,47010.31915,55891.68085,67616,64795.74468,70436.25532,,,,,,0.394945918,4126,10447,,,74.16098347,,,,,0.364918137,,62910,,,5.53283618,23,4157,,,2.693801025,15,556834,1.507699985,4.44301513,,,,,,,,,,,,,2.389762259,1.234825031,4.174433736,,,,15.96136439,66,397492,12.12013317,20.63376479,16.60410776,,,,,,,,,,,,,14.85810233,10.95519174,19.69968809,,,,10.56625039,42,397492,7.615223887,14.28250098,,,,,,,,,,,,,10.64264789,7.531371066,14.60786573,,,,10.59561737,59,556834,8.065874862,13.66757442,,,,,,,,,,,,,11.15222387,8.424270064,14.48209033,,,,11.79104478,,6700,,,79,,0.727271252,44829,61640,,,0.777,,,,,148.3631112,,,,,0.75989673,26490,34860,0.74573221,0.774061249,0.078481609,2665,33957,0.066499561,0.090463657,0.866609294,30210,34860,0.851355004,0.881863585,81172,,,,,0.201461095,16353,81172,,,0.226876263,18416,81172,,,0.012405756,1007,81172,,,0.007921451,643,81172,,,0.029258858,2375,81172,,,0.00076381,62,81172,,,0.050645543,4111,81172,,,0.887756862,72061,81172,,,0.013525944,1044,77185,0.009984539,0.01706735,0.493926477,40093,81172,,,0.427746162,34801,81359,, -55,073,55073,WI,Marathon County,2024,1,6326.750496,1586,377029,5825.208653,6828.29234,0,,,,2,7658.95258,5720.072121,10043.69734,,,,,2,,,,2,6090.551676,5560.992594,6620.110757,,,,,2,,0.123,,,0.099,0.146,3.181704106,,,2.497235605,3.936569843,4.571528997,,,3.764614246,5.447064703,0.067068504,701,10452,0.06227293,0.071864077,0,,,,0.07247557,0.057973988,0.086977152,0.254716981,0.171771506,0.337662457,0.073839662,0.05029704,0.097382285,0.063312269,0.058100393,0.068524145,,,,0.078313253,0.037442623,0.119183883,0.155,,,0.119,0.192,0.339,,,0.285,0.397,8.9,0.05642514,0.065,,,0.211,,,0.17,0.255,0.73255418,101102,138013,,,0.251019754,,,0.211769687,0.293120041,0.171875,11,64,0.111410137,0.2408279,257.2,354,137648,,,10.13417071,284,28024,8.955520015,11.31282141,,,,13.04525071,8.922941831,18.41600166,,,,26.80565897,18.774354,37.11033097,8.462746467,7.271870484,9.653622449,,,,17.46216531,9.773441365,28.80118611,0.066807736,7451,111529,0.058467311,0.075148162,0.000944438,130,137648,,,1058.830769,0.000753853,104,137958,,,1326.519231,0.002261558,312,137958,,,442.1730769,2115,,,,,,968,2493,,2079,0.56,,,,,,0.18,,,0.58,0.5,,,,,0.56,0.43,0.22,0.43,0.51,0.927078563,89070,96076,0.919409938,0.934747188,0.701805802,23707,33780,0.670158961,0.733452644,0.025104201,1831,72936,,,0.138,4152,,0.108212766,0.167787234,0.226666667,0,0.813387725,0.123611609,0.059412479,0.187810738,0.419811321,0.111791801,0.727830841,0.332951945,0.230673127,0.435230763,0.06509771,0.050704068,0.079491351,3.770477891,128841,34171,3.507993888,4.032961893,0.166253661,5166,31073,0.14234573,0.190161592,12.49564106,172,137648,,,66.75557608,454,680093,60.61490701,72.89624514,,,,33.90569374,18.53655827,56.88799284,,,,,,,70.01727093,63.32094467,76.71359719,,,,7.8,,,,,0,,,,,0.108839286,6095,56000,0.096747793,0.120930778,0.084593988,0.072538521,0.096649456,0.020982143,0.015990538,0.025973748,0.009285714,0.006002587,0.012568842,0.779769725,55196,70785,0.7664923,0.79304715,,,,0.676670442,0.62202836,0.731312524,,,,0.739742087,0.624155958,0.855328215,0.789708968,0.776615595,0.802802341,0.173,,70785,0.160446881,0.185553119,79.13891481,,,78.68038848,79.59744114,,,,77.92889221,74.75105995,81.10672447,,,,,,,79.31024014,78.83336909,79.78711118,,,,309.3371825,1586,377029,293.3330827,325.3412823,,,,389.9782457,291.2544069,511.4045852,,,,,,,303.5782292,287.0207623,320.1356962,,,,42.29522064,57,134767,32.03398708,54.79836414,,,,,,,,,,,,,40.35398895,29.20438189,54.35655828,,,,4.238884702,45,10616,3.091871589,5.671961238,,,,,,,,,,,,,3.488777765,2.353863708,4.980447191,,,,,,,0.095,,,0.08,0.111,0.143,,,0.121,0.165,0.077,,,0.064,0.09,62,72,116044,,,0.065,8890,,,,0.05642514,7564.523589,134063,,,12.47148066,51,408933,9.285836516,16.39769385,,,,,,,,,,,,,13.06942367,9.602920924,17.37956285,,,,0.318,,,0.301,0.334,0.073590071,5941,80731,0.064058156,0.083121986,0.050400421,1630,32341,0.037294038,0.063506804,0.001609185,222,137958,,,621.4324324,0.923272304,1386.755,1502,,,0.058531601,401,6851,0.036310902,0.080752301,3.126028974,,,,,,2.82267077,2.655384162,2.794475826,3.269841057,3.107903964,,,,,,2.722999845,2.468050479,2.697991003,3.265404711,0.084870731,,,,,2249.071688,,,,,0.815863433,47028,57642,0.790463128,0.841263738,70955,,,66123.51064,75786.48936,70676,53877.19149,87474.80851,85795,73140.19149,98449.80851,,,,51341,40697.42553,61984.57447,74920,71849.53192,77990.46809,,,,,,0.35483871,6743,19003,,,69.67312709,,,,,0.34287929,,70955,,,5.510331872,44,7985,,,1.681442341,16,951564,0.96108958,2.73055702,,,,,,,,,,,,,1.307093239,0.652496235,2.33875086,,,,16.24500894,106,680093,13.07572413,19.41429374,15.58610367,,,,,,,,,,,,,17.03648943,13.73381499,20.89374193,,,,8.822322829,60,680093,6.732361743,11.35607827,,,,,,,,,,,,,9.002220548,6.762745139,11.74594507,,,,9.353023023,89,951564,7.511245501,11.50969965,,,,,,,,,,,,,9.862612618,7.855515898,12.22619222,,,,8.031496063,,12700,,,102,,0.748315702,76751,102565,,,0.776,,,,,139.5549876,,,,,0.729091424,41182,56484,0.714653254,0.743529594,0.082821421,4584,55348,0.072876257,0.092766584,0.877044827,49539,56484,0.865401954,0.8886877,137958,,,,,0.221987851,30625,137958,,,0.193312457,26669,137958,,,0.009488395,1309,137958,,,0.006349759,876,137958,,,0.063243886,8725,137958,,,0.000500152,69,137958,,,0.032292437,4455,137958,,,0.874244335,120609,137958,,,0.012951953,1684,130019,,,0.493642993,68102,137958,,,0.433886663,59882,138013,, -55,075,55075,WI,Marinette County,2024,1,8690.228197,768,109869,7555.378157,9825.078237,0,,,,2,,,,2,,,,2,,,,2,8643.220388,7474.049988,9812.390787,,,,,2,,0.138,,,0.115,0.164,3.456957533,,,2.698529992,4.310916706,4.671331233,,,3.73183287,5.705526675,0.064466019,166,2575,0.054980466,0.073951573,0,,,,,,,,,,,,,0.062711864,0.052930229,0.0724935,,,,,,,0.176,,,0.141,0.216,0.363,,,0.289,0.441,8.3,0.074774856,0.084,,,0.219,,,0.177,0.265,0.600210164,25132,41872,,,0.232406255,,,0.190864171,0.278997316,0.485714286,17,35,0.406219076,0.559173965,317.6,133,41875,,,13.10043668,99,7557,10.6473885,15.9493116,,,,,,,,,,,,,13.08035073,10.53148246,16.05977216,,,,,,,0.069880598,2183,31239,0.060348683,0.079412513,0.000573134,24,41875,,,1744.791667,0.000476327,20,41988,,,2099.4,0.001500429,63,41988,,,666.4761905,2782,,,,,,,,,2758,0.54,,,,,,,,,0.54,0.37,,,,,,,,,0.37,0.92238978,28809,31233,0.912863603,0.931915957,0.621477444,5359,8623,0.564342702,0.678612186,0.037804685,715,18913,,,0.137,1049,,0.084574468,0.189425532,,,,,,,,,,0.173295455,0.052327841,0.294263068,0.110947616,0.066820909,0.155074323,3.750350582,106975,28524,3.480440308,4.020260856,0.179283371,1421,7926,0.138841344,0.219725399,15.04477612,63,41875,,,110.7114564,225,203231,96.24515945,125.1777534,,,,,,,,,,,,,112.49352,97.52586681,127.4611731,,,,6.7,,,,,0,,,,,0.114467409,2160,18870,0.097319058,0.13161576,0.09339065,0.077447358,0.109333942,0.014838368,0.008037074,0.021639661,0.012718601,0.004375725,0.021061477,0.823416404,15430,18739,0.804949509,0.8418833,,,,,,,,,,,,,0.823673651,0.803389078,0.843958225,0.228,,18739,0.204773597,0.251226404,76.24039615,,,75.34374024,77.13705206,,,,,,,,,,,,,76.18316057,75.26735135,77.09896978,,,,422.6149582,768,109869,388.708305,456.5216115,,,,,,,,,,,,,424.0618286,389.3888184,458.7348387,,,,35.26300323,12,34030,18.22090834,61.59737011,,,,,,,,,,,,,32.54572675,15.60694102,59.85275025,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.103,,,0.088,0.12,0.154,,,0.133,0.179,0.08,,,0.068,0.095,63.2,23,36407,,,0.084,3500,,,,0.074774856,3121.775452,41749,,,20.41032926,25,122487,13.20848894,30.12967229,,,,,,,,,,,,,20.67557439,13.24723064,30.76361581,,,,0.339,,,0.322,0.355,0.079702399,1864,23387,0.067787505,0.091617292,0.041863279,346,8265,0.029948385,0.053778173,0.001381347,58,41988,,,723.9310345,0.908880779,373.55,411,,,0.079751131,141,1768,0.029410313,0.13009195,3.022144694,,,,,,,,,3.036296517,3.038016798,,,,,,,,,3.038902815,0.05298195,,,,,6.963621429,,,,,0.818064516,46282,56575,0.764271476,0.871857557,58554,,,51851.87234,65256.12766,,,,166528,56838.29787,276217.7021,41324,41035.65957,41612.34043,34635,19507.85106,49762.14894,60565,57661.34043,63468.65957,,,,,,0.453251318,2579,5690,,,84.49438107,,,,,0.308962667,,58554,,,7.235142119,14,1935,,,,,,,,,,,,,,,,,,,,,,,,,,25.58031259,49,203231,18.51259906,34.45651318,24.11049495,,,,,,,,,,,,,27.09417128,19.6081861,36.49567091,,,,13.28537477,27,203231,8.755145687,19.32952278,,,,,,,,,,,,,13.99688958,9.22403843,20.36473947,,,,13.70315454,39,284606,9.744282443,18.73266335,,,,,,,,,,,,,12.56355682,8.70062832,17.55631138,,,,7.5,,3200,,,24,,0.707699415,22979,32470,,,0.52,,,,,84.04228816,,,,,0.794980882,14762,18569,0.774947919,0.815013846,0.078389473,1394,17783,0.063445375,0.093333571,0.835586192,15516,18569,0.810748327,0.860424058,41988,,,,,0.186553301,7833,41988,,,0.253643898,10650,41988,,,0.006668572,280,41988,,,0.008526246,358,41988,,,0.005882633,247,41988,,,0.000500143,21,41988,,,0.02491188,1046,41988,,,0.942602648,39578,41988,,,0.001953957,78,39919,0,0.004323229,0.489306469,20545,41988,,,0.60761368,25442,41872,, -55,077,55077,WI,Marquette County,2024,1,9259.144192,306,42256,7369.191713,11149.09667,0,,,,2,,,,2,,,,2,,,,2,9387.059591,7377.432097,11396.68708,,,,,2,,0.144,,,0.121,0.17,3.518872126,,,2.744976615,4.376966383,4.967414308,,,3.986049853,6.043427538,0.061116965,58,949,0.045876101,0.07635783,0,,,,,,,,,,,,,0.062283737,0.04619694,0.078370534,,,,,,,0.18,,,0.143,0.22,0.352,,,0.276,0.437,9,0.003216564,0.089,,,0.221,,,0.176,0.268,0.291688045,4548,15592,,,0.21627358,,,0.174600074,0.264436418,0.555555556,10,18,0.449513997,0.646460596,114,18,15792,,,15.4483798,41,2654,11.08602407,20.95747158,,,,,,,,,,,,,15.79846285,11.12357582,21.77609998,,,,,,,0.073839843,864,11701,0.063116439,0.084563247,0.00018997,3,15792,,,5264,0.000253502,4,15779,,,3944.75,0.00082388,13,15779,,,1213.769231,2162,,,,,,,,,2180,0.39,,,,,,,,,0.39,0.47,,,,,,,,,0.47,0.915153066,10732,11727,0.903746617,0.926559514,0.511792453,1519,2968,0.467845954,0.555738951,0.035315741,269,7617,,,0.166,479,,0.114765957,0.217234043,,,,,,,,,,0.157258065,0.036804364,0.277711765,0.130938124,0.095582876,0.166293371,3.911741117,112177,28677,3.658907081,4.164575152,0.184537815,549,2975,0.140518995,0.228556635,8.232016211,13,15792,,,128.7117244,100,77693,103.4842264,153.9392223,,,,,,,,,,,,,135.4395566,109.9563789,165.0574378,,,,7.8,,,,,0,,,,,0.108567208,735,6770,0.094824377,0.122310039,0.087570622,0.073912316,0.101228928,0.013293944,0.007020393,0.019567495,0.009601182,0.005734373,0.01346799,0.813919838,5625,6911,0.795017245,0.832822431,,,,,,,,,,,,,0.744825846,0.719034988,0.770616703,0.43,,6911,0.392115135,0.467884865,76.20605646,,,74.72697368,77.68513925,,,,,,,,,,,,,76.05020846,74.51353046,77.58688647,,,,438.5614892,306,42256,381.4103343,495.7126441,,,,,,,,,,,,,442.3592031,382.9225514,501.7958548,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.107,,,0.091,0.125,0.157,,,0.133,0.183,0.083,,,0.069,0.098,94.9,13,13695,,,0.089,1380,,,,0.003216564,49.54795236,15404,,,,,,,,,,,,,,,,,,,,,,,,,,0.318,,,0.301,0.335,0.080804598,703,8700,0.067698215,0.093910981,0.05479886,173,3157,0.038118009,0.071479711,0.000126751,2,15779,,,7889.5,0.91352459,111.45,122,,,,,,,,2.980172476,,,,,,,,,2.971140496,3.216928507,,,,,,,,,3.217099512,0.047764546,,,,,-201.9175,,,,,0.780314669,44190,56631,0.727199228,0.833430109,58197,,,52911.55319,63482.44681,62750,52519.87234,72980.12766,,,,,,,46250,15053.23404,77446.76596,60584,56717.61702,64450.38298,,,,,,0.495037221,798,1612,,,,,,,,0.375173978,,58197,,,6.915629322,5,723,,,,,,,,,,,,,,,,,,,,,,,,,,21.95825691,17,77693,12.00478339,36.84222396,21.88099314,,,,,,,,,,,,,23.7038961,12.62132636,40.53438425,,,,16.73252417,13,77693,8.90936441,28.61312592,,,,,,,,,,,,,17.9664718,9.566389556,30.72321395,,,,23.18356749,25,107835,15.0031825,34.22351899,,,,,,,,,,,,,23.83955976,15.27445577,35.47137524,,,,11.66666667,,1200,,,14,,0.735795455,9065,12320,,,0.572,,,,,11.79908363,,,,,0.800878477,5470,6830,0.784608083,0.817148871,0.087920374,583,6631,0.072654237,0.103186511,0.85431918,5835,6830,0.83356845,0.87506991,15779,,,,,0.187147475,2953,15779,,,0.266176564,4200,15779,,,0.00671779,106,15779,,,0.009569681,151,15779,,,0.008365549,132,15779,,,0.000380252,6,15779,,,0.041193992,650,15779,,,0.925280436,14600,15779,,,0.006099605,91,14919,0.001267358,0.010931851,0.482730211,7617,15779,,,1,15592,15592,, -55,078,55078,WI,Menominee County,2024,1,22252.42295,123,12719,16866.61968,27638.22623,0,26153.48835,19787.41194,32519.56476,,,,,2,,,,2,,,,2,,,,2,,,,2,,0.216,,,0.188,0.245,4.695476339,,,3.854932946,5.647945916,6.056518784,,,5.074543649,7.084169518,0.068421053,39,570,0.047694678,0.089147428,0,0.056521739,0.035418415,0.077625063,,,,,,,,,,,,,,,,,,,0.256,,,0.21,0.3,0.422,,,0.357,0.487,6,0.144257631,0.158,,,0.257,,,0.215,0.3,0.008460635,36,4255,,,0.225103691,,,0.184592913,0.267358704,0.75,3,4,0.567659215,0.8560462,979.2,42,4289,,,53.62776025,68,1268,41.64405422,67.98596463,51.10220441,38.04894773,67.1899613,,,,,,,,,,,,,,,,,,,0.063013699,184,2920,0.052290294,0.073737103,0.000932618,4,4289,,,1072.25,0.001667858,7,4197,,,599.5714286,0.003097451,13,4197,,,322.8461539,3219,,,,,3020,,,,1922,0.34,,,,,0.28,,,,0.48,0.48,,,,,0.49,,,,0.44,0.954983923,2376,2488,0.934104891,0.975862954,0.538461539,448,832,0.409767675,0.667155402,0.055259654,83,1502,,,0.408,562,,0.251914894,0.564085106,0.330721003,0.23988393,0.421558076,,,,,,,0.303030303,0.115292434,0.490768172,,,,3.610074567,112804,31247,3.097053136,4.123095998,0.41909621,575,1372,0.264081722,0.574110698,6.994637445,3,4289,,,167.6667843,38,22664,118.6509956,230.1357612,202.6870512,141.1789576,281.8886227,,,,,,,,,,,,,,,,6.7,,,,,0,,,,,0.2,280,1400,0.121360781,0.278639219,0.074712644,0.030872755,0.118552532,0.135714286,0.061644396,0.209784176,0,0,0.010832274,0.799853372,1091,1364,0.708209684,0.891497061,0.834377798,0.746275996,0.9224796,,,,,,,,,,0.853492334,0.710036804,0.996947864,0.141,,1364,0.066935733,0.215064267,65.92618283,,,62.79616821,69.05619745,62.33703919,59.11826793,65.55581045,,,,,,,,,,,,,,,,925.2434992,123,12719,752.0274417,1098.459557,1172.286285,948.3441342,1396.228436,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.143,,,0.125,0.163,0.181,,,0.157,0.206,0.133,,,0.115,0.152,278.1,9,3237,,,0.158,680,,,,0.144257631,610.4982945,4232,,,,,,,,,,,,,,,,,,,,,,,,,,0.369,,,0.353,0.384,0.086783891,153,1763,0.068911551,0.104656232,0.026960784,33,1224,0.017428869,0.036492699,0.001191327,5,4197,,,839.4,0.975,79.95,82,,,,,,,,2.011997792,,,,,,,,,,1.815055281,,,,,,,,,,0.014640228,,,,,-5335.941,,,,,0.936555891,38750,41375,0.673691739,1.199420044,51623,,,45845.46809,57400.53192,61538,55158.76596,67917.23404,,,,,,,93295,72104.3617,114485.6383,75667,63263.59575,88070.40426,,,,,,0.931034483,891,957,,,,,,,,0.297658021,,51623,,,8.849557522,3,339,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,40.91910608,13,31770,21.78770063,69.97291759,53.60603686,28.54295695,91.66795562,,,,,,,,,,,,,,,,,,600,,,,,0.517915309,1590,3070,,,0.376,,,,,0.473415407,,,,,0.701606733,917,1307,0.63675211,0.766461356,0.088070456,110,1249,0.030608426,0.145532487,0.856159143,1119,1307,0.781644792,0.930673494,4197,,,,,0.332856803,1397,4197,,,0.141053133,592,4197,,,0.009054086,38,4197,,,0.795091732,3337,4197,,,0.017631642,74,4197,,,0,0,4197,,,0.081010245,340,4197,,,0.134619967,565,4197,,,0,0,3925,0,0.01092831,0.511555873,2147,4197,,,1,4255,4255,, -55,079,55079,WI,Milwaukee County,2024,1,10426.36623,14749,2659979,10192.6394,10660.09306,0,12232.42016,9479.957605,15534.7412,,5571.031464,4829.38028,6312.682648,,18099.23862,17506.44241,18692.03484,,7334.929887,6853.935249,7815.924525,,7850.613164,7563.736583,8137.489745,,,,,2,,0.159,,,0.137,0.183,3.462472616,,,2.844799824,4.095288528,5.359184848,,,4.643788553,6.095520401,0.108872826,9685,88957,0.106825931,0.110919721,0,0.128027682,0.089505539,0.166549825,0.085872576,0.078862728,0.092882425,0.166709176,0.16258436,0.170833991,0.0833234,0.079141462,0.087505337,0.06917916,0.066361161,0.071997158,,,,0.107504363,0.096161835,0.118846891,0.171,,,0.142,0.204,0.377,,,0.338,0.417,8.5,0.023154568,0.099,,,0.22,,,0.187,0.254,0.984289332,924729,939489,,,0.238204292,,,0.207839978,0.270140515,0.230024213,95,413,0.205441558,0.255338612,1175.8,10912,928059,,,24.1644136,5157,213413,23.5048848,24.8239424,14.77832512,8.758572069,23.35612501,16.58591129,14.14930474,19.02251785,44.68146006,43.07341633,46.28950378,27.90954924,26.39932312,29.41977535,5.202232047,4.700501243,5.703962851,,,,29.57144507,25.94894305,33.1939471,0.082192403,63323,770424,0.076234956,0.08814985,0.000770425,715,928059,,,1297.984615,0.000908932,835,918661,,,1100.192814,0.003667294,3369,918661,,,272.6806174,3582,,,,,10106,3556,5949,4050,2974,0.43,,,,,0.46,0.24,0.32,0.31,0.47,0.52,,,,,0.47,0.48,0.36,0.39,0.56,0.89498421,555463,620640,0.891410066,0.898558354,0.669816129,182689,272745,0.657017515,0.682614742,0.036781444,16885,459063,,,0.23,48975,,0.197829787,0.262170213,0.326041667,0.1918384,0.460244933,0.31671649,0.261271838,0.372161142,0.391501555,0.372810965,0.410192145,0.252336271,0.229258926,0.275413616,0.084428846,0.071274059,0.097583633,4.859097407,118975,24485,4.715531819,5.002662994,0.404992827,89778,221678,0.389033744,0.420951911,8.243010412,765,928059,,,129.1351484,6094,4719087,125.8928774,132.3774194,165.9876264,120.6068634,222.8306409,37.24631625,29.62310065,46.23249929,162.6417471,155.5437608,169.7397333,71.46765379,65.37736678,77.55794081,141.255938,136.4803316,146.0315445,,,,8.7,,,,,0,,,,,0.193703496,74325,383705,0.187033044,0.200373948,0.166099442,0.160288714,0.171910169,0.025696824,0.023428603,0.027965046,0.014073312,0.011801288,0.016345335,0.728386314,324845,445979,0.720658965,0.736113664,0.698574338,0.599587914,0.797560762,0.697017721,0.670029876,0.724005566,0.683983685,0.666697344,0.701270026,0.698538937,0.677755846,0.719322028,0.770695143,0.763799168,0.777591117,0.259,,445979,0.251278266,0.266721734,75.10119685,,,74.90880487,75.29358882,73.63797677,71.03102352,76.24493002,80.57081712,79.32928847,81.81234576,68.50696248,68.11095553,68.90296944,79.71169696,78.89962166,80.52377226,77.42746576,77.18584023,77.66909128,,,,488.1246055,14749,2659979,480.0615645,496.1876466,578.0548825,464.8243882,710.5275901,295.9249529,260.9591763,330.8907296,819.0187042,797.4925157,840.5448928,359.3672679,337.7545481,380.9799876,393.4261897,383.8640118,402.9883676,,,,74.77694039,750,1002983,69.4252235,80.12865728,,,,51.52078312,34.23518622,74.46187636,142.8358694,129.9223558,155.7493831,47.75203053,38.90823071,56.59583034,37.69726981,31.08864704,44.30589259,,,,8.504536848,777,91363,7.90654367,9.102530025,,,,5.612572162,3.909362156,7.805729213,14.90510724,13.57582375,16.23439073,6.487379099,5.275026337,7.69973186,4.179566564,3.474515725,4.884617402,,,,,,,0.106,,,0.092,0.121,0.157,,,0.138,0.178,0.102,,,0.088,0.115,411,3159,768551,,,0.099,93010,,,,0.023154568,21944.39406,947735,,,53.85268417,1518,2818801,51.14356855,56.56179979,173.8570509,114.572892,252.9528812,,,,66.31755596,60.45749636,72.17761555,33.74313483,28.37875273,39.10751693,57.88559701,53.90897433,61.8622197,,,,0.329,,,0.318,0.34,0.10129158,56301,555831,0.092951154,0.109632005,0.033606761,7563,225044,0.026457825,0.040755698,0.0025363,2330,918661,,,394.2751073,0.763757152,7475.655,9788,,,0.069602273,3479,49984,0.058213501,0.080991045,2.487309774,,,,,,2.860726599,1.834047311,2.347610686,3.26900727,2.444757798,,,,,,2.92881987,1.768493109,2.308815628,3.297338831,0.352150475,,,,,1387.491818,,,,,0.841509894,48354,57461,0.822621771,0.860398016,58375,,,56361.38298,60388.61702,58989,37917.51064,80060.48936,73066,68952.97872,77179.02128,36449,34413.93617,38484.06383,53154,51414.42553,54893.57447,73717,72510.02128,74923.97872,,,,,,0.606589116,74568,122930,,,75.18808524,,,,,0.598458244,,58375,,,9.950641036,631,63413,,,16.74645119,1110,6628270,15.76126714,17.73163523,,,,5.349345708,3.057613274,8.687002293,50.69935798,47.35337106,54.0453449,9.703874983,7.886830749,11.8141196,3.05052318,2.461392298,3.639654061,,,,13.77038277,653,4719087,12.69309771,14.84766783,13.83742237,,,,8.507503668,4.955934398,13.62133751,8.529064669,6.811296235,10.2468331,8.501246924,6.386398335,11.09228316,17.76093921,16.05243972,19.46943869,,,,20.85149098,984,4719087,19.54863732,22.15434464,,,,6.813350533,3.813380572,11.23758556,52.00987946,47.99602093,56.02373799,10.80796277,8.570042298,13.45144522,9.792512217,8.535115758,11.04990868,,,,10.51556439,697,6628270,9.734885802,11.29624298,,,,5.683679815,3.310952942,9.10012197,20.40620418,18.2834284,22.52897995,7.253401502,5.695480273,9.105981361,7.167248635,6.264221379,8.070275892,,,,9.709976798,,86200,,,837,,0.678238832,458971,676710,,,0.674,,,,,840.4090313,,,,,0.493804705,192212,389247,0.485533771,0.502075639,0.170190031,64187,377149,0.164576268,0.175803794,0.85290317,331990,389247,0.846808506,0.858997833,918661,,,,,0.235378448,216233,918661,,,0.148942864,136828,918661,,,0.260315829,239142,918661,,,0.010423867,9576,918661,,,0.052663605,48380,918661,,,0.000369015,339,918661,,,0.165965465,152466,918661,,,0.490633651,450726,918661,,,0.033178287,28910,871353,0.031075999,0.035280575,0.513293805,471543,918661,,,0.002769591,2602,939489,, -55,081,55081,WI,Monroe County,2024,1,7078.51185,647,129132,6205.343162,7951.680537,0,,,,2,,,,2,,,,2,,,,2,7058.912251,6134.406911,7983.41759,,,,,2,,0.142,,,0.117,0.169,3.485642747,,,2.747673964,4.389714015,4.933762784,,,3.999723529,6.024428095,0.0683676,276,4037,0.060582321,0.076152878,0,,,,,,,,,,0.068441065,0.037924071,0.098958058,0.067130919,0.058944754,0.075317084,,,,,,,0.171,,,0.134,0.214,0.346,,,0.275,0.426,8.6,0.065717892,0.077,,,0.227,,,0.185,0.279,0.594956131,27531,46274,,,0.225023277,,,0.183878462,0.271524296,0.352941177,12,34,0.263338918,0.441188858,337.7,156,46193,,,14.77074572,144,9749,12.35819058,17.18330085,,,,,,,,,,24.19354839,14.33863008,38.23623692,14.25686111,11.705985,16.80773723,,,,,,,0.089063594,3308,37142,0.0771487,0.100978487,0.000627801,29,46193,,,1592.862069,0.000650632,30,46109,,,1536.966667,0.00221215,102,46109,,,452.0490196,1436,,,,,,,,,1421,0.57,,,,,0.44,0.5,,,0.57,0.42,,,,,0.22,0.33,0.13,0.53,0.42,0.909248222,28374,31206,0.898900685,0.919595758,0.604913558,6648,10990,0.550337195,0.65948992,0.026644751,616,23119,,,0.178,1996,,0.125574468,0.230425532,0.5,0.231644968,0.768355032,,,,,,,0.168353266,0.094934285,0.241772247,0.148361005,0.119926496,0.176795514,3.872948309,120104,31011,3.592257293,4.153639325,0.165019338,1920,11635,0.130527231,0.199511445,9.741735761,45,46193,,,73.68749567,170,230704,62.61041272,84.76457861,,,,,,,,,,,,,73.74809002,62.0622178,85.43396224,,,,8,,,,,1,,,,,0.114840499,2070,18025,0.096917585,0.132763414,0.082837274,0.067834743,0.097839805,0.022191401,0.014764998,0.029617804,0.024133148,0.017048831,0.031217466,0.780311739,16971,21749,0.758762752,0.801860725,,,,,,,,,,0.750497018,0.649943561,0.851050475,0.782050677,0.762868999,0.801232356,0.259,,21749,0.233389907,0.284610093,77.72927189,,,76.95358607,78.50495771,,,,,,,,,,87.06028024,64.91161505,109.2089454,77.74449376,76.93722377,78.55176375,,,,368.5449392,647,129132,338.7365289,398.3533494,,,,,,,,,,,,,366.7134263,335.6932292,397.7336234,,,,51.44236477,26,50542,33.60386058,75.37498335,,,,,,,,,,,,,49.99880955,30.95005115,76.42849155,,,,6.575742815,27,4106,4.33345595,9.567360557,,,,,,,,,,,,,5.997818975,3.758801219,9.080770007,,,,,,,0.105,,,0.089,0.124,0.154,,,0.131,0.181,0.083,,,0.07,0.099,71,27,38042,,,0.077,3570,,,,0.065717892,2935.815381,44673,,,22.29766666,31,139028,15.15018268,31.64975797,,,,,,,,,,,,,22.47281191,14.93302031,32.47947024,,,,0.319,,,0.301,0.335,0.095158403,2445,25694,0.08086053,0.109456275,0.075646372,907,11990,0.054199564,0.097093181,0.001322952,61,46109,,,755.8852459,0.923969805,520.195,563,,,0.095919226,228,2377,0.056880013,0.134958439,3.096544401,,,,,,,,2.975873046,3.164346435,2.978463961,,,,,,,,2.838642998,3.057840686,0.062106157,,,,,-192.3185,,,,,0.822118051,45949,55891,0.774530622,0.86970548,65232,,,58980.25532,71483.74468,95714,15529.14894,175898.8511,121333,79975.21277,162690.7872,46651,45403.51064,47898.48936,69821,53704.91489,85937.08511,67003,64048.10638,69957.89362,,,,,,0.449880164,3191,7093,,,59.88025413,,,,,0.280583149,,65232,,,4.06366407,12,2953,,,3.417465111,11,321876,1.70598627,6.114789084,,,,,,,,,,,,,,,,,,,13.71953518,32,230704,9.25651277,19.58548954,13.87058742,,,,,,,,,,,,,12.68615877,8.209813062,18.72727291,,,,11.26985228,26,230704,7.361841674,16.51294476,,,,,,,,,,,,,11.08631419,7.027772199,16.63491461,,,,11.80578857,38,321876,8.354478633,16.20436719,,,,,,,,,,,,,12.73197136,8.964482813,17.54934539,,,,7.659574468,,4700,,,36,,0.665322937,22611,33985,,,0.69,,,,,76.53864199,,,,,0.715151178,12867,17992,0.694960588,0.735341769,0.092570177,1606,17349,0.075195607,0.109944747,0.838928413,15094,17992,0.826686835,0.85116999,46109,,,,,0.247890867,11430,46109,,,0.184324102,8499,46109,,,0.014834414,684,46109,,,0.014530786,670,46109,,,0.010410115,480,46109,,,0.001106075,51,46109,,,0.052636145,2427,46109,,,0.895530157,41292,46109,,,0.007735827,335,43305,0.004890085,0.01058157,0.490121235,22599,46109,,,0.567727017,26271,46274,, -55,083,55083,WI,Oconto County,2024,1,6570.667126,560,106555,5575.429427,7565.904825,0,,,,2,,,,2,,,,2,,,,2,6874.989886,5808.755807,7941.223964,,,,,2,,0.132,,,0.11,0.159,3.339973932,,,2.591113974,4.227050174,4.814172976,,,3.841671554,5.900508689,0.07398568,186,2514,0.063753784,0.084217576,0,,,,,,,,,,,,,0.072750753,0.062188698,0.083312809,,,,,,,0.166,,,0.13,0.206,0.383,,,0.303,0.467,9.3,0.022009116,0.066,,,0.207,,,0.165,0.257,0.596099063,23227,38965,,,0.231474911,,,0.187363085,0.279847969,0.354166667,17,48,0.279817228,0.427690189,213.4,84,39356,,,13.49831271,96,7112,10.93367663,16.48375014,,,,,,,,,,,,,11.16720208,8.753303797,14.04108003,,,,,,,0.065117641,2001,30729,0.056777216,0.073458067,0.000304909,12,39356,,,3279.666667,0.000378473,15,39633,,,2642.2,0.000378473,15,39633,,,2642.2,1400,,,,,,,,,1384,0.51,,,,,,,,,0.51,0.35,,,,,0.38,,,,0.35,0.924202405,26593,28774,0.914921954,0.933482856,0.628282342,5216,8302,0.582151254,0.674413429,0.031127082,641,20593,,,0.105,802,,0.06687234,0.14312766,0.034682081,0,0.182698602,0.05,0,0.938930342,,,,0.083832335,0.011159795,0.156504875,0.086129419,0.064597032,0.107661806,3.682470423,125749,34148,3.401867024,3.963073821,0.16106515,1246,7736,0.124150689,0.197979611,10.67181624,42,39356,,,99.44936457,190,191052,85.30832676,113.5904024,,,,,,,,,,,,,103.4400739,88.61407068,118.2660771,,,,7.2,,,,,1,,,,,0.085354621,1390,16285,0.073578473,0.097130769,0.065801668,0.055514338,0.076088999,0.014737489,0.009460428,0.020014549,0.006447651,0.002182873,0.010712429,0.801638045,15171,18925,0.779935864,0.823340226,,,,,,,,,,,,,0.734028048,0.700462396,0.767593701,0.44,,18925,0.40747867,0.472521331,78.54683535,,,77.66831924,79.42535146,,,,,,,,,,,,,78.28711078,77.36838001,79.20584155,,,,325.0538969,560,106555,295.3206938,354.7870999,,,,,,,,,,,,,333.1584602,302.0963666,364.2205537,,,,47.34988606,16,33791,27.06455108,76.89324849,,,,,,,,,,,,,45.96040839,25.12698295,77.11375569,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.101,,,0.086,0.118,0.152,,,0.13,0.177,0.078,,,0.066,0.093,17.7,6,33908,,,0.066,2570,,,,0.022009116,828.8633024,37660,,,13.83257398,16,115669,7.906511212,22.46323354,,,,,,,,,,,,,13.73387414,7.686745102,22.65193682,,,,0.316,,,0.298,0.333,0.071743592,1643,22901,0.061020188,0.082466996,0.046808511,385,8225,0.033702128,0.059914894,0.000681251,27,39633,,,1467.888889,0.908038869,256.975,283,,,0.059564719,104,1746,0.022252334,0.096877104,3.077215515,,,,,,,,,3.111077321,3.163691722,,,,,,,,,3.221198711,0.056188939,,,,,227.2864,,,,,0.764594757,45735,59816,0.727360855,0.80182866,68127,,,60866.06383,75387.93617,53068,27288.93617,78847.06383,31875,13356.87234,50393.12766,,,,54853,34682.2766,75023.7234,74429,71346.61702,77511.38298,,,,,,0.363636364,1644,4521,,,,,,,,0.175818692,,68127,,,3.255561584,6,1843,,,,,,,,,,,,,,,,,,,,,,,,,,18.56806978,36,191052,12.70054598,26.21257433,18.8430375,,,,,,,,,,,,,17.55028669,11.66203805,25.36505074,,,,14.13227812,27,191052,9.313260333,20.5617227,,,,,,,,,,,,,14.38204236,9.394827562,21.07302431,,,,17.29863078,46,265917,12.66477187,23.07394928,,,,,,,,,,,,,17.85381298,13.0226937,23.88980646,,,,5.3125,,3200,,,17,,0.77011113,23215,30145,,,0.594,,,,,6.91182843,,,,,0.84361611,13783,16338,0.8261081,0.861124119,0.074249605,1175,15825,0.060894241,0.087604969,0.85096095,13903,16338,0.833375905,0.868545995,39633,,,,,0.196376757,7783,39633,,,0.226099463,8961,39633,,,0.004062271,161,39633,,,0.017157419,680,39633,,,0.005248152,208,39633,,,0.000302778,12,39633,,,0.021800015,864,39633,,,0.941740469,37324,39633,,,0.001155076,43,37227,0,0.003596992,0.482274872,19114,39633,,,1,38965,38965,, -55,085,55085,WI,Oneida County,2024,1,7218.568626,550,97542,6027.565427,8409.571825,0,,,,2,,,,2,,,,2,,,,2,6993.452495,5802.934341,8183.97065,,,,,2,,0.124,,,0.101,0.148,3.312040707,,,2.594196248,4.119367571,4.571206897,,,3.713202677,5.497577069,0.063390663,129,2035,0.052803838,0.073977489,0,,,,,,,,,,,,,0.064533333,0.053411878,0.075654789,,,,,,,0.15,,,0.114,0.188,0.335,,,0.275,0.397,9.1,0.024989546,0.07,,,0.195,,,0.157,0.238,0.718139781,27178,37845,,,0.224701553,,,0.186090978,0.265633895,0.517241379,15,29,0.432267119,0.594019435,138.5,53,38259,,,11.23990165,64,5694,8.656093879,14.35310348,,,,,,,,,,,,,10.72752097,8.081436897,13.96334308,,,,,,,0.064646538,1775,27457,0.055114623,0.074178453,0.000705716,27,38259,,,1417,0.000863603,33,38212,,,1157.939394,0.002931016,112,38212,,,341.1785714,2188,,,,,9130,,,,2093,0.52,,,,,0.44,,,,0.52,0.44,,,,,0.29,,,,0.44,0.95359956,27724,29073,0.94543347,0.961765649,0.694891918,5047,7263,0.634769729,0.755014107,0.033062026,589,17815,,,0.135,845,,0.092106383,0.177893617,0.964285714,0.206097117,1,,,,,,,,,,0.078705341,0.048208035,0.109202648,4.382578422,124623,28436,4.033663106,4.731493737,0.171186441,1111,6490,0.127745435,0.214627446,14.63707886,56,38259,,,105.3629755,190,180329,90.38106153,120.3448894,,,,,,,,,,,,,107.796499,92.22064682,123.3723511,,,,6.1,,,,,0,,,,,0.094098884,1475,15675,0.079290287,0.108907481,0.087989724,0.073487512,0.102491936,0.003444976,0.00088453,0.006005422,0.003827751,0.000496105,0.007159398,0.796006051,13154,16525,0.777148053,0.81486405,,,,,,,,,,,,,0.80968661,0.790284711,0.829088509,0.217,,16525,0.192321497,0.241678503,78.0506498,,,77.11336202,78.98793759,,,,,,,,,,,,,78.16086157,77.22394213,79.09778101,,,,325.463725,550,97542,293.1699911,357.757459,,,,,,,,,,,,,323.587833,290.593334,356.582332,,,,63.09382423,17,26944,36.75447769,101.0193246,,,,,,,,,,,,,58.05033794,31.73665993,97.39860315,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.097,,,0.082,0.113,0.148,,,0.125,0.171,0.077,,,0.064,0.09,41.5,14,33761,,,0.07,2620,,,,0.024989546,899.5736577,35998,,,10.0360385,11,109605,5.009954261,17.95724512,,,,,,,,,,,,,10.61110307,5.297024422,18.98619449,,,,0.321,,,0.303,0.339,0.071102227,1494,21012,0.059187334,0.083017121,0.044769504,303,6768,0.031663121,0.057875887,0.002381451,91,38212,,,419.9120879,0.924918794,398.64,431,,,,,,,,3.088472547,,,,,,,,,3.122424385,2.959720923,,,,,,,,,3.008185618,0.114342155,,,,,4937.37225,,,,,0.780031916,45947,58904,0.70888392,0.851179912,62242,,,56423.95745,68060.04255,65875,64993.29787,66756.70213,,,,31161,30440.14894,31881.85106,,,,66622,63216.7234,70027.2766,,,,,,0.443575965,1816,4094,,,82.27309724,,,,,0.24054497,,62242,,,6.417736289,11,1714,,,,,,,,,,,,,,,,,,,,,,,,,,19.37899536,38,180329,13.07492679,27.66472086,21.07259509,,,,,,,,,,,,,19.76882756,13.13624235,28.57146,,,,10.53629755,19,180329,6.3435394,16.45373377,,,,,,,,,,,,,11.13116022,6.701685588,17.38268552,,,,8.747619256,22,251497,5.482086415,13.24400068,,,,,,,,,,,,,9.229155742,5.783862768,13.97305271,,,,28.4,,2500,,,71,,0.827646454,24159,29190,,,0.492,,,,,97.6280109,,,,,0.825851252,13558,16417,0.813617356,0.838085147,0.097765538,1562,15977,0.082080628,0.113450448,0.864530669,14193,16417,0.85138314,0.877678199,38212,,,,,0.166858579,6376,38212,,,0.28231969,10788,38212,,,0.005390977,206,38212,,,0.012797027,489,38212,,,0.005757354,220,38212,,,0.000314038,12,38212,,,0.01745525,667,38212,,,0.945933215,36146,38212,,,0.002156364,78,36172,0.000205693,0.004107035,0.491023762,18763,38212,,,0.742687277,28107,37845,, -55,087,55087,WI,Outagamie County,2024,1,6037.827848,2041,532916,5634.710566,6440.94513,0,13592.75263,9170.973121,19404.49958,,7631.673689,5500.239122,10315.80579,,11999.2658,8095.854247,17129.69804,,4512.989642,3044.89516,6442.573331,,5800.596305,5375.456107,6225.736502,,,,,2,,0.117,,,0.097,0.141,3.060122336,,,2.378037918,3.819570161,4.632634408,,,3.818535638,5.520403449,0.066837203,1019,15246,0.062872908,0.070801498,0,0.06949807,0.038527357,0.100468782,0.07306434,0.056220197,0.089908484,0.125,0.092589546,0.157410454,0.083838384,0.066574203,0.101102564,0.062349155,0.058098495,0.066599815,,,,0.096385542,0.051490378,0.141280706,0.14,,,0.109,0.179,0.32,,,0.264,0.384,9.1,0.047856243,0.059,,,0.185,,,0.15,0.228,0.88257256,168311,190705,,,0.261345628,,,0.221176701,0.307030538,0.405405405,30,74,0.34834446,0.460998518,318.5,610,191545,,,8.764516986,363,41417,7.862882019,9.666151952,25.49246813,15.97599406,38.59590311,11.01005266,6.979428931,16.52048487,32.97997644,21.91495484,47.66524846,22.91442893,17.64690245,29.26121418,6.378964392,5.522288693,7.23564009,,,,7.132667618,3.420391367,13.1172297,0.052258024,8320,159210,0.046300577,0.058215471,0.000903182,173,191545,,,1107.196532,0.000890036,171,192127,,,1123.549708,0.002774207,533,192127,,,360.4634146,1609,,,,,2301,4326,1579,,1514,0.55,,,,,0.37,0.2,0.43,0.41,0.57,0.57,,,,,0.56,0.48,0.23,0.37,0.57,0.942436587,122611,130100,0.936153609,0.948719565,0.724541134,36435,50287,0.695502023,0.753580245,0.025122584,2613,104010,,,0.083,3565,,0.061553192,0.104446809,0.150470219,0.044605013,0.256335426,0.098172324,0.03788737,0.158457277,0.307909605,0.131953884,0.483865326,0.286670547,0.216637382,0.356703712,0.050517257,0.040059834,0.060974679,3.709489478,139436,37589,3.511324508,3.907654449,0.138339652,6094,44051,0.11985559,0.156823713,9.501683678,182,191545,,,60.64017332,571,941620,55.66625727,65.61408937,121.0246756,71.7268929,191.2711643,37.34666322,19.88552527,63.86393151,98.22440499,52.30035883,167.966724,23.12940904,11.09145067,42.53580674,62.609689,57.19168982,68.02768819,,,,8.1,,,,,0,,,,,0.086668007,6465,74595,0.077779609,0.095556405,0.069803446,0.062032187,0.077574706,0.01508144,0.011556738,0.018606141,0.004759032,0.003033623,0.006484441,0.804887706,81317,101029,0.792876911,0.8168985,0.845105328,0.785111157,0.9050995,0.685523114,0.579110778,0.791935451,0.779816514,0.605414638,0.95421839,0.750829876,0.676287967,0.825371784,0.820546714,0.813757392,0.827336035,0.216,,101029,0.201801766,0.230198234,78.99872584,,,78.61934294,79.37810875,71.75137974,68.31433966,75.18841982,78.41371607,75.63006085,81.1973713,72.47525646,66.86118747,78.08932545,91.57928266,79.77034655,103.3882188,79.14367993,78.7485334,79.53882646,,,,302.2217743,2041,532916,288.6928166,315.7507321,556.676559,415.7526805,730.007245,345.6563209,254.8596845,458.2901339,675.2152713,455.5649082,963.9117846,197.657641,135.1976801,279.0336134,296.021853,281.9631319,310.080574,,,,46.9193091,91,193950,37.7765009,57.60651452,,,,112.4514414,56.1353544,201.206691,,,,,,,44.83430799,34.88376774,56.74068622,,,,5.269245598,82,15562,4.190787397,6.540523142,,,,,,,,,,,,,4.177833833,3.129484229,5.464709517,,,,,,,0.09,,,0.075,0.107,0.141,,,0.12,0.165,0.075,,,0.063,0.09,76,122,160430,,,0.059,11210,,,,0.047856243,8455.958864,176695,,,14.60763539,83,568196,11.63490005,18.10836187,,,,,,,,,,,,,14.40699977,11.25198635,18.17246987,,,,0.298,,,0.282,0.314,0.059136611,6811,115174,0.050796185,0.067477036,0.035898766,1661,46269,0.026366851,0.045430681,0.001587492,305,192127,,,629.9245902,0.909362963,2455.28,2700,,,0.041923037,402,9589,0.026012016,0.057834057,3.072119173,,,,,,2.472253909,2.284267142,2.487601556,3.238281774,3.111417352,,,,,,2.506534431,2.11572926,2.445780265,3.318806916,0.100892221,,,,,3067.217963,,,,,0.742797333,47903,64490,0.70927048,0.776324186,78808,,,74955.91489,82660.08511,65833,53464.14894,78201.85106,101419,84715.51064,118122.4894,59125,32669.17021,85580.82979,51818,31814.08511,71821.91489,79424,77195.91489,81652.08511,,,,,,0.292534585,9283,31733,,,57.63506884,,,,,0.354634047,,78808,,,6.228373702,72,11560,,,2.062027309,27,1309391,1.35888899,3.000141474,,,,,,,,,,,,,1.574472552,0.933132219,2.488345428,,,,15.59113237,147,941620,13.02258368,18.15968107,15.61139313,,,,,,,,,,,,,16.60704812,13.7541098,19.45998644,,,,9.982795608,94,941620,8.067115015,12.2164136,,,,,,,,,,,,,9.885740369,7.850704816,12.28707265,,,,9.69916549,127,1309391,8.012268434,11.38606255,,,,,,,,,,,,,9.709247402,7.90298788,11.51550692,,,,18.62857143,,17500,,,326,,0.771723522,108022,139975,,,0.808,,,,,204.4071323,,,,,0.714649166,54775,76646,0.703963613,0.725334719,0.069978293,5287,75552,0.063222192,0.076734394,0.908397046,69625,76646,0.898018058,0.918776034,192127,,,,,0.227438101,43697,192127,,,0.166218179,31935,192127,,,0.016286102,3129,192127,,,0.019377807,3723,192127,,,0.039317743,7554,192127,,,0.000843192,162,192127,,,0.049805597,9569,192127,,,0.86048291,165322,192127,,,0.009711769,1742,179370,0.00716549,0.012258048,0.496322745,95357,192127,,,0.253931465,48426,190705,, -55,089,55089,WI,Ozaukee County,2024,1,4809.527029,822,247716,4244.327524,5374.726534,0,,,,2,,,,2,,,,2,,,,2,4860.486551,4253.676605,5467.296496,,,,,2,,0.093,,,0.075,0.114,2.559178516,,,1.919535665,3.275067134,4.271412351,,,3.431509202,5.192150394,0.06122098,356,5815,0.055059103,0.067382857,0,,,,0.121495327,0.077722862,0.165267793,,,,0.060747664,0.028743601,0.092751727,0.059747818,0.05327751,0.066218125,,,,,,,0.111,,,0.081,0.146,0.281,,,0.219,0.352,9.4,0.053449805,0.044,,,0.149,,,0.117,0.189,0.956689945,87540,91503,,,0.24750801,,,0.204035192,0.2995282,0.333333333,11,33,0.241734343,0.424691959,140.5,130,92497,,,1.805997814,38,21041,1.278031541,2.478873101,,,,,,,,,,,,,1.470668337,0.969179701,2.139745217,,,,,,,0.040540166,2924,72126,0.034582719,0.046497613,0.001502751,139,92497,,,665.4460432,0.000935393,87,93009,,,1069.068966,0.002924448,272,93009,,,341.9448529,1735,,,,,,3061,3816,,1671,0.52,,,,,,0.21,0.35,,0.52,0.59,,,,,,0.6,0.36,0.36,0.59,0.976763305,62969,64467,0.97176128,0.981765331,0.801244418,15968,19929,0.753845239,0.848643596,0.024633672,1202,48795,,,0.046,874,,0.032893617,0.059106383,,,,0.095890411,0,0.296904535,,,,0.053212851,0,0.109100709,0.047108151,0.031223894,0.062992409,4.438190006,183315,41304,4.061366092,4.815013919,0.171167902,3302,19291,0.135088504,0.207247301,11.02738467,102,92497,,,77.44743923,348,449337,69.31026693,85.58461153,,,,,,,,,,,,,80.79284714,72.07574742,89.50994686,,,,6.9,,,,,0,,,,,0.105212222,3805,36165,0.091761222,0.118663221,0.096670846,0.083405704,0.109935987,0.008295313,0.004696342,0.011894284,0.004949537,0.001717288,0.008181786,0.784843007,37769,48123,0.765571443,0.80411457,,,,0.757296467,0.633752818,0.880840116,0.781682641,0.69259725,0.870768033,0.788573812,0.671727642,0.905419981,0.764728192,0.748852805,0.780603579,0.347,,48123,0.321640583,0.372359417,81.27307981,,,80.73428547,81.81187415,,,,85.07556211,80.56656276,89.58456146,,,,92.36635169,77.20851348,107.5241899,81.20806436,80.64145431,81.77467441,,,,231.3596249,822,247716,214.2998002,248.4194497,,,,,,,,,,,,,232.2064838,214.3054075,250.10756,,,,28.92246466,25,86438,18.71709416,42.69526331,,,,,,,,,,,,,29.62923058,18.56848106,44.85901117,,,,4.452054795,26,5840,2.908230003,6.523291795,,,,,,,,,,,,,4.243827161,2.659583887,6.425205322,,,,,,,0.076,,,0.063,0.091,0.128,,,0.107,0.151,0.065,,,0.055,0.078,37.9,30,79068,,,0.044,3980,,,,0.053449805,4617.79594,86395,,,15.82272659,43,271761,11.45098569,21.31310888,,,,,,,,,,,,,15.42833942,10.91801122,21.17660127,,,,0.278,,,0.26,0.295,0.043970686,2310,52535,0.03682175,0.051119622,0.032806746,677,20636,0.023274831,0.04233866,0.001655754,154,93009,,,603.9545455,0.981392892,1021.63,1041,,,,,,,,3.567239801,,,,,,4.091239268,2.853981794,3.220920871,3.593374282,3.575116307,,,,,,4.33518161,2.893350311,3.335747211,3.583254989,0.042367058,,,,,4961.5768,,,,,0.72329121,59354,82061,0.664866228,0.781716192,97778,,,86595.87234,108960.1277,70625,51278.78723,89971.21277,210193,26069.76596,394316.234,74219,2678.404255,145759.5957,80357,55733.68085,104980.3192,91581,87131.97872,96030.02128,,,,,,0.136473236,1698,12442,,,41.03061647,,,,,0.319008366,,97778,,,9.541984733,45,4716,,,,,,,,,,,,,,,,,,,,,,,,,,9.595043789,43,449337,6.823014108,13.11674072,9.569654847,,,,,,,,,,,,,9.763110665,6.800364299,13.57812353,,,,6.008853044,27,449337,3.959872019,8.742565701,,,,,,,,,,,,,6.365497047,4.15815401,9.326928032,,,,7.034361256,44,625501,5.111177657,9.443301654,,,,,,,,,,,,,6.838434104,4.862795147,9.348364539,,,,4.050632911,,7900,,,32,,0.893626917,61486,68805,,,0.832,,,,,102.3190981,,,,,0.734164043,27515,37478,0.716090765,0.752237321,0.099759388,3690,36989,0.085567016,0.11395176,0.920006404,34480,37478,0.904424394,0.935588413,93009,,,,,0.20691546,19245,93009,,,0.21735531,20216,93009,,,0.019288456,1794,93009,,,0.003193239,297,93009,,,0.026739348,2487,93009,,,0.000387059,36,93009,,,0.035996517,3348,93009,,,0.900558011,83760,93009,,,0.004798641,418,87108,0.002759748,0.006837533,0.502370738,46725,93009,,,0.243117712,22246,91503,, -55,091,55091,WI,Pepin County,2024,1,7182.934515,98,19752,5003.177073,9989.7231,0,,,,2,,,,2,,,,2,,,,2,7078.369374,4901.976561,9891.311717,,,,,2,,0.129,,,0.105,0.155,3.342689579,,,2.610519308,4.218050552,4.634127948,,,3.678091104,5.710307629,0.071428571,41,574,0.050359579,0.092497564,0,,,,,,,,,,,,,0.069029851,0.047568353,0.090491348,,,,,,,0.164,,,0.126,0.206,0.361,,,0.283,0.445,,,0.065,,,0.205,,,0.163,0.253,0.659879749,4829,7318,,,0.229673577,,,0.186299432,0.277783196,0.571428571,4,7,0.387251166,0.710103252,67.9,5,7364,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.090049929,505,5608,0.076943546,0.103156312,0.000678979,5,7364,,,1472.8,0.000674764,5,7410,,,1482,0.000269906,2,7410,,,3705,3429,,,,,,,,,3380,0.48,,,,,,,,,0.48,0.48,,,,,,,,,0.48,0.938589841,4952,5276,0.927821216,0.949358466,0.577203446,871,1509,0.513910904,0.640495988,0.031296572,126,4026,,,0.145,233,,0.091382979,0.198617021,,,,,,,,,,0.1,0,0.445494181,0.101498638,0.063992092,0.139005184,3.752506304,122024,32518,3.374034449,4.130978159,0.160826033,257,1598,0.095489778,0.226162287,6.789788159,5,7364,,,74.04360346,27,36465,48.79520124,107.7295556,,,,,,,,,,,,,74.33881344,48.56058103,108.9235857,,,,7.6,,,,,0,,,,,0.1104,345,3125,0.082356492,0.138443508,0.095974235,0.066710242,0.125238228,0.01056,0.003305156,0.017814845,0.008,0,0.016154849,0.759411265,2683,3533,0.733107491,0.785715039,,,,,,,,,,,,,0.73545356,0.691991469,0.77891565,0.412,,3533,0.363954752,0.460045248,80.57331952,,,78.18319806,82.96344098,,,,,,,,,,,,,80.53330199,78.15072865,82.91587534,,,,333.1323606,98,19752,264.1532436,414.6120594,,,,,,,,,,,,,334.2447249,263.7807099,417.7485571,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.1,,,0.084,0.117,0.149,,,0.128,0.173,0.078,,,0.065,0.092,,,,,,0.065,480,,,,,,7469,,,,,,,,,,,,,,,,,,,,,,,,,,0.312,,,0.293,0.33,0.095477387,380,3980,0.079988025,0.110966749,0.078884935,133,1686,0.055055148,0.102714722,0.000674764,5,7410,,,1482,,,,,,,,,,,3.050810461,,,,,,,,,3.023916359,3.319571399,,,,,,,,,3.399024909,0.015286197,,,,,1935.167,,,,,0.806298341,45139,55983,0.745599116,0.866997566,69535,,,62804.2766,76265.7234,,,,,,,,,,66250,38714.68085,93785.31915,71750,65741.31915,77758.68085,,,,,,0.326907631,407,1245,,,,,,,,0.314000144,,69535,,,4.962779156,2,403,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,700,,,-888,,0.727655839,4144,5695,,,0.706,,,,,20.12352945,,,,,0.820337882,2525,3078,0.798004116,0.842671648,0.063620981,188,2955,0.041048335,0.086193628,0.838531514,2581,3078,0.815088132,0.861974896,7410,,,,,0.220647773,1635,7410,,,0.242240216,1795,7410,,,0.004318489,32,7410,,,0.004048583,30,7410,,,0.005937922,44,7410,,,0.000134953,1,7410,,,0.025910931,192,7410,,,0.952631579,7059,7410,,,0.006034483,42,6960,0,0.014065851,0.485695007,3599,7410,,,1,7318,7318,, -55,093,55093,WI,Pierce County,2024,1,4775.706539,402,120676,4023.72297,5527.690107,0,,,,2,,,,2,,,,2,,,,2,4569.068973,3822.915908,5315.222038,,,,,2,,0.117,,,0.096,0.14,3.117077527,,,2.38272057,3.910220071,4.576761584,,,3.630523776,5.58038666,0.052871814,139,2629,0.044317656,0.061425972,0,,,,,,,,,,,,,0.050916497,0.042220652,0.059612342,,,,,,,0.148,,,0.116,0.186,0.346,,,0.274,0.422,9.3,0.038123735,0.057,,,0.184,,,0.148,0.229,0.735643893,31053,42212,,,0.257295974,,,0.211699464,0.305531195,0.535714286,15,28,0.451224223,0.611355729,216,92,42587,,,3.324844369,47,14136,2.442970583,4.421338168,,,,,,,,,,,,,2.892373268,2.04681547,3.97000829,,,,,,,0.057746689,1940,33595,0.049406263,0.066087114,0.000375702,16,42587,,,2661.6875,0.000423211,18,42532,,,2362.888889,0.000705351,30,42532,,,1417.733333,2451,,,,,,,,,2440,0.47,,,,,,,,,0.47,0.52,,,,,,,,,0.52,0.955227772,25645,26847,0.947761173,0.962694372,0.725048087,6785,9358,0.670236797,0.779859378,0.032568619,795,24410,,,0.074,620,,0.048978723,0.099021277,,,,0.142857143,0,0.641887795,,,,0.17357513,0.059656146,0.287494113,0.070414772,0.039121227,0.101708317,3.692874387,148376,40179,3.316827686,4.068921088,0.16137319,1382,8564,0.108706335,0.214040045,10.09697795,43,42587,,,69.64804209,148,212497,58.42697585,80.86910833,,,,,,,,,,,,,69.79628523,58.19299968,81.39957078,,,,7.7,,,,,0,,,,,0.10816777,1715,15855,0.088966636,0.127368905,0.092030361,0.073829176,0.110231545,0.008766951,0.001900608,0.015633293,0.007883948,0.003271056,0.012496841,0.759139204,16862,22212,0.733409599,0.784868809,,,,,,,,,,0.611825193,0.406420157,0.817230229,0.66060812,0.629208917,0.692007323,0.456,,22212,0.419527968,0.492472032,80.3336736,,,79.56243543,81.10491178,,,,,,,,,,,,,80.38285905,79.61624634,81.14947177,,,,258.948985,402,120676,232.3966818,285.5012882,,,,,,,,,,,,,256.1690922,229.2978045,283.0403799,,,,27.48070625,12,43667,14.19968193,48.00326344,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.093,,,0.078,0.109,0.145,,,0.123,0.168,0.075,,,0.063,0.089,46.2,17,36772,,,0.057,2390,,,,0.038123735,1563.797481,41019,,,10.9339977,14,128041,5.977718291,18.34539024,,,,,,,,,,,,,10.86293483,5.784055293,18.57594939,,,,0.302,,,0.284,0.32,0.064216882,1606,25009,0.053493478,0.074940286,0.040456662,365,9022,0.028541768,0.052371555,0.000305652,13,42532,,,3271.692308,0.941608775,515.06,547,,,0.039086929,125,3198,0.01499554,0.063178319,3.098895156,,,,,,,,,3.147461718,3.205989925,,,,,,,,2.648697113,3.274358206,0.039572808,,,,,2231.811,,,,,0.763211397,50678,66401,0.70926885,0.817153945,85508,,,75989.19149,95026.80851,108750,7810.595745,209689.4043,84185,13508.23404,154861.766,,,,76250,31597.74468,120902.2553,82876,77486.89362,88265.10638,,,,,,0.203996669,1470,7206,,,61.17276633,,,,,0.262642092,,85508,,,7.503751876,15,1999,,,,,,,,,,,,,,,,,,,,,,,,,,14.04321036,28,212497,9.173491251,20.57655693,13.17665661,,,,,,,,,,,,,13.86289947,8.882221266,20.62689554,,,,9.41189758,20,212497,5.749031556,14.53591246,,,,,,,,,,,,,9.038367872,5.356709623,14.28451791,,,,11.87954817,35,294624,8.274540568,16.52157576,,,,,,,,,,,,,11.5530556,7.90228148,16.3094674,,,,11.02564103,,3900,,,43,,0.7038032,23317,33130,,,0.736,,,,,115.3937786,,,,,0.744087785,11799,15857,0.724418419,0.76375715,0.104582314,1625,15538,0.084585352,0.124579276,0.890143154,14115,15857,0.872889924,0.907396385,42532,,,,,0.199261732,8475,42532,,,0.167121226,7108,42532,,,0.008182075,348,42532,,,0.005807392,247,42532,,,0.013307627,566,42532,,,0.000470234,20,42532,,,0.027273582,1160,42532,,,0.929323803,39526,42532,,,0.001419287,57,40161,0,0.00352779,0.49835418,21196,42532,,,0.699540415,29529,42212,, -55,095,55095,WI,Polk County,2024,1,7331.215169,653,121536,6322.037561,8340.392777,0,,,,2,,,,2,,,,2,,,,2,7293.671289,6261.45293,8325.889648,,,,,2,,0.126,,,0.105,0.151,3.308744162,,,2.569886669,4.191488749,4.789166955,,,3.829582379,5.834716162,0.065255732,185,2835,0.056164238,0.074347226,0,,,,,,,,,,,,,0.06570997,0.056272544,0.075147396,,,,,,,0.157,,,0.122,0.197,0.355,,,0.281,0.434,9.2,0.016534332,0.073,,,0.198,,,0.159,0.244,0.66507326,29913,44977,,,0.224779331,,,0.182888582,0.270520574,0.320754717,17,53,0.249445028,0.3926221,184.9,84,45431,,,10.8909744,94,8631,8.801015919,13.32779443,,,,,,,,,,,,,10.55979644,8.410818918,13.09045646,,,,,,,0.06495712,2295,35331,0.056616694,0.073297545,0.000792411,36,45431,,,1261.972222,0.000590693,27,45709,,,1692.925926,0.002012733,92,45709,,,496.8369565,2151,,,,,,,,,2143,0.5,,,,,,,,,0.51,0.26,,,,,0.28,,,,0.26,0.934551958,30829,32988,0.926280743,0.942823173,0.659576644,6450,9779,0.619127089,0.700026199,0.038229624,932,24379,,,0.11,960,,0.070680851,0.149319149,0.456521739,0.185362789,0.727680689,,,,,,,0.225806452,0.071736861,0.379876042,0.102946616,0.080052484,0.125840747,3.721883705,128271,34464,3.473737839,3.97002957,0.190523198,1737,9117,0.156160636,0.224885761,13.8671832,63,45431,,,86.79608827,191,220056,74.48661299,99.10556355,,,,,,,,,,,,,88.11458727,75.3826359,100.8465387,,,,6.7,,,,,0,,,,,0.11638509,2170,18645,0.104506626,0.128263554,0.100405296,0.088998578,0.111812014,0.013140252,0.009274867,0.017005637,0.005363368,0.003335196,0.00739154,0.812497145,17788,21893,0.796652807,0.828341483,,,,,,,,,,0.856470588,0.714432487,0.998508689,0.778965497,0.76244103,0.795489964,0.447,,21893,0.421306892,0.472693108,78.0644814,,,77.23087746,78.89808533,,,,,,,,,,,,,78.06180579,77.21438118,78.90923039,,,,348.4036152,653,121536,318.9092619,377.8979684,,,,,,,,,,,,,346.5421087,316.401258,376.6829594,,,,63.31197609,25,39487,40.97217274,93.46096614,,,,,,,,,,,,,61.38564134,38.47005461,92.9385987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.098,,,0.083,0.116,0.149,,,0.126,0.175,0.077,,,0.064,0.092,48.4,19,39285,,,0.073,3270,,,,0.016534332,730.9001521,44205,,,,,,,,,,,,,,,,,,,,,,,,,,0.301,,,0.283,0.32,0.071697396,1886,26305,0.060973992,0.0824208,0.046472506,442,9511,0.033366123,0.059578889,0.000721959,33,45709,,,1385.121212,0.963560158,488.525,507,,,,,,,,3.118900497,,,,,,,,2.678165629,3.173949887,3.154907067,,,,,,,,2.578149606,3.231428806,0.059210687,,,,,3227.925125,,,,,0.802495885,47779,59538,0.764262845,0.840728925,73982,,,68440.38298,79523.61702,64375,36909.97872,91840.02128,88472,50706.55319,126237.4468,122875,53955.68085,191794.3192,52500,24695.40426,80304.59575,74248,72130.7234,76365.2766,,,,,,0.390468986,2581,6610,,,,,,,,0.269835906,,73982,,,7.48362956,16,2138,,,,,,,,,,,,,,,,,,,,,,,,,,19.33047009,41,220056,13.61043486,26.64450669,18.63162104,,,,,,,,,,,,,20.49580463,14.43093792,28.25076685,,,,14.54175301,32,220056,9.946548293,20.52861639,,,,,,,,,,,,,15.32427605,10.48179347,21.63330544,,,,21.82566829,67,306978,16.91459314,27.71782722,,,,,,,,,,,,,21.9495298,16.90381255,28.02905953,,,,6.923076923,,3900,,,27,,0.770068623,26371,34245,,,0.632,,,,,9.526853015,,,,,0.805654473,14932,18534,0.793356203,0.817952742,0.096722043,1735,17938,0.085511981,0.107932104,0.845581094,15672,18534,0.829179601,0.861982588,45709,,,,,0.1958914,8954,45709,,,0.229320265,10482,45709,,,0.004069221,186,45709,,,0.010960642,501,45709,,,0.006891422,315,45709,,,0.000284408,13,45709,,,0.020149205,921,45709,,,0.947887725,43327,45709,,,0.002416413,104,43039,0.000423554,0.004409272,0.489159684,22359,45709,,,1,44977,44977,, -55,097,55097,WI,Portage County,2024,1,5705.151623,719,197309,5045.527809,6364.775438,0,,,,2,,,,2,,,,2,,,,2,5850.505866,5145.904909,6555.106824,,,,,2,,0.121,,,0.1,0.146,3.179194312,,,2.462042498,3.966483059,4.715242259,,,3.800338858,5.673162726,0.068345324,304,4448,0.060929565,0.075761082,0,,,,0.078947368,0.046541303,0.111353434,,,,0.075,0.044148339,0.105851661,0.066135458,0.058197063,0.074073853,,,,,,,0.141,,,0.107,0.178,0.322,,,0.261,0.387,9.2,0.025756378,0.068,,,0.202,,,0.162,0.248,0.711184052,50051,70377,,,0.237061925,,,0.195947334,0.280459204,0.484848485,16,33,0.402602159,0.560651792,414.4,292,70468,,,7.271992728,144,19802,6.084233916,8.45975154,,,,18.46965699,10.09753335,30.98894607,,,,21.23142251,12.96870444,32.79021009,5.906537727,4.760262338,7.052813115,,,,,,,0.058649064,3243,55295,0.050308639,0.06698949,0.000454107,32,70468,,,2202.125,0.000735315,52,70718,,,1359.961539,0.001428208,101,70718,,,700.1782178,2149,,,,,,,,,2140,0.57,,,,,,0.22,,,0.58,0.53,,,,,,0.43,,0.45,0.53,0.946588379,43367,45814,0.937526874,0.955649884,0.740931689,12072,16293,0.695027913,0.786835464,0.029245685,1098,37544,,,0.108,1396,,0.06987234,0.14612766,0.452380952,0.064977814,0.839784091,0.291032149,0.107428267,0.474636031,0.062146893,0,0.30062623,0.227477478,0.125011833,0.329943122,0.065496857,0.044464735,0.086528979,3.865189624,127702,33039,3.615734897,4.114644352,0.185517293,2462,13271,0.149426993,0.221607594,11.06885395,78,70468,,,63.33265477,224,353688,55.03873643,71.62657311,,,,,,,,,,,,,67.85844355,58.85037425,76.86651285,,,,7.9,,,,,0,,,,,0.112417849,3250,28910,0.099350098,0.125485599,0.095337509,0.082695833,0.107979184,0.013490142,0.008498959,0.018481325,0.010204082,0.005339627,0.015068537,0.750828309,27647,36822,0.730506158,0.771150461,,,,0.729648241,0.595337562,0.86395892,,,,0.663674033,0.61205811,0.715289957,0.763706828,0.744117126,0.78329653,0.218,,36822,0.198861847,0.237138153,79.8020953,,,79.1750996,80.42909101,,,,80.47084817,75.61052091,85.33117543,,,,99.98500108,59.99587355,139.9741286,79.66048947,79.0087722,80.31220674,,,,286.3078481,719,197309,264.0116367,308.6040594,,,,,,,,,,,,,290.0392284,266.6953729,313.383084,,,,31.56470765,21,66530,19.53905153,48.25000862,,,,,,,,,,,,,33.98683457,20.46229458,53.07465221,,,,4.611330698,21,4554,2.854486382,7.048908813,,,,,,,,,,,,,,,,,,,,,,0.095,,,0.079,0.111,0.143,,,0.12,0.166,0.076,,,0.063,0.089,63.7,39,61209,,,0.068,4780,,,,0.025756378,1803.435801,70019,,,13.19062335,28,212272,8.765073423,19.06412336,,,,,,,,,,,,,14.55944674,9.674646625,21.04245428,,,,0.303,,,0.286,0.322,0.065521507,2754,42032,0.054798103,0.076244912,0.038439472,536,13944,0.027716068,0.049162876,0.001385786,98,70718,,,721.6122449,0.91425841,597.925,654,,,,,,,,3.100997768,,,,,,2.492018937,,2.584615913,3.21214428,3.051269787,,,,,,2.483838092,,2.389623911,3.2149279,0.058255476,,,,,1470.92725,,,,,0.754838496,45476,60246,0.716119718,0.793557273,71360,,,64603.06383,78116.93617,,,,84219,38374.06383,130063.9362,,,,39990,16856.04255,63123.95745,72109,68962.2766,75255.7234,,,,,,0.373054214,3475,9315,,,76.08299499,,,,,0.349677691,,71360,,,8.298755187,28,3374,,,,,,,,,,,,,,,,,,,,,,,,,,12.5061012,46,353688,9.050727449,16.84563625,13.00581303,,,,,,,,,,,,,12.74856708,9.107763228,17.35992999,,,,6.502906517,23,353688,4.122284906,9.757552672,,,,,,,,,,,,,6.536822544,4.046396183,9.992227636,,,,6.470620351,32,494543,4.42589953,9.13458528,,,,,,,,,,,,,7.107178472,4.861304814,10.03321542,,,,9.642857143,,5600,,,54,,0.726415601,40603,55895,,,0.772,,,,,156.85182,,,,,0.697417352,20442,29311,0.682917144,0.71191756,0.089877866,2583,28739,0.076341504,0.103414229,0.906076217,26558,29311,0.89643526,0.915717174,70718,,,,,0.184691309,13061,70718,,,0.185370061,13109,70718,,,0.00926214,655,70718,,,0.005090642,360,70718,,,0.032523544,2300,70718,,,0.000509064,36,70718,,,0.039296926,2779,70718,,,0.901580927,63758,70718,,,0.008318798,558,67077,0.004565002,0.012072593,0.491685285,34771,70718,,,0.366057093,25762,70377,, -55,099,55099,WI,Price County,2024,1,6206.794529,218,36136,4320.790414,8092.798643,0,,,,2,,,,2,,,,2,,,,2,6457.575976,4392.127859,8523.024093,,,,,2,,0.142,,,0.118,0.169,3.514025273,,,2.767482126,4.310297848,4.513280282,,,3.622024548,5.477729481,0.077241379,56,725,0.057807651,0.096675108,0,,,,,,,,,,,,,0.073732719,0.053657335,0.093808103,,,,,,,0.18,,,0.142,0.22,0.35,,,0.279,0.422,8.4,0.050190192,0.093,,,0.211,,,0.169,0.258,0.646933257,9092,14054,,,0.206407273,,,0.168624152,0.248844866,0.5,6,12,0.355111295,0.623019394,149.5,21,14050,,,9.079653322,22,2423,5.690170397,13.74670425,,,,,,,,,,,,,8.890968648,5.352943923,13.88434889,,,,,,,0.073185303,735,10043,0.062461899,0.083908708,0.000142349,2,14050,,,7025,0.000987376,14,14179,,,1012.785714,0.000916849,13,14179,,,1090.692308,3181,,,,,,,,,3203,0.56,,,,,,,,,0.56,0.21,,,,,,,,,0.21,0.928938276,9948,10709,0.918011878,0.939864674,0.629058442,1550,2464,0.572160707,0.685956176,0.034076227,211,6192,,,0.184,440,,0.112510638,0.255489362,,,,0.731707317,0.285625562,1,,,,0.66,0.495448633,0.824551367,0.209086695,0.16098708,0.257186309,3.885135135,99475,25604,3.574079069,4.196191201,0.207360507,524,2527,0.158591676,0.256129337,16.37010676,23,14050,,,85.94502482,58,67485,65.26166064,111.1038746,,,,,,,,,,,,,88.60619294,66.93216592,115.0625117,,,,6.2,,,,,0,,,,,0.141573034,945,6675,0.125368289,0.157777778,0.108528302,0.091468534,0.12558807,0.024569288,0.013870091,0.035268486,0.018726592,0.007462151,0.029991033,0.809911858,4870,6013,0.779233108,0.840590608,,,,,,,,,,,,,0.825577327,0.796346367,0.854808287,0.252,,6013,0.224337938,0.279662062,78.33339078,,,76.80023577,79.86654579,,,,,,,,,,,,,78.06414331,76.40603005,79.72225656,,,,312.5275734,218,36136,264.0340031,361.0211437,,,,,,,,,,,,,319.2571039,268.2187001,370.2955077,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.107,,,0.091,0.125,0.153,,,0.131,0.175,0.084,,,0.071,0.099,,,,,,0.093,1300,,,,0.050190192,710.6429212,14159,,,,,,,,,,,,,,,,,,,,,,,,,,0.338,,,0.321,0.355,0.079431329,609,7667,0.066324946,0.092537712,0.054235946,137,2526,0.036363606,0.072108287,0.000916849,13,14179,,,1090.692308,0.910909091,150.3,165,,,,,,,,2.992807096,,,,,,,,,2.976477443,3.025796709,,,,,,,,,3.050489164,0.054835456,,,,,-1076.383,,,,,0.754942103,40748,53975,0.714297719,0.795586486,53883,,,48323.51064,59442.48936,46750,34924.46809,58575.53192,41250,15635.3617,66864.6383,,,,41304,25206.97872,57401.02128,56087,54348.61702,57825.38298,,,,,,0.363081617,476,1311,,,,,,,,0.358907262,,53883,,,8.547008547,5,585,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.96147791,17,94647,10.46322279,28.75806609,,,,,,,,,,,,,19.10262605,11.12798363,30.58515481,,,,19,,1000,,,19,,0.781170018,8546,10940,,,0.495,,,,,16.8236769,,,,,0.795173454,5272,6630,0.778459209,0.811887699,0.099937441,639,6394,0.079481358,0.120393525,0.80015083,5305,6630,0.780548929,0.81975273,14179,,,,,0.170815996,2422,14179,,,0.287185274,4072,14179,,,0.005501093,78,14179,,,0.009027435,128,14179,,,0.007193737,102,14179,,,0.009521123,135,14179,,,0.023203329,329,14179,,,0.93469215,13253,14179,,,0.001927925,26,13486,0,0.006797608,0.481627759,6829,14179,,,1,14054,14054,, -55,101,55101,WI,Racine County,2024,1,8603.423094,2949,548055,8117.34696,9089.499227,0,,,,2,,,,2,17050.65762,15173.56504,18927.7502,,8514.3435,7258.439892,9770.247108,,7519.038034,6965.14261,8072.933458,,,,,2,,0.147,,,0.123,0.173,3.345435043,,,2.652661763,4.083604916,4.723917511,,,3.913304776,5.578639637,0.09035533,1424,15760,0.085879323,0.094831337,0,,,,0.12254902,0.077549556,0.167548484,0.157541505,0.144121339,0.170961671,0.085398527,0.075374267,0.095422786,0.068825019,0.063618134,0.074031905,,,,0.115808824,0.088918221,0.142699426,0.149,,,0.118,0.185,0.359,,,0.301,0.419,8.9,0.037484305,0.075,,,0.222,,,0.183,0.265,0.905748836,179091,197727,,,0.214597786,,,0.179555875,0.253347097,0.36,27,75,0.301618735,0.417851999,632.3,1245,196896,,,21.35256562,903,42290,19.95985059,22.74528065,,,,,,,55.94525235,49.88144449,62.00906022,28.89512525,25.49841693,32.29183356,9.055150373,7.861284326,10.24901642,,,,37.4050263,28.80642814,47.76538352,0.070401674,11170,158661,0.062061249,0.0787421,0.0004317,85,196896,,,2316.423529,0.000796544,156,195846,,,1255.423077,0.001715634,336,195846,,,582.875,2893,,,,,,,4184,2942,2774,0.48,,,,,,0.3,0.4,0.29,0.5,0.54,,,,,0.42,0.6,0.38,0.43,0.55,0.912344756,123193,135029,0.905408878,0.919280633,0.654319682,30931,47272,0.62244388,0.686195484,0.035156967,3447,98046,,,0.135,5824,,0.082574468,0.187425532,0.279661017,0,0.616279872,0.002145923,0,0.128026661,0.324665676,0.245460652,0.403870701,0.206208642,0.159503636,0.252913647,0.086157838,0.063335403,0.108980272,4.182535091,137367,32843,3.939864966,4.425205216,0.293159176,13242,45170,0.26161979,0.324698563,9.395823176,185,196896,,,75.68781172,743,981664,70.24544736,81.13017607,,,,,,,103.4510921,84.46049042,122.4416939,44.90312702,34.3473342,57.67994517,79.78719595,73.16103964,86.41335225,,,,9.1,,,,,1,,,,,0.135350934,10510,77650,0.123226624,0.147475243,0.12173913,0.109854599,0.133623662,0.010560206,0.007675658,0.013444754,0.007984546,0.005063556,0.010905536,0.801710871,75538,94221,0.789659009,0.813762733,,,,0.745980707,0.619770038,0.872191377,0.746072941,0.690936218,0.801209664,0.745428973,0.703572184,0.787285762,0.799809119,0.785542693,0.814075545,0.34,,94221,0.31871932,0.361280681,76.46524773,,,76.06711425,76.86338121,,,,94.98976249,72.18201985,117.7975051,69.1813706,67.87738354,70.48535765,78.10543554,76.30458467,79.90628641,77.3601692,76.91126592,77.80907248,,,,409.3191097,2949,548055,393.8131661,424.8250533,,,,,,,838.1489091,763.1049971,913.1928211,404.217797,351.5320606,456.9035333,369.1987539,352.2813876,386.1161202,,,,61.21684931,121,197658,50.30911979,72.12457882,,,,,,,110.0110011,75.24744331,155.3027093,64.70758864,43.33568766,92.93089104,46.98441382,35.09020755,61.61380776,,,,8.663134933,139,16045,7.222931804,10.10333806,,,,,,,18.60785665,13.97879462,24.27921654,10.28874876,6.990705602,14.60405759,5.269383805,3.898319147,6.966404839,,,,,,,0.102,,,0.086,0.119,0.147,,,0.126,0.169,0.089,,,0.075,0.104,164.4,272,165419,,,0.075,14830,,,,0.037484305,7324.733028,195408,,,27.67360091,163,589009,23.42517604,31.92202579,,,,,,,46.88799819,31.85811991,66.55377071,19.1015126,10.91816489,31.01965975,27.1680984,22.15880937,32.17738744,,,,0.333,,,0.318,0.348,0.08344999,9538,114296,0.072726585,0.094173394,0.038234853,1784,46659,0.027511449,0.048958257,0.000873135,171,195846,,,1145.298246,0.830760923,1692.26,2037,,,0.091214594,950,10415,0.061478814,0.120950374,2.714757006,,,,,,3.872900233,2.051639695,2.333800693,3.119016688,2.724166209,,,,,,4.073890762,2.030847101,2.351770677,3.143319686,0.176271033,,,,,2552.12766,,,,,0.812029713,50505,62196,0.766147255,0.85791217,72331,,,67984.44681,76677.55319,58333,18726.70213,97939.29787,71719,20301.46809,123136.5319,41458,33005.57447,49910.42553,60151,51882.06383,68419.93617,80370,76704.97872,84035.02128,,,,,,0.486851759,12608,25897,,,55.48188607,,,,,0.350167978,,72331,,,6.681514477,78,11674,,,3.571730555,49,1371884,2.642385927,4.722017211,,,,,,,15.62154211,10.00901679,23.24361638,,,,1.834546342,1.08726843,2.899374141,,,,14.34957248,144,981664,11.93829118,16.76085379,14.66897024,,,,,,,,,,7.451267764,3.4071941,14.14482725,16.60284719,13.49669978,19.7089946,,,,11.71480262,115,981664,9.573677106,13.85592814,,,,,,,23.59410873,15.41245516,34.57083594,7.361168365,3.529966357,13.53745071,11.02982781,8.704567617,13.78539228,,,,11.44411627,157,1371884,9.653970044,13.23426249,,,,,,,16.92333728,11.05488578,24.79661018,6.455465358,3.335633151,11.27639885,12.02647047,9.856502829,14.1964381,,,,12.62569832,,17900,,,226,,0.730116598,106451,145800,,,0.753,,,,,275.2314533,,,,,0.699633376,55341,79100,0.687224022,0.712042729,0.119969589,9310,77603,0.1084506,0.131488578,0.88817952,70255,79100,0.876338316,0.900020724,195846,,,,,0.225835606,44229,195846,,,0.182388203,35720,195846,,,0.109111241,21369,195846,,,0.007133156,1397,195846,,,0.014250993,2791,195846,,,0.000816968,160,195846,,,0.151409781,29653,195846,,,0.696950665,136495,195846,,,0.012781583,2374,185736,0.00952829,0.016034875,0.503191283,98548,195846,,,0.143470543,28368,197727,, -55,103,55103,WI,Richland County,2024,1,6686.3733,237,46439,5188.114229,8184.632371,0,,,,2,,,,2,,,,2,,,,2,6718.760158,5154.451101,8283.069214,,,,,2,,0.145,,,0.121,0.174,3.523674317,,,2.739097618,4.374246698,4.780689668,,,3.759212936,5.8200359,0.060150376,72,1197,0.046680694,0.073620058,0,,,,,,,,,,,,,0.055712937,0.041898342,0.069527531,,,,,,,0.179,,,0.14,0.223,0.396,,,0.314,0.481,7.1,0.189713615,0.087,,,0.231,,,0.184,0.283,0.473358761,8191,17304,,,0.213518281,,,0.172568222,0.259592298,0.3,3,10,0.129013968,0.476732101,267.3,46,17212,,,11.80574188,44,3727,8.578070126,15.84865744,,,,,,,,,,,,,10.07705987,6.978656901,14.08168112,,,,,,,0.079714086,1026,12871,0.068990682,0.09043749,0.000755287,13,17212,,,1324,0.000526624,9,17090,,,1898.888889,0.00140433,24,17090,,,712.0833333,2711,,,,,,,,,2644,0.33,,,,,,,,,0.33,0.52,,,,,,,,,0.52,0.911235409,11241,12336,0.895471691,0.926999126,0.536295006,1847,3444,0.484082107,0.588507905,0.028425821,251,8830,,,0.162,561,,0.102425532,0.221574468,,,,,,,0.434782609,0,0.956077128,0.538812785,0.255226367,0.822399204,0.199414444,0.157344701,0.241484186,4.067701141,111935,27518,3.617196512,4.518205771,0.205543359,749,3644,0.149892221,0.261194497,9.295840112,16,17212,,,85.43554812,74,86615,67.08528112,107.256507,,,,,,,,,,,,,88.0195599,68.86988471,110.8460685,,,,8,,,,,0,,,,,0.144459103,1095,7580,0.117790995,0.171127211,0.11062417,0.083976467,0.137271873,0.017150396,0.010028862,0.02427193,0.027704486,0.016478017,0.038930955,0.796310336,6302,7914,0.764251335,0.828369337,,,,,,,,,,,,,0.795963073,0.756787495,0.835138652,0.325,,7914,0.290590909,0.359409091,79.13476978,,,77.76858303,80.50095653,,,,,,,,,,,,,79.05335575,77.65722242,80.44948908,,,,326.5388785,237,46439,280.3391763,372.7385808,,,,,,,,,,,,,327.8348279,280.4186982,375.2509575,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.108,,,0.091,0.126,0.157,,,0.134,0.181,0.083,,,0.07,0.098,33.8,5,14775,,,0.087,1520,,,,0.189713615,3418.829059,18021,,,23.20095897,12,51722,11.98827406,40.52740623,,,,,,,,,,,,,24.62953081,12.72643797,43.02283373,,,,0.33,,,0.313,0.349,0.087962963,817,9288,0.073665091,0.102260835,0.059229748,223,3765,0.041357407,0.077102088,0.000702165,12,17090,,,1424.166667,0.879741379,102.05,116,,,0.112334802,102,908,0.044402663,0.18026694,2.700643112,,,,,,,,,2.779754604,2.636942452,,,,,,,,,2.702026629,0.037024264,,,,,-550.26655,,,,,0.820235095,42635,51979,0.754608769,0.885861421,67086,,,62502.34043,71669.65957,,,,,,,,,,30208,20871.48936,39544.51064,65563,60364.53192,70761.46809,,,,,,0.528278434,850,1609,,,,,,,,0.278970277,,67086,,,2.229654404,2,897,,,,,,,,,,,,,,,,,,,,,,,,,,15.76399165,13,86615,8.145484521,27.53652098,15.00894764,,,,,,,,,,,,,16.71193312,8.635299708,29.19238394,,,,11.54534434,10,86615,5.536441374,21.2322993,,,,,,,,,,,,,12.22493888,5.862333369,22.48209785,,,,18.09418848,22,121586,11.33953158,27.3948188,,,,,,,,,,,,,18.24595548,11.29453402,27.89088114,,,,14.70588235,,1700,,,25,,0.671934402,9014,13415,,,0.645,,,,,56.0099034,,,,,0.765425236,5508,7196,0.744165634,0.786684838,0.097778427,669,6842,0.076432829,0.119124026,0.76848249,5530,7196,0.745610376,0.791354604,17090,,,,,0.206495026,3529,17090,,,0.251843183,4304,17090,,,0.008074898,138,17090,,,0.006143944,105,17090,,,0.00983031,168,17090,,,0.000643651,11,17090,,,0.029783499,509,17090,,,0.937390287,16020,17090,,,0.009920876,163,16430,0.003616351,0.016225402,0.492451726,8416,17090,,,0.715441516,12380,17304,, -55,105,55105,WI,Rock County,2024,1,8001.252446,2364,456229,7495.939631,8506.565261,0,,,,2,,,,2,17026.38119,13817.21647,20235.5459,,5954.591612,4623.973382,7548.863739,,7780.293243,7221.497061,8339.089424,,,,,2,,0.137,,,0.113,0.163,3.421707101,,,2.616999035,4.18242749,5.025203577,,,4.039617034,5.890376622,0.080426282,1049,13043,0.075759048,0.085093517,0,,,,0.114754098,0.068574879,0.160933318,0.171910112,0.147121597,0.196698628,0.06398641,0.052572205,0.075400615,0.072802057,0.067638258,0.077965855,,,,0.110047847,0.080046411,0.140049282,0.157,,,0.122,0.194,0.345,,,0.277,0.402,7.9,0.120847313,0.079,,,0.211,,,0.167,0.253,0.878292106,143765,163687,,,0.219849139,,,0.178724182,0.255175313,0.37704918,46,122,0.332411173,0.421214558,520.1,855,164381,,,19.3282809,709,36682,17.9055388,20.751023,,,,,,,46.49160568,37.72323827,55.25997309,27.90697674,23.60952158,32.20443191,14.22686704,12.7830541,15.67067997,,,,38.48580442,29.43859089,49.43662581,0.070024744,9424,134581,0.061684318,0.078365169,0.000511008,84,164381,,,1956.916667,0.000713154,117,164060,,,1402.222222,0.002151652,353,164060,,,464.7592068,3388,,,,,,1470,7188,773,3316,0.47,,,,,,0.35,0.42,0.38,0.48,0.54,,,,,,0.44,0.37,0.31,0.55,0.922526499,103656,112361,0.915764412,0.929288586,0.65546405,26583,40556,0.623399407,0.687528693,0.03442029,2945,85560,,,0.142,5087,,0.100297872,0.183702128,0.086956522,0,0.904349861,0.154320988,0,0.31732839,0.197829716,0.085785464,0.309873968,0.237732794,0.176922248,0.298543339,0.107697897,0.086505779,0.128890015,3.724815576,123202,33076,3.495038237,3.954592915,0.238960689,8875,37140,0.206717719,0.27120366,9.246810763,152,164381,,,118.9576322,971,816257,111.4752693,126.4399951,,,,,,,154.6983382,118.6063289,198.3162879,34.57400832,22.58489012,50.65893284,130.0774199,121.4436645,138.7111754,,,,9.5,,,,,1,,,,,0.134207097,8755,65235,0.119701592,0.148712603,0.115738237,0.101676959,0.129799515,0.017092052,0.012557767,0.021626337,0.010883728,0.004377813,0.017389643,0.812717706,65796,80958,0.792260478,0.833174933,,,,0.818096136,0.439356634,1,0.803588907,0.719344153,0.887833661,0.768441536,0.708909141,0.82797393,0.816623454,0.794043683,0.839203225,0.324,,80958,0.304861847,0.343138153,77.10965885,,,76.6785027,77.540815,,,,88.13180795,78.07064749,98.1929684,68.1120274,65.99655779,70.22749701,85.17102253,80.17193891,90.17010616,77.30636534,76.84160297,77.77112771,,,,393.3502054,2364,456229,376.7917675,409.9086434,,,,,,,794.3317602,676.5108251,912.1526954,288.0615191,225.7942473,362.1941123,385.4689211,367.7783475,403.1594947,,,,55.59315479,92,165488,44.81592911,68.18006925,,,,,,,186.5340203,115.4674985,285.1370646,37.2675437,17.87123578,68.53633974,50.09587314,38.03989677,64.76053287,,,,5.375123022,71,13209,4.198015675,6.779986305,,,,,,,,,,,,,3.925120773,2.791144574,5.36576931,,,,,,,0.102,,,0.085,0.118,0.145,,,0.121,0.165,0.083,,,0.069,0.097,114.9,159,138404,,,0.079,12940,,,,0.120847313,19375.57052,160331,,,36.67339691,180,490819,31.31578863,42.0310052,,,,,,,86.82709005,53.74733724,132.7244304,,,,37.60400246,31.60606863,43.60193629,,,,0.306,,,0.29,0.321,0.081173093,7916,97520,0.069258199,0.093087986,0.042024564,1639,39001,0.031301159,0.052747968,0.000847251,139,164060,,,1180.28777,0.894543379,1959.05,2190,,,0.070219293,618,8801,0.045125832,0.095312755,2.964627832,,,,,,3.423746177,2.276343283,2.678691099,3.132119428,3.004541993,,,,,,3.344281283,2.133158886,2.602029154,3.243569612,0.125207183,,,,,1411.62915,,,,,0.822306673,46522,56575,0.793435232,0.851178113,67430,,,63007.19149,71852.80851,46400,7468.085106,85331.91489,70714,50098.85106,91329.14894,45662,41848.04255,49475.95745,59571,44190.06383,74951.93617,72991,69812.10638,76169.89362,,,,,,0.466010837,12127,26023,,,54.96427718,,,,,0.368218894,,67430,,,7.809288944,76,9732,,,3.598621991,41,1139325,2.582433271,4.881937074,,,,,,,35.84293625,21.89379664,55.35650801,,,,1.384367509,0.737117395,2.367310602,,,,16.60440036,134,816257,13.70877508,19.50002564,16.41639827,,,,,,,,,,,,,19.03339173,15.5861784,22.48060505,,,,9.923345221,81,816257,7.880568497,12.33381205,,,,,,,29.94161385,15.4712688,52.30197377,,,,9.099452541,6.960360183,11.68862746,,,,12.99014768,148,1139325,10.8972919,15.08300346,,,,,,,19.71361494,9.84096555,35.27310259,9.739564057,4.670499539,17.91140507,13.41771586,11.07483939,15.76059232,,,,23.24503311,,15100,,,351,,0.705250547,85360,121035,,,0.761,,,,,184.4876594,,,,,0.699318172,46462,66439,0.687313013,0.711323331,0.099824599,6488,64994,0.087621438,0.112027761,0.875374404,58159,66439,0.863560516,0.887188291,164060,,,,,0.221973668,36417,164060,,,0.179568451,29460,164060,,,0.048640741,7980,164060,,,0.00588809,966,164060,,,0.013616969,2234,164060,,,0.000664391,109,164060,,,0.098116543,16097,164060,,,0.812251615,133258,164060,,,0.013512025,2085,154307,,,0.502127271,82379,164060,,,0.200388546,32801,163687,, -55,107,55107,WI,Rusk County,2024,1,8747.058895,276,37965,6831.248522,10662.86927,0,,,,2,,,,2,,,,2,,,,2,9088.573239,7054.552831,11122.59365,,,,,2,,0.15,,,0.125,0.178,3.70828213,,,2.888430225,4.626008645,4.937173791,,,3.918423413,6.05210331,0.053361793,50,937,0.038970709,0.067752877,0,,,,,,,,,,,,,0.05511811,0.040116388,0.070119832,,,,,,,0.187,,,0.151,0.227,0.38,,,0.298,0.462,7.4,0.142153696,0.092,,,0.23,,,0.186,0.278,0.393712997,5586,14188,,,0.20815413,,,0.166905021,0.252528969,0.277777778,5,18,0.152183671,0.410166986,247.8,35,14123,,,14.3523502,40,2787,10.2535294,19.5438274,,,,,,,,,,,,,13.7254902,9.560306825,19.08883426,,,,,,,0.076797855,802,10443,0.066074451,0.087521259,0.000495645,7,14123,,,2017.571429,0.00070492,10,14186,,,1418.6,0.000634428,9,14186,,,1576.222222,1799,,,,,,,,,1818,0.5,,,,,,,,,0.5,0.25,,,,,,,,,0.25,0.910937801,9461,10386,0.898532269,0.923343333,0.576107183,1548,2687,0.508919741,0.643294624,0.036876356,238,6454,,,0.195,543,,0.118744681,0.271255319,,,,,,,,,,0.034482759,0,0.260602224,0.156893819,0.117784943,0.196002696,3.838861168,104632,27256,3.484778845,4.192943492,0.164570231,471,2862,0.110286037,0.218854424,9.912908022,14,14123,,,116.112771,82,70621,92.34793258,144.1265645,,,,,,,,,,,,,121.4356391,96.43742616,150.9334116,,,,6.6,,,,,1,,,,,0.118472331,760,6415,0.099761851,0.13718281,0.089324961,0.071592268,0.107057654,0.019329696,0.010584979,0.028074413,0.017147311,0.010259831,0.024034791,0.804778269,4918,6111,0.781489099,0.828067438,,,,,,,,,,,,,0.789533995,0.771101401,0.80796659,0.338,,6111,0.300453903,0.375546097,76.68916755,,,75.17707663,78.20125848,,,,,,,,,,,,,76.36862215,74.79237248,77.94487181,,,,436.4951629,276,37965,377.3769343,495.6133914,,,,,,,,,,,,,444.4245144,382.779876,506.0691528,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.111,,,0.095,0.129,0.16,,,0.137,0.184,0.087,,,0.074,0.102,,,,,,0.092,1310,,,,0.142153696,2097.477782,14755,,,23.62781466,10,42323,11.33045554,43.45239242,,,,,,,,,,,,,25.00812764,11.99236926,45.99083713,,,,0.316,,,0.297,0.333,0.085721764,655,7641,0.072615381,0.098828147,0.053112314,157,2956,0.036431463,0.069793165,0.00070492,10,14186,,,1418.6,,,,,,,,,,,2.90985006,,,,,,,,,2.930649634,2.924300328,,,,,,,,,2.951586012,0.069137261,,,,,-70.23503,,,,,0.758130906,39231,51747,0.668712011,0.847549801,56410,,,51090,61730,,,,17578,8587.021277,26568.97872,,,,58447,33633.04255,83260.95745,57683,54765.04255,60600.95745,,,,,,0.664902998,1131,1701,,,,,,,,0.331767417,,56410,,,7.751937985,6,774,,,,,,,,,,,,,,,,,,,,,,,,,,17.38312506,11,70621,7.94867169,32.99858611,15.57610343,,,,,,,,,,,,,18.52725313,8.471839898,35.17049757,,,,,,,,,,,,,,,,,,,,,,,,,,,26.29662594,26,98872,17.17782913,38.53064981,,,,,,,,,,,,,27.77570054,18.14400976,40.69783679,,,,14.16666667,,1200,,,17,,0.707899461,7886,11140,,,0.56,,,,,17.14040142,,,,,0.78901454,4884,6190,0.759529555,0.818499524,0.108508846,644,5935,0.086840892,0.130176799,0.819870759,5075,6190,0.79437436,0.845367158,14186,,,,,0.199210489,2826,14186,,,0.264204145,3748,14186,,,0.009445933,134,14186,,,0.007472156,106,14186,,,0.005004934,71,14186,,,0.000281968,4,14186,,,0.023191879,329,14186,,,0.942760468,13374,14186,,,0.002311018,31,13414,0,0.007148476,0.486254053,6898,14186,,,1,14188,14188,, -55,109,55109,WI,St. Croix County,2024,1,4754.916816,827,261931,4239.187369,5270.646263,0,,,,2,,,,2,,,,2,,,,2,4709.595617,4180.415742,5238.775492,,,,,2,,0.104,,,0.084,0.127,2.900549496,,,2.213845153,3.620238834,4.295646098,,,3.440267831,5.150836682,0.056671449,395,6970,0.05124328,0.062099618,0,,,,0.094339623,0.038693759,0.149985487,,,,0.059907834,0.028332116,0.091483552,0.054595928,0.04906595,0.060125907,,,,0.12244898,0.05754717,0.187350789,0.126,,,0.093,0.161,0.343,,,0.278,0.413,9.6,0.023655068,0.049,,,0.183,,,0.144,0.227,0.807496579,75530,93536,,,0.250213165,,,0.206522322,0.297872952,0.446808511,21,47,0.376423066,0.513611393,136.8,130,95044,,,5.208589259,106,20351,4.217019553,6.200158964,,,,,,,,,,18.18181818,9.681052435,31.09146282,4.445890262,3.535948464,5.518522074,,,,,,,0.043453445,3502,80592,0.037495998,0.049410891,0.000526072,50,95044,,,1900.88,0.000458252,44,96017,,,2182.204546,0.00177052,170,96017,,,564.8058824,2914,,,,,,,,,2943,0.5,,,,,,,,,0.51,0.52,,,,,,0.58,0.24,,0.52,0.961846761,61437,63874,0.956076678,0.967616844,0.779126523,18357,23561,0.735122114,0.823130932,0.030572092,1515,49555,,,0.05,1104,,0.033319149,0.066680851,,,,,,,0.296089386,0.081393605,0.510785167,0.397508494,0.216283504,0.578733484,0.047067745,0.033750704,0.060384786,3.431794487,164582,47958,3.251122991,3.612465983,0.124911567,2825,22616,0.100878167,0.148944968,10.83708598,103,95044,,,59.65357066,272,455966,52.5641938,66.74294752,,,,,,,,,,,,,61.62079081,54.17337736,69.06820426,,,,7.6,,,,,0,,,,,0.089087502,3090,34685,0.076105247,0.102069757,0.082814536,0.069512024,0.096117048,0.005622027,0.00323284,0.008011214,0.002594782,0.000738767,0.004450796,0.783343906,39515,50444,0.766093065,0.800594747,,,,0.57082749,0.386580385,0.755074594,,,,0.685714286,0.568250832,0.803177739,0.755889918,0.73933785,0.772441986,0.413,,50444,0.386868598,0.439131402,80.05641273,,,79.54506379,80.56776167,,,,,,,,,,89.31577848,79.06471923,99.56683774,80.02013133,79.50248206,80.53778061,,,,246.2167858,827,261931,228.9091007,263.524471,,,,,,,,,,,,,246.0823142,228.4007864,263.7638419,,,,36.90793521,36,97540,25.84986407,51.09613952,,,,,,,,,,,,,36.57978967,25.02054905,51.63974861,,,,3.742084053,26,6948,2.444453543,5.483020162,,,,,,,,,,,,,3.541185527,2.244807858,5.313516997,,,,,,,0.085,,,0.071,0.101,0.135,,,0.115,0.157,0.068,,,0.057,0.081,44.1,35,79411,,,0.049,4510,,,,0.023655068,1995.186687,84345,,,9.727311047,27,277569,6.410359274,14.15272687,,,,,,,,,,,,,9.638888675,6.237780529,14.22890113,,,,0.299,,,0.28,0.318,0.047838837,2757,57631,0.040689901,0.054987773,0.033664024,811,24091,0.024132109,0.043195939,0.000427008,41,96017,,,2341.878049,0.922236025,1039.36,1127,,,0.032043279,154,4806,0.014586804,0.049499755,3.323558614,,,,,,,,2.917782103,3.35333319,3.479442735,,,,,,,,3.082574748,3.509706311,0.018985222,,,,,2973.4919,,,,,0.796271233,57658,72410,0.747818002,0.844724464,97589,,,90639.04255,104538.9575,49063,16366.14894,81759.85106,130625,94882.70213,166367.2979,12448,9223.829787,15672.17021,66902,38906.76596,94897.23404,99001,93909.76596,104092.234,,,,,,0.206246156,3018,14633,,,63.65093499,,,,,0.253143285,,97589,,,6.900410295,37,5362,,,,,,,,,,,,,,,,,,,,,,,,,,14.70219252,66,455966,11.29756841,18.81049089,14.47476347,,,,,,,,,,,,,14.48297367,10.99752911,18.72260195,,,,7.456696333,34,455966,5.163978978,10.41998572,,,,,,,,,,,,,7.497586714,5.128343762,10.58435537,,,,9.026013922,57,631508,6.836214801,11.69424796,,,,,,,,,,,,,9.287418587,6.996554701,12.08885189,,,,9.473684211,,9500,,,90,,0.850626266,56707,66665,,,0.808,,,,,64.52211219,,,,,0.791189868,28486,36004,0.773034181,0.809345554,0.084122421,2985,35484,0.070456046,0.097788797,0.903344073,32524,36004,0.887854923,0.918833223,96017,,,,,0.234416822,22508,96017,,,0.161533895,15510,96017,,,0.007352865,706,96017,,,0.004603352,442,96017,,,0.01231032,1182,96017,,,0.000416593,40,96017,,,0.027588865,2649,96017,,,0.932324484,89519,96017,,,0.003947205,349,88417,0.002027965,0.005866445,0.495422686,47569,96017,,,0.639881971,59852,93536,, -55,111,55111,WI,Sauk County,2024,1,7125.430696,868,179260,6352.379055,7898.482337,0,39695.19514,24571.95143,60678.32241,1,,,,2,,,,2,,,,2,6944.619135,6133.379443,7755.858827,,,,,2,,0.131,,,0.105,0.159,3.331183491,,,2.502774757,4.279864252,4.807620011,,,3.764429563,5.959748383,0.064365126,330,5127,0.057647699,0.071082552,0,,,,,,,,,,0.079059829,0.054612761,0.103506898,0.062029647,0.054890185,0.069169108,,,,,,,0.154,,,0.114,0.196,0.368,,,0.287,0.453,9,0.028082696,0.073,,,0.198,,,0.155,0.248,0.742727674,48844,65763,,,0.234544271,,,0.187661194,0.286836494,0.339285714,19,56,0.270419738,0.408011346,392.7,258,65697,,,11.84330398,156,13172,9.984786505,13.70182145,,,,,,,,,,16.82905226,10.13218881,26.28064975,10.97234612,9.033233581,12.91145866,,,,,,,0.074977141,3936,52496,0.065445226,0.084509056,0.001004612,66,65697,,,995.4090909,0.00068413,45,65777,,,1461.711111,0.001961172,129,65777,,,509.8992248,2770,,,,,,,,,2750,0.41,,,,,0.35,,,,0.41,0.51,,,,,0.2,0.29,0.25,0.53,0.51,0.922018547,42553,46152,0.911215667,0.932821428,0.636413912,10357,16274,0.596508941,0.676318883,0.028070996,960,34199,,,0.12,1697,,0.08187234,0.15812766,0.411764706,0.08705567,0.736473742,,,,0.357142857,0,0.932958065,0.166103984,0.090573526,0.241634441,0.102123357,0.077045265,0.127201449,3.725853542,125062,33566,3.472200444,3.979506641,0.184489076,2719,14738,0.147969422,0.22100873,11.7204743,77,65697,,,95.40979747,308,322818,84.75430106,106.0652939,358.5217871,190.8977521,613.0831748,,,,,,,,,,97.623468,86.28934626,108.9575897,,,,7.4,,,,,0,,,,,0.125233645,3350,26750,0.108801912,0.141665377,0.104006018,0.088301768,0.119710269,0.014728972,0.009663372,0.019794572,0.018130841,0.009795194,0.026466488,0.786222222,26535,33750,0.7655909,0.806853545,,,,,,,,,,0.754822651,0.661159733,0.848485569,0.795379745,0.773466094,0.817293395,0.304,,33750,0.281741142,0.326258858,78.16291836,,,77.49822978,78.82760693,,,,,,,,,,84.95924391,75.37247161,94.5460162,78.24912796,77.55921927,78.93903666,,,,348.097789,868,179260,323.4972451,372.6983328,1516.065929,999.0969999,2205.796329,,,,,,,,,,343.0056448,317.6446269,368.3666626,,,,45.34225586,29,63958,30.36642037,65.11904287,,,,,,,,,,,,,43.15763796,27.35824036,64.75764715,,,,5.813953488,30,5160,3.922650004,8.299780115,,,,,,,,,,,,,4.933841669,3.092012306,7.469895579,,,,,,,0.099,,,0.081,0.119,0.147,,,0.122,0.173,0.078,,,0.064,0.095,72.2,40,55378,,,0.073,4780,,,,0.028082696,1740.453137,61976,,,27.75094045,54,194588,20.84736056,36.20895759,,,,,,,,,,,,,26.7997149,19.69142248,35.63793947,,,,0.315,,,0.297,0.33,0.082216712,3117,37912,0.071493308,0.092940117,0.057327333,879,15333,0.041837972,0.072816695,0.001079405,71,65777,,,926.4366197,0.925200458,807.7,873,,,0.104981612,314,2991,0.053373495,0.156589728,2.976537882,,,,,,,,2.627870395,3.051843195,2.996935044,,,,,,,,2.784522124,3.065380703,0.052563063,,,,,1469.736817,,,,,0.824469843,47393,57483,0.77982494,0.869114746,70484,,,65241.44681,75726.55319,,,,,,,93056,16769.70213,169342.2979,63839,42049.04255,85628.95745,73784,71026.89362,76541.10638,,,,,,0.412224043,4276,10373,,,72.98789466,,,,,0.309772431,,70484,,,5.254860746,20,3806,,,,,,,,,,,,,,,,,,,,,,,,,,16.61740269,57,322818,12.44757492,21.73597186,17.65700797,,,,,,,,,,,,,16.82130628,12.44449499,22.23865898,,,,12.70065486,41,322818,9.114209204,17.22987243,,,,,,,,,,,,,14.04407785,10.07827274,19.05237741,,,,11.32304195,51,450409,8.430748462,14.88770903,,,,,,,,,,,,,10.77433162,7.828645852,14.46403731,,,,12.54237288,,5900,,,74,,0.750632387,36203,48230,,,0.713,,,,,84.48826007,,,,,0.731776077,19987,27313,0.715920728,0.747631427,0.104292647,2794,26790,0.08836263,0.120222663,0.86914656,23739,27313,0.858183244,0.880109876,65777,,,,,0.21951442,14439,65777,,,0.202152728,13297,65777,,,0.011843045,779,65777,,,0.014062666,925,65777,,,0.007388601,486,65777,,,0.000395275,26,65777,,,0.061556471,4049,65777,,,0.896772428,58987,65777,,,0.009367833,580,61914,0.006477896,0.012257769,0.498776168,32808,65777,,,0.447044691,29399,65763,, -55,113,55113,WI,Sawyer County,2024,1,11273.0202,339,46297,9066.718778,13479.32161,0,27223.81106,20451.36474,35521.16808,,,,,2,,,,2,,,,2,7749.482871,5469.847173,10029.11857,,,,,2,,0.148,,,0.124,0.173,3.699903779,,,2.961473454,4.50007694,4.903460991,,,4.078793552,5.755868044,0.062868369,64,1018,0.047957651,0.077779088,0,0.060344828,0.029702881,0.090986775,,,,,,,,,,0.058043118,0.039379824,0.076706412,,,,,,,0.187,,,0.15,0.226,0.359,,,0.303,0.417,7.6,0.109355135,0.1,,,0.228,,,0.188,0.269,0.667699458,12068,18074,,,0.223292077,,,0.187761442,0.261670124,0.444444444,8,18,0.323758094,0.554110027,191.3,35,18295,,,18.11346548,53,2926,13.56822862,23.69285883,31.46853147,20.73796053,45.78506113,,,,,,,,,,6.948465547,3.590373543,12.13757096,,,,,,,0.092044181,1150,12494,0.078937798,0.105150564,0.000765236,14,18295,,,1306.785714,0.000538822,10,18559,,,1855.9,0.003017404,56,18559,,,331.4107143,1473,,,,,1753,,,,1383,0.53,,,,,0.23,,,,0.55,0.32,,,,,0.35,,,,0.32,0.927992405,12707,13693,0.916542974,0.939441836,0.654534781,2230,3407,0.580526223,0.72854334,0.039807911,315,7913,,,0.196,653,,0.131659575,0.260340426,0.339187706,0.23825023,0.440125182,,,,,,,,,,0.153806048,0.099814982,0.207797114,4.379869472,108047,24669,3.96078226,4.798956683,0.325516816,1055,3241,0.242904105,0.408129527,8.745558896,16,18295,,,127.8711816,108,84460,103.7545377,151.9878256,309.2190421,223.783354,416.5160205,,,,,,,,,,95.50804116,73.22546751,122.4369984,,,,5.9,,,,,1,,,,,0.117796074,930,7895,0.096767305,0.138824842,0.08757244,0.072349738,0.102795143,0.02849905,0.015114298,0.041883802,0.004939835,0.000549554,0.009330117,0.732441906,5642,7703,0.704184201,0.76069961,0.757478633,0.683427958,0.831529307,,,,,,,,,,0.732458126,0.70472082,0.760195432,0.244,,7703,0.210723513,0.277276487,74.68708308,,,73.10610779,76.26805837,62.79173589,59.10621641,66.47725537,,,,,,,,,,77.32841945,75.59281604,79.06402285,,,,461.4443183,339,46297,402.0565981,520.8320386,1063.715379,842.1534826,1325.706742,,,,,,,,,,355.4682421,298.2180349,412.7184493,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.111,,,0.094,0.128,0.155,,,0.134,0.178,0.087,,,0.073,0.102,62.8,10,15934,,,0.1,1780,,,,0.109355135,1810.592968,16557,,,50.43353442,26,51553,32.94485911,73.89681315,202.5497438,117.99269,324.3017612,,,,,,,,,,,,,,,,0.335,,,0.319,0.349,0.103262625,959,9287,0.086581774,0.119943476,0.061406111,207,3371,0.043533771,0.079278451,0.001077644,20,18559,,,927.95,0.878164557,138.75,158,,,,,,,,3.167069362,,,,,,,,,3.382130709,3.095584247,,,,,,,,,3.358884406,0.067339963,,,,,-3648.6001,,,,,0.80207948,41194,51359,0.725176061,0.878982899,60034,,,52973.23404,67094.76596,37672,32540.25532,42803.74468,,,,,,,76321,74820.91489,77821.08511,59750,54020.12766,65479.87234,,,,,,0.450554529,975,2164,,,,,,,,0.301345904,,60034,,,7.518796993,6,798,,,,,,,,,,,,,,,,,,,,,,,,,,29.66523835,20,84460,17.28109454,47.49692032,23.67984845,,,,,,,,,,,,,32.37926911,17.24059712,55.3695363,,,,14.20790907,12,84460,7.341433944,24.81835786,,,,,,,,,,,,,15.40452277,7.387067435,28.32946584,,,,13.65129474,16,117205,7.802894462,22.1688474,,,,,,,,,,,,,,,,,,,12.14285714,,1400,,,17,,0.789928598,10510,13305,,,0.387,,,,,10.01125036,,,,,0.759196102,6233,8210,0.735426516,0.782965688,0.102903719,808,7852,0.084240474,0.121566964,0.813276492,6677,8210,0.791786342,0.834766642,18559,,,,,0.183576701,3407,18559,,,0.281534565,5225,18559,,,0.003771755,70,18559,,,0.16746592,3108,18559,,,0.004849399,90,18559,,,5.38822E-05,1,18559,,,0.029150278,541,18559,,,0.779190689,14461,18559,,,0.002778904,48,17273,0,0.006451062,0.488334501,9063,18559,,,1,18074,18074,, -55,115,55115,WI,Shawano County,2024,1,7282.818472,602,110938,6239.96395,8325.672993,0,15944.09552,11585.00422,21404.20404,,,,,2,,,,2,,,,2,6958.527429,5800.967113,8116.087745,,,,,2,,0.145,,,0.121,0.17,3.611142819,,,2.808884445,4.435937532,5.09675737,,,4.110395872,6.112028609,0.070209974,214,3048,0.061139281,0.079280666,0,0.064864865,0.03976929,0.08996044,,,,,,,0.09929078,0.04992872,0.148652841,0.068487395,0.058339703,0.078635087,,,,,,,0.19,,,0.154,0.229,0.363,,,0.29,0.439,8.8,0.044703569,0.077,,,0.227,,,0.185,0.273,0.482546904,19727,40881,,,0.21717501,,,0.176978089,0.262554594,0.333333333,13,39,0.249594321,0.416968855,264.3,108,40859,,,15.01426976,121,8059,12.33899988,17.68953965,31.85437998,21.16700416,46.03844817,,,,,,,30.22670025,15.6185771,52.79996234,10.03606712,7.728994597,12.81583365,,,,46.35761589,25.34413999,77.78020239,0.078878769,2451,31073,0.068155365,0.089602174,0.000538437,22,40859,,,1857.227273,0.000660373,27,40886,,,1514.296296,0.001834369,75,40886,,,545.1466667,1925,,,,,2175,,,,1775,0.5,,,,,0.33,,,,0.51,0.38,,,,,0.52,,,,0.37,0.920782279,26978,29299,0.909044368,0.932520191,0.571953601,4980,8707,0.532026081,0.611881121,0.029150948,595,20411,,,0.149,1259,,0.103723404,0.194276596,0.273324573,0.189172654,0.357476492,,,,,,,0.096491228,0.026761073,0.166221383,0.083722378,0.064618725,0.102826031,3.835793542,115116,30011,3.566424165,4.10516292,0.168961926,1460,8641,0.133919045,0.204004807,13.95041484,57,40859,,,93.99094358,192,204275,80.69584792,107.2860392,139.0205371,87.12343047,210.4787639,,,,,,,,,,95.42418321,80.9943975,109.8539689,,,,7.4,,,,,0,,,,,0.098805013,1695,17155,0.086238006,0.11137202,0.077171362,0.065490246,0.088852477,0.020402215,0.014278099,0.026526331,0.003788983,0.002168901,0.005409065,0.797418631,15631,19602,0.780331042,0.81450622,0.717068646,0.635040028,0.799097264,,,,,,,0.661399549,0.553092803,0.769706294,0.770791075,0.740199305,0.801382845,0.343,,19602,0.319500157,0.366499844,77.65059753,,,76.79047626,78.51071879,68.53108405,65.41174284,71.65042527,,,,,,,,,,78.08669145,77.14287191,79.03051099,,,,358.4530733,602,110938,327.4233021,389.4828445,836.9626614,657.1957068,1050.729977,,,,,,,,,,336.6292282,304.4712405,368.7872159,,,,68.33473507,26,38048,44.6385177,100.1262197,,,,,,,,,,,,,68.24075338,41.68322501,105.3923089,,,,8.58652576,26,3028,5.609003704,12.5812497,,,,,,,,,,,,,8.371703642,5.113654075,12.92941729,,,,,,,0.108,,,0.092,0.124,0.162,,,0.14,0.184,0.085,,,0.072,0.1,57.4,20,34867,,,0.077,3150,,,,0.044703569,1875.269999,41949,,,16.3206685,20,122544,9.969088316,25.2059488,,,,,,,,,,,,,15.1876145,8.681033948,24.66373444,,,,0.347,,,0.33,0.361,0.08868838,2015,22720,0.075581997,0.101794763,0.05387931,475,8816,0.039581438,0.068177183,0.001027247,42,40886,,,973.4761905,0.897873711,348.375,388,,,0.050553683,105,2077,0.018439282,0.082668085,2.715821198,,,,,,,,2.715923454,2.760293943,2.622231415,,,,,,,,2.592692421,2.677022975,0.076293951,,,,,2117.154856,,,,,0.78300656,43211,55186,0.742904734,0.823108386,66733,,,61112.74468,72353.25532,53942,24681.40426,83202.59575,68750,32148.6383,105351.3617,,,,42321,5960.319149,78681.68085,66927,63357.29787,70496.70213,,,,,,0.490992794,2453,4996,,,,,,,,0.280445956,,66733,,,4.134129536,9,2177,,,,,,,,,,,,,,,,,,,,,,,,,,14.86183743,33,204275,9.953205773,21.34407762,16.15469343,,,,,,,,,,,,,15.6012385,10.09629896,23.03050565,,,,8.811650961,18,204275,5.222342813,13.92620745,,,,,,,,,,,,,10.22401963,6.059401997,16.15835886,,,,14.30360625,41,286641,10.2645148,19.40445699,,,,,,,,,,,,,14.93525366,10.51579688,20.58627981,,,,34.44444444,,3600,,,124,,0.709601506,22615,31870,,,0.688,,,,,57.45148887,,,,,0.793010268,13206,16653,0.778261813,0.807758724,0.07795432,1256,16112,0.063975887,0.091932753,0.829760404,13818,16653,0.814194087,0.845326721,40886,,,,,0.210267573,8597,40886,,,0.219317126,8967,40886,,,0.004965025,203,40886,,,0.088685614,3626,40886,,,0.006065646,248,40886,,,0.000635915,26,40886,,,0.033214303,1358,40886,,,0.855060412,34960,40886,,,0.00240366,93,38691,0.00023923,0.004568089,0.492686983,20144,40886,,,0.700863482,28652,40881,, -55,117,55117,WI,Sheboygan County,2024,1,6860.758849,1473,321587,6277.857868,7443.65983,0,,,,2,7590.561488,5447.117975,10297.45376,,17658.19184,11733.74024,25521.00371,,7732.925691,5681.862936,10283.15185,,6550.912432,5917.476664,7184.348199,,,,,2,,0.123,,,0.103,0.145,3.043306798,,,2.386184158,3.827149117,4.163242979,,,3.355638414,5.063441769,0.070767752,589,8323,0.065258458,0.076277046,0,,,,0.073275862,0.056509541,0.090042184,0.161434978,0.113143463,0.209726493,0.058434399,0.043168865,0.073699934,0.068181818,0.06181871,0.074544927,,,,0.110344828,0.05934615,0.161343505,0.148,,,0.116,0.18,0.323,,,0.261,0.387,9.4,0.022316648,0.058,,,0.192,,,0.153,0.233,0.857100497,101167,118034,,,0.223479425,,,0.183861226,0.267450856,0.340909091,15,44,0.262598167,0.41884339,293.9,346,117747,,,12.32227488,299,24265,10.92554839,13.71900137,,,,12.67010793,8.349680963,18.43434183,36.10108303,22.0514794,55.75519477,27.11157456,21.43057463,33.83647204,9.11700152,7.713054914,10.52094813,,,,,,,0.057000933,5313,93209,0.048660508,0.065341359,0.000611481,72,117747,,,1635.375,0.000627965,74,117841,,,1592.445946,0.001748118,206,117841,,,572.0436893,1876,,,,,,1126,11036,489,1837,0.49,,,,,,0.22,,0.3,0.5,0.58,,,,,,0.51,0.4,0.42,0.58,0.938222011,77074,82149,0.93104594,0.945398082,0.667748377,18725,28042,0.630282433,0.705214322,0.024498523,1501,61269,,,0.116,2844,,0.082638298,0.149361702,,,,0.107043375,0.017492793,0.196593956,0.401606426,0.114126859,0.689085993,0.230577223,0.1368978,0.324256646,0.060948863,0.046373841,0.075523885,3.607627722,126754,35135,3.365404855,3.849850588,0.208604596,5319,25498,0.177436152,0.239773041,14.18295158,167,117747,,,85.64615361,496,579127,78.108727,93.18358022,,,,,,,89.41635506,44.63632228,159.9905586,43.53504571,25.36076844,69.70382549,94.66617228,85.98671063,103.3456339,,,,7.9,,,,,0,,,,,0.100827139,4815,47755,0.08694437,0.114709907,0.076995798,0.064804838,0.089186759,0.016647472,0.011186135,0.022108808,0.012145325,0.008090182,0.016200468,0.808616171,48745,60282,0.796325489,0.820906852,,,,0.811989101,0.752312382,0.87166582,0.640038499,0.483049888,0.797027109,0.720138335,0.635900347,0.804376323,0.826930807,0.81468402,0.839177594,0.152,,60282,0.138625565,0.165374435,78.30774527,,,77.8046518,78.81083874,,,,76.71919849,73.96496992,79.47342705,68.866391,62.25909816,75.47368384,78.65617774,74.83549209,82.47686339,78.5681405,78.03337055,79.10291046,,,,329.730413,1473,321587,311.8803146,347.5805113,,,,379.4122812,273.4469996,512.8551829,742.6027508,470.7464428,1114.268741,394.6958044,297.3388956,513.750842,321.3374692,302.4173786,340.2575597,,,,53.68070715,60,111772,40.96403478,69.09771088,,,,,,,,,,78.91527369,39.3942203,141.2012233,42.94881512,29.743303,60.01666426,,,,5.059418755,43,8499,3.66152644,6.815003861,,,,,,,,,,,,,3.3680834,2.08489671,5.148473253,,,,,,,0.091,,,0.077,0.106,0.138,,,0.117,0.16,0.076,,,0.064,0.09,67.9,68,100130,,,0.058,6860,,,,0.022316648,2577.729009,115507,,,22.6798382,79,348327,17.95584148,28.26584536,,,,,,,,,,,,,23.88675601,18.58532195,30.23021851,,,,0.288,,,0.273,0.302,0.066483015,4513,67882,0.05575961,0.077206419,0.033084512,882,26659,0.023552597,0.042616427,0.001145612,135,117841,,,872.8962963,0.897668482,1318.675,1469,,,0.039665971,228,5748,0.01590512,0.063426821,2.998487196,,,,,,2.690660392,2.229573755,2.6630974,3.196747518,2.938221265,,,,,,2.823081995,1.985903338,2.475500098,3.137537599,0.138905297,,,,,2538.553889,,,,,0.805290831,49010,60860,0.748286934,0.862294729,65008,,,60332.59575,69683.40426,92813,23984.23404,161641.766,86991,68501.46809,105480.5319,,,,58056,49222.29787,66889.70213,70012,67260.85106,72763.14894,,,,,,0.370473849,6630,17896,,,68.02612904,,,,,0.378091927,,65008,,,6.419289181,41,6387,,,1.357818504,11,810123,0.677818105,2.429512372,,,,,,,,,,,,,,,,,,,14.6629658,90,579127,11.66189185,18.20060678,15.54063271,,,,,,,,,,,,,16.30148799,12.80017427,20.46502538,,,,9.66972702,56,579127,7.304407873,12.55694485,,,,,,,,,,,,,10.35734926,7.687424259,13.65487379,,,,8.393787116,68,810123,6.518104134,10.64112526,,,,,,,,,,,,,8.838945573,6.745046648,11.37747504,,,,12,,10500,,,126,,0.758921591,66011,86980,,,0.785,,,,,147.6877589,,,,,0.716875701,35152,49035,0.702667039,0.731084363,0.080160279,3861,48166,0.069053404,0.091267154,0.892444173,43761,49035,0.88093814,0.903950205,117841,,,,,0.212184214,25004,117841,,,0.198139866,23349,117841,,,0.02337896,2755,117841,,,0.005897778,695,117841,,,0.062083655,7316,117841,,,0.000534619,63,117841,,,0.072343242,8525,117841,,,0.820766966,96720,117841,,,0.010457774,1166,111496,,,0.490406565,57790,117841,,,0.293593371,34654,118034,, -55,119,55119,WI,Taylor County,2024,1,5675.688399,228,55247,4415.369452,6936.007345,0,,,,2,,,,2,,,,2,,,,2,5217.694365,4018.581376,6416.807353,,,,,2,,0.144,,,0.119,0.172,3.679371953,,,2.911646623,4.538281673,5.090700054,,,4.155591083,6.084182278,0.050130208,77,1536,0.039217256,0.061043161,0,,,,,,,,,,,,,0.050800278,0.039446523,0.062154034,,,,,,,0.173,,,0.138,0.211,0.395,,,0.326,0.469,8.3,0.11510818,0.063,,,0.224,,,0.182,0.271,0.613468588,12216,19913,,,0.232985798,,,0.192188485,0.277928337,0.4375,7,16,0.30773596,0.555081272,95.4,19,19923,,,8.889901983,39,4387,6.321589353,12.15278866,,,,,,,,,,,,,7.071445989,4.735858361,10.15577602,,,,,,,0.078064557,1231,15769,0.067341153,0.088787961,0.000250966,5,19923,,,3984.6,0.000600751,12,19975,,,1664.583333,0.001251565,25,19975,,,799,2327,,,,,,,,,2334,0.61,,,,,,,,,0.61,0.2,,,,,,,,,0.2,0.893268124,12420,13904,0.881521907,0.905014342,0.520818115,2139,4107,0.467159538,0.574476693,0.033630163,355,10556,,,0.158,704,,0.109148936,0.206851064,,,,,,,0.310344828,0,0.977979864,0.153488372,0.002635089,0.304341655,0.087807206,0.069503668,0.106110744,3.637099922,111819,30744,3.265972199,4.008227645,0.15625,720,4608,0.099265769,0.213234231,8.030919038,16,19923,,,66.12908002,67,101317,51.2491287,83.98159403,,,,,,,,,,,,,65.09811216,50.02317678,83.28876416,,,,6.4,,,,,1,,,,,0.133333333,1150,8625,0.114179524,0.152487142,0.100234467,0.081399373,0.11906956,0.019130435,0.013287768,0.024973102,0.023188406,0.016060935,0.030315876,0.737478234,7200,9763,0.712363158,0.762593311,,,,,,,,,,0.653679654,0.403241905,0.904117402,0.733294596,0.720222314,0.746366879,0.261,,9763,0.23380375,0.28819625,80.24404389,,,79.00955962,81.47852815,,,,,,,,,,,,,80.51273496,79.30222269,81.72324723,,,,283.1083887,228,55247,243.4413981,322.7753793,,,,,,,,,,,,,274.8942575,235.4278521,314.360663,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.107,,,0.091,0.124,0.158,,,0.136,0.182,0.083,,,0.07,0.098,41.7,7,16795,,,0.063,1260,,,,0.11510818,2381.473135,20689,,,,,,,,,,,,,,,,,,,,,,,,,,0.324,,,0.306,0.34,0.084577114,952,11256,0.071470731,0.097683497,0.0625132,296,4735,0.044640859,0.08038554,0.001451815,29,19975,,,688.7931035,0.964678899,210.3,218,,,0.090390105,95,1051,0.039283505,0.141496704,3.164019851,,,,,,,,,3.185529973,3.270518069,,,,,,,,,3.301676038,0.035985876,,,,,1763.688,,,,,0.870987364,44389,50964,0.792807955,0.949166773,67544,,,59614.6383,75473.3617,,,,,,,,,,49583,36171.59575,62994.40426,61992,59273.02128,64710.97872,,,,,,0.381226937,1653,4336,,,,,,,,0.350971219,,67544,,,3.584229391,4,1116,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.57951213,25,142211,11.37653335,25.95082778,,,,,,,,,,,,,15.42155934,9.546188293,23.57349161,,,,9.523809524,,2100,,,20,,0.693896104,10686,15400,,,0.663,,,,,8.497764518,,,,,0.80049007,6207,7754,0.782015147,0.818964992,0.098279107,731,7438,0.078836223,0.117721992,0.811968017,6296,7754,0.791763885,0.832172148,19975,,,,,0.227884856,4552,19975,,,0.213166458,4258,19975,,,0.004155194,83,19975,,,0.004755945,95,19975,,,0.005306633,106,19975,,,0.000851064,17,19975,,,0.026783479,535,19975,,,0.952690864,19030,19975,,,0.010800508,204,18888,0.005350236,0.016250781,0.487809762,9744,19975,,,0.793401296,15799,19913,, -55,121,55121,WI,Trempealeau County,2024,1,5784.336955,368,83120,4812.825011,6755.848899,0,,,,2,,,,2,,,,2,,,,2,5675.994031,4645.30549,6706.682571,,,,,2,,0.131,,,0.109,0.156,3.352485016,,,2.626165194,4.167024027,4.922915684,,,3.954898462,5.95288307,0.069546892,198,2847,0.060202556,0.078891227,0,,,,,,,,,,0.079268293,0.058594486,0.0999421,0.062321599,0.051987182,0.072656015,,,,,,,0.159,,,0.124,0.197,0.352,,,0.276,0.435,9.2,0.037623814,0.06,,,0.208,,,0.167,0.253,0.795383615,24466,30760,,,0.232292557,,,0.188692336,0.281328328,0.375,6,16,0.240765683,0.502616143,231.1,71,30724,,,18.69918699,115,6150,15.28151896,22.11685502,,,,,,,,,,78.59078591,59.6772787,101.5968154,9.3708166,6.932581708,12.3887165,,,,,,,0.074461189,1838,24684,0.063737785,0.085184594,0.000260383,8,30724,,,3840.5,0.000291272,9,30899,,,3433.222222,0.00055018,17,30899,,,1817.588235,1789,,,,,,,,,1811,0.57,,,,,,,,,0.57,0.44,,,,,,,,,0.45,0.917448857,19060,20775,0.906413627,0.928484086,0.601598837,4139,6880,0.561673266,0.641524409,0.030993128,460,14842,,,0.105,807,,0.069255319,0.140744681,,,,,,,0.555555556,0.129846279,0.981264833,0.091721263,0.046150481,0.137292045,0.063279857,0.049076904,0.077482811,3.400269619,118547,34864,3.148678766,3.651860473,0.131088083,1012,7720,0.107075609,0.155100557,12.36818123,38,30724,,,68.47108104,102,148968,55.1829724,81.75918968,,,,,,,,,,,,,71.84071024,58.12342466,87.82154285,,,,8,,,,,0,,,,,0.093454096,1135,12145,0.082162936,0.104745257,0.073261589,0.062626719,0.083896459,0.01399753,0.008520762,0.019474298,0.010292301,0.006425467,0.014159136,0.802821522,12235,15240,0.79325731,0.812385735,,,,,,,,,,0.644569817,0.568292013,0.720847621,0.794731648,0.783669388,0.805793909,0.333,,15240,0.311224737,0.354775263,79.25298632,,,78.31190803,80.1940646,,,,,,,,,,,,,79.238178,78.26788495,80.20847104,,,,311.9502284,368,83120,278.4350792,345.4653775,,,,,,,,,,,,,310.905459,276.4274238,345.3834942,,,,46.18226601,15,32480,25.84786371,76.1706246,,,,,,,,,,,,,49.20856229,25.42678221,85.9574553,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.1,,,0.085,0.116,0.149,,,0.128,0.172,0.078,,,0.066,0.092,55.6,14,25162,,,0.06,1830,,,,0.037623814,1084.167832,28816,,,,,,,,,,,,,,,,,,,,,,,,,,0.327,,,0.311,0.343,0.084390416,1437,17028,0.071284033,0.097496799,0.053144929,425,7997,0.037655568,0.068634291,0.000906178,28,30899,,,1103.535714,0.927819957,427.725,461,,,0.077726976,119,1531,0.034533663,0.120920288,2.863414118,,,,,,,,2.447929707,3.035444174,2.790012679,,,,,,,,2.398896855,2.96232535,0.319084566,,,,,-382.8526286,,,,,0.788043676,43303,54950,0.738640199,0.837447154,68184,,,61322.21277,75045.78723,113162,63118.25532,163205.7447,,,,24286,15445.14894,33126.85106,62669,46851.97872,78486.02128,69355,65622.06383,73087.93617,,,,,,0.411546253,2438,5924,,,74.01856139,,,,,0.192127185,,68184,,,4.683840749,10,2135,,,,,,,,,,,,,,,,,,,,,,,,,,15.72010108,22,148968,9.602246137,24.27842114,14.76827238,,,,,,,,,,,,,16.34928018,9.843334674,25.53142622,,,,10.06927662,15,148968,5.635697689,16.6077405,,,,,,,,,,,,,10.58705204,5.788039865,17.76327437,,,,15.37345485,32,208151,10.51543174,21.70273123,,,,,,,,,,,,,15.07580979,10.01776612,21.78874265,,,,12.75862069,,2900,,,37,,0.718020542,15380,21420,,,0.702,,,,,11.87415193,,,,,0.741713824,9175,12370,0.72450206,0.758925588,0.082402002,988,11990,0.069971586,0.094832417,0.841794665,10413,12370,0.82881645,0.854772879,30899,,,,,0.251885174,7783,30899,,,0.195669763,6046,30899,,,0.004369073,135,30899,,,0.015016667,464,30899,,,0.007734878,239,30899,,,0.000809088,25,30899,,,0.095828344,2961,30899,,,0.88057866,27209,30899,,,0.021202033,605,28535,0.016324031,0.026080035,0.489336225,15120,30899,,,1,30760,30760,, -55,123,55123,WI,Vernon County,2024,1,6901.365208,399,84977,5806.948421,7995.781995,0,,,,2,,,,2,,,,2,,,,2,7060.527606,5922.42929,8198.625921,,,,,2,,0.145,,,0.119,0.175,3.51592082,,,2.749312591,4.373784947,4.941976478,,,3.98625412,5.984828842,0.048630137,142,2920,0.040828386,0.056431888,0,,,,,,,,,,,,,0.04920354,0.041227473,0.057179607,,,,,,,0.178,,,0.136,0.222,0.389,,,0.312,0.471,8.5,0.060501885,0.081,,,0.218,,,0.17,0.268,0.468483428,14389,30714,,,0.218708196,,,0.178207192,0.26335023,0.625,10,16,0.52435081,0.707784234,132.6,41,30915,,,6.606347839,46,6963,4.836676922,8.811942225,,,,,,,,,,,,,6.148170919,4.392343443,8.372063782,,,,,,,0.097987895,2396,24452,0.083690022,0.112285767,0.001035096,32,30915,,,966.09375,0.000321958,10,31060,,,3106,0.001577592,49,31060,,,633.877551,2001,,,,,,,,,2014,0.5,,,,,,,,,0.5,0.38,,,,,,,,,0.38,0.903049371,18657,20660,0.891803254,0.914295487,0.585988271,3697,6309,0.540641944,0.631334598,0.026902281,408,15166,,,0.225,1782,,0.161851064,0.288148936,,,,,,,,,,0.095505618,0,0.200733445,0.229330442,0.19450591,0.264154974,4.176073641,120676,28897,3.792176469,4.559970812,0.136232971,1090,8001,0.107522448,0.164943494,11.32136503,35,30915,,,75.90403654,117,154142,62.15006844,89.65800463,,,,,,,,,,,,,78.24198357,64.0033954,92.48057174,,,,8.1,,,,,0,,,,,0.161383285,1960,12145,0.138736776,0.184029795,0.113430353,0.092064017,0.13479669,0.023384109,0.017450982,0.029317235,0.049403047,0.03889075,0.059915343,0.748887754,10268,13711,0.725281822,0.772493687,,,,,,,,,,,,,0.699765899,0.671756969,0.72777483,0.404,,13711,0.372702135,0.435297865,78.59228183,,,77.62817463,79.55638904,,,,,,,,,,,,,78.38956418,77.40517633,79.37395204,,,,340.5393526,399,84977,303.9629896,377.1157156,,,,,,,,,,,,,345.0306227,307.533237,382.5280085,,,,31.52043097,11,34898,15.73488557,56.39875785,,,,,,,,,,,,,33.48044438,16.7133172,59.90576324,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.108,,,0.09,0.127,0.157,,,0.132,0.183,0.084,,,0.07,0.099,63.4,16,25224,,,0.081,2490,,,,0.060501885,1801.322623,29773,,,11.87930625,11,92598,5.930106878,21.25536028,,,,,,,,,,,,,11.23166431,5.386019606,20.65543056,,,,0.316,,,0.297,0.333,0.098737711,1627,16478,0.083248349,0.114227073,0.095641791,801,8375,0.067046046,0.124237536,0.000804894,25,31060,,,1242.4,0.899671053,273.5,304,,,0.185051236,307,1659,0.12645391,0.243648562,3.09683985,,,,,,,,,3.112869566,3.035069321,,,,,,,,,3.044123502,0.055765686,,,,,-1136.04515,,,,,0.822127195,45180,54955,0.772243605,0.872010785,67812,,,62144.08511,73479.91489,,,,,,,23250,7901.234043,38598.76596,44464,28125.10638,60802.89362,65438,62534.34043,68341.65957,,,,,,0.40834654,1546,3786,,,,,,,,0.298059341,,67812,,,2.312673451,5,2162,,,,,,,,,,,,,,,,,,,,,,,,,,16.56822764,25,154142,10.38322005,25.08449575,16.21881123,,,,,,,,,,,,,17.21573815,10.78901144,26.06483446,,,,9.731286736,15,154142,5.446527314,16.05027758,,,,,,,,,,,,,10.11749788,5.662686757,16.68727412,,,,11.60297407,25,215462,7.508833042,17.12827863,,,,,,,,,,,,,12.05917679,7.804063387,17.80172383,,,,2.121212121,,3300,,,7,,0.706276336,15923,22545,,,0.636,,,,,23.27510758,,,,,0.797431407,9562,11991,0.78215133,0.812711484,0.09643168,1108,11490,0.07966639,0.11319697,0.785672588,9421,11991,0.766238213,0.805106962,31060,,,,,0.258821636,8039,31060,,,0.213683194,6637,31060,,,0.004249839,132,31060,,,0.003960077,123,31060,,,0.005183516,161,31060,,,0.000354153,11,31060,,,0.018319382,569,31060,,,0.958821636,29781,31060,,,0.014180197,407,28702,0.010237986,0.018122407,0.493271088,15321,31060,,,0.868333659,26670,30714,, -55,125,55125,WI,Vilas County,2024,1,9758.976615,421,59360,7849.847321,11668.10591,0,24610.01434,17415.51086,33779.16745,,,,,2,,,,2,,,,2,8031.682526,6115.056474,9948.308579,,,,,2,,0.132,,,0.111,0.158,3.494514509,,,2.721179775,4.325472289,4.883590603,,,3.970541478,5.868205477,0.081563297,96,1177,0.065926786,0.097199807,0,0.107279694,0.069734678,0.144824709,,,,,,,,,,0.070975919,0.053058041,0.088893797,,,,,,,0.164,,,0.128,0.205,0.362,,,0.294,0.434,8.8,0.030352593,0.083,,,0.198,,,0.16,0.245,0.882500976,20339,23047,,,0.210346985,,,0.172099876,0.253599139,0.7,7,10,0.586889454,0.784252101,55.3,13,23520,,,11.38952164,40,3512,8.136841242,15.50929583,21.05263158,11.50966959,35.32273853,,,,,,,,,,7.410456978,4.391906456,11.71171687,,,,,,,0.094441239,1473,15597,0.081334856,0.107547622,0.000722789,17,23520,,,1383.529412,0.001009974,24,23763,,,990.125,0.000967891,23,23763,,,1033.173913,2122,,,,,5781,,,,1852,0.57,,,,,0.17,,,,0.59,0.45,,,,,0.38,,,,0.45,0.953901296,17299,18135,0.944869726,0.962932865,0.605611847,2331,3849,0.532557455,0.678666239,0.038825384,394,10148,,,0.178,673,,0.124382979,0.231617021,0.417151163,0.288468423,0.545833902,,,,,,,0.3,0.063968222,0.536031779,0.121052632,0.076988127,0.165117136,3.837587164,113370,29542,3.458580396,4.216593932,0.248963731,961,3860,0.186221461,0.311706,18.70748299,44,23520,,,119.077463,133,111692,98.83982498,139.3151011,145.1115545,82.94379153,235.6520733,,,,,,,,,,121.0169634,98.89857897,143.1353479,,,,4.9,,,,,0,,,,,0.124599175,1360,10915,0.098710101,0.15048825,0.113311838,0.089237607,0.137386069,0.006321576,0.003051199,0.009591953,0.008703619,0.002806226,0.014601012,0.771122888,7712,10001,0.75097249,0.791273285,0.56462585,0.472752615,0.656499085,,,,,,,,,,0.775353774,0.748667667,0.80203988,0.212,,10001,0.182669026,0.241330974,76.67051601,,,75.25318643,78.08784558,64.04293965,59.52859446,68.55728484,,,,,,,,,,78.03326897,76.58280625,79.48373169,,,,402.370427,421,59360,353.9178272,450.8230268,1075.843576,832.0573434,1368.736813,,,,,,,,,,353.7734677,304.8020699,402.7448656,,,,78.36990596,13,16588,41.72867429,134.014926,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.1,,,0.085,0.117,0.15,,,0.129,0.174,0.081,,,0.068,0.096,,,,,,0.083,1900,,,,0.030352593,650.4560757,21430,,,24.97392429,17,68071,14.54823121,39.98567204,,,,,,,,,,,,,25.8705438,14.47954698,42.66952773,,,,0.303,,,0.287,0.318,0.10422108,1237,11869,0.087540229,0.120901931,0.065511089,257,3923,0.046447259,0.084574918,0.000462905,11,23763,,,2160.272727,0.9525,104.775,110,,,,,,,,3.047716527,,,,,,,,,3.221848998,3.118963076,,,,,,,,,3.397210345,0.4018038,,,,,5956.9874,,,,,0.824210904,45958,55760,0.735718804,0.912703003,63356,,,56389.3617,70322.6383,41667,21371.17021,61962.82979,56833,43521.68085,70144.31915,,,,68750,7085.659575,130414.3404,67448,62827.40426,72068.59575,,,,,,0.521592189,1389,2663,,,,,,,,0.29539428,,63356,,,10.32110092,9,872,,,,,,,,,,,,,,,,,,,,,,,,,,20.97033274,23,111692,12.2159916,33.57553414,20.59234323,,,,,,,,,,,,,16.3471635,8.160445122,29.24959106,,,,13.42978906,15,111692,7.516550991,22.15039472,,,,,,,,,,,,,12.62785705,6.52499801,22.05832497,,,,20.06290692,31,154514,13.63177187,28.4776949,,,,,,,,,,,,,22.81039242,15.39007598,32.56325352,,,,21.33333333,,1500,,,32,,0.844682605,15369,18195,,,0.344,,,,,11.04528364,,,,,0.834663412,8890,10651,0.83031081,0.839016014,0.101346769,1046,10321,0.082289287,0.120404251,0.847619942,9028,10651,0.824399679,0.870840204,23763,,,,,0.161722005,3843,23763,,,0.31721584,7538,23763,,,0.003240332,77,23763,,,0.101376089,2409,23763,,,0.005933594,141,23763,,,0.000252493,6,23763,,,0.026680133,634,23763,,,0.857172916,20369,23763,,,0.000539593,12,22239,0,0.003996423,0.483146067,11481,23763,,,1,23047,23047,, -55,127,55127,WI,Walworth County,2024,1,7026.69883,1340,291302,6402.308514,7651.089145,0,,,,2,,,,2,,,,2,5831.791647,4166.317453,7941.24501,,7103.544438,6441.051259,7766.037617,,,,,2,,0.127,,,0.105,0.151,3.140903638,,,2.441148355,3.97259009,4.728946834,,,3.793590488,5.729870797,0.063521719,408,6423,0.057556902,0.069486535,0,,,,,,,0.195121951,0.109345663,0.28089824,0.06577693,0.050775578,0.080778283,0.061769291,0.055182803,0.068355778,,,,,,,0.144,,,0.112,0.181,0.369,,,0.296,0.45,8.5,0.096096174,0.065,,,0.202,,,0.162,0.249,0.812289863,86491,106478,,,0.238222817,,,0.194635833,0.287818896,0.261538462,17,65,0.197408603,0.328537813,289.3,309,106799,,,7.504040637,195,25986,6.450784635,8.55729664,,,,,,,,,,17.0212766,13.31810064,21.43548086,5.257210239,4.261072193,6.253348285,,,,,,,0.072791427,6127,84172,0.063259512,0.082323342,0.000430716,46,106799,,,2321.717391,0.000483963,51,105380,,,2066.27451,0.001375973,145,105380,,,726.7586207,2297,,,,,,,,1121,2300,0.47,,,,,,0.25,,0.27,0.47,0.56,,,,,,0.5,0.61,0.47,0.56,0.919268839,64825,70518,0.910026706,0.928510972,0.644826367,14595,22634,0.607736947,0.681915788,0.028864043,1660,57511,,,0.116,2307,,0.082638298,0.149361702,,,,0.76969697,0.543645095,0.995748844,,,,0.112573443,0.068847546,0.15629934,0.076538664,0.055396818,0.09768051,3.946564021,139440,35332,3.667156875,4.225971167,0.20570255,4307,20938,0.164681988,0.246723113,9.83155273,105,106799,,,87.64527636,457,521420,79.60952508,95.68102764,,,,,,,,,,37.24583947,23.3417693,56.39064856,95.17959242,86.10912373,104.2500611,,,,9.2,,,,,1,,,,,0.133285042,5520,41415,0.11866341,0.147906673,0.115130775,0.100875972,0.129385578,0.016539901,0.01134252,0.021737282,0.007847398,0.004745202,0.010949595,0.77826847,42295,54345,0.761988585,0.794548355,,,,,,,,,,0.700323815,0.652599607,0.748048023,0.762259767,0.749029974,0.775489559,0.344,,54345,0.321933308,0.366066692,78.16169152,,,77.62946475,78.69391828,,,,,,,,,,82.11757107,78.19273325,86.04240888,78.05234196,77.50084809,78.60383583,,,,336.9599783,1340,291302,317.4844056,356.435551,,,,,,,,,,279.6382829,213.3934695,359.9499009,344.4204426,323.2792402,365.5616449,,,,31.18241714,31,99415,21.18693958,44.26095207,,,,,,,,,,57.42625946,28.66698182,102.751441,22.65971769,13.20012059,36.2804031,,,,5.019011407,33,6575,3.454856513,7.048558064,,,,,,,,,,,,,,,,,,,,,,0.095,,,0.081,0.112,0.145,,,0.123,0.169,0.078,,,0.066,0.092,55.1,51,92618,,,0.065,6850,,,,0.096096174,9823.719623,102228,,,24.79181235,78,314620,19.59689886,30.94130381,,,,,,,,,,,,,27.23291228,21.34625601,34.24129859,,,,0.305,,,0.288,0.322,0.081368689,5146,63243,0.070645285,0.092092093,0.048894903,1084,22170,0.03578852,0.062001286,0.000635794,67,105380,,,1572.835821,0.969128086,1255.99,1296,,,0.030975497,201,6489,0.01386231,0.048088684,3.158860948,,,,,,,,2.731999204,3.310489319,3.083962894,,,,,,,,2.545411343,3.293359455,0.090182231,,,,,1842.152533,,,,,0.726065711,44131,60781,0.683358329,0.768773093,73723,,,69064.2766,78381.7234,63462,57981.14894,68942.85106,,,,42353,2130.702128,82575.29787,71266,67778.51064,74753.48936,76058,73686.93617,78429.06383,,,,,,0.398890895,6186,15508,,,54.56615036,,,,,0.319859474,,73723,,,6.103563694,31,5079,,,1.925237526,14,727183,1.052545271,3.230221433,,,,,,,,,,,,,1.935259131,0.999976633,3.380508239,,,,14.98541352,78,521420,11.70373229,18.90206011,14.95915001,,,,,,,,,,,,,15.73963224,12.09476558,20.13782696,,,,9.972766676,52,521420,7.448139159,13.07795668,,,,,,,,,,,,,10.57551027,7.770487164,14.06318673,,,,11.55142516,84,727183,9.2138691,14.30145036,,,,,,,,,,13.37158417,6.675046639,23.92545769,11.45028319,8.942766171,14.44297422,,,,10.88888889,,9000,,,98,,0.729760547,57600,78930,,,0.655,,,,,82.16775206,,,,,0.697005619,29399,42179,0.680122491,0.713888747,0.115717551,4759,41126,0.102066596,0.129368506,0.867327343,36583,42179,0.851856775,0.882797911,105380,,,,,0.191877017,20220,105380,,,0.199990511,21075,105380,,,0.01032454,1088,105380,,,0.005143291,542,105380,,,0.011064718,1166,105380,,,0.000588347,62,105380,,,0.115031315,12122,105380,,,0.850123363,89586,105380,,,0.018459637,1852,100327,0.015021961,0.021897313,0.496299108,52300,105380,,,0.369052762,39296,106478,, -55,129,55129,WI,Washburn County,2024,1,7595.135637,291,43042,5876.693405,9313.577869,0,,,,2,,,,2,,,,2,,,,2,7837.159541,6010.829514,9663.489569,,,,,2,,0.14,,,0.116,0.168,3.422143206,,,2.63516743,4.217201699,4.743818115,,,3.753660527,5.751881087,0.057906459,52,898,0.042629799,0.073183119,0,,,,,,,,,,,,,0.058682635,0.042740897,0.074624373,,,,,,,0.174,,,0.136,0.217,0.34,,,0.268,0.415,8.4,0.045627281,0.094,,,0.211,,,0.169,0.26,0.605426217,10064,16623,,,0.207137359,,,0.167983053,0.250468263,0.615384615,8,13,0.498967911,0.709082703,131.3,22,16752,,,13.55578728,39,2877,9.639489916,18.53120746,,,,,,,,,,,,,13.06687164,9.049188465,18.25964339,,,,,,,0.075655989,914,12081,0.064932585,0.086379393,0.00095511,16,16752,,,1047,0.000413932,7,16911,,,2415.857143,0.001300928,22,16911,,,768.6818182,2444,,,,,,,,,2497,0.53,,,,,0.21,,,,0.53,0.28,,,,,0.32,,,,0.28,0.932725109,11757,12605,0.921515496,0.943934722,0.592764686,1786,3013,0.544703253,0.64082612,0.037003257,284,7675,,,0.159,469,,0.106574468,0.211425532,0.666666667,0.002704882,1,,,,,,,0.43,0.170144993,0.689855007,0.139305302,0.105245441,0.173365162,4.026787298,113495,28185,3.810167398,4.243407199,0.166829905,511,3063,0.135858491,0.19780132,11.93887297,20,16752,,,97.71986971,78,79820,77.24350189,121.9588199,,,,,,,,,,,,,101.2550294,79.77744661,126.7357683,,,,5.8,,,,,0,,,,,0.101508916,740,7290,0.085788171,0.117229662,0.082369535,0.067016193,0.097722876,0.016460905,0.009949804,0.022972007,0.006858711,0.004054166,0.009663255,0.768403171,5428,7064,0.745347066,0.791459276,,,,,,,,,,,,,0.756385696,0.733802151,0.778969241,0.311,,7064,0.281188946,0.340811054,77.13676902,,,75.78053295,78.49300508,,,,,,,,,,,,,76.90265612,75.48906171,78.31625053,,,,372.7971258,291,43042,322.2073109,423.3869406,,,,,,,,,,,,,382.9887606,329.7963765,436.1811447,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.105,,,0.089,0.123,0.157,,,0.133,0.182,0.081,,,0.068,0.096,81.8,12,14677,,,0.094,1560,,,,0.045627281,725.9756706,15911,,,,,,,,,,,,,,,,,,,,,,,,,,0.317,,,0.299,0.336,0.083130934,753,9058,0.070024551,0.096237317,0.05469978,174,3181,0.038018929,0.071380631,0.000650464,11,16911,,,1537.363636,0.904533679,174.575,193,,,,,,,,2.893567731,,,,,,,,,2.927427428,3.005447221,,,,,,,,,3.078591524,0.034182943,,,,,347.737675,,,,,0.744212606,41053,55163,0.670637559,0.817787653,59221,,,53519.7234,64922.2766,,,,97813,14090.61702,181535.383,,,,,,,59145,54993.85106,63296.14894,,,,,,0.470820535,1073,2279,,,,,,,,0.252815724,,59221,,,10.13024602,7,691,,,,,,,,,,,,,,,,,,,,,,,,,,23.02367385,20,79820,12.88617548,37.97404868,25.05637685,,,,,,,,,,,,,22.6708515,12.39436548,38.03783658,,,,18.79228264,15,79820,10.51789794,30.99501237,,,,,,,,,,,,,18.65224227,10.19735441,31.29529314,,,,14.41181769,16,111020,8.23759904,23.40388903,,,,,,,,,,,,,14.35228153,8.032863025,23.67190576,,,,,,1300,,,-888,,0.818454259,10378,12680,,,0.498,,,,,16.69585787,,,,,0.813017099,5896,7252,0.803016298,0.8230179,0.082236842,575,6992,0.067901724,0.09657196,0.82184225,5960,7252,0.805390091,0.83829441,16911,,,,,0.177340193,2999,16911,,,0.283543256,4795,16911,,,0.002779256,47,16911,,,0.016320738,276,16911,,,0.007332506,124,16911,,,0.000413932,7,16911,,,0.021228786,359,16911,,,0.938797233,15876,16911,,,0.003183719,51,16019,0,0.007393901,0.49648158,8396,16911,,,1,16623,16623,, -55,131,55131,WI,Washington County,2024,1,5663.581957,1464,377878,5175.225688,6151.938225,0,,,,2,,,,2,12527.99565,6253.930292,22416.04481,1,4214.171768,2358.639948,6950.63546,1,5592.424958,5089.15975,6095.690167,,,,,2,,0.107,,,0.088,0.13,2.956656779,,,2.254913087,3.761156383,4.479616644,,,3.584042182,5.445244186,0.062702945,560,8931,0.057675022,0.067730868,0,,,,0.081081081,0.045174178,0.116987984,0.195652174,0.129463937,0.261840411,0.081578947,0.054057312,0.109100583,0.058025153,0.052911879,0.063138426,,,,0.129770992,0.072223552,0.187318433,0.135,,,0.101,0.169,0.333,,,0.27,0.406,9.4,0.046143382,0.047,,,0.176,,,0.139,0.216,0.945130556,129257,136761,,,0.244835907,,,0.202768658,0.289450409,0.302325581,13,43,0.222432688,0.383807328,177.9,244,137175,,,4.200234111,122,29046,3.454902307,4.945565916,,,,,,,,,,10.42238069,6.274954012,16.27583849,3.333862518,2.65921931,4.127548649,,,,14.28571429,6.85055528,26.2719372,0.048107952,5337,110938,0.040959016,0.055256888,0.000583197,80,137175,,,1714.6875,0.000660915,91,137688,,,1513.054945,0.001372669,189,137688,,,728.5079365,2432,,,,,,,1127,,2415,0.56,,,,,,0.38,0.44,,0.56,0.59,,,,,,0.64,0.5,0.37,0.59,0.952027777,92678,97348,0.945225563,0.95882999,0.765538247,24129,31519,0.727994613,0.803081881,0.024387369,1862,76351,,,0.062,1745,,0.04293617,0.08106383,,,,,,,0.228426396,0,0.499454802,0.106135987,0.044570219,0.167701755,0.042440105,0.028181446,0.056698764,3.4427066,155180,45075,3.235164629,3.650248572,0.137920395,4023,29169,0.11381192,0.16202887,9.185347184,126,137175,,,90.96947893,619,680448,83.80298968,98.13596819,,,,,,,122.9050279,61.35374712,219.9110448,43.97150646,21.08604651,80.86516596,93.53272134,85.97256148,101.0928812,,,,8.9,,,,,0,,,,,0.076206991,4175,54785,0.066752483,0.085661499,0.069118054,0.05983611,0.078399998,0.005567217,0.002826893,0.008307542,0.003559368,0.001634705,0.005484032,0.81294837,59833,73600,0.79758532,0.82831142,,,,0.779644269,0.618680652,0.940607885,0.843400447,0.739074511,0.947726384,0.717796274,0.618267347,0.817325202,0.777656378,0.766700597,0.788612159,0.403,,73600,0.380019385,0.425980615,79.85633903,,,79.40857889,80.30409917,,,,,,,73.64617965,67.99591212,79.29644718,101.5941688,69.10020562,134.0881321,79.85974845,79.40341477,80.31608213,,,,273.9322462,1464,377878,258.9731136,288.8913787,,,,,,,441.5016384,273.2964727,674.882153,233.6878458,142.7426072,360.9119245,273.8686986,258.4218358,289.3155615,,,,31.80143494,41,128925,22.82125877,43.1422374,,,,,,,,,,,,,26.8528464,18.1175027,38.33410794,,,,4.092015041,37,9042,2.881156223,5.64030371,,,,,,,,,,,,,3.677371905,2.481107382,5.249677053,,,,,,,0.086,,,0.072,0.101,0.138,,,0.116,0.16,0.067,,,0.056,0.08,46.8,55,117467,,,0.047,6410,,,,0.046143382,6085.712191,131887,,,20.50510919,84,409654,16.35567814,25.38672045,,,,,,,,,,,,,20.665591,16.33529212,25.79159283,,,,0.312,,,0.292,0.329,0.053406414,4375,81919,0.045065988,0.061746839,0.034783746,1064,30589,0.025251831,0.044315661,0.000668177,92,137688,,,1496.608696,0.950969451,1525.355,1604,,,0.04694147,320,6817,0.023412224,0.070470715,3.399491484,,,,,,3.988522524,2.46487242,3.038734975,3.425146368,3.549031822,,,,,,3.943356395,2.072886422,3.044916043,3.593663247,0.044342884,,,,,3394.468286,,,,,0.800638987,55883,69798,0.767170017,0.834107957,90313,,,83884.91489,96741.08511,50938,36195.70213,65680.29787,99496,87084.25532,111907.7447,52073,34298.3617,69847.6383,57104,34186.89362,80021.10638,92766,90352.04255,95179.95745,,,,,,0.232421458,4350,18716,,,57.24309643,,,,,0.273537586,,90313,,,6.34188527,44,6938,,,1.581581117,15,948418,0.885198945,2.608577534,,,,,,,,,,,,,1.138459437,0.545935551,2.093667438,,,,13.27451153,93,680448,10.58827027,16.43474853,13.66746614,,,,,,,,,,,,,12.84315957,10.11894898,16.07512935,,,,9.111644093,62,680448,6.985845279,11.68071651,,,,,,,,,,,,,8.907878223,6.728915479,11.56762082,,,,7.38071188,70,948418,5.753626999,9.32508544,,,,,,,,,,,,,7.399986339,5.711153229,9.431890049,,,,5.76,,12500,,,72,,0.842331787,88070,104555,,,0.834,,,,,96.64855852,,,,,0.772668313,43485,56279,0.757427684,0.787908943,0.073066522,4053,55470,0.062944725,0.08318832,0.910428401,51238,56279,0.89808466,0.922772143,137688,,,,,0.206655627,28454,137688,,,0.199240311,27433,137688,,,0.016196037,2230,137688,,,0.004081692,562,137688,,,0.017641334,2429,137688,,,0.00036314,50,137688,,,0.036212306,4986,137688,,,0.914211841,125876,137688,,,0.003050608,397,130138,0.001747006,0.00435421,0.498925106,68696,137688,,,0.383588889,52460,136761,, -55,133,55133,WI,Waukesha County,2024,1,4973.202857,3940,1120452,4706.662283,5239.743431,0,,,,2,2548.685094,1664.885721,3734.414181,,9777.122824,7131.500478,13082.55958,,5126.548742,3951.678476,6301.419007,,4938.483738,4655.734764,5221.232711,,,,,2,,0.098,,,0.08,0.117,2.703438756,,,2.104457334,3.390032947,3.979897253,,,3.260281491,4.759798427,0.065074472,1752,26923,0.062128096,0.068020848,0,,,,0.076236264,0.062604984,0.089867544,0.126811594,0.09905156,0.154571628,0.077929465,0.065398643,0.090460287,0.061358624,0.058234574,0.064482674,,,,0.090909091,0.062192491,0.119625691,0.116,,,0.087,0.149,0.337,,,0.282,0.394,9.4,0.05125817,0.046,,,0.159,,,0.127,0.194,0.977421384,397789,406978,,,0.232156085,,,0.19494973,0.272681348,0.32038835,33,103,0.270193385,0.370999146,186.2,761,408756,,,3.571064177,315,88209,3.1766991,3.965429255,,,,,,,17.88908766,12.06969232,25.53778497,13.92175971,11.19309481,16.65042461,2.295830164,1.946575845,2.645084483,,,,5.15843773,2.820165909,8.65498199,0.040707997,13321,327233,0.03594204,0.045473955,0.001401814,573,408756,,,713.3612565,0.000984324,404,410434,,,1015.925743,0.002938353,1206,410434,,,340.3266998,2506,,,,,,1596,3752,4478,2469,0.57,,,,,,0.38,0.45,0.47,0.57,0.6,,,,,0.64,0.55,0.46,0.41,0.6,0.968483372,280712,289847,0.965343915,0.97162283,0.839476411,79396,94578,0.817155511,0.861797311,0.024954191,5570,223209,,,0.048,4040,,0.036085106,0.059914894,,,,0.0031477,0,0.018935352,0.341949381,0.230408396,0.453490365,0.153061225,0.103512095,0.202610354,0.042314309,0.033396349,0.05123227,3.961831071,183306,46268,3.820127379,4.103534764,0.124797652,10716,85867,0.111769246,0.137826059,10.96008377,448,408756,,,90.31949967,1827,2022819,86.17789806,94.46110128,,,,20.38346392,11.65091083,33.10146837,77.09642984,50.36194762,112.9641326,43.84173135,31.85546912,58.85547801,97.27182917,92.68543597,101.8582224,,,,9.4,,,,,1,,,,,0.112623608,17995,159780,0.105519998,0.119727218,0.100311018,0.093243281,0.107378754,0.011734886,0.00903266,0.014437111,0.005444987,0.003881048,0.007008926,0.790771586,170435,215530,0.782398421,0.799144752,0.812239221,0.729663706,0.894814737,0.713924607,0.656062853,0.771786361,0.82172319,0.783679859,0.859766521,0.778563597,0.75167461,0.805452583,0.80827593,0.803463775,0.813088084,0.306,,215530,0.294509693,0.317490307,80.67125118,,,80.41858636,80.92391601,,,,85.04978278,83.18293423,86.91663134,74.9632496,72.41457008,77.51192911,81.2396865,79.46274812,83.01662489,80.68918952,80.42585133,80.95252771,,,,245.917836,3940,1120452,237.7301672,254.1055049,,,,124.0261542,92.62866422,162.6438004,438.5054092,349.2671107,543.5934302,236.9755659,191.5524912,282.3986406,247.4396897,238.7422224,256.137157,,,,35.03845078,134,382437,29.10580296,40.97109859,,,,,,,135.7466063,70.14225236,237.1220028,50.80171456,29.03756931,82.49880171,30.75827236,24.88527911,37.60039294,,,,4.391024448,118,26873,3.59874038,5.183308517,,,,,,,,,,,,,3.841738055,3.077074695,4.738769698,,,,,,,0.078,,,0.065,0.091,0.127,,,0.108,0.149,0.067,,,0.056,0.079,49.7,174,349884,,,0.046,18710,,,,0.05125817,19985.09926,389891,,,22.31106547,272,1219126,19.65956365,24.96256729,,,,,,,,,,24.19081717,13.53941673,39.89907409,22.9756786,20.09866857,25.85268864,,,,0.286,,,0.269,0.303,0.045520963,10966,240900,0.039563516,0.05147841,0.028677496,2611,91047,0.02152856,0.035826432,0.001408265,578,410434,,,710.0934256,0.959080918,4930.635,5141,,,0.033420899,687,20556,0.021263042,0.045578756,3.404197471,,,,,,3.747217817,2.8029778,2.78741414,3.479380017,3.578771493,,,,,,4.067065815,2.628809597,2.767435738,3.684540832,0.104501072,,,,,4765.8865,,,,,0.741265981,61574,83066,0.713051756,0.769480206,99525,,,95154.61702,103895.383,91458,46525.74468,136390.2553,144576,126909.7872,162242.2128,60186,44758.59575,75613.40426,87932,82162.80851,93701.19149,101310,99280.89362,103339.1064,,,,,,0.176500367,10808,61235,,,60.19084161,,,,,0.318422507,,99525,,,8.288757168,172,20751,,,1.668008763,47,2817731,1.2255901,2.218098049,,,,,,,,,,,,,1.610407743,1.150498902,2.192918271,,,,11.85556484,262,2022819,10.34479181,13.36633787,12.95222163,,,,,,,,,,,,,12.78634883,11.09843397,14.47426369,,,,7.712009824,156,2022819,6.501798127,8.922221521,,,,,,,,,,,,,8.105985764,6.782008089,9.429963439,,,,5.820285897,164,2817731,4.929489472,6.711082322,,,,,,,,,,,,,5.877988263,4.924515354,6.831461172,,,,2.920110193,,36300,,,106,,0.871120935,267996,307645,,,0.83,,,,,203.2245205,,,,,0.766944423,127108,165733,0.757771402,0.776117443,0.104716441,17198,164234,0.097014496,0.112418387,0.927401302,153701,165733,0.922325374,0.93247723,410434,,,,,0.207053997,84982,410434,,,0.205709079,84430,410434,,,0.01875332,7697,410434,,,0.003354985,1377,410434,,,0.041799656,17156,410434,,,0.00058231,239,410434,,,0.054325421,22297,410434,,,0.866689894,355719,410434,,,0.007374483,2852,386739,0.005693859,0.009055106,0.502784857,206360,410434,,,0.152077016,61892,406978,, -55,135,55135,WI,Waupaca County,2024,1,7083.296335,808,139158,6220.365521,7946.227149,0,,,,2,,,,2,,,,2,,,,2,7316.438091,6394.375586,8238.500597,,,,,2,,0.133,,,0.11,0.159,3.482018821,,,2.710977486,4.310047816,4.843911528,,,3.871503672,5.862989239,0.058738426,203,3456,0.050898977,0.066577875,0,,,,,,,,,,0.056818182,0.022617,0.091019364,0.058451817,0.050278666,0.066624967,,,,,,,0.164,,,0.13,0.204,0.381,,,0.308,0.453,9,0.031322971,0.075,,,0.211,,,0.168,0.258,0.741681464,38428,51812,,,0.230320567,,,0.187377133,0.274561233,0.292682927,12,41,0.210744009,0.376863707,242.4,125,51570,,,11.58654335,114,9839,9.459592095,13.7134946,,,,,,,,,,29.20962199,17.01568122,46.76743439,10.34056424,8.335954228,12.68178409,,,,,,,0.065126311,2627,40337,0.056785885,0.073466736,0.000581734,30,51570,,,1719,0.000369018,19,51488,,,2709.894737,0.001126476,58,51488,,,887.7241379,1335,,,,,,,,,1314,0.53,,,,,,,,,0.53,0.47,,,,,,,,0.24,0.47,0.928192618,35004,37712,0.918945807,0.937439428,0.584620666,6812,11652,0.537517234,0.631724098,0.029819888,750,25151,,,0.123,1229,,0.077723404,0.168276596,,,,,,,0.041958042,0,0.306904603,0.137880987,0.021436239,0.254325735,0.099336258,0.074244714,0.124427802,3.826440743,119913,31338,3.379049411,4.273832074,0.169581092,1765,10408,0.133963583,0.2051986,15.51289509,80,51570,,,95.07897816,243,255577,83.12431234,107.033644,,,,,,,,,,,,,99.04039017,86.45751363,111.6232667,,,,7.8,,,,,0,,,,,0.110740494,2490,22485,0.094145155,0.127335832,0.095235965,0.079032039,0.111439891,0.00933956,0.006329088,0.012350032,0.007560596,0.002313709,0.012807483,0.824854339,21094,25573,0.808999955,0.840708722,,,,,,,,,,0.714084507,0.617724097,0.810444917,0.797930015,0.785631873,0.810228157,0.373,,25573,0.34183851,0.40416149,76.65020864,,,75.95133122,77.34908607,,,,,,,,,,83.15335463,68.07608789,98.23062138,76.48340515,75.74922097,77.21758933,,,,371.9746011,808,139158,344.3156797,399.6335226,,,,,,,,,,,,,377.870593,349.1318732,406.6093128,,,,39.60483179,18,45449,23.47233334,62.5927089,,,,,,,,,,,,,42.09900696,24.52422295,67.40458834,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.101,,,0.086,0.119,0.15,,,0.128,0.174,0.078,,,0.065,0.091,33.8,15,44359,,,0.075,3890,,,,0.031322971,1641.636932,52410,,,11.09486765,17,153224,6.463169262,17.76395788,,,,,,,,,,,,,11.81704435,6.883863805,18.92023274,,,,0.313,,,0.295,0.33,0.073382588,2205,30048,0.062659184,0.084105992,0.042592422,462,10847,0.030677528,0.054507316,0.001029366,53,51488,,,971.4716981,0.917420635,577.975,630,,,0.034923339,82,2348,0.012648876,0.057197802,3.120036611,,,,,,,,2.857451721,3.14410052,3.163257796,,,,,,,,2.65244687,3.210088611,0.047319787,,,,,1929.234417,,,,,0.7500763,44238,58978,0.707496794,0.792655805,65960,,,59937.02128,71982.97872,133750,25522.25532,241977.7447,,,,,,,56538,34743.2766,78332.7234,70068,66140.85106,73995.14894,,,,,,0.431569223,3270,7577,,,73.76289461,,,,,0.255351728,,65960,,,7.03125,18,2560,,,,,,,,,,,,,,,,,,,,,,,,,,20.85945574,52,255577,15.32674348,27.73865409,20.34611878,,,,,,,,,,,,,21.82440543,15.91887108,29.20277155,,,,14.47704606,37,255577,10.19317645,19.95470099,,,,,,,,,,,,,15.39703545,10.84093388,21.22278518,,,,19.21711159,69,359055,14.95205987,24.32048463,,,,,,,,,,,,,19.51271431,15.09113183,24.82495689,,,,14.65116279,,4300,,,63,,0.727977009,29130,40015,,,0.709,,,,,70.99840123,,,,,0.761619325,17026,22355,0.743074815,0.780163835,0.096027252,2086,21723,0.081308952,0.110745552,0.849519123,18991,22355,0.834687534,0.864350712,51488,,,,,0.199036669,10248,51488,,,0.213253574,10980,51488,,,0.004913766,253,51488,,,0.008293195,427,51488,,,0.006253884,322,51488,,,0.00029133,15,51488,,,0.036571628,1883,51488,,,0.936179304,48202,51488,,,0.004369297,215,49207,0.001478926,0.007259669,0.489861715,25222,51488,,,0.636416274,32974,51812,, -55,137,55137,WI,Waushara County,2024,1,7098.900743,432,66155,5803.578629,8394.222857,0,,,,2,,,,2,,,,2,,,,2,7450.660203,5975.117491,8926.202915,,,,,2,,0.144,,,0.122,0.169,3.549124043,,,2.776838564,4.460803953,4.6144843,,,3.674930673,5.698130134,0.064213564,89,1386,0.051308023,0.077119105,0,,,,,,,,,,0.094674556,0.050534618,0.138814495,0.061381074,0.0476448,0.075117349,,,,,,,0.177,,,0.142,0.218,0.36,,,0.287,0.441,8.7,0.050160936,0.078,,,0.222,,,0.179,0.267,0.30954323,7590,24520,,,0.214198911,,,0.174092878,0.259722789,0.517241379,15,29,0.432267119,0.594019435,165.1,41,24828,,,14.21580051,61,4291,10.87396098,18.26079047,,,,,,,,,,16.56626506,8.26981983,29.64162427,14.55604076,10.80377401,19.19032508,,,,,,,0.084380199,1471,17433,0.072465305,0.096295092,0.00028194,7,24828,,,3546.857143,0.000680027,17,24999,,,1470.529412,0.001440058,36,24999,,,694.4166667,1912,,,,,,,,,1905,0.53,,,,,,,,,0.53,0.49,,,,,,,,0.24,0.49,0.891735758,16671,18695,0.87918936,0.904282157,0.479887369,2386,4972,0.438454303,0.521320436,0.034111473,377,11052,,,0.198,863,,0.142,0.254,0.725806452,0.271084749,1,,,,,,,0.315789474,0.224698875,0.406880073,0.135119887,0.104676489,0.165563285,3.955263343,112195,28366,3.636033036,4.274493651,0.181777379,810,4456,0.14565815,0.217896608,14.9025294,37,24828,,,94.90382806,116,122229,77.63309358,112.1745625,,,,,,,,,,,,,101.7079607,82.78672358,120.6291978,,,,7.8,,,,,1,,,,,0.107409249,1080,10055,0.093572333,0.121246166,0.097079557,0.082983339,0.111175775,0.010939831,0.006000157,0.015879505,0.005967181,0.003122187,0.008812174,0.81091802,8586,10588,0.787711599,0.834124442,,,,,,,,,,0.742203742,0.608028054,0.87637943,0.765524793,0.734990206,0.79605938,0.437,,10588,0.403510882,0.470489118,78.21782905,,,77.10147203,79.33418606,,,,,,,,,,,,,77.89873328,76.67409,79.12337656,,,,371.1516869,432,66155,331.3697412,410.9336325,,,,,,,,,,,,,378.29622,335.4208569,421.171583,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.106,,,0.09,0.122,0.151,,,0.13,0.173,0.083,,,0.07,0.097,87.5,19,21727,,,0.078,1930,,,,0.050160936,1228.742291,24496,,,,,,,,,,,,,,,,,,,,,,,,,,0.312,,,0.296,0.326,0.089813464,1170,13027,0.076707081,0.102919847,0.068802408,320,4651,0.048547089,0.089057727,0.000480019,12,24999,,,2083.25,0.935993976,155.375,166,,,0.09295499,95,1022,0.043857962,0.142052018,3.049622683,,,,,,,,2.598645164,3.149555984,2.968915419,,,,,,,,2.621382837,3.032366988,0.049013356,,,,,-1385.188403,,,,,0.777489751,42290,54393,0.733920356,0.821059145,55982,,,50800.21277,61163.78723,,,,83125,55240.57447,111009.4255,46983,16026.91489,77939.08511,49348,39567.06383,59128.93617,61353,57570.02128,65135.97872,,,,,,0.489716725,1262,2577,,,58.81102937,,,,,0.392251081,,55982,,,4.440497336,5,1126,,,,,,,,,,,,,,,,,,,,,,,,,,19.11802072,26,122229,11.83435614,29.22392548,21.27154767,,,,,,,,,,,,,21.77601092,13.30135319,33.63128272,,,,14.72645608,18,122229,8.727831186,23.27414956,,,,,,,,,,,,,16.49318282,9.774905421,26.06633949,,,,19.36346993,33,170424,13.32892173,27.19351105,,,,,,,,,,,,,18.37861255,12.21245457,26.56221222,,,,12.94117647,,1700,,,22,,0.693306081,13568,19570,,,0.552,,,,,15.2557579,,,,,0.828804883,8419,10158,0.816728715,0.840881051,0.114735772,1129,9840,0.097320499,0.132151046,0.818960425,8319,10158,0.805386063,0.832534788,24999,,,,,0.177087084,4427,24999,,,0.261930477,6548,24999,,,0.019880795,497,24999,,,0.008560342,214,24999,,,0.006120245,153,24999,,,0.000840034,21,24999,,,0.06600264,1650,24999,,,0.88975559,22243,24999,,,0.008019008,189,23569,0.003776462,0.012261554,0.467898716,11697,24999,,,0.996451876,24433,24520,, -55,139,55139,WI,Winnebago County,2024,1,6924.767186,2046,478480,6453.981544,7395.552828,0,,,,2,7423.536759,5043.933062,10537.11786,,14327.6941,10732.42607,18740.97665,,5754.177683,4030.155307,7966.207377,,6775.286757,6271.250595,7279.32292,,,,,2,,0.126,,,0.106,0.151,3.239726748,,,2.557375667,4.029076101,4.861300052,,,4.015533966,5.803116707,0.072992701,900,12330,0.068401188,0.077584214,0,,,,0.084770115,0.064076425,0.105463805,0.145194274,0.113968724,0.176419824,0.068640646,0.05045993,0.086821362,0.069444444,0.064481771,0.074407118,,,,,,,0.15,,,0.117,0.188,0.376,,,0.313,0.438,8.4,0.080546282,0.075,,,0.2,,,0.163,0.244,0.894060444,153537,171730,,,0.238127953,,,0.199195634,0.279541481,0.37037037,20,54,0.301148264,0.438392409,428.8,736,171623,,,10.24173507,408,39837,9.247933847,11.23553629,,,,7.513661202,3.750792601,13.44401538,44.80874317,32.15552773,60.78811974,23.72262774,18.30862326,30.23643643,7.931282174,6.976341184,8.886223164,,,,18.24817518,11.14645948,28.18282655,0.053987775,7375,136605,0.046838839,0.061136711,0.000786608,135,171623,,,1271.281482,0.000656053,112,170718,,,1524.267857,0.002770651,473,170718,,,360.9260042,1770,,,,,,,729,,1785,0.54,,,,,,0.23,0.6,0.32,0.55,0.57,,,,,0.48,0.42,0.29,0.37,0.57,0.942370137,109412,116103,0.93597558,0.948764694,0.691363106,30234,43731,0.660783315,0.721942897,0.025478605,2349,92195,,,0.138,4606,,0.108212766,0.167787234,0.018348624,0,0.362523673,0.238566131,0.100237366,0.376894896,0.578713969,0.430796851,0.726631087,0.282959327,0.176173157,0.389745497,0.085364922,0.070250375,0.100479469,3.836761044,124806,32529,3.629999572,4.043522516,0.224891837,7797,34670,0.195925129,0.253858546,11.42038072,196,171623,,,78.45014272,672,856595,72.518634,84.38165143,,,,38.1083038,18.27441293,70.0825275,119.0181007,76.25714285,177.0894996,69.7013565,45.53124019,102.1286368,80.60147021,74.18930521,87.01363522,,,,8.6,,,,,0,,,,,0.109377197,7780,71130,0.097292428,0.121461966,0.09453587,0.083467489,0.10560425,0.01230142,0.008331735,0.016271105,0.005623506,0.003142907,0.008104105,0.797255532,70939,88979,0.78486916,0.809641904,,,,0.632900795,0.528326448,0.737475142,0.72038835,0.614157784,0.826618915,0.77701036,0.713096984,0.840923737,0.829032984,0.823996814,0.834069155,0.179,,88979,0.166390462,0.191609538,78.42640335,,,78.00531831,78.84748839,,,,78.41178762,74.55102699,82.27254824,71.29156961,66.91044081,75.67269841,80.92985496,75.69834848,86.16136144,78.5517757,78.10975526,78.99379613,,,,335.229536,2046,478480,320.0933873,350.3656848,,,,390.6387562,275.0457347,538.4440681,761.9350249,563.683726,1007.31851,373.7795029,265.7937658,510.9688851,329.2530122,313.4859231,345.0201012,,,,54.73419706,88,160777,43.89842656,67.43406162,,,,,,,,,,78.41907152,37.60499291,144.2154646,49.01236201,37.6624447,62.70810204,,,,5.770294838,73,12651,4.522990034,7.255279439,,,,,,,,,,,,,4.611393986,3.400077896,6.114039407,,,,,,,0.098,,,0.083,0.114,0.146,,,0.124,0.168,0.076,,,0.064,0.089,94.4,139,147227,,,0.075,12850,,,,0.080546282,13450.74582,166994,,,19.41140731,100,515161,15.60677148,23.21604314,,,,,,,,,,,,,19.08879843,15.26857479,23.57451077,,,,0.313,,,0.297,0.33,0.062233188,6356,102132,0.052701274,0.071765103,0.031193927,1130,36225,0.022853501,0.039534352,0.001563983,267,170718,,,639.3932584,0.94126189,1484.37,1577,,,0.033927238,318,9373,0.013662416,0.05419206,3.032862525,,,,,,2.896666654,2.362098783,2.631398982,3.146833997,3.095814249,,,,,,2.927537821,2.281136727,2.647891243,3.226984967,0.081380602,,,,,3115.737,,,,,0.783054877,46775,59734,0.752290558,0.813819195,69887,,,66347.08511,73426.91489,73352,46771.06383,99932.93617,56689,37276.06383,76101.93617,33250,14407.78723,52092.21277,58063,51605.12766,64520.87234,71223,69749.12766,72696.87234,,,,,,0.376106398,8201,21805,,,60.81953958,,,,,0.410605692,,69887,,,6.688963211,62,9269,,,2.424694426,29,1196027,1.623855911,3.482265654,,,,,,,,,,,,,1.704992692,1.010486726,2.69462352,,,,15.16883183,133,856595,12.52060382,17.81705983,15.52659075,,,,,,,,,,,,,15.35008263,12.5078769,18.19228835,,,,9.339302704,80,856595,7.405486209,11.62357065,,,,,,,,,,,,,8.498342823,6.544759516,10.85219406,,,,7.524913735,90,1196027,6.050919263,9.249396526,,,,,,,,,,,,,7.483023483,5.92438016,9.326079963,,,,22.39130435,,13800,,,309,,0.70483472,94032,133410,,,0.789,,,,,246.7364963,,,,,0.660105917,47490,71943,0.646940814,0.67327102,0.090175444,6358,70507,0.080950817,0.09940007,0.886312775,63764,71943,0.875652053,0.896973498,170718,,,,,0.198971403,33968,170718,,,0.176946778,30208,170718,,,0.026669713,4553,170718,,,0.007954639,1358,170718,,,0.034050305,5813,170718,,,0.000656053,112,170718,,,0.04721822,8061,170718,,,0.867289917,148062,170718,,,0.007681306,1246,162212,0.005664836,0.009697776,0.492355815,84054,170718,,,0.174139638,29905,171730,, -55,141,55141,WI,Wood County,2024,1,7754.689402,1098,199168,6977.656178,8531.722625,0,,,,2,,,,2,,,,2,,,,2,7590.844881,6782.892198,8398.797564,,,,,2,,0.136,,,0.113,0.161,3.31360457,,,2.626379616,4.115916108,4.306157054,,,3.505496411,5.22055812,0.071535022,384,5368,0.064640694,0.07842935,0,,,,0.06122449,0.027660661,0.094788319,,,,0.048689139,0.022873807,0.074504471,0.072989603,0.065563172,0.080416034,,,,,,,0.158,,,0.124,0.195,0.35,,,0.29,0.412,8.4,0.068979314,0.084,,,0.217,,,0.177,0.263,0.772501247,57325,74207,,,0.201397817,,,0.166068061,0.240667176,0.294117647,15,51,0.221089177,0.368950926,240.3,178,74070,,,14.73142937,212,14391,12.74838227,16.71447646,,,,,,,,,,30,19.22156607,44.63762199,12.6471524,10.68130293,14.61300188,,,,,,,0.059646882,3456,57941,0.051306457,0.067987308,0.001377076,102,74070,,,726.1764706,0.000878462,65,73993,,,1138.353846,0.001838012,136,73993,,,544.0661765,2433,,,,,5424,,,,2414,0.56,,,,,0.4,0.43,,,0.57,0.36,,,,,0.27,0.23,0.22,0.17,0.37,0.932650903,49382,52948,0.92303146,0.942270346,0.638493175,10712,16777,0.594805329,0.682181021,0.033303438,1114,33450,,,0.13,2007,,0.088297872,0.171702128,0.3,0.103258781,0.496741219,0.054631829,0,0.188323834,0.10880829,0,0.369257177,0.19982238,0.100765904,0.298878856,0.109800015,0.086611567,0.132988464,3.958011967,114438,28913,3.734207188,4.181816746,0.174751791,2781,15914,0.139056917,0.210446665,14.04077224,104,74070,,,98.95847571,362,365810,88.76423737,109.1527141,,,,,,,,,,,,,101.3469334,90.58997491,112.103892,,,,7.9,,,,,1,,,,,0.099984712,3270,32705,0.087081984,0.11288744,0.086292066,0.072869878,0.099714253,0.0084085,0.005231109,0.011585892,0.01589971,0.011181895,0.020617524,0.803155886,28198,35109,0.782692538,0.823619234,,,,0.541589649,0.28897645,0.794202848,,,,0.746947836,0.604209739,0.889685932,0.822588422,0.809006267,0.836170577,0.242,,35109,0.220094735,0.263905265,77.34426072,,,76.71033581,77.97818562,,,,,,,,,,79.60332054,72.58041028,86.62623079,77.44206479,76.78786292,78.09626667,,,,378.09465,1098,199168,353.8505869,402.3387131,,,,,,,,,,,,,373.9357876,349.0748624,398.7967128,,,,46.40976926,32,68951,31.74424782,65.51674679,,,,,,,,,,,,,45.99737645,30.31256092,66.92376777,,,,6.836991724,38,5558,4.838262261,9.384305311,,,,,,,,,,,,,6.335581443,4.304720208,8.992852136,,,,,,,0.1,,,0.085,0.117,0.145,,,0.124,0.168,0.078,,,0.066,0.092,70,44,62879,,,0.084,6250,,,,0.068979314,5156.134755,74749,,,19.57847097,43,219629,14.16903652,26.37207191,,,,,,,,,,,,,18.85238582,13.34107024,25.87637246,,,,0.319,,,0.303,0.334,0.068363274,2877,42084,0.058831359,0.077895188,0.037635054,627,16660,0.02691165,0.048358458,0.002189396,162,73993,,,456.7469136,0.925273523,845.7,914,,,0.053839095,176,3269,0.022440009,0.08523818,3.069318536,,,,,,2.772691715,,2.4704686,3.146228387,2.957565552,,,,,,2.73173394,,2.121219786,3.05238624,0.054192541,,,,,3073.050167,,,,,0.773903602,43481,56184,0.734113243,0.813693962,64408,,,59555.06383,69260.93617,58538,55925.06383,61150.93617,90298,54098.17021,126497.8298,,,,48382,6091.276596,90672.7234,63548,61156.68085,65939.31915,,,,,,0.450505051,5129,11385,,,65.44316122,,,,,0.358371631,,64408,,,8.460236887,35,4137,,,2.146961464,11,512352,1.071755427,3.841507111,,,,,,,,,,,,,2.117414891,1.015382743,3.894001373,,,,16.54259546,58,365810,12.39153917,21.63812216,15.85522539,,,,,,,,,,,,,16.67571573,12.29535638,22.10957975,,,,9.29444247,34,365810,6.436671601,12.98805175,,,,,,,,,,,,,10.10497284,6.997987442,14.12068669,,,,12.68659047,65,512352,9.791242687,16.17010099,,,,,,,,,,,,,13.12797232,10.0651411,16.82946804,,,,7.03125,,6400,,,45,,0.733469497,41298,56305,,,0.778,,,,,149.2457395,,,,,0.730297613,23287,31887,0.712193211,0.748402016,0.086856117,2708,31178,0.072978796,0.100733437,0.86910026,27713,31887,0.851901393,0.886299128,73993,,,,,0.212790399,15745,73993,,,0.223156245,16512,73993,,,0.008852189,655,73993,,,0.009365751,693,73993,,,0.020231644,1497,73993,,,0.000324355,24,73993,,,0.036125039,2673,73993,,,0.915640669,67751,73993,,,0.004966604,348,70068,,,0.502209669,37160,73993,,,0.354777851,26327,74207,, -56,000,56000,WY,Wyoming,2024,,8747.324483,8703,1623448,8466.051624,9028.597343,0,30712.37902,27178.67302,34246.08501,,2231.240385,1343.352467,3484.35825,1,12063.2439,8990.9774,15135.5104,,7840.154907,7047.354195,8632.955619,,8403.693719,8097.116982,8710.270456,,,,,2,,0.129,,,0.116,0.144,3.462278115,,,3.116093389,3.808462841,4.892755739,,,4.446985792,5.338525686,0.092528322,4239,45813,0.089874843,0.0951818,0,0.083083832,0.068283348,0.097884316,0.11328125,0.085828045,0.140734455,0.141333333,0.106073923,0.176592743,0.092511753,0.085153111,0.099870395,0.092603492,0.089595602,0.095611382,,,,0.093617021,0.07499506,0.112238983,0.171,,,0.153,0.19,0.322,,,0.3,0.345,7.1,0.079555542,0.106,,,0.222,,,0.203,0.242,0.778618742,449147,576851,,,0.194002695,,,0.175031411,0.2144956,0.323624596,200,618,0.30380877,0.343533408,359,2078,578803,,,20.06571039,2504,124790,19.27976305,20.85165773,46.00886918,39.00974681,53.00799155,,,,14.01179941,8.436018558,21.88116045,29.01759702,26.46899017,31.56620386,17.22327028,16.40186619,18.04467438,,,,21.67369055,16.95832802,27.29442626,0.153421223,71349,465053,0.141506329,0.165336117,0.000697992,404,578803,,,1432.680693,0.000710378,413,581381,,,1407.702179,0.003835695,2230,581381,,,260.7089686,2215,,,,,5105,,2213,2177,2171,0.37,,,,,0.24,0.36,0.27,0.3,0.38,0.4,,,,,0.32,0.47,0.27,0.36,0.4,0.939461769,368083,391802,0.935661681,0.943261857,0.679109457,101789,149886,0.660180655,0.698038258,0.035693966,10414,291758,,,0.132,16818,,0.115319149,0.148680851,0.289918256,0.22894041,0.350896102,0.161399549,0.031991793,0.290807304,0.415219189,0.240149376,0.590289003,0.198188495,0.168069306,0.228307683,0.104593509,0.093818964,0.115368054,4.291632146,134680,31382,4.148562783,4.434701508,0.176768979,23313,131884,0.162292171,0.191245787,13.82162843,800,578803,,,97.58566102,2827,2896942,93.98834016,101.1829819,252.4962699,212.6166806,292.3758593,,,,78.88675018,51.05134533,116.4524051,62.76913109,53.74831734,71.78994483,100.3586181,96.37076006,104.3464761,,,,3.6,,,,,0.565217391,,,,,0.120889251,28195,233230,0.114616653,0.127161849,0.096966414,0.090955337,0.102977491,0.020151782,0.017263715,0.023039848,0.010354586,0.008459978,0.012249193,0.764351356,217500,284555,0.756297796,0.772404916,0.762965964,0.694327584,0.831604345,0.71251932,0.60626548,0.81877316,0.729956123,0.62337212,0.836540126,0.730141421,0.702645305,0.757637537,0.770474222,0.76233924,0.778609205,0.156,,284555,0.147574898,0.164425102,76.81105481,,,76.56981515,77.05229446,61.68273469,59.90197048,63.4634989,83.37279547,81.03892442,85.70666651,74.83560472,71.58711144,78.084098,77.79334436,76.87372776,78.71296096,77.0442624,76.78462752,77.30389727,,,,413.3131411,8703,1623448,404.1788423,422.4474399,1255.012873,1133.08455,1376.941195,169.3455565,114.2567359,241.7513118,546.7366735,439.7651191,653.7082278,400.0054438,366.9207627,433.0901249,400.4467235,390.7867349,410.106712,,,,57.46310531,340,591684,51.35501141,63.5711992,113.2840448,68.20439521,176.9070688,,,,,,,50.38516661,36.75128626,67.41931711,58.32816084,51.30534278,65.35097889,,,,5.3001304,252,47546,4.645731809,5.954528991,,,,,,,,,,5.587510271,3.869513293,7.807985554,5.323725532,4.582177762,6.065273303,,,,,,,0.107408798,,,0.094404026,0.121963788,0.159283306,,,0.141520834,0.178810813,0.076,,,0.067,0.085,77.5,377,486674,,,0.106,61200,,,,0.079555542,44839.57166,563626,,,16.49529568,287,1739890,14.58687011,18.40372125,62.9567788,39.90919727,94.4660797,,,,,,,16.11334908,10.79136277,23.14145711,15.48000396,13.45728345,17.50272448,,,,0.330533972,,,0.30924661,0.352538811,0.169954159,56910,334855,0.155656287,0.184252032,0.115163949,15717,136475,0.09610012,0.134227779,0.001338193,778,581381,,,747.2763496,0.823673498,5908.21,7173,,,0.063198003,1924,30444,0.050462161,0.075933845,3.237046697,,,,,,3.344148179,3.048418058,2.958198429,3.321359757,3.263170002,,,,,,3.320628526,2.897434062,2.993056208,3.355415672,0.157535515,,,,,8378.29,,,,,0.700700654,44903,64083,0.676228995,0.725172313,71275,,,68380.87234,74169.12766,57667,42445.7234,72888.2766,64398,44645.48936,84150.51064,56046,32377.06383,79714.93617,62695,55720.02128,69669.97872,74160,72593.19149,75726.80851,,,,,,0.283266303,26201,92496,,,69.37097793,,,,,0.211753065,,,,,9.74025974,,,,,3.441029359,140,4068550,2.871022041,4.011036678,18.65845695,10.6649203,30.30016512,,,,,,,3.148126623,1.67624484,5.383392401,3.080312549,2.49112141,3.669503688,,,,28.87821669,846,2896942,26.8776785,30.87875489,29.20320807,41.81104795,26.50461781,62.73710096,,,,,,,11.27198382,7.658766127,15.99968128,30.85473798,28.59697111,33.11250484,,,,23.43850861,679,2896942,21.67551329,25.20150392,31.1521372,18.75562159,48.64792112,,,,,,,8.774179614,5.731585432,12.85620607,25.57432931,23.56123334,27.58742529,,,,17.42635583,709,4068550,16.14361319,18.70909847,68.80305999,52.37607709,88.75093451,,,,,,,15.49846953,11.93571006,19.79119958,16.78036932,15.40518924,18.15554939,,,,7.688603531,,62300,,,479,,0.639714716,278503,435355,,,,,,,,59.81922726,,,,,0.719148773,168393,234156,0.710358918,0.727938627,0.106138628,23992,226044,0.099659152,0.112618104,0.881890705,206500,234156,0.874549031,0.88923238,581381,,,,,0.223801603,130114,581381,,,0.185866067,108059,581381,,,0.010327135,6004,581381,,,0.027990251,16273,581381,,,0.011190596,6506,581381,,,0.001078467,627,581381,,,0.108032426,62808,581381,,,0.830723742,482967,581381,,,0.006112191,3332,545140,0.004994296,0.007230087,0.487506472,283427,581381,,,0.379822519,219101,576851,, -56,001,56001,WY,Albany County,2024,1,6314.943242,360,110227,5348.259906,7281.626579,0,,,,2,,,,2,,,,2,5219.68275,3093.514804,8249.349086,1,6281.829893,5217.868757,7345.791028,,,,,2,,0.133,,,0.111,0.16,3.378882677,,,2.694406831,4.144838829,4.962991082,,,4.125627706,5.857702926,0.0990058,239,2414,0.087091219,0.11092038,0,,,,0.141176471,0.067151246,0.215201696,,,,0.097472924,0.062543751,0.132402097,0.093963255,0.080860563,0.107065946,,,,,,,0.149,,,0.114,0.192,0.29,,,0.239,0.343,7.3,0.092184036,0.123,,,0.185,,,0.152,0.226,0.93511574,34661,37066,,,0.223101987,,,0.184679158,0.264538484,0.324324324,12,37,0.238012991,0.411014485,398.9,150,37608,,,6.245052335,71,11369,4.877437686,7.877283764,,,,,,,,,,10.09251472,5.214949629,17.62959214,5.557336753,4.150484899,7.287707785,,,,,,,0.131378412,4086,31101,0.111123093,0.151633731,0.000797703,30,37608,,,1253.6,0.000499592,19,38031,,,2001.631579,0.006231758,237,38031,,,160.4683544,1462,,,,,,,,,1511,0.38,,,,,,,,0.31,0.39,0.48,,,,,,0.5,0.46,0.43,0.48,0.965594048,20375,21101,0.957437969,0.973750126,0.862970609,8779,10173,0.789764315,0.936176902,0.031197064,663,21252,,,0.13,734,,0.081148936,0.178851064,,,,0.218446602,0,0.569731644,,,,0.18171926,0.075365719,0.288072801,0.206333973,0.121451546,0.2912164,5.612351922,119863,21357,4.595238782,6.629465062,0.185577759,1068,5755,0.123432668,0.247722849,12.23144012,46,37608,,,68.09758228,131,192371,56.43614404,79.75902052,,,,,,,,,,63.5997456,32.86291663,111.0959564,70.79153788,57.68076159,83.90231418,,,,3.7,,,,,0,,,,,0.227145956,3665,16135,0.190842586,0.263449326,0.206947983,0.172919207,0.24097676,0.010474125,0.002347055,0.018601194,0.014564611,0.0072399,0.021889322,0.68743601,14100,20511,0.655989836,0.718882184,,,,0.648989899,0.466818668,0.83116113,,,,0.819415449,0.731915263,0.906915635,0.673026676,0.634142231,0.71191112,0.097,,20511,0.072292751,0.121707249,79.35962215,,,78.35571795,80.36352635,,,,,,,,,,83.53484695,77.67330788,89.39638603,79.2643843,78.20390231,80.32486629,,,,326.4060567,360,110227,291.0681143,361.7439992,,,,,,,,,,309.6942176,205.7895585,447.5943716,328.6003297,289.9947069,367.2059524,,,,53.15379164,18,33864,31.50230564,84.00590677,,,,,,,,,,,,,53.21777474,29.09465266,89.29038325,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.104,,,0.088,0.121,0.154,,,0.131,0.179,0.088,,,0.074,0.103,42,14,33317,,,0.123,4580,,,,0.092184036,3346.188338,36299,,,10.39519049,12,115438,5.371346618,18.1583058,,,,,,,,,,,,,,,,,,,0.299,,,0.283,0.316,0.142409208,3588,25195,0.118579421,0.166238995,0.091200513,569,6239,0.062604768,0.119796258,0.001498777,57,38031,,,667.2105263,0.86,247.68,288,,,,,,,,3.5195145,,,,,,,,3.140658089,3.582919259,3.576589182,,,,,,,,3.253562218,3.641669667,0.031379435,,,,,9584.059,,,,,0.828370687,46571,56220,0.76689281,0.889848564,53537,,,48408.82979,58665.17021,42537,20377.68085,64696.31915,52731,18713.97872,86748.02128,23924,9073.276596,38774.7234,37804,23534.7234,52073.2766,59991,53969.21277,66012.78723,,,,,,0.164982314,653,3958,,,50.46510347,,,,,0.299923417,,53537,,,6.478209658,11,1698,,,,,,,,,,,,,,,,,,,,,,,,,,25.51832832,45,192371,18.14602601,34.88439486,23.39229926,,,,,,,,,,,,,26.3012184,18.21435832,36.75331648,,,,17.67418166,34,192371,12.23988459,24.69789734,,,,,,,,,,,,,20.22615368,13.83467415,28.55329407,,,,9.680433981,26,268583,6.323580873,14.1840787,,,,,,,,,,,,,9.029345373,5.515358729,13.9450916,,,,7.777777778,,2700,,,21,,0.608176509,18744,30820,,,0.61,,,,,122.169516,,,,,0.505524862,8235,16290,0.479539323,0.531510401,0.20106356,3176,15796,0.166384912,0.235742209,0.902271332,14698,16290,0.879947871,0.924594793,38031,,,,,0.152007573,5781,38031,,,0.132917883,5055,38031,,,0.012936815,492,38031,,,0.012200573,464,38031,,,0.035707712,1358,38031,,,0.001472483,56,38031,,,0.099708133,3792,38031,,,0.822223975,31270,38031,,,0.002757891,99,35897,0,0.006171484,0.478662144,18204,38031,,,0.129633627,4805,37066,, -56,003,56003,WY,Big Horn County,2024,1,9697.314097,212,31808,7606.539966,11788.08823,0,,,,2,,,,2,,,,2,,,,2,10455.06074,8075.363051,12834.75844,,,,,2,,0.147,,,0.122,0.176,3.501932918,,,2.715489264,4.376907524,4.585187362,,,3.628628392,5.6358049,0.059350504,53,893,0.043853189,0.074847819,0,,,,,,,,,,,,,0.056833559,0.040140711,0.073526407,,,,,,,0.184,,,0.145,0.227,0.333,,,0.269,0.402,8,0.056659291,0.106,,,0.238,,,0.193,0.286,0.611578856,7046,11521,,,0.166890145,,,0.132609273,0.205205599,0.272727273,3,11,0.11266692,0.445445377,171.9,20,11632,,,12.05246367,34,2821,8.346681455,16.84210992,,,,,,,,,,25.83979328,12.39118526,47.52029985,10.27837259,6.585547261,15.29340368,,,,,,,0.207388563,1875,9041,0.181175797,0.233601329,0.000343879,4,11632,,,2908,0.000421763,5,11855,,,2371,0.00194011,23,11855,,,515.4347826,2671,,,,,,,,,2656,0.32,,,,,,,,0.42,0.31,0.23,,,,,,,,0.2,0.23,0.881317576,7010,7954,0.852496596,0.910138556,0.600616808,1558,2594,0.520057415,0.681176201,0.041243046,215,5213,,,0.168,470,,0.113191489,0.222808511,,,,,,,,,,0.250591017,0.120791186,0.380390848,0.150109409,0.092259047,0.207959771,4.169959305,112714,27030,3.246959925,5.092958684,0.148862853,432,2902,0.08730763,0.210418076,11.17606603,13,11632,,,129.2868808,76,58784,101.8633572,161.8218103,,,,,,,,,,,,,136.1020376,106.0982153,171.9567367,,,,3.6,,,,,1,,,,,0.085034014,375,4410,0.060920683,0.109147344,0.061471664,0.038534203,0.084409124,0.02154195,0.006848928,0.036234972,0.003174603,0,0.00744381,0.776705012,3781,4868,0.738286274,0.815123751,,,,,,,,,,,,,0.820341328,0.771049705,0.869632952,0.207,,4868,0.158265318,0.255734682,75.05588948,,,73.44604028,76.66573867,,,,,,,,,,,,,74.46096928,72.6830125,76.23892605,,,,475.908309,212,31808,405.8891093,545.9275086,,,,,,,,,,,,,491.7705209,415.216185,568.3248569,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.11,,,0.093,0.128,0.159,,,0.136,0.183,0.089,,,0.075,0.103,51.4,5,9723,,,0.106,1240,,,,0.056659291,661.1006082,11668,,,,,,,,,,,,,,,,,,,,,,,,,,0.295,,,0.279,0.31,0.232885477,1456,6252,0.200715264,0.265055689,0.154502046,453,2932,0.111608429,0.197395663,0.000759173,9,11855,,,1317.222222,0.836660448,224.225,268,,,,,,,,3.333259082,,,,,,,,3.018447059,3.384342275,3.425495829,,,,,,,,3.090083254,3.487670508,0.035368013,,,,,5013.5715,,,,,0.849586084,46593,54842,0.679881294,1.019290873,59702,,,53704.04255,65699.95745,,,,,,,38333,15345.59575,61320.40426,52250,20895.95745,83604.04255,62607,57279.85106,67934.14894,,,,,,0.299748111,833,2779,,,,,,,,0.209708218,,59702,,,8.720930233,6,688,,,,,,,,,,,,,,,,,,,,,,,,,,35.49388629,19,58784,20.67649676,56.8291503,32.3217202,,,,,,,,,,,,,40.88522021,23.81714744,65.46119817,,,,23.81600436,14,58784,13.0204312,39.9592085,,,,,,,,,,,,,27.22040753,14.88165009,45.67121855,,,,28.98165703,24,82811,18.56909451,43.12240837,,,,,,,,,,,,,28.9527381,17.92220121,44.25733571,,,,9.285714286,,1400,,,13,,0.673341094,5784,8590,,,0.573,,,,,15.20983276,,,,,0.770999531,3286,4262,0.739789296,0.802209766,0.082308658,328,3985,0.054370017,0.110247298,0.850774284,3626,4262,0.81706428,0.884484289,11855,,,,,0.239055251,2834,11855,,,0.219063686,2597,11855,,,0.007507381,89,11855,,,0.019991565,237,11855,,,0.005904682,70,11855,,,0.000506116,6,11855,,,0.101729228,1206,11855,,,0.859721636,10192,11855,,,0.014855073,164,11040,0.00096425,0.028745895,0.48941375,5802,11855,,,1,11521,11521,, -56,005,56005,WY,Campbell County,2024,1,7982.221836,569,134659,7059.417128,8905.026545,0,,,,2,,,,2,,,,2,5510.037712,3209.800018,8822.104142,1,8279.034036,7259.089335,9298.978736,,,,,2,,0.138,,,0.115,0.164,3.478564618,,,2.769017472,4.252141077,4.501346061,,,3.656914167,5.376842271,0.103289625,449,4347,0.094242394,0.112336856,0,,,,,,,,,,0.078028747,0.054206782,0.101850713,0.109577465,0.099302021,0.119852909,,,,,,,0.185,,,0.149,0.226,0.356,,,0.301,0.415,7.8,0.082444665,0.102,,,0.238,,,0.198,0.283,0.844830519,39729,47026,,,0.196085244,,,0.161324492,0.233763191,0.393939394,13,33,0.304721321,0.4796795,344.8,160,46401,,,24.84234665,260,10466,21.82265905,27.86203424,,,,,,,,,,27.39726027,19.18870428,37.92935654,24.32495345,21.02707271,27.62283418,,,,,,,0.147276462,5951,40407,0.129404122,0.165148802,0.000560333,26,46401,,,1784.653846,0.000382507,18,47058,,,2614.333333,0.002358791,111,47058,,,423.945946,1472,,,,,,,,,1489,0.3,,,,,,,,,0.3,0.39,,,,,0.39,,,0.42,0.39,0.920228768,27836,30249,0.903693161,0.936764375,0.597391638,7787,13035,0.526429036,0.668354239,0.03555772,803,22583,,,0.098,1193,,0.05987234,0.13612766,,,,,,,,,,0.113496933,0.009358403,0.217635462,0.086314938,0.056807443,0.115822434,4.067060561,151437,37235,3.112818914,5.021302209,0.163424745,2050,12544,0.103314197,0.223535293,9.051529062,42,46401,,,77.65314927,180,231800,66.3088182,88.99748034,,,,,,,,,,,,,84.10387323,71.4609469,96.74679957,,,,2.4,,,,,0,,,,,0.127677806,2235,17505,0.095388955,0.159966658,0.111723738,0.082046443,0.141401033,0.023993145,0.011132235,0.036854055,0,0,0.002502744,0.79209205,18931,23900,0.756339801,0.827844299,,,,,,,,,,0.466891134,0.321946155,0.611836112,0.809231439,0.779064926,0.839397953,0.173,,23900,0.1299907,0.2160093,76.70261812,,,75.83888501,77.56635123,,,,,,,,,,80.12214642,76.11361304,84.1306798,76.34260953,75.42669782,77.25852123,,,,378.9130923,569,134659,346.9979684,410.8282163,,,,,,,,,,231.3206083,139.2701171,361.2357841,390.3410368,356.2344205,424.4476532,,,,54.88675034,30,54658,37.03185997,78.35424896,,,,,,,,,,,,,58.1889799,38.01097358,85.26033768,,,,5.017452007,23,4584,3.18063417,7.528641557,,,,,,,,,,,,,5.299417064,3.237021618,8.184519847,,,,,,,0.108,,,0.093,0.125,0.153,,,0.132,0.177,0.081,,,0.069,0.095,63.7,24,37673,,,0.102,4770,,,,0.082444665,3803.419736,46133,,,11.47627996,16,139418,6.559685588,18.63675967,,,,,,,,,,,,,12.37031784,6.923572987,20.40295805,,,,0.325,,,0.309,0.341,0.167011634,4680,28022,0.144373336,0.189649932,0.106993979,1386,12954,0.078398234,0.135589723,0.000935016,44,47058,,,1069.5,0.84,535.08,637,,,,,,,,3.008753565,,,,,,,,2.796078153,3.033050617,2.896457891,,,,,,,,2.650912303,2.925671412,0.040688065,,,,,9595.398,,,,,0.579007014,45983,79417,0.486974564,0.671039464,89870,,,78683.10638,101056.8936,154468,95113.95745,213822.0426,,,,,,,69253,62500.82979,76005.17021,95150,89656.04255,100643.9575,,,,,,0.30167727,2608,8645,,,,,,,,0.168543452,,89870,,,5.7997558,19,3276,,,,,,,,,,,,,,,,,,,,,,,,,,24.20732959,53,231800,18.02394689,31.82816782,22.8645384,,,,,,,,,,,,,25.45650688,18.70448375,33.85175755,,,,16.39344262,38,231800,11.60097569,22.50128081,,,,,,,,,,,,,18.30496064,12.88838158,25.23097701,,,,16.37241793,54,329823,12.29946425,21.36245392,,,,,,,,,,,,,15.98265534,11.70131246,21.31862247,,,,11.18644068,,5900,,,66,,0.589368374,19735,33485,,,0.604,,,,,50.60122339,,,,,0.782626078,13703,17509,0.748575461,0.816676696,0.090723215,1553,17118,0.065050139,0.116396292,0.923639271,16172,17509,0.893690188,0.953588355,47058,,,,,0.26344086,12397,47058,,,0.131816057,6203,47058,,,0.005270092,248,47058,,,0.017297803,814,47058,,,0.007288878,343,47058,,,0.001041268,49,47058,,,0.093097879,4381,47058,,,0.864295125,40672,47058,,,0.007568287,330,43603,0.00369399,0.011442583,0.486591015,22898,47058,,,0.268021945,12604,47026,, -56,007,56007,WY,Carbon County,2024,1,8796.722547,249,41120,7081.186543,10512.25855,0,,,,2,,,,2,,,,2,9329.523783,5221.66364,15387.63069,1,8820.641751,6913.823685,10727.45982,,,,,2,,0.165,,,0.14,0.19,3.748472969,,,3.052600829,4.579089827,4.397009273,,,3.611560701,5.346282764,0.106965174,129,1206,0.089521506,0.124408842,0,,,,,,,,,,0.119341564,0.07857984,0.160103288,0.103370787,0.083369109,0.123372464,,,,,,,0.193,,,0.156,0.23,0.362,,,0.305,0.421,6.5,0.189766541,0.112,,,0.276,,,0.231,0.322,0.798582926,11609,14537,,,0.170724245,,,0.141322357,0.204749796,0.122807018,7,57,0.065190688,0.195296596,157,23,14649,,,29.20478536,83,2842,23.26144852,36.20372547,,,,,,,,,,39.07380608,25.74988442,56.85033639,24.63054187,18.28126293,32.47229885,,,,,,,0.182279367,2084,11433,0.15844958,0.206109154,0.000546112,8,14649,,,1831.125,0.000481364,7,14542,,,2077.428571,0.002750653,40,14542,,,363.55,1729,,,,,,,,1663,1729,0.28,,,,,,,,0.28,0.28,0.32,,,,,,,,0.32,0.32,0.901044747,9142,10146,0.87614821,0.925941284,0.565813292,2188,3867,0.483485513,0.648141071,0.037096992,275,7413,,,0.142,448,,0.083617021,0.200382979,,,,,,,0.305555556,0,0.786433573,0.354876616,0.190007217,0.519746015,0.145600715,0.07776552,0.213435909,4.373661858,124610,28491,3.462957468,5.284366249,0.220522052,735,3333,0.144800091,0.296244013,8.874325893,13,14649,,,116.88207,87,74434,93.61774664,144.1736016,,,,,,,,,,72.37984945,34.70895119,133.1091202,127.6938147,100.0915668,160.5558008,,,,3.6,,,,,1,,,,,0.102811245,640,6225,0.074154955,0.131467535,0.080406059,0.052823125,0.107988992,0.02248996,0.00659009,0.03838983,0.003212851,0,0.009069424,0.810466544,5281,6516,0.763761361,0.857171727,,,,,,,,,,0.866007194,0.759110601,0.972903787,0.787366727,0.724976081,0.849757373,0.149,,6516,0.100836705,0.197163296,76.81332119,,,75.29936691,78.32727547,,,,,,,,,,74.19092412,70.47500819,77.90684005,77.20636265,75.50338865,78.90933665,,,,448.8722537,249,41120,390.0440706,507.7004369,,,,,,,,,,484.3804836,337.3887546,673.6559962,452.2486787,385.8811235,518.6162339,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.118,,,0.101,0.134,0.158,,,0.137,0.179,0.094,,,0.081,0.109,40.7,5,12297,,,0.112,1650,,,,0.189766541,3014.44151,15885,,,,,,,,,,,,,,,,,,,,,,,,,,0.343,,,0.328,0.357,0.198771499,1618,8140,0.168984265,0.228558733,0.145465083,502,3451,0.104954444,0.185975721,0.000962729,14,14542,,,1038.714286,0.824206349,155.775,189,,,,,,,,3.070765812,,,,,,,,2.914370872,3.155052256,3.18471905,,,,,,,,2.996925865,3.30890107,0.074264587,,,,,9717.0095,,,,,0.641908183,39668,61797,0.521254013,0.762562354,66225,,,56956.40426,75493.59575,66140,49536.59575,82743.40426,,,,16250,15022.76596,17477.23404,61378,48001.14894,74754.85106,65923,56089.6383,75756.3617,,,,,,0.230565371,522,2264,,,39.69690109,,,,,0.223480559,,66225,,,14.23877328,13,913,,,,,,,,,,,,,,,,,,,,,,,,,,36.93797563,28,74434,24.12911205,54.12269267,37.61721794,,,,,,,,,,,,,43.8457493,28.0927989,65.23899944,,,,26.86944138,20,74434,16.41255285,41.49767298,,,,,,,,,,,,,33.23537643,20.0098677,51.90115724,,,,23.67177661,25,105611,15.31912571,34.94421196,,,,,,,,,,,,,25.84074717,15.99582978,39.50032699,,,,8,,1500,,,12,,0.601974865,6706,11140,,,0.44,,,,,32.34115111,,,,,0.727894647,4256,5847,0.693868002,0.761921292,0.077870337,430,5522,0.048473048,0.107267626,0.878912263,5139,5847,0.834651,0.923173525,14542,,,,,0.221840187,3226,14542,,,0.188901114,2747,14542,,,0.009902352,144,14542,,,0.02118003,308,14542,,,0.009420988,137,14542,,,0.001031495,15,14542,,,0.187250722,2723,14542,,,0.764819145,11122,14542,,,0.006361599,88,13833,0,0.015118353,0.45688351,6644,14542,,,0.470317122,6837,14537,, -56,009,56009,WY,Converse County,2024,1,6680.017379,194,38463,5167.205092,8192.829667,0,,,,2,,,,2,,,,2,,,,2,6671.291707,5066.463224,8276.120191,,,,,2,,0.138,,,0.116,0.164,3.508698166,,,2.782444303,4.340862827,4.87481561,,,3.945956898,5.871860431,0.113364055,123,1085,0.094499284,0.132228827,0,,,,,,,,,,0.122222222,0.054551284,0.18989316,0.112407211,0.092246577,0.132567845,,,,,,,0.17,,,0.134,0.209,0.31,,,0.247,0.375,8.5,0.028794244,0.099,,,0.226,,,0.183,0.272,0.833757545,11465,13751,,,0.190313338,,,0.152751064,0.230062717,0.32,8,25,0.213480444,0.427129614,490.1,67,13672,,,20.2388852,61,3014,15.48114352,25.99769473,,,,,,,,,,30.69053708,15.85824836,53.61019194,19.01743265,14.02195358,25.21435665,,,,,,,0.175556151,1965,11193,0.152917853,0.198194449,0.000585138,8,13672,,,1709,0.000507762,7,13786,,,1969.428571,0.002538808,35,13786,,,393.8857143,2751,,,,,,,,,2679,0.36,,,,,,,,,0.36,0.33,,,,,,,,,0.33,0.922526316,8764,9500,0.890027109,0.955025522,0.626363636,2067,3300,0.521703808,0.731023465,0.030710925,235,7652,,,0.166,540,,0.112382979,0.219617021,,,,,,,,,,0.240909091,0.027672241,0.454145941,0.185020393,0.099056732,0.270984055,4.315118668,144906,33581,3.542201995,5.088035342,0.120558761,397,3293,0.047515937,0.193601585,10.97132826,15,13672,,,100.3680161,69,68747,78.09230738,127.022148,,,,,,,,,,,,,105.2285432,81.03880064,134.3745005,,,,2.2,,,,,1,,,,,0.061355311,335,5460,0.038846119,0.083864504,0.045028487,0.022198268,0.067858707,0.016483517,0.004626422,0.028340611,0.002747253,0,0.00925512,0.744994885,5098,6843,0.705109614,0.784880157,,,,,,,,,,,,,0.750847155,0.700020863,0.801673448,0.306,,6843,0.242013582,0.369986418,78.01821039,,,76.65166619,79.38475458,,,,,,,,,,,,,77.91231893,76.48169855,79.34293931,,,,368.5752677,194,38463,313.768672,423.3818635,,,,,,,,,,,,,372.7691829,314.9888509,430.5495148,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.105,,,0.09,0.122,0.156,,,0.133,0.18,0.083,,,0.07,0.097,53,6,11317,,,0.099,1360,,,,0.028794244,398.3107762,13833,,,,,,,,,,,,,,,,,,,,,,,,,,0.305,,,0.289,0.32,0.19273743,1518,7876,0.165333175,0.220141686,0.138568129,480,3464,0.10044047,0.176695789,0.00108806,15,13786,,,919.0666667,0.896929825,153.375,171,,,,,,,,3.476919048,,,,,,,,,3.45660704,3.572391924,,,,,,,,,3.576141346,0.033167727,,,,,8584.2785,,,,,0.673611111,43650,64800,0.532699655,0.814522567,78015,,,66449.21277,89580.78723,,,,,,,,,,118911,86678.82979,151143.1702,76705,68202.53192,85207.46809,,,,,,0.263157895,615,2337,,,,,,,,0.164353009,,78015,,,6.564551422,6,914,,,,,,,,,,,,,,,,,,,,,,,,,,28.77360431,20,68747,17.05306149,45.47469986,29.09217857,,,,,,,,,,,,,30.19224658,17.58809625,48.34071154,,,,26.18296071,18,68747,15.51768191,41.38036608,,,,,,,,,,,,,26.30713581,15.03680114,42.72114041,,,,15.4362278,15,97174,8.63953952,25.45971028,,,,,,,,,,,,,13.9663179,7.216600259,24.3963467,,,,6.666666667,,1500,,,10,,0.689282203,7010,10170,,,0.564,,,,,33.27206072,,,,,0.805162659,4554,5656,0.757728248,0.852597071,0.061074319,332,5436,0.028672373,0.093476266,0.832213579,4707,5656,0.782710512,0.881716645,13786,,,,,0.24067895,3318,13786,,,0.185695633,2560,13786,,,0.005150152,71,13786,,,0.014434934,199,13786,,,0.006165675,85,13786,,,0.000652836,9,13786,,,0.086609604,1194,13786,,,0.878645002,12113,13786,,,0.008815728,113,12818,0,0.019565719,0.489772233,6752,13786,,,0.527452549,7253,13751,, -56,011,56011,WY,Crook County,2024,1,6907.620612,121,20649,4756.52838,9058.712845,0,,,,2,,,,2,,,,2,,,,2,7319.687483,5005.353321,9634.021646,,,,,2,,0.126,,,0.103,0.152,3.361158228,,,2.612929283,4.182217587,4.73621191,,,3.78758064,5.753399615,0.082172702,59,718,0.062084636,0.102260768,0,,,,,,,,,,,,,0.08115942,0.06078332,0.101535521,,,,,,,0.165,,,0.128,0.207,0.301,,,0.237,0.372,8.4,0.057133538,0.087,,,0.208,,,0.167,0.257,0.602283805,4325,7181,,,0.165387158,,,0.132738301,0.20469734,0.541666667,13,24,0.450142334,0.622524088,136.7,10,7315,,,20.39381153,29,1422,13.65805565,29.28891522,,,,,,,,,,,,,21.53846154,14.31215127,31.1290738,,,,,,,0.187249608,1075,5741,0.162228332,0.212270885,0.000410116,3,7315,,,2438.333333,0.000402793,3,7448,,,2482.666667,0.000805585,6,7448,,,1241.333333,1606,,,,,,,,,1612,0.37,,,,,,,,,0.37,0.37,,,,,,,,,0.37,0.940967424,4766,5065,0.908393452,0.973541395,0.708552632,1077,1520,0.559191746,0.857913517,0.029733164,117,3935,,,0.111,200,,0.064531915,0.157468085,,,,,,,,,,,,,0.013563502,0,0.034728057,3.777774594,131833,34897,2.786726503,4.768822685,0.045125348,81,1795,0.000669548,0.089581148,12.30348599,9,7315,,,101.7348469,38,37352,71.99363259,139.6390258,,,,,,,,,,,,,105.3140922,74.15083986,145.1616035,,,,3.7,,,,,0,,,,,0.102654867,290,2825,0.066771421,0.138538314,0.091365102,0.050629773,0.132100431,0.006371681,0,0.020493899,0.003539823,0,0.013677458,0.745144203,2532,3398,0.667596208,0.822692197,,,,,,,,,,,,,0.752928648,0.661791038,0.844066257,0.39,,3398,0.290962934,0.489037066,78.18667225,,,76.22283529,80.15050921,,,,,,,,,,,,,77.78108007,75.71545283,79.84670731,,,,373.3659181,121,20649,299.7389149,446.9929213,,,,,,,,,,,,,386.412368,308.6206765,464.2040595,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.101,,,0.086,0.12,0.152,,,0.128,0.178,0.073,,,0.061,0.087,,,,,,0.087,630,,,,0.057133538,404.6768525,7083,,,,,,,,,,,,,,,,,,,,,,,,,,0.307,,,0.288,0.324,0.198623152,779,3922,0.170027407,0.227218896,0.165171504,313,1895,0.11751193,0.212831078,0.000805585,6,7448,,,1241.333333,0.875,75.25,86,,,,,,,,3.388325416,,,,,,,,,3.418121897,3.33897724,,,,,,,,,3.382745316,,,,,,10059.44,,,,,0.717339527,48490,67597,0.472249567,0.962429487,70196,,,60195.82979,80196.17021,,,,,,,,,,,,,69072,62867.91489,75276.08511,,,,,,0.33278956,408,1226,,,,,,,,0.198187931,,70196,,,9.920634921,5,504,,,,,,,,,,,,,,,,,,,,,,,,,,30.54582807,12,37352,15.24836732,54.65492405,32.12679375,,,,,,,,,,,,,32.25701054,16.10258344,57.71670215,,,,26.77232812,10,37352,12.83837196,49.23526462,,,,,,,,,,,,,28.46326815,13.64924344,52.34496354,,,,,,,,,,,,,,,,,,,,,,,,,,,6.25,,800,,,5,,0.749864253,4143,5525,,,0.5,,,,,13.35765379,,,,,0.783666062,2159,2755,0.744173579,0.823158544,0.147150664,377,2562,0.091580904,0.202720423,0.862068966,2375,2755,0.821504322,0.902633609,7448,,,,,0.245300752,1827,7448,,,0.226906552,1690,7448,,,0.008592911,64,7448,,,0.011680988,87,7448,,,0.003088077,23,7448,,,0.000537057,4,7448,,,0.035311493,263,7448,,,0.929779807,6925,7448,,,0.009917111,67,6756,0,0.026016111,0.490870032,3656,7448,,,1,7181,7181,, -56,013,56013,WY,Fremont County,2024,1,16274.93598,899,109159,14739.74376,17810.12819,0,42181.86302,36836.21622,47527.50981,,,,,2,,,,2,11611.68315,7439.824492,17277.2641,1,10224.08385,8714.449974,11733.71773,,,,,2,,0.158,,,0.135,0.185,3.78370387,,,3.076615455,4.600475078,5.015211187,,,4.17559269,5.951970839,0.088218224,304,3446,0.078748811,0.097687637,0,0.076773567,0.060506533,0.0930406,,,,,,,0.105691057,0.067271582,0.144110532,0.090715048,0.077711528,0.103718569,,,,0.096491228,0.042289423,0.150693033,0.197,,,0.161,0.237,0.328,,,0.277,0.383,7.7,0.059302507,0.121,,,0.232,,,0.194,0.272,0.614365092,24104,39234,,,0.168652858,,,0.137960066,0.202682231,0.62295082,38,61,0.576317309,0.665644861,511,201,39336,,,35.13043478,303,8625,31.17478092,39.08608865,51.59799769,42.86151701,60.33447837,,,,,,,47.28132388,33.77847097,64.38374346,20.82899396,16.74651114,24.91147678,,,,40,19.96785588,71.57104914,0.220669064,6504,29474,0.198030766,0.243307362,0.000813504,32,39336,,,1229.25,0.000785367,31,39472,,,1273.290323,0.002660114,105,39472,,,375.9238095,2165,,,,,5558,,,,1732,0.33,,,,,0.25,,,0.3,0.34,0.39,,,,,0.33,0.46,,0.34,0.39,0.931370311,24482,26286,0.92140139,0.941339232,0.611402933,5587,9138,0.561463942,0.661341924,0.040061389,757,18896,,,0.219,2070,,0.147510638,0.290489362,0.303133258,0.236988405,0.369278111,,,,,,,0.247311828,0.142886779,0.351736877,0.113859443,0.075991098,0.151727787,3.992219031,109798,27503,3.513620955,4.470817106,0.299191651,2924,9773,0.247843586,0.350539715,12.71100264,50,39336,,,159.1904607,314,197248,141.5825314,176.7983901,320.1983164,263.8391874,376.5574454,,,,,,,77.27432385,38.57506405,138.2651107,128.3650235,109.4003032,147.3297438,,,,6.6,,,,,1,,,,,0.130434783,1935,14835,0.110252251,0.150617314,0.08024607,0.063962718,0.096529421,0.035052241,0.025126193,0.04497829,0.021907651,0.013991755,0.029823546,0.755363492,12323,16314,0.730029891,0.780697092,0.752859477,0.688703166,0.817015789,,,,,,,0.690617075,0.615442291,0.76579186,0.767387543,0.74525842,0.789516667,0.182,,16314,0.156251697,0.207748303,71.20927183,,,70.16847982,72.25006384,56.01336127,54.01231363,58.01440891,,,,,,,72.64417125,68.78391799,76.50442452,75.83638209,74.67474826,76.99801592,,,,667.3637872,899,109159,620.5137153,714.2138592,1742.42685,1551.728458,1933.125243,,,,,,,567.0250527,394.9537251,788.5945856,460.7272646,416.6638491,504.79068,,,,68.6451731,30,43703,46.31461003,97.99525295,112.5763911,61.5465606,188.8840553,,,,,,,,,,63.63482097,35.61592624,104.9559599,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.118,,,0.102,0.137,0.166,,,0.144,0.191,0.096,,,0.083,0.111,55.6,18,32363,,,0.121,4780,,,,0.059302507,2379.394469,40123,,,35.61918008,42,117914,25.67117198,48.14678391,78.26427236,46.38436793,123.6912921,,,,,,,,,,24.46124116,14.94156159,37.77840305,,,,0.328,,,0.315,0.342,0.250822005,5111,20377,0.222226261,0.27941775,0.15660634,1497,9559,0.119670169,0.19354251,0.001368058,54,39472,,,730.962963,0.701302083,336.625,480,,,0.151121076,337,2230,0.085777449,0.216464703,2.951305648,,,,,,,,2.860273499,3.285804695,2.982007825,,,,,,,,3.175189814,3.385824099,0.27977841,,,,,12134.90275,,,,,0.807818647,42299,52362,0.713777061,0.901860233,55125,,,48671.89362,61578.10638,50845,43694.87234,57995.12766,70893,51455.04255,90330.95745,,,,59875,40843.34043,78906.65957,61275,57302.57447,65247.42553,,,,,,0.450031231,2882,6404,,,53.1687223,,,,,0.249342404,,55125,,,6.201550388,16,2580,,,7.919223916,22,277805,4.962935466,11.98980018,18.34054728,8.795005312,33.72891945,,,,,,,,,,5.681700791,2.836284564,10.16613216,,,,35.05118398,67,197248,26.87354177,44.93403597,33.9673913,48.16457003,27.53021335,78.21624421,,,,,,,,,,33.70368721,24.29065321,45.55759401,,,,28.39065542,56,197248,21.445996,36.86762756,25.82244487,12.38286602,47.4883955,,,,,,,,,,30.63256241,22.07725659,41.40632546,,,,30.95696622,86,277805,24.76157709,38.23160144,91.70273641,68.06353851,120.8986257,,,,,,,,,,15.49554761,10.4547809,22.12085773,,,,8.260869565,,4600,,,38,,0.616221697,18234,29590,,,0.54,,,,,36.42981467,,,,,0.706916604,10333,14617,0.687878509,0.725954699,0.09195897,1282,13941,0.076373493,0.107544447,0.84832729,12400,14617,0.832026386,0.864628194,39472,,,,,0.244578435,9654,39472,,,0.20047122,7913,39472,,,0.005472234,216,39472,,,0.215443859,8504,39472,,,0.005649574,223,39472,,,0.000760032,30,39472,,,0.082387515,3252,39472,,,0.693326915,27367,39472,,,0.001352485,50,36969,0,0.004607975,0.49265302,19446,39472,,,0.535836265,21023,39234,, -56,015,56015,WY,Goshen County,2024,1,9255.179481,228,34920,7336.401396,11173.95757,0,,,,2,,,,2,,,,2,17012.53358,9910.427739,27238.71428,1,8578.291215,6618.229512,10538.35292,,,,,2,,0.141,,,0.117,0.167,3.458644709,,,2.706387329,4.278680106,4.682149548,,,3.759245112,5.640369179,0.084186576,74,879,0.065830216,0.102542935,0,,,,,,,,,,0.092436975,0.040396189,0.144477761,0.08630137,0.065930716,0.106672024,,,,,,,0.176,,,0.14,0.216,0.295,,,0.236,0.357,8.2,0.058550922,0.099,,,0.23,,,0.188,0.275,0.617618819,7719,12498,,,0.17823853,,,0.143540567,0.215525012,0.2,3,15,0.07369192,0.354373303,374.9,47,12537,,,15.18151815,46,3030,11.11477934,20.25001773,,,,,,,,,,,,,13.92111369,9.750176882,19.27268928,,,,,,,0.171727628,1493,8694,0.14908933,0.194365926,0.000797639,10,12537,,,1253.7,0.000636841,8,12562,,,1570.25,0.006209202,78,12562,,,161.0512821,2414,,,,,,,,3125,2300,0.34,,,,,,,,0.27,0.35,0.25,,,,,,,,0.24,0.25,0.933004152,8314,8911,0.916700378,0.949307926,0.711870504,1979,2780,0.610271229,0.813469778,0.029357798,192,6540,,,0.165,393,,0.098276596,0.231723404,,,,,,,,,,,,,0.107277628,0.042637229,0.171918027,4.204830662,111243,26456,3.641352582,4.768308743,0.148331273,360,2427,0.073755259,0.222907287,19.14333573,24,12537,,,98.87886578,65,65737,76.3126211,126.0292314,,,,,,,,,,,,,108.7247126,83.16579015,139.6614418,,,,3.9,,,,,1,,,,,0.108882522,570,5235,0.072062484,0.145702559,0.091083413,0.054401968,0.127764859,0.011270296,0.000292999,0.022247593,0.009551098,0.000911796,0.018190401,0.731426578,4194,5734,0.680401758,0.782451398,,,,,,,,,,,,,0.710266323,0.668067221,0.752465425,0.173,,5734,0.125939941,0.220060059,76.52811939,,,74.95216189,78.10407688,,,,,,,,,,,,,76.9220639,75.29031051,78.5538173,,,,453.300148,228,34920,390.0206323,516.5796637,,,,,,,,,,699.0048547,460.6486038,1017.015364,437.5778486,371.2252611,503.930436,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.106,,,0.089,0.123,0.152,,,0.131,0.176,0.086,,,0.072,0.1,92.3,10,10830,,,0.099,1260,,,,0.058550922,775.7411587,13249,,,,,,,,,,,,,,,,,,,,,,,,,,0.323,,,0.306,0.339,0.191301607,1214,6346,0.162705863,0.219897352,0.12180268,300,2463,0.086057999,0.157547361,0.000955262,12,12562,,,1046.833333,0.825,110.55,134,,,,,,,,2.98437006,,,,,,,,2.726569773,3.053976635,2.900558367,,,,,,,,2.507855085,3.035818806,0.052881048,,,,,10847.48,,,,,0.664676636,34625,52093,0.55522721,0.774126062,58720,,,51125.44681,66314.55319,,,,,,,,,,,,,62573,57223.21277,67922.78723,,,,,,0.310606061,492,1584,,,,,,,,0.232101499,,58720,,,9.446693657,7,741,,,,,,,,,,,,,,,,,,,,,,,,,,24.85156479,16,65737,13.90923216,40.98887682,24.33941312,,,,,,,,,,,,,27.63169477,14.71271373,47.25103959,,,,,,,,,,,,,,,,,,,,,,,,,,,25.94314128,24,92510,16.62226014,38.6013378,,,,,,,,,,,,,27.76480685,17.40005663,42.03625123,,,,5,,1200,,,6,,0.599617591,6272,10460,,,0.59,,,,,40.67074954,,,,,0.752613928,3815,5069,0.70764309,0.797584766,0.105834186,517,4885,0.06038955,0.151278823,0.799763267,4054,5069,0.759406832,0.840119701,12562,,,,,0.196783952,2472,12562,,,0.238178634,2992,12562,,,0.011383538,143,12562,,,0.017115109,215,12562,,,0.009154593,115,12562,,,0.000716446,9,12562,,,0.115029454,1445,12562,,,0.84397389,10602,12562,,,0.00295808,35,11832,0,0.011849963,0.469988855,5904,12562,,,0.485037606,6062,12498,, -56,017,56017,WY,Hot Springs County,2024,1,15379.03534,116,11846,10186.52403,20571.54665,0,,,,2,,,,2,,,,2,,,,2,16549.5438,10833.30263,22265.78496,,,,,2,,0.15,,,0.123,0.178,3.786677783,,,2.958531246,4.677092012,4.930053226,,,3.919203928,5.970325247,0.080808081,24,297,0.049811889,0.111804273,0,,,,,,,,,,,,,0.082397004,0.049414504,0.115379503,,,,,,,0.188,,,0.147,0.231,0.33,,,0.258,0.408,8,0.023721368,0.121,,,0.242,,,0.195,0.291,0.803072928,3711,4621,,,0.146736694,,,0.116226638,0.180333929,0.272727273,3,11,0.11266692,0.445445377,174,8,4597,,,20.28639618,17,838,11.81757335,32.48048546,,,,,,,,,,,,,21.73913044,12.42579138,35.30298587,,,,,,,0.166920037,549,3289,0.143090249,0.190749824,0.001087666,5,4597,,,919.4,0.00087184,4,4588,,,1147,0.003051439,14,4588,,,327.7142857,241,,,,,,,,,255,0.34,,,,,,,,,0.34,0.38,,,,,,,,,0.38,0.951027811,3146,3308,0.926361648,0.975693975,0.701943845,650,926,0.552836044,0.851051645,0.029296021,67,2287,,,0.171,157,,0.107851064,0.234148936,,,,,,,,,,,,,0.264524104,0.131526586,0.397521622,4.134806997,112045,27098,3.091187784,5.17842621,0.207941484,199,957,0.074594857,0.341288111,10.87665869,5,4597,,,167.5041876,38,22686,118.5359325,229.9125845,,,,,,,,,,,,,174.1738836,121.9892468,241.1300716,,,,3,,,,,1,,,,,0.086956522,190,2185,0.035332158,0.138580885,0.078304929,0.024845281,0.131764577,0.012814645,0,0.031272123,0.006407323,0,0.013473642,0.728585657,1463,2008,0.629053868,0.828117446,,,,,,,,,,,,,0.772891566,0.668967366,0.876815766,0.136,,2008,0.073825258,0.198174742,70.77768905,,,67.4935741,74.06180399,,,,,,,,,,,,,69.84190391,66.31893533,73.36487249,,,,624.7597997,116,11846,490.5012553,759.0183441,,,,,,,,,,,,,657.9092717,512.7696123,803.048931,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.115,,,0.097,0.133,0.164,,,0.139,0.189,0.088,,,0.074,0.103,,,,,,0.121,570,,,,0.023721368,114.1472229,4812,,,,,,,,,,,,,,,,,,,,,,,,,,0.323,,,0.304,0.34,0.18960375,445,2347,0.159816515,0.219390984,0.114141414,113,990,0.079588223,0.148694606,0.00065388,3,4588,,,1529.333333,,,,,,,,,,,3.230482404,,,,,,,,,3.20321814,3.13959956,,,,,,,,,3.245978544,0.012028433,,,,,7221.544,,,,,0.683375133,39782,58214,0.41649617,0.950254096,64734,,,56219.61702,73248.38298,96250,12502.59575,179997.4043,,,,,,,,,,62431,51552.70213,73309.29787,,,,,,0.309923664,203,655,,,,,,,,0.20698551,,64734,,,11.32075472,3,265,,,,,,,,,,,,,,,,,,,,,,,,,,65.98346263,18,22686,35.13341489,112.8337306,79.34408887,,,,,,,,,,,,,63.76377397,32.94767247,111.3824809,,,,52.89605924,12,22686,27.33216569,92.39877038,,,,,,,,,,,,,53.21979777,26.56713129,95.22491903,,,,31.14682614,10,32106,14.9361138,57.28012223,,,,,,,,,,,,,34.14251084,16.37266105,62.78929305,,,,20,,400,,,8,,0.706139154,2588,3665,,,0.564,,,,,27.88819244,,,,,0.714014252,1503,2105,0.665156584,0.76287192,0.083204931,162,1947,0.030474148,0.135935713,0.863657957,1818,2105,0.83544634,0.891869575,4588,,,,,0.205972101,945,4588,,,0.289886661,1330,4588,,,0.010244115,47,4588,,,0.022231909,102,4588,,,0.006756757,31,4588,,,0.00087184,4,4588,,,0.046643418,214,4588,,,0.89625109,4112,4588,,,0.000689814,3,4349,0,0.014508261,0.498038361,2285,4588,,,1,4621,4621,, -56,019,56019,WY,Johnson County,2024,1,6220.381221,119,23030,4102.843651,8337.918792,0,,,,2,,,,2,,,,2,,,,2,6429.441784,4113.989062,8744.894506,,,,,2,,0.14,,,0.116,0.166,3.532453468,,,2.78020548,4.382080251,4.764785144,,,3.831796668,5.721992877,0.062385321,34,545,0.042079936,0.082690706,0,,,,,,,,,,,,,0.067761807,0.045439066,0.090084548,,,,,,,0.164,,,0.126,0.204,0.336,,,0.27,0.406,7.1,0.112685035,0.123,,,0.219,,,0.176,0.264,0.617970877,5220,8447,,,0.149887238,,,0.120379414,0.182575808,0.2,3,15,0.07369192,0.354373303,255.1,22,8623,,,11.52368758,18,1562,6.829667593,18.21239454,,,,,,,,,,,,,13.35311573,7.913902656,21.10367972,,,,,,,0.105471848,665,6305,0.088790997,0.122152699,0.001507596,13,8623,,,663.3076923,0.000687285,6,8730,,,1455,0.003436426,30,8730,,,291,1989,,,,,,,,,2036,0.37,,,,,,,,,0.37,0.4,,,,,,,,,0.4,0.927714647,5878,6336,0.913885743,0.94154355,0.700051361,1363,1947,0.54039429,0.859708432,0.034611787,148,4276,,,0.089,157,,0.05206383,0.12593617,,,,,,,,,,,,,0.187205387,0.08668814,0.287722635,6.12599264,126514,20652,4.082066713,8.169918567,0.142426071,236,1657,0.076754224,0.208097918,10.43720283,9,8623,,,100.9579264,43,42592,73.06375191,135.9896643,,,,,,,,,,,,,108.3200083,78.06753426,146.4171836,,,,3.1,,,,,0,,,,,0.092171717,365,3960,0.058452567,0.125890867,0.075342466,0.038992216,0.111692716,0.013888889,0,0.033228311,0.013636364,0.002923829,0.024348898,0.729736576,2881,3948,0.653085429,0.806387722,,,,,,,,,,,,,0.725156161,0.643652155,0.806660167,0.166,,3948,0.102783657,0.229216343,79.8458202,,,77.79874809,81.89289232,,,,,,,,,,,,,79.40616229,77.21067613,81.60164845,,,,303.3384779,119,23030,241.9205308,364.756425,,,,,,,,,,,,,307.623091,241.9618374,373.2843447,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.108,,,0.091,0.125,0.158,,,0.133,0.181,0.083,,,0.07,0.098,,,,,,0.123,1040,,,,0.112685035,965.5980675,8569,,,,,,,,,,,,,,,,,,,,,,,,,,0.3,,,0.283,0.319,0.11852346,533,4497,0.097076652,0.139970269,0.077572559,147,1895,0.050168304,0.104976815,0.000687285,6,8730,,,1455,0.875,77.875,89,,,,,,,,3.232578942,,,,,,,,,3.240144337,3.182719984,,,,,,,,,3.220783448,0.048538897,,,,,11312.75,,,,,0.677515672,43340,63969,0.428622644,0.9264087,70067,,,60124.02128,80009.97872,,,,,,,,,,,,,62714,55215.95745,70212.04255,,,,,,0.233195021,281,1205,,,,,,,,0.225755349,,70067,,,11.23595506,5,445,,,,,,,,,,,,,,,,,,,,,,,,,,32.15949283,16,42592,17.1235755,54.99371216,37.56574005,,,,,,,,,,,,,31.42821153,16.23941551,54.89876075,,,,30.52216379,13,42592,16.25176674,52.19382964,,,,,,,,,,,,,33.5276216,17.85204645,57.33325403,,,,,,,,,,,,,,,,,,,,,,,,,,,10,,900,,,9,,0.732002956,4952,6765,,,0.613,,,,,23.68148696,,,,,0.714429615,2837,3971,0.647250347,0.781608883,0.10495382,375,3573,0.056768749,0.153138892,0.836313271,3321,3971,0.770513036,0.902113507,8730,,,,,0.205498282,1794,8730,,,0.270561283,2362,8730,,,0.0069874,61,8730,,,0.019358534,169,8730,,,0.00836197,73,8730,,,0.001030928,9,8730,,,0.055097365,481,8730,,,0.896907217,7830,8730,,,0,0,8162,0,0.010510565,0.497021764,4339,8730,,,0.465372322,3931,8447,, -56,021,56021,WY,Laramie County,2024,1,8762.459403,1519,281016,8092.536773,9432.382033,0,,,,2,,,,2,15771.41336,10856.31527,22148.92811,,9907.05177,8115.85656,11698.24698,,8401.945702,7643.811013,9160.080392,,,,,2,,0.132,,,0.112,0.155,3.282968035,,,2.671287815,3.914579379,4.764020554,,,4.048987158,5.526031228,0.099893604,845,8459,0.093503436,0.106283773,0,,,,0.099173554,0.045915917,0.15243119,0.14479638,0.098401127,0.191191634,0.106470588,0.09180833,0.121132847,0.097035933,0.089570155,0.104501711,,,,0.084821429,0.048334461,0.121308397,0.148,,,0.116,0.181,0.323,,,0.284,0.368,7.6,0.119062023,0.097,,,0.221,,,0.186,0.258,0.710571872,71421,100512,,,0.159613663,,,0.134486955,0.187114455,0.363636364,24,66,0.301252523,0.425281298,414.4,418,100863,,,21.71977043,439,20212,19.68797939,23.75156148,,,,,,,20.67669173,10.32173001,36.996313,37.21278721,31.2375502,43.18802423,17.16561384,15.03774231,19.29348538,,,,21.73913044,12.42579138,35.30298587,0.13013931,10743,82550,0.115841437,0.144437182,0.000634524,64,100863,,,1575.984375,0.000863755,87,100723,,,1157.735632,0.004566981,460,100723,,,218.9630435,2786,,,,,4270,,3355,3082,2709,0.41,,,,,,0.33,0.31,0.31,0.42,0.44,,,,,0.27,0.52,0.27,0.43,0.45,0.943458559,64542,68410,0.934382045,0.952535073,0.722847268,19660,27198,0.676063849,0.769630688,0.035332802,1730,48963,,,0.119,2631,,0.08087234,0.15712766,0.014925373,0,0.268759919,0.03125,0,0.521773459,0.542207792,0.281353975,0.803061609,0.267790629,0.190747801,0.344833458,0.069333685,0.047213711,0.091453659,4.228444019,141285,33413,3.90046298,4.556425058,0.194750656,4452,22860,0.154333013,0.2351683,12.69048115,128,100863,,,89.31062235,445,498261,81.01251246,97.60873223,313.4796238,150.3256645,576.5001894,,,,87.81173165,42.10913853,161.488901,75.87758416,57.46894126,98.30821129,92.2766968,82.74441527,101.8089783,,,,3.8,,,,,1,,,,,0.111691542,4490,40200,0.09520867,0.128174415,0.09659505,0.080535465,0.112654635,0.013059702,0.008663209,0.017456194,0.007835821,0.004739484,0.010932158,0.811313299,41063,50613,0.787550126,0.835076472,,,,,,,0.811783961,0.65176598,0.971801942,0.791495711,0.73953314,0.843458281,0.809001448,0.785389657,0.832613239,0.112,,50613,0.096328404,0.127671596,76.41238613,,,75.84467359,76.98009868,,,,,,,68.93513449,65.17146125,72.69880773,75.34457105,73.69223543,76.99690667,76.74464642,76.10914824,77.3801446,,,,425.8495375,1519,281016,403.5382058,448.1608693,,,,,,,826.0610856,600.2172494,1108.948451,480.9082327,410.906037,550.9104284,409.4017092,385.2826599,433.5207585,,,,61.56779409,62,100702,47.20367469,78.9271334,,,,,,,,,,87.35230564,52.59179424,136.4114458,58.42786297,41.92884323,79.26399357,,,,5.573618207,48,8612,4.109546078,7.389809125,,,,,,,,,,,,,4.871711595,3.286923355,6.954671224,,,,,,,0.099,,,0.085,0.114,0.145,,,0.125,0.166,0.083,,,0.072,0.095,100.3,85,84777,,,0.097,9700,,,,0.119062023,10922.51183,91738,,,19.93633663,60,300958,15.21352513,25.66201709,,,,,,,,,,,,,19.13712816,13.95875259,25.60698314,,,,0.304,,,0.289,0.316,0.140505969,8392,59727,0.122633628,0.158378309,0.107223666,2559,23866,0.082202389,0.132244942,0.001697725,171,100723,,,589.0233918,0.804840849,910.275,1131,,,0.070656692,340,4812,0.034819203,0.106494181,3.177087442,,,,,,,2.979877126,2.905766432,3.275861088,3.054404611,,,,,,,2.958314819,2.845494891,3.148968222,0.04871292,,,,,7879.5155,,,,,0.759851228,46376,61033,0.701106829,0.818595627,71956,,,67211.48936,76700.51064,69583,6827.255319,132338.7447,62159,33069.97872,91248.02128,103469,52170.61702,154767.383,65179,50539.17021,79818.82979,78198,74222,82174,,,,,,0.247539693,3773,15242,,,45.98212382,,,,,0.229334593,,71956,,,7.318263132,45,6149,,,4.758348017,33,693518,3.275427829,6.682489751,,,,,,,,,,,,,3.86284331,2.391160892,5.904766332,,,,28.76839584,145,498261,23.97544929,33.5613424,29.10121402,,,,,,,,,,,,,31.73081111,26.04740128,37.41422093,,,,25.08725347,125,498261,20.68926402,29.48524291,,,,,,,,,,14.64304256,7.309754086,26.20044796,26.91403657,21.76601616,32.06205698,,,,13.69827459,95,693518,11.08272216,16.74543035,,,,,,,,,,10.62145147,5.302190305,19.00471063,14.71559356,11.66855049,18.31483,,,,4.380952381,,10500,,,46,,0.603441606,45237,74965,,,0.701,,,,,95.86829647,,,,,0.721906924,29892,41407,0.704141033,0.739672815,0.114552763,4645,40549,0.098619818,0.130485709,0.900475765,37286,41407,0.886290566,0.914660964,100723,,,,,0.222729665,22434,100723,,,0.174210458,17547,100723,,,0.021454881,2161,100723,,,0.013025823,1312,100723,,,0.014058358,1416,100723,,,0.001489233,150,100723,,,0.158384877,15953,100723,,,0.774748568,78035,100723,,,0.004830304,456,94404,0.002085996,0.007574612,0.490344807,49389,100723,,,0.211536931,21262,100512,, -56,023,56023,WY,Lincoln County,2024,1,8013.920711,241,56410,6398.081407,9629.760014,0,,,,2,,,,2,,,,2,,,,2,8283.802588,6570.268827,9997.336349,,,,,2,,0.128,,,0.108,0.155,3.310651302,,,2.688765502,4.203932436,4.403137738,,,3.641583909,5.448036231,0.08338519,134,1607,0.069868012,0.096902368,0,,,,,,,,,,,,,0.083391731,0.069046833,0.097736629,,,,,,,0.162,,,0.129,0.203,0.289,,,0.24,0.351,8.5,0.052113615,0.087,,,0.211,,,0.173,0.256,0.776313774,15201,19581,,,0.169669919,,,0.139301313,0.206523005,0.448275862,13,29,0.356402006,0.533757898,104.2,21,20153,,,13.68019735,61,4459,10.464267,17.57278581,,,,,,,,,,,,,11.75587794,8.63777693,15.6328255,,,,,,,0.191120637,3121,16330,0.168482339,0.213758935,0.000645065,13,20153,,,1550.230769,0.000484027,10,20660,,,2066,0.001306873,27,20660,,,765.1851852,2425,,,,,,,,,2465,0.35,,,,,,,,,0.35,0.39,,,,,,,,0.47,0.39,0.941167563,12430,13207,0.924372704,0.957962421,0.622834296,2804,4502,0.535927591,0.709741001,0.034242298,329,9608,,,0.098,504,,0.062255319,0.133744681,,,,,,,,,,0.259358289,0.042094306,0.476622272,0.050290568,0.020537551,0.080043585,3.46249611,144625,41769,2.913024818,4.011967402,0.06842714,355,5188,0.036670113,0.100184166,4.465836352,9,20153,,,92.9903472,92,98935,74.96334438,114.0444059,,,,,,,,,,,,,98.71018689,79.37464698,121.3315783,,,,4.8,,,,,1,,,,,0.116326531,855,7350,0.079361037,0.153292025,0.058419244,0.032019586,0.084818902,0.057006803,0.026928306,0.0870853,0.008163265,0,0.01730505,0.683094915,6542,9577,0.644014812,0.722175018,,,,,,,,,,,,,0.694723618,0.638764798,0.750682439,0.25,,9577,0.203715584,0.296284416,78.44842522,,,77.01576675,79.8810837,,,,,,,,,,,,,78.12853257,76.64685526,79.61020987,,,,320.2938519,241,56410,276.5799118,364.0077919,,,,,,,,,,,,,331.7022618,285.2255493,378.1789742,,,,71.16488013,16,22483,40.67687788,115.5673068,,,,,,,,,,,,,69.74195477,38.12857565,117.0151496,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.1,,,0.086,0.118,0.149,,,0.129,0.175,0.076,,,0.065,0.09,,,,,,0.087,1690,,,,0.052113615,943.5691197,18106,,,16.60136795,10,60236,7.961001222,30.53050674,,,,,,,,,,,,,18.04500424,8.653280936,33.18540528,,,,0.316,,,0.299,0.331,0.195405381,2186,11187,0.169192615,0.221618147,0.184609693,998,5406,0.139333097,0.229886289,0.000822846,17,20660,,,1215.294118,0.855035971,237.7,278,,,,,,,,3.321032598,,,,,,,,,3.320395199,3.406539225,,,,,,,,,3.412912648,0.025690835,,,,,6890.9175,,,,,0.626245195,44635,71274,0.540481151,0.712009238,93044,,,82655.40426,103432.5957,,,,101250,97747.02128,104752.9787,,,,55625,41924.06383,69325.93617,83996,80813.53192,87178.46809,,,,,,0.182376502,683,3745,,,,,,,,0.158462663,,93044,,,8.778930567,11,1253,,,,,,,,,,,,,,,,,,,,,,,,,,26.91494719,25,98935,17.06176773,40.38563591,25.26911609,,,,,,,,,,,,,29.29331165,18.56944678,43.95435036,,,,19.20452823,19,98935,11.56238052,29.99024973,,,,,,,,,,,,,20.83881723,12.54632926,32.54239446,,,,20.47277487,28,136767,13.60401022,29.58885984,,,,,,,,,,,,,20.60336152,13.45879979,30.18869833,,,,6.538461539,,2600,,,17,,0.751517315,10525,14005,,,0.49,,,,,9.63726197,,,,,0.793813082,6056,7629,0.771439724,0.81618644,0.053861652,401,7445,0.031915634,0.07580767,0.895792371,6834,7629,0.867456646,0.924128097,20660,,,,,0.251597289,5198,20660,,,0.19714424,4073,20660,,,0.005808325,120,20660,,,0.010987415,227,20660,,,0.005324298,110,20660,,,0.000726041,15,20660,,,0.054356244,1123,20660,,,0.912584705,18854,20660,,,0.01066121,198,18572,0.002247156,0.019075265,0.484365925,10007,20660,,,1,19581,19581,, -56,025,56025,WY,Natrona County,2024,1,9493.68067,1335,225463,8718.496722,10268.86462,0,25221.02372,13429.13292,43128.71867,1,,,,2,18639.60421,9631.355494,32559.63742,1,8749.467571,6428.779673,11634.93705,,9495.035709,8644.463071,10345.60835,,,,,2,,0.142,,,0.121,0.166,3.76449744,,,3.059903357,4.523668049,4.928192494,,,4.149712653,5.731810656,0.098119503,647,6594,0.090939349,0.105299657,0,0.142857143,0.060881537,0.224832749,0.163934426,0.071027861,0.256840992,,,,0.075098814,0.056348895,0.093848733,0.099366145,0.091360339,0.10737195,,,,0.110294118,0.057645615,0.16294262,0.172,,,0.138,0.209,0.324,,,0.278,0.371,7.4,0.091689384,0.116,,,0.25,,,0.213,0.291,0.828128322,66213,79955,,,0.196109194,,,0.163811189,0.229353409,0.340909091,15,44,0.262598167,0.41884339,597.1,475,79555,,,25.52732502,426,16688,23.10319126,27.95145878,,,,,,,,,,34.18803419,26.75003119,43.05417096,22.96068075,20.41696451,25.50439699,,,,36.36363636,21.55139552,57.47022276,0.138917794,9078,65348,0.123428432,0.154407156,0.000716486,57,79555,,,1395.701754,0.000854261,68,79601,,,1170.602941,0.004798935,382,79601,,,208.3795812,2661,,,,,,,,2859,2632,0.44,,,,,0.22,0.55,,0.25,0.44,0.42,,,,,0.32,0.38,0.29,0.31,0.42,0.941048965,50795,53977,0.930013286,0.952084644,0.679059422,14959,22029,0.629447553,0.72867129,0.040251155,1577,39179,,,0.139,2544,,0.092531915,0.185468085,0.083086053,0,0.298116555,,,,,,,0.139500187,0.068197047,0.210803327,0.108953907,0.074610995,0.143296818,4.035085041,132145,32749,3.669592462,4.400577619,0.220619319,4175,18924,0.176387831,0.264850808,14.45540821,115,79555,,,104.7907945,418,398890,94.74484327,114.8367456,,,,,,,,,,56.86664771,34.73562578,87.82592523,110.9197922,99.79649768,122.0430868,,,,3.8,,,,,1,,,,,0.115671075,3805,32895,0.098247594,0.133094555,0.088302928,0.072089349,0.104516507,0.02006384,0.012435979,0.0276917,0.010943912,0.004705425,0.0171824,0.809081861,32517,40190,0.786404711,0.831759012,,,,,,,,,,0.831402831,0.766411902,0.89639376,0.815742908,0.794432776,0.837053039,0.101,,40190,0.084107723,0.117892277,75.41826418,,,74.78078004,76.05574832,,,,,,,,,,77.89153219,74.76033076,81.02273361,75.31700387,74.6322798,76.00172794,,,,466.12497,1335,225463,440.1342778,492.1156621,1039.178565,672.5015751,1534.032558,,,,745.6793493,455.4803188,1151.641277,445.2340968,342.1301048,569.6478201,465.0972242,437.6344714,492.5599769,,,,60.91734353,51,83720,45.3569635,80.09505659,,,,,,,,,,,,,67.21132735,49.02440337,89.93404403,,,,7.523148148,52,6912,5.618646875,9.865607891,,,,,,,,,,,,,8.32595217,6.117596487,11.07175135,,,,,,,0.11,,,0.094,0.127,0.161,,,0.139,0.184,0.08,,,0.069,0.093,51.4,34,66158,,,0.116,9200,,,,0.091689384,6917.963987,75450,,,17.48339078,42,240228,12.60049026,23.63246532,,,,,,,,,,,,,16.44339121,11.38752642,22.97799105,,,,0.335,,,0.318,0.35,0.162879519,7591,46605,0.1426242,0.183134839,0.084093109,1651,19633,0.0626463,0.105539917,0.001809023,144,79601,,,552.7847222,0.8,830.4,1038,,,,,,,,3.093819044,,,,,,,,2.672418465,3.18814422,3.209440415,,,,,,,,2.839851109,3.290371359,0.030019678,,,,,8080.398,,,,,0.755052689,47147,62442,0.688993363,0.821112015,70142,,,64209.57447,76074.42553,,,,,,,,,,60266,41037.74468,79494.25532,70446,65747.95745,75144.04255,,,,,,0.389672069,5169,13265,,,82.72416078,,,,,0.213352913,,70142,,,9.478672986,48,5064,,,4.803355945,27,562107,3.165441834,6.988630714,,,,,,,,,,,,,5.350752089,3.495288913,7.840091556,,,,32.4219497,128,398890,26.6728461,38.17105329,32.08904711,,,,,,,,,,,,,34.51664834,28.1545853,40.87871139,,,,27.0751335,108,398890,21.96873386,32.18153313,,,,,,,,,,,,,30.19805861,24.3941786,36.00193863,,,,15.83328441,89,562107,12.71542752,19.48421891,,,,,,,,,,,,,15.64065995,12.3230611,19.57661824,,,,7.415730337,,8900,,,66,,0.589899158,35391,59995,,,0.64,,,,,83.08471126,,,,,0.727678979,23937,32895,0.707855174,0.747502784,0.096097972,3076,32009,0.078621099,0.113574846,0.894725642,29432,32895,0.87979888,0.909652405,79601,,,,,0.234218163,18644,79601,,,0.172472708,13729,79601,,,0.010112938,805,79601,,,0.014333991,1141,79601,,,0.009610432,765,79601,,,0.000766322,61,79601,,,0.095702315,7618,79601,,,0.856207837,68155,79601,,,0.004918648,367,74614,0.001751225,0.008086071,0.494378211,39353,79601,,,0.152635858,12204,79955,, -56,027,56027,WY,Niobrara County,2024,1,5631.939212,27,6301,2910.105175,9837.864399,1,,,,2,,,,2,,,,2,,,,2,6278.543667,3134.226377,11234.04893,1,,,,2,,0.166,,,0.139,0.196,3.869922593,,,3.022933144,4.776143252,5.105825089,,,4.066572849,6.207239927,,,,,,0,,,,,,,,,,,,,,,,,,,,,,0.206,,,0.163,0.253,0.343,,,0.268,0.42,6.8,0.092779576,0.143,,,0.272,,,0.22,0.328,0.702067288,1732,2467,,,0.151568859,,,0.118768744,0.189662842,0.222222222,2,9,0.058854756,0.422872156,0,0,2438,,,30.03003003,10,333,14.40056666,55.22629442,,,,,,,,,,,,,,,,,,,,,,0.188560654,300,1591,0.161156398,0.215964909,0.000820345,2,2438,,,1219,0.000420168,1,2380,,,2380,0.000420168,1,2380,,,2380,797,,,,,,,,,802,0.24,,,,,,,,,0.24,0.09,,,,,,,,,0.09,0.919234857,1730,1882,0.855519768,0.982949945,0.558309038,383,686,0.385087986,0.73153009,0.028571429,35,1225,,,0.205,85,,0.120404255,0.289595745,,,,,,,,,,,,,0.358247423,0.150355965,0.56613888,4.738802922,104429,22037,3.32733898,6.150266865,0.105381166,47,446,0,0.242566857,0,0,2438,,,118.1035937,14,11854,64.5683337,198.1577621,,,,,,,,,,,,,129.3900185,70.73872714,217.0944651,,,,2.9,,,,,1,,,,,0.116666667,105,900,0.057210325,0.176123009,0.089772727,0.018413745,0.16113171,0.011111111,0,0.045020603,0.022222222,0,0.060045791,0.797783934,864,1083,0.722826151,0.872741716,,,,,,,,,,,,,0.777581642,0.694083959,0.861079324,0.28,,1083,0.134858206,0.425141794,78.7558481,,,75.78599064,81.72570557,,,,,,,,,,,,,78.15324528,74.96945287,81.3370377,,,,284.7857033,27,6301,180.5297067,427.3183834,,,,,,,,,,,,,307.604834,192.7743118,465.7174153,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.123,,,0.105,0.144,0.179,,,0.153,0.205,0.093,,,0.078,0.11,,,,,,0.143,350,,,,0.092779576,230.4644665,2484,,,,,,,,,,,,,,,,,,,,,,,,,,0.331,,,0.313,0.349,0.206055509,245,1189,0.172693807,0.239417211,0.140142518,59,421,0.094865922,0.185419114,0.000420168,1,2380,,,2380,0.625,63.75,102,,,,,,,,2.778625822,,,,,,,,,2.817835969,2.80254157,,,,,,,,,2.793702628,0.012683201,,,,,-2004.925,,,,,0.608035732,31447,51719,0.167451422,1.048620041,54573,,,46304.06383,62841.93617,,,,,,,,,,,,,53531,42746.82979,64315.17021,,,,,,0.250803859,234,933,,,,,,,,0.211753065,,54573,,,10,1,100,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,200,,,-888,,0.706951872,1322,1870,,,0.456,,,,,17.07107888,,,,,0.704291045,755,1072,0.597611541,0.810970549,0.205257836,203,989,0.09765138,0.312864293,0.742537313,796,1072,0.668535504,0.816539123,2380,,,,,0.178151261,424,2380,,,0.255462185,608,2380,,,0.009663866,23,2380,,,0.017226891,41,2380,,,0.005882353,14,2380,,,0,0,2380,,,0.051680672,123,2380,,,0.893277311,2126,2380,,,0.002947368,7,2375,0,0.028802075,0.542436975,1291,2380,,,1,2467,2467,, -56,029,56029,WY,Park County,2024,1,7255.490549,458,79771,6123.816833,8387.164265,0,,,,2,,,,2,,,,2,,,,2,7431.02764,6220.12633,8641.928951,,,,,2,,0.124,,,0.102,0.149,3.313656255,,,2.591743638,4.147047798,4.320293668,,,3.490237547,5.23628494,0.074351297,149,2004,0.062865145,0.08583745,0,,,,,,,,,,,,,0.077541643,0.064978521,0.090104765,,,,,,,0.157,,,0.119,0.197,0.295,,,0.242,0.354,7.9,0.079950519,0.099,,,0.2,,,0.163,0.244,0.666047799,19731,29624,,,0.165059719,,,0.133580861,0.200315609,0.380952381,8,21,0.265693072,0.491053906,235.8,71,30108,,,12.22451791,71,5808,9.547449906,15.41956596,,,,,,,,,,23.5042735,11.73324865,42.05563785,11.01928375,8.323848521,14.30945652,,,,,,,0.129762118,2902,22364,0.111889777,0.147634458,0.001295337,39,30108,,,772,0.000720886,22,30518,,,1387.181818,0.003932106,120,30518,,,254.3166667,2033,,,,,,,,,2048,0.42,,,,,,,,0.33,0.42,0.41,,,,,,,,0.35,0.42,0.954059332,20518,21506,0.939864897,0.968253768,0.749466951,4921,6566,0.649914108,0.849019794,0.035783366,555,15510,,,0.125,760,,0.076148936,0.173851064,,,,,,,0.597938144,0.378503276,0.817373012,0.346902655,0.218849709,0.474955601,0.107398568,0.053766285,0.161030851,4.185338545,126347,30188,3.49191654,4.87876055,0.196999348,1208,6132,0.115973513,0.278025182,16.93901953,51,30108,,,96.25487206,142,147525,80.42291438,112.0868297,,,,,,,,,,,,,102.9704743,85.79023374,120.1507149,,,,2.9,,,,,0,,,,,0.09304175,1170,12575,0.069977788,0.116105712,0.078768493,0.055855237,0.101681748,0.009860835,0.000985978,0.018735693,0.009940358,0.00090125,0.018979466,0.762873667,10948,14351,0.735728651,0.790018684,,,,,,,,,,,,,0.767850176,0.741236946,0.794463405,0.16,,14351,0.116270555,0.203729445,78.60269442,,,77.60072953,79.60465931,,,,,,,,,,81.22526409,76.55483048,85.8956977,78.34969344,77.30825653,79.39113035,,,,367.432909,458,79771,329.6244661,405.2413518,,,,,,,,,,,,,376.1276141,336.1873998,416.0678284,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.098,,,0.083,0.117,0.147,,,0.126,0.172,0.076,,,0.064,0.089,19.4,5,25816,,,0.099,2940,,,,0.079950519,2255.004387,28205,,,,,,,,,,,,,,,,,,,,,,,,,,0.325,,,0.308,0.343,0.144192338,2345,16263,0.12274553,0.165639147,0.096457,618,6407,0.069052745,0.123861256,0.00173668,53,30518,,,575.8113208,0.896532258,277.925,310,,,,,,,,3.556054896,,,,,,,,3.444389619,3.580019707,3.487171994,,,,,,,,3.041207951,3.529754763,0.044325502,,,,,6272.205667,,,,,0.671717003,40256,59930,0.54977446,0.793659547,69802,,,61537.82979,78066.17021,18763,18641.46809,18884.53192,,,,,,,38464,3583.148936,73344.85106,69382,62308.12766,76455.87234,,,,,,0.301603461,1185,3929,,,,,,,,0.221741497,,69802,,,13.4589502,20,1486,,,,,,,,,,,,,,,,,,,,,,,,,,32.70097731,49,147525,23.56798811,44.20222152,33.21470937,,,,,,,,,,,,,34.84852063,25.00790006,47.27595319,,,,27.79189968,41,147525,19.94394704,37.70285007,,,,,,,,,,,,,29.8465143,21.3227874,40.64248126,,,,16.98155318,35,206106,11.828274,23.61722966,,,,,,,,,,,,,17.65225066,12.15099712,24.79032297,,,,7.142857143,,2800,,,20,,0.732839399,16815,22945,,,0.659,,,,,29.77197108,,,,,0.735555556,9599,13050,0.708193036,0.762918075,0.094022565,1175,12497,0.069644234,0.118400897,0.892030651,11641,13050,0.866874778,0.917186525,30518,,,,,0.203519235,6211,30518,,,0.251196016,7666,30518,,,0.006455207,197,30518,,,0.010256242,313,30518,,,0.008093584,247,30518,,,0.000589816,18,30518,,,0.063241366,1930,30518,,,0.900812635,27491,30518,,,0.000668426,19,28425,0,0.004316404,0.499639557,15248,30518,,,0.443559276,13140,29624,, -56,031,56031,WY,Platte County,2024,1,10087.44884,156,22727,7203.77575,12971.12193,0,,,,2,,,,2,,,,2,,,,2,11349.45134,7964.663332,14734.23934,,,,,2,,0.146,,,0.12,0.171,3.514680869,,,2.764898524,4.372224259,4.658515897,,,3.727028719,5.6810351,0.078853047,44,558,0.056490942,0.101215151,0,,,,,,,,,,,,,0.077568134,0.053562914,0.101573355,,,,,,,0.17,,,0.132,0.209,0.36,,,0.289,0.435,8.1,0.043427303,0.11,,,0.238,,,0.192,0.287,0.777803603,6693,8605,,,0.161470762,,,0.12682491,0.197625346,0.318181818,7,22,0.204127461,0.433005911,137.9,12,8699,,,16.26545218,25,1537,10.52614304,24.01101607,,,,,,,,,,,,,14.91365777,8.978996204,23.289524,,,,,,,0.175748032,1116,6350,0.151918244,0.199577819,0.000459823,4,8699,,,2174.75,0.000347021,3,8645,,,2881.666667,0.00242915,21,8645,,,411.6666667,3120,,,,,,,,,3204,0.39,,,,,,,,,0.38,0.33,,,,,,,,0.23,0.33,0.935483871,6148,6572,0.910472125,0.960495617,0.675465839,1305,1932,0.549814958,0.801116719,0.034745573,155,4461,,,0.158,279,,0.088893617,0.227106383,,,,,,,,,,,,,0.173559823,0.06241006,0.284709586,5.368856503,141464,26349,3.261294681,7.476418325,0.045724466,77,1684,0.010810926,0.080638005,19.54247615,17,8699,,,105.1451002,45,42798,76.69355762,140.6924167,,,,,,,,,,,,,116.9435216,84.97134182,156.9912194,,,,3.3,,,,,1,,,,,0.094928479,365,3845,0.038313661,0.151543296,0.085825748,0.03310837,0.138543125,0.002080624,0,0.009788801,0.009102731,0,0.0254538,0.773898111,2704,3494,0.694606777,0.853189445,,,,,,,,,,,,,0.765468092,0.707796403,0.823139781,0.212,,3494,0.127429431,0.296570569,76.03155641,,,73.84678672,78.2163261,,,,,,,,,,,,,74.91712898,72.4687719,77.36548606,,,,437.3765981,156,22727,359.3638701,515.3893261,,,,,,,,,,,,,470.5688653,383.1159845,558.021746,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.108,,,0.091,0.125,0.157,,,0.134,0.181,0.084,,,0.07,0.099,,,,,,0.11,940,,,,0.043427303,376.3844339,8667,,,,,,,,,,,,,,,,,,,,,,,,,,0.314,,,0.298,0.33,0.190163934,870,4575,0.16156819,0.218759679,0.141163793,262,1856,0.098270176,0.18405741,0.000462695,4,8645,,,2161.25,0.81505102,79.875,98,,,,,,,,3.695735195,,,,,,,,,3.771329043,3.824548632,,,,,,,,,3.807489923,0.040206837,,,,,11973.475,,,,,0.770916648,44145,57263,0.571522523,0.970310773,61185,,,52116.57447,70253.42553,,,,,,,,,,,,,64375,59058.57447,69691.42553,,,,,,0.32337884,379,1172,,,,,,,,0.215804527,,61185,,,10.17811705,4,393,,,,,,,,,,,,,,,,,,,,,,,,,,39.75224769,17,42798,21.73292373,66.69751693,39.72148231,,,,,,,,,,,,,45.92984773,25.11027515,77.06248009,,,,37.38492453,16,42798,21.36871455,60.71077526,,,,,,,,,,,,,42.52491694,24.30666433,69.05780092,,,,29.85569746,18,60290,17.69437847,47.18487356,,,,,,,,,,,,,32.00180716,18.64223198,51.23799333,,,,26.25,,800,,,21,,0.718754526,4963,6905,,,0.57,,,,,16.17586488,,,,,0.740740741,2860,3861,0.684957044,0.796524437,0.111742424,413,3696,0.058166777,0.165318072,0.742553743,2867,3861,0.661527498,0.823579987,8645,,,,,0.206246385,1783,8645,,,0.269635628,2331,8645,,,0.00578369,50,8645,,,0.012955466,112,8645,,,0.007865818,68,8645,,,0.001156738,10,8645,,,0.084904569,734,8645,,,0.876691729,7579,8645,,,0.00922666,76,8237,0,0.02484489,0.492770388,4260,8645,,,1,8605,8605,, -56,033,56033,WY,Sheridan County,2024,1,6844.199503,453,85134,5800.361846,7888.03716,0,,,,2,,,,2,,,,2,,,,2,6823.237895,5732.33389,7914.141901,,,,,2,,0.125,,,0.105,0.151,3.100296103,,,2.411467733,3.894281466,4.70018109,,,3.813071506,5.636090394,0.071658245,156,2177,0.06082362,0.08249287,0,,,,,,,,,,,,,0.072727273,0.061126335,0.084328211,,,,,,,0.165,,,0.129,0.207,0.304,,,0.25,0.365,7.8,0.089617747,0.102,,,0.205,,,0.167,0.249,0.871381909,26944,30921,,,0.179167116,,,0.145446846,0.215969901,0.2,3,15,0.07369192,0.354373303,281.2,89,31646,,,17.53576373,114,6501,14.31670922,20.75481824,,,,,,,,,,,,,17.19298246,13.95809422,20.95273865,,,,,,,0.148363274,3576,24103,0.129299445,0.167427104,0.000663591,21,31646,,,1506.952381,0.000934696,30,32096,,,1069.866667,0.005109671,164,32096,,,195.7073171,2740,,,,,,,,,2713,0.38,,,,,,0.45,,,0.38,0.42,,,,,0.37,0.53,,0.25,0.42,0.963077202,21232,22046,0.946366934,0.97978747,0.627485699,4607,7342,0.552003596,0.702967801,0.033374537,540,16180,,,0.102,659,,0.057914894,0.146085106,0.136363636,0,0.852071798,,,,,,,,,,0.075728155,0.034795762,0.116660548,4.438999662,131350,29590,3.744449994,5.13354933,0.143498429,959,6683,0.084110415,0.202886443,15.79978512,50,31646,,,98.41172599,151,153437,82.71480593,114.108646,,,,,,,,,,,,,102.0947268,85.36105046,118.8284031,,,,5.8,,,,,0,,,,,0.1523129,2025,13295,0.12073838,0.183887419,0.125,0.092882025,0.157117975,0.013087627,0.003116673,0.023058581,0.02143663,0.006351243,0.036522018,0.783242259,12040,15372,0.754258063,0.812226454,,,,,,,,,,,,,0.786014721,0.755267813,0.816761629,0.148,,15372,0.110814841,0.185185159,78.6068003,,,77.66511506,79.54848554,,,,,,,,,,,,,78.49732549,77.52543294,79.46921804,,,,352.5418141,453,85134,317.2757827,387.8078456,,,,,,,,,,,,,355.1796734,318.4134706,391.9458762,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.098,,,0.083,0.116,0.154,,,0.131,0.18,0.077,,,0.066,0.092,59,16,27108,,,0.102,3140,,,,0.089617747,2609.310333,29116,,,,,,,,,,,,,,,,,,,,,,,,,,0.319,,,0.301,0.335,0.168218991,2962,17608,0.145580694,0.190857289,0.099381625,675,6792,0.07197737,0.126785881,0.001651296,53,32096,,,605.5849057,0.834349594,307.875,369,,,,,,,,3.613045185,,,,,,,,,3.626674393,3.838803096,,,,,,,,,3.844582551,0.035664332,,,,,6698.533,,,,,0.660137165,43507,65906,0.572599037,0.747675293,70224,,,61939.57447,78508.42553,61536,32779.40426,90292.59575,59167,20043.25532,98290.74468,,,,55739,21368.10638,90109.89362,70293,61828.65957,78757.34043,,,,,,0.248739496,1184,4760,,,,,,,,0.226204716,,70224,,,12.89009498,19,1474,,,,,,,,,,,,,,,,,,,,,,,,,,22.22905711,39,153437,15.39426825,31.06287924,25.4175981,,,,,,,,,,,,,24.32221042,16.84383777,33.98785119,,,,22.81066496,35,153437,15.88846393,31.72411307,,,,,,,,,,,,,22.84637242,15.62690183,32.25226113,,,,16.38223978,35,213646,11.41083025,22.7837298,,,,,,,,,,,,,14.85176403,9.946459461,21.32961055,,,,4.193548387,,3100,,,13,,0.699471571,16546,23655,,,0.673,,,,,53.24012385,,,,,0.689652533,9011,13066,0.654592148,0.724712919,0.143691495,1796,12499,0.107348178,0.180034813,0.855885504,11183,13066,0.821845422,0.889925586,32096,,,,,0.206349701,6623,32096,,,0.230714108,7405,32096,,,0.006355932,204,32096,,,0.014113908,453,32096,,,0.007757976,249,32096,,,0.000747757,24,32096,,,0.051688684,1659,32096,,,0.909552592,29193,32096,,,0.003532143,105,29727,0,0.008977101,0.497320538,15962,32096,,,0.371624462,11491,30921,, -56,035,56035,WY,Sublette County,2024,1,8687.193515,114,26064,6137.315008,11237.07202,0,,,,2,,,,2,,,,2,,,,2,9199.567166,6282.809154,12116.32518,,,,,2,,0.122,,,0.102,0.143,3.12726076,,,2.437566902,3.898505135,4.496238437,,,3.559429828,5.482721446,0.087579618,55,628,0.065470304,0.109688932,0,,,,,,,,,,,,,0.076171875,0.053193781,0.099149969,,,,,,,0.159,,,0.126,0.196,0.251,,,0.196,0.315,8.2,0.042679118,0.104,,,0.193,,,0.156,0.233,0.544110907,4749,8728,,,0.187269681,,,0.150188774,0.228715254,0.428571429,6,14,0.287681515,0.555967845,184,16,8697,,,11.12412178,19,1708,6.697447989,17.37169413,,,,,,,,,,,,,12.10826211,7.053508882,19.38650058,,,,,,,0.177454866,1209,6813,0.153625079,0.201284653,0.000344947,3,8697,,,2899,0.000456465,4,8763,,,2190.75,0.001255278,11,8763,,,796.6363636,1354,,,,,,,,,1323,0.32,,,,,,,,,0.32,0.39,,,,,,,,,0.39,0.958602846,5928,6184,0.939098191,0.978107501,0.724191063,1410,1947,0.561924636,0.886457491,0.041347626,162,3918,,,0.089,163,,0.05206383,0.12593617,,,,,,,,,,0.213636364,0,0.582078467,0.103911267,0.036469333,0.171353201,4.576608922,152964,33423,2.748575752,6.404642092,0.133130081,262,1968,0.056491277,0.209768886,6.898930666,6,8697,,,87.50729227,42,47996,63.06755924,118.2844378,,,,,,,,,,,,,93.76684873,66.98841145,127.6838345,,,,2.8,,,,,0,,,,,0.075070822,265,3530,0.030945938,0.119195705,0.069405099,0.024927591,0.113882607,0.007082153,0,0.019236502,0,0,0.008114829,0.688659794,3006,4365,0.647035904,0.730283684,,,,,,,,,,,,,0.747286039,0.677888408,0.816683669,0.362,,4365,0.245978054,0.478021946,81.12452665,,,78.391681,83.85737229,,,,,,,,,,,,,80.64849037,77.70489599,83.59208476,,,,326.4966514,114,26064,261.183372,391.8099307,,,,,,,,,,,,,337.4785241,266.13869,408.8183582,,,,122.0730219,11,9011,60.93841269,218.4223562,,,,,,,,,,,,,133.0317946,63.79391641,244.6502068,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.097,,,0.084,0.112,0.149,,,0.127,0.172,0.076,,,0.064,0.089,,,,,,0.104,920,,,,0.042679118,437.3329184,10247,,,,,,,,,,,,,,,,,,,,,,,,,,0.305,,,0.287,0.322,0.187361642,931,4969,0.159957387,0.214765898,0.155750387,302,1939,0.11166528,0.199835493,0.000684697,6,8763,,,1460.5,0.933064516,115.7,124,,,,,,,,3.573649542,,,,,,,,,3.581829725,3.693338244,,,,,,,,,3.667567967,0.016356519,,,,,9812.6085,,,,,0.610752248,47748,78179,0.417550585,0.803953911,85649,,,75622.61702,95675.38298,,,,,,,,,,95397,49748.65957,141045.3404,82986,64529.82979,101442.1702,,,,,,0.075675676,112,1480,,,,,,,,0.205886817,,85649,,,12.65822785,6,474,,,,,,,,,,,,,,,,,,,,,,,,,,17.98994198,10,47996,7.76678006,35.44735745,20.83506959,,,,,,,,,,,,,20.47880019,8.84129238,40.3514003,,,,22.91857655,11,47996,11.44087084,41.00766421,,,,,,,,,,,,,23.44171218,11.24121216,43.11014333,,,,25.12414282,17,67664,14.63573905,40.22618647,,,,,,,,,,,,,28.35554518,16.51815,45.39997467,,,,10,,1000,,,10,,0.675219446,5000,7405,,,0.406,,,,,7.593842807,,,,,0.828875467,2882,3477,0.786928344,0.870822591,0.073001508,242,3315,0.028476409,0.117526608,0.882945068,3070,3477,0.817072208,0.948817928,8763,,,,,0.212826658,1865,8763,,,0.238845144,2093,8763,,,0.008216364,72,8763,,,0.011639849,102,8763,,,0.007988132,70,8763,,,0.001369394,12,8763,,,0.068469702,600,8763,,,0.888394386,7785,8763,,,0.002035684,17,8351,0,0.012310346,0.46901746,4110,8763,,,1,8728,8728,, -56,037,56037,WY,Sweetwater County,2024,1,9732.214769,672,120841,8682.142301,10782.28724,0,,,,2,,,,2,,,,2,7167.468314,5165.680719,9688.334973,,10110.50566,8885.838711,11335.1726,,,,,2,,0.144,,,0.122,0.168,3.637752908,,,2.900022891,4.436912429,5.213634393,,,4.30810273,6.153179918,0.100880932,355,3519,0.090930096,0.110831769,0,,,,,,,,,,0.114992722,0.091137344,0.1388481,0.098113208,0.086787303,0.109439112,,,,,,,0.178,,,0.143,0.216,0.343,,,0.287,0.399,7.9,0.052266239,0.114,,,0.257,,,0.214,0.301,0.926215935,39153,42272,,,0.193451746,,,0.158677124,0.231669671,0.177419355,11,62,0.115518149,0.247631365,310,129,41614,,,22.07246801,226,10239,19.1947201,24.95021593,,,,,,,,,,25.90931739,19.35031749,33.97662269,21.02651169,17.77855401,24.27446937,,,,,,,0.1554898,5465,35147,0.13642597,0.17455363,0.000432547,18,41614,,,2311.888889,0.000604668,25,41345,,,1653.8,0.002539606,105,41345,,,393.7619048,1167,,,,,,,,,1237,0.32,,,,,,0.38,0.42,0.34,0.32,0.38,,,,,0.33,0.63,0.19,0.36,0.39,0.930455896,25675,27594,0.916800709,0.944111084,0.622269991,7237,11630,0.561571985,0.682967998,0.041574819,811,19507,,,0.149,1496,,0.109680851,0.188319149,0.068627451,0,0.529880916,0.675675676,0.047115934,1,0.209039548,0,0.609995954,0.221580817,0.134521329,0.308640305,0.132625995,0.080788644,0.184463346,4.352630604,140973,32388,3.746169758,4.95909145,0.155260947,1663,10711,0.114611143,0.19591075,8.891238526,37,41614,,,102.2442136,218,213215,88.67150379,115.8169234,,,,,,,,,,69.65405154,44.62866512,103.6397074,108.9021597,93.16654719,124.6377722,,,,4.5,,,,,1,,,,,0.105246423,1655,15725,0.082126477,0.128366369,0.085456304,0.062111385,0.108801224,0.016852146,0.006205627,0.027498666,0.006995231,0,0.014406957,0.772692084,15970,20668,0.74176134,0.803622829,,,,,,,,,,0.663559832,0.592988488,0.734131175,0.787615708,0.759934455,0.81529696,0.192,,20668,0.157570287,0.226429713,75.16597373,,,74.28108092,76.05086655,,,,,,,,,,78.55426072,75.61546869,81.49305275,74.69775489,73.71336934,75.68214044,,,,468.6671422,672,120841,432.3426773,504.9916071,,,,,,,,,,365.0972602,279.2704749,468.9827044,480.5930598,440.0060307,521.180089,,,,49.87634822,24,48119,31.95671742,74.21205261,,,,,,,,,,,,,48.22284628,28.09158503,77.20944832,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.107,,,0.092,0.123,0.161,,,0.139,0.185,0.088,,,0.075,0.102,55.2,19,34421,,,0.114,4850,,,,0.052266239,2289.574884,43806,,,22.1116639,28,126630,14.69304008,31.95751081,,,,,,,,,,,,,21.94163525,13.75070599,33.21989946,,,,0.304,,,0.289,0.317,0.177090909,4383,24750,0.153261122,0.200920696,0.107634428,1173,10898,0.079038684,0.136230173,0.000919095,38,41345,,,1088.026316,0.803681672,499.89,622,,,,,,,,3.253743713,,,,,,,,3.091817574,3.299245519,3.416824119,,,,,,,,3.271912695,3.450273463,0.03314771,,,,,8290.2595,,,,,0.654423878,47271,72233,0.574108707,0.73473905,75779,,,65863.42553,85694.57447,85773,67434.78723,104111.2128,75000,35503.31915,114496.6809,85952,1499.234043,170404.766,65113,55795.55319,74430.44681,81963,76124.70213,87801.29787,,,,,,0.26413821,1957,7409,,,60.71882751,,,,,0.196558413,,75779,,,4.516371848,12,2657,,,,,,,,,,,,,,,,,,,,,,,,,,34.53021335,74,213215,26.96838311,43.55516565,34.7067514,,,,,,,,,,,,,38.40124895,29.50857408,49.13187896,,,,27.20258894,58,213215,20.65606626,35.16565427,,,,,,,,,,,,,30.77669731,22.98550962,40.35954388,,,,17.21820096,52,302006,12.85937604,22.57937979,,,,,,,,,,,,,18.35949562,13.34003762,24.64676593,,,,10.75471698,,5300,,,57,,0.544352078,16698,30675,,,0.62,,,,,63.73916494,,,,,0.733516988,11982,16335,0.705374368,0.761659608,0.089551302,1427,15935,0.066627175,0.112475429,0.887970615,14505,16335,0.868877091,0.907064139,41345,,,,,0.247381787,10228,41345,,,0.149328819,6174,41345,,,0.010642158,440,41345,,,0.015237635,630,41345,,,0.009142581,378,41345,,,0.00162051,67,41345,,,0.166453017,6882,41345,,,0.788390374,32596,41345,,,0.010152541,402,39596,0.003275555,0.017029527,0.480735276,19876,41345,,,0.107541635,4546,42272,, -56,039,56039,WY,Teton County,2024,1,4267.876402,123,66376,3065.624262,5470.128542,0,,,,2,,,,2,,,,2,,,,2,4679.840244,3142.698835,6216.981653,,,,,2,,0.1,,,0.081,0.123,2.544521303,,,1.927739165,3.22800584,4.105951604,,,3.255025029,5.027710769,0.07751938,120,1548,0.064197842,0.090840918,0,,,,,,,,,,0.077348066,0.049828254,0.104867878,0.081316554,0.064648752,0.097984356,,,,,,,0.111,,,0.081,0.147,0.217,,,0.168,0.273,8.7,0.038117524,0.084,,,0.161,,,0.128,0.202,0.992284943,23151,23331,,,0.230959823,,,0.189438266,0.275434672,0.333333333,4,12,0.175768434,0.488588466,343.6,81,23575,,,7.357268982,25,3398,4.761236565,10.86078037,,,,,,,,,,24.86486487,15.76219139,37.30950583,,,,,,,,,,0.162862807,3204,19673,0.141415998,0.184309615,0.000933192,22,23575,,,1071.590909,0.00107356,25,23287,,,931.48,0.006097823,142,23287,,,163.9929578,1772,,,,,,,,,1803,0.44,,,,,,,,,0.44,0.54,,,,,,0.62,,0.5,0.54,0.959659822,17152,17873,0.943067867,0.976251777,0.746104602,6177,8279,0.649343004,0.8428662,0.027272181,454,16647,,,0.053,208,,0.031553192,0.074446809,,,,,,,,,,0.109565217,0.004801086,0.214329349,0.073688128,0.012495435,0.134880821,3.68224017,207439,56335,2.929094191,4.43538615,0.157612668,647,4105,0.071709183,0.243516152,18.23966066,43,23575,,,58.1783337,68,116882,45.17775257,73.7549008,,,,,,,,,,,,,64.27209222,49.16305784,82.56019125,,,,3.6,,,,,1,,,,,0.16159601,1620,10025,0.110736241,0.212455779,0.111334002,0.074409454,0.14825855,0.048877806,0.021125921,0.07662969,0.028428928,0.004037717,0.052820139,0.599368436,8731,14567,0.545956262,0.652780609,,,,,,,,,,0.537598945,0.438278756,0.636919134,0.632262295,0.586184418,0.678340172,0.125,,14567,0.076047329,0.173952671,85.9500598,,,84.21572508,87.68439452,,,,,,,,,,,,,85.35055587,83.49834809,87.20276365,,,,150.9099006,123,66376,122.9632095,178.8565916,,,,,,,,,,,,,158.473162,126.005175,190.9411489,,,,60.60939997,11,18149,30.25599409,108.4469586,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.08,,,0.067,0.096,0.127,,,0.108,0.15,0.066,,,0.056,0.079,58,12,20683,,,0.084,1950,,,,0.038117524,811.6745564,21294,,,,,,,,,,,,,,,,,,,,,,,,,,0.265,,,0.249,0.281,0.167896918,2593,15444,0.142875641,0.192918195,0.148483477,656,4418,0.110355817,0.186611136,0.001674754,39,23287,,,597.1025641,0.975,159.9,164,,,,,,,,3.538906445,,,,,,,,3.084304063,3.769645758,3.606338362,,,,,,,,2.995701597,3.93786951,0.076490687,,,,,12415.67,,,,,0.831273005,56687,68193,0.683508176,0.979037833,127677,,,111357.1702,143996.8298,,,,113333,74483.29787,152182.7021,,,,76818,55243.70213,98392.29787,110664,104339.5745,116988.4255,,,,,,0.078232524,216,2761,,,,,,,,0.353658059,,127677,,,16.85393258,18,1068,,,,,,,,,,,,,,,,,,,,,,,,,,13.18818529,19,116882,7.816154424,20.84301852,16.25571089,,,,,,,,,,,,,14.95455564,8.863017441,23.63464521,,,,11.1223285,13,116882,5.922171499,19.01952047,,,,,,,,,,,,,13.69733113,7.293251948,23.42285338,,,,9.804041716,16,163198,5.603856943,15.92114952,,,,,,,,,,,,,10.5548854,5.770454068,17.70930422,,,,,,1900,,,-888,,0.861964442,14787,17155,,,0.412,,,,,44.31458898,,,,,0.622395023,6003,9645,0.595607932,0.649182115,0.130145798,1214,9328,0.092833428,0.167458167,0.892068429,8604,9645,0.846012436,0.938124422,23287,,,,,0.17129729,3989,23287,,,0.175892129,4096,23287,,,0.007128441,166,23287,,,0.01137974,265,23287,,,0.018808777,438,23287,,,0.001588869,37,23287,,,0.157641603,3671,23287,,,0.798557135,18596,23287,,,0.025509292,571,22384,0.010298506,0.040720079,0.475844892,11081,23287,,,0.538811024,12571,23331,, -56,041,56041,WY,Uinta County,2024,1,11027.13628,320,57948,9256.647732,12797.62483,0,,,,2,,,,2,,,,2,,,,2,11120.50238,9215.29759,13025.70716,,,,,2,,0.141,,,0.116,0.166,3.405616965,,,2.685729653,4.257472267,4.9576766,,,4.01364781,5.99571462,0.096607246,168,1739,0.082722132,0.110492359,0,,,,,,,,,,0.086956522,0.046242503,0.12767054,0.099455041,0.084145607,0.114764475,,,,,,,0.168,,,0.133,0.208,0.333,,,0.27,0.398,8.5,0.01374147,0.103,,,0.228,,,0.185,0.275,0.636625917,13019,20450,,,0.166655119,,,0.134007977,0.202585456,0.125,3,24,0.040232942,0.245512437,169.6,35,20635,,,22.65891317,113,4987,18.48103353,26.83679282,,,,,,,,,,26.64576803,15.5221418,42.66245582,21.76512796,17.52392334,26.72275411,,,,,,,0.144314953,2489,17247,0.125251124,0.163378783,0.000581536,12,20635,,,1719.583333,0.000869061,18,20712,,,1150.666667,0.003572808,74,20712,,,279.8918919,2196,,,,,,,,,2275,0.39,,,,,,,,0.44,0.39,0.35,,,,,,,,0.21,0.36,0.943649239,12526,13274,0.925443146,0.961855332,0.586153549,3031,5171,0.496570224,0.675736873,0.0382489,339,8863,,,0.132,726,,0.079574468,0.184425532,,,,,,,,,,0.078358209,0,0.179753008,0.060097216,0.017509361,0.102685071,3.471517908,122128,35180,3.015240513,3.927795303,0.101439101,578,5698,0.050387967,0.152490236,3.392294645,7,20635,,,91.29282419,93,101870,73.68509151,111.8398773,,,,,,,,,,,,,94.62976106,75.48040346,117.1580833,,,,5.3,,,,,0,,,,,0.083440308,650,7790,0.051137087,0.11574353,0.053875969,0.027894098,0.07985784,0.030166881,0.009677236,0.050656525,0.003851091,0,0.010774619,0.796894804,7545,9468,0.747683671,0.846105936,,,,,,,,,,,,,0.810371923,0.754886196,0.865857649,0.181,,9468,0.136434475,0.225565525,75.37732185,,,73.8128833,76.9417604,,,,,,,,,,76.54015891,69.74370518,83.33661263,75.09550256,73.4581764,76.73282872,,,,459.1833292,320,57948,406.5930357,511.7736227,,,,,,,,,,,,,467.8314222,411.4695186,524.1933258,,,,76.4495232,19,24853,46.02760699,119.3854004,,,,,,,,,,,,,68.21947179,37.29622004,114.4606818,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.106,,,0.09,0.124,0.157,,,0.134,0.18,0.083,,,0.07,0.098,,,,,,0.103,2110,,,,0.01374147,290.1923558,21118,,,22.92226079,14,61076,12.53181328,38.45965866,,,,,,,,,,,,,22.59972127,11.67760576,39.47716496,,,,0.353,,,0.338,0.369,0.168417427,1956,11614,0.14458764,0.192247215,0.099155405,587,5920,0.070559661,0.12775115,0.00082078,17,20712,,,1218.352941,0.852262248,295.735,347,,,,,,,,3.14378642,,,,,,,,2.737679952,3.219006951,3.346236903,,,,,,,,3.014798835,3.409392194,0.05676717,,,,,7543.786333,,,,,0.471144385,33039,70125,0.363805596,0.578483175,73072,,,63473.3617,82670.6383,73125,70993.42553,75256.57447,,,,,,,82708,51207.40426,114208.5957,79150,70344.89362,87955.10638,,,,,,0.299334284,1259,4206,,,,,,,,0.158378038,,73072,,,4.246284501,6,1413,,,,,,,,,,,,,,,,,,,,,,,,,,32.05656931,30,101870,21.46878758,46.03858083,29.44929813,,,,,,,,,,,,,31.35714544,20.29269119,46.28933242,,,,20.61450869,21,101870,12.76070579,31.51146632,,,,,,,,,,,,,21.40435072,12.88681736,33.42554505,,,,13.24364828,19,143465,7.973541396,20.6815973,,,,,,,,,,,,,13.58424228,7.913321723,21.74968782,,,,5.555555556,,2700,,,15,,0.67037562,9459,14110,,,0.579,,,,,42.12239439,,,,,0.779593989,5914,7586,0.738458191,0.820729787,0.056976587,421,7389,0.02934093,0.084612244,0.91471131,6939,7586,0.887543299,0.941879322,20712,,,,,0.268395133,5559,20712,,,0.167970259,3479,20712,,,0.005117806,106,20712,,,0.014580919,302,20712,,,0.005938586,123,20712,,,0.001593279,33,20712,,,0.10105253,2093,20712,,,0.865971418,17936,20712,,,0.006716301,129,19207,0,0.014453897,0.488315952,10114,20712,,,0.441760391,9034,20450,, -56,043,56043,WY,Washakie County,2024,1,8065.688093,130,20902,5678.764734,10452.61145,0,,,,2,,,,2,,,,2,,,,2,7769.334851,5035.86489,10502.80481,,,,,2,,0.137,,,0.113,0.163,3.378598354,,,2.617791497,4.216291541,4.623766148,,,3.676766055,5.655077884,0.064456722,35,543,0.043801864,0.08511158,0,,,,,,,,,,,,,0.075242718,0.049771274,0.100714163,,,,,,,0.164,,,0.128,0.205,0.336,,,0.267,0.407,8.6,0.030680474,0.093,,,0.229,,,0.184,0.281,0.763565387,5868,7685,,,0.159018632,,,0.125692584,0.19637399,0,0,6,0,0.28246769,207.7,16,7705,,,17.59530792,30,1705,11.87148036,25.11839613,,,,,,,,,,,,,17.29559748,10.83905886,26.18574244,,,,,,,0.181106383,1064,5875,0.157276596,0.20493617,0.001038287,8,7705,,,963.125,0.000906853,7,7719,,,1102.714286,0.004016064,31,7719,,,249,2261,,,,,,,,,2152,0.29,,,,,,,,0.23,0.29,0.33,,,,,,,,0.31,0.32,0.947111031,5229,5521,0.926319222,0.96790284,0.756268222,1297,1715,0.640947149,0.871589295,0.039917056,154,3858,,,0.143,219,,0.082234043,0.203765957,,,,,,,,,,,,,0.084033613,0.013379686,0.154687541,4.325973793,120500,27855,3.359528829,5.292418757,0.093560146,154,1646,0.034812784,0.152307508,15.5743024,12,7705,,,86.69267447,34,39219,60.03719724,121.1443232,,,,,,,,,,,,,86.6980431,57.61022001,125.3028113,,,,3.5,,,,,0,,,,,0.080058224,275,3435,0.048156654,0.111959795,0.055834564,0.028362363,0.083306766,0.034934498,0.008813896,0.061055099,0.002911208,0,0.01201495,0.782915361,2997,3828,0.73296032,0.832870401,,,,,,,,,,,,,0.760762608,0.708234763,0.813290452,0.091,,3828,0.050805993,0.131194007,77.60345613,,,75.47935743,79.72755483,,,,,,,,,,,,,77.68966097,75.29785384,80.08146809,,,,411.5919451,130,20902,334.8605079,488.3233823,,,,,,,,,,,,,390.8307015,309.7118491,471.949554,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.104,,,0.088,0.121,0.153,,,0.13,0.178,0.084,,,0.07,0.098,,,,,,0.093,720,,,,0.030680474,261.796486,8533,,,,,,,,,,,,,,,,,,,,,,,,,,0.312,,,0.296,0.327,0.197124304,850,4312,0.16852856,0.225720049,0.139577039,231,1655,0.099066401,0.180087678,0.000906853,7,7719,,,1102.714286,0.819957983,97.575,119,,,,,,,,3.658460625,,,,,,,,3.454384856,3.762979569,3.750633032,,,,,,,,3.68010651,3.776317194,0.04495368,,,,,12802.576,,,,,0.772422183,36826,47676,0.647514938,0.897329428,60699,,,54583.08511,66814.91489,,,,,,,,,,36563,20144.2766,52981.7234,65795,59126.23404,72463.76596,,,,,,0.327919567,424,1293,,,,,,,,0.195555116,,60699,,,15.03759399,6,399,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.11111111,,900,,,10,,0.674811716,4032,5975,,,0.624,,,,,28.93541584,,,,,0.716461629,2446,3414,0.675134652,0.757788605,0.073913044,238,3220,0.036342051,0.111484036,0.85559461,2921,3414,0.822982546,0.888206675,7719,,,,,0.207798938,1604,7719,,,0.238243296,1839,7719,,,0.004275165,33,7719,,,0.01697111,131,7719,,,0.008679881,67,7719,,,0.000906853,7,7719,,,0.141728203,1094,7719,,,0.821349916,6340,7719,,,0.003788904,28,7390,0,0.015575203,0.485296023,3746,7719,,,0.363825634,2796,7685,, -56,045,56045,WY,Weston County,2024,1,5905.489557,88,18614,4065.067282,8293.502976,0,,,,2,,,,2,,,,2,,,,2,6324.451118,4267.080611,9028.547225,,,,,2,,0.148,,,0.124,0.173,3.564866331,,,2.838740847,4.413685557,5.179947039,,,4.210012911,6.247645919,0.082725061,34,411,0.05609308,0.109357042,0,,,,,,,,,,,,,0.088,0.0593266,0.1166734,,,,,,,0.197,,,0.158,0.237,0.346,,,0.28,0.421,7.8,0.08751015,0.102,,,0.262,,,0.216,0.313,0.831090962,5683,6838,,,0.172438152,,,0.138459925,0.209929375,0.2,1,5,0.015594715,0.47750127,103.8,7,6745,,,18.76019576,23,1226,11.89235484,28.14950481,,,,,,,,,,,,,21.31603336,13.51253664,31.98451612,,,,,,,0.167536116,835,4984,0.144897818,0.190174413,0.000296516,2,6745,,,3372.5,0.000728863,5,6860,,,1372,0.001749271,12,6860,,,571.6666667,2045,,,,,,,,,2009,0.37,,,,,,,,,0.37,0.25,,,,,,,,,0.25,0.91122449,4465,4900,0.871685169,0.950763811,0.59850839,963,1609,0.475410762,0.721606019,0.026635021,101,3792,,,0.143,183,,0.085808511,0.200191489,,,,,,,,,,,,,0.062062062,0,0.126415247,4.783588275,126966,26542,2.690331862,6.876844688,0.181040627,254,1403,0.075371849,0.286709406,10.37805782,7,6745,,,69.9524906,24,34309,44.81988066,104.0837611,,,,,,,,,,,,,77.58453482,49.7098754,115.4396379,,,,3.2,,,,,0,,,,,0.112847222,325,2880,0.069664291,0.156030154,0.09384058,0.048605474,0.139075686,0.024305556,0,0.04979306,0.010416667,0,0.027239445,0.676760803,1989,2939,0.588642826,0.76487878,,,,,,,,,,,,,0.750434783,0.675458268,0.825411297,0.29,,2939,0.194427995,0.385572005,79.15220758,,,77.31773034,80.98668482,,,,,,,,,,,,,78.70490504,76.76859308,80.64121701,,,,305.814535,88,18614,239.7097779,384.5158644,,,,,,,,,,,,,320.8137705,249.1244458,406.7078982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.112,,,0.096,0.129,0.16,,,0.138,0.184,0.09,,,0.077,0.106,,,,,,0.102,710,,,,0.08751015,630.7731638,7208,,,,,,,,,,,,,,,,,,,,,,,,,,0.346,,,0.33,0.364,0.182517867,664,3638,0.155113612,0.209922122,0.130801688,186,1422,0.092674028,0.168929347,0.001166181,8,6860,,,857.5,0.9190625,73.525,80,,,,,,,,3.378600078,,,,,,,,,3.428218102,3.351010217,,,,,,,,,3.388917325,0.024619075,,,,,10779.878,,,,,0.517885239,37194,71819,0.426124571,0.609645908,67677,,,59562.95745,75791.04255,,,,,,,,,,,,,73000,59667.23404,86332.76596,,,,,,0.103697749,129,1244,,,,,,,,0.200053194,,67677,,,9.74025974,3,308,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20.50062527,10,48779,9.830846668,37.70137978,,,,,,,,,,,,,,,,,,,18.33333333,,600,,,11,,0.647272727,3560,5500,,,0.553,,,,,17.68185702,,,,,0.90030326,2375,2638,0.85885634,0.941750181,0.08679402,209,2408,0.040754719,0.132833321,0.80060652,2112,2638,0.740175444,0.861037597,6860,,,,,0.190087464,1304,6860,,,0.228862974,1570,6860,,,0.007580175,52,6860,,,0.021137026,145,6860,,,0.015014577,103,6860,,,0.000291545,2,6860,,,0.054956268,377,6860,,,0.885714286,6076,6860,,,0.001212305,8,6599,0,0.013903995,0.44606414,3060,6860,,,1,6838,6838,, \ No newline at end of file diff --git a/python/tests/data/chr/golden_data/race_and_ethnicity_county_current.csv b/python/tests/data/chr/golden_data/race_and_ethnicity_county_current.csv new file mode 100644 index 0000000000..45c293a535 --- /dev/null +++ b/python/tests/data/chr/golden_data/race_and_ethnicity_county_current.csv @@ -0,0 +1,541 @@ +state_name,state_fips,race_and_ethnicity,county_name,county_fips,preventable_hospitalizations_per_100k,population_pct,population +Alabama,01,All,Autauga County,01001,3915.0,100.0,58761.0 +Alabama,01,American Indian and Alaska Native (NH),Autauga County,01001,,0.1,59.0 +Alabama,01,"Asian, Native Hawaiian, and Pacific Islander (NH)",Autauga County,01001,,1.1,636.0 +Alabama,01,Black or African American (NH),Autauga County,01001,6203.0,19.6,11496.0 +Alabama,01,Hispanic or Latino,Autauga County,01001,,3.2,1864.0 +Alabama,01,White (NH),Autauga County,01001,3633.0,72.6,42635.0 +Alabama,01,All,Baldwin County,01003,2799.0,100.0,233420.0 +Alabama,01,American Indian and Alaska Native (NH),Baldwin County,01003,,0.2,512.0 +Alabama,01,"Asian, Native Hawaiian, and Pacific Islander (NH)",Baldwin County,01003,,0.9,2068.0 +Alabama,01,Black or African American (NH),Baldwin County,01003,5376.0,8.3,19318.0 +Alabama,01,Hispanic or Latino,Baldwin County,01003,,4.8,11210.0 +Alabama,01,White (NH),Baldwin County,01003,2680.0,82.3,192161.0 +Alabama,01,All,Barbour County,01005,3040.0,100.0,24877.0 +Alabama,01,American Indian and Alaska Native (NH),Barbour County,01005,,0.3,63.0 +Alabama,01,"Asian, Native Hawaiian, and Pacific Islander (NH)",Barbour County,01005,,0.5,129.0 +Alabama,01,Black or African American (NH),Barbour County,01005,4814.0,46.9,11662.0 +Alabama,01,Hispanic or Latino,Barbour County,01005,,4.8,1202.0 +Alabama,01,White (NH),Barbour County,01005,2448.0,44.6,11084.0 +Alabama,01,All,Bibb County,01007,4651.0,100.0,22251.0 +Alabama,01,American Indian and Alaska Native (NH),Bibb County,01007,,0.1,15.0 +Alabama,01,"Asian, Native Hawaiian, and Pacific Islander (NH)",Bibb County,01007,,0.3,69.0 +Alabama,01,Black or African American (NH),Bibb County,01007,8207.0,20.7,4598.0 +Alabama,01,Hispanic or Latino,Bibb County,01007,,2.9,650.0 +Alabama,01,White (NH),Bibb County,01007,4150.0,74.2,16520.0 +Alabama,01,All,Blount County,01009,2499.0,100.0,59077.0 +Alabama,01,American Indian and Alaska Native (NH),Blount County,01009,,0.1,75.0 +Alabama,01,"Asian, Native Hawaiian, and Pacific Islander (NH)",Blount County,01009,,0.4,217.0 +Alabama,01,Black or African American (NH),Blount County,01009,,1.2,729.0 +Alabama,01,Hispanic or Latino,Blount County,01009,,9.7,5721.0 +Alabama,01,White (NH),Blount County,01009,2563.0,85.7,50614.0 +Alabama,01,All,Bullock County,01011,2268.0,100.0,10328.0 +Alabama,01,American Indian and Alaska Native (NH),Bullock County,01011,,0.0,0.0 +Alabama,01,"Asian, Native Hawaiian, and Pacific Islander (NH)",Bullock County,01011,,0.4,43.0 +Alabama,01,Black or African American (NH),Bullock County,01011,2091.0,68.9,7117.0 +Alabama,01,Hispanic or Latino,Bullock County,01011,,8.8,907.0 +Alabama,01,White (NH),Bullock County,01011,2343.0,20.6,2125.0 +Alabama,01,All,Butler County,01013,3396.0,100.0,18981.0 +Alabama,01,American Indian and Alaska Native (NH),Butler County,01013,,0.4,69.0 +Alabama,01,"Asian, Native Hawaiian, and Pacific Islander (NH)",Butler County,01013,,1.3,243.0 +Alabama,01,Black or African American (NH),Butler County,01013,3058.0,44.6,8462.0 +Alabama,01,Hispanic or Latino,Butler County,01013,,1.7000000000000002,322.0 +Alabama,01,White (NH),Butler County,01013,3596.0,50.9,9655.0 +Alabama,01,All,Calhoun County,01015,3491.0,100.0,116162.0 +Alabama,01,American Indian and Alaska Native (NH),Calhoun County,01015,,0.1,174.0 +Alabama,01,"Asian, Native Hawaiian, and Pacific Islander (NH)",Calhoun County,01015,,0.8,915.0 +Alabama,01,Black or African American (NH),Calhoun County,01015,3836.0,21.7,25204.0 +Alabama,01,Hispanic or Latino,Calhoun County,01015,,4.1,4736.0 +Alabama,01,White (NH),Calhoun County,01015,3474.0,70.5,81851.0 +Alabama,01,All,Chambers County,01017,3163.0,100.0,34612.0 +Alabama,01,American Indian and Alaska Native (NH),Chambers County,01017,,0.03,10.0 +Alabama,01,"Asian, Native Hawaiian, and Pacific Islander (NH)",Chambers County,01017,,0.2,63.0 +Alabama,01,Black or African American (NH),Chambers County,01017,3615.0,40.8,14107.0 +Alabama,01,Hispanic or Latino,Chambers County,01017,,3.3,1129.0 +Alabama,01,White (NH),Chambers County,01017,3123.0,54.3,18794.0 +Alabama,01,All,Cherokee County,01019,4153.0,100.0,25069.0 +Alabama,01,American Indian and Alaska Native (NH),Cherokee County,01019,,0.5,113.0 +Alabama,01,"Asian, Native Hawaiian, and Pacific Islander (NH)",Cherokee County,01019,,0.1,21.0 +Alabama,01,Black or African American (NH),Cherokee County,01019,,4.0,1000.0 +Alabama,01,Hispanic or Latino,Cherokee County,01019,,1.9,479.0 +Alabama,01,White (NH),Cherokee County,01019,4212.0,90.7,22749.0 +Alabama,01,All,Chilton County,01021,3581.0,100.0,45140.0 +Alabama,01,American Indian and Alaska Native (NH),Chilton County,01021,,0.04,17.0 +Alabama,01,"Asian, Native Hawaiian, and Pacific Islander (NH)",Chilton County,01021,,0.5,244.0 +Alabama,01,Black or African American (NH),Chilton County,01021,3904.0,9.4,4254.0 +Alabama,01,Hispanic or Latino,Chilton County,01021,,8.1,3664.0 +Alabama,01,White (NH),Chilton County,01021,3447.0,79.1,35714.0 +Alabama,01,All,Choctaw County,01023,2712.0,100.0,12669.0 +Alabama,01,American Indian and Alaska Native (NH),Choctaw County,01023,,0.2,28.0 +Alabama,01,"Asian, Native Hawaiian, and Pacific Islander (NH)",Choctaw County,01023,,0.1,15.0 +Alabama,01,Black or African American (NH),Choctaw County,01023,3932.0,39.9,5055.0 +Alabama,01,Hispanic or Latino,Choctaw County,01023,,1.1,143.0 +Alabama,01,White (NH),Choctaw County,01023,2233.0,56.5,7162.0 +Alabama,01,All,Clarke County,01025,3623.0,100.0,23058.0 +Alabama,01,American Indian and Alaska Native (NH),Clarke County,01025,,0.1,15.0 +Alabama,01,"Asian, Native Hawaiian, and Pacific Islander (NH)",Clarke County,01025,,0.4,90.0 +Alabama,01,Black or African American (NH),Clarke County,01025,5508.0,45.4,10479.0 +Alabama,01,Hispanic or Latino,Clarke County,01025,,1.5,335.0 +Alabama,01,White (NH),Clarke County,01025,3076.0,51.2,11809.0 +Alabama,01,All,Clay County,01027,2559.0,100.0,14209.0 +Alabama,01,American Indian and Alaska Native (NH),Clay County,01027,,0.0,0.0 +Alabama,01,"Asian, Native Hawaiian, and Pacific Islander (NH)",Clay County,01027,,0.3,36.0 +Alabama,01,Black or African American (NH),Clay County,01027,1040.0,12.6,1790.0 +Alabama,01,Hispanic or Latino,Clay County,01027,,3.1,437.0 +Alabama,01,White (NH),Clay County,01027,2530.0,80.1,11385.0 +Alabama,01,All,Cleburne County,01029,2478.0,100.0,15144.0 +Alabama,01,American Indian and Alaska Native (NH),Cleburne County,01029,,0.1,22.0 +Alabama,01,"Asian, Native Hawaiian, and Pacific Islander (NH)",Cleburne County,01029,,0.1,15.0 +Alabama,01,Black or African American (NH),Cleburne County,01029,,2.7,411.0 +Alabama,01,Hispanic or Latino,Cleburne County,01029,,2.6,401.0 +Alabama,01,White (NH),Cleburne County,01029,2353.0,92.2,13964.0 +Alabama,01,All,Coffee County,01031,3752.0,100.0,53559.0 +Alabama,01,American Indian and Alaska Native (NH),Coffee County,01031,,0.5,277.0 +Alabama,01,"Asian, Native Hawaiian, and Pacific Islander (NH)",Coffee County,01031,,1.1,571.0 +Alabama,01,Black or African American (NH),Coffee County,01031,4572.0,16.1,8598.0 +Alabama,01,Hispanic or Latino,Coffee County,01031,,8.4,4500.0 +Alabama,01,White (NH),Coffee County,01031,3712.0,68.8,36875.0 +Alabama,01,All,Colbert County,01033,3697.0,100.0,57270.0 +Alabama,01,American Indian and Alaska Native (NH),Colbert County,01033,,0.3,170.0 +Alabama,01,"Asian, Native Hawaiian, and Pacific Islander (NH)",Colbert County,01033,,0.5,267.0 +Alabama,01,Black or African American (NH),Colbert County,01033,5473.0,16.0,9171.0 +Alabama,01,Hispanic or Latino,Colbert County,01033,,3.2,1837.0 +Alabama,01,White (NH),Colbert County,01033,3486.0,77.7,44485.0 +Alabama,01,All,Conecuh County,01035,7136.0,100.0,11576.0 +Alabama,01,American Indian and Alaska Native (NH),Conecuh County,01035,,0.3,33.0 +Alabama,01,"Asian, Native Hawaiian, and Pacific Islander (NH)",Conecuh County,01035,,0.3,36.0 +Alabama,01,Black or African American (NH),Conecuh County,01035,9831.0,48.0,5553.0 +Alabama,01,Hispanic or Latino,Conecuh County,01035,,0.7000000000000001,80.0 +Alabama,01,White (NH),Conecuh County,01035,6349.0,49.7,5751.0 +Alabama,01,All,Coosa County,01037,2862.0,100.0,10329.0 +Alabama,01,American Indian and Alaska Native (NH),Coosa County,01037,,0.1,9.0 +Alabama,01,"Asian, Native Hawaiian, and Pacific Islander (NH)",Coosa County,01037,,0.0,0.0 +Alabama,01,Black or African American (NH),Coosa County,01037,2734.0,30.2,3120.0 +Alabama,01,Hispanic or Latino,Coosa County,01037,,2.7,284.0 +Alabama,01,White (NH),Coosa County,01037,2721.0,64.2,6632.0 +Alabama,01,All,Covington County,01039,4800.0,100.0,37542.0 +Alabama,01,American Indian and Alaska Native (NH),Covington County,01039,,0.3,101.0 +Alabama,01,"Asian, Native Hawaiian, and Pacific Islander (NH)",Covington County,01039,,0.6000000000000001,218.0 +Alabama,01,Black or African American (NH),Covington County,01039,6901.0,12.3,4606.0 +Alabama,01,Hispanic or Latino,Covington County,01039,,2.0,749.0 +Alabama,01,White (NH),Covington County,01039,4707.0,82.5,30958.0 +Alabama,01,All,Crenshaw County,01041,3895.0,100.0,13205.0 +Alabama,01,American Indian and Alaska Native (NH),Crenshaw County,01041,,0.1,10.0 +Alabama,01,"Asian, Native Hawaiian, and Pacific Islander (NH)",Crenshaw County,01041,,1.2,160.0 +Alabama,01,Black or African American (NH),Crenshaw County,01041,6879.0,22.9,3026.0 +Alabama,01,Hispanic or Latino,Crenshaw County,01041,,2.5,335.0 +Alabama,01,White (NH),Crenshaw County,01041,3492.0,69.9,9226.0 +Alabama,01,All,Cullman County,01043,3896.0,100.0,88284.0 +Alabama,01,American Indian and Alaska Native (NH),Cullman County,01043,,0.3,243.0 +Alabama,01,"Asian, Native Hawaiian, and Pacific Islander (NH)",Cullman County,01043,,0.3,305.0 +Alabama,01,Black or African American (NH),Cullman County,01043,13632.0,1.1,959.0 +Alabama,01,Hispanic or Latino,Cullman County,01043,,4.6,4056.0 +Alabama,01,White (NH),Cullman County,01043,3851.0,90.8,80170.0 +Alabama,01,All,Dale County,01045,3253.0,100.0,49455.0 +Alabama,01,American Indian and Alaska Native (NH),Dale County,01045,,0.4,218.0 +Alabama,01,"Asian, Native Hawaiian, and Pacific Islander (NH)",Dale County,01045,,1.3,623.0 +Alabama,01,Black or African American (NH),Dale County,01045,3687.0,20.4,10087.0 +Alabama,01,Hispanic or Latino,Dale County,01045,,7.0,3467.0 +Alabama,01,White (NH),Dale County,01045,3258.0,67.3,33286.0 +Alabama,01,All,Dallas County,01047,4280.0,100.0,38326.0 +Alabama,01,American Indian and Alaska Native (NH),Dallas County,01047,,0.5,208.0 +Alabama,01,"Asian, Native Hawaiian, and Pacific Islander (NH)",Dallas County,01047,,0.6000000000000001,240.0 +Alabama,01,Black or African American (NH),Dallas County,01047,5442.0,68.7,26311.0 +Alabama,01,Hispanic or Latino,Dallas County,01047,,1.1,430.0 +Alabama,01,White (NH),Dallas County,01047,3021.0,27.0,10365.0 +Alabama,01,All,DeKalb County,01049,3215.0,100.0,71680.0 +Alabama,01,American Indian and Alaska Native (NH),DeKalb County,01049,,0.5,354.0 +Alabama,01,"Asian, Native Hawaiian, and Pacific Islander (NH)",DeKalb County,01049,,0.1,99.0 +Alabama,01,Black or African American (NH),DeKalb County,01049,1060.0,1.5,1043.0 +Alabama,01,Hispanic or Latino,DeKalb County,01049,,15.4,11021.0 +Alabama,01,White (NH),DeKalb County,01049,3257.0,79.1,56705.0 +Alabama,01,All,Elmore County,01051,3726.0,100.0,87694.0 +Alabama,01,American Indian and Alaska Native (NH),Elmore County,01051,,0.2,210.0 +Alabama,01,"Asian, Native Hawaiian, and Pacific Islander (NH)",Elmore County,01051,,0.7000000000000001,602.0 +Alabama,01,Black or African American (NH),Elmore County,01051,5928.0,20.8,18224.0 +Alabama,01,Hispanic or Latino,Elmore County,01051,,3.1,2739.0 +Alabama,01,White (NH),Elmore County,01051,3473.0,72.4,63533.0 +Alabama,01,All,Escambia County,01053,4624.0,100.0,36755.0 +Alabama,01,American Indian and Alaska Native (NH),Escambia County,01053,8271.0,3.0,1118.0 +Alabama,01,"Asian, Native Hawaiian, and Pacific Islander (NH)",Escambia County,01053,,0.2,90.0 +Alabama,01,Black or African American (NH),Escambia County,01053,5336.0,30.2,11115.0 +Alabama,01,Hispanic or Latino,Escambia County,01053,,2.6,940.0 +Alabama,01,White (NH),Escambia County,01053,4519.0,60.2,22117.0 +Alabama,01,All,Etowah County,01055,4350.0,100.0,103348.0 +Alabama,01,American Indian and Alaska Native (NH),Etowah County,01055,,0.1,127.0 +Alabama,01,"Asian, Native Hawaiian, and Pacific Islander (NH)",Etowah County,01055,,0.7000000000000001,745.0 +Alabama,01,Black or African American (NH),Etowah County,01055,6735.0,15.0,15507.0 +Alabama,01,Hispanic or Latino,Etowah County,01055,,4.4,4561.0 +Alabama,01,White (NH),Etowah County,01055,4164.0,77.1,79648.0 +Alabama,01,All,Fayette County,01057,3932.0,100.0,16297.0 +Alabama,01,American Indian and Alaska Native (NH),Fayette County,01057,,0.1,24.0 +Alabama,01,"Asian, Native Hawaiian, and Pacific Islander (NH)",Fayette County,01057,,0.5,76.0 +Alabama,01,Black or African American (NH),Fayette County,01057,4553.0,12.7,2074.0 +Alabama,01,Hispanic or Latino,Fayette County,01057,,0.4,61.0 +Alabama,01,White (NH),Fayette County,01057,3736.0,83.9,13666.0 +Alabama,01,All,Franklin County,01059,4590.0,100.0,32011.0 +Alabama,01,American Indian and Alaska Native (NH),Franklin County,01059,,0.2,57.0 +Alabama,01,"Asian, Native Hawaiian, and Pacific Islander (NH)",Franklin County,01059,,0.2,49.0 +Alabama,01,Black or African American (NH),Franklin County,01059,1004.0,4.2,1360.0 +Alabama,01,Hispanic or Latino,Franklin County,01059,2080.0,18.4,5892.0 +Alabama,01,White (NH),Franklin County,01059,4630.0,75.2,24088.0 +Alabama,01,All,Geneva County,01061,3206.0,100.0,26647.0 +Alabama,01,American Indian and Alaska Native (NH),Geneva County,01061,,0.2,61.0 +Alabama,01,"Asian, Native Hawaiian, and Pacific Islander (NH)",Geneva County,01061,,0.6000000000000001,149.0 +Alabama,01,Black or African American (NH),Geneva County,01061,4355.0,8.9,2377.0 +Alabama,01,Hispanic or Latino,Geneva County,01061,,4.4,1185.0 +Alabama,01,White (NH),Geneva County,01061,3164.0,80.8,21535.0 +Alabama,01,All,Greene County,01063,4840.0,100.0,7706.0 +Alabama,01,American Indian and Alaska Native (NH),Greene County,01063,,0.1,7.0 +Alabama,01,"Asian, Native Hawaiian, and Pacific Islander (NH)",Greene County,01063,,0.0,0.0 +Alabama,01,Black or African American (NH),Greene County,01063,5609.0,81.8,6305.0 +Alabama,01,Hispanic or Latino,Greene County,01063,,0.3,24.0 +Alabama,01,White (NH),Greene County,01063,2533.0,17.1,1321.0 +Alabama,01,All,Hale County,01065,5196.0,100.0,14742.0 +Alabama,01,American Indian and Alaska Native (NH),Hale County,01065,,0.3,42.0 +Alabama,01,"Asian, Native Hawaiian, and Pacific Islander (NH)",Hale County,01065,,0.1,9.0 +Alabama,01,Black or African American (NH),Hale County,01065,4729.0,56.8,8373.0 +Alabama,01,Hispanic or Latino,Hale County,01065,,0.2,25.0 +Alabama,01,White (NH),Hale County,01065,5524.0,38.4,5663.0 +Alabama,01,All,Henry County,01067,3304.0,100.0,17282.0 +Alabama,01,American Indian and Alaska Native (NH),Henry County,01067,,0.3,60.0 +Alabama,01,"Asian, Native Hawaiian, and Pacific Islander (NH)",Henry County,01067,,0.6000000000000001,104.0 +Alabama,01,Black or African American (NH),Henry County,01067,3135.0,25.1,4344.0 +Alabama,01,Hispanic or Latino,Henry County,01067,,2.7,469.0 +Alabama,01,White (NH),Henry County,01067,3198.0,69.5,12012.0 +Alabama,01,All,Houston County,01069,3448.0,100.0,107040.0 +Alabama,01,American Indian and Alaska Native (NH),Houston County,01069,,0.2,248.0 +Alabama,01,"Asian, Native Hawaiian, and Pacific Islander (NH)",Houston County,01069,,0.9,993.0 +Alabama,01,Black or African American (NH),Houston County,01069,6612.0,27.1,29026.0 +Alabama,01,Hispanic or Latino,Houston County,01069,,3.6,3844.0 +Alabama,01,White (NH),Houston County,01069,2931.0,64.9,69420.0 +Alabama,01,All,Jackson County,01071,2484.0,100.0,52618.0 +Alabama,01,American Indian and Alaska Native (NH),Jackson County,01071,,0.8,397.0 +Alabama,01,"Asian, Native Hawaiian, and Pacific Islander (NH)",Jackson County,01071,,0.4,230.0 +Alabama,01,Black or African American (NH),Jackson County,01071,5459.0,3.2,1708.0 +Alabama,01,Hispanic or Latino,Jackson County,01071,,3.2,1685.0 +Alabama,01,White (NH),Jackson County,01071,2442.0,88.8,46699.0 +Alabama,01,All,Jefferson County,01073,2957.0,100.0,672265.0 +Alabama,01,American Indian and Alaska Native (NH),Jefferson County,01073,,0.1,570.0 +Alabama,01,"Asian, Native Hawaiian, and Pacific Islander (NH)",Jefferson County,01073,559.0,1.8,11850.0 +Alabama,01,Black or African American (NH),Jefferson County,01073,3772.0,42.6,286423.0 +Alabama,01,Hispanic or Latino,Jefferson County,01073,1074.0,4.2,27950.0 +Alabama,01,White (NH),Jefferson County,01073,2558.0,48.9,328951.0 +Alabama,01,All,Lamar County,01075,3265.0,100.0,13885.0 +Alabama,01,American Indian and Alaska Native (NH),Lamar County,01075,,0.4,49.0 +Alabama,01,"Asian, Native Hawaiian, and Pacific Islander (NH)",Lamar County,01075,,0.2,23.0 +Alabama,01,Black or African American (NH),Lamar County,01075,2992.0,11.0,1527.0 +Alabama,01,Hispanic or Latino,Lamar County,01075,,0.5,76.0 +Alabama,01,White (NH),Lamar County,01075,3143.0,85.7,11900.0 +Alabama,01,All,Lauderdale County,01077,2400.0,100.0,94329.0 +Alabama,01,American Indian and Alaska Native (NH),Lauderdale County,01077,,0.2,213.0 +Alabama,01,"Asian, Native Hawaiian, and Pacific Islander (NH)",Lauderdale County,01077,,0.7000000000000001,638.0 +Alabama,01,Black or African American (NH),Lauderdale County,01077,3226.0,9.7,9197.0 +Alabama,01,Hispanic or Latino,Lauderdale County,01077,,3.0,2803.0 +Alabama,01,White (NH),Lauderdale County,01077,2348.0,83.4,78667.0 +Alabama,01,All,Lawrence County,01079,4215.0,100.0,33116.0 +Alabama,01,American Indian and Alaska Native (NH),Lawrence County,01079,,5.0,1669.0 +Alabama,01,"Asian, Native Hawaiian, and Pacific Islander (NH)",Lawrence County,01079,,0.3,114.0 +Alabama,01,Black or African American (NH),Lawrence County,01079,2821.0,10.2,3366.0 +Alabama,01,Hispanic or Latino,Lawrence County,01079,,2.5,829.0 +Alabama,01,White (NH),Lawrence County,01079,4400.0,76.3,25273.0 +Alabama,01,All,Lee County,01081,2325.0,100.0,175126.0 +Alabama,01,American Indian and Alaska Native (NH),Lee County,01081,,0.1,224.0 +Alabama,01,"Asian, Native Hawaiian, and Pacific Islander (NH)",Lee County,01081,,4.3,7579.0 +Alabama,01,Black or African American (NH),Lee County,01081,3879.0,22.1,38635.0 +Alabama,01,Hispanic or Latino,Lee County,01081,,3.9,6780.0 +Alabama,01,White (NH),Lee County,01081,1980.0,66.9,117221.0 +Alabama,01,All,Limestone County,01083,2746.0,100.0,104199.0 +Alabama,01,American Indian and Alaska Native (NH),Limestone County,01083,,0.4,438.0 +Alabama,01,"Asian, Native Hawaiian, and Pacific Islander (NH)",Limestone County,01083,,1.9,1933.0 +Alabama,01,Black or African American (NH),Limestone County,01083,5532.0,13.0,13547.0 +Alabama,01,Hispanic or Latino,Limestone County,01083,,6.3,6588.0 +Alabama,01,White (NH),Limestone County,01083,2556.0,74.7,77842.0 +Alabama,01,All,Lowndes County,01085,3583.0,100.0,10153.0 +Alabama,01,American Indian and Alaska Native (NH),Lowndes County,01085,,0.0,0.0 +Alabama,01,"Asian, Native Hawaiian, and Pacific Islander (NH)",Lowndes County,01085,,0.0,0.0 +Alabama,01,Black or African American (NH),Lowndes County,01085,2930.0,74.8,7595.0 +Alabama,01,Hispanic or Latino,Lowndes County,01085,,0.2,19.0 +Alabama,01,White (NH),Lowndes County,01085,3159.0,24.6,2493.0 +Alabama,01,All,Macon County,01087,2803.0,100.0,19198.0 +Alabama,01,American Indian and Alaska Native (NH),Macon County,01087,,0.04,7.0 +Alabama,01,"Asian, Native Hawaiian, and Pacific Islander (NH)",Macon County,01087,,0.4,73.0 +Alabama,01,Black or African American (NH),Macon County,01087,2791.0,78.8,15130.0 +Alabama,01,Hispanic or Latino,Macon County,01087,,2.4,453.0 +Alabama,01,White (NH),Macon County,01087,2521.0,16.1,3098.0 +Alabama,01,All,Madison County,01089,2629.0,100.0,389781.0 +Alabama,01,American Indian and Alaska Native (NH),Madison County,01089,,0.4,1699.0 +Alabama,01,"Asian, Native Hawaiian, and Pacific Islander (NH)",Madison County,01089,1130.0,2.5,9740.0 +Alabama,01,Black or African American (NH),Madison County,01089,3434.0,24.3,94612.0 +Alabama,01,Hispanic or Latino,Madison County,01089,2654.0,5.3,20611.0 +Alabama,01,White (NH),Madison County,01089,2486.0,63.5,247345.0 +Alabama,01,All,Marengo County,01091,3688.0,100.0,19180.0 +Alabama,01,American Indian and Alaska Native (NH),Marengo County,01091,,0.2,36.0 +Alabama,01,"Asian, Native Hawaiian, and Pacific Islander (NH)",Marengo County,01091,,0.8,151.0 +Alabama,01,Black or African American (NH),Marengo County,01091,6064.0,50.8,9749.0 +Alabama,01,Hispanic or Latino,Marengo County,01091,,2.8,542.0 +Alabama,01,White (NH),Marengo County,01091,2247.0,44.5,8539.0 +Alabama,01,All,Marion County,01093,3984.0,100.0,29203.0 +Alabama,01,American Indian and Alaska Native (NH),Marion County,01093,,0.1,23.0 +Alabama,01,"Asian, Native Hawaiian, and Pacific Islander (NH)",Marion County,01093,,0.3,93.0 +Alabama,01,Black or African American (NH),Marion County,01093,634.0,3.8,1113.0 +Alabama,01,Hispanic or Latino,Marion County,01093,,2.7,790.0 +Alabama,01,White (NH),Marion County,01093,4014.0,90.8,26508.0 +Alabama,01,All,Marshall County,01095,2877.0,100.0,97923.0 +Alabama,01,American Indian and Alaska Native (NH),Marshall County,01095,,0.1,129.0 +Alabama,01,"Asian, Native Hawaiian, and Pacific Islander (NH)",Marshall County,01095,,0.7000000000000001,673.0 +Alabama,01,Black or African American (NH),Marshall County,01095,,2.7,2672.0 +Alabama,01,Hispanic or Latino,Marshall County,01095,,15.1,14751.0 +Alabama,01,White (NH),Marshall County,01095,2898.0,79.1,77450.0 +Alabama,01,All,Mobile County,01097,3376.0,100.0,413878.0 +Alabama,01,American Indian and Alaska Native (NH),Mobile County,01097,,0.4,1589.0 +Alabama,01,"Asian, Native Hawaiian, and Pacific Islander (NH)",Mobile County,01097,,2.0,8392.0 +Alabama,01,Black or African American (NH),Mobile County,01097,4237.0,36.0,149056.0 +Alabama,01,Hispanic or Latino,Mobile County,01097,2159.0,3.0,12565.0 +Alabama,01,White (NH),Mobile County,01097,3102.0,55.8,231005.0 +Alabama,01,All,Monroe County,01099,2955.0,100.0,19816.0 +Alabama,01,American Indian and Alaska Native (NH),Monroe County,01099,,1.3,260.0 +Alabama,01,"Asian, Native Hawaiian, and Pacific Islander (NH)",Monroe County,01099,,0.3,60.0 +Alabama,01,Black or African American (NH),Monroe County,01099,2586.0,42.3,8384.0 +Alabama,01,Hispanic or Latino,Monroe County,01099,,0.2,44.0 +Alabama,01,White (NH),Monroe County,01099,2998.0,53.7,10632.0 +Alabama,01,All,Montgomery County,01101,3612.0,100.0,228132.0 +Alabama,01,American Indian and Alaska Native (NH),Montgomery County,01101,,0.1,156.0 +Alabama,01,"Asian, Native Hawaiian, and Pacific Islander (NH)",Montgomery County,01101,,3.3,7601.0 +Alabama,01,Black or African American (NH),Montgomery County,01101,4672.0,58.9,134336.0 +Alabama,01,Hispanic or Latino,Montgomery County,01101,,3.8,8597.0 +Alabama,01,White (NH),Montgomery County,01101,2982.0,31.6,72150.0 +Alabama,01,All,Morgan County,01103,3209.0,100.0,123102.0 +Alabama,01,American Indian and Alaska Native (NH),Morgan County,01103,,0.2,272.0 +Alabama,01,"Asian, Native Hawaiian, and Pacific Islander (NH)",Morgan County,01103,,0.5,607.0 +Alabama,01,Black or African American (NH),Morgan County,01103,4066.0,12.9,15886.0 +Alabama,01,Hispanic or Latino,Morgan County,01103,,8.8,10845.0 +Alabama,01,White (NH),Morgan County,01103,3155.0,74.3,91445.0 +Alabama,01,All,Perry County,01105,4687.0,100.0,8479.0 +Alabama,01,American Indian and Alaska Native (NH),Perry County,01105,,0.01,1.0 +Alabama,01,"Asian, Native Hawaiian, and Pacific Islander (NH)",Perry County,01105,,0.0,0.0 +Alabama,01,Black or African American (NH),Perry County,01105,5549.0,70.1,5943.0 +Alabama,01,Hispanic or Latino,Perry County,01105,,1.0,82.0 +Alabama,01,White (NH),Perry County,01105,3316.0,28.4,2405.0 +Alabama,01,All,Pickens County,01107,3912.0,100.0,18925.0 +Alabama,01,American Indian and Alaska Native (NH),Pickens County,01107,,0.2,33.0 +Alabama,01,"Asian, Native Hawaiian, and Pacific Islander (NH)",Pickens County,01107,,0.1,10.0 +Alabama,01,Black or African American (NH),Pickens County,01107,5337.0,39.2,7416.0 +Alabama,01,Hispanic or Latino,Pickens County,01107,,5.2,987.0 +Alabama,01,White (NH),Pickens County,01107,3234.0,53.6,10141.0 +Alabama,01,All,Pike County,01109,3056.0,100.0,32997.0 +Alabama,01,American Indian and Alaska Native (NH),Pike County,01109,,0.3,112.0 +Alabama,01,"Asian, Native Hawaiian, and Pacific Islander (NH)",Pike County,01109,,2.0,658.0 +Alabama,01,Black or African American (NH),Pike County,01109,2795.0,37.2,12282.0 +Alabama,01,Hispanic or Latino,Pike County,01109,,2.4,799.0 +Alabama,01,White (NH),Pike County,01109,3021.0,55.3,18245.0 +Alabama,01,All,Randolph County,01111,2921.0,100.0,22179.0 +Alabama,01,American Indian and Alaska Native (NH),Randolph County,01111,,0.1,21.0 +Alabama,01,"Asian, Native Hawaiian, and Pacific Islander (NH)",Randolph County,01111,,0.3,62.0 +Alabama,01,Black or African American (NH),Randolph County,01111,2106.0,19.0,4203.0 +Alabama,01,Hispanic or Latino,Randolph County,01111,,3.0,669.0 +Alabama,01,White (NH),Randolph County,01111,2833.0,74.6,16553.0 +Alabama,01,All,Russell County,01113,3205.0,100.0,58849.0 +Alabama,01,American Indian and Alaska Native (NH),Russell County,01113,,0.1,88.0 +Alabama,01,"Asian, Native Hawaiian, and Pacific Islander (NH)",Russell County,01113,,0.9,517.0 +Alabama,01,Black or African American (NH),Russell County,01113,3718.0,44.5,26170.0 +Alabama,01,Hispanic or Latino,Russell County,01113,,5.9,3451.0 +Alabama,01,White (NH),Russell County,01113,3150.0,44.1,25923.0 +Alabama,01,All,St. Clair County,01115,3045.0,100.0,91719.0 +Alabama,01,American Indian and Alaska Native (NH),St. Clair County,01115,,0.3,290.0 +Alabama,01,"Asian, Native Hawaiian, and Pacific Islander (NH)",St. Clair County,01115,,0.5,434.0 +Alabama,01,Black or African American (NH),St. Clair County,01115,6093.0,9.6,8839.0 +Alabama,01,Hispanic or Latino,St. Clair County,01115,,2.5,2325.0 +Alabama,01,White (NH),St. Clair County,01115,2959.0,84.6,77572.0 +Alabama,01,All,Shelby County,01117,2801.0,100.0,223916.0 +Alabama,01,American Indian and Alaska Native (NH),Shelby County,01117,,0.1,331.0 +Alabama,01,"Asian, Native Hawaiian, and Pacific Islander (NH)",Shelby County,01117,,2.0,4505.0 +Alabama,01,Black or African American (NH),Shelby County,01117,3909.0,13.0,29071.0 +Alabama,01,Hispanic or Latino,Shelby County,01117,,5.9,13195.0 +Alabama,01,White (NH),Shelby County,01117,2718.0,75.9,169919.0 +Alabama,01,All,Sumter County,01119,3788.0,100.0,12196.0 +Alabama,01,American Indian and Alaska Native (NH),Sumter County,01119,,0.1,10.0 +Alabama,01,"Asian, Native Hawaiian, and Pacific Islander (NH)",Sumter County,01119,,0.3,41.0 +Alabama,01,Black or African American (NH),Sumter County,01119,3695.0,72.3,8813.0 +Alabama,01,Hispanic or Latino,Sumter County,01119,,0.7000000000000001,85.0 +Alabama,01,White (NH),Sumter County,01119,3491.0,25.2,3069.0 +Alabama,01,All,Talladega County,01121,3432.0,100.0,81105.0 +Alabama,01,American Indian and Alaska Native (NH),Talladega County,01121,,0.2,124.0 +Alabama,01,"Asian, Native Hawaiian, and Pacific Islander (NH)",Talladega County,01121,,0.5,371.0 +Alabama,01,Black or African American (NH),Talladega County,01121,3783.0,31.8,25788.0 +Alabama,01,Hispanic or Latino,Talladega County,01121,,2.5,1997.0 +Alabama,01,White (NH),Talladega County,01121,3410.0,62.3,50504.0 +Alabama,01,All,Tallapoosa County,01123,1987.0,100.0,41251.0 +Alabama,01,American Indian and Alaska Native (NH),Tallapoosa County,01123,,0.1,26.0 +Alabama,01,"Asian, Native Hawaiian, and Pacific Islander (NH)",Tallapoosa County,01123,,0.5,190.0 +Alabama,01,Black or African American (NH),Tallapoosa County,01123,2050.0,26.5,10927.0 +Alabama,01,Hispanic or Latino,Tallapoosa County,01123,,2.4,1010.0 +Alabama,01,White (NH),Tallapoosa County,01123,1915.0,68.6,28305.0 +Alabama,01,All,Tuscaloosa County,01125,4030.0,100.0,231558.0 +Alabama,01,American Indian and Alaska Native (NH),Tuscaloosa County,01125,,0.1,156.0 +Alabama,01,"Asian, Native Hawaiian, and Pacific Islander (NH)",Tuscaloosa County,01125,,1.6,3678.0 +Alabama,01,Black or African American (NH),Tuscaloosa County,01125,5334.0,32.0,74051.0 +Alabama,01,Hispanic or Latino,Tuscaloosa County,01125,5051.0,4.0,9261.0 +Alabama,01,White (NH),Tuscaloosa County,01125,3673.0,60.5,140053.0 +Alabama,01,All,Walker County,01127,4225.0,100.0,64978.0 +Alabama,01,American Indian and Alaska Native (NH),Walker County,01127,,0.2,100.0 +Alabama,01,"Asian, Native Hawaiian, and Pacific Islander (NH)",Walker County,01127,,0.2,122.0 +Alabama,01,Black or African American (NH),Walker County,01127,2072.0,6.0,3890.0 +Alabama,01,Hispanic or Latino,Walker County,01127,,2.9,1868.0 +Alabama,01,White (NH),Walker County,01127,4281.0,87.6,56899.0 +Alabama,01,All,Washington County,01129,2280.0,100.0,15434.0 +Alabama,01,American Indian and Alaska Native (NH),Washington County,01129,,6.8,1042.0 +Alabama,01,"Asian, Native Hawaiian, and Pacific Islander (NH)",Washington County,01129,,0.4,62.0 +Alabama,01,Black or African American (NH),Washington County,01129,2668.0,23.4,3607.0 +Alabama,01,Hispanic or Latino,Washington County,01129,,1.7000000000000002,261.0 +Alabama,01,White (NH),Washington County,01129,1997.0,65.3,10084.0 +Alabama,01,All,Wilcox County,01131,3111.0,100.0,10441.0 +Alabama,01,American Indian and Alaska Native (NH),Wilcox County,01131,,0.1,7.0 +Alabama,01,"Asian, Native Hawaiian, and Pacific Islander (NH)",Wilcox County,01131,,0.04,4.0 +Alabama,01,Black or African American (NH),Wilcox County,01131,3341.0,70.2,7328.0 +Alabama,01,Hispanic or Latino,Wilcox County,01131,,0.2,22.0 +Alabama,01,White (NH),Wilcox County,01131,2453.0,27.4,2860.0 +Alabama,01,All,Winston County,01133,6652.0,100.0,23655.0 +Alabama,01,American Indian and Alaska Native (NH),Winston County,01133,,0.2,43.0 +Alabama,01,"Asian, Native Hawaiian, and Pacific Islander (NH)",Winston County,01133,,0.4,105.0 +Alabama,01,Black or African American (NH),Winston County,01133,,1.1,263.0 +Alabama,01,Hispanic or Latino,Winston County,01133,,3.2,768.0 +Alabama,01,White (NH),Winston County,01133,6653.0,92.3,21834.0 +Wyoming,56,All,Albany County,56001,1462.0,100.0,37525.0 +Wyoming,56,American Indian and Alaska Native (NH),Albany County,56001,,0.4,143.0 +Wyoming,56,"Asian, Native Hawaiian, and Pacific Islander (NH)",Albany County,56001,,3.8,1439.0 +Wyoming,56,Black or African American (NH),Albany County,56001,,0.8,314.0 +Wyoming,56,Hispanic or Latino,Albany County,56001,,9.9,3719.0 +Wyoming,56,White (NH),Albany County,56001,1511.0,81.0,30382.0 +Wyoming,56,All,Big Horn County,56003,2671.0,100.0,11690.0 +Wyoming,56,American Indian and Alaska Native (NH),Big Horn County,56003,,0.4,50.0 +Wyoming,56,"Asian, Native Hawaiian, and Pacific Islander (NH)",Big Horn County,56003,,0.9,110.0 +Wyoming,56,Black or African American (NH),Big Horn County,56003,,0.4,52.0 +Wyoming,56,Hispanic or Latino,Big Horn County,56003,,9.7,1132.0 +Wyoming,56,White (NH),Big Horn County,56003,2656.0,86.1,10065.0 +Wyoming,56,All,Campbell County,56005,1472.0,100.0,46857.0 +Wyoming,56,American Indian and Alaska Native (NH),Campbell County,56005,,1.0,457.0 +Wyoming,56,"Asian, Native Hawaiian, and Pacific Islander (NH)",Campbell County,56005,,0.1,49.0 +Wyoming,56,Black or African American (NH),Campbell County,56005,,0.4,178.0 +Wyoming,56,Hispanic or Latino,Campbell County,56005,,8.9,4147.0 +Wyoming,56,White (NH),Campbell County,56005,1489.0,86.1,40339.0 +Wyoming,56,All,Carbon County,56007,1729.0,100.0,14609.0 +Wyoming,56,American Indian and Alaska Native (NH),Carbon County,56007,,1.3,194.0 +Wyoming,56,"Asian, Native Hawaiian, and Pacific Islander (NH)",Carbon County,56007,,0.5,75.0 +Wyoming,56,Black or African American (NH),Carbon County,56007,,1.4,205.0 +Wyoming,56,Hispanic or Latino,Carbon County,56007,1663.0,18.7,2726.0 +Wyoming,56,White (NH),Carbon County,56007,1729.0,76.2,11133.0 +Wyoming,56,All,Converse County,56009,2751.0,100.0,13729.0 +Wyoming,56,American Indian and Alaska Native (NH),Converse County,56009,,0.1,10.0 +Wyoming,56,"Asian, Native Hawaiian, and Pacific Islander (NH)",Converse County,56009,,0.1,19.0 +Wyoming,56,Black or African American (NH),Converse County,56009,,0.2,32.0 +Wyoming,56,Hispanic or Latino,Converse County,56009,,8.5,1162.0 +Wyoming,56,White (NH),Converse County,56009,2679.0,88.1,12099.0 +Wyoming,56,All,Crook County,56011,1606.0,100.0,7258.0 +Wyoming,56,American Indian and Alaska Native (NH),Crook County,56011,,0.3,19.0 +Wyoming,56,"Asian, Native Hawaiian, and Pacific Islander (NH)",Crook County,56011,,0.5,34.0 +Wyoming,56,Black or African American (NH),Crook County,56011,,0.0,0.0 +Wyoming,56,Hispanic or Latino,Crook County,56011,,2.8,206.0 +Wyoming,56,White (NH),Crook County,56011,1612.0,92.6,6719.0 +Wyoming,56,All,Fremont County,56013,2165.0,100.0,39402.0 +Wyoming,56,American Indian and Alaska Native (NH),Fremont County,56013,5558.0,18.1,7127.0 +Wyoming,56,"Asian, Native Hawaiian, and Pacific Islander (NH)",Fremont County,56013,,0.5,208.0 +Wyoming,56,Black or African American (NH),Fremont County,56013,,0.5,216.0 +Wyoming,56,Hispanic or Latino,Fremont County,56013,,7.8,3061.0 +Wyoming,56,White (NH),Fremont County,56013,1732.0,68.9,27163.0 +Wyoming,56,All,Goshen County,56015,2414.0,100.0,12592.0 +Wyoming,56,American Indian and Alaska Native (NH),Goshen County,56015,,1.2,157.0 +Wyoming,56,"Asian, Native Hawaiian, and Pacific Islander (NH)",Goshen County,56015,,0.9,110.0 +Wyoming,56,Black or African American (NH),Goshen County,56015,,0.5,58.0 +Wyoming,56,Hispanic or Latino,Goshen County,56015,3125.0,11.2,1410.0 +Wyoming,56,White (NH),Goshen County,56015,2300.0,84.3,10612.0 +Wyoming,56,All,Hot Springs County,56017,241.0,100.0,4616.0 +Wyoming,56,American Indian and Alaska Native (NH),Hot Springs County,56017,,2.1,99.0 +Wyoming,56,"Asian, Native Hawaiian, and Pacific Islander (NH)",Hot Springs County,56017,,0.1,6.0 +Wyoming,56,Black or African American (NH),Hot Springs County,56017,,0.0,0.0 +Wyoming,56,Hispanic or Latino,Hot Springs County,56017,,4.1,190.0 +Wyoming,56,White (NH),Hot Springs County,56017,255.0,89.3,4120.0 +Wyoming,56,All,Johnson County,56019,1989.0,100.0,8536.0 +Wyoming,56,American Indian and Alaska Native (NH),Johnson County,56019,,2.2,187.0 +Wyoming,56,"Asian, Native Hawaiian, and Pacific Islander (NH)",Johnson County,56019,,0.7000000000000001,57.0 +Wyoming,56,Black or African American (NH),Johnson County,56019,,0.2,16.0 +Wyoming,56,Hispanic or Latino,Johnson County,56019,,5.5,469.0 +Wyoming,56,White (NH),Johnson County,56019,2036.0,88.8,7583.0 +Wyoming,56,All,Laramie County,56021,2786.0,100.0,100316.0 +Wyoming,56,American Indian and Alaska Native (NH),Laramie County,56021,4270.0,0.6000000000000001,582.0 +Wyoming,56,"Asian, Native Hawaiian, and Pacific Islander (NH)",Laramie County,56021,,1.1,1152.0 +Wyoming,56,Black or African American (NH),Laramie County,56021,3355.0,2.1,2094.0 +Wyoming,56,Hispanic or Latino,Laramie County,56021,3082.0,15.5,15560.0 +Wyoming,56,White (NH),Laramie County,56021,2709.0,77.0,77215.0 +Wyoming,56,All,Lincoln County,56023,2425.0,100.0,19794.0 +Wyoming,56,American Indian and Alaska Native (NH),Lincoln County,56023,,0.3,61.0 +Wyoming,56,"Asian, Native Hawaiian, and Pacific Islander (NH)",Lincoln County,56023,,0.3,57.0 +Wyoming,56,Black or African American (NH),Lincoln County,56023,,0.1,11.0 +Wyoming,56,Hispanic or Latino,Lincoln County,56023,,5.0,998.0 +Wyoming,56,White (NH),Lincoln County,56023,2465.0,91.4,18098.0 +Wyoming,56,All,Natrona County,56025,2661.0,100.0,79506.0 +Wyoming,56,American Indian and Alaska Native (NH),Natrona County,56025,,0.8,659.0 +Wyoming,56,"Asian, Native Hawaiian, and Pacific Islander (NH)",Natrona County,56025,,0.7000000000000001,521.0 +Wyoming,56,Black or African American (NH),Natrona County,56025,,0.4,308.0 +Wyoming,56,Hispanic or Latino,Natrona County,56025,2859.0,9.1,7263.0 +Wyoming,56,White (NH),Natrona County,56025,2632.0,85.4,67904.0 +Wyoming,56,All,Niobrara County,56027,797.0,100.0,2460.0 +Wyoming,56,American Indian and Alaska Native (NH),Niobrara County,56027,,2.2,55.0 +Wyoming,56,"Asian, Native Hawaiian, and Pacific Islander (NH)",Niobrara County,56027,,1.2,29.0 +Wyoming,56,Black or African American (NH),Niobrara County,56027,,0.2,4.0 +Wyoming,56,Hispanic or Latino,Niobrara County,56027,,5.0,123.0 +Wyoming,56,White (NH),Niobrara County,56027,802.0,89.3,2198.0 +Wyoming,56,All,Park County,56029,2033.0,100.0,29878.0 +Wyoming,56,American Indian and Alaska Native (NH),Park County,56029,,0.2,62.0 +Wyoming,56,"Asian, Native Hawaiian, and Pacific Islander (NH)",Park County,56029,,0.3,81.0 +Wyoming,56,Black or African American (NH),Park County,56029,,0.6000000000000001,169.0 +Wyoming,56,Hispanic or Latino,Park County,56029,,6.0,1797.0 +Wyoming,56,White (NH),Park County,56029,2048.0,88.3,26383.0 +Wyoming,56,All,Platte County,56031,3120.0,100.0,8618.0 +Wyoming,56,American Indian and Alaska Native (NH),Platte County,56031,,0.1,6.0 +Wyoming,56,"Asian, Native Hawaiian, and Pacific Islander (NH)",Platte County,56031,,0.5,42.0 +Wyoming,56,Black or African American (NH),Platte County,56031,,0.5,47.0 +Wyoming,56,Hispanic or Latino,Platte County,56031,,8.4,727.0 +Wyoming,56,White (NH),Platte County,56031,3204.0,85.3,7352.0 +Wyoming,56,All,Sheridan County,56033,2740.0,100.0,31176.0 +Wyoming,56,American Indian and Alaska Native (NH),Sheridan County,56033,,1.2,365.0 +Wyoming,56,"Asian, Native Hawaiian, and Pacific Islander (NH)",Sheridan County,56033,,1.0,317.0 +Wyoming,56,Black or African American (NH),Sheridan County,56033,,0.3,88.0 +Wyoming,56,Hispanic or Latino,Sheridan County,56033,,4.7,1472.0 +Wyoming,56,White (NH),Sheridan County,56033,2713.0,90.6,28235.0 +Wyoming,56,All,Sublette County,56035,1354.0,100.0,8801.0 +Wyoming,56,American Indian and Alaska Native (NH),Sublette County,56035,,0.0,0.0 +Wyoming,56,"Asian, Native Hawaiian, and Pacific Islander (NH)",Sublette County,56035,,0.0,0.0 +Wyoming,56,Black or African American (NH),Sublette County,56035,,0.02,2.0 +Wyoming,56,Hispanic or Latino,Sublette County,56035,,7.0,617.0 +Wyoming,56,White (NH),Sublette County,56035,1323.0,90.6,7971.0 +Wyoming,56,All,Sweetwater County,56037,1167.0,100.0,42079.0 +Wyoming,56,American Indian and Alaska Native (NH),Sweetwater County,56037,,0.9,374.0 +Wyoming,56,"Asian, Native Hawaiian, and Pacific Islander (NH)",Sweetwater County,56037,,0.8,334.0 +Wyoming,56,Black or African American (NH),Sweetwater County,56037,,1.2,492.0 +Wyoming,56,Hispanic or Latino,Sweetwater County,56037,,16.2,6820.0 +Wyoming,56,White (NH),Sweetwater County,56037,1237.0,77.8,32751.0 +Wyoming,56,All,Teton County,56039,1772.0,100.0,23346.0 +Wyoming,56,American Indian and Alaska Native (NH),Teton County,56039,,0.1,29.0 +Wyoming,56,"Asian, Native Hawaiian, and Pacific Islander (NH)",Teton County,56039,,1.4,316.0 +Wyoming,56,Black or African American (NH),Teton County,56039,,0.6000000000000001,146.0 +Wyoming,56,Hispanic or Latino,Teton County,56039,,15.2,3548.0 +Wyoming,56,White (NH),Teton County,56039,1803.0,79.7,18598.0 +Wyoming,56,All,Uinta County,56041,2196.0,100.0,20546.0 +Wyoming,56,American Indian and Alaska Native (NH),Uinta County,56041,,0.1,19.0 +Wyoming,56,"Asian, Native Hawaiian, and Pacific Islander (NH)",Uinta County,56041,,0.2,33.0 +Wyoming,56,Black or African American (NH),Uinta County,56041,,0.2,49.0 +Wyoming,56,Hispanic or Latino,Uinta County,56041,,9.9,2025.0 +Wyoming,56,White (NH),Uinta County,56041,2275.0,86.8,17826.0 +Wyoming,56,All,Washakie County,56043,2261.0,100.0,7725.0 +Wyoming,56,American Indian and Alaska Native (NH),Washakie County,56043,,0.3,23.0 +Wyoming,56,"Asian, Native Hawaiian, and Pacific Islander (NH)",Washakie County,56043,,0.4,32.0 +Wyoming,56,Black or African American (NH),Washakie County,56043,,0.01,1.0 +Wyoming,56,Hispanic or Latino,Washakie County,56043,,14.3,1103.0 +Wyoming,56,White (NH),Washakie County,56043,2152.0,81.6,6301.0 +Wyoming,56,All,Weston County,56045,2045.0,100.0,6870.0 +Wyoming,56,American Indian and Alaska Native (NH),Weston County,56045,,1.5,104.0 +Wyoming,56,"Asian, Native Hawaiian, and Pacific Islander (NH)",Weston County,56045,,0.9,64.0 +Wyoming,56,Black or African American (NH),Weston County,56045,,0.1,6.0 +Wyoming,56,Hispanic or Latino,Weston County,56045,,3.5,243.0 +Wyoming,56,White (NH),Weston County,56045,2009.0,85.5,5874.0 diff --git a/python/tests/data/chr/test_analytic_data2024.csv b/python/tests/data/chr/test_analytic_data2024.csv new file mode 100644 index 0000000000..f8d2bb7c76 --- /dev/null +++ b/python/tests/data/chr/test_analytic_data2024.csv @@ -0,0 +1,95 @@ +State FIPS Code,County FIPS Code,5-digit FIPS Code,State Abbreviation,Name,Release Year,County Clustered (Yes=1/No=0),Premature Death raw value,Premature Death numerator,Premature Death denominator,Premature Death CI low,Premature Death CI high,Premature Death flag (0 = No Flag/1=Unreliable/2=Suppressed),Premature Death (AIAN),Premature Death CI low (AIAN),Premature Death CI high (AIAN),Premature Death flag (AIAN) (. = No Flag/1=Unreliable/2=Suppressed),Premature Death (Asian/Pacific Islander),Premature Death CI low (Asian/Pacific Islander),Premature Death CI high (Asian/Pacific Islander),Premature Death flag (Asian/Pacific Islander) (. = No Flag/1=Unreliable/2=Suppressed),Premature Death (Black),Premature Death CI low (Black),Premature Death CI high (Black),Premature Death flag (Black) (. = No Flag/1=Unreliable/2=Suppressed),Premature Death (Hispanic),Premature Death CI low (Hispanic),Premature Death CI high (Hispanic),Premature Death flag (Hispanic) (. = No Flag/1=Unreliable/2=Suppressed),Premature Death (White),Premature Death CI low (White),Premature Death CI high (White),Premature Death flag (White) (. = No Flag/1=Unreliable/2=Suppressed),Premature Death (NHOPI),Premature Death CI low (NHOPI),Premature Death CI high (NHOPI),Premature Death flag (NHOPI) (. = No Flag/1=Unreliable/2=Suppressed),Premature Death flag (Two or more races) (. = No Flag/1=Unreliable/2=Suppressed),Poor or Fair Health raw value,Poor or Fair Health numerator,Poor or Fair Health denominator,Poor or Fair Health CI low,Poor or Fair Health CI high,Poor Physical Health Days raw value,Poor Physical Health Days numerator,Poor Physical Health Days denominator,Poor Physical Health Days CI low,Poor Physical Health Days CI high,Poor Mental Health Days raw value,Poor Mental Health Days numerator,Poor Mental Health Days denominator,Poor Mental Health Days CI low,Poor Mental Health Days CI high,Low Birthweight raw value,Low Birthweight numerator,Low Birthweight denominator,Low Birthweight CI low,Low Birthweight CI high,LBW unreliable indicator (Unreliable = Numerator < 20 or relative standard error > 20%),Low Birthweight (AIAN),Low Birthweight CI low (AIAN),Low Birthweight CI high (AIAN),Low Birthweight (Asian/Pacific Islander),Low Birthweight CI low (Asian/Pacific Islander),Low Birthweight CI high (Asian/Pacific Islander),Low Birthweight (Black),Low Birthweight CI low (Black),Low Birthweight CI high (Black),Low Birthweight (Hispanic),Low Birthweight CI low (Hispanic),Low Birthweight CI high (Hispanic),Low Birthweight (White),Low Birthweight CI low (White),Low Birthweight CI high (White),Low Birthweight (NHOPI),Low Birthweight CI low (NHOPI),Low Birthweight CI high (NHOPI),Low Birthweight (Two or more races),Low Birthweight CI low (Two or more races),Low Birthweight CI high (Two or more races),Adult Smoking raw value,Adult Smoking numerator,Adult Smoking denominator,Adult Smoking CI low,Adult Smoking CI high,Adult Obesity raw value,Adult Obesity numerator,Adult Obesity denominator,Adult Obesity CI low,Adult Obesity CI high,Food Environment Index raw value,Food Environment Index numerator,Food Environment Index denominator,Food Environment Index CI low,Food Environment Index CI high,Physical Inactivity raw value,Physical Inactivity numerator,Physical Inactivity denominator,Physical Inactivity CI low,Physical Inactivity CI high,Access to Exercise Opportunities raw value,Access to Exercise Opportunities numerator,Access to Exercise Opportunities denominator,Access to Exercise Opportunities CI low,Access to Exercise Opportunities CI high,Excessive Drinking raw value,Excessive Drinking numerator,Excessive Drinking denominator,Excessive Drinking CI low,Excessive Drinking CI high,Alcohol-Impaired Driving Deaths raw value,Alcohol-Impaired Driving Deaths numerator,Alcohol-Impaired Driving Deaths denominator,Alcohol-Impaired Driving Deaths CI low,Alcohol-Impaired Driving Deaths CI high,Sexually Transmitted Infections raw value,Sexually Transmitted Infections numerator,Sexually Transmitted Infections denominator,Sexually Transmitted Infections CI low,Sexually Transmitted Infections CI high,Teen Births raw value,Teen Births numerator,Teen Births denominator,Teen Births CI low,Teen Births CI high,Teen Births (AIAN),Teen Births CI low (AIAN),Teen Births CI high (AIAN),Teen Births (Asian/Pacific Islander),Teen Births CI low (Asian/Pacific Islander),Teen Births CI high (Asian/Pacific Islander),Teen Births (Black),Teen Births CI low (Black),Teen Births CI high (Black),Teen Births (Hispanic),Teen Births CI low (Hispanic),Teen Births CI high (Hispanic),Teen Births (White),Teen Births CI low (White),Teen Births CI high (White),Teen Births (NHOPI),Teen Births CI low (NHOPI),Teen Births CI high (NHOPI),Teen Births (Two or more races),Teen Births CI low (Two or more races),Teen Births CI high (Two or more races),Uninsured raw value,Uninsured numerator,Uninsured denominator,Uninsured CI low,Uninsured CI high,Primary Care Physicians raw value,Primary Care Physicians numerator,Primary Care Physicians denominator,Primary Care Physicians CI low,Primary Care Physicians CI high,Ratio of population to primary care physicians.,Dentists raw value,Dentists numerator,Dentists denominator,Dentists CI low,Dentists CI high,Ratio of population to dentists.,Mental Health Providers raw value,Mental Health Providers numerator,Mental Health Providers denominator,Mental Health Providers CI low,Mental Health Providers CI high,Ratio of population to mental health providers.,Preventable Hospital Stays raw value,Preventable Hospital Stays numerator,Preventable Hospital Stays denominator,Preventable Hospital Stays CI low,Preventable Hospital Stays CI high,Preventable Hospital Stays (AIAN),Preventable Hospital Stays (Asian/Pacific Islander),Preventable Hospital Stays (Black),Preventable Hospital Stays (Hispanic),Preventable Hospital Stays (White),Mammography Screening raw value,Mammography Screening numerator,Mammography Screening denominator,Mammography Screening CI low,Mammography Screening CI high,Mammography Screening (AIAN),Mammography Screening (Asian/Pacific Islander),Mammography Screening (Black),Mammography Screening (Hispanic),Mammography Screening (White),Flu Vaccinations raw value,Flu Vaccinations numerator,Flu Vaccinations denominator,Flu Vaccinations CI low,Flu Vaccinations CI high,Flu Vaccinations (AIAN),Flu Vaccinations (Asian/Pacific Islander),Flu Vaccinations (Black),Flu Vaccinations (Hispanic),Flu Vaccinations (White),High School Completion raw value,High School Completion numerator,High School Completion denominator,High School Completion CI low,High School Completion CI high,Some College raw value,Some College numerator,Some College denominator,Some College CI low,Some College CI high,Unemployment raw value,Unemployment numerator,Unemployment denominator,Unemployment CI low,Unemployment CI high,Children in Poverty raw value,Children in Poverty numerator,Children in Poverty denominator,Children in Poverty CI low,Children in Poverty CI high,Children in Poverty (AIAN),Children in Poverty CI low (AIAN),Children in Poverty CI high (AIAN),Children in Poverty (Asian/Pacific Islander),Children in Poverty CI low (Asian/Pacific Islander),Children in Poverty CI high (Asian/Pacific Islander),Children in Poverty (Black),Children in Poverty CI low (Black),Children in Poverty CI high (Black),Children in Poverty (Hispanic),Children in Poverty CI low (Hispanic),Children in Poverty CI high (Hispanic),Children in Poverty (White),Children in Poverty CI low (White),Children in Poverty CI high (White),Income Inequality raw value,Income Inequality numerator,Income Inequality denominator,Income Inequality CI low,Income Inequality CI high,Children in Single-Parent Households raw value,Children in Single-Parent Households numerator,Children in Single-Parent Households denominator,Children in Single-Parent Households CI low,Children in Single-Parent Households CI high,Social Associations raw value,Social Associations numerator,Social Associations denominator,Social Associations CI low,Social Associations CI high,Injury Deaths raw value,Injury Deaths numerator,Injury Deaths denominator,Injury Deaths CI low,Injury Deaths CI high,Injury Deaths (AIAN),Injury Deaths CI low (AIAN),Injury Deaths CI high (AIAN),Injury Deaths (Asian/Pacific Islander),Injury Deaths CI low (Asian/Pacific Islander),Injury Deaths CI high (Asian/Pacific Islander),Injury Deaths (Black),Injury Deaths CI low (Black),Injury Deaths CI high (Black),Injury Deaths (Hispanic),Injury Deaths CI low (Hispanic),Injury Deaths CI high (Hispanic),Injury Deaths (White),Injury Deaths CI low (White),Injury Deaths CI high (White),Injury Deaths (NHOPI),Injury Deaths CI low (NHOPI),Injury Deaths CI high (NHOPI),Air Pollution - Particulate Matter raw value,Air Pollution - Particulate Matter numerator,Air Pollution - Particulate Matter denominator,Air Pollution - Particulate Matter CI low,Air Pollution - Particulate Matter CI high,Drinking Water Violations raw value,Drinking Water Violations numerator,Drinking Water Violations denominator,Drinking Water Violations CI low,Drinking Water Violations CI high,Severe Housing Problems raw value,Severe Housing Problems numerator,Severe Housing Problems denominator,Severe Housing Problems CI low,Severe Housing Problems CI high,Percentage of households with high housing costs,Percentage of households with high housing costs CI low,Percentage of households with high housing costs CI high,Percentage of households with overcrowding,Percentage of households with overcrowding CI low,Percentage of households with overcrowding CI high,Percentage of households with lack of kitchen or plumbing facilities,Percentage of households with lack of kitchen or plumbing facilities CI low,Percentage of households with lack of kitchen or plumbing facilities CI high,Driving Alone to Work raw value,Driving Alone to Work numerator,Driving Alone to Work denominator,Driving Alone to Work CI low,Driving Alone to Work CI high,Driving Alone to Work (AIAN),Driving Alone to Work CI low (AIAN),Driving Alone to Work CI high (AIAN),Driving Alone to Work (Asian/Pacific Islander),Driving Alone to Work CI low (Asian/Pacific Islander),Driving Alone to Work CI high (Asian/Pacific Islander),Driving Alone to Work (Black),Driving Alone to Work CI low (Black),Driving Alone to Work CI high (Black),Driving Alone to Work (Hispanic),Driving Alone to Work CI low (Hispanic),Driving Alone to Work CI high (Hispanic),Driving Alone to Work (White),Driving Alone to Work CI low (White),Driving Alone to Work CI high (White),Long Commute - Driving Alone raw value,Long Commute - Driving Alone numerator,Long Commute - Driving Alone denominator,Long Commute - Driving Alone CI low,Long Commute - Driving Alone CI high,Life Expectancy raw value,Life Expectancy numerator,Life Expectancy denominator,Life Expectancy CI low,Life Expectancy CI high,Life Expectancy (AIAN),Life Expectancy CI low (AIAN),Life Expectancy CI high (AIAN),Life Expectancy (Asian/Pacific Islander),Life Expectancy CI low (Asian/Pacific Islander),Life Expectancy CI high (Asian/Pacific Islander),Life Expectancy (Black),Life Expectancy CI low (Black),Life Expectancy CI high (Black),Life Expectancy (Hispanic),Life Expectancy CI low (Hispanic),Life Expectancy CI high (Hispanic),Life Expectancy (White),Life Expectancy CI low (White),Life Expectancy CI high (White),Life Expectancy (NHOPI),Life Expectancy CI low (NHOPI),Life Expectancy CI high (NHOPI),Premature Age-Adjusted Mortality raw value,Premature Age-Adjusted Mortality numerator,Premature Age-Adjusted Mortality denominator,Premature Age-Adjusted Mortality CI low,Premature Age-Adjusted Mortality CI high,Premature Age-Adjusted Mortality (AIAN),Premature Age-Adjusted Mortality CI low (AIAN),Premature Age-Adjusted Mortality CI high (AIAN),Premature Age-Adjusted Mortality (Asian/Pacific Islander),Premature Age-Adjusted Mortality CI low (Asian/Pacific Islander),Premature Age-Adjusted Mortality CI high (Asian/Pacific Islander),Premature Age-Adjusted Mortality (Black),Premature Age-Adjusted Mortality CI low (Black),Premature Age-Adjusted Mortality CI high (Black),Premature Age-Adjusted Mortality (Hispanic),Premature Age-Adjusted Mortality CI low (Hispanic),Premature Age-Adjusted Mortality CI high (Hispanic),Premature Age-Adjusted Mortality (White),Premature Age-Adjusted Mortality CI low (White),Premature Age-Adjusted Mortality CI high (White),Premature Age-Adjusted Mortality (NHOPI),Premature Age-Adjusted Mortality CI low (NHOPI),Premature Age-Adjusted Mortality CI high (NHOPI),Child Mortality raw value,Child Mortality numerator,Child Mortality denominator,Child Mortality CI low,Child Mortality CI high,Child Mortality (AIAN),Child Mortality CI low (AIAN),Child Mortality CI high (AIAN),Child Mortality (Asian/Pacific Islander),Child Mortality CI low (Asian/Pacific Islander),Child Mortality CI high (Asian/Pacific Islander),Child Mortality (Black),Child Mortality CI low (Black),Child Mortality CI high (Black),Child Mortality (Hispanic),Child Mortality CI low (Hispanic),Child Mortality CI high (Hispanic),Child Mortality (White),Child Mortality CI low (White),Child Mortality CI high (White),Child Mortality (NHOPI),Child Mortality CI low (NHOPI),Child Mortality CI high (NHOPI),Infant Mortality raw value,Infant Mortality numerator,Infant Mortality denominator,Infant Mortality CI low,Infant Mortality CI high,Infant Mortality (AIAN),Infant Mortality CI low (AIAN),Infant Mortality CI high (AIAN),Infant Mortality (Asian/Pacific Islander),Infant Mortality CI low (Asian/Pacific Islander),Infant Mortality CI high (Asian/Pacific Islander),Infant Mortality (Black),Infant Mortality CI low (Black),Infant Mortality CI high (Black),Infant Mortality (Hispanic),Infant Mortality CI low (Hispanic),Infant Mortality CI high (Hispanic),Infant Mortality (White),Infant Mortality CI low (White),Infant Mortality CI high (White),Infant Mortality (NHOPI),Infant Mortality CI low (NHOPI),Infant Mortality CI high (NHOPI),Infant Mortality (Two or more races),Infant Mortality CI low (Two or more races),Infant Mortality CI high (Two or more races),Frequent Physical Distress raw value,Frequent Physical Distress numerator,Frequent Physical Distress denominator,Frequent Physical Distress CI low,Frequent Physical Distress CI high,Frequent Mental Distress raw value,Frequent Mental Distress numerator,Frequent Mental Distress denominator,Frequent Mental Distress CI low,Frequent Mental Distress CI high,Diabetes Prevalence raw value,Diabetes Prevalence numerator,Diabetes Prevalence denominator,Diabetes Prevalence CI low,Diabetes Prevalence CI high,HIV Prevalence raw value,HIV Prevalence numerator,HIV Prevalence denominator,HIV Prevalence CI low,HIV Prevalence CI high,Food Insecurity raw value,Food Insecurity numerator,Food Insecurity denominator,Food Insecurity CI low,Food Insecurity CI high,Limited Access to Healthy Foods raw value,Limited Access to Healthy Foods numerator,Limited Access to Healthy Foods denominator,Limited Access to Healthy Foods CI low,Limited Access to Healthy Foods CI high,Drug Overdose Deaths raw value,Drug Overdose Deaths numerator,Drug Overdose Deaths denominator,Drug Overdose Deaths CI low,Drug Overdose Deaths CI high,Drug Overdose Deaths (AIAN),Drug Overdose Deaths CI low (AIAN),Drug Overdose Deaths CI high (AIAN),Drug Overdose Deaths (Asian/Pacific Islander),Drug Overdose Deaths CI low (Asian/Pacific Islander),Drug Overdose Deaths CI high (Asian/Pacific Islander),Drug Overdose Deaths (Black),Drug Overdose Deaths CI low (Black),Drug Overdose Deaths CI high (Black),Drug Overdose Deaths (Hispanic),Drug Overdose Deaths CI low (Hispanic),Drug Overdose Deaths CI high (Hispanic),Drug Overdose Deaths (White),Drug Overdose Deaths CI low (White),Drug Overdose Deaths CI high (White),Drug Overdose Deaths (NHOPI),Drug Overdose Deaths CI low (NHOPI),Drug Overdose Deaths CI high (NHOPI),Insufficient Sleep raw value,Insufficient Sleep numerator,Insufficient Sleep denominator,Insufficient Sleep CI low,Insufficient Sleep CI high,Uninsured Adults raw value,Uninsured Adults numerator,Uninsured Adults denominator,Uninsured Adults CI low,Uninsured Adults CI high,Uninsured Children raw value,Uninsured Children numerator,Uninsured Children denominator,Uninsured Children CI low,Uninsured Children CI high,Other Primary Care Providers raw value,Other Primary Care Providers numerator,Other Primary Care Providers denominator,Other Primary Care Providers CI low,Other Primary Care Providers CI high,Ratio of population to primary care providers other than physicians.,High School Graduation raw value,High School Graduation numerator,High School Graduation denominator,High School Graduation CI low,High School Graduation CI high,Disconnected Youth raw value,Disconnected Youth numerator,Disconnected Youth denominator,Disconnected Youth CI low,Disconnected Youth CI high,Reading Scores raw value,Reading Scores numerator,Reading Scores denominator,Reading Scores CI low,Reading Scores CI high,Reading Scores (AIAN),Reading Scores (Asian/Pacific Islander),Reading Scores (Black),Reading Scores (Hispanic),Reading Scores (White),Math Scores raw value,Math Scores numerator,Math Scores denominator,Math Scores CI low,Math Scores CI high,Math Scores (AIAN),Math Scores (Asian/Pacific Islander),Math Scores (Black),Math Scores (Hispanic),Math Scores (White),School Segregation raw value,School Segregation numerator,School Segregation denominator,School Segregation CI low,School Segregation CI high,School Funding Adequacy raw value,School Funding Adequacy numerator,School Funding Adequacy denominator,School Funding Adequacy CI low,School Funding Adequacy CI high,Gender Pay Gap raw value,Gender Pay Gap numerator,Gender Pay Gap denominator,Gender Pay Gap CI low,Gender Pay Gap CI high,Median Household Income raw value,Median Household Income numerator,Median Household Income denominator,Median Household Income CI low,Median Household Income CI high,Median Household Income (AIAN),Median Household Income CI low (AIAN),Median Household Income CI high (AIAN),Median household income (Asian),Median household income CI low (Asian),Median household income CI high (Asian),Median Household Income (Black),Median Household Income CI low (Black),Median Household Income CI high (Black),Median Household Income (Hispanic),Median Household Income CI low (Hispanic),Median Household Income CI high (Hispanic),Median Household Income (White),Median Household Income CI low (White),Median Household Income CI high (White),Living Wage raw value,Living Wage numerator,Living Wage denominator,Living Wage CI low,Living Wage CI high,Children Eligible for Free or Reduced Price Lunch raw value,Children Eligible for Free or Reduced Price Lunch numerator,Children Eligible for Free or Reduced Price Lunch denominator,Children Eligible for Free or Reduced Price Lunch CI low,Children Eligible for Free or Reduced Price Lunch CI high,Residential Segregation - Black/White raw value,Residential Segregation - Black/White numerator,Residential Segregation - Black/White denominator,Residential Segregation - Black/White CI low,Residential Segregation - Black/White CI high,Child Care Cost Burden raw value,Child Care Cost Burden numerator,Child Care Cost Burden denominator,Child Care Cost Burden CI low,Child Care Cost Burden CI high,Child Care Centers raw value,Child Care Centers numerator,Child Care Centers denominator,Child Care Centers CI low,Child Care Centers CI high,Homicides raw value,Homicides numerator,Homicides denominator,Homicides CI low,Homicides CI high,Homicides (AIAN),Homicides CI low (AIAN),Homicides CI high (AIAN),Homicides (Asian/Pacific Islander),Homicides CI low (Asian/Pacific Islander),Homicides CI high (Asian/Pacific Islander),Homicides (Black),Homicides CI low (Black),Homicides CI high (Black),Homicides (Hispanic),Homicides CI low (Hispanic),Homicides CI high (Hispanic),Homicides (White),Homicides CI low (White),Homicides CI high (White),Homicides (NHOPI),Homicides CI low (NHOPI),Homicides CI high (NHOPI),Suicides raw value,Suicides numerator,Suicides denominator,Suicides CI low,Suicides CI high,Crude suicide rate,Suicides (AIAN),Suicides CI low (AIAN),Suicides CI high (AIAN),Suicides (Asian/Pacific Islander),Suicides CI low (Asian/Pacific Islander),Suicides CI high (Asian/Pacific Islander),Suicides (Black),Suicides CI low (Black),Suicides CI high (Black),Suicides (Hispanic),Suicides CI low (Hispanic),Suicides CI high (Hispanic),Suicides (White),Suicides CI low (White),Suicides CI high (White),Suicides (NHOPI),Suicides CI low (NHOPI),Suicides CI high (NHOPI),Firearm Fatalities raw value,Firearm Fatalities numerator,Firearm Fatalities denominator,Firearm Fatalities CI low,Firearm Fatalities CI high,Firearm Fatalities (AIAN),Firearm Fatalities CI low (AIAN),Firearm Fatalities CI high (AIAN),Firearm Fatalities (Asian/Pacific Islander),Firearm Fatalities CI low (Asian/Pacific Islander),Firearm Fatalities CI high (Asian/Pacific Islander),Firearm Fatalities (Black),Firearm Fatalities CI low (Black),Firearm Fatalities CI high (Black),Firearm Fatalities (Hispanic),Firearm Fatalities CI low (Hispanic),Firearm Fatalities CI high (Hispanic),Firearm Fatalities (White),Firearm Fatalities CI low (White),Firearm Fatalities CI high (White),Firearm Fatalities (NHOPI),Firearm Fatalities CI low (NHOPI),Firearm Fatalities CI high (NHOPI),Motor Vehicle Crash Deaths raw value,Motor Vehicle Crash Deaths numerator,Motor Vehicle Crash Deaths denominator,Motor Vehicle Crash Deaths CI low,Motor Vehicle Crash Deaths CI high,Motor Vehicle Crash Deaths (AIAN),Motor Vehicle Crash Deaths CI low (AIAN),Motor Vehicle Crash Deaths CI high (AIAN),Motor Vehicle Crash Deaths (Asian/Pacific Islander),Motor Vehicle Crash Deaths CI low (Asian/Pacific Islander),Motor Vehicle Crash Deaths CI high (Asian/Pacific Islander),Motor Vehicle Crash Deaths (Black),Motor Vehicle Crash Deaths CI low (Black),Motor Vehicle Crash Deaths CI high (Black),Motor Vehicle Crash Deaths (Hispanic),Motor Vehicle Crash Deaths CI low (Hispanic),Motor Vehicle Crash Deaths CI high (Hispanic),Motor Vehicle Crash Deaths (White),Motor Vehicle Crash Deaths CI low (White),Motor Vehicle Crash Deaths CI high (White),Motor Vehicle Crash Deaths (NHOPI),Motor Vehicle Crash Deaths CI low (NHOPI),Motor Vehicle Crash Deaths CI high (NHOPI),Juvenile Arrests raw value,Juvenile Arrests numerator,Juvenile Arrests denominator,Juvenile Arrests CI low,Juvenile Arrests CI high,Number of juvenile delinquency cases formally processed by a juvenile court,Number of informally handled juvenile delinquency cases,Voter Turnout raw value,Voter Turnout numerator,Voter Turnout denominator,Voter Turnout CI low,Voter Turnout CI high,Census Participation raw value,Census Participation numerator,Census Participation denominator,Census Participation CI low,Census Participation CI high,Traffic Volume raw value,Traffic Volume numerator,Traffic Volume denominator,Traffic Volume CI low,Traffic Volume CI high,Homeownership raw value,Homeownership numerator,Homeownership denominator,Homeownership CI low,Homeownership CI high,Severe Housing Cost Burden raw value,Severe Housing Cost Burden numerator,Severe Housing Cost Burden denominator,Severe Housing Cost Burden CI low,Severe Housing Cost Burden CI high,Broadband Access raw value,Broadband Access numerator,Broadband Access denominator,Broadband Access CI low,Broadband Access CI high,Population raw value,Population numerator,Population denominator,Population CI low,Population CI high,% Below 18 Years of Age raw value,% Below 18 Years of Age numerator,% Below 18 Years of Age denominator,% Below 18 Years of Age CI low,% Below 18 Years of Age CI high,% 65 and Older raw value,% 65 and Older numerator,% 65 and Older denominator,% 65 and Older CI low,% 65 and Older CI high,% Non-Hispanic Black raw value,% Non-Hispanic Black numerator,% Non-Hispanic Black denominator,% Non-Hispanic Black CI low,% Non-Hispanic Black CI high,% American Indian or Alaska Native raw value,% American Indian or Alaska Native numerator,% American Indian or Alaska Native denominator,% American Indian or Alaska Native CI low,% American Indian or Alaska Native CI high,% Asian raw value,% Asian numerator,% Asian denominator,% Asian CI low,% Asian CI high,% Native Hawaiian or Other Pacific Islander raw value,% Native Hawaiian or Other Pacific Islander numerator,% Native Hawaiian or Other Pacific Islander denominator,% Native Hawaiian or Other Pacific Islander CI low,% Native Hawaiian or Other Pacific Islander CI high,% Hispanic raw value,% Hispanic numerator,% Hispanic denominator,% Hispanic CI low,% Hispanic CI high,% Non-Hispanic White raw value,% Non-Hispanic White numerator,% Non-Hispanic White denominator,% Non-Hispanic White CI low,% Non-Hispanic White CI high,% Not Proficient in English raw value,% Not Proficient in English numerator,% Not Proficient in English denominator,% Not Proficient in English CI low,% Not Proficient in English CI high,% Female raw value,% Female numerator,% Female denominator,% Female CI low,% Female CI high,% Rural raw value,% Rural numerator,% Rural denominator,% Rural CI low,% Rural CI high +statecode,countycode,fipscode,state,county,year,county_clustered,v001_rawvalue,v001_numerator,v001_denominator,v001_cilow,v001_cihigh,v001_flag,v001_race_aian,v001_race_aian_cilow,v001_race_aian_cihigh,v001_race_aian_flag,v001_race_asian,v001_race_asian_cilow,v001_race_asian_cihigh,v001_race_asian_flag,v001_race_black,v001_race_black_cilow,v001_race_black_cihigh,v001_race_black_flag,v001_race_hispanic,v001_race_hispanic_cilow,v001_race_hispanic_cihigh,v001_race_hispanic_flag,v001_race_white,v001_race_white_cilow,v001_race_white_cihigh,v001_race_white_flag,v001_race_nhopi,v001_race_nhopi_cilow,v001_race_nhopi_cihigh,v001_race_nhopi_flag,v001_race_tom_flag,v002_rawvalue,v002_numerator,v002_denominator,v002_cilow,v002_cihigh,v036_rawvalue,v036_numerator,v036_denominator,v036_cilow,v036_cihigh,v042_rawvalue,v042_numerator,v042_denominator,v042_cilow,v042_cihigh,v037_rawvalue,v037_numerator,v037_denominator,v037_cilow,v037_cihigh,v037_flag,v037_race_aian,v037_race_aian_cilow,v037_race_aian_cihigh,v037_race_asian,v037_race_asian_cilow,v037_race_asian_cihigh,v037_race_black,v037_race_black_cilow,v037_race_black_cihigh,v037_race_hispanic,v037_race_hispanic_cilow,v037_race_hispanic_cihigh,v037_race_white,v037_race_white_cilow,v037_race_white_cihigh,v037_race_nhopi,v037_race_nhopi_cilow,v037_race_nhopi_cihigh,v037_race_tom,v037_race_tom_cilow,v037_race_tom_cihigh,v009_rawvalue,v009_numerator,v009_denominator,v009_cilow,v009_cihigh,v011_rawvalue,v011_numerator,v011_denominator,v011_cilow,v011_cihigh,v133_rawvalue,v133_numerator,v133_denominator,v133_cilow,v133_cihigh,v070_rawvalue,v070_numerator,v070_denominator,v070_cilow,v070_cihigh,v132_rawvalue,v132_numerator,v132_denominator,v132_cilow,v132_cihigh,v049_rawvalue,v049_numerator,v049_denominator,v049_cilow,v049_cihigh,v134_rawvalue,v134_numerator,v134_denominator,v134_cilow,v134_cihigh,v045_rawvalue,v045_numerator,v045_denominator,v045_cilow,v045_cihigh,v014_rawvalue,v014_numerator,v014_denominator,v014_cilow,v014_cihigh,v014_race_aian,v014_race_aian_cilow,v014_race_aian_cihigh,v014_race_asian,v014_race_asian_cilow,v014_race_asian_cihigh,v014_race_black,v014_race_black_cilow,v014_race_black_cihigh,v014_race_hispanic,v014_race_hispanic_cilow,v014_race_hispanic_cihigh,v014_race_white,v014_race_white_cilow,v014_race_white_cihigh,v014_race_nhopi,v014_race_nhopi_cilow,v014_race_nhopi_cihigh,v014_race_tom,v014_race_tom_cilow,v014_race_tom_cihigh,v085_rawvalue,v085_numerator,v085_denominator,v085_cilow,v085_cihigh,v004_rawvalue,v004_numerator,v004_denominator,v004_cilow,v004_cihigh,v004_other_data_1,v088_rawvalue,v088_numerator,v088_denominator,v088_cilow,v088_cihigh,v088_other_data_1,v062_rawvalue,v062_numerator,v062_denominator,v062_cilow,v062_cihigh,v062_other_data_1,v005_rawvalue,v005_numerator,v005_denominator,v005_cilow,v005_cihigh,v005_race_aian,v005_race_asian,v005_race_black,v005_race_hispanic,v005_race_white,v050_rawvalue,v050_numerator,v050_denominator,v050_cilow,v050_cihigh,v050_race_aian,v050_race_asian,v050_race_black,v050_race_hispanic,v050_race_white,v155_rawvalue,v155_numerator,v155_denominator,v155_cilow,v155_cihigh,v155_race_aian,v155_race_asian,v155_race_black,v155_race_hispanic,v155_race_white,v168_rawvalue,v168_numerator,v168_denominator,v168_cilow,v168_cihigh,v069_rawvalue,v069_numerator,v069_denominator,v069_cilow,v069_cihigh,v023_rawvalue,v023_numerator,v023_denominator,v023_cilow,v023_cihigh,v024_rawvalue,v024_numerator,v024_denominator,v024_cilow,v024_cihigh,v024_race_aian,v024_race_aian_cilow,v024_race_aian_cihigh,v024_race_asian,v024_race_asian_cilow,v024_race_asian_cihigh,v024_race_black,v024_race_black_cilow,v024_race_black_cihigh,v024_race_hispanic,v024_race_hispanic_cilow,v024_race_hispanic_cihigh,v024_race_white,v024_race_white_cilow,v024_race_white_cihigh,v044_rawvalue,v044_numerator,v044_denominator,v044_cilow,v044_cihigh,v082_rawvalue,v082_numerator,v082_denominator,v082_cilow,v082_cihigh,v140_rawvalue,v140_numerator,v140_denominator,v140_cilow,v140_cihigh,v135_rawvalue,v135_numerator,v135_denominator,v135_cilow,v135_cihigh,v135_race_aian,v135_race_aian_cilow,v135_race_aian_cihigh,v135_race_asian,v135_race_asian_cilow,v135_race_asian_cihigh,v135_race_black,v135_race_black_cilow,v135_race_black_cihigh,v135_race_hispanic,v135_race_hispanic_cilow,v135_race_hispanic_cihigh,v135_race_white,v135_race_white_cilow,v135_race_white_cihigh,v135_race_nhopi,v135_race_nhopi_cilow,v135_race_nhopi_cihigh,v125_rawvalue,v125_numerator,v125_denominator,v125_cilow,v125_cihigh,v124_rawvalue,v124_numerator,v124_denominator,v124_cilow,v124_cihigh,v136_rawvalue,v136_numerator,v136_denominator,v136_cilow,v136_cihigh,v136_other_data_1,v136_other_data_1_cilow,v136_other_data_1_cihigh,v136_other_data_2,v136_other_data_2_cilow,v136_other_data_2_cihigh,v136_other_data_3,v136_other_data_3_cilow,v136_other_data_3_cihigh,v067_rawvalue,v067_numerator,v067_denominator,v067_cilow,v067_cihigh,v067_race_aian,v067_race_aian_cilow,v067_race_aian_cihigh,v067_race_asian,v067_race_asian_cilow,v067_race_asian_cihigh,v067_race_black,v067_race_black_cilow,v067_race_black_cihigh,v067_race_hispanic,v067_race_hispanic_cilow,v067_race_hispanic_cihigh,v067_race_white,v067_race_white_cilow,v067_race_white_cihigh,v137_rawvalue,v137_numerator,v137_denominator,v137_cilow,v137_cihigh,v147_rawvalue,v147_numerator,v147_denominator,v147_cilow,v147_cihigh,v147_race_aian,v147_race_aian_cilow,v147_race_aian_cihigh,v147_race_asian,v147_race_asian_cilow,v147_race_asian_cihigh,v147_race_black,v147_race_black_cilow,v147_race_black_cihigh,v147_race_hispanic,v147_race_hispanic_cilow,v147_race_hispanic_cihigh,v147_race_white,v147_race_white_cilow,v147_race_white_cihigh,v147_race_nhopi,v147_race_nhopi_cilow,v147_race_nhopi_cihigh,v127_rawvalue,v127_numerator,v127_denominator,v127_cilow,v127_cihigh,v127_race_aian,v127_race_aian_cilow,v127_race_aian_cihigh,v127_race_asian,v127_race_asian_cilow,v127_race_asian_cihigh,v127_race_black,v127_race_black_cilow,v127_race_black_cihigh,v127_race_hispanic,v127_race_hispanic_cilow,v127_race_hispanic_cihigh,v127_race_white,v127_race_white_cilow,v127_race_white_cihigh,v127_race_nhopi,v127_race_nhopi_cilow,v127_race_nhopi_cihigh,v128_rawvalue,v128_numerator,v128_denominator,v128_cilow,v128_cihigh,v128_race_aian,v128_race_aian_cilow,v128_race_aian_cihigh,v128_race_asian,v128_race_asian_cilow,v128_race_asian_cihigh,v128_race_black,v128_race_black_cilow,v128_race_black_cihigh,v128_race_hispanic,v128_race_hispanic_cilow,v128_race_hispanic_cihigh,v128_race_white,v128_race_white_cilow,v128_race_white_cihigh,v128_race_nhopi,v128_race_nhopi_cilow,v128_race_nhopi_cihigh,v129_rawvalue,v129_numerator,v129_denominator,v129_cilow,v129_cihigh,v129_race_aian,v129_race_aian_cilow,v129_race_aian_cihigh,v129_race_asian,v129_race_asian_cilow,v129_race_asian_cihigh,v129_race_black,v129_race_black_cilow,v129_race_black_cihigh,v129_race_hispanic,v129_race_hispanic_cilow,v129_race_hispanic_cihigh,v129_race_white,v129_race_white_cilow,v129_race_white_cihigh,v129_race_nhopi,v129_race_nhopi_cilow,v129_race_nhopi_cihigh,v129_race_tom,v129_race_tom_cilow,v129_race_tom_cihigh,v144_rawvalue,v144_numerator,v144_denominator,v144_cilow,v144_cihigh,v145_rawvalue,v145_numerator,v145_denominator,v145_cilow,v145_cihigh,v060_rawvalue,v060_numerator,v060_denominator,v060_cilow,v060_cihigh,v061_rawvalue,v061_numerator,v061_denominator,v061_cilow,v061_cihigh,v139_rawvalue,v139_numerator,v139_denominator,v139_cilow,v139_cihigh,v083_rawvalue,v083_numerator,v083_denominator,v083_cilow,v083_cihigh,v138_rawvalue,v138_numerator,v138_denominator,v138_cilow,v138_cihigh,v138_race_aian,v138_race_aian_cilow,v138_race_aian_cihigh,v138_race_asian,v138_race_asian_cilow,v138_race_asian_cihigh,v138_race_black,v138_race_black_cilow,v138_race_black_cihigh,v138_race_hispanic,v138_race_hispanic_cilow,v138_race_hispanic_cihigh,v138_race_white,v138_race_white_cilow,v138_race_white_cihigh,v138_race_nhopi,v138_race_nhopi_cilow,v138_race_nhopi_cihigh,v143_rawvalue,v143_numerator,v143_denominator,v143_cilow,v143_cihigh,v003_rawvalue,v003_numerator,v003_denominator,v003_cilow,v003_cihigh,v122_rawvalue,v122_numerator,v122_denominator,v122_cilow,v122_cihigh,v131_rawvalue,v131_numerator,v131_denominator,v131_cilow,v131_cihigh,v131_other_data_1,v021_rawvalue,v021_numerator,v021_denominator,v021_cilow,v021_cihigh,v149_rawvalue,v149_numerator,v149_denominator,v149_cilow,v149_cihigh,v159_rawvalue,v159_numerator,v159_denominator,v159_cilow,v159_cihigh,v159_race_aian,v159_race_asian,v159_race_black,v159_race_hispanic,v159_race_white,v160_rawvalue,v160_numerator,v160_denominator,v160_cilow,v160_cihigh,v160_race_aian,v160_race_asian,v160_race_black,v160_race_hispanic,v160_race_white,v167_rawvalue,v167_numerator,v167_denominator,v167_cilow,v167_cihigh,v169_rawvalue,v169_numerator,v169_denominator,v169_cilow,v169_cihigh,v151_rawvalue,v151_numerator,v151_denominator,v151_cilow,v151_cihigh,v063_rawvalue,v063_numerator,v063_denominator,v063_cilow,v063_cihigh,v063_race_aian,v063_race_aian_cilow,v063_race_aian_cihigh,v063_race_asian,v063_race_asian_cilow,v063_race_asian_cihigh,v063_race_black,v063_race_black_cilow,v063_race_black_cihigh,v063_race_hispanic,v063_race_hispanic_cilow,v063_race_hispanic_cihigh,v063_race_white,v063_race_white_cilow,v063_race_white_cihigh,v170_rawvalue,v170_numerator,v170_denominator,v170_cilow,v170_cihigh,v065_rawvalue,v065_numerator,v065_denominator,v065_cilow,v065_cihigh,v141_rawvalue,v141_numerator,v141_denominator,v141_cilow,v141_cihigh,v171_rawvalue,v171_numerator,v171_denominator,v171_cilow,v171_cihigh,v172_rawvalue,v172_numerator,v172_denominator,v172_cilow,v172_cihigh,v015_rawvalue,v015_numerator,v015_denominator,v015_cilow,v015_cihigh,v015_race_aian,v015_race_aian_cilow,v015_race_aian_cihigh,v015_race_asian,v015_race_asian_cilow,v015_race_asian_cihigh,v015_race_black,v015_race_black_cilow,v015_race_black_cihigh,v015_race_hispanic,v015_race_hispanic_cilow,v015_race_hispanic_cihigh,v015_race_white,v015_race_white_cilow,v015_race_white_cihigh,v015_race_nhopi,v015_race_nhopi_cilow,v015_race_nhopi_cihigh,v161_rawvalue,v161_numerator,v161_denominator,v161_cilow,v161_cihigh,v161_other_data_1,v161_race_aian,v161_race_aian_cilow,v161_race_aian_cihigh,v161_race_asian,v161_race_asian_cilow,v161_race_asian_cihigh,v161_race_black,v161_race_black_cilow,v161_race_black_cihigh,v161_race_hispanic,v161_race_hispanic_cilow,v161_race_hispanic_cihigh,v161_race_white,v161_race_white_cilow,v161_race_white_cihigh,v161_race_nhopi,v161_race_nhopi_cilow,v161_race_nhopi_cihigh,v148_rawvalue,v148_numerator,v148_denominator,v148_cilow,v148_cihigh,v148_race_aian,v148_race_aian_cilow,v148_race_aian_cihigh,v148_race_asian,v148_race_asian_cilow,v148_race_asian_cihigh,v148_race_black,v148_race_black_cilow,v148_race_black_cihigh,v148_race_hispanic,v148_race_hispanic_cilow,v148_race_hispanic_cihigh,v148_race_white,v148_race_white_cilow,v148_race_white_cihigh,v148_race_nhopi,v148_race_nhopi_cilow,v148_race_nhopi_cihigh,v039_rawvalue,v039_numerator,v039_denominator,v039_cilow,v039_cihigh,v039_race_aian,v039_race_aian_cilow,v039_race_aian_cihigh,v039_race_asian,v039_race_asian_cilow,v039_race_asian_cihigh,v039_race_black,v039_race_black_cilow,v039_race_black_cihigh,v039_race_hispanic,v039_race_hispanic_cilow,v039_race_hispanic_cihigh,v039_race_white,v039_race_white_cilow,v039_race_white_cihigh,v039_race_nhopi,v039_race_nhopi_cilow,v039_race_nhopi_cihigh,v158_rawvalue,v158_numerator,v158_denominator,v158_cilow,v158_cihigh,v158_other_data_1,v158_other_data_2,v177_rawvalue,v177_numerator,v177_denominator,v177_cilow,v177_cihigh,v178_rawvalue,v178_numerator,v178_denominator,v178_cilow,v178_cihigh,v156_rawvalue,v156_numerator,v156_denominator,v156_cilow,v156_cihigh,v153_rawvalue,v153_numerator,v153_denominator,v153_cilow,v153_cihigh,v154_rawvalue,v154_numerator,v154_denominator,v154_cilow,v154_cihigh,v166_rawvalue,v166_numerator,v166_denominator,v166_cilow,v166_cihigh,v051_rawvalue,v051_numerator,v051_denominator,v051_cilow,v051_cihigh,v052_rawvalue,v052_numerator,v052_denominator,v052_cilow,v052_cihigh,v053_rawvalue,v053_numerator,v053_denominator,v053_cilow,v053_cihigh,v054_rawvalue,v054_numerator,v054_denominator,v054_cilow,v054_cihigh,v055_rawvalue,v055_numerator,v055_denominator,v055_cilow,v055_cihigh,v081_rawvalue,v081_numerator,v081_denominator,v081_cilow,v081_cihigh,v080_rawvalue,v080_numerator,v080_denominator,v080_cilow,v080_cihigh,v056_rawvalue,v056_numerator,v056_denominator,v056_cilow,v056_cihigh,v126_rawvalue,v126_numerator,v126_denominator,v126_cilow,v126_cihigh,v059_rawvalue,v059_numerator,v059_denominator,v059_cilow,v059_cihigh,v057_rawvalue,v057_numerator,v057_denominator,v057_cilow,v057_cihigh,v058_rawvalue,v058_numerator,v058_denominator,v058_cilow,v058_cihigh +00,000,00000,US,United States,2024,,7971.509789,4535347,921750763,7960.516043,7982.503535,0,15998.93793,15815.01063,16182.86522,,3177.687035,3149.777395,3205.596676,,12979.37963,12940.04065,13018.71861,,6558.239232,6536.049239,6580.429224,,7717.246219,7702.963603,7731.528836,,11584.50659,11292.85671,11876.15646,,,0.142,,,0.137,0.157,3.346299949,,,3.296325539,3.396274359,4.817121948,,,4.755701435,4.87854246,0.083407868,2190533,26262906,0.083302119,0.083513617,0,0.081167039,0.07996248,0.082371598,0.087506058,0.087072807,0.087939309,0.141877222,0.14152519,0.142229254,0.075566929,0.075360153,0.075773706,0.069666089,0.069530198,0.06980198,0.083138748,0.08105183,0.085225666,0.09013414,0.089403803,0.090864477,0.15,,,0.138,0.163,0.34,,,0.321,0.357,7.7,0.061001965,0.104,,,0.229,,,0.221,0.24,0.841440441,278894829,331449281,,,0.181103881,,,0.178243489,0.183999898,0.263090697,50485,191892,0.261971522,0.264210981,495.5,1644416,331893745,,,16.58036919,1204536,72648322,16.55075906,16.60997933,28.14595112,27.72664036,28.56526189,2.484296634,2.434478251,2.534115018,24.93364493,24.83626179,25.03102808,25.39976391,25.3249275,25.47460031,11.30064474,11.26679165,11.33449783,23.85562211,23.05527446,24.65596976,16.78303886,16.62680053,16.9392772,0.102285496,27558913,269431290,,,0.000749427,248730,331893745,,,1334.353496,0.000734615,244838,333287557,,,1361.257472,0.003138977,1046182,333287557,,,318.5751208,2681,,,,,3956,1575,4427,2659,2527,0.43,,,,,0.28,0.34,0.39,0.29,0.45,0.46,,,,,0.36,0.48,0.34,0.33,0.48,0.891440466,202001294,226600992,0.890662331,0.892218602,0.67582978,59607181,88198512,0.674543286,0.677116275,0.03650136,6014764,164781913,,,0.163,11582950,,0.160617021,0.165382979,0.291141192,0.286459433,0.295822952,0.10691961,0.105065509,0.108773711,0.306175494,0.30355402,0.308796967,0.229546821,0.227527884,0.231565758,0.102069701,0.100993102,0.103146301,4.902842293,150934,30785,4.885497061,4.920187525,0.249315823,18206449,73025646,0.247587535,0.25104411,9.085618652,301546,331893745,,,80.005528,1314094,1642504003,79.86873532,80.14232068,135.3232028,133.253843,137.3925625,25.79551472,25.47268821,26.11834124,99.03297597,98.60321688,99.46273507,48.12483745,47.87796749,48.37170742,91.66156778,91.47261528,91.85052029,59.52420651,56.76279853,62.28561449,7.35,,,,,,,,,,0.167388914,20480740,122354220,,,0.135222002,,,0.033187658,,,0.009880738,,,0.716733282,112314702,156703623,0.715514514,0.71795205,0.691665494,,,0.595171418,,,0.69598902,,,0.688778183,,,0.743884245,,,0.364,,156703623,0.361617021,0.366382979,77.58533723,,,77.5754735,77.59520096,72.84369372,72.68868213,72.99870531,86.48023033,86.42200071,86.53845995,72.74897344,72.71828845,72.77965842,80.34141967,80.30927185,80.37356748,77.63384288,77.6217327,77.64595305,77.09955718,76.71385835,77.485256,390.0631011,4535347,921750763,389.6919504,390.4342519,659.9372643,653.9771836,665.897345,168.4699208,167.4521117,169.4877298,603.9495753,602.5991934,605.2999571,323.5284597,322.6163521,324.4405673,383.3474459,382.8854262,383.8094657,537.9308735,527.1308466,548.7309004,50.64591872,165609,326993772,50.40199246,50.88984498,82.87150121,79.44416743,86.29883499,28.03657494,27.24432293,28.82882695,99.63979155,98.71713476,100.5624483,43.10557623,42.65898655,43.5521659,43.49234046,43.1732163,43.81146463,77.48653246,70.84556345,84.12750146,5.671340479,150841,26597063,5.642719657,5.6999613,8.039979422,7.650973048,8.428985797,2.865865431,2.784364033,2.947366829,11.33038761,11.22381001,11.43696521,5.14077489,5.084637064,5.196912716,4.494249596,4.458808234,4.529690957,7.080443727,6.451586486,7.709300969,8.701598221,8.461646744,8.941549698,0.102808778,,,0.100825076,0.104826958,0.151973474,,,0.149428163,0.154554264,0.096,,,,,382.2,1071005,280202649,,,0.104,33844000,,,,0.061001965,18834084.4,308745538,,,27.19515668,269128,989617391,27.09240991,27.29790345,42.2179479,40.72936183,43.70653397,4.460051115,4.288115584,4.631986646,36.15187936,35.81779735,36.48596137,16.83446398,16.64725801,17.02166994,30.88032841,30.73864014,31.02201669,14.76307445,13.00536035,16.52078854,0.330131,,,,,0.121128647,23878505,197133424,,,0.05318895,4041291,75979898,,,0.001313898,437906,333287557,,,761.0938352,0.861605,,,,,0.069448414,1220306,17571402,0.068761772,0.070135056,3.053421,,,,,,,,,,3.002972,,,,,,,,,,0.24044071,,,,,634.0391,,,,,0.813749523,51123,62824,0.810307925,0.81719112,74755,,,74578.65957,74931.34043,55925,55359.04255,56490.95745,107637,107143.7234,108130.2766,50901,50685.34043,51116.65957,64936,64669.10638,65202.89362,81423,81252.61702,81593.38298,,,,,,0.507602879,21248958,41861382,,,62.69592257,,,,,0.270741247,,,,,6.863866828,,,,,6.275638002,143527,2287050336,6.243170628,6.308105375,11.49902823,10.98772233,12.01033414,1.516379172,1.449501625,1.583256718,26.20926035,26.02167808,26.39684262,5.625833353,5.553877497,5.69778921,2.808842131,2.78090169,2.836782573,6.592868552,5.80935586,7.376381245,13.94202751,236974,1642504003,13.88465502,13.9994,14.42760563,23.85828423,22.97727662,24.73929183,6.57914717,6.418039758,6.740254583,7.624270989,7.504181165,7.744360813,7.395239422,7.295005053,7.495473791,17.59364376,17.50967431,17.67761322,13.04931551,11.77457606,14.32405496,12.98328647,213251,1642504003,12.92818094,13.038392,16.21110683,15.49487076,16.92734291,2.711221337,2.606561612,2.815881062,28.77352735,28.54187767,29.00517704,7.479793144,7.382467248,7.57711904,12.55614442,12.48621061,12.62607822,9.5372118,8.431875374,10.64254823,12.03541504,275256,2287050336,11.99045271,12.08037736,27.92198415,27.12523176,28.71873655,4.390973409,4.277169591,4.504777226,15.75994459,15.61448521,15.90540398,10.51882064,10.42042944,10.61721183,12.45132282,12.39249574,12.51014991,10.61645745,9.622200489,11.61071441,,,,,,,,0.679095215,158528503,233440760,,,0.652,,,,,107.6166571,,,,,0.648163861,81497760,125736353,0.645121729,0.651205992,0.144915294,17679129,121996295,0.144231345,0.145599244,0.883466964,111083914,125736353,0.881458379,0.885475548,333287557,,,,,0.217382334,72450827,333287557,,,0.17340837,57794852,333287557,,,0.126228748,42070471,333287557,,,0.013148508,4382234,333287557,,,0.062870457,20953941,333287557,,,0.002636786,878808,333287557,,,0.191019271,63664346,333287557,,,0.588758752,196225966,333287557,,,0.040955371,12781871,312092668,0.040702803,0.041207939,0.504081237,168004004,333287557,,,0.200031371,66300254,331449281,, +01,000,01000,AL,Alabama,2024,,11415.73483,98140,13812804,11307.65285,11523.81682,0,6175.972793,4859.459549,7492.486037,,3449.493247,2971.108502,3927.877993,,14925.81561,14688.04449,15163.58673,,6491.438107,6116.959387,6865.916827,,10523.19363,10394.42315,10651.9641,,9382.044252,5807.633264,14341.45125,1,,0.178,,,0.164,0.193,3.934735403,,,3.608645276,4.26082553,5.869319841,,,5.451217682,6.287422,0.10480008,42773,408139,0.103860373,0.105739788,0,0.107995846,0.088392514,0.127599178,0.099014699,0.091574503,0.106454894,0.161593584,0.159525484,0.163661684,0.075912327,0.073158707,0.078665947,0.080064427,0.078970733,0.081158121,0.100323625,0.066825415,0.133821834,0.103991751,0.096730548,0.111252955,0.179,,,0.162,0.196,0.406,,,0.386,0.427,5.4,0.087605485,0.148,,,0.299,,,0.282,0.317,0.613337954,3081581,5024279,,,0.14477526,,,0.130217892,0.160659429,0.25126369,1193,4748,0.244100654,0.258477853,625.2,31507,5039877,,,24.92988074,27474,1102051,24.63508899,25.22467249,11.48124192,8.96694519,14.48202444,2.380277699,1.715494799,3.217443966,30.75798724,30.16185878,31.3541157,52.40181091,50.68163604,54.12198579,19.65523293,19.31429695,19.9961689,18.18181818,9.94016919,30.50600146,28.58397687,26.57925926,30.58869448,0.116933505,469887,4018412,0.112167548,0.121699463,0.000636524,3208,5039877,,,1571.033978,0.000496029,2517,5074296,,,2016.009535,0.001350926,6855,5074296,,,740.2328228,3280,,,,,5665,1757,4310,1938,3093,0.41,,,,,0.41,0.38,0.4,0.3,0.41,0.39,,,,,0.31,0.42,0.29,0.25,0.41,0.877153991,3007340,3428520,0.874973932,0.87933405,0.616041617,779337,1265072,0.609337321,0.622745912,0.025967658,59363,2286036,,,0.218,237861,,0.207276596,0.228723404,0.258600785,0.181512534,0.335689036,0.1378157,0.106720172,0.168911227,0.380694925,0.370923907,0.390465942,0.356095111,0.337239459,0.374950762,0.118610439,0.11397389,0.123246987,5.212687998,122347,23471,5.135473692,5.289902304,0.305875299,338752,1107484,0.299174264,0.312576335,11.69472985,5894,5039877,,,90.37969869,22258,24627212,89.19233465,91.56706272,44.86381661,34.39683094,57.51338814,28.95321712,23.41514956,34.49128467,95.25410519,92.88609117,97.62211921,44.40505271,40.50104859,48.30905682,95.04367224,93.53636118,96.5509833,,,,9.3,,,,,0.223880597,,,,,0.130812468,247040,1888505,0.128315497,0.133309439,0.11170151,0.109194487,0.114208533,0.016650737,0.015708136,0.017593338,0.008564976,0.007858062,0.00927189,0.82825024,1808631,2183677,0.825237837,0.831262644,0.775560538,0.732773792,0.818347285,0.719363942,0.691880639,0.746847245,0.823964734,0.818019229,0.829910238,0.733945758,0.713738615,0.754152901,0.838554892,0.834581504,0.84252828,0.352,,2183677,0.347704024,0.356295976,73.70786097,,,73.62680867,73.78891328,108.0446022,97.10899106,118.9802134,87.39704147,85.94506687,88.84901606,70.85467445,70.68696581,71.0223831,92.60411244,90.07678088,95.13144401,74.30245555,74.20632457,74.39858654,77.75312316,71.12531851,84.3809278,548.7561714,98140,13812804,545.1702669,552.342076,243.5485613,210.6375924,276.4595301,171.9443912,154.7711781,189.1176043,689.3030007,681.2647179,697.3412835,268.9877522,253.5226698,284.4528345,522.075178,517.8344085,526.3159474,481.4313182,331.3951674,676.108565,73.03384215,3575,4894991,70.63974264,75.42794165,70.85163667,39.6551232,116.8589999,38.85327339,25.817718,56.15379783,110.8950152,105.4337847,116.3562457,58.08478844,50.52855172,65.64102515,58.07807398,55.26287304,60.89327492,,,,7.730109852,3168,409826,7.460925908,7.999293795,,,,3.762345195,2.410605558,5.598071421,12.50505214,11.88189665,13.12820762,5.919976201,5.097450468,6.742501934,5.508197272,5.210254266,5.806140277,,,,7.394587791,5.433264973,9.833234163,0.123666507,,,0.111397381,0.137078479,0.195782686,,,0.178866244,0.213882291,0.133,,,0.121,0.145,339.7,14436,4249627,,,0.148,746550,,,,0.087605485,418731.0919,4779736,,,21.56130198,3205,14864594,20.81482394,22.30778002,15.59033399,8.301196248,26.65994594,,,,17.6752882,16.36212726,18.98844913,5.933404052,4.257913188,8.049332574,25.01981381,24.02316363,26.01646399,,,,0.392430096,,,0.374239477,0.410924275,0.146289079,427677,2923506,0.140331632,0.152246526,0.041140988,47300,1149705,0.036375031,0.045906946,0.001156022,5866,5074296,,,865.0351176,0.907580579,46685.945,51440,,,0.080182875,22221,277129,0.07467925,0.085686501,2.885602535,,,,,,3.348598508,2.481435951,2.399626723,3.20566497,2.72218766,,,,,,3.504733739,2.268950372,2.453290842,3.025516985,0.274931944,,,,,-7911.501,,,,,0.744823226,42408,56937,0.73471933,0.754927122,59703,,,58848.70213,60557.29787,58020,47612.34043,68427.65957,78324,71272.76596,85375.23404,40661,40004.48936,41317.51064,51086,48873.40426,53298.59575,69303,68691.76596,69914.23404,,,,,,0.491740798,363453,739115,,,57.39338222,,,,,0.266040689,,,,,5.509231686,,,,,12.13118413,4167,34349491,11.76284529,12.49952297,,,,2.622829105,1.396546035,4.485117648,31.80484355,30.646066,32.96362109,6.22374562,5.035381867,7.608206279,5.07629412,4.781743443,5.370844798,,,,16.23475175,4082,24627212,15.72239169,16.74711181,16.57516084,7.145219375,3.267249288,13.56385207,8.593274748,5.838713273,12.19746757,6.826074485,6.185834796,7.466314175,7.519123582,5.952960949,9.371071458,20.82157157,20.09865511,21.54448803,,,,23.22634003,5720,24627212,22.62441995,23.82826012,7.236099453,3.469990952,13.30744453,5.514898498,3.368643276,8.517313446,36.28727817,34.82570818,37.74884815,8.666579703,7.028012313,10.57249227,19.91225292,19.22232856,20.60217729,,,,20.58836913,7072,34349491,20.10851759,21.06822066,10.90999771,6.753460539,16.67709043,7.263219059,5.087069335,10.05535672,22.11172951,21.14553449,23.07792454,15.65763372,13.67252978,17.64273765,21.06595325,20.46591741,21.6659891,,,,12.26209677,,496000,,,4911,1171,0.626360004,2323282,3709180,,,,,,,,67.32870913,,,,,0.697199907,1347792,1933150,0.692533061,0.701866752,0.12266376,225974,1842223,0.120015003,0.125312517,0.837864108,1619717,1933150,0.833787211,0.841941005,5074296,,,,,0.219057383,1111562,5074296,,,0.180267962,914733,5074296,,,0.26430898,1341182,5074296,,,0.007158629,36325,5074296,,,0.015886933,80615,5074296,,,0.00109493,5556,5074296,,,0.049317777,250253,5074296,,,0.647117157,3283664,5074296,,,0.010474985,49612,4736236,0.009891111,0.011058859,0.513753238,2606936,5074296,,,0.422627605,2123399,5024279,, +01,001,01001,AL,Autauga County,2024,1,9407.948438,942,159452,8508.88015,10307.01673,0,,,,2,,,,2,13652.71296,11255.80966,16049.61625,,,,,2,8697.028881,7685.215443,9708.84232,,,,,2,,0.173,,,0.146,0.204,3.910265059,,,3.083456871,4.836686821,5.703204125,,,4.667053286,6.860925088,0.098713352,468,4741,0.09022271,0.107203993,0,,,,,,,0.161175423,0.139669842,0.182681004,0.063694268,0.025494101,0.101894434,0.08034084,0.071046813,0.089634867,,,,,,,0.169,,,0.136,0.211,0.389,,,0.318,0.463,6.7,0.13020998,0.133,,,0.291,,,0.243,0.351,0.54491965,32044,58805,,,0.152378215,,,0.121047352,0.187995334,0.290909091,16,55,0.220724209,0.362941414,577,341,59095,,,20.90888049,271,12961,18.41943738,23.3983236,,,,,,,25.4754216,19.89651563,32.13377794,,,,20.89944195,17.93547008,23.86341382,,,,,,,0.100185604,4912,49029,0.085887732,0.114483477,0.00043997,26,59095,,,2272.884615,0.00030121,18,59759,,,3319.944444,0.000368145,22,59759,,,2716.318182,3915,,,,,,,6203,,3633,0.4,,,,,,0.52,0.35,0.27,0.41,0.37,,,,,,0.38,0.29,0.18,0.38,0.904026077,36331,40188,0.888110748,0.919941407,0.641475015,9846,15349,0.57610536,0.706844669,0.022695883,608,26789,,,0.157,2151,,0.102191489,0.211808511,,,,,,,0.260671799,0.151669025,0.369674572,0.167207792,0.002530507,0.331885078,0.089715536,0.062209635,0.117221437,4.637675394,128241,27652,3.831335461,5.444015328,0.227025064,3125,13765,0.175395693,0.278654435,12.69142906,75,59095,,,68.03347814,192,282214,58.41008715,77.65686914,,,,,,,83.63138134,61.44919334,111.2120079,,,,67.86578939,56.66374162,79.06783715,,,,10,,,,,0,,,,,0.153756957,3315,21560,0.126804811,0.180709104,0.132084309,0.105921705,0.158246913,0.016001855,0.007151368,0.024852343,0.015769944,0.008066256,0.023473632,0.854278421,23092,27031,0.825070285,0.883486557,,,,,,,0.807256819,0.72458283,0.889930809,,,,0.808466913,0.757078875,0.859854952,0.429,,27031,0.375808306,0.482191694,75.26349707,,,74.52247599,76.00451816,,,,,,,71.91285165,70.08048227,73.74522104,,,,75.6193168,74.79178094,76.44685266,,,,472.2839228,942,159452,441.3326872,503.2351583,,,,,,,605.6928292,524.7729536,686.6127048,,,,455.7017924,420.9100278,490.493557,,,,58.56212753,34,58058,40.55597572,81.83470339,,,,,,,94.00705053,48.5748148,164.2113987,,,,55.54854185,34.81197544,84.10115992,,,,6.834686032,32,4682,4.674920186,9.648537394,,,,,,,,,,,,,,,,,,,,,,0.117,,,0.1,0.136,0.18,,,0.157,0.207,0.107,,,0.092,0.125,218,108,49531,,,0.133,7770,,,,0.13020998,7105.688803,54571,,,9.350764717,16,171109,5.344769973,15.18505607,,,,,,,,,,,,,11.19006322,6.117711693,18.77502468,,,,0.375,,,0.359,0.391,0.124074179,4389,35374,0.105010349,0.143138009,0.040412486,580,14352,0.027306103,0.053518869,0.000502016,30,59759,,,1991.966667,0.87,539.4,620,,,0.072425052,244,3369,0.024427333,0.120422771,3.12696818,,,,,,,2.605717333,,3.328546491,2.91727955,,,,,,,2.353697303,2.865180133,3.091920037,0.051539309,,,,,-3606.782,,,,,0.746165515,44270,59330,0.620166096,0.872164934,70148,,,61519.23404,78776.76596,,,,,,,50763,42914.65957,58611.34043,80917,47537.42553,114296.5745,75863,70772.95745,80953.04255,,,,,,0.279985972,2395,8554,,,29.38240388,,,,,0.19733991,,70148,,,5.726341169,19,3318,,,6.616163287,26,392977,4.32189752,9.694212151,,,,,,,23.30157415,13.80998962,36.82653307,,,,,,,,,,17.4574792,51,282214,12.91513922,23.07971332,18.07139263,,,,,,,,,,,,,21.21870488,15.41754345,28.4851209,,,,17.36271057,49,282214,12.84502886,22.95442416,,,,,,,23.1320842,12.3168606,39.55656848,,,,17.32743559,12.13592286,23.9884746,,,,18.06721513,71,392977,14.11064491,22.7893335,,,,,,,23.30157415,13.80998962,36.82653307,,,,17.53879168,13.05878241,23.06027202,,,,4.838709677,,6200,,,24,6,0.661820782,27770,41960,,,0.688,,,,,46.47384819,,,,,0.754527524,16832,22308,0.723689383,0.785365665,0.112793587,2406,21331,0.088548019,0.137039154,0.890667025,19869,22308,0.868937657,0.912396393,59759,,,,,0.232283003,13881,59759,,,0.164109172,9807,59759,,,0.210110611,12556,59759,,,0.004718955,282,59759,,,0.011780652,704,59759,,,0.001221573,73,59759,,,0.033819174,2021,59759,,,0.720510718,43057,59759,,,0.003664855,203,55391,0,0.007942039,0.512960391,30654,59759,,,0.406768132,23920,58805,, +01,003,01003,AL,Baldwin County,2024,1,8981.575353,3789,633571,8514.700923,9448.449784,0,,,,2,,,,2,14709.55299,12789.19225,16629.91374,,4784.741236,3448.420623,6467.580158,,8795.945234,8281.89469,9309.995779,,,,,2,,0.152,,,0.127,0.179,3.730942868,,,2.959283287,4.516049304,5.373666151,,,4.445590441,6.273711996,0.081243184,1341,16506,0.077075173,0.085411196,0,,,,0.122222222,0.074371643,0.170072801,0.138274336,0.122362798,0.154185874,0.075268817,0.062263965,0.08827367,0.073221423,0.068656489,0.077786357,,,,0.08115942,0.052343262,0.109975578,0.15,,,0.117,0.186,0.372,,,0.321,0.427,7.5,0.079367794,0.118,,,0.276,,,0.232,0.322,0.631293497,146313,231767,,,0.164225636,,,0.134603541,0.19745136,0.361445783,60,166,0.323103967,0.399623233,317.6,760,239294,,,20.20223706,941,46579,18.91143181,21.49304231,,,,,,,28.24963072,23.77329005,32.7259714,47.68392371,39.78507059,55.58277682,17.09109554,15.72352307,18.458668,,,,31.18355776,22.65802081,41.86247079,0.109970667,20432,185795,0.098055773,0.12188556,0.000626844,150,239294,,,1595.293333,0.000470712,116,246435,,,2124.439655,0.001103739,272,246435,,,906.0110294,2799,,,,,,,5376,,2680,0.44,,,,,0.42,0.47,0.38,0.24,0.44,0.42,,,,,0.3,0.41,0.31,0.26,0.43,0.915993103,152991,167022,0.907336883,0.924649323,0.656804185,35407,53908,0.617040481,0.696567888,0.023500472,2417,102849,,,0.161,8093,,0.127638298,0.194361702,,,,0.076767677,0,0.2912931,0.330143541,0.23407196,0.426215121,0.384340659,0.256628632,0.512052686,0.072606897,0.053895213,0.09131858,4.482449247,136894,30540,4.116585256,4.848313238,0.190512873,9398,49330,0.163099577,0.217926168,9.653397076,231,239294,,,77.50798466,870,1122465,72.35756177,82.65840755,,,,,,,74.32795144,58.15704432,93.60375361,36.15535385,21.76788484,56.46106367,83.01955512,77.17454023,88.86457001,,,,7.6,,,,,1,,,,,0.12427866,10445,84045,0.1084219,0.140135421,0.105647721,0.089747578,0.121547864,0.015229936,0.010082811,0.020377061,0.006365638,0.003429842,0.009301433,0.813469985,86118,105865,0.796749314,0.830190657,,,,,,,0.844833793,0.787001184,0.902666403,0.623041697,0.523603121,0.722480272,0.801379347,0.783598519,0.819160174,0.379,,105865,0.353837279,0.404162721,76.73831389,,,76.36055001,77.11607776,,,,85.73215729,79.80534515,91.65896944,71.06231575,69.69748149,72.42715002,89.80345644,82.70248019,96.9044327,76.87091914,76.46208449,77.27975378,,,,416.2189122,3789,633571,401.8716865,430.566138,,,,,,,687.7574479,621.2660076,754.2488881,193.3386235,144.8238961,252.8916797,409.2625357,393.75643,424.7686414,,,,54.03500529,115,212825,44.15897645,63.91103413,,,,,,,99.61061306,62.42544088,150.8116653,,,,51.39541652,40.93616237,63.71235149,,,,5.329249617,87,16325,4.268510477,6.573609714,,,,,,,,,,,,,4.712083699,3.587056436,6.078244658,,,,,,,0.11,,,0.093,0.127,0.173,,,0.15,0.198,0.098,,,0.083,0.114,174.3,356,204264,,,0.118,26830,,,,0.079367794,14465.9709,182265,,,25.72942188,178,691815,21.94955854,29.50928522,,,,,,,23.85821404,13.04350763,40.03002918,,,,27.61701625,23.32427942,31.90975308,,,,0.351,,,0.334,0.368,0.133762433,18101,135322,0.117081582,0.150443284,0.049369431,2615,52968,0.036263048,0.062475814,0.00083592,206,246435,,,1196.286408,0.886517139,2094.84,2363,,,0.082482759,897,10875,0.047954384,0.117011134,3.192380762,,,,,,,2.569883503,2.685681918,3.374600785,3.037911538,,,,,,,2.324328135,2.746378501,3.206115511,0.090945858,,,,,-537.1533,,,,,0.722548599,43785,60598,0.674748656,0.770348542,71704,,,65122.21277,78285.78723,58350,36546.93617,80153.06383,96071,43750.31915,148391.6809,38223,30352.02128,46093.97872,56507,41840.95745,71173.04255,76739,73433.80851,80044.19149,,,,,,0.369956076,12634,34150,,,39.54396112,,,,,0.201522928,,71704,,,6.231823847,75,12035,,,3.388202669,52,1534737,2.530471814,4.443177023,,,,,,,12.60977926,7.345661101,20.18947812,,,,2.742860725,1.910502994,3.814655291,,,,18.79012618,213,1122465,16.14263435,21.437618,18.9760928,,,,,,,,,,,,,21.26580702,18.1327196,24.39889443,,,,14.34343164,161,1122465,12.12780693,16.55905636,,,,,,,18.58198786,11.01286367,29.367552,,,,14.99708093,12.51281096,17.48135089,,,,15.8333317,243,1534737,13.84254265,17.82412076,,,,,,,18.54379302,12.0005651,27.3742966,14.07855836,6.75121596,25.89097007,16.30042945,14.08517586,18.51568305,,,,20.30567686,,22900,,,343,122,0.652909486,109679,167985,,,0.564,,,,,39.06806727,,,,,0.778705315,70708,90802,0.766062915,0.791347715,0.123018541,10795,87751,0.107944502,0.13809258,0.889209489,80742,90802,0.875233773,0.903185204,246435,,,,,0.208038631,51268,246435,,,0.219287033,54040,246435,,,0.082248869,20269,246435,,,0.008107615,1998,246435,,,0.011560858,2849,246435,,,0.00066549,164,246435,,,0.050362165,12411,246435,,,0.82978473,204488,246435,,,0.00786658,1741,221316,0.005193169,0.010539991,0.512390691,126271,246435,,,0.375864554,87113,231767,, +01,005,01005,AL,Barbour County,2024,1,13138.84836,579,68114,11474.73402,14802.96271,0,,,,2,,,,2,16275.94809,13700.04394,18851.85223,,,,,2,10224.96168,7940.574474,12509.34888,,,,,2,,0.273,,,0.237,0.31,5.023488318,,,4.104913534,6.102067237,6.01429402,,,4.888848591,7.293198787,0.122724909,236,1923,0.10805928,0.137390538,0,,,,,,,0.169201521,0.146544741,0.191858301,0.075117371,0.039719286,0.110515456,0.060897436,0.042133679,0.079661193,,,,,,,0.25,,,0.205,0.296,0.434,,,0.354,0.52,6,0.104331717,0.178,,,0.402,,,0.343,0.465,0.548546961,13836,25223,,,0.122771979,,,0.096255128,0.154481693,0.314285714,11,35,0.225243422,0.404343522,729,182,24964,,,36.61853944,175,4779,31.19306071,42.04401817,,,,,,,36.49345498,29.41887535,44.75598294,101.3513514,68.38133115,144.6853561,27.76294714,20.73469685,36.4074115,,,,,,,0.126776343,2150,16959,0.107712513,0.145840173,0.000400577,10,24964,,,2496.4,0.000323808,8,24706,,,3088.25,0.000283332,7,24706,,,3529.428571,3040,,,,,,,4814,,2448,0.42,,,,,,,0.39,,0.44,0.35,,,,,,,0.25,,0.38,0.764922207,13520,17675,0.74088238,0.788962033,0.404544752,2617,6469,0.343611772,0.465477732,0.040650407,335,8241,,,0.377,1871,,0.260234043,0.493765957,,,,,,,0.504480956,0.430636451,0.578325461,0.688109162,0.58020225,0.796016073,0.036930179,0.010726534,0.063133824,5.57679679,91716,16446,4.226254668,6.927338911,0.506604507,2608,5148,0.439497173,0.57371184,8.412113443,21,24964,,,85.21585336,106,124390,68.99313846,101.4385683,,,,,,,85.77050504,63.86177467,112.7723741,,,,90.03601441,67.03772657,118.3807312,,,,9.4,,,,,0,,,,,0.150751073,1405,9320,0.115783553,0.185718593,0.116836158,0.089985525,0.143686791,0.037553648,0.013415873,0.061691423,0.005364807,0.000475428,0.010254185,0.820525117,6844,8341,0.795286505,0.845763729,,,,,,,0.758073497,0.677644846,0.838502147,,,,0.84432651,0.806937658,0.881715362,0.367,,8341,0.304631478,0.429368522,72.37702423,,,71.20963459,73.54441387,,,,,,,69.78914534,68.08033843,71.49795224,,,,74.57976626,72.95466984,76.20486267,,,,628.2535957,579,68114,574.1258157,682.3813756,,,,,,,751.4771527,662.7253761,840.2289294,,,,540.0051662,468.8484572,611.1618753,,,,80.03913024,18,22489,47.4362612,126.4963327,,,,,,,101.5658062,52.48053414,177.4150237,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.158,,,0.137,0.181,0.205,,,0.179,0.234,0.156,,,0.135,0.179,513.7,110,21415,,,0.178,4500,,,,0.104331717,2864.635946,27457,,,,,,,,,,,,,,,,,,,,,,,,,,0.439,,,0.426,0.451,0.163114686,1967,12059,0.13690192,0.189327452,0.038976149,201,5157,0.025869766,0.052082532,0.00080952,20,24706,,,1235.3,0.8544098,383.63,449,,,,,,,,2.389161313,,,,,,,2.14283534,2.146840076,2.848986081,2.00862944,,,,,,,1.780238701,1.905975096,2.425860237,0.038889595,,,,,-23626.58,,,,,0.777443339,34611,44519,0.64190628,0.912980398,41151,,,35722.57447,46579.42553,,,,60063,29770.57447,90355.42553,25703,23455.85106,27950.14894,35265,10390.2766,60139.7234,61822,53537.57447,70106.42553,,,,,,0.565651191,4252,7517,,,19.07864539,,,,,0.254598916,,41151,,,5.303030303,7,1320,,,13.00581303,23,176844,8.244569811,19.51510534,,,,,,,21.34547654,12.6506822,33.73505552,,,,,,,,,,13.42681003,18,124390,7.674582052,21.80429829,14.47061661,,,,,,,,,,,,,20.14597139,10.05679633,36.04670771,,,,26.52946378,33,124390,18.26166217,37.2572307,,,,,,,25.22661913,14.11914723,41.60747191,,,,30.0120048,17.48309877,48.052127,,,,29.40444686,52,176844,21.96064735,38.56001998,,,,,,,35.57579423,24.00283897,50.78665836,,,,22.2098834,13.16298449,35.10119103,,,,,,2400,,,16,-888,0.540215717,10518,19470,,,0.545,,,,,34.40564928,,,,,0.649733807,5858,9016,0.613161566,0.686306047,0.107662697,895,8313,0.081728444,0.13359695,0.682231588,6151,9016,0.640310426,0.724152751,24706,,,,,0.203634745,5031,24706,,,0.206225209,5095,24706,,,0.471950134,11660,24706,,,0.007245204,179,24706,,,0.004695216,116,24706,,,0.002792844,69,24706,,,0.050999757,1260,24706,,,0.452724035,11185,24706,,,0.019806599,467,23578,0.007711872,0.031901327,0.471221566,11642,24706,,,0.659199937,16627,25223,, +01,007,01007,AL,Bibb County,2024,1,12675.43458,501,62383,10964.29014,14386.57903,0,,,,2,,,,2,14289.77842,10292.66639,18286.89045,,,,,2,12356.10073,10433.58641,14278.61505,,,,,2,,0.22,,,0.19,0.251,4.552794934,,,3.663534376,5.589494353,5.824583393,,,4.709603496,7.047293938,0.098285714,172,1750,0.084337561,0.112233868,0,,,,,,,0.165697674,0.12640634,0.204989009,,,,0.081804281,0.066951498,0.096657065,,,,,,,0.22,,,0.182,0.263,0.396,,,0.322,0.474,7.6,0.004458662,0.149,,,0.36,,,0.303,0.42,0.433903019,9673,22293,,,0.14785821,,,0.117649978,0.183572673,0.153846154,4,26,0.064169884,0.268836156,662.9,149,22477,,,31.92297948,126,3947,26.34888639,37.49707257,,,,,,,28.61230329,17.47713818,44.18938184,,,,31.57894737,25.57904876,38.56329967,,,,,,,0.113799283,1905,16740,0.095926943,0.131671624,0.000667349,15,22477,,,1498.466667,0.000227221,5,22005,,,4401,0.000499886,11,22005,,,2000.454546,4651,,,,,,,8207,,4150,0.36,,,,,,,0.31,,0.37,0.28,,,,,,,0.18,,0.29,0.788634223,12559,15925,0.755748821,0.821519624,0.389935116,2464,6319,0.313518829,0.466351404,0.02509741,219,8726,,,0.255,1084,,0.175170213,0.334829787,,,,,,,0.664359862,0.436058677,0.892661047,0.346420323,0.049654007,0.64318664,0.274287466,0.205679972,0.342894959,5.66923661,97063,17121,4.466919602,6.871553618,0.307133704,1438,4682,0.213258918,0.40100849,8.897984607,20,22477,,,99.93308053,112,112075,81.42521501,118.440946,,,,,,,88.41360728,54.7294164,135.1495905,,,,107.0123124,85.93967408,131.6878588,,,,9.8,,,,,0,,,,,0.122589532,890,7260,0.073358137,0.171820927,0.090909091,0.045528847,0.136289335,0.012396694,0.001153469,0.023639919,0.019972452,0.007078727,0.032866177,0.87983631,7095,8064,0.842536601,0.917136018,,,,,,,,,,,,,0.821586476,0.769187285,0.873985667,0.538,,8064,0.452047441,0.623952559,72.25136909,,,71.00891029,73.49382789,,,,,,,70.39062036,67.432284,73.34895673,,,,72.40800736,71.04341272,73.77260199,,,,618.3238587,501,62383,562.6031734,674.044544,,,,,,,729.3713667,588.2112442,870.5314893,,,,614.9544938,551.2713846,678.6376029,,,,100.8725475,20,19827,61.61557263,155.7894684,,,,,,,,,,,,,74.8401143,37.35991541,133.9096375,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.14,,,0.122,0.161,0.194,,,0.169,0.222,0.124,,,0.106,0.144,269.3,52,19312,,,0.149,3350,,,,0.004458662,102.1702428,22915,,,22.3857209,15,67007,12.52911805,36.9218423,,,,,,,,,,,,,30.23096457,16.92004138,49.86137868,,,,0.4,,,0.385,0.414,0.140821119,1739,12349,0.118182821,0.163459417,0.039496528,182,4608,0.026390145,0.052602911,0.001408771,31,22005,,,709.8387097,0.88,190.08,216,,,,,,,,2.688775131,,,,,,,2.213056213,,2.824307507,2.56336673,,,,,,,2.227899043,,2.664329915,0.089802217,,,,,-6970.646,,,,,0.808805816,37603,46492,0.554881594,1.062730038,54309,,,46470.19149,62147.80851,,,,,,,21563,2385.978723,40740.02128,,,,58896,51058.38298,66733.61702,,,,,,0.489921977,1507,3076,,,32.0713632,,,,,0.237014123,,54309,,,5.016722408,6,1196,,,9.535858005,15,157301,5.337147337,15.72794761,,,,,,,32.71180896,16.32961717,58.53046217,,,,,,,,,,17.05022054,18,112075,9.932381787,27.29905477,16.06067366,,,,,,,,,,,,,23.45790414,13.66509361,37.55837692,,,,20.52197189,23,112075,13.00916979,30.79303404,,,,,,,,,,,,,20.44055406,11.907376,32.72730716,,,,24.79323081,39,157301,17.6304108,33.89316271,,,,,,,29.73800815,14.26053081,54.68925578,,,,23.98451286,15.93753461,34.664299,,,,,,2000,,,62,-888,0.545635485,9595,17585,,,0.56,,,,,8.146790014,,,,,0.757344789,5465,7216,0.714727485,0.799962094,0.104042806,700,6728,0.065309558,0.142776055,0.797117517,5752,7216,0.740193612,0.854041421,22005,,,,,0.197455124,4345,22005,,,0.178050443,3918,22005,,,0.207361963,4563,22005,,,0.005725971,126,22005,,,0.00290843,64,22005,,,0.001317882,29,22005,,,0.031765508,699,22005,,,0.739968189,16283,22005,,,0.002891818,61,21094,0,0.008929516,0.464894342,10230,22005,,,1,22293,22293,, +01,009,01009,AL,Blount County,2024,1,11541.49507,1239,161231,10559.14698,12523.84316,0,,,,2,,,,2,16342.50413,8934.599082,27419.94501,1,4449.468475,2717.850938,6871.843186,1,12314.83931,11203.68679,13425.99184,,,,,2,,0.186,,,0.157,0.217,4.246335182,,,3.359155827,5.197039681,5.664850612,,,4.551959703,6.818790626,0.076043211,359,4721,0.068481935,0.083604488,0,,,,,,,,,,0.070044709,0.05073332,0.089356099,0.075457317,0.067205631,0.083709003,,,,,,,0.196,,,0.157,0.24,0.377,,,0.305,0.455,7.7,0.02512206,0.137,,,0.304,,,0.253,0.361,0.413552271,24455,59134,,,0.149461148,,,0.118217487,0.184051205,0.130952381,11,84,0.081955551,0.189254527,318.4,188,59041,,,25.12323104,316,12578,22.3531784,27.89328368,,,,,,,,,,26.39751553,19.65468418,34.70785786,25.32022639,22.21242279,28.42802999,,,,,,,0.128199779,6145,47933,0.112710417,0.143689141,0.000203249,12,59041,,,4920.083333,0.000168033,10,59512,,,5951.2,0.000268853,16,59512,,,3719.5,2499,,,,,,,,,2563,0.35,,,,,,,0.43,0.26,0.35,0.36,,,,,,,0.28,0.17,0.36,0.81755151,33370,40817,0.79926733,0.835835691,0.519759632,7352,14145,0.464898291,0.574620974,0.022251512,574,25796,,,0.158,2105,,0.100808511,0.215191489,0.253968254,0,0.581950061,,,,0.173076923,0,0.540962169,0.458036984,0.365515448,0.550558521,0.122379987,0.088403576,0.156356397,4.611946363,113500,24610,4.042343114,5.181549613,0.229694775,3108,13531,0.177496577,0.281892973,7.621822124,45,59041,,,97.72917319,284,290599,86.36282055,109.0955258,,,,,,,,,,39.26187672,19.5993874,70.2503427,105.1261911,92.46880395,117.7835782,,,,9.6,,,,,0,,,,,0.106578637,2260,21205,0.084945954,0.12821132,0.080260618,0.06093657,0.099584665,0.018108937,0.010181367,0.026036506,0.013440226,0.005535369,0.021345084,0.848946808,20716,24402,0.825398136,0.872495479,,,,,,,,,,0.735776278,0.259993075,1,0.778941107,0.736281677,0.821600536,0.606,,24402,0.558176876,0.653823124,73.37656812,,,72.64852529,74.10461095,,,,,,,,,,91.64899684,80.00720907,103.2907846,72.66850719,71.8814217,73.45559268,,,,573.1408529,1239,161231,539.7287221,606.5529837,,,,,,,858.5235596,550.0722441,1277.415004,212.1570346,134.4893609,318.3397201,601.7320808,565.3052785,638.158883,,,,61.53320229,36,58505,43.0970984,85.18788905,,,,,,,,,,,,,71.13448729,48.96570795,99.89926768,,,,7.221750212,34,4708,5.001271959,10.09167207,,,,,,,,,,,,,6.604013208,4.313960685,9.67640947,,,,,,,0.128,,,0.11,0.149,0.188,,,0.164,0.215,0.105,,,0.09,0.122,80.7,40,49567,,,0.137,8040,,,,0.02512206,1440.046734,57322,,,21.1735891,37,174746,14.90816074,29.18500346,,,,,,,,,,,,,23.78058447,16.65562901,32.92235275,,,,0.373,,,0.356,0.389,0.160972634,5541,34422,0.139525825,0.182419442,0.047434725,674,14209,0.033136852,0.061732597,0.00035287,21,59512,,,2833.904762,0.979196278,578.705,591,,,0.097330179,288,2959,0.041543104,0.153117254,2.901714404,,,,,,,,2.56462632,2.977789554,2.781496533,,,,,,,,2.527824192,2.838913694,0.104776332,,,,,-2788.999,,,,,0.876378695,42748,48778,0.77878229,0.973975101,60553,,,52695.12766,68410.87234,,,,143472,113845.617,173098.383,40125,892.8297872,79357.17021,62054,39814.85106,84293.14894,57282,53365.57447,61198.42553,,,,,,0.431638045,3921,9084,,,62.71640501,,,,,0.347100887,,60553,,,4.903374676,17,3467,,,5.911679508,24,405976,3.787724608,8.796110508,,,,,,,,,,,,,5.383152998,3.241009756,8.406460229,,,,22.21925155,64,290599,16.95562971,28.60058112,22.02347565,,,,,,,,,,,,,25.62854678,19.50963725,33.0589581,,,,18.23819077,53,290599,13.66165642,23.85600258,,,,,,,,,,,,,19.43842779,14.38065589,25.69863241,,,,30.54367746,124,405976,25.16758717,35.91976775,,,,,,,,,,,,,32.29891799,26.36977916,38.22805682,,,,6.774193548,,6200,,,32,10,0.641879944,27588,42980,,,0.667,,,,,14.44023405,,,,,0.792749468,17144,21626,0.767503816,0.817995121,0.092465252,1896,20505,0.071929864,0.113000641,0.827244983,17890,21626,0.802843772,0.851646194,59512,,,,,0.227046646,13512,59512,,,0.190902675,11361,59512,,,0.017273827,1028,59512,,,0.006334857,377,59512,,,0.004352063,259,59512,,,0.00131066,78,59512,,,0.100702379,5993,59512,,,0.85992741,51176,59512,,,0.021951964,1222,55667,0.016007279,0.02789665,0.502906977,29929,59512,,,0.90489397,53510,59134,, +01,011,01011,AL,Bullock County,2024,1,13837.89921,229,28217,11157.32671,16518.4717,0,,,,2,,,,2,16964.78195,13434.97286,20494.59103,,,,,2,7803.521697,3742.091974,14350.95424,1,,,,2,,0.307,,,0.267,0.347,5.152511842,,,4.192246944,6.202806531,5.973144781,,,4.763981477,7.269150969,0.151219512,124,820,0.126697802,0.175741222,0,,,,,,,0.187919463,0.156556407,0.219282519,0.072992701,0.029433783,0.116551619,,,,,,,,,,0.257,,,0.213,0.3,0.489,,,0.401,0.575,4.2,0.323391904,0.156,,,0.436,,,0.374,0.495,0.423481703,4386,10357,,,0.115288295,,,0.089206231,0.144998236,0.269230769,7,26,0.16570611,0.378587417,823.6,85,10320,,,37.4301676,67,1790,29.00786577,47.53498974,,,,,,,39.05053599,29.075689,51.34424301,61.13537118,33.42327632,102.5747647,,,,,,,,,,0.122146457,824,6746,0.101891138,0.142401776,0.000193798,2,10320,,,5160,0.00019604,2,10202,,,5101,0.00019604,2,10202,,,5101,2268,,,,,,,2091,,2343,0.51,,,,,,,0.47,,0.55,0.28,,,,,,,0.23,,0.34,0.733789827,5251,7156,0.681116973,0.786462681,0.32728647,866,2646,0.245341155,0.409231786,0.028107159,128,4554,,,0.39,825,,0.244638298,0.535361702,,,,,,,0.495126706,0.406309548,0.583943863,0.599415205,0.355756574,0.843073836,0.060869565,0,0.241037886,7.145819779,87865,12296,4.449430178,9.84220938,0.630464795,1370,2173,0.509144203,0.751785387,5.813953488,6,10320,,,108.1740225,55,50844,81.4914778,140.8033593,,,,,,,116.9690745,83.93902736,158.6817573,,,,120.7168725,64.27665049,206.4295284,,,,9.3,,,,,0,,,,,0.096209913,330,3430,0.059183458,0.133236367,0.097637795,0.05221701,0.143058581,0.010204082,0,0.026016232,0,0,0.009333932,0.886110356,3260,3679,0.816938159,0.955282553,,,,,,,0.859836901,0.751853837,0.967819965,,,,0.882559159,0.850630399,0.914487919,0.454,,3679,0.319124667,0.588875333,72.10011162,,,70.20400081,73.99622244,,,,,,,69.55490124,67.28013396,71.82966852,,,,78.09631955,74.62816721,81.56447189,,,,629.7157405,229,28217,544.920075,714.5114061,,,,,,,762.0366461,648.1448398,875.9284523,,,,374.430345,250.7618785,537.7444334,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.166,,,0.143,0.188,0.205,,,0.177,0.233,0.187,,,0.163,0.212,616.2,54,8763,,,0.156,1620,,,,0.323391904,3529.499239,10914,,,,,,,,,,,,,,,,,,,,,,,,,,0.46,,,0.446,0.474,0.16353544,766,4684,0.134939695,0.192131185,0.029547553,64,2166,0.018824149,0.040270957,0.00058812,6,10202,,,1700.333333,0.825,74.25,90,,,,,,,,2.110535605,,,,,,,2.125708194,,,1.96826778,,,,,,,1.943530458,,,0.009037154,,,,,-38452.98,,,,,0.671496529,27667,41202,0.54009426,0.802898799,35798,,,30563.78723,41032.21277,,,,,,,26383,20533.97872,32232.02128,65179,50088.78723,80269.21277,76146,42374.42553,109917.5745,,,,,,0.758142758,1094,1443,,,34.58410715,,,,,0.386697581,,35798,,,5.376344086,3,558,,,19.47094657,14,71902,10.64494767,32.66893984,,,,,,,22.17607806,11.07021827,39.67912931,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,27.53520573,14,50844,15.0537532,46.19939643,,,,,,,31.38194682,15.66575479,56.15097145,,,,,,,,,,55.6312759,40,71902,39.74379912,75.75400818,,,,,,,70.56024837,49.14779832,98.1322246,,,,,,,,,,6.666666667,,900,,,6,0,0.590653009,4613,7810,,,0.488,,,,,15.9680375,,,,,0.646666667,2231,3450,0.596799459,0.696533874,0.163387796,490,2999,0.094415881,0.232359711,0.610144928,2105,3450,0.51917229,0.701117565,10202,,,,,0.211037052,2153,10202,,,0.177808273,1814,10202,,,0.673397373,6870,10202,,,0.0093119,95,10202,,,0.00313664,32,10202,,,0.00754754,77,10202,,,0.093511076,954,10202,,,0.217506371,2219,10202,,,0.017612124,172,9766,0.002106498,0.03311775,0.445892962,4549,10202,,,1,10357,10357,, +01,013,01013,AL,Butler County,2024,1,12718.63319,449,52411,10883.61524,14553.65113,0,,,,2,,,,2,14501.23764,11734.42411,17268.05117,,,,,2,11991.70945,9333.812214,14649.60669,,,,,2,,0.234,,,0.204,0.267,4.627377057,,,3.703182941,5.635385688,6.080885157,,,4.922399116,7.304624761,0.131903834,203,1539,0.114997502,0.148810166,0,,,,,,,0.168878167,0.143374777,0.194381556,,,,0.085714286,0.064437167,0.106991405,,,,,,,0.211,,,0.176,0.252,0.42,,,0.34,0.504,7.2,0.069182869,0.138,,,0.365,,,0.311,0.424,0.427221668,8139,19051,,,0.128211314,,,0.10065477,0.159480212,0.283333333,17,60,0.216290068,0.352427548,1090.9,206,18884,,,34.83499214,133,3818,28.91466142,40.75532286,,,,,,,36.42544925,28.65092652,45.65961605,,,,33.41740227,25.03192745,43.71078495,,,,,,,0.119034521,1731,14542,0.10116218,0.136906861,0.000264774,5,18884,,,3776.8,0.000375335,7,18650,,,2664.285714,0.000857909,16,18650,,,1165.625,3396,,,,,,,3058,,3596,0.39,,,,,,,0.44,,0.38,0.29,,,,,,,0.23,,0.31,0.875923413,11620,13266,0.852614988,0.899231838,0.391718335,1769,4516,0.325607319,0.45782935,0.034189005,301,8804,,,0.33,1360,,0.223957447,0.436042553,,,,,,,0.482566248,0.404494286,0.56063821,0.279279279,0.072318955,0.486239604,0.135830073,0.06031366,0.211346485,4.87873345,95067,19486,4.007621284,5.749845616,0.392772792,1663,4234,0.320811426,0.464734158,9.002330015,17,18884,,,109.9228485,107,97341,89.09462852,130.7510686,,,,,,,117.4357557,87.43863369,154.4063309,,,,108.5296246,81.53079422,141.607618,,,,9.1,,,,,1,,,,,0.115037594,765,6650,0.08105516,0.149020028,0.098697318,0.065851557,0.131543079,0.011278196,0.002605702,0.019950689,0.009022556,2.37197E-05,0.018021393,0.860833108,6365,7394,0.825710227,0.895955989,,,,,,,0.859594919,0.795467448,0.92372239,,,,0.884028777,0.852197115,0.915860439,0.352,,7394,0.294870601,0.409129399,73.1898895,,,71.83740199,74.54237702,,,,,,,71.81979471,69.72599515,73.91359428,,,,73.62062356,71.71328265,75.52796447,,,,616.9263042,449,52411,556.1318175,677.7207909,,,,,,,737.3278353,636.2292616,838.426409,,,,562.1158577,480.9545844,643.277131,,,,74.23904974,14,18858,40.58717932,124.5605108,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.141,,,0.122,0.161,0.199,,,0.174,0.227,0.14,,,0.121,0.161,377.4,60,15900,,,0.138,2640,,,,0.069182869,1449.173566,20947,,,17.29026904,10,57836,8.291356069,31.79742037,,,,,,,,,,,,,,,,,,,0.409,,,0.396,0.423,0.150806529,1580,10477,0.126976741,0.174636316,0.039073468,167,4274,0.025967085,0.052179851,0.000965148,18,18650,,,1036.111111,0.8,164,205,,,,,,,,2.526134007,,,,,,,2.334512306,,2.990664659,2.118341767,,,,,,,1.891334405,,2.588469601,0.121255871,,,,,-15080.51,,,,,0.77769826,34774,44714,0.605749647,0.949646874,41852,,,36175.74468,47528.25532,53454,46632.7234,60275.2766,,,,33716,28655.74468,38776.25532,20000,3514.553192,36485.44681,53713,45394.02128,62031.97872,,,,,,0.710625214,2080,2927,,,23.85090978,,,,,0.341656313,,41852,,,4.599816007,5,1087,,,17.4554341,24,137493,11.18402599,25.97230229,,,,,,,34.36369884,21.2716712,52.52856398,,,,,,,,,,11.88373813,11,97341,5.698714351,21.85461754,11.30047976,,,,,,,,,,,,,24.151425,11.04356941,45.84692769,,,,24.6555922,24,97341,15.79730315,36.68556682,,,,,,,27.63194253,14.27782792,48.26744278,,,,20.09807862,9.637809905,36.96108217,,,,38.54741696,53,137493,28.87466048,50.42097047,,,,,,,36.00006546,22.56104936,54.50453173,,,,43.76244053,29.73445513,62.11729111,,,,16,,2000,,,32,0,0.629177719,9488,15080,,,0.558,,,,,22.23338025,,,,,0.707754873,5047,7131,0.681569251,0.733940495,0.115833583,774,6682,0.085569796,0.14609737,0.785163371,5599,7131,0.748289927,0.822036815,18650,,,,,0.223967828,4177,18650,,,0.21538874,4017,18650,,,0.441876676,8241,18650,,,0.004718499,88,18650,,,0.015013405,280,18650,,,0.000536193,10,18650,,,0.018284182,341,18650,,,0.50766756,9468,18650,,,0.000669381,12,17927,0,0.005734573,0.530080429,9886,18650,,,0.694346754,13228,19051,, +01,015,01015,AL,Calhoun County,2024,1,13197.25812,2735,318377,12445.45298,13949.06327,0,,,,2,,,,2,14644.88728,12952.37558,16337.39899,,5603.736448,3511.831798,8484.124326,1,13281.422,12387.21651,14175.62748,,,,,2,,0.208,,,0.176,0.241,4.499556522,,,3.634720275,5.521838648,5.696611047,,,4.688623297,6.871646633,0.09509434,882,9275,0.089124288,0.101064391,0,,,,,,,0.148292261,0.133808785,0.162775737,0.06405694,0.043812968,0.084300911,0.077960526,0.071221201,0.084699852,,,,0.090534979,0.054456009,0.12661395,0.208,,,0.168,0.251,0.389,,,0.321,0.46,5.9,0.15398073,0.156,,,0.341,,,0.284,0.398,0.666938621,77659,116441,,,0.135399058,,,0.107641858,0.166980345,0.104761905,11,105,0.06394022,0.154843903,545,632,115972,,,25.97987686,692,26636,24.04416767,27.91558605,,,,,,,21.55115073,18.23244283,24.86985862,39.45666235,30.18122029,50.68373345,26.22313949,23.75028317,28.69599581,,,,45.39722573,31.79565879,62.84889595,0.132170856,12105,91586,0.116681494,0.147660218,0.000586348,68,115972,,,1705.470588,0.000647736,75,115788,,,1543.84,0.001580475,183,115788,,,632.7213115,3491,,,,,,,3836,,3474,0.33,,,,,,0.35,0.38,0.37,0.32,0.34,,,,,,0.43,0.29,0.18,0.35,0.850717716,67148,78931,0.838451812,0.862983619,0.545473596,15618,28632,0.501525912,0.58942128,0.030320763,1399,46140,,,0.262,6257,,0.196468085,0.327531915,,,,,,,0.358317521,0.286354728,0.430280313,0.480541455,0.359573398,0.601509512,0.14519141,0.116796887,0.173585933,4.875970817,103590,21245,4.42520478,5.326736853,0.327191582,7991,24423,0.282097305,0.372285859,13.6239782,158,115972,,,97.0193217,555,572051,88.94756963,105.0910738,,,,,,,80.63912744,65.39290008,98.37289688,52.24660397,26.99658268,91.26430272,107.2603037,97.23797238,117.282635,,,,9.7,,,,,0,,,,,0.105676464,4710,44570,0.091257986,0.120094942,0.091768189,0.077699135,0.105837243,0.012115773,0.008020393,0.016211153,0.00762845,0.003507337,0.011749563,0.852222995,41672,48898,0.838962155,0.865483834,,,,,,,0.869379653,0.842398615,0.89636069,0.91927952,0.832668621,1,0.866199515,0.846999307,0.885399722,0.311,,48898,0.283184401,0.338815599,71.69407783,,,71.17255623,72.21559943,,,,,,,71.19673766,69.95946072,72.43401459,96.44264622,73.68667271,119.1986197,71.42968901,70.8254064,72.03397162,,,,645.4344721,2735,318377,619.9482948,670.9206495,,,,,,,698.3372957,638.0797325,758.594859,307.2114478,202.4542799,446.9765273,655.9395209,626.1612766,685.7177651,,,,65.59498243,73,111289,51.41599522,82.47584234,,,,,,,80.26853473,50.30386337,121.5275262,,,,60.14348517,43.34613397,81.29651995,,,,7.071681132,66,9333,5.469237675,8.996912294,,,,,,,12.46239794,8.346263488,17.89808227,,,,5.209181182,3.563076072,7.353809552,,,,,,,0.135,,,0.116,0.156,0.191,,,0.165,0.218,0.12,,,0.101,0.139,255.2,251,98341,,,0.156,18210,,,,0.15398073,18257.80311,118572,,,23.32048763,80,343046,18.49169633,29.02436553,,,,,,,19.28109076,10.54115174,32.35039405,,,,26.12799451,20.12173953,33.36486569,,,,0.381,,,0.366,0.396,0.165723754,11102,66991,0.144276945,0.187170562,0.042906333,1109,25847,0.02979995,0.056012716,0.000898193,104,115788,,,1113.346154,0.919712644,1120.21,1218,,,0.081869765,606,7402,0.043934288,0.119805242,2.945480411,,,,,,,2.536704979,2.638109971,3.180664485,2.786958409,,,,,,,2.385294342,2.58256557,2.999173063,0.189558926,,,,,-10277.2302,,,,,0.758625922,39994,52719,0.683994693,0.833257152,52772,,,47617.61702,57926.38298,,,,43860,27745.10638,59974.89362,38769,32695.97872,44842.02128,45458,15801.82979,75114.17021,59390,57098.76596,61681.23404,,,,,,0.511760221,8725,17049,,,46.05695224,,,,,0.227469112,,52772,,,5.509231686,37,6716,,,10.47013394,84,802282,8.351388881,12.96273826,,,,,,,23.18957777,16.49005672,31.70091621,,,,7.273860861,5.242359109,9.83214679,,,,21.95714444,128,572051,18.03052743,25.88376146,22.37562735,,,,,,,11.01625906,5.865693986,18.83813849,,,,25.23719823,20.27613925,30.19825721,,,,26.57105748,152,572051,22.34687067,30.79524429,,,,,,,28.26526116,19.57451503,39.49786938,,,,27.05884934,22.02495719,32.09274149,,,,21.6881346,174,802282,18.46555504,24.91071415,,,,,,,16.64892763,11.0630915,24.06233593,,,,24.41939004,20.38868213,28.45009794,,,,30.88495575,,11300,,,232,117,0.578563323,50983,88120,,,0.636,,,,,56.02274809,,,,,0.709149084,31694,44693,0.692517133,0.725781034,0.112961149,4844,42882,0.097758686,0.128163612,0.833419104,37248,44693,0.816334045,0.850504163,115788,,,,,0.211179051,24452,115788,,,0.186038277,21541,115788,,,0.220264622,25504,115788,,,0.005345977,619,115788,,,0.008826476,1022,115788,,,0.001131378,131,115788,,,0.043450099,5031,115788,,,0.702007117,81284,115788,,,0.005042906,553,109659,0.002711247,0.007374564,0.513585173,59467,115788,,,0.364940184,42494,116441,, +01,017,01017,AL,Chambers County,2024,1,12135.48151,767,92207,10734.19645,13536.76657,0,,,,2,,,,2,12313.3106,10265.97224,14360.64896,,,,,2,11998.44497,10055.11608,13941.77386,,,,,2,,0.22,,,0.19,0.252,4.504783494,,,3.605739489,5.504537548,5.81221167,,,4.690390737,7.012644058,0.134485349,358,2662,0.121524701,0.147445998,0,,,,,,,0.176958525,0.154250059,0.199666992,0.101769912,0.062350935,0.141188889,0.107941403,0.091053458,0.124829348,,,,,,,0.203,,,0.166,0.242,0.439,,,0.359,0.518,7.2,0.081029885,0.133,,,0.35,,,0.295,0.406,0.637524445,22168,34772,,,0.128128424,,,0.100163347,0.159152073,0.25,9,36,0.163218055,0.342798685,645.6,223,34541,,,30.47313553,190,6235,26.14005845,34.8062126,,,,,,,27.06552707,21.32455694,33.87654308,99.0990991,62.1048778,150.037227,28.6571143,22.92199242,35.39130303,,,,,,,0.126268823,3396,26895,0.107204993,0.145332653,0.000405315,14,34541,,,2467.214286,0.000205351,7,34088,,,4869.714286,0.000117343,4,34088,,,8522,3163,,,,,,,3615,,3123,0.3,,,,,,,0.28,,0.31,0.41,,,,,,,0.3,,0.44,0.834574597,20619,24706,0.810978638,0.858170557,0.518339184,4282,8261,0.446507681,0.590170687,0.025732756,410,15933,,,0.306,2097,,0.208297872,0.403702128,,,,,,,0.376603543,0.302974643,0.450232444,0.719191919,0.289419162,1,0.171437365,0.091708813,0.251165918,4.737707317,97123,20500,3.878691764,5.596722871,0.253272069,1819,7182,0.179784102,0.326760036,17.66017197,61,34541,,,94.64961783,159,167988,79.93746005,109.3617756,,,,,,,64.34813839,46.56906682,86.67652013,,,,122.1740494,99.64744052,144.7006582,,,,9.8,,,,,0,,,,,0.161266569,2190,13580,0.128522695,0.194010442,0.086940299,0.067291792,0.106588805,0.071428571,0.042686258,0.100170885,0.011045655,0.002735615,0.019355696,0.855525239,12542,14660,0.820431956,0.890618522,,,,,,,0.810689655,0.775811926,0.845567385,,,,0.852967545,0.784015926,0.921919165,0.311,,14660,0.261599868,0.360400132,72.46019745,,,71.48492257,73.43547233,,,,,,,72.03819355,70.57881228,73.49757483,,,,72.54722991,71.22425407,73.87020574,,,,581.3942609,767,92207,537.3464623,625.4420594,,,,,,,644.0246422,570.0882021,717.9610824,,,,562.8191603,504.7972132,620.8411075,,,,101.6393443,31,30500,69.05900321,144.2689361,,,,,,,,,,,,,111.474953,63.71756743,181.0283397,,,,9.370314843,25,2668,6.063973706,13.83243317,,,,,,,,,,,,,,,,,,,,,,0.137,,,0.119,0.156,0.195,,,0.169,0.221,0.134,,,0.115,0.153,359.6,106,29476,,,0.133,4630,,,,0.081029885,2772.437499,34215,,,14.90164912,15,100660,8.34033989,24.57800405,,,,,,,,,,,,,23.54432672,12.53636239,40.26151574,,,,0.434,,,0.421,0.448,0.156788336,3140,20027,0.131767059,0.181809612,0.03902034,282,7227,0.025913957,0.052126723,0.000264023,9,34088,,,3787.555556,0.865017241,250.855,290,,,0.174021649,209,1201,0.084354466,0.263688831,2.634106621,,,,,,,2.390015562,2.114966844,3.089914321,2.497681651,,,,,,,2.203305079,2.144872207,2.936481153,0.131663621,,,,,-26351.235,,,,,0.768525188,36279,47206,0.684507007,0.852543368,45563,,,39171.85106,51954.14894,,,,28274,16380.55319,40167.44681,43419,35494.40426,51343.59575,81152,68679.48936,93624.51064,53852,44738.29787,62965.70213,,,,,,0.664350243,2868,4317,,,31.21146322,,,,,0.334284397,,45563,,,5.836575876,12,2056,,,11.01909694,26,235954,7.198039964,16.1455301,,,,,,,17.094565,9.771020923,27.76050258,,,,7.651285033,3.669088576,14.07098559,,,,18.7018031,33,167988,12.61802801,26.69798679,19.6442603,,,,,,,,,,,,,30.65719485,20.02629752,44.9198936,,,,23.81122461,40,167988,17.01108796,32.42412968,,,,,,,19.45408835,10.35848272,33.26708356,,,,29.1920295,19.23773138,42.47287027,,,,27.54774236,65,235954,21.26076597,35.11185901,,,,,,,20.29979593,12.22180323,31.70064593,,,,33.66565415,24.46151584,45.19456933,,,,,,3000,,,37,-888,0.585257515,15284,26115,,,0.583,,,,,37.19702235,,,,,0.721753024,9486,13143,0.696171762,0.747334287,0.099761337,1254,12570,0.075538217,0.123984457,0.781632808,10273,13143,0.753359067,0.80990655,34088,,,,,0.207199014,7063,34088,,,0.207257686,7065,34088,,,0.392748181,13388,34088,,,0.004195025,143,34088,,,0.008771415,299,34088,,,0.000938747,32,34088,,,0.0359364,1225,34088,,,0.544502464,18561,34088,,,0.002705528,88,32526,0,0.0068561,0.523204647,17835,34088,,,0.507448522,17645,34772,, +01,019,01019,AL,Cherokee County,2024,1,12412.72881,702,70003,10839.28042,13986.17721,0,,,,2,,,,2,10547.34863,5057.863639,19396.94966,1,,,,2,12787.7719,11121.21387,14454.32992,,,,,2,,0.206,,,0.172,0.242,4.46306382,,,3.564728872,5.446453286,6.228824759,,,5.081088963,7.464023193,0.069070905,113,1636,0.056783213,0.081358596,0,,,,,,,,,,,,,0.071380921,0.058347298,0.084414543,,,,,,,0.222,,,0.176,0.269,0.378,,,0.301,0.46,7.2,0.050086523,0.147,,,0.328,,,0.272,0.388,0.382083217,9541,24971,,,0.143572902,,,0.112650871,0.179309173,0.111111111,4,36,0.043224685,0.205492743,276,69,24996,,,29.60203882,151,5101,24.8804385,34.32363914,,,,,,,43.1372549,21.53396222,77.18446476,,,,30.04096495,24.91609341,35.1658365,,,,,,,0.129840786,2471,19031,0.111968446,0.147713127,0.00044007,11,24996,,,2272.363636,0.00015809,4,25302,,,6325.5,0.000553316,14,25302,,,1807.285714,4153,,,,,,,,,4212,0.35,,,,,,,0.52,,0.35,0.43,,,,,,,0.38,,0.43,0.819251741,15175,18523,0.792415763,0.846087719,0.534362644,2838,5311,0.449928392,0.618796895,0.023426813,274,11696,,,0.227,1054,,0.147170213,0.306829787,,,,,,,0.516483517,0.079829785,0.953137248,0.508982036,0.417370899,0.600593173,0.133565911,0.08066175,0.186470072,4.520771583,96089,21255,3.955512487,5.08603068,0.292916401,1377,4701,0.209378301,0.376454501,9.201472236,23,24996,,,103.5748792,134,129375,86.03776593,121.1119925,,,,,,,,,,,,,109.805644,90.92968356,128.6816045,,,,9.5,,,,,0,,,,,0.074296262,805,10835,0.052065285,0.096527239,0.06088993,0.041075446,0.080704413,0.013382557,0.004435799,0.022329314,0.004153207,0,0.009121312,0.853755333,8605,10079,0.827030852,0.880479813,,,,,,,,,,,,,0.87432286,0.821012098,0.927633623,0.462,,10079,0.396241012,0.527758988,72.71162974,,,71.60114784,73.82211164,,,,,,,,,,,,,72.29057908,71.13810189,73.44305627,,,,626.9580811,702,70003,575.5379924,678.3781698,,,,,,,609.0844386,390.2518926,906.2693643,,,,644.7821334,590.4446255,699.1196413,,,,88.17523668,19,21548,53.08725248,137.6965545,,,,,,,,,,,,,89.90903321,52.3753251,143.9530718,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.138,,,0.117,0.16,0.201,,,0.174,0.23,0.111,,,0.095,0.13,133.3,29,21763,,,0.147,3660,,,,0.050086523,1301.698634,25989,,,20.64889141,16,77486,11.80262558,33.532506,,,,,,,,,,,,,22.59121202,12.91282963,36.68671298,,,,0.382,,,0.365,0.398,0.158089003,2270,14359,0.135450706,0.180727301,0.044602851,219,4910,0.030304979,0.058900724,0.000988064,25,25302,,,1012.08,0.92,235.52,256,,,,,,,,2.784754319,,,,,,,,,2.789467063,2.646747671,,,,,,,,,2.6638752,0.057141787,,,,,-1664.026,,,,,0.878338894,42386,48257,0.636184231,1.120493557,52613,,,46834.2766,58391.7234,28558,27360.55319,29755.44681,,,,56518,15585.57447,97450.42553,40883,38659.68085,43106.31915,46777,42273.17021,51280.82979,,,,,,0.535301669,2085,3895,,,47.52591275,,,,,0.220021668,,52613,,,5.509641873,6,1089,,,8.289170475,15,180959,4.639385791,13.67172612,,,,,,,,,,,,,7.850620803,4.18012494,13.42480067,,,,23.14907864,32,129375,15.12174673,33.91876375,24.73429952,,,,,,,,,,,,,25.18457561,16.45140093,36.90123842,,,,25.50724638,33,129375,17.55801474,35.82165741,,,,,,,,,,,,,27.0290816,18.48787181,38.15699849,,,,32.05145917,58,180959,24.33801672,41.43394346,,,,,,,,,,,,,34.42195275,26.07085086,44.59763238,,,,23.47826087,,2300,,,49,5,0.595113691,12301,20670,,,0.457,,,,,4.048076586,,,,,0.797439232,7972,9997,0.770071195,0.824807268,0.088241663,815,9236,0.06546135,0.111021976,0.77823347,7780,9997,0.750440379,0.806026561,25302,,,,,0.186388428,4716,25302,,,0.244328512,6182,25302,,,0.039878271,1009,25302,,,0.008102126,205,25302,,,0.004387005,111,25302,,,0.000711406,18,25302,,,0.020828393,527,25302,,,0.910362817,23034,25302,,,0.00949076,227,23918,0.001784994,0.017196527,0.496205834,12555,25302,,,1,24971,24971,, +01,021,01021,AL,Chilton County,2024,1,10953.15022,950,124868,9897.114211,12009.18623,0,,,,2,,,,2,11771.64474,8649.361783,15653.792,,7385.78707,4446.726288,11533.8214,1,11138.06066,9939.573768,12336.54754,,,,,2,,0.206,,,0.176,0.238,4.426500394,,,3.53383451,5.36202677,5.938820536,,,4.831055629,7.081564082,0.088280847,342,3874,0.079346968,0.097214725,0,,,,,,,0.153179191,0.115229026,0.191129356,0.071028037,0.049261197,0.092794878,0.082991803,0.07299929,0.092984317,,,,,,,0.217,,,0.176,0.258,0.423,,,0.347,0.498,7.1,0.043695515,0.154,,,0.341,,,0.288,0.398,0.313035944,14091,45014,,,0.151319513,,,0.119501604,0.18869825,0.229508197,14,61,0.16403564,0.299776734,331.3,150,45274,,,38.82084285,374,9634,34.88638198,42.75530372,,,,,,,28.3203125,18.96655775,40.67269281,61.40350877,47.1841421,78.56176149,36.8707483,32.48086093,41.26063567,,,,65.47619048,32.68547838,117.1549912,0.145032202,5382,37109,0.125968373,0.164096032,0.000220877,10,45274,,,4527.4,0.000261529,12,45884,,,3823.666667,0.000784587,36,45884,,,1274.555556,3581,,,,,,,3904,,3447,0.33,,,,,,,0.27,,0.33,0.37,,,,,,,0.26,,0.37,0.821621092,25149,30609,0.79580387,0.847438314,0.456641738,5129,11232,0.392999448,0.520284027,0.022698115,460,20266,,,0.221,2349,,0.150702128,0.291297872,,,,,,,0.21743487,0.080698612,0.354171128,0.298245614,0.145528963,0.450962265,0.141678861,0.100708757,0.182648966,4.086108668,106864,26153,3.40146904,4.770748297,0.194818556,2083,10692,0.139984513,0.249652599,15.46141273,70,45274,,,93.55925494,208,222319,80.84440736,106.2741025,,,,,,,81.326526,48.19925352,128.5309731,,,,101.1571251,86.37910351,115.9351467,,,,9.9,,,,,0,,,,,0.127187865,2180,17140,0.096188112,0.158187617,0.097373857,0.070875301,0.123872412,0.026546091,0.015005389,0.038086793,0.00495916,0.001168291,0.008750029,0.823256316,15250,18524,0.79686467,0.849647963,,,,,,,,,,,,,0.794306481,0.753720223,0.834892739,0.51,,18524,0.455308172,0.564691828,73.48785539,,,72.70001188,74.27569889,,,,,,,72.06289582,69.65828005,74.46751159,91.99441972,68.8954641,115.0933754,73.2671374,72.39597609,74.13829871,,,,574.1826886,950,124868,536.1195295,612.2458476,,,,,,,637.0691843,512.9283674,782.1797874,258.7394962,153.3454235,408.9199534,586.11567,543.8643755,628.3669645,,,,58.32289282,27,46294,38.43515387,84.85674698,,,,,,,,,,,,,65.59918896,41.11066247,99.31796042,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.136,,,0.116,0.156,0.197,,,0.171,0.226,0.115,,,0.098,0.132,169.4,64,37787,,,0.154,6890,,,,0.043695515,1907.003366,43643,,,20.13437833,27,134099,13.26868219,29.29446338,,,,,,,,,,,,,24.24875492,15.84009179,35.53004429,,,,0.408,,,0.392,0.423,0.182349173,4839,26537,0.157327896,0.207370449,0.054362476,605,11129,0.037681625,0.071043328,0.0003705,17,45884,,,2699.058824,0.89,494.84,556,,,,,,,,2.822341241,,,,,,,2.44112483,2.577644425,2.955913358,2.720820186,,,,,,,2.148215505,2.687054091,2.814001008,0.071198064,,,,,-3359.531,,,,,0.745321881,40348,54135,0.644247951,0.84639581,61823,,,56535.17021,67110.82979,88635,88475.34043,88794.65957,,,,33072,26848.85106,39295.14894,62073,40330.70213,83815.29787,64409,59731.21277,69086.78723,,,,,,0.549915836,4247,7723,,,41.88167244,,,,,0.231289326,,61823,,,4.05904059,11,2710,,,5.157912722,16,310203,2.948192781,8.376127116,,,,,,,,,,,,,,,,,,,16.19326166,36,222319,11.21430444,22.62846008,16.19294797,,,,,,,,,,,,,18.21083447,12.28677355,25.99709856,,,,16.19294797,36,222319,11.34134168,22.41786554,,,,,,,,,,,,,16.29753682,10.91471619,23.40598144,,,,25.78956361,80,310203,20.44952002,32.09734431,,,,,,,,,,,,,26.54760468,20.53191554,33.77506232,,,,8.367346939,,4900,,,41,0,0.595069337,19310,32450,,,0.606,,,,,17.53130088,,,,,0.750103361,12700,16931,0.719239447,0.780967275,0.085689212,1367,15953,0.062320169,0.109058255,0.811174768,13734,16931,0.776932273,0.845417263,45884,,,,,0.235703077,10815,45884,,,0.175398832,8048,45884,,,0.097245227,4462,45884,,,0.006320286,290,45884,,,0.004729317,217,45884,,,0.001721733,79,45884,,,0.08473542,3888,45884,,,0.796726528,36557,45884,,,0.021399449,908,42431,0.010883112,0.031915786,0.508347136,23325,45884,,,0.855444973,38507,45014,, +01,023,01023,AL,Choctaw County,2024,1,12336.87291,298,33564,9974.933536,14698.81229,0,,,,2,,,,2,16278.72693,12013.32353,20544.13034,,,,,2,9765.215663,6949.382044,12581.04928,,,,,2,,0.241,,,0.206,0.275,4.70800167,,,3.668543521,5.662560792,6.32286417,,,5.018448322,7.501585975,0.111794872,109,975,0.092015097,0.131574647,0,,,,,,,0.158291457,0.122430313,0.194152601,,,,0.081669692,0.058802639,0.104536744,,,,,,,0.223,,,0.182,0.264,0.447,,,0.359,0.527,6.2,0.130442755,0.157,,,0.371,,,0.311,0.425,0.251638374,3187,12665,,,0.11891855,,,0.09056143,0.148385969,0.428571429,9,21,0.316583454,0.532224752,367,46,12533,,,30.02879474,73,2431,23.53778154,37.75670102,,,,,,,31.0786106,21.5228413,43.42924323,,,,29.64118565,20.97586712,40.68484315,,,,,,,0.127406932,1191,9348,0.109534592,0.145279272,0.000398947,5,12533,,,2506.6,0.000482354,6,12439,,,2073.166667,8.03923E-05,1,12439,,,12439,2712,,,,,,,3932,,2233,0.44,,,,,,,0.41,,0.46,0.34,,,,,,,0.26,,0.37,0.823906319,7458,9052,0.784354768,0.86345787,0.507698541,1253,2468,0.393439767,0.621957315,0.038389949,165,4298,,,0.312,758,,0.196425532,0.427574468,,,,,,,0.47260274,0.354872088,0.590333392,,,,0.198501873,0.09133457,0.305669175,6.180199089,103061,16676,4.47877961,7.881618567,0.385985748,975,2526,0.281958673,0.490012823,21.54312615,27,12533,,,108.9599848,69,63326,84.77737194,137.8958344,,,,,,,118.2799802,80.36550795,167.8889904,,,,106.4127695,75.30400909,146.0598402,,,,9.3,,,,,0,,,,,0.095684803,510,5330,0.064006974,0.127362632,0.059980898,0.033988501,0.085973294,0.009193246,0,0.020378179,0.026266417,0.006049852,0.046482981,0.874375284,3849,4402,0.822569788,0.92618078,,,,,,,0.869642857,0.81714432,0.922141394,,,,0.919650655,0.840849554,0.998451756,0.514,,4402,0.425428172,0.602571828,73.84020172,,,72.09073983,75.5896636,,,,,,,70.85762291,68.11813367,73.59711215,,,,75.77925239,73.48672932,78.07177545,,,,585.1776721,298,33564,511.3783732,658.976971,,,,,,,698.1906271,568.0104848,828.3707694,,,,511.0153462,422.3026206,599.7280719,,,,90.64539521,10,11032,43.46799036,166.7001092,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.146,,,0.124,0.166,0.205,,,0.176,0.232,0.144,,,0.122,0.164,278.7,30,10764,,,0.157,2010,,,,0.130442755,1807.806134,13859,,,,,,,,,,,,,,,,,,,,,,,,,,0.431,,,0.417,0.445,0.155182397,1072,6908,0.13135261,0.179012185,0.051321929,132,2572,0.034641077,0.06800278,0.000482354,6,12439,,,2073.166667,0.925,87.875,95,,,,,,,,2.549412685,,,,,,,2.487373601,,2.6322231,2.128404244,,,,,,,2.180820508,,2.094062474,0.140588424,,,,,-22098.77,,,,,0.560308113,36443,65041,0.426673411,0.693942816,44458,,,38014.42553,50901.57447,,,,,,,32434,24316.38298,40551.61702,,,,51022,45921.23404,56122.76596,,,,,,0.757263355,808,1067,,,34.50530288,,,,,0.299068784,,44458,,,5.714285714,4,700,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,43.58077529,39,89489,30.99019152,59.57635449,,,,,,,56.56108597,35.01220369,86.45962814,,,,35.65132999,21.12923762,56.3444716,,,,15.45454546,,1100,,,17,0,0.732842415,7464,10185,,,0.512,,,,,1.620594824,,,,,0.819816373,4286,5228,0.784203453,0.855429294,0.106229373,515,4848,0.070001442,0.142457304,0.69338179,3625,5228,0.639564072,0.747199509,12439,,,,,0.197925878,2462,12439,,,0.245035775,3048,12439,,,0.407749819,5072,12439,,,0.002331377,29,12439,,,0.002813731,35,12439,,,0,0,12439,,,0.012460809,155,12439,,,0.564997186,7028,12439,,,0.003171159,38,11983,0,0.01130634,0.524399067,6523,12439,,,1,12665,12665,, +01,025,01025,AL,Clarke County,2024,1,14884.57609,593,63205,13026.29917,16742.85302,0,,,,2,,,,2,17168.02563,14404.54024,19931.51102,,,,,2,13651.43188,10997.21493,16305.64884,,,,,2,,0.237,,,0.204,0.272,4.635448032,,,3.73154716,5.63837378,5.831929322,,,4.732368183,7.004570512,0.130761523,261,1996,0.115970941,0.145552105,0,,,,,,,0.174219537,0.150627677,0.197811396,,,,0.088235294,0.070217561,0.106253027,,,,,,,0.215,,,0.177,0.256,0.434,,,0.355,0.513,5.5,0.183503436,0.163,,,0.383,,,0.327,0.442,0.530125179,12239,23087,,,0.122903427,,,0.095568574,0.153114267,0.341463415,14,41,0.260140378,0.422314709,725,165,22760,,,30.03400076,159,5294,25.36557242,34.70242909,,,,,,,37.72835584,30.52449288,46.12095855,,,,22.02989772,16.64114799,28.60765461,,,,,,,0.122732426,2165,17640,0.106051575,0.139413277,0.000395431,9,22760,,,2528.888889,0.000355319,8,22515,,,2814.375,0.000932712,21,22515,,,1072.142857,3623,,,,,,,5508,,3076,0.34,,,,,,,0.36,,0.33,0.26,,,,,,,0.22,,0.27,0.813924446,13035,16015,0.785419087,0.842429804,0.401471158,2074,5166,0.327952982,0.474989333,0.050038991,385,7694,,,0.33,1587,,0.220382979,0.439617021,,,,,,,0.409648406,0.314124925,0.505171886,,,,0.185007208,0.127556851,0.242457565,5.745419804,102234,17794,4.299292472,7.191547137,0.414037855,2100,5072,0.32803476,0.50004095,16.69595782,38,22760,,,95.17658656,112,117676,77.54963605,112.8035371,,,,,,,95.23083956,70.68216467,125.5499898,,,,101.0413781,77.46784519,129.5304866,,,,9.5,,,,,1,,,,,0.121715818,1135,9325,0.093306102,0.150125534,0.106773823,0.07722364,0.136324006,0.018766756,0.007220283,0.030313229,0.007506702,0.000380941,0.014632464,0.904600988,6960,7694,0.870960424,0.938241552,,,,,,,0.872555866,0.840938536,0.904173196,,,,0.915791599,0.865476098,0.9661071,0.364,,7694,0.298133158,0.429866842,70.97678415,,,69.75668384,72.19688447,,,,,,,68.40837962,66.7589956,70.05776363,,,,72.46978229,70.65873992,74.28082465,,,,689.6519307,593,63205,630.4229841,748.8808774,,,,,,,866.3024218,767.995416,964.6094276,,,,588.6254471,510.9873154,666.2635787,,,,121.4192562,27,22237,80.01605492,176.658643,,,,,,,128.8422603,70.43926262,216.1754199,,,,107.7058651,53.76637978,192.715544,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.144,,,0.125,0.165,0.197,,,0.171,0.225,0.143,,,0.122,0.165,201.8,39,19323,,,0.163,3810,,,,0.183503436,4740.444249,25833,,,,,,,,,,,,,,,,,,,,,,,,,,0.409,,,0.395,0.422,0.151838947,1961,12915,0.129200649,0.174477245,0.045045045,225,4995,0.030747173,0.059342917,0.000888297,20,22515,,,1125.75,0.925,244.2,264,,,0.225860621,269,1191,0.115958623,0.33576262,3.008578223,,,,,,,2.812642746,,3.331679066,2.777250911,,,,,,,2.597129164,,3.024510093,0.027992823,,,,,-14395.92,,,,,0.653540626,34554,52872,0.544050962,0.763030291,44906,,,38299.19149,51512.80851,,,,,,,34358,22135.70213,46580.29787,,,,58722,51088.12766,66355.87234,,,,,,0.695026962,2320,3338,,,18.59735522,,,,,0.332383201,,44906,,,6.968641115,10,1435,,,10.79505586,18,166743,6.39783426,17.0608423,,,,,,,17.54978063,9.344519056,30.01065936,,,,,,,,,,17.68116555,19,117676,10.47897928,27.94386437,16.14602808,,,,,,,,,,,,,25.46060958,13.5567023,43.53841779,,,,22.09456474,26,117676,14.43290324,32.37365655,,,,,,,20.9507847,10.45855624,37.48674104,,,,24.4454947,13.68195781,40.31912595,,,,28.18709031,47,166743,20.71081375,37.48285466,,,,,,,32.39959501,20.75903187,48.20802915,,,,26.33356614,16.69322201,39.51327887,,,,14.34782609,,2300,,,33,0,0.702970297,13135,18685,,,0.52,,,,,13.15915152,,,,,0.722520762,5916,8188,0.688335736,0.756705788,0.095418243,681,7137,0.065249596,0.12558689,0.707865169,5796,8188,0.667521117,0.748209221,22515,,,,,0.215767266,4858,22515,,,0.210037753,4729,22515,,,0.448678659,10102,22515,,,0.006351321,143,22515,,,0.004619143,104,22515,,,0.000310904,7,22515,,,0.015944926,359,22515,,,0.514856762,11592,22515,,,0.00097056,21,21637,0,0.006174334,0.524317122,11805,22515,,,1,23087,23087,, +01,027,01027,AL,Clay County,2024,1,13779.88195,322,36723,11383.57247,16176.19142,0,,,,2,,,,2,15740.40983,9864.431038,23831.16964,1,,,,2,13332.70859,10732.12159,15933.29558,,,,,2,,0.213,,,0.181,0.249,4.502996591,,,3.609952049,5.471926635,6.115181631,,,4.946300482,7.352043578,0.094196004,99,1051,0.076536111,0.111855897,0,,,,,,,0.134146342,0.081985353,0.18630733,,,,0.082825822,0.063972266,0.101679378,,,,,,,0.212,,,0.17,0.256,0.416,,,0.331,0.5,7.4,0.029746178,0.15,,,0.351,,,0.293,0.413,0.64393088,9167,14236,,,0.136978811,,,0.106655541,0.171298539,0.476190476,10,21,0.368895038,0.572895246,422.8,60,14190,,,33.43823761,85,2542,26.70927656,41.34689863,,,,,,,28.87139108,14.4124944,51.65889374,,,,31.96347032,24.56160822,40.89516351,,,,,,,0.132453921,1466,11068,0.113390091,0.151517751,0.000281889,4,14190,,,3547.5,0.000140865,2,14198,,,7099,0.000140865,2,14198,,,7099,2559,,,,,,,1040,,2530,0.37,,,,,,,0.55,,0.37,0.39,,,,,,,0.3,,0.4,0.83338307,8378,10053,0.802667945,0.864098195,0.471400395,1434,3042,0.377793366,0.565007423,0.022675367,139,6130,,,0.252,735,,0.160255319,0.343744681,,,,,,,0.628571429,0.472450868,0.784691989,0.092198582,0,0.398017697,0.133873273,0.051112546,0.216634,5.543084078,106078,19137,3.583338564,7.502829592,0.203092784,591,2910,0.135565953,0.270619614,11.27554616,16,14190,,,113.1305914,76,67179,89.13403873,141.5998049,,,,,,,,,,,,,122.0865705,94.42174476,155.3240519,,,,7.6,,,,,1,,,,,0.078564501,405,5155,0.048706319,0.108422682,0.059980334,0.034259686,0.085700983,0.011639185,0,0.026778544,0.008535403,0,0.02148669,0.833655332,4315,5176,0.779482845,0.88782782,,,,,,,,,,,,,0.713414634,0.670005064,0.756824205,0.398,,5176,0.311143776,0.484856224,71.80561071,,,70.22560953,73.3856119,,,,,,,70.42076308,65.85920238,74.98232379,,,,71.99425345,70.30919553,73.67931137,,,,624.9212028,322,36723,551.4408118,698.4015939,,,,,,,731.4957489,529.3871005,985.3199732,,,,623.8088099,542.5819975,705.0356223,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.14,,,0.119,0.162,0.2,,,0.173,0.227,0.119,,,0.103,0.139,172.7,21,12158,,,0.15,2130,,,,0.029746178,414.4237569,13932,,,,,,,,,,,,,,,,,,,,,,,,,,0.387,,,0.371,0.402,0.160731707,1318,8200,0.135710431,0.185752984,0.053713528,162,3016,0.035841187,0.071585868,0.000352162,5,14198,,,2839.6,0.825,89.925,109,,,,,,,,2.783569439,,,,,,,2.073237712,,2.984763085,2.529710142,,,,,,,2.03787649,,2.648678687,0.015845209,,,,,-6581.203,,,,,0.843955831,43565,51620,0.624132814,1.063778848,49599,,,43138.74468,56059.25532,,,,,,,33075,24616.61702,41533.38298,96250,10506.85106,181993.1489,51026,46400.6383,55651.3617,,,,,,0.531215772,970,1826,,,26.45433696,,,,,0.25000504,,49599,,,8.064516129,6,744,,,,,,,,,,,,,,,,,,,,,,,,,,29.34320915,18,67179,17.09350066,46.98132037,26.79408744,,,,,,,,,,,,,33.34264625,18.661626,54.9936244,,,,23.81696661,16,67179,13.61345428,38.67726164,,,,,,,,,,,,,24.04735479,12.80420365,41.12170906,,,,38.20601533,36,94226,26.75902343,52.89322956,,,,,,,,,,,,,36.99006553,24.57962991,53.4609437,,,,6.666666667,,1200,,,8,0,0.664111164,6930,10435,,,0.553,,,,,2.560766766,,,,,0.783409298,4297,5485,0.749657341,0.817161255,0.084810368,445,5247,0.052075369,0.117545367,0.746763902,4096,5485,0.694646436,0.798881367,14198,,,,,0.208691365,2963,14198,,,0.214114664,3040,14198,,,0.135582476,1925,14198,,,0.006198056,88,14198,,,0.002746866,39,14198,,,0,0,14198,,,0.03183547,452,14198,,,0.80349345,11408,14198,,,0.000445633,6,13464,0,0.00754783,0.509226652,7230,14198,,,1,14236,14236,, +01,029,01029,AL,Cleburne County,2024,1,12866.79067,354,41222,10748.33619,14985.24515,0,,,,2,,,,2,,,,2,,,,2,12915.56926,10703.80036,15127.33815,,,,,2,,0.198,,,0.164,0.233,4.430707102,,,3.484468197,5.458852829,6.065322307,,,4.903229175,7.277325968,0.079012346,96,1215,0.063843857,0.094180834,0,,,,,,,,,,,,,0.07733813,0.061637329,0.09303893,,,,,,,0.207,,,0.162,0.255,0.361,,,0.284,0.446,7.3,0.020248519,0.155,,,0.322,,,0.265,0.383,0.424282678,6388,15056,,,0.145689917,,,0.114740437,0.183374209,0.24137931,7,29,0.144907761,0.346292388,251.6,38,15103,,,30.44982699,88,2890,24.42165165,37.51503849,,,,,,,,,,,,,31.64801235,25.17060342,39.28352803,,,,,,,0.122548614,1481,12085,0.104676274,0.140420954,0.000264848,4,15103,,,3775.75,,0,15346,,,,0.000521309,8,15346,,,1918.25,2478,,,,,,,,,2353,0.3,,,,,,,,,0.3,0.36,,,,,,,0.28,,0.36,0.825493885,8775,10630,0.799502166,0.851485604,0.432364449,1547,3578,0.339454,0.525274899,0.024100309,148,6141,,,0.217,746,,0.14312766,0.29087234,,,,,,,,,,0.483660131,0.277043099,0.690277163,0.167857143,0.106472354,0.229241932,4.357547543,99217,22769,3.559851666,5.155243419,0.232443413,801,3446,0.130443911,0.334442915,8.607561412,13,15103,,,118.8774761,89,74867,95.46837477,146.2889636,,,,,,,,,,,,,118.2203512,94.02415367,146.7426273,,,,9.4,,,,,0,,,,,0.089974293,525,5835,0.063909628,0.116038958,0.063596103,0.03976821,0.087423996,0.014395887,0.003860194,0.02493158,0.017137961,0.002824012,0.031451909,0.85177901,4764,5593,0.80496757,0.898590449,,,,,,,,,,,,,0.799312419,0.720752013,0.877872826,0.57,,5593,0.476743596,0.663256404,72.03379426,,,70.56360221,73.50398632,,,,,,,,,,,,,71.95634844,70.4333296,73.47936727,,,,621.087414,354,41222,552.488604,689.686224,,,,,,,,,,,,,621.252067,550.1696541,692.3344798,,,,87.31278125,13,14889,46.49037874,149.3075151,,,,,,,,,,,,,90.09685412,46.55435925,157.3810725,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.136,,,0.115,0.158,0.199,,,0.171,0.23,0.11,,,0.093,0.128,86.9,11,12652,,,0.155,2330,,,,0.020248519,303.1608309,14972,,,,,,,,,,,,,,,,,,,,,,,,,,0.369,,,0.35,0.387,0.151188406,1304,8625,0.127358619,0.175018193,0.053665284,194,3615,0.035792943,0.071537624,0.000130327,2,15346,,,7673,0.975,164.775,169,,,,,,,,3.122187396,,,,,,,,,3.186303692,3.075677455,,,,,,,,,3.182095533,0.109138092,,,,,-223.2246,,,,,0.792134289,41008,51769,0.698222177,0.886046401,49248,,,43055.82979,55440.17021,,,,,,,40240,23932.08511,56547.91489,50913,22572.23404,79253.76596,53798,48486.34043,59109.65957,,,,,,0.458879619,1155,2517,,,45.94111787,,,,,0.251786875,,49248,,,8.092485549,7,865,,,9.541165358,10,104809,4.575359651,17.5465428,,,,,,,,,,,,,,,,,,,19.06098459,15,74867,10.42081764,31.98109329,20.03552967,,,,,,,,,,,,,20.39398596,11.1495819,34.21764309,,,,28.04974154,21,74867,17.36323211,42.87700954,,,,,,,,,,,,,30.2759436,18.74128627,46.27999587,,,,34.34819529,36,104809,24.05705371,47.55238051,,,,,,,,,,,,,35.03565393,24.26320884,48.95881466,,,,,,1600,,,5,-888,0.631454784,7227,11445,,,0.567,,,,,10.91429,,,,,0.780420066,4496,5761,0.742709294,0.818130838,0.066381555,357,5378,0.041604337,0.091158772,0.738587051,4255,5761,0.689743981,0.787430121,15346,,,,,0.228984752,3514,15346,,,0.19399192,2977,15346,,,0.028671967,440,15346,,,0.004431122,68,15346,,,0.002280725,35,15346,,,0.000847126,13,15346,,,0.026130588,401,15346,,,0.922716017,14160,15346,,,0.003721126,53,14243,0,0.010250433,0.501368435,7694,15346,,,1,15056,15056,, +01,031,01031,AL,Coffee County,2024,1,10533.99606,994,148426,9557.128996,11510.86312,0,,,,2,,,,2,15195.47926,12330.27706,18060.68146,,5447.127168,3279.526386,8506.363821,1,10404.00671,9211.101407,11596.91201,,,,,2,,0.194,,,0.164,0.226,4.317594649,,,3.484366399,5.22532057,5.803434183,,,4.775755666,6.857818814,0.083459788,385,4613,0.075478394,0.091441181,0,,,,0.134146342,0.060379564,0.207913119,0.14135514,0.118016165,0.164694115,0.065868264,0.047057345,0.084679182,0.068411867,0.059167622,0.077656113,,,,0.103174603,0.050060341,0.156288865,0.185,,,0.148,0.225,0.395,,,0.326,0.467,6.8,0.08991895,0.146,,,0.306,,,0.255,0.357,0.538576639,28795,53465,,,0.146150782,,,0.116189599,0.178737662,0.274509804,14,51,0.20156323,0.35030076,577.8,313,54174,,,27.87761901,318,11407,24.81355248,30.94168553,,,,,,,32.36714976,25.08409649,41.10513605,71.20253165,57.25524378,87.51999983,19.17584659,16.01064729,22.3410459,,,,45.87155963,28.01954033,70.84490345,0.124988768,5564,44516,0.109499406,0.14047813,0.000516853,28,54174,,,1934.785714,0.000346684,19,54805,,,2884.473684,0.001058298,58,54805,,,944.9137931,3752,,,,,,,4572,,3712,0.41,,,,,,0.45,0.43,0.33,0.41,0.34,,,,,,0.3,0.3,0.19,0.35,0.866205274,31665,36556,0.850688728,0.88172182,0.624215901,8558,13710,0.572981086,0.675450716,0.025373895,548,21597,,,0.226,2886,,0.165234043,0.286765957,0.471910112,0.084094856,0.859725369,,,,0.602387512,0.502856998,0.701918025,0.479024943,0.371241269,0.586808618,0.091197462,0.070555745,0.11183918,5.039742479,122118,24231,4.196184692,5.883300266,0.321451204,4058,12624,0.268918366,0.373984043,12.36755639,67,54174,,,73.23672158,193,263529,62.90420021,83.56924294,,,,,,,84.65325581,59.90568212,116.1932075,,,,81.35452555,68.29147361,94.4175775,,,,9.1,,,,,0,,,,,0.119298246,2380,19950,0.097938533,0.140657958,0.09616654,0.075448989,0.116884091,0.022305764,0.012732586,0.031878943,0.006015038,0.001990268,0.010039808,0.856058935,19406,22669,0.829797303,0.882320567,,,,,,,0.842995169,0.793661609,0.89232873,0.796640672,0.690525463,0.90275588,0.829410872,0.792174775,0.866646968,0.316,,22669,0.286863273,0.345136727,74.19940511,,,73.44284535,74.95596487,,,,,,,70.7690293,68.78874178,72.74931681,84.54018904,77.42393113,91.65644696,74.02034284,73.12780772,74.91287796,,,,523.2077305,994,148426,489.5969264,556.8185345,,,,,,,689.7676351,594.3204449,785.2148253,246.5830702,154.5322973,373.3297317,524.7350029,485.1691243,564.3008816,,,,63.95146997,35,54729,44.54454202,88.94101367,,,,,,,,,,,,,74.07187935,47.9354148,109.3447059,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.127,,,0.109,0.147,0.188,,,0.162,0.214,0.113,,,0.097,0.132,179.6,81,45111,,,0.146,7770,,,,0.08991895,4491.271716,49948,,,12.5198753,20,159746,7.647465092,19.33593198,,,,,,,,,,,,,14.48645516,8.280260805,23.52509561,,,,0.399,,,0.384,0.414,0.154356061,4890,31680,0.134100742,0.17461138,0.055122784,743,13479,0.039633422,0.070612145,0.000802847,44,54805,,,1245.568182,0.920036232,634.825,690,,,0.12138522,340,2801,0.055455668,0.187314772,3.020489127,,,,,,,2.49242194,2.566151825,3.321048733,2.87277299,,,,,,,2.281459131,2.629843822,3.133080572,0.076404482,,,,,-6093.076567,,,,,0.658448115,39391,59824,0.564146075,0.752750154,62429,,,56389.34043,68468.65957,,,,,,,37083,24382.91489,49783.08511,52742,14255.70213,91228.29787,70622,66837.82979,74406.17021,,,,,,0.463012878,4638,10017,,,42.18643936,,,,,0.167822647,,62429,,,4.98132005,16,3212,,,7.104485116,26,365966,4.640885551,10.40971677,,,,,,,22.3488658,12.2183329,37.49759929,,,,3.912011048,1.875961356,7.1943276,,,,14.97281065,42,263529,10.69679544,20.38871843,15.9375249,,,,,,,,,,,,,16.41287354,11.15175127,23.29676387,,,,22.76789272,60,263529,17.37430072,29.30679106,,,,,,,28.96032436,15.42015302,49.52303664,,,,24.0241552,17.45598794,32.25130701,,,,21.04020592,77,365966,16.60460148,26.29664737,,,,,,,19.15617068,9.898272926,33.46197508,,,,22.29846297,16.8886381,28.89024517,,,,20.34482759,,5800,,,72,46,0.572107358,22275,38935,,,0.587,,,,,36.98843751,,,,,0.694642243,14145,20363,0.672613479,0.716671008,0.108490566,2116,19504,0.08742442,0.129556713,0.848647056,17281,20363,0.832835152,0.86445896,54805,,,,,0.237076909,12993,54805,,,0.173980476,9535,54805,,,0.163725937,8973,54805,,,0.01437825,788,54805,,,0.018337743,1005,54805,,,0.00434267,238,54805,,,0.090539184,4962,54805,,,0.686415473,37619,54805,,,0.016649799,839,50391,0.011081059,0.022218538,0.502399416,27534,54805,,,0.475301599,25412,53465,, +01,033,01033,AL,Colbert County,2024,1,11291.07048,1238,153622,10283.60551,12298.53546,0,,,,2,,,,2,15243.12569,12188.16801,18298.08337,,,,,2,10899.41311,9786.861224,12011.96499,,,,,2,,0.187,,,0.158,0.219,4.235057537,,,3.343920371,5.243864748,5.848336339,,,4.695717282,7.072649925,0.103432598,455,4399,0.094433494,0.112431703,0,,,,,,,0.156558533,0.129810072,0.183306994,0.076142132,0.03910494,0.113179324,0.092647938,0.082823699,0.102472176,,,,0.111111111,0.046182322,0.1760399,0.193,,,0.153,0.237,0.393,,,0.313,0.48,6.8,0.088293033,0.149,,,0.313,,,0.258,0.373,0.688625998,39408,57227,,,0.146715057,,,0.114453424,0.183668887,0.310344828,18,58,0.242222913,0.379412489,516.8,297,57474,,,26.87725132,291,10827,23.78912946,29.96537317,,,,,,,23.19160685,16.71447031,31.34831517,43.04635762,28.11930996,63.07288756,26.48922687,22.89792252,30.08053122,,,,37.13527852,20.30220232,62.30668733,0.107281713,4884,45525,0.092983841,0.121579586,0.000661169,38,57474,,,1512.473684,0.000499716,29,58033,,,2001.137931,0.000568642,33,58033,,,1758.575758,3697,,,,,,,5473,,3486,0.34,,,,,,0.45,0.42,,0.33,0.43,,,,,,0.21,0.37,,0.44,0.863817803,35274,40835,0.84787443,0.879761176,0.555315315,7705,13875,0.488190279,0.622440351,0.030282694,722,23842,,,0.268,3223,,0.210808511,0.325191489,,,,,,,0.571358268,0.461650719,0.681065816,0.490753912,0.278988673,0.702519151,0.156261023,0.106895379,0.205626667,4.714694237,107165,22730,4.071739377,5.357649096,0.328012703,3925,11966,0.259832131,0.396193274,15.83324634,91,57474,,,80.39280719,223,277388,69.8411461,90.94446828,,,,,,,72.01854478,49.26063131,101.6686969,,,,87.48703896,75.01409741,99.95998051,,,,8.1,,,,,1,,,,,0.109199358,2380,21795,0.088470877,0.129927839,0.098225128,0.07842762,0.118022637,0.005001147,0.002279064,0.00772323,0.008947006,0.002693624,0.015200388,0.853740822,21510,25195,0.825891303,0.88159034,,,,,,,0.910675381,0.869699017,0.951651746,,,,0.849976948,0.823564451,0.876389445,0.232,,25195,0.202093854,0.261906146,73.54942602,,,72.79178067,74.30707138,,,,,,,69.74342461,67.69408314,71.79276608,,,,73.84145456,73.00565869,74.67725044,,,,570.2561012,1238,153622,536.6283748,603.8838276,,,,,,,734.8349462,638.7129261,830.9569663,,,,556.6109935,519.2367138,593.9852732,,,,74.17094451,38,51233,52.48777477,101.8054163,,,,,,,152.6896876,81.30082794,261.104016,,,,62.16552246,39.40760862,93.27880668,,,,8.779828906,39,4442,6.243316634,12.00231514,,,,,,,,,,,,,7.058823529,4.522721428,10.50296988,,,,,,,0.126,,,0.108,0.148,0.191,,,0.165,0.22,0.109,,,0.092,0.128,137.2,67,48822,,,0.149,8480,,,,0.088293033,4805.613205,54428,,,17.24896804,29,168126,11.55190461,24.77239537,,,,,,,,,,,,,18.41465193,11.79861495,27.39954239,,,,0.372,,,0.358,0.386,0.132027512,4415,33440,0.111772193,0.152282831,0.040569395,513,12645,0.027463012,0.053675778,0.001602537,93,58033,,,624.0107527,0.914035917,483.525,529,,,,,,,,3.015519633,,,,,,,2.612710623,2.666743829,3.151360029,2.896152953,,,,,,,2.507863088,2.929025671,2.992078436,0.066770427,,,,,-5102.991225,,,,,0.699939158,37964,54239,0.609274951,0.790603365,54593,,,47864.65957,61321.34043,95463,26459.08511,164466.9149,,,,32984,29478.6383,36489.3617,35234,12534.93617,57933.06383,63913,58534.61702,69291.38298,,,,,,0.413485182,3195,7727,,,25.88179164,,,,,0.291062957,,54593,,,7.228158391,23,3182,,,4.922815436,19,385958,2.963856473,7.687586103,,,,,,,16.16971735,7.754007982,29.73668592,,,,,,,,,,18.43937606,52,277388,13.59574028,24.44793748,18.74630482,,,,,,,,,,,,,22.12810139,16.07831235,29.70594328,,,,20.54883412,57,277388,15.5634863,26.62339806,,,,,,,22.50579524,10.79240361,41.38895875,,,,21.75603614,15.98551704,28.93091595,,,,24.09588608,93,385958,19.44848992,29.51908835,,,,,,,19.40366082,10.02615469,33.89429055,,,,26.54191964,21.04609157,33.03371652,,,,16.03773585,,5300,,,77,8,0.648285482,27886,43015,,,0.662,,,,,64.61249959,,,,,0.710048999,16520,23266,0.684822108,0.735275889,0.106978859,2353,21995,0.08232397,0.131633748,0.758918594,17657,23266,0.736043243,0.781793945,58033,,,,,0.210638775,12224,58033,,,0.206520428,11985,58033,,,0.155032482,8997,58033,,,0.006858167,398,58033,,,0.007512967,436,58033,,,0.000672031,39,58033,,,0.03522134,2044,58033,,,0.774593766,44952,58033,,,0.009147694,495,54112,0.002824869,0.015470519,0.517722675,30045,58033,,,0.402956646,23060,57227,, +01,035,01035,AL,Conecuh County,2024,1,17561.03564,370,31589,14534.86871,20587.20256,0,,,,2,,,,2,21316.38863,16570.59386,26062.18339,,,,,2,15369.65385,10991.73594,19747.57175,,,,,2,,0.245,,,0.214,0.28,4.802045747,,,3.858674185,5.798336971,6.107159828,,,4.929118308,7.343508091,0.14380531,130,904,0.120931127,0.166679492,0,,,,,,,0.190909091,0.154185791,0.227632391,,,,0.094763092,0.066095935,0.123430249,,,,,,,0.225,,,0.188,0.269,0.453,,,0.367,0.537,6.8,0.132889727,0.127,,,0.378,,,0.322,0.441,0.374062258,4338,11597,,,0.118530764,,,0.09223664,0.148540102,0.125,3,24,0.040232942,0.245512437,556.1,63,11328,,,29.32298405,68,2319,22.77044448,37.17386941,,,,,,,27.57078987,19.41238045,38.00270204,,,,30.23255814,19.74891072,44.29770242,,,,,,,0.11498754,969,8427,0.098306689,0.131668391,0.000441384,5,11328,,,2265.6,0.000178476,2,11206,,,5603,0.000713903,8,11206,,,1400.75,7136,,,,,,,9831,,6349,0.29,,,,,,,0.29,,0.3,0.39,,,,,,,0.32,,0.43,0.894297304,7496,8382,0.858319146,0.930275462,0.467908082,1181,2524,0.33891889,0.596897275,0.035360679,150,4242,,,0.439,972,,0.312702128,0.565297872,,,,,,,0.445112782,0.262442242,0.627783322,,,,0.210472279,0.074022227,0.346922332,5.047994435,87088,17252,3.396833779,6.699155092,0.52660473,1247,2368,0.326224907,0.726984552,7.062146893,8,11328,,,116.6822243,70,59992,90.95951812,147.4209709,,,,,,,113.411868,77.05786193,160.9790938,,,,126.3717991,89.42820634,173.4551677,,,,9.2,,,,,0,,,,,0.080697928,370,4585,0.047986105,0.113409751,0.069988675,0.036954742,0.103022608,0.00436205,0,0.016653838,0.0087241,0,0.020034388,0.875818777,3209,3664,0.83602226,0.915615294,,,,,,,0.877206447,0.538247135,1,,,,0.889460154,0.826021863,0.952898445,0.385,,3664,0.287625354,0.482374646,69.45270431,,,67.53606331,71.3693453,,,,,,,66.8494145,64.03934797,69.65948103,,,,70.89261405,68.04805525,73.73717285,,,,783.6504637,370,31589,695.6875625,871.6133649,,,,,,,927.9872599,785.0597054,1070.914814,,,,697.8015475,580.4823448,815.1207503,,,,140.291807,15,10692,78.52025938,231.3900007,,,,,,,181.78513,87.17303574,334.3093263,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.146,,,0.126,0.168,0.2,,,0.174,0.229,0.148,,,0.127,0.169,298.9,29,9701,,,0.127,1490,,,,0.132889727,1757.865313,13228,,,,,,,,,,,,,,,,,,,,,,,,,,0.433,,,0.418,0.446,0.14153058,884,6246,0.118892282,0.164168877,0.040487593,93,2297,0.02618972,0.054785465,0.00044619,5,11206,,,2241.2,0.925,142.45,154,,,,,,,,2.267557265,,,,,,,2.219608402,,3.072794665,2.333427736,,,,,,,2.140246582,,3.043288059,0.163232174,,,,,-20956.34,,,,,0.708752012,32587,45978,0.402535752,1.014968271,36106,,,30730,41482,,,,,,,36496,29343.48936,43648.51064,,,,51672,45284.42553,58059.57447,,,,,,0.708526107,1072,1513,,,19.12876132,,,,,0.413393896,,36106,,,3.937007874,2,508,,,18.81047273,16,85059,10.75181045,30.54702924,,,,,,,30.83485366,15.93281884,53.86228396,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,33.33777837,20,59992,20.36358112,51.48749484,,,,,,,40.2429209,20.08912112,72.00570174,,,,,,,,,,28.2157091,24,85059,18.07833722,41.98273856,,,,,,,30.83485366,15.93281884,53.86228396,,,,25.77561159,12.86709243,46.11968908,,,,,,1100,,,-888,0,0.666080662,6441,9670,,,0.474,,,,,11.00192316,,,,,0.746912194,3326,4453,0.704718485,0.789105903,0.099753695,405,4060,0.05502093,0.144486459,0.666741523,2969,4453,0.603595869,0.729887176,11206,,,,,0.201945386,2263,11206,,,0.246564341,2763,11206,,,0.444583259,4982,11206,,,0.006692843,75,11206,,,0.003747992,42,11206,,,0.00044619,5,11206,,,0.033374978,374,11206,,,0.494378012,5540,11206,,,0,0,11111,0,0.008578809,0.518293771,5808,11206,,,1,11597,11597,, +01,037,01037,AL,Coosa County,2024,1,13936.01292,269,28581,11031.63525,16840.39058,0,,,,2,,,,2,22840.75982,15519.18814,32420.63536,,,,,2,9734.985082,7176.07091,12293.89925,,,,,2,,0.202,,,0.175,0.231,4.34814927,,,3.492251879,5.333637287,5.876892692,,,4.755441391,7.096858992,0.118136439,71,601,0.092330987,0.143941891,0,,,,,,,0.206451613,0.142730101,0.270173124,,,,0.086046512,0.059540125,0.112552898,,,,,,,0.199,,,0.164,0.237,0.39,,,0.312,0.472,7.4,0.077172192,0.127,,,0.333,,,0.282,0.386,0.040531434,421,10387,,,0.133543229,,,0.105917135,0.165575017,0.318181818,7,22,0.204127461,0.433005911,851.7,89,10450,,,28.40236686,48,1690,20.94166321,37.65741786,,,,,,,20.44293015,10.56316032,35.70968492,,,,33.17073171,22.97169599,46.35277278,,,,,,,0.114128296,870,7623,0.096255956,0.132000636,,0,10450,,,,,0,10166,,,,0.000196734,2,10166,,,5083,2862,,,,,,,2734,,2721,0.33,,,,,,,0.43,,0.31,0.36,,,,,,,0.27,,0.38,0.834886321,6720,8049,0.799202877,0.870569766,0.409621672,877,2141,0.288285706,0.530957638,0.025342005,113,4459,,,0.312,520,,0.204765957,0.419234043,,,,,,,0.596153846,0.353184776,0.839122917,,,,0.068821689,0,0.141298474,3.954171473,102848,26010,3.172551153,4.735791792,0.349819059,580,1658,0.221266295,0.478371823,9.56937799,10,10450,,,105.1998798,56,53232,79.46685862,136.6107943,,,,,,,131.2417974,81.2407411,200.6170285,,,,100.2491909,69.82723456,139.4223566,,,,9.6,,,,,0,,,,,0.092154421,370,4015,0.055810123,0.128498719,0.053952321,0.023607467,0.084297176,0.02988792,0.005828084,0.053947756,0.01369863,0.000786124,0.026611137,0.786289276,3028,3851,0.724972331,0.84760622,,,,,,,,,,,,,0.688536953,0.543059566,0.83401434,0.405,,3851,0.31559859,0.49440141,73.06542735,,,71.03240323,75.09845146,,,,,,,69.09384703,64.06174556,74.1259485,,,,75.21548624,73.26246104,77.16851144,,,,612.6684021,269,28581,529.173089,696.1637152,,,,,,,828.7938094,639.6455647,1056.365745,,,,520.8904546,433.7344383,608.046471,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.13,,,0.113,0.148,0.19,,,0.165,0.216,0.12,,,0.104,0.138,205.2,19,9259,,,0.127,1320,,,,0.077172192,890.4899277,11539,,,,,,,,,,,,,,,,,,,,,,,,,,0.415,,,0.401,0.429,0.133868809,800,5976,0.111230511,0.156507106,0.044982699,78,1734,0.029493337,0.060472061,0.000393468,4,10166,,,2541.5,,,,,,,,,,,2.481397373,,,,,,,2.320856395,,2.775466747,2.3088048,,,,,,,2.180291959,,2.381167956,0.00542389,,,,,-14096.71,,,,,0.520596079,28891,55496,0.389850436,0.651341722,49485,,,42394.44681,56575.55319,,,,,,,34764,27646.04255,41881.95745,,,,66026,54985.65957,77066.34043,,,,,,0.634517767,500,788,,,52.99866831,,,,,0.250580984,,49485,,,4.301075269,2,465,,,17.44100246,13,74537,9.286599261,29.82464537,,,,,,,44.49586189,21.33749531,81.82947425,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,26.29996994,14,53232,14.3784383,44.12688068,,,,,,,,,,,,,,,,,,,37.56523606,28,74537,24.96182655,54.29222526,,,,,,,44.49586189,21.33749531,81.82947425,,,,36.79702353,21.80824822,58.15516133,,,,8.75,,800,,,7,0,0.617004505,5479,8880,,,0.376,,,,,7.286901491,,,,,0.812453113,3249,3999,0.772118872,0.852787354,0.025448701,95,3733,0.00178138,0.049116022,0.784696174,3138,3999,0.729829423,0.839562925,10166,,,,,0.165945308,1687,10166,,,0.259492426,2638,10166,,,0.283297265,2880,10166,,,0.008066103,82,10166,,,0.002065709,21,10166,,,0.002065709,21,10166,,,0.028034625,285,10166,,,0.665453472,6765,10166,,,0,0,9865,0,0.009662357,0.49695062,5052,10166,,,1,10387,10387,, +01,039,01039,AL,Covington County,2024,1,13973.73487,1026,100920,12588.63894,15358.8308,0,,,,2,,,,2,20152.0876,15788.71738,24515.45782,,,,,2,13550.13675,12020.81126,15079.46225,,,,,2,,0.206,,,0.174,0.239,4.474960374,,,3.597904134,5.402067274,5.809788739,,,4.692517481,6.921266945,0.0965471,288,2983,0.085948419,0.107145781,0,,,,,,,0.185542169,0.148140788,0.22294355,,,,0.084193149,0.073136598,0.0952497,,,,,,,0.218,,,0.175,0.264,0.402,,,0.325,0.482,6.9,0.05480485,0.159,,,0.317,,,0.262,0.374,0.582193239,21873,37570,,,0.134685166,,,0.105248344,0.167952087,0.195652174,9,46,0.122198462,0.27844662,474.4,178,37524,,,37.42658107,274,7321,32.99497707,41.85818507,,,,,,,26.50822669,17.75297545,38.07023532,58.13953488,27.88016684,106.9206747,37.96151846,32.93372314,42.98931379,,,,73.52941177,41.15385359,121.2755827,0.131951119,3844,29132,0.115270268,0.14863197,0.000479693,18,37524,,,2084.666667,0.000372321,14,37602,,,2685.857143,0.00079783,30,37602,,,1253.4,4800,,,,,,,6901,,4707,0.42,,,,,,,0.45,,0.42,0.34,,,,,,,0.26,,0.35,0.857564185,22680,26447,0.83682096,0.87830741,0.513529766,4270,8315,0.45619888,0.570860651,0.026333157,399,15152,,,0.25,2023,,0.168978723,0.331021277,,,,,,,0.444863337,0.33382048,0.555906193,0.22519084,0.003628109,0.44675357,0.250956633,0.19082986,0.311083405,5.784775435,103426,17879,4.918932341,6.650618529,0.335198249,2756,8222,0.266120133,0.404276365,12.25882102,46,37524,,,100.2257774,186,185581,85.82191274,114.6296421,,,,,,,90.8933518,56.26441735,138.9401434,,,,105.1333636,88.94365161,121.3230756,,,,9.1,,,,,0,,,,,0.125041681,1875,14995,0.103240566,0.146842795,0.092790618,0.073260527,0.112320708,0.021340447,0.013018785,0.029662109,0.016672224,0.006162116,0.027182333,0.874598071,13056,14928,0.851191926,0.898004216,,,,,,,0.894864048,0.805793547,0.98393455,,,,0.881032839,0.849728818,0.912336861,0.264,,14928,0.227605899,0.300394101,71.32917648,,,70.39771405,72.2606389,,,,,,,66.78465446,64.37500096,69.19430797,,,,71.57657545,70.54048185,72.61266905,,,,700.1020639,1026,100920,654.0403899,746.1637378,,,,,,,978.4533348,816.1812668,1140.725403,,,,682.7979092,633.3839613,732.2118571,,,,78.87768325,28,35498,52.41364769,114.0002139,,,,,,,,,,,,,90.3375009,58.46166744,133.355972,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.137,,,0.117,0.157,0.198,,,0.17,0.227,0.118,,,0.1,0.137,164,52,31715,,,0.159,5960,,,,0.05480485,2069.705147,37765,,,17.93673713,20,111503,10.95622502,27.70183574,,,,,,,,,,,,,17.31864135,9.899099922,28.12438854,,,,0.375,,,0.358,0.391,0.163585247,3433,20986,0.140946949,0.186223545,0.052023796,446,8573,0.035342945,0.068704647,0.001196745,45,37602,,,835.6,0.950188917,377.225,397,,,,,,,,2.934725219,,,,,,,2.453613763,,3.076250452,2.668121746,,,,,,,2.124031015,,2.811695541,0.084715404,,,,,-8223.349,,,,,0.748628299,37385,49938,0.65693493,0.840321668,46958,,,42529.23404,51386.76596,30536,25051.57447,36020.42553,,,,29645,20620.65957,38669.34043,46898,43196.04255,50599.95745,53916,49692.17021,58139.82979,,,,,,0.478388998,2922,6108,,,38.55225219,,,,,0.294795349,,46958,,,5.660377359,12,2120,,,6.133229068,16,260874,3.505670344,9.959979759,,,,,,,,,,,,,,,,,,,19.8489984,37,185581,13.74600841,27.73698575,19.93738583,,,,,,,,,,,,,22.57551016,15.33896387,32.04413464,,,,22.63162716,42,185581,16.31088621,30.59138531,,,,,,,,,,,,,22.06502693,15.28067258,30.83366351,,,,24.53291627,64,260874,18.89333492,31.32798639,,,,,,,,,,,,,27.24141434,20.73742676,35.13943973,,,,11.08108108,,3700,,,35,6,0.603427385,17430,28885,,,0.572,,,,,17.76794017,,,,,0.749753417,10642,14194,0.724351181,0.775155653,0.102540766,1352,13185,0.080947958,0.124133574,0.777300268,11033,14194,0.750850572,0.803749964,37602,,,,,0.219722355,8262,37602,,,0.224775278,8452,37602,,,0.124993351,4700,37602,,,0.007978299,300,37602,,,0.005372055,202,37602,,,0.000239349,9,37602,,,0.02143503,806,37602,,,0.823652997,30971,37602,,,0.00076282,27,35395,0,0.004187321,0.513802457,19320,37602,,,0.688155443,25854,37570,, +01,041,01041,AL,Crenshaw County,2024,1,13537.57683,375,37392,11307.93464,15767.21902,0,,,,2,,,,2,15718.79319,11177.59857,21488.10775,,,,,2,13530.35285,10864.90665,16195.79905,,,,,2,,0.215,,,0.184,0.248,4.421192249,,,3.503111684,5.395340949,5.955555856,,,4.764974822,7.162165642,0.100189036,106,1058,0.082096519,0.118281552,0,,,,,,,0.179856115,0.134707825,0.225004405,,,,0.075524476,0.056156037,0.094892914,,,,,,,0.209,,,0.169,0.249,0.382,,,0.3,0.463,6.6,0.135061835,0.133,,,0.358,,,0.3,0.418,0.148249204,1956,13194,,,0.137033018,,,0.107422167,0.170657956,0.315789474,6,19,0.192486042,0.440144871,825.5,108,13083,,,24.16488984,68,2814,18.7649825,30.63475592,,,,,,,24.86910995,14.97282875,38.83619577,,,,24.03058438,17.4606594,32.25993789,,,,,,,0.13647239,1426,10449,0.11740856,0.15553622,0.000229305,3,13083,,,4361,0.000230326,3,13025,,,4341.666667,0.000690979,9,13025,,,1447.222222,3895,,,,,,,6879,,3492,0.4,,,,,,,0.48,,0.38,0.31,,,,,,,0.28,,0.32,0.820725842,7508,9148,0.791762732,0.849688951,0.479561316,1443,3009,0.394657176,0.564465456,0.026267358,157,5977,,,0.283,841,,0.185297872,0.380702128,,,,,,,0.157894737,0.046242141,0.269547333,0.292517007,0,0.628037123,0.117461982,0.069025759,0.165898205,5.97095785,99303,16631,4.760925023,7.180990677,0.271854305,821,3020,0.184757193,0.358951416,11.46526026,15,13083,,,101.1270537,69,68231,78.68288396,127.9827587,,,,,,,99.89386277,57.09797374,162.2213748,,,,108.1440812,80.76717245,141.8165746,,,,9.1,,,,,0,,,,,0.099800399,500,5010,0.067894146,0.131706653,0.087640449,0.056699047,0.118581852,0.010778443,0.001121205,0.020435681,0.006986028,0,0.01436568,0.785686428,4029,5128,0.724087916,0.847284939,,,,,,,0.75,0.663031606,0.836968394,,,,0.760409058,0.677951334,0.842866782,0.464,,5128,0.389486652,0.538513348,70.94218674,,,69.44233745,72.44203604,,,,,,,69.55394724,66.45647849,72.651416,,,,70.7474378,68.96954376,72.52533183,,,,699.1352016,375,37392,623.4830353,774.7873679,,,,,,,797.8936008,636.4311844,987.8465704,,,,699.6654901,610.6533464,788.6776338,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.136,,,0.117,0.156,0.195,,,0.17,0.222,0.122,,,0.103,0.141,245.5,27,10998,,,0.133,1770,,,,0.135061835,1878.169873,13906,,,,,,,,,,,,,,,,,,,,,,,,,,0.407,,,0.391,0.422,0.168109764,1262,7507,0.143088488,0.193131041,0.057910062,179,3091,0.040037721,0.075782402,0.000998081,13,13025,,,1001.923077,0.875,144.375,165,,,0.190713101,115,603,0.064151783,0.317274419,2.79990848,,,,,,,2.60458411,,2.888942206,2.553168923,,,,,,,2.388412657,,2.641371346,0.029542978,,,,,-8255.205,,,,,0.775074247,36537,47140,0.682043742,0.868104752,49161,,,43143.97872,55178.02128,,,,175221,90599.04255,259842.9575,25502,22225.40426,28778.59575,51462,39008.55319,63915.44681,58327,51013.6383,65640.3617,,,,,,0.640888889,1442,2250,,,23.6618939,,,,,0.220154187,,49161,,,6.887052342,5,726,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,21.98414211,15,68231,12.30435745,36.25949916,,,,,,,,,,,,,22.87663256,11.41993255,40.93261483,,,,31.21520805,30,96107,21.06076979,44.56165045,,,,,,,,,,,,,33.9563587,21.5254186,50.95121046,,,,7.333333333,,1500,,,11,0,0.625129901,6617,10585,,,0.541,,,,,15.10054285,,,,,0.745815251,3609,4839,0.713259939,0.778370563,0.102104098,461,4515,0.067702676,0.136505519,0.651994214,3155,4839,0.610718369,0.693270059,13025,,,,,0.232015355,3022,13025,,,0.198234165,2582,13025,,,0.230019194,2996,13025,,,0.007754319,101,13025,,,0.014510557,189,13025,,,0.00084453,11,13025,,,0.028637236,373,13025,,,0.695201536,9055,13025,,,0.005281268,66,12497,0,0.014428132,0.510633397,6651,13025,,,1,13194,13194,, +01,043,01043,AL,Cullman County,2024,1,11749.94179,1873,238095,10926.49649,12573.38708,0,,,,2,,,,2,,,,2,9230.973589,6029.978423,13525.51508,,11927.36467,11064.99085,12789.73849,,,,,2,,0.182,,,0.15,0.213,4.263949112,,,3.369486674,5.268233362,5.528469227,,,4.423984743,6.803348167,0.086704364,598,6897,0.080063079,0.093345649,0,,,,0.196078431,0.087111998,0.305044865,,,,0.056034483,0.035107683,0.076961283,0.087291399,0.080283398,0.0942994,,,,0.152777778,0.069674417,0.235881138,0.189,,,0.149,0.231,0.377,,,0.303,0.457,7.5,0.028437443,0.144,,,0.3,,,0.245,0.357,0.486536317,42750,87866,,,0.157677892,,,0.124262356,0.194766136,0.245614035,28,114,0.197858353,0.295495754,235.8,211,89496,,,30.70660076,528,17195,28.08738755,33.32581397,,,,,,,,,,32.06562267,23.20605012,43.1921833,31.14601358,28.3241526,33.96787455,,,,,,,0.121435778,8786,72351,0.107137906,0.135733651,0.000480468,43,89496,,,2081.302326,0.000485303,44,90665,,,2060.568182,0.001599294,145,90665,,,625.2758621,3896,,,,,,,13632,,3851,0.47,,,,,,0.36,,0.27,0.47,0.47,,,,,,0.5,0.31,0.25,0.47,0.846131339,52054,61520,0.830934997,0.861327682,0.593229069,12669,21356,0.543434813,0.643023326,0.020642144,812,39337,,,0.183,3610,,0.135340426,0.230659575,,,,,,,0.057591623,0,0.259885511,0.34171155,0.207508612,0.475914488,0.145749705,0.116668605,0.174830805,4.424696389,110759,25032,3.973348867,4.87604391,0.195998575,3850,19643,0.158248575,0.233748574,9.721104854,87,89496,,,101.1849727,429,423976,91.60986996,110.7600755,,,,,,,,,,52.47415648,25.16339768,96.50184206,106.4103223,96.15994955,116.6606951,,,,9.4,,,,,0,,,,,0.108870332,3455,31735,0.093943565,0.1237971,0.0793727,0.06623058,0.092514819,0.019536789,0.012629752,0.026443826,0.01291949,0.007228598,0.018610381,0.851982106,32947,38671,0.835421386,0.868542825,,,,,,,,,,0.490727532,0.380335333,0.601119731,0.870612591,0.855019975,0.886205206,0.335,,38671,0.305046422,0.364953578,72.94814915,,,72.3637352,73.5325631,,,,,,,,,,92.63157301,67.00038676,118.2627593,72.70730639,72.10735916,73.30725361,,,,581.7433498,1873,238095,553.9501797,609.5365199,,,,,,,,,,369.9406484,241.6575138,542.0487634,596.1740846,567.044576,625.3035932,,,,51.48529077,43,83519,37.26016022,69.3503488,,,,,,,,,,,,,47.01327434,32.55805916,65.69633863,,,,5.036695928,35,6949,3.508243258,7.004824776,,,,,,,,,,,,,4.450095359,2.957056048,6.431626819,,,,,,,0.127,,,0.108,0.147,0.188,,,0.161,0.215,0.103,,,0.087,0.12,108.8,82,75375,,,0.144,12570,,,,0.028437443,2286.541018,80406,,,24.82746849,64,257779,19.12017602,31.70412299,,,,,,,,,,,,,26.25049749,20.1261059,33.65195307,,,,0.358,,,0.339,0.373,0.150447534,7900,52510,0.131383704,0.169511364,0.04791887,997,20806,0.034812487,0.061025253,0.001102962,100,90665,,,906.65,0.954983203,852.8,893,,,0.096505073,428,4435,0.050547079,0.142463068,3.119827164,,,,,,,,2.624649165,3.192453907,2.99585269,,,,,,,,2.723462714,3.041554518,0.048358912,,,,,204.133,,,,,0.687739248,36651,53292,0.631272704,0.744205792,61774,,,56606.51064,66941.48936,51563,41415.08511,61710.91489,,,,63594,27528.80851,99659.19149,52172,24508,79836,57943,55369.38298,60516.61702,,,,,,0.361850248,4678,12928,,,79.86740496,,,,,0.265694305,,61774,,,4.725897921,25,5290,,,3.908560087,23,588452,2.477691815,5.864759215,,,,,,,,,,,,,3.699791517,2.259928776,5.714027927,,,,21.58067114,92,423976,17.26175131,26.6519533,21.69934147,,,,,,,,,,,,,22.1709496,17.60693426,27.556466,,,,17.45381814,74,423976,13.70500128,21.91167035,,,,,,,,,,,,,18.76317278,14.70733227,23.59187277,,,,24.30104749,143,588452,20.31802236,28.28407263,,,,,,,,,,,,,25.34357189,21.09968685,29.58745693,,,,10.70588235,,8500,,,79,12,0.657827727,41851,63620,,,0.645,,,,,24.04586278,,,,,0.761984011,25640,33649,0.742708754,0.781259269,0.086512578,2796,32319,0.072140105,0.100885051,0.845195994,28440,33649,0.829245403,0.861146585,90665,,,,,0.221518778,20084,90665,,,0.191099101,17326,90665,,,0.012551701,1138,90665,,,0.006728065,610,90665,,,0.007025864,637,90665,,,0.000926488,84,90665,,,0.047989853,4351,90665,,,0.913946948,82863,90665,,,0.007808834,649,83111,0.004083351,0.011534317,0.500755529,45401,90665,,,0.755992079,66426,87866,, +01,045,01045,AL,Dale County,2024,1,11921.22441,1004,136668,10834.24285,13008.20598,0,,,,2,,,,2,13082.07835,10695.86305,15468.29364,,6522.871931,3728.384907,10592.73536,1,12405.44973,11039.04994,13771.84953,,,,,2,,0.206,,,0.176,0.238,4.274028571,,,3.430406194,5.249483287,5.987064553,,,4.939780716,7.126745514,0.087585034,412,4704,0.079506481,0.095663587,0,,,,,,,0.13122172,0.111313507,0.151129932,0.093506494,0.064424181,0.122588806,0.069565217,0.060445959,0.078684476,,,,0.104477612,0.052686705,0.156268519,0.203,,,0.165,0.247,0.389,,,0.317,0.468,6.5,0.087955021,0.161,,,0.345,,,0.291,0.406,0.444694482,21935,49326,,,0.151701998,,,0.120945469,0.189592517,0.255319149,12,47,0.17955074,0.335385166,620.2,306,49342,,,34.39927368,341,9913,30.74813647,38.0504109,,,,,,,42.28083786,34.34328908,50.21838664,33.91959799,22.35322881,49.35123423,31.4232902,26.91940903,35.92717138,,,,42.65402844,25.27948052,67.41175419,0.114615771,4564,39820,0.09793492,0.131296622,0.000283734,14,49342,,,3524.428571,0.000343129,17,49544,,,2914.352941,0.001332149,66,49544,,,750.6666667,3253,,,,,,,3687,,3258,0.42,,,,,,0.47,0.49,0.56,0.41,0.37,,,,,,0.45,0.34,0.15,0.38,0.856621249,28857,33687,0.840289526,0.872952971,0.592920354,7638,12882,0.541968384,0.643872324,0.026220787,552,21052,,,0.303,3433,,0.236276596,0.369723404,,,,,,,0.515393387,0.428917731,0.601869042,0.253617021,0.117356705,0.389877338,0.225422195,0.16549603,0.285348361,5.001845108,103013,20595,4.44162833,5.562061886,0.295310854,3363,11388,0.248000894,0.342620813,10.13335495,50,49342,,,83.04329242,204,245655,71.64747331,94.43911153,,,,,,,83.28706274,60.025989,112.5799135,,,,87.43090862,73.248675,101.6131423,,,,9.1,,,,,0,,,,,0.122133471,2370,19405,0.104075549,0.140191393,0.111843841,0.092250722,0.131436959,0.009018294,0.004038456,0.013998133,0.008245298,0.003992518,0.012498077,0.83281906,16464,19769,0.808289447,0.857348674,,,,,,,0.867148416,0.842179057,0.892117775,0.829249012,0.704130795,0.954367229,0.885348688,0.853932421,0.916764956,0.289,,19769,0.254405747,0.323594253,73.31226561,,,72.51140159,74.11312963,,,,,,,71.2861126,69.5904928,72.98173239,88.39509676,77.35666921,99.43352431,72.90047184,71.93968145,73.86126224,,,,580.537396,1004,136668,542.9330615,618.1417306,,,,,,,672.8122108,581.8845376,763.7398841,258.8869225,155.866839,404.2839984,599.6000759,553.8929439,645.307208,,,,64.86793294,32,49331,44.36961811,91.57416651,,,,,,,,,,,,,71.49909775,44.25906842,109.2939659,,,,7.735281478,36,4654,5.41769605,10.70889009,,,,,,,,,,,,,,,,,,,,,,0.132,,,0.114,0.152,0.194,,,0.168,0.222,0.123,,,0.105,0.142,333.9,137,41024,,,0.161,7970,,,,0.087955021,4419.827767,50251,,,12.88371431,19,147473,7.756837634,20.11951582,,,,,,,,,,,,,10.02596726,4.807841004,18.43811075,,,,0.375,,,0.361,0.388,0.145610353,4163,28590,0.122972055,0.168248651,0.037891689,445,11744,0.025976796,0.049806583,0.000787179,39,49544,,,1270.358974,0.942913044,433.74,460,,,0.108021878,237,2194,0.056023945,0.16001981,2.898242053,,,,,,,2.365442731,2.462377966,3.170344538,2.746068748,,,,,,,2.35672462,2.272214979,3.0211197,0.085282485,,,,,-7530.919667,,,,,0.727634396,36031,49518,0.660277726,0.794991066,50567,,,44441.55319,56692.44681,45598,17084.46809,74111.53192,,,,36777,31869.25532,41684.74468,59620,34495.06383,84744.93617,58898,54929.14894,62866.85106,,,,,,0.602953107,3716,6163,,,31.68927915,,,,,0.20719046,,50567,,,4.049844237,13,3210,,,6.387067929,22,344446,4.002741467,9.670097602,,,,,,,15.71293889,7.843842481,28.11478804,,,,4.244247983,2.03528188,7.805323154,,,,22.94617021,56,245655,17.23786928,29.93977468,22.79619792,,,,,,,,,,,,,30.23650989,22.21665016,40.20814823,,,,25.64572266,63,245655,19.70687745,32.81201982,,,,,,,23.79630364,12.29589734,41.56735355,,,,28.14556647,20.68030359,37.42763676,,,,23.8063441,82,344446,18.93389195,29.5499501,,,,,,,28.5689798,17.45067506,44.12247222,,,,23.34336391,17.58541633,30.38459677,,,,,,4800,,,36,-888,0.529310807,19738,37290,,,0.58,,,,,25.14589534,,,,,0.601494845,11669,19400,0.576389217,0.626600474,0.108302663,2001,18476,0.087451869,0.129153457,0.827164949,16047,19400,0.804563567,0.84976633,49544,,,,,0.232217827,11505,49544,,,0.181596157,8997,49544,,,0.20902632,10356,49544,,,0.009062651,449,49544,,,0.013583885,673,49544,,,0.001856935,92,49544,,,0.073348942,3634,49544,,,0.668819635,33136,49544,,,0.009088548,420,46212,0.00387514,0.014301957,0.509607622,25248,49544,,,0.504520942,24886,49326,, +01,047,01047,AL,Dallas County,2024,1,17680.34363,1046,102454,16059.67515,19301.01212,0,,,,2,,,,2,19738.69577,17735.49434,21741.89721,,,,,2,13067.9402,10305.39064,15830.48976,,,,,2,,0.266,,,0.229,0.305,4.865822246,,,3.925421019,5.943734413,6.157573283,,,5.022439138,7.396157731,0.1434375,459,3200,0.131292655,0.155582345,0,,,,,,,0.1588,0.144472812,0.173127188,,,,0.086261981,0.064268728,0.108255234,,,,,,,0.221,,,0.179,0.266,0.446,,,0.371,0.524,6.5,0.087671298,0.161,,,0.381,,,0.321,0.443,0.564661224,21718,38462,,,0.112020941,,,0.087436355,0.14121806,0.303571429,17,56,0.234106513,0.374290436,866.6,326,37619,,,32.89770167,292,8876,29.12432462,36.67107872,,,,,,,35.77561534,31.34082412,40.21040656,,,,25.57856273,18.43477816,34.5747861,,,,,,,0.107564359,3117,28978,0.092074998,0.123053721,0.000717722,27,37619,,,1393.296296,0.000353578,13,36767,,,2828.230769,0.000707156,26,36767,,,1414.115385,4280,,,,,,,5442,,3021,0.4,,,,,,,0.36,,0.45,0.35,,,,,,,0.28,,0.43,0.853101909,22167,25984,0.831508604,0.874695214,0.528275378,4512,8541,0.449485554,0.607065201,0.050476398,694,13749,,,0.468,3924,,0.334553192,0.601446809,,,,,,,0.478741111,0.403373805,0.554108416,,,,0.208902077,0.092973341,0.324830813,5.487253487,79856,14553,4.454800127,6.519706848,0.578935649,5200,8982,0.490513083,0.667358216,13.82280231,52,37619,,,123.6480965,233,188438,107.7712024,139.5249905,,,,,,,129.1033733,109.7527212,148.4540255,,,,118.16839,90.17493048,152.1061416,,,,9.5,,,,,0,,,,,0.167099286,2575,15410,0.130879744,0.203318829,0.132725431,0.103129379,0.162321482,0.012005191,0.004903878,0.019106505,0.028552888,0.006457327,0.050648448,0.86447871,12222,14138,0.828243775,0.900713645,,,,,,,0.825420714,0.779044629,0.8717968,,,,0.864870644,0.822797288,0.906944,0.318,,14138,0.271212229,0.364787771,69.27831464,,,68.26407253,70.29255675,,,,,,,67.85707283,66.63610236,69.0780433,,,,72.36196332,70.5378363,74.18609034,,,,777.0686584,1046,102454,726.1973696,827.9399473,,,,,,,854.6587735,790.3367226,918.9808243,,,,632.5710915,547.1066228,718.0355603,,,,64.38984186,25,38826,41.66971063,95.05210863,,,,,,,73.75372959,46.22106967,111.6640329,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.15,,,0.129,0.173,0.204,,,0.176,0.234,0.163,,,0.14,0.187,415.1,131,31556,,,0.161,6320,,,,0.087671298,3841.756279,43820,,,9.016075663,10,110913,4.323558732,16.58088415,,,,,,,,,,,,,,,,,,,0.446,,,0.428,0.461,0.137316159,2857,20806,0.11586935,0.158762967,0.033433945,288,8614,0.021519051,0.045348838,0.000843147,31,36767,,,1186.032258,0.797559367,302.275,379,,,0.174634146,358,2050,0.083281242,0.265987051,2.482947088,,,,,,,2.437447223,,2.820877669,2.2260336,,,,,,,2.177184772,,2.67011431,0.222758919,,,,,-30630.09,,,,,0.700847993,32150,45873,0.606142511,0.795553476,35258,,,30565.91489,39950.08511,22227,3215.595745,41238.40426,,,,30015,26819.42553,33210.57447,43456,7048.851064,79863.14894,61397,54836.65957,67957.34043,,,,,,0.811390677,4160,5127,,,53.71239694,,,,,0.392620115,,35258,,,7.509386733,18,2397,,,38.57895889,104,269577,31.1643217,45.99359608,,,,,,,53.46348074,43.03664301,63.89031846,,,,,,,,,,14.06111183,25,188438,8.913538722,21.09857168,13.26696314,,,,,,,,,,,,,35.13121389,18.70589181,60.07544568,,,,45.6383532,86,188438,36.50479163,56.36299493,,,,,,,52.8493341,41.19864865,66.77195424,,,,31.51157066,18.01158534,51.17281654,,,,34.86944361,94,269577,28.17805985,42.67136801,,,,,,,38.11258033,29.82074684,47.99648731,,,,28.57376112,17.68760849,43.67802914,,,,16.5,,4000,,,57,9,0.621897302,17864,28725,,,0.518,,,,,33.66969422,,,,,0.614112384,9060,14753,0.584336933,0.643887835,0.166279239,2289,13766,0.13062365,0.201934827,0.75923541,11201,14753,0.722855316,0.795615504,36767,,,,,0.233796611,8596,36767,,,0.204449642,7517,36767,,,0.703701689,25873,36767,,,0.003127805,115,36767,,,0.00560285,206,36767,,,0.00048957,18,36767,,,0.01218484,448,36767,,,0.267223325,9825,36767,,,0.002386105,86,36042,0,0.006042305,0.533032339,19598,36767,,,0.448624617,17255,38462,, +01,049,01049,AL,DeKalb County,2024,1,11919.92556,1551,199780,11017.91701,12821.93412,0,,,,2,,,,2,18872.51414,9421.09106,33768.14092,1,6093.737143,4564.627281,7970.758219,,13319.97847,12215.36242,14424.59451,,,,,2,,0.231,,,0.196,0.267,4.803953154,,,3.841121432,5.838657074,6.183952805,,,5.057271341,7.442260565,0.084940073,489,5757,0.077738306,0.09214184,0,,,,,,,,,,0.068467337,0.056061522,0.080873152,0.089876294,0.080969397,0.098783191,,,,,,,0.222,,,0.179,0.267,0.41,,,0.336,0.489,,,0.161,,,0.35,,,0.293,0.408,0.425888169,30497,71608,,,0.141800813,,,0.112034453,0.176719166,0.218390805,19,87,0.164160125,0.276485866,260.4,187,71813,,,32.40885011,520,16045,29.6232548,35.19444541,,,,,,,35.84229391,17.1877731,65.91525463,51.87530443,44.90860734,58.84200152,26.07042636,23.05944573,29.08140699,,,,,,,0.195298189,11514,58956,0.175042869,0.215553508,0.000403827,29,71813,,,2476.310345,0.000291675,21,71998,,,3428.476191,0.000500014,36,71998,,,1999.944444,3215,,,,,,,1060,,3257,0.29,,,,,,,0.3,,0.3,0.37,,,,,,,0.35,0.22,0.37,0.777265682,37608,48385,0.758074432,0.796456931,0.507935595,8833,17390,0.460152235,0.555718956,0.023438002,730,31146,,,0.237,3970,,0.175042553,0.298957447,0.40234375,0.084065416,0.720622084,,,,0.28761062,0,0.583290803,0.573604061,0.506581283,0.640626839,0.202468697,0.158910164,0.246027231,4.814564527,95468,19829,4.358141595,5.270987459,0.210440362,3608,17145,0.169598333,0.251282391,8.772784872,63,71813,,,102.7973161,368,357986,92.29430225,113.3003299,,,,,,,,,,36.85209412,22.51021648,56.91507049,119.7923599,107.0962072,132.4885127,,,,7.5,,,,,0,,,,,0.10677034,2815,26365,0.089736388,0.123804291,0.078329484,0.063428549,0.09323042,0.029584677,0.018696492,0.040472861,0.005879006,0.00121871,0.010539302,0.821327171,24878,30290,0.789947185,0.852707157,,,,,,,,,,0.792827298,0.703167837,0.882486759,0.841450374,0.819228551,0.863672198,0.314,,30290,0.279344246,0.348655754,72.61479017,,,71.96644239,73.26313794,,,,,,,,,,82.59286257,74.54748365,90.63824149,71.55104753,70.80749462,72.29460043,,,,594.726427,1551,199780,563.823361,625.629493,,,,,,,832.2022053,557.3388778,1195.181185,356.8935096,253.7861738,487.8851764,645.1060176,609.5675537,680.6444814,,,,67.52373261,51,75529,50.27585409,88.78123817,,,,,,,,,,,,,80.91093876,58.06308659,109.7648246,,,,7.612456747,44,5780,5.531222726,10.21936787,,,,,,,,,,,,,7.934540045,5.427219517,11.20120309,,,,,,,0.151,,,0.13,0.174,0.207,,,0.179,0.235,0.125,,,0.107,0.145,110.1,66,59934,,,0.161,11500,,,,,,71109,,,24.18784654,52,214984,18.06464072,31.7191427,,,,,,,,,,,,,29.84969799,22.22506078,39.24684025,,,,0.37,,,0.354,0.383,0.251447911,10550,41957,0.224043656,0.278852166,0.059454028,1065,17913,0.041581687,0.077326368,0.00095836,69,71998,,,1043.449275,0.932545235,773.08,829,,,0.106398627,434,4079,0.05658998,0.156207274,2.651262829,,,,,,,,2.049436172,2.889557726,2.723096127,,,,,,,,2.396787866,2.847875379,0.165051343,,,,,-4147.9035,,,,,0.739441922,32409,43829,0.677014399,0.801869445,50037,,,46043.12766,54030.87234,50476,46445.19149,54506.80851,69688,44540.42553,94835.57447,,,,36992,25831.31915,48152.68085,50266,46604.55319,53927.44681,,,,,,0.65990099,7998,12120,,,75.62700655,,,,,0.231348802,,50037,,,2.8510335,12,4209,,,3.799878404,19,500016,2.287775024,5.933980827,,,,,,,,,,,,,3.49958005,1.913252979,5.871700676,,,,23.5352894,84,357986,18.63311026,29.3319928,23.46460476,,,,,,,,,,,,,28.30123541,22.22255695,35.5296094,,,,17.59845357,63,357986,13.52313493,22.51606691,,,,,,,,,,,,,21.36647355,16.34365926,27.44612914,,,,24.19922563,121,500016,19.8873636,28.51108765,,,,,,,,,,16.12166483,8.330299472,28.16130404,26.74679039,21.67879913,31.81478164,,,,7.590361446,,8300,,,63,0,0.588532478,29356,49880,,,0.525,,,,,13.27817685,,,,,0.738575321,18974,25690,0.713778333,0.763372309,0.102346397,2447,23909,0.0838065,0.120886293,0.828571429,21286,25690,0.806266647,0.85087621,71998,,,,,0.236728798,17044,71998,,,0.180616128,13004,71998,,,0.014680963,1057,71998,,,0.021042251,1515,71998,,,0.005305703,382,71998,,,0.006041835,435,71998,,,0.159921109,11514,71998,,,0.787910775,56728,71998,,,0.046588723,3148,67570,0.038533769,0.054643676,0.500055557,36003,71998,,,0.882973969,63228,71608,, +01,051,01051,AL,Elmore County,2024,1,9600.17905,1491,236866,8843.722016,10356.63608,0,,,,2,,,,2,12300.07054,10481.27612,14118.86497,,,,,2,9236.377465,8358.418605,10114.33633,,,,,2,,0.169,,,0.143,0.199,3.80462872,,,2.984727845,4.754442231,5.309149368,,,4.286365669,6.433978344,0.092088999,596,6472,0.085044302,0.099133696,0,,,,,,,0.154004107,0.13549518,0.172513034,0.095081967,0.062161965,0.128001969,0.071856287,0.064318291,0.079394284,,,,0.106557377,0.051805218,0.161309536,0.168,,,0.134,0.206,0.388,,,0.317,0.462,7.9,0.049842456,0.116,,,0.301,,,0.251,0.359,0.514509474,45265,87977,,,0.153994567,,,0.122534086,0.189250051,0.333333333,18,54,0.262974395,0.403753224,556.5,497,89304,,,20.88772846,368,17618,18.75358615,23.02187077,,,,,,,26.14379085,21.30189303,30.98568867,29.33333333,18.38304383,44.41101918,17.76393332,15.3670109,20.16085574,,,,42.76985743,26.47521585,65.37827034,0.117523774,8243,70139,0.102034413,0.133013136,0.000223954,20,89304,,,4465.2,0.000133984,12,89563,,,7463.583333,0.000279133,25,89563,,,3582.52,3726,,,,,,,5928,,3473,0.43,,,,,,0.28,0.45,,0.43,0.34,,,,,,0.4,0.29,0.3,0.34,0.885463421,54054,61046,0.874199516,0.896727326,0.53985431,12821,23749,0.495153888,0.584554731,0.02194382,839,38234,,,0.15,2837,,0.098765957,0.201234043,,,,,,,0.209954523,0.131347199,0.288561846,0.203665988,0.071761072,0.335570904,0.106337862,0.070795472,0.141880252,3.924535709,129961,33115,3.624148892,4.224922526,0.250052477,4765,19056,0.200322417,0.299782537,10.07793604,90,89304,,,70.39292707,293,416235,62.3326256,78.45322854,,,,,,,67.22114618,51.17185101,86.71038095,,,,74.98988623,65.25588622,84.72388625,,,,10,,,,,0,,,,,0.110085585,3280,29795,0.09077521,0.12939596,0.092033294,0.073439512,0.110627075,0.013089445,0.005425221,0.020753668,0.006041282,0.001320873,0.010761691,0.859924882,33427,38872,0.841794473,0.878055291,,,,,,,0.803786933,0.702323732,0.905250134,,,,0.794880062,0.780162727,0.809597397,0.476,,38872,0.436735047,0.515264953,74.60136572,,,74.00898258,75.19374886,,,,,,,71.79420169,70.30745156,73.28095182,95.33640148,74.6058817,116.0669213,74.90553915,74.23419951,75.57687879,,,,488.4262538,1491,236866,462.8132349,514.0392726,,,,,,,645.5019191,574.6458972,716.357941,,,,471.5059322,442.6375656,500.3742988,,,,71.21282813,58,81446,54.07488604,92.05909406,,,,,,,117.2520386,73.48122833,177.5209955,,,,63.7441492,44.40013551,88.65268066,,,,7.439553627,48,6452,5.485339557,9.863768782,,,,,,,14.12239408,8.741984522,21.58757951,,,,5.561735261,3.599261813,8.210218398,,,,,,,0.116,,,0.099,0.135,0.178,,,0.155,0.205,0.106,,,0.09,0.123,280.3,212,75635,,,0.116,10140,,,,0.049842456,3952.656284,79303,,,11.08160414,28,252671,7.363645474,16.0160034,,,,,,,,,,,,,13.01095088,8.336361734,19.35926358,,,,0.378,,,0.362,0.393,0.146799835,7452,50763,0.126544515,0.167055154,0.042933635,874,20357,0.029827252,0.056040018,0.000424282,38,89563,,,2356.921053,0.894741936,832.11,930,,,0.140545334,634,4511,0.08846396,0.192626708,3.04220366,,,,,,,2.595922673,2.795577243,3.228623622,2.95007406,,,,,,,2.535474087,2.96947218,3.128870978,0.081731863,,,,,-7384.6785,,,,,0.792350414,44084,55637,0.722280367,0.862420462,71463,,,66884.10638,76041.89362,78359,74983.51064,81734.48936,63333,42579.6383,84086.3617,47751,43546.23404,51955.76596,54044,29698.29787,78389.70213,80159,76471.34043,83846.65957,,,,,,0.422036654,5711,13532,,,30.96924106,,,,,0.193708632,,71463,,,5.723630417,28,4892,,,8.800659877,51,579502,6.552669333,11.57124244,,,,,,,24.54831108,16.5626424,35.04424047,,,,4.482654486,2.698850828,7.000220257,,,,18.3349572,82,416235,14.49302282,22.88285637,19.70040962,,,,,,,,,,,,,21.98702185,17.10721539,27.82598335,,,,21.38215191,89,416235,17.17162376,26.31257785,,,,,,,21.64748775,13.03320174,33.80523365,,,,22.69430768,17.65752598,28.72109883,,,,17.4287578,101,579502,14.02967441,20.82784118,,,,,,,18.82037183,11.93050131,28.23979845,,,,17.69468876,13.91799519,22.18044559,,,,,,8400,,,92,-888,0.657479369,41030,62405,,,0.652,,,,,25.07376728,,,,,0.770942083,24812,32184,0.751067057,0.790817109,0.084429754,2631,31162,0.069162597,0.099696911,0.881214268,28361,32184,0.863596029,0.898832507,89563,,,,,0.214307247,19194,89563,,,0.167345891,14988,89563,,,0.218259773,19548,89563,,,0.00482342,432,89563,,,0.007346784,658,89563,,,0.001105367,99,89563,,,0.031798846,2848,89563,,,0.72186059,64652,89563,,,0.00749014,621,82909,0.003328315,0.011651965,0.512153456,45870,89563,,,0.712368005,62672,87977,, +01,053,01053,AL,Escambia County,2024,1,14205.12434,922,100937,12811.38412,15598.86457,0,16200.43735,9753.721567,25298.9897,1,,,,2,16960.99557,14315.32466,19606.66649,,,,,2,13029.76975,11287.78958,14771.74993,,,,,2,,0.255,,,0.224,0.29,4.976445211,,,4.058157519,6.038228763,6.364747022,,,5.234099805,7.644622561,0.09375,288,3072,0.083442458,0.104057542,0,0.095238095,0.039090143,0.151386048,,,,0.144329897,0.122214154,0.16644564,,,,0.06936737,0.057636089,0.08109865,,,,,,,0.244,,,0.204,0.286,0.458,,,0.378,0.54,6.6,0.056765488,0.171,,,0.39,,,0.336,0.447,0.386457001,14205,36757,,,0.13007324,,,0.102073821,0.163145564,0.306122449,15,49,0.231593858,0.381907846,607.6,223,36699,,,39.02185224,300,7688,34.60611397,43.43759051,37.26708075,19.25644444,65.09809021,,,,34.81481482,28.13391422,42.6045162,67.35751295,35.86503881,115.1833985,39.97144897,33.92707506,46.01582287,,,,55.31914894,29.45511698,94.59742944,0.13506484,3687,27298,0.1171925,0.15293718,0.000299736,11,36699,,,3336.272727,0.000436372,16,36666,,,2291.625,0.00084547,31,36666,,,1182.774194,4624,,,,,8271,,5336,,4519,0.28,,,,,0.45,,0.25,,0.29,0.31,,,,,0.19,,0.21,,0.33,0.822669966,20946,25461,0.800316697,0.845023235,0.342271801,3191,9323,0.290146501,0.394397101,0.031058956,442,14231,,,0.264,2153,,0.162723404,0.365276596,0.297709924,0.121603477,0.473816371,,,,0.468939394,0.357455109,0.580423679,0.190883191,0,0.412539102,0.183758803,0.126825524,0.240692081,5.126769082,84766,16534,4.291021841,5.962516323,0.393975759,3283,8333,0.321983949,0.46596757,13.89683643,51,36699,,,124.0424791,228,183808,107.9412479,140.1437103,193.3085502,102.9286616,330.5635081,,,,81.59722222,59.95456973,108.5070075,,,,147.445929,124.8101703,170.0816876,,,,9.3,,,,,1,,,,,0.115622583,1495,12930,0.087810026,0.14343514,0.108037536,0.079360097,0.136714974,0.012761021,0.003906266,0.021615775,0.003866976,0.000875199,0.006858753,0.914945417,11650,12733,0.90184043,0.928050405,0.933333333,0.845108293,1,,,,0.887624051,0.830329054,0.944919049,,,,0.908460314,0.883110247,0.933810381,0.28,,12733,0.236875327,0.323124673,70.79301835,,,69.86489225,71.72114444,,,,,,,68.85810536,67.12994181,70.58626891,,,,71.5338697,70.37247385,72.69526555,,,,700.1061758,922,100937,652.947897,747.2644546,876.112263,628.7132861,1188.545212,,,,827.7287901,732.0835239,923.3740563,,,,654.3815675,596.8672087,711.8959263,,,,97.65080074,35,35842,68.01736065,135.808625,,,,,,,130.8900524,73.2581687,215.8832362,,,,70.7392249,38.67379251,118.6883994,,,,9.765625,30,3072,6.588826179,13.94103691,,,,,,,,,,,,,,,,,,,,,,0.155,,,0.136,0.176,0.209,,,0.183,0.237,0.143,,,0.124,0.164,230.3,71,30836,,,0.171,6310,,,,0.056765488,2175.196723,38319,,,44.70272687,49,109613,33.07132343,59.09937562,,,,,,,,,,,,,57.62290359,40.77739612,79.09193722,,,,0.426,,,0.413,0.438,0.172685762,3328,19272,0.147664485,0.197707038,0.04646752,392,8436,0.032169648,0.060765393,0.000709104,26,36666,,,1410.230769,0.889913044,307.02,345,,,0.262699565,543,2067,0.103144439,0.42225469,2.881991581,,,,,,,2.677395637,,3.03911613,2.714771458,,,,,,,2.415322833,,2.950618814,0.171927368,,,,,-9384.266,,,,,0.764509195,35211,46057,0.694345241,0.83467315,47792,,,41685.61702,53898.38298,63451,43512.61702,83389.38298,,,,29818,26080.29787,33555.70213,,,,48125,40070.53192,56179.46809,,,,,,0.65392274,3284,5022,,,34.35874982,,,,,0.302351858,,47792,,,6.15530303,13,2112,,,13.88219416,36,259325,9.722918121,19.21880825,,,,,,,22.00004889,13.03862326,34.76956204,,,,10.89073391,6.344253837,17.43711999,,,,24.05743978,47,183808,17.48017257,32.29599001,25.57016017,,,,,,,,,,,,,34.52646622,24.30981852,47.59018566,,,,22.3058844,41,183808,16.00708776,30.26045089,,,,,,,20.83333333,10.76488734,36.39164071,,,,23.51898253,15.36338024,34.46075865,,,,24.29383978,63,259325,18.66805352,31.08237435,,,,,,,14.66669926,7.57849753,25.61977199,,,,28.18778188,20.48128546,37.84078149,,,,,,3700,,,59,-888,0.559226714,15910,28450,,,0.58,,,,,25.4911377,,,,,0.671479036,8744,13022,0.639493925,0.703464147,0.113058273,1329,11755,0.082317362,0.143799184,0.713331286,9289,13022,0.677550969,0.749111602,36666,,,,,0.226040474,8288,36666,,,0.188076147,6896,36666,,,0.304287351,11157,36666,,,0.037800687,1386,36666,,,0.003545519,130,36666,,,0.000790924,29,36666,,,0.026536846,973,36666,,,0.60492009,22180,36666,,,0.00358009,124,34636,0,0.00821967,0.49915453,18302,36666,,,0.652828033,23996,36757,, +01,055,01055,AL,Etowah County,2024,1,13500.29045,2607,284349,12693.07568,14307.50521,0,,,,2,,,,2,18029.96503,15720.41079,20339.51928,,6609.06365,4189.579422,9916.840495,1,13161.36866,12241.15346,14081.58387,,,,,2,,0.201,,,0.172,0.232,4.406157321,,,3.507127036,5.35400427,6.26141912,,,5.161188333,7.416505086,0.089403576,745,8333,0.083277311,0.095529841,0,,,,,,,0.144897959,0.126903553,0.162892365,0.065019506,0.047592772,0.08244624,0.079543519,0.072621958,0.08646508,,,,,,,0.194,,,0.158,0.235,0.393,,,0.325,0.464,6.3,0.133979196,0.15,,,0.324,,,0.274,0.376,0.538980626,55750,103436,,,0.140602358,,,0.110104032,0.172978308,0.16091954,14,87,0.109838593,0.218886464,469.2,484,103162,,,35.56934829,745,20945,33.01515451,38.12354207,,,,,,,40.13464526,33.81620839,46.45308214,67.44868035,54.37315599,82.71981892,31.44357662,28.59170763,34.29544561,,,,48.4375,32.91093122,68.75316485,0.131387845,10729,81659,0.115898483,0.146877206,0.000736705,76,103162,,,1357.394737,0.000504423,52,103088,,,1982.461539,0.001445367,149,103088,,,691.8657718,4350,,,,,,,6735,,4164,0.29,,,,,,0.25,0.32,,0.28,0.35,,,,,,0.38,0.25,0.15,0.36,0.861184075,62621,72715,0.847597393,0.874770756,0.540306868,13311,24636,0.499902711,0.580711025,0.030274482,1189,39274,,,0.253,5485,,0.187468085,0.318531915,,,,,,,0.365860937,0.278535623,0.453186251,0.50257732,0.420649243,0.584505396,0.176622688,0.142517324,0.210728052,4.728720734,103611,21911,4.397555451,5.059886017,0.331219424,7312,22076,0.280958774,0.381480073,14.92797736,154,103162,,,95.11613719,488,513057,86.67695496,103.5553194,,,,,,,91.62106532,71.81628963,115.1997342,55.79838185,28.83183813,97.46854389,100.44154,90.58594188,110.2971381,,,,8.4,,,,,1,,,,,0.105636528,4095,38765,0.091835316,0.119437739,0.093638878,0.079643667,0.107634089,0.012124339,0.007581747,0.016666931,0.005159293,0.002003165,0.008315422,0.880658813,38498,43715,0.865548707,0.895768919,,,,,,,0.887721142,0.869645299,0.905796985,0.81298518,0.734130603,0.891839757,0.886855913,0.861955313,0.911756513,0.285,,43715,0.254693045,0.315306955,71.22958904,,,70.68181941,71.77735867,,,,,,,68.13814081,66.66814575,69.60813586,88.12308805,73.77137916,102.4747969,71.38884688,70.76961073,72.00808302,,,,661.0604455,2607,284349,634.2949822,687.8259087,,,,,,,848.1437422,768.93685,927.3506344,267.0139411,163.0990521,412.381376,651.4508992,621.6495255,681.2522728,,,,82.43938129,80,97041,65.36930224,102.6029461,,,,,,,124.6808763,77.17942756,190.5879638,,,,79.8509449,59.98648741,104.1881619,,,,7.043094187,59,8377,5.36152962,9.085078353,,,,,,,13.81578947,8.552191437,21.1189018,,,,5.053908356,3.409850745,7.214768429,,,,,,,0.132,,,0.114,0.153,0.199,,,0.174,0.226,0.114,,,0.098,0.132,221.9,194,87410,,,0.15,15490,,,,0.133979196,13991.4474,104430,,,22.09219593,68,307801,17.15545458,28.00712251,,,,,,,,,,,,,24.00090951,18.17805448,31.09596212,,,,0.398,,,0.383,0.413,0.164640773,9847,59809,0.144385454,0.184896092,0.042134587,968,22974,0.029028204,0.05524097,0.001134953,117,103088,,,881.0940171,0.911589184,960.815,1054,,,0.056770488,257,4527,0.030993355,0.082547622,3.010232137,,,,,,,2.80314849,2.44393431,3.136245753,2.782795678,,,,,,,2.463753636,2.333553388,2.918468744,0.230687796,,,,,-9222.356667,,,,,0.772084547,36857,47737,0.693967844,0.850201249,55487,,,51540.78723,59433.21277,,,,108214,6644.297872,209783.7021,36149,32394.61702,39903.38298,51487,47497.89362,55476.10638,55335,52294.31915,58375.68085,,,,,,0.51426025,7501,14586,,,66.20564982,,,,,0.201975237,,55487,,,5.474452555,33,6028,,,6.957218671,50,718678,5.163781796,9.172225484,,,,,,,17.04907442,10.26465652,26.62424161,,,,5.377095723,3.627903904,7.676138492,,,,19.79111485,101,513057,15.78142921,23.80080049,19.68592184,,,,,,,,,,,,,23.3631306,18.63534795,28.92514543,,,,21.24520278,109,513057,17.2567569,25.23364865,,,,,,,22.59149556,13.38915204,35.70430276,,,,22.40425328,17.99245509,27.57036154,,,,21.56737788,155,718678,18.17200426,24.9627515,,,,,,,20.63835324,13.08294558,30.9676632,,,,22.58380204,18.64042905,26.52717502,,,,,,10000,,,112,-888,0.603388116,47728,79100,,,0.658,,,,,60.30887998,,,,,0.733520662,28454,38791,0.717963209,0.749078115,0.110857051,4121,37174,0.095558188,0.126155914,0.835399964,32406,38791,0.820612271,0.850187657,103088,,,,,0.214137436,22075,103088,,,0.199295747,20545,103088,,,0.151142713,15581,103088,,,0.007052227,727,103088,,,0.008614,888,103088,,,0.003356356,346,103088,,,0.047735915,4921,103088,,,0.771049977,79486,103088,,,0.009034444,880,97405,0.005400587,0.0126683,0.513221714,52907,103088,,,0.431696895,44653,103436,, +01,057,01057,AL,Fayette County,2024,1,14500.27605,416,44185,12291.21079,16709.34132,0,,,,2,,,,2,20447.32138,13232.42829,30184.27996,,,,,2,14324.89549,11931.41105,16718.37993,,,,,2,,0.22,,,0.187,0.256,4.683573405,,,3.755903674,5.735751335,6.14654227,,,4.994452441,7.406935288,0.100649351,124,1232,0.083848908,0.117449794,0,,,,,,,0.222222222,0.15431807,0.290126375,,,,0.081632653,0.064902938,0.098362369,,,,,,,0.227,,,0.187,0.273,0.377,,,0.3,0.458,7.1,0.004299896,0.173,,,0.35,,,0.294,0.409,0.35849519,5851,16321,,,0.136340059,,,0.108227589,0.168665315,0.272727273,6,22,0.159704728,0.392079091,353,57,16148,,,33.637221,107,3181,27.26362853,40.01081347,,,,,,,33.03303303,16.48997107,59.10522076,,,,34.53397698,27.87337643,42.30645489,,,,,,,0.12097997,1516,12531,0.103107629,0.13885231,0.000990835,16,16148,,,1009.25,0.000310212,5,16118,,,3223.6,0.000186127,3,16118,,,5372.666667,3932,,,,,,,4553,,3736,0.39,,,,,,,0.56,,0.37,0.4,,,,,,,0.45,,0.39,0.837416871,9570,11428,0.809409826,0.865423916,0.455628013,1607,3527,0.371006802,0.540249223,0.027309968,180,6591,,,0.275,926,,0.186829787,0.363170213,,,,,,,0.578358209,0.371974452,0.784741966,,,,0.308150354,0.234753891,0.381546816,5.627501397,100676,17890,4.816610228,6.438392567,0.279103609,959,3436,0.183560173,0.374647044,8.050532574,13,16148,,,102.9512697,84,81592,82.11796468,127.4606772,,,,,,,116.5624669,58.1875635,208.5624511,,,,104.7699427,81.9760276,131.9404034,,,,9,,,,,1,,,,,0.094783248,645,6805,0.069276965,0.120289531,0.082283173,0.056428192,0.108138154,0.007200588,0,0.014764391,0.008082292,0.001273548,0.014891037,0.878768441,5480,6236,0.838360126,0.919176757,,,,,,,,,,,,,0.853715776,0.781303903,0.926127648,0.431,,6236,0.359898927,0.502101073,71.28939324,,,69.82801874,72.75076774,,,,,,,68.05596835,63.60829993,72.50363677,,,,71.29798248,69.71468781,72.88127715,,,,668.9089952,416,44185,599.4449811,738.3730094,,,,,,,868.2069973,640.1473025,1151.116519,,,,663.5582502,589.065807,738.0506935,,,,85.97883598,13,15120,45.78010907,147.026428,,,,,,,,,,,,,91.50653024,45.6797302,163.7304593,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.145,,,0.125,0.167,0.206,,,0.179,0.235,0.122,,,0.105,0.141,94.6,13,13738,,,0.173,2840,,,,0.004299896,74.13450891,17241,,,41.07535274,20,48691,25.08989256,63.43755089,,,,,,,,,,,,,31.75378603,16.90755372,54.29994118,,,,0.41,,,0.394,0.425,0.1512992,1380,9121,0.127469412,0.175128987,0.041352333,148,3579,0.027054461,0.055650205,0.000620424,10,16118,,,1611.8,0.975,143.325,147,,,,,,,,2.893179563,,,,,,,2.023972488,,3.054313137,2.734799249,,,,,,,2.237218758,,2.847738453,0.106440136,,,,,-3383.665,,,,,0.647664733,34834,53784,0.499221346,0.796108121,49205,,,42950.87234,55459.12766,,,,,,,30568,13766.80851,47369.19149,,,,50268,41557.02128,58978.97872,,,,,,0.561427909,1211,2157,,,53.4617513,,,,,0.270216441,,49205,,,3.318584071,3,904,,,,,,,,,,,,,,,,,,,,,,,,,,22.37484072,18,81592,12.78915473,36.33533954,22.06098637,,,,,,,,,,,,,25.55566379,14.30331103,42.15018104,,,,18.38415531,15,81592,10.28947217,30.32186841,,,,,,,,,,,,,18.9167952,10.07239675,32.34829591,,,,23.49930808,27,114897,15.4861921,34.19025949,,,,,,,,,,,,,24.75324113,15.85986866,36.83086068,,,,5,,1600,,,8,0,0.679534884,8766,12900,,,0.584,,,,,4.573696889,,,,,0.758424223,4659,6143,0.724342529,0.792505917,0.102058319,595,5830,0.067084391,0.137032248,0.732866678,4502,6143,0.687983276,0.777750079,16118,,,,,0.211688795,3412,16118,,,0.220250651,3550,16118,,,0.110559623,1782,16118,,,0.004715225,76,16118,,,0.005397692,87,16118,,,0,0,16118,,,0.020349919,328,16118,,,0.842970592,13587,16118,,,0.000582487,9,15451,0,0.006639254,0.507693262,8183,16118,,,1,16321,16321,, +01,059,01059,AL,Franklin County,2024,1,12137.03885,689,88177,10801.74771,13472.33,0,,,,2,,,,2,19780.98114,11909.44283,30890.45236,1,6177.054448,4136.870309,8871.28057,,13138.09785,11482.80109,14793.39462,,,,,2,,0.23,,,0.196,0.265,4.685196088,,,3.687342682,5.713366633,5.883151318,,,4.6835871,7.175499343,0.097194389,291,2994,0.086583595,0.107805183,0,,,,,,,,,,0.072765073,0.056350677,0.089179469,0.106350026,0.092620872,0.12007918,,,,,,,0.218,,,0.178,0.262,0.391,,,0.311,0.478,7.2,0.057351047,0.146,,,0.363,,,0.306,0.426,0.570236353,18312,32113,,,0.140618638,,,0.109811137,0.176558813,0.157894737,6,38,0.081882013,0.250383101,315.5,101,32013,,,43.47826087,295,6785,38.51671253,48.43980921,,,,,,,,,,63.88526728,51.86514803,77.85567816,38.40624358,32.90149992,43.91098724,,,,,,,0.148463196,3927,26451,0.129399366,0.167527026,0.000406085,13,32013,,,2462.538462,0.000219216,7,31932,,,4561.714286,0.000156583,5,31932,,,6386.4,4590,,,,,,,1004,2080,4630,0.31,,,,,,,0.33,0.38,0.31,0.37,,,,,,,0.25,0.22,0.38,0.800992928,17102,21351,0.775632469,0.826353386,0.417316693,3210,7692,0.356506894,0.478126492,0.023480948,342,14565,,,0.243,1865,,0.161978723,0.324021277,,,,,,,0.077702703,0,0.290078172,0.332153914,0.227705655,0.436602174,0.24364233,0.170347202,0.316937458,4.649219467,96197,20691,3.945996828,5.352442107,0.300783224,2381,7916,0.212191769,0.389374679,7.809327461,25,32013,,,93.82528211,148,157740,78.70899638,108.9415679,,,,,,,,,,38.72693987,19.33234885,69.29319291,109.361695,90.63394273,128.0894473,,,,8.2,,,,,0,,,,,0.109396278,1205,11015,0.080369709,0.138422847,0.082086796,0.057136099,0.107037493,0.029051294,0.013897057,0.04420553,0.007262823,0,0.01533027,0.826456763,11077,13403,0.780761883,0.872151644,,,,,,,,,,0.614780601,0.442370149,0.787191052,0.8794926,0.829520355,0.929464846,0.357,,13403,0.302529255,0.411470745,72.36835647,,,71.41781159,73.31890134,,,,,,,,,,84.16331605,74.20705488,94.11957721,71.5764805,70.4623072,72.6906538,,,,615.7185812,689,88177,568.1086217,663.3285407,,,,,,,992.9883064,702.6976252,1362.954032,253.425645,164.0037153,374.1062448,651.0410805,596.0320567,706.0501043,,,,58.66823115,20,34090,35.83607975,90.60832474,,,,,,,,,,,,,72.56235828,41.47565739,117.8367238,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.147,,,0.126,0.169,0.199,,,0.173,0.228,0.126,,,0.108,0.145,87.4,23,26321,,,0.146,4660,,,,0.057351047,1818.257577,31704,,,18.97093232,18,94882,11.24337681,29.98225192,,,,,,,,,,,,,23.72313704,13.81960155,37.98304049,,,,0.375,,,0.359,0.39,0.18596284,3463,18622,0.159750074,0.212175606,0.061914609,509,8221,0.04165929,0.082169928,0.000657648,21,31932,,,1520.571429,0.954480089,431.425,452,,,,,,,,2.567992701,,,,,,,,2.170231658,2.804919701,2.52922847,,,,,,,,2.294438018,2.652104802,0.174689292,,,,,-4702.0775,,,,,0.742349116,32189,43361,0.631719266,0.852978965,49611,,,43648.78723,55573.21277,53750,37228.80851,70271.19149,,,,,,,42520,34762.21277,50277.78723,50474,45890.34043,55057.65957,,,,,,0.381649485,1851,4850,,,67.77783987,,,,,0.330833888,,49611,,,2.595155709,6,2312,,,4.975934571,11,221064,2.48396861,8.903321442,,,,,,,,,,,,,5.924170616,2.840870081,10.89476069,,,,13.2578134,19,157740,7.857420455,20.95306095,12.04513757,,,,,,,,,,,,,16.00922672,9.150656323,25.99798122,,,,12.67909218,20,157740,7.744718895,19.58182953,,,,,,,,,,,,,14.19197569,8.26734883,22.72272788,,,,30.30796511,67,221064,23.48825667,38.49004434,,,,,,,,,,,,,33.76777251,25.57538114,43.750066,,,,16,,3500,,,56,0,0.572899112,12578,21955,,,0.593,,,,,16.36952593,,,,,0.73236053,8231,11239,0.695488887,0.769232174,0.092814654,983,10591,0.059376816,0.126252492,0.621852478,6989,11239,0.583634462,0.660070494,31932,,,,,0.245302518,7833,31932,,,0.176124264,5624,31932,,,0.038362771,1225,31932,,,0.018163598,580,31932,,,0.003883252,124,31932,,,0.002223475,71,31932,,,0.192189653,6137,31932,,,0.745834899,23816,31932,,,0.04233321,1257,29693,0.028823688,0.055842732,0.500062633,15968,31932,,,0.690499175,22174,32113,, +01,061,01061,AL,Geneva County,2024,1,14207.65745,686,72410,12509.26095,15906.05396,0,,,,2,,,,2,23935.58193,17176.58684,32471.3196,,,,,2,14013.76718,12159.17734,15868.35703,,,,,2,,0.225,,,0.191,0.259,4.757153429,,,3.81924715,5.787091791,6.234242676,,,5.050746555,7.456263841,0.085828343,172,2004,0.073564222,0.098092465,0,,,,,,,0.205714286,0.145823826,0.265604746,,,,0.076735688,0.063861163,0.089610213,,,,,,,0.222,,,0.18,0.266,0.416,,,0.336,0.496,6.4,0.03863991,0.19,,,0.363,,,0.306,0.421,0.350838366,9353,26659,,,0.134521264,,,0.105110157,0.168406761,0.275,11,40,0.192155924,0.361346198,468.1,125,26701,,,33.38806787,183,5481,28.55055856,38.22557718,,,,,,,29.87421384,17.98622825,46.65228549,42.07920792,24.51268928,67.37288816,32.28103489,26.85560612,37.70646367,,,,60.77348066,30.33790258,108.7405443,0.137473864,2893,21044,0.119601524,0.155346205,0.000299614,8,26701,,,3337.625,7.46742E-05,2,26783,,,13391.5,0.000298697,8,26783,,,3347.875,3206,,,,,,,4355,,3164,0.37,,,,,,,0.46,,0.37,0.37,,,,,,,0.35,,0.37,0.834000632,15831,18982,0.806860458,0.861140807,0.497897121,3078,6182,0.426316367,0.569477874,0.023963788,270,11267,,,0.254,1468,,0.163446809,0.344553192,,,,,,,0.525386314,0.196544804,0.854227823,0.679738562,0.568954182,0.790522942,0.148711656,0.090114728,0.207308585,4.693217781,96394,20539,4.06947652,5.316959041,0.195749057,1142,5834,0.13229714,0.259200975,8.9884274,24,26701,,,96.88308936,128,132118,80.09895044,113.6672283,,,,,,,131.6547355,75.25205672,213.7990422,,,,99.82575868,81.17045391,118.4810634,,,,9,,,,,0,,,,,0.12346263,1305,10570,0.092986344,0.153938916,0.112763916,0.080989835,0.144537996,0.012109745,0.004500231,0.019719259,0.000946074,0,0.004104092,0.878611085,9337,10627,0.843816016,0.913406154,,,,,,,,,,,,,0.82375,0.752477502,0.895022498,0.4,,10627,0.351821969,0.448178031,71.06176695,,,69.93474051,72.18879338,,,,,,,64.74333548,60.79638241,68.69028855,,,,71.03999266,69.80995206,72.27003327,,,,671.5781127,686,72410,617.7319605,725.4242649,,,,,,,981.437194,769.2900921,1234.009924,,,,673.5756029,615.3398121,731.8113937,,,,79.02015014,20,25310,48.26756059,122.040213,,,,,,,,,,,,,86.38650338,50.32332166,138.3131603,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.147,,,0.127,0.169,0.207,,,0.18,0.236,0.126,,,0.108,0.146,172,39,22677,,,0.19,5050,,,,0.03863991,1035.163198,26790,,,16.37630223,13,79383,8.719691232,28.00397556,,,,,,,,,,,,,15.14715461,7.263649398,27.85615663,,,,0.393,,,0.377,0.408,0.172330256,2632,15273,0.147308979,0.197351533,0.046898141,285,6077,0.032600268,0.061196013,0.000336034,9,26783,,,2975.888889,0.956960784,244.025,255,,,,,,,,3.05403059,,,,,,,2.802342267,2.86089073,3.137033855,2.868606676,,,,,,,2.603056823,2.401372441,2.966963881,0.03568783,,,,,-5664.6145,,,,,0.846576905,41561,49093,0.702507404,0.990646407,51585,,,45554.87234,57615.12766,,,,78889,48789.59575,108988.4043,29041,19667.55319,38414.44681,38971,3606.404255,74335.59575,53198,47511.02128,58884.97872,,,,,,0.542219995,2164,3991,,,23.03387301,,,,,0.209809053,,51585,,,4.814305365,7,1454,,,5.390574042,10,185509,2.584989783,9.913457591,,,,,,,,,,,,,,,,,,,19.25135747,24,132118,12.20370923,28.88648853,18.16557926,,,,,,,,,,,,,22.17911905,13.89953583,33.57945278,,,,15.89488185,21,132118,9.839182386,24.29701535,,,,,,,,,,,,,16.33512415,9.681229836,25.81653865,,,,27.49192762,51,185509,20.46954587,36.14680764,,,,,,,,,,,,,29.04500039,21.18562259,38.86449571,,,,15.18518519,,2700,,,41,0,0.614800294,12545,20405,,,0.567,,,,,2.696455352,,,,,0.7573862,7870,10391,0.722125607,0.792646793,0.109418141,1070,9779,0.076223088,0.142613194,0.741314599,7703,10391,0.706648239,0.77598096,26783,,,,,0.21872083,5858,26783,,,0.211701452,5670,26783,,,0.089235709,2390,26783,,,0.012731957,341,26783,,,0.00466714,125,26783,,,0.000746742,20,26783,,,0.048986297,1312,26783,,,0.824776911,22090,26783,,,0.005710886,144,25215,0.00027451,0.011147263,0.508008812,13606,26783,,,0.994410893,26510,26659,, +01,063,01063,AL,Greene County,2024,1,15895.23601,220,21424,12456.84453,19333.62749,0,,,,2,,,,2,16782.48224,12861.51246,20703.45201,,,,,2,12170.6905,6480.380111,20812.25142,1,,,,2,,0.323,,,0.281,0.369,5.51040024,,,4.485153294,6.62294094,6.418519777,,,5.182011514,7.727997527,0.163884674,108,659,0.135621845,0.192147503,0,,,,,,,0.178571429,0.146849985,0.210292872,,,,,,,,,,,,,0.267,,,0.22,0.317,0.52,,,0.432,0.607,4,0.227564754,0.212,,,0.457,,,0.392,0.52,0.042690815,330,7730,,,0.094438469,,,0.072395401,0.119407129,0.380952381,16,42,0.30212788,0.457674376,1074.8,82,7629,,,50.98980204,85,1667,40.72884283,63.04967986,,,,,,,48.73026767,38.05874335,61.466602,,,,,,,,,,,,,0.112495486,623,5538,0.093431656,0.131559316,0.000393236,3,7629,,,2543,,0,7422,,,,0.000134735,1,7422,,,7422,4840,,,,,,,5609,,2533,0.35,,,,,,,0.32,,0.43,0.25,,,,,,,0.2,,0.37,0.818865847,4462,5449,0.748854074,0.88887762,0.545301069,969,1777,0.379464397,0.711137741,0.04379562,120,2740,,,0.465,745,,0.291042553,0.638957447,,,,,,,0.52351314,0.398860299,0.64816598,,,,0.068783069,0,0.256001569,5.426314257,74525,13734,3.921213236,6.931415277,0.659787736,1119,1696,0.483293959,0.836281512,7.864726701,6,7629,,,89.34554389,36,40293,62.57652053,123.6918931,,,,,,,71.8076803,45.51990958,107.7467777,,,,184.5280341,98.25340654,315.5485581,,,,9.3,,,,,0,,,,,0.132075472,420,3180,0.070726833,0.193424111,0.109562399,0.053417943,0.165706854,0.018553459,0,0.041922653,0.00754717,0,0.021849231,0.762211982,1654,2170,0.65211689,0.872307073,,,,,,,0.905008636,0.768057032,1,,,,,,,0.426,,2170,0.293203713,0.558796287,71.66523531,,,69.33351654,73.99695408,,,,,,,71.21989163,68.51139253,73.92839072,,,,,,,,,,707.7490469,220,21424,602.7478196,812.7502741,,,,,,,737.954419,617.5639131,858.344925,,,,626.6326029,422.7863858,894.5570046,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.178,,,0.154,0.203,0.22,,,0.19,0.249,0.203,,,0.178,0.231,479.7,31,6463,,,0.212,1670,,,,0.227564754,2058.323195,9045,,,,,,,,,,,,,,,,,,,,,,,,,,0.484,,,0.465,0.5,0.143962076,577,4008,0.11774931,0.170174842,0.031598513,51,1614,0.01849213,0.044704896,0.000269469,2,7422,,,3711,0.825,61.05,74,,,,,,,,2.467139733,,,,,,,2.450409655,,,2.569736548,,,,,,,2.543757171,,,,,,,,-46688.4,,,,,0.872001601,30500,34977,0.072458582,1.67154462,35449,,,30517.42553,40380.57447,,,,,,,26963,23869.89362,30056.10638,,,,63092,19995.82979,106188.1702,,,,,,0.853788687,800,937,,,28.89654284,,,,,0.37507405,,35449,,,1.85528757,1,539,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,45.45931391,26,57194,29.69553313,66.6084276,,,,,,,48.26890166,30.24986369,73.07969719,,,,,,,,,,13.75,,800,,,11,0,0.741459627,4775,6440,,,0.42,,,,,9.940035626,,,,,0.735376045,2112,2872,0.679758154,0.790993936,0.134630659,339,2518,0.065827781,0.203433537,0.560236769,1609,2872,0.478321392,0.642152145,7422,,,,,0.218404743,1621,7422,,,0.251010509,1863,7422,,,0.790083535,5864,7422,,,0.005119914,38,7422,,,0.003637834,27,7422,,,0,0,7422,,,0.021827001,162,7422,,,0.171112908,1270,7422,,,0.000418877,3,7162,0,0.012248186,0.535435193,3974,7422,,,1,7730,7730,, +01,065,01065,AL,Hale County,2024,1,15799.99979,395,40405,13401.26573,18198.73385,0,,,,2,,,,2,19512.95783,15961.48224,23064.43342,,,,,2,10765.6276,7869.005617,13662.24958,,,,,2,,0.262,,,0.226,0.301,4.85953715,,,3.874185394,5.884058962,6.010492722,,,4.780827481,7.227064298,0.122076023,167,1368,0.104727734,0.139424313,0,,,,,,,0.161640531,0.136581223,0.186699839,,,,0.058585859,0.037896824,0.079274893,,,,,,,0.229,,,0.187,0.271,0.461,,,0.373,0.544,6.6,0.069764913,0.164,,,0.395,,,0.334,0.453,0.50713561,7498,14785,,,0.115809842,,,0.090187146,0.145824498,0.47826087,11,23,0.376622098,0.570307191,1294.6,191,14754,,,32.93891909,103,3127,26.57760554,39.30023264,,,,,,,37.14859438,29.16963667,46.63665838,,,,24.03846154,15.55642485,35.48551125,,,,,,,0.124428823,1416,11380,0.106556482,0.142301163,0.000203335,3,14754,,,4918,0.000137033,2,14595,,,7297.5,0.000342583,5,14595,,,2919,5196,,,,,,,4729,,5524,0.34,,,,,,,0.32,,0.37,0.31,,,,,,,0.24,,0.37,0.805711423,8041,9980,0.759158278,0.852264567,0.500735944,1701,3397,0.404315396,0.597156491,0.038919644,232,5961,,,0.325,1120,,0.204659575,0.445340426,,,,,,,0.503759399,0.355868294,0.651650504,,,,0.107583774,0.038821651,0.176345897,6.538099377,90265,13806,4.83867417,8.237524584,0.491289199,1692,3444,0.360603661,0.621974737,6.777822963,10,14754,,,103.2426338,76,73613,81.34345276,129.2235515,,,,,,,106.0145593,77.32774705,141.8558214,,,,106.1207723,72.10391613,150.6299654,,,,9.4,,,,,0,,,,,0.154826958,850,5490,0.111643046,0.198010871,0.120303605,0.076756496,0.163850714,0.035519126,0.014013868,0.057024383,0.004371585,0,0.011107738,0.869354237,4658,5358,0.820373521,0.918334953,,,,,,,0.897928994,0.789811034,1,,,,0.881040892,0.76454499,0.997536794,0.514,,5358,0.413109623,0.614890378,70.21423874,,,68.65514241,71.77333507,,,,,,,67.37452577,65.24051722,69.50853432,,,,74.0078436,71.91468515,76.10100204,,,,726.2740843,395,40405,649.1309967,803.4171718,,,,,,,856.2678101,743.7959071,968.7397132,,,,568.1680096,465.2667473,671.0692718,,,,86.95070564,13,14951,46.29758873,148.6883548,,,,,,,131.2479493,67.8177306,229.2637542,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.151,,,0.13,0.174,0.205,,,0.178,0.233,0.157,,,0.135,0.179,531.2,65,12235,,,0.164,2440,,,,0.069764913,1099.495022,15760,,,,,,,,,,,,,,,,,,,,,,,,,,0.448,,,0.433,0.463,0.156935664,1266,8067,0.131914387,0.18195694,0.046370968,161,3472,0.030881606,0.061860329,0.000685166,10,14595,,,1459.5,0.925,161.875,175,,,,,,,,2.781441538,,,,,,,2.645002494,,3.074862687,2.586428052,,,,,,,2.410881309,,2.982631055,0.252461213,,,,,-14408.21,,,,,0.587586235,29129,49574,0.470071266,0.705101204,44702,,,38084.46809,51319.53192,,,,,,,23398,20376.38298,26419.61702,,,,63974,54039.3617,73908.6383,,,,,,0.691979522,1622,2344,,,25.95586185,,,,,0.297436356,,44702,,,5.107252298,5,979,,,17.36898478,18,103633,10.29396117,27.45048418,,,,,,,25.13362712,14.06710031,41.45409573,,,,,,,,,,13.77170021,12,73613,6.604065553,25.32664702,16.30146849,,,,,,,,,,,,,28.7504087,13.14651761,54.57723132,,,,36.6783041,27,73613,24.17123352,53.36500679,,,,,,,32.98230735,18.03173434,55.33870738,,,,44.50225935,23.69557884,76.10021881,,,,27.01842077,28,103633,17.95354439,39.04914066,,,,,,,31.83592768,19.16730813,49.71574466,,,,,,,,,,,,1500,,,18,-888,0.697879859,7900,11320,,,0.508,,,,,6.593941397,,,,,0.774939848,4187,5403,0.743238934,0.806640763,0.159368836,808,5070,0.109529304,0.209208368,0.70608921,3815,5403,0.660190376,0.751988044,14595,,,,,0.238643371,3483,14595,,,0.202603631,2957,14595,,,0.569099007,8306,14595,,,0.003288798,48,14595,,,0.003699897,54,14595,,,0.0004111,6,14595,,,0.016169921,236,14595,,,0.40020555,5841,14595,,,0.001669813,23,13774,,,0.524563207,7656,14595,,,1,14785,14785,, +01,067,01067,AL,Henry County,2024,1,11183.14921,377,47034,9260.020955,13106.27747,0,,,,2,,,,2,16204.56292,11389.50554,21019.6203,,,,,2,9635.417724,7597.241758,11673.59369,,,,,2,,0.202,,,0.172,0.236,4.234773561,,,3.351248691,5.22064341,5.629842913,,,4.534827028,6.818878038,0.113036304,137,1212,0.09520978,0.130862827,0,,,,,,,0.203821656,0.159264077,0.248379236,,,,0.084033613,0.065192791,0.102874436,,,,,,,0.195,,,0.157,0.238,0.383,,,0.307,0.467,7.3,0.080481034,0.127,,,0.326,,,0.271,0.386,0.185232707,3176,17146,,,0.134065572,,,0.105220852,0.167711379,0.307692308,4,13,0.157450571,0.460702037,756.1,132,17459,,,26.67457024,90,3374,21.44950449,32.78757552,,,,,,,29.06350915,19.15303566,42.28587992,,,,26.14678899,19.80332264,33.87619789,,,,,,,0.120491927,1597,13254,0.103811076,0.137172778,0.000343662,6,17459,,,2909.833333,0.000283206,5,17655,,,3531,0.000509771,9,17655,,,1961.666667,3304,,,,,,,3135,,3198,0.42,,,,,,,0.51,,0.4,0.36,,,,,,,0.28,,0.37,0.81530133,10241,12561,0.782841297,0.847761363,0.457656757,1832,4003,0.378688912,0.536624603,0.027080675,191,7053,,,0.226,796,,0.142595745,0.309404255,,,,,,,0.573829532,0.545513675,0.602145388,0.190476191,0,0.515173756,0.079019074,0.036006926,0.122031221,5.850461954,112715,19266,4.946668027,6.754255881,0.308152794,1081,3508,0.22378411,0.392521478,13.17372129,23,17459,,,97.39920921,84,86243,77.68942377,120.5868485,,,,,,,91.11617312,55.65612567,140.7215394,,,,105.0612858,80.73197665,134.4190232,,,,9.1,,,,,0,,,,,0.096872616,635,6555,0.071577613,0.12216762,0.091530692,0.063806633,0.119254751,0.007322655,0,0.014649156,0.000610221,0,0.004694827,0.876712329,6272,7154,0.849030488,0.904394169,,,,,,,0.779220779,0.691979211,0.866462348,,,,0.849372385,0.778459618,0.920285152,0.383,,7154,0.319896042,0.446103958,74.28570831,,,72.85428931,75.71712731,,,,,,,69.93553051,66.8523893,73.01867172,,,,75.5752394,73.96614735,77.18433144,,,,531.0165058,377,47034,472.4588821,589.5741295,,,,,,,705.5240653,569.963536,841.0845945,,,,483.3858845,417.1507201,549.621049,,,,70.80785324,11,15535,35.34702522,126.6948086,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.131,,,0.112,0.152,0.191,,,0.164,0.221,0.118,,,0.101,0.138,286.9,43,14986,,,0.127,2170,,,,0.080481034,1392.482845,17302,,,,,,,,,,,,,,,,,,,,,,,,,,0.393,,,0.378,0.406,0.145687885,1419,9740,0.123049587,0.168326183,0.052858684,196,3708,0.036177833,0.069539535,0.000226565,4,17655,,,4413.75,0.975,179.4,184,,,,,,,,2.815581462,,,,,,,2.629142429,,2.920503284,2.734985739,,,,,,,2.407483307,,2.872121409,0.06748602,,,,,-5646.676,,,,,0.796185011,41072,51586,0.754805425,0.837564598,56702,,,49319.53192,64084.46809,,,,162813,86467.12766,239158.8723,27938,17861.57447,38014.42553,31094,6880.553192,55307.44681,68424,64486.12766,72361.87234,,,,,,0.43488746,1082,2488,,,29.54784532,,,,,0.190875101,,56702,,,7.058823529,6,850,,,8.289949266,10,120628,3.9753529,15.24551186,,,,,,,,,,,,,,,,,,,24.7775051,23,86243,15.13474382,38.26684705,26.66883109,,,,,,,,,,,,,31.49955383,18.3496509,50.43383709,,,,25.5093167,22,86243,15.98655296,38.62141204,,,,,,,,,,,,,25.01459185,14.00047717,41.25776515,,,,19.06688331,23,120628,12.08676844,28.60968672,,,,,,,,,,,,,20.33809085,11.8476874,32.56325364,,,,,,1700,,,27,-888,0.687721894,9298,13520,,,0.507,,,,,22.45513171,,,,,0.81573437,5454,6686,0.781048185,0.850420555,0.07730908,493,6377,0.050403638,0.104214521,0.79015854,5283,6686,0.750270346,0.830046735,17655,,,,,0.202832059,3581,17655,,,0.236590201,4177,17655,,,0.24038516,4244,17655,,,0.005607477,99,17655,,,0.005890683,104,17655,,,0.000169924,3,17655,,,0.026961201,476,17655,,,0.703426791,12419,17655,,,0.003403635,56,16453,0,0.009718943,0.51396205,9074,17655,,,1,17146,17146,, +01,069,01069,AL,Houston County,2024,1,10816.14705,2079,295430,10110.43621,11521.85789,0,,,,2,,,,2,15582.00115,14005.45937,17158.54294,,6187.775466,3779.654008,9556.517348,1,9048.64907,8260.875903,9836.422237,,,,,2,,0.197,,,0.167,0.228,4.240030557,,,3.431802387,5.095162656,5.511785486,,,4.575143827,6.536162365,0.108061379,1000,9254,0.101735891,0.114386867,0,,,,0.068493151,0.027520294,0.109466007,0.16651446,0.153774637,0.179254283,0.057613169,0.03689681,0.078329527,0.077577868,0.070285198,0.084870538,,,,0.074074074,0.033744856,0.114403292,0.196,,,0.158,0.238,0.396,,,0.333,0.462,7.3,0.042421091,0.147,,,0.333,,,0.283,0.387,0.758204138,81281,107202,,,0.138883514,,,0.111208436,0.170908278,0.231707317,19,82,0.17540266,0.291509118,681.2,732,107458,,,32.47165533,716,22050,30.09315077,34.85015989,,,,,,,53.17951604,47.81840809,58.54062399,45.91368228,34.07801996,60.53146618,20.88509317,18.38925542,23.38093091,,,,28.31594635,17.04804943,44.21885778,0.12436318,10692,85974,0.111256797,0.137469563,0.000818925,88,107458,,,1221.113636,0.000638422,69,108079,,,1566.362319,0.001776478,192,108079,,,562.9114583,3448,,,,,,,6612,,2931,0.44,,,,,,0.35,0.47,0.53,0.44,0.42,,,,,,0.41,0.33,0.31,0.43,0.876150447,64829,73993,0.867669481,0.884631412,0.583862463,15724,26931,0.558532955,0.609191972,0.025916667,1244,48000,,,0.266,6377,,0.218340426,0.313659575,,,,0.052132701,0,0.39626462,0.462463968,0.433222946,0.49170499,0.386981402,0.311826509,0.462136295,0.12395196,0.104048572,0.143855348,5.189075442,115898,22335,4.911591582,5.466559302,0.331350997,8079,24382,0.306475897,0.356226096,11.07409407,119,107458,,,74.85992121,396,528988,67.48669015,82.23315227,,,,,,,62.74662911,50.45569958,77.12626002,,,,83.07051541,73.5095009,92.63152992,,,,8.1,,,,,0,,,,,0.127811989,5085,39785,0.118457754,0.137166225,0.115831202,0.106087955,0.125574449,0.014075657,0.010869176,0.017282138,0.004272967,0.002880278,0.005665657,0.857926991,38919,45364,0.850241038,0.865612943,,,,0.702811245,0.401083471,1,0.836939531,0.806314102,0.86756496,0.764841233,0.710992083,0.818690384,0.882838559,0.871821412,0.893855706,0.253,,45364,0.238407295,0.267592705,74.09318771,,,73.55625737,74.63011805,,,,,,,69.89123837,68.80602092,70.97645582,82.14282624,76.16422766,88.12142482,75.49465822,74.87840769,76.11090874,,,,532.2290745,2079,295430,508.3089675,556.1491815,,,,,,,741.3097473,684.1318454,798.4876491,299.8925821,192.146836,446.2163905,471.6365148,444.7642387,498.5087909,,,,74.26207934,79,106380,58.79398755,92.55270837,,,,,,,123.2762822,89.2156567,166.0523431,,,,51.82126678,35.21003657,73.55615169,,,,9.686793671,90,9291,7.789326029,11.906714,,,,,,,16.84017146,12.68632179,21.91979791,,,,5.312084993,3.5298419,7.677441841,,,,,,,0.128,,,0.109,0.148,0.189,,,0.163,0.215,0.117,,,0.101,0.137,418.1,377,90177,,,0.147,15600,,,,0.042421091,4307.734556,101547,,,12.50312578,40,319920,8.932416367,17.0257086,,,,,,,,,,,,,15.71211595,10.81549766,22.06565249,,,,0.404,,,0.39,0.418,0.158517947,9853,62157,0.140645606,0.176390287,0.038002475,952,25051,0.02847056,0.04753439,0.002017043,218,108079,,,495.7752294,0.894076246,914.64,1023,,,0.073272438,369,5036,0.052034942,0.094509935,2.972277798,,,,,,,2.486318215,2.700027819,3.40688838,2.770071872,,,,,,,2.246370293,2.615202168,3.204492032,0.173383237,,,,,-8717.0535,,,,,0.71677889,39387,54950,0.68593928,0.7476185,56842,,,53496.29787,60187.70213,,,,110625,81733.76596,139516.234,35137,32729,37545,51406,36033.40426,66778.59575,64729,62499.7234,66958.2766,,,,,,0.550575196,7849,14256,,,45.59263407,,,,,0.184317934,,56842,,,9.367321867,61,6512,,,8.952587908,66,737217,6.92393084,11.38988689,,,,,,,22.6570131,16.52618083,30.31686613,,,,3.68162908,2.181966722,5.818561192,,,,18.22912731,99,528988,14.71325842,22.3319125,18.7149803,,,,,,,,,,,,,23.97703715,19.01229927,29.84149824,,,,20.60538235,109,528988,16.73705249,24.47371221,,,,,,,24.40146688,16.99651575,33.93653344,,,,20.62440383,16.13732579,25.97302329,,,,17.22694946,127,737217,14.2308061,20.22309283,,,,,,,15.1046754,10.19106106,21.56286334,,,,17.79454055,14.25269752,21.94950003,,,,22.79279279,,11100,,,181,72,0.578427811,46173,79825,,,0.623,,,,,74.32011828,,,,,0.654646992,27196,41543,0.644951734,0.664342251,0.127212917,5066,39823,0.11660278,0.137823054,0.825939388,34312,41543,0.816060133,0.835818643,108079,,,,,0.225640504,24387,108079,,,0.188093894,20329,108079,,,0.272966996,29502,108079,,,0.005921594,640,108079,,,0.012213288,1320,108079,,,0.001082542,117,108079,,,0.038952988,4210,108079,,,0.650514901,70307,108079,,,0.005355365,538,100460,,,0.51970318,56169,108079,,,0.34316524,36788,107202,, +01,071,01071,AL,Jackson County,2024,1,13259.46486,1411,142687,12142.23466,14376.69507,0,,,,2,,,,2,11994.07289,7424.520161,18334.21449,1,,,,2,13863.07868,12657.29159,15068.86576,,,,,2,,0.208,,,0.173,0.245,4.497269611,,,3.584682444,5.558062998,6.101278778,,,4.939045864,7.388155649,0.089358452,351,3928,0.080437486,0.098279418,0,,,,,,,0.175925926,0.104114716,0.247737136,0.071428571,0.037701728,0.105155415,0.088370754,0.07893222,0.097809289,,,,,,,0.216,,,0.17,0.263,0.377,,,0.296,0.46,6.8,0.053704165,0.166,,,0.332,,,0.274,0.392,0.375777402,19758,52579,,,0.140006196,,,0.109750543,0.175594178,0.215384615,14,65,0.152573199,0.283527275,265.3,140,52773,,,29.15057915,302,10360,25.86282157,32.43833673,,,,,,,,,,56.39097744,38.04675568,80.50162668,28.52367688,25.02952646,32.0178273,,,,,,,0.138290746,5780,41796,0.120418405,0.156163086,0.000511625,27,52773,,,1954.555556,0.000321416,17,52891,,,3111.235294,0.000548297,29,52891,,,1823.827586,2484,,,,,,,5459,,2442,0.46,,,,,,,0.46,,0.46,0.39,,,,,,,0.33,,0.39,0.820347408,31028,37823,0.799458045,0.841236771,0.511845686,6395,12494,0.455831143,0.567860229,0.025145568,583,23185,,,0.209,2223,,0.137510638,0.280489362,,,,,,,,,,0.724444444,0.598427872,0.850461017,0.234187658,0.184043482,0.284331835,4.700622121,98981,21057,4.21145468,5.189789562,0.270479705,2932,10840,0.2260925,0.31486691,8.337596877,44,52773,,,94.36651183,245,259626,82.54995546,106.1830682,,,,,,,,,,,,,101.2320897,88.2613022,114.2028772,,,,8.6,,,,,0,,,,,0.104100172,2120,20365,0.086265915,0.121934429,0.075990911,0.05923425,0.092747572,0.024551927,0.014365035,0.03473882,0.00662902,0.001454526,0.011803515,0.852219947,17064,20023,0.845941428,0.858498467,,,,,,,,,,,,,0.833702116,0.818540234,0.848863998,0.403,,20023,0.364612587,0.441387413,71.51022546,,,70.7513341,72.26911683,,,,,,,71.71652572,67.26659618,76.16645527,,,,70.94368827,70.15090878,71.73646775,,,,675.3836031,1411,142687,637.6944131,713.0727931,,,,,,,728.286974,542.2574883,957.5628716,,,,706.9743705,666.2470169,747.7017242,,,,61.28875457,29,47317,41.04604083,88.02087503,,,,,,,,,,,,,59.89667823,38.37693193,89.12150938,,,,6.144393241,24,3906,3.936828688,9.142370096,,,,,,,,,,,,,6.658946149,4.221200648,9.991688736,,,,,,,0.14,,,0.119,0.163,0.201,,,0.173,0.231,0.116,,,0.098,0.135,101.8,46,45203,,,0.166,8730,,,,0.053704165,2858.511566,53227,,,,,,,,,,,,,,,,,,,,,,,,,,0.402,,,0.383,0.42,0.170604778,5278,30937,0.14677499,0.194434565,0.048477424,554,11428,0.032988062,0.063966786,0.000869713,46,52891,,,1149.804348,0.941410488,520.6,553,,,0.105557949,245,2321,0.053292162,0.157823737,3.058069377,,,,,,,2.59621433,2.670016945,3.072300841,2.727648275,,,,,,,2.414168622,2.683648401,2.693399988,0.107370985,,,,,-1940.8055,,,,,0.668948867,35467,53019,0.575091963,0.762805772,51965,,,45709.68085,58220.31915,46534,15865.06383,77202.93617,43385,27852.74468,58917.25532,36625,19502.10638,53747.89362,27763,11340.70213,44185.29787,47829,44345.08511,51312.91489,,,,,,0.538169438,4110,7637,,,53.9479856,,,,,0.222765323,,51965,,,4.062038405,11,2708,,,4.942570082,18,364183,2.929280274,7.811391599,,,,,,,,,,,,,4.929872563,2.817848127,8.005804185,,,,18.79309199,55,259626,13.90323291,24.84546426,21.18431898,,,,,,,,,,,,,19.78153164,14.5347254,26.30524354,,,,23.11016616,60,259626,17.63549142,29.74736483,,,,,,,,,,,,,24.65909878,18.6765606,31.94872266,,,,31.30294385,114,364183,25.55663681,37.04925089,,,,,,,,,,,,,32.96852276,26.72163547,39.21541006,,,,11.6,,5000,,,58,0,0.584398566,23636,40445,,,0.607,,,,,14.59761983,,,,,0.761151427,15733,20670,0.73624569,0.786057165,0.093364198,1815,19440,0.073617361,0.113111034,0.832027092,17198,20670,0.813109297,0.850944888,52891,,,,,0.204269157,10804,52891,,,0.210300429,11123,52891,,,0.033068008,1749,52891,,,0.015238888,806,52891,,,0.00616362,326,52891,,,0.001418011,75,52891,,,0.034826341,1842,52891,,,0.885859598,46854,52891,,,0.007159284,358,50005,0.00214712,0.012171448,0.506210887,26774,52891,,,0.753095342,39597,52579,, +01,073,01073,AL,Jefferson County,2024,1,12625.67617,13080,1852107,12310.09677,12941.25558,0,,,,2,3178.766162,2188.116361,4464.169544,,16301.95923,15753.1731,16850.74536,,8738.660246,7455.673651,10021.64684,,10016.60225,9620.590731,10412.61377,,,,,2,,0.185,,,0.16,0.211,3.909296001,,,3.237878736,4.711032838,5.810469551,,,5.038772729,6.667496141,0.114642099,6645,57963,0.112048445,0.117235754,0,,,,0.098817568,0.081819339,0.115815796,0.161100976,0.156563241,0.165638711,0.075226467,0.067971879,0.082481055,0.077966234,0.074681013,0.081251455,,,,0.099009901,0.078415474,0.119604328,0.164,,,0.133,0.199,0.393,,,0.35,0.441,6.9,0.125866386,0.127,,,0.295,,,0.255,0.337,0.797418489,538035,674721,,,0.147204023,,,0.123998637,0.173318755,0.129979036,62,477,0.109238642,0.152324044,873,5830,667820,,,21.89284463,3186,145527,21.13263147,22.65305778,,,,,,,30.31933457,29.0178989,31.62077025,58.31713413,52.73978798,63.89448028,9.549518623,8.792926457,10.30611079,,,,24.07825433,18.54318982,30.74739323,0.10341124,55170,533501,0.095070815,0.111751666,0.001111078,742,667820,,,900.0269542,0.000939272,625,665409,,,1064.6544,0.002461644,1638,665409,,,406.2326007,2957,,,,,,559,3772,1074,2558,0.45,,,,,,0.33,0.4,0.18,0.47,0.44,,,,,,0.49,0.32,0.28,0.48,0.910633925,416442,457310,0.905350042,0.915917807,0.694908084,126483,182014,0.67485823,0.714957938,0.025818924,8347,323290,,,0.214,31449,,0.181829787,0.246170213,0.306060606,0.028777468,0.583343744,0.157773513,0.090583829,0.224963196,0.348959459,0.322910882,0.375008035,0.351577314,0.300197261,0.402957367,0.069607281,0.055076384,0.084138177,5.457614131,135327,24796,5.21025567,5.704972593,0.359029171,54585,152035,0.338857547,0.379200795,13.91093408,929,667820,,,115.0222166,3796,3300232,111.3631131,118.6813202,,,,25.57152355,14.31218761,42.1763393,127.808601,121.9431186,133.6740834,69.37037065,55.99084216,84.98339066,113.2500055,108.0865158,118.4134953,,,,10.7,,,,,0,,,,,0.157505686,41550,263800,0.149017103,0.165994269,0.138766988,0.130903837,0.14663014,0.014006823,0.011476548,0.016537099,0.011732373,0.008895172,0.014569574,0.797251667,244136,306222,0.78778735,0.806715984,0.81626188,0.765873115,0.866650645,0.704731948,0.637008352,0.772455543,0.79519132,0.77612741,0.81425523,0.729498337,0.685932664,0.773064011,0.846567871,0.835850572,0.857285169,0.34,,306222,0.327390462,0.352609538,72.92252275,,,72.69229449,73.15275101,,,,84.05809658,81.50474171,86.61145144,70.10414254,69.72884684,70.47943823,92.14726901,82.75573723,101.5388008,74.95478364,74.65438014,75.25518715,,,,573.1508743,13080,1852107,562.9652519,583.3364966,,,,161.0590754,120.2866211,211.2075495,714.3509287,696.8930912,731.8087662,340.785499,287.5808682,393.9901299,482.5704628,469.5824416,495.558484,,,,85.985038,574,667558,78.95070356,93.01937245,,,,,,,121.8124409,109.564702,134.0601798,67.14413608,46.21893378,94.29533098,52.30087793,43.78790898,60.81384688,,,,9.399132909,555,59048,8.617149803,10.18111602,,,,,,,13.94849785,12.51554197,15.38145374,5.929257821,3.970917019,8.515403279,5.468268638,4.568850294,6.367686983,,,,,,,0.117,,,0.102,0.134,0.177,,,0.155,0.2,0.126,,,0.11,0.143,678.5,3790,558597,,,0.127,85570,,,,0.125866386,82878.73575,658466,,,40.77235352,808,1981735,37.96099539,43.58371165,,,,,,,35.52410281,31.53725856,39.51094706,14.59374658,7.540801815,25.49233834,49.01111363,44.61734996,53.4048773,,,,0.38,,,0.366,0.393,0.130383875,50333,386037,0.118468982,0.142298769,0.035984824,5558,154454,0.027644398,0.04432525,0.001962703,1306,665409,,,509.5015314,0.907802305,6538.9,7203,,,0.073514906,2683,36496,0.058302486,0.088727325,2.78853869,,,,,,3.445286906,2.379602624,2.305758851,3.455145043,2.600071796,,,,,,3.571736593,2.108575082,2.327324516,3.30688529,0.346181665,,,,,-16854.82033,,,,,0.794596577,47675,59999,0.760067151,0.829126002,61996,,,59888.25532,64103.74468,41976,31913.87234,52038.12766,80087,71822.82979,88351.17021,44423,42490.40426,46355.59575,49322,42949.91489,55694.08511,84059,80675.17021,87442.82979,,,,,,0.493557007,47839,96927,,,64.08473349,,,,,0.331634299,,61996,,,7.235105581,307,42432,,,24.71797269,1142,4620120,23.2843467,26.15159869,,,,,,,48.92269712,45.85180786,51.99358638,10.88986535,6.651812665,16.81851381,6.094763118,5.085164182,7.104362055,,,,14.06350712,470,3300232,12.76365208,15.36336217,14.24142303,,,,,,,7.783161885,6.295249085,9.271074684,10.04659635,5.191222938,17.54938199,19.82802,17.63684978,22.01919022,,,,33.75520267,1114,3300232,31.77297198,35.73743335,,,,,,,53.46379527,49.67017736,57.25741319,15.66427724,9.6964345,23.94451171,19.91680292,17.75142344,22.0821824,,,,16.68787824,771,4620120,15.5099197,17.86583678,,,,,,,19.31819322,17.38848249,21.24790395,19.60175762,13.72883006,27.13709496,15.06277171,13.47560364,16.64993977,,,,7.435508346,,65900,,,344,146,0.660125807,325848,493615,,,0.641,,,,,129.5102735,,,,,0.640932451,170356,265794,0.63248521,0.649379693,0.152369692,39049,256278,0.144333056,0.160406328,0.869635883,231144,265794,0.861823532,0.877448235,665409,,,,,0.225005974,149721,665409,,,0.170983561,113774,665409,,,0.433588966,288514,665409,,,0.002892958,1925,665409,,,0.01897179,12624,665409,,,0.000488421,325,665409,,,0.044004515,29281,665409,,,0.487880386,324640,665409,,,0.010323383,6512,630801,0.008503685,0.01214308,0.525240867,349500,665409,,,0.120709152,81445,674721,, +01,075,01075,AL,Lamar County,2024,1,11619.72235,340,37129,9542.746217,13696.69848,0,,,,2,,,,2,23490.0672,13921.70255,37124.43336,1,,,,2,10677.97961,8626.179619,12729.77959,,,,,2,,0.207,,,0.174,0.239,4.508710486,,,3.559298435,5.52043615,5.998327859,,,4.780162051,7.269886026,0.09141791,98,1072,0.074165237,0.108670584,0,,,,,,,0.177570094,0.105160095,0.249980092,,,,0.078663793,0.061342569,0.095985018,,,,,,,0.217,,,0.175,0.258,0.387,,,0.305,0.474,7.2,0.004162538,0.168,,,0.346,,,0.288,0.407,0.088391068,1235,13972,,,0.138115446,,,0.107521161,0.172816159,0.173913044,4,23,0.074750573,0.296760504,409.1,56,13689,,,38.69801085,107,2765,31.36549814,46.03052356,,,,,,,40.88050315,21.7671462,69.9069054,,,,39.20723826,31.56722253,48.13780048,,,,,,,0.119182747,1260,10572,0.101310407,0.137055087,,0,13689,,,,0.000218898,3,13705,,,4568.333333,0.000218898,3,13705,,,4568.333333,3265,,,,,,,2992,,3143,0.43,,,,,,,0.43,,0.43,0.38,,,,,,,0.25,,0.39,0.820699414,8120,9894,0.789665719,0.851733108,0.476038339,1490,3130,0.379104445,0.572972232,0.027078966,155,5724,,,0.225,663,,0.138021277,0.311978723,0.020833333,0,0.726103522,,,,0.717857143,0.448409572,0.987304713,,,,0.122097678,0.052219702,0.191975654,5.292790916,101611,19198,4.525841348,6.059740484,0.182088566,551,3026,0.105571405,0.258605727,8.766162612,12,13689,,,105.7235546,73,69048,82.87039005,132.9314972,,,,,,,,,,,,,112.929596,87.51888575,143.416595,,,,8.9,,,,,0,,,,,0.113676732,640,5630,0.075463328,0.151890135,0.084946237,0.052388058,0.117504416,0.019538188,0,0.039139931,0.011545293,0,0.025720699,0.86537725,4519,5222,0.813817991,0.916936509,,,,,,,,,,,,,0.854236343,0.789548988,0.918923699,0.395,,5222,0.324530682,0.465469319,73.10950146,,,71.60534876,74.61365416,,,,,,,,,,,,,73.49086451,71.97867018,75.00305884,,,,610.3088563,340,37129,540.9688445,679.6488682,,,,,,,900.8861418,640.618114,1231.541013,,,,594.4127033,521.8928446,666.932562,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.138,,,0.118,0.159,0.201,,,0.174,0.229,0.115,,,0.098,0.134,205.7,24,11667,,,0.168,2350,,,,0.004162538,60.62319601,14564,,,,,,,,,,,,,,,,,,,,,,,,,,0.396,,,0.379,0.411,0.146989836,1128,7674,0.123160049,0.170819623,0.048165138,147,3052,0.032675776,0.063654499,0.000802627,11,13705,,,1245.909091,0.925,139.675,151,,,,,,,,3.088662981,,,,,,,,,3.127506327,3.050683052,,,,,,,,,3.042825568,0.016076779,,,,,-3915.783,,,,,0.820969294,37538,45724,0.670115085,0.971823504,51523,,,44807.76596,58238.23404,,,,,,,26731,6211.170213,47250.82979,,,,53730,48738.85106,58721.14894,,,,,,0.501808318,1110,2212,,,19.53241818,,,,,0.258059507,,51523,,,6.157635468,5,812,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.48267872,10,69048,6.945007381,26.6341618,,,,,,,,,,,,,16.85516358,8.08270609,30.99724594,,,,32.00759922,31,96852,21.74761077,45.43223217,,,,,,,,,,,,,33.63322963,22.34903684,48.6093812,,,,15,,1400,,,21,0,0.670363467,7193,10730,,,0.557,,,,,6.11400856,,,,,0.746517028,3858,5168,0.707908622,0.785125434,0.068908942,336,4876,0.037062329,0.100755555,0.703366873,3635,5168,0.66215909,0.744574657,13705,,,,,0.217657789,2983,13705,,,0.225465159,3090,13705,,,0.100912076,1383,13705,,,0.00445093,61,13705,,,0.001240423,17,13705,,,0.000145932,2,13705,,,0.021160161,290,13705,,,0.855600146,11726,13705,,,0.000541,7,12939,0,0.007508502,0.505508938,6928,13705,,,1,13972,13972,, +01,077,01077,AL,Lauderdale County,2024,1,9455.793252,1720,255841,8742.951657,10168.63485,0,,,,2,,,,2,14549.15362,11771.4019,17326.90535,,,,,2,9074.316692,8314.167875,9834.465508,,,,,2,,0.178,,,0.149,0.208,4.094530924,,,3.230659827,5.031930405,5.842149817,,,4.728542911,6.977814092,0.093550894,602,6435,0.086435851,0.100665936,0,,,,,,,0.174540682,0.14758969,0.201491675,0.088757396,0.058438248,0.119076545,0.081938498,0.074438884,0.089438111,,,,,,,0.185,,,0.147,0.229,0.38,,,0.304,0.46,7.3,0.064706819,0.137,,,0.306,,,0.254,0.365,0.545412766,51031,93564,,,0.153311848,,,0.121721474,0.191572151,0.144736842,11,76,0.091703731,0.206906382,462.6,435,94043,,,17.37486496,386,22216,15.64152457,19.10820535,,,,,,,17.1096853,12.92447241,22.21834953,40.37267081,28.70891562,55.19077005,16.38189184,14.45960575,18.30417794,,,,18.34862385,9.481001695,32.05135329,0.127145503,9267,72885,0.110464652,0.143826354,0.000542305,51,94043,,,1843.980392,0.000584076,56,95878,,,1712.107143,0.001804376,173,95878,,,554.2080925,2400,,,,,,,3226,,2348,0.38,,,,,,0.2,0.36,,0.38,0.47,,,,,,0.4,0.36,0.29,0.47,0.887878694,57325,64564,0.874182015,0.901575373,0.555381062,12024,21650,0.510309463,0.600452662,0.026351965,1131,42919,,,0.188,3401,,0.128425532,0.247574468,0.753424658,0.373484677,1,,,,0.476805356,0.379824492,0.57378622,0.095559846,0,0.197257124,0.124823596,0.093797907,0.155849285,4.841128306,112929,23327,4.401167325,5.281089288,0.261082389,4747,18182,0.212871934,0.309292845,13.92979807,131,94043,,,79.77379506,371,465065,71.65616287,87.89142725,,,,,,,65.37514437,44.10833538,93.3270836,,,,84.52009389,75.42835404,93.61183374,,,,8,,,,,0,,,,,0.124496949,4795,38515,0.107111508,0.141882391,0.106377383,0.0899643,0.122790467,0.009476827,0.004853997,0.014099657,0.011294301,0.005994896,0.016593706,0.831440011,35717,42958,0.812884075,0.849995948,,,,,,,0.827021744,0.773053023,0.880990466,0.686250757,0.564745126,0.807756388,0.848164842,0.826339166,0.869990519,0.329,,42958,0.299165144,0.358834856,75.3650407,,,74.80824332,75.92183807,,,,,,,70.98753062,69.01523981,72.95982144,,,,75.5982425,75.00975788,76.18672713,,,,482.8126128,1720,255841,458.3379303,507.2872953,,,,,,,699.7717198,600.3908977,799.1525419,,,,471.3033195,445.3411504,497.2654886,,,,46.25017789,39,84324,32.88839772,63.22551571,,,,,,,,,,,,,39.72801589,25.95165897,58.21074808,,,,6.678055599,43,6439,4.832941949,8.995297066,,,,,,,,,,,,,6.037000974,4.101849266,8.569040994,,,,,,,0.122,,,0.104,0.143,0.185,,,0.16,0.214,0.108,,,0.092,0.127,123.4,100,81063,,,0.137,12740,,,,0.064706819,5998.904503,92709,,,12.49375312,35,280140,8.702356823,17.37578617,,,,,,,,,,,,,13.54153443,9.262399522,19.11660619,,,,0.403,,,0.384,0.42,0.15635209,8519,54486,0.134905282,0.177798899,0.04320033,838,19398,0.030093947,0.056306713,0.001209871,116,95878,,,826.5344828,0.961463415,906.66,943,,,0.036624848,181,4942,0.013223531,0.060026166,3.130774043,,,,,,,2.569234109,2.941420368,3.262844144,3.015394475,,,,,,,2.560568125,3.331649982,3.069390954,0.192259912,,,,,-2980.85849,,,,,0.734553404,40659,55352,0.665001129,0.804105679,59023,,,53220.44681,64825.55319,51397,46507.12766,56286.87234,,,,31670,21062.17021,42277.82979,58063,46697.38298,69428.61702,60539,55272.61702,65805.38298,,,,,,0.466023983,5946,12759,,,51.45467778,,,,,0.269217085,,59023,,,5.904681569,28,4742,,,6.307896101,41,649979,4.526655149,8.557373325,,,,,,,,,,,,,5.095578494,3.385974904,7.364529668,,,,13.25268082,63,465065,10.06331617,17.13216315,13.5464935,,,,,,,,,,,,,14.48412786,10.88092263,18.89864499,,,,14.19156462,66,465065,10.97575505,18.05514981,,,,,,,,,,,,,13.74724419,10.32735294,17.93717163,,,,21.53915742,140,649979,17.97119095,25.10712388,,,,,,,20.11823331,10.71211194,34.40279167,,,,22.74811828,18.76019731,26.73603924,,,,19.52941177,,8500,,,147,19,0.604444142,44339,73355,,,0.671,,,,,64.79091291,,,,,0.675131417,25815,38237,0.657994582,0.692268252,0.110481195,3995,36160,0.094855353,0.126107037,0.803854905,30737,38237,0.784876154,0.822833656,95878,,,,,0.191973133,18406,95878,,,0.207805753,19924,95878,,,0.099814347,9570,95878,,,0.005016792,481,95878,,,0.01062809,1019,95878,,,0.000813534,78,95878,,,0.03188427,3057,95878,,,0.835999917,80154,95878,,,0.009079552,814,89652,0.005184697,0.012974408,0.518210643,49685,95878,,,0.521632252,48806,93564,, +01,079,01079,AL,Lawrence County,2024,1,13336.11248,843,91171,11924.0166,14748.20837,0,,,,2,,,,2,22726.00044,16425.89871,29026.10218,,,,,2,13694.9633,12074.66348,15315.26311,,,,,2,,0.209,,,0.179,0.242,4.477922159,,,3.583072215,5.47147973,6.002357859,,,4.830077578,7.2250235,0.08444097,216,2558,0.073665764,0.095216176,0,,,,,,,0.147959184,0.098250851,0.197667517,0.081300813,0.03300187,0.129599756,0.07875895,0.0672244,0.0902935,,,,0.111111111,0.051839508,0.170382715,0.218,,,0.18,0.262,0.413,,,0.333,0.496,7.1,0.053540348,0.15,,,0.332,,,0.278,0.39,0.56493212,18684,33073,,,0.143979373,,,0.112747695,0.17871733,0.2,10,50,0.129217574,0.278985135,305.2,101,33090,,,33.79321036,218,6451,29.30723094,38.27918977,,,,,,,30.34901366,18.53796599,46.87159014,44.64285714,21.40798525,82.09980376,38.66548829,32.93672938,44.39424721,,,,29.41176471,15.19748801,51.37643394,0.149383503,3986,26683,0.130319673,0.168447332,0.000181324,6,33090,,,5515,9.03234E-05,3,33214,,,11071.33333,0.001294635,43,33214,,,772.4186047,4215,,,,,,,2821,,4400,0.38,,,,,,,0.51,,0.36,0.36,,,,,,,0.3,,0.37,0.826646222,19408,23478,0.792761873,0.860530571,0.507615513,3966,7813,0.435940277,0.579290749,0.024089028,355,14737,,,0.224,1587,,0.147744681,0.300255319,0.068259386,0,0.213095337,,,,0.195255475,0.048241952,0.342268997,,,,0.232718894,0.151390869,0.31404692,4.43356701,107514,24250,3.78103755,5.08609647,0.199944228,1434,7172,0.140253581,0.259634874,10.27500756,34,33090,,,101.2876265,167,164877,85.92539769,116.6498554,,,,,,,119.9246188,74.23522919,183.3175189,,,,113.4722509,94.8737593,132.0707425,,,,8.5,,,,,0,,,,,0.090836653,1140,12550,0.070070089,0.111603218,0.076329679,0.056059267,0.096600091,0.011155379,0.004021744,0.018289013,0.004780877,0,0.010213381,0.897376093,12312,13720,0.880895168,0.913857019,,,,,,,,,,,,,0.872503187,0.809439541,0.935566834,0.515,,13720,0.453433311,0.576566689,71.56507678,,,70.59902413,72.53112944,,,,,,,66.82450465,63.26987833,70.37913097,,,,70.71286039,69.63639509,71.7893257,,,,663.1404982,843,91171,615.5900544,710.690942,,,,,,,950.799384,763.5878498,1138.010918,,,,699.9404141,644.862132,755.0186963,,,,89.75509681,28,31196,59.64161,129.7211051,,,,,,,,,,,,,105.2031736,67.40565842,156.5339832,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.139,,,0.12,0.16,0.199,,,0.173,0.228,0.118,,,0.102,0.137,89,25,28093,,,0.15,4970,,,,0.053540348,1838.522022,34339,,,,,,,,,,,,,,,,,,,,,,,,,,0.387,,,0.371,0.402,0.185640395,3625,19527,0.160619119,0.210661672,0.053051456,399,7521,0.036370605,0.069732307,0.000421509,14,33214,,,2372.428571,0.92,301.76,328,,,,,,,,2.863666439,,,,,,,1.945394022,,2.907058003,2.740176195,,,,,,,2.279230376,,2.783071654,0.071940095,,,,,-2966.779,,,,,0.780004433,42231,54142,0.690662063,0.869346802,55516,,,48134.7234,62897.2766,103935,79084.10638,128785.8936,115446,74204.97872,156687.0213,39177,33211.21277,45142.78723,52308,43532.68085,61083.31915,55856,50078.46809,61633.53192,,,,,,0.554575987,2642,4764,,,69.22793649,,,,,0.295644499,,55516,,,4.697592484,8,1703,,,6.054420592,14,231236,3.310008077,10.15828899,,,,,,,,,,,,,,,,,,,25.02315592,36,164877,17.22478915,35.14181442,21.83445841,,,,,,,,,,,,,31.53741459,21.42814312,44.76484262,,,,23.04748388,38,164877,16.30977131,31.63447232,,,,,,,,,,,,,25.39239181,17.3683772,35.84648084,,,,33.29931326,77,231236,26.27929728,41.61842814,,,,,,,60.54001695,33.88378792,99.85155132,,,,34.49796971,26.38821332,44.3140853,,,,,,3400,,,72,-888,0.625722092,16031,25620,,,0.635,,,,,15.06361194,,,,,0.794372126,10191,12829,0.767158527,0.821585725,0.075602234,907,11997,0.052069522,0.099134946,0.698417648,8960,12829,0.654729208,0.742106087,33214,,,,,0.216535196,7192,33214,,,0.191515626,6361,33214,,,0.100560005,3340,33214,,,0.057716626,1917,33214,,,0.002649485,88,33214,,,0.000301078,10,33214,,,0.028481965,946,33214,,,0.763683989,25365,33214,,,0.005547054,174,31368,0.000243717,0.010850392,0.50978503,16932,33214,,,0.999939528,33071,33073,, +01,081,01081,AL,Lee County,2024,1,7740.279088,2123,484246,7264.981102,8215.577074,0,,,,2,1989.126275,1136.957534,3230.216452,1,11962.99058,10693.1393,13232.84185,,4434.308535,2810.971232,6653.640027,1,6821.648367,6291.063693,7352.233041,,,,,2,,0.174,,,0.148,0.203,4.010207905,,,3.195814092,4.796529174,5.250816944,,,4.273531537,6.162018745,0.096016962,1268,13206,0.090992095,0.101041829,0,,,,0.103846154,0.077625658,0.130066649,0.148589706,0.136701843,0.160477569,0.080037665,0.063717444,0.096357886,0.074692443,0.068919234,0.080465652,,,,0.107784431,0.060750557,0.154818305,0.159,,,0.127,0.193,0.389,,,0.325,0.45,6.9,0.110690195,0.134,,,0.3,,,0.253,0.348,0.614998766,107158,174241,,,0.162421428,,,0.130097133,0.195034159,0.284210526,27,95,0.231499015,0.338264978,493.7,875,177218,,,12.9735555,626,48252,11.95724148,13.98986953,,,,,,,24.45679636,21.37539723,27.53819549,43.60753221,34.97451599,53.72569933,8.402856971,7.418610136,9.387103807,,,,,,,0.117301162,17375,148123,0.1018118,0.132790524,0.000496564,88,177218,,,2013.840909,0.000342972,62,180773,,,2915.693548,0.001211464,219,180773,,,825.4474886,2325,,,,,,,3879,,1980,0.37,,,,,,0.27,0.34,,0.38,0.41,,,,,,0.35,0.31,0.22,0.44,0.917121139,98209,107084,0.906792043,0.927450234,0.774258255,35125,45366,0.728685047,0.819831464,0.023544661,1871,79466,,,0.13,4783,,0.079957447,0.180042553,,,,0.02970852,0,0.101340007,0.36195062,0.295409237,0.428492002,0.208277103,0.10605431,0.310499896,0.093231756,0.06088064,0.125582871,6.552235709,126314,19278,5.915574517,7.188896901,0.250472875,9137,36479,0.215155322,0.285790428,8.182013114,145,177218,,,63.77856848,532,834136,58.35887129,69.19826568,,,,40.97760866,22.40283997,68.75346443,83.281941,70.29585226,96.26802974,,,,61.98570954,55.48239238,68.4890267,,,,10.1,,,,,0,,,,,0.177836325,10800,60730,0.161638185,0.194034464,0.151965812,0.134320663,0.169610961,0.035731928,0.02711636,0.044347497,0.005269224,0.002994467,0.007543982,0.805571728,65033,80729,0.786996052,0.824147404,,,,0.747633136,0.685343792,0.80992248,0.791010862,0.749464859,0.832556866,0.772645254,0.667000474,0.878290035,0.790198913,0.770756091,0.809641736,0.269,,80729,0.243950371,0.294049629,77.15682684,,,76.70754914,77.60610454,,,,99.66388037,73.75166319,125.5760975,73.04243447,72.02351867,74.06135026,109.9110973,67.36381052,152.458384,77.8800387,77.3690286,78.3910488,,,,399.8954398,2123,484246,382.5555413,417.2353384,,,,123.3240325,73.08963752,194.9051395,544.0767967,501.7588972,586.3946961,169.7213213,108.743653,252.5318728,377.2784786,357.0349034,397.5220538,,,,60.26085999,104,172583,48.67909557,71.84262442,,,,,,,136.4190012,103.0494475,177.1514202,,,,36.71408903,26.22908347,49.99416885,,,,6.884551369,91,13218,5.54301131,8.452703504,,,,,,,12.31033496,8.909050447,16.5819404,,,,4.376641241,3.048490984,6.086848489,,,,,,,0.12,,,0.104,0.137,0.172,,,0.147,0.195,0.113,,,0.097,0.129,218.6,330,150952,,,0.134,23020,,,,0.110690195,15523.9678,140247,,,10.42094728,53,508591,7.806004615,13.63085563,,,,,,,,,,,,,13.68435151,10.05474677,18.19728652,,,,0.363,,,0.348,0.377,0.144046605,16072,111575,0.124982776,0.163110435,0.039400551,1517,38502,0.027485657,0.051315444,0.000746793,135,180773,,,1339.059259,0.9054781,1467.78,1621,,,,,,,,3.101688832,,,,,,,2.718169175,2.619136276,3.375346862,2.998968313,,,,,,3.63661703,2.516771738,2.720453407,3.255065406,0.096340932,,,,,-5115.897,,,,,0.785684981,45961,58498,0.725198771,0.84617119,59637,,,54835.29787,64438.70213,,,,82774,65694,99854,39638,37091.78723,42184.21277,44609,36751.12766,52466.87234,69287,65972.2766,72601.7234,,,,,,0.382145097,9139,23915,,,32.2337602,,,,,0.255395141,,59637,,,4.807692308,47,9776,,,8.694744896,100,1150120,6.990574897,10.3989149,,,,,,,26.19351312,20.38011668,33.14956727,,,,3.606067982,2.396205986,5.211772259,,,,12.75433664,110,834136,10.30050022,15.20817306,13.187298,,,,,,,8.090610431,4.795008498,12.78665255,,,,14.53175182,11.48674679,18.13628394,,,,16.66394928,139,834136,13.89365053,19.43424804,,,,,,,31.09895265,23.67396366,40.1153831,,,,13.32071122,10.47758439,16.69762686,,,,13.82464439,159,1150120,11.67576778,15.97352099,,,,,,,18.60119048,13.76126312,24.59176028,,,,13.39396679,10.81972925,15.96820433,,,,8.93081761,,15900,,,136,6,0.57748232,71449,123725,,,0.619,,,,,82.82140932,,,,,0.652441457,42517,65166,0.634811057,0.670071857,0.165570782,10173,61442,0.146345768,0.184795796,0.860233864,56058,65166,0.842317277,0.878150452,180773,,,,,0.205932302,37227,180773,,,0.136109928,24605,180773,,,0.227235262,41078,180773,,,0.003601202,651,180773,,,0.042296139,7646,180773,,,0.000918279,166,180773,,,0.040476177,7317,180773,,,0.670614528,121229,180773,,,0.013262199,2195,165508,0.009678473,0.016845925,0.506552417,91571,180773,,,0.263898853,45982,174241,, +01,083,01083,AL,Limestone County,2024,1,8328.605774,1592,289839,7707.925261,8949.286287,0,,,,2,,,,2,7996.832878,6233.041438,9760.624319,,5690.419635,3839.302232,8123.427859,,8888.095863,8137.444107,9638.747619,,,,,2,,0.171,,,0.142,0.201,3.862648152,,,3.045010849,4.757269633,5.50746686,,,4.456816203,6.619672654,0.087875565,661,7522,0.081477473,0.094273658,0,,,,,,,0.157543391,0.131452493,0.183634289,0.075875486,0.059688146,0.092062827,0.08090379,0.073689162,0.088118418,,,,0.086330935,0.039640669,0.133021202,0.168,,,0.132,0.207,0.366,,,0.295,0.442,7.7,0.064263674,0.119,,,0.293,,,0.241,0.351,0.491541952,50909,103570,,,0.15129531,,,0.119818261,0.187683065,0.282051282,33,117,0.234757834,0.330507751,296.7,319,107517,,,20.70236801,438,21157,18.76354109,22.64119493,,,,,,,15.03759399,10.83777506,20.32645857,44.49064449,36.06054152,52.92074746,18.86792453,16.64192196,21.0939271,,,,,,,0.113295508,9964,87947,0.098997635,0.12759338,0.000344132,37,107517,,,2905.864865,0.000297565,33,110900,,,3360.606061,0.000568079,63,110900,,,1760.31746,2746,,,,,,,5532,,2556,0.42,,,,,,0.46,0.39,0.36,0.43,0.44,,,,,,0.58,0.33,0.31,0.45,0.873267002,63807,73067,0.857656136,0.888877868,0.652250787,18445,28279,0.602417673,0.702083901,0.020957898,1013,48335,,,0.138,3275,,0.096297872,0.179702128,0.309278351,0,0.648541671,,,,0.317866435,0.172263075,0.463469796,0.423106061,0.329578922,0.516633199,0.098645541,0.061570654,0.135720427,4.444526344,150745,33917,4.002842599,4.886210089,0.179471554,4123,22973,0.137010585,0.221932522,8.277760726,89,107517,,,63.89763559,319,499236,56.88557729,70.90969388,,,,,,,41.4704227,27.55679472,59.93630727,61.14042991,36.81053277,95.47835491,70.27871057,61.8329447,78.72447644,,,,8.6,,,,,0,,,,,0.099312452,3250,32725,0.082052381,0.116572524,0.077148588,0.063782028,0.090515149,0.019251337,0.011124482,0.027378192,0.006722689,0.003107558,0.010337821,0.841255416,39804,47315,0.820365793,0.862145039,,,,,,,0.825830549,0.769788762,0.881872335,0.799076213,0.651597285,0.94655514,0.809125648,0.789003397,0.829247899,0.408,,47315,0.373570287,0.442429713,76.43837444,,,75.89534735,76.98140153,,,,84.52575408,78.15950597,90.8920022,77.32552647,75.48208075,79.16897218,,,,75.81285418,75.19789027,76.42781809,,,,427.1878433,1592,289839,405.636697,448.7389896,,,,,,,418.2670871,359.1184511,477.415723,267.1218978,174.4928922,391.3954712,448.2676221,423.2493858,473.2858584,,,,50.71611149,50,98588,37.64247549,66.86287039,,,,,,,,,,,,,51.31061983,35.73972674,71.36065116,,,,5.572923746,41,7357,3.999226297,7.560300335,,,,,,,,,,,,,4.808581469,3.141125063,7.045685978,,,,,,,0.114,,,0.097,0.133,0.176,,,0.15,0.202,0.105,,,0.09,0.122,144.7,132,91206,,,0.119,12080,,,,0.064263674,5319.875434,82782,,,4.859716193,15,308660,2.719946262,8.015362817,,,,,,,,,,,,,5.147983063,2.66003797,8.9924904,,,,0.388,,,0.372,0.404,0.139432333,8980,64404,0.120368504,0.158496163,0.044748969,1107,24738,0.031642586,0.057855352,0.000649234,72,110900,,,1540.277778,0.893512304,1198.2,1341,,,0.088330478,464,5253,0.035436548,0.141224408,2.879799087,,,,,,,2.618602011,2.44850081,3.07121377,2.756358833,,,,,,,2.391624446,2.500076562,2.903069833,0.079808708,,,,,-3144.2535,,,,,0.717714268,47489,66167,0.629813891,0.805614646,83159,,,78824.3617,87493.6383,53531,43970.48936,63091.51064,162847,77933.12766,247760.8723,53476,41364.51064,65587.48936,53764,27433.2766,80094.7234,84890,80333.74468,89446.25532,,,,,,0.394143341,8843,22436,,,40.7866843,,,,,0.191079739,,83159,,,3.134796238,17,5423,,,6.582296256,45,683652,4.801172057,8.807630271,,,,,,,10.88174804,5.218221156,20.01192209,,,,5.573750327,3.732828071,8.004835217,,,,14.69685617,79,499236,11.56000969,18.42263647,15.82417935,,,,,,,,,,,,,17.10448571,13.25574149,21.72209222,,,,18.62846429,93,499236,15.0355749,22.82112729,,,,,,,,,,,,,20.60804295,16.28980277,25.71977026,,,,18.86924927,129,683652,15.61301353,22.125485,,,,,,,16.32262207,9.135647663,26.92168283,,,,20.18082015,16.32070523,24.04093506,,,,8.703703704,,10800,,,41,53,0.669545115,49235,73535,,,0.592,,,,,29.34534519,,,,,0.776936638,29968,38572,0.752642332,0.801230944,0.078917066,2947,37343,0.065251593,0.092582539,0.877683294,33854,38572,0.861838155,0.893528432,110900,,,,,0.217366997,24106,110900,,,0.15896303,17629,110900,,,0.14012624,15540,110900,,,0.008845807,981,110900,,,0.020883679,2316,110900,,,0.001650135,183,110900,,,0.066844004,7413,110900,,,0.744481515,82563,110900,,,0.009867519,972,98505,0.00581909,0.013915949,0.496645627,55078,110900,,,0.510128416,52834,103570,, +01,085,01085,AL,Lowndes County,2024,1,19376.98863,302,26812,15991.2624,22762.71486,0,,,,2,,,,2,21997.64539,17908.6063,26086.68447,,,,,2,13658.82797,7467.40835,22917.19242,1,,,,2,,0.278,,,0.238,0.317,4.823804679,,,3.820028014,5.857014548,5.969687433,,,4.752283279,7.218906959,0.146285714,128,875,0.122869899,0.169701529,0,,,,,,,0.172463768,0.144275138,0.200652398,,,,,,,,,,,,,0.233,,,0.188,0.277,0.474,,,0.384,0.556,5.3,0.202040066,0.162,,,0.416,,,0.347,0.476,0.009116478,94,10311,,,0.106521094,,,0.081759896,0.133562497,0.236842105,9,38,0.153038699,0.327558833,963.4,96,9965,,,33.16062176,64,1930,25.53771945,42.34537368,,,,,,,37.62376238,28.49587021,48.74594812,,,,,,,,,,,,,0.108444794,827,7626,0.091763943,0.125125645,0.000100351,1,9965,,,9965,,0,9777,,,,0.000102281,1,9777,,,9777,3583,,,,,,,2930,,3159,0.44,,,,,,,0.46,,0.42,0.31,,,,,,,0.25,,0.35,0.83326226,5862,7035,0.799132539,0.867391981,0.477523325,1126,2358,0.359331147,0.595715503,0.05191101,182,3506,,,0.461,971,,0.315638298,0.606361702,,,,,,,0.497487437,0.416362482,0.578612393,,,,,,,6.48773842,85716,13212,5.669008747,7.306468092,0.533750559,1194,2237,0.418327599,0.649173519,6.021073758,6,9965,,,127.5768499,63,49382,98.03355432,163.2262105,,,,,,,146.2070517,109.1944194,191.7310964,,,,81.3140348,38.99324033,149.5394051,,,,9.4,,,,,0,,,,,0.1886121,795,4215,0.144200372,0.233023827,0.16960193,0.124996551,0.214207309,0.014946619,0.003389993,0.026503245,0.010676157,0,0.024233156,0.856946733,3121,3642,0.814627672,0.899265794,,,,,,,0.873179092,0.774889879,0.971468305,,,,0.791516246,0.653141514,0.929890977,0.624,,3642,0.520600963,0.727399037,68.41725499,,,66.35886303,70.47564695,,,,,,,66.37210368,64.05291615,68.69129121,,,,73.00929895,68.1558101,77.86278781,,,,846.2497943,302,26812,743.0511311,949.4484576,,,,,,,956.181003,825.260335,1087.101671,,,,605.5449733,449.4471509,798.335556,,,,147.0742725,14,9519,80.40687337,246.7656384,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.154,,,0.132,0.176,0.204,,,0.175,0.233,0.173,,,0.148,0.197,548.5,46,8386,,,0.162,1680,,,,0.202040066,2282.850702,11299,,,,,,,,,,,,,,,,,,,,,,,,,,0.463,,,0.448,0.478,0.135110791,750,5551,0.112472493,0.157749089,0.038763267,84,2167,0.024465395,0.05306114,0.000306843,3,9777,,,3259,0.825,63.525,77,,,,,,,,2.229613109,,,,,,,2.21903912,,,2.169597265,,,,,,,2.168840475,,,0.075445246,,,,,-38643.01,,,,,0.774555342,34185,44135,0.573613481,0.975497202,42268,,,36332,48204,,,,,,,26110,24159.53192,28060.46809,,,,81159,73622.82979,88695.17021,,,,,,0.96440678,1138,1180,,,31.5048798,,,,,0.338293745,,42268,,,1.560062403,1,641,,,47.00988632,33,70198,32.35944268,66.01935849,,,,,,,55.29881108,36.74565836,79.92217866,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,68.85099834,34,49382,47.68131786,96.21236907,,,,,,,75.91519991,50.0285951,110.4526302,,,,,,,,,,34.18900823,24,70198,21.90554269,50.87053419,,,,,,,39.49915077,24.12710745,61.00323479,,,,,,,,,,6.666666667,,900,,,6,0,0.89171559,6835,7665,,,0.504,,,,,9.523095089,,,,,0.774806298,3100,4001,0.733332867,0.81627973,0.192328918,697,3624,0.139432294,0.245225543,0.615096226,2461,4001,0.563131929,0.667060523,9777,,,,,0.217551396,2127,9777,,,0.205482254,2009,9777,,,0.723023422,7069,9777,,,0.003477549,34,9777,,,0.004909481,48,9777,,,0.000409124,4,9777,,,0.018001432,176,9777,,,0.243939859,2385,9777,,,0.000313644,3,9565,0,0.010059418,0.519893628,5083,9777,,,1,10311,10311,, +01,087,01087,AL,Macon County,2024,1,13985.93351,460,50194,11886.07382,16085.79319,0,,,,2,,,,2,15426.5435,12911.53828,17941.54871,,,,,2,11583.11888,7342.703758,17380.36558,1,,,,2,,0.249,,,0.211,0.289,4.487153413,,,3.585543008,5.529070561,5.732408438,,,4.582870193,6.965285105,0.129966887,157,1208,0.111003896,0.148929879,0,,,,,,,0.139751553,0.117886135,0.161616971,,,,0.094339623,0.054992055,0.13368719,,,,,,,0.201,,,0.159,0.245,0.479,,,0.395,0.566,5.8,0.22099887,0.129,,,0.376,,,0.316,0.438,0.353215237,6899,19532,,,0.115894391,,,0.089805463,0.145463301,0.277777778,15,54,0.206953866,0.35113285,920.9,174,18895,,,17.82846129,111,6226,14.51174408,21.1451785,,,,,,,17.5,14.20734591,21.3268947,,,,32.87671233,16.98787701,57.42900013,,,,,,,0.117173454,1499,12793,0.098109624,0.136237284,0.000317544,6,18895,,,3149.166667,0.000270037,5,18516,,,3703.2,0.004698639,87,18516,,,212.8275862,2803,,,,,,,2791,,2521,0.36,,,,,,,0.36,,0.36,0.3,,,,,,,0.28,,0.36,0.827188552,9827,11880,0.795608254,0.85876885,0.484796328,1690,3486,0.40196689,0.567625766,0.038031035,299,7862,,,0.465,1400,,0.317255319,0.612744681,,,,,,,0.375411184,0.282025453,0.468796916,,,,0.034274194,0,0.126356417,5.525898959,86519,15657,4.577607075,6.474190843,0.539955428,1696,3141,0.443816282,0.636094575,6.880127018,13,18895,,,109.7205927,101,92052,88.32208293,131.1191025,,,,,,,114.4601297,91.29788213,141.709429,,,,106.1148694,60.65381651,172.3238997,,,,9.7,,,,,0,,,,,0.137681159,1045,7590,0.108950219,0.1664121,0.122826087,0.093762979,0.151889195,0.012384717,0.003559915,0.021209518,0.0085639,0.002917203,0.014210597,0.767496685,5209,6787,0.739781135,0.795212234,,,,,,,0.706443408,0.649984987,0.76290183,,,,0.764122894,0.635266798,0.89297899,0.358,,6787,0.296329634,0.419670366,72.04865037,,,70.60895146,73.48834929,,,,,,,71.01574291,69.34779239,72.68369344,,,,73.4557363,70.20167536,76.70979723,,,,668.7759852,460,50194,601.0243374,736.527633,,,,,,,723.6920224,643.0110534,804.3729915,,,,563.7382797,426.9698678,730.3883291,,,,71.5734224,12,16766,36.98303178,125.0243651,,,,,,,80.66881784,40.26958322,144.3387981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.14,,,0.12,0.162,0.195,,,0.168,0.224,0.165,,,0.143,0.19,632.9,105,16591,,,0.129,2510,,,,0.22099887,4740.867764,21452,,,,,,,,,,,,,,,,,,,,,,,,,,0.46,,,0.442,0.478,0.144715281,1413,9764,0.119694004,0.169736557,0.029981262,96,3202,0.019257858,0.040704666,0.000972132,18,18516,,,1028.666667,0.925,126.725,137,,,0.085201794,190,2230,0.026906075,0.143497512,2.294061132,,,,,,,2.255069657,,,1.973541421,,,,,,,1.941014309,,,0.07837784,,,,,-31816.49,,,,,0.759429064,34371,45259,0.62656209,0.892296038,36601,,,31151.12766,42050.87234,,,,,,,36512,30608.17021,42415.82979,73370,26976.97872,119763.0213,71771,52155.51064,91386.48936,,,,,,0.965853659,1782,1845,,,57.18353317,,,,,0.416136171,,36601,,,8.888888889,8,900,,,41.5001537,54,130120,31.17619272,54.14869843,,,,,,,48.06675511,35.67607212,63.37002429,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,46.71272759,43,92052,33.80623258,62.92173751,,,,,,,53.14220309,37.78930137,72.64714104,,,,,,,,,,26.89824777,35,130120,18.73561513,37.40895125,,,,,,,28.84005307,19.4582627,41.17096902,,,,,,,,,,5,,1400,,,7,0,0.573692864,8723,15205,,,0.501,,,,,14.44192287,,,,,0.629504978,4489,7131,0.598252871,0.660757086,0.162421913,1014,6243,0.127767511,0.197076314,0.710839994,5069,7131,0.678399667,0.743280322,18516,,,,,0.167584792,3103,18516,,,0.21521927,3985,18516,,,0.78764312,14584,18516,,,0.003402463,63,18516,,,0.005778786,107,18516,,,0.000162022,3,18516,,,0.025491467,472,18516,,,0.166126593,3076,18516,,,0.003605966,66,18303,0,0.010490361,0.54352992,10064,18516,,,0.5390641,10529,19532,, +01,089,01089,AL,Madison County,2024,1,8957.288662,5542,1074441,8608.879581,9305.697743,0,,,,2,3062.313966,1843.713052,4782.182594,1,11670.78235,10878.98742,12462.57727,,5358.766709,4221.891465,6495.641953,,8647.991745,8217.158792,9078.824697,,,,,2,,0.144,,,0.121,0.17,3.4678392,,,2.722473087,4.228702485,5.100287967,,,4.201572989,6.003000002,0.101617394,3066,30172,0.098208066,0.105026721,0,,,,0.097468354,0.076785734,0.118150975,0.160650029,0.152895769,0.168404289,0.08275357,0.072420447,0.093086693,0.075470605,0.071530371,0.07941084,,,,0.103397341,0.080461407,0.126333275,0.138,,,0.108,0.172,0.419,,,0.361,0.477,7.5,0.093429074,0.112,,,0.251,,,0.208,0.295,0.78071276,303036,388153,,,0.139526854,,,0.113543835,0.168827064,0.322869955,72,223,0.289360571,0.356598456,602.2,2380,395211,,,16.10374804,1356,84204,15.24660522,16.96089086,,,,,,,22.36518448,20.5620222,24.16834677,36.01062064,31.21928262,40.80195867,10.79359462,9.835932602,11.75125664,,,,14.94220468,11.19273666,19.54477162,0.093297854,30223,323941,0.083765939,0.102829769,0.000855239,338,395211,,,1169.263314,0.000537708,217,403565,,,1859.746544,0.001860915,751,403565,,,537.3701731,2629,,,,,,1130,3434,2654,2486,0.49,,,,,,0.43,0.47,0.38,0.49,0.42,,,,,,0.45,0.3,0.31,0.44,0.922246123,246521,267305,0.915185101,0.929307145,0.75771317,78368,103427,0.728542494,0.786883845,0.021291867,4242,199231,,,0.139,11726,,0.103255319,0.174744681,0.098121086,0,0.302208954,0.031939605,0,0.068283319,0.273445805,0.235863416,0.311028195,0.245448323,0.182400605,0.308496042,0.068133901,0.05466494,0.081602863,4.978311362,158609,31860,4.739433537,5.217189188,0.258108108,21583,83620,0.232646573,0.283569643,10.24769047,405,395211,,,75.83441859,1422,1875138,71.89281781,79.77601936,,,,28.14522938,15.38725881,47.22291247,75.22249678,67.27327535,83.1717182,46.30105978,33.77231072,61.95446085,83.19185481,78.05096982,88.3327398,,,,7.4,,,,,0,,,,,0.113071292,17145,151630,0.104233103,0.121909481,0.098245614,0.090185287,0.106305941,0.013420827,0.010230852,0.016610802,0.004715426,0.003223387,0.006207464,0.801191043,153102,191093,0.793610269,0.808771817,0.63658147,0.534331453,0.738831486,0.743394219,0.656466198,0.83032224,0.83369922,0.814333114,0.853065326,0.754232709,0.701297356,0.807168062,0.825588037,0.814878807,0.836297268,0.269,,191093,0.253975891,0.284024109,76.65173326,,,76.35507023,76.94839629,,,,86.99953966,84.06362097,89.93545834,73.93794496,73.29102736,74.58486256,84.89465298,81.71243948,88.07686647,76.82709122,76.47147325,77.1827092,,,,418.4923835,5542,1074441,407.0796011,429.9051659,,,,153.5140208,114.992536,200.800119,525.1024509,498.1288412,552.0760607,224.7859181,179.7127039,269.8591323,413.160068,399.3458297,426.9743063,,,,61.89445909,228,368369,53.86030014,69.92861804,,,,,,,92.20839096,74.3329773,113.085406,47.60544606,26.64440678,78.51794367,53.02814831,43.11831861,62.937978,,,,6.772841576,202,29825,5.838832054,7.706851098,,,,,,,10.53864169,8.474312428,12.95377984,,,,5.803830528,4.666279745,6.941381312,,,,,,,0.101,,,0.086,0.117,0.164,,,0.142,0.187,0.102,,,0.088,0.118,258,864,334888,,,0.112,42710,,,,0.093429074,31281.08163,334811,,,26.92639161,309,1147573,23.92408537,29.92869785,,,,,,,25.41450703,19.84894084,32.05694249,,,,30.86068836,26.85484229,34.86653442,,,,0.387,,,0.373,0.402,0.112301252,26882,239374,0.09919487,0.125407635,0.04164082,3692,88663,0.030917416,0.052364224,0.001551175,626,403565,,,644.672524,0.925012742,3629.75,3924,,,0.05240441,1117,21315,0.035423129,0.069385691,3.164968022,,,,,,3.549159498,2.651486868,2.544186699,3.569443172,2.975704892,,,,,,3.894724063,2.446181805,2.519314946,3.340728966,0.129122187,,,,,-2102.7935,,,,,0.673370513,50591,75131,0.628657211,0.718083815,80426,,,76110.42553,84741.57447,95213,87966.3617,102459.6383,96833,72569.51064,121096.4894,52552,48531.91489,56572.08511,56138,48772.21277,63503.78723,91033,88111.46809,93954.53192,,,,,,0.320209189,17144,53540,,,47.66954136,,,,,0.197572924,,80426,,,6.691080067,148,22119,,,7.929772389,205,2585194,6.844247307,9.01529747,,,,,,,19.52470828,16.07416031,22.97525625,,,,4.188063182,3.264800712,5.291365879,,,,15.11381581,300,1875138,13.3537227,16.87390893,15.99882249,,,,,,,6.875902035,4.703111902,9.706722094,,,,19.47114078,16.97309221,21.96918935,,,,18.23865764,342,1875138,16.30563967,20.1716756,,,,,,,24.70971551,20.15370628,29.26572474,,,,17.69687567,15.32579798,20.06795337,,,,13.77072668,356,2585194,12.34022646,15.20122691,,,,,,,17.46112123,14.19801016,20.72423229,18.27624545,11.70993531,27.19360453,12.6838485,10.97643312,14.39126387,,,,12.17741936,,37200,,,188,265,0.698966445,194767,278650,,,0.741,,,,,82.54929331,,,,,0.680238643,108545,159569,0.669466359,0.691010926,0.105128635,16288,154934,0.095784613,0.114472658,0.901108611,143789,159569,0.891151222,0.911066001,403565,,,,,0.212025324,85566,403565,,,0.159989097,64566,403565,,,0.247142344,99738,403565,,,0.007416401,2993,403565,,,0.027071228,10925,403565,,,0.001015945,410,403565,,,0.055919121,22567,403565,,,0.636142877,256725,403565,,,0.010511515,3865,367692,0.008491633,0.012531397,0.506173727,204274,403565,,,0.171022767,66383,388153,, +01,091,01091,AL,Marengo County,2024,1,14936.97211,479,51736,12826.18997,17047.75426,0,,,,2,,,,2,17825.55257,14692.89725,20958.20789,,,,,2,11057.88705,8214.772016,13901.00208,,,,,2,,0.239,,,0.206,0.275,4.488450535,,,3.587485572,5.506195463,5.497213603,,,4.41138155,6.677293305,0.120580808,191,1584,0.104544088,0.136617528,0,,,,,,,0.15261959,0.128831851,0.176407329,,,,0.078125,0.057332959,0.098917041,,,,,,,0.208,,,0.17,0.249,0.472,,,0.392,0.552,6.2,0.132472255,0.154,,,0.366,,,0.31,0.424,0.475702531,9192,19323,,,0.117110501,,,0.092306994,0.146305541,0.21875,7,32,0.128580322,0.319266194,658,125,18996,,,25.94458438,103,3970,20.9340485,30.95512027,,,,,,,30.60778312,23.86026852,38.67109262,,,,18.29268293,12.05499331,26.61489326,,,,,,,0.111669952,1643,14713,0.094989101,0.128350803,0.000421141,8,18996,,,2374.5,0.000266738,5,18745,,,3749,0.000320085,6,18745,,,3124.166667,3688,,,,,,,6064,,2247,0.39,,,,,,,0.36,,0.41,0.31,,,,,,,0.22,,0.37,0.891051781,11581,12997,0.861425717,0.920677845,0.581791626,2390,4108,0.462843627,0.700739625,0.034161083,260,7611,,,0.341,1405,,0.213510638,0.468489362,,,,0.893333333,0.748469442,1,0.504061565,0.406626516,0.601496613,0.564315353,0.285238702,0.843392004,,,,6.287172486,96703,15381,5.085803137,7.488541834,0.492183908,2141,4350,0.358784405,0.625583411,14.21351864,27,18996,,,104.1743394,99,95033,84.66776262,126.8285204,,,,,,,112.9688206,85.10357592,147.0444481,,,,96.82371,69.48236597,131.3522956,,,,9.4,,,,,0,,,,,0.112,840,7500,0.081205909,0.142794091,0.10455192,0.073748395,0.135355445,0.0016,0,0.005270309,0.012666667,0,0.02846803,0.848222733,6276,7399,0.815704025,0.880741441,,,,,,,0.905626781,0.837737612,0.973515949,,,,0.800884956,0.73316567,0.868604241,0.392,,7399,0.309373842,0.474626158,70.68698569,,,69.30686249,72.06710888,,,,,,,67.98556413,66.0782995,69.89282877,,,,74.19010244,72.1521249,76.22807999,,,,684.0118616,479,51736,618.3854657,749.6382576,,,,,,,837.5477529,736.9171343,938.1783715,,,,497.6260749,413.0986079,582.1535418,,,,107.0835787,20,18677,65.40943184,165.3819024,,,,,,,136.4389436,74.59244008,228.9213636,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.142,,,0.123,0.163,0.195,,,0.171,0.222,0.149,,,0.128,0.171,193.7,31,16002,,,0.154,2990,,,,0.132472255,2785.494098,21027,,,,,,,,,,,,,,,,,,,,,,,,,,0.436,,,0.421,0.449,0.140306362,1493,10641,0.117668064,0.16294466,0.03873979,166,4285,0.025633407,0.051846173,0.000746866,14,18745,,,1338.928571,0.889872263,243.825,274,,,,,,,,2.745951239,,,,,,,2.532334929,,3.087638838,2.577754846,,,,,,,2.347580459,,2.927948222,0.151528257,,,,,-23708.95667,,,,,0.627542875,36555,58251,0.448116729,0.806969021,45587,,,40038.23404,51135.76596,,,,,,,29299,23015.08511,35582.91489,,,,69760,55431.14894,84088.85106,,,,,,0.649032992,2282,3516,,,28.84453496,,,,,0.2823612,,45587,,,5.485893417,7,1276,,,14.84406312,20,134734,9.06713939,22.92545156,,,,,,,23.23757516,13.28228201,37.73636622,,,,,,,,,,15.58681839,13,95033,8.053936511,27.22703494,13.67945871,,,,,,,,,,,,,24.93715989,10.76609565,49.13614625,,,,24.20211926,23,95033,15.34206753,36.31506203,,,,,,,24.64774268,12.73584831,43.0546462,,,,25.97709293,12.96767119,46.48019486,,,,26.71931361,36,134734,18.71387877,36.99079259,,,,,,,34.85636274,22.33312931,51.8635048,,,,18.23970286,9.10519395,32.63586674,,,,21.05263158,,1900,,,40,0,0.746319754,10900,14605,,,0.475,,,,,20.42912176,,,,,0.68274834,5038,7379,0.653242201,0.712254479,0.100970874,676,6695,0.063822973,0.138118775,0.771378236,5692,7379,0.728230242,0.814526229,18745,,,,,0.222566018,4172,18745,,,0.205974927,3861,18745,,,0.510696186,9573,18745,,,0.002827421,53,18745,,,0.003841024,72,18745,,,0.001813817,34,18745,,,0.032862097,616,18745,,,0.439263804,8234,18745,,,0,0,17943,0,0.005312331,0.525046679,9842,18745,,,0.677741552,13096,19323,, +01,093,01093,AL,Marion County,2024,1,12316.65322,737,80138,10892.04601,13741.26043,0,,,,2,,,,2,13462.66841,7168.303936,23021.573,1,,,,2,12658.05363,11136.03567,14180.0716,,,,,2,,0.21,,,0.176,0.248,4.594484512,,,3.653633379,5.702634042,6.131390363,,,4.924062794,7.478279448,0.105120073,232,2207,0.092323899,0.117916246,0,,,,,,,0.207317073,0.119573275,0.295060872,,,,0.101101101,0.087882311,0.114319891,,,,,,,0.22,,,0.177,0.269,0.392,,,0.308,0.475,7,0.010310084,0.177,,,0.333,,,0.273,0.396,0.312736444,9176,29341,,,0.145534858,,,0.113743637,0.180022847,0.333333333,10,30,0.236916088,0.429411676,246.2,72,29246,,,38.13485873,220,5769,33.09559749,43.17411996,,,,,,,50.92592593,25.42203874,91.12054867,,,,38.21656051,32.89333243,43.53978859,,,,,,,0.134193037,3049,22721,0.115129208,0.153256867,0.000239349,7,29246,,,4178,0.00020579,6,29156,,,4859.333333,0.000274386,8,29156,,,3644.5,3984,,,,,,,634,,4014,0.38,,,,,,,0.38,,0.37,0.35,,,,,,,0.29,,0.35,0.806206399,16757,20785,0.780612435,0.831800362,0.574332713,3701,6444,0.492686613,0.655978813,0.024913094,344,13808,,,0.23,1382,,0.150170213,0.309829787,0.90625,0.411241789,1,,,,0.084677419,0,0.234280534,0.175925926,0,0.474835093,0.208871421,0.15138324,0.266359601,4.801584819,92104,19182,4.166424659,5.436744979,0.17519909,1078,6153,0.104250191,0.246147989,8.89010463,26,29246,,,83.64023905,124,148254,68.91845326,98.36202484,,,,,,,,,,,,,87.59983805,71.86052063,103.3391555,,,,8.6,,,,,1,,,,,0.110356537,1300,11780,0.079800876,0.140912197,0.073521851,0.048408159,0.098635543,0.022495756,0.011036368,0.033955143,0.016977929,0,0.034443282,0.863903719,9547,11051,0.821594518,0.90621292,,,,,,,,,,,,,0.858956122,0.812764785,0.905147459,0.31,,11051,0.246391874,0.373608126,72.44937035,,,71.43409833,73.46464236,,,,,,,,,,,,,72.14316813,71.07652951,73.20980675,,,,635.7800284,737,80138,587.0959029,684.4641539,,,,,,,697.0959648,459.3906333,1014.23803,,,,648.1914665,596.9445482,699.4383848,,,,85.01829742,23,27053,53.89430761,127.5691897,,,,,,,,,,,,,87.85875659,54.38595508,134.3014423,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.141,,,0.119,0.165,0.203,,,0.174,0.233,0.114,,,0.096,0.134,156.3,39,24955,,,0.177,5220,,,,0.010310084,317.3031544,30776,,,11.27929798,10,88658,5.408861802,20.74303057,,,,,,,,,,,,,,,,,,,0.372,,,0.354,0.389,0.169037757,2816,16659,0.144016481,0.194059034,0.040595611,259,6380,0.027489228,0.053701994,0.000960351,28,29156,,,1041.285714,0.90287037,292.53,324,,,0.168627451,258,1530,0.07278343,0.264471472,3.061671918,,,,,,,,,3.042948491,2.837091567,,,,,,,,,2.864269225,0.046255211,,,,,-1688.6665,,,,,0.678206809,34145,50346,0.601734251,0.754679367,47742,,,41188.80851,54295.19149,8942,7109.489362,10774.51064,,,,27898,9750.425532,46045.57447,56850,30594.34043,83105.65957,50463,46485.80851,54440.19149,,,,,,0.476087427,2200,4621,,,43.76304368,,,,,0.278496921,,47742,,,6.147540984,9,1464,,,,,,,,,,,,,,,,,,,,,,,,,,21.92896973,31,148254,14.57164113,31.69346686,20.91005976,,,,,,,,,,,,,24.01020904,15.95460954,34.70143714,,,,20.23554171,30,148254,13.65283501,28.88749403,,,,,,,,,,,,,21.34785969,14.29699668,30.65908752,,,,24.46982056,51,208420,18.21938866,32.17329497,,,,,,,,,,,,,26.17828459,19.4300274,34.51280467,,,,,,2900,,,21,-888,0.590800171,13807,23370,,,0.571,,,,,6.475239392,,,,,0.728898167,8031,11018,0.700030846,0.757765487,0.058233122,615,10561,0.039013134,0.07745311,0.754583409,8314,11018,0.724381323,0.784785495,29156,,,,,0.209630951,6112,29156,,,0.214912882,6266,29156,,,0.039717382,1158,29156,,,0.005179037,151,29156,,,0.003464124,101,29156,,,0.000754562,22,29156,,,0.029256414,853,29156,,,0.910755934,26554,29156,,,0.002700951,75,27768,0,0.006634533,0.503875703,14691,29156,,,1,29341,29341,, +01,095,01095,AL,Marshall County,2024,1,12205.53695,2052,271047,11425.26602,12985.80789,0,,,,2,,,,2,14487.61686,9843.632761,20564.01569,,8809.647896,7119.092247,10780.77791,,12678.98132,11775.33699,13582.62564,,,,,2,,0.199,,,0.167,0.233,4.414542833,,,3.479506599,5.382348194,6.215226855,,,5.067971858,7.373412914,0.079996045,809,10113,0.074708608,0.085283481,0,,,,,,,0.093457944,0.061615555,0.125300333,0.081293706,0.072150485,0.090436928,0.077579269,0.070927414,0.084231124,,,,0.131578947,0.055579987,0.207577908,0.196,,,0.157,0.24,0.346,,,0.278,0.423,6.7,0.100314213,0.146,,,0.34,,,0.283,0.399,0.529525058,51688,97612,,,0.149779747,,,0.119344584,0.185717654,0.209302326,18,86,0.155082301,0.267846226,339,333,98228,,,44.07598347,949,21531,41.27168021,46.88028672,,,,,,,43.80952381,27.77148007,65.73579599,89.40739211,80.98596779,97.82881644,31.21748179,28.42472369,34.01023989,,,,28.88888889,15.38211665,49.40087982,0.146038777,11803,80821,0.131740905,0.160336649,0.000549741,54,98228,,,1819.037037,0.000362089,36,99423,,,2761.75,0.00281625,280,99423,,,355.0821429,2877,,,,,,,,,2898,0.35,,,,,,0.41,0.42,,0.36,0.44,,,,,,0.8,0.43,0.18,0.44,0.843664897,54834,64995,0.828957963,0.858371831,0.518441048,12145,23426,0.480224083,0.556658014,0.020521732,933,45464,,,0.218,5425,,0.163191489,0.272808511,0.411575563,0.001028925,0.822122201,0.115702479,0,0.722046388,0.349551857,0.09294546,0.606158253,0.405238164,0.332805457,0.47767087,0.18156228,0.15381098,0.20931358,4.745447696,113364,23889,4.423384154,5.067511238,0.265325128,6553,24698,0.222901867,0.307748389,9.060552999,89,98228,,,88.70068996,429,483649,80.30697102,97.09440891,,,,,,,140.8684123,82.06104135,225.5439743,40.74120903,27.2850271,58.51117214,97.78230761,87.92472436,107.6398909,,,,9.1,,,,,1,,,,,0.104371351,3665,35115,0.090464731,0.118277972,0.085303096,0.07286851,0.097737683,0.019080165,0.012940479,0.025219851,0.006692297,0.003214713,0.010169881,0.836930456,34202,40866,0.821365814,0.852495098,,,,0.527777778,0.275041918,0.780513638,0.681585678,0.428721985,0.93444937,0.780057595,0.728016963,0.832098228,0.856874707,0.845017265,0.868732149,0.343,,40866,0.313644836,0.372355164,72.59788319,,,72.03786123,73.15790515,,,,,,,71.11265414,65.983868,76.24144029,89.16946705,71.64166287,106.6972712,72.15343232,71.53370708,72.77315756,,,,596.9374649,2052,271047,570.0029773,623.8719526,,,,,,,757.0065601,563.6411066,995.3238234,379.7971271,295.5048347,480.6575718,622.3994565,592.3331712,652.4657419,,,,57.25495349,61,106541,43.79550273,73.546383,,,,,,,,,,96.43201543,64.58203418,138.4924598,40.22526146,26.72939412,58.1367026,,,,5.149434572,51,9904,3.83409227,6.77055547,,,,,,,,,,,,,4.828585225,3.257826174,6.893105649,,,,,,,0.134,,,0.114,0.154,0.195,,,0.168,0.223,0.113,,,0.096,0.132,157.9,127,80406,,,0.146,14200,,,,0.100314213,9331.127766,93019,,,23.63078441,69,291992,18.38616077,29.90627007,,,,,,,,,,,,,26.29197017,20.11127389,33.7731356,,,,0.379,,,0.362,0.394,0.192589155,10790,56026,0.172333836,0.212844474,0.043725943,1136,25980,0.03061956,0.056832326,0.001056094,105,99423,,,946.8857143,0.913031709,1180.55,1293,,,0.076169963,389,5107,0.044719799,0.107620127,2.754924662,,,,,,,2.354455161,2.18932441,3.0395942,2.762879144,,,,,,,2.187892938,2.4088079,2.964725915,0.168726107,,,,,-2554.72498,,,,,0.763366488,40063,52482,0.701758109,0.824974867,53388,,,49526.38298,57249.61702,,,,,,,43889,29978.3617,57799.6383,52010,44936.12766,59083.87234,59193,56680.14894,61705.85106,,,,,,0.455416279,8320,18269,,,52.83504774,,,,,0.209916086,,53388,,,3.660322108,25,6830,,,5.048023031,34,673531,3.495902696,7.05410621,,,,,,,,,,,,,5.354089971,3.585718083,7.689366304,,,,16.72113818,81,483649,13.19606076,20.89855375,16.74768272,,,,,,,,,,,,,18.42148196,14.24717281,23.43664179,,,,14.26654454,69,483649,11.10022321,18.05522519,,,,,,,,,,,,,16.03836792,12.29652472,20.56046384,,,,23.90387376,161,673531,20.211451,27.59629653,,,,,,,,,,14.53337486,7.945531274,24.3845335,25.6627071,21.39640958,29.92900462,,,,10.64220184,,10900,,,109,7,0.5907195,39655,67130,,,0.656,,,,,36.73332251,,,,,0.753771222,27083,35930,0.737512369,0.770030074,0.095142291,3263,34296,0.080852211,0.109432371,0.872891734,31363,35930,0.857837311,0.887946157,99423,,,,,0.254880661,25341,99423,,,0.173933597,17293,99423,,,0.026633676,2648,99423,,,0.011928829,1186,99423,,,0.007875441,783,99423,,,0.003882402,386,99423,,,0.160073625,15915,99423,,,0.783641612,77912,99423,,,0.034374416,3129,91027,0.027995928,0.040752905,0.504752422,50184,99423,,,0.536511904,52370,97612,, +01,097,01097,AL,Mobile County,2024,1,12207.10374,8586,1155670,11822.34739,12591.8601,0,11425.47603,7763.056632,16217.55121,,5904.395977,4290.143156,7926.376009,,15265.0867,14553.70925,15976.46415,,5716.952922,4306.791329,7441.400047,,10838.29808,10355.21331,11321.38286,,,,,2,,0.212,,,0.184,0.243,4.514272012,,,3.752256447,5.311534206,5.903315195,,,5.126208636,6.754210849,0.121471343,4544,37408,0.11816088,0.124781806,0,0.133561644,0.094542804,0.172580484,0.092039801,0.072057326,0.112022276,0.167031182,0.161251971,0.172810392,0.080792683,0.066046422,0.095538944,0.084758688,0.080729632,0.088787744,,,,0.148648649,0.119991689,0.177305609,0.189,,,0.157,0.227,0.406,,,0.36,0.455,6.9,0.097158345,0.14,,,0.349,,,0.306,0.395,0.585146417,242724,414809,,,0.151731878,,,0.126223475,0.179958985,0.331550802,124,374,0.305996693,0.357204506,734.7,3035,413073,,,28.41350627,2596,91365,27.32048514,29.50652739,26.94610778,17.75765482,39.2051721,7.504690432,4.289579012,12.18714709,37.97194085,35.98426821,39.95961349,29.79737783,23.95709178,35.63766389,21.40345513,20.06338687,22.74352339,,,,30.58387396,23.6535659,38.91018649,0.134238329,44598,332230,0.122323435,0.146153223,0.000711739,294,413073,,,1405.010204,0.000542037,223,411411,,,1844.892377,0.001242067,511,411411,,,805.109589,3376,,,,,,,4237,2159,3102,0.38,,,,,,0.34,0.34,0.44,0.4,0.38,,,,,0.5,0.38,0.3,0.29,0.4,0.881336916,246658,279868,0.874959872,0.88771396,0.578623953,62242,107569,0.554587732,0.602660174,0.032442073,6239,192312,,,0.272,25444,,0.224340426,0.319659575,0.06231454,0,0.196028366,0.354014599,0.208034397,0.4999948,0.404113565,0.375629256,0.432597873,0.199095023,0.113063218,0.285126827,0.123067395,0.104694229,0.141440561,5.225294091,114157,21847,4.941073694,5.509514487,0.355845671,34153,95977,0.328395525,0.383295818,11.11183738,459,413073,,,91.35287904,1888,2066711,87.2321191,95.47363899,82.02099738,45.9065296,135.2811618,46.93073024,28.66650926,72.48070655,91.65520416,84.77122345,98.53918487,40.19292605,26.01074252,59.33268762,97.79858971,92.12633648,103.470843,,,,8.3,,,,,0,,,,,0.148011805,23320,157555,0.139893229,0.156130382,0.131933594,0.123442009,0.140425179,0.018120656,0.014897345,0.021343967,0.007299038,0.005738227,0.00885985,0.843901121,146762,173909,0.836041966,0.851760275,0.810966811,0.681964237,0.939969385,0.739825219,0.664646755,0.815003682,0.845439949,0.823988891,0.866891008,0.785667432,0.724765331,0.846569533,0.857692068,0.846721347,0.86866279,0.367,,173909,0.350619729,0.383380271,73.04481265,,,72.76123571,73.3283896,75.15816546,71.45001339,78.86631753,83.47698024,80.21795283,86.73600766,70.4128856,69.9262351,70.8995361,98.29237552,88.47896131,108.1057897,74.05128681,73.69036614,74.41220748,,,,587.0030722,8586,1155670,574.0511657,599.9549786,564.0625344,438.016629,715.0836682,269.9748642,211.2387041,339.9886608,715.8708537,691.1585068,740.5832007,233.0567202,182.019232,293.9693407,541.1022082,525.0193259,557.1850906,,,,80.85936582,344,425430,72.31446196,89.40426968,,,,,,,113.3206399,97.49606775,129.145212,,,,61.18417883,50.54291168,71.82544599,,,,8.269018743,315,38094,7.35584215,9.182195336,,,,,,,11.32260236,9.69099197,12.95421276,,,,5.859479039,4.764467404,6.954490674,,,,,,,0.134,,,0.117,0.154,0.195,,,0.17,0.221,0.135,,,0.119,0.153,563.2,1939,344284,,,0.14,57880,,,,0.097158345,40125.61901,412992,,,21.06539231,261,1238999,18.50971881,23.6210658,,,,,,,15.64081538,12.19278291,19.76122929,,,,26.40070823,22.5859876,30.21542885,,,,0.405,,,0.391,0.419,0.173816277,41548,239034,0.157135426,0.190497128,0.035485652,3470,97786,0.025953737,0.045017567,0.001626111,669,411411,,,614.9641256,0.877560917,3637.49,4145,,,0.101208672,2152,21263,0.078775338,0.123642007,2.780952518,,,,,,3.029833294,2.50910155,2.663928765,3.078466909,2.65310274,,,,,,3.172963433,2.368024043,2.606122357,2.946811229,0.249448878,,,,,-10343.87,,,,,0.706640064,40376,57138,0.678358076,0.734922052,54315,,,51680.61702,56949.38298,51477,12614.19149,90339.80851,59792,50964.25532,68619.74468,38667,36127.93617,41206.06383,48576,38316.08511,58835.91489,69770,67494.25532,72045.74468,,,,,,0.666711288,39844,59762,,,56.92083628,,,,,0.266040689,,54315,,,6.652296715,179,26908,,,17.08698345,495,2896942,15.58169797,18.59226892,,,,,,,36.26494241,32.59930807,39.93057676,,,,6.567066163,5.32851034,7.805621986,,,,14.60379374,302,2066711,12.90846245,16.29912504,14.61258976,,,,,,,6.935327828,5.147533991,9.143365137,,,,20.55724483,17.86102559,23.25346407,,,,25.45106694,526,2066711,23.2760172,27.62611667,,,,,,,39.16543966,34.66543894,43.66544038,,,,19.26854876,16.75079172,21.7863058,,,,19.50332454,565,2896942,17.89512292,21.11152616,,,,,,,18.61471778,15.98848104,21.24095452,,,,21.22135269,18.99488488,23.44782051,,,,13.94366197,,42600,,,499,95,0.587459508,183164,311790,,,0.605,,,,,101.8342976,,,,,0.634904922,101334,159605,0.625081404,0.644728439,0.147668857,22320,151149,0.137589868,0.157747846,0.81285674,129736,159605,0.803099569,0.822613911,411411,,,,,0.230859165,94978,411411,,,0.174640445,71849,411411,,,0.364044714,149772,411411,,,0.009421236,3876,411411,,,0.021474876,8835,411411,,,0.000432657,178,411411,,,0.031899974,13124,411411,,,0.556562659,228976,411411,,,0.008944013,3465,387410,0.00716301,0.010725016,0.521412894,214515,411411,,,0.223963318,92902,414809,, +01,099,01099,AL,Monroe County,2024,1,15283.71137,504,55233,13196.41474,17371.008,0,,,,2,,,,2,20741.24087,16975.69426,24506.78748,,,,,2,11291.44309,8936.407935,13646.47825,,,,,2,,0.25,,,0.216,0.284,4.683037486,,,3.71921497,5.698638828,6.177146504,,,4.970205541,7.433109633,0.113948919,174,1527,0.098011389,0.12988645,0,,,,,,,0.127777778,0.103392312,0.152163244,,,,0.105834464,0.083624654,0.128044274,,,,,,,0.233,,,0.191,0.275,0.442,,,0.36,0.526,6.3,0.113296508,0.16,,,0.381,,,0.323,0.441,0.425652438,8416,19772,,,0.125131124,,,0.097558906,0.157635873,0.192307692,5,26,0.09558881,0.306287398,661.6,130,19648,,,33.05785124,148,4477,27.73186752,38.38383496,,,,,,,43.93305439,35.04272476,54.39211076,,,,25.54908113,19.35062455,33.10179803,,,,,,,0.12389908,1871,15101,0.106026739,0.14177142,0.000458062,9,19648,,,2183.111111,0.000206143,4,19404,,,4851,0.001185323,23,19404,,,843.6521739,2955,,,,,,,2586,,2998,0.34,,,,,,,0.32,,0.34,0.33,,,,,0.33,,0.26,,0.36,0.836944627,11472,13707,0.806903439,0.866985815,0.449377897,1842,4099,0.344951624,0.55380417,0.040958904,299,7300,,,0.319,1276,,0.201042553,0.436957447,,,,,,,0.387787056,0.287414847,0.488159266,,,,0.166915795,0.096612072,0.237219518,5.37883354,91026,16923,4.216795931,6.540871149,0.393505253,1648,4188,0.270739913,0.516270593,14.25081433,28,19648,,,98.80465738,102,103234,79.62974439,117.9795704,,,,,,,115.9132307,85.75324616,153.2434381,,,,84.28679029,61.93076319,112.0835629,,,,9.3,,,,,0,,,,,0.127329193,1025,8050,0.091160908,0.163497477,0.129155673,0.092496001,0.165815345,0.003478261,0,0.009237102,0.00173913,0,0.005884661,0.902893891,5616,6220,0.790939513,1,,,,,,,0.887962481,0.81820292,0.957722041,,,,0.87021894,0.827181029,0.91325685,0.316,,6220,0.256413618,0.375586382,71.52784228,,,70.12731827,72.9283663,,,,,,,68.96605924,66.5258504,71.40626808,,,,73.51026958,71.84744388,75.17309529,,,,666.9562408,504,55233,603.669054,730.2434276,,,,,,,819.2293238,707.8242601,930.6343875,,,,570.9464149,494.4651868,647.4276429,,,,78.26767545,15,19165,43.80582381,129.0906281,,,,,,,129.9929095,64.89199205,232.5932228,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.15,,,0.129,0.171,0.209,,,0.181,0.236,0.147,,,0.127,0.168,207.8,35,16839,,,0.16,3210,,,,0.113296508,2613.52384,23068,,,,,,,,,,,,,,,,,,,,,,,,,,0.408,,,0.393,0.42,0.156112459,1738,11133,0.132282671,0.179942246,0.035765379,150,4194,0.023850486,0.047680273,0.000669965,13,19404,,,1492.615385,0.925,179.45,194,,,,,,,,2.512728103,,,,,,,2.193798635,,2.825024478,2.54781772,,,,,,,2.418248018,,2.678455675,0.353602718,,,,,-13027.7,,,,,0.628406462,33413,53171,0.509643152,0.747169773,47498,,,42176.80851,52819.19149,,,,56111,55275.76596,56946.23404,28563,24579.85106,32546.14894,,,,58187,51881.6383,64492.3617,,,,,,0.634693878,1555,2450,,,40.27235082,,,,,0.31424481,,47498,,,8.797653959,9,1023,,,16.38930052,24,146437,10.50093409,24.38598004,,,,,,,26.72903441,15.27795265,43.40627731,,,,,,,,,,14.71361181,13,103234,7.602737927,25.70171877,12.59275045,,,,,,,,,,,,,,,,,,,21.31080846,22,103234,13.3553702,32.26482011,,,,,,,28.38691363,14.66793251,49.58622536,,,,,,,,,,36.19303865,53,146437,27.11106956,47.34138567,,,,,,,38.42298697,24.35687778,57.65334597,,,,35.25471532,23.4265023,50.95287948,,,,17.61904762,,2100,,,37,0,0.650884686,10668,16390,,,0.483,,,,,9.183078403,,,,,0.724171006,5285,7298,0.687165824,0.761176188,0.103703704,658,6345,0.067238434,0.140168974,0.605782406,4421,7298,0.563942429,0.647622383,19404,,,,,0.209235209,4060,19404,,,0.219490827,4259,19404,,,0.41151309,7985,19404,,,0.013863121,269,19404,,,0.005050505,98,19404,,,0.000412286,8,19404,,,0.018449804,358,19404,,,0.533652855,10355,19404,,,0.000781331,15,19198,0,0.00564805,0.521232736,10114,19404,,,0.783329962,15488,19772,, +01,101,01101,AL,Montgomery County,2024,1,11998.59564,4157,635892,11479.69047,12517.50081,0,,,,2,4284.957401,2496.145592,6860.63189,1,14252.22526,13537.13044,14967.32007,,8574.771661,6343.66328,11336.30288,,8498.572042,7738.706483,9258.437601,,,,,2,,0.216,,,0.184,0.253,4.050605914,,,3.268496504,4.939754814,5.741915997,,,4.80921875,6.761849397,0.131968721,2869,21740,0.127469581,0.136467861,0,,,,0.109656301,0.084880306,0.134432296,0.162220003,0.156117187,0.168322818,0.072617946,0.061678898,0.083556995,0.072384295,0.064862396,0.079906194,,,,0.106849315,0.075156714,0.138541916,0.176,,,0.14,0.216,0.382,,,0.326,0.443,6.7,0.10744318,0.141,,,0.348,,,0.296,0.404,0.764629576,175065,228954,,,0.145134113,,,0.117978406,0.177098281,0.317919075,55,173,0.279615216,0.356546505,1061.4,2414,227434,,,33.38844951,1676,50197,31.78993966,34.98695936,,,,,,,37.52997602,35.45108275,39.60886929,114.0350877,100.1736621,127.8965133,9.882747069,8.099577072,11.66591707,,,,43.2160804,31.27569167,58.21177669,0.122001487,21666,177588,0.108895104,0.13510787,0.000967314,220,227434,,,1033.790909,0.00079519,180,226361,,,1257.561111,0.002063076,467,226361,,,484.7130621,3612,,,,,,,4672,,2982,0.47,,,,,,0.33,0.45,0.45,0.49,0.34,,,,,,0.35,0.28,0.22,0.38,0.879676708,133220,151442,0.870255989,0.889097427,0.642927811,38991,60646,0.608609107,0.677246514,0.030760475,3297,107183,,,0.272,14312,,0.199319149,0.344680851,0.729166667,0.170984724,1,0.119524067,0.031228074,0.20782006,0.384817073,0.34867093,0.420963216,0.431323493,0.33708227,0.525564715,0.042945319,0.023764997,0.06212564,5.347850337,115059,21515,4.94445958,5.751241094,0.450009344,24080,53510,0.413262218,0.48675647,14.02604712,319,227434,,,79.57784836,900,1130968,74.37876226,84.77693445,,,,,,,87.65292439,80.54987967,94.7559691,53.30232107,33.40428084,80.70035467,76.53684353,67.60374623,85.46994084,,,,9,,,,,0,,,,,0.16958999,15180,89510,0.154737289,0.184442691,0.153482275,0.138826233,0.168138318,0.020109485,0.015610385,0.024608585,0.008267233,0.00496947,0.011564996,0.818916355,80271,98021,0.804570187,0.833262522,,,,0.785676672,0.730052848,0.841300496,0.848981313,0.829598528,0.868364098,0.768826201,0.678270611,0.859381792,0.871978188,0.856841937,0.887114438,0.209,,98021,0.192576453,0.225423547,73.71813352,,,73.32079543,74.11547162,,,,87.55015113,82.1751262,92.92517605,71.56524172,71.03300912,72.09747431,84.08863198,77.3912707,90.78599325,76.63345168,76.02613897,77.24076438,,,,544.6651953,4157,635892,527.5788018,561.7515887,,,,161.4306942,111.7954485,225.5832145,651.3095354,626.408667,676.2104037,295.6468217,216.4506312,394.3514291,430.0671334,404.5201937,455.6140731,,,,97.41943919,231,237119,84.8563713,109.9825071,,,,,,,116.8293307,99.66614275,133.9925187,126.8303932,79.48393216,192.0227395,37.62014935,22.97936457,58.1012695,,,,9.479536961,208,21942,8.191253213,10.76782071,,,,,,,11.66489926,9.885001354,13.44479716,,,,4.199916002,2.565417805,6.486429631,,,,,,,0.126,,,0.108,0.146,0.181,,,0.158,0.208,0.145,,,0.126,0.168,827,1559,188508,,,0.141,32260,,,,0.10744318,24643.49001,229363,,,11.93706074,81,678559,9.479749291,14.83667657,,,,,,,8.920540287,6.247836749,12.34978789,,,,19.39953811,13.98148071,26.22253985,,,,0.424,,,0.407,0.439,0.15690861,19856,126545,0.13784478,0.175972439,0.037667708,2013,53441,0.026944304,0.048391113,0.00168757,382,226361,,,592.5680628,0.858939039,1465.35,1706,,,0.08192156,1059,12927,0.054725423,0.109117696,2.534611282,,,,,,3.410934511,2.408094324,1.94859326,3.34489614,2.324077104,,,,,,3.550165645,2.169502286,2.141366649,2.970847988,0.2287079,,,,,-22227.36,,,,,0.791255263,41912,52969,0.757685691,0.824824834,56862,,,52598.85106,61125.14894,29167,11449.55319,46884.44681,104390,78115.2766,130664.7234,44847,42537.89362,47156.10638,43750,27675.61702,59824.38298,79471,75603.42553,83338.57447,,,,,,0.686860791,21088,30702,,,55.34604103,,,,,0.245981499,,56862,,,9.796289088,151,15414,,,24.11865875,382,1583836,21.6999836,26.5373339,,,,,,,37.26752357,33.33494816,41.20009897,,,,5.299587579,3.521537459,7.659379597,,,,10.93310008,125,1130968,8.979579825,12.88662033,11.05247894,,,,,,,6.983664243,5.093932621,9.344692216,,,,17.73432882,13.50019278,22.87599209,,,,33.06901698,374,1130968,29.71749899,36.42053498,,,,,,,45.10005169,40.00498512,50.19511827,,,,17.91287827,13.85381876,22.7895732,,,,15.27935973,242,1583836,13.35425862,17.20446084,,,,,,,19.01183811,16.20301852,21.8206577,19.44871727,9.708729587,34.79912748,10.22063319,7.678054213,13.33570926,,,,10.74561404,,22800,,,233,12,0.592016004,99139,167460,,,0.604,,,,,130.1357883,,,,,0.572318632,51349,89721,0.556742771,0.587894494,0.172702015,14856,86021,0.157038049,0.18836598,0.868124519,77889,89721,0.856169474,0.880079565,226361,,,,,0.237072641,53664,226361,,,0.16366777,37048,226361,,,0.605280945,137012,226361,,,0.003194013,723,226361,,,0.034833739,7885,226361,,,0.00085262,193,226361,,,0.040545854,9178,226361,,,0.303409156,68680,226361,,,0.014451695,3076,212847,0.011973667,0.016929724,0.5296142,119884,226361,,,0.123640557,28308,228954,, +01,103,01103,AL,Morgan County,2024,1,11904.57426,2497,336156,11185.69625,12623.45228,0,,,,2,,,,2,17884.67936,15438.39049,20330.96824,,8582.698248,6727.46536,10791.45449,,11445.56611,10621.90898,12269.22324,,,,,2,,0.192,,,0.164,0.222,4.060015563,,,3.221566965,4.935570191,5.500220925,,,4.477814613,6.53963116,0.091474859,926,10123,0.085858941,0.097090778,0,,,,0.12,0.056307539,0.183692461,0.161502966,0.142984531,0.180021402,0.077639752,0.065706883,0.08957262,0.077753094,0.071141605,0.084364584,,,,0.110204082,0.070992255,0.149415908,0.189,,,0.154,0.228,0.427,,,0.359,0.496,7.1,0.082711688,0.138,,,0.325,,,0.276,0.379,0.716182821,88392,123421,,,0.144540107,,,0.115897721,0.177198484,0.2,20,100,0.150146513,0.253960307,475.5,588,123668,,,31.68708021,802,25310,29.49401719,33.88014322,,,,,,,38.50354997,32.14808561,44.85901433,67.18192628,58.42293077,75.94092179,23.58739659,21.28158905,25.89320412,,,,36.66666667,25.23964619,51.49363252,0.138534345,13817,99737,0.123044984,0.154023707,0.000509429,63,123668,,,1962.984127,0.000523303,65,124211,,,1910.938462,0.001642367,204,124211,,,608.877451,3209,,,,,,,4066,,3155,0.4,,,,,,0.48,0.38,0.27,0.4,0.43,,,,,,0.36,0.33,0.23,0.44,0.852310484,72339,84874,0.839097894,0.865523073,0.579736151,17446,30093,0.537974241,0.621498062,0.020914173,1272,60820,,,0.172,4793,,0.118382979,0.225617021,,,,,,,0.33930729,0.250260485,0.428354094,0.293999104,0.218641971,0.369356238,0.103387817,0.070593538,0.136182097,4.76346631,124779,26195,4.36881582,5.158116801,0.255829757,7153,27960,0.216208333,0.295451181,11.15890934,138,123668,,,92.82409833,558,601137,85.12216578,100.5260309,,,,,,,102.1423708,80.73930544,127.4783014,34.65737336,20.54015592,54.7735916,101.4699855,92.17687864,110.7630923,,,,7.6,,,,,0,,,,,0.114572106,5315,46390,0.098513823,0.13063039,0.093555094,0.078642844,0.108467343,0.02037077,0.01422523,0.026516309,0.007329166,0.001829918,0.012828413,0.853007297,46291,54268,0.838862215,0.867152379,,,,,,,0.874738457,0.859379006,0.890097909,0.749316566,0.655603823,0.84302931,0.863196437,0.8480038,0.878389073,0.351,,54268,0.322753911,0.379246089,73.1509763,,,72.63087095,73.67108165,,,,,,,69.14864888,67.44200167,70.85529609,80.85723205,75.11601118,86.59845292,73.35344523,72.76998802,73.93690243,,,,562.0821529,2497,336156,538.9922133,585.1720925,,,,,,,780.5433385,701.5018047,859.5848724,419.1849432,319.1030007,540.7180356,553.8255794,527.8784386,579.7727201,,,,70.25025621,85,120996,56.11340954,86.8655297,,,,,,,120.7660015,74.75605834,184.6036617,72.29911175,39.52659717,121.3056245,63.11342384,46.6916584,83.43929338,,,,6.48443735,65,10024,5.004551849,8.264947707,,,,,,,16.99346405,11.10069491,24.89936215,,,,3.792068257,2.429649685,5.642296981,,,,,,,0.126,,,0.109,0.145,0.189,,,0.166,0.215,0.114,,,0.098,0.131,148.5,154,103682,,,0.138,16910,,,,0.082711688,9883.21956,119490,,,19.5468436,71,363230,15.26624702,24.65568348,,,,,,,38.75635174,22.96947029,61.25174461,,,,18.77367416,13.97823352,24.68391441,,,,0.383,,,0.367,0.397,0.174264685,12454,71466,0.152817877,0.195711494,0.05095627,1516,29751,0.036658398,0.065254143,0.000917793,114,124211,,,1089.570175,0.921786217,1310.78,1422,,,0.073348822,442,6026,0.041868031,0.104829612,2.884934089,,,,,,,2.57394548,2.222290619,3.183370578,2.747438759,,,,,,,2.401523734,2.278454489,2.986295143,0.200970305,,,,,-1647.685567,,,,,0.704413788,38909,55236,0.639672018,0.769155558,62260,,,57617.95745,66902.04255,,,,,,,40135,33555.59575,46714.40426,52374,37211.10638,67536.89362,66623,63519.17021,69726.82979,,,,,,0.405760802,7776,19164,,,58.83338399,,,,,0.255220045,,62260,,,6.359945873,47,7390,,,10.71793492,90,839714,8.618485357,13.17416165,,,,,,,27.43691874,18.37493509,39.40399201,,,,8.528959767,6.407217075,11.12844241,,,,22.28442059,140,601137,18.46825257,26.1005886,23.2892003,,,,,,,14.10851207,7.042918393,25.24402527,,,,25.63117116,20.88394863,30.37839368,,,,24.12095745,145,601137,20.19480994,28.04710497,,,,,,,36.66649206,24.36461769,52.99328996,,,,24.59207072,20.01708565,29.16705579,,,,17.14869587,144,839714,14.34774221,19.94964952,,,,,,,14.19150969,7.942880245,23.40673706,,,,18.79530023,15.41829403,22.17230643,,,,,,12800,,,121,-888,0.608127689,53722,88340,,,0.701,,,,,73.35577301,,,,,0.727481043,34922,48004,0.706288617,0.74867347,0.096521909,4443,46031,0.082681062,0.110362756,0.814911257,39119,48004,0.795476498,0.834346017,124211,,,,,0.228127944,28336,124211,,,0.184838702,22959,124211,,,0.130624502,16225,124211,,,0.011255042,1398,124211,,,0.007084719,880,124211,,,0.001537706,191,124211,,,0.091400923,11353,124211,,,0.740023025,91919,124211,,,0.024573167,2844,115736,0.015650654,0.03349568,0.504440025,62657,124211,,,0.38437543,47440,123421,, +01,105,01105,AL,Perry County,2024,1,17843.47794,253,23488,14457.8747,21229.08118,0,,,,2,,,,2,19591.07147,15454.92956,23727.21339,,,,,2,12842.17508,8048.122752,19443.20741,1,,,,2,,0.317,,,0.276,0.362,5.431351442,,,4.343485554,6.612462092,6.291980977,,,5.035723907,7.669861816,0.145862553,104,713,0.119953765,0.17177134,0,,,,,,,0.164874552,0.134085831,0.195663273,,,,0.068493151,0.027520294,0.109466007,,,,,,,0.265,,,0.215,0.317,0.525,,,0.438,0.612,3.7,0.278470743,0.2,,,0.456,,,0.39,0.523,0.55152156,4694,8511,,,0.106485287,,,0.082920951,0.136068607,0.625,5,8,0.470053641,0.740226608,789.9,66,8355,,,22.16378663,59,2662,16.87210129,28.58966993,,,,,,,34.20891875,25.84104959,44.42312646,,,,,,,,,,,,,0.125042532,735,5878,0.104787212,0.145297851,0.000359066,3,8355,,,2785,0.000248911,2,8035,,,4017.5,0.000622278,5,8035,,,1607,4687,,,,,,,5549,,3316,0.41,,,,,,,0.44,,0.36,0.27,,,,,,,0.24,,0.3,0.795822356,4229,5314,0.723595644,0.868049068,0.285903375,432,1511,0.169848057,0.401958693,0.052546221,162,3083,,,0.612,1016,,0.438042553,0.785957447,,,,,,,0.690896739,0.595367803,0.786425676,,,,0.082802548,0,0.278567269,3.65285236,57821,15829,2.67976295,4.625941769,0.585379464,1049,1792,0.440606737,0.730152192,8.378216637,7,8355,,,99.00099001,44,44444,71.9342709,132.9042082,,,,,,,96.91865517,64.90794445,139.1913557,,,,114.5737855,64.12607801,188.9720354,,,,9.4,,,,,0,,,,,0.122611465,385,3140,0.063651805,0.181571125,0.105090312,0.048390207,0.161790417,0,0,0.012901477,0.030254777,0,0.069455149,0.844619666,1821,2156,0.755945006,0.933294326,,,,,,,,,,,,,,,,0.344,,2156,0.210500011,0.477499989,69.03754268,,,66.95311015,71.12197522,,,,,,,67.69380124,65.20523033,70.18237214,,,,72.42025974,68.89022871,75.95029077,,,,834.6977798,253,23488,723.9404943,945.4550653,,,,,,,921.8389185,782.69516,1060.982677,,,,661.8407846,489.6334559,874.9886163,,,,150.408251,14,9308,82.22959042,252.3594878,,,,,,,184.729064,95.45220303,322.6844989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.176,,,0.151,0.203,0.221,,,0.191,0.253,0.194,,,0.169,0.222,419.4,30,7152,,,0.2,1740,,,,0.278470743,2949.283634,10591,,,,,,,,,,,,,,,,,,,,,,,,,,0.465,,,0.449,0.479,0.157919291,677,4287,0.130515036,0.185323546,0.038140644,64,1678,0.025034261,0.051247027,0.000746733,6,8035,,,1339.166667,0.975,92.625,95,,,,,,,,2.323915114,,,,,,,2.312584129,,,2.037406236,,,,,,,2.021885466,,,0.370463216,,,,,-60228.49,,,,,0.78080061,26605,34074,0.538228433,1.023372788,33585,,,28784.48936,38385.51064,,,,,,,30038,24432.04255,35643.95745,,,,45139,32952.44681,57325.55319,,,,,,0.834130782,1046,1254,,,52.07990245,,,,,0.395891023,,33585,,,7.130124777,4,561,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,22.500225,10,44444,10.78973246,41.37871488,,,,,,,,,,,,,,,,,,,36.12376315,23,63670,22.89936711,54.20338133,,,,,,,39.71684228,23.13652424,63.59051192,,,,,,,,,,,,800,,,6,-888,0.735583685,5230,7110,,,0.39,,,,,7.847464955,,,,,0.701463415,2157,3075,0.651333127,0.751593703,0.092809068,262,2823,0.024538092,0.161080045,0.657886179,2023,3075,0.577663793,0.738108565,8035,,,,,0.209209708,1681,8035,,,0.214810205,1726,8035,,,0.688736777,5534,8035,,,0.003733665,30,8035,,,0.005849409,47,8035,,,0.000622278,5,8035,,,0.015059116,121,8035,,,0.278033603,2234,8035,,,0,0,7962,0,0.010774584,0.531922838,4274,8035,,,1,8511,8511,, +01,107,01107,AL,Pickens County,2024,1,11735.26814,486,53667,9967.746425,13502.78985,0,,,,2,,,,2,15136.19305,12177.16953,18095.21656,,,,,2,10133.99956,7671.299074,12596.70004,,,,,2,,0.242,,,0.211,0.273,4.573190493,,,3.683431951,5.513392326,5.786738659,,,4.662043045,6.9900325,0.123836793,173,1397,0.106563497,0.141110089,0,,,,,,,0.153609831,0.125911067,0.181308595,,,,0.103139014,0.080091872,0.126186155,,,,,,,0.22,,,0.182,0.257,0.449,,,0.369,0.533,7.1,0.014966823,0.167,,,0.371,,,0.317,0.428,0.101971448,1950,19123,,,0.125840484,,,0.098085265,0.158040623,0.2,4,20,0.089212428,0.331567708,521.2,98,18801,,,32.00667966,115,3593,26.15678865,37.85657066,,,,,,,36.63663664,28.02412406,47.06129244,,,,26.08695652,19.0280051,34.90640029,,,,,,,0.119714608,1594,13315,0.103033757,0.136395459,0.000372321,7,18801,,,2685.857143,0.000213938,4,18697,,,4674.25,0.000481361,9,18697,,,2077.444444,3912,,,,,,,5337,,3234,0.39,,,,,,,0.36,,0.41,0.44,,,,,,,0.35,,0.47,0.849470277,11546,13592,0.825511515,0.873429038,0.470114455,2218,4718,0.393047567,0.547181343,0.032547845,250,7681,,,0.303,1046,,0.193382979,0.412617021,,,,,,,0.525331725,0.432549178,0.618114272,,,,0.213557289,0.136034534,0.291080044,5.232107908,98913,18905,4.477851629,5.986364187,0.462612983,1689,3651,0.3763234,0.548902566,10.63773204,20,18801,,,93.27034206,92,98638,75.18905976,114.3877948,,,,,,,94.34683938,66.42888178,130.0446902,,,,96.51048369,71.85839421,126.8934626,,,,9.3,,,,,0,,,,,0.108667529,840,7730,0.080552383,0.136782675,0.093342037,0.066760742,0.119923331,0.009573092,0.001971588,0.017174596,0.007761966,0,0.017962076,0.882229861,5903,6691,0.843627325,0.920832397,,,,,,,0.795400476,0.680495954,0.910304998,,,,0.813944379,0.750470432,0.877418326,0.613,,6691,0.535324397,0.690675603,72.20131681,,,70.96391931,73.43871431,,,,,,,69.98416024,68.02301923,71.94530125,,,,73.26931492,71.50983768,75.02879215,,,,625.2963126,486,53667,566.7323742,683.8602511,,,,,,,826.5467066,716.4360612,936.6573519,,,,531.1574544,459.137269,603.1776398,,,,88.29242451,15,16989,49.41659976,145.6249271,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.146,,,0.127,0.166,0.198,,,0.173,0.226,0.142,,,0.123,0.164,344.3,56,16264,,,0.167,3220,,,,0.014966823,295.5348946,19746,,,17.08700704,10,58524,8.193884041,31.42361432,,,,,,,,,,,,,,,,,,,0.42,,,0.407,0.432,0.145812209,1438,9862,0.1243654,0.167259017,0.047304731,172,3636,0.031815369,0.062794092,0.000374392,7,18697,,,2671,0.975,161.85,166,,,,,,,,2.855263083,,,,,,,2.588956375,,3.345798904,2.630204061,,,,,,,2.317246389,,3.092325024,0.299047167,,,,,-13956.22,,,,,0.84923887,40000,47101,0.747918021,0.950559718,45440,,,39235.91489,51644.08511,,,,,,,29007,25865.04255,32148.95745,53571,35819,71323,61516,53952.42553,69079.57447,,,,,,0.665386257,1559,2343,,,29.02406749,,,,,0.292605634,,45440,,,5.175983437,5,966,,,,,,,,,,,,,,,,,,,,,,,,,,8.704100129,10,98638,3.980068834,16.52309333,10.13808066,,,,,,,,,,,,,,,,,,,15.20712099,15,98638,8.511310177,25.08183344,,,,,,,,,,,,,,,,,,,30.75250669,43,139826,22.25574157,41.42342469,,,,,,,46.78446756,30.56116748,68.55008472,,,,22.61540508,13.17430686,36.20945433,,,,22.35294118,,1700,,,38,0,0.625760518,9668,15450,,,0.548,,,,,9.807551331,,,,,0.741634901,5253,7083,0.707185822,0.776083979,0.11071053,737,6657,0.079969514,0.141451547,0.747564591,5295,7083,0.711583921,0.783545262,18697,,,,,0.188318982,3521,18697,,,0.196448628,3673,18697,,,0.389634701,7285,18697,,,0.002941648,55,18697,,,0.003636947,68,18697,,,0.003476494,65,18697,,,0.060384019,1129,18697,,,0.532705782,9960,18697,,,0.017574106,316,17981,0.009758712,0.0253895,0.490987859,9180,18697,,,1,19123,19123,, +01,109,01109,AL,Pike County,2024,1,13153.67064,673,92415,11691.32985,14616.01144,0,,,,2,,,,2,17071.80918,14346.85043,19796.76794,,,,,2,11165.55383,9413.380644,12917.72701,,,,,2,,0.212,,,0.183,0.246,4.331745623,,,3.487295084,5.31133629,5.882695153,,,4.830911011,7.085803993,0.113914072,289,2537,0.101551112,0.126277031,0,,,,,,,0.161844485,0.140137987,0.183550983,,,,0.077901431,0.063090678,0.092712184,,,,,,,0.197,,,0.16,0.239,0.415,,,0.342,0.495,6.8,0.10493585,0.14,,,0.34,,,0.285,0.401,0.612954043,20233,33009,,,0.137801345,,,0.10932634,0.171501168,0.270833333,13,48,0.195582836,0.349309145,900.2,297,32991,,,14.73832848,167,11331,12.50297573,16.97368123,,,,,,,21.54566745,17.36884889,26.42384848,,,,10.45922536,8.054878011,13.35619729,,,,,,,0.120455694,3098,25719,0.101391864,0.139519524,0.000424358,14,32991,,,2356.5,0.000302902,10,33014,,,3301.4,0.000817835,27,33014,,,1222.740741,3056,,,,,,,2795,,3021,0.44,,,,,,,0.44,,0.44,0.33,,,,,,,0.27,,0.35,0.878989846,16881,19205,0.860095108,0.897884585,0.605843517,4313,7119,0.528546548,0.683140487,0.027365808,441,16115,,,0.368,2283,,0.284595745,0.451404255,,,,,,,0.526413003,0.436741784,0.616084223,0.45,0.220563761,0.679436239,0.109240811,0.060334349,0.158147273,6.30078949,104549,16593,5.543223767,7.058355212,0.44937833,2783,6193,0.383451486,0.515305175,9.396502076,31,32991,,,73.6377025,122,165676,60.57068761,86.7047174,,,,,,,73.89083432,54.09737753,98.56001817,,,,74.72465589,58.14024254,94.56883451,,,,9.2,,,,,0,,,,,0.160683761,1880,11700,0.120634212,0.20073331,0.157829182,0.115193306,0.200465058,0.007606838,0.001456159,0.013757516,0.002991453,0,0.006865525,0.843529765,11251,13338,0.80926478,0.87779475,,,,,,,0.844306884,0.787250547,0.901363222,,,,0.865118134,0.833082679,0.897153589,0.211,,13338,0.173115135,0.248884865,72.13856395,,,71.09391363,73.18321427,,,,,,,69.44380094,67.6739214,71.21368048,,,,73.30882457,72.01738011,74.60026903,,,,657.0650753,673,92415,605.0361268,709.0940238,,,,,,,798.0427771,701.1885486,894.8970056,,,,606.4291754,541.9281013,670.9302494,,,,55.43920168,18,32468,32.85678447,87.61783993,,,,,,,79.88380537,39.87770782,142.934194,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.134,,,0.115,0.155,0.193,,,0.168,0.22,0.135,,,0.115,0.157,404.5,115,28430,,,0.14,4660,,,,0.10493585,3452.284528,32899,,,,,,,,,,,,,,,,,,,,,,,,,,0.394,,,0.379,0.409,0.145022197,2842,19597,0.12119241,0.168851985,0.044296959,287,6479,0.028807598,0.059786321,0.001151027,38,33014,,,868.7894737,0.925,228.475,247,,,0.076113861,246,3232,0.027182466,0.125045257,2.771098576,,,,,,,2.457596766,,3.201003058,2.888447538,,,,,,,2.594531826,,3.240546201,0.052704033,,,,,-14121.495,,,,,1.032090571,38562,37363,0.899864431,1.164316711,45144,,,39281.87234,51006.12766,155714,89188.38298,222239.617,,,,33328,31035.57447,35620.42553,37619,18494.40426,56743.59575,55137,49180.74468,61093.25532,,,,,,0.703568638,2701,3839,,,26.92320336,,,,,0.232079568,,45144,,,7.415858528,13,1753,,,13.79262784,32,232008,9.434147233,19.47107517,,,,,,,28.80914518,18.64375976,42.5279814,,,,,,,,,,13.99949511,24,165676,8.77340905,21.19540383,14.48610541,,,,,,,,,,,,,22.20299281,13.36765207,34.6727236,,,,22.33274584,37,165676,15.72431406,30.78274834,,,,,,,24.09483728,13.48569752,39.74076987,,,,21.65932055,13.23007568,33.45106391,,,,24.13709872,56,232008,18.23290498,31.34403038,,,,,,,27.65677937,17.7202204,41.15109543,,,,20.80507952,13.7106785,30.2702984,,,,,,2700,,,38,-888,0.532858518,13841,25975,,,0.455,,,,,36.91523088,,,,,0.630293431,7561,11996,0.595750388,0.664836474,0.176155152,1971,11189,0.136722168,0.215588136,0.760086696,9118,11996,0.720338557,0.799834834,33014,,,,,0.190494942,6289,33014,,,0.158750833,5241,33014,,,0.377839704,12474,33014,,,0.006815291,225,33014,,,0.019900648,657,33014,,,0.000848125,28,33014,,,0.024807657,819,33014,,,0.554673775,18312,33014,,,0.008045206,252,31323,0.001808249,0.014282163,0.521051675,17202,33014,,,0.561755885,18543,33009,, +01,111,01111,AL,Randolph County,2024,1,12460.76755,523,61674,10685.19005,14236.34505,0,,,,2,,,,2,15437.48663,11367.82811,19507.14515,,,,,2,12184.99746,10082.38631,14287.60861,,,,,2,,0.208,,,0.176,0.24,4.338426248,,,3.481910484,5.288654152,5.90194675,,,4.78576503,7.095600583,0.093573844,166,1774,0.080021242,0.107126447,0,,,,,,,0.172077922,0.129923997,0.214231847,,,,0.07951988,0.064995886,0.094043874,,,,,,,0.203,,,0.164,0.243,0.401,,,0.327,0.483,6.4,0.131833282,0.145,,,0.345,,,0.289,0.404,0.40975099,9001,21967,,,0.134499988,,,0.105051418,0.168061963,0.53125,17,32,0.452445961,0.602523009,541.2,119,21989,,,31.26916003,153,4893,26.31435498,36.22396507,,,,,,,25.72898799,17.35924016,36.72973018,,,,33.25344518,27.0671416,39.43974876,,,,,,,0.125726019,2143,17045,0.107853679,0.14359836,0.000272864,6,21989,,,3664.833333,8.89719E-05,2,22479,,,11239.5,0.000311402,7,22479,,,3211.285714,2921,,,,,,,2106,,2833,0.3,,,,,,,0.28,,0.31,0.34,,,,,,,0.21,,0.35,0.820161394,12806,15614,0.791537834,0.848784953,0.490655165,2389,4869,0.415486406,0.565823925,0.024556335,238,9692,,,0.276,1275,,0.175914894,0.376085106,,,,,,,0.327349525,0.181017931,0.473681119,0.356321839,0.138694347,0.573949332,0.203428202,0.142848684,0.26400772,5.635394801,104700,18579,4.089892289,7.180897312,0.283553058,1312,4627,0.203503797,0.36360232,9.55022966,21,21989,,,101.7465008,115,113026,83.15019697,120.3428046,,,,,,,92.59687949,56.56057959,143.0083703,,,,107.809131,86.90937561,132.2183287,,,,9.5,,,,,0,,,,,0.123627961,1070,8655,0.091851647,0.155404275,0.091452481,0.0632704,0.119634562,0.024841132,0.01177834,0.037903924,0.019064125,0.00638593,0.031742319,0.84307001,7129,8456,0.808650162,0.877489857,,,,,,,0.862765957,0.82812446,0.897407455,,,,0.831619537,0.789530442,0.873708633,0.461,,8456,0.387358632,0.534641369,72.97142242,,,71.70577193,74.23707291,,,,,,,70.2141204,67.46033899,72.96790182,,,,73.18431937,71.70299843,74.6656403,,,,586.406014,523,61674,532.0057479,640.8062802,,,,,,,779.6707035,631.6448966,927.6965104,,,,562.5915484,501.5182983,623.6647985,,,,88.51206559,19,21466,53.29004549,138.2225546,,,,,,,,,,,,,88.65852827,47.20693235,151.6087835,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.134,,,0.115,0.155,0.199,,,0.172,0.227,0.12,,,0.103,0.14,101.5,19,18724,,,0.145,3190,,,,0.131833282,3020.695996,22913,,,,,,,,,,,,,,,,,,,,,,,,,,0.394,,,0.378,0.41,0.1556,1945,12500,0.131770213,0.179429787,0.0452072,216,4778,0.030909327,0.059505072,0.000845233,19,22479,,,1183.105263,0.8984,224.6,250,,,,,,,,2.760856056,,,,,,,2.394685738,,2.929302125,2.621643607,,,,,,,2.194410704,,2.822178371,0.089479896,,,,,-8927.821,,,,,0.755063877,38358,50801,0.660702372,0.849425382,49433,,,42454.44681,56411.55319,,,,,,,34423,27461.12766,41384.87234,,,,58569,53663.6383,63474.3617,,,,,,0.570450656,2000,3506,,,35.3629324,,,,,0.250844578,,49433,,,4.780876494,6,1255,,,,,,,,,,,,,,,,,,,,,,,,,,24.50710106,29,113026,15.85970364,36.17731563,25.65781325,,,,,,,,,,,,,24.45617431,14.93846662,37.7705777,,,,24.77306107,28,113026,16.46151917,35.80397072,,,,,,,,,,,,,25.78044436,16.15646723,39.03190258,,,,29.67658833,47,158374,21.80524087,39.46357126,,,,,,,,,,,,,32.66824144,23.23031319,44.65856148,,,,11.36363636,,2200,,,25,0,0.610363278,10837,17755,,,0.519,,,,,6.372819885,,,,,0.792416084,6917,8729,0.767136962,0.817695206,0.111470918,895,8029,0.080926824,0.142015012,0.798831481,6973,8729,0.770088171,0.827574792,22479,,,,,0.208817118,4694,22479,,,0.213666088,4803,22479,,,0.182748343,4108,22479,,,0.005160372,116,22479,,,0.005471774,123,22479,,,0.001112149,25,22479,,,0.031051203,698,22479,,,0.758841586,17058,22479,,,0.002434716,51,20947,0,0.008014288,0.510876818,11484,22479,,,1,21967,21967,, +01,113,01113,AL,Russell County,2024,1,13437.02668,1297,164770,12370.79306,14503.2603,0,,,,2,,,,2,12766.11856,11199.63695,14332.60017,,6650.101224,3873.929027,10647.45627,1,15577.44221,13828.26644,17326.61797,,,,,2,,0.229,,,0.198,0.261,4.538482548,,,3.643126193,5.498760997,5.836224038,,,4.707316573,7.010570194,0.108208955,609,5628,0.100092953,0.116324958,0,,,,,,,0.14261532,0.128516097,0.156714542,0.067484663,0.045249917,0.089719409,0.085552865,0.074539958,0.096565773,,,,0.086705202,0.044771705,0.1286387,0.202,,,0.165,0.24,0.438,,,0.36,0.516,6.8,0.066652777,0.157,,,0.345,,,0.292,0.404,0.547201054,32385,59183,,,0.13901765,,,0.108894575,0.174538955,0.151898734,12,79,0.099137753,0.212899677,688,404,58722,,,30.41988003,355,11670,27.25542163,33.58433844,,,,,,,26.03071948,22.00976363,30.05167534,45.82210243,31.73313799,64.03179528,32.5029656,27.06021072,37.94572048,,,,52.92479109,31.86418152,82.64861719,0.113180457,5518,48754,0.095308117,0.131052797,0.000170294,10,58722,,,5872.2,0.000273247,16,58555,,,3659.6875,0.000546495,32,58555,,,1829.84375,3205,,,,,,,3718,,3150,0.4,,,,,,0.32,0.39,0.29,0.4,0.35,,,,,,0.33,0.31,0.24,0.37,0.851911307,33964,39868,0.831427658,0.872394957,0.638753591,10229,16014,0.568213138,0.709294044,0.026024971,617,23708,,,0.305,4269,,0.209680851,0.400319149,,,,0.50877193,0.043833423,0.973710436,0.427835052,0.318468933,0.53720117,0.447447447,0.283335146,0.611559749,0.14487701,0.078093101,0.211660918,5.303648377,92310,17405,4.382574871,6.224721883,0.395874541,5604,14156,0.314315004,0.477434078,9.53645993,56,58722,,,123.9016242,359,289746,111.0846401,136.7186083,,,,,,,92.33255107,75.81216154,108.8529406,,,,172.2132423,149.8592451,194.5672394,,,,9.5,,,,,0,,,,,0.17535345,4155,23695,0.143994302,0.206712598,0.157849462,0.126435823,0.189263102,0.015615109,0.006068681,0.025161536,0.010761764,0.004756672,0.016766856,0.832046168,19608,23566,0.80610581,0.857986526,,,,,,,0.688583579,0.603930811,0.773236346,,,,0.862433205,0.807576444,0.917289966,0.34,,23566,0.294131528,0.385868472,71.54286791,,,70.79433313,72.29140269,,,,,,,72.25182778,71.07483448,73.42882108,77.30050396,73.55746169,81.04354623,69.95954035,68.85907171,71.06000899,,,,646.1020841,1297,164770,609.8253727,682.3787956,,,,,,,605.799682,553.1784169,658.4209472,319.9414602,189.6175861,505.6454422,739.5496257,682.1872098,796.9120416,,,,76.89664763,47,61121,56.50076433,102.2562398,,,,,,,102.6730395,68.76174593,147.4556114,,,,51.22076148,26.46651489,89.47236234,,,,9.071877181,52,5732,6.775311794,11.89655997,,,,,,,14.64435146,10.20032737,20.36674785,,,,,,,,,,,,,0.139,,,0.12,0.159,0.195,,,0.169,0.222,0.142,,,0.122,0.163,419.5,203,48391,,,0.157,9190,,,,0.066652777,3529.064555,52947,,,31.44294535,55,174920,23.68712953,40.92731533,,,,,,,,,,,,,52.96476582,38.17234449,71.59297685,,,,0.436,,,0.422,0.449,0.145217068,5081,34989,0.121387281,0.169046856,0.033564976,483,14390,0.021650082,0.045479869,0.000358637,21,58555,,,2788.333333,0.88943662,568.35,639,,,0.13529618,386,2853,0.055346123,0.215246236,2.72111565,,,,,,,2.547083058,2.595777057,3.044266316,2.528422728,,,,,,,2.329359466,2.464743546,2.90660152,0.058547772,,,,,-9305.399,,,,,0.73713848,35606,48303,0.623250907,0.851026054,45074,,,39301.23404,50846.76596,,,,,,,37574,25306.42553,49841.57447,45833,27391.12766,64274.87234,57505,51202.02128,63807.97872,,,,,,0.608067729,6105,10040,,,42.4485269,,,,,0.337910991,,45074,,,5.542957924,22,3969,,,18.40138575,75,407578,14.4738572,23.06629638,,,,,,,30.94008122,23.37180485,40.17826902,,,,10.07556675,6.066149365,15.73424556,,,,20.68550308,61,289746,15.70736974,26.74080954,21.05292222,,,,,,,,,,,,,37.45321326,27.42045933,49.95733792,,,,34.51298724,100,289746,27.74844174,41.27753274,,,,,,,36.93302043,27.23149373,48.96782686,,,,39.27670438,29.33372147,51.50617229,,,,31.40503168,128,407578,25.96438751,36.84567584,,,,,,,28.73007542,21.4569945,37.67567156,,,,38.18109506,29.8743554,48.08277027,,,,,,6000,,,42,-888,0.492586605,21329,43300,,,0.586,,,,,93.63011079,,,,,0.611669934,14351,23462,0.582031711,0.641308158,0.171934823,3862,22462,0.143939326,0.199930321,0.748572159,17563,23462,0.716381159,0.78076316,58555,,,,,0.24262659,14207,58555,,,0.155204509,9088,58555,,,0.4559474,26698,58555,,,0.006728717,394,58555,,,0.008094954,474,58555,,,0.002715396,159,58555,,,0.061668517,3611,58555,,,0.443702502,25981,58555,,,0.005904005,324,54878,0,0.012179589,0.523729827,30667,58555,,,0.403511143,23881,59183,, +01,115,01115,AL,St. Clair County,2024,1,10870.75525,1871,254445,10115.2942,11626.21631,0,,,,2,,,,2,12005.32106,9298.056464,14712.58566,,,,,2,11020.5361,10201.17825,11839.89394,,,,,2,,0.173,,,0.147,0.203,3.878696927,,,3.070985287,4.765096645,5.595211329,,,4.559075923,6.690168703,0.092333757,654,7083,0.085591725,0.099075789,0,,,,,,,0.181533646,0.151646488,0.211420805,0.071129707,0.038541523,0.103717892,0.083525916,0.076558654,0.090493178,,,,,,,0.182,,,0.147,0.224,0.392,,,0.322,0.462,7.8,0.02373814,0.13,,,0.303,,,0.254,0.357,0.492190158,44840,91103,,,0.14816503,,,0.118025128,0.183797152,0.20212766,19,94,0.150592483,0.257935215,284.6,264,92748,,,24.44177945,428,17511,22.12616097,26.75739794,,,,,,,15.96351197,10.60763777,23.07171947,22.91105121,13.34653163,36.68281242,25.58382712,22.9663159,28.20133833,,,,43.83561644,25.05584234,71.18629479,0.106048317,7976,75211,0.091750445,0.12034619,0.000183292,17,92748,,,5455.764706,0.000287442,27,93932,,,3478.962963,0.000244858,23,93932,,,4084,3045,,,,,,,6093,,2959,0.41,,,,,,0.31,0.4,,0.41,0.37,,,,,,0.35,0.34,,0.37,0.87286704,56320,64523,0.85539113,0.89034295,0.588579306,14090,23939,0.539319458,0.637839153,0.021983749,928,42213,,,0.172,3501,,0.129106383,0.214893617,,,,,,,0.226479147,0.124306831,0.328651462,0.518610422,0.25556999,0.781650854,0.116331096,0.085003156,0.147659036,3.791173987,125685,33152,3.416850996,4.165496977,0.203199922,4153,20438,0.164054705,0.242345138,8.194246776,76,92748,,,99.80261754,449,449888,90.57106315,109.0341719,,,,,,,62.32111532,41.07000769,90.6739508,,,,107.1640888,96.80350005,117.5246776,,,,10,,,,,0,,,,,0.102243247,3350,32765,0.085098354,0.119388141,0.082907175,0.067293268,0.098521082,0.016328399,0.009596207,0.023060591,0.007477491,0.001847896,0.013107086,0.850322018,35120,41302,0.830440333,0.870203704,,,,,,,0.76001128,0.747343576,0.772678985,,,,0.779930624,0.755708601,0.804152648,0.553,,41302,0.510305426,0.595694574,73.58727699,,,73.01946047,74.1550935,,,,,,,72.08080514,70.08770088,74.07390941,,,,73.38480291,72.78217046,73.98743536,,,,551.2649889,1871,254445,525.2940724,577.2359053,,,,,,,544.8835987,457.2521585,632.5150388,,,,566.2222678,537.8892499,594.5552857,,,,53.14577774,47,88436,39.04951849,70.67261787,,,,,,,118.4693757,56.81067049,217.8693999,,,,45.46143355,31.29355904,63.84475509,,,,6.046119235,43,7112,4.37560647,8.144082932,,,,,,,,,,,,,5.060398302,3.438295132,7.182831457,,,,,,,0.12,,,0.103,0.14,0.184,,,0.159,0.213,0.104,,,0.088,0.121,167.5,131,78227,,,0.13,11720,,,,0.02373814,1984.342324,83593,,,34.79866227,95,272999,28.15419583,42.53956008,,,,,,,,,,,,,39.68527849,31.99193559,48.67047113,,,,0.386,,,0.368,0.402,0.132473773,7223,54524,0.113409943,0.151537603,0.038433146,833,21674,0.026518252,0.050348039,0.000702636,66,93932,,,1423.212121,0.865469613,783.25,905,,,0.101282618,458,4522,0.047617324,0.154947913,3.045055498,,,,,,,2.686600402,2.67691854,3.118622969,2.886435354,,,,,,,2.600829358,2.801655216,2.936615828,0.034882525,,,,,-2112.2495,,,,,0.711468966,44888,63092,0.657967291,0.764970641,70361,,,63540.91489,77181.08511,198375,37078.31915,359671.6809,75417,17424.82979,133409.1702,55787,49834.31915,61739.68085,60714,37317.91489,84110.08511,75841,70015.80851,81666.19149,,,,,,0.466177845,6485,13911,,,28.06988798,,,,,0.298716619,,70361,,,3.72330002,19,5103,,,5.120155653,32,624981,3.502182676,7.228132068,,,,,,,,,,,,,4.308681431,2.731334424,6.46513769,,,,19.70684122,87,449888,15.69638903,24.42959469,19.33814638,,,,,,,,,,,,,22.03778585,17.4199552,27.5041541,,,,18.67131375,84,449888,14.89297108,23.11635691,,,,,,,,,,,,,19.55549066,15.38163393,24.51297688,,,,21.60065666,135,624981,17.95684316,25.24447016,,,,,,,20.06118662,10.36590787,35.04285579,,,,21.91807511,17.94647466,25.88967556,,,,,,9500,,,105,-888,0.653063924,44441,68050,,,0.682,,,,,25.77314317,,,,,0.817365093,27658,33838,0.793511234,0.841218951,0.073346693,2379,32435,0.058733884,0.087959503,0.893019682,30218,33838,0.876703811,0.909335553,93932,,,,,0.220446706,20707,93932,,,0.180694545,16973,93932,,,0.107066814,10057,93932,,,0.00388579,365,93932,,,0.008857471,832,93932,,,0.000979432,92,93932,,,0.026519184,2491,93932,,,0.83938381,78845,93932,,,0.001129839,98,86738,0,0.003010054,0.503438658,47289,93932,,,0.671108526,61140,91103,, +01,117,01117,AL,Shelby County,2024,1,6592.670274,2621,624275,6201.15789,6984.182657,0,,,,2,,,,2,8538.950889,7298.124606,9779.777171,,4258.010994,3117.399206,5679.589962,,6618.75538,6167.413781,7070.09698,,,,,2,,0.128,,,0.105,0.152,3.076180038,,,2.399855836,3.819203392,4.857196879,,,3.99060239,5.763957994,0.084229502,1355,16087,0.079937658,0.088521347,0,,,,0.083591331,0.053407107,0.113775556,0.149716281,0.135105953,0.164326609,0.081687133,0.069283202,0.094091064,0.070616239,0.065901671,0.075330807,,,,0.124463519,0.082076169,0.16685087,0.127,,,0.096,0.158,0.333,,,0.279,0.388,8.2,0.058197931,0.095,,,0.237,,,0.196,0.28,0.743390846,165794,223024,,,0.168420559,,,0.136877889,0.202273291,0.212389381,24,113,0.165119555,0.262850307,263.1,597,226902,,,10.0539719,516,51323,9.186473093,10.92147071,,,,,,,10.30662201,8.172510254,12.82748325,36.51960784,30.65567426,42.38354142,7.416630576,6.5384427,8.294818452,,,,10.73170732,5.357229627,19.20198879,0.079619858,14787,185720,0.070087943,0.089151773,0.000771258,175,226902,,,1296.582857,0.000508441,117,230115,,,1966.794872,0.001177672,271,230115,,,849.1328413,2801,,,,,,,3909,,2718,0.44,,,,,,0.58,0.44,0.18,0.44,0.41,,,,,,0.63,0.34,0.28,0.41,0.937928341,144108,153645,0.9318924,0.943964282,0.768884329,44217,57508,0.73573383,0.802034828,0.018319063,2223,121349,,,0.078,3939,,0.050595745,0.105404255,,,,0.047801147,0,0.13598903,0.063251202,0.031674965,0.094827439,0.222729076,0.13367117,0.311786981,0.052919914,0.040161225,0.065678604,4.017448227,165089,41093,3.808230876,4.226665579,0.168630758,8600,50999,0.147849277,0.189412238,9.695815815,220,226902,,,62.81131772,688,1095344,58.11778601,67.50484944,,,,,,,48.36993325,37.70673593,61.11250075,35.99881047,22.82015783,54.01589096,69.64745124,64.01791477,75.2769877,,,,10.6,,,,,0,,,,,0.095845459,7740,80755,0.086518425,0.105172493,0.085001251,0.076105828,0.093896674,0.008172869,0.005418434,0.010927303,0.005820073,0.003323613,0.008316533,0.790107474,89102,112772,0.77331061,0.806904337,,,,0.62208589,0.506045134,0.738126645,0.765597254,0.728158983,0.803035524,0.638224009,0.577331645,0.699116372,0.757038521,0.737041871,0.777035172,0.511,,112772,0.487682094,0.534317907,79.55788708,,,79.15145331,79.96432085,,,,92.59696971,84.44858088,100.7453585,76.15922613,74.9273998,77.39105246,95.74200405,84.20996324,107.2740449,79.47171231,79.02597548,79.91744914,,,,327.7012432,2621,624275,314.7501507,340.6523357,,,,,,,409.9196127,367.4340495,452.4051759,224.0804924,164.6459174,297.9795515,330.1692499,315.5384475,344.8000524,,,,43.61894843,98,224673,35.41197076,53.15752685,,,,,,,99.31719429,67.93288737,140.2062448,,,,37.25735359,28.36202379,48.05927163,,,,5.544480439,89,16052,4.452673071,6.822960279,,,,,,,14.72556894,10.13640409,20.6801737,,,,3.943217666,2.876210024,5.27633548,,,,,,,0.092,,,0.077,0.107,0.156,,,0.133,0.18,0.089,,,0.075,0.104,180.5,346,191694,,,0.095,20930,,,,0.058197931,11353.54332,195085,,,21.17015399,141,666032,17.67577076,24.66453721,,,,,,,,,,,,,25.46917153,21.09093507,29.84740799,,,,0.338,,,0.321,0.354,0.098380932,13204,134213,0.086466038,0.110295825,0.033415134,1811,54197,0.025074708,0.041755559,0.000677922,156,230115,,,1475.096154,0.943999141,2197.63,2328,,,0.040929559,509,12436,0.02386356,0.057995559,3.197249943,,,,,,3.435175126,2.766172226,2.555121058,3.406888707,2.947296544,,,,,,3.629626934,2.495561715,2.453975173,3.13346027,0.066304732,,,,,695.333,,,,,0.771458898,55238,71602,0.736699819,0.806217976,98263,,,91819.42553,104706.5745,136667,104052.3617,169281.6383,96094,66636.80851,125551.1915,70207,65786.57447,74627.42553,67752,55653.61702,79850.38298,96568,92482.38298,100653.617,,,,,,0.262522984,9423,35894,,,32.44273785,,,,,0.207087103,,98263,,,4.768560388,58,12163,,,3.763173583,57,1514679,2.850190923,4.875627866,,,,,,,11.71944664,7.429123863,17.58492415,,,,2.643869123,1.796380797,3.75276118,,,,13.72662104,150,1095344,11.49338976,15.95985231,13.69432799,,,,,,,7.028834651,3.508768933,12.57652676,,,,15.35233121,12.65058932,18.05407309,,,,13.32914591,146,1095344,11.1670151,15.49127672,,,,,,,17.27497616,11.17945373,25.50127261,,,,13.62152533,11.13190631,16.11114435,,,,11.75166487,178,1514679,10.02524881,13.47808094,,,,,,,9.171740847,5.435754901,14.49530472,,,,12.87820121,10.82409544,14.93230699,,,,7.137096774,,24800,,,171,6,0.717495787,114950,160210,,,0.756,,,,,46.50031516,,,,,0.809420359,67810,83776,0.799616883,0.819223836,0.098897595,8065,81549,0.088199445,0.109595746,0.927377769,77692,83776,0.920032815,0.934722724,230115,,,,,0.221832562,51047,230115,,,0.171940117,39566,230115,,,0.143045868,32917,230115,,,0.004254395,979,230115,,,0.02388371,5496,230115,,,0.000551898,127,230115,,,0.061212872,14086,230115,,,0.754705256,173669,230115,,,0.012832005,2720,211970,0.009888373,0.015775636,0.512378593,117906,230115,,,0.239673757,53453,223024,, +01,119,01119,AL,Sumter County,2024,1,16260.33312,304,33779,13391.59483,19129.07142,0,,,,2,,,,2,18805.82307,15169.12009,22442.52604,,,,,2,11277.33351,6789.69146,17610.95323,1,,,,2,,0.276,,,0.238,0.314,4.851560378,,,3.854037122,5.937050102,6.028917633,,,4.83687235,7.344466991,0.137044968,128,934,0.114989907,0.159100029,0,,,,,,,0.159317212,0.132263564,0.18637086,,,,0.0625,0.029603473,0.095396527,,,,,,,0.23,,,0.187,0.275,0.475,,,0.392,0.559,6.1,0.107446958,0.17,,,0.405,,,0.345,0.464,0.332523289,4105,12345,,,0.112302285,,,0.087025337,0.141865935,0.388888889,14,36,0.303559261,0.471308391,665.9,81,12164,,,21.31147541,78,3660,16.84583694,26.59768581,,,,,,,27.30236349,21.15895669,34.67303652,,,,,,,,,,,,,0.120266005,1067,8872,0.100010686,0.140521325,0.000575469,7,12164,,,1737.714286,0.000168734,2,11853,,,5926.5,0.000168734,2,11853,,,5926.5,3788,,,,,,,3695,,3491,0.44,,,,,,,0.44,,0.44,0.28,,,,,,,0.23,,0.36,0.888088115,6531,7354,0.842414665,0.933761566,0.566085848,1332,2353,0.446619874,0.685551822,0.035240374,162,4597,,,0.427,959,,0.273297872,0.580702128,,,,,,,0.62396466,0.55171647,0.69621285,,,,0.140877598,0,0.284323464,5.027220821,75720,15062,3.917511857,6.136929785,0.59009987,1359,2303,0.481017169,0.699182571,9.865175929,12,12164,,,120.5904107,75,62194,94.85200775,151.161124,,,,,,,140.3445232,107.6013412,179.9153448,,,,83.73051655,44.58297366,143.1817333,,,,9.4,,,,,0,,,,,0.117647059,630,5355,0.080006225,0.155287893,0.104236453,0.065835923,0.142636984,0.014939309,0.002128049,0.027750569,0.006349206,0,0.015712443,0.82229207,3401,4136,0.777854442,0.866729697,,,,,,,0.822361547,0.756449792,0.888273301,,,,0.805147059,0.744372044,0.865922074,0.44,,4136,0.342348742,0.537651258,71.33240161,,,69.33186739,73.33293583,,,,,,,68.62637349,66.27334971,70.97939728,,,,77.38487263,73.31510639,81.45463888,,,,731.8934163,304,33779,641.2184855,822.568347,,,,,,,833.2747305,722.1532862,944.3961747,,,,524.9450274,361.3480026,737.2179909,,,,109.9737755,13,11821,58.55640378,188.0585054,,,,,,,149.9596263,79.84718527,256.435528,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.154,,,0.132,0.177,0.204,,,0.177,0.232,0.182,,,0.158,0.208,354.8,37,10429,,,0.17,2120,,,,0.107446958,1478.792476,13763,,,,,,,,,,,,,,,,,,,,,,,,,,0.469,,,0.453,0.484,0.148654742,989,6653,0.122441976,0.174867508,0.037775891,89,2356,0.024669508,0.050882274,0.000168734,2,11853,,,5926.5,0.925,111.925,121,,,,,,,,2.164739669,,,,,,,2.147792241,,,1.813253853,,,,,,,1.798763035,,,0.357801411,,,,,-50922.41,,,,,0.573238322,28236,49257,0.377495907,0.768980736,35152,,,30089.3617,40214.6383,,,,,,,25828,22106.97872,29549.02128,,,,64667,48866.65957,80467.34043,,,,,,0.787297783,1314,1669,,,18.4147451,,,,,0.378243059,,35152,,,10.63829787,8,752,,,22.64056964,20,88337,13.82944812,34.96652354,,,,,,,30.17789072,18.16906157,47.12651457,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,30.5495707,19,62194,18.39283719,47.70693889,,,,,,,33.95432012,19.00397522,56.00248743,,,,,,,,,,48.67722472,43,88337,35.22794889,65.56790225,,,,,,,61.94409149,44.04830446,84.67961224,,,,,,,,,,,,1000,,,-888,0,0.633853904,6291,9925,,,0.438,,,,,6.442350472,,,,,0.692788662,3324,4798,0.657998851,0.727578473,0.122844319,520,4233,0.079214801,0.166473836,0.698624427,3352,4798,0.644164896,0.753083957,11853,,,,,0.192356366,2280,11853,,,0.197755842,2344,11853,,,0.693495318,8220,11853,,,0.001940437,23,11853,,,0.016620265,197,11853,,,0.000421834,5,11853,,,0.015270396,181,11853,,,0.2632245,3120,11853,,,0.004505675,52,11541,0,0.01422606,0.539019658,6389,11853,,,1,12345,12345,, +01,121,01121,AL,Talladega County,2024,1,14551.85023,2058,223891,13570.28166,15533.4188,0,,,,2,,,,2,16459.98685,14665.39789,18254.5758,,,,,2,14225.67201,12986.30505,15465.03897,,,,,2,,0.227,,,0.196,0.26,4.60900831,,,3.732874565,5.618543799,5.754563733,,,4.693804633,6.942208549,0.117560737,721,6133,0.109499659,0.125621816,0,,,,,,,0.161930537,0.146595755,0.177265319,0.085526316,0.041066284,0.129986347,0.091036024,0.081614223,0.100457824,,,,0.132352941,0.075398845,0.189307037,0.213,,,0.175,0.254,0.421,,,0.345,0.496,6.7,0.078416455,0.156,,,0.378,,,0.322,0.436,0.546312189,44879,82149,,,0.134404161,,,0.10557098,0.167353868,0.220338983,26,118,0.173889263,0.26958894,619.4,505,81524,,,26.71476075,474,17743,24.30974353,29.11977797,,,,,,,25.19949601,21.51810732,28.8808847,22.63374486,11.29868388,40.49802163,26.8856575,23.59857827,30.17273672,,,,58.25242718,37.32342926,86.67499416,0.114620536,7189,62720,0.099131174,0.130109897,0.000257593,21,81524,,,3882.095238,0.000359338,29,80704,,,2782.896552,0.000334556,27,80704,,,2989.037037,3432,,,,,,,3783,,3410,0.36,,,,,,,0.39,,0.35,0.33,,,,,,,0.24,,0.35,0.832125562,47769,57406,0.817547634,0.84670349,0.517075111,10402,20117,0.467415711,0.566734511,0.03088389,1123,36362,,,0.26,4192,,0.180170213,0.339829787,,,,,,,0.412514484,0.330982196,0.494046773,0.490998363,0.399312858,0.582683868,0.170658037,0.124345251,0.216970823,5.561820652,106431,19136,4.91845903,6.205182275,0.363371387,5984,16468,0.313224871,0.413517903,11.77567342,96,81524,,,106.3829787,427,401380,96.2924417,116.4735158,,,,,,,98.2295831,81.2782633,115.1809029,,,,117.5854194,104.1442864,131.0265524,,,,10,,,,,0,,,,,0.139571519,4430,31740,0.119420713,0.159722324,0.111897518,0.094714111,0.129080925,0.011940769,0.007084074,0.016797464,0.021266541,0.011419305,0.031113776,0.838815157,26166,31194,0.813939916,0.863690398,,,,,,,0.822164949,0.77426748,0.870062417,,,,0.856756879,0.827520773,0.885992984,0.349,,31194,0.313856113,0.384143887,71.0907077,,,70.42098854,71.76042686,,,,,,,69.1365268,67.95551109,70.31754252,,,,71.39222644,70.55564635,72.22880654,,,,677.6556673,2058,223891,646.754872,708.5564627,,,,,,,749.6584892,691.9576177,807.3593607,,,,673.5675479,634.8819803,712.2531154,,,,106.9833374,80,74778,84.83113294,133.150024,,,,,,,149.8407942,107.0484602,204.0406329,,,,88.54216522,62.34185548,122.0437115,,,,8.51621356,52,6106,6.360315624,11.16788106,,,,,,,13.0866426,8.764329936,18.79460173,,,,6.145251397,3.851196333,9.303984466,,,,,,,0.141,,,0.123,0.162,0.203,,,0.177,0.231,0.134,,,0.116,0.154,257.7,180,69851,,,0.156,12770,,,,0.078416455,6452.968499,82291,,,12.42302898,30,241487,8.381765487,17.73464634,,,,,,,,,,,,,19.34481126,12.9555237,27.78237584,,,,0.432,,,0.418,0.444,0.142642191,6636,46522,0.122386872,0.16289751,0.036022294,614,17045,0.02529889,0.046745698,0.000619548,50,80704,,,1614.08,0.930753425,679.45,730,,,0.130275229,497,3815,0.06572189,0.194828569,2.727234524,,,,,,,2.445419425,2.430638526,2.964398501,2.600405103,,,,,,,2.288708242,2.47813159,2.842127825,0.108072019,,,,,-11817.07567,,,,,0.73302918,38561,52605,0.656759189,0.809299171,55186,,,50439.10638,59932.89362,,,,33681,14369.34043,52992.65957,38196,33986.46809,42405.53192,49563,25473.46809,73652.53192,61355,54543.25532,68166.74468,,,,,,0.614853359,6499,10570,,,34.11922454,,,,,0.217518936,,55186,,,6.472491909,28,4326,,,17.78267789,100,562345,14.29727303,21.26808276,,,,,,,33.81510772,25.92584919,43.34944198,,,,9.669227116,6.696220864,13.51177572,,,,17.27192365,71,401380,13.3581045,21.97412177,17.68897304,,,,,,,,,,,,,24.74033589,18.68858385,32.12738402,,,,31.88997957,128,401380,26.36532247,37.41463667,,,,,,,41.11936037,30.89012905,53.65184572,,,,28.39647884,22.17788556,35.81829417,,,,31.29751309,176,562345,26.67360102,35.92142517,,,,,,,32.72429779,24.97208669,42.12265798,,,,32.42034974,26.46891959,38.3717799,,,,,,7900,,,55,-888,0.572715593,35663,62270,,,0.525,,,,,22.87600822,,,,,0.71927439,23275,32359,0.700477723,0.738071058,0.137672637,4097,29759,0.117728084,0.15761719,0.839426435,27163,32359,0.823286692,0.855566177,80704,,,,,0.203781721,16446,80704,,,0.194909794,15730,80704,,,0.323713818,26125,80704,,,0.003952716,319,80704,,,0.006232653,503,80704,,,0.000371729,30,80704,,,0.025376685,2048,80704,,,0.62345113,50315,80704,,,0.006290537,483,76782,0.003365447,0.009215627,0.511535983,41283,80704,,,0.586799596,48205,82149,, +01,123,01123,AL,Tallapoosa County,2024,1,12139.56728,981,110668,10841.04447,13438.0901,0,,,,2,,,,2,13762.3769,11345.63126,16179.12254,,,,,2,12025.71881,10379.95561,13671.482,,,,,2,,0.21,,,0.178,0.244,4.427662872,,,3.576336774,5.398275339,5.74626009,,,4.641744299,6.91487184,0.13319164,376,2823,0.120657324,0.145725957,0,,,,,,,0.232960326,0.206534461,0.25938619,,,,0.077514793,0.064765541,0.090264045,,,,,,,0.205,,,0.168,0.248,0.412,,,0.335,0.493,7.4,0.032664901,0.148,,,0.333,,,0.279,0.389,0.59967079,24773,41311,,,0.135062612,,,0.10637664,0.167232471,0.257142857,9,35,0.168809624,0.350986489,516.8,212,41023,,,30.73717114,236,7678,26.81556508,34.6587772,,,,,,,42.59718776,34.37062553,50.82374999,,,,24.83305509,20.37122793,29.29488225,,,,,,,0.130962316,4080,31154,0.113089976,0.148834657,0.000463155,19,41023,,,2159.105263,0.000317251,13,40977,,,3152.076923,0.000341655,14,40977,,,2926.928571,1987,,,,,,,2050,,1915,0.4,,,,,,,0.34,,0.41,0.41,,,,,,,0.31,,0.43,0.818790811,24201,29557,0.795987999,0.841593623,0.487807632,4321,8858,0.416087905,0.559527358,0.028534076,502,17593,,,0.261,2073,,0.169255319,0.352744681,,,,,,,0.541090909,0.424308396,0.657873422,0.578163772,0.391692865,0.764634679,0.096568728,0.04746862,0.145668837,5.459207952,103250,18913,4.455913574,6.46250233,0.400644468,3357,8379,0.322128557,0.47916038,13.16334739,54,41023,,,96.20080809,195,202701,82.69820549,109.7034107,,,,,,,74.00828893,52.87260665,100.7782841,,,,108.3851333,91.09742946,125.6728371,,,,9.7,,,,,1,,,,,0.128973105,2110,16360,0.103428441,0.15451777,0.088805503,0.068630168,0.108980839,0.030195599,0.018039933,0.042351265,0.016198044,0.00501138,0.027384708,0.838575513,12904,15388,0.808652636,0.868498391,,,,,,,0.830027464,0.705650896,0.954404033,,,,0.821257117,0.781088519,0.861425716,0.381,,15388,0.32951718,0.43248282,72.78075742,,,71.88131897,73.68019588,,,,,,,70.685574,69.06167602,72.30947199,,,,73.08081388,71.9512637,74.21036407,,,,587.1339267,981,110668,546.4419802,627.8258731,,,,,,,733.3907722,644.9979176,821.7836269,,,,559.6364005,511.2403446,608.0324564,,,,71.75580946,26,36234,46.87327708,105.1388864,,,,,,,85.8000858,41.14447616,157.7894126,,,,70.32678513,39.36136778,115.9933371,,,,9.230769231,27,2925,6.083135088,13.4302846,,,,,,,,,,,,,,,,,,,,,,0.134,,,0.115,0.155,0.191,,,0.164,0.219,0.123,,,0.106,0.143,216.1,76,35175,,,0.148,6130,,,,0.032664901,1359.382499,41616,,,16.45778988,20,121523,10.05284562,25.41772167,,,,,,,,,,,,,19.17407665,10.95964151,31.13749922,,,,0.387,,,0.372,0.402,0.160135252,3694,23068,0.137496954,0.18277355,0.049546899,421,8497,0.034057537,0.065036261,0.001122581,46,40977,,,890.8043478,0.925,346.875,375,,,0.119721578,258,2155,0.053476162,0.185966994,2.543644388,,,,,,,2.245845929,2.470209749,2.712501681,2.330366845,,,,,,,2.00607564,1.748803964,2.531974764,0.083490562,,,,,-7566.0185,,,,,0.824202851,37868,45945,0.720781906,0.927623797,55270,,,49393.57447,61146.42553,,,,,,,29006,22812.6383,35199.3617,,,,60323,55641.6383,65004.3617,,,,,,0.491128728,2602,5298,,,30.4376677,,,,,0.284639045,,55270,,,6.358626537,15,2359,,,8.090842573,23,284272,5.128900151,12.14023643,,,,,,,17.15016952,9.131742973,29.3273122,,,,5.111951743,2.45137956,9.401061263,,,,18.33200475,40,202701,12.6954462,25.61713918,19.7334991,,,,,,,,,,,,,23.65753853,15.9616419,33.77260727,,,,26.64022378,54,202701,20.01295602,34.75971327,,,,,,,18.50207223,8.872462804,34.02596959,,,,30.86464061,22.33689345,41.57446835,,,,22.16187314,63,284272,17.02979182,28.35466289,,,,,,,27.70412,17.14928693,42.3486903,,,,20.95900215,15.0405418,28.43325302,,,,22.43243243,,3700,,,83,0,0.661550583,20991,31730,,,0.566,,,,,19.30508991,,,,,0.754897189,12409,16438,0.727779737,0.782014642,0.08950858,1377,15384,0.067428912,0.111588249,0.798880642,13132,16438,0.765306585,0.8324547,40977,,,,,0.196232033,8041,40977,,,0.237865144,9747,40977,,,0.262317886,10749,40977,,,0.003904629,160,40977,,,0.005564097,228,40977,,,0.000610098,25,40977,,,0.025477707,1044,40977,,,0.691021793,28316,40977,,,0.010045358,392,39023,0.005612471,0.014478245,0.511555263,20962,40977,,,0.78407688,32391,41311,, +01,125,01125,AL,Tuscaloosa County,2024,1,10110.95099,3402,612994,9618.883363,10603.01862,0,,,,2,,,,2,13218.59283,12261.91622,14175.26943,,9384.189986,7161.125576,12079.31268,,8527.810232,7942.20148,9113.418983,,,,,2,,0.185,,,0.159,0.213,4.274406278,,,3.46467376,5.095687569,6.01598059,,,5.138241227,6.93509616,0.114969789,2036,17709,0.110271606,0.119667973,0,,,,0.104693141,0.068638493,0.140747789,0.172292049,0.163496156,0.181087943,0.074812968,0.061937675,0.08768826,0.075079684,0.069467885,0.080691483,,,,0.108527132,0.070572092,0.146482171,0.174,,,0.14,0.208,0.416,,,0.361,0.47,7.5,0.067321444,0.124,,,0.322,,,0.276,0.37,0.676438979,153576,227036,,,0.1649753,,,0.13407352,0.197522968,0.327777778,59,180,0.290394419,0.365361217,778.8,1768,227007,,,17.17271906,1160,67549,16.18447061,18.16096751,,,,,,,28.41383146,26.16448873,30.6631742,80.35714286,69.16410525,91.55018047,7.856124151,7.001996604,8.710251698,,,,22.48394004,13.91791326,34.36909072,0.099079544,18030,181975,0.08716465,0.110994438,0.000629937,143,227007,,,1587.461539,0.000447673,106,236780,,,2233.773585,0.001630205,386,236780,,,613.4196891,4030,,,,,,,5334,5051,3673,0.43,,,,,,0.43,0.38,0.46,0.45,0.43,,,,,,0.39,0.31,0.21,0.47,0.906402553,128672,141959,0.898615328,0.914189778,0.645344681,38822,60157,0.612070373,0.67861899,0.025291979,2616,103432,,,0.204,9540,,0.152765957,0.255234043,,,,0.159196291,0,0.340061299,0.367872436,0.321604058,0.414140815,0.267441861,0.184175313,0.350708408,0.081301169,0.059477596,0.103124742,5.498604935,126127,22938,5.042035769,5.955174101,0.316718054,14792,46704,0.282758117,0.350677991,9.603228094,218,227007,,,68.90120901,733,1063842,63.91315754,73.88926049,,,,,,,61.91588785,53.5811826,70.2505931,52.15123859,32.68290357,78.95760196,75.9447073,69.22712745,82.66228716,,,,7.9,,,,,1,,,,,0.154922037,11575,74715,0.14136327,0.168480804,0.139297386,0.126271488,0.152323284,0.015191059,0.010723777,0.019658342,0.005889045,0.003172863,0.008605227,0.818286489,88127,107697,0.800385561,0.836187417,,,,0.509129968,0.374003233,0.644256703,0.828103823,0.806613293,0.849594353,0.636658031,0.56418709,0.709128973,0.83893089,0.822238104,0.855623677,0.279,,107697,0.258157449,0.299842552,74.8553744,,,74.45404063,75.25670818,,,,86.16000339,79.23850425,93.08150252,72.21902279,71.46264994,72.97539565,93.81208975,76.62468768,110.9994918,76.0198339,75.53827254,76.50139525,,,,492.4624553,3402,612994,475.4608497,509.4640609,,,,,,,625.3230449,590.6745121,659.9715777,338.6701802,254.4194627,441.8911213,441.3730165,421.2630203,461.4830127,,,,76.47785536,169,220979,64.94734794,88.00836279,,,,,,,119.3902301,96.59382572,145.9483651,87.13720759,46.39689316,149.0072788,45.05729928,33.75100906,58.93605683,,,,9.881422925,175,17710,8.417370816,11.34547503,,,,,,,14.31000283,11.51916177,17.1008439,,,,6.281991624,4.719225451,8.196636388,,,,,,,0.122,,,0.105,0.14,0.183,,,0.16,0.208,0.124,,,0.107,0.142,293.9,566,192556,,,0.124,27830,,,,0.067321444,13104.52299,194656,,,19.62541723,127,647120,16.21212785,23.03870661,,,,,,,10.47733799,6.56609194,15.86281564,,,,26.10879175,21.04188678,31.17569673,,,,0.401,,,0.386,0.415,0.122365828,16578,135479,0.105684977,0.139046679,0.03445027,1682,48824,0.024918356,0.043982185,0.001119182,265,236780,,,893.509434,0.897276465,1746.1,1946,,,0.041185113,841,20420,0.023039325,0.059330901,2.855172772,,,,,,,2.539892169,2.196184148,3.273614045,2.626843342,,,,,,4.031223545,2.257983112,2.248786393,3.035856057,0.252998472,,,,,-8818.2745,,,,,0.804599961,45023,55957,0.74420155,0.864998371,60875,,,57472.10638,64277.89362,51136,23518.46809,78753.53192,55491,26926.23404,84055.76596,43897,40585.85106,47208.14894,59435,40899,77971,75292,71448.25532,79135.74468,,,,,,0.465336658,13995,30075,,,55.61999937,,,,,0.211449692,,60875,,,5.012150668,66,13168,,,8.209400782,121,1473920,6.746634824,9.672166739,,,,,,,19.74736118,15.9386691,24.19185157,,,,2.991958281,1.97171936,4.353142215,,,,12.51259853,135,1063842,10.34461406,14.680583,12.68985432,,,,,,,4.279001836,2.394924845,7.057562799,,,,16.63844703,13.44681166,19.83008239,,,,16.54381008,176,1063842,14.09961833,18.98800182,,,,,,,22.48831776,17.7474287,28.1065387,,,,14.84865968,12.02746201,18.13275491,,,,15.19756839,224,1473920,13.2073251,17.18781168,,,,,,,13.58958189,10.46563397,17.35359268,17.7999288,8.535757736,32.73470282,16.17873737,13.55437218,18.80310256,,,,15.64766839,,19300,,,192,110,0.562099489,90172,160420,,,0.521,,,,,132.1466016,,,,,0.622965909,52792,84743,0.608452924,0.637478894,0.148699525,12086,81278,0.133630549,0.163768502,0.861180275,72979,84743,0.849512375,0.872848174,236780,,,,,0.200561703,47489,236780,,,0.142043247,33633,236780,,,0.324909198,76932,236780,,,0.003365994,797,236780,,,0.017607061,4169,236780,,,0.000709519,168,236780,,,0.041473097,9820,236780,,,0.601402146,142400,236780,,,0.007403377,1619,218684,0.005311696,0.009495057,0.517890025,122626,236780,,,0.310902236,70586,227036,, +01,127,01127,AL,Walker County,2024,1,17481.3562,2008,176156,16304.3395,18658.37289,0,,,,2,,,,2,19926.9785,15199.52397,24654.43303,,,,,2,17785.1874,16513.95166,19056.42315,,,,,2,,0.208,,,0.175,0.244,4.549743369,,,3.615430948,5.544107746,6.235420534,,,5.114389686,7.370492152,0.110455468,599,5423,0.102112631,0.118798304,0,,,,,,,0.191044776,0.148946579,0.233142973,0.08496732,0.059458288,0.110476353,0.107049037,0.098083048,0.116015026,,,,,,,0.214,,,0.172,0.259,0.38,,,0.312,0.448,6.8,0.037186758,0.174,,,0.347,,,0.289,0.405,0.401977289,26266,65342,,,0.1387769,,,0.109789673,0.172470739,0.198113208,21,106,0.149789291,0.250388008,359.5,233,64818,,,38.45846964,482,12533,35.02506847,41.89187081,,,,,,,29.61500494,19.98111947,42.277261,116.5501166,86.50574298,153.6567988,36.98475438,33.3281116,40.64139715,,,,,,,0.124169459,6410,51623,0.108680098,0.139658821,0.000462834,30,64818,,,2160.6,0.00046628,30,64339,,,2144.633333,0.0011657,75,64339,,,857.8533333,4225,,,,,,,2072,,4281,0.39,,,,,,,0.47,,0.39,0.37,,,,,,,0.33,,0.37,0.826660189,37432,45281,0.810407421,0.842912956,0.551122523,8371,15189,0.49383141,0.608413635,0.027534418,704,25568,,,0.213,2996,,0.141510638,0.284489362,,,,,,,0.441354293,0.252277547,0.630431038,0.477139508,0.270297116,0.6839819,0.182233366,0.146126454,0.218340278,5.221809588,108269,20734,4.81903629,5.624582887,0.28278118,4063,14368,0.235566389,0.329995972,13.88503194,90,64818,,,120.281534,384,319251,108.250875,132.312193,,,,,,,77.59557188,43.42965254,127.9820955,,,,127.7436658,114.5841121,140.9032195,,,,9.7,,,,,0,,,,,0.119496855,3040,25440,0.099014788,0.139978922,0.096955128,0.07852846,0.115381797,0.019850629,0.010931329,0.028769929,0.008647799,0.004445587,0.012850011,0.839185891,21317,25402,0.818910876,0.859460906,,,,,,,0.734042553,0.602016596,0.86606851,,,,0.84498854,0.809098323,0.880878758,0.438,,25402,0.396331929,0.479668071,68.37513373,,,67.6793148,69.07095265,,,,,,,66.18615526,63.54715521,68.82515531,,,,68.15092739,67.4096676,68.89218718,,,,837.5579321,2008,176156,798.3953315,876.7205326,,,,,,,1010.54431,831.3791043,1189.709516,,,,848.9962594,807.4150749,890.5774439,,,,82.3138255,51,61958,61.28804971,108.2274789,,,,,,,,,,,,,89.47327472,65.50568235,119.34481,,,,9.065679926,49,5405,6.706839917,11.98530964,,,,,,,,,,,,,9.554831705,6.942555344,12.82691559,,,,,,,0.138,,,0.118,0.16,0.205,,,0.176,0.233,0.113,,,0.096,0.131,152.5,83,54435,,,0.174,11340,,,,0.037186758,2492.368061,67023,,,36.03471867,69,191482,28.03716201,45.60424275,,,,,,,,,,,,,38.29453802,29.55491598,48.80953229,,,,0.4,,,0.384,0.416,0.15657923,5826,37208,0.135132422,0.178026039,0.042997949,650,15117,0.029891566,0.056104332,0.000948103,61,64339,,,1054.737705,0.885299026,636.53,719,,,0.070234114,210,2990,0.025253886,0.115214341,2.937463464,,,,,,,2.564983156,,3.034158912,2.721670777,,,,,,,2.281264508,2.514899759,2.790175102,0.10126225,,,,,-4386.4065,,,,,0.745096599,40572,54452,0.665901451,0.824291746,51065,,,44726.2766,57403.7234,,,,,,,31955,19270.40426,44639.59575,36650,16513.82979,56786.17021,54618,50569.31915,58666.68085,,,,,,0.482755102,4731,9800,,,46.63492046,,,,,0.411593068,,51065,,,3.948407476,15,3799,,,8.89853886,40,449512,6.357246623,12.11728429,,,,,,,,,,,,,9.012301792,6.312105378,12.47682449,,,,23.2479862,73,319251,18.05297095,29.47236208,22.86602078,,,,,,,,,,,,,24.92898808,19.19835847,31.83376124,,,,23.80572026,76,319251,18.75619994,29.79640877,,,,,,,,,,,,,25.76046298,20.19209081,32.38991467,,,,33.36952073,150,449512,28.02928521,38.70975624,,,,,,,,,,,,,35.54852374,29.70151868,41.39552879,,,,8.225806452,,6200,,,51,0,0.634310134,31170,49140,,,0.57,,,,,14.72683376,,,,,0.774819969,19152,24718,0.755489631,0.794150308,0.094752249,2201,23229,0.073764534,0.115739965,0.8030585,19850,24718,0.784234494,0.821882506,64339,,,,,0.223612428,14387,64339,,,0.1994902,12835,64339,,,0.060896191,3918,64339,,,0.005626447,362,64339,,,0.005051369,325,64339,,,0.000948103,61,64339,,,0.032422015,2086,64339,,,0.881347239,56705,64339,,,0.005237652,321,61287,0.001198815,0.00927649,0.512457452,32971,64339,,,0.796853479,52068,65342,, +01,129,01129,AL,Washington County,2024,1,11206.69586,330,43557,9232.813551,13180.57817,0,25349.48277,14489.41968,41165.97187,1,,,,2,11273.12855,7549.791116,16190.09305,,,,,2,10012.16394,7806.442021,12217.88586,,,,,2,,0.23,,,0.199,0.264,4.781485898,,,3.903998635,5.774581746,5.845919194,,,4.751661995,7.052912464,0.113222486,143,1263,0.095747048,0.130697924,0,0.164705882,0.085852401,0.243559364,,,,0.163763066,0.120948872,0.206577261,,,,0.095571096,0.075898443,0.115243748,,,,,,,0.228,,,0.19,0.27,0.417,,,0.34,0.5,7.5,0.04481018,0.136,,,0.353,,,0.299,0.411,0.104432025,1607,15388,,,0.131376958,,,0.103581348,0.163774787,0.294117647,5,17,0.163936752,0.428688912,448.9,68,15147,,,28.36041359,96,3385,22.97202606,34.63291905,32.74559194,17.43564859,55.99595949,,,,31.47699758,20.56181987,46.12109453,,,,27.09483191,20.35447164,35.35287827,,,,,,,0.118073316,1385,11730,0.101392465,0.134754167,6.60197E-05,1,15147,,,15147,0.000132258,2,15122,,,7561,0.000330644,5,15122,,,3024.4,2280,,,,,,,2668,,1997,0.36,,,,,,,0.36,,0.35,0.23,,,,,,,0.21,,0.23,0.882666667,9268,10500,0.848329789,0.917003545,0.485790705,1453,2991,0.395567021,0.57601439,0.036405179,239,6565,,,0.256,820,,0.155914894,0.356085106,0.19,0,0.682807937,,,,0.488435374,0.269376934,0.707493814,0.318181818,0,0.915873267,0.139602521,0.071755963,0.207449079,8.827692721,131462,14892,6.303080303,11.35230514,0.263522013,838,3180,0.169058296,0.357985729,17.82531194,27,15147,,,98.31006247,79,80358,77.83300226,122.5236705,179.0656031,89.38890391,320.397827,,,,69.64161354,37.08122618,119.0892801,,,,105.0600753,79.14562658,136.7501289,,,,9.3,,,,,1,,,,,0.075471698,440,5830,0.045001058,0.105942338,0.0528,0.026032151,0.07956785,0.018867925,0.005289863,0.032445986,0.006003431,0,0.016167436,0.865300943,4773,5516,0.806969286,0.923632599,,,,,,,0.843446602,0.677852474,1,,,,0.879265845,0.82501693,0.933514759,0.551,,5516,0.450596252,0.651403748,73.72201133,,,72.24450662,75.19951604,,,,,,,72.63516572,69.58294356,75.68738787,,,,74.45378663,72.76996128,76.13761198,,,,527.7240931,330,43557,467.1139327,588.3342534,938.035824,656.9887589,1298.636975,,,,499.6707394,383.9607157,639.2959334,,,,509.53448,437.2675356,581.8014243,,,,98.17396427,15,15279,54.94722255,161.9230242,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.146,,,0.127,0.168,0.203,,,0.177,0.232,0.134,,,0.116,0.154,116.4,15,12890,,,0.136,2110,,,,0.04481018,787.8077808,17581,,,,,,,,,,,,,,,,,,,,,,,,,,0.42,,,0.406,0.432,0.146888063,1265,8612,0.124249765,0.169526361,0.040996052,135,3293,0.027889669,0.054102435,0.000661288,10,15122,,,1512.2,0.96,196.8,205,,,,,,,,2.913192653,,,,,,,2.752281212,,3.086108218,2.69839487,,,,,,,2.473083866,,2.872316358,0.128937463,,,,,-8159.074,,,,,0.630909493,39929,63288,0.442820254,0.818998732,53785,,,46098.70213,61471.29787,141004,58006.04255,224001.9575,,,,23209,9336.489362,37081.51064,,,,63464,49879.82979,77048.17021,,,,,,0.426248548,1101,2583,,,28.64759962,,,,,0.277512318,,53785,,,3.640776699,3,824,,,13.167366,15,113918,7.369674795,21.71756779,,,,,,,,,,,,,,,,,,,17.58556937,15,80358,9.363575056,30.0718592,18.66646756,,,,,,,,,,,,,21.89363837,10.92922539,39.17376668,,,,23.64419224,19,80358,14.23534827,36.92333504,,,,,,,,,,,,,28.6527478,16.03672544,47.25835012,,,,39.502098,45,113918,28.81310134,52.85691506,,,,,,,37.46300528,17.96496721,68.89580056,,,,39.15426782,26.22222766,56.23205984,,,,,,1600,,,15,-888,0.691816056,8876,12830,,,0.47,,,,,6.981382179,,,,,0.884126408,4868,5506,0.856437688,0.911815127,0.08213141,410,4992,0.04652629,0.117736531,0.71449328,3934,5506,0.664684117,0.764302443,15122,,,,,0.214191245,3239,15122,,,0.209496098,3168,15122,,,0.227483137,3440,15122,,,0.077040074,1165,15122,,,0.008332231,126,15122,,,0.001454834,22,15122,,,0.018317683,277,15122,,,0.654807565,9902,15122,,,6.85354E-05,1,14591,0,0.006398572,0.508596747,7691,15122,,,1,15388,15388,, +01,131,01131,AL,Wilcox County,2024,1,19389.89507,286,28385,16139.73049,22640.05965,0,,,,2,,,,2,22221.39673,18244.2425,26198.55097,,,,,2,14512.73446,8864.755236,22413.74132,1,,,,2,,0.298,,,0.26,0.34,5.201550019,,,4.18042776,6.323592759,6.267077811,,,4.992569133,7.595705271,0.13897937,128,921,0.116638082,0.161320658,0,,,,,,,0.156862745,0.130187034,0.183538457,,,,0.077319588,0.03973363,0.114905545,,,,,,,0.254,,,0.21,0.302,0.485,,,0.399,0.576,4.5,0.236829861,0.182,,,0.443,,,0.382,0.508,0.015943396,169,10600,,,0.1059171,,,0.082387229,0.135366274,0.315789474,6,19,0.192486042,0.440144871,794.6,83,10446,,,40.81632653,104,2548,32.97168113,48.66097194,,,,,,,44.5324097,35.80931625,54.73789203,,,,26.91511387,14.33116458,46.02566443,,,,,,,0.117210122,931,7943,0.099337782,0.135082463,9.57304E-05,1,10446,,,10446,9.94135E-05,1,10059,,,10059,9.94135E-05,1,10059,,,10059,3111,,,,,,,3341,,2453,0.36,,,,,,,0.4,,0.3,0.25,,,,,,,0.19,,0.31,0.777054746,5493,7069,0.727862653,0.82624684,0.424495171,967,2278,,,0.077927215,197,2528,,,0.456,1001,,0.283234043,0.628765957,,,,,,,0.610549944,0.499310024,0.721789864,,,,0.018348624,0,0.077619767,6.074610727,84267,13872,4.447013271,7.702208182,0.664572864,1587,2388,0.493369533,0.835776196,6.701129619,7,10446,,,133.6617594,70,52371,104.1958987,168.8735919,,,,,,,152.1863195,114.9599103,197.6265946,,,,99.39652112,54.34100303,166.770473,,,,9.3,,,,,1,,,,,0.126262626,500,3960,0.087660537,0.164864716,0.100917431,0.063555299,0.138279563,0.011111111,0,0.026374101,0.017676768,0.001759739,0.033593796,0.851921865,2704,3174,0.785426426,0.918417305,,,,,,,0.837854129,0.718904311,0.956803947,,,,0.899930507,0.817253535,0.98260748,0.446,,3174,0.309404176,0.582595824,68.86042277,,,66.8657036,70.85514194,,,,,,,66.44090346,64.15257492,68.72923199,,,,73.20902005,68.85405022,77.56398987,,,,803.2966917,286,28385,702.326527,904.2668564,,,,,,,974.1447755,841.8767349,1106.412816,,,,510.756093,359.6194249,704.0099944,,,,111.4309592,12,10769,57.57800268,194.6474608,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.166,,,0.144,0.19,0.214,,,0.187,0.245,0.18,,,0.156,0.206,239.7,21,8762,,,0.182,1940,,,,0.236829861,2763.804475,11670,,,,,,,,,,,,,,,,,,,,,,,,,,0.469,,,0.453,0.483,0.147125633,842,5723,0.123295846,0.170955421,0.041737649,98,2348,0.027439777,0.056035521,0.000894721,9,10059,,,1117.666667,0.875,98.875,113,,,,,,,,1.976705646,,,,,,,2.013432137,,,1.933907096,,,,,,,1.930440693,,,,,,,,-47862.75,,,,,0.680992152,32452,47654,0.508317702,0.853666602,33682,,,29355.70213,38008.29787,,,,,,,28542,21348.97872,35735.02128,,,,54984,46894.97872,63073.02128,,,,,,0.941807044,1230,1306,,,34.71887257,,,,,0.424529422,,33682,,,5.865102639,4,682,,,30.90733176,23,74416,19.59259707,46.37617299,,,,,,,40.19138756,24.87910236,61.43680523,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,53.46470375,28,52371,35.52690736,77.27138291,,,,,,,67.94032122,43.96739367,100.2933166,,,,,,,,,,45.68909912,34,74416,31.64102933,63.84593649,,,,,,,53.58851675,35.6091802,77.45032716,,,,,,,,,,,,1000,,,-888,0,0.737875,5903,8000,,,0.371,,,,,5.127726923,,,,,0.794635373,2844,3579,0.759421695,0.829849051,0.150015184,494,3293,0.099344308,0.200686059,0.721430567,2582,3579,0.662087172,0.780773962,10059,,,,,0.220797296,2221,10059,,,0.223680286,2250,10059,,,0.684958743,6890,10059,,,0.002485337,25,10059,,,0.003181231,32,10059,,,0.00029824,3,10059,,,0.015309673,154,10059,,,0.279948305,2816,10059,,,0.00490647,48,9783,,,0.53404911,5372,10059,,,1,10600,10600,, +01,133,01133,AL,Winston County,2024,1,11956.64161,545,64009,10238.4218,13674.86142,0,,,,2,,,,2,,,,2,,,,2,12369.78655,10552.11981,14187.45329,,,,,2,,0.214,,,0.18,0.252,4.621492112,,,3.605738555,5.709521871,6.154634182,,,4.879855066,7.502204289,0.102211596,171,1673,0.087695655,0.116727537,0,,,,,,,,,,,,,0.101532567,0.086573172,0.116491963,,,,,,,0.226,,,0.182,0.272,0.391,,,0.307,0.479,6.9,0.016945085,0.175,,,0.346,,,0.284,0.411,0.756966865,17819,23540,,,0.140178261,,,0.109888795,0.175964832,0.214285714,6,28,0.11834453,0.322712758,169.1,40,23652,,,38.50222128,182,4727,32.90843122,44.09601134,,,,,,,,,,,,,40.86425552,34.79234954,46.9361615,,,,,,,0.137266609,2529,18424,0.118202779,0.156330439,0.000380518,9,23652,,,2628,0.000168386,4,23755,,,5938.75,0.000210482,5,23755,,,4751,6652,,,,,,,,,6653,0.34,,,,,,,,,0.34,0.33,,,,,,,,,0.33,0.800388281,13605,16998,0.770179324,0.830597238,0.452942342,2286,5047,0.38261707,0.523267614,0.024437737,251,10271,,,0.252,1191,,0.175744681,0.328255319,,,,,,,,,,0.154121864,0,0.361588555,0.247865333,0.189664736,0.30606593,4.476530519,98421,21986,3.849416298,5.103644741,0.235318704,1126,4785,0.160123229,0.31051418,8.878741756,21,23652,,,99.00906314,117,118171,81.06841653,116.9497097,,,,,,,,,,,,,105.0030324,85.89443027,124.1116346,,,,8.8,,,,,1,,,,,0.104578564,1005,9610,0.074191021,0.134966107,0.081493165,0.056544215,0.106442116,0.012486993,0.000977788,0.023996198,0.012486993,0.000287906,0.02468608,0.73709694,7155,9707,0.681128152,0.793065729,,,,,,,,,,,,,0.781781782,0.731061451,0.832502112,0.457,,9707,0.396656034,0.517343967,73.17947824,,,71.94879744,74.41015904,,,,,,,,,,,,,72.73467626,71.46496621,74.00438631,,,,570.8576277,545,64009,518.7900333,622.9252222,,,,,,,,,,,,,588.4240783,533.7755864,643.0725701,,,,71.28938739,15,21041,39.90012895,117.5810031,,,,,,,,,,,,,74.62288791,40.79702722,125.204526,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.144,,,0.122,0.168,0.205,,,0.176,0.234,0.114,,,0.096,0.134,59,12,20333,,,0.175,4130,,,,0.016945085,414.8834686,24484,,,14.12648858,10,70789,6.774200365,25.97911546,,,,,,,,,,,,,15.1398162,7.260130348,27.84266104,,,,0.382,,,0.363,0.399,0.168558249,2302,13657,0.144728461,0.192388036,0.049591715,249,5021,0.034102353,0.065081077,0.000673542,16,23755,,,1484.6875,0.946280277,273.475,289,,,0.142857143,152,1064,0.046251277,0.239463009,2.762504747,,,,,,,,,2.771248828,2.691368045,,,,,,,,,2.658026094,0.106110692,,,,,-4104.257,,,,,0.994918287,41702,41915,0.844344735,1.145491839,51149,,,44412.31915,57885.68085,,,,59265,48439.12766,70090.87234,,,,60521,27036.57447,94005.42553,49372,43814.89362,54929.10638,,,,,,0.367165694,1447,3941,,,85.78199052,,,,,0.320886039,,51149,,,5.025125628,6,1194,,,7.838266417,13,165853,4.17354675,13.40367429,,,,,,,,,,,,,8.37332131,4.458440946,14.31863445,,,,18.46484426,23,118171,11.43002962,28.22547588,19.4633201,,,,,,,,,,,,,19.72671292,12.04958873,30.46630817,,,,24.54070796,29,118171,16.43529727,35.24455022,,,,,,,,,,,,,25.34555955,16.84194025,36.63139042,,,,34.97072709,58,165853,26.55473925,45.2077742,,,,,,,,,,,,,36.71379344,27.80666862,47.56697781,,,,,,2200,,,25,-888,0.606503628,11284,18605,,,0.512,,,,,6.609795497,,,,,0.782379435,7122,9103,0.76412489,0.800633981,0.069492537,582,8375,0.046553487,0.092431588,0.770405361,7013,9103,0.736967911,0.803842811,23755,,,,,0.201768049,4793,23755,,,0.222058514,5275,23755,,,0.010818775,257,23755,,,0.008924437,212,23755,,,0.003872869,92,23755,,,0.00210482,50,23755,,,0.034476952,819,23755,,,0.929572722,22082,23755,,,0.0092795,208,22415,0.00264744,0.015911561,0.500947169,11900,23755,,,1,23540,23540,, +56,000,56000,WY,Wyoming,2024,,8747.324483,8703,1623448,8466.051624,9028.597343,0,30712.37902,27178.67302,34246.08501,,2231.240385,1343.352467,3484.35825,1,12063.2439,8990.9774,15135.5104,,7840.154907,7047.354195,8632.955619,,8403.693719,8097.116982,8710.270456,,,,,2,,0.129,,,0.116,0.144,3.462278115,,,3.116093389,3.808462841,4.892755739,,,4.446985792,5.338525686,0.092528322,4239,45813,0.089874843,0.0951818,0,0.083083832,0.068283348,0.097884316,0.11328125,0.085828045,0.140734455,0.141333333,0.106073923,0.176592743,0.092511753,0.085153111,0.099870395,0.092603492,0.089595602,0.095611382,,,,0.093617021,0.07499506,0.112238983,0.171,,,0.153,0.19,0.322,,,0.3,0.345,7.1,0.079555542,0.106,,,0.222,,,0.203,0.242,0.778618742,449147,576851,,,0.194002695,,,0.175031411,0.2144956,0.323624596,200,618,0.30380877,0.343533408,359,2078,578803,,,20.06571039,2504,124790,19.27976305,20.85165773,46.00886918,39.00974681,53.00799155,,,,14.01179941,8.436018558,21.88116045,29.01759702,26.46899017,31.56620386,17.22327028,16.40186619,18.04467438,,,,21.67369055,16.95832802,27.29442626,0.153421223,71349,465053,0.141506329,0.165336117,0.000697992,404,578803,,,1432.680693,0.000710378,413,581381,,,1407.702179,0.003835695,2230,581381,,,260.7089686,2215,,,,,5105,,2213,2177,2171,0.37,,,,,0.24,0.36,0.27,0.3,0.38,0.4,,,,,0.32,0.47,0.27,0.36,0.4,0.939461769,368083,391802,0.935661681,0.943261857,0.679109457,101789,149886,0.660180655,0.698038258,0.035693966,10414,291758,,,0.132,16818,,0.115319149,0.148680851,0.289918256,0.22894041,0.350896102,0.161399549,0.031991793,0.290807304,0.415219189,0.240149376,0.590289003,0.198188495,0.168069306,0.228307683,0.104593509,0.093818964,0.115368054,4.291632146,134680,31382,4.148562783,4.434701508,0.176768979,23313,131884,0.162292171,0.191245787,13.82162843,800,578803,,,97.58566102,2827,2896942,93.98834016,101.1829819,252.4962699,212.6166806,292.3758593,,,,78.88675018,51.05134533,116.4524051,62.76913109,53.74831734,71.78994483,100.3586181,96.37076006,104.3464761,,,,3.6,,,,,0.565217391,,,,,0.120889251,28195,233230,0.114616653,0.127161849,0.096966414,0.090955337,0.102977491,0.020151782,0.017263715,0.023039848,0.010354586,0.008459978,0.012249193,0.764351356,217500,284555,0.756297796,0.772404916,0.762965964,0.694327584,0.831604345,0.71251932,0.60626548,0.81877316,0.729956123,0.62337212,0.836540126,0.730141421,0.702645305,0.757637537,0.770474222,0.76233924,0.778609205,0.156,,284555,0.147574898,0.164425102,76.81105481,,,76.56981515,77.05229446,61.68273469,59.90197048,63.4634989,83.37279547,81.03892442,85.70666651,74.83560472,71.58711144,78.084098,77.79334436,76.87372776,78.71296096,77.0442624,76.78462752,77.30389727,,,,413.3131411,8703,1623448,404.1788423,422.4474399,1255.012873,1133.08455,1376.941195,169.3455565,114.2567359,241.7513118,546.7366735,439.7651191,653.7082278,400.0054438,366.9207627,433.0901249,400.4467235,390.7867349,410.106712,,,,57.46310531,340,591684,51.35501141,63.5711992,113.2840448,68.20439521,176.9070688,,,,,,,50.38516661,36.75128626,67.41931711,58.32816084,51.30534278,65.35097889,,,,5.3001304,252,47546,4.645731809,5.954528991,,,,,,,,,,5.587510271,3.869513293,7.807985554,5.323725532,4.582177762,6.065273303,,,,,,,0.107408798,,,0.094404026,0.121963788,0.159283306,,,0.141520834,0.178810813,0.076,,,0.067,0.085,77.5,377,486674,,,0.106,61200,,,,0.079555542,44839.57166,563626,,,16.49529568,287,1739890,14.58687011,18.40372125,62.9567788,39.90919727,94.4660797,,,,,,,16.11334908,10.79136277,23.14145711,15.48000396,13.45728345,17.50272448,,,,0.330533972,,,0.30924661,0.352538811,0.169954159,56910,334855,0.155656287,0.184252032,0.115163949,15717,136475,0.09610012,0.134227779,0.001338193,778,581381,,,747.2763496,0.823673498,5908.21,7173,,,0.063198003,1924,30444,0.050462161,0.075933845,3.237046697,,,,,,3.344148179,3.048418058,2.958198429,3.321359757,3.263170002,,,,,,3.320628526,2.897434062,2.993056208,3.355415672,0.157535515,,,,,8378.29,,,,,0.700700654,44903,64083,0.676228995,0.725172313,71275,,,68380.87234,74169.12766,57667,42445.7234,72888.2766,64398,44645.48936,84150.51064,56046,32377.06383,79714.93617,62695,55720.02128,69669.97872,74160,72593.19149,75726.80851,,,,,,0.283266303,26201,92496,,,69.37097793,,,,,0.211753065,,,,,9.74025974,,,,,3.441029359,140,4068550,2.871022041,4.011036678,18.65845695,10.6649203,30.30016512,,,,,,,3.148126623,1.67624484,5.383392401,3.080312549,2.49112141,3.669503688,,,,28.87821669,846,2896942,26.8776785,30.87875489,29.20320807,41.81104795,26.50461781,62.73710096,,,,,,,11.27198382,7.658766127,15.99968128,30.85473798,28.59697111,33.11250484,,,,23.43850861,679,2896942,21.67551329,25.20150392,31.1521372,18.75562159,48.64792112,,,,,,,8.774179614,5.731585432,12.85620607,25.57432931,23.56123334,27.58742529,,,,17.42635583,709,4068550,16.14361319,18.70909847,68.80305999,52.37607709,88.75093451,,,,,,,15.49846953,11.93571006,19.79119958,16.78036932,15.40518924,18.15554939,,,,7.688603531,,62300,,,479,,0.639714716,278503,435355,,,,,,,,59.81922726,,,,,0.719148773,168393,234156,0.710358918,0.727938627,0.106138628,23992,226044,0.099659152,0.112618104,0.881890705,206500,234156,0.874549031,0.88923238,581381,,,,,0.223801603,130114,581381,,,0.185866067,108059,581381,,,0.010327135,6004,581381,,,0.027990251,16273,581381,,,0.011190596,6506,581381,,,0.001078467,627,581381,,,0.108032426,62808,581381,,,0.830723742,482967,581381,,,0.006112191,3332,545140,0.004994296,0.007230087,0.487506472,283427,581381,,,0.379822519,219101,576851,, +56,001,56001,WY,Albany County,2024,1,6314.943242,360,110227,5348.259906,7281.626579,0,,,,2,,,,2,,,,2,5219.68275,3093.514804,8249.349086,1,6281.829893,5217.868757,7345.791028,,,,,2,,0.133,,,0.111,0.16,3.378882677,,,2.694406831,4.144838829,4.962991082,,,4.125627706,5.857702926,0.0990058,239,2414,0.087091219,0.11092038,0,,,,0.141176471,0.067151246,0.215201696,,,,0.097472924,0.062543751,0.132402097,0.093963255,0.080860563,0.107065946,,,,,,,0.149,,,0.114,0.192,0.29,,,0.239,0.343,7.3,0.092184036,0.123,,,0.185,,,0.152,0.226,0.93511574,34661,37066,,,0.223101987,,,0.184679158,0.264538484,0.324324324,12,37,0.238012991,0.411014485,398.9,150,37608,,,6.245052335,71,11369,4.877437686,7.877283764,,,,,,,,,,10.09251472,5.214949629,17.62959214,5.557336753,4.150484899,7.287707785,,,,,,,0.131378412,4086,31101,0.111123093,0.151633731,0.000797703,30,37608,,,1253.6,0.000499592,19,38031,,,2001.631579,0.006231758,237,38031,,,160.4683544,1462,,,,,,,,,1511,0.38,,,,,,,,0.31,0.39,0.48,,,,,,0.5,0.46,0.43,0.48,0.965594048,20375,21101,0.957437969,0.973750126,0.862970609,8779,10173,0.789764315,0.936176902,0.031197064,663,21252,,,0.13,734,,0.081148936,0.178851064,,,,0.218446602,0,0.569731644,,,,0.18171926,0.075365719,0.288072801,0.206333973,0.121451546,0.2912164,5.612351922,119863,21357,4.595238782,6.629465062,0.185577759,1068,5755,0.123432668,0.247722849,12.23144012,46,37608,,,68.09758228,131,192371,56.43614404,79.75902052,,,,,,,,,,63.5997456,32.86291663,111.0959564,70.79153788,57.68076159,83.90231418,,,,3.7,,,,,0,,,,,0.227145956,3665,16135,0.190842586,0.263449326,0.206947983,0.172919207,0.24097676,0.010474125,0.002347055,0.018601194,0.014564611,0.0072399,0.021889322,0.68743601,14100,20511,0.655989836,0.718882184,,,,0.648989899,0.466818668,0.83116113,,,,0.819415449,0.731915263,0.906915635,0.673026676,0.634142231,0.71191112,0.097,,20511,0.072292751,0.121707249,79.35962215,,,78.35571795,80.36352635,,,,,,,,,,83.53484695,77.67330788,89.39638603,79.2643843,78.20390231,80.32486629,,,,326.4060567,360,110227,291.0681143,361.7439992,,,,,,,,,,309.6942176,205.7895585,447.5943716,328.6003297,289.9947069,367.2059524,,,,53.15379164,18,33864,31.50230564,84.00590677,,,,,,,,,,,,,53.21777474,29.09465266,89.29038325,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.104,,,0.088,0.121,0.154,,,0.131,0.179,0.088,,,0.074,0.103,42,14,33317,,,0.123,4580,,,,0.092184036,3346.188338,36299,,,10.39519049,12,115438,5.371346618,18.1583058,,,,,,,,,,,,,,,,,,,0.299,,,0.283,0.316,0.142409208,3588,25195,0.118579421,0.166238995,0.091200513,569,6239,0.062604768,0.119796258,0.001498777,57,38031,,,667.2105263,0.86,247.68,288,,,,,,,,3.5195145,,,,,,,,3.140658089,3.582919259,3.576589182,,,,,,,,3.253562218,3.641669667,0.031379435,,,,,9584.059,,,,,0.828370687,46571,56220,0.76689281,0.889848564,53537,,,48408.82979,58665.17021,42537,20377.68085,64696.31915,52731,18713.97872,86748.02128,23924,9073.276596,38774.7234,37804,23534.7234,52073.2766,59991,53969.21277,66012.78723,,,,,,0.164982314,653,3958,,,50.46510347,,,,,0.299923417,,53537,,,6.478209658,11,1698,,,,,,,,,,,,,,,,,,,,,,,,,,25.51832832,45,192371,18.14602601,34.88439486,23.39229926,,,,,,,,,,,,,26.3012184,18.21435832,36.75331648,,,,17.67418166,34,192371,12.23988459,24.69789734,,,,,,,,,,,,,20.22615368,13.83467415,28.55329407,,,,9.680433981,26,268583,6.323580873,14.1840787,,,,,,,,,,,,,9.029345373,5.515358729,13.9450916,,,,7.777777778,,2700,,,21,,0.608176509,18744,30820,,,0.61,,,,,122.169516,,,,,0.505524862,8235,16290,0.479539323,0.531510401,0.20106356,3176,15796,0.166384912,0.235742209,0.902271332,14698,16290,0.879947871,0.924594793,38031,,,,,0.152007573,5781,38031,,,0.132917883,5055,38031,,,0.012936815,492,38031,,,0.012200573,464,38031,,,0.035707712,1358,38031,,,0.001472483,56,38031,,,0.099708133,3792,38031,,,0.822223975,31270,38031,,,0.002757891,99,35897,0,0.006171484,0.478662144,18204,38031,,,0.129633627,4805,37066,, +56,003,56003,WY,Big Horn County,2024,1,9697.314097,212,31808,7606.539966,11788.08823,0,,,,2,,,,2,,,,2,,,,2,10455.06074,8075.363051,12834.75844,,,,,2,,0.147,,,0.122,0.176,3.501932918,,,2.715489264,4.376907524,4.585187362,,,3.628628392,5.6358049,0.059350504,53,893,0.043853189,0.074847819,0,,,,,,,,,,,,,0.056833559,0.040140711,0.073526407,,,,,,,0.184,,,0.145,0.227,0.333,,,0.269,0.402,8,0.056659291,0.106,,,0.238,,,0.193,0.286,0.611578856,7046,11521,,,0.166890145,,,0.132609273,0.205205599,0.272727273,3,11,0.11266692,0.445445377,171.9,20,11632,,,12.05246367,34,2821,8.346681455,16.84210992,,,,,,,,,,25.83979328,12.39118526,47.52029985,10.27837259,6.585547261,15.29340368,,,,,,,0.207388563,1875,9041,0.181175797,0.233601329,0.000343879,4,11632,,,2908,0.000421763,5,11855,,,2371,0.00194011,23,11855,,,515.4347826,2671,,,,,,,,,2656,0.32,,,,,,,,0.42,0.31,0.23,,,,,,,,0.2,0.23,0.881317576,7010,7954,0.852496596,0.910138556,0.600616808,1558,2594,0.520057415,0.681176201,0.041243046,215,5213,,,0.168,470,,0.113191489,0.222808511,,,,,,,,,,0.250591017,0.120791186,0.380390848,0.150109409,0.092259047,0.207959771,4.169959305,112714,27030,3.246959925,5.092958684,0.148862853,432,2902,0.08730763,0.210418076,11.17606603,13,11632,,,129.2868808,76,58784,101.8633572,161.8218103,,,,,,,,,,,,,136.1020376,106.0982153,171.9567367,,,,3.6,,,,,1,,,,,0.085034014,375,4410,0.060920683,0.109147344,0.061471664,0.038534203,0.084409124,0.02154195,0.006848928,0.036234972,0.003174603,0,0.00744381,0.776705012,3781,4868,0.738286274,0.815123751,,,,,,,,,,,,,0.820341328,0.771049705,0.869632952,0.207,,4868,0.158265318,0.255734682,75.05588948,,,73.44604028,76.66573867,,,,,,,,,,,,,74.46096928,72.6830125,76.23892605,,,,475.908309,212,31808,405.8891093,545.9275086,,,,,,,,,,,,,491.7705209,415.216185,568.3248569,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.11,,,0.093,0.128,0.159,,,0.136,0.183,0.089,,,0.075,0.103,51.4,5,9723,,,0.106,1240,,,,0.056659291,661.1006082,11668,,,,,,,,,,,,,,,,,,,,,,,,,,0.295,,,0.279,0.31,0.232885477,1456,6252,0.200715264,0.265055689,0.154502046,453,2932,0.111608429,0.197395663,0.000759173,9,11855,,,1317.222222,0.836660448,224.225,268,,,,,,,,3.333259082,,,,,,,,3.018447059,3.384342275,3.425495829,,,,,,,,3.090083254,3.487670508,0.035368013,,,,,5013.5715,,,,,0.849586084,46593,54842,0.679881294,1.019290873,59702,,,53704.04255,65699.95745,,,,,,,38333,15345.59575,61320.40426,52250,20895.95745,83604.04255,62607,57279.85106,67934.14894,,,,,,0.299748111,833,2779,,,,,,,,0.209708218,,59702,,,8.720930233,6,688,,,,,,,,,,,,,,,,,,,,,,,,,,35.49388629,19,58784,20.67649676,56.8291503,32.3217202,,,,,,,,,,,,,40.88522021,23.81714744,65.46119817,,,,23.81600436,14,58784,13.0204312,39.9592085,,,,,,,,,,,,,27.22040753,14.88165009,45.67121855,,,,28.98165703,24,82811,18.56909451,43.12240837,,,,,,,,,,,,,28.9527381,17.92220121,44.25733571,,,,9.285714286,,1400,,,13,,0.673341094,5784,8590,,,0.573,,,,,15.20983276,,,,,0.770999531,3286,4262,0.739789296,0.802209766,0.082308658,328,3985,0.054370017,0.110247298,0.850774284,3626,4262,0.81706428,0.884484289,11855,,,,,0.239055251,2834,11855,,,0.219063686,2597,11855,,,0.007507381,89,11855,,,0.019991565,237,11855,,,0.005904682,70,11855,,,0.000506116,6,11855,,,0.101729228,1206,11855,,,0.859721636,10192,11855,,,0.014855073,164,11040,0.00096425,0.028745895,0.48941375,5802,11855,,,1,11521,11521,, +56,005,56005,WY,Campbell County,2024,1,7982.221836,569,134659,7059.417128,8905.026545,0,,,,2,,,,2,,,,2,5510.037712,3209.800018,8822.104142,1,8279.034036,7259.089335,9298.978736,,,,,2,,0.138,,,0.115,0.164,3.478564618,,,2.769017472,4.252141077,4.501346061,,,3.656914167,5.376842271,0.103289625,449,4347,0.094242394,0.112336856,0,,,,,,,,,,0.078028747,0.054206782,0.101850713,0.109577465,0.099302021,0.119852909,,,,,,,0.185,,,0.149,0.226,0.356,,,0.301,0.415,7.8,0.082444665,0.102,,,0.238,,,0.198,0.283,0.844830519,39729,47026,,,0.196085244,,,0.161324492,0.233763191,0.393939394,13,33,0.304721321,0.4796795,344.8,160,46401,,,24.84234665,260,10466,21.82265905,27.86203424,,,,,,,,,,27.39726027,19.18870428,37.92935654,24.32495345,21.02707271,27.62283418,,,,,,,0.147276462,5951,40407,0.129404122,0.165148802,0.000560333,26,46401,,,1784.653846,0.000382507,18,47058,,,2614.333333,0.002358791,111,47058,,,423.945946,1472,,,,,,,,,1489,0.3,,,,,,,,,0.3,0.39,,,,,0.39,,,0.42,0.39,0.920228768,27836,30249,0.903693161,0.936764375,0.597391638,7787,13035,0.526429036,0.668354239,0.03555772,803,22583,,,0.098,1193,,0.05987234,0.13612766,,,,,,,,,,0.113496933,0.009358403,0.217635462,0.086314938,0.056807443,0.115822434,4.067060561,151437,37235,3.112818914,5.021302209,0.163424745,2050,12544,0.103314197,0.223535293,9.051529062,42,46401,,,77.65314927,180,231800,66.3088182,88.99748034,,,,,,,,,,,,,84.10387323,71.4609469,96.74679957,,,,2.4,,,,,0,,,,,0.127677806,2235,17505,0.095388955,0.159966658,0.111723738,0.082046443,0.141401033,0.023993145,0.011132235,0.036854055,0,0,0.002502744,0.79209205,18931,23900,0.756339801,0.827844299,,,,,,,,,,0.466891134,0.321946155,0.611836112,0.809231439,0.779064926,0.839397953,0.173,,23900,0.1299907,0.2160093,76.70261812,,,75.83888501,77.56635123,,,,,,,,,,80.12214642,76.11361304,84.1306798,76.34260953,75.42669782,77.25852123,,,,378.9130923,569,134659,346.9979684,410.8282163,,,,,,,,,,231.3206083,139.2701171,361.2357841,390.3410368,356.2344205,424.4476532,,,,54.88675034,30,54658,37.03185997,78.35424896,,,,,,,,,,,,,58.1889799,38.01097358,85.26033768,,,,5.017452007,23,4584,3.18063417,7.528641557,,,,,,,,,,,,,5.299417064,3.237021618,8.184519847,,,,,,,0.108,,,0.093,0.125,0.153,,,0.132,0.177,0.081,,,0.069,0.095,63.7,24,37673,,,0.102,4770,,,,0.082444665,3803.419736,46133,,,11.47627996,16,139418,6.559685588,18.63675967,,,,,,,,,,,,,12.37031784,6.923572987,20.40295805,,,,0.325,,,0.309,0.341,0.167011634,4680,28022,0.144373336,0.189649932,0.106993979,1386,12954,0.078398234,0.135589723,0.000935016,44,47058,,,1069.5,0.84,535.08,637,,,,,,,,3.008753565,,,,,,,,2.796078153,3.033050617,2.896457891,,,,,,,,2.650912303,2.925671412,0.040688065,,,,,9595.398,,,,,0.579007014,45983,79417,0.486974564,0.671039464,89870,,,78683.10638,101056.8936,154468,95113.95745,213822.0426,,,,,,,69253,62500.82979,76005.17021,95150,89656.04255,100643.9575,,,,,,0.30167727,2608,8645,,,,,,,,0.168543452,,89870,,,5.7997558,19,3276,,,,,,,,,,,,,,,,,,,,,,,,,,24.20732959,53,231800,18.02394689,31.82816782,22.8645384,,,,,,,,,,,,,25.45650688,18.70448375,33.85175755,,,,16.39344262,38,231800,11.60097569,22.50128081,,,,,,,,,,,,,18.30496064,12.88838158,25.23097701,,,,16.37241793,54,329823,12.29946425,21.36245392,,,,,,,,,,,,,15.98265534,11.70131246,21.31862247,,,,11.18644068,,5900,,,66,,0.589368374,19735,33485,,,0.604,,,,,50.60122339,,,,,0.782626078,13703,17509,0.748575461,0.816676696,0.090723215,1553,17118,0.065050139,0.116396292,0.923639271,16172,17509,0.893690188,0.953588355,47058,,,,,0.26344086,12397,47058,,,0.131816057,6203,47058,,,0.005270092,248,47058,,,0.017297803,814,47058,,,0.007288878,343,47058,,,0.001041268,49,47058,,,0.093097879,4381,47058,,,0.864295125,40672,47058,,,0.007568287,330,43603,0.00369399,0.011442583,0.486591015,22898,47058,,,0.268021945,12604,47026,, +56,007,56007,WY,Carbon County,2024,1,8796.722547,249,41120,7081.186543,10512.25855,0,,,,2,,,,2,,,,2,9329.523783,5221.66364,15387.63069,1,8820.641751,6913.823685,10727.45982,,,,,2,,0.165,,,0.14,0.19,3.748472969,,,3.052600829,4.579089827,4.397009273,,,3.611560701,5.346282764,0.106965174,129,1206,0.089521506,0.124408842,0,,,,,,,,,,0.119341564,0.07857984,0.160103288,0.103370787,0.083369109,0.123372464,,,,,,,0.193,,,0.156,0.23,0.362,,,0.305,0.421,6.5,0.189766541,0.112,,,0.276,,,0.231,0.322,0.798582926,11609,14537,,,0.170724245,,,0.141322357,0.204749796,0.122807018,7,57,0.065190688,0.195296596,157,23,14649,,,29.20478536,83,2842,23.26144852,36.20372547,,,,,,,,,,39.07380608,25.74988442,56.85033639,24.63054187,18.28126293,32.47229885,,,,,,,0.182279367,2084,11433,0.15844958,0.206109154,0.000546112,8,14649,,,1831.125,0.000481364,7,14542,,,2077.428571,0.002750653,40,14542,,,363.55,1729,,,,,,,,1663,1729,0.28,,,,,,,,0.28,0.28,0.32,,,,,,,,0.32,0.32,0.901044747,9142,10146,0.87614821,0.925941284,0.565813292,2188,3867,0.483485513,0.648141071,0.037096992,275,7413,,,0.142,448,,0.083617021,0.200382979,,,,,,,0.305555556,0,0.786433573,0.354876616,0.190007217,0.519746015,0.145600715,0.07776552,0.213435909,4.373661858,124610,28491,3.462957468,5.284366249,0.220522052,735,3333,0.144800091,0.296244013,8.874325893,13,14649,,,116.88207,87,74434,93.61774664,144.1736016,,,,,,,,,,72.37984945,34.70895119,133.1091202,127.6938147,100.0915668,160.5558008,,,,3.6,,,,,1,,,,,0.102811245,640,6225,0.074154955,0.131467535,0.080406059,0.052823125,0.107988992,0.02248996,0.00659009,0.03838983,0.003212851,0,0.009069424,0.810466544,5281,6516,0.763761361,0.857171727,,,,,,,,,,0.866007194,0.759110601,0.972903787,0.787366727,0.724976081,0.849757373,0.149,,6516,0.100836705,0.197163296,76.81332119,,,75.29936691,78.32727547,,,,,,,,,,74.19092412,70.47500819,77.90684005,77.20636265,75.50338865,78.90933665,,,,448.8722537,249,41120,390.0440706,507.7004369,,,,,,,,,,484.3804836,337.3887546,673.6559962,452.2486787,385.8811235,518.6162339,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.118,,,0.101,0.134,0.158,,,0.137,0.179,0.094,,,0.081,0.109,40.7,5,12297,,,0.112,1650,,,,0.189766541,3014.44151,15885,,,,,,,,,,,,,,,,,,,,,,,,,,0.343,,,0.328,0.357,0.198771499,1618,8140,0.168984265,0.228558733,0.145465083,502,3451,0.104954444,0.185975721,0.000962729,14,14542,,,1038.714286,0.824206349,155.775,189,,,,,,,,3.070765812,,,,,,,,2.914370872,3.155052256,3.18471905,,,,,,,,2.996925865,3.30890107,0.074264587,,,,,9717.0095,,,,,0.641908183,39668,61797,0.521254013,0.762562354,66225,,,56956.40426,75493.59575,66140,49536.59575,82743.40426,,,,16250,15022.76596,17477.23404,61378,48001.14894,74754.85106,65923,56089.6383,75756.3617,,,,,,0.230565371,522,2264,,,39.69690109,,,,,0.223480559,,66225,,,14.23877328,13,913,,,,,,,,,,,,,,,,,,,,,,,,,,36.93797563,28,74434,24.12911205,54.12269267,37.61721794,,,,,,,,,,,,,43.8457493,28.0927989,65.23899944,,,,26.86944138,20,74434,16.41255285,41.49767298,,,,,,,,,,,,,33.23537643,20.0098677,51.90115724,,,,23.67177661,25,105611,15.31912571,34.94421196,,,,,,,,,,,,,25.84074717,15.99582978,39.50032699,,,,8,,1500,,,12,,0.601974865,6706,11140,,,0.44,,,,,32.34115111,,,,,0.727894647,4256,5847,0.693868002,0.761921292,0.077870337,430,5522,0.048473048,0.107267626,0.878912263,5139,5847,0.834651,0.923173525,14542,,,,,0.221840187,3226,14542,,,0.188901114,2747,14542,,,0.009902352,144,14542,,,0.02118003,308,14542,,,0.009420988,137,14542,,,0.001031495,15,14542,,,0.187250722,2723,14542,,,0.764819145,11122,14542,,,0.006361599,88,13833,0,0.015118353,0.45688351,6644,14542,,,0.470317122,6837,14537,, +56,009,56009,WY,Converse County,2024,1,6680.017379,194,38463,5167.205092,8192.829667,0,,,,2,,,,2,,,,2,,,,2,6671.291707,5066.463224,8276.120191,,,,,2,,0.138,,,0.116,0.164,3.508698166,,,2.782444303,4.340862827,4.87481561,,,3.945956898,5.871860431,0.113364055,123,1085,0.094499284,0.132228827,0,,,,,,,,,,0.122222222,0.054551284,0.18989316,0.112407211,0.092246577,0.132567845,,,,,,,0.17,,,0.134,0.209,0.31,,,0.247,0.375,8.5,0.028794244,0.099,,,0.226,,,0.183,0.272,0.833757545,11465,13751,,,0.190313338,,,0.152751064,0.230062717,0.32,8,25,0.213480444,0.427129614,490.1,67,13672,,,20.2388852,61,3014,15.48114352,25.99769473,,,,,,,,,,30.69053708,15.85824836,53.61019194,19.01743265,14.02195358,25.21435665,,,,,,,0.175556151,1965,11193,0.152917853,0.198194449,0.000585138,8,13672,,,1709,0.000507762,7,13786,,,1969.428571,0.002538808,35,13786,,,393.8857143,2751,,,,,,,,,2679,0.36,,,,,,,,,0.36,0.33,,,,,,,,,0.33,0.922526316,8764,9500,0.890027109,0.955025522,0.626363636,2067,3300,0.521703808,0.731023465,0.030710925,235,7652,,,0.166,540,,0.112382979,0.219617021,,,,,,,,,,0.240909091,0.027672241,0.454145941,0.185020393,0.099056732,0.270984055,4.315118668,144906,33581,3.542201995,5.088035342,0.120558761,397,3293,0.047515937,0.193601585,10.97132826,15,13672,,,100.3680161,69,68747,78.09230738,127.022148,,,,,,,,,,,,,105.2285432,81.03880064,134.3745005,,,,2.2,,,,,1,,,,,0.061355311,335,5460,0.038846119,0.083864504,0.045028487,0.022198268,0.067858707,0.016483517,0.004626422,0.028340611,0.002747253,0,0.00925512,0.744994885,5098,6843,0.705109614,0.784880157,,,,,,,,,,,,,0.750847155,0.700020863,0.801673448,0.306,,6843,0.242013582,0.369986418,78.01821039,,,76.65166619,79.38475458,,,,,,,,,,,,,77.91231893,76.48169855,79.34293931,,,,368.5752677,194,38463,313.768672,423.3818635,,,,,,,,,,,,,372.7691829,314.9888509,430.5495148,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.105,,,0.09,0.122,0.156,,,0.133,0.18,0.083,,,0.07,0.097,53,6,11317,,,0.099,1360,,,,0.028794244,398.3107762,13833,,,,,,,,,,,,,,,,,,,,,,,,,,0.305,,,0.289,0.32,0.19273743,1518,7876,0.165333175,0.220141686,0.138568129,480,3464,0.10044047,0.176695789,0.00108806,15,13786,,,919.0666667,0.896929825,153.375,171,,,,,,,,3.476919048,,,,,,,,,3.45660704,3.572391924,,,,,,,,,3.576141346,0.033167727,,,,,8584.2785,,,,,0.673611111,43650,64800,0.532699655,0.814522567,78015,,,66449.21277,89580.78723,,,,,,,,,,118911,86678.82979,151143.1702,76705,68202.53192,85207.46809,,,,,,0.263157895,615,2337,,,,,,,,0.164353009,,78015,,,6.564551422,6,914,,,,,,,,,,,,,,,,,,,,,,,,,,28.77360431,20,68747,17.05306149,45.47469986,29.09217857,,,,,,,,,,,,,30.19224658,17.58809625,48.34071154,,,,26.18296071,18,68747,15.51768191,41.38036608,,,,,,,,,,,,,26.30713581,15.03680114,42.72114041,,,,15.4362278,15,97174,8.63953952,25.45971028,,,,,,,,,,,,,13.9663179,7.216600259,24.3963467,,,,6.666666667,,1500,,,10,,0.689282203,7010,10170,,,0.564,,,,,33.27206072,,,,,0.805162659,4554,5656,0.757728248,0.852597071,0.061074319,332,5436,0.028672373,0.093476266,0.832213579,4707,5656,0.782710512,0.881716645,13786,,,,,0.24067895,3318,13786,,,0.185695633,2560,13786,,,0.005150152,71,13786,,,0.014434934,199,13786,,,0.006165675,85,13786,,,0.000652836,9,13786,,,0.086609604,1194,13786,,,0.878645002,12113,13786,,,0.008815728,113,12818,0,0.019565719,0.489772233,6752,13786,,,0.527452549,7253,13751,, +56,011,56011,WY,Crook County,2024,1,6907.620612,121,20649,4756.52838,9058.712845,0,,,,2,,,,2,,,,2,,,,2,7319.687483,5005.353321,9634.021646,,,,,2,,0.126,,,0.103,0.152,3.361158228,,,2.612929283,4.182217587,4.73621191,,,3.78758064,5.753399615,0.082172702,59,718,0.062084636,0.102260768,0,,,,,,,,,,,,,0.08115942,0.06078332,0.101535521,,,,,,,0.165,,,0.128,0.207,0.301,,,0.237,0.372,8.4,0.057133538,0.087,,,0.208,,,0.167,0.257,0.602283805,4325,7181,,,0.165387158,,,0.132738301,0.20469734,0.541666667,13,24,0.450142334,0.622524088,136.7,10,7315,,,20.39381153,29,1422,13.65805565,29.28891522,,,,,,,,,,,,,21.53846154,14.31215127,31.1290738,,,,,,,0.187249608,1075,5741,0.162228332,0.212270885,0.000410116,3,7315,,,2438.333333,0.000402793,3,7448,,,2482.666667,0.000805585,6,7448,,,1241.333333,1606,,,,,,,,,1612,0.37,,,,,,,,,0.37,0.37,,,,,,,,,0.37,0.940967424,4766,5065,0.908393452,0.973541395,0.708552632,1077,1520,0.559191746,0.857913517,0.029733164,117,3935,,,0.111,200,,0.064531915,0.157468085,,,,,,,,,,,,,0.013563502,0,0.034728057,3.777774594,131833,34897,2.786726503,4.768822685,0.045125348,81,1795,0.000669548,0.089581148,12.30348599,9,7315,,,101.7348469,38,37352,71.99363259,139.6390258,,,,,,,,,,,,,105.3140922,74.15083986,145.1616035,,,,3.7,,,,,0,,,,,0.102654867,290,2825,0.066771421,0.138538314,0.091365102,0.050629773,0.132100431,0.006371681,0,0.020493899,0.003539823,0,0.013677458,0.745144203,2532,3398,0.667596208,0.822692197,,,,,,,,,,,,,0.752928648,0.661791038,0.844066257,0.39,,3398,0.290962934,0.489037066,78.18667225,,,76.22283529,80.15050921,,,,,,,,,,,,,77.78108007,75.71545283,79.84670731,,,,373.3659181,121,20649,299.7389149,446.9929213,,,,,,,,,,,,,386.412368,308.6206765,464.2040595,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.101,,,0.086,0.12,0.152,,,0.128,0.178,0.073,,,0.061,0.087,,,,,,0.087,630,,,,0.057133538,404.6768525,7083,,,,,,,,,,,,,,,,,,,,,,,,,,0.307,,,0.288,0.324,0.198623152,779,3922,0.170027407,0.227218896,0.165171504,313,1895,0.11751193,0.212831078,0.000805585,6,7448,,,1241.333333,0.875,75.25,86,,,,,,,,3.388325416,,,,,,,,,3.418121897,3.33897724,,,,,,,,,3.382745316,,,,,,10059.44,,,,,0.717339527,48490,67597,0.472249567,0.962429487,70196,,,60195.82979,80196.17021,,,,,,,,,,,,,69072,62867.91489,75276.08511,,,,,,0.33278956,408,1226,,,,,,,,0.198187931,,70196,,,9.920634921,5,504,,,,,,,,,,,,,,,,,,,,,,,,,,30.54582807,12,37352,15.24836732,54.65492405,32.12679375,,,,,,,,,,,,,32.25701054,16.10258344,57.71670215,,,,26.77232812,10,37352,12.83837196,49.23526462,,,,,,,,,,,,,28.46326815,13.64924344,52.34496354,,,,,,,,,,,,,,,,,,,,,,,,,,,6.25,,800,,,5,,0.749864253,4143,5525,,,0.5,,,,,13.35765379,,,,,0.783666062,2159,2755,0.744173579,0.823158544,0.147150664,377,2562,0.091580904,0.202720423,0.862068966,2375,2755,0.821504322,0.902633609,7448,,,,,0.245300752,1827,7448,,,0.226906552,1690,7448,,,0.008592911,64,7448,,,0.011680988,87,7448,,,0.003088077,23,7448,,,0.000537057,4,7448,,,0.035311493,263,7448,,,0.929779807,6925,7448,,,0.009917111,67,6756,0,0.026016111,0.490870032,3656,7448,,,1,7181,7181,, +56,013,56013,WY,Fremont County,2024,1,16274.93598,899,109159,14739.74376,17810.12819,0,42181.86302,36836.21622,47527.50981,,,,,2,,,,2,11611.68315,7439.824492,17277.2641,1,10224.08385,8714.449974,11733.71773,,,,,2,,0.158,,,0.135,0.185,3.78370387,,,3.076615455,4.600475078,5.015211187,,,4.17559269,5.951970839,0.088218224,304,3446,0.078748811,0.097687637,0,0.076773567,0.060506533,0.0930406,,,,,,,0.105691057,0.067271582,0.144110532,0.090715048,0.077711528,0.103718569,,,,0.096491228,0.042289423,0.150693033,0.197,,,0.161,0.237,0.328,,,0.277,0.383,7.7,0.059302507,0.121,,,0.232,,,0.194,0.272,0.614365092,24104,39234,,,0.168652858,,,0.137960066,0.202682231,0.62295082,38,61,0.576317309,0.665644861,511,201,39336,,,35.13043478,303,8625,31.17478092,39.08608865,51.59799769,42.86151701,60.33447837,,,,,,,47.28132388,33.77847097,64.38374346,20.82899396,16.74651114,24.91147678,,,,40,19.96785588,71.57104914,0.220669064,6504,29474,0.198030766,0.243307362,0.000813504,32,39336,,,1229.25,0.000785367,31,39472,,,1273.290323,0.002660114,105,39472,,,375.9238095,2165,,,,,5558,,,,1732,0.33,,,,,0.25,,,0.3,0.34,0.39,,,,,0.33,0.46,,0.34,0.39,0.931370311,24482,26286,0.92140139,0.941339232,0.611402933,5587,9138,0.561463942,0.661341924,0.040061389,757,18896,,,0.219,2070,,0.147510638,0.290489362,0.303133258,0.236988405,0.369278111,,,,,,,0.247311828,0.142886779,0.351736877,0.113859443,0.075991098,0.151727787,3.992219031,109798,27503,3.513620955,4.470817106,0.299191651,2924,9773,0.247843586,0.350539715,12.71100264,50,39336,,,159.1904607,314,197248,141.5825314,176.7983901,320.1983164,263.8391874,376.5574454,,,,,,,77.27432385,38.57506405,138.2651107,128.3650235,109.4003032,147.3297438,,,,6.6,,,,,1,,,,,0.130434783,1935,14835,0.110252251,0.150617314,0.08024607,0.063962718,0.096529421,0.035052241,0.025126193,0.04497829,0.021907651,0.013991755,0.029823546,0.755363492,12323,16314,0.730029891,0.780697092,0.752859477,0.688703166,0.817015789,,,,,,,0.690617075,0.615442291,0.76579186,0.767387543,0.74525842,0.789516667,0.182,,16314,0.156251697,0.207748303,71.20927183,,,70.16847982,72.25006384,56.01336127,54.01231363,58.01440891,,,,,,,72.64417125,68.78391799,76.50442452,75.83638209,74.67474826,76.99801592,,,,667.3637872,899,109159,620.5137153,714.2138592,1742.42685,1551.728458,1933.125243,,,,,,,567.0250527,394.9537251,788.5945856,460.7272646,416.6638491,504.79068,,,,68.6451731,30,43703,46.31461003,97.99525295,112.5763911,61.5465606,188.8840553,,,,,,,,,,63.63482097,35.61592624,104.9559599,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.118,,,0.102,0.137,0.166,,,0.144,0.191,0.096,,,0.083,0.111,55.6,18,32363,,,0.121,4780,,,,0.059302507,2379.394469,40123,,,35.61918008,42,117914,25.67117198,48.14678391,78.26427236,46.38436793,123.6912921,,,,,,,,,,24.46124116,14.94156159,37.77840305,,,,0.328,,,0.315,0.342,0.250822005,5111,20377,0.222226261,0.27941775,0.15660634,1497,9559,0.119670169,0.19354251,0.001368058,54,39472,,,730.962963,0.701302083,336.625,480,,,0.151121076,337,2230,0.085777449,0.216464703,2.951305648,,,,,,,,2.860273499,3.285804695,2.982007825,,,,,,,,3.175189814,3.385824099,0.27977841,,,,,12134.90275,,,,,0.807818647,42299,52362,0.713777061,0.901860233,55125,,,48671.89362,61578.10638,50845,43694.87234,57995.12766,70893,51455.04255,90330.95745,,,,59875,40843.34043,78906.65957,61275,57302.57447,65247.42553,,,,,,0.450031231,2882,6404,,,53.1687223,,,,,0.249342404,,55125,,,6.201550388,16,2580,,,7.919223916,22,277805,4.962935466,11.98980018,18.34054728,8.795005312,33.72891945,,,,,,,,,,5.681700791,2.836284564,10.16613216,,,,35.05118398,67,197248,26.87354177,44.93403597,33.9673913,48.16457003,27.53021335,78.21624421,,,,,,,,,,33.70368721,24.29065321,45.55759401,,,,28.39065542,56,197248,21.445996,36.86762756,25.82244487,12.38286602,47.4883955,,,,,,,,,,30.63256241,22.07725659,41.40632546,,,,30.95696622,86,277805,24.76157709,38.23160144,91.70273641,68.06353851,120.8986257,,,,,,,,,,15.49554761,10.4547809,22.12085773,,,,8.260869565,,4600,,,38,,0.616221697,18234,29590,,,0.54,,,,,36.42981467,,,,,0.706916604,10333,14617,0.687878509,0.725954699,0.09195897,1282,13941,0.076373493,0.107544447,0.84832729,12400,14617,0.832026386,0.864628194,39472,,,,,0.244578435,9654,39472,,,0.20047122,7913,39472,,,0.005472234,216,39472,,,0.215443859,8504,39472,,,0.005649574,223,39472,,,0.000760032,30,39472,,,0.082387515,3252,39472,,,0.693326915,27367,39472,,,0.001352485,50,36969,0,0.004607975,0.49265302,19446,39472,,,0.535836265,21023,39234,, +56,015,56015,WY,Goshen County,2024,1,9255.179481,228,34920,7336.401396,11173.95757,0,,,,2,,,,2,,,,2,17012.53358,9910.427739,27238.71428,1,8578.291215,6618.229512,10538.35292,,,,,2,,0.141,,,0.117,0.167,3.458644709,,,2.706387329,4.278680106,4.682149548,,,3.759245112,5.640369179,0.084186576,74,879,0.065830216,0.102542935,0,,,,,,,,,,0.092436975,0.040396189,0.144477761,0.08630137,0.065930716,0.106672024,,,,,,,0.176,,,0.14,0.216,0.295,,,0.236,0.357,8.2,0.058550922,0.099,,,0.23,,,0.188,0.275,0.617618819,7719,12498,,,0.17823853,,,0.143540567,0.215525012,0.2,3,15,0.07369192,0.354373303,374.9,47,12537,,,15.18151815,46,3030,11.11477934,20.25001773,,,,,,,,,,,,,13.92111369,9.750176882,19.27268928,,,,,,,0.171727628,1493,8694,0.14908933,0.194365926,0.000797639,10,12537,,,1253.7,0.000636841,8,12562,,,1570.25,0.006209202,78,12562,,,161.0512821,2414,,,,,,,,3125,2300,0.34,,,,,,,,0.27,0.35,0.25,,,,,,,,0.24,0.25,0.933004152,8314,8911,0.916700378,0.949307926,0.711870504,1979,2780,0.610271229,0.813469778,0.029357798,192,6540,,,0.165,393,,0.098276596,0.231723404,,,,,,,,,,,,,0.107277628,0.042637229,0.171918027,4.204830662,111243,26456,3.641352582,4.768308743,0.148331273,360,2427,0.073755259,0.222907287,19.14333573,24,12537,,,98.87886578,65,65737,76.3126211,126.0292314,,,,,,,,,,,,,108.7247126,83.16579015,139.6614418,,,,3.9,,,,,1,,,,,0.108882522,570,5235,0.072062484,0.145702559,0.091083413,0.054401968,0.127764859,0.011270296,0.000292999,0.022247593,0.009551098,0.000911796,0.018190401,0.731426578,4194,5734,0.680401758,0.782451398,,,,,,,,,,,,,0.710266323,0.668067221,0.752465425,0.173,,5734,0.125939941,0.220060059,76.52811939,,,74.95216189,78.10407688,,,,,,,,,,,,,76.9220639,75.29031051,78.5538173,,,,453.300148,228,34920,390.0206323,516.5796637,,,,,,,,,,699.0048547,460.6486038,1017.015364,437.5778486,371.2252611,503.930436,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.106,,,0.089,0.123,0.152,,,0.131,0.176,0.086,,,0.072,0.1,92.3,10,10830,,,0.099,1260,,,,0.058550922,775.7411587,13249,,,,,,,,,,,,,,,,,,,,,,,,,,0.323,,,0.306,0.339,0.191301607,1214,6346,0.162705863,0.219897352,0.12180268,300,2463,0.086057999,0.157547361,0.000955262,12,12562,,,1046.833333,0.825,110.55,134,,,,,,,,2.98437006,,,,,,,,2.726569773,3.053976635,2.900558367,,,,,,,,2.507855085,3.035818806,0.052881048,,,,,10847.48,,,,,0.664676636,34625,52093,0.55522721,0.774126062,58720,,,51125.44681,66314.55319,,,,,,,,,,,,,62573,57223.21277,67922.78723,,,,,,0.310606061,492,1584,,,,,,,,0.232101499,,58720,,,9.446693657,7,741,,,,,,,,,,,,,,,,,,,,,,,,,,24.85156479,16,65737,13.90923216,40.98887682,24.33941312,,,,,,,,,,,,,27.63169477,14.71271373,47.25103959,,,,,,,,,,,,,,,,,,,,,,,,,,,25.94314128,24,92510,16.62226014,38.6013378,,,,,,,,,,,,,27.76480685,17.40005663,42.03625123,,,,5,,1200,,,6,,0.599617591,6272,10460,,,0.59,,,,,40.67074954,,,,,0.752613928,3815,5069,0.70764309,0.797584766,0.105834186,517,4885,0.06038955,0.151278823,0.799763267,4054,5069,0.759406832,0.840119701,12562,,,,,0.196783952,2472,12562,,,0.238178634,2992,12562,,,0.011383538,143,12562,,,0.017115109,215,12562,,,0.009154593,115,12562,,,0.000716446,9,12562,,,0.115029454,1445,12562,,,0.84397389,10602,12562,,,0.00295808,35,11832,0,0.011849963,0.469988855,5904,12562,,,0.485037606,6062,12498,, +56,017,56017,WY,Hot Springs County,2024,1,15379.03534,116,11846,10186.52403,20571.54665,0,,,,2,,,,2,,,,2,,,,2,16549.5438,10833.30263,22265.78496,,,,,2,,0.15,,,0.123,0.178,3.786677783,,,2.958531246,4.677092012,4.930053226,,,3.919203928,5.970325247,0.080808081,24,297,0.049811889,0.111804273,0,,,,,,,,,,,,,0.082397004,0.049414504,0.115379503,,,,,,,0.188,,,0.147,0.231,0.33,,,0.258,0.408,8,0.023721368,0.121,,,0.242,,,0.195,0.291,0.803072928,3711,4621,,,0.146736694,,,0.116226638,0.180333929,0.272727273,3,11,0.11266692,0.445445377,174,8,4597,,,20.28639618,17,838,11.81757335,32.48048546,,,,,,,,,,,,,21.73913044,12.42579138,35.30298587,,,,,,,0.166920037,549,3289,0.143090249,0.190749824,0.001087666,5,4597,,,919.4,0.00087184,4,4588,,,1147,0.003051439,14,4588,,,327.7142857,241,,,,,,,,,255,0.34,,,,,,,,,0.34,0.38,,,,,,,,,0.38,0.951027811,3146,3308,0.926361648,0.975693975,0.701943845,650,926,0.552836044,0.851051645,0.029296021,67,2287,,,0.171,157,,0.107851064,0.234148936,,,,,,,,,,,,,0.264524104,0.131526586,0.397521622,4.134806997,112045,27098,3.091187784,5.17842621,0.207941484,199,957,0.074594857,0.341288111,10.87665869,5,4597,,,167.5041876,38,22686,118.5359325,229.9125845,,,,,,,,,,,,,174.1738836,121.9892468,241.1300716,,,,3,,,,,1,,,,,0.086956522,190,2185,0.035332158,0.138580885,0.078304929,0.024845281,0.131764577,0.012814645,0,0.031272123,0.006407323,0,0.013473642,0.728585657,1463,2008,0.629053868,0.828117446,,,,,,,,,,,,,0.772891566,0.668967366,0.876815766,0.136,,2008,0.073825258,0.198174742,70.77768905,,,67.4935741,74.06180399,,,,,,,,,,,,,69.84190391,66.31893533,73.36487249,,,,624.7597997,116,11846,490.5012553,759.0183441,,,,,,,,,,,,,657.9092717,512.7696123,803.048931,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.115,,,0.097,0.133,0.164,,,0.139,0.189,0.088,,,0.074,0.103,,,,,,0.121,570,,,,0.023721368,114.1472229,4812,,,,,,,,,,,,,,,,,,,,,,,,,,0.323,,,0.304,0.34,0.18960375,445,2347,0.159816515,0.219390984,0.114141414,113,990,0.079588223,0.148694606,0.00065388,3,4588,,,1529.333333,,,,,,,,,,,3.230482404,,,,,,,,,3.20321814,3.13959956,,,,,,,,,3.245978544,0.012028433,,,,,7221.544,,,,,0.683375133,39782,58214,0.41649617,0.950254096,64734,,,56219.61702,73248.38298,96250,12502.59575,179997.4043,,,,,,,,,,62431,51552.70213,73309.29787,,,,,,0.309923664,203,655,,,,,,,,0.20698551,,64734,,,11.32075472,3,265,,,,,,,,,,,,,,,,,,,,,,,,,,65.98346263,18,22686,35.13341489,112.8337306,79.34408887,,,,,,,,,,,,,63.76377397,32.94767247,111.3824809,,,,52.89605924,12,22686,27.33216569,92.39877038,,,,,,,,,,,,,53.21979777,26.56713129,95.22491903,,,,31.14682614,10,32106,14.9361138,57.28012223,,,,,,,,,,,,,34.14251084,16.37266105,62.78929305,,,,20,,400,,,8,,0.706139154,2588,3665,,,0.564,,,,,27.88819244,,,,,0.714014252,1503,2105,0.665156584,0.76287192,0.083204931,162,1947,0.030474148,0.135935713,0.863657957,1818,2105,0.83544634,0.891869575,4588,,,,,0.205972101,945,4588,,,0.289886661,1330,4588,,,0.010244115,47,4588,,,0.022231909,102,4588,,,0.006756757,31,4588,,,0.00087184,4,4588,,,0.046643418,214,4588,,,0.89625109,4112,4588,,,0.000689814,3,4349,0,0.014508261,0.498038361,2285,4588,,,1,4621,4621,, +56,019,56019,WY,Johnson County,2024,1,6220.381221,119,23030,4102.843651,8337.918792,0,,,,2,,,,2,,,,2,,,,2,6429.441784,4113.989062,8744.894506,,,,,2,,0.14,,,0.116,0.166,3.532453468,,,2.78020548,4.382080251,4.764785144,,,3.831796668,5.721992877,0.062385321,34,545,0.042079936,0.082690706,0,,,,,,,,,,,,,0.067761807,0.045439066,0.090084548,,,,,,,0.164,,,0.126,0.204,0.336,,,0.27,0.406,7.1,0.112685035,0.123,,,0.219,,,0.176,0.264,0.617970877,5220,8447,,,0.149887238,,,0.120379414,0.182575808,0.2,3,15,0.07369192,0.354373303,255.1,22,8623,,,11.52368758,18,1562,6.829667593,18.21239454,,,,,,,,,,,,,13.35311573,7.913902656,21.10367972,,,,,,,0.105471848,665,6305,0.088790997,0.122152699,0.001507596,13,8623,,,663.3076923,0.000687285,6,8730,,,1455,0.003436426,30,8730,,,291,1989,,,,,,,,,2036,0.37,,,,,,,,,0.37,0.4,,,,,,,,,0.4,0.927714647,5878,6336,0.913885743,0.94154355,0.700051361,1363,1947,0.54039429,0.859708432,0.034611787,148,4276,,,0.089,157,,0.05206383,0.12593617,,,,,,,,,,,,,0.187205387,0.08668814,0.287722635,6.12599264,126514,20652,4.082066713,8.169918567,0.142426071,236,1657,0.076754224,0.208097918,10.43720283,9,8623,,,100.9579264,43,42592,73.06375191,135.9896643,,,,,,,,,,,,,108.3200083,78.06753426,146.4171836,,,,3.1,,,,,0,,,,,0.092171717,365,3960,0.058452567,0.125890867,0.075342466,0.038992216,0.111692716,0.013888889,0,0.033228311,0.013636364,0.002923829,0.024348898,0.729736576,2881,3948,0.653085429,0.806387722,,,,,,,,,,,,,0.725156161,0.643652155,0.806660167,0.166,,3948,0.102783657,0.229216343,79.8458202,,,77.79874809,81.89289232,,,,,,,,,,,,,79.40616229,77.21067613,81.60164845,,,,303.3384779,119,23030,241.9205308,364.756425,,,,,,,,,,,,,307.623091,241.9618374,373.2843447,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.108,,,0.091,0.125,0.158,,,0.133,0.181,0.083,,,0.07,0.098,,,,,,0.123,1040,,,,0.112685035,965.5980675,8569,,,,,,,,,,,,,,,,,,,,,,,,,,0.3,,,0.283,0.319,0.11852346,533,4497,0.097076652,0.139970269,0.077572559,147,1895,0.050168304,0.104976815,0.000687285,6,8730,,,1455,0.875,77.875,89,,,,,,,,3.232578942,,,,,,,,,3.240144337,3.182719984,,,,,,,,,3.220783448,0.048538897,,,,,11312.75,,,,,0.677515672,43340,63969,0.428622644,0.9264087,70067,,,60124.02128,80009.97872,,,,,,,,,,,,,62714,55215.95745,70212.04255,,,,,,0.233195021,281,1205,,,,,,,,0.225755349,,70067,,,11.23595506,5,445,,,,,,,,,,,,,,,,,,,,,,,,,,32.15949283,16,42592,17.1235755,54.99371216,37.56574005,,,,,,,,,,,,,31.42821153,16.23941551,54.89876075,,,,30.52216379,13,42592,16.25176674,52.19382964,,,,,,,,,,,,,33.5276216,17.85204645,57.33325403,,,,,,,,,,,,,,,,,,,,,,,,,,,10,,900,,,9,,0.732002956,4952,6765,,,0.613,,,,,23.68148696,,,,,0.714429615,2837,3971,0.647250347,0.781608883,0.10495382,375,3573,0.056768749,0.153138892,0.836313271,3321,3971,0.770513036,0.902113507,8730,,,,,0.205498282,1794,8730,,,0.270561283,2362,8730,,,0.0069874,61,8730,,,0.019358534,169,8730,,,0.00836197,73,8730,,,0.001030928,9,8730,,,0.055097365,481,8730,,,0.896907217,7830,8730,,,0,0,8162,0,0.010510565,0.497021764,4339,8730,,,0.465372322,3931,8447,, +56,021,56021,WY,Laramie County,2024,1,8762.459403,1519,281016,8092.536773,9432.382033,0,,,,2,,,,2,15771.41336,10856.31527,22148.92811,,9907.05177,8115.85656,11698.24698,,8401.945702,7643.811013,9160.080392,,,,,2,,0.132,,,0.112,0.155,3.282968035,,,2.671287815,3.914579379,4.764020554,,,4.048987158,5.526031228,0.099893604,845,8459,0.093503436,0.106283773,0,,,,0.099173554,0.045915917,0.15243119,0.14479638,0.098401127,0.191191634,0.106470588,0.09180833,0.121132847,0.097035933,0.089570155,0.104501711,,,,0.084821429,0.048334461,0.121308397,0.148,,,0.116,0.181,0.323,,,0.284,0.368,7.6,0.119062023,0.097,,,0.221,,,0.186,0.258,0.710571872,71421,100512,,,0.159613663,,,0.134486955,0.187114455,0.363636364,24,66,0.301252523,0.425281298,414.4,418,100863,,,21.71977043,439,20212,19.68797939,23.75156148,,,,,,,20.67669173,10.32173001,36.996313,37.21278721,31.2375502,43.18802423,17.16561384,15.03774231,19.29348538,,,,21.73913044,12.42579138,35.30298587,0.13013931,10743,82550,0.115841437,0.144437182,0.000634524,64,100863,,,1575.984375,0.000863755,87,100723,,,1157.735632,0.004566981,460,100723,,,218.9630435,2786,,,,,4270,,3355,3082,2709,0.41,,,,,,0.33,0.31,0.31,0.42,0.44,,,,,0.27,0.52,0.27,0.43,0.45,0.943458559,64542,68410,0.934382045,0.952535073,0.722847268,19660,27198,0.676063849,0.769630688,0.035332802,1730,48963,,,0.119,2631,,0.08087234,0.15712766,0.014925373,0,0.268759919,0.03125,0,0.521773459,0.542207792,0.281353975,0.803061609,0.267790629,0.190747801,0.344833458,0.069333685,0.047213711,0.091453659,4.228444019,141285,33413,3.90046298,4.556425058,0.194750656,4452,22860,0.154333013,0.2351683,12.69048115,128,100863,,,89.31062235,445,498261,81.01251246,97.60873223,313.4796238,150.3256645,576.5001894,,,,87.81173165,42.10913853,161.488901,75.87758416,57.46894126,98.30821129,92.2766968,82.74441527,101.8089783,,,,3.8,,,,,1,,,,,0.111691542,4490,40200,0.09520867,0.128174415,0.09659505,0.080535465,0.112654635,0.013059702,0.008663209,0.017456194,0.007835821,0.004739484,0.010932158,0.811313299,41063,50613,0.787550126,0.835076472,,,,,,,0.811783961,0.65176598,0.971801942,0.791495711,0.73953314,0.843458281,0.809001448,0.785389657,0.832613239,0.112,,50613,0.096328404,0.127671596,76.41238613,,,75.84467359,76.98009868,,,,,,,68.93513449,65.17146125,72.69880773,75.34457105,73.69223543,76.99690667,76.74464642,76.10914824,77.3801446,,,,425.8495375,1519,281016,403.5382058,448.1608693,,,,,,,826.0610856,600.2172494,1108.948451,480.9082327,410.906037,550.9104284,409.4017092,385.2826599,433.5207585,,,,61.56779409,62,100702,47.20367469,78.9271334,,,,,,,,,,87.35230564,52.59179424,136.4114458,58.42786297,41.92884323,79.26399357,,,,5.573618207,48,8612,4.109546078,7.389809125,,,,,,,,,,,,,4.871711595,3.286923355,6.954671224,,,,,,,0.099,,,0.085,0.114,0.145,,,0.125,0.166,0.083,,,0.072,0.095,100.3,85,84777,,,0.097,9700,,,,0.119062023,10922.51183,91738,,,19.93633663,60,300958,15.21352513,25.66201709,,,,,,,,,,,,,19.13712816,13.95875259,25.60698314,,,,0.304,,,0.289,0.316,0.140505969,8392,59727,0.122633628,0.158378309,0.107223666,2559,23866,0.082202389,0.132244942,0.001697725,171,100723,,,589.0233918,0.804840849,910.275,1131,,,0.070656692,340,4812,0.034819203,0.106494181,3.177087442,,,,,,,2.979877126,2.905766432,3.275861088,3.054404611,,,,,,,2.958314819,2.845494891,3.148968222,0.04871292,,,,,7879.5155,,,,,0.759851228,46376,61033,0.701106829,0.818595627,71956,,,67211.48936,76700.51064,69583,6827.255319,132338.7447,62159,33069.97872,91248.02128,103469,52170.61702,154767.383,65179,50539.17021,79818.82979,78198,74222,82174,,,,,,0.247539693,3773,15242,,,45.98212382,,,,,0.229334593,,71956,,,7.318263132,45,6149,,,4.758348017,33,693518,3.275427829,6.682489751,,,,,,,,,,,,,3.86284331,2.391160892,5.904766332,,,,28.76839584,145,498261,23.97544929,33.5613424,29.10121402,,,,,,,,,,,,,31.73081111,26.04740128,37.41422093,,,,25.08725347,125,498261,20.68926402,29.48524291,,,,,,,,,,14.64304256,7.309754086,26.20044796,26.91403657,21.76601616,32.06205698,,,,13.69827459,95,693518,11.08272216,16.74543035,,,,,,,,,,10.62145147,5.302190305,19.00471063,14.71559356,11.66855049,18.31483,,,,4.380952381,,10500,,,46,,0.603441606,45237,74965,,,0.701,,,,,95.86829647,,,,,0.721906924,29892,41407,0.704141033,0.739672815,0.114552763,4645,40549,0.098619818,0.130485709,0.900475765,37286,41407,0.886290566,0.914660964,100723,,,,,0.222729665,22434,100723,,,0.174210458,17547,100723,,,0.021454881,2161,100723,,,0.013025823,1312,100723,,,0.014058358,1416,100723,,,0.001489233,150,100723,,,0.158384877,15953,100723,,,0.774748568,78035,100723,,,0.004830304,456,94404,0.002085996,0.007574612,0.490344807,49389,100723,,,0.211536931,21262,100512,, +56,023,56023,WY,Lincoln County,2024,1,8013.920711,241,56410,6398.081407,9629.760014,0,,,,2,,,,2,,,,2,,,,2,8283.802588,6570.268827,9997.336349,,,,,2,,0.128,,,0.108,0.155,3.310651302,,,2.688765502,4.203932436,4.403137738,,,3.641583909,5.448036231,0.08338519,134,1607,0.069868012,0.096902368,0,,,,,,,,,,,,,0.083391731,0.069046833,0.097736629,,,,,,,0.162,,,0.129,0.203,0.289,,,0.24,0.351,8.5,0.052113615,0.087,,,0.211,,,0.173,0.256,0.776313774,15201,19581,,,0.169669919,,,0.139301313,0.206523005,0.448275862,13,29,0.356402006,0.533757898,104.2,21,20153,,,13.68019735,61,4459,10.464267,17.57278581,,,,,,,,,,,,,11.75587794,8.63777693,15.6328255,,,,,,,0.191120637,3121,16330,0.168482339,0.213758935,0.000645065,13,20153,,,1550.230769,0.000484027,10,20660,,,2066,0.001306873,27,20660,,,765.1851852,2425,,,,,,,,,2465,0.35,,,,,,,,,0.35,0.39,,,,,,,,0.47,0.39,0.941167563,12430,13207,0.924372704,0.957962421,0.622834296,2804,4502,0.535927591,0.709741001,0.034242298,329,9608,,,0.098,504,,0.062255319,0.133744681,,,,,,,,,,0.259358289,0.042094306,0.476622272,0.050290568,0.020537551,0.080043585,3.46249611,144625,41769,2.913024818,4.011967402,0.06842714,355,5188,0.036670113,0.100184166,4.465836352,9,20153,,,92.9903472,92,98935,74.96334438,114.0444059,,,,,,,,,,,,,98.71018689,79.37464698,121.3315783,,,,4.8,,,,,1,,,,,0.116326531,855,7350,0.079361037,0.153292025,0.058419244,0.032019586,0.084818902,0.057006803,0.026928306,0.0870853,0.008163265,0,0.01730505,0.683094915,6542,9577,0.644014812,0.722175018,,,,,,,,,,,,,0.694723618,0.638764798,0.750682439,0.25,,9577,0.203715584,0.296284416,78.44842522,,,77.01576675,79.8810837,,,,,,,,,,,,,78.12853257,76.64685526,79.61020987,,,,320.2938519,241,56410,276.5799118,364.0077919,,,,,,,,,,,,,331.7022618,285.2255493,378.1789742,,,,71.16488013,16,22483,40.67687788,115.5673068,,,,,,,,,,,,,69.74195477,38.12857565,117.0151496,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.1,,,0.086,0.118,0.149,,,0.129,0.175,0.076,,,0.065,0.09,,,,,,0.087,1690,,,,0.052113615,943.5691197,18106,,,16.60136795,10,60236,7.961001222,30.53050674,,,,,,,,,,,,,18.04500424,8.653280936,33.18540528,,,,0.316,,,0.299,0.331,0.195405381,2186,11187,0.169192615,0.221618147,0.184609693,998,5406,0.139333097,0.229886289,0.000822846,17,20660,,,1215.294118,0.855035971,237.7,278,,,,,,,,3.321032598,,,,,,,,,3.320395199,3.406539225,,,,,,,,,3.412912648,0.025690835,,,,,6890.9175,,,,,0.626245195,44635,71274,0.540481151,0.712009238,93044,,,82655.40426,103432.5957,,,,101250,97747.02128,104752.9787,,,,55625,41924.06383,69325.93617,83996,80813.53192,87178.46809,,,,,,0.182376502,683,3745,,,,,,,,0.158462663,,93044,,,8.778930567,11,1253,,,,,,,,,,,,,,,,,,,,,,,,,,26.91494719,25,98935,17.06176773,40.38563591,25.26911609,,,,,,,,,,,,,29.29331165,18.56944678,43.95435036,,,,19.20452823,19,98935,11.56238052,29.99024973,,,,,,,,,,,,,20.83881723,12.54632926,32.54239446,,,,20.47277487,28,136767,13.60401022,29.58885984,,,,,,,,,,,,,20.60336152,13.45879979,30.18869833,,,,6.538461539,,2600,,,17,,0.751517315,10525,14005,,,0.49,,,,,9.63726197,,,,,0.793813082,6056,7629,0.771439724,0.81618644,0.053861652,401,7445,0.031915634,0.07580767,0.895792371,6834,7629,0.867456646,0.924128097,20660,,,,,0.251597289,5198,20660,,,0.19714424,4073,20660,,,0.005808325,120,20660,,,0.010987415,227,20660,,,0.005324298,110,20660,,,0.000726041,15,20660,,,0.054356244,1123,20660,,,0.912584705,18854,20660,,,0.01066121,198,18572,0.002247156,0.019075265,0.484365925,10007,20660,,,1,19581,19581,, +56,025,56025,WY,Natrona County,2024,1,9493.68067,1335,225463,8718.496722,10268.86462,0,25221.02372,13429.13292,43128.71867,1,,,,2,18639.60421,9631.355494,32559.63742,1,8749.467571,6428.779673,11634.93705,,9495.035709,8644.463071,10345.60835,,,,,2,,0.142,,,0.121,0.166,3.76449744,,,3.059903357,4.523668049,4.928192494,,,4.149712653,5.731810656,0.098119503,647,6594,0.090939349,0.105299657,0,0.142857143,0.060881537,0.224832749,0.163934426,0.071027861,0.256840992,,,,0.075098814,0.056348895,0.093848733,0.099366145,0.091360339,0.10737195,,,,0.110294118,0.057645615,0.16294262,0.172,,,0.138,0.209,0.324,,,0.278,0.371,7.4,0.091689384,0.116,,,0.25,,,0.213,0.291,0.828128322,66213,79955,,,0.196109194,,,0.163811189,0.229353409,0.340909091,15,44,0.262598167,0.41884339,597.1,475,79555,,,25.52732502,426,16688,23.10319126,27.95145878,,,,,,,,,,34.18803419,26.75003119,43.05417096,22.96068075,20.41696451,25.50439699,,,,36.36363636,21.55139552,57.47022276,0.138917794,9078,65348,0.123428432,0.154407156,0.000716486,57,79555,,,1395.701754,0.000854261,68,79601,,,1170.602941,0.004798935,382,79601,,,208.3795812,2661,,,,,,,,2859,2632,0.44,,,,,0.22,0.55,,0.25,0.44,0.42,,,,,0.32,0.38,0.29,0.31,0.42,0.941048965,50795,53977,0.930013286,0.952084644,0.679059422,14959,22029,0.629447553,0.72867129,0.040251155,1577,39179,,,0.139,2544,,0.092531915,0.185468085,0.083086053,0,0.298116555,,,,,,,0.139500187,0.068197047,0.210803327,0.108953907,0.074610995,0.143296818,4.035085041,132145,32749,3.669592462,4.400577619,0.220619319,4175,18924,0.176387831,0.264850808,14.45540821,115,79555,,,104.7907945,418,398890,94.74484327,114.8367456,,,,,,,,,,56.86664771,34.73562578,87.82592523,110.9197922,99.79649768,122.0430868,,,,3.8,,,,,1,,,,,0.115671075,3805,32895,0.098247594,0.133094555,0.088302928,0.072089349,0.104516507,0.02006384,0.012435979,0.0276917,0.010943912,0.004705425,0.0171824,0.809081861,32517,40190,0.786404711,0.831759012,,,,,,,,,,0.831402831,0.766411902,0.89639376,0.815742908,0.794432776,0.837053039,0.101,,40190,0.084107723,0.117892277,75.41826418,,,74.78078004,76.05574832,,,,,,,,,,77.89153219,74.76033076,81.02273361,75.31700387,74.6322798,76.00172794,,,,466.12497,1335,225463,440.1342778,492.1156621,1039.178565,672.5015751,1534.032558,,,,745.6793493,455.4803188,1151.641277,445.2340968,342.1301048,569.6478201,465.0972242,437.6344714,492.5599769,,,,60.91734353,51,83720,45.3569635,80.09505659,,,,,,,,,,,,,67.21132735,49.02440337,89.93404403,,,,7.523148148,52,6912,5.618646875,9.865607891,,,,,,,,,,,,,8.32595217,6.117596487,11.07175135,,,,,,,0.11,,,0.094,0.127,0.161,,,0.139,0.184,0.08,,,0.069,0.093,51.4,34,66158,,,0.116,9200,,,,0.091689384,6917.963987,75450,,,17.48339078,42,240228,12.60049026,23.63246532,,,,,,,,,,,,,16.44339121,11.38752642,22.97799105,,,,0.335,,,0.318,0.35,0.162879519,7591,46605,0.1426242,0.183134839,0.084093109,1651,19633,0.0626463,0.105539917,0.001809023,144,79601,,,552.7847222,0.8,830.4,1038,,,,,,,,3.093819044,,,,,,,,2.672418465,3.18814422,3.209440415,,,,,,,,2.839851109,3.290371359,0.030019678,,,,,8080.398,,,,,0.755052689,47147,62442,0.688993363,0.821112015,70142,,,64209.57447,76074.42553,,,,,,,,,,60266,41037.74468,79494.25532,70446,65747.95745,75144.04255,,,,,,0.389672069,5169,13265,,,82.72416078,,,,,0.213352913,,70142,,,9.478672986,48,5064,,,4.803355945,27,562107,3.165441834,6.988630714,,,,,,,,,,,,,5.350752089,3.495288913,7.840091556,,,,32.4219497,128,398890,26.6728461,38.17105329,32.08904711,,,,,,,,,,,,,34.51664834,28.1545853,40.87871139,,,,27.0751335,108,398890,21.96873386,32.18153313,,,,,,,,,,,,,30.19805861,24.3941786,36.00193863,,,,15.83328441,89,562107,12.71542752,19.48421891,,,,,,,,,,,,,15.64065995,12.3230611,19.57661824,,,,7.415730337,,8900,,,66,,0.589899158,35391,59995,,,0.64,,,,,83.08471126,,,,,0.727678979,23937,32895,0.707855174,0.747502784,0.096097972,3076,32009,0.078621099,0.113574846,0.894725642,29432,32895,0.87979888,0.909652405,79601,,,,,0.234218163,18644,79601,,,0.172472708,13729,79601,,,0.010112938,805,79601,,,0.014333991,1141,79601,,,0.009610432,765,79601,,,0.000766322,61,79601,,,0.095702315,7618,79601,,,0.856207837,68155,79601,,,0.004918648,367,74614,0.001751225,0.008086071,0.494378211,39353,79601,,,0.152635858,12204,79955,, +56,027,56027,WY,Niobrara County,2024,1,5631.939212,27,6301,2910.105175,9837.864399,1,,,,2,,,,2,,,,2,,,,2,6278.543667,3134.226377,11234.04893,1,,,,2,,0.166,,,0.139,0.196,3.869922593,,,3.022933144,4.776143252,5.105825089,,,4.066572849,6.207239927,,,,,,0,,,,,,,,,,,,,,,,,,,,,,0.206,,,0.163,0.253,0.343,,,0.268,0.42,6.8,0.092779576,0.143,,,0.272,,,0.22,0.328,0.702067288,1732,2467,,,0.151568859,,,0.118768744,0.189662842,0.222222222,2,9,0.058854756,0.422872156,0,0,2438,,,30.03003003,10,333,14.40056666,55.22629442,,,,,,,,,,,,,,,,,,,,,,0.188560654,300,1591,0.161156398,0.215964909,0.000820345,2,2438,,,1219,0.000420168,1,2380,,,2380,0.000420168,1,2380,,,2380,797,,,,,,,,,802,0.24,,,,,,,,,0.24,0.09,,,,,,,,,0.09,0.919234857,1730,1882,0.855519768,0.982949945,0.558309038,383,686,0.385087986,0.73153009,0.028571429,35,1225,,,0.205,85,,0.120404255,0.289595745,,,,,,,,,,,,,0.358247423,0.150355965,0.56613888,4.738802922,104429,22037,3.32733898,6.150266865,0.105381166,47,446,0,0.242566857,0,0,2438,,,118.1035937,14,11854,64.5683337,198.1577621,,,,,,,,,,,,,129.3900185,70.73872714,217.0944651,,,,2.9,,,,,1,,,,,0.116666667,105,900,0.057210325,0.176123009,0.089772727,0.018413745,0.16113171,0.011111111,0,0.045020603,0.022222222,0,0.060045791,0.797783934,864,1083,0.722826151,0.872741716,,,,,,,,,,,,,0.777581642,0.694083959,0.861079324,0.28,,1083,0.134858206,0.425141794,78.7558481,,,75.78599064,81.72570557,,,,,,,,,,,,,78.15324528,74.96945287,81.3370377,,,,284.7857033,27,6301,180.5297067,427.3183834,,,,,,,,,,,,,307.604834,192.7743118,465.7174153,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.123,,,0.105,0.144,0.179,,,0.153,0.205,0.093,,,0.078,0.11,,,,,,0.143,350,,,,0.092779576,230.4644665,2484,,,,,,,,,,,,,,,,,,,,,,,,,,0.331,,,0.313,0.349,0.206055509,245,1189,0.172693807,0.239417211,0.140142518,59,421,0.094865922,0.185419114,0.000420168,1,2380,,,2380,0.625,63.75,102,,,,,,,,2.778625822,,,,,,,,,2.817835969,2.80254157,,,,,,,,,2.793702628,0.012683201,,,,,-2004.925,,,,,0.608035732,31447,51719,0.167451422,1.048620041,54573,,,46304.06383,62841.93617,,,,,,,,,,,,,53531,42746.82979,64315.17021,,,,,,0.250803859,234,933,,,,,,,,0.211753065,,54573,,,10,1,100,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,200,,,-888,,0.706951872,1322,1870,,,0.456,,,,,17.07107888,,,,,0.704291045,755,1072,0.597611541,0.810970549,0.205257836,203,989,0.09765138,0.312864293,0.742537313,796,1072,0.668535504,0.816539123,2380,,,,,0.178151261,424,2380,,,0.255462185,608,2380,,,0.009663866,23,2380,,,0.017226891,41,2380,,,0.005882353,14,2380,,,0,0,2380,,,0.051680672,123,2380,,,0.893277311,2126,2380,,,0.002947368,7,2375,0,0.028802075,0.542436975,1291,2380,,,1,2467,2467,, +56,029,56029,WY,Park County,2024,1,7255.490549,458,79771,6123.816833,8387.164265,0,,,,2,,,,2,,,,2,,,,2,7431.02764,6220.12633,8641.928951,,,,,2,,0.124,,,0.102,0.149,3.313656255,,,2.591743638,4.147047798,4.320293668,,,3.490237547,5.23628494,0.074351297,149,2004,0.062865145,0.08583745,0,,,,,,,,,,,,,0.077541643,0.064978521,0.090104765,,,,,,,0.157,,,0.119,0.197,0.295,,,0.242,0.354,7.9,0.079950519,0.099,,,0.2,,,0.163,0.244,0.666047799,19731,29624,,,0.165059719,,,0.133580861,0.200315609,0.380952381,8,21,0.265693072,0.491053906,235.8,71,30108,,,12.22451791,71,5808,9.547449906,15.41956596,,,,,,,,,,23.5042735,11.73324865,42.05563785,11.01928375,8.323848521,14.30945652,,,,,,,0.129762118,2902,22364,0.111889777,0.147634458,0.001295337,39,30108,,,772,0.000720886,22,30518,,,1387.181818,0.003932106,120,30518,,,254.3166667,2033,,,,,,,,,2048,0.42,,,,,,,,0.33,0.42,0.41,,,,,,,,0.35,0.42,0.954059332,20518,21506,0.939864897,0.968253768,0.749466951,4921,6566,0.649914108,0.849019794,0.035783366,555,15510,,,0.125,760,,0.076148936,0.173851064,,,,,,,0.597938144,0.378503276,0.817373012,0.346902655,0.218849709,0.474955601,0.107398568,0.053766285,0.161030851,4.185338545,126347,30188,3.49191654,4.87876055,0.196999348,1208,6132,0.115973513,0.278025182,16.93901953,51,30108,,,96.25487206,142,147525,80.42291438,112.0868297,,,,,,,,,,,,,102.9704743,85.79023374,120.1507149,,,,2.9,,,,,0,,,,,0.09304175,1170,12575,0.069977788,0.116105712,0.078768493,0.055855237,0.101681748,0.009860835,0.000985978,0.018735693,0.009940358,0.00090125,0.018979466,0.762873667,10948,14351,0.735728651,0.790018684,,,,,,,,,,,,,0.767850176,0.741236946,0.794463405,0.16,,14351,0.116270555,0.203729445,78.60269442,,,77.60072953,79.60465931,,,,,,,,,,81.22526409,76.55483048,85.8956977,78.34969344,77.30825653,79.39113035,,,,367.432909,458,79771,329.6244661,405.2413518,,,,,,,,,,,,,376.1276141,336.1873998,416.0678284,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.098,,,0.083,0.117,0.147,,,0.126,0.172,0.076,,,0.064,0.089,19.4,5,25816,,,0.099,2940,,,,0.079950519,2255.004387,28205,,,,,,,,,,,,,,,,,,,,,,,,,,0.325,,,0.308,0.343,0.144192338,2345,16263,0.12274553,0.165639147,0.096457,618,6407,0.069052745,0.123861256,0.00173668,53,30518,,,575.8113208,0.896532258,277.925,310,,,,,,,,3.556054896,,,,,,,,3.444389619,3.580019707,3.487171994,,,,,,,,3.041207951,3.529754763,0.044325502,,,,,6272.205667,,,,,0.671717003,40256,59930,0.54977446,0.793659547,69802,,,61537.82979,78066.17021,18763,18641.46809,18884.53192,,,,,,,38464,3583.148936,73344.85106,69382,62308.12766,76455.87234,,,,,,0.301603461,1185,3929,,,,,,,,0.221741497,,69802,,,13.4589502,20,1486,,,,,,,,,,,,,,,,,,,,,,,,,,32.70097731,49,147525,23.56798811,44.20222152,33.21470937,,,,,,,,,,,,,34.84852063,25.00790006,47.27595319,,,,27.79189968,41,147525,19.94394704,37.70285007,,,,,,,,,,,,,29.8465143,21.3227874,40.64248126,,,,16.98155318,35,206106,11.828274,23.61722966,,,,,,,,,,,,,17.65225066,12.15099712,24.79032297,,,,7.142857143,,2800,,,20,,0.732839399,16815,22945,,,0.659,,,,,29.77197108,,,,,0.735555556,9599,13050,0.708193036,0.762918075,0.094022565,1175,12497,0.069644234,0.118400897,0.892030651,11641,13050,0.866874778,0.917186525,30518,,,,,0.203519235,6211,30518,,,0.251196016,7666,30518,,,0.006455207,197,30518,,,0.010256242,313,30518,,,0.008093584,247,30518,,,0.000589816,18,30518,,,0.063241366,1930,30518,,,0.900812635,27491,30518,,,0.000668426,19,28425,0,0.004316404,0.499639557,15248,30518,,,0.443559276,13140,29624,, +56,031,56031,WY,Platte County,2024,1,10087.44884,156,22727,7203.77575,12971.12193,0,,,,2,,,,2,,,,2,,,,2,11349.45134,7964.663332,14734.23934,,,,,2,,0.146,,,0.12,0.171,3.514680869,,,2.764898524,4.372224259,4.658515897,,,3.727028719,5.6810351,0.078853047,44,558,0.056490942,0.101215151,0,,,,,,,,,,,,,0.077568134,0.053562914,0.101573355,,,,,,,0.17,,,0.132,0.209,0.36,,,0.289,0.435,8.1,0.043427303,0.11,,,0.238,,,0.192,0.287,0.777803603,6693,8605,,,0.161470762,,,0.12682491,0.197625346,0.318181818,7,22,0.204127461,0.433005911,137.9,12,8699,,,16.26545218,25,1537,10.52614304,24.01101607,,,,,,,,,,,,,14.91365777,8.978996204,23.289524,,,,,,,0.175748032,1116,6350,0.151918244,0.199577819,0.000459823,4,8699,,,2174.75,0.000347021,3,8645,,,2881.666667,0.00242915,21,8645,,,411.6666667,3120,,,,,,,,,3204,0.39,,,,,,,,,0.38,0.33,,,,,,,,0.23,0.33,0.935483871,6148,6572,0.910472125,0.960495617,0.675465839,1305,1932,0.549814958,0.801116719,0.034745573,155,4461,,,0.158,279,,0.088893617,0.227106383,,,,,,,,,,,,,0.173559823,0.06241006,0.284709586,5.368856503,141464,26349,3.261294681,7.476418325,0.045724466,77,1684,0.010810926,0.080638005,19.54247615,17,8699,,,105.1451002,45,42798,76.69355762,140.6924167,,,,,,,,,,,,,116.9435216,84.97134182,156.9912194,,,,3.3,,,,,1,,,,,0.094928479,365,3845,0.038313661,0.151543296,0.085825748,0.03310837,0.138543125,0.002080624,0,0.009788801,0.009102731,0,0.0254538,0.773898111,2704,3494,0.694606777,0.853189445,,,,,,,,,,,,,0.765468092,0.707796403,0.823139781,0.212,,3494,0.127429431,0.296570569,76.03155641,,,73.84678672,78.2163261,,,,,,,,,,,,,74.91712898,72.4687719,77.36548606,,,,437.3765981,156,22727,359.3638701,515.3893261,,,,,,,,,,,,,470.5688653,383.1159845,558.021746,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.108,,,0.091,0.125,0.157,,,0.134,0.181,0.084,,,0.07,0.099,,,,,,0.11,940,,,,0.043427303,376.3844339,8667,,,,,,,,,,,,,,,,,,,,,,,,,,0.314,,,0.298,0.33,0.190163934,870,4575,0.16156819,0.218759679,0.141163793,262,1856,0.098270176,0.18405741,0.000462695,4,8645,,,2161.25,0.81505102,79.875,98,,,,,,,,3.695735195,,,,,,,,,3.771329043,3.824548632,,,,,,,,,3.807489923,0.040206837,,,,,11973.475,,,,,0.770916648,44145,57263,0.571522523,0.970310773,61185,,,52116.57447,70253.42553,,,,,,,,,,,,,64375,59058.57447,69691.42553,,,,,,0.32337884,379,1172,,,,,,,,0.215804527,,61185,,,10.17811705,4,393,,,,,,,,,,,,,,,,,,,,,,,,,,39.75224769,17,42798,21.73292373,66.69751693,39.72148231,,,,,,,,,,,,,45.92984773,25.11027515,77.06248009,,,,37.38492453,16,42798,21.36871455,60.71077526,,,,,,,,,,,,,42.52491694,24.30666433,69.05780092,,,,29.85569746,18,60290,17.69437847,47.18487356,,,,,,,,,,,,,32.00180716,18.64223198,51.23799333,,,,26.25,,800,,,21,,0.718754526,4963,6905,,,0.57,,,,,16.17586488,,,,,0.740740741,2860,3861,0.684957044,0.796524437,0.111742424,413,3696,0.058166777,0.165318072,0.742553743,2867,3861,0.661527498,0.823579987,8645,,,,,0.206246385,1783,8645,,,0.269635628,2331,8645,,,0.00578369,50,8645,,,0.012955466,112,8645,,,0.007865818,68,8645,,,0.001156738,10,8645,,,0.084904569,734,8645,,,0.876691729,7579,8645,,,0.00922666,76,8237,0,0.02484489,0.492770388,4260,8645,,,1,8605,8605,, +56,033,56033,WY,Sheridan County,2024,1,6844.199503,453,85134,5800.361846,7888.03716,0,,,,2,,,,2,,,,2,,,,2,6823.237895,5732.33389,7914.141901,,,,,2,,0.125,,,0.105,0.151,3.100296103,,,2.411467733,3.894281466,4.70018109,,,3.813071506,5.636090394,0.071658245,156,2177,0.06082362,0.08249287,0,,,,,,,,,,,,,0.072727273,0.061126335,0.084328211,,,,,,,0.165,,,0.129,0.207,0.304,,,0.25,0.365,7.8,0.089617747,0.102,,,0.205,,,0.167,0.249,0.871381909,26944,30921,,,0.179167116,,,0.145446846,0.215969901,0.2,3,15,0.07369192,0.354373303,281.2,89,31646,,,17.53576373,114,6501,14.31670922,20.75481824,,,,,,,,,,,,,17.19298246,13.95809422,20.95273865,,,,,,,0.148363274,3576,24103,0.129299445,0.167427104,0.000663591,21,31646,,,1506.952381,0.000934696,30,32096,,,1069.866667,0.005109671,164,32096,,,195.7073171,2740,,,,,,,,,2713,0.38,,,,,,0.45,,,0.38,0.42,,,,,0.37,0.53,,0.25,0.42,0.963077202,21232,22046,0.946366934,0.97978747,0.627485699,4607,7342,0.552003596,0.702967801,0.033374537,540,16180,,,0.102,659,,0.057914894,0.146085106,0.136363636,0,0.852071798,,,,,,,,,,0.075728155,0.034795762,0.116660548,4.438999662,131350,29590,3.744449994,5.13354933,0.143498429,959,6683,0.084110415,0.202886443,15.79978512,50,31646,,,98.41172599,151,153437,82.71480593,114.108646,,,,,,,,,,,,,102.0947268,85.36105046,118.8284031,,,,5.8,,,,,0,,,,,0.1523129,2025,13295,0.12073838,0.183887419,0.125,0.092882025,0.157117975,0.013087627,0.003116673,0.023058581,0.02143663,0.006351243,0.036522018,0.783242259,12040,15372,0.754258063,0.812226454,,,,,,,,,,,,,0.786014721,0.755267813,0.816761629,0.148,,15372,0.110814841,0.185185159,78.6068003,,,77.66511506,79.54848554,,,,,,,,,,,,,78.49732549,77.52543294,79.46921804,,,,352.5418141,453,85134,317.2757827,387.8078456,,,,,,,,,,,,,355.1796734,318.4134706,391.9458762,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.098,,,0.083,0.116,0.154,,,0.131,0.18,0.077,,,0.066,0.092,59,16,27108,,,0.102,3140,,,,0.089617747,2609.310333,29116,,,,,,,,,,,,,,,,,,,,,,,,,,0.319,,,0.301,0.335,0.168218991,2962,17608,0.145580694,0.190857289,0.099381625,675,6792,0.07197737,0.126785881,0.001651296,53,32096,,,605.5849057,0.834349594,307.875,369,,,,,,,,3.613045185,,,,,,,,,3.626674393,3.838803096,,,,,,,,,3.844582551,0.035664332,,,,,6698.533,,,,,0.660137165,43507,65906,0.572599037,0.747675293,70224,,,61939.57447,78508.42553,61536,32779.40426,90292.59575,59167,20043.25532,98290.74468,,,,55739,21368.10638,90109.89362,70293,61828.65957,78757.34043,,,,,,0.248739496,1184,4760,,,,,,,,0.226204716,,70224,,,12.89009498,19,1474,,,,,,,,,,,,,,,,,,,,,,,,,,22.22905711,39,153437,15.39426825,31.06287924,25.4175981,,,,,,,,,,,,,24.32221042,16.84383777,33.98785119,,,,22.81066496,35,153437,15.88846393,31.72411307,,,,,,,,,,,,,22.84637242,15.62690183,32.25226113,,,,16.38223978,35,213646,11.41083025,22.7837298,,,,,,,,,,,,,14.85176403,9.946459461,21.32961055,,,,4.193548387,,3100,,,13,,0.699471571,16546,23655,,,0.673,,,,,53.24012385,,,,,0.689652533,9011,13066,0.654592148,0.724712919,0.143691495,1796,12499,0.107348178,0.180034813,0.855885504,11183,13066,0.821845422,0.889925586,32096,,,,,0.206349701,6623,32096,,,0.230714108,7405,32096,,,0.006355932,204,32096,,,0.014113908,453,32096,,,0.007757976,249,32096,,,0.000747757,24,32096,,,0.051688684,1659,32096,,,0.909552592,29193,32096,,,0.003532143,105,29727,0,0.008977101,0.497320538,15962,32096,,,0.371624462,11491,30921,, +56,035,56035,WY,Sublette County,2024,1,8687.193515,114,26064,6137.315008,11237.07202,0,,,,2,,,,2,,,,2,,,,2,9199.567166,6282.809154,12116.32518,,,,,2,,0.122,,,0.102,0.143,3.12726076,,,2.437566902,3.898505135,4.496238437,,,3.559429828,5.482721446,0.087579618,55,628,0.065470304,0.109688932,0,,,,,,,,,,,,,0.076171875,0.053193781,0.099149969,,,,,,,0.159,,,0.126,0.196,0.251,,,0.196,0.315,8.2,0.042679118,0.104,,,0.193,,,0.156,0.233,0.544110907,4749,8728,,,0.187269681,,,0.150188774,0.228715254,0.428571429,6,14,0.287681515,0.555967845,184,16,8697,,,11.12412178,19,1708,6.697447989,17.37169413,,,,,,,,,,,,,12.10826211,7.053508882,19.38650058,,,,,,,0.177454866,1209,6813,0.153625079,0.201284653,0.000344947,3,8697,,,2899,0.000456465,4,8763,,,2190.75,0.001255278,11,8763,,,796.6363636,1354,,,,,,,,,1323,0.32,,,,,,,,,0.32,0.39,,,,,,,,,0.39,0.958602846,5928,6184,0.939098191,0.978107501,0.724191063,1410,1947,0.561924636,0.886457491,0.041347626,162,3918,,,0.089,163,,0.05206383,0.12593617,,,,,,,,,,0.213636364,0,0.582078467,0.103911267,0.036469333,0.171353201,4.576608922,152964,33423,2.748575752,6.404642092,0.133130081,262,1968,0.056491277,0.209768886,6.898930666,6,8697,,,87.50729227,42,47996,63.06755924,118.2844378,,,,,,,,,,,,,93.76684873,66.98841145,127.6838345,,,,2.8,,,,,0,,,,,0.075070822,265,3530,0.030945938,0.119195705,0.069405099,0.024927591,0.113882607,0.007082153,0,0.019236502,0,0,0.008114829,0.688659794,3006,4365,0.647035904,0.730283684,,,,,,,,,,,,,0.747286039,0.677888408,0.816683669,0.362,,4365,0.245978054,0.478021946,81.12452665,,,78.391681,83.85737229,,,,,,,,,,,,,80.64849037,77.70489599,83.59208476,,,,326.4966514,114,26064,261.183372,391.8099307,,,,,,,,,,,,,337.4785241,266.13869,408.8183582,,,,122.0730219,11,9011,60.93841269,218.4223562,,,,,,,,,,,,,133.0317946,63.79391641,244.6502068,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.097,,,0.084,0.112,0.149,,,0.127,0.172,0.076,,,0.064,0.089,,,,,,0.104,920,,,,0.042679118,437.3329184,10247,,,,,,,,,,,,,,,,,,,,,,,,,,0.305,,,0.287,0.322,0.187361642,931,4969,0.159957387,0.214765898,0.155750387,302,1939,0.11166528,0.199835493,0.000684697,6,8763,,,1460.5,0.933064516,115.7,124,,,,,,,,3.573649542,,,,,,,,,3.581829725,3.693338244,,,,,,,,,3.667567967,0.016356519,,,,,9812.6085,,,,,0.610752248,47748,78179,0.417550585,0.803953911,85649,,,75622.61702,95675.38298,,,,,,,,,,95397,49748.65957,141045.3404,82986,64529.82979,101442.1702,,,,,,0.075675676,112,1480,,,,,,,,0.205886817,,85649,,,12.65822785,6,474,,,,,,,,,,,,,,,,,,,,,,,,,,17.98994198,10,47996,7.76678006,35.44735745,20.83506959,,,,,,,,,,,,,20.47880019,8.84129238,40.3514003,,,,22.91857655,11,47996,11.44087084,41.00766421,,,,,,,,,,,,,23.44171218,11.24121216,43.11014333,,,,25.12414282,17,67664,14.63573905,40.22618647,,,,,,,,,,,,,28.35554518,16.51815,45.39997467,,,,10,,1000,,,10,,0.675219446,5000,7405,,,0.406,,,,,7.593842807,,,,,0.828875467,2882,3477,0.786928344,0.870822591,0.073001508,242,3315,0.028476409,0.117526608,0.882945068,3070,3477,0.817072208,0.948817928,8763,,,,,0.212826658,1865,8763,,,0.238845144,2093,8763,,,0.008216364,72,8763,,,0.011639849,102,8763,,,0.007988132,70,8763,,,0.001369394,12,8763,,,0.068469702,600,8763,,,0.888394386,7785,8763,,,0.002035684,17,8351,0,0.012310346,0.46901746,4110,8763,,,1,8728,8728,, +56,037,56037,WY,Sweetwater County,2024,1,9732.214769,672,120841,8682.142301,10782.28724,0,,,,2,,,,2,,,,2,7167.468314,5165.680719,9688.334973,,10110.50566,8885.838711,11335.1726,,,,,2,,0.144,,,0.122,0.168,3.637752908,,,2.900022891,4.436912429,5.213634393,,,4.30810273,6.153179918,0.100880932,355,3519,0.090930096,0.110831769,0,,,,,,,,,,0.114992722,0.091137344,0.1388481,0.098113208,0.086787303,0.109439112,,,,,,,0.178,,,0.143,0.216,0.343,,,0.287,0.399,7.9,0.052266239,0.114,,,0.257,,,0.214,0.301,0.926215935,39153,42272,,,0.193451746,,,0.158677124,0.231669671,0.177419355,11,62,0.115518149,0.247631365,310,129,41614,,,22.07246801,226,10239,19.1947201,24.95021593,,,,,,,,,,25.90931739,19.35031749,33.97662269,21.02651169,17.77855401,24.27446937,,,,,,,0.1554898,5465,35147,0.13642597,0.17455363,0.000432547,18,41614,,,2311.888889,0.000604668,25,41345,,,1653.8,0.002539606,105,41345,,,393.7619048,1167,,,,,,,,,1237,0.32,,,,,,0.38,0.42,0.34,0.32,0.38,,,,,0.33,0.63,0.19,0.36,0.39,0.930455896,25675,27594,0.916800709,0.944111084,0.622269991,7237,11630,0.561571985,0.682967998,0.041574819,811,19507,,,0.149,1496,,0.109680851,0.188319149,0.068627451,0,0.529880916,0.675675676,0.047115934,1,0.209039548,0,0.609995954,0.221580817,0.134521329,0.308640305,0.132625995,0.080788644,0.184463346,4.352630604,140973,32388,3.746169758,4.95909145,0.155260947,1663,10711,0.114611143,0.19591075,8.891238526,37,41614,,,102.2442136,218,213215,88.67150379,115.8169234,,,,,,,,,,69.65405154,44.62866512,103.6397074,108.9021597,93.16654719,124.6377722,,,,4.5,,,,,1,,,,,0.105246423,1655,15725,0.082126477,0.128366369,0.085456304,0.062111385,0.108801224,0.016852146,0.006205627,0.027498666,0.006995231,0,0.014406957,0.772692084,15970,20668,0.74176134,0.803622829,,,,,,,,,,0.663559832,0.592988488,0.734131175,0.787615708,0.759934455,0.81529696,0.192,,20668,0.157570287,0.226429713,75.16597373,,,74.28108092,76.05086655,,,,,,,,,,78.55426072,75.61546869,81.49305275,74.69775489,73.71336934,75.68214044,,,,468.6671422,672,120841,432.3426773,504.9916071,,,,,,,,,,365.0972602,279.2704749,468.9827044,480.5930598,440.0060307,521.180089,,,,49.87634822,24,48119,31.95671742,74.21205261,,,,,,,,,,,,,48.22284628,28.09158503,77.20944832,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.107,,,0.092,0.123,0.161,,,0.139,0.185,0.088,,,0.075,0.102,55.2,19,34421,,,0.114,4850,,,,0.052266239,2289.574884,43806,,,22.1116639,28,126630,14.69304008,31.95751081,,,,,,,,,,,,,21.94163525,13.75070599,33.21989946,,,,0.304,,,0.289,0.317,0.177090909,4383,24750,0.153261122,0.200920696,0.107634428,1173,10898,0.079038684,0.136230173,0.000919095,38,41345,,,1088.026316,0.803681672,499.89,622,,,,,,,,3.253743713,,,,,,,,3.091817574,3.299245519,3.416824119,,,,,,,,3.271912695,3.450273463,0.03314771,,,,,8290.2595,,,,,0.654423878,47271,72233,0.574108707,0.73473905,75779,,,65863.42553,85694.57447,85773,67434.78723,104111.2128,75000,35503.31915,114496.6809,85952,1499.234043,170404.766,65113,55795.55319,74430.44681,81963,76124.70213,87801.29787,,,,,,0.26413821,1957,7409,,,60.71882751,,,,,0.196558413,,75779,,,4.516371848,12,2657,,,,,,,,,,,,,,,,,,,,,,,,,,34.53021335,74,213215,26.96838311,43.55516565,34.7067514,,,,,,,,,,,,,38.40124895,29.50857408,49.13187896,,,,27.20258894,58,213215,20.65606626,35.16565427,,,,,,,,,,,,,30.77669731,22.98550962,40.35954388,,,,17.21820096,52,302006,12.85937604,22.57937979,,,,,,,,,,,,,18.35949562,13.34003762,24.64676593,,,,10.75471698,,5300,,,57,,0.544352078,16698,30675,,,0.62,,,,,63.73916494,,,,,0.733516988,11982,16335,0.705374368,0.761659608,0.089551302,1427,15935,0.066627175,0.112475429,0.887970615,14505,16335,0.868877091,0.907064139,41345,,,,,0.247381787,10228,41345,,,0.149328819,6174,41345,,,0.010642158,440,41345,,,0.015237635,630,41345,,,0.009142581,378,41345,,,0.00162051,67,41345,,,0.166453017,6882,41345,,,0.788390374,32596,41345,,,0.010152541,402,39596,0.003275555,0.017029527,0.480735276,19876,41345,,,0.107541635,4546,42272,, +56,039,56039,WY,Teton County,2024,1,4267.876402,123,66376,3065.624262,5470.128542,0,,,,2,,,,2,,,,2,,,,2,4679.840244,3142.698835,6216.981653,,,,,2,,0.1,,,0.081,0.123,2.544521303,,,1.927739165,3.22800584,4.105951604,,,3.255025029,5.027710769,0.07751938,120,1548,0.064197842,0.090840918,0,,,,,,,,,,0.077348066,0.049828254,0.104867878,0.081316554,0.064648752,0.097984356,,,,,,,0.111,,,0.081,0.147,0.217,,,0.168,0.273,8.7,0.038117524,0.084,,,0.161,,,0.128,0.202,0.992284943,23151,23331,,,0.230959823,,,0.189438266,0.275434672,0.333333333,4,12,0.175768434,0.488588466,343.6,81,23575,,,7.357268982,25,3398,4.761236565,10.86078037,,,,,,,,,,24.86486487,15.76219139,37.30950583,,,,,,,,,,0.162862807,3204,19673,0.141415998,0.184309615,0.000933192,22,23575,,,1071.590909,0.00107356,25,23287,,,931.48,0.006097823,142,23287,,,163.9929578,1772,,,,,,,,,1803,0.44,,,,,,,,,0.44,0.54,,,,,,0.62,,0.5,0.54,0.959659822,17152,17873,0.943067867,0.976251777,0.746104602,6177,8279,0.649343004,0.8428662,0.027272181,454,16647,,,0.053,208,,0.031553192,0.074446809,,,,,,,,,,0.109565217,0.004801086,0.214329349,0.073688128,0.012495435,0.134880821,3.68224017,207439,56335,2.929094191,4.43538615,0.157612668,647,4105,0.071709183,0.243516152,18.23966066,43,23575,,,58.1783337,68,116882,45.17775257,73.7549008,,,,,,,,,,,,,64.27209222,49.16305784,82.56019125,,,,3.6,,,,,1,,,,,0.16159601,1620,10025,0.110736241,0.212455779,0.111334002,0.074409454,0.14825855,0.048877806,0.021125921,0.07662969,0.028428928,0.004037717,0.052820139,0.599368436,8731,14567,0.545956262,0.652780609,,,,,,,,,,0.537598945,0.438278756,0.636919134,0.632262295,0.586184418,0.678340172,0.125,,14567,0.076047329,0.173952671,85.9500598,,,84.21572508,87.68439452,,,,,,,,,,,,,85.35055587,83.49834809,87.20276365,,,,150.9099006,123,66376,122.9632095,178.8565916,,,,,,,,,,,,,158.473162,126.005175,190.9411489,,,,60.60939997,11,18149,30.25599409,108.4469586,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.08,,,0.067,0.096,0.127,,,0.108,0.15,0.066,,,0.056,0.079,58,12,20683,,,0.084,1950,,,,0.038117524,811.6745564,21294,,,,,,,,,,,,,,,,,,,,,,,,,,0.265,,,0.249,0.281,0.167896918,2593,15444,0.142875641,0.192918195,0.148483477,656,4418,0.110355817,0.186611136,0.001674754,39,23287,,,597.1025641,0.975,159.9,164,,,,,,,,3.538906445,,,,,,,,3.084304063,3.769645758,3.606338362,,,,,,,,2.995701597,3.93786951,0.076490687,,,,,12415.67,,,,,0.831273005,56687,68193,0.683508176,0.979037833,127677,,,111357.1702,143996.8298,,,,113333,74483.29787,152182.7021,,,,76818,55243.70213,98392.29787,110664,104339.5745,116988.4255,,,,,,0.078232524,216,2761,,,,,,,,0.353658059,,127677,,,16.85393258,18,1068,,,,,,,,,,,,,,,,,,,,,,,,,,13.18818529,19,116882,7.816154424,20.84301852,16.25571089,,,,,,,,,,,,,14.95455564,8.863017441,23.63464521,,,,11.1223285,13,116882,5.922171499,19.01952047,,,,,,,,,,,,,13.69733113,7.293251948,23.42285338,,,,9.804041716,16,163198,5.603856943,15.92114952,,,,,,,,,,,,,10.5548854,5.770454068,17.70930422,,,,,,1900,,,-888,,0.861964442,14787,17155,,,0.412,,,,,44.31458898,,,,,0.622395023,6003,9645,0.595607932,0.649182115,0.130145798,1214,9328,0.092833428,0.167458167,0.892068429,8604,9645,0.846012436,0.938124422,23287,,,,,0.17129729,3989,23287,,,0.175892129,4096,23287,,,0.007128441,166,23287,,,0.01137974,265,23287,,,0.018808777,438,23287,,,0.001588869,37,23287,,,0.157641603,3671,23287,,,0.798557135,18596,23287,,,0.025509292,571,22384,0.010298506,0.040720079,0.475844892,11081,23287,,,0.538811024,12571,23331,, +56,041,56041,WY,Uinta County,2024,1,11027.13628,320,57948,9256.647732,12797.62483,0,,,,2,,,,2,,,,2,,,,2,11120.50238,9215.29759,13025.70716,,,,,2,,0.141,,,0.116,0.166,3.405616965,,,2.685729653,4.257472267,4.9576766,,,4.01364781,5.99571462,0.096607246,168,1739,0.082722132,0.110492359,0,,,,,,,,,,0.086956522,0.046242503,0.12767054,0.099455041,0.084145607,0.114764475,,,,,,,0.168,,,0.133,0.208,0.333,,,0.27,0.398,8.5,0.01374147,0.103,,,0.228,,,0.185,0.275,0.636625917,13019,20450,,,0.166655119,,,0.134007977,0.202585456,0.125,3,24,0.040232942,0.245512437,169.6,35,20635,,,22.65891317,113,4987,18.48103353,26.83679282,,,,,,,,,,26.64576803,15.5221418,42.66245582,21.76512796,17.52392334,26.72275411,,,,,,,0.144314953,2489,17247,0.125251124,0.163378783,0.000581536,12,20635,,,1719.583333,0.000869061,18,20712,,,1150.666667,0.003572808,74,20712,,,279.8918919,2196,,,,,,,,,2275,0.39,,,,,,,,0.44,0.39,0.35,,,,,,,,0.21,0.36,0.943649239,12526,13274,0.925443146,0.961855332,0.586153549,3031,5171,0.496570224,0.675736873,0.0382489,339,8863,,,0.132,726,,0.079574468,0.184425532,,,,,,,,,,0.078358209,0,0.179753008,0.060097216,0.017509361,0.102685071,3.471517908,122128,35180,3.015240513,3.927795303,0.101439101,578,5698,0.050387967,0.152490236,3.392294645,7,20635,,,91.29282419,93,101870,73.68509151,111.8398773,,,,,,,,,,,,,94.62976106,75.48040346,117.1580833,,,,5.3,,,,,0,,,,,0.083440308,650,7790,0.051137087,0.11574353,0.053875969,0.027894098,0.07985784,0.030166881,0.009677236,0.050656525,0.003851091,0,0.010774619,0.796894804,7545,9468,0.747683671,0.846105936,,,,,,,,,,,,,0.810371923,0.754886196,0.865857649,0.181,,9468,0.136434475,0.225565525,75.37732185,,,73.8128833,76.9417604,,,,,,,,,,76.54015891,69.74370518,83.33661263,75.09550256,73.4581764,76.73282872,,,,459.1833292,320,57948,406.5930357,511.7736227,,,,,,,,,,,,,467.8314222,411.4695186,524.1933258,,,,76.4495232,19,24853,46.02760699,119.3854004,,,,,,,,,,,,,68.21947179,37.29622004,114.4606818,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.106,,,0.09,0.124,0.157,,,0.134,0.18,0.083,,,0.07,0.098,,,,,,0.103,2110,,,,0.01374147,290.1923558,21118,,,22.92226079,14,61076,12.53181328,38.45965866,,,,,,,,,,,,,22.59972127,11.67760576,39.47716496,,,,0.353,,,0.338,0.369,0.168417427,1956,11614,0.14458764,0.192247215,0.099155405,587,5920,0.070559661,0.12775115,0.00082078,17,20712,,,1218.352941,0.852262248,295.735,347,,,,,,,,3.14378642,,,,,,,,2.737679952,3.219006951,3.346236903,,,,,,,,3.014798835,3.409392194,0.05676717,,,,,7543.786333,,,,,0.471144385,33039,70125,0.363805596,0.578483175,73072,,,63473.3617,82670.6383,73125,70993.42553,75256.57447,,,,,,,82708,51207.40426,114208.5957,79150,70344.89362,87955.10638,,,,,,0.299334284,1259,4206,,,,,,,,0.158378038,,73072,,,4.246284501,6,1413,,,,,,,,,,,,,,,,,,,,,,,,,,32.05656931,30,101870,21.46878758,46.03858083,29.44929813,,,,,,,,,,,,,31.35714544,20.29269119,46.28933242,,,,20.61450869,21,101870,12.76070579,31.51146632,,,,,,,,,,,,,21.40435072,12.88681736,33.42554505,,,,13.24364828,19,143465,7.973541396,20.6815973,,,,,,,,,,,,,13.58424228,7.913321723,21.74968782,,,,5.555555556,,2700,,,15,,0.67037562,9459,14110,,,0.579,,,,,42.12239439,,,,,0.779593989,5914,7586,0.738458191,0.820729787,0.056976587,421,7389,0.02934093,0.084612244,0.91471131,6939,7586,0.887543299,0.941879322,20712,,,,,0.268395133,5559,20712,,,0.167970259,3479,20712,,,0.005117806,106,20712,,,0.014580919,302,20712,,,0.005938586,123,20712,,,0.001593279,33,20712,,,0.10105253,2093,20712,,,0.865971418,17936,20712,,,0.006716301,129,19207,0,0.014453897,0.488315952,10114,20712,,,0.441760391,9034,20450,, +56,043,56043,WY,Washakie County,2024,1,8065.688093,130,20902,5678.764734,10452.61145,0,,,,2,,,,2,,,,2,,,,2,7769.334851,5035.86489,10502.80481,,,,,2,,0.137,,,0.113,0.163,3.378598354,,,2.617791497,4.216291541,4.623766148,,,3.676766055,5.655077884,0.064456722,35,543,0.043801864,0.08511158,0,,,,,,,,,,,,,0.075242718,0.049771274,0.100714163,,,,,,,0.164,,,0.128,0.205,0.336,,,0.267,0.407,8.6,0.030680474,0.093,,,0.229,,,0.184,0.281,0.763565387,5868,7685,,,0.159018632,,,0.125692584,0.19637399,0,0,6,0,0.28246769,207.7,16,7705,,,17.59530792,30,1705,11.87148036,25.11839613,,,,,,,,,,,,,17.29559748,10.83905886,26.18574244,,,,,,,0.181106383,1064,5875,0.157276596,0.20493617,0.001038287,8,7705,,,963.125,0.000906853,7,7719,,,1102.714286,0.004016064,31,7719,,,249,2261,,,,,,,,,2152,0.29,,,,,,,,0.23,0.29,0.33,,,,,,,,0.31,0.32,0.947111031,5229,5521,0.926319222,0.96790284,0.756268222,1297,1715,0.640947149,0.871589295,0.039917056,154,3858,,,0.143,219,,0.082234043,0.203765957,,,,,,,,,,,,,0.084033613,0.013379686,0.154687541,4.325973793,120500,27855,3.359528829,5.292418757,0.093560146,154,1646,0.034812784,0.152307508,15.5743024,12,7705,,,86.69267447,34,39219,60.03719724,121.1443232,,,,,,,,,,,,,86.6980431,57.61022001,125.3028113,,,,3.5,,,,,0,,,,,0.080058224,275,3435,0.048156654,0.111959795,0.055834564,0.028362363,0.083306766,0.034934498,0.008813896,0.061055099,0.002911208,0,0.01201495,0.782915361,2997,3828,0.73296032,0.832870401,,,,,,,,,,,,,0.760762608,0.708234763,0.813290452,0.091,,3828,0.050805993,0.131194007,77.60345613,,,75.47935743,79.72755483,,,,,,,,,,,,,77.68966097,75.29785384,80.08146809,,,,411.5919451,130,20902,334.8605079,488.3233823,,,,,,,,,,,,,390.8307015,309.7118491,471.949554,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.104,,,0.088,0.121,0.153,,,0.13,0.178,0.084,,,0.07,0.098,,,,,,0.093,720,,,,0.030680474,261.796486,8533,,,,,,,,,,,,,,,,,,,,,,,,,,0.312,,,0.296,0.327,0.197124304,850,4312,0.16852856,0.225720049,0.139577039,231,1655,0.099066401,0.180087678,0.000906853,7,7719,,,1102.714286,0.819957983,97.575,119,,,,,,,,3.658460625,,,,,,,,3.454384856,3.762979569,3.750633032,,,,,,,,3.68010651,3.776317194,0.04495368,,,,,12802.576,,,,,0.772422183,36826,47676,0.647514938,0.897329428,60699,,,54583.08511,66814.91489,,,,,,,,,,36563,20144.2766,52981.7234,65795,59126.23404,72463.76596,,,,,,0.327919567,424,1293,,,,,,,,0.195555116,,60699,,,15.03759399,6,399,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.11111111,,900,,,10,,0.674811716,4032,5975,,,0.624,,,,,28.93541584,,,,,0.716461629,2446,3414,0.675134652,0.757788605,0.073913044,238,3220,0.036342051,0.111484036,0.85559461,2921,3414,0.822982546,0.888206675,7719,,,,,0.207798938,1604,7719,,,0.238243296,1839,7719,,,0.004275165,33,7719,,,0.01697111,131,7719,,,0.008679881,67,7719,,,0.000906853,7,7719,,,0.141728203,1094,7719,,,0.821349916,6340,7719,,,0.003788904,28,7390,0,0.015575203,0.485296023,3746,7719,,,0.363825634,2796,7685,, +56,045,56045,WY,Weston County,2024,1,5905.489557,88,18614,4065.067282,8293.502976,0,,,,2,,,,2,,,,2,,,,2,6324.451118,4267.080611,9028.547225,,,,,2,,0.148,,,0.124,0.173,3.564866331,,,2.838740847,4.413685557,5.179947039,,,4.210012911,6.247645919,0.082725061,34,411,0.05609308,0.109357042,0,,,,,,,,,,,,,0.088,0.0593266,0.1166734,,,,,,,0.197,,,0.158,0.237,0.346,,,0.28,0.421,7.8,0.08751015,0.102,,,0.262,,,0.216,0.313,0.831090962,5683,6838,,,0.172438152,,,0.138459925,0.209929375,0.2,1,5,0.015594715,0.47750127,103.8,7,6745,,,18.76019576,23,1226,11.89235484,28.14950481,,,,,,,,,,,,,21.31603336,13.51253664,31.98451612,,,,,,,0.167536116,835,4984,0.144897818,0.190174413,0.000296516,2,6745,,,3372.5,0.000728863,5,6860,,,1372,0.001749271,12,6860,,,571.6666667,2045,,,,,,,,,2009,0.37,,,,,,,,,0.37,0.25,,,,,,,,,0.25,0.91122449,4465,4900,0.871685169,0.950763811,0.59850839,963,1609,0.475410762,0.721606019,0.026635021,101,3792,,,0.143,183,,0.085808511,0.200191489,,,,,,,,,,,,,0.062062062,0,0.126415247,4.783588275,126966,26542,2.690331862,6.876844688,0.181040627,254,1403,0.075371849,0.286709406,10.37805782,7,6745,,,69.9524906,24,34309,44.81988066,104.0837611,,,,,,,,,,,,,77.58453482,49.7098754,115.4396379,,,,3.2,,,,,0,,,,,0.112847222,325,2880,0.069664291,0.156030154,0.09384058,0.048605474,0.139075686,0.024305556,0,0.04979306,0.010416667,0,0.027239445,0.676760803,1989,2939,0.588642826,0.76487878,,,,,,,,,,,,,0.750434783,0.675458268,0.825411297,0.29,,2939,0.194427995,0.385572005,79.15220758,,,77.31773034,80.98668482,,,,,,,,,,,,,78.70490504,76.76859308,80.64121701,,,,305.814535,88,18614,239.7097779,384.5158644,,,,,,,,,,,,,320.8137705,249.1244458,406.7078982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.112,,,0.096,0.129,0.16,,,0.138,0.184,0.09,,,0.077,0.106,,,,,,0.102,710,,,,0.08751015,630.7731638,7208,,,,,,,,,,,,,,,,,,,,,,,,,,0.346,,,0.33,0.364,0.182517867,664,3638,0.155113612,0.209922122,0.130801688,186,1422,0.092674028,0.168929347,0.001166181,8,6860,,,857.5,0.9190625,73.525,80,,,,,,,,3.378600078,,,,,,,,,3.428218102,3.351010217,,,,,,,,,3.388917325,0.024619075,,,,,10779.878,,,,,0.517885239,37194,71819,0.426124571,0.609645908,67677,,,59562.95745,75791.04255,,,,,,,,,,,,,73000,59667.23404,86332.76596,,,,,,0.103697749,129,1244,,,,,,,,0.200053194,,67677,,,9.74025974,3,308,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20.50062527,10,48779,9.830846668,37.70137978,,,,,,,,,,,,,,,,,,,18.33333333,,600,,,11,,0.647272727,3560,5500,,,0.553,,,,,17.68185702,,,,,0.90030326,2375,2638,0.85885634,0.941750181,0.08679402,209,2408,0.040754719,0.132833321,0.80060652,2112,2638,0.740175444,0.861037597,6860,,,,,0.190087464,1304,6860,,,0.228862974,1570,6860,,,0.007580175,52,6860,,,0.021137026,145,6860,,,0.015014577,103,6860,,,0.000291545,2,6860,,,0.054956268,377,6860,,,0.885714286,6076,6860,,,0.001212305,8,6599,0,0.013903995,0.44606414,3060,6860,,,1,6838,6838,, \ No newline at end of file diff --git a/python/tests/datasources/test_cdc_wisqars_black_men.py b/python/tests/datasources/test_cdc_wisqars_black_men.py index 7a8bb2279b..350eb47155 100644 --- a/python/tests/datasources/test_cdc_wisqars_black_men.py +++ b/python/tests/datasources/test_cdc_wisqars_black_men.py @@ -1,9 +1,7 @@ import os from unittest import mock - import pandas as pd from pandas._testing import assert_frame_equal - from datasources.cdc_wisqars_black_men import CDCWisqarsBlackMenData from ingestion import standardized_columns as std_col from ingestion.constants import NATIONAL_LEVEL, STATE_LEVEL diff --git a/python/tests/datasources/test_chr.py b/python/tests/datasources/test_chr.py index eede0ec7ea..14c5ddd03d 100644 --- a/python/tests/datasources/test_chr.py +++ b/python/tests/datasources/test_chr.py @@ -1,29 +1,38 @@ from unittest import mock - -# from pandas._testing import assert_frame_equal +from pandas._testing import assert_frame_equal from datasources.chr import CHRData import pandas as pd import os SOURCE_DIR = "chr" - THIS_DIR = os.path.dirname(os.path.abspath(__file__)) TEST_DIR = os.path.join(THIS_DIR, os.pardir, "data") GOLDEN_DIR = os.path.join(TEST_DIR, SOURCE_DIR, "golden_data") GOLDEN_DATA = { - "race_county_current": os.path.join(GOLDEN_DIR, "race_county_current.csv"), + "race_and_ethnicity_county_current": os.path.join(GOLDEN_DIR, "race_and_ethnicity_county_current.csv"), } EXP_DTYPE = {"state_fips": str, "county_fips": str, "time_period": str} -def _load_csv_as_df_from_data_dir(*args): +def _load_csv_as_df_from_data_dir(*args, **kwargs): directory, filename = args + filename = "test_" + filename + use_cols = kwargs["usecols"] + dtype = kwargs["dtype"] + skiprows = kwargs["skiprows"] print("MOCKING FILE READ:", directory, filename) df = pd.read_csv( - os.path.join(TEST_DIR, directory, filename), + os.path.join( + TEST_DIR, + directory, + filename, + ), + usecols=use_cols, + dtype=dtype, + skiprows=skiprows, ) return df @@ -33,13 +42,22 @@ def _load_csv_as_df_from_data_dir(*args): "ingestion.gcs_to_bq_util.load_csv_as_df_from_data_dir", side_effect=_load_csv_as_df_from_data_dir, ) -def test_write_to_bq_race_national( +def test_write_to_bq_race_county( mock_data_dir: mock.MagicMock, mock_bq: mock.MagicMock, ): datasource = CHRData() - datasource.write_to_bq("dataset", "gcs_bucket", demographic="race", geographic="national") + datasource.write_to_bq("dataset", "gcs_bucket", demographic="race") + # loading source from data/ assert mock_data_dir.call_count == 1 - assert mock_bq.call_count == 0 + # calls writing COUNTY CURRENT to bq + assert mock_bq.call_count == 1 + + actual_current_df, _, table_name = mock_bq.call_args_list[0][0] + expected_current_df = pd.read_csv(GOLDEN_DATA[table_name], dtype=EXP_DTYPE) + assert table_name == "race_and_ethnicity_county_current" + # actual_current_df.to_csv(table_name, index=False) + + assert_frame_equal(actual_current_df, expected_current_df, check_like=True)